tor-0.2.7.6/0000755000175000017500000000000012632347251007476 500000000000000tor-0.2.7.6/m4/0000755000175000017500000000000012632347250010015 500000000000000tor-0.2.7.6/m4/pc_from_ucontext.m40000644000175000017500000001536712621363245013571 00000000000000# This file is from Google Performance Tools, svn revision r226. # # The Google Performance Tools license is: ######## # Copyright (c) 2005, Google Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following disclaimer # in the documentation and/or other materials provided with the # distribution. # * Neither the name of Google Inc. nor the names of its # contributors may be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ######## # Original file follows below. # We want to access the "PC" (Program Counter) register from a struct # ucontext. Every system has its own way of doing that. We try all the # possibilities we know about. Note REG_PC should come first (REG_RIP # is also defined on solaris, but does the wrong thing). # OpenBSD doesn't have ucontext.h, but we can get PC from ucontext_t # by using signal.h. # The first argument of AC_PC_FROM_UCONTEXT will be invoked when we # cannot find a way to obtain PC from ucontext. AC_DEFUN([AC_PC_FROM_UCONTEXT], [AC_CHECK_HEADERS(ucontext.h) # Redhat 7 has , but it barfs if we #include it directly # (this was fixed in later redhats). works fine, so use that. if grep "Red Hat Linux release 7" /etc/redhat-release >/dev/null 2>&1; then AC_DEFINE(HAVE_SYS_UCONTEXT_H, 0, [ is broken on redhat 7]) ac_cv_header_sys_ucontext_h=no else AC_CHECK_HEADERS(sys/ucontext.h) # ucontext on OS X 10.6 (at least) fi AC_CHECK_HEADERS(cygwin/signal.h) # ucontext on cywgin AC_MSG_CHECKING([how to access the program counter from a struct ucontext]) pc_fields=" uc_mcontext.gregs[[REG_PC]]" # Solaris x86 (32 + 64 bit) pc_fields="$pc_fields uc_mcontext.gregs[[REG_EIP]]" # Linux (i386) pc_fields="$pc_fields uc_mcontext.gregs[[REG_RIP]]" # Linux (x86_64) pc_fields="$pc_fields uc_mcontext.sc_ip" # Linux (ia64) pc_fields="$pc_fields uc_mcontext.uc_regs->gregs[[PT_NIP]]" # Linux (ppc) pc_fields="$pc_fields uc_mcontext.gregs[[R15]]" # Linux (arm old [untested]) pc_fields="$pc_fields uc_mcontext.arm_pc" # Linux (arm arch 5) pc_fields="$pc_fields uc_mcontext.gp_regs[[PT_NIP]]" # Suse SLES 11 (ppc64) pc_fields="$pc_fields uc_mcontext.mc_eip" # FreeBSD (i386) pc_fields="$pc_fields uc_mcontext.mc_rip" # FreeBSD (x86_64 [untested]) pc_fields="$pc_fields uc_mcontext.__gregs[[_REG_EIP]]" # NetBSD (i386) pc_fields="$pc_fields uc_mcontext.__gregs[[_REG_RIP]]" # NetBSD (x86_64) pc_fields="$pc_fields uc_mcontext->ss.eip" # OS X (i386, <=10.4) pc_fields="$pc_fields uc_mcontext->__ss.__eip" # OS X (i386, >=10.5) pc_fields="$pc_fields uc_mcontext->ss.rip" # OS X (x86_64) pc_fields="$pc_fields uc_mcontext->__ss.__rip" # OS X (>=10.5 [untested]) pc_fields="$pc_fields uc_mcontext->ss.srr0" # OS X (ppc, ppc64 [untested]) pc_fields="$pc_fields uc_mcontext->__ss.__srr0" # OS X (>=10.5 [untested]) pc_field_found=false for pc_field in $pc_fields; do if ! $pc_field_found; then # Prefer sys/ucontext.h to ucontext.h, for OS X's sake. if test "x$ac_cv_header_cygwin_signal_h" = xyes; then AC_TRY_COMPILE([#define _GNU_SOURCE 1 #include ], [ucontext_t u; return u.$pc_field == 0;], AC_DEFINE_UNQUOTED(PC_FROM_UCONTEXT, $pc_field, How to access the PC from a struct ucontext) AC_MSG_RESULT([$pc_field]) pc_field_found=true) elif test "x$ac_cv_header_sys_ucontext_h" = xyes; then AC_TRY_COMPILE([#define _GNU_SOURCE 1 #include ], [ucontext_t u; return u.$pc_field == 0;], AC_DEFINE_UNQUOTED(PC_FROM_UCONTEXT, $pc_field, How to access the PC from a struct ucontext) AC_MSG_RESULT([$pc_field]) pc_field_found=true) elif test "x$ac_cv_header_ucontext_h" = xyes; then AC_TRY_COMPILE([#define _GNU_SOURCE 1 #include ], [ucontext_t u; return u.$pc_field == 0;], AC_DEFINE_UNQUOTED(PC_FROM_UCONTEXT, $pc_field, How to access the PC from a struct ucontext) AC_MSG_RESULT([$pc_field]) pc_field_found=true) else # hope some standard header gives it to us AC_TRY_COMPILE([], [ucontext_t u; return u.$pc_field == 0;], AC_DEFINE_UNQUOTED(PC_FROM_UCONTEXT, $pc_field, How to access the PC from a struct ucontext) AC_MSG_RESULT([$pc_field]) pc_field_found=true) fi fi done if ! $pc_field_found; then pc_fields=" sc_eip" # OpenBSD (i386) pc_fields="$pc_fields sc_rip" # OpenBSD (x86_64) for pc_field in $pc_fields; do if ! $pc_field_found; then AC_TRY_COMPILE([#include ], [ucontext_t u; return u.$pc_field == 0;], AC_DEFINE_UNQUOTED(PC_FROM_UCONTEXT, $pc_field, How to access the PC from a struct ucontext) AC_MSG_RESULT([$pc_field]) pc_field_found=true) fi done fi if ! $pc_field_found; then [$1] fi]) tor-0.2.7.6/m4/pkg.m40000644000175000017500000001716712621363245010774 00000000000000# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # serial 1 (pkg-config-0.24) # # Copyright © 2004 Scott James Remnant . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$]) m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) # only at the first occurence in configure.ac, so if the first place # it's called might be skipped (such as if it is within an "if", you # have to call PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT])[]dnl ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])[]dnl ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) $3 fi[]dnl ])# PKG_CHECK_MODULES # PKG_INSTALLDIR(DIRECTORY) # ------------------------- # Substitutes the variable pkgconfigdir as the location where a module # should install pkg-config .pc files. By default the directory is # $libdir/pkgconfig, but the default can be changed by passing # DIRECTORY. The user can override through the --with-pkgconfigdir # parameter. AC_DEFUN([PKG_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([pkgconfigdir], [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],, [with_pkgconfigdir=]pkg_default) AC_SUBST([pkgconfigdir], [$with_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ]) dnl PKG_INSTALLDIR # PKG_NOARCH_INSTALLDIR(DIRECTORY) # ------------------------- # Substitutes the variable noarch_pkgconfigdir as the location where a # module should install arch-independent pkg-config .pc files. By # default the directory is $datadir/pkgconfig, but the default can be # changed by passing DIRECTORY. The user can override through the # --with-noarch-pkgconfigdir parameter. AC_DEFUN([PKG_NOARCH_INSTALLDIR], [m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])]) m4_pushdef([pkg_description], [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@]) AC_ARG_WITH([noarch-pkgconfigdir], [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],, [with_noarch_pkgconfigdir=]pkg_default) AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir]) m4_popdef([pkg_default]) m4_popdef([pkg_description]) ]) dnl PKG_NOARCH_INSTALLDIR # PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE, # [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # ------------------------------------------- # Retrieves the value of the pkg-config variable for the given module. AC_DEFUN([PKG_CHECK_VAR], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl _PKG_CONFIG([$1], [variable="][$3]["], [$2]) AS_VAR_COPY([$1], [pkg_cv_][$1]) AS_VAR_IF([$1], [""], [$5], [$4])dnl ])# PKG_CHECK_VAR tor-0.2.7.6/m4/ax_check_sign.m40000644000175000017500000000403512621363245012766 00000000000000# =========================================================================== # http://www.gnu.org/software/autoconf-archive/ax_check_sign.html # =========================================================================== # # SYNOPSIS # # AX_CHECK_SIGN (TYPE, [ACTION-IF-SIGNED], [ACTION-IF-UNSIGNED], [INCLUDES]) # # DESCRIPTION # # Checks whether TYPE is signed or not. If no INCLUDES are specified, the # default includes are used. If ACTION-IF-SIGNED is given, it is # additional shell code to execute when the type is signed. If # ACTION-IF-UNSIGNED is given, it is executed when the type is unsigned. # # This macro assumes that the type exists. Therefore the existence of the # type should be checked before calling this macro. For example: # # AC_CHECK_HEADERS([wchar.h]) # AC_CHECK_TYPE([wchar_t],,[ AC_MSG_ERROR([Type wchar_t not found.]) ]) # AX_CHECK_SIGN([wchar_t], # [ AC_DEFINE(WCHAR_T_SIGNED, 1, [Define if wchar_t is signed]) ], # [ AC_DEFINE(WCHAR_T_UNSIGNED, 1, [Define if wchar_t is unsigned]) ], [ # #ifdef HAVE_WCHAR_H # #include # #endif # ]) # # LICENSE # # Copyright (c) 2008 Ville Laurikari # # Copying and distribution of this file, with or without modification, are # permitted in any medium without royalty provided the copyright notice # and this notice are preserved. This file is offered as-is, without any # warranty. #serial 6 AU_ALIAS([VL_CHECK_SIGN], [AX_CHECK_SIGN]) AC_DEFUN([AX_CHECK_SIGN], [ typename=`echo $1 | sed "s/@<:@^a-zA-Z0-9_@:>@/_/g"` AC_CACHE_CHECK([whether $1 is signed], ax_cv_decl_${typename}_signed, [ AC_TRY_COMPILE([$4], [ int foo @<:@ 1 - 2 * !((($1) -1) < 0) @:>@ ], [ eval "ax_cv_decl_${typename}_signed=\"yes\"" ], [ eval "ax_cv_decl_${typename}_signed=\"no\"" ])]) symbolname=`echo $1 | sed "s/@<:@^a-zA-Z0-9_@:>@/_/g" | tr "a-z" "A-Z"` if eval "test \"\${ax_cv_decl_${typename}_signed}\" = \"yes\""; then $2 elif eval "test \"\${ax_cv_decl_${typename}_signed}\" = \"no\""; then $3 fi ])dnl tor-0.2.7.6/micro-revision.i0000644000175000017500000000000312623622413012522 00000000000000"" tor-0.2.7.6/Makefile.in0000644000175000017500000264302212632313430011464 00000000000000# Makefile.in generated by automake 1.15 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2014 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # Copyright (c) 2001-2004, Roger Dingledine # Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson # Copyright (c) 2007-2015, The Tor Project, Inc. # See LICENSE for licensing information # We use a two-step process to generate documentation from asciidoc files. # # First, we use asciidoc/a2x to process the asciidoc files into .1.in and # .html.in files (see the asciidoc-helper.sh script). These are the same as # the regular .1 and .html files, except that they still have some autoconf # variables set in them. # # Second, we use config.status to turn .1.in files into .1 files and # .html.in files into .html files. # # We do the steps in this order so that we can ship the .*.in files as # part of the source distribution, so that people without asciidoc can # just use the .1 and .html files. VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = src/or/tor$(EXEEXT) src/tools/tor-resolve$(EXEEXT) \ src/tools/tor-gencert$(EXEEXT) TESTS = src/test/test$(EXEEXT) src/test/test-slow$(EXEEXT) \ src/test/test-memwipe$(EXEEXT) \ src/test/test_workqueue$(EXEEXT) src/test/test_keygen.sh \ $(TESTSCRIPTS) noinst_PROGRAMS = $(am__EXEEXT_1) src/test/bench$(EXEEXT) \ $(am__EXEEXT_2) src/test/test-ntor-cl$(EXEEXT) \ src/test/test-bt-cl$(EXEEXT) src/tools/tor-checkkey$(EXEEXT) \ $(am__EXEEXT_3) @UNITTESTS_ENABLED_TRUE@am__append_1 = \ @UNITTESTS_ENABLED_TRUE@ src/trunnel/libor-trunnel-testing.a @UNITTESTS_ENABLED_TRUE@am__append_2 = \ @UNITTESTS_ENABLED_TRUE@ src/common/libor-testing.a \ @UNITTESTS_ENABLED_TRUE@ src/common/libor-crypto-testing.a \ @UNITTESTS_ENABLED_TRUE@ src/common/libor-event-testing.a @BUILD_CURVE25519_DONNA_TRUE@am__append_3 = \ @BUILD_CURVE25519_DONNA_TRUE@ @F_OMIT_FRAME_POINTER@ @BUILD_CURVE25519_DONNA_TRUE@am__append_4 = src/common/libcurve25519_donna.a @BUILD_CURVE25519_DONNA_C64_TRUE@@BUILD_CURVE25519_DONNA_FALSE@am__append_5 = src/common/libcurve25519_donna.a @UNITTESTS_ENABLED_TRUE@am__append_6 = \ @UNITTESTS_ENABLED_TRUE@ src/or/libtor-testing.a @COVERAGE_ENABLED_TRUE@am__append_7 = src/or/tor-cov @USEPYTHON_TRUE@am__append_8 = src/test/test_ntor.sh src/test/test_bt.sh @UNITTESTS_ENABLED_TRUE@am__append_9 = \ @UNITTESTS_ENABLED_TRUE@ src/test/test \ @UNITTESTS_ENABLED_TRUE@ src/test/test-slow \ @UNITTESTS_ENABLED_TRUE@ src/test/test-memwipe \ @UNITTESTS_ENABLED_TRUE@ src/test/test-child \ @UNITTESTS_ENABLED_TRUE@ src/test/test_workqueue @COVERAGE_ENABLED_TRUE@am__append_10 = src/tools/tor-cov-resolve src/tools/tor-cov-gencert subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_sign.m4 \ $(top_srcdir)/m4/pc_from_ucontext.m4 $(top_srcdir)/m4/pkg.m4 \ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ $(am__configure_deps) $(noinst_HEADERS) $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = orconfig.h CONFIG_CLEAN_FILES = Doxyfile contrib/dist/suse/tor.sh \ contrib/operator-tools/tor.logrotate contrib/dist/tor.sh \ contrib/dist/torctl contrib/dist/tor.service \ src/config/torrc.sample src/config/torrc.minimal \ scripts/maint/checkOptionDocs.pl \ scripts/maint/updateVersions.pl CONFIG_CLEAN_VPATH_FILES = LIBRARIES = $(noinst_LIBRARIES) ARFLAGS = cru AM_V_AR = $(am__v_AR_@AM_V@) am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@) am__v_AR_0 = @echo " AR " $@; am__v_AR_1 = src_common_libcurve25519_donna_a_AR = $(AR) $(ARFLAGS) src_common_libcurve25519_donna_a_LIBADD = am__src_common_libcurve25519_donna_a_SOURCES_DIST = \ src/ext/curve25519_donna/curve25519-donna-c64.c \ src/ext/curve25519_donna/curve25519-donna.c am__dirstamp = $(am__leading_dot)dirstamp @BUILD_CURVE25519_DONNA_C64_TRUE@@BUILD_CURVE25519_DONNA_FALSE@am_src_common_libcurve25519_donna_a_OBJECTS = src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna-c64.$(OBJEXT) @BUILD_CURVE25519_DONNA_TRUE@am_src_common_libcurve25519_donna_a_OBJECTS = src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna.$(OBJEXT) src_common_libcurve25519_donna_a_OBJECTS = \ $(am_src_common_libcurve25519_donna_a_OBJECTS) src_common_libor_crypto_testing_a_AR = $(AR) $(ARFLAGS) src_common_libor_crypto_testing_a_LIBADD = am__objects_1 = \ src/common/src_common_libor_crypto_testing_a-aes.$(OBJEXT) \ src/common/src_common_libor_crypto_testing_a-crypto.$(OBJEXT) \ src/common/src_common_libor_crypto_testing_a-crypto_pwbox.$(OBJEXT) \ src/common/src_common_libor_crypto_testing_a-crypto_s2k.$(OBJEXT) \ src/common/src_common_libor_crypto_testing_a-crypto_format.$(OBJEXT) \ src/common/src_common_libor_crypto_testing_a-torgzip.$(OBJEXT) \ src/common/src_common_libor_crypto_testing_a-tortls.$(OBJEXT) \ src/trunnel/src_common_libor_crypto_testing_a-pwbox.$(OBJEXT) \ src/common/src_common_libor_crypto_testing_a-crypto_curve25519.$(OBJEXT) \ src/common/src_common_libor_crypto_testing_a-crypto_ed25519.$(OBJEXT) am_src_common_libor_crypto_testing_a_OBJECTS = $(am__objects_1) src_common_libor_crypto_testing_a_OBJECTS = \ $(am_src_common_libor_crypto_testing_a_OBJECTS) src_common_libor_crypto_a_AR = $(AR) $(ARFLAGS) src_common_libor_crypto_a_LIBADD = am__objects_2 = src/common/aes.$(OBJEXT) src/common/crypto.$(OBJEXT) \ src/common/crypto_pwbox.$(OBJEXT) \ src/common/crypto_s2k.$(OBJEXT) \ src/common/crypto_format.$(OBJEXT) \ src/common/torgzip.$(OBJEXT) src/common/tortls.$(OBJEXT) \ src/trunnel/pwbox.$(OBJEXT) \ src/common/crypto_curve25519.$(OBJEXT) \ src/common/crypto_ed25519.$(OBJEXT) am_src_common_libor_crypto_a_OBJECTS = $(am__objects_2) src_common_libor_crypto_a_OBJECTS = \ $(am_src_common_libor_crypto_a_OBJECTS) src_common_libor_event_testing_a_AR = $(AR) $(ARFLAGS) src_common_libor_event_testing_a_LIBADD = am__objects_3 = src/common/src_common_libor_event_testing_a-compat_libevent.$(OBJEXT) \ src/common/src_common_libor_event_testing_a-procmon.$(OBJEXT) am_src_common_libor_event_testing_a_OBJECTS = $(am__objects_3) src_common_libor_event_testing_a_OBJECTS = \ $(am_src_common_libor_event_testing_a_OBJECTS) src_common_libor_event_a_AR = $(AR) $(ARFLAGS) src_common_libor_event_a_LIBADD = am__objects_4 = src/common/compat_libevent.$(OBJEXT) \ src/common/procmon.$(OBJEXT) am_src_common_libor_event_a_OBJECTS = $(am__objects_4) src_common_libor_event_a_OBJECTS = \ $(am_src_common_libor_event_a_OBJECTS) src_common_libor_testing_a_AR = $(AR) $(ARFLAGS) src_common_libor_testing_a_LIBADD = am__src_common_libor_testing_a_SOURCES_DIST = src/common/address.c \ src/common/backtrace.c src/common/compat.c \ src/common/compat_threads.c src/common/container.c \ src/common/di_ops.c src/common/log.c src/common/memarea.c \ src/common/util.c src/common/util_format.c \ src/common/util_process.c src/common/sandbox.c \ src/common/workqueue.c src/ext/csiphash.c \ src/ext/trunnel/trunnel.c src/ext/OpenBSD_malloc_Linux.c \ src/common/compat_pthreads.c src/common/compat_winthreads.c \ src/ext/readpassphrase.c @USE_OPENBSD_MALLOC_TRUE@am__objects_5 = src/ext/src_common_libor_testing_a-OpenBSD_malloc_Linux.$(OBJEXT) @THREADS_PTHREADS_FALSE@@THREADS_WIN32_TRUE@am__objects_6 = src/common/src_common_libor_testing_a-compat_winthreads.$(OBJEXT) @THREADS_PTHREADS_TRUE@am__objects_6 = src/common/src_common_libor_testing_a-compat_pthreads.$(OBJEXT) @BUILD_READPASSPHRASE_C_TRUE@am__objects_7 = src/ext/src_common_libor_testing_a-readpassphrase.$(OBJEXT) am__objects_8 = \ src/common/src_common_libor_testing_a-address.$(OBJEXT) \ src/common/src_common_libor_testing_a-backtrace.$(OBJEXT) \ src/common/src_common_libor_testing_a-compat.$(OBJEXT) \ src/common/src_common_libor_testing_a-compat_threads.$(OBJEXT) \ src/common/src_common_libor_testing_a-container.$(OBJEXT) \ src/common/src_common_libor_testing_a-di_ops.$(OBJEXT) \ src/common/src_common_libor_testing_a-log.$(OBJEXT) \ src/common/src_common_libor_testing_a-memarea.$(OBJEXT) \ src/common/src_common_libor_testing_a-util.$(OBJEXT) \ src/common/src_common_libor_testing_a-util_format.$(OBJEXT) \ src/common/src_common_libor_testing_a-util_process.$(OBJEXT) \ src/common/src_common_libor_testing_a-sandbox.$(OBJEXT) \ src/common/src_common_libor_testing_a-workqueue.$(OBJEXT) \ src/ext/src_common_libor_testing_a-csiphash.$(OBJEXT) \ src/ext/trunnel/src_common_libor_testing_a-trunnel.$(OBJEXT) \ $(am__objects_5) $(am__objects_6) $(am__objects_7) am_src_common_libor_testing_a_OBJECTS = $(am__objects_8) src_common_libor_testing_a_OBJECTS = \ $(am_src_common_libor_testing_a_OBJECTS) src_common_libor_a_AR = $(AR) $(ARFLAGS) src_common_libor_a_LIBADD = am__src_common_libor_a_SOURCES_DIST = src/common/address.c \ src/common/backtrace.c src/common/compat.c \ src/common/compat_threads.c src/common/container.c \ src/common/di_ops.c src/common/log.c src/common/memarea.c \ src/common/util.c src/common/util_format.c \ src/common/util_process.c src/common/sandbox.c \ src/common/workqueue.c src/ext/csiphash.c \ src/ext/trunnel/trunnel.c src/ext/OpenBSD_malloc_Linux.c \ src/common/compat_pthreads.c src/common/compat_winthreads.c \ src/ext/readpassphrase.c @USE_OPENBSD_MALLOC_TRUE@am__objects_9 = src/ext/OpenBSD_malloc_Linux.$(OBJEXT) @THREADS_PTHREADS_FALSE@@THREADS_WIN32_TRUE@am__objects_10 = src/common/compat_winthreads.$(OBJEXT) @THREADS_PTHREADS_TRUE@am__objects_10 = \ @THREADS_PTHREADS_TRUE@ src/common/compat_pthreads.$(OBJEXT) @BUILD_READPASSPHRASE_C_TRUE@am__objects_11 = \ @BUILD_READPASSPHRASE_C_TRUE@ src/ext/readpassphrase.$(OBJEXT) am__objects_12 = src/common/address.$(OBJEXT) \ src/common/backtrace.$(OBJEXT) src/common/compat.$(OBJEXT) \ src/common/compat_threads.$(OBJEXT) \ src/common/container.$(OBJEXT) src/common/di_ops.$(OBJEXT) \ src/common/log.$(OBJEXT) src/common/memarea.$(OBJEXT) \ src/common/util.$(OBJEXT) src/common/util_format.$(OBJEXT) \ src/common/util_process.$(OBJEXT) src/common/sandbox.$(OBJEXT) \ src/common/workqueue.$(OBJEXT) src/ext/csiphash.$(OBJEXT) \ src/ext/trunnel/trunnel.$(OBJEXT) $(am__objects_9) \ $(am__objects_10) $(am__objects_11) am_src_common_libor_a_OBJECTS = $(am__objects_12) src_common_libor_a_OBJECTS = $(am_src_common_libor_a_OBJECTS) src_ext_ed25519_donna_libed25519_donna_a_AR = $(AR) $(ARFLAGS) src_ext_ed25519_donna_libed25519_donna_a_LIBADD = am_src_ext_ed25519_donna_libed25519_donna_a_OBJECTS = src/ext/ed25519/donna/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.$(OBJEXT) src_ext_ed25519_donna_libed25519_donna_a_OBJECTS = \ $(am_src_ext_ed25519_donna_libed25519_donna_a_OBJECTS) src_ext_ed25519_ref10_libed25519_ref10_a_AR = $(AR) $(ARFLAGS) src_ext_ed25519_ref10_libed25519_ref10_a_LIBADD = am_src_ext_ed25519_ref10_libed25519_ref10_a_OBJECTS = src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-open.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sign.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.$(OBJEXT) \ src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.$(OBJEXT) src_ext_ed25519_ref10_libed25519_ref10_a_OBJECTS = \ $(am_src_ext_ed25519_ref10_libed25519_ref10_a_OBJECTS) src_or_libtor_testing_a_AR = $(AR) $(ARFLAGS) src_or_libtor_testing_a_LIBADD = am__src_or_libtor_testing_a_SOURCES_DIST = src/or/addressmap.c \ src/or/buffers.c src/or/channel.c src/or/channeltls.c \ src/or/circpathbias.c src/or/circuitbuild.c \ src/or/circuitlist.c src/or/circuitmux.c \ src/or/circuitmux_ewma.c src/or/circuitstats.c \ src/or/circuituse.c src/or/command.c src/or/config.c \ src/or/confparse.c src/or/connection.c \ src/or/connection_edge.c src/or/connection_or.c \ src/or/control.c src/or/cpuworker.c src/or/dircollate.c \ src/or/directory.c src/or/dirserv.c src/or/dirvote.c \ src/or/dns.c src/or/dnsserv.c src/or/fp_pair.c src/or/geoip.c \ src/or/entrynodes.c src/or/ext_orport.c src/or/hibernate.c \ src/or/keypin.c src/or/main.c src/or/microdesc.c \ src/or/networkstatus.c src/or/nodelist.c src/or/onion.c \ src/or/onion_fast.c src/or/onion_tap.c src/or/transports.c \ src/or/policies.c src/or/reasons.c src/or/relay.c \ src/or/rendcache.c src/or/rendclient.c src/or/rendcommon.c \ src/or/rendmid.c src/or/rendservice.c src/or/rephist.c \ src/or/replaycache.c src/or/router.c src/or/routerkeys.c \ src/or/routerlist.c src/or/routerparse.c src/or/routerset.c \ src/or/scheduler.c src/or/statefile.c src/or/status.c \ src/or/torcert.c src/or/onion_ntor.c src/ext/eventdns.c \ src/or/ntmain.c @USE_EXTERNAL_EVDNS_FALSE@am__objects_13 = src/ext/src_or_libtor_testing_a-eventdns.$(OBJEXT) @BUILD_NT_SERVICES_TRUE@am__objects_14 = src/or/src_or_libtor_testing_a-ntmain.$(OBJEXT) am__objects_15 = src/or/src_or_libtor_testing_a-addressmap.$(OBJEXT) \ src/or/src_or_libtor_testing_a-buffers.$(OBJEXT) \ src/or/src_or_libtor_testing_a-channel.$(OBJEXT) \ src/or/src_or_libtor_testing_a-channeltls.$(OBJEXT) \ src/or/src_or_libtor_testing_a-circpathbias.$(OBJEXT) \ src/or/src_or_libtor_testing_a-circuitbuild.$(OBJEXT) \ src/or/src_or_libtor_testing_a-circuitlist.$(OBJEXT) \ src/or/src_or_libtor_testing_a-circuitmux.$(OBJEXT) \ src/or/src_or_libtor_testing_a-circuitmux_ewma.$(OBJEXT) \ src/or/src_or_libtor_testing_a-circuitstats.$(OBJEXT) \ src/or/src_or_libtor_testing_a-circuituse.$(OBJEXT) \ src/or/src_or_libtor_testing_a-command.$(OBJEXT) \ src/or/src_or_libtor_testing_a-config.$(OBJEXT) \ src/or/src_or_libtor_testing_a-confparse.$(OBJEXT) \ src/or/src_or_libtor_testing_a-connection.$(OBJEXT) \ src/or/src_or_libtor_testing_a-connection_edge.$(OBJEXT) \ src/or/src_or_libtor_testing_a-connection_or.$(OBJEXT) \ src/or/src_or_libtor_testing_a-control.$(OBJEXT) \ src/or/src_or_libtor_testing_a-cpuworker.$(OBJEXT) \ src/or/src_or_libtor_testing_a-dircollate.$(OBJEXT) \ src/or/src_or_libtor_testing_a-directory.$(OBJEXT) \ src/or/src_or_libtor_testing_a-dirserv.$(OBJEXT) \ src/or/src_or_libtor_testing_a-dirvote.$(OBJEXT) \ src/or/src_or_libtor_testing_a-dns.$(OBJEXT) \ src/or/src_or_libtor_testing_a-dnsserv.$(OBJEXT) \ src/or/src_or_libtor_testing_a-fp_pair.$(OBJEXT) \ src/or/src_or_libtor_testing_a-geoip.$(OBJEXT) \ src/or/src_or_libtor_testing_a-entrynodes.$(OBJEXT) \ src/or/src_or_libtor_testing_a-ext_orport.$(OBJEXT) \ src/or/src_or_libtor_testing_a-hibernate.$(OBJEXT) \ src/or/src_or_libtor_testing_a-keypin.$(OBJEXT) \ src/or/src_or_libtor_testing_a-main.$(OBJEXT) \ src/or/src_or_libtor_testing_a-microdesc.$(OBJEXT) \ src/or/src_or_libtor_testing_a-networkstatus.$(OBJEXT) \ src/or/src_or_libtor_testing_a-nodelist.$(OBJEXT) \ src/or/src_or_libtor_testing_a-onion.$(OBJEXT) \ src/or/src_or_libtor_testing_a-onion_fast.$(OBJEXT) \ src/or/src_or_libtor_testing_a-onion_tap.$(OBJEXT) \ src/or/src_or_libtor_testing_a-transports.$(OBJEXT) \ src/or/src_or_libtor_testing_a-policies.$(OBJEXT) \ src/or/src_or_libtor_testing_a-reasons.$(OBJEXT) \ src/or/src_or_libtor_testing_a-relay.$(OBJEXT) \ src/or/src_or_libtor_testing_a-rendcache.$(OBJEXT) \ src/or/src_or_libtor_testing_a-rendclient.$(OBJEXT) \ src/or/src_or_libtor_testing_a-rendcommon.$(OBJEXT) \ src/or/src_or_libtor_testing_a-rendmid.$(OBJEXT) \ src/or/src_or_libtor_testing_a-rendservice.$(OBJEXT) \ src/or/src_or_libtor_testing_a-rephist.$(OBJEXT) \ src/or/src_or_libtor_testing_a-replaycache.$(OBJEXT) \ src/or/src_or_libtor_testing_a-router.$(OBJEXT) \ src/or/src_or_libtor_testing_a-routerkeys.$(OBJEXT) \ src/or/src_or_libtor_testing_a-routerlist.$(OBJEXT) \ src/or/src_or_libtor_testing_a-routerparse.$(OBJEXT) \ src/or/src_or_libtor_testing_a-routerset.$(OBJEXT) \ src/or/src_or_libtor_testing_a-scheduler.$(OBJEXT) \ src/or/src_or_libtor_testing_a-statefile.$(OBJEXT) \ src/or/src_or_libtor_testing_a-status.$(OBJEXT) \ src/or/src_or_libtor_testing_a-torcert.$(OBJEXT) \ src/or/src_or_libtor_testing_a-onion_ntor.$(OBJEXT) \ $(am__objects_13) $(am__objects_14) am_src_or_libtor_testing_a_OBJECTS = $(am__objects_15) src_or_libtor_testing_a_OBJECTS = \ $(am_src_or_libtor_testing_a_OBJECTS) src_or_libtor_a_AR = $(AR) $(ARFLAGS) src_or_libtor_a_LIBADD = am__src_or_libtor_a_SOURCES_DIST = src/or/addressmap.c \ src/or/buffers.c src/or/channel.c src/or/channeltls.c \ src/or/circpathbias.c src/or/circuitbuild.c \ src/or/circuitlist.c src/or/circuitmux.c \ src/or/circuitmux_ewma.c src/or/circuitstats.c \ src/or/circuituse.c src/or/command.c src/or/config.c \ src/or/confparse.c src/or/connection.c \ src/or/connection_edge.c src/or/connection_or.c \ src/or/control.c src/or/cpuworker.c src/or/dircollate.c \ src/or/directory.c src/or/dirserv.c src/or/dirvote.c \ src/or/dns.c src/or/dnsserv.c src/or/fp_pair.c src/or/geoip.c \ src/or/entrynodes.c src/or/ext_orport.c src/or/hibernate.c \ src/or/keypin.c src/or/main.c src/or/microdesc.c \ src/or/networkstatus.c src/or/nodelist.c src/or/onion.c \ src/or/onion_fast.c src/or/onion_tap.c src/or/transports.c \ src/or/policies.c src/or/reasons.c src/or/relay.c \ src/or/rendcache.c src/or/rendclient.c src/or/rendcommon.c \ src/or/rendmid.c src/or/rendservice.c src/or/rephist.c \ src/or/replaycache.c src/or/router.c src/or/routerkeys.c \ src/or/routerlist.c src/or/routerparse.c src/or/routerset.c \ src/or/scheduler.c src/or/statefile.c src/or/status.c \ src/or/torcert.c src/or/onion_ntor.c src/ext/eventdns.c \ src/or/ntmain.c @USE_EXTERNAL_EVDNS_FALSE@am__objects_16 = src/ext/eventdns.$(OBJEXT) @BUILD_NT_SERVICES_TRUE@am__objects_17 = src/or/ntmain.$(OBJEXT) am__objects_18 = src/or/addressmap.$(OBJEXT) src/or/buffers.$(OBJEXT) \ src/or/channel.$(OBJEXT) src/or/channeltls.$(OBJEXT) \ src/or/circpathbias.$(OBJEXT) src/or/circuitbuild.$(OBJEXT) \ src/or/circuitlist.$(OBJEXT) src/or/circuitmux.$(OBJEXT) \ src/or/circuitmux_ewma.$(OBJEXT) src/or/circuitstats.$(OBJEXT) \ src/or/circuituse.$(OBJEXT) src/or/command.$(OBJEXT) \ src/or/config.$(OBJEXT) src/or/confparse.$(OBJEXT) \ src/or/connection.$(OBJEXT) src/or/connection_edge.$(OBJEXT) \ src/or/connection_or.$(OBJEXT) src/or/control.$(OBJEXT) \ src/or/cpuworker.$(OBJEXT) src/or/dircollate.$(OBJEXT) \ src/or/directory.$(OBJEXT) src/or/dirserv.$(OBJEXT) \ src/or/dirvote.$(OBJEXT) src/or/dns.$(OBJEXT) \ src/or/dnsserv.$(OBJEXT) src/or/fp_pair.$(OBJEXT) \ src/or/geoip.$(OBJEXT) src/or/entrynodes.$(OBJEXT) \ src/or/ext_orport.$(OBJEXT) src/or/hibernate.$(OBJEXT) \ src/or/keypin.$(OBJEXT) src/or/main.$(OBJEXT) \ src/or/microdesc.$(OBJEXT) src/or/networkstatus.$(OBJEXT) \ src/or/nodelist.$(OBJEXT) src/or/onion.$(OBJEXT) \ src/or/onion_fast.$(OBJEXT) src/or/onion_tap.$(OBJEXT) \ src/or/transports.$(OBJEXT) src/or/policies.$(OBJEXT) \ src/or/reasons.$(OBJEXT) src/or/relay.$(OBJEXT) \ src/or/rendcache.$(OBJEXT) src/or/rendclient.$(OBJEXT) \ src/or/rendcommon.$(OBJEXT) src/or/rendmid.$(OBJEXT) \ src/or/rendservice.$(OBJEXT) src/or/rephist.$(OBJEXT) \ src/or/replaycache.$(OBJEXT) src/or/router.$(OBJEXT) \ src/or/routerkeys.$(OBJEXT) src/or/routerlist.$(OBJEXT) \ src/or/routerparse.$(OBJEXT) src/or/routerset.$(OBJEXT) \ src/or/scheduler.$(OBJEXT) src/or/statefile.$(OBJEXT) \ src/or/status.$(OBJEXT) src/or/torcert.$(OBJEXT) \ src/or/onion_ntor.$(OBJEXT) $(am__objects_16) \ $(am__objects_17) am_src_or_libtor_a_OBJECTS = $(am__objects_18) src_or_libtor_a_OBJECTS = $(am_src_or_libtor_a_OBJECTS) src_trunnel_libor_trunnel_testing_a_AR = $(AR) $(ARFLAGS) src_trunnel_libor_trunnel_testing_a_LIBADD = am__objects_19 = src/ext/trunnel/src_trunnel_libor_trunnel_testing_a-trunnel.$(OBJEXT) \ src/trunnel/src_trunnel_libor_trunnel_testing_a-ed25519_cert.$(OBJEXT) \ src/trunnel/src_trunnel_libor_trunnel_testing_a-link_handshake.$(OBJEXT) \ src/trunnel/src_trunnel_libor_trunnel_testing_a-pwbox.$(OBJEXT) am_src_trunnel_libor_trunnel_testing_a_OBJECTS = $(am__objects_19) src_trunnel_libor_trunnel_testing_a_OBJECTS = \ $(am_src_trunnel_libor_trunnel_testing_a_OBJECTS) src_trunnel_libor_trunnel_a_AR = $(AR) $(ARFLAGS) src_trunnel_libor_trunnel_a_LIBADD = am__objects_20 = \ src/ext/trunnel/src_trunnel_libor_trunnel_a-trunnel.$(OBJEXT) \ src/trunnel/src_trunnel_libor_trunnel_a-ed25519_cert.$(OBJEXT) \ src/trunnel/src_trunnel_libor_trunnel_a-link_handshake.$(OBJEXT) \ src/trunnel/src_trunnel_libor_trunnel_a-pwbox.$(OBJEXT) am_src_trunnel_libor_trunnel_a_OBJECTS = $(am__objects_20) src_trunnel_libor_trunnel_a_OBJECTS = \ $(am_src_trunnel_libor_trunnel_a_OBJECTS) am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" \ "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(confdir)" \ "$(DESTDIR)$(docdir)" "$(DESTDIR)$(tordatadir)" @COVERAGE_ENABLED_TRUE@am__EXEEXT_1 = src/or/tor-cov$(EXEEXT) @UNITTESTS_ENABLED_TRUE@am__EXEEXT_2 = src/test/test$(EXEEXT) \ @UNITTESTS_ENABLED_TRUE@ src/test/test-slow$(EXEEXT) \ @UNITTESTS_ENABLED_TRUE@ src/test/test-memwipe$(EXEEXT) \ @UNITTESTS_ENABLED_TRUE@ src/test/test-child$(EXEEXT) \ @UNITTESTS_ENABLED_TRUE@ src/test/test_workqueue$(EXEEXT) @COVERAGE_ENABLED_TRUE@am__EXEEXT_3 = \ @COVERAGE_ENABLED_TRUE@ src/tools/tor-cov-resolve$(EXEEXT) \ @COVERAGE_ENABLED_TRUE@ src/tools/tor-cov-gencert$(EXEEXT) PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) am_src_or_tor_OBJECTS = src/or/tor_main.$(OBJEXT) src_or_tor_OBJECTS = $(am_src_or_tor_OBJECTS) src_or_tor_DEPENDENCIES = src/or/libtor.a src/common/libor.a \ src/common/libor-crypto.a $(LIBDONNA) src/common/libor-event.a \ src/trunnel/libor-trunnel.a src_or_tor_LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(src_or_tor_LDFLAGS) \ $(LDFLAGS) -o $@ am__src_or_tor_cov_SOURCES_DIST = src/or/tor_main.c @COVERAGE_ENABLED_TRUE@am_src_or_tor_cov_OBJECTS = src/or/src_or_tor_cov-tor_main.$(OBJEXT) src_or_tor_cov_OBJECTS = $(am_src_or_tor_cov_OBJECTS) @COVERAGE_ENABLED_TRUE@src_or_tor_cov_DEPENDENCIES = \ @COVERAGE_ENABLED_TRUE@ src/or/libtor-testing.a \ @COVERAGE_ENABLED_TRUE@ src/common/libor-testing.a \ @COVERAGE_ENABLED_TRUE@ src/common/libor-crypto-testing.a \ @COVERAGE_ENABLED_TRUE@ $(LIBDONNA) \ @COVERAGE_ENABLED_TRUE@ src/common/libor-event-testing.a \ @COVERAGE_ENABLED_TRUE@ src/trunnel/libor-trunnel-testing.a src_or_tor_cov_LINK = $(CCLD) $(src_or_tor_cov_CFLAGS) $(CFLAGS) \ $(src_or_tor_cov_LDFLAGS) $(LDFLAGS) -o $@ am_src_test_bench_OBJECTS = src/test/bench.$(OBJEXT) src_test_bench_OBJECTS = $(am_src_test_bench_OBJECTS) src_test_bench_DEPENDENCIES = src/or/libtor.a src/common/libor.a \ src/common/libor-crypto.a $(LIBDONNA) src/common/libor-event.a \ src/trunnel/libor-trunnel.a src_test_bench_LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(src_test_bench_LDFLAGS) $(LDFLAGS) -o $@ am_src_test_test_OBJECTS = src/test/src_test_test-test.$(OBJEXT) \ src/test/src_test_test-test_accounting.$(OBJEXT) \ src/test/src_test_test-test_addr.$(OBJEXT) \ src/test/src_test_test-test_address.$(OBJEXT) \ src/test/src_test_test-test_buffers.$(OBJEXT) \ src/test/src_test_test-test_cell_formats.$(OBJEXT) \ src/test/src_test_test-test_cell_queue.$(OBJEXT) \ src/test/src_test_test-test_channel.$(OBJEXT) \ src/test/src_test_test-test_channeltls.$(OBJEXT) \ src/test/src_test_test-test_checkdir.$(OBJEXT) \ src/test/src_test_test-test_circuitlist.$(OBJEXT) \ src/test/src_test_test-test_circuitmux.$(OBJEXT) \ src/test/src_test_test-test_config.$(OBJEXT) \ src/test/src_test_test-test_containers.$(OBJEXT) \ src/test/src_test_test-test_controller.$(OBJEXT) \ src/test/src_test_test-test_controller_events.$(OBJEXT) \ src/test/src_test_test-test_crypto.$(OBJEXT) \ src/test/src_test_test-test_data.$(OBJEXT) \ src/test/src_test_test-test_dir.$(OBJEXT) \ src/test/src_test_test-test_entryconn.$(OBJEXT) \ src/test/src_test_test-test_entrynodes.$(OBJEXT) \ src/test/src_test_test-test_guardfraction.$(OBJEXT) \ src/test/src_test_test-test_extorport.$(OBJEXT) \ src/test/src_test_test-test_hs.$(OBJEXT) \ src/test/src_test_test-test_introduce.$(OBJEXT) \ src/test/src_test_test-test_keypin.$(OBJEXT) \ src/test/src_test_test-test_link_handshake.$(OBJEXT) \ src/test/src_test_test-test_logging.$(OBJEXT) \ src/test/src_test_test-test_microdesc.$(OBJEXT) \ src/test/src_test_test-test_nodelist.$(OBJEXT) \ src/test/src_test_test-test_oom.$(OBJEXT) \ src/test/src_test_test-test_options.$(OBJEXT) \ src/test/src_test_test-test_policy.$(OBJEXT) \ src/test/src_test_test-test_pt.$(OBJEXT) \ src/test/src_test_test-test_relay.$(OBJEXT) \ src/test/src_test_test-test_relaycell.$(OBJEXT) \ src/test/src_test_test-test_replay.$(OBJEXT) \ src/test/src_test_test-test_routerkeys.$(OBJEXT) \ src/test/src_test_test-test_routerlist.$(OBJEXT) \ src/test/src_test_test-test_routerset.$(OBJEXT) \ src/test/src_test_test-test_scheduler.$(OBJEXT) \ src/test/src_test_test-test_socks.$(OBJEXT) \ src/test/src_test_test-test_status.$(OBJEXT) \ src/test/src_test_test-test_threads.$(OBJEXT) \ src/test/src_test_test-test_util.$(OBJEXT) \ src/test/src_test_test-test_helpers.$(OBJEXT) \ src/test/src_test_test-test_dns.$(OBJEXT) \ src/test/src_test_test-testing_common.$(OBJEXT) \ src/ext/src_test_test-tinytest.$(OBJEXT) src_test_test_OBJECTS = $(am_src_test_test_OBJECTS) src_test_test_DEPENDENCIES = src/or/libtor-testing.a \ src/common/libor-testing.a src/common/libor-crypto-testing.a \ $(LIBDONNA) src/common/libor.a \ src/common/libor-event-testing.a \ src/trunnel/libor-trunnel-testing.a src_test_test_LINK = $(CCLD) $(src_test_test_CFLAGS) $(CFLAGS) \ $(src_test_test_LDFLAGS) $(LDFLAGS) -o $@ am_src_test_test_bt_cl_OBJECTS = \ src/test/src_test_test_bt_cl-test_bt_cl.$(OBJEXT) src_test_test_bt_cl_OBJECTS = $(am_src_test_test_bt_cl_OBJECTS) src_test_test_bt_cl_DEPENDENCIES = src/common/libor-testing.a src_test_test_bt_cl_LINK = $(CCLD) $(src_test_test_bt_cl_CFLAGS) \ $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ src_test_test_child_SOURCES = src/test/test-child.c src_test_test_child_OBJECTS = src/test/test-child.$(OBJEXT) src_test_test_child_LDADD = $(LDADD) am_src_test_test_memwipe_OBJECTS = \ src/test/src_test_test_memwipe-test-memwipe.$(OBJEXT) src_test_test_memwipe_OBJECTS = $(am_src_test_test_memwipe_OBJECTS) am__DEPENDENCIES_1 = src/or/libtor-testing.a \ src/common/libor-testing.a src/common/libor-crypto-testing.a \ $(LIBDONNA) src/common/libor.a \ src/common/libor-event-testing.a \ src/trunnel/libor-trunnel-testing.a src_test_test_memwipe_DEPENDENCIES = $(am__DEPENDENCIES_1) src_test_test_memwipe_LINK = $(CCLD) $(src_test_test_memwipe_CFLAGS) \ $(CFLAGS) $(src_test_test_memwipe_LDFLAGS) $(LDFLAGS) -o $@ am_src_test_test_ntor_cl_OBJECTS = src/test/test_ntor_cl.$(OBJEXT) src_test_test_ntor_cl_OBJECTS = $(am_src_test_test_ntor_cl_OBJECTS) src_test_test_ntor_cl_DEPENDENCIES = src/or/libtor.a \ src/common/libor.a src/common/libor-crypto.a $(LIBDONNA) src_test_test_ntor_cl_LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(src_test_test_ntor_cl_LDFLAGS) $(LDFLAGS) -o $@ am_src_test_test_slow_OBJECTS = \ src/test/src_test_test_slow-test_slow.$(OBJEXT) \ src/test/src_test_test_slow-test_crypto_slow.$(OBJEXT) \ src/test/src_test_test_slow-test_util_slow.$(OBJEXT) \ src/test/src_test_test_slow-testing_common.$(OBJEXT) \ src/ext/src_test_test_slow-tinytest.$(OBJEXT) src_test_test_slow_OBJECTS = $(am_src_test_test_slow_OBJECTS) src_test_test_slow_DEPENDENCIES = $(am__DEPENDENCIES_1) src_test_test_slow_LINK = $(CCLD) $(src_test_test_slow_CFLAGS) \ $(CFLAGS) $(src_test_test_slow_LDFLAGS) $(LDFLAGS) -o $@ am_src_test_test_workqueue_OBJECTS = \ src/test/src_test_test_workqueue-test_workqueue.$(OBJEXT) src_test_test_workqueue_OBJECTS = \ $(am_src_test_test_workqueue_OBJECTS) src_test_test_workqueue_DEPENDENCIES = src/or/libtor-testing.a \ src/common/libor-testing.a src/common/libor-crypto-testing.a \ $(LIBDONNA) src/common/libor-event-testing.a src_test_test_workqueue_LINK = $(CCLD) \ $(src_test_test_workqueue_CFLAGS) $(CFLAGS) \ $(src_test_test_workqueue_LDFLAGS) $(LDFLAGS) -o $@ am_src_tools_tor_checkkey_OBJECTS = src/tools/tor-checkkey.$(OBJEXT) src_tools_tor_checkkey_OBJECTS = $(am_src_tools_tor_checkkey_OBJECTS) src_tools_tor_checkkey_DEPENDENCIES = src/common/libor.a \ src/common/libor-crypto.a $(LIBDONNA) src_tools_tor_checkkey_LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(src_tools_tor_checkkey_LDFLAGS) $(LDFLAGS) -o $@ am__src_tools_tor_cov_gencert_SOURCES_DIST = src/tools/tor-gencert.c @COVERAGE_ENABLED_TRUE@am_src_tools_tor_cov_gencert_OBJECTS = src/tools/src_tools_tor_cov_gencert-tor-gencert.$(OBJEXT) src_tools_tor_cov_gencert_OBJECTS = \ $(am_src_tools_tor_cov_gencert_OBJECTS) @COVERAGE_ENABLED_TRUE@src_tools_tor_cov_gencert_DEPENDENCIES = \ @COVERAGE_ENABLED_TRUE@ src/common/libor-testing.a \ @COVERAGE_ENABLED_TRUE@ src/common/libor-crypto-testing.a \ @COVERAGE_ENABLED_TRUE@ $(LIBDONNA) src_tools_tor_cov_gencert_LINK = $(CCLD) \ $(src_tools_tor_cov_gencert_CFLAGS) $(CFLAGS) \ $(src_tools_tor_cov_gencert_LDFLAGS) $(LDFLAGS) -o $@ am__src_tools_tor_cov_resolve_SOURCES_DIST = src/tools/tor-resolve.c @COVERAGE_ENABLED_TRUE@am_src_tools_tor_cov_resolve_OBJECTS = src/tools/src_tools_tor_cov_resolve-tor-resolve.$(OBJEXT) src_tools_tor_cov_resolve_OBJECTS = \ $(am_src_tools_tor_cov_resolve_OBJECTS) @COVERAGE_ENABLED_TRUE@src_tools_tor_cov_resolve_DEPENDENCIES = \ @COVERAGE_ENABLED_TRUE@ src/common/libor-testing.a src_tools_tor_cov_resolve_LINK = $(CCLD) \ $(src_tools_tor_cov_resolve_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ am_src_tools_tor_gencert_OBJECTS = src/tools/tor-gencert.$(OBJEXT) src_tools_tor_gencert_OBJECTS = $(am_src_tools_tor_gencert_OBJECTS) src_tools_tor_gencert_DEPENDENCIES = src/common/libor.a \ src/common/libor-crypto.a $(LIBDONNA) src_tools_tor_gencert_LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(src_tools_tor_gencert_LDFLAGS) $(LDFLAGS) -o $@ am_src_tools_tor_resolve_OBJECTS = src/tools/tor-resolve.$(OBJEXT) src_tools_tor_resolve_OBJECTS = $(am_src_tools_tor_resolve_OBJECTS) src_tools_tor_resolve_DEPENDENCIES = src/common/libor.a src_tools_tor_resolve_LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(src_tools_tor_resolve_LDFLAGS) $(LDFLAGS) -o $@ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } SCRIPTS = $(bin_SCRIPTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles am__mv = mv -f AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(src_common_libcurve25519_donna_a_SOURCES) \ $(src_common_libor_crypto_testing_a_SOURCES) \ $(src_common_libor_crypto_a_SOURCES) \ $(src_common_libor_event_testing_a_SOURCES) \ $(src_common_libor_event_a_SOURCES) \ $(src_common_libor_testing_a_SOURCES) \ $(src_common_libor_a_SOURCES) \ $(src_ext_ed25519_donna_libed25519_donna_a_SOURCES) \ $(src_ext_ed25519_ref10_libed25519_ref10_a_SOURCES) \ $(src_or_libtor_testing_a_SOURCES) $(src_or_libtor_a_SOURCES) \ $(src_trunnel_libor_trunnel_testing_a_SOURCES) \ $(src_trunnel_libor_trunnel_a_SOURCES) $(src_or_tor_SOURCES) \ $(src_or_tor_cov_SOURCES) $(src_test_bench_SOURCES) \ $(src_test_test_SOURCES) $(src_test_test_bt_cl_SOURCES) \ src/test/test-child.c $(src_test_test_memwipe_SOURCES) \ $(src_test_test_ntor_cl_SOURCES) $(src_test_test_slow_SOURCES) \ $(src_test_test_workqueue_SOURCES) \ $(src_tools_tor_checkkey_SOURCES) \ $(src_tools_tor_cov_gencert_SOURCES) \ $(src_tools_tor_cov_resolve_SOURCES) \ $(src_tools_tor_gencert_SOURCES) \ $(src_tools_tor_resolve_SOURCES) DIST_SOURCES = $(am__src_common_libcurve25519_donna_a_SOURCES_DIST) \ $(src_common_libor_crypto_testing_a_SOURCES) \ $(src_common_libor_crypto_a_SOURCES) \ $(src_common_libor_event_testing_a_SOURCES) \ $(src_common_libor_event_a_SOURCES) \ $(am__src_common_libor_testing_a_SOURCES_DIST) \ $(am__src_common_libor_a_SOURCES_DIST) \ $(src_ext_ed25519_donna_libed25519_donna_a_SOURCES) \ $(src_ext_ed25519_ref10_libed25519_ref10_a_SOURCES) \ $(am__src_or_libtor_testing_a_SOURCES_DIST) \ $(am__src_or_libtor_a_SOURCES_DIST) \ $(src_trunnel_libor_trunnel_testing_a_SOURCES) \ $(src_trunnel_libor_trunnel_a_SOURCES) $(src_or_tor_SOURCES) \ $(am__src_or_tor_cov_SOURCES_DIST) $(src_test_bench_SOURCES) \ $(src_test_test_SOURCES) $(src_test_test_bt_cl_SOURCES) \ src/test/test-child.c $(src_test_test_memwipe_SOURCES) \ $(src_test_test_ntor_cl_SOURCES) $(src_test_test_slow_SOURCES) \ $(src_test_test_workqueue_SOURCES) \ $(src_tools_tor_checkkey_SOURCES) \ $(am__src_tools_tor_cov_gencert_SOURCES_DIST) \ $(am__src_tools_tor_cov_resolve_SOURCES_DIST) \ $(src_tools_tor_gencert_SOURCES) \ $(src_tools_tor_resolve_SOURCES) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac man1dir = $(mandir)/man1 NROFF = nroff MANS = $(nodist_man1_MANS) DATA = $(conf_DATA) $(doc_DATA) $(tordata_DATA) HEADERS = $(noinst_HEADERS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ $(LISP)orconfig.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags CSCOPE = cscope AM_RECURSIVE_TARGETS = cscope check recheck am__tty_colors_dummy = \ mgn= red= grn= lgn= blu= brg= std=; \ am__color_tests=no am__tty_colors = { \ $(am__tty_colors_dummy); \ if test "X$(AM_COLOR_TESTS)" = Xno; then \ am__color_tests=no; \ elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ am__color_tests=yes; \ elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ am__color_tests=yes; \ fi; \ if test $$am__color_tests = yes; then \ red=''; \ grn=''; \ lgn=''; \ blu=''; \ mgn=''; \ brg=''; \ std=''; \ fi; \ } am__recheck_rx = ^[ ]*:recheck:[ ]* am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* # A command that, given a newline-separated list of test names on the # standard input, print the name of the tests that are to be re-run # upon "make recheck". am__list_recheck_tests = $(AWK) '{ \ recheck = 1; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ { \ if ((getline line2 < ($$0 ".log")) < 0) \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ { \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ { \ break; \ } \ }; \ if (recheck) \ print $$0; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # A command that, given a newline-separated list of test names on the # standard input, create the global log from their .trs and .log files. am__create_global_log = $(AWK) ' \ function fatal(msg) \ { \ print "fatal: making $@: " msg | "cat >&2"; \ exit 1; \ } \ function rst_section(header) \ { \ print header; \ len = length(header); \ for (i = 1; i <= len; i = i + 1) \ printf "="; \ printf "\n\n"; \ } \ { \ copy_in_global_log = 1; \ global_test_result = "RUN"; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".trs"); \ if (line ~ /$(am__global_test_result_rx)/) \ { \ sub("$(am__global_test_result_rx)", "", line); \ sub("[ ]*$$", "", line); \ global_test_result = line; \ } \ else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ copy_in_global_log = 0; \ }; \ if (copy_in_global_log) \ { \ rst_section(global_test_result ": " $$0); \ while ((rc = (getline line < ($$0 ".log"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".log"); \ print line; \ }; \ printf "\n"; \ }; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # Restructured Text title. am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } # Solaris 10 'make', and several other traditional 'make' implementations, # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it # by disabling -e (using the XSI extension "set +e") if it's set. am__sh_e_setup = case $$- in *e*) set +e;; esac # Default flags passed to test drivers. am__common_driver_flags = \ --color-tests "$$am__color_tests" \ --enable-hard-errors "$$am__enable_hard_errors" \ --expect-failure "$$am__expect_failure" # To be inserted before the command running the test. Creates the # directory for the log if needed. Stores in $dir the directory # containing $f, in $tst the test, in $log the log. Executes the # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and # passes TESTS_ENVIRONMENT. Set up options for the wrapper that # will run the test scripts (or their associated LOG_COMPILER, if # thy have one). am__check_pre = \ $(am__sh_e_setup); \ $(am__vpath_adj_setup) $(am__vpath_adj) \ $(am__tty_colors); \ srcdir=$(srcdir); export srcdir; \ case "$@" in \ */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ *) am__odir=.;; \ esac; \ test "x$$am__odir" = x"." || test -d "$$am__odir" \ || $(MKDIR_P) "$$am__odir" || exit $$?; \ if test -f "./$$f"; then dir=./; \ elif test -f "$$f"; then dir=; \ else dir="$(srcdir)/"; fi; \ tst=$$dir$$f; log='$@'; \ if test -n '$(DISABLE_HARD_ERRORS)'; then \ am__enable_hard_errors=no; \ else \ am__enable_hard_errors=yes; \ fi; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ am__expect_failure=yes;; \ *) \ am__expect_failure=no;; \ esac; \ $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) # A shell command to get the names of the tests scripts with any registered # extension removed (i.e., equivalently, the names of the test logs, with # the '.log' extension removed). The result is saved in the shell variable # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", # since that might cause problem with VPATH rewrites for suffix-less tests. # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. am__set_TESTS_bases = \ bases='$(TEST_LOGS)'; \ bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ bases=`echo $$bases` RECHECK_LOGS = $(TEST_LOGS) TEST_SUITE_LOG = test-suite.log TEST_EXTENSIONS = @EXEEXT@ .test LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) am__set_b = \ case '$@' in \ */*) \ case '$*' in \ */*) b='$*';; \ *) b=`echo '$@' | sed 's/\.log$$//'`; \ esac;; \ *) \ b='$*';; \ esac am__test_logs1 = $(TESTS:=.log) am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log) TEST_LOGS = $(am__test_logs2:.test.log=.log) TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ $(TEST_LOG_FLAGS) am__DIST_COMMON = $(srcdir)/Doxyfile.in $(srcdir)/Makefile.in \ $(srcdir)/contrib/include.am $(srcdir)/doc/include.am \ $(srcdir)/orconfig.h.in $(srcdir)/src/common/include.am \ $(srcdir)/src/config/include.am $(srcdir)/src/ext/include.am \ $(srcdir)/src/include.am $(srcdir)/src/or/include.am \ $(srcdir)/src/test/include.am $(srcdir)/src/tools/include.am \ $(srcdir)/src/trunnel/include.am \ $(srcdir)/src/win32/include.am \ $(top_srcdir)/contrib/dist/suse/tor.sh.in \ $(top_srcdir)/contrib/dist/tor.service.in \ $(top_srcdir)/contrib/dist/tor.sh.in \ $(top_srcdir)/contrib/dist/torctl.in \ $(top_srcdir)/contrib/operator-tools/tor.logrotate.in \ $(top_srcdir)/scripts/maint/checkOptionDocs.pl.in \ $(top_srcdir)/scripts/maint/updateVersions.pl.in \ $(top_srcdir)/src/config/torrc.minimal.in \ $(top_srcdir)/src/config/torrc.sample.in ChangeLog INSTALL \ README compile config.guess config.sub depcomp install-sh \ missing test-driver DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best DIST_TARGETS = dist-gzip distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print A2X = @A2X@ ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ ASCIIDOC = @ASCIIDOC@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BINDIR = @BINDIR@ BUILDDIR = @BUILDDIR@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CONFDIR = @CONFDIR@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CURVE25519_LIBS = @CURVE25519_LIBS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ F_OMIT_FRAME_POINTER = @F_OMIT_FRAME_POINTER@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSYSTEMD209_CFLAGS = @LIBSYSTEMD209_CFLAGS@ LIBSYSTEMD209_LIBS = @LIBSYSTEMD209_LIBS@ LOCALSTATEDIR = @LOCALSTATEDIR@ LOGFACILITY = @LOGFACILITY@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PERL = @PERL@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ SYSTEMD_CFLAGS = @SYSTEMD_CFLAGS@ SYSTEMD_LIBS = @SYSTEMD_LIBS@ TORGROUP = @TORGROUP@ TORUSER = @TORUSER@ TOR_CPPFLAGS_libevent = @TOR_CPPFLAGS_libevent@ TOR_CPPFLAGS_openssl = @TOR_CPPFLAGS_openssl@ TOR_CPPFLAGS_zlib = @TOR_CPPFLAGS_zlib@ TOR_LDFLAGS_libevent = @TOR_LDFLAGS_libevent@ TOR_LDFLAGS_openssl = @TOR_LDFLAGS_openssl@ TOR_LDFLAGS_zlib = @TOR_LDFLAGS_zlib@ TOR_LIBEVENT_LIBS = @TOR_LIBEVENT_LIBS@ TOR_LIB_GDI = @TOR_LIB_GDI@ TOR_LIB_IPHLPAPI = @TOR_LIB_IPHLPAPI@ TOR_LIB_MATH = @TOR_LIB_MATH@ TOR_LIB_WS32 = @TOR_LIB_WS32@ TOR_OPENSSL_LIBS = @TOR_OPENSSL_LIBS@ TOR_SYSTEMD_CFLAGS = @TOR_SYSTEMD_CFLAGS@ TOR_SYSTEMD_LIBS = @TOR_SYSTEMD_LIBS@ TOR_ZLIB_LIBS = @TOR_ZLIB_LIBS@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # "foreign" means we don't follow GNU package layout standards # 1.9 means we require automake vesion 1.9 AUTOMAKE_OPTIONS = foreign 1.9 subdir-objects ACLOCAL_AMFLAGS = -I m4 noinst_LIBRARIES = $(LIBED25519_REF10) $(LIBED25519_DONNA) \ src/trunnel/libor-trunnel.a $(am__append_1) src/common/libor.a \ src/common/libor-crypto.a src/common/libor-event.a \ $(am__append_2) $(am__append_4) $(am__append_5) \ src/or/libtor.a $(am__append_6) EXTRA_DIST = src/ext/README src/common/Makefile.nmake src/or/ntmain.c \ src/or/Makefile.nmake src/test/bt_test.py src/test/ntor_ref.py \ src/test/slownacl_curve25519.py src/test/zero_length_keys.sh \ src/test/test_keygen.sh src/test/test_zero_length_keys.sh \ src/test/test_ntor.sh src/test/test_bt.sh \ src/test/test-network.sh src/tools/tor-fw-helper/README \ src/win32/orconfig.h src/config/geoip src/config/geoip6 \ src/config/torrc.minimal.in src/config/torrc.sample.in \ src/config/README doc/HACKING doc/asciidoc-helper.sh \ $(html_in) $(man_in) $(txt_in) doc/state-contents.txt \ doc/torrc_format.txt doc/TUNING doc/WritingTests.txt \ contrib/README contrib/client-tools/torify \ contrib/dist/rc.subr contrib/dist/suse/tor.sh.in \ contrib/dist/tor.sh contrib/dist/torctl \ contrib/dist/tor.service.in \ contrib/operator-tools/linux-tor-prio.sh \ contrib/operator-tools/tor-exit-notice.html \ contrib/or-tools/exitlist \ contrib/win32build/package_nsis-mingw.sh \ contrib/win32build/tor-mingw.nsi.in contrib/win32build/tor.ico \ contrib/win32build/tor.nsi.in ChangeLog INSTALL LICENSE \ Makefile.nmake README ReleaseNotes noinst_HEADERS = $(EXTHEADERS) $(ED25519_REF10_HDRS) \ $(ED25519_DONNA_HDRS) $(TRUNNELHEADERS) $(COMMONHEADERS) \ $(ORHEADERS) micro-revision.i src/test/fakechans.h \ src/test/test.h src/test/test_helpers.h \ src/test/test_descriptors.inc src/test/example_extrainfo.inc \ src/test/failing_routerdescs.inc src/test/ed25519_vectors.inc \ src/test/test_descriptors.inc CLEANFILES = micro-revision.i src/or/micro-revision.i \ micro-revision.tmp $(asciidoc_product) config.log DISTCLEANFILES = $(html_in) $(man_in) bin_SCRIPTS = contrib/client-tools/torify #CFLAGS = -Wall -Wpointer-arith -O2 AM_CPPFLAGS = -I$(srcdir)/src/ext -Isrc/ext \ -I$(srcdir)/src/ext/trunnel -I$(srcdir)/src/trunnel \ -I$(srcdir)/src/common -Isrc/common \ -I$(srcdir)/src/ext/trunnel -I$(srcdir)/src/trunnel \ -I$(srcdir)/src/or -Isrc/or -DSHARE_DATADIR="\"$(datadir)\"" \ -DLOCALSTATEDIR="\"$(localstatedir)\"" \ -DBINDIR="\"$(bindir)\"" AM_CFLAGS = @TOR_SYSTEMD_CFLAGS@ EXTHEADERS = \ src/ext/ht.h \ src/ext/eventdns.h \ src/ext/tinytest.h \ src/ext/tor_readpassphrase.h \ src/ext/strlcat.c \ src/ext/strlcpy.c \ src/ext/tinytest_macros.h \ src/ext/tor_queue.h \ src/ext/siphash.h src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS = src_ext_ed25519_ref10_libed25519_ref10_a_SOURCES = \ src/ext/ed25519/ref10/fe_0.c \ src/ext/ed25519/ref10/fe_1.c \ src/ext/ed25519/ref10/fe_add.c \ src/ext/ed25519/ref10/fe_cmov.c \ src/ext/ed25519/ref10/fe_copy.c \ src/ext/ed25519/ref10/fe_frombytes.c \ src/ext/ed25519/ref10/fe_invert.c \ src/ext/ed25519/ref10/fe_isnegative.c \ src/ext/ed25519/ref10/fe_isnonzero.c \ src/ext/ed25519/ref10/fe_mul.c \ src/ext/ed25519/ref10/fe_neg.c \ src/ext/ed25519/ref10/fe_pow22523.c \ src/ext/ed25519/ref10/fe_sq.c \ src/ext/ed25519/ref10/fe_sq2.c \ src/ext/ed25519/ref10/fe_sub.c \ src/ext/ed25519/ref10/fe_tobytes.c \ src/ext/ed25519/ref10/ge_add.c \ src/ext/ed25519/ref10/ge_double_scalarmult.c \ src/ext/ed25519/ref10/ge_frombytes.c \ src/ext/ed25519/ref10/ge_madd.c \ src/ext/ed25519/ref10/ge_msub.c \ src/ext/ed25519/ref10/ge_p1p1_to_p2.c \ src/ext/ed25519/ref10/ge_p1p1_to_p3.c \ src/ext/ed25519/ref10/ge_p2_0.c \ src/ext/ed25519/ref10/ge_p2_dbl.c \ src/ext/ed25519/ref10/ge_p3_0.c \ src/ext/ed25519/ref10/ge_p3_dbl.c \ src/ext/ed25519/ref10/ge_p3_to_cached.c \ src/ext/ed25519/ref10/ge_p3_to_p2.c \ src/ext/ed25519/ref10/ge_p3_tobytes.c \ src/ext/ed25519/ref10/ge_precomp_0.c \ src/ext/ed25519/ref10/ge_scalarmult_base.c \ src/ext/ed25519/ref10/ge_sub.c \ src/ext/ed25519/ref10/ge_tobytes.c \ src/ext/ed25519/ref10/keypair.c \ src/ext/ed25519/ref10/open.c \ src/ext/ed25519/ref10/sc_muladd.c \ src/ext/ed25519/ref10/sc_reduce.c \ src/ext/ed25519/ref10/sign.c \ src/ext/ed25519/ref10/keyconv.c \ src/ext/ed25519/ref10/blinding.c ED25519_REF10_HDRS = \ src/ext/ed25519/ref10/api.h \ src/ext/ed25519/ref10/base.h \ src/ext/ed25519/ref10/base2.h \ src/ext/ed25519/ref10/crypto_hash_sha512.h \ src/ext/ed25519/ref10/crypto_int32.h \ src/ext/ed25519/ref10/crypto_int64.h \ src/ext/ed25519/ref10/crypto_sign.h \ src/ext/ed25519/ref10/crypto_uint32.h \ src/ext/ed25519/ref10/crypto_uint64.h \ src/ext/ed25519/ref10/crypto_verify_32.h \ src/ext/ed25519/ref10/d.h \ src/ext/ed25519/ref10/d2.h \ src/ext/ed25519/ref10/ed25519_ref10.h \ src/ext/ed25519/ref10/fe.h \ src/ext/ed25519/ref10/ge.h \ src/ext/ed25519/ref10/ge_add.h \ src/ext/ed25519/ref10/ge_madd.h \ src/ext/ed25519/ref10/ge_msub.h \ src/ext/ed25519/ref10/ge_p2_dbl.h \ src/ext/ed25519/ref10/ge_sub.h \ src/ext/ed25519/ref10/pow22523.h \ src/ext/ed25519/ref10/pow225521.h \ src/ext/ed25519/ref10/randombytes.h \ src/ext/ed25519/ref10/sc.h \ src/ext/ed25519/ref10/sqrtm1.h LIBED25519_REF10 = src/ext/ed25519/ref10/libed25519_ref10.a src_ext_ed25519_donna_libed25519_donna_a_CFLAGS = \ -DED25519_CUSTOMRANDOM \ -DED25519_SUFFIX=_donna src_ext_ed25519_donna_libed25519_donna_a_SOURCES = \ src/ext/ed25519/donna/ed25519_tor.c ED25519_DONNA_HDRS = \ src/ext/ed25519/donna/curve25519-donna-32bit.h \ src/ext/ed25519/donna/curve25519-donna-64bit.h \ src/ext/ed25519/donna/curve25519-donna-helpers.h \ src/ext/ed25519/donna/curve25519-donna-sse2.h \ src/ext/ed25519/donna/ed25519-donna-32bit-sse2.h \ src/ext/ed25519/donna/ed25519-donna-32bit-tables.h \ src/ext/ed25519/donna/ed25519-donna-64bit-sse2.h \ src/ext/ed25519/donna/ed25519-donna-64bit-tables.h \ src/ext/ed25519/donna/ed25519-donna-64bit-x86-32bit.h \ src/ext/ed25519/donna/ed25519-donna-64bit-x86.h \ src/ext/ed25519/donna/ed25519-donna-basepoint-table.h \ src/ext/ed25519/donna/ed25519-donna-batchverify.h \ src/ext/ed25519/donna/ed25519-donna.h \ src/ext/ed25519/donna/ed25519-donna-impl-base.h \ src/ext/ed25519/donna/ed25519-donna-impl-sse2.h \ src/ext/ed25519/donna/ed25519-donna-portable.h \ src/ext/ed25519/donna/ed25519-donna-portable-identify.h \ src/ext/ed25519/donna/ed25519_donna_tor.h \ src/ext/ed25519/donna/ed25519.h \ src/ext/ed25519/donna/ed25519-hash-custom.h \ src/ext/ed25519/donna/ed25519-hash.h \ src/ext/ed25519/donna/ed25519-randombytes-custom.h \ src/ext/ed25519/donna/ed25519-randombytes.h \ src/ext/ed25519/donna/modm-donna-32bit.h \ src/ext/ed25519/donna/modm-donna-64bit.h \ src/ext/ed25519/donna/regression.h \ src/ext/ed25519/donna/test-ticks.h \ src/ext/ed25519/donna/test-internals.c LIBED25519_DONNA = src/ext/ed25519/donna/libed25519_donna.a TRUNNELINPUTS = \ src/trunnel/ed25519_cert.trunnel \ src/trunnel/link_handshake.trunnel \ src/trunnel/pwbox.trunnel TRUNNELSOURCES = \ src/ext/trunnel/trunnel.c \ src/trunnel/ed25519_cert.c \ src/trunnel/link_handshake.c \ src/trunnel/pwbox.c TRUNNELHEADERS = \ src/ext/trunnel/trunnel.h \ src/ext/trunnel/trunnel-impl.h \ src/trunnel/trunnel-local.h \ src/trunnel/ed25519_cert.h \ src/trunnel/link_handshake.h \ src/trunnel/pwbox.h src_trunnel_libor_trunnel_a_SOURCES = $(TRUNNELSOURCES) src_trunnel_libor_trunnel_a_CPPFLAGS = -DTRUNNEL_LOCAL_H $(AM_CPPFLAGS) src_trunnel_libor_trunnel_testing_a_SOURCES = $(TRUNNELSOURCES) src_trunnel_libor_trunnel_testing_a_CPPFLAGS = -DTRUNNEL_LOCAL_H $(AM_CPPFLAGS) $(TEST_CPPFLAGS) src_trunnel_libor_trunnel_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) @USE_OPENBSD_MALLOC_FALSE@libor_extra_source = @USE_OPENBSD_MALLOC_TRUE@libor_extra_source = src/ext/OpenBSD_malloc_Linux.c src_common_libcurve25519_donna_a_CFLAGS = $(am__append_3) @BUILD_CURVE25519_DONNA_C64_TRUE@@BUILD_CURVE25519_DONNA_FALSE@src_common_libcurve25519_donna_a_SOURCES = \ @BUILD_CURVE25519_DONNA_C64_TRUE@@BUILD_CURVE25519_DONNA_FALSE@ src/ext/curve25519_donna/curve25519-donna-c64.c @BUILD_CURVE25519_DONNA_TRUE@src_common_libcurve25519_donna_a_SOURCES = \ @BUILD_CURVE25519_DONNA_TRUE@ src/ext/curve25519_donna/curve25519-donna.c @BUILD_CURVE25519_DONNA_C64_FALSE@@BUILD_CURVE25519_DONNA_FALSE@LIBDONNA = $(LIBED25519_REF10) \ @BUILD_CURVE25519_DONNA_C64_FALSE@@BUILD_CURVE25519_DONNA_FALSE@ $(LIBED25519_DONNA) @BUILD_CURVE25519_DONNA_C64_TRUE@@BUILD_CURVE25519_DONNA_FALSE@LIBDONNA = src/common/libcurve25519_donna.a \ @BUILD_CURVE25519_DONNA_C64_TRUE@@BUILD_CURVE25519_DONNA_FALSE@ $(LIBED25519_REF10) \ @BUILD_CURVE25519_DONNA_C64_TRUE@@BUILD_CURVE25519_DONNA_FALSE@ $(LIBED25519_DONNA) @BUILD_CURVE25519_DONNA_TRUE@LIBDONNA = \ @BUILD_CURVE25519_DONNA_TRUE@ src/common/libcurve25519_donna.a \ @BUILD_CURVE25519_DONNA_TRUE@ $(LIBED25519_REF10) \ @BUILD_CURVE25519_DONNA_TRUE@ $(LIBED25519_DONNA) @THREADS_PTHREADS_TRUE@threads_impl_source = src/common/compat_pthreads.c @THREADS_WIN32_TRUE@threads_impl_source = src/common/compat_winthreads.c @BUILD_READPASSPHRASE_C_FALSE@readpassphrase_source = @BUILD_READPASSPHRASE_C_TRUE@readpassphrase_source = src/ext/readpassphrase.c LIBOR_A_SOURCES = \ src/common/address.c \ src/common/backtrace.c \ src/common/compat.c \ src/common/compat_threads.c \ src/common/container.c \ src/common/di_ops.c \ src/common/log.c \ src/common/memarea.c \ src/common/util.c \ src/common/util_format.c \ src/common/util_process.c \ src/common/sandbox.c \ src/common/workqueue.c \ src/ext/csiphash.c \ src/ext/trunnel/trunnel.c \ $(libor_extra_source) \ $(threads_impl_source) \ $(readpassphrase_source) LIBOR_CRYPTO_A_SOURCES = \ src/common/aes.c \ src/common/crypto.c \ src/common/crypto_pwbox.c \ src/common/crypto_s2k.c \ src/common/crypto_format.c \ src/common/torgzip.c \ src/common/tortls.c \ src/trunnel/pwbox.c \ src/common/crypto_curve25519.c \ src/common/crypto_ed25519.c LIBOR_EVENT_A_SOURCES = \ src/common/compat_libevent.c \ src/common/procmon.c src_common_libor_a_SOURCES = $(LIBOR_A_SOURCES) src_common_libor_crypto_a_SOURCES = $(LIBOR_CRYPTO_A_SOURCES) src_common_libor_event_a_SOURCES = $(LIBOR_EVENT_A_SOURCES) src_common_libor_testing_a_SOURCES = $(LIBOR_A_SOURCES) src_common_libor_crypto_testing_a_SOURCES = $(LIBOR_CRYPTO_A_SOURCES) src_common_libor_event_testing_a_SOURCES = $(LIBOR_EVENT_A_SOURCES) src_common_libor_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS) src_common_libor_crypto_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS) src_common_libor_event_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS) src_common_libor_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) src_common_libor_crypto_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) src_common_libor_event_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) COMMONHEADERS = \ src/common/address.h \ src/common/backtrace.h \ src/common/aes.h \ src/common/ciphers.inc \ src/common/compat.h \ src/common/compat_libevent.h \ src/common/compat_threads.h \ src/common/container.h \ src/common/crypto.h \ src/common/crypto_curve25519.h \ src/common/crypto_ed25519.h \ src/common/crypto_format.h \ src/common/crypto_pwbox.h \ src/common/crypto_s2k.h \ src/common/di_ops.h \ src/common/memarea.h \ src/common/linux_syscalls.inc \ src/common/procmon.h \ src/common/sandbox.h \ src/common/testsupport.h \ src/common/torgzip.h \ src/common/torint.h \ src/common/torlog.h \ src/common/tortls.h \ src/common/util.h \ src/common/util_format.h \ src/common/util_process.h \ src/common/workqueue.h @BUILD_NT_SERVICES_FALSE@tor_platform_source = @BUILD_NT_SERVICES_TRUE@tor_platform_source = src/or/ntmain.c @USE_EXTERNAL_EVDNS_FALSE@evdns_source = src/ext/eventdns.c @USE_EXTERNAL_EVDNS_TRUE@evdns_source = LIBTOR_A_SOURCES = \ src/or/addressmap.c \ src/or/buffers.c \ src/or/channel.c \ src/or/channeltls.c \ src/or/circpathbias.c \ src/or/circuitbuild.c \ src/or/circuitlist.c \ src/or/circuitmux.c \ src/or/circuitmux_ewma.c \ src/or/circuitstats.c \ src/or/circuituse.c \ src/or/command.c \ src/or/config.c \ src/or/confparse.c \ src/or/connection.c \ src/or/connection_edge.c \ src/or/connection_or.c \ src/or/control.c \ src/or/cpuworker.c \ src/or/dircollate.c \ src/or/directory.c \ src/or/dirserv.c \ src/or/dirvote.c \ src/or/dns.c \ src/or/dnsserv.c \ src/or/fp_pair.c \ src/or/geoip.c \ src/or/entrynodes.c \ src/or/ext_orport.c \ src/or/hibernate.c \ src/or/keypin.c \ src/or/main.c \ src/or/microdesc.c \ src/or/networkstatus.c \ src/or/nodelist.c \ src/or/onion.c \ src/or/onion_fast.c \ src/or/onion_tap.c \ src/or/transports.c \ src/or/policies.c \ src/or/reasons.c \ src/or/relay.c \ src/or/rendcache.c \ src/or/rendclient.c \ src/or/rendcommon.c \ src/or/rendmid.c \ src/or/rendservice.c \ src/or/rephist.c \ src/or/replaycache.c \ src/or/router.c \ src/or/routerkeys.c \ src/or/routerlist.c \ src/or/routerparse.c \ src/or/routerset.c \ src/or/scheduler.c \ src/or/statefile.c \ src/or/status.c \ src/or/torcert.c \ src/or/onion_ntor.c \ $(evdns_source) \ $(tor_platform_source) src_or_libtor_a_SOURCES = $(LIBTOR_A_SOURCES) src_or_libtor_testing_a_SOURCES = $(LIBTOR_A_SOURCES) src_or_tor_SOURCES = src/or/tor_main.c src_or_libtor_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS) src_or_libtor_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) # -L flags need to go in LDFLAGS. -l flags need to go in LDADD. # This seems to matter nowhere but on windows, but I assure you that it # matters a lot there, and is quite hard to debug if you forget to do it. src_or_tor_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ @TOR_LDFLAGS_libevent@ src_or_tor_LDADD = src/or/libtor.a src/common/libor.a \ src/common/libor-crypto.a $(LIBDONNA) \ src/common/libor-event.a src/trunnel/libor-trunnel.a \ @TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ @TOR_OPENSSL_LIBS@ \ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ @TOR_SYSTEMD_LIBS@ @COVERAGE_ENABLED_TRUE@src_or_tor_cov_SOURCES = src/or/tor_main.c @COVERAGE_ENABLED_TRUE@src_or_tor_cov_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS) @COVERAGE_ENABLED_TRUE@src_or_tor_cov_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) @COVERAGE_ENABLED_TRUE@src_or_tor_cov_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ @TOR_LDFLAGS_libevent@ @COVERAGE_ENABLED_TRUE@src_or_tor_cov_LDADD = src/or/libtor-testing.a src/common/libor-testing.a \ @COVERAGE_ENABLED_TRUE@ src/common/libor-crypto-testing.a $(LIBDONNA) \ @COVERAGE_ENABLED_TRUE@ src/common/libor-event-testing.a src/trunnel/libor-trunnel-testing.a \ @COVERAGE_ENABLED_TRUE@ @TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ @TOR_OPENSSL_LIBS@ \ @COVERAGE_ENABLED_TRUE@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ @TOR_SYSTEMD_LIBS@ ORHEADERS = \ src/or/addressmap.h \ src/or/buffers.h \ src/or/channel.h \ src/or/channeltls.h \ src/or/circpathbias.h \ src/or/circuitbuild.h \ src/or/circuitlist.h \ src/or/circuitmux.h \ src/or/circuitmux_ewma.h \ src/or/circuitstats.h \ src/or/circuituse.h \ src/or/command.h \ src/or/config.h \ src/or/confparse.h \ src/or/connection.h \ src/or/connection_edge.h \ src/or/connection_or.h \ src/or/control.h \ src/or/cpuworker.h \ src/or/dircollate.h \ src/or/directory.h \ src/or/dirserv.h \ src/or/dirvote.h \ src/or/dns.h \ src/or/dns_structs.h \ src/or/dnsserv.h \ src/or/eventdns_tor.h \ src/or/ext_orport.h \ src/or/fp_pair.h \ src/or/geoip.h \ src/or/entrynodes.h \ src/or/hibernate.h \ src/or/keypin.h \ src/or/main.h \ src/or/microdesc.h \ src/or/networkstatus.h \ src/or/nodelist.h \ src/or/ntmain.h \ src/or/onion.h \ src/or/onion_fast.h \ src/or/onion_ntor.h \ src/or/onion_tap.h \ src/or/or.h \ src/or/transports.h \ src/or/policies.h \ src/or/reasons.h \ src/or/relay.h \ src/or/rendcache.h \ src/or/rendclient.h \ src/or/rendcommon.h \ src/or/rendmid.h \ src/or/rendservice.h \ src/or/rephist.h \ src/or/replaycache.h \ src/or/router.h \ src/or/routerkeys.h \ src/or/routerlist.h \ src/or/routerkeys.h \ src/or/routerset.h \ src/or/routerparse.h \ src/or/scheduler.h \ src/or/statefile.h \ src/or/status.h \ src/or/torcert.h TESTSCRIPTS = src/test/test_zero_length_keys.sh $(am__append_8) # These flavors are run using automake's test-driver and test-network.sh TEST_CHUTNEY_FLAVORS = basic-min bridges-min hs-min bridges+hs # only run if we can ping6 ::1 (localhost) TEST_CHUTNEY_FLAVORS_IPV6 = bridges+ipv6-min ipv6-exit-min # only run if we can find a stable (or simply another) version of tor TEST_CHUTNEY_FLAVORS_MIXED = mixed src_test_AM_CPPFLAGS = -DSHARE_DATADIR="\"$(datadir)\"" \ -DLOCALSTATEDIR="\"$(localstatedir)\"" \ -DBINDIR="\"$(bindir)\"" \ -I"$(top_srcdir)/src/or" -I"$(top_srcdir)/src/ext" \ -I"$(top_srcdir)/src/trunnel" \ -I"$(top_srcdir)/src/ext/trunnel" \ -DTOR_UNIT_TESTS # -L flags need to go in LDFLAGS. -l flags need to go in LDADD. # This seems to matter nowhere but on Windows, but I assure you that it # matters a lot there, and is quite hard to debug if you forget to do it. src_test_test_SOURCES = \ src/test/test.c \ src/test/test_accounting.c \ src/test/test_addr.c \ src/test/test_address.c \ src/test/test_buffers.c \ src/test/test_cell_formats.c \ src/test/test_cell_queue.c \ src/test/test_channel.c \ src/test/test_channeltls.c \ src/test/test_checkdir.c \ src/test/test_circuitlist.c \ src/test/test_circuitmux.c \ src/test/test_config.c \ src/test/test_containers.c \ src/test/test_controller.c \ src/test/test_controller_events.c \ src/test/test_crypto.c \ src/test/test_data.c \ src/test/test_dir.c \ src/test/test_entryconn.c \ src/test/test_entrynodes.c \ src/test/test_guardfraction.c \ src/test/test_extorport.c \ src/test/test_hs.c \ src/test/test_introduce.c \ src/test/test_keypin.c \ src/test/test_link_handshake.c \ src/test/test_logging.c \ src/test/test_microdesc.c \ src/test/test_nodelist.c \ src/test/test_oom.c \ src/test/test_options.c \ src/test/test_policy.c \ src/test/test_pt.c \ src/test/test_relay.c \ src/test/test_relaycell.c \ src/test/test_replay.c \ src/test/test_routerkeys.c \ src/test/test_routerlist.c \ src/test/test_routerset.c \ src/test/test_scheduler.c \ src/test/test_socks.c \ src/test/test_status.c \ src/test/test_threads.c \ src/test/test_util.c \ src/test/test_helpers.c \ src/test/test_dns.c \ src/test/testing_common.c \ src/ext/tinytest.c src_test_test_slow_SOURCES = \ src/test/test_slow.c \ src/test/test_crypto_slow.c \ src/test/test_util_slow.c \ src/test/testing_common.c \ src/ext/tinytest.c src_test_test_memwipe_SOURCES = \ src/test/test-memwipe.c src_test_test_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) src_test_test_CPPFLAGS = $(src_test_AM_CPPFLAGS) $(TEST_CPPFLAGS) src_test_bench_SOURCES = \ src/test/bench.c src_test_test_workqueue_SOURCES = \ src/test/test_workqueue.c src_test_test_workqueue_CPPFLAGS = $(src_test_AM_CPPFLAGS) src_test_test_workqueue_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) src_test_test_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ \ @TOR_LDFLAGS_libevent@ src_test_test_LDADD = src/or/libtor-testing.a src/common/libor-testing.a \ src/common/libor-crypto-testing.a $(LIBDONNA) src/common/libor.a \ src/common/libor-event-testing.a src/trunnel/libor-trunnel-testing.a \ @TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ \ @TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ \ @TOR_SYSTEMD_LIBS@ src_test_test_slow_CPPFLAGS = $(src_test_test_CPPFLAGS) src_test_test_slow_CFLAGS = $(src_test_test_CFLAGS) src_test_test_slow_LDADD = $(src_test_test_LDADD) src_test_test_slow_LDFLAGS = $(src_test_test_LDFLAGS) src_test_test_memwipe_CPPFLAGS = $(src_test_test_CPPFLAGS) src_test_test_memwipe_CFLAGS = $(src_test_test_CFLAGS) src_test_test_memwipe_LDADD = $(src_test_test_LDADD) src_test_test_memwipe_LDFLAGS = $(src_test_test_LDFLAGS) src_test_bench_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ \ @TOR_LDFLAGS_libevent@ src_test_bench_LDADD = src/or/libtor.a src/common/libor.a \ src/common/libor-crypto.a $(LIBDONNA) \ src/common/libor-event.a src/trunnel/libor-trunnel.a \ @TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ \ @TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ \ @TOR_SYSTEMD_LIBS@ src_test_test_workqueue_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ \ @TOR_LDFLAGS_libevent@ src_test_test_workqueue_LDADD = src/or/libtor-testing.a \ src/common/libor-testing.a \ src/common/libor-crypto-testing.a $(LIBDONNA) \ src/common/libor-event-testing.a \ @TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ \ @TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ src_test_test_ntor_cl_SOURCES = src/test/test_ntor_cl.c src_test_test_ntor_cl_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ src_test_test_ntor_cl_LDADD = src/or/libtor.a src/common/libor.a \ src/common/libor-crypto.a $(LIBDONNA) \ @TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ \ @TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ src_test_test_ntor_cl_AM_CPPFLAGS = \ -I"$(top_srcdir)/src/or" src_test_test_bt_cl_SOURCES = src/test/test_bt_cl.c src_test_test_bt_cl_LDADD = src/common/libor-testing.a \ @TOR_LIB_MATH@ \ @TOR_LIB_WS32@ @TOR_LIB_GDI@ src_test_test_bt_cl_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) src_test_test_bt_cl_CPPFLAGS = $(src_test_AM_CPPFLAGS) $(TEST_CPPFLAGS) src_tools_tor_resolve_SOURCES = src/tools/tor-resolve.c src_tools_tor_resolve_LDFLAGS = src_tools_tor_resolve_LDADD = src/common/libor.a @TOR_LIB_MATH@ @TOR_LIB_WS32@ @COVERAGE_ENABLED_TRUE@src_tools_tor_cov_resolve_SOURCES = src/tools/tor-resolve.c @COVERAGE_ENABLED_TRUE@src_tools_tor_cov_resolve_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS) @COVERAGE_ENABLED_TRUE@src_tools_tor_cov_resolve_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) @COVERAGE_ENABLED_TRUE@src_tools_tor_cov_resolve_LDADD = src/common/libor-testing.a \ @COVERAGE_ENABLED_TRUE@ @TOR_LIB_MATH@ @TOR_LIB_WS32@ src_tools_tor_gencert_SOURCES = src/tools/tor-gencert.c src_tools_tor_gencert_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ src_tools_tor_gencert_LDADD = src/common/libor.a src/common/libor-crypto.a \ $(LIBDONNA) \ @TOR_LIB_MATH@ @TOR_ZLIB_LIBS@ @TOR_OPENSSL_LIBS@ \ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ @COVERAGE_ENABLED_TRUE@src_tools_tor_cov_gencert_SOURCES = src/tools/tor-gencert.c @COVERAGE_ENABLED_TRUE@src_tools_tor_cov_gencert_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS) @COVERAGE_ENABLED_TRUE@src_tools_tor_cov_gencert_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) @COVERAGE_ENABLED_TRUE@src_tools_tor_cov_gencert_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ @COVERAGE_ENABLED_TRUE@src_tools_tor_cov_gencert_LDADD = src/common/libor-testing.a \ @COVERAGE_ENABLED_TRUE@ src/common/libor-crypto-testing.a \ @COVERAGE_ENABLED_TRUE@ $(LIBDONNA) \ @COVERAGE_ENABLED_TRUE@ @TOR_LIB_MATH@ @TOR_ZLIB_LIBS@ @TOR_OPENSSL_LIBS@ \ @COVERAGE_ENABLED_TRUE@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ src_tools_tor_checkkey_SOURCES = src/tools/tor-checkkey.c src_tools_tor_checkkey_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ src_tools_tor_checkkey_LDADD = src/common/libor.a src/common/libor-crypto.a \ $(LIBDONNA) \ @TOR_LIB_MATH@ @TOR_ZLIB_LIBS@ @TOR_OPENSSL_LIBS@ \ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ confdir = $(sysconfdir)/tor tordatadir = $(datadir)/tor conf_DATA = src/config/torrc.sample tordata_DATA = src/config/geoip src/config/geoip6 base_mans = doc/tor doc/tor-gencert doc/tor-resolve doc/torify all_mans = $(base_mans) @USE_FW_HELPER_FALSE@install_mans = $(base_mans) @USE_FW_HELPER_TRUE@install_mans = $(all_mans) @USE_ASCIIDOC_FALSE@nodist_man1_MANS = @USE_ASCIIDOC_TRUE@nodist_man1_MANS = $(install_mans:=.1) @USE_ASCIIDOC_FALSE@doc_DATA = @USE_ASCIIDOC_TRUE@doc_DATA = $(install_mans:=.html) @USE_ASCIIDOC_FALSE@html_in = @USE_ASCIIDOC_TRUE@html_in = $(all_mans:=.html.in) @USE_ASCIIDOC_FALSE@man_in = @USE_ASCIIDOC_TRUE@man_in = $(all_mans:=.1.in) @USE_ASCIIDOC_FALSE@txt_in = @USE_ASCIIDOC_TRUE@txt_in = $(all_mans:=.1.txt) asciidoc_product = $(nodist_man1_MANS) $(doc_DATA) @COVERAGE_ENABLED_FALSE@TEST_CFLAGS = @COVERAGE_ENABLED_TRUE@TEST_CFLAGS = -fno-inline -fprofile-arcs -ftest-coverage @COVERAGE_ENABLED_FALSE@TEST_CPPFLAGS = -DTOR_UNIT_TESTS @COVERAGE_ENABLED_TRUE@TEST_CPPFLAGS = -DTOR_UNIT_TESTS -DTOR_COVERAGE @COVERAGE_ENABLED_FALSE@TEST_NETWORK_FLAGS = --hs-multi-client 1 @COVERAGE_ENABLED_TRUE@TEST_NETWORK_FLAGS = --coverage --hs-multi-client 1 TEST_NETWORK_ALL_LOG_DIR = $(top_builddir)/test_network_log TEST_NETWORK_ALL_DRIVER_FLAGS = --color-tests yes HTML_COVER_DIR = $(top_builddir)/coverage_html all: orconfig.h $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .log .o .obj .test .test$(EXEEXT) .trs am--refresh: Makefile @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(srcdir)/src/include.am $(srcdir)/src/ext/include.am $(srcdir)/src/trunnel/include.am $(srcdir)/src/common/include.am $(srcdir)/src/or/include.am $(srcdir)/src/test/include.am $(srcdir)/src/tools/include.am $(srcdir)/src/win32/include.am $(srcdir)/src/config/include.am $(srcdir)/doc/include.am $(srcdir)/contrib/include.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(srcdir)/src/include.am $(srcdir)/src/ext/include.am $(srcdir)/src/trunnel/include.am $(srcdir)/src/common/include.am $(srcdir)/src/or/include.am $(srcdir)/src/test/include.am $(srcdir)/src/tools/include.am $(srcdir)/src/win32/include.am $(srcdir)/src/config/include.am $(srcdir)/doc/include.am $(srcdir)/contrib/include.am $(am__empty): $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): orconfig.h: stamp-h1 @test -f $@ || rm -f stamp-h1 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 stamp-h1: $(srcdir)/orconfig.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status orconfig.h $(srcdir)/orconfig.h.in: $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f orconfig.h stamp-h1 Doxyfile: $(top_builddir)/config.status $(srcdir)/Doxyfile.in cd $(top_builddir) && $(SHELL) ./config.status $@ contrib/dist/suse/tor.sh: $(top_builddir)/config.status $(top_srcdir)/contrib/dist/suse/tor.sh.in cd $(top_builddir) && $(SHELL) ./config.status $@ contrib/operator-tools/tor.logrotate: $(top_builddir)/config.status $(top_srcdir)/contrib/operator-tools/tor.logrotate.in cd $(top_builddir) && $(SHELL) ./config.status $@ contrib/dist/tor.sh: $(top_builddir)/config.status $(top_srcdir)/contrib/dist/tor.sh.in cd $(top_builddir) && $(SHELL) ./config.status $@ contrib/dist/torctl: $(top_builddir)/config.status $(top_srcdir)/contrib/dist/torctl.in cd $(top_builddir) && $(SHELL) ./config.status $@ contrib/dist/tor.service: $(top_builddir)/config.status $(top_srcdir)/contrib/dist/tor.service.in cd $(top_builddir) && $(SHELL) ./config.status $@ src/config/torrc.sample: $(top_builddir)/config.status $(top_srcdir)/src/config/torrc.sample.in cd $(top_builddir) && $(SHELL) ./config.status $@ src/config/torrc.minimal: $(top_builddir)/config.status $(top_srcdir)/src/config/torrc.minimal.in cd $(top_builddir) && $(SHELL) ./config.status $@ scripts/maint/checkOptionDocs.pl: $(top_builddir)/config.status $(top_srcdir)/scripts/maint/checkOptionDocs.pl.in cd $(top_builddir) && $(SHELL) ./config.status $@ scripts/maint/updateVersions.pl: $(top_builddir)/config.status $(top_srcdir)/scripts/maint/updateVersions.pl.in cd $(top_builddir) && $(SHELL) ./config.status $@ clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) src/ext/curve25519_donna/$(am__dirstamp): @$(MKDIR_P) src/ext/curve25519_donna @: > src/ext/curve25519_donna/$(am__dirstamp) src/ext/curve25519_donna/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) src/ext/curve25519_donna/$(DEPDIR) @: > src/ext/curve25519_donna/$(DEPDIR)/$(am__dirstamp) src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna-c64.$(OBJEXT): \ src/ext/curve25519_donna/$(am__dirstamp) \ src/ext/curve25519_donna/$(DEPDIR)/$(am__dirstamp) src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna.$(OBJEXT): \ src/ext/curve25519_donna/$(am__dirstamp) \ src/ext/curve25519_donna/$(DEPDIR)/$(am__dirstamp) src/common/$(am__dirstamp): @$(MKDIR_P) src/common @: > src/common/$(am__dirstamp) src/common/libcurve25519_donna.a: $(src_common_libcurve25519_donna_a_OBJECTS) $(src_common_libcurve25519_donna_a_DEPENDENCIES) $(EXTRA_src_common_libcurve25519_donna_a_DEPENDENCIES) src/common/$(am__dirstamp) $(AM_V_at)-rm -f src/common/libcurve25519_donna.a $(AM_V_AR)$(src_common_libcurve25519_donna_a_AR) src/common/libcurve25519_donna.a $(src_common_libcurve25519_donna_a_OBJECTS) $(src_common_libcurve25519_donna_a_LIBADD) $(AM_V_at)$(RANLIB) src/common/libcurve25519_donna.a src/common/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) src/common/$(DEPDIR) @: > src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_crypto_testing_a-aes.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_crypto_testing_a-crypto.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_crypto_testing_a-crypto_pwbox.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_crypto_testing_a-crypto_s2k.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_crypto_testing_a-crypto_format.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_crypto_testing_a-torgzip.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_crypto_testing_a-tortls.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/trunnel/$(am__dirstamp): @$(MKDIR_P) src/trunnel @: > src/trunnel/$(am__dirstamp) src/trunnel/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) src/trunnel/$(DEPDIR) @: > src/trunnel/$(DEPDIR)/$(am__dirstamp) src/trunnel/src_common_libor_crypto_testing_a-pwbox.$(OBJEXT): \ src/trunnel/$(am__dirstamp) \ src/trunnel/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_crypto_testing_a-crypto_curve25519.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_crypto_testing_a-crypto_ed25519.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/libor-crypto-testing.a: $(src_common_libor_crypto_testing_a_OBJECTS) $(src_common_libor_crypto_testing_a_DEPENDENCIES) $(EXTRA_src_common_libor_crypto_testing_a_DEPENDENCIES) src/common/$(am__dirstamp) $(AM_V_at)-rm -f src/common/libor-crypto-testing.a $(AM_V_AR)$(src_common_libor_crypto_testing_a_AR) src/common/libor-crypto-testing.a $(src_common_libor_crypto_testing_a_OBJECTS) $(src_common_libor_crypto_testing_a_LIBADD) $(AM_V_at)$(RANLIB) src/common/libor-crypto-testing.a src/common/aes.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/crypto.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/crypto_pwbox.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/crypto_s2k.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/crypto_format.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/torgzip.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/tortls.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/trunnel/pwbox.$(OBJEXT): src/trunnel/$(am__dirstamp) \ src/trunnel/$(DEPDIR)/$(am__dirstamp) src/common/crypto_curve25519.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/crypto_ed25519.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/libor-crypto.a: $(src_common_libor_crypto_a_OBJECTS) $(src_common_libor_crypto_a_DEPENDENCIES) $(EXTRA_src_common_libor_crypto_a_DEPENDENCIES) src/common/$(am__dirstamp) $(AM_V_at)-rm -f src/common/libor-crypto.a $(AM_V_AR)$(src_common_libor_crypto_a_AR) src/common/libor-crypto.a $(src_common_libor_crypto_a_OBJECTS) $(src_common_libor_crypto_a_LIBADD) $(AM_V_at)$(RANLIB) src/common/libor-crypto.a src/common/src_common_libor_event_testing_a-compat_libevent.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_event_testing_a-procmon.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/libor-event-testing.a: $(src_common_libor_event_testing_a_OBJECTS) $(src_common_libor_event_testing_a_DEPENDENCIES) $(EXTRA_src_common_libor_event_testing_a_DEPENDENCIES) src/common/$(am__dirstamp) $(AM_V_at)-rm -f src/common/libor-event-testing.a $(AM_V_AR)$(src_common_libor_event_testing_a_AR) src/common/libor-event-testing.a $(src_common_libor_event_testing_a_OBJECTS) $(src_common_libor_event_testing_a_LIBADD) $(AM_V_at)$(RANLIB) src/common/libor-event-testing.a src/common/compat_libevent.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/procmon.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/libor-event.a: $(src_common_libor_event_a_OBJECTS) $(src_common_libor_event_a_DEPENDENCIES) $(EXTRA_src_common_libor_event_a_DEPENDENCIES) src/common/$(am__dirstamp) $(AM_V_at)-rm -f src/common/libor-event.a $(AM_V_AR)$(src_common_libor_event_a_AR) src/common/libor-event.a $(src_common_libor_event_a_OBJECTS) $(src_common_libor_event_a_LIBADD) $(AM_V_at)$(RANLIB) src/common/libor-event.a src/common/src_common_libor_testing_a-address.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_testing_a-backtrace.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_testing_a-compat.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_testing_a-compat_threads.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_testing_a-container.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_testing_a-di_ops.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_testing_a-log.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_testing_a-memarea.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_testing_a-util.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_testing_a-util_format.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_testing_a-util_process.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_testing_a-sandbox.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_testing_a-workqueue.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/ext/$(am__dirstamp): @$(MKDIR_P) src/ext @: > src/ext/$(am__dirstamp) src/ext/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) src/ext/$(DEPDIR) @: > src/ext/$(DEPDIR)/$(am__dirstamp) src/ext/src_common_libor_testing_a-csiphash.$(OBJEXT): \ src/ext/$(am__dirstamp) src/ext/$(DEPDIR)/$(am__dirstamp) src/ext/trunnel/$(am__dirstamp): @$(MKDIR_P) src/ext/trunnel @: > src/ext/trunnel/$(am__dirstamp) src/ext/trunnel/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) src/ext/trunnel/$(DEPDIR) @: > src/ext/trunnel/$(DEPDIR)/$(am__dirstamp) src/ext/trunnel/src_common_libor_testing_a-trunnel.$(OBJEXT): \ src/ext/trunnel/$(am__dirstamp) \ src/ext/trunnel/$(DEPDIR)/$(am__dirstamp) src/ext/src_common_libor_testing_a-OpenBSD_malloc_Linux.$(OBJEXT): \ src/ext/$(am__dirstamp) src/ext/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_testing_a-compat_pthreads.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/src_common_libor_testing_a-compat_winthreads.$(OBJEXT): \ src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/ext/src_common_libor_testing_a-readpassphrase.$(OBJEXT): \ src/ext/$(am__dirstamp) src/ext/$(DEPDIR)/$(am__dirstamp) src/common/libor-testing.a: $(src_common_libor_testing_a_OBJECTS) $(src_common_libor_testing_a_DEPENDENCIES) $(EXTRA_src_common_libor_testing_a_DEPENDENCIES) src/common/$(am__dirstamp) $(AM_V_at)-rm -f src/common/libor-testing.a $(AM_V_AR)$(src_common_libor_testing_a_AR) src/common/libor-testing.a $(src_common_libor_testing_a_OBJECTS) $(src_common_libor_testing_a_LIBADD) $(AM_V_at)$(RANLIB) src/common/libor-testing.a src/common/address.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/backtrace.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/compat.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/compat_threads.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/container.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/di_ops.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/log.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/memarea.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/util.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/util_format.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/util_process.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/sandbox.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/workqueue.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/ext/csiphash.$(OBJEXT): src/ext/$(am__dirstamp) \ src/ext/$(DEPDIR)/$(am__dirstamp) src/ext/trunnel/trunnel.$(OBJEXT): src/ext/trunnel/$(am__dirstamp) \ src/ext/trunnel/$(DEPDIR)/$(am__dirstamp) src/ext/OpenBSD_malloc_Linux.$(OBJEXT): src/ext/$(am__dirstamp) \ src/ext/$(DEPDIR)/$(am__dirstamp) src/common/compat_pthreads.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/common/compat_winthreads.$(OBJEXT): src/common/$(am__dirstamp) \ src/common/$(DEPDIR)/$(am__dirstamp) src/ext/readpassphrase.$(OBJEXT): src/ext/$(am__dirstamp) \ src/ext/$(DEPDIR)/$(am__dirstamp) src/common/libor.a: $(src_common_libor_a_OBJECTS) $(src_common_libor_a_DEPENDENCIES) $(EXTRA_src_common_libor_a_DEPENDENCIES) src/common/$(am__dirstamp) $(AM_V_at)-rm -f src/common/libor.a $(AM_V_AR)$(src_common_libor_a_AR) src/common/libor.a $(src_common_libor_a_OBJECTS) $(src_common_libor_a_LIBADD) $(AM_V_at)$(RANLIB) src/common/libor.a src/ext/ed25519/donna/$(am__dirstamp): @$(MKDIR_P) src/ext/ed25519/donna @: > src/ext/ed25519/donna/$(am__dirstamp) src/ext/ed25519/donna/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) src/ext/ed25519/donna/$(DEPDIR) @: > src/ext/ed25519/donna/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/donna/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.$(OBJEXT): \ src/ext/ed25519/donna/$(am__dirstamp) \ src/ext/ed25519/donna/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/donna/libed25519_donna.a: $(src_ext_ed25519_donna_libed25519_donna_a_OBJECTS) $(src_ext_ed25519_donna_libed25519_donna_a_DEPENDENCIES) $(EXTRA_src_ext_ed25519_donna_libed25519_donna_a_DEPENDENCIES) src/ext/ed25519/donna/$(am__dirstamp) $(AM_V_at)-rm -f src/ext/ed25519/donna/libed25519_donna.a $(AM_V_AR)$(src_ext_ed25519_donna_libed25519_donna_a_AR) src/ext/ed25519/donna/libed25519_donna.a $(src_ext_ed25519_donna_libed25519_donna_a_OBJECTS) $(src_ext_ed25519_donna_libed25519_donna_a_LIBADD) $(AM_V_at)$(RANLIB) src/ext/ed25519/donna/libed25519_donna.a src/ext/ed25519/ref10/$(am__dirstamp): @$(MKDIR_P) src/ext/ed25519/ref10 @: > src/ext/ed25519/ref10/$(am__dirstamp) src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) src/ext/ed25519/ref10/$(DEPDIR) @: > src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-open.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sign.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.$(OBJEXT): \ src/ext/ed25519/ref10/$(am__dirstamp) \ src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) src/ext/ed25519/ref10/libed25519_ref10.a: $(src_ext_ed25519_ref10_libed25519_ref10_a_OBJECTS) $(src_ext_ed25519_ref10_libed25519_ref10_a_DEPENDENCIES) $(EXTRA_src_ext_ed25519_ref10_libed25519_ref10_a_DEPENDENCIES) src/ext/ed25519/ref10/$(am__dirstamp) $(AM_V_at)-rm -f src/ext/ed25519/ref10/libed25519_ref10.a $(AM_V_AR)$(src_ext_ed25519_ref10_libed25519_ref10_a_AR) src/ext/ed25519/ref10/libed25519_ref10.a $(src_ext_ed25519_ref10_libed25519_ref10_a_OBJECTS) $(src_ext_ed25519_ref10_libed25519_ref10_a_LIBADD) $(AM_V_at)$(RANLIB) src/ext/ed25519/ref10/libed25519_ref10.a src/or/$(am__dirstamp): @$(MKDIR_P) src/or @: > src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) src/or/$(DEPDIR) @: > src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-addressmap.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-buffers.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-channel.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-channeltls.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-circpathbias.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-circuitbuild.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-circuitlist.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-circuitmux.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-circuitmux_ewma.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-circuitstats.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-circuituse.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-command.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-config.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-confparse.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-connection.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-connection_edge.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-connection_or.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-control.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-cpuworker.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-dircollate.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-directory.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-dirserv.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-dirvote.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-dns.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-dnsserv.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-fp_pair.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-geoip.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-entrynodes.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-ext_orport.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-hibernate.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-keypin.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-main.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-microdesc.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-networkstatus.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-nodelist.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-onion.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-onion_fast.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-onion_tap.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-transports.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-policies.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-reasons.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-relay.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-rendcache.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-rendclient.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-rendcommon.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-rendmid.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-rendservice.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-rephist.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-replaycache.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-router.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-routerkeys.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-routerlist.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-routerparse.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-routerset.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-scheduler.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-statefile.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-status.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-torcert.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-onion_ntor.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/ext/src_or_libtor_testing_a-eventdns.$(OBJEXT): \ src/ext/$(am__dirstamp) src/ext/$(DEPDIR)/$(am__dirstamp) src/or/src_or_libtor_testing_a-ntmain.$(OBJEXT): \ src/or/$(am__dirstamp) src/or/$(DEPDIR)/$(am__dirstamp) src/or/libtor-testing.a: $(src_or_libtor_testing_a_OBJECTS) $(src_or_libtor_testing_a_DEPENDENCIES) $(EXTRA_src_or_libtor_testing_a_DEPENDENCIES) src/or/$(am__dirstamp) $(AM_V_at)-rm -f src/or/libtor-testing.a $(AM_V_AR)$(src_or_libtor_testing_a_AR) src/or/libtor-testing.a $(src_or_libtor_testing_a_OBJECTS) $(src_or_libtor_testing_a_LIBADD) $(AM_V_at)$(RANLIB) src/or/libtor-testing.a src/or/addressmap.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/buffers.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/channel.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/channeltls.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/circpathbias.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/circuitbuild.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/circuitlist.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/circuitmux.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/circuitmux_ewma.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/circuitstats.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/circuituse.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/command.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/config.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/confparse.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/connection.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/connection_edge.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/connection_or.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/control.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/cpuworker.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/dircollate.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/directory.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/dirserv.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/dirvote.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/dns.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/dnsserv.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/fp_pair.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/geoip.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/entrynodes.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/ext_orport.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/hibernate.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/keypin.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/main.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/microdesc.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/networkstatus.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/nodelist.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/onion.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/onion_fast.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/onion_tap.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/transports.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/policies.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/reasons.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/relay.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/rendcache.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/rendclient.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/rendcommon.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/rendmid.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/rendservice.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/rephist.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/replaycache.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/router.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/routerkeys.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/routerlist.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/routerparse.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/routerset.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/scheduler.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/statefile.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/status.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/torcert.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/onion_ntor.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/ext/eventdns.$(OBJEXT): src/ext/$(am__dirstamp) \ src/ext/$(DEPDIR)/$(am__dirstamp) src/or/ntmain.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/libtor.a: $(src_or_libtor_a_OBJECTS) $(src_or_libtor_a_DEPENDENCIES) $(EXTRA_src_or_libtor_a_DEPENDENCIES) src/or/$(am__dirstamp) $(AM_V_at)-rm -f src/or/libtor.a $(AM_V_AR)$(src_or_libtor_a_AR) src/or/libtor.a $(src_or_libtor_a_OBJECTS) $(src_or_libtor_a_LIBADD) $(AM_V_at)$(RANLIB) src/or/libtor.a src/ext/trunnel/src_trunnel_libor_trunnel_testing_a-trunnel.$(OBJEXT): \ src/ext/trunnel/$(am__dirstamp) \ src/ext/trunnel/$(DEPDIR)/$(am__dirstamp) src/trunnel/src_trunnel_libor_trunnel_testing_a-ed25519_cert.$(OBJEXT): \ src/trunnel/$(am__dirstamp) \ src/trunnel/$(DEPDIR)/$(am__dirstamp) src/trunnel/src_trunnel_libor_trunnel_testing_a-link_handshake.$(OBJEXT): \ src/trunnel/$(am__dirstamp) \ src/trunnel/$(DEPDIR)/$(am__dirstamp) src/trunnel/src_trunnel_libor_trunnel_testing_a-pwbox.$(OBJEXT): \ src/trunnel/$(am__dirstamp) \ src/trunnel/$(DEPDIR)/$(am__dirstamp) src/trunnel/libor-trunnel-testing.a: $(src_trunnel_libor_trunnel_testing_a_OBJECTS) $(src_trunnel_libor_trunnel_testing_a_DEPENDENCIES) $(EXTRA_src_trunnel_libor_trunnel_testing_a_DEPENDENCIES) src/trunnel/$(am__dirstamp) $(AM_V_at)-rm -f src/trunnel/libor-trunnel-testing.a $(AM_V_AR)$(src_trunnel_libor_trunnel_testing_a_AR) src/trunnel/libor-trunnel-testing.a $(src_trunnel_libor_trunnel_testing_a_OBJECTS) $(src_trunnel_libor_trunnel_testing_a_LIBADD) $(AM_V_at)$(RANLIB) src/trunnel/libor-trunnel-testing.a src/ext/trunnel/src_trunnel_libor_trunnel_a-trunnel.$(OBJEXT): \ src/ext/trunnel/$(am__dirstamp) \ src/ext/trunnel/$(DEPDIR)/$(am__dirstamp) src/trunnel/src_trunnel_libor_trunnel_a-ed25519_cert.$(OBJEXT): \ src/trunnel/$(am__dirstamp) \ src/trunnel/$(DEPDIR)/$(am__dirstamp) src/trunnel/src_trunnel_libor_trunnel_a-link_handshake.$(OBJEXT): \ src/trunnel/$(am__dirstamp) \ src/trunnel/$(DEPDIR)/$(am__dirstamp) src/trunnel/src_trunnel_libor_trunnel_a-pwbox.$(OBJEXT): \ src/trunnel/$(am__dirstamp) \ src/trunnel/$(DEPDIR)/$(am__dirstamp) src/trunnel/libor-trunnel.a: $(src_trunnel_libor_trunnel_a_OBJECTS) $(src_trunnel_libor_trunnel_a_DEPENDENCIES) $(EXTRA_src_trunnel_libor_trunnel_a_DEPENDENCIES) src/trunnel/$(am__dirstamp) $(AM_V_at)-rm -f src/trunnel/libor-trunnel.a $(AM_V_AR)$(src_trunnel_libor_trunnel_a_AR) src/trunnel/libor-trunnel.a $(src_trunnel_libor_trunnel_a_OBJECTS) $(src_trunnel_libor_trunnel_a_LIBADD) $(AM_V_at)$(RANLIB) src/trunnel/libor-trunnel.a install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) clean-noinstPROGRAMS: -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS) src/or/tor_main.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/tor$(EXEEXT): $(src_or_tor_OBJECTS) $(src_or_tor_DEPENDENCIES) $(EXTRA_src_or_tor_DEPENDENCIES) src/or/$(am__dirstamp) @rm -f src/or/tor$(EXEEXT) $(AM_V_CCLD)$(src_or_tor_LINK) $(src_or_tor_OBJECTS) $(src_or_tor_LDADD) $(LIBS) src/or/src_or_tor_cov-tor_main.$(OBJEXT): src/or/$(am__dirstamp) \ src/or/$(DEPDIR)/$(am__dirstamp) src/or/tor-cov$(EXEEXT): $(src_or_tor_cov_OBJECTS) $(src_or_tor_cov_DEPENDENCIES) $(EXTRA_src_or_tor_cov_DEPENDENCIES) src/or/$(am__dirstamp) @rm -f src/or/tor-cov$(EXEEXT) $(AM_V_CCLD)$(src_or_tor_cov_LINK) $(src_or_tor_cov_OBJECTS) $(src_or_tor_cov_LDADD) $(LIBS) src/test/$(am__dirstamp): @$(MKDIR_P) src/test @: > src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) src/test/$(DEPDIR) @: > src/test/$(DEPDIR)/$(am__dirstamp) src/test/bench.$(OBJEXT): src/test/$(am__dirstamp) \ src/test/$(DEPDIR)/$(am__dirstamp) src/test/bench$(EXEEXT): $(src_test_bench_OBJECTS) $(src_test_bench_DEPENDENCIES) $(EXTRA_src_test_bench_DEPENDENCIES) src/test/$(am__dirstamp) @rm -f src/test/bench$(EXEEXT) $(AM_V_CCLD)$(src_test_bench_LINK) $(src_test_bench_OBJECTS) $(src_test_bench_LDADD) $(LIBS) src/test/src_test_test-test.$(OBJEXT): src/test/$(am__dirstamp) \ src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_accounting.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_addr.$(OBJEXT): src/test/$(am__dirstamp) \ src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_address.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_buffers.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_cell_formats.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_cell_queue.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_channel.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_channeltls.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_checkdir.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_circuitlist.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_circuitmux.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_config.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_containers.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_controller.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_controller_events.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_crypto.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_data.$(OBJEXT): src/test/$(am__dirstamp) \ src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_dir.$(OBJEXT): src/test/$(am__dirstamp) \ src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_entryconn.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_entrynodes.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_guardfraction.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_extorport.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_hs.$(OBJEXT): src/test/$(am__dirstamp) \ src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_introduce.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_keypin.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_link_handshake.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_logging.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_microdesc.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_nodelist.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_oom.$(OBJEXT): src/test/$(am__dirstamp) \ src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_options.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_policy.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_pt.$(OBJEXT): src/test/$(am__dirstamp) \ src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_relay.$(OBJEXT): src/test/$(am__dirstamp) \ src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_relaycell.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_replay.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_routerkeys.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_routerlist.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_routerset.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_scheduler.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_socks.$(OBJEXT): src/test/$(am__dirstamp) \ src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_status.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_threads.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_util.$(OBJEXT): src/test/$(am__dirstamp) \ src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_helpers.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-test_dns.$(OBJEXT): src/test/$(am__dirstamp) \ src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test-testing_common.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/ext/src_test_test-tinytest.$(OBJEXT): src/ext/$(am__dirstamp) \ src/ext/$(DEPDIR)/$(am__dirstamp) src/test/test$(EXEEXT): $(src_test_test_OBJECTS) $(src_test_test_DEPENDENCIES) $(EXTRA_src_test_test_DEPENDENCIES) src/test/$(am__dirstamp) @rm -f src/test/test$(EXEEXT) $(AM_V_CCLD)$(src_test_test_LINK) $(src_test_test_OBJECTS) $(src_test_test_LDADD) $(LIBS) src/test/src_test_test_bt_cl-test_bt_cl.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/test-bt-cl$(EXEEXT): $(src_test_test_bt_cl_OBJECTS) $(src_test_test_bt_cl_DEPENDENCIES) $(EXTRA_src_test_test_bt_cl_DEPENDENCIES) src/test/$(am__dirstamp) @rm -f src/test/test-bt-cl$(EXEEXT) $(AM_V_CCLD)$(src_test_test_bt_cl_LINK) $(src_test_test_bt_cl_OBJECTS) $(src_test_test_bt_cl_LDADD) $(LIBS) src/test/test-child.$(OBJEXT): src/test/$(am__dirstamp) \ src/test/$(DEPDIR)/$(am__dirstamp) src/test/test-child$(EXEEXT): $(src_test_test_child_OBJECTS) $(src_test_test_child_DEPENDENCIES) $(EXTRA_src_test_test_child_DEPENDENCIES) src/test/$(am__dirstamp) @rm -f src/test/test-child$(EXEEXT) $(AM_V_CCLD)$(LINK) $(src_test_test_child_OBJECTS) $(src_test_test_child_LDADD) $(LIBS) src/test/src_test_test_memwipe-test-memwipe.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/test-memwipe$(EXEEXT): $(src_test_test_memwipe_OBJECTS) $(src_test_test_memwipe_DEPENDENCIES) $(EXTRA_src_test_test_memwipe_DEPENDENCIES) src/test/$(am__dirstamp) @rm -f src/test/test-memwipe$(EXEEXT) $(AM_V_CCLD)$(src_test_test_memwipe_LINK) $(src_test_test_memwipe_OBJECTS) $(src_test_test_memwipe_LDADD) $(LIBS) src/test/test_ntor_cl.$(OBJEXT): src/test/$(am__dirstamp) \ src/test/$(DEPDIR)/$(am__dirstamp) src/test/test-ntor-cl$(EXEEXT): $(src_test_test_ntor_cl_OBJECTS) $(src_test_test_ntor_cl_DEPENDENCIES) $(EXTRA_src_test_test_ntor_cl_DEPENDENCIES) src/test/$(am__dirstamp) @rm -f src/test/test-ntor-cl$(EXEEXT) $(AM_V_CCLD)$(src_test_test_ntor_cl_LINK) $(src_test_test_ntor_cl_OBJECTS) $(src_test_test_ntor_cl_LDADD) $(LIBS) src/test/src_test_test_slow-test_slow.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test_slow-test_crypto_slow.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test_slow-test_util_slow.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/src_test_test_slow-testing_common.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/ext/src_test_test_slow-tinytest.$(OBJEXT): \ src/ext/$(am__dirstamp) src/ext/$(DEPDIR)/$(am__dirstamp) src/test/test-slow$(EXEEXT): $(src_test_test_slow_OBJECTS) $(src_test_test_slow_DEPENDENCIES) $(EXTRA_src_test_test_slow_DEPENDENCIES) src/test/$(am__dirstamp) @rm -f src/test/test-slow$(EXEEXT) $(AM_V_CCLD)$(src_test_test_slow_LINK) $(src_test_test_slow_OBJECTS) $(src_test_test_slow_LDADD) $(LIBS) src/test/src_test_test_workqueue-test_workqueue.$(OBJEXT): \ src/test/$(am__dirstamp) src/test/$(DEPDIR)/$(am__dirstamp) src/test/test_workqueue$(EXEEXT): $(src_test_test_workqueue_OBJECTS) $(src_test_test_workqueue_DEPENDENCIES) $(EXTRA_src_test_test_workqueue_DEPENDENCIES) src/test/$(am__dirstamp) @rm -f src/test/test_workqueue$(EXEEXT) $(AM_V_CCLD)$(src_test_test_workqueue_LINK) $(src_test_test_workqueue_OBJECTS) $(src_test_test_workqueue_LDADD) $(LIBS) src/tools/$(am__dirstamp): @$(MKDIR_P) src/tools @: > src/tools/$(am__dirstamp) src/tools/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) src/tools/$(DEPDIR) @: > src/tools/$(DEPDIR)/$(am__dirstamp) src/tools/tor-checkkey.$(OBJEXT): src/tools/$(am__dirstamp) \ src/tools/$(DEPDIR)/$(am__dirstamp) src/tools/tor-checkkey$(EXEEXT): $(src_tools_tor_checkkey_OBJECTS) $(src_tools_tor_checkkey_DEPENDENCIES) $(EXTRA_src_tools_tor_checkkey_DEPENDENCIES) src/tools/$(am__dirstamp) @rm -f src/tools/tor-checkkey$(EXEEXT) $(AM_V_CCLD)$(src_tools_tor_checkkey_LINK) $(src_tools_tor_checkkey_OBJECTS) $(src_tools_tor_checkkey_LDADD) $(LIBS) src/tools/src_tools_tor_cov_gencert-tor-gencert.$(OBJEXT): \ src/tools/$(am__dirstamp) src/tools/$(DEPDIR)/$(am__dirstamp) src/tools/tor-cov-gencert$(EXEEXT): $(src_tools_tor_cov_gencert_OBJECTS) $(src_tools_tor_cov_gencert_DEPENDENCIES) $(EXTRA_src_tools_tor_cov_gencert_DEPENDENCIES) src/tools/$(am__dirstamp) @rm -f src/tools/tor-cov-gencert$(EXEEXT) $(AM_V_CCLD)$(src_tools_tor_cov_gencert_LINK) $(src_tools_tor_cov_gencert_OBJECTS) $(src_tools_tor_cov_gencert_LDADD) $(LIBS) src/tools/src_tools_tor_cov_resolve-tor-resolve.$(OBJEXT): \ src/tools/$(am__dirstamp) src/tools/$(DEPDIR)/$(am__dirstamp) src/tools/tor-cov-resolve$(EXEEXT): $(src_tools_tor_cov_resolve_OBJECTS) $(src_tools_tor_cov_resolve_DEPENDENCIES) $(EXTRA_src_tools_tor_cov_resolve_DEPENDENCIES) src/tools/$(am__dirstamp) @rm -f src/tools/tor-cov-resolve$(EXEEXT) $(AM_V_CCLD)$(src_tools_tor_cov_resolve_LINK) $(src_tools_tor_cov_resolve_OBJECTS) $(src_tools_tor_cov_resolve_LDADD) $(LIBS) src/tools/tor-gencert.$(OBJEXT): src/tools/$(am__dirstamp) \ src/tools/$(DEPDIR)/$(am__dirstamp) src/tools/tor-gencert$(EXEEXT): $(src_tools_tor_gencert_OBJECTS) $(src_tools_tor_gencert_DEPENDENCIES) $(EXTRA_src_tools_tor_gencert_DEPENDENCIES) src/tools/$(am__dirstamp) @rm -f src/tools/tor-gencert$(EXEEXT) $(AM_V_CCLD)$(src_tools_tor_gencert_LINK) $(src_tools_tor_gencert_OBJECTS) $(src_tools_tor_gencert_LDADD) $(LIBS) src/tools/tor-resolve.$(OBJEXT): src/tools/$(am__dirstamp) \ src/tools/$(DEPDIR)/$(am__dirstamp) src/tools/tor-resolve$(EXEEXT): $(src_tools_tor_resolve_OBJECTS) $(src_tools_tor_resolve_DEPENDENCIES) $(EXTRA_src_tools_tor_resolve_DEPENDENCIES) src/tools/$(am__dirstamp) @rm -f src/tools/tor-resolve$(EXEEXT) $(AM_V_CCLD)$(src_tools_tor_resolve_LINK) $(src_tools_tor_resolve_OBJECTS) $(src_tools_tor_resolve_LDADD) $(LIBS) install-binSCRIPTS: $(bin_SCRIPTS) @$(NORMAL_INSTALL) @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir) mostlyclean-compile: -rm -f *.$(OBJEXT) -rm -f src/common/*.$(OBJEXT) -rm -f src/ext/*.$(OBJEXT) -rm -f src/ext/curve25519_donna/*.$(OBJEXT) -rm -f src/ext/ed25519/donna/*.$(OBJEXT) -rm -f src/ext/ed25519/ref10/*.$(OBJEXT) -rm -f src/ext/trunnel/*.$(OBJEXT) -rm -f src/or/*.$(OBJEXT) -rm -f src/test/*.$(OBJEXT) -rm -f src/tools/*.$(OBJEXT) -rm -f src/trunnel/*.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/address.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/aes.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/backtrace.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/compat.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/compat_libevent.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/compat_pthreads.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/compat_threads.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/compat_winthreads.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/container.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/crypto.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/crypto_curve25519.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/crypto_ed25519.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/crypto_format.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/crypto_pwbox.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/crypto_s2k.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/di_ops.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/log.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/memarea.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/procmon.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/sandbox.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-aes.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_curve25519.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_ed25519.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_format.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_pwbox.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_s2k.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-torgzip.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-tortls.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_event_testing_a-compat_libevent.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_event_testing_a-procmon.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_testing_a-address.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_testing_a-backtrace.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_testing_a-compat.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_testing_a-compat_pthreads.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_testing_a-compat_threads.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_testing_a-compat_winthreads.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_testing_a-container.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_testing_a-di_ops.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_testing_a-log.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_testing_a-memarea.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_testing_a-sandbox.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_testing_a-util.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_testing_a-util_format.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_testing_a-util_process.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/src_common_libor_testing_a-workqueue.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/torgzip.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/tortls.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/util.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/util_format.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/util_process.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/common/$(DEPDIR)/workqueue.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/$(DEPDIR)/OpenBSD_malloc_Linux.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/$(DEPDIR)/csiphash.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/$(DEPDIR)/eventdns.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/$(DEPDIR)/readpassphrase.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/$(DEPDIR)/src_common_libor_testing_a-OpenBSD_malloc_Linux.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/$(DEPDIR)/src_common_libor_testing_a-csiphash.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/$(DEPDIR)/src_common_libor_testing_a-readpassphrase.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/$(DEPDIR)/src_or_libtor_testing_a-eventdns.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/$(DEPDIR)/src_test_test-tinytest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/$(DEPDIR)/src_test_test_slow-tinytest.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/curve25519_donna/$(DEPDIR)/src_common_libcurve25519_donna_a-curve25519-donna-c64.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/curve25519_donna/$(DEPDIR)/src_common_libcurve25519_donna_a-curve25519-donna.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/donna/$(DEPDIR)/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-open.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sign.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/trunnel/$(DEPDIR)/src_common_libor_testing_a-trunnel.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-trunnel.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-trunnel.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/ext/trunnel/$(DEPDIR)/trunnel.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/addressmap.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/buffers.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/channel.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/channeltls.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/circpathbias.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/circuitbuild.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/circuitlist.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/circuitmux.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/circuitmux_ewma.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/circuitstats.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/circuituse.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/command.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/config.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/confparse.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/connection.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/connection_edge.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/connection_or.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/control.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/cpuworker.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/dircollate.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/directory.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/dirserv.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/dirvote.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/dns.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/dnsserv.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/entrynodes.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/ext_orport.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/fp_pair.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/geoip.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/hibernate.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/keypin.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/main.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/microdesc.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/networkstatus.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/nodelist.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/ntmain.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/onion.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/onion_fast.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/onion_ntor.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/onion_tap.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/policies.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/reasons.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/relay.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/rendcache.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/rendclient.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/rendcommon.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/rendmid.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/rendservice.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/rephist.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/replaycache.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/router.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/routerkeys.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/routerlist.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/routerparse.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/routerset.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/scheduler.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-addressmap.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-buffers.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-channel.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-channeltls.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-circpathbias.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitbuild.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitlist.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitmux.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitmux_ewma.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitstats.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-circuituse.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-command.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-config.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-confparse.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-connection.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-connection_edge.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-connection_or.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-control.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-cpuworker.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-dircollate.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-directory.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-dirserv.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-dirvote.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-dns.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-dnsserv.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-entrynodes.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-ext_orport.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-fp_pair.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-geoip.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-hibernate.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-keypin.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-main.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-microdesc.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-networkstatus.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-nodelist.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-ntmain.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-onion.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_fast.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_ntor.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_tap.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-policies.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-reasons.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-relay.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-rendcache.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-rendclient.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-rendcommon.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-rendmid.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-rendservice.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-rephist.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-replaycache.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-router.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-routerkeys.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-routerlist.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-routerparse.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-routerset.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-scheduler.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-statefile.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-status.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-torcert.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_libtor_testing_a-transports.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/src_or_tor_cov-tor_main.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/statefile.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/status.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/tor_main.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/torcert.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/or/$(DEPDIR)/transports.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/bench.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_accounting.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_addr.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_address.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_buffers.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_cell_formats.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_cell_queue.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_channel.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_channeltls.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_checkdir.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_circuitlist.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_circuitmux.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_config.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_containers.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_controller.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_controller_events.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_crypto.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_data.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_dir.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_dns.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_entryconn.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_entrynodes.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_extorport.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_guardfraction.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_helpers.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_hs.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_introduce.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_keypin.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_link_handshake.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_logging.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_microdesc.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_nodelist.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_oom.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_options.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_policy.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_pt.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_relay.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_relaycell.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_replay.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_routerkeys.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_routerlist.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_routerset.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_scheduler.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_socks.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_status.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_threads.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-test_util.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test-testing_common.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test_bt_cl-test_bt_cl.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test_memwipe-test-memwipe.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test_slow-test_crypto_slow.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test_slow-test_slow.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test_slow-test_util_slow.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test_slow-testing_common.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/src_test_test_workqueue-test_workqueue.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/test-child.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/test/$(DEPDIR)/test_ntor_cl.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/tools/$(DEPDIR)/src_tools_tor_cov_gencert-tor-gencert.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/tools/$(DEPDIR)/src_tools_tor_cov_resolve-tor-resolve.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/tools/$(DEPDIR)/tor-checkkey.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/tools/$(DEPDIR)/tor-gencert.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/tools/$(DEPDIR)/tor-resolve.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/trunnel/$(DEPDIR)/pwbox.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/trunnel/$(DEPDIR)/src_common_libor_crypto_testing_a-pwbox.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-ed25519_cert.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-link_handshake.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-pwbox.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-ed25519_cert.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-link_handshake.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-pwbox.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna-c64.o: src/ext/curve25519_donna/curve25519-donna-c64.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_common_libcurve25519_donna_a_CFLAGS) $(CFLAGS) -MT src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna-c64.o -MD -MP -MF src/ext/curve25519_donna/$(DEPDIR)/src_common_libcurve25519_donna_a-curve25519-donna-c64.Tpo -c -o src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna-c64.o `test -f 'src/ext/curve25519_donna/curve25519-donna-c64.c' || echo '$(srcdir)/'`src/ext/curve25519_donna/curve25519-donna-c64.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/curve25519_donna/$(DEPDIR)/src_common_libcurve25519_donna_a-curve25519-donna-c64.Tpo src/ext/curve25519_donna/$(DEPDIR)/src_common_libcurve25519_donna_a-curve25519-donna-c64.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/curve25519_donna/curve25519-donna-c64.c' object='src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna-c64.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_common_libcurve25519_donna_a_CFLAGS) $(CFLAGS) -c -o src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna-c64.o `test -f 'src/ext/curve25519_donna/curve25519-donna-c64.c' || echo '$(srcdir)/'`src/ext/curve25519_donna/curve25519-donna-c64.c src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna-c64.obj: src/ext/curve25519_donna/curve25519-donna-c64.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_common_libcurve25519_donna_a_CFLAGS) $(CFLAGS) -MT src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna-c64.obj -MD -MP -MF src/ext/curve25519_donna/$(DEPDIR)/src_common_libcurve25519_donna_a-curve25519-donna-c64.Tpo -c -o src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna-c64.obj `if test -f 'src/ext/curve25519_donna/curve25519-donna-c64.c'; then $(CYGPATH_W) 'src/ext/curve25519_donna/curve25519-donna-c64.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/curve25519_donna/curve25519-donna-c64.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/curve25519_donna/$(DEPDIR)/src_common_libcurve25519_donna_a-curve25519-donna-c64.Tpo src/ext/curve25519_donna/$(DEPDIR)/src_common_libcurve25519_donna_a-curve25519-donna-c64.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/curve25519_donna/curve25519-donna-c64.c' object='src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna-c64.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_common_libcurve25519_donna_a_CFLAGS) $(CFLAGS) -c -o src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna-c64.obj `if test -f 'src/ext/curve25519_donna/curve25519-donna-c64.c'; then $(CYGPATH_W) 'src/ext/curve25519_donna/curve25519-donna-c64.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/curve25519_donna/curve25519-donna-c64.c'; fi` src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna.o: src/ext/curve25519_donna/curve25519-donna.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_common_libcurve25519_donna_a_CFLAGS) $(CFLAGS) -MT src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna.o -MD -MP -MF src/ext/curve25519_donna/$(DEPDIR)/src_common_libcurve25519_donna_a-curve25519-donna.Tpo -c -o src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna.o `test -f 'src/ext/curve25519_donna/curve25519-donna.c' || echo '$(srcdir)/'`src/ext/curve25519_donna/curve25519-donna.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/curve25519_donna/$(DEPDIR)/src_common_libcurve25519_donna_a-curve25519-donna.Tpo src/ext/curve25519_donna/$(DEPDIR)/src_common_libcurve25519_donna_a-curve25519-donna.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/curve25519_donna/curve25519-donna.c' object='src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_common_libcurve25519_donna_a_CFLAGS) $(CFLAGS) -c -o src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna.o `test -f 'src/ext/curve25519_donna/curve25519-donna.c' || echo '$(srcdir)/'`src/ext/curve25519_donna/curve25519-donna.c src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna.obj: src/ext/curve25519_donna/curve25519-donna.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_common_libcurve25519_donna_a_CFLAGS) $(CFLAGS) -MT src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna.obj -MD -MP -MF src/ext/curve25519_donna/$(DEPDIR)/src_common_libcurve25519_donna_a-curve25519-donna.Tpo -c -o src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna.obj `if test -f 'src/ext/curve25519_donna/curve25519-donna.c'; then $(CYGPATH_W) 'src/ext/curve25519_donna/curve25519-donna.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/curve25519_donna/curve25519-donna.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/curve25519_donna/$(DEPDIR)/src_common_libcurve25519_donna_a-curve25519-donna.Tpo src/ext/curve25519_donna/$(DEPDIR)/src_common_libcurve25519_donna_a-curve25519-donna.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/curve25519_donna/curve25519-donna.c' object='src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_common_libcurve25519_donna_a_CFLAGS) $(CFLAGS) -c -o src/ext/curve25519_donna/src_common_libcurve25519_donna_a-curve25519-donna.obj `if test -f 'src/ext/curve25519_donna/curve25519-donna.c'; then $(CYGPATH_W) 'src/ext/curve25519_donna/curve25519-donna.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/curve25519_donna/curve25519-donna.c'; fi` src/common/src_common_libor_crypto_testing_a-aes.o: src/common/aes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-aes.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-aes.Tpo -c -o src/common/src_common_libor_crypto_testing_a-aes.o `test -f 'src/common/aes.c' || echo '$(srcdir)/'`src/common/aes.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-aes.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-aes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/aes.c' object='src/common/src_common_libor_crypto_testing_a-aes.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-aes.o `test -f 'src/common/aes.c' || echo '$(srcdir)/'`src/common/aes.c src/common/src_common_libor_crypto_testing_a-aes.obj: src/common/aes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-aes.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-aes.Tpo -c -o src/common/src_common_libor_crypto_testing_a-aes.obj `if test -f 'src/common/aes.c'; then $(CYGPATH_W) 'src/common/aes.c'; else $(CYGPATH_W) '$(srcdir)/src/common/aes.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-aes.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-aes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/aes.c' object='src/common/src_common_libor_crypto_testing_a-aes.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-aes.obj `if test -f 'src/common/aes.c'; then $(CYGPATH_W) 'src/common/aes.c'; else $(CYGPATH_W) '$(srcdir)/src/common/aes.c'; fi` src/common/src_common_libor_crypto_testing_a-crypto.o: src/common/crypto.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-crypto.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto.Tpo -c -o src/common/src_common_libor_crypto_testing_a-crypto.o `test -f 'src/common/crypto.c' || echo '$(srcdir)/'`src/common/crypto.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/crypto.c' object='src/common/src_common_libor_crypto_testing_a-crypto.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-crypto.o `test -f 'src/common/crypto.c' || echo '$(srcdir)/'`src/common/crypto.c src/common/src_common_libor_crypto_testing_a-crypto.obj: src/common/crypto.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-crypto.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto.Tpo -c -o src/common/src_common_libor_crypto_testing_a-crypto.obj `if test -f 'src/common/crypto.c'; then $(CYGPATH_W) 'src/common/crypto.c'; else $(CYGPATH_W) '$(srcdir)/src/common/crypto.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/crypto.c' object='src/common/src_common_libor_crypto_testing_a-crypto.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-crypto.obj `if test -f 'src/common/crypto.c'; then $(CYGPATH_W) 'src/common/crypto.c'; else $(CYGPATH_W) '$(srcdir)/src/common/crypto.c'; fi` src/common/src_common_libor_crypto_testing_a-crypto_pwbox.o: src/common/crypto_pwbox.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-crypto_pwbox.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_pwbox.Tpo -c -o src/common/src_common_libor_crypto_testing_a-crypto_pwbox.o `test -f 'src/common/crypto_pwbox.c' || echo '$(srcdir)/'`src/common/crypto_pwbox.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_pwbox.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_pwbox.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/crypto_pwbox.c' object='src/common/src_common_libor_crypto_testing_a-crypto_pwbox.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-crypto_pwbox.o `test -f 'src/common/crypto_pwbox.c' || echo '$(srcdir)/'`src/common/crypto_pwbox.c src/common/src_common_libor_crypto_testing_a-crypto_pwbox.obj: src/common/crypto_pwbox.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-crypto_pwbox.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_pwbox.Tpo -c -o src/common/src_common_libor_crypto_testing_a-crypto_pwbox.obj `if test -f 'src/common/crypto_pwbox.c'; then $(CYGPATH_W) 'src/common/crypto_pwbox.c'; else $(CYGPATH_W) '$(srcdir)/src/common/crypto_pwbox.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_pwbox.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_pwbox.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/crypto_pwbox.c' object='src/common/src_common_libor_crypto_testing_a-crypto_pwbox.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-crypto_pwbox.obj `if test -f 'src/common/crypto_pwbox.c'; then $(CYGPATH_W) 'src/common/crypto_pwbox.c'; else $(CYGPATH_W) '$(srcdir)/src/common/crypto_pwbox.c'; fi` src/common/src_common_libor_crypto_testing_a-crypto_s2k.o: src/common/crypto_s2k.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-crypto_s2k.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_s2k.Tpo -c -o src/common/src_common_libor_crypto_testing_a-crypto_s2k.o `test -f 'src/common/crypto_s2k.c' || echo '$(srcdir)/'`src/common/crypto_s2k.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_s2k.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_s2k.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/crypto_s2k.c' object='src/common/src_common_libor_crypto_testing_a-crypto_s2k.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-crypto_s2k.o `test -f 'src/common/crypto_s2k.c' || echo '$(srcdir)/'`src/common/crypto_s2k.c src/common/src_common_libor_crypto_testing_a-crypto_s2k.obj: src/common/crypto_s2k.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-crypto_s2k.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_s2k.Tpo -c -o src/common/src_common_libor_crypto_testing_a-crypto_s2k.obj `if test -f 'src/common/crypto_s2k.c'; then $(CYGPATH_W) 'src/common/crypto_s2k.c'; else $(CYGPATH_W) '$(srcdir)/src/common/crypto_s2k.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_s2k.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_s2k.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/crypto_s2k.c' object='src/common/src_common_libor_crypto_testing_a-crypto_s2k.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-crypto_s2k.obj `if test -f 'src/common/crypto_s2k.c'; then $(CYGPATH_W) 'src/common/crypto_s2k.c'; else $(CYGPATH_W) '$(srcdir)/src/common/crypto_s2k.c'; fi` src/common/src_common_libor_crypto_testing_a-crypto_format.o: src/common/crypto_format.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-crypto_format.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_format.Tpo -c -o src/common/src_common_libor_crypto_testing_a-crypto_format.o `test -f 'src/common/crypto_format.c' || echo '$(srcdir)/'`src/common/crypto_format.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_format.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_format.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/crypto_format.c' object='src/common/src_common_libor_crypto_testing_a-crypto_format.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-crypto_format.o `test -f 'src/common/crypto_format.c' || echo '$(srcdir)/'`src/common/crypto_format.c src/common/src_common_libor_crypto_testing_a-crypto_format.obj: src/common/crypto_format.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-crypto_format.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_format.Tpo -c -o src/common/src_common_libor_crypto_testing_a-crypto_format.obj `if test -f 'src/common/crypto_format.c'; then $(CYGPATH_W) 'src/common/crypto_format.c'; else $(CYGPATH_W) '$(srcdir)/src/common/crypto_format.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_format.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_format.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/crypto_format.c' object='src/common/src_common_libor_crypto_testing_a-crypto_format.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-crypto_format.obj `if test -f 'src/common/crypto_format.c'; then $(CYGPATH_W) 'src/common/crypto_format.c'; else $(CYGPATH_W) '$(srcdir)/src/common/crypto_format.c'; fi` src/common/src_common_libor_crypto_testing_a-torgzip.o: src/common/torgzip.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-torgzip.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-torgzip.Tpo -c -o src/common/src_common_libor_crypto_testing_a-torgzip.o `test -f 'src/common/torgzip.c' || echo '$(srcdir)/'`src/common/torgzip.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-torgzip.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-torgzip.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/torgzip.c' object='src/common/src_common_libor_crypto_testing_a-torgzip.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-torgzip.o `test -f 'src/common/torgzip.c' || echo '$(srcdir)/'`src/common/torgzip.c src/common/src_common_libor_crypto_testing_a-torgzip.obj: src/common/torgzip.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-torgzip.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-torgzip.Tpo -c -o src/common/src_common_libor_crypto_testing_a-torgzip.obj `if test -f 'src/common/torgzip.c'; then $(CYGPATH_W) 'src/common/torgzip.c'; else $(CYGPATH_W) '$(srcdir)/src/common/torgzip.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-torgzip.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-torgzip.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/torgzip.c' object='src/common/src_common_libor_crypto_testing_a-torgzip.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-torgzip.obj `if test -f 'src/common/torgzip.c'; then $(CYGPATH_W) 'src/common/torgzip.c'; else $(CYGPATH_W) '$(srcdir)/src/common/torgzip.c'; fi` src/common/src_common_libor_crypto_testing_a-tortls.o: src/common/tortls.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-tortls.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-tortls.Tpo -c -o src/common/src_common_libor_crypto_testing_a-tortls.o `test -f 'src/common/tortls.c' || echo '$(srcdir)/'`src/common/tortls.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-tortls.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-tortls.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/tortls.c' object='src/common/src_common_libor_crypto_testing_a-tortls.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-tortls.o `test -f 'src/common/tortls.c' || echo '$(srcdir)/'`src/common/tortls.c src/common/src_common_libor_crypto_testing_a-tortls.obj: src/common/tortls.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-tortls.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-tortls.Tpo -c -o src/common/src_common_libor_crypto_testing_a-tortls.obj `if test -f 'src/common/tortls.c'; then $(CYGPATH_W) 'src/common/tortls.c'; else $(CYGPATH_W) '$(srcdir)/src/common/tortls.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-tortls.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-tortls.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/tortls.c' object='src/common/src_common_libor_crypto_testing_a-tortls.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-tortls.obj `if test -f 'src/common/tortls.c'; then $(CYGPATH_W) 'src/common/tortls.c'; else $(CYGPATH_W) '$(srcdir)/src/common/tortls.c'; fi` src/trunnel/src_common_libor_crypto_testing_a-pwbox.o: src/trunnel/pwbox.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/trunnel/src_common_libor_crypto_testing_a-pwbox.o -MD -MP -MF src/trunnel/$(DEPDIR)/src_common_libor_crypto_testing_a-pwbox.Tpo -c -o src/trunnel/src_common_libor_crypto_testing_a-pwbox.o `test -f 'src/trunnel/pwbox.c' || echo '$(srcdir)/'`src/trunnel/pwbox.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/trunnel/$(DEPDIR)/src_common_libor_crypto_testing_a-pwbox.Tpo src/trunnel/$(DEPDIR)/src_common_libor_crypto_testing_a-pwbox.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/trunnel/pwbox.c' object='src/trunnel/src_common_libor_crypto_testing_a-pwbox.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/trunnel/src_common_libor_crypto_testing_a-pwbox.o `test -f 'src/trunnel/pwbox.c' || echo '$(srcdir)/'`src/trunnel/pwbox.c src/trunnel/src_common_libor_crypto_testing_a-pwbox.obj: src/trunnel/pwbox.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/trunnel/src_common_libor_crypto_testing_a-pwbox.obj -MD -MP -MF src/trunnel/$(DEPDIR)/src_common_libor_crypto_testing_a-pwbox.Tpo -c -o src/trunnel/src_common_libor_crypto_testing_a-pwbox.obj `if test -f 'src/trunnel/pwbox.c'; then $(CYGPATH_W) 'src/trunnel/pwbox.c'; else $(CYGPATH_W) '$(srcdir)/src/trunnel/pwbox.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/trunnel/$(DEPDIR)/src_common_libor_crypto_testing_a-pwbox.Tpo src/trunnel/$(DEPDIR)/src_common_libor_crypto_testing_a-pwbox.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/trunnel/pwbox.c' object='src/trunnel/src_common_libor_crypto_testing_a-pwbox.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/trunnel/src_common_libor_crypto_testing_a-pwbox.obj `if test -f 'src/trunnel/pwbox.c'; then $(CYGPATH_W) 'src/trunnel/pwbox.c'; else $(CYGPATH_W) '$(srcdir)/src/trunnel/pwbox.c'; fi` src/common/src_common_libor_crypto_testing_a-crypto_curve25519.o: src/common/crypto_curve25519.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-crypto_curve25519.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_curve25519.Tpo -c -o src/common/src_common_libor_crypto_testing_a-crypto_curve25519.o `test -f 'src/common/crypto_curve25519.c' || echo '$(srcdir)/'`src/common/crypto_curve25519.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_curve25519.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_curve25519.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/crypto_curve25519.c' object='src/common/src_common_libor_crypto_testing_a-crypto_curve25519.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-crypto_curve25519.o `test -f 'src/common/crypto_curve25519.c' || echo '$(srcdir)/'`src/common/crypto_curve25519.c src/common/src_common_libor_crypto_testing_a-crypto_curve25519.obj: src/common/crypto_curve25519.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-crypto_curve25519.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_curve25519.Tpo -c -o src/common/src_common_libor_crypto_testing_a-crypto_curve25519.obj `if test -f 'src/common/crypto_curve25519.c'; then $(CYGPATH_W) 'src/common/crypto_curve25519.c'; else $(CYGPATH_W) '$(srcdir)/src/common/crypto_curve25519.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_curve25519.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_curve25519.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/crypto_curve25519.c' object='src/common/src_common_libor_crypto_testing_a-crypto_curve25519.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-crypto_curve25519.obj `if test -f 'src/common/crypto_curve25519.c'; then $(CYGPATH_W) 'src/common/crypto_curve25519.c'; else $(CYGPATH_W) '$(srcdir)/src/common/crypto_curve25519.c'; fi` src/common/src_common_libor_crypto_testing_a-crypto_ed25519.o: src/common/crypto_ed25519.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-crypto_ed25519.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_ed25519.Tpo -c -o src/common/src_common_libor_crypto_testing_a-crypto_ed25519.o `test -f 'src/common/crypto_ed25519.c' || echo '$(srcdir)/'`src/common/crypto_ed25519.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_ed25519.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_ed25519.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/crypto_ed25519.c' object='src/common/src_common_libor_crypto_testing_a-crypto_ed25519.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-crypto_ed25519.o `test -f 'src/common/crypto_ed25519.c' || echo '$(srcdir)/'`src/common/crypto_ed25519.c src/common/src_common_libor_crypto_testing_a-crypto_ed25519.obj: src/common/crypto_ed25519.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_crypto_testing_a-crypto_ed25519.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_ed25519.Tpo -c -o src/common/src_common_libor_crypto_testing_a-crypto_ed25519.obj `if test -f 'src/common/crypto_ed25519.c'; then $(CYGPATH_W) 'src/common/crypto_ed25519.c'; else $(CYGPATH_W) '$(srcdir)/src/common/crypto_ed25519.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_ed25519.Tpo src/common/$(DEPDIR)/src_common_libor_crypto_testing_a-crypto_ed25519.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/crypto_ed25519.c' object='src/common/src_common_libor_crypto_testing_a-crypto_ed25519.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_crypto_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_crypto_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_crypto_testing_a-crypto_ed25519.obj `if test -f 'src/common/crypto_ed25519.c'; then $(CYGPATH_W) 'src/common/crypto_ed25519.c'; else $(CYGPATH_W) '$(srcdir)/src/common/crypto_ed25519.c'; fi` src/common/src_common_libor_event_testing_a-compat_libevent.o: src/common/compat_libevent.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_event_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_event_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_event_testing_a-compat_libevent.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_event_testing_a-compat_libevent.Tpo -c -o src/common/src_common_libor_event_testing_a-compat_libevent.o `test -f 'src/common/compat_libevent.c' || echo '$(srcdir)/'`src/common/compat_libevent.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_event_testing_a-compat_libevent.Tpo src/common/$(DEPDIR)/src_common_libor_event_testing_a-compat_libevent.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/compat_libevent.c' object='src/common/src_common_libor_event_testing_a-compat_libevent.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_event_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_event_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_event_testing_a-compat_libevent.o `test -f 'src/common/compat_libevent.c' || echo '$(srcdir)/'`src/common/compat_libevent.c src/common/src_common_libor_event_testing_a-compat_libevent.obj: src/common/compat_libevent.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_event_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_event_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_event_testing_a-compat_libevent.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_event_testing_a-compat_libevent.Tpo -c -o src/common/src_common_libor_event_testing_a-compat_libevent.obj `if test -f 'src/common/compat_libevent.c'; then $(CYGPATH_W) 'src/common/compat_libevent.c'; else $(CYGPATH_W) '$(srcdir)/src/common/compat_libevent.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_event_testing_a-compat_libevent.Tpo src/common/$(DEPDIR)/src_common_libor_event_testing_a-compat_libevent.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/compat_libevent.c' object='src/common/src_common_libor_event_testing_a-compat_libevent.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_event_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_event_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_event_testing_a-compat_libevent.obj `if test -f 'src/common/compat_libevent.c'; then $(CYGPATH_W) 'src/common/compat_libevent.c'; else $(CYGPATH_W) '$(srcdir)/src/common/compat_libevent.c'; fi` src/common/src_common_libor_event_testing_a-procmon.o: src/common/procmon.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_event_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_event_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_event_testing_a-procmon.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_event_testing_a-procmon.Tpo -c -o src/common/src_common_libor_event_testing_a-procmon.o `test -f 'src/common/procmon.c' || echo '$(srcdir)/'`src/common/procmon.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_event_testing_a-procmon.Tpo src/common/$(DEPDIR)/src_common_libor_event_testing_a-procmon.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/procmon.c' object='src/common/src_common_libor_event_testing_a-procmon.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_event_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_event_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_event_testing_a-procmon.o `test -f 'src/common/procmon.c' || echo '$(srcdir)/'`src/common/procmon.c src/common/src_common_libor_event_testing_a-procmon.obj: src/common/procmon.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_event_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_event_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_event_testing_a-procmon.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_event_testing_a-procmon.Tpo -c -o src/common/src_common_libor_event_testing_a-procmon.obj `if test -f 'src/common/procmon.c'; then $(CYGPATH_W) 'src/common/procmon.c'; else $(CYGPATH_W) '$(srcdir)/src/common/procmon.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_event_testing_a-procmon.Tpo src/common/$(DEPDIR)/src_common_libor_event_testing_a-procmon.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/procmon.c' object='src/common/src_common_libor_event_testing_a-procmon.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_event_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_event_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_event_testing_a-procmon.obj `if test -f 'src/common/procmon.c'; then $(CYGPATH_W) 'src/common/procmon.c'; else $(CYGPATH_W) '$(srcdir)/src/common/procmon.c'; fi` src/common/src_common_libor_testing_a-address.o: src/common/address.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-address.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-address.Tpo -c -o src/common/src_common_libor_testing_a-address.o `test -f 'src/common/address.c' || echo '$(srcdir)/'`src/common/address.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-address.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-address.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/address.c' object='src/common/src_common_libor_testing_a-address.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-address.o `test -f 'src/common/address.c' || echo '$(srcdir)/'`src/common/address.c src/common/src_common_libor_testing_a-address.obj: src/common/address.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-address.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-address.Tpo -c -o src/common/src_common_libor_testing_a-address.obj `if test -f 'src/common/address.c'; then $(CYGPATH_W) 'src/common/address.c'; else $(CYGPATH_W) '$(srcdir)/src/common/address.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-address.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-address.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/address.c' object='src/common/src_common_libor_testing_a-address.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-address.obj `if test -f 'src/common/address.c'; then $(CYGPATH_W) 'src/common/address.c'; else $(CYGPATH_W) '$(srcdir)/src/common/address.c'; fi` src/common/src_common_libor_testing_a-backtrace.o: src/common/backtrace.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-backtrace.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-backtrace.Tpo -c -o src/common/src_common_libor_testing_a-backtrace.o `test -f 'src/common/backtrace.c' || echo '$(srcdir)/'`src/common/backtrace.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-backtrace.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-backtrace.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/backtrace.c' object='src/common/src_common_libor_testing_a-backtrace.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-backtrace.o `test -f 'src/common/backtrace.c' || echo '$(srcdir)/'`src/common/backtrace.c src/common/src_common_libor_testing_a-backtrace.obj: src/common/backtrace.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-backtrace.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-backtrace.Tpo -c -o src/common/src_common_libor_testing_a-backtrace.obj `if test -f 'src/common/backtrace.c'; then $(CYGPATH_W) 'src/common/backtrace.c'; else $(CYGPATH_W) '$(srcdir)/src/common/backtrace.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-backtrace.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-backtrace.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/backtrace.c' object='src/common/src_common_libor_testing_a-backtrace.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-backtrace.obj `if test -f 'src/common/backtrace.c'; then $(CYGPATH_W) 'src/common/backtrace.c'; else $(CYGPATH_W) '$(srcdir)/src/common/backtrace.c'; fi` src/common/src_common_libor_testing_a-compat.o: src/common/compat.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-compat.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-compat.Tpo -c -o src/common/src_common_libor_testing_a-compat.o `test -f 'src/common/compat.c' || echo '$(srcdir)/'`src/common/compat.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-compat.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-compat.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/compat.c' object='src/common/src_common_libor_testing_a-compat.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-compat.o `test -f 'src/common/compat.c' || echo '$(srcdir)/'`src/common/compat.c src/common/src_common_libor_testing_a-compat.obj: src/common/compat.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-compat.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-compat.Tpo -c -o src/common/src_common_libor_testing_a-compat.obj `if test -f 'src/common/compat.c'; then $(CYGPATH_W) 'src/common/compat.c'; else $(CYGPATH_W) '$(srcdir)/src/common/compat.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-compat.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-compat.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/compat.c' object='src/common/src_common_libor_testing_a-compat.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-compat.obj `if test -f 'src/common/compat.c'; then $(CYGPATH_W) 'src/common/compat.c'; else $(CYGPATH_W) '$(srcdir)/src/common/compat.c'; fi` src/common/src_common_libor_testing_a-compat_threads.o: src/common/compat_threads.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-compat_threads.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-compat_threads.Tpo -c -o src/common/src_common_libor_testing_a-compat_threads.o `test -f 'src/common/compat_threads.c' || echo '$(srcdir)/'`src/common/compat_threads.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-compat_threads.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-compat_threads.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/compat_threads.c' object='src/common/src_common_libor_testing_a-compat_threads.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-compat_threads.o `test -f 'src/common/compat_threads.c' || echo '$(srcdir)/'`src/common/compat_threads.c src/common/src_common_libor_testing_a-compat_threads.obj: src/common/compat_threads.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-compat_threads.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-compat_threads.Tpo -c -o src/common/src_common_libor_testing_a-compat_threads.obj `if test -f 'src/common/compat_threads.c'; then $(CYGPATH_W) 'src/common/compat_threads.c'; else $(CYGPATH_W) '$(srcdir)/src/common/compat_threads.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-compat_threads.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-compat_threads.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/compat_threads.c' object='src/common/src_common_libor_testing_a-compat_threads.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-compat_threads.obj `if test -f 'src/common/compat_threads.c'; then $(CYGPATH_W) 'src/common/compat_threads.c'; else $(CYGPATH_W) '$(srcdir)/src/common/compat_threads.c'; fi` src/common/src_common_libor_testing_a-container.o: src/common/container.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-container.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-container.Tpo -c -o src/common/src_common_libor_testing_a-container.o `test -f 'src/common/container.c' || echo '$(srcdir)/'`src/common/container.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-container.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-container.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/container.c' object='src/common/src_common_libor_testing_a-container.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-container.o `test -f 'src/common/container.c' || echo '$(srcdir)/'`src/common/container.c src/common/src_common_libor_testing_a-container.obj: src/common/container.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-container.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-container.Tpo -c -o src/common/src_common_libor_testing_a-container.obj `if test -f 'src/common/container.c'; then $(CYGPATH_W) 'src/common/container.c'; else $(CYGPATH_W) '$(srcdir)/src/common/container.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-container.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-container.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/container.c' object='src/common/src_common_libor_testing_a-container.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-container.obj `if test -f 'src/common/container.c'; then $(CYGPATH_W) 'src/common/container.c'; else $(CYGPATH_W) '$(srcdir)/src/common/container.c'; fi` src/common/src_common_libor_testing_a-di_ops.o: src/common/di_ops.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-di_ops.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-di_ops.Tpo -c -o src/common/src_common_libor_testing_a-di_ops.o `test -f 'src/common/di_ops.c' || echo '$(srcdir)/'`src/common/di_ops.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-di_ops.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-di_ops.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/di_ops.c' object='src/common/src_common_libor_testing_a-di_ops.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-di_ops.o `test -f 'src/common/di_ops.c' || echo '$(srcdir)/'`src/common/di_ops.c src/common/src_common_libor_testing_a-di_ops.obj: src/common/di_ops.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-di_ops.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-di_ops.Tpo -c -o src/common/src_common_libor_testing_a-di_ops.obj `if test -f 'src/common/di_ops.c'; then $(CYGPATH_W) 'src/common/di_ops.c'; else $(CYGPATH_W) '$(srcdir)/src/common/di_ops.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-di_ops.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-di_ops.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/di_ops.c' object='src/common/src_common_libor_testing_a-di_ops.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-di_ops.obj `if test -f 'src/common/di_ops.c'; then $(CYGPATH_W) 'src/common/di_ops.c'; else $(CYGPATH_W) '$(srcdir)/src/common/di_ops.c'; fi` src/common/src_common_libor_testing_a-log.o: src/common/log.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-log.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-log.Tpo -c -o src/common/src_common_libor_testing_a-log.o `test -f 'src/common/log.c' || echo '$(srcdir)/'`src/common/log.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-log.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-log.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/log.c' object='src/common/src_common_libor_testing_a-log.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-log.o `test -f 'src/common/log.c' || echo '$(srcdir)/'`src/common/log.c src/common/src_common_libor_testing_a-log.obj: src/common/log.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-log.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-log.Tpo -c -o src/common/src_common_libor_testing_a-log.obj `if test -f 'src/common/log.c'; then $(CYGPATH_W) 'src/common/log.c'; else $(CYGPATH_W) '$(srcdir)/src/common/log.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-log.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-log.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/log.c' object='src/common/src_common_libor_testing_a-log.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-log.obj `if test -f 'src/common/log.c'; then $(CYGPATH_W) 'src/common/log.c'; else $(CYGPATH_W) '$(srcdir)/src/common/log.c'; fi` src/common/src_common_libor_testing_a-memarea.o: src/common/memarea.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-memarea.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-memarea.Tpo -c -o src/common/src_common_libor_testing_a-memarea.o `test -f 'src/common/memarea.c' || echo '$(srcdir)/'`src/common/memarea.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-memarea.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-memarea.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/memarea.c' object='src/common/src_common_libor_testing_a-memarea.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-memarea.o `test -f 'src/common/memarea.c' || echo '$(srcdir)/'`src/common/memarea.c src/common/src_common_libor_testing_a-memarea.obj: src/common/memarea.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-memarea.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-memarea.Tpo -c -o src/common/src_common_libor_testing_a-memarea.obj `if test -f 'src/common/memarea.c'; then $(CYGPATH_W) 'src/common/memarea.c'; else $(CYGPATH_W) '$(srcdir)/src/common/memarea.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-memarea.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-memarea.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/memarea.c' object='src/common/src_common_libor_testing_a-memarea.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-memarea.obj `if test -f 'src/common/memarea.c'; then $(CYGPATH_W) 'src/common/memarea.c'; else $(CYGPATH_W) '$(srcdir)/src/common/memarea.c'; fi` src/common/src_common_libor_testing_a-util.o: src/common/util.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-util.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-util.Tpo -c -o src/common/src_common_libor_testing_a-util.o `test -f 'src/common/util.c' || echo '$(srcdir)/'`src/common/util.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-util.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-util.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/util.c' object='src/common/src_common_libor_testing_a-util.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-util.o `test -f 'src/common/util.c' || echo '$(srcdir)/'`src/common/util.c src/common/src_common_libor_testing_a-util.obj: src/common/util.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-util.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-util.Tpo -c -o src/common/src_common_libor_testing_a-util.obj `if test -f 'src/common/util.c'; then $(CYGPATH_W) 'src/common/util.c'; else $(CYGPATH_W) '$(srcdir)/src/common/util.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-util.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-util.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/util.c' object='src/common/src_common_libor_testing_a-util.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-util.obj `if test -f 'src/common/util.c'; then $(CYGPATH_W) 'src/common/util.c'; else $(CYGPATH_W) '$(srcdir)/src/common/util.c'; fi` src/common/src_common_libor_testing_a-util_format.o: src/common/util_format.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-util_format.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-util_format.Tpo -c -o src/common/src_common_libor_testing_a-util_format.o `test -f 'src/common/util_format.c' || echo '$(srcdir)/'`src/common/util_format.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-util_format.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-util_format.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/util_format.c' object='src/common/src_common_libor_testing_a-util_format.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-util_format.o `test -f 'src/common/util_format.c' || echo '$(srcdir)/'`src/common/util_format.c src/common/src_common_libor_testing_a-util_format.obj: src/common/util_format.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-util_format.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-util_format.Tpo -c -o src/common/src_common_libor_testing_a-util_format.obj `if test -f 'src/common/util_format.c'; then $(CYGPATH_W) 'src/common/util_format.c'; else $(CYGPATH_W) '$(srcdir)/src/common/util_format.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-util_format.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-util_format.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/util_format.c' object='src/common/src_common_libor_testing_a-util_format.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-util_format.obj `if test -f 'src/common/util_format.c'; then $(CYGPATH_W) 'src/common/util_format.c'; else $(CYGPATH_W) '$(srcdir)/src/common/util_format.c'; fi` src/common/src_common_libor_testing_a-util_process.o: src/common/util_process.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-util_process.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-util_process.Tpo -c -o src/common/src_common_libor_testing_a-util_process.o `test -f 'src/common/util_process.c' || echo '$(srcdir)/'`src/common/util_process.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-util_process.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-util_process.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/util_process.c' object='src/common/src_common_libor_testing_a-util_process.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-util_process.o `test -f 'src/common/util_process.c' || echo '$(srcdir)/'`src/common/util_process.c src/common/src_common_libor_testing_a-util_process.obj: src/common/util_process.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-util_process.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-util_process.Tpo -c -o src/common/src_common_libor_testing_a-util_process.obj `if test -f 'src/common/util_process.c'; then $(CYGPATH_W) 'src/common/util_process.c'; else $(CYGPATH_W) '$(srcdir)/src/common/util_process.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-util_process.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-util_process.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/util_process.c' object='src/common/src_common_libor_testing_a-util_process.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-util_process.obj `if test -f 'src/common/util_process.c'; then $(CYGPATH_W) 'src/common/util_process.c'; else $(CYGPATH_W) '$(srcdir)/src/common/util_process.c'; fi` src/common/src_common_libor_testing_a-sandbox.o: src/common/sandbox.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-sandbox.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-sandbox.Tpo -c -o src/common/src_common_libor_testing_a-sandbox.o `test -f 'src/common/sandbox.c' || echo '$(srcdir)/'`src/common/sandbox.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-sandbox.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-sandbox.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/sandbox.c' object='src/common/src_common_libor_testing_a-sandbox.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-sandbox.o `test -f 'src/common/sandbox.c' || echo '$(srcdir)/'`src/common/sandbox.c src/common/src_common_libor_testing_a-sandbox.obj: src/common/sandbox.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-sandbox.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-sandbox.Tpo -c -o src/common/src_common_libor_testing_a-sandbox.obj `if test -f 'src/common/sandbox.c'; then $(CYGPATH_W) 'src/common/sandbox.c'; else $(CYGPATH_W) '$(srcdir)/src/common/sandbox.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-sandbox.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-sandbox.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/sandbox.c' object='src/common/src_common_libor_testing_a-sandbox.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-sandbox.obj `if test -f 'src/common/sandbox.c'; then $(CYGPATH_W) 'src/common/sandbox.c'; else $(CYGPATH_W) '$(srcdir)/src/common/sandbox.c'; fi` src/common/src_common_libor_testing_a-workqueue.o: src/common/workqueue.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-workqueue.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-workqueue.Tpo -c -o src/common/src_common_libor_testing_a-workqueue.o `test -f 'src/common/workqueue.c' || echo '$(srcdir)/'`src/common/workqueue.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-workqueue.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-workqueue.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/workqueue.c' object='src/common/src_common_libor_testing_a-workqueue.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-workqueue.o `test -f 'src/common/workqueue.c' || echo '$(srcdir)/'`src/common/workqueue.c src/common/src_common_libor_testing_a-workqueue.obj: src/common/workqueue.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-workqueue.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-workqueue.Tpo -c -o src/common/src_common_libor_testing_a-workqueue.obj `if test -f 'src/common/workqueue.c'; then $(CYGPATH_W) 'src/common/workqueue.c'; else $(CYGPATH_W) '$(srcdir)/src/common/workqueue.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-workqueue.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-workqueue.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/workqueue.c' object='src/common/src_common_libor_testing_a-workqueue.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-workqueue.obj `if test -f 'src/common/workqueue.c'; then $(CYGPATH_W) 'src/common/workqueue.c'; else $(CYGPATH_W) '$(srcdir)/src/common/workqueue.c'; fi` src/ext/src_common_libor_testing_a-csiphash.o: src/ext/csiphash.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/ext/src_common_libor_testing_a-csiphash.o -MD -MP -MF src/ext/$(DEPDIR)/src_common_libor_testing_a-csiphash.Tpo -c -o src/ext/src_common_libor_testing_a-csiphash.o `test -f 'src/ext/csiphash.c' || echo '$(srcdir)/'`src/ext/csiphash.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/$(DEPDIR)/src_common_libor_testing_a-csiphash.Tpo src/ext/$(DEPDIR)/src_common_libor_testing_a-csiphash.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/csiphash.c' object='src/ext/src_common_libor_testing_a-csiphash.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/ext/src_common_libor_testing_a-csiphash.o `test -f 'src/ext/csiphash.c' || echo '$(srcdir)/'`src/ext/csiphash.c src/ext/src_common_libor_testing_a-csiphash.obj: src/ext/csiphash.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/ext/src_common_libor_testing_a-csiphash.obj -MD -MP -MF src/ext/$(DEPDIR)/src_common_libor_testing_a-csiphash.Tpo -c -o src/ext/src_common_libor_testing_a-csiphash.obj `if test -f 'src/ext/csiphash.c'; then $(CYGPATH_W) 'src/ext/csiphash.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/csiphash.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/$(DEPDIR)/src_common_libor_testing_a-csiphash.Tpo src/ext/$(DEPDIR)/src_common_libor_testing_a-csiphash.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/csiphash.c' object='src/ext/src_common_libor_testing_a-csiphash.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/ext/src_common_libor_testing_a-csiphash.obj `if test -f 'src/ext/csiphash.c'; then $(CYGPATH_W) 'src/ext/csiphash.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/csiphash.c'; fi` src/ext/trunnel/src_common_libor_testing_a-trunnel.o: src/ext/trunnel/trunnel.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/ext/trunnel/src_common_libor_testing_a-trunnel.o -MD -MP -MF src/ext/trunnel/$(DEPDIR)/src_common_libor_testing_a-trunnel.Tpo -c -o src/ext/trunnel/src_common_libor_testing_a-trunnel.o `test -f 'src/ext/trunnel/trunnel.c' || echo '$(srcdir)/'`src/ext/trunnel/trunnel.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/trunnel/$(DEPDIR)/src_common_libor_testing_a-trunnel.Tpo src/ext/trunnel/$(DEPDIR)/src_common_libor_testing_a-trunnel.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/trunnel/trunnel.c' object='src/ext/trunnel/src_common_libor_testing_a-trunnel.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/ext/trunnel/src_common_libor_testing_a-trunnel.o `test -f 'src/ext/trunnel/trunnel.c' || echo '$(srcdir)/'`src/ext/trunnel/trunnel.c src/ext/trunnel/src_common_libor_testing_a-trunnel.obj: src/ext/trunnel/trunnel.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/ext/trunnel/src_common_libor_testing_a-trunnel.obj -MD -MP -MF src/ext/trunnel/$(DEPDIR)/src_common_libor_testing_a-trunnel.Tpo -c -o src/ext/trunnel/src_common_libor_testing_a-trunnel.obj `if test -f 'src/ext/trunnel/trunnel.c'; then $(CYGPATH_W) 'src/ext/trunnel/trunnel.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/trunnel/trunnel.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/trunnel/$(DEPDIR)/src_common_libor_testing_a-trunnel.Tpo src/ext/trunnel/$(DEPDIR)/src_common_libor_testing_a-trunnel.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/trunnel/trunnel.c' object='src/ext/trunnel/src_common_libor_testing_a-trunnel.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/ext/trunnel/src_common_libor_testing_a-trunnel.obj `if test -f 'src/ext/trunnel/trunnel.c'; then $(CYGPATH_W) 'src/ext/trunnel/trunnel.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/trunnel/trunnel.c'; fi` src/ext/src_common_libor_testing_a-OpenBSD_malloc_Linux.o: src/ext/OpenBSD_malloc_Linux.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/ext/src_common_libor_testing_a-OpenBSD_malloc_Linux.o -MD -MP -MF src/ext/$(DEPDIR)/src_common_libor_testing_a-OpenBSD_malloc_Linux.Tpo -c -o src/ext/src_common_libor_testing_a-OpenBSD_malloc_Linux.o `test -f 'src/ext/OpenBSD_malloc_Linux.c' || echo '$(srcdir)/'`src/ext/OpenBSD_malloc_Linux.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/$(DEPDIR)/src_common_libor_testing_a-OpenBSD_malloc_Linux.Tpo src/ext/$(DEPDIR)/src_common_libor_testing_a-OpenBSD_malloc_Linux.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/OpenBSD_malloc_Linux.c' object='src/ext/src_common_libor_testing_a-OpenBSD_malloc_Linux.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/ext/src_common_libor_testing_a-OpenBSD_malloc_Linux.o `test -f 'src/ext/OpenBSD_malloc_Linux.c' || echo '$(srcdir)/'`src/ext/OpenBSD_malloc_Linux.c src/ext/src_common_libor_testing_a-OpenBSD_malloc_Linux.obj: src/ext/OpenBSD_malloc_Linux.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/ext/src_common_libor_testing_a-OpenBSD_malloc_Linux.obj -MD -MP -MF src/ext/$(DEPDIR)/src_common_libor_testing_a-OpenBSD_malloc_Linux.Tpo -c -o src/ext/src_common_libor_testing_a-OpenBSD_malloc_Linux.obj `if test -f 'src/ext/OpenBSD_malloc_Linux.c'; then $(CYGPATH_W) 'src/ext/OpenBSD_malloc_Linux.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/OpenBSD_malloc_Linux.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/$(DEPDIR)/src_common_libor_testing_a-OpenBSD_malloc_Linux.Tpo src/ext/$(DEPDIR)/src_common_libor_testing_a-OpenBSD_malloc_Linux.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/OpenBSD_malloc_Linux.c' object='src/ext/src_common_libor_testing_a-OpenBSD_malloc_Linux.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/ext/src_common_libor_testing_a-OpenBSD_malloc_Linux.obj `if test -f 'src/ext/OpenBSD_malloc_Linux.c'; then $(CYGPATH_W) 'src/ext/OpenBSD_malloc_Linux.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/OpenBSD_malloc_Linux.c'; fi` src/common/src_common_libor_testing_a-compat_pthreads.o: src/common/compat_pthreads.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-compat_pthreads.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-compat_pthreads.Tpo -c -o src/common/src_common_libor_testing_a-compat_pthreads.o `test -f 'src/common/compat_pthreads.c' || echo '$(srcdir)/'`src/common/compat_pthreads.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-compat_pthreads.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-compat_pthreads.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/compat_pthreads.c' object='src/common/src_common_libor_testing_a-compat_pthreads.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-compat_pthreads.o `test -f 'src/common/compat_pthreads.c' || echo '$(srcdir)/'`src/common/compat_pthreads.c src/common/src_common_libor_testing_a-compat_pthreads.obj: src/common/compat_pthreads.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-compat_pthreads.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-compat_pthreads.Tpo -c -o src/common/src_common_libor_testing_a-compat_pthreads.obj `if test -f 'src/common/compat_pthreads.c'; then $(CYGPATH_W) 'src/common/compat_pthreads.c'; else $(CYGPATH_W) '$(srcdir)/src/common/compat_pthreads.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-compat_pthreads.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-compat_pthreads.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/compat_pthreads.c' object='src/common/src_common_libor_testing_a-compat_pthreads.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-compat_pthreads.obj `if test -f 'src/common/compat_pthreads.c'; then $(CYGPATH_W) 'src/common/compat_pthreads.c'; else $(CYGPATH_W) '$(srcdir)/src/common/compat_pthreads.c'; fi` src/common/src_common_libor_testing_a-compat_winthreads.o: src/common/compat_winthreads.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-compat_winthreads.o -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-compat_winthreads.Tpo -c -o src/common/src_common_libor_testing_a-compat_winthreads.o `test -f 'src/common/compat_winthreads.c' || echo '$(srcdir)/'`src/common/compat_winthreads.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-compat_winthreads.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-compat_winthreads.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/compat_winthreads.c' object='src/common/src_common_libor_testing_a-compat_winthreads.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-compat_winthreads.o `test -f 'src/common/compat_winthreads.c' || echo '$(srcdir)/'`src/common/compat_winthreads.c src/common/src_common_libor_testing_a-compat_winthreads.obj: src/common/compat_winthreads.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/common/src_common_libor_testing_a-compat_winthreads.obj -MD -MP -MF src/common/$(DEPDIR)/src_common_libor_testing_a-compat_winthreads.Tpo -c -o src/common/src_common_libor_testing_a-compat_winthreads.obj `if test -f 'src/common/compat_winthreads.c'; then $(CYGPATH_W) 'src/common/compat_winthreads.c'; else $(CYGPATH_W) '$(srcdir)/src/common/compat_winthreads.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/common/$(DEPDIR)/src_common_libor_testing_a-compat_winthreads.Tpo src/common/$(DEPDIR)/src_common_libor_testing_a-compat_winthreads.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/common/compat_winthreads.c' object='src/common/src_common_libor_testing_a-compat_winthreads.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/common/src_common_libor_testing_a-compat_winthreads.obj `if test -f 'src/common/compat_winthreads.c'; then $(CYGPATH_W) 'src/common/compat_winthreads.c'; else $(CYGPATH_W) '$(srcdir)/src/common/compat_winthreads.c'; fi` src/ext/src_common_libor_testing_a-readpassphrase.o: src/ext/readpassphrase.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/ext/src_common_libor_testing_a-readpassphrase.o -MD -MP -MF src/ext/$(DEPDIR)/src_common_libor_testing_a-readpassphrase.Tpo -c -o src/ext/src_common_libor_testing_a-readpassphrase.o `test -f 'src/ext/readpassphrase.c' || echo '$(srcdir)/'`src/ext/readpassphrase.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/$(DEPDIR)/src_common_libor_testing_a-readpassphrase.Tpo src/ext/$(DEPDIR)/src_common_libor_testing_a-readpassphrase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/readpassphrase.c' object='src/ext/src_common_libor_testing_a-readpassphrase.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/ext/src_common_libor_testing_a-readpassphrase.o `test -f 'src/ext/readpassphrase.c' || echo '$(srcdir)/'`src/ext/readpassphrase.c src/ext/src_common_libor_testing_a-readpassphrase.obj: src/ext/readpassphrase.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -MT src/ext/src_common_libor_testing_a-readpassphrase.obj -MD -MP -MF src/ext/$(DEPDIR)/src_common_libor_testing_a-readpassphrase.Tpo -c -o src/ext/src_common_libor_testing_a-readpassphrase.obj `if test -f 'src/ext/readpassphrase.c'; then $(CYGPATH_W) 'src/ext/readpassphrase.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/readpassphrase.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/$(DEPDIR)/src_common_libor_testing_a-readpassphrase.Tpo src/ext/$(DEPDIR)/src_common_libor_testing_a-readpassphrase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/readpassphrase.c' object='src/ext/src_common_libor_testing_a-readpassphrase.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_common_libor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_common_libor_testing_a_CFLAGS) $(CFLAGS) -c -o src/ext/src_common_libor_testing_a-readpassphrase.obj `if test -f 'src/ext/readpassphrase.c'; then $(CYGPATH_W) 'src/ext/readpassphrase.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/readpassphrase.c'; fi` src/ext/ed25519/donna/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.o: src/ext/ed25519/donna/ed25519_tor.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_donna_libed25519_donna_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/donna/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.o -MD -MP -MF src/ext/ed25519/donna/$(DEPDIR)/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.Tpo -c -o src/ext/ed25519/donna/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.o `test -f 'src/ext/ed25519/donna/ed25519_tor.c' || echo '$(srcdir)/'`src/ext/ed25519/donna/ed25519_tor.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/donna/$(DEPDIR)/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.Tpo src/ext/ed25519/donna/$(DEPDIR)/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/donna/ed25519_tor.c' object='src/ext/ed25519/donna/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_donna_libed25519_donna_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/donna/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.o `test -f 'src/ext/ed25519/donna/ed25519_tor.c' || echo '$(srcdir)/'`src/ext/ed25519/donna/ed25519_tor.c src/ext/ed25519/donna/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.obj: src/ext/ed25519/donna/ed25519_tor.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_donna_libed25519_donna_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/donna/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.obj -MD -MP -MF src/ext/ed25519/donna/$(DEPDIR)/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.Tpo -c -o src/ext/ed25519/donna/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.obj `if test -f 'src/ext/ed25519/donna/ed25519_tor.c'; then $(CYGPATH_W) 'src/ext/ed25519/donna/ed25519_tor.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/donna/ed25519_tor.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/donna/$(DEPDIR)/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.Tpo src/ext/ed25519/donna/$(DEPDIR)/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/donna/ed25519_tor.c' object='src/ext/ed25519/donna/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_donna_libed25519_donna_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/donna/src_ext_ed25519_donna_libed25519_donna_a-ed25519_tor.obj `if test -f 'src/ext/ed25519/donna/ed25519_tor.c'; then $(CYGPATH_W) 'src/ext/ed25519/donna/ed25519_tor.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/donna/ed25519_tor.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.o: src/ext/ed25519/ref10/fe_0.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.o `test -f 'src/ext/ed25519/ref10/fe_0.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_0.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_0.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.o `test -f 'src/ext/ed25519/ref10/fe_0.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_0.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.obj: src/ext/ed25519/ref10/fe_0.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.obj `if test -f 'src/ext/ed25519/ref10/fe_0.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_0.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_0.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_0.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_0.obj `if test -f 'src/ext/ed25519/ref10/fe_0.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_0.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_0.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.o: src/ext/ed25519/ref10/fe_1.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.o `test -f 'src/ext/ed25519/ref10/fe_1.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_1.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_1.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.o `test -f 'src/ext/ed25519/ref10/fe_1.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_1.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.obj: src/ext/ed25519/ref10/fe_1.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.obj `if test -f 'src/ext/ed25519/ref10/fe_1.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_1.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_1.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_1.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_1.obj `if test -f 'src/ext/ed25519/ref10/fe_1.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_1.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_1.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.o: src/ext/ed25519/ref10/fe_add.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.o `test -f 'src/ext/ed25519/ref10/fe_add.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_add.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_add.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.o `test -f 'src/ext/ed25519/ref10/fe_add.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_add.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.obj: src/ext/ed25519/ref10/fe_add.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.obj `if test -f 'src/ext/ed25519/ref10/fe_add.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_add.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_add.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_add.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_add.obj `if test -f 'src/ext/ed25519/ref10/fe_add.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_add.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_add.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.o: src/ext/ed25519/ref10/fe_cmov.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.o `test -f 'src/ext/ed25519/ref10/fe_cmov.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_cmov.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_cmov.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.o `test -f 'src/ext/ed25519/ref10/fe_cmov.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_cmov.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.obj: src/ext/ed25519/ref10/fe_cmov.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.obj `if test -f 'src/ext/ed25519/ref10/fe_cmov.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_cmov.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_cmov.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_cmov.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_cmov.obj `if test -f 'src/ext/ed25519/ref10/fe_cmov.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_cmov.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_cmov.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.o: src/ext/ed25519/ref10/fe_copy.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.o `test -f 'src/ext/ed25519/ref10/fe_copy.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_copy.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_copy.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.o `test -f 'src/ext/ed25519/ref10/fe_copy.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_copy.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.obj: src/ext/ed25519/ref10/fe_copy.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.obj `if test -f 'src/ext/ed25519/ref10/fe_copy.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_copy.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_copy.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_copy.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_copy.obj `if test -f 'src/ext/ed25519/ref10/fe_copy.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_copy.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_copy.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.o: src/ext/ed25519/ref10/fe_frombytes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.o `test -f 'src/ext/ed25519/ref10/fe_frombytes.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_frombytes.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_frombytes.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.o `test -f 'src/ext/ed25519/ref10/fe_frombytes.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_frombytes.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.obj: src/ext/ed25519/ref10/fe_frombytes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.obj `if test -f 'src/ext/ed25519/ref10/fe_frombytes.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_frombytes.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_frombytes.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_frombytes.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_frombytes.obj `if test -f 'src/ext/ed25519/ref10/fe_frombytes.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_frombytes.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_frombytes.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.o: src/ext/ed25519/ref10/fe_invert.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.o `test -f 'src/ext/ed25519/ref10/fe_invert.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_invert.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_invert.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.o `test -f 'src/ext/ed25519/ref10/fe_invert.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_invert.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.obj: src/ext/ed25519/ref10/fe_invert.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.obj `if test -f 'src/ext/ed25519/ref10/fe_invert.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_invert.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_invert.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_invert.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_invert.obj `if test -f 'src/ext/ed25519/ref10/fe_invert.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_invert.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_invert.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.o: src/ext/ed25519/ref10/fe_isnegative.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.o `test -f 'src/ext/ed25519/ref10/fe_isnegative.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_isnegative.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_isnegative.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.o `test -f 'src/ext/ed25519/ref10/fe_isnegative.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_isnegative.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.obj: src/ext/ed25519/ref10/fe_isnegative.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.obj `if test -f 'src/ext/ed25519/ref10/fe_isnegative.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_isnegative.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_isnegative.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_isnegative.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnegative.obj `if test -f 'src/ext/ed25519/ref10/fe_isnegative.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_isnegative.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_isnegative.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.o: src/ext/ed25519/ref10/fe_isnonzero.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.o `test -f 'src/ext/ed25519/ref10/fe_isnonzero.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_isnonzero.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_isnonzero.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.o `test -f 'src/ext/ed25519/ref10/fe_isnonzero.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_isnonzero.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.obj: src/ext/ed25519/ref10/fe_isnonzero.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.obj `if test -f 'src/ext/ed25519/ref10/fe_isnonzero.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_isnonzero.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_isnonzero.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_isnonzero.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_isnonzero.obj `if test -f 'src/ext/ed25519/ref10/fe_isnonzero.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_isnonzero.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_isnonzero.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.o: src/ext/ed25519/ref10/fe_mul.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.o `test -f 'src/ext/ed25519/ref10/fe_mul.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_mul.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_mul.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.o `test -f 'src/ext/ed25519/ref10/fe_mul.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_mul.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.obj: src/ext/ed25519/ref10/fe_mul.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.obj `if test -f 'src/ext/ed25519/ref10/fe_mul.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_mul.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_mul.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_mul.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_mul.obj `if test -f 'src/ext/ed25519/ref10/fe_mul.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_mul.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_mul.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.o: src/ext/ed25519/ref10/fe_neg.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.o `test -f 'src/ext/ed25519/ref10/fe_neg.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_neg.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_neg.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.o `test -f 'src/ext/ed25519/ref10/fe_neg.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_neg.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.obj: src/ext/ed25519/ref10/fe_neg.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.obj `if test -f 'src/ext/ed25519/ref10/fe_neg.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_neg.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_neg.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_neg.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_neg.obj `if test -f 'src/ext/ed25519/ref10/fe_neg.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_neg.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_neg.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.o: src/ext/ed25519/ref10/fe_pow22523.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.o `test -f 'src/ext/ed25519/ref10/fe_pow22523.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_pow22523.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_pow22523.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.o `test -f 'src/ext/ed25519/ref10/fe_pow22523.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_pow22523.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.obj: src/ext/ed25519/ref10/fe_pow22523.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.obj `if test -f 'src/ext/ed25519/ref10/fe_pow22523.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_pow22523.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_pow22523.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_pow22523.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_pow22523.obj `if test -f 'src/ext/ed25519/ref10/fe_pow22523.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_pow22523.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_pow22523.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.o: src/ext/ed25519/ref10/fe_sq.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.o `test -f 'src/ext/ed25519/ref10/fe_sq.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_sq.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_sq.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.o `test -f 'src/ext/ed25519/ref10/fe_sq.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_sq.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.obj: src/ext/ed25519/ref10/fe_sq.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.obj `if test -f 'src/ext/ed25519/ref10/fe_sq.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_sq.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_sq.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_sq.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq.obj `if test -f 'src/ext/ed25519/ref10/fe_sq.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_sq.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_sq.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.o: src/ext/ed25519/ref10/fe_sq2.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.o `test -f 'src/ext/ed25519/ref10/fe_sq2.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_sq2.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_sq2.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.o `test -f 'src/ext/ed25519/ref10/fe_sq2.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_sq2.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.obj: src/ext/ed25519/ref10/fe_sq2.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.obj `if test -f 'src/ext/ed25519/ref10/fe_sq2.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_sq2.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_sq2.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_sq2.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sq2.obj `if test -f 'src/ext/ed25519/ref10/fe_sq2.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_sq2.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_sq2.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.o: src/ext/ed25519/ref10/fe_sub.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.o `test -f 'src/ext/ed25519/ref10/fe_sub.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_sub.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_sub.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.o `test -f 'src/ext/ed25519/ref10/fe_sub.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_sub.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.obj: src/ext/ed25519/ref10/fe_sub.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.obj `if test -f 'src/ext/ed25519/ref10/fe_sub.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_sub.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_sub.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_sub.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_sub.obj `if test -f 'src/ext/ed25519/ref10/fe_sub.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_sub.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_sub.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.o: src/ext/ed25519/ref10/fe_tobytes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.o `test -f 'src/ext/ed25519/ref10/fe_tobytes.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_tobytes.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_tobytes.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.o `test -f 'src/ext/ed25519/ref10/fe_tobytes.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/fe_tobytes.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.obj: src/ext/ed25519/ref10/fe_tobytes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.obj `if test -f 'src/ext/ed25519/ref10/fe_tobytes.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_tobytes.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_tobytes.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/fe_tobytes.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-fe_tobytes.obj `if test -f 'src/ext/ed25519/ref10/fe_tobytes.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/fe_tobytes.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/fe_tobytes.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.o: src/ext/ed25519/ref10/ge_add.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.o `test -f 'src/ext/ed25519/ref10/ge_add.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_add.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_add.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.o `test -f 'src/ext/ed25519/ref10/ge_add.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_add.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.obj: src/ext/ed25519/ref10/ge_add.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.obj `if test -f 'src/ext/ed25519/ref10/ge_add.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_add.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_add.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_add.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_add.obj `if test -f 'src/ext/ed25519/ref10/ge_add.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_add.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_add.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.o: src/ext/ed25519/ref10/ge_double_scalarmult.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.o `test -f 'src/ext/ed25519/ref10/ge_double_scalarmult.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_double_scalarmult.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_double_scalarmult.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.o `test -f 'src/ext/ed25519/ref10/ge_double_scalarmult.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_double_scalarmult.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.obj: src/ext/ed25519/ref10/ge_double_scalarmult.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.obj `if test -f 'src/ext/ed25519/ref10/ge_double_scalarmult.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_double_scalarmult.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_double_scalarmult.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_double_scalarmult.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_double_scalarmult.obj `if test -f 'src/ext/ed25519/ref10/ge_double_scalarmult.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_double_scalarmult.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_double_scalarmult.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.o: src/ext/ed25519/ref10/ge_frombytes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.o `test -f 'src/ext/ed25519/ref10/ge_frombytes.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_frombytes.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_frombytes.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.o `test -f 'src/ext/ed25519/ref10/ge_frombytes.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_frombytes.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.obj: src/ext/ed25519/ref10/ge_frombytes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.obj `if test -f 'src/ext/ed25519/ref10/ge_frombytes.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_frombytes.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_frombytes.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_frombytes.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_frombytes.obj `if test -f 'src/ext/ed25519/ref10/ge_frombytes.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_frombytes.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_frombytes.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.o: src/ext/ed25519/ref10/ge_madd.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.o `test -f 'src/ext/ed25519/ref10/ge_madd.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_madd.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_madd.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.o `test -f 'src/ext/ed25519/ref10/ge_madd.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_madd.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.obj: src/ext/ed25519/ref10/ge_madd.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.obj `if test -f 'src/ext/ed25519/ref10/ge_madd.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_madd.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_madd.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_madd.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_madd.obj `if test -f 'src/ext/ed25519/ref10/ge_madd.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_madd.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_madd.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.o: src/ext/ed25519/ref10/ge_msub.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.o `test -f 'src/ext/ed25519/ref10/ge_msub.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_msub.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_msub.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.o `test -f 'src/ext/ed25519/ref10/ge_msub.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_msub.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.obj: src/ext/ed25519/ref10/ge_msub.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.obj `if test -f 'src/ext/ed25519/ref10/ge_msub.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_msub.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_msub.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_msub.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_msub.obj `if test -f 'src/ext/ed25519/ref10/ge_msub.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_msub.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_msub.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.o: src/ext/ed25519/ref10/ge_p1p1_to_p2.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.o `test -f 'src/ext/ed25519/ref10/ge_p1p1_to_p2.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p1p1_to_p2.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p1p1_to_p2.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.o `test -f 'src/ext/ed25519/ref10/ge_p1p1_to_p2.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p1p1_to_p2.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.obj: src/ext/ed25519/ref10/ge_p1p1_to_p2.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.obj `if test -f 'src/ext/ed25519/ref10/ge_p1p1_to_p2.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p1p1_to_p2.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p1p1_to_p2.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p1p1_to_p2.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p2.obj `if test -f 'src/ext/ed25519/ref10/ge_p1p1_to_p2.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p1p1_to_p2.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p1p1_to_p2.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.o: src/ext/ed25519/ref10/ge_p1p1_to_p3.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.o `test -f 'src/ext/ed25519/ref10/ge_p1p1_to_p3.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p1p1_to_p3.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p1p1_to_p3.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.o `test -f 'src/ext/ed25519/ref10/ge_p1p1_to_p3.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p1p1_to_p3.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.obj: src/ext/ed25519/ref10/ge_p1p1_to_p3.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.obj `if test -f 'src/ext/ed25519/ref10/ge_p1p1_to_p3.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p1p1_to_p3.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p1p1_to_p3.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p1p1_to_p3.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p1p1_to_p3.obj `if test -f 'src/ext/ed25519/ref10/ge_p1p1_to_p3.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p1p1_to_p3.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p1p1_to_p3.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.o: src/ext/ed25519/ref10/ge_p2_0.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.o `test -f 'src/ext/ed25519/ref10/ge_p2_0.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p2_0.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p2_0.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.o `test -f 'src/ext/ed25519/ref10/ge_p2_0.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p2_0.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.obj: src/ext/ed25519/ref10/ge_p2_0.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.obj `if test -f 'src/ext/ed25519/ref10/ge_p2_0.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p2_0.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p2_0.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p2_0.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_0.obj `if test -f 'src/ext/ed25519/ref10/ge_p2_0.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p2_0.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p2_0.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.o: src/ext/ed25519/ref10/ge_p2_dbl.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.o `test -f 'src/ext/ed25519/ref10/ge_p2_dbl.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p2_dbl.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p2_dbl.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.o `test -f 'src/ext/ed25519/ref10/ge_p2_dbl.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p2_dbl.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.obj: src/ext/ed25519/ref10/ge_p2_dbl.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.obj `if test -f 'src/ext/ed25519/ref10/ge_p2_dbl.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p2_dbl.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p2_dbl.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p2_dbl.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p2_dbl.obj `if test -f 'src/ext/ed25519/ref10/ge_p2_dbl.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p2_dbl.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p2_dbl.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.o: src/ext/ed25519/ref10/ge_p3_0.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.o `test -f 'src/ext/ed25519/ref10/ge_p3_0.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p3_0.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p3_0.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.o `test -f 'src/ext/ed25519/ref10/ge_p3_0.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p3_0.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.obj: src/ext/ed25519/ref10/ge_p3_0.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.obj `if test -f 'src/ext/ed25519/ref10/ge_p3_0.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p3_0.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p3_0.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p3_0.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_0.obj `if test -f 'src/ext/ed25519/ref10/ge_p3_0.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p3_0.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p3_0.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.o: src/ext/ed25519/ref10/ge_p3_dbl.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.o `test -f 'src/ext/ed25519/ref10/ge_p3_dbl.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p3_dbl.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p3_dbl.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.o `test -f 'src/ext/ed25519/ref10/ge_p3_dbl.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p3_dbl.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.obj: src/ext/ed25519/ref10/ge_p3_dbl.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.obj `if test -f 'src/ext/ed25519/ref10/ge_p3_dbl.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p3_dbl.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p3_dbl.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p3_dbl.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_dbl.obj `if test -f 'src/ext/ed25519/ref10/ge_p3_dbl.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p3_dbl.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p3_dbl.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.o: src/ext/ed25519/ref10/ge_p3_to_cached.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.o `test -f 'src/ext/ed25519/ref10/ge_p3_to_cached.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p3_to_cached.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p3_to_cached.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.o `test -f 'src/ext/ed25519/ref10/ge_p3_to_cached.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p3_to_cached.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.obj: src/ext/ed25519/ref10/ge_p3_to_cached.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.obj `if test -f 'src/ext/ed25519/ref10/ge_p3_to_cached.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p3_to_cached.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p3_to_cached.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p3_to_cached.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_cached.obj `if test -f 'src/ext/ed25519/ref10/ge_p3_to_cached.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p3_to_cached.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p3_to_cached.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.o: src/ext/ed25519/ref10/ge_p3_to_p2.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.o `test -f 'src/ext/ed25519/ref10/ge_p3_to_p2.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p3_to_p2.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p3_to_p2.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.o `test -f 'src/ext/ed25519/ref10/ge_p3_to_p2.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p3_to_p2.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.obj: src/ext/ed25519/ref10/ge_p3_to_p2.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.obj `if test -f 'src/ext/ed25519/ref10/ge_p3_to_p2.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p3_to_p2.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p3_to_p2.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p3_to_p2.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_to_p2.obj `if test -f 'src/ext/ed25519/ref10/ge_p3_to_p2.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p3_to_p2.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p3_to_p2.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.o: src/ext/ed25519/ref10/ge_p3_tobytes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.o `test -f 'src/ext/ed25519/ref10/ge_p3_tobytes.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p3_tobytes.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p3_tobytes.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.o `test -f 'src/ext/ed25519/ref10/ge_p3_tobytes.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_p3_tobytes.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.obj: src/ext/ed25519/ref10/ge_p3_tobytes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.obj `if test -f 'src/ext/ed25519/ref10/ge_p3_tobytes.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p3_tobytes.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p3_tobytes.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_p3_tobytes.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_p3_tobytes.obj `if test -f 'src/ext/ed25519/ref10/ge_p3_tobytes.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_p3_tobytes.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_p3_tobytes.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.o: src/ext/ed25519/ref10/ge_precomp_0.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.o `test -f 'src/ext/ed25519/ref10/ge_precomp_0.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_precomp_0.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_precomp_0.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.o `test -f 'src/ext/ed25519/ref10/ge_precomp_0.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_precomp_0.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.obj: src/ext/ed25519/ref10/ge_precomp_0.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.obj `if test -f 'src/ext/ed25519/ref10/ge_precomp_0.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_precomp_0.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_precomp_0.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_precomp_0.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_precomp_0.obj `if test -f 'src/ext/ed25519/ref10/ge_precomp_0.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_precomp_0.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_precomp_0.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.o: src/ext/ed25519/ref10/ge_scalarmult_base.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.o `test -f 'src/ext/ed25519/ref10/ge_scalarmult_base.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_scalarmult_base.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_scalarmult_base.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.o `test -f 'src/ext/ed25519/ref10/ge_scalarmult_base.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_scalarmult_base.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.obj: src/ext/ed25519/ref10/ge_scalarmult_base.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.obj `if test -f 'src/ext/ed25519/ref10/ge_scalarmult_base.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_scalarmult_base.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_scalarmult_base.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_scalarmult_base.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_scalarmult_base.obj `if test -f 'src/ext/ed25519/ref10/ge_scalarmult_base.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_scalarmult_base.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_scalarmult_base.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.o: src/ext/ed25519/ref10/ge_sub.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.o `test -f 'src/ext/ed25519/ref10/ge_sub.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_sub.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_sub.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.o `test -f 'src/ext/ed25519/ref10/ge_sub.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_sub.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.obj: src/ext/ed25519/ref10/ge_sub.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.obj `if test -f 'src/ext/ed25519/ref10/ge_sub.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_sub.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_sub.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_sub.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_sub.obj `if test -f 'src/ext/ed25519/ref10/ge_sub.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_sub.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_sub.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.o: src/ext/ed25519/ref10/ge_tobytes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.o `test -f 'src/ext/ed25519/ref10/ge_tobytes.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_tobytes.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_tobytes.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.o `test -f 'src/ext/ed25519/ref10/ge_tobytes.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/ge_tobytes.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.obj: src/ext/ed25519/ref10/ge_tobytes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.obj `if test -f 'src/ext/ed25519/ref10/ge_tobytes.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_tobytes.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_tobytes.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/ge_tobytes.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-ge_tobytes.obj `if test -f 'src/ext/ed25519/ref10/ge_tobytes.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/ge_tobytes.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/ge_tobytes.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.o: src/ext/ed25519/ref10/keypair.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.o `test -f 'src/ext/ed25519/ref10/keypair.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/keypair.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/keypair.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.o `test -f 'src/ext/ed25519/ref10/keypair.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/keypair.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.obj: src/ext/ed25519/ref10/keypair.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.obj `if test -f 'src/ext/ed25519/ref10/keypair.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/keypair.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/keypair.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/keypair.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keypair.obj `if test -f 'src/ext/ed25519/ref10/keypair.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/keypair.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/keypair.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-open.o: src/ext/ed25519/ref10/open.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-open.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-open.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-open.o `test -f 'src/ext/ed25519/ref10/open.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/open.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-open.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-open.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/open.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-open.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-open.o `test -f 'src/ext/ed25519/ref10/open.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/open.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-open.obj: src/ext/ed25519/ref10/open.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-open.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-open.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-open.obj `if test -f 'src/ext/ed25519/ref10/open.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/open.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/open.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-open.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-open.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/open.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-open.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-open.obj `if test -f 'src/ext/ed25519/ref10/open.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/open.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/open.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.o: src/ext/ed25519/ref10/sc_muladd.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.o `test -f 'src/ext/ed25519/ref10/sc_muladd.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/sc_muladd.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/sc_muladd.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.o `test -f 'src/ext/ed25519/ref10/sc_muladd.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/sc_muladd.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.obj: src/ext/ed25519/ref10/sc_muladd.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.obj `if test -f 'src/ext/ed25519/ref10/sc_muladd.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/sc_muladd.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/sc_muladd.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/sc_muladd.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_muladd.obj `if test -f 'src/ext/ed25519/ref10/sc_muladd.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/sc_muladd.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/sc_muladd.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.o: src/ext/ed25519/ref10/sc_reduce.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.o `test -f 'src/ext/ed25519/ref10/sc_reduce.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/sc_reduce.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/sc_reduce.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.o `test -f 'src/ext/ed25519/ref10/sc_reduce.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/sc_reduce.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.obj: src/ext/ed25519/ref10/sc_reduce.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.obj `if test -f 'src/ext/ed25519/ref10/sc_reduce.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/sc_reduce.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/sc_reduce.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/sc_reduce.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sc_reduce.obj `if test -f 'src/ext/ed25519/ref10/sc_reduce.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/sc_reduce.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/sc_reduce.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sign.o: src/ext/ed25519/ref10/sign.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sign.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sign.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sign.o `test -f 'src/ext/ed25519/ref10/sign.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/sign.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sign.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sign.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/sign.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sign.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sign.o `test -f 'src/ext/ed25519/ref10/sign.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/sign.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sign.obj: src/ext/ed25519/ref10/sign.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sign.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sign.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sign.obj `if test -f 'src/ext/ed25519/ref10/sign.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/sign.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/sign.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sign.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-sign.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/sign.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sign.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-sign.obj `if test -f 'src/ext/ed25519/ref10/sign.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/sign.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/sign.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.o: src/ext/ed25519/ref10/keyconv.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.o `test -f 'src/ext/ed25519/ref10/keyconv.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/keyconv.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/keyconv.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.o `test -f 'src/ext/ed25519/ref10/keyconv.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/keyconv.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.obj: src/ext/ed25519/ref10/keyconv.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.obj `if test -f 'src/ext/ed25519/ref10/keyconv.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/keyconv.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/keyconv.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/keyconv.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-keyconv.obj `if test -f 'src/ext/ed25519/ref10/keyconv.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/keyconv.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/keyconv.c'; fi` src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.o: src/ext/ed25519/ref10/blinding.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.o -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.o `test -f 'src/ext/ed25519/ref10/blinding.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/blinding.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/blinding.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.o `test -f 'src/ext/ed25519/ref10/blinding.c' || echo '$(srcdir)/'`src/ext/ed25519/ref10/blinding.c src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.obj: src/ext/ed25519/ref10/blinding.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -MT src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.obj -MD -MP -MF src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.Tpo -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.obj `if test -f 'src/ext/ed25519/ref10/blinding.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/blinding.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/blinding.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.Tpo src/ext/ed25519/ref10/$(DEPDIR)/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/ed25519/ref10/blinding.c' object='src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS) $(CFLAGS) -c -o src/ext/ed25519/ref10/src_ext_ed25519_ref10_libed25519_ref10_a-blinding.obj `if test -f 'src/ext/ed25519/ref10/blinding.c'; then $(CYGPATH_W) 'src/ext/ed25519/ref10/blinding.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/ed25519/ref10/blinding.c'; fi` src/or/src_or_libtor_testing_a-addressmap.o: src/or/addressmap.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-addressmap.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-addressmap.Tpo -c -o src/or/src_or_libtor_testing_a-addressmap.o `test -f 'src/or/addressmap.c' || echo '$(srcdir)/'`src/or/addressmap.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-addressmap.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-addressmap.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/addressmap.c' object='src/or/src_or_libtor_testing_a-addressmap.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-addressmap.o `test -f 'src/or/addressmap.c' || echo '$(srcdir)/'`src/or/addressmap.c src/or/src_or_libtor_testing_a-addressmap.obj: src/or/addressmap.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-addressmap.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-addressmap.Tpo -c -o src/or/src_or_libtor_testing_a-addressmap.obj `if test -f 'src/or/addressmap.c'; then $(CYGPATH_W) 'src/or/addressmap.c'; else $(CYGPATH_W) '$(srcdir)/src/or/addressmap.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-addressmap.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-addressmap.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/addressmap.c' object='src/or/src_or_libtor_testing_a-addressmap.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-addressmap.obj `if test -f 'src/or/addressmap.c'; then $(CYGPATH_W) 'src/or/addressmap.c'; else $(CYGPATH_W) '$(srcdir)/src/or/addressmap.c'; fi` src/or/src_or_libtor_testing_a-buffers.o: src/or/buffers.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-buffers.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-buffers.Tpo -c -o src/or/src_or_libtor_testing_a-buffers.o `test -f 'src/or/buffers.c' || echo '$(srcdir)/'`src/or/buffers.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-buffers.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-buffers.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/buffers.c' object='src/or/src_or_libtor_testing_a-buffers.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-buffers.o `test -f 'src/or/buffers.c' || echo '$(srcdir)/'`src/or/buffers.c src/or/src_or_libtor_testing_a-buffers.obj: src/or/buffers.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-buffers.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-buffers.Tpo -c -o src/or/src_or_libtor_testing_a-buffers.obj `if test -f 'src/or/buffers.c'; then $(CYGPATH_W) 'src/or/buffers.c'; else $(CYGPATH_W) '$(srcdir)/src/or/buffers.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-buffers.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-buffers.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/buffers.c' object='src/or/src_or_libtor_testing_a-buffers.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-buffers.obj `if test -f 'src/or/buffers.c'; then $(CYGPATH_W) 'src/or/buffers.c'; else $(CYGPATH_W) '$(srcdir)/src/or/buffers.c'; fi` src/or/src_or_libtor_testing_a-channel.o: src/or/channel.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-channel.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-channel.Tpo -c -o src/or/src_or_libtor_testing_a-channel.o `test -f 'src/or/channel.c' || echo '$(srcdir)/'`src/or/channel.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-channel.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-channel.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/channel.c' object='src/or/src_or_libtor_testing_a-channel.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-channel.o `test -f 'src/or/channel.c' || echo '$(srcdir)/'`src/or/channel.c src/or/src_or_libtor_testing_a-channel.obj: src/or/channel.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-channel.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-channel.Tpo -c -o src/or/src_or_libtor_testing_a-channel.obj `if test -f 'src/or/channel.c'; then $(CYGPATH_W) 'src/or/channel.c'; else $(CYGPATH_W) '$(srcdir)/src/or/channel.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-channel.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-channel.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/channel.c' object='src/or/src_or_libtor_testing_a-channel.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-channel.obj `if test -f 'src/or/channel.c'; then $(CYGPATH_W) 'src/or/channel.c'; else $(CYGPATH_W) '$(srcdir)/src/or/channel.c'; fi` src/or/src_or_libtor_testing_a-channeltls.o: src/or/channeltls.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-channeltls.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-channeltls.Tpo -c -o src/or/src_or_libtor_testing_a-channeltls.o `test -f 'src/or/channeltls.c' || echo '$(srcdir)/'`src/or/channeltls.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-channeltls.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-channeltls.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/channeltls.c' object='src/or/src_or_libtor_testing_a-channeltls.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-channeltls.o `test -f 'src/or/channeltls.c' || echo '$(srcdir)/'`src/or/channeltls.c src/or/src_or_libtor_testing_a-channeltls.obj: src/or/channeltls.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-channeltls.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-channeltls.Tpo -c -o src/or/src_or_libtor_testing_a-channeltls.obj `if test -f 'src/or/channeltls.c'; then $(CYGPATH_W) 'src/or/channeltls.c'; else $(CYGPATH_W) '$(srcdir)/src/or/channeltls.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-channeltls.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-channeltls.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/channeltls.c' object='src/or/src_or_libtor_testing_a-channeltls.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-channeltls.obj `if test -f 'src/or/channeltls.c'; then $(CYGPATH_W) 'src/or/channeltls.c'; else $(CYGPATH_W) '$(srcdir)/src/or/channeltls.c'; fi` src/or/src_or_libtor_testing_a-circpathbias.o: src/or/circpathbias.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-circpathbias.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-circpathbias.Tpo -c -o src/or/src_or_libtor_testing_a-circpathbias.o `test -f 'src/or/circpathbias.c' || echo '$(srcdir)/'`src/or/circpathbias.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-circpathbias.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-circpathbias.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/circpathbias.c' object='src/or/src_or_libtor_testing_a-circpathbias.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-circpathbias.o `test -f 'src/or/circpathbias.c' || echo '$(srcdir)/'`src/or/circpathbias.c src/or/src_or_libtor_testing_a-circpathbias.obj: src/or/circpathbias.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-circpathbias.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-circpathbias.Tpo -c -o src/or/src_or_libtor_testing_a-circpathbias.obj `if test -f 'src/or/circpathbias.c'; then $(CYGPATH_W) 'src/or/circpathbias.c'; else $(CYGPATH_W) '$(srcdir)/src/or/circpathbias.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-circpathbias.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-circpathbias.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/circpathbias.c' object='src/or/src_or_libtor_testing_a-circpathbias.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-circpathbias.obj `if test -f 'src/or/circpathbias.c'; then $(CYGPATH_W) 'src/or/circpathbias.c'; else $(CYGPATH_W) '$(srcdir)/src/or/circpathbias.c'; fi` src/or/src_or_libtor_testing_a-circuitbuild.o: src/or/circuitbuild.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-circuitbuild.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitbuild.Tpo -c -o src/or/src_or_libtor_testing_a-circuitbuild.o `test -f 'src/or/circuitbuild.c' || echo '$(srcdir)/'`src/or/circuitbuild.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitbuild.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitbuild.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/circuitbuild.c' object='src/or/src_or_libtor_testing_a-circuitbuild.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-circuitbuild.o `test -f 'src/or/circuitbuild.c' || echo '$(srcdir)/'`src/or/circuitbuild.c src/or/src_or_libtor_testing_a-circuitbuild.obj: src/or/circuitbuild.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-circuitbuild.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitbuild.Tpo -c -o src/or/src_or_libtor_testing_a-circuitbuild.obj `if test -f 'src/or/circuitbuild.c'; then $(CYGPATH_W) 'src/or/circuitbuild.c'; else $(CYGPATH_W) '$(srcdir)/src/or/circuitbuild.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitbuild.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitbuild.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/circuitbuild.c' object='src/or/src_or_libtor_testing_a-circuitbuild.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-circuitbuild.obj `if test -f 'src/or/circuitbuild.c'; then $(CYGPATH_W) 'src/or/circuitbuild.c'; else $(CYGPATH_W) '$(srcdir)/src/or/circuitbuild.c'; fi` src/or/src_or_libtor_testing_a-circuitlist.o: src/or/circuitlist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-circuitlist.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitlist.Tpo -c -o src/or/src_or_libtor_testing_a-circuitlist.o `test -f 'src/or/circuitlist.c' || echo '$(srcdir)/'`src/or/circuitlist.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitlist.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitlist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/circuitlist.c' object='src/or/src_or_libtor_testing_a-circuitlist.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-circuitlist.o `test -f 'src/or/circuitlist.c' || echo '$(srcdir)/'`src/or/circuitlist.c src/or/src_or_libtor_testing_a-circuitlist.obj: src/or/circuitlist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-circuitlist.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitlist.Tpo -c -o src/or/src_or_libtor_testing_a-circuitlist.obj `if test -f 'src/or/circuitlist.c'; then $(CYGPATH_W) 'src/or/circuitlist.c'; else $(CYGPATH_W) '$(srcdir)/src/or/circuitlist.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitlist.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitlist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/circuitlist.c' object='src/or/src_or_libtor_testing_a-circuitlist.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-circuitlist.obj `if test -f 'src/or/circuitlist.c'; then $(CYGPATH_W) 'src/or/circuitlist.c'; else $(CYGPATH_W) '$(srcdir)/src/or/circuitlist.c'; fi` src/or/src_or_libtor_testing_a-circuitmux.o: src/or/circuitmux.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-circuitmux.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitmux.Tpo -c -o src/or/src_or_libtor_testing_a-circuitmux.o `test -f 'src/or/circuitmux.c' || echo '$(srcdir)/'`src/or/circuitmux.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitmux.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitmux.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/circuitmux.c' object='src/or/src_or_libtor_testing_a-circuitmux.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-circuitmux.o `test -f 'src/or/circuitmux.c' || echo '$(srcdir)/'`src/or/circuitmux.c src/or/src_or_libtor_testing_a-circuitmux.obj: src/or/circuitmux.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-circuitmux.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitmux.Tpo -c -o src/or/src_or_libtor_testing_a-circuitmux.obj `if test -f 'src/or/circuitmux.c'; then $(CYGPATH_W) 'src/or/circuitmux.c'; else $(CYGPATH_W) '$(srcdir)/src/or/circuitmux.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitmux.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitmux.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/circuitmux.c' object='src/or/src_or_libtor_testing_a-circuitmux.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-circuitmux.obj `if test -f 'src/or/circuitmux.c'; then $(CYGPATH_W) 'src/or/circuitmux.c'; else $(CYGPATH_W) '$(srcdir)/src/or/circuitmux.c'; fi` src/or/src_or_libtor_testing_a-circuitmux_ewma.o: src/or/circuitmux_ewma.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-circuitmux_ewma.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitmux_ewma.Tpo -c -o src/or/src_or_libtor_testing_a-circuitmux_ewma.o `test -f 'src/or/circuitmux_ewma.c' || echo '$(srcdir)/'`src/or/circuitmux_ewma.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitmux_ewma.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitmux_ewma.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/circuitmux_ewma.c' object='src/or/src_or_libtor_testing_a-circuitmux_ewma.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-circuitmux_ewma.o `test -f 'src/or/circuitmux_ewma.c' || echo '$(srcdir)/'`src/or/circuitmux_ewma.c src/or/src_or_libtor_testing_a-circuitmux_ewma.obj: src/or/circuitmux_ewma.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-circuitmux_ewma.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitmux_ewma.Tpo -c -o src/or/src_or_libtor_testing_a-circuitmux_ewma.obj `if test -f 'src/or/circuitmux_ewma.c'; then $(CYGPATH_W) 'src/or/circuitmux_ewma.c'; else $(CYGPATH_W) '$(srcdir)/src/or/circuitmux_ewma.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitmux_ewma.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitmux_ewma.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/circuitmux_ewma.c' object='src/or/src_or_libtor_testing_a-circuitmux_ewma.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-circuitmux_ewma.obj `if test -f 'src/or/circuitmux_ewma.c'; then $(CYGPATH_W) 'src/or/circuitmux_ewma.c'; else $(CYGPATH_W) '$(srcdir)/src/or/circuitmux_ewma.c'; fi` src/or/src_or_libtor_testing_a-circuitstats.o: src/or/circuitstats.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-circuitstats.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitstats.Tpo -c -o src/or/src_or_libtor_testing_a-circuitstats.o `test -f 'src/or/circuitstats.c' || echo '$(srcdir)/'`src/or/circuitstats.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitstats.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitstats.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/circuitstats.c' object='src/or/src_or_libtor_testing_a-circuitstats.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-circuitstats.o `test -f 'src/or/circuitstats.c' || echo '$(srcdir)/'`src/or/circuitstats.c src/or/src_or_libtor_testing_a-circuitstats.obj: src/or/circuitstats.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-circuitstats.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitstats.Tpo -c -o src/or/src_or_libtor_testing_a-circuitstats.obj `if test -f 'src/or/circuitstats.c'; then $(CYGPATH_W) 'src/or/circuitstats.c'; else $(CYGPATH_W) '$(srcdir)/src/or/circuitstats.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitstats.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-circuitstats.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/circuitstats.c' object='src/or/src_or_libtor_testing_a-circuitstats.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-circuitstats.obj `if test -f 'src/or/circuitstats.c'; then $(CYGPATH_W) 'src/or/circuitstats.c'; else $(CYGPATH_W) '$(srcdir)/src/or/circuitstats.c'; fi` src/or/src_or_libtor_testing_a-circuituse.o: src/or/circuituse.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-circuituse.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-circuituse.Tpo -c -o src/or/src_or_libtor_testing_a-circuituse.o `test -f 'src/or/circuituse.c' || echo '$(srcdir)/'`src/or/circuituse.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-circuituse.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-circuituse.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/circuituse.c' object='src/or/src_or_libtor_testing_a-circuituse.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-circuituse.o `test -f 'src/or/circuituse.c' || echo '$(srcdir)/'`src/or/circuituse.c src/or/src_or_libtor_testing_a-circuituse.obj: src/or/circuituse.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-circuituse.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-circuituse.Tpo -c -o src/or/src_or_libtor_testing_a-circuituse.obj `if test -f 'src/or/circuituse.c'; then $(CYGPATH_W) 'src/or/circuituse.c'; else $(CYGPATH_W) '$(srcdir)/src/or/circuituse.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-circuituse.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-circuituse.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/circuituse.c' object='src/or/src_or_libtor_testing_a-circuituse.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-circuituse.obj `if test -f 'src/or/circuituse.c'; then $(CYGPATH_W) 'src/or/circuituse.c'; else $(CYGPATH_W) '$(srcdir)/src/or/circuituse.c'; fi` src/or/src_or_libtor_testing_a-command.o: src/or/command.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-command.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-command.Tpo -c -o src/or/src_or_libtor_testing_a-command.o `test -f 'src/or/command.c' || echo '$(srcdir)/'`src/or/command.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-command.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-command.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/command.c' object='src/or/src_or_libtor_testing_a-command.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-command.o `test -f 'src/or/command.c' || echo '$(srcdir)/'`src/or/command.c src/or/src_or_libtor_testing_a-command.obj: src/or/command.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-command.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-command.Tpo -c -o src/or/src_or_libtor_testing_a-command.obj `if test -f 'src/or/command.c'; then $(CYGPATH_W) 'src/or/command.c'; else $(CYGPATH_W) '$(srcdir)/src/or/command.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-command.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-command.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/command.c' object='src/or/src_or_libtor_testing_a-command.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-command.obj `if test -f 'src/or/command.c'; then $(CYGPATH_W) 'src/or/command.c'; else $(CYGPATH_W) '$(srcdir)/src/or/command.c'; fi` src/or/src_or_libtor_testing_a-config.o: src/or/config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-config.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-config.Tpo -c -o src/or/src_or_libtor_testing_a-config.o `test -f 'src/or/config.c' || echo '$(srcdir)/'`src/or/config.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-config.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/config.c' object='src/or/src_or_libtor_testing_a-config.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-config.o `test -f 'src/or/config.c' || echo '$(srcdir)/'`src/or/config.c src/or/src_or_libtor_testing_a-config.obj: src/or/config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-config.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-config.Tpo -c -o src/or/src_or_libtor_testing_a-config.obj `if test -f 'src/or/config.c'; then $(CYGPATH_W) 'src/or/config.c'; else $(CYGPATH_W) '$(srcdir)/src/or/config.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-config.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/config.c' object='src/or/src_or_libtor_testing_a-config.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-config.obj `if test -f 'src/or/config.c'; then $(CYGPATH_W) 'src/or/config.c'; else $(CYGPATH_W) '$(srcdir)/src/or/config.c'; fi` src/or/src_or_libtor_testing_a-confparse.o: src/or/confparse.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-confparse.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-confparse.Tpo -c -o src/or/src_or_libtor_testing_a-confparse.o `test -f 'src/or/confparse.c' || echo '$(srcdir)/'`src/or/confparse.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-confparse.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-confparse.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/confparse.c' object='src/or/src_or_libtor_testing_a-confparse.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-confparse.o `test -f 'src/or/confparse.c' || echo '$(srcdir)/'`src/or/confparse.c src/or/src_or_libtor_testing_a-confparse.obj: src/or/confparse.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-confparse.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-confparse.Tpo -c -o src/or/src_or_libtor_testing_a-confparse.obj `if test -f 'src/or/confparse.c'; then $(CYGPATH_W) 'src/or/confparse.c'; else $(CYGPATH_W) '$(srcdir)/src/or/confparse.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-confparse.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-confparse.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/confparse.c' object='src/or/src_or_libtor_testing_a-confparse.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-confparse.obj `if test -f 'src/or/confparse.c'; then $(CYGPATH_W) 'src/or/confparse.c'; else $(CYGPATH_W) '$(srcdir)/src/or/confparse.c'; fi` src/or/src_or_libtor_testing_a-connection.o: src/or/connection.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-connection.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-connection.Tpo -c -o src/or/src_or_libtor_testing_a-connection.o `test -f 'src/or/connection.c' || echo '$(srcdir)/'`src/or/connection.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-connection.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-connection.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/connection.c' object='src/or/src_or_libtor_testing_a-connection.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-connection.o `test -f 'src/or/connection.c' || echo '$(srcdir)/'`src/or/connection.c src/or/src_or_libtor_testing_a-connection.obj: src/or/connection.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-connection.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-connection.Tpo -c -o src/or/src_or_libtor_testing_a-connection.obj `if test -f 'src/or/connection.c'; then $(CYGPATH_W) 'src/or/connection.c'; else $(CYGPATH_W) '$(srcdir)/src/or/connection.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-connection.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-connection.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/connection.c' object='src/or/src_or_libtor_testing_a-connection.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-connection.obj `if test -f 'src/or/connection.c'; then $(CYGPATH_W) 'src/or/connection.c'; else $(CYGPATH_W) '$(srcdir)/src/or/connection.c'; fi` src/or/src_or_libtor_testing_a-connection_edge.o: src/or/connection_edge.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-connection_edge.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-connection_edge.Tpo -c -o src/or/src_or_libtor_testing_a-connection_edge.o `test -f 'src/or/connection_edge.c' || echo '$(srcdir)/'`src/or/connection_edge.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-connection_edge.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-connection_edge.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/connection_edge.c' object='src/or/src_or_libtor_testing_a-connection_edge.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-connection_edge.o `test -f 'src/or/connection_edge.c' || echo '$(srcdir)/'`src/or/connection_edge.c src/or/src_or_libtor_testing_a-connection_edge.obj: src/or/connection_edge.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-connection_edge.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-connection_edge.Tpo -c -o src/or/src_or_libtor_testing_a-connection_edge.obj `if test -f 'src/or/connection_edge.c'; then $(CYGPATH_W) 'src/or/connection_edge.c'; else $(CYGPATH_W) '$(srcdir)/src/or/connection_edge.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-connection_edge.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-connection_edge.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/connection_edge.c' object='src/or/src_or_libtor_testing_a-connection_edge.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-connection_edge.obj `if test -f 'src/or/connection_edge.c'; then $(CYGPATH_W) 'src/or/connection_edge.c'; else $(CYGPATH_W) '$(srcdir)/src/or/connection_edge.c'; fi` src/or/src_or_libtor_testing_a-connection_or.o: src/or/connection_or.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-connection_or.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-connection_or.Tpo -c -o src/or/src_or_libtor_testing_a-connection_or.o `test -f 'src/or/connection_or.c' || echo '$(srcdir)/'`src/or/connection_or.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-connection_or.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-connection_or.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/connection_or.c' object='src/or/src_or_libtor_testing_a-connection_or.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-connection_or.o `test -f 'src/or/connection_or.c' || echo '$(srcdir)/'`src/or/connection_or.c src/or/src_or_libtor_testing_a-connection_or.obj: src/or/connection_or.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-connection_or.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-connection_or.Tpo -c -o src/or/src_or_libtor_testing_a-connection_or.obj `if test -f 'src/or/connection_or.c'; then $(CYGPATH_W) 'src/or/connection_or.c'; else $(CYGPATH_W) '$(srcdir)/src/or/connection_or.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-connection_or.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-connection_or.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/connection_or.c' object='src/or/src_or_libtor_testing_a-connection_or.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-connection_or.obj `if test -f 'src/or/connection_or.c'; then $(CYGPATH_W) 'src/or/connection_or.c'; else $(CYGPATH_W) '$(srcdir)/src/or/connection_or.c'; fi` src/or/src_or_libtor_testing_a-control.o: src/or/control.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-control.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-control.Tpo -c -o src/or/src_or_libtor_testing_a-control.o `test -f 'src/or/control.c' || echo '$(srcdir)/'`src/or/control.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-control.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-control.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/control.c' object='src/or/src_or_libtor_testing_a-control.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-control.o `test -f 'src/or/control.c' || echo '$(srcdir)/'`src/or/control.c src/or/src_or_libtor_testing_a-control.obj: src/or/control.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-control.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-control.Tpo -c -o src/or/src_or_libtor_testing_a-control.obj `if test -f 'src/or/control.c'; then $(CYGPATH_W) 'src/or/control.c'; else $(CYGPATH_W) '$(srcdir)/src/or/control.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-control.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-control.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/control.c' object='src/or/src_or_libtor_testing_a-control.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-control.obj `if test -f 'src/or/control.c'; then $(CYGPATH_W) 'src/or/control.c'; else $(CYGPATH_W) '$(srcdir)/src/or/control.c'; fi` src/or/src_or_libtor_testing_a-cpuworker.o: src/or/cpuworker.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-cpuworker.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-cpuworker.Tpo -c -o src/or/src_or_libtor_testing_a-cpuworker.o `test -f 'src/or/cpuworker.c' || echo '$(srcdir)/'`src/or/cpuworker.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-cpuworker.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-cpuworker.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/cpuworker.c' object='src/or/src_or_libtor_testing_a-cpuworker.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-cpuworker.o `test -f 'src/or/cpuworker.c' || echo '$(srcdir)/'`src/or/cpuworker.c src/or/src_or_libtor_testing_a-cpuworker.obj: src/or/cpuworker.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-cpuworker.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-cpuworker.Tpo -c -o src/or/src_or_libtor_testing_a-cpuworker.obj `if test -f 'src/or/cpuworker.c'; then $(CYGPATH_W) 'src/or/cpuworker.c'; else $(CYGPATH_W) '$(srcdir)/src/or/cpuworker.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-cpuworker.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-cpuworker.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/cpuworker.c' object='src/or/src_or_libtor_testing_a-cpuworker.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-cpuworker.obj `if test -f 'src/or/cpuworker.c'; then $(CYGPATH_W) 'src/or/cpuworker.c'; else $(CYGPATH_W) '$(srcdir)/src/or/cpuworker.c'; fi` src/or/src_or_libtor_testing_a-dircollate.o: src/or/dircollate.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-dircollate.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-dircollate.Tpo -c -o src/or/src_or_libtor_testing_a-dircollate.o `test -f 'src/or/dircollate.c' || echo '$(srcdir)/'`src/or/dircollate.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-dircollate.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-dircollate.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/dircollate.c' object='src/or/src_or_libtor_testing_a-dircollate.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-dircollate.o `test -f 'src/or/dircollate.c' || echo '$(srcdir)/'`src/or/dircollate.c src/or/src_or_libtor_testing_a-dircollate.obj: src/or/dircollate.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-dircollate.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-dircollate.Tpo -c -o src/or/src_or_libtor_testing_a-dircollate.obj `if test -f 'src/or/dircollate.c'; then $(CYGPATH_W) 'src/or/dircollate.c'; else $(CYGPATH_W) '$(srcdir)/src/or/dircollate.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-dircollate.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-dircollate.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/dircollate.c' object='src/or/src_or_libtor_testing_a-dircollate.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-dircollate.obj `if test -f 'src/or/dircollate.c'; then $(CYGPATH_W) 'src/or/dircollate.c'; else $(CYGPATH_W) '$(srcdir)/src/or/dircollate.c'; fi` src/or/src_or_libtor_testing_a-directory.o: src/or/directory.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-directory.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-directory.Tpo -c -o src/or/src_or_libtor_testing_a-directory.o `test -f 'src/or/directory.c' || echo '$(srcdir)/'`src/or/directory.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-directory.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-directory.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/directory.c' object='src/or/src_or_libtor_testing_a-directory.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-directory.o `test -f 'src/or/directory.c' || echo '$(srcdir)/'`src/or/directory.c src/or/src_or_libtor_testing_a-directory.obj: src/or/directory.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-directory.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-directory.Tpo -c -o src/or/src_or_libtor_testing_a-directory.obj `if test -f 'src/or/directory.c'; then $(CYGPATH_W) 'src/or/directory.c'; else $(CYGPATH_W) '$(srcdir)/src/or/directory.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-directory.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-directory.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/directory.c' object='src/or/src_or_libtor_testing_a-directory.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-directory.obj `if test -f 'src/or/directory.c'; then $(CYGPATH_W) 'src/or/directory.c'; else $(CYGPATH_W) '$(srcdir)/src/or/directory.c'; fi` src/or/src_or_libtor_testing_a-dirserv.o: src/or/dirserv.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-dirserv.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-dirserv.Tpo -c -o src/or/src_or_libtor_testing_a-dirserv.o `test -f 'src/or/dirserv.c' || echo '$(srcdir)/'`src/or/dirserv.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-dirserv.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-dirserv.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/dirserv.c' object='src/or/src_or_libtor_testing_a-dirserv.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-dirserv.o `test -f 'src/or/dirserv.c' || echo '$(srcdir)/'`src/or/dirserv.c src/or/src_or_libtor_testing_a-dirserv.obj: src/or/dirserv.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-dirserv.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-dirserv.Tpo -c -o src/or/src_or_libtor_testing_a-dirserv.obj `if test -f 'src/or/dirserv.c'; then $(CYGPATH_W) 'src/or/dirserv.c'; else $(CYGPATH_W) '$(srcdir)/src/or/dirserv.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-dirserv.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-dirserv.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/dirserv.c' object='src/or/src_or_libtor_testing_a-dirserv.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-dirserv.obj `if test -f 'src/or/dirserv.c'; then $(CYGPATH_W) 'src/or/dirserv.c'; else $(CYGPATH_W) '$(srcdir)/src/or/dirserv.c'; fi` src/or/src_or_libtor_testing_a-dirvote.o: src/or/dirvote.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-dirvote.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-dirvote.Tpo -c -o src/or/src_or_libtor_testing_a-dirvote.o `test -f 'src/or/dirvote.c' || echo '$(srcdir)/'`src/or/dirvote.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-dirvote.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-dirvote.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/dirvote.c' object='src/or/src_or_libtor_testing_a-dirvote.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-dirvote.o `test -f 'src/or/dirvote.c' || echo '$(srcdir)/'`src/or/dirvote.c src/or/src_or_libtor_testing_a-dirvote.obj: src/or/dirvote.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-dirvote.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-dirvote.Tpo -c -o src/or/src_or_libtor_testing_a-dirvote.obj `if test -f 'src/or/dirvote.c'; then $(CYGPATH_W) 'src/or/dirvote.c'; else $(CYGPATH_W) '$(srcdir)/src/or/dirvote.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-dirvote.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-dirvote.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/dirvote.c' object='src/or/src_or_libtor_testing_a-dirvote.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-dirvote.obj `if test -f 'src/or/dirvote.c'; then $(CYGPATH_W) 'src/or/dirvote.c'; else $(CYGPATH_W) '$(srcdir)/src/or/dirvote.c'; fi` src/or/src_or_libtor_testing_a-dns.o: src/or/dns.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-dns.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-dns.Tpo -c -o src/or/src_or_libtor_testing_a-dns.o `test -f 'src/or/dns.c' || echo '$(srcdir)/'`src/or/dns.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-dns.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-dns.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/dns.c' object='src/or/src_or_libtor_testing_a-dns.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-dns.o `test -f 'src/or/dns.c' || echo '$(srcdir)/'`src/or/dns.c src/or/src_or_libtor_testing_a-dns.obj: src/or/dns.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-dns.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-dns.Tpo -c -o src/or/src_or_libtor_testing_a-dns.obj `if test -f 'src/or/dns.c'; then $(CYGPATH_W) 'src/or/dns.c'; else $(CYGPATH_W) '$(srcdir)/src/or/dns.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-dns.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-dns.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/dns.c' object='src/or/src_or_libtor_testing_a-dns.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-dns.obj `if test -f 'src/or/dns.c'; then $(CYGPATH_W) 'src/or/dns.c'; else $(CYGPATH_W) '$(srcdir)/src/or/dns.c'; fi` src/or/src_or_libtor_testing_a-dnsserv.o: src/or/dnsserv.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-dnsserv.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-dnsserv.Tpo -c -o src/or/src_or_libtor_testing_a-dnsserv.o `test -f 'src/or/dnsserv.c' || echo '$(srcdir)/'`src/or/dnsserv.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-dnsserv.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-dnsserv.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/dnsserv.c' object='src/or/src_or_libtor_testing_a-dnsserv.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-dnsserv.o `test -f 'src/or/dnsserv.c' || echo '$(srcdir)/'`src/or/dnsserv.c src/or/src_or_libtor_testing_a-dnsserv.obj: src/or/dnsserv.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-dnsserv.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-dnsserv.Tpo -c -o src/or/src_or_libtor_testing_a-dnsserv.obj `if test -f 'src/or/dnsserv.c'; then $(CYGPATH_W) 'src/or/dnsserv.c'; else $(CYGPATH_W) '$(srcdir)/src/or/dnsserv.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-dnsserv.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-dnsserv.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/dnsserv.c' object='src/or/src_or_libtor_testing_a-dnsserv.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-dnsserv.obj `if test -f 'src/or/dnsserv.c'; then $(CYGPATH_W) 'src/or/dnsserv.c'; else $(CYGPATH_W) '$(srcdir)/src/or/dnsserv.c'; fi` src/or/src_or_libtor_testing_a-fp_pair.o: src/or/fp_pair.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-fp_pair.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-fp_pair.Tpo -c -o src/or/src_or_libtor_testing_a-fp_pair.o `test -f 'src/or/fp_pair.c' || echo '$(srcdir)/'`src/or/fp_pair.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-fp_pair.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-fp_pair.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/fp_pair.c' object='src/or/src_or_libtor_testing_a-fp_pair.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-fp_pair.o `test -f 'src/or/fp_pair.c' || echo '$(srcdir)/'`src/or/fp_pair.c src/or/src_or_libtor_testing_a-fp_pair.obj: src/or/fp_pair.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-fp_pair.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-fp_pair.Tpo -c -o src/or/src_or_libtor_testing_a-fp_pair.obj `if test -f 'src/or/fp_pair.c'; then $(CYGPATH_W) 'src/or/fp_pair.c'; else $(CYGPATH_W) '$(srcdir)/src/or/fp_pair.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-fp_pair.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-fp_pair.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/fp_pair.c' object='src/or/src_or_libtor_testing_a-fp_pair.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-fp_pair.obj `if test -f 'src/or/fp_pair.c'; then $(CYGPATH_W) 'src/or/fp_pair.c'; else $(CYGPATH_W) '$(srcdir)/src/or/fp_pair.c'; fi` src/or/src_or_libtor_testing_a-geoip.o: src/or/geoip.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-geoip.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-geoip.Tpo -c -o src/or/src_or_libtor_testing_a-geoip.o `test -f 'src/or/geoip.c' || echo '$(srcdir)/'`src/or/geoip.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-geoip.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-geoip.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/geoip.c' object='src/or/src_or_libtor_testing_a-geoip.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-geoip.o `test -f 'src/or/geoip.c' || echo '$(srcdir)/'`src/or/geoip.c src/or/src_or_libtor_testing_a-geoip.obj: src/or/geoip.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-geoip.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-geoip.Tpo -c -o src/or/src_or_libtor_testing_a-geoip.obj `if test -f 'src/or/geoip.c'; then $(CYGPATH_W) 'src/or/geoip.c'; else $(CYGPATH_W) '$(srcdir)/src/or/geoip.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-geoip.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-geoip.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/geoip.c' object='src/or/src_or_libtor_testing_a-geoip.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-geoip.obj `if test -f 'src/or/geoip.c'; then $(CYGPATH_W) 'src/or/geoip.c'; else $(CYGPATH_W) '$(srcdir)/src/or/geoip.c'; fi` src/or/src_or_libtor_testing_a-entrynodes.o: src/or/entrynodes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-entrynodes.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-entrynodes.Tpo -c -o src/or/src_or_libtor_testing_a-entrynodes.o `test -f 'src/or/entrynodes.c' || echo '$(srcdir)/'`src/or/entrynodes.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-entrynodes.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-entrynodes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/entrynodes.c' object='src/or/src_or_libtor_testing_a-entrynodes.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-entrynodes.o `test -f 'src/or/entrynodes.c' || echo '$(srcdir)/'`src/or/entrynodes.c src/or/src_or_libtor_testing_a-entrynodes.obj: src/or/entrynodes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-entrynodes.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-entrynodes.Tpo -c -o src/or/src_or_libtor_testing_a-entrynodes.obj `if test -f 'src/or/entrynodes.c'; then $(CYGPATH_W) 'src/or/entrynodes.c'; else $(CYGPATH_W) '$(srcdir)/src/or/entrynodes.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-entrynodes.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-entrynodes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/entrynodes.c' object='src/or/src_or_libtor_testing_a-entrynodes.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-entrynodes.obj `if test -f 'src/or/entrynodes.c'; then $(CYGPATH_W) 'src/or/entrynodes.c'; else $(CYGPATH_W) '$(srcdir)/src/or/entrynodes.c'; fi` src/or/src_or_libtor_testing_a-ext_orport.o: src/or/ext_orport.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-ext_orport.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-ext_orport.Tpo -c -o src/or/src_or_libtor_testing_a-ext_orport.o `test -f 'src/or/ext_orport.c' || echo '$(srcdir)/'`src/or/ext_orport.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-ext_orport.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-ext_orport.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/ext_orport.c' object='src/or/src_or_libtor_testing_a-ext_orport.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-ext_orport.o `test -f 'src/or/ext_orport.c' || echo '$(srcdir)/'`src/or/ext_orport.c src/or/src_or_libtor_testing_a-ext_orport.obj: src/or/ext_orport.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-ext_orport.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-ext_orport.Tpo -c -o src/or/src_or_libtor_testing_a-ext_orport.obj `if test -f 'src/or/ext_orport.c'; then $(CYGPATH_W) 'src/or/ext_orport.c'; else $(CYGPATH_W) '$(srcdir)/src/or/ext_orport.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-ext_orport.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-ext_orport.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/ext_orport.c' object='src/or/src_or_libtor_testing_a-ext_orport.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-ext_orport.obj `if test -f 'src/or/ext_orport.c'; then $(CYGPATH_W) 'src/or/ext_orport.c'; else $(CYGPATH_W) '$(srcdir)/src/or/ext_orport.c'; fi` src/or/src_or_libtor_testing_a-hibernate.o: src/or/hibernate.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-hibernate.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-hibernate.Tpo -c -o src/or/src_or_libtor_testing_a-hibernate.o `test -f 'src/or/hibernate.c' || echo '$(srcdir)/'`src/or/hibernate.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-hibernate.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-hibernate.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/hibernate.c' object='src/or/src_or_libtor_testing_a-hibernate.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-hibernate.o `test -f 'src/or/hibernate.c' || echo '$(srcdir)/'`src/or/hibernate.c src/or/src_or_libtor_testing_a-hibernate.obj: src/or/hibernate.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-hibernate.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-hibernate.Tpo -c -o src/or/src_or_libtor_testing_a-hibernate.obj `if test -f 'src/or/hibernate.c'; then $(CYGPATH_W) 'src/or/hibernate.c'; else $(CYGPATH_W) '$(srcdir)/src/or/hibernate.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-hibernate.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-hibernate.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/hibernate.c' object='src/or/src_or_libtor_testing_a-hibernate.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-hibernate.obj `if test -f 'src/or/hibernate.c'; then $(CYGPATH_W) 'src/or/hibernate.c'; else $(CYGPATH_W) '$(srcdir)/src/or/hibernate.c'; fi` src/or/src_or_libtor_testing_a-keypin.o: src/or/keypin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-keypin.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-keypin.Tpo -c -o src/or/src_or_libtor_testing_a-keypin.o `test -f 'src/or/keypin.c' || echo '$(srcdir)/'`src/or/keypin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-keypin.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-keypin.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/keypin.c' object='src/or/src_or_libtor_testing_a-keypin.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-keypin.o `test -f 'src/or/keypin.c' || echo '$(srcdir)/'`src/or/keypin.c src/or/src_or_libtor_testing_a-keypin.obj: src/or/keypin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-keypin.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-keypin.Tpo -c -o src/or/src_or_libtor_testing_a-keypin.obj `if test -f 'src/or/keypin.c'; then $(CYGPATH_W) 'src/or/keypin.c'; else $(CYGPATH_W) '$(srcdir)/src/or/keypin.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-keypin.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-keypin.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/keypin.c' object='src/or/src_or_libtor_testing_a-keypin.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-keypin.obj `if test -f 'src/or/keypin.c'; then $(CYGPATH_W) 'src/or/keypin.c'; else $(CYGPATH_W) '$(srcdir)/src/or/keypin.c'; fi` src/or/src_or_libtor_testing_a-main.o: src/or/main.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-main.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-main.Tpo -c -o src/or/src_or_libtor_testing_a-main.o `test -f 'src/or/main.c' || echo '$(srcdir)/'`src/or/main.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-main.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-main.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/main.c' object='src/or/src_or_libtor_testing_a-main.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-main.o `test -f 'src/or/main.c' || echo '$(srcdir)/'`src/or/main.c src/or/src_or_libtor_testing_a-main.obj: src/or/main.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-main.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-main.Tpo -c -o src/or/src_or_libtor_testing_a-main.obj `if test -f 'src/or/main.c'; then $(CYGPATH_W) 'src/or/main.c'; else $(CYGPATH_W) '$(srcdir)/src/or/main.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-main.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-main.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/main.c' object='src/or/src_or_libtor_testing_a-main.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-main.obj `if test -f 'src/or/main.c'; then $(CYGPATH_W) 'src/or/main.c'; else $(CYGPATH_W) '$(srcdir)/src/or/main.c'; fi` src/or/src_or_libtor_testing_a-microdesc.o: src/or/microdesc.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-microdesc.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-microdesc.Tpo -c -o src/or/src_or_libtor_testing_a-microdesc.o `test -f 'src/or/microdesc.c' || echo '$(srcdir)/'`src/or/microdesc.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-microdesc.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-microdesc.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/microdesc.c' object='src/or/src_or_libtor_testing_a-microdesc.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-microdesc.o `test -f 'src/or/microdesc.c' || echo '$(srcdir)/'`src/or/microdesc.c src/or/src_or_libtor_testing_a-microdesc.obj: src/or/microdesc.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-microdesc.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-microdesc.Tpo -c -o src/or/src_or_libtor_testing_a-microdesc.obj `if test -f 'src/or/microdesc.c'; then $(CYGPATH_W) 'src/or/microdesc.c'; else $(CYGPATH_W) '$(srcdir)/src/or/microdesc.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-microdesc.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-microdesc.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/microdesc.c' object='src/or/src_or_libtor_testing_a-microdesc.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-microdesc.obj `if test -f 'src/or/microdesc.c'; then $(CYGPATH_W) 'src/or/microdesc.c'; else $(CYGPATH_W) '$(srcdir)/src/or/microdesc.c'; fi` src/or/src_or_libtor_testing_a-networkstatus.o: src/or/networkstatus.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-networkstatus.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-networkstatus.Tpo -c -o src/or/src_or_libtor_testing_a-networkstatus.o `test -f 'src/or/networkstatus.c' || echo '$(srcdir)/'`src/or/networkstatus.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-networkstatus.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-networkstatus.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/networkstatus.c' object='src/or/src_or_libtor_testing_a-networkstatus.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-networkstatus.o `test -f 'src/or/networkstatus.c' || echo '$(srcdir)/'`src/or/networkstatus.c src/or/src_or_libtor_testing_a-networkstatus.obj: src/or/networkstatus.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-networkstatus.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-networkstatus.Tpo -c -o src/or/src_or_libtor_testing_a-networkstatus.obj `if test -f 'src/or/networkstatus.c'; then $(CYGPATH_W) 'src/or/networkstatus.c'; else $(CYGPATH_W) '$(srcdir)/src/or/networkstatus.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-networkstatus.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-networkstatus.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/networkstatus.c' object='src/or/src_or_libtor_testing_a-networkstatus.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-networkstatus.obj `if test -f 'src/or/networkstatus.c'; then $(CYGPATH_W) 'src/or/networkstatus.c'; else $(CYGPATH_W) '$(srcdir)/src/or/networkstatus.c'; fi` src/or/src_or_libtor_testing_a-nodelist.o: src/or/nodelist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-nodelist.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-nodelist.Tpo -c -o src/or/src_or_libtor_testing_a-nodelist.o `test -f 'src/or/nodelist.c' || echo '$(srcdir)/'`src/or/nodelist.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-nodelist.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-nodelist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/nodelist.c' object='src/or/src_or_libtor_testing_a-nodelist.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-nodelist.o `test -f 'src/or/nodelist.c' || echo '$(srcdir)/'`src/or/nodelist.c src/or/src_or_libtor_testing_a-nodelist.obj: src/or/nodelist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-nodelist.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-nodelist.Tpo -c -o src/or/src_or_libtor_testing_a-nodelist.obj `if test -f 'src/or/nodelist.c'; then $(CYGPATH_W) 'src/or/nodelist.c'; else $(CYGPATH_W) '$(srcdir)/src/or/nodelist.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-nodelist.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-nodelist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/nodelist.c' object='src/or/src_or_libtor_testing_a-nodelist.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-nodelist.obj `if test -f 'src/or/nodelist.c'; then $(CYGPATH_W) 'src/or/nodelist.c'; else $(CYGPATH_W) '$(srcdir)/src/or/nodelist.c'; fi` src/or/src_or_libtor_testing_a-onion.o: src/or/onion.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-onion.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-onion.Tpo -c -o src/or/src_or_libtor_testing_a-onion.o `test -f 'src/or/onion.c' || echo '$(srcdir)/'`src/or/onion.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-onion.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-onion.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/onion.c' object='src/or/src_or_libtor_testing_a-onion.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-onion.o `test -f 'src/or/onion.c' || echo '$(srcdir)/'`src/or/onion.c src/or/src_or_libtor_testing_a-onion.obj: src/or/onion.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-onion.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-onion.Tpo -c -o src/or/src_or_libtor_testing_a-onion.obj `if test -f 'src/or/onion.c'; then $(CYGPATH_W) 'src/or/onion.c'; else $(CYGPATH_W) '$(srcdir)/src/or/onion.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-onion.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-onion.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/onion.c' object='src/or/src_or_libtor_testing_a-onion.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-onion.obj `if test -f 'src/or/onion.c'; then $(CYGPATH_W) 'src/or/onion.c'; else $(CYGPATH_W) '$(srcdir)/src/or/onion.c'; fi` src/or/src_or_libtor_testing_a-onion_fast.o: src/or/onion_fast.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-onion_fast.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_fast.Tpo -c -o src/or/src_or_libtor_testing_a-onion_fast.o `test -f 'src/or/onion_fast.c' || echo '$(srcdir)/'`src/or/onion_fast.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_fast.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_fast.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/onion_fast.c' object='src/or/src_or_libtor_testing_a-onion_fast.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-onion_fast.o `test -f 'src/or/onion_fast.c' || echo '$(srcdir)/'`src/or/onion_fast.c src/or/src_or_libtor_testing_a-onion_fast.obj: src/or/onion_fast.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-onion_fast.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_fast.Tpo -c -o src/or/src_or_libtor_testing_a-onion_fast.obj `if test -f 'src/or/onion_fast.c'; then $(CYGPATH_W) 'src/or/onion_fast.c'; else $(CYGPATH_W) '$(srcdir)/src/or/onion_fast.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_fast.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_fast.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/onion_fast.c' object='src/or/src_or_libtor_testing_a-onion_fast.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-onion_fast.obj `if test -f 'src/or/onion_fast.c'; then $(CYGPATH_W) 'src/or/onion_fast.c'; else $(CYGPATH_W) '$(srcdir)/src/or/onion_fast.c'; fi` src/or/src_or_libtor_testing_a-onion_tap.o: src/or/onion_tap.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-onion_tap.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_tap.Tpo -c -o src/or/src_or_libtor_testing_a-onion_tap.o `test -f 'src/or/onion_tap.c' || echo '$(srcdir)/'`src/or/onion_tap.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_tap.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_tap.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/onion_tap.c' object='src/or/src_or_libtor_testing_a-onion_tap.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-onion_tap.o `test -f 'src/or/onion_tap.c' || echo '$(srcdir)/'`src/or/onion_tap.c src/or/src_or_libtor_testing_a-onion_tap.obj: src/or/onion_tap.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-onion_tap.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_tap.Tpo -c -o src/or/src_or_libtor_testing_a-onion_tap.obj `if test -f 'src/or/onion_tap.c'; then $(CYGPATH_W) 'src/or/onion_tap.c'; else $(CYGPATH_W) '$(srcdir)/src/or/onion_tap.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_tap.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_tap.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/onion_tap.c' object='src/or/src_or_libtor_testing_a-onion_tap.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-onion_tap.obj `if test -f 'src/or/onion_tap.c'; then $(CYGPATH_W) 'src/or/onion_tap.c'; else $(CYGPATH_W) '$(srcdir)/src/or/onion_tap.c'; fi` src/or/src_or_libtor_testing_a-transports.o: src/or/transports.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-transports.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-transports.Tpo -c -o src/or/src_or_libtor_testing_a-transports.o `test -f 'src/or/transports.c' || echo '$(srcdir)/'`src/or/transports.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-transports.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-transports.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/transports.c' object='src/or/src_or_libtor_testing_a-transports.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-transports.o `test -f 'src/or/transports.c' || echo '$(srcdir)/'`src/or/transports.c src/or/src_or_libtor_testing_a-transports.obj: src/or/transports.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-transports.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-transports.Tpo -c -o src/or/src_or_libtor_testing_a-transports.obj `if test -f 'src/or/transports.c'; then $(CYGPATH_W) 'src/or/transports.c'; else $(CYGPATH_W) '$(srcdir)/src/or/transports.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-transports.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-transports.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/transports.c' object='src/or/src_or_libtor_testing_a-transports.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-transports.obj `if test -f 'src/or/transports.c'; then $(CYGPATH_W) 'src/or/transports.c'; else $(CYGPATH_W) '$(srcdir)/src/or/transports.c'; fi` src/or/src_or_libtor_testing_a-policies.o: src/or/policies.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-policies.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-policies.Tpo -c -o src/or/src_or_libtor_testing_a-policies.o `test -f 'src/or/policies.c' || echo '$(srcdir)/'`src/or/policies.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-policies.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-policies.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/policies.c' object='src/or/src_or_libtor_testing_a-policies.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-policies.o `test -f 'src/or/policies.c' || echo '$(srcdir)/'`src/or/policies.c src/or/src_or_libtor_testing_a-policies.obj: src/or/policies.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-policies.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-policies.Tpo -c -o src/or/src_or_libtor_testing_a-policies.obj `if test -f 'src/or/policies.c'; then $(CYGPATH_W) 'src/or/policies.c'; else $(CYGPATH_W) '$(srcdir)/src/or/policies.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-policies.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-policies.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/policies.c' object='src/or/src_or_libtor_testing_a-policies.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-policies.obj `if test -f 'src/or/policies.c'; then $(CYGPATH_W) 'src/or/policies.c'; else $(CYGPATH_W) '$(srcdir)/src/or/policies.c'; fi` src/or/src_or_libtor_testing_a-reasons.o: src/or/reasons.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-reasons.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-reasons.Tpo -c -o src/or/src_or_libtor_testing_a-reasons.o `test -f 'src/or/reasons.c' || echo '$(srcdir)/'`src/or/reasons.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-reasons.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-reasons.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/reasons.c' object='src/or/src_or_libtor_testing_a-reasons.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-reasons.o `test -f 'src/or/reasons.c' || echo '$(srcdir)/'`src/or/reasons.c src/or/src_or_libtor_testing_a-reasons.obj: src/or/reasons.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-reasons.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-reasons.Tpo -c -o src/or/src_or_libtor_testing_a-reasons.obj `if test -f 'src/or/reasons.c'; then $(CYGPATH_W) 'src/or/reasons.c'; else $(CYGPATH_W) '$(srcdir)/src/or/reasons.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-reasons.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-reasons.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/reasons.c' object='src/or/src_or_libtor_testing_a-reasons.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-reasons.obj `if test -f 'src/or/reasons.c'; then $(CYGPATH_W) 'src/or/reasons.c'; else $(CYGPATH_W) '$(srcdir)/src/or/reasons.c'; fi` src/or/src_or_libtor_testing_a-relay.o: src/or/relay.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-relay.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-relay.Tpo -c -o src/or/src_or_libtor_testing_a-relay.o `test -f 'src/or/relay.c' || echo '$(srcdir)/'`src/or/relay.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-relay.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-relay.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/relay.c' object='src/or/src_or_libtor_testing_a-relay.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-relay.o `test -f 'src/or/relay.c' || echo '$(srcdir)/'`src/or/relay.c src/or/src_or_libtor_testing_a-relay.obj: src/or/relay.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-relay.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-relay.Tpo -c -o src/or/src_or_libtor_testing_a-relay.obj `if test -f 'src/or/relay.c'; then $(CYGPATH_W) 'src/or/relay.c'; else $(CYGPATH_W) '$(srcdir)/src/or/relay.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-relay.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-relay.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/relay.c' object='src/or/src_or_libtor_testing_a-relay.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-relay.obj `if test -f 'src/or/relay.c'; then $(CYGPATH_W) 'src/or/relay.c'; else $(CYGPATH_W) '$(srcdir)/src/or/relay.c'; fi` src/or/src_or_libtor_testing_a-rendcache.o: src/or/rendcache.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-rendcache.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-rendcache.Tpo -c -o src/or/src_or_libtor_testing_a-rendcache.o `test -f 'src/or/rendcache.c' || echo '$(srcdir)/'`src/or/rendcache.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-rendcache.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-rendcache.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/rendcache.c' object='src/or/src_or_libtor_testing_a-rendcache.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-rendcache.o `test -f 'src/or/rendcache.c' || echo '$(srcdir)/'`src/or/rendcache.c src/or/src_or_libtor_testing_a-rendcache.obj: src/or/rendcache.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-rendcache.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-rendcache.Tpo -c -o src/or/src_or_libtor_testing_a-rendcache.obj `if test -f 'src/or/rendcache.c'; then $(CYGPATH_W) 'src/or/rendcache.c'; else $(CYGPATH_W) '$(srcdir)/src/or/rendcache.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-rendcache.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-rendcache.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/rendcache.c' object='src/or/src_or_libtor_testing_a-rendcache.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-rendcache.obj `if test -f 'src/or/rendcache.c'; then $(CYGPATH_W) 'src/or/rendcache.c'; else $(CYGPATH_W) '$(srcdir)/src/or/rendcache.c'; fi` src/or/src_or_libtor_testing_a-rendclient.o: src/or/rendclient.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-rendclient.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-rendclient.Tpo -c -o src/or/src_or_libtor_testing_a-rendclient.o `test -f 'src/or/rendclient.c' || echo '$(srcdir)/'`src/or/rendclient.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-rendclient.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-rendclient.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/rendclient.c' object='src/or/src_or_libtor_testing_a-rendclient.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-rendclient.o `test -f 'src/or/rendclient.c' || echo '$(srcdir)/'`src/or/rendclient.c src/or/src_or_libtor_testing_a-rendclient.obj: src/or/rendclient.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-rendclient.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-rendclient.Tpo -c -o src/or/src_or_libtor_testing_a-rendclient.obj `if test -f 'src/or/rendclient.c'; then $(CYGPATH_W) 'src/or/rendclient.c'; else $(CYGPATH_W) '$(srcdir)/src/or/rendclient.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-rendclient.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-rendclient.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/rendclient.c' object='src/or/src_or_libtor_testing_a-rendclient.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-rendclient.obj `if test -f 'src/or/rendclient.c'; then $(CYGPATH_W) 'src/or/rendclient.c'; else $(CYGPATH_W) '$(srcdir)/src/or/rendclient.c'; fi` src/or/src_or_libtor_testing_a-rendcommon.o: src/or/rendcommon.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-rendcommon.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-rendcommon.Tpo -c -o src/or/src_or_libtor_testing_a-rendcommon.o `test -f 'src/or/rendcommon.c' || echo '$(srcdir)/'`src/or/rendcommon.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-rendcommon.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-rendcommon.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/rendcommon.c' object='src/or/src_or_libtor_testing_a-rendcommon.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-rendcommon.o `test -f 'src/or/rendcommon.c' || echo '$(srcdir)/'`src/or/rendcommon.c src/or/src_or_libtor_testing_a-rendcommon.obj: src/or/rendcommon.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-rendcommon.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-rendcommon.Tpo -c -o src/or/src_or_libtor_testing_a-rendcommon.obj `if test -f 'src/or/rendcommon.c'; then $(CYGPATH_W) 'src/or/rendcommon.c'; else $(CYGPATH_W) '$(srcdir)/src/or/rendcommon.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-rendcommon.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-rendcommon.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/rendcommon.c' object='src/or/src_or_libtor_testing_a-rendcommon.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-rendcommon.obj `if test -f 'src/or/rendcommon.c'; then $(CYGPATH_W) 'src/or/rendcommon.c'; else $(CYGPATH_W) '$(srcdir)/src/or/rendcommon.c'; fi` src/or/src_or_libtor_testing_a-rendmid.o: src/or/rendmid.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-rendmid.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-rendmid.Tpo -c -o src/or/src_or_libtor_testing_a-rendmid.o `test -f 'src/or/rendmid.c' || echo '$(srcdir)/'`src/or/rendmid.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-rendmid.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-rendmid.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/rendmid.c' object='src/or/src_or_libtor_testing_a-rendmid.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-rendmid.o `test -f 'src/or/rendmid.c' || echo '$(srcdir)/'`src/or/rendmid.c src/or/src_or_libtor_testing_a-rendmid.obj: src/or/rendmid.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-rendmid.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-rendmid.Tpo -c -o src/or/src_or_libtor_testing_a-rendmid.obj `if test -f 'src/or/rendmid.c'; then $(CYGPATH_W) 'src/or/rendmid.c'; else $(CYGPATH_W) '$(srcdir)/src/or/rendmid.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-rendmid.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-rendmid.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/rendmid.c' object='src/or/src_or_libtor_testing_a-rendmid.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-rendmid.obj `if test -f 'src/or/rendmid.c'; then $(CYGPATH_W) 'src/or/rendmid.c'; else $(CYGPATH_W) '$(srcdir)/src/or/rendmid.c'; fi` src/or/src_or_libtor_testing_a-rendservice.o: src/or/rendservice.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-rendservice.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-rendservice.Tpo -c -o src/or/src_or_libtor_testing_a-rendservice.o `test -f 'src/or/rendservice.c' || echo '$(srcdir)/'`src/or/rendservice.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-rendservice.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-rendservice.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/rendservice.c' object='src/or/src_or_libtor_testing_a-rendservice.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-rendservice.o `test -f 'src/or/rendservice.c' || echo '$(srcdir)/'`src/or/rendservice.c src/or/src_or_libtor_testing_a-rendservice.obj: src/or/rendservice.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-rendservice.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-rendservice.Tpo -c -o src/or/src_or_libtor_testing_a-rendservice.obj `if test -f 'src/or/rendservice.c'; then $(CYGPATH_W) 'src/or/rendservice.c'; else $(CYGPATH_W) '$(srcdir)/src/or/rendservice.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-rendservice.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-rendservice.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/rendservice.c' object='src/or/src_or_libtor_testing_a-rendservice.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-rendservice.obj `if test -f 'src/or/rendservice.c'; then $(CYGPATH_W) 'src/or/rendservice.c'; else $(CYGPATH_W) '$(srcdir)/src/or/rendservice.c'; fi` src/or/src_or_libtor_testing_a-rephist.o: src/or/rephist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-rephist.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-rephist.Tpo -c -o src/or/src_or_libtor_testing_a-rephist.o `test -f 'src/or/rephist.c' || echo '$(srcdir)/'`src/or/rephist.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-rephist.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-rephist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/rephist.c' object='src/or/src_or_libtor_testing_a-rephist.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-rephist.o `test -f 'src/or/rephist.c' || echo '$(srcdir)/'`src/or/rephist.c src/or/src_or_libtor_testing_a-rephist.obj: src/or/rephist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-rephist.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-rephist.Tpo -c -o src/or/src_or_libtor_testing_a-rephist.obj `if test -f 'src/or/rephist.c'; then $(CYGPATH_W) 'src/or/rephist.c'; else $(CYGPATH_W) '$(srcdir)/src/or/rephist.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-rephist.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-rephist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/rephist.c' object='src/or/src_or_libtor_testing_a-rephist.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-rephist.obj `if test -f 'src/or/rephist.c'; then $(CYGPATH_W) 'src/or/rephist.c'; else $(CYGPATH_W) '$(srcdir)/src/or/rephist.c'; fi` src/or/src_or_libtor_testing_a-replaycache.o: src/or/replaycache.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-replaycache.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-replaycache.Tpo -c -o src/or/src_or_libtor_testing_a-replaycache.o `test -f 'src/or/replaycache.c' || echo '$(srcdir)/'`src/or/replaycache.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-replaycache.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-replaycache.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/replaycache.c' object='src/or/src_or_libtor_testing_a-replaycache.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-replaycache.o `test -f 'src/or/replaycache.c' || echo '$(srcdir)/'`src/or/replaycache.c src/or/src_or_libtor_testing_a-replaycache.obj: src/or/replaycache.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-replaycache.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-replaycache.Tpo -c -o src/or/src_or_libtor_testing_a-replaycache.obj `if test -f 'src/or/replaycache.c'; then $(CYGPATH_W) 'src/or/replaycache.c'; else $(CYGPATH_W) '$(srcdir)/src/or/replaycache.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-replaycache.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-replaycache.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/replaycache.c' object='src/or/src_or_libtor_testing_a-replaycache.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-replaycache.obj `if test -f 'src/or/replaycache.c'; then $(CYGPATH_W) 'src/or/replaycache.c'; else $(CYGPATH_W) '$(srcdir)/src/or/replaycache.c'; fi` src/or/src_or_libtor_testing_a-router.o: src/or/router.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-router.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-router.Tpo -c -o src/or/src_or_libtor_testing_a-router.o `test -f 'src/or/router.c' || echo '$(srcdir)/'`src/or/router.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-router.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-router.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/router.c' object='src/or/src_or_libtor_testing_a-router.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-router.o `test -f 'src/or/router.c' || echo '$(srcdir)/'`src/or/router.c src/or/src_or_libtor_testing_a-router.obj: src/or/router.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-router.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-router.Tpo -c -o src/or/src_or_libtor_testing_a-router.obj `if test -f 'src/or/router.c'; then $(CYGPATH_W) 'src/or/router.c'; else $(CYGPATH_W) '$(srcdir)/src/or/router.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-router.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-router.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/router.c' object='src/or/src_or_libtor_testing_a-router.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-router.obj `if test -f 'src/or/router.c'; then $(CYGPATH_W) 'src/or/router.c'; else $(CYGPATH_W) '$(srcdir)/src/or/router.c'; fi` src/or/src_or_libtor_testing_a-routerkeys.o: src/or/routerkeys.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-routerkeys.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-routerkeys.Tpo -c -o src/or/src_or_libtor_testing_a-routerkeys.o `test -f 'src/or/routerkeys.c' || echo '$(srcdir)/'`src/or/routerkeys.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-routerkeys.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-routerkeys.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/routerkeys.c' object='src/or/src_or_libtor_testing_a-routerkeys.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-routerkeys.o `test -f 'src/or/routerkeys.c' || echo '$(srcdir)/'`src/or/routerkeys.c src/or/src_or_libtor_testing_a-routerkeys.obj: src/or/routerkeys.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-routerkeys.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-routerkeys.Tpo -c -o src/or/src_or_libtor_testing_a-routerkeys.obj `if test -f 'src/or/routerkeys.c'; then $(CYGPATH_W) 'src/or/routerkeys.c'; else $(CYGPATH_W) '$(srcdir)/src/or/routerkeys.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-routerkeys.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-routerkeys.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/routerkeys.c' object='src/or/src_or_libtor_testing_a-routerkeys.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-routerkeys.obj `if test -f 'src/or/routerkeys.c'; then $(CYGPATH_W) 'src/or/routerkeys.c'; else $(CYGPATH_W) '$(srcdir)/src/or/routerkeys.c'; fi` src/or/src_or_libtor_testing_a-routerlist.o: src/or/routerlist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-routerlist.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-routerlist.Tpo -c -o src/or/src_or_libtor_testing_a-routerlist.o `test -f 'src/or/routerlist.c' || echo '$(srcdir)/'`src/or/routerlist.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-routerlist.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-routerlist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/routerlist.c' object='src/or/src_or_libtor_testing_a-routerlist.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-routerlist.o `test -f 'src/or/routerlist.c' || echo '$(srcdir)/'`src/or/routerlist.c src/or/src_or_libtor_testing_a-routerlist.obj: src/or/routerlist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-routerlist.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-routerlist.Tpo -c -o src/or/src_or_libtor_testing_a-routerlist.obj `if test -f 'src/or/routerlist.c'; then $(CYGPATH_W) 'src/or/routerlist.c'; else $(CYGPATH_W) '$(srcdir)/src/or/routerlist.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-routerlist.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-routerlist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/routerlist.c' object='src/or/src_or_libtor_testing_a-routerlist.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-routerlist.obj `if test -f 'src/or/routerlist.c'; then $(CYGPATH_W) 'src/or/routerlist.c'; else $(CYGPATH_W) '$(srcdir)/src/or/routerlist.c'; fi` src/or/src_or_libtor_testing_a-routerparse.o: src/or/routerparse.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-routerparse.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-routerparse.Tpo -c -o src/or/src_or_libtor_testing_a-routerparse.o `test -f 'src/or/routerparse.c' || echo '$(srcdir)/'`src/or/routerparse.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-routerparse.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-routerparse.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/routerparse.c' object='src/or/src_or_libtor_testing_a-routerparse.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-routerparse.o `test -f 'src/or/routerparse.c' || echo '$(srcdir)/'`src/or/routerparse.c src/or/src_or_libtor_testing_a-routerparse.obj: src/or/routerparse.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-routerparse.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-routerparse.Tpo -c -o src/or/src_or_libtor_testing_a-routerparse.obj `if test -f 'src/or/routerparse.c'; then $(CYGPATH_W) 'src/or/routerparse.c'; else $(CYGPATH_W) '$(srcdir)/src/or/routerparse.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-routerparse.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-routerparse.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/routerparse.c' object='src/or/src_or_libtor_testing_a-routerparse.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-routerparse.obj `if test -f 'src/or/routerparse.c'; then $(CYGPATH_W) 'src/or/routerparse.c'; else $(CYGPATH_W) '$(srcdir)/src/or/routerparse.c'; fi` src/or/src_or_libtor_testing_a-routerset.o: src/or/routerset.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-routerset.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-routerset.Tpo -c -o src/or/src_or_libtor_testing_a-routerset.o `test -f 'src/or/routerset.c' || echo '$(srcdir)/'`src/or/routerset.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-routerset.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-routerset.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/routerset.c' object='src/or/src_or_libtor_testing_a-routerset.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-routerset.o `test -f 'src/or/routerset.c' || echo '$(srcdir)/'`src/or/routerset.c src/or/src_or_libtor_testing_a-routerset.obj: src/or/routerset.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-routerset.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-routerset.Tpo -c -o src/or/src_or_libtor_testing_a-routerset.obj `if test -f 'src/or/routerset.c'; then $(CYGPATH_W) 'src/or/routerset.c'; else $(CYGPATH_W) '$(srcdir)/src/or/routerset.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-routerset.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-routerset.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/routerset.c' object='src/or/src_or_libtor_testing_a-routerset.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-routerset.obj `if test -f 'src/or/routerset.c'; then $(CYGPATH_W) 'src/or/routerset.c'; else $(CYGPATH_W) '$(srcdir)/src/or/routerset.c'; fi` src/or/src_or_libtor_testing_a-scheduler.o: src/or/scheduler.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-scheduler.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-scheduler.Tpo -c -o src/or/src_or_libtor_testing_a-scheduler.o `test -f 'src/or/scheduler.c' || echo '$(srcdir)/'`src/or/scheduler.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-scheduler.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-scheduler.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/scheduler.c' object='src/or/src_or_libtor_testing_a-scheduler.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-scheduler.o `test -f 'src/or/scheduler.c' || echo '$(srcdir)/'`src/or/scheduler.c src/or/src_or_libtor_testing_a-scheduler.obj: src/or/scheduler.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-scheduler.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-scheduler.Tpo -c -o src/or/src_or_libtor_testing_a-scheduler.obj `if test -f 'src/or/scheduler.c'; then $(CYGPATH_W) 'src/or/scheduler.c'; else $(CYGPATH_W) '$(srcdir)/src/or/scheduler.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-scheduler.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-scheduler.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/scheduler.c' object='src/or/src_or_libtor_testing_a-scheduler.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-scheduler.obj `if test -f 'src/or/scheduler.c'; then $(CYGPATH_W) 'src/or/scheduler.c'; else $(CYGPATH_W) '$(srcdir)/src/or/scheduler.c'; fi` src/or/src_or_libtor_testing_a-statefile.o: src/or/statefile.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-statefile.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-statefile.Tpo -c -o src/or/src_or_libtor_testing_a-statefile.o `test -f 'src/or/statefile.c' || echo '$(srcdir)/'`src/or/statefile.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-statefile.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-statefile.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/statefile.c' object='src/or/src_or_libtor_testing_a-statefile.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-statefile.o `test -f 'src/or/statefile.c' || echo '$(srcdir)/'`src/or/statefile.c src/or/src_or_libtor_testing_a-statefile.obj: src/or/statefile.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-statefile.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-statefile.Tpo -c -o src/or/src_or_libtor_testing_a-statefile.obj `if test -f 'src/or/statefile.c'; then $(CYGPATH_W) 'src/or/statefile.c'; else $(CYGPATH_W) '$(srcdir)/src/or/statefile.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-statefile.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-statefile.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/statefile.c' object='src/or/src_or_libtor_testing_a-statefile.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-statefile.obj `if test -f 'src/or/statefile.c'; then $(CYGPATH_W) 'src/or/statefile.c'; else $(CYGPATH_W) '$(srcdir)/src/or/statefile.c'; fi` src/or/src_or_libtor_testing_a-status.o: src/or/status.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-status.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-status.Tpo -c -o src/or/src_or_libtor_testing_a-status.o `test -f 'src/or/status.c' || echo '$(srcdir)/'`src/or/status.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-status.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-status.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/status.c' object='src/or/src_or_libtor_testing_a-status.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-status.o `test -f 'src/or/status.c' || echo '$(srcdir)/'`src/or/status.c src/or/src_or_libtor_testing_a-status.obj: src/or/status.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-status.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-status.Tpo -c -o src/or/src_or_libtor_testing_a-status.obj `if test -f 'src/or/status.c'; then $(CYGPATH_W) 'src/or/status.c'; else $(CYGPATH_W) '$(srcdir)/src/or/status.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-status.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-status.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/status.c' object='src/or/src_or_libtor_testing_a-status.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-status.obj `if test -f 'src/or/status.c'; then $(CYGPATH_W) 'src/or/status.c'; else $(CYGPATH_W) '$(srcdir)/src/or/status.c'; fi` src/or/src_or_libtor_testing_a-torcert.o: src/or/torcert.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-torcert.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-torcert.Tpo -c -o src/or/src_or_libtor_testing_a-torcert.o `test -f 'src/or/torcert.c' || echo '$(srcdir)/'`src/or/torcert.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-torcert.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-torcert.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/torcert.c' object='src/or/src_or_libtor_testing_a-torcert.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-torcert.o `test -f 'src/or/torcert.c' || echo '$(srcdir)/'`src/or/torcert.c src/or/src_or_libtor_testing_a-torcert.obj: src/or/torcert.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-torcert.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-torcert.Tpo -c -o src/or/src_or_libtor_testing_a-torcert.obj `if test -f 'src/or/torcert.c'; then $(CYGPATH_W) 'src/or/torcert.c'; else $(CYGPATH_W) '$(srcdir)/src/or/torcert.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-torcert.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-torcert.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/torcert.c' object='src/or/src_or_libtor_testing_a-torcert.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-torcert.obj `if test -f 'src/or/torcert.c'; then $(CYGPATH_W) 'src/or/torcert.c'; else $(CYGPATH_W) '$(srcdir)/src/or/torcert.c'; fi` src/or/src_or_libtor_testing_a-onion_ntor.o: src/or/onion_ntor.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-onion_ntor.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_ntor.Tpo -c -o src/or/src_or_libtor_testing_a-onion_ntor.o `test -f 'src/or/onion_ntor.c' || echo '$(srcdir)/'`src/or/onion_ntor.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_ntor.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_ntor.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/onion_ntor.c' object='src/or/src_or_libtor_testing_a-onion_ntor.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-onion_ntor.o `test -f 'src/or/onion_ntor.c' || echo '$(srcdir)/'`src/or/onion_ntor.c src/or/src_or_libtor_testing_a-onion_ntor.obj: src/or/onion_ntor.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-onion_ntor.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_ntor.Tpo -c -o src/or/src_or_libtor_testing_a-onion_ntor.obj `if test -f 'src/or/onion_ntor.c'; then $(CYGPATH_W) 'src/or/onion_ntor.c'; else $(CYGPATH_W) '$(srcdir)/src/or/onion_ntor.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_ntor.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-onion_ntor.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/onion_ntor.c' object='src/or/src_or_libtor_testing_a-onion_ntor.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-onion_ntor.obj `if test -f 'src/or/onion_ntor.c'; then $(CYGPATH_W) 'src/or/onion_ntor.c'; else $(CYGPATH_W) '$(srcdir)/src/or/onion_ntor.c'; fi` src/ext/src_or_libtor_testing_a-eventdns.o: src/ext/eventdns.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/ext/src_or_libtor_testing_a-eventdns.o -MD -MP -MF src/ext/$(DEPDIR)/src_or_libtor_testing_a-eventdns.Tpo -c -o src/ext/src_or_libtor_testing_a-eventdns.o `test -f 'src/ext/eventdns.c' || echo '$(srcdir)/'`src/ext/eventdns.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/$(DEPDIR)/src_or_libtor_testing_a-eventdns.Tpo src/ext/$(DEPDIR)/src_or_libtor_testing_a-eventdns.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/eventdns.c' object='src/ext/src_or_libtor_testing_a-eventdns.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/ext/src_or_libtor_testing_a-eventdns.o `test -f 'src/ext/eventdns.c' || echo '$(srcdir)/'`src/ext/eventdns.c src/ext/src_or_libtor_testing_a-eventdns.obj: src/ext/eventdns.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/ext/src_or_libtor_testing_a-eventdns.obj -MD -MP -MF src/ext/$(DEPDIR)/src_or_libtor_testing_a-eventdns.Tpo -c -o src/ext/src_or_libtor_testing_a-eventdns.obj `if test -f 'src/ext/eventdns.c'; then $(CYGPATH_W) 'src/ext/eventdns.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/eventdns.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/$(DEPDIR)/src_or_libtor_testing_a-eventdns.Tpo src/ext/$(DEPDIR)/src_or_libtor_testing_a-eventdns.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/eventdns.c' object='src/ext/src_or_libtor_testing_a-eventdns.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/ext/src_or_libtor_testing_a-eventdns.obj `if test -f 'src/ext/eventdns.c'; then $(CYGPATH_W) 'src/ext/eventdns.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/eventdns.c'; fi` src/or/src_or_libtor_testing_a-ntmain.o: src/or/ntmain.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-ntmain.o -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-ntmain.Tpo -c -o src/or/src_or_libtor_testing_a-ntmain.o `test -f 'src/or/ntmain.c' || echo '$(srcdir)/'`src/or/ntmain.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-ntmain.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-ntmain.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/ntmain.c' object='src/or/src_or_libtor_testing_a-ntmain.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-ntmain.o `test -f 'src/or/ntmain.c' || echo '$(srcdir)/'`src/or/ntmain.c src/or/src_or_libtor_testing_a-ntmain.obj: src/or/ntmain.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -MT src/or/src_or_libtor_testing_a-ntmain.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_libtor_testing_a-ntmain.Tpo -c -o src/or/src_or_libtor_testing_a-ntmain.obj `if test -f 'src/or/ntmain.c'; then $(CYGPATH_W) 'src/or/ntmain.c'; else $(CYGPATH_W) '$(srcdir)/src/or/ntmain.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_libtor_testing_a-ntmain.Tpo src/or/$(DEPDIR)/src_or_libtor_testing_a-ntmain.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/ntmain.c' object='src/or/src_or_libtor_testing_a-ntmain.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_libtor_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_or_libtor_testing_a_CFLAGS) $(CFLAGS) -c -o src/or/src_or_libtor_testing_a-ntmain.obj `if test -f 'src/or/ntmain.c'; then $(CYGPATH_W) 'src/or/ntmain.c'; else $(CYGPATH_W) '$(srcdir)/src/or/ntmain.c'; fi` src/ext/trunnel/src_trunnel_libor_trunnel_testing_a-trunnel.o: src/ext/trunnel/trunnel.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_trunnel_libor_trunnel_testing_a_CFLAGS) $(CFLAGS) -MT src/ext/trunnel/src_trunnel_libor_trunnel_testing_a-trunnel.o -MD -MP -MF src/ext/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-trunnel.Tpo -c -o src/ext/trunnel/src_trunnel_libor_trunnel_testing_a-trunnel.o `test -f 'src/ext/trunnel/trunnel.c' || echo '$(srcdir)/'`src/ext/trunnel/trunnel.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-trunnel.Tpo src/ext/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-trunnel.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/trunnel/trunnel.c' object='src/ext/trunnel/src_trunnel_libor_trunnel_testing_a-trunnel.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_trunnel_libor_trunnel_testing_a_CFLAGS) $(CFLAGS) -c -o src/ext/trunnel/src_trunnel_libor_trunnel_testing_a-trunnel.o `test -f 'src/ext/trunnel/trunnel.c' || echo '$(srcdir)/'`src/ext/trunnel/trunnel.c src/ext/trunnel/src_trunnel_libor_trunnel_testing_a-trunnel.obj: src/ext/trunnel/trunnel.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_trunnel_libor_trunnel_testing_a_CFLAGS) $(CFLAGS) -MT src/ext/trunnel/src_trunnel_libor_trunnel_testing_a-trunnel.obj -MD -MP -MF src/ext/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-trunnel.Tpo -c -o src/ext/trunnel/src_trunnel_libor_trunnel_testing_a-trunnel.obj `if test -f 'src/ext/trunnel/trunnel.c'; then $(CYGPATH_W) 'src/ext/trunnel/trunnel.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/trunnel/trunnel.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-trunnel.Tpo src/ext/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-trunnel.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/trunnel/trunnel.c' object='src/ext/trunnel/src_trunnel_libor_trunnel_testing_a-trunnel.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_trunnel_libor_trunnel_testing_a_CFLAGS) $(CFLAGS) -c -o src/ext/trunnel/src_trunnel_libor_trunnel_testing_a-trunnel.obj `if test -f 'src/ext/trunnel/trunnel.c'; then $(CYGPATH_W) 'src/ext/trunnel/trunnel.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/trunnel/trunnel.c'; fi` src/trunnel/src_trunnel_libor_trunnel_testing_a-ed25519_cert.o: src/trunnel/ed25519_cert.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_trunnel_libor_trunnel_testing_a_CFLAGS) $(CFLAGS) -MT src/trunnel/src_trunnel_libor_trunnel_testing_a-ed25519_cert.o -MD -MP -MF src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-ed25519_cert.Tpo -c -o src/trunnel/src_trunnel_libor_trunnel_testing_a-ed25519_cert.o `test -f 'src/trunnel/ed25519_cert.c' || echo '$(srcdir)/'`src/trunnel/ed25519_cert.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-ed25519_cert.Tpo src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-ed25519_cert.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/trunnel/ed25519_cert.c' object='src/trunnel/src_trunnel_libor_trunnel_testing_a-ed25519_cert.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_trunnel_libor_trunnel_testing_a_CFLAGS) $(CFLAGS) -c -o src/trunnel/src_trunnel_libor_trunnel_testing_a-ed25519_cert.o `test -f 'src/trunnel/ed25519_cert.c' || echo '$(srcdir)/'`src/trunnel/ed25519_cert.c src/trunnel/src_trunnel_libor_trunnel_testing_a-ed25519_cert.obj: src/trunnel/ed25519_cert.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_trunnel_libor_trunnel_testing_a_CFLAGS) $(CFLAGS) -MT src/trunnel/src_trunnel_libor_trunnel_testing_a-ed25519_cert.obj -MD -MP -MF src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-ed25519_cert.Tpo -c -o src/trunnel/src_trunnel_libor_trunnel_testing_a-ed25519_cert.obj `if test -f 'src/trunnel/ed25519_cert.c'; then $(CYGPATH_W) 'src/trunnel/ed25519_cert.c'; else $(CYGPATH_W) '$(srcdir)/src/trunnel/ed25519_cert.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-ed25519_cert.Tpo src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-ed25519_cert.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/trunnel/ed25519_cert.c' object='src/trunnel/src_trunnel_libor_trunnel_testing_a-ed25519_cert.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_trunnel_libor_trunnel_testing_a_CFLAGS) $(CFLAGS) -c -o src/trunnel/src_trunnel_libor_trunnel_testing_a-ed25519_cert.obj `if test -f 'src/trunnel/ed25519_cert.c'; then $(CYGPATH_W) 'src/trunnel/ed25519_cert.c'; else $(CYGPATH_W) '$(srcdir)/src/trunnel/ed25519_cert.c'; fi` src/trunnel/src_trunnel_libor_trunnel_testing_a-link_handshake.o: src/trunnel/link_handshake.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_trunnel_libor_trunnel_testing_a_CFLAGS) $(CFLAGS) -MT src/trunnel/src_trunnel_libor_trunnel_testing_a-link_handshake.o -MD -MP -MF src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-link_handshake.Tpo -c -o src/trunnel/src_trunnel_libor_trunnel_testing_a-link_handshake.o `test -f 'src/trunnel/link_handshake.c' || echo '$(srcdir)/'`src/trunnel/link_handshake.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-link_handshake.Tpo src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-link_handshake.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/trunnel/link_handshake.c' object='src/trunnel/src_trunnel_libor_trunnel_testing_a-link_handshake.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_trunnel_libor_trunnel_testing_a_CFLAGS) $(CFLAGS) -c -o src/trunnel/src_trunnel_libor_trunnel_testing_a-link_handshake.o `test -f 'src/trunnel/link_handshake.c' || echo '$(srcdir)/'`src/trunnel/link_handshake.c src/trunnel/src_trunnel_libor_trunnel_testing_a-link_handshake.obj: src/trunnel/link_handshake.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_trunnel_libor_trunnel_testing_a_CFLAGS) $(CFLAGS) -MT src/trunnel/src_trunnel_libor_trunnel_testing_a-link_handshake.obj -MD -MP -MF src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-link_handshake.Tpo -c -o src/trunnel/src_trunnel_libor_trunnel_testing_a-link_handshake.obj `if test -f 'src/trunnel/link_handshake.c'; then $(CYGPATH_W) 'src/trunnel/link_handshake.c'; else $(CYGPATH_W) '$(srcdir)/src/trunnel/link_handshake.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-link_handshake.Tpo src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-link_handshake.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/trunnel/link_handshake.c' object='src/trunnel/src_trunnel_libor_trunnel_testing_a-link_handshake.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_trunnel_libor_trunnel_testing_a_CFLAGS) $(CFLAGS) -c -o src/trunnel/src_trunnel_libor_trunnel_testing_a-link_handshake.obj `if test -f 'src/trunnel/link_handshake.c'; then $(CYGPATH_W) 'src/trunnel/link_handshake.c'; else $(CYGPATH_W) '$(srcdir)/src/trunnel/link_handshake.c'; fi` src/trunnel/src_trunnel_libor_trunnel_testing_a-pwbox.o: src/trunnel/pwbox.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_trunnel_libor_trunnel_testing_a_CFLAGS) $(CFLAGS) -MT src/trunnel/src_trunnel_libor_trunnel_testing_a-pwbox.o -MD -MP -MF src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-pwbox.Tpo -c -o src/trunnel/src_trunnel_libor_trunnel_testing_a-pwbox.o `test -f 'src/trunnel/pwbox.c' || echo '$(srcdir)/'`src/trunnel/pwbox.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-pwbox.Tpo src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-pwbox.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/trunnel/pwbox.c' object='src/trunnel/src_trunnel_libor_trunnel_testing_a-pwbox.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_trunnel_libor_trunnel_testing_a_CFLAGS) $(CFLAGS) -c -o src/trunnel/src_trunnel_libor_trunnel_testing_a-pwbox.o `test -f 'src/trunnel/pwbox.c' || echo '$(srcdir)/'`src/trunnel/pwbox.c src/trunnel/src_trunnel_libor_trunnel_testing_a-pwbox.obj: src/trunnel/pwbox.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_trunnel_libor_trunnel_testing_a_CFLAGS) $(CFLAGS) -MT src/trunnel/src_trunnel_libor_trunnel_testing_a-pwbox.obj -MD -MP -MF src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-pwbox.Tpo -c -o src/trunnel/src_trunnel_libor_trunnel_testing_a-pwbox.obj `if test -f 'src/trunnel/pwbox.c'; then $(CYGPATH_W) 'src/trunnel/pwbox.c'; else $(CYGPATH_W) '$(srcdir)/src/trunnel/pwbox.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-pwbox.Tpo src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_testing_a-pwbox.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/trunnel/pwbox.c' object='src/trunnel/src_trunnel_libor_trunnel_testing_a-pwbox.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_testing_a_CPPFLAGS) $(CPPFLAGS) $(src_trunnel_libor_trunnel_testing_a_CFLAGS) $(CFLAGS) -c -o src/trunnel/src_trunnel_libor_trunnel_testing_a-pwbox.obj `if test -f 'src/trunnel/pwbox.c'; then $(CYGPATH_W) 'src/trunnel/pwbox.c'; else $(CYGPATH_W) '$(srcdir)/src/trunnel/pwbox.c'; fi` src/ext/trunnel/src_trunnel_libor_trunnel_a-trunnel.o: src/ext/trunnel/trunnel.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/ext/trunnel/src_trunnel_libor_trunnel_a-trunnel.o -MD -MP -MF src/ext/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-trunnel.Tpo -c -o src/ext/trunnel/src_trunnel_libor_trunnel_a-trunnel.o `test -f 'src/ext/trunnel/trunnel.c' || echo '$(srcdir)/'`src/ext/trunnel/trunnel.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-trunnel.Tpo src/ext/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-trunnel.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/trunnel/trunnel.c' object='src/ext/trunnel/src_trunnel_libor_trunnel_a-trunnel.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/ext/trunnel/src_trunnel_libor_trunnel_a-trunnel.o `test -f 'src/ext/trunnel/trunnel.c' || echo '$(srcdir)/'`src/ext/trunnel/trunnel.c src/ext/trunnel/src_trunnel_libor_trunnel_a-trunnel.obj: src/ext/trunnel/trunnel.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/ext/trunnel/src_trunnel_libor_trunnel_a-trunnel.obj -MD -MP -MF src/ext/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-trunnel.Tpo -c -o src/ext/trunnel/src_trunnel_libor_trunnel_a-trunnel.obj `if test -f 'src/ext/trunnel/trunnel.c'; then $(CYGPATH_W) 'src/ext/trunnel/trunnel.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/trunnel/trunnel.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-trunnel.Tpo src/ext/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-trunnel.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/trunnel/trunnel.c' object='src/ext/trunnel/src_trunnel_libor_trunnel_a-trunnel.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/ext/trunnel/src_trunnel_libor_trunnel_a-trunnel.obj `if test -f 'src/ext/trunnel/trunnel.c'; then $(CYGPATH_W) 'src/ext/trunnel/trunnel.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/trunnel/trunnel.c'; fi` src/trunnel/src_trunnel_libor_trunnel_a-ed25519_cert.o: src/trunnel/ed25519_cert.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/trunnel/src_trunnel_libor_trunnel_a-ed25519_cert.o -MD -MP -MF src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-ed25519_cert.Tpo -c -o src/trunnel/src_trunnel_libor_trunnel_a-ed25519_cert.o `test -f 'src/trunnel/ed25519_cert.c' || echo '$(srcdir)/'`src/trunnel/ed25519_cert.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-ed25519_cert.Tpo src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-ed25519_cert.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/trunnel/ed25519_cert.c' object='src/trunnel/src_trunnel_libor_trunnel_a-ed25519_cert.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/trunnel/src_trunnel_libor_trunnel_a-ed25519_cert.o `test -f 'src/trunnel/ed25519_cert.c' || echo '$(srcdir)/'`src/trunnel/ed25519_cert.c src/trunnel/src_trunnel_libor_trunnel_a-ed25519_cert.obj: src/trunnel/ed25519_cert.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/trunnel/src_trunnel_libor_trunnel_a-ed25519_cert.obj -MD -MP -MF src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-ed25519_cert.Tpo -c -o src/trunnel/src_trunnel_libor_trunnel_a-ed25519_cert.obj `if test -f 'src/trunnel/ed25519_cert.c'; then $(CYGPATH_W) 'src/trunnel/ed25519_cert.c'; else $(CYGPATH_W) '$(srcdir)/src/trunnel/ed25519_cert.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-ed25519_cert.Tpo src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-ed25519_cert.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/trunnel/ed25519_cert.c' object='src/trunnel/src_trunnel_libor_trunnel_a-ed25519_cert.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/trunnel/src_trunnel_libor_trunnel_a-ed25519_cert.obj `if test -f 'src/trunnel/ed25519_cert.c'; then $(CYGPATH_W) 'src/trunnel/ed25519_cert.c'; else $(CYGPATH_W) '$(srcdir)/src/trunnel/ed25519_cert.c'; fi` src/trunnel/src_trunnel_libor_trunnel_a-link_handshake.o: src/trunnel/link_handshake.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/trunnel/src_trunnel_libor_trunnel_a-link_handshake.o -MD -MP -MF src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-link_handshake.Tpo -c -o src/trunnel/src_trunnel_libor_trunnel_a-link_handshake.o `test -f 'src/trunnel/link_handshake.c' || echo '$(srcdir)/'`src/trunnel/link_handshake.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-link_handshake.Tpo src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-link_handshake.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/trunnel/link_handshake.c' object='src/trunnel/src_trunnel_libor_trunnel_a-link_handshake.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/trunnel/src_trunnel_libor_trunnel_a-link_handshake.o `test -f 'src/trunnel/link_handshake.c' || echo '$(srcdir)/'`src/trunnel/link_handshake.c src/trunnel/src_trunnel_libor_trunnel_a-link_handshake.obj: src/trunnel/link_handshake.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/trunnel/src_trunnel_libor_trunnel_a-link_handshake.obj -MD -MP -MF src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-link_handshake.Tpo -c -o src/trunnel/src_trunnel_libor_trunnel_a-link_handshake.obj `if test -f 'src/trunnel/link_handshake.c'; then $(CYGPATH_W) 'src/trunnel/link_handshake.c'; else $(CYGPATH_W) '$(srcdir)/src/trunnel/link_handshake.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-link_handshake.Tpo src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-link_handshake.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/trunnel/link_handshake.c' object='src/trunnel/src_trunnel_libor_trunnel_a-link_handshake.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/trunnel/src_trunnel_libor_trunnel_a-link_handshake.obj `if test -f 'src/trunnel/link_handshake.c'; then $(CYGPATH_W) 'src/trunnel/link_handshake.c'; else $(CYGPATH_W) '$(srcdir)/src/trunnel/link_handshake.c'; fi` src/trunnel/src_trunnel_libor_trunnel_a-pwbox.o: src/trunnel/pwbox.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/trunnel/src_trunnel_libor_trunnel_a-pwbox.o -MD -MP -MF src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-pwbox.Tpo -c -o src/trunnel/src_trunnel_libor_trunnel_a-pwbox.o `test -f 'src/trunnel/pwbox.c' || echo '$(srcdir)/'`src/trunnel/pwbox.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-pwbox.Tpo src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-pwbox.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/trunnel/pwbox.c' object='src/trunnel/src_trunnel_libor_trunnel_a-pwbox.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/trunnel/src_trunnel_libor_trunnel_a-pwbox.o `test -f 'src/trunnel/pwbox.c' || echo '$(srcdir)/'`src/trunnel/pwbox.c src/trunnel/src_trunnel_libor_trunnel_a-pwbox.obj: src/trunnel/pwbox.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/trunnel/src_trunnel_libor_trunnel_a-pwbox.obj -MD -MP -MF src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-pwbox.Tpo -c -o src/trunnel/src_trunnel_libor_trunnel_a-pwbox.obj `if test -f 'src/trunnel/pwbox.c'; then $(CYGPATH_W) 'src/trunnel/pwbox.c'; else $(CYGPATH_W) '$(srcdir)/src/trunnel/pwbox.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-pwbox.Tpo src/trunnel/$(DEPDIR)/src_trunnel_libor_trunnel_a-pwbox.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/trunnel/pwbox.c' object='src/trunnel/src_trunnel_libor_trunnel_a-pwbox.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_trunnel_libor_trunnel_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/trunnel/src_trunnel_libor_trunnel_a-pwbox.obj `if test -f 'src/trunnel/pwbox.c'; then $(CYGPATH_W) 'src/trunnel/pwbox.c'; else $(CYGPATH_W) '$(srcdir)/src/trunnel/pwbox.c'; fi` src/or/src_or_tor_cov-tor_main.o: src/or/tor_main.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_tor_cov_CPPFLAGS) $(CPPFLAGS) $(src_or_tor_cov_CFLAGS) $(CFLAGS) -MT src/or/src_or_tor_cov-tor_main.o -MD -MP -MF src/or/$(DEPDIR)/src_or_tor_cov-tor_main.Tpo -c -o src/or/src_or_tor_cov-tor_main.o `test -f 'src/or/tor_main.c' || echo '$(srcdir)/'`src/or/tor_main.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_tor_cov-tor_main.Tpo src/or/$(DEPDIR)/src_or_tor_cov-tor_main.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/tor_main.c' object='src/or/src_or_tor_cov-tor_main.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_tor_cov_CPPFLAGS) $(CPPFLAGS) $(src_or_tor_cov_CFLAGS) $(CFLAGS) -c -o src/or/src_or_tor_cov-tor_main.o `test -f 'src/or/tor_main.c' || echo '$(srcdir)/'`src/or/tor_main.c src/or/src_or_tor_cov-tor_main.obj: src/or/tor_main.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_tor_cov_CPPFLAGS) $(CPPFLAGS) $(src_or_tor_cov_CFLAGS) $(CFLAGS) -MT src/or/src_or_tor_cov-tor_main.obj -MD -MP -MF src/or/$(DEPDIR)/src_or_tor_cov-tor_main.Tpo -c -o src/or/src_or_tor_cov-tor_main.obj `if test -f 'src/or/tor_main.c'; then $(CYGPATH_W) 'src/or/tor_main.c'; else $(CYGPATH_W) '$(srcdir)/src/or/tor_main.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/or/$(DEPDIR)/src_or_tor_cov-tor_main.Tpo src/or/$(DEPDIR)/src_or_tor_cov-tor_main.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/or/tor_main.c' object='src/or/src_or_tor_cov-tor_main.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_or_tor_cov_CPPFLAGS) $(CPPFLAGS) $(src_or_tor_cov_CFLAGS) $(CFLAGS) -c -o src/or/src_or_tor_cov-tor_main.obj `if test -f 'src/or/tor_main.c'; then $(CYGPATH_W) 'src/or/tor_main.c'; else $(CYGPATH_W) '$(srcdir)/src/or/tor_main.c'; fi` src/test/src_test_test-test.o: src/test/test.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test.Tpo -c -o src/test/src_test_test-test.o `test -f 'src/test/test.c' || echo '$(srcdir)/'`src/test/test.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test.Tpo src/test/$(DEPDIR)/src_test_test-test.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test.c' object='src/test/src_test_test-test.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test.o `test -f 'src/test/test.c' || echo '$(srcdir)/'`src/test/test.c src/test/src_test_test-test.obj: src/test/test.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test.Tpo -c -o src/test/src_test_test-test.obj `if test -f 'src/test/test.c'; then $(CYGPATH_W) 'src/test/test.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test.Tpo src/test/$(DEPDIR)/src_test_test-test.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test.c' object='src/test/src_test_test-test.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test.obj `if test -f 'src/test/test.c'; then $(CYGPATH_W) 'src/test/test.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test.c'; fi` src/test/src_test_test-test_accounting.o: src/test/test_accounting.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_accounting.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_accounting.Tpo -c -o src/test/src_test_test-test_accounting.o `test -f 'src/test/test_accounting.c' || echo '$(srcdir)/'`src/test/test_accounting.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_accounting.Tpo src/test/$(DEPDIR)/src_test_test-test_accounting.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_accounting.c' object='src/test/src_test_test-test_accounting.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_accounting.o `test -f 'src/test/test_accounting.c' || echo '$(srcdir)/'`src/test/test_accounting.c src/test/src_test_test-test_accounting.obj: src/test/test_accounting.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_accounting.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_accounting.Tpo -c -o src/test/src_test_test-test_accounting.obj `if test -f 'src/test/test_accounting.c'; then $(CYGPATH_W) 'src/test/test_accounting.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_accounting.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_accounting.Tpo src/test/$(DEPDIR)/src_test_test-test_accounting.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_accounting.c' object='src/test/src_test_test-test_accounting.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_accounting.obj `if test -f 'src/test/test_accounting.c'; then $(CYGPATH_W) 'src/test/test_accounting.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_accounting.c'; fi` src/test/src_test_test-test_addr.o: src/test/test_addr.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_addr.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_addr.Tpo -c -o src/test/src_test_test-test_addr.o `test -f 'src/test/test_addr.c' || echo '$(srcdir)/'`src/test/test_addr.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_addr.Tpo src/test/$(DEPDIR)/src_test_test-test_addr.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_addr.c' object='src/test/src_test_test-test_addr.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_addr.o `test -f 'src/test/test_addr.c' || echo '$(srcdir)/'`src/test/test_addr.c src/test/src_test_test-test_addr.obj: src/test/test_addr.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_addr.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_addr.Tpo -c -o src/test/src_test_test-test_addr.obj `if test -f 'src/test/test_addr.c'; then $(CYGPATH_W) 'src/test/test_addr.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_addr.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_addr.Tpo src/test/$(DEPDIR)/src_test_test-test_addr.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_addr.c' object='src/test/src_test_test-test_addr.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_addr.obj `if test -f 'src/test/test_addr.c'; then $(CYGPATH_W) 'src/test/test_addr.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_addr.c'; fi` src/test/src_test_test-test_address.o: src/test/test_address.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_address.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_address.Tpo -c -o src/test/src_test_test-test_address.o `test -f 'src/test/test_address.c' || echo '$(srcdir)/'`src/test/test_address.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_address.Tpo src/test/$(DEPDIR)/src_test_test-test_address.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_address.c' object='src/test/src_test_test-test_address.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_address.o `test -f 'src/test/test_address.c' || echo '$(srcdir)/'`src/test/test_address.c src/test/src_test_test-test_address.obj: src/test/test_address.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_address.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_address.Tpo -c -o src/test/src_test_test-test_address.obj `if test -f 'src/test/test_address.c'; then $(CYGPATH_W) 'src/test/test_address.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_address.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_address.Tpo src/test/$(DEPDIR)/src_test_test-test_address.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_address.c' object='src/test/src_test_test-test_address.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_address.obj `if test -f 'src/test/test_address.c'; then $(CYGPATH_W) 'src/test/test_address.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_address.c'; fi` src/test/src_test_test-test_buffers.o: src/test/test_buffers.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_buffers.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_buffers.Tpo -c -o src/test/src_test_test-test_buffers.o `test -f 'src/test/test_buffers.c' || echo '$(srcdir)/'`src/test/test_buffers.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_buffers.Tpo src/test/$(DEPDIR)/src_test_test-test_buffers.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_buffers.c' object='src/test/src_test_test-test_buffers.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_buffers.o `test -f 'src/test/test_buffers.c' || echo '$(srcdir)/'`src/test/test_buffers.c src/test/src_test_test-test_buffers.obj: src/test/test_buffers.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_buffers.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_buffers.Tpo -c -o src/test/src_test_test-test_buffers.obj `if test -f 'src/test/test_buffers.c'; then $(CYGPATH_W) 'src/test/test_buffers.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_buffers.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_buffers.Tpo src/test/$(DEPDIR)/src_test_test-test_buffers.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_buffers.c' object='src/test/src_test_test-test_buffers.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_buffers.obj `if test -f 'src/test/test_buffers.c'; then $(CYGPATH_W) 'src/test/test_buffers.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_buffers.c'; fi` src/test/src_test_test-test_cell_formats.o: src/test/test_cell_formats.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_cell_formats.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_cell_formats.Tpo -c -o src/test/src_test_test-test_cell_formats.o `test -f 'src/test/test_cell_formats.c' || echo '$(srcdir)/'`src/test/test_cell_formats.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_cell_formats.Tpo src/test/$(DEPDIR)/src_test_test-test_cell_formats.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_cell_formats.c' object='src/test/src_test_test-test_cell_formats.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_cell_formats.o `test -f 'src/test/test_cell_formats.c' || echo '$(srcdir)/'`src/test/test_cell_formats.c src/test/src_test_test-test_cell_formats.obj: src/test/test_cell_formats.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_cell_formats.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_cell_formats.Tpo -c -o src/test/src_test_test-test_cell_formats.obj `if test -f 'src/test/test_cell_formats.c'; then $(CYGPATH_W) 'src/test/test_cell_formats.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_cell_formats.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_cell_formats.Tpo src/test/$(DEPDIR)/src_test_test-test_cell_formats.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_cell_formats.c' object='src/test/src_test_test-test_cell_formats.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_cell_formats.obj `if test -f 'src/test/test_cell_formats.c'; then $(CYGPATH_W) 'src/test/test_cell_formats.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_cell_formats.c'; fi` src/test/src_test_test-test_cell_queue.o: src/test/test_cell_queue.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_cell_queue.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_cell_queue.Tpo -c -o src/test/src_test_test-test_cell_queue.o `test -f 'src/test/test_cell_queue.c' || echo '$(srcdir)/'`src/test/test_cell_queue.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_cell_queue.Tpo src/test/$(DEPDIR)/src_test_test-test_cell_queue.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_cell_queue.c' object='src/test/src_test_test-test_cell_queue.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_cell_queue.o `test -f 'src/test/test_cell_queue.c' || echo '$(srcdir)/'`src/test/test_cell_queue.c src/test/src_test_test-test_cell_queue.obj: src/test/test_cell_queue.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_cell_queue.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_cell_queue.Tpo -c -o src/test/src_test_test-test_cell_queue.obj `if test -f 'src/test/test_cell_queue.c'; then $(CYGPATH_W) 'src/test/test_cell_queue.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_cell_queue.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_cell_queue.Tpo src/test/$(DEPDIR)/src_test_test-test_cell_queue.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_cell_queue.c' object='src/test/src_test_test-test_cell_queue.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_cell_queue.obj `if test -f 'src/test/test_cell_queue.c'; then $(CYGPATH_W) 'src/test/test_cell_queue.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_cell_queue.c'; fi` src/test/src_test_test-test_channel.o: src/test/test_channel.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_channel.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_channel.Tpo -c -o src/test/src_test_test-test_channel.o `test -f 'src/test/test_channel.c' || echo '$(srcdir)/'`src/test/test_channel.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_channel.Tpo src/test/$(DEPDIR)/src_test_test-test_channel.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_channel.c' object='src/test/src_test_test-test_channel.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_channel.o `test -f 'src/test/test_channel.c' || echo '$(srcdir)/'`src/test/test_channel.c src/test/src_test_test-test_channel.obj: src/test/test_channel.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_channel.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_channel.Tpo -c -o src/test/src_test_test-test_channel.obj `if test -f 'src/test/test_channel.c'; then $(CYGPATH_W) 'src/test/test_channel.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_channel.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_channel.Tpo src/test/$(DEPDIR)/src_test_test-test_channel.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_channel.c' object='src/test/src_test_test-test_channel.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_channel.obj `if test -f 'src/test/test_channel.c'; then $(CYGPATH_W) 'src/test/test_channel.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_channel.c'; fi` src/test/src_test_test-test_channeltls.o: src/test/test_channeltls.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_channeltls.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_channeltls.Tpo -c -o src/test/src_test_test-test_channeltls.o `test -f 'src/test/test_channeltls.c' || echo '$(srcdir)/'`src/test/test_channeltls.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_channeltls.Tpo src/test/$(DEPDIR)/src_test_test-test_channeltls.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_channeltls.c' object='src/test/src_test_test-test_channeltls.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_channeltls.o `test -f 'src/test/test_channeltls.c' || echo '$(srcdir)/'`src/test/test_channeltls.c src/test/src_test_test-test_channeltls.obj: src/test/test_channeltls.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_channeltls.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_channeltls.Tpo -c -o src/test/src_test_test-test_channeltls.obj `if test -f 'src/test/test_channeltls.c'; then $(CYGPATH_W) 'src/test/test_channeltls.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_channeltls.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_channeltls.Tpo src/test/$(DEPDIR)/src_test_test-test_channeltls.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_channeltls.c' object='src/test/src_test_test-test_channeltls.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_channeltls.obj `if test -f 'src/test/test_channeltls.c'; then $(CYGPATH_W) 'src/test/test_channeltls.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_channeltls.c'; fi` src/test/src_test_test-test_checkdir.o: src/test/test_checkdir.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_checkdir.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_checkdir.Tpo -c -o src/test/src_test_test-test_checkdir.o `test -f 'src/test/test_checkdir.c' || echo '$(srcdir)/'`src/test/test_checkdir.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_checkdir.Tpo src/test/$(DEPDIR)/src_test_test-test_checkdir.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_checkdir.c' object='src/test/src_test_test-test_checkdir.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_checkdir.o `test -f 'src/test/test_checkdir.c' || echo '$(srcdir)/'`src/test/test_checkdir.c src/test/src_test_test-test_checkdir.obj: src/test/test_checkdir.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_checkdir.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_checkdir.Tpo -c -o src/test/src_test_test-test_checkdir.obj `if test -f 'src/test/test_checkdir.c'; then $(CYGPATH_W) 'src/test/test_checkdir.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_checkdir.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_checkdir.Tpo src/test/$(DEPDIR)/src_test_test-test_checkdir.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_checkdir.c' object='src/test/src_test_test-test_checkdir.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_checkdir.obj `if test -f 'src/test/test_checkdir.c'; then $(CYGPATH_W) 'src/test/test_checkdir.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_checkdir.c'; fi` src/test/src_test_test-test_circuitlist.o: src/test/test_circuitlist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_circuitlist.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_circuitlist.Tpo -c -o src/test/src_test_test-test_circuitlist.o `test -f 'src/test/test_circuitlist.c' || echo '$(srcdir)/'`src/test/test_circuitlist.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_circuitlist.Tpo src/test/$(DEPDIR)/src_test_test-test_circuitlist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_circuitlist.c' object='src/test/src_test_test-test_circuitlist.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_circuitlist.o `test -f 'src/test/test_circuitlist.c' || echo '$(srcdir)/'`src/test/test_circuitlist.c src/test/src_test_test-test_circuitlist.obj: src/test/test_circuitlist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_circuitlist.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_circuitlist.Tpo -c -o src/test/src_test_test-test_circuitlist.obj `if test -f 'src/test/test_circuitlist.c'; then $(CYGPATH_W) 'src/test/test_circuitlist.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_circuitlist.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_circuitlist.Tpo src/test/$(DEPDIR)/src_test_test-test_circuitlist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_circuitlist.c' object='src/test/src_test_test-test_circuitlist.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_circuitlist.obj `if test -f 'src/test/test_circuitlist.c'; then $(CYGPATH_W) 'src/test/test_circuitlist.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_circuitlist.c'; fi` src/test/src_test_test-test_circuitmux.o: src/test/test_circuitmux.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_circuitmux.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_circuitmux.Tpo -c -o src/test/src_test_test-test_circuitmux.o `test -f 'src/test/test_circuitmux.c' || echo '$(srcdir)/'`src/test/test_circuitmux.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_circuitmux.Tpo src/test/$(DEPDIR)/src_test_test-test_circuitmux.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_circuitmux.c' object='src/test/src_test_test-test_circuitmux.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_circuitmux.o `test -f 'src/test/test_circuitmux.c' || echo '$(srcdir)/'`src/test/test_circuitmux.c src/test/src_test_test-test_circuitmux.obj: src/test/test_circuitmux.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_circuitmux.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_circuitmux.Tpo -c -o src/test/src_test_test-test_circuitmux.obj `if test -f 'src/test/test_circuitmux.c'; then $(CYGPATH_W) 'src/test/test_circuitmux.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_circuitmux.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_circuitmux.Tpo src/test/$(DEPDIR)/src_test_test-test_circuitmux.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_circuitmux.c' object='src/test/src_test_test-test_circuitmux.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_circuitmux.obj `if test -f 'src/test/test_circuitmux.c'; then $(CYGPATH_W) 'src/test/test_circuitmux.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_circuitmux.c'; fi` src/test/src_test_test-test_config.o: src/test/test_config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_config.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_config.Tpo -c -o src/test/src_test_test-test_config.o `test -f 'src/test/test_config.c' || echo '$(srcdir)/'`src/test/test_config.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_config.Tpo src/test/$(DEPDIR)/src_test_test-test_config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_config.c' object='src/test/src_test_test-test_config.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_config.o `test -f 'src/test/test_config.c' || echo '$(srcdir)/'`src/test/test_config.c src/test/src_test_test-test_config.obj: src/test/test_config.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_config.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_config.Tpo -c -o src/test/src_test_test-test_config.obj `if test -f 'src/test/test_config.c'; then $(CYGPATH_W) 'src/test/test_config.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_config.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_config.Tpo src/test/$(DEPDIR)/src_test_test-test_config.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_config.c' object='src/test/src_test_test-test_config.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_config.obj `if test -f 'src/test/test_config.c'; then $(CYGPATH_W) 'src/test/test_config.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_config.c'; fi` src/test/src_test_test-test_containers.o: src/test/test_containers.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_containers.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_containers.Tpo -c -o src/test/src_test_test-test_containers.o `test -f 'src/test/test_containers.c' || echo '$(srcdir)/'`src/test/test_containers.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_containers.Tpo src/test/$(DEPDIR)/src_test_test-test_containers.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_containers.c' object='src/test/src_test_test-test_containers.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_containers.o `test -f 'src/test/test_containers.c' || echo '$(srcdir)/'`src/test/test_containers.c src/test/src_test_test-test_containers.obj: src/test/test_containers.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_containers.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_containers.Tpo -c -o src/test/src_test_test-test_containers.obj `if test -f 'src/test/test_containers.c'; then $(CYGPATH_W) 'src/test/test_containers.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_containers.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_containers.Tpo src/test/$(DEPDIR)/src_test_test-test_containers.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_containers.c' object='src/test/src_test_test-test_containers.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_containers.obj `if test -f 'src/test/test_containers.c'; then $(CYGPATH_W) 'src/test/test_containers.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_containers.c'; fi` src/test/src_test_test-test_controller.o: src/test/test_controller.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_controller.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_controller.Tpo -c -o src/test/src_test_test-test_controller.o `test -f 'src/test/test_controller.c' || echo '$(srcdir)/'`src/test/test_controller.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_controller.Tpo src/test/$(DEPDIR)/src_test_test-test_controller.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_controller.c' object='src/test/src_test_test-test_controller.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_controller.o `test -f 'src/test/test_controller.c' || echo '$(srcdir)/'`src/test/test_controller.c src/test/src_test_test-test_controller.obj: src/test/test_controller.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_controller.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_controller.Tpo -c -o src/test/src_test_test-test_controller.obj `if test -f 'src/test/test_controller.c'; then $(CYGPATH_W) 'src/test/test_controller.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_controller.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_controller.Tpo src/test/$(DEPDIR)/src_test_test-test_controller.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_controller.c' object='src/test/src_test_test-test_controller.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_controller.obj `if test -f 'src/test/test_controller.c'; then $(CYGPATH_W) 'src/test/test_controller.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_controller.c'; fi` src/test/src_test_test-test_controller_events.o: src/test/test_controller_events.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_controller_events.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_controller_events.Tpo -c -o src/test/src_test_test-test_controller_events.o `test -f 'src/test/test_controller_events.c' || echo '$(srcdir)/'`src/test/test_controller_events.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_controller_events.Tpo src/test/$(DEPDIR)/src_test_test-test_controller_events.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_controller_events.c' object='src/test/src_test_test-test_controller_events.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_controller_events.o `test -f 'src/test/test_controller_events.c' || echo '$(srcdir)/'`src/test/test_controller_events.c src/test/src_test_test-test_controller_events.obj: src/test/test_controller_events.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_controller_events.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_controller_events.Tpo -c -o src/test/src_test_test-test_controller_events.obj `if test -f 'src/test/test_controller_events.c'; then $(CYGPATH_W) 'src/test/test_controller_events.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_controller_events.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_controller_events.Tpo src/test/$(DEPDIR)/src_test_test-test_controller_events.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_controller_events.c' object='src/test/src_test_test-test_controller_events.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_controller_events.obj `if test -f 'src/test/test_controller_events.c'; then $(CYGPATH_W) 'src/test/test_controller_events.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_controller_events.c'; fi` src/test/src_test_test-test_crypto.o: src/test/test_crypto.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_crypto.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_crypto.Tpo -c -o src/test/src_test_test-test_crypto.o `test -f 'src/test/test_crypto.c' || echo '$(srcdir)/'`src/test/test_crypto.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_crypto.Tpo src/test/$(DEPDIR)/src_test_test-test_crypto.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_crypto.c' object='src/test/src_test_test-test_crypto.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_crypto.o `test -f 'src/test/test_crypto.c' || echo '$(srcdir)/'`src/test/test_crypto.c src/test/src_test_test-test_crypto.obj: src/test/test_crypto.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_crypto.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_crypto.Tpo -c -o src/test/src_test_test-test_crypto.obj `if test -f 'src/test/test_crypto.c'; then $(CYGPATH_W) 'src/test/test_crypto.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_crypto.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_crypto.Tpo src/test/$(DEPDIR)/src_test_test-test_crypto.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_crypto.c' object='src/test/src_test_test-test_crypto.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_crypto.obj `if test -f 'src/test/test_crypto.c'; then $(CYGPATH_W) 'src/test/test_crypto.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_crypto.c'; fi` src/test/src_test_test-test_data.o: src/test/test_data.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_data.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_data.Tpo -c -o src/test/src_test_test-test_data.o `test -f 'src/test/test_data.c' || echo '$(srcdir)/'`src/test/test_data.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_data.Tpo src/test/$(DEPDIR)/src_test_test-test_data.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_data.c' object='src/test/src_test_test-test_data.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_data.o `test -f 'src/test/test_data.c' || echo '$(srcdir)/'`src/test/test_data.c src/test/src_test_test-test_data.obj: src/test/test_data.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_data.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_data.Tpo -c -o src/test/src_test_test-test_data.obj `if test -f 'src/test/test_data.c'; then $(CYGPATH_W) 'src/test/test_data.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_data.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_data.Tpo src/test/$(DEPDIR)/src_test_test-test_data.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_data.c' object='src/test/src_test_test-test_data.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_data.obj `if test -f 'src/test/test_data.c'; then $(CYGPATH_W) 'src/test/test_data.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_data.c'; fi` src/test/src_test_test-test_dir.o: src/test/test_dir.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_dir.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_dir.Tpo -c -o src/test/src_test_test-test_dir.o `test -f 'src/test/test_dir.c' || echo '$(srcdir)/'`src/test/test_dir.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_dir.Tpo src/test/$(DEPDIR)/src_test_test-test_dir.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_dir.c' object='src/test/src_test_test-test_dir.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_dir.o `test -f 'src/test/test_dir.c' || echo '$(srcdir)/'`src/test/test_dir.c src/test/src_test_test-test_dir.obj: src/test/test_dir.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_dir.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_dir.Tpo -c -o src/test/src_test_test-test_dir.obj `if test -f 'src/test/test_dir.c'; then $(CYGPATH_W) 'src/test/test_dir.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_dir.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_dir.Tpo src/test/$(DEPDIR)/src_test_test-test_dir.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_dir.c' object='src/test/src_test_test-test_dir.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_dir.obj `if test -f 'src/test/test_dir.c'; then $(CYGPATH_W) 'src/test/test_dir.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_dir.c'; fi` src/test/src_test_test-test_entryconn.o: src/test/test_entryconn.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_entryconn.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_entryconn.Tpo -c -o src/test/src_test_test-test_entryconn.o `test -f 'src/test/test_entryconn.c' || echo '$(srcdir)/'`src/test/test_entryconn.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_entryconn.Tpo src/test/$(DEPDIR)/src_test_test-test_entryconn.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_entryconn.c' object='src/test/src_test_test-test_entryconn.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_entryconn.o `test -f 'src/test/test_entryconn.c' || echo '$(srcdir)/'`src/test/test_entryconn.c src/test/src_test_test-test_entryconn.obj: src/test/test_entryconn.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_entryconn.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_entryconn.Tpo -c -o src/test/src_test_test-test_entryconn.obj `if test -f 'src/test/test_entryconn.c'; then $(CYGPATH_W) 'src/test/test_entryconn.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_entryconn.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_entryconn.Tpo src/test/$(DEPDIR)/src_test_test-test_entryconn.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_entryconn.c' object='src/test/src_test_test-test_entryconn.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_entryconn.obj `if test -f 'src/test/test_entryconn.c'; then $(CYGPATH_W) 'src/test/test_entryconn.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_entryconn.c'; fi` src/test/src_test_test-test_entrynodes.o: src/test/test_entrynodes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_entrynodes.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_entrynodes.Tpo -c -o src/test/src_test_test-test_entrynodes.o `test -f 'src/test/test_entrynodes.c' || echo '$(srcdir)/'`src/test/test_entrynodes.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_entrynodes.Tpo src/test/$(DEPDIR)/src_test_test-test_entrynodes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_entrynodes.c' object='src/test/src_test_test-test_entrynodes.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_entrynodes.o `test -f 'src/test/test_entrynodes.c' || echo '$(srcdir)/'`src/test/test_entrynodes.c src/test/src_test_test-test_entrynodes.obj: src/test/test_entrynodes.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_entrynodes.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_entrynodes.Tpo -c -o src/test/src_test_test-test_entrynodes.obj `if test -f 'src/test/test_entrynodes.c'; then $(CYGPATH_W) 'src/test/test_entrynodes.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_entrynodes.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_entrynodes.Tpo src/test/$(DEPDIR)/src_test_test-test_entrynodes.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_entrynodes.c' object='src/test/src_test_test-test_entrynodes.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_entrynodes.obj `if test -f 'src/test/test_entrynodes.c'; then $(CYGPATH_W) 'src/test/test_entrynodes.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_entrynodes.c'; fi` src/test/src_test_test-test_guardfraction.o: src/test/test_guardfraction.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_guardfraction.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_guardfraction.Tpo -c -o src/test/src_test_test-test_guardfraction.o `test -f 'src/test/test_guardfraction.c' || echo '$(srcdir)/'`src/test/test_guardfraction.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_guardfraction.Tpo src/test/$(DEPDIR)/src_test_test-test_guardfraction.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_guardfraction.c' object='src/test/src_test_test-test_guardfraction.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_guardfraction.o `test -f 'src/test/test_guardfraction.c' || echo '$(srcdir)/'`src/test/test_guardfraction.c src/test/src_test_test-test_guardfraction.obj: src/test/test_guardfraction.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_guardfraction.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_guardfraction.Tpo -c -o src/test/src_test_test-test_guardfraction.obj `if test -f 'src/test/test_guardfraction.c'; then $(CYGPATH_W) 'src/test/test_guardfraction.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_guardfraction.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_guardfraction.Tpo src/test/$(DEPDIR)/src_test_test-test_guardfraction.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_guardfraction.c' object='src/test/src_test_test-test_guardfraction.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_guardfraction.obj `if test -f 'src/test/test_guardfraction.c'; then $(CYGPATH_W) 'src/test/test_guardfraction.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_guardfraction.c'; fi` src/test/src_test_test-test_extorport.o: src/test/test_extorport.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_extorport.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_extorport.Tpo -c -o src/test/src_test_test-test_extorport.o `test -f 'src/test/test_extorport.c' || echo '$(srcdir)/'`src/test/test_extorport.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_extorport.Tpo src/test/$(DEPDIR)/src_test_test-test_extorport.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_extorport.c' object='src/test/src_test_test-test_extorport.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_extorport.o `test -f 'src/test/test_extorport.c' || echo '$(srcdir)/'`src/test/test_extorport.c src/test/src_test_test-test_extorport.obj: src/test/test_extorport.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_extorport.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_extorport.Tpo -c -o src/test/src_test_test-test_extorport.obj `if test -f 'src/test/test_extorport.c'; then $(CYGPATH_W) 'src/test/test_extorport.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_extorport.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_extorport.Tpo src/test/$(DEPDIR)/src_test_test-test_extorport.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_extorport.c' object='src/test/src_test_test-test_extorport.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_extorport.obj `if test -f 'src/test/test_extorport.c'; then $(CYGPATH_W) 'src/test/test_extorport.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_extorport.c'; fi` src/test/src_test_test-test_hs.o: src/test/test_hs.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_hs.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_hs.Tpo -c -o src/test/src_test_test-test_hs.o `test -f 'src/test/test_hs.c' || echo '$(srcdir)/'`src/test/test_hs.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_hs.Tpo src/test/$(DEPDIR)/src_test_test-test_hs.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_hs.c' object='src/test/src_test_test-test_hs.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_hs.o `test -f 'src/test/test_hs.c' || echo '$(srcdir)/'`src/test/test_hs.c src/test/src_test_test-test_hs.obj: src/test/test_hs.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_hs.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_hs.Tpo -c -o src/test/src_test_test-test_hs.obj `if test -f 'src/test/test_hs.c'; then $(CYGPATH_W) 'src/test/test_hs.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_hs.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_hs.Tpo src/test/$(DEPDIR)/src_test_test-test_hs.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_hs.c' object='src/test/src_test_test-test_hs.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_hs.obj `if test -f 'src/test/test_hs.c'; then $(CYGPATH_W) 'src/test/test_hs.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_hs.c'; fi` src/test/src_test_test-test_introduce.o: src/test/test_introduce.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_introduce.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_introduce.Tpo -c -o src/test/src_test_test-test_introduce.o `test -f 'src/test/test_introduce.c' || echo '$(srcdir)/'`src/test/test_introduce.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_introduce.Tpo src/test/$(DEPDIR)/src_test_test-test_introduce.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_introduce.c' object='src/test/src_test_test-test_introduce.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_introduce.o `test -f 'src/test/test_introduce.c' || echo '$(srcdir)/'`src/test/test_introduce.c src/test/src_test_test-test_introduce.obj: src/test/test_introduce.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_introduce.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_introduce.Tpo -c -o src/test/src_test_test-test_introduce.obj `if test -f 'src/test/test_introduce.c'; then $(CYGPATH_W) 'src/test/test_introduce.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_introduce.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_introduce.Tpo src/test/$(DEPDIR)/src_test_test-test_introduce.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_introduce.c' object='src/test/src_test_test-test_introduce.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_introduce.obj `if test -f 'src/test/test_introduce.c'; then $(CYGPATH_W) 'src/test/test_introduce.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_introduce.c'; fi` src/test/src_test_test-test_keypin.o: src/test/test_keypin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_keypin.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_keypin.Tpo -c -o src/test/src_test_test-test_keypin.o `test -f 'src/test/test_keypin.c' || echo '$(srcdir)/'`src/test/test_keypin.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_keypin.Tpo src/test/$(DEPDIR)/src_test_test-test_keypin.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_keypin.c' object='src/test/src_test_test-test_keypin.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_keypin.o `test -f 'src/test/test_keypin.c' || echo '$(srcdir)/'`src/test/test_keypin.c src/test/src_test_test-test_keypin.obj: src/test/test_keypin.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_keypin.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_keypin.Tpo -c -o src/test/src_test_test-test_keypin.obj `if test -f 'src/test/test_keypin.c'; then $(CYGPATH_W) 'src/test/test_keypin.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_keypin.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_keypin.Tpo src/test/$(DEPDIR)/src_test_test-test_keypin.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_keypin.c' object='src/test/src_test_test-test_keypin.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_keypin.obj `if test -f 'src/test/test_keypin.c'; then $(CYGPATH_W) 'src/test/test_keypin.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_keypin.c'; fi` src/test/src_test_test-test_link_handshake.o: src/test/test_link_handshake.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_link_handshake.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_link_handshake.Tpo -c -o src/test/src_test_test-test_link_handshake.o `test -f 'src/test/test_link_handshake.c' || echo '$(srcdir)/'`src/test/test_link_handshake.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_link_handshake.Tpo src/test/$(DEPDIR)/src_test_test-test_link_handshake.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_link_handshake.c' object='src/test/src_test_test-test_link_handshake.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_link_handshake.o `test -f 'src/test/test_link_handshake.c' || echo '$(srcdir)/'`src/test/test_link_handshake.c src/test/src_test_test-test_link_handshake.obj: src/test/test_link_handshake.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_link_handshake.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_link_handshake.Tpo -c -o src/test/src_test_test-test_link_handshake.obj `if test -f 'src/test/test_link_handshake.c'; then $(CYGPATH_W) 'src/test/test_link_handshake.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_link_handshake.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_link_handshake.Tpo src/test/$(DEPDIR)/src_test_test-test_link_handshake.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_link_handshake.c' object='src/test/src_test_test-test_link_handshake.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_link_handshake.obj `if test -f 'src/test/test_link_handshake.c'; then $(CYGPATH_W) 'src/test/test_link_handshake.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_link_handshake.c'; fi` src/test/src_test_test-test_logging.o: src/test/test_logging.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_logging.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_logging.Tpo -c -o src/test/src_test_test-test_logging.o `test -f 'src/test/test_logging.c' || echo '$(srcdir)/'`src/test/test_logging.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_logging.Tpo src/test/$(DEPDIR)/src_test_test-test_logging.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_logging.c' object='src/test/src_test_test-test_logging.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_logging.o `test -f 'src/test/test_logging.c' || echo '$(srcdir)/'`src/test/test_logging.c src/test/src_test_test-test_logging.obj: src/test/test_logging.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_logging.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_logging.Tpo -c -o src/test/src_test_test-test_logging.obj `if test -f 'src/test/test_logging.c'; then $(CYGPATH_W) 'src/test/test_logging.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_logging.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_logging.Tpo src/test/$(DEPDIR)/src_test_test-test_logging.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_logging.c' object='src/test/src_test_test-test_logging.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_logging.obj `if test -f 'src/test/test_logging.c'; then $(CYGPATH_W) 'src/test/test_logging.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_logging.c'; fi` src/test/src_test_test-test_microdesc.o: src/test/test_microdesc.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_microdesc.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_microdesc.Tpo -c -o src/test/src_test_test-test_microdesc.o `test -f 'src/test/test_microdesc.c' || echo '$(srcdir)/'`src/test/test_microdesc.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_microdesc.Tpo src/test/$(DEPDIR)/src_test_test-test_microdesc.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_microdesc.c' object='src/test/src_test_test-test_microdesc.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_microdesc.o `test -f 'src/test/test_microdesc.c' || echo '$(srcdir)/'`src/test/test_microdesc.c src/test/src_test_test-test_microdesc.obj: src/test/test_microdesc.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_microdesc.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_microdesc.Tpo -c -o src/test/src_test_test-test_microdesc.obj `if test -f 'src/test/test_microdesc.c'; then $(CYGPATH_W) 'src/test/test_microdesc.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_microdesc.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_microdesc.Tpo src/test/$(DEPDIR)/src_test_test-test_microdesc.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_microdesc.c' object='src/test/src_test_test-test_microdesc.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_microdesc.obj `if test -f 'src/test/test_microdesc.c'; then $(CYGPATH_W) 'src/test/test_microdesc.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_microdesc.c'; fi` src/test/src_test_test-test_nodelist.o: src/test/test_nodelist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_nodelist.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_nodelist.Tpo -c -o src/test/src_test_test-test_nodelist.o `test -f 'src/test/test_nodelist.c' || echo '$(srcdir)/'`src/test/test_nodelist.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_nodelist.Tpo src/test/$(DEPDIR)/src_test_test-test_nodelist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_nodelist.c' object='src/test/src_test_test-test_nodelist.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_nodelist.o `test -f 'src/test/test_nodelist.c' || echo '$(srcdir)/'`src/test/test_nodelist.c src/test/src_test_test-test_nodelist.obj: src/test/test_nodelist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_nodelist.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_nodelist.Tpo -c -o src/test/src_test_test-test_nodelist.obj `if test -f 'src/test/test_nodelist.c'; then $(CYGPATH_W) 'src/test/test_nodelist.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_nodelist.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_nodelist.Tpo src/test/$(DEPDIR)/src_test_test-test_nodelist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_nodelist.c' object='src/test/src_test_test-test_nodelist.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_nodelist.obj `if test -f 'src/test/test_nodelist.c'; then $(CYGPATH_W) 'src/test/test_nodelist.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_nodelist.c'; fi` src/test/src_test_test-test_oom.o: src/test/test_oom.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_oom.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_oom.Tpo -c -o src/test/src_test_test-test_oom.o `test -f 'src/test/test_oom.c' || echo '$(srcdir)/'`src/test/test_oom.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_oom.Tpo src/test/$(DEPDIR)/src_test_test-test_oom.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_oom.c' object='src/test/src_test_test-test_oom.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_oom.o `test -f 'src/test/test_oom.c' || echo '$(srcdir)/'`src/test/test_oom.c src/test/src_test_test-test_oom.obj: src/test/test_oom.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_oom.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_oom.Tpo -c -o src/test/src_test_test-test_oom.obj `if test -f 'src/test/test_oom.c'; then $(CYGPATH_W) 'src/test/test_oom.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_oom.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_oom.Tpo src/test/$(DEPDIR)/src_test_test-test_oom.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_oom.c' object='src/test/src_test_test-test_oom.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_oom.obj `if test -f 'src/test/test_oom.c'; then $(CYGPATH_W) 'src/test/test_oom.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_oom.c'; fi` src/test/src_test_test-test_options.o: src/test/test_options.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_options.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_options.Tpo -c -o src/test/src_test_test-test_options.o `test -f 'src/test/test_options.c' || echo '$(srcdir)/'`src/test/test_options.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_options.Tpo src/test/$(DEPDIR)/src_test_test-test_options.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_options.c' object='src/test/src_test_test-test_options.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_options.o `test -f 'src/test/test_options.c' || echo '$(srcdir)/'`src/test/test_options.c src/test/src_test_test-test_options.obj: src/test/test_options.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_options.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_options.Tpo -c -o src/test/src_test_test-test_options.obj `if test -f 'src/test/test_options.c'; then $(CYGPATH_W) 'src/test/test_options.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_options.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_options.Tpo src/test/$(DEPDIR)/src_test_test-test_options.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_options.c' object='src/test/src_test_test-test_options.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_options.obj `if test -f 'src/test/test_options.c'; then $(CYGPATH_W) 'src/test/test_options.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_options.c'; fi` src/test/src_test_test-test_policy.o: src/test/test_policy.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_policy.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_policy.Tpo -c -o src/test/src_test_test-test_policy.o `test -f 'src/test/test_policy.c' || echo '$(srcdir)/'`src/test/test_policy.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_policy.Tpo src/test/$(DEPDIR)/src_test_test-test_policy.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_policy.c' object='src/test/src_test_test-test_policy.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_policy.o `test -f 'src/test/test_policy.c' || echo '$(srcdir)/'`src/test/test_policy.c src/test/src_test_test-test_policy.obj: src/test/test_policy.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_policy.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_policy.Tpo -c -o src/test/src_test_test-test_policy.obj `if test -f 'src/test/test_policy.c'; then $(CYGPATH_W) 'src/test/test_policy.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_policy.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_policy.Tpo src/test/$(DEPDIR)/src_test_test-test_policy.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_policy.c' object='src/test/src_test_test-test_policy.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_policy.obj `if test -f 'src/test/test_policy.c'; then $(CYGPATH_W) 'src/test/test_policy.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_policy.c'; fi` src/test/src_test_test-test_pt.o: src/test/test_pt.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_pt.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_pt.Tpo -c -o src/test/src_test_test-test_pt.o `test -f 'src/test/test_pt.c' || echo '$(srcdir)/'`src/test/test_pt.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_pt.Tpo src/test/$(DEPDIR)/src_test_test-test_pt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_pt.c' object='src/test/src_test_test-test_pt.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_pt.o `test -f 'src/test/test_pt.c' || echo '$(srcdir)/'`src/test/test_pt.c src/test/src_test_test-test_pt.obj: src/test/test_pt.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_pt.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_pt.Tpo -c -o src/test/src_test_test-test_pt.obj `if test -f 'src/test/test_pt.c'; then $(CYGPATH_W) 'src/test/test_pt.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_pt.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_pt.Tpo src/test/$(DEPDIR)/src_test_test-test_pt.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_pt.c' object='src/test/src_test_test-test_pt.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_pt.obj `if test -f 'src/test/test_pt.c'; then $(CYGPATH_W) 'src/test/test_pt.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_pt.c'; fi` src/test/src_test_test-test_relay.o: src/test/test_relay.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_relay.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_relay.Tpo -c -o src/test/src_test_test-test_relay.o `test -f 'src/test/test_relay.c' || echo '$(srcdir)/'`src/test/test_relay.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_relay.Tpo src/test/$(DEPDIR)/src_test_test-test_relay.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_relay.c' object='src/test/src_test_test-test_relay.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_relay.o `test -f 'src/test/test_relay.c' || echo '$(srcdir)/'`src/test/test_relay.c src/test/src_test_test-test_relay.obj: src/test/test_relay.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_relay.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_relay.Tpo -c -o src/test/src_test_test-test_relay.obj `if test -f 'src/test/test_relay.c'; then $(CYGPATH_W) 'src/test/test_relay.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_relay.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_relay.Tpo src/test/$(DEPDIR)/src_test_test-test_relay.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_relay.c' object='src/test/src_test_test-test_relay.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_relay.obj `if test -f 'src/test/test_relay.c'; then $(CYGPATH_W) 'src/test/test_relay.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_relay.c'; fi` src/test/src_test_test-test_relaycell.o: src/test/test_relaycell.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_relaycell.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_relaycell.Tpo -c -o src/test/src_test_test-test_relaycell.o `test -f 'src/test/test_relaycell.c' || echo '$(srcdir)/'`src/test/test_relaycell.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_relaycell.Tpo src/test/$(DEPDIR)/src_test_test-test_relaycell.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_relaycell.c' object='src/test/src_test_test-test_relaycell.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_relaycell.o `test -f 'src/test/test_relaycell.c' || echo '$(srcdir)/'`src/test/test_relaycell.c src/test/src_test_test-test_relaycell.obj: src/test/test_relaycell.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_relaycell.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_relaycell.Tpo -c -o src/test/src_test_test-test_relaycell.obj `if test -f 'src/test/test_relaycell.c'; then $(CYGPATH_W) 'src/test/test_relaycell.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_relaycell.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_relaycell.Tpo src/test/$(DEPDIR)/src_test_test-test_relaycell.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_relaycell.c' object='src/test/src_test_test-test_relaycell.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_relaycell.obj `if test -f 'src/test/test_relaycell.c'; then $(CYGPATH_W) 'src/test/test_relaycell.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_relaycell.c'; fi` src/test/src_test_test-test_replay.o: src/test/test_replay.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_replay.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_replay.Tpo -c -o src/test/src_test_test-test_replay.o `test -f 'src/test/test_replay.c' || echo '$(srcdir)/'`src/test/test_replay.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_replay.Tpo src/test/$(DEPDIR)/src_test_test-test_replay.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_replay.c' object='src/test/src_test_test-test_replay.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_replay.o `test -f 'src/test/test_replay.c' || echo '$(srcdir)/'`src/test/test_replay.c src/test/src_test_test-test_replay.obj: src/test/test_replay.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_replay.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_replay.Tpo -c -o src/test/src_test_test-test_replay.obj `if test -f 'src/test/test_replay.c'; then $(CYGPATH_W) 'src/test/test_replay.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_replay.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_replay.Tpo src/test/$(DEPDIR)/src_test_test-test_replay.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_replay.c' object='src/test/src_test_test-test_replay.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_replay.obj `if test -f 'src/test/test_replay.c'; then $(CYGPATH_W) 'src/test/test_replay.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_replay.c'; fi` src/test/src_test_test-test_routerkeys.o: src/test/test_routerkeys.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_routerkeys.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_routerkeys.Tpo -c -o src/test/src_test_test-test_routerkeys.o `test -f 'src/test/test_routerkeys.c' || echo '$(srcdir)/'`src/test/test_routerkeys.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_routerkeys.Tpo src/test/$(DEPDIR)/src_test_test-test_routerkeys.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_routerkeys.c' object='src/test/src_test_test-test_routerkeys.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_routerkeys.o `test -f 'src/test/test_routerkeys.c' || echo '$(srcdir)/'`src/test/test_routerkeys.c src/test/src_test_test-test_routerkeys.obj: src/test/test_routerkeys.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_routerkeys.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_routerkeys.Tpo -c -o src/test/src_test_test-test_routerkeys.obj `if test -f 'src/test/test_routerkeys.c'; then $(CYGPATH_W) 'src/test/test_routerkeys.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_routerkeys.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_routerkeys.Tpo src/test/$(DEPDIR)/src_test_test-test_routerkeys.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_routerkeys.c' object='src/test/src_test_test-test_routerkeys.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_routerkeys.obj `if test -f 'src/test/test_routerkeys.c'; then $(CYGPATH_W) 'src/test/test_routerkeys.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_routerkeys.c'; fi` src/test/src_test_test-test_routerlist.o: src/test/test_routerlist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_routerlist.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_routerlist.Tpo -c -o src/test/src_test_test-test_routerlist.o `test -f 'src/test/test_routerlist.c' || echo '$(srcdir)/'`src/test/test_routerlist.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_routerlist.Tpo src/test/$(DEPDIR)/src_test_test-test_routerlist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_routerlist.c' object='src/test/src_test_test-test_routerlist.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_routerlist.o `test -f 'src/test/test_routerlist.c' || echo '$(srcdir)/'`src/test/test_routerlist.c src/test/src_test_test-test_routerlist.obj: src/test/test_routerlist.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_routerlist.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_routerlist.Tpo -c -o src/test/src_test_test-test_routerlist.obj `if test -f 'src/test/test_routerlist.c'; then $(CYGPATH_W) 'src/test/test_routerlist.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_routerlist.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_routerlist.Tpo src/test/$(DEPDIR)/src_test_test-test_routerlist.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_routerlist.c' object='src/test/src_test_test-test_routerlist.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_routerlist.obj `if test -f 'src/test/test_routerlist.c'; then $(CYGPATH_W) 'src/test/test_routerlist.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_routerlist.c'; fi` src/test/src_test_test-test_routerset.o: src/test/test_routerset.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_routerset.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_routerset.Tpo -c -o src/test/src_test_test-test_routerset.o `test -f 'src/test/test_routerset.c' || echo '$(srcdir)/'`src/test/test_routerset.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_routerset.Tpo src/test/$(DEPDIR)/src_test_test-test_routerset.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_routerset.c' object='src/test/src_test_test-test_routerset.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_routerset.o `test -f 'src/test/test_routerset.c' || echo '$(srcdir)/'`src/test/test_routerset.c src/test/src_test_test-test_routerset.obj: src/test/test_routerset.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_routerset.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_routerset.Tpo -c -o src/test/src_test_test-test_routerset.obj `if test -f 'src/test/test_routerset.c'; then $(CYGPATH_W) 'src/test/test_routerset.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_routerset.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_routerset.Tpo src/test/$(DEPDIR)/src_test_test-test_routerset.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_routerset.c' object='src/test/src_test_test-test_routerset.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_routerset.obj `if test -f 'src/test/test_routerset.c'; then $(CYGPATH_W) 'src/test/test_routerset.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_routerset.c'; fi` src/test/src_test_test-test_scheduler.o: src/test/test_scheduler.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_scheduler.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_scheduler.Tpo -c -o src/test/src_test_test-test_scheduler.o `test -f 'src/test/test_scheduler.c' || echo '$(srcdir)/'`src/test/test_scheduler.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_scheduler.Tpo src/test/$(DEPDIR)/src_test_test-test_scheduler.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_scheduler.c' object='src/test/src_test_test-test_scheduler.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_scheduler.o `test -f 'src/test/test_scheduler.c' || echo '$(srcdir)/'`src/test/test_scheduler.c src/test/src_test_test-test_scheduler.obj: src/test/test_scheduler.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_scheduler.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_scheduler.Tpo -c -o src/test/src_test_test-test_scheduler.obj `if test -f 'src/test/test_scheduler.c'; then $(CYGPATH_W) 'src/test/test_scheduler.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_scheduler.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_scheduler.Tpo src/test/$(DEPDIR)/src_test_test-test_scheduler.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_scheduler.c' object='src/test/src_test_test-test_scheduler.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_scheduler.obj `if test -f 'src/test/test_scheduler.c'; then $(CYGPATH_W) 'src/test/test_scheduler.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_scheduler.c'; fi` src/test/src_test_test-test_socks.o: src/test/test_socks.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_socks.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_socks.Tpo -c -o src/test/src_test_test-test_socks.o `test -f 'src/test/test_socks.c' || echo '$(srcdir)/'`src/test/test_socks.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_socks.Tpo src/test/$(DEPDIR)/src_test_test-test_socks.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_socks.c' object='src/test/src_test_test-test_socks.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_socks.o `test -f 'src/test/test_socks.c' || echo '$(srcdir)/'`src/test/test_socks.c src/test/src_test_test-test_socks.obj: src/test/test_socks.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_socks.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_socks.Tpo -c -o src/test/src_test_test-test_socks.obj `if test -f 'src/test/test_socks.c'; then $(CYGPATH_W) 'src/test/test_socks.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_socks.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_socks.Tpo src/test/$(DEPDIR)/src_test_test-test_socks.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_socks.c' object='src/test/src_test_test-test_socks.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_socks.obj `if test -f 'src/test/test_socks.c'; then $(CYGPATH_W) 'src/test/test_socks.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_socks.c'; fi` src/test/src_test_test-test_status.o: src/test/test_status.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_status.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_status.Tpo -c -o src/test/src_test_test-test_status.o `test -f 'src/test/test_status.c' || echo '$(srcdir)/'`src/test/test_status.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_status.Tpo src/test/$(DEPDIR)/src_test_test-test_status.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_status.c' object='src/test/src_test_test-test_status.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_status.o `test -f 'src/test/test_status.c' || echo '$(srcdir)/'`src/test/test_status.c src/test/src_test_test-test_status.obj: src/test/test_status.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_status.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_status.Tpo -c -o src/test/src_test_test-test_status.obj `if test -f 'src/test/test_status.c'; then $(CYGPATH_W) 'src/test/test_status.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_status.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_status.Tpo src/test/$(DEPDIR)/src_test_test-test_status.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_status.c' object='src/test/src_test_test-test_status.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_status.obj `if test -f 'src/test/test_status.c'; then $(CYGPATH_W) 'src/test/test_status.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_status.c'; fi` src/test/src_test_test-test_threads.o: src/test/test_threads.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_threads.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_threads.Tpo -c -o src/test/src_test_test-test_threads.o `test -f 'src/test/test_threads.c' || echo '$(srcdir)/'`src/test/test_threads.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_threads.Tpo src/test/$(DEPDIR)/src_test_test-test_threads.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_threads.c' object='src/test/src_test_test-test_threads.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_threads.o `test -f 'src/test/test_threads.c' || echo '$(srcdir)/'`src/test/test_threads.c src/test/src_test_test-test_threads.obj: src/test/test_threads.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_threads.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_threads.Tpo -c -o src/test/src_test_test-test_threads.obj `if test -f 'src/test/test_threads.c'; then $(CYGPATH_W) 'src/test/test_threads.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_threads.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_threads.Tpo src/test/$(DEPDIR)/src_test_test-test_threads.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_threads.c' object='src/test/src_test_test-test_threads.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_threads.obj `if test -f 'src/test/test_threads.c'; then $(CYGPATH_W) 'src/test/test_threads.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_threads.c'; fi` src/test/src_test_test-test_util.o: src/test/test_util.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_util.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_util.Tpo -c -o src/test/src_test_test-test_util.o `test -f 'src/test/test_util.c' || echo '$(srcdir)/'`src/test/test_util.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_util.Tpo src/test/$(DEPDIR)/src_test_test-test_util.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_util.c' object='src/test/src_test_test-test_util.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_util.o `test -f 'src/test/test_util.c' || echo '$(srcdir)/'`src/test/test_util.c src/test/src_test_test-test_util.obj: src/test/test_util.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_util.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_util.Tpo -c -o src/test/src_test_test-test_util.obj `if test -f 'src/test/test_util.c'; then $(CYGPATH_W) 'src/test/test_util.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_util.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_util.Tpo src/test/$(DEPDIR)/src_test_test-test_util.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_util.c' object='src/test/src_test_test-test_util.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_util.obj `if test -f 'src/test/test_util.c'; then $(CYGPATH_W) 'src/test/test_util.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_util.c'; fi` src/test/src_test_test-test_helpers.o: src/test/test_helpers.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_helpers.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_helpers.Tpo -c -o src/test/src_test_test-test_helpers.o `test -f 'src/test/test_helpers.c' || echo '$(srcdir)/'`src/test/test_helpers.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_helpers.Tpo src/test/$(DEPDIR)/src_test_test-test_helpers.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_helpers.c' object='src/test/src_test_test-test_helpers.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_helpers.o `test -f 'src/test/test_helpers.c' || echo '$(srcdir)/'`src/test/test_helpers.c src/test/src_test_test-test_helpers.obj: src/test/test_helpers.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_helpers.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_helpers.Tpo -c -o src/test/src_test_test-test_helpers.obj `if test -f 'src/test/test_helpers.c'; then $(CYGPATH_W) 'src/test/test_helpers.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_helpers.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_helpers.Tpo src/test/$(DEPDIR)/src_test_test-test_helpers.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_helpers.c' object='src/test/src_test_test-test_helpers.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_helpers.obj `if test -f 'src/test/test_helpers.c'; then $(CYGPATH_W) 'src/test/test_helpers.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_helpers.c'; fi` src/test/src_test_test-test_dns.o: src/test/test_dns.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_dns.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_dns.Tpo -c -o src/test/src_test_test-test_dns.o `test -f 'src/test/test_dns.c' || echo '$(srcdir)/'`src/test/test_dns.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_dns.Tpo src/test/$(DEPDIR)/src_test_test-test_dns.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_dns.c' object='src/test/src_test_test-test_dns.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_dns.o `test -f 'src/test/test_dns.c' || echo '$(srcdir)/'`src/test/test_dns.c src/test/src_test_test-test_dns.obj: src/test/test_dns.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-test_dns.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-test_dns.Tpo -c -o src/test/src_test_test-test_dns.obj `if test -f 'src/test/test_dns.c'; then $(CYGPATH_W) 'src/test/test_dns.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_dns.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-test_dns.Tpo src/test/$(DEPDIR)/src_test_test-test_dns.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_dns.c' object='src/test/src_test_test-test_dns.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-test_dns.obj `if test -f 'src/test/test_dns.c'; then $(CYGPATH_W) 'src/test/test_dns.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_dns.c'; fi` src/test/src_test_test-testing_common.o: src/test/testing_common.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-testing_common.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test-testing_common.Tpo -c -o src/test/src_test_test-testing_common.o `test -f 'src/test/testing_common.c' || echo '$(srcdir)/'`src/test/testing_common.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-testing_common.Tpo src/test/$(DEPDIR)/src_test_test-testing_common.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/testing_common.c' object='src/test/src_test_test-testing_common.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-testing_common.o `test -f 'src/test/testing_common.c' || echo '$(srcdir)/'`src/test/testing_common.c src/test/src_test_test-testing_common.obj: src/test/testing_common.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/test/src_test_test-testing_common.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test-testing_common.Tpo -c -o src/test/src_test_test-testing_common.obj `if test -f 'src/test/testing_common.c'; then $(CYGPATH_W) 'src/test/testing_common.c'; else $(CYGPATH_W) '$(srcdir)/src/test/testing_common.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test-testing_common.Tpo src/test/$(DEPDIR)/src_test_test-testing_common.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/testing_common.c' object='src/test/src_test_test-testing_common.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test-testing_common.obj `if test -f 'src/test/testing_common.c'; then $(CYGPATH_W) 'src/test/testing_common.c'; else $(CYGPATH_W) '$(srcdir)/src/test/testing_common.c'; fi` src/ext/src_test_test-tinytest.o: src/ext/tinytest.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/ext/src_test_test-tinytest.o -MD -MP -MF src/ext/$(DEPDIR)/src_test_test-tinytest.Tpo -c -o src/ext/src_test_test-tinytest.o `test -f 'src/ext/tinytest.c' || echo '$(srcdir)/'`src/ext/tinytest.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/$(DEPDIR)/src_test_test-tinytest.Tpo src/ext/$(DEPDIR)/src_test_test-tinytest.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/tinytest.c' object='src/ext/src_test_test-tinytest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/ext/src_test_test-tinytest.o `test -f 'src/ext/tinytest.c' || echo '$(srcdir)/'`src/ext/tinytest.c src/ext/src_test_test-tinytest.obj: src/ext/tinytest.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -MT src/ext/src_test_test-tinytest.obj -MD -MP -MF src/ext/$(DEPDIR)/src_test_test-tinytest.Tpo -c -o src/ext/src_test_test-tinytest.obj `if test -f 'src/ext/tinytest.c'; then $(CYGPATH_W) 'src/ext/tinytest.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/tinytest.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/$(DEPDIR)/src_test_test-tinytest.Tpo src/ext/$(DEPDIR)/src_test_test-tinytest.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/tinytest.c' object='src/ext/src_test_test-tinytest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_CPPFLAGS) $(CPPFLAGS) $(src_test_test_CFLAGS) $(CFLAGS) -c -o src/ext/src_test_test-tinytest.obj `if test -f 'src/ext/tinytest.c'; then $(CYGPATH_W) 'src/ext/tinytest.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/tinytest.c'; fi` src/test/src_test_test_bt_cl-test_bt_cl.o: src/test/test_bt_cl.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_bt_cl_CPPFLAGS) $(CPPFLAGS) $(src_test_test_bt_cl_CFLAGS) $(CFLAGS) -MT src/test/src_test_test_bt_cl-test_bt_cl.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test_bt_cl-test_bt_cl.Tpo -c -o src/test/src_test_test_bt_cl-test_bt_cl.o `test -f 'src/test/test_bt_cl.c' || echo '$(srcdir)/'`src/test/test_bt_cl.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test_bt_cl-test_bt_cl.Tpo src/test/$(DEPDIR)/src_test_test_bt_cl-test_bt_cl.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_bt_cl.c' object='src/test/src_test_test_bt_cl-test_bt_cl.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_bt_cl_CPPFLAGS) $(CPPFLAGS) $(src_test_test_bt_cl_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test_bt_cl-test_bt_cl.o `test -f 'src/test/test_bt_cl.c' || echo '$(srcdir)/'`src/test/test_bt_cl.c src/test/src_test_test_bt_cl-test_bt_cl.obj: src/test/test_bt_cl.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_bt_cl_CPPFLAGS) $(CPPFLAGS) $(src_test_test_bt_cl_CFLAGS) $(CFLAGS) -MT src/test/src_test_test_bt_cl-test_bt_cl.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test_bt_cl-test_bt_cl.Tpo -c -o src/test/src_test_test_bt_cl-test_bt_cl.obj `if test -f 'src/test/test_bt_cl.c'; then $(CYGPATH_W) 'src/test/test_bt_cl.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_bt_cl.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test_bt_cl-test_bt_cl.Tpo src/test/$(DEPDIR)/src_test_test_bt_cl-test_bt_cl.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_bt_cl.c' object='src/test/src_test_test_bt_cl-test_bt_cl.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_bt_cl_CPPFLAGS) $(CPPFLAGS) $(src_test_test_bt_cl_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test_bt_cl-test_bt_cl.obj `if test -f 'src/test/test_bt_cl.c'; then $(CYGPATH_W) 'src/test/test_bt_cl.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_bt_cl.c'; fi` src/test/src_test_test_memwipe-test-memwipe.o: src/test/test-memwipe.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_memwipe_CPPFLAGS) $(CPPFLAGS) $(src_test_test_memwipe_CFLAGS) $(CFLAGS) -MT src/test/src_test_test_memwipe-test-memwipe.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test_memwipe-test-memwipe.Tpo -c -o src/test/src_test_test_memwipe-test-memwipe.o `test -f 'src/test/test-memwipe.c' || echo '$(srcdir)/'`src/test/test-memwipe.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test_memwipe-test-memwipe.Tpo src/test/$(DEPDIR)/src_test_test_memwipe-test-memwipe.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test-memwipe.c' object='src/test/src_test_test_memwipe-test-memwipe.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_memwipe_CPPFLAGS) $(CPPFLAGS) $(src_test_test_memwipe_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test_memwipe-test-memwipe.o `test -f 'src/test/test-memwipe.c' || echo '$(srcdir)/'`src/test/test-memwipe.c src/test/src_test_test_memwipe-test-memwipe.obj: src/test/test-memwipe.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_memwipe_CPPFLAGS) $(CPPFLAGS) $(src_test_test_memwipe_CFLAGS) $(CFLAGS) -MT src/test/src_test_test_memwipe-test-memwipe.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test_memwipe-test-memwipe.Tpo -c -o src/test/src_test_test_memwipe-test-memwipe.obj `if test -f 'src/test/test-memwipe.c'; then $(CYGPATH_W) 'src/test/test-memwipe.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test-memwipe.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test_memwipe-test-memwipe.Tpo src/test/$(DEPDIR)/src_test_test_memwipe-test-memwipe.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test-memwipe.c' object='src/test/src_test_test_memwipe-test-memwipe.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_memwipe_CPPFLAGS) $(CPPFLAGS) $(src_test_test_memwipe_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test_memwipe-test-memwipe.obj `if test -f 'src/test/test-memwipe.c'; then $(CYGPATH_W) 'src/test/test-memwipe.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test-memwipe.c'; fi` src/test/src_test_test_slow-test_slow.o: src/test/test_slow.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -MT src/test/src_test_test_slow-test_slow.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test_slow-test_slow.Tpo -c -o src/test/src_test_test_slow-test_slow.o `test -f 'src/test/test_slow.c' || echo '$(srcdir)/'`src/test/test_slow.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test_slow-test_slow.Tpo src/test/$(DEPDIR)/src_test_test_slow-test_slow.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_slow.c' object='src/test/src_test_test_slow-test_slow.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test_slow-test_slow.o `test -f 'src/test/test_slow.c' || echo '$(srcdir)/'`src/test/test_slow.c src/test/src_test_test_slow-test_slow.obj: src/test/test_slow.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -MT src/test/src_test_test_slow-test_slow.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test_slow-test_slow.Tpo -c -o src/test/src_test_test_slow-test_slow.obj `if test -f 'src/test/test_slow.c'; then $(CYGPATH_W) 'src/test/test_slow.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_slow.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test_slow-test_slow.Tpo src/test/$(DEPDIR)/src_test_test_slow-test_slow.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_slow.c' object='src/test/src_test_test_slow-test_slow.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test_slow-test_slow.obj `if test -f 'src/test/test_slow.c'; then $(CYGPATH_W) 'src/test/test_slow.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_slow.c'; fi` src/test/src_test_test_slow-test_crypto_slow.o: src/test/test_crypto_slow.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -MT src/test/src_test_test_slow-test_crypto_slow.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test_slow-test_crypto_slow.Tpo -c -o src/test/src_test_test_slow-test_crypto_slow.o `test -f 'src/test/test_crypto_slow.c' || echo '$(srcdir)/'`src/test/test_crypto_slow.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test_slow-test_crypto_slow.Tpo src/test/$(DEPDIR)/src_test_test_slow-test_crypto_slow.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_crypto_slow.c' object='src/test/src_test_test_slow-test_crypto_slow.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test_slow-test_crypto_slow.o `test -f 'src/test/test_crypto_slow.c' || echo '$(srcdir)/'`src/test/test_crypto_slow.c src/test/src_test_test_slow-test_crypto_slow.obj: src/test/test_crypto_slow.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -MT src/test/src_test_test_slow-test_crypto_slow.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test_slow-test_crypto_slow.Tpo -c -o src/test/src_test_test_slow-test_crypto_slow.obj `if test -f 'src/test/test_crypto_slow.c'; then $(CYGPATH_W) 'src/test/test_crypto_slow.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_crypto_slow.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test_slow-test_crypto_slow.Tpo src/test/$(DEPDIR)/src_test_test_slow-test_crypto_slow.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_crypto_slow.c' object='src/test/src_test_test_slow-test_crypto_slow.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test_slow-test_crypto_slow.obj `if test -f 'src/test/test_crypto_slow.c'; then $(CYGPATH_W) 'src/test/test_crypto_slow.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_crypto_slow.c'; fi` src/test/src_test_test_slow-test_util_slow.o: src/test/test_util_slow.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -MT src/test/src_test_test_slow-test_util_slow.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test_slow-test_util_slow.Tpo -c -o src/test/src_test_test_slow-test_util_slow.o `test -f 'src/test/test_util_slow.c' || echo '$(srcdir)/'`src/test/test_util_slow.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test_slow-test_util_slow.Tpo src/test/$(DEPDIR)/src_test_test_slow-test_util_slow.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_util_slow.c' object='src/test/src_test_test_slow-test_util_slow.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test_slow-test_util_slow.o `test -f 'src/test/test_util_slow.c' || echo '$(srcdir)/'`src/test/test_util_slow.c src/test/src_test_test_slow-test_util_slow.obj: src/test/test_util_slow.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -MT src/test/src_test_test_slow-test_util_slow.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test_slow-test_util_slow.Tpo -c -o src/test/src_test_test_slow-test_util_slow.obj `if test -f 'src/test/test_util_slow.c'; then $(CYGPATH_W) 'src/test/test_util_slow.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_util_slow.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test_slow-test_util_slow.Tpo src/test/$(DEPDIR)/src_test_test_slow-test_util_slow.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_util_slow.c' object='src/test/src_test_test_slow-test_util_slow.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test_slow-test_util_slow.obj `if test -f 'src/test/test_util_slow.c'; then $(CYGPATH_W) 'src/test/test_util_slow.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_util_slow.c'; fi` src/test/src_test_test_slow-testing_common.o: src/test/testing_common.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -MT src/test/src_test_test_slow-testing_common.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test_slow-testing_common.Tpo -c -o src/test/src_test_test_slow-testing_common.o `test -f 'src/test/testing_common.c' || echo '$(srcdir)/'`src/test/testing_common.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test_slow-testing_common.Tpo src/test/$(DEPDIR)/src_test_test_slow-testing_common.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/testing_common.c' object='src/test/src_test_test_slow-testing_common.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test_slow-testing_common.o `test -f 'src/test/testing_common.c' || echo '$(srcdir)/'`src/test/testing_common.c src/test/src_test_test_slow-testing_common.obj: src/test/testing_common.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -MT src/test/src_test_test_slow-testing_common.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test_slow-testing_common.Tpo -c -o src/test/src_test_test_slow-testing_common.obj `if test -f 'src/test/testing_common.c'; then $(CYGPATH_W) 'src/test/testing_common.c'; else $(CYGPATH_W) '$(srcdir)/src/test/testing_common.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test_slow-testing_common.Tpo src/test/$(DEPDIR)/src_test_test_slow-testing_common.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/testing_common.c' object='src/test/src_test_test_slow-testing_common.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test_slow-testing_common.obj `if test -f 'src/test/testing_common.c'; then $(CYGPATH_W) 'src/test/testing_common.c'; else $(CYGPATH_W) '$(srcdir)/src/test/testing_common.c'; fi` src/ext/src_test_test_slow-tinytest.o: src/ext/tinytest.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -MT src/ext/src_test_test_slow-tinytest.o -MD -MP -MF src/ext/$(DEPDIR)/src_test_test_slow-tinytest.Tpo -c -o src/ext/src_test_test_slow-tinytest.o `test -f 'src/ext/tinytest.c' || echo '$(srcdir)/'`src/ext/tinytest.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/$(DEPDIR)/src_test_test_slow-tinytest.Tpo src/ext/$(DEPDIR)/src_test_test_slow-tinytest.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/tinytest.c' object='src/ext/src_test_test_slow-tinytest.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -c -o src/ext/src_test_test_slow-tinytest.o `test -f 'src/ext/tinytest.c' || echo '$(srcdir)/'`src/ext/tinytest.c src/ext/src_test_test_slow-tinytest.obj: src/ext/tinytest.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -MT src/ext/src_test_test_slow-tinytest.obj -MD -MP -MF src/ext/$(DEPDIR)/src_test_test_slow-tinytest.Tpo -c -o src/ext/src_test_test_slow-tinytest.obj `if test -f 'src/ext/tinytest.c'; then $(CYGPATH_W) 'src/ext/tinytest.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/tinytest.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/ext/$(DEPDIR)/src_test_test_slow-tinytest.Tpo src/ext/$(DEPDIR)/src_test_test_slow-tinytest.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ext/tinytest.c' object='src/ext/src_test_test_slow-tinytest.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_slow_CPPFLAGS) $(CPPFLAGS) $(src_test_test_slow_CFLAGS) $(CFLAGS) -c -o src/ext/src_test_test_slow-tinytest.obj `if test -f 'src/ext/tinytest.c'; then $(CYGPATH_W) 'src/ext/tinytest.c'; else $(CYGPATH_W) '$(srcdir)/src/ext/tinytest.c'; fi` src/test/src_test_test_workqueue-test_workqueue.o: src/test/test_workqueue.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_workqueue_CPPFLAGS) $(CPPFLAGS) $(src_test_test_workqueue_CFLAGS) $(CFLAGS) -MT src/test/src_test_test_workqueue-test_workqueue.o -MD -MP -MF src/test/$(DEPDIR)/src_test_test_workqueue-test_workqueue.Tpo -c -o src/test/src_test_test_workqueue-test_workqueue.o `test -f 'src/test/test_workqueue.c' || echo '$(srcdir)/'`src/test/test_workqueue.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test_workqueue-test_workqueue.Tpo src/test/$(DEPDIR)/src_test_test_workqueue-test_workqueue.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_workqueue.c' object='src/test/src_test_test_workqueue-test_workqueue.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_workqueue_CPPFLAGS) $(CPPFLAGS) $(src_test_test_workqueue_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test_workqueue-test_workqueue.o `test -f 'src/test/test_workqueue.c' || echo '$(srcdir)/'`src/test/test_workqueue.c src/test/src_test_test_workqueue-test_workqueue.obj: src/test/test_workqueue.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_workqueue_CPPFLAGS) $(CPPFLAGS) $(src_test_test_workqueue_CFLAGS) $(CFLAGS) -MT src/test/src_test_test_workqueue-test_workqueue.obj -MD -MP -MF src/test/$(DEPDIR)/src_test_test_workqueue-test_workqueue.Tpo -c -o src/test/src_test_test_workqueue-test_workqueue.obj `if test -f 'src/test/test_workqueue.c'; then $(CYGPATH_W) 'src/test/test_workqueue.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_workqueue.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/test/$(DEPDIR)/src_test_test_workqueue-test_workqueue.Tpo src/test/$(DEPDIR)/src_test_test_workqueue-test_workqueue.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/test/test_workqueue.c' object='src/test/src_test_test_workqueue-test_workqueue.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_test_test_workqueue_CPPFLAGS) $(CPPFLAGS) $(src_test_test_workqueue_CFLAGS) $(CFLAGS) -c -o src/test/src_test_test_workqueue-test_workqueue.obj `if test -f 'src/test/test_workqueue.c'; then $(CYGPATH_W) 'src/test/test_workqueue.c'; else $(CYGPATH_W) '$(srcdir)/src/test/test_workqueue.c'; fi` src/tools/src_tools_tor_cov_gencert-tor-gencert.o: src/tools/tor-gencert.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tools_tor_cov_gencert_CPPFLAGS) $(CPPFLAGS) $(src_tools_tor_cov_gencert_CFLAGS) $(CFLAGS) -MT src/tools/src_tools_tor_cov_gencert-tor-gencert.o -MD -MP -MF src/tools/$(DEPDIR)/src_tools_tor_cov_gencert-tor-gencert.Tpo -c -o src/tools/src_tools_tor_cov_gencert-tor-gencert.o `test -f 'src/tools/tor-gencert.c' || echo '$(srcdir)/'`src/tools/tor-gencert.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/tools/$(DEPDIR)/src_tools_tor_cov_gencert-tor-gencert.Tpo src/tools/$(DEPDIR)/src_tools_tor_cov_gencert-tor-gencert.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tools/tor-gencert.c' object='src/tools/src_tools_tor_cov_gencert-tor-gencert.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tools_tor_cov_gencert_CPPFLAGS) $(CPPFLAGS) $(src_tools_tor_cov_gencert_CFLAGS) $(CFLAGS) -c -o src/tools/src_tools_tor_cov_gencert-tor-gencert.o `test -f 'src/tools/tor-gencert.c' || echo '$(srcdir)/'`src/tools/tor-gencert.c src/tools/src_tools_tor_cov_gencert-tor-gencert.obj: src/tools/tor-gencert.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tools_tor_cov_gencert_CPPFLAGS) $(CPPFLAGS) $(src_tools_tor_cov_gencert_CFLAGS) $(CFLAGS) -MT src/tools/src_tools_tor_cov_gencert-tor-gencert.obj -MD -MP -MF src/tools/$(DEPDIR)/src_tools_tor_cov_gencert-tor-gencert.Tpo -c -o src/tools/src_tools_tor_cov_gencert-tor-gencert.obj `if test -f 'src/tools/tor-gencert.c'; then $(CYGPATH_W) 'src/tools/tor-gencert.c'; else $(CYGPATH_W) '$(srcdir)/src/tools/tor-gencert.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/tools/$(DEPDIR)/src_tools_tor_cov_gencert-tor-gencert.Tpo src/tools/$(DEPDIR)/src_tools_tor_cov_gencert-tor-gencert.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tools/tor-gencert.c' object='src/tools/src_tools_tor_cov_gencert-tor-gencert.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tools_tor_cov_gencert_CPPFLAGS) $(CPPFLAGS) $(src_tools_tor_cov_gencert_CFLAGS) $(CFLAGS) -c -o src/tools/src_tools_tor_cov_gencert-tor-gencert.obj `if test -f 'src/tools/tor-gencert.c'; then $(CYGPATH_W) 'src/tools/tor-gencert.c'; else $(CYGPATH_W) '$(srcdir)/src/tools/tor-gencert.c'; fi` src/tools/src_tools_tor_cov_resolve-tor-resolve.o: src/tools/tor-resolve.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tools_tor_cov_resolve_CPPFLAGS) $(CPPFLAGS) $(src_tools_tor_cov_resolve_CFLAGS) $(CFLAGS) -MT src/tools/src_tools_tor_cov_resolve-tor-resolve.o -MD -MP -MF src/tools/$(DEPDIR)/src_tools_tor_cov_resolve-tor-resolve.Tpo -c -o src/tools/src_tools_tor_cov_resolve-tor-resolve.o `test -f 'src/tools/tor-resolve.c' || echo '$(srcdir)/'`src/tools/tor-resolve.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/tools/$(DEPDIR)/src_tools_tor_cov_resolve-tor-resolve.Tpo src/tools/$(DEPDIR)/src_tools_tor_cov_resolve-tor-resolve.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tools/tor-resolve.c' object='src/tools/src_tools_tor_cov_resolve-tor-resolve.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tools_tor_cov_resolve_CPPFLAGS) $(CPPFLAGS) $(src_tools_tor_cov_resolve_CFLAGS) $(CFLAGS) -c -o src/tools/src_tools_tor_cov_resolve-tor-resolve.o `test -f 'src/tools/tor-resolve.c' || echo '$(srcdir)/'`src/tools/tor-resolve.c src/tools/src_tools_tor_cov_resolve-tor-resolve.obj: src/tools/tor-resolve.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tools_tor_cov_resolve_CPPFLAGS) $(CPPFLAGS) $(src_tools_tor_cov_resolve_CFLAGS) $(CFLAGS) -MT src/tools/src_tools_tor_cov_resolve-tor-resolve.obj -MD -MP -MF src/tools/$(DEPDIR)/src_tools_tor_cov_resolve-tor-resolve.Tpo -c -o src/tools/src_tools_tor_cov_resolve-tor-resolve.obj `if test -f 'src/tools/tor-resolve.c'; then $(CYGPATH_W) 'src/tools/tor-resolve.c'; else $(CYGPATH_W) '$(srcdir)/src/tools/tor-resolve.c'; fi` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/tools/$(DEPDIR)/src_tools_tor_cov_resolve-tor-resolve.Tpo src/tools/$(DEPDIR)/src_tools_tor_cov_resolve-tor-resolve.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tools/tor-resolve.c' object='src/tools/src_tools_tor_cov_resolve-tor-resolve.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tools_tor_cov_resolve_CPPFLAGS) $(CPPFLAGS) $(src_tools_tor_cov_resolve_CFLAGS) $(CFLAGS) -c -o src/tools/src_tools_tor_cov_resolve-tor-resolve.obj `if test -f 'src/tools/tor-resolve.c'; then $(CYGPATH_W) 'src/tools/tor-resolve.c'; else $(CYGPATH_W) '$(srcdir)/src/tools/tor-resolve.c'; fi` install-man1: $(nodist_man1_MANS) @$(NORMAL_INSTALL) @list1='$(nodist_man1_MANS)'; \ list2=''; \ test -n "$(man1dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.1[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ done; } uninstall-man1: @$(NORMAL_UNINSTALL) @list='$(nodist_man1_MANS)'; test -n "$(man1dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) install-confDATA: $(conf_DATA) @$(NORMAL_INSTALL) @list='$(conf_DATA)'; test -n "$(confdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(confdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(confdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(confdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(confdir)" || exit $$?; \ done uninstall-confDATA: @$(NORMAL_UNINSTALL) @list='$(conf_DATA)'; test -n "$(confdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(confdir)'; $(am__uninstall_files_from_dir) install-docDATA: $(doc_DATA) @$(NORMAL_INSTALL) @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ done uninstall-docDATA: @$(NORMAL_UNINSTALL) @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir) install-tordataDATA: $(tordata_DATA) @$(NORMAL_INSTALL) @list='$(tordata_DATA)'; test -n "$(tordatadir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(tordatadir)'"; \ $(MKDIR_P) "$(DESTDIR)$(tordatadir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(tordatadir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(tordatadir)" || exit $$?; \ done uninstall-tordataDATA: @$(NORMAL_UNINSTALL) @list='$(tordata_DATA)'; test -n "$(tordatadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(tordatadir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files # Recover from deleted '.trs' file; this should ensure that # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells # to avoid problems with "make -n". .log.trs: rm -f $< $@ $(MAKE) $(AM_MAKEFLAGS) $< # Leading 'am--fnord' is there to ensure the list of targets does not # expand to empty, as could happen e.g. with make check TESTS=''. am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) am--force-recheck: @: $(TEST_SUITE_LOG): $(TEST_LOGS) @$(am__set_TESTS_bases); \ am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ redo_bases=`for i in $$bases; do \ am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ done`; \ if test -n "$$redo_bases"; then \ redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ if $(am__make_dryrun); then :; else \ rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ fi; \ fi; \ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ elif test -n "$$redo_logs"; then \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ st=0; \ errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ for i in $$redo_bases; do \ test -f $$i.trs && test -r $$i.trs \ || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ test -f $$i.log && test -r $$i.log \ || { echo "$$errmsg $$i.log" >&2; st=1; }; \ done; \ test $$st -eq 0 || exit 1; \ fi @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ ws='[ ]'; \ results=`for b in $$bases; do echo $$b.trs; done`; \ test -n "$$results" || results=/dev/null; \ all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ if test `expr $$fail + $$xpass + $$error` -eq 0; then \ success=true; \ else \ success=false; \ fi; \ br='==================='; br=$$br$$br$$br$$br; \ result_count () \ { \ if test x"$$1" = x"--maybe-color"; then \ maybe_colorize=yes; \ elif test x"$$1" = x"--no-color"; then \ maybe_colorize=no; \ else \ echo "$@: invalid 'result_count' usage" >&2; exit 4; \ fi; \ shift; \ desc=$$1 count=$$2; \ if test $$maybe_colorize = yes && test $$count -gt 0; then \ color_start=$$3 color_end=$$std; \ else \ color_start= color_end=; \ fi; \ echo "$${color_start}# $$desc $$count$${color_end}"; \ }; \ create_testsuite_report () \ { \ result_count $$1 "TOTAL:" $$all "$$brg"; \ result_count $$1 "PASS: " $$pass "$$grn"; \ result_count $$1 "SKIP: " $$skip "$$blu"; \ result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ result_count $$1 "FAIL: " $$fail "$$red"; \ result_count $$1 "XPASS:" $$xpass "$$red"; \ result_count $$1 "ERROR:" $$error "$$mgn"; \ }; \ { \ echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ $(am__rst_title); \ create_testsuite_report --no-color; \ echo; \ echo ".. contents:: :depth: 2"; \ echo; \ for b in $$bases; do echo $$b; done \ | $(am__create_global_log); \ } >$(TEST_SUITE_LOG).tmp || exit 1; \ mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ if $$success; then \ col="$$grn"; \ else \ col="$$red"; \ test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ fi; \ echo "$${col}$$br$${std}"; \ echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \ echo "$${col}$$br$${std}"; \ create_testsuite_report --maybe-color; \ echo "$$col$$br$$std"; \ if $$success; then :; else \ echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \ if test -n "$(PACKAGE_BUGREPORT)"; then \ echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \ fi; \ echo "$$col$$br$$std"; \ fi; \ $$success || exit 1 check-TESTS: @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ log_list=`for i in $$bases; do echo $$i.log; done`; \ trs_list=`for i in $$bases; do echo $$i.trs; done`; \ log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \ exit $$?; recheck: all @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ bases=`for i in $$bases; do echo $$i; done \ | $(am__list_recheck_tests)` || exit 1; \ log_list=`for i in $$bases; do echo $$i.log; done`; \ log_list=`echo $$log_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ am__force_recheck=am--force-recheck \ TEST_LOGS="$$log_list"; \ exit $$? src/test/test.log: src/test/test$(EXEEXT) @p='src/test/test$(EXEEXT)'; \ b='src/test/test'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) src/test/test-slow.log: src/test/test-slow$(EXEEXT) @p='src/test/test-slow$(EXEEXT)'; \ b='src/test/test-slow'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) src/test/test-memwipe.log: src/test/test-memwipe$(EXEEXT) @p='src/test/test-memwipe$(EXEEXT)'; \ b='src/test/test-memwipe'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) src/test/test_workqueue.log: src/test/test_workqueue$(EXEEXT) @p='src/test/test_workqueue$(EXEEXT)'; \ b='src/test/test_workqueue'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) src/test/test_keygen.sh.log: src/test/test_keygen.sh @p='src/test/test_keygen.sh'; \ b='src/test/test_keygen.sh'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) src/test/test_zero_length_keys.sh.log: src/test/test_zero_length_keys.sh @p='src/test/test_zero_length_keys.sh'; \ b='src/test/test_zero_length_keys.sh'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) src/test/test_ntor.sh.log: src/test/test_ntor.sh @p='src/test/test_ntor.sh'; \ b='src/test/test_ntor.sh'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) src/test/test_bt.sh.log: src/test/test_bt.sh @p='src/test/test_bt.sh'; \ b='src/test/test_bt.sh'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) .test.log: @p='$<'; \ $(am__set_b); \ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) @am__EXEEXT_TRUE@.test$(EXEEXT).log: @am__EXEEXT_TRUE@ @p='$<'; \ @am__EXEEXT_TRUE@ $(am__set_b); \ @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \ @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT) distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build/sub \ && ../../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: check-am all-am: Makefile $(LIBRARIES) $(PROGRAMS) $(SCRIPTS) $(MANS) $(DATA) \ $(HEADERS) orconfig.h installdirs: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(confdir)" "$(DESTDIR)$(docdir)" "$(DESTDIR)$(tordatadir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS) -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs) -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG) clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) -rm -f src/common/$(DEPDIR)/$(am__dirstamp) -rm -f src/common/$(am__dirstamp) -rm -f src/ext/$(DEPDIR)/$(am__dirstamp) -rm -f src/ext/$(am__dirstamp) -rm -f src/ext/curve25519_donna/$(DEPDIR)/$(am__dirstamp) -rm -f src/ext/curve25519_donna/$(am__dirstamp) -rm -f src/ext/ed25519/donna/$(DEPDIR)/$(am__dirstamp) -rm -f src/ext/ed25519/donna/$(am__dirstamp) -rm -f src/ext/ed25519/ref10/$(DEPDIR)/$(am__dirstamp) -rm -f src/ext/ed25519/ref10/$(am__dirstamp) -rm -f src/ext/trunnel/$(DEPDIR)/$(am__dirstamp) -rm -f src/ext/trunnel/$(am__dirstamp) -rm -f src/or/$(DEPDIR)/$(am__dirstamp) -rm -f src/or/$(am__dirstamp) -rm -f src/test/$(DEPDIR)/$(am__dirstamp) -rm -f src/test/$(am__dirstamp) -rm -f src/tools/$(DEPDIR)/$(am__dirstamp) -rm -f src/tools/$(am__dirstamp) -rm -f src/trunnel/$(DEPDIR)/$(am__dirstamp) -rm -f src/trunnel/$(am__dirstamp) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-noinstLIBRARIES \ clean-noinstPROGRAMS mostlyclean-am distclean: distclean-am -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf src/common/$(DEPDIR) src/ext/$(DEPDIR) src/ext/curve25519_donna/$(DEPDIR) src/ext/ed25519/donna/$(DEPDIR) src/ext/ed25519/ref10/$(DEPDIR) src/ext/trunnel/$(DEPDIR) src/or/$(DEPDIR) src/test/$(DEPDIR) src/tools/$(DEPDIR) src/trunnel/$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-hdr distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-confDATA install-docDATA install-man \ install-tordataDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-binSCRIPTS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-man1 install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -rf src/common/$(DEPDIR) src/ext/$(DEPDIR) src/ext/curve25519_donna/$(DEPDIR) src/ext/ed25519/donna/$(DEPDIR) src/ext/ed25519/ref10/$(DEPDIR) src/ext/trunnel/$(DEPDIR) src/or/$(DEPDIR) src/test/$(DEPDIR) src/tools/$(DEPDIR) src/trunnel/$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-local pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \ uninstall-confDATA uninstall-docDATA uninstall-man \ uninstall-tordataDATA uninstall-man: uninstall-man1 .MAKE: all check-am install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am am--refresh check check-TESTS \ check-am clean clean-binPROGRAMS clean-cscope clean-generic \ clean-noinstLIBRARIES clean-noinstPROGRAMS cscope \ cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \ dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \ distcheck distclean distclean-compile distclean-generic \ distclean-hdr distclean-tags distcleancheck distdir \ distuninstallcheck dvi dvi-am html html-am info info-am \ install install-am install-binPROGRAMS install-binSCRIPTS \ install-confDATA install-data install-data-am install-docDATA \ install-dvi install-dvi-am install-exec install-exec-am \ install-html install-html-am install-info install-info-am \ install-man install-man1 install-pdf install-pdf-am install-ps \ install-ps-am install-strip install-tordataDATA installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-local pdf pdf-am ps ps-am \ recheck tags tags-am uninstall uninstall-am \ uninstall-binPROGRAMS uninstall-binSCRIPTS uninstall-confDATA \ uninstall-docDATA uninstall-man uninstall-man1 \ uninstall-tordataDATA .PRECIOUS: Makefile src/common/log.o: micro-revision.i src/or/tor_main.o: micro-revision.i @COVERAGE_ENABLED_TRUE@export TESTING_TOR_BINARY=$(top_builddir)/src/or/tor-cov @COVERAGE_ENABLED_FALSE@export TESTING_TOR_BINARY=$(top_builddir)/src/or/tor micro-revision.i: FORCE $(AM_V_at)rm -f micro-revision.tmp; \ if test -d "$(top_srcdir)/.git" && \ test -x "`which git 2>&1;true`"; then \ HASH="`cd "$(top_srcdir)" && git rev-parse --short=16 HEAD`"; \ echo \"$$HASH\" > micro-revision.tmp; \ fi; \ if test ! -f micro-revision.tmp; then \ if test ! -f micro-revision.i; then \ echo '""' > micro-revision.i; \ fi; \ elif test ! -f micro-revision.i || \ test x"`cat micro-revision.tmp`" != x"`cat micro-revision.i`"; then \ mv micro-revision.tmp micro-revision.i; \ fi; \ rm -f micro-revision.tmp; \ true FORCE: export PYTHON=@PYTHON@ export SHELL=@SHELL@ export abs_top_srcdir=@abs_top_srcdir@ export builddir=@builddir@ # fallback_consensus # If we don't have it, fake it. src_config_fallback-consensus: touch src/config/fallback-consensus # Generate the html documentation from asciidoc, but don't do # machine-specific replacements yet $(html_in) : $(AM_V_GEN)$(top_srcdir)/doc/asciidoc-helper.sh html @ASCIIDOC@ $(top_srcdir)/$@ # Generate the manpage from asciidoc, but don't do # machine-specific replacements yet $(man_in) : $(AM_V_GEN)$(top_srcdir)/doc/asciidoc-helper.sh man @A2X@ $(top_srcdir)/$@ doc/tor.1.in: doc/tor.1.txt doc/torify.1.in: doc/torify.1.txt doc/tor-gencert.1.in: doc/tor-gencert.1.txt doc/tor-resolve.1.in: doc/tor-resolve.1.txt doc/tor.html.in: doc/tor.1.txt doc/torify.html.in: doc/torify.1.txt doc/tor-gencert.html.in: doc/tor-gencert.1.txt doc/tor-resolve.html.in: doc/tor-resolve.1.txt # use config.status to swap all machine-specific magic strings # in the asciidoc with their replacements. $(asciidoc_product) : $(AM_V_GEN)$(MKDIR_P) $(@D) $(AM_V_at)if test -e $(top_srcdir)/$@.in && ! test -e $@.in ; then \ cp $(top_srcdir)/$@.in $@; \ fi $(AM_V_at)$(top_builddir)/config.status -q --file=$@; doc/tor.html: doc/tor.html.in doc/tor-gencert.html: doc/tor-gencert.html.in doc/tor-resolve.html: doc/tor-resolve.html.in doc/torify.html: doc/torify.html.in doc/tor.1: doc/tor.1.in doc/tor-gencert.1: doc/tor-gencert.1.in doc/tor-resolve.1: doc/tor-resolve.1.in doc/torify.1: doc/torify.1.in #install-data-local: # $(INSTALL) -m 755 -d $(LOCALSTATEDIR)/lib/tor # Allows to override rpmbuild with rpmbuild-md5 from fedora-packager so that # building for EL5 won't fail on https://bugzilla.redhat.com/show_bug.cgi?id=490613 RPMBUILD ?= rpmbuild # Use automake's dist-gzip target to build the tarball dist-rpm: dist-gzip TIMESTAMP=$$(date +"%Y-%m-%d_%H.%M.%S"); \ RPM_BUILD_DIR=$$(mktemp -d "/tmp/tor-rpm-build-$$TIMESTAMP-XXXX"); \ mkdir -p "$$RPM_BUILD_DIR"/{BUILD,RPMS,SOURCES/"tor-$(VERSION)",SPECS,SRPMS}; \ cp -fa "$(distdir).tar.gz" "$$RPM_BUILD_DIR"/SOURCES/; \ LIBS=-lrt $(RPMBUILD) -ba --define "_topdir $$RPM_BUILD_DIR" tor.spec; \ cp -fa "$$RPM_BUILD_DIR"/SRPMS/* .; \ cp -fa "$$RPM_BUILD_DIR"/RPMS/* .; \ rm -rf "$$RPM_BUILD_DIR"; \ echo "RPM build finished"; \ #end of dist-rpm dist: check doxygen: doxygen && cd doc/doxygen/latex && make test: all $(top_builddir)/src/test/test need-chutney-path: @if test ! -d "$$CHUTNEY_PATH"; then \ echo '$$CHUTNEY_PATH was not set.'; \ if test -d $(top_srcdir)/../chutney -a -x $(top_srcdir)/../chutney/chutney; then \ echo "Assuming test-network.sh will find" $(top_srcdir)/../chutney; \ else \ echo; \ echo "To run these tests, git clone https://git.torproject.org/chutney.git ; export CHUTNEY_PATH=\`pwd\`/chutney"; \ exit 1; \ fi \ fi # Note that test-network requires a copy of Chutney in $CHUTNEY_PATH. # Chutney can be cloned from https://git.torproject.org/chutney.git . test-network: need-chutney-path all $(top_srcdir)/src/test/test-network.sh $(TEST_NETWORK_FLAGS) # Run all available tests using automake's test-driver # only run IPv6 tests if we can ping6 ::1 (localhost) # some IPv6 tests will fail without an IPv6 DNS server (see #16971 and #17011) # only run mixed tests if we have a tor-stable binary # see #17015 for autodetection of different tor versions test-network-all: need-chutney-path all test-driver mkdir -p $(TEST_NETWORK_ALL_LOG_DIR) @flavors="$(TEST_CHUTNEY_FLAVORS)"; \ if ping6 -q -o ::1 >/dev/null 2>&1; then \ echo "ping6 ::1 succeeded, running IPv6 flavors: $(TEST_CHUTNEY_FLAVORS_IPV6)."; \ flavors="$$flavors $(TEST_CHUTNEY_FLAVORS_IPV6)"; \ else \ echo "ping6 ::1 failed, skipping IPv6 flavors: $(TEST_CHUTNEY_FLAVORS_IPV6)."; \ skip_flavors="$$skip_flavors $(TEST_CHUTNEY_FLAVORS_IPV6)"; \ fi; \ if command -v tor-stable >/dev/null 2>&1; then \ echo "tor-stable found, running mixed flavors: $(TEST_CHUTNEY_FLAVORS_MIXED)."; \ flavors="$$flavors $(TEST_CHUTNEY_FLAVORS_MIXED)"; \ else \ echo "tor-stable not found, skipping mixed flavors: $(TEST_CHUTNEY_FLAVORS_MIXED)."; \ skip_flavors="$$skip_flavors $(TEST_CHUTNEY_FLAVORS_MIXED)"; \ fi; \ for f in $$skip_flavors; do \ echo "SKIP: $$f"; \ done; \ for f in $$flavors; do \ ./test-driver --test-name $$f --log-file $(TEST_NETWORK_ALL_LOG_DIR)/$$f.log --trs-file $(TEST_NETWORK_ALL_LOG_DIR)/$$f.trs $(TEST_NETWORK_ALL_DRIVER_FLAGS) $(top_srcdir)/src/test/test-network.sh --flavor $$f $(TEST_NETWORK_FLAGS); \ done; \ echo "Log and result files are available in $(TEST_NETWORK_ALL_LOG_DIR)."; \ ! grep -q FAIL test_network_log/*.trs need-stem-path: @if test ! -d "$$STEM_SOURCE_DIR"; then \ echo '$$STEM_SOURCE_DIR was not set.'; echo; \ echo "To run these tests, git clone https://git.torproject.org/stem.git/ ; export STEM_SOURCE_DIR=\`pwd\`/stem"; \ exit 1; \ fi test-stem: need-stem-path $(TESTING_TOR_BINARY) @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor $(TESTING_TOR_BINARY) --all --log notice --target RUN_ALL; test-stem-full: need-stem-path $(TESTING_TOR_BINARY) @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor $(TESTING_TOR_BINARY) --all --log notice --target RUN_ALL,ONLINE -v; test-full: need-stem-path need-chutney-path check test-network test-stem test-full-online: need-stem-path need-chutney-path check test-network test-stem-full reset-gcov: rm -f $(top_builddir)/src/*/*.gcda $(top_builddir)/src/*/*/*.gcda coverage-html: all @COVERAGE_ENABLED_TRUE@ test -e "`which lcov`" || (echo "lcov must be installed. See ." && false) @COVERAGE_ENABLED_TRUE@ test -d "$(HTML_COVER_DIR)" || $(MKDIR_P) "$(HTML_COVER_DIR)" @COVERAGE_ENABLED_TRUE@ lcov --rc lcov_branch_coverage=1 --directory $(top_builddir)/src --zerocounters @COVERAGE_ENABLED_TRUE@ $(MAKE) reset-gcov @COVERAGE_ENABLED_TRUE@ $(MAKE) check @COVERAGE_ENABLED_TRUE@ lcov --capture --rc lcov_branch_coverage=1 --no-external --directory $(top_builddir) --base-directory $(top_srcdir) --output-file "$(HTML_COVER_DIR)/lcov.tmp" @COVERAGE_ENABLED_TRUE@ lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info" @COVERAGE_ENABLED_TRUE@ genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info" @COVERAGE_ENABLED_FALSE@ @printf "Not configured with --enable-coverage, run ./configure --enable-coverage\n" coverage-html-full: all test -e "`which lcov`" || (echo "lcov must be installed. See ." && false) test -d "$(HTML_COVER_DIR)" || mkdir -p "$(HTML_COVER_DIR)" lcov --rc lcov_branch_coverage=1 --directory ./src --zerocounters $(MAKE) reset-gcov $(MAKE) check $(MAKE) test-stem-full CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh --flavor hs lcov --capture --rc lcov_branch_coverage=1 --no-external --directory . --output-file "$(HTML_COVER_DIR)/lcov.tmp" lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info" genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info" # Avoid strlcpy.c, strlcat.c, aes.c, OpenBSD_malloc_Linux.c, sha256.c, # eventdns.[hc], tinytest*.[ch] check-spaces: $(top_srcdir)/scripts/maint/checkSpace.pl -C \ $(top_srcdir)/src/common/*.[ch] \ $(top_srcdir)/src/or/*.[ch] \ $(top_srcdir)/src/test/*.[ch] \ $(top_srcdir)/src/tools/*.[ch] check-docs: all $(PERL) $(top_builddir)/scripts/maint/checkOptionDocs.pl check-logs: $(top_srcdir)/scripts/maint/checkLogs.pl \ $(top_srcdir)/src/*/*.[ch] | sort -n .PHONY: check-changes check-changes: @if test -d "$(top_srcdir)/changes"; then \ $(PYTHON) $(top_srcdir)/scripts/maint/lintChanges.py $(top_srcdir)/changes/*; \ fi .PHONY: update-versions update-versions: $(PERL) $(top_builddir)/scripts/maint/updateVersions.pl version: @echo "Tor @VERSION@" @if test -d "$(top_srcdir)/.git" && test -x "`which git 2>&1;true`"; then \ echo -n "git: " ;\ (cd "$(top_srcdir)" && git rev-parse --short=16 HEAD); \ fi mostlyclean-local: rm -f $(top_builddir)/src/*/*.gc{da,no} $(top_builddir)/src/*/*/*.gc{da,no} rm -rf $(HTML_COVER_DIR) rm -rf $(top_builddir)/doc/doxygen rm -rf $(TEST_NETWORK_ALL_LOG_DIR) # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: tor-0.2.7.6/Makefile.nmake0000644000175000017500000000063212621363245012150 00000000000000all: cd src/common $(MAKE) /F Makefile.nmake cd ../../src/ext $(MAKE) /F Makefile.nmake cd ../../src/or $(MAKE) /F Makefile.nmake cd ../../src/test $(MAKE) /F Makefile.nmake clean: cd src/common $(MAKE) /F Makefile.nmake clean cd ../../src/ext $(MAKE) /F Makefile.nmake clean cd ../../src/or $(MAKE) /F Makefile.nmake clean cd ../../src/test $(MAKE) /F Makefile.nmake clean tor-0.2.7.6/ReleaseNotes0000644000175000017500000247201112632347150011737 00000000000000This document summarizes new features and bugfixes in each stable release of Tor. If you want to see more detailed descriptions of the changes in each development snapshot, see the ChangeLog file. Changes in version 0.2.7.6 - 2015-12-10 Tor version 0.2.7.6 fixes a major bug in entry guard selection, as well as a minor bug in hidden service reliability. o Major bugfixes (guard selection): - Actually look at the Guard flag when selecting a new directory guard. When we implemented the directory guard design, we accidentally started treating all relays as if they have the Guard flag during guard selection, leading to weaker anonymity and worse performance. Fixes bug 17772; bugfix on 0.2.4.8-alpha. Discovered by Mohsen Imani. o Minor features (geoip): - Update geoip and geoip6 to the December 1 2015 Maxmind GeoLite2 Country database. o Minor bugfixes (compilation): - When checking for net/pfvar.h, include netinet/in.h if possible. This fixes transparent proxy detection on OpenBSD. Fixes bug 17551; bugfix on 0.1.2.1-alpha. Patch from "rubiate". - Fix a compilation warning with Clang 3.6: Do not check the presence of an address which can never be NULL. Fixes bug 17781. o Minor bugfixes (correctness): - When displaying an IPv6 exit policy, include the mask bits correctly even when the number is greater than 31. Fixes bug 16056; bugfix on 0.2.4.7-alpha. Patch from "gturner". - The wrong list was used when looking up expired intro points in a rend service object, causing what we think could be reachability issues for hidden services, and triggering a BUG log. Fixes bug 16702; bugfix on 0.2.7.2-alpha. - Fix undefined behavior in the tor_cert_checksig function. Fixes bug 17722; bugfix on 0.2.7.2-alpha. Changes in version 0.2.7.5 - 2015-11-20 The Tor 0.2.7 release series is dedicated to the memory of Tor user and privacy advocate Caspar Bowden (1961-2015). Caspar worked tirelessly to advocate human rights regardless of national borders, and oppose the encroachments of mass surveillance. He opposed national exceptionalism, he brought clarity to legal and policy debates, he understood and predicted the impact of mass surveillance on the world, and he laid the groundwork for resisting it. While serving on the Tor Project's board of directors, he brought us his uncompromising focus on technical excellence in the service of humankind. Caspar was an inimitable force for good and a wonderful friend. He was kind, humorous, generous, gallant, and believed we should protect one another without exception. We honor him here for his ideals, his efforts, and his accomplishments. Please honor his memory with works that would make him proud. Tor 0.2.7.5 is the first stable release in the Tor 0.2.7 series. The 0.2.7 series adds a more secure identity key type for relays, improves cryptography performance, resolves several longstanding hidden-service performance issues, improves controller support for hidden services, and includes small bugfixes and performance improvements throughout the program. This release series also includes more tests than before, and significant simplifications to which parts of Tor invoke which others. For a full list of changes, see below. o New system requirements: - Tor no longer includes workarounds to support Libevent versions before 1.3e. Libevent 2.0 or later is recommended. Closes ticket 15248. - Tor no longer supports copies of OpenSSL that are missing support for Elliptic Curve Cryptography. (We began using ECC when available in 0.2.4.8-alpha, for more safe and efficient key negotiation.) In particular, support for at least one of P256 or P224 is now required, with manual configuration needed if only P224 is available. Resolves ticket 16140. - Tor no longer supports versions of OpenSSL before 1.0. (If you are on an operating system that has not upgraded to OpenSSL 1.0 or later, and you compile Tor from source, you will need to install a more recent OpenSSL to link Tor against.) These versions of OpenSSL are still supported by the OpenSSL, but the numerous cryptographic improvements in later OpenSSL releases makes them a clear choice. Resolves ticket 16034. o Major features (controller): - Add the ADD_ONION and DEL_ONION commands that allow the creation and management of hidden services via the controller. Closes ticket 6411. - New "GETINFO onions/current" and "GETINFO onions/detached" commands to get information about hidden services created via the controller. Part of ticket 6411. - New HSFETCH command to launch a request for a hidden service descriptor. Closes ticket 14847. - New HSPOST command to upload a hidden service descriptor. Closes ticket 3523. Patch by "DonnchaC". o Major features (Ed25519 identity keys, Proposal 220): - Add support for offline encrypted Ed25519 master keys. To use this feature on your tor relay, run "tor --keygen" to make a new master key (or to make a new signing key if you already have a master key). Closes ticket 13642. - All relays now maintain a stronger identity key, using the Ed25519 elliptic curve signature format. This master key is designed so that it can be kept offline. Relays also generate an online signing key, and a set of other Ed25519 keys and certificates. These are all automatically regenerated and rotated as needed. Implements part of ticket 12498. - Directory authorities now vote on Ed25519 identity keys along with RSA1024 keys. Implements part of ticket 12498. - Directory authorities track which Ed25519 identity keys have been used with which RSA1024 identity keys, and do not allow them to vary freely. Implements part of ticket 12498. - Microdescriptors now include Ed25519 identity keys. Implements part of ticket 12498. - Add a --newpass option to allow changing or removing the passphrase of an encrypted key with tor --keygen. Implements part of ticket 16769. - Add a new OfflineMasterKey option to tell Tor never to try loading or generating a secret Ed25519 identity key. You can use this in combination with tor --keygen to manage offline and/or encrypted Ed25519 keys. Implements ticket 16944. - On receiving a HUP signal, check to see whether the Ed25519 signing key has changed, and reload it if so. Closes ticket 16790. - Significant usability improvements for Ed25519 key management. Log messages are better, and the code can recover from far more failure conditions. Thanks to "s7r" for reporting and diagnosing so many of these! o Major features (ECC performance): - Improve the runtime speed of Ed25519 signature verification by using Ed25519-donna's batch verification support. Implements ticket 16533. - Improve the speed of Ed25519 operations and Curve25519 keypair generation when built targeting 32 bit x86 platforms with SSE2 available. Implements ticket 16535. - Improve the runtime speed of Ed25519 operations by using the public-domain Ed25519-donna by Andrew M. ("floodyberry"). Implements ticket 16467. - Improve the runtime speed of the ntor handshake by using an optimized curve25519 basepoint scalarmult implementation from the public-domain Ed25519-donna by Andrew M. ("floodyberry"), based on ideas by Adam Langley. Implements ticket 9663. o Major features (Hidden services): - Hidden services, if using the EntryNodes option, are required to use more than one EntryNode, in order to avoid a guard discovery attack. (This would only affect people who had configured hidden services and manually specified the EntryNodes option with a single entry-node. The impact was that it would be easy to remotely identify the guard node used by such a hidden service. See ticket for more information.) Fixes ticket 14917. - Add the torrc option HiddenServiceNumIntroductionPoints, to specify a fixed number of introduction points. Its maximum value is 10 and default is 3. Using this option can increase a hidden service's reliability under load, at the cost of making it more visible that the hidden service is facing extra load. Closes ticket 4862. - Remove the adaptive algorithm for choosing the number of introduction points, which used to change the number of introduction points (poorly) depending on the number of connections the HS sees. Closes ticket 4862. o Major features (onion key cross-certification): - Relay descriptors now include signatures of their own identity keys, made using the TAP and ntor onion keys. These signatures allow relays to prove ownership of their own onion keys. Because of this change, microdescriptors will no longer need to include RSA identity keys. Implements proposal 228; closes ticket 12499. o Major bugfixes (client-side privacy, also in 0.2.6.9): - Properly separate out each SOCKSPort when applying stream isolation. The error occurred because each port's session group was being overwritten by a default value when the listener connection was initialized. Fixes bug 16247; bugfix on 0.2.6.3-alpha. Patch by "jojelino". o Major bugfixes (hidden service clients, stability, also in 0.2.6.10): - Stop refusing to store updated hidden service descriptors on a client. This reverts commit 9407040c59218 (which indeed fixed bug 14219, but introduced a major hidden service reachability regression detailed in bug 16381). This is a temporary fix since we can live with the minor issue in bug 14219 (it just results in some load on the network) but the regression of 16381 is too much of a setback. First-round fix for bug 16381; bugfix on 0.2.6.3-alpha. o Major bugfixes (hidden services): - Revert commit that made directory authorities assign the HSDir flag to relay without a DirPort; this was bad because such relays can't handle BEGIN_DIR cells. Fixes bug 15850; bugfix on tor-0.2.6.3-alpha. - When cannibalizing a circuit for an introduction point, always extend to the chosen exit node (creating a 4 hop circuit). Previously Tor would use the current circuit exit node, which changed the original choice of introduction point, and could cause the hidden service to skip excluded introduction points or reconnect to a skipped introduction point. Fixes bug 16260; bugfix on 0.1.0.1-rc. o Major bugfixes (memory leaks): - Fix a memory leak in ed25519 batch signature checking. Fixes bug 17398; bugfix on 0.2.6.1-alpha. o Major bugfixes (open file limit): - The open file limit wasn't checked before calling tor_accept_socket_nonblocking(), which would make Tor exceed the limit. Now, before opening a new socket, Tor validates the open file limit just before, and if the max has been reached, return an error. Fixes bug 16288; bugfix on 0.1.1.1-alpha. o Major bugfixes (security, correctness): - Fix an error that could cause us to read 4 bytes before the beginning of an openssl string. This bug could be used to cause Tor to crash on systems with unusual malloc implementations, or systems with unusual hardening installed. Fixes bug 17404; bugfix on 0.2.3.6-alpha. o Major bugfixes (stability, also in 0.2.6.10): - Stop crashing with an assertion failure when parsing certain kinds of malformed or truncated microdescriptors. Fixes bug 16400; bugfix on 0.2.6.1-alpha. Found by "torkeln"; fix based on a patch by "cypherpunks_backup". - Stop random client-side assertion failures that could occur when connecting to a busy hidden service, or connecting to a hidden service while a NEWNYM is in progress. Fixes bug 16013; bugfix on 0.1.0.1-rc. o Minor features (client, SOCKS): - Add GroupWritable and WorldWritable options to unix-socket based SocksPort and ControlPort options. These options apply to a single socket, and override {Control,Socks}SocketsGroupWritable. Closes ticket 15220. - Relax the validation done to hostnames in SOCKS5 requests, and allow a single trailing '.' to cope with clients that pass FQDNs using that syntax to explicitly indicate that the domain name is fully-qualified. Fixes bug 16674; bugfix on 0.2.6.2-alpha. - Relax the validation of hostnames in SOCKS5 requests, allowing the character '_' to appear, in order to cope with domains observed in the wild that are serving non-RFC compliant records. Resolves ticket 16430. o Minor features (client-side privacy): - New KeepAliveIsolateSOCKSAuth option to indefinitely extend circuit lifespan when IsolateSOCKSAuth and streams with SOCKS authentication are attached to the circuit. This allows applications like TorBrowser to manage circuit lifetime on their own. Implements feature 15482. - When logging malformed hostnames from SOCKS5 requests, respect SafeLogging configuration. Fixes bug 16891; bugfix on 0.1.1.16-rc. o Minor features (clock-jump tolerance): - Recover better when our clock jumps back many hours, like might happen for Tails or Whonix users who start with a very wrong hardware clock, use Tor to discover a more accurate time, and then fix their clock. Resolves part of ticket 8766. o Minor features (command-line interface): - Make --hash-password imply --hush to prevent unnecessary noise. Closes ticket 15542. Patch from "cypherpunks". - Print a warning whenever we find a relative file path being used as torrc option. Resolves issue 14018. o Minor features (compilation): - Give a warning as early as possible when trying to build with an unsupported OpenSSL version. Closes ticket 16901. - Use C99 variadic macros when the compiler is not GCC. This avoids failing compilations on MSVC, and fixes a log-file-based race condition in our old workarounds. Original patch from Gisle Vanem. o Minor features (control protocol): - Support network-liveness GETINFO key and NETWORK_LIVENESS event in the control protocol. Resolves ticket 15358. o Minor features (controller): - Add DirAuthority lines for default directory authorities to the output of the "GETINFO config/defaults" command if not already present. Implements ticket 14840. - Controllers can now use "GETINFO hs/client/desc/id/..." to retrieve items from the client's hidden service descriptor cache. Closes ticket 14845. - Implement a new controller command "GETINFO status/fresh-relay- descs" to fetch a descriptor/extrainfo pair that was generated on demand just for the controller's use. Implements ticket 14784. o Minor features (directory authorities): - Directory authorities no longer vote against the "Fast", "Stable", and "HSDir" flags just because they were going to vote against "Running": if the consensus turns out to be that the router was running, then the authority's vote should count. Patch from Peter Retzlaff; closes issue 8712. o Minor features (directory authorities, security, also in 0.2.6.9): - The HSDir flag given by authorities now requires the Stable flag. For the current network, this results in going from 2887 to 2806 HSDirs. Also, it makes it harder for an attacker to launch a sybil attack by raising the effort for a relay to become Stable to require at the very least 7 days, while maintaining the 96 hours uptime requirement for HSDir. Implements ticket 8243. o Minor features (DoS-resistance): - Make it harder for attackers to overload hidden services with introductions, by blocking multiple introduction requests on the same circuit. Resolves ticket 15515. o Minor features (geoip): - Update geoip and geoip6 to the October 9 2015 Maxmind GeoLite2 Country database. o Minor features (hidden services): - Add the new options "HiddenServiceMaxStreams" and "HiddenServiceMaxStreamsCloseCircuit" to allow hidden services to limit the maximum number of simultaneous streams per circuit, and optionally tear down the circuit when the limit is exceeded. Part of ticket 16052. - Client now uses an introduction point failure cache to know when to fetch or keep a descriptor in their cache. Previously, failures were recorded implicitly, but not explicitly remembered. Closes ticket 16389. - Relays need to have the Fast flag to get the HSDir flag. As this is being written, we'll go from 2745 HSDirs down to 2342, a ~14% drop. This change should make some attacks against the hidden service directory system harder. Fixes ticket 15963. - Turn on hidden service statistics collection by setting the torrc option HiddenServiceStatistics to "1" by default. (This keeps track only of the fraction of traffic used by hidden services, and the total number of hidden services in existence.) Closes ticket 15254. - To avoid leaking HS popularity, don't cycle the introduction point when we've handled a fixed number of INTRODUCE2 cells but instead cycle it when a random number of introductions is reached, thus making it more difficult for an attacker to find out the amount of clients that have used the introduction point for a specific HS. Closes ticket 15745. o Minor features (logging): - Include the Tor version in all LD_BUG log messages, since people tend to cut and paste those into the bugtracker. Implements ticket 15026. o Minor features (pluggable transports): - When launching managed pluggable transports on Linux systems, attempt to have the kernel deliver a SIGTERM on tor exit if the pluggable transport process is still running. Resolves ticket 15471. - When launching managed pluggable transports, setup a valid open stdin in the child process that can be used to detect if tor has terminated. The "TOR_PT_EXIT_ON_STDIN_CLOSE" environment variable can be used by implementations to detect this new behavior. Resolves ticket 15435. o Minor bugfixes (torrc exit policies): - In each instance above, usage advice is provided to avoid the message. Resolves ticket 16069. Patch by "teor". Fixes part of bug 16069; bugfix on 0.2.4.7-alpha. - In torrc, "accept6 *" and "reject6 *" ExitPolicy lines now only produce IPv6 wildcard addresses. Previously they would produce both IPv4 and IPv6 wildcard addresses. Patch by "teor". Fixes part of bug 16069; bugfix on 0.2.4.7-alpha. - When parsing torrc ExitPolicies, we now issue an info-level message when expanding an "accept/reject *" line to include both IPv4 and IPv6 wildcard addresses. Related to ticket 16069. - When parsing torrc ExitPolicies, we now warn for a number of cases where the user's intent is likely to differ from Tor's actual behavior. These include: using an IPv4 address with an accept6 or reject6 line; using "private" on an accept6 or reject6 line; and including any ExitPolicy lines after accept *:* or reject *:*. Related to ticket 16069. o Minor bugfixes (command-line interface): - When "--quiet" is provided along with "--validate-config", do not write anything to stdout on success. Fixes bug 14994; bugfix on 0.2.3.3-alpha. - When complaining about bad arguments to "--dump-config", use stderr, not stdout. - Print usage information for --dump-config when it is used without an argument. Also, fix the error message to use different wording and add newline at the end. Fixes bug 15541; bugfix on 0.2.5.1-alpha. o Minor bugfixes (compilation): - Fix compilation of sandbox.c with musl-libc. Fixes bug 17347; bugfix on 0.2.5.1-alpha. Patch from 'jamestk'. - Repair compilation with the most recent (unreleased, alpha) vesions of OpenSSL 1.1. Fixes part of ticket 17237. o Minor bugfixes (compilation, also in 0.2.6.9): - Build with --enable-systemd correctly when libsystemd is installed, but systemd is not. Fixes bug 16164; bugfix on 0.2.6.3-alpha. Patch from Peter Palfrader. o Minor bugfixes (configuration, unit tests): - Only add the default fallback directories when the DirAuthorities, AlternateDirAuthority, and FallbackDir directory config options are set to their defaults. The default fallback directory list is currently empty, this fix will only change tor's behavior when it has default fallback directories. Includes unit tests for consider_adding_dir_servers(). Fixes bug 15642; bugfix on 90f6071d8dc0 in 0.2.4.7-alpha. Patch by "teor". o Minor bugfixes (controller): - Add the descriptor ID in each HS_DESC control event. It was missing, but specified in control-spec.txt. Fixes bug 15881; bugfix on 0.2.5.2-alpha. o Minor bugfixes (correctness): - For correctness, avoid modifying a constant string in handle_control_postdescriptor. Fixes bug 15546; bugfix on 0.1.1.16-rc. - Remove side-effects from tor_assert() calls. This was harmless, because we never disable assertions, but it is bad style and unnecessary. Fixes bug 15211; bugfix on 0.2.5.5, 0.2.2.36, and 0.2.0.10. - When calling channel_free_list(), avoid calling smartlist_remove() while inside a FOREACH loop. This partially reverts commit 17356fe7fd96af where the correct SMARTLIST_DEL_CURRENT was incorrectly removed. Fixes bug 16924; bugfix on 0.2.4.4-alpha. o Minor bugfixes (crypto error-handling, also in 0.2.6.10): - Check for failures from crypto_early_init, and refuse to continue. A previous typo meant that we could keep going with an uninitialized crypto library, and would have OpenSSL initialize its own PRNG. Fixes bug 16360; bugfix on 0.2.5.2-alpha, introduced when implementing ticket 4900. Patch by "teor". o Minor bugfixes (hidden service): - Fix an out-of-bounds read when parsing invalid INTRODUCE2 cells on a client authorized hidden service. Fixes bug 15823; bugfix on 0.2.1.6-alpha. - Remove an extraneous newline character from the end of hidden service descriptors. Fixes bug 15296; bugfix on 0.2.0.10-alpha. o Minor bugfixes (Linux seccomp2 sandbox): - Use the sandbox in tor_open_cloexec whether or not O_CLOEXEC is defined. Patch by "teor". Fixes bug 16515; bugfix on 0.2.3.1-alpha. - Allow bridge authorities to run correctly under the seccomp2 sandbox. Fixes bug 16964; bugfix on 0.2.5.1-alpha. - Add the "hidserv-stats" filename to our sandbox filter for the HiddenServiceStatistics option to work properly. Fixes bug 17354; bugfix on tor-0.2.6.2-alpha. Patch from David Goulet. o Minor bugfixes (Linux seccomp2 sandbox, also in 0.2.6.10): - Allow pipe() and pipe2() syscalls in the seccomp2 sandbox: we need these when eventfd2() support is missing. Fixes bug 16363; bugfix on 0.2.6.3-alpha. Patch from "teor". o Minor bugfixes (Linux seccomp2 sandbox, also in 0.2.6.9): - Allow systemd connections to work with the Linux seccomp2 sandbox code. Fixes bug 16212; bugfix on 0.2.6.2-alpha. Patch by Peter Palfrader. - Fix sandboxing to work when running as a relay, by allowing the renaming of secret_id_key, and allowing the eventfd2 and futex syscalls. Fixes bug 16244; bugfix on 0.2.6.1-alpha. Patch by Peter Palfrader. o Minor bugfixes (logging): - When building Tor under Clang, do not include an extra set of parentheses in log messages that include function names. Fixes bug 15269; bugfix on every released version of Tor when compiled with recent enough Clang. o Minor bugfixes (network): - When attempting to use fallback technique for network interface lookup, disregard loopback and multicast addresses since they are unsuitable for public communications. o Minor bugfixes (open file limit): - Fix set_max_file_descriptors() to set by default the max open file limit to the current limit when setrlimit() fails. Fixes bug 16274; bugfix on tor- 0.2.0.10-alpha. Patch by dgoulet. o Minor bugfixes (portability): - Check correctly for Windows socket errors in the workqueue backend. Fixes bug 16741; bugfix on 0.2.6.3-alpha. - Try harder to normalize the exit status of the Tor process to the standard-provided range. Fixes bug 16975; bugfix on every version of Tor ever. - Use libexecinfo on FreeBSD to enable backtrace support. Fixes part of bug 17151; bugfix on 0.2.5.2-alpha. Patch from Marcin Cieślak. o Minor bugfixes (relay): - Ensure that worker threads actually exit when a fatal error or shutdown is indicated. This fix doesn't currently affect the behavior of Tor, because Tor workers never indicates fatal error or shutdown except in the unit tests. Fixes bug 16868; bugfix on 0.2.6.3-alpha. - Fix a rarely-encountered memory leak when failing to initialize the thread pool. Fixes bug 16631; bugfix on 0.2.6.3-alpha. Patch from "cypherpunks". - Unblock threads before releasing the work queue mutex to ensure predictable scheduling behavior. Fixes bug 16644; bugfix on 0.2.6.3-alpha. o Minor bugfixes (security, exit policies): - ExitPolicyRejectPrivate now also rejects the relay's published IPv6 address (if any), and any publicly routable IPv4 or IPv6 addresses on any local interfaces. ticket 17027. Patch by "teor". Fixes bug 17027; bugfix on 0.2.0.11-alpha. o Minor bugfixes (statistics): - Disregard the ConnDirectionStatistics torrc options when Tor is not a relay since in that mode of operation no sensible data is being collected and because Tor might run into measurement hiccups when running as a client for some time, then becoming a relay. Fixes bug 15604; bugfix on 0.2.2.35. o Minor bugfixes (systemd): - Tor's systemd unit file no longer contains extraneous spaces. These spaces would sometimes confuse tools like deb-systemd- helper. Fixes bug 16162; bugfix on 0.2.5.5-alpha. o Minor bugfixes (test networks): - When self-testing reachability, use ExtendAllowPrivateAddresses to determine if local/private addresses imply reachability. The previous fix used TestingTorNetwork, which implies ExtendAllowPrivateAddresses, but this excluded rare configurations where ExtendAllowPrivateAddresses is set but TestingTorNetwork is not. Fixes bug 15771; bugfix on 0.2.6.1-alpha. Patch by "teor", issue discovered by CJ Ess. o Minor bugfixes (tests, also in 0.2.6.9): - Fix a crash in the unit tests when built with MSVC2013. Fixes bug 16030; bugfix on 0.2.6.2-alpha. Patch from "NewEraCracker". o Code simplification and refactoring: - Change the function that's called when we need to retry all downloads so that it only reschedules the downloads to happen immediately, rather than launching them all at once itself. This further simplifies Tor's callgraph. - Define WINVER and _WIN32_WINNT centrally, in orconfig.h, in order to ensure they remain consistent and visible everywhere. - Move some format-parsing functions out of crypto.c and crypto_curve25519.c into crypto_format.c and/or util_format.c. - Move the client-only parts of init_keys() into a separate function. Closes ticket 16763. - Move the hacky fallback code out of get_interface_address6() into separate function and get it covered with unit-tests. Resolves ticket 14710. - Refactor hidden service client-side cache lookup to intelligently report its various failure cases, and disentangle failure cases involving a lack of introduction points. Closes ticket 14391. - Remove some vestigial workarounds for the MSVC6 compiler. We haven't supported that in ages. - Remove the unused "nulterminate" argument from buf_pullup(). - Simplify the microdesc_free() implementation so that it no longer appears (to code analysis tools) to potentially invoke a huge suite of other microdesc functions. - Simply the control graph further by deferring the inner body of directory_all_unreachable() into a callback. Closes ticket 16762. - The link authentication code has been refactored for better testability and reliability. It now uses code generated with the "trunnel" binary encoding generator, to reduce the risk of bugs due to programmer error. Done as part of ticket 12498. - Treat the loss of an owning controller as equivalent to a SIGTERM signal. This removes a tiny amount of duplicated code, and simplifies our callgraph. Closes ticket 16788. - Use our own Base64 encoder instead of OpenSSL's, to allow more control over the output. Part of ticket 15652. - When generating an event to send to the controller, we no longer put the event over the network immediately. Instead, we queue these events, and use a Libevent callback to deliver them. This change simplifies Tor's callgraph by reducing the number of functions from which all other Tor functions are reachable. Closes ticket 16695. - Wrap Windows-only C files inside '#ifdef _WIN32' so that tools that try to scan or compile every file on Unix won't decide that they are broken. o Documentation: - Fix capitalization of SOCKS in sample torrc. Closes ticket 15609. - Improve the descriptions of statistics-related torrc options in the manpage to describe rationale and possible uses cases. Fixes issue 15550. - Improve the layout and formatting of ./configure --help messages. Closes ticket 15024. Patch from "cypherpunks". - Include a specific and (hopefully) accurate documentation of the torrc file's meta-format in doc/torrc_format.txt. This is mainly of interest to people writing programs to parse or generate torrc files. This document is not a commitment to long-term compatibility; some aspects of the current format are a bit ridiculous. Closes ticket 2325. - Include the TUNING document in our source tarball. It is referred to in the ChangeLog and an error message. Fixes bug 16929; bugfix on 0.2.6.1-alpha. - Note that HiddenServicePorts can take a unix domain socket. Closes ticket 17364. - Recommend a 40 GB example AccountingMax in torrc.sample rather than a 4 GB max. Closes ticket 16742. - Standardize on the term "server descriptor" in the manual page. Previously, we had used "router descriptor", "server descriptor", and "relay descriptor" interchangeably. Part of ticket 14987. - Advise users on how to configure separate IPv4 and IPv6 exit policies in the manpage and sample torrcs. Related to ticket 16069. - Fix an error in the manual page and comments for TestingDirAuthVoteHSDir[IsStrict], which suggested that a HSDir required "ORPort connectivity". While this is true, it is in no way unique to the HSDir flag. Of all the flags, only HSDirs need a DirPort configured in order for the authorities to assign that particular flag. Patch by "teor". Fixed as part of 14882; bugfix on 0.2.6.3-alpha. - Fix the usage message of tor-resolve(1) so that it no longer lists the removed -F option. Fixes bug 16913; bugfix on 0.2.2.28-beta. o Removed code: - Remove `USE_OPENSSL_BASE64` and the corresponding fallback code and always use the internal Base64 decoder. The internal decoder has been part of tor since tor-0.2.0.10-alpha, and no one should be using the OpenSSL one. Part of ticket 15652. - Remove the 'tor_strclear()' function; use memwipe() instead. Closes ticket 14922. - Remove the code that would try to aggressively flush controller connections while writing to them. This code was introduced in 0.1.2.7-alpha, in order to keep output buffers from exceeding their limits. But there is no longer a maximum output buffer size, and flushing data in this way caused some undesirable recursions in our call graph. Closes ticket 16480. - The internal pure-C tor-fw-helper tool is now removed from the Tor distribution, in favor of the pure-Go clone available from https://gitweb.torproject.org/tor-fw-helper.git/ . The libraries used by the C tor-fw-helper are not, in our opinion, very confidence- inspiring in their secure-programming techniques. Closes ticket 13338. o Removed features: - Remove the (seldom-used) DynamicDHGroups feature. For anti- fingerprinting we now recommend pluggable transports; for forward- secrecy in TLS, we now use the P-256 group. Closes ticket 13736. - Remove the HidServDirectoryV2 option. Now all relays offer to store hidden service descriptors. Related to 16543. - Remove the VoteOnHidServDirectoriesV2 option, since all authorities have long set it to 1. Closes ticket 16543. - Remove the undocumented "--digests" command-line option. It complicated our build process, caused subtle build issues on multiple platforms, and is now redundant since we started including git version identifiers. Closes ticket 14742. - Tor no longer contains checks for ancient directory cache versions that didn't know about microdescriptors. - Tor no longer contains workarounds for stat files generated by super-old versions of Tor that didn't choose guards sensibly. o Testing: - The test-network.sh script now supports performance testing. Requires corresponding chutney performance testing changes. Patch by "teor". Closes ticket 14175. - Add a new set of callgraph analysis scripts that use clang to produce a list of which Tor functions are reachable from which other Tor functions. We're planning to use these to help simplify our code structure by identifying illogical dependencies. - Add new 'test-full' and 'test-full-online' targets to run all tests, including integration tests with stem and chutney. - Autodetect CHUTNEY_PATH if the chutney and Tor sources are side- by-side in the same parent directory. Closes ticket 16903. Patch by "teor". - Document use of coverity, clang static analyzer, and clang dynamic undefined behavior and address sanitizers in doc/HACKING. Include detailed usage instructions in the blacklist. Patch by "teor". Closes ticket 15817. - Make "bridges+hs" the default test network. This tests almost all tor functionality during make test-network, while allowing tests to succeed on non-IPv6 systems. Requires chutney commit 396da92 in test-network-bridges-hs. Closes tickets 16945 (tor) and 16946 (chutney). Patches by "teor". - Make the test-workqueue test work on Windows by initializing the network before we begin. - New make target (make test-network-all) to run multiple applicable chutney test cases. Patch from Teor; closes 16953. - Now that OpenSSL has its own scrypt implementation, add an unit test that checks for interoperability between libscrypt_scrypt() and OpenSSL's EVP_PBE_scrypt() so that we could not use libscrypt and rely on EVP_PBE_scrypt() whenever possible. Resolves ticket 16189. - The link authentication protocol code now has extensive tests. - The relay descriptor signature testing code now has extensive tests. - The test_workqueue program now runs faster, and is enabled by default as a part of "make check". - Unit test dns_resolve(), dns_clip_ttl() and dns_get_expiry_ttl() functions in dns.c. Implements a portion of ticket 16831. - Use environment variables rather than autoconf substitutions to send variables from the build system to the test scripts. This change should be easier to maintain, and cause 'make distcheck' to work better than before. Fixes bug 17148. - When building Tor with testing coverage enabled, run Chutney tests (if any) using the 'tor-cov' coverage binary. - When running test-network or test-stem, check for the absence of stem/chutney before doing any build operations. - Add a test to verify that the compiler does not eliminate our memwipe() implementation. Closes ticket 15377. - Add make rule `check-changes` to verify the format of changes files. Closes ticket 15180. - Add unit tests for control_event_is_interesting(). Add a compile- time check that the number of events doesn't exceed the capacity of control_event_t.event_mask. Closes ticket 15431, checks for bugs similar to 13085. Patch by "teor". - Command-line argument tests moved to Stem. Resolves ticket 14806. - Integrate the ntor, backtrace, and zero-length keys tests into the automake test suite. Closes ticket 15344. - Remove assertions during builds to determine Tor's test coverage. We don't want to trigger these even in assertions, so including them artificially makes our branch coverage look worse than it is. This patch provides the new test-stem-full and coverage-html-full configure options. Implements ticket 15400. - New TestingDirAuthVote{Exit,Guard,HSDir}IsStrict flags to explicitly manage consensus flags in testing networks. Patch by "robgjansen", modified by "teor". Implements part of ticket 14882. - Check for matching value in server response in ntor_ref.py. Fixes bug 15591; bugfix on 0.2.4.8-alpha. Reported and fixed by "joelanders". - Set the severity correctly when testing get_interface_addresses_ifaddrs() and get_interface_addresses_win32(), so that the tests fail gracefully instead of triggering an assertion. Fixes bug 15759; bugfix on 0.2.6.3-alpha. Reported by Nicolas Derive. Changes in version 0.2.6.10 - 2015-07-12 Tor version 0.2.6.10 fixes some significant stability and hidden service client bugs, bulletproofs the cryptography init process, and fixes a bug when using the sandbox code with some older versions of Linux. Everyone running an older version, especially an older version of 0.2.6, should upgrade. o Major bugfixes (hidden service clients, stability): - Stop refusing to store updated hidden service descriptors on a client. This reverts commit 9407040c59218 (which indeed fixed bug 14219, but introduced a major hidden service reachability regression detailed in bug 16381). This is a temporary fix since we can live with the minor issue in bug 14219 (it just results in some load on the network) but the regression of 16381 is too much of a setback. First-round fix for bug 16381; bugfix on 0.2.6.3-alpha. o Major bugfixes (stability): - Stop crashing with an assertion failure when parsing certain kinds of malformed or truncated microdescriptors. Fixes bug 16400; bugfix on 0.2.6.1-alpha. Found by "torkeln"; fix based on a patch by "cypherpunks_backup". - Stop random client-side assertion failures that could occur when connecting to a busy hidden service, or connecting to a hidden service while a NEWNYM is in progress. Fixes bug 16013; bugfix on 0.1.0.1-rc. o Minor features (geoip): - Update geoip to the June 3 2015 Maxmind GeoLite2 Country database. - Update geoip6 to the June 3 2015 Maxmind GeoLite2 Country database. o Minor bugfixes (crypto error-handling): - Check for failures from crypto_early_init, and refuse to continue. A previous typo meant that we could keep going with an uninitialized crypto library, and would have OpenSSL initialize its own PRNG. Fixes bug 16360; bugfix on 0.2.5.2-alpha, introduced when implementing ticket 4900. Patch by "teor". o Minor bugfixes (Linux seccomp2 sandbox): - Allow pipe() and pipe2() syscalls in the seccomp2 sandbox: we need these when eventfd2() support is missing. Fixes bug 16363; bugfix on 0.2.6.3-alpha. Patch from "teor". Changes in version 0.2.6.9 - 2015-06-11 Tor 0.2.6.9 fixes a regression in the circuit isolation code, increases the requirements for receiving an HSDir flag, and addresses some other small bugs in the systemd and sandbox code. Clients using circuit isolation should upgrade; all directory authorities should upgrade. o Major bugfixes (client-side privacy): - Properly separate out each SOCKSPort when applying stream isolation. The error occurred because each port's session group was being overwritten by a default value when the listener connection was initialized. Fixes bug 16247; bugfix on 0.2.6.3-alpha. Patch by "jojelino". o Minor feature (directory authorities, security): - The HSDir flag given by authorities now requires the Stable flag. For the current network, this results in going from 2887 to 2806 HSDirs. Also, it makes it harder for an attacker to launch a sybil attack by raising the effort for a relay to become Stable which takes at the very least 7 days to do so and by keeping the 96 hours uptime requirement for HSDir. Implements ticket 8243. o Minor bugfixes (compilation): - Build with --enable-systemd correctly when libsystemd is installed, but systemd is not. Fixes bug 16164; bugfix on 0.2.6.3-alpha. Patch from Peter Palfrader. o Minor bugfixes (Linux seccomp2 sandbox): - Fix sandboxing to work when running as a relaymby renaming of secret_id_key, and allowing the eventfd2 and futex syscalls. Fixes bug 16244; bugfix on 0.2.6.1-alpha. Patch by Peter Palfrader. - Allow systemd connections to work with the Linux seccomp2 sandbox code. Fixes bug 16212; bugfix on 0.2.6.2-alpha. Patch by Peter Palfrader. o Minor bugfixes (tests): - Fix a crash in the unit tests when built with MSVC2013. Fixes bug 16030; bugfix on 0.2.6.2-alpha. Patch from "NewEraCracker". Changes in version 0.2.6.8 - 2015-05-21 Tor 0.2.6.8 fixes a bit of dodgy code in parsing INTRODUCE2 cells, and fixes an authority-side bug in assigning the HSDir flag. All directory authorities should upgrade. o Major bugfixes (hidden services, backport from 0.2.7.1-alpha): - Revert commit that made directory authorities assign the HSDir flag to relay without a DirPort; this was bad because such relays can't handle BEGIN_DIR cells. Fixes bug 15850; bugfix on tor-0.2.6.3-alpha. o Minor bugfixes (hidden service, backport from 0.2.7.1-alpha): - Fix an out-of-bounds read when parsing invalid INTRODUCE2 cells on a client authorized hidden service. Fixes bug 15823; bugfix on 0.2.1.6-alpha. o Minor features (geoip): - Update geoip to the April 8 2015 Maxmind GeoLite2 Country database. - Update geoip6 to the April 8 2015 Maxmind GeoLite2 Country database. Changes in version 0.2.6.7 - 2015-04-06 Tor 0.2.6.7 fixes two security issues that could be used by an attacker to crash hidden services, or crash clients visiting hidden services. Hidden services should upgrade as soon as possible; clients should upgrade whenever packages become available. This release also contains two simple improvements to make hidden services a bit less vulnerable to denial-of-service attacks. o Major bugfixes (security, hidden service): - Fix an issue that would allow a malicious client to trigger an assertion failure and halt a hidden service. Fixes bug 15600; bugfix on 0.2.1.6-alpha. Reported by "disgleirio". - Fix a bug that could cause a client to crash with an assertion failure when parsing a malformed hidden service descriptor. Fixes bug 15601; bugfix on 0.2.1.5-alpha. Found by "DonnchaC". o Minor features (DoS-resistance, hidden service): - Introduction points no longer allow multiple INTRODUCE1 cells to arrive on the same circuit. This should make it more expensive for attackers to overwhelm hidden services with introductions. Resolves ticket 15515. - Decrease the amount of reattempts that a hidden service performs when its rendezvous circuits fail. This reduces the computational cost for running a hidden service under heavy load. Resolves ticket 11447. Changes in version 0.2.5.12 - 2015-04-06 Tor 0.2.5.12 backports two fixes from 0.2.6.7 for security issues that could be used by an attacker to crash hidden services, or crash clients visiting hidden services. Hidden services should upgrade as soon as possible; clients should upgrade whenever packages become available. This release also backports a simple improvement to make hidden services a bit less vulnerable to denial-of-service attacks. o Major bugfixes (security, hidden service): - Fix an issue that would allow a malicious client to trigger an assertion failure and halt a hidden service. Fixes bug 15600; bugfix on 0.2.1.6-alpha. Reported by "disgleirio". - Fix a bug that could cause a client to crash with an assertion failure when parsing a malformed hidden service descriptor. Fixes bug 15601; bugfix on 0.2.1.5-alpha. Found by "DonnchaC". o Minor features (DoS-resistance, hidden service): - Introduction points no longer allow multiple INTRODUCE1 cells to arrive on the same circuit. This should make it more expensive for attackers to overwhelm hidden services with introductions. Resolves ticket 15515. Changes in version 0.2.4.27 - 2015-04-06 Tor 0.2.4.27 backports two fixes from 0.2.6.7 for security issues that could be used by an attacker to crash hidden services, or crash clients visiting hidden services. Hidden services should upgrade as soon as possible; clients should upgrade whenever packages become available. This release also backports a simple improvement to make hidden services a bit less vulnerable to denial-of-service attacks. o Major bugfixes (security, hidden service): - Fix an issue that would allow a malicious client to trigger an assertion failure and halt a hidden service. Fixes bug 15600; bugfix on 0.2.1.6-alpha. Reported by "disgleirio". - Fix a bug that could cause a client to crash with an assertion failure when parsing a malformed hidden service descriptor. Fixes bug 15601; bugfix on 0.2.1.5-alpha. Found by "DonnchaC". o Minor features (DoS-resistance, hidden service): - Introduction points no longer allow multiple INTRODUCE1 cells to arrive on the same circuit. This should make it more expensive for attackers to overwhelm hidden services with introductions. Resolves ticket 15515. Changes in version 0.2.6.6 - 2015-03-24 Tor 0.2.6.6 is the first stable release in the 0.2.6 series. It adds numerous safety, security, correctness, and performance improvements. Client programs can be configured to use more kinds of sockets, AutomapHosts works better, the multithreading backend is improved, cell transmission is refactored, test coverage is much higher, more denial-of-service attacks are handled, guard selection is improved to handle long-term guards better, pluggable transports should work a bit better, and some annoying hidden service performance bugs should be addressed. o New compiler and system requirements: - Tor 0.2.6.x requires that your compiler support more of the C99 language standard than before. The 'configure' script now detects whether your compiler supports C99 mid-block declarations and designated initializers. If it does not, Tor will not compile. We may revisit this requirement if it turns out that a significant number of people need to build Tor with compilers that don't bother implementing a 15-year-old standard. Closes ticket 13233. - Tor no longer supports systems without threading support. When we began working on Tor, there were several systems that didn't have threads, or where the thread support wasn't able to run the threads of a single process on multiple CPUs. That no longer holds: every system where Tor needs to run well now has threading support. Resolves ticket 12439. o Deprecated versions and removed support: - Tor relays older than 0.2.4.18-rc are no longer allowed to advertise themselves on the network. Closes ticket 13555. - Tor clients no longer support connecting to hidden services running on Tor 0.2.2.x and earlier; the Support022HiddenServices option has been removed. (There shouldn't be any hidden services running these versions on the network.) Closes ticket 7803. o Directory authority changes: - The directory authority Faravahar has a new IP address. This closes ticket 14487. - Remove turtles as a directory authority. - Add longclaw as a new (v3) directory authority. This implements ticket 13296. This keeps the directory authority count at 9. o Major features (bridges): - Expose the outgoing upstream HTTP/SOCKS proxy to pluggable transports if they are configured via the "TOR_PT_PROXY" environment variable. Implements proposal 232. Resolves ticket 8402. o Major features (changed defaults): - Prevent relay operators from unintentionally running exits: When a relay is configured as an exit node, we now warn the user unless the "ExitRelay" option is set to 1. We warn even more loudly if the relay is configured with the default exit policy, since this can indicate accidental misconfiguration. Setting "ExitRelay 0" stops Tor from running as an exit relay. Closes ticket 10067. o Major features (client performance, hidden services): - Allow clients to use optimistic data when connecting to a hidden service, which should remove a round-trip from hidden service initialization. See proposal 181 for details. Implements ticket 13211. o Major features (directory system): - Upon receiving an unparseable directory object, if its digest matches what we expected, then don't try to download it again. Previously, when we got a descriptor we didn't like, we would keep trying to download it over and over. Closes ticket 11243. - When downloading server- or microdescriptors from a directory server, we no longer launch multiple simultaneous requests to the same server. This reduces load on the directory servers, especially when directory guards are in use. Closes ticket 9969. - When downloading server- or microdescriptors over a tunneled connection, do not limit the length of our requests to what the Squid proxy is willing to handle. Part of ticket 9969. - Authorities can now vote on the correct digests and latest versions for different software packages. This allows packages that include Tor to use the Tor authority system as a way to get notified of updates and their correct digests. Implements proposal 227. Closes ticket 10395. o Major features (guards): - Introduce the Guardfraction feature to improves load balancing on guard nodes. Specifically, it aims to reduce the traffic gap that guard nodes experience when they first get the Guard flag. This is a required step if we want to increase the guard lifetime to 9 months or greater. Closes ticket 9321. o Major features (hidden services): - Make HS port scanning more difficult by immediately closing the circuit when a user attempts to connect to a nonexistent port. Closes ticket 13667. - Add a HiddenServiceStatistics option that allows Tor relays to gather and publish statistics about the overall size and volume of hidden service usage. Specifically, when this option is turned on, an HSDir will publish an approximate number of hidden services that have published descriptors to it the past 24 hours. Also, if a relay has acted as a hidden service rendezvous point, it will publish the approximate amount of rendezvous cells it has relayed the past 24 hours. The statistics themselves are obfuscated so that the exact values cannot be derived. For more details see proposal 238, "Better hidden service stats from Tor relays". This feature is currently disabled by default. Implements feature 13192. o Major features (performance): - Make the CPU worker implementation more efficient by avoiding the kernel and lengthening pipelines. The original implementation used sockets to transfer data from the main thread to the workers, and didn't allow any thread to be assigned more than a single piece of work at once. The new implementation avoids communications overhead by making requests in shared memory, avoiding kernel IO where possible, and keeping more requests in flight at once. Implements ticket 9682. o Major features (relay): - Raise the minimum acceptable configured bandwidth rate for bridges to 50 KiB/sec and for relays to 75 KiB/sec. (The old values were 20 KiB/sec.) Closes ticket 13822. - Complete revision of the code that relays use to decide which cell to send next. Formerly, we selected the best circuit to write on each channel, but we didn't select among channels in any sophisticated way. Now, we choose the best circuits globally from among those whose channels are ready to deliver traffic. This patch implements a new inter-cmux comparison API, a global high/low watermark mechanism and a global scheduler loop for transmission prioritization across all channels as well as among circuits on one channel. This schedule is currently tuned to (tolerantly) avoid making changes in network performance, but it should form the basis for major circuit performance increases in the future. Code by Andrea; tuning by Rob Jansen; implements ticket 9262. o Major features (sample torrc): - Add a new, infrequently-changed "torrc.minimal". This file is similar to torrc.sample, but it will change as infrequently as possible, for the benefit of users whose systems prompt them for intervention whenever a default configuration file is changed. Making this change allows us to update torrc.sample to be a more generally useful "sample torrc". o Major features (security, unix domain sockets): - Allow SocksPort to be an AF_UNIX Unix Domain Socket. Now high risk applications can reach Tor without having to create AF_INET or AF_INET6 sockets, meaning they can completely disable their ability to make non-Tor network connections. To create a socket of this type, use "SocksPort unix:/path/to/socket". Implements ticket 12585. - Support mapping hidden service virtual ports to AF_UNIX sockets. The syntax is "HiddenServicePort 80 unix:/path/to/socket". Implements ticket 11485. o Major bugfixes (client, automap): - Repair automapping with IPv6 addresses. This automapping should have worked previously, but one piece of debugging code that we inserted to detect a regression actually caused the regression to manifest itself again. Fixes bug 13811 and bug 12831; bugfix on 0.2.4.7-alpha. Diagnosed and fixed by Francisco Blas Izquierdo Riera. o Major bugfixes (crash, OSX, security): - Fix a remote denial-of-service opportunity caused by a bug in OSX's _strlcat_chk() function. Fixes bug 15205; bug first appeared in OSX 10.9. o Major bugfixes (directory authorities): - Do not assign the HSDir flag to relays if they are not Valid, or currently hibernating. Fixes 12573; bugfix on 0.2.0.10-alpha. o Major bugfixes (directory bandwidth performance): - Don't flush the zlib buffer aggressively when compressing directory information for clients. This should save about 7% of the bandwidth currently used for compressed descriptors and microdescriptors. Fixes bug 11787; bugfix on 0.1.1.23. o Major bugfixes (exit node stability): - Fix an assertion failure that could occur under high DNS load. Fixes bug 14129; bugfix on Tor 0.0.7rc1. Found by "jowr"; diagnosed and fixed by "cypherpunks". o Major bugfixes (FreeBSD IPFW transparent proxy): - Fix address detection with FreeBSD transparent proxies, when "TransProxyType ipfw" is in use. Fixes bug 15064; bugfix on 0.2.5.4-alpha. o Major bugfixes (hidden services): - When closing an introduction circuit that was opened in parallel with others, don't mark the introduction point as unreachable. Previously, the first successful connection to an introduction point would make the other introduction points get marked as having timed out. Fixes bug 13698; bugfix on 0.0.6rc2. o Major bugfixes (Linux seccomp2 sandbox): - Upon receiving sighup with the seccomp2 sandbox enabled, do not crash during attempts to call wait4. Fixes bug 15088; bugfix on 0.2.5.1-alpha. Patch from "sanic". o Major bugfixes (mixed relay-client operation): - When running as a relay and client at the same time (not recommended), if we decide not to use a new guard because we want to retry older guards, only close the locally-originating circuits passing through that guard. Previously we would close all the circuits through that guard. Fixes bug 9819; bugfix on 0.2.1.1-alpha. Reported by "skruffy". o Major bugfixes (pluggable transports): - Initialize the extended OR Port authentication cookie before launching pluggable transports. This prevents a race condition that occured when server-side pluggable transports would cache the authentication cookie before it has been (re)generated. Fixes bug 15240; bugfix on 0.2.5.1-alpha. o Major bugfixes (relay, stability, possible security): - Fix a bug that could lead to a relay crashing with an assertion failure if a buffer of exactly the wrong layout is passed to buf_pullup() at exactly the wrong time. Fixes bug 15083; bugfix on 0.2.0.10-alpha. Patch from "cypherpunks". - Do not assert if the 'data' pointer on a buffer is advanced to the very end of the buffer; log a BUG message instead. Only assert if it is past that point. Fixes bug 15083; bugfix on 0.2.0.10-alpha. o Minor features (build): - New --disable-system-torrc compile-time option to prevent Tor from looking for the system-wide torrc or torrc-defaults files. Resolves ticket 13037. o Minor features (client): - Clients are now willing to send optimistic data (before they receive a 'connected' cell) to relays of any version. (Relays without support for optimistic data are no longer supported on the Tor network.) Resolves ticket 13153. o Minor features (client): - Validate hostnames in SOCKS5 requests more strictly. If SafeSocks is enabled, reject requests with IP addresses as hostnames. Resolves ticket 13315. o Minor features (controller): - Add a "SIGNAL HEARTBEAT" controller command that tells Tor to write an unscheduled heartbeat message to the log. Implements feature 9503. - Include SOCKS_USERNAME and SOCKS_PASSWORD values in controller events so controllers can observe circuit isolation inputs. Closes ticket 8405. - ControlPort now supports the unix:/path/to/socket syntax as an alternative to the ControlSocket option, for consistency with SocksPort and HiddenServicePort. Closes ticket 14451. - New "GETINFO bw-event-cache" to get information about recent bandwidth events. Closes ticket 14128. Useful for controllers to get recent bandwidth history after the fix for ticket 13988. - Messages about problems in the bootstrap process now include information about the server we were trying to connect to when we noticed the problem. Closes ticket 15006. o Minor features (Denial of service resistance): - Count the total number of bytes used storing hidden service descriptors against the value of MaxMemInQueues. If we're low on memory, and more than 20% of our memory is used holding hidden service descriptors, free them until no more than 10% of our memory holds hidden service descriptors. Free the least recently fetched descriptors first. Resolves ticket 13806. - When we have recently been under memory pressure (over 3/4 of MaxMemInQueues is allocated), then allocate smaller zlib objects for small requests. Closes ticket 11791. o Minor features (directory authorities): - Don't list relays with a bandwidth estimate of 0 in the consensus. Implements a feature proposed during discussion of bug 13000. - In tor-gencert, report an error if the user provides the same argument more than once. - If a directory authority can't find a best consensus method in the votes that it holds, it now falls back to its favorite consensus method. Previously, it fell back to method 1. Neither of these is likely to get enough signatures, but "fall back to favorite" doesn't require us to maintain support an obsolete consensus method. Implements part of proposal 215. o Minor features (geoip): - Update geoip to the March 3 2015 Maxmind GeoLite2 Country database. - Update geoip6 to the March 3 2015 Maxmind GeoLite2 Country database. o Minor features (guard nodes): - Reduce the time delay before saving guard status to disk from 10 minutes to 30 seconds (or from one hour to 10 minutes if AvoidDiskWrites is set). Closes ticket 12485. o Minor features (heartbeat): - On relays, report how many connections we negotiated using each version of the Tor link protocols. This information will let us know if removing support for very old versions of the Tor protocols is harming the network. Closes ticket 15212. o Minor features (hidden service): - Make Sybil attacks against hidden services harder by changing the minimum time required to get the HSDir flag from 25 hours up to 96 hours. Addresses ticket 14149. - New option "HiddenServiceAllowUnknownPorts" to allow hidden services to disable the anti-scanning feature introduced in 0.2.6.2-alpha. With this option not set, a connection to an unlisted port closes the circuit. With this option set, only a RELAY_DONE cell is sent. Closes ticket 14084. - When re-enabling the network, don't try to build introduction circuits until we have successfully built a circuit. This makes hidden services come up faster when the network is re-enabled. Patch from "akwizgran". Closes ticket 13447. - When we fail to retrieve a hidden service descriptor, send the controller an "HS_DESC FAILED" controller event. Implements feature 13212. - New HiddenServiceDirGroupReadable option to cause hidden service directories and hostname files to be created group-readable. Patch from "anon", David Stainton, and "meejah". Closes ticket 11291. o Minor features (interface): - Implement "-f -" command-line option to read torrc configuration from standard input, if you don't want to store the torrc file in the file system. Implements feature 13865. o Minor features (logging): - Add a count of unique clients to the bridge heartbeat message. Resolves ticket 6852. - Suppress "router info incompatible with extra info" message when reading extrainfo documents from cache. (This message got loud around when we closed bug 9812 in 0.2.6.2-alpha.) Closes ticket 13762. - Elevate hidden service authorized-client message from DEBUG to INFO. Closes ticket 14015. - On Unix-like systems, you can now use named pipes as the target of the Log option, and other options that try to append to files. Closes ticket 12061. Patch from "carlo von lynX". - When opening a log file at startup, send it every log message that we generated between startup and opening it. Previously, log messages that were generated before opening the log file were only logged to stdout. Closes ticket 6938. - Add a TruncateLogFile option to overwrite logs instead of appending to them. Closes ticket 5583. - Quiet some log messages in the heartbeat and at startup. Closes ticket 14950. o Minor features (portability, Solaris): - Threads are no longer disabled by default on Solaris; we believe that the versions of Solaris with broken threading support are all obsolete by now. Resolves ticket 9495. o Minor features (relay): - Re-check our address after we detect a changed IP address from getsockname(). This ensures that the controller command "GETINFO address" will report the correct value. Resolves ticket 11582. Patch from "ra". - A new AccountingRule option lets Relays set whether they'd like AccountingMax to be applied separately to inbound and outbound traffic, or applied to the sum of inbound and outbound traffic. Resolves ticket 961. Patch by "chobe". - When identity keypair is generated for first time, log a congratulatory message that links to the new relay lifecycle document. Implements feature 10427. o Minor features (security, memory wiping): - Ensure we securely wipe keys from memory after crypto_digest_get_digest and init_curve25519_keypair_from_file have finished using them. Resolves ticket 13477. o Minor features (security, out-of-memory handling): - When handling an out-of-memory condition, allocate less memory for temporary data structures. Fixes issue 10115. - When handling an out-of-memory condition, consider more types of buffers, including those on directory connections, and zlib buffers. Resolves ticket 11792. o Minor features (stability): - Add assertions in our hash-table iteration code to check for corrupted values that could cause infinite loops. Closes ticket 11737. o Minor features (systemd): - Various improvements and modernizations in systemd hardening support. Closes ticket 13805. Patch from Craig Andrews. - Where supported, when running with systemd, report successful startup to systemd. Part of ticket 11016. Patch by Michael Scherer. - When running with systemd, support systemd watchdog messages. Part of ticket 11016. Patch by Michael Scherer. o Minor features (testing networks): - Add the TestingDirAuthVoteExit option, which lists nodes to assign the "Exit" flag regardless of their uptime, bandwidth, or exit policy. TestingTorNetwork must be set for this option to have any effect. Previously, authorities would take up to 35 minutes to give nodes the Exit flag in a test network. Partially implements ticket 13161. - Drop the minimum RendPostPeriod on a testing network to 5 seconds, and the default on a testing network to 2 minutes. Drop the MIN_REND_INITIAL_POST_DELAY on a testing network to 5 seconds, but keep the default on a testing network at 30 seconds. This reduces HS bootstrap time to around 25 seconds. Also, change the default time in test-network.sh to match. Closes ticket 13401. Patch by "teor". - Create TestingDirAuthVoteHSDir to correspond to TestingDirAuthVoteExit/Guard. Ensures that authorities vote the HSDir flag for the listed relays regardless of uptime or ORPort connectivity. Respects the value of VoteOnHidServDirectoriesV2. Partial implementation for ticket 14067. Patch by "teor". o Minor features (tor2web mode): - Introduce the config option Tor2webRendezvousPoints, which allows clients in Tor2webMode to select a specific Rendezvous Point to be used in HS circuits. This might allow better performance for Tor2Web nodes. Implements ticket 12844. o Minor features (transparent proxy): - Update the transparent proxy option checks to allow for both ipfw and pf on OS X. Closes ticket 14002. - Use the correct option when using IPv6 with transparent proxy support on Linux. Resolves 13808. Patch by Francisco Blas Izquierdo Riera. o Minor features (validation): - Check all date/time values passed to tor_timegm and parse_rfc1123_time for validity, taking leap years into account. Improves HTTP header validation. Implemented with bug 13476. - In correct_tm(), limit the range of values returned by system localtime(_r) and gmtime(_r) to be between the years 1 and 8099. This means we don't have to deal with negative or too large dates, even if a clock is wrong. Otherwise we might fail to read a file written by us which includes such a date. Fixes bug 13476. - Stop allowing invalid address patterns like "*/24" that contain both a wildcard address and a bit prefix length. This affects all our address-range parsing code. Fixes bug 7484; bugfix on 0.0.2pre14. o Minor bugfixes (bridge clients): - When configured to use a bridge without an identity digest (not recommended), avoid launching an extra channel to it when bootstrapping. Fixes bug 7733; bugfix on 0.2.4.4-alpha. o Minor bugfixes (bridges): - When DisableNetwork is set, do not launch pluggable transport plugins, and if any are running, terminate them. Fixes bug 13213; bugfix on 0.2.3.6-alpha. o Minor bugfixes (C correctness): - Fix several instances of possible integer overflow/underflow/NaN. Fixes bug 13104; bugfix on 0.2.3.1-alpha and later. Patches from "teor". - In circuit_build_times_calculate_timeout() in circuitstats.c, avoid dividing by zero in the pareto calculations. This traps under clang's "undefined-trap" sanitizer. Fixes bug 13290; bugfix on 0.2.2.2-alpha. - Fix an integer overflow in format_time_interval(). Fixes bug 13393; bugfix on 0.2.0.10-alpha. - Set the correct day of year value when the system's localtime(_r) or gmtime(_r) functions fail to set struct tm. Not externally visible. Fixes bug 13476; bugfix on 0.0.2pre14. - Avoid unlikely signed integer overflow in tor_timegm on systems with 32-bit time_t. Fixes bug 13476; bugfix on 0.0.2pre14. o Minor bugfixes (certificate handling): - If an authority operator accidentally makes a signing certificate with a future publication time, do not discard its real signing certificates. Fixes bug 11457; bugfix on 0.2.0.3-alpha. - Remove any old authority certificates that have been superseded for at least two days. Previously, we would keep superseded certificates until they expired, if they were published close in time to the certificate that superseded them. Fixes bug 11454; bugfix on 0.2.1.8-alpha. o Minor bugfixes (client): - Fix smartlist_choose_node_by_bandwidth() so that relays with the BadExit flag are not considered worthy candidates. Fixes bug 13066; bugfix on 0.1.2.3-alpha. - Use the consensus schedule for downloading consensuses, and not the generic schedule. Fixes bug 11679; bugfix on 0.2.2.6-alpha. - Handle unsupported or malformed SOCKS5 requests properly by responding with the appropriate error message before closing the connection. Fixes bugs 12971 and 13314; bugfix on 0.0.2pre13. o Minor bugfixes (client, automapping): - Avoid crashing on torrc lines for VirtualAddrNetworkIPv[4|6] when no value follows the option. Fixes bug 14142; bugfix on 0.2.4.7-alpha. Patch by "teor". - Fix a memory leak when using AutomapHostsOnResolve. Fixes bug 14195; bugfix on 0.1.0.1-rc. - Prevent changes to other options from removing the wildcard value "." from "AutomapHostsSuffixes". Fixes bug 12509; bugfix on 0.2.0.1-alpha. - Allow MapAddress and AutomapHostsOnResolve to work together when an address is mapped into another address type (like .onion) that must be automapped at resolve time. Fixes bug 7555; bugfix on 0.2.0.1-alpha. o Minor bugfixes (client, bridges): - When we are using bridges and we had a network connectivity problem, only retry connecting to our currently configured bridges, not all bridges we know about and remember using. Fixes bug 14216; bugfix on 0.2.2.17-alpha. o Minor bugfixes (client, DNS): - Report the correct cached DNS expiration times on SOCKS port or in DNS replies. Previously, we would report everything as "never expires." Fixes bug 14193; bugfix on 0.2.3.17-beta. - Avoid a small memory leak when we find a cached answer for a reverse DNS lookup in a client-side DNS cache. (Remember, client- side DNS caching is off by default, and is not recommended.) Fixes bug 14259; bugfix on 0.2.0.1-alpha. o Minor bugfixes (client, IPv6): - Reject socks requests to literal IPv6 addresses when IPv6Traffic flag is not set; and not because the NoIPv4Traffic flag was set. Previously we'd looked at the NoIPv4Traffic flag for both types of literal addresses. Fixes bug 14280; bugfix on 0.2.4.7-alpha. o Minor bugfixes (client, microdescriptors): - Use a full 256 bits of the SHA256 digest of a microdescriptor when computing which microdescriptors to download. This keeps us from erroneous download behavior if two microdescriptor digests ever have the same first 160 bits. Fixes part of bug 13399; bugfix on 0.2.3.1-alpha. - Reset a router's status if its microdescriptor digest changes, even if the first 160 bits remain the same. Fixes part of bug 13399; bugfix on 0.2.3.1-alpha. o Minor bugfixes (client, torrc): - Stop modifying the value of our DirReqStatistics torrc option just because we're not a bridge or relay. This bug was causing Tor Browser users to write "DirReqStatistics 0" in their torrc files as if they had chosen to change the config. Fixes bug 4244; bugfix on 0.2.3.1-alpha. - When GeoIPExcludeUnknown is enabled, do not incorrectly decide that our options have changed every time we SIGHUP. Fixes bug 9801; bugfix on 0.2.4.10-alpha. Patch from "qwerty1". o Minor bugfixes (compilation): - Fix a compilation warning on s390. Fixes bug 14988; bugfix on 0.2.5.2-alpha. - Silence clang warnings under --enable-expensive-hardening, including implicit truncation of 64 bit values to 32 bit, const char assignment to self, tautological compare, and additional parentheses around equality tests. Fixes bug 13577; bugfix on 0.2.5.4-alpha. - Fix a clang warning about checking whether an address in the middle of a structure is NULL. Fixes bug 14001; bugfix on 0.2.1.2-alpha. - The address of an array in the middle of a structure will always be non-NULL. clang recognises this and complains. Disable the tautologous and redundant check to silence this warning. Fixes bug 14001; bugfix on 0.2.1.2-alpha. - Compile correctly with (unreleased) OpenSSL 1.1.0 headers. Addresses ticket 14188. - Build without warnings with the stock OpenSSL srtp.h header, which has a duplicate declaration of SSL_get_selected_srtp_profile(). Fixes bug 14220; this is OpenSSL's bug, not ours. - Do not compile any code related to Tor2Web mode when Tor2Web mode is not enabled at compile time. Previously, this code was included in a disabled state. See discussion on ticket 12844. - Allow our configure script to build correctly with autoconf 2.62 again. Fixes bug 12693; bugfix on 0.2.5.2-alpha. - Improve the error message from ./configure to make it clear that when asciidoc has not been found, the user will have to either add --disable-asciidoc argument or install asciidoc. Resolves ticket 13228. o Minor bugfixes (controller): - Report "down" in response to the "GETINFO entry-guards" command when relays are down with an unreachable_since value. Previously, we would report "up". Fixes bug 14184; bugfix on 0.1.2.2-alpha. - Avoid crashing on a malformed EXTENDCIRCUIT command. Fixes bug 14116; bugfix on 0.2.2.9-alpha. o Minor bugfixes (controller): - Return an error when the second or later arguments of the "setevents" controller command are invalid events. Previously we would return success while silently skipping invalid events. Fixes bug 13205; bugfix on 0.2.3.2-alpha. Reported by "fpxnns". o Minor bugfixes (directory authority): - Allow directory authorities to fetch more data from one another if they find themselves missing lots of votes. Previously, they had been bumping against the 10 MB queued data limit. Fixes bug 14261; bugfix on 0.1.2.5-alpha. - Do not attempt to download extrainfo documents which we will be unable to validate with a matching server descriptor. Fixes bug 13762; bugfix on 0.2.0.1-alpha. - Fix a bug that was truncating AUTHDIR_NEWDESC events sent to the control port. Fixes bug 14953; bugfix on 0.2.0.1-alpha. - Enlarge the buffer to read bwauth generated files to avoid an issue when parsing the file in dirserv_read_measured_bandwidths(). Fixes bug 14125; bugfix on 0.2.2.1-alpha. - When running as a v3 directory authority, advertise that you serve extra-info documents so that clients who want them can find them from you too. Fixes part of bug 11683; bugfix on 0.2.0.1-alpha. o Minor bugfixes (directory system): - Always believe that v3 directory authorities serve extra-info documents, whether they advertise "caches-extra-info" or not. Fixes part of bug 11683; bugfix on 0.2.0.1-alpha. - Check the BRIDGE_DIRINFO flag bitwise rather than using equality. Previously, directories offering BRIDGE_DIRINFO and some other flag (i.e. microdescriptors or extrainfo) would be ignored when looking for bridges. Partially fixes bug 13163; bugfix on 0.2.0.7-alpha. o Minor bugfixes (file handling): - Stop failing when key files are zero-length. Instead, generate new keys, and overwrite the empty key files. Fixes bug 13111; bugfix on all versions of Tor. Patch by "teor". - Stop generating a fresh .old RSA onion key file when the .old file is missing. Fixes part of 13111; bugfix on 0.0.6rc1. - Avoid overwriting .old key files with empty key files. - Skip loading zero-length extrainfo store, router store, stats, state, and key files. - Avoid crashing when trying to reload a torrc specified as a relative path with RunAsDaemon turned on. Fixes bug 13397; bugfix on 0.2.3.11-alpha. o Minor bugfixes (hidden services): - Close the introduction circuit when we have no more usable intro points, instead of waiting for it to time out. This also ensures that no follow-up HS descriptor fetch is triggered when the circuit eventually times out. Fixes bug 14224; bugfix on 0.0.6. - When fetching a hidden service descriptor for a down service that was recently up, do not keep refetching until we try the same replica twice in a row. Fixes bug 14219; bugfix on 0.2.0.10-alpha. - Correctly send a controller event when we find that a rendezvous circuit has finished. Fixes bug 13936; bugfix on 0.1.1.5-alpha. - Pre-check directory permissions for new hidden-services to avoid at least one case of "Bug: Acting on config options left us in a broken state. Dying." Fixes bug 13942; bugfix on 0.0.6pre1. - When fetching hidden service descriptors, we now check not only for whether we got the hidden service we had in mind, but also whether we got the particular descriptors we wanted. This prevents a class of inefficient but annoying DoS attacks by hidden service directories. Fixes bug 13214; bugfix on 0.2.1.6-alpha. Reported by "special". o Minor bugfixes (Linux seccomp2 sandbox): - Make transparent proxy support work along with the seccomp2 sandbox. Fixes part of bug 13808; bugfix on 0.2.5.1-alpha. Patch by Francisco Blas Izquierdo Riera. - Fix a memory leak in tor-resolve when running with the sandbox enabled. Fixes bug 14050; bugfix on 0.2.5.9-rc. - Allow glibc fatal errors to be sent to stderr before Tor exits. Previously, glibc would try to write them to /dev/tty, and the sandbox would trap the call and make Tor exit prematurely. Fixes bug 14759; bugfix on 0.2.5.1-alpha. o Minor bugfixes (logging): - Avoid crashing when there are more log domains than entries in domain_list. Bugfix on 0.2.3.1-alpha. - Downgrade warnings about RSA signature failures to info log level. Emit a warning when an extra info document is found incompatible with a corresponding router descriptor. Fixes bug 9812; bugfix on 0.0.6rc3. - Make connection_ap_handshake_attach_circuit() log the circuit ID correctly. Fixes bug 13701; bugfix on 0.0.6. o Minor bugfixes (networking): - Check for orconns and use connection_or_close_for_error() rather than connection_mark_for_close() directly in the getsockopt() failure case of connection_handle_write_impl(). Fixes bug 11302; bugfix on 0.2.4.4-alpha. o Minor bugfixes (parsing): - Stop accepting milliseconds (or other junk) at the end of descriptor publication times. Fixes bug 9286; bugfix on 0.0.2pre25. - Support two-number and three-number version numbers correctly, in case we change the Tor versioning system in the future. Fixes bug 13661; bugfix on 0.0.8pre1. o Minor bugfixes (portability): - Fix the ioctl()-based network interface lookup code so that it will work on systems that have variable-length struct ifreq, for example Mac OS X. - Use the correct datatype in the SipHash-2-4 function to prevent compilers from assuming any sort of alignment. Fixes bug 15436; bugfix on 0.2.5.3-alpha. o Minor bugfixes (preventative security, C safety): - When reading a hexadecimal, base-32, or base-64 encoded value from a string, always overwrite the whole output buffer. This prevents some bugs where we would look at (but fortunately, not reveal) uninitialized memory on the stack. Fixes bug 14013; bugfix on all versions of Tor. - Clear all memory targetted by tor_addr_{to,from}_sockaddr(), not just the part that's used. This makes it harder for data leak bugs to occur in the event of other programming failures. Resolves ticket 14041. o Minor bugfixes (relay): - When generating our family list, remove spaces from around the entries. Fixes bug 12728; bugfix on 0.2.1.7-alpha. - If our previous bandwidth estimate was 0 bytes, allow publishing a new relay descriptor immediately. Fixes bug 13000; bugfix on 0.1.1.6-alpha. o Minor bugfixes (shutdown): - When shutting down, always call event_del() on lingering read or write events before freeing them. Otherwise, we risk double-frees or read-after-frees in event_base_free(). Fixes bug 12985; bugfix on 0.1.0.2-rc. o Minor bugfixes (small memory leaks): - Avoid leaking memory when using IPv6 virtual address mappings. Fixes bug 14123; bugfix on 0.2.4.7-alpha. Patch by Tom van der Woerdt. o Minor bugfixes (statistics): - Increase period over which bandwidth observations are aggregated from 15 minutes to 4 hours. Fixes bug 13988; bugfix on 0.0.8pre1. o Minor bugfixes (systemd support): - Run correctly under systemd with the RunAsDaemon option set. Fixes part of bug 14141; bugfix on 0.2.5.7-rc. Patch from Tomasz Torcz. - Inform the systemd supervisor about more changes in the Tor process status. Implements part of ticket 14141. Patch from Tomasz Torcz. o Minor bugfixes (testing networks): - Fix TestingDirAuthVoteGuard to properly give out Guard flags in a testing network. Fixes bug 13064; bugfix on 0.2.5.2-alpha. - Stop using the default authorities in networks which provide both AlternateDirAuthority and AlternateBridgeAuthority. Partially fixes bug 13163; bugfix on 0.2.0.13-alpha. o Minor bugfixes (testing networks, fast startup): - Allow Tor to build circuits using a consensus with no exits. If the consensus has no exits (typical of a bootstrapping test network), allow Tor to build circuits once enough descriptors have been downloaded. This assists in bootstrapping a testing Tor network. Fixes bug 13718; bugfix on 0.2.4.10-alpha. Patch by "teor". - When V3AuthVotingInterval is low, give a lower If-Modified-Since header to directory servers. This allows us to obtain consensuses promptly when the consensus interval is very short. This assists in bootstrapping a testing Tor network. Fixes parts of bugs 13718 and 13963; bugfix on 0.2.0.3-alpha. Patch by "teor". - Stop assuming that private addresses are local when checking reachability in a TestingTorNetwork. Instead, when testing, assume all OR connections are remote. (This is necessary due to many test scenarios running all relays on localhost.) This assists in bootstrapping a testing Tor network. Fixes bug 13924; bugfix on 0.1.0.1-rc. Patch by "teor". - Avoid building exit circuits from a consensus with no exits. Now thanks to our fix for 13718, we accept a no-exit network as not wholly lost, but we need to remember not to try to build exit circuits on it. Closes ticket 13814; patch by "teor". - Stop requiring exits to have non-zero bandwithcapacity in a TestingTorNetwork. Instead, when TestingMinExitFlagThreshold is 0, ignore exit bandwidthcapacity. This assists in bootstrapping a testing Tor network. Fixes parts of bugs 13718 and 13839; bugfix on 0.2.0.3-alpha. Patch by "teor". - Add "internal" to some bootstrap statuses when no exits are available. If the consensus does not contain Exits, Tor will only build internal circuits. In this case, relevant statuses will contain the word "internal" as indicated in the Tor control- spec.txt. When bootstrap completes, Tor will be ready to build internal circuits. If a future consensus contains Exits, exit circuits may become available. Fixes part of bug 13718; bugfix on 0.2.4.10-alpha. Patch by "teor". - Decrease minimum consensus interval to 10 seconds when TestingTorNetwork is set, or 5 seconds for the first consensus. Fix assumptions throughout the code that assume larger intervals. Fixes bugs 13718 and 13823; bugfix on 0.2.0.3-alpha. Patch by "teor". - Avoid excluding guards from path building in minimal test networks, when we're in a test network and excluding guards would exclude all relays. This typically occurs in incredibly small tor networks, and those using "TestingAuthVoteGuard *". Fixes part of bug 13718; bugfix on 0.1.1.11-alpha. Patch by "teor". o Minor bugfixes (testing): - Avoid a side-effect in a tor_assert() in the unit tests. Fixes bug 15188; bugfix on 0.1.2.3-alpha. Patch from Tom van der Woerdt. - Stop spawn test failures due to a race condition between the SIGCHLD handler updating the process status, and the test reading it. Fixes bug 13291; bugfix on 0.2.3.3-alpha. - Avoid passing an extra backslash when creating a temporary directory for running the unit tests on Windows. Fixes bug 12392; bugfix on 0.2.2.25-alpha. Patch from Gisle Vanem. o Minor bugfixes (TLS): - Check more thoroughly throughout the TLS code for possible unlogged TLS errors. Possible diagnostic or fix for bug 13319. o Minor bugfixes (transparent proxy): - Use getsockname, not getsockopt, to retrieve the address for a TPROXY-redirected connection. Fixes bug 13796; bugfix on 0.2.5.2-alpha. o Minor bugfixes (windows): - Remove code to special-case handling of NTE_BAD_KEYSET when acquiring windows CryptoAPI context. This error can't actually occur for the parameters we're providing. Fixes bug 10816; bugfix on 0.0.2pre26. o Minor bugfixes (zlib): - Avoid truncating a zlib stream when trying to finalize it with an empty output buffer. Fixes bug 11824; bugfix on 0.1.1.23. o Code simplification and refactoring: - Change the entry_is_live() function to take named bitfield elements instead of an unnamed list of booleans. Closes ticket 12202. - Refactor and unit-test entry_is_time_to_retry() in entrynodes.c. Resolves ticket 12205. - Use calloc and reallocarray functions instead of multiply- then-malloc. This makes it less likely for us to fall victim to an integer overflow attack when allocating. Resolves ticket 12855. - Use the standard macro name SIZE_MAX, instead of our own SIZE_T_MAX. - Document usage of the NO_DIRINFO and ALL_DIRINFO flags clearly in functions which take them as arguments. Replace 0 with NO_DIRINFO in a function call for clarity. Seeks to prevent future issues like 13163. - Avoid 4 null pointer errors under clang static analysis by using tor_assert() to prove that the pointers aren't null. Fixes bug 13284. - Rework the API of policies_parse_exit_policy() to use a bitmask to represent parsing options, instead of a confusing mess of booleans. Resolves ticket 8197. - Introduce a helper function to parse ExitPolicy in or_options_t structure. - Move fields related to isolating and configuring client ports into a shared structure. Previously, they were duplicated across port_cfg_t, listener_connection_t, and edge_connection_t. Failure to copy them correctly had been the cause of at least one bug in the past. Closes ticket 8546. - Refactor the get_interface_addresses_raw() doom-function into multiple smaller and simpler subfunctions. Cover the resulting subfunctions with unit-tests. Fixes a significant portion of issue 12376. - Remove workaround in dirserv_thinks_router_is_hs_dir() that was only for version <= 0.2.2.24 which is now deprecated. Closes ticket 14202. - Remove a test for a long-defunct broken version-one directory server. - Refactor main loop to extract the 'loop' part. This makes it easier to run Tor under Shadow. Closes ticket 15176. - Stop using can_complete_circuits as a global variable; access it with a function instead. - Avoid using operators directly as macro arguments: this lets us apply coccinelle transformations to our codebase more directly. Closes ticket 13172. - Combine the functions used to parse ClientTransportPlugin and ServerTransportPlugin into a single function. Closes ticket 6456. - Add inline functions and convenience macros for inspecting channel state. Refactor the code to use convenience macros instead of checking channel state directly. Fixes issue 7356. - Document all members of was_router_added_t and rename ROUTER_WAS_NOT_NEW to ROUTER_IS_ALREADY_KNOWN to make it less confusable with ROUTER_WAS_TOO_OLD. Fixes issue 13644. - In connection_exit_begin_conn(), use END_CIRC_REASON_TORPROTOCOL constant instead of hardcoded value. Fixes issue 13840. - Refactor our generic strmap and digestmap types into a single implementation, so that we can add a new digest256map type trivially. o Documentation: - Add a doc/TUNING document with tips for handling large numbers of TCP connections when running busy Tor relay. Update the warning message to point to this file when running out of sockets operating system is allowing to use simultaneously. Resolves ticket 9708. - Adding section on OpenBSD to our TUNING document. Thanks to mmcc for writing the OpenBSD-specific tips. Resolves ticket 13702. - Make the tor-resolve documentation match its help string and its options. Resolves part of ticket 14325. - Log a more useful error message from tor-resolve when failing to look up a hidden service address. Resolves part of ticket 14325. - Document the bridge-authority-only 'networkstatus-bridges' file. Closes ticket 13713; patch from "tom". - Fix typo in PredictedPortsRelevanceTime option description in manpage. Resolves issue 13707. - Stop suggesting that users specify relays by nickname: it isn't a good idea. Also, properly cross-reference how to specify relays in all parts of manual documenting options that take a list of relays. Closes ticket 13381. - Clarify the HiddenServiceDir option description in manpage to make it clear that relative paths are taken with respect to the current working directory. Also clarify that this behavior is not guaranteed to remain indefinitely. Fixes issue 13913. o Distribution (systemd): - systemd unit file: only allow tor to write to /var/lib/tor and /var/log/tor. The rest of the filesystem is accessible for reading only. Patch by intrigeri; resolves ticket 12751. - systemd unit file: ensure that the process and all its children can never gain new privileges. Patch by intrigeri; resolves ticket 12939. - systemd unit file: set up /var/run/tor as writable for the Tor service. Patch by intrigeri; resolves ticket 13196. o Downgraded warnings: - Don't warn when we've attempted to contact a relay using the wrong ntor onion key. Closes ticket 9635. o Removed code: - Remove some lingering dead code that once supported mempools. Mempools were disabled by default in 0.2.5, and removed entirely in 0.2.6.3-alpha. Closes more of ticket 14848; patch by "cypherpunks". o Removed features (directory authorities): - Remove code that prevented authorities from listing Tor relays affected by CVE-2011-2769 as guards. These relays are already rejected altogether due to the minimum version requirement of 0.2.3.16-alpha. Closes ticket 13152. - The "AuthDirRejectUnlisted" option no longer has any effect, as the fingerprints file (approved-routers) has been deprecated. - Directory authorities do not support being Naming dirauths anymore. The "NamingAuthoritativeDir" config option is now obsolete. - Directory authorities do not support giving out the BadDirectory flag anymore. - Directory authorities no longer advertise or support consensus methods 1 through 12 inclusive. These consensus methods were obsolete and/or insecure: maintaining the ability to support them served no good purpose. Implements part of proposal 215; closes ticket 10163. o Removed features: - To avoid confusion with the "ExitRelay" option, "ExitNode" is no longer silently accepted as an alias for "ExitNodes". - The --enable-mempool and --enable-buf-freelists options, which were originally created to work around bad malloc implementations, no longer exist. They were off-by-default in 0.2.5. Closes ticket 14848. - We no longer remind the user about configuration options that have been obsolete since 0.2.3.x or earlier. Patch by Adrien Bak. - Remove our old, non-weighted bandwidth-based node selection code. Previously, we used it as a fallback when we couldn't perform weighted bandwidth-based node selection. But that would only happen in the cases where we had no consensus, or when we had a consensus generated by buggy or ancient directory authorities. In either case, it's better to use the more modern, better maintained algorithm, with reasonable defaults for the weights. Closes ticket 13126. - Remove the --disable-curve25519 configure option. Relays and clients now are required to support curve25519 and the ntor handshake. - The old "StrictEntryNodes" and "StrictExitNodes" options, which used to be deprecated synonyms for "StrictNodes", are now marked obsolete. Resolves ticket 12226. - Clients don't understand the BadDirectory flag in the consensus anymore, and ignore it. o Removed platform support: - We no longer include special code to build on Windows CE; as far as we know, nobody has used Tor on Windows CE in a very long time. Closes ticket 11446. o Testing (test-network.sh): - Stop using "echo -n", as some shells' built-in echo doesn't support "-n". Instead, use "/bin/echo -n". Partially fixes bug 13161. - Stop an apparent test-network hang when used with make -j2. Fixes bug 13331. - Add a --delay option to test-network.sh, which configures the delay before the chutney network tests for data transmission. Partially implements ticket 13161. o Testing: - Test that tor does not fail when key files are zero-length. Check that tor generates new keys, and overwrites the empty key files. - Test that tor generates new keys when keys are missing (existing behavior). - Test that tor does not overwrite key files that already contain data (existing behavior). Tests bug 13111. Patch by "teor". - New "make test-stem" target to run stem integration tests. Requires that the "STEM_SOURCE_DIR" environment variable be set. Closes ticket 14107. - Make the test_cmdline_args.py script work correctly on Windows. Patch from Gisle Vanem. - Move the slower unit tests into a new "./src/test/test-slow" binary that can be run independently of the other tests. Closes ticket 13243. - New tests for many parts of channel, relay, and circuitmux functionality. Code by Andrea; part of 9262. - New tests for parse_transport_line(). Part of ticket 6456. - In the unit tests, use chgrp() to change the group of the unit test temporary directory to the current user, so that the sticky bit doesn't interfere with tests that check directory groups. Closes 13678. - Add unit tests for resolve_my_addr(). Part of ticket 12376; patch by 'rl1987'. - Refactor the function that chooses guard nodes so that it can more easily be tested; write some tests for it. - Fix and re-enable the fgets_eagain unit test. Fixes bug 12503; bugfix on 0.2.3.1-alpha. Patch from "cypherpunks." - Create unit tests for format_time_interval(). With bug 13393. - Add unit tests for tor_timegm signed overflow, tor_timegm and parse_rfc1123_time validity checks, correct_tm year clamping. Unit tests (visible) fixes in bug 13476. - Add a "coverage-html" make target to generate HTML-visualized coverage results when building with --enable-coverage. (Requires lcov.) Patch from Kevin Murray. - Enable the backtrace handler (where supported) when running the unit tests. - Revise all unit tests that used the legacy test_* macros to instead use the recommended tt_* macros. This patch was generated with coccinelle, to avoid manual errors. Closes ticket 13119. Changes in version 0.2.5.11 - 2015-03-17 Tor 0.2.5.11 is the second stable release in the 0.2.5 series. It backports several bugfixes from the 0.2.6 branch, including a couple of medium-level security fixes for relays and exit nodes. It also updates the list of directory authorities. o Directory authority changes: - Remove turtles as a directory authority. - Add longclaw as a new (v3) directory authority. This implements ticket 13296. This keeps the directory authority count at 9. - The directory authority Faravahar has a new IP address. This closes ticket 14487. o Major bugfixes (crash, OSX, security): - Fix a remote denial-of-service opportunity caused by a bug in OSX's _strlcat_chk() function. Fixes bug 15205; bug first appeared in OSX 10.9. o Major bugfixes (relay, stability, possible security): - Fix a bug that could lead to a relay crashing with an assertion failure if a buffer of exactly the wrong layout was passed to buf_pullup() at exactly the wrong time. Fixes bug 15083; bugfix on 0.2.0.10-alpha. Patch from 'cypherpunks'. - Do not assert if the 'data' pointer on a buffer is advanced to the very end of the buffer; log a BUG message instead. Only assert if it is past that point. Fixes bug 15083; bugfix on 0.2.0.10-alpha. o Major bugfixes (exit node stability): - Fix an assertion failure that could occur under high DNS load. Fixes bug 14129; bugfix on Tor 0.0.7rc1. Found by "jowr"; diagnosed and fixed by "cypherpunks". o Major bugfixes (Linux seccomp2 sandbox): - Upon receiving sighup with the seccomp2 sandbox enabled, do not crash during attempts to call wait4. Fixes bug 15088; bugfix on 0.2.5.1-alpha. Patch from "sanic". o Minor features (controller): - New "GETINFO bw-event-cache" to get information about recent bandwidth events. Closes ticket 14128. Useful for controllers to get recent bandwidth history after the fix for ticket 13988. o Minor features (geoip): - Update geoip to the March 3 2015 Maxmind GeoLite2 Country database. - Update geoip6 to the March 3 2015 Maxmind GeoLite2 Country database. o Minor bugfixes (client, automapping): - Avoid crashing on torrc lines for VirtualAddrNetworkIPv[4|6] when no value follows the option. Fixes bug 14142; bugfix on 0.2.4.7-alpha. Patch by "teor". - Fix a memory leak when using AutomapHostsOnResolve. Fixes bug 14195; bugfix on 0.1.0.1-rc. o Minor bugfixes (compilation): - Build without warnings with the stock OpenSSL srtp.h header, which has a duplicate declaration of SSL_get_selected_srtp_profile(). Fixes bug 14220; this is OpenSSL's bug, not ours. o Minor bugfixes (directory authority): - Allow directory authorities to fetch more data from one another if they find themselves missing lots of votes. Previously, they had been bumping against the 10 MB queued data limit. Fixes bug 14261; bugfix on 0.1.2.5-alpha. - Enlarge the buffer to read bwauth generated files to avoid an issue when parsing the file in dirserv_read_measured_bandwidths(). Fixes bug 14125; bugfix on 0.2.2.1-alpha. o Minor bugfixes (statistics): - Increase period over which bandwidth observations are aggregated from 15 minutes to 4 hours. Fixes bug 13988; bugfix on 0.0.8pre1. o Minor bugfixes (preventative security, C safety): - When reading a hexadecimal, base-32, or base-64 encoded value from a string, always overwrite the whole output buffer. This prevents some bugs where we would look at (but fortunately, not reveal) uninitialized memory on the stack. Fixes bug 14013; bugfix on all versions of Tor. Changes in version 0.2.4.26 - 2015-03-17 Tor 0.2.4.26 includes an updated list of directory authorities. It also backports a couple of stability and security bugfixes from 0.2.5 and beyond. o Directory authority changes: - Remove turtles as a directory authority. - Add longclaw as a new (v3) directory authority. This implements ticket 13296. This keeps the directory authority count at 9. - The directory authority Faravahar has a new IP address. This closes ticket 14487. o Major bugfixes (exit node stability, also in 0.2.6.3-alpha): - Fix an assertion failure that could occur under high DNS load. Fixes bug 14129; bugfix on Tor 0.0.7rc1. Found by "jowr"; diagnosed and fixed by "cypherpunks". o Major bugfixes (relay, stability, possible security, also in 0.2.6.4-rc): - Fix a bug that could lead to a relay crashing with an assertion failure if a buffer of exactly the wrong layout was passed to buf_pullup() at exactly the wrong time. Fixes bug 15083; bugfix on 0.2.0.10-alpha. Patch from 'cypherpunks'. - Do not assert if the 'data' pointer on a buffer is advanced to the very end of the buffer; log a BUG message instead. Only assert if it is past that point. Fixes bug 15083; bugfix on 0.2.0.10-alpha. o Minor features (geoip): - Update geoip to the March 3 2015 Maxmind GeoLite2 Country database. - Update geoip6 to the March 3 2015 Maxmind GeoLite2 Country database. Changes in version 0.2.5.10 - 2014-10-24 Tor 0.2.5.10 is the first stable release in the 0.2.5 series. It adds several new security features, including improved denial-of-service resistance for relays, new compiler hardening options, and a system-call sandbox for hardened installations on Linux (requires seccomp2). The controller protocol has several new features, resolving IPv6 addresses should work better than before, and relays should be a little more CPU-efficient. We've added support for more OpenBSD and FreeBSD transparent proxy types. We've improved the build system and testing infrastructure to allow unit testing of more parts of the Tor codebase. Finally, we've addressed several nagging pluggable transport usability issues, and included numerous other small bugfixes and features mentioned below. This release marks end-of-life for Tor 0.2.3.x; those Tor versions have accumulated many known flaws; everyone should upgrade. o Major features (security): - The ntor handshake is now on-by-default, no matter what the directory authorities recommend. Implements ticket 8561. - Make the "tor-gencert" tool used by directory authority operators create 2048-bit signing keys by default (rather than 1024-bit, since 1024-bit is uncomfortably small these days). Addresses ticket 10324. - Warn about attempts to run hidden services and relays in the same process: that's probably not a good idea. Closes ticket 12908. - Disable support for SSLv3. All versions of OpenSSL in use with Tor today support TLS 1.0 or later, so we can safely turn off support for this old (and insecure) protocol. Fixes bug 13426. o Major features (relay security, DoS-resistance): - When deciding whether we have run out of memory and we need to close circuits, also consider memory allocated in buffers for streams attached to each circuit. This change, which extends an anti-DoS feature introduced in 0.2.4.13-alpha and improved in 0.2.4.14-alpha, lets Tor exit relays better resist more memory-based DoS attacks than before. Since the MaxMemInCellQueues option now applies to all queues, it is renamed to MaxMemInQueues. This feature fixes bug 10169. - Avoid hash-flooding denial-of-service attacks by using the secure SipHash-2-4 hash function for our hashtables. Without this feature, an attacker could degrade performance of a targeted client or server by flooding their data structures with a large number of entries to be stored at the same hash table position, thereby slowing down the Tor instance. With this feature, hash table positions are derived from a randomized cryptographic key, and an attacker cannot predict which entries will collide. Closes ticket 4900. - If you don't specify MaxMemInQueues yourself, Tor now tries to pick a good value based on your total system memory. Previously, the default was always 8 GB. You can still override the default by setting MaxMemInQueues yourself. Resolves ticket 11396. o Major features (bridges and pluggable transports): - Add support for passing arguments to managed pluggable transport proxies. Implements ticket 3594. - Bridges now track GeoIP information and the number of their users even when pluggable transports are in use, and report usage statistics in their extra-info descriptors. Resolves tickets 4773 and 5040. - Don't launch pluggable transport proxies if we don't have any bridges configured that would use them. Now we can list many pluggable transports, and Tor will dynamically start one when it hears a bridge address that needs it. Resolves ticket 5018. - The bridge directory authority now assigns status flags (Stable, Guard, etc) to bridges based on thresholds calculated over all Running bridges. Now bridgedb can finally make use of its features to e.g. include at least one Stable bridge in its answers. Fixes bug 9859. o Major features (controller): - Extend ORCONN controller event to include an "ID" parameter, and add four new controller event types CONN_BW, CIRC_BW, CELL_STATS, and TB_EMPTY that show connection and circuit usage. The new events are emitted in private Tor networks only, with the goal of being able to better track performance and load during full-network simulations. Implements proposal 218 and ticket 7359. o Major features (relay performance): - Speed up server-side lookups of rendezvous and introduction point circuits by using hashtables instead of linear searches. These functions previously accounted between 3 and 7% of CPU usage on some busy relays. Resolves ticket 9841. - Avoid wasting CPU when extending a circuit over a channel that is nearly out of circuit IDs. Previously, we would do a linear scan over possible circuit IDs before finding one or deciding that we had exhausted our possibilities. Now, we try at most 64 random circuit IDs before deciding that we probably won't succeed. Fixes a possible root cause of ticket 11553. o Major features (seccomp2 sandbox, Linux only): - Use the seccomp2 syscall filtering facility on Linux to limit which system calls Tor can invoke. This is an experimental, Linux-only feature to provide defense-in-depth against unknown attacks. To try turning it on, set "Sandbox 1" in your torrc file. Please be ready to report bugs. We hope to add support for better sandboxing in the future, including more fine-grained filters, better division of responsibility, and support for more platforms. This work has been done by Cristian-Matei Toader for Google Summer of Code. Resolves tickets 11351 and 11465. o Major features (testing networks): - Make testing Tor networks bootstrap better: lower directory fetch retry schedules and maximum interval without directory requests, and raise maximum download tries. Implements ticket 6752. - Add make target 'test-network' to run tests on a Chutney network. Implements ticket 8530. o Major features (other): - On some platforms (currently: recent OSX versions, glibc-based platforms that support the ELF format, and a few other Unix-like operating systems), Tor can now dump stack traces when a crash occurs or an assertion fails. By default, traces are dumped to stderr (if possible) and to any logs that are reporting errors. Implements ticket 9299. o Deprecated versions: - Tor 0.2.3.x has reached end-of-life; it has received no patches or attention for some while. o Major bugfixes (security, directory authorities): - Directory authorities now include a digest of each relay's identity key as a part of its microdescriptor. This is a workaround for bug 11743 (reported by "cypherpunks"), where Tor clients do not support receiving multiple microdescriptors with the same SHA256 digest in the same consensus. When clients receive a consensus like this, they only use one of the relays. Without this fix, a hostile relay could selectively disable some client use of target relays by constructing a router descriptor with a different identity and the same microdescriptor parameters and getting the authorities to list it in a microdescriptor consensus. This fix prevents an attacker from causing a microdescriptor collision, because the router's identity is not forgeable. o Major bugfixes (openssl bug workaround): - Avoid crashing when using OpenSSL version 0.9.8zc, 1.0.0o, or 1.0.1j, built with the 'no-ssl3' configuration option. Fixes bug 13471. This is a workaround for an OpenSSL bug. o Major bugfixes (client): - Perform circuit cleanup operations even when circuit construction operations are disabled (because the network is disabled, or because there isn't enough directory information). Previously, when we were not building predictive circuits, we were not closing expired circuits either. Fixes bug 8387; bugfix on 0.1.1.11-alpha. This bug became visible in 0.2.4.10-alpha when we became more strict about when we have "enough directory information to build circuits". o Major bugfixes (client, pluggable transports): - When managing pluggable transports, use OS notification facilities to learn if they have crashed, and don't attempt to kill any process that has already exited. Fixes bug 8746; bugfix on 0.2.3.6-alpha. o Major bugfixes (relay denial of service): - Instead of writing destroy cells directly to outgoing connection buffers, queue them and intersperse them with other outgoing cells. This can prevent a set of resource starvation conditions where too many pending destroy cells prevent data cells from actually getting delivered. Reported by "oftc_must_be_destroyed". Fixes bug 7912; bugfix on 0.2.0.1-alpha. o Major bugfixes (relay): - Avoid queuing or sending destroy cells for circuit ID zero when we fail to send a CREATE cell. Fixes bug 12848; bugfix on 0.0.8pre1. Found and fixed by "cypherpunks". - Fix ORPort reachability detection on relays running behind a proxy, by correctly updating the "local" mark on the controlling channel when changing the address of an or_connection_t after the handshake. Fixes bug 12160; bugfix on 0.2.4.4-alpha. - Use a direct dirport connection when uploading non-anonymous descriptors to the directory authorities. Previously, relays would incorrectly use tunnel connections under a fairly wide variety of circumstances. Fixes bug 11469; bugfix on 0.2.4.3-alpha. - When a circuit accidentally has the same circuit ID for its forward and reverse direction, correctly detect the direction of cells using that circuit. Previously, this bug made roughly one circuit in a million non-functional. Fixes bug 12195; this is a bugfix on every version of Tor. o Minor features (security): - New --enable-expensive-hardening option to enable security hardening options that consume nontrivial amounts of CPU and memory. Right now, this includes AddressSanitizer and UbSan, which are supported in newer versions of GCC and Clang. Closes ticket 11477. - Authorities now assign the Guard flag to the fastest 25% of the network (it used to be the fastest 50%). Also raise the consensus weight that guarantees the Guard flag from 250 to 2000. For the current network, this results in about 1100 guards, down from 2500. This step paves the way for moving the number of entry guards down to 1 (proposal 236) while still providing reasonable expected performance for most users. Implements ticket 12690. o Minor features (security, memory management): - Memory allocation tricks (mempools and buffer freelists) are now disabled by default. You can turn them back on with --enable-mempools and --enable-buf-freelists respectively. We're disabling these features because malloc performance is good enough on most platforms, and a similar feature in OpenSSL exacerbated exploitation of the Heartbleed attack. Resolves ticket 11476. o Minor features (bridge client): - Report a more useful failure message when we can't connect to a bridge because we don't have the right pluggable transport configured. Resolves ticket 9665. Patch from Fábio J. Bertinatto. o Minor features (bridge): - Add an ExtORPortCookieAuthFileGroupReadable option to make the cookie file for the ExtORPort g+r by default. o Minor features (bridges, pluggable transports): - Bridges now write the SHA1 digest of their identity key fingerprint (that is, a hash of a hash of their public key) to notice-level logs, and to a new hashed-fingerprint file. This information will help bridge operators look up their bridge in Globe and similar tools. Resolves ticket 10884. - Improve the message that Tor displays when running as a bridge using pluggable transports without an Extended ORPort listener. Also, log the message in the log file too. Resolves ticket 11043. - Add threshold cutoffs to the networkstatus document created by the Bridge Authority. Fixes bug 1117. - On Windows, spawn background processes using the CREATE_NO_WINDOW flag. Now Tor Browser Bundle 3.5 with pluggable transports enabled doesn't pop up a blank console window. (In Tor Browser Bundle 2.x, Vidalia set this option for us.) Implements ticket 10297. o Minor features (build): - The configure script has a --disable-seccomp option to turn off support for libseccomp on systems that have it, in case it (or Tor's use of it) is broken. Resolves ticket 11628. - Assume that a user using ./configure --host wants to cross-compile, and give an error if we cannot find a properly named tool-chain. Add a --disable-tool-name-check option to proceed nevertheless. Addresses ticket 9869. Patch by Benedikt Gollatz. - If we run ./configure and the compiler recognizes -fstack-protector but the linker rejects it, warn the user about a potentially missing libssp package. Addresses ticket 9948. Patch from Benedikt Gollatz. - Add support for `--library-versions` flag. Implements ticket 6384. - Return the "unexpected sendme" warnings to a warn severity, but make them rate limited, to help diagnose ticket 8093. - Detect a missing asciidoc, and warn the user about it, during configure rather than at build time. Fixes issue 6506. Patch from Arlo Breault. o Minor features (client): - Add a new option, PredictedPortsRelevanceTime, to control how long after having received a request to connect to a given port Tor will try to keep circuits ready in anticipation of future requests for that port. Patch from "unixninja92"; implements ticket 9176. o Minor features (config options and command line): - Add an --allow-missing-torrc commandline option that tells Tor to run even if the configuration file specified by -f is not available. Implements ticket 10060. - Add support for the TPROXY transparent proxying facility on Linux. See documentation for the new TransProxyType option for more details. Implementation by "thomo". Closes ticket 10582. o Minor features (config options): - Config (torrc) lines now handle fingerprints which are missing their initial '$'. Resolves ticket 4341; improvement over 0.0.9pre5. - Support a --dump-config option to print some or all of the configured options. Mainly useful for debugging the command-line option parsing code. Helps resolve ticket 4647. - Raise awareness of safer logging: notify user of potentially unsafe config options, like logging more verbosely than severity "notice" or setting SafeLogging to 0. Resolves ticket 5584. - Add a new configuration option TestingV3AuthVotingStartOffset that bootstraps a network faster by changing the timing for consensus votes. Addresses ticket 8532. - Add a new torrc option "ServerTransportOptions" that allows bridge operators to pass configuration parameters to their pluggable transports. Resolves ticket 8929. - The config (torrc) file now accepts bandwidth and space limits in bits as well as bytes. (Anywhere that you can say "2 Kilobytes", you can now say "16 kilobits", and so on.) Resolves ticket 9214. Patch by CharlieB. o Minor features (controller): - Make the entire exit policy available from the control port via GETINFO exit-policy/*. Implements enhancement 7952. Patch from "rl1987". - Because of the fix for ticket 11396, the real limit for memory usage may no longer match the configured MaxMemInQueues value. The real limit is now exposed via GETINFO limits/max-mem-in-queues. - Add a new "HS_DESC" controller event that reports activities related to hidden service descriptors. Resolves ticket 8510. - New "DROPGUARDS" controller command to forget all current entry guards. Not recommended for ordinary use, since replacing guards too frequently makes several attacks easier. Resolves ticket 9934; patch from "ra". - Implement the TRANSPORT_LAUNCHED control port event that notifies controllers about new launched pluggable transports. Resolves ticket 5609. o Minor features (diagnostic): - When logging a warning because of bug 7164, additionally check the hash table for consistency (as proposed on ticket 11737). This may help diagnose bug 7164. - When we log a heartbeat, log how many one-hop circuits we have that are at least 30 minutes old, and log status information about a few of them. This is an attempt to track down bug 8387. - When encountering an unexpected CR while writing text to a file on Windows, log the name of the file. Should help diagnosing bug 11233. - Give more specific warnings when a client notices that an onion handshake has failed. Fixes ticket 9635. - Add significant new logging code to attempt to diagnose bug 12184, where relays seem to run out of available circuit IDs. - Improve the diagnostic log message for bug 8387 even further to try to improve our odds of figuring out why one-hop directory circuits sometimes do not get closed. - Add more log messages to diagnose bug 7164, which causes intermittent "microdesc_free() called but md was still referenced" warnings. We now include more information, to figure out why we might be cleaning a microdescriptor for being too old if it's still referenced by a live node_t object. - Log current accounting state (bytes sent and received + remaining time for the current accounting period) in the relay's heartbeat message. Implements ticket 5526; patch from Peter Retzlaff. o Minor features (geoip): - Update geoip and geoip6 to the August 7 2014 Maxmind GeoLite2 Country database. o Minor features (interface): - Generate a warning if any ports are listed in the SocksPolicy, DirPolicy, AuthDirReject, AuthDirInvalid, AuthDirBadDir, or AuthDirBadExit options. (These options only support address ranges.) Fixes part of ticket 11108. o Minor features (kernel API usage): - Use the SOCK_NONBLOCK socket type, if supported, to open nonblocking sockets in a single system call. Implements ticket 5129. o Minor features (log messages): - When ServerTransportPlugin is set on a bridge, Tor can write more useful statistics about bridge use in its extrainfo descriptors, but only if the Extended ORPort ("ExtORPort") is set too. Add a log message to inform the user in this case. Resolves ticket 9651. - When receiving a new controller connection, log the origin address. Resolves ticket 9698; patch from "sigpipe". - When logging OpenSSL engine status at startup, log the status of more engines. Fixes ticket 10043; patch from Joshua Datko. o Minor features (log verbosity): - Demote the message that we give when a flushing connection times out for too long from NOTICE to INFO. It was usually meaningless. Resolves ticket 5286. - Don't log so many notice-level bootstrapping messages at startup about downloading descriptors. Previously, we'd log a notice whenever we learned about more routers. Now, we only log a notice at every 5% of progress. Fixes bug 9963. - Warn less verbosely when receiving a malformed ESTABLISH_RENDEZVOUS cell. Fixes ticket 11279. o Minor features (performance): - If we're using the pure-C 32-bit curve25519_donna implementation of curve25519, build it with the -fomit-frame-pointer option to make it go faster on register-starved hosts. This improves our handshake performance by about 6% on i386 hosts without nacl. Closes ticket 8109. o Minor features (relay): - If a circuit timed out for at least 3 minutes, check if we have a new external IP address, and publish a new descriptor with the new IP address if it changed. Resolves ticket 2454. o Minor features (testing): - If Python is installed, "make check" now runs extra tests beyond the unit test scripts. - When bootstrapping a test network, sometimes very few relays get the Guard flag. Now a new option "TestingDirAuthVoteGuard" can specify a set of relays which should be voted Guard regardless of their uptime or bandwidth. Addresses ticket 9206. o Minor features (transparent proxy, *BSD): - Support FreeBSD's ipfw firewall interface for TransPort ports on FreeBSD. To enable it, set "TransProxyType ipfw". Resolves ticket 10267; patch from "yurivict". - Support OpenBSD's divert-to rules with the pf firewall for transparent proxy ports. To enable it, set "TransProxyType pf-divert". This allows Tor to run a TransPort transparent proxy port on OpenBSD 4.4 or later without root privileges. See the pf.conf(5) manual page for information on configuring pf to use divert-to rules. Closes ticket 10896; patch from Dana Koch. o Minor bugfixes (bridge client): - Stop accepting bridge lines containing hostnames. Doing so would cause clients to perform DNS requests on the hostnames, which was not sensible behavior. Fixes bug 10801; bugfix on 0.2.0.1-alpha. o Minor bugfixes (bridges): - Avoid potential crashes or bad behavior when launching a server-side managed proxy with ORPort or ExtORPort temporarily disabled. Fixes bug 9650; bugfix on 0.2.3.16-alpha. - Fix a bug where the first connection works to a bridge that uses a pluggable transport with client-side parameters, but we don't send the client-side parameters on subsequent connections. (We don't use any pluggable transports with client-side parameters yet, but ScrambleSuit will soon become the first one.) Fixes bug 9162; bugfix on 0.2.0.3-alpha. Based on a patch from "rl1987". o Minor bugfixes (build, auxiliary programs): - Stop preprocessing the "torify" script with autoconf, since it no longer refers to LOCALSTATEDIR. Fixes bug 5505; patch from Guilhem. - The tor-fw-helper program now follows the standard convention and exits with status code "0" on success. Fixes bug 9030; bugfix on 0.2.3.1-alpha. Patch by Arlo Breault. - Corrected ./configure advice for what openssl dev package you should install on Debian. Fixes bug 9207; bugfix on 0.2.0.1-alpha. o Minor bugfixes (client): - Avoid "Tried to open a socket with DisableNetwork set" warnings when starting a client with bridges configured and DisableNetwork set. (Tor launcher starts Tor with DisableNetwork set the first time it runs.) Fixes bug 10405; bugfix on 0.2.3.9-alpha. - Improve the log message when we can't connect to a hidden service because all of the hidden service directory nodes hosting its descriptor are excluded. Improves on our fix for bug 10722, which was a bugfix on 0.2.0.10-alpha. - Raise a control port warning when we fail to connect to all of our bridges. Previously, we didn't inform the controller, and the bootstrap process would stall. Fixes bug 11069; bugfix on 0.2.1.2-alpha. - Exit immediately when a process-owning controller exits. Previously, tor relays would wait for a little while after their controller exited, as if they had gotten an INT signal -- but this was problematic, since there was no feedback for the user. To do a clean shutdown, controllers should send an INT signal and give Tor a chance to clean up. Fixes bug 10449; bugfix on 0.2.2.28-beta. - Stop attempting to connect to bridges before our pluggable transports are configured (harmless but resulted in some erroneous log messages). Fixes bug 11156; bugfix on 0.2.3.2-alpha. - Fix connections to IPv6 addresses over SOCKS5. Previously, we were generating incorrect SOCKS5 responses, and confusing client applications. Fixes bug 10987; bugfix on 0.2.4.7-alpha. o Minor bugfixes (client, DNSPort): - When using DNSPort, try to respond to AAAA requests with AAAA answers. Previously, we hadn't looked at the request type when deciding which answer type to prefer. Fixes bug 10468; bugfix on 0.2.4.7-alpha. - When receiving a DNS query for an unsupported record type, reply with no answer rather than with a NOTIMPL error. This behavior isn't correct either, but it will break fewer client programs, we hope. Fixes bug 10268; bugfix on 0.2.0.1-alpha. Original patch from "epoch". o Minor bugfixes (client, logging during bootstrap): - Only report the first fatal bootstrap error on a given OR connection. This stops us from telling the controller bogus error messages like "DONE". Fixes bug 10431; bugfix on 0.2.1.1-alpha. - Avoid generating spurious warnings when starting with DisableNetwork enabled. Fixes bug 11200 and bug 10405; bugfix on 0.2.3.9-alpha. o Minor bugfixes (closing OR connections): - If write_to_buf() in connection_write_to_buf_impl_() ever fails, check if it's an or_connection_t and correctly call connection_or_close_for_error() rather than connection_mark_for_close() directly. Fixes bug 11304; bugfix on 0.2.4.4-alpha. - When closing all connections on setting DisableNetwork to 1, use connection_or_close_normally() rather than closing OR connections out from under the channel layer. Fixes bug 11306; bugfix on 0.2.4.4-alpha. o Minor bugfixes (code correctness): - Previously we used two temporary files when writing descriptors to disk; now we only use one. Fixes bug 1376. - Remove an erroneous (but impossible and thus harmless) pointer comparison that would have allowed compilers to skip a bounds check in channeltls.c. Fixes bugs 10313 and 9980; bugfix on 0.2.0.10-alpha. Noticed by Jared L Wong and David Fifield. - Fix an always-true assertion in pluggable transports code so it actually checks what it was trying to check. Fixes bug 10046; bugfix on 0.2.3.9-alpha. Found by "dcb". o Minor bugfixes (command line): - Use a single command-line parser for parsing torrc options on the command line and for finding special command-line options to avoid inconsistent behavior for torrc option arguments that have the same names as command-line options. Fixes bugs 4647 and 9578; bugfix on 0.0.9pre5. - No longer allow 'tor --hash-password' with no arguments. Fixes bug 9573; bugfix on 0.0.9pre5. o Minor bugfixes (compilation): - Compile correctly with builds and forks of OpenSSL (such as LibreSSL) that disable compression. Fixes bug 12602; bugfix on 0.2.1.1-alpha. Patch from "dhill". - Restore the ability to compile Tor with V2_HANDSHAKE_SERVER turned off (that is, without support for v2 link handshakes). Fixes bug 4677; bugfix on 0.2.3.2-alpha. Patch from "piet". - In routerlist_assert_ok(), don't take the address of a routerinfo's cache_info member unless that routerinfo is non-NULL. Fixes bug 13096; bugfix on 0.1.1.9-alpha. Patch by "teor". - Fix a large number of false positive warnings from the clang analyzer static analysis tool. This should make real warnings easier for clang analyzer to find. Patch from "teor". Closes ticket 13036. - Resolve GCC complaints on OpenBSD about discarding constness in TO_{ORIGIN,OR}_CIRCUIT functions. Fixes part of bug 11633; bugfix on 0.1.1.23. Patch from Dana Koch. - Resolve clang complaints on OpenBSD with -Wshorten-64-to-32 due to treatment of long and time_t as comparable types. Fixes part of bug 11633. Patch from Dana Koch. - When deciding whether to build the 64-bit curve25519 implementation, detect platforms where we can compile 128-bit arithmetic but cannot link it. Fixes bug 11729; bugfix on 0.2.4.8-alpha. Patch from "conradev". - Fix compilation when DNS_CACHE_DEBUG is enabled. Fixes bug 11761; bugfix on 0.2.3.13-alpha. Found by "cypherpunks". - Fix compilation with dmalloc. Fixes bug 11605; bugfix on 0.2.4.10-alpha. - Build and run correctly on systems like OpenBSD-current that have patched OpenSSL to remove get_cipher_by_char and/or its implementations. Fixes issue 13325. o Minor bugfixes (controller and command-line): - If changing a config option via "setconf" fails in a recoverable way, we used to nonetheless write our new control ports to the file described by the "ControlPortWriteToFile" option. Now we only write out that file if we successfully switch to the new config option. Fixes bug 5605; bugfix on 0.2.2.26-beta. Patch from "Ryman". o Minor bugfixes (directory server): - No longer accept malformed http headers when parsing urls from headers. Now we reply with Bad Request ("400"). Fixes bug 2767; bugfix on 0.0.6pre1. - When sending a compressed set of descriptors or microdescriptors, make sure to finalize the zlib stream. Previously, we would write all the compressed data, but if the last descriptor we wanted to send was missing or too old, we would not mark the stream as finished. This caused problems for decompression tools. Fixes bug 11648; bugfix on 0.1.1.23. o Minor bugfixes (hidden service): - Only retry attempts to connect to a chosen rendezvous point 8 times, not 30. Fixes bug 4241; bugfix on 0.1.0.1-rc. o Minor bugfixes (interface): - Reject relative control socket paths and emit a warning. Previously, single-component control socket paths would be rejected, but Tor would not log why it could not validate the config. Fixes bug 9258; bugfix on 0.2.3.16-alpha. o Minor bugfixes (log messages): - Fix a bug where clients using bridges would report themselves as 50% bootstrapped even without a live consensus document. Fixes bug 9922; bugfix on 0.2.1.1-alpha. - Suppress a warning where, if there's only one directory authority in the network, we would complain that votes and signatures cannot be uploaded to other directory authorities. Fixes bug 10842; bugfix on 0.2.2.26-beta. - Report bootstrapping progress correctly when we're downloading microdescriptors. We had updated our "do we have enough microdescs to begin building circuits?" logic most recently in 0.2.4.10-alpha (see bug 5956), but we left the bootstrap status event logic at "how far through getting 1/4 of them are we?" Fixes bug 9958; bugfix on 0.2.2.36, which is where they diverged (see bug 5343). o Minor bugfixes (logging): - Downgrade "Unexpected onionskin length after decryption" warning to a protocol-warn, since there's nothing relay operators can do about a client that sends them a malformed create cell. Resolves bug 12996; bugfix on 0.0.6rc1. - Log more specific warnings when we get an ESTABLISH_RENDEZVOUS cell on a cannibalized or non-OR circuit. Resolves ticket 12997. - When logging information about an EXTEND2 or EXTENDED2 cell, log their names correctly. Fixes part of bug 12700; bugfix on 0.2.4.8-alpha. - When logging information about a relay cell whose command we don't recognize, log its command as an integer. Fixes part of bug 12700; bugfix on 0.2.1.10-alpha. - Escape all strings from the directory connection before logging them. Fixes bug 13071; bugfix on 0.1.1.15. Patch from "teor". - Squelch a spurious LD_BUG message "No origin circuit for successful SOCKS stream" in certain hidden service failure cases; fixes bug 10616. - Downgrade the severity of the 'unexpected sendme cell from client' from 'warn' to 'protocol warning'. Closes ticket 8093. o Minor bugfixes (misc code correctness): - In munge_extrainfo_into_routerinfo(), check the return value of memchr(). This would have been a serious issue if we ever passed it a non-extrainfo. Fixes bug 8791; bugfix on 0.2.0.6-alpha. Patch from Arlo Breault. - On the chance that somebody manages to build Tor on a platform where time_t is unsigned, correct the way that microdesc_add_to_cache() handles negative time arguments. Fixes bug 8042; bugfix on 0.2.3.1-alpha. - Fix various instances of undefined behavior in channeltls.c, tor_memmem(), and eventdns.c that would cause us to construct pointers to memory outside an allocated object. (These invalid pointers were not accessed, but C does not even allow them to exist.) Fixes bug 10363; bugfixes on 0.1.1.1-alpha, 0.1.2.1-alpha, 0.2.0.10-alpha, and 0.2.3.6-alpha. Reported by "bobnomnom". - Use the AddressSanitizer and Ubsan sanitizers (in clang-3.4) to fix some miscellaneous errors in our tests and codebase. Fixes bug 11232. Bugfixes on versions back as far as 0.2.1.11-alpha. - Always check return values for unlink, munmap, UnmapViewOfFile; check strftime return values more often. In some cases all we can do is report a warning, but this may help prevent deeper bugs from going unnoticed. Closes ticket 8787; bugfixes on many, many tor versions. - Fix numerous warnings from the clang "scan-build" static analyzer. Some of these are programming style issues; some of them are false positives that indicated awkward code; some are undefined behavior cases related to constructing (but not using) invalid pointers; some are assumptions about API behavior; some are (harmlessly) logging sizeof(ptr) bytes from a token when sizeof(*ptr) would be correct; and one or two are genuine bugs that weren't reachable from the rest of the program. Fixes bug 8793; bugfixes on many, many tor versions. o Minor bugfixes (node selection): - If ExcludeNodes is set, consider non-excluded hidden service directory servers before excluded ones. Do not consider excluded hidden service directory servers at all if StrictNodes is set. (Previously, we would sometimes decide to connect to those servers, and then realize before we initiated a connection that we had excluded them.) Fixes bug 10722; bugfix on 0.2.0.10-alpha. Reported by "mr-4". - If we set the ExitNodes option but it doesn't include any nodes that have the Exit flag, we would choose not to bootstrap. Now we bootstrap so long as ExitNodes includes nodes which can exit to some port. Fixes bug 10543; bugfix on 0.2.4.10-alpha. o Minor bugfixes (performance): - Avoid a bug where every successful connection made us recompute the flag telling us whether we have sufficient information to build circuits. Previously, we would forget our cached value whenever we successfully opened a channel (or marked a router as running or not running for any other reason), regardless of whether we had previously believed the router to be running. This forced us to run an expensive update operation far too often. Fixes bug 12170; bugfix on 0.1.2.1-alpha. - Avoid using tor_memeq() for checking relay cell integrity. This removes a possible performance bottleneck. Fixes part of bug 12169; bugfix on 0.2.1.31. o Minor bugfixes (platform-specific): - When dumping a malformed directory object to disk, save it in binary mode on Windows, not text mode. Fixes bug 11342; bugfix on 0.2.2.1-alpha. - Don't report failures from make_socket_reuseable() on incoming sockets on OSX: this can happen when incoming connections close early. Fixes bug 10081. o Minor bugfixes (pluggable transports): - Avoid another 60-second delay when starting Tor in a pluggable- transport-using configuration when we already have cached descriptors for our bridges. Fixes bug 11965; bugfix on 0.2.3.6-alpha. o Minor bugfixes (protocol correctness): - When receiving a VERSIONS cell with an odd number of bytes, close the connection immediately since the cell is malformed. Fixes bug 10365; bugfix on 0.2.0.10-alpha. Spotted by "bobnomnom"; fix by "rl1987". o Minor bugfixes (relay, other): - We now drop CREATE cells for already-existent circuit IDs and for zero-valued circuit IDs, regardless of other factors that might otherwise have called for DESTROY cells. Fixes bug 12191; bugfix on 0.0.8pre1. - When rejecting DATA cells for stream_id zero, still count them against the circuit's deliver window so that we don't fail to send a SENDME. Fixes bug 11246; bugfix on 0.2.4.10-alpha. o Minor bugfixes (relay, threading): - Check return code on spawn_func() in cpuworker code, so that we don't think we've spawned a nonworking cpuworker and write junk to it forever. Fix related to bug 4345; bugfix on all released Tor versions. Found by "skruffy". - Use a pthread_attr to make sure that spawn_func() cannot return an error while at the same time launching a thread. Fix related to bug 4345; bugfix on all released Tor versions. Reported by "cypherpunks". o Minor bugfixes (relays and bridges): - Avoid crashing on a malformed resolv.conf file when running a relay using Libevent 1. Fixes bug 8788; bugfix on 0.1.1.23. - Non-exit relays no longer launch mock DNS requests to check for DNS hijacking. This has been unnecessary since 0.2.1.7-alpha, when non-exit relays stopped servicing DNS requests. Fixes bug 965; bugfix on 0.2.1.7-alpha. Patch from Matt Pagan. - Bridges now report complete directory request statistics. Related to bug 5824; bugfix on 0.2.2.1-alpha. - Bridges now never collect statistics that were designed for relays. Fixes bug 5824; bugfix on 0.2.3.8-alpha. o Minor bugfixes (testing): - Fix all valgrind warnings produced by the unit tests. There were over a thousand memory leak warnings previously, mostly produced by forgetting to free things in the unit test code. Fixes bug 11618, bugfixes on many versions of Tor. o Minor bugfixes (tor-fw-helper): - Give a correct log message when tor-fw-helper fails to launch. (Previously, we would say something like "tor-fw-helper sent us a string we could not parse".) Fixes bug 9781; bugfix on 0.2.4.2-alpha. o Minor bugfixes (trivial memory leaks): - Fix a small memory leak when signing a directory object. Fixes bug 11275; bugfix on 0.2.4.13-alpha. - Resolve some memory leaks found by coverity in the unit tests, on exit in tor-gencert, and on a failure to compute digests for our own keys when generating a v3 networkstatus vote. These leaks should never have affected anyone in practice. o Code simplification and refactoring: - Remove some old fallback code designed to keep Tor clients working in a network with only two working relays. Elsewhere in the code we have long since stopped supporting such networks, so there wasn't much point in keeping it around. Addresses ticket 9926. - Reject 0-length EXTEND2 cells more explicitly. Fixes bug 10536; bugfix on 0.2.4.8-alpha. Reported by "cypherpunks". - Extract the common duplicated code for creating a subdirectory of the data directory and writing to a file in it. Fixes ticket 4282; patch from Peter Retzlaff. - Since OpenSSL 0.9.7, the i2d_*() functions support allocating output buffer. Avoid calling twice: i2d_RSAPublicKey(), i2d_DHparams(), i2d_X509(), and i2d_PublicKey(). Resolves ticket 5170. - Add a set of accessor functions for the circuit timeout data structure. Fixes ticket 6153; patch from "piet". - Clean up exit paths from connection_listener_new(). Closes ticket 8789. Patch from Arlo Breault. - Since we rely on OpenSSL 0.9.8 now, we can use EVP_PKEY_cmp() and drop our own custom pkey_eq() implementation. Fixes bug 9043. - Use a doubly-linked list to implement the global circuit list. Resolves ticket 9108. Patch from Marek Majkowski. - Remove contrib/id_to_fp.c since it wasn't used anywhere. - Remove constants and tests for PKCS1 padding; it's insecure and shouldn't be used for anything new. Fixes bug 8792; patch from Arlo Breault. - Remove instances of strcpy() from the unit tests. They weren't hurting anything, since they were only in the unit tests, but it's embarassing to have strcpy() in the code at all, and some analysis tools don't like it. Fixes bug 8790; bugfix on 0.2.3.6-alpha and 0.2.3.8-alpha. Patch from Arlo Breault. - Remove is_internal_IP() function. Resolves ticket 4645. - Remove unused function circuit_dump_by_chan from circuitlist.c. Closes issue 9107; patch from "marek". - Change our use of the ENUM_BF macro to avoid declarations that confuse Doxygen. - Get rid of router->address, since in all cases it was just the string representation of router->addr. Resolves ticket 5528. o Documentation: - Adjust the URLs in the README to refer to the new locations of several documents on the website. Fixes bug 12830. Patch from Matt Pagan. - Document 'reject6' and 'accept6' ExitPolicy entries. Resolves ticket 12878. - Update manpage to describe some of the files you can expect to find in Tor's DataDirectory. Addresses ticket 9839. - Clean up several option names in the manpage to match their real names, add the missing documentation for a couple of testing and directory authority options, remove the documentation for a V2-directory fetching option that no longer exists. Resolves ticket 11634. - Correct the documenation so that it lists the correct directory for the stats files. (They are in a subdirectory called "stats", not "status".) - In the manpage, move more authority-only options into the directory authority section so that operators of regular directory caches don't get confused. - Fix the layout of the SOCKSPort flags in the manpage. Fixes bug 11061; bugfix on 0.2.4.7-alpha. - Resolve warnings from Doxygen. - Document in the manpage that "KBytes" may also be written as "kilobytes" or "KB", that "Kbits" may also be written as "kilobits", and so forth. Closes ticket 9222. - Document that the ClientOnly config option overrides ORPort. Our old explanation made ClientOnly sound as though it did nothing at all. Resolves bug 9059. - Explain that SocksPolicy, DirPolicy, and similar options don't take port arguments. Fixes the other part of ticket 11108. - Fix a comment about the rend_server_descriptor_t.protocols field to more accurately describe its range. Also, make that field unsigned, to more accurately reflect its usage. Fixes bug 9099; bugfix on 0.2.1.5-alpha. - Fix the manpage's description of HiddenServiceAuthorizeClient: the maximum client name length is 16, not 19. Fixes bug 11118; bugfix on 0.2.1.6-alpha. o Package cleanup: - The contrib directory has been sorted and tidied. Before, it was an unsorted dumping ground for useful and not-so-useful things. Now, it is divided based on functionality, and the items which seemed to be nonfunctional or useless have been removed. Resolves ticket 8966; based on patches from "rl1987". o Removed code and features: - Clients now reject any directory authority certificates lacking a dir-key-crosscert element. These have been included since 0.2.1.9-alpha, so there's no real reason for them to be optional any longer. Completes proposal 157. Resolves ticket 10162. - Remove all code that existed to support the v2 directory system, since there are no longer any v2 directory authorities. Resolves ticket 10758. - Remove the HSAuthoritativeDir and AlternateHSAuthority torrc options, which were used for designating authorities as "Hidden service authorities". There has been no use of hidden service authorities since 0.2.2.1-alpha, when we stopped uploading or downloading v0 hidden service descriptors. Fixes bug 10881; also part of a fix for bug 10841. - Remove /tor/dbg-stability.txt URL that was meant to help debug WFU and MTBF calculations, but that nobody was using. Fixes bug 11742. - The TunnelDirConns and PreferTunnelledDirConns options no longer exist; tunneled directory connections have been available since 0.1.2.5-alpha, and turning them off is not a good idea. This is a brute-force fix for 10849, where "TunnelDirConns 0" would break hidden services. - Remove all code for the long unused v1 directory protocol. Resolves ticket 11070. - Remove all remaining code related to version-0 hidden service descriptors: they have not been in use since 0.2.2.1-alpha. Fixes the rest of bug 10841. - Remove migration code from when we renamed the "cached-routers" file to "cached-descriptors" back in 0.2.0.8-alpha. This incidentally resolves ticket 6502 by cleaning up the related code a bit. Patch from Akshay Hebbar. o Test infrastructure: - Tor now builds each source file in two modes: a mode that avoids exposing identifiers needlessly, and another mode that exposes more identifiers for testing. This lets the compiler do better at optimizing the production code, while enabling us to take more radical measures to let the unit tests test things. - The production builds no longer include functions used only in the unit tests; all functions exposed from a module only for unit-testing are now static in production builds. - Add an --enable-coverage configuration option to make the unit tests (and a new src/or/tor-cov target) to build with gcov test coverage support. - Update to the latest version of tinytest. - Improve the tinytest implementation of string operation tests so that comparisons with NULL strings no longer crash the tests; they now just fail, normally. Fixes bug 9004; bugfix on 0.2.2.4-alpha. - New macros in test.h to simplify writing mock-functions for unit tests. Part of ticket 11507. Patch from Dana Koch. - We now have rudimentary function mocking support that our unit tests can use to test functions in isolation. Function mocking lets the tests temporarily replace a function's dependencies with stub functions, so that the tests can check the function without invoking the other functions it calls. o Testing: - Complete tests for the status.c module. Resolves ticket 11507. Patch from Dana Koch. - Add more unit tests for the ->circuit map, and the destroy-cell-tracking code to fix bug 7912. - Unit tests for failing cases of the TAP onion handshake. - More unit tests for address-manipulation functions. o Distribution (systemd): - Include a tor.service file in contrib/dist for use with systemd. Some distributions will be able to use this file unmodified; others will need to tweak it, or write their own. Patch from Jamie Nguyen; resolves ticket 8368. - Verify configuration file via ExecStartPre in the systemd unit file. Patch from intrigeri; resolves ticket 12730. - Explicitly disable RunAsDaemon in the systemd unit file. Our current systemd unit uses "Type = simple", so systemd does not expect tor to fork. If the user has "RunAsDaemon 1" in their torrc, then things won't work as expected. This is e.g. the case on Debian (and derivatives), since there we pass "--defaults-torrc /usr/share/tor/tor-service-defaults-torrc" (that contains "RunAsDaemon 1") by default. Patch by intrigeri; resolves ticket 12731. Changes in version 0.2.4.25 - 2014-10-20 Tor 0.2.4.25 disables SSL3 in response to the recent "POODLE" attack (even though POODLE does not affect Tor). It also works around a crash bug caused by some operating systems' response to the "POODLE" attack (which does affect Tor). o Major security fixes (also in 0.2.5.9-rc): - Disable support for SSLv3. All versions of OpenSSL in use with Tor today support TLS 1.0 or later, so we can safely turn off support for this old (and insecure) protocol. Fixes bug 13426. o Major bugfixes (openssl bug workaround, also in 0.2.5.9-rc): - Avoid crashing when using OpenSSL version 0.9.8zc, 1.0.0o, or 1.0.1j, built with the 'no-ssl3' configuration option. Fixes bug 13471. This is a workaround for an OpenSSL bug. Changes in version 0.2.4.24 - 2014-09-22 Tor 0.2.4.24 fixes a bug that affects consistency and speed when connecting to hidden services, and it updates the location of one of the directory authorities. o Major bugfixes: - Clients now send the correct address for their chosen rendezvous point when trying to access a hidden service. They used to send the wrong address, which would still work some of the time because they also sent the identity digest of the rendezvous point, and if the hidden service happened to try connecting to the rendezvous point from a relay that already had a connection open to it, the relay would reuse that connection. Now connections to hidden services should be more robust and faster. Also, this bug meant that clients were leaking to the hidden service whether they were on a little-endian (common) or big-endian (rare) system, which for some users might have reduced their anonymity. Fixes bug 13151; bugfix on 0.2.1.5-alpha. o Directory authority changes: - Change IP address for gabelmoo (v3 directory authority). o Minor features (geoip): - Update geoip and geoip6 to the August 7 2014 Maxmind GeoLite2 Country database. Changes in version 0.2.4.23 - 2014-07-28 Tor 0.2.4.23 brings us a big step closer to slowing down the risk from guard rotation, and also backports several important fixes from the Tor 0.2.5 alpha release series. o Major features: - Clients now look at the "usecreatefast" consensus parameter to decide whether to use CREATE_FAST or CREATE cells for the first hop of their circuit. This approach can improve security on connections where Tor's circuit handshake is stronger than the available TLS connection security levels, but the tradeoff is more computational load on guard relays. Implements proposal 221. Resolves ticket 9386. - Make the number of entry guards configurable via a new NumEntryGuards consensus parameter, and the number of directory guards configurable via a new NumDirectoryGuards consensus parameter. Implements ticket 12688. o Major bugfixes: - Fix a bug in the bounds-checking in the 32-bit curve25519-donna implementation that caused incorrect results on 32-bit implementations when certain malformed inputs were used along with a small class of private ntor keys. This bug does not currently appear to allow an attacker to learn private keys or impersonate a Tor server, but it could provide a means to distinguish 32-bit Tor implementations from 64-bit Tor implementations. Fixes bug 12694; bugfix on 0.2.4.8-alpha. Bug found by Robert Ransom; fix from Adam Langley. o Minor bugfixes: - Warn and drop the circuit if we receive an inbound 'relay early' cell. Those used to be normal to receive on hidden service circuits due to bug 1038, but the buggy Tor versions are long gone from the network so we can afford to resume watching for them. Resolves the rest of bug 1038; bugfix on 0.2.1.19. - Correct a confusing error message when trying to extend a circuit via the control protocol but we don't know a descriptor or microdescriptor for one of the specified relays. Fixes bug 12718; bugfix on 0.2.3.1-alpha. - Avoid an illegal read from stack when initializing the TLS module using a version of OpenSSL without all of the ciphers used by the v2 link handshake. Fixes bug 12227; bugfix on 0.2.4.8-alpha. Found by "starlight". o Minor features: - Update geoip and geoip6 to the July 10 2014 Maxmind GeoLite2 Country database. Changes in version 0.2.4.22 - 2014-05-16 Tor 0.2.4.22 backports numerous high-priority fixes from the Tor 0.2.5 alpha release series. These include blocking all authority signing keys that may have been affected by the OpenSSL "heartbleed" bug, choosing a far more secure set of TLS ciphersuites by default, closing a couple of memory leaks that could be used to run a target relay out of RAM, and several others. o Major features (security, backport from 0.2.5.4-alpha): - Block authority signing keys that were used on authorities vulnerable to the "heartbleed" bug in OpenSSL (CVE-2014-0160). (We don't have any evidence that these keys _were_ compromised; we're doing this to be prudent.) Resolves ticket 11464. o Major bugfixes (security, OOM): - Fix a memory leak that could occur if a microdescriptor parse fails during the tokenizing step. This bug could enable a memory exhaustion attack by directory servers. Fixes bug 11649; bugfix on 0.2.2.6-alpha. o Major bugfixes (TLS cipher selection, backport from 0.2.5.4-alpha): - The relay ciphersuite list is now generated automatically based on uniform criteria, and includes all OpenSSL ciphersuites with acceptable strength and forward secrecy. Previously, we had left some perfectly fine ciphersuites unsupported due to omission or typo. Resolves bugs 11513, 11492, 11498, 11499. Bugs reported by 'cypherpunks'. Bugfix on 0.2.4.8-alpha. - Relays now trust themselves to have a better view than clients of which TLS ciphersuites are better than others. (Thanks to bug 11513, the relay list is now well-considered, whereas the client list has been chosen mainly for anti-fingerprinting purposes.) Relays prefer: AES over 3DES; then ECDHE over DHE; then GCM over CBC; then SHA384 over SHA256 over SHA1; and last, AES256 over AES128. Resolves ticket 11528. - Clients now try to advertise the same list of ciphersuites as Firefox 28. This change enables selection of (fast) GCM ciphersuites, disables some strange old ciphers, and stops advertising the ECDH (not to be confused with ECDHE) ciphersuites. Resolves ticket 11438. o Minor bugfixes (configuration, security): - When running a hidden service, do not allow TunneledDirConns 0: trying to set that option together with a hidden service would otherwise prevent the hidden service from running, and also make it publish its descriptors directly over HTTP. Fixes bug 10849; bugfix on 0.2.1.1-alpha. o Minor bugfixes (controller, backport from 0.2.5.4-alpha): - Avoid sending a garbage value to the controller when a circuit is cannibalized. Fixes bug 11519; bugfix on 0.2.3.11-alpha. o Minor bugfixes (exit relay, backport from 0.2.5.4-alpha): - Stop leaking memory when we successfully resolve a PTR record. Fixes bug 11437; bugfix on 0.2.4.7-alpha. o Minor bugfixes (bridge client, backport from 0.2.5.4-alpha): - Avoid 60-second delays in the bootstrapping process when Tor is launching for a second time while using bridges. Fixes bug 9229; bugfix on 0.2.0.3-alpha. o Minor bugfixes (relays and bridges, backport from 0.2.5.4-alpha): - Give the correct URL in the warning message when trying to run a relay on an ancient version of Windows. Fixes bug 9393. o Minor bugfixes (compilation): - Fix a compilation error when compiling with --disable-curve25519. Fixes bug 9700; bugfix on 0.2.4.17-rc. o Minor bugfixes: - Downgrade the warning severity for the the "md was still referenced 1 node(s)" warning. Tor 0.2.5.4-alpha has better code for trying to diagnose this bug, and the current warning in earlier versions of tor achieves nothing useful. Addresses warning from bug 7164. o Minor features (log verbosity, backport from 0.2.5.4-alpha): - When we run out of usable circuit IDs on a channel, log only one warning for the whole channel, and describe how many circuits there were on the channel. Fixes part of ticket 11553. o Minor features (security, backport from 0.2.5.4-alpha): - Decrease the lower limit of MaxMemInCellQueues to 256 MBytes (but leave the default at 8GBytes), to better support Raspberry Pi users. Fixes bug 9686; bugfix on 0.2.4.14-alpha. o Documentation (backport from 0.2.5.4-alpha): - Correctly document that we search for a system torrc file before looking in ~/.torrc. Fixes documentation side of 9213; bugfix on 0.2.3.18-rc. Changes in version 0.2.4.21 - 2014-02-28 Tor 0.2.4.21 further improves security against potential adversaries who find breaking 1024-bit crypto doable, and backports several stability and robustness patches from the 0.2.5 branch. o Major features (client security): - When we choose a path for a 3-hop circuit, make sure it contains at least one relay that supports the NTor circuit extension handshake. Otherwise, there is a chance that we're building a circuit that's worth attacking by an adversary who finds breaking 1024-bit crypto doable, and that chance changes the game theory. Implements ticket 9777. o Major bugfixes: - Do not treat streams that fail with reason END_STREAM_REASON_INTERNAL as indicating a definite circuit failure, since it could also indicate an ENETUNREACH connection error. Fixes part of bug 10777; bugfix on 0.2.4.8-alpha. o Code simplification and refactoring: - Remove data structures which were introduced to implement the CellStatistics option: they are now redundant with the new timestamp field in the regular packed_cell_t data structure, which we did in 0.2.4.18-rc in order to resolve bug 9093. Resolves ticket 10870. o Minor features: - Always clear OpenSSL bignums before freeing them -- even bignums that don't contain secrets. Resolves ticket 10793. Patch by Florent Daigniere. - Build without warnings under clang 3.4. (We have some macros that define static functions only some of which will get used later in the module. Starting with clang 3.4, these give a warning unless the unused attribute is set on them.) Resolves ticket 10904. - Update geoip and geoip6 files to the February 7 2014 Maxmind GeoLite2 Country database. o Minor bugfixes: - Set the listen() backlog limit to the largest actually supported on the system, not to the value in a header file. Fixes bug 9716; bugfix on every released Tor. - Treat ENETUNREACH, EACCES, and EPERM connection failures at an exit node as a NOROUTE error, not an INTERNAL error, since they can apparently happen when trying to connect to the wrong sort of netblocks. Fixes part of bug 10777; bugfix on 0.1.0.1-rc. - Fix build warnings about missing "a2x" comment when building the manpages from scratch on OpenBSD; OpenBSD calls it "a2x.py". Fixes bug 10929; bugfix on 0.2.2.9-alpha. Patch from Dana Koch. - Avoid a segfault on SIGUSR1, where we had freed a connection but did not entirely remove it from the connection lists. Fixes bug 9602; bugfix on 0.2.4.4-alpha. - Fix a segmentation fault in our benchmark code when running with Fedora's OpenSSL package, or any other OpenSSL that provides ECDH but not P224. Fixes bug 10835; bugfix on 0.2.4.8-alpha. - Turn "circuit handshake stats since last time" log messages into a heartbeat message. Fixes bug 10485; bugfix on 0.2.4.17-rc. o Documentation fixes: - Document that all but one DirPort entry must have the NoAdvertise flag set. Fixes bug 10470; bugfix on 0.2.3.3-alpha / 0.2.3.16-alpha. Changes in version 0.2.4.20 - 2013-12-22 Tor 0.2.4.20 fixes potentially poor random number generation for users who 1) use OpenSSL 1.0.0 or later, 2) set "HardwareAccel 1" in their torrc file, 3) have "Sandy Bridge" or "Ivy Bridge" Intel processors, and 4) have no state file in their DataDirectory (as would happen on first start). Users who generated relay or hidden service identity keys in such a situation should discard them and generate new ones. This release also fixes a logic error that caused Tor clients to build many more preemptive circuits than they actually need. o Major bugfixes: - Do not allow OpenSSL engines to replace the PRNG, even when HardwareAccel is set. The only default builtin PRNG engine uses the Intel RDRAND instruction to replace the entire PRNG, and ignores all attempts to seed it with more entropy. That's cryptographically stupid: the right response to a new alleged entropy source is never to discard all previously used entropy sources. Fixes bug 10402; works around behavior introduced in OpenSSL 1.0.0. Diagnosis and investigation thanks to "coderman" and "rl1987". - Fix assertion failure when AutomapHostsOnResolve yields an IPv6 address. Fixes bug 10465; bugfix on 0.2.4.7-alpha. - Avoid launching spurious extra circuits when a stream is pending. This fixes a bug where any circuit that _wasn't_ unusable for new streams would be treated as if it were, causing extra circuits to be launched. Fixes bug 10456; bugfix on 0.2.4.12-alpha. o Minor bugfixes: - Avoid a crash bug when starting with a corrupted microdescriptor cache file. Fixes bug 10406; bugfix on 0.2.2.6-alpha. - If we fail to dump a previously cached microdescriptor to disk, avoid freeing duplicate data later on. Fixes bug 10423; bugfix on 0.2.4.13-alpha. Spotted by "bobnomnom". Changes in version 0.2.4.19 - 2013-12-11 The Tor 0.2.4 release series is dedicated to the memory of Aaron Swartz (1986-2013). Aaron worked on diverse projects including helping to guide Creative Commons, playing a key role in stopping SOPA/PIPA, bringing transparency to the U.S government's PACER documents, and contributing design and development for Tor and Tor2Web. Aaron was one of the latest martyrs in our collective fight for civil liberties and human rights, and his death is all the more painful because he was one of us. Tor 0.2.4.19, the first stable release in the 0.2.4 branch, features a new circuit handshake and link encryption that use ECC to provide better security and efficiency; makes relays better manage circuit creation requests; uses "directory guards" to reduce client enumeration risks; makes bridges collect and report statistics about the pluggable transports they support; cleans up and improves our geoip database; gets much closer to IPv6 support for clients, bridges, and relays; makes directory authorities use measured bandwidths rather than advertised ones when computing flags and thresholds; disables client-side DNS caching to reduce tracking risks; and fixes a big bug in bridge reachability testing. This release introduces two new design abstractions in the code: a new "channel" abstraction between circuits and or_connections to allow for implementing alternate relay-to-relay transports, and a new "circuitmux" abstraction storing the queue of circuits for a channel. The release also includes many stability, security, and privacy fixes. o Major features (new circuit handshake): - Tor now supports a new circuit extension handshake designed by Ian Goldberg, Douglas Stebila, and Berkant Ustaoglu. Our original circuit extension handshake, later called "TAP", was a bit slow (especially on the relay side), had a fragile security proof, and used weaker keys than we'd now prefer. The new circuit handshake uses Dan Bernstein's "curve25519" elliptic-curve Diffie-Hellman function, making it significantly more secure than the older handshake, and significantly faster. Tor can use one of two built-in pure-C curve25519-donna implementations by Adam Langley, or it can link against the "nacl" library for a tuned version if present. The built-in version is very fast for 64-bit systems when building with GCC. The built-in 32-bit version is still faster than the old TAP protocol, but using libnacl is better on most such hosts. Implements proposal 216; closes ticket 7202. o Major features (better link encryption): - Relays can now enable the ECDHE TLS ciphersuites when available and appropriate. These ciphersuites let us negotiate forward-secure TLS secret keys more safely and more efficiently than with our previous use of Diffie-Hellman modulo a 1024-bit prime. By default, public relays prefer the (faster) P224 group, and bridges prefer the (more common) P256 group; you can override this with the TLSECGroup option. This feature requires clients running 0.2.3.17-beta or later, and requires both sides to be running OpenSSL 1.0.0 or later with ECC support. OpenSSL 1.0.1, with the compile-time option "enable-ec_nistp_64_gcc_128", is highly recommended. Implements the relay side of proposal 198; closes ticket 7200. - Re-enable TLS 1.1 and 1.2 when built with OpenSSL 1.0.1e or later. Resolves ticket 6055. (OpenSSL before 1.0.1 didn't have TLS 1.1 or 1.2, and OpenSSL from 1.0.1 through 1.0.1d had bugs that prevented renegotiation from working with TLS 1.1 or 1.2, so we had disabled them to solve bug 6033.) o Major features (relay performance): - Instead of limiting the number of queued onionskins (aka circuit create requests) to a fixed, hard-to-configure number, we limit the size of the queue based on how many we expect to be able to process in a given amount of time. We estimate the time it will take to process an onionskin based on average processing time of previous onionskins. Closes ticket 7291. You'll never have to configure MaxOnionsPending again. - Relays process the new "NTor" circuit-level handshake requests with higher priority than the old "TAP" circuit-level handshake requests. We still process some TAP requests to not totally starve 0.2.3 clients when NTor becomes popular. A new consensus parameter "NumNTorsPerTAP" lets us tune the balance later if we need to. Implements ticket 9574. o Major features (client bootstrapping resilience): - Add a new "FallbackDir" torrc option to use when we can't use a directory mirror from the consensus (either because we lack a consensus, or because they're all down). Currently, all authorities are fallbacks by default, and there are no other default fallbacks, but that will change. This option will allow us to give clients a longer list of servers to try to get a consensus from when first connecting to the Tor network, and thereby reduce load on the directory authorities. Implements proposal 206, "Preconfigured directory sources for bootstrapping". We also removed the old "FallbackNetworkstatus" option, since we never got it working well enough to use it. Closes bug 572. - If we have no circuits open, use a relaxed timeout (the 95th-percentile cutoff) until a circuit succeeds. This heuristic should allow Tor to succeed at building circuits even when the network connection drastically changes. Should help with bug 3443. o Major features (use of guards): - Support directory guards (proposal 207): when possible, clients now use their entry guards for non-anonymous directory requests. This can help prevent client enumeration. Note that this behavior only works when we have a usable consensus directory, and when options about what to download are more or less standard. In the future we should re-bootstrap from our guards, rather than re-bootstrapping from the preconfigured list of directory sources that ships with Tor. Resolves ticket 6526. - Raise the default time that a client keeps an entry guard from "1-2 months" to "2-3 months", as suggested by Tariq Elahi's WPES 2012 paper. (We would make it even longer, but we need better client load balancing first.) Also, make the guard lifetime controllable via a new GuardLifetime torrc option and a GuardLifetime consensus parameter. Start of a fix for bug 8240; bugfix on 0.1.1.11-alpha. o Major features (bridges with pluggable transports): - Bridges now report the pluggable transports they support to the bridge authority, so it can pass the supported transports on to bridgedb and/or eventually do reachability testing. Implements ticket 3589. - Automatically forward the TCP ports of pluggable transport proxies using tor-fw-helper if PortForwarding is enabled. Implements ticket 4567. o Major features (geoip database): - Maxmind began labelling Tor relays as being in country "A1", which breaks by-country node selection inside Tor. Now we use a script to replace "A1" ("Anonymous Proxy") entries in our geoip file with real country codes. This script fixes about 90% of "A1" entries automatically and uses manual country code assignments to fix the remaining 10%. See src/config/README.geoip for details. Fixes bug 6266. - Add GeoIP database for IPv6 addresses. The new config option is GeoIPv6File. - Update to the October 2 2013 Maxmind GeoLite Country database. o Major features (IPv6): - Clients who set "ClientUseIPv6 1" may connect to entry nodes over IPv6. Set "ClientPreferIPv6ORPort 1" to make this even more likely to happen. Implements ticket 5535. - All kind of relays, not just bridges, can now advertise an IPv6 OR port. Implements ticket 6362. - Relays can now exit to IPv6 addresses: make sure that you have IPv6 connectivity, then set the IPv6Exit flag to 1. Also make sure your exit policy reads as you would like: the address * applies to all address families, whereas *4 is IPv4 address only, and *6 is IPv6 addresses only. On the client side, you'll need to wait for enough exits to support IPv6, apply the "IPv6Traffic" flag to a SocksPort, and use Socks5. Closes ticket 5547, implements proposal 117 as revised in proposal 208. - Bridge authorities now accept IPv6 bridge addresses and include them in network status documents. Implements ticket 5534. - Directory authorities vote on IPv6 OR ports. Implements ticket 6363. o Major features (directory authorities): - Directory authorities now prefer using measured bandwidths to advertised ones when computing flags and thresholds. Resolves ticket 8273. - Directory authorities that vote measured bandwidths about more than a threshold number of relays now treat relays with unmeasured bandwidths as having bandwidth 0 when computing their flags. Resolves ticket 8435. - Directory authorities now support a new consensus method (17) where they cap the published bandwidth of relays for which insufficient bandwidth measurements exist. Fixes part of bug 2286. - Directory authorities that set "DisableV2DirectoryInfo_ 1" no longer serve any v2 directory information. Now we can test disabling the old deprecated v2 directory format, and see whether doing so has any effect on network load. Begins to fix bug 6783. o Major features (build and portability): - Switch to a nonrecursive Makefile structure. Now instead of each Makefile.am invoking other Makefile.am's, there is a master Makefile.am that includes the others. This change makes our build process slightly more maintainable, and improves parallelism for building with make -j. Original patch by Stewart Smith; various fixes by Jim Meyering. - Where available, we now use automake's "silent" make rules by default, so that warnings are easier to spot. You can get the old behavior with "make V=1". Patch by Stewart Smith for ticket 6522. - Resume building correctly with MSVC and Makefile.nmake. This patch resolves numerous bugs and fixes reported by ultramage, including 7305, 7308, 7309, 7310, 7312, 7313, 7315, 7316, and 7669. o Security features: - Switch to a completely time-invariant approach for picking nodes weighted by bandwidth. Our old approach would run through the part of the loop after it had made its choice slightly slower than it ran through the part of the loop before it had made its choice. Addresses ticket 6538. - Disable the use of Guard nodes when in Tor2WebMode. Guard usage by tor2web clients allows hidden services to identify tor2web clients through their repeated selection of the same rendezvous and introduction point circuit endpoints (their guards). Resolves ticket 6888. o Major bugfixes (relay denial of service): - When we have too much memory queued in circuits (according to a new MaxMemInCellQueues option), close the circuits that have the oldest queued cells, on the theory that those are most responsible for us running low on memory. This prevents us from running out of memory as a relay if circuits fill up faster than they can be drained. Fixes bugs 9063 and 9093; bugfix on the 54th commit of Tor. This bug is a further fix beyond bug 6252, whose fix was merged into 0.2.3.21-rc. - Reject bogus create and relay cells with 0 circuit ID or 0 stream ID: these could be used to create unexpected streams and circuits which would count as "present" to some parts of Tor but "absent" to others, leading to zombie circuits and streams or to a bandwidth denial-of-service. Fixes bug 7889; bugfix on every released version of Tor. Reported by "oftc_must_be_destroyed". - Avoid a bug where our response to TLS renegotiation under certain network conditions could lead to a busy-loop, with 100% CPU consumption. Fixes bug 5650; bugfix on 0.2.0.16-alpha. o Major bugfixes (asserts, crashes, leaks): - Prevent the get_freelists() function from running off the end of the list of freelists if it somehow gets an unrecognized allocation. Fixes bug 8844; bugfix on 0.2.0.16-alpha. Reported by eugenis. - Avoid a memory leak where we would leak a consensus body when we find that a consensus which we couldn't previously verify due to missing certificates is now verifiable. Fixes bug 8719; bugfix on 0.2.0.10-alpha. - If we are unable to save a microdescriptor to the journal, do not drop it from memory and then reattempt downloading it. Fixes bug 9645; bugfix on 0.2.2.6-alpha. - Fix an assertion failure that would occur when disabling the ORPort setting on a running Tor process while accounting was enabled. Fixes bug 6979; bugfix on 0.2.2.18-alpha. - Avoid an assertion failure on OpenBSD (and perhaps other BSDs) when an exit connection with optimistic data succeeds immediately rather than returning EINPROGRESS. Fixes bug 9017; bugfix on 0.2.3.1-alpha. - Fix a memory leak that would occur whenever a configuration option changed. Fixes bug 8718; bugfix on 0.2.3.3-alpha. o Major bugfixes (relay rate limiting): - When a TLS write is partially successful but incomplete, remember that the flushed part has been flushed, and notice that bytes were actually written. Reported and fixed pseudonymously. Fixes bug 7708; bugfix on Tor 0.1.0.5-rc. - Raise the default BandwidthRate/BandwidthBurst values from 5MB/10MB to 1GB/1GB. The previous defaults were intended to be "basically infinite", but it turns out they're now limiting our 100mbit+ relays and bridges. Fixes bug 6605; bugfix on 0.2.0.10-alpha (the last time we raised it). - No longer stop reading or writing on cpuworker connections when our rate limiting buckets go empty. Now we should handle circuit handshake requests more promptly. Resolves bug 9731. o Major bugfixes (client-side privacy): - When we mark a circuit as unusable for new circuits, have it continue to be unusable for new circuits even if MaxCircuitDirtiness is increased too much at the wrong time, or the system clock jumps backwards. Fixes bug 6174; bugfix on 0.0.2pre26. - If ClientDNSRejectInternalAddresses ("do not believe DNS queries which have resolved to internal addresses") is set, apply that rule to IPv6 as well. Fixes bug 8475; bugfix on 0.2.0.7-alpha. - When an exit relay rejects a stream with reason "exit policy", but we only know an exit policy summary (e.g. from the microdesc consensus) for it, do not mark the relay as useless for all exiting. Instead, mark just the circuit as unsuitable for that particular address. Fixes part of bug 7582; bugfix on 0.2.3.2-alpha. o Major bugfixes (stream isolation): - Allow applications to get proper stream isolation with IsolateSOCKSAuth. Many SOCKS5 clients that want to offer username/password authentication also offer "no authentication". Tor had previously preferred "no authentication", so the applications never actually sent Tor their auth details. Now Tor selects username/password authentication if it's offered. You can disable this behavior on a per-SOCKSPort basis via PreferSOCKSNoAuth. Fixes bug 8117; bugfix on 0.2.3.3-alpha. - Follow the socks5 protocol when offering username/password authentication. The fix for bug 8117 exposed this bug, and it turns out real-world applications like Pidgin do care. Bugfix on 0.2.3.2-alpha; fixes bug 8879. o Major bugfixes (client circuit building): - Alter circuit build timeout measurement to start at the point where we begin the CREATE/CREATE_FAST step (as opposed to circuit initialization). This should make our timeout measurements more uniform. Previously, we were sometimes including ORconn setup time in our circuit build time measurements. Should resolve bug 3443. - If the circuit build timeout logic is disabled (via the consensus, or because we are an authority), then don't build testing circuits. Fixes bug 9657; bugfix on 0.2.2.14-alpha. o Major bugfixes (client-side DNS): - Turn off the client-side DNS cache by default. Updating and using the DNS cache is now configurable on a per-client-port level. SOCKSPort, DNSPort, etc lines may now contain {No,}Cache{IPv4,IPv6,}DNS lines to indicate that we shouldn't cache these types of DNS answers when we receive them from an exit node in response to an application request on this port, and {No,}UseCached{IPv4,IPv6,DNS} lines to indicate that if we have cached DNS answers of these types, we shouldn't use them. It's potentially risky to use cached DNS answers at the client, since doing so can indicate to one exit what answers we've gotten for DNS lookups in the past. With IPv6, this becomes especially problematic. Using cached DNS answers for requests on the same circuit would present less linkability risk, since all traffic on a circuit is already linkable, but it would also provide little performance benefit: the exit node caches DNS replies too. Implements a simplified version of Proposal 205. Implements ticket 7570. o Major bugfixes (hidden service privacy): - Limit hidden service descriptors to at most ten introduction points, to slow one kind of guard enumeration. Fixes bug 9002; bugfix on 0.1.1.11-alpha. o Major bugfixes (directory fetching): - If the time to download the next old-style networkstatus is in the future, do not decline to consider whether to download the next microdescriptor networkstatus. Fixes bug 9564; bugfix on 0.2.3.14-alpha. - We used to always request authority certificates by identity digest, meaning we'd get the newest one even when we wanted one with a different signing key. Then we would complain about being given a certificate we already had, and never get the one we really wanted. Now we use the "fp-sk/" resource as well as the "fp/" resource to request the one we want. Fixes bug 5595; bugfix on 0.2.0.8-alpha. o Major bugfixes (bridge reachability): - Bridges now send AUTH_CHALLENGE cells during their v3 handshakes; previously they did not, which prevented them from receiving successful connections from relays for self-test or bandwidth testing. Also, when a relay is extending a circuit to a bridge, it needs to send a NETINFO cell, even when the bridge hasn't sent an AUTH_CHALLENGE cell. Fixes bug 9546; bugfix on 0.2.3.6-alpha. o Major bugfixes (control interface): - When receiving a new configuration file via the control port's LOADCONF command, do not treat the defaults file as absent. Fixes bug 9122; bugfix on 0.2.3.9-alpha. o Major bugfixes (directory authorities): - Stop marking every relay as having been down for one hour every time we restart a directory authority. These artificial downtimes were messing with our Stable and Guard flag calculations. Fixes bug 8218 (introduced by the fix for 1035). Bugfix on 0.2.2.23-alpha. - When computing directory thresholds, ignore any rejected-as-sybil nodes during the computation so that they can't influence Fast, Guard, etc. (We should have done this for proposal 109.) Fixes bug 8146. - When marking a node as a likely sybil, reset its uptime metrics to zero, so that it cannot time towards getting marked as Guard, Stable, or HSDir. (We should have done this for proposal 109.) Fixes bug 8147. - Fix a bug in the voting algorithm that could yield incorrect results when a non-naming authority declared too many flags. Fixes bug 9200; bugfix on 0.2.0.3-alpha. o Internal abstraction features: - Introduce new channel_t abstraction between circuits and or_connection_t to allow for implementing alternate OR-to-OR transports. A channel_t is an abstract object which can either be a cell-bearing channel, which is responsible for authenticating and handshaking with the remote OR and transmitting cells to and from it, or a listening channel, which spawns new cell-bearing channels at the request of remote ORs. Implements part of ticket 6465. - Make a channel_tls_t subclass of channel_t, adapting it to the existing or_connection_t code. The V2/V3 protocol handshaking code which formerly resided in command.c has been moved below the channel_t abstraction layer and may be found in channeltls.c now. Implements the rest of ticket 6465. - Introduce new circuitmux_t storing the queue of circuits for a channel; this encapsulates and abstracts the queue logic and circuit selection policy, and allows the latter to be overridden easily by switching out a policy object. The existing EWMA behavior is now implemented as a circuitmux_policy_t. Resolves ticket 6816. o New build requirements: - Tor now requires OpenSSL 0.9.8 or later. OpenSSL 1.0.0 or later is strongly recommended. - Tor maintainers now require Automake version 1.9 or later to build Tor from the Git repository. (Automake is not required when building from a source distribution.) o Minor features (protocol): - No longer include the "opt" prefix when generating routerinfos or v2 directories: it has been needless since Tor 0.1.2. Closes ticket 5124. - Reject EXTEND cells sent to nonexistent streams. According to the spec, an EXTEND cell sent to _any_ nonzero stream ID is invalid, but we were only checking for stream IDs that were currently in use. Found while hunting for more instances of bug 6271. Bugfix on 0.0.2pre8, which introduced incremental circuit construction. - Tor relays and clients now support a better CREATE/EXTEND cell format, allowing the sender to specify multiple address, identity, and handshake types. Implements Robert Ransom's proposal 200; closes ticket 7199. - Reject as invalid most directory objects containing a NUL. Belt-and-suspender fix for bug 8037. o Minor features (security): - Clear keys and key-derived material left on the stack in rendservice.c and rendclient.c. Check return value of crypto_pk_write_private_key_to_string() in rend_service_load_keys(). These fixes should make us more forward-secure against cold-boot attacks and the like. Fixes bug 2385. - Use our own weak RNG when we need a weak RNG. Windows's rand() and Irix's random() only return 15 bits; Solaris's random() returns more bits but its RAND_MAX says it only returns 15, and so on. Motivated by the fix for bug 7801; bugfix on 0.2.2.20-alpha. o Minor features (control protocol): - Add a "GETINFO signal/names" control port command. Implements ticket 3842. - Provide default values for all options via "GETINFO config/defaults". Implements ticket 4971. - Allow an optional $ before the node identity digest in the controller command GETINFO ns/id/, for consistency with md/id/ and desc/id/. Resolves ticket 7059. - Add CACHED keyword to ADDRMAP events in the control protocol to indicate whether a DNS result will be cached or not. Resolves ticket 8596. - Generate bootstrapping status update events correctly when fetching microdescriptors. Fixes bug 9927. o Minor features (path selection): - When deciding whether we have enough descriptors to build circuits, instead of looking at raw relay counts, look at which fraction of (bandwidth-weighted) paths we're able to build. This approach keeps clients from building circuits if their paths are likely to stand out statistically. The default fraction of paths needed is taken from the consensus directory; you can override it with the new PathsNeededToBuildCircuits option. Fixes ticket 5956. - When any country code is listed in ExcludeNodes or ExcludeExitNodes, and we have GeoIP information, also exclude all nodes with unknown countries "??" and "A1". This behavior is controlled by the new GeoIPExcludeUnknown option: you can make such nodes always excluded with "GeoIPExcludeUnknown 1", and disable the feature with "GeoIPExcludeUnknown 0". Setting "GeoIPExcludeUnknown auto" gets you the default behavior. Implements feature 7706. o Minor features (hidden services): - Improve circuit build timeout handling for hidden services. In particular: adjust build timeouts more accurately depending upon the number of hop-RTTs that a particular circuit type undergoes. Additionally, launch intro circuits in parallel if they timeout, and take the first one to reply as valid. - The Tor client now ignores sub-domain components of a .onion address. This change makes HTTP "virtual" hosting possible: http://foo.aaaaaaaaaaaaaaaa.onion/ and http://bar.aaaaaaaaaaaaaaaa.onion/ can be two different websites hosted on the same hidden service. Implements proposal 204. - Enable Tor to read configuration, state, and key information from a FIFO. Previously Tor would only read from files with a positive stat.st_size. Code from meejah; fixes bug 6044. o Minor features (clients): - Teach bridge-using clients to avoid 0.2.2.x bridges when making microdescriptor-related dir requests, and only fall back to normal descriptors if none of their bridges can handle microdescriptors (as opposed to the fix in ticket 4013, which caused them to fall back to normal descriptors if *any* of their bridges preferred them). Resolves ticket 4994. - Tweak tor-fw-helper to accept an arbitrary amount of arbitrary TCP ports to forward. In the past it only accepted two ports: the ORPort and the DirPort. o Minor features (protecting client timestamps): - Clients no longer send timestamps in their NETINFO cells. These were not used for anything, and they provided one small way for clients to be distinguished from each other as they moved from network to network or behind NAT. Implements part of proposal 222. - Clients now round timestamps in INTRODUCE cells down to the nearest 10 minutes. If a new Support022HiddenServices option is set to 0, or if it's set to "auto" and the feature is disabled in the consensus, the timestamp is sent as 0 instead. Implements part of proposal 222. - Stop sending timestamps in AUTHENTICATE cells. This is not such a big deal from a security point of view, but it achieves no actual good purpose, and isn't needed. Implements part of proposal 222. - Reduce down accuracy of timestamps in hidden service descriptors. Implements part of proposal 222. o Minor features (bridges): - Make bridge relays check once a minute for whether their IP address has changed, rather than only every 15 minutes. Resolves bugs 1913 and 1992. - Bridge statistics now count bridge clients connecting over IPv6: bridge statistics files now list "bridge-ip-versions" and extra-info documents list "geoip6-db-digest". The control protocol "CLIENTS_SEEN" and "ip-to-country" queries now support IPv6. Initial implementation by "shkoo", addressing ticket 5055. - Add a new torrc option "ServerTransportListenAddr" to let bridge operators select the address where their pluggable transports will listen for connections. Resolves ticket 7013. - Randomize the lifetime of our SSL link certificate, so censors can't use the static value for filtering Tor flows. Resolves ticket 8443; related to ticket 4014 which was included in 0.2.2.33. o Minor features (relays): - Option OutboundBindAddress can be specified multiple times and accepts IPv6 addresses. Resolves ticket 6876. o Minor features (IPv6, client side): - AutomapHostsOnResolve now supports IPv6 addresses. By default, we prefer to hand out virtual IPv6 addresses, since there are more of them and we can't run out. To override this behavior and make IPv4 addresses preferred, set NoPreferIPv6Automap on whatever SOCKSPort or DNSPort you're using for resolving. Implements ticket 7571. - AutomapHostsOnResolve responses are now randomized, to avoid annoying situations where Tor is restarted and applications connect to the wrong addresses. - Never try more than 1000 times to pick a new virtual address when AutomapHostsOnResolve is set. That's good enough so long as we aren't close to handing out our entire virtual address space; if you're getting there, it's best to switch to IPv6 virtual addresses anyway. o Minor features (IPv6, relay/authority side): - New config option "AuthDirHasIPv6Connectivity 1" that directory authorities should set if they have IPv6 connectivity and want to do reachability tests for IPv6 relays. Implements feature 5974. - A relay with an IPv6 OR port now sends that address in NETINFO cells (in addition to its other address). Implements ticket 6364. o Minor features (directory authorities): - Directory authorities no long accept descriptors for any version of Tor before 0.2.2.35, or for any 0.2.3 release before 0.2.3.10-alpha. These versions are insecure, unsupported, or both. Implements ticket 6789. - When directory authorities are computing thresholds for flags, never let the threshold for the Fast flag fall below 4096 bytes. Also, do not consider nodes with extremely low bandwidths when deciding thresholds for various directory flags. This change should raise our threshold for Fast relays, possibly in turn improving overall network performance; see ticket 1854. Resolves ticket 8145. - Directory authorities now include inside each vote a statement of the performance thresholds they used when assigning flags. Implements ticket 8151. - Add an "ignoring-advertised-bws" boolean to the flag-threshold lines in directory authority votes to describe whether they have enough measured bandwidths to ignore advertised (relay descriptor) bandwidth claims. Resolves ticket 8711. o Minor features (path bias detection): - Path Use Bias: Perform separate accounting for successful circuit use. Keep separate statistics on stream attempt rates versus stream success rates for each guard. Provide configurable thresholds to determine when to emit log messages or disable use of guards that fail too many stream attempts. Resolves ticket 7802. - Create three levels of Path Bias log messages, as opposed to just two. These are configurable via consensus as well as via the torrc options PathBiasNoticeRate, PathBiasWarnRate, PathBiasExtremeRate. The default values are 0.70, 0.50, and 0.30 respectively. - Separate the log message levels from the decision to drop guards, which also is available via torrc option PathBiasDropGuards. PathBiasDropGuards still defaults to 0 (off). - Deprecate PathBiasDisableRate in favor of PathBiasDropGuards in combination with PathBiasExtremeRate. - Increase the default values for PathBiasScaleThreshold and PathBiasCircThreshold from (200, 20) to (300, 150). - Add in circuit usage accounting to path bias. If we try to use a built circuit but fail for any reason, it counts as path bias. Certain classes of circuits where the adversary gets to pick your destination node are exempt from this accounting. Usage accounting can be specifically disabled via consensus parameter or torrc. - Convert all internal path bias state to double-precision floating point, to avoid roundoff error and other issues. - Only record path bias information for circuits that have completed *two* hops. Assuming end-to-end tagging is the attack vector, this makes us more resilient to ambient circuit failure without any detection capability loss. o Minor features (build): - Tor now builds correctly on Bitrig, an OpenBSD fork. Patch from dhill. Resolves ticket 6982. - Compile on win64 using mingw64. Fixes bug 7260; patches from "yayooo". - Work correctly on Unix systems where EAGAIN and EWOULDBLOCK are separate error codes; or at least, don't break for that reason. Fixes bug 7935. Reported by "oftc_must_be_destroyed". o Build improvements (autotools): - Warn if building on a platform with an unsigned time_t: there are too many places where Tor currently assumes that time_t can hold negative values. We'd like to fix them all, but probably some will remain. - Do not report status verbosely from autogen.sh unless the -v flag is specified. Fixes issue 4664. Patch from Onizuka. - Detect and reject attempts to build Tor with threading support when OpenSSL has been compiled without threading support. Fixes bug 6673. - Try to detect if we are ever building on a platform where memset(...,0,...) does not set the value of a double to 0.0. Such platforms are permitted by the C standard, though in practice they're pretty rare (since IEEE 754 is nigh-ubiquitous). We don't currently support them, but it's better to detect them and fail than to perform erroneously. - We no longer warn so much when generating manpages from their asciidoc source. - Use Ville Laurikari's implementation of AX_CHECK_SIGN() to determine the signs of types during autoconf. This is better than our old approach, which didn't work when cross-compiling. o Minor features (log messages, warnings): - Detect when we're running with a version of OpenSSL other than the one we compiled with. This conflict has occasionally given people hard-to-track-down errors. - Warn users who run hidden services on a Tor client with UseEntryGuards disabled that their hidden services will be vulnerable to http://freehaven.net/anonbib/#hs-attack06 (the attack which motivated Tor to support entry guards in the first place). Resolves ticket 6889. - Warn when we are binding low ports when hibernation is enabled; previously we had warned when we were _advertising_ low ports with hibernation enabled. Fixes bug 7285; bugfix on 0.2.3.9-alpha. - Issue a warning when running with the bufferevents backend enabled. It's still not stable, and people should know that they're likely to hit unexpected problems. Closes ticket 9147. o Minor features (log messages, notices): - Refactor resolve_my_address() so it returns the method by which we decided our public IP address (explicitly configured, resolved from explicit hostname, guessed from interfaces, learned by gethostname). Now we can provide more helpful log messages when a relay guesses its IP address incorrectly (e.g. due to unexpected lines in /etc/hosts). Resolves ticket 2267. - Track how many "TAP" and "NTor" circuit handshake requests we get, and how many we complete, and log it every hour to help relay operators follow trends in network load. Addresses ticket 9658. o Minor features (log messages, diagnostics): - If we fail to free a microdescriptor because of bug 7164, log the filename and line number from which we tried to free it. - We compute the overhead from passing onionskins back and forth to cpuworkers, and report it when dumping statistics in response to SIGUSR1. Supports ticket 7291. - Add another diagnostic to the heartbeat message: track and log overhead that TLS is adding to the data we write. If this is high, we are sending too little data to SSL_write at a time. Diagnostic for bug 7707. - Log packaged cell fullness as part of the heartbeat message. Diagnosis to try to determine the extent of bug 7743. - Add more detail to a log message about relaxed timeouts, to help track bug 7799. - When learning a fingerprint for a bridge, log its corresponding transport type. Implements ticket 7896. - Warn more aggressively when flushing microdescriptors to a microdescriptor cache fails, in an attempt to mitigate bug 8031, or at least make it more diagnosable. - Improve the log message when "Bug/attack: unexpected sendme cell from client" occurs, to help us track bug 8093. - Improve debugging output to help track down bug 8185 ("Bug: outgoing relay cell has n_chan==NULL. Dropping.") o Minor features (log messages, quieter bootstrapping): - Log fewer lines at level "notice" about our OpenSSL and Libevent versions and capabilities when everything is going right. Resolves part of ticket 6736. - Omit the first heartbeat log message, because it never has anything useful to say, and it clutters up the bootstrapping messages. Resolves ticket 6758. - Don't log about reloading the microdescriptor cache at startup. Our bootstrap warnings are supposed to tell the user when there's a problem, and our bootstrap notices say when there isn't. Resolves ticket 6759; bugfix on 0.2.2.6-alpha. - Don't log "I learned some more directory information" when we're reading cached directory information. Reserve it for when new directory information arrives in response to a fetch. Resolves ticket 6760. - Don't complain about bootstrapping problems while hibernating. These complaints reflect a general code problem, but not one with any problematic effects (no connections are actually opened). Fixes part of bug 7302; bugfix on 0.2.3.2-alpha. o Minor features (testing): - In our testsuite, create temporary directories with a bit more entropy in their name to make name collisions less likely. Fixes bug 8638. - Add benchmarks for DH (1024-bit multiplicative group) and ECDH (P-256) Diffie-Hellman handshakes to src/or/bench. - Add benchmark functions to test onion handshake performance. o Renamed options: - The DirServer option is now DirAuthority, for consistency with current naming patterns. You can still use the old DirServer form. o Minor bugfixes (protocol): - Fix the handling of a TRUNCATE cell when it arrives while the circuit extension is in progress. Fixes bug 7947; bugfix on 0.0.7.1. - When a Tor client gets a "truncated" relay cell, the first byte of its payload specifies why the circuit was truncated. We were ignoring this 'reason' byte when tearing down the circuit, resulting in the controller not being told why the circuit closed. Now we pass the reason from the truncated cell to the controller. Bugfix on 0.1.2.3-alpha; fixes bug 7039. - Fix a misframing issue when reading the version numbers in a VERSIONS cell. Previously we would recognize [00 01 00 02] as 'version 1, version 2, and version 0x100', when it should have only included versions 1 and 2. Fixes bug 8059; bugfix on 0.2.0.10-alpha. Reported pseudonymously. - Make the format and order of STREAM events for DNS lookups consistent among the various ways to launch DNS lookups. Fixes bug 8203; bugfix on 0.2.0.24-rc. Patch by "Desoxy". o Minor bugfixes (syscalls and disk interaction): - Always check the return values of functions fcntl() and setsockopt(). We don't believe these are ever actually failing in practice, but better safe than sorry. Also, checking these return values should please analysis tools like Coverity. Patch from 'flupzor'. Fixes bug 8206; bugfix on all versions of Tor. - Avoid double-closing the listener socket in our socketpair() replacement (used on Windows) in the case where the addresses on our opened sockets don't match what we expected. Fixes bug 9400; bugfix on 0.0.2pre7. Found by Coverity. - Correctly store microdescriptors and extrainfo descriptors that include an internal NUL byte. Fixes bug 8037; bugfix on 0.2.0.1-alpha. Bug reported by "cypherpunks". - If for some reason we fail to write a microdescriptor while rebuilding the cache, do not let the annotations from that microdescriptor linger in the cache file, and do not let the microdescriptor stay recorded as present in its old location. Fixes bug 9047; bugfix on 0.2.2.6-alpha. - Use direct writes rather than stdio when building microdescriptor caches, in an attempt to mitigate bug 8031, or at least make it less common. o Minor fixes (config options): - Warn and fail if a server is configured not to advertise any ORPorts at all. (We need *something* to put in our descriptor, or we just won't work.) - Behave correctly when the user disables LearnCircuitBuildTimeout but doesn't tell us what they would like the timeout to be. Fixes bug 6304; bugfix on 0.2.2.14-alpha. - Rename the (internal-use-only) UsingTestingNetworkDefaults option to start with a triple-underscore so the controller won't touch it. Patch by Meejah. Fixes bug 3155. Bugfix on 0.2.2.23-alpha. - Rename the (testing-use-only) _UseFilteringSSLBufferevents option so it doesn't start with _. Fixes bug 3155. Bugfix on 0.2.3.1-alpha. - When autodetecting the number of CPUs, use the number of available CPUs in preference to the number of configured CPUs. Inform the user if this reduces the number of available CPUs. Fixes bug 8002; bugfix on 0.2.3.1-alpha. - Command-line option "--version" implies "--quiet". Fixes bug 6997. - Make it an error when you set EntryNodes but disable UseGuardNodes, since it will (surprisingly to some users) ignore EntryNodes. Fixes bug 8180; bugfix on 0.2.3.11-alpha. - Avoid overflows when the user sets MaxCircuitDirtiness to a ridiculously high value, by imposing a (ridiculously high) 30-day maximum on MaxCircuitDirtiness. o Minor bugfixes (control protocol): - Stop sending a stray "(null)" in some cases for the server status "EXTERNAL_ADDRESS" controller event. Resolves bug 8200; bugfix on 0.1.2.6-alpha. - The ADDRMAP command can no longer generate an ill-formed error code on a failed MAPADDRESS. It now says "internal" rather than an English sentence fragment with spaces in the middle. Bugfix on Tor 0.2.0.19-alpha. o Minor bugfixes (clients / edges): - When we receive a RELAY_END cell with the reason DONE, or with no reason, before receiving a RELAY_CONNECTED cell, report the SOCKS status as "connection refused". Previously we reported these cases as success but then immediately closed the connection. Fixes bug 7902; bugfix on 0.1.0.1-rc. Reported by "oftc_must_be_destroyed". - If the guard we choose first doesn't answer, we would try the second guard, but once we connected to the second guard we would abandon it and retry the first one, slowing down bootstrapping. The fix is to treat all our initially chosen guards as acceptable to use. Fixes bug 9946; bugfix on 0.1.1.11-alpha. - When choosing which stream on a formerly stalled circuit to wake first, make better use of the platform's weak RNG. Previously, we had been using the % ("modulo") operator to try to generate a 1/N chance of picking each stream, but this behaves badly with many platforms' choice of weak RNG. Fixes bug 7801; bugfix on 0.2.2.20-alpha. o Minor bugfixes (path bias detection): - If the state file's path bias counts are invalid (presumably from a buggy Tor prior to 0.2.4.10-alpha), make them correct. Also add additional checks and log messages to the scaling of Path Bias counts, in case there still are remaining issues with scaling. Should help resolve bug 8235. - Prevent rounding error in path bias counts when scaling them down, and use the correct scale factor default. Also demote some path bias related log messages down a level and make others less scary sounding. Fixes bug 6647. Bugfix on 0.2.3.17-beta. - Remove a source of rounding error during path bias count scaling; don't count cannibalized circuits as used for path bias until we actually try to use them; and fix a circuit_package_relay_cell() warning message about n_chan==NULL. Fixes bug 7802. - Paste the description for PathBias parameters from the man page into or.h, so the code documents them too. Fixes bug 7982; bugfix on 0.2.3.17-beta. o Minor bugfixes (relays): - Stop trying to resolve our hostname so often (e.g. every time we think about doing a directory fetch). Now we reuse the cached answer in some cases. Fixes bugs 1992 (bugfix on 0.2.0.20-rc) and 2410 (bugfix on 0.1.2.2-alpha). - When examining the list of network interfaces to find our address, do not consider non-running or disabled network interfaces. Fixes bug 9904; bugfix on 0.2.3.11-alpha. Patch from "hantwister". o Minor bugfixes (blocking resistance): - Only disable TLS session ticket support when running as a TLS server. Now clients will blend better with regular Firefox connections. Fixes bug 7189; bugfix on Tor 0.2.3.23-rc. o Minor bugfixes (IPv6): - Use square brackets around IPv6 addresses in numerous places that needed them, including log messages, HTTPS CONNECT proxy requests, TransportProxy statefile entries, and pluggable transport extra-info lines. Fixes bug 7011; patch by David Fifield. o Minor bugfixes (directory authorities): - Reject consensus votes with more than 64 known-flags. We aren't even close to that limit yet, and our code doesn't handle it correctly. Fixes bug 6833; bugfix on 0.2.0.1-alpha. - Correctly handle votes with more than 31 flags. Fixes bug 6853; bugfix on 0.2.0.3-alpha. o Minor bugfixes (memory leaks): - Avoid leaking memory if we fail to compute a consensus signature or we generate a consensus we can't parse. Bugfix on 0.2.0.5-alpha. - Fix a memory leak when receiving headers from an HTTPS proxy. Bugfix on 0.2.1.1-alpha; fixes bug 7816. - Fix a memory leak during safe-cookie controller authentication. Bugfix on 0.2.3.13-alpha; fixes bug 7816. - Free some more still-in-use memory at exit, to make hunting for memory leaks easier. Resolves bug 7029. o Minor bugfixes (code correctness): - Increase the width of the field used to remember a connection's link protocol version to two bytes. Harmless for now, since the only currently recognized versions are one byte long. Reported pseudonymously. Fixes bug 8062; bugfix on 0.2.0.10-alpha. - Fix a crash when debugging unit tests on Windows: deallocate a shared library with FreeLibrary, not CloseHandle. Fixes bug 7306; bugfix on 0.2.2.17-alpha. Reported by "ultramage". - When detecting the largest possible file descriptor (in order to close all file descriptors when launching a new program), actually use _SC_OPEN_MAX. The old code for doing this was very, very broken. Fixes bug 8209; bugfix on 0.2.3.1-alpha. Found by Coverity; this is CID 743383. - Avoid a crash if we fail to generate an extrainfo descriptor. Fixes bug 8208; bugfix on 0.2.3.16-alpha. Found by Coverity; this is CID 718634. - Avoid an off-by-one error when checking buffer boundaries when formatting the exit status of a pluggable transport helper. This is probably not an exploitable bug, but better safe than sorry. Fixes bug 9928; bugfix on 0.2.3.18-rc. Bug found by Pedro Ribeiro. - Get rid of a couple of harmless clang warnings, where we compared enums to ints. These warnings are newly introduced in clang 3.2. o Minor bugfixes (code cleanliness): - Avoid use of reserved identifiers in our C code. The C standard doesn't like us declaring anything that starts with an underscore, so let's knock it off before we get in trouble. Fix for bug 1031; bugfix on the first Tor commit. - Fix round_to_power_of_2() so it doesn't invoke undefined behavior with large values. This situation was untriggered, but nevertheless incorrect. Fixes bug 6831; bugfix on 0.2.0.1-alpha. - Fix an impossible buffer overrun in the AES unit tests. Fixes bug 8845; bugfix on 0.2.0.7-alpha. Found by eugenis. - Fix handling of rendezvous client authorization types over 8. Fixes bug 6861; bugfix on 0.2.1.5-alpha. - Remove a couple of extraneous semicolons that were upsetting the cparser library. Patch by Christian Grothoff. Fixes bug 7115; bugfix on 0.2.2.1-alpha. - When complaining about a client port on a public address, log which address we're complaining about. Fixes bug 4020; bugfix on 0.2.3.3-alpha. Patch by Tom Fitzhenry. o Minor bugfixes (log messages, warnings): - If we encounter a write failure on a SOCKS connection before we finish our SOCKS handshake, don't warn that we closed the connection before we could send a SOCKS reply. Fixes bug 8427; bugfix on 0.1.0.1-rc. - Fix a directory authority warn caused when we have a large amount of badexit bandwidth. Fixes bug 8419; bugfix on 0.2.2.10-alpha. - Downgrade "Failed to hand off onionskin" messages to "debug" severity, since they're typically redundant with the "Your computer is too slow" messages. Fixes bug 7038; bugfix on 0.2.2.16-alpha. - Avoid spurious warnings when configuring multiple client ports of which only some are nonlocal. Previously, we had claimed that some were nonlocal when in fact they weren't. Fixes bug 7836; bugfix on 0.2.3.3-alpha. o Minor bugfixes (log messages, other): - Fix log messages and comments to avoid saying "GMT" when we mean "UTC". Fixes bug 6113. - When rejecting a configuration because we were unable to parse a quoted string, log an actual error message. Fixes bug 7950; bugfix on 0.2.0.16-alpha. - Correctly recognize that [::1] is a loopback address. Fixes bug 8377; bugfix on 0.2.1.3-alpha. - Don't log inappropriate heartbeat messages when hibernating: a hibernating node is _expected_ to drop out of the consensus, decide it isn't bootstrapped, and so forth. Fixes bug 7302; bugfix on 0.2.3.1-alpha. - Eliminate several instances where we use "Nickname=ID" to refer to nodes in logs. Use "Nickname (ID)" instead. (Elsewhere, we still use "$ID=Nickname", which is also acceptable.) Fixes bug 7065. Bugfix on 0.2.3.21-rc. o Minor bugfixes (build): - Fix some bugs in tor-fw-helper-natpmp when trying to build and run it on Windows. More bugs likely remain. Patch from Gisle Vanem. Fixes bug 7280; bugfix on 0.2.3.1-alpha. o Documentation fixes: - Make the torify manpage no longer refer to tsocks; torify hasn't supported tsocks since 0.2.3.14-alpha. - Make the tor manpage no longer reference tsocks. - Fix the GeoIPExcludeUnknown documentation to refer to ExcludeExitNodes rather than the currently nonexistent ExcludeEntryNodes. Spotted by "hamahangi" on tor-talk. - Resolve a typo in torrc.sample.in. Fixes bug 6819; bugfix on 0.2.3.14-alpha. - Say "KBytes" rather than "KB" in the man page (for various values of K), to further reduce confusion about whether Tor counts in units of memory or fractions of units of memory. Resolves ticket 7054. - Update tor-fw-helper.1.txt and tor-fw-helper.c to make option names match. Fixes bug 7768. - Fix the documentation of HeartbeatPeriod to say that the heartbeat message is logged at notice, not at info. - Clarify the usage and risks of setting the ContactInfo torrc line for your relay or bridge. Resolves ticket 9854. - Add anchors to the manpage so we can link to the html version of the documentation for specific options. Resolves ticket 9866. - Replace remaining references to DirServer in man page and log entries. Resolves ticket 10124. o Removed features: - Stop exporting estimates of v2 and v3 directory traffic shares in extrainfo documents. They were unneeded and sometimes inaccurate. Also stop exporting any v2 directory request statistics. Resolves ticket 5823. - Drop support for detecting and warning about versions of Libevent before 1.3e. Nothing reasonable ships with them any longer; warning the user about them shouldn't be needed. Resolves ticket 6826. - Now that all versions before 0.2.2.x are disallowed, we no longer need to work around their missing features. Remove a bunch of compatibility code. o Removed files: - The tor-tsocks.conf is no longer distributed or installed. We recommend that tsocks users use torsocks instead. Resolves ticket 8290. - Remove some of the older contents of doc/ as obsolete; move others to torspec.git. Fixes bug 8965. o Code simplification: - Avoid using character buffers when constructing most directory objects: this approach was unwieldy and error-prone. Instead, build smartlists of strings, and concatenate them when done. - Rename "isin" functions to "contains", for grammar. Resolves ticket 5285. - Rename Tor's logging function log() to tor_log(), to avoid conflicts with the natural logarithm function from the system libm. Resolves ticket 7599. - Start using OpenBSD's implementation of queue.h, so that we don't need to hand-roll our own pointer and list structures whenever we need them. (We can't rely on a sys/queue.h, since some operating systems don't have them, and the ones that do have them don't all present the same extensions.) - Start using OpenBSD's implementation of queue.h (originally by Niels Provos). - Enhance our internal sscanf replacement so that we can eliminate the last remaining uses of the system sscanf. (Though those uses of sscanf were safe, sscanf itself is generally error prone, so we want to eliminate when we can.) Fixes ticket 4195 and Coverity CID 448. - Replace all calls to snprintf() outside of src/ext with tor_snprintf(). Also remove the #define to replace snprintf with _snprintf on Windows; they have different semantics, and all of our callers should be using tor_snprintf() anyway. Fixes bug 7304. o Refactoring: - Add a wrapper function for the common "log a message with a rate-limit" case. - Split the onion.c file into separate modules for the onion queue and the different handshakes it supports. - Move the client-side address-map/virtual-address/DNS-cache code out of connection_edge.c into a new addressmap.c module. - Move the entry node code from circuitbuild.c to its own file. - Move the circuit build timeout tracking code from circuitbuild.c to its own file. - Source files taken from other packages now reside in src/ext; previously they were scattered around the rest of Tor. - Move the generic "config" code into a new file, and have "config.c" hold only torrc- and state-related code. Resolves ticket 6823. - Move the core of our "choose a weighted element at random" logic into its own function, and give it unit tests. Now the logic is testable, and a little less fragile too. - Move ipv6_preferred from routerinfo_t to node_t. Addresses bug 4620. - Move last_reachable and testing_since from routerinfo_t to node_t. Implements ticket 5529. - Add replaycache_t structure, functions and unit tests, then refactor rend_service_introduce() to be more clear to read, improve, debug, and test. Resolves bug 6177. o Removed code: - Remove some now-needless code that tried to aggressively flush OR connections as data was added to them. Since 0.2.0.1-alpha, our cell queue logic has saved us from the failure mode that this code was supposed to prevent. Removing this code will limit the number of baroque control flow paths through Tor's network logic. Reported pseudonymously on IRC. Fixes bug 6468; bugfix on 0.2.0.1-alpha. - Remove unused code for parsing v1 directories and "running routers" documents. Fixes bug 6887. - Remove the marshalling/unmarshalling code for sending requests to cpuworkers over a socket, and instead just send structs. The recipient will always be the same Tor binary as the sender, so any encoding is overkill. - Remove the testing_since field of node_t, which hasn't been used for anything since 0.2.0.9-alpha. - Finally remove support for malloc_good_size and malloc_usable_size. We had hoped that these functions would let us eke a little more memory out of our malloc implementation. Unfortunately, the only implementations that provided these functions are also ones that are already efficient about not overallocation: they never got us more than 7 or so bytes per allocation. Removing them saves us a little code complexity and a nontrivial amount of build complexity. Changes in version 0.2.3.25 - 2012-11-19 The Tor 0.2.3 release series is dedicated to the memory of Len "rabbi" Sassaman (1980-2011), a long-time cypherpunk, anonymity researcher, Mixmaster maintainer, Pynchon Gate co-designer, CodeCon organizer, programmer, and friend. Unstinting in his dedication to the cause of freedom, he inspired and helped many of us as we began our work on anonymity, and inspires us still. Please honor his memory by writing software to protect people's freedoms, and by helping others to do so. Tor 0.2.3.25, the first stable release in the 0.2.3 branch, features significantly reduced directory overhead (via microdescriptors), enormous crypto performance improvements for fast relays on new enough hardware, a new v3 TLS handshake protocol that can better resist fingerprinting, support for protocol obfuscation plugins (aka pluggable transports), better scalability for hidden services, IPv6 support for bridges, performance improvements like allowing clients to skip the first round-trip on the circuit ("optimistic data") and refilling token buckets more often, a new "stream isolation" design to isolate different applications on different circuits, and many stability, security, and privacy fixes. Major features (v3 directory protocol): - Clients now use microdescriptors instead of regular descriptors to build circuits. Microdescriptors are authority-generated summaries of regular descriptors' contents, designed to change very rarely (see proposal 158 for details). This feature is designed to save bandwidth, especially for clients on slow internet connections. Use "UseMicrodescriptors 0" to disable it. - Caches now download, cache, and serve microdescriptors, as well as multiple "flavors" of the consensus, including a flavor that describes microdescriptors. o Major features (build hardening): - Enable gcc and ld hardening by default. Resolves ticket 5210. o Major features (relay scaling): - When built to use OpenSSL 1.0.1, and built for an x86 or x86_64 instruction set, take advantage of OpenSSL's AESNI, bitsliced, or vectorized AES implementations as appropriate. These can be much, much faster than other AES implementations. - When using OpenSSL 1.0.0 or later, use OpenSSL's counter mode implementation. It makes AES_CTR about 7% faster than our old one (which was about 10% faster than the one OpenSSL used to provide). Resolves ticket 4526. - Use OpenSSL's EVP interface for AES encryption, so that all AES operations can use hardware acceleration (if present). Resolves ticket 4442. - Unconditionally use OpenSSL's AES implementation instead of our old built-in one. OpenSSL's AES has been better for a while, and relatively few servers should still be on any version of OpenSSL that doesn't have good optimized assembly AES. o Major features (blocking resistance): - Update TLS cipher list to match Firefox 8 and later. Resolves ticket 4744. - Remove support for clients falsely claiming to support standard ciphersuites that they can actually provide. As of modern OpenSSL versions, it's not necessary to fake any standard ciphersuite, and doing so prevents us from using better ciphersuites in the future, since servers can't know whether an advertised ciphersuite is really supported or not. Some hosts -- notably, ones with very old versions of OpenSSL or where OpenSSL has been built with ECC disabled -- will stand out because of this change; TBB users should not be affected. Implements the client side of proposal 198. - Implement a new handshake protocol (v3) for authenticating Tors to each other over TLS. It should be more resistant to fingerprinting than previous protocols, and should require less TLS hacking for future Tor implementations. Implements proposal 176. - Allow variable-length padding cells, to disguise the length of Tor's TLS records. Implements part of proposal 184. - While we're trying to bootstrap, record how many TLS connections fail in each state, and report which states saw the most failures in response to any bootstrap failures. This feature may speed up diagnosis of censorship events. Implements ticket 3116. o Major features (pluggable transports): - Clients and bridges can now be configured to use a separate "transport" proxy. This approach makes the censorship arms race easier by allowing bridges to use protocol obfuscation plugins. Implements proposal 180 (tickets 2841 and 3472). o Major features (DoS resistance): - Now that Tor 0.2.0.x is completely deprecated, enable the final part of "Proposal 110: Avoiding infinite length circuits" by refusing all circuit-extend requests that do not use a relay_early cell. This change helps Tor resist a class of denial-of-service attacks by limiting the maximum circuit length. - Tear down the circuit if we get an unexpected SENDME cell. Clients could use this trick to make their circuits receive cells faster than our flow control would have allowed, or to gum up the network, or possibly to do targeted memory denial-of-service attacks on entry nodes. Fixes bug 6252. Bugfix on the 54th commit on Tor -- from July 2002, before the release of Tor 0.0.0. o Major features (hidden services): - Adjust the number of introduction points that a hidden service will try to maintain based on how long its introduction points remain in use and how many introductions they handle. Fixes part of bug 3825. - Add a "tor2web mode" for clients that want to connect to hidden services non-anonymously (and possibly more quickly). As a safety measure to try to keep users from turning this on without knowing what they are doing, tor2web mode must be explicitly enabled at compile time, and a copy of Tor compiled to run in tor2web mode cannot be used as a normal Tor client. Implements feature 2553. o Major features (IPv6): - Clients can now connect to private bridges over IPv6. Bridges still need at least one IPv4 address in order to connect to other relays. Note that we don't yet handle the case where the user has two bridge lines for the same bridge (one IPv4, one IPv6). Implements parts of proposal 186. o Major features (directory authorities): - Use a more secure consensus parameter voting algorithm. Now at least three directory authorities or a majority of them must vote on a given parameter before it will be included in the consensus. Implements proposal 178. - Remove the artificially low cutoff of 20KB to guarantee the Fast flag. In the past few years the average relay speed has picked up, and while the "top 7/8 of the network get the Fast flag" and "all relays with 20KB or more of capacity get the Fast flag" rules used to have the same result, now the top 7/8 of the network has a capacity more like 32KB. Bugfix on 0.2.1.14-rc. Fixes bug 4489. o Major features (performance): - Exit nodes now accept and queue data on not-yet-connected streams. Previously, the client wasn't allowed to send data until the stream was connected, which slowed down all connections. This change will enable clients to perform a "fast-start" on streams and send data without having to wait for a confirmation that the stream has opened. Patch from Ian Goldberg; implements the server side of Proposal 174. - When using an exit relay running 0.2.3.x, clients can now "optimistically" send data before the exit relay reports that the stream has opened. This saves a round trip when starting connections where the client speaks first (such as web browsing). This behavior is controlled by a consensus parameter (currently disabled). To turn it on or off manually, use the "OptimisticData" torrc option. Implements proposal 181; code by Ian Goldberg. - Add a new TokenBucketRefillInterval option to refill token buckets more frequently than once per second. This should improve network performance, alleviate queueing problems, and make traffic less bursty. Implements proposal 183; closes ticket 3630. Design by Florian Tschorsch and Björn Scheuermann; implementation by Florian Tschorsch. - Raise the threshold of server descriptors needed (75%) and exit server descriptors needed (50%) before we will declare ourselves bootstrapped. This will make clients start building circuits a little later, but makes the initially constructed circuits less skewed and less in conflict with further directory fetches. Fixes ticket 3196. o Major features (relays): - Relays now try regenerating and uploading their descriptor more frequently if they are not listed in the consensus, or if the version of their descriptor listed in the consensus is too old. This fix should prevent situations where a server declines to re-publish itself because it has done so too recently, even though the authorities decided not to list its recent-enough descriptor. Fix for bug 3327. o Major features (stream isolation): - You can now configure Tor so that streams from different applications are isolated on different circuits, to prevent an attacker who sees your streams as they leave an exit node from linking your sessions to one another. To do this, choose some way to distinguish the applications: have them connect to different SocksPorts, or have one of them use SOCKS4 while the other uses SOCKS5, or have them pass different authentication strings to the SOCKS proxy. Then, use the new SocksPort syntax to configure the degree of isolation you need. This implements Proposal 171. - There's a new syntax for specifying multiple client ports (such as SOCKSPort, TransPort, DNSPort, NATDPort): you can now just declare multiple *Port entries with full addr:port syntax on each. The old *ListenAddress format is still supported, but you can't mix it with the new *Port syntax. o Major features (bufferevents): - Tor can now optionally build with the "bufferevents" buffered IO backend provided by Libevent 2. To use this feature, make sure you have the latest possible version of Libevent, and pass the --enable-bufferevents flag to configure when building Tor from source. This feature will make our networking code more flexible, let us stack layers on each other, and let us use more efficient zero-copy transports where available. - Add experimental support for running on Windows with IOCP and no kernel-space socket buffers. This feature is controlled by a new "UserspaceIOCPBuffers" config option (off by default), which has no effect unless Tor has been built with bufferevents enabled, you're running on Windows, and you've set "DisableIOCP 0". In the long run, this may help solve or mitigate bug 98. o Major features (path selection): - The EntryNodes option can now include country codes like {de} or IP addresses or network masks. Previously we had disallowed these options because we didn't have an efficient way to keep the list up to date. Addresses ticket 1982, but see bug 2798 for an unresolved issue here. o Major features (port forwarding): - Add support for automatic port mapping on the many home routers that support NAT-PMP or UPnP. To build the support code, you'll need to have the libnatpnp library and/or the libminiupnpc library, and you'll need to enable the feature specifically by passing "--enable-upnp" and/or "--enable-natpnp" to ./configure. To turn it on, use the new PortForwarding option. o Major features (logging): - Add a new 'Heartbeat' log message type to periodically log a message describing Tor's status at level Notice. This feature is meant for operators who log at notice, and want to make sure that their Tor server is still working. Implementation by George Kadianakis. - Make logging resolution configurable with a new LogTimeGranularity option, and change the default from 1 millisecond to 1 second. Implements enhancement 1668. o Major features (other): - New "DisableNetwork" config option to prevent Tor from launching any connections or accepting any connections except on a control port. Bundles and controllers can set this option before letting Tor talk to the rest of the network, for example to prevent any connections to a non-bridge address. Packages like Orbot can also use this option to instruct Tor to save power when the network is off. - Try to use system facilities for enumerating local interface addresses, before falling back to our old approach (which was binding a UDP socket, and calling getsockname() on it). That approach was scaring OS X users whose draconian firewall software warned about binding to UDP sockets regardless of whether packets were sent. Now we try to use getifaddrs(), SIOCGIFCONF, or GetAdaptersAddresses(), depending on what the system supports. Resolves ticket 1827. - Add experimental support for a "defaults" torrc file to be parsed before the regular torrc. Torrc options override the defaults file's options in the same way that the command line overrides the torrc. The SAVECONF controller command saves only those options which differ between the current configuration and the defaults file. HUP reloads both files. Implements task 4552. o New directory authorities: - Add Faravahar (run by Sina Rabbani) as the ninth v3 directory authority. Closes ticket 5749. o Security/privacy fixes: - Avoid read-from-freed-memory and double-free bugs that could occur when a DNS request fails while launching it. Fixes bug 6480; bugfix on 0.2.0.1-alpha. - Reject any attempt to extend to an internal address. Without this fix, a router could be used to probe addresses on an internal network to see whether they were accepting connections. Fixes bug 6710; bugfix on 0.0.8pre1. - Close any connection that sends unrecognized junk before the TLS handshake. Solves an issue noted in bug 4369. - The advertised platform of a relay now includes only its operating system's name (e.g., "Linux", "Darwin", "Windows 7"), and not its service pack level (for Windows) or its CPU architecture (for Unix). Also drop the "git-XYZ" tag in the version. Packagers can insert an extra string in the platform line by setting the preprocessor variable TOR_BUILD_TAG. Resolves bug 2988. - Disable TLS session tickets. OpenSSL's implementation was giving our TLS session keys the lifetime of our TLS context objects, when perfect forward secrecy would want us to discard anything that could decrypt a link connection as soon as the link connection was closed. Fixes bug 7139; bugfix on all versions of Tor linked against OpenSSL 1.0.0 or later. Found by Florent Daignière. - Tor tries to wipe potentially sensitive data after using it, so that if some subsequent security failure exposes Tor's memory, the damage will be limited. But we had a bug where the compiler was eliminating these wipe operations when it decided that the memory was no longer visible to a (correctly running) program, hence defeating our attempt at defense in depth. We fix that by using OpenSSL's OPENSSL_cleanse() operation, which a compiler is unlikely to optimize away. Future versions of Tor may use a less ridiculously heavy approach for this. Fixes bug 7352. Reported in an article by Andrey Karpov. o Major bugfixes (crashes and asserts): - Avoid a pair of double-free and use-after-mark bugs that can occur with certain timings in canceled and re-received DNS requests. Fixes bug 6472; bugfix on 0.0.7rc1. - Fix a denial of service attack by which any directory authority could crash all the others, or by which a single v2 directory authority could crash everybody downloading v2 directory information. Fixes bug 7191; bugfix on 0.2.0.10-alpha. - Fix an assert that directory authorities could trigger on sighup during some configuration state transitions. We now don't treat it as a fatal error when the new descriptor we just generated in init_keys() isn't accepted. Fixes bug 4438; bugfix on 0.2.1.9-alpha. - Avoid segfault when starting up having run with an extremely old version of Tor and parsing its state file. Fixes bug 6801; bugfix on 0.2.2.23-alpha. o Major bugfixes (clients): - If we are unable to find any exit that supports our predicted ports, stop calling them predicted, so that we don't loop and build hopeless circuits indefinitely. Fixes bug 3296; bugfix on 0.0.9pre6, which introduced predicted ports. - Check at each new consensus whether our entry guards were picked long enough ago that we should rotate them. Previously, we only did this check at startup, which could lead to us holding a guard indefinitely. Fixes bug 5380; bugfix on 0.2.1.14-rc. - When fetching a bridge descriptor from a bridge authority, always do so anonymously, whether we have been able to open circuits or not. Partial fix for bug 1938; bugfix on 0.2.0.7-alpha. This behavior makes it *safer* to use UpdateBridgesFromAuthority, but we'll need to wait for bug 6010 before it's actually usable. o Major bugfixes (directory voting): - Check more thoroughly to prevent a rogue authority from double-voting on any consensus directory parameter. Previously, authorities would crash in this case if the total number of votes for any parameter exceeded the number of active voters, but would let it pass otherwise. Partially fixes bug 5786; bugfix on 0.2.2.2-alpha. - When computing weight parameters, behave more robustly in the presence of a bad bwweightscale value. Previously, the authorities would crash if they agreed on a sufficiently broken weight_scale value; now, they use a reasonable default and carry on. Fixes the rest of bug 5786; bugfix on 0.2.2.17-alpha. - If authorities are unable to get a v2 consensus document from other directory authorities, they no longer fall back to fetching them from regular directory caches. Fixes bug 5635; bugfix on 0.2.2.26-beta, where routers stopped downloading v2 consensus documents entirely. o Major bugfixes (relays): - Fix a bug handling SENDME cells on nonexistent streams that could result in bizarre window values. Report and patch contributed pseudonymously. Fixes part of bug 6271. This bug was introduced before the first Tor release, in svn commit r152. - Don't update the AccountingSoftLimitHitAt state file entry whenever tor gets started. This prevents a wrong average bandwidth estimate, which would cause relays to always start a new accounting interval at the earliest possible moment. Fixes bug 2003; bugfix on 0.2.2.7-alpha. Reported by Bryon Eldridge, who also helped immensely in tracking this bug down. - Fix a possible crash bug when checking for deactivated circuits in connection_or_flush_from_first_active_circuit(). Fixes bug 6341; bugfix on 0.2.2.7-alpha. Bug report and fix received pseudonymously. - Set the SO_REUSEADDR socket option before we call bind() on outgoing connections. This change should allow busy exit relays to stop running out of available sockets as quickly. Fixes bug 4950; bugfix on 0.2.2.26-beta. o Major bugfixes (blocking resistance): - Bridges no longer include their address in NETINFO cells on outgoing OR connections, to allow them to blend in better with clients. Removes another avenue for enumerating bridges. Reported by "troll_un". Fixes bug 4348; bugfix on 0.2.0.10-alpha, when NETINFO cells were introduced. - Warn the user when HTTPProxy, but no other proxy type, is configured. This can cause surprising behavior: it doesn't send all of Tor's traffic over the HTTPProxy -- it sends unencrypted directory traffic only. Resolves ticket 4663. o Major bugfixes (hidden services): - Improve hidden service robustness: when an attempt to connect to a hidden service ends, be willing to refetch its hidden service descriptors from each of the HSDir relays responsible for them immediately. Previously, we would not consider refetching the service's descriptors from each HSDir for 15 minutes after the last fetch, which was inconvenient if the hidden service was not running during the first attempt. Bugfix on 0.2.0.18-alpha; fixes bug 3335. - Hidden services now ignore the timestamps on INTRODUCE2 cells. They used to check that the timestamp was within 30 minutes of their system clock, so they could cap the size of their replay-detection cache, but that approach unnecessarily refused service to clients with wrong clocks. Bugfix on 0.2.1.6-alpha, when the v3 intro-point protocol (the first one which sent a timestamp field in the INTRODUCE2 cell) was introduced; fixes bug 3460. - When one of a hidden service's introduction points appears to be unreachable, stop trying it. Previously, we would keep trying to build circuits to the introduction point until we lost the descriptor, usually because the user gave up and restarted Tor. Fixes part of bug 3825. o Changes to default torrc file: - Stop listing "socksport 9050" in torrc.sample. We open a socks port on 9050 by default anyway, so this should not change anything in practice. - Stop mentioning the deprecated *ListenAddress options in torrc.sample. Fixes bug 5438. - Document unit of bandwidth-related options in sample torrc. Fixes bug 5621. - Fix broken URLs in the sample torrc file, and tell readers about the OutboundBindAddress, ExitPolicyRejectPrivate, and PublishServerDescriptor options. Addresses bug 4652. o Minor features (directory authorities): - Consider new, removed or changed IPv6 OR ports a non-cosmetic change when the authority is deciding whether to accept a newly uploaded descriptor. Implements ticket 6423. - Directory authorities are now a little more lenient at accepting older router descriptors, or newer router descriptors that don't make big changes. This should help ameliorate past and future issues where routers think they have uploaded valid descriptors, but the authorities don't think so. Fix for ticket 2479. - Authority operators can now vote for all relays in a given set of countries to be BadDir/BadExit/Invalid/Rejected. - Provide two consensus parameters (FastFlagMinThreshold and FastFlagMaxThreshold) to control the range of allowable bandwidths for the Fast directory flag. These allow authorities to run experiments on appropriate requirements for being a "Fast" node. The AuthDirFastGuarantee config value still applies. Implements ticket 3946. o Minor features (bridges / bridge authorities): - Make bridge SSL certificates a bit more stealthy by using random serial numbers, in the same fashion as OpenSSL when generating self-signed certificates. Implements ticket 4584. - Tag a bridge's descriptor as "never to be sent unencrypted". This shouldn't matter, since bridges don't open non-anonymous connections to the bridge authority and don't allow unencrypted directory connections from clients, but we might as well make sure. Closes bug 5139. - The Bridge Authority now writes statistics on how many bridge descriptors it gave out in total, and how many unique descriptors it gave out. It also lists how often the most and least commonly fetched descriptors were given out, as well as the median and 25th/75th percentile. Implements tickets 4200 and 4294. o Minor features (IPv6): - Make the code that clients use to detect an address change be IPv6-aware, so that it won't fill clients' logs with error messages when trying to get the IPv4 address of an IPv6 connection. Implements ticket 5537. - Relays now understand an IPv6 address when they get one from a directory server. Resolves ticket 4875. o Minor features (hidden services): - Expire old or over-used hidden service introduction points. Required by fix for bug 3460. - Reduce the lifetime of elements of hidden services' Diffie-Hellman public key replay-detection cache from 60 minutes to 5 minutes. This replay-detection cache is now used only to detect multiple INTRODUCE2 cells specifying the same rendezvous point, so we can avoid launching multiple simultaneous attempts to connect to it. - When a hidden service's introduction point times out, consider trying it again during the next attempt to connect to the HS. Previously, we would not try it again unless a newly fetched descriptor contained it. Required by fixes for bugs 1297 and 3825. o Minor features (relays): - Relays now include a reason for regenerating their descriptors in an HTTP header when uploading to the authorities. This will make it easier to debug descriptor-upload issues in the future. - Turn on directory request statistics by default and include them in extra-info descriptors. Don't break if we have no GeoIP database. - Replace files in stats/ rather than appending to them. Now that we include statistics in extra-info descriptors, it makes no sense to keep old statistics forever. Implements ticket 2930. - Relays that set "ConnDirectionStatistics 1" write statistics on the bidirectional use of connections to disk every 24 hours. - Add a GeoIP file digest to the extra-info descriptor. Implements ticket 1883. o Minor features (new config options): - New config option "DynamicDHGroups" (disabled by default) provides each bridge with a unique prime DH modulus to be used during SSL handshakes. This option attempts to help against censors who might use the Apache DH modulus as a static identifier for bridges. Addresses ticket 4548. - New config option "DisableDebuggerAttachment" (on by default) to prevent basic debugging attachment attempts by other processes. Supports Mac OS X and Gnu/Linux. Resolves ticket 3313. - Ordinarily, Tor does not count traffic from private addresses (like 127.0.0.1 or 10.0.0.1) when calculating rate limits or accounting. There is now a new option, CountPrivateBandwidth, to disable this behavior. Patch from Daniel Cagara. o Minor features (different behavior for old config options): - Allow MapAddress directives to specify matches against super-domains, as in "MapAddress *.torproject.org *.torproject.org.torserver.exit". Implements issue 933. - Don't disable the DirPort when we cannot exceed our AccountingMax limit during this interval because the effective bandwidthrate is low enough. This is useful in a situation where AccountMax is only used as an additional safeguard or to provide statistics. - Add port 6523 (Gobby) to LongLivedPorts. Patch by intrigeri; implements ticket 3439. - When configuring a large set of nodes in EntryNodes, and there are enough of them listed as Guard so that we don't need to consider the non-guard entries, prefer the ones listed with the Guard flag. - If you set the NumCPUs option to 0, Tor will now try to detect how many CPUs you have. This is the new default behavior. - The NodeFamily option -- which let you declare that you want to consider nodes to be part of a family whether they list themselves that way or not -- now allows IP address ranges and country codes. o Minor features (new command-line config behavior): - Slightly change behavior of "list" options (that is, config options that can appear more than once) when they appear both in torrc and on the command line. Previously, the command-line options would be appended to the ones from torrc. Now, the command-line options override the torrc options entirely. This new behavior allows the user to override list options (like exit policies and ports to listen on) from the command line, rather than simply appending to the list. - You can get the old (appending) command-line behavior for "list" options by prefixing the option name with a "+". - You can remove all the values for a "list" option from the command line without adding any new ones by prefixing the option name with a "/". o Minor features (controller, new events): - Extend the control protocol to report flags that control a circuit's path selection in CIRC events and in replies to 'GETINFO circuit-status'. Implements part of ticket 2411. - Extend the control protocol to report the hidden service address and current state of a hidden-service-related circuit in CIRC events and in replies to 'GETINFO circuit-status'. Implements part of ticket 2411. - Include the creation time of a circuit in CIRC and CIRC2 control-port events and the list produced by the 'GETINFO circuit-status' control-port command. - Add a new CONF_CHANGED event so that controllers can be notified of any configuration changes made by other controllers, or by the user. Implements ticket 1692. - Add a new SIGNAL event to the controller interface so that controllers can be notified when Tor handles a signal. Resolves issue 1955. Patch by John Brooks. o Minor features (controller, new getinfo options): - Expose our view of whether we have gone dormant to the controller, via a new "GETINFO dormant" value. Torbutton and other controllers can use this to avoid doing periodic requests through Tor while it's dormant (bug 4718). Resolves ticket 5954. - Add a new GETINFO option to get total bytes read and written. Patch from pipe, revised by atagar. Resolves ticket 2345. - Implement new GETINFO controller fields to provide information about the Tor process's pid, euid, username, and resource limits. o Minor features (controller, other): - Allow controllers to request an event notification whenever a circuit is cannibalized or its purpose is changed. Implements part of ticket 3457. - Use absolute path names when reporting the torrc filename in the control protocol, so a controller can more easily find the torrc file. Resolves bug 1101. - When reporting the path to the cookie file to the controller, give an absolute path. Resolves ticket 4881. o Minor features (log messages): - Add more information to a log statement that might help track down bug 4091. If you're seeing "Bug: tor_addr_is_internal() called with a non-IP address" messages (or any Bug messages, for that matter!), please let us know about it. - If EntryNodes are given, but UseEntryGuards is set to 0, warn that EntryNodes will have no effect. Resolves issue 2571. - Try to make the introductory warning message that Tor prints on startup more useful for actually finding help and information. Resolves ticket 2474. - When the system call to create a listener socket fails, log the error message explaining why. This may help diagnose bug 4027. o Minor features (other): - When we fail to initialize Libevent, retry with IOCP disabled so we don't need to turn on multi-threading support in Libevent, which in turn requires a working socketpair(). This is a workaround for bug 4457, which affects Libevent versions from 2.0.1-alpha through 2.0.15-stable. - When starting as root and then changing our UID via the User control option, and we have a ControlSocket configured, make sure that the ControlSocket is owned by the same account that Tor will run under. Implements ticket 3421; fix by Jérémy Bobbio. - Accept attempts to include a password authenticator in the handshake, as supported by SOCKS5. This handles SOCKS clients that don't know how to omit a password when authenticating. Resolves bug 1666. - Check for and recover from inconsistency in the microdescriptor cache. This will make it harder for us to accidentally free a microdescriptor without removing it from the appropriate data structures. Fixes issue 3135; issue noted by "wanoskarnet". - Shorten links in the tor-exit-notice file. Patch by Christian Kujau. o Minor bugfixes (code security): - Prevent a null-pointer dereference when receiving a data cell for a nonexistent stream when the circuit in question has an empty deliver window. We don't believe this is triggerable, since we don't currently allow deliver windows to become empty, but the logic is tricky enough that it's better to make the code robust. Fixes bug 5541; bugfix on 0.0.2pre14. - Fix a (harmless) integer overflow in cell statistics reported by some fast relays. Fixes bug 5849; bugfix on 0.2.2.1-alpha. - Fix our implementation of crypto_random_hostname() so it can't overflow on ridiculously large inputs. (No Tor version has ever provided this kind of bad inputs, but let's be correct in depth.) Fixes bug 4413; bugfix on 0.2.2.9-alpha. Fix by Stephen Palmateer. - Add a (probably redundant) memory clear between iterations of the router status voting loop, to prevent future coding errors where data might leak between iterations of the loop. Resolves ticket 6514. o Minor bugfixes (wrapper functions): - Abort if tor_vasprintf() fails in connection_printf_to_buf() (a utility function used in the control-port code). This shouldn't ever happen unless Tor is completely out of memory, but if it did happen and Tor somehow recovered from it, Tor could have sent a log message to a control port in the middle of a reply to a controller command. Fixes part of bug 3428; bugfix on 0.1.2.3-alpha. - Fix some (not actually triggerable) buffer size checks in usage of tor_inet_ntop(). Fixes bug 4434; bugfix on Tor 0.2.0.1-alpha. Patch by Anders Sundman. - Fix parsing of some corner-cases with tor_inet_pton(). Fixes bug 4515; bugfix on 0.2.0.1-alpha; fix by Anders Sundman. - Enforce correct return behavior of tor_vsscanf() when the '%%' pattern is used. Fixes bug 5558. Bugfix on 0.2.1.13. - Make our replacement implementation of strtok_r() compatible with the standard behavior of strtok_r(). Patch by nils. Fixes bug 5091; bugfix on 0.2.2.1-alpha. - Find more places in the code that should have been testing for invalid sockets using the SOCKET_OK macro. Required for a fix for bug 4533. Bugfix on 0.2.2.28-beta. o Minor bugfixes (code correctness): - Check return value of fputs() when writing authority certificate file. Fixes Coverity issue 709056; bugfix on 0.2.0.1-alpha. - When building Tor on Windows with -DUNICODE (not default), ensure that error messages, filenames, and DNS server names are always NUL-terminated when we convert them to a single-byte encoding. Fixes bug 5909; bugfix on 0.2.2.16-alpha. - Fix a memory leak when trying to launch a DNS request when the nameservers are unconfigurable. Fixes bug 5916; bugfix on Tor 0.1.2.1-alpha. - Correct file sizes when reading binary files on Cygwin, to avoid a bug where Tor would fail to read its state file. Fixes bug 6844; bugfix on 0.1.2.7-alpha. - Make sure to set *socket_error in all error cases in connection_connect(), so it can't produce a warning about errno being zero from errno_to_orconn_end_reason(). Bugfix on 0.2.1.1-alpha; resolves ticket 6028. - Initialize conn->addr to a valid state in spawn_cpuworker(). Fixes bug 4532; found by "troll_un". o Minor bugfixes (clients): - Allow one-hop directory-fetching circuits the full "circuit build timeout" period, rather than just half of it, before failing them and marking the relay down. This fix should help reduce cases where clients declare relays (or worse, bridges) unreachable because the TLS handshake takes a few seconds to complete. Fixes bug 6743; bugfix on 0.2.2.2-alpha, where we changed the timeout from a static 30 seconds. - Ensure we don't cannibalize circuits that are longer than three hops already, so we don't end up making circuits with 5 or more hops. Patch contributed by wanoskarnet. Fixes bug 5231; bugfix on 0.1.0.1-rc which introduced cannibalization. o Minor bugfixes (relays): - Don't publish a new relay descriptor when we reload our onion key, unless the onion key has actually changed. Fixes bug 3263 and resolves another cause of bug 1810. Bugfix on 0.1.1.11-alpha. - When relays refuse a "create" cell because their queue of pending create cells is too big (typically because their cpu can't keep up with the arrival rate), send back reason "resource limit" rather than reason "internal", so network measurement scripts can get a more accurate picture. Bugfix on 0.1.1.11-alpha; fixes bug 7037. - Exit nodes don't need to fetch certificates for authorities that they don't recognize; only directory authorities, bridges, and caches need to do that. Fixes part of bug 2297; bugfix on 0.2.2.11-alpha. o Minor bugfixes (directory authority / mirrors): - Avoid O(n^2) performance characteristics when parsing a large extrainfo cache. Fixes bug 5828; bugfix on 0.2.0.1-alpha. - Authorities no longer include any router in their microdescriptor consensuses for which they couldn't generate or agree on a microdescriptor. Fixes the second piece of bug 6404; fix on 0.2.2.6-alpha. - When checking for requested signatures on the latest consensus before serving it to a client, make sure to check the right consensus flavor. Bugfix on 0.2.2.6-alpha. - Fix an edge case where TestingTorNetwork is set but the authorities and relays all have an uptime of zero, so the private Tor network could briefly lack support for hidden services. Fixes bug 3886; bugfix on 0.2.2.18-alpha. - Directory caches no longer refuse to clean out descriptors because of missing v2 networkstatus documents, unless they're configured to retrieve v2 networkstatus documents. Fixes bug 4838; bugfix on 0.2.2.26-beta. Patch by Daniel Bryg. - Don't serve or accept v2 hidden service descriptors over a relay's DirPort. It's never correct to do so, and disabling it might make it more annoying to exploit any bugs that turn up in the descriptor-parsing code. Fixes bug 7149. o Minor bugfixes (hidden services, client-side): - Assert that hidden-service-related operations are not performed using single-hop circuits. Previously, Tor would assert that client-side streams are not attached to single-hop circuits, but not that other sensitive operations on the client and service side are not performed using single-hop circuits. Fixes bug 3332; bugfix on 0.0.6. - Avoid undefined behavior when parsing the list of supported rendezvous/introduction protocols in a hidden service descriptor. Previously, Tor would have confused (as-yet-unused) protocol version numbers greater than 32 with lower ones on many platforms. Fixes bug 6827; bugfix on 0.2.0.10-alpha. Found by George Kadianakis. - Don't close hidden service client circuits which have almost finished connecting to their destination when they reach the normal circuit-build timeout. Previously, we would close introduction circuits which are waiting for an acknowledgement from the introduction point, and rendezvous circuits which have been specified in an INTRODUCE1 cell sent to a hidden service, after the normal CBT. Now, we mark them as 'timed out', and launch another rendezvous attempt in parallel. This behavior change can be disabled using the new CloseHSClientCircuitsImmediatelyOnTimeout option. Fixes part of bug 1297; bugfix on 0.2.2.2-alpha. o Minor bugfixes (hidden services, service-side): - Don't close hidden-service-side rendezvous circuits when they reach the normal circuit-build timeout. This behavior change can be disabled using the new CloseHSServiceRendCircuitsImmediatelyOnTimeout option. Fixes the remaining part of bug 1297; bugfix on 0.2.2.2-alpha. - Don't launch more than 10 service-side introduction-point circuits for a hidden service in five minutes. Previously, we would consider launching more introduction-point circuits if at least one second had passed without any introduction-point circuits failing. Fixes bug 4607; bugfix on 0.0.7pre1. o Minor bugfixes (config option behavior): - If the user tries to set MyFamily on a bridge, refuse to do so, and warn about the security implications. Fixes bug 4657; bugfix on 0.2.0.3-alpha. - The "--quiet" and "--hush" options now apply not only to Tor's behavior before logs are configured, but also to Tor's behavior in the absense of configured logs. Fixes bug 3550; bugfix on 0.2.0.10-alpha. - Change the AllowDotExit rules so they should actually work. We now enforce AllowDotExit only immediately after receiving an address via SOCKS or DNSPort: other sources are free to provide .exit addresses after the resolution occurs. Fixes bug 3940; bugfix on 0.2.2.1-alpha. - Make "LearnCircuitBuildTimeout 0" work more reliably. Specifically, don't depend on the consensus parameters or compute adaptive timeouts when it is disabled. Fixes bug 5049; bugfix on 0.2.2.14-alpha. - After we pick a directory mirror, we would refuse to use it if it's in our ExcludeExitNodes list, resulting in mysterious failures to bootstrap for people who just wanted to avoid exiting from certain locations. Fixes bug 5623; bugfix on 0.2.2.25-alpha. - When told to add a bridge with the same digest as a preexisting bridge but a different addr:port, change the addr:port as requested. Previously we would not notice the change. Fixes half of bug 5603; fix on 0.2.2.26-beta. o Minor bugfixes (controller): - Allow manual 'authenticate' commands to the controller interface from netcat (nc) as well as telnet. We were rejecting them because they didn't come with the expected whitespace at the end of the command. Bugfix on 0.1.1.1-alpha; fixes bug 2893. - Report a real bootstrap problem to the controller on router identity mismatch. Previously we just said "foo", which probably made a lot of sense at the time. Fixes bug 4169; bugfix on 0.2.1.1-alpha. - When we receive a SIGHUP and the controller __ReloadTorrcOnSIGHUP option is set to 0 (which Vidalia version 0.2.16 now does when a SAVECONF attempt fails), perform other actions that SIGHUP usually causes (like reopening the logs). Fixes bug 5095; bugfix on 0.2.1.9-alpha. - Correctly handle checking the permissions on the parent directory of a control socket in the root directory. Bug found by Esteban Manchado Velázquez. Fixes bug 5089; bugfix on Tor 0.2.2.26-beta. - End AUTHCHALLENGE error messages (in the control protocol) with a CRLF. Fixes bug 5760; bugfix on 0.2.2.36. o Minor bugfixes (network reading/writing): - Disable writing on marked-for-close connections when they are blocked on bandwidth, to prevent busy-looping in Libevent. Fixes bug 5263; bugfix on 0.0.2pre13, where we first added a special case for flushing marked connections. - Make sure that there are no unhandled pending TLS errors before reading from a TLS stream. We had checks in 0.1.0.3-rc, but lost them in 0.1.0.5-rc when we refactored read_to_buf_tls(). Bugfix on 0.1.0.5-rc; fixes bug 4528. - Detect SSL handshake even when the initial attempt to write the server hello fails. Fixes bug 4592; bugfix on 0.2.0.13-alpha. - If the client fails to set a reasonable set of ciphersuites during its v2 handshake renegotiation, allow the renegotiation to continue nevertheless (i.e. send all the required certificates). Fixes bug 4591; bugfix on 0.2.0.20-rc. o Minor bugfixes (other): - Exit nodes now correctly report EADDRINUSE and EADDRNOTAVAIL as resource exhaustion, so that clients can adjust their load to try other exits. Fixes bug 4710; bugfix on 0.1.0.1-rc, which started using END_STREAM_REASON_RESOURCELIMIT. - Don't check for whether the address we're using for outbound connections has changed until after the outbound connection has completed. On Windows, getsockname() doesn't succeed until the connection is finished. Fixes bug 5374; bugfix on 0.1.1.14-alpha. - Don't hold a Windows file handle open for every file mapping; the file mapping handle is sufficient. Fixes bug 5951; bugfix on 0.1.2.1-alpha. - Fix wrong TCP port range in parse_port_range(). Fixes bug 6218; bugfix on 0.2.1.10-alpha. - If we fail to write a microdescriptor to the disk cache, do not continue replacing the old microdescriptor file. Fixes bug 2954; bugfix on 0.2.2.6-alpha. o Minor bugfixes (log messages, path selection): - Downgrade "set buildtimeout to low value" messages to "info" severity; they were never an actual problem, there was never anything reasonable to do about them, and they tended to spam logs from time to time. Fixes bug 6251; bugfix on 0.2.2.2-alpha. - Rate-limit the "Weighted bandwidth is 0.000000" message, and add more information to it, so that we can track it down in case it returns again. Mitigates bug 5235. - Check CircuitBuildTimeout and LearnCircuitBuildTimeout in options_validate(); warn if LearnCircuitBuildTimeout is disabled and CircuitBuildTimeout is set unreasonably low. Resolves ticket 5452. - Issue a log message if a guard completes less than 40% of your circuits. Threshold is configurable by torrc option PathBiasNoticeRate and consensus parameter pb_noticepct. There is additional, off-by-default code to disable guards which fail too many circuits. Addresses ticket 5458. o Minor bugfixes (log messages, client): - Downgrade "Got a certificate, but we already have it" log messages from warning to info, except when we're a dirauth. Fixes bug 5238; bugfix on 0.2.1.7-alpha. - Fix the log message describing how we work around discovering that our version is the ill-fated OpenSSL 0.9.8l. Fixes bug 4837; bugfix on 0.2.2.9-alpha. - When logging about a disallowed .exit name, do not also call it an "invalid onion address". Fixes bug 3325; bugfix on 0.2.2.9-alpha. - Fix a log message suggesting that people contact a non-existent email address. Fixes bug 3448. - Rephrase the log message emitted if the TestSocks check is successful. Patch from Fabian Keil; fixes bug 4094. - Log (at debug level) whenever a circuit's purpose is changed. - Log SSL state transitions at log level DEBUG, log domain HANDSHAKE. This can be useful for debugging censorship events. Implements ticket 3264. - We now log which torrc file we're using on startup. Implements ticket 2444. - Rate-limit log messages when asked to connect anonymously to a private address. When these hit, they tended to hit fast and often. Also, don't bother trying to connect to addresses that we are sure will resolve to 127.0.0.1: getting 127.0.0.1 in a directory reply makes us think we have been lied to, even when the address the client tried to connect to was "localhost." Resolves ticket 2822. o Minor bugfixes (log messages, non-client): - Downgrade "eventdns rejected address" message to LOG_PROTOCOL_WARN. Fixes bug 5932; bugfix on 0.2.2.7-alpha. - Don't log that we have "decided to publish new relay descriptor" unless we are actually publishing a descriptor. Fixes bug 3942; bugfix on 0.2.2.28-beta. - Log which authority we're missing votes from when we go to fetch them from the other auths. - Replace "Sending publish request" log messages with "Launching upload", so that they no longer confusingly imply that we're sending something to a directory we might not even be connected to yet. Fixes bug 3311; bugfix on 0.2.0.10-alpha. - Warn when Tor is configured to use accounting in a way that can link a hidden service to some other hidden service or public address. Resolves ticket 6490. - Fix a minor formatting issue in one of tor-gencert's error messages. Fixes bug 4574. o Testing: - Update to the latest version of the tinytest unit testing framework. This includes a couple of bugfixes that can be relevant for running forked unit tests on Windows, and removes all reserved identifiers. - Avoid a false positive in the util/threads unit test by increasing the maximum timeout time. Fixes bug 6227; bugfix on 0.2.0.4-alpha. - Make it possible to set the TestingTorNetwork configuration option using AlternateDirAuthority and AlternateBridgeAuthority as an alternative to setting DirServer. Addresses ticket 6377. - Add a unit test for the environment_variable_names_equal() function. - A wide variety of new unit tests by Esteban Manchado Velázquez. - Numerous new unit tests for functions in util.c and address.c by Anders Sundman. - The long-disabled benchmark tests are now split into their own ./src/test/bench binary. - The benchmark tests can now use more accurate timers than gettimeofday() when such timers are available. - Use tt_assert(), not tor_assert(), for checking for test failures. This makes the unit tests more able to go on in the event that one of them fails. o Build improvements: - Use the dead_strip option when building Tor on OS X. This reduces binary size by almost 19% when linking openssl and libevent statically, which we do for Tor Browser Bundle. - Provide a better error message about possible OSX Asciidoc failure reasons. Fixes bug 6436. - Detect attempts to build Tor on (as yet hypothetical) versions of Windows where sizeof(intptr_t) != sizeof(SOCKET). Partial fix for bug 4533. Bugfix on 0.2.2.28-beta. - On Windows, we now define the _WIN32_WINNT macros only if they are not already defined. This lets the person building Tor decide, if they want, to require a later version of Windows. - Our autogen.sh script now uses autoreconf to launch autoconf, automake, and so on. This is more robust against some of the failure modes associated with running the autotools pieces on their own. - Running "make version" now displays the version of Tor that we're about to build. Idea from katmagic; resolves issue 4400. - Make 'tor --digests' list hashes of all Tor source files. Bugfix on 0.2.2.4-alpha; fixes bug 3427. - New --enable-static-tor configure option for building Tor as statically as possible. Idea, general hackery and thoughts from Alexei Czeskis, John Gilmore, Jacob Appelbaum. Implements ticket 2702. - Limited, experimental support for building with nmake and MSVC. o Build requirements: - Building Tor with bufferevent support now requires Libevent 2.0.13-stable or later. Previous versions of Libevent had bugs in SSL-related bufferevents and related issues that would make Tor work badly with bufferevents. Requiring 2.0.13-stable also allows Tor with bufferevents to take advantage of Libevent APIs introduced after 2.0.8-rc. - Our build system requires automake 1.6 or later to create the Makefile.in files. Previously, you could have used 1.4. This only affects developers and people building Tor from git; people who build Tor from the source distribution without changing the Makefile.am files should be fine. - Detect when we try to build on a platform that doesn't define AF_UNSPEC to 0. We don't work there, so refuse to compile. o Build fixes (compile/link): - Format more doubles with %f, not %lf. Patch from grarpamp to make Tor build correctly on older BSDs again. Fixes bug 3894; bugfix on Tor 0.2.0.8-alpha. - When building with --enable-static-tor on OpenBSD, do not erroneously attempt to link -lrt. Fixes bug 5103. - Set _WIN32_WINNT to 0x0501 consistently throughout the code, so that IPv6 stuff will compile on MSVC, and compilation issues will be easier to track down. Fixes bug 5861. - Fix build and 64-bit compile warnings from --enable-openbsd-malloc. Fixes bug 6379. Bugfix on 0.2.0.20-rc. - Make Tor build correctly again with -DUNICODE -D_UNICODE defined. Fixes bug 6097; bugfix on 0.2.2.16-alpha. o Build fixes (other): - Use the _WIN32 macro throughout our code to detect Windows. (Previously we had used the obsolete 'WIN32' and the idiosyncratic 'MS_WINDOWS'.) - Properly handle the case where the build-tree is not the same as the source tree when generating src/common/common_sha1.i, src/or/micro-revision.i, and src/or/or_sha1.i. Fixes bug 3953; bugfix on 0.2.0.1-alpha. - During configure, search for library containing cos function as libm lives in libcore on some platforms (BeOS/Haiku). Linking against libm was hard-coded before. Fixes the first part of bug 4727; bugfix on 0.2.2.2-alpha. Patch and analysis by Martin Hebnes Pedersen. - Prevent a false positive from the check-spaces script, by disabling the "whitespace between function name and (" check for functions named 'op()'. o Packaging (RPM) changes: - Update our default RPM spec files to work with mock and rpmbuild on RHEL/Fedora. They have an updated set of dependencies and conflicts, a fix for an ancient typo when creating the "_tor" user, and better instructions. Thanks to Ondrej Mikle for the patch series. Fixes bug 6043. - On OpenSUSE, create the /var/run/tor directory on startup if it is not already created. Patch from Andreas Stieger. Fixes bug 2573. o Code refactoring (safety): - Do not use SMARTLIST_FOREACH for any loop whose body exceeds 10 lines. Also, don't nest them. Doing so in the past has led to hard-to-debug code. The new style is to use the SMARTLIST_FOREACH_{BEGIN,END} pair. Addresses issue 6400. - Use macros to indicate OpenSSL versions, so we don't need to worry about accidental hexadecimal bit shifts. - Use tor_sscanf() in place of scanf() in more places through the code. This makes us a little more locale-independent, and should help shut up code-analysis tools that can't tell a safe sscanf string from a dangerous one. - Convert more instances of tor_snprintf+tor_strdup into tor_asprintf. - Use the smartlist_add_asprintf() alias more consistently. o Code refactoring (consolidate): - A major revision to our internal node-selecting and listing logic. Tor already had at least two major ways to look at the question of "which Tor servers do we know about": a list of router descriptors, and a list of entries in the current consensus. With microdescriptors, we're adding a third. Having so many systems without an abstraction layer over them was hurting the codebase. Now, we have a new "node_t" abstraction that presents a consistent interface to a client's view of a Tor node, and holds (nearly) all of the mutable state formerly in routerinfo_t and routerstatus_t. - Move tor_gettimeofday_cached() into compat_libevent.c, and use Libevent's notion of cached time when possible. - Remove duplicate code for invoking getrlimit() from control.c. - Use OpenSSL's built-in SSL_state_string_long() instead of our own homebrewed ssl_state_to_string() replacement. Patch from Emile Snyder. Fixes bug 4653. - Change the symmetric cipher interface so that creating and initializing a stream cipher are no longer separate functions. o Code refactoring (separate): - Make a new "entry connection" struct as an internal subtype of "edge connection", to simplify the code and make exit connections smaller. - Split connection_about_to_close() into separate functions for each connection type. - Rewrite the listener-selection logic so that parsing which ports we want to listen on is now separate from binding to the ports we want. o Code refactoring (name changes): - Rename a handful of old identifiers, mostly related to crypto structures and crypto functions. By convention, our "create an object" functions are called "type_new()", our "free an object" functions are called "type_free()", and our types indicate that they are types only with a final "_t". But a handful of older types and functions broke these rules, with function names like "type_create" or "subsystem_op_type", or with type names like type_env_t. - Rename Tor functions that turn strings into addresses, so that "parse" indicates that no hostname resolution occurs, and "lookup" indicates that hostname resolution may occur. This should help prevent mistakes in the future. Fixes bug 3512. - Use the name "CERTS" consistently to refer to the new cell type; we were calling it CERT in some places and CERTS in others. - Use a TOR_INVALID_SOCKET macro when initializing a socket to an invalid value, rather than just -1. - Rename the bench_{aes,dmap} functions to test_*, so that tinytest can pick them up when the tests aren't disabled. Bugfix on 0.2.2.4-alpha which introduced tinytest. o Code refactoring (other): - Defensively refactor rend_mid_rendezvous() so that protocol violations and length checks happen in the beginning. Fixes bug 5645. - Remove the pure attribute from all functions that used it previously. In many cases we assigned it incorrectly, because the functions might assert or call impure functions, and we don't have evidence that keeping the pure attribute is worthwhile. Implements changes suggested in ticket 4421. - Move the replay-detection cache for the RSA-encrypted parts of INTRODUCE2 cells to the introduction point data structures. Previously, we would use one replay-detection cache per hidden service. Required by fix for bug 3460. - The helper programs tor-gencert, tor-resolve, and tor-checkkey no longer link against Libevent: they never used it, but our library structure used to force them to link it. o Removed features and files: - Remove all internal support for unpadded RSA. We never used it, and it would be a bad idea to start. - Remove some workaround code for OpenSSL 0.9.6 (which is no longer supported). - Remove some redundant #include directives throughout the code. Patch from Andrea Gelmini. - Remove some old code to remember statistics about which descriptors we've served as a directory mirror. The feature wasn't used and is outdated now that microdescriptors are around. - Remove some old code to work around even older versions of Tor that used forked processes to handle DNS requests. Such versions of Tor are no longer in use as relays. - The "torify" script no longer supports the "tsocks" socksifier tool, since tsocks doesn't support DNS and UDP right for Tor. Everyone should be using torsocks instead. Fixes bugs 3530 and 5180. Based on a patch by "ugh". - Remove the torrc.bridge file: we don't use it for anything, and it had become badly desynchronized from torrc.sample. Resolves bug 5622. o Documentation: - Begin a doc/state-contents.txt file to explain the contents of the Tor state file. Fixes bug 2987. - Clarify the documentation for the Alternate*Authority options. Fixes bug 6387. - Document the --defaults-torrc option, and the new semantics for overriding, extending, and clearing lists of options. Closes bug 4748. - Add missing man page documentation for consensus and microdesc files. Resolves ticket 6732. - Fix some typos in the manpages. Patch from A. Costa. Fixes bug 6500. o Documentation fixes: - Improve the manual's documentation for the NT Service command-line options. Addresses ticket 3964. - Clarify SessionGroup documentation slightly; resolves ticket 5437. - Document the changes to the ORPort and DirPort options, and the fact that {OR/Dir}ListenAddress is now unnecessary (and therefore deprecated). Resolves ticket 5597. - Correct a broken faq link in the INSTALL file. Fixes bug 2307. - Clarify that hidden services are TCP only. Fixes bug 6024. Changes in version 0.2.2.39 - 2012-09-11 Tor 0.2.2.39 fixes two more opportunities for remotely triggerable assertions. o Security fixes: - Fix an assertion failure in tor_timegm() that could be triggered by a badly formatted directory object. Bug found by fuzzing with Radamsa. Fixes bug 6811; bugfix on 0.2.0.20-rc. - Do not crash when comparing an address with port value 0 to an address policy. This bug could have been used to cause a remote assertion failure by or against directory authorities, or to allow some applications to crash clients. Fixes bug 6690; bugfix on 0.2.1.10-alpha. Changes in version 0.2.2.38 - 2012-08-12 Tor 0.2.2.38 fixes a remotely triggerable crash bug, and fixes a timing attack that could in theory leak path information. o Security fixes: - Avoid an uninitialized memory read when reading a vote or consensus document that has an unrecognized flavor name. This read could lead to a remote crash bug. Fixes bug 6530; bugfix on 0.2.2.6-alpha. - Try to leak less information about what relays a client is choosing to a side-channel attacker. Previously, a Tor client would stop iterating through the list of available relays as soon as it had chosen one, thus finishing a little earlier when it picked a router earlier in the list. If an attacker can recover this timing information (nontrivial but not proven to be impossible), they could learn some coarse-grained information about which relays a client was picking (middle nodes in particular are likelier to be affected than exits). The timing attack might be mitigated by other factors (see bug 6537 for some discussion), but it's best not to take chances. Fixes bug 6537; bugfix on 0.0.8rc1. Changes in version 0.2.2.37 - 2012-06-06 Tor 0.2.2.37 introduces a workaround for a critical renegotiation bug in OpenSSL 1.0.1 (where 20% of the Tor network can't talk to itself currently). o Major bugfixes: - Work around a bug in OpenSSL that broke renegotiation with TLS 1.1 and TLS 1.2. Without this workaround, all attempts to speak the v2 Tor connection protocol when both sides were using OpenSSL 1.0.1 would fail. Resolves ticket 6033. - When waiting for a client to renegotiate, don't allow it to add any bytes to the input buffer. This fixes a potential DoS issue. Fixes bugs 5934 and 6007; bugfix on 0.2.0.20-rc. - Fix an edge case where if we fetch or publish a hidden service descriptor, we might build a 4-hop circuit and then use that circuit for exiting afterwards -- even if the new last hop doesn't obey our ExitNodes config option. Fixes bug 5283; bugfix on 0.2.0.10-alpha. o Minor bugfixes: - Fix a build warning with Clang 3.1 related to our use of vasprintf. Fixes bug 5969. Bugfix on 0.2.2.11-alpha. o Minor features: - Tell GCC and Clang to check for any errors in format strings passed to the tor_v*(print|scan)f functions. Changes in version 0.2.2.36 - 2012-05-24 Tor 0.2.2.36 updates the addresses for two of the eight directory authorities, fixes some potential anonymity and security issues, and fixes several crash bugs. Tor 0.2.1.x has reached its end-of-life. Those Tor versions have many known flaws, and nobody should be using them. You should upgrade. If you're using a Linux or BSD and its packages are obsolete, stop using those packages and upgrade anyway. o Directory authority changes: - Change IP address for maatuska (v3 directory authority). - Change IP address for ides (v3 directory authority), and rename it to turtles. o Security fixes: - When building or running with any version of OpenSSL earlier than 0.9.8s or 1.0.0f, disable SSLv3 support. These OpenSSL versions have a bug (CVE-2011-4576) in which their block cipher padding includes uninitialized data, potentially leaking sensitive information to any peer with whom they make a SSLv3 connection. Tor does not use SSL v3 by default, but a hostile client or server could force an SSLv3 connection in order to gain information that they shouldn't have been able to get. The best solution here is to upgrade to OpenSSL 0.9.8s or 1.0.0f (or later). But when building or running with a non-upgraded OpenSSL, we disable SSLv3 entirely to make sure that the bug can't happen. - Never use a bridge or a controller-supplied node as an exit, even if its exit policy allows it. Found by wanoskarnet. Fixes bug 5342. Bugfix on 0.1.1.15-rc (for controller-purpose descriptors) and 0.2.0.3-alpha (for bridge-purpose descriptors). - Only build circuits if we have a sufficient threshold of the total descriptors that are marked in the consensus with the "Exit" flag. This mitigates an attack proposed by wanoskarnet, in which all of a client's bridges collude to restrict the exit nodes that the client knows about. Fixes bug 5343. - Provide controllers with a safer way to implement the cookie authentication mechanism. With the old method, if another locally running program could convince a controller that it was the Tor process, then that program could trick the controller into telling it the contents of an arbitrary 32-byte file. The new "SAFECOOKIE" authentication method uses a challenge-response approach to prevent this attack. Fixes bug 5185; implements proposal 193. o Major bugfixes: - Avoid logging uninitialized data when unable to decode a hidden service descriptor cookie. Fixes bug 5647; bugfix on 0.2.1.5-alpha. - Avoid a client-side assertion failure when receiving an INTRODUCE2 cell on a general purpose circuit. Fixes bug 5644; bugfix on 0.2.1.6-alpha. - Fix builds when the path to sed, openssl, or sha1sum contains spaces, which is pretty common on Windows. Fixes bug 5065; bugfix on 0.2.2.1-alpha. - Correct our replacements for the timeradd() and timersub() functions on platforms that lack them (for example, Windows). The timersub() function is used when expiring circuits, while timeradd() is currently unused. Bug report and patch by Vektor. Fixes bug 4778; bugfix on 0.2.2.24-alpha. - Fix the SOCKET_OK test that we use to tell when socket creation fails so that it works on Win64. Fixes part of bug 4533; bugfix on 0.2.2.29-beta. Bug found by wanoskarnet. o Minor bugfixes: - Reject out-of-range times like 23:59:61 in parse_rfc1123_time(). Fixes bug 5346; bugfix on 0.0.8pre3. - Make our number-parsing functions always treat too-large values as an error, even when those values exceed the width of the underlying type. Previously, if the caller provided these functions with minima or maxima set to the extreme values of the underlying integer type, these functions would return those values on overflow rather than treating overflow as an error. Fixes part of bug 5786; bugfix on 0.0.9. - Older Linux kernels erroneously respond to strange nmap behavior by having accept() return successfully with a zero-length socket. When this happens, just close the connection. Previously, we would try harder to learn the remote address: but there was no such remote address to learn, and our method for trying to learn it was incorrect. Fixes bugs 1240, 4745, and 4747. Bugfix on 0.1.0.3-rc. Reported and diagnosed by "r1eo". - Correct parsing of certain date types in parse_http_time(). Without this patch, If-Modified-Since would behave incorrectly. Fixes bug 5346; bugfix on 0.2.0.2-alpha. Patch from Esteban Manchado Velázques. - Change the BridgePassword feature (part of the "bridge community" design, which is not yet implemented) to use a time-independent comparison. The old behavior might have allowed an adversary to use timing to guess the BridgePassword value. Fixes bug 5543; bugfix on 0.2.0.14-alpha. - Detect and reject certain misformed escape sequences in configuration values. Previously, these values would cause us to crash if received in a torrc file or over an authenticated control port. Bug found by Esteban Manchado Velázquez, and independently by Robert Connolly from Matta Consulting who further noted that it allows a post-authentication heap overflow. Patch by Alexander Schrijver. Fixes bugs 5090 and 5402 (CVE 2012-1668); bugfix on 0.2.0.16-alpha. - Fix a compile warning when using the --enable-openbsd-malloc configure option. Fixes bug 5340; bugfix on 0.2.0.20-rc. - During configure, detect when we're building with clang version 3.0 or lower and disable the -Wnormalized=id and -Woverride-init CFLAGS. clang doesn't support them yet. - When sending an HTTP/1.1 proxy request, include a Host header. Fixes bug 5593; bugfix on 0.2.2.1-alpha. - Fix a NULL-pointer dereference on a badly formed SETCIRCUITPURPOSE command. Found by mikeyc. Fixes bug 5796; bugfix on 0.2.2.9-alpha. - If we hit the error case where routerlist_insert() replaces an existing (old) server descriptor, make sure to remove that server descriptor from the old_routers list. Fix related to bug 1776. Bugfix on 0.2.2.18-alpha. o Minor bugfixes (documentation and log messages): - Fix a typo in a log message in rend_service_rendezvous_has_opened(). Fixes bug 4856; bugfix on Tor 0.0.6. - Update "ClientOnly" man page entry to explain that there isn't really any point to messing with it. Resolves ticket 5005. - Document the GiveGuardFlagTo_CVE_2011_2768_VulnerableRelays directory authority option (introduced in Tor 0.2.2.34). - Downgrade the "We're missing a certificate" message from notice to info: people kept mistaking it for a real problem, whereas it is seldom the problem even when we are failing to bootstrap. Fixes bug 5067; bugfix on 0.2.0.10-alpha. - Correctly spell "connect" in a log message on failure to create a controlsocket. Fixes bug 4803; bugfix on 0.2.2.26-beta. - Clarify the behavior of MaxCircuitDirtiness with hidden service circuits. Fixes issue 5259. o Minor features: - Directory authorities now reject versions of Tor older than 0.2.1.30, and Tor versions between 0.2.2.1-alpha and 0.2.2.20-alpha inclusive. These versions accounted for only a small fraction of the Tor network, and have numerous known security issues. Resolves issue 4788. - Update to the May 1 2012 Maxmind GeoLite Country database. - Feature removal: - When sending or relaying a RELAY_EARLY cell, we used to convert it to a RELAY cell if the connection was using the v1 link protocol. This was a workaround for older versions of Tor, which didn't handle RELAY_EARLY cells properly. Now that all supported versions can handle RELAY_EARLY cells, and now that we're enforcing the "no RELAY_EXTEND commands except in RELAY_EARLY cells" rule, remove this workaround. Addresses bug 4786. Changes in version 0.2.2.35 - 2011-12-16 Tor 0.2.2.35 fixes a critical heap-overflow security issue in Tor's buffers code. Absolutely everybody should upgrade. The bug relied on an incorrect calculation when making data continuous in one of our IO buffers, if the first chunk of the buffer was misaligned by just the wrong amount. The miscalculation would allow an attacker to overflow a piece of heap-allocated memory. To mount this attack, the attacker would need to either open a SOCKS connection to Tor's SocksPort (usually restricted to localhost), or target a Tor instance configured to make its connections through a SOCKS proxy (which Tor does not do by default). Good security practice requires that all heap-overflow bugs should be presumed to be exploitable until proven otherwise, so we are treating this as a potential code execution attack. Please upgrade immediately! This bug does not affect bufferevents-based builds of Tor. Special thanks to "Vektor" for reporting this issue to us! Tor 0.2.2.35 also fixes several bugs in previous versions, including crash bugs for unusual configurations, and a long-term bug that would prevent Tor from starting on Windows machines with draconian AV software. With this release, we remind everyone that 0.2.0.x has reached its formal end-of-life. Those Tor versions have many known flaws, and nobody should be using them. You should upgrade -- ideally to the 0.2.2.x series. If you're using a Linux or BSD and its packages are obsolete, stop using those packages and upgrade anyway. The Tor 0.2.1.x series is also approaching its end-of-life: it will no longer receive support after some time in early 2012. o Major bugfixes: - Fix a heap overflow bug that could occur when trying to pull data into the first chunk of a buffer, when that chunk had already had some data drained from it. Fixes CVE-2011-2778; bugfix on 0.2.0.16-alpha. Reported by "Vektor". - Initialize Libevent with the EVENT_BASE_FLAG_NOLOCK flag enabled, so that it doesn't attempt to allocate a socketpair. This could cause some problems on Windows systems with overzealous firewalls. Fix for bug 4457; workaround for Libevent versions 2.0.1-alpha through 2.0.15-stable. - If we mark an OR connection for close based on a cell we process, don't process any further cells on it. We already avoid further reads on marked-for-close connections, but now we also discard the cells we'd already read. Fixes bug 4299; bugfix on 0.2.0.10-alpha, which was the first version where we might mark a connection for close based on processing a cell on it. - Correctly sanity-check that we don't underflow on a memory allocation (and then assert) for hidden service introduction point decryption. Bug discovered by Dan Rosenberg. Fixes bug 4410; bugfix on 0.2.1.5-alpha. - Fix a memory leak when we check whether a hidden service descriptor has any usable introduction points left. Fixes bug 4424. Bugfix on 0.2.2.25-alpha. - Don't crash when we're running as a relay and don't have a GeoIP file. Bugfix on 0.2.2.34; fixes bug 4340. This backports a fix we've had in the 0.2.3.x branch already. - When running as a client, do not print a misleading (and plain wrong) log message that we're collecting "directory request" statistics: clients don't collect statistics. Also don't create a useless (because empty) stats file in the stats/ directory. Fixes bug 4353; bugfix on 0.2.2.34. o Minor bugfixes: - Detect failure to initialize Libevent. This fix provides better detection for future instances of bug 4457. - Avoid frequent calls to the fairly expensive cull_wedged_cpuworkers function. This was eating up hideously large amounts of time on some busy servers. Fixes bug 4518; bugfix on 0.0.9.8. - Resolve an integer overflow bug in smartlist_ensure_capacity(). Fixes bug 4230; bugfix on Tor 0.1.0.1-rc. Based on a patch by Mansour Moufid. - Don't warn about unused log_mutex in log.c when building with --disable-threads using a recent GCC. Fixes bug 4437; bugfix on 0.1.0.6-rc which introduced --disable-threads. - When configuring, starting, or stopping an NT service, stop immediately after the service configuration attempt has succeeded or failed. Fixes bug 3963; bugfix on 0.2.0.7-alpha. - When sending a NETINFO cell, include the original address received for the other side, not its canonical address. Found by "troll_un"; fixes bug 4349; bugfix on 0.2.0.10-alpha. - Fix a typo in a hibernation-related log message. Fixes bug 4331; bugfix on 0.2.2.23-alpha; found by "tmpname0901". - Fix a memory leak in launch_direct_bridge_descriptor_fetch() that occurred when a client tried to fetch a descriptor for a bridge in ExcludeNodes. Fixes bug 4383; bugfix on 0.2.2.25-alpha. - Backport fixes for a pair of compilation warnings on Windows. Fixes bug 4521; bugfix on 0.2.2.28-beta and on 0.2.2.29-beta. - If we had ever tried to call tor_addr_to_str on an address of unknown type, we would have done a strdup on an uninitialized buffer. Now we won't. Fixes bug 4529; bugfix on 0.2.1.3-alpha. Reported by "troll_un". - Correctly detect and handle transient lookup failures from tor_addr_lookup. Fixes bug 4530; bugfix on 0.2.1.5-alpha. Reported by "troll_un". - Fix null-pointer access that could occur if TLS allocation failed. Fixes bug 4531; bugfix on 0.2.0.20-rc. Found by "troll_un". - Use tor_socket_t type for listener argument to accept(). Fixes bug 4535; bugfix on 0.2.2.28-beta. Found by "troll_un". o Minor features: - Add two new config options for directory authorities: AuthDirFastGuarantee sets a bandwidth threshold for guaranteeing the Fast flag, and AuthDirGuardBWGuarantee sets a bandwidth threshold that is always sufficient to satisfy the bandwidth requirement for the Guard flag. Now it will be easier for researchers to simulate Tor networks with different values. Resolves ticket 4484. - When Tor ignores a hidden service specified in its configuration, include the hidden service's directory in the warning message. Previously, we would only tell the user that some hidden service was ignored. Bugfix on 0.0.6; fixes bug 4426. - Update to the December 6 2011 Maxmind GeoLite Country database. o Packaging changes: - Make it easier to automate expert package builds on Windows, by removing an absolute path from makensis.exe command. Changes in version 0.2.1.32 - 2011-12-16 Tor 0.2.1.32 backports important security and privacy fixes for oldstable. This release is intended only for package maintainers and others who cannot use the 0.2.2 stable series. All others should be using Tor 0.2.2.x or newer. The Tor 0.2.1.x series will reach formal end-of-life some time in early 2012; we will stop releasing patches for it then. o Major bugfixes (also included in 0.2.2.x): - Correctly sanity-check that we don't underflow on a memory allocation (and then assert) for hidden service introduction point decryption. Bug discovered by Dan Rosenberg. Fixes bug 4410; bugfix on 0.2.1.5-alpha. - Fix a heap overflow bug that could occur when trying to pull data into the first chunk of a buffer, when that chunk had already had some data drained from it. Fixes CVE-2011-2778; bugfix on 0.2.0.16-alpha. Reported by "Vektor". o Minor features: - Update to the December 6 2011 Maxmind GeoLite Country database. Changes in version 0.2.2.34 - 2011-10-26 Tor 0.2.2.34 fixes a critical anonymity vulnerability where an attacker can deanonymize Tor users. Everybody should upgrade. The attack relies on four components: 1) Clients reuse their TLS cert when talking to different relays, so relays can recognize a user by the identity key in her cert. 2) An attacker who knows the client's identity key can probe each guard relay to see if that identity key is connected to that guard relay right now. 3) A variety of active attacks in the literature (starting from "Low-Cost Traffic Analysis of Tor" by Murdoch and Danezis in 2005) allow a malicious website to discover the guard relays that a Tor user visiting the website is using. 4) Clients typically pick three guards at random, so the set of guards for a given user could well be a unique fingerprint for her. This release fixes components #1 and #2, which is enough to block the attack; the other two remain as open research problems. Special thanks to "frosty_un" for reporting the issue to us! Clients should upgrade so they are no longer recognizable by the TLS certs they present. Relays should upgrade so they no longer allow a remote attacker to probe them to test whether unpatched clients are currently connected to them. This release also fixes several vulnerabilities that allow an attacker to enumerate bridge relays. Some bridge enumeration attacks still remain; see for example proposal 188. o Privacy/anonymity fixes (clients): - Clients and bridges no longer send TLS certificate chains on outgoing OR connections. Previously, each client or bridge would use the same cert chain for all outgoing OR connections until its IP address changes, which allowed any relay that the client or bridge contacted to determine which entry guards it is using. Fixes CVE-2011-2768. Bugfix on 0.0.9pre5; found by "frosty_un". - If a relay receives a CREATE_FAST cell on a TLS connection, it no longer considers that connection as suitable for satisfying a circuit EXTEND request. Now relays can protect clients from the CVE-2011-2768 issue even if the clients haven't upgraded yet. - Directory authorities no longer assign the Guard flag to relays that haven't upgraded to the above "refuse EXTEND requests to client connections" fix. Now directory authorities can protect clients from the CVE-2011-2768 issue even if neither the clients nor the relays have upgraded yet. There's a new "GiveGuardFlagTo_CVE_2011_2768_VulnerableRelays" config option to let us transition smoothly, else tomorrow there would be no guard relays. o Privacy/anonymity fixes (bridge enumeration): - Bridge relays now do their directory fetches inside Tor TLS connections, like all the other clients do, rather than connecting directly to the DirPort like public relays do. Removes another avenue for enumerating bridges. Fixes bug 4115; bugfix on 0.2.0.35. - Bridges relays now build circuits for themselves in a more similar way to how clients build them. Removes another avenue for enumerating bridges. Fixes bug 4124; bugfix on 0.2.0.3-alpha, when bridges were introduced. - Bridges now refuse CREATE or CREATE_FAST cells on OR connections that they initiated. Relays could distinguish incoming bridge connections from client connections, creating another avenue for enumerating bridges. Fixes CVE-2011-2769. Bugfix on 0.2.0.3-alpha. Found by "frosty_un". o Major bugfixes: - Fix a crash bug when changing node restrictions while a DNS lookup is in-progress. Fixes bug 4259; bugfix on 0.2.2.25-alpha. Bugfix by "Tey'". - Don't launch a useless circuit after failing to use one of a hidden service's introduction points. Previously, we would launch a new introduction circuit, but not set the hidden service which that circuit was intended to connect to, so it would never actually be used. A different piece of code would then create a new introduction circuit correctly. Bug reported by katmagic and found by Sebastian Hahn. Bugfix on 0.2.1.13-alpha; fixes bug 4212. o Minor bugfixes: - Change an integer overflow check in the OpenBSD_Malloc code so that GCC is less likely to eliminate it as impossible. Patch from Mansour Moufid. Fixes bug 4059. - When a hidden service turns an extra service-side introduction circuit into a general-purpose circuit, free the rend_data and intro_key fields first, so we won't leak memory if the circuit is cannibalized for use as another service-side introduction circuit. Bugfix on 0.2.1.7-alpha; fixes bug 4251. - Bridges now skip DNS self-tests, to act a little more stealthily. Fixes bug 4201; bugfix on 0.2.0.3-alpha, which first introduced bridges. Patch by "warms0x". - Fix internal bug-checking logic that was supposed to catch failures in digest generation so that it will fail more robustly if we ask for a nonexistent algorithm. Found by Coverity Scan. Bugfix on 0.2.2.1-alpha; fixes Coverity CID 479. - Report any failure in init_keys() calls launched because our IP address has changed. Spotted by Coverity Scan. Bugfix on 0.1.1.4-alpha; fixes CID 484. o Minor bugfixes (log messages and documentation): - Remove a confusing dollar sign from the example fingerprint in the man page, and also make the example fingerprint a valid one. Fixes bug 4309; bugfix on 0.2.1.3-alpha. - The next version of Windows will be called Windows 8, and it has a major version of 6, minor version of 2. Correctly identify that version instead of calling it "Very recent version". Resolves ticket 4153; reported by funkstar. - Downgrade log messages about circuit timeout calibration from "notice" to "info": they don't require or suggest any human intervention. Patch from Tom Lowenthal. Fixes bug 4063; bugfix on 0.2.2.14-alpha. o Minor features: - Turn on directory request statistics by default and include them in extra-info descriptors. Don't break if we have no GeoIP database. Backported from 0.2.3.1-alpha; implements ticket 3951. - Update to the October 4 2011 Maxmind GeoLite Country database. Changes in version 0.2.1.31 - 2011-10-26 Tor 0.2.1.31 backports important security and privacy fixes for oldstable. This release is intended only for package maintainers and others who cannot use the 0.2.2 stable series. All others should be using Tor 0.2.2.x or newer. o Security fixes (also included in 0.2.2.x): - Replace all potentially sensitive memory comparison operations with versions whose runtime does not depend on the data being compared. This will help resist a class of attacks where an adversary can use variations in timing information to learn sensitive data. Fix for one case of bug 3122. (Safe memcmp implementation by Robert Ransom based partially on code by DJB.) - Fix an assert in parsing router descriptors containing IPv6 addresses. This one took down the directory authorities when somebody tried some experimental code. Bugfix on 0.2.1.3-alpha. o Privacy/anonymity fixes (also included in 0.2.2.x): - Clients and bridges no longer send TLS certificate chains on outgoing OR connections. Previously, each client or bridge would use the same cert chain for all outgoing OR connections until its IP address changes, which allowed any relay that the client or bridge contacted to determine which entry guards it is using. Fixes CVE-2011-2768. Bugfix on 0.0.9pre5; found by "frosty_un". - If a relay receives a CREATE_FAST cell on a TLS connection, it no longer considers that connection as suitable for satisfying a circuit EXTEND request. Now relays can protect clients from the CVE-2011-2768 issue even if the clients haven't upgraded yet. - Bridges now refuse CREATE or CREATE_FAST cells on OR connections that they initiated. Relays could distinguish incoming bridge connections from client connections, creating another avenue for enumerating bridges. Fixes CVE-2011-2769. Bugfix on 0.2.0.3-alpha. Found by "frosty_un". - When receiving a hidden service descriptor, check that it is for the hidden service we wanted. Previously, Tor would store any hidden service descriptors that a directory gave it, whether it wanted them or not. This wouldn't have let an attacker impersonate a hidden service, but it did let directories pre-seed a client with descriptors that it didn't want. Bugfix on 0.0.6. - Avoid linkability based on cached hidden service descriptors: forget all hidden service descriptors cached as a client when processing a SIGNAL NEWNYM command. Fixes bug 3000; bugfix on 0.0.6. - Make the bridge directory authority refuse to answer directory requests for "all" descriptors. It used to include bridge descriptors in its answer, which was a major information leak. Found by "piebeer". Bugfix on 0.2.0.3-alpha. - Don't attach new streams to old rendezvous circuits after SIGNAL NEWNYM. Previously, we would keep using an existing rendezvous circuit if it remained open (i.e. if it were kept open by a long-lived stream, or if a new stream were attached to it before Tor could notice that it was old and no longer in use). Bugfix on 0.1.1.15-rc; fixes bug 3375. o Minor bugfixes (also included in 0.2.2.x): - When we restart our relay, we might get a successful connection from the outside before we've started our reachability tests, triggering a warning: "ORPort found reachable, but I have no routerinfo yet. Failing to inform controller of success." This bug was harmless unless Tor is running under a controller like Vidalia, in which case the controller would never get a REACHABILITY_SUCCEEDED status event. Bugfix on 0.1.2.6-alpha; fixes bug 1172. - Build correctly on OSX with zlib 1.2.4 and higher with all warnings enabled. Fixes bug 1526. - Remove undocumented option "-F" from tor-resolve: it hasn't done anything since 0.2.1.16-rc. - Avoid signed/unsigned comparisons by making SIZE_T_CEILING unsigned. None of the cases where we did this before were wrong, but by making this change we avoid warnings. Fixes bug 2475; bugfix on 0.2.1.28. - Fix a rare crash bug that could occur when a client was configured with a large number of bridges. Fixes bug 2629; bugfix on 0.2.1.2-alpha. Bugfix by trac user "shitlei". - Correct the warning displayed when a rendezvous descriptor exceeds the maximum size. Fixes bug 2750; bugfix on 0.2.1.5-alpha. Found by John Brooks. - Fix an uncommon assertion failure when running with DNSPort under heavy load. Fixes bug 2933; bugfix on 0.2.0.1-alpha. - When warning about missing zlib development packages during compile, give the correct package names. Bugfix on 0.2.0.1-alpha. - Require that introduction point keys and onion keys have public exponent 65537. Bugfix on 0.2.0.10-alpha. - Do not crash when our configuration file becomes unreadable, for example due to a permissions change, between when we start up and when a controller calls SAVECONF. Fixes bug 3135; bugfix on 0.0.9pre6. - Fix warnings from GCC 4.6's "-Wunused-but-set-variable" option. Fixes bug 3208. - Always NUL-terminate the sun_path field of a sockaddr_un before passing it to the kernel. (Not a security issue: kernels are smart enough to reject bad sockaddr_uns.) Found by Coverity; CID #428. Bugfix on Tor 0.2.0.3-alpha. - Don't stack-allocate the list of supplementary GIDs when we're about to log them. Stack-allocating NGROUPS_MAX gid_t elements could take up to 256K, which is way too much stack. Found by Coverity; CID #450. Bugfix on 0.2.1.7-alpha. o Minor bugfixes (only in 0.2.1.x): - Resume using micro-version numbers in 0.2.1.x: our Debian packages rely on them. Bugfix on 0.2.1.30. - Use git revisions instead of svn revisions when generating our micro-version numbers. Bugfix on 0.2.1.15-rc; fixes bug 2402. o Minor features (also included in 0.2.2.x): - Adjust the expiration time on our SSL session certificates to better match SSL certs seen in the wild. Resolves ticket 4014. - Allow nameservers with IPv6 address. Resolves bug 2574. - Update to the October 4 2011 Maxmind GeoLite Country database. Changes in version 0.2.2.33 - 2011-09-13 Tor 0.2.2.33 fixes several bugs, and includes a slight tweak to Tor's TLS handshake that makes relays and bridges that run this new version reachable from Iran again. o Major bugfixes: - Avoid an assertion failure when reloading a configuration with TrackExitHosts changes. Found and fixed by 'laruldan'. Fixes bug 3923; bugfix on 0.2.2.25-alpha. o Minor features (security): - Check for replays of the public-key encrypted portion of an INTRODUCE1 cell, in addition to the current check for replays of the g^x value. This prevents a possible class of active attacks by an attacker who controls both an introduction point and a rendezvous point, and who uses the malleability of AES-CTR to alter the encrypted g^x portion of the INTRODUCE1 cell. We think that these attacks are infeasible (requiring the attacker to send on the order of zettabytes of altered cells in a short interval), but we'd rather block them off in case there are any classes of this attack that we missed. Reported by Willem Pinckaers. o Minor features: - Adjust the expiration time on our SSL session certificates to better match SSL certs seen in the wild. Resolves ticket 4014. - Change the default required uptime for a relay to be accepted as a HSDir (hidden service directory) from 24 hours to 25 hours. Improves on 0.2.0.10-alpha; resolves ticket 2649. - Add a VoteOnHidServDirectoriesV2 config option to allow directory authorities to abstain from voting on assignment of the HSDir consensus flag. Related to bug 2649. - Update to the September 6 2011 Maxmind GeoLite Country database. o Minor bugfixes (documentation and log messages): - Correct the man page to explain that HashedControlPassword and CookieAuthentication can both be set, in which case either method is sufficient to authenticate to Tor. Bugfix on 0.2.0.7-alpha, when we decided to allow these config options to both be set. Issue raised by bug 3898. - Demote the 'replay detected' log message emitted when a hidden service receives the same Diffie-Hellman public key in two different INTRODUCE2 cells to info level. A normal Tor client can cause that log message during its normal operation. Bugfix on 0.2.1.6-alpha; fixes part of bug 2442. - Demote the 'INTRODUCE2 cell is too {old,new}' log message to info level. There is nothing that a hidden service's operator can do to fix its clients' clocks. Bugfix on 0.2.1.6-alpha; fixes part of bug 2442. - Clarify a log message specifying the characters permitted in HiddenServiceAuthorizeClient client names. Previously, the log message said that "[A-Za-z0-9+-_]" were permitted; that could have given the impression that every ASCII character between "+" and "_" was permitted. Now we say "[A-Za-z0-9+_-]". Bugfix on 0.2.1.5-alpha. o Build fixes: - Provide a substitute implementation of lround() for MSVC, which apparently lacks it. Patch from Gisle Vanem. - Clean up some code issues that prevented Tor from building on older BSDs. Fixes bug 3894; reported by "grarpamp". - Search for a platform-specific version of "ar" when cross-compiling. Should fix builds on iOS. Resolves bug 3909, found by Marco Bonetti. Changes in version 0.2.2.32 - 2011-08-27 The Tor 0.2.2 release series is dedicated to the memory of Andreas Pfitzmann (1958-2010), a pioneer in anonymity and privacy research, a founder of the PETS community, a leader in our field, a mentor, and a friend. He left us with these words: "I had the possibility to contribute to this world that is not as it should be. I hope I could help in some areas to make the world a better place, and that I could also encourage other people to be engaged in improving the world. Please, stay engaged. This world needs you, your love, your initiative -- now I cannot be part of that anymore." Tor 0.2.2.32, the first stable release in the 0.2.2 branch, is finally ready. More than two years in the making, this release features improved client performance and hidden service reliability, better compatibility for Android, correct behavior for bridges that listen on more than one address, more extensible and flexible directory object handling, better reporting of network statistics, improved code security, and many many other features and bugfixes. o Major features (client performance): - When choosing which cells to relay first, relays now favor circuits that have been quiet recently, to provide lower latency for low-volume circuits. By default, relays enable or disable this feature based on a setting in the consensus. They can override this default by using the new "CircuitPriorityHalflife" config option. Design and code by Ian Goldberg, Can Tang, and Chris Alexander. - Directory authorities now compute consensus weightings that instruct clients how to weight relays flagged as Guard, Exit, Guard+Exit, and no flag. Clients use these weightings to distribute network load more evenly across these different relay types. The weightings are in the consensus so we can change them globally in the future. Extra thanks to "outofwords" for finding some nasty security bugs in the first implementation of this feature. o Major features (client performance, circuit build timeout): - Tor now tracks how long it takes to build client-side circuits over time, and adapts its timeout to local network performance. Since a circuit that takes a long time to build will also provide bad performance, we get significant latency improvements by discarding the slowest 20% of circuits. Specifically, Tor creates circuits more aggressively than usual until it has enough data points for a good timeout estimate. Implements proposal 151. - Circuit build timeout constants can be controlled by consensus parameters. We set good defaults for these parameters based on experimentation on broadband and simulated high-latency links. - Circuit build time learning can be disabled via consensus parameter or by the client via a LearnCircuitBuildTimeout config option. We also automatically disable circuit build time calculation if either AuthoritativeDirectory is set, or if we fail to write our state file. Implements ticket 1296. o Major features (relays use their capacity better): - Set SO_REUSEADDR socket option on all sockets, not just listeners. This should help busy exit nodes avoid running out of useable ports just because all the ports have been used in the near past. Resolves issue 2850. - Relays now save observed peak bandwidth throughput rates to their state file (along with total usage, which was already saved), so that they can determine their correct estimated bandwidth on restart. Resolves bug 1863, where Tor relays would reset their estimated bandwidth to 0 after restarting. - Lower the maximum weighted-fractional-uptime cutoff to 98%. This should give us approximately 40-50% more Guard-flagged nodes, improving the anonymity the Tor network can provide and also decreasing the dropoff in throughput that relays experience when they first get the Guard flag. - Directory authorities now take changes in router IP address and ORPort into account when determining router stability. Previously, if a router changed its IP or ORPort, the authorities would not treat it as having any downtime for the purposes of stability calculation, whereas clients would experience downtime since the change would take a while to propagate to them. Resolves issue 1035. - New AccelName and AccelDir options add support for dynamic OpenSSL hardware crypto acceleration engines. o Major features (relays control their load better): - Exit relays now try harder to block exit attempts from unknown relays, to make it harder for people to use them as one-hop proxies a la tortunnel. Controlled by the refuseunknownexits consensus parameter (currently enabled), or you can override it on your relay with the RefuseUnknownExits torrc option. Resolves bug 1751; based on a variant of proposal 163. - Add separate per-conn write limiting to go with the per-conn read limiting. We added a global write limit in Tor 0.1.2.5-alpha, but never per-conn write limits. - New consensus params "bwconnrate" and "bwconnburst" to let us rate-limit client connections as they enter the network. It's controlled in the consensus so we can turn it on and off for experiments. It's starting out off. Based on proposal 163. o Major features (controllers): - Export GeoIP information on bridge usage to controllers even if we have not yet been running for 24 hours. Now Vidalia bridge operators can get more accurate and immediate feedback about their contributions to the network. - Add an __OwningControllerProcess configuration option and a TAKEOWNERSHIP control-port command. Now a Tor controller can ensure that when it exits, Tor will shut down. Implements feature 3049. o Major features (directory authorities): - Directory authorities now create, vote on, and serve multiple parallel formats of directory data as part of their voting process. Partially implements Proposal 162: "Publish the consensus in multiple flavors". - Directory authorities now agree on and publish small summaries of router information that clients can use in place of regular server descriptors. This transition will allow Tor 0.2.3 clients to use far less bandwidth for downloading information about the network. Begins the implementation of Proposal 158: "Clients download consensus + microdescriptors". - The directory voting system is now extensible to use multiple hash algorithms for signatures and resource selection. Newer formats are signed with SHA256, with a possibility for moving to a better hash algorithm in the future. - Directory authorities can now vote on arbitary integer values as part of the consensus process. This is designed to help set network-wide parameters. Implements proposal 167. o Major features and bugfixes (node selection): - Revise and reconcile the meaning of the ExitNodes, EntryNodes, ExcludeEntryNodes, ExcludeExitNodes, ExcludeNodes, and Strict*Nodes options. Previously, we had been ambiguous in describing what counted as an "exit" node, and what operations exactly "StrictNodes 0" would permit. This created confusion when people saw nodes built through unexpected circuits, and made it hard to tell real bugs from surprises. Now the intended behavior is: . "Exit", in the context of ExitNodes and ExcludeExitNodes, means a node that delivers user traffic outside the Tor network. . "Entry", in the context of EntryNodes, means a node used as the first hop of a multihop circuit. It doesn't include direct connections to directory servers. . "ExcludeNodes" applies to all nodes. . "StrictNodes" changes the behavior of ExcludeNodes only. When StrictNodes is set, Tor should avoid all nodes listed in ExcludeNodes, even when it will make user requests fail. When StrictNodes is *not* set, then Tor should follow ExcludeNodes whenever it can, except when it must use an excluded node to perform self-tests, connect to a hidden service, provide a hidden service, fulfill a .exit request, upload directory information, or fetch directory information. Collectively, the changes to implement the behavior fix bug 1090. - If EntryNodes, ExitNodes, ExcludeNodes, or ExcludeExitNodes change during a config reload, mark and discard all our origin circuits. This fix should address edge cases where we change the config options and but then choose a circuit that we created before the change. - Make EntryNodes config option much more aggressive even when StrictNodes is not set. Before it would prepend your requested entrynodes to your list of guard nodes, but feel free to use others after that. Now it chooses only from your EntryNodes if any of those are available, and only falls back to others if a) they're all down and b) StrictNodes is not set. - Now we refresh your entry guards from EntryNodes at each consensus fetch -- rather than just at startup and then they slowly rot as the network changes. - Add support for the country code "{??}" in torrc options like ExcludeNodes, to indicate all routers of unknown country. Closes bug 1094. - ExcludeNodes now takes precedence over EntryNodes and ExitNodes: if a node is listed in both, it's treated as excluded. - ExcludeNodes now applies to directory nodes -- as a preference if StrictNodes is 0, or an absolute requirement if StrictNodes is 1. Don't exclude all the directory authorities and set StrictNodes to 1 unless you really want your Tor to break. - ExcludeNodes and ExcludeExitNodes now override exit enclaving. - ExcludeExitNodes now overrides .exit requests. - We don't use bridges listed in ExcludeNodes. - When StrictNodes is 1: . We now apply ExcludeNodes to hidden service introduction points and to rendezvous points selected by hidden service users. This can make your hidden service less reliable: use it with caution! . If we have used ExcludeNodes on ourself, do not try relay reachability self-tests. . If we have excluded all the directory authorities, we will not even try to upload our descriptor if we're a relay. . Do not honor .exit requests to an excluded node. - When the set of permitted nodes changes, we now remove any mappings introduced via TrackExitHosts to now-excluded nodes. Bugfix on 0.1.0.1-rc. - We never cannibalize a circuit that had excluded nodes on it, even if StrictNodes is 0. Bugfix on 0.1.0.1-rc. - Improve log messages related to excluded nodes. o Major features (misc): - Numerous changes, bugfixes, and workarounds from Nathan Freitas to help Tor build correctly for Android phones. - The options SocksPort, ControlPort, and so on now all accept a value "auto" that opens a socket on an OS-selected port. A new ControlPortWriteToFile option tells Tor to write its actual control port or ports to a chosen file. If the option ControlPortFileGroupReadable is set, the file is created as group-readable. Now users can run two Tor clients on the same system without needing to manually mess with parameters. Resolves part of ticket 3076. - Tor now supports tunneling all of its outgoing connections over a SOCKS proxy, using the SOCKS4Proxy and/or SOCKS5Proxy configuration options. Code by Christopher Davis. o Code security improvements: - Replace all potentially sensitive memory comparison operations with versions whose runtime does not depend on the data being compared. This will help resist a class of attacks where an adversary can use variations in timing information to learn sensitive data. Fix for one case of bug 3122. (Safe memcmp implementation by Robert Ransom based partially on code by DJB.) - Enable Address Space Layout Randomization (ASLR) and Data Execution Prevention (DEP) by default on Windows to make it harder for attackers to exploit vulnerabilities. Patch from John Brooks. - New "--enable-gcc-hardening" ./configure flag (off by default) to turn on gcc compile time hardening options. It ensures that signed ints have defined behavior (-fwrapv), enables -D_FORTIFY_SOURCE=2 (requiring -O2), adds stack smashing protection with canaries (-fstack-protector-all), turns on ASLR protection if supported by the kernel (-fPIE, -pie), and adds additional security related warnings. Verified to work on Mac OS X and Debian Lenny. - New "--enable-linker-hardening" ./configure flag (off by default) to turn on ELF specific hardening features (relro, now). This does not work with Mac OS X or any other non-ELF binary format. - Always search the Windows system directory for system DLLs, and nowhere else. Bugfix on 0.1.1.23; fixes bug 1954. - New DisableAllSwap option. If set to 1, Tor will attempt to lock all current and future memory pages via mlockall(). On supported platforms (modern Linux and probably BSD but not Windows or OS X), this should effectively disable any and all attempts to page out memory. This option requires that you start your Tor as root -- if you use DisableAllSwap, please consider using the User option to properly reduce the privileges of your Tor. o Major bugfixes (crashes): - Fix crash bug on platforms where gmtime and localtime can return NULL. Windows 7 users were running into this one. Fixes part of bug 2077. Bugfix on all versions of Tor. Found by boboper. - Introduce minimum/maximum values that clients will believe from the consensus. Now we'll have a better chance to avoid crashes or worse when a consensus param has a weird value. - Fix a rare crash bug that could occur when a client was configured with a large number of bridges. Fixes bug 2629; bugfix on 0.2.1.2-alpha. Bugfix by trac user "shitlei". - Do not crash when our configuration file becomes unreadable, for example due to a permissions change, between when we start up and when a controller calls SAVECONF. Fixes bug 3135; bugfix on 0.0.9pre6. - If we're in the pathological case where there's no exit bandwidth but there is non-exit bandwidth, or no guard bandwidth but there is non-guard bandwidth, don't crash during path selection. Bugfix on 0.2.0.3-alpha. - Fix a crash bug when trying to initialize the evdns module in Libevent 2. Bugfix on 0.2.1.16-rc. o Major bugfixes (stability): - Fix an assert in parsing router descriptors containing IPv6 addresses. This one took down the directory authorities when somebody tried some experimental code. Bugfix on 0.2.1.3-alpha. - Fix an uncommon assertion failure when running with DNSPort under heavy load. Fixes bug 2933; bugfix on 0.2.0.1-alpha. - Treat an unset $HOME like an empty $HOME rather than triggering an assert. Bugfix on 0.0.8pre1; fixes bug 1522. - More gracefully handle corrupt state files, removing asserts in favor of saving a backup and resetting state. - Instead of giving an assertion failure on an internal mismatch on estimated freelist size, just log a BUG warning and try later. Mitigates but does not fix bug 1125. - Fix an assert that got triggered when using the TestingTorNetwork configuration option and then issuing a GETINFO config-text control command. Fixes bug 2250; bugfix on 0.2.1.2-alpha. - If the cached cert file is unparseable, warn but don't exit. o Privacy fixes (relays/bridges): - Don't list Windows capabilities in relay descriptors. We never made use of them, and maybe it's a bad idea to publish them. Bugfix on 0.1.1.8-alpha. - If the Nickname configuration option isn't given, Tor would pick a nickname based on the local hostname as the nickname for a relay. Because nicknames are not very important in today's Tor and the "Unnamed" nickname has been implemented, this is now problematic behavior: It leaks information about the hostname without being useful at all. Fixes bug 2979; bugfix on 0.1.2.2-alpha, which introduced the Unnamed nickname. Reported by tagnaq. - Maintain separate TLS contexts and certificates for incoming and outgoing connections in bridge relays. Previously we would use the same TLS contexts and certs for incoming and outgoing connections. Bugfix on 0.2.0.3-alpha; addresses bug 988. - Maintain separate identity keys for incoming and outgoing TLS contexts in bridge relays. Previously we would use the same identity keys for incoming and outgoing TLS contexts. Bugfix on 0.2.0.3-alpha; addresses the other half of bug 988. - Make the bridge directory authority refuse to answer directory requests for "all descriptors". It used to include bridge descriptors in its answer, which was a major information leak. Found by "piebeer". Bugfix on 0.2.0.3-alpha. o Privacy fixes (clients): - When receiving a hidden service descriptor, check that it is for the hidden service we wanted. Previously, Tor would store any hidden service descriptors that a directory gave it, whether it wanted them or not. This wouldn't have let an attacker impersonate a hidden service, but it did let directories pre-seed a client with descriptors that it didn't want. Bugfix on 0.0.6. - Start the process of disabling ".exit" address notation, since it can be used for a variety of esoteric application-level attacks on users. To reenable it, set "AllowDotExit 1" in your torrc. Fix on 0.0.9rc5. - Reject attempts at the client side to open connections to private IP addresses (like 127.0.0.1, 10.0.0.1, and so on) with a randomly chosen exit node. Attempts to do so are always ill-defined, generally prevented by exit policies, and usually in error. This will also help to detect loops in transparent proxy configurations. You can disable this feature by setting "ClientRejectInternalAddresses 0" in your torrc. - Log a notice when we get a new control connection. Now it's easier for security-conscious users to recognize when a local application is knocking on their controller door. Suggested by bug 1196. o Privacy fixes (newnym): - Avoid linkability based on cached hidden service descriptors: forget all hidden service descriptors cached as a client when processing a SIGNAL NEWNYM command. Fixes bug 3000; bugfix on 0.0.6. - On SIGHUP, do not clear out all TrackHostExits mappings, client DNS cache entries, and virtual address mappings: that's what NEWNYM is for. Fixes bug 1345; bugfix on 0.1.0.1-rc. - Don't attach new streams to old rendezvous circuits after SIGNAL NEWNYM. Previously, we would keep using an existing rendezvous circuit if it remained open (i.e. if it were kept open by a long-lived stream, or if a new stream were attached to it before Tor could notice that it was old and no longer in use). Bugfix on 0.1.1.15-rc; fixes bug 3375. o Major bugfixes (relay bandwidth accounting): - Fix a bug that could break accounting on 64-bit systems with large time_t values, making them hibernate for impossibly long intervals. Fixes bug 2146. Bugfix on 0.0.9pre6; fix by boboper. - Fix a bug in bandwidth accounting that could make us use twice the intended bandwidth when our interval start changes due to daylight saving time. Now we tolerate skew in stored vs computed interval starts: if the start of the period changes by no more than 50% of the period's duration, we remember bytes that we transferred in the old period. Fixes bug 1511; bugfix on 0.0.9pre5. o Major bugfixes (bridges): - Bridges now use "reject *:*" as their default exit policy. Bugfix on 0.2.0.3-alpha. Fixes bug 1113. - If you configure your bridge with a known identity fingerprint, and the bridge authority is unreachable (as it is in at least one country now), fall back to directly requesting the descriptor from the bridge. Finishes the feature started in 0.2.0.10-alpha; closes bug 1138. - Fix a bug where bridge users who configure the non-canonical address of a bridge automatically switch to its canonical address. If a bridge listens at more than one address, it should be able to advertise those addresses independently and any non-blocked addresses should continue to work. Bugfix on Tor 0.2.0.3-alpha. Fixes bug 2510. - If you configure Tor to use bridge A, and then quit and configure Tor to use bridge B instead (or if you change Tor to use bridge B via the controller), it would happily continue to use bridge A if it's still reachable. While this behavior is a feature if your goal is connectivity, in some scenarios it's a dangerous bug. Bugfix on Tor 0.2.0.1-alpha; fixes bug 2511. - When the controller configures a new bridge, don't wait 10 to 60 seconds before trying to fetch its descriptor. Bugfix on 0.2.0.3-alpha; fixes bug 3198 (suggested by 2355). o Major bugfixes (directory authorities): - Many relays have been falling out of the consensus lately because not enough authorities know about their descriptor for them to get a majority of votes. When we deprecated the v2 directory protocol, we got rid of the only way that v3 authorities can hear from each other about other descriptors. Now authorities examine every v3 vote for new descriptors, and fetch them from that authority. Bugfix on 0.2.1.23. - Authorities could be tricked into giving out the Exit flag to relays that didn't allow exiting to any ports. This bug could screw with load balancing and stats. Bugfix on 0.1.1.6-alpha; fixes bug 1238. Bug discovered by Martin Kowalczyk. - If all authorities restart at once right before a consensus vote, nobody will vote about "Running", and clients will get a consensus with no usable relays. Instead, authorities refuse to build a consensus if this happens. Bugfix on 0.2.0.10-alpha; fixes bug 1066. o Major bugfixes (stream-level fairness): - When receiving a circuit-level SENDME for a blocked circuit, try to package cells fairly from all the streams that had previously been blocked on that circuit. Previously, we had started with the oldest stream, and allowed each stream to potentially exhaust the circuit's package window. This gave older streams on any given circuit priority over newer ones. Fixes bug 1937. Detected originally by Camilo Viecco. This bug was introduced before the first Tor release, in svn commit r152: it is the new winner of the longest-lived bug prize. - Fix a stream fairness bug that would cause newer streams on a given circuit to get preference when reading bytes from the origin or destination. Fixes bug 2210. Fix by Mashael AlSabah. This bug was introduced before the first Tor release, in svn revision r152. - When the exit relay got a circuit-level sendme cell, it started reading on the exit streams, even if had 500 cells queued in the circuit queue already, so the circuit queue just grew and grew in some cases. We fix this by not re-enabling reading on receipt of a sendme cell when the cell queue is blocked. Fixes bug 1653. Bugfix on 0.2.0.1-alpha. Detected by Mashael AlSabah. Original patch by "yetonetime". - Newly created streams were allowed to read cells onto circuits, even if the circuit's cell queue was blocked and waiting to drain. This created potential unfairness, as older streams would be blocked, but newer streams would gladly fill the queue completely. We add code to detect this situation and prevent any stream from getting more than one free cell. Bugfix on 0.2.0.1-alpha. Partially fixes bug 1298. o Major bugfixes (hidden services): - Apply circuit timeouts to opened hidden-service-related circuits based on the correct start time. Previously, we would apply the circuit build timeout based on time since the circuit's creation; it was supposed to be applied based on time since the circuit entered its current state. Bugfix on 0.0.6; fixes part of bug 1297. - Improve hidden service robustness: When we find that we have extended a hidden service's introduction circuit to a relay not listed as an introduction point in the HS descriptor we currently have, retry with an introduction point from the current descriptor. Previously we would just give up. Fixes bugs 1024 and 1930; bugfix on 0.2.0.10-alpha. - Directory authorities now use data collected from their own uptime observations when choosing whether to assign the HSDir flag to relays, instead of trusting the uptime value the relay reports in its descriptor. This change helps prevent an attack where a small set of nodes with frequently-changing identity keys can blackhole a hidden service. (Only authorities need upgrade; others will be fine once they do.) Bugfix on 0.2.0.10-alpha; fixes bug 2709. - Stop assigning the HSDir flag to relays that disable their DirPort (and thus will refuse to answer directory requests). This fix should dramatically improve the reachability of hidden services: hidden services and hidden service clients pick six HSDir relays to store and retrieve the hidden service descriptor, and currently about half of the HSDir relays will refuse to work. Bugfix on 0.2.0.10-alpha; fixes part of bug 1693. o Major bugfixes (misc): - Clients now stop trying to use an exit node associated with a given destination by TrackHostExits if they fail to reach that exit node. Fixes bug 2999. Bugfix on 0.2.0.20-rc. - Fix a regression that caused Tor to rebind its ports if it receives SIGHUP while hibernating. Bugfix in 0.1.1.6-alpha; closes bug 919. - Remove an extra pair of quotation marks around the error message in control-port STATUS_GENERAL BUG events. Bugfix on 0.1.2.6-alpha; fixes bug 3732. o Minor features (relays): - Ensure that no empty [dirreq-](read|write)-history lines are added to an extrainfo document. Implements ticket 2497. - When bandwidth accounting is enabled, be more generous with how much bandwidth we'll use up before entering "soft hibernation". Previously, we'd refuse new connections and circuits once we'd used up 95% of our allotment. Now, we use up 95% of our allotment, AND make sure that we have no more than 500MB (or 3 hours of expected traffic, whichever is lower) remaining before we enter soft hibernation. - Relays now log the reason for publishing a new relay descriptor, so we have a better chance of hunting down instances of bug 1810. Resolves ticket 3252. - Log a little more clearly about the times at which we're no longer accepting new connections (e.g. due to hibernating). Resolves bug 2181. - When AllowSingleHopExits is set, print a warning to explain to the relay operator why most clients are avoiding her relay. - Send END_STREAM_REASON_NOROUTE in response to EHOSTUNREACH errors. Clients before 0.2.1.27 didn't handle NOROUTE correctly, but such clients are already deprecated because of security bugs. o Minor features (network statistics): - Directory mirrors that set "DirReqStatistics 1" write statistics about directory requests to disk every 24 hours. As compared to the "--enable-geoip-stats" ./configure flag in 0.2.1.x, there are a few improvements: 1) stats are written to disk exactly every 24 hours; 2) estimated shares of v2 and v3 requests are determined as mean values, not at the end of a measurement period; 3) unresolved requests are listed with country code '??'; 4) directories also measure download times. - Exit nodes that set "ExitPortStatistics 1" write statistics on the number of exit streams and transferred bytes per port to disk every 24 hours. - Relays that set "CellStatistics 1" write statistics on how long cells spend in their circuit queues to disk every 24 hours. - Entry nodes that set "EntryStatistics 1" write statistics on the rough number and origins of connecting clients to disk every 24 hours. - Relays that write any of the above statistics to disk and set "ExtraInfoStatistics 1" include the past 24 hours of statistics in their extra-info documents. Implements proposal 166. o Minor features (GeoIP and statistics): - Provide a log message stating which geoip file we're parsing instead of just stating that we're parsing the geoip file. Implements ticket 2432. - Make sure every relay writes a state file at least every 12 hours. Previously, a relay could go for weeks without writing its state file, and on a crash could lose its bandwidth history, capacity estimates, client country statistics, and so on. Addresses bug 3012. - Relays report the number of bytes spent on answering directory requests in extra-info descriptors similar to {read,write}-history. Implements enhancement 1790. - Report only the top 10 ports in exit-port stats in order not to exceed the maximum extra-info descriptor length of 50 KB. Implements task 2196. - If writing the state file to disk fails, wait up to an hour before retrying again, rather than trying again each second. Fixes bug 2346; bugfix on Tor 0.1.1.3-alpha. - Delay geoip stats collection by bridges for 6 hours, not 2 hours, when we switch from being a public relay to a bridge. Otherwise there will still be clients that see the relay in their consensus, and the stats will end up wrong. Bugfix on 0.2.1.15-rc; fixes bug 932. - Update to the August 2 2011 Maxmind GeoLite Country database. o Minor features (clients): - When expiring circuits, use microsecond timers rather than one-second timers. This can avoid an unpleasant situation where a circuit is launched near the end of one second and expired right near the beginning of the next, and prevent fluctuations in circuit timeout values. - If we've configured EntryNodes and our network goes away and/or all our entrynodes get marked down, optimistically retry them all when a new socks application request appears. Fixes bug 1882. - Always perform router selections using weighted relay bandwidth, even if we don't need a high capacity circuit at the time. Non-fast circuits now only differ from fast ones in that they can use relays not marked with the Fast flag. This "feature" could turn out to be a horrible bug; we should investigate more before it goes into a stable release. - When we run out of directory information such that we can't build circuits, but then get enough that we can build circuits, log when we actually construct a circuit, so the user has a better chance of knowing what's going on. Fixes bug 1362. - Log SSL state transitions at debug level during handshake, and include SSL states in error messages. This may help debug future SSL handshake issues. o Minor features (directory authorities): - When a router changes IP address or port, authorities now launch a new reachability test for it. Implements ticket 1899. - Directory authorities now reject relays running any versions of Tor between 0.2.1.3-alpha and 0.2.1.18 inclusive; they have known bugs that keep RELAY_EARLY cells from working on rendezvous circuits. Followup to fix for bug 2081. - Directory authorities now reject relays running any version of Tor older than 0.2.0.26-rc. That version is the earliest that fetches current directory information correctly. Fixes bug 2156. - Directory authorities now do an immediate reachability check as soon as they hear about a new relay. This change should slightly reduce the time between setting up a relay and getting listed as running in the consensus. It should also improve the time between setting up a bridge and seeing use by bridge users. - Directory authorities no longer launch a TLS connection to every relay as they startup. Now that we have 2k+ descriptors cached, the resulting network hiccup is becoming a burden. Besides, authorities already avoid voting about Running for the first half hour of their uptime. - Directory authorities now log the source of a rejected POSTed v3 networkstatus vote, so we can track failures better. - Backport code from 0.2.3.x that allows directory authorities to clean their microdescriptor caches. Needed to resolve bug 2230. o Minor features (hidden services): - Use computed circuit-build timeouts to decide when to launch parallel introduction circuits for hidden services. (Previously, we would retry after 15 seconds.) - Don't allow v0 hidden service authorities to act as clients. Required by fix for bug 3000. - Ignore SIGNAL NEWNYM commands on relay-only Tor instances. Required by fix for bug 3000. - Make hidden services work better in private Tor networks by not requiring any uptime to join the hidden service descriptor DHT. Implements ticket 2088. - Log (at info level) when purging pieces of hidden-service-client state because of SIGNAL NEWNYM. o Minor features (controller interface): - New "GETINFO net/listeners/(type)" controller command to return a list of addresses and ports that are bound for listeners for a given connection type. This is useful when the user has configured "SocksPort auto" and the controller needs to know which port got chosen. Resolves another part of ticket 3076. - Have the controller interface give a more useful message than "Internal Error" in response to failed GETINFO requests. - Add a TIMEOUT_RATE keyword to the BUILDTIMEOUT_SET control port event, to give information on the current rate of circuit timeouts over our stored history. - The 'EXTENDCIRCUIT' control port command can now be used with a circ id of 0 and no path. This feature will cause Tor to build a new 'fast' general purpose circuit using its own path selection algorithms. - Added a BUILDTIMEOUT_SET controller event to describe changes to the circuit build timeout. - New controller command "getinfo config-text". It returns the contents that Tor would write if you send it a SAVECONF command, so the controller can write the file to disk itself. o Minor features (controller protocol): - Add a new ControlSocketsGroupWritable configuration option: when it is turned on, ControlSockets are group-writeable by the default group of the current user. Patch by Jérémy Bobbio; implements ticket 2972. - Tor now refuses to create a ControlSocket in a directory that is world-readable (or group-readable if ControlSocketsGroupWritable is 0). This is necessary because some operating systems do not enforce permissions on an AF_UNIX sockets. Permissions on the directory holding the socket, however, seems to work everywhere. - Warn when CookieAuthFileGroupReadable is set but CookieAuthFile is not. This would lead to a cookie that is still not group readable. Closes bug 1843. Suggested by katmagic. - Future-proof the controller protocol a bit by ignoring keyword arguments we do not recognize. o Minor features (more useful logging): - Revise most log messages that refer to nodes by nickname to instead use the "$key=nickname at address" format. This should be more useful, especially since nicknames are less and less likely to be unique. Resolves ticket 3045. - When an HTTPS proxy reports "403 Forbidden", we now explain what it means rather than calling it an unexpected status code. Closes bug 2503. Patch from Michael Yakubovich. - Rate-limit a warning about failures to download v2 networkstatus documents. Resolves part of bug 1352. - Rate-limit the "your application is giving Tor only an IP address" warning. Addresses bug 2000; bugfix on 0.0.8pre2. - Rate-limit "Failed to hand off onionskin" warnings. - When logging a rate-limited warning, we now mention how many messages got suppressed since the last warning. - Make the formerly ugly "2 unknown, 7 missing key, 0 good, 0 bad, 2 no signature, 4 required" messages about consensus signatures easier to read, and make sure they get logged at the same severity as the messages explaining which keys are which. Fixes bug 1290. - Don't warn when we have a consensus that we can't verify because of missing certificates, unless those certificates are ones that we have been trying and failing to download. Fixes bug 1145. o Minor features (log domains): - Add documentation for configuring logging at different severities in different log domains. We've had this feature since 0.2.1.1-alpha, but for some reason it never made it into the manpage. Fixes bug 2215. - Make it simpler to specify "All log domains except for A and B". Previously you needed to say "[*,~A,~B]". Now you can just say "[~A,~B]". - Add a "LogMessageDomains 1" option to include the domains of log messages along with the messages. Without this, there's no way to use log domains without reading the source or doing a lot of guessing. - Add a new "Handshake" log domain for activities that happen during the TLS handshake. o Minor features (build process): - Make compilation with clang possible when using "--enable-gcc-warnings" by removing two warning options that clang hasn't implemented yet and by fixing a few warnings. Resolves ticket 2696. - Detect platforms that brokenly use a signed size_t, and refuse to build there. Found and analyzed by doorss and rransom. - Fix a bunch of compile warnings revealed by mingw with gcc 4.5. Resolves bug 2314. - Add support for statically linking zlib by specifying "--enable-static-zlib", to go with our support for statically linking openssl and libevent. Resolves bug 1358. - Instead of adding the svn revision to the Tor version string, report the git commit (when we're building from a git checkout). - Rename the "log.h" header to "torlog.h" so as to conflict with fewer system headers. - New --digests command-line switch to output the digests of the source files Tor was built with. - Generate our manpage and HTML documentation using Asciidoc. This change should make it easier to maintain the documentation, and produce nicer HTML. The build process fails if asciidoc cannot be found and building with asciidoc isn't disabled (via the "--disable-asciidoc" argument to ./configure. Skipping the manpage speeds up the build considerably. o Minor features (options / torrc): - Warn when the same option is provided more than once in a torrc file, on the command line, or in a single SETCONF statement, and the option is one that only accepts a single line. Closes bug 1384. - Warn when the user configures two HiddenServiceDir lines that point to the same directory. Bugfix on 0.0.6 (the version introducing HiddenServiceDir); fixes bug 3289. - Add new "perconnbwrate" and "perconnbwburst" consensus params to do individual connection-level rate limiting of clients. The torrc config options with the same names trump the consensus params, if both are present. Replaces the old "bwconnrate" and "bwconnburst" consensus params which were broken from 0.2.2.7-alpha through 0.2.2.14-alpha. Closes bug 1947. - New config option "WarnUnsafeSocks 0" disables the warning that occurs whenever Tor receives a socks handshake using a version of the socks protocol that can only provide an IP address (rather than a hostname). Setups that do DNS locally over Tor are fine, and we shouldn't spam the logs in that case. - New config option "CircuitStreamTimeout" to override our internal timeout schedule for how many seconds until we detach a stream from a circuit and try a new circuit. If your network is particularly slow, you might want to set this to a number like 60. - New options for SafeLogging to allow scrubbing only log messages generated while acting as a relay. Specify "SafeLogging relay" if you want to ensure that only messages known to originate from client use of the Tor process will be logged unsafely. - Time and memory units in the configuration file can now be set to fractional units. For example, "2.5 GB" is now a valid value for AccountingMax. - Support line continuations in the torrc config file. If a line ends with a single backslash character, the newline is ignored, and the configuration value is treated as continuing on the next line. Resolves bug 1929. o Minor features (unit tests): - Revise our unit tests to use the "tinytest" framework, so we can run tests in their own processes, have smarter setup/teardown code, and so on. The unit test code has moved to its own subdirectory, and has been split into multiple modules. - Add a unit test for cross-platform directory-listing code. - Add some forgotten return value checks during unit tests. Found by coverity. - Use GetTempDir to find the proper temporary directory location on Windows when generating temporary files for the unit tests. Patch by Gisle Vanem. o Minor features (misc): - The "torify" script now uses torsocks where available. - Make Libevent log messages get delivered to controllers later, and not from inside the Libevent log handler. This prevents unsafe reentrant Libevent calls while still letting the log messages get through. - Certain Tor clients (such as those behind check.torproject.org) may want to fetch the consensus in an extra early manner. To enable this a user may now set FetchDirInfoExtraEarly to 1. This also depends on setting FetchDirInfoEarly to 1. Previous behavior will stay the same as only certain clients who must have this information sooner should set this option. - Expand homedirs passed to tor-checkkey. This should silence a coverity complaint about passing a user-supplied string into open() without checking it. - Make sure to disable DirPort if running as a bridge. DirPorts aren't used on bridges, and it makes bridge scanning somewhat easier. - Create the /var/run/tor directory on startup on OpenSUSE if it is not already created. Patch from Andreas Stieger. Fixes bug 2573. o Minor bugfixes (relays): - When a relay decides that its DNS is too broken for it to serve as an exit server, it advertised itself as a non-exit, but continued to act as an exit. This could create accidental partitioning opportunities for users. Instead, if a relay is going to advertise reject *:* as its exit policy, it should really act with exit policy "reject *:*". Fixes bug 2366. Bugfix on Tor 0.1.2.5-alpha. Bugfix by user "postman" on trac. - Publish a router descriptor even if generating an extra-info descriptor fails. Previously we would not publish a router descriptor without an extra-info descriptor; this can cause fast exit relays collecting exit-port statistics to drop from the consensus. Bugfix on 0.1.2.9-rc; fixes bug 2195. - When we're trying to guess whether we know our IP address as a relay, we would log various ways that we failed to guess our address, but never log that we ended up guessing it successfully. Now add a log line to help confused and anxious relay operators. Bugfix on 0.1.2.1-alpha; fixes bug 1534. - For bandwidth accounting, calculate our expected bandwidth rate based on the time during which we were active and not in soft-hibernation during the last interval. Previously, we were also considering the time spent in soft-hibernation. If this was a long time, we would wind up underestimating our bandwidth by a lot, and skewing our wakeup time towards the start of the accounting interval. Fixes bug 1789. Bugfix on 0.0.9pre5. - Demote a confusing TLS warning that relay operators might get when someone tries to talk to their ORPort. It is not the operator's fault, nor can they do anything about it. Fixes bug 1364; bugfix on 0.2.0.14-alpha. - Change "Application request when we're believed to be offline." notice to "Application request when we haven't used client functionality lately.", to clarify that it's not an error. Bugfix on 0.0.9.3; fixes bug 1222. o Minor bugfixes (bridges): - When a client starts or stops using bridges, never use a circuit that was built before the configuration change. This behavior could put at risk a user who uses bridges to ensure that her traffic only goes to the chosen addresses. Bugfix on 0.2.0.3-alpha; fixes bug 3200. - Do not reset the bridge descriptor download status every time we re-parse our configuration or get a configuration change. Fixes bug 3019; bugfix on 0.2.0.3-alpha. - Users couldn't configure a regular relay to be their bridge. It didn't work because when Tor fetched the bridge descriptor, it found that it already had it, and didn't realize that the purpose of the descriptor had changed. Now we replace routers with a purpose other than bridge with bridge descriptors when fetching them. Bugfix on 0.1.1.9-alpha. Fixes bug 1776. - In the special case where you configure a public exit relay as your bridge, Tor would be willing to use that exit relay as the last hop in your circuit as well. Now we fail that circuit instead. Bugfix on 0.2.0.12-alpha. Fixes bug 2403. Reported by "piebeer". o Minor bugfixes (clients): - We now ask the other side of a stream (the client or the exit) for more data on that stream when the amount of queued data on that stream dips low enough. Previously, we wouldn't ask the other side for more data until either it sent us more data (which it wasn't supposed to do if it had exhausted its window!) or we had completely flushed all our queued data. This flow control fix should improve throughput. Fixes bug 2756; bugfix on the earliest released versions of Tor (svn commit r152). - When a client finds that an origin circuit has run out of 16-bit stream IDs, we now mark it as unusable for new streams. Previously, we would try to close the entire circuit. Bugfix on 0.0.6. - Make it explicit that we don't cannibalize one-hop circuits. This happens in the wild, but doesn't turn out to be a problem because we fortunately don't use those circuits. Many thanks to outofwords for the initial analysis and to swissknife who confirmed that two-hop circuits are actually created. - Resolve an edge case in path weighting that could make us misweight our relay selection. Fixes bug 1203; bugfix on 0.0.8rc1. - Make the DNSPort option work with libevent 2.x. Don't alter the behavior for libevent 1.x. Fixes bug 1143. Found by SwissTorExit. o Minor bugfixes (directory authorities): - Make directory authorities more accurate at recording when relays that have failed several reachability tests became unreachable, so we can provide more accuracy at assigning Stable, Guard, HSDir, etc flags. Bugfix on 0.2.0.6-alpha. Resolves bug 2716. - Directory authorities are now more robust to hops back in time when calculating router stability. Previously, if a run of uptime or downtime appeared to be negative, the calculation could give incorrect results. Bugfix on 0.2.0.6-alpha; noticed when fixing bug 1035. - Directory authorities will now attempt to download consensuses if their own efforts to make a live consensus have failed. This change means authorities that restart will fetch a valid consensus, and it means authorities that didn't agree with the current consensus will still fetch and serve it if it has enough signatures. Bugfix on 0.2.0.9-alpha; fixes bug 1300. - Never vote for a server as "Running" if we have a descriptor for it claiming to be hibernating, and that descriptor was published more recently than our last contact with the server. Bugfix on 0.2.0.3-alpha; fixes bug 911. - Directory authorities no longer change their opinion of, or vote on, whether a router is Running, unless they have themselves been online long enough to have some idea. Bugfix on 0.2.0.6-alpha. Fixes bug 1023. o Minor bugfixes (hidden services): - Log malformed requests for rendezvous descriptors as protocol warnings, not warnings. Also, use a more informative log message in case someone sees it at log level warning without prior info-level messages. Fixes bug 2748; bugfix on 0.2.0.10-alpha. - Accept hidden service descriptors if we think we might be a hidden service directory, regardless of what our consensus says. This helps robustness, since clients and hidden services can sometimes have a more up-to-date view of the network consensus than we do, and if they think that the directory authorities list us a HSDir, we might actually be one. Related to bug 2732; bugfix on 0.2.0.10-alpha. - Correct the warning displayed when a rendezvous descriptor exceeds the maximum size. Fixes bug 2750; bugfix on 0.2.1.5-alpha. Found by John Brooks. - Clients and hidden services now use HSDir-flagged relays for hidden service descriptor downloads and uploads even if the relays have no DirPort set and the client has disabled TunnelDirConns. This will eventually allow us to give the HSDir flag to relays with no DirPort. Fixes bug 2722; bugfix on 0.2.1.6-alpha. - Only limit the lengths of single HS descriptors, even when multiple HS descriptors are published to an HSDir relay in a single POST operation. Fixes bug 2948; bugfix on 0.2.1.5-alpha. Found by hsdir. o Minor bugfixes (controllers): - Allow GETINFO fingerprint to return a fingerprint even when we have not yet built a router descriptor. Fixes bug 3577; bugfix on 0.2.0.1-alpha. - Send a SUCCEEDED stream event to the controller when a reverse resolve succeeded. Fixes bug 3536; bugfix on 0.0.8pre1. Issue discovered by katmagic. - Remove a trailing asterisk from "exit-policy/default" in the output of the control port command "GETINFO info/names". Bugfix on 0.1.2.5-alpha. - Make the SIGNAL DUMP controller command work on FreeBSD. Fixes bug 2917. Bugfix on 0.1.1.1-alpha. - When we restart our relay, we might get a successful connection from the outside before we've started our reachability tests, triggering a warning: "ORPort found reachable, but I have no routerinfo yet. Failing to inform controller of success." This bug was harmless unless Tor is running under a controller like Vidalia, in which case the controller would never get a REACHABILITY_SUCCEEDED status event. Bugfix on 0.1.2.6-alpha; fixes bug 1172. - When a controller changes TrackHostExits, remove mappings for hosts that should no longer have their exits tracked. Bugfix on 0.1.0.1-rc. - When a controller changes VirtualAddrNetwork, remove any mappings for hosts that were automapped to the old network. Bugfix on 0.1.1.19-rc. - When a controller changes one of the AutomapHosts* options, remove any mappings for hosts that should no longer be automapped. Bugfix on 0.2.0.1-alpha. - Fix an off-by-one error in calculating some controller command argument lengths. Fortunately, this mistake is harmless since the controller code does redundant NUL termination too. Found by boboper. Bugfix on 0.1.1.1-alpha. - Fix a bug in the controller interface where "GETINFO ns/asdaskljkl" would return "551 Internal error" rather than "552 Unrecognized key ns/asdaskljkl". Bugfix on 0.1.2.3-alpha. - Don't spam the controller with events when we have no file descriptors available. Bugfix on 0.2.1.5-alpha. (Rate-limiting for log messages was already solved from bug 748.) - Emit a GUARD DROPPED controller event for a case we missed. - Ensure DNS requests launched by "RESOLVE" commands from the controller respect the __LeaveStreamsUnattached setconf options. The same goes for requests launched via DNSPort or transparent proxying. Bugfix on 0.2.0.1-alpha; fixes bug 1525. o Minor bugfixes (config options): - Tor used to limit HttpProxyAuthenticator values to 48 characters. Change the limit to 512 characters by removing base64 newlines. Fixes bug 2752. Fix by Michael Yakubovich. - Complain if PublishServerDescriptor is given multiple arguments that include 0 or 1. This configuration will be rejected in the future. Bugfix on 0.2.0.1-alpha; closes bug 1107. - Disallow BridgeRelay 1 and ORPort 0 at once in the configuration. Bugfix on 0.2.0.13-alpha; closes bug 928. o Minor bugfixes (log subsystem fixes): - When unable to format an address as a string, report its value as "???" rather than reusing the last formatted address. Bugfix on 0.2.1.5-alpha. - Be more consistent in our treatment of file system paths. "~" should get expanded to the user's home directory in the Log config option. Fixes bug 2971; bugfix on 0.2.0.1-alpha, which introduced the feature for the -f and --DataDirectory options. o Minor bugfixes (memory management): - Don't stack-allocate the list of supplementary GIDs when we're about to log them. Stack-allocating NGROUPS_MAX gid_t elements could take up to 256K, which is way too much stack. Found by Coverity; CID #450. Bugfix on 0.2.1.7-alpha. - Save a couple bytes in memory allocation every time we escape certain characters in a string. Patch from Florian Zumbiehl. o Minor bugfixes (protocol correctness): - When checking for 1024-bit keys, check for 1024 bits, not 128 bytes. This allows Tor to correctly discard keys of length 1017 through 1023. Bugfix on 0.0.9pre5. - Require that introduction point keys and onion handshake keys have a public exponent of 65537. Starts to fix bug 3207; bugfix on 0.2.0.10-alpha. - Handle SOCKS messages longer than 128 bytes long correctly, rather than waiting forever for them to finish. Fixes bug 2330; bugfix on 0.2.0.16-alpha. Found by doorss. - Never relay a cell for a circuit we have already destroyed. Between marking a circuit as closeable and finally closing it, it may have been possible for a few queued cells to get relayed, even though they would have been immediately dropped by the next OR in the circuit. Fixes bug 1184; bugfix on 0.2.0.1-alpha. - Never queue a cell for a circuit that's already been marked for close. - Fix a spec conformance issue: the network-status-version token must be the first token in a v3 consensus or vote. Discovered by "parakeep". Bugfix on 0.2.0.3-alpha. - A networkstatus vote must contain exactly one signature. Spec conformance issue. Bugfix on 0.2.0.3-alpha. - When asked about a DNS record type we don't support via a client DNSPort, reply with NOTIMPL rather than an empty reply. Patch by intrigeri. Fixes bug 3369; bugfix on 2.0.1-alpha. - Make more fields in the controller protocol case-insensitive, since control-spec.txt said they were. o Minor bugfixes (log messages): - Fix a log message that said "bits" while displaying a value in bytes. Found by wanoskarnet. Fixes bug 3318; bugfix on 0.2.0.1-alpha. - Downgrade "no current certificates known for authority" message from Notice to Info. Fixes bug 2899; bugfix on 0.2.0.10-alpha. - Correctly describe errors that occur when generating a TLS object. Previously we would attribute them to a failure while generating a TLS context. Patch by Robert Ransom. Bugfix on 0.1.0.4-rc; fixes bug 1994. - Fix an instance where a Tor directory mirror might accidentally log the IP address of a misbehaving Tor client. Bugfix on 0.1.0.1-rc. - Stop logging at severity 'warn' when some other Tor client tries to establish a circuit with us using weak DH keys. It's a protocol violation, but that doesn't mean ordinary users need to hear about it. Fixes the bug part of bug 1114. Bugfix on 0.1.0.13. - If your relay can't keep up with the number of incoming create cells, it would log one warning per failure into your logs. Limit warnings to 1 per minute. Bugfix on 0.0.2pre10; fixes bug 1042. o Minor bugfixes (build fixes): - Fix warnings from GCC 4.6's "-Wunused-but-set-variable" option. - When warning about missing zlib development packages during compile, give the correct package names. Bugfix on 0.2.0.1-alpha. - Fix warnings that newer versions of autoconf produce during ./autogen.sh. These warnings appear to be harmless in our case, but they were extremely verbose. Fixes bug 2020. - Squash a compile warning on OpenBSD. Reported by Tas; fixes bug 1848. o Minor bugfixes (portability): - Write several files in text mode, on OSes that distinguish text mode from binary mode (namely, Windows). These files are: 'buffer-stats', 'dirreq-stats', and 'entry-stats' on relays that collect those statistics; 'client_keys' and 'hostname' for hidden services that use authentication; and (in the tor-gencert utility) newly generated identity and signing keys. Previously, we wouldn't specify text mode or binary mode, leading to an assertion failure. Fixes bug 3607. Bugfix on 0.2.1.1-alpha (when the DirRecordUsageByCountry option which would have triggered the assertion failure was added), although this assertion failure would have occurred in tor-gencert on Windows in 0.2.0.1-alpha. - Selectively disable deprecation warnings on OS X because Lion started deprecating the shipped copy of openssl. Fixes bug 3643. - Use a wide type to hold sockets when built for 64-bit Windows. Fixes bug 3270. - Fix an issue that prevented static linking of libevent on some platforms (notably Linux). Fixes bug 2698; bugfix on 0.2.1.23, where we introduced the "--with-static-libevent" configure option. - Fix a bug with our locking implementation on Windows that couldn't correctly detect when a file was already locked. Fixes bug 2504, bugfix on 0.2.1.6-alpha. - Build correctly on OSX with zlib 1.2.4 and higher with all warnings enabled. - Fix IPv6-related connect() failures on some platforms (BSD, OS X). Bugfix on 0.2.0.3-alpha; fixes first part of bug 2660. Patch by "piebeer". o Minor bugfixes (code correctness): - Always NUL-terminate the sun_path field of a sockaddr_un before passing it to the kernel. (Not a security issue: kernels are smart enough to reject bad sockaddr_uns.) Found by Coverity; CID #428. Bugfix on Tor 0.2.0.3-alpha. - Make connection_printf_to_buf()'s behavior sane. Its callers expect it to emit a CRLF iff the format string ends with CRLF; it actually emitted a CRLF iff (a) the format string ended with CRLF or (b) the resulting string was over 1023 characters long or (c) the format string did not end with CRLF *and* the resulting string was 1021 characters long or longer. Bugfix on 0.1.1.9-alpha; fixes part of bug 3407. - Make send_control_event_impl()'s behavior sane. Its callers expect it to always emit a CRLF at the end of the string; it might have emitted extra control characters as well. Bugfix on 0.1.1.9-alpha; fixes another part of bug 3407. - Make crypto_rand_int() check the value of its input correctly. Previously, it accepted values up to UINT_MAX, but could return a negative number if given a value above INT_MAX+1. Found by George Kadianakis. Fixes bug 3306; bugfix on 0.2.2pre14. - Fix a potential null-pointer dereference while computing a consensus. Bugfix on tor-0.2.0.3-alpha, found with the help of clang's analyzer. - If we fail to compute the identity digest of a v3 legacy keypair, warn, and don't use a buffer-full of junk instead. Bugfix on 0.2.1.1-alpha; fixes bug 3106. - Resolve an untriggerable issue in smartlist_string_num_isin(), where if the function had ever in the future been used to check for the presence of a too-large number, it would have given an incorrect result. (Fortunately, we only used it for 16-bit values.) Fixes bug 3175; bugfix on 0.1.0.1-rc. - Be more careful about reporting the correct error from a failed connect() system call. Under some circumstances, it was possible to look at an incorrect value for errno when sending the end reason. Bugfix on 0.1.0.1-rc. - Correctly handle an "impossible" overflow cases in connection byte counting, where we write or read more than 4GB on an edge connection in a single second. Bugfix on 0.1.2.8-beta. - Avoid a double mark-for-free warning when failing to attach a transparent proxy connection. Bugfix on 0.1.2.1-alpha. Fixes bug 2279. - Correctly detect failure to allocate an OpenSSL BIO. Fixes bug 2378; found by "cypherpunks". This bug was introduced before the first Tor release, in svn commit r110. - Fix a bug in bandwidth history state parsing that could have been triggered if a future version of Tor ever changed the timing granularity at which bandwidth history is measured. Bugfix on Tor 0.1.1.11-alpha. - Add assertions to check for overflow in arguments to base32_encode() and base32_decode(); fix a signed-unsigned comparison there too. These bugs are not actually reachable in Tor, but it's good to prevent future errors too. Found by doorss. - Avoid a bogus overlapped memcpy in tor_addr_copy(). Reported by "memcpyfail". - Set target port in get_interface_address6() correctly. Bugfix on 0.1.1.4-alpha and 0.2.0.3-alpha; fixes second part of bug 2660. - Fix an impossible-to-actually-trigger buffer overflow in relay descriptor generation. Bugfix on 0.1.0.15. - Fix numerous small code-flaws found by Coverity Scan Rung 3. o Minor bugfixes (code improvements): - After we free an internal connection structure, overwrite it with a different memory value than we use for overwriting a freed internal circuit structure. Should help with debugging. Suggested by bug 1055. - If OpenSSL fails to make a duplicate of a private or public key, log an error message and try to exit cleanly. May help with debugging if bug 1209 ever remanifests. - Some options used different conventions for uppercasing of acronyms when comparing manpage and source. Fix those in favor of the manpage, as it makes sense to capitalize acronyms. - Take a first step towards making or.h smaller by splitting out function definitions for all source files in src/or/. Leave structures and defines in or.h for now. - Remove a few dead assignments during router parsing. Found by coverity. - Don't use 1-bit wide signed bit fields. Found by coverity. - Avoid signed/unsigned comparisons by making SIZE_T_CEILING unsigned. None of the cases where we did this before were wrong, but by making this change we avoid warnings. Fixes bug 2475; bugfix on 0.2.1.28. - The memarea code now uses a sentinel value at the end of each area to make sure nothing writes beyond the end of an area. This might help debug some conceivable causes of bug 930. - Always treat failure to allocate an RSA key as an unrecoverable allocation error. - Add some more defensive programming for architectures that can't handle unaligned integer accesses. We don't know of any actual bugs right now, but that's the best time to fix them. Fixes bug 1943. o Minor bugfixes (misc): - Fix a rare bug in rend_fn unit tests: we would fail a test when a randomly generated port is 0. Diagnosed by Matt Edman. Bugfix on 0.2.0.10-alpha; fixes bug 1808. - Where available, use Libevent 2.0's periodic timers so that our once-per-second cleanup code gets called even more closely to once per second than it would otherwise. Fixes bug 943. - Ignore OutboundBindAddress when connecting to localhost. Connections to localhost need to come _from_ localhost, or else local servers (like DNS and outgoing HTTP/SOCKS proxies) will often refuse to listen. - Update our OpenSSL 0.9.8l fix so that it works with OpenSSL 0.9.8m too. - If any of the v3 certs we download are unparseable, we should actually notice the failure so we don't retry indefinitely. Bugfix on 0.2.0.x; reported by "rotator". - When Tor fails to parse a descriptor of any kind, dump it to disk. Might help diagnosing bug 1051. - Make our 'torify' script more portable; if we have only one of 'torsocks' or 'tsocks' installed, don't complain to the user; and explain our warning about tsocks better. - Fix some urls in the exit notice file and make it XHTML1.1 strict compliant. Based on a patch from Christian Kujau. o Documentation changes: - Modernize the doxygen configuration file slightly. Fixes bug 2707. - Resolve all doxygen warnings except those for missing documentation. Fixes bug 2705. - Add doxygen documentation for more functions, fields, and types. - Convert the HACKING file to asciidoc, and add a few new sections to it, explaining how we use Git, how we make changelogs, and what should go in a patch. - Document the default socks host and port (127.0.0.1:9050) for tor-resolve. - Removed some unnecessary files from the source distribution. The AUTHORS file has now been merged into the people page on the website. The roadmaps and design doc can now be found in the projects directory in svn. o Deprecated and removed features (config): - Remove the torrc.complete file. It hasn't been kept up to date and users will have better luck checking out the manpage. - Remove the HSAuthorityRecordStats option that version 0 hidden service authorities could use to track statistics of overall v0 hidden service usage. - Remove the obsolete "NoPublish" option; it has been flagged as obsolete and has produced a warning since 0.1.1.18-rc. - Caches no longer download and serve v2 networkstatus documents unless FetchV2Networkstatus flag is set: these documents haven't haven't been used by clients or relays since 0.2.0.x. Resolves bug 3022. o Deprecated and removed features (controller): - The controller no longer accepts the old obsolete "addr-mappings/" or "unregistered-servers-" GETINFO values. - The EXTENDED_EVENTS and VERBOSE_NAMES controller features are now always on; using them is necessary for correct forward-compatible controllers. o Deprecated and removed features (misc): - Hidden services no longer publish version 0 descriptors, and clients do not request or use version 0 descriptors. However, the old hidden service authorities still accept and serve version 0 descriptors when contacted by older hidden services/clients. - Remove undocumented option "-F" from tor-resolve: it hasn't done anything since 0.2.1.16-rc. - Remove everything related to building the expert bundle for OS X. It has confused many users, doesn't work right on OS X 10.6, and is hard to get rid of once installed. Resolves bug 1274. - Remove support for .noconnect style addresses. Nobody was using them, and they provided another avenue for detecting Tor users via application-level web tricks. - When we fixed bug 1038 we had to put in a restriction not to send RELAY_EARLY cells on rend circuits. This was necessary as long as relays using Tor 0.2.1.3-alpha through 0.2.1.18-alpha were active. Now remove this obsolete check. Resolves bug 2081. - Remove workaround code to handle directory responses from servers that had bug 539 (they would send HTTP status 503 responses _and_ send a body too). Since only server versions before 0.2.0.16-alpha/0.1.2.19 were affected, there is no longer reason to keep the workaround in place. - Remove the old 'fuzzy time' logic. It was supposed to be used for handling calculations where we have a known amount of clock skew and an allowed amount of unknown skew. But we only used it in three places, and we never adjusted the known/unknown skew values. This is still something we might want to do someday, but if we do, we'll want to do it differently. - Remove the "--enable-iphone" option to ./configure. According to reports from Marco Bonetti, Tor builds fine without any special tweaking on recent iPhone SDK versions. Changes in version 0.2.1.30 - 2011-02-23 Tor 0.2.1.30 fixes a variety of less critical bugs. The main other change is a slight tweak to Tor's TLS handshake that makes relays and bridges that run this new version reachable from Iran again. We don't expect this tweak will win the arms race long-term, but it buys us time until we roll out a better solution. o Major bugfixes: - Stop sending a CLOCK_SKEW controller status event whenever we fetch directory information from a relay that has a wrong clock. Instead, only inform the controller when it's a trusted authority that claims our clock is wrong. Bugfix on 0.1.2.6-alpha; fixes the rest of bug 1074. - Fix a bounds-checking error that could allow an attacker to remotely crash a directory authority. Bugfix on 0.2.1.5-alpha. Found by "piebeer". - If relays set RelayBandwidthBurst but not RelayBandwidthRate, Tor would ignore their RelayBandwidthBurst setting, potentially using more bandwidth than expected. Bugfix on 0.2.0.1-alpha. Reported by Paul Wouters. Fixes bug 2470. - Ignore and warn if the user mistakenly sets "PublishServerDescriptor hidserv" in her torrc. The 'hidserv' argument never controlled publication of hidden service descriptors. Bugfix on 0.2.0.1-alpha. o Minor features: - Adjust our TLS Diffie-Hellman parameters to match those used by Apache's mod_ssl. - Update to the February 1 2011 Maxmind GeoLite Country database. o Minor bugfixes: - Check for and reject overly long directory certificates and directory tokens before they have a chance to hit any assertions. Bugfix on 0.2.1.28. Found by "doorss". - Bring the logic that gathers routerinfos and assesses the acceptability of circuits into line. This prevents a Tor OP from getting locked in a cycle of choosing its local OR as an exit for a path (due to a .exit request) and then rejecting the circuit because its OR is not listed yet. It also prevents Tor clients from using an OR running in the same instance as an exit (due to a .exit request) if the OR does not meet the same requirements expected of an OR running elsewhere. Fixes bug 1859; bugfix on 0.1.0.1-rc. o Packaging changes: - Stop shipping the Tor specs files and development proposal documents in the tarball. They are now in a separate git repository at git://git.torproject.org/torspec.git - Do not include Git version tags as though they are SVN tags when generating a tarball from inside a repository that has switched between branches. Bugfix on 0.2.1.15-rc; fixes bug 2402. Changes in version 0.2.1.29 - 2011-01-15 Tor 0.2.1.29 continues our recent code security audit work. The main fix resolves a remote heap overflow vulnerability that can allow remote code execution. Other fixes address a variety of assert and crash bugs, most of which we think are hard to exploit remotely. o Major bugfixes (security): - Fix a heap overflow bug where an adversary could cause heap corruption. This bug probably allows remote code execution attacks. Reported by "debuger". Fixes CVE-2011-0427. Bugfix on 0.1.2.10-rc. - Prevent a denial-of-service attack by disallowing any zlib-compressed data whose compression factor is implausibly high. Fixes part of bug 2324; reported by "doorss". - Zero out a few more keys in memory before freeing them. Fixes bug 2384 and part of bug 2385. These key instances found by "cypherpunks", based on Andrew Case's report about being able to find sensitive data in Tor's memory space if you have enough permissions. Bugfix on 0.0.2pre9. o Major bugfixes (crashes): - Prevent calls to Libevent from inside Libevent log handlers. This had potential to cause a nasty set of crashes, especially if running Libevent with debug logging enabled, and running Tor with a controller watching for low-severity log messages. Bugfix on 0.1.0.2-rc. Fixes bug 2190. - Add a check for SIZE_T_MAX to tor_realloc() to try to avoid underflow errors there too. Fixes the other part of bug 2324. - Fix a bug where we would assert if we ever had a cached-descriptors.new file (or another file read directly into memory) of exactly SIZE_T_CEILING bytes. Fixes bug 2326; bugfix on 0.2.1.25. Found by doorss. - Fix some potential asserts and parsing issues with grossly malformed router caches. Fixes bug 2352; bugfix on Tor 0.2.1.27. Found by doorss. o Minor bugfixes (other): - Fix a bug with handling misformed replies to reverse DNS lookup requests in DNSPort. Bugfix on Tor 0.2.0.1-alpha. Related to a bug reported by doorss. - Fix compilation on mingw when a pthreads compatibility library has been installed. (We don't want to use it, so we shouldn't be including pthread.h.) Fixes bug 2313; bugfix on 0.1.0.1-rc. - Fix a bug where we would declare that we had run out of virtual addresses when the address space was only half-exhausted. Bugfix on 0.1.2.1-alpha. - Correctly handle the case where AutomapHostsOnResolve is set but no virtual addresses are available. Fixes bug 2328; bugfix on 0.1.2.1-alpha. Bug found by doorss. - Correctly handle wrapping around when we run out of virtual address space. Found by cypherpunks; bugfix on 0.2.0.5-alpha. o Minor features: - Update to the January 1 2011 Maxmind GeoLite Country database. - Introduce output size checks on all of our decryption functions. o Build changes: - Tor does not build packages correctly with Automake 1.6 and earlier; added a check to Makefile.am to make sure that we're building with Automake 1.7 or later. - The 0.2.1.28 tarball was missing src/common/OpenBSD_malloc_Linux.c because we built it with a too-old version of automake. Thus that release broke ./configure --enable-openbsd-malloc, which is popular among really fast exit relays on Linux. Changes in version 0.2.1.28 - 2010-12-17 Tor 0.2.1.28 does some code cleanup to reduce the risk of remotely exploitable bugs. We also took this opportunity to change the IP address for one of our directory authorities, and to update the geoip database we ship. o Major bugfixes: - Fix a remotely exploitable bug that could be used to crash instances of Tor remotely by overflowing on the heap. Remote-code execution hasn't been confirmed, but can't be ruled out. Everyone should upgrade. Bugfix on the 0.1.1 series and later. o Directory authority changes: - Change IP address and ports for gabelmoo (v3 directory authority). o Minor features: - Update to the December 1 2010 Maxmind GeoLite Country database. Changes in version 0.2.1.27 - 2010-11-23 Yet another OpenSSL security patch broke its compatibility with Tor: Tor 0.2.1.27 makes relays work with openssl 0.9.8p and 1.0.0.b. We also took this opportunity to fix several crash bugs, integrate a new directory authority, and update the bundled GeoIP database. o Major bugfixes: - Resolve an incompatibility with OpenSSL 0.9.8p and OpenSSL 1.0.0b: No longer set the tlsext_host_name extension on server SSL objects; but continue to set it on client SSL objects. Our goal in setting it was to imitate a browser, not a vhosting server. Fixes bug 2204; bugfix on 0.2.1.1-alpha. - Do not log messages to the controller while shrinking buffer freelists. Doing so would sometimes make the controller connection try to allocate a buffer chunk, which would mess up the internals of the freelist and cause an assertion failure. Fixes bug 1125; fixed by Robert Ransom. Bugfix on 0.2.0.16-alpha. - Learn our external IP address when we're a relay or bridge, even if we set PublishServerDescriptor to 0. Bugfix on 0.2.0.3-alpha, where we introduced bridge relays that don't need to publish to be useful. Fixes bug 2050. - Do even more to reject (and not just ignore) annotations on router descriptors received anywhere but from the cache. Previously we would ignore such annotations at first, but cache them to disk anyway. Bugfix on 0.2.0.8-alpha. Found by piebeer. - When you're using bridges and your network goes away and your bridges get marked as down, recover when you attempt a new socks connection (if the network is back), rather than waiting up to an hour to try fetching new descriptors for your bridges. Bugfix on 0.2.0.3-alpha; fixes bug 1981. o Major features: - Move to the November 2010 Maxmind GeoLite country db (rather than the June 2009 ip-to-country GeoIP db) for our statistics that count how many users relays are seeing from each country. Now we'll have more accurate data, especially for many African countries. o New directory authorities: - Set up maatuska (run by Linus Nordberg) as the eighth v3 directory authority. o Minor bugfixes: - Fix an assertion failure that could occur in directory caches or bridge users when using a very short voting interval on a testing network. Diagnosed by Robert Hogan. Fixes bug 1141; bugfix on 0.2.0.8-alpha. - Enforce multiplicity rules when parsing annotations. Bugfix on 0.2.0.8-alpha. Found by piebeer. - Allow handshaking OR connections to take a full KeepalivePeriod seconds to handshake. Previously, we would close them after IDLE_OR_CONN_TIMEOUT (180) seconds, the same timeout as if they were open. Bugfix on 0.2.1.26; fixes bug 1840. Thanks to mingw-san for analysis help. - When building with --enable-gcc-warnings on OpenBSD, disable warnings in system headers. This makes --enable-gcc-warnings pass on OpenBSD 4.8. o Minor features: - Exit nodes didn't recognize EHOSTUNREACH as a plausible error code, and so sent back END_STREAM_REASON_MISC. Clients now recognize a new stream ending reason for this case: END_STREAM_REASON_NOROUTE. Servers can start sending this code when enough clients recognize it. Bugfix on 0.1.0.1-rc; fixes part of bug 1793. - Build correctly on mingw with more recent versions of OpenSSL 0.9.8. Patch from mingw-san. o Removed files: - Remove the old debian/ directory from the main Tor distribution. The official Tor-for-debian git repository lives at the URL https://git.torproject.org/debian/tor.git - Stop shipping the old doc/website/ directory in the tarball. We changed the website format in late 2010, and what we shipped in 0.2.1.26 really wasn't that useful anyway. Changes in version 0.2.1.26 - 2010-05-02 Tor 0.2.1.26 addresses the recent connection and memory overload problems we've been seeing on relays, especially relays with their DirPort open. If your relay has been crashing, or you turned it off because it used too many resources, give this release a try. This release also fixes yet another instance of broken OpenSSL libraries that was causing some relays to drop out of the consensus. o Major bugfixes: - Teach relays to defend themselves from connection overload. Relays now close idle circuits early if it looks like they were intended for directory fetches. Relays are also more aggressive about closing TLS connections that have no circuits on them. Such circuits are unlikely to be re-used, and tens of thousands of them were piling up at the fast relays, causing the relays to run out of sockets and memory. Bugfix on 0.2.0.22-rc (where clients started tunneling their directory fetches over TLS). - Fix SSL renegotiation behavior on OpenSSL versions like on Centos that claim to be earlier than 0.9.8m, but which have in reality backported huge swaths of 0.9.8m or 0.9.8n renegotiation behavior. Possible fix for some cases of bug 1346. - Directory mirrors were fetching relay descriptors only from v2 directory authorities, rather than v3 authorities like they should. Only 2 v2 authorities remain (compared to 7 v3 authorities), leading to a serious bottleneck. Bugfix on 0.2.0.9-alpha. Fixes bug 1324. o Minor bugfixes: - Finally get rid of the deprecated and now harmful notion of "clique mode", where directory authorities maintain TLS connections to every other relay. o Testsuite fixes: - In the util/threads test, no longer free the test_mutex before all worker threads have finished. Bugfix on 0.2.1.6-alpha. - The master thread could starve the worker threads quite badly on certain systems, causing them to run only partially in the allowed window. This resulted in test failures. Now the master thread sleeps occasionally for a few microseconds while the two worker-threads compete for the mutex. Bugfix on 0.2.0.1-alpha. Changes in version 0.2.1.25 - 2010-03-16 Tor 0.2.1.25 fixes a regression introduced in 0.2.1.23 that could prevent relays from guessing their IP address correctly. It also fixes several minor potential security bugs. o Major bugfixes: - Fix a regression from our patch for bug 1244 that caused relays to guess their IP address incorrectly if they didn't set Address in their torrc and/or their address fails to resolve. Bugfix on 0.2.1.23; fixes bug 1269. - When freeing a session key, zero it out completely. We only zeroed the first ptrsize bytes. Bugfix on 0.0.2pre8. Discovered and patched by ekir. Fixes bug 1254. o Minor bugfixes: - Fix a dereference-then-NULL-check sequence when publishing descriptors. Bugfix on 0.2.1.5-alpha. Discovered by ekir; fixes bug 1255. - Fix another dereference-then-NULL-check sequence. Bugfix on 0.2.1.14-rc. Discovered by ekir; fixes bug 1256. - Make sure we treat potentially not NUL-terminated strings correctly. Bugfix on 0.1.1.13-alpha. Discovered by rieo; fixes bug 1257. Changes in version 0.2.1.24 - 2010-02-21 Tor 0.2.1.24 makes Tor work again on the latest OS X -- this time for sure! o Minor bugfixes: - Work correctly out-of-the-box with even more vendor-patched versions of OpenSSL. In particular, make it so Debian and OS X don't need customized patches to run/build. Changes in version 0.2.1.23 - 2010-02-13 Tor 0.2.1.23 fixes a huge client-side performance bug, makes Tor work again on the latest OS X, and updates the location of a directory authority. o Major bugfixes (performance): - We were selecting our guards uniformly at random, and then weighting which of our guards we'd use uniformly at random. This imbalance meant that Tor clients were severely limited on throughput (and probably latency too) by the first hop in their circuit. Now we select guards weighted by currently advertised bandwidth. We also automatically discard guards picked using the old algorithm. Fixes bug 1217; bugfix on 0.2.1.3-alpha. Found by Mike Perry. o Major bugfixes: - Make Tor work again on the latest OS X: when deciding whether to use strange flags to turn TLS renegotiation on, detect the OpenSSL version at run-time, not compile time. We need to do this because Apple doesn't update its dev-tools headers when it updates its libraries in a security patch. - Fix a potential buffer overflow in lookup_last_hid_serv_request() that could happen on 32-bit platforms with 64-bit time_t. Also fix a memory leak when requesting a hidden service descriptor we've requested before. Fixes bug 1242, bugfix on 0.2.0.18-alpha. Found by aakova. o Minor bugfixes: - Refactor resolve_my_address() to not use gethostbyname() anymore. Fixes bug 1244; bugfix on 0.0.2pre25. Reported by Mike Mestnik. o Minor features: - Avoid a mad rush at the beginning of each month when each client rotates half of its guards. Instead we spread the rotation out throughout the month, but we still avoid leaving a precise timestamp in the state file about when we first picked the guard. Improves over the behavior introduced in 0.1.2.17. Changes in version 0.2.1.22 - 2010-01-19 Tor 0.2.1.22 fixes a critical privacy problem in bridge directory authorities -- it would tell you its whole history of bridge descriptors if you make the right directory request. This stable update also rotates two of the seven v3 directory authority keys and locations. o Directory authority changes: - Rotate keys (both v3 identity and relay identity) for moria1 and gabelmoo. o Major bugfixes: - Stop bridge directory authorities from answering dbg-stability.txt directory queries, which would let people fetch a list of all bridge identities they track. Bugfix on 0.2.1.6-alpha. Changes in version 0.2.1.21 - 2009-12-21 Tor 0.2.1.21 fixes an incompatibility with the most recent OpenSSL library. If you use Tor on Linux / Unix and you're getting SSL renegotiation errors, upgrading should help. We also recommend an upgrade if you're an exit relay. o Major bugfixes: - Work around a security feature in OpenSSL 0.9.8l that prevents our handshake from working unless we explicitly tell OpenSSL that we are using SSL renegotiation safely. We are, of course, but OpenSSL 0.9.8l won't work unless we say we are. - Avoid crashing if the client is trying to upload many bytes and the circuit gets torn down at the same time, or if the flip side happens on the exit relay. Bugfix on 0.2.0.1-alpha; fixes bug 1150. o Minor bugfixes: - Do not refuse to learn about authority certs and v2 networkstatus documents that are older than the latest consensus. This bug might have degraded client bootstrapping. Bugfix on 0.2.0.10-alpha. Spotted and fixed by xmux. - Fix a couple of very-hard-to-trigger memory leaks, and one hard-to- trigger platform-specific option misparsing case found by Coverity Scan. - Fix a compilation warning on Fedora 12 by removing an impossible-to- trigger assert. Fixes bug 1173. Changes in version 0.2.1.20 - 2009-10-15 Tor 0.2.1.20 fixes a crash bug when you're accessing many hidden services at once, prepares for more performance improvements, and fixes a bunch of smaller bugs. The Windows and OS X bundles also include a more recent Vidalia, and switch from Privoxy to Polipo. The OS X installers are now drag and drop. It's best to un-install Tor/Vidalia and then install this new bundle, rather than upgrade. If you want to upgrade, you'll need to update the paths for Tor and Polipo in the Vidalia Settings window. o Major bugfixes: - Send circuit or stream sendme cells when our window has decreased by 100 cells, not when it has decreased by 101 cells. Bug uncovered by Karsten when testing the "reduce circuit window" performance patch. Bugfix on the 54th commit on Tor -- from July 2002, before the release of Tor 0.0.0. This is the new winner of the oldest-bug prize. - Fix a remotely triggerable memory leak when a consensus document contains more than one signature from the same voter. Bugfix on 0.2.0.3-alpha. - Avoid segfault in rare cases when finishing an introduction circuit as a client and finding out that we don't have an introduction key for it. Fixes bug 1073. Reported by Aaron Swartz. o Major features: - Tor now reads the "circwindow" parameter out of the consensus, and uses that value for its circuit package window rather than the default of 1000 cells. Begins the implementation of proposal 168. o New directory authorities: - Set up urras (run by Jacob Appelbaum) as the seventh v3 directory authority. - Move moria1 and tonga to alternate IP addresses. o Minor bugfixes: - Fix a signed/unsigned compile warning in 0.2.1.19. - Fix possible segmentation fault on directory authorities. Bugfix on 0.2.1.14-rc. - Fix an extremely rare infinite recursion bug that could occur if we tried to log a message after shutting down the log subsystem. Found by Matt Edman. Bugfix on 0.2.0.16-alpha. - Fix an obscure bug where hidden services on 64-bit big-endian systems might mis-read the timestamp in v3 introduce cells, and refuse to connect back to the client. Discovered by "rotor". Bugfix on 0.2.1.6-alpha. - We were triggering a CLOCK_SKEW controller status event whenever we connect via the v2 connection protocol to any relay that has a wrong clock. Instead, we should only inform the controller when it's a trusted authority that claims our clock is wrong. Bugfix on 0.2.0.20-rc; starts to fix bug 1074. Reported by SwissTorExit. - We were telling the controller about CHECKING_REACHABILITY and REACHABILITY_FAILED status events whenever we launch a testing circuit or notice that one has failed. Instead, only tell the controller when we want to inform the user of overall success or overall failure. Bugfix on 0.1.2.6-alpha. Fixes bug 1075. Reported by SwissTorExit. - Don't warn when we're using a circuit that ends with a node excluded in ExcludeExitNodes, but the circuit is not used to access the outside world. This should help fix bug 1090. Bugfix on 0.2.1.6-alpha. - Work around a small memory leak in some versions of OpenSSL that stopped the memory used by the hostname TLS extension from being freed. o Minor features: - Add a "getinfo status/accepted-server-descriptor" controller command, which is the recommended way for controllers to learn whether our server descriptor has been successfully received by at least on directory authority. Un-recommend good-server-descriptor getinfo and status events until we have a better design for them. Changes in version 0.2.1.19 - 2009-07-28 Tor 0.2.1.19 fixes a major bug with accessing and providing hidden services. o Major bugfixes: - Make accessing hidden services on 0.2.1.x work right again. Bugfix on 0.2.1.3-alpha; workaround for bug 1038. Diagnosis and part of patch provided by "optimist". o Minor features: - When a relay/bridge is writing out its identity key fingerprint to the "fingerprint" file and to its logs, write it without spaces. Now it will look like the fingerprints in our bridges documentation, and confuse fewer users. o Minor bugfixes: - Relays no longer publish a new server descriptor if they change their MaxAdvertisedBandwidth config option but it doesn't end up changing their advertised bandwidth numbers. Bugfix on 0.2.0.28-rc; fixes bug 1026. Patch from Sebastian. - Avoid leaking memory every time we get a create cell but we have so many already queued that we refuse it. Bugfix on 0.2.0.19-alpha; fixes bug 1034. Reported by BarkerJr. Changes in version 0.2.1.18 - 2009-07-24 Tor 0.2.1.18 lays the foundations for performance improvements, adds status events to help users diagnose bootstrap problems, adds optional authentication/authorization for hidden services, fixes a variety of potential anonymity problems, and includes a huge pile of other features and bug fixes. o Major features (clients): - Start sending "bootstrap phase" status events to the controller, so it can keep the user informed of progress fetching directory information and establishing circuits. Also inform the controller if we think we're stuck at a particular bootstrap phase. Implements proposal 137. - Clients replace entry guards that were chosen more than a few months ago. This change should significantly improve client performance, especially once more people upgrade, since relays that have been a guard for a long time are currently overloaded. - Network status consensus documents and votes now contain bandwidth information for each relay. Clients use the bandwidth values in the consensus, rather than the bandwidth values in each relay descriptor. This approach opens the door to more accurate bandwidth estimates once the directory authorities start doing active measurements. Implements part of proposal 141. o Major features (relays): - Disable and refactor some debugging checks that forced a linear scan over the whole server-side DNS cache. These accounted for over 50% of CPU time on a relatively busy exit node's gprof profile. Also, disable some debugging checks that appeared in exit node profile data. Found by Jacob. - New DirPortFrontPage option that takes an html file and publishes it as "/" on the DirPort. Now relay operators can provide a disclaimer without needing to set up a separate webserver. There's a sample disclaimer in contrib/tor-exit-notice.html. o Major features (hidden services): - Make it possible to build hidden services that only certain clients are allowed to connect to. This is enforced at several points, so that unauthorized clients are unable to send INTRODUCE cells to the service, or even (depending on the type of authentication) to learn introduction points. This feature raises the bar for certain kinds of active attacks against hidden services. Design and code by Karsten Loesing. Implements proposal 121. - Relays now store and serve v2 hidden service descriptors by default, i.e., the new default value for HidServDirectoryV2 is 1. This is the last step in proposal 114, which aims to make hidden service lookups more reliable. o Major features (path selection): - ExitNodes and Exclude*Nodes config options now allow you to restrict by country code ("{US}") or IP address or address pattern ("255.128.0.0/16"). Patch from Robert Hogan. It still needs some refinement to decide what config options should take priority if you ask to both use a particular node and exclude it. o Major features (misc): - When building a consensus, do not include routers that are down. This cuts down 30% to 40% on consensus size. Implements proposal 138. - New TestingTorNetwork config option to allow adjustment of previously constant values that could slow bootstrapping. Implements proposal 135. Patch from Karsten. - Convert many internal address representations to optionally hold IPv6 addresses. Generate and accept IPv6 addresses in many protocol elements. Make resolver code handle nameservers located at IPv6 addresses. - More work on making our TLS handshake blend in: modify the list of ciphers advertised by OpenSSL in client mode to even more closely resemble a common web browser. We cheat a little so that we can advertise ciphers that the locally installed OpenSSL doesn't know about. - Use the TLS1 hostname extension to more closely resemble browser behavior. o Security fixes (anonymity/entropy): - Never use a connection with a mismatched address to extend a circuit, unless that connection is canonical. A canonical connection is one whose address is authenticated by the router's identity key, either in a NETINFO cell or in a router descriptor. - Implement most of proposal 110: The first K cells to be sent along a circuit are marked as special "early" cells; only K "early" cells will be allowed. Once this code is universal, we can block certain kinds of denial-of-service attack by requiring that EXTEND commands must be sent using an "early" cell. - Resume using OpenSSL's RAND_poll() for better (and more portable) cross-platform entropy collection again. We used to use it, then stopped using it because of a bug that could crash systems that called RAND_poll when they had a lot of fds open. It looks like the bug got fixed in late 2006. Our new behavior is to call RAND_poll() at startup, and to call RAND_poll() when we reseed later only if we have a non-buggy OpenSSL version. - When the client is choosing entry guards, now it selects at most one guard from a given relay family. Otherwise we could end up with all of our entry points into the network run by the same operator. Suggested by Camilo Viecco. Fix on 0.1.1.11-alpha. - Do not use or believe expired v3 authority certificates. Patch from Karsten. Bugfix in 0.2.0.x. Fixes bug 851. - Drop begin cells to a hidden service if they come from the middle of a circuit. Patch from lark. - When we erroneously receive two EXTEND cells for the same circuit ID on the same connection, drop the second. Patch from lark. - Authorities now vote for the Stable flag for any router whose weighted MTBF is at least 5 days, regardless of the mean MTBF. - Clients now never report any stream end reason except 'MISC'. Implements proposal 148. o Major bugfixes (crashes): - Parse dates and IPv4 addresses in a locale- and libc-independent manner, to avoid platform-dependent behavior on malformed input. - Fix a crash that occurs on exit nodes when a nameserver request timed out. Bugfix on 0.1.2.1-alpha; our CLEAR debugging code had been suppressing the bug since 0.1.2.10-alpha. Partial fix for bug 929. - Do not assume that a stack-allocated character array will be 64-bit aligned on platforms that demand that uint64_t access is aligned. Possible fix for bug 604. - Resolve a very rare crash bug that could occur when the user forced a nameserver reconfiguration during the middle of a nameserver probe. Fixes bug 526. Bugfix on 0.1.2.1-alpha. - Avoid a "0 divided by 0" calculation when calculating router uptime at directory authorities. Bugfix on 0.2.0.8-alpha. - Fix an assertion bug in parsing policy-related options; possible fix for bug 811. - Rate-limit too-many-sockets messages: when they happen, they happen a lot and end up filling up the disk. Resolves bug 748. - Fix a race condition that could cause crashes or memory corruption when running as a server with a controller listening for log messages. - Avoid crashing when we have a policy specified in a DirPolicy or SocksPolicy or ReachableAddresses option with ports set on it, and we re-load the policy. May fix bug 996. - Fix an assertion failure on 64-bit platforms when we allocated memory right up to the end of a memarea, then realigned the memory one step beyond the end. Fixes a possible cause of bug 930. - Protect the count of open sockets with a mutex, so we can't corrupt it when two threads are closing or opening sockets at once. Fix for bug 939. Bugfix on 0.2.0.1-alpha. o Major bugfixes (clients): - Discard router descriptors as we load them if they are more than five days old. Otherwise if Tor is off for a long time and then starts with cached descriptors, it will try to use the onion keys in those obsolete descriptors when building circuits. Fixes bug 887. - When we choose to abandon a new entry guard because we think our older ones might be better, close any circuits pending on that new entry guard connection. This fix should make us recover much faster when our network is down and then comes back. Bugfix on 0.1.2.8-beta; found by lodger. - When Tor clients restart after 1-5 days, they discard all their cached descriptors as too old, but they still use the cached consensus document. This approach is good for robustness, but bad for performance: since they don't know any bandwidths, they end up choosing at random rather than weighting their choice by speed. Fixed by the above feature of putting bandwidths in the consensus. o Major bugfixes (relays): - Relays were falling out of the networkstatus consensus for part of a day if they changed their local config but the authorities discarded their new descriptor as "not sufficiently different". Now directory authorities accept a descriptor as changed if BandwidthRate or BandwidthBurst changed. Partial fix for bug 962; patch by Sebastian. - Ensure that two circuits can never exist on the same connection with the same circuit ID, even if one is marked for close. This is conceivably a bugfix for bug 779; fixes a bug on 0.1.0.4-rc. - Directory authorities were neglecting to mark relays down in their internal histories if the relays fall off the routerlist without ever being found unreachable. So there were relays in the histories that haven't been seen for eight months, and are listed as being up for eight months. This wreaked havoc on the "median wfu" and "median mtbf" calculations, in turn making Guard and Stable flags wrong, hurting network performance. Fixes bugs 696 and 969. Bugfix on 0.2.0.6-alpha. o Major bugfixes (hidden services): - When establishing a hidden service, introduction points that originate from cannibalized circuits were completely ignored and not included in rendezvous service descriptors. This might have been another reason for delay in making a hidden service available. Bugfix from long ago (0.0.9.x?) o Major bugfixes (memory and resource management): - Fixed some memory leaks -- some quite frequent, some almost impossible to trigger -- based on results from Coverity. - Speed up parsing and cut down on memory fragmentation by using stack-style allocations for parsing directory objects. Previously, this accounted for over 40% of allocations from within Tor's code on a typical directory cache. - Use a Bloom filter rather than a digest-based set to track which descriptors we need to keep around when we're cleaning out old router descriptors. This speeds up the computation significantly, and may reduce fragmentation. o New/changed config options: - Now NodeFamily and MyFamily config options allow spaces in identity fingerprints, so it's easier to paste them in. Suggested by Lucky Green. - Allow ports 465 and 587 in the default exit policy again. We had rejected them in 0.1.0.15, because back in 2005 they were commonly misconfigured and ended up as spam targets. We hear they are better locked down these days. - Make TrackHostExit mappings expire a while after their last use, not after their creation. Patch from Robert Hogan. - Add an ExcludeExitNodes option so users can list a set of nodes that should be be excluded from the exit node position, but allowed elsewhere. Implements proposal 151. - New --hush command-line option similar to --quiet. While --quiet disables all logging to the console on startup, --hush limits the output to messages of warning and error severity. - New configure/torrc options (--enable-geoip-stats, DirRecordUsageByCountry) to record how many IPs we've served directory info to in each country code, how many status documents total we've sent to each country code, and what share of the total directory requests we should expect to see. - Make outbound DNS packets respect the OutboundBindAddress setting. Fixes the bug part of bug 798. Bugfix on 0.1.2.2-alpha. - Allow separate log levels to be configured for different logging domains. For example, this allows one to log all notices, warnings, or errors, plus all memory management messages of level debug or higher, with: Log [MM] debug-err [*] notice-err file /var/log/tor. - Update to the "June 3 2009" ip-to-country file. o Minor features (relays): - Raise the minimum rate limiting to be a relay from 20000 bytes to 20480 bytes (aka 20KB/s), to match our documentation. Also update directory authorities so they always assign the Fast flag to relays with 20KB/s of capacity. Now people running relays won't suddenly find themselves not seeing any use, if the network gets faster on average. - If we're a relay and we change our IP address, be more verbose about the reason that made us change. Should help track down further bugs for relays on dynamic IP addresses. - Exit servers can now answer resolve requests for ip6.arpa addresses. - Implement most of Proposal 152: allow specialized servers to permit single-hop circuits, and clients to use those servers to build single-hop circuits when using a specialized controller. Patch from Josh Albrecht. Resolves feature request 768. - When relays do their initial bandwidth measurement, don't limit to just our entry guards for the test circuits. Otherwise we tend to have multiple test circuits going through a single entry guard, which makes our bandwidth test less accurate. Fixes part of bug 654; patch contributed by Josh Albrecht. o Minor features (directory authorities): - Try not to open more than one descriptor-downloading connection to an authority at once. This should reduce load on directory authorities. Fixes bug 366. - Add cross-certification to newly generated certificates, so that a signing key is enough information to look up a certificate. Start serving certificates by pairs. Implements proposal 157. - When a directory authority downloads a descriptor that it then immediately rejects, do not retry downloading it right away. Should save some bandwidth on authorities. Fix for bug 888. Patch by Sebastian Hahn. - Directory authorities now serve a /tor/dbg-stability.txt URL to help debug WFU and MTBF calculations. - In directory authorities' approved-routers files, allow fingerprints with or without space. o Minor features (directory mirrors): - When a download gets us zero good descriptors, do not notify Tor that new directory information has arrived. - Servers support a new URL scheme for consensus downloads that allows the client to specify which authorities are trusted. The server then only sends the consensus if the client will trust it. Otherwise a 404 error is sent back. Clients use this new scheme when the server supports it (meaning it's running 0.2.1.1-alpha or later). Implements proposal 134. o Minor features (bridges): - If the bridge config line doesn't specify a port, assume 443. This makes bridge lines a bit smaller and easier for users to understand. - If we're using bridges and our network goes away, be more willing to forgive our bridges and try again when we get an application request. o Minor features (hidden services): - When the client launches an introduction circuit, retry with a new circuit after 30 seconds rather than 60 seconds. - Launch a second client-side introduction circuit in parallel after a delay of 15 seconds (based on work by Christian Wilms). - Hidden services start out building five intro circuits rather than three, and when the first three finish they publish a service descriptor using those. Now we publish our service descriptor much faster after restart. - Drop the requirement to have an open dir port for storing and serving v2 hidden service descriptors. o Minor features (build and packaging): - On Linux, use the prctl call to re-enable core dumps when the User option is set. - Try to make sure that the version of Libevent we're running with is binary-compatible with the one we built with. May address bug 897 and others. - Add a new --enable-local-appdata configuration switch to change the default location of the datadir on win32 from APPDATA to LOCAL_APPDATA. In the future, we should migrate to LOCAL_APPDATA entirely. Patch from coderman. - Build correctly against versions of OpenSSL 0.9.8 or later that are built without support for deprecated functions. - On platforms with a maximum syslog string length, truncate syslog messages to that length ourselves, rather than relying on the system to do it for us. - Automatically detect MacOSX versions earlier than 10.4.0, and disable kqueue from inside Tor when running with these versions. We previously did this from the startup script, but that was no help to people who didn't use the startup script. Resolves bug 863. - Build correctly when configured to build outside the main source path. Patch from Michael Gold. - Disable GCC's strict alias optimization by default, to avoid the likelihood of its introducing subtle bugs whenever our code violates the letter of C99's alias rules. - Change the contrib/tor.logrotate script so it makes the new logs as "_tor:_tor" rather than the default, which is generally "root:wheel". Fixes bug 676, reported by Serge Koksharov. - Change our header file guard macros to be less likely to conflict with system headers. Adam Langley noticed that we were conflicting with log.h on Android. - Add a couple of extra warnings to --enable-gcc-warnings for GCC 4.3, and stop using a warning that had become unfixably verbose under GCC 4.3. - Use a lockfile to make sure that two Tor processes are not simultaneously running with the same datadir. - Allow OpenSSL to use dynamic locks if it wants. - Add LIBS=-lrt to Makefile.am so the Tor RPMs use a static libevent. o Minor features (controllers): - When generating circuit events with verbose nicknames for controllers, try harder to look up nicknames for routers on a circuit. (Previously, we would look in the router descriptors we had for nicknames, but not in the consensus.) Partial fix for bug 941. - New controller event NEWCONSENSUS that lists the networkstatus lines for every recommended relay. Now controllers like Torflow can keep up-to-date on which relays they should be using. - New controller event "clients_seen" to report a geoip-based summary of which countries we've seen clients from recently. Now controllers like Vidalia can show bridge operators that they're actually making a difference. - Add a 'getinfo status/clients-seen' controller command, in case controllers want to hear clients_seen events but connect late. - New CONSENSUS_ARRIVED event to note when a new consensus has been fetched and validated. - Add an internal-use-only __ReloadTorrcOnSIGHUP option for controllers to prevent SIGHUP from reloading the configuration. Fixes bug 856. - Return circuit purposes in response to GETINFO circuit-status. Fixes bug 858. - Serve the latest v3 networkstatus consensus via the control port. Use "getinfo dir/status-vote/current/consensus" to fetch it. - Add a "GETINFO /status/bootstrap-phase" controller option, so the controller can query our current bootstrap state in case it attaches partway through and wants to catch up. - Provide circuit purposes along with circuit events to the controller. o Minor features (tools): - Do not have tor-resolve automatically refuse all .onion addresses; if AutomapHostsOnResolve is set in your torrc, this will work fine. - Add a -p option to tor-resolve for specifying the SOCKS port: some people find host:port too confusing. - Print the SOCKS5 error message string as well as the error code when a tor-resolve request fails. Patch from Jacob. o Minor bugfixes (memory and resource management): - Clients no longer cache certificates for authorities they do not recognize. Bugfix on 0.2.0.9-alpha. - Do not use C's stdio library for writing to log files. This will improve logging performance by a minute amount, and will stop leaking fds when our disk is full. Fixes bug 861. - Stop erroneous use of O_APPEND in cases where we did not in fact want to re-seek to the end of a file before every last write(). - Fix a small alignment and memory-wasting bug on buffer chunks. Spotted by rovv. - Add a malloc_good_size implementation to OpenBSD_malloc_linux.c, to avoid unused RAM in buffer chunks and memory pools. - Reduce the default smartlist size from 32 to 16; it turns out that most smartlists hold around 8-12 elements tops. - Make dumpstats() log the fullness and size of openssl-internal buffers. - If the user has applied the experimental SSL_MODE_RELEASE_BUFFERS patch to their OpenSSL, turn it on to save memory on servers. This patch will (with any luck) get included in a mainline distribution before too long. - Fix a memory leak when v3 directory authorities load their keys and cert from disk. Bugfix on 0.2.0.1-alpha. - Stop using malloc_usable_size() to use more area than we had actually allocated: it was safe, but made valgrind really unhappy. - Make the assert_circuit_ok() function work correctly on circuits that have already been marked for close. - Fix uninitialized size field for memory area allocation: may improve memory performance during directory parsing. o Minor bugfixes (clients): - Stop reloading the router list from disk for no reason when we run out of reachable directory mirrors. Once upon a time reloading it would set the 'is_running' flag back to 1 for them. It hasn't done that for a long time. - When we had picked an exit node for a connection, but marked it as "optional", and it turned out we had no onion key for the exit, stop wanting that exit and try again. This situation may not be possible now, but will probably become feasible with proposal 158. Spotted by rovv. Fixes another case of bug 752. - Fix a bug in address parsing that was preventing bridges or hidden service targets from being at IPv6 addresses. - Do not remove routers as too old if we do not have any consensus document. Bugfix on 0.2.0.7-alpha. - When an exit relay resolves a stream address to a local IP address, do not just keep retrying that same exit relay over and over. Instead, just close the stream. Addresses bug 872. Bugfix on 0.2.0.32. Patch from rovv. - Made Tor a little less aggressive about deleting expired certificates. Partial fix for bug 854. - Treat duplicate certificate fetches as failures, so that we do not try to re-fetch an expired certificate over and over and over. - Do not say we're fetching a certificate when we'll in fact skip it because of a pending download. - If we have correct permissions on $datadir, we complain to stdout and fail to start. But dangerous permissions on $datadir/cached-status/ would cause us to open a log and complain there. Now complain to stdout and fail to start in both cases. Fixes bug 820, reported by seeess. o Minor bugfixes (bridges): - When we made bridge authorities stop serving bridge descriptors over unencrypted links, we also broke DirPort reachability testing for bridges. So bridges with a non-zero DirPort were printing spurious warns to their logs. Bugfix on 0.2.0.16-alpha. Fixes bug 709. - Don't allow a bridge to publish its router descriptor to a non-bridge directory authority. Fixes part of bug 932. - When we change to or from being a bridge, reset our counts of client usage by country. Fixes bug 932. o Minor bugfixes (relays): - Log correct error messages for DNS-related network errors on Windows. - Actually return -1 in the error case for read_bandwidth_usage(). Harmless bug, since we currently don't care about the return value anywhere. Bugfix on 0.2.0.9-alpha. - Provide a more useful log message if bug 977 (related to buffer freelists) ever reappears, and do not crash right away. - We were already rejecting relay begin cells with destination port of 0. Now also reject extend cells with destination port or address of 0. Suggested by lark. - When we can't transmit a DNS request due to a network error, retry it after a while, and eventually transmit a failing response to the RESOLVED cell. Bugfix on 0.1.2.5-alpha. - Solve a bug that kept hardware crypto acceleration from getting enabled when accounting was turned on. Fixes bug 907. Bugfix on 0.0.9pre6. - When a canonical connection appears later in our internal list than a noncanonical one for a given OR ID, always use the canonical one. Bugfix on 0.2.0.12-alpha. Fixes bug 805. Spotted by rovv. - Avoid some nasty corner cases in the logic for marking connections as too old or obsolete or noncanonical for circuits. Partial bugfix on bug 891. - Fix another interesting corner-case of bug 891 spotted by rovv: Previously, if two hosts had different amounts of clock drift, and one of them created a new connection with just the wrong timing, the other might decide to deprecate the new connection erroneously. Bugfix on 0.1.1.13-alpha. - If one win32 nameserver fails to get added, continue adding the rest, and don't automatically fail. - Fix a bug where an unreachable relay would establish enough reachability testing circuits to do a bandwidth test -- if we already have a connection to the middle hop of the testing circuit, then it could establish the last hop by using the existing connection. Bugfix on 0.1.2.2-alpha, exposed when we made testing circuits no longer use entry guards in 0.2.1.3-alpha. o Minor bugfixes (directory authorities): - Limit uploaded directory documents to be 16M rather than 500K. The directory authorities were refusing v3 consensus votes from other authorities, since the votes are now 504K. Fixes bug 959; bugfix on 0.0.2pre17 (where we raised it from 50K to 500K ;). - Directory authorities should never send a 503 "busy" response to requests for votes or keys. Bugfix on 0.2.0.8-alpha; exposed by bug 959. - Fix code so authorities _actually_ send back X-Descriptor-Not-New headers. Bugfix on 0.2.0.10-alpha. o Minor bugfixes (hidden services): - When we can't find an intro key for a v2 hidden service descriptor, fall back to the v0 hidden service descriptor and log a bug message. Workaround for bug 1024. - In very rare situations new hidden service descriptors were published earlier than 30 seconds after the last change to the service. (We currently think that a hidden service descriptor that's been stable for 30 seconds is worth publishing.) - If a hidden service sends us an END cell, do not consider retrying the connection; just close it. Patch from rovv. - If we are not using BEGIN_DIR cells, don't attempt to contact hidden service directories if they have no advertised dir port. Bugfix on 0.2.0.10-alpha. o Minor bugfixes (tools): - In the torify(1) manpage, mention that tsocks will leak your DNS requests. o Minor bugfixes (controllers): - If the controller claimed responsibility for a stream, but that stream never finished making its connection, it would live forever in circuit_wait state. Now we close it after SocksTimeout seconds. Bugfix on 0.1.2.7-alpha; reported by Mike Perry. - Make DNS resolved controller events into "CLOSED", not "FAILED". Bugfix on 0.1.2.5-alpha. Fix by Robert Hogan. Resolves bug 807. - The control port would close the connection before flushing long replies, such as the network consensus, if a QUIT command was issued before the reply had completed. Now, the control port flushes all pending replies before closing the connection. Also fix a spurious warning when a QUIT command is issued after a malformed or rejected AUTHENTICATE command, but before the connection was closed. Patch by Marcus Griep. Fixes bugs 1015 and 1016. - Fix a bug that made stream bandwidth get misreported to the controller. o Deprecated and removed features: - The old "tor --version --version" command, which would print out the subversion "Id" of most of the source files, is now removed. It turned out to be less useful than we'd expected, and harder to maintain. - RedirectExits has been removed. It was deprecated since 0.2.0.3-alpha. - Finally remove deprecated "EXTENDED_FORMAT" controller feature. It has been called EXTENDED_EVENTS since 0.1.2.4-alpha. - Cell pools are now always enabled; --disable-cell-pools is ignored. - Directory mirrors no longer fetch the v1 directory or running-routers files. They are obsolete, and nobody asks for them anymore. This is the first step to making v1 authorities obsolete. - Take out the TestVia config option, since it was a workaround for a bug that was fixed in Tor 0.1.1.21. - Mark RendNodes, RendExcludeNodes, HiddenServiceNodes, and HiddenServiceExcludeNodes as obsolete: they never worked properly, and nobody seems to be using them. Fixes bug 754. Bugfix on 0.1.0.1-rc. Patch from Christian Wilms. - Remove all backward-compatibility code for relays running versions of Tor so old that they no longer work at all on the Tor network. o Code simplifications and refactoring: - Tool-assisted documentation cleanup. Nearly every function or static variable in Tor should have its own documentation now. - Rename the confusing or_is_obsolete field to the more appropriate is_bad_for_new_circs, and move it to or_connection_t where it belongs. - Move edge-only flags from connection_t to edge_connection_t: not only is this better coding, but on machines of plausible alignment, it should save 4-8 bytes per connection_t. "Every little bit helps." - Rename ServerDNSAllowBrokenResolvConf to ServerDNSAllowBrokenConfig for consistency; keep old option working for backward compatibility. - Simplify the code for finding connections to use for a circuit. - Revise the connection_new functions so that a more typesafe variant exists. This will work better with Coverity, and let us find any actual mistakes we're making here. - Refactor unit testing logic so that dmalloc can be used sensibly with unit tests to check for memory leaks. - Move all hidden-service related fields from connection and circuit structure to substructures: this way they won't eat so much memory. - Squeeze 2-5% out of client performance (according to oprofile) by improving the implementation of some policy-manipulation functions. - Change the implementation of ExcludeNodes and ExcludeExitNodes to be more efficient. Formerly it was quadratic in the number of servers; now it should be linear. Fixes bug 509. - Save 16-22 bytes per open circuit by moving the n_addr, n_port, and n_conn_id_digest fields into a separate structure that's only needed when the circuit has not yet attached to an n_conn. - Optimize out calls to time(NULL) that occur for every IO operation, or for every cell. On systems like Windows where time() is a slow syscall, this fix will be slightly helpful. Changes in version 0.2.0.35 - 2009-06-24 o Security fix: - Avoid crashing in the presence of certain malformed descriptors. Found by lark, and by automated fuzzing. - Fix an edge case where a malicious exit relay could convince a controller that the client's DNS question resolves to an internal IP address. Bug found and fixed by "optimist"; bugfix on 0.1.2.8-beta. o Major bugfixes: - Finally fix the bug where dynamic-IP relays disappear when their IP address changes: directory mirrors were mistakenly telling them their old address if they asked via begin_dir, so they never got an accurate answer about their new address, so they just vanished after a day. For belt-and-suspenders, relays that don't set Address in their config now avoid using begin_dir for all direct connections. Should fix bugs 827, 883, and 900. - Fix a timing-dependent, allocator-dependent, DNS-related crash bug that would occur on some exit nodes when DNS failures and timeouts occurred in certain patterns. Fix for bug 957. o Minor bugfixes: - When starting with a cache over a few days old, do not leak memory for the obsolete router descriptors in it. Bugfix on 0.2.0.33; fixes bug 672. - Hidden service clients didn't use a cached service descriptor that was older than 15 minutes, but wouldn't fetch a new one either, because there was already one in the cache. Now, fetch a v2 descriptor unless the same descriptor was added to the cache within the last 15 minutes. Fixes bug 997; reported by Marcus Griep. Changes in version 0.2.0.34 - 2009-02-08 Tor 0.2.0.34 features several more security-related fixes. You should upgrade, especially if you run an exit relay (remote crash) or a directory authority (remote infinite loop), or you're on an older (pre-XP) or not-recently-patched Windows (remote exploit). This release marks end-of-life for Tor 0.1.2.x. Those Tor versions have many known flaws, and nobody should be using them. You should upgrade. If you're using a Linux or BSD and its packages are obsolete, stop using those packages and upgrade anyway. o Security fixes: - Fix an infinite-loop bug on handling corrupt votes under certain circumstances. Bugfix on 0.2.0.8-alpha. - Fix a temporary DoS vulnerability that could be performed by a directory mirror. Bugfix on 0.2.0.9-alpha; reported by lark. - Avoid a potential crash on exit nodes when processing malformed input. Remote DoS opportunity. Bugfix on 0.2.0.33. - Do not accept incomplete ipv4 addresses (like 192.168.0) as valid. Spec conformance issue. Bugfix on Tor 0.0.2pre27. o Minor bugfixes: - Fix compilation on systems where time_t is a 64-bit integer. Patch from Matthias Drochner. - Don't consider expiring already-closed client connections. Fixes bug 893. Bugfix on 0.0.2pre20. Changes in version 0.2.0.33 - 2009-01-21 Tor 0.2.0.33 fixes a variety of bugs that were making relays less useful to users. It also finally fixes a bug where a relay or client that's been off for many days would take a long time to bootstrap. This update also fixes an important security-related bug reported by Ilja van Sprundel. You should upgrade. (We'll send out more details about the bug once people have had some time to upgrade.) o Security fixes: - Fix a heap-corruption bug that may be remotely triggerable on some platforms. Reported by Ilja van Sprundel. o Major bugfixes: - When a stream at an exit relay is in state "resolving" or "connecting" and it receives an "end" relay cell, the exit relay would silently ignore the end cell and not close the stream. If the client never closes the circuit, then the exit relay never closes the TCP connection. Bug introduced in Tor 0.1.2.1-alpha; reported by "wood". - When sending CREATED cells back for a given circuit, use a 64-bit connection ID to find the right connection, rather than an addr:port combination. Now that we can have multiple OR connections between the same ORs, it is no longer possible to use addr:port to uniquely identify a connection. - Bridge relays that had DirPort set to 0 would stop fetching descriptors shortly after startup, and then briefly resume after a new bandwidth test and/or after publishing a new bridge descriptor. Bridge users that try to bootstrap from them would get a recent networkstatus but would get descriptors from up to 18 hours earlier, meaning most of the descriptors were obsolete already. Reported by Tas; bugfix on 0.2.0.13-alpha. - Prevent bridge relays from serving their 'extrainfo' document to anybody who asks, now that extrainfo docs include potentially sensitive aggregated client geoip summaries. Bugfix on 0.2.0.13-alpha. - If the cached networkstatus consensus is more than five days old, discard it rather than trying to use it. In theory it could be useful because it lists alternate directory mirrors, but in practice it just means we spend many minutes trying directory mirrors that are long gone from the network. Also discard router descriptors as we load them if they are more than five days old, since the onion key is probably wrong by now. Bugfix on 0.2.0.x. Fixes bug 887. o Minor bugfixes: - Do not mark smartlist_bsearch_idx() function as ATTR_PURE. This bug could make gcc generate non-functional binary search code. Bugfix on 0.2.0.10-alpha. - Build correctly on platforms without socklen_t. - Compile without warnings on solaris. - Avoid potential crash on internal error during signature collection. Fixes bug 864. Patch from rovv. - Correct handling of possible malformed authority signing key certificates with internal signature types. Fixes bug 880. Bugfix on 0.2.0.3-alpha. - Fix a hard-to-trigger resource leak when logging credential status. CID 349. - When we can't initialize DNS because the network is down, do not automatically stop Tor from starting. Instead, we retry failed dns_init() every 10 minutes, and change the exit policy to reject *:* until one succeeds. Fixes bug 691. - Use 64 bits instead of 32 bits for connection identifiers used with the controller protocol, to greatly reduce risk of identifier reuse. - When we're choosing an exit node for a circuit, and we have no pending streams, choose a good general exit rather than one that supports "all the pending streams". Bugfix on 0.1.1.x. Fix by rovv. - Fix another case of assuming, when a specific exit is requested, that we know more than the user about what hosts it allows. Fixes one case of bug 752. Patch from rovv. - Clip the MaxCircuitDirtiness config option to a minimum of 10 seconds. Warn the user if lower values are given in the configuration. Bugfix on 0.1.0.1-rc. Patch by Sebastian. - Clip the CircuitBuildTimeout to a minimum of 30 seconds. Warn the user if lower values are given in the configuration. Bugfix on 0.1.1.17-rc. Patch by Sebastian. - Fix a memory leak when we decline to add a v2 rendezvous descriptor to the cache because we already had a v0 descriptor with the same ID. Bugfix on 0.2.0.18-alpha. - Fix a race condition when freeing keys shared between main thread and CPU workers that could result in a memory leak. Bugfix on 0.1.0.1-rc. Fixes bug 889. - Send a valid END cell back when a client tries to connect to a nonexistent hidden service port. Bugfix on 0.1.2.15. Fixes bug 840. Patch from rovv. - Check which hops rendezvous stream cells are associated with to prevent possible guess-the-streamid injection attacks from intermediate hops. Fixes another case of bug 446. Based on patch from rovv. - If a broken client asks a non-exit router to connect somewhere, do not even do the DNS lookup before rejecting the connection. Fixes another case of bug 619. Patch from rovv. - When a relay gets a create cell it can't decrypt (e.g. because it's using the wrong onion key), we were dropping it and letting the client time out. Now actually answer with a destroy cell. Fixes bug 904. Bugfix on 0.0.2pre8. o Minor bugfixes (hidden services): - Do not throw away existing introduction points on SIGHUP. Bugfix on 0.0.6pre1. Patch by Karsten. Fixes bug 874. o Minor features: - Report the case where all signatures in a detached set are rejected differently than the case where there is an error handling the detached set. - When we realize that another process has modified our cached descriptors, print out a more useful error message rather than triggering an assertion. Fixes bug 885. Patch from Karsten. - Implement the 0x20 hack to better resist DNS poisoning: set the case on outgoing DNS requests randomly, and reject responses that do not match the case correctly. This logic can be disabled with the ServerDNSRamdomizeCase setting, if you are using one of the 0.3% of servers that do not reliably preserve case in replies. See "Increased DNS Forgery Resistance through 0x20-Bit Encoding" for more info. - Check DNS replies for more matching fields to better resist DNS poisoning. - Never use OpenSSL compression: it wastes RAM and CPU trying to compress cells, which are basically all encrypted, compressed, or both. Changes in version 0.2.0.32 - 2008-11-20 Tor 0.2.0.32 fixes a major security problem in Debian and Ubuntu packages (and maybe other packages) noticed by Theo de Raadt, fixes a smaller security flaw that might allow an attacker to access local services, further improves hidden service performance, and fixes a variety of other issues. o Security fixes: - The "User" and "Group" config options did not clear the supplementary group entries for the Tor process. The "User" option is now more robust, and we now set the groups to the specified user's primary group. The "Group" option is now ignored. For more detailed logging on credential switching, set CREDENTIAL_LOG_LEVEL in common/compat.c to LOG_NOTICE or higher. Patch by Jacob Appelbaum and Steven Murdoch. Bugfix on 0.0.2pre14. Fixes bug 848 and 857. - The "ClientDNSRejectInternalAddresses" config option wasn't being consistently obeyed: if an exit relay refuses a stream because its exit policy doesn't allow it, we would remember what IP address the relay said the destination address resolves to, even if it's an internal IP address. Bugfix on 0.2.0.7-alpha; patch by rovv. o Major bugfixes: - Fix a DOS opportunity during the voting signature collection process at directory authorities. Spotted by rovv. Bugfix on 0.2.0.x. o Major bugfixes (hidden services): - When fetching v0 and v2 rendezvous service descriptors in parallel, we were failing the whole hidden service request when the v0 descriptor fetch fails, even if the v2 fetch is still pending and might succeed. Similarly, if the last v2 fetch fails, we were failing the whole hidden service request even if a v0 fetch is still pending. Fixes bug 814. Bugfix on 0.2.0.10-alpha. - When extending a circuit to a hidden service directory to upload a rendezvous descriptor using a BEGIN_DIR cell, almost 1/6 of all requests failed, because the router descriptor has not been downloaded yet. In these cases, do not attempt to upload the rendezvous descriptor, but wait until the router descriptor is downloaded and retry. Likewise, do not attempt to fetch a rendezvous descriptor from a hidden service directory for which the router descriptor has not yet been downloaded. Fixes bug 767. Bugfix on 0.2.0.10-alpha. o Minor bugfixes: - Fix several infrequent memory leaks spotted by Coverity. - When testing for libevent functions, set the LDFLAGS variable correctly. Found by Riastradh. - Avoid a bug where the FastFirstHopPK 0 option would keep Tor from bootstrapping with tunneled directory connections. Bugfix on 0.1.2.5-alpha. Fixes bug 797. Found by Erwin Lam. - When asked to connect to A.B.exit:80, if we don't know the IP for A and we know that server B rejects most-but-not all connections to port 80, we would previously reject the connection. Now, we assume the user knows what they were asking for. Fixes bug 752. Bugfix on 0.0.9rc5. Diagnosed by BarkerJr. - If we overrun our per-second write limits a little, count this as having used up our write allocation for the second, and choke outgoing directory writes. Previously, we had only counted this when we had met our limits precisely. Fixes bug 824. Patch from by rovv. Bugfix on 0.2.0.x (??). - Remove the old v2 directory authority 'lefkada' from the default list. It has been gone for many months. - Stop doing unaligned memory access that generated bus errors on sparc64. Bugfix on 0.2.0.10-alpha. Fixes bug 862. - Make USR2 log-level switch take effect immediately. Bugfix on 0.1.2.8-beta. o Minor bugfixes (controller): - Make DNS resolved events into "CLOSED", not "FAILED". Bugfix on 0.1.2.5-alpha. Fix by Robert Hogan. Resolves bug 807. Changes in version 0.2.0.31 - 2008-09-03 Tor 0.2.0.31 addresses two potential anonymity issues, starts to fix a big bug we're seeing where in rare cases traffic from one Tor stream gets mixed into another stream, and fixes a variety of smaller issues. o Major bugfixes: - Make sure that two circuits can never exist on the same connection with the same circuit ID, even if one is marked for close. This is conceivably a bugfix for bug 779. Bugfix on 0.1.0.4-rc. - Relays now reject risky extend cells: if the extend cell includes a digest of all zeroes, or asks to extend back to the relay that sent the extend cell, tear down the circuit. Ideas suggested by rovv. - If not enough of our entry guards are available so we add a new one, we might use the new one even if it overlapped with the current circuit's exit relay (or its family). Anonymity bugfix pointed out by rovv. o Minor bugfixes: - Recover 3-7 bytes that were wasted per memory chunk. Fixes bug 794; bug spotted by rovv. Bugfix on 0.2.0.1-alpha. - Correctly detect the presence of the linux/netfilter_ipv4.h header when building against recent kernels. Bugfix on 0.1.2.1-alpha. - Pick size of default geoip filename string correctly on windows. Fixes bug 806. Bugfix on 0.2.0.30. - Make the autoconf script accept the obsolete --with-ssl-dir option as an alias for the actually-working --with-openssl-dir option. Fix the help documentation to recommend --with-openssl-dir. Based on a patch by "Dave". Bugfix on 0.2.0.1-alpha. - When using the TransPort option on OpenBSD, and using the User option to change UID and drop privileges, make sure to open /dev/pf before dropping privileges. Fixes bug 782. Patch from Christopher Davis. Bugfix on 0.1.2.1-alpha. - Try to attach connections immediately upon receiving a RENDEZVOUS2 or RENDEZVOUS_ESTABLISHED cell. This can save a second or two on the client side when connecting to a hidden service. Bugfix on 0.0.6pre1. Found and fixed by Christian Wilms; resolves bug 743. - When closing an application-side connection because its circuit is getting torn down, generate the stream event correctly. Bugfix on 0.1.2.x. Anonymous patch. Changes in version 0.2.0.30 - 2008-07-15 This new stable release switches to a more efficient directory distribution design, adds features to make connections to the Tor network harder to block, allows Tor to act as a DNS proxy, adds separate rate limiting for relayed traffic to make it easier for clients to become relays, fixes a variety of potential anonymity problems, and includes the usual huge pile of other features and bug fixes. o New v3 directory design: - Tor now uses a new way to learn about and distribute information about the network: the directory authorities vote on a common network status document rather than each publishing their own opinion. Now clients and caches download only one networkstatus document to bootstrap, rather than downloading one for each authority. Clients only download router descriptors listed in the consensus. Implements proposal 101; see doc/spec/dir-spec.txt for details. - Set up moria1, tor26, and dizum as v3 directory authorities in addition to being v2 authorities. Also add three new ones: ides (run by Mike Perry), gabelmoo (run by Karsten Loesing), and dannenberg (run by CCC). - Switch to multi-level keys for directory authorities: now their long-term identity key can be kept offline, and they periodically generate a new signing key. Clients fetch the "key certificates" to keep up to date on the right keys. Add a standalone tool "tor-gencert" to generate key certificates. Implements proposal 103. - Add a new V3AuthUseLegacyKey config option to make it easier for v3 authorities to change their identity keys if another bug like Debian's OpenSSL RNG flaw appears. - Authorities and caches fetch the v2 networkstatus documents less often, now that v3 is recommended. o Make Tor connections stand out less on the wire: - Use an improved TLS handshake designed by Steven Murdoch in proposal 124, as revised in proposal 130. The new handshake is meant to be harder for censors to fingerprint, and it adds the ability to detect certain kinds of man-in-the-middle traffic analysis attacks. The new handshake format includes version negotiation for OR connections as described in proposal 105, which will allow us to improve Tor's link protocol more safely in the future. - Enable encrypted directory connections by default for non-relays, so censor tools that block Tor directory connections based on their plaintext patterns will no longer work. This means Tor works in certain censored countries by default again. - Stop including recognizeable strings in the commonname part of Tor's x509 certificates. o Implement bridge relays: - Bridge relays (or "bridges" for short) are Tor relays that aren't listed in the main Tor directory. Since there is no complete public list of them, even an ISP that is filtering connections to all the known Tor relays probably won't be able to block all the bridges. See doc/design-paper/blocking.pdf and proposal 125 for details. - New config option BridgeRelay that specifies you want to be a bridge relay rather than a normal relay. When BridgeRelay is set to 1, then a) you cache dir info even if your DirPort ins't on, and b) the default for PublishServerDescriptor is now "bridge" rather than "v2,v3". - New config option "UseBridges 1" for clients that want to use bridge relays instead of ordinary entry guards. Clients then specify bridge relays by adding "Bridge" lines to their config file. Users can learn about a bridge relay either manually through word of mouth, or by one of our rate-limited mechanisms for giving out bridge addresses without letting an attacker easily enumerate them all. See https://www.torproject.org/bridges for details. - Bridge relays behave like clients with respect to time intervals for downloading new v3 consensus documents -- otherwise they stand out. Bridge users now wait until the end of the interval, so their bridge relay will be sure to have a new consensus document. o Implement bridge directory authorities: - Bridge authorities are like normal directory authorities, except they don't serve a list of known bridges. Therefore users that know a bridge's fingerprint can fetch a relay descriptor for that bridge, including fetching updates e.g. if the bridge changes IP address, yet an attacker can't just fetch a list of all the bridges. - Set up Tonga as the default bridge directory authority. - Bridge authorities refuse to serve bridge descriptors or other bridge information over unencrypted connections (that is, when responding to direct DirPort requests rather than begin_dir cells.) - Bridge directory authorities do reachability testing on the bridges they know. They provide router status summaries to the controller via "getinfo ns/purpose/bridge", and also dump summaries to a file periodically, so we can keep internal stats about which bridges are functioning. - If bridge users set the UpdateBridgesFromAuthority config option, but the digest they ask for is a 404 on the bridge authority, they fall back to contacting the bridge directly. - Bridges always use begin_dir to publish their server descriptor to the bridge authority using an anonymous encrypted tunnel. - Early work on a "bridge community" design: if bridge authorities set the BridgePassword config option, they will serve a snapshot of known bridge routerstatuses from their DirPort to anybody who knows that password. Unset by default. - Tor now includes an IP-to-country GeoIP file, so bridge relays can report sanitized aggregated summaries in their extra-info documents privately to the bridge authority, listing which countries are able to reach them. We hope this mechanism will let us learn when certain countries start trying to block bridges. - Bridge authorities write bridge descriptors to disk, so they can reload them after a reboot. They can also export the descriptors to other programs, so we can distribute them to blocked users via the BridgeDB interface, e.g. via https://bridges.torproject.org/ and bridges@torproject.org. o Tor can be a DNS proxy: - The new client-side DNS proxy feature replaces the need for dns-proxy-tor: Just set "DNSPort 9999", and Tor will now listen for DNS requests on port 9999, use the Tor network to resolve them anonymously, and send the reply back like a regular DNS server. The code still only implements a subset of DNS. - Add a new AutomapHostsOnResolve option: when it is enabled, any resolve request for hosts matching a given pattern causes Tor to generate an internal virtual address mapping for that host. This allows DNSPort to work sensibly with hidden service users. By default, .exit and .onion addresses are remapped; the list of patterns can be reconfigured with AutomapHostsSuffixes. - Add an "-F" option to tor-resolve to force a resolve for a .onion address. Thanks to the AutomapHostsOnResolve option, this is no longer a completely silly thing to do. o Major features (relay usability): - New config options RelayBandwidthRate and RelayBandwidthBurst: a separate set of token buckets for relayed traffic. Right now relayed traffic is defined as answers to directory requests, and OR connections that don't have any local circuits on them. See proposal 111 for details. - Create listener connections before we setuid to the configured User and Group. Now non-Windows users can choose port values under 1024, start Tor as root, and have Tor bind those ports before it changes to another UID. (Windows users could already pick these ports.) - Added a new ConstrainedSockets config option to set SO_SNDBUF and SO_RCVBUF on TCP sockets. Hopefully useful for Tor servers running on "vserver" accounts. Patch from coderman. o Major features (directory authorities): - Directory authorities track weighted fractional uptime and weighted mean-time-between failures for relays. WFU is suitable for deciding whether a node is "usually up", while MTBF is suitable for deciding whether a node is "likely to stay up." We need both, because "usually up" is a good requirement for guards, while "likely to stay up" is a good requirement for long-lived connections. - Directory authorities use a new formula for selecting which relays to advertise as Guards: they must be in the top 7/8 in terms of how long we have known about them, and above the median of those nodes in terms of weighted fractional uptime. - Directory authorities use a new formula for selecting which relays to advertise as Stable: when we have 4 or more days of data, use median measured MTBF rather than median declared uptime. Implements proposal 108. - Directory authorities accept and serve "extra info" documents for routers. Routers now publish their bandwidth-history lines in the extra-info docs rather than the main descriptor. This step saves 60% (!) on compressed router descriptor downloads. Servers upload extra-info docs to any authority that accepts them; directory authorities now allow multiple router descriptors and/or extra info documents to be uploaded in a single go. Authorities, and caches that have been configured to download extra-info documents, download them as needed. Implements proposal 104. - Authorities now list relays who have the same nickname as a different named relay, but list them with a new flag: "Unnamed". Now we can make use of relays that happen to pick the same nickname as a server that registered two years ago and then disappeared. Implements proposal 122. - Store routers in a file called cached-descriptors instead of in cached-routers. Initialize cached-descriptors from cached-routers if the old format is around. The new format allows us to store annotations along with descriptors, to record the time we received each descriptor, its source, and its purpose: currently one of general, controller, or bridge. o Major features (other): - New config options WarnPlaintextPorts and RejectPlaintextPorts so Tor can warn and/or refuse connections to ports commonly used with vulnerable-plaintext protocols. Currently we warn on ports 23, 109, 110, and 143, but we don't reject any. Based on proposal 129 by Kevin Bauer and Damon McCoy. - Integrate Karsten Loesing's Google Summer of Code project to publish hidden service descriptors on a set of redundant relays that are a function of the hidden service address. Now we don't have to rely on three central hidden service authorities for publishing and fetching every hidden service descriptor. Implements proposal 114. - Allow tunnelled directory connections to ask for an encrypted "begin_dir" connection or an anonymized "uses a full Tor circuit" connection independently. Now we can make anonymized begin_dir connections for (e.g.) more secure hidden service posting and fetching. o Major bugfixes (crashes and assert failures): - Stop imposing an arbitrary maximum on the number of file descriptors used for busy servers. Bug reported by Olaf Selke; patch from Sebastian Hahn. - Avoid possible failures when generating a directory with routers with over-long versions strings, or too many flags set. - Fix a rare assert error when we're closing one of our threads: use a mutex to protect the list of logs, so we never write to the list as it's being freed. Fixes the very rare bug 575, which is kind of the revenge of bug 222. - Avoid segfault in the case where a badly behaved v2 versioning directory sends a signed networkstatus with missing client-versions. - When we hit an EOF on a log (probably because we're shutting down), don't try to remove the log from the list: just mark it as unusable. (Bulletproofs against bug 222.) o Major bugfixes (code security fixes): - Detect size overflow in zlib code. Reported by Justin Ferguson and Dan Kaminsky. - Rewrite directory tokenization code to never run off the end of a string. Fixes bug 455. Patch from croup. - Be more paranoid about overwriting sensitive memory on free(), as a defensive programming tactic to ensure forward secrecy. o Major bugfixes (anonymity fixes): - Reject requests for reverse-dns lookup of names that are in a private address space. Patch from lodger. - Never report that we've used more bandwidth than we're willing to relay: it leaks how much non-relay traffic we're using. Resolves bug 516. - As a client, do not believe any server that tells us that an address maps to an internal address space. - Warn about unsafe ControlPort configurations. - Directory authorities now call routers Fast if their bandwidth is at least 100KB/s, and consider their bandwidth adequate to be a Guard if it is at least 250KB/s, no matter the medians. This fix complements proposal 107. - Directory authorities now never mark more than 2 servers per IP as Valid and Running (or 5 on addresses shared by authorities). Implements proposal 109, by Kevin Bauer and Damon McCoy. - If we're a relay, avoid picking ourselves as an introduction point, a rendezvous point, or as the final hop for internal circuits. Bug reported by taranis and lodger. - Exit relays that are used as a client can now reach themselves using the .exit notation, rather than just launching an infinite pile of circuits. Fixes bug 641. Reported by Sebastian Hahn. - Fix a bug where, when we were choosing the 'end stream reason' to put in our relay end cell that we send to the exit relay, Tor clients on Windows were sometimes sending the wrong 'reason'. The anonymity problem is that exit relays may be able to guess whether the client is running Windows, thus helping partition the anonymity set. Down the road we should stop sending reasons to exit relays, or otherwise prevent future versions of this bug. - Only update guard status (usable / not usable) once we have enough directory information. This was causing us to discard all our guards on startup if we hadn't been running for a few weeks. Fixes bug 448. - When our directory information has been expired for a while, stop being willing to build circuits using it. Fixes bug 401. o Major bugfixes (peace of mind for relay operators) - Non-exit relays no longer answer "resolve" relay cells, so they can't be induced to do arbitrary DNS requests. (Tor clients already avoid using non-exit relays for resolve cells, but now servers enforce this too.) Fixes bug 619. Patch from lodger. - When we setconf ClientOnly to 1, close any current OR and Dir listeners. Reported by mwenge. o Major bugfixes (other): - If we only ever used Tor for hidden service lookups or posts, we would stop building circuits and start refusing connections after 24 hours, since we falsely believed that Tor was dormant. Reported by nwf. - Add a new __HashedControlSessionPassword option for controllers to use for one-off session password hashes that shouldn't get saved to disk by SAVECONF --- Vidalia users were accumulating a pile of HashedControlPassword lines in their torrc files, one for each time they had restarted Tor and then clicked Save. Make Tor automatically convert "HashedControlPassword" to this new option but only when it's given on the command line. Partial fix for bug 586. - Patch from "Andrew S. Lists" to catch when we contact a directory mirror at IP address X and he says we look like we're coming from IP address X. Otherwise this would screw up our address detection. - Reject uploaded descriptors and extrainfo documents if they're huge. Otherwise we'll cache them all over the network and it'll clog everything up. Suggested by Aljosha Judmayer. - When a hidden service was trying to establish an introduction point, and Tor *did* manage to reuse one of the preemptively built circuits, it didn't correctly remember which one it used, so it asked for another one soon after, until there were no more preemptive circuits, at which point it launched one from scratch. Bugfix on 0.0.9.x. o Rate limiting and load balancing improvements: - When we add data to a write buffer in response to the data on that write buffer getting low because of a flush, do not consider the newly added data as a candidate for immediate flushing, but rather make it wait until the next round of writing. Otherwise, we flush and refill recursively, and a single greedy TLS connection can eat all of our bandwidth. - When counting the number of bytes written on a TLS connection, look at the BIO actually used for writing to the network, not at the BIO used (sometimes) to buffer data for the network. Looking at different BIOs could result in write counts on the order of ULONG_MAX. Fixes bug 614. - If we change our MaxAdvertisedBandwidth and then reload torrc, Tor won't realize it should publish a new relay descriptor. Fixes bug 688, reported by mfr. - Avoid using too little bandwidth when our clock skips a few seconds. - Choose which bridge to use proportional to its advertised bandwidth, rather than uniformly at random. This should speed up Tor for bridge users. Also do this for people who set StrictEntryNodes. o Bootstrapping faster and building circuits more intelligently: - Fix bug 660 that was preventing us from knowing that we should preemptively build circuits to handle expected directory requests. - When we're checking if we have enough dir info for each relay to begin establishing circuits, make sure that we actually have the descriptor listed in the consensus, not just any descriptor. - Correctly notify one-hop connections when a circuit build has failed. Possible fix for bug 669. Found by lodger. - Clients now hold circuitless TLS connections open for 1.5 times MaxCircuitDirtiness (15 minutes), since it is likely that they'll rebuild a new circuit over them within that timeframe. Previously, they held them open only for KeepalivePeriod (5 minutes). o Performance improvements (memory): - Add OpenBSD malloc code from "phk" as an optional malloc replacement on Linux: some glibc libraries do very poorly with Tor's memory allocation patterns. Pass --enable-openbsd-malloc to ./configure to get the replacement malloc code. - Switch our old ring buffer implementation for one more like that used by free Unix kernels. The wasted space in a buffer with 1mb of data will now be more like 8k than 1mb. The new implementation also avoids realloc();realloc(); patterns that can contribute to memory fragmentation. - Change the way that Tor buffers data that it is waiting to write. Instead of queueing data cells in an enormous ring buffer for each client->OR or OR->OR connection, we now queue cells on a separate queue for each circuit. This lets us use less slack memory, and will eventually let us be smarter about prioritizing different kinds of traffic. - Reference-count and share copies of address policy entries; only 5% of them were actually distinct. - Tune parameters for cell pool allocation to minimize amount of RAM overhead used. - Keep unused 4k and 16k buffers on free lists, rather than wasting 8k for every single inactive connection_t. Free items from the 4k/16k-buffer free lists when they haven't been used for a while. - Make memory debugging information describe more about history of cell allocation, so we can help reduce our memory use. - Be even more aggressive about releasing RAM from small empty buffers. Thanks to our free-list code, this shouldn't be too performance-intensive. - Log malloc statistics from mallinfo() on platforms where it exists. - Use memory pools to allocate cells with better speed and memory efficiency, especially on platforms where malloc() is inefficient. - Add a --with-tcmalloc option to the configure script to link against tcmalloc (if present). Does not yet search for non-system include paths. o Performance improvements (socket management): - Count the number of open sockets separately from the number of active connection_t objects. This will let us avoid underusing our allocated connection limit. - We no longer use socket pairs to link an edge connection to an anonymous directory connection or a DirPort test connection. Instead, we track the link internally and transfer the data in-process. This saves two sockets per "linked" connection (at the client and at the server), and avoids the nasty Windows socketpair() workaround. - We were leaking a file descriptor if Tor started with a zero-length cached-descriptors file. Patch by "freddy77". o Performance improvements (CPU use): - Never walk through the list of logs if we know that no log target is interested in a given message. - Call routerlist_remove_old_routers() much less often. This should speed startup, especially on directory caches. - Base64 decoding was actually showing up on our profile when parsing the initial descriptor file; switch to an in-process all-at-once implementation that's about 3.5x times faster than calling out to OpenSSL. - Use a slightly simpler string hashing algorithm (copying Python's instead of Java's) and optimize our digest hashing algorithm to take advantage of 64-bit platforms and to remove some possibly-costly voodoo. - When implementing AES counter mode, update only the portions of the counter buffer that need to change, and don't keep separate network-order and host-order counters on big-endian hosts (where they are the same). - Add an in-place version of aes_crypt() so that we can avoid doing a needless memcpy() call on each cell payload. - Use Critical Sections rather than Mutexes for synchronizing threads on win32; Mutexes are heavier-weight, and designed for synchronizing between processes. o Performance improvements (bandwidth use): - Don't try to launch new descriptor downloads quite so often when we already have enough directory information to build circuits. - Version 1 directories are no longer generated in full. Instead, authorities generate and serve "stub" v1 directories that list no servers. This will stop Tor versions 0.1.0.x and earlier from working, but (for security reasons) nobody should be running those versions anyway. - Avoid going directly to the directory authorities even if you're a relay, if you haven't found yourself reachable yet or if you've decided not to advertise your dirport yet. Addresses bug 556. - If we've gone 12 hours since our last bandwidth check, and we estimate we have less than 50KB bandwidth capacity but we could handle more, do another bandwidth test. - Support "If-Modified-Since" when answering HTTP requests for directories, running-routers documents, and v2 and v3 networkstatus documents. (There's no need to support it for router descriptors, since those are downloaded by descriptor digest.) - Stop fetching directory info so aggressively if your DirPort is on but your ORPort is off; stop fetching v2 dir info entirely. You can override these choices with the new FetchDirInfoEarly config option. o Changed config option behavior (features): - Configuration files now accept C-style strings as values. This helps encode characters not allowed in the current configuration file format, such as newline or #. Addresses bug 557. - Add hidden services and DNSPorts to the list of things that make Tor accept that it has running ports. Change starting Tor with no ports from a fatal error to a warning; we might change it back if this turns out to confuse anybody. Fixes bug 579. - Make PublishServerDescriptor default to 1, so the default doesn't have to change as we invent new directory protocol versions. - Allow people to say PreferTunnelledDirConns rather than PreferTunneledDirConns, for those alternate-spellers out there. - Raise the default BandwidthRate/BandwidthBurst to 5MB/10MB, to accommodate the growing number of servers that use the default and are reaching it. - Make it possible to enable HashedControlPassword and CookieAuthentication at the same time. - When a TrackHostExits-chosen exit fails too many times in a row, stop using it. Fixes bug 437. o Changed config option behavior (bugfixes): - Do not read the configuration file when we've only been told to generate a password hash. Fixes bug 643. Bugfix on 0.0.9pre5. Fix based on patch from Sebastian Hahn. - Actually validate the options passed to AuthDirReject, AuthDirInvalid, AuthDirBadDir, and AuthDirBadExit. - Make "ClientOnly 1" config option disable directory ports too. - Don't stop fetching descriptors when FetchUselessDescriptors is set, even if we stop asking for circuits. Bug reported by tup and ioerror. - Servers used to decline to publish their DirPort if their BandwidthRate or MaxAdvertisedBandwidth were below a threshold. Now they look only at BandwidthRate and RelayBandwidthRate. - Treat "2gb" when given in torrc for a bandwidth as meaning 2gb, minus 1 byte: the actual maximum declared bandwidth. - Make "TrackHostExits ." actually work. Bugfix on 0.1.0.x. - Make the NodeFamilies config option work. (Reported by lodger -- it has never actually worked, even though we added it in Oct 2004.) - If Tor is invoked from something that isn't a shell (e.g. Vidalia), now we expand "-f ~/.tor/torrc" correctly. Suggested by Matt Edman. o New config options: - New configuration options AuthDirMaxServersPerAddr and AuthDirMaxServersperAuthAddr to override default maximum number of servers allowed on a single IP address. This is important for running a test network on a single host. - Three new config options (AlternateDirAuthority, AlternateBridgeAuthority, and AlternateHSAuthority) that let the user selectively replace the default directory authorities by type, rather than the all-or-nothing replacement that DirServer offers. - New config options AuthDirBadDir and AuthDirListBadDirs for authorities to mark certain relays as "bad directories" in the networkstatus documents. Also supports the "!baddir" directive in the approved-routers file. - New config option V2AuthoritativeDirectory that all v2 directory authorities must set. This lets v3 authorities choose not to serve v2 directory information. o Minor features (other): - When we're not serving v2 directory information, there is no reason to actually keep any around. Remove the obsolete files and directory on startup if they are very old and we aren't going to serve them. - When we negotiate a v2 link-layer connection (not yet implemented), accept RELAY_EARLY cells and turn them into RELAY cells if we've negotiated a v1 connection for their next step. Initial steps for proposal 110. - When we have no consensus, check FallbackNetworkstatusFile (defaults to $PREFIX/share/tor/fallback-consensus) for a consensus. This way we can start out knowing some directory caches. We don't ship with a fallback consensus by default though, because it was making bootstrapping take too long while we tried many down relays. - Authorities send back an X-Descriptor-Not-New header in response to an accepted-but-discarded descriptor upload. Partially implements fix for bug 535. - If we find a cached-routers file that's been sitting around for more than 28 days unmodified, then most likely it's a leftover from when we upgraded to 0.2.0.8-alpha. Remove it. It has no good routers anyway. - When we (as a cache) download a descriptor because it was listed in a consensus, remember when the consensus was supposed to expire, and don't expire the descriptor until then. - Optionally (if built with -DEXPORTMALLINFO) export the output of mallinfo via http, as tor/mallinfo.txt. Only accessible from localhost. - Tag every guard node in our state file with the version that we believe added it, or with our own version if we add it. This way, if a user temporarily runs an old version of Tor and then switches back to a new one, she doesn't automatically lose her guards. - When somebody requests a list of statuses or servers, and we have none of those, return a 404 rather than an empty 200. - Merge in some (as-yet-unused) IPv6 address manipulation code. (Patch from croup.) - Add an HSAuthorityRecordStats option that hidden service authorities can use to track statistics of overall hidden service usage without logging information that would be as useful to an attacker. - Allow multiple HiddenServicePort directives with the same virtual port; when they occur, the user is sent round-robin to one of the target ports chosen at random. Partially fixes bug 393 by adding limited ad-hoc round-robining. - Revamp file-writing logic so we don't need to have the entire contents of a file in memory at once before we write to disk. Tor, meet stdio. o Minor bugfixes (other): - Alter the code that tries to recover from unhandled write errors, to not try to flush onto a socket that's given us unhandled errors. - Directory mirrors no longer include a guess at the client's IP address if the connection appears to be coming from the same /24 network; it was producing too many wrong guesses. - If we're trying to flush the last bytes on a connection (for example, when answering a directory request), reset the time-to-give-up timeout every time we manage to write something on the socket. - Reject router descriptors with out-of-range bandwidthcapacity or bandwidthburst values. - If we can't expand our list of entry guards (e.g. because we're using bridges or we have StrictEntryNodes set), don't mark relays down when they fail a directory request. Otherwise we're too quick to mark all our entry points down. - Authorities no longer send back "400 you're unreachable please fix it" errors to Tor servers that aren't online all the time. We're supposed to tolerate these servers now. - Let directory authorities startup even when they can't generate a descriptor immediately, e.g. because they don't know their address. - Correctly enforce that elements of directory objects do not appear more often than they are allowed to appear. - Stop allowing hibernating servers to be "stable" or "fast". - On Windows, we were preventing other processes from reading cached-routers while Tor was running. (Reported by janbar) - Check return values from pthread_mutex functions. - When opening /dev/null in finish_daemonize(), do not pass the O_CREAT flag. Fortify was complaining, and correctly so. Fixes bug 742; fix from Michael Scherer. Bugfix on 0.0.2pre19. o Controller features: - The GETCONF command now escapes and quotes configuration values that don't otherwise fit into the torrc file. - The SETCONF command now handles quoted values correctly. - Add "GETINFO/desc-annotations/id/" so controllers can ask about source, timestamp of arrival, purpose, etc. We need something like this to help Vidalia not do GeoIP lookups on bridge addresses. - Allow multiple HashedControlPassword config lines, to support multiple controller passwords. - Accept LF instead of CRLF on controller, since some software has a hard time generating real Internet newlines. - Add GETINFO values for the server status events "REACHABILITY_SUCCEEDED" and "GOOD_SERVER_DESCRIPTOR". Patch from Robert Hogan. - There is now an ugly, temporary "desc/all-recent-extrainfo-hack" GETINFO for Torstat to use until it can switch to using extrainfos. - New config option CookieAuthFile to choose a new location for the cookie authentication file, and config option CookieAuthFileGroupReadable to make it group-readable. - Add a SOURCE_ADDR field to STREAM NEW events so that controllers can match requests to applications. Patch from Robert Hogan. - Add a RESOLVE command to launch hostname lookups. Original patch from Robert Hogan. - Add GETINFO status/enough-dir-info to let controllers tell whether Tor has downloaded sufficient directory information. Patch from Tup. - You can now use the ControlSocket option to tell Tor to listen for controller connections on Unix domain sockets on systems that support them. Patch from Peter Palfrader. - New "GETINFO address-mappings/*" command to get address mappings with expiry information. "addr-mappings/*" is now deprecated. Patch from Tup. - Add a new config option __DisablePredictedCircuits designed for use by the controller, when we don't want Tor to build any circuits preemptively. - Let the controller specify HOP=%d as an argument to ATTACHSTREAM, so we can exit from the middle of the circuit. - Implement "getinfo status/circuit-established". - Implement "getinfo status/version/..." so a controller can tell whether the current version is recommended, and whether any versions are good, and how many authorities agree. Patch from "shibz". - Controllers should now specify cache=no or cache=yes when using the +POSTDESCRIPTOR command. - Add a "PURPOSE=" argument to "STREAM NEW" events, as suggested by Robert Hogan. Fixes the first part of bug 681. - When reporting clock skew, and we know that the clock is _at least as skewed_ as some value, but we don't know the actual value, report the value as a "minimum skew." o Controller bugfixes: - Generate "STATUS_SERVER" events rather than misspelled "STATUS_SEVER" events. Caught by mwenge. - Reject controller commands over 1MB in length, so rogue processes can't run us out of memory. - Change the behavior of "getinfo status/good-server-descriptor" so it doesn't return failure when any authority disappears. - Send NAMESERVER_STATUS messages for a single failed nameserver correctly. - When the DANGEROUS_VERSION controller status event told us we're running an obsolete version, it used the string "OLD" to describe it. Yet the "getinfo" interface used the string "OBSOLETE". Now use "OBSOLETE" in both cases. - Respond to INT and TERM SIGNAL commands before we execute the signal, in case the signal shuts us down. We had a patch in 0.1.2.1-alpha that tried to do this by queueing the response on the connection's buffer before shutting down, but that really isn't the same thing at all. Bug located by Matt Edman. - Provide DNS expiry times in GMT, not in local time. For backward compatibility, ADDRMAP events only provide GMT expiry in an extended field. "GETINFO address-mappings" always does the right thing. - Use CRLF line endings properly in NS events. - Make 'getinfo fingerprint' return a 551 error if we're not a server, so we match what the control spec claims we do. Reported by daejees. - Fix a typo in an error message when extendcircuit fails that caused us to not follow the \r\n-based delimiter protocol. Reported by daejees. - When tunneling an encrypted directory connection, and its first circuit fails, do not leave it unattached and ask the controller to deal. Fixes the second part of bug 681. - Treat some 403 responses from directory servers as INFO rather than WARN-severity events. o Portability / building / compiling: - When building with --enable-gcc-warnings, check for whether Apple's warning "-Wshorten-64-to-32" is available. - Support compilation to target iPhone; patch from cjacker huang. To build for iPhone, pass the --enable-iphone option to configure. - Port Tor to build and run correctly on Windows CE systems, using the wcecompat library. Contributed by Valerio Lupi. - Detect non-ASCII platforms (if any still exist) and refuse to build there: some of our code assumes that 'A' is 65 and so on. - Clear up some MIPSPro compiler warnings. - Make autoconf search for libevent, openssl, and zlib consistently. - Update deprecated macros in configure.in. - When warning about missing headers, tell the user to let us know if the compile succeeds anyway, so we can downgrade the warning. - Include the current subversion revision as part of the version string: either fetch it directly if we're in an SVN checkout, do some magic to guess it if we're in an SVK checkout, or use the last-detected version if we're building from a .tar.gz. Use this version consistently in log messages. - Correctly report platform name on Windows 95 OSR2 and Windows 98 SE. - Read resolv.conf files correctly on platforms where read() returns partial results on small file reads. - Build without verbose warnings even on gcc 4.2 and 4.3. - On Windows, correctly detect errors when listing the contents of a directory. Fix from lodger. - Run 'make test' as part of 'make dist', so we stop releasing so many development snapshots that fail their unit tests. - Add support to detect Libevent versions in the 1.4.x series on mingw. - Add command-line arguments to unit-test executable so that we can invoke any chosen test from the command line rather than having to run the whole test suite at once; and so that we can turn on logging for the unit tests. - Do not automatically run configure from autogen.sh. This non-standard behavior tended to annoy people who have built other programs. - Fix a macro/CPP interaction that was confusing some compilers: some GCCs don't like #if/#endif pairs inside macro arguments. Fixes bug 707. - Fix macro collision between OpenSSL 0.9.8h and Windows headers. Fixes bug 704; fix from Steven Murdoch. - Correctly detect transparent proxy support on Linux hosts that require in.h to be included before netfilter_ipv4.h. Patch from coderman. o Logging improvements: - When we haven't had any application requests lately, don't bother logging that we have expired a bunch of descriptors. - When attempting to open a logfile fails, tell us why. - Only log guard node status when guard node status has changed. - Downgrade the 3 most common "INFO" messages to "DEBUG". This will make "INFO" 75% less verbose. - When SafeLogging is disabled, log addresses along with all TLS errors. - Report TLS "zero return" case as a "clean close" and "IO error" as a "close". Stop calling closes "unexpected closes": existing Tors don't use SSL_close(), so having a connection close without the TLS shutdown handshake is hardly unexpected. - When we receive a consensus from the future, warn about skew. - Make "not enough dir info yet" warnings describe *why* Tor feels it doesn't have enough directory info yet. - On the USR1 signal, when dmalloc is in use, log the top 10 memory consumers. (We already do this on HUP.) - Give more descriptive well-formedness errors for out-of-range hidden service descriptor/protocol versions. - Stop recommending that every server operator send mail to tor-ops. Resolves bug 597. Bugfix on 0.1.2.x. - Improve skew reporting: try to give the user a better log message about how skewed they are, and how much this matters. - New --quiet command-line option to suppress the default console log. Good in combination with --hash-password. - Don't complain that "your server has not managed to confirm that its ports are reachable" if we haven't been able to build any circuits yet. - Detect the reason for failing to mmap a descriptor file we just wrote, and give a more useful log message. Fixes bug 533. - Always prepend "Bug: " to any log message about a bug. - When dumping memory usage, list bytes used in buffer memory free-lists. - When running with dmalloc, dump more stats on hup and on exit. - Put a platform string (e.g. "Linux i686") in the startup log message, so when people paste just their logs, we know if it's OpenBSD or Windows or what. - When logging memory usage, break down memory used in buffers by buffer type. - When we are reporting the DirServer line we just parsed, we were logging the second stanza of the key fingerprint, not the first. - Even though Windows is equally happy with / and \ as path separators, try to use \ consistently on Windows and / consistently on Unix: it makes the log messages nicer. - On OSX, stop warning the user that kqueue support in libevent is "experimental", since it seems to have worked fine for ages. o Contributed scripts and tools: - Update linux-tor-prio.sh script to allow QoS based on the uid of the Tor process. Patch from Marco Bonetti with tweaks from Mike Perry. - Include the "tor-ctrl.sh" bash script by Stefan Behte to provide Unix users an easy way to script their Tor process (e.g. by adjusting bandwidth based on the time of the day). - In the exitlist script, only consider the most recently published server descriptor for each server. Also, when the user requests a list of servers that _reject_ connections to a given address, explicitly exclude the IPs that also have servers that accept connections to that address. Resolves bug 405. - Include a new contrib/tor-exit-notice.html file that exit relay operators can put on their website to help reduce abuse queries. o Newly deprecated features: - The status/version/num-versioning and status/version/num-concurring GETINFO controller options are no longer useful in the v3 directory protocol: treat them as deprecated, and warn when they're used. - The RedirectExits config option is now deprecated. o Removed features: - Drop the old code to choke directory connections when the corresponding OR connections got full: thanks to the cell queue feature, OR conns don't get full any more. - Remove the old "dns worker" server DNS code: it hasn't been default since 0.1.2.2-alpha, and all the servers are using the new eventdns code. - Remove the code to generate the oldest (v1) directory format. - Remove support for the old bw_accounting file: we've been storing bandwidth accounting information in the state file since 0.1.2.5-alpha. This may result in bandwidth accounting errors if you try to upgrade from 0.1.1.x or earlier, or if you try to downgrade to 0.1.1.x or earlier. - Drop support for OpenSSL version 0.9.6. Just about nobody was using it, it had no AES, and it hasn't seen any security patches since 2004. - Stop overloading the circuit_t.onionskin field for both "onionskin from a CREATE cell that we are waiting for a cpuworker to be assigned" and "onionskin from an EXTEND cell that we are going to send to an OR as soon as we are connected". Might help with bug 600. - Remove the tor_strpartition() function: its logic was confused, and it was only used for one thing that could be implemented far more easily. - Remove the contrib scripts ExerciseServer.py, PathDemo.py, and TorControl.py, as they use the old v0 controller protocol, and are obsoleted by TorFlow anyway. - Drop support for v1 rendezvous descriptors, since we never used them anyway, and the code has probably rotted by now. Based on patch from Karsten Loesing. - Stop allowing address masks that do not correspond to bit prefixes. We have warned about these for a really long time; now it's time to reject them. (Patch from croup.) - Remove an optimization in the AES counter-mode code that assumed that the counter never exceeded 2^68. When the counter can be set arbitrarily as an IV (as it is by Karsten's new hidden services code), this assumption no longer holds. - Disable the SETROUTERPURPOSE controller command: it is now obsolete. Changes in version 0.1.2.19 - 2008-01-17 Tor 0.1.2.19 fixes a huge memory leak on exit relays, makes the default exit policy a little bit more conservative so it's safer to run an exit relay on a home system, and fixes a variety of smaller issues. o Security fixes: - Exit policies now reject connections that are addressed to a relay's public (external) IP address too, unless ExitPolicyRejectPrivate is turned off. We do this because too many relays are running nearby to services that trust them based on network address. o Major bugfixes: - When the clock jumps forward a lot, do not allow the bandwidth buckets to become negative. Fixes bug 544. - Fix a memory leak on exit relays; we were leaking a cached_resolve_t on every successful resolve. Reported by Mike Perry. - Purge old entries from the "rephist" database and the hidden service descriptor database even when DirPort is zero. - Stop thinking that 0.1.2.x directory servers can handle "begin_dir" requests. Should ease bugs 406 and 419 where 0.1.2.x relays are crashing or mis-answering these requests. - When we decide to send a 503 response to a request for servers, do not then also send the server descriptors: this defeats the whole purpose. Fixes bug 539. o Minor bugfixes: - Changing the ExitPolicyRejectPrivate setting should cause us to rebuild our server descriptor. - Fix handling of hex nicknames when answering controller requests for networkstatus by name, or when deciding whether to warn about unknown routers in a config option. (Patch from mwenge.) - Fix a couple of hard-to-trigger autoconf problems that could result in really weird results on platforms whose sys/types.h files define nonstandard integer types. - Don't try to create the datadir when running --verify-config or --hash-password. Resolves bug 540. - If we were having problems getting a particular descriptor from the directory caches, and then we learned about a new descriptor for that router, we weren't resetting our failure count. Reported by lodger. - Although we fixed bug 539 (where servers would send HTTP status 503 responses _and_ send a body too), there are still servers out there that haven't upgraded. Therefore, make clients parse such bodies when they receive them. - Run correctly on systems where rlim_t is larger than unsigned long. This includes some 64-bit systems. - Run correctly on platforms (like some versions of OS X 10.5) where the real limit for number of open files is OPEN_FILES, not rlim_max from getrlimit(RLIMIT_NOFILES). - Avoid a spurious free on base64 failure. - Avoid segfaults on certain complex invocations of router_get_by_hexdigest(). - Fix rare bug on REDIRECTSTREAM control command when called with no port set: it could erroneously report an error when none had happened. Changes in version 0.1.2.18 - 2007-10-28 Tor 0.1.2.18 fixes many problems including crash bugs, problems with hidden service introduction that were causing huge delays, and a big bug that was causing some servers to disappear from the network status lists for a few hours each day. o Major bugfixes (crashes): - If a connection is shut down abruptly because of something that happened inside connection_flushed_some(), do not call connection_finished_flushing(). Should fix bug 451: "connection_stop_writing: Assertion conn->write_event failed" Bugfix on 0.1.2.7-alpha. - Fix possible segfaults in functions called from rend_process_relay_cell(). o Major bugfixes (hidden services): - Hidden services were choosing introduction points uniquely by hexdigest, but when constructing the hidden service descriptor they merely wrote the (potentially ambiguous) nickname. - Clients now use the v2 intro format for hidden service connections: they specify their chosen rendezvous point by identity digest rather than by (potentially ambiguous) nickname. These changes could speed up hidden service connections dramatically. o Major bugfixes (other): - Stop publishing a new server descriptor just because we get a HUP signal. This led (in a roundabout way) to some servers getting dropped from the networkstatus lists for a few hours each day. - When looking for a circuit to cannibalize, consider family as well as identity. Fixes bug 438. Bugfix on 0.1.0.x (which introduced circuit cannibalization). - When a router wasn't listed in a new networkstatus, we were leaving the flags for that router alone -- meaning it remained Named, Running, etc -- even though absence from the networkstatus means that it shouldn't be considered to exist at all anymore. Now we clear all the flags for routers that fall out of the networkstatus consensus. Fixes bug 529. o Minor bugfixes: - Don't try to access (or alter) the state file when running --list-fingerprint or --verify-config or --hash-password. Resolves bug 499. - When generating information telling us how to extend to a given router, do not try to include the nickname if it is absent. Resolves bug 467. - Fix a user-triggerable segfault in expand_filename(). (There isn't a way to trigger this remotely.) - When sending a status event to the controller telling it that an OR address is reachable, set the port correctly. (Previously we were reporting the dir port.) - Fix a minor memory leak whenever a controller sends the PROTOCOLINFO command. Bugfix on 0.1.2.17. - When loading bandwidth history, do not believe any information in the future. Fixes bug 434. - When loading entry guard information, do not believe any information in the future. - When we have our clock set far in the future and generate an onion key, then re-set our clock to be correct, we should not stop the onion key from getting rotated. - On some platforms, accept() can return a broken address. Detect this more quietly, and deal accordingly. Fixes bug 483. - It's not actually an error to find a non-pending entry in the DNS cache when canceling a pending resolve. Don't log unless stuff is fishy. Resolves bug 463. - Don't reset trusted dir server list when we set a configuration option. Patch from Robert Hogan. Changes in version 0.1.2.17 - 2007-08-30 Tor 0.1.2.17 features a new Vidalia version in the Windows and OS X bundles. Vidalia 0.0.14 makes authentication required for the ControlPort in the default configuration, which addresses important security risks. Everybody who uses Vidalia (or another controller) should upgrade. In addition, this Tor update fixes major load balancing problems with path selection, which should speed things up a lot once many people have upgraded. o Major bugfixes (security): - We removed support for the old (v0) control protocol. It has been deprecated since Tor 0.1.1.1-alpha, and keeping it secure has become more of a headache than it's worth. o Major bugfixes (load balancing): - When choosing nodes for non-guard positions, weight guards proportionally less, since they already have enough load. Patch from Mike Perry. - Raise the "max believable bandwidth" from 1.5MB/s to 10MB/s. This will allow fast Tor servers to get more attention. - When we're upgrading from an old Tor version, forget our current guards and pick new ones according to the new weightings. These three load balancing patches could raise effective network capacity by a factor of four. Thanks to Mike Perry for measurements. o Major bugfixes (stream expiration): - Expire not-yet-successful application streams in all cases if they've been around longer than SocksTimeout. Right now there are some cases where the stream will live forever, demanding a new circuit every 15 seconds. Fixes bug 454; reported by lodger. o Minor features (controller): - Add a PROTOCOLINFO controller command. Like AUTHENTICATE, it is valid before any authentication has been received. It tells a controller what kind of authentication is expected, and what protocol is spoken. Implements proposal 119. o Minor bugfixes (performance): - Save on most routerlist_assert_ok() calls in routerlist.c, thus greatly speeding up loading cached-routers from disk on startup. - Disable sentinel-based debugging for buffer code: we squashed all the bugs that this was supposed to detect a long time ago, and now its only effect is to change our buffer sizes from nice powers of two (which platform mallocs tend to like) to values slightly over powers of two (which make some platform mallocs sad). o Minor bugfixes (misc): - If exit bandwidth ever exceeds one third of total bandwidth, then use the correct formula to weight exit nodes when choosing paths. Based on patch from Mike Perry. - Choose perfectly fairly among routers when choosing by bandwidth and weighting by fraction of bandwidth provided by exits. Previously, we would choose with only approximate fairness, and correct ourselves if we ran off the end of the list. - If we require CookieAuthentication but we fail to write the cookie file, we would warn but not exit, and end up in a state where no controller could authenticate. Now we exit. - If we require CookieAuthentication, stop generating a new cookie every time we change any piece of our config. - Refuse to start with certain directory authority keys, and encourage people using them to stop. - Terminate multi-line control events properly. Original patch from tup. - Fix a minor memory leak when we fail to find enough suitable servers to choose a circuit. - Stop leaking part of the descriptor when we run into a particularly unparseable piece of it. Changes in version 0.1.2.16 - 2007-08-01 Tor 0.1.2.16 fixes a critical security vulnerability that allows a remote attacker in certain situations to rewrite the user's torrc configuration file. This can completely compromise anonymity of users in most configurations, including those running the Vidalia bundles, TorK, etc. Or worse. o Major security fixes: - Close immediately after missing authentication on control port; do not allow multiple authentication attempts. Changes in version 0.1.2.15 - 2007-07-17 Tor 0.1.2.15 fixes several crash bugs, fixes some anonymity-related problems, fixes compilation on BSD, and fixes a variety of other bugs. Everybody should upgrade. o Major bugfixes (compilation): - Fix compile on FreeBSD/NetBSD/OpenBSD. Oops. o Major bugfixes (crashes): - Try even harder not to dereference the first character after an mmap(). Reported by lodger. - Fix a crash bug in directory authorities when we re-number the routerlist while inserting a new router. - When the cached-routers file is an even multiple of the page size, don't run off the end and crash. (Fixes bug 455; based on idea from croup.) - Fix eventdns.c behavior on Solaris: It is critical to include orconfig.h _before_ sys/types.h, so that we can get the expected definition of _FILE_OFFSET_BITS. o Major bugfixes (security): - Fix a possible buffer overrun when using BSD natd support. Bug found by croup. - When sending destroy cells from a circuit's origin, don't include the reason for tearing down the circuit. The spec says we didn't, and now we actually don't. Reported by lodger. - Keep streamids from different exits on a circuit separate. This bug may have allowed other routers on a given circuit to inject cells into streams. Reported by lodger; fixes bug 446. - If there's a never-before-connected-to guard node in our list, never choose any guards past it. This way we don't expand our guard list unless we need to. o Minor bugfixes (guard nodes): - Weight guard selection by bandwidth, so that low-bandwidth nodes don't get overused as guards. o Minor bugfixes (directory): - Correctly count the number of authorities that recommend each version. Previously, we were under-counting by 1. - Fix a potential crash bug when we load many server descriptors at once and some of them make others of them obsolete. Fixes bug 458. o Minor bugfixes (hidden services): - Stop tearing down the whole circuit when the user asks for a connection to a port that the hidden service didn't configure. Resolves bug 444. o Minor bugfixes (misc): - On Windows, we were preventing other processes from reading cached-routers while Tor was running. Reported by janbar. - Fix a possible (but very unlikely) bug in picking routers by bandwidth. Add a log message to confirm that it is in fact unlikely. Patch from lodger. - Backport a couple of memory leak fixes. - Backport miscellaneous cosmetic bugfixes. Changes in version 0.1.2.14 - 2007-05-25 Tor 0.1.2.14 changes the addresses of two directory authorities (this change especially affects those who serve or use hidden services), and fixes several other crash- and security-related bugs. o Directory authority changes: - Two directory authorities (moria1 and moria2) just moved to new IP addresses. This change will particularly affect those who serve or use hidden services. o Major bugfixes (crashes): - If a directory server runs out of space in the connection table as it's processing a begin_dir request, it will free the exit stream but leave it attached to the circuit, leading to unpredictable behavior. (Reported by seeess, fixes bug 425.) - Fix a bug in dirserv_remove_invalid() that would cause authorities to corrupt memory under some really unlikely scenarios. - Tighten router parsing rules. (Bugs reported by Benedikt Boss.) - Avoid segfaults when reading from mmaped descriptor file. (Reported by lodger.) o Major bugfixes (security): - When choosing an entry guard for a circuit, avoid using guards that are in the same family as the chosen exit -- not just guards that are exactly the chosen exit. (Reported by lodger.) o Major bugfixes (resource management): - If a directory authority is down, skip it when deciding where to get networkstatus objects or descriptors. Otherwise we keep asking every 10 seconds forever. Fixes bug 384. - Count it as a failure if we fetch a valid network-status but we don't want to keep it. Otherwise we'll keep fetching it and keep not wanting to keep it. Fixes part of bug 422. - If all of our dirservers have given us bad or no networkstatuses lately, then stop hammering them once per minute even when we think they're failed. Fixes another part of bug 422. o Minor bugfixes: - Actually set the purpose correctly for descriptors inserted with purpose=controller. - When we have k non-v2 authorities in our DirServer config, we ignored the last k authorities in the list when updating our network-statuses. - Correctly back-off from requesting router descriptors that we are having a hard time downloading. - Read resolv.conf files correctly on platforms where read() returns partial results on small file reads. - Don't rebuild the entire router store every time we get 32K of routers: rebuild it when the journal gets very large, or when the gaps in the store get very large. o Minor features: - When routers publish SVN revisions in their router descriptors, authorities now include those versions correctly in networkstatus documents. - Warn when using a version of libevent before 1.3b to run a server on OSX or BSD: these versions interact badly with userspace threads. Changes in version 0.1.2.13 - 2007-04-24 This release features some major anonymity fixes, such as safer path selection; better client performance; faster bootstrapping, better address detection, and better DNS support for servers; write limiting as well as read limiting to make servers easier to run; and a huge pile of other features and bug fixes. The bundles also ship with Vidalia 0.0.11. Tor 0.1.2.13 is released in memory of Rob Levin (1955-2006), aka lilo of the Freenode IRC network, remembering his patience and vision for free speech on the Internet. o Major features, client performance: - Weight directory requests by advertised bandwidth. Now we can let servers enable write limiting but still allow most clients to succeed at their directory requests. (We still ignore weights when choosing a directory authority; I hope this is a feature.) - Stop overloading exit nodes -- avoid choosing them for entry or middle hops when the total bandwidth available from non-exit nodes is much higher than the total bandwidth available from exit nodes. - Rather than waiting a fixed amount of time between retrying application connections, we wait only 10 seconds for the first, 10 seconds for the second, and 15 seconds for each retry after that. Hopefully this will improve the expected user experience. - Sometimes we didn't bother sending a RELAY_END cell when an attempt to open a stream fails; now we do in more cases. This should make clients able to find a good exit faster in some cases, since unhandleable requests will now get an error rather than timing out. o Major features, client functionality: - Implement BEGIN_DIR cells, so we can connect to a directory server via TLS to do encrypted directory requests rather than plaintext. Enable via the TunnelDirConns and PreferTunneledDirConns config options if you like. For now, this feature only works if you already have a descriptor for the destination dirserver. - Add support for transparent application connections: this basically bundles the functionality of trans-proxy-tor into the Tor mainline. Now hosts with compliant pf/netfilter implementations can redirect TCP connections straight to Tor without diverting through SOCKS. (Based on patch from tup.) - Add support for using natd; this allows FreeBSDs earlier than 5.1.2 to have ipfw send connections through Tor without using SOCKS. (Patch from Zajcev Evgeny with tweaks from tup.) o Major features, servers: - Setting up a dyndns name for your server is now optional: servers with no hostname or IP address will learn their IP address by asking the directory authorities. This code only kicks in when you would normally have exited with a "no address" error. Nothing's authenticated, so use with care. - Directory servers now spool server descriptors, v1 directories, and v2 networkstatus objects to buffers as needed rather than en masse. They also mmap the cached-routers files. These steps save lots of memory. - Stop requiring clients to have well-formed certificates, and stop checking nicknames in certificates. (Clients have certificates so that they can look like Tor servers, but in the future we might want to allow them to look like regular TLS clients instead. Nicknames in certificates serve no purpose other than making our protocol easier to recognize on the wire.) Implements proposal 106. o Improvements on DNS support: - Add "eventdns" asynchronous dns library originally based on code from Adam Langley. Now we can discard the old rickety dnsworker concept, and support a wider variety of DNS functions. Allows multithreaded builds on NetBSD and OpenBSD again. - Add server-side support for "reverse" DNS lookups (using PTR records so clients can determine the canonical hostname for a given IPv4 address). Only supported by servers using eventdns; servers now announce in their descriptors if they don't support eventdns. - Workaround for name servers (like Earthlink's) that hijack failing DNS requests and replace the no-such-server answer with a "helpful" redirect to an advertising-driven search portal. Also work around DNS hijackers who "helpfully" decline to hijack known-invalid RFC2606 addresses. Config option "ServerDNSDetectHijacking 0" lets you turn it off. - Servers now check for the case when common DNS requests are going to wildcarded addresses (i.e. all getting the same answer), and change their exit policy to reject *:* if it's happening. - When asked to resolve a hostname, don't use non-exit servers unless requested to do so. This allows servers with broken DNS to be useful to the network. - Start passing "ipv4" hints to getaddrinfo(), so servers don't do useless IPv6 DNS resolves. - Specify and implement client-side SOCKS5 interface for reverse DNS lookups (see doc/socks-extensions.txt). Also cache them. - When we change nameservers or IP addresses, reset and re-launch our tests for DNS hijacking. o Improvements on reachability testing: - Servers send out a burst of long-range padding cells once they've established that they're reachable. Spread them over 4 circuits, so hopefully a few will be fast. This exercises bandwidth and bootstraps them into the directory more quickly. - When we find our DirPort to be reachable, publish a new descriptor so we'll tell the world (reported by pnx). - Directory authorities now only decide that routers are reachable if their identity keys are as expected. - Do DirPort reachability tests less often, since a single test chews through many circuits before giving up. - Avoid some false positives during reachability testing: don't try to test via a server that's on the same /24 network as us. - Start publishing one minute or so after we find our ORPort to be reachable. This will help reduce the number of descriptors we have for ourselves floating around, since it's quite likely other things (e.g. DirPort) will change during that minute too. - Routers no longer try to rebuild long-term connections to directory authorities, and directory authorities no longer try to rebuild long-term connections to all servers. We still don't hang up connections in these two cases though -- we need to look at it more carefully to avoid flapping, and we likely need to wait til 0.1.1.x is obsolete. o Improvements on rate limiting: - Enable write limiting as well as read limiting. Now we sacrifice capacity if we're pushing out lots of directory traffic, rather than overrunning the user's intended bandwidth limits. - Include TLS overhead when counting bandwidth usage; previously, we would count only the bytes sent over TLS, but not the bytes used to send them. - Servers decline directory requests much more aggressively when they're low on bandwidth. Otherwise they end up queueing more and more directory responses, which can't be good for latency. - But never refuse directory requests from local addresses. - Be willing to read or write on local connections (e.g. controller connections) even when the global rate limiting buckets are empty. - Flush local controller connection buffers periodically as we're writing to them, so we avoid queueing 4+ megabytes of data before trying to flush. - Revise and clean up the torrc.sample that we ship with; add a section for BandwidthRate and BandwidthBurst. o Major features, NT services: - Install as NT_AUTHORITY\LocalService rather than as SYSTEM; add a command-line flag so that admins can override the default by saying "tor --service install --user "SomeUser"". This will not affect existing installed services. Also, warn the user that the service will look for its configuration file in the service user's %appdata% directory. (We can't do the "hardwire the user's appdata directory" trick any more, since we may not have read access to that directory.) - Support running the Tor service with a torrc not in the same directory as tor.exe and default to using the torrc located in the %appdata%\Tor\ of the user who installed the service. Patch from Matt Edman. - Add an --ignore-missing-torrc command-line option so that we can get the "use sensible defaults if the configuration file doesn't exist" behavior even when specifying a torrc location on the command line. - When stopping an NT service, wait up to 10 sec for it to actually stop. (Patch from Matt Edman; resolves bug 295.) o Directory authority improvements: - Stop letting hibernating or obsolete servers affect uptime and bandwidth cutoffs. - Stop listing hibernating servers in the v1 directory. - Authorities no longer recommend exits as guards if this would shift too much load to the exit nodes. - Authorities now specify server versions in networkstatus. This adds about 2% to the size of compressed networkstatus docs, and allows clients to tell which servers support BEGIN_DIR and which don't. The implementation is forward-compatible with a proposed future protocol version scheme not tied to Tor versions. - DirServer configuration lines now have an orport= option so clients can open encrypted tunnels to the authorities without having downloaded their descriptors yet. Enabled for moria1, moria2, tor26, and lefkada now in the default configuration. - Add a BadDirectory flag to network status docs so that authorities can (eventually) tell clients about caches they believe to be broken. Not used yet. - Allow authorities to list nodes as bad exits in their approved-routers file by fingerprint or by address. If most authorities set a BadExit flag for a server, clients don't think of it as a general-purpose exit. Clients only consider authorities that advertise themselves as listing bad exits. - Patch from Steve Hildrey: Generate network status correctly on non-versioning dirservers. - Have directory authorities allow larger amounts of drift in uptime without replacing the server descriptor: previously, a server that restarted every 30 minutes could have 48 "interesting" descriptors per day. - Reserve the nickname "Unnamed" for routers that can't pick a hostname: any router can call itself Unnamed; directory authorities will never allocate Unnamed to any particular router; clients won't believe that any router is the canonical Unnamed. o Directory mirrors and clients: - Discard any v1 directory info that's over 1 month old (for directories) or over 1 week old (for running-routers lists). - Clients track responses with status 503 from dirservers. After a dirserver has given us a 503, we try not to use it until an hour has gone by, or until we have no dirservers that haven't given us a 503. - When we get a 503 from a directory, and we're not a server, we no longer count the failure against the total number of failures allowed for the object we're trying to download. - Prepare for servers to publish descriptors less often: never discard a descriptor simply for being too old until either it is recommended by no authorities, or until we get a better one for the same router. Make caches consider retaining old recommended routers for even longer. - Directory servers now provide 'Pragma: no-cache' and 'Expires' headers for content, so that we can work better in the presence of caching HTTP proxies. - Stop fetching descriptors if you're not a dir mirror and you haven't tried to establish any circuits lately. (This currently causes some dangerous behavior, because when you start up again you'll use your ancient server descriptors.) o Major fixes, crashes: - Stop crashing when the controller asks us to resetconf more than one config option at once. (Vidalia 0.0.11 does this.) - Fix a longstanding obscure crash bug that could occur when we run out of DNS worker processes, if we're not using eventdns. (Resolves bug 390.) - Fix an assert that could trigger if a controller quickly set then cleared EntryNodes. (Bug found by Udo van den Heuvel.) - Avoid crash when telling controller about stream-status and a stream is detached. - Avoid sending junk to controllers or segfaulting when a controller uses EVENT_NEW_DESC with verbose nicknames. - Stop triggering asserts if the controller tries to extend hidden service circuits (reported by mwenge). - If we start a server with ClientOnly 1, then set ClientOnly to 0 and hup, stop triggering an assert based on an empty onion_key. - Mask out all signals in sub-threads; only the libevent signal handler should be processing them. This should prevent some crashes on some machines using pthreads. (Patch from coderman.) - Disable kqueue on OS X 10.3 and earlier, to fix bug 371. o Major fixes, anonymity/security: - Automatically avoid picking more than one node from the same /16 network when constructing a circuit. Add an "EnforceDistinctSubnets" option to let people disable it if they want to operate private test networks on a single subnet. - When generating bandwidth history, round down to the nearest 1k. When storing accounting data, round up to the nearest 1k. - When we're running as a server, remember when we last rotated onion keys, so that we will rotate keys once they're a week old even if we never stay up for a week ourselves. - If a client asked for a server by name, and there's a named server in our network-status but we don't have its descriptor yet, we could return an unnamed server instead. - Reject (most) attempts to use Tor circuits with length one. (If many people start using Tor as a one-hop proxy, exit nodes become a more attractive target for compromise.) - Just because your DirPort is open doesn't mean people should be able to remotely teach you about hidden service descriptors. Now only accept rendezvous posts if you've got HSAuthoritativeDir set. - Fix a potential race condition in the rpm installer. Found by Stefan Nordhausen. - Do not log IPs with TLS failures for incoming TLS connections. (Fixes bug 382.) o Major fixes, other: - If our system clock jumps back in time, don't publish a negative uptime in the descriptor. - When we start during an accounting interval before it's time to wake up, remember to wake up at the correct time. (May fix bug 342.) - Previously, we would cache up to 16 old networkstatus documents indefinitely, if they came from nontrusted authorities. Now we discard them if they are more than 10 days old. - When we have a state file we cannot parse, tell the user and move it aside. Now we avoid situations where the user starts Tor in 1904, Tor writes a state file with that timestamp in it, the user fixes her clock, and Tor refuses to start. - Publish a new descriptor after we hup/reload. This is important if our config has changed such that we'll want to start advertising our DirPort now, etc. - If we are using an exit enclave and we can't connect, e.g. because its webserver is misconfigured to not listen on localhost, then back off and try connecting from somewhere else before we fail. o New config options or behaviors: - When EntryNodes are configured, rebuild the guard list to contain, in order: the EntryNodes that were guards before; the rest of the EntryNodes; the nodes that were guards before. - Do not warn when individual nodes in the configuration's EntryNodes, ExitNodes, etc are down: warn only when all possible nodes are down. (Fixes bug 348.) - Put a lower-bound on MaxAdvertisedBandwidth. - Start using the state file to store bandwidth accounting data: the bw_accounting file is now obsolete. We'll keep generating it for a while for people who are still using 0.1.2.4-alpha. - Try to batch changes to the state file so that we do as few disk writes as possible while still storing important things in a timely fashion. - The state file and the bw_accounting file get saved less often when the AvoidDiskWrites config option is set. - Make PIDFile work on Windows. - Add internal descriptions for a bunch of configuration options: accessible via controller interface and in comments in saved options files. - Reject *:563 (NNTPS) in the default exit policy. We already reject NNTP by default, so this seems like a sensible addition. - Clients now reject hostnames with invalid characters. This should avoid some inadvertent info leaks. Add an option AllowNonRFC953Hostnames to disable this behavior, in case somebody is running a private network with hosts called @, !, and #. - Check for addresses with invalid characters at the exit as well, and warn less verbosely when they fail. You can override this by setting ServerDNSAllowNonRFC953Addresses to 1. - Remove some options that have been deprecated since at least 0.1.0.x: AccountingMaxKB, LogFile, DebugLogFile, LogLevel, and SysLog. Use AccountingMax instead of AccountingMaxKB, and use Log to set log options. Mark PathlenCoinWeight as obsolete. - Stop accepting certain malformed ports in configured exit policies. - When the user uses bad syntax in the Log config line, stop suggesting other bad syntax as a replacement. - Add new config option "ResolvConf" to let the server operator choose an alternate resolve.conf file when using eventdns. - If one of our entry guards is on the ExcludeNodes list, or the directory authorities don't think it's a good guard, treat it as if it were unlisted: stop using it as a guard, and throw it off the guards list if it stays that way for a long time. - Allow directory authorities to be marked separately as authorities for the v1 directory protocol, the v2 directory protocol, and as hidden service directories, to make it easier to retire old authorities. V1 authorities should set "HSAuthoritativeDir 1" to continue being hidden service authorities too. - Remove 8888 as a LongLivedPort, and add 6697 (IRCS). - Make TrackExitHosts case-insensitive, and fix the behavior of ".suffix" TrackExitHosts items to avoid matching in the middle of an address. - New DirPort behavior: if you have your dirport set, you download descriptors aggressively like a directory mirror, whether or not your ORPort is set. o Docs: - Create a new file ReleaseNotes which was the old ChangeLog. The new ChangeLog file now includes the notes for all development versions too. - Add a new address-spec.txt document to describe our special-case addresses: .exit, .onion, and .noconnnect. - Fork the v1 directory protocol into its own spec document, and mark dir-spec.txt as the currently correct (v2) spec. o Packaging, porting, and contrib - "tor --verify-config" now exits with -1(255) or 0 depending on whether the config options are bad or good. - The Debian package now uses --verify-config when (re)starting, to distinguish configuration errors from other errors. - Adapt a patch from goodell to let the contrib/exitlist script take arguments rather than require direct editing. - Prevent the contrib/exitlist script from printing the same result more than once. - Add support to tor-resolve tool for reverse lookups and SOCKS5. - In the hidden service example in torrc.sample, stop recommending esoteric and discouraged hidden service options. - Patch from Michael Mohr to contrib/cross.sh, so it checks more values before failing, and always enables eventdns. - Try to detect Windows correctly when cross-compiling. - Libevent-1.2 exports, but does not define in its headers, strlcpy. Try to fix this in configure.in by checking for most functions before we check for libevent. - Update RPMs to require libevent 1.2. - Experimentally re-enable kqueue on OSX when using libevent 1.1b or later. Log when we are doing this, so we can diagnose it when it fails. (Also, recommend libevent 1.1b for kqueue and win32 methods; deprecate libevent 1.0b harder; make libevent recommendation system saner.) - Build with recent (1.3+) libevents on platforms that do not define the nonstandard types "u_int8_t" and friends. - Remove architecture from OS X builds. The official builds are now universal binaries. - Run correctly on OS X platforms with case-sensitive filesystems. - Correctly set maximum connection limit on Cygwin. (This time for sure!) - Start compiling on MinGW on Windows (patches from Mike Chiussi and many others). - Start compiling on MSVC6 on Windows (patches from Frediano Ziglio). - Finally fix the openssl warnings from newer gccs that believe that ignoring a return value is okay, but casting a return value and then ignoring it is a sign of madness. - On architectures where sizeof(int)>4, still clamp declarable bandwidth to INT32_MAX. o Minor features, controller: - Warn the user when an application uses the obsolete binary v0 control protocol. We're planning to remove support for it during the next development series, so it's good to give people some advance warning. - Add STREAM_BW events to report per-entry-stream bandwidth use. (Patch from Robert Hogan.) - Rate-limit SIGNEWNYM signals in response to controllers that impolitely generate them for every single stream. (Patch from mwenge; closes bug 394.) - Add a REMAP status to stream events to note that a stream's address has changed because of a cached address or a MapAddress directive. - Make REMAP stream events have a SOURCE (cache or exit), and make them generated in every case where we get a successful connected or resolved cell. - Track reasons for OR connection failure; make these reasons available via the controller interface. (Patch from Mike Perry.) - Add a SOCKS_BAD_HOSTNAME client status event so controllers can learn when clients are sending malformed hostnames to Tor. - Specify and implement some of the controller status events. - Have GETINFO dir/status/* work on hosts with DirPort disabled. - Reimplement GETINFO so that info/names stays in sync with the actual keys. - Implement "GETINFO fingerprint". - Implement "SETEVENTS GUARD" so controllers can get updates on entry guard status as it changes. - Make all connections to addresses of the form ".noconnect" immediately get closed. This lets application/controller combos successfully test whether they're talking to the same Tor by watching for STREAM events. - Add a REASON field to CIRC events; for backward compatibility, this field is sent only to controllers that have enabled the extended event format. Also, add additional reason codes to explain why a given circuit has been destroyed or truncated. (Patches from Mike Perry) - Add a REMOTE_REASON field to extended CIRC events to tell the controller why a remote OR told us to close a circuit. - Stream events also now have REASON and REMOTE_REASON fields, working much like those for circuit events. - There's now a GETINFO ns/... field so that controllers can ask Tor about the current status of a router. - A new event type "NS" to inform a controller when our opinion of a router's status has changed. - Add a GETINFO events/names and GETINFO features/names so controllers can tell which events and features are supported. - A new CLEARDNSCACHE signal to allow controllers to clear the client-side DNS cache without expiring circuits. - Fix CIRC controller events so that controllers can learn the identity digests of non-Named servers used in circuit paths. - Let controllers ask for more useful identifiers for servers. Instead of learning identity digests for un-Named servers and nicknames for Named servers, the new identifiers include digest, nickname, and indication of Named status. Off by default; see control-spec.txt for more information. - Add a "getinfo address" controller command so it can display Tor's best guess to the user. - New controller event to alert the controller when our server descriptor has changed. - Give more meaningful errors on controller authentication failure. - Export the default exit policy via the control port, so controllers don't need to guess what it is / will be later. o Minor bugfixes, controller: - When creating a circuit via the controller, send a 'launched' event when we're done, so we follow the spec better. - Correct the control spec to match how the code actually responds to 'getinfo addr-mappings/*'. Reported by daejees. - The control spec described a GUARDS event, but the code implemented a GUARD event. Standardize on GUARD, but let people ask for GUARDS too. Reported by daejees. - Give the controller END_STREAM_REASON_DESTROY events _before_ we clear the corresponding on_circuit variable, and remember later that we don't need to send a redundant CLOSED event. (Resolves part 3 of bug 367.) - Report events where a resolve succeeded or where we got a socks protocol error correctly, rather than calling both of them "INTERNAL". - Change reported stream target addresses to IP consistently when we finally get the IP from an exit node. - Send log messages to the controller even if they happen to be very long. - Flush ERR-level controller status events just like we currently flush ERR-level log events, so that a Tor shutdown doesn't prevent the controller from learning about current events. - Report the circuit number correctly in STREAM CLOSED events. Bug reported by Mike Perry. - Do not report bizarre values for results of accounting GETINFOs when the last second's write or read exceeds the allotted bandwidth. - Report "unrecognized key" rather than an empty string when the controller tries to fetch a networkstatus that doesn't exist. - When the controller does a "GETINFO network-status", tell it about even those routers whose descriptors are very old, and use long nicknames where appropriate. - Fix handling of verbose nicknames with ORCONN controller events: make them show up exactly when requested, rather than exactly when not requested. - Controller signals now work on non-Unix platforms that don't define SIGUSR1 and SIGUSR2 the way we expect. - Respond to SIGNAL command before we execute the signal, in case the signal shuts us down. Suggested by Karsten Loesing. - Handle reporting OR_CONN_EVENT_NEW events to the controller. o Minor features, code performance: - Major performance improvement on inserting descriptors: change algorithm from O(n^2) to O(n). - Do not rotate onion key immediately after setting it for the first time. - Call router_have_min_dir_info half as often. (This is showing up in some profiles, but not others.) - When using GCC, make log_debug never get called at all, and its arguments never get evaluated, when no debug logs are configured. (This is showing up in some profiles, but not others.) - Statistics dumped by -USR2 now include a breakdown of public key operations, for profiling. - Make the common memory allocation path faster on machines where malloc(0) returns a pointer. - Split circuit_t into origin_circuit_t and or_circuit_t, and split connection_t into edge, or, dir, control, and base structs. These will save quite a bit of memory on busy servers, and they'll also help us track down bugs in the code and bugs in the spec. - Use OpenSSL's AES implementation on platforms where it's faster. This could save us as much as 10% CPU usage. o Minor features, descriptors and descriptor handling: - Avoid duplicate entries on MyFamily line in server descriptor. - When Tor receives a router descriptor that it asked for, but no longer wants (because it has received fresh networkstatuses in the meantime), do not warn the user. Cache the descriptor if we're a cache; drop it if we aren't. - Servers no longer ever list themselves in their "family" line, even if configured to do so. This makes it easier to configure family lists conveniently. o Minor fixes, confusing/misleading log messages: - Display correct results when reporting which versions are recommended, and how recommended they are. (Resolves bug 383.) - Inform the server operator when we decide not to advertise a DirPort due to AccountingMax enabled or a low BandwidthRate. - Only include function names in log messages for info/debug messages. For notice/warn/err, the content of the message should be clear on its own, and printing the function name only confuses users. - Remove even more protocol-related warnings from Tor server logs, such as bad TLS handshakes and malformed begin cells. - Fix bug 314: Tor clients issued "unsafe socks" warnings even when the IP address is mapped through MapAddress to a hostname. - Fix misleading log messages: an entry guard that is "unlisted", as well as not known to be "down" (because we've never heard of it), is not therefore "up". o Minor fixes, old/obsolete behavior: - Start assuming we can use a create_fast cell if we don't know what version a router is running. - We no longer look for identity and onion keys in "identity.key" and "onion.key" -- these were replaced by secret_id_key and secret_onion_key in 0.0.8pre1. - We no longer require unrecognized directory entries to be preceded by "opt". - Drop compatibility with obsolete Tors that permit create cells to have the wrong circ_id_type. - Remove code to special-case "-cvs" ending, since it has not actually mattered since 0.0.9. - Don't re-write the fingerprint file every restart, unless it has changed. o Minor fixes, misc client-side behavior: - Always remove expired routers and networkstatus docs before checking whether we have enough information to build circuits. (Fixes bug 373.) - When computing clock skew from directory HTTP headers, consider what time it was when we finished asking for the directory, not what time it is now. - Make our socks5 handling more robust to broken socks clients: throw out everything waiting on the buffer in between socks handshake phases, since they can't possibly (so the theory goes) have predicted what we plan to respond to them. - Expire socks connections if they spend too long waiting for the handshake to finish. Previously we would let them sit around for days, if the connecting application didn't close them either. - And if the socks handshake hasn't started, don't send a "DNS resolve socks failed" handshake reply; just close it. - If the user asks to use invalid exit nodes, be willing to use unstable ones. - Track unreachable entry guards correctly: don't conflate 'unreachable by us right now' with 'listed as down by the directory authorities'. With the old code, if a guard was unreachable by us but listed as running, it would clog our guard list forever. - Behave correctly in case we ever have a network with more than 2GB/s total advertised capacity. - Claim a commonname of Tor, rather than TOR, in TLS handshakes. - Fix a memory leak when we ask for "all" networkstatuses and we get one we don't recognize. Changes in version 0.1.1.26 - 2006-12-14 o Security bugfixes: - Stop sending the HttpProxyAuthenticator string to directory servers when directory connections are tunnelled through Tor. - Clients no longer store bandwidth history in the state file. - Do not log introduction points for hidden services if SafeLogging is set. o Minor bugfixes: - Fix an assert failure when a directory authority sets AuthDirRejectUnlisted and then receives a descriptor from an unlisted router (reported by seeess). Changes in version 0.1.1.25 - 2006-11-04 o Major bugfixes: - When a client asks us to resolve (rather than connect to) an address, and we have a cached answer, give them the cached answer. Previously, we would give them no answer at all. - We were building exactly the wrong circuits when we predict hidden service requirements, meaning Tor would have to build all its circuits on demand. - If none of our live entry guards have a high uptime, but we require a guard with a high uptime, try adding a new guard before we give up on the requirement. This patch should make long-lived connections more stable on average. - When testing reachability of our DirPort, don't launch new tests when there's already one in progress -- unreachable servers were stacking up dozens of testing streams. o Security bugfixes: - When the user sends a NEWNYM signal, clear the client-side DNS cache too. Otherwise we continue to act on previous information. o Minor bugfixes: - Avoid a memory corruption bug when creating a hash table for the first time. - Avoid possibility of controller-triggered crash when misusing certain commands from a v0 controller on platforms that do not handle printf("%s",NULL) gracefully. - Avoid infinite loop on unexpected controller input. - Don't log spurious warnings when we see a circuit close reason we don't recognize; it's probably just from a newer version of Tor. - Add Vidalia to the OS X uninstaller script, so when we uninstall Tor/Privoxy we also uninstall Vidalia. Changes in version 0.1.1.24 - 2006-09-29 o Major bugfixes: - Allow really slow clients to not hang up five minutes into their directory downloads (suggested by Adam J. Richter). - Fix major performance regression from 0.1.0.x: instead of checking whether we have enough directory information every time we want to do something, only check when the directory information has changed. This should improve client CPU usage by 25-50%. - Don't crash if, after a server has been running for a while, it can't resolve its hostname. - When a client asks us to resolve (not connect to) an address, and we have a cached answer, give them the cached answer. Previously, we would give them no answer at all. o Minor bugfixes: - Allow Tor to start when RunAsDaemon is set but no logs are set. - Don't crash when the controller receives a third argument to an "extendcircuit" request. - Controller protocol fixes: fix encoding in "getinfo addr-mappings" response; fix error code when "getinfo dir/status/" fails. - Fix configure.in to not produce broken configure files with more recent versions of autoconf. Thanks to Clint for his auto* voodoo. - Fix security bug on NetBSD that could allow someone to force uninitialized RAM to be sent to a server's DNS resolver. This only affects NetBSD and other platforms that do not bounds-check tolower(). - Warn user when using libevent 1.1a or earlier with win32 or kqueue methods: these are known to be buggy. - If we're a directory mirror and we ask for "all" network status documents, we would discard status documents from authorities we don't recognize. Changes in version 0.1.1.23 - 2006-07-30 o Major bugfixes: - Fast Tor servers, especially exit nodes, were triggering asserts due to a bug in handling the list of pending DNS resolves. Some bugs still remain here; we're hunting them. - Entry guards could crash clients by sending unexpected input. - More fixes on reachability testing: if you find yourself reachable, then don't ever make any client requests (so you stop predicting circuits), then hup or have your clock jump, then later your IP changes, you won't think circuits are working, so you won't try to test reachability, so you won't publish. o Minor bugfixes: - Avoid a crash if the controller does a resetconf firewallports and then a setconf fascistfirewall=1. - Avoid an integer underflow when the dir authority decides whether a router is stable: we might wrongly label it stable, and compute a slightly wrong median stability, when a descriptor is published later than now. - Fix a place where we might trigger an assert if we can't build our own server descriptor yet. Changes in version 0.1.1.22 - 2006-07-05 o Major bugfixes: - Fix a big bug that was causing servers to not find themselves reachable if they changed IP addresses. Since only 0.1.1.22+ servers can do reachability testing correctly, now we automatically make sure to test via one of these. - Fix to allow clients and mirrors to learn directory info from descriptor downloads that get cut off partway through. - Directory authorities had a bug in deciding if a newly published descriptor was novel enough to make everybody want a copy -- a few servers seem to be publishing new descriptors many times a minute. o Minor bugfixes: - Fix a rare bug that was causing some servers to complain about "closing wedged cpuworkers" and skip some circuit create requests. - Make the Exit flag in directory status documents actually work. Changes in version 0.1.1.21 - 2006-06-10 o Crash and assert fixes from 0.1.1.20: - Fix a rare crash on Tor servers that have enabled hibernation. - Fix a seg fault on startup for Tor networks that use only one directory authority. - Fix an assert from a race condition that occurs on Tor servers while exiting, where various threads are trying to log that they're exiting, and delete the logs, at the same time. - Make our unit tests pass again on certain obscure platforms. o Other fixes: - Add support for building SUSE RPM packages. - Speed up initial bootstrapping for clients: if we are making our first ever connection to any entry guard, then don't mark it down right after that. - When only one Tor server in the network is labelled as a guard, and we've already picked him, we would cycle endlessly picking him again, being unhappy about it, etc. Now we specifically exclude current guards when picking a new guard. - Servers send create cells more reliably after the TLS connection is established: we were sometimes forgetting to send half of them when we had more than one pending. - If we get a create cell that asks us to extend somewhere, but the Tor server there doesn't match the expected digest, we now send a destroy cell back, rather than silently doing nothing. - Make options->RedirectExit work again. - Make cookie authentication for the controller work again. - Stop being picky about unusual characters in the arguments to mapaddress. It's none of our business. - Add a new config option "TestVia" that lets you specify preferred middle hops to use for test circuits. Perhaps this will let me debug the reachability problems better. o Log / documentation fixes: - If we're a server and some peer has a broken TLS certificate, don't log about it unless ProtocolWarnings is set, i.e., we want to hear about protocol violations by others. - Fix spelling of VirtualAddrNetwork in man page. - Add a better explanation at the top of the autogenerated torrc file about what happened to our old torrc. Changes in version 0.1.1.20 - 2006-05-23 o Crash and assert fixes from 0.1.0.17: - Fix assert bug in close_logs() on exit: when we close and delete logs, remove them all from the global "logfiles" list. - Fix an assert error when we're out of space in the connection_list and we try to post a hidden service descriptor (reported by Peter Palfrader). - Fix a rare assert error when we've tried all intro points for a hidden service and we try fetching the service descriptor again: "Assertion conn->state != AP_CONN_STATE_RENDDESC_WAIT failed". - Setconf SocksListenAddress kills Tor if it fails to bind. Now back out and refuse the setconf if it would fail. - If you specify a relative torrc path and you set RunAsDaemon in your torrc, then it chdir()'s to the new directory. If you then HUP, it tries to load the new torrc location, fails, and exits. The fix: no longer allow a relative path to torrc when using -f. - Check for integer overflows in more places, when adding elements to smartlists. This could possibly prevent a buffer overflow on malicious huge inputs. o Security fixes, major: - When we're printing strings from the network, don't try to print non-printable characters. Now we're safer against shell escape sequence exploits, and also against attacks to fool users into misreading their logs. - Implement entry guards: automatically choose a handful of entry nodes and stick with them for all circuits. Only pick new guards when the ones you have are unsuitable, and if the old guards become suitable again, switch back. This will increase security dramatically against certain end-point attacks. The EntryNodes config option now provides some hints about which entry guards you want to use most; and StrictEntryNodes means to only use those. Fixes CVE-2006-0414. - Implement exit enclaves: if we know an IP address for the destination, and there's a running Tor server at that address which allows exit to the destination, then extend the circuit to that exit first. This provides end-to-end encryption and end-to-end authentication. Also, if the user wants a .exit address or enclave, use 4 hops rather than 3, and cannibalize a general circ for it if you can. - Obey our firewall options more faithfully: . If we can't get to a dirserver directly, try going via Tor. . Don't ever try to connect (as a client) to a place our firewall options forbid. . If we specify a proxy and also firewall options, obey the firewall options even when we're using the proxy: some proxies can only proxy to certain destinations. - Make clients regenerate their keys when their IP address changes. - For the OS X package's modified privoxy config file, comment out the "logfile" line so we don't log everything passed through privoxy. - Our TLS handshakes were generating a single public/private keypair for the TLS context, rather than making a new one for each new connection. Oops. (But we were still rotating them periodically, so it's not so bad.) - When we were cannibalizing a circuit with a particular exit node in mind, we weren't checking to see if that exit node was already present earlier in the circuit. Now we are. - Require server descriptors to list IPv4 addresses -- hostnames are no longer allowed. This also fixes potential vulnerabilities to servers providing hostnames as their address and then preferentially resolving them so they can partition users. - Our logic to decide if the OR we connected to was the right guy was brittle and maybe open to a mitm for invalid routers. o Security fixes, minor: - Adjust tor-spec.txt to parameterize cell and key lengths. Now Ian Goldberg can prove things about our handshake protocol more easily. - Make directory authorities generate a separate "guard" flag to mean "would make a good entry guard". Clients now honor the is_guard flag rather than looking at is_fast or is_stable. - Try to list MyFamily elements by key, not by nickname, and warn if we've not heard of a server. - Start using RAND_bytes rather than RAND_pseudo_bytes from OpenSSL. Also, reseed our entropy every hour, not just at startup. And add entropy in 512-bit chunks, not 160-bit chunks. - Refuse server descriptors where the fingerprint line doesn't match the included identity key. Tor doesn't care, but other apps (and humans) might actually be trusting the fingerprint line. - We used to kill the circuit when we receive a relay command we don't recognize. Now we just drop that cell. - Fix a bug found by Lasse Overlier: when we were making internal circuits (intended to be cannibalized later for rendezvous and introduction circuits), we were picking them so that they had useful exit nodes. There was no need for this, and it actually aids some statistical attacks. - Start treating internal circuits and exit circuits separately. It's important to keep them separate because internal circuits have their last hops picked like middle hops, rather than like exit hops. So exiting on them will break the user's expectations. - Fix a possible way to DoS dirservers. - When the client asked for a rendezvous port that the hidden service didn't want to provide, we were sending an IP address back along with the end cell. Fortunately, it was zero. But stop that anyway. o Packaging improvements: - Implement --with-libevent-dir option to ./configure. Improve search techniques to find libevent, and use those for openssl too. - Fix a couple of bugs in OpenSSL detection. Deal better when there are multiple SSLs installed with different versions. - Avoid warnings about machine/limits.h on Debian GNU/kFreeBSD. - On non-gcc compilers (e.g. Solaris's cc), use "-g -O" instead of "-Wall -g -O2". - Make unit tests (and other invocations that aren't the real Tor) run without launching listeners, creating subdirectories, and so on. - The OS X installer was adding a symlink for tor_resolve but the binary was called tor-resolve (reported by Thomas Hardly). - Now we can target arch and OS in rpm builds (contributed by Phobos). Also make the resulting dist-rpm filename match the target arch. - Apply Matt Ghali's --with-syslog-facility patch to ./configure if you log to syslog and want something other than LOG_DAEMON. - Fix the torify (tsocks) config file to not use Tor for localhost connections. - Start shipping socks-extensions.txt, tor-doc-unix.html, tor-doc-server.html, and stylesheet.css in the tarball. - Stop shipping tor-doc.html, INSTALL, and README in the tarball. They are useless now. - Add Peter Palfrader's contributed check-tor script. It lets you easily check whether a given server (referenced by nickname) is reachable by you. - Add BSD-style contributed startup script "rc.subr" from Peter Thoenen. o Directory improvements -- new directory protocol: - See tor/doc/dir-spec.txt for all the juicy details. Key points: - Authorities and caches publish individual descriptors (by digest, by fingerprint, by "all", and by "tell me yours"). - Clients don't download or use the old directory anymore. Now they download network-statuses from the directory authorities, and fetch individual server descriptors as needed from mirrors. - Clients don't download descriptors of non-running servers. - Download descriptors by digest, not by fingerprint. Caches try to download all listed digests from authorities; clients try to download "best" digests from caches. This avoids partitioning and isolating attacks better. - Only upload a new server descriptor when options change, 18 hours have passed, uptime is reset, or bandwidth changes a lot. - Directory authorities silently throw away new descriptors that haven't changed much if the timestamps are similar. We do this to tolerate older Tor servers that upload a new descriptor every 15 minutes. (It seemed like a good idea at the time.) - Clients choose directory servers from the network status lists, not from their internal list of router descriptors. Now they can go to caches directly rather than needing to go to authorities to bootstrap the first set of descriptors. - When picking a random directory, prefer non-authorities if any are known. - Add a new flag to network-status indicating whether the server can answer v2 directory requests too. - Directory mirrors now cache up to 16 unrecognized network-status docs, so new directory authorities will be cached too. - Stop parsing, storing, or using running-routers output (but mirrors still cache and serve it). - Clients consider a threshold of "versioning" directory authorities before deciding whether to warn the user that he's obsolete. - Authorities publish separate sorted lists of recommended versions for clients and for servers. - Change DirServers config line to note which dirs are v1 authorities. - Put nicknames on the DirServer line, so we can refer to them without requiring all our users to memorize their IP addresses. - Remove option when getting directory cache to see whether they support running-routers; they all do now. Replace it with one to see whether caches support v2 stuff. - Stop listing down or invalid nodes in the v1 directory. This reduces its bulk by about 1/3, and reduces load on mirrors. - Mirrors no longer cache the v1 directory as often. - If we as a directory mirror don't know of any v1 directory authorities, then don't try to cache any v1 directories. o Other directory improvements: - Add lefkada.eecs.harvard.edu and tor.dizum.com as fourth and fifth authoritative directory servers. - Directory authorities no longer require an open connection from a server to consider him "reachable". We need this change because when we add new directory authorities, old servers won't know not to hang up on them. - Dir authorities now do their own external reachability testing of each server, and only list as running the ones they found to be reachable. We also send back warnings to the server's logs if it uploads a descriptor that we already believe is unreachable. - Spread the directory authorities' reachability testing over the entire testing interval, so we don't try to do 500 TLS's at once every 20 minutes. - Make the "stable" router flag in network-status be the median of the uptimes of running valid servers, and make clients pay attention to the network-status flags. Thus the cutoff adapts to the stability of the network as a whole, making IRC, IM, etc connections more reliable. - Make the v2 dir's "Fast" flag based on relative capacity, just like "Stable" is based on median uptime. Name everything in the top 7/8 Fast, and only the top 1/2 gets to be a Guard. - Retry directory requests if we fail to get an answer we like from a given dirserver (we were retrying before, but only if we fail to connect). - Return a robots.txt on our dirport to discourage google indexing. o Controller protocol improvements: - Revised controller protocol (version 1) that uses ascii rather than binary: tor/doc/control-spec.txt. Add supporting libraries in python and java and c# so you can use the controller from your applications without caring how our protocol works. - Allow the DEBUG controller event to work again. Mark certain log entries as "don't tell this to controllers", so we avoid cycles. - New controller function "getinfo accounting", to ask how many bytes we've used in this time period. - Add a "resetconf" command so you can set config options like AllowUnverifiedNodes and LongLivedPorts to "". Also, if you give a config option in the torrc with no value, then it clears it entirely (rather than setting it to its default). - Add a "getinfo config-file" to tell us where torrc is. Also expose guard nodes, config options/names. - Add a "quit" command (when when using the controller manually). - Add a new signal "newnym" to "change pseudonyms" -- that is, to stop using any currently-dirty circuits for new streams, so we don't link new actions to old actions. This also occurs on HUP or "signal reload". - If we would close a stream early (e.g. it asks for a .exit that we know would refuse it) but the LeaveStreamsUnattached config option is set by the controller, then don't close it. - Add a new controller event type "authdir_newdescs" that allows controllers to get all server descriptors that were uploaded to a router in its role as directory authority. - New controller option "getinfo desc/all-recent" to fetch the latest server descriptor for every router that Tor knows about. - Fix the controller's "attachstream 0" command to treat conn like it just connected, doing address remapping, handling .exit and .onion idioms, and so on. Now we're more uniform in making sure that the controller hears about new and closing connections. - Permit transitioning from ORPort==0 to ORPort!=0, and back, from the controller. Also, rotate dns and cpu workers if the controller changes options that will affect them; and initialize the dns worker cache tree whether or not we start out as a server. - Add a new circuit purpose 'controller' to let the controller ask for a circuit that Tor won't try to use. Extend the "extendcircuit" controller command to let you specify the purpose if you're starting a new circuit. Add a new "setcircuitpurpose" controller command to let you change a circuit's purpose after it's been created. - Let the controller ask for "getinfo dir/server/foo" so it can ask directly rather than connecting to the dir port. "getinfo dir/status/foo" also works, but currently only if your DirPort is enabled. - Let the controller tell us about certain router descriptors that it doesn't want Tor to use in circuits. Implement "setrouterpurpose" and modify "+postdescriptor" to do this. - If the controller's *setconf commands fail, collect an error message in a string and hand it back to the controller -- don't just tell them to go read their logs. o Scalability, resource management, and performance: - Fix a major load balance bug: we were round-robin reading in 16 KB chunks, and servers with bandwidthrate of 20 KB, while downloading a 600 KB directory, would starve their other connections. Now we try to be a bit more fair. - Be more conservative about whether to advertise our DirPort. The main change is to not advertise if we're running at capacity and either a) we could hibernate ever or b) our capacity is low and we're using a default DirPort. - We weren't cannibalizing circuits correctly for CIRCUIT_PURPOSE_C_ESTABLISH_REND and CIRCUIT_PURPOSE_S_ESTABLISH_INTRO, so we were being forced to build those from scratch. This should make hidden services faster. - Predict required circuits better, with an eye toward making hidden services faster on the service end. - Compress exit policies even more: look for duplicate lines and remove them. - Generate 18.0.0.0/8 address policy format in descs when we can; warn when the mask is not reducible to a bit-prefix. - There used to be two ways to specify your listening ports in a server descriptor: on the "router" line and with a separate "ports" line. Remove support for the "ports" line. - Reduce memory requirements in our structs by changing the order of fields. Replace balanced trees with hash tables. Inline bottleneck smartlist functions. Add a "Map from digest to void*" abstraction so we can do less hex encoding/decoding, and use it in router_get_by_digest(). Many other CPU and memory improvements. - Allow tor_gzip_uncompress to extract as much as possible from truncated compressed data. Try to extract as many descriptors as possible from truncated http responses (when purpose is DIR_PURPOSE_FETCH_ROUTERDESC). - Make circ->onionskin a pointer, not a static array. moria2 was using 125000 circuit_t's after it had been up for a few weeks, which translates to 20+ megs of wasted space. - The private half of our EDH handshake keys are now chosen out of 320 bits, not 1024 bits. (Suggested by Ian Goldberg.) - Stop doing the complex voodoo overkill checking for insecure Diffie-Hellman keys. Just check if it's in [2,p-2] and be happy. - Do round-robin writes for TLS of at most 16 kB per write. This might be more fair on loaded Tor servers. - Do not use unaligned memory access on alpha, mips, or mipsel. It *works*, but is very slow, so we treat them as if it doesn't. o Other bugfixes and improvements: - Start storing useful information to $DATADIR/state, so we can remember things across invocations of Tor. Retain unrecognized lines so we can be forward-compatible, and write a TorVersion line so we can be backward-compatible. - If ORPort is set, Address is not explicitly set, and our hostname resolves to a private IP address, try to use an interface address if it has a public address. Now Windows machines that think of themselves as localhost can guess their address. - Regenerate our local descriptor if it's dirty and we try to use it locally (e.g. if it changes during reachability detection). This was causing some Tor servers to keep publishing the same initial descriptor forever. - Tor servers with dynamic IP addresses were needing to wait 18 hours before they could start doing reachability testing using the new IP address and ports. This is because they were using the internal descriptor to learn what to test, yet they were only rebuilding the descriptor once they decided they were reachable. - It turns out we couldn't bootstrap a network since we added reachability detection in 0.1.0.1-rc. Good thing the Tor network has never gone down. Add an AssumeReachable config option to let servers and authorities bootstrap. When we're trying to build a high-uptime or high-bandwidth circuit but there aren't enough suitable servers, try being less picky rather than simply failing. - Newly bootstrapped Tor networks couldn't establish hidden service circuits until they had nodes with high uptime. Be more tolerant. - Really busy servers were keeping enough circuits open on stable connections that they were wrapping around the circuit_id space. (It's only two bytes.) This exposed a bug where we would feel free to reuse a circuit_id even if it still exists but has been marked for close. Try to fix this bug. Some bug remains. - When we fail to bind or listen on an incoming or outgoing socket, we now close it before refusing, rather than just leaking it. (Thanks to Peter Palfrader for finding.) - Fix a file descriptor leak in start_daemon(). - On Windows, you can't always reopen a port right after you've closed it. So change retry_listeners() to only close and re-open ports that have changed. - Workaround a problem with some http proxies that refuse GET requests that specify "Content-Length: 0". Reported by Adrian. - Recover better from TCP connections to Tor servers that are broken but don't tell you (it happens!); and rotate TLS connections once a week. - Fix a scary-looking but apparently harmless bug where circuits would sometimes start out in state CIRCUIT_STATE_OR_WAIT at servers, and never switch to state CIRCUIT_STATE_OPEN. - Check for even more Windows version flags when writing the platform string in server descriptors, and note any we don't recognize. - Add reasons to DESTROY and RELAY_TRUNCATED cells, so clients can get a better idea of why their circuits failed. Not used yet. - Add TTLs to RESOLVED, CONNECTED, and END_REASON_EXITPOLICY cells. We don't use them yet, but maybe one day our DNS resolver will be able to discover them. - Let people type "tor --install" as well as "tor -install" when they want to make it an NT service. - Looks like we were never delivering deflated (i.e. compressed) running-routers lists, even when asked. Oops. - We were leaking some memory every time the client changed IPs. - Clean up more of the OpenSSL memory when exiting, so we can detect memory leaks better. - Never call free() on tor_malloc()d memory. This will help us use dmalloc to detect memory leaks. - Some Tor servers process billions of cells per day. These statistics are now uint64_t's. - Check [X-]Forwarded-For headers in HTTP requests when generating log messages. This lets people run dirservers (and caches) behind Apache but still know which IP addresses are causing warnings. - Fix minor integer overflow in calculating when we expect to use up our bandwidth allocation before hibernating. - Lower the minimum required number of file descriptors to 1000, so we can have some overhead for Valgrind on Linux, where the default ulimit -n is 1024. - Stop writing the "router.desc" file, ever. Nothing uses it anymore, and its existence is confusing some users. o Config option fixes: - Add a new config option ExitPolicyRejectPrivate which defaults to on. Now all exit policies will begin with rejecting private addresses, unless the server operator explicitly turns it off. - Bump the default bandwidthrate to 3 MB, and burst to 6 MB. - Add new ReachableORAddresses and ReachableDirAddresses options that understand address policies. FascistFirewall is now a synonym for "ReachableORAddresses *:443", "ReachableDirAddresses *:80". - Start calling it FooListenAddress rather than FooBindAddress, since few of our users know what it means to bind an address or port. - If the user gave Tor an odd number of command-line arguments, we were silently ignoring the last one. Now we complain and fail. This wins the oldest-bug prize -- this bug has been present since November 2002, as released in Tor 0.0.0. - If you write "HiddenServicePort 6667 127.0.0.1 6668" in your torrc rather than "HiddenServicePort 6667 127.0.0.1:6668", it would silently ignore the 6668. - If we get a linelist or linelist_s config option from the torrc, e.g. ExitPolicy, and it has no value, warn and skip rather than silently resetting it to its default. - Setconf was appending items to linelists, not clearing them. - Add MyFamily to torrc.sample in the server section, so operators will be more likely to learn that it exists. - Make ContactInfo mandatory for authoritative directory servers. - MaxConn has been obsolete for a while now. Document the ConnLimit config option, which is a *minimum* number of file descriptors that must be available else Tor refuses to start. - Get rid of IgnoreVersion undocumented config option, and make us only warn, never exit, when we're running an obsolete version. - Make MonthlyAccountingStart config option truly obsolete now. - Correct the man page entry on TrackHostExitsExpire. - Let directory authorities start even if they don't specify an Address config option. - Change "AllowUnverifiedNodes" to "AllowInvalidNodes", to reflect the updated flags in our v2 dir protocol. o Config option features: - Add a new config option FastFirstHopPK (on by default) so clients do a trivial crypto handshake for their first hop, since TLS has already taken care of confidentiality and authentication. - Let the user set ControlListenAddress in the torrc. This can be dangerous, but there are some cases (like a secured LAN) where it makes sense. - New config options to help controllers: FetchServerDescriptors and FetchHidServDescriptors for whether to fetch server info and hidserv info or let the controller do it, and PublishServerDescriptor and PublishHidServDescriptors. - Also let the controller set the __AllDirActionsPrivate config option if you want all directory fetches/publishes to happen via Tor (it assumes your controller bootstraps your circuits). - Add "HardwareAccel" config option: support for crypto hardware accelerators via OpenSSL. Off by default, until we find somebody smart who can test it for us. (It appears to produce seg faults in at least some cases.) - New config option "AuthDirRejectUnlisted" for directory authorities as a panic button: if we get flooded with unusable servers we can revert to only listing servers in the approved-routers file. - Directory authorities can now reject/invalidate by key and IP, with the config options "AuthDirInvalid" and "AuthDirReject", or by marking a fingerprint as "!reject" or "!invalid" (as its nickname) in the approved-routers file. This is useful since currently we automatically list servers as running and usable even if we know they're jerks. - Add a new config option TestSocks so people can see whether their applications are using socks4, socks4a, socks5-with-ip, or socks5-with-fqdn. This way they don't have to keep mucking with tcpdump and wondering if something got cached somewhere. - Add "private:*" as an alias in configuration for policies. Now you can simplify your exit policy rather than needing to list every single internal or nonroutable network space. - Accept "private:*" in routerdesc exit policies; not generated yet because older Tors do not understand it. - Add configuration option "V1AuthoritativeDirectory 1" which moria1, moria2, and tor26 have set. - Implement an option, VirtualAddrMask, to set which addresses get handed out in response to mapaddress requests. This works around a bug in tsocks where 127.0.0.0/8 is never socksified. - Add a new config option FetchUselessDescriptors, off by default, for when you plan to run "exitlist" on your client and you want to know about even the non-running descriptors. - SocksTimeout: How long do we let a socks connection wait unattached before we fail it? - CircuitBuildTimeout: Cull non-open circuits that were born at least this many seconds ago. - CircuitIdleTimeout: Cull open clean circuits that were born at least this many seconds ago. - New config option SafeSocks to reject all application connections using unsafe socks protocols. Defaults to off. o Improved and clearer log messages: - Reduce clutter in server logs. We're going to try to make them actually usable now. New config option ProtocolWarnings that lets you hear about how _other Tors_ are breaking the protocol. Off by default. - Divide log messages into logging domains. Once we put some sort of interface on this, it will let people looking at more verbose log levels specify the topics they want to hear more about. - Log server fingerprint on startup, so new server operators don't have to go hunting around their filesystem for it. - Provide dire warnings to any users who set DirServer manually; move it out of torrc.sample and into torrc.complete. - Make the log message less scary when all the dirservers are temporarily unreachable. - When tor_socketpair() fails in Windows, give a reasonable Windows-style errno back. - Improve tor_gettimeofday() granularity on windows. - We were printing the number of idle dns workers incorrectly when culling them. - Handle duplicate lines in approved-routers files without warning. - We were whining about using socks4 or socks5-with-local-lookup even when it's an IP address in the "virtual" range we designed exactly for this case. - Check for named servers when looking them up by nickname; warn when we're calling a non-named server by its nickname; don't warn twice about the same name. - Downgrade the dirserver log messages when whining about unreachability. - Correct "your server is reachable" log entries to indicate that it was self-testing that told us so. - If we're trying to be a Tor server and running Windows 95/98/ME as a server, explain that we'll likely crash. - Provide a more useful warn message when our onion queue gets full: the CPU is too slow or the exit policy is too liberal. - Don't warn when we receive a 503 from a dirserver/cache -- this will pave the way for them being able to refuse if they're busy. - When we fail to bind a listener, try to provide a more useful log message: e.g., "Is Tor already running?" - Only start testing reachability once we've established a circuit. This will make startup on dir authorities less noisy. - Don't try to upload hidden service descriptors until we have established a circuit. - Tor didn't warn when it failed to open a log file. - Warn when listening on a public address for socks. We suspect a lot of people are setting themselves up as open socks proxies, and they have no idea that jerks on the Internet are using them, since they simply proxy the traffic into the Tor network. - Give a useful message when people run Tor as the wrong user, rather than telling them to start chowning random directories. - Fix a harmless bug that was causing Tor servers to log "Got an end because of misc error, but we're not an AP. Closing." - Fix wrong log message when you add a "HiddenServiceNodes" config line without any HiddenServiceDir line (reported by Chris Thomas). - Directory authorities now stop whining so loudly about bad descriptors that they fetch from other dirservers. So when there's a log complaint, it's for sure from a freshly uploaded descriptor. - When logging via syslog, include the pid whenever we provide a log entry. Suggested by Todd Fries. - When we're shutting down and we do something like try to post a server descriptor or rendezvous descriptor, don't complain that we seem to be unreachable. Of course we are, we're shutting down. - Change log line for unreachability to explicitly suggest /etc/hosts as the culprit. Also make it clearer what IP address and ports we're testing for reachability. - Put quotes around user-supplied strings when logging so users are more likely to realize if they add bad characters (like quotes) to the torrc. - NT service patch from Matt Edman to improve error messages on Win32. Changes in version 0.1.0.17 - 2006-02-17 o Crash bugfixes on 0.1.0.x: - When servers with a non-zero DirPort came out of hibernation, sometimes they would trigger an assert. o Other important bugfixes: - On platforms that don't have getrlimit (like Windows), we were artificially constraining ourselves to a max of 1024 connections. Now just assume that we can handle as many as 15000 connections. Hopefully this won't cause other problems. o Backported features: - When we're a server, a client asks for an old-style directory, and our write bucket is empty, don't give it to him. This way small servers can continue to serve the directory *sometimes*, without getting overloaded. - Whenever you get a 503 in response to a directory fetch, try once more. This will become important once servers start sending 503's whenever they feel busy. - Fetch a new directory every 120 minutes, not every 40 minutes. Now that we have hundreds of thousands of users running the old directory algorithm, it's starting to hurt a lot. - Bump up the period for forcing a hidden service descriptor upload from 20 minutes to 1 hour. Changes in version 0.1.0.16 - 2006-01-02 o Crash bugfixes on 0.1.0.x: - On Windows, build with a libevent patch from "I-M Weasel" to avoid corrupting the heap, losing FDs, or crashing when we need to resize the fd_sets. (This affects the Win32 binaries, not Tor's sources.) - It turns out sparc64 platforms crash on unaligned memory access too -- so detect and avoid this. - Handle truncated compressed data correctly (by detecting it and giving an error). - Fix possible-but-unlikely free(NULL) in control.c. - When we were closing connections, there was a rare case that stomped on memory, triggering seg faults and asserts. - Avoid potential infinite recursion when building a descriptor. (We don't know that it ever happened, but better to fix it anyway.) - We were neglecting to unlink marked circuits from soon-to-close OR connections, which caused some rare scribbling on freed memory. - Fix a memory stomping race bug when closing the joining point of two rendezvous circuits. - Fix an assert in time parsing found by Steven Murdoch. o Other bugfixes on 0.1.0.x: - When we're doing reachability testing, provide more useful log messages so the operator knows what to expect. - Do not check whether DirPort is reachable when we are suppressing advertising it because of hibernation. - When building with -static or on Solaris, we sometimes needed -ldl. - One of the dirservers (tor26) changed its IP address. - When we're deciding whether a stream has enough circuits around that can handle it, count the freshly dirty ones and not the ones that are so dirty they won't be able to handle it. - When we're expiring old circuits, we had a logic error that caused us to close new rendezvous circuits rather than old ones. - Give a more helpful log message when you try to change ORPort via the controller: you should upgrade Tor if you want that to work. - We were failing to parse Tor versions that start with "Tor ". - Tolerate faulty streams better: when a stream fails for reason exitpolicy, stop assuming that the router is lying about his exit policy. When a stream fails for reason misc, allow it to retry just as if it was resolvefailed. When a stream has failed three times, reset its failure count so we can try again and get all three tries. Changes in version 0.1.0.15 - 2005-09-23 o Bugfixes on 0.1.0.x: - Reject ports 465 and 587 (spam targets) in default exit policy. - Don't crash when we don't have any spare file descriptors and we try to spawn a dns or cpu worker. - Get rid of IgnoreVersion undocumented config option, and make us only warn, never exit, when we're running an obsolete version. - Don't try to print a null string when your server finds itself to be unreachable and the Address config option is empty. - Make the numbers in read-history and write-history into uint64s, so they don't overflow and publish negatives in the descriptor. - Fix a minor memory leak in smartlist_string_remove(). - We were only allowing ourselves to upload a server descriptor at most every 20 minutes, even if it changed earlier than that. - Clean up log entries that pointed to old URLs. Changes in version 0.1.0.14 - 2005-08-08 o Bugfixes on 0.1.0.x: - Fix the other half of the bug with crypto handshakes (CVE-2005-2643). - Fix an assert trigger if you send a 'signal term' via the controller when it's listening for 'event info' messages. Changes in version 0.1.0.13 - 2005-08-04 o Bugfixes on 0.1.0.x: - Fix a critical bug in the security of our crypto handshakes. - Fix a size_t underflow in smartlist_join_strings2() that made it do bad things when you hand it an empty smartlist. - Fix Windows installer to ship Tor license (thanks to Aphex for pointing out this oversight) and put a link to the doc directory in the start menu. - Explicitly set no-unaligned-access for sparc: it turns out the new gcc's let you compile broken code, but that doesn't make it not-broken. Changes in version 0.1.0.12 - 2005-07-18 o New directory servers: - tor26 has changed IP address. o Bugfixes on 0.1.0.x: - Fix a possible double-free in tor_gzip_uncompress(). - When --disable-threads is set, do not search for or link against pthreads libraries. - Don't trigger an assert if an authoritative directory server claims its dirport is 0. - Fix bug with removing Tor as an NT service: some people were getting "The service did not return an error." Thanks to Matt Edman for the fix. Changes in version 0.1.0.11 - 2005-06-30 o Bugfixes on 0.1.0.x: - Fix major security bug: servers were disregarding their exit policies if clients behaved unexpectedly. - Make OS X init script check for missing argument, so we don't confuse users who invoke it incorrectly. - Fix a seg fault in "tor --hash-password foo". - The MAPADDRESS control command was broken. Changes in version 0.1.0.10 - 2005-06-14 o Fixes on Win32: - Make NT services work and start on startup on Win32 (based on patch by Matt Edman). See the FAQ entry for details. - Make 'platform' string in descriptor more accurate for Win32 servers, so it's not just "unknown platform". - REUSEADDR on normal platforms means you can rebind to the port right after somebody else has let it go. But REUSEADDR on Win32 means you can bind to the port _even when somebody else already has it bound_! So, don't do that on Win32. - Clean up the log messages when starting on Win32 with no config file. - Allow seeding the RNG on Win32 even when you're not running as Administrator. If seeding the RNG on Win32 fails, quit. o Assert / crash bugs: - Refuse relay cells that claim to have a length larger than the maximum allowed. This prevents a potential attack that could read arbitrary memory (e.g. keys) from an exit server's process (CVE-2005-2050). - If unofficial Tor clients connect and send weird TLS certs, our Tor server triggers an assert. Stop asserting, and start handling TLS errors better in other situations too. - Fix a race condition that can trigger an assert when we have a pending create cell and an OR connection attempt fails. o Resource leaks: - Use pthreads for worker processes rather than forking. This was forced because when we forked, we ended up wasting a lot of duplicate ram over time. - Also switch to foo_r versions of some library calls to allow reentry and threadsafeness. - Implement --disable-threads configure option. Disable threads on netbsd and openbsd by default, because they have no reentrant resolver functions (!), and on solaris since it has other threading issues. - Fix possible bug on threading platforms (e.g. win32) which was leaking a file descriptor whenever a cpuworker or dnsworker died. - Fix a minor memory leak when somebody establishes an introduction point at your Tor server. - Fix possible memory leak in tor_lookup_hostname(). (Thanks to Adam Langley.) - Add ./configure --with-dmalloc option, to track memory leaks. - And try to free all memory on closing, so we can detect what we're leaking. o Protocol correctness: - When we've connected to an OR and handshaked but didn't like the result, we were closing the conn without sending destroy cells back for pending circuits. Now send those destroys. - Start sending 'truncated' cells back rather than destroy cells if the circuit closes in front of you. This means we won't have to abandon partially built circuits. - Handle changed router status correctly when dirserver reloads fingerprint file. We used to be dropping all unverified descriptors right then. The bug was hidden because we would immediately fetch a directory from another dirserver, which would include the descriptors we just dropped. - Revise tor-spec to add more/better stream end reasons. - Revise all calls to connection_edge_end to avoid sending 'misc', and to take errno into account where possible. - Client now retries when streams end early for 'hibernating' or 'resource limit' reasons, rather than failing them. - Try to be more zealous about calling connection_edge_end when things go bad with edge conns in connection.c. o Robustness improvements: - Better handling for heterogeneous / unreliable nodes: - Annotate circuits with whether they aim to contain high uptime nodes and/or high capacity nodes. When building circuits, choose appropriate nodes. - This means that every single node in an intro rend circuit, not just the last one, will have a minimum uptime. - New config option LongLivedPorts to indicate application streams that will want high uptime circuits. - Servers reset uptime when a dir fetch entirely fails. This hopefully reflects stability of the server's network connectivity. - If somebody starts his tor server in Jan 2004 and then fixes his clock, don't make his published uptime be a year. - Reset published uptime when we wake up from hibernation. - Introduce a notion of 'internal' circs, which are chosen without regard to the exit policy of the last hop. Intro and rendezvous circs must be internal circs, to avoid leaking information. Resolve and connect streams can use internal circs if they want. - New circuit pooling algorithm: keep track of what destination ports we've used recently (start out assuming we'll want to use 80), and make sure to have enough circs around to satisfy these ports. Also make sure to have 2 internal circs around if we've required internal circs lately (and with high uptime if we've seen that lately too). - Turn addr_policy_compare from a tristate to a quadstate; this should help address our "Ah, you allow 1.2.3.4:80. You are a good choice for google.com" problem. - When a client asks us for a dir mirror and we don't have one, launch an attempt to get a fresh one. - First cut at support for "create-fast" cells. Clients can use these when extending to their first hop, since the TLS already provides forward secrecy and authentication. Not enabled on clients yet. o Reachability testing. - Your Tor server will automatically try to see if its ORPort and DirPort are reachable from the outside, and it won't upload its descriptor until it decides at least ORPort is reachable (when DirPort is not yet found reachable, publish it as zero). - When building testing circs for ORPort testing, use only high-bandwidth nodes, so fewer circuits fail. - Notice when our IP changes, and reset stats/uptime/reachability. - Authdirservers don't do ORPort reachability detection, since they're in clique mode, so it will be rare to find a server not already connected to them. - Authdirservers now automatically approve nodes running 0.1.0.2-rc or later. o Dirserver fixes: - Now we allow two unverified servers with the same nickname but different keys. But if a nickname is verified, only that nickname+key are allowed. - If you're an authdirserver connecting to an address:port, and it's not the OR you were expecting, forget about that descriptor. If he *was* the one you were expecting, then forget about all other descriptors for that address:port. - Allow servers to publish descriptors from 12 hours in the future. Corollary: only whine about clock skew from the dirserver if he's a trusted dirserver (since now even verified servers could have quite wrong clocks). - Require servers that use the default dirservers to have public IP addresses. We have too many servers that are configured with private IPs and their admins never notice the log entries complaining that their descriptors are being rejected. o Efficiency improvements: - Use libevent. Now we can use faster async cores (like epoll, kpoll, and /dev/poll), and hopefully work better on Windows too. - Apple's OS X 10.4.0 ships with a broken kqueue API, and using kqueue on 10.3.9 causes kernel panics. Don't use kqueue on OS X. - Find libevent even if it's hiding in /usr/local/ and your CFLAGS and LDFLAGS don't tell you to look there. - Be able to link with libevent as a shared library (the default after 1.0d), even if it's hiding in /usr/local/lib and even if you haven't added /usr/local/lib to your /etc/ld.so.conf, assuming you're running gcc. Otherwise fail and give a useful error message. - Switch to a new buffer management algorithm, which tries to avoid reallocing and copying quite as much. In first tests it looks like it uses *more* memory on average, but less cpu. - Switch our internal buffers implementation to use a ring buffer, to hopefully improve performance for fast servers a lot. - Reenable the part of the code that tries to flush as soon as an OR outbuf has a full TLS record available. Perhaps this will make OR outbufs not grow as huge except in rare cases, thus saving lots of CPU time plus memory. - Improve performance for dirservers: stop re-parsing the whole directory every time you regenerate it. - Keep a big splay tree of (circid,orconn)->circuit mappings to make it much faster to look up a circuit for each relay cell. - Remove most calls to assert_all_pending_dns_resolves_ok(), since they're eating our cpu on exit nodes. - Stop wasting time doing a case insensitive comparison for every dns name every time we do any lookup. Canonicalize the names to lowercase when you first see them. o Hidden services: - Handle unavailable hidden services better. Handle slow or busy hidden services better. - Cannibalize GENERAL circs to be C_REND, C_INTRO, S_INTRO, and S_REND circ as necessary, if there are any completed ones lying around when we try to launch one. - Make hidden services try to establish a rendezvous for 30 seconds after fetching the descriptor, rather than for n (where n=3) attempts to build a circuit. - Adjust maximum skew and age for rendezvous descriptors: let skew be 48 hours rather than 90 minutes. - Reject malformed .onion addresses rather then passing them on as normal web requests. o Controller: - More Tor controller support. See http://tor.eff.org/doc/control-spec.txt for all the new features, including signals to emulate unix signals from any platform; redirectstream; extendcircuit; mapaddress; getinfo; postdescriptor; closestream; closecircuit; etc. - Encode hashed controller passwords in hex instead of base64, to make it easier to write controllers. - Revise control spec and implementation to allow all log messages to be sent to controller with their severities intact (suggested by Matt Edman). Disable debug-level logs while delivering a debug-level log to the controller, to prevent loop. Update TorControl to handle new log event types. o New config options/defaults: - Begin scrubbing sensitive strings from logs by default. Turn off the config option SafeLogging if you need to do debugging. - New exit policy: accept most low-numbered ports, rather than rejecting most low-numbered ports. - Put a note in the torrc about abuse potential with the default exit policy. - Add support for CONNECTing through https proxies, with "HttpsProxy" config option. - Add HttpProxyAuthenticator and HttpsProxyAuthenticator support based on patch from Adam Langley (basic auth only). - Bump the default BandwidthRate from 1 MB to 2 MB, to accommodate the fast servers that have been joining lately. (Clients are now willing to load balance over up to 2 MB of advertised bandwidth capacity too.) - New config option MaxAdvertisedBandwidth which lets you advertise a low bandwidthrate (to not attract as many circuits) while still allowing a higher bandwidthrate in reality. - Require BandwidthRate to be at least 20kB/s for servers. - Add a NoPublish config option, so you can be a server (e.g. for testing running Tor servers in other Tor networks) without publishing your descriptor to the primary dirservers. - Add a new AddressMap config directive to rewrite incoming socks addresses. This lets you, for example, declare an implicit required exit node for certain sites. - Add a new TrackHostExits config directive to trigger addressmaps for certain incoming socks addresses -- for sites that break when your exit keeps changing (based on patch from Mike Perry). - Split NewCircuitPeriod option into NewCircuitPeriod (30 secs), which describes how often we retry making new circuits if current ones are dirty, and MaxCircuitDirtiness (10 mins), which describes how long we're willing to make use of an already-dirty circuit. - Change compiled-in SHUTDOWN_WAIT_LENGTH from a fixed 30 secs to a config option "ShutdownWaitLength" (when using kill -INT on servers). - Fix an edge case in parsing config options: if they say "--" on the commandline, it's not a config option (thanks weasel). - New config option DirAllowPrivateAddresses for authdirservers. Now by default they refuse router descriptors that have non-IP or private-IP addresses. - Change DirFetchPeriod/StatusFetchPeriod to have a special "Be smart" default value: low for servers and high for clients. - Some people were putting "Address " in their torrc, and they had a buggy resolver that resolved " " to 0.0.0.0. Oops. - If DataDir is ~/.tor, and that expands to /.tor, then default to LOCALSTATEDIR/tor instead. - Implement --verify-config command-line option to check if your torrc is valid without actually launching Tor. o Logging improvements: - When dirservers refuse a server descriptor, we now log its contactinfo, platform, and the poster's IP address. - Only warn once per nickname from add_nickname_list_to_smartlist() per failure, so an entrynode or exitnode choice that's down won't yell so much. - When we're connecting to an OR and he's got a different nickname/key than we were expecting, only complain loudly if we're an OP or a dirserver. Complaining loudly to the OR admins just confuses them. - Whine at you if you're a server and you don't set your contactinfo. - Warn when exit policy implicitly allows local addresses. - Give a better warning when some other server advertises an ORPort that is actually an apache running ssl. - If we get an incredibly skewed timestamp from a dirserver mirror that isn't a verified OR, don't warn -- it's probably him that's wrong. - When a dirserver causes you to give a warn, mention which dirserver it was. - Initialize libevent later in the startup process, so the logs are already established by the time we start logging libevent warns. - Use correct errno on win32 if libevent fails. - Check and warn about known-bad/slow libevent versions. - Stop warning about sigpipes in the logs. We're going to pretend that getting these occassionally is normal and fine. o New contrib scripts: - New experimental script tor/contrib/exitlist: a simple python script to parse directories and find Tor nodes that exit to listed addresses/ports. - New experimental script tor/contrib/ExerciseServer.py (needs more work) that uses the controller interface to build circuits and fetch pages over them. This will help us bootstrap servers that have lots of capacity but haven't noticed it yet. - New experimental script tor/contrib/PathDemo.py (needs more work) that uses the controller interface to let you choose whole paths via addresses like "...path" - New contributed script "privoxy-tor-toggle" to toggle whether Privoxy uses Tor. Seems to be configured for Debian by default. - Have torctl.in/tor.sh.in check for location of su binary (needed on FreeBSD) o Misc bugfixes: - chdir() to your datadirectory at the *end* of the daemonize process, not the beginning. This was a problem because the first time you run tor, if your datadir isn't there, and you have runasdaemon set to 1, it will try to chdir to it before it tries to create it. Oops. - Fix several double-mark-for-close bugs, e.g. where we were finding a conn for a cell even if that conn is already marked for close. - Stop most cases of hanging up on a socks connection without sending the socks reject. - Fix a bug in the RPM package: set home directory for _tor to something more reasonable when first installing. - Stop putting nodename in the Platform string in server descriptors. It doesn't actually help, and it is confusing/upsetting some people. - When using preferred entry or exit nodes, ignore whether the circuit wants uptime or capacity. They asked for the nodes, they get the nodes. - Tie MAX_DIR_SIZE to MAX_BUF_SIZE, so now directory sizes won't get artificially capped at 500kB. - Cache local dns resolves correctly even when they're .exit addresses. - If we're hibernating and we get a SIGINT, exit immediately. - tor-resolve requests were ignoring .exit if there was a working circuit they could use instead. - Pay more attention to the ClientOnly config option. - Resolve OS X installer bugs: stop claiming to be 0.0.9.2 in certain installer screens; and don't put stuff into StartupItems unless the user asks you to. o Misc features: - Rewrite address "serifos.exit" to "externalIP.serifos.exit" rather than just rejecting it. - If our clock jumps forward by 100 seconds or more, assume something has gone wrong with our network and abandon all not-yet-used circs. - When an application is using socks5, give him the whole variety of potential socks5 responses (connect refused, host unreachable, etc), rather than just "success" or "failure". - A more sane version numbering system. See http://tor.eff.org/cvs/tor/doc/version-spec.txt for details. - Change version parsing logic: a version is "obsolete" if it is not recommended and (1) there is a newer recommended version in the same series, or (2) there are no recommended versions in the same series, but there are some recommended versions in a newer series. A version is "new" if it is newer than any recommended version in the same series. - Report HTTP reasons to client when getting a response from directory servers -- so you can actually know what went wrong. - Reject odd-looking addresses at the client (e.g. addresses that contain a colon), rather than having the server drop them because they're malformed. - Stop publishing socksport in the directory, since it's not actually meant to be public. For compatibility, publish a 0 there for now. - Since we ship our own Privoxy on OS X, tweak it so it doesn't write cookies to disk and doesn't log each web request to disk. (Thanks to Brett Carrington for pointing this out.) - Add OSX uninstall instructions. An actual uninstall script will come later. - Add "opt hibernating 1" to server descriptor to make it clearer whether the server is hibernating. Changes in version 0.0.9.10 - 2005-06-16 o Bugfixes on 0.0.9.x (backported from 0.1.0.10): - Refuse relay cells that claim to have a length larger than the maximum allowed. This prevents a potential attack that could read arbitrary memory (e.g. keys) from an exit server's process (CVE-2005-2050). Changes in version 0.0.9.9 - 2005-04-23 o Bugfixes on 0.0.9.x: - If unofficial Tor clients connect and send weird TLS certs, our Tor server triggers an assert. This release contains a minimal backport from the broader fix that we put into 0.1.0.4-rc. Changes in version 0.0.9.8 - 2005-04-07 o Bugfixes on 0.0.9.x: - We have a bug that I haven't found yet. Sometimes, very rarely, cpuworkers get stuck in the 'busy' state, even though the cpuworker thinks of itself as idle. This meant that no new circuits ever got established. Here's a workaround to kill any cpuworker that's been busy for more than 100 seconds. Changes in version 0.0.9.7 - 2005-04-01 o Bugfixes on 0.0.9.x: - Fix another race crash bug (thanks to Glenn Fink for reporting). - Compare identity to identity, not to nickname, when extending to a router not already in the directory. This was preventing us from extending to unknown routers. Oops. - Make sure to create OS X Tor user in <500 range, so we aren't creating actual system users. - Note where connection-that-hasn't-sent-end was marked, and fix a few really loud instances of this harmless bug (it's fixed more in 0.1.0.x). Changes in version 0.0.9.6 - 2005-03-24 o Bugfixes on 0.0.9.x (crashes and asserts): - Add new end stream reasons to maintainance branch. Fix bug where reason (8) could trigger an assert. Prevent bug from recurring. - Apparently win32 stat wants paths to not end with a slash. - Fix assert triggers in assert_cpath_layer_ok(), where we were blowing away the circuit that conn->cpath_layer points to, then checking to see if the circ is well-formed. Backport check to make sure we dont use the cpath on a closed connection. - Prevent circuit_resume_edge_reading_helper() from trying to package inbufs for marked-for-close streams. - Don't crash on hup if your options->address has become unresolvable. - Some systems (like OS X) sometimes accept() a connection and tell you the remote host is 0.0.0.0:0. If this happens, due to some other mis-features, we get confused; so refuse the conn for now. o Bugfixes on 0.0.9.x (other): - Fix harmless but scary "Unrecognized content encoding" warn message. - Add new stream error reason: TORPROTOCOL reason means "you are not speaking a version of Tor I understand; say bye-bye to your stream." - Be willing to cache directories from up to ROUTER_MAX_AGE seconds into the future, now that we are more tolerant of skew. This resolves a bug where a Tor server would refuse to cache a directory because all the directories it gets are too far in the future; yet the Tor server never logs any complaints about clock skew. - Mac packaging magic: make man pages useable, and do not overwrite existing torrc files. - Make OS X log happily to /var/log/tor/tor.log Changes in version 0.0.9.5 - 2005-02-22 o Bugfixes on 0.0.9.x: - Fix an assert race at exit nodes when resolve requests fail. - Stop picking unverified dir mirrors--it only leads to misery. - Patch from Matt Edman to make NT services work better. Service support is still not compiled into the executable by default. - Patch from Dmitri Bely so the Tor service runs better under the win32 SYSTEM account. - Make tor-resolve actually work (?) on Win32. - Fix a sign bug when getrlimit claims to have 4+ billion file descriptors available. - Stop refusing to start when bandwidthburst == bandwidthrate. - When create cells have been on the onion queue more than five seconds, just send back a destroy and take them off the list. Changes in version 0.0.9.4 - 2005-02-03 o Bugfixes on 0.0.9: - Fix an assert bug that took down most of our servers: when a server claims to have 1 GB of bandwidthburst, don't freak out. - Don't crash as badly if we have spawned the max allowed number of dnsworkers, or we're out of file descriptors. - Block more file-sharing ports in the default exit policy. - MaxConn is now automatically set to the hard limit of max file descriptors we're allowed (ulimit -n), minus a few for logs, etc. - Give a clearer message when servers need to raise their ulimit -n when they start running out of file descriptors. - SGI Compatibility patches from Jan Schaumann. - Tolerate a corrupt cached directory better. - When a dirserver hasn't approved your server, list which one. - Go into soft hibernation after 95% of the bandwidth is used, not 99%. This is especially important for daily hibernators who have a small accounting max. Hopefully it will result in fewer cut connections when the hard hibernation starts. - Load-balance better when using servers that claim more than 800kB/s of capacity. - Make NT services work (experimental, only used if compiled in). Changes in version 0.0.9.3 - 2005-01-21 o Bugfixes on 0.0.9: - Backport the cpu use fixes from main branch, so busy servers won't need as much processor time. - Work better when we go offline and then come back, or when we run Tor at boot before the network is up. We do this by optimistically trying to fetch a new directory whenever an application request comes in and we think we're offline -- the human is hopefully a good measure of when the network is back. - Backport some minimal hidserv bugfixes: keep rend circuits open as long as you keep using them; actually publish hidserv descriptors shortly after they change, rather than waiting 20-40 minutes. - Enable Mac startup script by default. - Fix duplicate dns_cancel_pending_resolve reported by Giorgos Pallas. - When you update AllowUnverifiedNodes or FirewallPorts via the controller's setconf feature, we were always appending, never resetting. - When you update HiddenServiceDir via setconf, it was screwing up the order of reading the lines, making it fail. - Do not rewrite a cached directory back to the cache; otherwise we will think it is recent and not fetch a newer one on startup. - Workaround for webservers that lie about Content-Encoding: Tor now tries to autodetect compressed directories and compression itself. This lets us Proxypass dir fetches through apache. Changes in version 0.0.9.2 - 2005-01-04 o Bugfixes on 0.0.9 (crashes and asserts): - Fix an assert on startup when the disk is full and you're logging to a file. - If you do socks4 with an IP of 0.0.0.x but *don't* provide a socks4a style address, then we'd crash. - Fix an assert trigger when the running-routers string we get from a dirserver is broken. - Make worker threads start and run on win32. Now win32 servers may work better. - Bandaid (not actually fix, but now it doesn't crash) an assert where the dns worker dies mysteriously and the main Tor process doesn't remember anything about the address it was resolving. o Bugfixes on 0.0.9 (Win32): - Workaround for brain-damaged __FILE__ handling on MSVC: keep Nick's name out of the warning/assert messages. - Fix a superficial "unhandled error on read" bug on win32. - The win32 installer no longer requires a click-through for our license, since our Free Software license grants rights but does not take any away. - Win32: When connecting to a dirserver fails, try another one immediately. (This was already working for non-win32 Tors.) - Stop trying to parse $HOME on win32 when hunting for default DataDirectory. - Make tor-resolve.c work on win32 by calling network_init(). o Bugfixes on 0.0.9 (other): - Make 0.0.9.x build on Solaris again. - Due to a fencepost error, we were blowing away the \n when reporting confvalue items in the controller. So asking for multiple config values at once couldn't work. - When listing circuits that are pending on an opening OR connection, if we're an OR we were listing circuits that *end* at us as being pending on every listener, dns/cpu worker, etc. Stop that. - Dirservers were failing to create 'running-routers' or 'directory' strings if we had more than some threshold of routers. Fix them so they can handle any number of routers. - Fix a superficial "Duplicate mark for close" bug. - Stop checking for clock skew for OR connections, even for servers. - Fix a fencepost error that was chopping off the last letter of any nickname that is the maximum allowed nickname length. - Update URLs in log messages so they point to the new website. - Fix a potential problem in mangling server private keys while writing to disk (not triggered yet, as far as we know). - Include the licenses for other free software we include in Tor, now that we're shipping binary distributions more regularly. Changes in version 0.0.9.1 - 2004-12-15 o Bugfixes on 0.0.9: - Make hibernation actually work. - Make HashedControlPassword config option work. - When we're reporting event circuit status to a controller, don't use the stream status code. Changes in version 0.0.9 - 2004-12-12 o Bugfixes on 0.0.8.1 (Crashes and asserts): - Catch and ignore SIGXFSZ signals when log files exceed 2GB; our write() call will fail and we handle it there. - When we run out of disk space, or other log writing error, don't crash. Just stop logging to that log and continue. - Fix isspace() and friends so they still make Solaris happy but also so they don't trigger asserts on win32. - Fix assert failure on malformed socks4a requests. - Fix an assert bug where a hidden service provider would fail if the first hop of his rendezvous circuit was down. - Better handling of size_t vs int, so we're more robust on 64 bit platforms. o Bugfixes on 0.0.8.1 (Win32): - Make windows sockets actually non-blocking (oops), and handle win32 socket errors better. - Fix parse_iso_time on platforms without strptime (eg win32). - win32: when being multithreaded, leave parent fdarray open. - Better handling of winsock includes on non-MSV win32 compilers. - Change our file IO stuff (especially wrt OpenSSL) so win32 is happier. - Make unit tests work on win32. o Bugfixes on 0.0.8.1 (Path selection and streams): - Calculate timeout for waiting for a connected cell from the time we sent the begin cell, not from the time the stream started. If it took a long time to establish the circuit, we would time out right after sending the begin cell. - Fix router_compare_addr_to_addr_policy: it was not treating a port of * as always matching, so we were picking reject *:* nodes as exit nodes too. Oops. - When read() failed on a stream, we would close it without sending back an end. So 'connection refused' would simply be ignored and the user would get no response. - Stop a sigpipe: when an 'end' cell races with eof from the app, we shouldn't hold-open-until-flush if the eof arrived first. - Let resolve conns retry/expire also, rather than sticking around forever. - Fix more dns related bugs: send back resolve_failed and end cells more reliably when the resolve fails, rather than closing the circuit and then trying to send the cell. Also attach dummy resolve connections to a circuit *before* calling dns_resolve(), to fix a bug where cached answers would never be sent in RESOLVED cells. o Bugfixes on 0.0.8.1 (Circuits): - Finally fix a bug that's been plaguing us for a year: With high load, circuit package window was reaching 0. Whenever we got a circuit-level sendme, we were reading a lot on each socket, but only writing out a bit. So we would eventually reach eof. This would be noticed and acted on even when there were still bytes sitting in the inbuf. - Use identity comparison, not nickname comparison, to choose which half of circuit-ID-space each side gets to use. This is needed because sometimes we think of a router as a nickname, and sometimes as a hex ID, and we can't predict what the other side will do. o Bugfixes on 0.0.8.1 (Other): - Fix a whole slew of memory leaks. - Disallow NDEBUG. We don't ever want anybody to turn off debug. - If we are using select, make sure we stay within FD_SETSIZE. - When poll() is interrupted, we shouldn't believe the revents values. - Add a FAST_SMARTLIST define to optionally inline smartlist_get and smartlist_len, which are two major profiling offenders. - If do_hup fails, actually notice. - Flush the log file descriptor after we print "Tor opening log file", so we don't see those messages days later. - Hidden service operators now correctly handle version 1 style INTRODUCE1 cells (nobody generates them still, so not a critical bug). - Handle more errnos from accept() without closing the listener. Some OpenBSD machines were closing their listeners because they ran out of file descriptors. - Some people had wrapped their tor client/server in a script that would restart it whenever it died. This did not play well with our "shut down if your version is obsolete" code. Now people don't fetch a new directory if their local cached version is recent enough. - Make our autogen.sh work on ksh as well as bash. - Better torrc example lines for dirbindaddress and orbindaddress. - Improved bounds checking on parsed ints (e.g. config options and the ones we find in directories.) - Stop using separate defaults for no-config-file and empty-config-file. Now you have to explicitly turn off SocksPort, if you don't want it open. - We were starting to daemonize before we opened our logs, so if there were any problems opening logs, we would complain to stderr, which wouldn't work, and then mysteriously exit. - If a verified OR connects to us before he's uploaded his descriptor, or we verify him and hup but he still has the original TLS connection, then conn->nickname is still set like he's unverified. o Code security improvements, inspired by Ilja: - tor_snprintf wrapper over snprintf with consistent (though not C99) overflow behavior. - Replace sprintf with tor_snprintf. (I think they were all safe, but hey.) - Replace strcpy/strncpy with strlcpy in more places. - Avoid strcat; use tor_snprintf or strlcat instead. o Features (circuits and streams): - New circuit building strategy: keep a list of ports that we've used in the past 6 hours, and always try to have 2 circuits open or on the way that will handle each such port. Seed us with port 80 so web users won't complain that Tor is "slow to start up". - Make kill -USR1 dump more useful stats about circuits. - When warning about retrying or giving up, print the address, so the user knows which one it's talking about. - If you haven't used a clean circuit in an hour, throw it away, just to be on the safe side. (This means after 6 hours a totally unused Tor client will have no circuits open.) - Support "foo.nickname.exit" addresses, to let Alice request the address "foo" as viewed by exit node "nickname". Based on a patch from Geoff Goodell. - If your requested entry or exit node has advertised bandwidth 0, pick it anyway. - Be more greedy about filling up relay cells -- we try reading again once we've processed the stuff we read, in case enough has arrived to fill the last cell completely. - Refuse application socks connections to port 0. - Use only 0.0.9pre1 and later servers for resolve cells. o Features (bandwidth): - Hibernation: New config option "AccountingMax" lets you set how many bytes per month (in each direction) you want to allow your server to consume. Rather than spreading those bytes out evenly over the month, we instead hibernate for some of the month and pop up at a deterministic time, work until the bytes are consumed, then hibernate again. Config option "MonthlyAccountingStart" lets you specify which day of the month your billing cycle starts on. - Implement weekly/monthly/daily accounting: now you specify your hibernation properties by AccountingMax N bytes|KB|MB|GB|TB AccountingStart day|week|month [day] HH:MM Defaults to "month 1 0:00". - Let bandwidth and interval config options be specified as 5 bytes, kb, kilobytes, etc; and as seconds, minutes, hours, days, weeks. o Features (directories): - New "router-status" line in directory, to better bind each verified nickname to its identity key. - Clients can ask dirservers for /dir.z to get a compressed version of the directory. Only works for servers running 0.0.9, of course. - Make clients cache directories and use them to seed their router lists at startup. This means clients have a datadir again. - Respond to content-encoding headers by trying to uncompress as appropriate. - Clients and servers now fetch running-routers; cache running-routers; compress running-routers; serve compressed running-routers.z - Make moria2 advertise a dirport of 80, so people behind firewalls will be able to get a directory. - Http proxy support - Dirservers translate requests for http://%s:%d/x to /x - You can specify "HttpProxy %s[:%d]" and all dir fetches will be routed through this host. - Clients ask for /tor/x rather than /x for new enough dirservers. This way we can one day coexist peacefully with apache. - Clients specify a "Host: %s%d" http header, to be compatible with more proxies, and so running squid on an exit node can work. - Protect dirservers from overzealous descriptor uploading -- wait 10 seconds after directory gets dirty, before regenerating. o Features (packages and install): - Add NSI installer contributed by J Doe. - Apply NT service patch from Osamu Fujino. Still needs more work. - Commit VC6 and VC7 workspace/project files. - Commit a tor.spec for making RPM files, with help from jbash. - Add contrib/torctl.in contributed by Glenn Fink. - Make expand_filename handle ~ and ~username. - Use autoconf to enable largefile support where necessary. Use ftello where available, since ftell can fail at 2GB. - Ship src/win32/ in the tarball, so people can use it to build. - Make old win32 fall back to CWD if SHGetSpecialFolderLocation is broken. o Features (ui controller): - Control interface: a separate program can now talk to your client/server over a socket, and get/set config options, receive notifications of circuits and streams starting/finishing/dying, bandwidth used, etc. The next step is to get some GUIs working. Let us know if you want to help out. See doc/control-spec.txt . - Ship a contrib/tor-control.py as an example script to interact with the control port. - "tor --hash-password zzyxz" will output a salted password for use in authenticating to the control interface. - Implement the control-spec's SAVECONF command, to write your configuration to torrc. - Get cookie authentication for the controller closer to working. - When set_conf changes our server descriptor, upload a new copy. But don't upload it too often if there are frequent changes. o Features (config and command-line): - Deprecate unofficial config option abbreviations, and abbreviations not on the command line. - Configuration infrastructure support for warning on obsolete options. - Give a slightly more useful output for "tor -h". - Break DirFetchPostPeriod into: - DirFetchPeriod for fetching full directory, - StatusFetchPeriod for fetching running-routers, - DirPostPeriod for posting server descriptor, - RendPostPeriod for posting hidden service descriptors. - New log format in config: "Log minsev[-maxsev] stdout|stderr|syslog" or "Log minsev[-maxsev] file /var/foo" - DirPolicy config option, to let people reject incoming addresses from their dirserver. - "tor --list-fingerprint" will list your identity key fingerprint and then exit. - Make tor --version --version dump the cvs Id of every file. - New 'MyFamily nick1,...' config option for a server to specify other servers that shouldn't be used in the same circuit with it. Only believed if nick1 also specifies us. - New 'NodeFamily nick1,nick2,...' config option for a client to specify nodes that it doesn't want to use in the same circuit. - New 'Redirectexit pattern address:port' config option for a server to redirect exit connections, e.g. to a local squid. - Add "pass" target for RedirectExit, to make it easier to break out of a sequence of RedirectExit rules. - Make the dirservers file obsolete. - Include a dir-signing-key token in directories to tell the parsing entity which key is being used to sign. - Remove the built-in bulky default dirservers string. - New config option "Dirserver %s:%d [fingerprint]", which can be repeated as many times as needed. If no dirservers specified, default to moria1,moria2,tor26. - Make 'Routerfile' config option obsolete. - Discourage people from setting their dirfetchpostperiod more often than once per minute. o Features (other): - kill -USR2 now moves all logs to loglevel debug (kill -HUP to get back to normal.) - Accept *:706 (silc) in default exit policy. - Implement new versioning format for post 0.1. - Distinguish between TOR_TLS_CLOSE and TOR_TLS_ERROR, so we can log more informatively. - Check clock skew for verified servers, but allow unverified servers and clients to have any clock skew. - Make sure the hidden service descriptors are at a random offset from each other, to hinder linkability. - Clients now generate a TLS cert too, in preparation for having them act more like real nodes. - Add a pure-C tor-resolve implementation. - Use getrlimit and friends to ensure we can reach MaxConn (currently 1024) file descriptors. - Raise the max dns workers from 50 to 100. Changes in version 0.0.8.1 - 2004-10-13 o Bugfixes: - Fix a seg fault that can be triggered remotely for Tor clients/servers with an open dirport. - Fix a rare assert trigger, where routerinfos for entries in our cpath would expire while we're building the path. - Fix a bug in OutboundBindAddress so it (hopefully) works. - Fix a rare seg fault for people running hidden services on intermittent connections. - Fix a bug in parsing opt keywords with objects. - Fix a stale pointer assert bug when a stream detaches and reattaches. - Fix a string format vulnerability (probably not exploitable) in reporting stats locally. - Fix an assert trigger: sometimes launching circuits can fail immediately, e.g. because too many circuits have failed recently. - Fix a compile warning on 64 bit platforms. Changes in version 0.0.8 - 2004-08-25 o Bugfixes: - Made our unit tests compile again on OpenBSD 3.5, and tor itself compile again on OpenBSD on a sparc64. - We were neglecting milliseconds when logging on win32, so everything appeared to happen at the beginning of each second. - Check directory signature _before_ you decide whether you're you're running an obsolete version and should exit. - Check directory signature _before_ you parse the running-routers list to decide who's running. - Check return value of fclose while writing to disk, so we don't end up with broken files when servers run out of disk space. - Port it to SunOS 5.9 / Athena - Fix two bugs in saving onion keys to disk when rotating, so hopefully we'll get fewer people using old onion keys. - Remove our mostly unused -- and broken -- hex_encode() function. Use base16_encode() instead. (Thanks to Timo Lindfors for pointing out this bug.) - Only pick and establish intro points after we've gotten a directory. - Fix assert triggers: if the other side returns an address 0.0.0.0, don't put it into the client dns cache. - If a begin failed due to exit policy, but we believe the IP address should have been allowed, switch that router to exitpolicy reject *:* until we get our next directory. o Protocol changes: - 'Extend' relay cell payloads now include the digest of the intended next hop's identity key. Now we can verify that we're extending to the right router, and also extend to routers we hadn't heard of before. o Features: - Tor nodes can now act as relays (with an advertised ORPort) without being manually verified by the dirserver operators. - Uploaded descriptors of unverified routers are now accepted by the dirservers, and included in the directory. - Verified routers are listed by nickname in the running-routers list; unverified routers are listed as "$". - We now use hash-of-identity-key in most places rather than nickname or addr:port, for improved security/flexibility. - AllowUnverifiedNodes config option to let circuits choose no-name routers in entry,middle,exit,introduction,rendezvous positions. Allow middle and rendezvous positions by default. - When picking unverified routers, skip those with low uptime and/or low bandwidth, depending on what properties you care about. - ClientOnly option for nodes that never want to become servers. - Directory caching. - "AuthoritativeDir 1" option for the official dirservers. - Now other nodes (clients and servers) will cache the latest directory they've pulled down. - They can enable their DirPort to serve it to others. - Clients will pull down a directory from any node with an open DirPort, and check the signature/timestamp correctly. - Authoritative dirservers now fetch directories from other authdirservers, to stay better synced. - Running-routers list tells who's down also, along with noting if they're verified (listed by nickname) or unverified (listed by hash-of-key). - Allow dirservers to serve running-router list separately. This isn't used yet. - You can now fetch $DIRURL/running-routers to get just the running-routers line, not the whole descriptor list. (But clients don't use this yet.) - Clients choose nodes proportional to advertised bandwidth. - Clients avoid using nodes with low uptime as introduction points. - Handle servers with dynamic IP addresses: don't just replace options->Address with the resolved one at startup, and detect our address right before we make a routerinfo each time. - 'FascistFirewall' option to pick dirservers and ORs on specific ports; plus 'FirewallPorts' config option to tell FascistFirewall which ports are open. (Defaults to 80,443) - Try other dirservers immediately if the one you try is down. This should tolerate down dirservers better now. - ORs connect-on-demand to other ORs - If you get an extend cell to an OR you're not connected to, connect, handshake, and forward the create cell. - The authoritative dirservers stay connected to everybody, and everybody stays connected to 0.0.7 servers, but otherwise clients/servers expire unused connections after 5 minutes. - When servers get a sigint, they delay 30 seconds (refusing new connections) then exit. A second sigint causes immediate exit. - File and name management: - Look for .torrc if no CONFDIR "torrc" is found. - If no datadir is defined, then choose, make, and secure ~/.tor as datadir. - If torrc not found, exitpolicy reject *:*. - Expands ~/ in filenames to $HOME/ (but doesn't yet expand ~arma). - If no nickname is defined, derive default from hostname. - Rename secret key files, e.g. identity.key -> secret_id_key, to discourage people from mailing their identity key to tor-ops. - Refuse to build a circuit before the directory has arrived -- it won't work anyway, since you won't know the right onion keys to use. - Parse tor version numbers so we can do an is-newer-than check rather than an is-in-the-list check. - New socks command 'resolve', to let us shim gethostbyname() locally. - A 'tor_resolve' script to access the socks resolve functionality. - A new socks-extensions.txt doc file to describe our interpretation and extensions to the socks protocols. - Add a ContactInfo option, which gets published in descriptor. - Write tor version at the top of each log file - New docs in the tarball: - tor-doc.html. - Document that you should proxy your SSL traffic too. - Log a warning if the user uses an unsafe socks variant, so people are more likely to learn about privoxy or socat. - Log a warning if you're running an unverified server, to let you know you might want to get it verified. - Change the default exit policy to reject the default edonkey, kazaa, gnutella ports. - Add replace_file() to util.[ch] to handle win32's rename(). - Publish OR uptime in descriptor (and thus in directory) too. - Remember used bandwidth (both in and out), and publish 15-minute snapshots for the past day into our descriptor. - Be more aggressive about trying to make circuits when the network has changed (e.g. when you unsuspend your laptop). - Check for time skew on http headers; report date in response to "GET /". - If the entrynode config line has only one node, don't pick it as an exitnode. - Add strict{entry|exit}nodes config options. If set to 1, then we refuse to build circuits that don't include the specified entry or exit nodes. - OutboundBindAddress config option, to bind to a specific IP address for outgoing connect()s. - End truncated log entries (e.g. directories) with "[truncated]". Changes in version 0.0.7.3 - 2004-08-12 o Stop dnsworkers from triggering an assert failure when you ask them to resolve the host "". Changes in version 0.0.7.2 - 2004-07-07 o A better fix for the 0.0.0.0 problem, that will hopefully eliminate the remaining related assertion failures. Changes in version 0.0.7.1 - 2004-07-04 o When an address resolves to 0.0.0.0, treat it as a failed resolve, since internally we use 0.0.0.0 to signify "not yet resolved". Changes in version 0.0.7 - 2004-06-07 o Fixes for crashes and other obnoxious bugs: - Fix an epipe bug: sometimes when directory connections failed to connect, we would give them a chance to flush before closing them. - When we detached from a circuit because of resolvefailed, we would immediately try the same circuit twice more, and then give up on the resolve thinking we'd tried three different exit nodes. - Limit the number of intro circuits we'll attempt to build for a hidden service per 15-minute period. - Check recommended-software string *early*, before actually parsing the directory. Thus we can detect an obsolete version and exit, even if the new directory format doesn't parse. o Fixes for security bugs: - Remember which nodes are dirservers when you startup, and if a random OR enables his dirport, don't automatically assume he's a trusted dirserver. o Other bugfixes: - Directory connections were asking the wrong poll socket to start writing, and not asking themselves to start writing. - When we detached from a circuit because we sent a begin but didn't get a connected, we would use it again the first time; but after that we would correctly switch to a different one. - Stop warning when the first onion decrypt attempt fails; they will sometimes legitimately fail now that we rotate keys. - Override unaligned-access-ok check when $host_cpu is ia64 or arm. Apparently they allow it but the kernel whines. - Dirservers try to reconnect periodically too, in case connections have failed. - Fix some memory leaks in directory servers. - Allow backslash in Win32 filenames. - Made Tor build complain-free on FreeBSD, hopefully without breaking other BSD builds. We'll see. - Check directory signatures based on name of signer, not on whom we got the directory from. This will let us cache directories more easily. - Rotate dnsworkers and cpuworkers on SIGHUP, so they get new config settings too. o Features: - Doxygen markup on all functions and global variables. - Make directory functions update routerlist, not replace it. So now directory disagreements are not so critical a problem. - Remove the upper limit on number of descriptors in a dirserver's directory (not that we were anywhere close). - Allow multiple logfiles at different severity ranges. - Allow *BindAddress to specify ":port" rather than setting *Port separately. Allow multiple instances of each BindAddress config option, so you can bind to multiple interfaces if you want. - Allow multiple exit policy lines, which are processed in order. Now we don't need that huge line with all the commas in it. - Enable accept/reject policies on SOCKS connections, so you can bind to 0.0.0.0 but still control who can use your OP. - Updated the man page to reflect these features. Changes in version 0.0.6.2 - 2004-05-16 o Our integrity-checking digest was checking only the most recent cell, not the previous cells like we'd thought. Thanks to Stefan Mark for finding the flaw! Changes in version 0.0.6.1 - 2004-05-06 o Fix two bugs in our AES counter-mode implementation (this affected onion-level stream encryption, but not TLS-level). It turns out we were doing something much more akin to a 16-character polyalphabetic cipher. Oops. Thanks to Stefan Mark for finding the flaw! o Retire moria3 as a directory server, and add tor26 as a directory server. Changes in version 0.0.6 - 2004-05-02 o Features: - Hidden services and rendezvous points are implemented. Go to http://6sxoyfb3h2nvok2d.onion/ for an index of currently available hidden services. (This only works via a socks4a proxy such as Privoxy, and currently it's quite slow.) - We now rotate link (tls context) keys and onion keys. - CREATE cells now include oaep padding, so you can tell if you decrypted them correctly. - Retry stream correctly when we fail to connect because of exit-policy-reject (should try another) or can't-resolve-address. - When we hup a dirserver and we've *removed* a server from the approved-routers list, now we remove that server from the in-memory directories too. - Add bandwidthburst to server descriptor. - Directories now say which dirserver signed them. - Use a tor_assert macro that logs failed assertions too. - Since we don't support truncateds much, don't bother sending them; just close the circ. - Fetch randomness from /dev/urandom better (not via fopen/fread) - Better debugging for tls errors - Set Content-Type on the directory and hidserv descriptor. - Remove IVs from cipher code, since AES-ctr has none. o Bugfixes: - Fix an assert trigger for exit nodes that's been plaguing us since the days of 0.0.2prexx (thanks weasel!) - Fix a bug where we were closing tls connections intermittently. It turns out openssl keeps its errors around -- so if an error happens, and you don't ask about it, and then another openssl operation happens and succeeds, and you ask if there was an error, it tells you about the first error. - Fix a bug that's been lurking since 27 may 03 (!) When passing back a destroy cell, we would use the wrong circ id. - Don't crash if a conn that sent a begin has suddenly lost its circuit. - Some versions of openssl have an SSL_pending function that erroneously returns bytes when there is a non-application record pending. - Win32 fixes. Tor now compiles on win32 with no warnings/errors. o We were using an array of length zero in a few places. o Win32's gethostbyname can't resolve an IP to an IP. o Win32's close can't close a socket. o Handle windows socket errors correctly. o Portability: - check for so we build on FreeBSD again, and for NetBSD. Changes in version 0.0.5 - 2004-03-30 o Install torrc as torrc.sample -- we no longer clobber your torrc. (Woo!) o Fix mangled-state bug in directory fetching (was causing sigpipes). o Only build circuits after we've fetched the directory: clients were using only the directory servers before they'd fetched a directory. This also means longer startup time; so it goes. o Fix an assert trigger where an OP would fail to handshake, and we'd expect it to have a nickname. o Work around a tsocks bug: do a socks reject when AP connection dies early, else tsocks goes into an infinite loop. o Hold socks connection open until reply is flushed (if possible) o Make exit nodes resolve IPs to IPs immediately, rather than asking the dns farm to do it. o Fix c99 aliasing warnings in rephist.c o Don't include server descriptors that are older than 24 hours in the directory. o Give socks 'reject' replies their whole 15s to attempt to flush, rather than seeing the 60s timeout and assuming the flush had failed. o Clean automake droppings from the cvs repository o Add in a 'notice' log level for things the operator should hear but that aren't warnings Changes in version 0.0.4 - 2004-03-26 o When connecting to a dirserver or OR and the network is down, we would crash. Changes in version 0.0.3 - 2004-03-26 o Warn and fail if server chose a nickname with illegal characters o Port to Solaris and Sparc: - include missing header fcntl.h - have autoconf find -lsocket -lnsl automatically - deal with hardware word alignment - make uname() work (solaris has a different return convention) - switch from using signal() to sigaction() o Preliminary work on reputation system: - Keep statistics on success/fail of connect attempts; they're published by kill -USR1 currently. - Add a RunTesting option to try to learn link state by creating test circuits, even when SocksPort is off. - Remove unused open circuits when there are too many. Changes in version 0.0.2 - 2004-03-19 - Include strlcpy and strlcat for safer string ops - define INADDR_NONE so we compile (but still not run) on solaris Changes in version 0.0.2pre27 - 2004-03-14 o Bugfixes: - Allow internal tor networks (we were rejecting internal IPs, now we allow them if they're set explicitly). - And fix a few endian issues. Changes in version 0.0.2pre26 - 2004-03-14 o New features: - If a stream times out after 15s without a connected cell, don't try that circuit again: try a new one. - Retry streams at most 4 times. Then give up. - When a dirserver gets a descriptor from an unknown router, it logs its fingerprint (so the dirserver operator can choose to accept it even without mail from the server operator). - Inform unapproved servers when we reject their descriptors. - Make tor build on Windows again. It works as a client, who knows about as a server. - Clearer instructions in the torrc for how to set up a server. - Be more efficient about reading fd's when our global token bucket (used for rate limiting) becomes empty. o Bugfixes: - Stop asserting that computers always go forward in time. It's simply not true. - When we sent a cell (e.g. destroy) and then marked an OR connection expired, we might close it before finishing a flush if the other side isn't reading right then. - Don't allow dirservers to start if they haven't defined RecommendedVersions - We were caching transient dns failures. Oops. - Prevent servers from publishing an internal IP as their address. - Address a strcat vulnerability in circuit.c Changes in version 0.0.2pre25 - 2004-03-04 o New features: - Put the OR's IP in its router descriptor, not its fqdn. That way we'll stop being stalled by gethostbyname for nodes with flaky dns, e.g. poblano. o Bugfixes: - If the user typed in an address that didn't resolve, the server crashed. Changes in version 0.0.2pre24 - 2004-03-03 o Bugfixes: - Fix an assertion failure in dns.c, where we were trying to dequeue a pending dns resolve even if it wasn't pending - Fix a spurious socks5 warning about still trying to write after the connection is finished. - Hold certain marked_for_close connections open until they're finished flushing, rather than losing bytes by closing them too early. - Correctly report the reason for ending a stream - Remove some duplicate calls to connection_mark_for_close - Put switch_id and start_daemon earlier in the boot sequence, so it will actually try to chdir() to options.DataDirectory - Make 'make test' exit(1) if a test fails; fix some unit tests - Make tor fail when you use a config option it doesn't know about, rather than warn and continue. - Make --version work - Bugfixes on the rpm spec file and tor.sh, so it's more up to date Changes in version 0.0.2pre23 - 2004-02-29 o New features: - Print a statement when the first circ is finished, so the user knows it's working. - If a relay cell is unrecognized at the end of the circuit, send back a destroy. (So attacks to mutate cells are more clearly thwarted.) - New config option 'excludenodes' to avoid certain nodes for circuits. - When it daemonizes, it chdir's to the DataDirectory rather than "/", so you can collect coredumps there. o Bugfixes: - Fix a bug in tls flushing where sometimes data got wedged and didn't flush until more data got sent. Hopefully this bug was a big factor in the random delays we were seeing. - Make 'connected' cells include the resolved IP, so the client dns cache actually gets populated. - Disallow changing from ORPort=0 to ORPort>0 on hup. - When we time-out on a stream and detach from the circuit, send an end cell down it first. - Only warn about an unknown router (in exitnodes, entrynodes, excludenodes) after we've fetched a directory. Changes in version 0.0.2pre22 - 2004-02-26 o New features: - Servers publish less revealing uname information in descriptors. - More memory tracking and assertions, to crash more usefully when errors happen. - If the default torrc isn't there, just use some default defaults. Plus provide an internal dirservers file if they don't have one. - When the user tries to use Tor as an http proxy, give them an http 501 failure explaining that we're a socks proxy. - Dump a new router.desc on hup, to help confused people who change their exit policies and then wonder why router.desc doesn't reflect it. - Clean up the generic tor.sh init script that we ship with. o Bugfixes: - If the exit stream is pending on the resolve, and a destroy arrives, then the stream wasn't getting removed from the pending list. I think this was the one causing recent server crashes. - Use a more robust poll on OSX 10.3, since their poll is flaky. - When it couldn't resolve any dirservers, it was useless from then on. Now it reloads the RouterFile (or default dirservers) if it has no dirservers. - Move the 'tor' binary back to /usr/local/bin/ -- it turns out many users don't even *have* a /usr/local/sbin/. Changes in version 0.0.2pre21 - 2004-02-18 o New features: - There's a ChangeLog file that actually reflects the changelog. - There's a 'torify' wrapper script, with an accompanying tor-tsocks.conf, that simplifies the process of using tsocks for tor. It even has a man page. - The tor binary gets installed to sbin rather than bin now. - Retry streams where the connected cell hasn't arrived in 15 seconds - Clean up exit policy handling -- get the default out of the torrc, so we can update it without forcing each server operator to fix his/her torrc. - Allow imaps and pop3s in default exit policy o Bugfixes: - Prevent picking middleman nodes as the last node in the circuit Changes in version 0.0.2pre20 - 2004-01-30 o New features: - We now have a deb package, and it's in debian unstable. Go to it, apt-getters. :) - I've split the TotalBandwidth option into BandwidthRate (how many bytes per second you want to allow, long-term) and BandwidthBurst (how many bytes you will allow at once before the cap kicks in). This better token bucket approach lets you, say, set BandwidthRate to 10KB/s and BandwidthBurst to 10MB, allowing good performance while not exceeding your monthly bandwidth quota. - Push out a tls record's worth of data once you've got it, rather than waiting until you've read everything waiting to be read. This may improve performance by pipelining better. We'll see. - Add an AP_CONN_STATE_CONNECTING state, to allow streams to detach from failed circuits (if they haven't been connected yet) and attach to new ones. - Expire old streams that haven't managed to connect. Some day we'll have them reattach to new circuits instead. o Bugfixes: - Fix several memory leaks that were causing servers to become bloated after a while. - Fix a few very rare assert triggers. A few more remain. - Setuid to User _before_ complaining about running as root. Changes in version 0.0.2pre19 - 2004-01-07 o Bugfixes: - Fix deadlock condition in dns farm. We were telling a child to die by closing the parent's file descriptor to him. But newer children were inheriting the open file descriptor from the parent, and since they weren't closing it, the socket never closed, so the child never read eof, so he never knew to exit. Similarly, dns workers were holding open other sockets, leading to all sorts of chaos. - New cleaner daemon() code for forking and backgrounding. - If you log to a file, it now prints an entry at the top of the logfile so you know it's working. - The onionskin challenge length was 30 bytes longer than necessary. - Started to patch up the spec so it's not quite so out of date. Changes in version 0.0.2pre18 - 2004-01-02 o Bugfixes: - Fix endian issues with the 'integrity' field in the relay header. - Fix a potential bug where connections in state AP_CONN_STATE_CIRCUIT_WAIT might unexpectedly ask to write. Changes in version 0.0.2pre17 - 2003-12-30 o Bugfixes: - Made --debuglogfile (or any second log file, actually) work. - Resolved an edge case in get_unique_circ_id_by_conn where a smart adversary could force us into an infinite loop. o Features: - Each onionskin handshake now includes a hash of the computed key, to prove the server's identity and help perfect forward secrecy. - Changed cell size from 256 to 512 bytes (working toward compatibility with MorphMix). - Changed cell length to 2 bytes, and moved it to the relay header. - Implemented end-to-end integrity checking for the payloads of relay cells. - Separated streamid from 'recognized' (otherwise circuits will get messed up when we try to have streams exit from the middle). We use the integrity-checking to confirm that a cell is addressed to this hop. - Randomize the initial circid and streamid values, so an adversary who breaks into a node can't learn how many circuits or streams have been made so far. Changes in version 0.0.2pre16 - 2003-12-14 o Bugfixes: - Fixed a bug that made HUP trigger an assert - Fixed a bug where a circuit that immediately failed wasn't being counted as a failed circuit in counting retries. o Features: - Now we close the circuit when we get a truncated cell: otherwise we're open to an anonymity attack where a bad node in the path truncates the circuit and then we open streams at him. - Add port ranges to exit policies - Add a conservative default exit policy - Warn if you're running tor as root - on HUP, retry OR connections and close/rebind listeners - options.EntryNodes: try these nodes first when picking the first node - options.ExitNodes: if your best choices happen to include any of your preferred exit nodes, you choose among just those preferred exit nodes. - options.ExcludedNodes: nodes that are never picked in path building Changes in version 0.0.2pre15 - 2003-12-03 o Robustness and bugfixes: - Sometimes clients would cache incorrect DNS resolves, which would really screw things up. - An OP that goes offline would slowly leak all its sockets and stop working. - A wide variety of bugfixes in exit node selection, exit policy handling, and processing pending streams when a new circuit is established. - Pick nodes for a path only from those the directory says are up - Choose randomly from all running dirservers, not always the first one - Increase allowed http header size for directory fetch. - Stop writing to stderr (if we're daemonized it will be closed). - Enable -g always, so cores will be more useful to me. - Switch "-lcrypto -lssl" to "-lssl -lcrypto" for broken distributions. o Documentation: - Wrote a man page. It lists commonly used options. o Configuration: - Change default loglevel to warn. - Make PidFile default to null rather than littering in your CWD. - OnionRouter config option is now obsolete. Instead it just checks ORPort>0. - Moved to a single unified torrc file for both clients and servers. Changes in version 0.0.2pre14 - 2003-11-29 o Robustness and bugfixes: - Force the admin to make the DataDirectory himself - to get ownership/permissions right - so clients no longer make a DataDirectory and then never use it - fix bug where a client who was offline for 45 minutes would never pull down a directory again - fix (or at least hide really well) the dns assert bug that was causing server crashes - warnings and improved robustness wrt clockskew for certs - use the native daemon(3) to daemonize, when available - exit if bind() fails - exit if neither socksport nor orport is defined - include our own tor_timegm (Win32 doesn't have its own) - bugfix for win32 with lots of connections - fix minor bias in PRNG - make dirserver more robust to corrupt cached directory o Documentation: - Wrote the design document (woo) o Circuit building and exit policies: - Circuits no longer try to use nodes that the directory has told them are down. - Exit policies now support bitmasks (18.0.0.0/255.0.0.0) and bitcounts (18.0.0.0/8). - Make AP connections standby for a circuit if no suitable circuit exists, rather than failing - Circuits choose exit node based on addr/port, exit policies, and which AP connections are standing by - Bump min pathlen from 2 to 3 - Relay end cells have a payload to describe why the stream ended. - If the stream failed because of exit policy, try again with a new circuit. - Clients have a dns cache to remember resolved addresses. - Notice more quickly when we have no working circuits o Configuration: - APPort is now called SocksPort - SocksBindAddress, ORBindAddress, DirBindAddress let you configure where to bind - RecommendedVersions is now a config variable rather than hardcoded (for dirservers) - Reloads config on HUP - Usage info on -h or --help - If you set User and Group config vars, it'll setu/gid to them. Changes in version 0.0.2pre13 - 2003-10-19 o General stability: - SSL_write no longer fails when it returns WANTWRITE and the number of bytes in the buf has changed by the next SSL_write call. - Fix segfault fetching directory when network is down - Fix a variety of minor memory leaks - Dirservers reload the fingerprints file on HUP, so I don't have to take down the network when I approve a new router - Default server config file has explicit Address line to specify fqdn o Buffers: - Buffers grow and shrink as needed (Cut process size from 20M to 2M) - Make listener connections not ever alloc bufs o Autoconf improvements: - don't clobber an external CFLAGS in ./configure - Make install now works - create var/lib/tor on make install - autocreate a tor.sh initscript to help distribs - autocreate the torrc and sample-server-torrc with correct paths o Log files and Daemonizing now work: - If --DebugLogFile is specified, log to it at -l debug - If --LogFile is specified, use it instead of commandline - If --RunAsDaemon is set, tor forks and backgrounds on startup tor-0.2.7.6/configure.ac0000644000175000017500000014535112632313415011710 00000000000000dnl Copyright (c) 2001-2004, Roger Dingledine dnl Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson dnl Copyright (c) 2007-2015, The Tor Project, Inc. dnl See LICENSE for licensing information AC_INIT([tor],[0.2.7.6]) AC_CONFIG_SRCDIR([src/or/main.c]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AC_CONFIG_HEADERS([orconfig.h]) AC_CANONICAL_HOST PKG_PROG_PKG_CONFIG if test -f /etc/redhat-release ; then if test -f /usr/kerberos/include ; then CPPFLAGS="$CPPFLAGS -I/usr/kerberos/include" fi fi # Not a no-op; we want to make sure that CPPFLAGS is set before we use # the += operator on it in src/or/Makefile.am CPPFLAGS="$CPPFLAGS -I\${top_srcdir}/src/common" #XXXX020 We should make these enabled or not, before 0.2.0.x-final AC_ARG_ENABLE(openbsd-malloc, AS_HELP_STRING(--enable-openbsd-malloc, [use malloc code from OpenBSD. Linux only])) AC_ARG_ENABLE(instrument-downloads, AS_HELP_STRING(--enable-instrument-downloads, [instrument downloads of directory resources etc.])) AC_ARG_ENABLE(static-openssl, AS_HELP_STRING(--enable-static-openssl, [link against a static openssl library. Requires --with-openssl-dir])) AC_ARG_ENABLE(static-libevent, AS_HELP_STRING(--enable-static-libevent, [link against a static libevent library. Requires --with-libevent-dir])) AC_ARG_ENABLE(static-zlib, AS_HELP_STRING(--enable-static-zlib, [link against a static zlib library. Requires --with-zlib-dir])) AC_ARG_ENABLE(static-tor, AS_HELP_STRING(--enable-static-tor, [create an entirely static Tor binary. Requires --with-openssl-dir and --with-libevent-dir and --with-zlib-dir])) AC_ARG_ENABLE(unittests, AS_HELP_STRING(--disable-unittests, [don't build unit tests for Tor. Risky!])) AC_ARG_ENABLE(coverage, AS_HELP_STRING(--enable-coverage, [enable coverage support in the unit-test build])) AC_ARG_ENABLE(system-torrc, AS_HELP_STRING(--disable-system-torrc, [don't look for a system-wide torrc file])) AM_CONDITIONAL(UNITTESTS_ENABLED, test x$enable_unittests != xno) AM_CONDITIONAL(COVERAGE_ENABLED, test x$enable_coverage = xyes) if test "$enable_static_tor" = "yes"; then enable_static_libevent="yes"; enable_static_openssl="yes"; enable_static_zlib="yes"; CFLAGS="$CFLAGS -static" fi if test "$enable_system_torrc" = "no"; then AC_DEFINE(DISABLE_SYSTEM_TORRC, 1, [Defined if we're not going to look for a torrc in SYSCONF]) fi AM_CONDITIONAL(USE_OPENBSD_MALLOC, test x$enable_openbsd_malloc = xyes) if test x$enable_instrument_downloads = xyes; then AC_DEFINE(INSTRUMENT_DOWNLOADS, 1, [Defined if we want to keep track of how much of each kind of resource we download.]) fi AC_ARG_ENABLE(transparent, AS_HELP_STRING(--disable-transparent, [disable transparent proxy support]), [case "${enableval}" in yes) transparent=true ;; no) transparent=false ;; *) AC_MSG_ERROR(bad value for --enable-transparent) ;; esac], [transparent=true]) AC_ARG_ENABLE(asciidoc, AS_HELP_STRING(--disable-asciidoc, [don't use asciidoc (disables building of manpages)]), [case "${enableval}" in yes) asciidoc=true ;; no) asciidoc=false ;; *) AC_MSG_ERROR(bad value for --disable-asciidoc) ;; esac], [asciidoc=true]) # systemd notify support AC_ARG_ENABLE(systemd, AS_HELP_STRING(--enable-systemd, [enable systemd notification support]), [case "${enableval}" in yes) systemd=true ;; no) systemd=false ;; * ) AC_MSG_ERROR(bad value for --enable-systemd) ;; esac], [systemd=auto]) # systemd support if test x$enable_systemd = xno ; then have_systemd=no; else PKG_CHECK_MODULES(SYSTEMD, [libsystemd-daemon], have_systemd=yes, have_systemd=no) if test x$have_systemd=xno; then AC_MSG_NOTICE([Okay, checking for systemd a different way...]) PKG_CHECK_MODULES(SYSTEMD, [libsystemd], have_systemd=yes, have_systemd=no) fi fi if test x$have_systemd = xyes; then AC_DEFINE(HAVE_SYSTEMD,1,[Have systemd]) TOR_SYSTEMD_CFLAGS="${SYSTEMD_CFLAGS}" TOR_SYSTEMD_LIBS="${SYSTEMD_LIBS}" PKG_CHECK_MODULES(LIBSYSTEMD209, [libsystemd >= 209], [AC_DEFINE(HAVE_SYSTEMD_209,1,[Have systemd v209 or more])], []) fi AC_SUBST(TOR_SYSTEMD_CFLAGS) AC_SUBST(TOR_SYSTEMD_LIBS) if test x$enable_systemd = xyes -a x$have_systemd != xyes ; then AC_MSG_ERROR([Explicitly requested systemd support, but systemd not found]) fi case $host in *-*-solaris* ) AC_DEFINE(_REENTRANT, 1, [Define on some platforms to activate x_r() functions in time.h]) ;; esac AC_ARG_ENABLE(gcc-warnings, AS_HELP_STRING(--enable-gcc-warnings, [enable verbose warnings])) AC_ARG_ENABLE(gcc-warnings-advisory, AS_HELP_STRING(--enable-gcc-warnings-advisory, [enable verbose warnings, excluding -Werror])) dnl Others suggest '/gs /safeseh /nxcompat /dynamicbase' for non-gcc on Windows AC_ARG_ENABLE(gcc-hardening, AS_HELP_STRING(--disable-gcc-hardening, [disable compiler security checks])) AC_ARG_ENABLE(expensive-hardening, AS_HELP_STRING(--enable-expensive-hardening, [enable more expensive compiler hardening; makes Tor slower])) dnl Linker hardening options dnl Currently these options are ELF specific - you can't use this with MacOSX AC_ARG_ENABLE(linker-hardening, AS_HELP_STRING(--disable-linker-hardening, [disable linker security fixups])) AC_ARG_ENABLE(local-appdata, AS_HELP_STRING(--enable-local-appdata, [default to host local application data paths on Windows])) if test "$enable_local_appdata" = "yes"; then AC_DEFINE(ENABLE_LOCAL_APPDATA, 1, [Defined if we default to host local appdata paths on Windows]) fi # Tor2web mode flag AC_ARG_ENABLE(tor2web-mode, AS_HELP_STRING(--enable-tor2web-mode, [support tor2web non-anonymous mode]), [if test x$enableval = xyes; then CFLAGS="$CFLAGS -D ENABLE_TOR2WEB_MODE=1" fi]) AC_ARG_ENABLE(bufferevents, AS_HELP_STRING(--enable-bufferevents, [use Libevent's buffered IO])) AC_ARG_ENABLE(tool-name-check, AS_HELP_STRING(--disable-tool-name-check, [check for sanely named toolchain when cross-compiling])) AC_ARG_ENABLE(seccomp, AS_HELP_STRING(--disable-seccomp, [do not attempt to use libseccomp])) AC_ARG_ENABLE(libscrypt, AS_HELP_STRING(--disable-libscrypt, [do not attempt to use libscrypt])) dnl check for the correct "ar" when cross-compiling AN_MAKEVAR([AR], [AC_PROG_AR]) AN_PROGRAM([ar], [AC_PROG_AR]) AC_DEFUN([AC_PROG_AR], [AC_CHECK_TOOL([AR], [ar], [ar])]) AC_PROG_AR dnl Check whether the above macro has settled for a simply named tool even dnl though we're cross compiling. We must do this before running AC_PROG_CC, dnl because that will find any cc on the system, not only the cross-compiler, dnl and then verify that a binary built with this compiler runs on the dnl build system. It will then come to the false conclusion that we're not dnl cross-compiling. if test x$enable_tool_name_check != xno; then if test x$ac_tool_warned = xyes; then AC_MSG_ERROR([We are cross compiling but could not find a properly named toolchain. Do you have your cross-compiling toolchain in PATH? (You can --disable-tool-name-check to ignore this.)]) elif test "x$ac_ct_AR" != x -a x$cross_compiling = xmaybe; then AC_MSG_ERROR([We think we are cross compiling but could not find a properly named toolchain. Do you have your cross-compiling toolchain in PATH? (You can --disable-tool-name-check to ignore this.)]) fi fi AC_PROG_CC AC_PROG_CPP AC_PROG_MAKE_SET AC_PROG_RANLIB AC_PATH_PROG([PERL], [perl]) dnl autoconf 2.59 appears not to support AC_PROG_SED AC_CHECK_PROG([SED],[sed],[sed],[/bin/false]) dnl check for asciidoc and a2x AC_PATH_PROG([ASCIIDOC], [asciidoc], none) AC_PATH_PROGS([A2X], [a2x a2x.py], none) AM_CONDITIONAL(USE_ASCIIDOC, test x$asciidoc = xtrue) AM_CONDITIONAL(USE_FW_HELPER, test x$natpmp = xtrue || test x$upnp = xtrue) AM_CONDITIONAL(NAT_PMP, test x$natpmp = xtrue) AM_CONDITIONAL(MINIUPNPC, test x$upnp = xtrue) AM_PROG_CC_C_O AC_PROG_CC_C99 AC_ARG_VAR([PYTHON], [path to Python binary]) AC_CHECK_PROGS(PYTHON, [python python2 python2.7 python3 python3.3]) if test "x$PYTHON" = "x"; then AC_MSG_WARN([Python unavailable; some tests will not be run.]) fi AM_CONDITIONAL(USEPYTHON, [test "x$PYTHON" != "x"]) ifdef([AC_C_FLEXIBLE_ARRAY_MEMBER], [ AC_C_FLEXIBLE_ARRAY_MEMBER ], [ dnl Maybe we've got an old autoconf... AC_CACHE_CHECK([for flexible array members], tor_cv_c_flexarray, [AC_COMPILE_IFELSE( AC_LANG_PROGRAM([ struct abc { int a; char b[]; }; ], [ struct abc *def = malloc(sizeof(struct abc)+sizeof(char)); def->b[0] = 33; ]), [tor_cv_c_flexarray=yes], [tor_cv_c_flexarray=no])]) if test $tor_cv_flexarray = yes ; then AC_DEFINE([FLEXIBLE_ARRAY_MEMBER], [], [Define to nothing if C supports flexible array members, and to 1 if it does not.]) else AC_DEFINE([FLEXIBLE_ARRAY_MEMBER], [1], [Define to nothing if C supports flexible array members, and to 1 if it does not.]) fi ]) AC_CACHE_CHECK([for working C99 mid-block declaration syntax], tor_cv_c_c99_decl, [AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([], [int x; x = 3; int y; y = 4 + x;])], [tor_cv_c_c99_decl=yes], [tor_cv_c_c99_decl=no] )]) if test "$tor_cv_c_c99_decl" != "yes"; then AC_MSG_ERROR([Your compiler doesn't support c99 mid-block declarations. This is required as of Tor 0.2.6.x]) fi AC_CACHE_CHECK([for working C99 designated initializers], tor_cv_c_c99_designated_init, [AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([struct s { int a; int b; };], [[ struct s ss = { .b = 5, .a = 6 }; ]])], [tor_cv_c_c99_designated_init=yes], [tor_cv_c_c99_designated_init=no] )]) if test "$tor_cv_c_c99_designated_init" != "yes"; then AC_MSG_ERROR([Your compiler doesn't support c99 designated initializers. This is required as of Tor 0.2.6.x]) fi TORUSER=_tor AC_ARG_WITH(tor-user, AS_HELP_STRING(--with-tor-user=NAME, [specify username for tor daemon]), [ TORUSER=$withval ] ) AC_SUBST(TORUSER) TORGROUP=_tor AC_ARG_WITH(tor-group, AS_HELP_STRING(--with-tor-group=NAME, [specify group name for tor daemon]), [ TORGROUP=$withval ] ) AC_SUBST(TORGROUP) dnl If _WIN32 is defined and non-zero, we are building for win32 AC_MSG_CHECKING([for win32]) AC_RUN_IFELSE([AC_LANG_SOURCE([ int main(int c, char **v) { #ifdef _WIN32 #if _WIN32 return 0; #else return 1; #endif #else return 2; #endif }])], bwin32=true; AC_MSG_RESULT([yes]), bwin32=false; AC_MSG_RESULT([no]), bwin32=cross; AC_MSG_RESULT([cross]) ) if test "$bwin32" = cross; then AC_MSG_CHECKING([for win32 (cross)]) AC_COMPILE_IFELSE([AC_LANG_SOURCE([ #ifdef _WIN32 int main(int c, char **v) {return 0;} #else #error int main(int c, char **v) {return x(y);} #endif ])], bwin32=true; AC_MSG_RESULT([yes]), bwin32=false; AC_MSG_RESULT([no])) fi AH_BOTTOM([ #ifdef _WIN32 /* Defined to access windows functions and definitions for >=WinXP */ # ifndef WINVER # define WINVER 0x0501 # endif /* Defined to access _other_ windows functions and definitions for >=WinXP */ # ifndef _WIN32_WINNT # define _WIN32_WINNT 0x0501 # endif /* Defined to avoid including some windows headers as part of Windows.h */ # ifndef WIN32_LEAN_AND_MEAN # define WIN32_LEAN_AND_MEAN 1 # endif #endif ]) AM_CONDITIONAL(BUILD_NT_SERVICES, test x$bwin32 = xtrue) dnl Enable C99 when compiling with MIPSpro AC_MSG_CHECKING([for MIPSpro compiler]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM(, [ #if (defined(__sgi) && defined(_COMPILER_VERSION)) #error return x(y); #endif ])], bmipspro=false; AC_MSG_RESULT(no), bmipspro=true; AC_MSG_RESULT(yes)) if test "$bmipspro" = true; then CFLAGS="$CFLAGS -c99" fi AC_C_BIGENDIAN AC_SEARCH_LIBS(socket, [socket network]) AC_SEARCH_LIBS(gethostbyname, [nsl]) AC_SEARCH_LIBS(dlopen, [dl]) AC_SEARCH_LIBS(inet_aton, [resolv]) AC_SEARCH_LIBS(backtrace, [execinfo]) saved_LIBS="$LIBS" AC_SEARCH_LIBS([clock_gettime], [rt]) if test "$LIBS" != "$saved_LIBS"; then # Looks like we need -lrt for clock_gettime(). have_rt=yes fi AC_SEARCH_LIBS(pthread_create, [pthread]) AC_SEARCH_LIBS(pthread_detach, [pthread]) AM_CONDITIONAL(THREADS_WIN32, test "$bwin32" = "true") AM_CONDITIONAL(THREADS_PTHREADS, test "$bwin32" = "false") dnl ------------------------------------------------------------------- dnl Check for functions before libevent, since libevent-1.2 apparently dnl exports strlcpy without defining it in a header. AC_CHECK_FUNCS( _NSGetEnviron \ accept4 \ backtrace \ backtrace_symbols_fd \ clock_gettime \ eventfd \ flock \ ftime \ getaddrinfo \ getifaddrs \ getpass \ getrlimit \ gettimeofday \ gmtime_r \ inet_aton \ ioctl \ issetugid \ llround \ localtime_r \ lround \ memmem \ pipe \ pipe2 \ prctl \ readpassphrase \ rint \ sigaction \ socketpair \ statvfs \ strlcat \ strlcpy \ strnlen \ strptime \ strtok_r \ strtoull \ sysconf \ sysctl \ uname \ usleep \ vasprintf \ _vscprintf ) if test "$bwin32" != true; then AC_CHECK_HEADERS(pthread.h) AC_CHECK_FUNCS(pthread_create) fi if test "$bwin32" = true; then AC_CHECK_DECLS([SecureZeroMemory, _getwch], , , [ #include #include #include ]) fi AM_CONDITIONAL(BUILD_READPASSPHRASE_C, test x$ac_cv_func_readpassphrase = xno && test $bwin32 = false) dnl ------------------------------------------------------ dnl Where do you live, libevent? And how do we call you? if test "$bwin32" = true; then TOR_LIB_WS32=-lws2_32 TOR_LIB_IPHLPAPI=-liphlpapi # Some of the cargo-cults recommend -lwsock32 as well, but I don't # think it's actually necessary. TOR_LIB_GDI=-lgdi32 else TOR_LIB_WS32= TOR_LIB_GDI= fi AC_SUBST(TOR_LIB_WS32) AC_SUBST(TOR_LIB_GDI) AC_SUBST(TOR_LIB_IPHLPAPI) tor_libevent_pkg_redhat="libevent" tor_libevent_pkg_debian="libevent-dev" tor_libevent_devpkg_redhat="libevent-devel" tor_libevent_devpkg_debian="libevent-dev" dnl On Gnu/Linux or any place we require it, we'll add librt to the Libevent dnl linking for static builds. STATIC_LIBEVENT_FLAGS="" if test "$enable_static_libevent" = "yes"; then if test "$have_rt" = yes; then STATIC_LIBEVENT_FLAGS=" -lrt " fi fi TOR_SEARCH_LIBRARY(libevent, $trylibeventdir, [-levent $STATIC_LIBEVENT_FLAGS $TOR_LIB_WS32], [ #ifdef _WIN32 #include #endif #include #include #include #include ], [ #ifdef _WIN32 #include #endif void exit(int); void *event_init(void);], [ #ifdef _WIN32 {WSADATA d; WSAStartup(0x101,&d); } #endif event_init(); exit(0); ], [--with-libevent-dir], [/opt/libevent]) dnl Now check for particular libevent functions. save_LIBS="$LIBS" save_LDFLAGS="$LDFLAGS" save_CPPFLAGS="$CPPFLAGS" LIBS="-levent $STATIC_LIBEVENT_FLAGS $TOR_LIB_WS32 $LIBS" LDFLAGS="$TOR_LDFLAGS_libevent $LDFLAGS" CPPFLAGS="$TOR_CPPFLAGS_libevent $CPPFLAGS" AC_CHECK_FUNCS([event_get_version_number \ evutil_secure_rng_set_urandom_device_file \ evutil_secure_rng_init \ ]) AC_CHECK_MEMBERS([struct event.min_heap_idx], , , [#include ]) AC_CHECK_HEADERS(event2/event.h event2/dns.h event2/bufferevent_ssl.h) LIBS="$save_LIBS" LDFLAGS="$save_LDFLAGS" CPPFLAGS="$save_CPPFLAGS" AM_CONDITIONAL(USE_EXTERNAL_EVDNS, test x$ac_cv_header_event2_dns_h = xyes) if test "$enable_static_libevent" = "yes"; then if test "$tor_cv_library_libevent_dir" = "(system)"; then AC_MSG_ERROR("You must specify an explicit --with-libevent-dir=x option when using --enable-static-libevent") else TOR_LIBEVENT_LIBS="$TOR_LIBDIR_libevent/libevent.a $STATIC_LIBEVENT_FLAGS" fi else TOR_LIBEVENT_LIBS="-levent" fi dnl This isn't the best test for Libevent 2.0.3-alpha. Once it's released, dnl we can do much better. if test "$enable_bufferevents" = "yes" ; then if test "$ac_cv_header_event2_bufferevent_ssl_h" != "yes" ; then AC_MSG_ERROR([You've asked for bufferevent support, but you're using a version of Libevent without SSL support. This won't work. We need Libevent 2.0.8-rc or later, and you don't seem to even have Libevent 2.0.3-alpha.]) else CPPFLAGS="$CPPFLAGS $TOR_CPPFLAGS_libevent" # Check for the right version. First see if version detection works. AC_MSG_CHECKING([whether we can detect the Libevent version]) AC_COMPILE_IFELSE([AC_LANG_SOURCE([ #include #if !defined(LIBEVENT_VERSION_NUMBER) || LIBEVENT_VERSION_NUMBER < 10 #error int x = y(zz); #else int x = 1; #endif ])], [event_version_number_works=yes; AC_MSG_RESULT([yes]) ], [event_version_number_works=no; AC_MSG_RESULT([no])]) if test "$event_version_number_works" != 'yes'; then AC_MSG_WARN([Version detection on Libevent seems broken. Your Libevent installation is probably screwed up or very old.]) else AC_MSG_CHECKING([whether Libevent is new enough for bufferevents]) AC_COMPILE_IFELSE([AC_LANG_SOURCE([ #include #if !defined(LIBEVENT_VERSION_NUMBER) || LIBEVENT_VERSION_NUMBER < 0x02000d00 #error int x = y(zz); #else int x = 1; #endif ])], [ AC_MSG_RESULT([yes]) ], [ AC_MSG_RESULT([no]) AC_MSG_ERROR([Libevent does not seem new enough to support bufferevents. We require 2.0.13-stable or later]) ] ) fi fi fi LIBS="$save_LIBS" LDFLAGS="$save_LDFLAGS" CPPFLAGS="$save_CPPFLAGS" AM_CONDITIONAL(USE_BUFFEREVENTS, test "$enable_bufferevents" = "yes") if test "$enable_bufferevents" = "yes"; then AC_DEFINE(USE_BUFFEREVENTS, 1, [Defined if we're going to use Libevent's buffered IO API]) if test "$enable_static_libevent" = "yes"; then TOR_LIBEVENT_LIBS="$TOR_LIBDIR_libevent/libevent_openssl.a $TOR_LIBEVENT_LIBS" else TOR_LIBEVENT_LIBS="-levent_openssl $TOR_LIBEVENT_LIBS" fi fi AC_SUBST(TOR_LIBEVENT_LIBS) dnl ------------------------------------------------------ dnl Where do you live, libm? dnl On some platforms (Haiku/BeOS) the math library is dnl part of libroot. In which case don't link against lm TOR_LIB_MATH="" save_LIBS="$LIBS" AC_SEARCH_LIBS(pow, [m], , AC_MSG_ERROR([Could not find pow in libm or libc.])) if test "$ac_cv_search_pow" != "none required"; then TOR_LIB_MATH="$ac_cv_search_pow" fi LIBS="$save_LIBS" AC_SUBST(TOR_LIB_MATH) dnl ------------------------------------------------------ dnl Where do you live, openssl? And how do we call you? tor_openssl_pkg_redhat="openssl" tor_openssl_pkg_debian="libssl-dev" tor_openssl_devpkg_redhat="openssl-devel" tor_openssl_devpkg_debian="libssl-dev" ALT_openssl_WITHVAL="" AC_ARG_WITH(ssl-dir, AS_HELP_STRING(--with-ssl-dir=PATH, [obsolete alias for --with-openssl-dir]), [ if test "x$withval" != xno && test "x$withval" != "x" ; then ALT_openssl_WITHVAL="$withval" fi ]) TOR_SEARCH_LIBRARY(openssl, $tryssldir, [-lssl -lcrypto $TOR_LIB_GDI], [#include ], [void RAND_add(const void *buf, int num, double entropy);], [RAND_add((void*)0,0,0); exit(0);], [], [/usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/athena /opt/openssl]) dnl XXXX check for OPENSSL_VERSION_NUMBER == SSLeay() if test "$enable_static_openssl" = "yes"; then if test "$tor_cv_library_openssl_dir" = "(system)"; then AC_MSG_ERROR("You must specify an explicit --with-openssl-dir=x option when using --enable-static-openssl") else TOR_OPENSSL_LIBS="$TOR_LIBDIR_openssl/libssl.a $TOR_LIBDIR_openssl/libcrypto.a" fi else TOR_OPENSSL_LIBS="-lssl -lcrypto" fi AC_SUBST(TOR_OPENSSL_LIBS) dnl Now check for particular openssl functions. save_LIBS="$LIBS" save_LDFLAGS="$LDFLAGS" save_CPPFLAGS="$CPPFLAGS" LIBS="$TOR_OPENSSL_LIBS $LIBS" LDFLAGS="$TOR_LDFLAGS_openssl $LDFLAGS" CPPFLAGS="$TOR_CPPFLAGS_openssl $CPPFLAGS" AC_TRY_COMPILE([ #include #if OPENSSL_VERSION_NUMBER < 0x1000000fL #error "too old" #endif ], [], [ : ], [ AC_ERROR([OpenSSL is too old. We require 1.0.0 or later. You can specify a path to a newer one with --with-openssl-dir.]) ]) AC_TRY_COMPILE([ #include #include #if defined(OPENSSL_NO_EC) || defined(OPENSSL_NO_ECDH) || defined(OPENSSL_NO_ECDSA) #error "no ECC" #endif #if !defined(NID_X9_62_prime256v1) || !defined(NID_secp224r1) #error "curves unavailable" #endif ], [], [ : ], [ AC_ERROR([OpenSSL is built without full ECC support, including curves P256 and P224. You can specify a path to one with ECC support with --with-openssl-dir.]) ]) AC_CHECK_MEMBERS([struct ssl_method_st.get_cipher_by_char], , , [#include ]) AC_CHECK_FUNCS([ \ SSL_SESSION_get_master_key \ SSL_get_server_random \ SSL_get_client_ciphers \ SSL_get_client_random \ SSL_CIPHER_find \ TLS_method ]) dnl Check if OpenSSL has scrypt implementation. AC_CHECK_FUNCS([ EVP_PBE_scrypt ]) LIBS="$save_LIBS" LDFLAGS="$save_LDFLAGS" CPPFLAGS="$save_CPPFLAGS" dnl ------------------------------------------------------ dnl Where do you live, zlib? And how do we call you? tor_zlib_pkg_redhat="zlib" tor_zlib_pkg_debian="zlib1g" tor_zlib_devpkg_redhat="zlib-devel" tor_zlib_devpkg_debian="zlib1g-dev" TOR_SEARCH_LIBRARY(zlib, $tryzlibdir, [-lz], [#include ], [const char * zlibVersion(void);], [zlibVersion(); exit(0);], [--with-zlib-dir], [/opt/zlib]) if test "$enable_static_zlib" = "yes"; then if test "$tor_cv_library_zlib_dir" = "(system)"; then AC_MSG_ERROR("You must specify an explicit --with-zlib-dir=x option when using --enable-static-zlib") else TOR_ZLIB_LIBS="$TOR_LIBDIR_zlib/libz.a" fi else TOR_ZLIB_LIBS="-lz" fi AC_SUBST(TOR_ZLIB_LIBS) dnl --------------------------------------------------------------------- dnl Now that we know about our major libraries, we can check for compiler dnl and linker hardening options. We need to do this with the libraries known, dnl since sometimes the linker will like an option but not be willing to dnl use it with a build of a library. all_ldflags_for_check="$TOR_LDFLAGS_zlib $TOR_LDFLAGS_openssl $TOR_LDFLAGS_libevent" all_libs_for_check="$TOR_ZLIB_LIBS $TOR_LIB_MATH $TOR_LIBEVENT_LIBS $TOR_OPENSSL_LIBS $TOR_SYSTEMD_LIBS $TOR_LIB_WS32 $TOR_LIB_GDI" AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [ #if !defined(__clang__) #error #endif])], have_clang=yes, have_clang=no) if test x$enable_gcc_hardening != xno; then CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2" if test x$have_clang = xyes; then TOR_CHECK_CFLAGS(-Qunused-arguments) fi TOR_CHECK_CFLAGS(-fstack-protector-all, also_link) AS_VAR_PUSHDEF([can_compile], [tor_cv_cflags_-fstack-protector-all]) AS_VAR_PUSHDEF([can_link], [tor_can_link_-fstack-protector-all]) m4_ifdef([AS_VAR_IF],[ AS_VAR_IF(can_compile, [yes], AS_VAR_IF(can_link, [yes], [], AC_MSG_ERROR([We tried to build with stack protection; it looks like your compiler supports it but your libc does not provide it. Are you missing libssp? (You can --disable-gcc-hardening to ignore this error.)])) )]) AS_VAR_POPDEF([can_link]) AS_VAR_POPDEF([can_compile]) TOR_CHECK_CFLAGS(-Wstack-protector) TOR_CHECK_CFLAGS(-fwrapv) TOR_CHECK_CFLAGS(--param ssp-buffer-size=1) if test "$bwin32" = "false"; then TOR_CHECK_CFLAGS(-fPIE) TOR_CHECK_LDFLAGS(-pie, "$all_ldflags_for_check", "$all_libs_for_check") fi fi if test x$enable_expensive_hardening = xyes ; then TOR_CHECK_CFLAGS([-fsanitize=address]) TOR_CHECK_CFLAGS([-fsanitize=undefined]) TOR_CHECK_CFLAGS([-fno-omit-frame-pointer]) fi if test x$enable_linker_hardening != xno; then TOR_CHECK_LDFLAGS(-z relro -z now, "$all_ldflags_for_check", "$all_libs_for_check") fi # For backtrace support TOR_CHECK_LDFLAGS(-rdynamic) dnl ------------------------------------------------------ dnl Now see if we have a -fomit-frame-pointer compiler option. saved_CFLAGS="$CFLAGS" TOR_CHECK_CFLAGS(-fomit-frame-pointer) F_OMIT_FRAME_POINTER='' if test "$saved_CFLAGS" != "$CFLAGS"; then if test x$enable_expensive_hardening != xyes ; then F_OMIT_FRAME_POINTER='-fomit-frame-pointer' fi fi CFLAGS="$saved_CFLAGS" AC_SUBST(F_OMIT_FRAME_POINTER) dnl ------------------------------------------------------ dnl If we are adding -fomit-frame-pointer (or if the compiler's doing it dnl for us, as GCC 4.6 and later do at many optimization levels), then dnl we should try to add -fasynchronous-unwind-tables so that our backtrace dnl code will work. TOR_CHECK_CFLAGS(-fasynchronous-unwind-tables) dnl ============================================================ dnl Check for libseccomp if test "x$enable_seccomp" != "xno"; then AC_CHECK_HEADERS([seccomp.h]) AC_SEARCH_LIBS(seccomp_init, [seccomp]) fi dnl ============================================================ dnl Check for libscrypt if test "x$enable_libscrypt" != "xno"; then AC_CHECK_HEADERS([libscrypt.h]) AC_SEARCH_LIBS(libscrypt_scrypt, [scrypt]) fi dnl ============================================================ dnl We need an implementation of curve25519. dnl set these defaults. build_curve25519_donna=no build_curve25519_donna_c64=no use_curve25519_donna=no use_curve25519_nacl=no CURVE25519_LIBS= dnl The best choice is using curve25519-donna-c64, but that requires dnl that we AC_CACHE_CHECK([whether we can use curve25519-donna-c64], tor_cv_can_use_curve25519_donna_c64, [AC_RUN_IFELSE( [AC_LANG_PROGRAM([dnl #include typedef unsigned uint128_t __attribute__((mode(TI))); int func(uint64_t a, uint64_t b) { uint128_t c = ((uint128_t)a) * b; int ok = ((uint64_t)(c>>96)) == 522859 && (((uint64_t)(c>>64))&0xffffffffL) == 3604448702L && (((uint64_t)(c>>32))&0xffffffffL) == 2351960064L && (((uint64_t)(c))&0xffffffffL) == 0; return ok; } ], [dnl int ok = func( ((uint64_t)2000000000) * 1000000000, ((uint64_t)1234567890) << 24); return !ok; ])], [tor_cv_can_use_curve25519_donna_c64=yes], [tor_cv_can_use_curve25519_donna_c64=no], [AC_LINK_IFELSE( [AC_LANG_PROGRAM([dnl #include typedef unsigned uint128_t __attribute__((mode(TI))); int func(uint64_t a, uint64_t b) { uint128_t c = ((uint128_t)a) * b; int ok = ((uint64_t)(c>>96)) == 522859 && (((uint64_t)(c>>64))&0xffffffffL) == 3604448702L && (((uint64_t)(c>>32))&0xffffffffL) == 2351960064L && (((uint64_t)(c))&0xffffffffL) == 0; return ok; } ], [dnl int ok = func( ((uint64_t)2000000000) * 1000000000, ((uint64_t)1234567890) << 24); return !ok; ])], [tor_cv_can_use_curve25519_donna_c64=cross], [tor_cv_can_use_curve25519_donna_c64=no])])]) AC_CHECK_HEADERS([crypto_scalarmult_curve25519.h \ nacl/crypto_scalarmult_curve25519.h]) AC_CACHE_CHECK([for nacl compiled with a fast curve25519 implementation], tor_cv_can_use_curve25519_nacl, [tor_saved_LIBS="$LIBS" LIBS="$LIBS -lnacl" AC_LINK_IFELSE( [AC_LANG_PROGRAM([dnl #ifdef HAVE_CRYPTO_SCALARMULT_CURVE25519_H #include #elif defined(HAVE_NACL_CRYPTO_SCALARMULT_CURVE25519_H) #include #endif #ifdef crypto_scalarmult_curve25519_ref_BYTES #error Hey, this is the reference implementation! That's not fast. #endif ], [ unsigned char *a, *b, *c; crypto_scalarmult_curve25519(a,b,c); ])], [tor_cv_can_use_curve25519_nacl=yes], [tor_cv_can_use_curve25519_nacl=no]) LIBS="$tor_saved_LIBS" ]) dnl Okay, now we need to figure out which one to actually use. Fall back dnl to curve25519-donna.c if test x$tor_cv_can_use_curve25519_donna_c64 != xno; then build_curve25519_donna_c64=yes use_curve25519_donna=yes elif test x$tor_cv_can_use_curve25519_nacl = xyes; then use_curve25519_nacl=yes CURVE25519_LIBS=-lnacl else build_curve25519_donna=yes use_curve25519_donna=yes fi if test x$use_curve25519_donna = xyes; then AC_DEFINE(USE_CURVE25519_DONNA, 1, [Defined if we should use an internal curve25519_donna{,_c64} implementation]) fi if test x$use_curve25519_nacl = xyes; then AC_DEFINE(USE_CURVE25519_NACL, 1, [Defined if we should use a curve25519 from nacl]) fi AM_CONDITIONAL(BUILD_CURVE25519_DONNA, test x$build_curve25519_donna = xyes) AM_CONDITIONAL(BUILD_CURVE25519_DONNA_C64, test x$build_curve25519_donna_c64 = xyes) AC_SUBST(CURVE25519_LIBS) dnl Make sure to enable support for large off_t if available. AC_SYS_LARGEFILE AC_CHECK_HEADERS( assert.h \ errno.h \ fcntl.h \ signal.h \ string.h \ sys/fcntl.h \ sys/stat.h \ sys/time.h \ sys/types.h \ time.h \ unistd.h , , AC_MSG_WARN(Some headers were not found, compilation may fail. If compilation succeeds, please send your orconfig.h to the developers so we can fix this warning.)) dnl These headers are not essential AC_CHECK_HEADERS( arpa/inet.h \ crt_externs.h \ execinfo.h \ grp.h \ ifaddrs.h \ inttypes.h \ limits.h \ linux/types.h \ machine/limits.h \ malloc.h \ malloc/malloc.h \ malloc_np.h \ netdb.h \ netinet/in.h \ netinet/in6.h \ pwd.h \ readpassphrase.h \ stdint.h \ sys/eventfd.h \ sys/file.h \ sys/ioctl.h \ sys/limits.h \ sys/mman.h \ sys/param.h \ sys/prctl.h \ sys/resource.h \ sys/select.h \ sys/socket.h \ sys/statvfs.h \ sys/sysctl.h \ sys/syslimits.h \ sys/time.h \ sys/types.h \ sys/un.h \ sys/utime.h \ sys/wait.h \ syslog.h \ utime.h ) AC_CHECK_HEADERS(sys/param.h) AC_CHECK_HEADERS(net/if.h, net_if_found=1, net_if_found=0, [#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif]) AC_CHECK_HEADERS(net/pfvar.h, net_pfvar_found=1, net_pfvar_found=0, [#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef HAVE_NET_IF_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif]) AC_CHECK_HEADERS(linux/if.h,[],[], [ #ifdef HAVE_SYS_SOCKET_H #include #endif ]) AC_CHECK_HEADERS(linux/netfilter_ipv4.h, linux_netfilter_ipv4=1, linux_netfilter_ipv4=0, [#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef HAVE_LIMITS_H #include #endif #ifdef HAVE_LINUX_TYPES_H #include #endif #ifdef HAVE_NETINET_IN6_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif]) AC_CHECK_HEADERS(linux/netfilter_ipv6/ip6_tables.h, linux_netfilter_ipv6_ip6_tables=1, linux_netfilter_ipv6_ip6_tables=0, [#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef HAVE_LIMITS_H #include #endif #ifdef HAVE_LINUX_TYPES_H #include #endif #ifdef HAVE_NETINET_IN6_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif #ifdef HAVE_LINUX_IF_H #include #endif]) if test x$transparent = xtrue ; then transparent_ok=0 if test x$net_if_found = x1 && test x$net_pfvar_found = x1 ; then transparent_ok=1 fi if test x$linux_netfilter_ipv4 = x1 ; then transparent_ok=1 fi if test x$linux_netfilter_ipv6_ip6_tables = x1 ; then transparent_ok=1 fi if test x$transparent_ok = x1 ; then AC_DEFINE(USE_TRANSPARENT, 1, "Define to enable transparent proxy support") case $host in *-*-openbsd* | *-*-bitrig*) AC_DEFINE(OPENBSD, 1, "Define to handle pf on OpenBSD properly") ;; esac else AC_MSG_NOTICE([Transparent proxy support enabled, but missing headers.]) fi fi AC_CHECK_MEMBERS([struct timeval.tv_sec], , , [#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_TIME_H #include #endif]) dnl In case we aren't given a working stdint.h, we'll need to grow our own. dnl Watch out. AC_CHECK_SIZEOF(int8_t) AC_CHECK_SIZEOF(int16_t) AC_CHECK_SIZEOF(int32_t) AC_CHECK_SIZEOF(int64_t) AC_CHECK_SIZEOF(uint8_t) AC_CHECK_SIZEOF(uint16_t) AC_CHECK_SIZEOF(uint32_t) AC_CHECK_SIZEOF(uint64_t) AC_CHECK_SIZEOF(intptr_t) AC_CHECK_SIZEOF(uintptr_t) dnl AC_CHECK_TYPES([int8_t, int16_t, int32_t, int64_t, uint8_t, uint16_t, uint32_t, uint64_t, intptr_t, uintptr_t]) AC_CHECK_SIZEOF(char) AC_CHECK_SIZEOF(short) AC_CHECK_SIZEOF(int) AC_CHECK_SIZEOF(long) AC_CHECK_SIZEOF(long long) AC_CHECK_SIZEOF(__int64) AC_CHECK_SIZEOF(void *) AC_CHECK_SIZEOF(time_t) AC_CHECK_SIZEOF(size_t) AC_CHECK_SIZEOF(pid_t) AC_CHECK_TYPES([uint, u_char, ssize_t]) AC_PC_FROM_UCONTEXT([:]) dnl used to include sockaddr_storage, but everybody has that. AC_CHECK_TYPES([struct in6_addr, struct sockaddr_in6, sa_family_t], , , [#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif #ifdef HAVE_NETINET_IN6_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef _WIN32 #define _WIN32_WINNT 0x0501 #define WIN32_LEAN_AND_MEAN #include #include #endif ]) AC_CHECK_MEMBERS([struct in6_addr.s6_addr32, struct in6_addr.s6_addr16, struct sockaddr_in.sin_len, struct sockaddr_in6.sin6_len], , , [#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif #ifdef HAVE_NETINET_IN6_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef _WIN32 #define _WIN32_WINNT 0x0501 #define WIN32_LEAN_AND_MEAN #include #include #endif #endif ]) AC_CHECK_TYPES([rlim_t], , , [#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_TIME_H #include #endif #ifdef HAVE_SYS_RESOURCE_H #include #endif ]) AX_CHECK_SIGN([time_t], [ AC_DEFINE(TIME_T_IS_SIGNED, 1, [Define if time_t is signed]) ], [ : ], [ #ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_TIME_H #include #endif #ifdef HAVE_TIME_H #include #endif ]) if test "$ax_cv_decl_time_t_signed" = no; then AC_MSG_WARN([You have an unsigned time_t; some things will probably break. Please tell the Tor developers about your interesting platform.]) fi AX_CHECK_SIGN([size_t], [ tor_cv_size_t_signed=yes ], [ tor_cv_size_t_signed=no ], [ #ifdef HAVE_SYS_TYPES_H #include #endif ]) if test "$ax_cv_decl_size_t_signed" = yes; then AC_MSG_ERROR([You have a signed size_t; that's grossly nonconformant.]) fi AX_CHECK_SIGN([enum always], [ AC_DEFINE(ENUM_VALS_ARE_SIGNED, 1, [Define if enum is always signed]) ], [ : ], [ enum always { AAA, BBB, CCC }; ]) AC_CHECK_SIZEOF(socklen_t, , [AC_INCLUDES_DEFAULT() #ifdef HAVE_SYS_SOCKET_H #include #endif ]) # We want to make sure that we _don't_ have a cell_t defined, like IRIX does. AC_CHECK_SIZEOF(cell_t) # Now make sure that NULL can be represented as zero bytes. AC_CACHE_CHECK([whether memset(0) sets pointers to NULL], tor_cv_null_is_zero, [AC_RUN_IFELSE([AC_LANG_SOURCE( [[#include #include #include #ifdef HAVE_STDDEF_H #include #endif int main () { char *p1,*p2; p1=NULL; memset(&p2,0,sizeof(p2)); return memcmp(&p1,&p2,sizeof(char*))?1:0; }]])], [tor_cv_null_is_zero=yes], [tor_cv_null_is_zero=no], [tor_cv_null_is_zero=cross])]) if test "$tor_cv_null_is_zero" = cross ; then # Cross-compiling; let's hope that the target isn't raving mad. AC_MSG_NOTICE([Cross-compiling: we'll assume that NULL is represented as a sequence of 0-valued bytes.]) fi if test "$tor_cv_null_is_zero" != no; then AC_DEFINE([NULL_REP_IS_ZERO_BYTES], 1, [Define to 1 iff memset(0) sets pointers to NULL]) fi AC_CACHE_CHECK([whether memset(0) sets doubles to 0.0], tor_cv_dbl0_is_zero, [AC_RUN_IFELSE([AC_LANG_SOURCE( [[#include #include #include #ifdef HAVE_STDDEF_H #include #endif int main () { double d1,d2; d1=0; memset(&d2,0,sizeof(d2)); return memcmp(&d1,&d2,sizeof(d1))?1:0; }]])], [tor_cv_dbl0_is_zero=yes], [tor_cv_dbl0_is_zero=no], [tor_cv_dbl0_is_zero=cross])]) if test "$tor_cv_dbl0_is_zero" = cross ; then # Cross-compiling; let's hope that the target isn't raving mad. AC_MSG_NOTICE([Cross-compiling: we'll assume that 0.0 can be represented as a sequence of 0-valued bytes.]) fi if test "$tor_cv_dbl0_is_zero" != no; then AC_DEFINE([DOUBLE_0_REP_IS_ZERO_BYTES], 1, [Define to 1 iff memset(0) sets doubles to 0.0]) fi # And what happens when we malloc zero? AC_CACHE_CHECK([whether we can malloc(0) safely.], tor_cv_malloc_zero_works, [AC_RUN_IFELSE([AC_LANG_SOURCE( [[#include #include #include #ifdef HAVE_STDDEF_H #include #endif int main () { return malloc(0)?0:1; }]])], [tor_cv_malloc_zero_works=yes], [tor_cv_malloc_zero_works=no], [tor_cv_malloc_zero_works=cross])]) if test "$tor_cv_malloc_zero_works" = cross; then # Cross-compiling; let's hope that the target isn't raving mad. AC_MSG_NOTICE([Cross-compiling: we'll assume that we need to check malloc() arguments for 0.]) fi if test "$tor_cv_malloc_zero_works" = yes; then AC_DEFINE([MALLOC_ZERO_WORKS], 1, [Define to 1 iff malloc(0) returns a pointer]) fi # whether we seem to be in a 2s-complement world. AC_CACHE_CHECK([whether we are using 2s-complement arithmetic], tor_cv_twos_complement, [AC_RUN_IFELSE([AC_LANG_SOURCE( [[int main () { int problem = ((-99) != (~99)+1); return problem ? 1 : 0; }]])], [tor_cv_twos_complement=yes], [tor_cv_twos_complement=no], [tor_cv_twos_complement=cross])]) if test "$tor_cv_twos_complement" = cross ; then # Cross-compiling; let's hope that the target isn't raving mad. AC_MSG_NOTICE([Cross-compiling: we'll assume that negative integers are represented with two's complement.]) fi if test "$tor_cv_twos_complement" != no ; then AC_DEFINE([USING_TWOS_COMPLEMENT], 1, [Define to 1 iff we represent negative integers with two's complement]) fi # What does shifting a negative value do? AC_CACHE_CHECK([whether right-shift on negative values does sign-extension], tor_cv_sign_extend, [AC_RUN_IFELSE([AC_LANG_SOURCE( [[int main () { int okay = (-60 >> 8) == -1; return okay ? 0 : 1; }]])], [tor_cv_sign_extend=yes], [tor_cv_sign_extend=no], [tor_cv_sign_extend=cross])]) if test "$tor_cv_sign_extend" = cross ; then # Cross-compiling; let's hope that the target isn't raving mad. AC_MSG_NOTICE([Cross-compiling: we'll assume that right-shifting negative integers causes sign-extension]) fi if test "$tor_cv_sign_extend" != no ; then AC_DEFINE([RSHIFT_DOES_SIGN_EXTEND], 1, [Define to 1 iff right-shifting a negative value performs sign-extension]) fi # Whether we should use the dmalloc memory allocation debugging library. AC_MSG_CHECKING(whether to use dmalloc (debug memory allocation library)) AC_ARG_WITH(dmalloc, AS_HELP_STRING(--with-dmalloc, [use debug memory allocation library]), [if [[ "$withval" = "yes" ]]; then dmalloc=1 AC_MSG_RESULT(yes) else dmalloc=1 AC_MSG_RESULT(no) fi], [ dmalloc=0; AC_MSG_RESULT(no) ] ) if [[ $dmalloc -eq 1 ]]; then AC_CHECK_HEADERS(dmalloc.h, , AC_MSG_ERROR(dmalloc header file not found. Do you have the development files for dmalloc installed?)) AC_SEARCH_LIBS(dmalloc_malloc, [dmallocth dmalloc], , AC_MSG_ERROR(Libdmalloc library not found. If you enable it you better have it installed.)) AC_DEFINE(USE_DMALLOC, 1, [Debug memory allocation library]) AC_CHECK_FUNCS(dmalloc_strdup dmalloc_strndup) fi AC_ARG_WITH(tcmalloc, AS_HELP_STRING(--with-tcmalloc, [use tcmalloc memory allocation library]), [ tcmalloc=yes ], [ tcmalloc=no ]) if test x$tcmalloc = xyes ; then LDFLAGS="-ltcmalloc $LDFLAGS" fi using_custom_malloc=no if test x$enable_openbsd_malloc = xyes ; then using_custom_malloc=yes fi if test x$tcmalloc = xyes ; then using_custom_malloc=yes fi if test $using_custom_malloc = no ; then AC_CHECK_FUNCS(mallinfo) fi # By default, we're going to assume we don't have mlockall() # bionic and other platforms have various broken mlockall subsystems. # Some systems don't have a working mlockall, some aren't linkable, # and some have it but don't declare it. AC_CHECK_FUNCS(mlockall) AC_CHECK_DECLS([mlockall], , , [ #ifdef HAVE_SYS_MMAN_H #include #endif]) # Allow user to specify an alternate syslog facility AC_ARG_WITH(syslog-facility, AS_HELP_STRING(--with-syslog-facility=LOG, [syslog facility to use (default=LOG_DAEMON)]), syslog_facility="$withval", syslog_facility="LOG_DAEMON") AC_DEFINE_UNQUOTED(LOGFACILITY,$syslog_facility,[name of the syslog facility]) AC_SUBST(LOGFACILITY) # Check if we have getresuid and getresgid AC_CHECK_FUNCS(getresuid getresgid) # Check for gethostbyname_r in all its glorious incompatible versions. # (This logic is based on that in Python's configure.in) AH_TEMPLATE(HAVE_GETHOSTBYNAME_R, [Define this if you have any gethostbyname_r()]) AC_CHECK_FUNC(gethostbyname_r, [ AC_MSG_CHECKING([how many arguments gethostbyname_r() wants]) OLD_CFLAGS=$CFLAGS CFLAGS="$CFLAGS $MY_CPPFLAGS $MY_THREAD_CPPFLAGS $MY_CFLAGS" AC_COMPILE_IFELSE([AC_LANG_PROGRAM([ #include ], [[ char *cp1, *cp2; struct hostent *h1, *h2; int i1, i2; (void)gethostbyname_r(cp1,h1,cp2,i1,&h2,&i2); ]])],[ AC_DEFINE(HAVE_GETHOSTBYNAME_R) AC_DEFINE(HAVE_GETHOSTBYNAME_R_6_ARG, 1, [Define this if gethostbyname_r takes 6 arguments]) AC_MSG_RESULT(6) ], [ AC_TRY_COMPILE([ #include ], [ char *cp1, *cp2; struct hostent *h1; int i1, i2; (void)gethostbyname_r(cp1,h1,cp2,i1,&i2); ], [ AC_DEFINE(HAVE_GETHOSTBYNAME_R) AC_DEFINE(HAVE_GETHOSTBYNAME_R_5_ARG, 1, [Define this if gethostbyname_r takes 5 arguments]) AC_MSG_RESULT(5) ], [ AC_TRY_COMPILE([ #include ], [ char *cp1; struct hostent *h1; struct hostent_data hd; (void) gethostbyname_r(cp1,h1,&hd); ], [ AC_DEFINE(HAVE_GETHOSTBYNAME_R) AC_DEFINE(HAVE_GETHOSTBYNAME_R_3_ARG, 1, [Define this if gethostbyname_r takes 3 arguments]) AC_MSG_RESULT(3) ], [ AC_MSG_RESULT(0) ]) ]) ]) CFLAGS=$OLD_CFLAGS ]) AC_CACHE_CHECK([whether the C compiler supports __func__], tor_cv_have_func_macro, AC_COMPILE_IFELSE([AC_LANG_SOURCE([ #include int main(int c, char **v) { puts(__func__); }])], tor_cv_have_func_macro=yes, tor_cv_have_func_macro=no)) AC_CACHE_CHECK([whether the C compiler supports __FUNC__], tor_cv_have_FUNC_macro, AC_COMPILE_IFELSE([AC_LANG_SOURCE([ #include int main(int c, char **v) { puts(__FUNC__); }])], tor_cv_have_FUNC_macro=yes, tor_cv_have_FUNC_macro=no)) AC_CACHE_CHECK([whether the C compiler supports __FUNCTION__], tor_cv_have_FUNCTION_macro, AC_COMPILE_IFELSE([AC_LANG_SOURCE([ #include int main(int c, char **v) { puts(__FUNCTION__); }])], tor_cv_have_FUNCTION_macro=yes, tor_cv_have_FUNCTION_macro=no)) AC_CACHE_CHECK([whether we have extern char **environ already declared], tor_cv_have_environ_declared, AC_COMPILE_IFELSE([AC_LANG_SOURCE([ /* We define _GNU_SOURCE here because it is also defined in compat.c. * Without it environ doesn't get declared. */ #define _GNU_SOURCE #ifdef HAVE_UNISTD_H #include #endif #include int main(int c, char **v) { char **t = environ; }])], tor_cv_have_environ_declared=yes, tor_cv_have_environ_declared=no)) if test "$tor_cv_have_func_macro" = 'yes'; then AC_DEFINE(HAVE_MACRO__func__, 1, [Defined if the compiler supports __func__]) fi if test "$tor_cv_have_FUNC_macro" = 'yes'; then AC_DEFINE(HAVE_MACRO__FUNC__, 1, [Defined if the compiler supports __FUNC__]) fi if test "$tor_cv_have_FUNCTION_macro" = 'yes'; then AC_DEFINE(HAVE_MACRO__FUNCTION__, 1, [Defined if the compiler supports __FUNCTION__]) fi if test "$tor_cv_have_environ_declared" = 'yes'; then AC_DEFINE(HAVE_EXTERN_ENVIRON_DECLARED, 1, [Defined if we have extern char **environ already declared]) fi # $prefix stores the value of the --prefix command line option, or # NONE if the option wasn't set. In the case that it wasn't set, make # it be the default, so that we can use it to expand directories now. if test "x$prefix" = "xNONE"; then prefix=$ac_default_prefix fi # and similarly for $exec_prefix if test "x$exec_prefix" = "xNONE"; then exec_prefix=$prefix fi if test "x$BUILDDIR" = "x"; then BUILDDIR=`pwd` fi AC_SUBST(BUILDDIR) AH_TEMPLATE([BUILDDIR],[tor's build directory]) AC_DEFINE_UNQUOTED(BUILDDIR,"$BUILDDIR") if test "x$CONFDIR" = "x"; then CONFDIR=`eval echo $sysconfdir/tor` fi AC_SUBST(CONFDIR) AH_TEMPLATE([CONFDIR],[tor's configuration directory]) AC_DEFINE_UNQUOTED(CONFDIR,"$CONFDIR") BINDIR=`eval echo $bindir` AC_SUBST(BINDIR) LOCALSTATEDIR=`eval echo $localstatedir` AC_SUBST(LOCALSTATEDIR) if test "$bwin32" = true; then # Test if the linker supports the --nxcompat and --dynamicbase options # for Windows save_LDFLAGS="$LDFLAGS" LDFLAGS="-Wl,--nxcompat -Wl,--dynamicbase" AC_MSG_CHECKING([whether the linker supports DllCharacteristics]) AC_LINK_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes])] [save_LDFLAGS="$save_LDFLAGS $LDFLAGS"], [AC_MSG_RESULT([no])] ) LDFLAGS="$save_LDFLAGS" fi # Set CFLAGS _after_ all the above checks, since our warnings are stricter # than autoconf's macros like. if test "$GCC" = yes; then # Disable GCC's strict aliasing checks. They are an hours-to-debug # accident waiting to happen. CFLAGS="$CFLAGS -Wall -fno-strict-aliasing" else # Override optimization level for non-gcc compilers CFLAGS="$CFLAGS -O" enable_gcc_warnings=no enable_gcc_warnings_advisory=no fi # OS X Lion started deprecating the system openssl. Let's just disable # all deprecation warnings on OS X. Also, to potentially make the binary # a little smaller, let's enable dead_strip. case "$host_os" in darwin*) CFLAGS="$CFLAGS -Wno-deprecated-declarations" LDFLAGS="$LDFLAGS -dead_strip" ;; esac # Add some more warnings which we use in development but not in the # released versions. (Some relevant gcc versions can't handle these.) if test x$enable_gcc_warnings = xyes || test x$enable_gcc_warnings_advisory = xyes; then AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [ #if !defined(__GNUC__) || (__GNUC__ < 4) #error #endif])], have_gcc4=yes, have_gcc4=no) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [ #if !defined(__GNUC__) || (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 2) #error #endif])], have_gcc42=yes, have_gcc42=no) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [ #if !defined(__GNUC__) || (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 3) #error #endif])], have_gcc43=yes, have_gcc43=no) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [ #if !defined(__GNUC__) || (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 6) #error #endif])], have_gcc46=yes, have_gcc46=no) save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -Wshorten-64-to-32" AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [])], have_shorten64_flag=yes, have_shorten64_flag=no) CFLAGS="$save_CFLAGS" case $host in *-*-openbsd* | *-*-bitrig*) # Some OpenBSD versions (like 4.8) have -Wsystem-headers by default. # That's fine, except that the headers don't pass -Wredundant-decls. # Therefore, let's disable -Wsystem-headers when we're building # with maximal warnings on OpenBSD. CFLAGS="$CFLAGS -Wno-system-headers" ;; esac CFLAGS="$CFLAGS -W -Wfloat-equal -Wundef -Wpointer-arith" CFLAGS="$CFLAGS -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings" CFLAGS="$CFLAGS -Wredundant-decls -Wchar-subscripts -Wcomment -Wformat=2" CFLAGS="$CFLAGS -Wwrite-strings -Wmissing-declarations -Wredundant-decls" CFLAGS="$CFLAGS -Wnested-externs -Wbad-function-cast -Wswitch-enum" if test x$enable_gcc_warnings = xyes; then CFLAGS="$CFLAGS -Werror" fi # Disabled, so we can use mallinfo(): -Waggregate-return if test x$have_gcc4 = xyes ; then # These warnings break gcc 3.3.5 and work on gcc 4.0.2 CFLAGS="$CFLAGS -Winit-self -Wmissing-field-initializers -Wold-style-definition" fi if test x$have_gcc42 = xyes ; then # These warnings break gcc 4.0.2 and work on gcc 4.2 # XXXX020 See if any of these work with earlier versions. CFLAGS="$CFLAGS -Waddress -Wmissing-noreturn -Wstrict-overflow=1" # We used to use -Wstrict-overflow=5, but that breaks us heavily under 4.3. fi if test x$have_gcc42 = xyes && test x$have_clang = xno; then # These warnings break gcc 4.0.2 and clang, but work on gcc 4.2 CFLAGS="$CFLAGS -Wnormalized=id -Woverride-init" fi if test x$have_gcc43 = xyes ; then # These warnings break gcc 4.2 and work on gcc 4.3 # XXXX020 See if any of these work with earlier versions. CFLAGS="$CFLAGS -Wextra -Warray-bounds" fi if test x$have_gcc46 = xyes ; then # This warning was added in gcc 4.3, but it appears to generate # spurious warnings in gcc 4.4. I don't know if it works in 4.5. CFLAGS="$CFLAGS -Wlogical-op" fi if test x$have_shorten64_flag = xyes ; then CFLAGS="$CFLAGS -Wshorten-64-to-32" fi ##This will break the world on some 64-bit architectures # CFLAGS="$CFLAGS -Winline" fi if test "$enable_coverage" = yes && test "$have_clang" = "no"; then case "$host_os" in darwin*) AC_MSG_WARN([Tried to enable coverage on OSX without using the clang compiler. This might not work! If coverage fails, use CC=clang when configuring with --enable-profiling.]) esac fi CPPFLAGS="$CPPFLAGS $TOR_CPPFLAGS_libevent $TOR_CPPFLAGS_openssl $TOR_CPPFLAGS_zlib" AC_CONFIG_FILES([ Doxyfile Makefile contrib/dist/suse/tor.sh contrib/operator-tools/tor.logrotate contrib/dist/tor.sh contrib/dist/torctl contrib/dist/tor.service src/config/torrc.sample src/config/torrc.minimal scripts/maint/checkOptionDocs.pl scripts/maint/updateVersions.pl ]) if test x$asciidoc = xtrue && test "$ASCIIDOC" = "none" ; then regular_mans="doc/tor doc/tor-gencert doc/tor-resolve doc/torify" for file in $regular_mans ; do if ! [[ -f "$srcdir/$file.1.in" ]] || ! [[ -f "$srcdir/$file.html.in" ]] ; then echo "=================================="; echo; echo "Building Tor has failed since manpages cannot be built."; echo; echo "You need asciidoc installed to be able to build the manpages."; echo "To build without manpages, use the --disable-asciidoc argument"; echo "when calling configure."; echo; echo "=================================="; exit 1; fi done fi AC_OUTPUT tor-0.2.7.6/configure0000755000175000017500000141157212632313431011331 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for tor 0.2.7.6. # # # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='tor' PACKAGE_TARNAME='tor' PACKAGE_VERSION='0.2.7.6' PACKAGE_STRING='tor 0.2.7.6' PACKAGE_BUGREPORT='' PACKAGE_URL='' ac_unique_file="src/or/main.c" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS LOCALSTATEDIR BINDIR CONFDIR BUILDDIR LOGFACILITY CURVE25519_LIBS BUILD_CURVE25519_DONNA_C64_FALSE BUILD_CURVE25519_DONNA_C64_TRUE BUILD_CURVE25519_DONNA_FALSE BUILD_CURVE25519_DONNA_TRUE F_OMIT_FRAME_POINTER TOR_ZLIB_LIBS TOR_LDFLAGS_zlib TOR_CPPFLAGS_zlib TOR_OPENSSL_LIBS TOR_LDFLAGS_openssl TOR_CPPFLAGS_openssl TOR_LIB_MATH TOR_LIBEVENT_LIBS USE_BUFFEREVENTS_FALSE USE_BUFFEREVENTS_TRUE USE_EXTERNAL_EVDNS_FALSE USE_EXTERNAL_EVDNS_TRUE TOR_LDFLAGS_libevent TOR_CPPFLAGS_libevent TOR_LIB_IPHLPAPI TOR_LIB_GDI TOR_LIB_WS32 BUILD_READPASSPHRASE_C_FALSE BUILD_READPASSPHRASE_C_TRUE THREADS_PTHREADS_FALSE THREADS_PTHREADS_TRUE THREADS_WIN32_FALSE THREADS_WIN32_TRUE EGREP GREP BUILD_NT_SERVICES_FALSE BUILD_NT_SERVICES_TRUE TORGROUP TORUSER USEPYTHON_FALSE USEPYTHON_TRUE PYTHON MINIUPNPC_FALSE MINIUPNPC_TRUE NAT_PMP_FALSE NAT_PMP_TRUE USE_FW_HELPER_FALSE USE_FW_HELPER_TRUE USE_ASCIIDOC_FALSE USE_ASCIIDOC_TRUE A2X ASCIIDOC SED PERL RANLIB CPP am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC AR TOR_SYSTEMD_LIBS TOR_SYSTEMD_CFLAGS LIBSYSTEMD209_LIBS LIBSYSTEMD209_CFLAGS SYSTEMD_LIBS SYSTEMD_CFLAGS USE_OPENBSD_MALLOC_FALSE USE_OPENBSD_MALLOC_TRUE COVERAGE_ENABLED_FALSE COVERAGE_ENABLED_TRUE UNITTESTS_ENABLED_FALSE UNITTESTS_ENABLED_TRUE PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG host_os host_vendor host_cpu host build_os build_vendor build_cpu build AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_openbsd_malloc enable_instrument_downloads enable_static_openssl enable_static_libevent enable_static_zlib enable_static_tor enable_unittests enable_coverage enable_system_torrc enable_transparent enable_asciidoc enable_systemd enable_gcc_warnings enable_gcc_warnings_advisory enable_gcc_hardening enable_expensive_hardening enable_linker_hardening enable_local_appdata enable_tor2web_mode enable_bufferevents enable_tool_name_check enable_seccomp enable_libscrypt enable_dependency_tracking with_tor_user with_tor_group with_libevent_dir with_ssl_dir with_openssl_dir with_zlib_dir enable_largefile with_dmalloc with_tcmalloc with_syslog_facility ' ac_precious_vars='build_alias host_alias target_alias PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR SYSTEMD_CFLAGS SYSTEMD_LIBS LIBSYSTEMD209_CFLAGS LIBSYSTEMD209_LIBS CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP PYTHON' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures tor 0.2.7.6 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/tor] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of tor 0.2.7.6:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-openbsd-malloc use malloc code from OpenBSD. Linux only --enable-instrument-downloads instrument downloads of directory resources etc. --enable-static-openssl link against a static openssl library. Requires --with-openssl-dir --enable-static-libevent link against a static libevent library. Requires --with-libevent-dir --enable-static-zlib link against a static zlib library. Requires --with-zlib-dir --enable-static-tor create an entirely static Tor binary. Requires --with-openssl-dir and --with-libevent-dir and --with-zlib-dir --disable-unittests don't build unit tests for Tor. Risky! --enable-coverage enable coverage support in the unit-test build --disable-system-torrc don't look for a system-wide torrc file --disable-transparent disable transparent proxy support --disable-asciidoc don't use asciidoc (disables building of manpages) --enable-systemd enable systemd notification support --enable-gcc-warnings enable verbose warnings --enable-gcc-warnings-advisory enable verbose warnings, excluding -Werror --disable-gcc-hardening disable compiler security checks --enable-expensive-hardening enable more expensive compiler hardening; makes Tor slower --disable-linker-hardening disable linker security fixups --enable-local-appdata default to host local application data paths on Windows --enable-tor2web-mode support tor2web non-anonymous mode --enable-bufferevents use Libevent's buffered IO --disable-tool-name-check check for sanely named toolchain when cross-compiling --disable-seccomp do not attempt to use libseccomp --disable-libscrypt do not attempt to use libscrypt --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --disable-largefile omit support for large files Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-tor-user=NAME specify username for tor daemon --with-tor-group=NAME specify group name for tor daemon --with-libevent-dir=PATH specify path to libevent installation --with-ssl-dir=PATH obsolete alias for --with-openssl-dir --with-openssl-dir=PATH specify path to openssl installation --with-zlib-dir=PATH specify path to zlib installation --with-dmalloc use debug memory allocation library --with-tcmalloc use tcmalloc memory allocation library --with-syslog-facility=LOG syslog facility to use (default=LOG_DAEMON) Some influential environment variables: PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path SYSTEMD_CFLAGS C compiler flags for SYSTEMD, overriding pkg-config SYSTEMD_LIBS linker flags for SYSTEMD, overriding pkg-config LIBSYSTEMD209_CFLAGS C compiler flags for LIBSYSTEMD209, overriding pkg-config LIBSYSTEMD209_LIBS linker flags for LIBSYSTEMD209, overriding pkg-config CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor PYTHON path to Python binary Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to the package provider. _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF tor configure 0.2.7.6 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES # --------------------------------------------- # Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR # accordingly. ac_fn_c_check_decl () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack as_decl_name=`echo $2|sed 's/ *(.*//'` as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5 $as_echo_n "checking whether $as_decl_name is declared... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { #ifndef $as_decl_name #ifdef __cplusplus (void) $as_decl_use; #else (void) $as_decl_name; #endif #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_decl # ac_fn_c_check_member LINENO AGGR MEMBER VAR INCLUDES # ---------------------------------------------------- # Tries to find if the field MEMBER exists in type AGGR, after including # INCLUDES, setting cache variable VAR accordingly. ac_fn_c_check_member () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5 $as_echo_n "checking for $2.$3... " >&6; } if eval \${$4+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $5 int main () { static $2 ac_aggr; if (ac_aggr.$3) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$4=yes" else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $5 int main () { static $2 ac_aggr; if (sizeof ac_aggr.$3) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$4=yes" else eval "$4=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$4 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_member # ac_fn_c_compute_int LINENO EXPR VAR INCLUDES # -------------------------------------------- # Tries to find the compile-time value of EXPR in a program that includes # INCLUDES, setting VAR accordingly. Returns whether the value could be # computed ac_fn_c_compute_int () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) >= 0)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_lo=0 ac_mid=0 while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) <= $ac_mid)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=$ac_mid; break else as_fn_arith $ac_mid + 1 && ac_lo=$as_val if test $ac_lo -le $ac_mid; then ac_lo= ac_hi= break fi as_fn_arith 2 '*' $ac_mid + 1 && ac_mid=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) < 0)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=-1 ac_mid=-1 while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) >= $ac_mid)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_lo=$ac_mid; break else as_fn_arith '(' $ac_mid ')' - 1 && ac_hi=$as_val if test $ac_mid -le $ac_hi; then ac_lo= ac_hi= break fi as_fn_arith 2 '*' $ac_mid && ac_mid=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done else ac_lo= ac_hi= fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext # Binary search between lo and hi bounds. while test "x$ac_lo" != "x$ac_hi"; do as_fn_arith '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo && ac_mid=$as_val cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) <= $ac_mid)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=$ac_mid else as_fn_arith '(' $ac_mid ')' + 1 && ac_lo=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done case $ac_lo in #(( ?*) eval "$3=\$ac_lo"; ac_retval=0 ;; '') ac_retval=1 ;; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 static long int longval () { return $2; } static unsigned long int ulongval () { return $2; } #include #include int main () { FILE *f = fopen ("conftest.val", "w"); if (! f) return 1; if (($2) < 0) { long int i = longval (); if (i != ($2)) return 1; fprintf (f, "%ld", i); } else { unsigned long int i = ulongval (); if (i != ($2)) return 1; fprintf (f, "%lu", i); } /* Do not output a trailing newline, as this causes \r\n confusion on some platforms. */ return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : echo >>conftest.val; read $3 &5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof ($2)) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof (($2))) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else eval "$3=yes" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_type cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by tor $as_me 0.2.7.6, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu am__api_version='1.15' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='tor' VERSION='0.2.7.6' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=0;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else if $as_echo 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' ac_config_headers="$ac_config_headers orconfig.h" # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi if test -f /etc/redhat-release ; then if test -f /usr/kerberos/include ; then CPPFLAGS="$CPPFLAGS -I/usr/kerberos/include" fi fi # Not a no-op; we want to make sure that CPPFLAGS is set before we use # the += operator on it in src/or/Makefile.am CPPFLAGS="$CPPFLAGS -I\${top_srcdir}/src/common" #XXXX020 We should make these enabled or not, before 0.2.0.x-final # Check whether --enable-openbsd-malloc was given. if test "${enable_openbsd_malloc+set}" = set; then : enableval=$enable_openbsd_malloc; fi # Check whether --enable-instrument-downloads was given. if test "${enable_instrument_downloads+set}" = set; then : enableval=$enable_instrument_downloads; fi # Check whether --enable-static-openssl was given. if test "${enable_static_openssl+set}" = set; then : enableval=$enable_static_openssl; fi # Check whether --enable-static-libevent was given. if test "${enable_static_libevent+set}" = set; then : enableval=$enable_static_libevent; fi # Check whether --enable-static-zlib was given. if test "${enable_static_zlib+set}" = set; then : enableval=$enable_static_zlib; fi # Check whether --enable-static-tor was given. if test "${enable_static_tor+set}" = set; then : enableval=$enable_static_tor; fi # Check whether --enable-unittests was given. if test "${enable_unittests+set}" = set; then : enableval=$enable_unittests; fi # Check whether --enable-coverage was given. if test "${enable_coverage+set}" = set; then : enableval=$enable_coverage; fi # Check whether --enable-system-torrc was given. if test "${enable_system_torrc+set}" = set; then : enableval=$enable_system_torrc; fi if test x$enable_unittests != xno; then UNITTESTS_ENABLED_TRUE= UNITTESTS_ENABLED_FALSE='#' else UNITTESTS_ENABLED_TRUE='#' UNITTESTS_ENABLED_FALSE= fi if test x$enable_coverage = xyes; then COVERAGE_ENABLED_TRUE= COVERAGE_ENABLED_FALSE='#' else COVERAGE_ENABLED_TRUE='#' COVERAGE_ENABLED_FALSE= fi if test "$enable_static_tor" = "yes"; then enable_static_libevent="yes"; enable_static_openssl="yes"; enable_static_zlib="yes"; CFLAGS="$CFLAGS -static" fi if test "$enable_system_torrc" = "no"; then $as_echo "#define DISABLE_SYSTEM_TORRC 1" >>confdefs.h fi if test x$enable_openbsd_malloc = xyes; then USE_OPENBSD_MALLOC_TRUE= USE_OPENBSD_MALLOC_FALSE='#' else USE_OPENBSD_MALLOC_TRUE='#' USE_OPENBSD_MALLOC_FALSE= fi if test x$enable_instrument_downloads = xyes; then $as_echo "#define INSTRUMENT_DOWNLOADS 1" >>confdefs.h fi # Check whether --enable-transparent was given. if test "${enable_transparent+set}" = set; then : enableval=$enable_transparent; case "${enableval}" in yes) transparent=true ;; no) transparent=false ;; *) as_fn_error $? "bad value for --enable-transparent" "$LINENO" 5 ;; esac else transparent=true fi # Check whether --enable-asciidoc was given. if test "${enable_asciidoc+set}" = set; then : enableval=$enable_asciidoc; case "${enableval}" in yes) asciidoc=true ;; no) asciidoc=false ;; *) as_fn_error $? "bad value for --disable-asciidoc" "$LINENO" 5 ;; esac else asciidoc=true fi # systemd notify support # Check whether --enable-systemd was given. if test "${enable_systemd+set}" = set; then : enableval=$enable_systemd; case "${enableval}" in yes) systemd=true ;; no) systemd=false ;; * ) as_fn_error $? "bad value for --enable-systemd" "$LINENO" 5 ;; esac else systemd=auto fi # systemd support if test x$enable_systemd = xno ; then have_systemd=no; else pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SYSTEMD" >&5 $as_echo_n "checking for SYSTEMD... " >&6; } if test -n "$SYSTEMD_CFLAGS"; then pkg_cv_SYSTEMD_CFLAGS="$SYSTEMD_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsystemd-daemon\""; } >&5 ($PKG_CONFIG --exists --print-errors "libsystemd-daemon") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SYSTEMD_CFLAGS=`$PKG_CONFIG --cflags "libsystemd-daemon" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$SYSTEMD_LIBS"; then pkg_cv_SYSTEMD_LIBS="$SYSTEMD_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsystemd-daemon\""; } >&5 ($PKG_CONFIG --exists --print-errors "libsystemd-daemon") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SYSTEMD_LIBS=`$PKG_CONFIG --libs "libsystemd-daemon" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then SYSTEMD_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libsystemd-daemon" 2>&1` else SYSTEMD_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libsystemd-daemon" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$SYSTEMD_PKG_ERRORS" >&5 have_systemd=no elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } have_systemd=no else SYSTEMD_CFLAGS=$pkg_cv_SYSTEMD_CFLAGS SYSTEMD_LIBS=$pkg_cv_SYSTEMD_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } have_systemd=yes fi if test x$have_systemd=xno; then { $as_echo "$as_me:${as_lineno-$LINENO}: Okay, checking for systemd a different way..." >&5 $as_echo "$as_me: Okay, checking for systemd a different way..." >&6;} pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SYSTEMD" >&5 $as_echo_n "checking for SYSTEMD... " >&6; } if test -n "$SYSTEMD_CFLAGS"; then pkg_cv_SYSTEMD_CFLAGS="$SYSTEMD_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsystemd\""; } >&5 ($PKG_CONFIG --exists --print-errors "libsystemd") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SYSTEMD_CFLAGS=`$PKG_CONFIG --cflags "libsystemd" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$SYSTEMD_LIBS"; then pkg_cv_SYSTEMD_LIBS="$SYSTEMD_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsystemd\""; } >&5 ($PKG_CONFIG --exists --print-errors "libsystemd") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SYSTEMD_LIBS=`$PKG_CONFIG --libs "libsystemd" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then SYSTEMD_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libsystemd" 2>&1` else SYSTEMD_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libsystemd" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$SYSTEMD_PKG_ERRORS" >&5 have_systemd=no elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } have_systemd=no else SYSTEMD_CFLAGS=$pkg_cv_SYSTEMD_CFLAGS SYSTEMD_LIBS=$pkg_cv_SYSTEMD_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } have_systemd=yes fi fi fi if test x$have_systemd = xyes; then $as_echo "#define HAVE_SYSTEMD 1" >>confdefs.h TOR_SYSTEMD_CFLAGS="${SYSTEMD_CFLAGS}" TOR_SYSTEMD_LIBS="${SYSTEMD_LIBS}" pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBSYSTEMD209" >&5 $as_echo_n "checking for LIBSYSTEMD209... " >&6; } if test -n "$LIBSYSTEMD209_CFLAGS"; then pkg_cv_LIBSYSTEMD209_CFLAGS="$LIBSYSTEMD209_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsystemd >= 209\""; } >&5 ($PKG_CONFIG --exists --print-errors "libsystemd >= 209") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBSYSTEMD209_CFLAGS=`$PKG_CONFIG --cflags "libsystemd >= 209" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$LIBSYSTEMD209_LIBS"; then pkg_cv_LIBSYSTEMD209_LIBS="$LIBSYSTEMD209_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libsystemd >= 209\""; } >&5 ($PKG_CONFIG --exists --print-errors "libsystemd >= 209") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_LIBSYSTEMD209_LIBS=`$PKG_CONFIG --libs "libsystemd >= 209" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then LIBSYSTEMD209_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libsystemd >= 209" 2>&1` else LIBSYSTEMD209_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libsystemd >= 209" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$LIBSYSTEMD209_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (libsystemd >= 209) were not met: $LIBSYSTEMD209_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables LIBSYSTEMD209_CFLAGS and LIBSYSTEMD209_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables LIBSYSTEMD209_CFLAGS and LIBSYSTEMD209_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5; } else LIBSYSTEMD209_CFLAGS=$pkg_cv_LIBSYSTEMD209_CFLAGS LIBSYSTEMD209_LIBS=$pkg_cv_LIBSYSTEMD209_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } $as_echo "#define HAVE_SYSTEMD_209 1" >>confdefs.h fi fi if test x$enable_systemd = xyes -a x$have_systemd != xyes ; then as_fn_error $? "Explicitly requested systemd support, but systemd not found" "$LINENO" 5 fi case $host in *-*-solaris* ) $as_echo "#define _REENTRANT 1" >>confdefs.h ;; esac # Check whether --enable-gcc-warnings was given. if test "${enable_gcc_warnings+set}" = set; then : enableval=$enable_gcc_warnings; fi # Check whether --enable-gcc-warnings-advisory was given. if test "${enable_gcc_warnings_advisory+set}" = set; then : enableval=$enable_gcc_warnings_advisory; fi # Check whether --enable-gcc-hardening was given. if test "${enable_gcc_hardening+set}" = set; then : enableval=$enable_gcc_hardening; fi # Check whether --enable-expensive-hardening was given. if test "${enable_expensive_hardening+set}" = set; then : enableval=$enable_expensive_hardening; fi # Check whether --enable-linker-hardening was given. if test "${enable_linker_hardening+set}" = set; then : enableval=$enable_linker_hardening; fi # Check whether --enable-local-appdata was given. if test "${enable_local_appdata+set}" = set; then : enableval=$enable_local_appdata; fi if test "$enable_local_appdata" = "yes"; then $as_echo "#define ENABLE_LOCAL_APPDATA 1" >>confdefs.h fi # Tor2web mode flag # Check whether --enable-tor2web-mode was given. if test "${enable_tor2web_mode+set}" = set; then : enableval=$enable_tor2web_mode; if test x$enableval = xyes; then CFLAGS="$CFLAGS -D ENABLE_TOR2WEB_MODE=1" fi fi # Check whether --enable-bufferevents was given. if test "${enable_bufferevents+set}" = set; then : enableval=$enable_bufferevents; fi # Check whether --enable-tool-name-check was given. if test "${enable_tool_name_check+set}" = set; then : enableval=$enable_tool_name_check; fi # Check whether --enable-seccomp was given. if test "${enable_seccomp+set}" = set; then : enableval=$enable_seccomp; fi # Check whether --enable-libscrypt was given. if test "${enable_libscrypt+set}" = set; then : enableval=$enable_libscrypt; fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="${ac_tool_prefix}ar" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_AR"; then ac_ct_AR=$AR # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="ar" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_AR" = x; then AR="ar" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi else AR="$ac_cv_prog_AR" fi if test x$enable_tool_name_check != xno; then if test x$ac_tool_warned = xyes; then as_fn_error $? "We are cross compiling but could not find a properly named toolchain. Do you have your cross-compiling toolchain in PATH? (You can --disable-tool-name-check to ignore this.)" "$LINENO" 5 elif test "x$ac_ct_AR" != x -a x$cross_compiling = xmaybe; then as_fn_error $? "We think we are cross compiling but could not find a properly named toolchain. Do you have your cross-compiling toolchain in PATH? (You can --disable-tool-name-check to ignore this.)" "$LINENO" 5 fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi # Extract the first word of "perl", so it can be a program name with args. set dummy perl; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PERL+:} false; then : $as_echo_n "(cached) " >&6 else case $PERL in [\\/]* | ?:[\\/]*) ac_cv_path_PERL="$PERL" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PERL="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PERL=$ac_cv_path_PERL if test -n "$PERL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PERL" >&5 $as_echo "$PERL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "sed", so it can be a program name with args. set dummy sed; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_SED+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$SED"; then ac_cv_prog_SED="$SED" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_SED="sed" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_prog_SED" && ac_cv_prog_SED="/bin/false" fi fi SED=$ac_cv_prog_SED if test -n "$SED"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SED" >&5 $as_echo "$SED" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "asciidoc", so it can be a program name with args. set dummy asciidoc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ASCIIDOC+:} false; then : $as_echo_n "(cached) " >&6 else case $ASCIIDOC in [\\/]* | ?:[\\/]*) ac_cv_path_ASCIIDOC="$ASCIIDOC" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_ASCIIDOC="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_ASCIIDOC" && ac_cv_path_ASCIIDOC="none" ;; esac fi ASCIIDOC=$ac_cv_path_ASCIIDOC if test -n "$ASCIIDOC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ASCIIDOC" >&5 $as_echo "$ASCIIDOC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi for ac_prog in a2x a2x.py do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_A2X+:} false; then : $as_echo_n "(cached) " >&6 else case $A2X in [\\/]* | ?:[\\/]*) ac_cv_path_A2X="$A2X" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_A2X="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi A2X=$ac_cv_path_A2X if test -n "$A2X"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $A2X" >&5 $as_echo "$A2X" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$A2X" && break done test -n "$A2X" || A2X="none" if test x$asciidoc = xtrue; then USE_ASCIIDOC_TRUE= USE_ASCIIDOC_FALSE='#' else USE_ASCIIDOC_TRUE='#' USE_ASCIIDOC_FALSE= fi if test x$natpmp = xtrue || test x$upnp = xtrue; then USE_FW_HELPER_TRUE= USE_FW_HELPER_FALSE='#' else USE_FW_HELPER_TRUE='#' USE_FW_HELPER_FALSE= fi if test x$natpmp = xtrue; then NAT_PMP_TRUE= NAT_PMP_FALSE='#' else NAT_PMP_TRUE='#' NAT_PMP_FALSE= fi if test x$upnp = xtrue; then MINIUPNPC_TRUE= MINIUPNPC_FALSE='#' else MINIUPNPC_TRUE='#' MINIUPNPC_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C99" >&5 $as_echo_n "checking for $CC option to accept ISO C99... " >&6; } if ${ac_cv_prog_cc_c99+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c99=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include #include // Check varargs macros. These examples are taken from C99 6.10.3.5. #define debug(...) fprintf (stderr, __VA_ARGS__) #define showlist(...) puts (#__VA_ARGS__) #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) static void test_varargs_macros (void) { int x = 1234; int y = 5678; debug ("Flag"); debug ("X = %d\n", x); showlist (The first, second, and third items.); report (x>y, "x is %d but y is %d", x, y); } // Check long long types. #define BIG64 18446744073709551615ull #define BIG32 4294967295ul #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) #if !BIG_OK your preprocessor is broken; #endif #if BIG_OK #else your preprocessor is broken; #endif static long long int bignum = -9223372036854775807LL; static unsigned long long int ubignum = BIG64; struct incomplete_array { int datasize; double data[]; }; struct named_init { int number; const wchar_t *name; double average; }; typedef const char *ccp; static inline int test_restrict (ccp restrict text) { // See if C++-style comments work. // Iterate through items via the restricted pointer. // Also check for declarations in for loops. for (unsigned int i = 0; *(text+i) != '\0'; ++i) continue; return 0; } // Check varargs and va_copy. static void test_varargs (const char *format, ...) { va_list args; va_start (args, format); va_list args_copy; va_copy (args_copy, args); const char *str; int number; float fnumber; while (*format) { switch (*format++) { case 's': // string str = va_arg (args_copy, const char *); break; case 'd': // int number = va_arg (args_copy, int); break; case 'f': // float fnumber = va_arg (args_copy, double); break; default: break; } } va_end (args_copy); va_end (args); } int main () { // Check bool. _Bool success = false; // Check restrict. if (test_restrict ("String literal") == 0) success = true; char *restrict newvar = "Another string"; // Check varargs. test_varargs ("s, d' f .", "string", 65, 34.234); test_varargs_macros (); // Check flexible array members. struct incomplete_array *ia = malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); ia->datasize = 10; for (int i = 0; i < ia->datasize; ++i) ia->data[i] = i * 1.234; // Check named initializers. struct named_init ni = { .number = 34, .name = L"Test wide string", .average = 543.34343, }; ni.number = 58; int dynamic_array[ni.number]; dynamic_array[ni.number - 1] = 543; // work around unused variable warnings return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' || dynamic_array[ni.number - 1] != 543); ; return 0; } _ACEOF for ac_arg in '' -std=gnu99 -std=c99 -c99 -AC99 -D_STDC_C99= -qlanglvl=extc99 do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c99=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c99" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c99" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c99" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5 $as_echo "$ac_cv_prog_cc_c99" >&6; } ;; esac if test "x$ac_cv_prog_cc_c99" != xno; then : fi for ac_prog in python python2 python2.7 python3 python3.3 do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_PYTHON+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$PYTHON"; then ac_cv_prog_PYTHON="$PYTHON" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_PYTHON="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi PYTHON=$ac_cv_prog_PYTHON if test -n "$PYTHON"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON" >&5 $as_echo "$PYTHON" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$PYTHON" && break done if test "x$PYTHON" = "x"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Python unavailable; some tests will not be run." >&5 $as_echo "$as_me: WARNING: Python unavailable; some tests will not be run." >&2;} fi if test "x$PYTHON" != "x"; then USEPYTHON_TRUE= USEPYTHON_FALSE='#' else USEPYTHON_TRUE='#' USEPYTHON_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for flexible array members" >&5 $as_echo_n "checking for flexible array members... " >&6; } if ${ac_cv_c_flexmember+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include struct s { int n; double d[]; }; int main () { int m = getchar (); struct s *p = malloc (offsetof (struct s, d) + m * sizeof (double)); p->d[0] = 0.0; return p->d != (double *) NULL; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_flexmember=yes else ac_cv_c_flexmember=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_flexmember" >&5 $as_echo "$ac_cv_c_flexmember" >&6; } if test $ac_cv_c_flexmember = yes; then $as_echo "#define FLEXIBLE_ARRAY_MEMBER /**/" >>confdefs.h else $as_echo "#define FLEXIBLE_ARRAY_MEMBER 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working C99 mid-block declaration syntax" >&5 $as_echo_n "checking for working C99 mid-block declaration syntax... " >&6; } if ${tor_cv_c_c99_decl+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { int x; x = 3; int y; y = 4 + x; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : tor_cv_c_c99_decl=yes else tor_cv_c_c99_decl=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_c_c99_decl" >&5 $as_echo "$tor_cv_c_c99_decl" >&6; } if test "$tor_cv_c_c99_decl" != "yes"; then as_fn_error $? "Your compiler doesn't support c99 mid-block declarations. This is required as of Tor 0.2.6.x" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working C99 designated initializers" >&5 $as_echo_n "checking for working C99 designated initializers... " >&6; } if ${tor_cv_c_c99_designated_init+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ struct s { int a; int b; }; int main () { struct s ss = { .b = 5, .a = 6 }; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : tor_cv_c_c99_designated_init=yes else tor_cv_c_c99_designated_init=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_c_c99_designated_init" >&5 $as_echo "$tor_cv_c_c99_designated_init" >&6; } if test "$tor_cv_c_c99_designated_init" != "yes"; then as_fn_error $? "Your compiler doesn't support c99 designated initializers. This is required as of Tor 0.2.6.x" "$LINENO" 5 fi TORUSER=_tor # Check whether --with-tor-user was given. if test "${with_tor_user+set}" = set; then : withval=$with_tor_user; TORUSER=$withval fi TORGROUP=_tor # Check whether --with-tor-group was given. if test "${with_tor_group+set}" = set; then : withval=$with_tor_group; TORGROUP=$withval fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for win32" >&5 $as_echo_n "checking for win32... " >&6; } if test "$cross_compiling" = yes; then : bwin32=cross; { $as_echo "$as_me:${as_lineno-$LINENO}: result: cross" >&5 $as_echo "cross" >&6; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main(int c, char **v) { #ifdef _WIN32 #if _WIN32 return 0; #else return 1; #endif #else return 2; #endif } _ACEOF if ac_fn_c_try_run "$LINENO"; then : bwin32=true; { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else bwin32=false; { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi if test "$bwin32" = cross; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for win32 (cross)" >&5 $as_echo_n "checking for win32 (cross)... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef _WIN32 int main(int c, char **v) {return 0;} #else #error int main(int c, char **v) {return x(y);} #endif _ACEOF if ac_fn_c_try_compile "$LINENO"; then : bwin32=true; { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else bwin32=false; { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi if test x$bwin32 = xtrue; then BUILD_NT_SERVICES_TRUE= BUILD_NT_SERVICES_FALSE='#' else BUILD_NT_SERVICES_TRUE='#' BUILD_NT_SERVICES_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for MIPSpro compiler" >&5 $as_echo_n "checking for MIPSpro compiler... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #if (defined(__sgi) && defined(_COMPILER_VERSION)) #error return x(y); #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : bmipspro=false; { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } else bmipspro=true; { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test "$bmipspro" = true; then CFLAGS="$CFLAGS -c99" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5 $as_echo_n "checking whether byte ordering is bigendian... " >&6; } if ${ac_cv_c_bigendian+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_c_bigendian=unknown # See if we're dealing with a universal compiler. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __APPLE_CC__ not a universal capable compiler #endif typedef int dummy; _ACEOF if ac_fn_c_try_compile "$LINENO"; then : # Check for potential -arch flags. It is not universal unless # there are at least two -arch flags with different values. ac_arch= ac_prev= for ac_word in $CC $CFLAGS $CPPFLAGS $LDFLAGS; do if test -n "$ac_prev"; then case $ac_word in i?86 | x86_64 | ppc | ppc64) if test -z "$ac_arch" || test "$ac_arch" = "$ac_word"; then ac_arch=$ac_word else ac_cv_c_bigendian=universal break fi ;; esac ac_prev= elif test "x$ac_word" = "x-arch"; then ac_prev=arch fi done fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_c_bigendian = unknown; then # See if sys/param.h defines the BYTE_ORDER macro. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { #if ! (defined BYTE_ORDER && defined BIG_ENDIAN \ && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \ && LITTLE_ENDIAN) bogus endian macros #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : # It does; now see whether it defined to BIG_ENDIAN or not. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { #if BYTE_ORDER != BIG_ENDIAN not big endian #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_bigendian=yes else ac_cv_c_bigendian=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi if test $ac_cv_c_bigendian = unknown; then # See if defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris). cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { #if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN) bogus endian macros #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : # It does; now see whether it defined to _BIG_ENDIAN or not. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { #ifndef _BIG_ENDIAN not big endian #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_bigendian=yes else ac_cv_c_bigendian=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi if test $ac_cv_c_bigendian = unknown; then # Compile a test program. if test "$cross_compiling" = yes; then : # Try to guess by grepping values from an object file. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ short int ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; short int ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; int use_ascii (int i) { return ascii_mm[i] + ascii_ii[i]; } short int ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; short int ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; int use_ebcdic (int i) { return ebcdic_mm[i] + ebcdic_ii[i]; } extern int foo; int main () { return use_ascii (foo) == use_ebcdic (foo); ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : if grep BIGenDianSyS conftest.$ac_objext >/dev/null; then ac_cv_c_bigendian=yes fi if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then if test "$ac_cv_c_bigendian" = unknown; then ac_cv_c_bigendian=no else # finding both strings is unlikely to happen, but who knows? ac_cv_c_bigendian=unknown fi fi fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default int main () { /* Are we little or big endian? From Harbison&Steele. */ union { long int l; char c[sizeof (long int)]; } u; u.l = 1; return u.c[sizeof (long int) - 1] == 1; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_c_bigendian=no else ac_cv_c_bigendian=yes fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bigendian" >&5 $as_echo "$ac_cv_c_bigendian" >&6; } case $ac_cv_c_bigendian in #( yes) $as_echo "#define WORDS_BIGENDIAN 1" >>confdefs.h ;; #( no) ;; #( universal) $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h ;; #( *) as_fn_error $? "unknown endianness presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing socket" >&5 $as_echo_n "checking for library containing socket... " >&6; } if ${ac_cv_search_socket+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char socket (); int main () { return socket (); ; return 0; } _ACEOF for ac_lib in '' socket network; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_socket=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_socket+:} false; then : break fi done if ${ac_cv_search_socket+:} false; then : else ac_cv_search_socket=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_socket" >&5 $as_echo "$ac_cv_search_socket" >&6; } ac_res=$ac_cv_search_socket if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing gethostbyname" >&5 $as_echo_n "checking for library containing gethostbyname... " >&6; } if ${ac_cv_search_gethostbyname+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char gethostbyname (); int main () { return gethostbyname (); ; return 0; } _ACEOF for ac_lib in '' nsl; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_gethostbyname=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_gethostbyname+:} false; then : break fi done if ${ac_cv_search_gethostbyname+:} false; then : else ac_cv_search_gethostbyname=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_gethostbyname" >&5 $as_echo "$ac_cv_search_gethostbyname" >&6; } ac_res=$ac_cv_search_gethostbyname if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing dlopen" >&5 $as_echo_n "checking for library containing dlopen... " >&6; } if ${ac_cv_search_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF for ac_lib in '' dl; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_dlopen=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_dlopen+:} false; then : break fi done if ${ac_cv_search_dlopen+:} false; then : else ac_cv_search_dlopen=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_dlopen" >&5 $as_echo "$ac_cv_search_dlopen" >&6; } ac_res=$ac_cv_search_dlopen if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing inet_aton" >&5 $as_echo_n "checking for library containing inet_aton... " >&6; } if ${ac_cv_search_inet_aton+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char inet_aton (); int main () { return inet_aton (); ; return 0; } _ACEOF for ac_lib in '' resolv; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_inet_aton=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_inet_aton+:} false; then : break fi done if ${ac_cv_search_inet_aton+:} false; then : else ac_cv_search_inet_aton=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_inet_aton" >&5 $as_echo "$ac_cv_search_inet_aton" >&6; } ac_res=$ac_cv_search_inet_aton if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing backtrace" >&5 $as_echo_n "checking for library containing backtrace... " >&6; } if ${ac_cv_search_backtrace+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char backtrace (); int main () { return backtrace (); ; return 0; } _ACEOF for ac_lib in '' execinfo; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_backtrace=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_backtrace+:} false; then : break fi done if ${ac_cv_search_backtrace+:} false; then : else ac_cv_search_backtrace=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_backtrace" >&5 $as_echo "$ac_cv_search_backtrace" >&6; } ac_res=$ac_cv_search_backtrace if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi saved_LIBS="$LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing clock_gettime" >&5 $as_echo_n "checking for library containing clock_gettime... " >&6; } if ${ac_cv_search_clock_gettime+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char clock_gettime (); int main () { return clock_gettime (); ; return 0; } _ACEOF for ac_lib in '' rt; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_clock_gettime=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_clock_gettime+:} false; then : break fi done if ${ac_cv_search_clock_gettime+:} false; then : else ac_cv_search_clock_gettime=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_clock_gettime" >&5 $as_echo "$ac_cv_search_clock_gettime" >&6; } ac_res=$ac_cv_search_clock_gettime if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi if test "$LIBS" != "$saved_LIBS"; then # Looks like we need -lrt for clock_gettime(). have_rt=yes fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing pthread_create" >&5 $as_echo_n "checking for library containing pthread_create... " >&6; } if ${ac_cv_search_pthread_create+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char pthread_create (); int main () { return pthread_create (); ; return 0; } _ACEOF for ac_lib in '' pthread; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_pthread_create=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_pthread_create+:} false; then : break fi done if ${ac_cv_search_pthread_create+:} false; then : else ac_cv_search_pthread_create=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_pthread_create" >&5 $as_echo "$ac_cv_search_pthread_create" >&6; } ac_res=$ac_cv_search_pthread_create if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing pthread_detach" >&5 $as_echo_n "checking for library containing pthread_detach... " >&6; } if ${ac_cv_search_pthread_detach+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char pthread_detach (); int main () { return pthread_detach (); ; return 0; } _ACEOF for ac_lib in '' pthread; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_pthread_detach=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_pthread_detach+:} false; then : break fi done if ${ac_cv_search_pthread_detach+:} false; then : else ac_cv_search_pthread_detach=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_pthread_detach" >&5 $as_echo "$ac_cv_search_pthread_detach" >&6; } ac_res=$ac_cv_search_pthread_detach if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi if test "$bwin32" = "true"; then THREADS_WIN32_TRUE= THREADS_WIN32_FALSE='#' else THREADS_WIN32_TRUE='#' THREADS_WIN32_FALSE= fi if test "$bwin32" = "false"; then THREADS_PTHREADS_TRUE= THREADS_PTHREADS_FALSE='#' else THREADS_PTHREADS_TRUE='#' THREADS_PTHREADS_FALSE= fi for ac_func in _NSGetEnviron \ accept4 \ backtrace \ backtrace_symbols_fd \ clock_gettime \ eventfd \ flock \ ftime \ getaddrinfo \ getifaddrs \ getpass \ getrlimit \ gettimeofday \ gmtime_r \ inet_aton \ ioctl \ issetugid \ llround \ localtime_r \ lround \ memmem \ pipe \ pipe2 \ prctl \ readpassphrase \ rint \ sigaction \ socketpair \ statvfs \ strlcat \ strlcpy \ strnlen \ strptime \ strtok_r \ strtoull \ sysconf \ sysctl \ uname \ usleep \ vasprintf \ _vscprintf do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done if test "$bwin32" != true; then for ac_header in pthread.h do : ac_fn_c_check_header_mongrel "$LINENO" "pthread.h" "ac_cv_header_pthread_h" "$ac_includes_default" if test "x$ac_cv_header_pthread_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_PTHREAD_H 1 _ACEOF fi done for ac_func in pthread_create do : ac_fn_c_check_func "$LINENO" "pthread_create" "ac_cv_func_pthread_create" if test "x$ac_cv_func_pthread_create" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_PTHREAD_CREATE 1 _ACEOF fi done fi if test "$bwin32" = true; then ac_fn_c_check_decl "$LINENO" "SecureZeroMemory" "ac_cv_have_decl_SecureZeroMemory" " #include #include #include " if test "x$ac_cv_have_decl_SecureZeroMemory" = xyes; then : ac_have_decl=1 else ac_have_decl=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL_SECUREZEROMEMORY $ac_have_decl _ACEOF ac_fn_c_check_decl "$LINENO" "_getwch" "ac_cv_have_decl__getwch" " #include #include #include " if test "x$ac_cv_have_decl__getwch" = xyes; then : ac_have_decl=1 else ac_have_decl=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL__GETWCH $ac_have_decl _ACEOF fi if test x$ac_cv_func_readpassphrase = xno && test $bwin32 = false; then BUILD_READPASSPHRASE_C_TRUE= BUILD_READPASSPHRASE_C_FALSE='#' else BUILD_READPASSPHRASE_C_TRUE='#' BUILD_READPASSPHRASE_C_FALSE= fi if test "$bwin32" = true; then TOR_LIB_WS32=-lws2_32 TOR_LIB_IPHLPAPI=-liphlpapi # Some of the cargo-cults recommend -lwsock32 as well, but I don't # think it's actually necessary. TOR_LIB_GDI=-lgdi32 else TOR_LIB_WS32= TOR_LIB_GDI= fi tor_libevent_pkg_redhat="libevent" tor_libevent_pkg_debian="libevent-dev" tor_libevent_devpkg_redhat="libevent-devel" tor_libevent_devpkg_debian="libevent-dev" STATIC_LIBEVENT_FLAGS="" if test "$enable_static_libevent" = "yes"; then if test "$have_rt" = yes; then STATIC_LIBEVENT_FLAGS=" -lrt " fi fi trylibeventdir="" # Check whether --with-libevent-dir was given. if test "${with_libevent_dir+set}" = set; then : withval=$with_libevent_dir; if test x$withval != xno ; then trylibeventdir="$withval" fi fi if test "x$trylibeventdir" = x && test "x$ALT_libevent_WITHVAL" != x ; then trylibeventdir="$ALT_libevent_WITHVAL" fi tor_saved_LIBS="$LIBS" tor_saved_LDFLAGS="$LDFLAGS" tor_saved_CPPFLAGS="$CPPFLAGS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libevent directory" >&5 $as_echo_n "checking for libevent directory... " >&6; } if ${tor_cv_library_libevent_dir+:} false; then : $as_echo_n "(cached) " >&6 else tor_libevent_dir_found=no tor_libevent_any_linkable=no for tor_trydir in "$trylibeventdir" "(system)" "$prefix" /usr/local /usr/pkg /opt/libevent; do LDFLAGS="$tor_saved_LDFLAGS" LIBS="$tor_saved_LIBS -levent $STATIC_LIBEVENT_FLAGS $TOR_LIB_WS32" CPPFLAGS="$tor_saved_CPPFLAGS" if test -z "$tor_trydir" ; then continue; fi # Skip the directory if it isn't there. if test ! -d "$tor_trydir" && test "$tor_trydir" != "(system)"; then continue; fi # If this isn't blank, try adding the directory (or appropriate # include/libs subdirectories) to the command line. if test "$tor_trydir" != "(system)"; then if test -d "$tor_trydir/lib"; then LDFLAGS="-L$tor_trydir/lib $LDFLAGS" else LDFLAGS="-L$tor_trydir $LDFLAGS" fi if test -d "$tor_trydir/include"; then CPPFLAGS="-I$tor_trydir/include $CPPFLAGS" else CPPFLAGS="-I$tor_trydir $CPPFLAGS" fi fi # Can we link against (but not necessarily run, or find the headers for) # the binary? cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef _WIN32 #include #endif void exit(int); void *event_init(void); int main () { #ifdef _WIN32 {WSADATA d; WSAStartup(0x101,&d); } #endif event_init(); exit(0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : linkable=yes else linkable=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$linkable" = yes; then tor_libevent_any_linkable=yes # Okay, we can link against it. Can we find the headers? cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef _WIN32 #include #endif #include #include #include #include int main () { #ifdef _WIN32 {WSADATA d; WSAStartup(0x101,&d); } #endif event_init(); exit(0); ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : buildable=yes else buildable=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test "$buildable" = yes; then tor_cv_library_libevent_dir=$tor_trydir tor_libevent_dir_found=yes break fi fi done if test "$tor_libevent_dir_found" = no; then if test "$tor_libevent_any_linkable" = no ; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Could not find a linkable libevent. If you have it installed somewhere unusual, you can specify an explicit path using --with-libevent-dir" >&5 $as_echo "$as_me: WARNING: Could not find a linkable libevent. If you have it installed somewhere unusual, you can specify an explicit path using --with-libevent-dir" >&2;} h="" if test xpkg = xdevpkg; then h=" headers for" fi if test -f /etc/debian_version && test x"$tor_libevent_pkg_debian" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On Debian, you can install$h libevent using \"apt-get install $tor_libevent_pkg_debian\"" >&5 $as_echo "$as_me: WARNING: On Debian, you can install$h libevent using \"apt-get install $tor_libevent_pkg_debian\"" >&2;} if test x"$tor_libevent_pkg_debian" != x"$tor_libevent_devpkg_debian"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need $tor_libevent_devpkg_debian too." >&5 $as_echo "$as_me: WARNING: You will probably need $tor_libevent_devpkg_debian too." >&2;} fi fi if test -f /etc/fedora-release && test x"$tor_libevent_pkg_redhat" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On Fedora Core, you can install$h libevent using \"yum install $tor_libevent_pkg_redhat\"" >&5 $as_echo "$as_me: WARNING: On Fedora Core, you can install$h libevent using \"yum install $tor_libevent_pkg_redhat\"" >&2;} if test x"$tor_libevent_pkg_redhat" != x"$tor_libevent_devpkg_redhat"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need to install $tor_libevent_devpkg_redhat too." >&5 $as_echo "$as_me: WARNING: You will probably need to install $tor_libevent_devpkg_redhat too." >&2;} fi else if test -f /etc/redhat-release && test x"$tor_libevent_pkg_redhat" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On most Redhat-based systems, you can get$h libevent by installing the $tor_libevent_pkg_redhat RPM package" >&5 $as_echo "$as_me: WARNING: On most Redhat-based systems, you can get$h libevent by installing the $tor_libevent_pkg_redhat RPM package" >&2;} if test x"$tor_libevent_pkg_redhat" != x"$tor_libevent_devpkg_redhat"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need to install $tor_libevent_devpkg_redhat too." >&5 $as_echo "$as_me: WARNING: You will probably need to install $tor_libevent_devpkg_redhat too." >&2;} fi fi fi as_fn_error $? "Missing libraries; unable to proceed." "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: We found the libraries for libevent, but we could not find the C header files. You may need to install a devel package." >&5 $as_echo "$as_me: WARNING: We found the libraries for libevent, but we could not find the C header files. You may need to install a devel package." >&2;} h="" if test xdevpkg = xdevpkg; then h=" headers for" fi if test -f /etc/debian_version && test x"$tor_libevent_devpkg_debian" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On Debian, you can install$h libevent using \"apt-get install $tor_libevent_devpkg_debian\"" >&5 $as_echo "$as_me: WARNING: On Debian, you can install$h libevent using \"apt-get install $tor_libevent_devpkg_debian\"" >&2;} if test x"$tor_libevent_devpkg_debian" != x"$tor_libevent_devpkg_debian"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need $tor_libevent_devpkg_debian too." >&5 $as_echo "$as_me: WARNING: You will probably need $tor_libevent_devpkg_debian too." >&2;} fi fi if test -f /etc/fedora-release && test x"$tor_libevent_devpkg_redhat" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On Fedora Core, you can install$h libevent using \"yum install $tor_libevent_devpkg_redhat\"" >&5 $as_echo "$as_me: WARNING: On Fedora Core, you can install$h libevent using \"yum install $tor_libevent_devpkg_redhat\"" >&2;} if test x"$tor_libevent_devpkg_redhat" != x"$tor_libevent_devpkg_redhat"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need to install $tor_libevent_devpkg_redhat too." >&5 $as_echo "$as_me: WARNING: You will probably need to install $tor_libevent_devpkg_redhat too." >&2;} fi else if test -f /etc/redhat-release && test x"$tor_libevent_devpkg_redhat" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On most Redhat-based systems, you can get$h libevent by installing the $tor_libevent_devpkg_redhat RPM package" >&5 $as_echo "$as_me: WARNING: On most Redhat-based systems, you can get$h libevent by installing the $tor_libevent_devpkg_redhat RPM package" >&2;} if test x"$tor_libevent_devpkg_redhat" != x"$tor_libevent_devpkg_redhat"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need to install $tor_libevent_devpkg_redhat too." >&5 $as_echo "$as_me: WARNING: You will probably need to install $tor_libevent_devpkg_redhat too." >&2;} fi fi fi as_fn_error $? "Missing headers; unable to proceed." "$LINENO" 5 fi fi LDFLAGS="$tor_saved_LDFLAGS" LIBS="$tor_saved_LIBS" CPPFLAGS="$tor_saved_CPPFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_library_libevent_dir" >&5 $as_echo "$tor_cv_library_libevent_dir" >&6; } LIBS="$LIBS -levent $STATIC_LIBEVENT_FLAGS $TOR_LIB_WS32" if test "$tor_cv_library_libevent_dir" != "(system)"; then if test -d "$tor_cv_library_libevent_dir/lib"; then LDFLAGS="-L$tor_cv_library_libevent_dir/lib $LDFLAGS" else LDFLAGS="-L$tor_cv_library_libevent_dir $LDFLAGS" fi if test -d "$tor_cv_library_libevent_dir/include"; then CPPFLAGS="-I$tor_cv_library_libevent_dir/include $CPPFLAGS" else CPPFLAGS="-I$tor_cv_library_libevent_dir $CPPFLAGS" fi fi if test x$tor_cv_library_libevent_dir = "x(system)"; then TOR_LDFLAGS_libevent="" TOR_CPPFLAGS_libevent="" else if test -d "$tor_cv_library_libevent_dir/lib"; then TOR_LDFLAGS_libevent="-L$tor_cv_library_libevent_dir/lib" TOR_LIBDIR_libevent="$tor_cv_library_libevent_dir/lib" else TOR_LDFLAGS_libevent="-L$tor_cv_library_libevent_dir" TOR_LIBDIR_libevent="$tor_cv_library_libevent_dir" fi if test -d "$tor_cv_library_libevent_dir/include"; then TOR_CPPFLAGS_libevent="-I$tor_cv_library_libevent_dir/include" else TOR_CPPFLAGS_libevent="-I$tor_cv_library_libevent_dir" fi fi if test "$cross_compiling" != yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need extra options to link libevent" >&5 $as_echo_n "checking whether we need extra options to link libevent... " >&6; } if ${tor_cv_library_libevent_linker_option+:} false; then : $as_echo_n "(cached) " >&6 else orig_LDFLAGS="$LDFLAGS" runs=no linked_with=nothing if test -d "$tor_cv_library_libevent_dir/lib"; then tor_trydir="$tor_cv_library_libevent_dir/lib" else tor_trydir="$tor_cv_library_libevent_dir" fi for tor_tryextra in "(none)" "-Wl,-R$tor_trydir" "-R$tor_trydir" \ "-Wl,-rpath,$tor_trydir" ; do if test "$tor_tryextra" = "(none)"; then LDFLAGS="$orig_LDFLAGS" else LDFLAGS="$tor_tryextra $orig_LDFLAGS" fi if test "$cross_compiling" = yes; then : { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run test program while cross compiling See \`config.log' for more details" "$LINENO" 5; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef _WIN32 #include #endif void exit(int); void *event_init(void); int main () { #ifdef _WIN32 {WSADATA d; WSAStartup(0x101,&d); } #endif event_init(); exit(0); ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : runnable=yes else runnable=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi if test "$runnable" = yes; then tor_cv_library_libevent_linker_option=$tor_tryextra break fi done if test "$runnable" = no; then as_fn_error $? "Found linkable libevent in $tor_cv_library_libevent_dir, but it does not seem to run, even with -R. Maybe specify another using --with-libevent-dir}" "$LINENO" 5 fi LDFLAGS="$orig_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_library_libevent_linker_option" >&5 $as_echo "$tor_cv_library_libevent_linker_option" >&6; } if test "$tor_cv_library_libevent_linker_option" != "(none)" ; then TOR_LDFLAGS_libevent="$TOR_LDFLAGS_libevent $tor_cv_library_libevent_linker_option" fi fi # cross-compile LIBS="$tor_saved_LIBS" LDFLAGS="$tor_saved_LDFLAGS" CPPFLAGS="$tor_saved_CPPFLAGS" save_LIBS="$LIBS" save_LDFLAGS="$LDFLAGS" save_CPPFLAGS="$CPPFLAGS" LIBS="-levent $STATIC_LIBEVENT_FLAGS $TOR_LIB_WS32 $LIBS" LDFLAGS="$TOR_LDFLAGS_libevent $LDFLAGS" CPPFLAGS="$TOR_CPPFLAGS_libevent $CPPFLAGS" for ac_func in event_get_version_number \ evutil_secure_rng_set_urandom_device_file \ evutil_secure_rng_init \ do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done ac_fn_c_check_member "$LINENO" "struct event" "min_heap_idx" "ac_cv_member_struct_event_min_heap_idx" "#include " if test "x$ac_cv_member_struct_event_min_heap_idx" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_EVENT_MIN_HEAP_IDX 1 _ACEOF fi for ac_header in event2/event.h event2/dns.h event2/bufferevent_ssl.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done LIBS="$save_LIBS" LDFLAGS="$save_LDFLAGS" CPPFLAGS="$save_CPPFLAGS" if test x$ac_cv_header_event2_dns_h = xyes; then USE_EXTERNAL_EVDNS_TRUE= USE_EXTERNAL_EVDNS_FALSE='#' else USE_EXTERNAL_EVDNS_TRUE='#' USE_EXTERNAL_EVDNS_FALSE= fi if test "$enable_static_libevent" = "yes"; then if test "$tor_cv_library_libevent_dir" = "(system)"; then as_fn_error $? "\"You must specify an explicit --with-libevent-dir=x option when using --enable-static-libevent\"" "$LINENO" 5 else TOR_LIBEVENT_LIBS="$TOR_LIBDIR_libevent/libevent.a $STATIC_LIBEVENT_FLAGS" fi else TOR_LIBEVENT_LIBS="-levent" fi if test "$enable_bufferevents" = "yes" ; then if test "$ac_cv_header_event2_bufferevent_ssl_h" != "yes" ; then as_fn_error $? "You've asked for bufferevent support, but you're using a version of Libevent without SSL support. This won't work. We need Libevent 2.0.8-rc or later, and you don't seem to even have Libevent 2.0.3-alpha." "$LINENO" 5 else CPPFLAGS="$CPPFLAGS $TOR_CPPFLAGS_libevent" # Check for the right version. First see if version detection works. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we can detect the Libevent version" >&5 $as_echo_n "checking whether we can detect the Libevent version... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #if !defined(LIBEVENT_VERSION_NUMBER) || LIBEVENT_VERSION_NUMBER < 10 #error int x = y(zz); #else int x = 1; #endif _ACEOF if ac_fn_c_try_compile "$LINENO"; then : event_version_number_works=yes; { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else event_version_number_works=no; { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test "$event_version_number_works" != 'yes'; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Version detection on Libevent seems broken. Your Libevent installation is probably screwed up or very old." >&5 $as_echo "$as_me: WARNING: Version detection on Libevent seems broken. Your Libevent installation is probably screwed up or very old." >&2;} else { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether Libevent is new enough for bufferevents" >&5 $as_echo_n "checking whether Libevent is new enough for bufferevents... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #if !defined(LIBEVENT_VERSION_NUMBER) || LIBEVENT_VERSION_NUMBER < 0x02000d00 #error int x = y(zz); #else int x = 1; #endif _ACEOF if ac_fn_c_try_compile "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } as_fn_error $? "Libevent does not seem new enough to support bufferevents. We require 2.0.13-stable or later" "$LINENO" 5 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi fi fi LIBS="$save_LIBS" LDFLAGS="$save_LDFLAGS" CPPFLAGS="$save_CPPFLAGS" if test "$enable_bufferevents" = "yes"; then USE_BUFFEREVENTS_TRUE= USE_BUFFEREVENTS_FALSE='#' else USE_BUFFEREVENTS_TRUE='#' USE_BUFFEREVENTS_FALSE= fi if test "$enable_bufferevents" = "yes"; then $as_echo "#define USE_BUFFEREVENTS 1" >>confdefs.h if test "$enable_static_libevent" = "yes"; then TOR_LIBEVENT_LIBS="$TOR_LIBDIR_libevent/libevent_openssl.a $TOR_LIBEVENT_LIBS" else TOR_LIBEVENT_LIBS="-levent_openssl $TOR_LIBEVENT_LIBS" fi fi TOR_LIB_MATH="" save_LIBS="$LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing pow" >&5 $as_echo_n "checking for library containing pow... " >&6; } if ${ac_cv_search_pow+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char pow (); int main () { return pow (); ; return 0; } _ACEOF for ac_lib in '' m; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_pow=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_pow+:} false; then : break fi done if ${ac_cv_search_pow+:} false; then : else ac_cv_search_pow=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_pow" >&5 $as_echo "$ac_cv_search_pow" >&6; } ac_res=$ac_cv_search_pow if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" else as_fn_error $? "Could not find pow in libm or libc." "$LINENO" 5 fi if test "$ac_cv_search_pow" != "none required"; then TOR_LIB_MATH="$ac_cv_search_pow" fi LIBS="$save_LIBS" tor_openssl_pkg_redhat="openssl" tor_openssl_pkg_debian="libssl-dev" tor_openssl_devpkg_redhat="openssl-devel" tor_openssl_devpkg_debian="libssl-dev" ALT_openssl_WITHVAL="" # Check whether --with-ssl-dir was given. if test "${with_ssl_dir+set}" = set; then : withval=$with_ssl_dir; if test "x$withval" != xno && test "x$withval" != "x" ; then ALT_openssl_WITHVAL="$withval" fi fi tryopenssldir="" # Check whether --with-openssl-dir was given. if test "${with_openssl_dir+set}" = set; then : withval=$with_openssl_dir; if test x$withval != xno ; then tryopenssldir="$withval" fi fi if test "x$tryopenssldir" = x && test "x$ALT_openssl_WITHVAL" != x ; then tryopenssldir="$ALT_openssl_WITHVAL" fi tor_saved_LIBS="$LIBS" tor_saved_LDFLAGS="$LDFLAGS" tor_saved_CPPFLAGS="$CPPFLAGS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for openssl directory" >&5 $as_echo_n "checking for openssl directory... " >&6; } if ${tor_cv_library_openssl_dir+:} false; then : $as_echo_n "(cached) " >&6 else tor_openssl_dir_found=no tor_openssl_any_linkable=no for tor_trydir in "$tryopenssldir" "(system)" "$prefix" /usr/local /usr/pkg /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/athena /opt/openssl; do LDFLAGS="$tor_saved_LDFLAGS" LIBS="$tor_saved_LIBS -lssl -lcrypto $TOR_LIB_GDI" CPPFLAGS="$tor_saved_CPPFLAGS" if test -z "$tor_trydir" ; then continue; fi # Skip the directory if it isn't there. if test ! -d "$tor_trydir" && test "$tor_trydir" != "(system)"; then continue; fi # If this isn't blank, try adding the directory (or appropriate # include/libs subdirectories) to the command line. if test "$tor_trydir" != "(system)"; then if test -d "$tor_trydir/lib"; then LDFLAGS="-L$tor_trydir/lib $LDFLAGS" else LDFLAGS="-L$tor_trydir $LDFLAGS" fi if test -d "$tor_trydir/include"; then CPPFLAGS="-I$tor_trydir/include $CPPFLAGS" else CPPFLAGS="-I$tor_trydir $CPPFLAGS" fi fi # Can we link against (but not necessarily run, or find the headers for) # the binary? cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ void RAND_add(const void *buf, int num, double entropy); int main () { RAND_add((void*)0,0,0); exit(0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : linkable=yes else linkable=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$linkable" = yes; then tor_openssl_any_linkable=yes # Okay, we can link against it. Can we find the headers? cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { RAND_add((void*)0,0,0); exit(0); ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : buildable=yes else buildable=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test "$buildable" = yes; then tor_cv_library_openssl_dir=$tor_trydir tor_openssl_dir_found=yes break fi fi done if test "$tor_openssl_dir_found" = no; then if test "$tor_openssl_any_linkable" = no ; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Could not find a linkable openssl. If you have it installed somewhere unusual, you can specify an explicit path using --with-openssl-dir" >&5 $as_echo "$as_me: WARNING: Could not find a linkable openssl. If you have it installed somewhere unusual, you can specify an explicit path using --with-openssl-dir" >&2;} h="" if test xpkg = xdevpkg; then h=" headers for" fi if test -f /etc/debian_version && test x"$tor_openssl_pkg_debian" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On Debian, you can install$h openssl using \"apt-get install $tor_openssl_pkg_debian\"" >&5 $as_echo "$as_me: WARNING: On Debian, you can install$h openssl using \"apt-get install $tor_openssl_pkg_debian\"" >&2;} if test x"$tor_openssl_pkg_debian" != x"$tor_openssl_devpkg_debian"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need $tor_openssl_devpkg_debian too." >&5 $as_echo "$as_me: WARNING: You will probably need $tor_openssl_devpkg_debian too." >&2;} fi fi if test -f /etc/fedora-release && test x"$tor_openssl_pkg_redhat" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On Fedora Core, you can install$h openssl using \"yum install $tor_openssl_pkg_redhat\"" >&5 $as_echo "$as_me: WARNING: On Fedora Core, you can install$h openssl using \"yum install $tor_openssl_pkg_redhat\"" >&2;} if test x"$tor_openssl_pkg_redhat" != x"$tor_openssl_devpkg_redhat"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need to install $tor_openssl_devpkg_redhat too." >&5 $as_echo "$as_me: WARNING: You will probably need to install $tor_openssl_devpkg_redhat too." >&2;} fi else if test -f /etc/redhat-release && test x"$tor_openssl_pkg_redhat" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On most Redhat-based systems, you can get$h openssl by installing the $tor_openssl_pkg_redhat RPM package" >&5 $as_echo "$as_me: WARNING: On most Redhat-based systems, you can get$h openssl by installing the $tor_openssl_pkg_redhat RPM package" >&2;} if test x"$tor_openssl_pkg_redhat" != x"$tor_openssl_devpkg_redhat"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need to install $tor_openssl_devpkg_redhat too." >&5 $as_echo "$as_me: WARNING: You will probably need to install $tor_openssl_devpkg_redhat too." >&2;} fi fi fi as_fn_error $? "Missing libraries; unable to proceed." "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: We found the libraries for openssl, but we could not find the C header files. You may need to install a devel package." >&5 $as_echo "$as_me: WARNING: We found the libraries for openssl, but we could not find the C header files. You may need to install a devel package." >&2;} h="" if test xdevpkg = xdevpkg; then h=" headers for" fi if test -f /etc/debian_version && test x"$tor_openssl_devpkg_debian" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On Debian, you can install$h openssl using \"apt-get install $tor_openssl_devpkg_debian\"" >&5 $as_echo "$as_me: WARNING: On Debian, you can install$h openssl using \"apt-get install $tor_openssl_devpkg_debian\"" >&2;} if test x"$tor_openssl_devpkg_debian" != x"$tor_openssl_devpkg_debian"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need $tor_openssl_devpkg_debian too." >&5 $as_echo "$as_me: WARNING: You will probably need $tor_openssl_devpkg_debian too." >&2;} fi fi if test -f /etc/fedora-release && test x"$tor_openssl_devpkg_redhat" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On Fedora Core, you can install$h openssl using \"yum install $tor_openssl_devpkg_redhat\"" >&5 $as_echo "$as_me: WARNING: On Fedora Core, you can install$h openssl using \"yum install $tor_openssl_devpkg_redhat\"" >&2;} if test x"$tor_openssl_devpkg_redhat" != x"$tor_openssl_devpkg_redhat"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need to install $tor_openssl_devpkg_redhat too." >&5 $as_echo "$as_me: WARNING: You will probably need to install $tor_openssl_devpkg_redhat too." >&2;} fi else if test -f /etc/redhat-release && test x"$tor_openssl_devpkg_redhat" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On most Redhat-based systems, you can get$h openssl by installing the $tor_openssl_devpkg_redhat RPM package" >&5 $as_echo "$as_me: WARNING: On most Redhat-based systems, you can get$h openssl by installing the $tor_openssl_devpkg_redhat RPM package" >&2;} if test x"$tor_openssl_devpkg_redhat" != x"$tor_openssl_devpkg_redhat"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need to install $tor_openssl_devpkg_redhat too." >&5 $as_echo "$as_me: WARNING: You will probably need to install $tor_openssl_devpkg_redhat too." >&2;} fi fi fi as_fn_error $? "Missing headers; unable to proceed." "$LINENO" 5 fi fi LDFLAGS="$tor_saved_LDFLAGS" LIBS="$tor_saved_LIBS" CPPFLAGS="$tor_saved_CPPFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_library_openssl_dir" >&5 $as_echo "$tor_cv_library_openssl_dir" >&6; } LIBS="$LIBS -lssl -lcrypto $TOR_LIB_GDI" if test "$tor_cv_library_openssl_dir" != "(system)"; then if test -d "$tor_cv_library_openssl_dir/lib"; then LDFLAGS="-L$tor_cv_library_openssl_dir/lib $LDFLAGS" else LDFLAGS="-L$tor_cv_library_openssl_dir $LDFLAGS" fi if test -d "$tor_cv_library_openssl_dir/include"; then CPPFLAGS="-I$tor_cv_library_openssl_dir/include $CPPFLAGS" else CPPFLAGS="-I$tor_cv_library_openssl_dir $CPPFLAGS" fi fi if test x$tor_cv_library_openssl_dir = "x(system)"; then TOR_LDFLAGS_openssl="" TOR_CPPFLAGS_openssl="" else if test -d "$tor_cv_library_openssl_dir/lib"; then TOR_LDFLAGS_openssl="-L$tor_cv_library_openssl_dir/lib" TOR_LIBDIR_openssl="$tor_cv_library_openssl_dir/lib" else TOR_LDFLAGS_openssl="-L$tor_cv_library_openssl_dir" TOR_LIBDIR_openssl="$tor_cv_library_openssl_dir" fi if test -d "$tor_cv_library_openssl_dir/include"; then TOR_CPPFLAGS_openssl="-I$tor_cv_library_openssl_dir/include" else TOR_CPPFLAGS_openssl="-I$tor_cv_library_openssl_dir" fi fi if test "$cross_compiling" != yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need extra options to link openssl" >&5 $as_echo_n "checking whether we need extra options to link openssl... " >&6; } if ${tor_cv_library_openssl_linker_option+:} false; then : $as_echo_n "(cached) " >&6 else orig_LDFLAGS="$LDFLAGS" runs=no linked_with=nothing if test -d "$tor_cv_library_openssl_dir/lib"; then tor_trydir="$tor_cv_library_openssl_dir/lib" else tor_trydir="$tor_cv_library_openssl_dir" fi for tor_tryextra in "(none)" "-Wl,-R$tor_trydir" "-R$tor_trydir" \ "-Wl,-rpath,$tor_trydir" ; do if test "$tor_tryextra" = "(none)"; then LDFLAGS="$orig_LDFLAGS" else LDFLAGS="$tor_tryextra $orig_LDFLAGS" fi if test "$cross_compiling" = yes; then : { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run test program while cross compiling See \`config.log' for more details" "$LINENO" 5; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ void RAND_add(const void *buf, int num, double entropy); int main () { RAND_add((void*)0,0,0); exit(0); ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : runnable=yes else runnable=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi if test "$runnable" = yes; then tor_cv_library_openssl_linker_option=$tor_tryextra break fi done if test "$runnable" = no; then as_fn_error $? "Found linkable openssl in $tor_cv_library_openssl_dir, but it does not seem to run, even with -R. Maybe specify another using --with-openssl-dir}" "$LINENO" 5 fi LDFLAGS="$orig_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_library_openssl_linker_option" >&5 $as_echo "$tor_cv_library_openssl_linker_option" >&6; } if test "$tor_cv_library_openssl_linker_option" != "(none)" ; then TOR_LDFLAGS_openssl="$TOR_LDFLAGS_openssl $tor_cv_library_openssl_linker_option" fi fi # cross-compile LIBS="$tor_saved_LIBS" LDFLAGS="$tor_saved_LDFLAGS" CPPFLAGS="$tor_saved_CPPFLAGS" if test "$enable_static_openssl" = "yes"; then if test "$tor_cv_library_openssl_dir" = "(system)"; then as_fn_error $? "\"You must specify an explicit --with-openssl-dir=x option when using --enable-static-openssl\"" "$LINENO" 5 else TOR_OPENSSL_LIBS="$TOR_LIBDIR_openssl/libssl.a $TOR_LIBDIR_openssl/libcrypto.a" fi else TOR_OPENSSL_LIBS="-lssl -lcrypto" fi save_LIBS="$LIBS" save_LDFLAGS="$LDFLAGS" save_CPPFLAGS="$CPPFLAGS" LIBS="$TOR_OPENSSL_LIBS $LIBS" LDFLAGS="$TOR_LDFLAGS_openssl $LDFLAGS" CPPFLAGS="$TOR_CPPFLAGS_openssl $CPPFLAGS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #if OPENSSL_VERSION_NUMBER < 0x1000000fL #error "too old" #endif int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : : else as_fn_error $? "OpenSSL is too old. We require 1.0.0 or later. You can specify a path to a newer one with --with-openssl-dir." "$LINENO" 5 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if defined(OPENSSL_NO_EC) || defined(OPENSSL_NO_ECDH) || defined(OPENSSL_NO_ECDSA) #error "no ECC" #endif #if !defined(NID_X9_62_prime256v1) || !defined(NID_secp224r1) #error "curves unavailable" #endif int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : : else as_fn_error $? "OpenSSL is built without full ECC support, including curves P256 and P224. You can specify a path to one with ECC support with --with-openssl-dir." "$LINENO" 5 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_fn_c_check_member "$LINENO" "struct ssl_method_st" "get_cipher_by_char" "ac_cv_member_struct_ssl_method_st_get_cipher_by_char" "#include " if test "x$ac_cv_member_struct_ssl_method_st_get_cipher_by_char" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_SSL_METHOD_ST_GET_CIPHER_BY_CHAR 1 _ACEOF fi for ac_func in \ SSL_SESSION_get_master_key \ SSL_get_server_random \ SSL_get_client_ciphers \ SSL_get_client_random \ SSL_CIPHER_find \ TLS_method do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done for ac_func in EVP_PBE_scrypt do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done LIBS="$save_LIBS" LDFLAGS="$save_LDFLAGS" CPPFLAGS="$save_CPPFLAGS" tor_zlib_pkg_redhat="zlib" tor_zlib_pkg_debian="zlib1g" tor_zlib_devpkg_redhat="zlib-devel" tor_zlib_devpkg_debian="zlib1g-dev" tryzlibdir="" # Check whether --with-zlib-dir was given. if test "${with_zlib_dir+set}" = set; then : withval=$with_zlib_dir; if test x$withval != xno ; then tryzlibdir="$withval" fi fi if test "x$tryzlibdir" = x && test "x$ALT_zlib_WITHVAL" != x ; then tryzlibdir="$ALT_zlib_WITHVAL" fi tor_saved_LIBS="$LIBS" tor_saved_LDFLAGS="$LDFLAGS" tor_saved_CPPFLAGS="$CPPFLAGS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for zlib directory" >&5 $as_echo_n "checking for zlib directory... " >&6; } if ${tor_cv_library_zlib_dir+:} false; then : $as_echo_n "(cached) " >&6 else tor_zlib_dir_found=no tor_zlib_any_linkable=no for tor_trydir in "$tryzlibdir" "(system)" "$prefix" /usr/local /usr/pkg /opt/zlib; do LDFLAGS="$tor_saved_LDFLAGS" LIBS="$tor_saved_LIBS -lz" CPPFLAGS="$tor_saved_CPPFLAGS" if test -z "$tor_trydir" ; then continue; fi # Skip the directory if it isn't there. if test ! -d "$tor_trydir" && test "$tor_trydir" != "(system)"; then continue; fi # If this isn't blank, try adding the directory (or appropriate # include/libs subdirectories) to the command line. if test "$tor_trydir" != "(system)"; then if test -d "$tor_trydir/lib"; then LDFLAGS="-L$tor_trydir/lib $LDFLAGS" else LDFLAGS="-L$tor_trydir $LDFLAGS" fi if test -d "$tor_trydir/include"; then CPPFLAGS="-I$tor_trydir/include $CPPFLAGS" else CPPFLAGS="-I$tor_trydir $CPPFLAGS" fi fi # Can we link against (but not necessarily run, or find the headers for) # the binary? cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ const char * zlibVersion(void); int main () { zlibVersion(); exit(0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : linkable=yes else linkable=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$linkable" = yes; then tor_zlib_any_linkable=yes # Okay, we can link against it. Can we find the headers? cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { zlibVersion(); exit(0); ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : buildable=yes else buildable=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test "$buildable" = yes; then tor_cv_library_zlib_dir=$tor_trydir tor_zlib_dir_found=yes break fi fi done if test "$tor_zlib_dir_found" = no; then if test "$tor_zlib_any_linkable" = no ; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Could not find a linkable zlib. If you have it installed somewhere unusual, you can specify an explicit path using --with-zlib-dir" >&5 $as_echo "$as_me: WARNING: Could not find a linkable zlib. If you have it installed somewhere unusual, you can specify an explicit path using --with-zlib-dir" >&2;} h="" if test xpkg = xdevpkg; then h=" headers for" fi if test -f /etc/debian_version && test x"$tor_zlib_pkg_debian" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On Debian, you can install$h zlib using \"apt-get install $tor_zlib_pkg_debian\"" >&5 $as_echo "$as_me: WARNING: On Debian, you can install$h zlib using \"apt-get install $tor_zlib_pkg_debian\"" >&2;} if test x"$tor_zlib_pkg_debian" != x"$tor_zlib_devpkg_debian"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need $tor_zlib_devpkg_debian too." >&5 $as_echo "$as_me: WARNING: You will probably need $tor_zlib_devpkg_debian too." >&2;} fi fi if test -f /etc/fedora-release && test x"$tor_zlib_pkg_redhat" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On Fedora Core, you can install$h zlib using \"yum install $tor_zlib_pkg_redhat\"" >&5 $as_echo "$as_me: WARNING: On Fedora Core, you can install$h zlib using \"yum install $tor_zlib_pkg_redhat\"" >&2;} if test x"$tor_zlib_pkg_redhat" != x"$tor_zlib_devpkg_redhat"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need to install $tor_zlib_devpkg_redhat too." >&5 $as_echo "$as_me: WARNING: You will probably need to install $tor_zlib_devpkg_redhat too." >&2;} fi else if test -f /etc/redhat-release && test x"$tor_zlib_pkg_redhat" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On most Redhat-based systems, you can get$h zlib by installing the $tor_zlib_pkg_redhat RPM package" >&5 $as_echo "$as_me: WARNING: On most Redhat-based systems, you can get$h zlib by installing the $tor_zlib_pkg_redhat RPM package" >&2;} if test x"$tor_zlib_pkg_redhat" != x"$tor_zlib_devpkg_redhat"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need to install $tor_zlib_devpkg_redhat too." >&5 $as_echo "$as_me: WARNING: You will probably need to install $tor_zlib_devpkg_redhat too." >&2;} fi fi fi as_fn_error $? "Missing libraries; unable to proceed." "$LINENO" 5 else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: We found the libraries for zlib, but we could not find the C header files. You may need to install a devel package." >&5 $as_echo "$as_me: WARNING: We found the libraries for zlib, but we could not find the C header files. You may need to install a devel package." >&2;} h="" if test xdevpkg = xdevpkg; then h=" headers for" fi if test -f /etc/debian_version && test x"$tor_zlib_devpkg_debian" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On Debian, you can install$h zlib using \"apt-get install $tor_zlib_devpkg_debian\"" >&5 $as_echo "$as_me: WARNING: On Debian, you can install$h zlib using \"apt-get install $tor_zlib_devpkg_debian\"" >&2;} if test x"$tor_zlib_devpkg_debian" != x"$tor_zlib_devpkg_debian"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need $tor_zlib_devpkg_debian too." >&5 $as_echo "$as_me: WARNING: You will probably need $tor_zlib_devpkg_debian too." >&2;} fi fi if test -f /etc/fedora-release && test x"$tor_zlib_devpkg_redhat" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On Fedora Core, you can install$h zlib using \"yum install $tor_zlib_devpkg_redhat\"" >&5 $as_echo "$as_me: WARNING: On Fedora Core, you can install$h zlib using \"yum install $tor_zlib_devpkg_redhat\"" >&2;} if test x"$tor_zlib_devpkg_redhat" != x"$tor_zlib_devpkg_redhat"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need to install $tor_zlib_devpkg_redhat too." >&5 $as_echo "$as_me: WARNING: You will probably need to install $tor_zlib_devpkg_redhat too." >&2;} fi else if test -f /etc/redhat-release && test x"$tor_zlib_devpkg_redhat" != x; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: On most Redhat-based systems, you can get$h zlib by installing the $tor_zlib_devpkg_redhat RPM package" >&5 $as_echo "$as_me: WARNING: On most Redhat-based systems, you can get$h zlib by installing the $tor_zlib_devpkg_redhat RPM package" >&2;} if test x"$tor_zlib_devpkg_redhat" != x"$tor_zlib_devpkg_redhat"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You will probably need to install $tor_zlib_devpkg_redhat too." >&5 $as_echo "$as_me: WARNING: You will probably need to install $tor_zlib_devpkg_redhat too." >&2;} fi fi fi as_fn_error $? "Missing headers; unable to proceed." "$LINENO" 5 fi fi LDFLAGS="$tor_saved_LDFLAGS" LIBS="$tor_saved_LIBS" CPPFLAGS="$tor_saved_CPPFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_library_zlib_dir" >&5 $as_echo "$tor_cv_library_zlib_dir" >&6; } LIBS="$LIBS -lz" if test "$tor_cv_library_zlib_dir" != "(system)"; then if test -d "$tor_cv_library_zlib_dir/lib"; then LDFLAGS="-L$tor_cv_library_zlib_dir/lib $LDFLAGS" else LDFLAGS="-L$tor_cv_library_zlib_dir $LDFLAGS" fi if test -d "$tor_cv_library_zlib_dir/include"; then CPPFLAGS="-I$tor_cv_library_zlib_dir/include $CPPFLAGS" else CPPFLAGS="-I$tor_cv_library_zlib_dir $CPPFLAGS" fi fi if test x$tor_cv_library_zlib_dir = "x(system)"; then TOR_LDFLAGS_zlib="" TOR_CPPFLAGS_zlib="" else if test -d "$tor_cv_library_zlib_dir/lib"; then TOR_LDFLAGS_zlib="-L$tor_cv_library_zlib_dir/lib" TOR_LIBDIR_zlib="$tor_cv_library_zlib_dir/lib" else TOR_LDFLAGS_zlib="-L$tor_cv_library_zlib_dir" TOR_LIBDIR_zlib="$tor_cv_library_zlib_dir" fi if test -d "$tor_cv_library_zlib_dir/include"; then TOR_CPPFLAGS_zlib="-I$tor_cv_library_zlib_dir/include" else TOR_CPPFLAGS_zlib="-I$tor_cv_library_zlib_dir" fi fi if test "$cross_compiling" != yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need extra options to link zlib" >&5 $as_echo_n "checking whether we need extra options to link zlib... " >&6; } if ${tor_cv_library_zlib_linker_option+:} false; then : $as_echo_n "(cached) " >&6 else orig_LDFLAGS="$LDFLAGS" runs=no linked_with=nothing if test -d "$tor_cv_library_zlib_dir/lib"; then tor_trydir="$tor_cv_library_zlib_dir/lib" else tor_trydir="$tor_cv_library_zlib_dir" fi for tor_tryextra in "(none)" "-Wl,-R$tor_trydir" "-R$tor_trydir" \ "-Wl,-rpath,$tor_trydir" ; do if test "$tor_tryextra" = "(none)"; then LDFLAGS="$orig_LDFLAGS" else LDFLAGS="$tor_tryextra $orig_LDFLAGS" fi if test "$cross_compiling" = yes; then : { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run test program while cross compiling See \`config.log' for more details" "$LINENO" 5; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ const char * zlibVersion(void); int main () { zlibVersion(); exit(0); ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : runnable=yes else runnable=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi if test "$runnable" = yes; then tor_cv_library_zlib_linker_option=$tor_tryextra break fi done if test "$runnable" = no; then as_fn_error $? "Found linkable zlib in $tor_cv_library_zlib_dir, but it does not seem to run, even with -R. Maybe specify another using --with-zlib-dir}" "$LINENO" 5 fi LDFLAGS="$orig_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_library_zlib_linker_option" >&5 $as_echo "$tor_cv_library_zlib_linker_option" >&6; } if test "$tor_cv_library_zlib_linker_option" != "(none)" ; then TOR_LDFLAGS_zlib="$TOR_LDFLAGS_zlib $tor_cv_library_zlib_linker_option" fi fi # cross-compile LIBS="$tor_saved_LIBS" LDFLAGS="$tor_saved_LDFLAGS" CPPFLAGS="$tor_saved_CPPFLAGS" if test "$enable_static_zlib" = "yes"; then if test "$tor_cv_library_zlib_dir" = "(system)"; then as_fn_error $? "\"You must specify an explicit --with-zlib-dir=x option when using --enable-static-zlib\"" "$LINENO" 5 else TOR_ZLIB_LIBS="$TOR_LIBDIR_zlib/libz.a" fi else TOR_ZLIB_LIBS="-lz" fi all_ldflags_for_check="$TOR_LDFLAGS_zlib $TOR_LDFLAGS_openssl $TOR_LDFLAGS_libevent" all_libs_for_check="$TOR_ZLIB_LIBS $TOR_LIB_MATH $TOR_LIBEVENT_LIBS $TOR_OPENSSL_LIBS $TOR_SYSTEMD_LIBS $TOR_LIB_WS32 $TOR_LIB_GDI" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #if !defined(__clang__) #error #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : have_clang=yes else have_clang=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test x$enable_gcc_hardening != xno; then CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2" if test x$have_clang = xyes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler accepts -Qunused-arguments" >&5 $as_echo_n "checking whether the compiler accepts -Qunused-arguments... " >&6; } if ${tor_cv_cflags__Qunused_arguments+:} false; then : $as_echo_n "(cached) " >&6 else tor_saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -pedantic -Werror -Qunused-arguments" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : tor_cv_cflags__Qunused_arguments=yes else tor_cv_cflags__Qunused_arguments=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test x != x; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : tor_can_link__Qunused_arguments=yes else tor_can_link__Qunused_arguments=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CFLAGS="$tor_saved_CFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_cflags__Qunused_arguments" >&5 $as_echo "$tor_cv_cflags__Qunused_arguments" >&6; } if test x$tor_cv_cflags__Qunused_arguments = xyes; then CFLAGS="$CFLAGS -Qunused-arguments" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler accepts -fstack-protector-all" >&5 $as_echo_n "checking whether the compiler accepts -fstack-protector-all... " >&6; } if ${tor_cv_cflags__fstack_protector_all+:} false; then : $as_echo_n "(cached) " >&6 else tor_saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -pedantic -Werror -fstack-protector-all" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : tor_cv_cflags__fstack_protector_all=yes else tor_cv_cflags__fstack_protector_all=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test xalso_link != x; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : tor_can_link__fstack_protector_all=yes else tor_can_link__fstack_protector_all=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CFLAGS="$tor_saved_CFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_cflags__fstack_protector_all" >&5 $as_echo "$tor_cv_cflags__fstack_protector_all" >&6; } if test x$tor_cv_cflags__fstack_protector_all = xyes; then CFLAGS="$CFLAGS -fstack-protector-all" fi if test "x$tor_cv_cflags__fstack_protector_all" = xyes; then : if test "x$tor_can_link__fstack_protector_all" = xyes; then : else as_fn_error $? "We tried to build with stack protection; it looks like your compiler supports it but your libc does not provide it. Are you missing libssp? (You can --disable-gcc-hardening to ignore this error.)" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler accepts -Wstack-protector" >&5 $as_echo_n "checking whether the compiler accepts -Wstack-protector... " >&6; } if ${tor_cv_cflags__Wstack_protector+:} false; then : $as_echo_n "(cached) " >&6 else tor_saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -pedantic -Werror -Wstack-protector" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : tor_cv_cflags__Wstack_protector=yes else tor_cv_cflags__Wstack_protector=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test x != x; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : tor_can_link__Wstack_protector=yes else tor_can_link__Wstack_protector=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CFLAGS="$tor_saved_CFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_cflags__Wstack_protector" >&5 $as_echo "$tor_cv_cflags__Wstack_protector" >&6; } if test x$tor_cv_cflags__Wstack_protector = xyes; then CFLAGS="$CFLAGS -Wstack-protector" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler accepts -fwrapv" >&5 $as_echo_n "checking whether the compiler accepts -fwrapv... " >&6; } if ${tor_cv_cflags__fwrapv+:} false; then : $as_echo_n "(cached) " >&6 else tor_saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -pedantic -Werror -fwrapv" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : tor_cv_cflags__fwrapv=yes else tor_cv_cflags__fwrapv=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test x != x; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : tor_can_link__fwrapv=yes else tor_can_link__fwrapv=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CFLAGS="$tor_saved_CFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_cflags__fwrapv" >&5 $as_echo "$tor_cv_cflags__fwrapv" >&6; } if test x$tor_cv_cflags__fwrapv = xyes; then CFLAGS="$CFLAGS -fwrapv" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler accepts --param ssp-buffer-size=1" >&5 $as_echo_n "checking whether the compiler accepts --param ssp-buffer-size=1... " >&6; } if ${tor_cv_cflags___param_ssp_buffer_size_1+:} false; then : $as_echo_n "(cached) " >&6 else tor_saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -pedantic -Werror --param ssp-buffer-size=1" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : tor_cv_cflags___param_ssp_buffer_size_1=yes else tor_cv_cflags___param_ssp_buffer_size_1=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test x != x; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : tor_can_link___param_ssp_buffer_size_1=yes else tor_can_link___param_ssp_buffer_size_1=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CFLAGS="$tor_saved_CFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_cflags___param_ssp_buffer_size_1" >&5 $as_echo "$tor_cv_cflags___param_ssp_buffer_size_1" >&6; } if test x$tor_cv_cflags___param_ssp_buffer_size_1 = xyes; then CFLAGS="$CFLAGS --param ssp-buffer-size=1" fi if test "$bwin32" = "false"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler accepts -fPIE" >&5 $as_echo_n "checking whether the compiler accepts -fPIE... " >&6; } if ${tor_cv_cflags__fPIE+:} false; then : $as_echo_n "(cached) " >&6 else tor_saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -pedantic -Werror -fPIE" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : tor_cv_cflags__fPIE=yes else tor_cv_cflags__fPIE=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test x != x; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : tor_can_link__fPIE=yes else tor_can_link__fPIE=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CFLAGS="$tor_saved_CFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_cflags__fPIE" >&5 $as_echo "$tor_cv_cflags__fPIE" >&6; } if test x$tor_cv_cflags__fPIE = xyes; then CFLAGS="$CFLAGS -fPIE" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -pie" >&5 $as_echo_n "checking whether the linker accepts -pie... " >&6; } if ${tor_cv_ldflags__pie+:} false; then : $as_echo_n "(cached) " >&6 else tor_saved_CFLAGS="$CFLAGS" tor_saved_LDFLAGS="$LDFLAGS" tor_saved_LIBS="$LIBS" CFLAGS="$CFLAGS -pedantic -Werror" LDFLAGS="$LDFLAGS "$all_ldflags_for_check" -pie" LIBS="$LIBS "$all_libs_for_check"" if test "$cross_compiling" = yes; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : tor_cv_ldflags__pie=yes else tor_cv_ldflags__pie=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { fputs("", stdout) ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : tor_cv_ldflags__pie=yes else tor_cv_ldflags__pie=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi CFLAGS="$tor_saved_CFLAGS" LDFLAGS="$tor_saved_LDFLAGS" LIBS="$tor_saved_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_ldflags__pie" >&5 $as_echo "$tor_cv_ldflags__pie" >&6; } if test x$tor_cv_ldflags__pie = xyes; then LDFLAGS="$LDFLAGS -pie" fi fi fi if test x$enable_expensive_hardening = xyes ; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler accepts -fsanitize=address" >&5 $as_echo_n "checking whether the compiler accepts -fsanitize=address... " >&6; } if ${tor_cv_cflags__fsanitize_address+:} false; then : $as_echo_n "(cached) " >&6 else tor_saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -pedantic -Werror -fsanitize=address" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : tor_cv_cflags__fsanitize_address=yes else tor_cv_cflags__fsanitize_address=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test x != x; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : tor_can_link__fsanitize_address=yes else tor_can_link__fsanitize_address=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CFLAGS="$tor_saved_CFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_cflags__fsanitize_address" >&5 $as_echo "$tor_cv_cflags__fsanitize_address" >&6; } if test x$tor_cv_cflags__fsanitize_address = xyes; then CFLAGS="$CFLAGS -fsanitize=address" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler accepts -fsanitize=undefined" >&5 $as_echo_n "checking whether the compiler accepts -fsanitize=undefined... " >&6; } if ${tor_cv_cflags__fsanitize_undefined+:} false; then : $as_echo_n "(cached) " >&6 else tor_saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -pedantic -Werror -fsanitize=undefined" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : tor_cv_cflags__fsanitize_undefined=yes else tor_cv_cflags__fsanitize_undefined=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test x != x; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : tor_can_link__fsanitize_undefined=yes else tor_can_link__fsanitize_undefined=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CFLAGS="$tor_saved_CFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_cflags__fsanitize_undefined" >&5 $as_echo "$tor_cv_cflags__fsanitize_undefined" >&6; } if test x$tor_cv_cflags__fsanitize_undefined = xyes; then CFLAGS="$CFLAGS -fsanitize=undefined" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler accepts -fno-omit-frame-pointer" >&5 $as_echo_n "checking whether the compiler accepts -fno-omit-frame-pointer... " >&6; } if ${tor_cv_cflags__fno_omit_frame_pointer+:} false; then : $as_echo_n "(cached) " >&6 else tor_saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -pedantic -Werror -fno-omit-frame-pointer" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : tor_cv_cflags__fno_omit_frame_pointer=yes else tor_cv_cflags__fno_omit_frame_pointer=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test x != x; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : tor_can_link__fno_omit_frame_pointer=yes else tor_can_link__fno_omit_frame_pointer=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CFLAGS="$tor_saved_CFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_cflags__fno_omit_frame_pointer" >&5 $as_echo "$tor_cv_cflags__fno_omit_frame_pointer" >&6; } if test x$tor_cv_cflags__fno_omit_frame_pointer = xyes; then CFLAGS="$CFLAGS -fno-omit-frame-pointer" fi fi if test x$enable_linker_hardening != xno; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -z relro -z now" >&5 $as_echo_n "checking whether the linker accepts -z relro -z now... " >&6; } if ${tor_cv_ldflags__z_relro__z_now+:} false; then : $as_echo_n "(cached) " >&6 else tor_saved_CFLAGS="$CFLAGS" tor_saved_LDFLAGS="$LDFLAGS" tor_saved_LIBS="$LIBS" CFLAGS="$CFLAGS -pedantic -Werror" LDFLAGS="$LDFLAGS "$all_ldflags_for_check" -z relro -z now" LIBS="$LIBS "$all_libs_for_check"" if test "$cross_compiling" = yes; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : tor_cv_ldflags__z_relro__z_now=yes else tor_cv_ldflags__z_relro__z_now=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { fputs("", stdout) ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : tor_cv_ldflags__z_relro__z_now=yes else tor_cv_ldflags__z_relro__z_now=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi CFLAGS="$tor_saved_CFLAGS" LDFLAGS="$tor_saved_LDFLAGS" LIBS="$tor_saved_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_ldflags__z_relro__z_now" >&5 $as_echo "$tor_cv_ldflags__z_relro__z_now" >&6; } if test x$tor_cv_ldflags__z_relro__z_now = xyes; then LDFLAGS="$LDFLAGS -z relro -z now" fi fi # For backtrace support { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -rdynamic" >&5 $as_echo_n "checking whether the linker accepts -rdynamic... " >&6; } if ${tor_cv_ldflags__rdynamic+:} false; then : $as_echo_n "(cached) " >&6 else tor_saved_CFLAGS="$CFLAGS" tor_saved_LDFLAGS="$LDFLAGS" tor_saved_LIBS="$LIBS" CFLAGS="$CFLAGS -pedantic -Werror" LDFLAGS="$LDFLAGS -rdynamic" LIBS="$LIBS " if test "$cross_compiling" = yes; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : tor_cv_ldflags__rdynamic=yes else tor_cv_ldflags__rdynamic=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { fputs("", stdout) ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : tor_cv_ldflags__rdynamic=yes else tor_cv_ldflags__rdynamic=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi CFLAGS="$tor_saved_CFLAGS" LDFLAGS="$tor_saved_LDFLAGS" LIBS="$tor_saved_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_ldflags__rdynamic" >&5 $as_echo "$tor_cv_ldflags__rdynamic" >&6; } if test x$tor_cv_ldflags__rdynamic = xyes; then LDFLAGS="$LDFLAGS -rdynamic" fi saved_CFLAGS="$CFLAGS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler accepts -fomit-frame-pointer" >&5 $as_echo_n "checking whether the compiler accepts -fomit-frame-pointer... " >&6; } if ${tor_cv_cflags__fomit_frame_pointer+:} false; then : $as_echo_n "(cached) " >&6 else tor_saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -pedantic -Werror -fomit-frame-pointer" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : tor_cv_cflags__fomit_frame_pointer=yes else tor_cv_cflags__fomit_frame_pointer=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test x != x; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : tor_can_link__fomit_frame_pointer=yes else tor_can_link__fomit_frame_pointer=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CFLAGS="$tor_saved_CFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_cflags__fomit_frame_pointer" >&5 $as_echo "$tor_cv_cflags__fomit_frame_pointer" >&6; } if test x$tor_cv_cflags__fomit_frame_pointer = xyes; then CFLAGS="$CFLAGS -fomit-frame-pointer" fi F_OMIT_FRAME_POINTER='' if test "$saved_CFLAGS" != "$CFLAGS"; then if test x$enable_expensive_hardening != xyes ; then F_OMIT_FRAME_POINTER='-fomit-frame-pointer' fi fi CFLAGS="$saved_CFLAGS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the compiler accepts -fasynchronous-unwind-tables" >&5 $as_echo_n "checking whether the compiler accepts -fasynchronous-unwind-tables... " >&6; } if ${tor_cv_cflags__fasynchronous_unwind_tables+:} false; then : $as_echo_n "(cached) " >&6 else tor_saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -pedantic -Werror -fasynchronous-unwind-tables" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : tor_cv_cflags__fasynchronous_unwind_tables=yes else tor_cv_cflags__fasynchronous_unwind_tables=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test x != x; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : tor_can_link__fasynchronous_unwind_tables=yes else tor_can_link__fasynchronous_unwind_tables=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CFLAGS="$tor_saved_CFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_cflags__fasynchronous_unwind_tables" >&5 $as_echo "$tor_cv_cflags__fasynchronous_unwind_tables" >&6; } if test x$tor_cv_cflags__fasynchronous_unwind_tables = xyes; then CFLAGS="$CFLAGS -fasynchronous-unwind-tables" fi if test "x$enable_seccomp" != "xno"; then for ac_header in seccomp.h do : ac_fn_c_check_header_mongrel "$LINENO" "seccomp.h" "ac_cv_header_seccomp_h" "$ac_includes_default" if test "x$ac_cv_header_seccomp_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_SECCOMP_H 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing seccomp_init" >&5 $as_echo_n "checking for library containing seccomp_init... " >&6; } if ${ac_cv_search_seccomp_init+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char seccomp_init (); int main () { return seccomp_init (); ; return 0; } _ACEOF for ac_lib in '' seccomp; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_seccomp_init=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_seccomp_init+:} false; then : break fi done if ${ac_cv_search_seccomp_init+:} false; then : else ac_cv_search_seccomp_init=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_seccomp_init" >&5 $as_echo "$ac_cv_search_seccomp_init" >&6; } ac_res=$ac_cv_search_seccomp_init if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi fi if test "x$enable_libscrypt" != "xno"; then for ac_header in libscrypt.h do : ac_fn_c_check_header_mongrel "$LINENO" "libscrypt.h" "ac_cv_header_libscrypt_h" "$ac_includes_default" if test "x$ac_cv_header_libscrypt_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBSCRYPT_H 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing libscrypt_scrypt" >&5 $as_echo_n "checking for library containing libscrypt_scrypt... " >&6; } if ${ac_cv_search_libscrypt_scrypt+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char libscrypt_scrypt (); int main () { return libscrypt_scrypt (); ; return 0; } _ACEOF for ac_lib in '' scrypt; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_libscrypt_scrypt=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_libscrypt_scrypt+:} false; then : break fi done if ${ac_cv_search_libscrypt_scrypt+:} false; then : else ac_cv_search_libscrypt_scrypt=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_libscrypt_scrypt" >&5 $as_echo "$ac_cv_search_libscrypt_scrypt" >&6; } ac_res=$ac_cv_search_libscrypt_scrypt if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi fi build_curve25519_donna=no build_curve25519_donna_c64=no use_curve25519_donna=no use_curve25519_nacl=no CURVE25519_LIBS= { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we can use curve25519-donna-c64" >&5 $as_echo_n "checking whether we can use curve25519-donna-c64... " >&6; } if ${tor_cv_can_use_curve25519_donna_c64+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include typedef unsigned uint128_t __attribute__((mode(TI))); int func(uint64_t a, uint64_t b) { uint128_t c = ((uint128_t)a) * b; int ok = ((uint64_t)(c>>96)) == 522859 && (((uint64_t)(c>>64))&0xffffffffL) == 3604448702L && (((uint64_t)(c>>32))&0xffffffffL) == 2351960064L && (((uint64_t)(c))&0xffffffffL) == 0; return ok; } int main () { int ok = func( ((uint64_t)2000000000) * 1000000000, ((uint64_t)1234567890) << 24); return !ok; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : tor_cv_can_use_curve25519_donna_c64=cross else tor_cv_can_use_curve25519_donna_c64=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include typedef unsigned uint128_t __attribute__((mode(TI))); int func(uint64_t a, uint64_t b) { uint128_t c = ((uint128_t)a) * b; int ok = ((uint64_t)(c>>96)) == 522859 && (((uint64_t)(c>>64))&0xffffffffL) == 3604448702L && (((uint64_t)(c>>32))&0xffffffffL) == 2351960064L && (((uint64_t)(c))&0xffffffffL) == 0; return ok; } int main () { int ok = func( ((uint64_t)2000000000) * 1000000000, ((uint64_t)1234567890) << 24); return !ok; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : tor_cv_can_use_curve25519_donna_c64=yes else tor_cv_can_use_curve25519_donna_c64=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_can_use_curve25519_donna_c64" >&5 $as_echo "$tor_cv_can_use_curve25519_donna_c64" >&6; } for ac_header in crypto_scalarmult_curve25519.h \ nacl/crypto_scalarmult_curve25519.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for nacl compiled with a fast curve25519 implementation" >&5 $as_echo_n "checking for nacl compiled with a fast curve25519 implementation... " >&6; } if ${tor_cv_can_use_curve25519_nacl+:} false; then : $as_echo_n "(cached) " >&6 else tor_saved_LIBS="$LIBS" LIBS="$LIBS -lnacl" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef HAVE_CRYPTO_SCALARMULT_CURVE25519_H #include #elif defined(HAVE_NACL_CRYPTO_SCALARMULT_CURVE25519_H) #include #endif #ifdef crypto_scalarmult_curve25519_ref_BYTES #error Hey, this is the reference implementation! That's not fast. #endif int main () { unsigned char *a, *b, *c; crypto_scalarmult_curve25519(a,b,c); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : tor_cv_can_use_curve25519_nacl=yes else tor_cv_can_use_curve25519_nacl=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$tor_saved_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_can_use_curve25519_nacl" >&5 $as_echo "$tor_cv_can_use_curve25519_nacl" >&6; } if test x$tor_cv_can_use_curve25519_donna_c64 != xno; then build_curve25519_donna_c64=yes use_curve25519_donna=yes elif test x$tor_cv_can_use_curve25519_nacl = xyes; then use_curve25519_nacl=yes CURVE25519_LIBS=-lnacl else build_curve25519_donna=yes use_curve25519_donna=yes fi if test x$use_curve25519_donna = xyes; then $as_echo "#define USE_CURVE25519_DONNA 1" >>confdefs.h fi if test x$use_curve25519_nacl = xyes; then $as_echo "#define USE_CURVE25519_NACL 1" >>confdefs.h fi if test x$build_curve25519_donna = xyes; then BUILD_CURVE25519_DONNA_TRUE= BUILD_CURVE25519_DONNA_FALSE='#' else BUILD_CURVE25519_DONNA_TRUE='#' BUILD_CURVE25519_DONNA_FALSE= fi if test x$build_curve25519_donna_c64 = xyes; then BUILD_CURVE25519_DONNA_C64_TRUE= BUILD_CURVE25519_DONNA_C64_FALSE='#' else BUILD_CURVE25519_DONNA_C64_TRUE='#' BUILD_CURVE25519_DONNA_C64_FALSE= fi # Check whether --enable-largefile was given. if test "${enable_largefile+set}" = set; then : enableval=$enable_largefile; fi if test "$enable_largefile" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5 $as_echo_n "checking for special C compiler options needed for large files... " >&6; } if ${ac_cv_sys_largefile_CC+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_sys_largefile_CC=no if test "$GCC" != yes; then ac_save_CC=$CC while :; do # IRIX 6.2 and later do not support large files by default, # so use the C compiler's -n32 option if that helps. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include /* Check that off_t can represent 2**63 - 1 correctly. We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : break fi rm -f core conftest.err conftest.$ac_objext CC="$CC -n32" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_sys_largefile_CC=' -n32'; break fi rm -f core conftest.err conftest.$ac_objext break done CC=$ac_save_CC rm -f conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5 $as_echo "$ac_cv_sys_largefile_CC" >&6; } if test "$ac_cv_sys_largefile_CC" != no; then CC=$CC$ac_cv_sys_largefile_CC fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5 $as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; } if ${ac_cv_sys_file_offset_bits+:} false; then : $as_echo_n "(cached) " >&6 else while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include /* Check that off_t can represent 2**63 - 1 correctly. We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_sys_file_offset_bits=no; break fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _FILE_OFFSET_BITS 64 #include /* Check that off_t can represent 2**63 - 1 correctly. We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_sys_file_offset_bits=64; break fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_sys_file_offset_bits=unknown break done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5 $as_echo "$ac_cv_sys_file_offset_bits" >&6; } case $ac_cv_sys_file_offset_bits in #( no | unknown) ;; *) cat >>confdefs.h <<_ACEOF #define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits _ACEOF ;; esac rm -rf conftest* if test $ac_cv_sys_file_offset_bits = unknown; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5 $as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; } if ${ac_cv_sys_large_files+:} false; then : $as_echo_n "(cached) " >&6 else while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include /* Check that off_t can represent 2**63 - 1 correctly. We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_sys_large_files=no; break fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _LARGE_FILES 1 #include /* Check that off_t can represent 2**63 - 1 correctly. We can't simply define LARGE_OFF_T to be 9223372036854775807, since some C++ compilers masquerading as C compilers incorrectly reject 9223372036854775807. */ #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? 1 : -1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_sys_large_files=1; break fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_sys_large_files=unknown break done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5 $as_echo "$ac_cv_sys_large_files" >&6; } case $ac_cv_sys_large_files in #( no | unknown) ;; *) cat >>confdefs.h <<_ACEOF #define _LARGE_FILES $ac_cv_sys_large_files _ACEOF ;; esac rm -rf conftest* fi fi for ac_header in assert.h \ errno.h \ fcntl.h \ signal.h \ string.h \ sys/fcntl.h \ sys/stat.h \ sys/time.h \ sys/types.h \ time.h \ unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Some headers were not found" >&5 $as_echo "$as_me: WARNING: Some headers were not found" >&2;} fi done for ac_header in arpa/inet.h \ crt_externs.h \ execinfo.h \ grp.h \ ifaddrs.h \ inttypes.h \ limits.h \ linux/types.h \ machine/limits.h \ malloc.h \ malloc/malloc.h \ malloc_np.h \ netdb.h \ netinet/in.h \ netinet/in6.h \ pwd.h \ readpassphrase.h \ stdint.h \ sys/eventfd.h \ sys/file.h \ sys/ioctl.h \ sys/limits.h \ sys/mman.h \ sys/param.h \ sys/prctl.h \ sys/resource.h \ sys/select.h \ sys/socket.h \ sys/statvfs.h \ sys/sysctl.h \ sys/syslimits.h \ sys/time.h \ sys/types.h \ sys/un.h \ sys/utime.h \ sys/wait.h \ syslog.h \ utime.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in sys/param.h do : ac_fn_c_check_header_mongrel "$LINENO" "sys/param.h" "ac_cv_header_sys_param_h" "$ac_includes_default" if test "x$ac_cv_header_sys_param_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_SYS_PARAM_H 1 _ACEOF fi done for ac_header in net/if.h do : ac_fn_c_check_header_compile "$LINENO" "net/if.h" "ac_cv_header_net_if_h" "#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif " if test "x$ac_cv_header_net_if_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_NET_IF_H 1 _ACEOF net_if_found=1 else net_if_found=0 fi done for ac_header in net/pfvar.h do : ac_fn_c_check_header_compile "$LINENO" "net/pfvar.h" "ac_cv_header_net_pfvar_h" "#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef HAVE_NET_IF_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif " if test "x$ac_cv_header_net_pfvar_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_NET_PFVAR_H 1 _ACEOF net_pfvar_found=1 else net_pfvar_found=0 fi done for ac_header in linux/if.h do : ac_fn_c_check_header_compile "$LINENO" "linux/if.h" "ac_cv_header_linux_if_h" " #ifdef HAVE_SYS_SOCKET_H #include #endif " if test "x$ac_cv_header_linux_if_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LINUX_IF_H 1 _ACEOF fi done for ac_header in linux/netfilter_ipv4.h do : ac_fn_c_check_header_compile "$LINENO" "linux/netfilter_ipv4.h" "ac_cv_header_linux_netfilter_ipv4_h" "#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef HAVE_LIMITS_H #include #endif #ifdef HAVE_LINUX_TYPES_H #include #endif #ifdef HAVE_NETINET_IN6_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif " if test "x$ac_cv_header_linux_netfilter_ipv4_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LINUX_NETFILTER_IPV4_H 1 _ACEOF linux_netfilter_ipv4=1 else linux_netfilter_ipv4=0 fi done for ac_header in linux/netfilter_ipv6/ip6_tables.h do : ac_fn_c_check_header_compile "$LINENO" "linux/netfilter_ipv6/ip6_tables.h" "ac_cv_header_linux_netfilter_ipv6_ip6_tables_h" "#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef HAVE_LIMITS_H #include #endif #ifdef HAVE_LINUX_TYPES_H #include #endif #ifdef HAVE_NETINET_IN6_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif #ifdef HAVE_LINUX_IF_H #include #endif " if test "x$ac_cv_header_linux_netfilter_ipv6_ip6_tables_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LINUX_NETFILTER_IPV6_IP6_TABLES_H 1 _ACEOF linux_netfilter_ipv6_ip6_tables=1 else linux_netfilter_ipv6_ip6_tables=0 fi done if test x$transparent = xtrue ; then transparent_ok=0 if test x$net_if_found = x1 && test x$net_pfvar_found = x1 ; then transparent_ok=1 fi if test x$linux_netfilter_ipv4 = x1 ; then transparent_ok=1 fi if test x$linux_netfilter_ipv6_ip6_tables = x1 ; then transparent_ok=1 fi if test x$transparent_ok = x1 ; then $as_echo "#define USE_TRANSPARENT 1" >>confdefs.h case $host in *-*-openbsd* | *-*-bitrig*) $as_echo "#define OPENBSD 1" >>confdefs.h ;; esac else { $as_echo "$as_me:${as_lineno-$LINENO}: Transparent proxy support enabled, but missing headers." >&5 $as_echo "$as_me: Transparent proxy support enabled, but missing headers." >&6;} fi fi ac_fn_c_check_member "$LINENO" "struct timeval" "tv_sec" "ac_cv_member_struct_timeval_tv_sec" "#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_TIME_H #include #endif " if test "x$ac_cv_member_struct_timeval_tv_sec" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_TIMEVAL_TV_SEC 1 _ACEOF fi # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of int8_t" >&5 $as_echo_n "checking size of int8_t... " >&6; } if ${ac_cv_sizeof_int8_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (int8_t))" "ac_cv_sizeof_int8_t" "$ac_includes_default"; then : else if test "$ac_cv_type_int8_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (int8_t) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_int8_t=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_int8_t" >&5 $as_echo "$ac_cv_sizeof_int8_t" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_INT8_T $ac_cv_sizeof_int8_t _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of int16_t" >&5 $as_echo_n "checking size of int16_t... " >&6; } if ${ac_cv_sizeof_int16_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (int16_t))" "ac_cv_sizeof_int16_t" "$ac_includes_default"; then : else if test "$ac_cv_type_int16_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (int16_t) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_int16_t=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_int16_t" >&5 $as_echo "$ac_cv_sizeof_int16_t" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_INT16_T $ac_cv_sizeof_int16_t _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of int32_t" >&5 $as_echo_n "checking size of int32_t... " >&6; } if ${ac_cv_sizeof_int32_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (int32_t))" "ac_cv_sizeof_int32_t" "$ac_includes_default"; then : else if test "$ac_cv_type_int32_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (int32_t) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_int32_t=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_int32_t" >&5 $as_echo "$ac_cv_sizeof_int32_t" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_INT32_T $ac_cv_sizeof_int32_t _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of int64_t" >&5 $as_echo_n "checking size of int64_t... " >&6; } if ${ac_cv_sizeof_int64_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (int64_t))" "ac_cv_sizeof_int64_t" "$ac_includes_default"; then : else if test "$ac_cv_type_int64_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (int64_t) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_int64_t=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_int64_t" >&5 $as_echo "$ac_cv_sizeof_int64_t" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_INT64_T $ac_cv_sizeof_int64_t _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of uint8_t" >&5 $as_echo_n "checking size of uint8_t... " >&6; } if ${ac_cv_sizeof_uint8_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (uint8_t))" "ac_cv_sizeof_uint8_t" "$ac_includes_default"; then : else if test "$ac_cv_type_uint8_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (uint8_t) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_uint8_t=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_uint8_t" >&5 $as_echo "$ac_cv_sizeof_uint8_t" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_UINT8_T $ac_cv_sizeof_uint8_t _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of uint16_t" >&5 $as_echo_n "checking size of uint16_t... " >&6; } if ${ac_cv_sizeof_uint16_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (uint16_t))" "ac_cv_sizeof_uint16_t" "$ac_includes_default"; then : else if test "$ac_cv_type_uint16_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (uint16_t) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_uint16_t=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_uint16_t" >&5 $as_echo "$ac_cv_sizeof_uint16_t" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_UINT16_T $ac_cv_sizeof_uint16_t _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of uint32_t" >&5 $as_echo_n "checking size of uint32_t... " >&6; } if ${ac_cv_sizeof_uint32_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (uint32_t))" "ac_cv_sizeof_uint32_t" "$ac_includes_default"; then : else if test "$ac_cv_type_uint32_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (uint32_t) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_uint32_t=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_uint32_t" >&5 $as_echo "$ac_cv_sizeof_uint32_t" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_UINT32_T $ac_cv_sizeof_uint32_t _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of uint64_t" >&5 $as_echo_n "checking size of uint64_t... " >&6; } if ${ac_cv_sizeof_uint64_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (uint64_t))" "ac_cv_sizeof_uint64_t" "$ac_includes_default"; then : else if test "$ac_cv_type_uint64_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (uint64_t) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_uint64_t=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_uint64_t" >&5 $as_echo "$ac_cv_sizeof_uint64_t" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_UINT64_T $ac_cv_sizeof_uint64_t _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of intptr_t" >&5 $as_echo_n "checking size of intptr_t... " >&6; } if ${ac_cv_sizeof_intptr_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (intptr_t))" "ac_cv_sizeof_intptr_t" "$ac_includes_default"; then : else if test "$ac_cv_type_intptr_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (intptr_t) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_intptr_t=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_intptr_t" >&5 $as_echo "$ac_cv_sizeof_intptr_t" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_INTPTR_T $ac_cv_sizeof_intptr_t _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of uintptr_t" >&5 $as_echo_n "checking size of uintptr_t... " >&6; } if ${ac_cv_sizeof_uintptr_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (uintptr_t))" "ac_cv_sizeof_uintptr_t" "$ac_includes_default"; then : else if test "$ac_cv_type_uintptr_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (uintptr_t) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_uintptr_t=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_uintptr_t" >&5 $as_echo "$ac_cv_sizeof_uintptr_t" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_UINTPTR_T $ac_cv_sizeof_uintptr_t _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of char" >&5 $as_echo_n "checking size of char... " >&6; } if ${ac_cv_sizeof_char+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (char))" "ac_cv_sizeof_char" "$ac_includes_default"; then : else if test "$ac_cv_type_char" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (char) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_char=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_char" >&5 $as_echo "$ac_cv_sizeof_char" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_CHAR $ac_cv_sizeof_char _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of short" >&5 $as_echo_n "checking size of short... " >&6; } if ${ac_cv_sizeof_short+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (short))" "ac_cv_sizeof_short" "$ac_includes_default"; then : else if test "$ac_cv_type_short" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (short) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_short=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_short" >&5 $as_echo "$ac_cv_sizeof_short" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_SHORT $ac_cv_sizeof_short _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of int" >&5 $as_echo_n "checking size of int... " >&6; } if ${ac_cv_sizeof_int+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (int))" "ac_cv_sizeof_int" "$ac_includes_default"; then : else if test "$ac_cv_type_int" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (int) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_int=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_int" >&5 $as_echo "$ac_cv_sizeof_int" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_INT $ac_cv_sizeof_int _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long" >&5 $as_echo_n "checking size of long... " >&6; } if ${ac_cv_sizeof_long+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long))" "ac_cv_sizeof_long" "$ac_includes_default"; then : else if test "$ac_cv_type_long" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (long) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_long=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_long" >&5 $as_echo "$ac_cv_sizeof_long" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_LONG $ac_cv_sizeof_long _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long long" >&5 $as_echo_n "checking size of long long... " >&6; } if ${ac_cv_sizeof_long_long+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long long))" "ac_cv_sizeof_long_long" "$ac_includes_default"; then : else if test "$ac_cv_type_long_long" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (long long) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_long_long=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_long_long" >&5 $as_echo "$ac_cv_sizeof_long_long" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_LONG_LONG $ac_cv_sizeof_long_long _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of __int64" >&5 $as_echo_n "checking size of __int64... " >&6; } if ${ac_cv_sizeof___int64+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (__int64))" "ac_cv_sizeof___int64" "$ac_includes_default"; then : else if test "$ac_cv_type___int64" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (__int64) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof___int64=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof___int64" >&5 $as_echo "$ac_cv_sizeof___int64" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF___INT64 $ac_cv_sizeof___int64 _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of void *" >&5 $as_echo_n "checking size of void *... " >&6; } if ${ac_cv_sizeof_void_p+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (void *))" "ac_cv_sizeof_void_p" "$ac_includes_default"; then : else if test "$ac_cv_type_void_p" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (void *) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_void_p=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_void_p" >&5 $as_echo "$ac_cv_sizeof_void_p" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_VOID_P $ac_cv_sizeof_void_p _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of time_t" >&5 $as_echo_n "checking size of time_t... " >&6; } if ${ac_cv_sizeof_time_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (time_t))" "ac_cv_sizeof_time_t" "$ac_includes_default"; then : else if test "$ac_cv_type_time_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (time_t) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_time_t=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_time_t" >&5 $as_echo "$ac_cv_sizeof_time_t" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_TIME_T $ac_cv_sizeof_time_t _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of size_t" >&5 $as_echo_n "checking size of size_t... " >&6; } if ${ac_cv_sizeof_size_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (size_t))" "ac_cv_sizeof_size_t" "$ac_includes_default"; then : else if test "$ac_cv_type_size_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (size_t) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_size_t=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_size_t" >&5 $as_echo "$ac_cv_sizeof_size_t" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_SIZE_T $ac_cv_sizeof_size_t _ACEOF # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of pid_t" >&5 $as_echo_n "checking size of pid_t... " >&6; } if ${ac_cv_sizeof_pid_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (pid_t))" "ac_cv_sizeof_pid_t" "$ac_includes_default"; then : else if test "$ac_cv_type_pid_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (pid_t) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_pid_t=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_pid_t" >&5 $as_echo "$ac_cv_sizeof_pid_t" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_PID_T $ac_cv_sizeof_pid_t _ACEOF ac_fn_c_check_type "$LINENO" "uint" "ac_cv_type_uint" "$ac_includes_default" if test "x$ac_cv_type_uint" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_UINT 1 _ACEOF fi ac_fn_c_check_type "$LINENO" "u_char" "ac_cv_type_u_char" "$ac_includes_default" if test "x$ac_cv_type_u_char" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_U_CHAR 1 _ACEOF fi ac_fn_c_check_type "$LINENO" "ssize_t" "ac_cv_type_ssize_t" "$ac_includes_default" if test "x$ac_cv_type_ssize_t" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_SSIZE_T 1 _ACEOF fi for ac_header in ucontext.h do : ac_fn_c_check_header_mongrel "$LINENO" "ucontext.h" "ac_cv_header_ucontext_h" "$ac_includes_default" if test "x$ac_cv_header_ucontext_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_UCONTEXT_H 1 _ACEOF fi done # Redhat 7 has , but it barfs if we #include it directly # (this was fixed in later redhats). works fine, so use that. if grep "Red Hat Linux release 7" /etc/redhat-release >/dev/null 2>&1; then $as_echo "#define HAVE_SYS_UCONTEXT_H 0" >>confdefs.h ac_cv_header_sys_ucontext_h=no else for ac_header in sys/ucontext.h do : ac_fn_c_check_header_mongrel "$LINENO" "sys/ucontext.h" "ac_cv_header_sys_ucontext_h" "$ac_includes_default" if test "x$ac_cv_header_sys_ucontext_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_SYS_UCONTEXT_H 1 _ACEOF fi done # ucontext on OS X 10.6 (at least) fi for ac_header in cygwin/signal.h do : ac_fn_c_check_header_mongrel "$LINENO" "cygwin/signal.h" "ac_cv_header_cygwin_signal_h" "$ac_includes_default" if test "x$ac_cv_header_cygwin_signal_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_CYGWIN_SIGNAL_H 1 _ACEOF fi done # ucontext on cywgin { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to access the program counter from a struct ucontext" >&5 $as_echo_n "checking how to access the program counter from a struct ucontext... " >&6; } pc_fields=" uc_mcontext.gregs[REG_PC]" # Solaris x86 (32 + 64 bit) pc_fields="$pc_fields uc_mcontext.gregs[REG_EIP]" # Linux (i386) pc_fields="$pc_fields uc_mcontext.gregs[REG_RIP]" # Linux (x86_64) pc_fields="$pc_fields uc_mcontext.sc_ip" # Linux (ia64) pc_fields="$pc_fields uc_mcontext.uc_regs->gregs[PT_NIP]" # Linux (ppc) pc_fields="$pc_fields uc_mcontext.gregs[R15]" # Linux (arm old [untested]) pc_fields="$pc_fields uc_mcontext.arm_pc" # Linux (arm arch 5) pc_fields="$pc_fields uc_mcontext.gp_regs[PT_NIP]" # Suse SLES 11 (ppc64) pc_fields="$pc_fields uc_mcontext.mc_eip" # FreeBSD (i386) pc_fields="$pc_fields uc_mcontext.mc_rip" # FreeBSD (x86_64 [untested]) pc_fields="$pc_fields uc_mcontext.__gregs[_REG_EIP]" # NetBSD (i386) pc_fields="$pc_fields uc_mcontext.__gregs[_REG_RIP]" # NetBSD (x86_64) pc_fields="$pc_fields uc_mcontext->ss.eip" # OS X (i386, <=10.4) pc_fields="$pc_fields uc_mcontext->__ss.__eip" # OS X (i386, >=10.5) pc_fields="$pc_fields uc_mcontext->ss.rip" # OS X (x86_64) pc_fields="$pc_fields uc_mcontext->__ss.__rip" # OS X (>=10.5 [untested]) pc_fields="$pc_fields uc_mcontext->ss.srr0" # OS X (ppc, ppc64 [untested]) pc_fields="$pc_fields uc_mcontext->__ss.__srr0" # OS X (>=10.5 [untested]) pc_field_found=false for pc_field in $pc_fields; do if ! $pc_field_found; then # Prefer sys/ucontext.h to ucontext.h, for OS X's sake. if test "x$ac_cv_header_cygwin_signal_h" = xyes; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _GNU_SOURCE 1 #include int main () { ucontext_t u; return u.$pc_field == 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat >>confdefs.h <<_ACEOF #define PC_FROM_UCONTEXT $pc_field _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: result: $pc_field" >&5 $as_echo "$pc_field" >&6; } pc_field_found=true fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext elif test "x$ac_cv_header_sys_ucontext_h" = xyes; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _GNU_SOURCE 1 #include int main () { ucontext_t u; return u.$pc_field == 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat >>confdefs.h <<_ACEOF #define PC_FROM_UCONTEXT $pc_field _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: result: $pc_field" >&5 $as_echo "$pc_field" >&6; } pc_field_found=true fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext elif test "x$ac_cv_header_ucontext_h" = xyes; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _GNU_SOURCE 1 #include int main () { ucontext_t u; return u.$pc_field == 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat >>confdefs.h <<_ACEOF #define PC_FROM_UCONTEXT $pc_field _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: result: $pc_field" >&5 $as_echo "$pc_field" >&6; } pc_field_found=true fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext else # hope some standard header gives it to us cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ucontext_t u; return u.$pc_field == 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat >>confdefs.h <<_ACEOF #define PC_FROM_UCONTEXT $pc_field _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: result: $pc_field" >&5 $as_echo "$pc_field" >&6; } pc_field_found=true fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi fi done if ! $pc_field_found; then pc_fields=" sc_eip" # OpenBSD (i386) pc_fields="$pc_fields sc_rip" # OpenBSD (x86_64) for pc_field in $pc_fields; do if ! $pc_field_found; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { ucontext_t u; return u.$pc_field == 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat >>confdefs.h <<_ACEOF #define PC_FROM_UCONTEXT $pc_field _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: result: $pc_field" >&5 $as_echo "$pc_field" >&6; } pc_field_found=true fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi done fi if ! $pc_field_found; then : fi ac_fn_c_check_type "$LINENO" "struct in6_addr" "ac_cv_type_struct_in6_addr" "#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif #ifdef HAVE_NETINET_IN6_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef _WIN32 #define _WIN32_WINNT 0x0501 #define WIN32_LEAN_AND_MEAN #include #include #endif " if test "x$ac_cv_type_struct_in6_addr" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_IN6_ADDR 1 _ACEOF fi ac_fn_c_check_type "$LINENO" "struct sockaddr_in6" "ac_cv_type_struct_sockaddr_in6" "#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif #ifdef HAVE_NETINET_IN6_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef _WIN32 #define _WIN32_WINNT 0x0501 #define WIN32_LEAN_AND_MEAN #include #include #endif " if test "x$ac_cv_type_struct_sockaddr_in6" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_SOCKADDR_IN6 1 _ACEOF fi ac_fn_c_check_type "$LINENO" "sa_family_t" "ac_cv_type_sa_family_t" "#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif #ifdef HAVE_NETINET_IN6_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef _WIN32 #define _WIN32_WINNT 0x0501 #define WIN32_LEAN_AND_MEAN #include #include #endif " if test "x$ac_cv_type_sa_family_t" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_SA_FAMILY_T 1 _ACEOF fi ac_fn_c_check_member "$LINENO" "struct in6_addr" "s6_addr32" "ac_cv_member_struct_in6_addr_s6_addr32" "#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif #ifdef HAVE_NETINET_IN6_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef _WIN32 #define _WIN32_WINNT 0x0501 #define WIN32_LEAN_AND_MEAN #include #include #endif #endif " if test "x$ac_cv_member_struct_in6_addr_s6_addr32" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_IN6_ADDR_S6_ADDR32 1 _ACEOF fi ac_fn_c_check_member "$LINENO" "struct in6_addr" "s6_addr16" "ac_cv_member_struct_in6_addr_s6_addr16" "#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif #ifdef HAVE_NETINET_IN6_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef _WIN32 #define _WIN32_WINNT 0x0501 #define WIN32_LEAN_AND_MEAN #include #include #endif #endif " if test "x$ac_cv_member_struct_in6_addr_s6_addr16" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_IN6_ADDR_S6_ADDR16 1 _ACEOF fi ac_fn_c_check_member "$LINENO" "struct sockaddr_in" "sin_len" "ac_cv_member_struct_sockaddr_in_sin_len" "#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif #ifdef HAVE_NETINET_IN6_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef _WIN32 #define _WIN32_WINNT 0x0501 #define WIN32_LEAN_AND_MEAN #include #include #endif #endif " if test "x$ac_cv_member_struct_sockaddr_in_sin_len" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_SOCKADDR_IN_SIN_LEN 1 _ACEOF fi ac_fn_c_check_member "$LINENO" "struct sockaddr_in6" "sin6_len" "ac_cv_member_struct_sockaddr_in6_sin6_len" "#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif #ifdef HAVE_NETINET_IN6_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef _WIN32 #define _WIN32_WINNT 0x0501 #define WIN32_LEAN_AND_MEAN #include #include #endif #endif " if test "x$ac_cv_member_struct_sockaddr_in6_sin6_len" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STRUCT_SOCKADDR_IN6_SIN6_LEN 1 _ACEOF fi ac_fn_c_check_type "$LINENO" "rlim_t" "ac_cv_type_rlim_t" "#ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_TIME_H #include #endif #ifdef HAVE_SYS_RESOURCE_H #include #endif " if test "x$ac_cv_type_rlim_t" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_RLIM_T 1 _ACEOF fi typename=`echo time_t | sed "s/[^a-zA-Z0-9_]/_/g"` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time_t is signed" >&5 $as_echo_n "checking whether time_t is signed... " >&6; } if eval \${ax_cv_decl_${typename}_signed+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_TIME_H #include #endif #ifdef HAVE_TIME_H #include #endif int main () { int foo [ 1 - 2 * !(((time_t) -1) < 0) ] ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "ax_cv_decl_${typename}_signed=\"yes\"" else eval "ax_cv_decl_${typename}_signed=\"no\"" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$ax_cv_decl_${typename}_signed { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } symbolname=`echo time_t | sed "s/[^a-zA-Z0-9_]/_/g" | tr "a-z" "A-Z"` if eval "test \"\${ax_cv_decl_${typename}_signed}\" = \"yes\""; then $as_echo "#define TIME_T_IS_SIGNED 1" >>confdefs.h elif eval "test \"\${ax_cv_decl_${typename}_signed}\" = \"no\""; then : fi if test "$ax_cv_decl_time_t_signed" = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You have an unsigned time_t; some things will probably break. Please tell the Tor developers about your interesting platform." >&5 $as_echo "$as_me: WARNING: You have an unsigned time_t; some things will probably break. Please tell the Tor developers about your interesting platform." >&2;} fi typename=`echo size_t | sed "s/[^a-zA-Z0-9_]/_/g"` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether size_t is signed" >&5 $as_echo_n "checking whether size_t is signed... " >&6; } if eval \${ax_cv_decl_${typename}_signed+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef HAVE_SYS_TYPES_H #include #endif int main () { int foo [ 1 - 2 * !(((size_t) -1) < 0) ] ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "ax_cv_decl_${typename}_signed=\"yes\"" else eval "ax_cv_decl_${typename}_signed=\"no\"" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$ax_cv_decl_${typename}_signed { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } symbolname=`echo size_t | sed "s/[^a-zA-Z0-9_]/_/g" | tr "a-z" "A-Z"` if eval "test \"\${ax_cv_decl_${typename}_signed}\" = \"yes\""; then tor_cv_size_t_signed=yes elif eval "test \"\${ax_cv_decl_${typename}_signed}\" = \"no\""; then tor_cv_size_t_signed=no fi if test "$ax_cv_decl_size_t_signed" = yes; then as_fn_error $? "You have a signed size_t; that's grossly nonconformant." "$LINENO" 5 fi typename=`echo enum always | sed "s/[^a-zA-Z0-9_]/_/g"` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether enum always is signed" >&5 $as_echo_n "checking whether enum always is signed... " >&6; } if eval \${ax_cv_decl_${typename}_signed+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ enum always { AAA, BBB, CCC }; int main () { int foo [ 1 - 2 * !(((enum always) -1) < 0) ] ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "ax_cv_decl_${typename}_signed=\"yes\"" else eval "ax_cv_decl_${typename}_signed=\"no\"" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$ax_cv_decl_${typename}_signed { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } symbolname=`echo enum always | sed "s/[^a-zA-Z0-9_]/_/g" | tr "a-z" "A-Z"` if eval "test \"\${ax_cv_decl_${typename}_signed}\" = \"yes\""; then $as_echo "#define ENUM_VALS_ARE_SIGNED 1" >>confdefs.h elif eval "test \"\${ax_cv_decl_${typename}_signed}\" = \"no\""; then : fi # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of socklen_t" >&5 $as_echo_n "checking size of socklen_t... " >&6; } if ${ac_cv_sizeof_socklen_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (socklen_t))" "ac_cv_sizeof_socklen_t" "$ac_includes_default #ifdef HAVE_SYS_SOCKET_H #include #endif "; then : else if test "$ac_cv_type_socklen_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (socklen_t) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_socklen_t=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_socklen_t" >&5 $as_echo "$ac_cv_sizeof_socklen_t" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_SOCKLEN_T $ac_cv_sizeof_socklen_t _ACEOF # We want to make sure that we _don't_ have a cell_t defined, like IRIX does. # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of cell_t" >&5 $as_echo_n "checking size of cell_t... " >&6; } if ${ac_cv_sizeof_cell_t+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (cell_t))" "ac_cv_sizeof_cell_t" "$ac_includes_default"; then : else if test "$ac_cv_type_cell_t" = yes; then { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (cell_t) See \`config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_cell_t=0 fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_cell_t" >&5 $as_echo "$ac_cv_sizeof_cell_t" >&6; } cat >>confdefs.h <<_ACEOF #define SIZEOF_CELL_T $ac_cv_sizeof_cell_t _ACEOF # Now make sure that NULL can be represented as zero bytes. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether memset(0) sets pointers to NULL" >&5 $as_echo_n "checking whether memset(0) sets pointers to NULL... " >&6; } if ${tor_cv_null_is_zero+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : tor_cv_null_is_zero=cross else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #ifdef HAVE_STDDEF_H #include #endif int main () { char *p1,*p2; p1=NULL; memset(&p2,0,sizeof(p2)); return memcmp(&p1,&p2,sizeof(char*))?1:0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : tor_cv_null_is_zero=yes else tor_cv_null_is_zero=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_null_is_zero" >&5 $as_echo "$tor_cv_null_is_zero" >&6; } if test "$tor_cv_null_is_zero" = cross ; then # Cross-compiling; let's hope that the target isn't raving mad. { $as_echo "$as_me:${as_lineno-$LINENO}: Cross-compiling: we'll assume that NULL is represented as a sequence of 0-valued bytes." >&5 $as_echo "$as_me: Cross-compiling: we'll assume that NULL is represented as a sequence of 0-valued bytes." >&6;} fi if test "$tor_cv_null_is_zero" != no; then $as_echo "#define NULL_REP_IS_ZERO_BYTES 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether memset(0) sets doubles to 0.0" >&5 $as_echo_n "checking whether memset(0) sets doubles to 0.0... " >&6; } if ${tor_cv_dbl0_is_zero+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : tor_cv_dbl0_is_zero=cross else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #ifdef HAVE_STDDEF_H #include #endif int main () { double d1,d2; d1=0; memset(&d2,0,sizeof(d2)); return memcmp(&d1,&d2,sizeof(d1))?1:0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : tor_cv_dbl0_is_zero=yes else tor_cv_dbl0_is_zero=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_dbl0_is_zero" >&5 $as_echo "$tor_cv_dbl0_is_zero" >&6; } if test "$tor_cv_dbl0_is_zero" = cross ; then # Cross-compiling; let's hope that the target isn't raving mad. { $as_echo "$as_me:${as_lineno-$LINENO}: Cross-compiling: we'll assume that 0.0 can be represented as a sequence of 0-valued bytes." >&5 $as_echo "$as_me: Cross-compiling: we'll assume that 0.0 can be represented as a sequence of 0-valued bytes." >&6;} fi if test "$tor_cv_dbl0_is_zero" != no; then $as_echo "#define DOUBLE_0_REP_IS_ZERO_BYTES 1" >>confdefs.h fi # And what happens when we malloc zero? { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we can malloc(0) safely." >&5 $as_echo_n "checking whether we can malloc(0) safely.... " >&6; } if ${tor_cv_malloc_zero_works+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : tor_cv_malloc_zero_works=cross else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #ifdef HAVE_STDDEF_H #include #endif int main () { return malloc(0)?0:1; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : tor_cv_malloc_zero_works=yes else tor_cv_malloc_zero_works=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_malloc_zero_works" >&5 $as_echo "$tor_cv_malloc_zero_works" >&6; } if test "$tor_cv_malloc_zero_works" = cross; then # Cross-compiling; let's hope that the target isn't raving mad. { $as_echo "$as_me:${as_lineno-$LINENO}: Cross-compiling: we'll assume that we need to check malloc() arguments for 0." >&5 $as_echo "$as_me: Cross-compiling: we'll assume that we need to check malloc() arguments for 0." >&6;} fi if test "$tor_cv_malloc_zero_works" = yes; then $as_echo "#define MALLOC_ZERO_WORKS 1" >>confdefs.h fi # whether we seem to be in a 2s-complement world. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using 2s-complement arithmetic" >&5 $as_echo_n "checking whether we are using 2s-complement arithmetic... " >&6; } if ${tor_cv_twos_complement+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : tor_cv_twos_complement=cross else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { int problem = ((-99) != (~99)+1); return problem ? 1 : 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : tor_cv_twos_complement=yes else tor_cv_twos_complement=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_twos_complement" >&5 $as_echo "$tor_cv_twos_complement" >&6; } if test "$tor_cv_twos_complement" = cross ; then # Cross-compiling; let's hope that the target isn't raving mad. { $as_echo "$as_me:${as_lineno-$LINENO}: Cross-compiling: we'll assume that negative integers are represented with two's complement." >&5 $as_echo "$as_me: Cross-compiling: we'll assume that negative integers are represented with two's complement." >&6;} fi if test "$tor_cv_twos_complement" != no ; then $as_echo "#define USING_TWOS_COMPLEMENT 1" >>confdefs.h fi # What does shifting a negative value do? { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether right-shift on negative values does sign-extension" >&5 $as_echo_n "checking whether right-shift on negative values does sign-extension... " >&6; } if ${tor_cv_sign_extend+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : tor_cv_sign_extend=cross else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { int okay = (-60 >> 8) == -1; return okay ? 0 : 1; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : tor_cv_sign_extend=yes else tor_cv_sign_extend=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_sign_extend" >&5 $as_echo "$tor_cv_sign_extend" >&6; } if test "$tor_cv_sign_extend" = cross ; then # Cross-compiling; let's hope that the target isn't raving mad. { $as_echo "$as_me:${as_lineno-$LINENO}: Cross-compiling: we'll assume that right-shifting negative integers causes sign-extension" >&5 $as_echo "$as_me: Cross-compiling: we'll assume that right-shifting negative integers causes sign-extension" >&6;} fi if test "$tor_cv_sign_extend" != no ; then $as_echo "#define RSHIFT_DOES_SIGN_EXTEND 1" >>confdefs.h fi # Whether we should use the dmalloc memory allocation debugging library. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use dmalloc (debug memory allocation library)" >&5 $as_echo_n "checking whether to use dmalloc (debug memory allocation library)... " >&6; } # Check whether --with-dmalloc was given. if test "${with_dmalloc+set}" = set; then : withval=$with_dmalloc; if [ "$withval" = "yes" ]; then dmalloc=1 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else dmalloc=1 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi else dmalloc=0; { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if [ $dmalloc -eq 1 ]; then for ac_header in dmalloc.h do : ac_fn_c_check_header_mongrel "$LINENO" "dmalloc.h" "ac_cv_header_dmalloc_h" "$ac_includes_default" if test "x$ac_cv_header_dmalloc_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DMALLOC_H 1 _ACEOF else as_fn_error $? "dmalloc header file not found. Do you have the development files for dmalloc installed?" "$LINENO" 5 fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing dmalloc_malloc" >&5 $as_echo_n "checking for library containing dmalloc_malloc... " >&6; } if ${ac_cv_search_dmalloc_malloc+:} false; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dmalloc_malloc (); int main () { return dmalloc_malloc (); ; return 0; } _ACEOF for ac_lib in '' dmallocth dmalloc; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_dmalloc_malloc=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if ${ac_cv_search_dmalloc_malloc+:} false; then : break fi done if ${ac_cv_search_dmalloc_malloc+:} false; then : else ac_cv_search_dmalloc_malloc=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_dmalloc_malloc" >&5 $as_echo "$ac_cv_search_dmalloc_malloc" >&6; } ac_res=$ac_cv_search_dmalloc_malloc if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" else as_fn_error $? "Libdmalloc library not found. If you enable it you better have it installed." "$LINENO" 5 fi $as_echo "#define USE_DMALLOC 1" >>confdefs.h for ac_func in dmalloc_strdup dmalloc_strndup do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done fi # Check whether --with-tcmalloc was given. if test "${with_tcmalloc+set}" = set; then : withval=$with_tcmalloc; tcmalloc=yes else tcmalloc=no fi if test x$tcmalloc = xyes ; then LDFLAGS="-ltcmalloc $LDFLAGS" fi using_custom_malloc=no if test x$enable_openbsd_malloc = xyes ; then using_custom_malloc=yes fi if test x$tcmalloc = xyes ; then using_custom_malloc=yes fi if test $using_custom_malloc = no ; then for ac_func in mallinfo do : ac_fn_c_check_func "$LINENO" "mallinfo" "ac_cv_func_mallinfo" if test "x$ac_cv_func_mallinfo" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_MALLINFO 1 _ACEOF fi done fi # By default, we're going to assume we don't have mlockall() # bionic and other platforms have various broken mlockall subsystems. # Some systems don't have a working mlockall, some aren't linkable, # and some have it but don't declare it. for ac_func in mlockall do : ac_fn_c_check_func "$LINENO" "mlockall" "ac_cv_func_mlockall" if test "x$ac_cv_func_mlockall" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_MLOCKALL 1 _ACEOF fi done ac_fn_c_check_decl "$LINENO" "mlockall" "ac_cv_have_decl_mlockall" " #ifdef HAVE_SYS_MMAN_H #include #endif " if test "x$ac_cv_have_decl_mlockall" = xyes; then : ac_have_decl=1 else ac_have_decl=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL_MLOCKALL $ac_have_decl _ACEOF # Allow user to specify an alternate syslog facility # Check whether --with-syslog-facility was given. if test "${with_syslog_facility+set}" = set; then : withval=$with_syslog_facility; syslog_facility="$withval" else syslog_facility="LOG_DAEMON" fi cat >>confdefs.h <<_ACEOF #define LOGFACILITY $syslog_facility _ACEOF # Check if we have getresuid and getresgid for ac_func in getresuid getresgid do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done # Check for gethostbyname_r in all its glorious incompatible versions. # (This logic is based on that in Python's configure.in) ac_fn_c_check_func "$LINENO" "gethostbyname_r" "ac_cv_func_gethostbyname_r" if test "x$ac_cv_func_gethostbyname_r" = xyes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking how many arguments gethostbyname_r() wants" >&5 $as_echo_n "checking how many arguments gethostbyname_r() wants... " >&6; } OLD_CFLAGS=$CFLAGS CFLAGS="$CFLAGS $MY_CPPFLAGS $MY_THREAD_CPPFLAGS $MY_CFLAGS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { char *cp1, *cp2; struct hostent *h1, *h2; int i1, i2; (void)gethostbyname_r(cp1,h1,cp2,i1,&h2,&i2); ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : $as_echo "#define HAVE_GETHOSTBYNAME_R 1" >>confdefs.h $as_echo "#define HAVE_GETHOSTBYNAME_R_6_ARG 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: result: 6" >&5 $as_echo "6" >&6; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { char *cp1, *cp2; struct hostent *h1; int i1, i2; (void)gethostbyname_r(cp1,h1,cp2,i1,&i2); ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : $as_echo "#define HAVE_GETHOSTBYNAME_R 1" >>confdefs.h $as_echo "#define HAVE_GETHOSTBYNAME_R_5_ARG 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: result: 5" >&5 $as_echo "5" >&6; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { char *cp1; struct hostent *h1; struct hostent_data hd; (void) gethostbyname_r(cp1,h1,&hd); ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : $as_echo "#define HAVE_GETHOSTBYNAME_R 1" >>confdefs.h $as_echo "#define HAVE_GETHOSTBYNAME_R_3_ARG 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: result: 3" >&5 $as_echo "3" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: 0" >&5 $as_echo "0" >&6; } fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS=$OLD_CFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler supports __func__" >&5 $as_echo_n "checking whether the C compiler supports __func__... " >&6; } if ${tor_cv_have_func_macro+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main(int c, char **v) { puts(__func__); } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : tor_cv_have_func_macro=yes else tor_cv_have_func_macro=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_have_func_macro" >&5 $as_echo "$tor_cv_have_func_macro" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler supports __FUNC__" >&5 $as_echo_n "checking whether the C compiler supports __FUNC__... " >&6; } if ${tor_cv_have_FUNC_macro+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main(int c, char **v) { puts(__FUNC__); } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : tor_cv_have_FUNC_macro=yes else tor_cv_have_FUNC_macro=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_have_FUNC_macro" >&5 $as_echo "$tor_cv_have_FUNC_macro" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler supports __FUNCTION__" >&5 $as_echo_n "checking whether the C compiler supports __FUNCTION__... " >&6; } if ${tor_cv_have_FUNCTION_macro+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main(int c, char **v) { puts(__FUNCTION__); } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : tor_cv_have_FUNCTION_macro=yes else tor_cv_have_FUNCTION_macro=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_have_FUNCTION_macro" >&5 $as_echo "$tor_cv_have_FUNCTION_macro" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we have extern char **environ already declared" >&5 $as_echo_n "checking whether we have extern char **environ already declared... " >&6; } if ${tor_cv_have_environ_declared+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* We define _GNU_SOURCE here because it is also defined in compat.c. * Without it environ doesn't get declared. */ #define _GNU_SOURCE #ifdef HAVE_UNISTD_H #include #endif #include int main(int c, char **v) { char **t = environ; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : tor_cv_have_environ_declared=yes else tor_cv_have_environ_declared=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $tor_cv_have_environ_declared" >&5 $as_echo "$tor_cv_have_environ_declared" >&6; } if test "$tor_cv_have_func_macro" = 'yes'; then $as_echo "#define HAVE_MACRO__func__ 1" >>confdefs.h fi if test "$tor_cv_have_FUNC_macro" = 'yes'; then $as_echo "#define HAVE_MACRO__FUNC__ 1" >>confdefs.h fi if test "$tor_cv_have_FUNCTION_macro" = 'yes'; then $as_echo "#define HAVE_MACRO__FUNCTION__ 1" >>confdefs.h fi if test "$tor_cv_have_environ_declared" = 'yes'; then $as_echo "#define HAVE_EXTERN_ENVIRON_DECLARED 1" >>confdefs.h fi # $prefix stores the value of the --prefix command line option, or # NONE if the option wasn't set. In the case that it wasn't set, make # it be the default, so that we can use it to expand directories now. if test "x$prefix" = "xNONE"; then prefix=$ac_default_prefix fi # and similarly for $exec_prefix if test "x$exec_prefix" = "xNONE"; then exec_prefix=$prefix fi if test "x$BUILDDIR" = "x"; then BUILDDIR=`pwd` fi cat >>confdefs.h <<_ACEOF #define BUILDDIR "$BUILDDIR" _ACEOF if test "x$CONFDIR" = "x"; then CONFDIR=`eval echo $sysconfdir/tor` fi cat >>confdefs.h <<_ACEOF #define CONFDIR "$CONFDIR" _ACEOF BINDIR=`eval echo $bindir` LOCALSTATEDIR=`eval echo $localstatedir` if test "$bwin32" = true; then # Test if the linker supports the --nxcompat and --dynamicbase options # for Windows save_LDFLAGS="$LDFLAGS" LDFLAGS="-Wl,--nxcompat -Wl,--dynamicbase" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker supports DllCharacteristics" >&5 $as_echo_n "checking whether the linker supports DllCharacteristics... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } save_LDFLAGS="$save_LDFLAGS $LDFLAGS" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi # Set CFLAGS _after_ all the above checks, since our warnings are stricter # than autoconf's macros like. if test "$GCC" = yes; then # Disable GCC's strict aliasing checks. They are an hours-to-debug # accident waiting to happen. CFLAGS="$CFLAGS -Wall -fno-strict-aliasing" else # Override optimization level for non-gcc compilers CFLAGS="$CFLAGS -O" enable_gcc_warnings=no enable_gcc_warnings_advisory=no fi # OS X Lion started deprecating the system openssl. Let's just disable # all deprecation warnings on OS X. Also, to potentially make the binary # a little smaller, let's enable dead_strip. case "$host_os" in darwin*) CFLAGS="$CFLAGS -Wno-deprecated-declarations" LDFLAGS="$LDFLAGS -dead_strip" ;; esac # Add some more warnings which we use in development but not in the # released versions. (Some relevant gcc versions can't handle these.) if test x$enable_gcc_warnings = xyes || test x$enable_gcc_warnings_advisory = xyes; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #if !defined(__GNUC__) || (__GNUC__ < 4) #error #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : have_gcc4=yes else have_gcc4=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #if !defined(__GNUC__) || (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 2) #error #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : have_gcc42=yes else have_gcc42=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #if !defined(__GNUC__) || (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 3) #error #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : have_gcc43=yes else have_gcc43=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #if !defined(__GNUC__) || (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 6) #error #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : have_gcc46=yes else have_gcc46=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -Wshorten-64-to-32" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : have_shorten64_flag=yes else have_shorten64_flag=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CFLAGS="$save_CFLAGS" case $host in *-*-openbsd* | *-*-bitrig*) # Some OpenBSD versions (like 4.8) have -Wsystem-headers by default. # That's fine, except that the headers don't pass -Wredundant-decls. # Therefore, let's disable -Wsystem-headers when we're building # with maximal warnings on OpenBSD. CFLAGS="$CFLAGS -Wno-system-headers" ;; esac CFLAGS="$CFLAGS -W -Wfloat-equal -Wundef -Wpointer-arith" CFLAGS="$CFLAGS -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings" CFLAGS="$CFLAGS -Wredundant-decls -Wchar-subscripts -Wcomment -Wformat=2" CFLAGS="$CFLAGS -Wwrite-strings -Wmissing-declarations -Wredundant-decls" CFLAGS="$CFLAGS -Wnested-externs -Wbad-function-cast -Wswitch-enum" if test x$enable_gcc_warnings = xyes; then CFLAGS="$CFLAGS -Werror" fi # Disabled, so we can use mallinfo(): -Waggregate-return if test x$have_gcc4 = xyes ; then # These warnings break gcc 3.3.5 and work on gcc 4.0.2 CFLAGS="$CFLAGS -Winit-self -Wmissing-field-initializers -Wold-style-definition" fi if test x$have_gcc42 = xyes ; then # These warnings break gcc 4.0.2 and work on gcc 4.2 # XXXX020 See if any of these work with earlier versions. CFLAGS="$CFLAGS -Waddress -Wmissing-noreturn -Wstrict-overflow=1" # We used to use -Wstrict-overflow=5, but that breaks us heavily under 4.3. fi if test x$have_gcc42 = xyes && test x$have_clang = xno; then # These warnings break gcc 4.0.2 and clang, but work on gcc 4.2 CFLAGS="$CFLAGS -Wnormalized=id -Woverride-init" fi if test x$have_gcc43 = xyes ; then # These warnings break gcc 4.2 and work on gcc 4.3 # XXXX020 See if any of these work with earlier versions. CFLAGS="$CFLAGS -Wextra -Warray-bounds" fi if test x$have_gcc46 = xyes ; then # This warning was added in gcc 4.3, but it appears to generate # spurious warnings in gcc 4.4. I don't know if it works in 4.5. CFLAGS="$CFLAGS -Wlogical-op" fi if test x$have_shorten64_flag = xyes ; then CFLAGS="$CFLAGS -Wshorten-64-to-32" fi ##This will break the world on some 64-bit architectures # CFLAGS="$CFLAGS -Winline" fi if test "$enable_coverage" = yes && test "$have_clang" = "no"; then case "$host_os" in darwin*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Tried to enable coverage on OSX without using the clang compiler. This might not work! If coverage fails, use CC=clang when configuring with --enable-profiling." >&5 $as_echo "$as_me: WARNING: Tried to enable coverage on OSX without using the clang compiler. This might not work! If coverage fails, use CC=clang when configuring with --enable-profiling." >&2;} esac fi CPPFLAGS="$CPPFLAGS $TOR_CPPFLAGS_libevent $TOR_CPPFLAGS_openssl $TOR_CPPFLAGS_zlib" ac_config_files="$ac_config_files Doxyfile Makefile contrib/dist/suse/tor.sh contrib/operator-tools/tor.logrotate contrib/dist/tor.sh contrib/dist/torctl contrib/dist/tor.service src/config/torrc.sample src/config/torrc.minimal scripts/maint/checkOptionDocs.pl scripts/maint/updateVersions.pl" if test x$asciidoc = xtrue && test "$ASCIIDOC" = "none" ; then regular_mans="doc/tor doc/tor-gencert doc/tor-resolve doc/torify" for file in $regular_mans ; do if ! [ -f "$srcdir/$file.1.in" ] || ! [ -f "$srcdir/$file.html.in" ] ; then echo "=================================="; echo; echo "Building Tor has failed since manpages cannot be built."; echo; echo "You need asciidoc installed to be able to build the manpages."; echo "To build without manpages, use the --disable-asciidoc argument"; echo "when calling configure."; echo; echo "=================================="; exit 1; fi done fi cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "done" >&6; } if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${UNITTESTS_ENABLED_TRUE}" && test -z "${UNITTESTS_ENABLED_FALSE}"; then as_fn_error $? "conditional \"UNITTESTS_ENABLED\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${COVERAGE_ENABLED_TRUE}" && test -z "${COVERAGE_ENABLED_FALSE}"; then as_fn_error $? "conditional \"COVERAGE_ENABLED\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_OPENBSD_MALLOC_TRUE}" && test -z "${USE_OPENBSD_MALLOC_FALSE}"; then as_fn_error $? "conditional \"USE_OPENBSD_MALLOC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_ASCIIDOC_TRUE}" && test -z "${USE_ASCIIDOC_FALSE}"; then as_fn_error $? "conditional \"USE_ASCIIDOC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_FW_HELPER_TRUE}" && test -z "${USE_FW_HELPER_FALSE}"; then as_fn_error $? "conditional \"USE_FW_HELPER\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${NAT_PMP_TRUE}" && test -z "${NAT_PMP_FALSE}"; then as_fn_error $? "conditional \"NAT_PMP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${MINIUPNPC_TRUE}" && test -z "${MINIUPNPC_FALSE}"; then as_fn_error $? "conditional \"MINIUPNPC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USEPYTHON_TRUE}" && test -z "${USEPYTHON_FALSE}"; then as_fn_error $? "conditional \"USEPYTHON\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${BUILD_NT_SERVICES_TRUE}" && test -z "${BUILD_NT_SERVICES_FALSE}"; then as_fn_error $? "conditional \"BUILD_NT_SERVICES\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${THREADS_WIN32_TRUE}" && test -z "${THREADS_WIN32_FALSE}"; then as_fn_error $? "conditional \"THREADS_WIN32\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${THREADS_PTHREADS_TRUE}" && test -z "${THREADS_PTHREADS_FALSE}"; then as_fn_error $? "conditional \"THREADS_PTHREADS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${BUILD_READPASSPHRASE_C_TRUE}" && test -z "${BUILD_READPASSPHRASE_C_FALSE}"; then as_fn_error $? "conditional \"BUILD_READPASSPHRASE_C\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_EXTERNAL_EVDNS_TRUE}" && test -z "${USE_EXTERNAL_EVDNS_FALSE}"; then as_fn_error $? "conditional \"USE_EXTERNAL_EVDNS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${USE_BUFFEREVENTS_TRUE}" && test -z "${USE_BUFFEREVENTS_FALSE}"; then as_fn_error $? "conditional \"USE_BUFFEREVENTS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${BUILD_CURVE25519_DONNA_TRUE}" && test -z "${BUILD_CURVE25519_DONNA_FALSE}"; then as_fn_error $? "conditional \"BUILD_CURVE25519_DONNA\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${BUILD_CURVE25519_DONNA_C64_TRUE}" && test -z "${BUILD_CURVE25519_DONNA_C64_FALSE}"; then as_fn_error $? "conditional \"BUILD_CURVE25519_DONNA_C64\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by tor $as_me 0.2.7.6, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to the package provider." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ tor config.status 0.2.7.6 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "orconfig.h") CONFIG_HEADERS="$CONFIG_HEADERS orconfig.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "Doxyfile") CONFIG_FILES="$CONFIG_FILES Doxyfile" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "contrib/dist/suse/tor.sh") CONFIG_FILES="$CONFIG_FILES contrib/dist/suse/tor.sh" ;; "contrib/operator-tools/tor.logrotate") CONFIG_FILES="$CONFIG_FILES contrib/operator-tools/tor.logrotate" ;; "contrib/dist/tor.sh") CONFIG_FILES="$CONFIG_FILES contrib/dist/tor.sh" ;; "contrib/dist/torctl") CONFIG_FILES="$CONFIG_FILES contrib/dist/torctl" ;; "contrib/dist/tor.service") CONFIG_FILES="$CONFIG_FILES contrib/dist/tor.service" ;; "src/config/torrc.sample") CONFIG_FILES="$CONFIG_FILES src/config/torrc.sample" ;; "src/config/torrc.minimal") CONFIG_FILES="$CONFIG_FILES src/config/torrc.minimal" ;; "scripts/maint/checkOptionDocs.pl") CONFIG_FILES="$CONFIG_FILES scripts/maint/checkOptionDocs.pl" ;; "scripts/maint/updateVersions.pl") CONFIG_FILES="$CONFIG_FILES scripts/maint/updateVersions.pl" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi tor-0.2.7.6/depcomp0000755000175000017500000005601612621363750011003 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2013-05-30.07; # UTC # Copyright (C) 1999-2014 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # Get the directory component of the given path, and save it in the # global variables '$dir'. Note that this directory component will # be either empty or ending with a '/' character. This is deliberate. set_dir_from () { case $1 in */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; *) dir=;; esac } # Get the suffix-stripped basename of the given path, and save it the # global variable '$base'. set_base_from () { base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` } # If no dependency file was actually created by the compiler invocation, # we still have to create a dummy depfile, to avoid errors with the # Makefile "include basename.Plo" scheme. make_dummy_depfile () { echo "#dummy" > "$depfile" } # Factor out some common post-processing of the generated depfile. # Requires the auxiliary global variable '$tmpdepfile' to be set. aix_post_process_depfile () { # If the compiler actually managed to produce a dependency file, # post-process it. if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependency.h'. # Do two passes, one to just change these to # $object: dependency.h # and one to simply output # dependency.h: # which is needed to avoid the deleted-header problem. { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" } > "$depfile" rm -f "$tmpdepfile" else make_dummy_depfile fi } # A tabulation character. tab=' ' # A newline character. nl=' ' # Character ranges might be problematic outside the C locale. # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz digits=0123456789 alpha=${upper}${lower} if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Avoid interferences from the environment. gccflag= dashmflag= # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. ## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. ## (see the conditional assignment to $gccflag above). ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). Also, it might not be ## supported by the other compilers which use the 'gcc' depmode. ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The second -e expression handles DOS-style file names with drive # letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the "deleted header file" problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. ## Some versions of gcc put a space before the ':'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like '#:fec' to the end of the # dependency line. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ | tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done aix_post_process_depfile ;; tcc) # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 # FIXME: That version still under development at the moment of writing. # Make that this statement remains true also for stable, released # versions. # It will wrap lines (doesn't matter whether long or short) with a # trailing '\', as in: # # foo.o : \ # foo.c \ # foo.h \ # # It will put a trailing '\' even on the last line, and will use leading # spaces rather than leading tabs (at least since its commit 0394caf7 # "Emit spaces for -MD"). "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. # We have to change lines of the first kind to '$object: \'. sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" # And for each line of the second kind, we have to emit a 'dep.h:' # dummy dependency, to avoid the deleted-header problem. sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; ## The order of this option in the case statement is important, since the ## shell code in configure will try each of these formats in the order ## listed in this file. A plain '-MD' option would be understood by many ## compilers, so we must ensure this comes after the gcc and icc options. pgcc) # Portland's C compiler understands '-MD'. # Will always output deps to 'file.d' where file is the root name of the # source file under compilation, even if file resides in a subdirectory. # The object file name does not affect the name of the '.d' file. # pgcc 10.2 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\' : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... set_dir_from "$object" # Use the source, not the object, to determine the base name, since # that's sadly what pgcc will do too. set_base_from "$source" tmpdepfile=$base.d # For projects that build the same source file twice into different object # files, the pgcc approach of using the *source* file root name can cause # problems in parallel builds. Use a locking strategy to avoid stomping on # the same $tmpdepfile. lockdir=$base.d-lock trap " echo '$0: caught signal, cleaning up...' >&2 rmdir '$lockdir' exit 1 " 1 2 13 15 numtries=100 i=$numtries while test $i -gt 0; do # mkdir is a portable test-and-set. if mkdir "$lockdir" 2>/dev/null; then # This process acquired the lock. "$@" -MD stat=$? # Release the lock. rmdir "$lockdir" break else # If the lock is being held by a different process, wait # until the winning process is done or we timeout. while test -d "$lockdir" && test $i -gt 0; do sleep 1 i=`expr $i - 1` done fi i=`expr $i - 1` done trap - 1 2 13 15 if test $i -le 0; then echo "$0: failed to acquire lock after $numtries attempts" >&2 echo "$0: check lockdir '$lockdir'" >&2 exit 1 fi if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in 'foo.d' instead, so we check for that too. # Subdirectories are respected. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then # Libtool generates 2 separate objects for the 2 libraries. These # two compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir$base.o.d # libtool 1.5 tmpdepfile2=$dir.libs/$base.o.d # Likewise. tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d "$@" -MD fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done # Same post-processing that is required for AIX mode. aix_post_process_depfile ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" echo >> "$depfile" # make sure the fragment doesn't end with a backslash rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this sed invocation # correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process the last invocation # correctly. Breaking it into two sed invocations is a workaround. sed '1,2d' "$tmpdepfile" \ | tr ' ' "$nl" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E \ | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: tor-0.2.7.6/acinclude.m40000644000175000017500000002112212621363245011604 00000000000000dnl Helper macros for Tor configure.ac dnl Copyright (c) 2001-2004, Roger Dingledine dnl Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson dnl Copyright (c) 2007-2008, Roger Dingledine, Nick Mathewson dnl Copyright (c) 2007-2015, The Tor Project, Inc. dnl See LICENSE for licensing information AC_DEFUN([TOR_EXTEND_CODEPATH], [ if test -d "$1/lib"; then LDFLAGS="-L$1/lib $LDFLAGS" else LDFLAGS="-L$1 $LDFLAGS" fi if test -d "$1/include"; then CPPFLAGS="-I$1/include $CPPFLAGS" else CPPFLAGS="-I$1 $CPPFLAGS" fi ]) AC_DEFUN([TOR_DEFINE_CODEPATH], [ if test x$1 = "x(system)"; then TOR_LDFLAGS_$2="" TOR_CPPFLAGS_$2="" else if test -d "$1/lib"; then TOR_LDFLAGS_$2="-L$1/lib" TOR_LIBDIR_$2="$1/lib" else TOR_LDFLAGS_$2="-L$1" TOR_LIBDIR_$2="$1" fi if test -d "$1/include"; then TOR_CPPFLAGS_$2="-I$1/include" else TOR_CPPFLAGS_$2="-I$1" fi fi AC_SUBST(TOR_CPPFLAGS_$2) AC_SUBST(TOR_LDFLAGS_$2) ]) dnl 1:flags dnl 2:also try to link (yes: non-empty string) dnl will set yes or no in $tor_can_link_$1 (as modified by AS_VAR_PUSHDEF) AC_DEFUN([TOR_CHECK_CFLAGS], [ AS_VAR_PUSHDEF([VAR],[tor_cv_cflags_$1]) AC_CACHE_CHECK([whether the compiler accepts $1], VAR, [ tor_saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -pedantic -Werror $1" AC_TRY_COMPILE([], [return 0;], [AS_VAR_SET(VAR,yes)], [AS_VAR_SET(VAR,no)]) if test x$2 != x; then AS_VAR_PUSHDEF([can_link],[tor_can_link_$1]) AC_TRY_LINK([], [return 0;], [AS_VAR_SET(can_link,yes)], [AS_VAR_SET(can_link,no)]) AS_VAR_POPDEF([can_link]) fi CFLAGS="$tor_saved_CFLAGS" ]) if test x$VAR = xyes; then CFLAGS="$CFLAGS $1" fi AS_VAR_POPDEF([VAR]) ]) dnl 1:flags dnl 2:extra ldflags dnl 3:extra libraries AC_DEFUN([TOR_CHECK_LDFLAGS], [ AS_VAR_PUSHDEF([VAR],[tor_cv_ldflags_$1]) AC_CACHE_CHECK([whether the linker accepts $1], VAR, [ tor_saved_CFLAGS="$CFLAGS" tor_saved_LDFLAGS="$LDFLAGS" tor_saved_LIBS="$LIBS" CFLAGS="$CFLAGS -pedantic -Werror" LDFLAGS="$LDFLAGS $2 $1" LIBS="$LIBS $3" AC_RUN_IFELSE([AC_LANG_PROGRAM([#include ], [fputs("", stdout)])], [AS_VAR_SET(VAR,yes)], [AS_VAR_SET(VAR,no)], [AC_TRY_LINK([], [return 0;], [AS_VAR_SET(VAR,yes)], [AS_VAR_SET(VAR,no)])]) CFLAGS="$tor_saved_CFLAGS" LDFLAGS="$tor_saved_LDFLAGS" LIBS="$tor_saved_LIBS" ]) if test x$VAR = xyes; then LDFLAGS="$LDFLAGS $1" fi AS_VAR_POPDEF([VAR]) ]) dnl 1:libname AC_DEFUN([TOR_WARN_MISSING_LIB], [ h="" if test x$2 = xdevpkg; then h=" headers for" fi if test -f /etc/debian_version && test x"$tor_$1_$2_debian" != x; then AC_WARN([On Debian, you can install$h $1 using "apt-get install $tor_$1_$2_debian"]) if test x"$tor_$1_$2_debian" != x"$tor_$1_devpkg_debian"; then AC_WARN([ You will probably need $tor_$1_devpkg_debian too.]) fi fi if test -f /etc/fedora-release && test x"$tor_$1_$2_redhat" != x; then AC_WARN([On Fedora Core, you can install$h $1 using "yum install $tor_$1_$2_redhat"]) if test x"$tor_$1_$2_redhat" != x"$tor_$1_devpkg_redhat"; then AC_WARN([ You will probably need to install $tor_$1_devpkg_redhat too.]) fi else if test -f /etc/redhat-release && test x"$tor_$1_$2_redhat" != x; then AC_WARN([On most Redhat-based systems, you can get$h $1 by installing the $tor_$1_$2_redhat RPM package]) if test x"$tor_$1_$2_redhat" != x"$tor_$1_devpkg_redhat"; then AC_WARN([ You will probably need to install $tor_$1_devpkg_redhat too.]) fi fi fi ]) dnl Look for a library, and its associated includes, and how to link dnl against it. dnl dnl TOR_SEARCH_LIBRARY(1:libname, 2:IGNORED, 3:linkargs, 4:headers, dnl 5:prototype, dnl 6:code, 7:IGNORED, 8:searchextra) dnl dnl Special variables: dnl ALT_{libname}_WITHVAL -- another possible value for --with-$1-dir. dnl Used to support renaming --with-ssl-dir to --with-openssl-dir dnl AC_DEFUN([TOR_SEARCH_LIBRARY], [ try$1dir="" AC_ARG_WITH($1-dir, AS_HELP_STRING(--with-$1-dir=PATH, [specify path to $1 installation]), [ if test x$withval != xno ; then try$1dir="$withval" fi ]) if test "x$try$1dir" = x && test "x$ALT_$1_WITHVAL" != x ; then try$1dir="$ALT_$1_WITHVAL" fi tor_saved_LIBS="$LIBS" tor_saved_LDFLAGS="$LDFLAGS" tor_saved_CPPFLAGS="$CPPFLAGS" AC_CACHE_CHECK([for $1 directory], tor_cv_library_$1_dir, [ tor_$1_dir_found=no tor_$1_any_linkable=no for tor_trydir in "$try$1dir" "(system)" "$prefix" /usr/local /usr/pkg $8; do LDFLAGS="$tor_saved_LDFLAGS" LIBS="$tor_saved_LIBS $3" CPPFLAGS="$tor_saved_CPPFLAGS" if test -z "$tor_trydir" ; then continue; fi # Skip the directory if it isn't there. if test ! -d "$tor_trydir" && test "$tor_trydir" != "(system)"; then continue; fi # If this isn't blank, try adding the directory (or appropriate # include/libs subdirectories) to the command line. if test "$tor_trydir" != "(system)"; then TOR_EXTEND_CODEPATH($tor_trydir) fi # Can we link against (but not necessarily run, or find the headers for) # the binary? AC_LINK_IFELSE([AC_LANG_PROGRAM([$5], [$6])], [linkable=yes], [linkable=no]) if test "$linkable" = yes; then tor_$1_any_linkable=yes # Okay, we can link against it. Can we find the headers? AC_COMPILE_IFELSE([AC_LANG_PROGRAM([$4], [$6])], [buildable=yes], [buildable=no]) if test "$buildable" = yes; then tor_cv_library_$1_dir=$tor_trydir tor_$1_dir_found=yes break fi fi done if test "$tor_$1_dir_found" = no; then if test "$tor_$1_any_linkable" = no ; then AC_MSG_WARN([Could not find a linkable $1. If you have it installed somewhere unusual, you can specify an explicit path using --with-$1-dir]) TOR_WARN_MISSING_LIB($1, pkg) AC_MSG_ERROR([Missing libraries; unable to proceed.]) else AC_MSG_WARN([We found the libraries for $1, but we could not find the C header files. You may need to install a devel package.]) TOR_WARN_MISSING_LIB($1, devpkg) AC_MSG_ERROR([Missing headers; unable to proceed.]) fi fi LDFLAGS="$tor_saved_LDFLAGS" LIBS="$tor_saved_LIBS" CPPFLAGS="$tor_saved_CPPFLAGS" ]) dnl end cache check LIBS="$LIBS $3" if test "$tor_cv_library_$1_dir" != "(system)"; then TOR_EXTEND_CODEPATH($tor_cv_library_$1_dir) fi TOR_DEFINE_CODEPATH($tor_cv_library_$1_dir, $1) if test "$cross_compiling" != yes; then AC_CACHE_CHECK([whether we need extra options to link $1], tor_cv_library_$1_linker_option, [ orig_LDFLAGS="$LDFLAGS" runs=no linked_with=nothing if test -d "$tor_cv_library_$1_dir/lib"; then tor_trydir="$tor_cv_library_$1_dir/lib" else tor_trydir="$tor_cv_library_$1_dir" fi for tor_tryextra in "(none)" "-Wl,-R$tor_trydir" "-R$tor_trydir" \ "-Wl,-rpath,$tor_trydir" ; do if test "$tor_tryextra" = "(none)"; then LDFLAGS="$orig_LDFLAGS" else LDFLAGS="$tor_tryextra $orig_LDFLAGS" fi AC_RUN_IFELSE([AC_LANG_PROGRAM([$5], [$6])], [runnable=yes], [runnable=no]) if test "$runnable" = yes; then tor_cv_library_$1_linker_option=$tor_tryextra break fi done if test "$runnable" = no; then AC_MSG_ERROR([Found linkable $1 in $tor_cv_library_$1_dir, but it does not seem to run, even with -R. Maybe specify another using --with-$1-dir}]) fi LDFLAGS="$orig_LDFLAGS" ]) dnl end cache check check for extra options. if test "$tor_cv_library_$1_linker_option" != "(none)" ; then TOR_LDFLAGS_$1="$TOR_LDFLAGS_$1 $tor_cv_library_$1_linker_option" fi fi # cross-compile LIBS="$tor_saved_LIBS" LDFLAGS="$tor_saved_LDFLAGS" CPPFLAGS="$tor_saved_CPPFLAGS" ]) dnl end defun dnl Check whether the prototype for a function is present or missing. dnl Apple has a nasty habit of putting functions in their libraries (so that dnl AC_CHECK_FUNCS passes) but not actually declaring them in the headers. dnl dnl TOR_CHECK_PROTYPE(1:functionname, 2:macroname, 2: includes) AC_DEFUN([TOR_CHECK_PROTOTYPE], [ AC_CACHE_CHECK([for declaration of $1], tor_cv_$1_declared, [ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([$3],[void *ptr= $1 ;])], tor_cv_$1_declared=yes,tor_cv_$1_declared=no)]) if test x$tor_cv_$1_declared != xno ; then AC_DEFINE($2, 1, [Defined if the prototype for $1 seems to be present.]) fi ]) tor-0.2.7.6/missing0000755000175000017500000001533012621363750011017 00000000000000#! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2013-10-28.13; # UTC # Copyright (C) 1996-2014 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try '$0 --help' for more information" exit 1 fi case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autoheader autom4te automake makeinfo bison yacc flex lex help2man Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: unknown '$1' option" echo 1>&2 "Try '$0 --help' for more information" exit 1 ;; esac # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=http://www.perl.org/ flex_URL=http://flex.sourceforge.net/ gnu_software_URL=http://www.gnu.org/software program_details () { case $1 in aclocal|automake) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" case $normalized_program in autoconf*) echo "You should only need it if you modified 'configure.ac'," echo "or m4 files included by it." program_details 'autoconf' ;; autoheader*) echo "You should only need it if you modified 'acconfig.h' or" echo "$configure_deps." program_details 'autoheader' ;; automake*) echo "You should only need it if you modified 'Makefile.am' or" echo "$configure_deps." program_details 'automake' ;; aclocal*) echo "You should only need it if you modified 'acinclude.m4' or" echo "$configure_deps." program_details 'aclocal' ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'autom4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: tor-0.2.7.6/config.sub0000755000175000017500000010624612621363750011412 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright 1992-2015 Free Software Foundation, Inc. timestamp='2015-01-01' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # Please send patches to . # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright 1992-2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ knetbsd*-gnu* | netbsd*-gnu* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; android-linux) os=-linux-android basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray | -microblaze*) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*178) os=-lynxos178 ;; -lynx*5) os=-lynxos5 ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | aarch64 | aarch64_be \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arceb \ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | avr | avr32 \ | be32 | be64 \ | bfin \ | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ | epiphany \ | fido | fr30 | frv | ft32 \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | k1om \ | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa32r6 | mipsisa32r6el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64r6 | mipsisa64r6el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipsr5900 | mipsr5900el \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 | or1k | or1knd | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ | riscv32 | riscv64 \ | rl78 | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu \ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | visium \ | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; c54x) basic_machine=tic54x-unknown ;; c55x) basic_machine=tic55x-unknown ;; c6x) basic_machine=tic6x-unknown ;; leon|leon[3-9]) basic_machine=sparc-$basic_machine ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; strongarm | thumb | xscale) basic_machine=arm-unknown ;; xgate) basic_machine=$basic_machine-unknown os=-none ;; xscaleeb) basic_machine=armeb-unknown ;; xscaleel) basic_machine=armel-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | aarch64-* | aarch64_be-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | c8051-* | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | k1om-* \ | le32-* | le64-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ | microblaze-* | microblazeel-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa32r6-* | mipsisa32r6el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64r6-* | mipsisa64r6el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipsr5900-* | mipsr5900el-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | or1k*-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ | rl78-* | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ | visium-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aros) basic_machine=i386-pc os=-aros ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) basic_machine=powerpc-ibm os=-cnk ;; c54x-*) basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c55x-*) basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c6x-*) basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray os=-unicos ;; cegcc) basic_machine=arm-unknown os=-cegcc ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16 | cr16-*) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dicos) basic_machine=i686-pc os=-dicos ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; leon-*|leon[3-9]-*) basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'` ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze*) basic_machine=microblaze-xilinx ;; mingw64) basic_machine=x86_64-pc os=-mingw64 ;; mingw32) basic_machine=i686-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; moxiebox) basic_machine=moxie-unknown os=-moxiebox ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i686-pc os=-msys ;; mvs) basic_machine=i370-ibm os=-mvs ;; nacl) basic_machine=le32-unknown os=-nacl ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; neo-tandem) basic_machine=neo-tandem ;; nse-tandem) basic_machine=nse-tandem ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos | rdos64) basic_machine=x86_64-pc os=-rdos ;; rdos32) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; strongarm-* | thumb-*) basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tile*) basic_machine=$basic_machine-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; xscale-* | xscalee[bl]-*) basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; z80-*-coff) basic_machine=z80-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -bitrig* | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* | -tirtos*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -nacl*) ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; c8051-*) os=-elf ;; hexagon-*) os=-elf ;; tic54x-*) os=-coff ;; tic55x-*) os=-coff ;; tic6x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -cnk*|-aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: tor-0.2.7.6/Doxyfile.in0000644000175000017500000016417512621363245011546 00000000000000# Doxyfile 1.5.6 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the config file # that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = tor # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = @VERSION@ # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = @top_builddir@/doc/doxygen # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output # format and will distribute the generated files over these directories. # Enabling this option can be useful when feeding doxygen a huge amount of # source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, # Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), # Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, # Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, # and Ukrainian. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will # include brief member descriptions after the members that are listed in # the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = NO # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend # the brief description of a member or function before the detailed description. # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator # that is used to form the text in various listings. Each string # in this list, if found as the leading text of the brief description, will be # stripped from the text and the result after processing the whole list, is # used as the annotated text. Otherwise, the brief description is used as-is. # If left blank, the following values are used ("$name" is automatically # replaced with the name of the entity): "The $name class" "The $name widget" # "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" ABBREVIATE_BRIEF = # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full # path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = NO # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag # can be used to strip a user-defined part of the path. Stripping is # only done if one of the specified strings matches the left-hand part of # the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the # path to strip. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of # the path mentioned in the documentation of a class, which tells # the reader which header file to include in order to use a class. # If left blank only the name of the header file containing the class # definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter # (but less readable) file names. This can be useful is your file systems # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen # will interpret the first line (until the first dot) of a JavaDoc-style # comment as the brief description. If set to NO, the JavaDoc # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = NO # If the QT_AUTOBRIEF tag is set to YES then Doxygen will # interpret the first line (until the first dot) of a Qt-style # comment as the brief description. If set to NO, the comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen # treat a multi-line C++ special comment block (i.e. a block of //! or /// # comments) as a brief description. This used to be the default behaviour. # The new default is to treat a multi-line C++ comment block as a detailed # description. Set this tag to YES if you prefer the old behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the DETAILS_AT_TOP tag is set to YES then Doxygen # will output the detailed description near the top, like JavaDoc. # If set to NO, the detailed description appears after the member # documentation. # DETAILS_AT_TOP = NO # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce # a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 # This tag can be used to specify a number of aliases that acts # as commands in the documentation. An alias has the form "name=value". # For example adding "sideeffect=\par Side Effects:\n" will allow you to # put the command \sideeffect (or @sideeffect) in the documentation, which # will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. ALIASES = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = YES # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for # VHDL. OPTIMIZE_OUTPUT_VHDL = NO # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should # set this tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); v.s. # func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. # Doxygen will parse them like normal C++ but will assume all classes use public # instead of private inheritance when no explicit protection keyword is present. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate getter # and setter methods for a property. Setting this option to YES (the default) # will make doxygen to replace the get and set methods by a property in the # documentation. This will only work if the methods are indeed getting or # setting a simple type. If this is not the case, or you want to show the # methods anyway, you should set this option to NO. IDL_PROPERTY_SUPPORT = NO # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES, then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) to allow class member groups of # the same type (for instance a group of public functions) to be put as a # subgroup of that type (e.g. under the Public Functions section). Set it to # NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum # is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically # be useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. TYPEDEF_HIDES_STRUCT = NO #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in # documentation are documented, even if no documentation was available. # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = YES # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in # the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base # name of the file that contains the anonymous namespace. By default # anonymous namespace are hidden. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) these members will be included in the # various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. # If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all # friend (class|struct|union) declarations. # If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any # documentation blocks found inside the body of a function. # If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation # that is typed after a \internal command is included. If the tag is set # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also # allowed. This is useful if you have classes or files whose names only differ # in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen # will sort the (detailed) documentation of file and class members # alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the # hierarchy of group names into alphabetical order. If set to NO (the default) # the group names will appear in their defined order. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be # sorted by fully-qualified names, including namespaces. If set to # NO (the default), the class list will be sorted only by class name, # not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or # disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or # disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or # disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or # disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consists of for it to appear in # the documentation. If the initializer consists of more lines than specified # here it will be hidden. Use a value of 0 to hide initializers completely. # The appearance of the initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated # at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES # If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy # in the documentation. The default is NO. SHOW_DIRECTORIES = NO # Set the SHOW_FILES tag to NO to disable the generation of the Files page. # This will remove the Files entry from the Quick Index and from the # Folder Tree View (if specified). The default is YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the # Namespaces page. This will remove the Namespaces entry from the Quick Index # and from the Folder Tree View (if specified). The default is YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. FILE_VERSION_FILTER = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings # for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some # parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be abled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = NO # The WARN_FORMAT tag determines the format of the warning messages that # doxygen can produce. The string should contain the $file, $line, and $text # tags, which will be replaced by the file and line number from which the # warning originated and the warning text. Optionally the format may contain # $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning # and error messages should be written. If left blank the output is written # to stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be used to specify the files and/or directories that contain # documented source files. You may enter file names like "myfile.cpp" or # directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = @top_srcdir@/src/common \ @top_srcdir@/src/or # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. Doxygen uses libiconv (or the iconv built # into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 FILE_PATTERNS = *.c \ *.h # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. EXCLUDE = tree.h # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix filesystem feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. Note that the wildcards are matched # against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or # directories that contain example code fragments that are included (see # the \include command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank all files are included. EXAMPLE_PATTERNS = # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude # commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command , where # is the value of the INPUT_FILTER tag, and is the name of an # input file. Doxygen will then use the output that the filter program writes # to standard output. If FILTER_PATTERNS is specified, this tag will be # ignored. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: # pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER # is applied to all files. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will # be generated. Documented entities will be cross-referenced with these sources. # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES # then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = YES # If the REFERENCES_RELATION tag is set to YES # then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = YES # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # and SOURCE_BROWSER tag is set to YES, then the hyperlinks from # functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will # link to the source code. Otherwise they will link to the documentstion. REFERENCES_LINK_SOURCE = YES # If the USE_HTAGS tag is set to YES then the references to source code # will point to the HTML generated by the htags(1) tool instead of doxygen # built-in source browser. The htags tool is part of GNU's global source # tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen # will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index # of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = NO # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to # fine-tune the look of the HTML output. If the tag is left blank doxygen # will generate a default style sheet. Note that doxygen will try to copy # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_DOCSET tag is set to YES, additional index files # will be generated that can be used as input for Apple's Xcode 3 # integrated development environment, introduced with OSX 10.5 (Leopard). # To create a documentation set, doxygen will generate a Makefile in the # HTML output directory. Running make will produce the docset in that # directory and running "make install" will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find # it at startup. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # feed. A documentation feed provides an umbrella under which multiple # documentation sets from a single provider (such as a company or product suite) # can be grouped. DOCSET_FEEDNAME = "Doxygen generated docs for Tor" # When GENERATE_DOCSET tag is set to YES, this tag specifies a string that # should uniquely identify the documentation set bundle. This should be a # reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen # will append .docset to the name. DOCSET_BUNDLE_ID = org.torproject.Tor # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. For this to work a browser that supports # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). HTML_DYNAMIC_SECTIONS = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can # be used to specify the file name of the resulting .chm file. You # can add a path in front of the file if the result should not be # written to the html output directory. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can # be used to specify the location (absolute path including file name) of # the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag # controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING # is used to encode HtmlHelp index (hhk), content (hhc) and project file # content. CHM_INDEX_ENCODING = # If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag # controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 4 # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. # If the tag value is set to FRAME, a side panel will be generated # containing a tree-like index structure (just like the one that # is generated for HTML Help). For this to work a browser that supports # JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are # probably better off using the HTML help feature. Other possible values # for this tag are: HIERARCHIES, which will generate the Groups, Directories, # and Class Hiererachy pages using a tree view instead of an ordered list; # ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which # disables this behavior completely. For backwards compatibility with previous # releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE # respectively. GENERATE_TREEVIEW = NO # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 # Use this tag to change the font size of Latex formulas included # as images in the HTML documentation. The default is 10. Note that # when you change the font size after a successful doxygen run you need # to manually remove any form_*.png images from the HTML output directory # to force them to be regenerated. FORMULA_FONTSIZE = 10 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = YES # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. LATEX_CMD_NAME = latex # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = NO # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = NO # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. This is useful # if you want to understand what is going on. On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all function-like macros that are alone # on a line, have an all uppercase name, and do not end with a semicolon. Such # function macros are typically used for boiler-plate code, and will confuse # the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. # Optionally an initial location of the external documentation # can be added for each tagfile. The format of a tag file without # this location is as follows: # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths or # URLs. If a location is present for each tag, the installdox tool # does not have to be run to correct the links. # Note that each tag file must have a unique name # (where the name does NOT include the path) # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option is superseded by the HAVE_DOT option below. This is only a # fallback. It is recommended to install and use dot, since it yields more # powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = NO # By default doxygen will write a font called FreeSans.ttf to the output # directory and reference it in all dot files that doxygen generates. This # font does not include all possible unicode characters however, so when you need # these (or just want a differently looking font) you can specify the font name # using DOT_FONTNAME. You need need to make sure dot is able to find the font, # which can be done by putting it in a standard location or by setting the # DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory # containing the font. DOT_FONTNAME = FreeSans # By default doxygen will tell dot to use the output directory to look for the # FreeSans.ttf font (which doxygen will put there itself). If you specify a # different font using DOT_FONTNAME you can set the path where dot # can find it using this tag. DOT_FONTPATH = # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = NO # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are png, jpg, or gif # If left blank png will be used. DOT_IMAGE_FORMAT = png # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is enabled by default, which results in a transparent # background. Warning: Depending on the platform used, enabling this option # may lead to badly anti-aliased labels on the edges of a graph (i.e. they # become hard to read). DOT_TRANSPARENT = NO # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Configuration::additions related to the search engine #--------------------------------------------------------------------------- # The SEARCHENGINE tag specifies whether or not a search engine should be # used. If set to NO the values of all tags below this one will be ignored. SEARCHENGINE = NO tor-0.2.7.6/contrib/0000755000175000017500000000000012632347251011136 500000000000000tor-0.2.7.6/contrib/win32build/0000755000175000017500000000000012632347251013120 500000000000000tor-0.2.7.6/contrib/win32build/tor-mingw.nsi.in0000644000175000017500000002207712632313415016106 00000000000000;tor.nsi - A basic win32 installer for Tor ; Originally written by J Doe. ; Modified by Steve Topletz, Andrew Lewman ; See the Tor LICENSE for licensing information ;----------------------------------------- ; !include "MUI.nsh" !include "LogicLib.nsh" !include "FileFunc.nsh" !insertmacro GetParameters !define VERSION "0.2.7.6" !define INSTALLER "tor-${VERSION}-win32.exe" !define WEBSITE "https://www.torproject.org/" !define LICENSE "LICENSE" !define BIN "..\bin" ;BIN is where it expects to find tor.exe, tor-resolve.exe SetCompressor /SOLID LZMA ;Tighter compression RequestExecutionLevel user ;Updated for Vista compatibility OutFile ${INSTALLER} InstallDir $PROGRAMFILES\Tor SetOverWrite ifnewer Name "Tor" Caption "Tor ${VERSION} Setup" BrandingText "The Onion Router" CRCCheck on XPStyle on VIProductVersion "${VERSION}" VIAddVersionKey "ProductName" "The Onion Router: Tor" VIAddVersionKey "Comments" "${WEBSITE}" VIAddVersionKey "LegalTrademarks" "Three line BSD" VIAddVersionKey "LegalCopyright" "2004-2008, Roger Dingledine, Nick Mathewson. 2009 The Tor Project, Inc. " VIAddVersionKey "FileDescription" "Tor is an implementation of Onion Routing. You can read more at ${WEBSITE}" VIAddVersionKey "FileVersion" "${VERSION}" !define MUI_WELCOMEPAGE_TITLE "Welcome to the Tor Setup Wizard" !define MUI_WELCOMEPAGE_TEXT "This wizard will guide you through the installation of Tor ${VERSION}.\r\n\r\nIf you have previously installed Tor and it is currently running, please exit Tor first before continuing this installation.\r\n\r\n$_CLICK" !define MUI_ABORTWARNING !define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\win-install.ico" !define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\win-uninstall.ico" !define MUI_HEADERIMAGE_BITMAP "${NSISDIR}\Contrib\Graphics\Header\win.bmp" !define MUI_FINISHPAGE_RUN "$INSTDIR\tor.exe" !define MUI_FINISHPAGE_LINK "Visit the Tor website for the latest updates." !define MUI_FINISHPAGE_LINK_LOCATION ${WEBSITE} !insertmacro MUI_PAGE_WELCOME ; There's no point in having a clickthrough license: Our license adds ; certain rights, but doesn't remove them. ; !insertmacro MUI_PAGE_LICENSE "${LICENSE}" !insertmacro MUI_PAGE_COMPONENTS !insertmacro MUI_PAGE_DIRECTORY !insertmacro MUI_PAGE_INSTFILES !insertmacro MUI_PAGE_FINISH !insertmacro MUI_UNPAGE_WELCOME !insertmacro MUI_UNPAGE_CONFIRM !insertmacro MUI_UNPAGE_INSTFILES !insertmacro MUI_UNPAGE_FINISH !insertmacro MUI_LANGUAGE "English" Var CONFIGDIR Var CONFIGFILE Function .onInit Call ParseCmdLine FunctionEnd ;Sections ;-------- Section "Tor" Tor ;Files that have to be installed for tor to run and that the user ;cannot choose not to install SectionIn RO SetOutPath $INSTDIR Call ExtractBinaries Call ExtractIcon WriteINIStr "$INSTDIR\Tor Website.url" "InternetShortcut" "URL" ${WEBSITE} StrCpy $CONFIGFILE "torrc" StrCpy $CONFIGDIR $APPDATA\Tor ; ;If $APPDATA isn't valid here (Early win95 releases with no updated ; ; shfolder.dll) then we put it in the program directory instead. ; StrCmp $APPDATA "" "" +2 ; StrCpy $CONFIGDIR $INSTDIR SetOutPath $CONFIGDIR ;If there's already a torrc config file, ask if they want to ;overwrite it with the new one. ${If} ${FileExists} "$CONFIGDIR\torrc" MessageBox MB_ICONQUESTION|MB_YESNO "You already have a Tor config file.$\r$\nDo you want to overwrite it with the default sample config file?" IDYES Yes IDNO No Yes: Delete $CONFIGDIR\torrc Goto Next No: StrCpy $CONFIGFILE "torrc.sample" Next: ${EndIf} File /oname=$CONFIGFILE "..\src\config\torrc.sample" ; the geoip file needs to be included and stuffed into the right directory ; otherwise tor is unhappy SetOutPath $APPDATA\Tor Call ExtractGEOIP SectionEnd Section "Documents" Docs Call ExtractDocuments SectionEnd SubSection /e "Shortcuts" Shortcuts Section "Start Menu" StartMenu SetOutPath $INSTDIR ${If} ${FileExists} "$SMPROGRAMS\Tor\*.*" RMDir /r "$SMPROGRAMS\Tor" ${EndIf} Call CreateTorLinks ${If} ${FileExists} "$INSTDIR\Documents\*.*" Call CreateDocLinks ${EndIf} SectionEnd Section "Desktop" Desktop SetOutPath $INSTDIR CreateShortCut "$DESKTOP\Tor.lnk" "$INSTDIR\tor.exe" "" "$INSTDIR\tor.ico" SectionEnd Section /o "Run at startup" Startup SetOutPath $INSTDIR CreateShortCut "$SMSTARTUP\Tor.lnk" "$INSTDIR\tor.exe" "" "$INSTDIR\tor.ico" "" SW_SHOWMINIMIZED SectionEnd SubSectionEnd Section "Uninstall" Call un.InstallPackage SectionEnd Section -End WriteUninstaller "$INSTDIR\Uninstall.exe" ;The registry entries simply add the Tor uninstaller to the Windows ;uninstall list. WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Tor" "DisplayName" "Tor (remove only)" WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Tor" "UninstallString" '"$INSTDIR\Uninstall.exe"' SectionEnd !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN !insertmacro MUI_DESCRIPTION_TEXT ${Tor} "The core executable and config files needed for Tor to run." !insertmacro MUI_DESCRIPTION_TEXT ${Docs} "Documentation about Tor." !insertmacro MUI_DESCRIPTION_TEXT ${ShortCuts} "Shortcuts to easily start Tor" !insertmacro MUI_DESCRIPTION_TEXT ${StartMenu} "Shortcuts to access Tor and its documentation from the Start Menu" !insertmacro MUI_DESCRIPTION_TEXT ${Desktop} "A shortcut to start Tor from the desktop" !insertmacro MUI_DESCRIPTION_TEXT ${Startup} "Launches Tor automatically at startup in a minimized window" !insertmacro MUI_FUNCTION_DESCRIPTION_END ;####################Functions######################### Function ExtractBinaries File "${BIN}\tor.exe" File "${BIN}\tor-resolve.exe" FunctionEnd Function ExtractGEOIP File "${BIN}\geoip" FunctionEnd Function ExtractIcon File "${BIN}\tor.ico" FunctionEnd Function ExtractSpecs File "..\doc\HACKING" File "..\doc\spec\address-spec.txt" File "..\doc\spec\bridges-spec.txt" File "..\doc\spec\control-spec.txt" File "..\doc\spec\dir-spec.txt" File "..\doc\spec\path-spec.txt" File "..\doc\spec\rend-spec.txt" File "..\doc\spec\socks-extensions.txt" File "..\doc\spec\tor-spec.txt" File "..\doc\spec\version-spec.txt" FunctionEnd Function ExtractHTML File "..\doc\tor.html" File "..\doc\torify.html" File "..\doc\tor-resolve.html" File "..\doc\tor-gencert.html" FunctionEnd Function ExtractReleaseDocs File "..\README" File "..\ChangeLog" File "..\LICENSE" FunctionEnd Function ExtractDocuments SetOutPath "$INSTDIR\Documents" Call ExtractSpecs Call ExtractHTML Call ExtractReleaseDocs FunctionEnd Function un.InstallFiles Delete "$DESKTOP\Tor.lnk" Delete "$INSTDIR\tor.exe" Delete "$INSTDIR\tor-resolve.exe" Delete "$INSTDIR\Tor Website.url" Delete "$INSTDIR\torrc" Delete "$INSTDIR\torrc.sample" Delete "$INSTDIR\tor.ico" Delete "$SMSTARTUP\Tor.lnk" Delete "$INSTDIR\Uninstall.exe" Delete "$INSTDIR\geoip" FunctionEnd Function un.InstallDirectories ${If} $CONFIGDIR == $INSTDIR RMDir /r $CONFIGDIR ${EndIf} RMDir /r "$INSTDIR\Documents" RMDir $INSTDIR RMDir /r "$SMPROGRAMS\Tor" RMDir /r "$APPDATA\Tor" FunctionEnd Function un.WriteRegistry DeleteRegKey HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Tor" FunctionEnd Function un.InstallPackage Call un.InstallFiles Call un.InstallDirectories Call un.WriteRegistry FunctionEnd Function CreateTorLinks CreateDirectory "$SMPROGRAMS\Tor" CreateShortCut "$SMPROGRAMS\Tor\Tor.lnk" "$INSTDIR\tor.exe" "" "$INSTDIR\tor.ico" CreateShortCut "$SMPROGRAMS\Tor\Torrc.lnk" "Notepad.exe" "$CONFIGDIR\torrc" CreateShortCut "$SMPROGRAMS\Tor\Tor Website.lnk" "$INSTDIR\Tor Website.url" CreateShortCut "$SMPROGRAMS\Tor\Uninstall.lnk" "$INSTDIR\Uninstall.exe" FunctionEnd Function CreateDocLinks CreateDirectory "$SMPROGRAMS\Tor\Documents" CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Documentation.lnk" "$INSTDIR\Documents" CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Specification.lnk" "$INSTDIR\Documents\tor-spec.txt" CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Address Specification.lnk" "$INSTDIR\Documents\address-spec.txt" CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Bridges Specification.lnk" "$INSTDIR\Documents\bridges-spec.txt" CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Control Specification.lnk" "$INSTDIR\Documents\control-spec.txt" CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Directory Specification.lnk" "$INSTDIR\Documents\dir-spec.txt" CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Path Specification.lnk" "$INSTDIR\Documents\path-spec.txt" CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Rend Specification.lnk" "$INSTDIR\Documents\rend-spec.txt" CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor Version Specification.lnk" "$INSTDIR\Documents\version-spec.txt" CreateShortCut "$SMPROGRAMS\Tor\Documents\Tor SOCKS Extensions.lnk" "$INSTDIR\Documents\socks-extensions.txt" FunctionEnd Function ParseCmdLine ${GetParameters} $1 ${If} $1 == "-x" ;Extract All Files StrCpy $INSTDIR $EXEDIR Call ExtractBinaries Call ExtractDocuments Quit ${ElseIf} $1 == "-b" ;Extract Binaries Only StrCpy $INSTDIR $EXEDIR Call ExtractBinaries Quit ${ElseIf} $1 != "" MessageBox MB_OK|MB_TOPMOST `${Installer} [-x|-b]$\r$\n$\r$\n -x Extract all files$\r$\n -b Extract binary files only` Quit ${EndIf} FunctionEnd tor-0.2.7.6/contrib/win32build/tor.ico0000644000175000017500000024144612621363245014352 00000000000000 (F00 %n  . h>(        "##$%%&''''''''''''&%$$#"!    "$%'(*+-./122445556666666655543210/-,+*'&$#   "$&)+-/24689<=>@ABCDFFFFGHIIHHGGFFEEDCBA?=<;97531.,*(%#   "%),0269<=@BEGIJLNPPQSTUVVWWWXXXXXXWWWVUTSRQPNMKJHFDA?=:752.+($!  #(,048<@CFILNPSUVY[[]^_`abbcdeeeeeeeeeeeddcba`__]\ZYXVTRPMJHEB?;73/,'"  &,27<AEILPSVXZ\^`bdfghijklmnnopppqqqqqqqqpoonnmlkjihgfeca`^[YWUROKGC?;60*%  #+3:AGKPTXZ]`bdfhjkmopprsstuvwwwxxyyyzzzzyyxxwwvvutssrqoonljigeca_\YVSOKF@92*"  $-8AIOUZ]adfiklopqstvwwxyzz{|||}}}~~~~~~~}}}|||{zyyxwwutsrpomkjgec`]XTNG@6,#   +7BLU[aehknorstvwxyz{||}}~~~  '''---222555888::9;;9<<:==;==<<<;786,.+01/00/**)%%$ ~}}}||{zxxwvusrpnljgc`YSKA5)  $0=HS\cilpqtuwxyz{|}}~!')%HIFfga~~zđϟ٪ᴴ꺺񾿻ľ𥩢饧ׅ{{xeecEED***$#$~}|{{zyxwutspnkga[RG;." %2>JU^fknrtwwyz{|}~--,[_UpxcĆyף軿ƼȼɿȽĹƽ曙Ԁ[[[(((~}||{zywvusqmid]SI<0#  $0<HS[bhkpqtvwyz{| ??;suoӴǿŹȻʻ̽̾ʺɼ蕕qqp673 ~|{zywvtrpmjg`ZPF;-"   +7ALSZ`dhknprtvz~()%jlcӶƺ̺˼ȿ슏p`dL!!}zvuspnlifc_YRI?4( %-7@HOTZ_afgknxGJDaj\m}d甡ǷȶλɼpxonmR:;, vmkifd_\XSLF>5+"  $,3:AGMQVZ]n&/DRuySspMLL175 6172"C  &&%#yzt^xmTcGzħǯʷyVlYv{ǮʯǿƾObFK]Bokew_yynmhbbx^m}qWh\l}ltcqR~j]cIekFiiGTS=94!8.7,4.Q  %%$'qsmkzWlK|nɺηĠȧĥȸɽzwxvnng|gɯȯŵȾ9L76K2dw]j}flmxzomxplYnRduc_o`dyfzz̼ǻewVGW7ZiJmmvaOX7_`A_]CG@(D8!?19/5) ]  01/)uyruryhjZUlFϾ{zhxfL\J&A+PjSġåȸĹźĴ}EWG4I8/C0^q^~|tmMcF8M3J\Gvzns~|ql~^\kN\jO\mRarVwFP2SU8VT8HC(F=%A5A6!<.8( e "  HHF+{~sgzWuat]mrŲǰ͹¯{y4K8!5&';/N_Qǵ˿ó`ph@SJMbTvxivyoThKSgMooYk\j|gocw{nhatXwj|lU]AKO3[]@OP4??#A>"UP6ME.<26+(l$  JJF)ڇ|fxXi}Volu;¥[sXHeL:&iylʻ˵ʴǴİë~wsnrwdp_h}T|f~q|c>P6\oVRfPUkXCXCyq~pdz̾\qSDU3RZ;\`ELT9eoOZcBEL,SX9mpSbcHA?&>7";/+o "  @A9#~wi\nJ`uNuanlyd{k|̺θ}PiRvnvn}v[u\ŲɼŹrfRjIKcA[oNn{]ny\DU7YkNK]C8G5AP>RaJZlTAT;bqTujXgMAL0U[?hnP_iJZdEIQ5T[?fmQNU:JL2?=&?8$;.6&. m    swހvauQavOr`n]WiFbsRO_BET;ȴ{yʾȲǼǸȼedkhz±ǻxvTmP`wXtgykReFTkJZqSkzg7C3@K8amVix_\lTtkblUAG/IN5KT8\iJerQcmL_iOT^Gpz`OZ=IU6GK/?;$6.6)=-@1!(!f ipWmwݓ{qxg\mIFV5qbZoNYnMskRiMupøfk¸yumktkf^`_x`ReR:I7M[AJW>]kZcnbDL:01:7 DG-P[>gvVbpOyҶkx_6B(Q\=PZ;HN49;'55%HE5SNbuVLbCCX9Ͽǯqb=Q6k{jͺ}öøʻ³ȴih\y_TnQth~w`q^qtjTpO]w[;R6@R:O[EVaI2>)ZgX]h\=D3>A*IJ3@C+?F+q|ao}_kwVA(mnQor\<  LS;*wXaqTi|VyuratWasRuiawe/C1|yIWAq|e{`pWxsùĺĺƹz}rveljtr~mvxgqgkLgQMdQexfih[sV^qSS`H-9(EQ@q~lyy9K7@H0rϰԺȧڳ~p{q~c3=)5<&[bD沲xxr$ jqSltMjuKoXe\ssjk~bxZPgJqmqt~÷jyf>M6jta~|as^ƶ¿ƽqƾDfL2O>>XKnwnuB[I/C5;L?QhTXsZOgNCWA:N8BVB;N=GVF8D0JR8CJ.[jMI]Ady_`qY4?(;C,mu_|XlS_jPřǦwhzUTeFM_@crRŶܟr V[I\r|\yaarJk~Wg|Zg`mj}zwWqU?Z?RkSƽMYFHUA[fTyyŷľSqcc~iPmT9S<7L8K\Kat`d{b^vYbz\f}``x`RkY_uXx{k~fPhKKbEriizf:J3?L55=&CH2BH0GP5CN3VdHre~}NbLDVAP]HclRǰǽĽFM:)cjXgqZAK0V_B`jM[gIXjI\nN`qSZmPKcHJfMjmsut~gQXC:A,HO;FO=1<-*5(O^O~~|z~}pf\pTZnXauam}iŶ>SKS9CS7]oT_rYRfOXmW|}orBL<08$25%44$=?-HO>ƶiiqqĿ̷brPHM8@   $#1fj\P^BR[AbmSaqW}~RiVsyJUG%-"'10$52$=?/U]LDM<,2!27'4>-EXDJfNtwøɼpqOdOGYDES>GQ=8@,?D/GL6HQ8BS8MaE~vps6L7NcIȶ̸YsTMeJPcQmzmuu\iFy_KN?  ,*hBF7|xƼRkXd|jan`&/"%*"%89+68)5;,bl^WbR/7&5;*4=*5F/VlSȴyeype}bxq{DWC>M;8C239*=?/8:(:=)@A-EJ4P]Ak{_jmOiRMhLhd̦ɳ|ndw\IYEIUD_iUyi¦m[N[;pwYڈsS  +* ;BC25<.XaU{Ƹ_uedn'.!#%'%%&JO>>,?@/AD/S]@wggdxr[tYxxǪӿʱ~jp_]oR9I2?G4dgRŬP]?LV:\aDkGK<(  bdQopvfIQDai[kp_IP>^dUnsfqwUlaIcWPf[fxkosip[bY #*&)"53$diSCK8-5$u~nbp_?M<9H4K\A}OiT.G49O?4G9#7+=TIyyhzegqQLW:FK945(,,/.9;'>A+@F-OX=sxptjYo[jrZO^:FT4UcD]iJSX=HH/vCH.ZZBGD)z{\ݛZ()# *(UGyƯf\hM9B,<@+IL3KR4YbDvukriuk{Wu[xr~t_i}Sr\^pKEQ4EJ/OO3IE,>:#prY?E)JH0A; ~z^LLF*  :3"kMG6^[GacJOR;;>+>B2PVELQ@PVCMU@ZfRxv~vvi~mtVbV"*()'1(7+ 0&,(,,:>(blPl{^jz_uuVt\MkU]y`}LfRMcHcvUN`F5E3+:-+=.OeP¶ºpjYlOvuaMW6!on[AH/96$LH+[ڪU3326E<%QI0WT8_aEpɴ]kXNbPksw}-5*)(+$+#5(9)/"-%2.VW>krSlyWapO]pLrcwspvSy]]{c[{Wd`NeM7F3>N5=M71A0/@04H3SlP`|UOlBxeu~[V]C89#0/26&5<-FK:S\HWjT`v[gy[ì|LeF˲\nTJJ3VM6L@+B9%v66!6- LE,bcB999&"WD:!E:!idHqyȺ˸LTEEQCg}lykwWk[DN>43&0&6'6)1%/!7(@8)KK4U[;]gB]iD\kChzNn]um¯LeD9N2;L58I42C/:K8[mV~w˷shAV5arUhqW@C(>@$SU>EE4('&(JWAjcj|ZsmM\I>:'>.=.B=(rv{a=3 ?4"C>&bbI==+G;'G;)9-3&6(3, 43 AE*QV:UZ@W]@[dDS_ASeHXmRfhjq(;*,:),:+1E6RjOsµ¼mu3J57C*BE,EF.B@,40!($-(89&IW>1F;$A=$liiZH@6 WJ0yWcWS4fcAm~uP_J4<*9A0m{hwbf|ZfGI,HG1F?(L?+D3 @1 7/74BC(PV7T[=HO69@*2:%6=);D/FQ;UeOCZD?XB>XA4N6+E+WsVȷ˼ZnZS[HjjlNHH-ED,FD074 1.@D+OT7XX8jtPduPeuSl_XmO^vXuowHM@@1#F4"@2K@%e]?c[?;,;0F?(WT=665(LE1q;.B2RE+kbGUR3Z^;f;B6/:(WcQĢtjzZ_jM~PN992 B6&=1 =0G;&PG0JC-?='DG0MU>LYAGV@CN;:?-8<*4>*.:',FB1;6!<5JD,UU;[^CWX&`U8jaFND.=*<0WQ=ýehM^[A@5"Z  II6-`X=B1J7!N@'^T:ojOknRrLPCPSJQWK;B57@1{qku_nz[s|_rw]BC-:7#A9%<4:1:1=4#<4#3/DF4go\|HP@5<,3>.K^L>VBJ]K|{ź{|`~ZLe>m_MW@1.0(0';/F<%GC*XZ?chJ]cEmuakvYW`F/EJ2)4(8)?/F:$IE,MO5HN4R[@vlbqVOZDUYDBF2|qʻp{lC@0@0!F1 M7$N7!M6N6!J/D)=*TK*95 9:(hoaϻϻl|YP^;\hGmvVkkK\Y>D=':0!;.#:/%5-!0*/+.. -7(>OBaph~˽Ƚ@ZG7O9J^GI\CGZ<_oPVbD\dJKK4:4 2%2#6&B0J;%JC)HG.BE.;C-DO7PY@SY@XaHZaKYYFVYF|TSG=,C*L5!T>&T:"N3J/G,D+A2}8/#B1M6"J/0W53!SM/h]>iY=M; G8I?&]Y@poUUT8=>)u|mžxxcGK2AA,1/.)/),*./"7:-8=/6G=*:-7'B8'\UBPG2RI3ZV=\]C[]CJO6OW>]aLNN9@>'MH2;7#abOpxgORD<0#B(J,L2P7U6T5P6K4 B/kbHYRK7'F3Q;#N3>" ><';c\9wlHxjIWJ,K>#G:!PE,\W=rrW|ʿõϽ|QUA:=*gjXfgVghW`dTekYu|i}t|o{[qdmqƾ~j{`vAA.0'B3!C4#A1!>.NB1f_LMF1E?*MJ4WU>_]E\ZBmmVjhSXS>RG0WN6IF.qs^w{gPI9?-F)M+N/N0U5aD,_G0H4B2{B2+>%B*Q9"O4B$.84"WpiIwnJgZ9YL.TI,j`?riFZW7uȹϹǶhlYRUByrx|ſĽr{aiYya-I77R?]w_^ue@WECVB[jWhucxqoxfPVCW]Jrxfno]E<+:+3$7&>+@*F1"K7'G5"G8#QG.UK2N@,M>+TE2M?+N?+XF.WJ0\U=b\FaVCN<,D+J*Q.P0U>&gT:lW>[D.@/TH5žQNDB&H'D$Q1M.A"E82"svoQwnN\N/WG,neGo_^`<ʼz~ilp_ghWbbORO>PM-69'38#9@+AE3>;-71$86'EH5LK7B5#?.5%9$>$B$C$>"H.O7!WD)U@'H-F*A&?%H.T;$P:"Q>'G2@'?$F(U3 U6!T?)d[ClfNZJ3K5 WI6v<- D$M(J#L$H#@ [ E:%eX;l^@[K.ZL0d~{yTlnOu}yWbQ\hU`mUZhLalNehKWS;PH3@7$80?1#A4%8,6+82!CG0`fP\dU;RL1Z[XpNrdHiRKhMOiLwoXgSO^KRbKAL6MP=38%;A-PV@>>,;6&=6&<5&:1"9+@0"LB.\X?b[D<-:&;'C)D&H%I&H(H)G)F)J+R/X4"R0J*P2aC-W8"K-I*I(F&N.X8]E*j_EhfPLG4@3aQ>A3'D-H0K+I&O*K%A *w  9/#QB%YJ,j\@cW:\S5{xWd}_qjmKv}Vs{XksWwhfpZR\GU\INS>RT?[\DPO7GC+J>*SA1H8(A2#G5(D4&?2#@4%B9*JD4>B01C67\XDw}fd{XuaH^F@O6^lPjw[T`Jxo|p6<';5'<8(FC0hfQEB.:3#<2#?2#A2#A/!E1!M>(WM3`T85)?'hT4qeDL7E.]@)S1A A"&6.:YO3aY=upUzuZ]V9NI+hiKxrtpHz|RilKDG.qv`mtYjtrpU\X=YQ8OF.L@*K:(J5%F1#C/"C0$C1%A4%F<,IC2CD2ANH/CO5^hPtLQ?99(C=+B=+GC0VS?B<)B5&C3$C2#F3%H3%H2"J7$Q@+XE0S<+M5#N6$U=+J/F'C%F,L3!J1F*G&K)S2!W9'Q1 J(K(Q+S)Q'Q)O.V<&eP5dS7M;$?-[M9]^O4&J3f}aR6G4X=&R0C E#*.LF7O{fwu\_\@WO3PC'I<#`Y>uqTunP^R3aV8UL5XP?spmXe\CXJ2L=(F6%C3%G5&O:(Q<*J4&H0$G0&C/'C3)B9*ID3LK8KSCizohE{0rveXdWv1NE8J;KWBP\B[gKckPOT;;=)DA.KC.LD/MD0MB/E9&H6'H3%F/!F.!J1#L4$M4$P6&K1!M2!R4#W9)kUB^H6N2 H-^I3wfPo]GW>(H+S8&kTC^G5E)L)L*Q,U+S-P/M5!p^Gl\CG8!I;(wjYν`\J7+M;#cV/_uYN6L,O)G!C!& @a]QbpԔ}hfZ;bN/`L/XH,fX=gV=Q8!R6M2Q6'J1"F2 K5%M5'L4&M4&N6'N7'N8&K6%H3%K5(Q;0J<.G=-A>*QS<{ltw#S`/dpPj`]w9VKDYKaq\grV]bG=?*AA.IH2HH0IH2RL7MB/I:(J9(I6'G3%D. D,J0"O3$N2!M0!H,F)N,P/H,T8'V4%Q2 bL8gU@\H4S9%P1U8'[C1R8'N0 N*O+R,Q*I*L6#l]Gm_KN?.?2unSȶSS:>2E0ylJYtlAuhLL1P,P)F#?!"P7,tZM:ދuyfS"P,R)L%N,T9 1"^. I/H4!H5"N4R1Q.O1O5bB,iC,aD(U9[>$Y;%Z<+Y:+X:+V:,U;,S;,N9+H8)G7)M=/M>/M>/NB2MG4FH68K?X2u(f/euiiwPsnHia?[Q8OD:I>AF7JH3NJ4RQ8[bFζ|RI4M>+L9'P<)Q;+Q8(X@+cM2`I/Q8$P4%N0 U8"P0Q0!R/ T-V-T. O,L*M+N,O,P,P+T.[3!f;)Z4U4bH2wcP[L:>6"}{hu|ZOB%L>!aV1]yQOCkV5bE)Q.W.R)K%J(cH,E8'k9+I3=)F7aQ5cM1L2N>"ZS2XL/J0V: aF+W<$T8!Z=*Y;/T9/H7+D;*JB0RJ7[WB_ZFIA/H<-K?2D@2DD46?0k{sol<5~BU`^GzvjW~y6UP)E>3HA8G=?F7HG3NL8UY?\hJq]`FQL5QG3UG3YH2U@.S<+YB-_H0cK3cJ5X=+Q3"]>(c@-d@0]8'V0W/X1!X3"[6$^9'Y7%U5"\;&fC,hC-b9&e;(^:$_A-vbM[L9@3"sj[plV`Q7ZF-UA(hZ<̣mQC%W="V1M&R(P'I#D" Y<#>0"v?6*O?-[M6vpTmeIO;#WD,hvwYbZI\I1YB)Y?&]A+eH3^C2WF4ws]sxwXu{~ipq^PSABG5IG6FSFyLt}EwSIAEPteM}}=`X2SI@XNAODDK=MN=TT?Y]CalNl[^@[Y@VP8WL6WG3VD/T@,S<+R8*T8*[>.]B/U<)T7$]9'_:+X5&W4%S0!R0"V3"b=)i@,kB/kH4nO9uV>uR<_<)X5#X4$S3$W4&Z9)W<*^L7wRJ4D/J/^H0x[yr{_TB&S4R+K#M#K#U0O.G*) *&OG1wYVB?2g]Bɺ[V:MB(XH0^I3^N7bY@jȫ˻xZzofrN4fr;tSPASc_L|?e\OsiSnd=PDBN?LR?TVAZ\B^eGejK_^B_Z@XN6VG2VC/WA-W>,W<,V9+U7)Z?.iR>kWCW?+Y:(Z8(W6'V4$S1"U4$Y6$b;)g=*i@-fB.bC.dD1_?-Q5#M5$WA2cN;dJ6oO;]A,YC,rlhPcS;M0!D&\I0ac[>i`D[j]:ZE(J(L!O M#\9#U:"H2(HH5efK|}QO<@8!\V:vǹxkeMWSZM8VG5WE4XB0Y@/X>.Y<-X;,X>.bJ;eN=W<,X9+_=.dB2];+W6&V7'T9(W<,Y9([7&Z7&W8&U9)ZC5pbRxin[DgK:Y>+U@*~ziXO>cP;eK4P1L/r^DbH8`N/TwPgI-T,V'Q"J! M-N4J4)TUCq|np]LJ3OI-[V8ecHԵǣxrhѲpK>t7l~5k:r>zBILFCKKz}?eg9[Y;_ZLsk?g^Z~vYwm>VL;MAK\J_nVblT^bH`_EbaE^\C[T=ZN:[J9\G8[E4ZC2Y@0Z@/Z>.V<.X=0[>1Y:-Y:-\<.cF4`G4cN;iVCbWExm]iXHZC1dM:{hWzouvrgZjUCaG3cF5YB/cU@sgaLVE/fK5oP8dC*X8bJ.m[>P;ZA#pV0lN/W1S(T(O$O.]G2O<'A)& WXEmo^IG1VQ4`]:YV7^[DpìǤvir|ռԺ`G~?sx:n};o>uB|CBIKD|@vxU=lI/[9T8iQ3w_AW:\9T.M#N#R'Q%T1ZC.K3B!' Y[G}rWYCkjIniEWM0F8$D8)YSCjhMrnOleEukNzjQxlSz_`nԴڶЯ^sOEvBpxAq~DwJLHFHKHIN=mu?eh=_]:\W>_[=YTC\SRl_TpaJeULcSPeSRaL^cL^_F\\C^ZC_TA_N=aM=`L;_I8^G8\D7ZG:XPCSUIQRHQK@XG9W=-Y>/aK:q`OsfTeUD]H7\C3_C4cE6eG7dF6_A2X;,[=.bD4gK6z`Dz[uXm|oXt^GtT=yS=vO9kD-`8\:tZ=|`CQ.X0e<#T(T%Y)T&S,Q1G(C 'Y\JuzfuzY^^/[A2W?/Y>.[>.]?/a@1d@3d@1d@/dA/bB/dF4jN;~lOvgoY?x^|bv\DmJ5rJ5sK6oF0b9"^@&lP}cIN)T.jD'^4^0\,S)S1[>%V:"H+$NRD򴶳u~d^fL[[FPD2I7#G3N1N2!^H8gQAjSBkRAgQ@_O?c[KecT^_NjnYt|f\bPhvhU|xIsqFruP}PI{CyLOOQSjgEy>fjBefAeaCd_D`ZH`WHaV\yi}v{Tk^PaV\fS^aHa`GfbJe[Fj]IeUBcO=fKZNBV[QTeaNhgIc_M_UgjYdWEhO@dG8cD4bE6hJ:mM;oN?lL>fF9dD7hI:mN>pR?w^FtYybr]IqT?qU?nUwaMkQ?kL9zXA^FwR:_;%X8kO5eE,W1Y1U.]6_8Y2Q*F$V?%dT3Q>$! rKMD}㯯·]gUKR>WUA]Q?lVFrZHqXGlTEiSCgTChWGfYJ`TG[XK`ukm]mM}}jpp_fkpdh\W{rQmdMe]Me]Mg^Wrejte|j]kWhjSgeNfgPggNolS|x`nfPhWBiQAbM@]UH[bXVidQjiKfaVg]y}mlbPePAeJ;fH:gL=qUEsSDlN?dI:bJ"eG*Y9V0Z2X1S-P)U/Q,C#U@'aS4O?%4)fcc\mۯzpwr}jidSo`N{iSraMjXHkWGnXHmYJjZLdWKaaUlp^mVx_hǿstSy~\~OsjMkdNhaPhaPg`Pf]XmagzjnyekjUlgRllUy{]o~vt^h^IiTCdPBaYN^f\YldWnjQjf^pgmVH;dL>pSEmUEkTDiRBfSAaTBneU|mxfvmWw`q^JpRCnPAlVuZtYqYqYAlUeNvT>uN:xS=sS8hK,iO/R5W4X4T1Q.P.P/K-G1UG.RH-@4WODY]]T[Ѥwyguuclws`h_Pi[Kq`NoaOh\Lc[Mbh[odMpiFnl]xbR}|^|ʺϾȻdqzǸdYuX|r[ypZqiUg^Xi^^m`fn\jiVmhTkiQknzs\tbNlXIdYM`dXaqg^voVplZpgWPBiSGw\OkSFgWF}s]or~rzlwi\gPD|iUnwgSrTDsQ?xVBvT@uQ=vR>yXBvX>v[={cEM1V5S5aE(Z?#]E+^G.M7_N5fYAI=&8*YPEJ-,!GQQCrsh}|bjI`gQnmgUiaQnhWsp^mlZq{l_IkaU|tV{tRwoQunPtm]yĴlXyiuhbyWocWi]csden\ggSrmYnkTmkVrq\uv`xw_h}oYn^LeUGa[OeoeczsZspSi_wpb`MjWIjRGhUJ~pι{zi`ZMaXJ{pqf[thX|ѽzwhdQAwUB~XB|XA|YBbKcKx[CoR:cI-^E(N2W7\<qY9n[;h[9,;7,:9+WZCx_{ruTA<"74bbHqs^sccUvthrjvi~RwmvaZxnawfjumxȼ̾ŹyfSnb]sc{xwo\bPhjXop[ljUhbOlbOrhUukXueUp]OhWKc[PdmaeypZpjOe]TfWjgVHhTGzq_xvydjlXhjWmkYsiWscRq_N~m]qok^pSFwS@]IzXD{YD`K}\GwVBnO:`C+eI/W9Q.Q-M.S:!YG-_P7H6#G5#@0:*7)VND'41$94"-%/$5&9,A<(ON;MM:61?2G6E8!|xcqv`tǴѸnl`b\Pyyczrnk[|rYxl]~qw~~Y~s\wj[zn_~lmq{wksapu_yyenlXmfRpgUlaPk]Nj]ObYLhj\~zWqiQe`ZibcbQlcTnhVghp±ĵwi\IlZGs`OqaOpjcZw\RzZLz]I|_JaL|_Jz]H|`KoU@YA(\F*cH-P/O,I)Q3F+<# A*I5!E4 =/;1YUIIJBij]HF76/G>(LE,@<$[YC}dRJ.TE'ZL.ogPpo_rq_keWxwd^~sutnb{U|p]v|{giwdlz|tofq]rxdus`qjZofUnbRpaRl_Rb]Qvpi|Wmh\khzϽ~ovxtjXs]M{bSt^NxhVvkYufVl[iTfQhScP}_L}_LfPwfLldEwuUYQ4Q?$D+F*B&I)M*F&@&<*:1[XKj}}|GJBh؎caVOK:d^ITN5[U<}~bkkK¢jmmZq{|lñ°wdu{ɽwkys|y}~tqjuarubro^mgVmdSvgYwj]kh[~s\wn`rm̸ɱuvsa}ulYxdS|dTr[KrZJ{aQkY~fRlWnXkVfRbOeQlWmSrS_\Q4]M3^P7RG.ZL5M5 G(A"@(=-94\[OSLOGLotjw{skkaDB2EA,OE.G:#ibKmrWfoRȪغ|orc}qv}pxq{ysnɽҿʻ~vzvyomq|ijm[ihUmhVuk[uk^hhZ{{`sjzvydtsd˿yyxgzsbtjYxjYp_q[KuZKwZKx]Kz_LgRlXkVhTjWiVkVzeMfQ6\K1RG.ulqG;%;'<&B1>3<7"^^S<ch^.`fXPRH?=394";0@/B0TJ8]\I?:(dcF~kqqaxxiqmlpwteonav|pyɹϿx}|~tug}i}yujk\qp_xtdzvgopbuqgrwqquaxzz|hsm\wqanp|iiWy^N{`OhUiTmVoZs_mYjVjWnZydMY?&H1]Q9ghVMP<[\F]W?F9"<->1>5!=8%^]S$_dXW]Lnpghh_GD1:1A2N<(L?-G?,A1 C9hɨk|ze~imjzgzvfssd|uоɽyt~qstivuiyyju|ysxtxp|}{j{tdw|gxezdTx`Qn]o\jUkVr_t`p[p\uaxeNT@&H7OC+bXCJA.oq^eoYms[QM6>4<3=8$;9&n\\R qsnUXL`cf[}wko]MH1=0F4E4 D6"D5 B9buqto~k}}lvwgxqϿǽǻŷƹ¹{˸μtzpqsgy}nyryo{|nywhvl_rcyoxot_QhZiZeUgUucs`o\ubt`wgPlaHd]FD:$F4!J7$~zb`lOtW[F830*;7$UTHKrrnWTJ>@>.TVF_`NOI48+A/R?)PA*D5 E?#evqrol{}kuxjϽo~~ķ~ƹĴqzo|u}}{xitl`rg\wh\~n^ucmrxwxzgXeVfXfXhWo]n[sa{h{fitor]ID/ZJ4I5!VK0[\<{fQWB97#1.87#bbZ0WSG6/92@8%?4:+B1VG.UK0D6IB%qs{yl|xmzyjy{j}rz}˾´îκ¸ƾƴʰwyytn|k}qdyl`tfra|iYqcxjxjue|jtan\lZjXmZp]tawe|jrtheiQQK3_N5K9!?1PI.SQ8GI2@B*<>'>B,xdf\ig_HB0`9.:+;+?/H;!VK0OE)C3LC&fzwzzlsv~v~̷dz̶˷ļħ¦ñҿv~nu}mzjrctf|mvfm^|mtq`tbr`wdmxds^jnnzizii{uVhiGddEN@&S:#UB(J<%A8"A>&XY>PV;HN4V\JKrtn\WM99.<+<+@4VN4^U:E9@1RH-a^?RW=ryhw~qǮɵɺŸȴ̹ò͹ʺ;©Ͼҽ˳wwuzlseug{m{nqdpcw}|jp{ir`txy}s}l~k{nXf\>qmHqmIRC'M5 S?(N?*=3!JH1x{afmR]dKrul+if_I?.<,;,>5TP7QJ0B7A6XR7VU5OQ5fjW~v~̿ķɷƴIJŲĭиѽƷ~vrwkth{o{othnatgusziust^ou~mm~uZmeEunLibA`V;B5 >+>-2)@>)su]mrYszgj}yb]UF'RE1G9%;&4","?>)_dJioVy{s2b^W&:1 8/C<'YW?D@'D=#@9$GE-KN1ZaHƹȸȱ¼÷~wxwysrxosksixk~p}oxjxjq{sqwersqsynvtXacCHD+A5#D2!I5 I5<.2+``O|pku`wzsdb[ =7'T81B=(ZW@ML5ikVjkZ;?,18"SYK}wu~ù~yzym|o}n{l{l{mzl}ptvpzlykzjzi{jvlifLTP6G@*=4!;0M@'PE,D<$fcPak^?quphd^)=5#<8#UT>orayEQ=?J;ƿ¼ùzǼ|xxƽtvztqstxkzl{n{nxk|msyutmYTM5@:"EA-^ZI@8%I?)gdK88"stdcbZ 52S75"FF2lmWinTFUA~}ETD»r{µĻp~Ϲ̶źļ¶l|ƽzrvwzmykykymzn{mztZ[DQT5qvS{eafQ==)73bcHIM3IO:ajWkrc>{}ydd]%42:7$9:#9@$@N5bp\p|kDRAyxź´°r}ȿŽnyξvstxs~q~±wemW9>)14FK0}mYePXcNwzuklf @C.HHI5LO:T\FNW>OW@>G3BM:IUDaqc|Ƶ;IJ̳ƽ½yɻοòƶſyzw||yx|Ȳνvr}gajTu{i^j]3=,4pro||{hjbFK7?E1>F3?G-AH.9A)4='8C.;H6[kXǵ˺Ⱥ¸|wxw|wvϿпø|yM_JFS@LVDozd}]i[slok||{eg_207"CJ6djUM=8?,?F1ZcI[fNuxs~~opm*0c>D2quijtaAO8ZiUxwJXI=N<ľƾ¼úƹ˽ƹpw9G6JQ=@J2>D,PWBQ}}|yzxX[S"/4%OWIp}gZkOdx_qs~g~kToWtu³ҼĮ˽ʾjymXeUen[EP:14#npi~~{{zVYR52;*S`JYjP^tX`y_ltpylsgmxεǰľúļƹɽrsw{Yf[OZL:A3\]W)z{z*1"[5>/:G6EW@SjNbepvbgGhLC`KqyǺн̵ԽǿſľȹɼɹʹĻ}V`Y7?536*10$O|}|NQJ(.$}'/#1=-7G3McLb{`ToS9Q9,B0J^Tʳ|t}[j_CNC*0$&&3/"oSPIJNH)*2&*3&*4'4B1AR=J\EDV@2C2->2L]TðѽϷ׾ĭǾǾŽȾ~}wt~gwn}JVK*2$''(#3,SOH#JOH9-4)(0$)2&*5'/=,;I8:H8,:,,;.EQGq{tʝȴŭ÷źzjk[Z\J]aOwqn~nFRB+,'!)!2*TPH1JOJF,4,&/%%0$$4')9,-:/,7-,8-7A8S\Tw{̺ʶҾǴȵŵʷĶto`C=+4+@;(HJ6=@0*)&* 2+UQI;;GAO$3(%5(#7+%9.'8.(8.*;0/=2:E;WbY{~Ǻ÷ǼͿ;vQM95*:+=6!>9%6,1$1$0%LG=BGWQ.B8T+A5)A5$=1#:.&;/(<1):0,:/;I=Zf[Ǿûɾö˺~sYWBD?(5.F>(YU@C=)/$. 0$2)FQMDM\[1JFS.JE.KE,F?)?7(<3&;1&;0.B58K>]h_Ǻöƾʿ{lbZFE=%ZR<>8"F@*B:(1%-2$5*DVQHWll7[YK/TQ,NJ(HC#C=#B:%B9-H=,D98I=Xf[õƹƸ̿ʼĶyiaVBC:#2(2(3)7.1&*.1%nvGv{?lo3ce2ae@fkYtxvyxsb_ZHG?-3(4*4,8/ + .!) U]WQzyx{~q}}l}~@Py{Ly}IzOQDy9r}:r~Cr}Pt}g}yob]TFG@0;7$:3!2(*!*$2.A<,b^Y3d_[zyy|j|}.NwzqGv}Mz~TSE{;w:t:lyEo{\oſ~uihZLN?0=0 1)-(2+0'0&;6&LL>glke%~~~}i{|ey|AItwIvxKy~Gz;w6r5n{8o|AuNbw}yplbVUG9D2#7&3%3+6273 .(83#gf^~FANfz{qoi]WQMD:>2&4%.--* *+#??0e[\R.ZZSRbgC[g75_on+^r(Yr"Ur#\x6pG<}5{BO[cmxkausN_]9B>() &(&&() 9,#gIC:1][U `tx Kmw/Gjxa3_tWr)bx;s:u-n.n/r6y?|=pJv]jrzsbPw{LuyLuzClp7[Z$:6%0)'/'#&62+B:3ZC92(a\Xdu{?gvI7eu|+bt-dv/gz0j~0m0n.k}']s0by8i}ArM{Zadgr{~{ysumw|t}wk|{hY~MotBjn;kp=jr9cl8ej5\_6WWF^[uBQMClpnjvz:al7_kN:es|1et3lx1ky/fu,^n;jx=n|4hu2er2cn+Wa!FL$CB=UOO^V6@7 "* 0B97TO$EE8MOjstp\{|Yx{b|~_z}Fms*[e-Ze-S`7Wav;[aHIgkv{|8cn lv_:fs:co5bm6ft/^l*Va/V^6Y^-MN84(6-)/$*0%&",!)91(A<%CDDG6WZ[pqbzzRtvCio@goEkt<+.(CI(JQ.S[=^dFejx@dkZ0\e8Gel??????????????????(0` %   !%(*,----,*($!  (19@GLPSVXZ[ZZXVSOKF?80' 3COX_dimprtuvwwvutqolhd^WNB3 6Tdnswz|~)*'RROgffrrpuvsturdgcYZVEEC }{xvrmcS58Ufpuy NPKҬ¹˾ʾ¼vwu23){xsneT7$9IW t>H9y񶽫yfRW=?@6 eTG7"  1,2%P_C铢Ǿͼle˽ì{kqY^>&&c'  DF??XbKDžyȿ˻vn˹ijskxlet_unwZpxTedC2/   NPLSzl̶xwǮžXkUgyb}|eya]o_[jK[]?@7!3)   oqjiznhĪsoGYKënssdsYlR_q`xm~cpSW]@JM0UR85, , KPBYo]fwTm}`żĸ}uqgyZTiRM\Fdr\U[EOXGR=WgUDJ7X`Hq}^fsZMV?prZ nyUi}Wxud|_sqýLZE~{ſnuelF68F2ļŻ|y-DH3`oSYrWű}_o[teoPgiXW\LIN>kpcZm`e{mpvkuk)&HG6EL:tpZjSu{:Q<*=0najO7:'JO6wm||l~WLW:PP7x~bWT:lm]Z 4VP8~m`sbs{00%2'1&OQ8cqPwklp~|F[B=M7FXDtyfNT:GJ6Z`Pmd{LO:KA-npZJE.80d[?mnKxR[Hr|YTS:D8%=0 ?@(MU;DM5KZCMdP8N8PU?CA*=:'RY=u`m{aunF>.PD,WN6ZS="7L='UI/YYAMO@T]LkTV;D?'>5$;6'V^MIUEBTBvwd|\ix[60>2RS8foRmy\IN7|MO=I2!R>%D0 x[XH?/1.FaS5K>%c`GtƻMN8FA2EF7PUGyzwlOT*=0PF1VS;NQ:OM8SQ;ehXC)P5U9"RA+B/J/  ?:(xgZ;xpOwwXuweWUDbbPtr~xek[u^RgQj{eDSAGM:OO@RTAG<*9%D(G1O=%K3"O8$SB+K4#P1^O8VC-`UJH$H% #ZN2e[?olM^lqOmt]`cMTQ:K?*G5&C3&C:*GQB[\tDT=_kRY`LA<+NI6@2$D1"QA+L8%M4"H'N0 K)W6$Q0Q+N*_H-RE0zxlm[:WC)Q.) M|vbmaG[G-`M3S;$XC1Q;+M6'M7'N:-I?0gnZR~uqZ|qTdRQS;HH1SM7K<*G2$M4$N2"K-Q3$O/ \E2O1V9)O*P+]I7\P;qbS:yPfO4N(* lK6!YG-XA(cO6[@&Z>)X?1\P=`YERH8FE4yDV@`Y:K@ML7qy]xy_QC0S>,\D.W=*X8%X4$V0 Y4#Y8%`;'^7$aG3dXFymR`Q5oXA$R+K&9(jfPebN{at\c]Ej;n~EWZKphBUITYDadH]W>WG3W?-V9+bJ9Z;+Z8)V6%a<*_?,cJ:xgVdI6u_xrbS8%p`EqeEfL.P#P/+^]H_Z;oltĩ۸ӹX0eP=shVgTDs\LraT_F8sZByckQ:nJ1aF)^?"T+R&S9$( 򏓄abIG7#O8&hRAeRAmkYyj}~T}{M|G}P]NAdcEaZYteb{iZcOc_GeWDcKlRBkTCwfXwhSrXFzgO{eM`JxT=dG)W3T0P.SB)G>0wYVIwymshxxrl\tzkgfYxy||azarcikXsr[{ycwhUc]Q]tmzxj\Lzn^uqbxjve|wVC{YDzZDdI.T4`I,ZI0QC.TK?ZB@5E=/MH2_YBh^C|ol\Żr}}lkt|pvboiWn`Rtyjsi{smrcQwdT|n_dQcNdOk\?T>#K1E'?/gd\0UYQ\VVKE;&`YDj}sz}mȶ~qqotcvp`{vyúǶ|move{eT}bPlVkWmX]H.{v_a_HA/>5 rrnklf gi]E;%I9$RI/tnyzj̿¹z}q~pte{qfXgVs`vbg`GI:&nrXLL7A>-wvs>6">0RF+UL0xu˷ïïʺɾ˺øźwsesd|lwexeyc}j|gjjKTA)H?'QT:Y\MWZSHY>4HB(NH-fkQµȹƿɻ{nwlqe}oqrv~u[d]?G8"8-gkS~| omi @:%_^I^`O}xȽ»{}p~nqo|mrmhPE>*M@*ZVDzuIH9hMP9\iUfrcvyrt}mJM6]fQtwptupDJ7GN7EP;SbP̽ùǾ}|Ľk{jR[FlthqXZR8ZeRi|ffk¼ƿƼcpdEM;xyv9@4};J7]y^:S?Ǿp|s69.ZYS/xyx9@7)5(2@27D9µïĵ}zlOM;RYJ*$WSLGjom *@7'>4);1APEŽǾǽǹ|PJ5E>)1%<3&`oww C_^*OM)F=@QH~ʾǽ~pL>+3(2%QI@P{~~Nqs};ce9cd:_^qûľuG=,4*0"RJB?i|}8P{I}:rT}{_RC5,2+D@3wwts|}Ehph-bu)_xF\{ZSJ<.#.,$ZZP;||{ny| MkxY5hx/k}3s6,! ,IZelquz  ~xtpkdYH+ AcrxSTQհ瀀~BC@wpb?$= hFP?ɺirWNPA X;"  ?F7z}r°İǹtmrzY\_>Srzitʻfxf¨ar_|z}]q[xj_dHA9" r {ql[ovin~aPcMq~f_hP`iK\eIA>(&wWaB{ph`s\ƾ^w`la\mWCP8UdOLT@iuZS\CWXMW26-Q]iJatVkkºQYF]j[spl~hAN6HS8l}cWhPɿ cg[ׇ}w|38+EK;EN=xs}t:B0=@,vkqm`mVs[`G($cmpZ|pxqmrMUJ1(EE1paqpqtAT0Y`Tyx_kQHB-F;(OP7`dL]_KUJ;P6N9%zC-.)\g[=~}\wjgUTM=dhTre}dRdOYcOAD2ID3OE2@'H,O5"P6"Q9$P3[L6rWC2J(LG9dX=i\@[L4_Q=N<*L7)I@0zndN[ENP:NF3G5%L4$M2"Q4$T:(Q3"P.Q._N9|mdPuPM,C6+ZJ2s\^H/^H6zt^ytdWbU_U]~xBNAchNeaIT@-[B.X:(V3#\6$`>*[9'^F2dS;~]U9O)"\\]N`]E}fȬ@vEKMuwIkdK`P]bI\S>\E5YC4X@3gP>cN=jSCr`Qp[EsbMcC*hO1[3Q/ ede^icQVE3iTClgUswW\VYIib^yi[gUgaKeQ@V\SZaUaE6fH8gH9u]FkSvZDkG/cC([3U8<3*ZKJC~r|tpgWi~fn¸Zvkjp]||cthUaf\qtjXI}jyscrbxd{ZEsS8%zzx|{zB7$K@'^[?{IJ˺ɾwiug}lkox]WJ1LF/`dS[VLYOL6UXBʾ{m~nrtfaHJ=(\YHy{v vvtHK6O[F˿|xV]Gem^`b[@UbL_s`ǻHQ?xzvDJ@FZDK^NʿļNRHXWQG|||3C:)<1GUKƺQK7:3!JD9ex||Hcc.OKF[TúOC12&TMD[}cz{YJx|Cs}oý}tgG@/:4$d`[3p{}Bht/f|LmsDC;0#OKAevus t{~SpxREny4bp8Y^ALE=LGQklUuzHip`pr>z{{??(  @$.22-#222 FjNPKijhffdJKHiE ?2p WO5uB=+bl\OM9X]CfjVO<'d[L:lcF~kcZH`aQUcMLI6L<+K0P3!T:&zp]\C, $"RsjT}qXkQhS^J\N:Y@/_B1fJ9{jWmY win_tmp/tmp/tor-reference.html #man2html doc/tor-resolve.1 > win_tmp/tmp/tor-resolve.html clean_newlines() { perl -pe 's/^\n$/\r\n/mg; s/([^\r])\n$/\1\r\n/mg;' $1 >$2 } clean_localstatedir() { perl -pe 's/^\n$/\r\n/mg; s/([^\r])\n$/\1\r\n/mg; s{\@LOCALSTATEDIR\@/(lib|log)/tor/}{C:\\Documents and Settings\\Application Data\\Tor\\}' $1 >$2 } for fn in address-spec.txt bridges-spec.txt control-spec.txt dir-spec.txt path-spec.txt rend-spec.txt socks-extensions.txt tor-spec.txt version-spec.txt; do clean_newlines doc/spec/$fn win_tmp/doc/spec/$fn done for fn in HACKING tor-gencert.html tor.html torify.html tor-resolve.html; do clean_newlines doc/$fn win_tmp/doc/$fn done for fn in README ChangeLog LICENSE; do clean_newlines $fn win_tmp/$fn done clean_localstatedir src/config/torrc.sample.in win_tmp/src/config/torrc.sample cp contrib/win32build/tor-mingw.nsi.in win_tmp/contrib/ cd win_tmp makensis.exe contrib/tor-mingw.nsi.in tor-0.2.7.6/contrib/client-tools/0000755000175000017500000000000012632347251013552 500000000000000tor-0.2.7.6/contrib/client-tools/torify0000755000175000017500000000253712621363245014742 00000000000000#! /bin/sh # This script used to call (the now deprecated) tsocks as a fallback in case # torsocks wasn't installed. # Now, it's just a backwards compatible shim around torsocks with reasonable # behavior if -v/--verbose or -h/--help arguments are passed. # # Copyright (c) 2004, 2006, 2009 Peter Palfrader # Modified by Jacob Appelbaum April 16th 2006 # Stripped of all the tsocks cruft by ugh on February 22nd 2012 # May be distributed under the same terms as Tor itself compat() { echo "torify is now just a wrapper around torsocks(1) for backwards compatibility." } usage() { compat echo "Usage: $0 [-hv] [...]" } case $# in 0) usage >&2 exit 1 esac case $# in 1) case $1 in -h|--help) usage exit 0 esac esac case $1 in -v|--verbose) compat >&2 shift esac # taken from Debian's Developer's Reference, 6.4 pathfind() { OLDIFS="$IFS" IFS=: for p in $PATH; do if [ -x "$p/$*" ]; then IFS="$OLDIFS" return 0 fi done IFS="$OLDIFS" return 1 } if pathfind torsocks; then exec torsocks "$@" echo "$0: Failed to exec torsocks $@" >&2 exit 1 else echo "$0: torsocks not found in your PATH. Perhaps it isn't installed? (tsocks is no longer supported, for security reasons.)" >&2 fi tor-0.2.7.6/contrib/or-tools/0000755000175000017500000000000012632347251012714 500000000000000tor-0.2.7.6/contrib/or-tools/exitlist0000755000175000017500000002146612621363245014437 00000000000000#!/usr/bin/python # Copyright 2005-2006 Nick Mathewson # See the LICENSE file in the Tor distribution for licensing information. # Requires Python 2.2 or later. """ exitlist -- Given a Tor directory on stdin, lists the Tor servers that accept connections to given addreses. example usage: cat ~/.tor/cached-descriptors* | python exitlist 18.244.0.188:80 You should look at the "FetchUselessDescriptors" and "FetchDirInfoEarly" config options in the man page. Note that this script won't give you a perfect list of IP addresses that might connect to you using Tor. False negatives: - Some Tor servers might exit from other addresses than the one they publish in their descriptor. False positives: - This script just looks at the descriptor lists, so it counts relays that were running a day in the past and aren't running now (or are now running at a different address). See https://check.torproject.org/ for an alternative (more accurate!) approach. """ # # Change this to True if you want more verbose output. By default, we # only print the IPs of the servers that accept any the listed # addresses, one per line. # VERBOSE = False # # Change this to True if you want to reverse the output, and list the # servers that accept *none* of the listed addresses. # INVERSE = False # # Change this list to contain all of the target services you are interested # in. It must contain one entry per line, each consisting of an IPv4 address, # a colon, and a port number. This default is only used if we don't learn # about any addresses from the command-line. # ADDRESSES_OF_INTEREST = """ 1.2.3.4:80 """ # # YOU DO NOT NEED TO EDIT AFTER THIS POINT. # import sys import re import getopt import socket import struct import time assert sys.version_info >= (2,2) def maskIP(ip,mask): return "".join([chr(ord(a) & ord(b)) for a,b in zip(ip,mask)]) def maskFromLong(lng): return struct.pack("!L", lng) def maskByBits(n): return maskFromLong(0xffffffffl ^ ((1L<<(32-n))-1)) class Pattern: """ >>> import socket >>> ip1 = socket.inet_aton("192.169.64.11") >>> ip2 = socket.inet_aton("192.168.64.11") >>> ip3 = socket.inet_aton("18.244.0.188") >>> print Pattern.parse("18.244.0.188") 18.244.0.188/255.255.255.255:1-65535 >>> print Pattern.parse("18.244.0.188/16:*") 18.244.0.0/255.255.0.0:1-65535 >>> print Pattern.parse("18.244.0.188/2.2.2.2:80") 2.0.0.0/2.2.2.2:80-80 >>> print Pattern.parse("192.168.0.1/255.255.00.0:22-25") 192.168.0.0/255.255.0.0:22-25 >>> p1 = Pattern.parse("192.168.0.1/255.255.00.0:22-25") >>> import socket >>> p1.appliesTo(ip1, 22) False >>> p1.appliesTo(ip2, 22) True >>> p1.appliesTo(ip2, 25) True >>> p1.appliesTo(ip2, 26) False """ def __init__(self, ip, mask, portMin, portMax): self.ip = maskIP(ip,mask) self.mask = mask self.portMin = portMin self.portMax = portMax def __str__(self): return "%s/%s:%s-%s"%(socket.inet_ntoa(self.ip), socket.inet_ntoa(self.mask), self.portMin, self.portMax) def parse(s): if ":" in s: addrspec, portspec = s.split(":",1) else: addrspec, portspec = s, "*" if addrspec == '*': ip,mask = "\x00\x00\x00\x00","\x00\x00\x00\x00" elif '/' not in addrspec: ip = socket.inet_aton(addrspec) mask = "\xff\xff\xff\xff" else: ip,mask = addrspec.split("/",1) ip = socket.inet_aton(ip) if "." in mask: mask = socket.inet_aton(mask) else: mask = maskByBits(int(mask)) if portspec == '*': portMin = 1 portMax = 65535 elif '-' not in portspec: portMin = portMax = int(portspec) else: portMin, portMax = map(int,portspec.split("-",1)) return Pattern(ip,mask,portMin,portMax) parse = staticmethod(parse) def appliesTo(self, ip, port): return ((maskIP(ip,self.mask) == self.ip) and (self.portMin <= port <= self.portMax)) class Policy: """ >>> import socket >>> ip1 = socket.inet_aton("192.169.64.11") >>> ip2 = socket.inet_aton("192.168.64.11") >>> ip3 = socket.inet_aton("18.244.0.188") >>> pol = Policy.parseLines(["reject *:80","accept 18.244.0.188:*"]) >>> print str(pol).strip() reject 0.0.0.0/0.0.0.0:80-80 accept 18.244.0.188/255.255.255.255:1-65535 >>> pol.accepts(ip1,80) False >>> pol.accepts(ip3,80) False >>> pol.accepts(ip3,81) True """ def __init__(self, lst): self.lst = lst def parseLines(lines): r = [] for item in lines: a,p=item.split(" ",1) if a == 'accept': a = True elif a == 'reject': a = False else: raise ValueError("Unrecognized action %r",a) p = Pattern.parse(p) r.append((p,a)) return Policy(r) parseLines = staticmethod(parseLines) def __str__(self): r = [] for pat, accept in self.lst: rule = accept and "accept" or "reject" r.append("%s %s\n"%(rule,pat)) return "".join(r) def accepts(self, ip, port): for pattern,accept in self.lst: if pattern.appliesTo(ip,port): return accept return True class Server: def __init__(self, name, ip, policy, published, fingerprint): self.name = name self.ip = ip self.policy = policy self.published = published self.fingerprint = fingerprint def uniq_sort(lst): d = {} for item in lst: d[item] = 1 lst = d.keys() lst.sort() return lst def run(): global VERBOSE global INVERSE global ADDRESSES_OF_INTEREST if len(sys.argv) > 1: try: opts, pargs = getopt.getopt(sys.argv[1:], "vx") except getopt.GetoptError, e: print """ usage: cat ~/.tor/cached-routers* | %s [-v] [-x] [host:port [host:port [...]]] -v verbose output -x invert results """ % sys.argv[0] sys.exit(0) for o, a in opts: if o == "-v": VERBOSE = True if o == "-x": INVERSE = True if len(pargs): ADDRESSES_OF_INTEREST = "\n".join(pargs) servers = [] policy = [] name = ip = None published = 0 fp = "" for line in sys.stdin.xreadlines(): if line.startswith('router '): if name: servers.append(Server(name, ip, Policy.parseLines(policy), published, fp)) _, name, ip, rest = line.split(" ", 3) policy = [] published = 0 fp = "" elif line.startswith('fingerprint') or \ line.startswith('opt fingerprint'): elts = line.strip().split() if elts[0] == 'opt': del elts[0] assert elts[0] == 'fingerprint' del elts[0] fp = "".join(elts) elif line.startswith('accept ') or line.startswith('reject '): policy.append(line.strip()) elif line.startswith('published '): date = time.strptime(line[len('published '):].strip(), "%Y-%m-%d %H:%M:%S") published = time.mktime(date) if name: servers.append(Server(name, ip, Policy.parseLines(policy), published, fp)) targets = [] for line in ADDRESSES_OF_INTEREST.split("\n"): line = line.strip() if not line: continue p = Pattern.parse(line) targets.append((p.ip, p.portMin)) # remove all but the latest server of each IP/Nickname pair. latest = {} for s in servers: if (not latest.has_key((s.fingerprint)) or s.published > latest[(s.fingerprint)]): latest[s.fingerprint] = s servers = latest.values() accepters, rejecters = {}, {} for s in servers: for ip,port in targets: if s.policy.accepts(ip,port): accepters[s.ip] = s break else: rejecters[s.ip] = s # If any server at IP foo accepts, the IP does not reject. for k in accepters.keys(): if rejecters.has_key(k): del rejecters[k] if INVERSE: printlist = rejecters.values() else: printlist = accepters.values() ents = [] if VERBOSE: ents = uniq_sort([ "%s\t%s"%(s.ip,s.name) for s in printlist ]) else: ents = uniq_sort([ s.ip for s in printlist ]) for e in ents: print e def _test(): import doctest, exitparse return doctest.testmod(exitparse) #_test() run() tor-0.2.7.6/contrib/include.am0000644000175000017500000000102012621363245013010 00000000000000 EXTRA_DIST+= \ contrib/README \ contrib/client-tools/torify \ contrib/dist/rc.subr \ contrib/dist/suse/tor.sh.in \ contrib/dist/tor.sh \ contrib/dist/torctl \ contrib/dist/tor.service.in \ contrib/operator-tools/linux-tor-prio.sh \ contrib/operator-tools/tor-exit-notice.html \ contrib/or-tools/exitlist \ contrib/win32build/package_nsis-mingw.sh \ contrib/win32build/tor-mingw.nsi.in \ contrib/win32build/tor.ico \ contrib/win32build/tor.nsi.in bin_SCRIPTS+= contrib/client-tools/torify tor-0.2.7.6/contrib/README0000644000175000017500000000534512621363245011744 00000000000000The contrib/ directory contains small tools that might be useful for using with Tor. A few of them are included in the Tor source distribution; you can find the others in the main Tor repository. We don't guarantee that they're particularly useful. dirauth-tools/ -- Tools useful for directory authority administrators --------------------------------------------------------------------- add-tor is an old script to manipulate the approved-routers file. nagios-check-tor-authority-cert is a nagios script to check when Tor authority certificates are expired or nearly expired. clang/ -- Files for use with the clang compiler ----------------------------------------------- sanitize_blacklist.txt is used to build Tor with clang's dynamic AddressSanitizer and UndefinedBehaviorSanitizer. It contains detailed instructions on configuration, build, and testing with clang's sanitizers. client-tools/ -- Tools for use with Tor clients ----------------------------------------------- torify is a small wrapper script around torsocks. tor-resolve.py uses Tor's SOCKS port extensions to perform DNS lookups. You should probably use src/tools/tor-resolve instead. dist/ -- Scripts and files for use when packaging Tor ----------------------------------------------------- torctl, rc.subr, and tor.sh are init scripts for use with SysV-style init tools. Everybody likes to write init scripts differently, it seems. tor.service is a sample service file for use with systemd. The suse/ subdirectory contains files used by the suse distribution. operator-tools/ -- Tools for Tor relay operators ------------------------------------------------ tor-exit-notice.html is an HTML file for use with the DirPortFrontPage option. It tells visitors that your relay is a Tor exit node, and that they shouldn't assume you're the origin for the traffic that you're delivering. tor.logrotate is a configuration file for use with the logrotate tool. You may need to edit it to work for you. linux-tor-prio.sh uses Linux iptables tools to traffic-shape your Tor relay's traffic. If it breaks, you get to keep both pieces. or-tools/ -- Tools for interacting with relays ---------------------------------------------- checksocks.pl is a tool to scan relays to see if any of them have advertised public SOCKS ports, so we can tell them not to. check-tor is a quick shell script to try doing a TLS handshake with a router or to try fetching a directory from it. exitlist is a precursor of check.torproject.org: it parses a bunch of cached server descriptors to determine which can connect to a given address:port. win32build -- Old files for windows packaging --------------------------------------------- You shouldn't need these unless you're building some of the older Windows packages. tor-0.2.7.6/contrib/operator-tools/0000755000175000017500000000000012632347251014127 500000000000000tor-0.2.7.6/contrib/operator-tools/tor.logrotate.in0000644000175000017500000000037312621363245017204 00000000000000@LOCALSTATEDIR@/log/tor/*log { daily rotate 5 compress delaycompress missingok notifempty # you may need to change the username/groupname below create 0640 _tor _tor sharedscripts postrotate /etc/init.d/tor reload > /dev/null endscript } tor-0.2.7.6/contrib/operator-tools/tor-exit-notice.html0000644000175000017500000001501212621363245017765 00000000000000 This is a Tor Exit Router

This is a Tor Exit Router

Most likely you are accessing this website because you had some issue with the traffic coming from this IP. This router is part of the Tor Anonymity Network, which is dedicated to providing privacy to people who need it most: average computer users. This router IP should be generating no other traffic, unless it has been compromised.

How Tor works

Tor sees use by many important segments of the population, including whistle blowers, journalists, Chinese dissidents skirting the Great Firewall and oppressive censorship, abuse victims, stalker targets, the US military, and law enforcement, just to name a few. While Tor is not designed for malicious computer users, it is true that they can use the network for malicious ends. In reality however, the actual amount of abuse is quite low. This is largely because criminals and hackers have significantly better access to privacy and anonymity than do the regular users whom they prey upon. Criminals can and do build, sell, and trade far larger and more powerful networks than Tor on a daily basis. Thus, in the mind of this operator, the social need for easily accessible censorship-resistant private, anonymous communication trumps the risk of unskilled bad actors, who are almost always more easily uncovered by traditional police work than by extensive monitoring and surveillance anyway.

In terms of applicable law, the best way to understand Tor is to consider it a network of routers operating as common carriers, much like the Internet backbone. However, unlike the Internet backbone routers, Tor routers explicitly do not contain identifiable routing information about the source of a packet, and no single Tor node can determine both the origin and destination of a given transmission.

As such, there is little the operator of this router can do to help you track the connection further. This router maintains no logs of any of the Tor traffic, so there is little that can be done to trace either legitimate or illegitimate traffic (or to filter one from the other). Attempts to seize this router will accomplish nothing.

Furthermore, this machine also serves as a carrier of email, which means that its contents are further protected under the ECPA. 18 USC 2707 explicitly allows for civil remedies ($1000/account plus legal fees) in the event of a seizure executed without good faith or probable cause (it should be clear at this point that traffic with an originating IP address of FIXME_DNS_NAME should not constitute probable cause to seize the machine). Similar considerations exist for 1st amendment content on this machine.

If you are a representative of a company who feels that this router is being used to violate the DMCA, please be aware that this machine does not host or contain any illegal content. Also be aware that network infrastructure maintainers are not liable for the type of content that passes over their equipment, in accordance with DMCA "safe harbor" provisions. In other words, you will have just as much luck sending a takedown notice to the Internet backbone providers. Please consult EFF's prepared response for more information on this matter.

For more information, please consult the following documentation:

  1. Tor Overview
  2. Tor Abuse FAQ
  3. Tor Legal FAQ

That being said, if you still have a complaint about the router, you may email the maintainer. If complaints are related to a particular service that is being abused, I will consider removing that service from my exit policy, which would prevent my router from allowing that traffic to exit through it. I can only do this on an IP+destination port basis, however. Common P2P ports are already blocked.

You also have the option of blocking this IP address and others on the Tor network if you so desire. The Tor project provides a web service to fetch a list of all IP addresses of Tor exit nodes that allow exiting to a specified IP:port combination, and an official DNSRBL is also available to determine if a given IP address is actually a Tor exit server. Please be considerate when using these options. It would be unfortunate to deny all Tor users access to your site indefinitely simply because of a few bad apples.

tor-0.2.7.6/contrib/operator-tools/linux-tor-prio.sh0000644000175000017500000001462512621363245017322 00000000000000#!/bin/bash # Written by Marco Bonetti & Mike Perry # Based on instructions from Dan Singletary's ADSL BW Management HOWTO: # http://www.faqs.org/docs/Linux-HOWTO/ADSL-Bandwidth-Management-HOWTO.html # This script is Public Domain. ############################### README ################################# # This script provides prioritization of Tor traffic below other # traffic on a Linux server. It has two modes of operation: UID based # and IP based. # UID BASED PRIORITIZATION # # The UID based method requires that Tor be launched from # a specific user ID. The "User" Tor config setting is # insufficient, as it sets the UID after the socket is created. # Here is a C wrapper you can use to execute Tor and drop privs before # it creates any sockets. # # Compile with: # gcc -DUID=`id -u tor` -DGID=`id -g tor` tor_wrap.c -o tor_wrap # # #include # int main(int argc, char **argv) { # if(initgroups("tor", GID) == -1) { perror("initgroups"); return 1; } # if(setresgid(GID, GID, GID) == -1) { perror("setresgid"); return 1; } # if(setresuid(UID, UID, UID) == -1) { perror("setresuid"); return 1; } # execl("/bin/tor", "/bin/tor", "-f", "/etc/tor/torrc", NULL); # perror("execl"); return 1; # } # IP BASED PRIORITIZATION # # The IP setting requires that a separate IP address be dedicated to Tor. # Your Torrc should be set to bind to this IP for "OutboundBindAddress", # "ListenAddress", and "Address". # GENERAL USAGE # # You should also tune the individual connection rate parameters below # to your individual connection. In particular, you should leave *some* # minimum amount of bandwidth for Tor, so that Tor users are not # completely choked out when you use your server's bandwidth. 30% is # probably a reasonable choice. More is better of course. # # To start the shaping, run it as: # ./linux-tor-prio.sh # # To get status information (useful to verify packets are getting marked # and prioritized), run: # ./linux-tor-prio.sh status # # And to stop prioritization: # ./linux-tor-prio.sh stop # ######################################################################## # BEGIN USER TUNABLE PARAMETERS DEV=eth0 # NOTE! You must START Tor under this UID. Using the Tor User # config setting is NOT sufficient. See above. TOR_UID=$(id -u tor) # If the UID mechanism doesn't work for you, you can set this parameter # instead. If set, it will take precedence over the UID setting. Note that # you need multiple IPs with one specifically devoted to Tor for this to # work. #TOR_IP="42.42.42.42" # Average ping to most places on the net, milliseconds RTT_LATENCY=40 # RATE_UP must be less than your connection's upload capacity in # kbits/sec. If it is larger, then the bottleneck will be at your # router's queue, which you do not control. This will cause congestion # and a revert to normal TCP fairness no matter what the queing # priority is. RATE_UP=5000 # RATE_UP_TOR is the minimum speed your Tor connections will have in # kbits/sec. They will have at least this much bandwidth for upload. # In general, you probably shouldn't set this too low, or else Tor # users who use your node will be completely choked out whenever your # machine does any other network activity. That is not very fun. RATE_UP_TOR=1500 # RATE_UP_TOR_CEIL is the maximum rate allowed for all Tor trafic in # kbits/sec. RATE_UP_TOR_CEIL=5000 CHAIN=OUTPUT #CHAIN=PREROUTING #CHAIN=POSTROUTING MTU=1500 AVG_PKT=900 # should be more like 600 for non-exit nodes # END USER TUNABLE PARAMETERS # The queue size should be no larger than your bandwidth-delay # product. This is RT latency*bandwidth/MTU/2 BDP=$(expr $RTT_LATENCY \* $RATE_UP / $AVG_PKT) # Further research indicates that the BDP calculations should use # RTT/sqrt(n) where n is the expected number of active connections.. BDP=$(expr $BDP / 4) if [ "$1" = "status" ] then echo "[qdisc]" tc -s qdisc show dev $DEV tc -s qdisc show dev imq0 echo "[class]" tc -s class show dev $DEV tc -s class show dev imq0 echo "[filter]" tc -s filter show dev $DEV tc -s filter show dev imq0 echo "[iptables]" iptables -t mangle -L TORSHAPER-OUT -v -x 2> /dev/null exit fi # Reset everything to a known state (cleared) tc qdisc del dev $DEV root 2> /dev/null > /dev/null tc qdisc del dev imq0 root 2> /dev/null > /dev/null iptables -t mangle -D POSTROUTING -o $DEV -j TORSHAPER-OUT 2> /dev/null > /dev/null iptables -t mangle -D PREROUTING -o $DEV -j TORSHAPER-OUT 2> /dev/null > /dev/null iptables -t mangle -D OUTPUT -o $DEV -j TORSHAPER-OUT 2> /dev/null > /dev/null iptables -t mangle -F TORSHAPER-OUT 2> /dev/null > /dev/null iptables -t mangle -X TORSHAPER-OUT 2> /dev/null > /dev/null ip link set imq0 down 2> /dev/null > /dev/null rmmod imq 2> /dev/null > /dev/null if [ "$1" = "stop" ] then echo "Shaping removed on $DEV." exit fi # Outbound Shaping (limits total bandwidth to RATE_UP) ip link set dev $DEV qlen $BDP # Add HTB root qdisc, default is high prio tc qdisc add dev $DEV root handle 1: htb default 20 # Add main rate limit class tc class add dev $DEV parent 1: classid 1:1 htb rate ${RATE_UP}kbit # Create the two classes, giving Tor at least RATE_UP_TOR kbit and capping # total upstream at RATE_UP so the queue is under our control. tc class add dev $DEV parent 1:1 classid 1:20 htb rate $(expr $RATE_UP - $RATE_UP_TOR)kbit ceil ${RATE_UP}kbit prio 0 tc class add dev $DEV parent 1:1 classid 1:21 htb rate $[$RATE_UP_TOR]kbit ceil ${RATE_UP_TOR_CEIL}kbit prio 10 # Start up pfifo tc qdisc add dev $DEV parent 1:20 handle 20: pfifo limit $BDP tc qdisc add dev $DEV parent 1:21 handle 21: pfifo limit $BDP # filter traffic into classes by fwmark tc filter add dev $DEV parent 1:0 prio 0 protocol ip handle 20 fw flowid 1:20 tc filter add dev $DEV parent 1:0 prio 0 protocol ip handle 21 fw flowid 1:21 # add TORSHAPER-OUT chain to the mangle table in iptables iptables -t mangle -N TORSHAPER-OUT iptables -t mangle -I $CHAIN -o $DEV -j TORSHAPER-OUT # Set firewall marks # Low priority to Tor if [ ""$TOR_IP == "" ] then echo "Using UID-based QoS. UID $TOR_UID marked as low priority." iptables -t mangle -A TORSHAPER-OUT -m owner --uid-owner $TOR_UID -j MARK --set-mark 21 else echo "Using IP-based QoS. $TOR_IP marked as low priority." iptables -t mangle -A TORSHAPER-OUT -s $TOR_IP -j MARK --set-mark 21 fi # High prio for everything else iptables -t mangle -A TORSHAPER-OUT -m mark --mark 0 -j MARK --set-mark 20 echo "Outbound shaping added to $DEV. Rate for Tor upload at least: ${RATE_UP_TOR}Kbyte/sec." tor-0.2.7.6/contrib/dist/0000755000175000017500000000000012632347251012101 500000000000000tor-0.2.7.6/contrib/dist/tor.service.in0000644000175000017500000000177112621363245014621 00000000000000# tor.service -- this systemd configuration file for Tor sets up a # relatively conservative, hardened Tor service. You may need to # edit it if you are making changes to your Tor configuration that it # does not allow. Package maintainers: this should be a starting point # for your tor.service; it is not the last point. [Unit] Description=Anonymizing overlay network for TCP After=syslog.target network.target nss-lookup.target [Service] Type=notify NotifyAccess=all ExecStartPre=@BINDIR@/tor -f @CONFDIR@/torrc --verify-config ExecStart=@BINDIR@/tor -f @CONFDIR@/torrc ExecReload=/bin/kill -HUP ${MAINPID} KillSignal=SIGINT TimeoutSec=30 Restart=on-failure WatchdogSec=1m LimitNOFILE=32768 # Hardening PrivateTmp=yes PrivateDevices=yes ProtectHome=yes ProtectSystem=full ReadOnlyDirectories=/ ReadWriteDirectories=-@LOCALSTATEDIR@/lib/tor ReadWriteDirectories=-@LOCALSTATEDIR@/log/tor NoNewPrivileges=yes CapabilityBoundingSet=CAP_SETUID CAP_SETGID CAP_NET_BIND_SERVICE [Install] WantedBy=multi-user.target tor-0.2.7.6/contrib/dist/torctl0000644000175000017500000001161612632313452013254 00000000000000#!/bin/sh # # TOR control script designed to allow an easy command line interface # to controlling The Onion Router # # The exit codes returned are: # 0 - operation completed successfully. For "status", tor running. # 1 - For "status", tor not running. # 2 - Command not supported # 3 - Could not be started or reloaded # 4 - Could not be stopped # 5 - # 6 - # 7 - # 8 - # # When multiple arguments are given, only the error from the _last_ # one is reported. # # # |||||||||||||||||||| START CONFIGURATION SECTION |||||||||||||||||||| # -------------------- -------------------- # Name of the executable EXEC=tor # # the path to your binary, including options if necessary TORBIN="/usr/local/bin/$EXEC" # # the path to the configuration file TORCONF="/usr/local/etc/tor/torrc" # # the path to your PID file PIDFILE="/usr/local/var/run/tor/tor.pid" # # The path to the log file LOGFILE="/usr/local/var/log/tor/tor.log" # # The path to the datadirectory TORDATA="/usr/local/var/lib/tor" # TORARGS="--pidfile $PIDFILE --log \"notice file $LOGFILE\" --runasdaemon 1" TORARGS="$TORARGS --datadirectory $TORDATA" # If user name is set in the environment, then use it; # otherwise run as the invoking user (or whatever user the config # file says)... unless the invoking user is root. The idea here is to # let an unprivileged user run tor for her own use using this script, # while still providing for it to be used as a system daemon. if [ "x`id -u`" = "x0" ]; then TORUSER=_tor fi if [ "x$TORUSER" != "x" ]; then TORARGS="$TORARGS --user $TORUSER" fi # We no longer wrap the Tor daemon startup in an su when running as # root, because it's too painful to make the use of su portable. # Just let the daemon set the UID and GID. START="$TORBIN -f $TORCONF $TORARGS" # # -------------------- -------------------- # |||||||||||||||||||| END CONFIGURATION SECTION |||||||||||||||||||| ERROR=0 ARGV="$@" if [ "x$ARGV" = "x" ] ; then ARGS="help" fi checkIfRunning ( ) { # check for pidfile PID=unknown if [ -f $PIDFILE ] ; then PID=`/bin/cat $PIDFILE` if [ "x$PID" != "x" ] ; then if kill -0 $PID 2>/dev/null ; then STATUS="$EXEC (pid $PID) running" RUNNING=1 else STATUS="PID file ($PIDFILE) present, but $EXEC ($PID) not running" RUNNING=0 fi else STATUS="$EXEC (pid $PID?) not running" RUNNING=0 fi else STATUS="$EXEC apparently not running (no pid file)" RUNNING=0 fi return } for ARG in $@ $ARGS do checkIfRunning case $ARG in start) if [ $RUNNING -eq 1 ]; then echo "$0 $ARG: $EXEC (pid $PID) already running" continue fi if eval "$START" ; then echo "$0 $ARG: $EXEC started" # Make sure it stayed up! /bin/sleep 1 checkIfRunning if [ $RUNNING -eq 0 ]; then echo "$0 $ARG: $EXEC (pid $PID) quit unexpectedly" fi else echo "$0 $ARG: $EXEC could not be started" ERROR=3 fi ;; stop) if [ $RUNNING -eq 0 ]; then echo "$0 $ARG: $STATUS" continue fi if kill -15 $PID ; then echo "$0 $ARG: $EXEC stopped" else /bin/sleep 1 if kill -9 $PID ; then echo "$0 $ARG: $EXEC stopped" else echo "$0 $ARG: $EXEC could not be stopped" ERROR=4 fi fi # Make sure it really died! /bin/sleep 1 checkIfRunning if [ $RUNNING -eq 1 ]; then echo "$0 $ARG: $EXEC (pid $PID) unexpectedly still running" ERROR=4 fi ;; restart) $0 stop start ;; reload) if [ $RUNNING -eq 0 ]; then echo "$0 $ARG: $STATUS" continue fi if kill -1 $PID; then /bin/sleep 1 echo "$EXEC (PID $PID) reloaded" else echo "Can't reload $EXEC" ERROR=3 fi ;; status) echo $STATUS if [ $RUNNING -eq 1 ]; then ERROR=0 else ERROR=1 fi ;; log) cat $LOGFILE ;; help) echo "usage: $0 (start|stop|restart|status|help)" /bin/cat </dev/null ; then STATUS="$EXEC (pid $PID) running" RUNNING=1 else STATUS="PID file ($PIDFILE) present, but $EXEC ($PID) not running" RUNNING=0 fi else STATUS="$EXEC (pid $PID?) not running" RUNNING=0 fi else STATUS="$EXEC apparently not running (no pid file)" RUNNING=0 fi return } for ARG in $@ $ARGS do checkIfRunning case $ARG in start) if [ $RUNNING -eq 1 ]; then echo "$0 $ARG: $EXEC (pid $PID) already running" continue fi if eval "$START" ; then echo "$0 $ARG: $EXEC started" # Make sure it stayed up! /bin/sleep 1 checkIfRunning if [ $RUNNING -eq 0 ]; then echo "$0 $ARG: $EXEC (pid $PID) quit unexpectedly" fi else echo "$0 $ARG: $EXEC could not be started" ERROR=3 fi ;; stop) if [ $RUNNING -eq 0 ]; then echo "$0 $ARG: $STATUS" continue fi if kill -15 $PID ; then echo "$0 $ARG: $EXEC stopped" else /bin/sleep 1 if kill -9 $PID ; then echo "$0 $ARG: $EXEC stopped" else echo "$0 $ARG: $EXEC could not be stopped" ERROR=4 fi fi # Make sure it really died! /bin/sleep 1 checkIfRunning if [ $RUNNING -eq 1 ]; then echo "$0 $ARG: $EXEC (pid $PID) unexpectedly still running" ERROR=4 fi ;; restart) $0 stop start ;; reload) if [ $RUNNING -eq 0 ]; then echo "$0 $ARG: $STATUS" continue fi if kill -1 $PID; then /bin/sleep 1 echo "$EXEC (PID $PID) reloaded" else echo "Can't reload $EXEC" ERROR=3 fi ;; status) echo $STATUS if [ $RUNNING -eq 1 ]; then ERROR=0 else ERROR=1 fi ;; log) cat $LOGFILE ;; help) echo "usage: $0 (start|stop|restart|status|help)" /bin/cat <) { if (/AC_INIT\(\[tor\],\s*\[([^\]]*)\]\)/) { $version = $1; last; } } die "No version found" unless $version; print "Tor version is $version\n" unless $quiet; close F; sub correctversion { my ($fn, $defchar) = @_; undef $/; open(F, $fn) or die "$!"; my $s = ; close F; if ($s =~ /^$defchar(?:)define\s+VERSION\s+\"([^\"]+)\"/m) { $oldver = $1; if ($oldver ne $version) { print "Version mismatch in $fn: It thinks that the version is $oldver. I think it's $version. Fixing.\n"; $line = $defchar . "define VERSION \"$version\""; open(F, ">$fn.bak"); print F $s; close F; $s =~ s/^$defchar(?:)define\s+VERSION.*?$/$line/m; open(F, ">$fn"); print F $s; close F; } else { print "$fn has the correct version. Good.\n" unless $quiet; } } else { print "Didn't find a version line in $fn -- uh oh.\n"; } } correctversion($TOR_NSI, "!"); correctversion($ORCONFIG_H, "#"); tor-0.2.7.6/scripts/maint/checkOptionDocs.pl.in0000644000175000017500000000325312621363245016240 00000000000000#!/usr/bin/perl -w use strict; my %options = (); my %descOptions = (); my %torrcSampleOptions = (); my %manPageOptions = (); # Load the canonical list as actually accepted by Tor. open(F, "@abs_top_builddir@/src/or/tor --list-torrc-options |") or die; while () { next if m!\[notice\] Tor v0\.!; if (m!^([A-Za-z0-9_]+)!) { $options{$1} = 1; } else { print "Unrecognized output> "; print; } } close F; # Load the contents of torrc.sample sub loadTorrc { my ($fname, $options) = @_; local *F; open(F, "$fname") or die; while () { next if (m!##+!); if (m!#([A-Za-z0-9_]+)!) { $options->{$1} = 1; } } close F; 0; } loadTorrc("@abs_top_srcdir@/src/config/torrc.sample.in", \%torrcSampleOptions); # Try to figure out what's in the man page. my $considerNextLine = 0; open(F, "@abs_top_srcdir@/doc/tor.1.txt") or die; while () { if (m!^(?:\[\[([A-za-z0-9_]+)\]\] *)?\*\*([A-Za-z0-9_]+)\*\*!) { $manPageOptions{$2} = 1; print "Missing an anchor: $2\n" unless (defined $1 or $2 eq 'tor'); } } close F; # Now, display differences: sub subtractHashes { my ($s, $a, $b) = @_; my @lst = (); for my $k (keys %$a) { push @lst, $k unless (exists $b->{$k}); } print "$s: ", join(' ', sort @lst), "\n\n"; 0; } # subtractHashes("No online docs", \%options, \%descOptions); # subtractHashes("Orphaned online docs", \%descOptions, \%options); subtractHashes("Orphaned in torrc.sample.in", \%torrcSampleOptions, \%options); subtractHashes("Not in man page", \%options, \%manPageOptions); subtractHashes("Orphaned in man page", \%manPageOptions, \%options); tor-0.2.7.6/install-sh0000755000175000017500000003452312621363750011431 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2013-12-25.23; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # 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 Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # 'make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. tab=' ' nl=' ' IFS=" $tab$nl" # Set DOITPROG to "echo" to test this script. doit=${DOITPROG-} doit_exec=${doit:-exec} # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false is_target_a_directory=possibly usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) is_target_a_directory=always dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) is_target_a_directory=never;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done # We allow the use of options -d and -T together, by making -d # take the precedence; this is for compatibility with GNU install. if test -n "$dir_arg"; then if test -n "$dst_arg"; then echo "$0: target directory not allowed when installing a directory." >&2 exit 1 fi fi if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then if test $# -gt 1 || test "$is_target_a_directory" = always; then if test ! -d "$dst_arg"; then echo "$0: $dst_arg: Is not a directory." >&2 exit 1 fi fi fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else dstdir=`dirname "$dst"` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac oIFS=$IFS IFS=/ set -f set fnord $dstdir shift set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: tor-0.2.7.6/config.guess0000755000175000017500000012367212621363750011751 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright 1992-2015 Free Software Foundation, Inc. timestamp='2015-01-01' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # # Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD # # Please send patches to . me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright 1992-2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown case "${UNAME_SYSTEM}" in Linux|GNU|GNU/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu eval $set_cc_for_build cat <<-EOF > $dummy.c #include #if defined(__UCLIBC__) LIBC=uclibc #elif defined(__dietlibc__) LIBC=dietlibc #else LIBC=gnu #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` ;; esac # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE} exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) echo i386-pc-auroraux${UNAME_RELEASE} exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build SUN_ARCH="i386" # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH="x86_64" fi fi echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/lslpp ] ; then IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` case ${UNAME_PROCESSOR} in amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW64*:*) echo ${UNAME_MACHINE}-pc-mingw64 exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; *:MSYS*:*) echo ${UNAME_MACHINE}-pc-msys exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; 8664:Windows_NT:*) echo x86_64-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; aarch64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC="gnulibc1" ; fi echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arc:Linux:*:* | arceb:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-${LIBC} else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi else echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf fi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; cris:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; crisv32:Linux:*:*) echo ${UNAME_MACHINE}-axis-linux-${LIBC} exit ;; frv:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; hexagon:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:Linux:*:*) echo ${UNAME_MACHINE}-pc-linux-${LIBC} exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } ;; openrisc*:Linux:*:*) echo or1k-unknown-linux-${LIBC} exit ;; or32:Linux:*:* | or1k*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; padre:Linux:*:*) echo sparc-unknown-linux-${LIBC} exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-${LIBC} ;; PA8*) echo hppa2.0-unknown-linux-${LIBC} ;; *) echo hppa-unknown-linux-${LIBC} ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-${LIBC} exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-${LIBC} exit ;; ppc64le:Linux:*:*) echo powerpc64le-unknown-linux-${LIBC} exit ;; ppcle:Linux:*:*) echo powerpcle-unknown-linux-${LIBC} exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux-${LIBC} exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; tile*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-${LIBC} exit ;; x86_64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configury will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; x86_64:Haiku:*:*) echo x86_64-unknown-haiku exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown eval $set_cc_for_build if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then case $UNAME_PROCESSOR in i386) UNAME_PROCESSOR=x86_64 ;; powerpc) UNAME_PROCESSOR=powerpc64 ;; esac fi fi elif test "$UNAME_PROCESSOR" = i386 ; then # Avoid executing cc on OS X 10.9, as it ships with a stub # that puts up a graphical alert prompting to install # developer tools. Any system running Mac OS X 10.7 or # later (Darwin 11 and later) is required to have a 64-bit # processor. This is not true of the ARM version of Darwin # that Apple uses in portable devices. UNAME_PROCESSOR=x86_64 fi echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NEO-?:NONSTOP_KERNEL:*:*) echo neo-tandem-nsk${UNAME_RELEASE} exit ;; NSE-*:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; i*86:AROS:*:*) echo ${UNAME_MACHINE}-pc-aros exit ;; x86_64:VMkernel:*:*) echo ${UNAME_MACHINE}-unknown-esx exit ;; esac cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: tor-0.2.7.6/INSTALL0000644000175000017500000000404412621363245010450 00000000000000 Most users who realize that INSTALL files still exist should simply follow the directions at https://www.torproject.org/docs/tor-doc-unix If you got the source from git, run "./autogen.sh", which will run the various auto* programs. Then you can run ./configure, and refer to the above instructions. If it doesn't build for you: If you have problems finding libraries, try CPPFLAGS="-I/usr/local/include" LDFLAGS="-L/usr/local/lib" \ ./configure or ./configure --with-libevent-dir=/usr/local rather than simply ./configure. If you have mysterious autoconf failures while linking openssl, consider setting your LD_LIBRARY_PATH to the openssl lib directory. For example, "setenv LD_LIBRARY_PATH /usr/athena/lib". Lastly, check out https://www.torproject.org/docs/faq#DoesntWork How to do static builds of tor: Tor supports linking each of the libraries it needs statically. Use the --enable-static-X ./configure option in conjunction with the --with-X-dir option for libevent, zlib, and openssl. For this to work sanely, libevent should be built with --disable-shared --enable-static --with-pic, and OpenSSL should be built with no-shared no-dso. If you need to build tor so that system libraries are also statically linked, use the --enable-static-tor ./configure option. This won't work on OS X unless you build the required crt0.o yourself. It is also incompatible with the --enable-gcc-hardening option. An example of how to build a mostly static tor: ./configure --enable-static-libevent \ --enable-static-openssl \ --enable-static-zlib \ --with-libevent-dir=/tmp/static-tor/libevent-1.4.14b-stable \ --with-openssl-dir=/tmp/static-tor/openssl-0.9.8r/ \ --with-zlib-dir=/tmp/static-tor/zlib-1.2.5 An example of how to build an entirely static tor: ./configure --enable-static-tor \ --with-libevent-dir=/tmp/static-tor/libevent-1.4.14b-stable \ --with-openssl-dir=/tmp/static-tor/openssl-0.9.8r/ \ --with-zlib-dir=/tmp/static-tor/zlib-1.2.5 tor-0.2.7.6/test-driver0000755000175000017500000001104012621363751011611 00000000000000#! /bin/sh # test-driver - basic testsuite driver script. scriptversion=2013-07-13.22; # UTC # Copyright (C) 2011-2014 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . # Make unconditional expansion of undefined variables an error. This # helps a lot in preventing typo-related bugs. set -u usage_error () { echo "$0: $*" >&2 print_usage >&2 exit 2 } print_usage () { cat <$log_file 2>&1 estatus=$? if test $enable_hard_errors = no && test $estatus -eq 99; then tweaked_estatus=1 else tweaked_estatus=$estatus fi case $tweaked_estatus:$expect_failure in 0:yes) col=$red res=XPASS recheck=yes gcopy=yes;; 0:*) col=$grn res=PASS recheck=no gcopy=no;; 77:*) col=$blu res=SKIP recheck=no gcopy=yes;; 99:*) col=$mgn res=ERROR recheck=yes gcopy=yes;; *:yes) col=$lgn res=XFAIL recheck=no gcopy=yes;; *:*) col=$red res=FAIL recheck=yes gcopy=yes;; esac # Report the test outcome and exit status in the logs, so that one can # know whether the test passed or failed simply by looking at the '.log' # file, without the need of also peaking into the corresponding '.trs' # file (automake bug#11814). echo "$res $test_name (exit status: $estatus)" >>$log_file # Report outcome to console. echo "${col}${res}${std}: $test_name" # Register the test result, and other relevant metadata. echo ":test-result: $res" > $trs_file echo ":global-test-result: $res" >> $trs_file echo ":recheck: $recheck" >> $trs_file echo ":copy-in-global-log: $gcopy" >> $trs_file # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: tor-0.2.7.6/src/0000755000175000017500000000000012632347251010265 500000000000000tor-0.2.7.6/src/trunnel/0000755000175000017500000000000012632347251011754 500000000000000tor-0.2.7.6/src/trunnel/link_handshake.c0000644000175000017500000011713412621363246015012 00000000000000/* link_handshake.c -- generated by Trunnel v1.4.3. * https://gitweb.torproject.org/trunnel.git * You probably shouldn't edit this file. */ #include #include "trunnel-impl.h" #include "link_handshake.h" #define TRUNNEL_SET_ERROR_CODE(obj) \ do { \ (obj)->trunnel_error_code_ = 1; \ } while (0) #if defined(__COVERITY__) || defined(__clang_analyzer__) /* If we're runnning a static analysis tool, we don't want it to complain * that some of our remaining-bytes checks are dead-code. */ int linkhandshake_deadcode_dummy__ = 0; #define OR_DEADCODE_DUMMY || linkhandshake_deadcode_dummy__ #else #define OR_DEADCODE_DUMMY #endif #define CHECK_REMAINING(nbytes, label) \ do { \ if (remaining < (nbytes) OR_DEADCODE_DUMMY) { \ goto label; \ } \ } while (0) auth_challenge_cell_t * auth_challenge_cell_new(void) { auth_challenge_cell_t *val = trunnel_calloc(1, sizeof(auth_challenge_cell_t)); if (NULL == val) return NULL; return val; } /** Release all storage held inside 'obj', but do not free 'obj'. */ static void auth_challenge_cell_clear(auth_challenge_cell_t *obj) { (void) obj; TRUNNEL_DYNARRAY_WIPE(&obj->methods); TRUNNEL_DYNARRAY_CLEAR(&obj->methods); } void auth_challenge_cell_free(auth_challenge_cell_t *obj) { if (obj == NULL) return; auth_challenge_cell_clear(obj); trunnel_memwipe(obj, sizeof(auth_challenge_cell_t)); trunnel_free_(obj); } size_t auth_challenge_cell_getlen_challenge(const auth_challenge_cell_t *inp) { (void)inp; return 32; } uint8_t auth_challenge_cell_get_challenge(const auth_challenge_cell_t *inp, size_t idx) { trunnel_assert(idx < 32); return inp->challenge[idx]; } int auth_challenge_cell_set_challenge(auth_challenge_cell_t *inp, size_t idx, uint8_t elt) { trunnel_assert(idx < 32); inp->challenge[idx] = elt; return 0; } uint8_t * auth_challenge_cell_getarray_challenge(auth_challenge_cell_t *inp) { return inp->challenge; } uint16_t auth_challenge_cell_get_n_methods(auth_challenge_cell_t *inp) { return inp->n_methods; } int auth_challenge_cell_set_n_methods(auth_challenge_cell_t *inp, uint16_t val) { inp->n_methods = val; return 0; } size_t auth_challenge_cell_getlen_methods(const auth_challenge_cell_t *inp) { return TRUNNEL_DYNARRAY_LEN(&inp->methods); } uint16_t auth_challenge_cell_get_methods(auth_challenge_cell_t *inp, size_t idx) { return TRUNNEL_DYNARRAY_GET(&inp->methods, idx); } int auth_challenge_cell_set_methods(auth_challenge_cell_t *inp, size_t idx, uint16_t elt) { TRUNNEL_DYNARRAY_SET(&inp->methods, idx, elt); return 0; } int auth_challenge_cell_add_methods(auth_challenge_cell_t *inp, uint16_t elt) { #if SIZE_MAX >= UINT16_MAX if (inp->methods.n_ == UINT16_MAX) goto trunnel_alloc_failed; #endif TRUNNEL_DYNARRAY_ADD(uint16_t, &inp->methods, elt, {}); return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } uint16_t * auth_challenge_cell_getarray_methods(auth_challenge_cell_t *inp) { return inp->methods.elts_; } int auth_challenge_cell_setlen_methods(auth_challenge_cell_t *inp, size_t newlen) { uint16_t *newptr; #if UINT16_MAX < SIZE_MAX if (newlen > UINT16_MAX) goto trunnel_alloc_failed; #endif newptr = trunnel_dynarray_setlen(&inp->methods.allocated_, &inp->methods.n_, inp->methods.elts_, newlen, sizeof(inp->methods.elts_[0]), (trunnel_free_fn_t) NULL, &inp->trunnel_error_code_); if (newptr == NULL) goto trunnel_alloc_failed; inp->methods.elts_ = newptr; return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } const char * auth_challenge_cell_check(const auth_challenge_cell_t *obj) { if (obj == NULL) return "Object was NULL"; if (obj->trunnel_error_code_) return "A set function failed on this object"; if (TRUNNEL_DYNARRAY_LEN(&obj->methods) != obj->n_methods) return "Length mismatch for methods"; return NULL; } ssize_t auth_challenge_cell_encoded_len(const auth_challenge_cell_t *obj) { ssize_t result = 0; if (NULL != auth_challenge_cell_check(obj)) return -1; /* Length of u8 challenge[32] */ result += 32; /* Length of u16 n_methods */ result += 2; /* Length of u16 methods[n_methods] */ result += 2 * TRUNNEL_DYNARRAY_LEN(&obj->methods); return result; } int auth_challenge_cell_clear_errors(auth_challenge_cell_t *obj) { int r = obj->trunnel_error_code_; obj->trunnel_error_code_ = 0; return r; } ssize_t auth_challenge_cell_encode(uint8_t *output, const size_t avail, const auth_challenge_cell_t *obj) { ssize_t result = 0; size_t written = 0; uint8_t *ptr = output; const char *msg; #ifdef TRUNNEL_CHECK_ENCODED_LEN const ssize_t encoded_len = auth_challenge_cell_encoded_len(obj); #endif if (NULL != (msg = auth_challenge_cell_check(obj))) goto check_failed; #ifdef TRUNNEL_CHECK_ENCODED_LEN trunnel_assert(encoded_len >= 0); #endif /* Encode u8 challenge[32] */ trunnel_assert(written <= avail); if (avail - written < 32) goto truncated; memcpy(ptr, obj->challenge, 32); written += 32; ptr += 32; /* Encode u16 n_methods */ trunnel_assert(written <= avail); if (avail - written < 2) goto truncated; trunnel_set_uint16(ptr, trunnel_htons(obj->n_methods)); written += 2; ptr += 2; /* Encode u16 methods[n_methods] */ { unsigned idx; for (idx = 0; idx < TRUNNEL_DYNARRAY_LEN(&obj->methods); ++idx) { trunnel_assert(written <= avail); if (avail - written < 2) goto truncated; trunnel_set_uint16(ptr, trunnel_htons(TRUNNEL_DYNARRAY_GET(&obj->methods, idx))); written += 2; ptr += 2; } } trunnel_assert(ptr == output + written); #ifdef TRUNNEL_CHECK_ENCODED_LEN { trunnel_assert(encoded_len >= 0); trunnel_assert((size_t)encoded_len == written); } #endif return written; truncated: result = -2; goto fail; check_failed: (void)msg; result = -1; goto fail; fail: trunnel_assert(result < 0); return result; } /** As auth_challenge_cell_parse(), but do not allocate the output * object. */ static ssize_t auth_challenge_cell_parse_into(auth_challenge_cell_t *obj, const uint8_t *input, const size_t len_in) { const uint8_t *ptr = input; size_t remaining = len_in; ssize_t result = 0; (void)result; /* Parse u8 challenge[32] */ CHECK_REMAINING(32, truncated); memcpy(obj->challenge, ptr, 32); remaining -= 32; ptr += 32; /* Parse u16 n_methods */ CHECK_REMAINING(2, truncated); obj->n_methods = trunnel_ntohs(trunnel_get_uint16(ptr)); remaining -= 2; ptr += 2; /* Parse u16 methods[n_methods] */ TRUNNEL_DYNARRAY_EXPAND(uint16_t, &obj->methods, obj->n_methods, {}); { uint16_t elt; unsigned idx; for (idx = 0; idx < obj->n_methods; ++idx) { CHECK_REMAINING(2, truncated); elt = trunnel_ntohs(trunnel_get_uint16(ptr)); remaining -= 2; ptr += 2; TRUNNEL_DYNARRAY_ADD(uint16_t, &obj->methods, elt, {}); } } trunnel_assert(ptr + remaining == input + len_in); return len_in - remaining; truncated: return -2; trunnel_alloc_failed: return -1; } ssize_t auth_challenge_cell_parse(auth_challenge_cell_t **output, const uint8_t *input, const size_t len_in) { ssize_t result; *output = auth_challenge_cell_new(); if (NULL == *output) return -1; result = auth_challenge_cell_parse_into(*output, input, len_in); if (result < 0) { auth_challenge_cell_free(*output); *output = NULL; } return result; } auth_ctx_t * auth_ctx_new(void) { auth_ctx_t *val = trunnel_calloc(1, sizeof(auth_ctx_t)); if (NULL == val) return NULL; return val; } /** Release all storage held inside 'obj', but do not free 'obj'. */ static void auth_ctx_clear(auth_ctx_t *obj) { (void) obj; } void auth_ctx_free(auth_ctx_t *obj) { if (obj == NULL) return; auth_ctx_clear(obj); trunnel_memwipe(obj, sizeof(auth_ctx_t)); trunnel_free_(obj); } uint8_t auth_ctx_get_is_ed(auth_ctx_t *inp) { return inp->is_ed; } int auth_ctx_set_is_ed(auth_ctx_t *inp, uint8_t val) { inp->is_ed = val; return 0; } certs_cell_cert_t * certs_cell_cert_new(void) { certs_cell_cert_t *val = trunnel_calloc(1, sizeof(certs_cell_cert_t)); if (NULL == val) return NULL; return val; } /** Release all storage held inside 'obj', but do not free 'obj'. */ static void certs_cell_cert_clear(certs_cell_cert_t *obj) { (void) obj; TRUNNEL_DYNARRAY_WIPE(&obj->body); TRUNNEL_DYNARRAY_CLEAR(&obj->body); } void certs_cell_cert_free(certs_cell_cert_t *obj) { if (obj == NULL) return; certs_cell_cert_clear(obj); trunnel_memwipe(obj, sizeof(certs_cell_cert_t)); trunnel_free_(obj); } uint8_t certs_cell_cert_get_cert_type(certs_cell_cert_t *inp) { return inp->cert_type; } int certs_cell_cert_set_cert_type(certs_cell_cert_t *inp, uint8_t val) { inp->cert_type = val; return 0; } uint16_t certs_cell_cert_get_cert_len(certs_cell_cert_t *inp) { return inp->cert_len; } int certs_cell_cert_set_cert_len(certs_cell_cert_t *inp, uint16_t val) { inp->cert_len = val; return 0; } size_t certs_cell_cert_getlen_body(const certs_cell_cert_t *inp) { return TRUNNEL_DYNARRAY_LEN(&inp->body); } uint8_t certs_cell_cert_get_body(certs_cell_cert_t *inp, size_t idx) { return TRUNNEL_DYNARRAY_GET(&inp->body, idx); } int certs_cell_cert_set_body(certs_cell_cert_t *inp, size_t idx, uint8_t elt) { TRUNNEL_DYNARRAY_SET(&inp->body, idx, elt); return 0; } int certs_cell_cert_add_body(certs_cell_cert_t *inp, uint8_t elt) { #if SIZE_MAX >= UINT16_MAX if (inp->body.n_ == UINT16_MAX) goto trunnel_alloc_failed; #endif TRUNNEL_DYNARRAY_ADD(uint8_t, &inp->body, elt, {}); return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } uint8_t * certs_cell_cert_getarray_body(certs_cell_cert_t *inp) { return inp->body.elts_; } int certs_cell_cert_setlen_body(certs_cell_cert_t *inp, size_t newlen) { uint8_t *newptr; #if UINT16_MAX < SIZE_MAX if (newlen > UINT16_MAX) goto trunnel_alloc_failed; #endif newptr = trunnel_dynarray_setlen(&inp->body.allocated_, &inp->body.n_, inp->body.elts_, newlen, sizeof(inp->body.elts_[0]), (trunnel_free_fn_t) NULL, &inp->trunnel_error_code_); if (newptr == NULL) goto trunnel_alloc_failed; inp->body.elts_ = newptr; return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } const char * certs_cell_cert_check(const certs_cell_cert_t *obj) { if (obj == NULL) return "Object was NULL"; if (obj->trunnel_error_code_) return "A set function failed on this object"; if (TRUNNEL_DYNARRAY_LEN(&obj->body) != obj->cert_len) return "Length mismatch for body"; return NULL; } ssize_t certs_cell_cert_encoded_len(const certs_cell_cert_t *obj) { ssize_t result = 0; if (NULL != certs_cell_cert_check(obj)) return -1; /* Length of u8 cert_type */ result += 1; /* Length of u16 cert_len */ result += 2; /* Length of u8 body[cert_len] */ result += TRUNNEL_DYNARRAY_LEN(&obj->body); return result; } int certs_cell_cert_clear_errors(certs_cell_cert_t *obj) { int r = obj->trunnel_error_code_; obj->trunnel_error_code_ = 0; return r; } ssize_t certs_cell_cert_encode(uint8_t *output, const size_t avail, const certs_cell_cert_t *obj) { ssize_t result = 0; size_t written = 0; uint8_t *ptr = output; const char *msg; #ifdef TRUNNEL_CHECK_ENCODED_LEN const ssize_t encoded_len = certs_cell_cert_encoded_len(obj); #endif if (NULL != (msg = certs_cell_cert_check(obj))) goto check_failed; #ifdef TRUNNEL_CHECK_ENCODED_LEN trunnel_assert(encoded_len >= 0); #endif /* Encode u8 cert_type */ trunnel_assert(written <= avail); if (avail - written < 1) goto truncated; trunnel_set_uint8(ptr, (obj->cert_type)); written += 1; ptr += 1; /* Encode u16 cert_len */ trunnel_assert(written <= avail); if (avail - written < 2) goto truncated; trunnel_set_uint16(ptr, trunnel_htons(obj->cert_len)); written += 2; ptr += 2; /* Encode u8 body[cert_len] */ { size_t elt_len = TRUNNEL_DYNARRAY_LEN(&obj->body); trunnel_assert(obj->cert_len == elt_len); trunnel_assert(written <= avail); if (avail - written < elt_len) goto truncated; memcpy(ptr, obj->body.elts_, elt_len); written += elt_len; ptr += elt_len; } trunnel_assert(ptr == output + written); #ifdef TRUNNEL_CHECK_ENCODED_LEN { trunnel_assert(encoded_len >= 0); trunnel_assert((size_t)encoded_len == written); } #endif return written; truncated: result = -2; goto fail; check_failed: (void)msg; result = -1; goto fail; fail: trunnel_assert(result < 0); return result; } /** As certs_cell_cert_parse(), but do not allocate the output object. */ static ssize_t certs_cell_cert_parse_into(certs_cell_cert_t *obj, const uint8_t *input, const size_t len_in) { const uint8_t *ptr = input; size_t remaining = len_in; ssize_t result = 0; (void)result; /* Parse u8 cert_type */ CHECK_REMAINING(1, truncated); obj->cert_type = (trunnel_get_uint8(ptr)); remaining -= 1; ptr += 1; /* Parse u16 cert_len */ CHECK_REMAINING(2, truncated); obj->cert_len = trunnel_ntohs(trunnel_get_uint16(ptr)); remaining -= 2; ptr += 2; /* Parse u8 body[cert_len] */ CHECK_REMAINING(obj->cert_len, truncated); TRUNNEL_DYNARRAY_EXPAND(uint8_t, &obj->body, obj->cert_len, {}); obj->body.n_ = obj->cert_len; memcpy(obj->body.elts_, ptr, obj->cert_len); ptr += obj->cert_len; remaining -= obj->cert_len; trunnel_assert(ptr + remaining == input + len_in); return len_in - remaining; truncated: return -2; trunnel_alloc_failed: return -1; } ssize_t certs_cell_cert_parse(certs_cell_cert_t **output, const uint8_t *input, const size_t len_in) { ssize_t result; *output = certs_cell_cert_new(); if (NULL == *output) return -1; result = certs_cell_cert_parse_into(*output, input, len_in); if (result < 0) { certs_cell_cert_free(*output); *output = NULL; } return result; } rsa_ed_crosscert_t * rsa_ed_crosscert_new(void) { rsa_ed_crosscert_t *val = trunnel_calloc(1, sizeof(rsa_ed_crosscert_t)); if (NULL == val) return NULL; return val; } /** Release all storage held inside 'obj', but do not free 'obj'. */ static void rsa_ed_crosscert_clear(rsa_ed_crosscert_t *obj) { (void) obj; TRUNNEL_DYNARRAY_WIPE(&obj->sig); TRUNNEL_DYNARRAY_CLEAR(&obj->sig); } void rsa_ed_crosscert_free(rsa_ed_crosscert_t *obj) { if (obj == NULL) return; rsa_ed_crosscert_clear(obj); trunnel_memwipe(obj, sizeof(rsa_ed_crosscert_t)); trunnel_free_(obj); } size_t rsa_ed_crosscert_getlen_ed_key(const rsa_ed_crosscert_t *inp) { (void)inp; return 32; } uint8_t rsa_ed_crosscert_get_ed_key(const rsa_ed_crosscert_t *inp, size_t idx) { trunnel_assert(idx < 32); return inp->ed_key[idx]; } int rsa_ed_crosscert_set_ed_key(rsa_ed_crosscert_t *inp, size_t idx, uint8_t elt) { trunnel_assert(idx < 32); inp->ed_key[idx] = elt; return 0; } uint8_t * rsa_ed_crosscert_getarray_ed_key(rsa_ed_crosscert_t *inp) { return inp->ed_key; } uint32_t rsa_ed_crosscert_get_expiration(rsa_ed_crosscert_t *inp) { return inp->expiration; } int rsa_ed_crosscert_set_expiration(rsa_ed_crosscert_t *inp, uint32_t val) { inp->expiration = val; return 0; } const uint8_t * rsa_ed_crosscert_get_end_of_signed(const rsa_ed_crosscert_t *inp) { return inp->end_of_signed; } uint8_t rsa_ed_crosscert_get_sig_len(rsa_ed_crosscert_t *inp) { return inp->sig_len; } int rsa_ed_crosscert_set_sig_len(rsa_ed_crosscert_t *inp, uint8_t val) { inp->sig_len = val; return 0; } size_t rsa_ed_crosscert_getlen_sig(const rsa_ed_crosscert_t *inp) { return TRUNNEL_DYNARRAY_LEN(&inp->sig); } uint8_t rsa_ed_crosscert_get_sig(rsa_ed_crosscert_t *inp, size_t idx) { return TRUNNEL_DYNARRAY_GET(&inp->sig, idx); } int rsa_ed_crosscert_set_sig(rsa_ed_crosscert_t *inp, size_t idx, uint8_t elt) { TRUNNEL_DYNARRAY_SET(&inp->sig, idx, elt); return 0; } int rsa_ed_crosscert_add_sig(rsa_ed_crosscert_t *inp, uint8_t elt) { #if SIZE_MAX >= UINT8_MAX if (inp->sig.n_ == UINT8_MAX) goto trunnel_alloc_failed; #endif TRUNNEL_DYNARRAY_ADD(uint8_t, &inp->sig, elt, {}); return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } uint8_t * rsa_ed_crosscert_getarray_sig(rsa_ed_crosscert_t *inp) { return inp->sig.elts_; } int rsa_ed_crosscert_setlen_sig(rsa_ed_crosscert_t *inp, size_t newlen) { uint8_t *newptr; #if UINT8_MAX < SIZE_MAX if (newlen > UINT8_MAX) goto trunnel_alloc_failed; #endif newptr = trunnel_dynarray_setlen(&inp->sig.allocated_, &inp->sig.n_, inp->sig.elts_, newlen, sizeof(inp->sig.elts_[0]), (trunnel_free_fn_t) NULL, &inp->trunnel_error_code_); if (newptr == NULL) goto trunnel_alloc_failed; inp->sig.elts_ = newptr; return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } const char * rsa_ed_crosscert_check(const rsa_ed_crosscert_t *obj) { if (obj == NULL) return "Object was NULL"; if (obj->trunnel_error_code_) return "A set function failed on this object"; if (TRUNNEL_DYNARRAY_LEN(&obj->sig) != obj->sig_len) return "Length mismatch for sig"; return NULL; } ssize_t rsa_ed_crosscert_encoded_len(const rsa_ed_crosscert_t *obj) { ssize_t result = 0; if (NULL != rsa_ed_crosscert_check(obj)) return -1; /* Length of u8 ed_key[32] */ result += 32; /* Length of u32 expiration */ result += 4; /* Length of u8 sig_len */ result += 1; /* Length of u8 sig[sig_len] */ result += TRUNNEL_DYNARRAY_LEN(&obj->sig); return result; } int rsa_ed_crosscert_clear_errors(rsa_ed_crosscert_t *obj) { int r = obj->trunnel_error_code_; obj->trunnel_error_code_ = 0; return r; } ssize_t rsa_ed_crosscert_encode(uint8_t *output, const size_t avail, const rsa_ed_crosscert_t *obj) { ssize_t result = 0; size_t written = 0; uint8_t *ptr = output; const char *msg; #ifdef TRUNNEL_CHECK_ENCODED_LEN const ssize_t encoded_len = rsa_ed_crosscert_encoded_len(obj); #endif if (NULL != (msg = rsa_ed_crosscert_check(obj))) goto check_failed; #ifdef TRUNNEL_CHECK_ENCODED_LEN trunnel_assert(encoded_len >= 0); #endif /* Encode u8 ed_key[32] */ trunnel_assert(written <= avail); if (avail - written < 32) goto truncated; memcpy(ptr, obj->ed_key, 32); written += 32; ptr += 32; /* Encode u32 expiration */ trunnel_assert(written <= avail); if (avail - written < 4) goto truncated; trunnel_set_uint32(ptr, trunnel_htonl(obj->expiration)); written += 4; ptr += 4; /* Encode u8 sig_len */ trunnel_assert(written <= avail); if (avail - written < 1) goto truncated; trunnel_set_uint8(ptr, (obj->sig_len)); written += 1; ptr += 1; /* Encode u8 sig[sig_len] */ { size_t elt_len = TRUNNEL_DYNARRAY_LEN(&obj->sig); trunnel_assert(obj->sig_len == elt_len); trunnel_assert(written <= avail); if (avail - written < elt_len) goto truncated; memcpy(ptr, obj->sig.elts_, elt_len); written += elt_len; ptr += elt_len; } trunnel_assert(ptr == output + written); #ifdef TRUNNEL_CHECK_ENCODED_LEN { trunnel_assert(encoded_len >= 0); trunnel_assert((size_t)encoded_len == written); } #endif return written; truncated: result = -2; goto fail; check_failed: (void)msg; result = -1; goto fail; fail: trunnel_assert(result < 0); return result; } /** As rsa_ed_crosscert_parse(), but do not allocate the output * object. */ static ssize_t rsa_ed_crosscert_parse_into(rsa_ed_crosscert_t *obj, const uint8_t *input, const size_t len_in) { const uint8_t *ptr = input; size_t remaining = len_in; ssize_t result = 0; (void)result; /* Parse u8 ed_key[32] */ CHECK_REMAINING(32, truncated); memcpy(obj->ed_key, ptr, 32); remaining -= 32; ptr += 32; /* Parse u32 expiration */ CHECK_REMAINING(4, truncated); obj->expiration = trunnel_ntohl(trunnel_get_uint32(ptr)); remaining -= 4; ptr += 4; obj->end_of_signed = ptr; /* Parse u8 sig_len */ CHECK_REMAINING(1, truncated); obj->sig_len = (trunnel_get_uint8(ptr)); remaining -= 1; ptr += 1; /* Parse u8 sig[sig_len] */ CHECK_REMAINING(obj->sig_len, truncated); TRUNNEL_DYNARRAY_EXPAND(uint8_t, &obj->sig, obj->sig_len, {}); obj->sig.n_ = obj->sig_len; memcpy(obj->sig.elts_, ptr, obj->sig_len); ptr += obj->sig_len; remaining -= obj->sig_len; trunnel_assert(ptr + remaining == input + len_in); return len_in - remaining; truncated: return -2; trunnel_alloc_failed: return -1; } ssize_t rsa_ed_crosscert_parse(rsa_ed_crosscert_t **output, const uint8_t *input, const size_t len_in) { ssize_t result; *output = rsa_ed_crosscert_new(); if (NULL == *output) return -1; result = rsa_ed_crosscert_parse_into(*output, input, len_in); if (result < 0) { rsa_ed_crosscert_free(*output); *output = NULL; } return result; } auth1_t * auth1_new(void) { auth1_t *val = trunnel_calloc(1, sizeof(auth1_t)); if (NULL == val) return NULL; return val; } /** Release all storage held inside 'obj', but do not free 'obj'. */ static void auth1_clear(auth1_t *obj) { (void) obj; TRUNNEL_DYNARRAY_WIPE(&obj->sig); TRUNNEL_DYNARRAY_CLEAR(&obj->sig); } void auth1_free(auth1_t *obj) { if (obj == NULL) return; auth1_clear(obj); trunnel_memwipe(obj, sizeof(auth1_t)); trunnel_free_(obj); } size_t auth1_getlen_type(const auth1_t *inp) { (void)inp; return 8; } uint8_t auth1_get_type(const auth1_t *inp, size_t idx) { trunnel_assert(idx < 8); return inp->type[idx]; } int auth1_set_type(auth1_t *inp, size_t idx, uint8_t elt) { trunnel_assert(idx < 8); inp->type[idx] = elt; return 0; } uint8_t * auth1_getarray_type(auth1_t *inp) { return inp->type; } size_t auth1_getlen_cid(const auth1_t *inp) { (void)inp; return 32; } uint8_t auth1_get_cid(const auth1_t *inp, size_t idx) { trunnel_assert(idx < 32); return inp->cid[idx]; } int auth1_set_cid(auth1_t *inp, size_t idx, uint8_t elt) { trunnel_assert(idx < 32); inp->cid[idx] = elt; return 0; } uint8_t * auth1_getarray_cid(auth1_t *inp) { return inp->cid; } size_t auth1_getlen_sid(const auth1_t *inp) { (void)inp; return 32; } uint8_t auth1_get_sid(const auth1_t *inp, size_t idx) { trunnel_assert(idx < 32); return inp->sid[idx]; } int auth1_set_sid(auth1_t *inp, size_t idx, uint8_t elt) { trunnel_assert(idx < 32); inp->sid[idx] = elt; return 0; } uint8_t * auth1_getarray_sid(auth1_t *inp) { return inp->sid; } size_t auth1_getlen_u1_cid_ed(const auth1_t *inp) { (void)inp; return 32; } uint8_t auth1_get_u1_cid_ed(const auth1_t *inp, size_t idx) { trunnel_assert(idx < 32); return inp->u1_cid_ed[idx]; } int auth1_set_u1_cid_ed(auth1_t *inp, size_t idx, uint8_t elt) { trunnel_assert(idx < 32); inp->u1_cid_ed[idx] = elt; return 0; } uint8_t * auth1_getarray_u1_cid_ed(auth1_t *inp) { return inp->u1_cid_ed; } size_t auth1_getlen_u1_sid_ed(const auth1_t *inp) { (void)inp; return 32; } uint8_t auth1_get_u1_sid_ed(const auth1_t *inp, size_t idx) { trunnel_assert(idx < 32); return inp->u1_sid_ed[idx]; } int auth1_set_u1_sid_ed(auth1_t *inp, size_t idx, uint8_t elt) { trunnel_assert(idx < 32); inp->u1_sid_ed[idx] = elt; return 0; } uint8_t * auth1_getarray_u1_sid_ed(auth1_t *inp) { return inp->u1_sid_ed; } size_t auth1_getlen_slog(const auth1_t *inp) { (void)inp; return 32; } uint8_t auth1_get_slog(const auth1_t *inp, size_t idx) { trunnel_assert(idx < 32); return inp->slog[idx]; } int auth1_set_slog(auth1_t *inp, size_t idx, uint8_t elt) { trunnel_assert(idx < 32); inp->slog[idx] = elt; return 0; } uint8_t * auth1_getarray_slog(auth1_t *inp) { return inp->slog; } size_t auth1_getlen_clog(const auth1_t *inp) { (void)inp; return 32; } uint8_t auth1_get_clog(const auth1_t *inp, size_t idx) { trunnel_assert(idx < 32); return inp->clog[idx]; } int auth1_set_clog(auth1_t *inp, size_t idx, uint8_t elt) { trunnel_assert(idx < 32); inp->clog[idx] = elt; return 0; } uint8_t * auth1_getarray_clog(auth1_t *inp) { return inp->clog; } size_t auth1_getlen_scert(const auth1_t *inp) { (void)inp; return 32; } uint8_t auth1_get_scert(const auth1_t *inp, size_t idx) { trunnel_assert(idx < 32); return inp->scert[idx]; } int auth1_set_scert(auth1_t *inp, size_t idx, uint8_t elt) { trunnel_assert(idx < 32); inp->scert[idx] = elt; return 0; } uint8_t * auth1_getarray_scert(auth1_t *inp) { return inp->scert; } size_t auth1_getlen_tlssecrets(const auth1_t *inp) { (void)inp; return 32; } uint8_t auth1_get_tlssecrets(const auth1_t *inp, size_t idx) { trunnel_assert(idx < 32); return inp->tlssecrets[idx]; } int auth1_set_tlssecrets(auth1_t *inp, size_t idx, uint8_t elt) { trunnel_assert(idx < 32); inp->tlssecrets[idx] = elt; return 0; } uint8_t * auth1_getarray_tlssecrets(auth1_t *inp) { return inp->tlssecrets; } const uint8_t * auth1_get_end_of_fixed_part(const auth1_t *inp) { return inp->end_of_fixed_part; } size_t auth1_getlen_rand(const auth1_t *inp) { (void)inp; return 24; } uint8_t auth1_get_rand(const auth1_t *inp, size_t idx) { trunnel_assert(idx < 24); return inp->rand[idx]; } int auth1_set_rand(auth1_t *inp, size_t idx, uint8_t elt) { trunnel_assert(idx < 24); inp->rand[idx] = elt; return 0; } uint8_t * auth1_getarray_rand(auth1_t *inp) { return inp->rand; } const uint8_t * auth1_get_end_of_signed(const auth1_t *inp) { return inp->end_of_signed; } size_t auth1_getlen_sig(const auth1_t *inp) { return TRUNNEL_DYNARRAY_LEN(&inp->sig); } uint8_t auth1_get_sig(auth1_t *inp, size_t idx) { return TRUNNEL_DYNARRAY_GET(&inp->sig, idx); } int auth1_set_sig(auth1_t *inp, size_t idx, uint8_t elt) { TRUNNEL_DYNARRAY_SET(&inp->sig, idx, elt); return 0; } int auth1_add_sig(auth1_t *inp, uint8_t elt) { TRUNNEL_DYNARRAY_ADD(uint8_t, &inp->sig, elt, {}); return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } uint8_t * auth1_getarray_sig(auth1_t *inp) { return inp->sig.elts_; } int auth1_setlen_sig(auth1_t *inp, size_t newlen) { uint8_t *newptr; newptr = trunnel_dynarray_setlen(&inp->sig.allocated_, &inp->sig.n_, inp->sig.elts_, newlen, sizeof(inp->sig.elts_[0]), (trunnel_free_fn_t) NULL, &inp->trunnel_error_code_); if (newptr == NULL) goto trunnel_alloc_failed; inp->sig.elts_ = newptr; return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } const char * auth1_check(const auth1_t *obj, const auth_ctx_t *auth_ctx_ctx) { if (obj == NULL) return "Object was NULL"; if (obj->trunnel_error_code_) return "A set function failed on this object"; if (auth_ctx_ctx == NULL) return "Context was NULL"; switch (auth_ctx_ctx->is_ed) { case 0: break; case 1: break; default: return "Bad tag for union"; break; } return NULL; } ssize_t auth1_encoded_len(const auth1_t *obj, const auth_ctx_t *auth_ctx_ctx) { ssize_t result = 0; if (NULL != auth1_check(obj, auth_ctx_ctx)) return -1; /* Length of u8 type[8] */ result += 8; /* Length of u8 cid[32] */ result += 32; /* Length of u8 sid[32] */ result += 32; switch (auth_ctx_ctx->is_ed) { case 0: break; case 1: /* Length of u8 u1_cid_ed[32] */ result += 32; /* Length of u8 u1_sid_ed[32] */ result += 32; break; default: trunnel_assert(0); break; } /* Length of u8 slog[32] */ result += 32; /* Length of u8 clog[32] */ result += 32; /* Length of u8 scert[32] */ result += 32; /* Length of u8 tlssecrets[32] */ result += 32; /* Length of u8 rand[24] */ result += 24; /* Length of u8 sig[] */ result += TRUNNEL_DYNARRAY_LEN(&obj->sig); return result; } int auth1_clear_errors(auth1_t *obj) { int r = obj->trunnel_error_code_; obj->trunnel_error_code_ = 0; return r; } ssize_t auth1_encode(uint8_t *output, const size_t avail, const auth1_t *obj, const auth_ctx_t *auth_ctx_ctx) { ssize_t result = 0; size_t written = 0; uint8_t *ptr = output; const char *msg; #ifdef TRUNNEL_CHECK_ENCODED_LEN const ssize_t encoded_len = auth1_encoded_len(obj, auth_ctx_ctx); #endif if (NULL != (msg = auth1_check(obj, auth_ctx_ctx))) goto check_failed; #ifdef TRUNNEL_CHECK_ENCODED_LEN trunnel_assert(encoded_len >= 0); #endif /* Encode u8 type[8] */ trunnel_assert(written <= avail); if (avail - written < 8) goto truncated; memcpy(ptr, obj->type, 8); written += 8; ptr += 8; /* Encode u8 cid[32] */ trunnel_assert(written <= avail); if (avail - written < 32) goto truncated; memcpy(ptr, obj->cid, 32); written += 32; ptr += 32; /* Encode u8 sid[32] */ trunnel_assert(written <= avail); if (avail - written < 32) goto truncated; memcpy(ptr, obj->sid, 32); written += 32; ptr += 32; /* Encode union u1[auth_ctx.is_ed] */ trunnel_assert(written <= avail); switch (auth_ctx_ctx->is_ed) { case 0: break; case 1: /* Encode u8 u1_cid_ed[32] */ trunnel_assert(written <= avail); if (avail - written < 32) goto truncated; memcpy(ptr, obj->u1_cid_ed, 32); written += 32; ptr += 32; /* Encode u8 u1_sid_ed[32] */ trunnel_assert(written <= avail); if (avail - written < 32) goto truncated; memcpy(ptr, obj->u1_sid_ed, 32); written += 32; ptr += 32; break; default: trunnel_assert(0); break; } /* Encode u8 slog[32] */ trunnel_assert(written <= avail); if (avail - written < 32) goto truncated; memcpy(ptr, obj->slog, 32); written += 32; ptr += 32; /* Encode u8 clog[32] */ trunnel_assert(written <= avail); if (avail - written < 32) goto truncated; memcpy(ptr, obj->clog, 32); written += 32; ptr += 32; /* Encode u8 scert[32] */ trunnel_assert(written <= avail); if (avail - written < 32) goto truncated; memcpy(ptr, obj->scert, 32); written += 32; ptr += 32; /* Encode u8 tlssecrets[32] */ trunnel_assert(written <= avail); if (avail - written < 32) goto truncated; memcpy(ptr, obj->tlssecrets, 32); written += 32; ptr += 32; /* Encode u8 rand[24] */ trunnel_assert(written <= avail); if (avail - written < 24) goto truncated; memcpy(ptr, obj->rand, 24); written += 24; ptr += 24; /* Encode u8 sig[] */ { size_t elt_len = TRUNNEL_DYNARRAY_LEN(&obj->sig); trunnel_assert(written <= avail); if (avail - written < elt_len) goto truncated; memcpy(ptr, obj->sig.elts_, elt_len); written += elt_len; ptr += elt_len; } trunnel_assert(ptr == output + written); #ifdef TRUNNEL_CHECK_ENCODED_LEN { trunnel_assert(encoded_len >= 0); trunnel_assert((size_t)encoded_len == written); } #endif return written; truncated: result = -2; goto fail; check_failed: (void)msg; result = -1; goto fail; fail: trunnel_assert(result < 0); return result; } /** As auth1_parse(), but do not allocate the output object. */ static ssize_t auth1_parse_into(auth1_t *obj, const uint8_t *input, const size_t len_in, const auth_ctx_t *auth_ctx_ctx) { const uint8_t *ptr = input; size_t remaining = len_in; ssize_t result = 0; (void)result; if (auth_ctx_ctx == NULL) return -1; /* Parse u8 type[8] */ CHECK_REMAINING(8, truncated); memcpy(obj->type, ptr, 8); remaining -= 8; ptr += 8; /* Parse u8 cid[32] */ CHECK_REMAINING(32, truncated); memcpy(obj->cid, ptr, 32); remaining -= 32; ptr += 32; /* Parse u8 sid[32] */ CHECK_REMAINING(32, truncated); memcpy(obj->sid, ptr, 32); remaining -= 32; ptr += 32; /* Parse union u1[auth_ctx.is_ed] */ switch (auth_ctx_ctx->is_ed) { case 0: break; case 1: /* Parse u8 u1_cid_ed[32] */ CHECK_REMAINING(32, truncated); memcpy(obj->u1_cid_ed, ptr, 32); remaining -= 32; ptr += 32; /* Parse u8 u1_sid_ed[32] */ CHECK_REMAINING(32, truncated); memcpy(obj->u1_sid_ed, ptr, 32); remaining -= 32; ptr += 32; break; default: goto fail; break; } /* Parse u8 slog[32] */ CHECK_REMAINING(32, truncated); memcpy(obj->slog, ptr, 32); remaining -= 32; ptr += 32; /* Parse u8 clog[32] */ CHECK_REMAINING(32, truncated); memcpy(obj->clog, ptr, 32); remaining -= 32; ptr += 32; /* Parse u8 scert[32] */ CHECK_REMAINING(32, truncated); memcpy(obj->scert, ptr, 32); remaining -= 32; ptr += 32; /* Parse u8 tlssecrets[32] */ CHECK_REMAINING(32, truncated); memcpy(obj->tlssecrets, ptr, 32); remaining -= 32; ptr += 32; obj->end_of_fixed_part = ptr; /* Parse u8 rand[24] */ CHECK_REMAINING(24, truncated); memcpy(obj->rand, ptr, 24); remaining -= 24; ptr += 24; obj->end_of_signed = ptr; /* Parse u8 sig[] */ TRUNNEL_DYNARRAY_EXPAND(uint8_t, &obj->sig, remaining, {}); obj->sig.n_ = remaining; memcpy(obj->sig.elts_, ptr, remaining); ptr += remaining; remaining -= remaining; trunnel_assert(ptr + remaining == input + len_in); return len_in - remaining; truncated: return -2; trunnel_alloc_failed: return -1; fail: result = -1; return result; } ssize_t auth1_parse(auth1_t **output, const uint8_t *input, const size_t len_in, const auth_ctx_t *auth_ctx_ctx) { ssize_t result; *output = auth1_new(); if (NULL == *output) return -1; result = auth1_parse_into(*output, input, len_in, auth_ctx_ctx); if (result < 0) { auth1_free(*output); *output = NULL; } return result; } certs_cell_t * certs_cell_new(void) { certs_cell_t *val = trunnel_calloc(1, sizeof(certs_cell_t)); if (NULL == val) return NULL; return val; } /** Release all storage held inside 'obj', but do not free 'obj'. */ static void certs_cell_clear(certs_cell_t *obj) { (void) obj; { unsigned idx; for (idx = 0; idx < TRUNNEL_DYNARRAY_LEN(&obj->certs); ++idx) { certs_cell_cert_free(TRUNNEL_DYNARRAY_GET(&obj->certs, idx)); } } TRUNNEL_DYNARRAY_WIPE(&obj->certs); TRUNNEL_DYNARRAY_CLEAR(&obj->certs); } void certs_cell_free(certs_cell_t *obj) { if (obj == NULL) return; certs_cell_clear(obj); trunnel_memwipe(obj, sizeof(certs_cell_t)); trunnel_free_(obj); } uint8_t certs_cell_get_n_certs(certs_cell_t *inp) { return inp->n_certs; } int certs_cell_set_n_certs(certs_cell_t *inp, uint8_t val) { inp->n_certs = val; return 0; } size_t certs_cell_getlen_certs(const certs_cell_t *inp) { return TRUNNEL_DYNARRAY_LEN(&inp->certs); } struct certs_cell_cert_st * certs_cell_get_certs(certs_cell_t *inp, size_t idx) { return TRUNNEL_DYNARRAY_GET(&inp->certs, idx); } int certs_cell_set_certs(certs_cell_t *inp, size_t idx, struct certs_cell_cert_st * elt) { certs_cell_cert_t *oldval = TRUNNEL_DYNARRAY_GET(&inp->certs, idx); if (oldval && oldval != elt) certs_cell_cert_free(oldval); return certs_cell_set0_certs(inp, idx, elt); } int certs_cell_set0_certs(certs_cell_t *inp, size_t idx, struct certs_cell_cert_st * elt) { TRUNNEL_DYNARRAY_SET(&inp->certs, idx, elt); return 0; } int certs_cell_add_certs(certs_cell_t *inp, struct certs_cell_cert_st * elt) { #if SIZE_MAX >= UINT8_MAX if (inp->certs.n_ == UINT8_MAX) goto trunnel_alloc_failed; #endif TRUNNEL_DYNARRAY_ADD(struct certs_cell_cert_st *, &inp->certs, elt, {}); return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } struct certs_cell_cert_st * * certs_cell_getarray_certs(certs_cell_t *inp) { return inp->certs.elts_; } int certs_cell_setlen_certs(certs_cell_t *inp, size_t newlen) { struct certs_cell_cert_st * *newptr; #if UINT8_MAX < SIZE_MAX if (newlen > UINT8_MAX) goto trunnel_alloc_failed; #endif newptr = trunnel_dynarray_setlen(&inp->certs.allocated_, &inp->certs.n_, inp->certs.elts_, newlen, sizeof(inp->certs.elts_[0]), (trunnel_free_fn_t) certs_cell_cert_free, &inp->trunnel_error_code_); if (newptr == NULL) goto trunnel_alloc_failed; inp->certs.elts_ = newptr; return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } const char * certs_cell_check(const certs_cell_t *obj) { if (obj == NULL) return "Object was NULL"; if (obj->trunnel_error_code_) return "A set function failed on this object"; { const char *msg; unsigned idx; for (idx = 0; idx < TRUNNEL_DYNARRAY_LEN(&obj->certs); ++idx) { if (NULL != (msg = certs_cell_cert_check(TRUNNEL_DYNARRAY_GET(&obj->certs, idx)))) return msg; } } if (TRUNNEL_DYNARRAY_LEN(&obj->certs) != obj->n_certs) return "Length mismatch for certs"; return NULL; } ssize_t certs_cell_encoded_len(const certs_cell_t *obj) { ssize_t result = 0; if (NULL != certs_cell_check(obj)) return -1; /* Length of u8 n_certs */ result += 1; /* Length of struct certs_cell_cert certs[n_certs] */ { unsigned idx; for (idx = 0; idx < TRUNNEL_DYNARRAY_LEN(&obj->certs); ++idx) { result += certs_cell_cert_encoded_len(TRUNNEL_DYNARRAY_GET(&obj->certs, idx)); } } return result; } int certs_cell_clear_errors(certs_cell_t *obj) { int r = obj->trunnel_error_code_; obj->trunnel_error_code_ = 0; return r; } ssize_t certs_cell_encode(uint8_t *output, const size_t avail, const certs_cell_t *obj) { ssize_t result = 0; size_t written = 0; uint8_t *ptr = output; const char *msg; #ifdef TRUNNEL_CHECK_ENCODED_LEN const ssize_t encoded_len = certs_cell_encoded_len(obj); #endif if (NULL != (msg = certs_cell_check(obj))) goto check_failed; #ifdef TRUNNEL_CHECK_ENCODED_LEN trunnel_assert(encoded_len >= 0); #endif /* Encode u8 n_certs */ trunnel_assert(written <= avail); if (avail - written < 1) goto truncated; trunnel_set_uint8(ptr, (obj->n_certs)); written += 1; ptr += 1; /* Encode struct certs_cell_cert certs[n_certs] */ { unsigned idx; for (idx = 0; idx < TRUNNEL_DYNARRAY_LEN(&obj->certs); ++idx) { trunnel_assert(written <= avail); result = certs_cell_cert_encode(ptr, avail - written, TRUNNEL_DYNARRAY_GET(&obj->certs, idx)); if (result < 0) goto fail; /* XXXXXXX !*/ written += result; ptr += result; } } trunnel_assert(ptr == output + written); #ifdef TRUNNEL_CHECK_ENCODED_LEN { trunnel_assert(encoded_len >= 0); trunnel_assert((size_t)encoded_len == written); } #endif return written; truncated: result = -2; goto fail; check_failed: (void)msg; result = -1; goto fail; fail: trunnel_assert(result < 0); return result; } /** As certs_cell_parse(), but do not allocate the output object. */ static ssize_t certs_cell_parse_into(certs_cell_t *obj, const uint8_t *input, const size_t len_in) { const uint8_t *ptr = input; size_t remaining = len_in; ssize_t result = 0; (void)result; /* Parse u8 n_certs */ CHECK_REMAINING(1, truncated); obj->n_certs = (trunnel_get_uint8(ptr)); remaining -= 1; ptr += 1; /* Parse struct certs_cell_cert certs[n_certs] */ TRUNNEL_DYNARRAY_EXPAND(certs_cell_cert_t *, &obj->certs, obj->n_certs, {}); { certs_cell_cert_t * elt; unsigned idx; for (idx = 0; idx < obj->n_certs; ++idx) { result = certs_cell_cert_parse(&elt, ptr, remaining); if (result < 0) goto relay_fail; trunnel_assert((size_t)result <= remaining); remaining -= result; ptr += result; TRUNNEL_DYNARRAY_ADD(certs_cell_cert_t *, &obj->certs, elt, {certs_cell_cert_free(elt);}); } } trunnel_assert(ptr + remaining == input + len_in); return len_in - remaining; truncated: return -2; relay_fail: trunnel_assert(result < 0); return result; trunnel_alloc_failed: return -1; } ssize_t certs_cell_parse(certs_cell_t **output, const uint8_t *input, const size_t len_in) { ssize_t result; *output = certs_cell_new(); if (NULL == *output) return -1; result = certs_cell_parse_into(*output, input, len_in); if (result < 0) { certs_cell_free(*output); *output = NULL; } return result; } tor-0.2.7.6/src/trunnel/trunnel-local.h0000644000175000017500000000067412621363246014633 00000000000000 #ifndef TRUNNEL_LOCAL_H_INCLUDED #define TRUNNEL_LOCAL_H_INCLUDED #include "util.h" #include "compat.h" #include "crypto.h" #define trunnel_malloc tor_malloc #define trunnel_calloc tor_calloc #define trunnel_strdup tor_strdup #define trunnel_free_ tor_free_ #define trunnel_realloc tor_realloc #define trunnel_reallocarray tor_reallocarray #define trunnel_assert tor_assert #define trunnel_memwipe(mem, len) memwipe((mem), 0, (len)) #endif tor-0.2.7.6/src/trunnel/ed25519_cert.c0000644000175000017500000005120712621363246014060 00000000000000/* ed25519_cert.c -- generated by Trunnel v1.4.3. * https://gitweb.torproject.org/trunnel.git * You probably shouldn't edit this file. */ #include #include "trunnel-impl.h" #include "ed25519_cert.h" #define TRUNNEL_SET_ERROR_CODE(obj) \ do { \ (obj)->trunnel_error_code_ = 1; \ } while (0) #if defined(__COVERITY__) || defined(__clang_analyzer__) /* If we're runnning a static analysis tool, we don't want it to complain * that some of our remaining-bytes checks are dead-code. */ int edcert_deadcode_dummy__ = 0; #define OR_DEADCODE_DUMMY || edcert_deadcode_dummy__ #else #define OR_DEADCODE_DUMMY #endif #define CHECK_REMAINING(nbytes, label) \ do { \ if (remaining < (nbytes) OR_DEADCODE_DUMMY) { \ goto label; \ } \ } while (0) ed25519_cert_extension_t * ed25519_cert_extension_new(void) { ed25519_cert_extension_t *val = trunnel_calloc(1, sizeof(ed25519_cert_extension_t)); if (NULL == val) return NULL; return val; } /** Release all storage held inside 'obj', but do not free 'obj'. */ static void ed25519_cert_extension_clear(ed25519_cert_extension_t *obj) { (void) obj; TRUNNEL_DYNARRAY_WIPE(&obj->un_unparsed); TRUNNEL_DYNARRAY_CLEAR(&obj->un_unparsed); } void ed25519_cert_extension_free(ed25519_cert_extension_t *obj) { if (obj == NULL) return; ed25519_cert_extension_clear(obj); trunnel_memwipe(obj, sizeof(ed25519_cert_extension_t)); trunnel_free_(obj); } uint16_t ed25519_cert_extension_get_ext_length(ed25519_cert_extension_t *inp) { return inp->ext_length; } int ed25519_cert_extension_set_ext_length(ed25519_cert_extension_t *inp, uint16_t val) { inp->ext_length = val; return 0; } uint8_t ed25519_cert_extension_get_ext_type(ed25519_cert_extension_t *inp) { return inp->ext_type; } int ed25519_cert_extension_set_ext_type(ed25519_cert_extension_t *inp, uint8_t val) { inp->ext_type = val; return 0; } uint8_t ed25519_cert_extension_get_ext_flags(ed25519_cert_extension_t *inp) { return inp->ext_flags; } int ed25519_cert_extension_set_ext_flags(ed25519_cert_extension_t *inp, uint8_t val) { inp->ext_flags = val; return 0; } size_t ed25519_cert_extension_getlen_un_signing_key(const ed25519_cert_extension_t *inp) { (void)inp; return 32; } uint8_t ed25519_cert_extension_get_un_signing_key(const ed25519_cert_extension_t *inp, size_t idx) { trunnel_assert(idx < 32); return inp->un_signing_key[idx]; } int ed25519_cert_extension_set_un_signing_key(ed25519_cert_extension_t *inp, size_t idx, uint8_t elt) { trunnel_assert(idx < 32); inp->un_signing_key[idx] = elt; return 0; } uint8_t * ed25519_cert_extension_getarray_un_signing_key(ed25519_cert_extension_t *inp) { return inp->un_signing_key; } size_t ed25519_cert_extension_getlen_un_unparsed(const ed25519_cert_extension_t *inp) { return TRUNNEL_DYNARRAY_LEN(&inp->un_unparsed); } uint8_t ed25519_cert_extension_get_un_unparsed(ed25519_cert_extension_t *inp, size_t idx) { return TRUNNEL_DYNARRAY_GET(&inp->un_unparsed, idx); } int ed25519_cert_extension_set_un_unparsed(ed25519_cert_extension_t *inp, size_t idx, uint8_t elt) { TRUNNEL_DYNARRAY_SET(&inp->un_unparsed, idx, elt); return 0; } int ed25519_cert_extension_add_un_unparsed(ed25519_cert_extension_t *inp, uint8_t elt) { TRUNNEL_DYNARRAY_ADD(uint8_t, &inp->un_unparsed, elt, {}); return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } uint8_t * ed25519_cert_extension_getarray_un_unparsed(ed25519_cert_extension_t *inp) { return inp->un_unparsed.elts_; } int ed25519_cert_extension_setlen_un_unparsed(ed25519_cert_extension_t *inp, size_t newlen) { uint8_t *newptr; newptr = trunnel_dynarray_setlen(&inp->un_unparsed.allocated_, &inp->un_unparsed.n_, inp->un_unparsed.elts_, newlen, sizeof(inp->un_unparsed.elts_[0]), (trunnel_free_fn_t) NULL, &inp->trunnel_error_code_); if (newptr == NULL) goto trunnel_alloc_failed; inp->un_unparsed.elts_ = newptr; return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } const char * ed25519_cert_extension_check(const ed25519_cert_extension_t *obj) { if (obj == NULL) return "Object was NULL"; if (obj->trunnel_error_code_) return "A set function failed on this object"; switch (obj->ext_type) { case CERTEXT_SIGNED_WITH_KEY: break; default: break; } return NULL; } ssize_t ed25519_cert_extension_encoded_len(const ed25519_cert_extension_t *obj) { ssize_t result = 0; if (NULL != ed25519_cert_extension_check(obj)) return -1; /* Length of u16 ext_length */ result += 2; /* Length of u8 ext_type */ result += 1; /* Length of u8 ext_flags */ result += 1; switch (obj->ext_type) { case CERTEXT_SIGNED_WITH_KEY: /* Length of u8 un_signing_key[32] */ result += 32; break; default: /* Length of u8 un_unparsed[] */ result += TRUNNEL_DYNARRAY_LEN(&obj->un_unparsed); break; } return result; } int ed25519_cert_extension_clear_errors(ed25519_cert_extension_t *obj) { int r = obj->trunnel_error_code_; obj->trunnel_error_code_ = 0; return r; } ssize_t ed25519_cert_extension_encode(uint8_t *output, const size_t avail, const ed25519_cert_extension_t *obj) { ssize_t result = 0; size_t written = 0; uint8_t *ptr = output; const char *msg; #ifdef TRUNNEL_CHECK_ENCODED_LEN const ssize_t encoded_len = ed25519_cert_extension_encoded_len(obj); #endif uint8_t *backptr_ext_length = NULL; if (NULL != (msg = ed25519_cert_extension_check(obj))) goto check_failed; #ifdef TRUNNEL_CHECK_ENCODED_LEN trunnel_assert(encoded_len >= 0); #endif /* Encode u16 ext_length */ backptr_ext_length = ptr; trunnel_assert(written <= avail); if (avail - written < 2) goto truncated; trunnel_set_uint16(ptr, trunnel_htons(obj->ext_length)); written += 2; ptr += 2; /* Encode u8 ext_type */ trunnel_assert(written <= avail); if (avail - written < 1) goto truncated; trunnel_set_uint8(ptr, (obj->ext_type)); written += 1; ptr += 1; /* Encode u8 ext_flags */ trunnel_assert(written <= avail); if (avail - written < 1) goto truncated; trunnel_set_uint8(ptr, (obj->ext_flags)); written += 1; ptr += 1; { size_t written_before_union = written; /* Encode union un[ext_type] */ trunnel_assert(written <= avail); switch (obj->ext_type) { case CERTEXT_SIGNED_WITH_KEY: /* Encode u8 un_signing_key[32] */ trunnel_assert(written <= avail); if (avail - written < 32) goto truncated; memcpy(ptr, obj->un_signing_key, 32); written += 32; ptr += 32; break; default: /* Encode u8 un_unparsed[] */ { size_t elt_len = TRUNNEL_DYNARRAY_LEN(&obj->un_unparsed); trunnel_assert(written <= avail); if (avail - written < elt_len) goto truncated; memcpy(ptr, obj->un_unparsed.elts_, elt_len); written += elt_len; ptr += elt_len; } break; } /* Write the length field back to ext_length */ trunnel_assert(written >= written_before_union); #if UINT16_MAX < SIZE_MAX if (written - written_before_union > UINT16_MAX) goto check_failed; #endif trunnel_set_uint16(backptr_ext_length, trunnel_htons(written - written_before_union)); } trunnel_assert(ptr == output + written); #ifdef TRUNNEL_CHECK_ENCODED_LEN { trunnel_assert(encoded_len >= 0); trunnel_assert((size_t)encoded_len == written); } #endif return written; truncated: result = -2; goto fail; check_failed: (void)msg; result = -1; goto fail; fail: trunnel_assert(result < 0); return result; } /** As ed25519_cert_extension_parse(), but do not allocate the output * object. */ static ssize_t ed25519_cert_extension_parse_into(ed25519_cert_extension_t *obj, const uint8_t *input, const size_t len_in) { const uint8_t *ptr = input; size_t remaining = len_in; ssize_t result = 0; (void)result; /* Parse u16 ext_length */ CHECK_REMAINING(2, truncated); obj->ext_length = trunnel_ntohs(trunnel_get_uint16(ptr)); remaining -= 2; ptr += 2; /* Parse u8 ext_type */ CHECK_REMAINING(1, truncated); obj->ext_type = (trunnel_get_uint8(ptr)); remaining -= 1; ptr += 1; /* Parse u8 ext_flags */ CHECK_REMAINING(1, truncated); obj->ext_flags = (trunnel_get_uint8(ptr)); remaining -= 1; ptr += 1; { size_t remaining_after; CHECK_REMAINING(obj->ext_length, truncated); remaining_after = remaining - obj->ext_length; remaining = obj->ext_length; /* Parse union un[ext_type] */ switch (obj->ext_type) { case CERTEXT_SIGNED_WITH_KEY: /* Parse u8 un_signing_key[32] */ CHECK_REMAINING(32, fail); memcpy(obj->un_signing_key, ptr, 32); remaining -= 32; ptr += 32; break; default: /* Parse u8 un_unparsed[] */ TRUNNEL_DYNARRAY_EXPAND(uint8_t, &obj->un_unparsed, remaining, {}); obj->un_unparsed.n_ = remaining; memcpy(obj->un_unparsed.elts_, ptr, remaining); ptr += remaining; remaining -= remaining; break; } if (remaining != 0) goto fail; remaining = remaining_after; } trunnel_assert(ptr + remaining == input + len_in); return len_in - remaining; truncated: return -2; trunnel_alloc_failed: return -1; fail: result = -1; return result; } ssize_t ed25519_cert_extension_parse(ed25519_cert_extension_t **output, const uint8_t *input, const size_t len_in) { ssize_t result; *output = ed25519_cert_extension_new(); if (NULL == *output) return -1; result = ed25519_cert_extension_parse_into(*output, input, len_in); if (result < 0) { ed25519_cert_extension_free(*output); *output = NULL; } return result; } ed25519_cert_t * ed25519_cert_new(void) { ed25519_cert_t *val = trunnel_calloc(1, sizeof(ed25519_cert_t)); if (NULL == val) return NULL; val->version = 1; return val; } /** Release all storage held inside 'obj', but do not free 'obj'. */ static void ed25519_cert_clear(ed25519_cert_t *obj) { (void) obj; { unsigned idx; for (idx = 0; idx < TRUNNEL_DYNARRAY_LEN(&obj->ext); ++idx) { ed25519_cert_extension_free(TRUNNEL_DYNARRAY_GET(&obj->ext, idx)); } } TRUNNEL_DYNARRAY_WIPE(&obj->ext); TRUNNEL_DYNARRAY_CLEAR(&obj->ext); } void ed25519_cert_free(ed25519_cert_t *obj) { if (obj == NULL) return; ed25519_cert_clear(obj); trunnel_memwipe(obj, sizeof(ed25519_cert_t)); trunnel_free_(obj); } uint8_t ed25519_cert_get_version(ed25519_cert_t *inp) { return inp->version; } int ed25519_cert_set_version(ed25519_cert_t *inp, uint8_t val) { if (! ((val == 1))) { TRUNNEL_SET_ERROR_CODE(inp); return -1; } inp->version = val; return 0; } uint8_t ed25519_cert_get_cert_type(ed25519_cert_t *inp) { return inp->cert_type; } int ed25519_cert_set_cert_type(ed25519_cert_t *inp, uint8_t val) { inp->cert_type = val; return 0; } uint32_t ed25519_cert_get_exp_field(ed25519_cert_t *inp) { return inp->exp_field; } int ed25519_cert_set_exp_field(ed25519_cert_t *inp, uint32_t val) { inp->exp_field = val; return 0; } uint8_t ed25519_cert_get_cert_key_type(ed25519_cert_t *inp) { return inp->cert_key_type; } int ed25519_cert_set_cert_key_type(ed25519_cert_t *inp, uint8_t val) { inp->cert_key_type = val; return 0; } size_t ed25519_cert_getlen_certified_key(const ed25519_cert_t *inp) { (void)inp; return 32; } uint8_t ed25519_cert_get_certified_key(const ed25519_cert_t *inp, size_t idx) { trunnel_assert(idx < 32); return inp->certified_key[idx]; } int ed25519_cert_set_certified_key(ed25519_cert_t *inp, size_t idx, uint8_t elt) { trunnel_assert(idx < 32); inp->certified_key[idx] = elt; return 0; } uint8_t * ed25519_cert_getarray_certified_key(ed25519_cert_t *inp) { return inp->certified_key; } uint8_t ed25519_cert_get_n_extensions(ed25519_cert_t *inp) { return inp->n_extensions; } int ed25519_cert_set_n_extensions(ed25519_cert_t *inp, uint8_t val) { inp->n_extensions = val; return 0; } size_t ed25519_cert_getlen_ext(const ed25519_cert_t *inp) { return TRUNNEL_DYNARRAY_LEN(&inp->ext); } struct ed25519_cert_extension_st * ed25519_cert_get_ext(ed25519_cert_t *inp, size_t idx) { return TRUNNEL_DYNARRAY_GET(&inp->ext, idx); } int ed25519_cert_set_ext(ed25519_cert_t *inp, size_t idx, struct ed25519_cert_extension_st * elt) { ed25519_cert_extension_t *oldval = TRUNNEL_DYNARRAY_GET(&inp->ext, idx); if (oldval && oldval != elt) ed25519_cert_extension_free(oldval); return ed25519_cert_set0_ext(inp, idx, elt); } int ed25519_cert_set0_ext(ed25519_cert_t *inp, size_t idx, struct ed25519_cert_extension_st * elt) { TRUNNEL_DYNARRAY_SET(&inp->ext, idx, elt); return 0; } int ed25519_cert_add_ext(ed25519_cert_t *inp, struct ed25519_cert_extension_st * elt) { #if SIZE_MAX >= UINT8_MAX if (inp->ext.n_ == UINT8_MAX) goto trunnel_alloc_failed; #endif TRUNNEL_DYNARRAY_ADD(struct ed25519_cert_extension_st *, &inp->ext, elt, {}); return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } struct ed25519_cert_extension_st * * ed25519_cert_getarray_ext(ed25519_cert_t *inp) { return inp->ext.elts_; } int ed25519_cert_setlen_ext(ed25519_cert_t *inp, size_t newlen) { struct ed25519_cert_extension_st * *newptr; #if UINT8_MAX < SIZE_MAX if (newlen > UINT8_MAX) goto trunnel_alloc_failed; #endif newptr = trunnel_dynarray_setlen(&inp->ext.allocated_, &inp->ext.n_, inp->ext.elts_, newlen, sizeof(inp->ext.elts_[0]), (trunnel_free_fn_t) ed25519_cert_extension_free, &inp->trunnel_error_code_); if (newptr == NULL) goto trunnel_alloc_failed; inp->ext.elts_ = newptr; return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } size_t ed25519_cert_getlen_signature(const ed25519_cert_t *inp) { (void)inp; return 64; } uint8_t ed25519_cert_get_signature(const ed25519_cert_t *inp, size_t idx) { trunnel_assert(idx < 64); return inp->signature[idx]; } int ed25519_cert_set_signature(ed25519_cert_t *inp, size_t idx, uint8_t elt) { trunnel_assert(idx < 64); inp->signature[idx] = elt; return 0; } uint8_t * ed25519_cert_getarray_signature(ed25519_cert_t *inp) { return inp->signature; } const char * ed25519_cert_check(const ed25519_cert_t *obj) { if (obj == NULL) return "Object was NULL"; if (obj->trunnel_error_code_) return "A set function failed on this object"; if (! (obj->version == 1)) return "Integer out of bounds"; { const char *msg; unsigned idx; for (idx = 0; idx < TRUNNEL_DYNARRAY_LEN(&obj->ext); ++idx) { if (NULL != (msg = ed25519_cert_extension_check(TRUNNEL_DYNARRAY_GET(&obj->ext, idx)))) return msg; } } if (TRUNNEL_DYNARRAY_LEN(&obj->ext) != obj->n_extensions) return "Length mismatch for ext"; return NULL; } ssize_t ed25519_cert_encoded_len(const ed25519_cert_t *obj) { ssize_t result = 0; if (NULL != ed25519_cert_check(obj)) return -1; /* Length of u8 version IN [1] */ result += 1; /* Length of u8 cert_type */ result += 1; /* Length of u32 exp_field */ result += 4; /* Length of u8 cert_key_type */ result += 1; /* Length of u8 certified_key[32] */ result += 32; /* Length of u8 n_extensions */ result += 1; /* Length of struct ed25519_cert_extension ext[n_extensions] */ { unsigned idx; for (idx = 0; idx < TRUNNEL_DYNARRAY_LEN(&obj->ext); ++idx) { result += ed25519_cert_extension_encoded_len(TRUNNEL_DYNARRAY_GET(&obj->ext, idx)); } } /* Length of u8 signature[64] */ result += 64; return result; } int ed25519_cert_clear_errors(ed25519_cert_t *obj) { int r = obj->trunnel_error_code_; obj->trunnel_error_code_ = 0; return r; } ssize_t ed25519_cert_encode(uint8_t *output, const size_t avail, const ed25519_cert_t *obj) { ssize_t result = 0; size_t written = 0; uint8_t *ptr = output; const char *msg; #ifdef TRUNNEL_CHECK_ENCODED_LEN const ssize_t encoded_len = ed25519_cert_encoded_len(obj); #endif if (NULL != (msg = ed25519_cert_check(obj))) goto check_failed; #ifdef TRUNNEL_CHECK_ENCODED_LEN trunnel_assert(encoded_len >= 0); #endif /* Encode u8 version IN [1] */ trunnel_assert(written <= avail); if (avail - written < 1) goto truncated; trunnel_set_uint8(ptr, (obj->version)); written += 1; ptr += 1; /* Encode u8 cert_type */ trunnel_assert(written <= avail); if (avail - written < 1) goto truncated; trunnel_set_uint8(ptr, (obj->cert_type)); written += 1; ptr += 1; /* Encode u32 exp_field */ trunnel_assert(written <= avail); if (avail - written < 4) goto truncated; trunnel_set_uint32(ptr, trunnel_htonl(obj->exp_field)); written += 4; ptr += 4; /* Encode u8 cert_key_type */ trunnel_assert(written <= avail); if (avail - written < 1) goto truncated; trunnel_set_uint8(ptr, (obj->cert_key_type)); written += 1; ptr += 1; /* Encode u8 certified_key[32] */ trunnel_assert(written <= avail); if (avail - written < 32) goto truncated; memcpy(ptr, obj->certified_key, 32); written += 32; ptr += 32; /* Encode u8 n_extensions */ trunnel_assert(written <= avail); if (avail - written < 1) goto truncated; trunnel_set_uint8(ptr, (obj->n_extensions)); written += 1; ptr += 1; /* Encode struct ed25519_cert_extension ext[n_extensions] */ { unsigned idx; for (idx = 0; idx < TRUNNEL_DYNARRAY_LEN(&obj->ext); ++idx) { trunnel_assert(written <= avail); result = ed25519_cert_extension_encode(ptr, avail - written, TRUNNEL_DYNARRAY_GET(&obj->ext, idx)); if (result < 0) goto fail; /* XXXXXXX !*/ written += result; ptr += result; } } /* Encode u8 signature[64] */ trunnel_assert(written <= avail); if (avail - written < 64) goto truncated; memcpy(ptr, obj->signature, 64); written += 64; ptr += 64; trunnel_assert(ptr == output + written); #ifdef TRUNNEL_CHECK_ENCODED_LEN { trunnel_assert(encoded_len >= 0); trunnel_assert((size_t)encoded_len == written); } #endif return written; truncated: result = -2; goto fail; check_failed: (void)msg; result = -1; goto fail; fail: trunnel_assert(result < 0); return result; } /** As ed25519_cert_parse(), but do not allocate the output object. */ static ssize_t ed25519_cert_parse_into(ed25519_cert_t *obj, const uint8_t *input, const size_t len_in) { const uint8_t *ptr = input; size_t remaining = len_in; ssize_t result = 0; (void)result; /* Parse u8 version IN [1] */ CHECK_REMAINING(1, truncated); obj->version = (trunnel_get_uint8(ptr)); remaining -= 1; ptr += 1; if (! (obj->version == 1)) goto fail; /* Parse u8 cert_type */ CHECK_REMAINING(1, truncated); obj->cert_type = (trunnel_get_uint8(ptr)); remaining -= 1; ptr += 1; /* Parse u32 exp_field */ CHECK_REMAINING(4, truncated); obj->exp_field = trunnel_ntohl(trunnel_get_uint32(ptr)); remaining -= 4; ptr += 4; /* Parse u8 cert_key_type */ CHECK_REMAINING(1, truncated); obj->cert_key_type = (trunnel_get_uint8(ptr)); remaining -= 1; ptr += 1; /* Parse u8 certified_key[32] */ CHECK_REMAINING(32, truncated); memcpy(obj->certified_key, ptr, 32); remaining -= 32; ptr += 32; /* Parse u8 n_extensions */ CHECK_REMAINING(1, truncated); obj->n_extensions = (trunnel_get_uint8(ptr)); remaining -= 1; ptr += 1; /* Parse struct ed25519_cert_extension ext[n_extensions] */ TRUNNEL_DYNARRAY_EXPAND(ed25519_cert_extension_t *, &obj->ext, obj->n_extensions, {}); { ed25519_cert_extension_t * elt; unsigned idx; for (idx = 0; idx < obj->n_extensions; ++idx) { result = ed25519_cert_extension_parse(&elt, ptr, remaining); if (result < 0) goto relay_fail; trunnel_assert((size_t)result <= remaining); remaining -= result; ptr += result; TRUNNEL_DYNARRAY_ADD(ed25519_cert_extension_t *, &obj->ext, elt, {ed25519_cert_extension_free(elt);}); } } /* Parse u8 signature[64] */ CHECK_REMAINING(64, truncated); memcpy(obj->signature, ptr, 64); remaining -= 64; ptr += 64; trunnel_assert(ptr + remaining == input + len_in); return len_in - remaining; truncated: return -2; relay_fail: trunnel_assert(result < 0); return result; trunnel_alloc_failed: return -1; fail: result = -1; return result; } ssize_t ed25519_cert_parse(ed25519_cert_t **output, const uint8_t *input, const size_t len_in) { ssize_t result; *output = ed25519_cert_new(); if (NULL == *output) return -1; result = ed25519_cert_parse_into(*output, input, len_in); if (result < 0) { ed25519_cert_free(*output); *output = NULL; } return result; } tor-0.2.7.6/src/trunnel/pwbox.c0000644000175000017500000003002212621363246013174 00000000000000/* pwbox.c -- generated by Trunnel v1.4.3. * https://gitweb.torproject.org/trunnel.git * You probably shouldn't edit this file. */ #include #include "trunnel-impl.h" #include "pwbox.h" #define TRUNNEL_SET_ERROR_CODE(obj) \ do { \ (obj)->trunnel_error_code_ = 1; \ } while (0) #if defined(__COVERITY__) || defined(__clang_analyzer__) /* If we're runnning a static analysis tool, we don't want it to complain * that some of our remaining-bytes checks are dead-code. */ int pwbox_deadcode_dummy__ = 0; #define OR_DEADCODE_DUMMY || pwbox_deadcode_dummy__ #else #define OR_DEADCODE_DUMMY #endif #define CHECK_REMAINING(nbytes, label) \ do { \ if (remaining < (nbytes) OR_DEADCODE_DUMMY) { \ goto label; \ } \ } while (0) pwbox_encoded_t * pwbox_encoded_new(void) { pwbox_encoded_t *val = trunnel_calloc(1, sizeof(pwbox_encoded_t)); if (NULL == val) return NULL; val->fixedbytes0 = PWBOX0_CONST0; val->fixedbytes1 = PWBOX0_CONST1; return val; } /** Release all storage held inside 'obj', but do not free 'obj'. */ static void pwbox_encoded_clear(pwbox_encoded_t *obj) { (void) obj; TRUNNEL_DYNARRAY_WIPE(&obj->skey_header); TRUNNEL_DYNARRAY_CLEAR(&obj->skey_header); TRUNNEL_DYNARRAY_WIPE(&obj->data); TRUNNEL_DYNARRAY_CLEAR(&obj->data); } void pwbox_encoded_free(pwbox_encoded_t *obj) { if (obj == NULL) return; pwbox_encoded_clear(obj); trunnel_memwipe(obj, sizeof(pwbox_encoded_t)); trunnel_free_(obj); } uint32_t pwbox_encoded_get_fixedbytes0(pwbox_encoded_t *inp) { return inp->fixedbytes0; } int pwbox_encoded_set_fixedbytes0(pwbox_encoded_t *inp, uint32_t val) { if (! ((val == PWBOX0_CONST0))) { TRUNNEL_SET_ERROR_CODE(inp); return -1; } inp->fixedbytes0 = val; return 0; } uint32_t pwbox_encoded_get_fixedbytes1(pwbox_encoded_t *inp) { return inp->fixedbytes1; } int pwbox_encoded_set_fixedbytes1(pwbox_encoded_t *inp, uint32_t val) { if (! ((val == PWBOX0_CONST1))) { TRUNNEL_SET_ERROR_CODE(inp); return -1; } inp->fixedbytes1 = val; return 0; } uint8_t pwbox_encoded_get_header_len(pwbox_encoded_t *inp) { return inp->header_len; } int pwbox_encoded_set_header_len(pwbox_encoded_t *inp, uint8_t val) { inp->header_len = val; return 0; } size_t pwbox_encoded_getlen_skey_header(const pwbox_encoded_t *inp) { return TRUNNEL_DYNARRAY_LEN(&inp->skey_header); } uint8_t pwbox_encoded_get_skey_header(pwbox_encoded_t *inp, size_t idx) { return TRUNNEL_DYNARRAY_GET(&inp->skey_header, idx); } int pwbox_encoded_set_skey_header(pwbox_encoded_t *inp, size_t idx, uint8_t elt) { TRUNNEL_DYNARRAY_SET(&inp->skey_header, idx, elt); return 0; } int pwbox_encoded_add_skey_header(pwbox_encoded_t *inp, uint8_t elt) { #if SIZE_MAX >= UINT8_MAX if (inp->skey_header.n_ == UINT8_MAX) goto trunnel_alloc_failed; #endif TRUNNEL_DYNARRAY_ADD(uint8_t, &inp->skey_header, elt, {}); return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } uint8_t * pwbox_encoded_getarray_skey_header(pwbox_encoded_t *inp) { return inp->skey_header.elts_; } int pwbox_encoded_setlen_skey_header(pwbox_encoded_t *inp, size_t newlen) { uint8_t *newptr; #if UINT8_MAX < SIZE_MAX if (newlen > UINT8_MAX) goto trunnel_alloc_failed; #endif newptr = trunnel_dynarray_setlen(&inp->skey_header.allocated_, &inp->skey_header.n_, inp->skey_header.elts_, newlen, sizeof(inp->skey_header.elts_[0]), (trunnel_free_fn_t) NULL, &inp->trunnel_error_code_); if (newptr == NULL) goto trunnel_alloc_failed; inp->skey_header.elts_ = newptr; return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } size_t pwbox_encoded_getlen_iv(const pwbox_encoded_t *inp) { (void)inp; return 16; } uint8_t pwbox_encoded_get_iv(const pwbox_encoded_t *inp, size_t idx) { trunnel_assert(idx < 16); return inp->iv[idx]; } int pwbox_encoded_set_iv(pwbox_encoded_t *inp, size_t idx, uint8_t elt) { trunnel_assert(idx < 16); inp->iv[idx] = elt; return 0; } uint8_t * pwbox_encoded_getarray_iv(pwbox_encoded_t *inp) { return inp->iv; } size_t pwbox_encoded_getlen_data(const pwbox_encoded_t *inp) { return TRUNNEL_DYNARRAY_LEN(&inp->data); } uint8_t pwbox_encoded_get_data(pwbox_encoded_t *inp, size_t idx) { return TRUNNEL_DYNARRAY_GET(&inp->data, idx); } int pwbox_encoded_set_data(pwbox_encoded_t *inp, size_t idx, uint8_t elt) { TRUNNEL_DYNARRAY_SET(&inp->data, idx, elt); return 0; } int pwbox_encoded_add_data(pwbox_encoded_t *inp, uint8_t elt) { TRUNNEL_DYNARRAY_ADD(uint8_t, &inp->data, elt, {}); return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } uint8_t * pwbox_encoded_getarray_data(pwbox_encoded_t *inp) { return inp->data.elts_; } int pwbox_encoded_setlen_data(pwbox_encoded_t *inp, size_t newlen) { uint8_t *newptr; newptr = trunnel_dynarray_setlen(&inp->data.allocated_, &inp->data.n_, inp->data.elts_, newlen, sizeof(inp->data.elts_[0]), (trunnel_free_fn_t) NULL, &inp->trunnel_error_code_); if (newptr == NULL) goto trunnel_alloc_failed; inp->data.elts_ = newptr; return 0; trunnel_alloc_failed: TRUNNEL_SET_ERROR_CODE(inp); return -1; } size_t pwbox_encoded_getlen_hmac(const pwbox_encoded_t *inp) { (void)inp; return 32; } uint8_t pwbox_encoded_get_hmac(const pwbox_encoded_t *inp, size_t idx) { trunnel_assert(idx < 32); return inp->hmac[idx]; } int pwbox_encoded_set_hmac(pwbox_encoded_t *inp, size_t idx, uint8_t elt) { trunnel_assert(idx < 32); inp->hmac[idx] = elt; return 0; } uint8_t * pwbox_encoded_getarray_hmac(pwbox_encoded_t *inp) { return inp->hmac; } const char * pwbox_encoded_check(const pwbox_encoded_t *obj) { if (obj == NULL) return "Object was NULL"; if (obj->trunnel_error_code_) return "A set function failed on this object"; if (! (obj->fixedbytes0 == PWBOX0_CONST0)) return "Integer out of bounds"; if (! (obj->fixedbytes1 == PWBOX0_CONST1)) return "Integer out of bounds"; if (TRUNNEL_DYNARRAY_LEN(&obj->skey_header) != obj->header_len) return "Length mismatch for skey_header"; return NULL; } ssize_t pwbox_encoded_encoded_len(const pwbox_encoded_t *obj) { ssize_t result = 0; if (NULL != pwbox_encoded_check(obj)) return -1; /* Length of u32 fixedbytes0 IN [PWBOX0_CONST0] */ result += 4; /* Length of u32 fixedbytes1 IN [PWBOX0_CONST1] */ result += 4; /* Length of u8 header_len */ result += 1; /* Length of u8 skey_header[header_len] */ result += TRUNNEL_DYNARRAY_LEN(&obj->skey_header); /* Length of u8 iv[16] */ result += 16; /* Length of u8 data[] */ result += TRUNNEL_DYNARRAY_LEN(&obj->data); /* Length of u8 hmac[32] */ result += 32; return result; } int pwbox_encoded_clear_errors(pwbox_encoded_t *obj) { int r = obj->trunnel_error_code_; obj->trunnel_error_code_ = 0; return r; } ssize_t pwbox_encoded_encode(uint8_t *output, size_t avail, const pwbox_encoded_t *obj) { ssize_t result = 0; size_t written = 0; uint8_t *ptr = output; const char *msg; #ifdef TRUNNEL_CHECK_ENCODED_LEN const ssize_t encoded_len = pwbox_encoded_encoded_len(obj); #endif int enforce_avail = 0; const size_t avail_orig = avail; if (NULL != (msg = pwbox_encoded_check(obj))) goto check_failed; #ifdef TRUNNEL_CHECK_ENCODED_LEN trunnel_assert(encoded_len >= 0); #endif /* Encode u32 fixedbytes0 IN [PWBOX0_CONST0] */ trunnel_assert(written <= avail); if (avail - written < 4) goto truncated; trunnel_set_uint32(ptr, trunnel_htonl(obj->fixedbytes0)); written += 4; ptr += 4; /* Encode u32 fixedbytes1 IN [PWBOX0_CONST1] */ trunnel_assert(written <= avail); if (avail - written < 4) goto truncated; trunnel_set_uint32(ptr, trunnel_htonl(obj->fixedbytes1)); written += 4; ptr += 4; /* Encode u8 header_len */ trunnel_assert(written <= avail); if (avail - written < 1) goto truncated; trunnel_set_uint8(ptr, (obj->header_len)); written += 1; ptr += 1; /* Encode u8 skey_header[header_len] */ { size_t elt_len = TRUNNEL_DYNARRAY_LEN(&obj->skey_header); trunnel_assert(obj->header_len == elt_len); trunnel_assert(written <= avail); if (avail - written < elt_len) goto truncated; memcpy(ptr, obj->skey_header.elts_, elt_len); written += elt_len; ptr += elt_len; } /* Encode u8 iv[16] */ trunnel_assert(written <= avail); if (avail - written < 16) goto truncated; memcpy(ptr, obj->iv, 16); written += 16; ptr += 16; { /* Encode u8 data[] */ { size_t elt_len = TRUNNEL_DYNARRAY_LEN(&obj->data); trunnel_assert(written <= avail); if (avail - written < elt_len) goto truncated; memcpy(ptr, obj->data.elts_, elt_len); written += elt_len; ptr += elt_len; } trunnel_assert(written <= avail); if (avail - written < 32) goto truncated; avail = written + 32; enforce_avail = 1; } /* Encode u8 hmac[32] */ trunnel_assert(written <= avail); if (avail - written < 32) { if (avail_orig - written < 32) goto truncated; else goto check_failed; } memcpy(ptr, obj->hmac, 32); written += 32; ptr += 32; trunnel_assert(ptr == output + written); if (enforce_avail && avail != written) goto check_failed; #ifdef TRUNNEL_CHECK_ENCODED_LEN { trunnel_assert(encoded_len >= 0); trunnel_assert((size_t)encoded_len == written); } #endif return written; truncated: result = -2; goto fail; check_failed: (void)msg; result = -1; goto fail; fail: trunnel_assert(result < 0); return result; } /** As pwbox_encoded_parse(), but do not allocate the output object. */ static ssize_t pwbox_encoded_parse_into(pwbox_encoded_t *obj, const uint8_t *input, const size_t len_in) { const uint8_t *ptr = input; size_t remaining = len_in; ssize_t result = 0; (void)result; /* Parse u32 fixedbytes0 IN [PWBOX0_CONST0] */ CHECK_REMAINING(4, truncated); obj->fixedbytes0 = trunnel_ntohl(trunnel_get_uint32(ptr)); remaining -= 4; ptr += 4; if (! (obj->fixedbytes0 == PWBOX0_CONST0)) goto fail; /* Parse u32 fixedbytes1 IN [PWBOX0_CONST1] */ CHECK_REMAINING(4, truncated); obj->fixedbytes1 = trunnel_ntohl(trunnel_get_uint32(ptr)); remaining -= 4; ptr += 4; if (! (obj->fixedbytes1 == PWBOX0_CONST1)) goto fail; /* Parse u8 header_len */ CHECK_REMAINING(1, truncated); obj->header_len = (trunnel_get_uint8(ptr)); remaining -= 1; ptr += 1; /* Parse u8 skey_header[header_len] */ CHECK_REMAINING(obj->header_len, truncated); TRUNNEL_DYNARRAY_EXPAND(uint8_t, &obj->skey_header, obj->header_len, {}); obj->skey_header.n_ = obj->header_len; memcpy(obj->skey_header.elts_, ptr, obj->header_len); ptr += obj->header_len; remaining -= obj->header_len; /* Parse u8 iv[16] */ CHECK_REMAINING(16, truncated); memcpy(obj->iv, ptr, 16); remaining -= 16; ptr += 16; { size_t remaining_after; CHECK_REMAINING(32, truncated); remaining_after = 32; remaining = remaining - 32; /* Parse u8 data[] */ TRUNNEL_DYNARRAY_EXPAND(uint8_t, &obj->data, remaining, {}); obj->data.n_ = remaining; memcpy(obj->data.elts_, ptr, remaining); ptr += remaining; remaining -= remaining; if (remaining != 0) goto fail; remaining = remaining_after; } /* Parse u8 hmac[32] */ CHECK_REMAINING(32, truncated); memcpy(obj->hmac, ptr, 32); remaining -= 32; ptr += 32; trunnel_assert(ptr + remaining == input + len_in); return len_in - remaining; truncated: return -2; trunnel_alloc_failed: return -1; fail: result = -1; return result; } ssize_t pwbox_encoded_parse(pwbox_encoded_t **output, const uint8_t *input, const size_t len_in) { ssize_t result; *output = pwbox_encoded_new(); if (NULL == *output) return -1; result = pwbox_encoded_parse_into(*output, input, len_in); if (result < 0) { pwbox_encoded_free(*output); *output = NULL; } return result; } tor-0.2.7.6/src/trunnel/include.am0000644000175000017500000000204712631612325013635 00000000000000 noinst_LIBRARIES += \ src/trunnel/libor-trunnel.a if UNITTESTS_ENABLED noinst_LIBRARIES += \ src/trunnel/libor-trunnel-testing.a endif AM_CPPFLAGS += -I$(srcdir)/src/ext/trunnel -I$(srcdir)/src/trunnel TRUNNELINPUTS = \ src/trunnel/ed25519_cert.trunnel \ src/trunnel/link_handshake.trunnel \ src/trunnel/pwbox.trunnel TRUNNELSOURCES = \ src/ext/trunnel/trunnel.c \ src/trunnel/ed25519_cert.c \ src/trunnel/link_handshake.c \ src/trunnel/pwbox.c TRUNNELHEADERS = \ src/ext/trunnel/trunnel.h \ src/ext/trunnel/trunnel-impl.h \ src/trunnel/trunnel-local.h \ src/trunnel/ed25519_cert.h \ src/trunnel/link_handshake.h \ src/trunnel/pwbox.h src_trunnel_libor_trunnel_a_SOURCES = $(TRUNNELSOURCES) src_trunnel_libor_trunnel_a_CPPFLAGS = -DTRUNNEL_LOCAL_H $(AM_CPPFLAGS) src_trunnel_libor_trunnel_testing_a_SOURCES = $(TRUNNELSOURCES) src_trunnel_libor_trunnel_testing_a_CPPFLAGS = -DTRUNNEL_LOCAL_H $(AM_CPPFLAGS) $(TEST_CPPFLAGS) src_trunnel_libor_trunnel_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) noinst_HEADERS+= $(TRUNNELHEADERS) tor-0.2.7.6/src/trunnel/link_handshake.h0000644000175000017500000006765012621363246015026 00000000000000/* link_handshake.h -- generated by by Trunnel v1.4.3. * https://gitweb.torproject.org/trunnel.git * You probably shouldn't edit this file. */ #ifndef TRUNNEL_LINK_HANDSHAKE_H #define TRUNNEL_LINK_HANDSHAKE_H #include #include "trunnel.h" #define CERTTYPE_RSA1024_ID_LINK 1 #define CERTTYPE_RSA1024_ID_ID 2 #define CERTTYPE_RSA1024_ID_AUTH 3 #define CERTTYPE_ED_ID_SIGN 4 #define CERTTYPE_ED_SIGN_LINK 5 #define CERTTYPE_ED_SIGN_AUTH 6 #define CERTTYPE_RSA1024_ID_EDID 7 #if !defined(TRUNNEL_OPAQUE) && !defined(TRUNNEL_OPAQUE_AUTH_CHALLENGE_CELL) struct auth_challenge_cell_st { uint8_t challenge[32]; uint16_t n_methods; TRUNNEL_DYNARRAY_HEAD(, uint16_t) methods; uint8_t trunnel_error_code_; }; #endif typedef struct auth_challenge_cell_st auth_challenge_cell_t; #if !defined(TRUNNEL_OPAQUE) && !defined(TRUNNEL_OPAQUE_AUTH_CTX) struct auth_ctx_st { uint8_t is_ed; uint8_t trunnel_error_code_; }; #endif typedef struct auth_ctx_st auth_ctx_t; #if !defined(TRUNNEL_OPAQUE) && !defined(TRUNNEL_OPAQUE_CERTS_CELL_CERT) struct certs_cell_cert_st { uint8_t cert_type; uint16_t cert_len; TRUNNEL_DYNARRAY_HEAD(, uint8_t) body; uint8_t trunnel_error_code_; }; #endif typedef struct certs_cell_cert_st certs_cell_cert_t; #if !defined(TRUNNEL_OPAQUE) && !defined(TRUNNEL_OPAQUE_RSA_ED_CROSSCERT) struct rsa_ed_crosscert_st { uint8_t ed_key[32]; uint32_t expiration; const uint8_t *end_of_signed; uint8_t sig_len; TRUNNEL_DYNARRAY_HEAD(, uint8_t) sig; uint8_t trunnel_error_code_; }; #endif typedef struct rsa_ed_crosscert_st rsa_ed_crosscert_t; #if !defined(TRUNNEL_OPAQUE) && !defined(TRUNNEL_OPAQUE_AUTH1) struct auth1_st { uint8_t type[8]; uint8_t cid[32]; uint8_t sid[32]; uint8_t u1_cid_ed[32]; uint8_t u1_sid_ed[32]; uint8_t slog[32]; uint8_t clog[32]; uint8_t scert[32]; uint8_t tlssecrets[32]; const uint8_t *end_of_fixed_part; uint8_t rand[24]; const uint8_t *end_of_signed; TRUNNEL_DYNARRAY_HEAD(, uint8_t) sig; uint8_t trunnel_error_code_; }; #endif typedef struct auth1_st auth1_t; #if !defined(TRUNNEL_OPAQUE) && !defined(TRUNNEL_OPAQUE_CERTS_CELL) struct certs_cell_st { uint8_t n_certs; TRUNNEL_DYNARRAY_HEAD(, struct certs_cell_cert_st *) certs; uint8_t trunnel_error_code_; }; #endif typedef struct certs_cell_st certs_cell_t; /** Return a newly allocated auth_challenge_cell with all elements set * to zero. */ auth_challenge_cell_t *auth_challenge_cell_new(void); /** Release all storage held by the auth_challenge_cell in 'victim'. * (Do nothing if 'victim' is NULL.) */ void auth_challenge_cell_free(auth_challenge_cell_t *victim); /** Try to parse a auth_challenge_cell from the buffer in 'input', * using up to 'len_in' bytes from the input buffer. On success, * return the number of bytes consumed and set *output to the newly * allocated auth_challenge_cell_t. On failure, return -2 if the input * appears truncated, and -1 if the input is otherwise invalid. */ ssize_t auth_challenge_cell_parse(auth_challenge_cell_t **output, const uint8_t *input, const size_t len_in); /** Return the number of bytes we expect to need to encode the * auth_challenge_cell in 'obj'. On failure, return a negative value. * Note that this value may be an overestimate, and can even be an * underestimate for certain unencodeable objects. */ ssize_t auth_challenge_cell_encoded_len(const auth_challenge_cell_t *obj); /** Try to encode the auth_challenge_cell from 'input' into the buffer * at 'output', using up to 'avail' bytes of the output buffer. On * success, return the number of bytes used. On failure, return -2 if * the buffer was not long enough, and -1 if the input was invalid. */ ssize_t auth_challenge_cell_encode(uint8_t *output, size_t avail, const auth_challenge_cell_t *input); /** Check whether the internal state of the auth_challenge_cell in * 'obj' is consistent. Return NULL if it is, and a short message if * it is not. */ const char *auth_challenge_cell_check(const auth_challenge_cell_t *obj); /** Clear any errors that were set on the object 'obj' by its setter * functions. Return true iff errors were cleared. */ int auth_challenge_cell_clear_errors(auth_challenge_cell_t *obj); /** Return the (constant) length of the array holding the challenge * field of the auth_challenge_cell_t in 'inp'. */ size_t auth_challenge_cell_getlen_challenge(const auth_challenge_cell_t *inp); /** Return the element at position 'idx' of the fixed array field * challenge of the auth_challenge_cell_t in 'inp'. */ uint8_t auth_challenge_cell_get_challenge(const auth_challenge_cell_t *inp, size_t idx); /** Change the element at position 'idx' of the fixed array field * challenge of the auth_challenge_cell_t in 'inp', so that it will * hold the value 'elt'. */ int auth_challenge_cell_set_challenge(auth_challenge_cell_t *inp, size_t idx, uint8_t elt); /** Return a pointer to the 32-element array field challenge of 'inp'. */ uint8_t * auth_challenge_cell_getarray_challenge(auth_challenge_cell_t *inp); /** Return the value of the n_methods field of the * auth_challenge_cell_t in 'inp' */ uint16_t auth_challenge_cell_get_n_methods(auth_challenge_cell_t *inp); /** Set the value of the n_methods field of the auth_challenge_cell_t * in 'inp' to 'val'. Return 0 on success; return -1 and set the error * code on 'inp' on failure. */ int auth_challenge_cell_set_n_methods(auth_challenge_cell_t *inp, uint16_t val); /** Return the length of the dynamic array holding the methods field * of the auth_challenge_cell_t in 'inp'. */ size_t auth_challenge_cell_getlen_methods(const auth_challenge_cell_t *inp); /** Return the element at position 'idx' of the dynamic array field * methods of the auth_challenge_cell_t in 'inp'. */ uint16_t auth_challenge_cell_get_methods(auth_challenge_cell_t *inp, size_t idx); /** Change the element at position 'idx' of the dynamic array field * methods of the auth_challenge_cell_t in 'inp', so that it will hold * the value 'elt'. */ int auth_challenge_cell_set_methods(auth_challenge_cell_t *inp, size_t idx, uint16_t elt); /** Append a new element 'elt' to the dynamic array field methods of * the auth_challenge_cell_t in 'inp'. */ int auth_challenge_cell_add_methods(auth_challenge_cell_t *inp, uint16_t elt); /** Return a pointer to the variable-length array field methods of * 'inp'. */ uint16_t * auth_challenge_cell_getarray_methods(auth_challenge_cell_t *inp); /** Change the length of the variable-length array field methods of * 'inp' to 'newlen'.Fill extra elements with 0. Return 0 on success; * return -1 and set the error code on 'inp' on failure. */ int auth_challenge_cell_setlen_methods(auth_challenge_cell_t *inp, size_t newlen); /** Return a newly allocated auth_ctx with all elements set to zero. */ auth_ctx_t *auth_ctx_new(void); /** Release all storage held by the auth_ctx in 'victim'. (Do nothing * if 'victim' is NULL.) */ void auth_ctx_free(auth_ctx_t *victim); /** Return the value of the is_ed field of the auth_ctx_t in 'inp' */ uint8_t auth_ctx_get_is_ed(auth_ctx_t *inp); /** Set the value of the is_ed field of the auth_ctx_t in 'inp' to * 'val'. Return 0 on success; return -1 and set the error code on * 'inp' on failure. */ int auth_ctx_set_is_ed(auth_ctx_t *inp, uint8_t val); /** Return a newly allocated certs_cell_cert with all elements set to * zero. */ certs_cell_cert_t *certs_cell_cert_new(void); /** Release all storage held by the certs_cell_cert in 'victim'. (Do * nothing if 'victim' is NULL.) */ void certs_cell_cert_free(certs_cell_cert_t *victim); /** Try to parse a certs_cell_cert from the buffer in 'input', using * up to 'len_in' bytes from the input buffer. On success, return the * number of bytes consumed and set *output to the newly allocated * certs_cell_cert_t. On failure, return -2 if the input appears * truncated, and -1 if the input is otherwise invalid. */ ssize_t certs_cell_cert_parse(certs_cell_cert_t **output, const uint8_t *input, const size_t len_in); /** Return the number of bytes we expect to need to encode the * certs_cell_cert in 'obj'. On failure, return a negative value. Note * that this value may be an overestimate, and can even be an * underestimate for certain unencodeable objects. */ ssize_t certs_cell_cert_encoded_len(const certs_cell_cert_t *obj); /** Try to encode the certs_cell_cert from 'input' into the buffer at * 'output', using up to 'avail' bytes of the output buffer. On * success, return the number of bytes used. On failure, return -2 if * the buffer was not long enough, and -1 if the input was invalid. */ ssize_t certs_cell_cert_encode(uint8_t *output, size_t avail, const certs_cell_cert_t *input); /** Check whether the internal state of the certs_cell_cert in 'obj' * is consistent. Return NULL if it is, and a short message if it is * not. */ const char *certs_cell_cert_check(const certs_cell_cert_t *obj); /** Clear any errors that were set on the object 'obj' by its setter * functions. Return true iff errors were cleared. */ int certs_cell_cert_clear_errors(certs_cell_cert_t *obj); /** Return the value of the cert_type field of the certs_cell_cert_t * in 'inp' */ uint8_t certs_cell_cert_get_cert_type(certs_cell_cert_t *inp); /** Set the value of the cert_type field of the certs_cell_cert_t in * 'inp' to 'val'. Return 0 on success; return -1 and set the error * code on 'inp' on failure. */ int certs_cell_cert_set_cert_type(certs_cell_cert_t *inp, uint8_t val); /** Return the value of the cert_len field of the certs_cell_cert_t in * 'inp' */ uint16_t certs_cell_cert_get_cert_len(certs_cell_cert_t *inp); /** Set the value of the cert_len field of the certs_cell_cert_t in * 'inp' to 'val'. Return 0 on success; return -1 and set the error * code on 'inp' on failure. */ int certs_cell_cert_set_cert_len(certs_cell_cert_t *inp, uint16_t val); /** Return the length of the dynamic array holding the body field of * the certs_cell_cert_t in 'inp'. */ size_t certs_cell_cert_getlen_body(const certs_cell_cert_t *inp); /** Return the element at position 'idx' of the dynamic array field * body of the certs_cell_cert_t in 'inp'. */ uint8_t certs_cell_cert_get_body(certs_cell_cert_t *inp, size_t idx); /** Change the element at position 'idx' of the dynamic array field * body of the certs_cell_cert_t in 'inp', so that it will hold the * value 'elt'. */ int certs_cell_cert_set_body(certs_cell_cert_t *inp, size_t idx, uint8_t elt); /** Append a new element 'elt' to the dynamic array field body of the * certs_cell_cert_t in 'inp'. */ int certs_cell_cert_add_body(certs_cell_cert_t *inp, uint8_t elt); /** Return a pointer to the variable-length array field body of 'inp'. */ uint8_t * certs_cell_cert_getarray_body(certs_cell_cert_t *inp); /** Change the length of the variable-length array field body of 'inp' * to 'newlen'.Fill extra elements with 0. Return 0 on success; return * -1 and set the error code on 'inp' on failure. */ int certs_cell_cert_setlen_body(certs_cell_cert_t *inp, size_t newlen); /** Return a newly allocated rsa_ed_crosscert with all elements set to * zero. */ rsa_ed_crosscert_t *rsa_ed_crosscert_new(void); /** Release all storage held by the rsa_ed_crosscert in 'victim'. (Do * nothing if 'victim' is NULL.) */ void rsa_ed_crosscert_free(rsa_ed_crosscert_t *victim); /** Try to parse a rsa_ed_crosscert from the buffer in 'input', using * up to 'len_in' bytes from the input buffer. On success, return the * number of bytes consumed and set *output to the newly allocated * rsa_ed_crosscert_t. On failure, return -2 if the input appears * truncated, and -1 if the input is otherwise invalid. */ ssize_t rsa_ed_crosscert_parse(rsa_ed_crosscert_t **output, const uint8_t *input, const size_t len_in); /** Return the number of bytes we expect to need to encode the * rsa_ed_crosscert in 'obj'. On failure, return a negative value. * Note that this value may be an overestimate, and can even be an * underestimate for certain unencodeable objects. */ ssize_t rsa_ed_crosscert_encoded_len(const rsa_ed_crosscert_t *obj); /** Try to encode the rsa_ed_crosscert from 'input' into the buffer at * 'output', using up to 'avail' bytes of the output buffer. On * success, return the number of bytes used. On failure, return -2 if * the buffer was not long enough, and -1 if the input was invalid. */ ssize_t rsa_ed_crosscert_encode(uint8_t *output, size_t avail, const rsa_ed_crosscert_t *input); /** Check whether the internal state of the rsa_ed_crosscert in 'obj' * is consistent. Return NULL if it is, and a short message if it is * not. */ const char *rsa_ed_crosscert_check(const rsa_ed_crosscert_t *obj); /** Clear any errors that were set on the object 'obj' by its setter * functions. Return true iff errors were cleared. */ int rsa_ed_crosscert_clear_errors(rsa_ed_crosscert_t *obj); /** Return the (constant) length of the array holding the ed_key field * of the rsa_ed_crosscert_t in 'inp'. */ size_t rsa_ed_crosscert_getlen_ed_key(const rsa_ed_crosscert_t *inp); /** Return the element at position 'idx' of the fixed array field * ed_key of the rsa_ed_crosscert_t in 'inp'. */ uint8_t rsa_ed_crosscert_get_ed_key(const rsa_ed_crosscert_t *inp, size_t idx); /** Change the element at position 'idx' of the fixed array field * ed_key of the rsa_ed_crosscert_t in 'inp', so that it will hold the * value 'elt'. */ int rsa_ed_crosscert_set_ed_key(rsa_ed_crosscert_t *inp, size_t idx, uint8_t elt); /** Return a pointer to the 32-element array field ed_key of 'inp'. */ uint8_t * rsa_ed_crosscert_getarray_ed_key(rsa_ed_crosscert_t *inp); /** Return the value of the expiration field of the rsa_ed_crosscert_t * in 'inp' */ uint32_t rsa_ed_crosscert_get_expiration(rsa_ed_crosscert_t *inp); /** Set the value of the expiration field of the rsa_ed_crosscert_t in * 'inp' to 'val'. Return 0 on success; return -1 and set the error * code on 'inp' on failure. */ int rsa_ed_crosscert_set_expiration(rsa_ed_crosscert_t *inp, uint32_t val); /** Return the position for end_of_signed when we parsed this object */ const uint8_t * rsa_ed_crosscert_get_end_of_signed(const rsa_ed_crosscert_t *inp); /** Return the value of the sig_len field of the rsa_ed_crosscert_t in * 'inp' */ uint8_t rsa_ed_crosscert_get_sig_len(rsa_ed_crosscert_t *inp); /** Set the value of the sig_len field of the rsa_ed_crosscert_t in * 'inp' to 'val'. Return 0 on success; return -1 and set the error * code on 'inp' on failure. */ int rsa_ed_crosscert_set_sig_len(rsa_ed_crosscert_t *inp, uint8_t val); /** Return the length of the dynamic array holding the sig field of * the rsa_ed_crosscert_t in 'inp'. */ size_t rsa_ed_crosscert_getlen_sig(const rsa_ed_crosscert_t *inp); /** Return the element at position 'idx' of the dynamic array field * sig of the rsa_ed_crosscert_t in 'inp'. */ uint8_t rsa_ed_crosscert_get_sig(rsa_ed_crosscert_t *inp, size_t idx); /** Change the element at position 'idx' of the dynamic array field * sig of the rsa_ed_crosscert_t in 'inp', so that it will hold the * value 'elt'. */ int rsa_ed_crosscert_set_sig(rsa_ed_crosscert_t *inp, size_t idx, uint8_t elt); /** Append a new element 'elt' to the dynamic array field sig of the * rsa_ed_crosscert_t in 'inp'. */ int rsa_ed_crosscert_add_sig(rsa_ed_crosscert_t *inp, uint8_t elt); /** Return a pointer to the variable-length array field sig of 'inp'. */ uint8_t * rsa_ed_crosscert_getarray_sig(rsa_ed_crosscert_t *inp); /** Change the length of the variable-length array field sig of 'inp' * to 'newlen'.Fill extra elements with 0. Return 0 on success; return * -1 and set the error code on 'inp' on failure. */ int rsa_ed_crosscert_setlen_sig(rsa_ed_crosscert_t *inp, size_t newlen); /** Return a newly allocated auth1 with all elements set to zero. */ auth1_t *auth1_new(void); /** Release all storage held by the auth1 in 'victim'. (Do nothing if * 'victim' is NULL.) */ void auth1_free(auth1_t *victim); /** Try to parse a auth1 from the buffer in 'input', using up to * 'len_in' bytes from the input buffer. On success, return the number * of bytes consumed and set *output to the newly allocated auth1_t. * On failure, return -2 if the input appears truncated, and -1 if the * input is otherwise invalid. */ ssize_t auth1_parse(auth1_t **output, const uint8_t *input, const size_t len_in, const auth_ctx_t *auth_ctx_ctx); /** Return the number of bytes we expect to need to encode the auth1 * in 'obj'. On failure, return a negative value. Note that this value * may be an overestimate, and can even be an underestimate for * certain unencodeable objects. */ ssize_t auth1_encoded_len(const auth1_t *obj, const auth_ctx_t *auth_ctx_ctx); /** Try to encode the auth1 from 'input' into the buffer at 'output', * using up to 'avail' bytes of the output buffer. On success, return * the number of bytes used. On failure, return -2 if the buffer was * not long enough, and -1 if the input was invalid. */ ssize_t auth1_encode(uint8_t *output, size_t avail, const auth1_t *input, const auth_ctx_t *auth_ctx_ctx); /** Check whether the internal state of the auth1 in 'obj' is * consistent. Return NULL if it is, and a short message if it is not. */ const char *auth1_check(const auth1_t *obj, const auth_ctx_t *auth_ctx_ctx); /** Clear any errors that were set on the object 'obj' by its setter * functions. Return true iff errors were cleared. */ int auth1_clear_errors(auth1_t *obj); /** Return the (constant) length of the array holding the type field * of the auth1_t in 'inp'. */ size_t auth1_getlen_type(const auth1_t *inp); /** Return the element at position 'idx' of the fixed array field type * of the auth1_t in 'inp'. */ uint8_t auth1_get_type(const auth1_t *inp, size_t idx); /** Change the element at position 'idx' of the fixed array field type * of the auth1_t in 'inp', so that it will hold the value 'elt'. */ int auth1_set_type(auth1_t *inp, size_t idx, uint8_t elt); /** Return a pointer to the 8-element array field type of 'inp'. */ uint8_t * auth1_getarray_type(auth1_t *inp); /** Return the (constant) length of the array holding the cid field of * the auth1_t in 'inp'. */ size_t auth1_getlen_cid(const auth1_t *inp); /** Return the element at position 'idx' of the fixed array field cid * of the auth1_t in 'inp'. */ uint8_t auth1_get_cid(const auth1_t *inp, size_t idx); /** Change the element at position 'idx' of the fixed array field cid * of the auth1_t in 'inp', so that it will hold the value 'elt'. */ int auth1_set_cid(auth1_t *inp, size_t idx, uint8_t elt); /** Return a pointer to the 32-element array field cid of 'inp'. */ uint8_t * auth1_getarray_cid(auth1_t *inp); /** Return the (constant) length of the array holding the sid field of * the auth1_t in 'inp'. */ size_t auth1_getlen_sid(const auth1_t *inp); /** Return the element at position 'idx' of the fixed array field sid * of the auth1_t in 'inp'. */ uint8_t auth1_get_sid(const auth1_t *inp, size_t idx); /** Change the element at position 'idx' of the fixed array field sid * of the auth1_t in 'inp', so that it will hold the value 'elt'. */ int auth1_set_sid(auth1_t *inp, size_t idx, uint8_t elt); /** Return a pointer to the 32-element array field sid of 'inp'. */ uint8_t * auth1_getarray_sid(auth1_t *inp); /** Return the (constant) length of the array holding the u1_cid_ed * field of the auth1_t in 'inp'. */ size_t auth1_getlen_u1_cid_ed(const auth1_t *inp); /** Return the element at position 'idx' of the fixed array field * u1_cid_ed of the auth1_t in 'inp'. */ uint8_t auth1_get_u1_cid_ed(const auth1_t *inp, size_t idx); /** Change the element at position 'idx' of the fixed array field * u1_cid_ed of the auth1_t in 'inp', so that it will hold the value * 'elt'. */ int auth1_set_u1_cid_ed(auth1_t *inp, size_t idx, uint8_t elt); /** Return a pointer to the 32-element array field u1_cid_ed of 'inp'. */ uint8_t * auth1_getarray_u1_cid_ed(auth1_t *inp); /** Return the (constant) length of the array holding the u1_sid_ed * field of the auth1_t in 'inp'. */ size_t auth1_getlen_u1_sid_ed(const auth1_t *inp); /** Return the element at position 'idx' of the fixed array field * u1_sid_ed of the auth1_t in 'inp'. */ uint8_t auth1_get_u1_sid_ed(const auth1_t *inp, size_t idx); /** Change the element at position 'idx' of the fixed array field * u1_sid_ed of the auth1_t in 'inp', so that it will hold the value * 'elt'. */ int auth1_set_u1_sid_ed(auth1_t *inp, size_t idx, uint8_t elt); /** Return a pointer to the 32-element array field u1_sid_ed of 'inp'. */ uint8_t * auth1_getarray_u1_sid_ed(auth1_t *inp); /** Return the (constant) length of the array holding the slog field * of the auth1_t in 'inp'. */ size_t auth1_getlen_slog(const auth1_t *inp); /** Return the element at position 'idx' of the fixed array field slog * of the auth1_t in 'inp'. */ uint8_t auth1_get_slog(const auth1_t *inp, size_t idx); /** Change the element at position 'idx' of the fixed array field slog * of the auth1_t in 'inp', so that it will hold the value 'elt'. */ int auth1_set_slog(auth1_t *inp, size_t idx, uint8_t elt); /** Return a pointer to the 32-element array field slog of 'inp'. */ uint8_t * auth1_getarray_slog(auth1_t *inp); /** Return the (constant) length of the array holding the clog field * of the auth1_t in 'inp'. */ size_t auth1_getlen_clog(const auth1_t *inp); /** Return the element at position 'idx' of the fixed array field clog * of the auth1_t in 'inp'. */ uint8_t auth1_get_clog(const auth1_t *inp, size_t idx); /** Change the element at position 'idx' of the fixed array field clog * of the auth1_t in 'inp', so that it will hold the value 'elt'. */ int auth1_set_clog(auth1_t *inp, size_t idx, uint8_t elt); /** Return a pointer to the 32-element array field clog of 'inp'. */ uint8_t * auth1_getarray_clog(auth1_t *inp); /** Return the (constant) length of the array holding the scert field * of the auth1_t in 'inp'. */ size_t auth1_getlen_scert(const auth1_t *inp); /** Return the element at position 'idx' of the fixed array field * scert of the auth1_t in 'inp'. */ uint8_t auth1_get_scert(const auth1_t *inp, size_t idx); /** Change the element at position 'idx' of the fixed array field * scert of the auth1_t in 'inp', so that it will hold the value * 'elt'. */ int auth1_set_scert(auth1_t *inp, size_t idx, uint8_t elt); /** Return a pointer to the 32-element array field scert of 'inp'. */ uint8_t * auth1_getarray_scert(auth1_t *inp); /** Return the (constant) length of the array holding the tlssecrets * field of the auth1_t in 'inp'. */ size_t auth1_getlen_tlssecrets(const auth1_t *inp); /** Return the element at position 'idx' of the fixed array field * tlssecrets of the auth1_t in 'inp'. */ uint8_t auth1_get_tlssecrets(const auth1_t *inp, size_t idx); /** Change the element at position 'idx' of the fixed array field * tlssecrets of the auth1_t in 'inp', so that it will hold the value * 'elt'. */ int auth1_set_tlssecrets(auth1_t *inp, size_t idx, uint8_t elt); /** Return a pointer to the 32-element array field tlssecrets of * 'inp'. */ uint8_t * auth1_getarray_tlssecrets(auth1_t *inp); /** Return the position for end_of_fixed_part when we parsed this * object */ const uint8_t * auth1_get_end_of_fixed_part(const auth1_t *inp); /** Return the (constant) length of the array holding the rand field * of the auth1_t in 'inp'. */ size_t auth1_getlen_rand(const auth1_t *inp); /** Return the element at position 'idx' of the fixed array field rand * of the auth1_t in 'inp'. */ uint8_t auth1_get_rand(const auth1_t *inp, size_t idx); /** Change the element at position 'idx' of the fixed array field rand * of the auth1_t in 'inp', so that it will hold the value 'elt'. */ int auth1_set_rand(auth1_t *inp, size_t idx, uint8_t elt); /** Return a pointer to the 24-element array field rand of 'inp'. */ uint8_t * auth1_getarray_rand(auth1_t *inp); /** Return the position for end_of_signed when we parsed this object */ const uint8_t * auth1_get_end_of_signed(const auth1_t *inp); /** Return the length of the dynamic array holding the sig field of * the auth1_t in 'inp'. */ size_t auth1_getlen_sig(const auth1_t *inp); /** Return the element at position 'idx' of the dynamic array field * sig of the auth1_t in 'inp'. */ uint8_t auth1_get_sig(auth1_t *inp, size_t idx); /** Change the element at position 'idx' of the dynamic array field * sig of the auth1_t in 'inp', so that it will hold the value 'elt'. */ int auth1_set_sig(auth1_t *inp, size_t idx, uint8_t elt); /** Append a new element 'elt' to the dynamic array field sig of the * auth1_t in 'inp'. */ int auth1_add_sig(auth1_t *inp, uint8_t elt); /** Return a pointer to the variable-length array field sig of 'inp'. */ uint8_t * auth1_getarray_sig(auth1_t *inp); /** Change the length of the variable-length array field sig of 'inp' * to 'newlen'.Fill extra elements with 0. Return 0 on success; return * -1 and set the error code on 'inp' on failure. */ int auth1_setlen_sig(auth1_t *inp, size_t newlen); /** Return a newly allocated certs_cell with all elements set to zero. */ certs_cell_t *certs_cell_new(void); /** Release all storage held by the certs_cell in 'victim'. (Do * nothing if 'victim' is NULL.) */ void certs_cell_free(certs_cell_t *victim); /** Try to parse a certs_cell from the buffer in 'input', using up to * 'len_in' bytes from the input buffer. On success, return the number * of bytes consumed and set *output to the newly allocated * certs_cell_t. On failure, return -2 if the input appears truncated, * and -1 if the input is otherwise invalid. */ ssize_t certs_cell_parse(certs_cell_t **output, const uint8_t *input, const size_t len_in); /** Return the number of bytes we expect to need to encode the * certs_cell in 'obj'. On failure, return a negative value. Note that * this value may be an overestimate, and can even be an underestimate * for certain unencodeable objects. */ ssize_t certs_cell_encoded_len(const certs_cell_t *obj); /** Try to encode the certs_cell from 'input' into the buffer at * 'output', using up to 'avail' bytes of the output buffer. On * success, return the number of bytes used. On failure, return -2 if * the buffer was not long enough, and -1 if the input was invalid. */ ssize_t certs_cell_encode(uint8_t *output, size_t avail, const certs_cell_t *input); /** Check whether the internal state of the certs_cell in 'obj' is * consistent. Return NULL if it is, and a short message if it is not. */ const char *certs_cell_check(const certs_cell_t *obj); /** Clear any errors that were set on the object 'obj' by its setter * functions. Return true iff errors were cleared. */ int certs_cell_clear_errors(certs_cell_t *obj); /** Return the value of the n_certs field of the certs_cell_t in 'inp' */ uint8_t certs_cell_get_n_certs(certs_cell_t *inp); /** Set the value of the n_certs field of the certs_cell_t in 'inp' to * 'val'. Return 0 on success; return -1 and set the error code on * 'inp' on failure. */ int certs_cell_set_n_certs(certs_cell_t *inp, uint8_t val); /** Return the length of the dynamic array holding the certs field of * the certs_cell_t in 'inp'. */ size_t certs_cell_getlen_certs(const certs_cell_t *inp); /** Return the element at position 'idx' of the dynamic array field * certs of the certs_cell_t in 'inp'. */ struct certs_cell_cert_st * certs_cell_get_certs(certs_cell_t *inp, size_t idx); /** Change the element at position 'idx' of the dynamic array field * certs of the certs_cell_t in 'inp', so that it will hold the value * 'elt'. Free the previous value, if any. */ int certs_cell_set_certs(certs_cell_t *inp, size_t idx, struct certs_cell_cert_st * elt); /** As certs_cell_set_certs, but does not free the previous value. */ int certs_cell_set0_certs(certs_cell_t *inp, size_t idx, struct certs_cell_cert_st * elt); /** Append a new element 'elt' to the dynamic array field certs of the * certs_cell_t in 'inp'. */ int certs_cell_add_certs(certs_cell_t *inp, struct certs_cell_cert_st * elt); /** Return a pointer to the variable-length array field certs of * 'inp'. */ struct certs_cell_cert_st * * certs_cell_getarray_certs(certs_cell_t *inp); /** Change the length of the variable-length array field certs of * 'inp' to 'newlen'.Fill extra elements with NULL; free removed * elements. Return 0 on success; return -1 and set the error code on * 'inp' on failure. */ int certs_cell_setlen_certs(certs_cell_t *inp, size_t newlen); #endif tor-0.2.7.6/src/trunnel/pwbox.h0000644000175000017500000001633312621363246013212 00000000000000/* pwbox.h -- generated by by Trunnel v1.4.3. * https://gitweb.torproject.org/trunnel.git * You probably shouldn't edit this file. */ #ifndef TRUNNEL_PWBOX_H #define TRUNNEL_PWBOX_H #include #include "trunnel.h" #define PWBOX0_CONST0 1414484546 #define PWBOX0_CONST1 1331179568 #if !defined(TRUNNEL_OPAQUE) && !defined(TRUNNEL_OPAQUE_PWBOX_ENCODED) struct pwbox_encoded_st { uint32_t fixedbytes0; uint32_t fixedbytes1; uint8_t header_len; TRUNNEL_DYNARRAY_HEAD(, uint8_t) skey_header; uint8_t iv[16]; TRUNNEL_DYNARRAY_HEAD(, uint8_t) data; uint8_t hmac[32]; uint8_t trunnel_error_code_; }; #endif typedef struct pwbox_encoded_st pwbox_encoded_t; /** Return a newly allocated pwbox_encoded with all elements set to * zero. */ pwbox_encoded_t *pwbox_encoded_new(void); /** Release all storage held by the pwbox_encoded in 'victim'. (Do * nothing if 'victim' is NULL.) */ void pwbox_encoded_free(pwbox_encoded_t *victim); /** Try to parse a pwbox_encoded from the buffer in 'input', using up * to 'len_in' bytes from the input buffer. On success, return the * number of bytes consumed and set *output to the newly allocated * pwbox_encoded_t. On failure, return -2 if the input appears * truncated, and -1 if the input is otherwise invalid. */ ssize_t pwbox_encoded_parse(pwbox_encoded_t **output, const uint8_t *input, const size_t len_in); /** Return the number of bytes we expect to need to encode the * pwbox_encoded in 'obj'. On failure, return a negative value. Note * that this value may be an overestimate, and can even be an * underestimate for certain unencodeable objects. */ ssize_t pwbox_encoded_encoded_len(const pwbox_encoded_t *obj); /** Try to encode the pwbox_encoded from 'input' into the buffer at * 'output', using up to 'avail' bytes of the output buffer. On * success, return the number of bytes used. On failure, return -2 if * the buffer was not long enough, and -1 if the input was invalid. */ ssize_t pwbox_encoded_encode(uint8_t *output, size_t avail, const pwbox_encoded_t *input); /** Check whether the internal state of the pwbox_encoded in 'obj' is * consistent. Return NULL if it is, and a short message if it is not. */ const char *pwbox_encoded_check(const pwbox_encoded_t *obj); /** Clear any errors that were set on the object 'obj' by its setter * functions. Return true iff errors were cleared. */ int pwbox_encoded_clear_errors(pwbox_encoded_t *obj); /** Return the value of the fixedbytes0 field of the pwbox_encoded_t * in 'inp' */ uint32_t pwbox_encoded_get_fixedbytes0(pwbox_encoded_t *inp); /** Set the value of the fixedbytes0 field of the pwbox_encoded_t in * 'inp' to 'val'. Return 0 on success; return -1 and set the error * code on 'inp' on failure. */ int pwbox_encoded_set_fixedbytes0(pwbox_encoded_t *inp, uint32_t val); /** Return the value of the fixedbytes1 field of the pwbox_encoded_t * in 'inp' */ uint32_t pwbox_encoded_get_fixedbytes1(pwbox_encoded_t *inp); /** Set the value of the fixedbytes1 field of the pwbox_encoded_t in * 'inp' to 'val'. Return 0 on success; return -1 and set the error * code on 'inp' on failure. */ int pwbox_encoded_set_fixedbytes1(pwbox_encoded_t *inp, uint32_t val); /** Return the value of the header_len field of the pwbox_encoded_t in * 'inp' */ uint8_t pwbox_encoded_get_header_len(pwbox_encoded_t *inp); /** Set the value of the header_len field of the pwbox_encoded_t in * 'inp' to 'val'. Return 0 on success; return -1 and set the error * code on 'inp' on failure. */ int pwbox_encoded_set_header_len(pwbox_encoded_t *inp, uint8_t val); /** Return the length of the dynamic array holding the skey_header * field of the pwbox_encoded_t in 'inp'. */ size_t pwbox_encoded_getlen_skey_header(const pwbox_encoded_t *inp); /** Return the element at position 'idx' of the dynamic array field * skey_header of the pwbox_encoded_t in 'inp'. */ uint8_t pwbox_encoded_get_skey_header(pwbox_encoded_t *inp, size_t idx); /** Change the element at position 'idx' of the dynamic array field * skey_header of the pwbox_encoded_t in 'inp', so that it will hold * the value 'elt'. */ int pwbox_encoded_set_skey_header(pwbox_encoded_t *inp, size_t idx, uint8_t elt); /** Append a new element 'elt' to the dynamic array field skey_header * of the pwbox_encoded_t in 'inp'. */ int pwbox_encoded_add_skey_header(pwbox_encoded_t *inp, uint8_t elt); /** Return a pointer to the variable-length array field skey_header of * 'inp'. */ uint8_t * pwbox_encoded_getarray_skey_header(pwbox_encoded_t *inp); /** Change the length of the variable-length array field skey_header * of 'inp' to 'newlen'.Fill extra elements with 0. Return 0 on * success; return -1 and set the error code on 'inp' on failure. */ int pwbox_encoded_setlen_skey_header(pwbox_encoded_t *inp, size_t newlen); /** Return the (constant) length of the array holding the iv field of * the pwbox_encoded_t in 'inp'. */ size_t pwbox_encoded_getlen_iv(const pwbox_encoded_t *inp); /** Return the element at position 'idx' of the fixed array field iv * of the pwbox_encoded_t in 'inp'. */ uint8_t pwbox_encoded_get_iv(const pwbox_encoded_t *inp, size_t idx); /** Change the element at position 'idx' of the fixed array field iv * of the pwbox_encoded_t in 'inp', so that it will hold the value * 'elt'. */ int pwbox_encoded_set_iv(pwbox_encoded_t *inp, size_t idx, uint8_t elt); /** Return a pointer to the 16-element array field iv of 'inp'. */ uint8_t * pwbox_encoded_getarray_iv(pwbox_encoded_t *inp); /** Return the length of the dynamic array holding the data field of * the pwbox_encoded_t in 'inp'. */ size_t pwbox_encoded_getlen_data(const pwbox_encoded_t *inp); /** Return the element at position 'idx' of the dynamic array field * data of the pwbox_encoded_t in 'inp'. */ uint8_t pwbox_encoded_get_data(pwbox_encoded_t *inp, size_t idx); /** Change the element at position 'idx' of the dynamic array field * data of the pwbox_encoded_t in 'inp', so that it will hold the * value 'elt'. */ int pwbox_encoded_set_data(pwbox_encoded_t *inp, size_t idx, uint8_t elt); /** Append a new element 'elt' to the dynamic array field data of the * pwbox_encoded_t in 'inp'. */ int pwbox_encoded_add_data(pwbox_encoded_t *inp, uint8_t elt); /** Return a pointer to the variable-length array field data of 'inp'. */ uint8_t * pwbox_encoded_getarray_data(pwbox_encoded_t *inp); /** Change the length of the variable-length array field data of 'inp' * to 'newlen'.Fill extra elements with 0. Return 0 on success; return * -1 and set the error code on 'inp' on failure. */ int pwbox_encoded_setlen_data(pwbox_encoded_t *inp, size_t newlen); /** Return the (constant) length of the array holding the hmac field * of the pwbox_encoded_t in 'inp'. */ size_t pwbox_encoded_getlen_hmac(const pwbox_encoded_t *inp); /** Return the element at position 'idx' of the fixed array field hmac * of the pwbox_encoded_t in 'inp'. */ uint8_t pwbox_encoded_get_hmac(const pwbox_encoded_t *inp, size_t idx); /** Change the element at position 'idx' of the fixed array field hmac * of the pwbox_encoded_t in 'inp', so that it will hold the value * 'elt'. */ int pwbox_encoded_set_hmac(pwbox_encoded_t *inp, size_t idx, uint8_t elt); /** Return a pointer to the 32-element array field hmac of 'inp'. */ uint8_t * pwbox_encoded_getarray_hmac(pwbox_encoded_t *inp); #endif tor-0.2.7.6/src/trunnel/ed25519_cert.h0000644000175000017500000003165612621363246014073 00000000000000/* ed25519_cert.h -- generated by by Trunnel v1.4.3. * https://gitweb.torproject.org/trunnel.git * You probably shouldn't edit this file. */ #ifndef TRUNNEL_ED25519_CERT_H #define TRUNNEL_ED25519_CERT_H #include #include "trunnel.h" #define CERTEXT_SIGNED_WITH_KEY 4 #define CERTEXT_FLAG_AFFECTS_VALIDATION 1 #if !defined(TRUNNEL_OPAQUE) && !defined(TRUNNEL_OPAQUE_ED25519_CERT_EXTENSION) struct ed25519_cert_extension_st { uint16_t ext_length; uint8_t ext_type; uint8_t ext_flags; uint8_t un_signing_key[32]; TRUNNEL_DYNARRAY_HEAD(, uint8_t) un_unparsed; uint8_t trunnel_error_code_; }; #endif typedef struct ed25519_cert_extension_st ed25519_cert_extension_t; #if !defined(TRUNNEL_OPAQUE) && !defined(TRUNNEL_OPAQUE_ED25519_CERT) struct ed25519_cert_st { uint8_t version; uint8_t cert_type; uint32_t exp_field; uint8_t cert_key_type; uint8_t certified_key[32]; uint8_t n_extensions; TRUNNEL_DYNARRAY_HEAD(, struct ed25519_cert_extension_st *) ext; uint8_t signature[64]; uint8_t trunnel_error_code_; }; #endif typedef struct ed25519_cert_st ed25519_cert_t; /** Return a newly allocated ed25519_cert_extension with all elements * set to zero. */ ed25519_cert_extension_t *ed25519_cert_extension_new(void); /** Release all storage held by the ed25519_cert_extension in * 'victim'. (Do nothing if 'victim' is NULL.) */ void ed25519_cert_extension_free(ed25519_cert_extension_t *victim); /** Try to parse a ed25519_cert_extension from the buffer in 'input', * using up to 'len_in' bytes from the input buffer. On success, * return the number of bytes consumed and set *output to the newly * allocated ed25519_cert_extension_t. On failure, return -2 if the * input appears truncated, and -1 if the input is otherwise invalid. */ ssize_t ed25519_cert_extension_parse(ed25519_cert_extension_t **output, const uint8_t *input, const size_t len_in); /** Return the number of bytes we expect to need to encode the * ed25519_cert_extension in 'obj'. On failure, return a negative * value. Note that this value may be an overestimate, and can even be * an underestimate for certain unencodeable objects. */ ssize_t ed25519_cert_extension_encoded_len(const ed25519_cert_extension_t *obj); /** Try to encode the ed25519_cert_extension from 'input' into the * buffer at 'output', using up to 'avail' bytes of the output buffer. * On success, return the number of bytes used. On failure, return -2 * if the buffer was not long enough, and -1 if the input was invalid. */ ssize_t ed25519_cert_extension_encode(uint8_t *output, size_t avail, const ed25519_cert_extension_t *input); /** Check whether the internal state of the ed25519_cert_extension in * 'obj' is consistent. Return NULL if it is, and a short message if * it is not. */ const char *ed25519_cert_extension_check(const ed25519_cert_extension_t *obj); /** Clear any errors that were set on the object 'obj' by its setter * functions. Return true iff errors were cleared. */ int ed25519_cert_extension_clear_errors(ed25519_cert_extension_t *obj); /** Return the value of the ext_length field of the * ed25519_cert_extension_t in 'inp' */ uint16_t ed25519_cert_extension_get_ext_length(ed25519_cert_extension_t *inp); /** Set the value of the ext_length field of the * ed25519_cert_extension_t in 'inp' to 'val'. Return 0 on success; * return -1 and set the error code on 'inp' on failure. */ int ed25519_cert_extension_set_ext_length(ed25519_cert_extension_t *inp, uint16_t val); /** Return the value of the ext_type field of the * ed25519_cert_extension_t in 'inp' */ uint8_t ed25519_cert_extension_get_ext_type(ed25519_cert_extension_t *inp); /** Set the value of the ext_type field of the * ed25519_cert_extension_t in 'inp' to 'val'. Return 0 on success; * return -1 and set the error code on 'inp' on failure. */ int ed25519_cert_extension_set_ext_type(ed25519_cert_extension_t *inp, uint8_t val); /** Return the value of the ext_flags field of the * ed25519_cert_extension_t in 'inp' */ uint8_t ed25519_cert_extension_get_ext_flags(ed25519_cert_extension_t *inp); /** Set the value of the ext_flags field of the * ed25519_cert_extension_t in 'inp' to 'val'. Return 0 on success; * return -1 and set the error code on 'inp' on failure. */ int ed25519_cert_extension_set_ext_flags(ed25519_cert_extension_t *inp, uint8_t val); /** Return the (constant) length of the array holding the * un_signing_key field of the ed25519_cert_extension_t in 'inp'. */ size_t ed25519_cert_extension_getlen_un_signing_key(const ed25519_cert_extension_t *inp); /** Return the element at position 'idx' of the fixed array field * un_signing_key of the ed25519_cert_extension_t in 'inp'. */ uint8_t ed25519_cert_extension_get_un_signing_key(const ed25519_cert_extension_t *inp, size_t idx); /** Change the element at position 'idx' of the fixed array field * un_signing_key of the ed25519_cert_extension_t in 'inp', so that it * will hold the value 'elt'. */ int ed25519_cert_extension_set_un_signing_key(ed25519_cert_extension_t *inp, size_t idx, uint8_t elt); /** Return a pointer to the 32-element array field un_signing_key of * 'inp'. */ uint8_t * ed25519_cert_extension_getarray_un_signing_key(ed25519_cert_extension_t *inp); /** Return the length of the dynamic array holding the un_unparsed * field of the ed25519_cert_extension_t in 'inp'. */ size_t ed25519_cert_extension_getlen_un_unparsed(const ed25519_cert_extension_t *inp); /** Return the element at position 'idx' of the dynamic array field * un_unparsed of the ed25519_cert_extension_t in 'inp'. */ uint8_t ed25519_cert_extension_get_un_unparsed(ed25519_cert_extension_t *inp, size_t idx); /** Change the element at position 'idx' of the dynamic array field * un_unparsed of the ed25519_cert_extension_t in 'inp', so that it * will hold the value 'elt'. */ int ed25519_cert_extension_set_un_unparsed(ed25519_cert_extension_t *inp, size_t idx, uint8_t elt); /** Append a new element 'elt' to the dynamic array field un_unparsed * of the ed25519_cert_extension_t in 'inp'. */ int ed25519_cert_extension_add_un_unparsed(ed25519_cert_extension_t *inp, uint8_t elt); /** Return a pointer to the variable-length array field un_unparsed of * 'inp'. */ uint8_t * ed25519_cert_extension_getarray_un_unparsed(ed25519_cert_extension_t *inp); /** Change the length of the variable-length array field un_unparsed * of 'inp' to 'newlen'.Fill extra elements with 0. Return 0 on * success; return -1 and set the error code on 'inp' on failure. */ int ed25519_cert_extension_setlen_un_unparsed(ed25519_cert_extension_t *inp, size_t newlen); /** Return a newly allocated ed25519_cert with all elements set to * zero. */ ed25519_cert_t *ed25519_cert_new(void); /** Release all storage held by the ed25519_cert in 'victim'. (Do * nothing if 'victim' is NULL.) */ void ed25519_cert_free(ed25519_cert_t *victim); /** Try to parse a ed25519_cert from the buffer in 'input', using up * to 'len_in' bytes from the input buffer. On success, return the * number of bytes consumed and set *output to the newly allocated * ed25519_cert_t. On failure, return -2 if the input appears * truncated, and -1 if the input is otherwise invalid. */ ssize_t ed25519_cert_parse(ed25519_cert_t **output, const uint8_t *input, const size_t len_in); /** Return the number of bytes we expect to need to encode the * ed25519_cert in 'obj'. On failure, return a negative value. Note * that this value may be an overestimate, and can even be an * underestimate for certain unencodeable objects. */ ssize_t ed25519_cert_encoded_len(const ed25519_cert_t *obj); /** Try to encode the ed25519_cert from 'input' into the buffer at * 'output', using up to 'avail' bytes of the output buffer. On * success, return the number of bytes used. On failure, return -2 if * the buffer was not long enough, and -1 if the input was invalid. */ ssize_t ed25519_cert_encode(uint8_t *output, size_t avail, const ed25519_cert_t *input); /** Check whether the internal state of the ed25519_cert in 'obj' is * consistent. Return NULL if it is, and a short message if it is not. */ const char *ed25519_cert_check(const ed25519_cert_t *obj); /** Clear any errors that were set on the object 'obj' by its setter * functions. Return true iff errors were cleared. */ int ed25519_cert_clear_errors(ed25519_cert_t *obj); /** Return the value of the version field of the ed25519_cert_t in * 'inp' */ uint8_t ed25519_cert_get_version(ed25519_cert_t *inp); /** Set the value of the version field of the ed25519_cert_t in 'inp' * to 'val'. Return 0 on success; return -1 and set the error code on * 'inp' on failure. */ int ed25519_cert_set_version(ed25519_cert_t *inp, uint8_t val); /** Return the value of the cert_type field of the ed25519_cert_t in * 'inp' */ uint8_t ed25519_cert_get_cert_type(ed25519_cert_t *inp); /** Set the value of the cert_type field of the ed25519_cert_t in * 'inp' to 'val'. Return 0 on success; return -1 and set the error * code on 'inp' on failure. */ int ed25519_cert_set_cert_type(ed25519_cert_t *inp, uint8_t val); /** Return the value of the exp_field field of the ed25519_cert_t in * 'inp' */ uint32_t ed25519_cert_get_exp_field(ed25519_cert_t *inp); /** Set the value of the exp_field field of the ed25519_cert_t in * 'inp' to 'val'. Return 0 on success; return -1 and set the error * code on 'inp' on failure. */ int ed25519_cert_set_exp_field(ed25519_cert_t *inp, uint32_t val); /** Return the value of the cert_key_type field of the ed25519_cert_t * in 'inp' */ uint8_t ed25519_cert_get_cert_key_type(ed25519_cert_t *inp); /** Set the value of the cert_key_type field of the ed25519_cert_t in * 'inp' to 'val'. Return 0 on success; return -1 and set the error * code on 'inp' on failure. */ int ed25519_cert_set_cert_key_type(ed25519_cert_t *inp, uint8_t val); /** Return the (constant) length of the array holding the * certified_key field of the ed25519_cert_t in 'inp'. */ size_t ed25519_cert_getlen_certified_key(const ed25519_cert_t *inp); /** Return the element at position 'idx' of the fixed array field * certified_key of the ed25519_cert_t in 'inp'. */ uint8_t ed25519_cert_get_certified_key(const ed25519_cert_t *inp, size_t idx); /** Change the element at position 'idx' of the fixed array field * certified_key of the ed25519_cert_t in 'inp', so that it will hold * the value 'elt'. */ int ed25519_cert_set_certified_key(ed25519_cert_t *inp, size_t idx, uint8_t elt); /** Return a pointer to the 32-element array field certified_key of * 'inp'. */ uint8_t * ed25519_cert_getarray_certified_key(ed25519_cert_t *inp); /** Return the value of the n_extensions field of the ed25519_cert_t * in 'inp' */ uint8_t ed25519_cert_get_n_extensions(ed25519_cert_t *inp); /** Set the value of the n_extensions field of the ed25519_cert_t in * 'inp' to 'val'. Return 0 on success; return -1 and set the error * code on 'inp' on failure. */ int ed25519_cert_set_n_extensions(ed25519_cert_t *inp, uint8_t val); /** Return the length of the dynamic array holding the ext field of * the ed25519_cert_t in 'inp'. */ size_t ed25519_cert_getlen_ext(const ed25519_cert_t *inp); /** Return the element at position 'idx' of the dynamic array field * ext of the ed25519_cert_t in 'inp'. */ struct ed25519_cert_extension_st * ed25519_cert_get_ext(ed25519_cert_t *inp, size_t idx); /** Change the element at position 'idx' of the dynamic array field * ext of the ed25519_cert_t in 'inp', so that it will hold the value * 'elt'. Free the previous value, if any. */ int ed25519_cert_set_ext(ed25519_cert_t *inp, size_t idx, struct ed25519_cert_extension_st * elt); /** As ed25519_cert_set_ext, but does not free the previous value. */ int ed25519_cert_set0_ext(ed25519_cert_t *inp, size_t idx, struct ed25519_cert_extension_st * elt); /** Append a new element 'elt' to the dynamic array field ext of the * ed25519_cert_t in 'inp'. */ int ed25519_cert_add_ext(ed25519_cert_t *inp, struct ed25519_cert_extension_st * elt); /** Return a pointer to the variable-length array field ext of 'inp'. */ struct ed25519_cert_extension_st * * ed25519_cert_getarray_ext(ed25519_cert_t *inp); /** Change the length of the variable-length array field ext of 'inp' * to 'newlen'.Fill extra elements with NULL; free removed elements. * Return 0 on success; return -1 and set the error code on 'inp' on * failure. */ int ed25519_cert_setlen_ext(ed25519_cert_t *inp, size_t newlen); /** Return the (constant) length of the array holding the signature * field of the ed25519_cert_t in 'inp'. */ size_t ed25519_cert_getlen_signature(const ed25519_cert_t *inp); /** Return the element at position 'idx' of the fixed array field * signature of the ed25519_cert_t in 'inp'. */ uint8_t ed25519_cert_get_signature(const ed25519_cert_t *inp, size_t idx); /** Change the element at position 'idx' of the fixed array field * signature of the ed25519_cert_t in 'inp', so that it will hold the * value 'elt'. */ int ed25519_cert_set_signature(ed25519_cert_t *inp, size_t idx, uint8_t elt); /** Return a pointer to the 64-element array field signature of 'inp'. */ uint8_t * ed25519_cert_getarray_signature(ed25519_cert_t *inp); #endif tor-0.2.7.6/src/tools/0000755000175000017500000000000012632347251011425 500000000000000tor-0.2.7.6/src/tools/tor-fw-helper/0000755000175000017500000000000012632347251014120 500000000000000tor-0.2.7.6/src/tools/tor-fw-helper/README0000644000175000017500000000056412621363246014725 00000000000000 We no longer recommend the use of this tool. Instead, please use the pure-Go version of tor-fw-helper available at https://gitweb.torproject.org/tor-fw-helper.git Why? The C code here was fine, but frankly: we don't trust the underlying libraries. They don't seem to have been written with network security in mind, and we have very little faith in their safety. tor-0.2.7.6/src/tools/tor-gencert.c0000644000175000017500000003725512621363246013756 00000000000000/* Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #include #include #include #include #include #ifdef HAVE_UNISTD_H #include #endif #include #include #include #include #include #include #include #if 0 #include #include #include #endif #include "compat.h" #include "util.h" #include "torlog.h" #include "crypto.h" #include "address.h" #include "util_format.h" #define IDENTITY_KEY_BITS 3072 #define SIGNING_KEY_BITS 2048 #define DEFAULT_LIFETIME 12 /* These globals are set via command line options. */ char *identity_key_file = NULL; char *signing_key_file = NULL; char *certificate_file = NULL; int reuse_signing_key = 0; int verbose = 0; int make_new_id = 0; int months_lifetime = DEFAULT_LIFETIME; int passphrase_fd = -1; char *address = NULL; char *passphrase = NULL; size_t passphrase_len = 0; EVP_PKEY *identity_key = NULL; EVP_PKEY *signing_key = NULL; /** Write a usage message for tor-gencert to stderr. */ static void show_help(void) { fprintf(stderr, "Syntax:\n" "tor-gencert [-h|--help] [-v] [-r|--reuse] [--create-identity-key]\n" " [-i identity_key_file] [-s signing_key_file] " "[-c certificate_file]\n" " [-m lifetime_in_months] [-a address:port] " "[--passphrase-fd ]\n"); } /* XXXX copied from crypto.c */ static void crypto_log_errors(int severity, const char *doing) { unsigned long err; const char *msg, *lib, *func; while ((err = ERR_get_error()) != 0) { msg = (const char*)ERR_reason_error_string(err); lib = (const char*)ERR_lib_error_string(err); func = (const char*)ERR_func_error_string(err); if (!msg) msg = "(null)"; if (!lib) lib = "(null)"; if (!func) func = "(null)"; if (doing) { tor_log(severity, LD_CRYPTO, "crypto error while %s: %s (in %s:%s)", doing, msg, lib, func); } else { tor_log(severity, LD_CRYPTO, "crypto error: %s (in %s:%s)", msg, lib, func); } } } /** Read the passphrase from the passphrase fd. */ static int load_passphrase(void) { char *cp; char buf[1024]; /* "Ought to be enough for anybody." */ ssize_t n = read_all(passphrase_fd, buf, sizeof(buf), 0); if (n < 0) { log_err(LD_GENERAL, "Couldn't read from passphrase fd: %s", strerror(errno)); return -1; } cp = memchr(buf, '\n', n); passphrase_len = cp-buf; passphrase = tor_strndup(buf, passphrase_len); memwipe(buf, 0, sizeof(buf)); return 0; } static void clear_passphrase(void) { if (passphrase) { memwipe(passphrase, 0, passphrase_len); tor_free(passphrase); } } /** Read the command line options from argc and argv, * setting global option vars as needed. */ static int parse_commandline(int argc, char **argv) { int i; log_severity_list_t s; for (i = 1; i < argc; ++i) { if (!strcmp(argv[i], "--help") || !strcmp(argv[i], "-h")) { show_help(); return 1; } else if (!strcmp(argv[i], "-i")) { if (i+1>=argc) { fprintf(stderr, "No argument to -i\n"); return 1; } if (identity_key_file) { fprintf(stderr, "Duplicate values for -i\n"); return -1; } identity_key_file = tor_strdup(argv[++i]); } else if (!strcmp(argv[i], "-s")) { if (i+1>=argc) { fprintf(stderr, "No argument to -s\n"); return 1; } if (signing_key_file) { fprintf(stderr, "Duplicate values for -s\n"); return -1; } signing_key_file = tor_strdup(argv[++i]); } else if (!strcmp(argv[i], "-c")) { if (i+1>=argc) { fprintf(stderr, "No argument to -c\n"); return 1; } if (certificate_file) { fprintf(stderr, "Duplicate values for -c\n"); return -1; } certificate_file = tor_strdup(argv[++i]); } else if (!strcmp(argv[i], "-m")) { if (i+1>=argc) { fprintf(stderr, "No argument to -m\n"); return 1; } months_lifetime = atoi(argv[++i]); if (months_lifetime > 24 || months_lifetime < 0) { fprintf(stderr, "Lifetime (in months) was out of range.\n"); return 1; } } else if (!strcmp(argv[i], "-r") || !strcmp(argv[i], "--reuse")) { reuse_signing_key = 1; } else if (!strcmp(argv[i], "-v")) { verbose = 1; } else if (!strcmp(argv[i], "-a")) { uint32_t addr; uint16_t port; char b[INET_NTOA_BUF_LEN]; struct in_addr in; if (i+1>=argc) { fprintf(stderr, "No argument to -a\n"); return 1; } if (addr_port_lookup(LOG_ERR, argv[++i], NULL, &addr, &port)<0) return 1; in.s_addr = htonl(addr); tor_inet_ntoa(&in, b, sizeof(b)); tor_asprintf(&address, "%s:%d", b, (int)port); } else if (!strcmp(argv[i], "--create-identity-key")) { make_new_id = 1; } else if (!strcmp(argv[i], "--passphrase-fd")) { if (i+1>=argc) { fprintf(stderr, "No argument to --passphrase-fd\n"); return 1; } passphrase_fd = atoi(argv[++i]); } else { fprintf(stderr, "Unrecognized option %s\n", argv[i]); return 1; } } memwipe(&s, 0, sizeof(s)); if (verbose) set_log_severity_config(LOG_DEBUG, LOG_ERR, &s); else set_log_severity_config(LOG_WARN, LOG_ERR, &s); add_stream_log(&s, "", fileno(stderr)); if (!identity_key_file) { identity_key_file = tor_strdup("./authority_identity_key"); log_info(LD_GENERAL, "No identity key file given; defaulting to %s", identity_key_file); } if (!signing_key_file) { signing_key_file = tor_strdup("./authority_signing_key"); log_info(LD_GENERAL, "No signing key file given; defaulting to %s", signing_key_file); } if (!certificate_file) { certificate_file = tor_strdup("./authority_certificate"); log_info(LD_GENERAL, "No signing key file given; defaulting to %s", certificate_file); } if (passphrase_fd >= 0) { if (load_passphrase()<0) return 1; } return 0; } static RSA * generate_key(int bits) { RSA *rsa = NULL; crypto_pk_t *env = crypto_pk_new(); if (crypto_pk_generate_key_with_bits(env,bits)<0) goto done; rsa = crypto_pk_get_rsa_(env); rsa = RSAPrivateKey_dup(rsa); done: crypto_pk_free(env); return rsa; } /** Try to read the identity key from identity_key_file. If no such * file exists and create_identity_key is set, make a new identity key and * store it. Return 0 on success, nonzero on failure. */ static int load_identity_key(void) { file_status_t status = file_status(identity_key_file); FILE *f; if (make_new_id) { open_file_t *open_file = NULL; RSA *key; if (status != FN_NOENT) { log_err(LD_GENERAL, "--create-identity-key was specified, but %s " "already exists.", identity_key_file); return 1; } log_notice(LD_GENERAL, "Generating %d-bit RSA identity key.", IDENTITY_KEY_BITS); if (!(key = generate_key(IDENTITY_KEY_BITS))) { log_err(LD_GENERAL, "Couldn't generate identity key."); crypto_log_errors(LOG_ERR, "Generating identity key"); return 1; } identity_key = EVP_PKEY_new(); if (!(EVP_PKEY_assign_RSA(identity_key, key))) { log_err(LD_GENERAL, "Couldn't assign identity key."); return 1; } if (!(f = start_writing_to_stdio_file(identity_key_file, OPEN_FLAGS_REPLACE | O_TEXT, 0400, &open_file))) return 1; /* Write the key to the file. If passphrase is not set, takes it from * the terminal. */ if (!PEM_write_PKCS8PrivateKey_nid(f, identity_key, NID_pbe_WithSHA1And3_Key_TripleDES_CBC, passphrase, (int)passphrase_len, NULL, NULL)) { log_err(LD_GENERAL, "Couldn't write identity key to %s", identity_key_file); crypto_log_errors(LOG_ERR, "Writing identity key"); abort_writing_to_file(open_file); return 1; } finish_writing_to_file(open_file); } else { if (status != FN_FILE) { log_err(LD_GENERAL, "No identity key found in %s. To specify a location " "for an identity key, use -i. To generate a new identity key, " "use --create-identity-key.", identity_key_file); return 1; } if (!(f = fopen(identity_key_file, "r"))) { log_err(LD_GENERAL, "Couldn't open %s for reading: %s", identity_key_file, strerror(errno)); return 1; } /* Read the key. If passphrase is not set, takes it from the terminal. */ identity_key = PEM_read_PrivateKey(f, NULL, NULL, passphrase); if (!identity_key) { log_err(LD_GENERAL, "Couldn't read identity key from %s", identity_key_file); fclose(f); return 1; } fclose(f); } return 0; } /** Load a saved signing key from disk. Return 0 on success, nonzero on * failure. */ static int load_signing_key(void) { FILE *f; if (!(f = fopen(signing_key_file, "r"))) { log_err(LD_GENERAL, "Couldn't open %s for reading: %s", signing_key_file, strerror(errno)); return 1; } if (!(signing_key = PEM_read_PrivateKey(f, NULL, NULL, NULL))) { log_err(LD_GENERAL, "Couldn't read siging key from %s", signing_key_file); fclose(f); return 1; } fclose(f); return 0; } /** Generate a new signing key and write it to disk. Return 0 on success, * nonzero on failure. */ static int generate_signing_key(void) { open_file_t *open_file; FILE *f; RSA *key; log_notice(LD_GENERAL, "Generating %d-bit RSA signing key.", SIGNING_KEY_BITS); if (!(key = generate_key(SIGNING_KEY_BITS))) { log_err(LD_GENERAL, "Couldn't generate signing key."); crypto_log_errors(LOG_ERR, "Generating signing key"); return 1; } signing_key = EVP_PKEY_new(); if (!(EVP_PKEY_assign_RSA(signing_key, key))) { log_err(LD_GENERAL, "Couldn't assign signing key."); return 1; } if (!(f = start_writing_to_stdio_file(signing_key_file, OPEN_FLAGS_REPLACE | O_TEXT, 0600, &open_file))) return 1; /* Write signing key with no encryption. */ if (!PEM_write_RSAPrivateKey(f, key, NULL, NULL, 0, NULL, NULL)) { crypto_log_errors(LOG_WARN, "writing signing key"); abort_writing_to_file(open_file); return 1; } finish_writing_to_file(open_file); return 0; } /** Encode key in the format used in directory documents; return * a newly allocated string holding the result or NULL on failure. */ static char * key_to_string(EVP_PKEY *key) { BUF_MEM *buf; BIO *b; RSA *rsa = EVP_PKEY_get1_RSA(key); char *result; if (!rsa) return NULL; b = BIO_new(BIO_s_mem()); if (!PEM_write_bio_RSAPublicKey(b, rsa)) { crypto_log_errors(LOG_WARN, "writing public key to string"); return NULL; } BIO_get_mem_ptr(b, &buf); (void) BIO_set_close(b, BIO_NOCLOSE); BIO_free(b); result = tor_malloc(buf->length + 1); memcpy(result, buf->data, buf->length); result[buf->length] = 0; BUF_MEM_free(buf); return result; } /** Set out to the hex-encoded fingerprint of pkey. */ static int get_fingerprint(EVP_PKEY *pkey, char *out) { int r = 1; crypto_pk_t *pk = crypto_new_pk_from_rsa_(EVP_PKEY_get1_RSA(pkey)); if (pk) { r = crypto_pk_get_fingerprint(pk, out, 0); crypto_pk_free(pk); } return r; } /** Set out to the hex-encoded fingerprint of pkey. */ static int get_digest(EVP_PKEY *pkey, char *out) { int r = 1; crypto_pk_t *pk = crypto_new_pk_from_rsa_(EVP_PKEY_get1_RSA(pkey)); if (pk) { r = crypto_pk_get_digest(pk, out); crypto_pk_free(pk); } return r; } /** Generate a new certificate for our loaded or generated keys, and write it * to disk. Return 0 on success, nonzero on failure. */ static int generate_certificate(void) { char buf[8192]; time_t now = time(NULL); struct tm tm; char published[ISO_TIME_LEN+1]; char expires[ISO_TIME_LEN+1]; char id_digest[DIGEST_LEN]; char fingerprint[FINGERPRINT_LEN+1]; char *ident = key_to_string(identity_key); char *signing = key_to_string(signing_key); FILE *f; size_t signed_len; char digest[DIGEST_LEN]; char signature[1024]; /* handles up to 8192-bit keys. */ int r; get_fingerprint(identity_key, fingerprint); get_digest(identity_key, id_digest); tor_localtime_r(&now, &tm); tm.tm_mon += months_lifetime; format_iso_time(published, now); format_iso_time(expires, mktime(&tm)); tor_snprintf(buf, sizeof(buf), "dir-key-certificate-version 3" "%s%s" "\nfingerprint %s\n" "dir-key-published %s\n" "dir-key-expires %s\n" "dir-identity-key\n%s" "dir-signing-key\n%s" "dir-key-crosscert\n" "-----BEGIN ID SIGNATURE-----\n", address?"\ndir-address ":"", address?address:"", fingerprint, published, expires, ident, signing ); tor_free(ident); tor_free(signing); /* Append a cross-certification */ r = RSA_private_encrypt(DIGEST_LEN, (unsigned char*)id_digest, (unsigned char*)signature, EVP_PKEY_get1_RSA(signing_key), RSA_PKCS1_PADDING); signed_len = strlen(buf); base64_encode(buf+signed_len, sizeof(buf)-signed_len, signature, r, BASE64_ENCODE_MULTILINE); strlcat(buf, "-----END ID SIGNATURE-----\n" "dir-key-certification\n", sizeof(buf)); signed_len = strlen(buf); SHA1((const unsigned char*)buf,signed_len,(unsigned char*)digest); r = RSA_private_encrypt(DIGEST_LEN, (unsigned char*)digest, (unsigned char*)signature, EVP_PKEY_get1_RSA(identity_key), RSA_PKCS1_PADDING); strlcat(buf, "-----BEGIN SIGNATURE-----\n", sizeof(buf)); signed_len = strlen(buf); base64_encode(buf+signed_len, sizeof(buf)-signed_len, signature, r, BASE64_ENCODE_MULTILINE); strlcat(buf, "-----END SIGNATURE-----\n", sizeof(buf)); if (!(f = fopen(certificate_file, "w"))) { log_err(LD_GENERAL, "Couldn't open %s for writing: %s", certificate_file, strerror(errno)); return 1; } if (fputs(buf, f) < 0) { log_err(LD_GENERAL, "Couldn't write to %s: %s", certificate_file, strerror(errno)); fclose(f); return 1; } fclose(f); return 0; } /** Entry point to tor-gencert */ int main(int argc, char **argv) { int r = 1; init_logging(1); /* Don't bother using acceleration. */ if (crypto_global_init(0, NULL, NULL)) { fprintf(stderr, "Couldn't initialize crypto library.\n"); return 1; } if (crypto_seed_rng()) { fprintf(stderr, "Couldn't seed RNG.\n"); goto done; } /* Make sure that files are made private. */ umask(0077); if (parse_commandline(argc, argv)) goto done; if (load_identity_key()) goto done; if (reuse_signing_key) { if (load_signing_key()) goto done; } else { if (generate_signing_key()) goto done; } if (generate_certificate()) goto done; r = 0; done: clear_passphrase(); if (identity_key) EVP_PKEY_free(identity_key); if (signing_key) EVP_PKEY_free(signing_key); tor_free(address); tor_free(identity_key_file); tor_free(signing_key_file); tor_free(certificate_file); tor_free(address); crypto_global_cleanup(); return r; } tor-0.2.7.6/src/tools/include.am0000644000175000017500000000363412621363246013315 00000000000000bin_PROGRAMS+= src/tools/tor-resolve src/tools/tor-gencert noinst_PROGRAMS+= src/tools/tor-checkkey if COVERAGE_ENABLED noinst_PROGRAMS+= src/tools/tor-cov-resolve src/tools/tor-cov-gencert endif src_tools_tor_resolve_SOURCES = src/tools/tor-resolve.c src_tools_tor_resolve_LDFLAGS = src_tools_tor_resolve_LDADD = src/common/libor.a @TOR_LIB_MATH@ @TOR_LIB_WS32@ if COVERAGE_ENABLED src_tools_tor_cov_resolve_SOURCES = src/tools/tor-resolve.c src_tools_tor_cov_resolve_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS) src_tools_tor_cov_resolve_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) src_tools_tor_cov_resolve_LDADD = src/common/libor-testing.a \ @TOR_LIB_MATH@ @TOR_LIB_WS32@ endif src_tools_tor_gencert_SOURCES = src/tools/tor-gencert.c src_tools_tor_gencert_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ src_tools_tor_gencert_LDADD = src/common/libor.a src/common/libor-crypto.a \ $(LIBDONNA) \ @TOR_LIB_MATH@ @TOR_ZLIB_LIBS@ @TOR_OPENSSL_LIBS@ \ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ if COVERAGE_ENABLED src_tools_tor_cov_gencert_SOURCES = src/tools/tor-gencert.c src_tools_tor_cov_gencert_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS) src_tools_tor_cov_gencert_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) src_tools_tor_cov_gencert_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ src_tools_tor_cov_gencert_LDADD = src/common/libor-testing.a \ src/common/libor-crypto-testing.a \ $(LIBDONNA) \ @TOR_LIB_MATH@ @TOR_ZLIB_LIBS@ @TOR_OPENSSL_LIBS@ \ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ endif src_tools_tor_checkkey_SOURCES = src/tools/tor-checkkey.c src_tools_tor_checkkey_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ src_tools_tor_checkkey_LDADD = src/common/libor.a src/common/libor-crypto.a \ $(LIBDONNA) \ @TOR_LIB_MATH@ @TOR_ZLIB_LIBS@ @TOR_OPENSSL_LIBS@ \ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ EXTRA_DIST += src/tools/tor-fw-helper/README tor-0.2.7.6/src/tools/tor-resolve.c0000644000175000017500000003101212621363246013767 00000000000000/* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #include "compat.h" #include "util.h" #include "address.h" #include "torlog.h" #include "sandbox.h" #include #include #include #include #include #ifdef HAVE_NETINET_IN_H #include #endif #ifdef HAVE_ARPA_INET_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef HAVE_SYS_TYPES_H #include /* Must be included before sys/stat.h for Ultrix */ #endif #ifdef HAVE_ERRNO_H #include #endif #ifdef _WIN32 #include #include #endif #define RESPONSE_LEN_4 8 #define log_sock_error(act, _s) \ STMT_BEGIN log_fn(LOG_ERR, LD_NET, "Error while %s: %s", act, \ tor_socket_strerror(tor_socket_errno(_s))); STMT_END static void usage(void) ATTR_NORETURN; /** Set *out to a newly allocated SOCKS4a resolve request with * username and hostname as provided. Return the number * of bytes in the request. */ static ssize_t build_socks_resolve_request(char **out, const char *username, const char *hostname, int reverse, int version) { size_t len = 0; tor_assert(out); tor_assert(username); tor_assert(hostname); if (version == 4) { len = 8 + strlen(username) + 1 + strlen(hostname) + 1; *out = tor_malloc(len); (*out)[0] = 4; /* SOCKS version 4 */ (*out)[1] = '\xF0'; /* Command: resolve. */ set_uint16((*out)+2, htons(0)); /* port: 0. */ set_uint32((*out)+4, htonl(0x00000001u)); /* addr: 0.0.0.1 */ memcpy((*out)+8, username, strlen(username)+1); memcpy((*out)+8+strlen(username)+1, hostname, strlen(hostname)+1); } else if (version == 5) { int is_ip_address; tor_addr_t addr; size_t addrlen; int ipv6; is_ip_address = tor_addr_parse(&addr, hostname) != -1; if (!is_ip_address && reverse) { log_err(LD_GENERAL, "Tried to do a reverse lookup on a non-IP!"); return -1; } ipv6 = reverse && tor_addr_family(&addr) == AF_INET6; addrlen = reverse ? (ipv6 ? 16 : 4) : 1 + strlen(hostname); len = 6 + addrlen; *out = tor_malloc(len); (*out)[0] = 5; /* SOCKS version 5 */ (*out)[1] = reverse ? '\xF1' : '\xF0'; /* RESOLVE_PTR or RESOLVE */ (*out)[2] = 0; /* reserved. */ if (reverse) { (*out)[3] = ipv6 ? 4 : 1; if (ipv6) memcpy((*out)+4, tor_addr_to_in6_addr8(&addr), 16); else set_uint32((*out)+4, tor_addr_to_ipv4n(&addr)); } else { (*out)[3] = 3; (*out)[4] = (char)(uint8_t)(addrlen - 1); memcpy((*out)+5, hostname, addrlen - 1); } set_uint16((*out)+4+addrlen, 0); /* port */ } else { tor_assert(0); } return len; } static void onion_warning(const char *hostname) { log_warn(LD_NET, "%s is a hidden service; those don't have IP addresses. " "You can use the AutomapHostsOnResolve option to have Tor return a " "fake address for hidden services. Or you can have your " "application send the address to Tor directly; we recommend an " "application that uses SOCKS 5 with hostnames.", hostname); } /** Given a len-byte SOCKS4a response in response, set * *addr_out to the address it contains (in host order). * Return 0 on success, -1 on error. */ static int parse_socks4a_resolve_response(const char *hostname, const char *response, size_t len, tor_addr_t *addr_out) { uint8_t status; tor_assert(response); tor_assert(addr_out); if (len < RESPONSE_LEN_4) { log_warn(LD_PROTOCOL,"Truncated socks response."); return -1; } if (((uint8_t)response[0])!=0) { /* version: 0 */ log_warn(LD_PROTOCOL,"Nonzero version in socks response: bad format."); return -1; } status = (uint8_t)response[1]; if (get_uint16(response+2)!=0) { /* port: 0 */ log_warn(LD_PROTOCOL,"Nonzero port in socks response: bad format."); return -1; } if (status != 90) { log_warn(LD_NET,"Got status response '%d': socks request failed.", status); if (!strcasecmpend(hostname, ".onion")) { onion_warning(hostname); return -1; } return -1; } tor_addr_from_ipv4n(addr_out, get_uint32(response+4)); return 0; } /* It would be nice to let someone know what SOCKS5 issue a user may have */ static const char * socks5_reason_to_string(char reason) { switch (reason) { case SOCKS5_SUCCEEDED: return "succeeded"; case SOCKS5_GENERAL_ERROR: return "general error"; case SOCKS5_NOT_ALLOWED: return "not allowed"; case SOCKS5_NET_UNREACHABLE: return "network is unreachable"; case SOCKS5_HOST_UNREACHABLE: return "host is unreachable"; case SOCKS5_CONNECTION_REFUSED: return "connection refused"; case SOCKS5_TTL_EXPIRED: return "ttl expired"; case SOCKS5_COMMAND_NOT_SUPPORTED: return "command not supported"; case SOCKS5_ADDRESS_TYPE_NOT_SUPPORTED: return "address type not supported"; default: return "unknown SOCKS5 code"; } } /** Send a resolve request for hostname to the Tor listening on * sockshost:socksport. Store the resulting IPv4 * address (in host order) into *result_addr. */ static int do_resolve(const char *hostname, uint32_t sockshost, uint16_t socksport, int reverse, int version, tor_addr_t *result_addr, char **result_hostname) { int s = -1; struct sockaddr_in socksaddr; char *req = NULL; ssize_t len = 0; tor_assert(hostname); tor_assert(result_addr); tor_assert(version == 4 || version == 5); tor_addr_make_unspec(result_addr); *result_hostname = NULL; s = tor_open_socket(PF_INET,SOCK_STREAM,IPPROTO_TCP); if (s<0) { log_sock_error("creating_socket", -1); return -1; } memset(&socksaddr, 0, sizeof(socksaddr)); socksaddr.sin_family = AF_INET; socksaddr.sin_port = htons(socksport); socksaddr.sin_addr.s_addr = htonl(sockshost); if (connect(s, (struct sockaddr*)&socksaddr, sizeof(socksaddr))) { log_sock_error("connecting to SOCKS host", s); goto err; } if (version == 5) { char method_buf[2]; if (write_all(s, "\x05\x01\x00", 3, 1) != 3) { log_err(LD_NET, "Error sending SOCKS5 method list."); goto err; } if (read_all(s, method_buf, 2, 1) != 2) { log_err(LD_NET, "Error reading SOCKS5 methods."); goto err; } if (method_buf[0] != '\x05') { log_err(LD_NET, "Unrecognized socks version: %u", (unsigned)method_buf[0]); goto err; } if (method_buf[1] != '\x00') { log_err(LD_NET, "Unrecognized socks authentication method: %u", (unsigned)method_buf[1]); goto err; } } if ((len = build_socks_resolve_request(&req, "", hostname, reverse, version))<0) { log_err(LD_BUG,"Error generating SOCKS request"); tor_assert(!req); goto err; } if (write_all(s, req, len, 1) != len) { log_sock_error("sending SOCKS request", s); tor_free(req); goto err; } tor_free(req); if (version == 4) { char reply_buf[RESPONSE_LEN_4]; if (read_all(s, reply_buf, RESPONSE_LEN_4, 1) != RESPONSE_LEN_4) { log_err(LD_NET, "Error reading SOCKS4 response."); goto err; } if (parse_socks4a_resolve_response(hostname, reply_buf, RESPONSE_LEN_4, result_addr)<0) { goto err; } } else { char reply_buf[16]; if (read_all(s, reply_buf, 4, 1) != 4) { log_err(LD_NET, "Error reading SOCKS5 response."); goto err; } if (reply_buf[0] != 5) { log_err(LD_NET, "Bad SOCKS5 reply version."); goto err; } /* Give a user some useful feedback about SOCKS5 errors */ if (reply_buf[1] != 0) { log_warn(LD_NET,"Got SOCKS5 status response '%u': %s", (unsigned)reply_buf[1], socks5_reason_to_string(reply_buf[1])); if (reply_buf[1] == 4 && !strcasecmpend(hostname, ".onion")) { onion_warning(hostname); } goto err; } if (reply_buf[3] == 1) { /* IPv4 address */ if (read_all(s, reply_buf, 4, 1) != 4) { log_err(LD_NET, "Error reading address in socks5 response."); goto err; } tor_addr_from_ipv4n(result_addr, get_uint32(reply_buf)); } else if (reply_buf[3] == 4) { /* IPv6 address */ if (read_all(s, reply_buf, 16, 1) != 16) { log_err(LD_NET, "Error reading address in socks5 response."); goto err; } tor_addr_from_ipv6_bytes(result_addr, reply_buf); } else if (reply_buf[3] == 3) { /* Domain name */ size_t result_len; if (read_all(s, reply_buf, 1, 1) != 1) { log_err(LD_NET, "Error reading address_length in socks5 response."); goto err; } result_len = *(uint8_t*)(reply_buf); *result_hostname = tor_malloc(result_len+1); if (read_all(s, *result_hostname, result_len, 1) != (int) result_len) { log_err(LD_NET, "Error reading hostname in socks5 response."); goto err; } (*result_hostname)[result_len] = '\0'; } } tor_close_socket(s); return 0; err: tor_close_socket(s); return -1; } /** Print a usage message and exit. */ static void usage(void) { puts("Syntax: tor-resolve [-4] [-5] [-v] [-x] [-p port] " "hostname [sockshost[:socksport]]"); exit(1); } /** Entry point to tor-resolve */ int main(int argc, char **argv) { uint32_t sockshost; uint16_t socksport = 0, port_option = 0; int isSocks4 = 0, isVerbose = 0, isReverse = 0; char **arg; int n_args; tor_addr_t result; char *result_hostname = NULL; log_severity_list_t *s = tor_malloc_zero(sizeof(log_severity_list_t)); init_logging(1); sandbox_disable_getaddrinfo_cache(); arg = &argv[1]; n_args = argc-1; if (!n_args) usage(); if (!strcmp(arg[0],"--version")) { printf("Tor version %s.\n",VERSION); return 0; } while (n_args && *arg[0] == '-') { if (!strcmp("-v", arg[0])) isVerbose = 1; else if (!strcmp("-4", arg[0])) isSocks4 = 1; else if (!strcmp("-5", arg[0])) isSocks4 = 0; else if (!strcmp("-x", arg[0])) isReverse = 1; else if (!strcmp("-p", arg[0])) { int p; if (n_args < 2) { fprintf(stderr, "No arguments given to -p\n"); usage(); } p = atoi(arg[1]); if (p<1 || p > 65535) { fprintf(stderr, "-p requires a number between 1 and 65535\n"); usage(); } port_option = (uint16_t) p; ++arg; /* skip the port */ --n_args; } else { fprintf(stderr, "Unrecognized flag '%s'\n", arg[0]); usage(); } ++arg; --n_args; } if (isSocks4 && isReverse) { fprintf(stderr, "Reverse lookups not supported with SOCKS4a\n"); usage(); } if (isVerbose) set_log_severity_config(LOG_DEBUG, LOG_ERR, s); else set_log_severity_config(LOG_WARN, LOG_ERR, s); add_stream_log(s, "", fileno(stderr)); if (n_args == 1) { log_debug(LD_CONFIG, "defaulting to localhost"); sockshost = 0x7f000001u; /* localhost */ if (port_option) { log_debug(LD_CONFIG, "Using port %d", (int)port_option); socksport = port_option; } else { log_debug(LD_CONFIG, "defaulting to port 9050"); socksport = 9050; /* 9050 */ } } else if (n_args == 2) { if (addr_port_lookup(LOG_WARN, arg[1], NULL, &sockshost, &socksport)<0) { fprintf(stderr, "Couldn't parse/resolve address %s", arg[1]); return 1; } if (socksport && port_option && socksport != port_option) { log_warn(LD_CONFIG, "Conflicting ports; using %d, not %d", (int)socksport, (int)port_option); } else if (port_option) { socksport = port_option; } else if (!socksport) { log_debug(LD_CONFIG, "defaulting to port 9050"); socksport = 9050; } } else { usage(); } if (network_init()<0) { log_err(LD_BUG,"Error initializing network; exiting."); return 1; } if (do_resolve(arg[0], sockshost, socksport, isReverse, isSocks4 ? 4 : 5, &result, &result_hostname)) return 1; if (result_hostname) { printf("%s\n", result_hostname); } else { printf("%s\n", fmt_addr(&result)); } return 0; } tor-0.2.7.6/src/tools/tor-checkkey.c0000644000175000017500000000324312621363246014103 00000000000000/* Copyright (c) 2008-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #include #include #include "crypto.h" #include "torlog.h" #include "util.h" #include "compat.h" #include #include int main(int c, char **v) { crypto_pk_t *env; char *str; RSA *rsa; int wantdigest=0; int fname_idx; char *fname=NULL; init_logging(1); if (c < 2) { fprintf(stderr, "Hi. I'm tor-checkkey. Tell me a filename that " "has a PEM-encoded RSA public key (like in a cert) and I'll " "dump the modulus. Use the --digest option too and I'll " "dump the digest.\n"); return 1; } if (crypto_global_init(0, NULL, NULL)) { fprintf(stderr, "Couldn't initialize crypto library.\n"); return 1; } if (!strcmp(v[1], "--digest")) { wantdigest = 1; fname_idx = 2; if (c<3) { fprintf(stderr, "too few arguments"); return 1; } } else { wantdigest = 0; fname_idx = 1; } fname = expand_filename(v[fname_idx]); str = read_file_to_str(fname, 0, NULL); tor_free(fname); if (!str) { fprintf(stderr, "Couldn't read %s\n", v[fname_idx]); return 1; } env = crypto_pk_new(); if (crypto_pk_read_public_key_from_string(env, str, strlen(str))<0) { fprintf(stderr, "Couldn't parse key.\n"); return 1; } tor_free(str); if (wantdigest) { char digest[HEX_DIGEST_LEN+1]; if (crypto_pk_get_fingerprint(env, digest, 0)<0) return 1; printf("%s\n",digest); } else { rsa = crypto_pk_get_rsa_(env); str = BN_bn2hex(rsa->n); printf("%s\n", str); } return 0; } tor-0.2.7.6/src/test/0000755000175000017500000000000012632347251011244 500000000000000tor-0.2.7.6/src/test/test_logging.c0000644000175000017500000000741612621363246014025 00000000000000/* Copyright (c) 2013-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #include "or.h" #include "torlog.h" #include "test.h" static void dummy_cb_fn(int severity, uint32_t domain, const char *msg) { (void)severity; (void)domain; (void)msg; } static void test_get_sigsafe_err_fds(void *arg) { const int *fds; int n; log_severity_list_t include_bug, no_bug, no_bug2; (void) arg; init_logging(1); n = tor_log_get_sigsafe_err_fds(&fds); tt_int_op(n, OP_EQ, 1); tt_int_op(fds[0], OP_EQ, STDERR_FILENO); set_log_severity_config(LOG_WARN, LOG_ERR, &include_bug); set_log_severity_config(LOG_WARN, LOG_ERR, &no_bug); no_bug.masks[0] &= ~(LD_BUG|LD_GENERAL); set_log_severity_config(LOG_INFO, LOG_NOTICE, &no_bug2); /* Add some logs; make sure the output is as expected. */ mark_logs_temp(); add_stream_log(&include_bug, "dummy-1", 3); add_stream_log(&no_bug, "dummy-2", 4); add_stream_log(&no_bug2, "dummy-3", 5); add_callback_log(&include_bug, dummy_cb_fn); close_temp_logs(); tor_log_update_sigsafe_err_fds(); n = tor_log_get_sigsafe_err_fds(&fds); tt_int_op(n, OP_EQ, 2); tt_int_op(fds[0], OP_EQ, STDERR_FILENO); tt_int_op(fds[1], OP_EQ, 3); /* Allow STDOUT to replace STDERR. */ add_stream_log(&include_bug, "dummy-4", STDOUT_FILENO); tor_log_update_sigsafe_err_fds(); n = tor_log_get_sigsafe_err_fds(&fds); tt_int_op(n, OP_EQ, 2); tt_int_op(fds[0], OP_EQ, 3); tt_int_op(fds[1], OP_EQ, STDOUT_FILENO); /* But don't allow it to replace explicit STDERR. */ add_stream_log(&include_bug, "dummy-5", STDERR_FILENO); tor_log_update_sigsafe_err_fds(); n = tor_log_get_sigsafe_err_fds(&fds); tt_int_op(n, OP_EQ, 3); tt_int_op(fds[0], OP_EQ, STDERR_FILENO); tt_int_op(fds[1], OP_EQ, STDOUT_FILENO); tt_int_op(fds[2], OP_EQ, 3); /* Don't overflow the array. */ { int i; for (i=5; i<20; ++i) { add_stream_log(&include_bug, "x-dummy", i); } } tor_log_update_sigsafe_err_fds(); n = tor_log_get_sigsafe_err_fds(&fds); tt_int_op(n, OP_EQ, 8); done: ; } static void test_sigsafe_err(void *arg) { const char *fn=get_fname("sigsafe_err_log"); char *content=NULL; log_severity_list_t include_bug; smartlist_t *lines = smartlist_new(); (void)arg; set_log_severity_config(LOG_WARN, LOG_ERR, &include_bug); init_logging(1); mark_logs_temp(); add_file_log(&include_bug, fn, 0); tor_log_update_sigsafe_err_fds(); close_temp_logs(); close(STDERR_FILENO); log_err(LD_BUG, "Say, this isn't too cool."); tor_log_err_sigsafe("Minimal.\n", NULL); set_log_time_granularity(100*1000); tor_log_err_sigsafe("Testing any ", "attempt to manually log ", "from a signal.\n", NULL); mark_logs_temp(); close_temp_logs(); close(STDERR_FILENO); content = read_file_to_str(fn, 0, NULL); tt_assert(content != NULL); tor_split_lines(lines, content, (int)strlen(content)); tt_int_op(smartlist_len(lines), OP_GE, 5); if (strstr(smartlist_get(lines, 0), "opening new log file")) smartlist_del_keeporder(lines, 0); tt_assert(strstr(smartlist_get(lines, 0), "Say, this isn't too cool")); /* Next line is blank. */ tt_assert(!strcmpstart(smartlist_get(lines, 1), "==============")); tt_assert(!strcmpstart(smartlist_get(lines, 2), "Minimal.")); /* Next line is blank. */ tt_assert(!strcmpstart(smartlist_get(lines, 3), "==============")); tt_str_op(smartlist_get(lines, 4), OP_EQ, "Testing any attempt to manually log from a signal."); done: tor_free(content); smartlist_free(lines); } struct testcase_t logging_tests[] = { { "sigsafe_err_fds", test_get_sigsafe_err_fds, TT_FORK, NULL, NULL }, { "sigsafe_err", test_sigsafe_err, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_descriptors.inc0000644000175000017500000002707412621363246015271 00000000000000const char TEST_DESCRIPTORS[] = "@uploaded-at 2014-06-08 19:20:11\n" "@source \"127.0.0.1\"\n" "router test000a 127.0.0.1 5000 0 7000\n" "platform Tor 0.2.5.3-alpha-dev on Linux\n" "protocols Link 1 2 Circuit 1\n" "published 2014-06-08 19:20:11\n" "fingerprint C7E7 CCB8 179F 8CC3 7F5C 8A04 2B3A 180B 934B 14BA\n" "uptime 0\n" "bandwidth 1073741824 1073741824 0\n" "extra-info-digest 67A152A4C7686FB07664F872620635F194D76D95\n" "caches-extra-info\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAOuBUIEBARMkkka/TGyaQNgUEDLP0KG7sy6KNQTNOlZHUresPr/vlVjo\n" "HPpLMfu9M2z18c51YX/muWwY9x4MyQooD56wI4+AqXQcJRwQfQlPn3Ay82uZViA9\n" "DpBajRieLlKKkl145KjArpD7F5BVsqccvjErgFYXvhhjSrx7BVLnAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAN6NLnSxWQnFXxqZi5D3b0BMgV6y9NJLGjYQVP+eWtPZWgqyv4zeYsqv\n" "O9y6c5lvxyUxmNHfoAbe/s8f2Vf3/YaC17asAVSln4ktrr3e9iY74a9RMWHv1Gzk\n" "3042nMcqj3PEhRN0PoLkcOZNjjmNbaqki6qy9bWWZDNTdo+uI44dAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "hidden-service-dir\n" "contact auth0@test.test\n" "ntor-onion-key pK4bs08ERYN591jj7ca17Rn9Q02TIEfhnjR6hSq+fhU=\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "rx88DuM3Y7tODlHNDDEVzKpwh3csaG1or+T4l2Xs1oq3iHHyPEtB6QTLYrC60trG\n" "aAPsj3DEowGfjga1b248g2dtic8Ab+0exfjMm1RHXfDam5TXXZU3A0wMyoHjqHuf\n" "eChGPgFNUvEc+5YtD27qEDcUjcinYztTs7/dzxBT4PE=\n" "-----END SIGNATURE-----\n" "@uploaded-at 2014-06-08 19:20:11\n" "@source \"127.0.0.1\"\n" "router test001a 127.0.0.1 5001 0 7001\n" "platform Tor 0.2.5.3-alpha-dev on Linux\n" "protocols Link 1 2 Circuit 1\n" "published 2014-06-08 19:20:11\n" "fingerprint 35DA 711C FC62 F88B C243 DE32 DC0B C28A 3F62 2610\n" "uptime 0\n" "bandwidth 1073741824 1073741824 0\n" "extra-info-digest 9E12278D6CF7608071FE98CE9DCEE48FA264518A\n" "caches-extra-info\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAPbyUrorqoXMW4oezqd307ZGxgobqvQs2nb3TdQyWrwsHtJmS3utdrJS\n" "xJUZPNHOQ2hrDWW1VvevYqRTGeXGZr9TDZ3+t/gVUttqYRhuzzgEKVAZSsTo5ctO\n" "QNHnzJ6Xx/w/trhWqPTeJ7R0TCyAbWW7aE3KaKdwvZilRZp/oRUnAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALwOJ7XZHBnjJEuwF3Os6eashNbTH9YnH8TBZBdKgu3iFJYqDslcMIPX\n" "gWCJ9apPHyh1+/8OLRWeEYlwoZzgGi0rjm/+BNeOOmJbjfyjk97DuB9/2O5zr1BM\n" "CvOHqQSzMD+vz1ebvfM039a2mO8lXruUFPZQaFVxk8371XP2khqhAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "hidden-service-dir\n" "contact auth1@test.test\n" "ntor-onion-key t5bI1ksTdigOksMKRHUDwx/34ajEvDN1IpArOxIEWgk=\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "KtMW7A/pzu+np6aKJSy6d7drIb4yjz8SPCo+oQNxj2IqNHJir2O2nWu69xy+K0c1\n" "RL05KkcDaYzr5hC80FD1H+sTpGYD28SPkQkzPw+0pReSDl93pVXh0rU6Cdcm75FC\n" "t0UZzDt4TsMuFB0ZYpM3phKcQPpiDG6aR0LskL/YUvY=\n" "-----END SIGNATURE-----\n" "@uploaded-at 2014-06-08 19:20:11\n" "@source \"127.0.0.1\"\n" "router test004r 127.0.0.1 5004 0 7004\n" "platform Tor 0.2.5.3-alpha-dev on Linux\n" "protocols Link 1 2 Circuit 1\n" "published 2014-06-08 19:20:10\n" "fingerprint CC6A 48BD 52BD 9A2C 6670 5863 AC31 AE17 6E63 8B02\n" "uptime 0\n" "bandwidth 1073741824 1073741824 0\n" "extra-info-digest B5CC249CEF394B5AFCA0C77FA7D5605615FA487C\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMze36Hupy7HACcF3TMv5mJuZbx3d3cS0WYLl6vTeChBgpS5CEXq6zIu\n" "d31YmtUcxH6fOjDOudhbnXuoh1nH4CP+LocVHAdlGG1giAm7u8yZudVvVJiIqFgQ\n" "wVDcWx8LbGCi5P9J/ZPKAIVsSyS7xkOqHjz3VMo/uYLbQCFAwfkdAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAM/qGP365x6bH+ug7rKVy7V5lC9Ff2Jfk0wlTFIzzwn+DMSG6xDvulKe\n" "wcIzgGNdQu7qlKlQUif3GPMr0KSS32cRsmoRQJcsm9+lGUK871NyZ8AyrHT+LhyF\n" "cs718P0iN5yKF2FikNr727kEANCzvC1l9eP4qF5GGzsNtglbJ7bTAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "hidden-service-dir\n" "ntor-onion-key a9Pavqnx7DFhMWUO0d17qF9Py8+iie4FnxTHaTgfIXY=\n" "reject *:25\n" "reject *:119\n" "reject *:135-139\n" "reject *:445\n" "reject *:563\n" "reject *:1214\n" "reject *:4661-4666\n" "reject *:6346-6429\n" "reject *:6699\n" "reject *:6881-6999\n" "accept *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "HVW7kjBgEt+Qdvcrq+NQE1F9B8uV9D38KA2Bp6cYHLWCxL6N4GS8JQqbOEtnqaj7\n" "Vxrv7uy1Fzb15Zr+1sUVMxNv+LLRfr+JzfETMNYVkYDrNgr1cAAVEQzFWbIziond\n" "xMFp64yjEW9/I+82lb5GBZEiKdEd4QqWMmQosoYMTM8=\n" "-----END SIGNATURE-----\n" "@uploaded-at 2014-06-08 19:20:12\n" "@source \"127.0.0.1\"\n" "router test002a 127.0.0.1 5002 0 7002\n" "platform Tor 0.2.5.3-alpha-dev on Linux\n" "protocols Link 1 2 Circuit 1\n" "published 2014-06-08 19:20:11\n" "fingerprint 29C7 BBB6 C437 32D5 BDF1 5671 F5C5 F1FB 6E36 4B47\n" "uptime 0\n" "bandwidth 1073741824 1073741824 0\n" "extra-info-digest 9BB181EA86E0130680C3CC04AD7DE4C341ADC2C7\n" "caches-extra-info\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALNH19oF8Ajf+djlH/g7L+enFBf5Wwjmf3bPwNKWZ9G+B+Lg8SpfhZiw\n" "rUqi7h21f45BV/dN05dK6leWD8rj1T9kuM9TKBOEZxIWeq7zbXihyu4XPxP4FNTS\n" "+0G7BhdP4biALENmeyLhUCZaw5Ic/jFkHT4gV9S0iVZiEDwC9twXAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALeyQGMQBHgTxpO/i30uHjflTm9MNi3ZBNcOKpvBXWYgY42qTqOZ7Uam\n" "c5pmZhTLrQ1W8XlGDw8Cl8ktZ0ylodLZyUNajBtJvSFWTb8iwdZsshW6Ahb8TyfI\n" "Y7MwTlQ/7xw4mj1NEaui6bwGgEZUs18RTqhDrUc2Mcj1Yf61Rq+7AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "hidden-service-dir\n" "contact auth2@test.test\n" "ntor-onion-key ukR41RjtiZ69KO0SrFTvL0LoZK/ZTT01FQWmCXTCUlE=\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "IY2s/RY4tdahrgfGG+vW7lOvpfofoxxSo7guGpSKGxVApiroCQtumoYifnnJ88G2\n" "K4IbxwEO8pgO8fnz1mibblUWw2vdDNjCifc1wtXJUE+ONA0UcLRlfQ94GbL8h2PG\n" "72z6i1+NN0QahXMk7MUbzI7bOXTJOiO8e2Zjk9vRnxI=\n" "-----END SIGNATURE-----\n" "@uploaded-at 2014-06-08 19:20:12\n" "@source \"127.0.0.1\"\n" "router test006r 127.0.0.1 5006 0 7006\n" "platform Tor 0.2.5.3-alpha-dev on Linux\n" "protocols Link 1 2 Circuit 1\n" "published 2014-06-08 19:20:11\n" "fingerprint 829B 3FAA A42B 605A EB0B F380 8F32 8ED1 73E7 0D25\n" "uptime 0\n" "bandwidth 1073741824 1073741824 0\n" "extra-info-digest 7ECB757002EB9B5838B13AE6F2357A5E585131B8\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALsNBChcLVndlS4HNXL3hxBJVgXctATz6yXcJt3bkDB5cjv7Q9fqN3Ue\n" "j3SI1OUBx4YrLcSLD/hELHVilLrrfbaraAFfAsydlRLjTVcMRx5FFlDd0E7TAadc\n" "71CkTipNnjwqz1mTRKkEFeepnh/JaFDidY9ER1rMBA5JRyBvqrD9AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAPgipA8yLj1kqrMlAH7cK7IQEdmqmfNHGXdkYQ+TKtfLh0zeEIvvh9yh\n" "k+vKHS+HVoHo3tecB9QjJyDyyJTiETXCupSOY+ebG648JADAvv8v1WiE+KBXtjpl\n" "qgDTrDj5CwGuY6cvQdej5yg1UAVlMMZSg3thL3tCYtQbOq66lAlnAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "hidden-service-dir\n" "ntor-onion-key q02F3AQsCX7+zXNpfTqBF8O8lusPhRJpQVxOnBvbOwc=\n" "reject *:25\n" "reject *:119\n" "reject *:135-139\n" "reject *:445\n" "reject *:563\n" "reject *:1214\n" "reject *:4661-4666\n" "reject *:6346-6429\n" "reject *:6699\n" "reject *:6881-6999\n" "accept *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "L1fdgoN/eXgdzIIXO63W4yGoC9lRozMU+T0Fimhd/XFV8qxeUT83Vgf63vxLUHIb\n" "D4a80Wj7Pm4y5a766qLGXxlz2FYjCdkp070UpgZneB+VifUlFd/bNAjsiYTstBKM\n" "EI2L0mhl9d/7KK8vgtadHdX1z1u7QjyF6ccnzhfqeiY=\n" "-----END SIGNATURE-----\n" "@uploaded-at 2014-06-08 19:20:12\n" "@source \"127.0.0.1\"\n" "router test003r 127.0.0.1 5003 0 7003\n" "platform Tor 0.2.5.3-alpha-dev on Linux\n" "protocols Link 1 2 Circuit 1\n" "published 2014-06-08 19:20:11\n" "fingerprint 71FD 3A35 F705 8020 D595 B711 D52A 9A0A 99BB B467\n" "uptime 0\n" "bandwidth 1073741824 1073741824 0\n" "extra-info-digest 3796BE0A95B699595445DFD3453CA2074E75BCE8\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAL44ctIioIfCYFzMTYNfK5qFAPGGUpsAFmS8pThQEY/tJU14+frJDBrC\n" "BkLvBs05Bw7xOUb0f2geiYGowBA6028smiq5HzTO7Kaga8vfV7AnANPX+n9cfHCr\n" "/2cMnKkT/GZzpdk0WbUw5Kc/G1ATIPFQHA8gZAi1fsSIDDn3GRV5AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALlPo5AI1mVTi+194yOSf40caoFlxSTfXt8KjGVa1dO/bpX7L3noOjYg\n" "goU4Aqim7BHmBWQDE/tZNTrchFoLQFHi9N4pv/0ND3sY904pzqGpe3FeTuU8P9Jg\n" "q2w3MeO3GwG8CJf4FOdSkgi8UKkJhOld4g4kViQbrFLXfdFvnT/zAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "hidden-service-dir\n" "ntor-onion-key qluYCRrsesOTkavCLnNK6H1ToywyDquCyYeP0h/qol4=\n" "reject *:25\n" "reject *:119\n" "reject *:135-139\n" "reject *:445\n" "reject *:563\n" "reject *:1214\n" "reject *:4661-4666\n" "reject *:6346-6429\n" "reject *:6699\n" "reject *:6881-6999\n" "accept *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "d09K7rW/OpVzoUpfZXJuJW7a+P4pROCOZTgvDUIy/Nv+EAjcYqv95PlJ8cAMqnn3\n" "1oQibRmmQwn0OmG5cB8NaZiueaVIRheGzHEM8rndpHn5oFXdFvV7KKjScvfuBbTk\n" "RYME8XyawRaqsEZnwirDDlZuiZOjdQs8bbGsko3grJE=\n" "-----END SIGNATURE-----\n" "@uploaded-at 2014-06-08 19:20:12\n" "@source \"127.0.0.1\"\n" "router test005r 127.0.0.1 5005 0 7005\n" "platform Tor 0.2.5.3-alpha-dev on Linux\n" "protocols Link 1 2 Circuit 1\n" "published 2014-06-08 19:20:11\n" "fingerprint EB6E 42ED E6BF 5EE0 19F5 EFC1 53AD 094C 1327 7B76\n" "uptime 0\n" "bandwidth 1073741824 1073741824 0\n" "extra-info-digest C031EE4E1AE826C1E3C4E21D81C961869E63F5D2\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMd9Fm4KTSjFDzEABPZ1fwBCC2DNgee6nAmlde8FRbCVfcIHRiJyv9YG\n" "h530yUJal3hBfiWwy/SBA4LDz1flNCEwJm81s3waj4T9c676dAOLPcnOcJM5SbaQ\n" "hYPDrIZLEZHAk+IoM+avKYYocwCJXwx6WTtsedF0wJBZ9mQAJERJAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAKT7ldhV43S1CgoER/pU0Rigf0NzcSy25DQJrMRQnNmXnL03Dwuv/Iu7\n" "dCjgg64odnvSkXHFhkbjGcg8aXikvfbMyZTbsD8NrrP6FS6pfgPgZD9W2TK7QdHI\n" "QXwx1IYaaJK4nDUNfJhjrclydEdxmHbO1nLG1aS0ypn/G0EBpOSnAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "hidden-service-dir\n" "ntor-onion-key umFmyRPA0dIsi0CFYCbGIPe2+OUkyslTkKKDEohjQQg=\n" "reject *:25\n" "reject *:119\n" "reject *:135-139\n" "reject *:445\n" "reject *:563\n" "reject *:1214\n" "reject *:4661-4666\n" "reject *:6346-6429\n" "reject *:6699\n" "reject *:6881-6999\n" "accept *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "JiXEbqPgDPWEb9DzCYINRXfmvMIc/IRtvshS8Vmmn7DW67TrTLKCEAnisGo92gMA\n" "bhxGb9G5Mxq/8YqGoqdI2Vp6tfKlz/9AmjHzFAo01y42gafXIdr1oUS2RimA8jfF\n" "hwfQkbG0FYEsJrH3EUa8sMhcjsEaohK/kgklMR7OgQY=\n" "-----END SIGNATURE-----\n" "@uploaded-at 2014-06-08 19:20:12\n" "@source \"127.0.0.1\"\n" "router test007r 127.0.0.1 5007 0 7007\n" "platform Tor 0.2.5.3-alpha-dev on Linux\n" "protocols Link 1 2 Circuit 1\n" "published 2014-06-08 19:20:11\n" "fingerprint DABD 2AAF 8C9F 3B71 7839 9C08 DCD8 CD9D 341D 0002\n" "uptime 0\n" "bandwidth 1073741824 1073741824 0\n" "extra-info-digest F80104A0DFFB4EB429325D41D1F71E5BF8C6C726\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAL42fYAriR/JeB/9NpVq5Y5EEHca+ugIpaSdRfbopWDtFjXLEk2jmO5A\n" "KoAGIkTKDr7e9101x63H+0Nh/7w3uYs/WqTXEH8/1sHwe+0PY2HL0S6qhlOo6X54\n" "EfK0nDDBAWFOpyiAMHRk8JVikKb56+FVIhCJgi1RIbLIiUQK2/kxAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAKQj2U5hmB68V6NQBqD8DfIkJjovvM8t6nGfYpkT8ORsROnmgI5mjM38\n" "cmh5GIjY9RgoOWolLmsWQ4SXtS0FvrPft1M61UMTSHzlrEeuod5KenV7vGlX2TxT\n" "0DoA5TL9yY7CmxCk8CNRCtN/g7WocgIiP4KCIiEZ4VE6LIb6sxUnAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "hidden-service-dir\n" "ntor-onion-key 1UBS8rTlL39u9YxRJWhz+GTG1dS15VRi4au1i5qZOyI=\n" "reject *:25\n" "reject *:119\n" "reject *:135-139\n" "reject *:445\n" "reject *:563\n" "reject *:1214\n" "reject *:4661-4666\n" "reject *:6346-6429\n" "reject *:6699\n" "reject *:6881-6999\n" "accept *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "m7xHh+XPdLN+qcMLz1dBAEAmcdCFrtdseMHCc0FyAP2kXdayxqe3o2IOOHN++bTH\n" "Y5iHsZembsIJJ+D/d0YEKWKh42TUWCXBu0Gbfc4OcNuR6PFlTWO2wk7rDT3HOiFr\n" "pe3wJqZYkLxlBDamROAlMMRe71iag89H/4EulC18opw=\n" "-----END SIGNATURE-----\n"; tor-0.2.7.6/src/test/test-child.c0000644000175000017500000000235212621363246013372 00000000000000/* Copyright (c) 2011-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include #include "orconfig.h" #ifdef _WIN32 #define WINDOWS_LEAN_AND_MEAN #include #else #include #endif #include #ifdef _WIN32 #define SLEEP(sec) Sleep((sec)*1000) #else #define SLEEP(sec) sleep(sec) #endif /** Trivial test program which prints out its command line arguments so we can * check if tor_spawn_background() works */ int main(int argc, char **argv) { int i; int delay = 1; int fast = 0; if (argc > 1) { if (!strcmp(argv[1], "--hang")) { delay = 60; } else if (!strcmp(argv[1], "--fast")) { fast = 1; delay = 0; } } fprintf(stdout, "OUT\n"); fprintf(stderr, "ERR\n"); for (i = 1; i < argc; i++) fprintf(stdout, "%s\n", argv[i]); if (!fast) fprintf(stdout, "SLEEPING\n"); /* We need to flush stdout so that test_util_spawn_background_partial_read() succeed. Otherwise ReadFile() will get the entire output in one */ // XXX: Can we make stdio flush on newline? fflush(stdout); if (!fast) SLEEP(1); fprintf(stdout, "DONE\n"); fflush(stdout); if (fast) return 0; while (--delay) { SLEEP(1); } return 0; } tor-0.2.7.6/src/test/test_socks.c0000644000175000017500000004124712621363246013521 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "or.h" #include "buffers.h" #include "config.h" #include "test.h" typedef struct socks_test_data_t { socks_request_t *req; buf_t *buf; } socks_test_data_t; static void * socks_test_setup(const struct testcase_t *testcase) { socks_test_data_t *data = tor_malloc(sizeof(socks_test_data_t)); (void)testcase; data->buf = buf_new_with_capacity(256); data->req = socks_request_new(); config_register_addressmaps(get_options()); return data; } static int socks_test_cleanup(const struct testcase_t *testcase, void *ptr) { socks_test_data_t *data = ptr; (void)testcase; buf_free(data->buf); socks_request_free(data->req); tor_free(data); return 1; } const struct testcase_setup_t socks_setup = { socks_test_setup, socks_test_cleanup }; #define SOCKS_TEST_INIT() \ socks_test_data_t *testdata = ptr; \ buf_t *buf = testdata->buf; \ socks_request_t *socks = testdata->req; #define ADD_DATA(buf, s) \ write_to_buf(s, sizeof(s)-1, buf) static void socks_request_clear(socks_request_t *socks) { tor_free(socks->username); tor_free(socks->password); memset(socks, 0, sizeof(socks_request_t)); } /** Perform unsupported SOCKS 4 commands */ static void test_socks_4_unsupported_commands(void *ptr) { SOCKS_TEST_INIT(); /* SOCKS 4 Send BIND [02] to IP address 2.2.2.2:4369 */ ADD_DATA(buf, "\x04\x02\x11\x11\x02\x02\x02\x02\x00"); tt_assert(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks) == -1); tt_int_op(4,OP_EQ, socks->socks_version); tt_int_op(0,OP_EQ, socks->replylen); /* XXX: shouldn't tor reply? */ done: ; } /** Perform supported SOCKS 4 commands */ static void test_socks_4_supported_commands(void *ptr) { SOCKS_TEST_INIT(); tt_int_op(0,OP_EQ, buf_datalen(buf)); /* SOCKS 4 Send CONNECT [01] to IP address 2.2.2.2:4370 */ ADD_DATA(buf, "\x04\x01\x11\x12\x02\x02\x02\x03\x00"); tt_assert(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks) == 1); tt_int_op(4,OP_EQ, socks->socks_version); tt_int_op(0,OP_EQ, socks->replylen); /* XXX: shouldn't tor reply? */ tt_int_op(SOCKS_COMMAND_CONNECT,OP_EQ, socks->command); tt_str_op("2.2.2.3",OP_EQ, socks->address); tt_int_op(4370,OP_EQ, socks->port); tt_assert(socks->got_auth == 0); tt_assert(! socks->username); tt_int_op(0,OP_EQ, buf_datalen(buf)); socks_request_clear(socks); /* SOCKS 4 Send CONNECT [01] to IP address 2.2.2.2:4369 with userid*/ ADD_DATA(buf, "\x04\x01\x11\x12\x02\x02\x02\x04me\x00"); tt_assert(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks) == 1); tt_int_op(4,OP_EQ, socks->socks_version); tt_int_op(0,OP_EQ, socks->replylen); /* XXX: shouldn't tor reply? */ tt_int_op(SOCKS_COMMAND_CONNECT,OP_EQ, socks->command); tt_str_op("2.2.2.4",OP_EQ, socks->address); tt_int_op(4370,OP_EQ, socks->port); tt_assert(socks->got_auth == 1); tt_assert(socks->username); tt_int_op(2,OP_EQ, socks->usernamelen); tt_mem_op("me",OP_EQ, socks->username, 2); tt_int_op(0,OP_EQ, buf_datalen(buf)); socks_request_clear(socks); /* SOCKS 4a Send RESOLVE [F0] request for torproject.org */ ADD_DATA(buf, "\x04\xF0\x01\x01\x00\x00\x00\x02me\x00torproject.org\x00"); tt_assert(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks) == 1); tt_int_op(4,OP_EQ, socks->socks_version); tt_int_op(0,OP_EQ, socks->replylen); /* XXX: shouldn't tor reply? */ tt_str_op("torproject.org",OP_EQ, socks->address); tt_int_op(0,OP_EQ, buf_datalen(buf)); done: ; } /** Perform unsupported SOCKS 5 commands */ static void test_socks_5_unsupported_commands(void *ptr) { SOCKS_TEST_INIT(); /* SOCKS 5 Send unsupported BIND [02] command */ ADD_DATA(buf, "\x05\x02\x00\x01"); tt_int_op(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks),OP_EQ, 0); tt_int_op(0,OP_EQ, buf_datalen(buf)); tt_int_op(5,OP_EQ, socks->socks_version); tt_int_op(2,OP_EQ, socks->replylen); tt_int_op(5,OP_EQ, socks->reply[0]); tt_int_op(0,OP_EQ, socks->reply[1]); ADD_DATA(buf, "\x05\x02\x00\x01\x02\x02\x02\x01\x01\x01"); tt_int_op(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks),OP_EQ, -1); tt_int_op(5,OP_EQ,socks->socks_version); tt_int_op(10,OP_EQ,socks->replylen); tt_int_op(5,OP_EQ,socks->reply[0]); tt_int_op(SOCKS5_COMMAND_NOT_SUPPORTED,OP_EQ,socks->reply[1]); tt_int_op(1,OP_EQ,socks->reply[3]); buf_clear(buf); socks_request_clear(socks); /* SOCKS 5 Send unsupported UDP_ASSOCIATE [03] command */ ADD_DATA(buf, "\x05\x02\x00\x01"); tt_int_op(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks),OP_EQ, 0); tt_int_op(5,OP_EQ, socks->socks_version); tt_int_op(2,OP_EQ, socks->replylen); tt_int_op(5,OP_EQ, socks->reply[0]); tt_int_op(0,OP_EQ, socks->reply[1]); ADD_DATA(buf, "\x05\x03\x00\x01\x02\x02\x02\x01\x01\x01"); tt_int_op(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks),OP_EQ, -1); tt_int_op(5,OP_EQ,socks->socks_version); tt_int_op(10,OP_EQ,socks->replylen); tt_int_op(5,OP_EQ,socks->reply[0]); tt_int_op(SOCKS5_COMMAND_NOT_SUPPORTED,OP_EQ,socks->reply[1]); tt_int_op(1,OP_EQ,socks->reply[3]); done: ; } /** Perform supported SOCKS 5 commands */ static void test_socks_5_supported_commands(void *ptr) { SOCKS_TEST_INIT(); /* SOCKS 5 Send CONNECT [01] to IP address 2.2.2.2:4369 */ ADD_DATA(buf, "\x05\x01\x00"); tt_int_op(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks),OP_EQ, 0); tt_int_op(5,OP_EQ, socks->socks_version); tt_int_op(2,OP_EQ, socks->replylen); tt_int_op(5,OP_EQ, socks->reply[0]); tt_int_op(0,OP_EQ, socks->reply[1]); ADD_DATA(buf, "\x05\x01\x00\x01\x02\x02\x02\x02\x11\x11"); tt_int_op(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks),OP_EQ, 1); tt_str_op("2.2.2.2",OP_EQ, socks->address); tt_int_op(4369,OP_EQ, socks->port); tt_int_op(0,OP_EQ, buf_datalen(buf)); socks_request_clear(socks); /* SOCKS 5 Send CONNECT [01] to FQDN torproject.org:4369 */ ADD_DATA(buf, "\x05\x01\x00"); ADD_DATA(buf, "\x05\x01\x00\x03\x0Etorproject.org\x11\x11"); tt_int_op(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks),OP_EQ, 1); tt_int_op(5,OP_EQ, socks->socks_version); tt_int_op(2,OP_EQ, socks->replylen); tt_int_op(5,OP_EQ, socks->reply[0]); tt_int_op(0,OP_EQ, socks->reply[1]); tt_str_op("torproject.org",OP_EQ, socks->address); tt_int_op(4369,OP_EQ, socks->port); tt_int_op(0,OP_EQ, buf_datalen(buf)); socks_request_clear(socks); /* SOCKS 5 Send RESOLVE [F0] request for torproject.org:4369 */ ADD_DATA(buf, "\x05\x01\x00"); ADD_DATA(buf, "\x05\xF0\x00\x03\x0Etorproject.org\x01\x02"); tt_assert(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks) == 1); tt_int_op(5,OP_EQ, socks->socks_version); tt_int_op(2,OP_EQ, socks->replylen); tt_int_op(5,OP_EQ, socks->reply[0]); tt_int_op(0,OP_EQ, socks->reply[1]); tt_str_op("torproject.org",OP_EQ, socks->address); tt_int_op(0,OP_EQ, buf_datalen(buf)); socks_request_clear(socks); /* SOCKS 5 Should reject RESOLVE [F0] request for IPv4 address * string if SafeSocks is enabled. */ ADD_DATA(buf, "\x05\x01\x00"); ADD_DATA(buf, "\x05\xF0\x00\x03\x07"); ADD_DATA(buf, "8.8.8.8"); ADD_DATA(buf, "\x01\x02"); tt_assert(fetch_from_buf_socks(buf,socks,get_options()->TestSocks,1) == -1); tt_int_op(5,OP_EQ,socks->socks_version); tt_int_op(10,OP_EQ,socks->replylen); tt_int_op(5,OP_EQ,socks->reply[0]); tt_int_op(SOCKS5_NOT_ALLOWED,OP_EQ,socks->reply[1]); tt_int_op(1,OP_EQ,socks->reply[3]); socks_request_clear(socks); /* SOCKS 5 should reject RESOLVE [F0] reject for IPv6 address * string if SafeSocks is enabled. */ ADD_DATA(buf, "\x05\x01\x00"); ADD_DATA(buf, "\x05\xF0\x00\x03\x27"); ADD_DATA(buf, "2001:0db8:85a3:0000:0000:8a2e:0370:7334"); ADD_DATA(buf, "\x01\x02"); tt_assert(fetch_from_buf_socks(buf,socks,get_options()->TestSocks,1) == -1); tt_int_op(5,OP_EQ,socks->socks_version); tt_int_op(10,OP_EQ,socks->replylen); tt_int_op(5,OP_EQ,socks->reply[0]); tt_int_op(SOCKS5_NOT_ALLOWED,OP_EQ,socks->reply[1]); tt_int_op(1,OP_EQ,socks->reply[3]); socks_request_clear(socks); /* SOCKS 5 Send RESOLVE_PTR [F1] for IP address 2.2.2.5 */ ADD_DATA(buf, "\x05\x01\x00"); ADD_DATA(buf, "\x05\xF1\x00\x01\x02\x02\x02\x05\x01\x03"); tt_assert(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks) == 1); tt_int_op(5,OP_EQ, socks->socks_version); tt_int_op(2,OP_EQ, socks->replylen); tt_int_op(5,OP_EQ, socks->reply[0]); tt_int_op(0,OP_EQ, socks->reply[1]); tt_str_op("2.2.2.5",OP_EQ, socks->address); tt_int_op(0,OP_EQ, buf_datalen(buf)); done: ; } /** Perform SOCKS 5 authentication */ static void test_socks_5_no_authenticate(void *ptr) { SOCKS_TEST_INIT(); /*SOCKS 5 No Authentication */ ADD_DATA(buf,"\x05\x01\x00"); tt_assert(!fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks)); tt_int_op(2,OP_EQ, socks->replylen); tt_int_op(5,OP_EQ, socks->reply[0]); tt_int_op(SOCKS_NO_AUTH,OP_EQ, socks->reply[1]); tt_int_op(0,OP_EQ, buf_datalen(buf)); /*SOCKS 5 Send username/password anyway - pretend to be broken */ ADD_DATA(buf,"\x01\x02\x01\x01\x02\x01\x01"); tt_assert(!fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks)); tt_int_op(5,OP_EQ, socks->socks_version); tt_int_op(2,OP_EQ, socks->replylen); tt_int_op(1,OP_EQ, socks->reply[0]); tt_int_op(0,OP_EQ, socks->reply[1]); tt_int_op(2,OP_EQ, socks->usernamelen); tt_int_op(2,OP_EQ, socks->passwordlen); tt_mem_op("\x01\x01",OP_EQ, socks->username, 2); tt_mem_op("\x01\x01",OP_EQ, socks->password, 2); done: ; } /** Perform SOCKS 5 authentication */ static void test_socks_5_authenticate(void *ptr) { SOCKS_TEST_INIT(); /* SOCKS 5 Negotiate username/password authentication */ ADD_DATA(buf, "\x05\x01\x02"); tt_assert(!fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks)); tt_int_op(2,OP_EQ, socks->replylen); tt_int_op(5,OP_EQ, socks->reply[0]); tt_int_op(SOCKS_USER_PASS,OP_EQ, socks->reply[1]); tt_int_op(5,OP_EQ, socks->socks_version); tt_int_op(0,OP_EQ, buf_datalen(buf)); /* SOCKS 5 Send username/password */ ADD_DATA(buf, "\x01\x02me\x08mypasswd"); tt_assert(!fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks)); tt_int_op(5,OP_EQ, socks->socks_version); tt_int_op(2,OP_EQ, socks->replylen); tt_int_op(1,OP_EQ, socks->reply[0]); tt_int_op(0,OP_EQ, socks->reply[1]); tt_int_op(2,OP_EQ, socks->usernamelen); tt_int_op(8,OP_EQ, socks->passwordlen); tt_mem_op("me",OP_EQ, socks->username, 2); tt_mem_op("mypasswd",OP_EQ, socks->password, 8); done: ; } /** Perform SOCKS 5 authentication and send data all in one go */ static void test_socks_5_authenticate_with_data(void *ptr) { SOCKS_TEST_INIT(); /* SOCKS 5 Negotiate username/password authentication */ ADD_DATA(buf, "\x05\x01\x02"); tt_assert(!fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks)); tt_int_op(2,OP_EQ, socks->replylen); tt_int_op(5,OP_EQ, socks->reply[0]); tt_int_op(SOCKS_USER_PASS,OP_EQ, socks->reply[1]); tt_int_op(5,OP_EQ, socks->socks_version); tt_int_op(0,OP_EQ, buf_datalen(buf)); /* SOCKS 5 Send username/password */ /* SOCKS 5 Send CONNECT [01] to IP address 2.2.2.2:4369 */ ADD_DATA(buf, "\x01\x02me\x03you\x05\x01\x00\x01\x02\x02\x02\x02\x11\x11"); tt_assert(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks) == 1); tt_int_op(5,OP_EQ, socks->socks_version); tt_int_op(2,OP_EQ, socks->replylen); tt_int_op(1,OP_EQ, socks->reply[0]); tt_int_op(0,OP_EQ, socks->reply[1]); tt_str_op("2.2.2.2",OP_EQ, socks->address); tt_int_op(4369,OP_EQ, socks->port); tt_int_op(2,OP_EQ, socks->usernamelen); tt_int_op(3,OP_EQ, socks->passwordlen); tt_mem_op("me",OP_EQ, socks->username, 2); tt_mem_op("you",OP_EQ, socks->password, 3); done: ; } /** Perform SOCKS 5 authentication before method negotiated */ static void test_socks_5_auth_before_negotiation(void *ptr) { SOCKS_TEST_INIT(); /* SOCKS 5 Send username/password */ ADD_DATA(buf, "\x01\x02me\x02me"); tt_assert(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks) == -1); tt_int_op(0,OP_EQ, socks->socks_version); tt_int_op(0,OP_EQ, socks->replylen); tt_int_op(0,OP_EQ, socks->reply[0]); tt_int_op(0,OP_EQ, socks->reply[1]); done: ; } /** Perform malformed SOCKS 5 commands */ static void test_socks_5_malformed_commands(void *ptr) { SOCKS_TEST_INIT(); /* XXX: Stringified address length > MAX_SOCKS_ADDR_LEN will never happen */ /** SOCKS 5 Send CONNECT [01] to IP address 2.2.2.2:4369, with SafeSocks set */ ADD_DATA(buf, "\x05\x01\x00"); ADD_DATA(buf, "\x05\x01\x00\x01\x02\x02\x02\x02\x11\x11"); tt_int_op(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, 1), OP_EQ, -1); tt_int_op(5,OP_EQ,socks->socks_version); tt_int_op(10,OP_EQ,socks->replylen); tt_int_op(5,OP_EQ,socks->reply[0]); tt_int_op(SOCKS5_NOT_ALLOWED,OP_EQ,socks->reply[1]); tt_int_op(1,OP_EQ,socks->reply[3]); buf_clear(buf); socks_request_clear(socks); /* SOCKS 5 Send RESOLVE_PTR [F1] for FQDN torproject.org */ ADD_DATA(buf, "\x05\x01\x00"); ADD_DATA(buf, "\x05\xF1\x00\x03\x0Etorproject.org\x11\x11"); tt_int_op(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks),OP_EQ, -1); tt_int_op(5,OP_EQ,socks->socks_version); tt_int_op(10,OP_EQ,socks->replylen); tt_int_op(5,OP_EQ,socks->reply[0]); tt_int_op(SOCKS5_ADDRESS_TYPE_NOT_SUPPORTED,OP_EQ,socks->reply[1]); tt_int_op(1,OP_EQ,socks->reply[3]); buf_clear(buf); socks_request_clear(socks); /* XXX: len + 1 > MAX_SOCKS_ADDR_LEN (FQDN request) will never happen */ /* SOCKS 5 Send CONNECT [01] to FQDN """"".com */ ADD_DATA(buf, "\x05\x01\x00"); ADD_DATA(buf, "\x05\x01\x00\x03\x09\"\"\"\"\".com\x11\x11"); tt_int_op(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks),OP_EQ, -1); tt_int_op(5,OP_EQ,socks->socks_version); tt_int_op(10,OP_EQ,socks->replylen); tt_int_op(5,OP_EQ,socks->reply[0]); tt_int_op(SOCKS5_GENERAL_ERROR,OP_EQ,socks->reply[1]); tt_int_op(1,OP_EQ,socks->reply[3]); buf_clear(buf); socks_request_clear(socks); /* SOCKS 5 Send CONNECT [01] to address type 0x23 */ ADD_DATA(buf, "\x05\x01\x00"); ADD_DATA(buf, "\x05\x01\x00\x23\x02\x02\x02\x02\x11\x11"); tt_int_op(fetch_from_buf_socks(buf, socks, get_options()->TestSocks, get_options()->SafeSocks),OP_EQ, -1); tt_int_op(5,OP_EQ,socks->socks_version); tt_int_op(10,OP_EQ,socks->replylen); tt_int_op(5,OP_EQ,socks->reply[0]); tt_int_op(SOCKS5_ADDRESS_TYPE_NOT_SUPPORTED,OP_EQ,socks->reply[1]); tt_int_op(1,OP_EQ,socks->reply[3]); done: ; } #define SOCKSENT(name) \ { #name, test_socks_##name, TT_FORK, &socks_setup, NULL } struct testcase_t socks_tests[] = { SOCKSENT(4_unsupported_commands), SOCKSENT(4_supported_commands), SOCKSENT(5_unsupported_commands), SOCKSENT(5_supported_commands), SOCKSENT(5_no_authenticate), SOCKSENT(5_auth_before_negotiation), SOCKSENT(5_authenticate), SOCKSENT(5_authenticate_with_data), SOCKSENT(5_malformed_commands), END_OF_TESTCASES }; tor-0.2.7.6/src/test/ed25519_vectors.inc0000644000175000017500000001702712621363246014431 00000000000000/* * Test vectors for our ed25519 implementation and related * functions. These were automatically generated by the * ed25519_exts_ref.py script. */ /** * Secret key seeds used as inputs for the ed25519 test vectors. * Randomly generated. */ static const char *ED25519_SECRET_KEYS[] = { "26c76712d89d906e6672dafa614c42e5cb1caac8c6568e4d2493087db51f0d36", "fba7a5366b5cb98c2667a18783f5cf8f4f8d1a2ce939ad22a6e685edde85128d", "67e3aa7a14fac8445d15e45e38a523481a69ae35513c9e4143eb1c2196729a0e", "d51385942033a76dc17f089a59e6a5a7fe80d9c526ae8ddd8c3a506b99d3d0a6", "5c8eac469bb3f1b85bc7cd893f52dc42a9ab66f1b02b5ce6a68e9b175d3bb433", "eda433d483059b6d1ff8b7cfbd0fe406bfb23722c8f3c8252629284573b61b86", "4377c40431c30883c5fbd9bc92ae48d1ed8a47b81d13806beac5351739b5533d", "c6bbcce615839756aed2cc78b1de13884dd3618f48367a17597a16c1cd7a290b", }; /** * Secret ed25519 keys after expansion from seeds. This is how Tor * represents them internally. */ static const char *ED25519_EXPANDED_SECRET_KEYS[] = { "c0a4de23cc64392d85aa1da82b3defddbea946d13bb053bf8489fa9296281f495022f1" "f7ec0dcf52f07d4c7965c4eaed121d5d88d0a8ff546b06116a20e97755", "18a8a69a06790dac778e882f7e868baacfa12521a5c058f5194f3a729184514a2a656f" "e7799c3e41f43d756da8d9cd47a061316cfe6147e23ea2f90d1ca45f30", "58d84f8862d2ecfa30eb491a81c36d05b574310ea69dae18ecb57e992a896656b98218" "7ee96c15bf4caeeab2d0b0ae4cd0b8d17470fc7efa98bb26428f4ef36d", "50702d20b3550c6e16033db5ad4fba16436f1ecc7485be6af62b0732ceb5d173c47ccd" "9d044b6ea99dd99256adcc9c62191be194e7cb1a5b58ddcec85d876a2b", "7077464c864c2ed5ed21c9916dc3b3ba6256f8b742fec67658d8d233dadc8d5a7a82c3" "71083cc86892c2c8782dda2a09b6baf016aec51b689183ae59ce932ff2", "8883c1387a6c86fc0bd7b9f157b4e4cd83f6885bf55e2706d2235d4527a2f05311a359" "5953282e436df0349e1bb313a19b3ddbf7a7b91ecce8a2c34abadb38b3", "186791ac8d03a3ac8efed6ac360467edd5a3bed2d02b3be713ddd5be53b3287ee37436" "e5fd7ac43794394507ad440ecfdf59c4c255f19b768a273109e06d7d8e", "b003077c1e52a62308eef7950b2d532e1d4a7eea50ad22d8ac11b892851f1c40ffb9c9" "ff8dcd0c6c233f665a2e176324d92416bfcfcd1f787424c0c667452d86", }; /** * Public keys derived from the above secret keys */ static const char *ED25519_PUBLIC_KEYS[] = { "c2247870536a192d142d056abefca68d6193158e7c1a59c1654c954eccaff894", "1519a3b15816a1aafab0b213892026ebf5c0dc232c58b21088d88cb90e9b940d", "081faa81992e360ea22c06af1aba096e7a73f1c665bc8b3e4e531c46455fd1dd", "73cfa1189a723aad7966137cbffa35140bb40d7e16eae4c40b79b5f0360dd65a", "66c1a77104d86461b6f98f73acf3cd229c80624495d2d74d6fda1e940080a96b", "d21c294db0e64cb2d8976625786ede1d9754186ae8197a64d72f68c792eecc19", "c4d58b4cf85a348ff3d410dd936fa460c4f18da962c01b1963792b9dcc8a6ea6", "95126f14d86494020665face03f2d42ee2b312a85bc729903eb17522954a1c4a", }; /** * The curve25519 public keys from which the ed25519 keys can be * derived. Used to test our 'derive ed25519 from curve25519' * code. */ static const char *ED25519_CURVE25519_PUBLIC_KEYS[] = { "17ba77846e04c7ee5ca17cade774ac1884408f9701f439d4df32cbd8736c6a1f", "022be2124bc1899a78ba2b4167d191af3b59cadf94f0382bc31ce183a117f161", "bf4fd38ef22f718f03c0a12ba5127bd1e3afd494793753f519728b29cc577571", "56c493e490261cef31633efd2461d2b896908e90459e4eecde950a895aef681d", "089675a3e8ff2a7d8b2844a79269c95b7f97a4b8b5ea0cbeec669c6f2dea9b39", "59e20dcb691c4a345fe86c8a79ac817e5b514d84bbf0512a842a08e43f7f087e", "9e43b820b320eda35f66f122c155b2bf8e2192c468617b7115bf067d19e08369", "861f33296cb57f8f01e4a5e8a7e5d5d7043a6247586ab36dea8a1a3c4403ee30", }; /** * Parameters used for key blinding tests. Randomly generated. */ static const char *ED25519_BLINDING_PARAMS[] = { "54a513898b471d1d448a2f3c55c1de2c0ef718c447b04497eeb999ed32027823", "831e9b5325b5d31b7ae6197e9c7a7baf2ec361e08248bce055908971047a2347", "ac78a1d46faf3bfbbdc5af5f053dc6dc9023ed78236bec1760dadfd0b2603760", "f9c84dc0ac31571507993df94da1b3d28684a12ad14e67d0a068aba5c53019fc", "b1fe79d1dec9bc108df69f6612c72812755751f21ecc5af99663b30be8b9081f", "81f1512b63ab5fb5c1711a4ec83d379c420574aedffa8c3368e1c3989a3a0084", "97f45142597c473a4b0e9a12d64561133ad9e1155fe5a9807fe6af8a93557818", "3f44f6a5a92cde816635dfc12ade70539871078d2ff097278be2a555c9859cd0", }; /** * Blinded secret keys for testing key blinding. The nth blinded * key corresponds to the nth secret key blidned with the nth * blinding parameter. */ static const char *ED25519_BLINDED_SECRET_KEYS[] = { "014e83abadb2ca9a27e0ffe23920333d817729f48700e97656ec2823d694050e171d43" "f24e3f53e70ec7ac280044ac77d4942dee5d6807118a59bdf3ee647e89", "fad8cca0b4335847795288b1452508752b253e64e6c7c78d4a02dbbd7d46aa0eb8ceff" "20dfcf53eb52b891fc078c934efbf0353af7242e7dc51bb32a093afa29", "116eb0ae0a4a91763365bdf86db427b00862db448487808788cc339ac10e5e089217f5" "2e92797462bd890fc274672e05c98f2c82970d640084781334aae0f940", "bd1fbb0ee5acddc4adbcf5f33e95d9445f40326ce579fdd764a24483a9ccb20f509ece" "e77082ce088f7c19d5a00e955eeef8df6fa41686abc1030c2d76807733", "237f5345cefe8573ce9fa7e216381a1172796c9e3f70668ab503b1352952530fb57b95" "a440570659a440a3e4771465022a8e67af86bdf2d0990c54e7bb87ff9a", "ba8ff23bc4ad2b739e1ccffc9fbc7837053ea81cdfdb15073f56411cfbae1d0ec492fc" "87d5ec2a1b185ca5a40541fdef0b1e128fd5c2380c888bfa924711bcab", "0fa68f969de038c7a90a4a74ee6167c77582006f2dedecc1956501ba6b6fb10391b476" "8f8e556d78f4bdcb9a13b6f6066fe81d3134ae965dc48cd0785b3af2b8", "deaa3456d1c21944d5dcd361a646858c6cf9336b0a6851d925717eb1ae186902053d9c" "00c81e1331c06ab50087be8cfc7dc11691b132614474f1aa9c2503cccd", }; /** * Blinded public keys for testing key blinding. The nth blinded * key corresponds to the nth public key blidned with the nth * blinding parameter. */ static const char *ED25519_BLINDED_PUBLIC_KEYS[] = { "722d6da6348e618967ef782e71061e27163a8b35f21856475d9d2023f65b6495", "1dffa0586da6cbfcff2024eedf4fc6c818242d9a82dbbe635d6da1b975a1160d", "5ed81f98fed5a6acda4ea6da2c34fab0ab359d950c510c256473f1f33ff438b4", "6e6f92a54fb282120c46d9603df41135f025bc1f58f283809d04be96aeb04040", "cda236f28edc4c7e02d18007b8dab49d669265b0f7aefb1824d7cc8e73a2cd63", "367b03b17b67ca7329b89a520bdab91782402a41cd67264e34b5541a4b3f875b", "8d486b03ac4e3b486b7a1d563706c7fdac75aee789a7cf6f22789eedeff61a31", "9f297ff0aa2ceda91c5ab1b6446f12533d145940de6d850dc323417afde0cb78", }; /** * Signatures of the public keys, made with their corresponding * secret keys. */ static const char *ED25519_SELF_SIGNATURES[] = { "d23188eac3773a316d46006fa59c095060be8b1a23582a0dd99002a82a0662bd246d84" "49e172e04c5f46ac0d1404cebe4aabd8a75a1457aa06cae41f3334f104", "3a785ac1201c97ee5f6f0d99323960d5f264c7825e61aa7cc81262f15bef75eb4fa572" "3add9b9d45b12311b6d403eb3ac79ff8e4e631fc3cd51e4ad2185b200b", "cf431fd0416bfbd20c9d95ef9b723e2acddffb33900edc72195dea95965d52d888d30b" "7b8a677c0bd8ae1417b1e1a0ec6700deadd5d8b54b6689275e04a04509", "2375380cd72d1a6c642aeddff862be8a5804b916acb72c02d9ed052c1561881aa658a5" "af856fcd6d43113e42f698cd6687c99efeef7f2ce045824440d26c5d00", "2385a472f599ca965bbe4d610e391cdeabeba9c336694b0d6249e551458280be122c24" "41dd9746a81bbfb9cd619364bab0df37ff4ceb7aefd24469c39d3bc508", "e500cd0b8cfff35442f88008d894f3a2fa26ef7d3a0ca5714ae0d3e2d40caae58ba7cd" "f69dd126994dad6be536fcda846d89dd8138d1683cc144c8853dce7607", "d187b9e334b0050154de10bf69b3e4208a584e1a65015ec28b14bcc252cf84b8baa9c9" "4867daa60f2a82d09ba9652d41e8dde292b624afc8d2c26441b95e3c0e", "815213640a643d198bd056e02bba74e1c8d2d931643e84497adf3347eb485079c9afe0" "afce9284cdc084946b561abbb214f1304ca11228ff82702185cf28f60d", }; tor-0.2.7.6/src/test/example_extrainfo.inc0000644000175000017500000004420012621363246015371 00000000000000static const char EX_EI_MINIMAL[] = "extra-info bob 3E1B2DC141F2B7C6A0F3C4ED9A14A9C35762E24B\n" "published 2014-10-05 20:07:00\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "K5GAkVjpUlofL78NIOE1VDxFn8yYbHK50rVuZG2HxqG/727bon+uMprv4MHjfDcP\n" "V3l9u1uUdGiUPOl8j+hRNw4z/ODeCj/24r2+L32MTjyfUhK49Ld2IlK9iZKlgKYi\n" "zyoatxdAjU8Xc5WPX692HO4/R9CGLsUfYcEEFU2R3EA=\n" "-----END SIGNATURE-----\n" ; static const char EX_EI_MINIMAL_FP[] = "3E1B2DC141F2B7C6A0F3C4ED9A14A9C35762E24B"; static const char EX_EI_MINIMAL_KEY[] = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALSppIF3t3wOAm4fzxRvK+q/wh1gGAWwS0JEn8d+c/x+rt1oQabGkqsB\n" "GU6rz1z1AN02W0P2+EcyJQVBjGR3gHQNoDGx0KIdnr3caGAw3XmQXrJLPaViEk28\n" "RJMxx6umpP27YKSyEMHgVTDXblKImT0mE7fVOx8tD0EWRYazmp4NAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n"; static const char EX_EI_MAXIMAL[] = "extra-info bob FF8248FE780A7236D3FA5D62DEA642055135F942\n" "published 2014-10-05 20:07:00\n" "opt foobarbaz\n" "read-history 900 1,2,3\n" "write-history 900 1,2,3\n" "dirreq-v2-ips 1\n" "dirreq-v3-ips 100\n" "dirreq-v3-reqs blahblah\n" "dirreq-v2-share blahblah\n" "dirreq-v3-share blahblah\n" "dirreq-v2-resp djfkdj\n" "dirreq-v3-resp djfkdj\n" "dirreq-v2-direct-dl djfkdj\n" "dirreq-v3-direct-dl djfkdj\n" "dirreq-v2-tunneled-dl djfkdj\n" "dirreq-v3-tunneled-dl djfkdj\n" "dirreq-stats-end foobar\n" "entry-ips jfsdfds\n" "entry-stats-end ksdflkjfdkf\n" "cell-stats-end FOO\n" "cell-processed-cells FOO\n" "cell-queued-cells FOO\n" "cell-time-in-queue FOO\n" "cell-circuits-per-decile FOO\n" "exit-stats-end FOO\n" "exit-kibibytes-written FOO\n" "exit-kibibytes-read FOO\n" "exit-streams-opened FOO\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "ZO79bLlWVNIruCnWW9duDcOKydPWbL5DfrpUv5IRLF4MMFoacMUdJPDUs9e+wY2C\n" "zndHe6i2JK7yKJj+uCOSC8cx61OLG+kVxMLJ/qhA4H5thrYb+GpzMKwbHzQc3PTH\n" "zHRzj041iWXTL7/DMaQlpJOBoac/wTSIKzoV2B00jBw=\n" "-----END SIGNATURE-----\n" ; static const char EX_EI_MAXIMAL_FP[] = "FF8248FE780A7236D3FA5D62DEA642055135F942"; static const char EX_EI_MAXIMAL_KEY[] = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANSpkYhHUW1EqodY4d3JRbvEM1vjjR/vEE8gjONiJ5t2Sten53jzt8bh\n" "8/VJn7pQGs8zR5CIxCw4P68xMtZJJedS3hhjqubheOE/yW1DtpkiCf+zVEaLpeA8\n" "fYQChkRICnR/BZd4W9bbohLVII5ym2PaJt2ihB3FeVZIsGXm4wxhAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n"; static const char EX_EI_BAD_SIG1[] = "extra-info bob 3E1B2DC141F2B7C6A0F3C4ED9A14A9C35762E24B\n" "published 2014-10-05 20:07:00\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "K5GAkVjpUlofL78NIOE1VDxFn8yYbHK50rVuZG2HxqG/727bon+uMprv4MHjfDcP\n" "V3l9u1uUdGiUPOl8j+hXXw4z/ODeCj/24r2+L32MTjyfUhK49Ld2IlK9iZKlgKYi\n" "zyoatxdAjU8Xc5WPX692HO4/R9CGLsUfYcEEFU2R3EA=\n" "-----END SIGNATURE-----\n" ; static const char EX_EI_BAD_SIG2[] = "extra-info bob 3E1B2DC141F2B7C6A0F3C4ED9A14A9C35762E24B\n" "published 2014-10-06 20:07:00\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "K5GAkVjpUlofL78NIOE1VDxFn8yYbHK50rVuZG2HxqG/727bon+uMprv4MHjfDcP\n" "V3l9u1uUdGiUPOl8j+hRNw4z/ODeCj/24r2+L32MTjyfUhK49Ld2IlK9iZKlgKYi\n" "zyoatxdAjU8Xc5WPX692HO4/R9CGLsUfYcEEFU2R3EA=\n" "-----END SIGNATURE-----\n" ; static const char EX_EI_BAD_SIG3[] = "extra-info bob 3E1B2DC141F2B7C6A0F3C4ED9A14A9C35762E24B\n" "published 2014-10-05 20:07:00\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "K5GAkVjpUlofL78NIOE1VDxFn8yYbHK50rVuZG2HxqG/727bon+uMprv4MHjfDcP\n" "V3l9u1uUdGiUPOl8j+hRNw4z/ODeCj/24r2+L32MTjyfUhK49Ld2IlK9iZKlgKYi\n" "zyoatxdAjU8Xc5WPX692HO4/R9CGLsUfYcEEFU2=\n" "-----END SIGNATURE-----\n" ; static const char EX_EI_BAD_FP[] = "extra-info bob C34293303F0F1E42CB14E593717B834E8E53797D8888\n" "published 2014-10-05 20:07:00\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "IDA8ryUYeMx7+Au/xQmX7Y8fXksoHUOXmePND2JYM4rPfishQJ1LpQ15KrolOZDH\n" "FVIk3RmCefNlJeS1/UgWPcU8u2nGw1YQuRBHF4ViTmZ0OevI1pTsSApl4+oIx2dy\n" "DGgCQmKfMbaOixIK8Ioh1Z2NUfMkjbUUE2WWgFTAsac=\n" "-----END SIGNATURE-----\n" ; static const char EX_EI_BAD_FP_FP[] = "C34293303F0F1E42CB14E593717B834E8E53797D"; static const char EX_EI_BAD_FP_KEY[] = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAKXMSbif4fG+BW/5lIq5V1tMRondIUfKiNizp0E6EcBw5LvYfQV6zrj8\n" "HmMFbB/WGf9XGVMxIBzxzeQBRvCQJh+0QH7+ju5/isIHJZsACMILepr6ywmCcjVU\n" "iYRtC8zGQLqfkf2cNoo7AhcI5i/YzyW2u1zmbPX5J+8sUErfxydbAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n"; static const char EX_EI_BAD_NICKNAME[] = "extra-info bobhasaverylongnameandidontthinkweshouldlethim A4EA2389A52459B3F7C7121A46012F098BDFC2A4\n" "published 2014-10-05 20:07:00\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "e2wLJFThRMGawxKrQPuH2XCLek/LJsg4XOB8waAjE0xdHOrzjur9x1jIxy7DVU6t\n" "z1edbIoL24qucMJvFy2xjSQhFRX4OsyNc0nWr3LfJnTW9aEmxuwXM+mltUD2uFN1\n" "2vYOIQjUmJwS2yfeSKnhXEl2PWVUmgzYL3r4S5kHco4=\n" "-----END SIGNATURE-----\n" ; static const char EX_EI_BAD_NICKNAME_FP[] = "A4EA2389A52459B3F7C7121A46012F098BDFC2A4"; static const char EX_EI_BAD_NICKNAME_KEY[] = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAKfq7oxD1kMu1+zeG2UVXN4vOu6FDp0V/olA3ttmXpUCgCiBxWTgtwNl\n" "nPf0HcKMaCp/0D9XrbhvIoOsg0OTf1TcJfGsA/zPG7jrWYa4xhD50KYvty9EINK9\n" "/UBWNSyXCFDMqnddb/LZ8+VgttmxfYkpeRzSSmDijN3RbOvYJhhBAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n"; const char EX_EI_BAD_TOKENS[] = "extra-info bob 6F314FB01A31162BD5E473D4977AC570DC5B86BB\n" "published 2014-10-05 20:07:00\n" "published 2014-10-05 20:07:00\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "lhRIafrkKoQmnUoBLiq4XC8XKXrleGJZ5vefkLcgjOJ5IffsvVdIA7Vqq/ISbPrG\n" "b/Zs0sJNL6naHPxJBglgHJqksSyiYHaeOetXg2Rb+vZ1v2S5BrVgk1nPMDhyIzqc\n" "zU7eCxFf/1sXKtWlEKxGdX4LmVfnIln5aI31Bc4xRrE=\n" "-----END SIGNATURE-----\n" ; const char EX_EI_BAD_TOKENS_FP[] = "6F314FB01A31162BD5E473D4977AC570DC5B86BB"; const char EX_EI_BAD_TOKENS_KEY[] = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAL7Z8tz45Tb4tnEFS2sAyjubBV/giSfZdmXRkDV8Jo4xqWqhWFJn7+zN\n" "AXBWBThGeVH2WXrpz5seNJXgZJPxMTMsrnSCGcRXZw0Npti2MkLuQ6+prZa+OPwE\n" "OyC6jivtAaY/o9iYQjDC2avLXD3N4LvoygyF418KnNcjbzuFygffAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n"; static const char EX_EI_BAD_START[] = "published 2014-10-05 20:07:00\n" "extra-info bob 5CCCACE71A9BDB5E8E0C942AB3407452350434C0\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "BOiWgexqCAMZ8uyJ7jwBwRkz7Ox8cT4BImkmkV3bQiZgcWvPiYA3EnCm2ye48Ldg\n" "zBST2p6zJM5o4MEDYGMxfViS86Abj/z7DOY1gtLhjmAaVjIIpXc3koxEZtzCecqy\n" "JQz6xEg9/KoEuoT0DRrfYQ+KtQfzBDWrotfOvEa1rvc=\n" "-----END SIGNATURE-----\n" ; static const char EX_EI_BAD_START_FP[] = "5CCCACE71A9BDB5E8E0C942AB3407452350434C0"; static const char EX_EI_BAD_START_KEY[] = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAK2OCIfM6Cin/lq99Z3w9tl6HeyGlkBZu9MQEPHxqGIHTq78lIC1UkrC\n" "6NTqlrHBV9dmfzdwJn4GgMWsCZafL0FPIH3HNyNKUxLgyjixyKljHx2rfErSfOxI\n" "bMoOGBKv7m1EZZ0O5uG9ly9MBiNGdJyLdlnVvH7wSCnYciizpO4lAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n"; static const char EX_EI_BAD_PUBLISHED[] = "extra-info bob E67C477E3536BDE348BD407426D9679E5AE0BC16\n" "published 2014-99-05 20:07:00\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "l45IziBaXRKIjPAIUogMFNjQgH6k6Vm0+6r5+oByr4sP+B3ufNdUA6+WqBs43F0Z\n" "IqcJiT9nFn0DuNd/liOyOCixppDLx5h5NrhoGqcT3ySADEEXhzjlmc35TI3YBNVO\n" "v98fotmwIEg9YRWVGPg6XuIn2PRyiboFyjUpaYGCV0Q=\n" "-----END SIGNATURE-----\n" ; static const char EX_EI_BAD_PUBLISHED_FP[] = "E67C477E3536BDE348BD407426D9679E5AE0BC16"; static const char EX_EI_BAD_PUBLISHED_KEY[] = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAL7q8GEI18iv8Fo0QbNHmFatQ2FNacalPldpmKUdMJYEVZtdOR0nhcrY\n" "BvG6303md3INygg+KP49RvWEJR/cU4RZ9QfHpORxH2OocMyRedw2rLex2E7jNNSi\n" "52yd1sHFYI8ZQ4aff+ZHUjJUGKRyqpbc8okVbq/Rl7vug0dd12eHAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n"; static const char EX_EI_GOOD_ED_EI[] = "extra-info emma A692FE045C32B5E3A54B52882EF678A9DAC46A73\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf55AYgHn/OKR8GHBlscN5VkO73wA9jSci8QgTM30615ZT44AQAgBAC08woT\n" "MBZpKzRcaoEJhEG7+RmuYtnB2+nODk9IRIs8ZoyYPTZ6dLzI+MLMmtzUuo/Wmvw0\n" "PflTyCb2RlWitOEhAErWH3Z9UmYGnzM/COId0Fe3ScSriyvRoFnJY1+GVAQ=\n" "-----END ED25519 CERT-----\n" "published 2014-10-05 20:07:00\n" "router-sig-ed25519 a7K8nwfg+HrdlSGQwr9rnLBq0qozkyZZs6d6aiLEiXGdhV1r9KJncmlQ5SNoY/zMQlyQm8EV5rCyBiVliKQ1Bw\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "GvmCmIGgbC1DeawRyRuChy62VmBOG0EviryG/a2qSZiFy0iPPwqSp5ZyZDQEIEId\n" "kkk1zPzK1+S3fmgOAXyXGH0r4YFkoLGnhMk07BoEwi6HEXzjJsabmcNkOHfaOWgs\n" "/5nvnLfcmxL4c6FstZ7t9VQpE06y3GU0zwBeIy1qjp0=\n" "-----END SIGNATURE-----\n" "\n" "\n" ; const char EX_EI_GOOD_ED_EI_FP[] = "A692FE045C32B5E3A54B52882EF678A9DAC46A73"; static const char EX_EI_GOOD_ED_EI_KEY[] = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAM3jdYwjwGxDWYj/vyFkQT7RgeCNIn89Ei6D2+L/fdtFnqrMXOreFFHL\n" "C7CK2v2uN3v+uXxfb5lADz3NcalxJrCfGTGtaBk7PwMZraTSh2luFKOvSRBQCmB1\n" "yD5N0QqnIhBJoGr6NITpbWyiTKWvYLjl9PZd9af8e8jQCAa5P1j1AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" ; static const char EX_EI_ED_MISSING_SIG[] = "extra-info rachel 2A7521497B91A8437021515308A47491164EDBA1\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf55AT2/T71LFYHiI1ppwNiuaewIu2Hq+GWWQ85O8gpWcUxeAQAgBAC2dgYu\n" "moxhtuip7GVlthT9iomZKba1IllVa7uE1u2uO9BUYZQWXciFt7OnNzMH5mlffwxB\n" "1dWCl+G5nbOsV5jYLbfhrF5afZotf+EQTfob4cCH79AV223LPcySbTHTtQ4=\n" "-----END ED25519 CERT-----\n" "published 2014-10-05 20:07:00\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "oypRD2IZQ5EttOE8dvofrW80nnBfijSkvYzBrM6H4KVeayRYvWfmi96dYO6ybMqm\n" "Yp7Gs3ngqeeNdfHtkRPuQVUXUGYZgBTvYItuagnFlFgRqaHy0knwUIVOL35eqWYx\n" "xSbQKA7fglxEDMFs/RK7FRP4dWc731ZMt5wzzfJHZ8E=\n" "-----END SIGNATURE-----\n" "\n" "\n" ; const char EX_EI_ED_MISSING_SIG_FP[] = "2A7521497B91A8437021515308A47491164EDBA1"; static const char EX_EI_ED_MISSING_SIG_KEY[] = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAOOB8ccxbtk2dB5FuKFhGndDcO6STNjB6KiG0b9X2QwKrOZMfmXSigto\n" "mtC1JfPTxECayRjLSiP/9UD8iTVvlcnc8mMWBGM12Pa/KoCZRn7McHI3JJ7n9lfn\n" "qw9+iZ9b/rBimzOb3W6k3uxzg9r8secdq4jJwTnwSjTObgxZtC8/AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" ; static const char EX_EI_ED_MISSING_CERT[] = "extra-info lynne E88E43E86015345A323D93D825C33E4AD1028F65\n" "published 2014-10-05 20:07:00\n" "router-sig-ed25519 H4gKIKm5K9Pfkriy7SlMUD6BdYVp6B5mXKzR/rTyYlpH0tEZ4Fx2hlHNfNNdWXJieXzKZQZo8e7SOVzvrAC3CQ\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "dIrbQjK5T9t5KM8CpsMF85hh2i060oPIxzYQMgE1q4j99dtb/n7SE8nhj1Sjij4D\n" "7JvTjGdLHi3bFSxXaSmla0wxD9PUYFN7VsBQmwSaDrqrzJFb1SGwZuzW1IEZ7BBi\n" "H0czsxEteg5hcNRwISj5WVthuWmau9v13MijtZGSK40=\n" "-----END SIGNATURE-----\n" "\n" "\n" "\n" ; const char EX_EI_ED_MISSING_CERT_FP[] = "E88E43E86015345A323D93D825C33E4AD1028F65"; static const char EX_EI_ED_MISSING_CERT_KEY[] = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALjA/geb0TR9rp/UPvLhABQpB0XUDYuZAnLkrv+i7AAV7FemTDveEGnc\n" "XdXNSusO1mHOquvr0YYKPhwauInxD56S8QOzLYiWWajGq8XHARQ33b4/9K2TUrAx\n" "W9HTHV1U1zrPlCJtrkbjxsYoHpUg5ljzM7FGYGY5xuvyHu18SQvzAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" ; static const char EX_EI_ED_BAD_CERT1[] = "extra-info marcie F78D8A655607D32281D02144817A4F1D26AE520F\n" "identity-ed25519\n" "-----BEGIN PLAGICAL SPELL-----\n" "aaaa\n" "-----END PLAGICAL SPELL\n" "published 2014-10-05 20:07:00\n" "router-sig-ed25519 KQJ+2AH7EkkjrD0RtDtUAIr+Vc7wndwILYnoUxFLSJiTP+5fMi54eFF/f1OgkG8gYyTh8phMij9WOxK/dsOpBg\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "XWD+P25AH6moi79j20Si3hqKGcJDws+FORL1MTu+GeJLV1mp5CR9N83UH4ffulcL\n" "CpSSBDL/j74HqapzW7QvBx3FilaNT55GvcobZDFK4TKkCEyEmcuWKpEceBS7JTTV\n" "SvwZeOObTjWPafELbsc/gI9Rh5Idwu7mZt3ZVntCGaQ=\n" "-----END SIGNATURE-----\n" "\n" ; const char EX_EI_ED_BAD_CERT1_FP[] = "F78D8A655607D32281D02144817A4F1D26AE520F"; static const char EX_EI_ED_BAD_CERT1_KEY[] = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMlR46JhxsCmWYtmIB/JjTV2TUYIhJLmHy+X7FfkK3ZVQvvl9/3GSXFL\n" "3USfyf3j34XLh8An7pJBi9LAHkIXgnRbglCud7dXoexabmC+c2mSbw5RnuxDGEwz\n" "krXUph/r2b+2UY1CgEt28nFigaHrIQbCmF4szFX/2GPYCLi5SrRNAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" ; static const char EX_EI_ED_BAD_CERT2[] = "extra-info jaeger 7C2B42E783C4E0EB0CC3BDB37385D16737BACFBD\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf55Acpw27GZBdwGCgawCj2F/DPadt8F/9DnEWywEew1Yi3qAOtLpCB8KXL7\n" "4w5deFW2RBg8qTondNSUvAmwYLbLjNXMmgA3+nkoJOP3fcmQMHz1jm5xzgs2lCVP\n" "t5txApaBIA4=\n" "-----END ED25519 CERT-----\n" "published 2014-10-05 20:07:00\n" "router-sig-ed25519 DRQ4MLOGosBbW8M+17klNu8uWVkPxErmmEYoSo6OuH2Tzrcs6sUY+8Xi2qLoV1SbOugJ214Htl0I+6ceag+vBA\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "DfdA+DbuN9nVJNujuSY5wNCDLk7Hfzkrde/sK0hVmZRvivtpF/Fy/dVQHHGNFY5i\n" "L1cESAgq9HLdbHU+hcc08XXxTIaGwvoklcJClcG3ENVBWkTXbJNT+ifr7chEagIi\n" "cVrtU6RVmzldSbyir8V/Z4S/Cm67gYAgjM5gfoFUqDs=\n" "-----END SIGNATURE-----\n" ; const char EX_EI_ED_BAD_CERT2_FP[] = "7C2B42E783C4E0EB0CC3BDB37385D16737BACFBD"; static const char EX_EI_ED_BAD_CERT2_KEY[] = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALAM1F/0XJEsbxIQqb3+ObX/yGVnq9of8Q9sLsmxffD6hwVpCqnV3lTg\n" "iC6+xZ/bSlTGLPi0k8QLCaTmYxgKwmlMPpbQZ4kpZUrsb9flKdChMN7w8hd48pY9\n" "lu8QiAEgErsl5rCCJIHHjrxxM/Cnd0TnedRnj/Z2YqpNx/ggsmsRAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" ; static const char EX_EI_ED_BAD_SIG1[] = "extra-info vary 5AC3A538FEEFC6F9FCC5FA0CE64704396C30D62A\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf55AbPp++GrRb6WphSu+PkMaYsqY/beiLBmtiV3YP5i2JkKAQAgBABKXjg1\n" "aiz2JfQpNOG308i2EojnUAZEk0C0x9g2BAAXGL63sv3eO/qrlytsG1x2hkcamxFn\n" "LmfZBb/prqe1Vy4wABuhqWHAUtM29vXR6lpiCJeddt9Pa8XVy/tgWLX6TAw=\n" "-----END ED25519 CERT-----\n" "published 2014-10-05 20:07:00\n" "router-sig-ed25519 a7K8nwfg+HrdlSGQwr9rnLBq0qozkyZZs6d6aiLEiXGdhV1r9KJncmlQ5SNoY/zMQlyQm8EV5rCyBiVliKQ1Bw\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "xhZX8Qmgft51NJ7eMd4vrESzf/VdxDrBz7hgn8K+5bLtZUksG0s6s7IyGRYWQtp4\n" "/7oc9sYe3lcQiUN2K7DkeBDlL8Pcsl8aIlKuujWomCE3j0TIu+8XK6oJeo7eYic+\n" "IA7EwVbdZsKsW5/eJVzbX2eO0a5zyJ5RIYotFNYNCSE=\n" "-----END SIGNATURE-----\n" "\n" ; const char EX_EI_ED_BAD_SIG1_FP[] = "5AC3A538FEEFC6F9FCC5FA0CE64704396C30D62A"; static const char EX_EI_ED_BAD_SIG1_KEY[] = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMvb6SuoIkPfBkJgQuo5aQDepAs1kEETZ9VXotMlhB0JJikrqBrAAz+7\n" "rjIJ4JsBaeQuN0Z5ksXk2ebxtef7oMIUs37NfekLQHbNR0VsXkFXPEGmOAqpZjW0\n" "P524eHqybWYZTckvZtUvKI3xYGD6kEEkz4qmV6dcExU1OiAYO9jrAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" ; static const char EX_EI_ED_BAD_SIG2[] = "extra-info coward 7F1D4DD477E340C6D6B389FAC26EDC746113082F\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf56AZkSDiFZ1QaiLJhcKdFDE5Kei/sPaPEIEoPMGP4BvOVXAQAgBAAlRLzx\n" "U029tgIL9BRe47MVgcPJGy48db6ntzhjil7iOnWKT70z2LorUD5CZoLJs72TjB6r\n" "8+HYNyFLEM6dvytWZf9NA5gLdhogbFcUk/R3gbNepmCF7XoZjbhPIp8zOwg=\n" "-----END ED25519 CERT-----\n" "published 2014-10-05 20:07:00\n" "router-sig-ed25519 yfV+GySMIP1fw1oVa1C1de4XOWBqT4pUtEmSHq1h+WrLBNCh3/HZWvNC/denf2YVntuQrMLCJEv5ZaFKU+AIDQ\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "g+BWq69i9CP19va2cYMAXCQ6jK3IG0VmNYspjjUFgmFpJKGG6bHeOkuy1GXp47fG\n" "LzZ3OPfJLptxU5AOQDUUYf25hu9uSl6gyknCzsszFs5n6ticuNejvcpzw6UfO1LP\n" "5u+mGJlgpcMtmSraImDZrRipmZ3oRWvEULltlvzGQcQ=\n" "-----END SIGNATURE-----\n" "\n" ; const char EX_EI_ED_BAD_SIG2_FP[] = "7F1D4DD477E340C6D6B389FAC26EDC746113082F"; static const char EX_EI_ED_BAD_SIG2_KEY[] = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALzOyfCEUZnvCyhlyMctPkdXg/XRE3Cr6QgyzdKf5kQbUiu2n0FgSHOX\n" "iP5gfq8sO9eVeTPZtjE7/+KiR8aQJECy+eoye+lpsfm3tXpLxnpOIgL4DlURxlo/\n" "rfCyv30SYBN9j62qgU9m6U2ydI0tH7/9Ep8yIY/QL8me8VAjLbf/AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" ; static const char EX_EI_ED_MISPLACED_CERT[] = "extra-info msselene 3B788BD0CE348BC5CED48313307C78175EB6D0F3\n" "published 2014-10-05 20:07:00\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf55AWBcqjzLESDuLNGsqQ/tHn32XueXwj2fDlgEy/kQNVf/AQAgBAAFOegg\n" "XY1LR82xE9ohAYJxYpwJJw0YfXsBhGHqfakEoBtSgFJ3cQAUXZQX4lX6G8IxAlQB\n" "7Rj7dPQuQRUmqD1yyKb/ScBgCa8esxlhNlATz47kRNR38A3TcoJ4c1Zv6AE=\n" "-----END ED25519 CERT-----\n" "router-sig-ed25519 Q52JKH9/iMsr1jIPlWHHxakSBvyqjT1gzL944vad4OhzCZuNuAYGWyWSGzTb1DVmBqqbAUq73TiZKAz77YLNCQ\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "YplvAIwExGf5/L8AoroVQXtGm+26EffrxKBArMKn0zS1NOOie1p0oF/+qJg+rNWU\n" "6cv3Anf188EXGlkUOddavgVH8CQbvve2nHSfIAPxjgEX9QNXbM5CiaMwgpCewXnF\n" "UoNBVo5tydeLHVns15MBg/JNIxUQMd6svMoPp2WqmaE=\n" "-----END SIGNATURE-----\n" "\n" ; const char EX_EI_ED_MISPLACED_CERT_FP[] = "3B788BD0CE348BC5CED48313307C78175EB6D0F3"; static const char EX_EI_ED_MISPLACED_CERT_KEY[] = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALTwNqhTprg1oC6bEbDqwIYBoER6prqUXQFbwbFDn+ekXhZj8vltgGwp\n" "aDGl9ceZWDKfi+reR6rZXjAJGctmv0VHkfe7maUX4FC/d2T8N8DvS+3IvJzFMpbT\n" "O0fFrDTrCSnPikqFfQWnlP8yoF5vO7wo0jRRY432fLRXg9WqVzdrAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" ; static const char EX_EI_ED_MISPLACED_SIG[] = "extra-info grazie 384E40A5DEED4AB1D8A74F1FCBDB18B7C24A8284\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf55AcGuIBoa6TBqD8Gg5atcwp/+r9ThxIBkULmPv9OSGhv+AQAgBACXH13y\n" "mUvdpcN6oRN1nX6mnH40LyfYR5um8xogJZk3oINse5cRNrfMgVWiBpDlJZAwlDDa\n" "lx99hzuZBong+CiOcnEvLMsBaVJmNTm5mpdetYclZpl0g8QEXznXXeRBMgM=\n" "-----END ED25519 CERT-----\n" "router-sig-ed25519 TxuO86dQ3pUaIY2raQ3hoDBmh4TTPC0OVgY98T5cf6Y+sHyiELCkkKQ3lqqXCjqnbTLr1/4riH980JoWPpR+Dw\n" "published 2014-10-05 20:07:00\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "kV2CtArl1VF1nUSyHL00mO3nEdNxlQU5N7/hZNTd+45lej5Veb+6vb4ujelsFERJ\n" "YoxwIs6SuKAR4orQytCL0e+GgZsrg8zGTveEtMX/+u//OcCwQBYEevR5duBZjVw/\n" "yzpEHwdIdB2PPyDBLkf1VKnP7uDj059tXiQRWl7LXgE=\n" "-----END SIGNATURE-----\n" "\n" ; const char EX_EI_ED_MISPLACED_SIG_FP[] = "384E40A5DEED4AB1D8A74F1FCBDB18B7C24A8284"; static const char EX_EI_ED_MISPLACED_SIG_KEY[] = "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAK0HgOCG/6433VCrwz/vhk3cKmyOfenCp0GZ4DIUwPWt4DeyP4nTbN6T\n" "1HJ1H8+hXC9bMuI4m43IWrzgLycQ9UaskUn372ZjHP9InPqHMJU6GQ7vZUe9Tgza\n" "qnBdRPoxnrZzUOzlvatGrePt0hDiOZaMtDAkeEojFp9Wp2ZN7+tZAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" ; tor-0.2.7.6/src/test/test_addr.c0000644000175000017500000011770412621363246013313 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define ADDRESSMAP_PRIVATE #include "orconfig.h" #include "or.h" #include "test.h" #include "addressmap.h" static void test_addr_basic(void *arg) { uint32_t u32; uint16_t u16; char *cp; /* Test addr_port_lookup */ (void)arg; cp = NULL; u32 = 3; u16 = 3; tt_assert(!addr_port_lookup(LOG_WARN, "1.2.3.4", &cp, &u32, &u16)); tt_str_op(cp,OP_EQ, "1.2.3.4"); tt_int_op(u32,OP_EQ, 0x01020304u); tt_int_op(u16,OP_EQ, 0); tor_free(cp); tt_assert(!addr_port_lookup(LOG_WARN, "4.3.2.1:99", &cp, &u32, &u16)); tt_str_op(cp,OP_EQ, "4.3.2.1"); tt_int_op(u32,OP_EQ, 0x04030201u); tt_int_op(u16,OP_EQ, 99); tor_free(cp); tt_assert(!addr_port_lookup(LOG_WARN, "nonexistent.address:4040", &cp, NULL, &u16)); tt_str_op(cp,OP_EQ, "nonexistent.address"); tt_int_op(u16,OP_EQ, 4040); tor_free(cp); tt_assert(!addr_port_lookup(LOG_WARN, "localhost:9999", &cp, &u32, &u16)); tt_str_op(cp,OP_EQ, "localhost"); tt_int_op(u32,OP_EQ, 0x7f000001u); tt_int_op(u16,OP_EQ, 9999); tor_free(cp); u32 = 3; tt_assert(!addr_port_lookup(LOG_WARN, "localhost", NULL, &u32, &u16)); tt_ptr_op(cp,OP_EQ, NULL); tt_int_op(u32,OP_EQ, 0x7f000001u); tt_int_op(u16,OP_EQ, 0); tor_free(cp); tt_assert(addr_port_lookup(LOG_WARN, "localhost:3", &cp, &u32, NULL)); tor_free(cp); tt_int_op(0,OP_EQ, addr_mask_get_bits(0x0u)); tt_int_op(32,OP_EQ, addr_mask_get_bits(0xFFFFFFFFu)); tt_int_op(16,OP_EQ, addr_mask_get_bits(0xFFFF0000u)); tt_int_op(31,OP_EQ, addr_mask_get_bits(0xFFFFFFFEu)); tt_int_op(1,OP_EQ, addr_mask_get_bits(0x80000000u)); /* Test inet_ntop */ { char tmpbuf[TOR_ADDR_BUF_LEN]; const char *ip = "176.192.208.224"; struct in_addr in; /* good round trip */ tt_int_op(tor_inet_pton(AF_INET, ip, &in), OP_EQ, 1); tt_ptr_op(tor_inet_ntop(AF_INET, &in, tmpbuf, sizeof(tmpbuf)), OP_EQ, &tmpbuf); tt_str_op(tmpbuf,OP_EQ, ip); /* just enough buffer length */ tt_str_op(tor_inet_ntop(AF_INET, &in, tmpbuf, strlen(ip) + 1), OP_EQ, ip); /* too short buffer */ tt_ptr_op(tor_inet_ntop(AF_INET, &in, tmpbuf, strlen(ip)),OP_EQ, NULL); } done: tor_free(cp); } #define test_op_ip6_(a,op,b,e1,e2) \ STMT_BEGIN \ tt_assert_test_fmt_type(a,b,e1" "#op" "e2,struct in6_addr*, \ (memcmp(val1_->s6_addr, val2_->s6_addr, 16) op 0), \ char *, "%s", \ { int i; char *cp; \ cp = print_ = tor_malloc(64); \ for (i=0;i<16;++i) { \ tor_snprintf(cp, 3,"%02x", (unsigned)value_->s6_addr[i]);\ cp += 2; \ if (i != 15) *cp++ = ':'; \ } \ }, \ { tor_free(print_); }, \ TT_EXIT_TEST_FUNCTION \ ); \ STMT_END /** Helper: Assert that two strings both decode as IPv6 addresses with * tor_inet_pton(), and both decode to the same address. */ #define test_pton6_same(a,b) STMT_BEGIN \ tt_int_op(tor_inet_pton(AF_INET6, a, &a1), OP_EQ, 1); \ tt_int_op(tor_inet_pton(AF_INET6, b, &a2), OP_EQ, 1); \ test_op_ip6_(&a1,OP_EQ,&a2,#a,#b); \ STMT_END /** Helper: Assert that a is recognized as a bad IPv6 address by * tor_inet_pton(). */ #define test_pton6_bad(a) \ tt_int_op(0, OP_EQ, tor_inet_pton(AF_INET6, a, &a1)) /** Helper: assert that a, when parsed by tor_inet_pton() and displayed * with tor_inet_ntop(), yields b. Also assert that b parses to * the same value as a. */ #define test_ntop6_reduces(a,b) STMT_BEGIN \ tt_int_op(tor_inet_pton(AF_INET6, a, &a1), OP_EQ, 1); \ tt_str_op(tor_inet_ntop(AF_INET6, &a1, buf, sizeof(buf)), OP_EQ, b); \ tt_int_op(tor_inet_pton(AF_INET6, b, &a2), OP_EQ, 1); \ test_op_ip6_(&a1, OP_EQ, &a2, a, b); \ STMT_END /** Helper: assert that a parses by tor_inet_pton() into a address that * passes tor_addr_is_internal() with for_listening. */ #define test_internal_ip(a,for_listening) STMT_BEGIN \ tt_int_op(tor_inet_pton(AF_INET6, a, &t1.addr.in6_addr), OP_EQ, 1); \ t1.family = AF_INET6; \ if (!tor_addr_is_internal(&t1, for_listening)) \ TT_DIE(("%s was not internal", a)); \ STMT_END /** Helper: assert that a parses by tor_inet_pton() into a address that * does not pass tor_addr_is_internal() with for_listening. */ #define test_external_ip(a,for_listening) STMT_BEGIN \ tt_int_op(tor_inet_pton(AF_INET6, a, &t1.addr.in6_addr), OP_EQ, 1); \ t1.family = AF_INET6; \ if (tor_addr_is_internal(&t1, for_listening)) \ TT_DIE(("%s was not internal", a)); \ STMT_END /** Helper: Assert that a and b, when parsed by * tor_inet_pton(), give addresses that compare in the order defined by * op with tor_addr_compare(). */ #define test_addr_compare(a, op, b) STMT_BEGIN \ tt_int_op(tor_inet_pton(AF_INET6, a, &t1.addr.in6_addr), OP_EQ, 1); \ tt_int_op(tor_inet_pton(AF_INET6, b, &t2.addr.in6_addr), OP_EQ, 1); \ t1.family = t2.family = AF_INET6; \ r = tor_addr_compare(&t1,&t2,CMP_SEMANTIC); \ if (!(r op 0)) \ TT_DIE(("Failed: tor_addr_compare(%s,%s) %s 0", a, b, #op));\ STMT_END /** Helper: Assert that a and b, when parsed by * tor_inet_pton(), give addresses that compare in the order defined by * op with tor_addr_compare_masked() with m masked. */ #define test_addr_compare_masked(a, op, b, m) STMT_BEGIN \ tt_int_op(tor_inet_pton(AF_INET6, a, &t1.addr.in6_addr), OP_EQ, 1); \ tt_int_op(tor_inet_pton(AF_INET6, b, &t2.addr.in6_addr), OP_EQ, 1); \ t1.family = t2.family = AF_INET6; \ r = tor_addr_compare_masked(&t1,&t2,m,CMP_SEMANTIC); \ if (!(r op 0)) \ TT_DIE(("Failed: tor_addr_compare_masked(%s,%s,%d) %s 0", \ a, b, m, #op)); \ STMT_END /** Helper: assert that xx is parseable as a masked IPv6 address with * ports by tor_parse_mask_addr_ports(), with family f, IP address * as 4 32-bit words ip1...ip4, mask bits as mm, and port range * as pt1..pt2. */ #define test_addr_mask_ports_parse(xx, f, ip1, ip2, ip3, ip4, mm, pt1, pt2) \ STMT_BEGIN \ tt_int_op(tor_addr_parse_mask_ports(xx, 0, &t1, &mask, &port1, &port2), \ OP_EQ, f); \ p1=tor_inet_ntop(AF_INET6, &t1.addr.in6_addr, bug, sizeof(bug)); \ tt_int_op(htonl(ip1), OP_EQ, tor_addr_to_in6_addr32(&t1)[0]); \ tt_int_op(htonl(ip2), OP_EQ, tor_addr_to_in6_addr32(&t1)[1]); \ tt_int_op(htonl(ip3), OP_EQ, tor_addr_to_in6_addr32(&t1)[2]); \ tt_int_op(htonl(ip4), OP_EQ, tor_addr_to_in6_addr32(&t1)[3]); \ tt_int_op(mask, OP_EQ, mm); \ tt_uint_op(port1, OP_EQ, pt1); \ tt_uint_op(port2, OP_EQ, pt2); \ STMT_END /** Run unit tests for IPv6 encoding/decoding/manipulation functions. */ static void test_addr_ip6_helpers(void *arg) { char buf[TOR_ADDR_BUF_LEN], bug[TOR_ADDR_BUF_LEN]; char rbuf[REVERSE_LOOKUP_NAME_BUF_LEN]; struct in6_addr a1, a2; tor_addr_t t1, t2; int r, i; uint16_t port1, port2; maskbits_t mask; const char *p1; struct sockaddr_storage sa_storage; struct sockaddr_in *sin; struct sockaddr_in6 *sin6; /* Test tor_inet_ntop and tor_inet_pton: IPv6 */ (void)arg; { const char *ip = "2001::1234"; const char *ip_ffff = "::ffff:192.168.1.2"; /* good round trip */ tt_int_op(tor_inet_pton(AF_INET6, ip, &a1),OP_EQ, 1); tt_ptr_op(tor_inet_ntop(AF_INET6, &a1, buf, sizeof(buf)),OP_EQ, &buf); tt_str_op(buf,OP_EQ, ip); /* good round trip - ::ffff:0:0 style */ tt_int_op(tor_inet_pton(AF_INET6, ip_ffff, &a2),OP_EQ, 1); tt_ptr_op(tor_inet_ntop(AF_INET6, &a2, buf, sizeof(buf)),OP_EQ, &buf); tt_str_op(buf,OP_EQ, ip_ffff); /* just long enough buffer (remember \0) */ tt_str_op(tor_inet_ntop(AF_INET6, &a1, buf, strlen(ip)+1),OP_EQ, ip); tt_str_op(tor_inet_ntop(AF_INET6, &a2, buf, strlen(ip_ffff)+1),OP_EQ, ip_ffff); /* too short buffer (remember \0) */ tt_ptr_op(tor_inet_ntop(AF_INET6, &a1, buf, strlen(ip)),OP_EQ, NULL); tt_ptr_op(tor_inet_ntop(AF_INET6, &a2, buf, strlen(ip_ffff)),OP_EQ, NULL); } /* ==== Converting to and from sockaddr_t. */ sin = (struct sockaddr_in *)&sa_storage; sin->sin_family = AF_INET; sin->sin_port = htons(9090); sin->sin_addr.s_addr = htonl(0x7f7f0102); /*127.127.1.2*/ tor_addr_from_sockaddr(&t1, (struct sockaddr *)sin, &port1); tt_int_op(tor_addr_family(&t1),OP_EQ, AF_INET); tt_int_op(tor_addr_to_ipv4h(&t1),OP_EQ, 0x7f7f0102); tt_int_op(port1, OP_EQ, 9090); memset(&sa_storage, 0, sizeof(sa_storage)); tt_int_op(sizeof(struct sockaddr_in),OP_EQ, tor_addr_to_sockaddr(&t1, 1234, (struct sockaddr *)&sa_storage, sizeof(sa_storage))); tt_int_op(1234,OP_EQ, ntohs(sin->sin_port)); tt_int_op(0x7f7f0102,OP_EQ, ntohl(sin->sin_addr.s_addr)); memset(&sa_storage, 0, sizeof(sa_storage)); sin6 = (struct sockaddr_in6 *)&sa_storage; sin6->sin6_family = AF_INET6; sin6->sin6_port = htons(7070); sin6->sin6_addr.s6_addr[0] = 128; tor_addr_from_sockaddr(&t1, (struct sockaddr *)sin6, &port1); tt_int_op(tor_addr_family(&t1),OP_EQ, AF_INET6); tt_int_op(port1, OP_EQ, 7070); p1 = tor_addr_to_str(buf, &t1, sizeof(buf), 0); tt_str_op(p1,OP_EQ, "8000::"); memset(&sa_storage, 0, sizeof(sa_storage)); tt_int_op(sizeof(struct sockaddr_in6),OP_EQ, tor_addr_to_sockaddr(&t1, 9999, (struct sockaddr *)&sa_storage, sizeof(sa_storage))); tt_int_op(AF_INET6,OP_EQ, sin6->sin6_family); tt_int_op(9999,OP_EQ, ntohs(sin6->sin6_port)); tt_int_op(0x80000000,OP_EQ, ntohl(S6_ADDR32(sin6->sin6_addr)[0])); /* ==== tor_addr_lookup: static cases. (Can't test dns without knowing we * have a good resolver. */ tt_int_op(0,OP_EQ, tor_addr_lookup("127.128.129.130", AF_UNSPEC, &t1)); tt_int_op(AF_INET,OP_EQ, tor_addr_family(&t1)); tt_int_op(tor_addr_to_ipv4h(&t1),OP_EQ, 0x7f808182); tt_int_op(0,OP_EQ, tor_addr_lookup("9000::5", AF_UNSPEC, &t1)); tt_int_op(AF_INET6,OP_EQ, tor_addr_family(&t1)); tt_int_op(0x90,OP_EQ, tor_addr_to_in6_addr8(&t1)[0]); tt_assert(tor_mem_is_zero((char*)tor_addr_to_in6_addr8(&t1)+1, 14)); tt_int_op(0x05,OP_EQ, tor_addr_to_in6_addr8(&t1)[15]); /* === Test pton: valid af_inet6 */ /* Simple, valid parsing. */ r = tor_inet_pton(AF_INET6, "0102:0304:0506:0708:090A:0B0C:0D0E:0F10", &a1); tt_int_op(r, OP_EQ, 1); for (i=0;i<16;++i) { tt_int_op(i+1,OP_EQ, (int)a1.s6_addr[i]); } /* ipv4 ending. */ test_pton6_same("0102:0304:0506:0708:090A:0B0C:0D0E:0F10", "0102:0304:0506:0708:090A:0B0C:13.14.15.16"); /* shortened words. */ test_pton6_same("0001:0099:BEEF:0000:0123:FFFF:0001:0001", "1:99:BEEF:0:0123:FFFF:1:1"); /* zeros at the beginning */ test_pton6_same("0000:0000:0000:0000:0009:C0A8:0001:0001", "::9:c0a8:1:1"); test_pton6_same("0000:0000:0000:0000:0009:C0A8:0001:0001", "::9:c0a8:0.1.0.1"); /* zeros in the middle. */ test_pton6_same("fe80:0000:0000:0000:0202:1111:0001:0001", "fe80::202:1111:1:1"); /* zeros at the end. */ test_pton6_same("1000:0001:0000:0007:0000:0000:0000:0000", "1000:1:0:7::"); /* === Test ntop: af_inet6 */ test_ntop6_reduces("0:0:0:0:0:0:0:0", "::"); test_ntop6_reduces("0001:0099:BEEF:0006:0123:FFFF:0001:0001", "1:99:beef:6:123:ffff:1:1"); //test_ntop6_reduces("0:0:0:0:0:0:c0a8:0101", "::192.168.1.1"); test_ntop6_reduces("0:0:0:0:0:ffff:c0a8:0101", "::ffff:192.168.1.1"); test_ntop6_reduces("002:0:0000:0:3::4", "2::3:0:0:4"); test_ntop6_reduces("0:0::1:0:3", "::1:0:3"); test_ntop6_reduces("008:0::0", "8::"); test_ntop6_reduces("0:0:0:0:0:ffff::1", "::ffff:0.0.0.1"); test_ntop6_reduces("abcd:0:0:0:0:0:7f00::", "abcd::7f00:0"); test_ntop6_reduces("0000:0000:0000:0000:0009:C0A8:0001:0001", "::9:c0a8:1:1"); test_ntop6_reduces("fe80:0000:0000:0000:0202:1111:0001:0001", "fe80::202:1111:1:1"); test_ntop6_reduces("1000:0001:0000:0007:0000:0000:0000:0000", "1000:1:0:7::"); /* Bad af param */ tt_int_op(tor_inet_pton(AF_UNSPEC, 0, 0),OP_EQ, -1); /* === Test pton: invalid in6. */ test_pton6_bad("foobar."); test_pton6_bad("-1::"); test_pton6_bad("00001::"); test_pton6_bad("10000::"); test_pton6_bad("::10000"); test_pton6_bad("55555::"); test_pton6_bad("9:-60::"); test_pton6_bad("9:+60::"); test_pton6_bad("9|60::"); test_pton6_bad("0x60::"); test_pton6_bad("::0x60"); test_pton6_bad("9:0x60::"); test_pton6_bad("1:2:33333:4:0002:3::"); test_pton6_bad("1:2:3333:4:fish:3::"); test_pton6_bad("1:2:3:4:5:6:7:8:9"); test_pton6_bad("1:2:3:4:5:6:7"); test_pton6_bad("1:2:3:4:5:6:1.2.3.4.5"); test_pton6_bad("1:2:3:4:5:6:1.2.3"); test_pton6_bad("::1.2.3"); test_pton6_bad("::1.2.3.4.5"); test_pton6_bad("::ffff:0xff.0.0.0"); test_pton6_bad("::ffff:ff.0.0.0"); test_pton6_bad("::ffff:256.0.0.0"); test_pton6_bad("::ffff:-1.0.0.0"); test_pton6_bad("99"); test_pton6_bad(""); test_pton6_bad("."); test_pton6_bad(":"); test_pton6_bad("1::2::3:4"); test_pton6_bad("a:::b:c"); test_pton6_bad(":::a:b:c"); test_pton6_bad("a:b:c:::"); test_pton6_bad("1.2.3.4"); test_pton6_bad(":1.2.3.4"); test_pton6_bad(".2.3.4"); /* test internal checking */ test_external_ip("fbff:ffff::2:7", 0); test_internal_ip("fc01::2:7", 0); test_internal_ip("fc01::02:7", 0); test_internal_ip("fc01::002:7", 0); test_internal_ip("fc01::0002:7", 0); test_internal_ip("fdff:ffff::f:f", 0); test_external_ip("fe00::3:f", 0); test_external_ip("fe7f:ffff::2:7", 0); test_internal_ip("fe80::2:7", 0); test_internal_ip("febf:ffff::f:f", 0); test_internal_ip("fec0::2:7:7", 0); test_internal_ip("feff:ffff::e:7:7", 0); test_external_ip("ff00::e:7:7", 0); test_internal_ip("::", 0); test_internal_ip("::1", 0); test_internal_ip("::1", 1); test_internal_ip("::", 0); test_external_ip("::", 1); test_external_ip("::2", 0); test_external_ip("2001::", 0); test_external_ip("ffff::", 0); test_external_ip("::ffff:0.0.0.0", 1); test_internal_ip("::ffff:0.0.0.0", 0); test_internal_ip("::ffff:0.255.255.255", 0); test_external_ip("::ffff:1.0.0.0", 0); test_external_ip("::ffff:9.255.255.255", 0); test_internal_ip("::ffff:10.0.0.0", 0); test_internal_ip("::ffff:10.255.255.255", 0); test_external_ip("::ffff:11.0.0.0", 0); test_external_ip("::ffff:126.255.255.255", 0); test_internal_ip("::ffff:127.0.0.0", 0); test_internal_ip("::ffff:127.255.255.255", 0); test_external_ip("::ffff:128.0.0.0", 0); test_external_ip("::ffff:172.15.255.255", 0); test_internal_ip("::ffff:172.16.0.0", 0); test_internal_ip("::ffff:172.31.255.255", 0); test_external_ip("::ffff:172.32.0.0", 0); test_external_ip("::ffff:192.167.255.255", 0); test_internal_ip("::ffff:192.168.0.0", 0); test_internal_ip("::ffff:192.168.255.255", 0); test_external_ip("::ffff:192.169.0.0", 0); test_external_ip("::ffff:169.253.255.255", 0); test_internal_ip("::ffff:169.254.0.0", 0); test_internal_ip("::ffff:169.254.255.255", 0); test_external_ip("::ffff:169.255.0.0", 0); /* tor_addr_compare(tor_addr_t x2) */ test_addr_compare("ffff::", OP_EQ, "ffff::0"); test_addr_compare("0::3:2:1", OP_LT, "0::ffff:0.3.2.1"); test_addr_compare("0::2:2:1", OP_LT, "0::ffff:0.3.2.1"); test_addr_compare("0::ffff:0.3.2.1", OP_GT, "0::0:0:0"); test_addr_compare("0::ffff:5.2.2.1", OP_LT, "::ffff:6.0.0.0"); /* XXXX wrong. */ tor_addr_parse_mask_ports("[::ffff:2.3.4.5]", 0, &t1, NULL, NULL, NULL); tor_addr_parse_mask_ports("2.3.4.5", 0, &t2, NULL, NULL, NULL); tt_assert(tor_addr_compare(&t1, &t2, CMP_SEMANTIC) == 0); tor_addr_parse_mask_ports("[::ffff:2.3.4.4]", 0, &t1, NULL, NULL, NULL); tor_addr_parse_mask_ports("2.3.4.5", 0, &t2, NULL, NULL, NULL); tt_assert(tor_addr_compare(&t1, &t2, CMP_SEMANTIC) < 0); /* test compare_masked */ test_addr_compare_masked("ffff::", OP_EQ, "ffff::0", 128); test_addr_compare_masked("ffff::", OP_EQ, "ffff::0", 64); test_addr_compare_masked("0::2:2:1", OP_LT, "0::8000:2:1", 81); test_addr_compare_masked("0::2:2:1", OP_EQ, "0::8000:2:1", 80); /* Test undecorated tor_addr_to_str */ tt_int_op(AF_INET6,OP_EQ, tor_addr_parse(&t1, "[123:45:6789::5005:11]")); p1 = tor_addr_to_str(buf, &t1, sizeof(buf), 0); tt_str_op(p1,OP_EQ, "123:45:6789::5005:11"); tt_int_op(AF_INET,OP_EQ, tor_addr_parse(&t1, "18.0.0.1")); p1 = tor_addr_to_str(buf, &t1, sizeof(buf), 0); tt_str_op(p1,OP_EQ, "18.0.0.1"); /* Test decorated tor_addr_to_str */ tt_int_op(AF_INET6,OP_EQ, tor_addr_parse(&t1, "[123:45:6789::5005:11]")); p1 = tor_addr_to_str(buf, &t1, sizeof(buf), 1); tt_str_op(p1,OP_EQ, "[123:45:6789::5005:11]"); tt_int_op(AF_INET,OP_EQ, tor_addr_parse(&t1, "18.0.0.1")); p1 = tor_addr_to_str(buf, &t1, sizeof(buf), 1); tt_str_op(p1,OP_EQ, "18.0.0.1"); /* Test buffer bounds checking of tor_addr_to_str */ tt_int_op(AF_INET6,OP_EQ, tor_addr_parse(&t1, "::")); /* 2 + \0 */ tt_ptr_op(tor_addr_to_str(buf, &t1, 2, 0),OP_EQ, NULL); /* too short buf */ tt_str_op(tor_addr_to_str(buf, &t1, 3, 0),OP_EQ, "::"); tt_ptr_op(tor_addr_to_str(buf, &t1, 4, 1),OP_EQ, NULL); /* too short buf */ tt_str_op(tor_addr_to_str(buf, &t1, 5, 1),OP_EQ, "[::]"); tt_int_op(AF_INET6,OP_EQ, tor_addr_parse(&t1, "2000::1337")); /* 10 + \0 */ tt_ptr_op(tor_addr_to_str(buf, &t1, 10, 0),OP_EQ, NULL); /* too short buf */ tt_str_op(tor_addr_to_str(buf, &t1, 11, 0),OP_EQ, "2000::1337"); tt_ptr_op(tor_addr_to_str(buf, &t1, 12, 1),OP_EQ, NULL); /* too short buf */ tt_str_op(tor_addr_to_str(buf, &t1, 13, 1),OP_EQ, "[2000::1337]"); tt_int_op(AF_INET,OP_EQ, tor_addr_parse(&t1, "1.2.3.4")); /* 7 + \0 */ tt_ptr_op(tor_addr_to_str(buf, &t1, 7, 0),OP_EQ, NULL); /* too short buf */ tt_str_op(tor_addr_to_str(buf, &t1, 8, 0),OP_EQ, "1.2.3.4"); tt_int_op(AF_INET, OP_EQ, tor_addr_parse(&t1, "255.255.255.255")); /* 15 + \0 */ tt_ptr_op(tor_addr_to_str(buf, &t1, 15, 0),OP_EQ, NULL); /* too short buf */ tt_str_op(tor_addr_to_str(buf, &t1, 16, 0),OP_EQ, "255.255.255.255"); tt_ptr_op(tor_addr_to_str(buf, &t1, 15, 1),OP_EQ, NULL); /* too short buf */ tt_str_op(tor_addr_to_str(buf, &t1, 16, 1),OP_EQ, "255.255.255.255"); t1.family = AF_UNSPEC; tt_ptr_op(tor_addr_to_str(buf, &t1, sizeof(buf), 0),OP_EQ, NULL); /* Test tor_addr_parse_PTR_name */ i = tor_addr_parse_PTR_name(&t1, "Foobar.baz", AF_UNSPEC, 0); tt_int_op(0,OP_EQ, i); i = tor_addr_parse_PTR_name(&t1, "Foobar.baz", AF_UNSPEC, 1); tt_int_op(0,OP_EQ, i); i = tor_addr_parse_PTR_name(&t1, "9999999999999999999999999999.in-addr.arpa", AF_UNSPEC, 1); tt_int_op(-1,OP_EQ, i); i = tor_addr_parse_PTR_name(&t1, "1.0.168.192.in-addr.arpa", AF_UNSPEC, 1); tt_int_op(1,OP_EQ, i); tt_int_op(tor_addr_family(&t1),OP_EQ, AF_INET); p1 = tor_addr_to_str(buf, &t1, sizeof(buf), 1); tt_str_op(p1,OP_EQ, "192.168.0.1"); i = tor_addr_parse_PTR_name(&t1, "192.168.0.99", AF_UNSPEC, 0); tt_int_op(0,OP_EQ, i); i = tor_addr_parse_PTR_name(&t1, "192.168.0.99", AF_UNSPEC, 1); tt_int_op(1,OP_EQ, i); p1 = tor_addr_to_str(buf, &t1, sizeof(buf), 1); tt_str_op(p1,OP_EQ, "192.168.0.99"); memset(&t1, 0, sizeof(t1)); i = tor_addr_parse_PTR_name(&t1, "0.1.2.3.4.5.6.7.8.9.a.b.c.d.e.f." "f.e.e.b.1.e.b.e.e.f.f.e.e.e.d.9." "ip6.ARPA", AF_UNSPEC, 0); tt_int_op(1,OP_EQ, i); p1 = tor_addr_to_str(buf, &t1, sizeof(buf), 1); tt_str_op(p1,OP_EQ, "[9dee:effe:ebe1:beef:fedc:ba98:7654:3210]"); /* Failing cases. */ i = tor_addr_parse_PTR_name(&t1, "6.7.8.9.a.b.c.d.e.f." "f.e.e.b.1.e.b.e.e.f.f.e.e.e.d.9." "ip6.ARPA", AF_UNSPEC, 0); tt_int_op(i,OP_EQ, -1); i = tor_addr_parse_PTR_name(&t1, "6.7.8.9.a.b.c.d.e.f.a.b.c.d.e.f.0." "f.e.e.b.1.e.b.e.e.f.f.e.e.e.d.9." "ip6.ARPA", AF_UNSPEC, 0); tt_int_op(i,OP_EQ, -1); i = tor_addr_parse_PTR_name(&t1, "6.7.8.9.a.b.c.d.e.f.X.0.0.0.0.9." "f.e.e.b.1.e.b.e.e.f.f.e.e.e.d.9." "ip6.ARPA", AF_UNSPEC, 0); tt_int_op(i,OP_EQ, -1); i = tor_addr_parse_PTR_name(&t1, "32.1.1.in-addr.arpa", AF_UNSPEC, 0); tt_int_op(i,OP_EQ, -1); i = tor_addr_parse_PTR_name(&t1, ".in-addr.arpa", AF_UNSPEC, 0); tt_int_op(i,OP_EQ, -1); i = tor_addr_parse_PTR_name(&t1, "1.2.3.4.5.in-addr.arpa", AF_UNSPEC, 0); tt_int_op(i,OP_EQ, -1); i = tor_addr_parse_PTR_name(&t1, "1.2.3.4.5.in-addr.arpa", AF_INET6, 0); tt_int_op(i,OP_EQ, -1); i = tor_addr_parse_PTR_name(&t1, "6.7.8.9.a.b.c.d.e.f.a.b.c.d.e.0." "f.e.e.b.1.e.b.e.e.f.f.e.e.e.d.9." "ip6.ARPA", AF_INET, 0); tt_int_op(i,OP_EQ, -1); /* === Test tor_addr_to_PTR_name */ /* Stage IPv4 addr */ memset(&sa_storage, 0, sizeof(sa_storage)); sin = (struct sockaddr_in *)&sa_storage; sin->sin_family = AF_INET; sin->sin_addr.s_addr = htonl(0x7f010203); /* 127.1.2.3 */ tor_addr_from_sockaddr(&t1, (struct sockaddr *)sin, NULL); /* Check IPv4 PTR - too short buffer */ tt_int_op(tor_addr_to_PTR_name(rbuf, 1, &t1),OP_EQ, -1); tt_int_op(tor_addr_to_PTR_name(rbuf, strlen("3.2.1.127.in-addr.arpa") - 1, &t1),OP_EQ, -1); /* Check IPv4 PTR - valid addr */ tt_int_op(tor_addr_to_PTR_name(rbuf, sizeof(rbuf), &t1),OP_EQ, strlen("3.2.1.127.in-addr.arpa")); tt_str_op(rbuf,OP_EQ, "3.2.1.127.in-addr.arpa"); /* Invalid addr family */ t1.family = AF_UNSPEC; tt_int_op(tor_addr_to_PTR_name(rbuf, sizeof(rbuf), &t1),OP_EQ, -1); /* Stage IPv6 addr */ memset(&sa_storage, 0, sizeof(sa_storage)); sin6 = (struct sockaddr_in6 *)&sa_storage; sin6->sin6_family = AF_INET6; sin6->sin6_addr.s6_addr[0] = 0x80; /* 8000::abcd */ sin6->sin6_addr.s6_addr[14] = 0xab; sin6->sin6_addr.s6_addr[15] = 0xcd; tor_addr_from_sockaddr(&t1, (struct sockaddr *)sin6, NULL); { const char* addr_PTR = "d.c.b.a.0.0.0.0.0.0.0.0.0.0.0.0." "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.ip6.arpa"; /* Check IPv6 PTR - too short buffer */ tt_int_op(tor_addr_to_PTR_name(rbuf, 0, &t1),OP_EQ, -1); tt_int_op(tor_addr_to_PTR_name(rbuf, strlen(addr_PTR) - 1, &t1),OP_EQ, -1); /* Check IPv6 PTR - valid addr */ tt_int_op(tor_addr_to_PTR_name(rbuf, sizeof(rbuf), &t1),OP_EQ, strlen(addr_PTR)); tt_str_op(rbuf,OP_EQ, addr_PTR); } /* XXXX turn this into a separate function; it's not all IPv6. */ /* test tor_addr_parse_mask_ports */ test_addr_mask_ports_parse("[::f]/17:47-95", AF_INET6, 0, 0, 0, 0x0000000f, 17, 47, 95); tt_str_op(p1,OP_EQ, "::f"); //test_addr_parse("[::fefe:4.1.1.7/120]:999-1000"); //test_addr_parse_check("::fefe:401:107", 120, 999, 1000); test_addr_mask_ports_parse("[::ffff:4.1.1.7]/120:443", AF_INET6, 0, 0, 0x0000ffff, 0x04010107, 120, 443, 443); tt_str_op(p1,OP_EQ, "::ffff:4.1.1.7"); test_addr_mask_ports_parse("[abcd:2::44a:0]:2-65000", AF_INET6, 0xabcd0002, 0, 0, 0x044a0000, 128, 2, 65000); tt_str_op(p1,OP_EQ, "abcd:2::44a:0"); /* Try some long addresses. */ r=tor_addr_parse_mask_ports("[ffff:1111:1111:1111:1111:1111:1111:1111]", 0, &t1, NULL, NULL, NULL); tt_assert(r == AF_INET6); r=tor_addr_parse_mask_ports("[ffff:1111:1111:1111:1111:1111:1111:11111]", 0, &t1, NULL, NULL, NULL); tt_int_op(r, OP_EQ, -1); r=tor_addr_parse_mask_ports("[ffff:1111:1111:1111:1111:1111:1111:1111:1]", 0, &t1, NULL, NULL, NULL); tt_int_op(r, OP_EQ, -1); r=tor_addr_parse_mask_ports( "[ffff:1111:1111:1111:1111:1111:1111:ffff:" "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:" "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:" "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff]", 0, &t1, NULL, NULL, NULL); tt_int_op(r, OP_EQ, -1); /* Try some failing cases. */ r=tor_addr_parse_mask_ports("[fefef::]/112", 0, &t1, NULL, NULL, NULL); tt_int_op(r, OP_EQ, -1); r=tor_addr_parse_mask_ports("[fefe::/112", 0, &t1, NULL, NULL, NULL); tt_int_op(r, OP_EQ, -1); r=tor_addr_parse_mask_ports("[fefe::", 0, &t1, NULL, NULL, NULL); tt_int_op(r, OP_EQ, -1); r=tor_addr_parse_mask_ports("[fefe::X]", 0, &t1, NULL, NULL, NULL); tt_int_op(r, OP_EQ, -1); r=tor_addr_parse_mask_ports("efef::/112", 0, &t1, NULL, NULL, NULL); tt_int_op(r, OP_EQ, -1); r=tor_addr_parse_mask_ports("[f:f:f:f:f:f:f:f::]",0,&t1, NULL, NULL, NULL); tt_int_op(r, OP_EQ, -1); r=tor_addr_parse_mask_ports("[::f:f:f:f:f:f:f:f]",0,&t1, NULL, NULL, NULL); tt_int_op(r, OP_EQ, -1); r=tor_addr_parse_mask_ports("[f:f:f:f:f:f:f:f:f]",0,&t1, NULL, NULL, NULL); tt_int_op(r, OP_EQ, -1); r=tor_addr_parse_mask_ports("[f:f:f:f:f::]/fred",0,&t1,&mask, NULL, NULL); tt_int_op(r, OP_EQ, -1); r=tor_addr_parse_mask_ports("[f:f:f:f:f::]/255.255.0.0", 0,&t1, NULL, NULL, NULL); tt_int_op(r, OP_EQ, -1); /* This one will get rejected because it isn't a pure prefix. */ r=tor_addr_parse_mask_ports("1.1.2.3/255.255.64.0",0,&t1, &mask,NULL,NULL); tt_int_op(r, OP_EQ, -1); /* Test for V4-mapped address with mask < 96. (arguably not valid) */ r=tor_addr_parse_mask_ports("[::ffff:1.1.2.2/33]",0,&t1, &mask, NULL, NULL); tt_int_op(r, OP_EQ, -1); r=tor_addr_parse_mask_ports("1.1.2.2/33",0,&t1, &mask, NULL, NULL); tt_int_op(r, OP_EQ, -1); /* Try extended wildcard addresses with out TAPMP_EXTENDED_STAR*/ r=tor_addr_parse_mask_ports("*4",0,&t1, &mask, NULL, NULL); tt_int_op(r, OP_EQ, -1); r=tor_addr_parse_mask_ports("*6",0,&t1, &mask, NULL, NULL); tt_int_op(r, OP_EQ, -1); tt_assert(r == -1); /* Try a mask with a wildcard. */ r=tor_addr_parse_mask_ports("*/16",0,&t1, &mask, NULL, NULL); tt_assert(r == -1); r=tor_addr_parse_mask_ports("*4/16",TAPMP_EXTENDED_STAR, &t1, &mask, NULL, NULL); tt_assert(r == -1); r=tor_addr_parse_mask_ports("*6/30",TAPMP_EXTENDED_STAR, &t1, &mask, NULL, NULL); tt_assert(r == -1); /* Basic mask tests*/ r=tor_addr_parse_mask_ports("1.1.2.2/31",0,&t1, &mask, NULL, NULL); tt_assert(r == AF_INET); tt_int_op(mask,OP_EQ,31); tt_int_op(tor_addr_family(&t1),OP_EQ,AF_INET); tt_int_op(tor_addr_to_ipv4h(&t1),OP_EQ,0x01010202); r=tor_addr_parse_mask_ports("3.4.16.032:1-2",0,&t1, &mask, &port1, &port2); tt_assert(r == AF_INET); tt_int_op(mask,OP_EQ,32); tt_int_op(tor_addr_family(&t1),OP_EQ,AF_INET); tt_int_op(tor_addr_to_ipv4h(&t1),OP_EQ,0x03041020); tt_assert(port1 == 1); tt_assert(port2 == 2); r=tor_addr_parse_mask_ports("1.1.2.3/255.255.128.0",0,&t1, &mask,NULL,NULL); tt_assert(r == AF_INET); tt_int_op(mask,OP_EQ,17); tt_int_op(tor_addr_family(&t1),OP_EQ,AF_INET); tt_int_op(tor_addr_to_ipv4h(&t1),OP_EQ,0x01010203); r=tor_addr_parse_mask_ports("[efef::]/112",0,&t1, &mask, &port1, &port2); tt_assert(r == AF_INET6); tt_assert(port1 == 1); tt_assert(port2 == 65535); /* Try regular wildcard behavior without TAPMP_EXTENDED_STAR */ r=tor_addr_parse_mask_ports("*:80-443",0,&t1,&mask,&port1,&port2); tt_int_op(r,OP_EQ,AF_INET); /* Old users of this always get inet */ tt_int_op(tor_addr_family(&t1),OP_EQ,AF_INET); tt_int_op(tor_addr_to_ipv4h(&t1),OP_EQ,0); tt_int_op(mask,OP_EQ,0); tt_int_op(port1,OP_EQ,80); tt_int_op(port2,OP_EQ,443); /* Now try wildcards *with* TAPMP_EXTENDED_STAR */ r=tor_addr_parse_mask_ports("*:8000-9000",TAPMP_EXTENDED_STAR, &t1,&mask,&port1,&port2); tt_int_op(r,OP_EQ,AF_UNSPEC); tt_int_op(tor_addr_family(&t1),OP_EQ,AF_UNSPEC); tt_int_op(mask,OP_EQ,0); tt_int_op(port1,OP_EQ,8000); tt_int_op(port2,OP_EQ,9000); r=tor_addr_parse_mask_ports("*4:6667",TAPMP_EXTENDED_STAR, &t1,&mask,&port1,&port2); tt_int_op(r,OP_EQ,AF_INET); tt_int_op(tor_addr_family(&t1),OP_EQ,AF_INET); tt_int_op(tor_addr_to_ipv4h(&t1),OP_EQ,0); tt_int_op(mask,OP_EQ,0); tt_int_op(port1,OP_EQ,6667); tt_int_op(port2,OP_EQ,6667); r=tor_addr_parse_mask_ports("*6",TAPMP_EXTENDED_STAR, &t1,&mask,&port1,&port2); tt_int_op(r,OP_EQ,AF_INET6); tt_int_op(tor_addr_family(&t1),OP_EQ,AF_INET6); tt_assert(tor_mem_is_zero((const char*)tor_addr_to_in6_addr32(&t1), 16)); tt_int_op(mask,OP_EQ,0); tt_int_op(port1,OP_EQ,1); tt_int_op(port2,OP_EQ,65535); /* make sure inet address lengths >= max */ tt_assert(INET_NTOA_BUF_LEN >= sizeof("255.255.255.255")); tt_assert(TOR_ADDR_BUF_LEN >= sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")); tt_assert(sizeof(tor_addr_t) >= sizeof(struct in6_addr)); /* get interface addresses */ r = get_interface_address6(LOG_DEBUG, AF_INET, &t1); i = get_interface_address6(LOG_DEBUG, AF_INET6, &t2); TT_BLATHER(("v4 address: %s (family=%d)", fmt_addr(&t1), tor_addr_family(&t1))); TT_BLATHER(("v6 address: %s (family=%d)", fmt_addr(&t2), tor_addr_family(&t2))); done: ; } /** Test tor_addr_port_parse(). */ static void test_addr_parse(void *arg) { int r; tor_addr_t addr; char buf[TOR_ADDR_BUF_LEN]; uint16_t port = 0; /* Correct call. */ (void)arg; r= tor_addr_port_parse(LOG_DEBUG, "192.0.2.1:1234", &addr, &port, -1); tt_int_op(r, OP_EQ, 0); tor_addr_to_str(buf, &addr, sizeof(buf), 0); tt_str_op(buf,OP_EQ, "192.0.2.1"); tt_int_op(port,OP_EQ, 1234); r= tor_addr_port_parse(LOG_DEBUG, "[::1]:1234", &addr, &port, -1); tt_int_op(r, OP_EQ, 0); tor_addr_to_str(buf, &addr, sizeof(buf), 0); tt_str_op(buf,OP_EQ, "::1"); tt_int_op(port,OP_EQ, 1234); /* Domain name. */ r= tor_addr_port_parse(LOG_DEBUG, "torproject.org:1234", &addr, &port, -1); tt_int_op(r, OP_EQ, -1); /* Only IP. */ r= tor_addr_port_parse(LOG_DEBUG, "192.0.2.2", &addr, &port, -1); tt_int_op(r, OP_EQ, -1); r= tor_addr_port_parse(LOG_DEBUG, "192.0.2.2", &addr, &port, 200); tt_int_op(r, OP_EQ, 0); tt_int_op(port,OP_EQ,200); r= tor_addr_port_parse(LOG_DEBUG, "[::1]", &addr, &port, -1); tt_int_op(r, OP_EQ, -1); r= tor_addr_port_parse(LOG_DEBUG, "[::1]", &addr, &port, 400); tt_int_op(r, OP_EQ, 0); tt_int_op(port,OP_EQ,400); /* Bad port. */ r= tor_addr_port_parse(LOG_DEBUG, "192.0.2.2:66666", &addr, &port, -1); tt_int_op(r, OP_EQ, -1); r= tor_addr_port_parse(LOG_DEBUG, "192.0.2.2:66666", &addr, &port, 200); tt_int_op(r, OP_EQ, -1); /* Only domain name */ r= tor_addr_port_parse(LOG_DEBUG, "torproject.org", &addr, &port, -1); tt_int_op(r, OP_EQ, -1); r= tor_addr_port_parse(LOG_DEBUG, "torproject.org", &addr, &port, 200); tt_int_op(r, OP_EQ, -1); /* Bad IP address */ r= tor_addr_port_parse(LOG_DEBUG, "192.0.2:1234", &addr, &port, -1); tt_int_op(r, OP_EQ, -1); /* Make sure that the default port has lower priority than the real one */ r= tor_addr_port_parse(LOG_DEBUG, "192.0.2.2:1337", &addr, &port, 200); tt_int_op(r, OP_EQ, 0); tt_int_op(port,OP_EQ,1337); r= tor_addr_port_parse(LOG_DEBUG, "[::1]:1369", &addr, &port, 200); tt_int_op(r, OP_EQ, 0); tt_int_op(port,OP_EQ,1369); done: ; } static void update_difference(int ipv6, uint8_t *d, const tor_addr_t *a, const tor_addr_t *b) { const int n_bytes = ipv6 ? 16 : 4; uint8_t a_tmp[4], b_tmp[4]; const uint8_t *ba, *bb; int i; if (ipv6) { ba = tor_addr_to_in6_addr8(a); bb = tor_addr_to_in6_addr8(b); } else { set_uint32(a_tmp, tor_addr_to_ipv4n(a)); set_uint32(b_tmp, tor_addr_to_ipv4n(b)); ba = a_tmp; bb = b_tmp; } for (i = 0; i < n_bytes; ++i) { d[i] |= ba[i] ^ bb[i]; } } static void test_virtaddrmap(void *data) { /* Let's start with a bunch of random addresses. */ int ipv6, bits, iter, b; virtual_addr_conf_t cfg[2]; uint8_t bytes[16]; (void)data; tor_addr_parse(&cfg[0].addr, "64.65.0.0"); tor_addr_parse(&cfg[1].addr, "3491:c0c0::"); for (ipv6 = 0; ipv6 <= 1; ++ipv6) { for (bits = 0; bits < 18; ++bits) { tor_addr_t last_a; cfg[ipv6].bits = bits; memset(bytes, 0, sizeof(bytes)); tor_addr_copy(&last_a, &cfg[ipv6].addr); /* Generate 128 addresses with each addr/bits combination. */ for (iter = 0; iter < 128; ++iter) { tor_addr_t a; get_random_virtual_addr(&cfg[ipv6], &a); //printf("%s\n", fmt_addr(&a)); /* Make sure that the first b bits match the configured network */ tt_int_op(0, OP_EQ, tor_addr_compare_masked(&a, &cfg[ipv6].addr, bits, CMP_EXACT)); /* And track which bits have been different between pairs of * addresses */ update_difference(ipv6, bytes, &last_a, &a); } /* Now make sure all but the first 'bits' bits of bytes are true */ for (b = bits+1; b < (ipv6?128:32); ++b) { tt_assert(1 & (bytes[b/8] >> (7-(b&7)))); } } } done: ; } static void test_addr_localname(void *arg) { (void)arg; tt_assert(tor_addr_hostname_is_local("localhost")); tt_assert(tor_addr_hostname_is_local("LOCALHOST")); tt_assert(tor_addr_hostname_is_local("LocalHost")); tt_assert(tor_addr_hostname_is_local("local")); tt_assert(tor_addr_hostname_is_local("LOCAL")); tt_assert(tor_addr_hostname_is_local("here.now.local")); tt_assert(tor_addr_hostname_is_local("here.now.LOCAL")); tt_assert(!tor_addr_hostname_is_local(" localhost")); tt_assert(!tor_addr_hostname_is_local("www.torproject.org")); done: ; } static void test_addr_dup_ip(void *arg) { char *v = NULL; (void)arg; #define CHECK(ip, s) do { \ v = tor_dup_ip(ip); \ tt_str_op(v,OP_EQ,(s)); \ tor_free(v); \ } while (0) CHECK(0xffffffff, "255.255.255.255"); CHECK(0x00000000, "0.0.0.0"); CHECK(0x7f000001, "127.0.0.1"); CHECK(0x01020304, "1.2.3.4"); #undef CHECK done: tor_free(v); } static void test_addr_sockaddr_to_str(void *arg) { char *v = NULL; struct sockaddr_in sin; struct sockaddr_in6 sin6; struct sockaddr_storage ss; #ifdef HAVE_SYS_UN_H struct sockaddr_un s_un; #endif #define CHECK(sa, s) do { \ v = tor_sockaddr_to_str((const struct sockaddr*) &(sa)); \ tt_str_op(v,OP_EQ,(s)); \ tor_free(v); \ } while (0) (void)arg; memset(&ss,0,sizeof(ss)); ss.ss_family = AF_UNSPEC; CHECK(ss, "unspec"); memset(&sin,0,sizeof(sin)); sin.sin_family = AF_INET; sin.sin_addr.s_addr = htonl(0x7f808001); sin.sin_port = htons(1234); CHECK(sin, "127.128.128.1:1234"); #ifdef HAVE_SYS_UN_H memset(&s_un,0,sizeof(s_un)); s_un.sun_family = AF_UNIX; strlcpy(s_un.sun_path, "/here/is/a/path", sizeof(s_un.sun_path)); CHECK(s_un, "unix:/here/is/a/path"); #endif memset(&sin6,0,sizeof(sin6)); sin6.sin6_family = AF_INET6; memcpy(sin6.sin6_addr.s6_addr, "\x20\x00\x00\x00\x00\x00\x00\x00" "\x00\x1a\x2b\x3c\x4d\x5e\x00\x01", 16); sin6.sin6_port = htons(1234); CHECK(sin6, "[2000::1a:2b3c:4d5e:1]:1234"); done: tor_free(v); } static void test_addr_is_loopback(void *data) { static const struct loopback_item { const char *name; int is_loopback; } loopback_items[] = { { "::1", 1 }, { "127.0.0.1", 1 }, { "127.99.100.101", 1 }, { "128.99.100.101", 0 }, { "8.8.8.8", 0 }, { "0.0.0.0", 0 }, { "::2", 0 }, { "::", 0 }, { "::1.0.0.0", 0 }, { NULL, 0 } }; int i; tor_addr_t addr; (void)data; for (i=0; loopback_items[i].name; ++i) { tt_int_op(tor_addr_parse(&addr, loopback_items[i].name), OP_GE, 0); tt_int_op(tor_addr_is_loopback(&addr), OP_EQ, loopback_items[i].is_loopback); } tor_addr_make_unspec(&addr); tt_int_op(tor_addr_is_loopback(&addr), OP_EQ, 0); done: ; } static void test_addr_make_null(void *data) { tor_addr_t *addr = tor_malloc(sizeof(*addr)); tor_addr_t *zeros = tor_malloc_zero(sizeof(*addr)); char buf[TOR_ADDR_BUF_LEN]; (void) data; /* Ensure that before tor_addr_make_null, addr != 0's */ memset(addr, 1, sizeof(*addr)); tt_int_op(memcmp(addr, zeros, sizeof(*addr)), OP_NE, 0); /* Test with AF == AF_INET */ zeros->family = AF_INET; tor_addr_make_null(addr, AF_INET); tt_int_op(memcmp(addr, zeros, sizeof(*addr)), OP_EQ, 0); tt_str_op(tor_addr_to_str(buf, addr, sizeof(buf), 0), OP_EQ, "0.0.0.0"); /* Test with AF == AF_INET6 */ memset(addr, 1, sizeof(*addr)); zeros->family = AF_INET6; tor_addr_make_null(addr, AF_INET6); tt_int_op(memcmp(addr, zeros, sizeof(*addr)), OP_EQ, 0); tt_str_op(tor_addr_to_str(buf, addr, sizeof(buf), 0), OP_EQ, "::"); done: tor_free(addr); tor_free(zeros); } #define ADDR_LEGACY(name) \ { #name, test_addr_ ## name , 0, NULL, NULL } struct testcase_t addr_tests[] = { ADDR_LEGACY(basic), ADDR_LEGACY(ip6_helpers), ADDR_LEGACY(parse), { "virtaddr", test_virtaddrmap, 0, NULL, NULL }, { "localname", test_addr_localname, 0, NULL, NULL }, { "dup_ip", test_addr_dup_ip, 0, NULL, NULL }, { "sockaddr_to_str", test_addr_sockaddr_to_str, 0, NULL, NULL }, { "is_loopback", test_addr_is_loopback, 0, NULL, NULL }, { "make_null", test_addr_make_null, 0, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_zero_length_keys.sh0000755000175000017500000000067212621363246016142 00000000000000#!/bin/sh # Check that tor regenerates keys when key files are zero-length exitcode=0 "${SHELL:-sh}" "${abs_top_srcdir:-.}/src/test/zero_length_keys.sh" "${builddir:-.}/src/or/tor" -z || exitcode=1 "${SHELL:-sh}" "${abs_top_srcdir:-.}/src/test/zero_length_keys.sh" "${builddir:-.}/src/or/tor" -d || exitcode=1 "${SHELL:-sh}" "${abs_top_srcdir:-.}/src/test/zero_length_keys.sh" "${builddir:-.}/src/or/tor" -e || exitcode=1 exit ${exitcode} tor-0.2.7.6/src/test/test_relay.c0000644000175000017500000000660412621363246013511 00000000000000/* Copyright (c) 2014-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "or.h" #define CIRCUITBUILD_PRIVATE #include "circuitbuild.h" #define RELAY_PRIVATE #include "relay.h" /* For init/free stuff */ #include "scheduler.h" /* Test suite stuff */ #include "test.h" #include "fakechans.h" static or_circuit_t * new_fake_orcirc(channel_t *nchan, channel_t *pchan); static void test_relay_append_cell_to_circuit_queue(void *arg); static or_circuit_t * new_fake_orcirc(channel_t *nchan, channel_t *pchan) { or_circuit_t *orcirc = NULL; circuit_t *circ = NULL; orcirc = tor_malloc_zero(sizeof(*orcirc)); circ = &(orcirc->base_); circ->magic = OR_CIRCUIT_MAGIC; circ->n_chan = nchan; circ->n_circ_id = get_unique_circ_id_by_chan(nchan); circ->n_mux = NULL; /* ?? */ cell_queue_init(&(circ->n_chan_cells)); circ->n_hop = NULL; circ->streams_blocked_on_n_chan = 0; circ->streams_blocked_on_p_chan = 0; circ->n_delete_pending = 0; circ->p_delete_pending = 0; circ->received_destroy = 0; circ->state = CIRCUIT_STATE_OPEN; circ->purpose = CIRCUIT_PURPOSE_OR; circ->package_window = CIRCWINDOW_START_MAX; circ->deliver_window = CIRCWINDOW_START_MAX; circ->n_chan_create_cell = NULL; orcirc->p_chan = pchan; orcirc->p_circ_id = get_unique_circ_id_by_chan(pchan); cell_queue_init(&(orcirc->p_chan_cells)); return orcirc; } static void test_relay_append_cell_to_circuit_queue(void *arg) { channel_t *nchan = NULL, *pchan = NULL; or_circuit_t *orcirc = NULL; cell_t *cell = NULL; int old_count, new_count; (void)arg; /* Make fake channels to be nchan and pchan for the circuit */ nchan = new_fake_channel(); tt_assert(nchan); pchan = new_fake_channel(); tt_assert(pchan); /* We'll need chans with working cmuxes */ nchan->cmux = circuitmux_alloc(); pchan->cmux = circuitmux_alloc(); /* Make a fake orcirc */ orcirc = new_fake_orcirc(nchan, pchan); tt_assert(orcirc); /* Make a cell */ cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); MOCK(scheduler_channel_has_waiting_cells, scheduler_channel_has_waiting_cells_mock); /* Append it */ old_count = get_mock_scheduler_has_waiting_cells_count(); append_cell_to_circuit_queue(TO_CIRCUIT(orcirc), nchan, cell, CELL_DIRECTION_OUT, 0); new_count = get_mock_scheduler_has_waiting_cells_count(); tt_int_op(new_count, ==, old_count + 1); /* Now try the reverse direction */ old_count = get_mock_scheduler_has_waiting_cells_count(); append_cell_to_circuit_queue(TO_CIRCUIT(orcirc), pchan, cell, CELL_DIRECTION_IN, 0); new_count = get_mock_scheduler_has_waiting_cells_count(); tt_int_op(new_count, ==, old_count + 1); UNMOCK(scheduler_channel_has_waiting_cells); /* Get rid of the fake channels */ MOCK(scheduler_release_channel, scheduler_release_channel_mock); channel_mark_for_close(nchan); channel_mark_for_close(pchan); UNMOCK(scheduler_release_channel); /* Shut down channels */ channel_free_all(); done: tor_free(cell); cell_queue_clear(&orcirc->base_.n_chan_cells); cell_queue_clear(&orcirc->p_chan_cells); tor_free(orcirc); free_fake_channel(nchan); free_fake_channel(pchan); return; } struct testcase_t relay_tests[] = { { "append_cell_to_circuit_queue", test_relay_append_cell_to_circuit_queue, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_guardfraction.c0000644000175000017500000003355412621363246015231 00000000000000/* Copyright (c) 2014, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define DIRSERV_PRIVATE #define ROUTERPARSE_PRIVATE #define NETWORKSTATUS_PRIVATE #include "orconfig.h" #include "or.h" #include "config.h" #include "dirserv.h" #include "container.h" #include "entrynodes.h" #include "util.h" #include "routerparse.h" #include "networkstatus.h" #include "test.h" #include "test_helpers.h" /** Generate a vote_routerstatus_t for a router with identity digest * digest_in_hex. */ static vote_routerstatus_t * gen_vote_routerstatus_for_tests(const char *digest_in_hex, int is_guard) { int retval; vote_routerstatus_t *vrs = NULL; routerstatus_t *rs; vrs = tor_malloc_zero(sizeof(vote_routerstatus_t)); rs = &vrs->status; { /* Useful information for tests */ char digest_tmp[DIGEST_LEN]; /* Guard or not? */ rs->is_possible_guard = is_guard; /* Fill in the fpr */ tt_int_op(strlen(digest_in_hex), ==, HEX_DIGEST_LEN); retval = base16_decode(digest_tmp, sizeof(digest_tmp), digest_in_hex, HEX_DIGEST_LEN); tt_int_op(retval, ==, 0); memcpy(rs->identity_digest, digest_tmp, DIGEST_LEN); } { /* Misc info (maybe not used in tests) */ vrs->version = tor_strdup("0.1.2.14"); strlcpy(rs->nickname, "router2", sizeof(rs->nickname)); memset(rs->descriptor_digest, 78, DIGEST_LEN); rs->addr = 0x99008801; rs->or_port = 443; rs->dir_port = 8000; /* all flags but running cleared */ rs->is_flagged_running = 1; vrs->has_measured_bw = 1; rs->has_bandwidth = 1; } return vrs; done: vote_routerstatus_free(vrs); return NULL; } /** Make sure our parsers reject corrupted guardfraction files. */ static void test_parse_guardfraction_file_bad(void *arg) { int retval; char *guardfraction_bad = NULL; const char *yesterday_date_str = get_yesterday_date_str(); (void) arg; /* Start parsing all those corrupted guardfraction files! */ /* Guardfraction file version is not a number! */ tor_asprintf(&guardfraction_bad, "guardfraction-file-version nan\n" "written-at %s\n" "n-inputs 420 3\n" "guard-seen D0EDB47BEAD32D26D0A837F7D5357EC3AD3B8777 100 420\n" "guard-seen 07B5547026DF3E229806E135CFA8552D56AFBABC 5 420\n", yesterday_date_str); retval = dirserv_read_guardfraction_file_from_str(guardfraction_bad, NULL); tt_int_op(retval, ==, -1); tor_free(guardfraction_bad); /* This one does not have a date! Parsing should fail. */ tor_asprintf(&guardfraction_bad, "guardfraction-file-version 1\n" "written-at not_date\n" "n-inputs 420 3\n" "guard-seen D0EDB47BEAD32D26D0A837F7D5357EC3AD3B8777 100 420\n" "guard-seen 07B5547026DF3E229806E135CFA8552D56AFBABC 5 420\n"); retval = dirserv_read_guardfraction_file_from_str(guardfraction_bad, NULL); tt_int_op(retval, ==, -1); tor_free(guardfraction_bad); /* This one has an incomplete n-inputs line, but parsing should still continue. */ tor_asprintf(&guardfraction_bad, "guardfraction-file-version 1\n" "written-at %s\n" "n-inputs biggie\n" "guard-seen D0EDB47BEAD32D26D0A837F7D5357EC3AD3B8777 100 420\n" "guard-seen 07B5547026DF3E229806E135CFA8552D56AFBABC 5 420\n", yesterday_date_str); retval = dirserv_read_guardfraction_file_from_str(guardfraction_bad, NULL); tt_int_op(retval, ==, 2); tor_free(guardfraction_bad); /* This one does not have a fingerprint in the guard line! */ tor_asprintf(&guardfraction_bad, "guardfraction-file-version 1\n" "written-at %s\n" "n-inputs 420 3\n" "guard-seen not_a_fingerprint 100 420\n", yesterday_date_str); retval = dirserv_read_guardfraction_file_from_str(guardfraction_bad, NULL); tt_int_op(retval, ==, 0); tor_free(guardfraction_bad); /* This one does not even have an integer guardfraction value. */ tor_asprintf(&guardfraction_bad, "guardfraction-file-version 1\n" "written-at %s\n" "n-inputs 420 3\n" "guard-seen D0EDB47BEAD32D26D0A837F7D5357EC3AD3B8777 NaN 420\n" "guard-seen 07B5547026DF3E229806E135CFA8552D56AFBABC 5 420\n", yesterday_date_str); retval = dirserv_read_guardfraction_file_from_str(guardfraction_bad, NULL); tt_int_op(retval, ==, 1); tor_free(guardfraction_bad); /* This one is not a percentage (not in [0, 100]) */ tor_asprintf(&guardfraction_bad, "guardfraction-file-version 1\n" "written-at %s\n" "n-inputs 420 3\n" "guard-seen D0EDB47BEAD32D26D0A837F7D5357EC3AD3B8777 666 420\n" "guard-seen 07B5547026DF3E229806E135CFA8552D56AFBABC 5 420\n", yesterday_date_str); retval = dirserv_read_guardfraction_file_from_str(guardfraction_bad, NULL); tt_int_op(retval, ==, 1); tor_free(guardfraction_bad); /* This one is not a percentage either (not in [0, 100]) */ tor_asprintf(&guardfraction_bad, "guardfraction-file-version 1\n" "written-at %s\n" "n-inputs 420 3\n" "guard-seen D0EDB47BEAD32D26D0A837F7D5357EC3AD3B8777 -3 420\n", yesterday_date_str); retval = dirserv_read_guardfraction_file_from_str(guardfraction_bad, NULL); tt_int_op(retval, ==, 0); done: tor_free(guardfraction_bad); } /** Make sure that our test guardfraction file gets parsed properly, and * its information are applied properly to our routerstatuses. */ static void test_parse_guardfraction_file_good(void *arg) { int retval; vote_routerstatus_t *vrs_guard = NULL; vote_routerstatus_t *vrs_dummy = NULL; char *guardfraction_good = NULL; const char *yesterday_date_str = get_yesterday_date_str(); smartlist_t *routerstatuses = smartlist_new(); /* Some test values that we need to validate later */ const char fpr_guard[] = "D0EDB47BEAD32D26D0A837F7D5357EC3AD3B8777"; const char fpr_unlisted[] = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"; const int guardfraction_value = 42; (void) arg; { /* Populate the smartlist with some fake routerstatuses, so that after parsing the guardfraction file we can check that their elements got filled properly. */ /* This one is a guard */ vrs_guard = gen_vote_routerstatus_for_tests(fpr_guard, 1); tt_assert(vrs_guard); smartlist_add(routerstatuses, vrs_guard); /* This one is a guard but it's not in the guardfraction file */ vrs_dummy = gen_vote_routerstatus_for_tests(fpr_unlisted, 1); tt_assert(vrs_dummy); smartlist_add(routerstatuses, vrs_dummy); } tor_asprintf(&guardfraction_good, "guardfraction-file-version 1\n" "written-at %s\n" "n-inputs 420 3\n" "guard-seen %s %d 420\n", yesterday_date_str, fpr_guard, guardfraction_value); /* Read the guardfraction file */ retval = dirserv_read_guardfraction_file_from_str(guardfraction_good, routerstatuses); tt_int_op(retval, ==, 1); { /* Test that routerstatus fields got filled properly */ /* The guardfraction fields of the guard should be filled. */ tt_assert(vrs_guard->status.has_guardfraction); tt_int_op(vrs_guard->status.guardfraction_percentage, ==, guardfraction_value); /* The guard that was not in the guardfraction file should not have been touched either. */ tt_assert(!vrs_dummy->status.has_guardfraction); } done: vote_routerstatus_free(vrs_guard); vote_routerstatus_free(vrs_dummy); smartlist_free(routerstatuses); tor_free(guardfraction_good); } /** Make sure that the guardfraction bandwidths get calculated properly. */ static void test_get_guardfraction_bandwidth(void *arg) { guardfraction_bandwidth_t gf_bw; const int orig_bw = 1000; (void) arg; /* A guard with bandwidth 1000 and GuardFraction 0.25, should have bandwidth 250 as a guard and bandwidth 750 as a non-guard. */ guard_get_guardfraction_bandwidth(&gf_bw, orig_bw, 25); tt_int_op(gf_bw.guard_bw, ==, 250); tt_int_op(gf_bw.non_guard_bw, ==, 750); /* Also check the 'guard_bw + non_guard_bw == original_bw' * invariant. */ tt_int_op(gf_bw.non_guard_bw + gf_bw.guard_bw, ==, orig_bw); done: ; } /** Parse the GuardFraction element of the consensus, and make sure it * gets parsed correctly. */ static void test_parse_guardfraction_consensus(void *arg) { int retval; or_options_t *options = get_options_mutable(); const char *guardfraction_str_good = "GuardFraction=66"; routerstatus_t rs_good; routerstatus_t rs_no_guard; const char *guardfraction_str_bad1 = "GuardFraction="; /* no value */ routerstatus_t rs_bad1; const char *guardfraction_str_bad2 = "GuardFraction=166"; /* no percentage */ routerstatus_t rs_bad2; (void) arg; /* GuardFraction use is currently disabled by default. So we need to manually enable it. */ options->UseGuardFraction = 1; { /* Properly formatted GuardFraction. Check that it gets applied correctly. */ memset(&rs_good, 0, sizeof(routerstatus_t)); rs_good.is_possible_guard = 1; retval = routerstatus_parse_guardfraction(guardfraction_str_good, NULL, NULL, &rs_good); tt_int_op(retval, ==, 0); tt_assert(rs_good.has_guardfraction); tt_int_op(rs_good.guardfraction_percentage, ==, 66); } { /* Properly formatted GuardFraction but router is not a guard. GuardFraction should not get applied. */ memset(&rs_no_guard, 0, sizeof(routerstatus_t)); tt_assert(!rs_no_guard.is_possible_guard); retval = routerstatus_parse_guardfraction(guardfraction_str_good, NULL, NULL, &rs_no_guard); tt_int_op(retval, ==, 0); tt_assert(!rs_no_guard.has_guardfraction); } { /* Bad GuardFraction. Function should fail and not apply. */ memset(&rs_bad1, 0, sizeof(routerstatus_t)); rs_bad1.is_possible_guard = 1; retval = routerstatus_parse_guardfraction(guardfraction_str_bad1, NULL, NULL, &rs_bad1); tt_int_op(retval, ==, -1); tt_assert(!rs_bad1.has_guardfraction); } { /* Bad GuardFraction. Function should fail and not apply. */ memset(&rs_bad2, 0, sizeof(routerstatus_t)); rs_bad2.is_possible_guard = 1; retval = routerstatus_parse_guardfraction(guardfraction_str_bad2, NULL, NULL, &rs_bad2); tt_int_op(retval, ==, -1); tt_assert(!rs_bad2.has_guardfraction); } done: ; } /** Make sure that we use GuardFraction information when we should, * according to the torrc option and consensus parameter. */ static void test_should_apply_guardfraction(void *arg) { networkstatus_t vote_enabled, vote_disabled, vote_missing; or_options_t *options = get_options_mutable(); (void) arg; { /* Fill the votes for later */ /* This one suggests enabled GuardFraction. */ memset(&vote_enabled, 0, sizeof(vote_enabled)); vote_enabled.net_params = smartlist_new(); smartlist_split_string(vote_enabled.net_params, "UseGuardFraction=1", NULL, 0, 0); /* This one suggests disabled GuardFraction. */ memset(&vote_disabled, 0, sizeof(vote_disabled)); vote_disabled.net_params = smartlist_new(); smartlist_split_string(vote_disabled.net_params, "UseGuardFraction=0", NULL, 0, 0); /* This one doesn't have GuardFraction at all. */ memset(&vote_missing, 0, sizeof(vote_missing)); vote_missing.net_params = smartlist_new(); smartlist_split_string(vote_missing.net_params, "leon=trout", NULL, 0, 0); } /* If torrc option is set to yes, we should always use * guardfraction.*/ options->UseGuardFraction = 1; tt_int_op(should_apply_guardfraction(&vote_disabled), ==, 1); /* If torrc option is set to no, we should never use * guardfraction.*/ options->UseGuardFraction = 0; tt_int_op(should_apply_guardfraction(&vote_enabled), ==, 0); /* Now let's test torrc option set to auto. */ options->UseGuardFraction = -1; /* If torrc option is set to auto, and consensus parameter is set to * yes, we should use guardfraction. */ tt_int_op(should_apply_guardfraction(&vote_enabled), ==, 1); /* If torrc option is set to auto, and consensus parameter is set to * no, we should use guardfraction. */ tt_int_op(should_apply_guardfraction(&vote_disabled), ==, 0); /* If torrc option is set to auto, and consensus parameter is not * set, we should fallback to "no". */ tt_int_op(should_apply_guardfraction(&vote_missing), ==, 0); done: SMARTLIST_FOREACH(vote_enabled.net_params, char *, cp, tor_free(cp)); SMARTLIST_FOREACH(vote_disabled.net_params, char *, cp, tor_free(cp)); SMARTLIST_FOREACH(vote_missing.net_params, char *, cp, tor_free(cp)); smartlist_free(vote_enabled.net_params); smartlist_free(vote_disabled.net_params); smartlist_free(vote_missing.net_params); } struct testcase_t guardfraction_tests[] = { { "parse_guardfraction_file_bad", test_parse_guardfraction_file_bad, TT_FORK, NULL, NULL }, { "parse_guardfraction_file_good", test_parse_guardfraction_file_good, TT_FORK, NULL, NULL }, { "parse_guardfraction_consensus", test_parse_guardfraction_consensus, TT_FORK, NULL, NULL }, { "get_guardfraction_bandwidth", test_get_guardfraction_bandwidth, TT_FORK, NULL, NULL }, { "should_apply_guardfraction", test_should_apply_guardfraction, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_accounting.c0000644000175000017500000000312612621363246014523 00000000000000#include "or.h" #include "test.h" #define HIBERNATE_PRIVATE #include "hibernate.h" #include "config.h" #define STATEFILE_PRIVATE #include "statefile.h" #define NS_MODULE accounting #define NS_SUBMODULE limits /* * Test to make sure accounting triggers hibernation * correctly with both sum or max rules set */ static or_state_t *or_state; NS_DECL(or_state_t *, get_or_state, (void)); static or_state_t * NS(get_or_state)(void) { return or_state; } static void test_accounting_limits(void *arg) { or_options_t *options = get_options_mutable(); time_t fake_time = time(NULL); (void) arg; NS_MOCK(get_or_state); or_state = or_state_new(); options->AccountingMax = 100; options->AccountingRule = ACCT_MAX; tor_assert(accounting_is_enabled(options)); configure_accounting(fake_time); accounting_add_bytes(10, 0, 1); fake_time += 1; consider_hibernation(fake_time); tor_assert(we_are_hibernating() == 0); accounting_add_bytes(90, 0, 1); fake_time += 1; consider_hibernation(fake_time); tor_assert(we_are_hibernating() == 1); options->AccountingMax = 200; options->AccountingRule = ACCT_SUM; accounting_add_bytes(0, 10, 1); fake_time += 1; consider_hibernation(fake_time); tor_assert(we_are_hibernating() == 0); accounting_add_bytes(0, 90, 1); fake_time += 1; consider_hibernation(fake_time); tor_assert(we_are_hibernating() == 1); goto done; done: NS_UNMOCK(get_or_state); or_state_free(or_state); } #undef NS_SUBMODULE struct testcase_t accounting_tests[] = { { "bwlimits", test_accounting_limits, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_hs.c0000644000175000017500000004336612621363246013015 00000000000000/* Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file test_hs.c * \brief Unit tests for hidden service. **/ #define CONTROL_PRIVATE #define CIRCUITBUILD_PRIVATE #include "or.h" #include "test.h" #include "control.h" #include "config.h" #include "rendcommon.h" #include "routerset.h" #include "circuitbuild.h" #include "test_helpers.h" /* mock ID digest and longname for node that's in nodelist */ #define HSDIR_EXIST_ID "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA" \ "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA" #define STR_HSDIR_EXIST_LONGNAME \ "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=TestDir" /* mock ID digest and longname for node that's not in nodelist */ #define HSDIR_NONE_EXIST_ID "\xBB\xBB\xBB\xBB\xBB\xBB\xBB\xBB\xBB\xBB" \ "\xBB\xBB\xBB\xBB\xBB\xBB\xBB\xBB\xBB\xBB" #define STR_HSDIR_NONE_EXIST_LONGNAME \ "$BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB" /* DuckDuckGo descriptor as an example. */ static const char *hs_desc_content = "\ rendezvous-service-descriptor g5ojobzupf275beh5ra72uyhb3dkpxwg\r\n\ version 2\r\n\ permanent-key\r\n\ -----BEGIN RSA PUBLIC KEY-----\r\n\ MIGJAoGBAJ/SzzgrXPxTlFrKVhXh3buCWv2QfcNgncUpDpKouLn3AtPH5Ocys0jE\r\n\ aZSKdvaiQ62md2gOwj4x61cFNdi05tdQjS+2thHKEm/KsB9BGLSLBNJYY356bupg\r\n\ I5gQozM65ENelfxYlysBjJ52xSDBd8C4f/p9umdzaaaCmzXG/nhzAgMBAAE=\r\n\ -----END RSA PUBLIC KEY-----\r\n\ secret-id-part anmjoxxwiupreyajjt5yasimfmwcnxlf\r\n\ publication-time 2015-03-11 19:00:00\r\n\ protocol-versions 2,3\r\n\ introduction-points\r\n\ -----BEGIN MESSAGE-----\r\n\ aW50cm9kdWN0aW9uLXBvaW50IDd1bnd4cmg2dG5kNGh6eWt1Z3EzaGZzdHduc2ll\r\n\ cmhyCmlwLWFkZHJlc3MgMTg4LjEzOC4xMjEuMTE4Cm9uaW9uLXBvcnQgOTAwMQpv\r\n\ bmlvbi1rZXkKLS0tLS1CRUdJTiBSU0EgUFVCTElDIEtFWS0tLS0tCk1JR0pBb0dC\r\n\ QUxGRVVyeVpDbk9ROEhURmV5cDVjMTRObWVqL1BhekFLTTBxRENTNElKUWh0Y3g1\r\n\ NXpRSFdOVWIKQ2hHZ0JqR1RjV3ZGRnA0N3FkdGF6WUZhVXE2c0lQKzVqeWZ5b0Q4\r\n\ UmJ1bzBwQmFWclJjMmNhYUptWWM0RDh6Vgpuby9sZnhzOVVaQnZ1cWY4eHIrMDB2\r\n\ S0JJNmFSMlA2OE1WeDhrMExqcUpUU2RKOE9idm9yQWdNQkFBRT0KLS0tLS1FTkQg\r\n\ UlNBIFBVQkxJQyBLRVktLS0tLQpzZXJ2aWNlLWtleQotLS0tLUJFR0lOIFJTQSBQ\r\n\ VUJMSUMgS0VZLS0tLS0KTUlHSkFvR0JBTnJHb0ozeTlHNXQzN2F2ekI1cTlwN1hG\r\n\ VUplRUVYMUNOaExnWmJXWGJhVk5OcXpoZFhyL0xTUQppM1Z6dW5OaUs3cndUVnE2\r\n\ K2QyZ1lRckhMMmIvMXBBY3ZKWjJiNSs0bTRRc0NibFpjRENXTktRbHJnRWN5WXRJ\r\n\ CkdscXJTbFFEaXA0ZnNrUFMvNDVkWTI0QmJsQ3NGU1k3RzVLVkxJck4zZFpGbmJr\r\n\ NEZIS1hBZ01CQUFFPQotLS0tLUVORCBSU0EgUFVCTElDIEtFWS0tLS0tCmludHJv\r\n\ ZHVjdGlvbi1wb2ludCBiNGM3enlxNXNheGZzN2prNXFibG1wN3I1b3pwdHRvagpp\r\n\ cC1hZGRyZXNzIDEwOS4xNjkuNDUuMjI2Cm9uaW9uLXBvcnQgOTAwMQpvbmlvbi1r\r\n\ ZXkKLS0tLS1CRUdJTiBSU0EgUFVCTElDIEtFWS0tLS0tCk1JR0pBb0dCQU8xSXpw\r\n\ WFFUTUY3RXZUb1NEUXpzVnZiRVFRQUQrcGZ6NzczMVRXZzVaUEJZY1EyUkRaeVp4\r\n\ OEQKNUVQSU1FeUE1RE83cGd0ak5LaXJvYXJGMC8yempjMkRXTUlSaXZyU29YUWVZ\r\n\ ZXlMM1pzKzFIajJhMDlCdkYxZAp6MEswblRFdVhoNVR5V3lyMHdsbGI1SFBnTlI0\r\n\ MS9oYkprZzkwZitPVCtIeGhKL1duUml2QWdNQkFBRT0KLS0tLS1FTkQgUlNBIFBV\r\n\ QkxJQyBLRVktLS0tLQpzZXJ2aWNlLWtleQotLS0tLUJFR0lOIFJTQSBQVUJMSUMg\r\n\ S0VZLS0tLS0KTUlHSkFvR0JBSzNWZEJ2ajFtQllLL3JrcHNwcm9Ub0llNUtHVmth\r\n\ QkxvMW1tK1I2YUVJek1VZFE1SjkwNGtyRwpCd3k5NC8rV0lGNFpGYXh5Z2phejl1\r\n\ N2pKY1k3ZGJhd1pFeG1hYXFCRlRwL2h2ZG9rcHQ4a1ByRVk4OTJPRHJ1CmJORUox\r\n\ N1FPSmVMTVZZZk5Kcjl4TWZCQ3JQai8zOGh2RUdrbWVRNmRVWElvbVFNaUJGOVRB\r\n\ Z01CQUFFPQotLS0tLUVORCBSU0EgUFVCTElDIEtFWS0tLS0tCmludHJvZHVjdGlv\r\n\ bi1wb2ludCBhdjVtcWl0Y2Q3cjJkandsYmN0c2Jlc2R3eGt0ZWtvegppcC1hZGRy\r\n\ ZXNzIDE0NC43Ni44LjczCm9uaW9uLXBvcnQgNDQzCm9uaW9uLWtleQotLS0tLUJF\r\n\ R0lOIFJTQSBQVUJMSUMgS0VZLS0tLS0KTUlHSkFvR0JBTzVweVZzQmpZQmNmMXBE\r\n\ dklHUlpmWXUzQ05nNldka0ZLMGlvdTBXTGZtejZRVDN0NWhzd3cyVwpjejlHMXhx\r\n\ MmN0Nkd6VWkrNnVkTDlITTRVOUdHTi9BbW8wRG9GV1hKWHpBQkFXd2YyMVdsd1lW\r\n\ eFJQMHRydi9WCkN6UDkzcHc5OG5vSmdGUGRUZ05iMjdKYmVUZENLVFBrTEtscXFt\r\n\ b3NveUN2RitRa25vUS9BZ01CQUFFPQotLS0tLUVORCBSU0EgUFVCTElDIEtFWS0t\r\n\ LS0tCnNlcnZpY2Uta2V5Ci0tLS0tQkVHSU4gUlNBIFBVQkxJQyBLRVktLS0tLQpN\r\n\ SUdKQW9HQkFMVjNKSmtWN3lTNU9jc1lHMHNFYzFQOTVRclFRR3ZzbGJ6Wi9zRGxl\r\n\ RlpKYXFSOUYvYjRUVERNClNGcFMxcU1GbldkZDgxVmRGMEdYRmN2WVpLamRJdHU2\r\n\ SndBaTRJeEhxeXZtdTRKdUxrcXNaTEFLaXRLVkx4eGsKeERlMjlDNzRWMmJrOTRJ\r\n\ MEgybTNKS2tzTHVwc3VxWWRVUmhOVXN0SElKZmgyZmNIalF0bEFnTUJBQUU9Ci0t\r\n\ LS0tRU5EIFJTQSBQVUJMSUMgS0VZLS0tLS0KCg==\r\n\ -----END MESSAGE-----\r\n\ signature\r\n\ -----BEGIN SIGNATURE-----\r\n\ d4OuCE5OLAOnRB6cQN6WyMEmg/BHem144Vec+eYgeWoKwx3MxXFplUjFxgnMlmwN\r\n\ PcftsZf2ztN0sbNCtPgDL3d0PqvxY3iHTQAI8EbaGq/IAJUZ8U4y963dD5+Bn6JQ\r\n\ myE3ctmh0vy5+QxSiRjmQBkuEpCyks7LvWvHYrhnmcg=\r\n\ -----END SIGNATURE-----"; /* Helper global variable for hidden service descriptor event test. * It's used as a pointer to dynamically created message buffer in * send_control_event_string_replacement function, which mocks * send_control_event_string function. * * Always free it after use! */ static char *received_msg = NULL; /** Mock function for send_control_event_string */ static void queue_control_event_string_replacement(uint16_t event, char *msg) { (void) event; tor_free(received_msg); received_msg = msg; } /** Mock function for node_describe_longname_by_id, it returns either * STR_HSDIR_EXIST_LONGNAME or STR_HSDIR_NONE_EXIST_LONGNAME */ static const char * node_describe_longname_by_id_replacement(const char *id_digest) { if (!strcmp(id_digest, HSDIR_EXIST_ID)) { return STR_HSDIR_EXIST_LONGNAME; } else { return STR_HSDIR_NONE_EXIST_LONGNAME; } } /** Make sure each hidden service descriptor async event generation * * function generates the message in expected format. */ static void test_hs_desc_event(void *arg) { #define STR_HS_ADDR "ajhb7kljbiru65qo" #define STR_HS_CONTENT_DESC_ID "g5ojobzupf275beh5ra72uyhb3dkpxwg" #define STR_DESC_ID_BASE32 "hba3gmcgpfivzfhx5rtfqkfdhv65yrj3" int ret; rend_data_t rend_query; const char *expected_msg; char desc_id_base32[REND_DESC_ID_V2_LEN_BASE32 + 1]; (void) arg; MOCK(queue_control_event_string, queue_control_event_string_replacement); MOCK(node_describe_longname_by_id, node_describe_longname_by_id_replacement); /* setup rend_query struct */ memset(&rend_query, 0, sizeof(rend_query)); strncpy(rend_query.onion_address, STR_HS_ADDR, REND_SERVICE_ID_LEN_BASE32+1); rend_query.auth_type = REND_NO_AUTH; rend_query.hsdirs_fp = smartlist_new(); smartlist_add(rend_query.hsdirs_fp, tor_memdup(HSDIR_EXIST_ID, DIGEST_LEN)); /* Compute descriptor ID for replica 0, should be STR_DESC_ID_BASE32. */ ret = rend_compute_v2_desc_id(rend_query.descriptor_id[0], rend_query.onion_address, NULL, 0, 0); tt_int_op(ret, ==, 0); base32_encode(desc_id_base32, sizeof(desc_id_base32), rend_query.descriptor_id[0], DIGEST_LEN); /* Make sure rend_compute_v2_desc_id works properly. */ tt_mem_op(desc_id_base32, OP_EQ, STR_DESC_ID_BASE32, sizeof(desc_id_base32)); /* test request event */ control_event_hs_descriptor_requested(&rend_query, HSDIR_EXIST_ID, STR_DESC_ID_BASE32); expected_msg = "650 HS_DESC REQUESTED "STR_HS_ADDR" NO_AUTH "\ STR_HSDIR_EXIST_LONGNAME " " STR_DESC_ID_BASE32 "\r\n"; tt_assert(received_msg); tt_str_op(received_msg,OP_EQ, expected_msg); tor_free(received_msg); /* test received event */ rend_query.auth_type = REND_BASIC_AUTH; control_event_hs_descriptor_received(rend_query.onion_address, &rend_query, HSDIR_EXIST_ID); expected_msg = "650 HS_DESC RECEIVED "STR_HS_ADDR" BASIC_AUTH "\ STR_HSDIR_EXIST_LONGNAME " " STR_DESC_ID_BASE32"\r\n"; tt_assert(received_msg); tt_str_op(received_msg,OP_EQ, expected_msg); tor_free(received_msg); /* test failed event */ rend_query.auth_type = REND_STEALTH_AUTH; control_event_hs_descriptor_failed(&rend_query, HSDIR_NONE_EXIST_ID, "QUERY_REJECTED"); expected_msg = "650 HS_DESC FAILED "STR_HS_ADDR" STEALTH_AUTH "\ STR_HSDIR_NONE_EXIST_LONGNAME" REASON=QUERY_REJECTED\r\n"; tt_assert(received_msg); tt_str_op(received_msg,OP_EQ, expected_msg); tor_free(received_msg); /* test invalid auth type */ rend_query.auth_type = 999; control_event_hs_descriptor_failed(&rend_query, HSDIR_EXIST_ID, "QUERY_REJECTED"); expected_msg = "650 HS_DESC FAILED "STR_HS_ADDR" UNKNOWN "\ STR_HSDIR_EXIST_LONGNAME " " STR_DESC_ID_BASE32\ " REASON=QUERY_REJECTED\r\n"; tt_assert(received_msg); tt_str_op(received_msg,OP_EQ, expected_msg); tor_free(received_msg); /* test valid content. */ char *exp_msg; control_event_hs_descriptor_content(rend_query.onion_address, STR_HS_CONTENT_DESC_ID, HSDIR_EXIST_ID, hs_desc_content); tor_asprintf(&exp_msg, "650+HS_DESC_CONTENT " STR_HS_ADDR " "\ STR_HS_CONTENT_DESC_ID " " STR_HSDIR_EXIST_LONGNAME\ "\r\n%s\r\n.\r\n650 OK\r\n", hs_desc_content); tt_assert(received_msg); tt_str_op(received_msg, OP_EQ, exp_msg); tor_free(received_msg); tor_free(exp_msg); SMARTLIST_FOREACH(rend_query.hsdirs_fp, char *, d, tor_free(d)); smartlist_free(rend_query.hsdirs_fp); done: UNMOCK(queue_control_event_string); UNMOCK(node_describe_longname_by_id); tor_free(received_msg); } /* Make sure we always pick the right RP, given a well formatted * Tor2webRendezvousPoints value. */ static void test_pick_tor2web_rendezvous_node(void *arg) { or_options_t *options = get_options_mutable(); const node_t *chosen_rp = NULL; router_crn_flags_t flags = CRN_NEED_DESC; int retval, i; const char *tor2web_rendezvous_str = "test003r"; (void) arg; /* Setup fake routerlist. */ helper_setup_fake_routerlist(); /* Parse Tor2webRendezvousPoints as a routerset. */ options->Tor2webRendezvousPoints = routerset_new(); retval = routerset_parse(options->Tor2webRendezvousPoints, tor2web_rendezvous_str, "test_tor2web_rp"); tt_int_op(retval, >=, 0); /* Pick rendezvous point. Make sure the correct one is picked. Repeat many times to make sure it works properly. */ for (i = 0; i < 50 ; i++) { chosen_rp = pick_tor2web_rendezvous_node(flags, options); tt_assert(chosen_rp); tt_str_op(chosen_rp->ri->nickname, ==, tor2web_rendezvous_str); } done: routerset_free(options->Tor2webRendezvousPoints); } /* Make sure we never pick an RP if Tor2webRendezvousPoints doesn't * correspond to an actual node. */ static void test_pick_bad_tor2web_rendezvous_node(void *arg) { or_options_t *options = get_options_mutable(); const node_t *chosen_rp = NULL; router_crn_flags_t flags = CRN_NEED_DESC; int retval, i; const char *tor2web_rendezvous_str = "dummy"; (void) arg; /* Setup fake routerlist. */ helper_setup_fake_routerlist(); /* Parse Tor2webRendezvousPoints as a routerset. */ options->Tor2webRendezvousPoints = routerset_new(); retval = routerset_parse(options->Tor2webRendezvousPoints, tor2web_rendezvous_str, "test_tor2web_rp"); tt_int_op(retval, >=, 0); /* Pick rendezvous point. Since Tor2webRendezvousPoints was set to a dummy value, we shouldn't find any eligible RPs. */ for (i = 0; i < 50 ; i++) { chosen_rp = pick_tor2web_rendezvous_node(flags, options); tt_assert(!chosen_rp); } done: routerset_free(options->Tor2webRendezvousPoints); } /* Make sure rend_data_t is valid at creation, destruction and when * duplicated. */ static void test_hs_rend_data(void *arg) { int rep; rend_data_t *client = NULL, *client_dup = NULL; /* Binary format of a descriptor ID. */ char desc_id[DIGEST_LEN]; char client_cookie[REND_DESC_COOKIE_LEN]; time_t now = time(NULL); rend_data_t *service_dup = NULL; rend_data_t *service = NULL; (void)arg; base32_decode(desc_id, sizeof(desc_id), STR_DESC_ID_BASE32, REND_DESC_ID_V2_LEN_BASE32); memset(client_cookie, 'e', sizeof(client_cookie)); client = rend_data_client_create(STR_HS_ADDR, desc_id, client_cookie, REND_NO_AUTH); tt_assert(client); tt_int_op(client->auth_type, ==, REND_NO_AUTH); tt_str_op(client->onion_address, OP_EQ, STR_HS_ADDR); tt_mem_op(client->desc_id_fetch, OP_EQ, desc_id, sizeof(desc_id)); tt_mem_op(client->descriptor_cookie, OP_EQ, client_cookie, sizeof(client_cookie)); tt_assert(client->hsdirs_fp); tt_int_op(smartlist_len(client->hsdirs_fp), ==, 0); for (rep = 0; rep < REND_NUMBER_OF_NON_CONSECUTIVE_REPLICAS; rep++) { int ret = rend_compute_v2_desc_id(desc_id, client->onion_address, client->descriptor_cookie, now, rep); /* That shouldn't never fail. */ tt_int_op(ret, ==, 0); tt_mem_op(client->descriptor_id[rep], OP_EQ, desc_id, sizeof(desc_id)); } /* The rest should be zeroed because this is a client request. */ tt_int_op(tor_digest_is_zero(client->rend_pk_digest), ==, 1); tt_int_op(tor_digest_is_zero(client->rend_cookie), ==, 1); /* Test dup(). */ client_dup = rend_data_dup(client); tt_assert(client_dup); tt_int_op(client_dup->auth_type, ==, client->auth_type); tt_str_op(client_dup->onion_address, OP_EQ, client->onion_address); tt_mem_op(client_dup->desc_id_fetch, OP_EQ, client->desc_id_fetch, sizeof(client_dup->desc_id_fetch)); tt_mem_op(client_dup->descriptor_cookie, OP_EQ, client->descriptor_cookie, sizeof(client_dup->descriptor_cookie)); tt_assert(client_dup->hsdirs_fp); tt_int_op(smartlist_len(client_dup->hsdirs_fp), ==, 0); for (rep = 0; rep < REND_NUMBER_OF_NON_CONSECUTIVE_REPLICAS; rep++) { tt_mem_op(client_dup->descriptor_id[rep], OP_EQ, client->descriptor_id[rep], DIGEST_LEN); } /* The rest should be zeroed because this is a client request. */ tt_int_op(tor_digest_is_zero(client_dup->rend_pk_digest), ==, 1); tt_int_op(tor_digest_is_zero(client_dup->rend_cookie), ==, 1); rend_data_free(client); client = NULL; rend_data_free(client_dup); client_dup = NULL; /* Reset state. */ base32_decode(desc_id, sizeof(desc_id), STR_DESC_ID_BASE32, REND_DESC_ID_V2_LEN_BASE32); memset(client_cookie, 'e', sizeof(client_cookie)); /* Try with different parameters here for which some content should be * zeroed out. */ client = rend_data_client_create(NULL, desc_id, NULL, REND_BASIC_AUTH); tt_assert(client); tt_int_op(client->auth_type, ==, REND_BASIC_AUTH); tt_int_op(strlen(client->onion_address), ==, 0); tt_mem_op(client->desc_id_fetch, OP_EQ, desc_id, sizeof(desc_id)); tt_int_op(tor_mem_is_zero(client->descriptor_cookie, sizeof(client->descriptor_cookie)), ==, 1); tt_assert(client->hsdirs_fp); tt_int_op(smartlist_len(client->hsdirs_fp), ==, 0); for (rep = 0; rep < REND_NUMBER_OF_NON_CONSECUTIVE_REPLICAS; rep++) { tt_int_op(tor_digest_is_zero(client->descriptor_id[rep]), ==, 1); } /* The rest should be zeroed because this is a client request. */ tt_int_op(tor_digest_is_zero(client->rend_pk_digest), ==, 1); tt_int_op(tor_digest_is_zero(client->rend_cookie), ==, 1); rend_data_free(client); client = NULL; /* Let's test the service object now. */ char rend_pk_digest[DIGEST_LEN]; uint8_t rend_cookie[DIGEST_LEN]; memset(rend_pk_digest, 'f', sizeof(rend_pk_digest)); memset(rend_cookie, 'g', sizeof(rend_cookie)); service = rend_data_service_create(STR_HS_ADDR, rend_pk_digest, rend_cookie, REND_NO_AUTH); tt_assert(service); tt_int_op(service->auth_type, ==, REND_NO_AUTH); tt_str_op(service->onion_address, OP_EQ, STR_HS_ADDR); tt_mem_op(service->rend_pk_digest, OP_EQ, rend_pk_digest, sizeof(rend_pk_digest)); tt_mem_op(service->rend_cookie, OP_EQ, rend_cookie, sizeof(rend_cookie)); tt_assert(service->hsdirs_fp); tt_int_op(smartlist_len(service->hsdirs_fp), ==, 0); for (rep = 0; rep < REND_NUMBER_OF_NON_CONSECUTIVE_REPLICAS; rep++) { tt_int_op(tor_digest_is_zero(service->descriptor_id[rep]), ==, 1); } /* The rest should be zeroed because this is a service request. */ tt_int_op(tor_digest_is_zero(service->descriptor_cookie), ==, 1); tt_int_op(tor_digest_is_zero(service->desc_id_fetch), ==, 1); /* Test dup(). */ service_dup = rend_data_dup(service); tt_assert(service_dup); tt_int_op(service_dup->auth_type, ==, service->auth_type); tt_str_op(service_dup->onion_address, OP_EQ, service->onion_address); tt_mem_op(service_dup->rend_pk_digest, OP_EQ, service->rend_pk_digest, sizeof(service_dup->rend_pk_digest)); tt_mem_op(service_dup->rend_cookie, OP_EQ, service->rend_cookie, sizeof(service_dup->rend_cookie)); tt_assert(service_dup->hsdirs_fp); tt_int_op(smartlist_len(service_dup->hsdirs_fp), ==, 0); for (rep = 0; rep < REND_NUMBER_OF_NON_CONSECUTIVE_REPLICAS; rep++) { tt_int_op(tor_digest_is_zero(service_dup->descriptor_id[rep]), ==, 1); } /* The rest should be zeroed because this is a service request. */ tt_int_op(tor_digest_is_zero(service_dup->descriptor_cookie), ==, 1); tt_int_op(tor_digest_is_zero(service_dup->desc_id_fetch), ==, 1); done: rend_data_free(service); rend_data_free(service_dup); rend_data_free(client); rend_data_free(client_dup); } struct testcase_t hs_tests[] = { { "hs_rend_data", test_hs_rend_data, TT_FORK, NULL, NULL }, { "hs_desc_event", test_hs_desc_event, TT_FORK, NULL, NULL }, { "pick_tor2web_rendezvous_node", test_pick_tor2web_rendezvous_node, TT_FORK, NULL, NULL }, { "pick_bad_tor2web_rendezvous_node", test_pick_bad_tor2web_rendezvous_node, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_introduce.c0000644000175000017500000004274012621363246014372 00000000000000/* Copyright (c) 2012-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #include "crypto.h" #include "or.h" #include "test.h" #define RENDSERVICE_PRIVATE #include "rendservice.h" extern const char AUTHORITY_SIGNKEY_1[]; static uint8_t v0_test_plaintext[] = /* 20 bytes of rendezvous point nickname */ { 0x4e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 20 bytes dummy rendezvous cookie */ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, /* 128 bytes dummy DH handshake data */ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00 }; static uint8_t v1_test_plaintext[] = /* Version byte */ { 0x01, /* 42 bytes of dummy rendezvous point hex digest */ 0x24, 0x30, 0x30, 0x30, 0x31, 0x30, 0x32, 0x30, 0x33, 0x30, 0x34, 0x30, 0x35, 0x30, 0x36, 0x30, 0x37, 0x30, 0x38, 0x30, 0x39, 0x30, 0x41, 0x30, 0x42, 0x30, 0x43, 0x30, 0x44, 0x30, 0x45, 0x30, 0x46, 0x31, 0x30, 0x31, 0x31, 0x31, 0x32, 0x31, 0x33, 0x00, /* 20 bytes dummy rendezvous cookie */ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, /* 128 bytes dummy DH handshake data */ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00 }; static uint8_t v2_test_plaintext[] = /* Version byte */ { 0x02, /* 4 bytes rendezvous point's IP address */ 0xc0, 0xa8, 0x00, 0x01, /* 2 bytes rendezvous point's OR port */ 0x23, 0x5a, /* 20 bytes dummy rendezvous point's identity digest */ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, /* 2 bytes length of onion key */ 0x00, 0x8c, /* Onion key (140 bytes taken from live test) */ 0x30, 0x81, 0x89, 0x02, 0x81, 0x81, 0x00, 0xb1, 0xcd, 0x46, 0xa9, 0x18, 0xd2, 0x0f, 0x01, 0xf8, 0xb2, 0xad, 0xa4, 0x79, 0xb4, 0xbb, 0x4b, 0xf4, 0x54, 0x1e, 0x3f, 0x03, 0x54, 0xcf, 0x7c, 0xb6, 0xb5, 0xf0, 0xfe, 0xed, 0x4b, 0x7d, 0xd7, 0x61, 0xdb, 0x6d, 0xd9, 0x19, 0xe2, 0x72, 0x04, 0xaa, 0x3e, 0x89, 0x26, 0x14, 0x62, 0x9a, 0x6c, 0x11, 0x0b, 0x35, 0x99, 0x2c, 0x9f, 0x2c, 0x64, 0xa1, 0xd9, 0xe2, 0x88, 0xce, 0xf6, 0x54, 0xfe, 0x1d, 0x37, 0x5e, 0x6d, 0x73, 0x95, 0x54, 0x90, 0xf0, 0x7b, 0xfa, 0xd4, 0x44, 0xac, 0xb2, 0x23, 0x9f, 0x75, 0x36, 0xe2, 0x78, 0x62, 0x82, 0x80, 0xa4, 0x23, 0x22, 0xc9, 0xbf, 0xc4, 0x36, 0xd1, 0x31, 0x33, 0x8e, 0x64, 0xb4, 0xa9, 0x74, 0xa1, 0xcb, 0x42, 0x8d, 0x60, 0xc7, 0xbb, 0x8e, 0x6e, 0x0f, 0x36, 0x74, 0x8e, 0xf4, 0x08, 0x99, 0x06, 0x92, 0xb1, 0x3f, 0xb3, 0xdd, 0xed, 0xf7, 0xc9, 0x02, 0x03, 0x01, 0x00, 0x01, /* 20 bytes dummy rendezvous cookie */ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, /* 128 bytes dummy DH handshake data */ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00 }; static uint8_t v3_no_auth_test_plaintext[] = /* Version byte */ { 0x03, /* Auth type (0 for no auth len/auth data) */ 0x00, /* Timestamp */ 0x50, 0x0b, 0xb5, 0xaa, /* 4 bytes rendezvous point's IP address */ 0xc0, 0xa8, 0x00, 0x01, /* 2 bytes rendezvous point's OR port */ 0x23, 0x5a, /* 20 bytes dummy rendezvous point's identity digest */ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, /* 2 bytes length of onion key */ 0x00, 0x8c, /* Onion key (140 bytes taken from live test) */ 0x30, 0x81, 0x89, 0x02, 0x81, 0x81, 0x00, 0xb1, 0xcd, 0x46, 0xa9, 0x18, 0xd2, 0x0f, 0x01, 0xf8, 0xb2, 0xad, 0xa4, 0x79, 0xb4, 0xbb, 0x4b, 0xf4, 0x54, 0x1e, 0x3f, 0x03, 0x54, 0xcf, 0x7c, 0xb6, 0xb5, 0xf0, 0xfe, 0xed, 0x4b, 0x7d, 0xd7, 0x61, 0xdb, 0x6d, 0xd9, 0x19, 0xe2, 0x72, 0x04, 0xaa, 0x3e, 0x89, 0x26, 0x14, 0x62, 0x9a, 0x6c, 0x11, 0x0b, 0x35, 0x99, 0x2c, 0x9f, 0x2c, 0x64, 0xa1, 0xd9, 0xe2, 0x88, 0xce, 0xf6, 0x54, 0xfe, 0x1d, 0x37, 0x5e, 0x6d, 0x73, 0x95, 0x54, 0x90, 0xf0, 0x7b, 0xfa, 0xd4, 0x44, 0xac, 0xb2, 0x23, 0x9f, 0x75, 0x36, 0xe2, 0x78, 0x62, 0x82, 0x80, 0xa4, 0x23, 0x22, 0xc9, 0xbf, 0xc4, 0x36, 0xd1, 0x31, 0x33, 0x8e, 0x64, 0xb4, 0xa9, 0x74, 0xa1, 0xcb, 0x42, 0x8d, 0x60, 0xc7, 0xbb, 0x8e, 0x6e, 0x0f, 0x36, 0x74, 0x8e, 0xf4, 0x08, 0x99, 0x06, 0x92, 0xb1, 0x3f, 0xb3, 0xdd, 0xed, 0xf7, 0xc9, 0x02, 0x03, 0x01, 0x00, 0x01, /* 20 bytes dummy rendezvous cookie */ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, /* 128 bytes dummy DH handshake data */ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00 }; static uint8_t v3_basic_auth_test_plaintext[] = /* Version byte */ { 0x03, /* Auth type (1 for REND_BASIC_AUTH) */ 0x01, /* Auth len (must be 16 bytes for REND_BASIC_AUTH) */ 0x00, 0x10, /* Auth data (a 16-byte dummy descriptor cookie) */ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, /* Timestamp */ 0x50, 0x0b, 0xb5, 0xaa, /* 4 bytes rendezvous point's IP address */ 0xc0, 0xa8, 0x00, 0x01, /* 2 bytes rendezvous point's OR port */ 0x23, 0x5a, /* 20 bytes dummy rendezvous point's identity digest */ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, /* 2 bytes length of onion key */ 0x00, 0x8c, /* Onion key (140 bytes taken from live test) */ 0x30, 0x81, 0x89, 0x02, 0x81, 0x81, 0x00, 0xb1, 0xcd, 0x46, 0xa9, 0x18, 0xd2, 0x0f, 0x01, 0xf8, 0xb2, 0xad, 0xa4, 0x79, 0xb4, 0xbb, 0x4b, 0xf4, 0x54, 0x1e, 0x3f, 0x03, 0x54, 0xcf, 0x7c, 0xb6, 0xb5, 0xf0, 0xfe, 0xed, 0x4b, 0x7d, 0xd7, 0x61, 0xdb, 0x6d, 0xd9, 0x19, 0xe2, 0x72, 0x04, 0xaa, 0x3e, 0x89, 0x26, 0x14, 0x62, 0x9a, 0x6c, 0x11, 0x0b, 0x35, 0x99, 0x2c, 0x9f, 0x2c, 0x64, 0xa1, 0xd9, 0xe2, 0x88, 0xce, 0xf6, 0x54, 0xfe, 0x1d, 0x37, 0x5e, 0x6d, 0x73, 0x95, 0x54, 0x90, 0xf0, 0x7b, 0xfa, 0xd4, 0x44, 0xac, 0xb2, 0x23, 0x9f, 0x75, 0x36, 0xe2, 0x78, 0x62, 0x82, 0x80, 0xa4, 0x23, 0x22, 0xc9, 0xbf, 0xc4, 0x36, 0xd1, 0x31, 0x33, 0x8e, 0x64, 0xb4, 0xa9, 0x74, 0xa1, 0xcb, 0x42, 0x8d, 0x60, 0xc7, 0xbb, 0x8e, 0x6e, 0x0f, 0x36, 0x74, 0x8e, 0xf4, 0x08, 0x99, 0x06, 0x92, 0xb1, 0x3f, 0xb3, 0xdd, 0xed, 0xf7, 0xc9, 0x02, 0x03, 0x01, 0x00, 0x01, /* 20 bytes dummy rendezvous cookie */ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, /* 128 bytes dummy DH handshake data */ 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x0f, 0x0e, 0x0d, 0x0c, 0x0b, 0x0a, 0x09, 0x08, 0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00 }; static void do_decrypt_test(uint8_t *plaintext, size_t plaintext_len); static void do_early_parse_test(uint8_t *plaintext, size_t plaintext_len); static void do_late_parse_test(uint8_t *plaintext, size_t plaintext_len); static void do_parse_test(uint8_t *plaintext, size_t plaintext_len, int phase); static ssize_t make_intro_from_plaintext( void *buf, size_t len, crypto_pk_t *key, void **cell_out); #define EARLY_PARSE_ONLY 1 #define DECRYPT_ONLY 2 #define ALL_PARSING 3 static void do_early_parse_test(uint8_t *plaintext, size_t plaintext_len) { do_parse_test(plaintext, plaintext_len, EARLY_PARSE_ONLY); } static void do_decrypt_test(uint8_t *plaintext, size_t plaintext_len) { do_parse_test(plaintext, plaintext_len, DECRYPT_ONLY); } static void do_late_parse_test(uint8_t *plaintext, size_t plaintext_len) { do_parse_test(plaintext, plaintext_len, ALL_PARSING); } /** Test utility function: checks that the plaintext_len-byte string at * plaintext is at least superficially parseable. */ static void do_parse_test(uint8_t *plaintext, size_t plaintext_len, int phase) { crypto_pk_t *k = NULL; ssize_t r; uint8_t *cell = NULL; size_t cell_len; rend_intro_cell_t *parsed_req = NULL; char *err_msg = NULL; char digest[DIGEST_LEN]; /* Get a key */ k = crypto_pk_new(); tt_assert(k); r = crypto_pk_read_private_key_from_string(k, AUTHORITY_SIGNKEY_1, -1); tt_assert(!r); /* Get digest for future comparison */ r = crypto_pk_get_digest(k, digest); tt_assert(r >= 0); /* Make a cell out of it */ r = make_intro_from_plaintext( plaintext, plaintext_len, k, (void **)(&cell)); tt_assert(r > 0); tt_assert(cell); cell_len = r; /* Do early parsing */ parsed_req = rend_service_begin_parse_intro(cell, cell_len, 2, &err_msg); tt_assert(parsed_req); tt_assert(!err_msg); tt_mem_op(parsed_req->pk,OP_EQ, digest, DIGEST_LEN); tt_assert(parsed_req->ciphertext); tt_assert(parsed_req->ciphertext_len > 0); if (phase == EARLY_PARSE_ONLY) goto done; /* Do decryption */ r = rend_service_decrypt_intro(parsed_req, k, &err_msg); tt_assert(!r); tt_assert(!err_msg); tt_assert(parsed_req->plaintext); tt_assert(parsed_req->plaintext_len > 0); if (phase == DECRYPT_ONLY) goto done; /* Do late parsing */ r = rend_service_parse_intro_plaintext(parsed_req, &err_msg); tt_assert(!r); tt_assert(!err_msg); tt_assert(parsed_req->parsed); done: tor_free(cell); crypto_pk_free(k); rend_service_free_intro(parsed_req); tor_free(err_msg); } /** Given the plaintext of the encrypted part of an INTRODUCE1/2 and a key, * construct the encrypted cell for testing. */ static ssize_t make_intro_from_plaintext( void *buf, size_t len, crypto_pk_t *key, void **cell_out) { char *cell = NULL; ssize_t cell_len = -1, r; /* Assemble key digest and ciphertext, then construct the cell */ ssize_t ciphertext_size; if (!(buf && key && len > 0 && cell_out)) goto done; /* * Figure out an upper bound on how big the ciphertext will be * (see crypto_pk_public_hybrid_encrypt()) */ ciphertext_size = PKCS1_OAEP_PADDING_OVERHEAD; ciphertext_size += crypto_pk_keysize(key); ciphertext_size += CIPHER_KEY_LEN; ciphertext_size += len; /* * Allocate space for the cell */ cell = tor_malloc(DIGEST_LEN + ciphertext_size); /* Compute key digest (will be first DIGEST_LEN octets of cell) */ r = crypto_pk_get_digest(key, cell); tt_assert(r >= 0); /* Do encryption */ r = crypto_pk_public_hybrid_encrypt( key, cell + DIGEST_LEN, ciphertext_size, buf, len, PK_PKCS1_OAEP_PADDING, 0); tt_assert(r >= 0); /* Figure out cell length */ cell_len = DIGEST_LEN + r; /* Output the cell */ *cell_out = cell; done: return cell_len; } /** Test v0 INTRODUCE2 parsing through decryption only */ static void test_introduce_decrypt_v0(void *arg) { (void)arg; do_decrypt_test(v0_test_plaintext, sizeof(v0_test_plaintext)); } /** Test v1 INTRODUCE2 parsing through decryption only */ static void test_introduce_decrypt_v1(void *arg) { (void)arg; do_decrypt_test(v1_test_plaintext, sizeof(v1_test_plaintext)); } /** Test v2 INTRODUCE2 parsing through decryption only */ static void test_introduce_decrypt_v2(void *arg) { (void)arg; do_decrypt_test(v2_test_plaintext, sizeof(v2_test_plaintext)); } /** Test v3 INTRODUCE2 parsing through decryption only */ static void test_introduce_decrypt_v3(void *arg) { (void)arg; do_decrypt_test( v3_no_auth_test_plaintext, sizeof(v3_no_auth_test_plaintext)); do_decrypt_test( v3_basic_auth_test_plaintext, sizeof(v3_basic_auth_test_plaintext)); } /** Test v0 INTRODUCE2 parsing through early parsing only */ static void test_introduce_early_parse_v0(void *arg) { (void)arg; do_early_parse_test(v0_test_plaintext, sizeof(v0_test_plaintext)); } /** Test v1 INTRODUCE2 parsing through early parsing only */ static void test_introduce_early_parse_v1(void *arg) { (void)arg; do_early_parse_test(v1_test_plaintext, sizeof(v1_test_plaintext)); } /** Test v2 INTRODUCE2 parsing through early parsing only */ static void test_introduce_early_parse_v2(void *arg) { (void)arg; do_early_parse_test(v2_test_plaintext, sizeof(v2_test_plaintext)); } /** Test v3 INTRODUCE2 parsing through early parsing only */ static void test_introduce_early_parse_v3(void *arg) { (void)arg; do_early_parse_test( v3_no_auth_test_plaintext, sizeof(v3_no_auth_test_plaintext)); do_early_parse_test( v3_basic_auth_test_plaintext, sizeof(v3_basic_auth_test_plaintext)); } /** Test v0 INTRODUCE2 parsing */ static void test_introduce_late_parse_v0(void *arg) { (void)arg; do_late_parse_test(v0_test_plaintext, sizeof(v0_test_plaintext)); } /** Test v1 INTRODUCE2 parsing */ static void test_introduce_late_parse_v1(void *arg) { (void)arg; do_late_parse_test(v1_test_plaintext, sizeof(v1_test_plaintext)); } /** Test v2 INTRODUCE2 parsing */ static void test_introduce_late_parse_v2(void *arg) { (void)arg; do_late_parse_test(v2_test_plaintext, sizeof(v2_test_plaintext)); } /** Test v3 INTRODUCE2 parsing */ static void test_introduce_late_parse_v3(void *arg) { (void)arg; do_late_parse_test( v3_no_auth_test_plaintext, sizeof(v3_no_auth_test_plaintext)); do_late_parse_test( v3_basic_auth_test_plaintext, sizeof(v3_basic_auth_test_plaintext)); } #define INTRODUCE_LEGACY(name) \ { #name, test_introduce_ ## name , 0, NULL, NULL } struct testcase_t introduce_tests[] = { INTRODUCE_LEGACY(early_parse_v0), INTRODUCE_LEGACY(early_parse_v1), INTRODUCE_LEGACY(early_parse_v2), INTRODUCE_LEGACY(early_parse_v3), INTRODUCE_LEGACY(decrypt_v0), INTRODUCE_LEGACY(decrypt_v1), INTRODUCE_LEGACY(decrypt_v2), INTRODUCE_LEGACY(decrypt_v3), INTRODUCE_LEGACY(late_parse_v0), INTRODUCE_LEGACY(late_parse_v1), INTRODUCE_LEGACY(late_parse_v2), INTRODUCE_LEGACY(late_parse_v3), END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_link_handshake.c0000644000175000017500000007220612621363246015341 00000000000000/* Copyright (c) 2014, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #define CHANNELTLS_PRIVATE #define CONNECTION_PRIVATE #define TOR_CHANNEL_INTERNAL_ #include "or.h" #include "config.h" #include "connection.h" #include "connection_or.h" #include "channeltls.h" #include "link_handshake.h" #include "scheduler.h" #include "test.h" var_cell_t *mock_got_var_cell = NULL; static void mock_write_var_cell(const var_cell_t *vc, or_connection_t *conn) { (void)conn; var_cell_t *newcell = var_cell_new(vc->payload_len); memcpy(newcell, vc, sizeof(var_cell_t)); memcpy(newcell->payload, vc->payload, vc->payload_len); mock_got_var_cell = newcell; } static int mock_tls_cert_matches_key(const tor_tls_t *tls, const tor_x509_cert_t *cert) { (void) tls; (void) cert; // XXXX look at this. return 1; } static int mock_send_netinfo_called = 0; static int mock_send_netinfo(or_connection_t *conn) { (void) conn; ++mock_send_netinfo_called;// XXX check_this return 0; } static int mock_close_called = 0; static void mock_close_for_err(or_connection_t *orconn, int flush) { (void)orconn; (void)flush; ++mock_close_called; } static int mock_send_authenticate_called = 0; static int mock_send_authenticate(or_connection_t *conn, int type) { (void) conn; (void) type; ++mock_send_authenticate_called;// XXX check_this return 0; } /* Test good certs cells */ static void test_link_handshake_certs_ok(void *arg) { (void) arg; or_connection_t *c1 = or_connection_new(CONN_TYPE_OR, AF_INET); or_connection_t *c2 = or_connection_new(CONN_TYPE_OR, AF_INET); var_cell_t *cell1 = NULL, *cell2 = NULL; certs_cell_t *cc1 = NULL, *cc2 = NULL; channel_tls_t *chan1 = NULL, *chan2 = NULL; crypto_pk_t *key1 = NULL, *key2 = NULL; scheduler_init(); MOCK(tor_tls_cert_matches_key, mock_tls_cert_matches_key); MOCK(connection_or_write_var_cell_to_buf, mock_write_var_cell); MOCK(connection_or_send_netinfo, mock_send_netinfo); key1 = pk_generate(2); key2 = pk_generate(3); /* We need to make sure that our TLS certificates are set up before we can * actually generate a CERTS cell. */ tt_int_op(tor_tls_context_init(TOR_TLS_CTX_IS_PUBLIC_SERVER, key1, key2, 86400), ==, 0); c1->base_.state = OR_CONN_STATE_OR_HANDSHAKING_V3; c1->link_proto = 3; tt_int_op(connection_init_or_handshake_state(c1, 1), ==, 0); c2->base_.state = OR_CONN_STATE_OR_HANDSHAKING_V3; c2->link_proto = 3; tt_int_op(connection_init_or_handshake_state(c2, 0), ==, 0); tt_int_op(0, ==, connection_or_send_certs_cell(c1)); tt_assert(mock_got_var_cell); cell1 = mock_got_var_cell; tt_int_op(0, ==, connection_or_send_certs_cell(c2)); tt_assert(mock_got_var_cell); cell2 = mock_got_var_cell; tt_int_op(cell1->command, ==, CELL_CERTS); tt_int_op(cell1->payload_len, >, 1); tt_int_op(cell2->command, ==, CELL_CERTS); tt_int_op(cell2->payload_len, >, 1); tt_int_op(cell1->payload_len, ==, certs_cell_parse(&cc1, cell1->payload, cell1->payload_len)); tt_int_op(cell2->payload_len, ==, certs_cell_parse(&cc2, cell2->payload, cell2->payload_len)); tt_int_op(2, ==, cc1->n_certs); tt_int_op(2, ==, cc2->n_certs); tt_int_op(certs_cell_get_certs(cc1, 0)->cert_type, ==, CERTTYPE_RSA1024_ID_AUTH); tt_int_op(certs_cell_get_certs(cc1, 1)->cert_type, ==, CERTTYPE_RSA1024_ID_ID); tt_int_op(certs_cell_get_certs(cc2, 0)->cert_type, ==, CERTTYPE_RSA1024_ID_LINK); tt_int_op(certs_cell_get_certs(cc2, 1)->cert_type, ==, CERTTYPE_RSA1024_ID_ID); chan1 = tor_malloc_zero(sizeof(*chan1)); channel_tls_common_init(chan1); c1->chan = chan1; chan1->conn = c1; c1->base_.address = tor_strdup("C1"); c1->tls = tor_tls_new(-1, 0); c1->link_proto = 4; c1->base_.conn_array_index = -1; crypto_pk_get_digest(key2, c1->identity_digest); channel_tls_process_certs_cell(cell2, chan1); tt_assert(c1->handshake_state->received_certs_cell); tt_assert(c1->handshake_state->auth_cert == NULL); tt_assert(c1->handshake_state->id_cert); tt_assert(! tor_mem_is_zero( (char*)c1->handshake_state->authenticated_peer_id, 20)); chan2 = tor_malloc_zero(sizeof(*chan2)); channel_tls_common_init(chan2); c2->chan = chan2; chan2->conn = c2; c2->base_.address = tor_strdup("C2"); c2->tls = tor_tls_new(-1, 1); c2->link_proto = 4; c2->base_.conn_array_index = -1; crypto_pk_get_digest(key1, c2->identity_digest); channel_tls_process_certs_cell(cell1, chan2); tt_assert(c2->handshake_state->received_certs_cell); tt_assert(c2->handshake_state->auth_cert); tt_assert(c2->handshake_state->id_cert); tt_assert(tor_mem_is_zero( (char*)c2->handshake_state->authenticated_peer_id, 20)); done: UNMOCK(tor_tls_cert_matches_key); UNMOCK(connection_or_write_var_cell_to_buf); UNMOCK(connection_or_send_netinfo); connection_free_(TO_CONN(c1)); connection_free_(TO_CONN(c2)); tor_free(cell1); tor_free(cell2); certs_cell_free(cc1); certs_cell_free(cc2); if (chan1) circuitmux_free(chan1->base_.cmux); tor_free(chan1); if (chan2) circuitmux_free(chan2->base_.cmux); tor_free(chan2); crypto_pk_free(key1); crypto_pk_free(key2); } typedef struct certs_data_s { or_connection_t *c; channel_tls_t *chan; certs_cell_t *ccell; var_cell_t *cell; crypto_pk_t *key1, *key2; } certs_data_t; static int recv_certs_cleanup(const struct testcase_t *test, void *obj) { (void)test; certs_data_t *d = obj; UNMOCK(tor_tls_cert_matches_key); UNMOCK(connection_or_send_netinfo); UNMOCK(connection_or_close_for_error); if (d) { tor_free(d->cell); certs_cell_free(d->ccell); connection_free_(TO_CONN(d->c)); circuitmux_free(d->chan->base_.cmux); tor_free(d->chan); crypto_pk_free(d->key1); crypto_pk_free(d->key2); tor_free(d); } return 1; } static void * recv_certs_setup(const struct testcase_t *test) { (void)test; certs_data_t *d = tor_malloc_zero(sizeof(*d)); certs_cell_cert_t *ccc1 = NULL; certs_cell_cert_t *ccc2 = NULL; ssize_t n; d->c = or_connection_new(CONN_TYPE_OR, AF_INET); d->chan = tor_malloc_zero(sizeof(*d->chan)); d->c->chan = d->chan; d->c->base_.address = tor_strdup("HaveAnAddress"); d->c->base_.state = OR_CONN_STATE_OR_HANDSHAKING_V3; d->chan->conn = d->c; tt_int_op(connection_init_or_handshake_state(d->c, 1), ==, 0); d->c->link_proto = 4; d->key1 = pk_generate(2); d->key2 = pk_generate(3); tt_int_op(tor_tls_context_init(TOR_TLS_CTX_IS_PUBLIC_SERVER, d->key1, d->key2, 86400), ==, 0); d->ccell = certs_cell_new(); ccc1 = certs_cell_cert_new(); certs_cell_add_certs(d->ccell, ccc1); ccc2 = certs_cell_cert_new(); certs_cell_add_certs(d->ccell, ccc2); d->ccell->n_certs = 2; ccc1->cert_type = 1; ccc2->cert_type = 2; const tor_x509_cert_t *a,*b; const uint8_t *enca, *encb; size_t lena, lenb; tor_tls_get_my_certs(1, &a, &b); tor_x509_cert_get_der(a, &enca, &lena); tor_x509_cert_get_der(b, &encb, &lenb); certs_cell_cert_setlen_body(ccc1, lena); ccc1->cert_len = lena; certs_cell_cert_setlen_body(ccc2, lenb); ccc2->cert_len = lenb; memcpy(certs_cell_cert_getarray_body(ccc1), enca, lena); memcpy(certs_cell_cert_getarray_body(ccc2), encb, lenb); d->cell = var_cell_new(4096); d->cell->command = CELL_CERTS; n = certs_cell_encode(d->cell->payload, 4096, d->ccell); tt_int_op(n, >, 0); d->cell->payload_len = n; MOCK(tor_tls_cert_matches_key, mock_tls_cert_matches_key); MOCK(connection_or_send_netinfo, mock_send_netinfo); MOCK(connection_or_close_for_error, mock_close_for_err); tt_int_op(0, ==, d->c->handshake_state->received_certs_cell); tt_int_op(0, ==, mock_send_authenticate_called); tt_int_op(0, ==, mock_send_netinfo_called); return d; done: recv_certs_cleanup(test, d); return NULL; } static struct testcase_setup_t setup_recv_certs = { .setup_fn = recv_certs_setup, .cleanup_fn = recv_certs_cleanup }; static void test_link_handshake_recv_certs_ok(void *arg) { certs_data_t *d = arg; channel_tls_process_certs_cell(d->cell, d->chan); tt_int_op(0, ==, mock_close_called); tt_int_op(d->c->handshake_state->authenticated, ==, 1); tt_int_op(d->c->handshake_state->received_certs_cell, ==, 1); tt_assert(d->c->handshake_state->id_cert != NULL); tt_assert(d->c->handshake_state->auth_cert == NULL); done: ; } static void test_link_handshake_recv_certs_ok_server(void *arg) { certs_data_t *d = arg; d->c->handshake_state->started_here = 0; certs_cell_get_certs(d->ccell, 0)->cert_type = 3; certs_cell_get_certs(d->ccell, 1)->cert_type = 2; ssize_t n = certs_cell_encode(d->cell->payload, 2048, d->ccell); tt_int_op(n, >, 0); d->cell->payload_len = n; channel_tls_process_certs_cell(d->cell, d->chan); tt_int_op(0, ==, mock_close_called); tt_int_op(d->c->handshake_state->authenticated, ==, 0); tt_int_op(d->c->handshake_state->received_certs_cell, ==, 1); tt_assert(d->c->handshake_state->id_cert != NULL); tt_assert(d->c->handshake_state->auth_cert != NULL); done: ; } #define CERTS_FAIL(name, code) \ static void \ test_link_handshake_recv_certs_ ## name(void *arg) \ { \ certs_data_t *d = arg; \ { code ; } \ channel_tls_process_certs_cell(d->cell, d->chan); \ tt_int_op(1, ==, mock_close_called); \ tt_int_op(0, ==, mock_send_authenticate_called); \ tt_int_op(0, ==, mock_send_netinfo_called); \ done: \ ; \ } CERTS_FAIL(badstate, d->c->base_.state = OR_CONN_STATE_CONNECTING) CERTS_FAIL(badproto, d->c->link_proto = 2) CERTS_FAIL(duplicate, d->c->handshake_state->received_certs_cell = 1) CERTS_FAIL(already_authenticated, d->c->handshake_state->authenticated = 1) CERTS_FAIL(empty, d->cell->payload_len = 0) CERTS_FAIL(bad_circid, d->cell->circ_id = 1) CERTS_FAIL(truncated_1, d->cell->payload[0] = 5) CERTS_FAIL(truncated_2, { d->cell->payload_len = 4; memcpy(d->cell->payload, "\x01\x01\x00\x05", 4); }) CERTS_FAIL(truncated_3, { d->cell->payload_len = 7; memcpy(d->cell->payload, "\x01\x01\x00\x05""abc", 7); }) #define REENCODE() do { \ ssize_t n = certs_cell_encode(d->cell->payload, 4096, d->ccell); \ tt_int_op(n, >, 0); \ d->cell->payload_len = n; \ } while (0) CERTS_FAIL(not_x509, { certs_cell_cert_setlen_body(certs_cell_get_certs(d->ccell, 0), 3); certs_cell_get_certs(d->ccell, 0)->cert_len = 3; REENCODE(); }) CERTS_FAIL(both_link, { certs_cell_get_certs(d->ccell, 0)->cert_type = 1; certs_cell_get_certs(d->ccell, 1)->cert_type = 1; REENCODE(); }) CERTS_FAIL(both_id_rsa, { certs_cell_get_certs(d->ccell, 0)->cert_type = 2; certs_cell_get_certs(d->ccell, 1)->cert_type = 2; REENCODE(); }) CERTS_FAIL(both_auth, { certs_cell_get_certs(d->ccell, 0)->cert_type = 3; certs_cell_get_certs(d->ccell, 1)->cert_type = 3; REENCODE(); }) CERTS_FAIL(wrong_labels_1, { certs_cell_get_certs(d->ccell, 0)->cert_type = 2; certs_cell_get_certs(d->ccell, 1)->cert_type = 1; REENCODE(); }) CERTS_FAIL(wrong_labels_2, { const tor_x509_cert_t *a; const tor_x509_cert_t *b; const uint8_t *enca; size_t lena; tor_tls_get_my_certs(1, &a, &b); tor_x509_cert_get_der(a, &enca, &lena); certs_cell_cert_setlen_body(certs_cell_get_certs(d->ccell, 1), lena); memcpy(certs_cell_cert_getarray_body(certs_cell_get_certs(d->ccell, 1)), enca, lena); certs_cell_get_certs(d->ccell, 1)->cert_len = lena; REENCODE(); }) CERTS_FAIL(wrong_labels_3, { certs_cell_get_certs(d->ccell, 0)->cert_type = 2; certs_cell_get_certs(d->ccell, 1)->cert_type = 3; REENCODE(); }) CERTS_FAIL(server_missing_certs, { d->c->handshake_state->started_here = 0; }) CERTS_FAIL(server_wrong_labels_1, { d->c->handshake_state->started_here = 0; certs_cell_get_certs(d->ccell, 0)->cert_type = 2; certs_cell_get_certs(d->ccell, 1)->cert_type = 3; REENCODE(); }) static void test_link_handshake_send_authchallenge(void *arg) { (void)arg; or_connection_t *c1 = or_connection_new(CONN_TYPE_OR, AF_INET); var_cell_t *cell1=NULL, *cell2=NULL; MOCK(connection_or_write_var_cell_to_buf, mock_write_var_cell); tt_int_op(connection_init_or_handshake_state(c1, 0), ==, 0); c1->base_.state = OR_CONN_STATE_OR_HANDSHAKING_V3; tt_assert(! mock_got_var_cell); tt_int_op(0, ==, connection_or_send_auth_challenge_cell(c1)); cell1 = mock_got_var_cell; tt_int_op(0, ==, connection_or_send_auth_challenge_cell(c1)); cell2 = mock_got_var_cell; tt_int_op(36, ==, cell1->payload_len); tt_int_op(36, ==, cell2->payload_len); tt_int_op(0, ==, cell1->circ_id); tt_int_op(0, ==, cell2->circ_id); tt_int_op(CELL_AUTH_CHALLENGE, ==, cell1->command); tt_int_op(CELL_AUTH_CHALLENGE, ==, cell2->command); tt_mem_op("\x00\x01\x00\x01", ==, cell1->payload + 32, 4); tt_mem_op("\x00\x01\x00\x01", ==, cell2->payload + 32, 4); tt_mem_op(cell1->payload, !=, cell2->payload, 32); done: UNMOCK(connection_or_write_var_cell_to_buf); connection_free_(TO_CONN(c1)); tor_free(cell1); tor_free(cell2); } typedef struct authchallenge_data_s { or_connection_t *c; channel_tls_t *chan; var_cell_t *cell; } authchallenge_data_t; static int recv_authchallenge_cleanup(const struct testcase_t *test, void *obj) { (void)test; authchallenge_data_t *d = obj; UNMOCK(connection_or_send_netinfo); UNMOCK(connection_or_close_for_error); UNMOCK(connection_or_send_authenticate_cell); if (d) { tor_free(d->cell); connection_free_(TO_CONN(d->c)); circuitmux_free(d->chan->base_.cmux); tor_free(d->chan); tor_free(d); } return 1; } static void * recv_authchallenge_setup(const struct testcase_t *test) { (void)test; authchallenge_data_t *d = tor_malloc_zero(sizeof(*d)); d->c = or_connection_new(CONN_TYPE_OR, AF_INET); d->chan = tor_malloc_zero(sizeof(*d->chan)); d->c->chan = d->chan; d->c->base_.address = tor_strdup("HaveAnAddress"); d->c->base_.state = OR_CONN_STATE_OR_HANDSHAKING_V3; d->chan->conn = d->c; tt_int_op(connection_init_or_handshake_state(d->c, 1), ==, 0); d->c->link_proto = 4; d->c->handshake_state->received_certs_cell = 1; d->cell = var_cell_new(128); d->cell->payload_len = 38; d->cell->payload[33] = 2; d->cell->payload[35] = 7; d->cell->payload[37] = 1; d->cell->command = CELL_AUTH_CHALLENGE; get_options_mutable()->ORPort_set = 1; MOCK(connection_or_close_for_error, mock_close_for_err); MOCK(connection_or_send_netinfo, mock_send_netinfo); MOCK(connection_or_send_authenticate_cell, mock_send_authenticate); tt_int_op(0, ==, d->c->handshake_state->received_auth_challenge); tt_int_op(0, ==, mock_send_authenticate_called); tt_int_op(0, ==, mock_send_netinfo_called); return d; done: recv_authchallenge_cleanup(test, d); return NULL; } static struct testcase_setup_t setup_recv_authchallenge = { .setup_fn = recv_authchallenge_setup, .cleanup_fn = recv_authchallenge_cleanup }; static void test_link_handshake_recv_authchallenge_ok(void *arg) { authchallenge_data_t *d = arg; channel_tls_process_auth_challenge_cell(d->cell, d->chan); tt_int_op(0, ==, mock_close_called); tt_int_op(1, ==, d->c->handshake_state->received_auth_challenge); tt_int_op(1, ==, mock_send_authenticate_called); tt_int_op(1, ==, mock_send_netinfo_called); done: ; } static void test_link_handshake_recv_authchallenge_ok_noserver(void *arg) { authchallenge_data_t *d = arg; get_options_mutable()->ORPort_set = 0; channel_tls_process_auth_challenge_cell(d->cell, d->chan); tt_int_op(0, ==, mock_close_called); tt_int_op(1, ==, d->c->handshake_state->received_auth_challenge); tt_int_op(0, ==, mock_send_authenticate_called); tt_int_op(0, ==, mock_send_netinfo_called); done: ; } static void test_link_handshake_recv_authchallenge_ok_unrecognized(void *arg) { authchallenge_data_t *d = arg; d->cell->payload[37] = 99; channel_tls_process_auth_challenge_cell(d->cell, d->chan); tt_int_op(0, ==, mock_close_called); tt_int_op(1, ==, d->c->handshake_state->received_auth_challenge); tt_int_op(0, ==, mock_send_authenticate_called); tt_int_op(1, ==, mock_send_netinfo_called); done: ; } #define AUTHCHALLENGE_FAIL(name, code) \ static void \ test_link_handshake_recv_authchallenge_ ## name(void *arg) \ { \ authchallenge_data_t *d = arg; \ { code ; } \ channel_tls_process_auth_challenge_cell(d->cell, d->chan); \ tt_int_op(1, ==, mock_close_called); \ tt_int_op(0, ==, mock_send_authenticate_called); \ tt_int_op(0, ==, mock_send_netinfo_called); \ done: \ ; \ } AUTHCHALLENGE_FAIL(badstate, d->c->base_.state = OR_CONN_STATE_CONNECTING) AUTHCHALLENGE_FAIL(badproto, d->c->link_proto = 2) AUTHCHALLENGE_FAIL(as_server, d->c->handshake_state->started_here = 0;) AUTHCHALLENGE_FAIL(duplicate, d->c->handshake_state->received_auth_challenge = 1) AUTHCHALLENGE_FAIL(nocerts, d->c->handshake_state->received_certs_cell = 0) AUTHCHALLENGE_FAIL(tooshort, d->cell->payload_len = 33) AUTHCHALLENGE_FAIL(truncated, d->cell->payload_len = 34) AUTHCHALLENGE_FAIL(nonzero_circid, d->cell->circ_id = 1337) static tor_x509_cert_t *mock_peer_cert = NULL; static tor_x509_cert_t * mock_get_peer_cert(tor_tls_t *tls) { (void)tls; return mock_peer_cert; } static int mock_get_tlssecrets(tor_tls_t *tls, uint8_t *secrets_out) { (void)tls; memcpy(secrets_out, "int getRandomNumber(){return 4;}", 32); return 0; } static void mock_set_circid_type(channel_t *chan, crypto_pk_t *identity_rcvd, int consider_identity) { (void) chan; (void) identity_rcvd; (void) consider_identity; } typedef struct authenticate_data_s { or_connection_t *c1, *c2; channel_tls_t *chan2; var_cell_t *cell; crypto_pk_t *key1, *key2; } authenticate_data_t; static int authenticate_data_cleanup(const struct testcase_t *test, void *arg) { (void) test; UNMOCK(connection_or_write_var_cell_to_buf); UNMOCK(tor_tls_get_peer_cert); UNMOCK(tor_tls_get_tlssecrets); UNMOCK(connection_or_close_for_error); UNMOCK(channel_set_circid_type); authenticate_data_t *d = arg; if (d) { tor_free(d->cell); connection_free_(TO_CONN(d->c1)); connection_free_(TO_CONN(d->c2)); circuitmux_free(d->chan2->base_.cmux); tor_free(d->chan2); crypto_pk_free(d->key1); crypto_pk_free(d->key2); tor_free(d); } mock_peer_cert = NULL; return 1; } static void * authenticate_data_setup(const struct testcase_t *test) { authenticate_data_t *d = tor_malloc_zero(sizeof(*d)); scheduler_init(); MOCK(connection_or_write_var_cell_to_buf, mock_write_var_cell); MOCK(tor_tls_get_peer_cert, mock_get_peer_cert); MOCK(tor_tls_get_tlssecrets, mock_get_tlssecrets); MOCK(connection_or_close_for_error, mock_close_for_err); MOCK(channel_set_circid_type, mock_set_circid_type); d->c1 = or_connection_new(CONN_TYPE_OR, AF_INET); d->c2 = or_connection_new(CONN_TYPE_OR, AF_INET); d->key1 = pk_generate(2); d->key2 = pk_generate(3); tt_int_op(tor_tls_context_init(TOR_TLS_CTX_IS_PUBLIC_SERVER, d->key1, d->key2, 86400), ==, 0); d->c1->base_.state = OR_CONN_STATE_OR_HANDSHAKING_V3; d->c1->link_proto = 3; tt_int_op(connection_init_or_handshake_state(d->c1, 1), ==, 0); d->c2->base_.state = OR_CONN_STATE_OR_HANDSHAKING_V3; d->c2->link_proto = 3; tt_int_op(connection_init_or_handshake_state(d->c2, 0), ==, 0); var_cell_t *cell = var_cell_new(16); cell->command = CELL_CERTS; or_handshake_state_record_var_cell(d->c1, d->c1->handshake_state, cell, 1); or_handshake_state_record_var_cell(d->c2, d->c2->handshake_state, cell, 0); memset(cell->payload, 0xf0, 16); or_handshake_state_record_var_cell(d->c1, d->c1->handshake_state, cell, 0); or_handshake_state_record_var_cell(d->c2, d->c2->handshake_state, cell, 1); tor_free(cell); d->chan2 = tor_malloc_zero(sizeof(*d->chan2)); channel_tls_common_init(d->chan2); d->c2->chan = d->chan2; d->chan2->conn = d->c2; d->c2->base_.address = tor_strdup("C2"); d->c2->tls = tor_tls_new(-1, 1); d->c2->handshake_state->received_certs_cell = 1; const tor_x509_cert_t *id_cert=NULL, *link_cert=NULL, *auth_cert=NULL; tt_assert(! tor_tls_get_my_certs(1, &link_cert, &id_cert)); const uint8_t *der; size_t sz; tor_x509_cert_get_der(id_cert, &der, &sz); d->c1->handshake_state->id_cert = tor_x509_cert_decode(der, sz); d->c2->handshake_state->id_cert = tor_x509_cert_decode(der, sz); tor_x509_cert_get_der(link_cert, &der, &sz); mock_peer_cert = tor_x509_cert_decode(der, sz); tt_assert(mock_peer_cert); tt_assert(! tor_tls_get_my_certs(0, &auth_cert, &id_cert)); tor_x509_cert_get_der(auth_cert, &der, &sz); d->c2->handshake_state->auth_cert = tor_x509_cert_decode(der, sz); /* Make an authenticate cell ... */ tt_int_op(0, ==, connection_or_send_authenticate_cell(d->c1, AUTHTYPE_RSA_SHA256_TLSSECRET)); tt_assert(mock_got_var_cell); d->cell = mock_got_var_cell; mock_got_var_cell = NULL; return d; done: authenticate_data_cleanup(test, d); return NULL; } static struct testcase_setup_t setup_authenticate = { .setup_fn = authenticate_data_setup, .cleanup_fn = authenticate_data_cleanup }; static void test_link_handshake_auth_cell(void *arg) { authenticate_data_t *d = arg; auth1_t *auth1 = NULL; crypto_pk_t *auth_pubkey = NULL; /* Is the cell well-formed on the outer layer? */ tt_int_op(d->cell->command, ==, CELL_AUTHENTICATE); tt_int_op(d->cell->payload[0], ==, 0); tt_int_op(d->cell->payload[1], ==, 1); tt_int_op(ntohs(get_uint16(d->cell->payload + 2)), ==, d->cell->payload_len - 4); /* Check it out for plausibility... */ auth_ctx_t ctx; ctx.is_ed = 0; tt_int_op(d->cell->payload_len-4, ==, auth1_parse(&auth1, d->cell->payload+4, d->cell->payload_len - 4, &ctx)); tt_assert(auth1); tt_mem_op(auth1->type, ==, "AUTH0001", 8); tt_mem_op(auth1->tlssecrets, ==, "int getRandomNumber(){return 4;}", 32); tt_int_op(auth1_getlen_sig(auth1), >, 120); /* Is the signature okay? */ uint8_t sig[128]; uint8_t digest[32]; auth_pubkey = tor_tls_cert_get_key(d->c2->handshake_state->auth_cert); int n = crypto_pk_public_checksig( auth_pubkey, (char*)sig, sizeof(sig), (char*)auth1_getarray_sig(auth1), auth1_getlen_sig(auth1)); tt_int_op(n, ==, 32); const uint8_t *start = d->cell->payload+4, *end = auth1->end_of_signed; crypto_digest256((char*)digest, (const char*)start, end-start, DIGEST_SHA256); tt_mem_op(sig, ==, digest, 32); /* Then feed it to c2. */ tt_int_op(d->c2->handshake_state->authenticated, ==, 0); channel_tls_process_authenticate_cell(d->cell, d->chan2); tt_int_op(mock_close_called, ==, 0); tt_int_op(d->c2->handshake_state->authenticated, ==, 1); done: auth1_free(auth1); crypto_pk_free(auth_pubkey); } #define AUTHENTICATE_FAIL(name, code) \ static void \ test_link_handshake_auth_ ## name(void *arg) \ { \ authenticate_data_t *d = arg; \ { code ; } \ tt_int_op(d->c2->handshake_state->authenticated, ==, 0); \ channel_tls_process_authenticate_cell(d->cell, d->chan2); \ tt_int_op(mock_close_called, ==, 1); \ tt_int_op(d->c2->handshake_state->authenticated, ==, 0); \ done: \ ; \ } AUTHENTICATE_FAIL(badstate, d->c2->base_.state = OR_CONN_STATE_CONNECTING) AUTHENTICATE_FAIL(badproto, d->c2->link_proto = 2) AUTHENTICATE_FAIL(atclient, d->c2->handshake_state->started_here = 1) AUTHENTICATE_FAIL(duplicate, d->c2->handshake_state->received_authenticate = 1) static void test_link_handshake_auth_already_authenticated(void *arg) { authenticate_data_t *d = arg; d->c2->handshake_state->authenticated = 1; channel_tls_process_authenticate_cell(d->cell, d->chan2); tt_int_op(mock_close_called, ==, 1); tt_int_op(d->c2->handshake_state->authenticated, ==, 1); done: ; } AUTHENTICATE_FAIL(nocerts, d->c2->handshake_state->received_certs_cell = 0) AUTHENTICATE_FAIL(noidcert, tor_x509_cert_free(d->c2->handshake_state->id_cert); d->c2->handshake_state->id_cert = NULL) AUTHENTICATE_FAIL(noauthcert, tor_x509_cert_free(d->c2->handshake_state->auth_cert); d->c2->handshake_state->auth_cert = NULL) AUTHENTICATE_FAIL(tooshort, d->cell->payload_len = 3) AUTHENTICATE_FAIL(badtype, d->cell->payload[0] = 0xff) AUTHENTICATE_FAIL(truncated_1, d->cell->payload[2]++) AUTHENTICATE_FAIL(truncated_2, d->cell->payload[3]++) AUTHENTICATE_FAIL(tooshort_1, tt_int_op(d->cell->payload_len, >=, 260); d->cell->payload[2] -= 1; d->cell->payload_len -= 256;) AUTHENTICATE_FAIL(badcontent, d->cell->payload[10] ^= 0xff) AUTHENTICATE_FAIL(badsig_1, d->cell->payload[d->cell->payload_len - 5] ^= 0xff) #define TEST(name, flags) \ { #name , test_link_handshake_ ## name, (flags), NULL, NULL } #define TEST_RCV_AUTHCHALLENGE(name) \ { "recv_authchallenge/" #name , \ test_link_handshake_recv_authchallenge_ ## name, TT_FORK, \ &setup_recv_authchallenge, NULL } #define TEST_RCV_CERTS(name) \ { "recv_certs/" #name , \ test_link_handshake_recv_certs_ ## name, TT_FORK, \ &setup_recv_certs, NULL } #define TEST_AUTHENTICATE(name) \ { "authenticate/" #name , test_link_handshake_auth_ ## name, TT_FORK, \ &setup_authenticate, NULL } struct testcase_t link_handshake_tests[] = { TEST(certs_ok, TT_FORK), //TEST(certs_bad, TT_FORK), TEST_RCV_CERTS(ok), TEST_RCV_CERTS(ok_server), TEST_RCV_CERTS(badstate), TEST_RCV_CERTS(badproto), TEST_RCV_CERTS(duplicate), TEST_RCV_CERTS(already_authenticated), TEST_RCV_CERTS(empty), TEST_RCV_CERTS(bad_circid), TEST_RCV_CERTS(truncated_1), TEST_RCV_CERTS(truncated_2), TEST_RCV_CERTS(truncated_3), TEST_RCV_CERTS(not_x509), TEST_RCV_CERTS(both_link), TEST_RCV_CERTS(both_id_rsa), TEST_RCV_CERTS(both_auth), TEST_RCV_CERTS(wrong_labels_1), TEST_RCV_CERTS(wrong_labels_2), TEST_RCV_CERTS(wrong_labels_3), TEST_RCV_CERTS(server_missing_certs), TEST_RCV_CERTS(server_wrong_labels_1), TEST(send_authchallenge, TT_FORK), TEST_RCV_AUTHCHALLENGE(ok), TEST_RCV_AUTHCHALLENGE(ok_noserver), TEST_RCV_AUTHCHALLENGE(ok_unrecognized), TEST_RCV_AUTHCHALLENGE(badstate), TEST_RCV_AUTHCHALLENGE(badproto), TEST_RCV_AUTHCHALLENGE(as_server), TEST_RCV_AUTHCHALLENGE(duplicate), TEST_RCV_AUTHCHALLENGE(nocerts), TEST_RCV_AUTHCHALLENGE(tooshort), TEST_RCV_AUTHCHALLENGE(truncated), TEST_RCV_AUTHCHALLENGE(nonzero_circid), TEST_AUTHENTICATE(cell), TEST_AUTHENTICATE(badstate), TEST_AUTHENTICATE(badproto), TEST_AUTHENTICATE(atclient), TEST_AUTHENTICATE(duplicate), TEST_AUTHENTICATE(already_authenticated), TEST_AUTHENTICATE(nocerts), TEST_AUTHENTICATE(noidcert), TEST_AUTHENTICATE(noauthcert), TEST_AUTHENTICATE(tooshort), TEST_AUTHENTICATE(badtype), TEST_AUTHENTICATE(truncated_1), TEST_AUTHENTICATE(truncated_2), TEST_AUTHENTICATE(tooshort_1), TEST_AUTHENTICATE(badcontent), TEST_AUTHENTICATE(badsig_1), //TEST_AUTHENTICATE(), END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_crypto.c0000644000175000017500000017676512631612325013731 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #define CRYPTO_CURVE25519_PRIVATE #include "or.h" #include "test.h" #include "aes.h" #include "util.h" #include "siphash.h" #include "crypto_curve25519.h" #include "crypto_ed25519.h" #include "ed25519_vectors.inc" #include extern const char AUTHORITY_SIGNKEY_3[]; extern const char AUTHORITY_SIGNKEY_A_DIGEST[]; extern const char AUTHORITY_SIGNKEY_A_DIGEST256[]; /** Run unit tests for Diffie-Hellman functionality. */ static void test_crypto_dh(void *arg) { crypto_dh_t *dh1 = crypto_dh_new(DH_TYPE_CIRCUIT); crypto_dh_t *dh2 = crypto_dh_new(DH_TYPE_CIRCUIT); char p1[DH_BYTES]; char p2[DH_BYTES]; char s1[DH_BYTES]; char s2[DH_BYTES]; ssize_t s1len, s2len; (void)arg; tt_int_op(crypto_dh_get_bytes(dh1),OP_EQ, DH_BYTES); tt_int_op(crypto_dh_get_bytes(dh2),OP_EQ, DH_BYTES); memset(p1, 0, DH_BYTES); memset(p2, 0, DH_BYTES); tt_mem_op(p1,OP_EQ, p2, DH_BYTES); tt_assert(! crypto_dh_get_public(dh1, p1, DH_BYTES)); tt_mem_op(p1,OP_NE, p2, DH_BYTES); tt_assert(! crypto_dh_get_public(dh2, p2, DH_BYTES)); tt_mem_op(p1,OP_NE, p2, DH_BYTES); memset(s1, 0, DH_BYTES); memset(s2, 0xFF, DH_BYTES); s1len = crypto_dh_compute_secret(LOG_WARN, dh1, p2, DH_BYTES, s1, 50); s2len = crypto_dh_compute_secret(LOG_WARN, dh2, p1, DH_BYTES, s2, 50); tt_assert(s1len > 0); tt_int_op(s1len,OP_EQ, s2len); tt_mem_op(s1,OP_EQ, s2, s1len); { /* XXXX Now fabricate some bad values and make sure they get caught, * Check 0, 1, N-1, >= N, etc. */ } done: crypto_dh_free(dh1); crypto_dh_free(dh2); } /** Run unit tests for our random number generation function and its wrappers. */ static void test_crypto_rng(void *arg) { int i, j, allok; char data1[100], data2[100]; double d; /* Try out RNG. */ (void)arg; tt_assert(! crypto_seed_rng()); crypto_rand(data1, 100); crypto_rand(data2, 100); tt_mem_op(data1,OP_NE, data2,100); allok = 1; for (i = 0; i < 100; ++i) { uint64_t big; char *host; j = crypto_rand_int(100); if (j < 0 || j >= 100) allok = 0; big = crypto_rand_uint64(U64_LITERAL(1)<<40); if (big >= (U64_LITERAL(1)<<40)) allok = 0; big = crypto_rand_uint64(U64_LITERAL(5)); if (big >= 5) allok = 0; d = crypto_rand_double(); tt_assert(d >= 0); tt_assert(d < 1.0); host = crypto_random_hostname(3,8,"www.",".onion"); if (strcmpstart(host,"www.") || strcmpend(host,".onion") || strlen(host) < 13 || strlen(host) > 18) allok = 0; tor_free(host); } tt_assert(allok); done: ; } static void test_crypto_rng_range(void *arg) { int got_smallest = 0, got_largest = 0; int i; (void)arg; for (i = 0; i < 1000; ++i) { int x = crypto_rand_int_range(5,9); tt_int_op(x, OP_GE, 5); tt_int_op(x, OP_LT, 9); if (x == 5) got_smallest = 1; if (x == 8) got_largest = 1; } /* These fail with probability 1/10^603. */ tt_assert(got_smallest); tt_assert(got_largest); done: ; } /** Run unit tests for our AES functionality */ static void test_crypto_aes(void *arg) { char *data1 = NULL, *data2 = NULL, *data3 = NULL; crypto_cipher_t *env1 = NULL, *env2 = NULL; int i, j; char *mem_op_hex_tmp=NULL; int use_evp = !strcmp(arg,"evp"); evaluate_evp_for_aes(use_evp); evaluate_ctr_for_aes(); data1 = tor_malloc(1024); data2 = tor_malloc(1024); data3 = tor_malloc(1024); /* Now, test encryption and decryption with stream cipher. */ data1[0]='\0'; for (i = 1023; i>0; i -= 35) strncat(data1, "Now is the time for all good onions", i); memset(data2, 0, 1024); memset(data3, 0, 1024); env1 = crypto_cipher_new(NULL); tt_ptr_op(env1, OP_NE, NULL); env2 = crypto_cipher_new(crypto_cipher_get_key(env1)); tt_ptr_op(env2, OP_NE, NULL); /* Try encrypting 512 chars. */ crypto_cipher_encrypt(env1, data2, data1, 512); crypto_cipher_decrypt(env2, data3, data2, 512); tt_mem_op(data1,OP_EQ, data3, 512); tt_mem_op(data1,OP_NE, data2, 512); /* Now encrypt 1 at a time, and get 1 at a time. */ for (j = 512; j < 560; ++j) { crypto_cipher_encrypt(env1, data2+j, data1+j, 1); } for (j = 512; j < 560; ++j) { crypto_cipher_decrypt(env2, data3+j, data2+j, 1); } tt_mem_op(data1,OP_EQ, data3, 560); /* Now encrypt 3 at a time, and get 5 at a time. */ for (j = 560; j < 1024-5; j += 3) { crypto_cipher_encrypt(env1, data2+j, data1+j, 3); } for (j = 560; j < 1024-5; j += 5) { crypto_cipher_decrypt(env2, data3+j, data2+j, 5); } tt_mem_op(data1,OP_EQ, data3, 1024-5); /* Now make sure that when we encrypt with different chunk sizes, we get the same results. */ crypto_cipher_free(env2); env2 = NULL; memset(data3, 0, 1024); env2 = crypto_cipher_new(crypto_cipher_get_key(env1)); tt_ptr_op(env2, OP_NE, NULL); for (j = 0; j < 1024-16; j += 17) { crypto_cipher_encrypt(env2, data3+j, data1+j, 17); } for (j= 0; j < 1024-16; ++j) { if (data2[j] != data3[j]) { printf("%d: %d\t%d\n", j, (int) data2[j], (int) data3[j]); } } tt_mem_op(data2,OP_EQ, data3, 1024-16); crypto_cipher_free(env1); env1 = NULL; crypto_cipher_free(env2); env2 = NULL; /* NIST test vector for aes. */ /* IV starts at 0 */ env1 = crypto_cipher_new("\x80\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00"); crypto_cipher_encrypt(env1, data1, "\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00", 16); test_memeq_hex(data1, "0EDD33D3C621E546455BD8BA1418BEC8"); /* Now test rollover. All these values are originally from a python * script. */ crypto_cipher_free(env1); env1 = crypto_cipher_new_with_iv( "\x80\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00", "\x00\x00\x00\x00\x00\x00\x00\x00" "\xff\xff\xff\xff\xff\xff\xff\xff"); memset(data2, 0, 1024); crypto_cipher_encrypt(env1, data1, data2, 32); test_memeq_hex(data1, "335fe6da56f843199066c14a00a40231" "cdd0b917dbc7186908a6bfb5ffd574d3"); crypto_cipher_free(env1); env1 = crypto_cipher_new_with_iv( "\x80\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00", "\x00\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff"); memset(data2, 0, 1024); crypto_cipher_encrypt(env1, data1, data2, 32); test_memeq_hex(data1, "e627c6423fa2d77832a02b2794094b73" "3e63c721df790d2c6469cc1953a3ffac"); crypto_cipher_free(env1); env1 = crypto_cipher_new_with_iv( "\x80\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00", "\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff"); memset(data2, 0, 1024); crypto_cipher_encrypt(env1, data1, data2, 32); test_memeq_hex(data1, "2aed2bff0de54f9328efd070bf48f70a" "0EDD33D3C621E546455BD8BA1418BEC8"); /* Now check rollover on inplace cipher. */ crypto_cipher_free(env1); env1 = crypto_cipher_new_with_iv( "\x80\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00", "\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff"); crypto_cipher_crypt_inplace(env1, data2, 64); test_memeq_hex(data2, "2aed2bff0de54f9328efd070bf48f70a" "0EDD33D3C621E546455BD8BA1418BEC8" "93e2c5243d6839eac58503919192f7ae" "1908e67cafa08d508816659c2e693191"); crypto_cipher_free(env1); env1 = crypto_cipher_new_with_iv( "\x80\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00", "\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff"); crypto_cipher_crypt_inplace(env1, data2, 64); tt_assert(tor_mem_is_zero(data2, 64)); done: tor_free(mem_op_hex_tmp); if (env1) crypto_cipher_free(env1); if (env2) crypto_cipher_free(env2); tor_free(data1); tor_free(data2); tor_free(data3); } /** Run unit tests for our SHA-1 functionality */ static void test_crypto_sha(void *arg) { crypto_digest_t *d1 = NULL, *d2 = NULL; int i; char key[160]; char digest[32]; char data[50]; char d_out1[DIGEST_LEN], d_out2[DIGEST256_LEN]; char *mem_op_hex_tmp=NULL; /* Test SHA-1 with a test vector from the specification. */ (void)arg; i = crypto_digest(data, "abc", 3); test_memeq_hex(data, "A9993E364706816ABA3E25717850C26C9CD0D89D"); tt_int_op(i, OP_EQ, 0); /* Test SHA-256 with a test vector from the specification. */ i = crypto_digest256(data, "abc", 3, DIGEST_SHA256); test_memeq_hex(data, "BA7816BF8F01CFEA414140DE5DAE2223B00361A3" "96177A9CB410FF61F20015AD"); tt_int_op(i, OP_EQ, 0); /* Test HMAC-SHA256 with test cases from wikipedia and RFC 4231 */ /* Case empty (wikipedia) */ crypto_hmac_sha256(digest, "", 0, "", 0); tt_str_op(hex_str(digest, 32),OP_EQ, "B613679A0814D9EC772F95D778C35FC5FF1697C493715653C6C712144292C5AD"); /* Case quick-brown (wikipedia) */ crypto_hmac_sha256(digest, "key", 3, "The quick brown fox jumps over the lazy dog", 43); tt_str_op(hex_str(digest, 32),OP_EQ, "F7BC83F430538424B13298E6AA6FB143EF4D59A14946175997479DBC2D1A3CD8"); /* "Test Case 1" from RFC 4231 */ memset(key, 0x0b, 20); crypto_hmac_sha256(digest, key, 20, "Hi There", 8); test_memeq_hex(digest, "b0344c61d8db38535ca8afceaf0bf12b" "881dc200c9833da726e9376c2e32cff7"); /* "Test Case 2" from RFC 4231 */ memset(key, 0x0b, 20); crypto_hmac_sha256(digest, "Jefe", 4, "what do ya want for nothing?", 28); test_memeq_hex(digest, "5bdcc146bf60754e6a042426089575c7" "5a003f089d2739839dec58b964ec3843"); /* "Test case 3" from RFC 4231 */ memset(key, 0xaa, 20); memset(data, 0xdd, 50); crypto_hmac_sha256(digest, key, 20, data, 50); test_memeq_hex(digest, "773ea91e36800e46854db8ebd09181a7" "2959098b3ef8c122d9635514ced565fe"); /* "Test case 4" from RFC 4231 */ base16_decode(key, 25, "0102030405060708090a0b0c0d0e0f10111213141516171819", 50); memset(data, 0xcd, 50); crypto_hmac_sha256(digest, key, 25, data, 50); test_memeq_hex(digest, "82558a389a443c0ea4cc819899f2083a" "85f0faa3e578f8077a2e3ff46729665b"); /* "Test case 5" from RFC 4231 */ memset(key, 0x0c, 20); crypto_hmac_sha256(digest, key, 20, "Test With Truncation", 20); test_memeq_hex(digest, "a3b6167473100ee06e0c796c2955552b"); /* "Test case 6" from RFC 4231 */ memset(key, 0xaa, 131); crypto_hmac_sha256(digest, key, 131, "Test Using Larger Than Block-Size Key - Hash Key First", 54); test_memeq_hex(digest, "60e431591ee0b67f0d8a26aacbf5b77f" "8e0bc6213728c5140546040f0ee37f54"); /* "Test case 7" from RFC 4231 */ memset(key, 0xaa, 131); crypto_hmac_sha256(digest, key, 131, "This is a test using a larger than block-size key and a " "larger than block-size data. The key needs to be hashed " "before being used by the HMAC algorithm.", 152); test_memeq_hex(digest, "9b09ffa71b942fcb27635fbcd5b0e944" "bfdc63644f0713938a7f51535c3a35e2"); /* Incremental digest code. */ d1 = crypto_digest_new(); tt_assert(d1); crypto_digest_add_bytes(d1, "abcdef", 6); d2 = crypto_digest_dup(d1); tt_assert(d2); crypto_digest_add_bytes(d2, "ghijkl", 6); crypto_digest_get_digest(d2, d_out1, sizeof(d_out1)); crypto_digest(d_out2, "abcdefghijkl", 12); tt_mem_op(d_out1,OP_EQ, d_out2, DIGEST_LEN); crypto_digest_assign(d2, d1); crypto_digest_add_bytes(d2, "mno", 3); crypto_digest_get_digest(d2, d_out1, sizeof(d_out1)); crypto_digest(d_out2, "abcdefmno", 9); tt_mem_op(d_out1,OP_EQ, d_out2, DIGEST_LEN); crypto_digest_get_digest(d1, d_out1, sizeof(d_out1)); crypto_digest(d_out2, "abcdef", 6); tt_mem_op(d_out1,OP_EQ, d_out2, DIGEST_LEN); crypto_digest_free(d1); crypto_digest_free(d2); /* Incremental digest code with sha256 */ d1 = crypto_digest256_new(DIGEST_SHA256); tt_assert(d1); crypto_digest_add_bytes(d1, "abcdef", 6); d2 = crypto_digest_dup(d1); tt_assert(d2); crypto_digest_add_bytes(d2, "ghijkl", 6); crypto_digest_get_digest(d2, d_out1, sizeof(d_out1)); crypto_digest256(d_out2, "abcdefghijkl", 12, DIGEST_SHA256); tt_mem_op(d_out1,OP_EQ, d_out2, DIGEST_LEN); crypto_digest_assign(d2, d1); crypto_digest_add_bytes(d2, "mno", 3); crypto_digest_get_digest(d2, d_out1, sizeof(d_out1)); crypto_digest256(d_out2, "abcdefmno", 9, DIGEST_SHA256); tt_mem_op(d_out1,OP_EQ, d_out2, DIGEST_LEN); crypto_digest_get_digest(d1, d_out1, sizeof(d_out1)); crypto_digest256(d_out2, "abcdef", 6, DIGEST_SHA256); tt_mem_op(d_out1,OP_EQ, d_out2, DIGEST_LEN); done: if (d1) crypto_digest_free(d1); if (d2) crypto_digest_free(d2); tor_free(mem_op_hex_tmp); } /** Run unit tests for our public key crypto functions */ static void test_crypto_pk(void *arg) { crypto_pk_t *pk1 = NULL, *pk2 = NULL; char *encoded = NULL; char data1[1024], data2[1024], data3[1024]; size_t size; int i, len; /* Public-key ciphers */ (void)arg; pk1 = pk_generate(0); pk2 = crypto_pk_new(); tt_assert(pk1 && pk2); tt_assert(! crypto_pk_write_public_key_to_string(pk1, &encoded, &size)); tt_assert(! crypto_pk_read_public_key_from_string(pk2, encoded, size)); tt_int_op(0,OP_EQ, crypto_pk_cmp_keys(pk1, pk2)); /* comparison between keys and NULL */ tt_int_op(crypto_pk_cmp_keys(NULL, pk1), OP_LT, 0); tt_int_op(crypto_pk_cmp_keys(NULL, NULL), OP_EQ, 0); tt_int_op(crypto_pk_cmp_keys(pk1, NULL), OP_GT, 0); tt_int_op(128,OP_EQ, crypto_pk_keysize(pk1)); tt_int_op(1024,OP_EQ, crypto_pk_num_bits(pk1)); tt_int_op(128,OP_EQ, crypto_pk_keysize(pk2)); tt_int_op(1024,OP_EQ, crypto_pk_num_bits(pk2)); tt_int_op(128,OP_EQ, crypto_pk_public_encrypt(pk2, data1, sizeof(data1), "Hello whirled.", 15, PK_PKCS1_OAEP_PADDING)); tt_int_op(128,OP_EQ, crypto_pk_public_encrypt(pk1, data2, sizeof(data1), "Hello whirled.", 15, PK_PKCS1_OAEP_PADDING)); /* oaep padding should make encryption not match */ tt_mem_op(data1,OP_NE, data2, 128); tt_int_op(15,OP_EQ, crypto_pk_private_decrypt(pk1, data3, sizeof(data3), data1, 128, PK_PKCS1_OAEP_PADDING,1)); tt_str_op(data3,OP_EQ, "Hello whirled."); memset(data3, 0, 1024); tt_int_op(15,OP_EQ, crypto_pk_private_decrypt(pk1, data3, sizeof(data3), data2, 128, PK_PKCS1_OAEP_PADDING,1)); tt_str_op(data3,OP_EQ, "Hello whirled."); /* Can't decrypt with public key. */ tt_int_op(-1,OP_EQ, crypto_pk_private_decrypt(pk2, data3, sizeof(data3), data2, 128, PK_PKCS1_OAEP_PADDING,1)); /* Try again with bad padding */ memcpy(data2+1, "XYZZY", 5); /* This has fails ~ once-in-2^40 */ tt_int_op(-1,OP_EQ, crypto_pk_private_decrypt(pk1, data3, sizeof(data3), data2, 128, PK_PKCS1_OAEP_PADDING,1)); /* File operations: save and load private key */ tt_assert(! crypto_pk_write_private_key_to_filename(pk1, get_fname("pkey1"))); /* failing case for read: can't read. */ tt_assert(crypto_pk_read_private_key_from_filename(pk2, get_fname("xyzzy")) < 0); write_str_to_file(get_fname("xyzzy"), "foobar", 6); /* Failing case for read: no key. */ tt_assert(crypto_pk_read_private_key_from_filename(pk2, get_fname("xyzzy")) < 0); tt_assert(! crypto_pk_read_private_key_from_filename(pk2, get_fname("pkey1"))); tt_int_op(15,OP_EQ, crypto_pk_private_decrypt(pk2, data3, sizeof(data3), data1, 128, PK_PKCS1_OAEP_PADDING,1)); /* Now try signing. */ strlcpy(data1, "Ossifrage", 1024); tt_int_op(128,OP_EQ, crypto_pk_private_sign(pk1, data2, sizeof(data2), data1, 10)); tt_int_op(10,OP_EQ, crypto_pk_public_checksig(pk1, data3, sizeof(data3), data2, 128)); tt_str_op(data3,OP_EQ, "Ossifrage"); /* Try signing digests. */ tt_int_op(128,OP_EQ, crypto_pk_private_sign_digest(pk1, data2, sizeof(data2), data1, 10)); tt_int_op(20,OP_EQ, crypto_pk_public_checksig(pk1, data3, sizeof(data3), data2, 128)); tt_int_op(0,OP_EQ, crypto_pk_public_checksig_digest(pk1, data1, 10, data2, 128)); tt_int_op(-1,OP_EQ, crypto_pk_public_checksig_digest(pk1, data1, 11, data2, 128)); /*XXXX test failed signing*/ /* Try encoding */ crypto_pk_free(pk2); pk2 = NULL; i = crypto_pk_asn1_encode(pk1, data1, 1024); tt_int_op(i, OP_GT, 0); pk2 = crypto_pk_asn1_decode(data1, i); tt_assert(crypto_pk_cmp_keys(pk1,pk2) == 0); /* Try with hybrid encryption wrappers. */ crypto_rand(data1, 1024); for (i = 85; i < 140; ++i) { memset(data2,0,1024); memset(data3,0,1024); len = crypto_pk_public_hybrid_encrypt(pk1,data2,sizeof(data2), data1,i,PK_PKCS1_OAEP_PADDING,0); tt_int_op(len, OP_GE, 0); len = crypto_pk_private_hybrid_decrypt(pk1,data3,sizeof(data3), data2,len,PK_PKCS1_OAEP_PADDING,1); tt_int_op(len,OP_EQ, i); tt_mem_op(data1,OP_EQ, data3,i); } /* Try copy_full */ crypto_pk_free(pk2); pk2 = crypto_pk_copy_full(pk1); tt_assert(pk2 != NULL); tt_ptr_op(pk1, OP_NE, pk2); tt_assert(crypto_pk_cmp_keys(pk1,pk2) == 0); done: if (pk1) crypto_pk_free(pk1); if (pk2) crypto_pk_free(pk2); tor_free(encoded); } static void test_crypto_pk_fingerprints(void *arg) { crypto_pk_t *pk = NULL; char encoded[512]; char d[DIGEST_LEN], d2[DIGEST_LEN]; char fingerprint[FINGERPRINT_LEN+1]; int n; unsigned i; char *mem_op_hex_tmp=NULL; (void)arg; pk = pk_generate(1); tt_assert(pk); n = crypto_pk_asn1_encode(pk, encoded, sizeof(encoded)); tt_int_op(n, OP_GT, 0); tt_int_op(n, OP_GT, 128); tt_int_op(n, OP_LT, 256); /* Is digest as expected? */ crypto_digest(d, encoded, n); tt_int_op(0, OP_EQ, crypto_pk_get_digest(pk, d2)); tt_mem_op(d,OP_EQ, d2, DIGEST_LEN); /* Is fingerprint right? */ tt_int_op(0, OP_EQ, crypto_pk_get_fingerprint(pk, fingerprint, 0)); tt_int_op(strlen(fingerprint), OP_EQ, DIGEST_LEN * 2); test_memeq_hex(d, fingerprint); /* Are spaces right? */ tt_int_op(0, OP_EQ, crypto_pk_get_fingerprint(pk, fingerprint, 1)); for (i = 4; i < strlen(fingerprint); i += 5) { tt_int_op(fingerprint[i], OP_EQ, ' '); } tor_strstrip(fingerprint, " "); tt_int_op(strlen(fingerprint), OP_EQ, DIGEST_LEN * 2); test_memeq_hex(d, fingerprint); /* Now hash again and check crypto_pk_get_hashed_fingerprint. */ crypto_digest(d2, d, sizeof(d)); tt_int_op(0, OP_EQ, crypto_pk_get_hashed_fingerprint(pk, fingerprint)); tt_int_op(strlen(fingerprint), OP_EQ, DIGEST_LEN * 2); test_memeq_hex(d2, fingerprint); done: crypto_pk_free(pk); tor_free(mem_op_hex_tmp); } static void test_crypto_pk_base64(void *arg) { crypto_pk_t *pk1 = NULL; crypto_pk_t *pk2 = NULL; char *encoded = NULL; (void)arg; /* Test Base64 encoding a key. */ pk1 = pk_generate(0); tt_assert(pk1); tt_int_op(0, OP_EQ, crypto_pk_base64_encode(pk1, &encoded)); tt_assert(encoded); /* Test decoding a valid key. */ pk2 = crypto_pk_base64_decode(encoded, strlen(encoded)); tt_assert(pk2); tt_assert(crypto_pk_cmp_keys(pk1,pk2) == 0); crypto_pk_free(pk2); /* Test decoding a invalid key (not Base64). */ static const char *invalid_b64 = "The key is in another castle!"; pk2 = crypto_pk_base64_decode(invalid_b64, strlen(invalid_b64)); tt_assert(!pk2); /* Test decoding a truncated Base64 blob. */ pk2 = crypto_pk_base64_decode(encoded, strlen(encoded)/2); tt_assert(!pk2); done: crypto_pk_free(pk1); crypto_pk_free(pk2); tor_free(encoded); } /** Sanity check for crypto pk digests */ static void test_crypto_digests(void *arg) { crypto_pk_t *k = NULL; ssize_t r; digests_t pkey_digests; char digest[DIGEST_LEN]; (void)arg; k = crypto_pk_new(); tt_assert(k); r = crypto_pk_read_private_key_from_string(k, AUTHORITY_SIGNKEY_3, -1); tt_assert(!r); r = crypto_pk_get_digest(k, digest); tt_assert(r == 0); tt_mem_op(hex_str(digest, DIGEST_LEN),OP_EQ, AUTHORITY_SIGNKEY_A_DIGEST, HEX_DIGEST_LEN); r = crypto_pk_get_all_digests(k, &pkey_digests); tt_mem_op(hex_str(pkey_digests.d[DIGEST_SHA1], DIGEST_LEN),OP_EQ, AUTHORITY_SIGNKEY_A_DIGEST, HEX_DIGEST_LEN); tt_mem_op(hex_str(pkey_digests.d[DIGEST_SHA256], DIGEST256_LEN),OP_EQ, AUTHORITY_SIGNKEY_A_DIGEST256, HEX_DIGEST256_LEN); done: crypto_pk_free(k); } /** Encode src into dest with OpenSSL's EVP Encode interface, returning the * length of the encoded data in bytes. */ static int base64_encode_evp(char *dest, char *src, size_t srclen) { const unsigned char *s = (unsigned char*)src; EVP_ENCODE_CTX ctx; int len, ret; EVP_EncodeInit(&ctx); EVP_EncodeUpdate(&ctx, (unsigned char *)dest, &len, s, (int)srclen); EVP_EncodeFinal(&ctx, (unsigned char *)(dest + len), &ret); return ret+ len; } /** Run unit tests for misc crypto formatting functionality (base64, base32, * fingerprints, etc) */ static void test_crypto_formats(void *arg) { char *data1 = NULL, *data2 = NULL, *data3 = NULL; int i, j, idx; (void)arg; data1 = tor_malloc(1024); data2 = tor_malloc(1024); data3 = tor_malloc(1024); tt_assert(data1 && data2 && data3); /* Base64 tests */ memset(data1, 6, 1024); for (idx = 0; idx < 10; ++idx) { i = base64_encode(data2, 1024, data1, idx, 0); tt_int_op(i, OP_GE, 0); tt_int_op(i, OP_EQ, strlen(data2)); j = base64_decode(data3, 1024, data2, i); tt_int_op(j,OP_EQ, idx); tt_mem_op(data3,OP_EQ, data1, idx); i = base64_encode_nopad(data2, 1024, (uint8_t*)data1, idx); tt_int_op(i, OP_GE, 0); tt_int_op(i, OP_EQ, strlen(data2)); tt_assert(! strchr(data2, '=')); j = base64_decode_nopad((uint8_t*)data3, 1024, data2, i); tt_int_op(j, OP_EQ, idx); tt_mem_op(data3,OP_EQ, data1, idx); } strlcpy(data1, "Test string that contains 35 chars.", 1024); strlcat(data1, " 2nd string that contains 35 chars.", 1024); i = base64_encode(data2, 1024, data1, 71, 0); tt_int_op(i, OP_GE, 0); j = base64_decode(data3, 1024, data2, i); tt_int_op(j,OP_EQ, 71); tt_str_op(data3,OP_EQ, data1); tt_int_op(data2[i], OP_EQ, '\0'); crypto_rand(data1, DIGEST_LEN); memset(data2, 100, 1024); digest_to_base64(data2, data1); tt_int_op(BASE64_DIGEST_LEN,OP_EQ, strlen(data2)); tt_int_op(100,OP_EQ, data2[BASE64_DIGEST_LEN+2]); memset(data3, 99, 1024); tt_int_op(digest_from_base64(data3, data2),OP_EQ, 0); tt_mem_op(data1,OP_EQ, data3, DIGEST_LEN); tt_int_op(99,OP_EQ, data3[DIGEST_LEN+1]); tt_assert(digest_from_base64(data3, "###") < 0); for (i = 0; i < 256; i++) { /* Test the multiline format Base64 encoder with 0 .. 256 bytes of * output against OpenSSL. */ const size_t enclen = base64_encode_size(i, BASE64_ENCODE_MULTILINE); data1[i] = i; j = base64_encode(data2, 1024, data1, i, BASE64_ENCODE_MULTILINE); tt_int_op(j, OP_EQ, enclen); j = base64_encode_evp(data3, data1, i); tt_int_op(j, OP_EQ, enclen); tt_mem_op(data2, OP_EQ, data3, enclen); tt_int_op(j, OP_EQ, strlen(data2)); } /* Encoding SHA256 */ crypto_rand(data2, DIGEST256_LEN); memset(data2, 100, 1024); digest256_to_base64(data2, data1); tt_int_op(BASE64_DIGEST256_LEN,OP_EQ, strlen(data2)); tt_int_op(100,OP_EQ, data2[BASE64_DIGEST256_LEN+2]); memset(data3, 99, 1024); tt_int_op(digest256_from_base64(data3, data2),OP_EQ, 0); tt_mem_op(data1,OP_EQ, data3, DIGEST256_LEN); tt_int_op(99,OP_EQ, data3[DIGEST256_LEN+1]); /* Base32 tests */ strlcpy(data1, "5chrs", 1024); /* bit pattern is: [35 63 68 72 73] -> * [00110101 01100011 01101000 01110010 01110011] * By 5s: [00110 10101 10001 10110 10000 11100 10011 10011] */ base32_encode(data2, 9, data1, 5); tt_str_op(data2,OP_EQ, "gvrwq4tt"); strlcpy(data1, "\xFF\xF5\x6D\x44\xAE\x0D\x5C\xC9\x62\xC4", 1024); base32_encode(data2, 30, data1, 10); tt_str_op(data2,OP_EQ, "772w2rfobvomsywe"); /* Base16 tests */ strlcpy(data1, "6chrs\xff", 1024); base16_encode(data2, 13, data1, 6); tt_str_op(data2,OP_EQ, "3663687273FF"); strlcpy(data1, "f0d678affc000100", 1024); i = base16_decode(data2, 8, data1, 16); tt_int_op(i,OP_EQ, 0); tt_mem_op(data2,OP_EQ, "\xf0\xd6\x78\xaf\xfc\x00\x01\x00",8); /* now try some failing base16 decodes */ tt_int_op(-1,OP_EQ, base16_decode(data2, 8, data1, 15)); /* odd input len */ tt_int_op(-1,OP_EQ, base16_decode(data2, 7, data1, 16)); /* dest too short */ strlcpy(data1, "f0dz!8affc000100", 1024); tt_int_op(-1,OP_EQ, base16_decode(data2, 8, data1, 16)); tor_free(data1); tor_free(data2); tor_free(data3); /* Add spaces to fingerprint */ { data1 = tor_strdup("ABCD1234ABCD56780000ABCD1234ABCD56780000"); tt_int_op(strlen(data1),OP_EQ, 40); data2 = tor_malloc(FINGERPRINT_LEN+1); crypto_add_spaces_to_fp(data2, FINGERPRINT_LEN+1, data1); tt_str_op(data2, OP_EQ, "ABCD 1234 ABCD 5678 0000 ABCD 1234 ABCD 5678 0000"); tor_free(data1); tor_free(data2); } done: tor_free(data1); tor_free(data2); tor_free(data3); } /** Test AES-CTR encryption and decryption with IV. */ static void test_crypto_aes_iv(void *arg) { char *plain, *encrypted1, *encrypted2, *decrypted1, *decrypted2; char plain_1[1], plain_15[15], plain_16[16], plain_17[17]; char key1[16], key2[16]; ssize_t encrypted_size, decrypted_size; int use_evp = !strcmp(arg,"evp"); evaluate_evp_for_aes(use_evp); plain = tor_malloc(4095); encrypted1 = tor_malloc(4095 + 1 + 16); encrypted2 = tor_malloc(4095 + 1 + 16); decrypted1 = tor_malloc(4095 + 1); decrypted2 = tor_malloc(4095 + 1); crypto_rand(plain, 4095); crypto_rand(key1, 16); crypto_rand(key2, 16); crypto_rand(plain_1, 1); crypto_rand(plain_15, 15); crypto_rand(plain_16, 16); crypto_rand(plain_17, 17); key1[0] = key2[0] + 128; /* Make sure that contents are different. */ /* Encrypt and decrypt with the same key. */ encrypted_size = crypto_cipher_encrypt_with_iv(key1, encrypted1, 16 + 4095, plain, 4095); tt_int_op(encrypted_size,OP_EQ, 16 + 4095); tt_assert(encrypted_size > 0); /* This is obviously true, since 4111 is * greater than 0, but its truth is not * obvious to all analysis tools. */ decrypted_size = crypto_cipher_decrypt_with_iv(key1, decrypted1, 4095, encrypted1, encrypted_size); tt_int_op(decrypted_size,OP_EQ, 4095); tt_assert(decrypted_size > 0); tt_mem_op(plain,OP_EQ, decrypted1, 4095); /* Encrypt a second time (with a new random initialization vector). */ encrypted_size = crypto_cipher_encrypt_with_iv(key1, encrypted2, 16 + 4095, plain, 4095); tt_int_op(encrypted_size,OP_EQ, 16 + 4095); tt_assert(encrypted_size > 0); decrypted_size = crypto_cipher_decrypt_with_iv(key1, decrypted2, 4095, encrypted2, encrypted_size); tt_int_op(decrypted_size,OP_EQ, 4095); tt_assert(decrypted_size > 0); tt_mem_op(plain,OP_EQ, decrypted2, 4095); tt_mem_op(encrypted1,OP_NE, encrypted2, encrypted_size); /* Decrypt with the wrong key. */ decrypted_size = crypto_cipher_decrypt_with_iv(key2, decrypted2, 4095, encrypted1, encrypted_size); tt_int_op(decrypted_size,OP_EQ, 4095); tt_mem_op(plain,OP_NE, decrypted2, decrypted_size); /* Alter the initialization vector. */ encrypted1[0] += 42; decrypted_size = crypto_cipher_decrypt_with_iv(key1, decrypted1, 4095, encrypted1, encrypted_size); tt_int_op(decrypted_size,OP_EQ, 4095); tt_mem_op(plain,OP_NE, decrypted2, 4095); /* Special length case: 1. */ encrypted_size = crypto_cipher_encrypt_with_iv(key1, encrypted1, 16 + 1, plain_1, 1); tt_int_op(encrypted_size,OP_EQ, 16 + 1); tt_assert(encrypted_size > 0); decrypted_size = crypto_cipher_decrypt_with_iv(key1, decrypted1, 1, encrypted1, encrypted_size); tt_int_op(decrypted_size,OP_EQ, 1); tt_assert(decrypted_size > 0); tt_mem_op(plain_1,OP_EQ, decrypted1, 1); /* Special length case: 15. */ encrypted_size = crypto_cipher_encrypt_with_iv(key1, encrypted1, 16 + 15, plain_15, 15); tt_int_op(encrypted_size,OP_EQ, 16 + 15); tt_assert(encrypted_size > 0); decrypted_size = crypto_cipher_decrypt_with_iv(key1, decrypted1, 15, encrypted1, encrypted_size); tt_int_op(decrypted_size,OP_EQ, 15); tt_assert(decrypted_size > 0); tt_mem_op(plain_15,OP_EQ, decrypted1, 15); /* Special length case: 16. */ encrypted_size = crypto_cipher_encrypt_with_iv(key1, encrypted1, 16 + 16, plain_16, 16); tt_int_op(encrypted_size,OP_EQ, 16 + 16); tt_assert(encrypted_size > 0); decrypted_size = crypto_cipher_decrypt_with_iv(key1, decrypted1, 16, encrypted1, encrypted_size); tt_int_op(decrypted_size,OP_EQ, 16); tt_assert(decrypted_size > 0); tt_mem_op(plain_16,OP_EQ, decrypted1, 16); /* Special length case: 17. */ encrypted_size = crypto_cipher_encrypt_with_iv(key1, encrypted1, 16 + 17, plain_17, 17); tt_int_op(encrypted_size,OP_EQ, 16 + 17); tt_assert(encrypted_size > 0); decrypted_size = crypto_cipher_decrypt_with_iv(key1, decrypted1, 17, encrypted1, encrypted_size); tt_int_op(decrypted_size,OP_EQ, 17); tt_assert(decrypted_size > 0); tt_mem_op(plain_17,OP_EQ, decrypted1, 17); done: /* Free memory. */ tor_free(plain); tor_free(encrypted1); tor_free(encrypted2); tor_free(decrypted1); tor_free(decrypted2); } /** Test base32 decoding. */ static void test_crypto_base32_decode(void *arg) { char plain[60], encoded[96 + 1], decoded[60]; int res; (void)arg; crypto_rand(plain, 60); /* Encode and decode a random string. */ base32_encode(encoded, 96 + 1, plain, 60); res = base32_decode(decoded, 60, encoded, 96); tt_int_op(res,OP_EQ, 0); tt_mem_op(plain,OP_EQ, decoded, 60); /* Encode, uppercase, and decode a random string. */ base32_encode(encoded, 96 + 1, plain, 60); tor_strupper(encoded); res = base32_decode(decoded, 60, encoded, 96); tt_int_op(res,OP_EQ, 0); tt_mem_op(plain,OP_EQ, decoded, 60); /* Change encoded string and decode. */ if (encoded[0] == 'A' || encoded[0] == 'a') encoded[0] = 'B'; else encoded[0] = 'A'; res = base32_decode(decoded, 60, encoded, 96); tt_int_op(res,OP_EQ, 0); tt_mem_op(plain,OP_NE, decoded, 60); /* Bad encodings. */ encoded[0] = '!'; res = base32_decode(decoded, 60, encoded, 96); tt_int_op(0, OP_GT, res); done: ; } static void test_crypto_kdf_TAP(void *arg) { uint8_t key_material[100]; int r; char *mem_op_hex_tmp = NULL; (void)arg; #define EXPAND(s) \ r = crypto_expand_key_material_TAP( \ (const uint8_t*)(s), strlen(s), \ key_material, 100) /* Test vectors generated with a little python script; feel free to write * your own. */ memset(key_material, 0, sizeof(key_material)); EXPAND(""); tt_int_op(r, OP_EQ, 0); test_memeq_hex(key_material, "5ba93c9db0cff93f52b521d7420e43f6eda2784fbf8b4530d8" "d246dd74ac53a13471bba17941dff7c4ea21bb365bbeeaf5f2" "c654883e56d11e43c44e9842926af7ca0a8cca12604f945414" "f07b01e13da42c6cf1de3abfdea9b95f34687cbbe92b9a7383"); EXPAND("Tor"); tt_int_op(r, OP_EQ, 0); test_memeq_hex(key_material, "776c6214fc647aaa5f683c737ee66ec44f03d0372e1cce6922" "7950f236ddf1e329a7ce7c227903303f525a8c6662426e8034" "870642a6dabbd41b5d97ec9bf2312ea729992f48f8ea2d0ba8" "3f45dfda1a80bdc8b80de01b23e3e0ffae099b3e4ccf28dc28"); EXPAND("AN ALARMING ITEM TO FIND ON A MONTHLY AUTO-DEBIT NOTICE"); tt_int_op(r, OP_EQ, 0); test_memeq_hex(key_material, "a340b5d126086c3ab29c2af4179196dbf95e1c72431419d331" "4844bf8f6afb6098db952b95581fb6c33625709d6f4400b8e7" "ace18a70579fad83c0982ef73f89395bcc39493ad53a685854" "daf2ba9b78733b805d9a6824c907ee1dba5ac27a1e466d4d10"); done: tor_free(mem_op_hex_tmp); #undef EXPAND } static void test_crypto_hkdf_sha256(void *arg) { uint8_t key_material[100]; const uint8_t salt[] = "ntor-curve25519-sha256-1:key_extract"; const size_t salt_len = strlen((char*)salt); const uint8_t m_expand[] = "ntor-curve25519-sha256-1:key_expand"; const size_t m_expand_len = strlen((char*)m_expand); int r; char *mem_op_hex_tmp = NULL; (void)arg; #define EXPAND(s) \ r = crypto_expand_key_material_rfc5869_sha256( \ (const uint8_t*)(s), strlen(s), \ salt, salt_len, \ m_expand, m_expand_len, \ key_material, 100) /* Test vectors generated with ntor_ref.py */ memset(key_material, 0, sizeof(key_material)); EXPAND(""); tt_int_op(r, OP_EQ, 0); test_memeq_hex(key_material, "d3490ed48b12a48f9547861583573fe3f19aafe3f81dc7fc75" "eeed96d741b3290f941576c1f9f0b2d463d1ec7ab2c6bf71cd" "d7f826c6298c00dbfe6711635d7005f0269493edf6046cc7e7" "dcf6abe0d20c77cf363e8ffe358927817a3d3e73712cee28d8"); EXPAND("Tor"); tt_int_op(r, OP_EQ, 0); test_memeq_hex(key_material, "5521492a85139a8d9107a2d5c0d9c91610d0f95989975ebee6" "c02a4f8d622a6cfdf9b7c7edd3832e2760ded1eac309b76f8d" "66c4a3c4d6225429b3a016e3c3d45911152fc87bc2de9630c3" "961be9fdb9f93197ea8e5977180801926d3321fa21513e59ac"); EXPAND("AN ALARMING ITEM TO FIND ON YOUR CREDIT-RATING STATEMENT"); tt_int_op(r, OP_EQ, 0); test_memeq_hex(key_material, "a2aa9b50da7e481d30463adb8f233ff06e9571a0ca6ab6df0f" "b206fa34e5bc78d063fc291501beec53b36e5a0e434561200c" "5f8bd13e0f88b3459600b4dc21d69363e2895321c06184879d" "94b18f078411be70b767c7fc40679a9440a0c95ea83a23efbf"); done: tor_free(mem_op_hex_tmp); #undef EXPAND } static void test_crypto_curve25519_impl(void *arg) { /* adapted from curve25519_donna, which adapted it from test-curve25519 version 20050915, by D. J. Bernstein, Public domain. */ const int randomize_high_bit = (arg != NULL); #ifdef SLOW_CURVE25519_TEST const int loop_max=10000; const char e1_expected[] = "4faf81190869fd742a33691b0e0824d5" "7e0329f4dd2819f5f32d130f1296b500"; const char e2k_expected[] = "05aec13f92286f3a781ccae98995a3b9" "e0544770bc7de853b38f9100489e3e79"; const char e1e2k_expected[] = "cd6e8269104eb5aaee886bd2071fba88" "bd13861475516bc2cd2b6e005e805064"; #else const int loop_max=200; const char e1_expected[] = "bc7112cde03f97ef7008cad1bdc56be3" "c6a1037d74cceb3712e9206871dcf654"; const char e2k_expected[] = "dd8fa254fb60bdb5142fe05b1f5de44d" "8e3ee1a63c7d14274ea5d4c67f065467"; const char e1e2k_expected[] = "7ddb98bd89025d2347776b33901b3e7e" "c0ee98cb2257a4545c0cfb2ca3e1812b"; #endif unsigned char e1k[32]; unsigned char e2k[32]; unsigned char e1e2k[32]; unsigned char e2e1k[32]; unsigned char e1[32] = {3}; unsigned char e2[32] = {5}; unsigned char k[32] = {9}; int loop, i; char *mem_op_hex_tmp = NULL; for (loop = 0; loop < loop_max; ++loop) { curve25519_impl(e1k,e1,k); curve25519_impl(e2e1k,e2,e1k); curve25519_impl(e2k,e2,k); if (randomize_high_bit) { /* We require that the high bit of the public key be ignored. So if * we're doing this variant test, we randomize the high bit of e2k, and * make sure that the handshake still works out the same as it would * otherwise. */ uint8_t byte; crypto_rand((char*)&byte, 1); e2k[31] |= (byte & 0x80); } curve25519_impl(e1e2k,e1,e2k); tt_mem_op(e1e2k,OP_EQ, e2e1k, 32); if (loop == loop_max-1) { break; } for (i = 0;i < 32;++i) e1[i] ^= e2k[i]; for (i = 0;i < 32;++i) e2[i] ^= e1k[i]; for (i = 0;i < 32;++i) k[i] ^= e1e2k[i]; } test_memeq_hex(e1, e1_expected); test_memeq_hex(e2k, e2k_expected); test_memeq_hex(e1e2k, e1e2k_expected); done: tor_free(mem_op_hex_tmp); } static void test_crypto_curve25519_basepoint(void *arg) { uint8_t secret[32]; uint8_t public1[32]; uint8_t public2[32]; const int iters = 2048; int i; (void) arg; for (i = 0; i < iters; ++i) { crypto_rand((char*)secret, 32); curve25519_set_impl_params(1); /* Use optimization */ curve25519_basepoint_impl(public1, secret); curve25519_set_impl_params(0); /* Disable optimization */ curve25519_basepoint_impl(public2, secret); tt_mem_op(public1, OP_EQ, public2, 32); } done: ; } static void test_crypto_curve25519_wrappers(void *arg) { curve25519_public_key_t pubkey1, pubkey2; curve25519_secret_key_t seckey1, seckey2; uint8_t output1[CURVE25519_OUTPUT_LEN]; uint8_t output2[CURVE25519_OUTPUT_LEN]; (void)arg; /* Test a simple handshake, serializing and deserializing some stuff. */ curve25519_secret_key_generate(&seckey1, 0); curve25519_secret_key_generate(&seckey2, 1); curve25519_public_key_generate(&pubkey1, &seckey1); curve25519_public_key_generate(&pubkey2, &seckey2); tt_assert(curve25519_public_key_is_ok(&pubkey1)); tt_assert(curve25519_public_key_is_ok(&pubkey2)); curve25519_handshake(output1, &seckey1, &pubkey2); curve25519_handshake(output2, &seckey2, &pubkey1); tt_mem_op(output1,OP_EQ, output2, sizeof(output1)); done: ; } static void test_crypto_curve25519_encode(void *arg) { curve25519_secret_key_t seckey; curve25519_public_key_t key1, key2, key3; char buf[64]; (void)arg; curve25519_secret_key_generate(&seckey, 0); curve25519_public_key_generate(&key1, &seckey); tt_int_op(0, OP_EQ, curve25519_public_to_base64(buf, &key1)); tt_int_op(CURVE25519_BASE64_PADDED_LEN, OP_EQ, strlen(buf)); tt_int_op(0, OP_EQ, curve25519_public_from_base64(&key2, buf)); tt_mem_op(key1.public_key,OP_EQ, key2.public_key, CURVE25519_PUBKEY_LEN); buf[CURVE25519_BASE64_PADDED_LEN - 1] = '\0'; tt_int_op(CURVE25519_BASE64_PADDED_LEN-1, OP_EQ, strlen(buf)); tt_int_op(0, OP_EQ, curve25519_public_from_base64(&key3, buf)); tt_mem_op(key1.public_key,OP_EQ, key3.public_key, CURVE25519_PUBKEY_LEN); /* Now try bogus parses. */ strlcpy(buf, "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$=", sizeof(buf)); tt_int_op(-1, OP_EQ, curve25519_public_from_base64(&key3, buf)); strlcpy(buf, "$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$", sizeof(buf)); tt_int_op(-1, OP_EQ, curve25519_public_from_base64(&key3, buf)); strlcpy(buf, "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", sizeof(buf)); tt_int_op(-1, OP_EQ, curve25519_public_from_base64(&key3, buf)); done: ; } static void test_crypto_curve25519_persist(void *arg) { curve25519_keypair_t keypair, keypair2; char *fname = tor_strdup(get_fname("curve25519_keypair")); char *tag = NULL; char *content = NULL; const char *cp; struct stat st; size_t taglen; (void)arg; tt_int_op(0,OP_EQ,curve25519_keypair_generate(&keypair, 0)); tt_int_op(0,OP_EQ, curve25519_keypair_write_to_file(&keypair, fname, "testing")); tt_int_op(0,OP_EQ,curve25519_keypair_read_from_file(&keypair2, &tag, fname)); tt_str_op(tag,OP_EQ,"testing"); tor_free(tag); tt_mem_op(keypair.pubkey.public_key,OP_EQ, keypair2.pubkey.public_key, CURVE25519_PUBKEY_LEN); tt_mem_op(keypair.seckey.secret_key,OP_EQ, keypair2.seckey.secret_key, CURVE25519_SECKEY_LEN); content = read_file_to_str(fname, RFTS_BIN, &st); tt_assert(content); taglen = strlen("== c25519v1: testing =="); tt_u64_op((uint64_t)st.st_size, OP_EQ, 32+CURVE25519_PUBKEY_LEN+CURVE25519_SECKEY_LEN); tt_assert(fast_memeq(content, "== c25519v1: testing ==", taglen)); tt_assert(tor_mem_is_zero(content+taglen, 32-taglen)); cp = content + 32; tt_mem_op(keypair.seckey.secret_key,OP_EQ, cp, CURVE25519_SECKEY_LEN); cp += CURVE25519_SECKEY_LEN; tt_mem_op(keypair.pubkey.public_key,OP_EQ, cp, CURVE25519_SECKEY_LEN); tor_free(fname); fname = tor_strdup(get_fname("bogus_keypair")); tt_int_op(-1, OP_EQ, curve25519_keypair_read_from_file(&keypair2, &tag, fname)); tor_free(tag); content[69] ^= 0xff; tt_int_op(0, OP_EQ, write_bytes_to_file(fname, content, (size_t)st.st_size, 1)); tt_int_op(-1, OP_EQ, curve25519_keypair_read_from_file(&keypair2, &tag, fname)); done: tor_free(fname); tor_free(content); tor_free(tag); } static void test_crypto_ed25519_simple(void *arg) { ed25519_keypair_t kp1, kp2; ed25519_public_key_t pub1, pub2; ed25519_secret_key_t sec1, sec2; ed25519_signature_t sig1, sig2; const uint8_t msg[] = "GNU will be able to run Unix programs, " "but will not be identical to Unix."; const uint8_t msg2[] = "Microsoft Windows extends the features of the DOS operating system, " "yet is compatible with most existing applications that run under DOS."; size_t msg_len = strlen((const char*)msg); size_t msg2_len = strlen((const char*)msg2); (void)arg; tt_int_op(0, OP_EQ, ed25519_secret_key_generate(&sec1, 0)); tt_int_op(0, OP_EQ, ed25519_secret_key_generate(&sec2, 1)); tt_int_op(0, OP_EQ, ed25519_public_key_generate(&pub1, &sec1)); tt_int_op(0, OP_EQ, ed25519_public_key_generate(&pub2, &sec1)); tt_mem_op(pub1.pubkey, OP_EQ, pub2.pubkey, sizeof(pub1.pubkey)); tt_assert(ed25519_pubkey_eq(&pub1, &pub2)); tt_assert(ed25519_pubkey_eq(&pub1, &pub1)); memcpy(&kp1.pubkey, &pub1, sizeof(pub1)); memcpy(&kp1.seckey, &sec1, sizeof(sec1)); tt_int_op(0, OP_EQ, ed25519_sign(&sig1, msg, msg_len, &kp1)); tt_int_op(0, OP_EQ, ed25519_sign(&sig2, msg, msg_len, &kp1)); /* Ed25519 signatures are deterministic */ tt_mem_op(sig1.sig, OP_EQ, sig2.sig, sizeof(sig1.sig)); /* Basic signature is valid. */ tt_int_op(0, OP_EQ, ed25519_checksig(&sig1, msg, msg_len, &pub1)); /* Altered signature doesn't work. */ sig1.sig[0] ^= 3; tt_int_op(-1, OP_EQ, ed25519_checksig(&sig1, msg, msg_len, &pub1)); /* Wrong public key doesn't work. */ tt_int_op(0, OP_EQ, ed25519_public_key_generate(&pub2, &sec2)); tt_int_op(-1, OP_EQ, ed25519_checksig(&sig2, msg, msg_len, &pub2)); tt_assert(! ed25519_pubkey_eq(&pub1, &pub2)); /* Wrong message doesn't work. */ tt_int_op(0, OP_EQ, ed25519_checksig(&sig2, msg, msg_len, &pub1)); tt_int_op(-1, OP_EQ, ed25519_checksig(&sig2, msg, msg_len-1, &pub1)); tt_int_op(-1, OP_EQ, ed25519_checksig(&sig2, msg2, msg2_len, &pub1)); /* Batch signature checking works with some bad. */ tt_int_op(0, OP_EQ, ed25519_keypair_generate(&kp2, 0)); tt_int_op(0, OP_EQ, ed25519_sign(&sig1, msg, msg_len, &kp2)); { ed25519_checkable_t ch[] = { { &pub1, sig2, msg, msg_len }, /*ok*/ { &pub1, sig2, msg, msg_len-1 }, /*bad*/ { &kp2.pubkey, sig2, msg2, msg2_len }, /*bad*/ { &kp2.pubkey, sig1, msg, msg_len }, /*ok*/ }; int okay[4]; tt_int_op(-2, OP_EQ, ed25519_checksig_batch(okay, ch, 4)); tt_int_op(okay[0], OP_EQ, 1); tt_int_op(okay[1], OP_EQ, 0); tt_int_op(okay[2], OP_EQ, 0); tt_int_op(okay[3], OP_EQ, 1); tt_int_op(-2, OP_EQ, ed25519_checksig_batch(NULL, ch, 4)); } /* Batch signature checking works with all good. */ { ed25519_checkable_t ch[] = { { &pub1, sig2, msg, msg_len }, /*ok*/ { &kp2.pubkey, sig1, msg, msg_len }, /*ok*/ }; int okay[2]; tt_int_op(0, OP_EQ, ed25519_checksig_batch(okay, ch, 2)); tt_int_op(okay[0], OP_EQ, 1); tt_int_op(okay[1], OP_EQ, 1); tt_int_op(0, OP_EQ, ed25519_checksig_batch(NULL, ch, 2)); } done: ; } static void test_crypto_ed25519_test_vectors(void *arg) { char *mem_op_hex_tmp=NULL; int i; struct { const char *sk; const char *pk; const char *sig; const char *msg; } items[] = { /* These test vectors were generated with the "ref" implementation of * ed25519 from SUPERCOP-20130419 */ { "4c6574277320686f706520746865726520617265206e6f206275677320696e20", "f3e0e493b30f56e501aeb868fc912fe0c8b76621efca47a78f6d75875193dd87", "b5d7fd6fd3adf643647ce1fe87a2931dedd1a4e38e6c662bedd35cdd80bfac51" "1b2c7d1ee6bd929ac213014e1a8dc5373854c7b25dbe15ec96bf6c94196fae06", "506c6561736520657863757365206d7920667269656e642e2048652069736e2774" "204e554c2d7465726d696e617465642e" }, { "74686520696d706c656d656e746174696f6e20776869636820617265206e6f74", "407f0025a1e1351a4cb68e92f5c0ebaf66e7aaf93a4006a4d1a66e3ede1cfeac", "02884fde1c3c5944d0ecf2d133726fc820c303aae695adceabf3a1e01e95bf28" "da88c0966f5265e9c6f8edc77b3b96b5c91baec3ca993ccd21a3f64203600601", "506c6561736520657863757365206d7920667269656e642e2048652069736e2774" "204e554c2d7465726d696e617465642e" }, { "6578706f73656420627920456e676c697368207465787420617320696e707574", "61681cb5fbd69f9bc5a462a21a7ab319011237b940bc781cdc47fcbe327e7706", "6a127d0414de7510125d4bc214994ffb9b8857a46330832d05d1355e882344ad" "f4137e3ca1f13eb9cc75c887ef2309b98c57528b4acd9f6376c6898889603209", "506c6561736520657863757365206d7920667269656e642e2048652069736e2774" "204e554c2d7465726d696e617465642e" }, /* These come from "sign.input" in ed25519's page */ { "5b5a619f8ce1c66d7ce26e5a2ae7b0c04febcd346d286c929e19d0d5973bfef9", "6fe83693d011d111131c4f3fbaaa40a9d3d76b30012ff73bb0e39ec27ab18257", "0f9ad9793033a2fa06614b277d37381e6d94f65ac2a5a94558d09ed6ce922258" "c1a567952e863ac94297aec3c0d0c8ddf71084e504860bb6ba27449b55adc40e", "5a8d9d0a22357e6655f9c785" }, { "940c89fe40a81dafbdb2416d14ae469119869744410c3303bfaa0241dac57800", "a2eb8c0501e30bae0cf842d2bde8dec7386f6b7fc3981b8c57c9792bb94cf2dd", "d8bb64aad8c9955a115a793addd24f7f2b077648714f49c4694ec995b330d09d" "640df310f447fd7b6cb5c14f9fe9f490bcf8cfadbfd2169c8ac20d3b8af49a0c", "b87d3813e03f58cf19fd0b6395" }, { "9acad959d216212d789a119252ebfe0c96512a23c73bd9f3b202292d6916a738", "cf3af898467a5b7a52d33d53bc037e2642a8da996903fc252217e9c033e2f291", "6ee3fe81e23c60eb2312b2006b3b25e6838e02106623f844c44edb8dafd66ab0" "671087fd195df5b8f58a1d6e52af42908053d55c7321010092748795ef94cf06", "55c7fa434f5ed8cdec2b7aeac173", }, { "d5aeee41eeb0e9d1bf8337f939587ebe296161e6bf5209f591ec939e1440c300", "fd2a565723163e29f53c9de3d5e8fbe36a7ab66e1439ec4eae9c0a604af291a5", "f68d04847e5b249737899c014d31c805c5007a62c0a10d50bb1538c5f3550395" "1fbc1e08682f2cc0c92efe8f4985dec61dcbd54d4b94a22547d24451271c8b00", "0a688e79be24f866286d4646b5d81c" }, { NULL, NULL, NULL, NULL} }; (void)arg; for (i = 0; items[i].pk; ++i) { ed25519_keypair_t kp; ed25519_signature_t sig; uint8_t sk_seed[32]; uint8_t *msg; size_t msg_len; base16_decode((char*)sk_seed, sizeof(sk_seed), items[i].sk, 64); ed25519_secret_key_from_seed(&kp.seckey, sk_seed); tt_int_op(0, OP_EQ, ed25519_public_key_generate(&kp.pubkey, &kp.seckey)); test_memeq_hex(kp.pubkey.pubkey, items[i].pk); msg_len = strlen(items[i].msg) / 2; msg = tor_malloc(msg_len); base16_decode((char*)msg, msg_len, items[i].msg, strlen(items[i].msg)); tt_int_op(0, OP_EQ, ed25519_sign(&sig, msg, msg_len, &kp)); test_memeq_hex(sig.sig, items[i].sig); tor_free(msg); } done: tor_free(mem_op_hex_tmp); } static void test_crypto_ed25519_encode(void *arg) { char buf[ED25519_SIG_BASE64_LEN+1]; ed25519_keypair_t kp; ed25519_public_key_t pk; ed25519_signature_t sig1, sig2; char *mem_op_hex_tmp = NULL; (void) arg; /* Test roundtrip. */ tt_int_op(0, OP_EQ, ed25519_keypair_generate(&kp, 0)); tt_int_op(0, OP_EQ, ed25519_public_to_base64(buf, &kp.pubkey)); tt_int_op(ED25519_BASE64_LEN, OP_EQ, strlen(buf)); tt_int_op(0, OP_EQ, ed25519_public_from_base64(&pk, buf)); tt_mem_op(kp.pubkey.pubkey, OP_EQ, pk.pubkey, ED25519_PUBKEY_LEN); tt_int_op(0, OP_EQ, ed25519_sign(&sig1, (const uint8_t*)"ABC", 3, &kp)); tt_int_op(0, OP_EQ, ed25519_signature_to_base64(buf, &sig1)); tt_int_op(0, OP_EQ, ed25519_signature_from_base64(&sig2, buf)); tt_mem_op(sig1.sig, OP_EQ, sig2.sig, ED25519_SIG_LEN); /* Test known value. */ tt_int_op(0, OP_EQ, ed25519_public_from_base64(&pk, "lVIuIctLjbGZGU5wKMNXxXlSE3cW4kaqkqm04u6pxvM")); test_memeq_hex(pk.pubkey, "95522e21cb4b8db199194e7028c357c57952137716e246aa92a9b4e2eea9c6f3"); done: tor_free(mem_op_hex_tmp); } static void test_crypto_ed25519_convert(void *arg) { const uint8_t msg[] = "The eyes are not here / There are no eyes here."; const int N = 30; int i; (void)arg; for (i = 0; i < N; ++i) { curve25519_keypair_t curve25519_keypair; ed25519_keypair_t ed25519_keypair; ed25519_public_key_t ed25519_pubkey; int bit=0; ed25519_signature_t sig; tt_int_op(0,OP_EQ,curve25519_keypair_generate(&curve25519_keypair, i&1)); tt_int_op(0,OP_EQ,ed25519_keypair_from_curve25519_keypair( &ed25519_keypair, &bit, &curve25519_keypair)); tt_int_op(0,OP_EQ,ed25519_public_key_from_curve25519_public_key( &ed25519_pubkey, &curve25519_keypair.pubkey, bit)); tt_mem_op(ed25519_pubkey.pubkey, OP_EQ, ed25519_keypair.pubkey.pubkey, 32); tt_int_op(0,OP_EQ,ed25519_sign(&sig, msg, sizeof(msg), &ed25519_keypair)); tt_int_op(0,OP_EQ,ed25519_checksig(&sig, msg, sizeof(msg), &ed25519_pubkey)); tt_int_op(-1,OP_EQ,ed25519_checksig(&sig, msg, sizeof(msg)-1, &ed25519_pubkey)); sig.sig[0] ^= 15; tt_int_op(-1,OP_EQ,ed25519_checksig(&sig, msg, sizeof(msg), &ed25519_pubkey)); } done: ; } static void test_crypto_ed25519_blinding(void *arg) { const uint8_t msg[] = "Eyes I dare not meet in dreams / In death's dream kingdom"; const int N = 30; int i; (void)arg; for (i = 0; i < N; ++i) { uint8_t blinding[32]; ed25519_keypair_t ed25519_keypair; ed25519_keypair_t ed25519_keypair_blinded; ed25519_public_key_t ed25519_pubkey_blinded; ed25519_signature_t sig; crypto_rand((char*) blinding, sizeof(blinding)); tt_int_op(0,OP_EQ,ed25519_keypair_generate(&ed25519_keypair, 0)); tt_int_op(0,OP_EQ,ed25519_keypair_blind(&ed25519_keypair_blinded, &ed25519_keypair, blinding)); tt_int_op(0,OP_EQ,ed25519_public_blind(&ed25519_pubkey_blinded, &ed25519_keypair.pubkey, blinding)); tt_mem_op(ed25519_pubkey_blinded.pubkey, OP_EQ, ed25519_keypair_blinded.pubkey.pubkey, 32); tt_int_op(0,OP_EQ,ed25519_sign(&sig, msg, sizeof(msg), &ed25519_keypair_blinded)); tt_int_op(0,OP_EQ,ed25519_checksig(&sig, msg, sizeof(msg), &ed25519_pubkey_blinded)); tt_int_op(-1,OP_EQ,ed25519_checksig(&sig, msg, sizeof(msg)-1, &ed25519_pubkey_blinded)); sig.sig[0] ^= 15; tt_int_op(-1,OP_EQ,ed25519_checksig(&sig, msg, sizeof(msg), &ed25519_pubkey_blinded)); } done: ; } static void test_crypto_ed25519_testvectors(void *arg) { unsigned i; char *mem_op_hex_tmp = NULL; (void)arg; for (i = 0; i < ARRAY_LENGTH(ED25519_SECRET_KEYS); ++i) { uint8_t sk[32]; ed25519_secret_key_t esk; ed25519_public_key_t pk, blind_pk, pkfromcurve; ed25519_keypair_t keypair, blind_keypair; curve25519_keypair_t curvekp; uint8_t blinding_param[32]; ed25519_signature_t sig; int sign; #define DECODE(p,s) base16_decode((char*)(p),sizeof(p),(s),strlen(s)) #define EQ(a,h) test_memeq_hex((const char*)(a), (h)) tt_int_op(0, OP_EQ, DECODE(sk, ED25519_SECRET_KEYS[i])); tt_int_op(0, OP_EQ, DECODE(blinding_param, ED25519_BLINDING_PARAMS[i])); tt_int_op(0, OP_EQ, ed25519_secret_key_from_seed(&esk, sk)); EQ(esk.seckey, ED25519_EXPANDED_SECRET_KEYS[i]); tt_int_op(0, OP_EQ, ed25519_public_key_generate(&pk, &esk)); EQ(pk.pubkey, ED25519_PUBLIC_KEYS[i]); memcpy(&curvekp.seckey.secret_key, esk.seckey, 32); curve25519_public_key_generate(&curvekp.pubkey, &curvekp.seckey); tt_int_op(0, OP_EQ, ed25519_keypair_from_curve25519_keypair(&keypair, &sign, &curvekp)); tt_int_op(0, OP_EQ, ed25519_public_key_from_curve25519_public_key( &pkfromcurve, &curvekp.pubkey, sign)); tt_mem_op(keypair.pubkey.pubkey, OP_EQ, pkfromcurve.pubkey, 32); EQ(curvekp.pubkey.public_key, ED25519_CURVE25519_PUBLIC_KEYS[i]); /* Self-signing */ memcpy(&keypair.seckey, &esk, sizeof(esk)); memcpy(&keypair.pubkey, &pk, sizeof(pk)); tt_int_op(0, OP_EQ, ed25519_sign(&sig, pk.pubkey, 32, &keypair)); EQ(sig.sig, ED25519_SELF_SIGNATURES[i]); /* Blinding */ tt_int_op(0, OP_EQ, ed25519_keypair_blind(&blind_keypair, &keypair, blinding_param)); tt_int_op(0, OP_EQ, ed25519_public_blind(&blind_pk, &pk, blinding_param)); EQ(blind_keypair.seckey.seckey, ED25519_BLINDED_SECRET_KEYS[i]); EQ(blind_pk.pubkey, ED25519_BLINDED_PUBLIC_KEYS[i]); tt_mem_op(blind_pk.pubkey, OP_EQ, blind_keypair.pubkey.pubkey, 32); #undef DECODE #undef EQ } done: tor_free(mem_op_hex_tmp); } static void test_crypto_ed25519_fuzz_donna(void *arg) { const unsigned iters = 1024; uint8_t msg[1024]; unsigned i; (void)arg; tt_assert(sizeof(msg) == iters); crypto_rand((char*) msg, sizeof(msg)); /* Fuzz Ed25519-donna vs ref10, alternating the implementation used to * generate keys/sign per iteration. */ for (i = 0; i < iters; ++i) { const int use_donna = i & 1; uint8_t blinding[32]; curve25519_keypair_t ckp; ed25519_keypair_t kp, kp_blind, kp_curve25519; ed25519_public_key_t pk, pk_blind, pk_curve25519; ed25519_signature_t sig, sig_blind; int bit = 0; crypto_rand((char*) blinding, sizeof(blinding)); /* Impl. A: * 1. Generate a keypair. * 2. Blinded the keypair. * 3. Sign a message (unblinded). * 4. Sign a message (blinded). * 5. Generate a curve25519 keypair, and convert it to Ed25519. */ ed25519_set_impl_params(use_donna); tt_int_op(0, OP_EQ, ed25519_keypair_generate(&kp, i&1)); tt_int_op(0, OP_EQ, ed25519_keypair_blind(&kp_blind, &kp, blinding)); tt_int_op(0, OP_EQ, ed25519_sign(&sig, msg, i, &kp)); tt_int_op(0, OP_EQ, ed25519_sign(&sig_blind, msg, i, &kp_blind)); tt_int_op(0, OP_EQ, curve25519_keypair_generate(&ckp, i&1)); tt_int_op(0, OP_EQ, ed25519_keypair_from_curve25519_keypair( &kp_curve25519, &bit, &ckp)); /* Impl. B: * 1. Validate the public key by rederiving it. * 2. Validate the blinded public key by rederiving it. * 3. Validate the unblinded signature (and test a invalid signature). * 4. Validate the blinded signature. * 5. Validate the public key (from Curve25519) by rederiving it. */ ed25519_set_impl_params(!use_donna); tt_int_op(0, OP_EQ, ed25519_public_key_generate(&pk, &kp.seckey)); tt_mem_op(pk.pubkey, OP_EQ, kp.pubkey.pubkey, 32); tt_int_op(0, OP_EQ, ed25519_public_blind(&pk_blind, &kp.pubkey, blinding)); tt_mem_op(pk_blind.pubkey, OP_EQ, kp_blind.pubkey.pubkey, 32); tt_int_op(0, OP_EQ, ed25519_checksig(&sig, msg, i, &pk)); sig.sig[0] ^= 15; tt_int_op(-1, OP_EQ, ed25519_checksig(&sig, msg, sizeof(msg), &pk)); tt_int_op(0, OP_EQ, ed25519_checksig(&sig_blind, msg, i, &pk_blind)); tt_int_op(0, OP_EQ, ed25519_public_key_from_curve25519_public_key( &pk_curve25519, &ckp.pubkey, bit)); tt_mem_op(pk_curve25519.pubkey, OP_EQ, kp_curve25519.pubkey.pubkey, 32); } done: ; } static void test_crypto_siphash(void *arg) { /* From the reference implementation, taking k = 00 01 02 ... 0f and in = 00; 00 01; 00 01 02; ... */ const uint8_t VECTORS[64][8] = { { 0x31, 0x0e, 0x0e, 0xdd, 0x47, 0xdb, 0x6f, 0x72, }, { 0xfd, 0x67, 0xdc, 0x93, 0xc5, 0x39, 0xf8, 0x74, }, { 0x5a, 0x4f, 0xa9, 0xd9, 0x09, 0x80, 0x6c, 0x0d, }, { 0x2d, 0x7e, 0xfb, 0xd7, 0x96, 0x66, 0x67, 0x85, }, { 0xb7, 0x87, 0x71, 0x27, 0xe0, 0x94, 0x27, 0xcf, }, { 0x8d, 0xa6, 0x99, 0xcd, 0x64, 0x55, 0x76, 0x18, }, { 0xce, 0xe3, 0xfe, 0x58, 0x6e, 0x46, 0xc9, 0xcb, }, { 0x37, 0xd1, 0x01, 0x8b, 0xf5, 0x00, 0x02, 0xab, }, { 0x62, 0x24, 0x93, 0x9a, 0x79, 0xf5, 0xf5, 0x93, }, { 0xb0, 0xe4, 0xa9, 0x0b, 0xdf, 0x82, 0x00, 0x9e, }, { 0xf3, 0xb9, 0xdd, 0x94, 0xc5, 0xbb, 0x5d, 0x7a, }, { 0xa7, 0xad, 0x6b, 0x22, 0x46, 0x2f, 0xb3, 0xf4, }, { 0xfb, 0xe5, 0x0e, 0x86, 0xbc, 0x8f, 0x1e, 0x75, }, { 0x90, 0x3d, 0x84, 0xc0, 0x27, 0x56, 0xea, 0x14, }, { 0xee, 0xf2, 0x7a, 0x8e, 0x90, 0xca, 0x23, 0xf7, }, { 0xe5, 0x45, 0xbe, 0x49, 0x61, 0xca, 0x29, 0xa1, }, { 0xdb, 0x9b, 0xc2, 0x57, 0x7f, 0xcc, 0x2a, 0x3f, }, { 0x94, 0x47, 0xbe, 0x2c, 0xf5, 0xe9, 0x9a, 0x69, }, { 0x9c, 0xd3, 0x8d, 0x96, 0xf0, 0xb3, 0xc1, 0x4b, }, { 0xbd, 0x61, 0x79, 0xa7, 0x1d, 0xc9, 0x6d, 0xbb, }, { 0x98, 0xee, 0xa2, 0x1a, 0xf2, 0x5c, 0xd6, 0xbe, }, { 0xc7, 0x67, 0x3b, 0x2e, 0xb0, 0xcb, 0xf2, 0xd0, }, { 0x88, 0x3e, 0xa3, 0xe3, 0x95, 0x67, 0x53, 0x93, }, { 0xc8, 0xce, 0x5c, 0xcd, 0x8c, 0x03, 0x0c, 0xa8, }, { 0x94, 0xaf, 0x49, 0xf6, 0xc6, 0x50, 0xad, 0xb8, }, { 0xea, 0xb8, 0x85, 0x8a, 0xde, 0x92, 0xe1, 0xbc, }, { 0xf3, 0x15, 0xbb, 0x5b, 0xb8, 0x35, 0xd8, 0x17, }, { 0xad, 0xcf, 0x6b, 0x07, 0x63, 0x61, 0x2e, 0x2f, }, { 0xa5, 0xc9, 0x1d, 0xa7, 0xac, 0xaa, 0x4d, 0xde, }, { 0x71, 0x65, 0x95, 0x87, 0x66, 0x50, 0xa2, 0xa6, }, { 0x28, 0xef, 0x49, 0x5c, 0x53, 0xa3, 0x87, 0xad, }, { 0x42, 0xc3, 0x41, 0xd8, 0xfa, 0x92, 0xd8, 0x32, }, { 0xce, 0x7c, 0xf2, 0x72, 0x2f, 0x51, 0x27, 0x71, }, { 0xe3, 0x78, 0x59, 0xf9, 0x46, 0x23, 0xf3, 0xa7, }, { 0x38, 0x12, 0x05, 0xbb, 0x1a, 0xb0, 0xe0, 0x12, }, { 0xae, 0x97, 0xa1, 0x0f, 0xd4, 0x34, 0xe0, 0x15, }, { 0xb4, 0xa3, 0x15, 0x08, 0xbe, 0xff, 0x4d, 0x31, }, { 0x81, 0x39, 0x62, 0x29, 0xf0, 0x90, 0x79, 0x02, }, { 0x4d, 0x0c, 0xf4, 0x9e, 0xe5, 0xd4, 0xdc, 0xca, }, { 0x5c, 0x73, 0x33, 0x6a, 0x76, 0xd8, 0xbf, 0x9a, }, { 0xd0, 0xa7, 0x04, 0x53, 0x6b, 0xa9, 0x3e, 0x0e, }, { 0x92, 0x59, 0x58, 0xfc, 0xd6, 0x42, 0x0c, 0xad, }, { 0xa9, 0x15, 0xc2, 0x9b, 0xc8, 0x06, 0x73, 0x18, }, { 0x95, 0x2b, 0x79, 0xf3, 0xbc, 0x0a, 0xa6, 0xd4, }, { 0xf2, 0x1d, 0xf2, 0xe4, 0x1d, 0x45, 0x35, 0xf9, }, { 0x87, 0x57, 0x75, 0x19, 0x04, 0x8f, 0x53, 0xa9, }, { 0x10, 0xa5, 0x6c, 0xf5, 0xdf, 0xcd, 0x9a, 0xdb, }, { 0xeb, 0x75, 0x09, 0x5c, 0xcd, 0x98, 0x6c, 0xd0, }, { 0x51, 0xa9, 0xcb, 0x9e, 0xcb, 0xa3, 0x12, 0xe6, }, { 0x96, 0xaf, 0xad, 0xfc, 0x2c, 0xe6, 0x66, 0xc7, }, { 0x72, 0xfe, 0x52, 0x97, 0x5a, 0x43, 0x64, 0xee, }, { 0x5a, 0x16, 0x45, 0xb2, 0x76, 0xd5, 0x92, 0xa1, }, { 0xb2, 0x74, 0xcb, 0x8e, 0xbf, 0x87, 0x87, 0x0a, }, { 0x6f, 0x9b, 0xb4, 0x20, 0x3d, 0xe7, 0xb3, 0x81, }, { 0xea, 0xec, 0xb2, 0xa3, 0x0b, 0x22, 0xa8, 0x7f, }, { 0x99, 0x24, 0xa4, 0x3c, 0xc1, 0x31, 0x57, 0x24, }, { 0xbd, 0x83, 0x8d, 0x3a, 0xaf, 0xbf, 0x8d, 0xb7, }, { 0x0b, 0x1a, 0x2a, 0x32, 0x65, 0xd5, 0x1a, 0xea, }, { 0x13, 0x50, 0x79, 0xa3, 0x23, 0x1c, 0xe6, 0x60, }, { 0x93, 0x2b, 0x28, 0x46, 0xe4, 0xd7, 0x06, 0x66, }, { 0xe1, 0x91, 0x5f, 0x5c, 0xb1, 0xec, 0xa4, 0x6c, }, { 0xf3, 0x25, 0x96, 0x5c, 0xa1, 0x6d, 0x62, 0x9f, }, { 0x57, 0x5f, 0xf2, 0x8e, 0x60, 0x38, 0x1b, 0xe5, }, { 0x72, 0x45, 0x06, 0xeb, 0x4c, 0x32, 0x8a, 0x95, } }; const struct sipkey K = { U64_LITERAL(0x0706050403020100), U64_LITERAL(0x0f0e0d0c0b0a0908) }; uint8_t input[64]; int i, j; (void)arg; for (i = 0; i < 64; ++i) input[i] = i; for (i = 0; i < 64; ++i) { uint64_t r = siphash24(input, i, &K); for (j = 0; j < 8; ++j) { tt_int_op( (r >> (j*8)) & 0xff, OP_EQ, VECTORS[i][j]); } } done: ; } #define CRYPTO_LEGACY(name) \ { #name, test_crypto_ ## name , 0, NULL, NULL } struct testcase_t crypto_tests[] = { CRYPTO_LEGACY(formats), CRYPTO_LEGACY(rng), { "rng_range", test_crypto_rng_range, 0, NULL, NULL }, { "aes_AES", test_crypto_aes, TT_FORK, &passthrough_setup, (void*)"aes" }, { "aes_EVP", test_crypto_aes, TT_FORK, &passthrough_setup, (void*)"evp" }, CRYPTO_LEGACY(sha), CRYPTO_LEGACY(pk), { "pk_fingerprints", test_crypto_pk_fingerprints, TT_FORK, NULL, NULL }, { "pk_base64", test_crypto_pk_base64, TT_FORK, NULL, NULL }, CRYPTO_LEGACY(digests), CRYPTO_LEGACY(dh), { "aes_iv_AES", test_crypto_aes_iv, TT_FORK, &passthrough_setup, (void*)"aes" }, { "aes_iv_EVP", test_crypto_aes_iv, TT_FORK, &passthrough_setup, (void*)"evp" }, CRYPTO_LEGACY(base32_decode), { "kdf_TAP", test_crypto_kdf_TAP, 0, NULL, NULL }, { "hkdf_sha256", test_crypto_hkdf_sha256, 0, NULL, NULL }, { "curve25519_impl", test_crypto_curve25519_impl, 0, NULL, NULL }, { "curve25519_impl_hibit", test_crypto_curve25519_impl, 0, NULL, (void*)"y"}, { "curve25519_basepoint", test_crypto_curve25519_basepoint, TT_FORK, NULL, NULL }, { "curve25519_wrappers", test_crypto_curve25519_wrappers, 0, NULL, NULL }, { "curve25519_encode", test_crypto_curve25519_encode, 0, NULL, NULL }, { "curve25519_persist", test_crypto_curve25519_persist, 0, NULL, NULL }, { "ed25519_simple", test_crypto_ed25519_simple, 0, NULL, NULL }, { "ed25519_test_vectors", test_crypto_ed25519_test_vectors, 0, NULL, NULL }, { "ed25519_encode", test_crypto_ed25519_encode, 0, NULL, NULL }, { "ed25519_convert", test_crypto_ed25519_convert, 0, NULL, NULL }, { "ed25519_blinding", test_crypto_ed25519_blinding, 0, NULL, NULL }, { "ed25519_testvectors", test_crypto_ed25519_testvectors, 0, NULL, NULL }, { "ed25519_fuzz_donna", test_crypto_ed25519_fuzz_donna, TT_FORK, NULL, NULL }, { "siphash", test_crypto_siphash, 0, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_relaycell.c0000644000175000017500000002232512621363246014347 00000000000000/* Copyright (c) 2014-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /* Unit tests for handling different kinds of relay cell */ #define RELAY_PRIVATE #include "or.h" #include "config.h" #include "connection.h" #include "connection_edge.h" #include "relay.h" #include "test.h" static int srm_ncalls; static entry_connection_t *srm_conn; static int srm_atype; static size_t srm_alen; static int srm_answer_is_set; static uint8_t srm_answer[512]; static int srm_ttl; static time_t srm_expires; /* Mock replacement for connection_ap_hannshake_socks_resolved() */ static void socks_resolved_mock(entry_connection_t *conn, int answer_type, size_t answer_len, const uint8_t *answer, int ttl, time_t expires) { srm_ncalls++; srm_conn = conn; srm_atype = answer_type; srm_alen = answer_len; if (answer) { memset(srm_answer, 0, sizeof(srm_answer)); memcpy(srm_answer, answer, answer_len < 512 ? answer_len : 512); srm_answer_is_set = 1; } else { srm_answer_is_set = 0; } srm_ttl = ttl; srm_expires = expires; } static int mum_ncalls; static entry_connection_t *mum_conn; static int mum_endreason; /* Mock replacement for connection_mark_unattached_ap_() */ static void mark_unattached_mock(entry_connection_t *conn, int endreason, int line, const char *file) { ++mum_ncalls; mum_conn = conn; mum_endreason = endreason; (void) line; (void) file; } /* Tests for connection_edge_process_resolved_cell(). The point of ..process_resolved_cell() is to handle an incoming cell on an entry connection, and call connection_mark_unattached_ap() and/or connection_ap_handshake_socks_resolved(). */ static void test_relaycell_resolved(void *arg) { entry_connection_t *entryconn; edge_connection_t *edgeconn; cell_t cell; relay_header_t rh; int r; or_options_t *options = get_options_mutable(); #define SET_CELL(s) do { \ memset(&cell, 0, sizeof(cell)); \ memset(&rh, 0, sizeof(rh)); \ memcpy(cell.payload + RELAY_HEADER_SIZE, (s), sizeof((s))-1); \ rh.length = sizeof((s))-1; \ rh.command = RELAY_COMMAND_RESOLVED; \ } while (0) #define MOCK_RESET() do { \ srm_ncalls = mum_ncalls = 0; \ } while (0) #define ASSERT_MARK_CALLED(reason) do { \ tt_int_op(mum_ncalls, OP_EQ, 1); \ tt_ptr_op(mum_conn, OP_EQ, entryconn); \ tt_int_op(mum_endreason, OP_EQ, (reason)); \ } while (0) #define ASSERT_RESOLVED_CALLED(atype, answer, ttl, expires) do { \ tt_int_op(srm_ncalls, OP_EQ, 1); \ tt_ptr_op(srm_conn, OP_EQ, entryconn); \ tt_int_op(srm_atype, OP_EQ, (atype)); \ if (answer) { \ tt_int_op(srm_alen, OP_EQ, sizeof(answer)-1); \ tt_int_op(srm_alen, OP_LT, 512); \ tt_int_op(srm_answer_is_set, OP_EQ, 1); \ tt_mem_op(srm_answer, OP_EQ, answer, sizeof(answer)-1); \ } else { \ tt_int_op(srm_answer_is_set, OP_EQ, 0); \ } \ tt_int_op(srm_ttl, OP_EQ, ttl); \ tt_i64_op(srm_expires, OP_EQ, expires); \ } while (0) (void)arg; MOCK(connection_mark_unattached_ap_, mark_unattached_mock); MOCK(connection_ap_handshake_socks_resolved, socks_resolved_mock); options->ClientDNSRejectInternalAddresses = 0; SET_CELL(/* IPv4: 127.0.1.2, ttl 256 */ "\x04\x04\x7f\x00\x01\x02\x00\x00\x01\x00" /* IPv4: 18.0.0.1, ttl 512 */ "\x04\x04\x12\x00\x00\x01\x00\x00\x02\x00" /* IPv6: 2003::3, ttl 1024 */ "\x06\x10" "\x20\x02\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x03" "\x00\x00\x04\x00"); entryconn = entry_connection_new(CONN_TYPE_AP, AF_INET); edgeconn = ENTRY_TO_EDGE_CONN(entryconn); /* Try with connection in non-RESOLVE_WAIT state: cell gets ignored */ MOCK_RESET(); r = connection_edge_process_resolved_cell(edgeconn, &cell, &rh); tt_int_op(r, OP_EQ, 0); tt_int_op(srm_ncalls, OP_EQ, 0); tt_int_op(mum_ncalls, OP_EQ, 0); /* Now put it in the right state. */ ENTRY_TO_CONN(entryconn)->state = AP_CONN_STATE_RESOLVE_WAIT; entryconn->socks_request->command = SOCKS_COMMAND_RESOLVE; entryconn->entry_cfg.ipv4_traffic = 1; entryconn->entry_cfg.ipv6_traffic = 1; entryconn->entry_cfg.prefer_ipv6 = 0; /* We prefer ipv4, so we should get the first ipv4 answer */ MOCK_RESET(); r = connection_edge_process_resolved_cell(edgeconn, &cell, &rh); tt_int_op(r, OP_EQ, 0); ASSERT_MARK_CALLED(END_STREAM_REASON_DONE| END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED); ASSERT_RESOLVED_CALLED(RESOLVED_TYPE_IPV4, "\x7f\x00\x01\x02", 256, -1); /* But we may be discarding private answers. */ MOCK_RESET(); options->ClientDNSRejectInternalAddresses = 1; r = connection_edge_process_resolved_cell(edgeconn, &cell, &rh); tt_int_op(r, OP_EQ, 0); ASSERT_MARK_CALLED(END_STREAM_REASON_DONE| END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED); ASSERT_RESOLVED_CALLED(RESOLVED_TYPE_IPV4, "\x12\x00\x00\x01", 512, -1); /* now prefer ipv6, and get the first ipv6 answer */ entryconn->entry_cfg.prefer_ipv6 = 1; MOCK_RESET(); r = connection_edge_process_resolved_cell(edgeconn, &cell, &rh); tt_int_op(r, OP_EQ, 0); ASSERT_MARK_CALLED(END_STREAM_REASON_DONE| END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED); ASSERT_RESOLVED_CALLED(RESOLVED_TYPE_IPV6, "\x20\x02\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x03", 1024, -1); /* With a cell that only has IPv4, we report IPv4 even if we prefer IPv6 */ MOCK_RESET(); SET_CELL("\x04\x04\x12\x00\x00\x01\x00\x00\x02\x00"); r = connection_edge_process_resolved_cell(edgeconn, &cell, &rh); tt_int_op(r, OP_EQ, 0); ASSERT_MARK_CALLED(END_STREAM_REASON_DONE| END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED); ASSERT_RESOLVED_CALLED(RESOLVED_TYPE_IPV4, "\x12\x00\x00\x01", 512, -1); /* But if we don't allow IPv4, we report nothing if the cell contains only * ipv4 */ MOCK_RESET(); entryconn->entry_cfg.ipv4_traffic = 0; r = connection_edge_process_resolved_cell(edgeconn, &cell, &rh); tt_int_op(r, OP_EQ, 0); ASSERT_MARK_CALLED(END_STREAM_REASON_DONE| END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED); ASSERT_RESOLVED_CALLED(RESOLVED_TYPE_ERROR, NULL, -1, -1); /* If we wanted hostnames, we report nothing, since we only had IPs. */ MOCK_RESET(); entryconn->entry_cfg.ipv4_traffic = 1; entryconn->socks_request->command = SOCKS_COMMAND_RESOLVE_PTR; r = connection_edge_process_resolved_cell(edgeconn, &cell, &rh); tt_int_op(r, OP_EQ, 0); ASSERT_MARK_CALLED(END_STREAM_REASON_DONE| END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED); ASSERT_RESOLVED_CALLED(RESOLVED_TYPE_ERROR, NULL, -1, -1); /* A hostname cell is fine though. */ MOCK_RESET(); SET_CELL("\x00\x0fwww.example.com\x00\x01\x00\x00"); r = connection_edge_process_resolved_cell(edgeconn, &cell, &rh); tt_int_op(r, OP_EQ, 0); ASSERT_MARK_CALLED(END_STREAM_REASON_DONE| END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED); ASSERT_RESOLVED_CALLED(RESOLVED_TYPE_HOSTNAME, "www.example.com", 65536, -1); /* error on malformed cell */ MOCK_RESET(); entryconn->socks_request->command = SOCKS_COMMAND_RESOLVE; SET_CELL("\x04\x04\x01\x02\x03\x04"); /* no ttl */ r = connection_edge_process_resolved_cell(edgeconn, &cell, &rh); tt_int_op(r, OP_EQ, 0); ASSERT_MARK_CALLED(END_STREAM_REASON_TORPROTOCOL); tt_int_op(srm_ncalls, OP_EQ, 0); /* error on all addresses private */ MOCK_RESET(); SET_CELL(/* IPv4: 127.0.1.2, ttl 256 */ "\x04\x04\x7f\x00\x01\x02\x00\x00\x01\x00" /* IPv4: 192.168.1.1, ttl 256 */ "\x04\x04\xc0\xa8\x01\x01\x00\x00\x01\x00"); r = connection_edge_process_resolved_cell(edgeconn, &cell, &rh); tt_int_op(r, OP_EQ, 0); ASSERT_MARK_CALLED(END_STREAM_REASON_TORPROTOCOL); ASSERT_RESOLVED_CALLED(RESOLVED_TYPE_ERROR_TRANSIENT, NULL, 0, TIME_MAX); /* Legit error code */ MOCK_RESET(); SET_CELL("\xf0\x15" "quiet and meaningless" "\x00\x00\x0f\xff"); r = connection_edge_process_resolved_cell(edgeconn, &cell, &rh); tt_int_op(r, OP_EQ, 0); ASSERT_MARK_CALLED(END_STREAM_REASON_DONE| END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED); ASSERT_RESOLVED_CALLED(RESOLVED_TYPE_ERROR_TRANSIENT, NULL, -1, -1); done: UNMOCK(connection_mark_unattached_ap_); UNMOCK(connection_ap_handshake_socks_resolved); } struct testcase_t relaycell_tests[] = { { "resolved", test_relaycell_resolved, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/testing_common.c0000644000175000017500000001661412632034724014363 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /* Ordinarily defined in tor_main.c; this bit is just here to provide one * since we're not linking to tor_main.c */ const char tor_git_revision[] = ""; /** * \file test_common.c * \brief Common pieces to implement unit tests. **/ #include "orconfig.h" #include "or.h" #include "control.h" #include "config.h" #include "rephist.h" #include "backtrace.h" #include "test.h" #include #ifdef HAVE_FCNTL_H #include #endif #ifdef _WIN32 /* For mkdir() */ #include #else #include #endif #include "or.h" #ifdef USE_DMALLOC #include #include #include "main.h" #endif /** Temporary directory (set up by setup_directory) under which we store all * our files during testing. */ static char temp_dir[256]; #ifdef _WIN32 #define pid_t int #endif static pid_t temp_dir_setup_in_pid = 0; /** Select and create the temporary directory we'll use to run our unit tests. * Store it in temp_dir. Exit immediately if we can't create it. * idempotent. */ static void setup_directory(void) { static int is_setup = 0; int r; char rnd[256], rnd32[256]; if (is_setup) return; /* Due to base32 limitation needs to be a multiple of 5. */ #define RAND_PATH_BYTES 5 crypto_rand(rnd, RAND_PATH_BYTES); base32_encode(rnd32, sizeof(rnd32), rnd, RAND_PATH_BYTES); #ifdef _WIN32 { char buf[MAX_PATH]; const char *tmp = buf; const char *extra_backslash = ""; /* If this fails, we're probably screwed anyway */ if (!GetTempPathA(sizeof(buf),buf)) tmp = "c:\\windows\\temp\\"; if (strcmpend(tmp, "\\")) { /* According to MSDN, it should be impossible for GetTempPath to give us * an answer that doesn't end with \. But let's make sure. */ extra_backslash = "\\"; } tor_snprintf(temp_dir, sizeof(temp_dir), "%s%stor_test_%d_%s", tmp, extra_backslash, (int)getpid(), rnd32); r = mkdir(temp_dir); } #else tor_snprintf(temp_dir, sizeof(temp_dir), "/tmp/tor_test_%d_%s", (int) getpid(), rnd32); r = mkdir(temp_dir, 0700); if (!r) { /* undo sticky bit so tests don't get confused. */ r = chown(temp_dir, getuid(), getgid()); } #endif if (r) { fprintf(stderr, "Can't create directory %s:", temp_dir); perror(""); exit(1); } is_setup = 1; temp_dir_setup_in_pid = getpid(); } /** Return a filename relative to our testing temporary directory */ const char * get_fname(const char *name) { static char buf[1024]; setup_directory(); if (!name) return temp_dir; tor_snprintf(buf,sizeof(buf),"%s/%s",temp_dir,name); return buf; } /* Remove a directory and all of its subdirectories */ static void rm_rf(const char *dir) { struct stat st; smartlist_t *elements; elements = tor_listdir(dir); if (elements) { SMARTLIST_FOREACH_BEGIN(elements, const char *, cp) { char *tmp = NULL; tor_asprintf(&tmp, "%s"PATH_SEPARATOR"%s", dir, cp); if (0 == stat(tmp,&st) && (st.st_mode & S_IFDIR)) { rm_rf(tmp); } else { if (unlink(tmp)) { fprintf(stderr, "Error removing %s: %s\n", tmp, strerror(errno)); } } tor_free(tmp); } SMARTLIST_FOREACH_END(cp); SMARTLIST_FOREACH(elements, char *, cp, tor_free(cp)); smartlist_free(elements); } if (rmdir(dir)) fprintf(stderr, "Error removing directory %s: %s\n", dir, strerror(errno)); } /** Remove all files stored under the temporary directory, and the directory * itself. Called by atexit(). */ static void remove_directory(void) { if (getpid() != temp_dir_setup_in_pid) { /* Only clean out the tempdir when the main process is exiting. */ return; } rm_rf(temp_dir); } /** Define this if unit tests spend too much time generating public keys*/ #undef CACHE_GENERATED_KEYS static crypto_pk_t *pregen_keys[5] = {NULL, NULL, NULL, NULL, NULL}; #define N_PREGEN_KEYS ARRAY_LENGTH(pregen_keys) /** Generate and return a new keypair for use in unit tests. If we're using * the key cache optimization, we might reuse keys: we only guarantee that * keys made with distinct values for idx are different. The value of * idx must be at least 0, and less than N_PREGEN_KEYS. */ crypto_pk_t * pk_generate(int idx) { int res; #ifdef CACHE_GENERATED_KEYS tor_assert(idx < N_PREGEN_KEYS); if (! pregen_keys[idx]) { pregen_keys[idx] = crypto_pk_new(); res = crypto_pk_generate_key(pregen_keys[idx]); tor_assert(!res); } return crypto_pk_dup_key(pregen_keys[idx]); #else crypto_pk_t *result; (void) idx; result = crypto_pk_new(); res = crypto_pk_generate_key(result); tor_assert(!res); return result; #endif } /** Free all storage used for the cached key optimization. */ static void free_pregenerated_keys(void) { unsigned idx; for (idx = 0; idx < N_PREGEN_KEYS; ++idx) { if (pregen_keys[idx]) { crypto_pk_free(pregen_keys[idx]); pregen_keys[idx] = NULL; } } } static void * passthrough_test_setup(const struct testcase_t *testcase) { return testcase->setup_data; } static int passthrough_test_cleanup(const struct testcase_t *testcase, void *ptr) { (void)testcase; (void)ptr; return 1; } const struct testcase_setup_t passthrough_setup = { passthrough_test_setup, passthrough_test_cleanup }; extern struct testgroup_t testgroups[]; /** Main entry point for unit test code: parse the command line, and run * some unit tests. */ int main(int c, const char **v) { or_options_t *options; char *errmsg = NULL; int i, i_out; int loglevel = LOG_ERR; int accel_crypto = 0; #ifdef USE_DMALLOC { int r = CRYPTO_set_mem_ex_functions(tor_malloc_, tor_realloc_, tor_free_); tor_assert(r); } #endif update_approx_time(time(NULL)); options = options_new(); tor_threads_init(); control_initialize_event_queue(); init_logging(1); configure_backtrace_handler(get_version()); for (i_out = i = 1; i < c; ++i) { if (!strcmp(v[i], "--warn")) { loglevel = LOG_WARN; } else if (!strcmp(v[i], "--notice")) { loglevel = LOG_NOTICE; } else if (!strcmp(v[i], "--info")) { loglevel = LOG_INFO; } else if (!strcmp(v[i], "--debug")) { loglevel = LOG_DEBUG; } else if (!strcmp(v[i], "--accel")) { accel_crypto = 1; } else { v[i_out++] = v[i]; } } c = i_out; { log_severity_list_t s; memset(&s, 0, sizeof(s)); set_log_severity_config(loglevel, LOG_ERR, &s); add_stream_log(&s, "", fileno(stdout)); } options->command = CMD_RUN_UNITTESTS; if (crypto_global_init(accel_crypto, NULL, NULL)) { printf("Can't initialize crypto subsystem; exiting.\n"); return 1; } crypto_set_tls_dh_prime(); crypto_seed_rng(); rep_hist_init(); network_init(); setup_directory(); options_init(options); options->DataDirectory = tor_strdup(temp_dir); options->EntryStatistics = 1; if (set_options(options, &errmsg) < 0) { printf("Failed to set initial options: %s\n", errmsg); tor_free(errmsg); return 1; } atexit(remove_directory); int have_failed = (tinytest_main(c, v, testgroups) != 0); free_pregenerated_keys(); #ifdef USE_DMALLOC tor_free_all(0); dmalloc_log_unfreed(); #endif if (have_failed) return 1; else return 0; } tor-0.2.7.6/src/test/test_threads.c0000644000175000017500000002023012631612325014012 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #include "or.h" #include "compat_threads.h" #include "test.h" /** mutex for thread test to stop the threads hitting data at the same time. */ static tor_mutex_t *thread_test_mutex_ = NULL; /** mutexes for the thread test to make sure that the threads have to * interleave somewhat. */ static tor_mutex_t *thread_test_start1_ = NULL, *thread_test_start2_ = NULL; /** Shared strmap for the thread test. */ static strmap_t *thread_test_strmap_ = NULL; /** The name of thread1 for the thread test */ static char *thread1_name_ = NULL; /** The name of thread2 for the thread test */ static char *thread2_name_ = NULL; static int thread_fns_failed = 0; static unsigned long thread_fn_tid1, thread_fn_tid2; static void thread_test_func_(void* _s) ATTR_NORETURN; /** How many iterations have the threads in the unit test run? */ static tor_threadlocal_t count; /** Helper function for threading unit tests: This function runs in a * subthread. It grabs its own mutex (start1 or start2) to make sure that it * should start, then it repeatedly alters _test_thread_strmap protected by * thread_test_mutex_. */ static void thread_test_func_(void* _s) { char *s = _s; int i; tor_mutex_t *m; char buf[64]; char **cp; int *mycount = tor_malloc_zero(sizeof(int)); tor_threadlocal_set(&count, mycount); if (!strcmp(s, "thread 1")) { m = thread_test_start1_; cp = &thread1_name_; thread_fn_tid1 = tor_get_thread_id(); } else { m = thread_test_start2_; cp = &thread2_name_; thread_fn_tid2 = tor_get_thread_id(); } tor_snprintf(buf, sizeof(buf), "%lu", tor_get_thread_id()); *cp = tor_strdup(buf); tor_mutex_acquire(m); for (i=0; i<10000; ++i) { tor_mutex_acquire(thread_test_mutex_); strmap_set(thread_test_strmap_, "last to run", *cp); tor_mutex_release(thread_test_mutex_); int *tls_count = tor_threadlocal_get(&count); tor_assert(tls_count == mycount); ++*tls_count; } tor_mutex_acquire(thread_test_mutex_); strmap_set(thread_test_strmap_, s, *cp); if (in_main_thread()) ++thread_fns_failed; tor_mutex_release(thread_test_mutex_); tor_mutex_release(m); spawn_exit(); } /** Run unit tests for threading logic. */ static void test_threads_basic(void *arg) { char *s1 = NULL, *s2 = NULL; int done = 0, timedout = 0; time_t started; #ifndef _WIN32 struct timeval tv; tv.tv_sec=0; tv.tv_usec=100*1000; #endif (void) arg; tt_int_op(tor_threadlocal_init(&count), OP_EQ, 0); set_main_thread(); thread_test_mutex_ = tor_mutex_new(); thread_test_start1_ = tor_mutex_new(); thread_test_start2_ = tor_mutex_new(); thread_test_strmap_ = strmap_new(); s1 = tor_strdup("thread 1"); s2 = tor_strdup("thread 2"); tor_mutex_acquire(thread_test_start1_); tor_mutex_acquire(thread_test_start2_); spawn_func(thread_test_func_, s1); spawn_func(thread_test_func_, s2); tor_mutex_release(thread_test_start2_); tor_mutex_release(thread_test_start1_); started = time(NULL); while (!done) { tor_mutex_acquire(thread_test_mutex_); strmap_assert_ok(thread_test_strmap_); if (strmap_get(thread_test_strmap_, "thread 1") && strmap_get(thread_test_strmap_, "thread 2")) { done = 1; } else if (time(NULL) > started + 150) { timedout = done = 1; } tor_mutex_release(thread_test_mutex_); #ifndef _WIN32 /* Prevent the main thread from starving the worker threads. */ select(0, NULL, NULL, NULL, &tv); #endif } tor_mutex_acquire(thread_test_start1_); tor_mutex_release(thread_test_start1_); tor_mutex_acquire(thread_test_start2_); tor_mutex_release(thread_test_start2_); tor_mutex_free(thread_test_mutex_); if (timedout) { tt_assert(strmap_get(thread_test_strmap_, "thread 1")); tt_assert(strmap_get(thread_test_strmap_, "thread 2")); tt_assert(!timedout); } /* different thread IDs. */ tt_assert(strcmp(strmap_get(thread_test_strmap_, "thread 1"), strmap_get(thread_test_strmap_, "thread 2"))); tt_assert(!strcmp(strmap_get(thread_test_strmap_, "thread 1"), strmap_get(thread_test_strmap_, "last to run")) || !strcmp(strmap_get(thread_test_strmap_, "thread 2"), strmap_get(thread_test_strmap_, "last to run"))); tt_int_op(thread_fns_failed, ==, 0); tt_int_op(thread_fn_tid1, !=, thread_fn_tid2); done: tor_free(s1); tor_free(s2); tor_free(thread1_name_); tor_free(thread2_name_); if (thread_test_strmap_) strmap_free(thread_test_strmap_, NULL); if (thread_test_start1_) tor_mutex_free(thread_test_start1_); if (thread_test_start2_) tor_mutex_free(thread_test_start2_); } typedef struct cv_testinfo_s { tor_cond_t *cond; tor_mutex_t *mutex; int value; int addend; int shutdown; int n_shutdown; int n_wakeups; int n_timeouts; int n_threads; const struct timeval *tv; } cv_testinfo_t; static cv_testinfo_t * cv_testinfo_new(void) { cv_testinfo_t *i = tor_malloc_zero(sizeof(*i)); i->cond = tor_cond_new(); i->mutex = tor_mutex_new_nonrecursive(); return i; } static void cv_testinfo_free(cv_testinfo_t *i) { if (!i) return; tor_cond_free(i->cond); tor_mutex_free(i->mutex); tor_free(i); } static void cv_test_thr_fn_(void *arg) ATTR_NORETURN; static void cv_test_thr_fn_(void *arg) { cv_testinfo_t *i = arg; int tid, r; tor_mutex_acquire(i->mutex); tid = i->n_threads++; tor_mutex_release(i->mutex); (void) tid; tor_mutex_acquire(i->mutex); while (1) { if (i->addend) { i->value += i->addend; i->addend = 0; } if (i->shutdown) { ++i->n_shutdown; i->shutdown = 0; tor_mutex_release(i->mutex); spawn_exit(); } r = tor_cond_wait(i->cond, i->mutex, i->tv); ++i->n_wakeups; if (r == 1) { ++i->n_timeouts; tor_mutex_release(i->mutex); spawn_exit(); } } } static void test_threads_conditionvar(void *arg) { cv_testinfo_t *ti=NULL; const struct timeval msec100 = { 0, 100*1000 }; const int timeout = !strcmp(arg, "tv"); ti = cv_testinfo_new(); if (timeout) { ti->tv = &msec100; } spawn_func(cv_test_thr_fn_, ti); spawn_func(cv_test_thr_fn_, ti); spawn_func(cv_test_thr_fn_, ti); spawn_func(cv_test_thr_fn_, ti); tor_mutex_acquire(ti->mutex); ti->addend = 7; ti->shutdown = 1; tor_cond_signal_one(ti->cond); tor_mutex_release(ti->mutex); #define SPIN() \ while (1) { \ tor_mutex_acquire(ti->mutex); \ if (ti->addend == 0) { \ break; \ } \ tor_mutex_release(ti->mutex); \ } SPIN(); ti->addend = 30; ti->shutdown = 1; tor_cond_signal_all(ti->cond); tor_mutex_release(ti->mutex); SPIN(); ti->addend = 1000; if (! timeout) ti->shutdown = 1; tor_cond_signal_one(ti->cond); tor_mutex_release(ti->mutex); SPIN(); ti->addend = 300; if (! timeout) ti->shutdown = 1; tor_cond_signal_all(ti->cond); tor_mutex_release(ti->mutex); SPIN(); tor_mutex_release(ti->mutex); tt_int_op(ti->value, ==, 1337); if (!timeout) { tt_int_op(ti->n_shutdown, ==, 4); } else { #ifdef _WIN32 Sleep(500); /* msec */ #elif defined(HAVE_USLEEP) usleep(500*1000); /* usec */ #else { struct tv = { 0, 500*1000 }; select(0, NULL, NULL, NULL, &tv); } #endif tor_mutex_acquire(ti->mutex); tt_int_op(ti->n_shutdown, ==, 2); tt_int_op(ti->n_timeouts, ==, 2); tor_mutex_release(ti->mutex); } done: cv_testinfo_free(ti); } #define THREAD_TEST(name) \ { #name, test_threads_##name, TT_FORK, NULL, NULL } struct testcase_t thread_tests[] = { THREAD_TEST(basic), { "conditionvar", test_threads_conditionvar, TT_FORK, &passthrough_setup, (void*)"no-tv" }, { "conditionvar_timeout", test_threads_conditionvar, TT_FORK, &passthrough_setup, (void*)"tv" }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/ntor_ref.py0000755000175000017500000003015312621363246013361 00000000000000#!/usr/bin/python # Copyright 2012-2015, The Tor Project, Inc # See LICENSE for licensing information """ ntor_ref.py This module is a reference implementation for the "ntor" protocol s proposed by Goldberg, Stebila, and Ustaoglu and as instantiated in Tor Proposal 216. It's meant to be used to validate Tor's ntor implementation. It requirs the curve25519 python module from the curve25519-donna package. *** DO NOT USE THIS IN PRODUCTION. *** commands: gen_kdf_vectors: Print out some test vectors for the RFC5869 KDF. timing: Print a little timing information about this implementation's handshake. self-test: Try handshaking with ourself; make sure we can. test-tor: Handshake with tor's ntor implementation via the program src/test/test-ntor-cl; make sure we can. """ import binascii try: import curve25519 curve25519mod = curve25519.keys except ImportError: curve25519 = None import slownacl_curve25519 curve25519mod = slownacl_curve25519 import hashlib import hmac import subprocess import sys # ********************************************************************** # Helpers and constants def HMAC(key,msg): "Return the HMAC-SHA256 of 'msg' using the key 'key'." H = hmac.new(key, b"", hashlib.sha256) H.update(msg) return H.digest() def H(msg,tweak): """Return the hash of 'msg' using tweak 'tweak'. (In this version of ntor, the tweaked hash is just HMAC with the tweak as the key.)""" return HMAC(key=tweak, msg=msg) def keyid(k): """Return the 32-byte key ID of a public key 'k'. (Since we're using curve25519, we let k be its own keyid.) """ return k.serialize() NODE_ID_LENGTH = 20 KEYID_LENGTH = 32 G_LENGTH = 32 H_LENGTH = 32 PROTOID = b"ntor-curve25519-sha256-1" M_EXPAND = PROTOID + b":key_expand" T_MAC = PROTOID + b":mac" T_KEY = PROTOID + b":key_extract" T_VERIFY = PROTOID + b":verify" def H_mac(msg): return H(msg, tweak=T_MAC) def H_verify(msg): return H(msg, tweak=T_VERIFY) class PrivateKey(curve25519mod.Private): """As curve25519mod.Private, but doesn't regenerate its public key every time you ask for it. """ def __init__(self): curve25519mod.Private.__init__(self) self._memo_public = None def get_public(self): if self._memo_public is None: self._memo_public = curve25519mod.Private.get_public(self) return self._memo_public # ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ if sys.version < '3': def int2byte(i): return chr(i) else: def int2byte(i): return bytes([i]) def kdf_rfc5869(key, salt, info, n): prk = HMAC(key=salt, msg=key) out = b"" last = b"" i = 1 while len(out) < n: m = last + info + int2byte(i) last = h = HMAC(key=prk, msg=m) out += h i = i + 1 return out[:n] def kdf_ntor(key, n): return kdf_rfc5869(key, T_KEY, M_EXPAND, n) # ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ def client_part1(node_id, pubkey_B): """Initial handshake, client side. From the specification: <> Takes node_id -- a digest of the server's identity key, pubkey_B -- a public key for the server. Returns a tuple of (client secret key x, client->server message)""" assert len(node_id) == NODE_ID_LENGTH key_id = keyid(pubkey_B) seckey_x = PrivateKey() pubkey_X = seckey_x.get_public().serialize() message = node_id + key_id + pubkey_X assert len(message) == NODE_ID_LENGTH + H_LENGTH + H_LENGTH return seckey_x , message def hash_nil(x): """Identity function: if we don't pass a hash function that does nothing, the curve25519 python lib will try to sha256 it for us.""" return x def bad_result(r): """Helper: given a result of multiplying a public key by a private key, return True iff one of the inputs was broken""" assert len(r) == 32 return r == '\x00'*32 def server(seckey_b, my_node_id, message, keyBytes=72): """Handshake step 2, server side. From the spec: << The server generates a keypair of y,Y = KEYGEN(), and computes secret_input = EXP(X,y) | EXP(X,b) | ID | B | X | Y | PROTOID KEY_SEED = H(secret_input, t_key) verify = H(secret_input, t_verify) auth_input = verify | ID | B | Y | X | PROTOID | "Server" The server sends a CREATED cell containing: SERVER_PK: Y -- G_LENGTH bytes AUTH: H(auth_input, t_mac) -- H_LENGTH byets >> Takes seckey_b -- the server's secret key my_node_id -- the servers's public key digest, message -- a message from a client keybytes -- amount of key material to generate Returns a tuple of (key material, sever->client reply), or None on error. """ assert len(message) == NODE_ID_LENGTH + H_LENGTH + H_LENGTH if my_node_id != message[:NODE_ID_LENGTH]: return None badness = (keyid(seckey_b.get_public()) != message[NODE_ID_LENGTH:NODE_ID_LENGTH+H_LENGTH]) pubkey_X = curve25519mod.Public(message[NODE_ID_LENGTH+H_LENGTH:]) seckey_y = PrivateKey() pubkey_Y = seckey_y.get_public() pubkey_B = seckey_b.get_public() xy = seckey_y.get_shared_key(pubkey_X, hash_nil) xb = seckey_b.get_shared_key(pubkey_X, hash_nil) # secret_input = EXP(X,y) | EXP(X,b) | ID | B | X | Y | PROTOID secret_input = (xy + xb + my_node_id + pubkey_B.serialize() + pubkey_X.serialize() + pubkey_Y.serialize() + PROTOID) verify = H_verify(secret_input) # auth_input = verify | ID | B | Y | X | PROTOID | "Server" auth_input = (verify + my_node_id + pubkey_B.serialize() + pubkey_Y.serialize() + pubkey_X.serialize() + PROTOID + b"Server") msg = pubkey_Y.serialize() + H_mac(auth_input) badness += bad_result(xb) badness += bad_result(xy) if badness: return None keys = kdf_ntor(secret_input, keyBytes) return keys, msg def client_part2(seckey_x, msg, node_id, pubkey_B, keyBytes=72): """Handshake step 3: client side again. From the spec: << The client then checks Y is in G^* [see NOTE below], and computes secret_input = EXP(Y,x) | EXP(B,x) | ID | B | X | Y | PROTOID KEY_SEED = H(secret_input, t_key) verify = H(secret_input, t_verify) auth_input = verify | ID | B | Y | X | PROTOID | "Server" The client verifies that AUTH == H(auth_input, t_mac). >> Takes seckey_x -- the secret key we generated in step 1. msg -- the message from the server. node_id -- the node_id we used in step 1. server_key -- the same public key we used in step 1. keyBytes -- the number of bytes we want to generate Returns key material, or None on error """ assert len(msg) == G_LENGTH + H_LENGTH pubkey_Y = curve25519mod.Public(msg[:G_LENGTH]) their_auth = msg[G_LENGTH:] pubkey_X = seckey_x.get_public() yx = seckey_x.get_shared_key(pubkey_Y, hash_nil) bx = seckey_x.get_shared_key(pubkey_B, hash_nil) # secret_input = EXP(Y,x) | EXP(B,x) | ID | B | X | Y | PROTOID secret_input = (yx + bx + node_id + pubkey_B.serialize() + pubkey_X.serialize() + pubkey_Y.serialize() + PROTOID) verify = H_verify(secret_input) # auth_input = verify | ID | B | Y | X | PROTOID | "Server" auth_input = (verify + node_id + pubkey_B.serialize() + pubkey_Y.serialize() + pubkey_X.serialize() + PROTOID + b"Server") my_auth = H_mac(auth_input) badness = my_auth != their_auth badness |= bad_result(yx) + bad_result(bx) if badness: return None return kdf_ntor(secret_input, keyBytes) # ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ def demo(node_id=b"iToldYouAboutStairs.", server_key=PrivateKey()): """ Try to handshake with ourself. """ x, create = client_part1(node_id, server_key.get_public()) skeys, created = server(server_key, node_id, create) ckeys = client_part2(x, created, node_id, server_key.get_public()) assert len(skeys) == 72 assert len(ckeys) == 72 assert skeys == ckeys print("OK") # ====================================================================== def timing(): """ Use Python's timeit module to see how fast this nonsense is """ import timeit t = timeit.Timer(stmt="ntor_ref.demo(N,SK)", setup="import ntor_ref,curve25519;N='ABCD'*5;SK=ntor_ref.PrivateKey()") print(t.timeit(number=1000)) # ====================================================================== def kdf_vectors(): """ Generate some vectors to check our KDF. """ import binascii def kdf_vec(inp): k = kdf(inp, T_KEY, M_EXPAND, 100) print(repr(inp), "\n\""+ binascii.b2a_hex(k)+ "\"") kdf_vec("") kdf_vec("Tor") kdf_vec("AN ALARMING ITEM TO FIND ON YOUR CREDIT-RATING STATEMENT") # ====================================================================== def test_tor(): """ Call the test-ntor-cl command-line program to make sure we can interoperate with Tor's ntor program """ enhex=lambda s: binascii.b2a_hex(s) dehex=lambda s: binascii.a2b_hex(s.strip()) PROG = b"./src/test/test-ntor-cl" def tor_client1(node_id, pubkey_B): " returns (msg, state) " p = subprocess.Popen([PROG, b"client1", enhex(node_id), enhex(pubkey_B.serialize())], stdout=subprocess.PIPE) return map(dehex, p.stdout.readlines()) def tor_server1(seckey_b, node_id, msg, n): " returns (msg, keys) " p = subprocess.Popen([PROG, "server1", enhex(seckey_b.serialize()), enhex(node_id), enhex(msg), str(n)], stdout=subprocess.PIPE) return map(dehex, p.stdout.readlines()) def tor_client2(state, msg, n): " returns (keys,) " p = subprocess.Popen([PROG, "client2", enhex(state), enhex(msg), str(n)], stdout=subprocess.PIPE) return map(dehex, p.stdout.readlines()) node_id = b"thisisatornodeid$#%^" seckey_b = PrivateKey() pubkey_B = seckey_b.get_public() # Do a pure-Tor handshake c2s_msg, c_state = tor_client1(node_id, pubkey_B) s2c_msg, s_keys = tor_server1(seckey_b, node_id, c2s_msg, 90) c_keys, = tor_client2(c_state, s2c_msg, 90) assert c_keys == s_keys assert len(c_keys) == 90 # Try a mixed handshake with Tor as the client c2s_msg, c_state = tor_client1(node_id, pubkey_B) s_keys, s2c_msg = server(seckey_b, node_id, c2s_msg, 90) c_keys, = tor_client2(c_state, s2c_msg, 90) assert c_keys == s_keys assert len(c_keys) == 90 # Now do a mixed handshake with Tor as the server c_x, c2s_msg = client_part1(node_id, pubkey_B) s2c_msg, s_keys = tor_server1(seckey_b, node_id, c2s_msg, 90) c_keys = client_part2(c_x, s2c_msg, node_id, pubkey_B, 90) assert c_keys == s_keys assert len(c_keys) == 90 print("OK") # ====================================================================== if __name__ == '__main__': if len(sys.argv) < 2: print(__doc__) elif sys.argv[1] == 'gen_kdf_vectors': kdf_vectors() elif sys.argv[1] == 'timing': timing() elif sys.argv[1] == 'self-test': demo() elif sys.argv[1] == 'test-tor': test_tor() else: print(__doc__) tor-0.2.7.6/src/test/test_oom.c0000644000175000017500000002546012621363246013170 00000000000000/* Copyright (c) 2014-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /* Unit tests for OOM handling logic */ #define RELAY_PRIVATE #define BUFFERS_PRIVATE #define CIRCUITLIST_PRIVATE #define CONNECTION_PRIVATE #include "or.h" #include "buffers.h" #include "circuitlist.h" #include "compat_libevent.h" #include "connection.h" #include "config.h" #include "relay.h" #include "test.h" /* small replacement mock for circuit_mark_for_close_ to avoid doing all * the other bookkeeping that comes with marking circuits. */ static void circuit_mark_for_close_dummy_(circuit_t *circ, int reason, int line, const char *file) { (void) reason; if (circ->marked_for_close) { TT_FAIL(("Circuit already marked for close at %s:%d, but we are marking " "it again at %s:%d", circ->marked_for_close_file, (int)circ->marked_for_close, file, line)); } circ->marked_for_close = line; circ->marked_for_close_file = file; } static circuit_t * dummy_or_circuit_new(int n_p_cells, int n_n_cells) { or_circuit_t *circ = or_circuit_new(0, NULL); int i; cell_t cell; for (i=0; i < n_p_cells; ++i) { crypto_rand((void*)&cell, sizeof(cell)); cell_queue_append_packed_copy(TO_CIRCUIT(circ), &circ->p_chan_cells, 0, &cell, 1, 0); } for (i=0; i < n_n_cells; ++i) { crypto_rand((void*)&cell, sizeof(cell)); cell_queue_append_packed_copy(TO_CIRCUIT(circ), &TO_CIRCUIT(circ)->n_chan_cells, 1, &cell, 1, 0); } TO_CIRCUIT(circ)->purpose = CIRCUIT_PURPOSE_OR; return TO_CIRCUIT(circ); } static circuit_t * dummy_origin_circuit_new(int n_cells) { origin_circuit_t *circ = origin_circuit_new(); int i; cell_t cell; for (i=0; i < n_cells; ++i) { crypto_rand((void*)&cell, sizeof(cell)); cell_queue_append_packed_copy(TO_CIRCUIT(circ), &TO_CIRCUIT(circ)->n_chan_cells, 1, &cell, 1, 0); } TO_CIRCUIT(circ)->purpose = CIRCUIT_PURPOSE_C_GENERAL; return TO_CIRCUIT(circ); } static void add_bytes_to_buf(generic_buffer_t *buf, size_t n_bytes) { char b[3000]; while (n_bytes) { size_t this_add = n_bytes > sizeof(b) ? sizeof(b) : n_bytes; crypto_rand(b, this_add); generic_buffer_add(buf, b, this_add); n_bytes -= this_add; } } static edge_connection_t * dummy_edge_conn_new(circuit_t *circ, int type, size_t in_bytes, size_t out_bytes) { edge_connection_t *conn; generic_buffer_t *inbuf, *outbuf; if (type == CONN_TYPE_EXIT) conn = edge_connection_new(type, AF_INET); else conn = ENTRY_TO_EDGE_CONN(entry_connection_new(type, AF_INET)); #ifdef USE_BUFFEREVENTS inbuf = bufferevent_get_input(TO_CONN(conn)->bufev); outbuf = bufferevent_get_output(TO_CONN(conn)->bufev); #else inbuf = TO_CONN(conn)->inbuf; outbuf = TO_CONN(conn)->outbuf; #endif /* We add these bytes directly to the buffers, to avoid all the * edge connection read/write machinery. */ add_bytes_to_buf(inbuf, in_bytes); add_bytes_to_buf(outbuf, out_bytes); conn->on_circuit = circ; if (type == CONN_TYPE_EXIT) { or_circuit_t *oc = TO_OR_CIRCUIT(circ); conn->next_stream = oc->n_streams; oc->n_streams = conn; } else { origin_circuit_t *oc = TO_ORIGIN_CIRCUIT(circ); conn->next_stream = oc->p_streams; oc->p_streams = conn; } return conn; } /** Run unit tests for buffers.c */ static void test_oom_circbuf(void *arg) { or_options_t *options = get_options_mutable(); circuit_t *c1 = NULL, *c2 = NULL, *c3 = NULL, *c4 = NULL; struct timeval tv = { 1389631048, 0 }; (void) arg; MOCK(circuit_mark_for_close_, circuit_mark_for_close_dummy_); /* Far too low for real life. */ options->MaxMemInQueues = 256*packed_cell_mem_cost(); options->CellStatistics = 0; tt_int_op(cell_queues_check_size(), OP_EQ, 0); /* We don't start out OOM. */ tt_int_op(cell_queues_get_total_allocation(), OP_EQ, 0); tt_int_op(buf_get_total_allocation(), OP_EQ, 0); /* Now we're going to fake up some circuits and get them added to the global circuit list. */ tv.tv_usec = 0; tor_gettimeofday_cache_set(&tv); c1 = dummy_origin_circuit_new(30); tv.tv_usec = 10*1000; tor_gettimeofday_cache_set(&tv); c2 = dummy_or_circuit_new(20, 20); tt_int_op(packed_cell_mem_cost(), OP_EQ, sizeof(packed_cell_t)); tt_int_op(cell_queues_get_total_allocation(), OP_EQ, packed_cell_mem_cost() * 70); tt_int_op(cell_queues_check_size(), OP_EQ, 0); /* We are still not OOM */ tv.tv_usec = 20*1000; tor_gettimeofday_cache_set(&tv); c3 = dummy_or_circuit_new(100, 85); tt_int_op(cell_queues_check_size(), OP_EQ, 0); /* We are still not OOM */ tt_int_op(cell_queues_get_total_allocation(), OP_EQ, packed_cell_mem_cost() * 255); tv.tv_usec = 30*1000; tor_gettimeofday_cache_set(&tv); /* Adding this cell will trigger our OOM handler. */ c4 = dummy_or_circuit_new(2, 0); tt_int_op(cell_queues_get_total_allocation(), OP_EQ, packed_cell_mem_cost() * 257); tt_int_op(cell_queues_check_size(), OP_EQ, 1); /* We are now OOM */ tt_assert(c1->marked_for_close); tt_assert(! c2->marked_for_close); tt_assert(! c3->marked_for_close); tt_assert(! c4->marked_for_close); tt_int_op(cell_queues_get_total_allocation(), OP_EQ, packed_cell_mem_cost() * (257 - 30)); circuit_free(c1); tv.tv_usec = 0; tor_gettimeofday_cache_set(&tv); /* go back in time */ c1 = dummy_or_circuit_new(90, 0); tv.tv_usec = 40*1000; /* go back to the future */ tor_gettimeofday_cache_set(&tv); tt_int_op(cell_queues_check_size(), OP_EQ, 1); /* We are now OOM */ tt_assert(c1->marked_for_close); tt_assert(! c2->marked_for_close); tt_assert(! c3->marked_for_close); tt_assert(! c4->marked_for_close); tt_int_op(cell_queues_get_total_allocation(), OP_EQ, packed_cell_mem_cost() * (257 - 30)); done: circuit_free(c1); circuit_free(c2); circuit_free(c3); circuit_free(c4); UNMOCK(circuit_mark_for_close_); } /** Run unit tests for buffers.c */ static void test_oom_streambuf(void *arg) { or_options_t *options = get_options_mutable(); circuit_t *c1 = NULL, *c2 = NULL, *c3 = NULL, *c4 = NULL, *c5 = NULL; struct timeval tv = { 1389641159, 0 }; uint32_t tvms; int i; smartlist_t *edgeconns = smartlist_new(); (void) arg; MOCK(circuit_mark_for_close_, circuit_mark_for_close_dummy_); /* Far too low for real life. */ options->MaxMemInQueues = 81*packed_cell_mem_cost() + 4096 * 34; options->CellStatistics = 0; tt_int_op(cell_queues_check_size(), OP_EQ, 0); /* We don't start out OOM. */ tt_int_op(cell_queues_get_total_allocation(), OP_EQ, 0); tt_int_op(buf_get_total_allocation(), OP_EQ, 0); /* Start all circuits with a bit of data queued in cells */ tv.tv_usec = 500*1000; /* go halfway into the second. */ tor_gettimeofday_cache_set(&tv); c1 = dummy_or_circuit_new(10,10); tv.tv_usec = 510*1000; tor_gettimeofday_cache_set(&tv); c2 = dummy_origin_circuit_new(20); tv.tv_usec = 520*1000; tor_gettimeofday_cache_set(&tv); c3 = dummy_or_circuit_new(20,20); tv.tv_usec = 530*1000; tor_gettimeofday_cache_set(&tv); c4 = dummy_or_circuit_new(0,0); tt_int_op(cell_queues_get_total_allocation(), OP_EQ, packed_cell_mem_cost() * 80); tv.tv_usec = 600*1000; tor_gettimeofday_cache_set(&tv); /* Add some connections to c1...c4. */ for (i = 0; i < 4; ++i) { edge_connection_t *ec; /* link it to a circuit */ tv.tv_usec += 10*1000; tor_gettimeofday_cache_set(&tv); ec = dummy_edge_conn_new(c1, CONN_TYPE_EXIT, 1000, 1000); tt_assert(ec); smartlist_add(edgeconns, ec); tv.tv_usec += 10*1000; tor_gettimeofday_cache_set(&tv); ec = dummy_edge_conn_new(c2, CONN_TYPE_AP, 1000, 1000); tt_assert(ec); smartlist_add(edgeconns, ec); tv.tv_usec += 10*1000; tor_gettimeofday_cache_set(&tv); ec = dummy_edge_conn_new(c4, CONN_TYPE_EXIT, 1000, 1000); /* Yes, 4 twice*/ tt_assert(ec); smartlist_add(edgeconns, ec); tv.tv_usec += 10*1000; tor_gettimeofday_cache_set(&tv); ec = dummy_edge_conn_new(c4, CONN_TYPE_EXIT, 1000, 1000); smartlist_add(edgeconns, ec); tt_assert(ec); } tv.tv_sec += 1; tv.tv_usec = 0; tvms = (uint32_t) tv_to_msec(&tv); tt_int_op(circuit_max_queued_cell_age(c1, tvms), OP_EQ, 500); tt_int_op(circuit_max_queued_cell_age(c2, tvms), OP_EQ, 490); tt_int_op(circuit_max_queued_cell_age(c3, tvms), OP_EQ, 480); tt_int_op(circuit_max_queued_cell_age(c4, tvms), OP_EQ, 0); tt_int_op(circuit_max_queued_data_age(c1, tvms), OP_EQ, 390); tt_int_op(circuit_max_queued_data_age(c2, tvms), OP_EQ, 380); tt_int_op(circuit_max_queued_data_age(c3, tvms), OP_EQ, 0); tt_int_op(circuit_max_queued_data_age(c4, tvms), OP_EQ, 370); tt_int_op(circuit_max_queued_item_age(c1, tvms), OP_EQ, 500); tt_int_op(circuit_max_queued_item_age(c2, tvms), OP_EQ, 490); tt_int_op(circuit_max_queued_item_age(c3, tvms), OP_EQ, 480); tt_int_op(circuit_max_queued_item_age(c4, tvms), OP_EQ, 370); tt_int_op(cell_queues_get_total_allocation(), OP_EQ, packed_cell_mem_cost() * 80); tt_int_op(buf_get_total_allocation(), OP_EQ, 4096*16*2); /* Now give c4 a very old buffer of modest size */ { edge_connection_t *ec; tv.tv_sec -= 1; tv.tv_usec = 0; tor_gettimeofday_cache_set(&tv); ec = dummy_edge_conn_new(c4, CONN_TYPE_EXIT, 1000, 1000); tt_assert(ec); smartlist_add(edgeconns, ec); } tt_int_op(buf_get_total_allocation(), OP_EQ, 4096*17*2); tt_int_op(circuit_max_queued_item_age(c4, tvms), OP_EQ, 1000); tt_int_op(cell_queues_check_size(), OP_EQ, 0); /* And run over the limit. */ tv.tv_usec = 800*1000; tor_gettimeofday_cache_set(&tv); c5 = dummy_or_circuit_new(0,5); tt_int_op(cell_queues_get_total_allocation(), OP_EQ, packed_cell_mem_cost() * 85); tt_int_op(buf_get_total_allocation(), OP_EQ, 4096*17*2); tt_int_op(cell_queues_check_size(), OP_EQ, 1); /* We are now OOM */ /* C4 should have died. */ tt_assert(! c1->marked_for_close); tt_assert(! c2->marked_for_close); tt_assert(! c3->marked_for_close); tt_assert(c4->marked_for_close); tt_assert(! c5->marked_for_close); tt_int_op(cell_queues_get_total_allocation(), OP_EQ, packed_cell_mem_cost() * 85); tt_int_op(buf_get_total_allocation(), OP_EQ, 4096*8*2); done: circuit_free(c1); circuit_free(c2); circuit_free(c3); circuit_free(c4); circuit_free(c5); SMARTLIST_FOREACH(edgeconns, edge_connection_t *, ec, connection_free_(TO_CONN(ec))); smartlist_free(edgeconns); UNMOCK(circuit_mark_for_close_); } struct testcase_t oom_tests[] = { { "circbuf", test_oom_circbuf, TT_FORK, NULL, NULL }, { "streambuf", test_oom_streambuf, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_address.c0000644000175000017500000006436512631612325014026 00000000000000/* Copyright (c) 2014-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define ADDRESS_PRIVATE #include "orconfig.h" #ifdef _WIN32 #include /* For access to structs needed by GetAdaptersAddresses */ #include #endif #ifdef HAVE_IFADDRS_TO_SMARTLIST #include #include #endif #ifdef HAVE_IFCONF_TO_SMARTLIST #ifdef HAVE_SYS_IOCTL_H #include #endif #include #endif #include "or.h" #include "address.h" #include "test.h" /** Return 1 iff sockaddr1 and sockaddr2 represent * the same IP address and port combination. Otherwise, return 0. */ static uint8_t sockaddr_in_are_equal(struct sockaddr_in *sockaddr1, struct sockaddr_in *sockaddr2) { return ((sockaddr1->sin_family == sockaddr2->sin_family) && (sockaddr1->sin_port == sockaddr2->sin_port) && (sockaddr1->sin_addr.s_addr == sockaddr2->sin_addr.s_addr)); } /** Return 1 iff sockaddr1 and sockaddr2 represent * the same IP address and port combination. Otherwise, return 0. */ static uint8_t sockaddr_in6_are_equal(struct sockaddr_in6 *sockaddr1, struct sockaddr_in6 *sockaddr2) { return ((sockaddr1->sin6_family == sockaddr2->sin6_family) && (sockaddr1->sin6_port == sockaddr2->sin6_port) && (tor_memeq(sockaddr1->sin6_addr.s6_addr, sockaddr2->sin6_addr.s6_addr,16))); } /** Create a sockaddr_in structure from IP address string ip_str. * * If out is not NULL, write the result * to the memory address in out. Otherwise, allocate the memory * for result. On success, return pointer to result. Otherwise, return * NULL. */ static struct sockaddr_in * sockaddr_in_from_string(const char *ip_str, struct sockaddr_in *out) { // [FIXME: add some error checking?] if (!out) out = tor_malloc_zero(sizeof(struct sockaddr_in)); out->sin_family = AF_INET; out->sin_port = 0; tor_inet_pton(AF_INET,ip_str,&(out->sin_addr)); return out; } /** Return 1 iff smartlist contains a tor_addr_t structure * that is an IPv4 or IPv6 localhost address. Otherwise, return 0. */ static int smartlist_contains_localhost_tor_addr(smartlist_t *smartlist) { SMARTLIST_FOREACH_BEGIN(smartlist, tor_addr_t *, tor_addr) { if (tor_addr_is_loopback(tor_addr)) { return 1; } } SMARTLIST_FOREACH_END(tor_addr); return 0; } /** Return 1 iff smartlist contains a tor_addr_t structure * that is an IPv4 or IPv6 multicast address. Otherwise, return 0. */ static int smartlist_contains_multicast_tor_addr(smartlist_t *smartlist) { SMARTLIST_FOREACH_BEGIN(smartlist, tor_addr_t *, tor_addr) { if (tor_addr_is_multicast(tor_addr)) { return 1; } } SMARTLIST_FOREACH_END(tor_addr); return 0; } /** Return 1 iff smartlist contains a tor_addr_t structure * that is an IPv4 or IPv6 internal address. Otherwise, return 0. */ static int smartlist_contains_internal_tor_addr(smartlist_t *smartlist) { SMARTLIST_FOREACH_BEGIN(smartlist, tor_addr_t *, tor_addr) { if (tor_addr_is_internal(tor_addr, 0)) { return 1; } } SMARTLIST_FOREACH_END(tor_addr); return 0; } /** Return 1 iff smartlist contains a tor_addr_t structure * that is an IPv4 address. Otherwise, return 0. */ static int smartlist_contains_ipv4_tor_addr(smartlist_t *smartlist) { SMARTLIST_FOREACH_BEGIN(smartlist, tor_addr_t *, tor_addr) { if (tor_addr_is_v4(tor_addr)) { return 1; } } SMARTLIST_FOREACH_END(tor_addr); return 0; } /** Return 1 iff smartlist contains a tor_addr_t structure * that is an IPv6 address. Otherwise, return 0. */ static int smartlist_contains_ipv6_tor_addr(smartlist_t *smartlist) { SMARTLIST_FOREACH_BEGIN(smartlist, tor_addr_t *, tor_addr) { /* Since there's no tor_addr_is_v6, assume all non-v4s are v6 */ if (!tor_addr_is_v4(tor_addr)) { return 1; } } SMARTLIST_FOREACH_END(tor_addr); return 0; } #ifdef HAVE_IFADDRS_TO_SMARTLIST static void test_address_ifaddrs_to_smartlist(void *arg) { struct ifaddrs *ifa = NULL; struct ifaddrs *ifa_ipv4 = NULL; struct ifaddrs *ifa_ipv6 = NULL; struct sockaddr_in *ipv4_sockaddr_local = NULL; struct sockaddr_in *netmask_slash8 = NULL; struct sockaddr_in *ipv4_sockaddr_remote = NULL; struct sockaddr_in6 *ipv6_sockaddr = NULL; smartlist_t *smartlist = NULL; tor_addr_t *tor_addr = NULL; struct sockaddr *sockaddr_to_check = NULL; socklen_t addr_len; (void)arg; netmask_slash8 = sockaddr_in_from_string("255.0.0.0",NULL); ipv4_sockaddr_local = sockaddr_in_from_string("127.0.0.1",NULL); ipv4_sockaddr_remote = sockaddr_in_from_string("128.52.160.20",NULL); ipv6_sockaddr = tor_malloc(sizeof(struct sockaddr_in6)); ipv6_sockaddr->sin6_family = AF_INET6; ipv6_sockaddr->sin6_port = 0; tor_inet_pton(AF_INET6, "2001:db8:8714:3a90::12", &(ipv6_sockaddr->sin6_addr)); ifa = tor_malloc(sizeof(struct ifaddrs)); ifa_ipv4 = tor_malloc(sizeof(struct ifaddrs)); ifa_ipv6 = tor_malloc(sizeof(struct ifaddrs)); ifa->ifa_next = ifa_ipv4; ifa->ifa_name = tor_strdup("eth0"); ifa->ifa_flags = IFF_UP | IFF_RUNNING; ifa->ifa_addr = (struct sockaddr *)ipv4_sockaddr_local; ifa->ifa_netmask = (struct sockaddr *)netmask_slash8; ifa->ifa_dstaddr = NULL; ifa->ifa_data = NULL; ifa_ipv4->ifa_next = ifa_ipv6; ifa_ipv4->ifa_name = tor_strdup("eth1"); ifa_ipv4->ifa_flags = IFF_UP | IFF_RUNNING; ifa_ipv4->ifa_addr = (struct sockaddr *)ipv4_sockaddr_remote; ifa_ipv4->ifa_netmask = (struct sockaddr *)netmask_slash8; ifa_ipv4->ifa_dstaddr = NULL; ifa_ipv4->ifa_data = NULL; ifa_ipv6->ifa_next = NULL; ifa_ipv6->ifa_name = tor_strdup("eth2"); ifa_ipv6->ifa_flags = IFF_UP | IFF_RUNNING; ifa_ipv6->ifa_addr = (struct sockaddr *)ipv6_sockaddr; ifa_ipv6->ifa_netmask = NULL; ifa_ipv6->ifa_dstaddr = NULL; ifa_ipv6->ifa_data = NULL; smartlist = ifaddrs_to_smartlist(ifa); tt_assert(smartlist); tt_assert(smartlist_len(smartlist) == 3); sockaddr_to_check = tor_malloc(sizeof(struct sockaddr_in6)); tor_addr = smartlist_get(smartlist,0); addr_len = tor_addr_to_sockaddr(tor_addr,0,sockaddr_to_check, sizeof(struct sockaddr_in)); tt_int_op(addr_len,==,sizeof(struct sockaddr_in)); tt_assert(sockaddr_in_are_equal((struct sockaddr_in *)sockaddr_to_check, ipv4_sockaddr_local)); tor_addr = smartlist_get(smartlist,1); addr_len = tor_addr_to_sockaddr(tor_addr,0,sockaddr_to_check, sizeof(struct sockaddr_in)); tt_int_op(addr_len,==,sizeof(struct sockaddr_in)); tt_assert(sockaddr_in_are_equal((struct sockaddr_in *)sockaddr_to_check, ipv4_sockaddr_remote)); tor_addr = smartlist_get(smartlist,2); addr_len = tor_addr_to_sockaddr(tor_addr,0,sockaddr_to_check, sizeof(struct sockaddr_in6)); tt_int_op(addr_len,==,sizeof(struct sockaddr_in6)); tt_assert(sockaddr_in6_are_equal((struct sockaddr_in6*)sockaddr_to_check, ipv6_sockaddr)); done: tor_free(netmask_slash8); tor_free(ipv4_sockaddr_local); tor_free(ipv4_sockaddr_remote); tor_free(ipv6_sockaddr); tor_free(ifa->ifa_name); tor_free(ifa_ipv4->ifa_name); tor_free(ifa_ipv6->ifa_name); tor_free(ifa); tor_free(ifa_ipv4); tor_free(ifa_ipv6); tor_free(sockaddr_to_check); if (smartlist) { SMARTLIST_FOREACH(smartlist, tor_addr_t *, t, tor_free(t)); smartlist_free(smartlist); } return; } static void test_address_get_if_addrs_ifaddrs(void *arg) { smartlist_t *results = NULL; (void)arg; results = get_interface_addresses_ifaddrs(LOG_ERR); tt_int_op(smartlist_len(results),>=,1); tt_assert(smartlist_contains_localhost_tor_addr(results)); done: SMARTLIST_FOREACH(results, tor_addr_t *, t, tor_free(t)); smartlist_free(results); return; } #endif #ifdef HAVE_IP_ADAPTER_TO_SMARTLIST static void test_address_get_if_addrs_win32(void *arg) { smartlist_t *results = NULL; (void)arg; results = get_interface_addresses_win32(LOG_ERR); tt_int_op(smartlist_len(results),>=,1); tt_assert(smartlist_contains_localhost_tor_addr(results)); done: SMARTLIST_FOREACH(results, tor_addr_t *, t, tor_free(t)); tor_free(results); return; } static void test_address_ip_adapter_addresses_to_smartlist(void *arg) { IP_ADAPTER_ADDRESSES *addrs1; IP_ADAPTER_ADDRESSES *addrs2; IP_ADAPTER_UNICAST_ADDRESS *unicast11; IP_ADAPTER_UNICAST_ADDRESS *unicast12; IP_ADAPTER_UNICAST_ADDRESS *unicast21; smartlist_t *result = NULL; struct sockaddr_in *sockaddr_test1; struct sockaddr_in *sockaddr_test2; struct sockaddr_in *sockaddr_localhost; struct sockaddr_in *sockaddr_to_check; tor_addr_t *tor_addr; (void)arg; (void)sockaddr_in6_are_equal; sockaddr_to_check = tor_malloc_zero(sizeof(struct sockaddr_in)); addrs1 = tor_malloc_zero(sizeof(IP_ADAPTER_ADDRESSES)); addrs1->FirstUnicastAddress = unicast11 = tor_malloc_zero(sizeof(IP_ADAPTER_UNICAST_ADDRESS)); sockaddr_test1 = sockaddr_in_from_string("86.59.30.40",NULL); unicast11->Address.lpSockaddr = (LPSOCKADDR)sockaddr_test1; unicast11->Next = unicast12 = tor_malloc_zero(sizeof(IP_ADAPTER_UNICAST_ADDRESS)); sockaddr_test2 = sockaddr_in_from_string("93.95.227.222", NULL); unicast12->Address.lpSockaddr = (LPSOCKADDR)sockaddr_test2; addrs1->Next = addrs2 = tor_malloc_zero(sizeof(IP_ADAPTER_ADDRESSES)); addrs2->FirstUnicastAddress = unicast21 = tor_malloc_zero(sizeof(IP_ADAPTER_UNICAST_ADDRESS)); sockaddr_localhost = sockaddr_in_from_string("127.0.0.1", NULL); unicast21->Address.lpSockaddr = (LPSOCKADDR)sockaddr_localhost; result = ip_adapter_addresses_to_smartlist(addrs1); tt_assert(result); tt_assert(smartlist_len(result) == 3); tor_addr = smartlist_get(result,0); tor_addr_to_sockaddr(tor_addr,0,(struct sockaddr *)sockaddr_to_check, sizeof(struct sockaddr_in)); tt_assert(sockaddr_in_are_equal(sockaddr_test1,sockaddr_to_check)); tor_addr = smartlist_get(result,1); tor_addr_to_sockaddr(tor_addr,0,(struct sockaddr *)sockaddr_to_check, sizeof(struct sockaddr_in)); tt_assert(sockaddr_in_are_equal(sockaddr_test2,sockaddr_to_check)); tor_addr = smartlist_get(result,2); tor_addr_to_sockaddr(tor_addr,0,(struct sockaddr *)sockaddr_to_check, sizeof(struct sockaddr_in)); tt_assert(sockaddr_in_are_equal(sockaddr_localhost,sockaddr_to_check)); done: SMARTLIST_FOREACH(result, tor_addr_t *, t, tor_free(t)); smartlist_free(result); tor_free(addrs1); tor_free(addrs2); tor_free(unicast11->Address.lpSockaddr); tor_free(unicast11); tor_free(unicast12->Address.lpSockaddr); tor_free(unicast12); tor_free(unicast21->Address.lpSockaddr); tor_free(unicast21); tor_free(sockaddr_to_check); return; } #endif #ifdef HAVE_IFCONF_TO_SMARTLIST static void test_address_ifreq_to_smartlist(void *arg) { smartlist_t *results = NULL; const tor_addr_t *tor_addr = NULL; struct sockaddr_in *sockaddr = NULL; struct sockaddr_in *sockaddr_eth1 = NULL; struct sockaddr_in *sockaddr_to_check = NULL; struct ifconf *ifc; struct ifreq *ifr; struct ifreq *ifr_next; socklen_t addr_len; (void)arg; sockaddr_to_check = tor_malloc(sizeof(struct sockaddr_in)); ifr = tor_malloc(sizeof(struct ifreq)); memset(ifr,0,sizeof(struct ifreq)); strlcpy(ifr->ifr_name,"lo",3); sockaddr = (struct sockaddr_in *) &(ifr->ifr_ifru.ifru_addr); sockaddr_in_from_string("127.0.0.1",sockaddr); ifc = tor_malloc(sizeof(struct ifconf)); memset(ifc,0,sizeof(struct ifconf)); ifc->ifc_len = sizeof(struct ifreq); ifc->ifc_ifcu.ifcu_req = ifr; results = ifreq_to_smartlist(ifc->ifc_buf,ifc->ifc_len); tt_int_op(smartlist_len(results),==,1); tor_addr = smartlist_get(results, 0); addr_len = tor_addr_to_sockaddr(tor_addr,0,(struct sockaddr *)sockaddr_to_check, sizeof(struct sockaddr_in)); tt_int_op(addr_len,==,sizeof(struct sockaddr_in)); tt_assert(sockaddr_in_are_equal(sockaddr,sockaddr_to_check)); ifr = tor_realloc(ifr,2*sizeof(struct ifreq)); ifr_next = ifr+1; strlcpy(ifr_next->ifr_name,"eth1",5); ifc->ifc_len = 2*sizeof(struct ifreq); ifc->ifc_ifcu.ifcu_req = ifr; sockaddr = (struct sockaddr_in *) &(ifr->ifr_ifru.ifru_addr); sockaddr_eth1 = (struct sockaddr_in *) &(ifr_next->ifr_ifru.ifru_addr); sockaddr_in_from_string("192.168.10.55",sockaddr_eth1); SMARTLIST_FOREACH(results, tor_addr_t *, t, tor_free(t)); smartlist_free(results); results = ifreq_to_smartlist(ifc->ifc_buf,ifc->ifc_len); tt_int_op(smartlist_len(results),==,2); tor_addr = smartlist_get(results, 0); addr_len = tor_addr_to_sockaddr(tor_addr,0,(struct sockaddr *)sockaddr_to_check, sizeof(struct sockaddr_in)); tt_int_op(addr_len,==,sizeof(struct sockaddr_in)); tt_assert(sockaddr_in_are_equal(sockaddr,sockaddr_to_check)); tor_addr = smartlist_get(results, 1); addr_len = tor_addr_to_sockaddr(tor_addr,0,(struct sockaddr *)sockaddr_to_check, sizeof(struct sockaddr_in)); tt_int_op(addr_len,==,sizeof(struct sockaddr_in)); tt_assert(sockaddr_in_are_equal(sockaddr_eth1,sockaddr_to_check)); done: tor_free(sockaddr_to_check); SMARTLIST_FOREACH(results, tor_addr_t *, t, tor_free(t)); smartlist_free(results); tor_free(ifc); tor_free(ifr); return; } static void test_address_get_if_addrs_ioctl(void *arg) { smartlist_t *result = NULL; (void)arg; result = get_interface_addresses_ioctl(LOG_ERR); tt_assert(result); tt_int_op(smartlist_len(result),>=,1); tt_assert(smartlist_contains_localhost_tor_addr(result)); done: if (result) { SMARTLIST_FOREACH(result, tor_addr_t *, t, tor_free(t)); smartlist_free(result); } return; } #endif #define FAKE_SOCKET_FD (42) static tor_socket_t fake_open_socket(int domain, int type, int protocol) { (void)domain; (void)type; (void)protocol; return FAKE_SOCKET_FD; } static int last_connected_socket_fd = 0; static int connect_retval = 0; static tor_socket_t pretend_to_connect(tor_socket_t socket, const struct sockaddr *address, socklen_t address_len) { (void)address; (void)address_len; last_connected_socket_fd = socket; return connect_retval; } static struct sockaddr *mock_addr = NULL; static int fake_getsockname(tor_socket_t socket, struct sockaddr *address, socklen_t *address_len) { socklen_t bytes_to_copy = 0; (void) socket; if (!mock_addr) return -1; if (mock_addr->sa_family == AF_INET) { bytes_to_copy = sizeof(struct sockaddr_in); } else if (mock_addr->sa_family == AF_INET6) { bytes_to_copy = sizeof(struct sockaddr_in6); } else { return -1; } if (*address_len < bytes_to_copy) { return -1; } memcpy(address,mock_addr,bytes_to_copy); *address_len = bytes_to_copy; return 0; } static void test_address_udp_socket_trick_whitebox(void *arg) { int hack_retval; tor_addr_t *addr_from_hack = tor_malloc_zero(sizeof(tor_addr_t)); struct sockaddr_in6 *mock_addr6; struct sockaddr_in6 *ipv6_to_check = tor_malloc_zero(sizeof(struct sockaddr_in6)); (void)arg; MOCK(tor_open_socket,fake_open_socket); MOCK(tor_connect_socket,pretend_to_connect); MOCK(tor_getsockname,fake_getsockname); mock_addr = tor_malloc_zero(sizeof(struct sockaddr_storage)); sockaddr_in_from_string("23.32.246.118",(struct sockaddr_in *)mock_addr); hack_retval = get_interface_address6_via_udp_socket_hack(LOG_DEBUG, AF_INET, addr_from_hack); tt_int_op(hack_retval,==,0); tt_assert(tor_addr_eq_ipv4h(addr_from_hack, 0x1720f676)); /* Now, lets do an IPv6 case. */ memset(mock_addr,0,sizeof(struct sockaddr_storage)); mock_addr6 = (struct sockaddr_in6 *)mock_addr; mock_addr6->sin6_family = AF_INET6; mock_addr6->sin6_port = 0; tor_inet_pton(AF_INET6,"2001:cdba::3257:9652",&(mock_addr6->sin6_addr)); hack_retval = get_interface_address6_via_udp_socket_hack(LOG_DEBUG, AF_INET6, addr_from_hack); tt_int_op(hack_retval,==,0); tor_addr_to_sockaddr(addr_from_hack,0,(struct sockaddr *)ipv6_to_check, sizeof(struct sockaddr_in6)); tt_assert(sockaddr_in6_are_equal(mock_addr6,ipv6_to_check)); UNMOCK(tor_open_socket); UNMOCK(tor_connect_socket); UNMOCK(tor_getsockname); done: tor_free(ipv6_to_check); tor_free(mock_addr); tor_free(addr_from_hack); return; } static void test_address_udp_socket_trick_blackbox(void *arg) { /* We want get_interface_address6_via_udp_socket_hack() to yield * the same valid address that get_interface_address6() returns. * If the latter is unable to find a valid address, we want * _hack() to fail and return-1. * * Furthermore, we want _hack() never to crash, even if * get_interface_addresses_raw() is returning NULL. */ tor_addr_t addr4; tor_addr_t addr4_to_check; tor_addr_t addr6; tor_addr_t addr6_to_check; int retval, retval_reference; (void)arg; #if 0 retval_reference = get_interface_address6(LOG_DEBUG,AF_INET,&addr4); retval = get_interface_address6_via_udp_socket_hack(LOG_DEBUG, AF_INET, &addr4_to_check); tt_int_op(retval,==,retval_reference); tt_assert( (retval == -1 && retval_reference == -1) || (tor_addr_compare(&addr4,&addr4_to_check,CMP_EXACT) == 0) ); retval_reference = get_interface_address6(LOG_DEBUG,AF_INET6,&addr6); retval = get_interface_address6_via_udp_socket_hack(LOG_DEBUG, AF_INET6, &addr6_to_check); tt_int_op(retval,==,retval_reference); tt_assert( (retval == -1 && retval_reference == -1) || (tor_addr_compare(&addr6,&addr6_to_check,CMP_EXACT) == 0) ); #else /* Both of the blackbox test cases fail horribly if: * * The host has no external addreses. * * There are multiple interfaces with either AF_INET or AF_INET6. * * The last address isn't the one associated with the default route. * * The tests SHOULD be re-enabled when #12377 is fixed correctly, but till * then this fails a lot, in situations we expect failures due to knowing * about the code being broken. */ (void)addr4_to_check; (void)addr6_to_check; (void)addr6; (void) retval_reference; #endif /* When family is neither AF_INET nor AF_INET6, we want _hack to * fail and return -1. */ retval = get_interface_address6_via_udp_socket_hack(LOG_DEBUG, AF_INET+AF_INET6,&addr4); tt_assert(retval == -1); done: return; } static void test_address_get_if_addrs_list_internal(void *arg) { smartlist_t *results = NULL; (void)arg; results = get_interface_address_list(LOG_ERR, 1); tt_assert(results != NULL); /* When the network is down, a system might not have any non-local * non-multicast addresseses, not even internal ones. * Unit tests shouldn't fail because of this. */ tt_int_op(smartlist_len(results),>=,0); tt_assert(!smartlist_contains_localhost_tor_addr(results)); tt_assert(!smartlist_contains_multicast_tor_addr(results)); /* The list may or may not contain internal addresses */ /* Allow unit tests to pass on IPv6-only machines */ if (smartlist_len(results) > 0) { tt_assert(smartlist_contains_ipv4_tor_addr(results) || smartlist_contains_ipv6_tor_addr(results)); } done: free_interface_address_list(results); return; } static void test_address_get_if_addrs_list_no_internal(void *arg) { smartlist_t *results = NULL; (void)arg; results = get_interface_address_list(LOG_ERR, 0); tt_assert(results != NULL); /* Work even on systems with only internal IPv4 addresses */ tt_int_op(smartlist_len(results),>=,0); tt_assert(!smartlist_contains_localhost_tor_addr(results)); tt_assert(!smartlist_contains_multicast_tor_addr(results)); tt_assert(!smartlist_contains_internal_tor_addr(results)); /* if there are any addresses, they must be IPv4 */ if (smartlist_len(results) > 0) { tt_assert(smartlist_contains_ipv4_tor_addr(results)); } tt_assert(!smartlist_contains_ipv6_tor_addr(results)); done: free_interface_address_list(results); return; } static void test_address_get_if_addrs6_list_internal(void *arg) { smartlist_t *results = NULL; (void)arg; results = get_interface_address6_list(LOG_ERR, AF_INET6, 1); tt_assert(results != NULL); /* Work even on systems without IPv6 interfaces */ tt_int_op(smartlist_len(results),>=,0); tt_assert(!smartlist_contains_localhost_tor_addr(results)); tt_assert(!smartlist_contains_multicast_tor_addr(results)); /* The list may or may not contain internal addresses */ /* if there are any addresses, they must be IPv6 */ tt_assert(!smartlist_contains_ipv4_tor_addr(results)); if (smartlist_len(results) > 0) { tt_assert(smartlist_contains_ipv6_tor_addr(results)); } done: free_interface_address6_list(results); return; } static void test_address_get_if_addrs6_list_no_internal(void *arg) { smartlist_t *results = NULL; (void)arg; results = get_interface_address6_list(LOG_ERR, AF_INET6, 0); tt_assert(results != NULL); /* Work even on systems without IPv6 interfaces */ tt_int_op(smartlist_len(results),>=,0); tt_assert(!smartlist_contains_localhost_tor_addr(results)); tt_assert(!smartlist_contains_multicast_tor_addr(results)); tt_assert(!smartlist_contains_internal_tor_addr(results)); tt_assert(!smartlist_contains_ipv4_tor_addr(results)); if (smartlist_len(results) > 0) { tt_assert(smartlist_contains_ipv6_tor_addr(results)); } done: free_interface_address6_list(results); return; } static int called_get_interface_addresses_raw = 0; static smartlist_t * mock_get_interface_addresses_raw_fail(int severity) { (void)severity; called_get_interface_addresses_raw++; return smartlist_new(); } static int called_get_interface_address6_via_udp_socket_hack = 0; static int mock_get_interface_address6_via_udp_socket_hack_fail(int severity, sa_family_t family, tor_addr_t *addr) { (void)severity; (void)family; (void)addr; called_get_interface_address6_via_udp_socket_hack++; return -1; } static void test_address_get_if_addrs_internal_fail(void *arg) { smartlist_t *results1 = NULL, *results2 = NULL; int rv = 0; uint32_t ipv4h_addr = 0; tor_addr_t ipv6_addr; memset(&ipv6_addr, 0, sizeof(tor_addr_t)); (void)arg; MOCK(get_interface_addresses_raw, mock_get_interface_addresses_raw_fail); MOCK(get_interface_address6_via_udp_socket_hack, mock_get_interface_address6_via_udp_socket_hack_fail); results1 = get_interface_address6_list(LOG_ERR, AF_INET6, 1); tt_assert(results1 != NULL); tt_int_op(smartlist_len(results1),==,0); results2 = get_interface_address_list(LOG_ERR, 1); tt_assert(results2 != NULL); tt_int_op(smartlist_len(results2),==,0); rv = get_interface_address6(LOG_ERR, AF_INET6, &ipv6_addr); tt_assert(rv == -1); rv = get_interface_address(LOG_ERR, &ipv4h_addr); tt_assert(rv == -1); done: UNMOCK(get_interface_addresses_raw); UNMOCK(get_interface_address6_via_udp_socket_hack); free_interface_address6_list(results1); free_interface_address6_list(results2); return; } static void test_address_get_if_addrs_no_internal_fail(void *arg) { smartlist_t *results1 = NULL, *results2 = NULL; (void)arg; MOCK(get_interface_addresses_raw, mock_get_interface_addresses_raw_fail); MOCK(get_interface_address6_via_udp_socket_hack, mock_get_interface_address6_via_udp_socket_hack_fail); results1 = get_interface_address6_list(LOG_ERR, AF_INET6, 0); tt_assert(results1 != NULL); tt_int_op(smartlist_len(results1),==,0); results2 = get_interface_address_list(LOG_ERR, 0); tt_assert(results2 != NULL); tt_int_op(smartlist_len(results2),==,0); done: UNMOCK(get_interface_addresses_raw); UNMOCK(get_interface_address6_via_udp_socket_hack); free_interface_address6_list(results1); free_interface_address6_list(results2); return; } static void test_address_get_if_addrs(void *arg) { int rv; uint32_t addr_h = 0; tor_addr_t tor_addr; (void)arg; rv = get_interface_address(LOG_ERR, &addr_h); /* When the network is down, a system might not have any non-local * non-multicast IPv4 addresses, not even internal ones. * Unit tests shouldn't fail because of this. */ if (rv == 0) { tor_addr_from_ipv4h(&tor_addr, addr_h); tt_assert(!tor_addr_is_loopback(&tor_addr)); tt_assert(!tor_addr_is_multicast(&tor_addr)); /* The address may or may not be an internal address */ tt_assert(tor_addr_is_v4(&tor_addr)); } done: return; } static void test_address_get_if_addrs6(void *arg) { int rv; tor_addr_t tor_addr; (void)arg; rv = get_interface_address6(LOG_ERR, AF_INET6, &tor_addr); /* Work even on systems without IPv6 interfaces */ if (rv == 0) { tt_assert(!tor_addr_is_loopback(&tor_addr)); tt_assert(!tor_addr_is_multicast(&tor_addr)); /* The address may or may not be an internal address */ tt_assert(!tor_addr_is_v4(&tor_addr)); } done: return; } #define ADDRESS_TEST(name, flags) \ { #name, test_address_ ## name, flags, NULL, NULL } struct testcase_t address_tests[] = { ADDRESS_TEST(udp_socket_trick_whitebox, TT_FORK), ADDRESS_TEST(udp_socket_trick_blackbox, TT_FORK), ADDRESS_TEST(get_if_addrs_list_internal, 0), ADDRESS_TEST(get_if_addrs_list_no_internal, 0), ADDRESS_TEST(get_if_addrs6_list_internal, 0), ADDRESS_TEST(get_if_addrs6_list_no_internal, 0), ADDRESS_TEST(get_if_addrs_internal_fail, 0), ADDRESS_TEST(get_if_addrs_no_internal_fail, 0), ADDRESS_TEST(get_if_addrs, 0), ADDRESS_TEST(get_if_addrs6, 0), #ifdef HAVE_IFADDRS_TO_SMARTLIST ADDRESS_TEST(get_if_addrs_ifaddrs, TT_FORK), ADDRESS_TEST(ifaddrs_to_smartlist, 0), #endif #ifdef HAVE_IP_ADAPTER_TO_SMARTLIST ADDRESS_TEST(get_if_addrs_win32, TT_FORK), ADDRESS_TEST(ip_adapter_addresses_to_smartlist, 0), #endif #ifdef HAVE_IFCONF_TO_SMARTLIST ADDRESS_TEST(get_if_addrs_ioctl, TT_FORK), ADDRESS_TEST(ifreq_to_smartlist, 0), #endif END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_status.c0000644000175000017500000006427612621363246013731 00000000000000#define STATUS_PRIVATE #define HIBERNATE_PRIVATE #define LOG_PRIVATE #define REPHIST_PRIVATE #include #include #include "or.h" #include "torlog.h" #include "tor_queue.h" #include "status.h" #include "circuitlist.h" #include "config.h" #include "hibernate.h" #include "rephist.h" #include "relay.h" #include "router.h" #include "main.h" #include "nodelist.h" #include "statefile.h" #include "test.h" #define NS_MODULE status #define NS_SUBMODULE count_circuits /* * Test that count_circuits() is correctly counting the number of * global circuits. */ static smartlist_t * mock_global_circuitlist = NULL; NS_DECL(smartlist_t *, circuit_get_global_list, (void)); static void NS(test_main)(void *arg) { /* Choose origin_circuit_t wlog. */ origin_circuit_t *mock_circuit1, *mock_circuit2; int expected_circuits = 2, actual_circuits; (void)arg; mock_circuit1 = tor_malloc_zero(sizeof(origin_circuit_t)); mock_circuit2 = tor_malloc_zero(sizeof(origin_circuit_t)); mock_global_circuitlist = smartlist_new(); smartlist_add(mock_global_circuitlist, TO_CIRCUIT(mock_circuit1)); smartlist_add(mock_global_circuitlist, TO_CIRCUIT(mock_circuit2)); NS_MOCK(circuit_get_global_list); actual_circuits = count_circuits(); tt_assert(expected_circuits == actual_circuits); done: tor_free(mock_circuit1); tor_free(mock_circuit2); smartlist_free(mock_global_circuitlist); mock_global_circuitlist = NULL; NS_UNMOCK(circuit_get_global_list); } static smartlist_t * NS(circuit_get_global_list)(void) { return mock_global_circuitlist; } #undef NS_SUBMODULE #define NS_SUBMODULE secs_to_uptime /* * Test that secs_to_uptime() is converting the number of seconds that * Tor is up for into the appropriate string form containing hours and minutes. */ static void NS(test_main)(void *arg) { const char *expected; char *actual; (void)arg; expected = "0:00 hours"; actual = secs_to_uptime(0); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "0:00 hours"; actual = secs_to_uptime(1); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "0:01 hours"; actual = secs_to_uptime(60); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "0:59 hours"; actual = secs_to_uptime(60 * 59); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "1:00 hours"; actual = secs_to_uptime(60 * 60); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "23:59 hours"; actual = secs_to_uptime(60 * 60 * 23 + 60 * 59); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "1 day 0:00 hours"; actual = secs_to_uptime(60 * 60 * 23 + 60 * 60); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "1 day 0:00 hours"; actual = secs_to_uptime(86400 + 1); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "1 day 0:01 hours"; actual = secs_to_uptime(86400 + 60); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "10 days 0:00 hours"; actual = secs_to_uptime(86400 * 10); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "10 days 0:00 hours"; actual = secs_to_uptime(864000 + 1); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "10 days 0:01 hours"; actual = secs_to_uptime(864000 + 60); tt_str_op(actual, OP_EQ, expected); tor_free(actual); done: if (actual != NULL) tor_free(actual); } #undef NS_SUBMODULE #define NS_SUBMODULE bytes_to_usage /* * Test that bytes_to_usage() is correctly converting the number of bytes that * Tor has read/written into the appropriate string form containing kilobytes, * megabytes, or gigabytes. */ static void NS(test_main)(void *arg) { const char *expected; char *actual; (void)arg; expected = "0 kB"; actual = bytes_to_usage(0); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "0 kB"; actual = bytes_to_usage(1); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "1 kB"; actual = bytes_to_usage(1024); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "1023 kB"; actual = bytes_to_usage((1 << 20) - 1); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "1.00 MB"; actual = bytes_to_usage((1 << 20)); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "1.00 MB"; actual = bytes_to_usage((1 << 20) + 5242); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "1.01 MB"; actual = bytes_to_usage((1 << 20) + 5243); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "1024.00 MB"; actual = bytes_to_usage((1 << 30) - 1); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "1.00 GB"; actual = bytes_to_usage((1 << 30)); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "1.00 GB"; actual = bytes_to_usage((1 << 30) + 5368709); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "1.01 GB"; actual = bytes_to_usage((1 << 30) + 5368710); tt_str_op(actual, OP_EQ, expected); tor_free(actual); expected = "10.00 GB"; actual = bytes_to_usage((U64_LITERAL(1) << 30) * 10L); tt_str_op(actual, OP_EQ, expected); tor_free(actual); done: if (actual != NULL) tor_free(actual); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(log_heartbeat, fails) /* * Tests that log_heartbeat() fails when in the public server mode, * not hibernating, and we couldn't get the current routerinfo. */ NS_DECL(double, tls_get_write_overhead_ratio, (void)); NS_DECL(int, we_are_hibernating, (void)); NS_DECL(int, public_server_mode, (const or_options_t *options)); NS_DECL(const routerinfo_t *, router_get_my_routerinfo, (void)); static void NS(test_main)(void *arg) { int expected, actual; (void)arg; NS_MOCK(tls_get_write_overhead_ratio); NS_MOCK(we_are_hibernating); NS_MOCK(public_server_mode); NS_MOCK(router_get_my_routerinfo); expected = -1; actual = log_heartbeat(0); tt_int_op(actual, OP_EQ, expected); done: NS_UNMOCK(tls_get_write_overhead_ratio); NS_UNMOCK(we_are_hibernating); NS_UNMOCK(public_server_mode); NS_UNMOCK(router_get_my_routerinfo); } static double NS(tls_get_write_overhead_ratio)(void) { return 2.0; } static int NS(we_are_hibernating)(void) { return 0; } static int NS(public_server_mode)(const or_options_t *options) { (void)options; return 1; } static const routerinfo_t * NS(router_get_my_routerinfo)(void) { return NULL; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(log_heartbeat, not_in_consensus) /* * Tests that log_heartbeat() logs appropriately if we are not in the cached * consensus. */ NS_DECL(double, tls_get_write_overhead_ratio, (void)); NS_DECL(int, we_are_hibernating, (void)); NS_DECL(int, public_server_mode, (const or_options_t *options)); NS_DECL(const routerinfo_t *, router_get_my_routerinfo, (void)); NS_DECL(const node_t *, node_get_by_id, (const char *identity_digest)); NS_DECL(void, logv, (int severity, log_domain_mask_t domain, const char *funcname, const char *suffix, const char *format, va_list ap)); NS_DECL(int, server_mode, (const or_options_t *options)); static routerinfo_t *mock_routerinfo; extern int onion_handshakes_requested[MAX_ONION_HANDSHAKE_TYPE+1]; extern int onion_handshakes_assigned[MAX_ONION_HANDSHAKE_TYPE+1]; static void NS(test_main)(void *arg) { int expected, actual; (void)arg; NS_MOCK(tls_get_write_overhead_ratio); NS_MOCK(we_are_hibernating); NS_MOCK(public_server_mode); NS_MOCK(router_get_my_routerinfo); NS_MOCK(node_get_by_id); NS_MOCK(logv); NS_MOCK(server_mode); log_global_min_severity_ = LOG_DEBUG; onion_handshakes_requested[ONION_HANDSHAKE_TYPE_TAP] = 1; onion_handshakes_assigned[ONION_HANDSHAKE_TYPE_TAP] = 1; onion_handshakes_requested[ONION_HANDSHAKE_TYPE_NTOR] = 1; onion_handshakes_assigned[ONION_HANDSHAKE_TYPE_NTOR] = 1; expected = 0; actual = log_heartbeat(0); tt_int_op(actual, OP_EQ, expected); tt_int_op(CALLED(logv), OP_EQ, 5); done: NS_UNMOCK(tls_get_write_overhead_ratio); NS_UNMOCK(we_are_hibernating); NS_UNMOCK(public_server_mode); NS_UNMOCK(router_get_my_routerinfo); NS_UNMOCK(node_get_by_id); NS_UNMOCK(logv); NS_UNMOCK(server_mode); tor_free(mock_routerinfo); } static double NS(tls_get_write_overhead_ratio)(void) { return 1.0; } static int NS(we_are_hibernating)(void) { return 0; } static int NS(public_server_mode)(const or_options_t *options) { (void)options; return 1; } static const routerinfo_t * NS(router_get_my_routerinfo)(void) { mock_routerinfo = tor_malloc(sizeof(routerinfo_t)); return mock_routerinfo; } static const node_t * NS(node_get_by_id)(const char *identity_digest) { (void)identity_digest; return NULL; } static void NS(logv)(int severity, log_domain_mask_t domain, const char *funcname, const char *suffix, const char *format, va_list ap) { switch (CALLED(logv)) { case 0: tt_int_op(severity, OP_EQ, LOG_NOTICE); tt_int_op(domain, OP_EQ, LD_HEARTBEAT); tt_ptr_op(strstr(funcname, "log_heartbeat"), OP_NE, NULL); tt_ptr_op(suffix, OP_EQ, NULL); tt_str_op(format, OP_EQ, "Heartbeat: It seems like we are not in the cached consensus."); break; case 1: tt_int_op(severity, OP_EQ, LOG_NOTICE); tt_int_op(domain, OP_EQ, LD_HEARTBEAT); tt_ptr_op(strstr(funcname, "log_heartbeat"), OP_NE, NULL); tt_ptr_op(suffix, OP_EQ, NULL); tt_str_op(format, OP_EQ, "Heartbeat: Tor's uptime is %s, with %d circuits open. " "I've sent %s and received %s.%s"); tt_str_op(va_arg(ap, char *), OP_EQ, "0:00 hours"); /* uptime */ tt_int_op(va_arg(ap, int), OP_EQ, 0); /* count_circuits() */ tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_sent */ tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_rcvd */ tt_str_op(va_arg(ap, char *), OP_EQ, ""); /* hibernating */ break; case 2: tt_int_op(severity, OP_EQ, LOG_INFO); break; case 3: tt_int_op(severity, OP_EQ, LOG_NOTICE); tt_int_op(domain, OP_EQ, LD_HEARTBEAT); tt_ptr_op(strstr(funcname, "rep_hist_log_circuit_handshake_stats"), OP_NE, NULL); tt_ptr_op(suffix, OP_EQ, NULL); tt_str_op(format, OP_EQ, "Circuit handshake stats since last time: %d/%d TAP, %d/%d NTor."); tt_int_op(va_arg(ap, int), OP_EQ, 1); /* handshakes assigned (TAP) */ tt_int_op(va_arg(ap, int), OP_EQ, 1); /* handshakes requested (TAP) */ tt_int_op(va_arg(ap, int), OP_EQ, 1); /* handshakes assigned (NTOR) */ tt_int_op(va_arg(ap, int), OP_EQ, 1); /* handshakes requested (NTOR) */ break; case 4: tt_int_op(severity, OP_EQ, LOG_NOTICE); tt_int_op(domain, OP_EQ, LD_HEARTBEAT); tt_ptr_op(strstr(funcname, "rep_hist_log_link_protocol_counts"), OP_NE, NULL); break; default: tt_abort_msg("unexpected call to logv()"); // TODO: prettyprint args break; } done: CALLED(logv)++; } static int NS(server_mode)(const or_options_t *options) { (void)options; return 0; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(log_heartbeat, simple) /* * Tests that log_heartbeat() correctly logs heartbeat information * normally. */ NS_DECL(double, tls_get_write_overhead_ratio, (void)); NS_DECL(int, we_are_hibernating, (void)); NS_DECL(int, public_server_mode, (const or_options_t *options)); NS_DECL(long, get_uptime, (void)); NS_DECL(uint64_t, get_bytes_read, (void)); NS_DECL(uint64_t, get_bytes_written, (void)); NS_DECL(void, logv, (int severity, log_domain_mask_t domain, const char *funcname, const char *suffix, const char *format, va_list ap)); NS_DECL(int, server_mode, (const or_options_t *options)); static int NS(n_msgs) = 0; static void NS(test_main)(void *arg) { int expected, actual; (void)arg; NS_MOCK(tls_get_write_overhead_ratio); NS_MOCK(we_are_hibernating); NS_MOCK(public_server_mode); NS_MOCK(get_uptime); NS_MOCK(get_bytes_read); NS_MOCK(get_bytes_written); NS_MOCK(logv); NS_MOCK(server_mode); log_global_min_severity_ = LOG_DEBUG; expected = 0; actual = log_heartbeat(0); tt_int_op(actual, OP_EQ, expected); tt_int_op(NS(n_msgs), OP_EQ, 1); done: NS_UNMOCK(tls_get_write_overhead_ratio); NS_UNMOCK(we_are_hibernating); NS_UNMOCK(public_server_mode); NS_UNMOCK(get_uptime); NS_UNMOCK(get_bytes_read); NS_UNMOCK(get_bytes_written); NS_UNMOCK(logv); NS_UNMOCK(server_mode); } static double NS(tls_get_write_overhead_ratio)(void) { return 1.0; } static int NS(we_are_hibernating)(void) { return 1; } static int NS(public_server_mode)(const or_options_t *options) { (void)options; return 0; } static long NS(get_uptime)(void) { return 0; } static uint64_t NS(get_bytes_read)(void) { return 0; } static uint64_t NS(get_bytes_written)(void) { return 0; } static void NS(logv)(int severity, log_domain_mask_t domain, const char *funcname, const char *suffix, const char *format, va_list ap) { if (severity == LOG_INFO) return; ++NS(n_msgs); tt_int_op(severity, OP_EQ, LOG_NOTICE); tt_int_op(domain, OP_EQ, LD_HEARTBEAT); tt_ptr_op(strstr(funcname, "log_heartbeat"), OP_NE, NULL); tt_ptr_op(suffix, OP_EQ, NULL); tt_str_op(format, OP_EQ, "Heartbeat: Tor's uptime is %s, with %d circuits open. " "I've sent %s and received %s.%s"); tt_str_op(va_arg(ap, char *), OP_EQ, "0:00 hours"); /* uptime */ tt_int_op(va_arg(ap, int), OP_EQ, 0); /* count_circuits() */ tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_sent */ tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_rcvd */ tt_str_op(va_arg(ap, char *), OP_EQ, " We are currently hibernating."); done: ; } static int NS(server_mode)(const or_options_t *options) { (void)options; return 0; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(log_heartbeat, calls_log_accounting) /* * Tests that log_heartbeat() correctly logs heartbeat information * and accounting information when configured. */ NS_DECL(double, tls_get_write_overhead_ratio, (void)); NS_DECL(int, we_are_hibernating, (void)); NS_DECL(int, public_server_mode, (const or_options_t *options)); NS_DECL(long, get_uptime, (void)); NS_DECL(uint64_t, get_bytes_read, (void)); NS_DECL(uint64_t, get_bytes_written, (void)); NS_DECL(void, logv, (int severity, log_domain_mask_t domain, const char *funcname, const char *suffix, const char *format, va_list ap)); NS_DECL(int, server_mode, (const or_options_t *options)); NS_DECL(or_state_t *, get_or_state, (void)); NS_DECL(int, accounting_is_enabled, (const or_options_t *options)); NS_DECL(time_t, accounting_get_end_time, (void)); static or_state_t * NS(mock_state) = NULL; static or_options_t * NS(mock_options) = NULL; static void NS(test_main)(void *arg) { int expected, actual; (void)arg; NS_MOCK(tls_get_write_overhead_ratio); NS_MOCK(we_are_hibernating); NS_MOCK(public_server_mode); NS_MOCK(get_uptime); NS_MOCK(get_bytes_read); NS_MOCK(get_bytes_written); NS_MOCK(logv); NS_MOCK(server_mode); NS_MOCK(get_or_state); NS_MOCK(accounting_is_enabled); NS_MOCK(accounting_get_end_time); log_global_min_severity_ = LOG_DEBUG; expected = 0; actual = log_heartbeat(0); tt_int_op(actual, OP_EQ, expected); tt_int_op(CALLED(logv), OP_EQ, 3); done: NS_UNMOCK(tls_get_write_overhead_ratio); NS_UNMOCK(we_are_hibernating); NS_UNMOCK(public_server_mode); NS_UNMOCK(get_uptime); NS_UNMOCK(get_bytes_read); NS_UNMOCK(get_bytes_written); NS_UNMOCK(logv); NS_UNMOCK(server_mode); NS_UNMOCK(accounting_is_enabled); NS_UNMOCK(accounting_get_end_time); tor_free_(NS(mock_state)); tor_free_(NS(mock_options)); } static double NS(tls_get_write_overhead_ratio)(void) { return 1.0; } static int NS(we_are_hibernating)(void) { return 0; } static int NS(public_server_mode)(const or_options_t *options) { (void)options; return 0; } static long NS(get_uptime)(void) { return 0; } static uint64_t NS(get_bytes_read)(void) { return 0; } static uint64_t NS(get_bytes_written)(void) { return 0; } static void NS(logv)(int severity, log_domain_mask_t domain, const char *funcname, const char *suffix, const char *format, va_list ap) { switch (CALLED(logv)) { case 0: tt_int_op(severity, OP_EQ, LOG_NOTICE); tt_int_op(domain, OP_EQ, LD_HEARTBEAT); tt_ptr_op(strstr(funcname, "log_heartbeat"), OP_NE, NULL); tt_ptr_op(suffix, OP_EQ, NULL); tt_str_op(format, OP_EQ, "Heartbeat: Tor's uptime is %s, with %d circuits open. " "I've sent %s and received %s.%s"); tt_str_op(va_arg(ap, char *), OP_EQ, "0:00 hours"); /* uptime */ tt_int_op(va_arg(ap, int), OP_EQ, 0); /* count_circuits() */ tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_sent */ tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_rcvd */ tt_str_op(va_arg(ap, char *), OP_EQ, ""); /* hibernating */ break; case 1: tt_int_op(severity, OP_EQ, LOG_NOTICE); tt_int_op(domain, OP_EQ, LD_HEARTBEAT); tt_ptr_op(strstr(funcname, "log_accounting"), OP_NE, NULL); tt_ptr_op(suffix, OP_EQ, NULL); tt_str_op(format, OP_EQ, "Heartbeat: Accounting enabled. Sent: %s / %s, Received: %s / %s. " "The current accounting interval ends on %s, in %s."); tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* acc_sent */ tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* acc_max */ tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* acc_rcvd */ tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* acc_max */ /* format_local_iso_time uses local tz, just check mins and secs. */ tt_ptr_op(strstr(va_arg(ap, char *), ":01:00"), OP_NE, NULL); /* end_buf */ tt_str_op(va_arg(ap, char *), OP_EQ, "0:01 hours"); /* remaining */ break; case 2: tt_int_op(severity, OP_EQ, LOG_INFO); break; default: tt_abort_msg("unexpected call to logv()"); // TODO: prettyprint args break; } done: CALLED(logv)++; } static int NS(server_mode)(const or_options_t *options) { (void)options; return 1; } static int NS(accounting_is_enabled)(const or_options_t *options) { (void)options; return 1; } static time_t NS(accounting_get_end_time)(void) { return 60; } static or_state_t * NS(get_or_state)(void) { NS(mock_state) = tor_malloc_zero(sizeof(or_state_t)); NS(mock_state)->AccountingBytesReadInInterval = 0; NS(mock_state)->AccountingBytesWrittenInInterval = 0; return NS(mock_state); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(log_heartbeat, packaged_cell_fullness) /* * Tests that log_heartbeat() correctly logs packaged cell * fullness information. */ NS_DECL(double, tls_get_write_overhead_ratio, (void)); NS_DECL(int, we_are_hibernating, (void)); NS_DECL(int, public_server_mode, (const or_options_t *options)); NS_DECL(long, get_uptime, (void)); NS_DECL(uint64_t, get_bytes_read, (void)); NS_DECL(uint64_t, get_bytes_written, (void)); NS_DECL(void, logv, (int severity, log_domain_mask_t domain, const char *funcname, const char *suffix, const char *format, va_list ap)); NS_DECL(int, server_mode, (const or_options_t *options)); NS_DECL(int, accounting_is_enabled, (const or_options_t *options)); static void NS(test_main)(void *arg) { int expected, actual; (void)arg; NS_MOCK(tls_get_write_overhead_ratio); NS_MOCK(we_are_hibernating); NS_MOCK(public_server_mode); NS_MOCK(get_uptime); NS_MOCK(get_bytes_read); NS_MOCK(get_bytes_written); NS_MOCK(logv); NS_MOCK(server_mode); NS_MOCK(accounting_is_enabled); log_global_min_severity_ = LOG_DEBUG; stats_n_data_bytes_packaged = RELAY_PAYLOAD_SIZE; stats_n_data_cells_packaged = 2; expected = 0; actual = log_heartbeat(0); tt_int_op(actual, OP_EQ, expected); tt_int_op(CALLED(logv), OP_EQ, 2); done: stats_n_data_bytes_packaged = 0; stats_n_data_cells_packaged = 0; NS_UNMOCK(tls_get_write_overhead_ratio); NS_UNMOCK(we_are_hibernating); NS_UNMOCK(public_server_mode); NS_UNMOCK(get_uptime); NS_UNMOCK(get_bytes_read); NS_UNMOCK(get_bytes_written); NS_UNMOCK(logv); NS_UNMOCK(server_mode); NS_UNMOCK(accounting_is_enabled); } static double NS(tls_get_write_overhead_ratio)(void) { return 1.0; } static int NS(we_are_hibernating)(void) { return 0; } static int NS(public_server_mode)(const or_options_t *options) { (void)options; return 0; } static long NS(get_uptime)(void) { return 0; } static uint64_t NS(get_bytes_read)(void) { return 0; } static uint64_t NS(get_bytes_written)(void) { return 0; } static void NS(logv)(int severity, log_domain_mask_t domain, const char *funcname, const char *suffix, const char *format, va_list ap) { switch (CALLED(logv)) { case 0: tt_int_op(severity, OP_EQ, LOG_NOTICE); tt_int_op(domain, OP_EQ, LD_HEARTBEAT); tt_ptr_op(strstr(funcname, "log_heartbeat"), OP_NE, NULL); tt_ptr_op(suffix, OP_EQ, NULL); tt_str_op(format, OP_EQ, "Heartbeat: Tor's uptime is %s, with %d circuits open. " "I've sent %s and received %s.%s"); tt_str_op(va_arg(ap, char *), OP_EQ, "0:00 hours"); /* uptime */ tt_int_op(va_arg(ap, int), OP_EQ, 0); /* count_circuits() */ tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_sent */ tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_rcvd */ tt_str_op(va_arg(ap, char *), OP_EQ, ""); /* hibernating */ break; case 1: tt_int_op(severity, OP_EQ, LOG_NOTICE); tt_int_op(domain, OP_EQ, LD_HEARTBEAT); tt_ptr_op(strstr(funcname, "log_heartbeat"), OP_NE, NULL); tt_ptr_op(suffix, OP_EQ, NULL); tt_str_op(format, OP_EQ, "Average packaged cell fullness: %2.3f%%. " "TLS write overhead: %.f%%"); tt_double_op(fabs(va_arg(ap, double) - 50.0), <=, DBL_EPSILON); tt_double_op(fabs(va_arg(ap, double) - 0.0), <=, DBL_EPSILON); break; default: tt_abort_msg("unexpected call to logv()"); // TODO: prettyprint args break; } done: CALLED(logv)++; } static int NS(server_mode)(const or_options_t *options) { (void)options; return 0; } static int NS(accounting_is_enabled)(const or_options_t *options) { (void)options; return 0; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(log_heartbeat, tls_write_overhead) /* * Tests that log_heartbeat() correctly logs the TLS write overhead information * when the TLS write overhead ratio exceeds 1. */ NS_DECL(double, tls_get_write_overhead_ratio, (void)); NS_DECL(int, we_are_hibernating, (void)); NS_DECL(int, public_server_mode, (const or_options_t *options)); NS_DECL(long, get_uptime, (void)); NS_DECL(uint64_t, get_bytes_read, (void)); NS_DECL(uint64_t, get_bytes_written, (void)); NS_DECL(void, logv, (int severity, log_domain_mask_t domain, const char *funcname, const char *suffix, const char *format, va_list ap)); NS_DECL(int, server_mode, (const or_options_t *options)); NS_DECL(int, accounting_is_enabled, (const or_options_t *options)); static void NS(test_main)(void *arg) { int expected, actual; (void)arg; NS_MOCK(tls_get_write_overhead_ratio); NS_MOCK(we_are_hibernating); NS_MOCK(public_server_mode); NS_MOCK(get_uptime); NS_MOCK(get_bytes_read); NS_MOCK(get_bytes_written); NS_MOCK(logv); NS_MOCK(server_mode); NS_MOCK(accounting_is_enabled); stats_n_data_cells_packaged = 0; log_global_min_severity_ = LOG_DEBUG; expected = 0; actual = log_heartbeat(0); tt_int_op(actual, OP_EQ, expected); tt_int_op(CALLED(logv), OP_EQ, 2); done: NS_UNMOCK(tls_get_write_overhead_ratio); NS_UNMOCK(we_are_hibernating); NS_UNMOCK(public_server_mode); NS_UNMOCK(get_uptime); NS_UNMOCK(get_bytes_read); NS_UNMOCK(get_bytes_written); NS_UNMOCK(logv); NS_UNMOCK(server_mode); NS_UNMOCK(accounting_is_enabled); } static double NS(tls_get_write_overhead_ratio)(void) { return 2.0; } static int NS(we_are_hibernating)(void) { return 0; } static int NS(public_server_mode)(const or_options_t *options) { (void)options; return 0; } static long NS(get_uptime)(void) { return 0; } static uint64_t NS(get_bytes_read)(void) { return 0; } static uint64_t NS(get_bytes_written)(void) { return 0; } static void NS(logv)(int severity, log_domain_mask_t domain, const char *funcname, const char *suffix, const char *format, va_list ap) { switch (CALLED(logv)) { case 0: tt_int_op(severity, OP_EQ, LOG_NOTICE); tt_int_op(domain, OP_EQ, LD_HEARTBEAT); tt_ptr_op(strstr(funcname, "log_heartbeat"), OP_NE, NULL); tt_ptr_op(suffix, OP_EQ, NULL); tt_str_op(format, OP_EQ, "Heartbeat: Tor's uptime is %s, with %d circuits open. " "I've sent %s and received %s.%s"); tt_str_op(va_arg(ap, char *), OP_EQ, "0:00 hours"); /* uptime */ tt_int_op(va_arg(ap, int), OP_EQ, 0); /* count_circuits() */ tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_sent */ tt_str_op(va_arg(ap, char *), OP_EQ, "0 kB"); /* bw_rcvd */ tt_str_op(va_arg(ap, char *), OP_EQ, ""); /* hibernating */ break; case 1: tt_int_op(severity, OP_EQ, LOG_NOTICE); tt_int_op(domain, OP_EQ, LD_HEARTBEAT); tt_ptr_op(strstr(funcname, "log_heartbeat"), OP_NE, NULL); tt_ptr_op(suffix, OP_EQ, NULL); tt_str_op(format, OP_EQ, "Average packaged cell fullness: %2.3f%%. " "TLS write overhead: %.f%%"); tt_int_op(fabs(va_arg(ap, double) - 100.0) <= DBL_EPSILON, OP_EQ, 1); tt_double_op(fabs(va_arg(ap, double) - 100.0), <=, DBL_EPSILON); break; default: tt_abort_msg("unexpected call to logv()"); // TODO: prettyprint args break; } done: CALLED(logv)++; } static int NS(server_mode)(const or_options_t *options) { (void)options; return 0; } static int NS(accounting_is_enabled)(const or_options_t *options) { (void)options; return 0; } #undef NS_SUBMODULE struct testcase_t status_tests[] = { TEST_CASE(count_circuits), TEST_CASE(secs_to_uptime), TEST_CASE(bytes_to_usage), TEST_CASE_ASPECT(log_heartbeat, fails), TEST_CASE_ASPECT(log_heartbeat, simple), TEST_CASE_ASPECT(log_heartbeat, not_in_consensus), TEST_CASE_ASPECT(log_heartbeat, calls_log_accounting), TEST_CASE_ASPECT(log_heartbeat, packaged_cell_fullness), TEST_CASE_ASPECT(log_heartbeat, tls_write_overhead), END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_ntor_cl.c0000644000175000017500000001103712621363246014031 00000000000000/* Copyright (c) 2012-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #include #include #define ONION_NTOR_PRIVATE #include "or.h" #include "util.h" #include "compat.h" #include "crypto.h" #include "crypto_curve25519.h" #include "onion_ntor.h" #define N_ARGS(n) STMT_BEGIN { \ if (argc < (n)) { \ fprintf(stderr, "%s needs %d arguments.\n",argv[1],n); \ return 1; \ } \ } STMT_END #define BASE16(idx, var, n) STMT_BEGIN { \ const char *s = argv[(idx)]; \ if (base16_decode((char*)var, n, s, strlen(s)) < 0 ) { \ fprintf(stderr, "couldn't decode argument %d (%s)\n",idx,s); \ return 1; \ } \ } STMT_END #define INT(idx, var) STMT_BEGIN { \ var = atoi(argv[(idx)]); \ if (var <= 0) { \ fprintf(stderr, "bad integer argument %d (%s)\n",idx,argv[(idx)]); \ } \ } STMT_END static int client1(int argc, char **argv) { /* client1 nodeID B -> msg state */ curve25519_public_key_t B; uint8_t node_id[DIGEST_LEN]; ntor_handshake_state_t *state = NULL; uint8_t msg[NTOR_ONIONSKIN_LEN]; char buf[1024]; N_ARGS(4); BASE16(2, node_id, DIGEST_LEN); BASE16(3, B.public_key, CURVE25519_PUBKEY_LEN); if (onion_skin_ntor_create(node_id, &B, &state, msg)<0) { fprintf(stderr, "handshake failed"); return 2; } base16_encode(buf, sizeof(buf), (const char*)msg, sizeof(msg)); printf("%s\n", buf); base16_encode(buf, sizeof(buf), (void*)state, sizeof(*state)); printf("%s\n", buf); ntor_handshake_state_free(state); return 0; } static int server1(int argc, char **argv) { uint8_t msg_in[NTOR_ONIONSKIN_LEN]; curve25519_keypair_t kp; di_digest256_map_t *keymap=NULL; uint8_t node_id[DIGEST_LEN]; int keybytes; uint8_t msg_out[NTOR_REPLY_LEN]; uint8_t *keys = NULL; char *hexkeys = NULL; int result = 0; char buf[256]; /* server1: b nodeID msg N -> msg keys */ N_ARGS(6); BASE16(2, kp.seckey.secret_key, CURVE25519_SECKEY_LEN); BASE16(3, node_id, DIGEST_LEN); BASE16(4, msg_in, NTOR_ONIONSKIN_LEN); INT(5, keybytes); curve25519_public_key_generate(&kp.pubkey, &kp.seckey); dimap_add_entry(&keymap, kp.pubkey.public_key, &kp); keys = tor_malloc(keybytes); hexkeys = tor_malloc(keybytes*2+1); if (onion_skin_ntor_server_handshake( msg_in, keymap, NULL, node_id, msg_out, keys, (size_t)keybytes)<0) { fprintf(stderr, "handshake failed"); result = 2; goto done; } base16_encode(buf, sizeof(buf), (const char*)msg_out, sizeof(msg_out)); printf("%s\n", buf); base16_encode(hexkeys, keybytes*2+1, (const char*)keys, keybytes); printf("%s\n", hexkeys); done: tor_free(keys); tor_free(hexkeys); return result; } static int client2(int argc, char **argv) { struct ntor_handshake_state_t state; uint8_t msg[NTOR_REPLY_LEN]; int keybytes; uint8_t *keys; char *hexkeys; int result = 0; N_ARGS(5); BASE16(2, (&state), sizeof(state)); BASE16(3, msg, sizeof(msg)); INT(4, keybytes); keys = tor_malloc(keybytes); hexkeys = tor_malloc(keybytes*2+1); if (onion_skin_ntor_client_handshake(&state, msg, keys, keybytes, NULL)<0) { fprintf(stderr, "handshake failed"); result = 2; goto done; } base16_encode(hexkeys, keybytes*2+1, (const char*)keys, keybytes); printf("%s\n", hexkeys); done: tor_free(keys); tor_free(hexkeys); return result; } int main(int argc, char **argv) { /* client1: nodeID B -> msg state server1: b nodeID msg N -> msg keys client2: state msg N -> keys */ if (argc < 2) { fprintf(stderr, "I need arguments. Read source for more info.\n"); return 1; } else if (!strcmp(argv[1], "client1")) { return client1(argc, argv); } else if (!strcmp(argv[1], "server1")) { return server1(argc, argv); } else if (!strcmp(argv[1], "client2")) { return client2(argc, argv); } else { fprintf(stderr, "What's a %s?\n", argv[1]); return 1; } } tor-0.2.7.6/src/test/test_helpers.h0000644000175000017500000000060412621363246014036 00000000000000/* Copyright (c) 2014-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef TOR_TEST_HELPERS_H #define TOR_TEST_HELPERS_H const char *get_yesterday_date_str(void); /* Number of descriptors contained in test_descriptors.txt. */ #define HELPER_NUMBER_OF_DESCRIPTORS 8 void helper_setup_fake_routerlist(void); extern const char TEST_DESCRIPTORS[]; #endif tor-0.2.7.6/src/test/bt_test.py0000755000175000017500000000143112621363246013204 00000000000000# Copyright 2013-2015, The Tor Project, Inc # See LICENSE for licensing information """ bt_test.py This file tests the output from test-bt-cl to make sure it's as expected. Example usage: $ ./src/test/test-bt-cl crash | ./src/test/bt_test.py OK $ ./src/test/test-bt-cl assert | ./src/test/bt_test.py OK """ import sys def matches(lines, funcs): if len(lines) < len(funcs): return False try: for l, f in zip(lines, funcs): l.index(f) except ValueError: return False else: return True FUNCNAMES = "crash oh_what a_tangled_web we_weave main".split() LINES = sys.stdin.readlines() for I in range(len(LINES)): if matches(LINES[I:], FUNCNAMES): print("OK") sys.exit(0) else: print("BAD") sys.exit(1) tor-0.2.7.6/src/test/test_nodelist.c0000644000175000017500000000365612621363246014222 00000000000000/* Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file test_nodelist.c * \brief Unit tests for nodelist related functions. **/ #include "or.h" #include "nodelist.h" #include "test.h" /** Test the case when node_get_by_id() returns NULL, * node_get_verbose_nickname_by_id should return the base 16 encoding * of the id. */ static void test_nodelist_node_get_verbose_nickname_by_id_null_node(void *arg) { char vname[MAX_VERBOSE_NICKNAME_LEN+1]; const char ID[] = "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA" "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA"; (void) arg; /* make sure node_get_by_id returns NULL */ tt_assert(!node_get_by_id(ID)); node_get_verbose_nickname_by_id(ID, vname); tt_str_op(vname,OP_EQ, "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"); done: return; } /** For routers without named flag, get_verbose_nickname should return * "Fingerprint~Nickname" */ static void test_nodelist_node_get_verbose_nickname_not_named(void *arg) { node_t mock_node; routerstatus_t mock_rs; char vname[MAX_VERBOSE_NICKNAME_LEN+1]; (void) arg; memset(&mock_node, 0, sizeof(node_t)); memset(&mock_rs, 0, sizeof(routerstatus_t)); /* verbose nickname should use ~ instead of = for unnamed routers */ strlcpy(mock_rs.nickname, "TestOR", sizeof(mock_rs.nickname)); mock_node.rs = &mock_rs; memcpy(mock_node.identity, "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA" "\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA\xAA", DIGEST_LEN); node_get_verbose_nickname(&mock_node, vname); tt_str_op(vname,OP_EQ, "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA~TestOR"); done: return; } #define NODE(name, flags) \ { #name, test_nodelist_##name, (flags), NULL, NULL } struct testcase_t nodelist_tests[] = { NODE(node_get_verbose_nickname_by_id_null_node, TT_FORK), NODE(node_get_verbose_nickname_not_named, TT_FORK), END_OF_TESTCASES }; tor-0.2.7.6/src/test/test.c0000644000175000017500000012544212631612325012313 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file test.c * \brief Unit tests for many pieces of the lower level Tor modules. **/ #include "orconfig.h" #include #ifdef HAVE_FCNTL_H #include #endif #ifdef _WIN32 /* For mkdir() */ #include #else #include #endif /* These macros pull in declarations for some functions and structures that * are typically file-private. */ #define GEOIP_PRIVATE #define ROUTER_PRIVATE #define CIRCUITSTATS_PRIVATE #define CIRCUITLIST_PRIVATE #define STATEFILE_PRIVATE /* * Linux doesn't provide lround in math.h by default, but mac os does... * It's best just to leave math.h out of the picture entirely. */ //#include long int lround(double x); double fabs(double x); #include "or.h" #include "backtrace.h" #include "buffers.h" #include "circuitlist.h" #include "circuitstats.h" #include "config.h" #include "connection_edge.h" #include "geoip.h" #include "rendcommon.h" #include "test.h" #include "torgzip.h" #include "memarea.h" #include "onion.h" #include "onion_ntor.h" #include "onion_tap.h" #include "policies.h" #include "rephist.h" #include "routerparse.h" #include "statefile.h" #include "crypto_curve25519.h" #include "onion_ntor.h" /** Run unit tests for the onion handshake code. */ static void test_onion_handshake(void *arg) { /* client-side */ crypto_dh_t *c_dh = NULL; char c_buf[TAP_ONIONSKIN_CHALLENGE_LEN]; char c_keys[40]; /* server-side */ char s_buf[TAP_ONIONSKIN_REPLY_LEN]; char s_keys[40]; int i; /* shared */ crypto_pk_t *pk = NULL, *pk2 = NULL; (void)arg; pk = pk_generate(0); pk2 = pk_generate(1); /* client handshake 1. */ memset(c_buf, 0, TAP_ONIONSKIN_CHALLENGE_LEN); tt_assert(! onion_skin_TAP_create(pk, &c_dh, c_buf)); for (i = 1; i <= 3; ++i) { crypto_pk_t *k1, *k2; if (i==1) { /* server handshake: only one key known. */ k1 = pk; k2 = NULL; } else if (i==2) { /* server handshake: try the right key first. */ k1 = pk; k2 = pk2; } else { /* server handshake: try the right key second. */ k1 = pk2; k2 = pk; } memset(s_buf, 0, TAP_ONIONSKIN_REPLY_LEN); memset(s_keys, 0, 40); tt_assert(! onion_skin_TAP_server_handshake(c_buf, k1, k2, s_buf, s_keys, 40)); /* client handshake 2 */ memset(c_keys, 0, 40); tt_assert(! onion_skin_TAP_client_handshake(c_dh, s_buf, c_keys, 40, NULL)); tt_mem_op(c_keys,OP_EQ, s_keys, 40); memset(s_buf, 0, 40); tt_mem_op(c_keys,OP_NE, s_buf, 40); } done: crypto_dh_free(c_dh); crypto_pk_free(pk); crypto_pk_free(pk2); } static void test_bad_onion_handshake(void *arg) { char junk_buf[TAP_ONIONSKIN_CHALLENGE_LEN]; char junk_buf2[TAP_ONIONSKIN_CHALLENGE_LEN]; /* client-side */ crypto_dh_t *c_dh = NULL; char c_buf[TAP_ONIONSKIN_CHALLENGE_LEN]; char c_keys[40]; /* server-side */ char s_buf[TAP_ONIONSKIN_REPLY_LEN]; char s_keys[40]; /* shared */ crypto_pk_t *pk = NULL, *pk2 = NULL; (void)arg; pk = pk_generate(0); pk2 = pk_generate(1); /* Server: Case 1: the encrypted data is degenerate. */ memset(junk_buf, 0, sizeof(junk_buf)); crypto_pk_public_hybrid_encrypt(pk, junk_buf2, TAP_ONIONSKIN_CHALLENGE_LEN, junk_buf, DH_KEY_LEN, PK_PKCS1_OAEP_PADDING, 1); tt_int_op(-1, OP_EQ, onion_skin_TAP_server_handshake(junk_buf2, pk, NULL, s_buf, s_keys, 40)); /* Server: Case 2: the encrypted data is not long enough. */ memset(junk_buf, 0, sizeof(junk_buf)); memset(junk_buf2, 0, sizeof(junk_buf2)); crypto_pk_public_encrypt(pk, junk_buf2, sizeof(junk_buf2), junk_buf, 48, PK_PKCS1_OAEP_PADDING); tt_int_op(-1, OP_EQ, onion_skin_TAP_server_handshake(junk_buf2, pk, NULL, s_buf, s_keys, 40)); /* client handshake 1: do it straight. */ memset(c_buf, 0, TAP_ONIONSKIN_CHALLENGE_LEN); tt_assert(! onion_skin_TAP_create(pk, &c_dh, c_buf)); /* Server: Case 3: we just don't have the right key. */ tt_int_op(-1, OP_EQ, onion_skin_TAP_server_handshake(c_buf, pk2, NULL, s_buf, s_keys, 40)); /* Server: Case 4: The RSA-encrypted portion is corrupt. */ c_buf[64] ^= 33; tt_int_op(-1, OP_EQ, onion_skin_TAP_server_handshake(c_buf, pk, NULL, s_buf, s_keys, 40)); c_buf[64] ^= 33; /* (Let the server procede) */ tt_int_op(0, OP_EQ, onion_skin_TAP_server_handshake(c_buf, pk, NULL, s_buf, s_keys, 40)); /* Client: Case 1: The server sent back junk. */ s_buf[64] ^= 33; tt_int_op(-1, OP_EQ, onion_skin_TAP_client_handshake(c_dh, s_buf, c_keys, 40, NULL)); s_buf[64] ^= 33; /* Let the client finish; make sure it can. */ tt_int_op(0, OP_EQ, onion_skin_TAP_client_handshake(c_dh, s_buf, c_keys, 40, NULL)); tt_mem_op(s_keys,OP_EQ, c_keys, 40); /* Client: Case 2: The server sent back a degenerate DH. */ memset(s_buf, 0, sizeof(s_buf)); tt_int_op(-1, OP_EQ, onion_skin_TAP_client_handshake(c_dh, s_buf, c_keys, 40, NULL)); done: crypto_dh_free(c_dh); crypto_pk_free(pk); crypto_pk_free(pk2); } static void test_ntor_handshake(void *arg) { /* client-side */ ntor_handshake_state_t *c_state = NULL; uint8_t c_buf[NTOR_ONIONSKIN_LEN]; uint8_t c_keys[400]; /* server-side */ di_digest256_map_t *s_keymap=NULL; curve25519_keypair_t s_keypair; uint8_t s_buf[NTOR_REPLY_LEN]; uint8_t s_keys[400]; /* shared */ const curve25519_public_key_t *server_pubkey; uint8_t node_id[20] = "abcdefghijklmnopqrst"; (void) arg; /* Make the server some keys */ curve25519_secret_key_generate(&s_keypair.seckey, 0); curve25519_public_key_generate(&s_keypair.pubkey, &s_keypair.seckey); dimap_add_entry(&s_keymap, s_keypair.pubkey.public_key, &s_keypair); server_pubkey = &s_keypair.pubkey; /* client handshake 1. */ memset(c_buf, 0, NTOR_ONIONSKIN_LEN); tt_int_op(0, OP_EQ, onion_skin_ntor_create(node_id, server_pubkey, &c_state, c_buf)); /* server handshake */ memset(s_buf, 0, NTOR_REPLY_LEN); memset(s_keys, 0, 40); tt_int_op(0, OP_EQ, onion_skin_ntor_server_handshake(c_buf, s_keymap, NULL, node_id, s_buf, s_keys, 400)); /* client handshake 2 */ memset(c_keys, 0, 40); tt_int_op(0, OP_EQ, onion_skin_ntor_client_handshake(c_state, s_buf, c_keys, 400, NULL)); tt_mem_op(c_keys,OP_EQ, s_keys, 400); memset(s_buf, 0, 40); tt_mem_op(c_keys,OP_NE, s_buf, 40); done: ntor_handshake_state_free(c_state); dimap_free(s_keymap, NULL); } /** Run unit tests for the onion queues. */ static void test_onion_queues(void *arg) { uint8_t buf1[TAP_ONIONSKIN_CHALLENGE_LEN] = {0}; uint8_t buf2[NTOR_ONIONSKIN_LEN] = {0}; or_circuit_t *circ1 = or_circuit_new(0, NULL); or_circuit_t *circ2 = or_circuit_new(0, NULL); create_cell_t *onionskin = NULL, *create2_ptr; create_cell_t *create1 = tor_malloc_zero(sizeof(create_cell_t)); create_cell_t *create2 = tor_malloc_zero(sizeof(create_cell_t)); (void)arg; create2_ptr = create2; /* remember, but do not free */ create_cell_init(create1, CELL_CREATE, ONION_HANDSHAKE_TYPE_TAP, TAP_ONIONSKIN_CHALLENGE_LEN, buf1); create_cell_init(create2, CELL_CREATE, ONION_HANDSHAKE_TYPE_NTOR, NTOR_ONIONSKIN_LEN, buf2); tt_int_op(0,OP_EQ, onion_num_pending(ONION_HANDSHAKE_TYPE_TAP)); tt_int_op(0,OP_EQ, onion_pending_add(circ1, create1)); create1 = NULL; tt_int_op(1,OP_EQ, onion_num_pending(ONION_HANDSHAKE_TYPE_TAP)); tt_int_op(0,OP_EQ, onion_num_pending(ONION_HANDSHAKE_TYPE_NTOR)); tt_int_op(0,OP_EQ, onion_pending_add(circ2, create2)); create2 = NULL; tt_int_op(1,OP_EQ, onion_num_pending(ONION_HANDSHAKE_TYPE_NTOR)); tt_ptr_op(circ2,OP_EQ, onion_next_task(&onionskin)); tt_int_op(1,OP_EQ, onion_num_pending(ONION_HANDSHAKE_TYPE_TAP)); tt_int_op(0,OP_EQ, onion_num_pending(ONION_HANDSHAKE_TYPE_NTOR)); tt_ptr_op(onionskin, OP_EQ, create2_ptr); clear_pending_onions(); tt_int_op(0,OP_EQ, onion_num_pending(ONION_HANDSHAKE_TYPE_TAP)); tt_int_op(0,OP_EQ, onion_num_pending(ONION_HANDSHAKE_TYPE_NTOR)); done: circuit_free(TO_CIRCUIT(circ1)); circuit_free(TO_CIRCUIT(circ2)); tor_free(create1); tor_free(create2); tor_free(onionskin); } static void test_circuit_timeout(void *arg) { /* Plan: * 1. Generate 1000 samples * 2. Estimate parameters * 3. If difference, repeat * 4. Save state * 5. load state * 6. Estimate parameters * 7. compare differences */ circuit_build_times_t initial; circuit_build_times_t estimate; circuit_build_times_t final; double timeout1, timeout2; or_state_t *state=NULL; int i, runs; double close_ms; (void)arg; circuit_build_times_init(&initial); circuit_build_times_init(&estimate); circuit_build_times_init(&final); state = or_state_new(); circuitbuild_running_unit_tests(); #define timeout0 (build_time_t)(30*1000.0) initial.Xm = 3000; circuit_build_times_initial_alpha(&initial, CBT_DEFAULT_QUANTILE_CUTOFF/100.0, timeout0); close_ms = MAX(circuit_build_times_calculate_timeout(&initial, CBT_DEFAULT_CLOSE_QUANTILE/100.0), CBT_DEFAULT_TIMEOUT_INITIAL_VALUE); do { for (i=0; i < CBT_DEFAULT_MIN_CIRCUITS_TO_OBSERVE; i++) { build_time_t sample = circuit_build_times_generate_sample(&initial,0,1); if (sample > close_ms) { circuit_build_times_add_time(&estimate, CBT_BUILD_ABANDONED); } else { circuit_build_times_add_time(&estimate, sample); } } circuit_build_times_update_alpha(&estimate); timeout1 = circuit_build_times_calculate_timeout(&estimate, CBT_DEFAULT_QUANTILE_CUTOFF/100.0); circuit_build_times_set_timeout(&estimate); log_notice(LD_CIRC, "Timeout1 is %f, Xm is %d", timeout1, estimate.Xm); /* 2% error */ } while (fabs(circuit_build_times_cdf(&initial, timeout0) - circuit_build_times_cdf(&initial, timeout1)) > 0.02); tt_assert(estimate.total_build_times <= CBT_NCIRCUITS_TO_OBSERVE); circuit_build_times_update_state(&estimate, state); circuit_build_times_free_timeouts(&final); tt_assert(circuit_build_times_parse_state(&final, state) == 0); circuit_build_times_update_alpha(&final); timeout2 = circuit_build_times_calculate_timeout(&final, CBT_DEFAULT_QUANTILE_CUTOFF/100.0); circuit_build_times_set_timeout(&final); log_notice(LD_CIRC, "Timeout2 is %f, Xm is %d", timeout2, final.Xm); /* 5% here because some accuracy is lost due to histogram conversion */ tt_assert(fabs(circuit_build_times_cdf(&initial, timeout0) - circuit_build_times_cdf(&initial, timeout2)) < 0.05); for (runs = 0; runs < 50; runs++) { int build_times_idx = 0; int total_build_times = 0; final.close_ms = final.timeout_ms = CBT_DEFAULT_TIMEOUT_INITIAL_VALUE; estimate.close_ms = estimate.timeout_ms = CBT_DEFAULT_TIMEOUT_INITIAL_VALUE; for (i = 0; i < CBT_DEFAULT_RECENT_CIRCUITS*2; i++) { circuit_build_times_network_circ_success(&estimate); circuit_build_times_add_time(&estimate, circuit_build_times_generate_sample(&estimate, 0, CBT_DEFAULT_QUANTILE_CUTOFF/100.0)); circuit_build_times_network_circ_success(&estimate); circuit_build_times_add_time(&final, circuit_build_times_generate_sample(&final, 0, CBT_DEFAULT_QUANTILE_CUTOFF/100.0)); } tt_assert(!circuit_build_times_network_check_changed(&estimate)); tt_assert(!circuit_build_times_network_check_changed(&final)); /* Reset liveness to be non-live */ final.liveness.network_last_live = 0; estimate.liveness.network_last_live = 0; build_times_idx = estimate.build_times_idx; total_build_times = estimate.total_build_times; tt_assert(circuit_build_times_network_check_live(&estimate)); tt_assert(circuit_build_times_network_check_live(&final)); circuit_build_times_count_close(&estimate, 0, (time_t)(approx_time()-estimate.close_ms/1000.0-1)); circuit_build_times_count_close(&final, 0, (time_t)(approx_time()-final.close_ms/1000.0-1)); tt_assert(!circuit_build_times_network_check_live(&estimate)); tt_assert(!circuit_build_times_network_check_live(&final)); log_info(LD_CIRC, "idx: %d %d, tot: %d %d", build_times_idx, estimate.build_times_idx, total_build_times, estimate.total_build_times); /* Check rollback index. Should match top of loop. */ tt_assert(build_times_idx == estimate.build_times_idx); // This can fail if estimate.total_build_times == 1000, because // in that case, rewind actually causes us to lose timeouts if (total_build_times != CBT_NCIRCUITS_TO_OBSERVE) tt_assert(total_build_times == estimate.total_build_times); /* Now simulate that the network has become live and we need * a change */ circuit_build_times_network_is_live(&estimate); circuit_build_times_network_is_live(&final); for (i = 0; i < CBT_DEFAULT_MAX_RECENT_TIMEOUT_COUNT; i++) { circuit_build_times_count_timeout(&estimate, 1); if (i < CBT_DEFAULT_MAX_RECENT_TIMEOUT_COUNT-1) { circuit_build_times_count_timeout(&final, 1); } } tt_assert(estimate.liveness.after_firsthop_idx == 0); tt_assert(final.liveness.after_firsthop_idx == CBT_DEFAULT_MAX_RECENT_TIMEOUT_COUNT-1); tt_assert(circuit_build_times_network_check_live(&estimate)); tt_assert(circuit_build_times_network_check_live(&final)); circuit_build_times_count_timeout(&final, 1); /* Ensure return value for degenerate cases are clamped correctly */ initial.alpha = INT32_MAX; tt_assert(circuit_build_times_calculate_timeout(&initial, .99999999) <= INT32_MAX); initial.alpha = 0; tt_assert(circuit_build_times_calculate_timeout(&initial, .5) <= INT32_MAX); } done: circuit_build_times_free_timeouts(&initial); circuit_build_times_free_timeouts(&estimate); circuit_build_times_free_timeouts(&final); or_state_free(state); } /** Test encoding and parsing of rendezvous service descriptors. */ static void test_rend_fns(void *arg) { rend_service_descriptor_t *generated = NULL, *parsed = NULL; char service_id[DIGEST_LEN]; char service_id_base32[REND_SERVICE_ID_LEN_BASE32+1]; const char *next_desc; smartlist_t *descs = smartlist_new(); char computed_desc_id[DIGEST_LEN]; char parsed_desc_id[DIGEST_LEN]; crypto_pk_t *pk1 = NULL, *pk2 = NULL; time_t now; char *intro_points_encrypted = NULL; size_t intro_points_size; size_t encoded_size; int i; char address1[] = "fooaddress.onion"; char address2[] = "aaaaaaaaaaaaaaaa.onion"; char address3[] = "fooaddress.exit"; char address4[] = "www.torproject.org"; char address5[] = "foo.abcdefghijklmnop.onion"; char address6[] = "foo.bar.abcdefghijklmnop.onion"; char address7[] = ".abcdefghijklmnop.onion"; (void)arg; tt_assert(BAD_HOSTNAME == parse_extended_hostname(address1)); tt_assert(ONION_HOSTNAME == parse_extended_hostname(address2)); tt_str_op(address2,OP_EQ, "aaaaaaaaaaaaaaaa"); tt_assert(EXIT_HOSTNAME == parse_extended_hostname(address3)); tt_assert(NORMAL_HOSTNAME == parse_extended_hostname(address4)); tt_assert(ONION_HOSTNAME == parse_extended_hostname(address5)); tt_str_op(address5,OP_EQ, "abcdefghijklmnop"); tt_assert(ONION_HOSTNAME == parse_extended_hostname(address6)); tt_str_op(address6,OP_EQ, "abcdefghijklmnop"); tt_assert(BAD_HOSTNAME == parse_extended_hostname(address7)); pk1 = pk_generate(0); pk2 = pk_generate(1); generated = tor_malloc_zero(sizeof(rend_service_descriptor_t)); generated->pk = crypto_pk_dup_key(pk1); crypto_pk_get_digest(generated->pk, service_id); base32_encode(service_id_base32, REND_SERVICE_ID_LEN_BASE32+1, service_id, REND_SERVICE_ID_LEN); now = time(NULL); generated->timestamp = now; generated->version = 2; generated->protocols = 42; generated->intro_nodes = smartlist_new(); for (i = 0; i < 3; i++) { rend_intro_point_t *intro = tor_malloc_zero(sizeof(rend_intro_point_t)); crypto_pk_t *okey = pk_generate(2 + i); intro->extend_info = tor_malloc_zero(sizeof(extend_info_t)); intro->extend_info->onion_key = okey; crypto_pk_get_digest(intro->extend_info->onion_key, intro->extend_info->identity_digest); //crypto_rand(info->identity_digest, DIGEST_LEN); /* Would this work? */ intro->extend_info->nickname[0] = '$'; base16_encode(intro->extend_info->nickname + 1, sizeof(intro->extend_info->nickname) - 1, intro->extend_info->identity_digest, DIGEST_LEN); /* Does not cover all IP addresses. */ tor_addr_from_ipv4h(&intro->extend_info->addr, crypto_rand_int(65536)); intro->extend_info->port = 1 + crypto_rand_int(65535); intro->intro_key = crypto_pk_dup_key(pk2); smartlist_add(generated->intro_nodes, intro); } tt_assert(rend_encode_v2_descriptors(descs, generated, now, 0, REND_NO_AUTH, NULL, NULL) > 0); tt_assert(rend_compute_v2_desc_id(computed_desc_id, service_id_base32, NULL, now, 0) == 0); tt_mem_op(((rend_encoded_v2_service_descriptor_t *) smartlist_get(descs, 0))->desc_id, OP_EQ, computed_desc_id, DIGEST_LEN); tt_assert(rend_parse_v2_service_descriptor(&parsed, parsed_desc_id, &intro_points_encrypted, &intro_points_size, &encoded_size, &next_desc, ((rend_encoded_v2_service_descriptor_t *) smartlist_get(descs, 0))->desc_str, 1) == 0); tt_assert(parsed); tt_mem_op(((rend_encoded_v2_service_descriptor_t *) smartlist_get(descs, 0))->desc_id,OP_EQ, parsed_desc_id, DIGEST_LEN); tt_int_op(rend_parse_introduction_points(parsed, intro_points_encrypted, intro_points_size),OP_EQ, 3); tt_assert(!crypto_pk_cmp_keys(generated->pk, parsed->pk)); tt_int_op(parsed->timestamp,OP_EQ, now); tt_int_op(parsed->version,OP_EQ, 2); tt_int_op(parsed->protocols,OP_EQ, 42); tt_int_op(smartlist_len(parsed->intro_nodes),OP_EQ, 3); for (i = 0; i < smartlist_len(parsed->intro_nodes); i++) { rend_intro_point_t *par_intro = smartlist_get(parsed->intro_nodes, i), *gen_intro = smartlist_get(generated->intro_nodes, i); extend_info_t *par_info = par_intro->extend_info; extend_info_t *gen_info = gen_intro->extend_info; tt_assert(!crypto_pk_cmp_keys(gen_info->onion_key, par_info->onion_key)); tt_mem_op(gen_info->identity_digest,OP_EQ, par_info->identity_digest, DIGEST_LEN); tt_str_op(gen_info->nickname,OP_EQ, par_info->nickname); tt_assert(tor_addr_eq(&gen_info->addr, &par_info->addr)); tt_int_op(gen_info->port,OP_EQ, par_info->port); } rend_service_descriptor_free(parsed); rend_service_descriptor_free(generated); parsed = generated = NULL; done: if (descs) { for (i = 0; i < smartlist_len(descs); i++) rend_encoded_v2_service_descriptor_free(smartlist_get(descs, i)); smartlist_free(descs); } if (parsed) rend_service_descriptor_free(parsed); if (generated) rend_service_descriptor_free(generated); if (pk1) crypto_pk_free(pk1); if (pk2) crypto_pk_free(pk2); tor_free(intro_points_encrypted); } /* Record odd numbered fake-IPs using ipv6, even numbered fake-IPs * using ipv4. Since our fake geoip database is the same between * ipv4 and ipv6, we should get the same result no matter which * address family we pick for each IP. */ #define SET_TEST_ADDRESS(i) do { \ if ((i) & 1) { \ SET_TEST_IPV6(i); \ tor_addr_from_in6(&addr, &in6); \ } else { \ tor_addr_from_ipv4h(&addr, (uint32_t) i); \ } \ } while (0) /* Make sure that country ID actually works. */ #define SET_TEST_IPV6(i) \ do { \ set_uint32(in6.s6_addr + 12, htonl((uint32_t) (i))); \ } while (0) #define CHECK_COUNTRY(country, val) do { \ /* test ipv4 country lookup */ \ tt_str_op(country, OP_EQ, \ geoip_get_country_name(geoip_get_country_by_ipv4(val))); \ /* test ipv6 country lookup */ \ SET_TEST_IPV6(val); \ tt_str_op(country, OP_EQ, \ geoip_get_country_name(geoip_get_country_by_ipv6(&in6))); \ } while (0) /** Run unit tests for GeoIP code. */ static void test_geoip(void *arg) { int i, j; time_t now = 1281533250; /* 2010-08-11 13:27:30 UTC */ char *s = NULL, *v = NULL; const char *bridge_stats_1 = "bridge-stats-end 2010-08-12 13:27:30 (86400 s)\n" "bridge-ips zz=24,xy=8\n" "bridge-ip-versions v4=16,v6=16\n" "bridge-ip-transports =24\n", *dirreq_stats_1 = "dirreq-stats-end 2010-08-12 13:27:30 (86400 s)\n" "dirreq-v3-ips ab=8\n" "dirreq-v3-reqs ab=8\n" "dirreq-v3-resp ok=0,not-enough-sigs=0,unavailable=0,not-found=0," "not-modified=0,busy=0\n" "dirreq-v3-direct-dl complete=0,timeout=0,running=0\n" "dirreq-v3-tunneled-dl complete=0,timeout=0,running=0\n", *dirreq_stats_2 = "dirreq-stats-end 2010-08-12 13:27:30 (86400 s)\n" "dirreq-v3-ips \n" "dirreq-v3-reqs \n" "dirreq-v3-resp ok=0,not-enough-sigs=0,unavailable=0,not-found=0," "not-modified=0,busy=0\n" "dirreq-v3-direct-dl complete=0,timeout=0,running=0\n" "dirreq-v3-tunneled-dl complete=0,timeout=0,running=0\n", *dirreq_stats_3 = "dirreq-stats-end 2010-08-12 13:27:30 (86400 s)\n" "dirreq-v3-ips \n" "dirreq-v3-reqs \n" "dirreq-v3-resp ok=8,not-enough-sigs=0,unavailable=0,not-found=0," "not-modified=0,busy=0\n" "dirreq-v3-direct-dl complete=0,timeout=0,running=0\n" "dirreq-v3-tunneled-dl complete=0,timeout=0,running=0\n", *dirreq_stats_4 = "dirreq-stats-end 2010-08-12 13:27:30 (86400 s)\n" "dirreq-v3-ips \n" "dirreq-v3-reqs \n" "dirreq-v3-resp ok=8,not-enough-sigs=0,unavailable=0,not-found=0," "not-modified=0,busy=0\n" "dirreq-v3-direct-dl complete=0,timeout=0,running=0\n" "dirreq-v3-tunneled-dl complete=0,timeout=0,running=4\n", *entry_stats_1 = "entry-stats-end 2010-08-12 13:27:30 (86400 s)\n" "entry-ips ab=8\n", *entry_stats_2 = "entry-stats-end 2010-08-12 13:27:30 (86400 s)\n" "entry-ips \n"; tor_addr_t addr; struct in6_addr in6; /* Populate the DB a bit. Add these in order, since we can't do the final * 'sort' step. These aren't very good IP addresses, but they're perfectly * fine uint32_t values. */ (void)arg; tt_int_op(0,OP_EQ, geoip_parse_entry("10,50,AB", AF_INET)); tt_int_op(0,OP_EQ, geoip_parse_entry("52,90,XY", AF_INET)); tt_int_op(0,OP_EQ, geoip_parse_entry("95,100,AB", AF_INET)); tt_int_op(0,OP_EQ, geoip_parse_entry("\"105\",\"140\",\"ZZ\"", AF_INET)); tt_int_op(0,OP_EQ, geoip_parse_entry("\"150\",\"190\",\"XY\"", AF_INET)); tt_int_op(0,OP_EQ, geoip_parse_entry("\"200\",\"250\",\"AB\"", AF_INET)); /* Populate the IPv6 DB equivalently with fake IPs in the same range */ tt_int_op(0,OP_EQ, geoip_parse_entry("::a,::32,AB", AF_INET6)); tt_int_op(0,OP_EQ, geoip_parse_entry("::34,::5a,XY", AF_INET6)); tt_int_op(0,OP_EQ, geoip_parse_entry("::5f,::64,AB", AF_INET6)); tt_int_op(0,OP_EQ, geoip_parse_entry("::69,::8c,ZZ", AF_INET6)); tt_int_op(0,OP_EQ, geoip_parse_entry("::96,::be,XY", AF_INET6)); tt_int_op(0,OP_EQ, geoip_parse_entry("::c8,::fa,AB", AF_INET6)); /* We should have 4 countries: ??, ab, xy, zz. */ tt_int_op(4,OP_EQ, geoip_get_n_countries()); memset(&in6, 0, sizeof(in6)); CHECK_COUNTRY("??", 3); CHECK_COUNTRY("ab", 32); CHECK_COUNTRY("??", 5); CHECK_COUNTRY("??", 51); CHECK_COUNTRY("xy", 150); CHECK_COUNTRY("xy", 190); CHECK_COUNTRY("??", 2000); tt_int_op(0,OP_EQ, geoip_get_country_by_ipv4(3)); SET_TEST_IPV6(3); tt_int_op(0,OP_EQ, geoip_get_country_by_ipv6(&in6)); get_options_mutable()->BridgeRelay = 1; get_options_mutable()->BridgeRecordUsageByCountry = 1; /* Put 9 observations in AB... */ for (i=32; i < 40; ++i) { SET_TEST_ADDRESS(i); geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now-7200); } SET_TEST_ADDRESS(225); geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now-7200); /* and 3 observations in XY, several times. */ for (j=0; j < 10; ++j) for (i=52; i < 55; ++i) { SET_TEST_ADDRESS(i); geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now-3600); } /* and 17 observations in ZZ... */ for (i=110; i < 127; ++i) { SET_TEST_ADDRESS(i); geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now); } geoip_get_client_history(GEOIP_CLIENT_CONNECT, &s, &v); tt_assert(s); tt_assert(v); tt_str_op("zz=24,ab=16,xy=8",OP_EQ, s); tt_str_op("v4=16,v6=16",OP_EQ, v); tor_free(s); tor_free(v); /* Now clear out all the AB observations. */ geoip_remove_old_clients(now-6000); geoip_get_client_history(GEOIP_CLIENT_CONNECT, &s, &v); tt_assert(s); tt_assert(v); tt_str_op("zz=24,xy=8",OP_EQ, s); tt_str_op("v4=16,v6=16",OP_EQ, v); tor_free(s); tor_free(v); /* Start testing bridge statistics by making sure that we don't output * bridge stats without initializing them. */ s = geoip_format_bridge_stats(now + 86400); tt_assert(!s); /* Initialize stats and generate the bridge-stats history string out of * the connecting clients added above. */ geoip_bridge_stats_init(now); s = geoip_format_bridge_stats(now + 86400); tt_assert(s); tt_str_op(bridge_stats_1,OP_EQ, s); tor_free(s); /* Stop collecting bridge stats and make sure we don't write a history * string anymore. */ geoip_bridge_stats_term(); s = geoip_format_bridge_stats(now + 86400); tt_assert(!s); /* Stop being a bridge and start being a directory mirror that gathers * directory request statistics. */ geoip_bridge_stats_term(); get_options_mutable()->BridgeRelay = 0; get_options_mutable()->BridgeRecordUsageByCountry = 0; get_options_mutable()->DirReqStatistics = 1; /* Start testing dirreq statistics by making sure that we don't collect * dirreq stats without initializing them. */ SET_TEST_ADDRESS(100); geoip_note_client_seen(GEOIP_CLIENT_NETWORKSTATUS, &addr, NULL, now); s = geoip_format_dirreq_stats(now + 86400); tt_assert(!s); /* Initialize stats, note one connecting client, and generate the * dirreq-stats history string. */ geoip_dirreq_stats_init(now); SET_TEST_ADDRESS(100); geoip_note_client_seen(GEOIP_CLIENT_NETWORKSTATUS, &addr, NULL, now); s = geoip_format_dirreq_stats(now + 86400); tt_str_op(dirreq_stats_1,OP_EQ, s); tor_free(s); /* Stop collecting stats, add another connecting client, and ensure we * don't generate a history string. */ geoip_dirreq_stats_term(); SET_TEST_ADDRESS(101); geoip_note_client_seen(GEOIP_CLIENT_NETWORKSTATUS, &addr, NULL, now); s = geoip_format_dirreq_stats(now + 86400); tt_assert(!s); /* Re-start stats, add a connecting client, reset stats, and make sure * that we get an all empty history string. */ geoip_dirreq_stats_init(now); SET_TEST_ADDRESS(100); geoip_note_client_seen(GEOIP_CLIENT_NETWORKSTATUS, &addr, NULL, now); geoip_reset_dirreq_stats(now); s = geoip_format_dirreq_stats(now + 86400); tt_str_op(dirreq_stats_2,OP_EQ, s); tor_free(s); /* Note a successful network status response and make sure that it * appears in the history string. */ geoip_note_ns_response(GEOIP_SUCCESS); s = geoip_format_dirreq_stats(now + 86400); tt_str_op(dirreq_stats_3,OP_EQ, s); tor_free(s); /* Start a tunneled directory request. */ geoip_start_dirreq((uint64_t) 1, 1024, DIRREQ_TUNNELED); s = geoip_format_dirreq_stats(now + 86400); tt_str_op(dirreq_stats_4,OP_EQ, s); tor_free(s); /* Stop collecting directory request statistics and start gathering * entry stats. */ geoip_dirreq_stats_term(); get_options_mutable()->DirReqStatistics = 0; get_options_mutable()->EntryStatistics = 1; /* Start testing entry statistics by making sure that we don't collect * anything without initializing entry stats. */ SET_TEST_ADDRESS(100); geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now); s = geoip_format_entry_stats(now + 86400); tt_assert(!s); /* Initialize stats, note one connecting client, and generate the * entry-stats history string. */ geoip_entry_stats_init(now); SET_TEST_ADDRESS(100); geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now); s = geoip_format_entry_stats(now + 86400); tt_str_op(entry_stats_1,OP_EQ, s); tor_free(s); /* Stop collecting stats, add another connecting client, and ensure we * don't generate a history string. */ geoip_entry_stats_term(); SET_TEST_ADDRESS(101); geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now); s = geoip_format_entry_stats(now + 86400); tt_assert(!s); /* Re-start stats, add a connecting client, reset stats, and make sure * that we get an all empty history string. */ geoip_entry_stats_init(now); SET_TEST_ADDRESS(100); geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now); geoip_reset_entry_stats(now); s = geoip_format_entry_stats(now + 86400); tt_str_op(entry_stats_2,OP_EQ, s); tor_free(s); /* Stop collecting entry statistics. */ geoip_entry_stats_term(); get_options_mutable()->EntryStatistics = 0; done: tor_free(s); tor_free(v); } static void test_geoip_with_pt(void *arg) { time_t now = 1281533250; /* 2010-08-11 13:27:30 UTC */ char *s = NULL; int i; tor_addr_t addr; struct in6_addr in6; (void)arg; get_options_mutable()->BridgeRelay = 1; get_options_mutable()->BridgeRecordUsageByCountry = 1; memset(&in6, 0, sizeof(in6)); /* No clients seen yet. */ s = geoip_get_transport_history(); tor_assert(!s); /* 4 connections without a pluggable transport */ for (i=0; i < 4; ++i) { SET_TEST_ADDRESS(i); geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, NULL, now-7200); } /* 9 connections with "alpha" */ for (i=4; i < 13; ++i) { SET_TEST_ADDRESS(i); geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "alpha", now-7200); } /* one connection with "beta" */ SET_TEST_ADDRESS(13); geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "beta", now-7200); /* 14 connections with "charlie" */ for (i=14; i < 28; ++i) { SET_TEST_ADDRESS(i); geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "charlie", now-7200); } /* 131 connections with "ddr" */ for (i=28; i < 159; ++i) { SET_TEST_ADDRESS(i); geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "ddr", now-7200); } /* 8 connections with "entropy" */ for (i=159; i < 167; ++i) { SET_TEST_ADDRESS(i); geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "entropy", now-7200); } /* 2 connections from the same IP with two different transports. */ SET_TEST_ADDRESS(++i); geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "fire", now-7200); geoip_note_client_seen(GEOIP_CLIENT_CONNECT, &addr, "google", now-7200); /* Test the transport history string. */ s = geoip_get_transport_history(); tor_assert(s); tt_str_op(s,OP_EQ, "=8,alpha=16,beta=8,charlie=16,ddr=136," "entropy=8,fire=8,google=8"); /* Stop collecting entry statistics. */ geoip_entry_stats_term(); get_options_mutable()->EntryStatistics = 0; done: tor_free(s); } #undef SET_TEST_ADDRESS #undef SET_TEST_IPV6 #undef CHECK_COUNTRY /** Run unit tests for stats code. */ static void test_stats(void *arg) { time_t now = 1281533250; /* 2010-08-11 13:27:30 UTC */ char *s = NULL; int i; /* Start with testing exit port statistics; we shouldn't collect exit * stats without initializing them. */ (void)arg; rep_hist_note_exit_stream_opened(80); rep_hist_note_exit_bytes(80, 100, 10000); s = rep_hist_format_exit_stats(now + 86400); tt_assert(!s); /* Initialize stats, note some streams and bytes, and generate history * string. */ rep_hist_exit_stats_init(now); rep_hist_note_exit_stream_opened(80); rep_hist_note_exit_bytes(80, 100, 10000); rep_hist_note_exit_stream_opened(443); rep_hist_note_exit_bytes(443, 100, 10000); rep_hist_note_exit_bytes(443, 100, 10000); s = rep_hist_format_exit_stats(now + 86400); tt_str_op("exit-stats-end 2010-08-12 13:27:30 (86400 s)\n" "exit-kibibytes-written 80=1,443=1,other=0\n" "exit-kibibytes-read 80=10,443=20,other=0\n" "exit-streams-opened 80=4,443=4,other=0\n",OP_EQ, s); tor_free(s); /* Add a few bytes on 10 more ports and ensure that only the top 10 * ports are contained in the history string. */ for (i = 50; i < 60; i++) { rep_hist_note_exit_bytes(i, i, i); rep_hist_note_exit_stream_opened(i); } s = rep_hist_format_exit_stats(now + 86400); tt_str_op("exit-stats-end 2010-08-12 13:27:30 (86400 s)\n" "exit-kibibytes-written 52=1,53=1,54=1,55=1,56=1,57=1,58=1," "59=1,80=1,443=1,other=1\n" "exit-kibibytes-read 52=1,53=1,54=1,55=1,56=1,57=1,58=1," "59=1,80=10,443=20,other=1\n" "exit-streams-opened 52=4,53=4,54=4,55=4,56=4,57=4,58=4," "59=4,80=4,443=4,other=4\n",OP_EQ, s); tor_free(s); /* Stop collecting stats, add some bytes, and ensure we don't generate * a history string. */ rep_hist_exit_stats_term(); rep_hist_note_exit_bytes(80, 100, 10000); s = rep_hist_format_exit_stats(now + 86400); tt_assert(!s); /* Re-start stats, add some bytes, reset stats, and see what history we * get when observing no streams or bytes at all. */ rep_hist_exit_stats_init(now); rep_hist_note_exit_stream_opened(80); rep_hist_note_exit_bytes(80, 100, 10000); rep_hist_reset_exit_stats(now); s = rep_hist_format_exit_stats(now + 86400); tt_str_op("exit-stats-end 2010-08-12 13:27:30 (86400 s)\n" "exit-kibibytes-written other=0\n" "exit-kibibytes-read other=0\n" "exit-streams-opened other=0\n",OP_EQ, s); tor_free(s); /* Continue with testing connection statistics; we shouldn't collect * conn stats without initializing them. */ rep_hist_note_or_conn_bytes(1, 20, 400, now); s = rep_hist_format_conn_stats(now + 86400); tt_assert(!s); /* Initialize stats, note bytes, and generate history string. */ rep_hist_conn_stats_init(now); rep_hist_note_or_conn_bytes(1, 30000, 400000, now); rep_hist_note_or_conn_bytes(1, 30000, 400000, now + 5); rep_hist_note_or_conn_bytes(2, 400000, 30000, now + 10); rep_hist_note_or_conn_bytes(2, 400000, 30000, now + 15); s = rep_hist_format_conn_stats(now + 86400); tt_str_op("conn-bi-direct 2010-08-12 13:27:30 (86400 s) 0,0,1,0\n",OP_EQ, s); tor_free(s); /* Stop collecting stats, add some bytes, and ensure we don't generate * a history string. */ rep_hist_conn_stats_term(); rep_hist_note_or_conn_bytes(2, 400000, 30000, now + 15); s = rep_hist_format_conn_stats(now + 86400); tt_assert(!s); /* Re-start stats, add some bytes, reset stats, and see what history we * get when observing no bytes at all. */ rep_hist_conn_stats_init(now); rep_hist_note_or_conn_bytes(1, 30000, 400000, now); rep_hist_note_or_conn_bytes(1, 30000, 400000, now + 5); rep_hist_note_or_conn_bytes(2, 400000, 30000, now + 10); rep_hist_note_or_conn_bytes(2, 400000, 30000, now + 15); rep_hist_reset_conn_stats(now); s = rep_hist_format_conn_stats(now + 86400); tt_str_op("conn-bi-direct 2010-08-12 13:27:30 (86400 s) 0,0,0,0\n",OP_EQ, s); tor_free(s); /* Continue with testing buffer statistics; we shouldn't collect buffer * stats without initializing them. */ rep_hist_add_buffer_stats(2.0, 2.0, 20); s = rep_hist_format_buffer_stats(now + 86400); tt_assert(!s); /* Initialize stats, add statistics for a single circuit, and generate * the history string. */ rep_hist_buffer_stats_init(now); rep_hist_add_buffer_stats(2.0, 2.0, 20); s = rep_hist_format_buffer_stats(now + 86400); tt_str_op("cell-stats-end 2010-08-12 13:27:30 (86400 s)\n" "cell-processed-cells 20,0,0,0,0,0,0,0,0,0\n" "cell-queued-cells 2.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00," "0.00,0.00\n" "cell-time-in-queue 2,0,0,0,0,0,0,0,0,0\n" "cell-circuits-per-decile 1\n",OP_EQ, s); tor_free(s); /* Add nineteen more circuit statistics to the one that's already in the * history to see that the math works correctly. */ for (i = 21; i < 30; i++) rep_hist_add_buffer_stats(2.0, 2.0, i); for (i = 20; i < 30; i++) rep_hist_add_buffer_stats(3.5, 3.5, i); s = rep_hist_format_buffer_stats(now + 86400); tt_str_op("cell-stats-end 2010-08-12 13:27:30 (86400 s)\n" "cell-processed-cells 29,28,27,26,25,24,23,22,21,20\n" "cell-queued-cells 2.75,2.75,2.75,2.75,2.75,2.75,2.75,2.75," "2.75,2.75\n" "cell-time-in-queue 3,3,3,3,3,3,3,3,3,3\n" "cell-circuits-per-decile 2\n",OP_EQ, s); tor_free(s); /* Stop collecting stats, add statistics for one circuit, and ensure we * don't generate a history string. */ rep_hist_buffer_stats_term(); rep_hist_add_buffer_stats(2.0, 2.0, 20); s = rep_hist_format_buffer_stats(now + 86400); tt_assert(!s); /* Re-start stats, add statistics for one circuit, reset stats, and make * sure that the history has all zeros. */ rep_hist_buffer_stats_init(now); rep_hist_add_buffer_stats(2.0, 2.0, 20); rep_hist_reset_buffer_stats(now); s = rep_hist_format_buffer_stats(now + 86400); tt_str_op("cell-stats-end 2010-08-12 13:27:30 (86400 s)\n" "cell-processed-cells 0,0,0,0,0,0,0,0,0,0\n" "cell-queued-cells 0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00," "0.00,0.00\n" "cell-time-in-queue 0,0,0,0,0,0,0,0,0,0\n" "cell-circuits-per-decile 0\n",OP_EQ, s); done: tor_free(s); } #define ENT(name) \ { #name, test_ ## name , 0, NULL, NULL } #define FORK(name) \ { #name, test_ ## name , TT_FORK, NULL, NULL } static struct testcase_t test_array[] = { ENT(onion_handshake), { "bad_onion_handshake", test_bad_onion_handshake, 0, NULL, NULL }, ENT(onion_queues), { "ntor_handshake", test_ntor_handshake, 0, NULL, NULL }, ENT(circuit_timeout), ENT(rend_fns), ENT(geoip), FORK(geoip_with_pt), FORK(stats), END_OF_TESTCASES }; extern struct testcase_t accounting_tests[]; extern struct testcase_t addr_tests[]; extern struct testcase_t address_tests[]; extern struct testcase_t buffer_tests[]; extern struct testcase_t cell_format_tests[]; extern struct testcase_t cell_queue_tests[]; extern struct testcase_t channel_tests[]; extern struct testcase_t channeltls_tests[]; extern struct testcase_t checkdir_tests[]; extern struct testcase_t circuitlist_tests[]; extern struct testcase_t circuitmux_tests[]; extern struct testcase_t config_tests[]; extern struct testcase_t container_tests[]; extern struct testcase_t controller_tests[]; extern struct testcase_t controller_event_tests[]; extern struct testcase_t crypto_tests[]; extern struct testcase_t dir_tests[]; extern struct testcase_t entryconn_tests[]; extern struct testcase_t entrynodes_tests[]; extern struct testcase_t guardfraction_tests[]; extern struct testcase_t extorport_tests[]; extern struct testcase_t hs_tests[]; extern struct testcase_t introduce_tests[]; extern struct testcase_t keypin_tests[]; extern struct testcase_t link_handshake_tests[]; extern struct testcase_t logging_tests[]; extern struct testcase_t microdesc_tests[]; extern struct testcase_t nodelist_tests[]; extern struct testcase_t oom_tests[]; extern struct testcase_t options_tests[]; extern struct testcase_t policy_tests[]; extern struct testcase_t pt_tests[]; extern struct testcase_t relay_tests[]; extern struct testcase_t relaycell_tests[]; extern struct testcase_t replaycache_tests[]; extern struct testcase_t router_tests[]; extern struct testcase_t routerkeys_tests[]; extern struct testcase_t routerlist_tests[]; extern struct testcase_t routerset_tests[]; extern struct testcase_t scheduler_tests[]; extern struct testcase_t socks_tests[]; extern struct testcase_t status_tests[]; extern struct testcase_t thread_tests[]; extern struct testcase_t util_tests[]; extern struct testcase_t dns_tests[]; struct testgroup_t testgroups[] = { { "", test_array }, { "accounting/", accounting_tests }, { "addr/", addr_tests }, { "address/", address_tests }, { "buffer/", buffer_tests }, { "cellfmt/", cell_format_tests }, { "cellqueue/", cell_queue_tests }, { "channel/", channel_tests }, { "channeltls/", channeltls_tests }, { "checkdir/", checkdir_tests }, { "circuitlist/", circuitlist_tests }, { "circuitmux/", circuitmux_tests }, { "config/", config_tests }, { "container/", container_tests }, { "control/", controller_tests }, { "control/event/", controller_event_tests }, { "crypto/", crypto_tests }, { "dir/", dir_tests }, { "dir/md/", microdesc_tests }, { "entryconn/", entryconn_tests }, { "entrynodes/", entrynodes_tests }, { "guardfraction/", guardfraction_tests }, { "extorport/", extorport_tests }, { "hs/", hs_tests }, { "introduce/", introduce_tests }, { "keypin/", keypin_tests }, { "link-handshake/", link_handshake_tests }, { "nodelist/", nodelist_tests }, { "oom/", oom_tests }, { "options/", options_tests }, { "policy/" , policy_tests }, { "pt/", pt_tests }, { "relay/" , relay_tests }, { "relaycell/", relaycell_tests }, { "replaycache/", replaycache_tests }, { "routerkeys/", routerkeys_tests }, { "routerlist/", routerlist_tests }, { "routerset/" , routerset_tests }, { "scheduler/", scheduler_tests }, { "socks/", socks_tests }, { "status/" , status_tests }, { "util/", util_tests }, { "util/logging/", logging_tests }, { "util/thread/", thread_tests }, { "dns/", dns_tests }, END_OF_GROUPS }; tor-0.2.7.6/src/test/fakechans.h0000644000175000017500000000141012621363246013254 00000000000000 /* Copyright (c) 2014-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef TOR_FAKECHANS_H #define TOR_FAKECHANS_H /** * \file fakechans.h * \brief Declarations for fake channels for test suite use */ void make_fake_cell(cell_t *c); void make_fake_var_cell(var_cell_t *c); channel_t * new_fake_channel(void); void free_fake_channel(channel_t *c); /* Also exposes some a mock used by both test_channel.c and test_relay.c */ void scheduler_channel_has_waiting_cells_mock(channel_t *ch); void scheduler_release_channel_mock(channel_t *ch); /* Query some counters used by the exposed mocks */ int get_mock_scheduler_has_waiting_cells_count(void); int get_mock_scheduler_release_channel_count(void); #endif /* !defined(TOR_FAKECHANS_H) */ tor-0.2.7.6/src/test/test_bt_cl.c0000644000175000017500000000527212621364222013453 00000000000000/* Copyright (c) 2012-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #include #include /* To prevent 'assert' from going away. */ #undef TOR_COVERAGE #include "or.h" #include "util.h" #include "backtrace.h" #include "torlog.h" /* -1: no crash. * 0: crash with a segmentation fault. * 1x: crash with an assertion failure. */ static int crashtype = 0; #ifdef __GNUC__ #define NOINLINE __attribute__((noinline)) #define NORETURN __attribute__((noreturn)) #endif int crash(int x) NOINLINE; int oh_what(int x) NOINLINE; int a_tangled_web(int x) NOINLINE; int we_weave(int x) NOINLINE; static void abort_handler(int s) NORETURN; int crash(int x) { if (crashtype == 0) { #if defined(__clang_analyzer__) || defined(__COVERITY__) tor_assert(1 == 0); /* Avert your eyes, clangalyzer and coverity! You * don't need to see us dereference NULL. */ #else *(volatile int *)0 = 0; #endif } else if (crashtype == 1) { tor_assert(1 == 0); } else if (crashtype == -1) { ; } crashtype *= x; return crashtype; } int oh_what(int x) { /* We call crash() twice here, so that the compiler won't try to do a * tail-call optimization. Only the first call will actually happen, but * telling the compiler to maybe do the second call will prevent it from * replacing the first call with a jump. */ return crash(x) + crash(x*2); } int a_tangled_web(int x) { return oh_what(x) * 99 + oh_what(x); } int we_weave(int x) { return a_tangled_web(x) + a_tangled_web(x+1); } static void abort_handler(int s) { (void)s; exit(0); } int main(int argc, char **argv) { log_severity_list_t severity; if (argc < 2) { puts("I take an argument. It should be \"assert\" or \"crash\" or " "\"backtraces\" or \"none\""); return 1; } #if !(defined(HAVE_EXECINFO_H) && defined(HAVE_BACKTRACE) && \ defined(HAVE_BACKTRACE_SYMBOLS_FD) && defined(HAVE_SIGACTION)) puts("Backtrace reporting is not supported on this platform"); return 77; #endif if (!strcmp(argv[1], "assert")) { crashtype = 1; } else if (!strcmp(argv[1], "crash")) { crashtype = 0; } else if (!strcmp(argv[1], "none")) { crashtype = -1; } else if (!strcmp(argv[1], "backtraces")) { return 0; } else { puts("Argument should be \"assert\" or \"crash\" or \"none\""); return 1; } init_logging(1); set_log_severity_config(LOG_WARN, LOG_ERR, &severity); add_stream_log(&severity, "stdout", STDOUT_FILENO); tor_log_update_sigsafe_err_fds(); configure_backtrace_handler(NULL); signal(SIGABRT, abort_handler); printf("%d\n", we_weave(2)); clean_up_backtrace_handler(); return 0; } tor-0.2.7.6/src/test/test_channeltls.c0000644000175000017500000002246012621363246014526 00000000000000/* Copyright (c) 2014-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include #define TOR_CHANNEL_INTERNAL_ #include "or.h" #include "address.h" #include "buffers.h" #include "channel.h" #include "channeltls.h" #include "connection_or.h" #include "config.h" /* For init/free stuff */ #include "scheduler.h" #include "tortls.h" /* Test suite stuff */ #include "test.h" #include "fakechans.h" /* The channeltls unit tests */ static void test_channeltls_create(void *arg); static void test_channeltls_num_bytes_queued(void *arg); static void test_channeltls_overhead_estimate(void *arg); /* Mocks used by channeltls unit tests */ static size_t tlschan_buf_datalen_mock(const buf_t *buf); static or_connection_t * tlschan_connection_or_connect_mock( const tor_addr_t *addr, uint16_t port, const char *digest, channel_tls_t *tlschan); static int tlschan_is_local_addr_mock(const tor_addr_t *addr); /* Fake close method */ static void tlschan_fake_close_method(channel_t *chan); /* Flags controlling behavior of channeltls unit test mocks */ static int tlschan_local = 0; static const buf_t * tlschan_buf_datalen_mock_target = NULL; static size_t tlschan_buf_datalen_mock_size = 0; /* Thing to cast to fake tor_tls_t * to appease assert_connection_ok() */ static int fake_tortls = 0; /* Bleh... */ static void test_channeltls_create(void *arg) { tor_addr_t test_addr; channel_t *ch = NULL; const char test_digest[DIGEST_LEN] = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14 }; (void)arg; /* Set up a fake address to fake-connect to */ test_addr.family = AF_INET; test_addr.addr.in_addr.s_addr = htonl(0x01020304); /* For this test we always want the address to be treated as non-local */ tlschan_local = 0; /* Install is_local_addr() mock */ MOCK(is_local_addr, tlschan_is_local_addr_mock); /* Install mock for connection_or_connect() */ MOCK(connection_or_connect, tlschan_connection_or_connect_mock); /* Try connecting */ ch = channel_tls_connect(&test_addr, 567, test_digest); tt_assert(ch != NULL); done: if (ch) { MOCK(scheduler_release_channel, scheduler_release_channel_mock); /* * Use fake close method that doesn't try to do too much to fake * orconn */ ch->close = tlschan_fake_close_method; channel_mark_for_close(ch); free_fake_channel(ch); UNMOCK(scheduler_release_channel); } UNMOCK(connection_or_connect); UNMOCK(is_local_addr); return; } static void test_channeltls_num_bytes_queued(void *arg) { tor_addr_t test_addr; channel_t *ch = NULL; const char test_digest[DIGEST_LEN] = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14 }; channel_tls_t *tlschan = NULL; size_t len; int fake_outbuf = 0, n; (void)arg; /* Set up a fake address to fake-connect to */ test_addr.family = AF_INET; test_addr.addr.in_addr.s_addr = htonl(0x01020304); /* For this test we always want the address to be treated as non-local */ tlschan_local = 0; /* Install is_local_addr() mock */ MOCK(is_local_addr, tlschan_is_local_addr_mock); /* Install mock for connection_or_connect() */ MOCK(connection_or_connect, tlschan_connection_or_connect_mock); /* Try connecting */ ch = channel_tls_connect(&test_addr, 567, test_digest); tt_assert(ch != NULL); /* * Next, we have to test ch->num_bytes_queued, which is * channel_tls_num_bytes_queued_method. We can't mock * connection_get_outbuf_len() directly because it's static INLINE * in connection.h, but we can mock buf_datalen(). Note that * if bufferevents ever work, this will break with them enabled. */ tt_assert(ch->num_bytes_queued != NULL); tlschan = BASE_CHAN_TO_TLS(ch); tt_assert(tlschan != NULL); if (TO_CONN(tlschan->conn)->outbuf == NULL) { /* We need an outbuf to make sure buf_datalen() gets called */ fake_outbuf = 1; TO_CONN(tlschan->conn)->outbuf = buf_new(); } tlschan_buf_datalen_mock_target = TO_CONN(tlschan->conn)->outbuf; tlschan_buf_datalen_mock_size = 1024; MOCK(buf_datalen, tlschan_buf_datalen_mock); len = ch->num_bytes_queued(ch); tt_int_op(len, ==, tlschan_buf_datalen_mock_size); /* * We also cover num_cells_writeable here; since wide_circ_ids = 0 on * the fake tlschans, cell_network_size returns 512, and so with * tlschan_buf_datalen_mock_size == 1024, we should be able to write * ceil((OR_CONN_HIGHWATER - 1024) / 512) = ceil(OR_CONN_HIGHWATER / 512) * - 2 cells. */ n = ch->num_cells_writeable(ch); tt_int_op(n, ==, CEIL_DIV(OR_CONN_HIGHWATER, 512) - 2); UNMOCK(buf_datalen); tlschan_buf_datalen_mock_target = NULL; tlschan_buf_datalen_mock_size = 0; if (fake_outbuf) { buf_free(TO_CONN(tlschan->conn)->outbuf); TO_CONN(tlschan->conn)->outbuf = NULL; } done: if (ch) { MOCK(scheduler_release_channel, scheduler_release_channel_mock); /* * Use fake close method that doesn't try to do too much to fake * orconn */ ch->close = tlschan_fake_close_method; channel_mark_for_close(ch); free_fake_channel(ch); UNMOCK(scheduler_release_channel); } UNMOCK(connection_or_connect); UNMOCK(is_local_addr); return; } static void test_channeltls_overhead_estimate(void *arg) { tor_addr_t test_addr; channel_t *ch = NULL; const char test_digest[DIGEST_LEN] = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14 }; float r; channel_tls_t *tlschan = NULL; (void)arg; /* Set up a fake address to fake-connect to */ test_addr.family = AF_INET; test_addr.addr.in_addr.s_addr = htonl(0x01020304); /* For this test we always want the address to be treated as non-local */ tlschan_local = 0; /* Install is_local_addr() mock */ MOCK(is_local_addr, tlschan_is_local_addr_mock); /* Install mock for connection_or_connect() */ MOCK(connection_or_connect, tlschan_connection_or_connect_mock); /* Try connecting */ ch = channel_tls_connect(&test_addr, 567, test_digest); tt_assert(ch != NULL); /* First case: silly low ratios should get clamped to 1.0f */ tlschan = BASE_CHAN_TO_TLS(ch); tt_assert(tlschan != NULL); tlschan->conn->bytes_xmitted = 128; tlschan->conn->bytes_xmitted_by_tls = 64; r = ch->get_overhead_estimate(ch); tt_assert(fabsf(r - 1.0f) < 1E-12); tlschan->conn->bytes_xmitted_by_tls = 127; r = ch->get_overhead_estimate(ch); tt_assert(fabsf(r - 1.0f) < 1E-12); /* Now middle of the range */ tlschan->conn->bytes_xmitted_by_tls = 192; r = ch->get_overhead_estimate(ch); tt_assert(fabsf(r - 1.5f) < 1E-12); /* Now above the 2.0f clamp */ tlschan->conn->bytes_xmitted_by_tls = 257; r = ch->get_overhead_estimate(ch); tt_assert(fabsf(r - 2.0f) < 1E-12); tlschan->conn->bytes_xmitted_by_tls = 512; r = ch->get_overhead_estimate(ch); tt_assert(fabsf(r - 2.0f) < 1E-12); done: if (ch) { MOCK(scheduler_release_channel, scheduler_release_channel_mock); /* * Use fake close method that doesn't try to do too much to fake * orconn */ ch->close = tlschan_fake_close_method; channel_mark_for_close(ch); free_fake_channel(ch); UNMOCK(scheduler_release_channel); } UNMOCK(connection_or_connect); UNMOCK(is_local_addr); return; } static size_t tlschan_buf_datalen_mock(const buf_t *buf) { if (buf != NULL && buf == tlschan_buf_datalen_mock_target) { return tlschan_buf_datalen_mock_size; } else { return buf_datalen__real(buf); } } static or_connection_t * tlschan_connection_or_connect_mock(const tor_addr_t *addr, uint16_t port, const char *digest, channel_tls_t *tlschan) { or_connection_t *result = NULL; tt_assert(addr != NULL); tt_assert(port != 0); tt_assert(digest != NULL); tt_assert(tlschan != NULL); /* Make a fake orconn */ result = tor_malloc_zero(sizeof(*result)); result->base_.magic = OR_CONNECTION_MAGIC; result->base_.state = OR_CONN_STATE_OPEN; result->base_.type = CONN_TYPE_OR; result->base_.socket_family = addr->family; result->base_.address = tor_strdup(""); memcpy(&(result->base_.addr), addr, sizeof(tor_addr_t)); result->base_.port = port; memcpy(result->identity_digest, digest, DIGEST_LEN); result->chan = tlschan; memcpy(&(result->real_addr), addr, sizeof(tor_addr_t)); result->tls = (tor_tls_t *)((void *)(&fake_tortls)); done: return result; } static void tlschan_fake_close_method(channel_t *chan) { channel_tls_t *tlschan = NULL; tt_assert(chan != NULL); tt_int_op(chan->magic, ==, TLS_CHAN_MAGIC); tlschan = BASE_CHAN_TO_TLS(chan); tt_assert(tlschan != NULL); /* Just free the fake orconn */ tor_free(tlschan->conn->base_.address); tor_free(tlschan->conn); channel_closed(chan); done: return; } static int tlschan_is_local_addr_mock(const tor_addr_t *addr) { tt_assert(addr != NULL); done: return tlschan_local; } struct testcase_t channeltls_tests[] = { { "create", test_channeltls_create, TT_FORK, NULL, NULL }, { "num_bytes_queued", test_channeltls_num_bytes_queued, TT_FORK, NULL, NULL }, { "overhead_estimate", test_channeltls_overhead_estimate, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test-network.sh0000755000175000017500000000563412621363246014201 00000000000000#! /bin/sh ECHO_N="/bin/echo -n" use_coverage_binary=false until [ -z "$1" ] do case "$1" in --chutney-path) export CHUTNEY_PATH="$2" shift ;; --tor-path) export TOR_DIR="$2" shift ;; --flavor|--flavour|--network-flavor|--network-flavour) export NETWORK_FLAVOUR="$2" shift ;; --delay|--sleep|--bootstrap-time|--time) export BOOTSTRAP_TIME="$2" shift ;; # Environmental variables used by chutney verify performance tests # Send this many bytes per client connection (10 KBytes) --data|--data-bytes|--data-byte|--bytes|--byte) export CHUTNEY_DATA_BYTES="$2" shift ;; # Make this many connections per client (1) # Note: If you create 7 or more connections to a hidden service from # a single client, you'll likely get a verification failure due to # https://trac.torproject.org/projects/tor/ticket/15937 --connections|--connection|--connection-count|--count) export CHUTNEY_CONNECTIONS="$2" shift ;; # Make each client connect to each HS (0) # 0 means a single client connects to each HS # 1 means every client connects to every HS --hs-multi-client|--hs-multi-clients|--hs-client|--hs-clients) export CHUTNEY_HS_MULTI_CLIENT="$2" shift ;; --coverage) use_coverage_binary=true ;; *) echo "Sorry, I don't know what to do with '$1'." exit 2 ;; esac shift done TOR_DIR="${TOR_DIR:-$PWD}" NETWORK_FLAVOUR=${NETWORK_FLAVOUR:-"bridges+hs"} CHUTNEY_NETWORK=networks/$NETWORK_FLAVOUR myname=$(basename $0) [ -n "$CHUTNEY_PATH" ] || { echo "$myname: \$CHUTNEY_PATH not set, trying $TOR_DIR/../chutney" CHUTNEY_PATH="$TOR_DIR/../chutney" } [ -d "$CHUTNEY_PATH" ] && [ -x "$CHUTNEY_PATH/chutney" ] || { echo "$myname: missing 'chutney' in CHUTNEY_PATH ($CHUTNEY_PATH)" echo "$myname: Get chutney: git clone https://git.torproject.org/\ chutney.git" echo "$myname: Set \$CHUTNEY_PATH to a non-standard location: export CHUTNEY_PATH=\`pwd\`/chutney" exit 1 } cd "$CHUTNEY_PATH" # For picking up the right tor binaries. tor_name=tor tor_gencert_name=tor-gencert if test "$use_coverage_binary" = true; then tor_name=tor-cov fi export CHUTNEY_TOR="${TOR_DIR}/src/or/${tor_name}" export CHUTNEY_TOR_GENCERT="${TOR_DIR}/src/tools/${tor_gencert_name}" ./tools/bootstrap-network.sh $NETWORK_FLAVOUR || exit 2 # Sleep some, waiting for the network to bootstrap. # TODO: Add chutney command 'bootstrap-status' and use that instead. BOOTSTRAP_TIME=${BOOTSTRAP_TIME:-35} $ECHO_N "$myname: sleeping for $BOOTSTRAP_TIME seconds" n=$BOOTSTRAP_TIME; while [ $n -gt 0 ]; do sleep 1; n=$(expr $n - 1); $ECHO_N . done; echo "" ./chutney verify $CHUTNEY_NETWORK VERIFY_EXIT_STATUS=$? # work around a bug/feature in make -j2 (or more) # where make hangs if any child processes are still alive ./chutney stop $CHUTNEY_NETWORK exit $VERIFY_EXIT_STATUS tor-0.2.7.6/src/test/slownacl_curve25519.py0000644000175000017500000000517312621363246015200 00000000000000# This is the curve25519 implementation from Matthew Dempsky's "Slownacl" # library. It is in the public domain. # # It isn't constant-time. Don't use it except for testing. # # Nick got the slownacl source from: # https://github.com/mdempsky/dnscurve/tree/master/slownacl __all__ = ['smult_curve25519_base', 'smult_curve25519'] import sys P = 2 ** 255 - 19 A = 486662 def expmod(b, e, m): if e == 0: return 1 t = expmod(b, e // 2, m) ** 2 % m if e & 1: t = (t * b) % m return t def inv(x): return expmod(x, P - 2, P) # Addition and doubling formulas taken from Appendix D of "Curve25519: # new Diffie-Hellman speed records". def add(n,m,d): (xn,zn), (xm,zm), (xd,zd) = n, m, d x = 4 * (xm * xn - zm * zn) ** 2 * zd z = 4 * (xm * zn - zm * xn) ** 2 * xd return (x % P, z % P) def double(n): (xn,zn) = n x = (xn ** 2 - zn ** 2) ** 2 z = 4 * xn * zn * (xn ** 2 + A * xn * zn + zn ** 2) return (x % P, z % P) def curve25519(n, base): one = (base,1) two = double(one) # f(m) evaluates to a tuple containing the mth multiple and the # (m+1)th multiple of base. def f(m): if m == 1: return (one, two) (pm, pm1) = f(m // 2) if (m & 1): return (add(pm, pm1, one), double(pm1)) return (double(pm), add(pm, pm1, one)) ((x,z), _) = f(n) return (x * inv(z)) % P if sys.version < '3': def b2i(c): return ord(c) def i2b(i): return chr(i) def ba2bs(ba): return "".join(ba) else: def b2i(c): return c def i2b(i): return i def ba2bs(ba): return bytes(ba) def unpack(s): if len(s) != 32: raise ValueError('Invalid Curve25519 argument') return sum(b2i(s[i]) << (8 * i) for i in range(32)) def pack(n): return ba2bs([i2b((n >> (8 * i)) & 255) for i in range(32)]) def clamp(n): n &= ~7 n &= ~(128 << 8 * 31) n |= 64 << 8 * 31 return n def smult_curve25519(n, p): n = clamp(unpack(n)) p = unpack(p) return pack(curve25519(n, p)) def smult_curve25519_base(n): n = clamp(unpack(n)) return pack(curve25519(n, 9)) # # This part I'm adding in for compatibility with the curve25519 python # module. -Nick # import os class Private: def __init__(self, secret=None, seed=None): self.private = pack(clamp(unpack(os.urandom(32)))) def get_public(self): return Public(smult_curve25519_base(self.private)) def get_shared_key(self, public, hashfn): return hashfn(smult_curve25519(self.private, public.public)) def serialize(self): return self.private class Public: def __init__(self, public): self.public = public def serialize(self): return self.public tor-0.2.7.6/src/test/test_util.c0000644000175000017500000042454212631612325013353 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #define COMPAT_PRIVATE #define CONTROL_PRIVATE #define UTIL_PRIVATE #include "or.h" #include "config.h" #include "control.h" #include "test.h" #include "memarea.h" #include "util_process.h" #ifdef _WIN32 #include #endif #include #include /* XXXX this is a minimal wrapper to make the unit tests compile with the * changed tor_timegm interface. */ static time_t tor_timegm_wrapper(const struct tm *tm) { time_t t; if (tor_timegm(tm, &t) < 0) return -1; return t; } #define tor_timegm tor_timegm_wrapper static void test_util_read_until_eof_impl(const char *fname, size_t file_len, size_t read_limit) { char *fifo_name = NULL; char *test_str = NULL; char *str = NULL; size_t sz = 9999999; int fd = -1; int r; fifo_name = tor_strdup(get_fname(fname)); test_str = tor_malloc(file_len); crypto_rand(test_str, file_len); r = write_bytes_to_file(fifo_name, test_str, file_len, 1); tt_int_op(r, OP_EQ, 0); fd = open(fifo_name, O_RDONLY|O_BINARY); tt_int_op(fd, OP_GE, 0); str = read_file_to_str_until_eof(fd, read_limit, &sz); tt_assert(str != NULL); if (read_limit < file_len) tt_int_op(sz, OP_EQ, read_limit); else tt_int_op(sz, OP_EQ, file_len); tt_mem_op(test_str, OP_EQ, str, sz); tt_int_op(str[sz], OP_EQ, '\0'); done: unlink(fifo_name); tor_free(fifo_name); tor_free(test_str); tor_free(str); if (fd >= 0) close(fd); } static void test_util_read_file_eof_tiny_limit(void *arg) { (void)arg; // purposely set limit shorter than what we wrote to the FIFO to // test the maximum, and that it puts the NUL in the right spot test_util_read_until_eof_impl("tor_test_fifo_tiny", 5, 4); } static void test_util_read_file_eof_one_loop_a(void *arg) { (void)arg; test_util_read_until_eof_impl("tor_test_fifo_1ka", 1024, 1023); } static void test_util_read_file_eof_one_loop_b(void *arg) { (void)arg; test_util_read_until_eof_impl("tor_test_fifo_1kb", 1024, 1024); } static void test_util_read_file_eof_two_loops(void *arg) { (void)arg; // write more than 1024 bytes to the FIFO to test two passes through // the loop in the method; if the re-alloc size is changed this // should be updated as well. test_util_read_until_eof_impl("tor_test_fifo_2k", 2048, 10000); } static void test_util_read_file_eof_two_loops_b(void *arg) { (void)arg; test_util_read_until_eof_impl("tor_test_fifo_2kb", 2048, 2048); } static void test_util_read_file_eof_zero_bytes(void *arg) { (void)arg; // zero-byte fifo test_util_read_until_eof_impl("tor_test_fifo_empty", 0, 10000); } /* Test the basic expected behaviour for write_chunks_to_file. * NOTE: This will need to be updated if we ever change the tempfile location * or extension */ static void test_util_write_chunks_to_file(void *arg) { char *fname = NULL; char *tempname = NULL; char *str = NULL; int r; struct stat st; /* These should be two different sizes to ensure the data is different * between the data file and the temp file's 'known string' */ int temp_str_len = 1024; int data_str_len = 512; char *data_str = tor_malloc(data_str_len); char *temp_str = tor_malloc(temp_str_len); smartlist_t *chunks = smartlist_new(); sized_chunk_t c = {data_str, data_str_len/2}; sized_chunk_t c2 = {data_str + data_str_len/2, data_str_len/2}; (void)arg; crypto_rand(temp_str, temp_str_len); crypto_rand(data_str, data_str_len); // Ensure it can write multiple chunks smartlist_add(chunks, &c); smartlist_add(chunks, &c2); /* * Check if it writes using a tempfile */ fname = tor_strdup(get_fname("write_chunks_with_tempfile")); tor_asprintf(&tempname, "%s.tmp", fname); // write a known string to a file where the tempfile will be r = write_bytes_to_file(tempname, temp_str, temp_str_len, 1); tt_int_op(r, OP_EQ, 0); // call write_chunks_to_file r = write_chunks_to_file(fname, chunks, 1, 0); tt_int_op(r, OP_EQ, 0); // assert the file has been written (expected size) str = read_file_to_str(fname, RFTS_BIN, &st); tt_assert(str != NULL); tt_u64_op((uint64_t)st.st_size, OP_EQ, data_str_len); tt_mem_op(data_str, OP_EQ, str, data_str_len); tor_free(str); // assert that the tempfile is removed (should not leave artifacts) str = read_file_to_str(tempname, RFTS_BIN|RFTS_IGNORE_MISSING, &st); tt_assert(str == NULL); // Remove old testfile for second test r = unlink(fname); tt_int_op(r, OP_EQ, 0); tor_free(fname); tor_free(tempname); /* * Check if it skips using a tempfile with flags */ fname = tor_strdup(get_fname("write_chunks_with_no_tempfile")); tor_asprintf(&tempname, "%s.tmp", fname); // write a known string to a file where the tempfile will be r = write_bytes_to_file(tempname, temp_str, temp_str_len, 1); tt_int_op(r, OP_EQ, 0); // call write_chunks_to_file with no_tempfile = true r = write_chunks_to_file(fname, chunks, 1, 1); tt_int_op(r, OP_EQ, 0); // assert the file has been written (expected size) str = read_file_to_str(fname, RFTS_BIN, &st); tt_assert(str != NULL); tt_u64_op((uint64_t)st.st_size, OP_EQ, data_str_len); tt_mem_op(data_str, OP_EQ, str, data_str_len); tor_free(str); // assert the tempfile still contains the known string str = read_file_to_str(tempname, RFTS_BIN, &st); tt_assert(str != NULL); tt_u64_op((uint64_t)st.st_size, OP_EQ, temp_str_len); tt_mem_op(temp_str, OP_EQ, str, temp_str_len); done: unlink(fname); unlink(tempname); smartlist_free(chunks); tor_free(fname); tor_free(tempname); tor_free(str); tor_free(data_str); tor_free(temp_str); } #define _TFE(a, b, f) tt_int_op((a).f, OP_EQ, (b).f) /** test the minimum set of struct tm fields needed for a unique epoch value * this is also the set we use to test tor_timegm */ #define TM_EQUAL(a, b) \ TT_STMT_BEGIN \ _TFE(a, b, tm_year); \ _TFE(a, b, tm_mon ); \ _TFE(a, b, tm_mday); \ _TFE(a, b, tm_hour); \ _TFE(a, b, tm_min ); \ _TFE(a, b, tm_sec ); \ TT_STMT_END static void test_util_time(void *arg) { struct timeval start, end; struct tm a_time, b_time; char timestr[128]; time_t t_res; int i; struct timeval tv; /* Test tv_udiff */ (void)arg; start.tv_sec = 5; start.tv_usec = 5000; end.tv_sec = 5; end.tv_usec = 5000; tt_int_op(0L,OP_EQ, tv_udiff(&start, &end)); end.tv_usec = 7000; tt_int_op(2000L,OP_EQ, tv_udiff(&start, &end)); end.tv_sec = 6; tt_int_op(1002000L,OP_EQ, tv_udiff(&start, &end)); end.tv_usec = 0; tt_int_op(995000L,OP_EQ, tv_udiff(&start, &end)); end.tv_sec = 4; tt_int_op(-1005000L,OP_EQ, tv_udiff(&start, &end)); /* Test tor_timegm & tor_gmtime_r */ /* The test values here are confirmed to be correct on a platform * with a working timegm & gmtime_r. */ /* Start with known-zero a_time and b_time. * This avoids passing uninitialised values to TM_EQUAL in a_time. * Zeroing may not be needed for b_time, as long as tor_gmtime_r * never reads the existing values in the structure. * But we really don't want intermittently failing tests. */ memset(&a_time, 0, sizeof(struct tm)); memset(&b_time, 0, sizeof(struct tm)); a_time.tm_year = 2003-1900; a_time.tm_mon = 7; a_time.tm_mday = 30; a_time.tm_hour = 6; a_time.tm_min = 14; a_time.tm_sec = 55; t_res = 1062224095UL; tt_int_op(t_res, OP_EQ, tor_timegm(&a_time)); tor_gmtime_r(&t_res, &b_time); TM_EQUAL(a_time, b_time); a_time.tm_year = 2004-1900; /* Try a leap year, after feb. */ t_res = 1093846495UL; tt_int_op(t_res, OP_EQ, tor_timegm(&a_time)); tor_gmtime_r(&t_res, &b_time); TM_EQUAL(a_time, b_time); a_time.tm_mon = 1; /* Try a leap year, in feb. */ a_time.tm_mday = 10; t_res = 1076393695UL; tt_int_op(t_res, OP_EQ, tor_timegm(&a_time)); tor_gmtime_r(&t_res, &b_time); TM_EQUAL(a_time, b_time); a_time.tm_mon = 0; t_res = 1073715295UL; tt_int_op(t_res, OP_EQ, tor_timegm(&a_time)); tor_gmtime_r(&t_res, &b_time); TM_EQUAL(a_time, b_time); /* Test tor_timegm out of range */ /* year */ /* Wrong year < 1970 */ a_time.tm_year = 1969-1900; tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); a_time.tm_year = -1-1900; tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); #if SIZEOF_INT == 4 || SIZEOF_INT == 8 a_time.tm_year = -1*(1 << 16); tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); /* one of the smallest tm_year values my 64 bit system supports: * t_res = -9223372036854775LL without clamping */ a_time.tm_year = -292275055-1900; tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); a_time.tm_year = INT32_MIN; tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); #endif #if SIZEOF_INT == 8 a_time.tm_year = -1*(1 << 48); tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); /* while unlikely, the system's gmtime(_r) could return * a "correct" retrospective gregorian negative year value, * which I'm pretty sure is: * -1*(2^63)/60/60/24*2000/730485 + 1970 = -292277022657 * 730485 is the number of days in two millenia, including leap days */ a_time.tm_year = -292277022657-1900; tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); a_time.tm_year = INT64_MIN; tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); #endif /* Wrong year >= INT32_MAX - 1900 */ #if SIZEOF_INT == 4 || SIZEOF_INT == 8 a_time.tm_year = INT32_MAX-1900; tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); a_time.tm_year = INT32_MAX; tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); #endif #if SIZEOF_INT == 8 /* one of the largest tm_year values my 64 bit system supports */ a_time.tm_year = 292278994-1900; tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); /* while unlikely, the system's gmtime(_r) could return * a "correct" proleptic gregorian year value, * which I'm pretty sure is: * (2^63-1)/60/60/24*2000/730485 + 1970 = 292277026596 * 730485 is the number of days in two millenia, including leap days */ a_time.tm_year = 292277026596-1900; tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); a_time.tm_year = INT64_MAX-1900; tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); a_time.tm_year = INT64_MAX; tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); #endif /* month */ a_time.tm_year = 2007-1900; /* restore valid year */ a_time.tm_mon = 12; /* Wrong month, it's 0-based */ tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); a_time.tm_mon = -1; /* Wrong month */ tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); /* day */ a_time.tm_mon = 6; /* Try July */ a_time.tm_mday = 32; /* Wrong day */ tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); a_time.tm_mon = 5; /* Try June */ a_time.tm_mday = 31; /* Wrong day */ tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); a_time.tm_year = 2008-1900; /* Try a leap year */ a_time.tm_mon = 1; /* in feb. */ a_time.tm_mday = 30; /* Wrong day */ tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); a_time.tm_year = 2011-1900; /* Try a non-leap year */ a_time.tm_mon = 1; /* in feb. */ a_time.tm_mday = 29; /* Wrong day */ tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); a_time.tm_mday = 0; /* Wrong day, it's 1-based (to be different) */ tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); /* hour */ a_time.tm_mday = 3; /* restore valid month day */ a_time.tm_hour = 24; /* Wrong hour, it's 0-based */ tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); a_time.tm_hour = -1; /* Wrong hour */ tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); /* minute */ a_time.tm_hour = 22; /* restore valid hour */ a_time.tm_min = 60; /* Wrong minute, it's 0-based */ tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); a_time.tm_min = -1; /* Wrong minute */ tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); /* second */ a_time.tm_min = 37; /* restore valid minute */ a_time.tm_sec = 61; /* Wrong second: 0-based with leap seconds */ tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); a_time.tm_sec = -1; /* Wrong second */ tt_int_op((time_t) -1,OP_EQ, tor_timegm(&a_time)); /* Test tor_gmtime_r out of range */ /* time_t < 0 yields a year clamped to 1 or 1970, * depending on whether the implementation of the system gmtime(_r) * sets struct tm (1) or not (1970) */ t_res = -1; tor_gmtime_r(&t_res, &b_time); tt_assert(b_time.tm_year == (1970-1900) || b_time.tm_year == (1969-1900)); if (sizeof(time_t) == 4 || sizeof(time_t) == 8) { t_res = -1*(1 << 30); tor_gmtime_r(&t_res, &b_time); tt_assert(b_time.tm_year == (1970-1900) || b_time.tm_year == (1935-1900)); t_res = INT32_MIN; tor_gmtime_r(&t_res, &b_time); tt_assert(b_time.tm_year == (1970-1900) || b_time.tm_year == (1901-1900)); } #if SIZEOF_TIME_T == 8 { /* one of the smallest tm_year values my 64 bit system supports: * b_time.tm_year == (-292275055LL-1900LL) without clamping */ t_res = -9223372036854775LL; tor_gmtime_r(&t_res, &b_time); tt_assert(b_time.tm_year == (1970-1900) || b_time.tm_year == (1-1900)); /* while unlikely, the system's gmtime(_r) could return * a "correct" retrospective gregorian negative year value, * which I'm pretty sure is: * -1*(2^63)/60/60/24*2000/730485 + 1970 = -292277022657 * 730485 is the number of days in two millenia, including leap days * (int64_t)b_time.tm_year == (-292277022657LL-1900LL) without clamping */ t_res = INT64_MIN; tor_gmtime_r(&t_res, &b_time); tt_assert(b_time.tm_year == (1970-1900) || b_time.tm_year == (1-1900)); } #endif /* time_t >= INT_MAX yields a year clamped to 2037 or 9999, * depending on whether the implementation of the system gmtime(_r) * sets struct tm (9999) or not (2037) */ #if SIZEOF_TIME_T == 4 || SIZEOF_TIME_T == 8 { t_res = 3*(1 << 29); tor_gmtime_r(&t_res, &b_time); tt_assert(b_time.tm_year == (2021-1900)); t_res = INT32_MAX; tor_gmtime_r(&t_res, &b_time); tt_assert(b_time.tm_year == (2037-1900) || b_time.tm_year == (2038-1900)); } #endif #if SIZEOF_TIME_T == 8 { /* one of the largest tm_year values my 64 bit system supports: * b_time.tm_year == (292278994L-1900L) without clamping */ t_res = 9223372036854775LL; tor_gmtime_r(&t_res, &b_time); tt_assert(b_time.tm_year == (2037-1900) || b_time.tm_year == (9999-1900)); /* while unlikely, the system's gmtime(_r) could return * a "correct" proleptic gregorian year value, * which I'm pretty sure is: * (2^63-1)/60/60/24*2000/730485 + 1970 = 292277026596 * 730485 is the number of days in two millenia, including leap days * (int64_t)b_time.tm_year == (292277026596L-1900L) without clamping */ t_res = INT64_MAX; tor_gmtime_r(&t_res, &b_time); tt_assert(b_time.tm_year == (2037-1900) || b_time.tm_year == (9999-1900)); } #endif /* Test {format,parse}_rfc1123_time */ format_rfc1123_time(timestr, 0); tt_str_op("Thu, 01 Jan 1970 00:00:00 GMT",OP_EQ, timestr); format_rfc1123_time(timestr, (time_t)1091580502UL); tt_str_op("Wed, 04 Aug 2004 00:48:22 GMT",OP_EQ, timestr); t_res = 0; i = parse_rfc1123_time(timestr, &t_res); tt_int_op(0,OP_EQ, i); tt_int_op(t_res,OP_EQ, (time_t)1091580502UL); /* The timezone doesn't matter */ t_res = 0; tt_int_op(0,OP_EQ, parse_rfc1123_time("Wed, 04 Aug 2004 00:48:22 ZUL", &t_res)); tt_int_op(t_res,OP_EQ, (time_t)1091580502UL); tt_int_op(-1,OP_EQ, parse_rfc1123_time("Wed, zz Aug 2004 99-99x99 GMT", &t_res)); tt_int_op(-1,OP_EQ, parse_rfc1123_time("Wed, 32 Mar 2011 00:00:00 GMT", &t_res)); tt_int_op(-1,OP_EQ, parse_rfc1123_time("Wed, 30 Mar 2011 24:00:00 GMT", &t_res)); tt_int_op(-1,OP_EQ, parse_rfc1123_time("Wed, 30 Mar 2011 23:60:00 GMT", &t_res)); tt_int_op(-1,OP_EQ, parse_rfc1123_time("Wed, 30 Mar 2011 23:59:62 GMT", &t_res)); tt_int_op(-1,OP_EQ, parse_rfc1123_time("Wed, 30 Mar 1969 23:59:59 GMT", &t_res)); tt_int_op(-1,OP_EQ, parse_rfc1123_time("Wed, 30 Ene 2011 23:59:59 GMT", &t_res)); tt_int_op(-1,OP_EQ, parse_rfc1123_time("Wed, 30 Mar 2011 23:59:59 GM", &t_res)); tt_int_op(-1,OP_EQ, parse_rfc1123_time("Wed, 29 Feb 2011 16:00:00 GMT", &t_res)); tt_int_op(-1,OP_EQ, parse_rfc1123_time("Wed, 30 Mar 2011 23:59:61 GMT", &t_res)); /* Test parse_iso_time */ t_res = 0; i = parse_iso_time("", &t_res); tt_int_op(-1,OP_EQ, i); t_res = 0; i = parse_iso_time("2004-08-32 00:48:22", &t_res); tt_int_op(-1,OP_EQ, i); t_res = 0; i = parse_iso_time("1969-08-03 00:48:22", &t_res); tt_int_op(-1,OP_EQ, i); t_res = 0; i = parse_iso_time("2004-08-04 00:48:22", &t_res); tt_int_op(0,OP_EQ, i); tt_int_op(t_res,OP_EQ, (time_t)1091580502UL); t_res = 0; i = parse_iso_time("2004-8-4 0:48:22", &t_res); tt_int_op(0,OP_EQ, i); tt_int_op(t_res,OP_EQ, (time_t)1091580502UL); tt_int_op(-1,OP_EQ, parse_iso_time("2004-08-zz 99-99x99", &t_res)); tt_int_op(-1,OP_EQ, parse_iso_time("2011-03-32 00:00:00", &t_res)); tt_int_op(-1,OP_EQ, parse_iso_time("2011-03-30 24:00:00", &t_res)); tt_int_op(-1,OP_EQ, parse_iso_time("2011-03-30 23:60:00", &t_res)); tt_int_op(-1,OP_EQ, parse_iso_time("2011-03-30 23:59:62", &t_res)); tt_int_op(-1,OP_EQ, parse_iso_time("1969-03-30 23:59:59", &t_res)); tt_int_op(-1,OP_EQ, parse_iso_time("2011-00-30 23:59:59", &t_res)); tt_int_op(-1,OP_EQ, parse_iso_time("2147483647-08-29 14:00:00", &t_res)); tt_int_op(-1,OP_EQ, parse_iso_time("2011-03-30 23:59", &t_res)); tt_int_op(-1,OP_EQ, parse_iso_time("2004-08-04 00:48:22.100", &t_res)); tt_int_op(-1,OP_EQ, parse_iso_time("2004-08-04 00:48:22XYZ", &t_res)); /* Test tor_gettimeofday */ end.tv_sec = 4; end.tv_usec = 999990; start.tv_sec = 1; start.tv_usec = 500; tor_gettimeofday(&start); /* now make sure time works. */ tor_gettimeofday(&end); /* We might've timewarped a little. */ tt_int_op(tv_udiff(&start, &end), OP_GE, -5000); /* Test format_iso_time */ tv.tv_sec = (time_t)1326296338; tv.tv_usec = 3060; format_iso_time(timestr, (time_t)tv.tv_sec); tt_str_op("2012-01-11 15:38:58",OP_EQ, timestr); /* The output of format_local_iso_time will vary by timezone, and setting our timezone for testing purposes would be a nontrivial flaky pain. Skip this test for now. format_local_iso_time(timestr, tv.tv_sec); test_streq("2012-01-11 10:38:58", timestr); */ format_iso_time_nospace(timestr, (time_t)tv.tv_sec); tt_str_op("2012-01-11T15:38:58",OP_EQ, timestr); tt_int_op(strlen(timestr),OP_EQ, ISO_TIME_LEN); format_iso_time_nospace_usec(timestr, &tv); tt_str_op("2012-01-11T15:38:58.003060",OP_EQ, timestr); tt_int_op(strlen(timestr),OP_EQ, ISO_TIME_USEC_LEN); done: ; } static void test_util_parse_http_time(void *arg) { struct tm a_time; char b[ISO_TIME_LEN+1]; (void)arg; #define T(s) do { \ format_iso_time(b, tor_timegm(&a_time)); \ tt_str_op(b, OP_EQ, (s)); \ b[0]='\0'; \ } while (0) /* Test parse_http_time */ tt_int_op(-1,OP_EQ, parse_http_time("", &a_time)); tt_int_op(-1,OP_EQ, parse_http_time("Sunday, 32 Aug 2004 00:48:22 GMT", &a_time)); tt_int_op(-1,OP_EQ, parse_http_time("Sunday, 3 Aug 1869 00:48:22 GMT", &a_time)); tt_int_op(-1,OP_EQ, parse_http_time("Sunday, 32-Aug-94 00:48:22 GMT", &a_time)); tt_int_op(-1,OP_EQ, parse_http_time("Sunday, 3-Ago-04 00:48:22", &a_time)); tt_int_op(-1,OP_EQ, parse_http_time("Sunday, August the third", &a_time)); tt_int_op(-1,OP_EQ, parse_http_time("Wednesday,,04 Aug 1994 00:48:22 GMT", &a_time)); tt_int_op(0,OP_EQ, parse_http_time("Wednesday, 04 Aug 1994 00:48:22 GMT", &a_time)); tt_int_op((time_t)775961302UL,OP_EQ, tor_timegm(&a_time)); T("1994-08-04 00:48:22"); tt_int_op(0,OP_EQ, parse_http_time("Wednesday, 4 Aug 1994 0:48:22 GMT", &a_time)); tt_int_op((time_t)775961302UL,OP_EQ, tor_timegm(&a_time)); T("1994-08-04 00:48:22"); tt_int_op(0,OP_EQ, parse_http_time("Miercoles, 4 Aug 1994 0:48:22 GMT", &a_time)); tt_int_op((time_t)775961302UL,OP_EQ, tor_timegm(&a_time)); T("1994-08-04 00:48:22"); tt_int_op(0,OP_EQ, parse_http_time("Wednesday, 04-Aug-94 00:48:22 GMT", &a_time)); tt_int_op((time_t)775961302UL,OP_EQ, tor_timegm(&a_time)); T("1994-08-04 00:48:22"); tt_int_op(0,OP_EQ, parse_http_time("Wednesday, 4-Aug-94 0:48:22 GMT", &a_time)); tt_int_op((time_t)775961302UL,OP_EQ, tor_timegm(&a_time)); T("1994-08-04 00:48:22"); tt_int_op(0,OP_EQ, parse_http_time("Miercoles, 4-Aug-94 0:48:22 GMT", &a_time)); tt_int_op((time_t)775961302UL,OP_EQ, tor_timegm(&a_time)); T("1994-08-04 00:48:22"); tt_int_op(0,OP_EQ, parse_http_time("Wed Aug 04 00:48:22 1994", &a_time)); tt_int_op((time_t)775961302UL,OP_EQ, tor_timegm(&a_time)); T("1994-08-04 00:48:22"); tt_int_op(0,OP_EQ, parse_http_time("Wed Aug 4 0:48:22 1994", &a_time)); tt_int_op((time_t)775961302UL,OP_EQ, tor_timegm(&a_time)); T("1994-08-04 00:48:22"); tt_int_op(0,OP_EQ, parse_http_time("Mie Aug 4 0:48:22 1994", &a_time)); tt_int_op((time_t)775961302UL,OP_EQ, tor_timegm(&a_time)); T("1994-08-04 00:48:22"); tt_int_op(0,OP_EQ,parse_http_time("Sun, 1 Jan 2012 00:00:00 GMT", &a_time)); tt_int_op((time_t)1325376000UL,OP_EQ, tor_timegm(&a_time)); T("2012-01-01 00:00:00"); tt_int_op(0,OP_EQ,parse_http_time("Mon, 31 Dec 2012 00:00:00 GMT", &a_time)); tt_int_op((time_t)1356912000UL,OP_EQ, tor_timegm(&a_time)); T("2012-12-31 00:00:00"); tt_int_op(-1,OP_EQ, parse_http_time("2004-08-zz 99-99x99 GMT", &a_time)); tt_int_op(-1,OP_EQ, parse_http_time("2011-03-32 00:00:00 GMT", &a_time)); tt_int_op(-1,OP_EQ, parse_http_time("2011-03-30 24:00:00 GMT", &a_time)); tt_int_op(-1,OP_EQ, parse_http_time("2011-03-30 23:60:00 GMT", &a_time)); tt_int_op(-1,OP_EQ, parse_http_time("2011-03-30 23:59:62 GMT", &a_time)); tt_int_op(-1,OP_EQ, parse_http_time("1969-03-30 23:59:59 GMT", &a_time)); tt_int_op(-1,OP_EQ, parse_http_time("2011-00-30 23:59:59 GMT", &a_time)); tt_int_op(-1,OP_EQ, parse_http_time("2011-03-30 23:59", &a_time)); #undef T done: ; } static void test_util_config_line(void *arg) { char buf[1024]; char *k=NULL, *v=NULL; const char *str; /* Test parse_config_line_from_str */ (void)arg; strlcpy(buf, "k v\n" " key value with spaces \n" "keykey val\n" "k2\n" "k3 \n" "\n" " \n" "#comment\n" "k4#a\n" "k5#abc\n" "k6 val #with comment\n" "kseven \"a quoted 'string\"\n" "k8 \"a \\x71uoted\\n\\\"str\\\\ing\\t\\001\\01\\1\\\"\"\n" "k9 a line that\\\n spans two lines.\n\n" "k10 more than\\\n one contin\\\nuation\n" "k11 \\\ncontinuation at the start\n" "k12 line with a\\\n#comment\n embedded\n" "k13\\\ncontinuation at the very start\n" "k14 a line that has a comment and # ends with a slash \\\n" "k15 this should be the next new line\n" "k16 a line that has a comment and # ends without a slash \n" "k17 this should be the next new line\n" , sizeof(buf)); str = buf; str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k"); tt_str_op(v,OP_EQ, "v"); tor_free(k); tor_free(v); tt_assert(!strcmpstart(str, "key value with")); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "key"); tt_str_op(v,OP_EQ, "value with spaces"); tor_free(k); tor_free(v); tt_assert(!strcmpstart(str, "keykey")); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "keykey"); tt_str_op(v,OP_EQ, "val"); tor_free(k); tor_free(v); tt_assert(!strcmpstart(str, "k2\n")); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k2"); tt_str_op(v,OP_EQ, ""); tor_free(k); tor_free(v); tt_assert(!strcmpstart(str, "k3 \n")); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k3"); tt_str_op(v,OP_EQ, ""); tor_free(k); tor_free(v); tt_assert(!strcmpstart(str, "#comment")); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k4"); tt_str_op(v,OP_EQ, ""); tor_free(k); tor_free(v); tt_assert(!strcmpstart(str, "k5#abc")); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k5"); tt_str_op(v,OP_EQ, ""); tor_free(k); tor_free(v); tt_assert(!strcmpstart(str, "k6")); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k6"); tt_str_op(v,OP_EQ, "val"); tor_free(k); tor_free(v); tt_assert(!strcmpstart(str, "kseven")); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "kseven"); tt_str_op(v,OP_EQ, "a quoted \'string"); tor_free(k); tor_free(v); tt_assert(!strcmpstart(str, "k8 ")); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k8"); tt_str_op(v,OP_EQ, "a quoted\n\"str\\ing\t\x01\x01\x01\""); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k9"); tt_str_op(v,OP_EQ, "a line that spans two lines."); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k10"); tt_str_op(v,OP_EQ, "more than one continuation"); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k11"); tt_str_op(v,OP_EQ, "continuation at the start"); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k12"); tt_str_op(v,OP_EQ, "line with a embedded"); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k13"); tt_str_op(v,OP_EQ, "continuation at the very start"); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k14"); tt_str_op(v,OP_EQ, "a line that has a comment and" ); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k15"); tt_str_op(v,OP_EQ, "this should be the next new line"); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k16"); tt_str_op(v,OP_EQ, "a line that has a comment and" ); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k17"); tt_str_op(v,OP_EQ, "this should be the next new line"); tor_free(k); tor_free(v); tt_str_op(str,OP_EQ, ""); done: tor_free(k); tor_free(v); } static void test_util_config_line_quotes(void *arg) { char buf1[1024]; char buf2[128]; char buf3[128]; char buf4[128]; char *k=NULL, *v=NULL; const char *str; /* Test parse_config_line_from_str */ (void)arg; strlcpy(buf1, "kTrailingSpace \"quoted value\" \n" "kTrailingGarbage \"quoted value\"trailing garbage\n" , sizeof(buf1)); strlcpy(buf2, "kTrailingSpaceAndGarbage \"quoted value\" trailing space+g\n" , sizeof(buf2)); strlcpy(buf3, "kMultilineTrailingSpace \"mline\\ \nvalue w/ trailing sp\"\n" , sizeof(buf3)); strlcpy(buf4, "kMultilineNoTrailingBackslash \"naked multiline\nvalue\"\n" , sizeof(buf4)); str = buf1; str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "kTrailingSpace"); tt_str_op(v,OP_EQ, "quoted value"); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_ptr_op(str,OP_EQ, NULL); tor_free(k); tor_free(v); str = buf2; str = parse_config_line_from_str(str, &k, &v); tt_ptr_op(str,OP_EQ, NULL); tor_free(k); tor_free(v); str = buf3; str = parse_config_line_from_str(str, &k, &v); tt_ptr_op(str,OP_EQ, NULL); tor_free(k); tor_free(v); str = buf4; str = parse_config_line_from_str(str, &k, &v); tt_ptr_op(str,OP_EQ, NULL); tor_free(k); tor_free(v); done: tor_free(k); tor_free(v); } static void test_util_config_line_comment_character(void *arg) { char buf[1024]; char *k=NULL, *v=NULL; const char *str; /* Test parse_config_line_from_str */ (void)arg; strlcpy(buf, "k1 \"# in quotes\"\n" "k2 some value # some comment\n" "k3 /home/user/myTorNetwork#2\n" /* Testcase for #1323 */ , sizeof(buf)); str = buf; str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k1"); tt_str_op(v,OP_EQ, "# in quotes"); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "k2"); tt_str_op(v,OP_EQ, "some value"); tor_free(k); tor_free(v); tt_str_op(str,OP_EQ, "k3 /home/user/myTorNetwork#2\n"); #if 0 str = parse_config_line_from_str(str, &k, &v); test_streq(k, "k3"); test_streq(v, "/home/user/myTorNetwork#2"); tor_free(k); tor_free(v); test_streq(str, ""); #endif done: tor_free(k); tor_free(v); } static void test_util_config_line_escaped_content(void *arg) { char buf1[1024]; char buf2[128]; char buf3[128]; char buf4[128]; char buf5[128]; char buf6[128]; char *k=NULL, *v=NULL; const char *str; /* Test parse_config_line_from_str */ (void)arg; strlcpy(buf1, "HexadecimalLower \"\\x2a\"\n" "HexadecimalUpper \"\\x2A\"\n" "HexadecimalUpperX \"\\X2A\"\n" "Octal \"\\52\"\n" "Newline \"\\n\"\n" "Tab \"\\t\"\n" "CarriageReturn \"\\r\"\n" "DoubleQuote \"\\\"\"\n" "SimpleQuote \"\\'\"\n" "Backslash \"\\\\\"\n" "Mix \"This is a \\\"star\\\":\\t\\'\\x2a\\'\\nAnd second line\"\n" , sizeof(buf1)); strlcpy(buf2, "BrokenEscapedContent \"\\a\"\n" , sizeof(buf2)); strlcpy(buf3, "BrokenEscapedContent \"\\x\"\n" , sizeof(buf3)); strlcpy(buf4, "BrokenOctal \"\\8\"\n" , sizeof(buf4)); strlcpy(buf5, "BrokenHex \"\\xg4\"\n" , sizeof(buf5)); strlcpy(buf6, "BrokenEscape \"\\" , sizeof(buf6)); str = buf1; str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "HexadecimalLower"); tt_str_op(v,OP_EQ, "*"); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "HexadecimalUpper"); tt_str_op(v,OP_EQ, "*"); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "HexadecimalUpperX"); tt_str_op(v,OP_EQ, "*"); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "Octal"); tt_str_op(v,OP_EQ, "*"); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "Newline"); tt_str_op(v,OP_EQ, "\n"); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "Tab"); tt_str_op(v,OP_EQ, "\t"); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "CarriageReturn"); tt_str_op(v,OP_EQ, "\r"); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "DoubleQuote"); tt_str_op(v,OP_EQ, "\""); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "SimpleQuote"); tt_str_op(v,OP_EQ, "'"); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "Backslash"); tt_str_op(v,OP_EQ, "\\"); tor_free(k); tor_free(v); str = parse_config_line_from_str(str, &k, &v); tt_str_op(k,OP_EQ, "Mix"); tt_str_op(v,OP_EQ, "This is a \"star\":\t'*'\nAnd second line"); tor_free(k); tor_free(v); tt_str_op(str,OP_EQ, ""); str = buf2; str = parse_config_line_from_str(str, &k, &v); tt_ptr_op(str,OP_EQ, NULL); tor_free(k); tor_free(v); str = buf3; str = parse_config_line_from_str(str, &k, &v); tt_ptr_op(str,OP_EQ, NULL); tor_free(k); tor_free(v); str = buf4; str = parse_config_line_from_str(str, &k, &v); tt_ptr_op(str,OP_EQ, NULL); tor_free(k); tor_free(v); #if 0 str = buf5; str = parse_config_line_from_str(str, &k, &v); tt_ptr_op(str, OP_EQ, NULL); tor_free(k); tor_free(v); #endif str = buf6; str = parse_config_line_from_str(str, &k, &v); tt_ptr_op(str,OP_EQ, NULL); tor_free(k); tor_free(v); done: tor_free(k); tor_free(v); } #ifndef _WIN32 static void test_util_expand_filename(void *arg) { char *str; (void)arg; setenv("HOME", "/home/itv", 1); /* For "internal test value" */ str = expand_filename(""); tt_str_op("",OP_EQ, str); tor_free(str); str = expand_filename("/normal/path"); tt_str_op("/normal/path",OP_EQ, str); tor_free(str); str = expand_filename("/normal/trailing/path/"); tt_str_op("/normal/trailing/path/",OP_EQ, str); tor_free(str); str = expand_filename("~"); tt_str_op("/home/itv/",OP_EQ, str); tor_free(str); str = expand_filename("$HOME/nodice"); tt_str_op("$HOME/nodice",OP_EQ, str); tor_free(str); str = expand_filename("~/"); tt_str_op("/home/itv/",OP_EQ, str); tor_free(str); str = expand_filename("~/foobarqux"); tt_str_op("/home/itv/foobarqux",OP_EQ, str); tor_free(str); str = expand_filename("~/../../etc/passwd"); tt_str_op("/home/itv/../../etc/passwd",OP_EQ, str); tor_free(str); str = expand_filename("~/trailing/"); tt_str_op("/home/itv/trailing/",OP_EQ, str); tor_free(str); /* Ideally we'd test ~anotheruser, but that's shady to test (we'd have to somehow inject/fake the get_user_homedir call) */ /* $HOME ending in a trailing slash */ setenv("HOME", "/home/itv/", 1); str = expand_filename("~"); tt_str_op("/home/itv/",OP_EQ, str); tor_free(str); str = expand_filename("~/"); tt_str_op("/home/itv/",OP_EQ, str); tor_free(str); str = expand_filename("~/foo"); tt_str_op("/home/itv/foo",OP_EQ, str); tor_free(str); /* Try with empty $HOME */ setenv("HOME", "", 1); str = expand_filename("~"); tt_str_op("/",OP_EQ, str); tor_free(str); str = expand_filename("~/"); tt_str_op("/",OP_EQ, str); tor_free(str); str = expand_filename("~/foobar"); tt_str_op("/foobar",OP_EQ, str); tor_free(str); /* Try with $HOME unset */ unsetenv("HOME"); str = expand_filename("~"); tt_str_op("/",OP_EQ, str); tor_free(str); str = expand_filename("~/"); tt_str_op("/",OP_EQ, str); tor_free(str); str = expand_filename("~/foobar"); tt_str_op("/foobar",OP_EQ, str); tor_free(str); done: tor_free(str); } #endif /** Test tor_escape_str_for_pt_args(). */ static void test_util_escape_string_socks(void *arg) { char *escaped_string = NULL; /** Simple backslash escape. */ (void)arg; escaped_string = tor_escape_str_for_pt_args("This is a backslash: \\",";\\"); tt_assert(escaped_string); tt_str_op(escaped_string,OP_EQ, "This is a backslash: \\\\"); tor_free(escaped_string); /** Simple semicolon escape. */ escaped_string = tor_escape_str_for_pt_args("First rule:Do not use ;",";\\"); tt_assert(escaped_string); tt_str_op(escaped_string,OP_EQ, "First rule:Do not use \\;"); tor_free(escaped_string); /** Empty string. */ escaped_string = tor_escape_str_for_pt_args("", ";\\"); tt_assert(escaped_string); tt_str_op(escaped_string,OP_EQ, ""); tor_free(escaped_string); /** Escape all characters. */ escaped_string = tor_escape_str_for_pt_args(";\\;\\", ";\\"); tt_assert(escaped_string); tt_str_op(escaped_string,OP_EQ, "\\;\\\\\\;\\\\"); tor_free(escaped_string); escaped_string = tor_escape_str_for_pt_args(";", ";\\"); tt_assert(escaped_string); tt_str_op(escaped_string,OP_EQ, "\\;"); tor_free(escaped_string); done: tor_free(escaped_string); } static void test_util_string_is_key_value(void *ptr) { (void)ptr; tt_assert(string_is_key_value(LOG_WARN, "key=value")); tt_assert(string_is_key_value(LOG_WARN, "k=v")); tt_assert(string_is_key_value(LOG_WARN, "key=")); tt_assert(string_is_key_value(LOG_WARN, "x=")); tt_assert(string_is_key_value(LOG_WARN, "xx=")); tt_assert(!string_is_key_value(LOG_WARN, "=value")); tt_assert(!string_is_key_value(LOG_WARN, "=x")); tt_assert(!string_is_key_value(LOG_WARN, "=")); /* ??? */ /* tt_assert(!string_is_key_value(LOG_WARN, "===")); */ done: ; } /** Test basic string functionality. */ static void test_util_strmisc(void *arg) { char buf[1024]; int i; char *cp, *cp_tmp = NULL; /* Test strl operations */ (void)arg; tt_int_op(5,OP_EQ, strlcpy(buf, "Hello", 0)); tt_int_op(5,OP_EQ, strlcpy(buf, "Hello", 10)); tt_str_op(buf,OP_EQ, "Hello"); tt_int_op(5,OP_EQ, strlcpy(buf, "Hello", 6)); tt_str_op(buf,OP_EQ, "Hello"); tt_int_op(5,OP_EQ, strlcpy(buf, "Hello", 5)); tt_str_op(buf,OP_EQ, "Hell"); strlcpy(buf, "Hello", sizeof(buf)); tt_int_op(10,OP_EQ, strlcat(buf, "Hello", 5)); /* Test strstrip() */ strlcpy(buf, "Testing 1 2 3", sizeof(buf)); tor_strstrip(buf, ",!"); tt_str_op(buf,OP_EQ, "Testing 1 2 3"); strlcpy(buf, "!Testing 1 2 3?", sizeof(buf)); tor_strstrip(buf, "!? "); tt_str_op(buf,OP_EQ, "Testing123"); strlcpy(buf, "!!!Testing 1 2 3??", sizeof(buf)); tor_strstrip(buf, "!? "); tt_str_op(buf,OP_EQ, "Testing123"); /* Test parse_long */ /* Empty/zero input */ tt_int_op(0L,OP_EQ, tor_parse_long("",10,0,100,&i,NULL)); tt_int_op(0,OP_EQ, i); tt_int_op(0L,OP_EQ, tor_parse_long("0",10,0,100,&i,NULL)); tt_int_op(1,OP_EQ, i); /* Normal cases */ tt_int_op(10L,OP_EQ, tor_parse_long("10",10,0,100,&i,NULL)); tt_int_op(1,OP_EQ, i); tt_int_op(10L,OP_EQ, tor_parse_long("10",10,0,10,&i,NULL)); tt_int_op(1,OP_EQ, i); tt_int_op(10L,OP_EQ, tor_parse_long("10",10,10,100,&i,NULL)); tt_int_op(1,OP_EQ, i); tt_int_op(-50L,OP_EQ, tor_parse_long("-50",10,-100,100,&i,NULL)); tt_int_op(1,OP_EQ, i); tt_int_op(-50L,OP_EQ, tor_parse_long("-50",10,-100,0,&i,NULL)); tt_int_op(1,OP_EQ, i); tt_int_op(-50L,OP_EQ, tor_parse_long("-50",10,-50,0,&i,NULL)); tt_int_op(1,OP_EQ, i); /* Extra garbage */ tt_int_op(0L,OP_EQ, tor_parse_long("10m",10,0,100,&i,NULL)); tt_int_op(0,OP_EQ, i); tt_int_op(0L,OP_EQ, tor_parse_long("-50 plus garbage",10,-100,100,&i,NULL)); tt_int_op(0,OP_EQ, i); tt_int_op(10L,OP_EQ, tor_parse_long("10m",10,0,100,&i,&cp)); tt_int_op(1,OP_EQ, i); tt_str_op(cp,OP_EQ, "m"); tt_int_op(-50L,OP_EQ, tor_parse_long("-50 plus garbage",10,-100,100,&i,&cp)); tt_int_op(1,OP_EQ, i); tt_str_op(cp,OP_EQ, " plus garbage"); /* Out of bounds */ tt_int_op(0L,OP_EQ, tor_parse_long("10",10,50,100,&i,NULL)); tt_int_op(0,OP_EQ, i); tt_int_op(0L,OP_EQ, tor_parse_long("-50",10,0,100,&i,NULL)); tt_int_op(0,OP_EQ, i); /* Base different than 10 */ tt_int_op(2L,OP_EQ, tor_parse_long("10",2,0,100,NULL,NULL)); tt_int_op(0L,OP_EQ, tor_parse_long("2",2,0,100,NULL,NULL)); tt_int_op(0L,OP_EQ, tor_parse_long("10",-2,0,100,NULL,NULL)); tt_int_op(68284L,OP_EQ, tor_parse_long("10abc",16,0,70000,NULL,NULL)); tt_int_op(68284L,OP_EQ, tor_parse_long("10ABC",16,0,70000,NULL,NULL)); tt_int_op(0,OP_EQ, tor_parse_long("10ABC",-1,0,70000,&i,NULL)); tt_int_op(i,OP_EQ, 0); /* Test parse_ulong */ tt_int_op(0UL,OP_EQ, tor_parse_ulong("",10,0,100,NULL,NULL)); tt_int_op(0UL,OP_EQ, tor_parse_ulong("0",10,0,100,NULL,NULL)); tt_int_op(10UL,OP_EQ, tor_parse_ulong("10",10,0,100,NULL,NULL)); tt_int_op(0UL,OP_EQ, tor_parse_ulong("10",10,50,100,NULL,NULL)); tt_int_op(10UL,OP_EQ, tor_parse_ulong("10",10,0,10,NULL,NULL)); tt_int_op(10UL,OP_EQ, tor_parse_ulong("10",10,10,100,NULL,NULL)); tt_int_op(0UL,OP_EQ, tor_parse_ulong("8",8,0,100,NULL,NULL)); tt_int_op(50UL,OP_EQ, tor_parse_ulong("50",10,50,100,NULL,NULL)); tt_int_op(0UL,OP_EQ, tor_parse_ulong("-50",10,-100,100,NULL,NULL)); tt_int_op(0UL,OP_EQ, tor_parse_ulong("50",-1,50,100,&i,NULL)); tt_int_op(0,OP_EQ, i); /* Test parse_uint64 */ tt_assert(U64_LITERAL(10) == tor_parse_uint64("10 x",10,0,100, &i, &cp)); tt_int_op(1,OP_EQ, i); tt_str_op(cp,OP_EQ, " x"); tt_assert(U64_LITERAL(12345678901) == tor_parse_uint64("12345678901",10,0,UINT64_MAX, &i, &cp)); tt_int_op(1,OP_EQ, i); tt_str_op(cp,OP_EQ, ""); tt_assert(U64_LITERAL(0) == tor_parse_uint64("12345678901",10,500,INT32_MAX, &i, &cp)); tt_int_op(0,OP_EQ, i); tt_assert(U64_LITERAL(0) == tor_parse_uint64("123",-1,0,INT32_MAX, &i, &cp)); tt_int_op(0,OP_EQ, i); { /* Test parse_double */ double d = tor_parse_double("10", 0, UINT64_MAX,&i,NULL); tt_int_op(1,OP_EQ, i); tt_assert(DBL_TO_U64(d) == 10); d = tor_parse_double("0", 0, UINT64_MAX,&i,NULL); tt_int_op(1,OP_EQ, i); tt_assert(DBL_TO_U64(d) == 0); d = tor_parse_double(" ", 0, UINT64_MAX,&i,NULL); tt_int_op(0,OP_EQ, i); d = tor_parse_double(".0a", 0, UINT64_MAX,&i,NULL); tt_int_op(0,OP_EQ, i); d = tor_parse_double(".0a", 0, UINT64_MAX,&i,&cp); tt_int_op(1,OP_EQ, i); d = tor_parse_double("-.0", 0, UINT64_MAX,&i,NULL); tt_int_op(1,OP_EQ, i); tt_assert(DBL_TO_U64(d) == 0); d = tor_parse_double("-10", -100.0, 100.0,&i,NULL); tt_int_op(1,OP_EQ, i); tt_int_op(-10.0,OP_EQ, d); } { /* Test tor_parse_* where we overflow/underflow the underlying type. */ /* This string should overflow 64-bit ints. */ #define TOOBIG "100000000000000000000000000" tt_int_op(0L, OP_EQ, tor_parse_long(TOOBIG, 10, LONG_MIN, LONG_MAX, &i, NULL)); tt_int_op(i,OP_EQ, 0); tt_int_op(0L,OP_EQ, tor_parse_long("-"TOOBIG, 10, LONG_MIN, LONG_MAX, &i, NULL)); tt_int_op(i,OP_EQ, 0); tt_int_op(0UL,OP_EQ, tor_parse_ulong(TOOBIG, 10, 0, ULONG_MAX, &i, NULL)); tt_int_op(i,OP_EQ, 0); tt_u64_op(U64_LITERAL(0), OP_EQ, tor_parse_uint64(TOOBIG, 10, 0, UINT64_MAX, &i, NULL)); tt_int_op(i,OP_EQ, 0); } /* Test snprintf */ /* Returning -1 when there's not enough room in the output buffer */ tt_int_op(-1,OP_EQ, tor_snprintf(buf, 0, "Foo")); tt_int_op(-1,OP_EQ, tor_snprintf(buf, 2, "Foo")); tt_int_op(-1,OP_EQ, tor_snprintf(buf, 3, "Foo")); tt_int_op(-1,OP_NE, tor_snprintf(buf, 4, "Foo")); /* Always NUL-terminate the output */ tor_snprintf(buf, 5, "abcdef"); tt_int_op(0,OP_EQ, buf[4]); tor_snprintf(buf, 10, "abcdef"); tt_int_op(0,OP_EQ, buf[6]); /* uint64 */ tor_snprintf(buf, sizeof(buf), "x!"U64_FORMAT"!x", U64_PRINTF_ARG(U64_LITERAL(12345678901))); tt_str_op("x!12345678901!x",OP_EQ, buf); /* Test str{,case}cmpstart */ tt_assert(strcmpstart("abcdef", "abcdef")==0); tt_assert(strcmpstart("abcdef", "abc")==0); tt_assert(strcmpstart("abcdef", "abd")<0); tt_assert(strcmpstart("abcdef", "abb")>0); tt_assert(strcmpstart("ab", "abb")<0); tt_assert(strcmpstart("ab", "")==0); tt_assert(strcmpstart("ab", "ab ")<0); tt_assert(strcasecmpstart("abcdef", "abCdEF")==0); tt_assert(strcasecmpstart("abcDeF", "abc")==0); tt_assert(strcasecmpstart("abcdef", "Abd")<0); tt_assert(strcasecmpstart("Abcdef", "abb")>0); tt_assert(strcasecmpstart("ab", "Abb")<0); tt_assert(strcasecmpstart("ab", "")==0); tt_assert(strcasecmpstart("ab", "ab ")<0); /* Test str{,case}cmpend */ tt_assert(strcmpend("abcdef", "abcdef")==0); tt_assert(strcmpend("abcdef", "def")==0); tt_assert(strcmpend("abcdef", "deg")<0); tt_assert(strcmpend("abcdef", "dee")>0); tt_assert(strcmpend("ab", "aab")>0); tt_assert(strcasecmpend("AbcDEF", "abcdef")==0); tt_assert(strcasecmpend("abcdef", "dEF")==0); tt_assert(strcasecmpend("abcdef", "Deg")<0); tt_assert(strcasecmpend("abcDef", "dee")>0); tt_assert(strcasecmpend("AB", "abb")<0); /* Test digest_is_zero */ memset(buf,0,20); buf[20] = 'x'; tt_assert(tor_digest_is_zero(buf)); buf[19] = 'x'; tt_assert(!tor_digest_is_zero(buf)); /* Test mem_is_zero */ memset(buf,0,128); buf[128] = 'x'; tt_assert(tor_mem_is_zero(buf, 10)); tt_assert(tor_mem_is_zero(buf, 20)); tt_assert(tor_mem_is_zero(buf, 128)); tt_assert(!tor_mem_is_zero(buf, 129)); buf[60] = (char)255; tt_assert(!tor_mem_is_zero(buf, 128)); buf[0] = (char)1; tt_assert(!tor_mem_is_zero(buf, 10)); /* Test 'escaped' */ tt_assert(NULL == escaped(NULL)); tt_str_op("\"\"",OP_EQ, escaped("")); tt_str_op("\"abcd\"",OP_EQ, escaped("abcd")); tt_str_op("\"\\\\ \\n\\r\\t\\\"\\'\"",OP_EQ, escaped("\\ \n\r\t\"'")); tt_str_op("\"unnecessary \\'backslashes\\'\"",OP_EQ, escaped("unnecessary \'backslashes\'")); /* Non-printable characters appear as octal */ tt_str_op("\"z\\001abc\\277d\"",OP_EQ, escaped("z\001abc\277d")); tt_str_op("\"z\\336\\255 ;foo\"",OP_EQ, escaped("z\xde\xad\x20;foo")); /* Test strndup and memdup */ { const char *s = "abcdefghijklmnopqrstuvwxyz"; cp_tmp = tor_strndup(s, 30); tt_str_op(cp_tmp,OP_EQ, s); /* same string, */ tt_ptr_op(cp_tmp,OP_NE,s); /* but different pointers. */ tor_free(cp_tmp); cp_tmp = tor_strndup(s, 5); tt_str_op(cp_tmp,OP_EQ, "abcde"); tor_free(cp_tmp); s = "a\0b\0c\0d\0e\0"; cp_tmp = tor_memdup(s,10); tt_mem_op(cp_tmp,OP_EQ, s, 10); /* same ram, */ tt_ptr_op(cp_tmp,OP_NE,s); /* but different pointers. */ tor_free(cp_tmp); } /* Test str-foo functions */ cp_tmp = tor_strdup("abcdef"); tt_assert(tor_strisnonupper(cp_tmp)); cp_tmp[3] = 'D'; tt_assert(!tor_strisnonupper(cp_tmp)); tor_strupper(cp_tmp); tt_str_op(cp_tmp,OP_EQ, "ABCDEF"); tor_strlower(cp_tmp); tt_str_op(cp_tmp,OP_EQ, "abcdef"); tt_assert(tor_strisnonupper(cp_tmp)); tt_assert(tor_strisprint(cp_tmp)); cp_tmp[3] = 3; tt_assert(!tor_strisprint(cp_tmp)); tor_free(cp_tmp); /* Test memmem and memstr */ { const char *haystack = "abcde"; tt_assert(!tor_memmem(haystack, 5, "ef", 2)); tt_ptr_op(tor_memmem(haystack, 5, "cd", 2),OP_EQ, haystack + 2); tt_ptr_op(tor_memmem(haystack, 5, "cde", 3),OP_EQ, haystack + 2); tt_assert(!tor_memmem(haystack, 4, "cde", 3)); haystack = "ababcad"; tt_ptr_op(tor_memmem(haystack, 7, "abc", 3),OP_EQ, haystack + 2); tt_ptr_op(tor_memmem(haystack, 7, "ad", 2),OP_EQ, haystack + 5); tt_ptr_op(tor_memmem(haystack, 7, "cad", 3),OP_EQ, haystack + 4); tt_assert(!tor_memmem(haystack, 7, "dadad", 5)); tt_assert(!tor_memmem(haystack, 7, "abcdefghij", 10)); /* memstr */ tt_ptr_op(tor_memstr(haystack, 7, "abc"),OP_EQ, haystack + 2); tt_ptr_op(tor_memstr(haystack, 7, "cad"),OP_EQ, haystack + 4); tt_assert(!tor_memstr(haystack, 6, "cad")); tt_assert(!tor_memstr(haystack, 7, "cadd")); tt_assert(!tor_memstr(haystack, 7, "fe")); tt_assert(!tor_memstr(haystack, 7, "ababcade")); } /* Test hex_str */ { char binary_data[68]; size_t i; for (i = 0; i < sizeof(binary_data); ++i) binary_data[i] = i; tt_str_op(hex_str(binary_data, 0),OP_EQ, ""); tt_str_op(hex_str(binary_data, 1),OP_EQ, "00"); tt_str_op(hex_str(binary_data, 17),OP_EQ, "000102030405060708090A0B0C0D0E0F10"); tt_str_op(hex_str(binary_data, 32),OP_EQ, "000102030405060708090A0B0C0D0E0F" "101112131415161718191A1B1C1D1E1F"); tt_str_op(hex_str(binary_data, 34),OP_EQ, "000102030405060708090A0B0C0D0E0F" "101112131415161718191A1B1C1D1E1F"); /* Repeat these tests for shorter strings after longer strings have been tried, to make sure we're correctly terminating strings */ tt_str_op(hex_str(binary_data, 1),OP_EQ, "00"); tt_str_op(hex_str(binary_data, 0),OP_EQ, ""); } /* Test strcmp_opt */ tt_int_op(strcmp_opt("", "foo"), OP_LT, 0); tt_int_op(strcmp_opt("", ""), OP_EQ, 0); tt_int_op(strcmp_opt("foo", ""), OP_GT, 0); tt_int_op(strcmp_opt(NULL, ""), OP_LT, 0); tt_int_op(strcmp_opt(NULL, NULL), OP_EQ, 0); tt_int_op(strcmp_opt("", NULL), OP_GT, 0); tt_int_op(strcmp_opt(NULL, "foo"), OP_LT, 0); tt_int_op(strcmp_opt("foo", NULL), OP_GT, 0); /* Test strcmp_len */ tt_int_op(strcmp_len("foo", "bar", 3), OP_GT, 0); tt_int_op(strcmp_len("foo", "bar", 2), OP_LT, 0); tt_int_op(strcmp_len("foo2", "foo1", 4), OP_GT, 0); tt_int_op(strcmp_len("foo2", "foo1", 3), OP_LT, 0); /* Really stop at len */ tt_int_op(strcmp_len("foo2", "foo", 3), OP_EQ, 0); /* Really stop at len */ tt_int_op(strcmp_len("blah", "", 4), OP_GT, 0); tt_int_op(strcmp_len("blah", "", 0), OP_EQ, 0); done: tor_free(cp_tmp); } static void test_util_pow2(void *arg) { /* Test tor_log2(). */ (void)arg; tt_int_op(tor_log2(64),OP_EQ, 6); tt_int_op(tor_log2(65),OP_EQ, 6); tt_int_op(tor_log2(63),OP_EQ, 5); /* incorrect mathematically, but as specified: */ tt_int_op(tor_log2(0),OP_EQ, 0); tt_int_op(tor_log2(1),OP_EQ, 0); tt_int_op(tor_log2(2),OP_EQ, 1); tt_int_op(tor_log2(3),OP_EQ, 1); tt_int_op(tor_log2(4),OP_EQ, 2); tt_int_op(tor_log2(5),OP_EQ, 2); tt_int_op(tor_log2(U64_LITERAL(40000000000000000)),OP_EQ, 55); tt_int_op(tor_log2(UINT64_MAX),OP_EQ, 63); /* Test round_to_power_of_2 */ tt_u64_op(round_to_power_of_2(120), OP_EQ, 128); tt_u64_op(round_to_power_of_2(128), OP_EQ, 128); tt_u64_op(round_to_power_of_2(130), OP_EQ, 128); tt_u64_op(round_to_power_of_2(U64_LITERAL(40000000000000000)), OP_EQ, U64_LITERAL(1)<<55); tt_u64_op(round_to_power_of_2(U64_LITERAL(0xffffffffffffffff)), OP_EQ, U64_LITERAL(1)<<63); tt_u64_op(round_to_power_of_2(0), OP_EQ, 1); tt_u64_op(round_to_power_of_2(1), OP_EQ, 1); tt_u64_op(round_to_power_of_2(2), OP_EQ, 2); tt_u64_op(round_to_power_of_2(3), OP_EQ, 2); tt_u64_op(round_to_power_of_2(4), OP_EQ, 4); tt_u64_op(round_to_power_of_2(5), OP_EQ, 4); tt_u64_op(round_to_power_of_2(6), OP_EQ, 4); tt_u64_op(round_to_power_of_2(7), OP_EQ, 8); done: ; } /** Run unit tests for compression functions */ static void test_util_gzip(void *arg) { char *buf1=NULL, *buf2=NULL, *buf3=NULL, *cp1, *cp2; const char *ccp2; size_t len1, len2; tor_zlib_state_t *state = NULL; (void)arg; buf1 = tor_strdup("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAZ"); tt_assert(detect_compression_method(buf1, strlen(buf1)) == UNKNOWN_METHOD); if (is_gzip_supported()) { tt_assert(!tor_gzip_compress(&buf2, &len1, buf1, strlen(buf1)+1, GZIP_METHOD)); tt_assert(buf2); tt_assert(len1 < strlen(buf1)); tt_assert(detect_compression_method(buf2, len1) == GZIP_METHOD); tt_assert(!tor_gzip_uncompress(&buf3, &len2, buf2, len1, GZIP_METHOD, 1, LOG_INFO)); tt_assert(buf3); tt_int_op(strlen(buf1) + 1,OP_EQ, len2); tt_str_op(buf1,OP_EQ, buf3); tor_free(buf2); tor_free(buf3); } tt_assert(!tor_gzip_compress(&buf2, &len1, buf1, strlen(buf1)+1, ZLIB_METHOD)); tt_assert(buf2); tt_assert(detect_compression_method(buf2, len1) == ZLIB_METHOD); tt_assert(!tor_gzip_uncompress(&buf3, &len2, buf2, len1, ZLIB_METHOD, 1, LOG_INFO)); tt_assert(buf3); tt_int_op(strlen(buf1) + 1,OP_EQ, len2); tt_str_op(buf1,OP_EQ, buf3); /* Check whether we can uncompress concatenated, compressed strings. */ tor_free(buf3); buf2 = tor_reallocarray(buf2, len1, 2); memcpy(buf2+len1, buf2, len1); tt_assert(!tor_gzip_uncompress(&buf3, &len2, buf2, len1*2, ZLIB_METHOD, 1, LOG_INFO)); tt_int_op((strlen(buf1)+1)*2,OP_EQ, len2); tt_mem_op(buf3,OP_EQ, "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAZ\0" "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAZ\0", (strlen(buf1)+1)*2); tor_free(buf1); tor_free(buf2); tor_free(buf3); /* Check whether we can uncompress partial strings. */ buf1 = tor_strdup("String with low redundancy that won't be compressed much."); tt_assert(!tor_gzip_compress(&buf2, &len1, buf1, strlen(buf1)+1, ZLIB_METHOD)); tt_assert(len1>16); /* when we allow an incomplete string, we should succeed.*/ tt_assert(!tor_gzip_uncompress(&buf3, &len2, buf2, len1-16, ZLIB_METHOD, 0, LOG_INFO)); tt_assert(len2 > 5); buf3[len2]='\0'; tt_assert(!strcmpstart(buf1, buf3)); /* when we demand a complete string, this must fail. */ tor_free(buf3); tt_assert(tor_gzip_uncompress(&buf3, &len2, buf2, len1-16, ZLIB_METHOD, 1, LOG_INFO)); tt_assert(!buf3); /* Now, try streaming compression. */ tor_free(buf1); tor_free(buf2); tor_free(buf3); state = tor_zlib_new(1, ZLIB_METHOD, HIGH_COMPRESSION); tt_assert(state); cp1 = buf1 = tor_malloc(1024); len1 = 1024; ccp2 = "ABCDEFGHIJABCDEFGHIJ"; len2 = 21; tt_assert(tor_zlib_process(state, &cp1, &len1, &ccp2, &len2, 0) == TOR_ZLIB_OK); tt_int_op(0,OP_EQ, len2); /* Make sure we compressed it all. */ tt_assert(cp1 > buf1); len2 = 0; cp2 = cp1; tt_assert(tor_zlib_process(state, &cp1, &len1, &ccp2, &len2, 1) == TOR_ZLIB_DONE); tt_int_op(0,OP_EQ, len2); tt_assert(cp1 > cp2); /* Make sure we really added something. */ tt_assert(!tor_gzip_uncompress(&buf3, &len2, buf1, 1024-len1, ZLIB_METHOD, 1, LOG_WARN)); /* Make sure it compressed right. */ tt_str_op(buf3, OP_EQ, "ABCDEFGHIJABCDEFGHIJ"); tt_int_op(21,OP_EQ, len2); done: if (state) tor_zlib_free(state); tor_free(buf2); tor_free(buf3); tor_free(buf1); } /** Run unit tests for mmap() wrapper functionality. */ static void test_util_mmap(void *arg) { char *fname1 = tor_strdup(get_fname("mapped_1")); char *fname2 = tor_strdup(get_fname("mapped_2")); char *fname3 = tor_strdup(get_fname("mapped_3")); const size_t buflen = 17000; char *buf = tor_malloc(17000); tor_mmap_t *mapping = NULL; (void)arg; crypto_rand(buf, buflen); mapping = tor_mmap_file(fname1); tt_assert(! mapping); write_str_to_file(fname1, "Short file.", 1); mapping = tor_mmap_file(fname1); tt_assert(mapping); tt_int_op(mapping->size,OP_EQ, strlen("Short file.")); tt_str_op(mapping->data,OP_EQ, "Short file."); #ifdef _WIN32 tt_int_op(0, OP_EQ, tor_munmap_file(mapping)); mapping = NULL; tt_assert(unlink(fname1) == 0); #else /* make sure we can unlink. */ tt_assert(unlink(fname1) == 0); tt_str_op(mapping->data,OP_EQ, "Short file."); tt_int_op(0, OP_EQ, tor_munmap_file(mapping)); mapping = NULL; #endif /* Now a zero-length file. */ write_str_to_file(fname1, "", 1); mapping = tor_mmap_file(fname1); tt_ptr_op(mapping,OP_EQ, NULL); tt_int_op(ERANGE,OP_EQ, errno); unlink(fname1); /* Make sure that we fail to map a no-longer-existent file. */ mapping = tor_mmap_file(fname1); tt_assert(! mapping); /* Now try a big file that stretches across a few pages and isn't aligned */ write_bytes_to_file(fname2, buf, buflen, 1); mapping = tor_mmap_file(fname2); tt_assert(mapping); tt_int_op(mapping->size,OP_EQ, buflen); tt_mem_op(mapping->data,OP_EQ, buf, buflen); tt_int_op(0, OP_EQ, tor_munmap_file(mapping)); mapping = NULL; /* Now try a big aligned file. */ write_bytes_to_file(fname3, buf, 16384, 1); mapping = tor_mmap_file(fname3); tt_assert(mapping); tt_int_op(mapping->size,OP_EQ, 16384); tt_mem_op(mapping->data,OP_EQ, buf, 16384); tt_int_op(0, OP_EQ, tor_munmap_file(mapping)); mapping = NULL; done: unlink(fname1); unlink(fname2); unlink(fname3); tor_free(fname1); tor_free(fname2); tor_free(fname3); tor_free(buf); tor_munmap_file(mapping); } /** Run unit tests for escaping/unescaping data for use by controllers. */ static void test_util_control_formats(void *arg) { char *out = NULL; const char *inp = "..This is a test\r\n.of the emergency \n..system.\r\n\rZ.\r\n"; size_t sz; (void)arg; sz = read_escaped_data(inp, strlen(inp), &out); tt_str_op(out,OP_EQ, ".This is a test\nof the emergency \n.system.\n\rZ.\n"); tt_int_op(sz,OP_EQ, strlen(out)); done: tor_free(out); } #define test_feq(value1,value2) do { \ double v1 = (value1), v2=(value2); \ double tf_diff = v1-v2; \ double tf_tolerance = ((v1+v2)/2.0)/1e8; \ if (tf_diff<0) tf_diff=-tf_diff; \ if (tf_tolerance<0) tf_tolerance=-tf_tolerance; \ if (tf_diff 1 year are reported in days (warn?) */ /* ignore exact spelling of "days(s)," etc., if present */ format_time_interval(dbuf, sizeof(dbuf), 758635154); tt_int_op(strnlen(dbuf, DBUF_SIZE),OP_LE, DBUF_SIZE - 1); r = tor_sscanf(dbuf, TL_ " " TL_ " " TL_, &day, label_d, &hour, label_h, &min, label_m); tt_int_op(r,OP_EQ, 6); tt_int_op(day,OP_EQ, 8780); tt_ci_char_op(label_d[0],OP_EQ, 'd'); tt_int_op(hour,OP_EQ, 11); tt_ci_char_op(label_h[0],OP_EQ, 'h'); tt_int_op(min,OP_EQ, 59); tt_ci_char_op(label_m[0],OP_EQ, 'm'); /* negative periods > 1 year are reported in days (warn?) */ format_time_interval(dbuf, sizeof(dbuf), -1427014922); tt_int_op(strnlen(dbuf, DBUF_SIZE),OP_LE, DBUF_SIZE - 1); r = tor_sscanf(dbuf, TL_ " " TL_ " " TL_, &day, label_d, &hour, label_h, &min, label_m); tt_int_op(r,OP_EQ, 6); tt_int_op(day,OP_EQ, 16516); tt_ci_char_op(label_d[0],OP_EQ, 'd'); tt_int_op(hour,OP_EQ, 9); tt_ci_char_op(label_h[0],OP_EQ, 'h'); tt_int_op(min,OP_EQ, 2); tt_ci_char_op(label_m[0],OP_EQ, 'm'); #if SIZEOF_LONG == 4 || SIZEOF_LONG == 8 /* We can try INT32_MIN/MAX */ /* Always ignore second(s) */ /* INT32_MAX */ format_time_interval(dbuf, sizeof(dbuf), 2147483647); tt_int_op(strnlen(dbuf, DBUF_SIZE),OP_LE, DBUF_SIZE - 1); r = tor_sscanf(dbuf, TL_ " " TL_ " " TL_, &day, label_d, &hour, label_h, &min, label_m); tt_int_op(r,OP_EQ, 6); tt_int_op(day,OP_EQ, 24855); tt_ci_char_op(label_d[0],OP_EQ, 'd'); tt_int_op(hour,OP_EQ, 3); tt_ci_char_op(label_h[0],OP_EQ, 'h'); tt_int_op(min,OP_EQ, 14); tt_ci_char_op(label_m[0],OP_EQ, 'm'); /* and 7 seconds - ignored */ /* INT32_MIN: check that we get the absolute value of interval, * which doesn't actually fit in int32_t. * We expect INT32_MAX or INT32_MAX + 1 with 64 bit longs */ format_time_interval(dbuf, sizeof(dbuf), -2147483647L - 1L); tt_int_op(strnlen(dbuf, DBUF_SIZE),OP_LE, DBUF_SIZE - 1); r = tor_sscanf(dbuf, TL_ " " TL_ " " TL_, &day, label_d, &hour, label_h, &min, label_m); tt_int_op(r,OP_EQ, 6); tt_int_op(day,OP_EQ, 24855); tt_ci_char_op(label_d[0],OP_EQ, 'd'); tt_int_op(hour,OP_EQ, 3); tt_ci_char_op(label_h[0],OP_EQ, 'h'); tt_int_op(min,OP_EQ, 14); tt_ci_char_op(label_m[0],OP_EQ, 'm'); /* and 7 or 8 seconds - ignored */ #endif #if SIZEOF_LONG == 8 /* We can try INT64_MIN/MAX */ /* Always ignore second(s) */ /* INT64_MAX */ format_time_interval(dbuf, sizeof(dbuf), 9223372036854775807L); tt_int_op(strnlen(dbuf, DBUF_SIZE),OP_LE, DBUF_SIZE - 1); r = tor_sscanf(dbuf, TL_ " " TL_ " " TL_, &day, label_d, &hour, label_h, &min, label_m); tt_int_op(r,OP_EQ, 6); tt_int_op(day,OP_EQ, 106751991167300L); tt_ci_char_op(label_d[0],OP_EQ, 'd'); tt_int_op(hour,OP_EQ, 15); tt_ci_char_op(label_h[0],OP_EQ, 'h'); tt_int_op(min,OP_EQ, 30); tt_ci_char_op(label_m[0],OP_EQ, 'm'); /* and 7 seconds - ignored */ /* INT64_MIN: check that we get the absolute value of interval, * which doesn't actually fit in int64_t. * We expect INT64_MAX */ format_time_interval(dbuf, sizeof(dbuf), -9223372036854775807L - 1L); tt_int_op(strnlen(dbuf, DBUF_SIZE),OP_LE, DBUF_SIZE - 1); r = tor_sscanf(dbuf, TL_ " " TL_ " " TL_, &day, label_d, &hour, label_h, &min, label_m); tt_int_op(r,OP_EQ, 6); tt_int_op(day,OP_EQ, 106751991167300L); tt_ci_char_op(label_d[0],OP_EQ, 'd'); tt_int_op(hour,OP_EQ, 15); tt_ci_char_op(label_h[0],OP_EQ, 'h'); tt_int_op(min,OP_EQ, 30); tt_ci_char_op(label_m[0],OP_EQ, 'm'); /* and 7 or 8 seconds - ignored */ #endif done: ; } #undef tt_char_op #undef tt_ci_char_op #undef DBUF_SIZE #undef T_ #undef LABEL_SIZE #undef L_ #undef TL_ static void test_util_path_is_relative(void *arg) { /* OS-independent tests */ (void)arg; tt_int_op(1,OP_EQ, path_is_relative("")); tt_int_op(1,OP_EQ, path_is_relative("dir")); tt_int_op(1,OP_EQ, path_is_relative("dir/")); tt_int_op(1,OP_EQ, path_is_relative("./dir")); tt_int_op(1,OP_EQ, path_is_relative("../dir")); tt_int_op(0,OP_EQ, path_is_relative("/")); tt_int_op(0,OP_EQ, path_is_relative("/dir")); tt_int_op(0,OP_EQ, path_is_relative("/dir/")); /* Windows */ #ifdef _WIN32 /* I don't have Windows so I can't test this, hence the "#ifdef 0". These are tests that look useful, so please try to get them running and uncomment if it all works as it should */ tt_int_op(1,OP_EQ, path_is_relative("dir")); tt_int_op(1,OP_EQ, path_is_relative("dir\\")); tt_int_op(1,OP_EQ, path_is_relative("dir\\a:")); tt_int_op(1,OP_EQ, path_is_relative("dir\\a:\\")); tt_int_op(1,OP_EQ, path_is_relative("http:\\dir")); tt_int_op(0,OP_EQ, path_is_relative("\\dir")); tt_int_op(0,OP_EQ, path_is_relative("a:\\dir")); tt_int_op(0,OP_EQ, path_is_relative("z:\\dir")); #endif done: ; } /** Run unittests for memory area allocator */ static void test_util_memarea(void *arg) { memarea_t *area = memarea_new(); char *p1, *p2, *p3, *p1_orig; void *malloced_ptr = NULL; int i; (void)arg; tt_assert(area); p1_orig = p1 = memarea_alloc(area,64); p2 = memarea_alloc_zero(area,52); p3 = memarea_alloc(area,11); tt_assert(memarea_owns_ptr(area, p1)); tt_assert(memarea_owns_ptr(area, p2)); tt_assert(memarea_owns_ptr(area, p3)); /* Make sure we left enough space. */ tt_assert(p1+64 <= p2); tt_assert(p2+52 <= p3); /* Make sure we aligned. */ tt_int_op(((uintptr_t)p1) % sizeof(void*),OP_EQ, 0); tt_int_op(((uintptr_t)p2) % sizeof(void*),OP_EQ, 0); tt_int_op(((uintptr_t)p3) % sizeof(void*),OP_EQ, 0); tt_assert(!memarea_owns_ptr(area, p3+8192)); tt_assert(!memarea_owns_ptr(area, p3+30)); tt_assert(tor_mem_is_zero(p2, 52)); /* Make sure we don't overalign. */ p1 = memarea_alloc(area, 1); p2 = memarea_alloc(area, 1); tt_ptr_op(p1+sizeof(void*),OP_EQ, p2); { malloced_ptr = tor_malloc(64); tt_assert(!memarea_owns_ptr(area, malloced_ptr)); tor_free(malloced_ptr); } /* memarea_memdup */ { malloced_ptr = tor_malloc(64); crypto_rand((char*)malloced_ptr, 64); p1 = memarea_memdup(area, malloced_ptr, 64); tt_assert(p1 != malloced_ptr); tt_mem_op(p1,OP_EQ, malloced_ptr, 64); tor_free(malloced_ptr); } /* memarea_strdup. */ p1 = memarea_strdup(area,""); p2 = memarea_strdup(area, "abcd"); tt_assert(p1); tt_assert(p2); tt_str_op(p1,OP_EQ, ""); tt_str_op(p2,OP_EQ, "abcd"); /* memarea_strndup. */ { const char *s = "Ad ogni porta batte la morte e grida: il nome!"; /* (From Turandot, act 3.) */ size_t len = strlen(s); p1 = memarea_strndup(area, s, 1000); p2 = memarea_strndup(area, s, 10); tt_str_op(p1,OP_EQ, s); tt_assert(p2 >= p1 + len + 1); tt_mem_op(s,OP_EQ, p2, 10); tt_int_op(p2[10],OP_EQ, '\0'); p3 = memarea_strndup(area, s, len); tt_str_op(p3,OP_EQ, s); p3 = memarea_strndup(area, s, len-1); tt_mem_op(s,OP_EQ, p3, len-1); tt_int_op(p3[len-1],OP_EQ, '\0'); } memarea_clear(area); p1 = memarea_alloc(area, 1); tt_ptr_op(p1,OP_EQ, p1_orig); memarea_clear(area); /* Check for running over an area's size. */ for (i = 0; i < 512; ++i) { p1 = memarea_alloc(area, crypto_rand_int(5)+1); tt_assert(memarea_owns_ptr(area, p1)); } memarea_assert_ok(area); /* Make sure we can allocate a too-big object. */ p1 = memarea_alloc_zero(area, 9000); p2 = memarea_alloc_zero(area, 16); tt_assert(memarea_owns_ptr(area, p1)); tt_assert(memarea_owns_ptr(area, p2)); done: memarea_drop_all(area); tor_free(malloced_ptr); } /** Run unit tests for utility functions to get file names relative to * the data directory. */ static void test_util_datadir(void *arg) { char buf[1024]; char *f = NULL; char *temp_dir = NULL; (void)arg; temp_dir = get_datadir_fname(NULL); f = get_datadir_fname("state"); tor_snprintf(buf, sizeof(buf), "%s"PATH_SEPARATOR"state", temp_dir); tt_str_op(f,OP_EQ, buf); tor_free(f); f = get_datadir_fname2("cache", "thingy"); tor_snprintf(buf, sizeof(buf), "%s"PATH_SEPARATOR"cache"PATH_SEPARATOR"thingy", temp_dir); tt_str_op(f,OP_EQ, buf); tor_free(f); f = get_datadir_fname2_suffix("cache", "thingy", ".foo"); tor_snprintf(buf, sizeof(buf), "%s"PATH_SEPARATOR"cache"PATH_SEPARATOR"thingy.foo", temp_dir); tt_str_op(f,OP_EQ, buf); tor_free(f); f = get_datadir_fname_suffix("cache", ".foo"); tor_snprintf(buf, sizeof(buf), "%s"PATH_SEPARATOR"cache.foo", temp_dir); tt_str_op(f,OP_EQ, buf); done: tor_free(f); tor_free(temp_dir); } static void test_util_strtok(void *arg) { char buf[128]; char buf2[128]; int i; char *cp1, *cp2; (void)arg; for (i = 0; i < 3; i++) { const char *pad1="", *pad2=""; switch (i) { case 0: break; case 1: pad1 = " "; pad2 = "!"; break; case 2: pad1 = " "; pad2 = ";!"; break; } tor_snprintf(buf, sizeof(buf), "%s", pad1); tor_snprintf(buf2, sizeof(buf2), "%s", pad2); tt_assert(NULL == tor_strtok_r_impl(buf, " ", &cp1)); tt_assert(NULL == tor_strtok_r_impl(buf2, ".!..;!", &cp2)); tor_snprintf(buf, sizeof(buf), "%sGraved on the dark in gestures of descent%s", pad1, pad1); tor_snprintf(buf2, sizeof(buf2), "%sthey.seemed;;their!.own;most.perfect;monument%s",pad2,pad2); /* -- "Year's End", Richard Wilbur */ tt_str_op("Graved",OP_EQ, tor_strtok_r_impl(buf, " ", &cp1)); tt_str_op("they",OP_EQ, tor_strtok_r_impl(buf2, ".!..;!", &cp2)); #define S1() tor_strtok_r_impl(NULL, " ", &cp1) #define S2() tor_strtok_r_impl(NULL, ".!..;!", &cp2) tt_str_op("on",OP_EQ, S1()); tt_str_op("the",OP_EQ, S1()); tt_str_op("dark",OP_EQ, S1()); tt_str_op("seemed",OP_EQ, S2()); tt_str_op("their",OP_EQ, S2()); tt_str_op("own",OP_EQ, S2()); tt_str_op("in",OP_EQ, S1()); tt_str_op("gestures",OP_EQ, S1()); tt_str_op("of",OP_EQ, S1()); tt_str_op("most",OP_EQ, S2()); tt_str_op("perfect",OP_EQ, S2()); tt_str_op("descent",OP_EQ, S1()); tt_str_op("monument",OP_EQ, S2()); tt_ptr_op(NULL,OP_EQ, S1()); tt_ptr_op(NULL,OP_EQ, S2()); } buf[0] = 0; tt_ptr_op(NULL,OP_EQ, tor_strtok_r_impl(buf, " ", &cp1)); tt_ptr_op(NULL,OP_EQ, tor_strtok_r_impl(buf, "!", &cp1)); strlcpy(buf, "Howdy!", sizeof(buf)); tt_str_op("Howdy",OP_EQ, tor_strtok_r_impl(buf, "!", &cp1)); tt_ptr_op(NULL,OP_EQ, tor_strtok_r_impl(NULL, "!", &cp1)); strlcpy(buf, " ", sizeof(buf)); tt_ptr_op(NULL,OP_EQ, tor_strtok_r_impl(buf, " ", &cp1)); strlcpy(buf, " ", sizeof(buf)); tt_ptr_op(NULL,OP_EQ, tor_strtok_r_impl(buf, " ", &cp1)); strlcpy(buf, "something ", sizeof(buf)); tt_str_op("something",OP_EQ, tor_strtok_r_impl(buf, " ", &cp1)); tt_ptr_op(NULL,OP_EQ, tor_strtok_r_impl(NULL, ";", &cp1)); done: ; } static void test_util_find_str_at_start_of_line(void *ptr) { const char *long_string = "howdy world. how are you? i hope it's fine.\n" "hello kitty\n" "third line"; char *line2 = strchr(long_string,'\n')+1; char *line3 = strchr(line2,'\n')+1; const char *short_string = "hello kitty\n" "second line\n"; char *short_line2 = strchr(short_string,'\n')+1; (void)ptr; tt_ptr_op(long_string,OP_EQ, find_str_at_start_of_line(long_string, "")); tt_ptr_op(NULL,OP_EQ, find_str_at_start_of_line(short_string, "nonsense")); tt_ptr_op(NULL,OP_EQ, find_str_at_start_of_line(long_string, "nonsense")); tt_ptr_op(NULL,OP_EQ, find_str_at_start_of_line(long_string, "\n")); tt_ptr_op(NULL,OP_EQ, find_str_at_start_of_line(long_string, "how ")); tt_ptr_op(NULL,OP_EQ, find_str_at_start_of_line(long_string, "kitty")); tt_ptr_op(long_string,OP_EQ, find_str_at_start_of_line(long_string, "h")); tt_ptr_op(long_string,OP_EQ, find_str_at_start_of_line(long_string, "how")); tt_ptr_op(line2,OP_EQ, find_str_at_start_of_line(long_string, "he")); tt_ptr_op(line2,OP_EQ, find_str_at_start_of_line(long_string, "hell")); tt_ptr_op(line2,OP_EQ, find_str_at_start_of_line(long_string, "hello k")); tt_ptr_op(line2,OP_EQ, find_str_at_start_of_line(long_string, "hello kitty\n")); tt_ptr_op(line2,OP_EQ, find_str_at_start_of_line(long_string, "hello kitty\nt")); tt_ptr_op(line3,OP_EQ, find_str_at_start_of_line(long_string, "third")); tt_ptr_op(line3,OP_EQ, find_str_at_start_of_line(long_string, "third line")); tt_ptr_op(NULL, OP_EQ, find_str_at_start_of_line(long_string, "third line\n")); tt_ptr_op(short_line2,OP_EQ, find_str_at_start_of_line(short_string, "second line\n")); done: ; } static void test_util_string_is_C_identifier(void *ptr) { (void)ptr; tt_int_op(1,OP_EQ, string_is_C_identifier("string_is_C_identifier")); tt_int_op(1,OP_EQ, string_is_C_identifier("_string_is_C_identifier")); tt_int_op(1,OP_EQ, string_is_C_identifier("_")); tt_int_op(1,OP_EQ, string_is_C_identifier("i")); tt_int_op(1,OP_EQ, string_is_C_identifier("_____")); tt_int_op(1,OP_EQ, string_is_C_identifier("__00__")); tt_int_op(1,OP_EQ, string_is_C_identifier("__init__")); tt_int_op(1,OP_EQ, string_is_C_identifier("_0")); tt_int_op(1,OP_EQ, string_is_C_identifier("_0string_is_C_identifier")); tt_int_op(1,OP_EQ, string_is_C_identifier("_0")); tt_int_op(0,OP_EQ, string_is_C_identifier("0_string_is_C_identifier")); tt_int_op(0,OP_EQ, string_is_C_identifier("0")); tt_int_op(0,OP_EQ, string_is_C_identifier("")); tt_int_op(0,OP_EQ, string_is_C_identifier(";")); tt_int_op(0,OP_EQ, string_is_C_identifier("i;")); tt_int_op(0,OP_EQ, string_is_C_identifier("_;")); tt_int_op(0,OP_EQ, string_is_C_identifier("í")); tt_int_op(0,OP_EQ, string_is_C_identifier("ñ")); done: ; } static void test_util_asprintf(void *ptr) { #define LOREMIPSUM \ "Lorem ipsum dolor sit amet, consectetur adipisicing elit" char *cp=NULL, *cp2=NULL; int r; (void)ptr; /* simple string */ r = tor_asprintf(&cp, "simple string 100%% safe"); tt_assert(cp); tt_str_op("simple string 100% safe",OP_EQ, cp); tt_int_op(strlen(cp),OP_EQ, r); tor_free(cp); /* empty string */ r = tor_asprintf(&cp, "%s", ""); tt_assert(cp); tt_str_op("",OP_EQ, cp); tt_int_op(strlen(cp),OP_EQ, r); tor_free(cp); /* numbers (%i) */ r = tor_asprintf(&cp, "I like numbers-%2i, %i, etc.", -1, 2); tt_assert(cp); tt_str_op("I like numbers--1, 2, etc.",OP_EQ, cp); tt_int_op(strlen(cp),OP_EQ, r); /* don't free cp; next test uses it. */ /* numbers (%d) */ r = tor_asprintf(&cp2, "First=%d, Second=%d", 101, 202); tt_assert(cp2); tt_int_op(strlen(cp2),OP_EQ, r); tt_str_op("First=101, Second=202",OP_EQ, cp2); tt_assert(cp != cp2); tor_free(cp); tor_free(cp2); /* Glass-box test: a string exactly 128 characters long. */ r = tor_asprintf(&cp, "Lorem1: %sLorem2: %s", LOREMIPSUM, LOREMIPSUM); tt_assert(cp); tt_int_op(128,OP_EQ, r); tt_int_op(cp[128], OP_EQ, '\0'); tt_str_op("Lorem1: "LOREMIPSUM"Lorem2: "LOREMIPSUM,OP_EQ, cp); tor_free(cp); /* String longer than 128 characters */ r = tor_asprintf(&cp, "1: %s 2: %s 3: %s", LOREMIPSUM, LOREMIPSUM, LOREMIPSUM); tt_assert(cp); tt_int_op(strlen(cp),OP_EQ, r); tt_str_op("1: "LOREMIPSUM" 2: "LOREMIPSUM" 3: "LOREMIPSUM,OP_EQ, cp); done: tor_free(cp); tor_free(cp2); } static void test_util_listdir(void *ptr) { smartlist_t *dir_contents = NULL; char *fname1=NULL, *fname2=NULL, *fname3=NULL, *dir1=NULL, *dirname=NULL; int r; (void)ptr; fname1 = tor_strdup(get_fname("hopscotch")); fname2 = tor_strdup(get_fname("mumblety-peg")); fname3 = tor_strdup(get_fname(".hidden-file")); dir1 = tor_strdup(get_fname("some-directory")); dirname = tor_strdup(get_fname(NULL)); tt_int_op(0,OP_EQ, write_str_to_file(fname1, "X\n", 0)); tt_int_op(0,OP_EQ, write_str_to_file(fname2, "Y\n", 0)); tt_int_op(0,OP_EQ, write_str_to_file(fname3, "Z\n", 0)); #ifdef _WIN32 r = mkdir(dir1); #else r = mkdir(dir1, 0700); #endif if (r) { fprintf(stderr, "Can't create directory %s:", dir1); perror(""); exit(1); } dir_contents = tor_listdir(dirname); tt_assert(dir_contents); /* make sure that each filename is listed. */ tt_assert(smartlist_contains_string_case(dir_contents, "hopscotch")); tt_assert(smartlist_contains_string_case(dir_contents, "mumblety-peg")); tt_assert(smartlist_contains_string_case(dir_contents, ".hidden-file")); tt_assert(smartlist_contains_string_case(dir_contents, "some-directory")); tt_assert(!smartlist_contains_string(dir_contents, ".")); tt_assert(!smartlist_contains_string(dir_contents, "..")); done: tor_free(fname1); tor_free(fname2); tor_free(fname3); tor_free(dir1); tor_free(dirname); if (dir_contents) { SMARTLIST_FOREACH(dir_contents, char *, cp, tor_free(cp)); smartlist_free(dir_contents); } } static void test_util_parent_dir(void *ptr) { char *cp; (void)ptr; #define T(output,expect_ok,input) \ do { \ int ok; \ cp = tor_strdup(input); \ ok = get_parent_directory(cp); \ tt_int_op(expect_ok, OP_EQ, ok); \ if (ok==0) \ tt_str_op(output, OP_EQ, cp); \ tor_free(cp); \ } while (0); T("/home/wombat", 0, "/home/wombat/knish"); T("/home/wombat", 0, "/home/wombat/knish/"); T("/home/wombat", 0, "/home/wombat/knish///"); T("./home/wombat", 0, "./home/wombat/knish/"); T("/", 0, "/home"); T("/", 0, "/home//"); T(".", 0, "./wombat"); T(".", 0, "./wombat/"); T(".", 0, "./wombat//"); T("wombat", 0, "wombat/foo"); T("wombat/..", 0, "wombat/../foo"); T("wombat/../", 0, "wombat/..//foo"); /* Is this correct? */ T("wombat/.", 0, "wombat/./foo"); T("wombat/./", 0, "wombat/.//foo"); /* Is this correct? */ T("wombat", 0, "wombat/..//"); T("wombat", 0, "wombat/foo/"); T("wombat", 0, "wombat/.foo"); T("wombat", 0, "wombat/.foo/"); T("wombat", -1, ""); T("w", -1, ""); T("wombat", 0, "wombat/knish"); T("/", 0, "/"); T("/", 0, "////"); done: tor_free(cp); } static void test_util_ftruncate(void *ptr) { char *buf = NULL; const char *fname; int fd = -1; const char *message = "Hello world"; const char *message2 = "Hola mundo"; struct stat st; (void) ptr; fname = get_fname("ftruncate"); fd = tor_open_cloexec(fname, O_WRONLY|O_CREAT, 0600); tt_int_op(fd, OP_GE, 0); /* Make the file be there. */ tt_int_op(strlen(message), OP_EQ, write_all(fd, message, strlen(message),0)); tt_int_op((int)tor_fd_getpos(fd), OP_EQ, strlen(message)); tt_int_op(0, OP_EQ, fstat(fd, &st)); tt_int_op((int)st.st_size, OP_EQ, strlen(message)); /* Truncate and see if it got truncated */ tt_int_op(0, OP_EQ, tor_ftruncate(fd)); tt_int_op((int)tor_fd_getpos(fd), OP_EQ, 0); tt_int_op(0, OP_EQ, fstat(fd, &st)); tt_int_op((int)st.st_size, OP_EQ, 0); /* Replace, and see if it got replaced */ tt_int_op(strlen(message2), OP_EQ, write_all(fd, message2, strlen(message2), 0)); tt_int_op((int)tor_fd_getpos(fd), OP_EQ, strlen(message2)); tt_int_op(0, OP_EQ, fstat(fd, &st)); tt_int_op((int)st.st_size, OP_EQ, strlen(message2)); close(fd); fd = -1; buf = read_file_to_str(fname, 0, NULL); tt_str_op(message2, OP_EQ, buf); done: if (fd >= 0) close(fd); tor_free(buf); } #ifdef _WIN32 static void test_util_load_win_lib(void *ptr) { HANDLE h = load_windows_system_library(_T("advapi32.dll")); (void) ptr; tt_assert(h); done: if (h) FreeLibrary(h); } #endif #ifndef _WIN32 static void clear_hex_errno(char *hex_errno) { memset(hex_errno, '\0', HEX_ERRNO_SIZE + 1); } static void test_util_exit_status(void *ptr) { /* Leave an extra byte for a \0 so we can do string comparison */ char hex_errno[HEX_ERRNO_SIZE + 1]; int n; (void)ptr; clear_hex_errno(hex_errno); tt_str_op("",OP_EQ, hex_errno); clear_hex_errno(hex_errno); n = format_helper_exit_status(0, 0, hex_errno); tt_str_op("0/0\n",OP_EQ, hex_errno); tt_int_op(n,OP_EQ, strlen(hex_errno)); #if SIZEOF_INT == 4 clear_hex_errno(hex_errno); n = format_helper_exit_status(0, 0x7FFFFFFF, hex_errno); tt_str_op("0/7FFFFFFF\n",OP_EQ, hex_errno); tt_int_op(n,OP_EQ, strlen(hex_errno)); clear_hex_errno(hex_errno); n = format_helper_exit_status(0xFF, -0x80000000, hex_errno); tt_str_op("FF/-80000000\n",OP_EQ, hex_errno); tt_int_op(n,OP_EQ, strlen(hex_errno)); tt_int_op(n,OP_EQ, HEX_ERRNO_SIZE); #elif SIZEOF_INT == 8 clear_hex_errno(hex_errno); n = format_helper_exit_status(0, 0x7FFFFFFFFFFFFFFF, hex_errno); tt_str_op("0/7FFFFFFFFFFFFFFF\n",OP_EQ, hex_errno); tt_int_op(n,OP_EQ, strlen(hex_errno)); clear_hex_errno(hex_errno); n = format_helper_exit_status(0xFF, -0x8000000000000000, hex_errno); tt_str_op("FF/-8000000000000000\n",OP_EQ, hex_errno); tt_int_op(n,OP_EQ, strlen(hex_errno)); tt_int_op(n,OP_EQ, HEX_ERRNO_SIZE); #endif clear_hex_errno(hex_errno); n = format_helper_exit_status(0x7F, 0, hex_errno); tt_str_op("7F/0\n",OP_EQ, hex_errno); tt_int_op(n,OP_EQ, strlen(hex_errno)); clear_hex_errno(hex_errno); n = format_helper_exit_status(0x08, -0x242, hex_errno); tt_str_op("8/-242\n",OP_EQ, hex_errno); tt_int_op(n,OP_EQ, strlen(hex_errno)); clear_hex_errno(hex_errno); tt_str_op("",OP_EQ, hex_errno); done: ; } #endif #ifndef _WIN32 /* Check that fgets with a non-blocking pipe returns partial lines and sets * EAGAIN, returns full lines and sets no error, and returns NULL on EOF and * sets no error */ static void test_util_fgets_eagain(void *ptr) { int test_pipe[2] = {-1, -1}; int retval; ssize_t retlen; char *retptr; FILE *test_stream = NULL; char buf[4] = { 0 }; (void)ptr; errno = 0; /* Set up a pipe to test on */ retval = pipe(test_pipe); tt_int_op(retval, OP_EQ, 0); /* Set up the read-end to be non-blocking */ retval = fcntl(test_pipe[0], F_SETFL, O_NONBLOCK); tt_int_op(retval, OP_EQ, 0); /* Open it as a stdio stream */ test_stream = fdopen(test_pipe[0], "r"); tt_ptr_op(test_stream, OP_NE, NULL); /* Send in a partial line */ retlen = write(test_pipe[1], "A", 1); tt_int_op(retlen, OP_EQ, 1); retptr = fgets(buf, sizeof(buf), test_stream); tt_int_op(errno, OP_EQ, EAGAIN); tt_ptr_op(retptr, OP_EQ, buf); tt_str_op(buf, OP_EQ, "A"); errno = 0; /* Send in the rest */ retlen = write(test_pipe[1], "B\n", 2); tt_int_op(retlen, OP_EQ, 2); retptr = fgets(buf, sizeof(buf), test_stream); tt_int_op(errno, OP_EQ, 0); tt_ptr_op(retptr, OP_EQ, buf); tt_str_op(buf, OP_EQ, "B\n"); errno = 0; /* Send in a full line */ retlen = write(test_pipe[1], "CD\n", 3); tt_int_op(retlen, OP_EQ, 3); retptr = fgets(buf, sizeof(buf), test_stream); tt_int_op(errno, OP_EQ, 0); tt_ptr_op(retptr, OP_EQ, buf); tt_str_op(buf, OP_EQ, "CD\n"); errno = 0; /* Send in a partial line */ retlen = write(test_pipe[1], "E", 1); tt_int_op(retlen, OP_EQ, 1); retptr = fgets(buf, sizeof(buf), test_stream); tt_int_op(errno, OP_EQ, EAGAIN); tt_ptr_op(retptr, OP_EQ, buf); tt_str_op(buf, OP_EQ, "E"); errno = 0; /* Send in the rest */ retlen = write(test_pipe[1], "F\n", 2); tt_int_op(retlen, OP_EQ, 2); retptr = fgets(buf, sizeof(buf), test_stream); tt_int_op(errno, OP_EQ, 0); tt_ptr_op(retptr, OP_EQ, buf); tt_str_op(buf, OP_EQ, "F\n"); errno = 0; /* Send in a full line and close */ retlen = write(test_pipe[1], "GH", 2); tt_int_op(retlen, OP_EQ, 2); retval = close(test_pipe[1]); tt_int_op(retval, OP_EQ, 0); test_pipe[1] = -1; retptr = fgets(buf, sizeof(buf), test_stream); tt_int_op(errno, OP_EQ, 0); tt_ptr_op(retptr, OP_EQ, buf); tt_str_op(buf, OP_EQ, "GH"); errno = 0; /* Check for EOF */ retptr = fgets(buf, sizeof(buf), test_stream); tt_int_op(errno, OP_EQ, 0); tt_ptr_op(retptr, OP_EQ, NULL); retval = feof(test_stream); tt_int_op(retval, OP_NE, 0); errno = 0; /* Check that buf is unchanged according to C99 and C11 */ tt_str_op(buf, OP_EQ, "GH"); done: if (test_stream != NULL) fclose(test_stream); if (test_pipe[0] != -1) close(test_pipe[0]); if (test_pipe[1] != -1) close(test_pipe[1]); } #endif /** * Test for format_hex_number_sigsafe() */ static void test_util_format_hex_number(void *ptr) { int i, len; char buf[33]; const struct { const char *str; unsigned int x; } test_data[] = { {"0", 0}, {"1", 1}, {"273A", 0x273a}, {"FFFF", 0xffff}, {"7FFFFFFF", 0x7fffffff}, {"FFFFFFFF", 0xffffffff}, #if UINT_MAX >= 0xffffffff {"31BC421D", 0x31bc421d}, {"FFFFFFFF", 0xffffffff}, #endif {NULL, 0} }; (void)ptr; for (i = 0; test_data[i].str != NULL; ++i) { len = format_hex_number_sigsafe(test_data[i].x, buf, sizeof(buf)); tt_int_op(len,OP_NE, 0); tt_int_op(len,OP_EQ, strlen(buf)); tt_str_op(buf,OP_EQ, test_data[i].str); } tt_int_op(4,OP_EQ, format_hex_number_sigsafe(0xffff, buf, 5)); tt_str_op(buf,OP_EQ, "FFFF"); tt_int_op(0,OP_EQ, format_hex_number_sigsafe(0xffff, buf, 4)); tt_int_op(0,OP_EQ, format_hex_number_sigsafe(0, buf, 1)); done: return; } /** * Test for format_hex_number_sigsafe() */ static void test_util_format_dec_number(void *ptr) { int i, len; char buf[33]; const struct { const char *str; unsigned int x; } test_data[] = { {"0", 0}, {"1", 1}, {"1234", 1234}, {"12345678", 12345678}, {"99999999", 99999999}, {"100000000", 100000000}, {"4294967295", 4294967295u}, #if UINT_MAX > 0xffffffff {"18446744073709551615", 18446744073709551615u }, #endif {NULL, 0} }; (void)ptr; for (i = 0; test_data[i].str != NULL; ++i) { len = format_dec_number_sigsafe(test_data[i].x, buf, sizeof(buf)); tt_int_op(len,OP_NE, 0); tt_int_op(len,OP_EQ, strlen(buf)); tt_str_op(buf,OP_EQ, test_data[i].str); len = format_dec_number_sigsafe(test_data[i].x, buf, (int)(strlen(test_data[i].str) + 1)); tt_int_op(len,OP_EQ, strlen(buf)); tt_str_op(buf,OP_EQ, test_data[i].str); } tt_int_op(4,OP_EQ, format_dec_number_sigsafe(7331, buf, 5)); tt_str_op(buf,OP_EQ, "7331"); tt_int_op(0,OP_EQ, format_dec_number_sigsafe(7331, buf, 4)); tt_int_op(1,OP_EQ, format_dec_number_sigsafe(0, buf, 2)); tt_int_op(0,OP_EQ, format_dec_number_sigsafe(0, buf, 1)); done: return; } /** * Test that we can properly format a Windows command line */ static void test_util_join_win_cmdline(void *ptr) { /* Based on some test cases from "Parsing C++ Command-Line Arguments" in * MSDN but we don't exercise all quoting rules because tor_join_win_cmdline * will try to only generate simple cases for the child process to parse; * i.e. we never embed quoted strings in arguments. */ const char *argvs[][4] = { {"a", "bb", "CCC", NULL}, // Normal {NULL, NULL, NULL, NULL}, // Empty argument list {"", NULL, NULL, NULL}, // Empty argument {"\"a", "b\"b", "CCC\"", NULL}, // Quotes {"a\tbc", "dd dd", "E", NULL}, // Whitespace {"a\\\\\\b", "de fg", "H", NULL}, // Backslashes {"a\\\"b", "\\c", "D\\", NULL}, // Backslashes before quote {"a\\\\b c", "d", "E", NULL}, // Backslashes not before quote { NULL } // Terminator }; const char *cmdlines[] = { "a bb CCC", "", "\"\"", "\\\"a b\\\"b CCC\\\"", "\"a\tbc\" \"dd dd\" E", "a\\\\\\b \"de fg\" H", "a\\\\\\\"b \\c D\\", "\"a\\\\b c\" d E", NULL // Terminator }; int i; char *joined_argv = NULL; (void)ptr; for (i=0; cmdlines[i]!=NULL; i++) { log_info(LD_GENERAL, "Joining argvs[%d], expecting <%s>", i, cmdlines[i]); joined_argv = tor_join_win_cmdline(argvs[i]); tt_str_op(cmdlines[i],OP_EQ, joined_argv); tor_free(joined_argv); } done: tor_free(joined_argv); } #define MAX_SPLIT_LINE_COUNT 4 struct split_lines_test_t { const char *orig_line; // Line to be split (may contain \0's) int orig_length; // Length of orig_line const char *split_line[MAX_SPLIT_LINE_COUNT]; // Split lines }; /** * Test that we properly split a buffer into lines */ static void test_util_split_lines(void *ptr) { /* Test cases. orig_line of last test case must be NULL. * The last element of split_line[i] must be NULL. */ struct split_lines_test_t tests[] = { {"", 0, {NULL}}, {"foo", 3, {"foo", NULL}}, {"\n\rfoo\n\rbar\r\n", 12, {"foo", "bar", NULL}}, {"fo o\r\nb\tar", 10, {"fo o", "b.ar", NULL}}, {"\x0f""f\0o\0\n\x01""b\0r\0\r", 12, {".f.o.", ".b.r.", NULL}}, {"line 1\r\nline 2", 14, {"line 1", "line 2", NULL}}, {"line 1\r\n\r\nline 2", 16, {"line 1", "line 2", NULL}}, {"line 1\r\n\r\r\r\nline 2", 18, {"line 1", "line 2", NULL}}, {"line 1\r\n\n\n\n\rline 2", 18, {"line 1", "line 2", NULL}}, {"line 1\r\n\r\t\r\nline 3", 18, {"line 1", ".", "line 3", NULL}}, {"\n\t\r\t\nline 3", 11, {".", ".", "line 3", NULL}}, {NULL, 0, { NULL }} }; int i, j; char *orig_line=NULL; smartlist_t *sl=NULL; (void)ptr; for (i=0; tests[i].orig_line; i++) { sl = smartlist_new(); /* Allocate space for string and trailing NULL */ orig_line = tor_memdup(tests[i].orig_line, tests[i].orig_length + 1); tor_split_lines(sl, orig_line, tests[i].orig_length); j = 0; log_info(LD_GENERAL, "Splitting test %d of length %d", i, tests[i].orig_length); SMARTLIST_FOREACH_BEGIN(sl, const char *, line) { /* Check we have not got too many lines */ tt_int_op(MAX_SPLIT_LINE_COUNT, OP_GT, j); /* Check that there actually should be a line here */ tt_assert(tests[i].split_line[j] != NULL); log_info(LD_GENERAL, "Line %d of test %d, should be <%s>", j, i, tests[i].split_line[j]); /* Check that the line is as expected */ tt_str_op(line,OP_EQ, tests[i].split_line[j]); j++; } SMARTLIST_FOREACH_END(line); /* Check that we didn't miss some lines */ tt_ptr_op(NULL,OP_EQ, tests[i].split_line[j]); tor_free(orig_line); smartlist_free(sl); sl = NULL; } done: tor_free(orig_line); smartlist_free(sl); } static void test_util_di_ops(void *arg) { #define LT -1 #define GT 1 #define EQ 0 const struct { const char *a; int want_sign; const char *b; } examples[] = { { "Foo", EQ, "Foo" }, { "foo", GT, "bar", }, { "foobar", EQ ,"foobar" }, { "foobar", LT, "foobaw" }, { "foobar", GT, "f00bar" }, { "foobar", GT, "boobar" }, { "", EQ, "" }, { NULL, 0, NULL }, }; int i; (void)arg; for (i = 0; examples[i].a; ++i) { size_t len = strlen(examples[i].a); int eq1, eq2, neq1, neq2, cmp1, cmp2; tt_int_op(len,OP_EQ, strlen(examples[i].b)); /* We do all of the operations, with operands in both orders. */ eq1 = tor_memeq(examples[i].a, examples[i].b, len); eq2 = tor_memeq(examples[i].b, examples[i].a, len); neq1 = tor_memneq(examples[i].a, examples[i].b, len); neq2 = tor_memneq(examples[i].b, examples[i].a, len); cmp1 = tor_memcmp(examples[i].a, examples[i].b, len); cmp2 = tor_memcmp(examples[i].b, examples[i].a, len); /* Check for correctness of cmp1 */ if (cmp1 < 0 && examples[i].want_sign != LT) TT_DIE(("Assertion failed.")); else if (cmp1 > 0 && examples[i].want_sign != GT) TT_DIE(("Assertion failed.")); else if (cmp1 == 0 && examples[i].want_sign != EQ) TT_DIE(("Assertion failed.")); /* Check for consistency of everything else with cmp1 */ tt_int_op(eq1,OP_EQ, eq2); tt_int_op(neq1,OP_EQ, neq2); tt_int_op(cmp1,OP_EQ, -cmp2); tt_int_op(eq1,OP_EQ, cmp1 == 0); tt_int_op(neq1,OP_EQ, !eq1); } { uint8_t zz = 0; uint8_t ii = 0; int z; /* exhaustively test tor_memeq and tor_memcmp * against each possible single-byte numeric difference * some arithmetic bugs only appear with certain bit patterns */ for (z = 0; z < 256; z++) { for (i = 0; i < 256; i++) { ii = (uint8_t)i; zz = (uint8_t)z; tt_int_op(tor_memeq(&zz, &ii, 1),OP_EQ, zz == ii); tt_int_op(tor_memcmp(&zz, &ii, 1) > 0 ? GT : EQ,OP_EQ, zz > ii ? GT : EQ); tt_int_op(tor_memcmp(&ii, &zz, 1) < 0 ? LT : EQ,OP_EQ, ii < zz ? LT : EQ); } } } tt_int_op(1, OP_EQ, safe_mem_is_zero("", 0)); tt_int_op(1, OP_EQ, safe_mem_is_zero("", 1)); tt_int_op(0, OP_EQ, safe_mem_is_zero("a", 1)); tt_int_op(0, OP_EQ, safe_mem_is_zero("a", 2)); tt_int_op(0, OP_EQ, safe_mem_is_zero("\0a", 2)); tt_int_op(1, OP_EQ, safe_mem_is_zero("\0\0a", 2)); tt_int_op(1, OP_EQ, safe_mem_is_zero("\0\0\0\0\0\0\0\0", 8)); tt_int_op(1, OP_EQ, safe_mem_is_zero("\0\0\0\0\0\0\0\0a", 8)); tt_int_op(0, OP_EQ, safe_mem_is_zero("\0\0\0\0\0\0\0\0a", 9)); done: ; } static void test_util_di_map(void *arg) { (void)arg; di_digest256_map_t *dimap = NULL; uint8_t key1[] = "Robert Anton Wilson "; uint8_t key2[] = "Martin Gardner, _Fads&fallacies"; uint8_t key3[] = "Tom Lehrer, _Be Prepared_. "; uint8_t key4[] = "Ursula Le Guin,_A Wizard of... "; char dflt_entry[] = "'You have made a good beginning', but no more"; tt_int_op(32, ==, sizeof(key1)); tt_int_op(32, ==, sizeof(key2)); tt_int_op(32, ==, sizeof(key3)); tt_ptr_op(dflt_entry, ==, dimap_search(dimap, key1, dflt_entry)); char *str1 = tor_strdup("You are precisely as big as what you love" " and precisely as small as what you allow" " to annoy you."); char *str2 = tor_strdup("Let us hope that Lysenko's success in Russia will" " serve for many generations to come as another" " reminder to the world of how quickly and easily" " a science can be corrupted when ignorant" " political leaders deem themselves competent" " to arbitrate scientific disputes"); char *str3 = tor_strdup("Don't write naughty words on walls " "if you can't spell."); dimap_add_entry(&dimap, key1, str1); dimap_add_entry(&dimap, key2, str2); dimap_add_entry(&dimap, key3, str3); tt_ptr_op(str1, ==, dimap_search(dimap, key1, dflt_entry)); tt_ptr_op(str3, ==, dimap_search(dimap, key3, dflt_entry)); tt_ptr_op(str2, ==, dimap_search(dimap, key2, dflt_entry)); tt_ptr_op(dflt_entry, ==, dimap_search(dimap, key4, dflt_entry)); done: dimap_free(dimap, tor_free_); } /** * Test counting high bits */ static void test_util_n_bits_set(void *ptr) { (void)ptr; tt_int_op(0,OP_EQ, n_bits_set_u8(0)); tt_int_op(1,OP_EQ, n_bits_set_u8(1)); tt_int_op(3,OP_EQ, n_bits_set_u8(7)); tt_int_op(1,OP_EQ, n_bits_set_u8(8)); tt_int_op(2,OP_EQ, n_bits_set_u8(129)); tt_int_op(8,OP_EQ, n_bits_set_u8(255)); done: ; } /** * Test LHS whitespace (and comment) eater */ static void test_util_eat_whitespace(void *ptr) { const char ws[] = { ' ', '\t', '\r' }; /* Except NL */ char str[80]; size_t i; (void)ptr; /* Try one leading ws */ strlcpy(str, "fuubaar", sizeof(str)); for (i = 0; i < sizeof(ws); ++i) { str[0] = ws[i]; tt_ptr_op(str + 1,OP_EQ, eat_whitespace(str)); tt_ptr_op(str + 1,OP_EQ, eat_whitespace_eos(str, str + strlen(str))); tt_ptr_op(str + 1,OP_EQ, eat_whitespace_no_nl(str)); tt_ptr_op(str + 1,OP_EQ, eat_whitespace_eos_no_nl(str, str + strlen(str))); } str[0] = '\n'; tt_ptr_op(str + 1,OP_EQ, eat_whitespace(str)); tt_ptr_op(str + 1,OP_EQ, eat_whitespace_eos(str, str + strlen(str))); tt_ptr_op(str,OP_EQ, eat_whitespace_no_nl(str)); tt_ptr_op(str,OP_EQ, eat_whitespace_eos_no_nl(str, str + strlen(str))); /* Empty string */ strlcpy(str, "", sizeof(str)); tt_ptr_op(str,OP_EQ, eat_whitespace(str)); tt_ptr_op(str,OP_EQ, eat_whitespace_eos(str, str)); tt_ptr_op(str,OP_EQ, eat_whitespace_no_nl(str)); tt_ptr_op(str,OP_EQ, eat_whitespace_eos_no_nl(str, str)); /* Only ws */ strlcpy(str, " \t\r\n", sizeof(str)); tt_ptr_op(str + strlen(str),OP_EQ, eat_whitespace(str)); tt_ptr_op(str + strlen(str),OP_EQ, eat_whitespace_eos(str, str + strlen(str))); tt_ptr_op(str + strlen(str) - 1,OP_EQ, eat_whitespace_no_nl(str)); tt_ptr_op(str + strlen(str) - 1,OP_EQ, eat_whitespace_eos_no_nl(str, str + strlen(str))); strlcpy(str, " \t\r ", sizeof(str)); tt_ptr_op(str + strlen(str),OP_EQ, eat_whitespace(str)); tt_ptr_op(str + strlen(str),OP_EQ, eat_whitespace_eos(str, str + strlen(str))); tt_ptr_op(str + strlen(str),OP_EQ, eat_whitespace_no_nl(str)); tt_ptr_op(str + strlen(str),OP_EQ, eat_whitespace_eos_no_nl(str, str + strlen(str))); /* Multiple ws */ strlcpy(str, "fuubaar", sizeof(str)); for (i = 0; i < sizeof(ws); ++i) str[i] = ws[i]; tt_ptr_op(str + sizeof(ws),OP_EQ, eat_whitespace(str)); tt_ptr_op(str + sizeof(ws),OP_EQ, eat_whitespace_eos(str, str + strlen(str))); tt_ptr_op(str + sizeof(ws),OP_EQ, eat_whitespace_no_nl(str)); tt_ptr_op(str + sizeof(ws),OP_EQ, eat_whitespace_eos_no_nl(str, str + strlen(str))); /* Eat comment */ strlcpy(str, "# Comment \n No Comment", sizeof(str)); tt_str_op("No Comment",OP_EQ, eat_whitespace(str)); tt_str_op("No Comment",OP_EQ, eat_whitespace_eos(str, str + strlen(str))); tt_ptr_op(str,OP_EQ, eat_whitespace_no_nl(str)); tt_ptr_op(str,OP_EQ, eat_whitespace_eos_no_nl(str, str + strlen(str))); /* Eat comment & ws mix */ strlcpy(str, " # \t Comment \n\t\nNo Comment", sizeof(str)); tt_str_op("No Comment",OP_EQ, eat_whitespace(str)); tt_str_op("No Comment",OP_EQ, eat_whitespace_eos(str, str + strlen(str))); tt_ptr_op(str + 1,OP_EQ, eat_whitespace_no_nl(str)); tt_ptr_op(str + 1,OP_EQ, eat_whitespace_eos_no_nl(str, str + strlen(str))); /* Eat entire comment */ strlcpy(str, "#Comment", sizeof(str)); tt_ptr_op(str + strlen(str),OP_EQ, eat_whitespace(str)); tt_ptr_op(str + strlen(str),OP_EQ, eat_whitespace_eos(str, str + strlen(str))); tt_ptr_op(str,OP_EQ, eat_whitespace_no_nl(str)); tt_ptr_op(str,OP_EQ, eat_whitespace_eos_no_nl(str, str + strlen(str))); /* Blank line, then comment */ strlcpy(str, " \t\n # Comment", sizeof(str)); tt_ptr_op(str + strlen(str),OP_EQ, eat_whitespace(str)); tt_ptr_op(str + strlen(str),OP_EQ, eat_whitespace_eos(str, str + strlen(str))); tt_ptr_op(str + 2,OP_EQ, eat_whitespace_no_nl(str)); tt_ptr_op(str + 2,OP_EQ, eat_whitespace_eos_no_nl(str, str + strlen(str))); done: ; } /** Return a newly allocated smartlist containing the lines of text in * lines. The returned strings are heap-allocated, and must be * freed by the caller. * * XXXX? Move to container.[hc] ? */ static smartlist_t * smartlist_new_from_text_lines(const char *lines) { smartlist_t *sl = smartlist_new(); char *last_line; smartlist_split_string(sl, lines, "\n", 0, 0); last_line = smartlist_pop_last(sl); if (last_line != NULL && *last_line != '\0') { smartlist_add(sl, last_line); } else { tor_free(last_line); } return sl; } /** Test smartlist_new_from_text_lines */ static void test_util_sl_new_from_text_lines(void *ptr) { (void)ptr; { /* Normal usage */ smartlist_t *sl = smartlist_new_from_text_lines("foo\nbar\nbaz\n"); int sl_len = smartlist_len(sl); tt_want_int_op(sl_len, OP_EQ, 3); if (sl_len > 0) tt_want_str_op(smartlist_get(sl, 0), OP_EQ, "foo"); if (sl_len > 1) tt_want_str_op(smartlist_get(sl, 1), OP_EQ, "bar"); if (sl_len > 2) tt_want_str_op(smartlist_get(sl, 2), OP_EQ, "baz"); SMARTLIST_FOREACH(sl, void *, x, tor_free(x)); smartlist_free(sl); } { /* No final newline */ smartlist_t *sl = smartlist_new_from_text_lines("foo\nbar\nbaz"); int sl_len = smartlist_len(sl); tt_want_int_op(sl_len, OP_EQ, 3); if (sl_len > 0) tt_want_str_op(smartlist_get(sl, 0), OP_EQ, "foo"); if (sl_len > 1) tt_want_str_op(smartlist_get(sl, 1), OP_EQ, "bar"); if (sl_len > 2) tt_want_str_op(smartlist_get(sl, 2), OP_EQ, "baz"); SMARTLIST_FOREACH(sl, void *, x, tor_free(x)); smartlist_free(sl); } { /* No newlines */ smartlist_t *sl = smartlist_new_from_text_lines("foo"); int sl_len = smartlist_len(sl); tt_want_int_op(sl_len, OP_EQ, 1); if (sl_len > 0) tt_want_str_op(smartlist_get(sl, 0), OP_EQ, "foo"); SMARTLIST_FOREACH(sl, void *, x, tor_free(x)); smartlist_free(sl); } { /* No text at all */ smartlist_t *sl = smartlist_new_from_text_lines(""); int sl_len = smartlist_len(sl); tt_want_int_op(sl_len, OP_EQ, 0); SMARTLIST_FOREACH(sl, void *, x, tor_free(x)); smartlist_free(sl); } } static void test_util_envnames(void *ptr) { (void) ptr; tt_assert(environment_variable_names_equal("abc", "abc")); tt_assert(environment_variable_names_equal("abc", "abc=")); tt_assert(environment_variable_names_equal("abc", "abc=def")); tt_assert(environment_variable_names_equal("abc=def", "abc")); tt_assert(environment_variable_names_equal("abc=def", "abc=ghi")); tt_assert(environment_variable_names_equal("abc", "abc")); tt_assert(environment_variable_names_equal("abc", "abc=")); tt_assert(environment_variable_names_equal("abc", "abc=def")); tt_assert(environment_variable_names_equal("abc=def", "abc")); tt_assert(environment_variable_names_equal("abc=def", "abc=ghi")); tt_assert(!environment_variable_names_equal("abc", "abcd")); tt_assert(!environment_variable_names_equal("abc=", "abcd")); tt_assert(!environment_variable_names_equal("abc=", "abcd")); tt_assert(!environment_variable_names_equal("abc=", "def")); tt_assert(!environment_variable_names_equal("abc=", "def=")); tt_assert(!environment_variable_names_equal("abc=x", "def=x")); tt_assert(!environment_variable_names_equal("", "a=def")); /* A bit surprising. */ tt_assert(environment_variable_names_equal("", "=def")); tt_assert(environment_variable_names_equal("=y", "=x")); done: ; } /** Test process_environment_make */ static void test_util_make_environment(void *ptr) { const char *env_vars_string = "PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/bin\n" "HOME=/home/foozer\n"; const char expected_windows_env_block[] = "HOME=/home/foozer\000" "PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/bin\000" "\000"; size_t expected_windows_env_block_len = sizeof(expected_windows_env_block) - 1; smartlist_t *env_vars = smartlist_new_from_text_lines(env_vars_string); smartlist_t *env_vars_sorted = smartlist_new(); smartlist_t *env_vars_in_unixoid_env_block_sorted = smartlist_new(); process_environment_t *env; (void)ptr; env = process_environment_make(env_vars); /* Check that the Windows environment block is correct. */ tt_want(tor_memeq(expected_windows_env_block, env->windows_environment_block, expected_windows_env_block_len)); /* Now for the Unixoid environment block. We don't care which order * these environment variables are in, so we sort both lists first. */ smartlist_add_all(env_vars_sorted, env_vars); { char **v; for (v = env->unixoid_environment_block; *v; ++v) { smartlist_add(env_vars_in_unixoid_env_block_sorted, *v); } } smartlist_sort_strings(env_vars_sorted); smartlist_sort_strings(env_vars_in_unixoid_env_block_sorted); tt_want_int_op(smartlist_len(env_vars_sorted), OP_EQ, smartlist_len(env_vars_in_unixoid_env_block_sorted)); { int len = smartlist_len(env_vars_sorted); int i; if (smartlist_len(env_vars_in_unixoid_env_block_sorted) < len) { len = smartlist_len(env_vars_in_unixoid_env_block_sorted); } for (i = 0; i < len; ++i) { tt_want_str_op(smartlist_get(env_vars_sorted, i), OP_EQ, smartlist_get(env_vars_in_unixoid_env_block_sorted, i)); } } /* Clean up. */ smartlist_free(env_vars_in_unixoid_env_block_sorted); smartlist_free(env_vars_sorted); SMARTLIST_FOREACH(env_vars, char *, x, tor_free(x)); smartlist_free(env_vars); process_environment_free(env); } /** Test set_environment_variable_in_smartlist */ static void test_util_set_env_var_in_sl(void *ptr) { /* The environment variables in these strings are in arbitrary * order; we sort the resulting lists before comparing them. * * (They *will not* end up in the order shown in * expected_resulting_env_vars_string.) */ const char *base_env_vars_string = "PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/bin\n" "HOME=/home/foozer\n" "TERM=xterm\n" "SHELL=/bin/ksh\n" "USER=foozer\n" "LOGNAME=foozer\n" "USERNAME=foozer\n" "LANG=en_US.utf8\n" ; const char *new_env_vars_string = "TERM=putty\n" "DISPLAY=:18.0\n" ; const char *expected_resulting_env_vars_string = "PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/bin\n" "HOME=/home/foozer\n" "TERM=putty\n" "SHELL=/bin/ksh\n" "USER=foozer\n" "LOGNAME=foozer\n" "USERNAME=foozer\n" "LANG=en_US.utf8\n" "DISPLAY=:18.0\n" ; smartlist_t *merged_env_vars = smartlist_new_from_text_lines(base_env_vars_string); smartlist_t *new_env_vars = smartlist_new_from_text_lines(new_env_vars_string); smartlist_t *expected_resulting_env_vars = smartlist_new_from_text_lines(expected_resulting_env_vars_string); /* Elements of merged_env_vars are heap-allocated, and must be * freed. Some of them are (or should) be freed by * set_environment_variable_in_smartlist. * * Elements of new_env_vars are heap-allocated, but are copied into * merged_env_vars, so they are not freed separately at the end of * the function. * * Elements of expected_resulting_env_vars are heap-allocated, and * must be freed. */ (void)ptr; SMARTLIST_FOREACH(new_env_vars, char *, env_var, set_environment_variable_in_smartlist(merged_env_vars, env_var, tor_free_, 1)); smartlist_sort_strings(merged_env_vars); smartlist_sort_strings(expected_resulting_env_vars); tt_want_int_op(smartlist_len(merged_env_vars), OP_EQ, smartlist_len(expected_resulting_env_vars)); { int len = smartlist_len(merged_env_vars); int i; if (smartlist_len(expected_resulting_env_vars) < len) { len = smartlist_len(expected_resulting_env_vars); } for (i = 0; i < len; ++i) { tt_want_str_op(smartlist_get(merged_env_vars, i), OP_EQ, smartlist_get(expected_resulting_env_vars, i)); } } /* Clean up. */ SMARTLIST_FOREACH(merged_env_vars, char *, x, tor_free(x)); smartlist_free(merged_env_vars); smartlist_free(new_env_vars); SMARTLIST_FOREACH(expected_resulting_env_vars, char *, x, tor_free(x)); smartlist_free(expected_resulting_env_vars); } static void test_util_weak_random(void *arg) { int i, j, n[16]; tor_weak_rng_t rng; (void) arg; tor_init_weak_random(&rng, (unsigned)time(NULL)); for (i = 1; i <= 256; ++i) { for (j=0;j<100;++j) { int r = tor_weak_random_range(&rng, i); tt_int_op(0, OP_LE, r); tt_int_op(r, OP_LT, i); } } memset(n,0,sizeof(n)); for (j=0;j<8192;++j) { n[tor_weak_random_range(&rng, 16)]++; } for (i=0;i<16;++i) tt_int_op(n[i], OP_GT, 0); done: ; } static void test_util_mathlog(void *arg) { double d; (void) arg; d = tor_mathlog(2.718281828); tt_double_op(fabs(d - 1.0), OP_LT, .000001); d = tor_mathlog(10); tt_double_op(fabs(d - 2.30258509), OP_LT, .000001); done: ; } static void test_util_round_to_next_multiple_of(void *arg) { (void)arg; tt_u64_op(round_uint64_to_next_multiple_of(0,1), ==, 0); tt_u64_op(round_uint64_to_next_multiple_of(0,7), ==, 0); tt_u64_op(round_uint64_to_next_multiple_of(99,1), ==, 99); tt_u64_op(round_uint64_to_next_multiple_of(99,7), ==, 105); tt_u64_op(round_uint64_to_next_multiple_of(99,9), ==, 99); tt_i64_op(round_int64_to_next_multiple_of(0,1), ==, 0); tt_i64_op(round_int64_to_next_multiple_of(0,7), ==, 0); tt_i64_op(round_int64_to_next_multiple_of(99,1), ==, 99); tt_i64_op(round_int64_to_next_multiple_of(99,7), ==, 105); tt_i64_op(round_int64_to_next_multiple_of(99,9), ==, 99); tt_i64_op(round_int64_to_next_multiple_of(-99,1), ==, -99); tt_i64_op(round_int64_to_next_multiple_of(-99,7), ==, -98); tt_i64_op(round_int64_to_next_multiple_of(-99,9), ==, -99); tt_i64_op(round_int64_to_next_multiple_of(INT64_MIN,2), ==, INT64_MIN); tt_i64_op(round_int64_to_next_multiple_of(INT64_MAX,2), ==, INT64_MAX-INT64_MAX%2); done: ; } static void test_util_laplace(void *arg) { /* Sample values produced using Python's SciPy: * * >>> from scipy.stats import laplace * >>> laplace.ppf([-0.01, 0.0, 0.01, 0.5, 0.51, 0.99, 1.0, 1.01], ... loc = 24, scale = 24) * array([ nan, -inf, -69.88855213, 24. , * 24.48486498, 117.88855213, inf, nan]) */ const double mu = 24.0, b = 24.0; const double delta_f = 15.0, epsilon = 0.3; /* b = 15.0 / 0.3 = 50.0 */ (void)arg; tt_i64_op(INT64_MIN, ==, sample_laplace_distribution(mu, b, 0.0)); tt_i64_op(-69, ==, sample_laplace_distribution(mu, b, 0.01)); tt_i64_op(24, ==, sample_laplace_distribution(mu, b, 0.5)); tt_i64_op(24, ==, sample_laplace_distribution(mu, b, 0.51)); tt_i64_op(117, ==, sample_laplace_distribution(mu, b, 0.99)); /* >>> laplace.ppf([0.0, 0.1, 0.25, 0.5, 0.75, 0.9, 0.99], * ... loc = 0, scale = 50) * array([ -inf, -80.47189562, -34.65735903, 0. , * 34.65735903, 80.47189562, 195.60115027]) */ tt_i64_op(INT64_MIN + 20, ==, add_laplace_noise(20, 0.0, delta_f, epsilon)); tt_i64_op(-60, ==, add_laplace_noise(20, 0.1, delta_f, epsilon)); tt_i64_op(-14, ==, add_laplace_noise(20, 0.25, delta_f, epsilon)); tt_i64_op(20, ==, add_laplace_noise(20, 0.5, delta_f, epsilon)); tt_i64_op(54, ==, add_laplace_noise(20, 0.75, delta_f, epsilon)); tt_i64_op(100, ==, add_laplace_noise(20, 0.9, delta_f, epsilon)); tt_i64_op(215, ==, add_laplace_noise(20, 0.99, delta_f, epsilon)); done: ; } #define UTIL_LEGACY(name) \ { #name, test_util_ ## name , 0, NULL, NULL } #define UTIL_TEST(name, flags) \ { #name, test_util_ ## name, flags, NULL, NULL } #ifdef FD_CLOEXEC #define CAN_CHECK_CLOEXEC static int fd_is_cloexec(tor_socket_t fd) { int flags = fcntl(fd, F_GETFD, 0); return (flags & FD_CLOEXEC) == FD_CLOEXEC; } #endif #ifndef _WIN32 #define CAN_CHECK_NONBLOCK static int fd_is_nonblocking(tor_socket_t fd) { int flags = fcntl(fd, F_GETFL, 0); return (flags & O_NONBLOCK) == O_NONBLOCK; } #endif static void test_util_socket(void *arg) { tor_socket_t fd1 = TOR_INVALID_SOCKET; tor_socket_t fd2 = TOR_INVALID_SOCKET; tor_socket_t fd3 = TOR_INVALID_SOCKET; tor_socket_t fd4 = TOR_INVALID_SOCKET; int n = get_n_open_sockets(); TT_BLATHER(("Starting with %d open sockets.", n)); (void)arg; fd1 = tor_open_socket_with_extensions(AF_INET, SOCK_STREAM, 0, 0, 0); fd2 = tor_open_socket_with_extensions(AF_INET, SOCK_STREAM, 0, 0, 1); tt_assert(SOCKET_OK(fd1)); tt_assert(SOCKET_OK(fd2)); tt_int_op(get_n_open_sockets(), OP_EQ, n + 2); //fd3 = tor_open_socket_with_extensions(AF_INET, SOCK_STREAM, 0, 1, 0); //fd4 = tor_open_socket_with_extensions(AF_INET, SOCK_STREAM, 0, 1, 1); fd3 = tor_open_socket(AF_INET, SOCK_STREAM, 0); fd4 = tor_open_socket_nonblocking(AF_INET, SOCK_STREAM, 0); tt_assert(SOCKET_OK(fd3)); tt_assert(SOCKET_OK(fd4)); tt_int_op(get_n_open_sockets(), OP_EQ, n + 4); #ifdef CAN_CHECK_CLOEXEC tt_int_op(fd_is_cloexec(fd1), OP_EQ, 0); tt_int_op(fd_is_cloexec(fd2), OP_EQ, 0); tt_int_op(fd_is_cloexec(fd3), OP_EQ, 1); tt_int_op(fd_is_cloexec(fd4), OP_EQ, 1); #endif #ifdef CAN_CHECK_NONBLOCK tt_int_op(fd_is_nonblocking(fd1), OP_EQ, 0); tt_int_op(fd_is_nonblocking(fd2), OP_EQ, 1); tt_int_op(fd_is_nonblocking(fd3), OP_EQ, 0); tt_int_op(fd_is_nonblocking(fd4), OP_EQ, 1); #endif tor_close_socket(fd1); tor_close_socket(fd2); fd1 = fd2 = TOR_INVALID_SOCKET; tt_int_op(get_n_open_sockets(), OP_EQ, n + 2); tor_close_socket(fd3); tor_close_socket(fd4); fd3 = fd4 = TOR_INVALID_SOCKET; tt_int_op(get_n_open_sockets(), OP_EQ, n); done: if (SOCKET_OK(fd1)) tor_close_socket(fd1); if (SOCKET_OK(fd2)) tor_close_socket(fd2); if (SOCKET_OK(fd3)) tor_close_socket(fd3); if (SOCKET_OK(fd4)) tor_close_socket(fd4); } /* Test for socketpair and ersatz_socketpair(). We test them both, since * the latter is a tolerably good way to exersize tor_accept_socket(). */ static void test_util_socketpair(void *arg) { const int ersatz = !strcmp(arg, "1"); int (*const tor_socketpair_fn)(int, int, int, tor_socket_t[2]) = ersatz ? tor_ersatz_socketpair : tor_socketpair; int n = get_n_open_sockets(); tor_socket_t fds[2] = {TOR_INVALID_SOCKET, TOR_INVALID_SOCKET}; const int family = AF_UNIX; tt_int_op(0, OP_EQ, tor_socketpair_fn(family, SOCK_STREAM, 0, fds)); tt_assert(SOCKET_OK(fds[0])); tt_assert(SOCKET_OK(fds[1])); tt_int_op(get_n_open_sockets(), OP_EQ, n + 2); #ifdef CAN_CHECK_CLOEXEC tt_int_op(fd_is_cloexec(fds[0]), OP_EQ, 1); tt_int_op(fd_is_cloexec(fds[1]), OP_EQ, 1); #endif #ifdef CAN_CHECK_NONBLOCK tt_int_op(fd_is_nonblocking(fds[0]), OP_EQ, 0); tt_int_op(fd_is_nonblocking(fds[1]), OP_EQ, 0); #endif done: if (SOCKET_OK(fds[0])) tor_close_socket(fds[0]); if (SOCKET_OK(fds[1])) tor_close_socket(fds[1]); } static void test_util_max_mem(void *arg) { size_t memory1, memory2; int r, r2; (void) arg; r = get_total_system_memory(&memory1); r2 = get_total_system_memory(&memory2); tt_int_op(r, OP_EQ, r2); tt_uint_op(memory2, OP_EQ, memory1); TT_BLATHER(("System memory: "U64_FORMAT, U64_PRINTF_ARG(memory1))); if (r==0) { /* You have at least a megabyte. */ tt_uint_op(memory1, OP_GT, (1<<20)); } else { /* You do not have a petabyte. */ #if SIZEOF_SIZE_T == SIZEOF_UINT64_T tt_u64_op(memory1, OP_LT, (U64_LITERAL(1)<<50)); #endif } done: ; } static void test_util_hostname_validation(void *arg) { (void)arg; // Lets try valid hostnames first. tt_assert(string_is_valid_hostname("torproject.org")); tt_assert(string_is_valid_hostname("ocw.mit.edu")); tt_assert(string_is_valid_hostname("i.4cdn.org")); tt_assert(string_is_valid_hostname("stanford.edu")); tt_assert(string_is_valid_hostname("multiple-words-with-hypens.jp")); // Subdomain name cannot start with '-' or '_'. tt_assert(!string_is_valid_hostname("-torproject.org")); tt_assert(!string_is_valid_hostname("subdomain.-domain.org")); tt_assert(!string_is_valid_hostname("-subdomain.domain.org")); tt_assert(!string_is_valid_hostname("___abc.org")); // Hostnames cannot contain non-alphanumeric characters. tt_assert(!string_is_valid_hostname("%%domain.\\org.")); tt_assert(!string_is_valid_hostname("***x.net")); tt_assert(!string_is_valid_hostname("\xff\xffxyz.org")); tt_assert(!string_is_valid_hostname("word1 word2.net")); // Test workaround for nytimes.com stupidity, technically invalid, // but we allow it since they are big, even though they are failing to // comply with a ~30 year old standard. tt_assert(string_is_valid_hostname("core3_euw1.fabrik.nytimes.com")); // Firefox passes FQDNs with trailing '.'s directly to the SOCKS proxy, // which is redundant since the spec states DOMAINNAME addresses are fully // qualified. While unusual, this should be tollerated. tt_assert(string_is_valid_hostname("core9_euw1.fabrik.nytimes.com.")); tt_assert(!string_is_valid_hostname("..washingtonpost.is.better.com")); tt_assert(!string_is_valid_hostname("so.is..ft.com")); tt_assert(!string_is_valid_hostname("...")); // XXX: do we allow single-label DNS names? // We shouldn't for SOCKS (spec says "contains a fully-qualified domain name" // but only test pathologically malformed traling '.' cases for now. tt_assert(!string_is_valid_hostname(".")); tt_assert(!string_is_valid_hostname("..")); done: return; } static void test_util_ipv4_validation(void *arg) { (void)arg; tt_assert(string_is_valid_ipv4_address("192.168.0.1")); tt_assert(string_is_valid_ipv4_address("8.8.8.8")); tt_assert(!string_is_valid_ipv4_address("abcd")); tt_assert(!string_is_valid_ipv4_address("300.300.300.300")); tt_assert(!string_is_valid_ipv4_address("8.8.")); done: return; } static void test_util_writepid(void *arg) { (void) arg; char *contents = NULL; const char *fname = get_fname("tmp_pid"); unsigned long pid; char c; write_pidfile(fname); contents = read_file_to_str(fname, 0, NULL); tt_assert(contents); int n = sscanf(contents, "%lu\n%c", &pid, &c); tt_int_op(n, OP_EQ, 1); #ifdef _WIN32 tt_uint_op(pid, OP_EQ, _getpid()); #else tt_uint_op(pid, OP_EQ, getpid()); #endif done: tor_free(contents); } static void test_util_get_avail_disk_space(void *arg) { (void) arg; int64_t val; /* No answer for nonexistent directory */ val = tor_get_avail_disk_space("/akljasdfklsajdklasjkldjsa"); tt_i64_op(val, OP_EQ, -1); /* Try the current directory */ val = tor_get_avail_disk_space("."); #if !defined(HAVE_STATVFS) && !defined(_WIN32) tt_i64_op(val, OP_EQ, -1); /* You don't have an implementation for this */ #else tt_i64_op(val, OP_GT, 0); /* You have some space. */ tt_i64_op(val, OP_LT, ((int64_t)1)<<56); /* You don't have a zebibyte */ #endif done: ; } struct testcase_t util_tests[] = { UTIL_LEGACY(time), UTIL_TEST(parse_http_time, 0), UTIL_LEGACY(config_line), UTIL_LEGACY(config_line_quotes), UTIL_LEGACY(config_line_comment_character), UTIL_LEGACY(config_line_escaped_content), #ifndef _WIN32 UTIL_LEGACY(expand_filename), #endif UTIL_LEGACY(escape_string_socks), UTIL_LEGACY(string_is_key_value), UTIL_LEGACY(strmisc), UTIL_LEGACY(pow2), UTIL_LEGACY(gzip), UTIL_LEGACY(datadir), UTIL_LEGACY(memarea), UTIL_LEGACY(control_formats), UTIL_LEGACY(mmap), UTIL_LEGACY(sscanf), UTIL_LEGACY(format_time_interval), UTIL_LEGACY(path_is_relative), UTIL_LEGACY(strtok), UTIL_LEGACY(di_ops), UTIL_TEST(di_map, 0), UTIL_TEST(round_to_next_multiple_of, 0), UTIL_TEST(laplace, 0), UTIL_TEST(find_str_at_start_of_line, 0), UTIL_TEST(string_is_C_identifier, 0), UTIL_TEST(asprintf, 0), UTIL_TEST(listdir, 0), UTIL_TEST(parent_dir, 0), UTIL_TEST(ftruncate, 0), #ifdef _WIN32 UTIL_TEST(load_win_lib, 0), #endif #ifndef _WIN32 UTIL_TEST(exit_status, 0), UTIL_TEST(fgets_eagain, 0), #endif UTIL_TEST(format_hex_number, 0), UTIL_TEST(format_dec_number, 0), UTIL_TEST(join_win_cmdline, 0), UTIL_TEST(split_lines, 0), UTIL_TEST(n_bits_set, 0), UTIL_TEST(eat_whitespace, 0), UTIL_TEST(sl_new_from_text_lines, 0), UTIL_TEST(envnames, 0), UTIL_TEST(make_environment, 0), UTIL_TEST(set_env_var_in_sl, 0), UTIL_TEST(read_file_eof_tiny_limit, 0), UTIL_TEST(read_file_eof_one_loop_a, 0), UTIL_TEST(read_file_eof_one_loop_b, 0), UTIL_TEST(read_file_eof_two_loops, 0), UTIL_TEST(read_file_eof_two_loops_b, 0), UTIL_TEST(read_file_eof_zero_bytes, 0), UTIL_TEST(write_chunks_to_file, 0), UTIL_TEST(mathlog, 0), UTIL_TEST(weak_random, 0), UTIL_TEST(socket, TT_FORK), { "socketpair", test_util_socketpair, TT_FORK, &passthrough_setup, (void*)"0" }, { "socketpair_ersatz", test_util_socketpair, TT_FORK, &passthrough_setup, (void*)"1" }, UTIL_TEST(max_mem, 0), UTIL_TEST(hostname_validation, 0), UTIL_TEST(ipv4_validation, 0), UTIL_TEST(writepid, 0), UTIL_TEST(get_avail_disk_space, 0), END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_config.c0000644000175000017500000033376412621363246013654 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #define CONFIG_PRIVATE #define PT_PRIVATE #include "or.h" #include "addressmap.h" #include "config.h" #include "confparse.h" #include "connection_edge.h" #include "test.h" #include "util.h" #include "address.h" #include "entrynodes.h" #include "transports.h" #include "routerlist.h" static void test_config_addressmap(void *arg) { char buf[1024]; char address[256]; time_t expires = TIME_MAX; (void)arg; strlcpy(buf, "MapAddress .invalidwildcard.com *.torserver.exit\n" // invalid "MapAddress *invalidasterisk.com *.torserver.exit\n" // invalid "MapAddress *.google.com *.torserver.exit\n" "MapAddress *.yahoo.com *.google.com.torserver.exit\n" "MapAddress *.cn.com www.cnn.com\n" "MapAddress *.cnn.com www.cnn.com\n" "MapAddress ex.com www.cnn.com\n" "MapAddress ey.com *.cnn.com\n" "MapAddress www.torproject.org 1.1.1.1\n" "MapAddress other.torproject.org " "this.torproject.org.otherserver.exit\n" "MapAddress test.torproject.org 2.2.2.2\n" "MapAddress www.google.com 3.3.3.3\n" "MapAddress www.example.org 4.4.4.4\n" "MapAddress 4.4.4.4 7.7.7.7\n" "MapAddress 4.4.4.4 5.5.5.5\n" "MapAddress www.infiniteloop.org 6.6.6.6\n" "MapAddress 6.6.6.6 www.infiniteloop.org\n" , sizeof(buf)); config_get_lines(buf, &(get_options_mutable()->AddressMap), 0); config_register_addressmaps(get_options()); /* Use old interface for now, so we don't need to rewrite the unit tests */ #define addressmap_rewrite(a,s,eo,ao) \ addressmap_rewrite((a),(s), ~0, (eo),(ao)) /* MapAddress .invalidwildcard.com .torserver.exit - no match */ strlcpy(address, "www.invalidwildcard.com", sizeof(address)); tt_assert(!addressmap_rewrite(address, sizeof(address), &expires, NULL)); /* MapAddress *invalidasterisk.com .torserver.exit - no match */ strlcpy(address, "www.invalidasterisk.com", sizeof(address)); tt_assert(!addressmap_rewrite(address, sizeof(address), &expires, NULL)); /* Where no mapping for FQDN match on top-level domain */ /* MapAddress .google.com .torserver.exit */ strlcpy(address, "reader.google.com", sizeof(address)); tt_assert(addressmap_rewrite(address, sizeof(address), &expires, NULL)); tt_str_op(address,OP_EQ, "reader.torserver.exit"); /* MapAddress *.yahoo.com *.google.com.torserver.exit */ strlcpy(address, "reader.yahoo.com", sizeof(address)); tt_assert(addressmap_rewrite(address, sizeof(address), &expires, NULL)); tt_str_op(address,OP_EQ, "reader.google.com.torserver.exit"); /*MapAddress *.cnn.com www.cnn.com */ strlcpy(address, "cnn.com", sizeof(address)); tt_assert(addressmap_rewrite(address, sizeof(address), &expires, NULL)); tt_str_op(address,OP_EQ, "www.cnn.com"); /* MapAddress .cn.com www.cnn.com */ strlcpy(address, "www.cn.com", sizeof(address)); tt_assert(addressmap_rewrite(address, sizeof(address), &expires, NULL)); tt_str_op(address,OP_EQ, "www.cnn.com"); /* MapAddress ex.com www.cnn.com - no match */ strlcpy(address, "www.ex.com", sizeof(address)); tt_assert(!addressmap_rewrite(address, sizeof(address), &expires, NULL)); /* MapAddress ey.com *.cnn.com - invalid expression */ strlcpy(address, "ey.com", sizeof(address)); tt_assert(!addressmap_rewrite(address, sizeof(address), &expires, NULL)); /* Where mapping for FQDN match on FQDN */ strlcpy(address, "www.google.com", sizeof(address)); tt_assert(addressmap_rewrite(address, sizeof(address), &expires, NULL)); tt_str_op(address,OP_EQ, "3.3.3.3"); strlcpy(address, "www.torproject.org", sizeof(address)); tt_assert(addressmap_rewrite(address, sizeof(address), &expires, NULL)); tt_str_op(address,OP_EQ, "1.1.1.1"); strlcpy(address, "other.torproject.org", sizeof(address)); tt_assert(addressmap_rewrite(address, sizeof(address), &expires, NULL)); tt_str_op(address,OP_EQ, "this.torproject.org.otherserver.exit"); strlcpy(address, "test.torproject.org", sizeof(address)); tt_assert(addressmap_rewrite(address, sizeof(address), &expires, NULL)); tt_str_op(address,OP_EQ, "2.2.2.2"); /* Test a chain of address mappings and the order in which they were added: "MapAddress www.example.org 4.4.4.4" "MapAddress 4.4.4.4 7.7.7.7" "MapAddress 4.4.4.4 5.5.5.5" */ strlcpy(address, "www.example.org", sizeof(address)); tt_assert(addressmap_rewrite(address, sizeof(address), &expires, NULL)); tt_str_op(address,OP_EQ, "5.5.5.5"); /* Test infinite address mapping results in no change */ strlcpy(address, "www.infiniteloop.org", sizeof(address)); tt_assert(addressmap_rewrite(address, sizeof(address), &expires, NULL)); tt_str_op(address,OP_EQ, "www.infiniteloop.org"); /* Test we don't find false positives */ strlcpy(address, "www.example.com", sizeof(address)); tt_assert(!addressmap_rewrite(address, sizeof(address), &expires, NULL)); /* Test top-level-domain matching a bit harder */ config_free_lines(get_options_mutable()->AddressMap); addressmap_clear_configured(); strlcpy(buf, "MapAddress *.com *.torserver.exit\n" "MapAddress *.torproject.org 1.1.1.1\n" "MapAddress *.net 2.2.2.2\n" , sizeof(buf)); config_get_lines(buf, &(get_options_mutable()->AddressMap), 0); config_register_addressmaps(get_options()); strlcpy(address, "www.abc.com", sizeof(address)); tt_assert(addressmap_rewrite(address, sizeof(address), &expires, NULL)); tt_str_op(address,OP_EQ, "www.abc.torserver.exit"); strlcpy(address, "www.def.com", sizeof(address)); tt_assert(addressmap_rewrite(address, sizeof(address), &expires, NULL)); tt_str_op(address,OP_EQ, "www.def.torserver.exit"); strlcpy(address, "www.torproject.org", sizeof(address)); tt_assert(addressmap_rewrite(address, sizeof(address), &expires, NULL)); tt_str_op(address,OP_EQ, "1.1.1.1"); strlcpy(address, "test.torproject.org", sizeof(address)); tt_assert(addressmap_rewrite(address, sizeof(address), &expires, NULL)); tt_str_op(address,OP_EQ, "1.1.1.1"); strlcpy(address, "torproject.net", sizeof(address)); tt_assert(addressmap_rewrite(address, sizeof(address), &expires, NULL)); tt_str_op(address,OP_EQ, "2.2.2.2"); /* We don't support '*' as a mapping directive */ config_free_lines(get_options_mutable()->AddressMap); addressmap_clear_configured(); strlcpy(buf, "MapAddress * *.torserver.exit\n", sizeof(buf)); config_get_lines(buf, &(get_options_mutable()->AddressMap), 0); config_register_addressmaps(get_options()); strlcpy(address, "www.abc.com", sizeof(address)); tt_assert(!addressmap_rewrite(address, sizeof(address), &expires, NULL)); strlcpy(address, "www.def.net", sizeof(address)); tt_assert(!addressmap_rewrite(address, sizeof(address), &expires, NULL)); strlcpy(address, "www.torproject.org", sizeof(address)); tt_assert(!addressmap_rewrite(address, sizeof(address), &expires, NULL)); #undef addressmap_rewrite done: config_free_lines(get_options_mutable()->AddressMap); get_options_mutable()->AddressMap = NULL; addressmap_free_all(); } static int is_private_dir(const char* path) { struct stat st; int r = stat(path, &st); if (r) { return 0; } #if !defined (_WIN32) if ((st.st_mode & (S_IFDIR | 0777)) != (S_IFDIR | 0700)) { return 0; } #endif return 1; } static void test_config_check_or_create_data_subdir(void *arg) { or_options_t *options = get_options_mutable(); char *datadir; const char *subdir = "test_stats"; char *subpath; struct stat st; int r; #if !defined (_WIN32) unsigned group_permission; #endif (void)arg; tor_free(options->DataDirectory); datadir = options->DataDirectory = tor_strdup(get_fname("datadir-0")); subpath = get_datadir_fname(subdir); #if defined (_WIN32) tt_int_op(mkdir(options->DataDirectory), OP_EQ, 0); #else tt_int_op(mkdir(options->DataDirectory, 0700), OP_EQ, 0); #endif r = stat(subpath, &st); // The subdirectory shouldn't exist yet, // but should be created by the call to check_or_create_data_subdir. tt_assert(r && (errno == ENOENT)); tt_assert(!check_or_create_data_subdir(subdir)); tt_assert(is_private_dir(subpath)); // The check should return 0, if the directory already exists // and is private to the user. tt_assert(!check_or_create_data_subdir(subdir)); r = stat(subpath, &st); if (r) { tt_abort_perror("stat"); } #if !defined (_WIN32) group_permission = st.st_mode | 0070; r = chmod(subpath, group_permission); if (r) { tt_abort_perror("chmod"); } // If the directory exists, but its mode is too permissive // a call to check_or_create_data_subdir should reset the mode. tt_assert(!is_private_dir(subpath)); tt_assert(!check_or_create_data_subdir(subdir)); tt_assert(is_private_dir(subpath)); #endif done: rmdir(subpath); tor_free(datadir); tor_free(subpath); } static void test_config_write_to_data_subdir(void *arg) { or_options_t* options = get_options_mutable(); char *datadir; char *cp = NULL; const char* subdir = "test_stats"; const char* fname = "test_file"; const char* str = "Lorem ipsum dolor sit amet, consetetur sadipscing\n" "elitr, sed diam nonumy eirmod\n" "tempor invidunt ut labore et dolore magna aliquyam\n" "erat, sed diam voluptua.\n" "At vero eos et accusam et justo duo dolores et ea\n" "rebum. Stet clita kasd gubergren,\n" "no sea takimata sanctus est Lorem ipsum dolor sit amet.\n" "Lorem ipsum dolor sit amet,\n" "consetetur sadipscing elitr, sed diam nonumy eirmod\n" "tempor invidunt ut labore et dolore\n" "magna aliquyam erat, sed diam voluptua. At vero eos et\n" "accusam et justo duo dolores et\n" "ea rebum. Stet clita kasd gubergren, no sea takimata\n" "sanctus est Lorem ipsum dolor sit amet."; char* filepath = NULL; (void)arg; tor_free(options->DataDirectory); datadir = options->DataDirectory = tor_strdup(get_fname("datadir-1")); filepath = get_datadir_fname2(subdir, fname); #if defined (_WIN32) tt_int_op(mkdir(options->DataDirectory), OP_EQ, 0); #else tt_int_op(mkdir(options->DataDirectory, 0700), OP_EQ, 0); #endif // Write attempt shoudl fail, if subdirectory doesn't exist. tt_assert(write_to_data_subdir(subdir, fname, str, NULL)); tt_assert(! check_or_create_data_subdir(subdir)); // Content of file after write attempt should be // equal to the original string. tt_assert(!write_to_data_subdir(subdir, fname, str, NULL)); cp = read_file_to_str(filepath, 0, NULL); tt_str_op(cp,OP_EQ, str); tor_free(cp); // A second write operation should overwrite the old content. tt_assert(!write_to_data_subdir(subdir, fname, str, NULL)); cp = read_file_to_str(filepath, 0, NULL); tt_str_op(cp,OP_EQ, str); tor_free(cp); done: (void) unlink(filepath); rmdir(options->DataDirectory); tor_free(datadir); tor_free(filepath); tor_free(cp); } /* Test helper function: Make sure that a bridge line gets parsed * properly. Also make sure that the resulting bridge_line_t structure * has its fields set correctly. */ static void good_bridge_line_test(const char *string, const char *test_addrport, const char *test_digest, const char *test_transport, const smartlist_t *test_socks_args) { char *tmp = NULL; bridge_line_t *bridge_line = parse_bridge_line(string); tt_assert(bridge_line); /* test addrport */ tmp = tor_strdup(fmt_addrport(&bridge_line->addr, bridge_line->port)); tt_str_op(test_addrport,OP_EQ, tmp); tor_free(tmp); /* If we were asked to validate a digest, but we did not get a digest after parsing, we failed. */ if (test_digest && tor_digest_is_zero(bridge_line->digest)) tt_assert(0); /* If we were not asked to validate a digest, and we got a digest after parsing, we failed again. */ if (!test_digest && !tor_digest_is_zero(bridge_line->digest)) tt_assert(0); /* If we were asked to validate a digest, and we got a digest after parsing, make sure it's correct. */ if (test_digest) { tmp = tor_strdup(hex_str(bridge_line->digest, DIGEST_LEN)); tor_strlower(tmp); tt_str_op(test_digest,OP_EQ, tmp); tor_free(tmp); } /* If we were asked to validate a transport name, make sure tha it matches with the transport name that was parsed. */ if (test_transport && !bridge_line->transport_name) tt_assert(0); if (!test_transport && bridge_line->transport_name) tt_assert(0); if (test_transport) tt_str_op(test_transport,OP_EQ, bridge_line->transport_name); /* Validate the SOCKS argument smartlist. */ if (test_socks_args && !bridge_line->socks_args) tt_assert(0); if (!test_socks_args && bridge_line->socks_args) tt_assert(0); if (test_socks_args) tt_assert(smartlist_strings_eq(test_socks_args, bridge_line->socks_args)); done: tor_free(tmp); bridge_line_free(bridge_line); } /* Test helper function: Make sure that a bridge line is * unparseable. */ static void bad_bridge_line_test(const char *string) { bridge_line_t *bridge_line = parse_bridge_line(string); if (bridge_line) TT_FAIL(("%s was supposed to fail, but it didn't.", string)); tt_assert(!bridge_line); done: bridge_line_free(bridge_line); } static void test_config_parse_bridge_line(void *arg) { (void) arg; good_bridge_line_test("192.0.2.1:4123", "192.0.2.1:4123", NULL, NULL, NULL); good_bridge_line_test("192.0.2.1", "192.0.2.1:443", NULL, NULL, NULL); good_bridge_line_test("transport [::1]", "[::1]:443", NULL, "transport", NULL); good_bridge_line_test("transport 192.0.2.1:12 " "4352e58420e68f5e40bf7c74faddccd9d1349413", "192.0.2.1:12", "4352e58420e68f5e40bf7c74faddccd9d1349413", "transport", NULL); { smartlist_t *sl_tmp = smartlist_new(); smartlist_add_asprintf(sl_tmp, "twoandtwo=five"); good_bridge_line_test("transport 192.0.2.1:12 " "4352e58420e68f5e40bf7c74faddccd9d1349413 twoandtwo=five", "192.0.2.1:12", "4352e58420e68f5e40bf7c74faddccd9d1349413", "transport", sl_tmp); SMARTLIST_FOREACH(sl_tmp, char *, s, tor_free(s)); smartlist_free(sl_tmp); } { smartlist_t *sl_tmp = smartlist_new(); smartlist_add_asprintf(sl_tmp, "twoandtwo=five"); smartlist_add_asprintf(sl_tmp, "z=z"); good_bridge_line_test("transport 192.0.2.1:12 twoandtwo=five z=z", "192.0.2.1:12", NULL, "transport", sl_tmp); SMARTLIST_FOREACH(sl_tmp, char *, s, tor_free(s)); smartlist_free(sl_tmp); } { smartlist_t *sl_tmp = smartlist_new(); smartlist_add_asprintf(sl_tmp, "dub=come"); smartlist_add_asprintf(sl_tmp, "save=me"); good_bridge_line_test("transport 192.0.2.1:12 " "4352e58420e68f5e40bf7c74faddccd9d1349666 " "dub=come save=me", "192.0.2.1:12", "4352e58420e68f5e40bf7c74faddccd9d1349666", "transport", sl_tmp); SMARTLIST_FOREACH(sl_tmp, char *, s, tor_free(s)); smartlist_free(sl_tmp); } good_bridge_line_test("192.0.2.1:1231 " "4352e58420e68f5e40bf7c74faddccd9d1349413", "192.0.2.1:1231", "4352e58420e68f5e40bf7c74faddccd9d1349413", NULL, NULL); /* Empty line */ bad_bridge_line_test(""); /* bad transport name */ bad_bridge_line_test("tr$n_sp0r7 190.20.2.2"); /* weird ip address */ bad_bridge_line_test("a.b.c.d"); /* invalid fpr */ bad_bridge_line_test("2.2.2.2:1231 4352e58420e68f5e40bf7c74faddccd9d1349"); /* no k=v in the end */ bad_bridge_line_test("obfs2 2.2.2.2:1231 " "4352e58420e68f5e40bf7c74faddccd9d1349413 what"); /* no addrport */ bad_bridge_line_test("asdw"); /* huge k=v value that can't fit in SOCKS fields */ bad_bridge_line_test( "obfs2 2.2.2.2:1231 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" "aa=b"); } static void test_config_parse_transport_options_line(void *arg) { smartlist_t *options_sl = NULL, *sl_tmp = NULL; (void) arg; { /* too small line */ options_sl = get_options_from_transport_options_line("valley", NULL); tt_assert(!options_sl); } { /* no k=v values */ options_sl = get_options_from_transport_options_line("hit it!", NULL); tt_assert(!options_sl); } { /* correct line, but wrong transport specified */ options_sl = get_options_from_transport_options_line("trebuchet k=v", "rook"); tt_assert(!options_sl); } { /* correct -- no transport specified */ sl_tmp = smartlist_new(); smartlist_add_asprintf(sl_tmp, "ladi=dadi"); smartlist_add_asprintf(sl_tmp, "weliketo=party"); options_sl = get_options_from_transport_options_line("rook ladi=dadi weliketo=party", NULL); tt_assert(options_sl); tt_assert(smartlist_strings_eq(options_sl, sl_tmp)); SMARTLIST_FOREACH(sl_tmp, char *, s, tor_free(s)); smartlist_free(sl_tmp); sl_tmp = NULL; SMARTLIST_FOREACH(options_sl, char *, s, tor_free(s)); smartlist_free(options_sl); options_sl = NULL; } { /* correct -- correct transport specified */ sl_tmp = smartlist_new(); smartlist_add_asprintf(sl_tmp, "ladi=dadi"); smartlist_add_asprintf(sl_tmp, "weliketo=party"); options_sl = get_options_from_transport_options_line("rook ladi=dadi weliketo=party", "rook"); tt_assert(options_sl); tt_assert(smartlist_strings_eq(options_sl, sl_tmp)); SMARTLIST_FOREACH(sl_tmp, char *, s, tor_free(s)); smartlist_free(sl_tmp); sl_tmp = NULL; SMARTLIST_FOREACH(options_sl, char *, s, tor_free(s)); smartlist_free(options_sl); options_sl = NULL; } done: if (options_sl) { SMARTLIST_FOREACH(options_sl, char *, s, tor_free(s)); smartlist_free(options_sl); } if (sl_tmp) { SMARTLIST_FOREACH(sl_tmp, char *, s, tor_free(s)); smartlist_free(sl_tmp); } } /* Mocks needed for the transport plugin line test */ static void pt_kickstart_proxy_mock(const smartlist_t *transport_list, char **proxy_argv, int is_server); static int transport_add_from_config_mock(const tor_addr_t *addr, uint16_t port, const char *name, int socks_ver); static int transport_is_needed_mock(const char *transport_name); static int pt_kickstart_proxy_mock_call_count = 0; static int transport_add_from_config_mock_call_count = 0; static int transport_is_needed_mock_call_count = 0; static int transport_is_needed_mock_return = 0; static void pt_kickstart_proxy_mock(const smartlist_t *transport_list, char **proxy_argv, int is_server) { (void) transport_list; (void) proxy_argv; (void) is_server; /* XXXX check that args are as expected. */ ++pt_kickstart_proxy_mock_call_count; free_execve_args(proxy_argv); } static int transport_add_from_config_mock(const tor_addr_t *addr, uint16_t port, const char *name, int socks_ver) { (void) addr; (void) port; (void) name; (void) socks_ver; /* XXXX check that args are as expected. */ ++transport_add_from_config_mock_call_count; return 0; } static int transport_is_needed_mock(const char *transport_name) { (void) transport_name; /* XXXX check that arg is as expected. */ ++transport_is_needed_mock_call_count; return transport_is_needed_mock_return; } /** * Test parsing for the ClientTransportPlugin and ServerTransportPlugin config * options. */ static void test_config_parse_transport_plugin_line(void *arg) { (void)arg; or_options_t *options = get_options_mutable(); int r, tmp; int old_pt_kickstart_proxy_mock_call_count; int old_transport_add_from_config_mock_call_count; int old_transport_is_needed_mock_call_count; /* Bad transport lines - too short */ r = parse_transport_line(options, "bad", 1, 0); tt_assert(r < 0); r = parse_transport_line(options, "bad", 1, 1); tt_assert(r < 0); r = parse_transport_line(options, "bad bad", 1, 0); tt_assert(r < 0); r = parse_transport_line(options, "bad bad", 1, 1); tt_assert(r < 0); /* Test transport list parsing */ r = parse_transport_line(options, "transport_1 exec /usr/bin/fake-transport", 1, 0); tt_assert(r == 0); r = parse_transport_line(options, "transport_1 exec /usr/bin/fake-transport", 1, 1); tt_assert(r == 0); r = parse_transport_line(options, "transport_1,transport_2 exec /usr/bin/fake-transport", 1, 0); tt_assert(r == 0); r = parse_transport_line(options, "transport_1,transport_2 exec /usr/bin/fake-transport", 1, 1); tt_assert(r == 0); /* Bad transport identifiers */ r = parse_transport_line(options, "transport_* exec /usr/bin/fake-transport", 1, 0); tt_assert(r < 0); r = parse_transport_line(options, "transport_* exec /usr/bin/fake-transport", 1, 1); tt_assert(r < 0); /* Check SOCKS cases for client transport */ r = parse_transport_line(options, "transport_1 socks4 1.2.3.4:567", 1, 0); tt_assert(r == 0); r = parse_transport_line(options, "transport_1 socks5 1.2.3.4:567", 1, 0); tt_assert(r == 0); /* Proxy case for server transport */ r = parse_transport_line(options, "transport_1 proxy 1.2.3.4:567", 1, 1); tt_assert(r == 0); /* Multiple-transport error exit */ r = parse_transport_line(options, "transport_1,transport_2 socks5 1.2.3.4:567", 1, 0); tt_assert(r < 0); r = parse_transport_line(options, "transport_1,transport_2 proxy 1.2.3.4:567", 1, 1); /* No port error exit */ r = parse_transport_line(options, "transport_1 socks5 1.2.3.4", 1, 0); tt_assert(r < 0); r = parse_transport_line(options, "transport_1 proxy 1.2.3.4", 1, 1); tt_assert(r < 0); /* Unparsable address error exit */ r = parse_transport_line(options, "transport_1 socks5 1.2.3:6x7", 1, 0); tt_assert(r < 0); r = parse_transport_line(options, "transport_1 proxy 1.2.3:6x7", 1, 1); tt_assert(r < 0); /* "Strange {Client|Server}TransportPlugin field" error exit */ r = parse_transport_line(options, "transport_1 foo bar", 1, 0); tt_assert(r < 0); r = parse_transport_line(options, "transport_1 foo bar", 1, 1); tt_assert(r < 0); /* No sandbox mode error exit */ tmp = options->Sandbox; options->Sandbox = 1; r = parse_transport_line(options, "transport_1 exec /usr/bin/fake-transport", 1, 0); tt_assert(r < 0); r = parse_transport_line(options, "transport_1 exec /usr/bin/fake-transport", 1, 1); tt_assert(r < 0); options->Sandbox = tmp; /* * These final test cases cover code paths that only activate without * validate_only, so they need mocks in place. */ MOCK(pt_kickstart_proxy, pt_kickstart_proxy_mock); old_pt_kickstart_proxy_mock_call_count = pt_kickstart_proxy_mock_call_count; r = parse_transport_line(options, "transport_1 exec /usr/bin/fake-transport", 0, 1); tt_assert(r == 0); tt_assert(pt_kickstart_proxy_mock_call_count == old_pt_kickstart_proxy_mock_call_count + 1); UNMOCK(pt_kickstart_proxy); /* This one hits a log line in the !validate_only case only */ r = parse_transport_line(options, "transport_1 proxy 1.2.3.4:567", 0, 1); tt_assert(r == 0); /* Check mocked client transport cases */ MOCK(pt_kickstart_proxy, pt_kickstart_proxy_mock); MOCK(transport_add_from_config, transport_add_from_config_mock); MOCK(transport_is_needed, transport_is_needed_mock); /* Unnecessary transport case */ transport_is_needed_mock_return = 0; old_pt_kickstart_proxy_mock_call_count = pt_kickstart_proxy_mock_call_count; old_transport_add_from_config_mock_call_count = transport_add_from_config_mock_call_count; old_transport_is_needed_mock_call_count = transport_is_needed_mock_call_count; r = parse_transport_line(options, "transport_1 exec /usr/bin/fake-transport", 0, 0); /* Should have succeeded */ tt_assert(r == 0); /* transport_is_needed() should have been called */ tt_assert(transport_is_needed_mock_call_count == old_transport_is_needed_mock_call_count + 1); /* * pt_kickstart_proxy() and transport_add_from_config() should * not have been called. */ tt_assert(pt_kickstart_proxy_mock_call_count == old_pt_kickstart_proxy_mock_call_count); tt_assert(transport_add_from_config_mock_call_count == old_transport_add_from_config_mock_call_count); /* Necessary transport case */ transport_is_needed_mock_return = 1; old_pt_kickstart_proxy_mock_call_count = pt_kickstart_proxy_mock_call_count; old_transport_add_from_config_mock_call_count = transport_add_from_config_mock_call_count; old_transport_is_needed_mock_call_count = transport_is_needed_mock_call_count; r = parse_transport_line(options, "transport_1 exec /usr/bin/fake-transport", 0, 0); /* Should have succeeded */ tt_assert(r == 0); /* * transport_is_needed() and pt_kickstart_proxy() should have been * called. */ tt_assert(pt_kickstart_proxy_mock_call_count == old_pt_kickstart_proxy_mock_call_count + 1); tt_assert(transport_is_needed_mock_call_count == old_transport_is_needed_mock_call_count + 1); /* transport_add_from_config() should not have been called. */ tt_assert(transport_add_from_config_mock_call_count == old_transport_add_from_config_mock_call_count); /* proxy case */ transport_is_needed_mock_return = 1; old_pt_kickstart_proxy_mock_call_count = pt_kickstart_proxy_mock_call_count; old_transport_add_from_config_mock_call_count = transport_add_from_config_mock_call_count; old_transport_is_needed_mock_call_count = transport_is_needed_mock_call_count; r = parse_transport_line(options, "transport_1 socks5 1.2.3.4:567", 0, 0); /* Should have succeeded */ tt_assert(r == 0); /* * transport_is_needed() and transport_add_from_config() should have * been called. */ tt_assert(transport_add_from_config_mock_call_count == old_transport_add_from_config_mock_call_count + 1); tt_assert(transport_is_needed_mock_call_count == old_transport_is_needed_mock_call_count + 1); /* pt_kickstart_proxy() should not have been called. */ tt_assert(pt_kickstart_proxy_mock_call_count == old_pt_kickstart_proxy_mock_call_count); /* Done with mocked client transport cases */ UNMOCK(transport_is_needed); UNMOCK(transport_add_from_config); UNMOCK(pt_kickstart_proxy); done: /* Make sure we undo all mocks */ UNMOCK(pt_kickstart_proxy); UNMOCK(transport_add_from_config); UNMOCK(transport_is_needed); return; } // Tests if an options with MyFamily fingerprints missing '$' normalises // them correctly and also ensure it also works with multiple fingerprints static void test_config_fix_my_family(void *arg) { char *err = NULL; const char *family = "$1111111111111111111111111111111111111111, " "1111111111111111111111111111111111111112, " "$1111111111111111111111111111111111111113"; or_options_t* options = options_new(); or_options_t* defaults = options_new(); (void) arg; options_init(options); options_init(defaults); options->MyFamily = tor_strdup(family); options_validate(NULL, options, defaults, 0, &err) ; if (err != NULL) { TT_FAIL(("options_validate failed: %s", err)); } tt_str_op(options->MyFamily,OP_EQ, "$1111111111111111111111111111111111111111, " "$1111111111111111111111111111111111111112, " "$1111111111111111111111111111111111111113"); done: if (err != NULL) { tor_free(err); } or_options_free(options); or_options_free(defaults); } static int n_hostname_01010101 = 0; /** This mock function is meant to replace tor_lookup_hostname(). * It answers with 1.1.1.1 as IP adddress that resulted from lookup. * This function increments n_hostname_01010101 counter by one * every time it is called. */ static int tor_lookup_hostname_01010101(const char *name, uint32_t *addr) { n_hostname_01010101++; if (name && addr) { *addr = ntohl(0x01010101); } return 0; } static int n_hostname_localhost = 0; /** This mock function is meant to replace tor_lookup_hostname(). * It answers with 127.0.0.1 as IP adddress that resulted from lookup. * This function increments n_hostname_localhost counter by one * every time it is called. */ static int tor_lookup_hostname_localhost(const char *name, uint32_t *addr) { n_hostname_localhost++; if (name && addr) { *addr = 0x7f000001; } return 0; } static int n_hostname_failure = 0; /** This mock function is meant to replace tor_lookup_hostname(). * It pretends to fail by returning -1 to caller. Also, this function * increments n_hostname_failure every time it is called. */ static int tor_lookup_hostname_failure(const char *name, uint32_t *addr) { (void)name; (void)addr; n_hostname_failure++; return -1; } static int n_gethostname_replacement = 0; /** This mock function is meant to replace tor_gethostname(). It * responds with string "onionrouter!" as hostname. This function * increments n_gethostname_replacement by one every time * it is called. */ static int tor_gethostname_replacement(char *name, size_t namelen) { n_gethostname_replacement++; if (name && namelen) { strlcpy(name,"onionrouter!",namelen); } return 0; } static int n_gethostname_localhost = 0; /** This mock function is meant to replace tor_gethostname(). It * responds with string "127.0.0.1" as hostname. This function * increments n_gethostname_localhost by one every time * it is called. */ static int tor_gethostname_localhost(char *name, size_t namelen) { n_gethostname_localhost++; if (name && namelen) { strlcpy(name,"127.0.0.1",namelen); } return 0; } static int n_gethostname_failure = 0; /** This mock function is meant to replace tor_gethostname. * It pretends to fail by returning -1. This function increments * n_gethostname_failure by one every time it is called. */ static int tor_gethostname_failure(char *name, size_t namelen) { (void)name; (void)namelen; n_gethostname_failure++; return -1; } static int n_get_interface_address = 0; /** This mock function is meant to replace get_interface_address(). * It answers with address 8.8.8.8. This function increments * n_get_interface_address by one every time it is called. */ static int get_interface_address_08080808(int severity, uint32_t *addr) { (void)severity; n_get_interface_address++; if (addr) { *addr = ntohl(0x08080808); } return 0; } static int n_get_interface_address6 = 0; static sa_family_t last_address6_family; /** This mock function is meant to replace get_interface_address6(). * It answers with IP address 9.9.9.9 iff both of the following are true: * - family is AF_INET * - addr pointer is not NULL. * This function increments n_get_interface_address6 by one every * time it is called. */ static int get_interface_address6_replacement(int severity, sa_family_t family, tor_addr_t *addr) { (void)severity; last_address6_family = family; n_get_interface_address6++; if ((family != AF_INET) || !addr) { return -1; } tor_addr_from_ipv4h(addr,0x09090909); return 0; } static int n_get_interface_address_failure = 0; /** * This mock function is meant to replace get_interface_address(). * It pretends to fail getting interface address by returning -1. * n_get_interface_address_failure is incremented by one * every time this function is called. */ static int get_interface_address_failure(int severity, uint32_t *addr) { (void)severity; (void)addr; n_get_interface_address_failure++; return -1; } static int n_get_interface_address6_failure = 0; /** * This mock function is meant to replace get_interface_addres6(). * It will pretend to fail by return -1. * n_get_interface_address6_failure is incremented by one * every time this function is called and last_address6_family * is assigned the value of family argument. */ static int get_interface_address6_failure(int severity, sa_family_t family, tor_addr_t *addr) { (void)severity; (void)addr; n_get_interface_address6_failure++; last_address6_family = family; return -1; } static void test_config_resolve_my_address(void *arg) { or_options_t *options; uint32_t resolved_addr; const char *method_used; char *hostname_out = NULL; int retval; int prev_n_hostname_01010101; int prev_n_hostname_localhost; int prev_n_hostname_failure; int prev_n_gethostname_replacement; int prev_n_gethostname_failure; int prev_n_gethostname_localhost; int prev_n_get_interface_address; int prev_n_get_interface_address_failure; int prev_n_get_interface_address6; int prev_n_get_interface_address6_failure; (void)arg; options = options_new(); options_init(options); /* * CASE 1: * If options->Address is a valid IPv4 address string, we want * the corresponding address to be parsed and returned. */ options->Address = tor_strdup("128.52.128.105"); retval = resolve_my_address(LOG_NOTICE,options,&resolved_addr, &method_used,&hostname_out); tt_want(retval == 0); tt_want_str_op(method_used,==,"CONFIGURED"); tt_want(hostname_out == NULL); tt_assert(resolved_addr == 0x80348069); tor_free(options->Address); /* * CASE 2: * If options->Address is a valid DNS address, we want resolve_my_address() * function to ask tor_lookup_hostname() for help with resolving it * and return the address that was resolved (in host order). */ MOCK(tor_lookup_hostname,tor_lookup_hostname_01010101); tor_free(options->Address); options->Address = tor_strdup("www.torproject.org"); prev_n_hostname_01010101 = n_hostname_01010101; retval = resolve_my_address(LOG_NOTICE,options,&resolved_addr, &method_used,&hostname_out); tt_want(retval == 0); tt_want(n_hostname_01010101 == prev_n_hostname_01010101 + 1); tt_want_str_op(method_used,==,"RESOLVED"); tt_want_str_op(hostname_out,==,"www.torproject.org"); tt_assert(resolved_addr == 0x01010101); UNMOCK(tor_lookup_hostname); tor_free(options->Address); tor_free(hostname_out); /* * CASE 3: * Given that options->Address is NULL, we want resolve_my_address() * to try and use tor_gethostname() to get hostname AND use * tor_lookup_hostname() to get IP address. */ resolved_addr = 0; tor_free(options->Address); options->Address = NULL; MOCK(tor_gethostname,tor_gethostname_replacement); MOCK(tor_lookup_hostname,tor_lookup_hostname_01010101); prev_n_gethostname_replacement = n_gethostname_replacement; prev_n_hostname_01010101 = n_hostname_01010101; retval = resolve_my_address(LOG_NOTICE,options,&resolved_addr, &method_used,&hostname_out); tt_want(retval == 0); tt_want(n_gethostname_replacement == prev_n_gethostname_replacement + 1); tt_want(n_hostname_01010101 == prev_n_hostname_01010101 + 1); tt_want_str_op(method_used,==,"GETHOSTNAME"); tt_want_str_op(hostname_out,==,"onionrouter!"); tt_assert(resolved_addr == 0x01010101); UNMOCK(tor_gethostname); UNMOCK(tor_lookup_hostname); tor_free(hostname_out); /* * CASE 4: * Given that options->Address is a local host address, we want * resolve_my_address() function to fail. */ resolved_addr = 0; tor_free(options->Address); options->Address = tor_strdup("127.0.0.1"); retval = resolve_my_address(LOG_NOTICE,options,&resolved_addr, &method_used,&hostname_out); tt_want(resolved_addr == 0); tt_assert(retval == -1); tor_free(options->Address); tor_free(hostname_out); /* * CASE 5: * We want resolve_my_address() to fail if DNS address in options->Address * cannot be resolved. */ MOCK(tor_lookup_hostname,tor_lookup_hostname_failure); prev_n_hostname_failure = n_hostname_failure; tor_free(options->Address); options->Address = tor_strdup("www.tor-project.org"); retval = resolve_my_address(LOG_NOTICE,options,&resolved_addr, &method_used,&hostname_out); tt_want(n_hostname_failure == prev_n_hostname_failure + 1); tt_assert(retval == -1); UNMOCK(tor_lookup_hostname); tor_free(options->Address); tor_free(hostname_out); /* * CASE 6: * If options->Address is NULL AND gettting local hostname fails, we want * resolve_my_address() to fail as well. */ MOCK(tor_gethostname,tor_gethostname_failure); prev_n_gethostname_failure = n_gethostname_failure; retval = resolve_my_address(LOG_NOTICE,options,&resolved_addr, &method_used,&hostname_out); tt_want(n_gethostname_failure == prev_n_gethostname_failure + 1); tt_assert(retval == -1); UNMOCK(tor_gethostname); tor_free(hostname_out); /* * CASE 7: * We want resolve_my_address() to try and get network interface address via * get_interface_address() if hostname returned by tor_gethostname() cannot be * resolved into IP address. */ MOCK(tor_gethostname,tor_gethostname_replacement); MOCK(tor_lookup_hostname,tor_lookup_hostname_failure); MOCK(get_interface_address,get_interface_address_08080808); prev_n_gethostname_replacement = n_gethostname_replacement; prev_n_get_interface_address = n_get_interface_address; retval = resolve_my_address(LOG_NOTICE,options,&resolved_addr, &method_used,&hostname_out); tt_want(retval == 0); tt_want_int_op(n_gethostname_replacement, ==, prev_n_gethostname_replacement + 1); tt_want_int_op(n_get_interface_address, ==, prev_n_get_interface_address + 1); tt_want_str_op(method_used,==,"INTERFACE"); tt_want(hostname_out == NULL); tt_assert(resolved_addr == 0x08080808); UNMOCK(get_interface_address); tor_free(hostname_out); /* * CASE 8: * Suppose options->Address is NULL AND hostname returned by tor_gethostname() * is unresolvable. We want resolve_my_address to fail if * get_interface_address() fails. */ MOCK(get_interface_address,get_interface_address_failure); prev_n_get_interface_address_failure = n_get_interface_address_failure; prev_n_gethostname_replacement = n_gethostname_replacement; retval = resolve_my_address(LOG_NOTICE,options,&resolved_addr, &method_used,&hostname_out); tt_want(n_get_interface_address_failure == prev_n_get_interface_address_failure + 1); tt_want(n_gethostname_replacement == prev_n_gethostname_replacement + 1); tt_assert(retval == -1); UNMOCK(get_interface_address); tor_free(hostname_out); /* * CASE 9: * Given that options->Address is NULL AND tor_lookup_hostname() * fails AND hostname returned by gethostname() resolves * to local IP address, we want resolve_my_address() function to * call get_interface_address6(.,AF_INET,.) and return IP address * the latter function has found. */ MOCK(tor_lookup_hostname,tor_lookup_hostname_failure); MOCK(tor_gethostname,tor_gethostname_replacement); MOCK(get_interface_address6,get_interface_address6_replacement); prev_n_gethostname_replacement = n_gethostname_replacement; prev_n_hostname_failure = n_hostname_failure; prev_n_get_interface_address6 = n_get_interface_address6; retval = resolve_my_address(LOG_NOTICE,options,&resolved_addr, &method_used,&hostname_out); tt_want(last_address6_family == AF_INET); tt_want(n_get_interface_address6 == prev_n_get_interface_address6 + 1); tt_want(n_hostname_failure == prev_n_hostname_failure + 1); tt_want(n_gethostname_replacement == prev_n_gethostname_replacement + 1); tt_want(retval == 0); tt_want_str_op(method_used,==,"INTERFACE"); tt_assert(resolved_addr == 0x09090909); UNMOCK(tor_lookup_hostname); UNMOCK(tor_gethostname); UNMOCK(get_interface_address6); tor_free(hostname_out); /* * CASE 10: We want resolve_my_address() to fail if all of the following * are true: * 1. options->Address is not NULL * 2. ... but it cannot be converted to struct in_addr by * tor_inet_aton() * 3. ... and tor_lookup_hostname() fails to resolve the * options->Address */ MOCK(tor_lookup_hostname,tor_lookup_hostname_failure); prev_n_hostname_failure = n_hostname_failure; tor_free(options->Address); options->Address = tor_strdup("some_hostname"); retval = resolve_my_address(LOG_NOTICE, options, &resolved_addr, &method_used,&hostname_out); tt_want(n_hostname_failure == prev_n_hostname_failure + 1); tt_assert(retval == -1); UNMOCK(tor_gethostname); UNMOCK(tor_lookup_hostname); tor_free(hostname_out); /* * CASE 11: * Suppose the following sequence of events: * 1. options->Address is NULL * 2. tor_gethostname() succeeds to get hostname of machine Tor * if running on. * 3. Hostname from previous step cannot be converted to * address by using tor_inet_aton() function. * 4. However, tor_lookup_hostname() succeds in resolving the * hostname from step 2. * 5. Unfortunately, tor_addr_is_internal() deems this address * to be internal. * 6. get_interface_address6(.,AF_INET,.) returns non-internal * IPv4 * * We want resolve_my_addr() to succeed with method "INTERFACE" * and address from step 6. */ tor_free(options->Address); options->Address = NULL; MOCK(tor_gethostname,tor_gethostname_replacement); MOCK(tor_lookup_hostname,tor_lookup_hostname_localhost); MOCK(get_interface_address6,get_interface_address6_replacement); prev_n_gethostname_replacement = n_gethostname_replacement; prev_n_hostname_localhost = n_hostname_localhost; prev_n_get_interface_address6 = n_get_interface_address6; retval = resolve_my_address(LOG_DEBUG, options, &resolved_addr, &method_used,&hostname_out); tt_want(n_gethostname_replacement == prev_n_gethostname_replacement + 1); tt_want(n_hostname_localhost == prev_n_hostname_localhost + 1); tt_want(n_get_interface_address6 == prev_n_get_interface_address6 + 1); tt_str_op(method_used,==,"INTERFACE"); tt_assert(!hostname_out); tt_assert(retval == 0); /* * CASE 11b: * 1-5 as above. * 6. get_interface_address6() fails. * * In this subcase, we want resolve_my_address() to fail. */ UNMOCK(get_interface_address6); MOCK(get_interface_address6,get_interface_address6_failure); prev_n_gethostname_replacement = n_gethostname_replacement; prev_n_hostname_localhost = n_hostname_localhost; prev_n_get_interface_address6_failure = n_get_interface_address6_failure; retval = resolve_my_address(LOG_DEBUG, options, &resolved_addr, &method_used,&hostname_out); tt_want(n_gethostname_replacement == prev_n_gethostname_replacement + 1); tt_want(n_hostname_localhost == prev_n_hostname_localhost + 1); tt_want(n_get_interface_address6_failure == prev_n_get_interface_address6_failure + 1); tt_assert(retval == -1); UNMOCK(tor_gethostname); UNMOCK(tor_lookup_hostname); UNMOCK(get_interface_address6); /* CASE 12: * Suppose the following happens: * 1. options->Address is NULL AND options->DirAuthorities is non-NULL * 2. tor_gethostname() succeeds in getting hostname of a machine ... * 3. ... which is successfully parsed by tor_inet_aton() ... * 4. into IPv4 address that tor_addr_is_inernal() considers to be * internal. * * In this case, we want resolve_my_address() to fail. */ tor_free(options->Address); options->Address = NULL; options->DirAuthorities = tor_malloc_zero(sizeof(config_line_t)); MOCK(tor_gethostname,tor_gethostname_localhost); prev_n_gethostname_localhost = n_gethostname_localhost; retval = resolve_my_address(LOG_DEBUG, options, &resolved_addr, &method_used,&hostname_out); tt_want(n_gethostname_localhost == prev_n_gethostname_localhost + 1); tt_assert(retval == -1); UNMOCK(tor_gethostname); done: tor_free(options->Address); tor_free(options->DirAuthorities); or_options_free(options); tor_free(hostname_out); UNMOCK(tor_gethostname); UNMOCK(tor_lookup_hostname); UNMOCK(get_interface_address); UNMOCK(get_interface_address6); UNMOCK(tor_gethostname); } static int n_add_default_fallback_dir_servers_known_default = 0; /** * This mock function is meant to replace add_default_fallback_dir_servers(). * It will parse and add one known default fallback dir server, * which has a dir_port of 99. * n_add_default_fallback_dir_servers_known_default is incremented by * one every time this function is called. */ static void add_default_fallback_dir_servers_known_default(void) { int i; const char *fallback[] = { "127.0.0.1:60099 orport=9009 " "id=0923456789012345678901234567890123456789", NULL }; for (i=0; fallback[i]; i++) { if (parse_dir_fallback_line(fallback[i], 0)<0) { log_err(LD_BUG, "Couldn't parse internal FallbackDir line %s", fallback[i]); } } n_add_default_fallback_dir_servers_known_default++; } static void test_config_adding_dir_servers(void *arg) { (void)arg; /* allocate options */ or_options_t *options = tor_malloc(sizeof(or_options_t)); /* Allocate and populate configuration lines: * * Use the same format as the hard-coded directories in * add_default_trusted_dir_authorities(). * Zeroing the structure has the same effect as initialising to: * { NULL, NULL, NULL, CONFIG_LINE_NORMAL, 0}; */ config_line_t *test_dir_authority = tor_malloc(sizeof(config_line_t)); memset(test_dir_authority, 0, sizeof(config_line_t)); test_dir_authority->key = tor_strdup("DirAuthority"); test_dir_authority->value = tor_strdup( "D0 orport=9000 " "v3ident=0023456789012345678901234567890123456789 " "127.0.0.1:60090 0123 4567 8901 2345 6789 0123 4567 8901 2345 6789" ); config_line_t *test_alt_bridge_authority = tor_malloc(sizeof(config_line_t)); memset(test_alt_bridge_authority, 0, sizeof(config_line_t)); test_alt_bridge_authority->key = tor_strdup("AlternateBridgeAuthority"); test_alt_bridge_authority->value = tor_strdup( "B1 orport=9001 bridge " "127.0.0.1:60091 1123 4567 8901 2345 6789 0123 4567 8901 2345 6789" ); config_line_t *test_alt_dir_authority = tor_malloc(sizeof(config_line_t)); memset(test_alt_dir_authority, 0, sizeof(config_line_t)); test_alt_dir_authority->key = tor_strdup("AlternateDirAuthority"); test_alt_dir_authority->value = tor_strdup( "A2 orport=9002 " "v3ident=0223456789012345678901234567890123456789 " "127.0.0.1:60092 2123 4567 8901 2345 6789 0123 4567 8901 2345 6789" ); /* Use the format specified in the manual page */ config_line_t *test_fallback_directory = tor_malloc(sizeof(config_line_t)); memset(test_fallback_directory, 0, sizeof(config_line_t)); test_fallback_directory->key = tor_strdup("FallbackDir"); test_fallback_directory->value = tor_strdup( "127.0.0.1:60093 orport=9003 id=0323456789012345678901234567890123456789" ); /* We need to know if add_default_fallback_dir_servers is called, * so we use a version of add_default_fallback_dir_servers that adds * one known default fallback directory. * There doesn't appear to be any need to test it unmocked. */ MOCK(add_default_fallback_dir_servers, add_default_fallback_dir_servers_known_default); /* There are 16 different cases, covering each combination of set/NULL for: * DirAuthorities, AlternateBridgeAuthority, AlternateDirAuthority & * FallbackDir. * But validate_dir_servers() ensures that: * "You cannot set both DirAuthority and Alternate*Authority." * This reduces the number of cases to 10. * * Let's count these cases using binary, with 1 meaning set & 0 meaning NULL * So 1001 or case 9 is: * DirAuthorities set, * AlternateBridgeAuthority NULL, * AlternateDirAuthority NULL * FallbackDir set * The valid cases are cases 0-9 counting using this method, as every case * greater than or equal to 10 = 1010 is invalid. * * After #15642 - Disable default fallback dirs when any custom dirs set * * 1. Outcome: Use Set Directory Authorities * - No Default Authorities * - Use AlternateBridgeAuthority, AlternateDirAuthority, and FallbackDir * if they are set * Cases expected to yield this outcome: * 8 & 9 (the 2 valid cases where DirAuthorities is set) * 6 & 7 (the 2 cases where DirAuthorities is NULL, and * AlternateBridgeAuthority and AlternateDirAuthority are both set) * * 2. Outcome: Use Set Bridge Authority * - Use Default Non-Bridge Directory Authorities * - Use FallbackDir if it is set, otherwise use default FallbackDir * Cases expected to yield this outcome: * 4 & 5 (the 2 cases where DirAuthorities is NULL, * AlternateBridgeAuthority is set, and * AlternateDirAuthority is NULL) * * 3. Outcome: Use Set Alternate Directory Authority * - Use Default Bridge Authorities * - Use FallbackDir if it is set, otherwise No Default Fallback Directories * Cases expected to yield this outcome: * 2 & 3 (the 2 cases where DirAuthorities and AlternateBridgeAuthority * are both NULL, but AlternateDirAuthority is set) * * 4. Outcome: Use Set Custom Fallback Directory * - Use Default Bridge & Directory Authorities * Cases expected to yield this outcome: * 1 (DirAuthorities, AlternateBridgeAuthority and AlternateDirAuthority * are all NULL, but FallbackDir is set) * * 5. Outcome: Use All Defaults * - Use Default Bridge & Directory Authorities, and * Default Fallback Directories * Cases expected to yield this outcome: * 0 (DirAuthorities, AlternateBridgeAuthority, AlternateDirAuthority * and FallbackDir are all NULL) * * Before #15642 but after #13163 - Stop using default authorities when both * Alternate Dir and Bridge Authority are set * (#13163 was committed in 0.2.6 as c1dd43d823c7) * * The behaviour is different in the following cases * where FallbackDir is NULL: * 2, 6, 8 * * In these cases, the Default Fallback Directories are applied, even when * DirAuthorities or AlternateDirAuthority are set. * * However, as the list of default fallback directories is currently empty, * this change doesn't modify any user-visible behaviour. */ /* * Find out how many default Bridge, Non-Bridge and Fallback Directories * are hard-coded into this build. * This code makes some assumptions about the implementation. * If they are wrong, one or more of cases 0-5 could fail. */ int n_default_alt_bridge_authority = 0; int n_default_alt_dir_authority = 0; int n_default_fallback_dir = 0; #define n_default_authorities ((n_default_alt_bridge_authority) \ + (n_default_alt_dir_authority)) /* Pre-Count Number of Authorities of Each Type * Use 0000: No Directory Authorities or Fallback Directories Set */ { /* clear fallback dirs counter */ n_add_default_fallback_dir_servers_known_default = 0; /* clear options*/ memset(options, 0, sizeof(or_options_t)); /* clear any previous dir servers: consider_adding_dir_servers() should do this anyway */ clear_dir_servers(); /* assign options: 0000 */ options->DirAuthorities = NULL; options->AlternateBridgeAuthority = NULL; options->AlternateDirAuthority = NULL; options->FallbackDir = NULL; /* parse options - ensure we always update by passing NULL old_options */ consider_adding_dir_servers(options, NULL); /* check outcome */ /* we must have added the default fallback dirs */ tt_assert(n_add_default_fallback_dir_servers_known_default == 1); { /* fallback_dir_servers */ const smartlist_t *fallback_servers = router_get_fallback_dir_servers(); /* Count Bridge Authorities */ SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if it's a bridge auth */ n_default_alt_bridge_authority += ((ds->is_authority && (ds->type & BRIDGE_DIRINFO)) ? 1 : 0) ); /* If we have no default bridge authority, something has gone wrong */ tt_assert(n_default_alt_bridge_authority >= 1); /* Count v3 Authorities */ SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment found counter if it's a v3 auth */ n_default_alt_dir_authority += ((ds->is_authority && (ds->type & V3_DIRINFO)) ? 1 : 0) ); /* If we have no default authorities, something has gone really wrong */ tt_assert(n_default_alt_dir_authority >= 1); /* Calculate Fallback Directory Count */ n_default_fallback_dir = (smartlist_len(fallback_servers) - n_default_alt_bridge_authority - n_default_alt_dir_authority); /* If we have a negative count, something has gone really wrong */ tt_assert(n_default_fallback_dir >= 0); } } /* * 1. Outcome: Use Set Directory Authorities * - No Default Authorities * - Use AlternateBridgeAuthority, AlternateDirAuthority, and FallbackDir * if they are set * Cases expected to yield this outcome: * 8 & 9 (the 2 valid cases where DirAuthorities is set) * 6 & 7 (the 2 cases where DirAuthorities is NULL, and * AlternateBridgeAuthority and AlternateDirAuthority are both set) */ /* Case 9: 1001 - DirAuthorities Set, AlternateBridgeAuthority Not Set, AlternateDirAuthority Not Set, FallbackDir Set */ { /* clear fallback dirs counter */ n_add_default_fallback_dir_servers_known_default = 0; /* clear options*/ memset(options, 0, sizeof(or_options_t)); /* clear any previous dir servers: consider_adding_dir_servers() should do this anyway */ clear_dir_servers(); /* assign options: 1001 */ options->DirAuthorities = test_dir_authority; options->AlternateBridgeAuthority = NULL; options->AlternateDirAuthority = NULL; options->FallbackDir = test_fallback_directory; /* parse options - ensure we always update by passing NULL old_options */ consider_adding_dir_servers(options, NULL); /* check outcome */ /* we must not have added the default fallback dirs */ tt_assert(n_add_default_fallback_dir_servers_known_default == 0); { /* trusted_dir_servers */ const smartlist_t *dir_servers = router_get_trusted_dir_servers(); /* D0, (No B1), (No A2) */ tt_assert(smartlist_len(dir_servers) == 1); /* DirAuthority - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 1); /* (No AlternateBridgeAuthority) - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 0); /* (No AlternateDirAuthority) - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 0); } { /* fallback_dir_servers */ const smartlist_t *fallback_servers = router_get_fallback_dir_servers(); /* D0, (No B1), (No A2), Custom Fallback */ tt_assert(smartlist_len(fallback_servers) == 2); /* DirAuthority - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 1); /* (No AlternateBridgeAuthority) - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 0); /* (No AlternateDirAuthority) - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 0); /* Custom FallbackDir - No Nickname - dir_port: 60093 */ int found_non_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_non_default_fallback += (ds->dir_port == 60093 ? 1 : 0) ); tt_assert(found_non_default_fallback == 1); /* (No Default FallbackDir) - No Nickname - dir_port: 60099 */ int found_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_default_fallback += (ds->dir_port == 60099 ? 1 : 0) ); tt_assert(found_default_fallback == 0); } } /* Case 8: 1000 - DirAuthorities Set, Others Not Set */ { /* clear fallback dirs counter */ n_add_default_fallback_dir_servers_known_default = 0; /* clear options*/ memset(options, 0, sizeof(or_options_t)); /* clear any previous dir servers: consider_adding_dir_servers() should do this anyway */ clear_dir_servers(); /* assign options: 1000 */ options->DirAuthorities = test_dir_authority; options->AlternateBridgeAuthority = NULL; options->AlternateDirAuthority = NULL; options->FallbackDir = NULL; /* parse options - ensure we always update by passing NULL old_options */ consider_adding_dir_servers(options, NULL); /* check outcome */ /* we must not have added the default fallback dirs */ tt_assert(n_add_default_fallback_dir_servers_known_default == 0); { /* trusted_dir_servers */ const smartlist_t *dir_servers = router_get_trusted_dir_servers(); /* D0, (No B1), (No A2) */ tt_assert(smartlist_len(dir_servers) == 1); /* DirAuthority - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 1); /* (No AlternateBridgeAuthority) - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 0); /* (No AlternateDirAuthority) - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 0); } { /* fallback_dir_servers */ const smartlist_t *fallback_servers = router_get_fallback_dir_servers(); /* D0, (No B1), (No A2), (No Fallback) */ tt_assert(smartlist_len(fallback_servers) == 1); /* DirAuthority - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 1); /* (No AlternateBridgeAuthority) - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 0); /* (No AlternateDirAuthority) - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 0); /* (No Custom FallbackDir) - No Nickname - dir_port: 60093 */ int found_non_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_non_default_fallback += (ds->dir_port == 60093 ? 1 : 0) ); tt_assert(found_non_default_fallback == 0); /* (No Default FallbackDir) - No Nickname - dir_port: 60099 */ int found_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_default_fallback += (ds->dir_port == 60099 ? 1 : 0) ); tt_assert(found_default_fallback == 0); } } /* Case 7: 0111 - DirAuthorities Not Set, Others Set */ { /* clear fallback dirs counter */ n_add_default_fallback_dir_servers_known_default = 0; /* clear options*/ memset(options, 0, sizeof(or_options_t)); /* clear any previous dir servers: consider_adding_dir_servers() should do this anyway */ clear_dir_servers(); /* assign options: 0111 */ options->DirAuthorities = NULL; options->AlternateBridgeAuthority = test_alt_bridge_authority; options->AlternateDirAuthority = test_alt_dir_authority; options->FallbackDir = test_fallback_directory; /* parse options - ensure we always update by passing NULL old_options */ consider_adding_dir_servers(options, NULL); /* check outcome */ /* we must not have added the default fallback dirs */ tt_assert(n_add_default_fallback_dir_servers_known_default == 0); { /* trusted_dir_servers */ const smartlist_t *dir_servers = router_get_trusted_dir_servers(); /* (No D0), B1, A2 */ tt_assert(smartlist_len(dir_servers) == 2); /* (No DirAuthority) - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 0); /* AlternateBridgeAuthority - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 1); /* AlternateDirAuthority - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 1); } { /* fallback_dir_servers */ const smartlist_t *fallback_servers = router_get_fallback_dir_servers(); /* (No D0), B1, A2, Custom Fallback */ tt_assert(smartlist_len(fallback_servers) == 3); /* (No DirAuthority) - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 0); /* AlternateBridgeAuthority - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 1); /* AlternateDirAuthority - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 1); /* Custom FallbackDir - No Nickname - dir_port: 60093 */ int found_non_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_non_default_fallback += (ds->dir_port == 60093 ? 1 : 0) ); tt_assert(found_non_default_fallback == 1); /* (No Default FallbackDir) - No Nickname - dir_port: 60099 */ int found_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_default_fallback += (ds->dir_port == 60099 ? 1 : 0) ); tt_assert(found_default_fallback == 0); } } /* Case 6: 0110 - DirAuthorities Not Set, AlternateBridgeAuthority & AlternateDirAuthority Set, FallbackDir Not Set */ { /* clear fallback dirs counter */ n_add_default_fallback_dir_servers_known_default = 0; /* clear options*/ memset(options, 0, sizeof(or_options_t)); /* clear any previous dir servers: consider_adding_dir_servers() should do this anyway */ clear_dir_servers(); /* assign options: 0110 */ options->DirAuthorities = NULL; options->AlternateBridgeAuthority = test_alt_bridge_authority; options->AlternateDirAuthority = test_alt_dir_authority; options->FallbackDir = NULL; /* parse options - ensure we always update by passing NULL old_options */ consider_adding_dir_servers(options, NULL); /* check outcome */ /* we must not have added the default fallback dirs */ tt_assert(n_add_default_fallback_dir_servers_known_default == 0); { /* trusted_dir_servers */ const smartlist_t *dir_servers = router_get_trusted_dir_servers(); /* (No D0), B1, A2 */ tt_assert(smartlist_len(dir_servers) == 2); /* (No DirAuthority) - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 0); /* AlternateBridgeAuthority - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 1); /* AlternateDirAuthority - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 1); } { /* fallback_dir_servers */ const smartlist_t *fallback_servers = router_get_fallback_dir_servers(); /* (No D0), B1, A2, (No Fallback) */ tt_assert(smartlist_len(fallback_servers) == 2); /* (No DirAuthority) - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 0); /* AlternateBridgeAuthority - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 1); /* AlternateDirAuthority - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 1); /* (No Custom FallbackDir) - No Nickname - dir_port: 60093 */ int found_non_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_non_default_fallback += (ds->dir_port == 60093 ? 1 : 0) ); tt_assert(found_non_default_fallback == 0); /* (No Default FallbackDir) - No Nickname - dir_port: 60099 */ int found_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_default_fallback += (ds->dir_port == 60099 ? 1 : 0) ); tt_assert(found_default_fallback == 0); } } /* 2. Outcome: Use Set Bridge Authority - Use Default Non-Bridge Directory Authorities - Use FallbackDir if it is set, otherwise use default FallbackDir Cases expected to yield this outcome: 4 & 5 (the 2 cases where DirAuthorities is NULL, AlternateBridgeAuthority is set, and AlternateDirAuthority is NULL) */ /* Case 5: 0101 - DirAuthorities Not Set, AlternateBridgeAuthority Set, AlternateDirAuthority Not Set, FallbackDir Set */ { /* clear fallback dirs counter */ n_add_default_fallback_dir_servers_known_default = 0; /* clear options*/ memset(options, 0, sizeof(or_options_t)); /* clear any previous dir servers: consider_adding_dir_servers() should do this anyway */ clear_dir_servers(); /* assign options: 0101 */ options->DirAuthorities = NULL; options->AlternateBridgeAuthority = test_alt_bridge_authority; options->AlternateDirAuthority = NULL; options->FallbackDir = test_fallback_directory; /* parse options - ensure we always update by passing NULL old_options */ consider_adding_dir_servers(options, NULL); /* check outcome */ /* we must not have added the default fallback dirs */ tt_assert(n_add_default_fallback_dir_servers_known_default == 0); { /* trusted_dir_servers */ const smartlist_t *dir_servers = router_get_trusted_dir_servers(); /* (No D0), B1, (No A2), Default v3 Non-Bridge Authorities */ tt_assert(smartlist_len(dir_servers) == 1 + n_default_alt_dir_authority); /* (No DirAuthorities) - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 0); /* AlternateBridgeAuthority - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 1); /* (No AlternateDirAuthority) - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 0); /* There's no easy way of checking that we have included all the * default v3 non-Bridge directory authorities, so let's assume that * if the total count above is correct, we have the right ones. */ } { /* fallback_dir_servers */ const smartlist_t *fallback_servers = router_get_fallback_dir_servers(); /* (No D0), B1, (No A2), Default v3 Non-Bridge Authorities, * Custom Fallback */ tt_assert(smartlist_len(fallback_servers) == 2 + n_default_alt_dir_authority); /* (No DirAuthorities) - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 0); /* AlternateBridgeAuthority - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 1); /* (No AlternateDirAuthority) - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 0); /* Custom FallbackDir - No Nickname - dir_port: 60093 */ int found_non_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_non_default_fallback += (ds->dir_port == 60093 ? 1 : 0) ); tt_assert(found_non_default_fallback == 1); /* (No Default FallbackDir) - No Nickname - dir_port: 60099 */ int found_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_default_fallback += (ds->dir_port == 60099 ? 1 : 0) ); tt_assert(found_default_fallback == 0); /* There's no easy way of checking that we have included all the * default v3 non-Bridge directory authorities, so let's assume that * if the total count above is correct, we have the right ones. */ } } /* Case 4: 0100 - DirAuthorities Not Set, AlternateBridgeAuthority Set, AlternateDirAuthority & FallbackDir Not Set */ { /* clear fallback dirs counter */ n_add_default_fallback_dir_servers_known_default = 0; /* clear options*/ memset(options, 0, sizeof(or_options_t)); /* clear any previous dir servers: consider_adding_dir_servers() should do this anyway */ clear_dir_servers(); /* assign options: 0100 */ options->DirAuthorities = NULL; options->AlternateBridgeAuthority = test_alt_bridge_authority; options->AlternateDirAuthority = NULL; options->FallbackDir = NULL; /* parse options - ensure we always update by passing NULL old_options */ consider_adding_dir_servers(options, NULL); /* check outcome */ /* we must have added the default fallback dirs */ tt_assert(n_add_default_fallback_dir_servers_known_default == 1); { /* trusted_dir_servers */ const smartlist_t *dir_servers = router_get_trusted_dir_servers(); /* (No D0), B1, (No A2), Default v3 Non-Bridge Authorities */ tt_assert(smartlist_len(dir_servers) == 1 + n_default_alt_dir_authority); /* (No DirAuthorities) - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 0); /* AlternateBridgeAuthority - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 1); /* (No AlternateDirAuthority) - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 0); /* There's no easy way of checking that we have included all the * default v3 non-Bridge directory authorities, so let's assume that * if the total count above is correct, we have the right ones. */ } { /* fallback_dir_servers */ const smartlist_t *fallback_servers = router_get_fallback_dir_servers(); /* (No D0), B1, (No A2), Default v3 Non-Bridge Authorities, * Default Fallback */ tt_assert(smartlist_len(fallback_servers) == 2 + n_default_alt_dir_authority); /* (No DirAuthorities) - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 0); /* AlternateBridgeAuthority - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 1); /* (No AlternateDirAuthority) - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 0); /* (No Custom FallbackDir) - No Nickname - dir_port: 60093 */ int found_non_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_non_default_fallback += (ds->dir_port == 60093 ? 1 : 0) ); tt_assert(found_non_default_fallback == 0); /* Default FallbackDir - No Nickname - dir_port: 60099 */ int found_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_default_fallback += (ds->dir_port == 60099 ? 1 : 0) ); tt_assert(found_default_fallback == 1); /* There's no easy way of checking that we have included all the * default v3 non-Bridge directory authorities, so let's assume that * if the total count above is correct, we have the right ones. */ } } /* 3. Outcome: Use Set Alternate Directory Authority - Use Default Bridge Authorities - Use FallbackDir if it is set, otherwise No Default Fallback Directories Cases expected to yield this outcome: 2 & 3 (the 2 cases where DirAuthorities and AlternateBridgeAuthority are both NULL, but AlternateDirAuthority is set) */ /* Case 3: 0011 - DirAuthorities & AlternateBridgeAuthority Not Set, AlternateDirAuthority & FallbackDir Set */ { /* clear fallback dirs counter */ n_add_default_fallback_dir_servers_known_default = 0; /* clear options*/ memset(options, 0, sizeof(or_options_t)); /* clear any previous dir servers: consider_adding_dir_servers() should do this anyway */ clear_dir_servers(); /* assign options: 0011 */ options->DirAuthorities = NULL; options->AlternateBridgeAuthority = NULL; options->AlternateDirAuthority = test_alt_dir_authority; options->FallbackDir = test_fallback_directory; /* parse options - ensure we always update by passing NULL old_options */ consider_adding_dir_servers(options, NULL); /* check outcome */ /* we must not have added the default fallback dirs */ tt_assert(n_add_default_fallback_dir_servers_known_default == 0); { /* trusted_dir_servers */ const smartlist_t *dir_servers = router_get_trusted_dir_servers(); /* (No D0), (No B1), Default Bridge Authorities, A2 */ tt_assert(smartlist_len(dir_servers) == 1 + n_default_alt_bridge_authority); /* (No DirAuthorities) - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 0); /* (No AlternateBridgeAuthority) - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 0); /* AlternateDirAuthority - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 1); /* There's no easy way of checking that we have included all the * default Bridge authorities (except for hard-coding tonga's details), * so let's assume that if the total count above is correct, * we have the right ones. */ } { /* fallback_dir_servers */ const smartlist_t *fallback_servers = router_get_fallback_dir_servers(); /* (No D0), (No B1), Default Bridge Authorities, A2, * Custom Fallback Directory, (No Default Fallback Directories) */ tt_assert(smartlist_len(fallback_servers) == 2 + n_default_alt_bridge_authority); /* (No DirAuthorities) - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 0); /* (No AlternateBridgeAuthority) - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 0); /* AlternateDirAuthority - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 1); /* Custom FallbackDir - No Nickname - dir_port: 60093 */ int found_non_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_non_default_fallback += (ds->dir_port == 60093 ? 1 : 0) ); tt_assert(found_non_default_fallback == 1); /* (No Default FallbackDir) - No Nickname - dir_port: 60099 */ int found_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_default_fallback += (ds->dir_port == 60099 ? 1 : 0) ); tt_assert(found_default_fallback == 0); /* There's no easy way of checking that we have included all the * default Bridge authorities (except for hard-coding tonga's details), * so let's assume that if the total count above is correct, * we have the right ones. */ } } /* Case 2: 0010 - DirAuthorities & AlternateBridgeAuthority Not Set, AlternateDirAuthority Set, FallbackDir Not Set */ { /* clear fallback dirs counter */ n_add_default_fallback_dir_servers_known_default = 0; /* clear options*/ memset(options, 0, sizeof(or_options_t)); /* clear any previous dir servers: consider_adding_dir_servers() should do this anyway */ clear_dir_servers(); /* assign options: 0010 */ options->DirAuthorities = NULL; options->AlternateBridgeAuthority = NULL; options->AlternateDirAuthority = test_alt_dir_authority; options->FallbackDir = NULL; /* parse options - ensure we always update by passing NULL old_options */ consider_adding_dir_servers(options, NULL); /* check outcome */ /* we must not have added the default fallback dirs */ tt_assert(n_add_default_fallback_dir_servers_known_default == 0); { /* trusted_dir_servers */ const smartlist_t *dir_servers = router_get_trusted_dir_servers(); /* (No D0), (No B1), Default Bridge Authorities, A2, * No Default or Custom Fallback Directories */ tt_assert(smartlist_len(dir_servers) == 1 + n_default_alt_bridge_authority); /* (No DirAuthorities) - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 0); /* (No AlternateBridgeAuthority) - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 0); /* AlternateDirAuthority - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 1); /* There's no easy way of checking that we have included all the * default Bridge authorities (except for hard-coding tonga's details), * so let's assume that if the total count above is correct, * we have the right ones. */ } { /* fallback_dir_servers */ const smartlist_t *fallback_servers = router_get_fallback_dir_servers(); /* (No D0), (No B1), Default Bridge Authorities, A2, * No Custom or Default Fallback Directories */ tt_assert(smartlist_len(fallback_servers) == 1 + n_default_alt_bridge_authority); /* (No DirAuthorities) - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 0); /* (No AlternateBridgeAuthority) - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 0); /* AlternateDirAuthority - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 1); /* (No Custom FallbackDir) - No Nickname - dir_port: 60093 */ int found_non_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_non_default_fallback += (ds->dir_port == 60093 ? 1 : 0) ); tt_assert(found_non_default_fallback == 0); /* (No Default FallbackDir) - No Nickname - dir_port: 60099 */ int found_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_default_fallback += (ds->dir_port == 60099 ? 1 : 0) ); tt_assert(found_default_fallback == 0); /* There's no easy way of checking that we have included all the * default Bridge authorities (except for hard-coding tonga's details), * so let's assume that if the total count above is correct, * we have the right ones. */ } } /* 4. Outcome: Use Set Custom Fallback Directory - Use Default Bridge & Directory Authorities Cases expected to yield this outcome: 1 (DirAuthorities, AlternateBridgeAuthority and AlternateDirAuthority are all NULL, but FallbackDir is set) */ /* Case 1: 0001 - DirAuthorities, AlternateBridgeAuthority & AlternateDirAuthority Not Set, FallbackDir Set */ { /* clear fallback dirs counter */ n_add_default_fallback_dir_servers_known_default = 0; /* clear options*/ memset(options, 0, sizeof(or_options_t)); /* clear any previous dir servers: consider_adding_dir_servers() should do this anyway */ clear_dir_servers(); /* assign options: 0001 */ options->DirAuthorities = NULL; options->AlternateBridgeAuthority = NULL; options->AlternateDirAuthority = NULL; options->FallbackDir = test_fallback_directory; /* parse options - ensure we always update by passing NULL old_options */ consider_adding_dir_servers(options, NULL); /* check outcome */ /* we must not have added the default fallback dirs */ tt_assert(n_add_default_fallback_dir_servers_known_default == 0); { /* trusted_dir_servers */ const smartlist_t *dir_servers = router_get_trusted_dir_servers(); /* (No D0), (No B1), Default Bridge Authorities, * (No A2), Default v3 Directory Authorities */ tt_assert(smartlist_len(dir_servers) == n_default_authorities); /* (No DirAuthorities) - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 0); /* (No AlternateBridgeAuthority) - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 0); /* (No AlternateDirAuthority) - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 0); /* There's no easy way of checking that we have included all the * default Bridge & V3 Directory authorities, so let's assume that * if the total count above is correct, we have the right ones. */ } { /* fallback_dir_servers */ const smartlist_t *fallback_servers = router_get_fallback_dir_servers(); /* (No D0), (No B1), Default Bridge Authorities, * (No A2), Default v3 Directory Authorities, * Custom Fallback Directory, (No Default Fallback Directories) */ tt_assert(smartlist_len(fallback_servers) == 1 + n_default_authorities); /* (No DirAuthorities) - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 0); /* (No AlternateBridgeAuthority) - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 0); /* (No AlternateDirAuthority) - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 0); /* Custom FallbackDir - No Nickname - dir_port: 60093 */ int found_non_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_non_default_fallback += (ds->dir_port == 60093 ? 1 : 0) ); tt_assert(found_non_default_fallback == 1); /* (No Default FallbackDir) - No Nickname - dir_port: 60099 */ int found_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_default_fallback += (ds->dir_port == 60099 ? 1 : 0) ); tt_assert(found_default_fallback == 0); /* There's no easy way of checking that we have included all the * default Bridge & V3 Directory authorities, so let's assume that * if the total count above is correct, we have the right ones. */ } } /* 5. Outcome: Use All Defaults - Use Default Bridge & Directory Authorities, Default Fallback Directories Cases expected to yield this outcome: 0 (DirAuthorities, AlternateBridgeAuthority, AlternateDirAuthority and FallbackDir are all NULL) */ /* Case 0: 0000 - All Not Set */ { /* clear fallback dirs counter */ n_add_default_fallback_dir_servers_known_default = 0; /* clear options*/ memset(options, 0, sizeof(or_options_t)); /* clear any previous dir servers: consider_adding_dir_servers() should do this anyway */ clear_dir_servers(); /* assign options: 0001 */ options->DirAuthorities = NULL; options->AlternateBridgeAuthority = NULL; options->AlternateDirAuthority = NULL; options->FallbackDir = NULL; /* parse options - ensure we always update by passing NULL old_options */ consider_adding_dir_servers(options, NULL); /* check outcome */ /* we must have added the default fallback dirs */ tt_assert(n_add_default_fallback_dir_servers_known_default == 1); { /* trusted_dir_servers */ const smartlist_t *dir_servers = router_get_trusted_dir_servers(); /* (No D0), (No B1), Default Bridge Authorities, * (No A2), Default v3 Directory Authorities */ tt_assert(smartlist_len(dir_servers) == n_default_authorities); /* (No DirAuthorities) - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 0); /* (No AlternateBridgeAuthority) - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 0); /* (No AlternateDirAuthority) - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(dir_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 0); /* There's no easy way of checking that we have included all the * default Bridge & V3 Directory authorities, so let's assume that * if the total count above is correct, we have the right ones. */ } { /* fallback_dir_servers */ const smartlist_t *fallback_servers = router_get_fallback_dir_servers(); /* (No D0), (No B1), Default Bridge Authorities, * (No A2), Default v3 Directory Authorities, * (No Custom Fallback Directory), Default Fallback Directories */ tt_assert(smartlist_len(fallback_servers) == n_default_authorities + n_default_fallback_dir); /* (No DirAuthorities) - D0 - dir_port: 60090 */ int found_D0 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_D0 += (ds->dir_port == 60090 ? 1 : 0) ); tt_assert(found_D0 == 0); /* (No AlternateBridgeAuthority) - B1 - dir_port: 60091 */ int found_B1 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_B1 += (ds->dir_port == 60091 ? 1 : 0) ); tt_assert(found_B1 == 0); /* (No AlternateDirAuthority) - A2 - dir_port: 60092 */ int found_A2 = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_A2 += (ds->dir_port == 60092 ? 1 : 0) ); tt_assert(found_A2 == 0); /* Custom FallbackDir - No Nickname - dir_port: 60093 */ int found_non_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_non_default_fallback += (ds->dir_port == 60093 ? 1 : 0) ); tt_assert(found_non_default_fallback == 0); /* (No Default FallbackDir) - No Nickname - dir_port: 60099 */ int found_default_fallback = 0; SMARTLIST_FOREACH(fallback_servers, dir_server_t *, ds, /* increment the found counter if dir_port matches */ found_default_fallback += (ds->dir_port == 60099 ? 1 : 0) ); tt_assert(found_default_fallback == 1); /* There's no easy way of checking that we have included all the * default Bridge & V3 Directory authorities, and the default * Fallback Directories, so let's assume that if the total count * above is correct, we have the right ones. */ } } done: clear_dir_servers(); tor_free(test_dir_authority->key); tor_free(test_dir_authority->value); tor_free(test_dir_authority); tor_free(test_alt_dir_authority->key); tor_free(test_alt_dir_authority->value); tor_free(test_alt_dir_authority); tor_free(test_alt_bridge_authority->key); tor_free(test_alt_bridge_authority->value); tor_free(test_alt_bridge_authority); tor_free(test_fallback_directory->key); tor_free(test_fallback_directory->value); tor_free(test_fallback_directory); options->DirAuthorities = NULL; options->AlternateBridgeAuthority = NULL; options->AlternateDirAuthority = NULL; options->FallbackDir = NULL; or_options_free(options); UNMOCK(add_default_fallback_dir_servers); } #define CONFIG_TEST(name, flags) \ { #name, test_config_ ## name, flags, NULL, NULL } struct testcase_t config_tests[] = { CONFIG_TEST(adding_dir_servers, TT_FORK), CONFIG_TEST(resolve_my_address, TT_FORK), CONFIG_TEST(addressmap, 0), CONFIG_TEST(parse_bridge_line, 0), CONFIG_TEST(parse_transport_options_line, 0), CONFIG_TEST(parse_transport_plugin_line, TT_FORK), CONFIG_TEST(check_or_create_data_subdir, TT_FORK), CONFIG_TEST(write_to_data_subdir, TT_FORK), CONFIG_TEST(fix_my_family, 0), END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_channel.c0000644000175000017500000012506012621363246014003 00000000000000/* Copyright (c) 2013-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define TOR_CHANNEL_INTERNAL_ #define CHANNEL_PRIVATE_ #include "or.h" #include "channel.h" /* For channel_note_destroy_not_pending */ #include "circuitlist.h" #include "circuitmux.h" /* For var_cell_free */ #include "connection_or.h" /* For packed_cell stuff */ #define RELAY_PRIVATE #include "relay.h" /* For init/free stuff */ #include "scheduler.h" /* Test suite stuff */ #include "test.h" #include "fakechans.h" /* This comes from channel.c */ extern uint64_t estimated_total_queue_size; static int test_chan_accept_cells = 0; static int test_chan_fixed_cells_recved = 0; static int test_chan_var_cells_recved = 0; static int test_cells_written = 0; static int test_destroy_not_pending_calls = 0; static int test_doesnt_want_writes_count = 0; static int test_dumpstats_calls = 0; static int test_has_waiting_cells_count = 0; static double test_overhead_estimate = 1.0f; static int test_releases_count = 0; static circuitmux_t *test_target_cmux = NULL; static unsigned int test_cmux_cells = 0; static channel_t *dump_statistics_mock_target = NULL; static int dump_statistics_mock_matches = 0; static void chan_test_channel_dump_statistics_mock( channel_t *chan, int severity); static int chan_test_channel_flush_from_first_active_circuit_mock( channel_t *chan, int max); static unsigned int chan_test_circuitmux_num_cells_mock(circuitmux_t *cmux); static void channel_note_destroy_not_pending_mock(channel_t *ch, circid_t circid); static void chan_test_cell_handler(channel_t *ch, cell_t *cell); static const char * chan_test_describe_transport(channel_t *ch); static void chan_test_dumpstats(channel_t *ch, int severity); static void chan_test_var_cell_handler(channel_t *ch, var_cell_t *var_cell); static void chan_test_close(channel_t *ch); static void chan_test_error(channel_t *ch); static void chan_test_finish_close(channel_t *ch); static const char * chan_test_get_remote_descr(channel_t *ch, int flags); static int chan_test_is_canonical(channel_t *ch, int req); static size_t chan_test_num_bytes_queued(channel_t *ch); static int chan_test_num_cells_writeable(channel_t *ch); static int chan_test_write_cell(channel_t *ch, cell_t *cell); static int chan_test_write_packed_cell(channel_t *ch, packed_cell_t *packed_cell); static int chan_test_write_var_cell(channel_t *ch, var_cell_t *var_cell); static void scheduler_channel_doesnt_want_writes_mock(channel_t *ch); static void test_channel_dumpstats(void *arg); static void test_channel_flush(void *arg); static void test_channel_flushmux(void *arg); static void test_channel_incoming(void *arg); static void test_channel_lifecycle(void *arg); static void test_channel_multi(void *arg); static void test_channel_queue_size(void *arg); static void test_channel_write(void *arg); static void channel_note_destroy_not_pending_mock(channel_t *ch, circid_t circid) { (void)ch; (void)circid; ++test_destroy_not_pending_calls; } static const char * chan_test_describe_transport(channel_t *ch) { tt_assert(ch != NULL); done: return "Fake channel for unit tests"; } /** * Mock for channel_dump_statistics(); if the channel matches the * target, bump a counter - otherwise ignore. */ static void chan_test_channel_dump_statistics_mock(channel_t *chan, int severity) { tt_assert(chan != NULL); (void)severity; if (chan != NULL && chan == dump_statistics_mock_target) { ++dump_statistics_mock_matches; } done: return; } /** * If the target cmux is the cmux for chan, make fake cells up to the * target number of cells and write them to chan. Otherwise, invoke * the real channel_flush_from_first_active_circuit(). */ static int chan_test_channel_flush_from_first_active_circuit_mock(channel_t *chan, int max) { int result = 0, c = 0; packed_cell_t *cell = NULL; tt_assert(chan != NULL); if (test_target_cmux != NULL && test_target_cmux == chan->cmux) { while (c <= max && test_cmux_cells > 0) { cell = packed_cell_new(); channel_write_packed_cell(chan, cell); ++c; --test_cmux_cells; } result = c; } else { result = channel_flush_from_first_active_circuit__real(chan, max); } done: return result; } /** * If we have a target cmux set and this matches it, lie about how * many cells we have according to the number indicated; otherwise * pass to the real circuitmux_num_cells(). */ static unsigned int chan_test_circuitmux_num_cells_mock(circuitmux_t *cmux) { unsigned int result = 0; tt_assert(cmux != NULL); if (cmux != NULL) { if (cmux == test_target_cmux) { result = test_cmux_cells; } else { result = circuitmux_num_cells__real(cmux); } } done: return result; } /* * Handle an incoming fixed-size cell for unit tests */ static void chan_test_cell_handler(channel_t *ch, cell_t *cell) { tt_assert(ch); tt_assert(cell); tor_free(cell); ++test_chan_fixed_cells_recved; done: return; } /* * Fake transport-specific stats call */ static void chan_test_dumpstats(channel_t *ch, int severity) { tt_assert(ch != NULL); (void)severity; ++test_dumpstats_calls; done: return; } /* * Handle an incoming variable-size cell for unit tests */ static void chan_test_var_cell_handler(channel_t *ch, var_cell_t *var_cell) { tt_assert(ch); tt_assert(var_cell); tor_free(var_cell); ++test_chan_var_cells_recved; done: return; } static void chan_test_close(channel_t *ch) { tt_assert(ch); done: return; } /* * Close a channel through the error path */ static void chan_test_error(channel_t *ch) { tt_assert(ch); tt_assert(!(ch->state == CHANNEL_STATE_CLOSING || ch->state == CHANNEL_STATE_ERROR || ch->state == CHANNEL_STATE_CLOSED)); channel_close_for_error(ch); done: return; } /* * Finish closing a channel from CHANNEL_STATE_CLOSING */ static void chan_test_finish_close(channel_t *ch) { tt_assert(ch); tt_assert(ch->state == CHANNEL_STATE_CLOSING); channel_closed(ch); done: return; } static const char * chan_test_get_remote_descr(channel_t *ch, int flags) { tt_assert(ch); tt_int_op(flags & ~(GRD_FLAG_ORIGINAL | GRD_FLAG_ADDR_ONLY), ==, 0); done: return "Fake channel for unit tests; no real endpoint"; } static double chan_test_get_overhead_estimate(channel_t *ch) { tt_assert(ch); done: return test_overhead_estimate; } static int chan_test_is_canonical(channel_t *ch, int req) { tt_assert(ch != NULL); tt_assert(req == 0 || req == 1); done: /* Fake channels are always canonical */ return 1; } static size_t chan_test_num_bytes_queued(channel_t *ch) { tt_assert(ch); done: return 0; } static int chan_test_num_cells_writeable(channel_t *ch) { tt_assert(ch); done: return 32; } static int chan_test_write_cell(channel_t *ch, cell_t *cell) { int rv = 0; tt_assert(ch); tt_assert(cell); if (test_chan_accept_cells) { /* Free the cell and bump the counter */ tor_free(cell); ++test_cells_written; rv = 1; } /* else return 0, we didn't accept it */ done: return rv; } static int chan_test_write_packed_cell(channel_t *ch, packed_cell_t *packed_cell) { int rv = 0; tt_assert(ch); tt_assert(packed_cell); if (test_chan_accept_cells) { /* Free the cell and bump the counter */ packed_cell_free(packed_cell); ++test_cells_written; rv = 1; } /* else return 0, we didn't accept it */ done: return rv; } static int chan_test_write_var_cell(channel_t *ch, var_cell_t *var_cell) { int rv = 0; tt_assert(ch); tt_assert(var_cell); if (test_chan_accept_cells) { /* Free the cell and bump the counter */ var_cell_free(var_cell); ++test_cells_written; rv = 1; } /* else return 0, we didn't accept it */ done: return rv; } /** * Fill out c with a new fake cell for test suite use */ void make_fake_cell(cell_t *c) { tt_assert(c != NULL); c->circ_id = 1; c->command = CELL_RELAY; memset(c->payload, 0, CELL_PAYLOAD_SIZE); done: return; } /** * Fill out c with a new fake var_cell for test suite use */ void make_fake_var_cell(var_cell_t *c) { tt_assert(c != NULL); c->circ_id = 1; c->command = CELL_VERSIONS; c->payload_len = CELL_PAYLOAD_SIZE / 2; memset(c->payload, 0, c->payload_len); done: return; } /** * Set up a new fake channel for the test suite */ channel_t * new_fake_channel(void) { channel_t *chan = tor_malloc_zero(sizeof(channel_t)); channel_init(chan); chan->close = chan_test_close; chan->get_overhead_estimate = chan_test_get_overhead_estimate; chan->get_remote_descr = chan_test_get_remote_descr; chan->num_bytes_queued = chan_test_num_bytes_queued; chan->num_cells_writeable = chan_test_num_cells_writeable; chan->write_cell = chan_test_write_cell; chan->write_packed_cell = chan_test_write_packed_cell; chan->write_var_cell = chan_test_write_var_cell; chan->state = CHANNEL_STATE_OPEN; return chan; } void free_fake_channel(channel_t *chan) { cell_queue_entry_t *cell, *cell_tmp; if (! chan) return; if (chan->cmux) circuitmux_free(chan->cmux); TOR_SIMPLEQ_FOREACH_SAFE(cell, &chan->incoming_queue, next, cell_tmp) { cell_queue_entry_free(cell, 0); } TOR_SIMPLEQ_FOREACH_SAFE(cell, &chan->outgoing_queue, next, cell_tmp) { cell_queue_entry_free(cell, 0); } tor_free(chan); } /** * Counter query for scheduler_channel_has_waiting_cells_mock() */ int get_mock_scheduler_has_waiting_cells_count(void) { return test_has_waiting_cells_count; } /** * Mock for scheduler_channel_has_waiting_cells() */ void scheduler_channel_has_waiting_cells_mock(channel_t *ch) { (void)ch; /* Increment counter */ ++test_has_waiting_cells_count; return; } static void scheduler_channel_doesnt_want_writes_mock(channel_t *ch) { (void)ch; /* Increment counter */ ++test_doesnt_want_writes_count; return; } /** * Counter query for scheduler_release_channel_mock() */ int get_mock_scheduler_release_channel_count(void) { return test_releases_count; } /** * Mock for scheduler_release_channel() */ void scheduler_release_channel_mock(channel_t *ch) { (void)ch; /* Increment counter */ ++test_releases_count; return; } /** * Test for channel_dumpstats() and limited test for * channel_dump_statistics() */ static void test_channel_dumpstats(void *arg) { channel_t *ch = NULL; cell_t *cell = NULL; int old_count; (void)arg; /* Mock these for duration of the test */ MOCK(scheduler_channel_doesnt_want_writes, scheduler_channel_doesnt_want_writes_mock); MOCK(scheduler_release_channel, scheduler_release_channel_mock); /* Set up a new fake channel */ ch = new_fake_channel(); tt_assert(ch); ch->cmux = circuitmux_alloc(); /* Try to register it */ channel_register(ch); tt_assert(ch->registered); /* Set up mock */ dump_statistics_mock_target = ch; dump_statistics_mock_matches = 0; MOCK(channel_dump_statistics, chan_test_channel_dump_statistics_mock); /* Call channel_dumpstats() */ channel_dumpstats(LOG_DEBUG); /* Assert that we hit the mock */ tt_int_op(dump_statistics_mock_matches, ==, 1); /* Close the channel */ channel_mark_for_close(ch); tt_int_op(ch->state, ==, CHANNEL_STATE_CLOSING); chan_test_finish_close(ch); tt_int_op(ch->state, ==, CHANNEL_STATE_CLOSED); /* Try again and hit the finished channel */ channel_dumpstats(LOG_DEBUG); tt_int_op(dump_statistics_mock_matches, ==, 2); channel_run_cleanup(); ch = NULL; /* Now we should hit nothing */ channel_dumpstats(LOG_DEBUG); tt_int_op(dump_statistics_mock_matches, ==, 2); /* Unmock */ UNMOCK(channel_dump_statistics); dump_statistics_mock_target = NULL; dump_statistics_mock_matches = 0; /* Now make another channel */ ch = new_fake_channel(); tt_assert(ch); ch->cmux = circuitmux_alloc(); channel_register(ch); tt_assert(ch->registered); /* Lie about its age so dumpstats gets coverage for rate calculations */ ch->timestamp_created = time(NULL) - 30; tt_assert(ch->timestamp_created > 0); tt_assert(time(NULL) > ch->timestamp_created); /* Put cells through it both ways to make the counters non-zero */ cell = tor_malloc_zero(sizeof(*cell)); make_fake_cell(cell); test_chan_accept_cells = 1; old_count = test_cells_written; channel_write_cell(ch, cell); cell = NULL; tt_int_op(test_cells_written, ==, old_count + 1); tt_assert(ch->n_bytes_xmitted > 0); tt_assert(ch->n_cells_xmitted > 0); /* Receive path */ channel_set_cell_handlers(ch, chan_test_cell_handler, chan_test_var_cell_handler); tt_ptr_op(channel_get_cell_handler(ch), ==, chan_test_cell_handler); tt_ptr_op(channel_get_var_cell_handler(ch), ==, chan_test_var_cell_handler); cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); old_count = test_chan_fixed_cells_recved; channel_queue_cell(ch, cell); cell = NULL; tt_int_op(test_chan_fixed_cells_recved, ==, old_count + 1); tt_assert(ch->n_bytes_recved > 0); tt_assert(ch->n_cells_recved > 0); /* Test channel_dump_statistics */ ch->describe_transport = chan_test_describe_transport; ch->dumpstats = chan_test_dumpstats; ch->is_canonical = chan_test_is_canonical; old_count = test_dumpstats_calls; channel_dump_statistics(ch, LOG_DEBUG); tt_int_op(test_dumpstats_calls, ==, old_count + 1); /* Close the channel */ channel_mark_for_close(ch); tt_int_op(ch->state, ==, CHANNEL_STATE_CLOSING); chan_test_finish_close(ch); tt_int_op(ch->state, ==, CHANNEL_STATE_CLOSED); channel_run_cleanup(); ch = NULL; done: tor_free(cell); free_fake_channel(ch); UNMOCK(scheduler_channel_doesnt_want_writes); UNMOCK(scheduler_release_channel); return; } static void test_channel_flush(void *arg) { channel_t *ch = NULL; cell_t *cell = NULL; packed_cell_t *p_cell = NULL; var_cell_t *v_cell = NULL; int init_count; (void)arg; ch = new_fake_channel(); tt_assert(ch); /* Cache the original count */ init_count = test_cells_written; /* Stop accepting so we can queue some */ test_chan_accept_cells = 0; /* Queue a regular cell */ cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); channel_write_cell(ch, cell); /* It should be queued, so assert that we didn't write it */ tt_int_op(test_cells_written, ==, init_count); /* Queue a var cell */ v_cell = tor_malloc_zero(sizeof(var_cell_t) + CELL_PAYLOAD_SIZE); make_fake_var_cell(v_cell); channel_write_var_cell(ch, v_cell); /* It should be queued, so assert that we didn't write it */ tt_int_op(test_cells_written, ==, init_count); /* Try a packed cell now */ p_cell = packed_cell_new(); tt_assert(p_cell); channel_write_packed_cell(ch, p_cell); /* It should be queued, so assert that we didn't write it */ tt_int_op(test_cells_written, ==, init_count); /* Now allow writes through again */ test_chan_accept_cells = 1; /* ...and flush */ channel_flush_cells(ch); /* All three should have gone through */ tt_int_op(test_cells_written, ==, init_count + 3); done: tor_free(ch); return; } /** * Channel flush tests that require cmux mocking */ static void test_channel_flushmux(void *arg) { channel_t *ch = NULL; int old_count, q_len_before, q_len_after; ssize_t result; (void)arg; /* Install mocks we need for this test */ MOCK(channel_flush_from_first_active_circuit, chan_test_channel_flush_from_first_active_circuit_mock); MOCK(circuitmux_num_cells, chan_test_circuitmux_num_cells_mock); ch = new_fake_channel(); tt_assert(ch); ch->cmux = circuitmux_alloc(); old_count = test_cells_written; test_target_cmux = ch->cmux; test_cmux_cells = 1; /* Enable cell acceptance */ test_chan_accept_cells = 1; result = channel_flush_some_cells(ch, 1); tt_int_op(result, ==, 1); tt_int_op(test_cells_written, ==, old_count + 1); tt_int_op(test_cmux_cells, ==, 0); /* Now try it without accepting to force them into the queue */ test_chan_accept_cells = 0; test_cmux_cells = 1; q_len_before = chan_cell_queue_len(&(ch->outgoing_queue)); result = channel_flush_some_cells(ch, 1); /* We should not have actually flushed any */ tt_int_op(result, ==, 0); tt_int_op(test_cells_written, ==, old_count + 1); /* But we should have gotten to the fake cellgen loop */ tt_int_op(test_cmux_cells, ==, 0); /* ...and we should have a queued cell */ q_len_after = chan_cell_queue_len(&(ch->outgoing_queue)); tt_int_op(q_len_after, ==, q_len_before + 1); /* Now accept cells again and drain the queue */ test_chan_accept_cells = 1; channel_flush_cells(ch); tt_int_op(test_cells_written, ==, old_count + 2); tt_int_op(chan_cell_queue_len(&(ch->outgoing_queue)), ==, 0); test_target_cmux = NULL; test_cmux_cells = 0; done: if (ch) circuitmux_free(ch->cmux); tor_free(ch); UNMOCK(channel_flush_from_first_active_circuit); UNMOCK(circuitmux_num_cells); test_chan_accept_cells = 0; return; } static void test_channel_incoming(void *arg) { channel_t *ch = NULL; cell_t *cell = NULL; var_cell_t *var_cell = NULL; int old_count; (void)arg; /* Mock these for duration of the test */ MOCK(scheduler_channel_doesnt_want_writes, scheduler_channel_doesnt_want_writes_mock); MOCK(scheduler_release_channel, scheduler_release_channel_mock); /* Accept cells to lower layer */ test_chan_accept_cells = 1; /* Use default overhead factor */ test_overhead_estimate = 1.0f; ch = new_fake_channel(); tt_assert(ch); /* Start it off in OPENING */ ch->state = CHANNEL_STATE_OPENING; /* We'll need a cmux */ ch->cmux = circuitmux_alloc(); /* Install incoming cell handlers */ channel_set_cell_handlers(ch, chan_test_cell_handler, chan_test_var_cell_handler); /* Test cell handler getters */ tt_ptr_op(channel_get_cell_handler(ch), ==, chan_test_cell_handler); tt_ptr_op(channel_get_var_cell_handler(ch), ==, chan_test_var_cell_handler); /* Try to register it */ channel_register(ch); tt_assert(ch->registered); /* Open it */ channel_change_state(ch, CHANNEL_STATE_OPEN); tt_int_op(ch->state, ==, CHANNEL_STATE_OPEN); /* Receive a fixed cell */ cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); old_count = test_chan_fixed_cells_recved; channel_queue_cell(ch, cell); cell = NULL; tt_int_op(test_chan_fixed_cells_recved, ==, old_count + 1); /* Receive a variable-size cell */ var_cell = tor_malloc_zero(sizeof(var_cell_t) + CELL_PAYLOAD_SIZE); make_fake_var_cell(var_cell); old_count = test_chan_var_cells_recved; channel_queue_var_cell(ch, var_cell); var_cell = NULL; tt_int_op(test_chan_var_cells_recved, ==, old_count + 1); /* Close it */ channel_mark_for_close(ch); tt_int_op(ch->state, ==, CHANNEL_STATE_CLOSING); chan_test_finish_close(ch); tt_int_op(ch->state, ==, CHANNEL_STATE_CLOSED); channel_run_cleanup(); ch = NULL; done: free_fake_channel(ch); tor_free(cell); tor_free(var_cell); UNMOCK(scheduler_channel_doesnt_want_writes); UNMOCK(scheduler_release_channel); return; } /** * Normal channel lifecycle test: * * OPENING->OPEN->MAINT->OPEN->CLOSING->CLOSED */ static void test_channel_lifecycle(void *arg) { channel_t *ch1 = NULL, *ch2 = NULL; cell_t *cell = NULL; int old_count, init_doesnt_want_writes_count; int init_releases_count; (void)arg; /* Mock these for the whole lifecycle test */ MOCK(scheduler_channel_doesnt_want_writes, scheduler_channel_doesnt_want_writes_mock); MOCK(scheduler_release_channel, scheduler_release_channel_mock); /* Cache some initial counter values */ init_doesnt_want_writes_count = test_doesnt_want_writes_count; init_releases_count = test_releases_count; /* Accept cells to lower layer */ test_chan_accept_cells = 1; /* Use default overhead factor */ test_overhead_estimate = 1.0f; ch1 = new_fake_channel(); tt_assert(ch1); /* Start it off in OPENING */ ch1->state = CHANNEL_STATE_OPENING; /* We'll need a cmux */ ch1->cmux = circuitmux_alloc(); /* Try to register it */ channel_register(ch1); tt_assert(ch1->registered); /* Try to write a cell through (should queue) */ cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); old_count = test_cells_written; channel_write_cell(ch1, cell); tt_int_op(old_count, ==, test_cells_written); /* Move it to OPEN and flush */ channel_change_state(ch1, CHANNEL_STATE_OPEN); /* Queue should drain */ tt_int_op(old_count + 1, ==, test_cells_written); /* Get another one */ ch2 = new_fake_channel(); tt_assert(ch2); ch2->state = CHANNEL_STATE_OPENING; ch2->cmux = circuitmux_alloc(); /* Register */ channel_register(ch2); tt_assert(ch2->registered); /* Check counters */ tt_int_op(test_doesnt_want_writes_count, ==, init_doesnt_want_writes_count); tt_int_op(test_releases_count, ==, init_releases_count); /* Move ch1 to MAINT */ channel_change_state(ch1, CHANNEL_STATE_MAINT); tt_int_op(test_doesnt_want_writes_count, ==, init_doesnt_want_writes_count + 1); tt_int_op(test_releases_count, ==, init_releases_count); /* Move ch2 to OPEN */ channel_change_state(ch2, CHANNEL_STATE_OPEN); tt_int_op(test_doesnt_want_writes_count, ==, init_doesnt_want_writes_count + 1); tt_int_op(test_releases_count, ==, init_releases_count); /* Move ch1 back to OPEN */ channel_change_state(ch1, CHANNEL_STATE_OPEN); tt_int_op(test_doesnt_want_writes_count, ==, init_doesnt_want_writes_count + 1); tt_int_op(test_releases_count, ==, init_releases_count); /* Mark ch2 for close */ channel_mark_for_close(ch2); tt_int_op(ch2->state, ==, CHANNEL_STATE_CLOSING); tt_int_op(test_doesnt_want_writes_count, ==, init_doesnt_want_writes_count + 1); tt_int_op(test_releases_count, ==, init_releases_count + 1); /* Shut down channels */ channel_free_all(); ch1 = ch2 = NULL; tt_int_op(test_doesnt_want_writes_count, ==, init_doesnt_want_writes_count + 1); /* channel_free() calls scheduler_release_channel() */ tt_int_op(test_releases_count, ==, init_releases_count + 4); done: free_fake_channel(ch1); free_fake_channel(ch2); UNMOCK(scheduler_channel_doesnt_want_writes); UNMOCK(scheduler_release_channel); return; } /** * Weird channel lifecycle test: * * OPENING->CLOSING->CLOSED * OPENING->OPEN->CLOSING->ERROR * OPENING->OPEN->MAINT->CLOSING->CLOSED * OPENING->OPEN->MAINT->CLOSING->ERROR */ static void test_channel_lifecycle_2(void *arg) { channel_t *ch = NULL; (void)arg; /* Mock these for the whole lifecycle test */ MOCK(scheduler_channel_doesnt_want_writes, scheduler_channel_doesnt_want_writes_mock); MOCK(scheduler_release_channel, scheduler_release_channel_mock); /* Accept cells to lower layer */ test_chan_accept_cells = 1; /* Use default overhead factor */ test_overhead_estimate = 1.0f; ch = new_fake_channel(); tt_assert(ch); /* Start it off in OPENING */ ch->state = CHANNEL_STATE_OPENING; /* The full lifecycle test needs a cmux */ ch->cmux = circuitmux_alloc(); /* Try to register it */ channel_register(ch); tt_assert(ch->registered); /* Try to close it */ channel_mark_for_close(ch); tt_int_op(ch->state, ==, CHANNEL_STATE_CLOSING); /* Finish closing it */ chan_test_finish_close(ch); tt_int_op(ch->state, ==, CHANNEL_STATE_CLOSED); channel_run_cleanup(); ch = NULL; /* Now try OPENING->OPEN->CLOSING->ERROR */ ch = new_fake_channel(); tt_assert(ch); ch->state = CHANNEL_STATE_OPENING; ch->cmux = circuitmux_alloc(); channel_register(ch); tt_assert(ch->registered); /* Finish opening it */ channel_change_state(ch, CHANNEL_STATE_OPEN); /* Error exit from lower layer */ chan_test_error(ch); tt_int_op(ch->state, ==, CHANNEL_STATE_CLOSING); chan_test_finish_close(ch); tt_int_op(ch->state, ==, CHANNEL_STATE_ERROR); channel_run_cleanup(); ch = NULL; /* OPENING->OPEN->MAINT->CLOSING->CLOSED close from maintenance state */ ch = new_fake_channel(); tt_assert(ch); ch->state = CHANNEL_STATE_OPENING; ch->cmux = circuitmux_alloc(); channel_register(ch); tt_assert(ch->registered); /* Finish opening it */ channel_change_state(ch, CHANNEL_STATE_OPEN); tt_int_op(ch->state, ==, CHANNEL_STATE_OPEN); /* Go to maintenance state */ channel_change_state(ch, CHANNEL_STATE_MAINT); tt_int_op(ch->state, ==, CHANNEL_STATE_MAINT); /* Lower layer close */ channel_mark_for_close(ch); tt_int_op(ch->state, ==, CHANNEL_STATE_CLOSING); /* Finish */ chan_test_finish_close(ch); tt_int_op(ch->state, ==, CHANNEL_STATE_CLOSED); channel_run_cleanup(); ch = NULL; /* * OPENING->OPEN->MAINT->CLOSING->CLOSED lower-layer close during * maintenance state */ ch = new_fake_channel(); tt_assert(ch); ch->state = CHANNEL_STATE_OPENING; ch->cmux = circuitmux_alloc(); channel_register(ch); tt_assert(ch->registered); /* Finish opening it */ channel_change_state(ch, CHANNEL_STATE_OPEN); tt_int_op(ch->state, ==, CHANNEL_STATE_OPEN); /* Go to maintenance state */ channel_change_state(ch, CHANNEL_STATE_MAINT); tt_int_op(ch->state, ==, CHANNEL_STATE_MAINT); /* Lower layer close */ channel_close_from_lower_layer(ch); tt_int_op(ch->state, ==, CHANNEL_STATE_CLOSING); /* Finish */ chan_test_finish_close(ch); tt_int_op(ch->state, ==, CHANNEL_STATE_CLOSED); channel_run_cleanup(); ch = NULL; /* OPENING->OPEN->MAINT->CLOSING->ERROR */ ch = new_fake_channel(); tt_assert(ch); ch->state = CHANNEL_STATE_OPENING; ch->cmux = circuitmux_alloc(); channel_register(ch); tt_assert(ch->registered); /* Finish opening it */ channel_change_state(ch, CHANNEL_STATE_OPEN); tt_int_op(ch->state, ==, CHANNEL_STATE_OPEN); /* Go to maintenance state */ channel_change_state(ch, CHANNEL_STATE_MAINT); tt_int_op(ch->state, ==, CHANNEL_STATE_MAINT); /* Lower layer close */ chan_test_error(ch); tt_int_op(ch->state, ==, CHANNEL_STATE_CLOSING); /* Finish */ chan_test_finish_close(ch); tt_int_op(ch->state, ==, CHANNEL_STATE_ERROR); channel_run_cleanup(); ch = NULL; /* Shut down channels */ channel_free_all(); done: tor_free(ch); UNMOCK(scheduler_channel_doesnt_want_writes); UNMOCK(scheduler_release_channel); return; } static void test_channel_multi(void *arg) { channel_t *ch1 = NULL, *ch2 = NULL; uint64_t global_queue_estimate; cell_t *cell = NULL; (void)arg; /* Accept cells to lower layer */ test_chan_accept_cells = 1; /* Use default overhead factor */ test_overhead_estimate = 1.0f; ch1 = new_fake_channel(); tt_assert(ch1); ch2 = new_fake_channel(); tt_assert(ch2); /* Initial queue size update */ channel_update_xmit_queue_size(ch1); tt_u64_op(ch1->bytes_queued_for_xmit, ==, 0); channel_update_xmit_queue_size(ch2); tt_u64_op(ch2->bytes_queued_for_xmit, ==, 0); global_queue_estimate = channel_get_global_queue_estimate(); tt_u64_op(global_queue_estimate, ==, 0); /* Queue some cells, check queue estimates */ cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); channel_write_cell(ch1, cell); cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); channel_write_cell(ch2, cell); channel_update_xmit_queue_size(ch1); channel_update_xmit_queue_size(ch2); tt_u64_op(ch1->bytes_queued_for_xmit, ==, 0); tt_u64_op(ch2->bytes_queued_for_xmit, ==, 0); global_queue_estimate = channel_get_global_queue_estimate(); tt_u64_op(global_queue_estimate, ==, 0); /* Stop accepting cells at lower layer */ test_chan_accept_cells = 0; /* Queue some cells and check queue estimates */ cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); channel_write_cell(ch1, cell); channel_update_xmit_queue_size(ch1); tt_u64_op(ch1->bytes_queued_for_xmit, ==, 512); global_queue_estimate = channel_get_global_queue_estimate(); tt_u64_op(global_queue_estimate, ==, 512); cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); channel_write_cell(ch2, cell); channel_update_xmit_queue_size(ch2); tt_u64_op(ch2->bytes_queued_for_xmit, ==, 512); global_queue_estimate = channel_get_global_queue_estimate(); tt_u64_op(global_queue_estimate, ==, 1024); /* Allow cells through again */ test_chan_accept_cells = 1; /* Flush chan 2 */ channel_flush_cells(ch2); /* Update and check queue sizes */ channel_update_xmit_queue_size(ch1); channel_update_xmit_queue_size(ch2); tt_u64_op(ch1->bytes_queued_for_xmit, ==, 512); tt_u64_op(ch2->bytes_queued_for_xmit, ==, 0); global_queue_estimate = channel_get_global_queue_estimate(); tt_u64_op(global_queue_estimate, ==, 512); /* Flush chan 1 */ channel_flush_cells(ch1); /* Update and check queue sizes */ channel_update_xmit_queue_size(ch1); channel_update_xmit_queue_size(ch2); tt_u64_op(ch1->bytes_queued_for_xmit, ==, 0); tt_u64_op(ch2->bytes_queued_for_xmit, ==, 0); global_queue_estimate = channel_get_global_queue_estimate(); tt_u64_op(global_queue_estimate, ==, 0); /* Now block again */ test_chan_accept_cells = 0; /* Queue some cells */ cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); channel_write_cell(ch1, cell); cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); channel_write_cell(ch2, cell); cell = NULL; /* Check the estimates */ channel_update_xmit_queue_size(ch1); channel_update_xmit_queue_size(ch2); tt_u64_op(ch1->bytes_queued_for_xmit, ==, 512); tt_u64_op(ch2->bytes_queued_for_xmit, ==, 512); global_queue_estimate = channel_get_global_queue_estimate(); tt_u64_op(global_queue_estimate, ==, 1024); /* Now close channel 2; it should be subtracted from the global queue */ MOCK(scheduler_release_channel, scheduler_release_channel_mock); channel_mark_for_close(ch2); UNMOCK(scheduler_release_channel); global_queue_estimate = channel_get_global_queue_estimate(); tt_u64_op(global_queue_estimate, ==, 512); /* * Since the fake channels aren't registered, channel_free_all() can't * see them properly. */ MOCK(scheduler_release_channel, scheduler_release_channel_mock); channel_mark_for_close(ch1); UNMOCK(scheduler_release_channel); global_queue_estimate = channel_get_global_queue_estimate(); tt_u64_op(global_queue_estimate, ==, 0); /* Now free everything */ MOCK(scheduler_release_channel, scheduler_release_channel_mock); channel_free_all(); UNMOCK(scheduler_release_channel); done: free_fake_channel(ch1); free_fake_channel(ch2); return; } /** * Check some hopefully-impossible edge cases in the channel queue we * can only trigger by doing evil things to the queue directly. */ static void test_channel_queue_impossible(void *arg) { channel_t *ch = NULL; cell_t *cell = NULL; packed_cell_t *packed_cell = NULL; var_cell_t *var_cell = NULL; int old_count; cell_queue_entry_t *q = NULL; uint64_t global_queue_estimate; uintptr_t cellintptr; /* Cache the global queue size (see below) */ global_queue_estimate = channel_get_global_queue_estimate(); (void)arg; ch = new_fake_channel(); tt_assert(ch); /* We test queueing here; tell it not to accept cells */ test_chan_accept_cells = 0; /* ...and keep it from trying to flush the queue */ ch->state = CHANNEL_STATE_MAINT; /* Cache the cell written count */ old_count = test_cells_written; /* Assert that the queue is initially empty */ tt_int_op(chan_cell_queue_len(&(ch->outgoing_queue)), ==, 0); /* Get a fresh cell and write it to the channel*/ cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); cellintptr = (uintptr_t)(void*)cell; channel_write_cell(ch, cell); /* Now it should be queued */ tt_int_op(chan_cell_queue_len(&(ch->outgoing_queue)), ==, 1); q = TOR_SIMPLEQ_FIRST(&(ch->outgoing_queue)); tt_assert(q); if (q) { tt_int_op(q->type, ==, CELL_QUEUE_FIXED); tt_assert((uintptr_t)q->u.fixed.cell == cellintptr); } /* Do perverse things to it */ tor_free(q->u.fixed.cell); q->u.fixed.cell = NULL; /* * Now change back to open with channel_change_state() and assert that it * gets thrown away properly. */ test_chan_accept_cells = 1; channel_change_state(ch, CHANNEL_STATE_OPEN); tt_assert(test_cells_written == old_count); tt_int_op(chan_cell_queue_len(&(ch->outgoing_queue)), ==, 0); /* Same thing but for a var_cell */ test_chan_accept_cells = 0; ch->state = CHANNEL_STATE_MAINT; var_cell = tor_malloc_zero(sizeof(var_cell_t) + CELL_PAYLOAD_SIZE); make_fake_var_cell(var_cell); cellintptr = (uintptr_t)(void*)var_cell; channel_write_var_cell(ch, var_cell); /* Check that it's queued */ tt_int_op(chan_cell_queue_len(&(ch->outgoing_queue)), ==, 1); q = TOR_SIMPLEQ_FIRST(&(ch->outgoing_queue)); tt_assert(q); if (q) { tt_int_op(q->type, ==, CELL_QUEUE_VAR); tt_assert((uintptr_t)q->u.var.var_cell == cellintptr); } /* Remove the cell from the queue entry */ tor_free(q->u.var.var_cell); q->u.var.var_cell = NULL; /* Let it drain and check that the bad entry is discarded */ test_chan_accept_cells = 1; channel_change_state(ch, CHANNEL_STATE_OPEN); tt_assert(test_cells_written == old_count); tt_int_op(chan_cell_queue_len(&(ch->outgoing_queue)), ==, 0); /* Same thing with a packed_cell */ test_chan_accept_cells = 0; ch->state = CHANNEL_STATE_MAINT; packed_cell = packed_cell_new(); tt_assert(packed_cell); cellintptr = (uintptr_t)(void*)packed_cell; channel_write_packed_cell(ch, packed_cell); /* Check that it's queued */ tt_int_op(chan_cell_queue_len(&(ch->outgoing_queue)), ==, 1); q = TOR_SIMPLEQ_FIRST(&(ch->outgoing_queue)); tt_assert(q); if (q) { tt_int_op(q->type, ==, CELL_QUEUE_PACKED); tt_assert((uintptr_t)q->u.packed.packed_cell == cellintptr); } /* Remove the cell from the queue entry */ packed_cell_free(q->u.packed.packed_cell); q->u.packed.packed_cell = NULL; /* Let it drain and check that the bad entry is discarded */ test_chan_accept_cells = 1; channel_change_state(ch, CHANNEL_STATE_OPEN); tt_assert(test_cells_written == old_count); tt_int_op(chan_cell_queue_len(&(ch->outgoing_queue)), ==, 0); /* Unknown cell type case */ test_chan_accept_cells = 0; ch->state = CHANNEL_STATE_MAINT; cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); cellintptr = (uintptr_t)(void*)cell; channel_write_cell(ch, cell); /* Check that it's queued */ tt_int_op(chan_cell_queue_len(&(ch->outgoing_queue)), ==, 1); q = TOR_SIMPLEQ_FIRST(&(ch->outgoing_queue)); tt_assert(q); if (q) { tt_int_op(q->type, ==, CELL_QUEUE_FIXED); tt_assert((uintptr_t)q->u.fixed.cell == cellintptr); } /* Clobber it, including the queue entry type */ tor_free(q->u.fixed.cell); q->u.fixed.cell = NULL; q->type = CELL_QUEUE_PACKED + 1; /* Let it drain and check that the bad entry is discarded */ test_chan_accept_cells = 1; channel_change_state(ch, CHANNEL_STATE_OPEN); tt_assert(test_cells_written == old_count); tt_int_op(chan_cell_queue_len(&(ch->outgoing_queue)), ==, 0); done: free_fake_channel(ch); /* * Doing that meant that we couldn't correctly adjust the queue size * for the var cell, so manually reset the global queue size estimate * so the next test doesn't break if we run with --no-fork. */ estimated_total_queue_size = global_queue_estimate; return; } static void test_channel_queue_size(void *arg) { channel_t *ch = NULL; cell_t *cell = NULL; int n, old_count; uint64_t global_queue_estimate; (void)arg; ch = new_fake_channel(); tt_assert(ch); /* Initial queue size update */ channel_update_xmit_queue_size(ch); tt_u64_op(ch->bytes_queued_for_xmit, ==, 0); global_queue_estimate = channel_get_global_queue_estimate(); tt_u64_op(global_queue_estimate, ==, 0); /* Test the call-through to our fake lower layer */ n = channel_num_cells_writeable(ch); /* chan_test_num_cells_writeable() always returns 32 */ tt_int_op(n, ==, 32); /* * Now we queue some cells and check that channel_num_cells_writeable() * adjusts properly */ /* tell it not to accept cells */ test_chan_accept_cells = 0; /* ...and keep it from trying to flush the queue */ ch->state = CHANNEL_STATE_MAINT; /* Get a fresh cell */ cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); old_count = test_cells_written; channel_write_cell(ch, cell); /* Assert that it got queued, not written through, correctly */ tt_int_op(test_cells_written, ==, old_count); /* Now check chan_test_num_cells_writeable() again */ n = channel_num_cells_writeable(ch); tt_int_op(n, ==, 0); /* Should return 0 since we're in CHANNEL_STATE_MAINT */ /* Update queue size estimates */ channel_update_xmit_queue_size(ch); /* One cell, times an overhead factor of 1.0 */ tt_u64_op(ch->bytes_queued_for_xmit, ==, 512); /* Try a different overhead factor */ test_overhead_estimate = 0.5f; /* This one should be ignored since it's below 1.0 */ channel_update_xmit_queue_size(ch); tt_u64_op(ch->bytes_queued_for_xmit, ==, 512); /* Now try a larger one */ test_overhead_estimate = 2.0f; channel_update_xmit_queue_size(ch); tt_u64_op(ch->bytes_queued_for_xmit, ==, 1024); /* Go back to 1.0 */ test_overhead_estimate = 1.0f; channel_update_xmit_queue_size(ch); tt_u64_op(ch->bytes_queued_for_xmit, ==, 512); /* Check the global estimate too */ global_queue_estimate = channel_get_global_queue_estimate(); tt_u64_op(global_queue_estimate, ==, 512); /* Go to open */ old_count = test_cells_written; channel_change_state(ch, CHANNEL_STATE_OPEN); /* * It should try to write, but we aren't accepting cells right now, so * it'll requeue */ tt_int_op(test_cells_written, ==, old_count); /* Check the queue size again */ channel_update_xmit_queue_size(ch); tt_u64_op(ch->bytes_queued_for_xmit, ==, 512); global_queue_estimate = channel_get_global_queue_estimate(); tt_u64_op(global_queue_estimate, ==, 512); /* * Now the cell is in the queue, and we're open, so we should get 31 * writeable cells. */ n = channel_num_cells_writeable(ch); tt_int_op(n, ==, 31); /* Accept cells again */ test_chan_accept_cells = 1; /* ...and re-process the queue */ old_count = test_cells_written; channel_flush_cells(ch); tt_int_op(test_cells_written, ==, old_count + 1); /* Should have 32 writeable now */ n = channel_num_cells_writeable(ch); tt_int_op(n, ==, 32); /* Should have queue size estimate of zero */ channel_update_xmit_queue_size(ch); tt_u64_op(ch->bytes_queued_for_xmit, ==, 0); global_queue_estimate = channel_get_global_queue_estimate(); tt_u64_op(global_queue_estimate, ==, 0); /* Okay, now we're done with this one */ MOCK(scheduler_release_channel, scheduler_release_channel_mock); channel_mark_for_close(ch); UNMOCK(scheduler_release_channel); done: free_fake_channel(ch); return; } static void test_channel_write(void *arg) { channel_t *ch = NULL; cell_t *cell = tor_malloc_zero(sizeof(cell_t)); packed_cell_t *packed_cell = NULL; var_cell_t *var_cell = tor_malloc_zero(sizeof(var_cell_t) + CELL_PAYLOAD_SIZE); int old_count; (void)arg; packed_cell = packed_cell_new(); tt_assert(packed_cell); ch = new_fake_channel(); tt_assert(ch); make_fake_cell(cell); make_fake_var_cell(var_cell); /* Tell it to accept cells */ test_chan_accept_cells = 1; old_count = test_cells_written; channel_write_cell(ch, cell); cell = NULL; tt_assert(test_cells_written == old_count + 1); channel_write_var_cell(ch, var_cell); var_cell = NULL; tt_assert(test_cells_written == old_count + 2); channel_write_packed_cell(ch, packed_cell); packed_cell = NULL; tt_assert(test_cells_written == old_count + 3); /* Now we test queueing; tell it not to accept cells */ test_chan_accept_cells = 0; /* ...and keep it from trying to flush the queue */ ch->state = CHANNEL_STATE_MAINT; /* Get a fresh cell */ cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); old_count = test_cells_written; channel_write_cell(ch, cell); tt_assert(test_cells_written == old_count); /* * Now change back to open with channel_change_state() and assert that it * gets drained from the queue. */ test_chan_accept_cells = 1; channel_change_state(ch, CHANNEL_STATE_OPEN); tt_assert(test_cells_written == old_count + 1); /* * Check the note destroy case */ cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); cell->command = CELL_DESTROY; /* Set up the mock */ MOCK(channel_note_destroy_not_pending, channel_note_destroy_not_pending_mock); old_count = test_destroy_not_pending_calls; channel_write_cell(ch, cell); tt_assert(test_destroy_not_pending_calls == old_count + 1); /* Now send a non-destroy and check we don't call it */ cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); channel_write_cell(ch, cell); tt_assert(test_destroy_not_pending_calls == old_count + 1); UNMOCK(channel_note_destroy_not_pending); /* * Now switch it to CLOSING so we can test the discard-cells case * in the channel_write_*() functions. */ MOCK(scheduler_release_channel, scheduler_release_channel_mock); channel_mark_for_close(ch); UNMOCK(scheduler_release_channel); /* Send cells that will drop in the closing state */ old_count = test_cells_written; cell = tor_malloc_zero(sizeof(cell_t)); make_fake_cell(cell); channel_write_cell(ch, cell); cell = NULL; tt_assert(test_cells_written == old_count); var_cell = tor_malloc_zero(sizeof(var_cell_t) + CELL_PAYLOAD_SIZE); make_fake_var_cell(var_cell); channel_write_var_cell(ch, var_cell); var_cell = NULL; tt_assert(test_cells_written == old_count); packed_cell = packed_cell_new(); channel_write_packed_cell(ch, packed_cell); packed_cell = NULL; tt_assert(test_cells_written == old_count); done: free_fake_channel(ch); tor_free(var_cell); tor_free(cell); packed_cell_free(packed_cell); return; } struct testcase_t channel_tests[] = { { "dumpstats", test_channel_dumpstats, TT_FORK, NULL, NULL }, { "flush", test_channel_flush, TT_FORK, NULL, NULL }, { "flushmux", test_channel_flushmux, TT_FORK, NULL, NULL }, { "incoming", test_channel_incoming, TT_FORK, NULL, NULL }, { "lifecycle", test_channel_lifecycle, TT_FORK, NULL, NULL }, { "lifecycle_2", test_channel_lifecycle_2, TT_FORK, NULL, NULL }, { "multi", test_channel_multi, TT_FORK, NULL, NULL }, { "queue_impossible", test_channel_queue_impossible, TT_FORK, NULL, NULL }, { "queue_size", test_channel_queue_size, TT_FORK, NULL, NULL }, { "write", test_channel_write, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_keygen.sh0000755000175000017500000002715312621363246014054 00000000000000#!/bin/sh # Note: some of this code is lifted from zero_length_keys.sh, and could be # unified. umask 077 set -e if [ $# -eq 0 ] || [ ! -f ${1} ] || [ ! -x ${1} ]; then if [ "$TESTING_TOR_BINARY" = "" ] ; then echo "Usage: ${0} PATH_TO_TOR [case-number]" exit 1 fi fi if [ $# -ge 1 ]; then TOR_BINARY="${1}" shift else TOR_BINARY="${TESTING_TOR_BINARY}" fi if [ $# -ge 1 ]; then dflt=0 else dflt=1 fi CASE2A=$dflt CASE2B=$dflt CASE3A=$dflt CASE3B=$dflt CASE3C=$dflt CASE4=$dflt CASE5=$dflt CASE6=$dflt CASE7=$dflt CASE8=$dflt CASE9=$dflt CASE10=$dflt if [ $# -ge 1 ]; then eval "CASE${1}"=1 fi dump() { xxd -p "$1" | tr -d '\n '; } die() { echo "$1" >&2 ; exit 5; } check_dir() { [ -d "$1" ] || die "$1 did not exist"; } check_file() { [ -e "$1" ] || die "$1 did not exist"; } check_no_file() { [ -e "$1" ] && die "$1 was not supposed to exist" || true; } check_files_eq() { cmp "$1" "$2" || die "$1 and $2 did not match: `dump $1` vs `dump $2`"; } check_keys_eq() { check_files_eq "${SRC}/keys/${1}" "${ME}/keys/${1}"; } DATA_DIR=`mktemp -d -t tor_keygen_tests.XXXXXX` if [ -z "$DATA_DIR" ]; then echo "Failure: mktemp invocation returned empty string" >&2 exit 3 fi if [ ! -d "$DATA_DIR" ]; then echo "Failure: mktemp invocation result doesn't point to directory" >&2 exit 3 fi trap "rm -rf '$DATA_DIR'" 0 # Use an absolute path for this or Tor will complain DATA_DIR=`cd "${DATA_DIR}" && pwd` touch "${DATA_DIR}/empty_torrc" QUIETLY="--hush" SILENTLY="--quiet" TOR="${TOR_BINARY} ${QUIETLY} --DisableNetwork 1 --ShutdownWaitLength 0 --ORPort 12345 --ExitRelay 0 -f ${DATA_DIR}/empty_torrc" ##### SETUP # # Here we create three sets of keys: one using "tor", one using "tor # --keygen", and one using "tor --keygen" and encryption. We'll be # copying them into different keys directories in order to simulate # different kinds of configuration problems/issues. # Step 1: Start Tor with --list-fingerprint --quiet. Make sure everything is there. mkdir "${DATA_DIR}/orig" ${TOR} --DataDirectory "${DATA_DIR}/orig" --list-fingerprint ${SILENTLY} > /dev/null check_dir "${DATA_DIR}/orig/keys" check_file "${DATA_DIR}/orig/keys/ed25519_master_id_public_key" check_file "${DATA_DIR}/orig/keys/ed25519_master_id_secret_key" check_file "${DATA_DIR}/orig/keys/ed25519_signing_cert" check_file "${DATA_DIR}/orig/keys/ed25519_signing_secret_key" # Step 2: Start Tor with --keygen. Make sure everything is there. mkdir "${DATA_DIR}/keygen" ${TOR} --DataDirectory "${DATA_DIR}/keygen" --keygen --no-passphrase 2>"${DATA_DIR}/keygen/stderr" grep "Not encrypting the secret key" "${DATA_DIR}/keygen/stderr" >/dev/null || die "Tor didn't declare that there would be no encryption" check_dir "${DATA_DIR}/keygen/keys" check_file "${DATA_DIR}/keygen/keys/ed25519_master_id_public_key" check_file "${DATA_DIR}/keygen/keys/ed25519_master_id_secret_key" check_file "${DATA_DIR}/keygen/keys/ed25519_signing_cert" check_file "${DATA_DIR}/keygen/keys/ed25519_signing_secret_key" # Step 3: Start Tor with --keygen and a passphrase. # Make sure everything is there. mkdir "${DATA_DIR}/encrypted" echo "passphrase" | ${TOR} --DataDirectory "${DATA_DIR}/encrypted" --keygen --passphrase-fd 0 check_dir "${DATA_DIR}/encrypted/keys" check_file "${DATA_DIR}/encrypted/keys/ed25519_master_id_public_key" check_file "${DATA_DIR}/encrypted/keys/ed25519_master_id_secret_key_encrypted" check_file "${DATA_DIR}/encrypted/keys/ed25519_signing_cert" check_file "${DATA_DIR}/encrypted/keys/ed25519_signing_secret_key" echo "=== Starting keygen tests." # # The "case X" numbers below come from s7r's email on # https://lists.torproject.org/pipermail/tor-dev/2015-August/009204.html # Case 2a: Missing secret key, public key exists, start tor. if [ "$CASE2A" = 1 ]; then ME="${DATA_DIR}/case2a" SRC="${DATA_DIR}/orig" mkdir -p "${ME}/keys" cp "${SRC}/keys/ed25519_master_id_public_key" "${ME}/keys/" ${TOR} --DataDirectory "${ME}" --list-fingerprint > "${ME}/stdout" && die "Somehow succeeded when missing secret key, certs: `cat ${ME}/stdout`" || true check_files_eq "${SRC}/keys/ed25519_master_id_public_key" "${ME}/keys/ed25519_master_id_public_key" grep "We needed to load a secret key.*but couldn't find it" "${ME}/stdout" >/dev/null || die "Tor didn't declare that it was missing a secret key" echo "==== Case 2A ok" fi # Case 2b: Encrypted secret key, public key exists, start tor. if [ "$CASE2B" = 1 ]; then ME="${DATA_DIR}/case2b" SRC="${DATA_DIR}/encrypted" mkdir -p "${ME}/keys" cp "${SRC}/keys/ed25519_master_id_public_key" "${ME}/keys/" cp "${SRC}/keys/ed25519_master_id_secret_key_encrypted" "${ME}/keys/" ${TOR} --DataDirectory "${ME}" --list-fingerprint > "${ME}/stdout" && dir "Somehow succeeded with encrypted secret key, missing certs" check_files_eq "${SRC}/keys/ed25519_master_id_public_key" "${ME}/keys/ed25519_master_id_public_key" check_files_eq "${SRC}/keys/ed25519_master_id_secret_key_encrypted" "${ME}/keys/ed25519_master_id_secret_key_encrypted" grep "We needed to load a secret key.*but it was encrypted.*--keygen" "${ME}/stdout" >/dev/null || die "Tor didn't declare that it was missing a secret key and suggest --keygen." echo "==== Case 2B ok" fi # Case 3a: Start Tor with only master key. if [ "$CASE3A" = 1 ]; then ME="${DATA_DIR}/case3a" SRC="${DATA_DIR}/orig" mkdir -p "${ME}/keys" cp "${SRC}/keys/ed25519_master_id_"* "${ME}/keys/" ${TOR} --DataDirectory "${ME}" --list-fingerprint ${SILENTLY} >/dev/null || die "Tor failed when starting with only master key" check_files_eq "${SRC}/keys/ed25519_master_id_public_key" "${ME}/keys/ed25519_master_id_public_key" check_files_eq "${SRC}/keys/ed25519_master_id_secret_key" "${ME}/keys/ed25519_master_id_secret_key" check_file "${ME}/keys/ed25519_signing_cert" check_file "${ME}/keys/ed25519_signing_secret_key" echo "==== Case 3A ok" fi # Case 3b: Call keygen with only unencrypted master key. if [ "$CASE3B" = 1 ]; then ME="${DATA_DIR}/case3b" SRC="${DATA_DIR}/orig" mkdir -p "${ME}/keys" cp "${SRC}/keys/ed25519_master_id_"* "${ME}/keys/" ${TOR} --DataDirectory "${ME}" --keygen || die "Keygen failed with only master key" check_files_eq "${SRC}/keys/ed25519_master_id_public_key" "${ME}/keys/ed25519_master_id_public_key" check_files_eq "${SRC}/keys/ed25519_master_id_secret_key" "${ME}/keys/ed25519_master_id_secret_key" check_file "${ME}/keys/ed25519_signing_cert" check_file "${ME}/keys/ed25519_signing_secret_key" echo "==== Case 3B ok" fi # Case 3c: Call keygen with only encrypted master key. if [ "$CASE3C" = 1 ]; then ME="${DATA_DIR}/case3c" SRC="${DATA_DIR}/encrypted" mkdir -p "${ME}/keys" cp "${SRC}/keys/ed25519_master_id_"* "${ME}/keys/" echo "passphrase" | ${TOR} --DataDirectory "${ME}" --keygen --passphrase-fd 0 || die "Keygen failed with only encrypted master key" check_files_eq "${SRC}/keys/ed25519_master_id_public_key" "${ME}/keys/ed25519_master_id_public_key" check_files_eq "${SRC}/keys/ed25519_master_id_secret_key_encrypted" "${ME}/keys/ed25519_master_id_secret_key_encrypted" check_file "${ME}/keys/ed25519_signing_cert" check_file "${ME}/keys/ed25519_signing_secret_key" echo "==== Case 3C ok" fi # Case 4: Make a new data directory with only an unencrypted secret key. # Then start tor. The rest should become correct. if [ "$CASE4" = 1 ]; then ME="${DATA_DIR}/case4" SRC="${DATA_DIR}/orig" mkdir -p "${ME}/keys" cp "${SRC}/keys/ed25519_master_id_secret_key" "${ME}/keys/" ${TOR} --DataDirectory "${ME}" --list-fingerprint ${SILENTLY} > "${ME}/fp1" || die "Tor wouldn't start with only unencrypted secret key" check_file "${ME}/keys/ed25519_master_id_public_key" check_file "${ME}/keys/ed25519_signing_cert" check_file "${ME}/keys/ed25519_signing_secret_key" ${TOR} --DataDirectory "${ME}" --list-fingerprint ${SILENTLY} > "${ME}/fp2" || die "Tor wouldn't start again after starting once with only unencrypted secret key." check_files_eq "${ME}/fp1" "${ME}/fp2" echo "==== Case 4 ok" fi # Case 5: Make a new data directory with only an encrypted secret key. if [ "$CASE5" = 1 ]; then ME="${DATA_DIR}/case5" SRC="${DATA_DIR}/encrypted" mkdir -p "${ME}/keys" cp "${SRC}/keys/ed25519_master_id_secret_key_encrypted" "${ME}/keys/" ${TOR} --DataDirectory "${ME}" --list-fingerprint >"${ME}/stdout" && die "Tor started with only encrypted secret key!" check_no_file "${ME}/keys/ed25519_master_id_public_key" check_no_file "${ME}/keys/ed25519_master_id_public_key" grep "but not public key file" "${ME}/stdout" >/dev/null || die "Tor didn't declare it couldn't find a public key." echo "==== Case 5 ok" fi # Case 6: Make a new data directory with encrypted secret key and public key if [ "$CASE6" = 1 ]; then ME="${DATA_DIR}/case6" SRC="${DATA_DIR}/encrypted" mkdir -p "${ME}/keys" cp "${SRC}/keys/ed25519_master_id_secret_key_encrypted" "${ME}/keys/" cp "${SRC}/keys/ed25519_master_id_public_key" "${ME}/keys/" ${TOR} --DataDirectory "${ME}" --list-fingerprint > "${ME}/stdout" && die "Tor started with encrypted secret key and no certs" || true check_no_file "${ME}/keys/ed25519_signing_cert" check_no_file "${ME}/keys/ed25519_signing_secret_key" grep "but it was encrypted" "${ME}/stdout" >/dev/null || die "Tor didn't declare that the secret key was encrypted." echo "==== Case 6 ok" fi # Case 7: Make a new data directory with unencrypted secret key and # certificates; missing master public. if [ "$CASE7" = 1 ]; then ME="${DATA_DIR}/case7" SRC="${DATA_DIR}/keygen" mkdir -p "${ME}/keys" cp "${SRC}/keys/ed25519_master_id_secret_key" "${ME}/keys/" cp "${SRC}/keys/ed25519_signing_cert" "${ME}/keys/" cp "${SRC}/keys/ed25519_signing_secret_key" "${ME}/keys/" ${TOR} --DataDirectory "${ME}" --list-fingerprint ${SILENTLY} >/dev/null || die "Failed when starting with missing public key" check_keys_eq ed25519_master_id_secret_key check_keys_eq ed25519_master_id_public_key check_keys_eq ed25519_signing_secret_key check_keys_eq ed25519_signing_cert echo "==== Case 7 ok" fi # Case 8: offline master secret key. if [ "$CASE8" = 1 ]; then ME="${DATA_DIR}/case8" SRC="${DATA_DIR}/keygen" mkdir -p "${ME}/keys" cp "${SRC}/keys/ed25519_master_id_public_key" "${ME}/keys/" cp "${SRC}/keys/ed25519_signing_cert" "${ME}/keys/" cp "${SRC}/keys/ed25519_signing_secret_key" "${ME}/keys/" ${TOR} --DataDirectory "${ME}" --list-fingerprint ${SILENTLY} >/dev/null || die "Failed when starting with offline secret key" check_no_file "${ME}/keys/ed25519_master_id_secret_key" check_keys_eq ed25519_master_id_public_key check_keys_eq ed25519_signing_secret_key check_keys_eq ed25519_signing_cert echo "==== Case 8 ok" fi # Case 9: signing cert and secret key provided; could infer master key. if [ "$CASE9" = 1 ]; then ME="${DATA_DIR}/case9" SRC="${DATA_DIR}/keygen" mkdir -p "${ME}/keys" cp "${SRC}/keys/ed25519_signing_cert" "${ME}/keys/" cp "${SRC}/keys/ed25519_signing_secret_key" "${ME}/keys/" ${TOR} --DataDirectory "${ME}" --list-fingerprint ${SILENTLY} >/dev/null || die "Failed when starting with only signing material" check_no_file "${ME}/keys/ed25519_master_id_secret_key" check_file "${ME}/keys/ed25519_master_id_public_key" check_keys_eq ed25519_signing_secret_key check_keys_eq ed25519_signing_cert echo "==== Case 9 ok" fi # Case 10: master key mismatch. if [ "$CASE10" = 1 ]; then ME="${DATA_DIR}/case10" SRC="${DATA_DIR}/keygen" OTHER="${DATA_DIR}/orig" mkdir -p "${ME}/keys" cp "${SRC}/keys/ed25519_master_id_public_key" "${ME}/keys/" cp "${OTHER}/keys/ed25519_master_id_secret_key" "${ME}/keys/" ${TOR} --DataDirectory "${ME}" --list-fingerprint >"${ME}/stdout" && die "Successfully started with mismatched keys!?" || true grep "public_key does not match.*secret_key" "${ME}/stdout" >/dev/null || die "Tor didn't declare that there was a key mismatch" echo "==== Case 10 ok" fi # Check cert-only. tor-0.2.7.6/src/test/test_containers.c0000644000175000017500000011577412621363246014553 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #include "or.h" #include "fp_pair.h" #include "test.h" /** Helper: return a tristate based on comparing the strings in *a and * *b. */ static int compare_strs_(const void **a, const void **b) { const char *s1 = *a, *s2 = *b; return strcmp(s1, s2); } /** Helper: return a tristate based on comparing the strings in a and * *b. */ static int compare_strs_for_bsearch_(const void *a, const void **b) { const char *s1 = a, *s2 = *b; return strcmp(s1, s2); } /** Helper: return a tristate based on comparing the strings in *a and * *b, excluding a's first character, and ignoring case. */ static int cmp_without_first_(const void *a, const void **b) { const char *s1 = a, *s2 = *b; return strcasecmp(s1+1, s2); } /** Run unit tests for basic dynamic-sized array functionality. */ static void test_container_smartlist_basic(void *arg) { smartlist_t *sl; char *v0 = tor_strdup("v0"); char *v1 = tor_strdup("v1"); char *v2 = tor_strdup("v2"); char *v3 = tor_strdup("v3"); char *v4 = tor_strdup("v4"); char *v22 = tor_strdup("v22"); char *v99 = tor_strdup("v99"); char *v555 = tor_strdup("v555"); /* XXXX test sort_digests, uniq_strings, uniq_digests */ /* Test smartlist add, del_keeporder, insert, get. */ (void)arg; sl = smartlist_new(); smartlist_add(sl, v1); smartlist_add(sl, v2); smartlist_add(sl, v3); smartlist_add(sl, v4); smartlist_del_keeporder(sl, 1); smartlist_insert(sl, 1, v22); smartlist_insert(sl, 0, v0); smartlist_insert(sl, 5, v555); tt_ptr_op(v0,OP_EQ, smartlist_get(sl,0)); tt_ptr_op(v1,OP_EQ, smartlist_get(sl,1)); tt_ptr_op(v22,OP_EQ, smartlist_get(sl,2)); tt_ptr_op(v3,OP_EQ, smartlist_get(sl,3)); tt_ptr_op(v4,OP_EQ, smartlist_get(sl,4)); tt_ptr_op(v555,OP_EQ, smartlist_get(sl,5)); /* Try deleting in the middle. */ smartlist_del(sl, 1); tt_ptr_op(v555,OP_EQ, smartlist_get(sl, 1)); /* Try deleting at the end. */ smartlist_del(sl, 4); tt_int_op(4,OP_EQ, smartlist_len(sl)); /* test isin. */ tt_assert(smartlist_contains(sl, v3)); tt_assert(!smartlist_contains(sl, v99)); done: smartlist_free(sl); tor_free(v0); tor_free(v1); tor_free(v2); tor_free(v3); tor_free(v4); tor_free(v22); tor_free(v99); tor_free(v555); } /** Run unit tests for smartlist-of-strings functionality. */ static void test_container_smartlist_strings(void *arg) { smartlist_t *sl = smartlist_new(); char *cp=NULL, *cp_alloc=NULL; size_t sz; /* Test split and join */ (void)arg; tt_int_op(0,OP_EQ, smartlist_len(sl)); smartlist_split_string(sl, "abc", ":", 0, 0); tt_int_op(1,OP_EQ, smartlist_len(sl)); tt_str_op("abc",OP_EQ, smartlist_get(sl, 0)); smartlist_split_string(sl, "a::bc::", "::", 0, 0); tt_int_op(4,OP_EQ, smartlist_len(sl)); tt_str_op("a",OP_EQ, smartlist_get(sl, 1)); tt_str_op("bc",OP_EQ, smartlist_get(sl, 2)); tt_str_op("",OP_EQ, smartlist_get(sl, 3)); cp_alloc = smartlist_join_strings(sl, "", 0, NULL); tt_str_op(cp_alloc,OP_EQ, "abcabc"); tor_free(cp_alloc); cp_alloc = smartlist_join_strings(sl, "!", 0, NULL); tt_str_op(cp_alloc,OP_EQ, "abc!a!bc!"); tor_free(cp_alloc); cp_alloc = smartlist_join_strings(sl, "XY", 0, NULL); tt_str_op(cp_alloc,OP_EQ, "abcXYaXYbcXY"); tor_free(cp_alloc); cp_alloc = smartlist_join_strings(sl, "XY", 1, NULL); tt_str_op(cp_alloc,OP_EQ, "abcXYaXYbcXYXY"); tor_free(cp_alloc); cp_alloc = smartlist_join_strings(sl, "", 1, NULL); tt_str_op(cp_alloc,OP_EQ, "abcabc"); tor_free(cp_alloc); smartlist_split_string(sl, "/def/ /ghijk", "/", 0, 0); tt_int_op(8,OP_EQ, smartlist_len(sl)); tt_str_op("",OP_EQ, smartlist_get(sl, 4)); tt_str_op("def",OP_EQ, smartlist_get(sl, 5)); tt_str_op(" ",OP_EQ, smartlist_get(sl, 6)); tt_str_op("ghijk",OP_EQ, smartlist_get(sl, 7)); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_clear(sl); smartlist_split_string(sl, "a,bbd,cdef", ",", SPLIT_SKIP_SPACE, 0); tt_int_op(3,OP_EQ, smartlist_len(sl)); tt_str_op("a",OP_EQ, smartlist_get(sl,0)); tt_str_op("bbd",OP_EQ, smartlist_get(sl,1)); tt_str_op("cdef",OP_EQ, smartlist_get(sl,2)); smartlist_split_string(sl, " z <> zhasd <> <> bnud<> ", "<>", SPLIT_SKIP_SPACE, 0); tt_int_op(8,OP_EQ, smartlist_len(sl)); tt_str_op("z",OP_EQ, smartlist_get(sl,3)); tt_str_op("zhasd",OP_EQ, smartlist_get(sl,4)); tt_str_op("",OP_EQ, smartlist_get(sl,5)); tt_str_op("bnud",OP_EQ, smartlist_get(sl,6)); tt_str_op("",OP_EQ, smartlist_get(sl,7)); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_clear(sl); smartlist_split_string(sl, " ab\tc \td ef ", NULL, SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0); tt_int_op(4,OP_EQ, smartlist_len(sl)); tt_str_op("ab",OP_EQ, smartlist_get(sl,0)); tt_str_op("c",OP_EQ, smartlist_get(sl,1)); tt_str_op("d",OP_EQ, smartlist_get(sl,2)); tt_str_op("ef",OP_EQ, smartlist_get(sl,3)); smartlist_split_string(sl, "ghi\tj", NULL, SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0); tt_int_op(6,OP_EQ, smartlist_len(sl)); tt_str_op("ghi",OP_EQ, smartlist_get(sl,4)); tt_str_op("j",OP_EQ, smartlist_get(sl,5)); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_clear(sl); cp_alloc = smartlist_join_strings(sl, "XY", 0, NULL); tt_str_op(cp_alloc,OP_EQ, ""); tor_free(cp_alloc); cp_alloc = smartlist_join_strings(sl, "XY", 1, NULL); tt_str_op(cp_alloc,OP_EQ, "XY"); tor_free(cp_alloc); smartlist_split_string(sl, " z <> zhasd <> <> bnud<> ", "<>", SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0); tt_int_op(3,OP_EQ, smartlist_len(sl)); tt_str_op("z",OP_EQ, smartlist_get(sl, 0)); tt_str_op("zhasd",OP_EQ, smartlist_get(sl, 1)); tt_str_op("bnud",OP_EQ, smartlist_get(sl, 2)); smartlist_split_string(sl, " z <> zhasd <> <> bnud<> ", "<>", SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 2); tt_int_op(5,OP_EQ, smartlist_len(sl)); tt_str_op("z",OP_EQ, smartlist_get(sl, 3)); tt_str_op("zhasd <> <> bnud<>",OP_EQ, smartlist_get(sl, 4)); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_clear(sl); smartlist_split_string(sl, "abcd\n", "\n", SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0); tt_int_op(1,OP_EQ, smartlist_len(sl)); tt_str_op("abcd",OP_EQ, smartlist_get(sl, 0)); smartlist_split_string(sl, "efgh", "\n", SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0); tt_int_op(2,OP_EQ, smartlist_len(sl)); tt_str_op("efgh",OP_EQ, smartlist_get(sl, 1)); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_clear(sl); /* Test swapping, shuffling, and sorting. */ smartlist_split_string(sl, "the,onion,router,by,arma,and,nickm", ",", 0, 0); tt_int_op(7,OP_EQ, smartlist_len(sl)); smartlist_sort(sl, compare_strs_); cp_alloc = smartlist_join_strings(sl, ",", 0, NULL); tt_str_op(cp_alloc,OP_EQ, "and,arma,by,nickm,onion,router,the"); tor_free(cp_alloc); smartlist_swap(sl, 1, 5); cp_alloc = smartlist_join_strings(sl, ",", 0, NULL); tt_str_op(cp_alloc,OP_EQ, "and,router,by,nickm,onion,arma,the"); tor_free(cp_alloc); smartlist_shuffle(sl); tt_int_op(7,OP_EQ, smartlist_len(sl)); tt_assert(smartlist_contains_string(sl, "and")); tt_assert(smartlist_contains_string(sl, "router")); tt_assert(smartlist_contains_string(sl, "by")); tt_assert(smartlist_contains_string(sl, "nickm")); tt_assert(smartlist_contains_string(sl, "onion")); tt_assert(smartlist_contains_string(sl, "arma")); tt_assert(smartlist_contains_string(sl, "the")); /* Test bsearch. */ smartlist_sort(sl, compare_strs_); tt_str_op("nickm",OP_EQ, smartlist_bsearch(sl, "zNicKM", cmp_without_first_)); tt_str_op("and",OP_EQ, smartlist_bsearch(sl, " AND", cmp_without_first_)); tt_ptr_op(NULL,OP_EQ, smartlist_bsearch(sl, " ANz", cmp_without_first_)); /* Test bsearch_idx */ { int f; smartlist_t *tmp = NULL; tt_int_op(0,OP_EQ,smartlist_bsearch_idx(sl," aaa",cmp_without_first_,&f)); tt_int_op(f,OP_EQ, 0); tt_int_op(0,OP_EQ, smartlist_bsearch_idx(sl," and",cmp_without_first_,&f)); tt_int_op(f,OP_EQ, 1); tt_int_op(1,OP_EQ, smartlist_bsearch_idx(sl," arm",cmp_without_first_,&f)); tt_int_op(f,OP_EQ, 0); tt_int_op(1,OP_EQ, smartlist_bsearch_idx(sl," arma",cmp_without_first_,&f)); tt_int_op(f,OP_EQ, 1); tt_int_op(2,OP_EQ, smartlist_bsearch_idx(sl," armb",cmp_without_first_,&f)); tt_int_op(f,OP_EQ, 0); tt_int_op(7,OP_EQ, smartlist_bsearch_idx(sl," zzzz",cmp_without_first_,&f)); tt_int_op(f,OP_EQ, 0); /* Test trivial cases for list of length 0 or 1 */ tmp = smartlist_new(); tt_int_op(0,OP_EQ, smartlist_bsearch_idx(tmp, "foo", compare_strs_for_bsearch_, &f)); tt_int_op(f,OP_EQ, 0); smartlist_insert(tmp, 0, (void *)("bar")); tt_int_op(1,OP_EQ, smartlist_bsearch_idx(tmp, "foo", compare_strs_for_bsearch_, &f)); tt_int_op(f,OP_EQ, 0); tt_int_op(0,OP_EQ, smartlist_bsearch_idx(tmp, "aaa", compare_strs_for_bsearch_, &f)); tt_int_op(f,OP_EQ, 0); tt_int_op(0,OP_EQ, smartlist_bsearch_idx(tmp, "bar", compare_strs_for_bsearch_, &f)); tt_int_op(f,OP_EQ, 1); /* ... and one for length 2 */ smartlist_insert(tmp, 1, (void *)("foo")); tt_int_op(1,OP_EQ, smartlist_bsearch_idx(tmp, "foo", compare_strs_for_bsearch_, &f)); tt_int_op(f,OP_EQ, 1); tt_int_op(2,OP_EQ, smartlist_bsearch_idx(tmp, "goo", compare_strs_for_bsearch_, &f)); tt_int_op(f,OP_EQ, 0); smartlist_free(tmp); } /* Test reverse() and pop_last() */ smartlist_reverse(sl); cp_alloc = smartlist_join_strings(sl, ",", 0, NULL); tt_str_op(cp_alloc,OP_EQ, "the,router,onion,nickm,by,arma,and"); tor_free(cp_alloc); cp_alloc = smartlist_pop_last(sl); tt_str_op(cp_alloc,OP_EQ, "and"); tor_free(cp_alloc); tt_int_op(smartlist_len(sl),OP_EQ, 6); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_clear(sl); cp_alloc = smartlist_pop_last(sl); tt_ptr_op(cp_alloc,OP_EQ, NULL); /* Test uniq() */ smartlist_split_string(sl, "50,noon,radar,a,man,a,plan,a,canal,panama,radar,noon,50", ",", 0, 0); smartlist_sort(sl, compare_strs_); smartlist_uniq(sl, compare_strs_, tor_free_); cp_alloc = smartlist_join_strings(sl, ",", 0, NULL); tt_str_op(cp_alloc,OP_EQ, "50,a,canal,man,noon,panama,plan,radar"); tor_free(cp_alloc); /* Test contains_string, contains_string_case and contains_int_as_string */ tt_assert(smartlist_contains_string(sl, "noon")); tt_assert(!smartlist_contains_string(sl, "noonoon")); tt_assert(smartlist_contains_string_case(sl, "nOOn")); tt_assert(!smartlist_contains_string_case(sl, "nooNooN")); tt_assert(smartlist_contains_int_as_string(sl, 50)); tt_assert(!smartlist_contains_int_as_string(sl, 60)); /* Test smartlist_choose */ { int i; int allsame = 1; int allin = 1; void *first = smartlist_choose(sl); tt_assert(smartlist_contains(sl, first)); for (i = 0; i < 100; ++i) { void *second = smartlist_choose(sl); if (second != first) allsame = 0; if (!smartlist_contains(sl, second)) allin = 0; } tt_assert(!allsame); tt_assert(allin); } SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_clear(sl); /* Test string_remove and remove and join_strings2 */ smartlist_split_string(sl, "Some say the Earth will end in ice and some in fire", " ", 0, 0); cp = smartlist_get(sl, 4); tt_str_op(cp,OP_EQ, "will"); smartlist_add(sl, cp); smartlist_remove(sl, cp); tor_free(cp); cp_alloc = smartlist_join_strings(sl, ",", 0, NULL); tt_str_op(cp_alloc,OP_EQ, "Some,say,the,Earth,fire,end,in,ice,and,some,in"); tor_free(cp_alloc); smartlist_string_remove(sl, "in"); cp_alloc = smartlist_join_strings2(sl, "+XX", 1, 0, &sz); tt_str_op(cp_alloc,OP_EQ, "Some+say+the+Earth+fire+end+some+ice+and"); tt_int_op((int)sz,OP_EQ, 40); done: SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_free(sl); tor_free(cp_alloc); } /** Run unit tests for smartlist set manipulation functions. */ static void test_container_smartlist_overlap(void *arg) { smartlist_t *sl = smartlist_new(); smartlist_t *ints = smartlist_new(); smartlist_t *odds = smartlist_new(); smartlist_t *evens = smartlist_new(); smartlist_t *primes = smartlist_new(); int i; (void)arg; for (i=1; i < 10; i += 2) smartlist_add(odds, (void*)(uintptr_t)i); for (i=0; i < 10; i += 2) smartlist_add(evens, (void*)(uintptr_t)i); /* add_all */ smartlist_add_all(ints, odds); smartlist_add_all(ints, evens); tt_int_op(smartlist_len(ints),OP_EQ, 10); smartlist_add(primes, (void*)2); smartlist_add(primes, (void*)3); smartlist_add(primes, (void*)5); smartlist_add(primes, (void*)7); /* overlap */ tt_assert(smartlist_overlap(ints, odds)); tt_assert(smartlist_overlap(odds, primes)); tt_assert(smartlist_overlap(evens, primes)); tt_assert(!smartlist_overlap(odds, evens)); /* intersect */ smartlist_add_all(sl, odds); smartlist_intersect(sl, primes); tt_int_op(smartlist_len(sl),OP_EQ, 3); tt_assert(smartlist_contains(sl, (void*)3)); tt_assert(smartlist_contains(sl, (void*)5)); tt_assert(smartlist_contains(sl, (void*)7)); /* subtract */ smartlist_add_all(sl, primes); smartlist_subtract(sl, odds); tt_int_op(smartlist_len(sl),OP_EQ, 1); tt_assert(smartlist_contains(sl, (void*)2)); done: smartlist_free(odds); smartlist_free(evens); smartlist_free(ints); smartlist_free(primes); smartlist_free(sl); } /** Run unit tests for smartlist-of-digests functions. */ static void test_container_smartlist_digests(void *arg) { smartlist_t *sl = smartlist_new(); /* contains_digest */ (void)arg; smartlist_add(sl, tor_memdup("AAAAAAAAAAAAAAAAAAAA", DIGEST_LEN)); smartlist_add(sl, tor_memdup("\00090AAB2AAAAaasdAAAAA", DIGEST_LEN)); smartlist_add(sl, tor_memdup("\00090AAB2AAAAaasdAAAAA", DIGEST_LEN)); tt_int_op(0,OP_EQ, smartlist_contains_digest(NULL, "AAAAAAAAAAAAAAAAAAAA")); tt_assert(smartlist_contains_digest(sl, "AAAAAAAAAAAAAAAAAAAA")); tt_assert(smartlist_contains_digest(sl, "\00090AAB2AAAAaasdAAAAA")); tt_int_op(0,OP_EQ, smartlist_contains_digest(sl, "\00090AAB2AAABaasdAAAAA")); /* sort digests */ smartlist_sort_digests(sl); tt_mem_op(smartlist_get(sl, 0),OP_EQ, "\00090AAB2AAAAaasdAAAAA", DIGEST_LEN); tt_mem_op(smartlist_get(sl, 1),OP_EQ, "\00090AAB2AAAAaasdAAAAA", DIGEST_LEN); tt_mem_op(smartlist_get(sl, 2),OP_EQ, "AAAAAAAAAAAAAAAAAAAA", DIGEST_LEN); tt_int_op(3,OP_EQ, smartlist_len(sl)); /* uniq_digests */ smartlist_uniq_digests(sl); tt_int_op(2,OP_EQ, smartlist_len(sl)); tt_mem_op(smartlist_get(sl, 0),OP_EQ, "\00090AAB2AAAAaasdAAAAA", DIGEST_LEN); tt_mem_op(smartlist_get(sl, 1),OP_EQ, "AAAAAAAAAAAAAAAAAAAA", DIGEST_LEN); done: SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_free(sl); } /** Run unit tests for concatenate-a-smartlist-of-strings functions. */ static void test_container_smartlist_join(void *arg) { smartlist_t *sl = smartlist_new(); smartlist_t *sl2 = smartlist_new(), *sl3 = smartlist_new(), *sl4 = smartlist_new(); char *joined=NULL; /* unique, sorted. */ (void)arg; smartlist_split_string(sl, "Abashments Ambush Anchorman Bacon Banks Borscht " "Bunks Inhumane Insurance Knish Know Manners " "Maraschinos Stamina Sunbonnets Unicorns Wombats", " ", 0, 0); /* non-unique, sorted. */ smartlist_split_string(sl2, "Ambush Anchorman Anchorman Anemias Anemias Bacon " "Crossbowmen Inhumane Insurance Knish Know Manners " "Manners Maraschinos Wombats Wombats Work", " ", 0, 0); SMARTLIST_FOREACH_JOIN(sl, char *, cp1, sl2, char *, cp2, strcmp(cp1,cp2), smartlist_add(sl3, cp2)) { tt_str_op(cp1,OP_EQ, cp2); smartlist_add(sl4, cp1); } SMARTLIST_FOREACH_JOIN_END(cp1, cp2); SMARTLIST_FOREACH(sl3, const char *, cp, tt_assert(smartlist_contains(sl2, cp) && !smartlist_contains_string(sl, cp))); SMARTLIST_FOREACH(sl4, const char *, cp, tt_assert(smartlist_contains(sl, cp) && smartlist_contains_string(sl2, cp))); joined = smartlist_join_strings(sl3, ",", 0, NULL); tt_str_op(joined,OP_EQ, "Anemias,Anemias,Crossbowmen,Work"); tor_free(joined); joined = smartlist_join_strings(sl4, ",", 0, NULL); tt_str_op(joined,OP_EQ, "Ambush,Anchorman,Anchorman,Bacon,Inhumane,Insurance," "Knish,Know,Manners,Manners,Maraschinos,Wombats,Wombats"); tor_free(joined); done: smartlist_free(sl4); smartlist_free(sl3); SMARTLIST_FOREACH(sl2, char *, cp, tor_free(cp)); smartlist_free(sl2); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_free(sl); tor_free(joined); } static void test_container_smartlist_pos(void *arg) { (void) arg; smartlist_t *sl = smartlist_new(); smartlist_add(sl, tor_strdup("This")); smartlist_add(sl, tor_strdup("is")); smartlist_add(sl, tor_strdup("a")); smartlist_add(sl, tor_strdup("test")); smartlist_add(sl, tor_strdup("for")); smartlist_add(sl, tor_strdup("a")); smartlist_add(sl, tor_strdup("function")); /* Test string_pos */ tt_int_op(smartlist_string_pos(NULL, "Fred"), ==, -1); tt_int_op(smartlist_string_pos(sl, "Fred"), ==, -1); tt_int_op(smartlist_string_pos(sl, "This"), ==, 0); tt_int_op(smartlist_string_pos(sl, "a"), ==, 2); tt_int_op(smartlist_string_pos(sl, "function"), ==, 6); /* Test pos */ tt_int_op(smartlist_pos(NULL, "Fred"), ==, -1); tt_int_op(smartlist_pos(sl, "Fred"), ==, -1); tt_int_op(smartlist_pos(sl, "This"), ==, -1); tt_int_op(smartlist_pos(sl, "a"), ==, -1); tt_int_op(smartlist_pos(sl, "function"), ==, -1); tt_int_op(smartlist_pos(sl, smartlist_get(sl,0)), ==, 0); tt_int_op(smartlist_pos(sl, smartlist_get(sl,2)), ==, 2); tt_int_op(smartlist_pos(sl, smartlist_get(sl,5)), ==, 5); tt_int_op(smartlist_pos(sl, smartlist_get(sl,6)), ==, 6); done: SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_free(sl); } static void test_container_smartlist_ints_eq(void *arg) { smartlist_t *sl1 = NULL, *sl2 = NULL; int x; (void)arg; tt_assert(smartlist_ints_eq(NULL, NULL)); sl1 = smartlist_new(); tt_assert(!smartlist_ints_eq(sl1, NULL)); tt_assert(!smartlist_ints_eq(NULL, sl1)); sl2 = smartlist_new(); tt_assert(smartlist_ints_eq(sl1, sl2)); x = 5; smartlist_add(sl1, tor_memdup(&x, sizeof(int))); smartlist_add(sl2, tor_memdup(&x, sizeof(int))); x = 90; smartlist_add(sl1, tor_memdup(&x, sizeof(int))); smartlist_add(sl2, tor_memdup(&x, sizeof(int))); tt_assert(smartlist_ints_eq(sl1, sl2)); x = -50; smartlist_add(sl1, tor_memdup(&x, sizeof(int))); tt_assert(! smartlist_ints_eq(sl1, sl2)); tt_assert(! smartlist_ints_eq(sl2, sl1)); smartlist_add(sl2, tor_memdup(&x, sizeof(int))); tt_assert(smartlist_ints_eq(sl1, sl2)); *(int*)smartlist_get(sl1, 1) = 101010; tt_assert(! smartlist_ints_eq(sl2, sl1)); *(int*)smartlist_get(sl2, 1) = 101010; tt_assert(smartlist_ints_eq(sl1, sl2)); done: if (sl1) SMARTLIST_FOREACH(sl1, int *, ip, tor_free(ip)); if (sl2) SMARTLIST_FOREACH(sl2, int *, ip, tor_free(ip)); smartlist_free(sl1); smartlist_free(sl2); } /** Run unit tests for bitarray code */ static void test_container_bitarray(void *arg) { bitarray_t *ba = NULL; int i, j, ok=1; (void)arg; ba = bitarray_init_zero(1); tt_assert(ba); tt_assert(! bitarray_is_set(ba, 0)); bitarray_set(ba, 0); tt_assert(bitarray_is_set(ba, 0)); bitarray_clear(ba, 0); tt_assert(! bitarray_is_set(ba, 0)); bitarray_free(ba); ba = bitarray_init_zero(1023); for (i = 1; i < 64; ) { for (j = 0; j < 1023; ++j) { if (j % i) bitarray_set(ba, j); else bitarray_clear(ba, j); } for (j = 0; j < 1023; ++j) { if (!bool_eq(bitarray_is_set(ba, j), j%i)) ok = 0; } tt_assert(ok); if (i < 7) ++i; else if (i == 28) i = 32; else i += 7; } done: if (ba) bitarray_free(ba); } /** Run unit tests for digest set code (implemented as a hashtable or as a * bloom filter) */ static void test_container_digestset(void *arg) { smartlist_t *included = smartlist_new(); char d[DIGEST_LEN]; int i; int ok = 1; int false_positives = 0; digestset_t *set = NULL; (void)arg; for (i = 0; i < 1000; ++i) { crypto_rand(d, DIGEST_LEN); smartlist_add(included, tor_memdup(d, DIGEST_LEN)); } set = digestset_new(1000); SMARTLIST_FOREACH(included, const char *, cp, if (digestset_contains(set, cp)) ok = 0); tt_assert(ok); SMARTLIST_FOREACH(included, const char *, cp, digestset_add(set, cp)); SMARTLIST_FOREACH(included, const char *, cp, if (!digestset_contains(set, cp)) ok = 0); tt_assert(ok); for (i = 0; i < 1000; ++i) { crypto_rand(d, DIGEST_LEN); if (digestset_contains(set, d)) ++false_positives; } tt_int_op(50, OP_GT, false_positives); /* Should be far lower. */ done: if (set) digestset_free(set); SMARTLIST_FOREACH(included, char *, cp, tor_free(cp)); smartlist_free(included); } typedef struct pq_entry_t { const char *val; int idx; } pq_entry_t; /** Helper: return a tristate based on comparing two pq_entry_t values. */ static int compare_strings_for_pqueue_(const void *p1, const void *p2) { const pq_entry_t *e1=p1, *e2=p2; return strcmp(e1->val, e2->val); } /** Run unit tests for heap-based priority queue functions. */ static void test_container_pqueue(void *arg) { smartlist_t *sl = smartlist_new(); int (*cmp)(const void *, const void*); const int offset = STRUCT_OFFSET(pq_entry_t, idx); #define ENTRY(s) pq_entry_t s = { #s, -1 } ENTRY(cows); ENTRY(zebras); ENTRY(fish); ENTRY(frogs); ENTRY(apples); ENTRY(squid); ENTRY(daschunds); ENTRY(eggplants); ENTRY(weissbier); ENTRY(lobsters); ENTRY(roquefort); ENTRY(chinchillas); ENTRY(fireflies); #define OK() smartlist_pqueue_assert_ok(sl, cmp, offset) (void)arg; cmp = compare_strings_for_pqueue_; smartlist_pqueue_add(sl, cmp, offset, &cows); smartlist_pqueue_add(sl, cmp, offset, &zebras); smartlist_pqueue_add(sl, cmp, offset, &fish); smartlist_pqueue_add(sl, cmp, offset, &frogs); smartlist_pqueue_add(sl, cmp, offset, &apples); smartlist_pqueue_add(sl, cmp, offset, &squid); smartlist_pqueue_add(sl, cmp, offset, &daschunds); smartlist_pqueue_add(sl, cmp, offset, &eggplants); smartlist_pqueue_add(sl, cmp, offset, &weissbier); smartlist_pqueue_add(sl, cmp, offset, &lobsters); smartlist_pqueue_add(sl, cmp, offset, &roquefort); OK(); tt_int_op(smartlist_len(sl),OP_EQ, 11); tt_ptr_op(smartlist_get(sl, 0),OP_EQ, &apples); tt_ptr_op(smartlist_pqueue_pop(sl, cmp, offset),OP_EQ, &apples); tt_int_op(smartlist_len(sl),OP_EQ, 10); OK(); tt_ptr_op(smartlist_pqueue_pop(sl, cmp, offset),OP_EQ, &cows); tt_ptr_op(smartlist_pqueue_pop(sl, cmp, offset),OP_EQ, &daschunds); smartlist_pqueue_add(sl, cmp, offset, &chinchillas); OK(); smartlist_pqueue_add(sl, cmp, offset, &fireflies); OK(); tt_ptr_op(smartlist_pqueue_pop(sl, cmp, offset),OP_EQ, &chinchillas); tt_ptr_op(smartlist_pqueue_pop(sl, cmp, offset),OP_EQ, &eggplants); tt_ptr_op(smartlist_pqueue_pop(sl, cmp, offset),OP_EQ, &fireflies); OK(); tt_ptr_op(smartlist_pqueue_pop(sl, cmp, offset),OP_EQ, &fish); tt_ptr_op(smartlist_pqueue_pop(sl, cmp, offset),OP_EQ, &frogs); tt_ptr_op(smartlist_pqueue_pop(sl, cmp, offset),OP_EQ, &lobsters); tt_ptr_op(smartlist_pqueue_pop(sl, cmp, offset),OP_EQ, &roquefort); OK(); tt_int_op(smartlist_len(sl),OP_EQ, 3); tt_ptr_op(smartlist_pqueue_pop(sl, cmp, offset),OP_EQ, &squid); tt_ptr_op(smartlist_pqueue_pop(sl, cmp, offset),OP_EQ, &weissbier); tt_ptr_op(smartlist_pqueue_pop(sl, cmp, offset),OP_EQ, &zebras); tt_int_op(smartlist_len(sl),OP_EQ, 0); OK(); /* Now test remove. */ smartlist_pqueue_add(sl, cmp, offset, &cows); smartlist_pqueue_add(sl, cmp, offset, &fish); smartlist_pqueue_add(sl, cmp, offset, &frogs); smartlist_pqueue_add(sl, cmp, offset, &apples); smartlist_pqueue_add(sl, cmp, offset, &squid); smartlist_pqueue_add(sl, cmp, offset, &zebras); tt_int_op(smartlist_len(sl),OP_EQ, 6); OK(); smartlist_pqueue_remove(sl, cmp, offset, &zebras); tt_int_op(smartlist_len(sl),OP_EQ, 5); OK(); smartlist_pqueue_remove(sl, cmp, offset, &cows); tt_int_op(smartlist_len(sl),OP_EQ, 4); OK(); smartlist_pqueue_remove(sl, cmp, offset, &apples); tt_int_op(smartlist_len(sl),OP_EQ, 3); OK(); tt_ptr_op(smartlist_pqueue_pop(sl, cmp, offset),OP_EQ, &fish); tt_ptr_op(smartlist_pqueue_pop(sl, cmp, offset),OP_EQ, &frogs); tt_ptr_op(smartlist_pqueue_pop(sl, cmp, offset),OP_EQ, &squid); tt_int_op(smartlist_len(sl),OP_EQ, 0); OK(); #undef OK done: smartlist_free(sl); } /** Run unit tests for string-to-void* map functions */ static void test_container_strmap(void *arg) { strmap_t *map; strmap_iter_t *iter; const char *k; void *v; char *visited = NULL; smartlist_t *found_keys = NULL; char *v1 = tor_strdup("v1"); char *v99 = tor_strdup("v99"); char *v100 = tor_strdup("v100"); char *v101 = tor_strdup("v101"); char *v102 = tor_strdup("v102"); char *v103 = tor_strdup("v103"); char *v104 = tor_strdup("v104"); char *v105 = tor_strdup("v105"); (void)arg; map = strmap_new(); tt_assert(map); tt_int_op(strmap_size(map),OP_EQ, 0); tt_assert(strmap_isempty(map)); v = strmap_set(map, "K1", v99); tt_ptr_op(v,OP_EQ, NULL); tt_assert(!strmap_isempty(map)); v = strmap_set(map, "K2", v101); tt_ptr_op(v,OP_EQ, NULL); v = strmap_set(map, "K1", v100); tt_ptr_op(v,OP_EQ, v99); tt_ptr_op(strmap_get(map,"K1"),OP_EQ, v100); tt_ptr_op(strmap_get(map,"K2"),OP_EQ, v101); tt_ptr_op(strmap_get(map,"K-not-there"),OP_EQ, NULL); strmap_assert_ok(map); v = strmap_remove(map,"K2"); strmap_assert_ok(map); tt_ptr_op(v,OP_EQ, v101); tt_ptr_op(strmap_get(map,"K2"),OP_EQ, NULL); tt_ptr_op(strmap_remove(map,"K2"),OP_EQ, NULL); strmap_set(map, "K2", v101); strmap_set(map, "K3", v102); strmap_set(map, "K4", v103); tt_int_op(strmap_size(map),OP_EQ, 4); strmap_assert_ok(map); strmap_set(map, "K5", v104); strmap_set(map, "K6", v105); strmap_assert_ok(map); /* Test iterator. */ iter = strmap_iter_init(map); found_keys = smartlist_new(); while (!strmap_iter_done(iter)) { strmap_iter_get(iter,&k,&v); smartlist_add(found_keys, tor_strdup(k)); tt_ptr_op(v,OP_EQ, strmap_get(map, k)); if (!strcmp(k, "K2")) { iter = strmap_iter_next_rmv(map,iter); } else { iter = strmap_iter_next(map,iter); } } /* Make sure we removed K2, but not the others. */ tt_ptr_op(strmap_get(map, "K2"),OP_EQ, NULL); tt_ptr_op(strmap_get(map, "K5"),OP_EQ, v104); /* Make sure we visited everyone once */ smartlist_sort_strings(found_keys); visited = smartlist_join_strings(found_keys, ":", 0, NULL); tt_str_op(visited,OP_EQ, "K1:K2:K3:K4:K5:K6"); strmap_assert_ok(map); /* Clean up after ourselves. */ strmap_free(map, NULL); map = NULL; /* Now try some lc functions. */ map = strmap_new(); strmap_set_lc(map,"Ab.C", v1); tt_ptr_op(strmap_get(map,"ab.c"),OP_EQ, v1); strmap_assert_ok(map); tt_ptr_op(strmap_get_lc(map,"AB.C"),OP_EQ, v1); tt_ptr_op(strmap_get(map,"AB.C"),OP_EQ, NULL); tt_ptr_op(strmap_remove_lc(map,"aB.C"),OP_EQ, v1); strmap_assert_ok(map); tt_ptr_op(strmap_get_lc(map,"AB.C"),OP_EQ, NULL); done: if (map) strmap_free(map,NULL); if (found_keys) { SMARTLIST_FOREACH(found_keys, char *, cp, tor_free(cp)); smartlist_free(found_keys); } tor_free(visited); tor_free(v1); tor_free(v99); tor_free(v100); tor_free(v101); tor_free(v102); tor_free(v103); tor_free(v104); tor_free(v105); } /** Run unit tests for getting the median of a list. */ static void test_container_order_functions(void *arg) { int lst[25], n = 0; uint32_t lst_2[25]; // int a=12,b=24,c=25,d=60,e=77; #define median() median_int(lst, n) (void)arg; lst[n++] = 12; tt_int_op(12,OP_EQ, median()); /* 12 */ lst[n++] = 77; //smartlist_shuffle(sl); tt_int_op(12,OP_EQ, median()); /* 12, 77 */ lst[n++] = 77; //smartlist_shuffle(sl); tt_int_op(77,OP_EQ, median()); /* 12, 77, 77 */ lst[n++] = 24; tt_int_op(24,OP_EQ, median()); /* 12,24,77,77 */ lst[n++] = 60; lst[n++] = 12; lst[n++] = 25; //smartlist_shuffle(sl); tt_int_op(25,OP_EQ, median()); /* 12,12,24,25,60,77,77 */ #undef median #define third_quartile() third_quartile_uint32(lst_2, n) n = 0; lst_2[n++] = 1; tt_int_op(1,OP_EQ, third_quartile()); /* ~1~ */ lst_2[n++] = 2; tt_int_op(2,OP_EQ, third_quartile()); /* 1, ~2~ */ lst_2[n++] = 3; lst_2[n++] = 4; lst_2[n++] = 5; tt_int_op(4,OP_EQ, third_quartile()); /* 1, 2, 3, ~4~, 5 */ lst_2[n++] = 6; lst_2[n++] = 7; lst_2[n++] = 8; lst_2[n++] = 9; tt_int_op(7,OP_EQ, third_quartile()); /* 1, 2, 3, 4, 5, 6, ~7~, 8, 9 */ lst_2[n++] = 10; lst_2[n++] = 11; /* 1, 2, 3, 4, 5, 6, 7, 8, ~9~, 10, 11 */ tt_int_op(9,OP_EQ, third_quartile()); #undef third_quartile double dbls[] = { 1.0, 10.0, 100.0, 1e4, 1e5, 1e6 }; tt_double_eq(1.0, median_double(dbls, 1)); tt_double_eq(1.0, median_double(dbls, 2)); tt_double_eq(10.0, median_double(dbls, 3)); tt_double_eq(10.0, median_double(dbls, 4)); tt_double_eq(100.0, median_double(dbls, 5)); tt_double_eq(100.0, median_double(dbls, 6)); time_t times[] = { 5, 10, 20, 25, 15 }; tt_assert(5 == median_time(times, 1)); tt_assert(5 == median_time(times, 2)); tt_assert(10 == median_time(times, 3)); tt_assert(10 == median_time(times, 4)); tt_assert(15 == median_time(times, 5)); int32_t int32s[] = { -5, -10, -50, 100 }; tt_int_op(-5, ==, median_int32(int32s, 1)); tt_int_op(-10, ==, median_int32(int32s, 2)); tt_int_op(-10, ==, median_int32(int32s, 3)); tt_int_op(-10, ==, median_int32(int32s, 4)); long longs[] = { -30, 30, 100, -100, 7 }; tt_int_op(7, ==, find_nth_long(longs, 5, 2)); done: ; } static void test_container_di_map(void *arg) { di_digest256_map_t *map = NULL; const uint8_t key1[] = "In view of the fact that it was "; const uint8_t key2[] = "superficially convincing, being "; const uint8_t key3[] = "properly enciphered in a one-tim"; const uint8_t key4[] = "e cipher scheduled for use today"; char *v1 = tor_strdup(", it came close to causing a disaster..."); char *v2 = tor_strdup("I regret to have to advise you that the mission"); char *v3 = tor_strdup("was actually initiated..."); /* -- John Brunner, _The Shockwave Rider_ */ (void)arg; /* Try searching on an empty map. */ tt_ptr_op(NULL, OP_EQ, dimap_search(map, key1, NULL)); tt_ptr_op(NULL, OP_EQ, dimap_search(map, key2, NULL)); tt_ptr_op(v3, OP_EQ, dimap_search(map, key2, v3)); dimap_free(map, NULL); map = NULL; /* Add a single entry. */ dimap_add_entry(&map, key1, v1); tt_ptr_op(NULL, OP_EQ, dimap_search(map, key2, NULL)); tt_ptr_op(v3, OP_EQ, dimap_search(map, key2, v3)); tt_ptr_op(v1, OP_EQ, dimap_search(map, key1, NULL)); /* Now try it with three entries in the map. */ dimap_add_entry(&map, key2, v2); dimap_add_entry(&map, key3, v3); tt_ptr_op(v1, OP_EQ, dimap_search(map, key1, NULL)); tt_ptr_op(v2, OP_EQ, dimap_search(map, key2, NULL)); tt_ptr_op(v3, OP_EQ, dimap_search(map, key3, NULL)); tt_ptr_op(NULL, OP_EQ, dimap_search(map, key4, NULL)); tt_ptr_op(v1, OP_EQ, dimap_search(map, key4, v1)); done: tor_free(v1); tor_free(v2); tor_free(v3); dimap_free(map, NULL); } /** Run unit tests for fp_pair-to-void* map functions */ static void test_container_fp_pair_map(void *arg) { fp_pair_map_t *map; fp_pair_t fp1, fp2, fp3, fp4, fp5, fp6; void *v; fp_pair_map_iter_t *iter; fp_pair_t k; char *v99 = tor_strdup("99"); char *v100 = tor_strdup("v100"); char *v101 = tor_strdup("v101"); char *v102 = tor_strdup("v102"); char *v103 = tor_strdup("v103"); char *v104 = tor_strdup("v104"); char *v105 = tor_strdup("v105"); (void)arg; map = fp_pair_map_new(); tt_assert(map); tt_int_op(fp_pair_map_size(map),OP_EQ, 0); tt_assert(fp_pair_map_isempty(map)); memset(fp1.first, 0x11, DIGEST_LEN); memset(fp1.second, 0x12, DIGEST_LEN); memset(fp2.first, 0x21, DIGEST_LEN); memset(fp2.second, 0x22, DIGEST_LEN); memset(fp3.first, 0x31, DIGEST_LEN); memset(fp3.second, 0x32, DIGEST_LEN); memset(fp4.first, 0x41, DIGEST_LEN); memset(fp4.second, 0x42, DIGEST_LEN); memset(fp5.first, 0x51, DIGEST_LEN); memset(fp5.second, 0x52, DIGEST_LEN); memset(fp6.first, 0x61, DIGEST_LEN); memset(fp6.second, 0x62, DIGEST_LEN); v = fp_pair_map_set(map, &fp1, v99); tt_ptr_op(v, OP_EQ, NULL); tt_assert(!fp_pair_map_isempty(map)); v = fp_pair_map_set(map, &fp2, v101); tt_ptr_op(v, OP_EQ, NULL); v = fp_pair_map_set(map, &fp1, v100); tt_ptr_op(v, OP_EQ, v99); tt_ptr_op(fp_pair_map_get(map, &fp1),OP_EQ, v100); tt_ptr_op(fp_pair_map_get(map, &fp2),OP_EQ, v101); tt_ptr_op(fp_pair_map_get(map, &fp3),OP_EQ, NULL); fp_pair_map_assert_ok(map); v = fp_pair_map_remove(map, &fp2); fp_pair_map_assert_ok(map); tt_ptr_op(v,OP_EQ, v101); tt_ptr_op(fp_pair_map_get(map, &fp2),OP_EQ, NULL); tt_ptr_op(fp_pair_map_remove(map, &fp2),OP_EQ, NULL); fp_pair_map_set(map, &fp2, v101); fp_pair_map_set(map, &fp3, v102); fp_pair_map_set(map, &fp4, v103); tt_int_op(fp_pair_map_size(map),OP_EQ, 4); fp_pair_map_assert_ok(map); fp_pair_map_set(map, &fp5, v104); fp_pair_map_set(map, &fp6, v105); fp_pair_map_assert_ok(map); /* Test iterator. */ iter = fp_pair_map_iter_init(map); while (!fp_pair_map_iter_done(iter)) { fp_pair_map_iter_get(iter, &k, &v); tt_ptr_op(v,OP_EQ, fp_pair_map_get(map, &k)); if (tor_memeq(&fp2, &k, sizeof(fp2))) { iter = fp_pair_map_iter_next_rmv(map, iter); } else { iter = fp_pair_map_iter_next(map, iter); } } /* Make sure we removed fp2, but not the others. */ tt_ptr_op(fp_pair_map_get(map, &fp2),OP_EQ, NULL); tt_ptr_op(fp_pair_map_get(map, &fp5),OP_EQ, v104); fp_pair_map_assert_ok(map); /* Clean up after ourselves. */ fp_pair_map_free(map, NULL); map = NULL; done: if (map) fp_pair_map_free(map, NULL); tor_free(v99); tor_free(v100); tor_free(v101); tor_free(v102); tor_free(v103); tor_free(v104); tor_free(v105); } static void test_container_smartlist_most_frequent(void *arg) { (void) arg; smartlist_t *sl = smartlist_new(); int count = -1; const char *cp; cp = smartlist_get_most_frequent_string_(sl, &count); tt_int_op(count, ==, 0); tt_ptr_op(cp, ==, NULL); /* String must be sorted before we call get_most_frequent */ smartlist_split_string(sl, "abc:def:ghi", ":", 0, 0); cp = smartlist_get_most_frequent_string_(sl, &count); tt_int_op(count, ==, 1); tt_str_op(cp, ==, "ghi"); /* Ties broken in favor of later element */ smartlist_split_string(sl, "def:ghi", ":", 0, 0); smartlist_sort_strings(sl); cp = smartlist_get_most_frequent_string_(sl, &count); tt_int_op(count, ==, 2); tt_ptr_op(cp, !=, NULL); tt_str_op(cp, ==, "ghi"); /* Ties broken in favor of later element */ smartlist_split_string(sl, "def:abc:qwop", ":", 0, 0); smartlist_sort_strings(sl); cp = smartlist_get_most_frequent_string_(sl, &count); tt_int_op(count, ==, 3); tt_ptr_op(cp, !=, NULL); tt_str_op(cp, ==, "def"); /* No tie */ done: SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_free(sl); } static void test_container_smartlist_sort_ptrs(void *arg) { (void)arg; int array[10]; int *arrayptrs[11]; smartlist_t *sl = smartlist_new(); unsigned i=0, j; for (j = 0; j < ARRAY_LENGTH(array); ++j) { smartlist_add(sl, &array[j]); arrayptrs[i++] = &array[j]; if (j == 5) { smartlist_add(sl, &array[j]); arrayptrs[i++] = &array[j]; } } for (i = 0; i < 10; ++i) { smartlist_shuffle(sl); smartlist_sort_pointers(sl); for (j = 0; j < ARRAY_LENGTH(arrayptrs); ++j) { tt_ptr_op(smartlist_get(sl, j), ==, arrayptrs[j]); } } done: smartlist_free(sl); } static void test_container_smartlist_strings_eq(void *arg) { (void)arg; smartlist_t *sl1 = smartlist_new(); smartlist_t *sl2 = smartlist_new(); #define EQ_SHOULD_SAY(s1,s2,val) \ do { \ SMARTLIST_FOREACH(sl1, char *, cp, tor_free(cp)); \ SMARTLIST_FOREACH(sl2, char *, cp, tor_free(cp)); \ smartlist_clear(sl1); \ smartlist_clear(sl2); \ smartlist_split_string(sl1, (s1), ":", 0, 0); \ smartlist_split_string(sl2, (s2), ":", 0, 0); \ tt_int_op((val), OP_EQ, smartlist_strings_eq(sl1, sl2)); \ } while (0) /* Both NULL, so equal */ tt_int_op(1, ==, smartlist_strings_eq(NULL, NULL)); /* One NULL, not equal. */ tt_int_op(0, ==, smartlist_strings_eq(NULL, sl1)); tt_int_op(0, ==, smartlist_strings_eq(sl1, NULL)); /* Both empty, both equal. */ EQ_SHOULD_SAY("", "", 1); /* One empty, not equal */ EQ_SHOULD_SAY("", "ab", 0); EQ_SHOULD_SAY("", "xy:z", 0); EQ_SHOULD_SAY("abc", "", 0); EQ_SHOULD_SAY("abc:cd", "", 0); /* Different lengths, not equal. */ EQ_SHOULD_SAY("hello:world", "hello", 0); EQ_SHOULD_SAY("hello", "hello:friends", 0); /* Same lengths, not equal */ EQ_SHOULD_SAY("Hello:world", "goodbye:world", 0); EQ_SHOULD_SAY("Hello:world", "Hello:stars", 0); /* Actually equal */ EQ_SHOULD_SAY("ABC", "ABC", 1); EQ_SHOULD_SAY(" ab : cd : e", " ab : cd : e", 1); done: SMARTLIST_FOREACH(sl1, char *, cp, tor_free(cp)); SMARTLIST_FOREACH(sl2, char *, cp, tor_free(cp)); smartlist_free(sl1); smartlist_free(sl2); } #define CONTAINER_LEGACY(name) \ { #name, test_container_ ## name , 0, NULL, NULL } #define CONTAINER(name, flags) \ { #name, test_container_ ## name, (flags), NULL, NULL } struct testcase_t container_tests[] = { CONTAINER_LEGACY(smartlist_basic), CONTAINER_LEGACY(smartlist_strings), CONTAINER_LEGACY(smartlist_overlap), CONTAINER_LEGACY(smartlist_digests), CONTAINER_LEGACY(smartlist_join), CONTAINER_LEGACY(smartlist_pos), CONTAINER(smartlist_ints_eq, 0), CONTAINER_LEGACY(bitarray), CONTAINER_LEGACY(digestset), CONTAINER_LEGACY(strmap), CONTAINER_LEGACY(pqueue), CONTAINER_LEGACY(order_functions), CONTAINER(di_map, 0), CONTAINER_LEGACY(fp_pair_map), CONTAINER(smartlist_most_frequent, 0), CONTAINER(smartlist_sort_ptrs, 0), CONTAINER(smartlist_strings_eq, 0), END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_cell_formats.c0000644000175000017500000013233512621363246015050 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #define CONNECTION_EDGE_PRIVATE #define RELAY_PRIVATE #include "or.h" #include "channel.h" #include "connection_edge.h" #include "connection_or.h" #include "onion.h" #include "onion_tap.h" #include "onion_fast.h" #include "onion_ntor.h" #include "relay.h" #include "test.h" #include #include static void test_cfmt_relay_header(void *arg) { relay_header_t rh; const uint8_t hdr_1[RELAY_HEADER_SIZE] = "\x03" "\x00\x00" "\x21\x22" "ABCD" "\x01\x03"; uint8_t hdr_out[RELAY_HEADER_SIZE]; (void)arg; tt_int_op(sizeof(hdr_1), OP_EQ, RELAY_HEADER_SIZE); relay_header_unpack(&rh, hdr_1); tt_int_op(rh.command, OP_EQ, 3); tt_int_op(rh.recognized, OP_EQ, 0); tt_int_op(rh.stream_id, OP_EQ, 0x2122); tt_mem_op(rh.integrity, OP_EQ, "ABCD", 4); tt_int_op(rh.length, OP_EQ, 0x103); relay_header_pack(hdr_out, &rh); tt_mem_op(hdr_out, OP_EQ, hdr_1, RELAY_HEADER_SIZE); done: ; } static void make_relay_cell(cell_t *out, uint8_t command, const void *body, size_t bodylen) { relay_header_t rh; memset(&rh, 0, sizeof(rh)); rh.stream_id = 5; rh.command = command; rh.length = bodylen; out->command = CELL_RELAY; out->circ_id = 10; relay_header_pack(out->payload, &rh); memcpy(out->payload + RELAY_HEADER_SIZE, body, bodylen); } static void test_cfmt_begin_cells(void *arg) { cell_t cell; begin_cell_t bcell; uint8_t end_reason; (void)arg; /* Try begindir. */ memset(&bcell, 0x7f, sizeof(bcell)); make_relay_cell(&cell, RELAY_COMMAND_BEGIN_DIR, "", 0); tt_int_op(0, OP_EQ, begin_cell_parse(&cell, &bcell, &end_reason)); tt_ptr_op(NULL, OP_EQ, bcell.address); tt_int_op(0, OP_EQ, bcell.flags); tt_int_op(0, OP_EQ, bcell.port); tt_int_op(5, OP_EQ, bcell.stream_id); tt_int_op(1, OP_EQ, bcell.is_begindir); /* A Begindir with extra stuff. */ memset(&bcell, 0x7f, sizeof(bcell)); make_relay_cell(&cell, RELAY_COMMAND_BEGIN_DIR, "12345", 5); tt_int_op(0, OP_EQ, begin_cell_parse(&cell, &bcell, &end_reason)); tt_ptr_op(NULL, OP_EQ, bcell.address); tt_int_op(0, OP_EQ, bcell.flags); tt_int_op(0, OP_EQ, bcell.port); tt_int_op(5, OP_EQ, bcell.stream_id); tt_int_op(1, OP_EQ, bcell.is_begindir); /* A short but valid begin cell */ memset(&bcell, 0x7f, sizeof(bcell)); make_relay_cell(&cell, RELAY_COMMAND_BEGIN, "a.b:9", 6); tt_int_op(0, OP_EQ, begin_cell_parse(&cell, &bcell, &end_reason)); tt_str_op("a.b", OP_EQ, bcell.address); tt_int_op(0, OP_EQ, bcell.flags); tt_int_op(9, OP_EQ, bcell.port); tt_int_op(5, OP_EQ, bcell.stream_id); tt_int_op(0, OP_EQ, bcell.is_begindir); tor_free(bcell.address); /* A significantly loner begin cell */ memset(&bcell, 0x7f, sizeof(bcell)); { const char c[] = "here-is-a-nice-long.hostname.com:65535"; make_relay_cell(&cell, RELAY_COMMAND_BEGIN, c, strlen(c)+1); } tt_int_op(0, OP_EQ, begin_cell_parse(&cell, &bcell, &end_reason)); tt_str_op("here-is-a-nice-long.hostname.com", OP_EQ, bcell.address); tt_int_op(0, OP_EQ, bcell.flags); tt_int_op(65535, OP_EQ, bcell.port); tt_int_op(5, OP_EQ, bcell.stream_id); tt_int_op(0, OP_EQ, bcell.is_begindir); tor_free(bcell.address); /* An IPv4 begin cell. */ memset(&bcell, 0x7f, sizeof(bcell)); make_relay_cell(&cell, RELAY_COMMAND_BEGIN, "18.9.22.169:80", 15); tt_int_op(0, OP_EQ, begin_cell_parse(&cell, &bcell, &end_reason)); tt_str_op("18.9.22.169", OP_EQ, bcell.address); tt_int_op(0, OP_EQ, bcell.flags); tt_int_op(80, OP_EQ, bcell.port); tt_int_op(5, OP_EQ, bcell.stream_id); tt_int_op(0, OP_EQ, bcell.is_begindir); tor_free(bcell.address); /* An IPv6 begin cell. Let's make sure we handle colons*/ memset(&bcell, 0x7f, sizeof(bcell)); make_relay_cell(&cell, RELAY_COMMAND_BEGIN, "[2620::6b0:b:1a1a:0:26e5:480e]:80", 34); tt_int_op(0, OP_EQ, begin_cell_parse(&cell, &bcell, &end_reason)); tt_str_op("[2620::6b0:b:1a1a:0:26e5:480e]", OP_EQ, bcell.address); tt_int_op(0, OP_EQ, bcell.flags); tt_int_op(80, OP_EQ, bcell.port); tt_int_op(5, OP_EQ, bcell.stream_id); tt_int_op(0, OP_EQ, bcell.is_begindir); tor_free(bcell.address); /* a begin cell with extra junk but not enough for flags. */ memset(&bcell, 0x7f, sizeof(bcell)); { const char c[] = "another.example.com:80\x00\x01\x02"; make_relay_cell(&cell, RELAY_COMMAND_BEGIN, c, sizeof(c)-1); } tt_int_op(0, OP_EQ, begin_cell_parse(&cell, &bcell, &end_reason)); tt_str_op("another.example.com", OP_EQ, bcell.address); tt_int_op(0, OP_EQ, bcell.flags); tt_int_op(80, OP_EQ, bcell.port); tt_int_op(5, OP_EQ, bcell.stream_id); tt_int_op(0, OP_EQ, bcell.is_begindir); tor_free(bcell.address); /* a begin cell with flags. */ memset(&bcell, 0x7f, sizeof(bcell)); { const char c[] = "another.example.com:443\x00\x01\x02\x03\x04"; make_relay_cell(&cell, RELAY_COMMAND_BEGIN, c, sizeof(c)-1); } tt_int_op(0, OP_EQ, begin_cell_parse(&cell, &bcell, &end_reason)); tt_str_op("another.example.com", OP_EQ, bcell.address); tt_int_op(0x1020304, OP_EQ, bcell.flags); tt_int_op(443, OP_EQ, bcell.port); tt_int_op(5, OP_EQ, bcell.stream_id); tt_int_op(0, OP_EQ, bcell.is_begindir); tor_free(bcell.address); /* a begin cell with flags and even more cruft after that. */ memset(&bcell, 0x7f, sizeof(bcell)); { const char c[] = "a-further.example.com:22\x00\xee\xaa\x00\xffHi mom"; make_relay_cell(&cell, RELAY_COMMAND_BEGIN, c, sizeof(c)-1); } tt_int_op(0, OP_EQ, begin_cell_parse(&cell, &bcell, &end_reason)); tt_str_op("a-further.example.com", OP_EQ, bcell.address); tt_int_op(0xeeaa00ff, OP_EQ, bcell.flags); tt_int_op(22, OP_EQ, bcell.port); tt_int_op(5, OP_EQ, bcell.stream_id); tt_int_op(0, OP_EQ, bcell.is_begindir); tor_free(bcell.address); /* bad begin cell: impossible length. */ memset(&bcell, 0x7f, sizeof(bcell)); make_relay_cell(&cell, RELAY_COMMAND_BEGIN, "a.b:80", 7); cell.payload[9] = 0x01; /* Set length to 510 */ cell.payload[10] = 0xfe; { relay_header_t rh; relay_header_unpack(&rh, cell.payload); tt_int_op(rh.length, OP_EQ, 510); } tt_int_op(-2, OP_EQ, begin_cell_parse(&cell, &bcell, &end_reason)); /* Bad begin cell: no body. */ memset(&bcell, 0x7f, sizeof(bcell)); make_relay_cell(&cell, RELAY_COMMAND_BEGIN, "", 0); tt_int_op(-1, OP_EQ, begin_cell_parse(&cell, &bcell, &end_reason)); /* bad begin cell: no body. */ memset(&bcell, 0x7f, sizeof(bcell)); make_relay_cell(&cell, RELAY_COMMAND_BEGIN, "", 0); tt_int_op(-1, OP_EQ, begin_cell_parse(&cell, &bcell, &end_reason)); /* bad begin cell: no colon */ memset(&bcell, 0x7f, sizeof(bcell)); make_relay_cell(&cell, RELAY_COMMAND_BEGIN, "a.b", 4); tt_int_op(-1, OP_EQ, begin_cell_parse(&cell, &bcell, &end_reason)); /* bad begin cell: no ports */ memset(&bcell, 0x7f, sizeof(bcell)); make_relay_cell(&cell, RELAY_COMMAND_BEGIN, "a.b:", 5); tt_int_op(-1, OP_EQ, begin_cell_parse(&cell, &bcell, &end_reason)); /* bad begin cell: bad port */ memset(&bcell, 0x7f, sizeof(bcell)); make_relay_cell(&cell, RELAY_COMMAND_BEGIN, "a.b:xyz", 8); tt_int_op(-1, OP_EQ, begin_cell_parse(&cell, &bcell, &end_reason)); memset(&bcell, 0x7f, sizeof(bcell)); make_relay_cell(&cell, RELAY_COMMAND_BEGIN, "a.b:100000", 11); tt_int_op(-1, OP_EQ, begin_cell_parse(&cell, &bcell, &end_reason)); /* bad begin cell: no nul */ memset(&bcell, 0x7f, sizeof(bcell)); make_relay_cell(&cell, RELAY_COMMAND_BEGIN, "a.b:80", 6); tt_int_op(-1, OP_EQ, begin_cell_parse(&cell, &bcell, &end_reason)); done: tor_free(bcell.address); } static void test_cfmt_connected_cells(void *arg) { relay_header_t rh; cell_t cell; tor_addr_t addr; int ttl, r; char *mem_op_hex_tmp = NULL; (void)arg; /* Let's try an oldschool one with nothing in it. */ make_relay_cell(&cell, RELAY_COMMAND_CONNECTED, "", 0); relay_header_unpack(&rh, cell.payload); r = connected_cell_parse(&rh, &cell, &addr, &ttl); tt_int_op(r, OP_EQ, 0); tt_int_op(tor_addr_family(&addr), OP_EQ, AF_UNSPEC); tt_int_op(ttl, OP_EQ, -1); /* A slightly less oldschool one: only an IPv4 address */ make_relay_cell(&cell, RELAY_COMMAND_CONNECTED, "\x20\x30\x40\x50", 4); relay_header_unpack(&rh, cell.payload); r = connected_cell_parse(&rh, &cell, &addr, &ttl); tt_int_op(r, OP_EQ, 0); tt_int_op(tor_addr_family(&addr), OP_EQ, AF_INET); tt_str_op(fmt_addr(&addr), OP_EQ, "32.48.64.80"); tt_int_op(ttl, OP_EQ, -1); /* Bogus but understandable: truncated TTL */ make_relay_cell(&cell, RELAY_COMMAND_CONNECTED, "\x11\x12\x13\x14\x15", 5); relay_header_unpack(&rh, cell.payload); r = connected_cell_parse(&rh, &cell, &addr, &ttl); tt_int_op(r, OP_EQ, 0); tt_int_op(tor_addr_family(&addr), OP_EQ, AF_INET); tt_str_op(fmt_addr(&addr), OP_EQ, "17.18.19.20"); tt_int_op(ttl, OP_EQ, -1); /* Regular IPv4 one: address and TTL */ make_relay_cell(&cell, RELAY_COMMAND_CONNECTED, "\x02\x03\x04\x05\x00\x00\x0e\x10", 8); relay_header_unpack(&rh, cell.payload); r = connected_cell_parse(&rh, &cell, &addr, &ttl); tt_int_op(r, OP_EQ, 0); tt_int_op(tor_addr_family(&addr), OP_EQ, AF_INET); tt_str_op(fmt_addr(&addr), OP_EQ, "2.3.4.5"); tt_int_op(ttl, OP_EQ, 3600); /* IPv4 with too-big TTL */ make_relay_cell(&cell, RELAY_COMMAND_CONNECTED, "\x02\x03\x04\x05\xf0\x00\x00\x00", 8); relay_header_unpack(&rh, cell.payload); r = connected_cell_parse(&rh, &cell, &addr, &ttl); tt_int_op(r, OP_EQ, 0); tt_int_op(tor_addr_family(&addr), OP_EQ, AF_INET); tt_str_op(fmt_addr(&addr), OP_EQ, "2.3.4.5"); tt_int_op(ttl, OP_EQ, -1); /* IPv6 (ttl is mandatory) */ make_relay_cell(&cell, RELAY_COMMAND_CONNECTED, "\x00\x00\x00\x00\x06" "\x26\x07\xf8\xb0\x40\x0c\x0c\x02" "\x00\x00\x00\x00\x00\x00\x00\x68" "\x00\x00\x02\x58", 25); relay_header_unpack(&rh, cell.payload); r = connected_cell_parse(&rh, &cell, &addr, &ttl); tt_int_op(r, OP_EQ, 0); tt_int_op(tor_addr_family(&addr), OP_EQ, AF_INET6); tt_str_op(fmt_addr(&addr), OP_EQ, "2607:f8b0:400c:c02::68"); tt_int_op(ttl, OP_EQ, 600); /* IPv6 (ttl too big) */ make_relay_cell(&cell, RELAY_COMMAND_CONNECTED, "\x00\x00\x00\x00\x06" "\x26\x07\xf8\xb0\x40\x0c\x0c\x02" "\x00\x00\x00\x00\x00\x00\x00\x68" "\x90\x00\x02\x58", 25); relay_header_unpack(&rh, cell.payload); r = connected_cell_parse(&rh, &cell, &addr, &ttl); tt_int_op(r, OP_EQ, 0); tt_int_op(tor_addr_family(&addr), OP_EQ, AF_INET6); tt_str_op(fmt_addr(&addr), OP_EQ, "2607:f8b0:400c:c02::68"); tt_int_op(ttl, OP_EQ, -1); /* Bogus size: 3. */ make_relay_cell(&cell, RELAY_COMMAND_CONNECTED, "\x00\x01\x02", 3); relay_header_unpack(&rh, cell.payload); r = connected_cell_parse(&rh, &cell, &addr, &ttl); tt_int_op(r, OP_EQ, -1); /* Bogus family: 7. */ make_relay_cell(&cell, RELAY_COMMAND_CONNECTED, "\x00\x00\x00\x00\x07" "\x26\x07\xf8\xb0\x40\x0c\x0c\x02" "\x00\x00\x00\x00\x00\x00\x00\x68" "\x90\x00\x02\x58", 25); relay_header_unpack(&rh, cell.payload); r = connected_cell_parse(&rh, &cell, &addr, &ttl); tt_int_op(r, OP_EQ, -1); /* Truncated IPv6. */ make_relay_cell(&cell, RELAY_COMMAND_CONNECTED, "\x00\x00\x00\x00\x06" "\x26\x07\xf8\xb0\x40\x0c\x0c\x02" "\x00\x00\x00\x00\x00\x00\x00\x68" "\x00\x00\x02", 24); relay_header_unpack(&rh, cell.payload); r = connected_cell_parse(&rh, &cell, &addr, &ttl); tt_int_op(r, OP_EQ, -1); /* Now make sure we can generate connected cells correctly. */ /* Try an IPv4 address */ memset(&rh, 0, sizeof(rh)); memset(&cell, 0, sizeof(cell)); tor_addr_parse(&addr, "30.40.50.60"); rh.length = connected_cell_format_payload(cell.payload+RELAY_HEADER_SIZE, &addr, 128); tt_int_op(rh.length, OP_EQ, 8); test_memeq_hex(cell.payload+RELAY_HEADER_SIZE, "1e28323c" "00000080"); /* Try parsing it. */ tor_addr_make_unspec(&addr); r = connected_cell_parse(&rh, &cell, &addr, &ttl); tt_int_op(r, OP_EQ, 0); tt_int_op(tor_addr_family(&addr), OP_EQ, AF_INET); tt_str_op(fmt_addr(&addr), OP_EQ, "30.40.50.60"); tt_int_op(ttl, OP_EQ, 128); /* Try an IPv6 address */ memset(&rh, 0, sizeof(rh)); memset(&cell, 0, sizeof(cell)); tor_addr_parse(&addr, "2620::6b0:b:1a1a:0:26e5:480e"); rh.length = connected_cell_format_payload(cell.payload+RELAY_HEADER_SIZE, &addr, 3600); tt_int_op(rh.length, OP_EQ, 25); test_memeq_hex(cell.payload + RELAY_HEADER_SIZE, "00000000" "06" "2620000006b0000b1a1a000026e5480e" "00000e10"); /* Try parsing it. */ tor_addr_make_unspec(&addr); r = connected_cell_parse(&rh, &cell, &addr, &ttl); tt_int_op(r, OP_EQ, 0); tt_int_op(tor_addr_family(&addr), OP_EQ, AF_INET6); tt_str_op(fmt_addr(&addr), OP_EQ, "2620:0:6b0:b:1a1a:0:26e5:480e"); tt_int_op(ttl, OP_EQ, 3600); done: tor_free(mem_op_hex_tmp); } static void test_cfmt_create_cells(void *arg) { uint8_t b[MAX_ONIONSKIN_CHALLENGE_LEN]; create_cell_t cc; cell_t cell; cell_t cell2; (void)arg; /* === Let's try parsing some good cells! */ /* A valid create cell. */ memset(&cell, 0, sizeof(cell)); memset(b, 0, sizeof(b)); crypto_rand((char*)b, TAP_ONIONSKIN_CHALLENGE_LEN); cell.command = CELL_CREATE; memcpy(cell.payload, b, TAP_ONIONSKIN_CHALLENGE_LEN); tt_int_op(0, OP_EQ, create_cell_parse(&cc, &cell)); tt_int_op(CELL_CREATE, OP_EQ, cc.cell_type); tt_int_op(ONION_HANDSHAKE_TYPE_TAP, OP_EQ, cc.handshake_type); tt_int_op(TAP_ONIONSKIN_CHALLENGE_LEN, OP_EQ, cc.handshake_len); tt_mem_op(cc.onionskin,OP_EQ, b, TAP_ONIONSKIN_CHALLENGE_LEN + 10); tt_int_op(0, OP_EQ, create_cell_format(&cell2, &cc)); tt_int_op(cell.command, OP_EQ, cell2.command); tt_mem_op(cell.payload,OP_EQ, cell2.payload, CELL_PAYLOAD_SIZE); /* A valid create_fast cell. */ memset(&cell, 0, sizeof(cell)); memset(b, 0, sizeof(b)); crypto_rand((char*)b, CREATE_FAST_LEN); cell.command = CELL_CREATE_FAST; memcpy(cell.payload, b, CREATE_FAST_LEN); tt_int_op(0, OP_EQ, create_cell_parse(&cc, &cell)); tt_int_op(CELL_CREATE_FAST, OP_EQ, cc.cell_type); tt_int_op(ONION_HANDSHAKE_TYPE_FAST, OP_EQ, cc.handshake_type); tt_int_op(CREATE_FAST_LEN, OP_EQ, cc.handshake_len); tt_mem_op(cc.onionskin,OP_EQ, b, CREATE_FAST_LEN + 10); tt_int_op(0, OP_EQ, create_cell_format(&cell2, &cc)); tt_int_op(cell.command, OP_EQ, cell2.command); tt_mem_op(cell.payload,OP_EQ, cell2.payload, CELL_PAYLOAD_SIZE); /* A valid create2 cell with a TAP payload */ memset(&cell, 0, sizeof(cell)); memset(b, 0, sizeof(b)); crypto_rand((char*)b, TAP_ONIONSKIN_CHALLENGE_LEN); cell.command = CELL_CREATE2; memcpy(cell.payload, "\x00\x00\x00\xBA", 4); /* TAP, 186 bytes long */ memcpy(cell.payload+4, b, TAP_ONIONSKIN_CHALLENGE_LEN); tt_int_op(0, OP_EQ, create_cell_parse(&cc, &cell)); tt_int_op(CELL_CREATE2, OP_EQ, cc.cell_type); tt_int_op(ONION_HANDSHAKE_TYPE_TAP, OP_EQ, cc.handshake_type); tt_int_op(TAP_ONIONSKIN_CHALLENGE_LEN, OP_EQ, cc.handshake_len); tt_mem_op(cc.onionskin,OP_EQ, b, TAP_ONIONSKIN_CHALLENGE_LEN + 10); tt_int_op(0, OP_EQ, create_cell_format(&cell2, &cc)); tt_int_op(cell.command, OP_EQ, cell2.command); tt_mem_op(cell.payload,OP_EQ, cell2.payload, CELL_PAYLOAD_SIZE); /* A valid create2 cell with an ntor payload */ memset(&cell, 0, sizeof(cell)); memset(b, 0, sizeof(b)); crypto_rand((char*)b, NTOR_ONIONSKIN_LEN); cell.command = CELL_CREATE2; memcpy(cell.payload, "\x00\x02\x00\x54", 4); /* ntor, 84 bytes long */ memcpy(cell.payload+4, b, NTOR_ONIONSKIN_LEN); tt_int_op(0, OP_EQ, create_cell_parse(&cc, &cell)); tt_int_op(CELL_CREATE2, OP_EQ, cc.cell_type); tt_int_op(ONION_HANDSHAKE_TYPE_NTOR, OP_EQ, cc.handshake_type); tt_int_op(NTOR_ONIONSKIN_LEN, OP_EQ, cc.handshake_len); tt_mem_op(cc.onionskin,OP_EQ, b, NTOR_ONIONSKIN_LEN + 10); tt_int_op(0, OP_EQ, create_cell_format(&cell2, &cc)); tt_int_op(cell.command, OP_EQ, cell2.command); tt_mem_op(cell.payload,OP_EQ, cell2.payload, CELL_PAYLOAD_SIZE); /* A valid create cell with an ntor payload, in legacy format. */ memset(&cell, 0, sizeof(cell)); memset(b, 0, sizeof(b)); crypto_rand((char*)b, NTOR_ONIONSKIN_LEN); cell.command = CELL_CREATE; memcpy(cell.payload, "ntorNTORntorNTOR", 16); memcpy(cell.payload+16, b, NTOR_ONIONSKIN_LEN); tt_int_op(0, OP_EQ, create_cell_parse(&cc, &cell)); tt_int_op(CELL_CREATE, OP_EQ, cc.cell_type); tt_int_op(ONION_HANDSHAKE_TYPE_NTOR, OP_EQ, cc.handshake_type); tt_int_op(NTOR_ONIONSKIN_LEN, OP_EQ, cc.handshake_len); tt_mem_op(cc.onionskin,OP_EQ, b, NTOR_ONIONSKIN_LEN + 10); tt_int_op(0, OP_EQ, create_cell_format(&cell2, &cc)); tt_int_op(cell.command, OP_EQ, cell2.command); tt_mem_op(cell.payload,OP_EQ, cell2.payload, CELL_PAYLOAD_SIZE); /* == Okay, now let's try to parse some impossible stuff. */ /* It has to be some kind of a create cell! */ cell.command = CELL_CREATED; tt_int_op(-1, OP_EQ, create_cell_parse(&cc, &cell)); /* You can't acutally make an unparseable CREATE or CREATE_FAST cell. */ /* Try some CREATE2 cells. First with a bad type. */ cell.command = CELL_CREATE2; memcpy(cell.payload, "\x00\x50\x00\x99", 4); /* Type 0x50???? */ tt_int_op(-1, OP_EQ, create_cell_parse(&cc, &cell)); /* Now a good type with an incorrect length. */ memcpy(cell.payload, "\x00\x00\x00\xBC", 4); /* TAP, 187 bytes.*/ tt_int_op(-1, OP_EQ, create_cell_parse(&cc, &cell)); /* Now a good type with a ridiculous length. */ memcpy(cell.payload, "\x00\x00\x02\x00", 4); /* TAP, 512 bytes.*/ tt_int_op(-1, OP_EQ, create_cell_parse(&cc, &cell)); /* == Time to try formatting bad cells. The important thing is that we reject big lengths, so just check that for now. */ cc.handshake_len = 512; tt_int_op(-1, OP_EQ, create_cell_format(&cell2, &cc)); /* == Try formatting a create2 cell we don't understand. XXXX */ done: ; } static void test_cfmt_created_cells(void *arg) { uint8_t b[512]; created_cell_t cc; cell_t cell; cell_t cell2; (void)arg; /* A good CREATED cell */ memset(&cell, 0, sizeof(cell)); memset(b, 0, sizeof(b)); crypto_rand((char*)b, TAP_ONIONSKIN_REPLY_LEN); cell.command = CELL_CREATED; memcpy(cell.payload, b, TAP_ONIONSKIN_REPLY_LEN); tt_int_op(0, OP_EQ, created_cell_parse(&cc, &cell)); tt_int_op(CELL_CREATED, OP_EQ, cc.cell_type); tt_int_op(TAP_ONIONSKIN_REPLY_LEN, OP_EQ, cc.handshake_len); tt_mem_op(cc.reply,OP_EQ, b, TAP_ONIONSKIN_REPLY_LEN + 10); tt_int_op(0, OP_EQ, created_cell_format(&cell2, &cc)); tt_int_op(cell.command, OP_EQ, cell2.command); tt_mem_op(cell.payload,OP_EQ, cell2.payload, CELL_PAYLOAD_SIZE); /* A good CREATED_FAST cell */ memset(&cell, 0, sizeof(cell)); memset(b, 0, sizeof(b)); crypto_rand((char*)b, CREATED_FAST_LEN); cell.command = CELL_CREATED_FAST; memcpy(cell.payload, b, CREATED_FAST_LEN); tt_int_op(0, OP_EQ, created_cell_parse(&cc, &cell)); tt_int_op(CELL_CREATED_FAST, OP_EQ, cc.cell_type); tt_int_op(CREATED_FAST_LEN, OP_EQ, cc.handshake_len); tt_mem_op(cc.reply,OP_EQ, b, CREATED_FAST_LEN + 10); tt_int_op(0, OP_EQ, created_cell_format(&cell2, &cc)); tt_int_op(cell.command, OP_EQ, cell2.command); tt_mem_op(cell.payload,OP_EQ, cell2.payload, CELL_PAYLOAD_SIZE); /* A good CREATED2 cell with short reply */ memset(&cell, 0, sizeof(cell)); memset(b, 0, sizeof(b)); crypto_rand((char*)b, 64); cell.command = CELL_CREATED2; memcpy(cell.payload, "\x00\x40", 2); memcpy(cell.payload+2, b, 64); tt_int_op(0, OP_EQ, created_cell_parse(&cc, &cell)); tt_int_op(CELL_CREATED2, OP_EQ, cc.cell_type); tt_int_op(64, OP_EQ, cc.handshake_len); tt_mem_op(cc.reply,OP_EQ, b, 80); tt_int_op(0, OP_EQ, created_cell_format(&cell2, &cc)); tt_int_op(cell.command, OP_EQ, cell2.command); tt_mem_op(cell.payload,OP_EQ, cell2.payload, CELL_PAYLOAD_SIZE); /* A good CREATED2 cell with maximal reply */ memset(&cell, 0, sizeof(cell)); memset(b, 0, sizeof(b)); crypto_rand((char*)b, 496); cell.command = CELL_CREATED2; memcpy(cell.payload, "\x01\xF0", 2); memcpy(cell.payload+2, b, 496); tt_int_op(0, OP_EQ, created_cell_parse(&cc, &cell)); tt_int_op(CELL_CREATED2, OP_EQ, cc.cell_type); tt_int_op(496, OP_EQ, cc.handshake_len); tt_mem_op(cc.reply,OP_EQ, b, 496); tt_int_op(0, OP_EQ, created_cell_format(&cell2, &cc)); tt_int_op(cell.command, OP_EQ, cell2.command); tt_mem_op(cell.payload,OP_EQ, cell2.payload, CELL_PAYLOAD_SIZE); /* Bogus CREATED2 cell: too long! */ memset(&cell, 0, sizeof(cell)); memset(b, 0, sizeof(b)); crypto_rand((char*)b, 496); cell.command = CELL_CREATED2; memcpy(cell.payload, "\x01\xF1", 2); tt_int_op(-1, OP_EQ, created_cell_parse(&cc, &cell)); /* Unformattable CREATED2 cell: too long! */ cc.handshake_len = 497; tt_int_op(-1, OP_EQ, created_cell_format(&cell2, &cc)); done: ; } static void test_cfmt_extend_cells(void *arg) { cell_t cell; uint8_t b[512]; extend_cell_t ec; create_cell_t *cc = &ec.create_cell; uint8_t p[RELAY_PAYLOAD_SIZE]; uint8_t p2[RELAY_PAYLOAD_SIZE]; uint8_t p2_cmd; uint16_t p2_len; char *mem_op_hex_tmp = NULL; (void) arg; /* Let's start with a simple EXTEND cell. */ memset(p, 0, sizeof(p)); memset(b, 0, sizeof(b)); crypto_rand((char*)b, TAP_ONIONSKIN_CHALLENGE_LEN); memcpy(p, "\x12\xf4\x00\x01\x01\x02", 6); /* 18 244 0 1 : 258 */ memcpy(p+6,b,TAP_ONIONSKIN_CHALLENGE_LEN); memcpy(p+6+TAP_ONIONSKIN_CHALLENGE_LEN, "electroencephalogram", 20); tt_int_op(0, OP_EQ, extend_cell_parse(&ec, RELAY_COMMAND_EXTEND, p, 26+TAP_ONIONSKIN_CHALLENGE_LEN)); tt_int_op(RELAY_COMMAND_EXTEND, OP_EQ, ec.cell_type); tt_str_op("18.244.0.1", OP_EQ, fmt_addr(&ec.orport_ipv4.addr)); tt_int_op(258, OP_EQ, ec.orport_ipv4.port); tt_int_op(AF_UNSPEC, OP_EQ, tor_addr_family(&ec.orport_ipv6.addr)); tt_mem_op(ec.node_id,OP_EQ, "electroencephalogram", 20); tt_int_op(cc->cell_type, OP_EQ, CELL_CREATE); tt_int_op(cc->handshake_type, OP_EQ, ONION_HANDSHAKE_TYPE_TAP); tt_int_op(cc->handshake_len, OP_EQ, TAP_ONIONSKIN_CHALLENGE_LEN); tt_mem_op(cc->onionskin,OP_EQ, b, TAP_ONIONSKIN_CHALLENGE_LEN+20); tt_int_op(0, OP_EQ, extend_cell_format(&p2_cmd, &p2_len, p2, &ec)); tt_int_op(p2_cmd, OP_EQ, RELAY_COMMAND_EXTEND); tt_int_op(p2_len, OP_EQ, 26+TAP_ONIONSKIN_CHALLENGE_LEN); tt_mem_op(p2,OP_EQ, p, RELAY_PAYLOAD_SIZE); /* Let's do an ntor stuffed in a legacy EXTEND cell */ memset(p, 0, sizeof(p)); memset(b, 0, sizeof(b)); crypto_rand((char*)b, NTOR_ONIONSKIN_LEN); memcpy(p, "\x12\xf4\x00\x01\x01\x02", 6); /* 18 244 0 1 : 258 */ memcpy(p+6,"ntorNTORntorNTOR", 16); memcpy(p+22, b, NTOR_ONIONSKIN_LEN); memcpy(p+6+TAP_ONIONSKIN_CHALLENGE_LEN, "electroencephalogram", 20); tt_int_op(0, OP_EQ, extend_cell_parse(&ec, RELAY_COMMAND_EXTEND, p, 26+TAP_ONIONSKIN_CHALLENGE_LEN)); tt_int_op(RELAY_COMMAND_EXTEND, OP_EQ, ec.cell_type); tt_str_op("18.244.0.1", OP_EQ, fmt_addr(&ec.orport_ipv4.addr)); tt_int_op(258, OP_EQ, ec.orport_ipv4.port); tt_int_op(AF_UNSPEC, OP_EQ, tor_addr_family(&ec.orport_ipv6.addr)); tt_mem_op(ec.node_id,OP_EQ, "electroencephalogram", 20); tt_int_op(cc->cell_type, OP_EQ, CELL_CREATE2); tt_int_op(cc->handshake_type, OP_EQ, ONION_HANDSHAKE_TYPE_NTOR); tt_int_op(cc->handshake_len, OP_EQ, NTOR_ONIONSKIN_LEN); tt_mem_op(cc->onionskin,OP_EQ, b, NTOR_ONIONSKIN_LEN+20); tt_int_op(0, OP_EQ, extend_cell_format(&p2_cmd, &p2_len, p2, &ec)); tt_int_op(p2_cmd, OP_EQ, RELAY_COMMAND_EXTEND); tt_int_op(p2_len, OP_EQ, 26+TAP_ONIONSKIN_CHALLENGE_LEN); tt_mem_op(p2,OP_EQ, p, RELAY_PAYLOAD_SIZE); tt_int_op(0, OP_EQ, create_cell_format_relayed(&cell, cc)); /* Now let's do a minimal ntor EXTEND2 cell. */ memset(&ec, 0xff, sizeof(ec)); memset(p, 0, sizeof(p)); memset(b, 0, sizeof(b)); crypto_rand((char*)b, NTOR_ONIONSKIN_LEN); /* 2 items; one 18.244.0.1:61681 */ memcpy(p, "\x02\x00\x06\x12\xf4\x00\x01\xf0\xf1", 9); /* The other is a digest. */ memcpy(p+9, "\x02\x14" "anarchoindividualist", 22); /* Prep for the handshake: type and length */ memcpy(p+31, "\x00\x02\x00\x54", 4); memcpy(p+35, b, NTOR_ONIONSKIN_LEN); tt_int_op(0, OP_EQ, extend_cell_parse(&ec, RELAY_COMMAND_EXTEND2, p, 35+NTOR_ONIONSKIN_LEN)); tt_int_op(RELAY_COMMAND_EXTEND2, OP_EQ, ec.cell_type); tt_str_op("18.244.0.1", OP_EQ, fmt_addr(&ec.orport_ipv4.addr)); tt_int_op(61681, OP_EQ, ec.orport_ipv4.port); tt_int_op(AF_UNSPEC, OP_EQ, tor_addr_family(&ec.orport_ipv6.addr)); tt_mem_op(ec.node_id,OP_EQ, "anarchoindividualist", 20); tt_int_op(cc->cell_type, OP_EQ, CELL_CREATE2); tt_int_op(cc->handshake_type, OP_EQ, ONION_HANDSHAKE_TYPE_NTOR); tt_int_op(cc->handshake_len, OP_EQ, NTOR_ONIONSKIN_LEN); tt_mem_op(cc->onionskin,OP_EQ, b, NTOR_ONIONSKIN_LEN+20); tt_int_op(0, OP_EQ, extend_cell_format(&p2_cmd, &p2_len, p2, &ec)); tt_int_op(p2_cmd, OP_EQ, RELAY_COMMAND_EXTEND2); tt_int_op(p2_len, OP_EQ, 35+NTOR_ONIONSKIN_LEN); tt_mem_op(p2,OP_EQ, p, RELAY_PAYLOAD_SIZE); /* Now let's do a fanciful EXTEND2 cell. */ memset(&ec, 0xff, sizeof(ec)); memset(p, 0, sizeof(p)); memset(b, 0, sizeof(b)); crypto_rand((char*)b, 99); /* 4 items; one 18 244 0 1 61681 */ memcpy(p, "\x04\x00\x06\x12\xf4\x00\x01\xf0\xf1", 9); /* One is a digest. */ memcpy(p+9, "\x02\x14" "anthropomorphization", 22); /* One is an ipv6 address */ memcpy(p+31, "\x01\x12\x20\x02\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xf0\xc5\x1e\x11\x12", 20); /* One is the Konami code. */ memcpy(p+51, "\xf0\x20upupdowndownleftrightleftrightba", 34); /* Prep for the handshake: weird type and length */ memcpy(p+85, "\x01\x05\x00\x63", 4); memcpy(p+89, b, 99); tt_int_op(0, OP_EQ, extend_cell_parse(&ec, RELAY_COMMAND_EXTEND2, p, 89+99)); tt_int_op(RELAY_COMMAND_EXTEND2, OP_EQ, ec.cell_type); tt_str_op("18.244.0.1", OP_EQ, fmt_addr(&ec.orport_ipv4.addr)); tt_int_op(61681, OP_EQ, ec.orport_ipv4.port); tt_str_op("2002::f0:c51e", OP_EQ, fmt_addr(&ec.orport_ipv6.addr)); tt_int_op(4370, OP_EQ, ec.orport_ipv6.port); tt_mem_op(ec.node_id,OP_EQ, "anthropomorphization", 20); tt_int_op(cc->cell_type, OP_EQ, CELL_CREATE2); tt_int_op(cc->handshake_type, OP_EQ, 0x105); tt_int_op(cc->handshake_len, OP_EQ, 99); tt_mem_op(cc->onionskin,OP_EQ, b, 99+20); tt_int_op(0, OP_EQ, extend_cell_format(&p2_cmd, &p2_len, p2, &ec)); tt_int_op(p2_cmd, OP_EQ, RELAY_COMMAND_EXTEND2); /* We'll generate it minus the IPv6 address and minus the konami code */ tt_int_op(p2_len, OP_EQ, 89+99-34-20); test_memeq_hex(p2, /* Two items: one that same darn IP address. */ "02000612F40001F0F1" /* The next is a digest : anthropomorphization */ "0214616e7468726f706f6d6f727068697a6174696f6e" /* Now the handshake prologue */ "01050063"); tt_mem_op(p2+1+8+22+4,OP_EQ, b, 99+20); tt_int_op(0, OP_EQ, create_cell_format_relayed(&cell, cc)); /* == Now try parsing some junk */ /* Try a too-long handshake */ memset(p, 0, sizeof(p)); memcpy(p, "\x02\x00\x06\x12\xf4\x00\x01\xf0\xf1", 9); memcpy(p+9, "\x02\x14" "anarchoindividualist", 22); memcpy(p+31, "\xff\xff\x01\xd0", 4); tt_int_op(-1, OP_EQ, extend_cell_parse(&ec, RELAY_COMMAND_EXTEND2, p, sizeof(p))); /* Try two identities. */ memset(p, 0, sizeof(p)); memcpy(p, "\x03\x00\x06\x12\xf4\x00\x01\xf0\xf1", 9); memcpy(p+9, "\x02\x14" "anarchoindividualist", 22); memcpy(p+31, "\x02\x14" "autodepolymerization", 22); memcpy(p+53, "\xff\xff\x00\x10", 4); tt_int_op(-1, OP_EQ, extend_cell_parse(&ec, RELAY_COMMAND_EXTEND2, p, sizeof(p))); /* No identities. */ memset(p, 0, sizeof(p)); memcpy(p, "\x01\x00\x06\x12\xf4\x00\x01\xf0\xf1", 9); memcpy(p+53, "\xff\xff\x00\x10", 4); tt_int_op(-1, OP_EQ, extend_cell_parse(&ec, RELAY_COMMAND_EXTEND2, p, sizeof(p))); /* Try a bad IPv4 address (too long, too short)*/ memset(p, 0, sizeof(p)); memcpy(p, "\x02\x00\x07\x12\xf4\x00\x01\xf0\xf1\xff", 10); memcpy(p+10, "\x02\x14" "anarchoindividualist", 22); memcpy(p+32, "\xff\xff\x00\x10", 4); tt_int_op(-1, OP_EQ, extend_cell_parse(&ec, RELAY_COMMAND_EXTEND2, p, sizeof(p))); memset(p, 0, sizeof(p)); memcpy(p, "\x02\x00\x05\x12\xf4\x00\x01\xf0", 8); memcpy(p+8, "\x02\x14" "anarchoindividualist", 22); memcpy(p+30, "\xff\xff\x00\x10", 4); tt_int_op(-1, OP_EQ, extend_cell_parse(&ec, RELAY_COMMAND_EXTEND2, p, sizeof(p))); /* IPv6 address (too long, too short, no IPv4)*/ memset(p, 0, sizeof(p)); memcpy(p, "\x03\x00\x06\x12\xf4\x00\x01\xf0\xf1", 9); memcpy(p+9, "\x02\x14" "anarchoindividualist", 22); memcpy(p+31, "\x01\x13" "xxxxxxxxxxxxxxxxYYZ", 19); memcpy(p+50, "\xff\xff\x00\x20", 4); tt_int_op(-1, OP_EQ, extend_cell_parse(&ec, RELAY_COMMAND_EXTEND2, p, sizeof(p))); memset(p, 0, sizeof(p)); memcpy(p, "\x03\x00\x06\x12\xf4\x00\x01\xf0\xf1", 9); memcpy(p+9, "\x02\x14" "anarchoindividualist", 22); memcpy(p+31, "\x01\x11" "xxxxxxxxxxxxxxxxY", 17); memcpy(p+48, "\xff\xff\x00\x20", 4); tt_int_op(-1, OP_EQ, extend_cell_parse(&ec, RELAY_COMMAND_EXTEND2, p, sizeof(p))); memset(p, 0, sizeof(p)); memcpy(p, "\x02", 1); memcpy(p+1, "\x02\x14" "anarchoindividualist", 22); memcpy(p+23, "\x01\x12" "xxxxxxxxxxxxxxxxYY", 18); memcpy(p+41, "\xff\xff\x00\x20", 4); tt_int_op(-1, OP_EQ, extend_cell_parse(&ec, RELAY_COMMAND_EXTEND2, p, sizeof(p))); /* Running out of space in specifiers */ memset(p,0,sizeof(p)); memcpy(p, "\x05\x0a\xff", 3); memcpy(p+3+255, "\x0a\xff", 2); tt_int_op(-1, OP_EQ, extend_cell_parse(&ec, RELAY_COMMAND_EXTEND2, p, sizeof(p))); /* Fuzz, because why not. */ memset(&ec, 0xff, sizeof(ec)); { int i; memset(p, 0, sizeof(p)); for (i = 0; i < 10000; ++i) { int n = crypto_rand_int(sizeof(p)); crypto_rand((char *)p, n); extend_cell_parse(&ec, RELAY_COMMAND_EXTEND2, p, n); } } done: tor_free(mem_op_hex_tmp); } static void test_cfmt_extended_cells(void *arg) { uint8_t b[512]; extended_cell_t ec; created_cell_t *cc = &ec.created_cell; uint8_t p[RELAY_PAYLOAD_SIZE]; uint8_t p2[RELAY_PAYLOAD_SIZE]; uint8_t p2_cmd; uint16_t p2_len; char *mem_op_hex_tmp = NULL; (void) arg; /* Try a regular EXTENDED cell. */ memset(&ec, 0xff, sizeof(ec)); memset(p, 0, sizeof(p)); memset(b, 0, sizeof(b)); crypto_rand((char*)b, TAP_ONIONSKIN_REPLY_LEN); memcpy(p,b,TAP_ONIONSKIN_REPLY_LEN); tt_int_op(0, OP_EQ, extended_cell_parse(&ec, RELAY_COMMAND_EXTENDED, p, TAP_ONIONSKIN_REPLY_LEN)); tt_int_op(RELAY_COMMAND_EXTENDED, OP_EQ, ec.cell_type); tt_int_op(cc->cell_type, OP_EQ, CELL_CREATED); tt_int_op(cc->handshake_len, OP_EQ, TAP_ONIONSKIN_REPLY_LEN); tt_mem_op(cc->reply,OP_EQ, b, TAP_ONIONSKIN_REPLY_LEN); tt_int_op(0, OP_EQ, extended_cell_format(&p2_cmd, &p2_len, p2, &ec)); tt_int_op(RELAY_COMMAND_EXTENDED, OP_EQ, p2_cmd); tt_int_op(TAP_ONIONSKIN_REPLY_LEN, OP_EQ, p2_len); tt_mem_op(p2,OP_EQ, p, sizeof(p2)); /* Try an EXTENDED2 cell */ memset(&ec, 0xff, sizeof(ec)); memset(p, 0, sizeof(p)); memset(b, 0, sizeof(b)); crypto_rand((char*)b, 42); memcpy(p,"\x00\x2a",2); memcpy(p+2,b,42); tt_int_op(0, OP_EQ, extended_cell_parse(&ec, RELAY_COMMAND_EXTENDED2, p, 2+42)); tt_int_op(RELAY_COMMAND_EXTENDED2, OP_EQ, ec.cell_type); tt_int_op(cc->cell_type, OP_EQ, CELL_CREATED2); tt_int_op(cc->handshake_len, OP_EQ, 42); tt_mem_op(cc->reply,OP_EQ, b, 42+10); tt_int_op(0, OP_EQ, extended_cell_format(&p2_cmd, &p2_len, p2, &ec)); tt_int_op(RELAY_COMMAND_EXTENDED2, OP_EQ, p2_cmd); tt_int_op(2+42, OP_EQ, p2_len); tt_mem_op(p2,OP_EQ, p, sizeof(p2)); /* Try an almost-too-long EXTENDED2 cell */ memcpy(p, "\x01\xf0", 2); tt_int_op(0, OP_EQ, extended_cell_parse(&ec, RELAY_COMMAND_EXTENDED2, p, sizeof(p))); /* Now try a too-long extended2 cell. That's the only misparse I can think * of. */ memcpy(p, "\x01\xf1", 2); tt_int_op(-1, OP_EQ, extended_cell_parse(&ec, RELAY_COMMAND_EXTENDED2, p, sizeof(p))); done: tor_free(mem_op_hex_tmp); } static void test_cfmt_resolved_cells(void *arg) { smartlist_t *addrs = smartlist_new(); relay_header_t rh; cell_t cell; int r, errcode; address_ttl_t *a; (void)arg; #define CLEAR_CELL() do { \ memset(&cell, 0, sizeof(cell)); \ memset(&rh, 0, sizeof(rh)); \ } while (0) #define CLEAR_ADDRS() do { \ SMARTLIST_FOREACH(addrs, address_ttl_t *, a, \ address_ttl_free(a); ); \ smartlist_clear(addrs); \ } while (0) #define SET_CELL(s) do { \ CLEAR_CELL(); \ memcpy(cell.payload + RELAY_HEADER_SIZE, (s), sizeof((s))-1); \ rh.length = sizeof((s))-1; \ rh.command = RELAY_COMMAND_RESOLVED; \ errcode = -1; \ } while (0) /* The cell format is one or more answers; each of the form * type [1 byte---0:hostname, 4:ipv4, 6:ipv6, f0:err-transient, f1:err] * length [1 byte] * body [length bytes] * ttl [4 bytes] */ /* Let's try an empty cell */ SET_CELL(""); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, 0); tt_int_op(r, OP_EQ, 0); tt_int_op(smartlist_len(addrs), OP_EQ, 0); CLEAR_ADDRS(); /* redundant but let's be consistent */ /* Cell with one ipv4 addr */ SET_CELL("\x04\x04" "\x7f\x00\x02\x0a" "\x00\00\x01\x00"); tt_int_op(rh.length, OP_EQ, 10); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, 0); tt_int_op(r, OP_EQ, 0); tt_int_op(smartlist_len(addrs), OP_EQ, 1); a = smartlist_get(addrs, 0); tt_str_op(fmt_addr(&a->addr), OP_EQ, "127.0.2.10"); tt_ptr_op(a->hostname, OP_EQ, NULL); tt_int_op(a->ttl, OP_EQ, 256); CLEAR_ADDRS(); /* Cell with one ipv6 addr */ SET_CELL("\x06\x10" "\x20\x02\x90\x90\x00\x00\x00\x00" "\x00\x00\x00\x00\xf0\xf0\xab\xcd" "\x02\00\x00\x01"); tt_int_op(rh.length, OP_EQ, 22); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, 0); tt_int_op(r, OP_EQ, 0); tt_int_op(smartlist_len(addrs), OP_EQ, 1); a = smartlist_get(addrs, 0); tt_str_op(fmt_addr(&a->addr), OP_EQ, "2002:9090::f0f0:abcd"); tt_ptr_op(a->hostname, OP_EQ, NULL); tt_int_op(a->ttl, OP_EQ, 0x2000001); CLEAR_ADDRS(); /* Cell with one hostname */ SET_CELL("\x00\x11" "motherbrain.zebes" "\x00\00\x00\x00"); tt_int_op(rh.length, OP_EQ, 23); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, 0); tt_int_op(r, OP_EQ, 0); tt_int_op(smartlist_len(addrs), OP_EQ, 1); a = smartlist_get(addrs, 0); tt_assert(tor_addr_is_null(&a->addr)); tt_str_op(a->hostname, OP_EQ, "motherbrain.zebes"); tt_int_op(a->ttl, OP_EQ, 0); CLEAR_ADDRS(); #define LONG_NAME \ "this-hostname-has-255-characters.in-order-to-test-whether-very-long.ho" \ "stnames-are-accepted.i-am-putting-it-in-a-macro-because-although.this-" \ "function-is-already-very-full.of-copy-and-pasted-stuff.having-this-app" \ "ear-more-than-once-would-bother-me-somehow.is" tt_int_op(strlen(LONG_NAME), OP_EQ, 255); SET_CELL("\x00\xff" LONG_NAME "\x00\01\x00\x00"); tt_int_op(rh.length, OP_EQ, 261); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, 0); tt_int_op(r, OP_EQ, 0); tt_int_op(smartlist_len(addrs), OP_EQ, 1); a = smartlist_get(addrs, 0); tt_assert(tor_addr_is_null(&a->addr)); tt_str_op(a->hostname, OP_EQ, LONG_NAME); tt_int_op(a->ttl, OP_EQ, 65536); CLEAR_ADDRS(); /* Cells with an error */ SET_CELL("\xf0\x2b" "I'm sorry, Dave. I'm afraid I can't do that" "\x00\x11\x22\x33"); tt_int_op(rh.length, OP_EQ, 49); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, RESOLVED_TYPE_ERROR_TRANSIENT); tt_int_op(r, OP_EQ, 0); tt_int_op(smartlist_len(addrs), OP_EQ, 0); CLEAR_ADDRS(); SET_CELL("\xf1\x40" "This hostname is too important for me to allow you to resolve it" "\x00\x00\x00\x00"); tt_int_op(rh.length, OP_EQ, 70); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, RESOLVED_TYPE_ERROR); tt_int_op(r, OP_EQ, 0); tt_int_op(smartlist_len(addrs), OP_EQ, 0); CLEAR_ADDRS(); /* Cell with an unrecognized type */ SET_CELL("\xee\x16" "fault in the AE35 unit" "\x09\x09\x01\x01"); tt_int_op(rh.length, OP_EQ, 28); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, 0); tt_int_op(r, OP_EQ, 0); tt_int_op(smartlist_len(addrs), OP_EQ, 0); CLEAR_ADDRS(); /* Cell with one of each */ SET_CELL(/* unrecognized: */ "\xee\x16" "fault in the AE35 unit" "\x09\x09\x01\x01" /* error: */ "\xf0\x2b" "I'm sorry, Dave. I'm afraid I can't do that" "\x00\x11\x22\x33" /* IPv6: */ "\x06\x10" "\x20\x02\x90\x90\x00\x00\x00\x00" "\x00\x00\x00\x00\xf0\xf0\xab\xcd" "\x02\00\x00\x01" /* IPv4: */ "\x04\x04" "\x7f\x00\x02\x0a" "\x00\00\x01\x00" /* Hostname: */ "\x00\x11" "motherbrain.zebes" "\x00\00\x00\x00" ); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, 0); /* no error reported; we got answers */ tt_int_op(r, OP_EQ, 0); tt_int_op(smartlist_len(addrs), OP_EQ, 3); a = smartlist_get(addrs, 0); tt_str_op(fmt_addr(&a->addr), OP_EQ, "2002:9090::f0f0:abcd"); tt_ptr_op(a->hostname, OP_EQ, NULL); tt_int_op(a->ttl, OP_EQ, 0x2000001); a = smartlist_get(addrs, 1); tt_str_op(fmt_addr(&a->addr), OP_EQ, "127.0.2.10"); tt_ptr_op(a->hostname, OP_EQ, NULL); tt_int_op(a->ttl, OP_EQ, 256); a = smartlist_get(addrs, 2); tt_assert(tor_addr_is_null(&a->addr)); tt_str_op(a->hostname, OP_EQ, "motherbrain.zebes"); tt_int_op(a->ttl, OP_EQ, 0); CLEAR_ADDRS(); /* Cell with several of similar type */ SET_CELL(/* IPv4 */ "\x04\x04" "\x7f\x00\x02\x0a" "\x00\00\x01\x00" "\x04\x04" "\x08\x08\x08\x08" "\x00\00\x01\x05" "\x04\x04" "\x7f\xb0\x02\xb0" "\x00\01\xff\xff" /* IPv6 */ "\x06\x10" "\x20\x02\x90\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xca\xfe\xf0\x0d" "\x00\00\x00\x01" "\x06\x10" "\x20\x02\x90\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xfa\xca\xde" "\x00\00\x00\x03"); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, 0); tt_int_op(r, OP_EQ, 0); tt_int_op(smartlist_len(addrs), OP_EQ, 5); a = smartlist_get(addrs, 0); tt_str_op(fmt_addr(&a->addr), OP_EQ, "127.0.2.10"); tt_ptr_op(a->hostname, OP_EQ, NULL); tt_int_op(a->ttl, OP_EQ, 256); a = smartlist_get(addrs, 1); tt_str_op(fmt_addr(&a->addr), OP_EQ, "8.8.8.8"); tt_ptr_op(a->hostname, OP_EQ, NULL); tt_int_op(a->ttl, OP_EQ, 261); a = smartlist_get(addrs, 2); tt_str_op(fmt_addr(&a->addr), OP_EQ, "127.176.2.176"); tt_ptr_op(a->hostname, OP_EQ, NULL); tt_int_op(a->ttl, OP_EQ, 131071); a = smartlist_get(addrs, 3); tt_str_op(fmt_addr(&a->addr), OP_EQ, "2002:9000::cafe:f00d"); tt_ptr_op(a->hostname, OP_EQ, NULL); tt_int_op(a->ttl, OP_EQ, 1); a = smartlist_get(addrs, 4); tt_str_op(fmt_addr(&a->addr), OP_EQ, "2002:9001::fa:cade"); tt_ptr_op(a->hostname, OP_EQ, NULL); tt_int_op(a->ttl, OP_EQ, 3); CLEAR_ADDRS(); /* Full cell */ #define LONG_NAME2 \ "this-name-has-231-characters.so-that-it-plus-LONG_NAME-can-completely-" \ "fill-up-the-payload-of-a-cell.its-important-to-check-for-the-full-thin" \ "g-case.to-avoid-off-by-one-errors.where-full-things-are-misreported-as" \ ".overflowing-by-one.z" tt_int_op(strlen(LONG_NAME2), OP_EQ, 231); SET_CELL("\x00\xff" LONG_NAME "\x00\01\x00\x00" "\x00\xe7" LONG_NAME2 "\x00\01\x00\x00"); tt_int_op(rh.length, OP_EQ, RELAY_PAYLOAD_SIZE); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, 0); tt_int_op(r, OP_EQ, 0); tt_int_op(smartlist_len(addrs), OP_EQ, 2); a = smartlist_get(addrs, 0); tt_str_op(a->hostname, OP_EQ, LONG_NAME); a = smartlist_get(addrs, 1); tt_str_op(a->hostname, OP_EQ, LONG_NAME2); CLEAR_ADDRS(); /* BAD CELLS */ /* Invalid length on an IPv4 */ SET_CELL("\x04\x03zzz1234"); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, 0); tt_int_op(r, OP_EQ, -1); tt_int_op(smartlist_len(addrs), OP_EQ, 0); SET_CELL("\x04\x04" "\x7f\x00\x02\x0a" "\x00\00\x01\x00" "\x04\x05zzzzz1234"); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, 0); tt_int_op(r, OP_EQ, -1); tt_int_op(smartlist_len(addrs), OP_EQ, 0); /* Invalid length on an IPv6 */ SET_CELL("\x06\x03zzz1234"); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, 0); tt_int_op(r, OP_EQ, -1); tt_int_op(smartlist_len(addrs), OP_EQ, 0); SET_CELL("\x04\x04" "\x7f\x00\x02\x0a" "\x00\00\x01\x00" "\x06\x17wwwwwwwwwwwwwwwww1234"); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, 0); tt_int_op(r, OP_EQ, -1); tt_int_op(smartlist_len(addrs), OP_EQ, 0); SET_CELL("\x04\x04" "\x7f\x00\x02\x0a" "\x00\00\x01\x00" "\x06\x10xxxx"); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, 0); tt_int_op(r, OP_EQ, -1); tt_int_op(smartlist_len(addrs), OP_EQ, 0); /* Empty hostname */ SET_CELL("\x00\x00xxxx"); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, 0); tt_int_op(r, OP_EQ, -1); tt_int_op(smartlist_len(addrs), OP_EQ, 0); /* rh.length out of range */ CLEAR_CELL(); rh.length = 499; r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(errcode, OP_EQ, 0); tt_int_op(r, OP_EQ, -1); tt_int_op(smartlist_len(addrs), OP_EQ, 0); /* Item length extends beyond rh.length */ CLEAR_CELL(); SET_CELL("\x00\xff" LONG_NAME "\x00\01\x00\x00"); rh.length -= 1; r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(r, OP_EQ, -1); tt_int_op(smartlist_len(addrs), OP_EQ, 0); rh.length -= 5; r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(r, OP_EQ, -1); tt_int_op(smartlist_len(addrs), OP_EQ, 0); SET_CELL("\x04\x04" "\x7f\x00\x02\x0a" "\x00\00\x01\x00"); rh.length -= 1; r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(r, OP_EQ, -1); tt_int_op(smartlist_len(addrs), OP_EQ, 0); SET_CELL("\xee\x10" "\x20\x02\x90\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xfa\xca\xde" "\x00\00\x00\x03"); rh.length -= 1; r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(r, OP_EQ, -1); tt_int_op(smartlist_len(addrs), OP_EQ, 0); /* Truncated item after first character */ SET_CELL("\x04"); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(r, OP_EQ, -1); tt_int_op(smartlist_len(addrs), OP_EQ, 0); SET_CELL("\xee"); r = resolved_cell_parse(&cell, &rh, addrs, &errcode); tt_int_op(r, OP_EQ, -1); tt_int_op(smartlist_len(addrs), OP_EQ, 0); done: CLEAR_ADDRS(); CLEAR_CELL(); smartlist_free(addrs); #undef CLEAR_ADDRS #undef CLEAR_CELL } static void test_cfmt_is_destroy(void *arg) { cell_t cell; packed_cell_t packed; circid_t circid = 0; channel_t *chan; (void)arg; chan = tor_malloc_zero(sizeof(channel_t)); memset(&cell, 0xff, sizeof(cell)); cell.circ_id = 3003; cell.command = CELL_RELAY; cell_pack(&packed, &cell, 0); chan->wide_circ_ids = 0; tt_assert(! packed_cell_is_destroy(chan, &packed, &circid)); tt_int_op(circid, OP_EQ, 0); cell_pack(&packed, &cell, 1); chan->wide_circ_ids = 1; tt_assert(! packed_cell_is_destroy(chan, &packed, &circid)); tt_int_op(circid, OP_EQ, 0); cell.command = CELL_DESTROY; cell_pack(&packed, &cell, 0); chan->wide_circ_ids = 0; tt_assert(packed_cell_is_destroy(chan, &packed, &circid)); tt_int_op(circid, OP_EQ, 3003); circid = 0; cell_pack(&packed, &cell, 1); chan->wide_circ_ids = 1; tt_assert(packed_cell_is_destroy(chan, &packed, &circid)); done: tor_free(chan); } #define TEST(name, flags) \ { #name, test_cfmt_ ## name, flags, 0, NULL } struct testcase_t cell_format_tests[] = { TEST(relay_header, 0), TEST(begin_cells, 0), TEST(connected_cells, 0), TEST(create_cells, 0), TEST(created_cells, 0), TEST(extend_cells, 0), TEST(extended_cells, 0), TEST(resolved_cells, 0), TEST(is_destroy, 0), END_OF_TESTCASES }; tor-0.2.7.6/src/test/test-memwipe.c0000644000175000017500000001202112621363246013744 00000000000000#include #include #include #include #include "crypto.h" #include "compat.h" #undef MIN #define MIN(a,b) ( ((a)<(b)) ? (a) : (b) ) static unsigned fill_a_buffer_memset(void) __attribute__((noinline)); static unsigned fill_a_buffer_memwipe(void) __attribute__((noinline)); static unsigned fill_a_buffer_nothing(void) __attribute__((noinline)); static unsigned fill_heap_buffer_memset(void) __attribute__((noinline)); static unsigned fill_heap_buffer_memwipe(void) __attribute__((noinline)); static unsigned fill_heap_buffer_nothing(void) __attribute__((noinline)); static unsigned check_a_buffer(void) __attribute__((noinline)); const char *s = NULL; #define BUF_LEN 2048 #define FILL_BUFFER_IMPL() \ unsigned int i; \ unsigned sum = 0; \ \ /* Fill up a 1k buffer with a recognizable pattern. */ \ for (i = 0; i < BUF_LEN; i += strlen(s)) { \ memcpy(buf+i, s, MIN(strlen(s), BUF_LEN-i)); \ } \ \ /* Use the buffer as input to a computation so the above can't get */ \ /* optimized away. */ \ for (i = 0; i < BUF_LEN; ++i) { \ sum += (unsigned char)buf[i]; \ } static unsigned fill_a_buffer_memset(void) { char buf[BUF_LEN]; FILL_BUFFER_IMPL() memset(buf, 0, sizeof(buf)); return sum; } static unsigned fill_a_buffer_memwipe(void) { char buf[BUF_LEN]; FILL_BUFFER_IMPL() memwipe(buf, 0, sizeof(buf)); return sum; } static unsigned fill_a_buffer_nothing(void) { char buf[BUF_LEN]; FILL_BUFFER_IMPL() return sum; } static INLINE int vmemeq(volatile char *a, const char *b, size_t n) { while (n--) { if (*a++ != *b++) return 0; } return 1; } static unsigned check_a_buffer(void) { unsigned int i; volatile char buf[1024]; unsigned sum = 0; /* See if this buffer has the string in it. YES, THIS DOES INVOKE UNDEFINED BEHAVIOR BY READING FROM AN UNINITIALIZED BUFFER. If you know a better way to figure out whether the compiler eliminated the memset/memwipe calls or not, please let me know. */ for (i = 0; i < BUF_LEN - strlen(s); ++i) { if (vmemeq(buf+i, s, strlen(s))) ++sum; } return sum; } static char *heap_buf = NULL; static unsigned fill_heap_buffer_memset(void) { char *buf = heap_buf = malloc(BUF_LEN); FILL_BUFFER_IMPL() memset(buf, 0, BUF_LEN); free(buf); return sum; } static unsigned fill_heap_buffer_memwipe(void) { char *buf = heap_buf = malloc(BUF_LEN); FILL_BUFFER_IMPL() memwipe(buf, 0, BUF_LEN); free(buf); return sum; } static unsigned fill_heap_buffer_nothing(void) { char *buf = heap_buf = malloc(BUF_LEN); FILL_BUFFER_IMPL() free(buf); return sum; } static unsigned check_heap_buffer(void) { unsigned int i; unsigned sum = 0; volatile char *buf = heap_buf; /* See if this buffer has the string in it. YES, THIS DOES INVOKE UNDEFINED BEHAVIOR BY READING FROM A FREED BUFFER. If you know a better way to figure out whether the compiler eliminated the memset/memwipe calls or not, please let me know. */ for (i = 0; i < BUF_LEN - strlen(s); ++i) { if (vmemeq(buf+i, s, strlen(s))) ++sum; } return sum; } static struct testcase { const char *name; /* this spacing satisfies make check-spaces */ unsigned (*fill_fn)(void); unsigned (*check_fn)(void); } testcases[] = { { "nil", fill_a_buffer_nothing, check_a_buffer }, { "nil-heap", fill_heap_buffer_nothing, check_heap_buffer }, { "memset", fill_a_buffer_memset, check_a_buffer }, { "memset-heap", fill_heap_buffer_memset, check_heap_buffer }, { "memwipe", fill_a_buffer_memwipe, check_a_buffer }, { "memwipe-heap", fill_heap_buffer_memwipe, check_heap_buffer }, { NULL, NULL, NULL } }; int main(int argc, char **argv) { unsigned x, x2; int i; int working = 1; unsigned found[6]; (void) argc; (void) argv; s = "squamous haberdasher gallimaufry"; memset(found, 0, sizeof(found)); for (i = 0; testcases[i].name; ++i) { x = testcases[i].fill_fn(); found[i] = testcases[i].check_fn(); x2 = fill_a_buffer_nothing(); if (x != x2) { working = 0; } } if (!working || !found[0] || !found[1]) { printf("It appears that this test case may not give you reliable " "information. Sorry.\n"); } if (!found[2] && !found[3]) { printf("It appears that memset is good enough on this platform. Good.\n"); } if (found[4] || found[5]) { printf("ERROR: memwipe does not wipe data!\n"); return 1; } else { printf("OKAY: memwipe seems to work.\n"); return 0; } } tor-0.2.7.6/src/test/include.am0000644000175000017500000001460212631612325013125 00000000000000 export PYTHON=@PYTHON@ export SHELL=@SHELL@ export abs_top_srcdir=@abs_top_srcdir@ export builddir=@builddir@ TESTSCRIPTS = src/test/test_zero_length_keys.sh if USEPYTHON TESTSCRIPTS += src/test/test_ntor.sh src/test/test_bt.sh endif TESTS += src/test/test src/test/test-slow src/test/test-memwipe \ src/test/test_workqueue src/test/test_keygen.sh $(TESTSCRIPTS) # These flavors are run using automake's test-driver and test-network.sh TEST_CHUTNEY_FLAVORS = basic-min bridges-min hs-min bridges+hs # only run if we can ping6 ::1 (localhost) TEST_CHUTNEY_FLAVORS_IPV6 = bridges+ipv6-min ipv6-exit-min # only run if we can find a stable (or simply another) version of tor TEST_CHUTNEY_FLAVORS_MIXED = mixed ### This is a lovely feature, but it requires automake >= 1.12, and Tor ### doesn't require that yet. ### # TEST_EXTENSIONS = .sh # SH_LOG_COMPILER = $(SHELL) noinst_PROGRAMS+= src/test/bench if UNITTESTS_ENABLED noinst_PROGRAMS+= \ src/test/test \ src/test/test-slow \ src/test/test-memwipe \ src/test/test-child \ src/test/test_workqueue endif src_test_AM_CPPFLAGS = -DSHARE_DATADIR="\"$(datadir)\"" \ -DLOCALSTATEDIR="\"$(localstatedir)\"" \ -DBINDIR="\"$(bindir)\"" \ -I"$(top_srcdir)/src/or" -I"$(top_srcdir)/src/ext" \ -I"$(top_srcdir)/src/trunnel" \ -I"$(top_srcdir)/src/ext/trunnel" \ -DTOR_UNIT_TESTS # -L flags need to go in LDFLAGS. -l flags need to go in LDADD. # This seems to matter nowhere but on Windows, but I assure you that it # matters a lot there, and is quite hard to debug if you forget to do it. src_test_test_SOURCES = \ src/test/test.c \ src/test/test_accounting.c \ src/test/test_addr.c \ src/test/test_address.c \ src/test/test_buffers.c \ src/test/test_cell_formats.c \ src/test/test_cell_queue.c \ src/test/test_channel.c \ src/test/test_channeltls.c \ src/test/test_checkdir.c \ src/test/test_circuitlist.c \ src/test/test_circuitmux.c \ src/test/test_config.c \ src/test/test_containers.c \ src/test/test_controller.c \ src/test/test_controller_events.c \ src/test/test_crypto.c \ src/test/test_data.c \ src/test/test_dir.c \ src/test/test_entryconn.c \ src/test/test_entrynodes.c \ src/test/test_guardfraction.c \ src/test/test_extorport.c \ src/test/test_hs.c \ src/test/test_introduce.c \ src/test/test_keypin.c \ src/test/test_link_handshake.c \ src/test/test_logging.c \ src/test/test_microdesc.c \ src/test/test_nodelist.c \ src/test/test_oom.c \ src/test/test_options.c \ src/test/test_policy.c \ src/test/test_pt.c \ src/test/test_relay.c \ src/test/test_relaycell.c \ src/test/test_replay.c \ src/test/test_routerkeys.c \ src/test/test_routerlist.c \ src/test/test_routerset.c \ src/test/test_scheduler.c \ src/test/test_socks.c \ src/test/test_status.c \ src/test/test_threads.c \ src/test/test_util.c \ src/test/test_helpers.c \ src/test/test_dns.c \ src/test/testing_common.c \ src/ext/tinytest.c src_test_test_slow_SOURCES = \ src/test/test_slow.c \ src/test/test_crypto_slow.c \ src/test/test_util_slow.c \ src/test/testing_common.c \ src/ext/tinytest.c src_test_test_memwipe_SOURCES = \ src/test/test-memwipe.c src_test_test_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) src_test_test_CPPFLAGS= $(src_test_AM_CPPFLAGS) $(TEST_CPPFLAGS) src_test_bench_SOURCES = \ src/test/bench.c src_test_test_workqueue_SOURCES = \ src/test/test_workqueue.c src_test_test_workqueue_CPPFLAGS= $(src_test_AM_CPPFLAGS) src_test_test_workqueue_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) src_test_test_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ \ @TOR_LDFLAGS_libevent@ src_test_test_LDADD = src/or/libtor-testing.a src/common/libor-testing.a \ src/common/libor-crypto-testing.a $(LIBDONNA) src/common/libor.a \ src/common/libor-event-testing.a src/trunnel/libor-trunnel-testing.a \ @TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ \ @TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ \ @TOR_SYSTEMD_LIBS@ src_test_test_slow_CPPFLAGS = $(src_test_test_CPPFLAGS) src_test_test_slow_CFLAGS = $(src_test_test_CFLAGS) src_test_test_slow_LDADD = $(src_test_test_LDADD) src_test_test_slow_LDFLAGS = $(src_test_test_LDFLAGS) src_test_test_memwipe_CPPFLAGS = $(src_test_test_CPPFLAGS) src_test_test_memwipe_CFLAGS = $(src_test_test_CFLAGS) src_test_test_memwipe_LDADD = $(src_test_test_LDADD) src_test_test_memwipe_LDFLAGS = $(src_test_test_LDFLAGS) src_test_bench_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ \ @TOR_LDFLAGS_libevent@ src_test_bench_LDADD = src/or/libtor.a src/common/libor.a \ src/common/libor-crypto.a $(LIBDONNA) \ src/common/libor-event.a src/trunnel/libor-trunnel.a \ @TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ \ @TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ \ @TOR_SYSTEMD_LIBS@ src_test_test_workqueue_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ \ @TOR_LDFLAGS_libevent@ src_test_test_workqueue_LDADD = src/or/libtor-testing.a \ src/common/libor-testing.a \ src/common/libor-crypto-testing.a $(LIBDONNA) \ src/common/libor-event-testing.a \ @TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ \ @TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ noinst_HEADERS+= \ src/test/fakechans.h \ src/test/test.h \ src/test/test_helpers.h \ src/test/test_descriptors.inc \ src/test/example_extrainfo.inc \ src/test/failing_routerdescs.inc \ src/test/ed25519_vectors.inc \ src/test/test_descriptors.inc noinst_PROGRAMS+= src/test/test-ntor-cl src_test_test_ntor_cl_SOURCES = src/test/test_ntor_cl.c src_test_test_ntor_cl_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ src_test_test_ntor_cl_LDADD = src/or/libtor.a src/common/libor.a \ src/common/libor-crypto.a $(LIBDONNA) \ @TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ \ @TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ src_test_test_ntor_cl_AM_CPPFLAGS = \ -I"$(top_srcdir)/src/or" noinst_PROGRAMS += src/test/test-bt-cl src_test_test_bt_cl_SOURCES = src/test/test_bt_cl.c src_test_test_bt_cl_LDADD = src/common/libor-testing.a \ @TOR_LIB_MATH@ \ @TOR_LIB_WS32@ @TOR_LIB_GDI@ src_test_test_bt_cl_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) src_test_test_bt_cl_CPPFLAGS= $(src_test_AM_CPPFLAGS) $(TEST_CPPFLAGS) EXTRA_DIST += \ src/test/bt_test.py \ src/test/ntor_ref.py \ src/test/slownacl_curve25519.py \ src/test/zero_length_keys.sh \ src/test/test_keygen.sh \ src/test/test_zero_length_keys.sh \ src/test/test_ntor.sh src/test/test_bt.sh \ src/test/test-network.sh tor-0.2.7.6/src/test/test_crypto_slow.c0000644000175000017500000004127312621364222014755 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #define CRYPTO_S2K_PRIVATE #include "or.h" #include "test.h" #include "crypto_s2k.h" #include "crypto_pwbox.h" #if defined(HAVE_LIBSCRYPT_H) #include #endif #include /** Run unit tests for our secret-to-key passphrase hashing functionality. */ static void test_crypto_s2k_rfc2440(void *arg) { char buf[29]; char buf2[29]; char *buf3 = NULL; int i; (void)arg; memset(buf, 0, sizeof(buf)); memset(buf2, 0, sizeof(buf2)); buf3 = tor_malloc(65536); memset(buf3, 0, 65536); secret_to_key_rfc2440(buf+9, 20, "", 0, buf); crypto_digest(buf2+9, buf3, 1024); tt_mem_op(buf,OP_EQ, buf2, 29); memcpy(buf,"vrbacrda",8); memcpy(buf2,"vrbacrda",8); buf[8] = 96; buf2[8] = 96; secret_to_key_rfc2440(buf+9, 20, "12345678", 8, buf); for (i = 0; i < 65536; i += 16) { memcpy(buf3+i, "vrbacrda12345678", 16); } crypto_digest(buf2+9, buf3, 65536); tt_mem_op(buf,OP_EQ, buf2, 29); done: tor_free(buf3); } static void run_s2k_tests(const unsigned flags, const unsigned type, int speclen, const int keylen, int legacy) { uint8_t buf[S2K_MAXLEN], buf2[S2K_MAXLEN], buf3[S2K_MAXLEN]; int r; size_t sz; const char pw1[] = "You can't come in here unless you say swordfish!"; const char pw2[] = "Now, I give you one more guess."; r = secret_to_key_new(buf, sizeof(buf), &sz, pw1, strlen(pw1), flags); tt_int_op(r, OP_EQ, S2K_OKAY); tt_int_op(buf[0], OP_EQ, type); tt_int_op(sz, OP_EQ, keylen + speclen); if (legacy) { memmove(buf, buf+1, sz-1); --sz; --speclen; } tt_int_op(S2K_OKAY, OP_EQ, secret_to_key_check(buf, sz, pw1, strlen(pw1))); tt_int_op(S2K_BAD_SECRET, OP_EQ, secret_to_key_check(buf, sz, pw2, strlen(pw2))); /* Move key to buf2, and clear it. */ memset(buf3, 0, sizeof(buf3)); memcpy(buf2, buf+speclen, keylen); memset(buf+speclen, 0, sz - speclen); /* Derivekey should produce the same results. */ tt_int_op(S2K_OKAY, OP_EQ, secret_to_key_derivekey(buf3, keylen, buf, speclen, pw1, strlen(pw1))); tt_mem_op(buf2, OP_EQ, buf3, keylen); /* Derivekey with a longer output should fill the output. */ memset(buf2, 0, sizeof(buf2)); tt_int_op(S2K_OKAY, OP_EQ, secret_to_key_derivekey(buf2, sizeof(buf2), buf, speclen, pw1, strlen(pw1))); tt_mem_op(buf2, OP_NE, buf3, sizeof(buf2)); memset(buf3, 0, sizeof(buf3)); tt_int_op(S2K_OKAY, OP_EQ, secret_to_key_derivekey(buf3, sizeof(buf3), buf, speclen, pw1, strlen(pw1))); tt_mem_op(buf2, OP_EQ, buf3, sizeof(buf3)); tt_assert(!tor_mem_is_zero((char*)buf2+keylen, sizeof(buf2)-keylen)); done: ; } static void test_crypto_s2k_general(void *arg) { const char *which = arg; if (!strcmp(which, "scrypt")) { run_s2k_tests(0, 2, 19, 32, 0); } else if (!strcmp(which, "scrypt-low")) { run_s2k_tests(S2K_FLAG_LOW_MEM, 2, 19, 32, 0); } else if (!strcmp(which, "pbkdf2")) { run_s2k_tests(S2K_FLAG_USE_PBKDF2, 1, 18, 20, 0); } else if (!strcmp(which, "rfc2440")) { run_s2k_tests(S2K_FLAG_NO_SCRYPT, 0, 10, 20, 0); } else if (!strcmp(which, "rfc2440-legacy")) { run_s2k_tests(S2K_FLAG_NO_SCRYPT, 0, 10, 20, 1); } else { tt_fail(); } } #if defined(HAVE_LIBSCRYPT_H) && defined(HAVE_EVP_PBE_SCRYPT) static void test_libscrypt_eq_openssl(void *arg) { uint8_t buf1[64]; uint8_t buf2[64]; uint64_t N, r, p; uint64_t maxmem = 0; // --> SCRYPT_MAX_MEM in OpenSSL. int libscrypt_retval, openssl_retval; size_t dk_len = 64; (void)arg; memset(buf1,0,64); memset(buf2,0,64); /* NOTE: we're using N,r the way OpenSSL and libscrypt define them, * not the way draft-josefsson-scrypt-kdf-00.txt define them. */ N = 16; r = 1; p = 1; libscrypt_retval = libscrypt_scrypt((const uint8_t *)"", 0, (const uint8_t *)"", 0, N, r, p, buf1, dk_len); openssl_retval = EVP_PBE_scrypt((const char *)"", 0, (const unsigned char *)"", 0, N, r, p, maxmem, buf2, dk_len); tt_int_op(libscrypt_retval, ==, 0); tt_int_op(openssl_retval, ==, 1); tt_mem_op(buf1, ==, buf2, 64); memset(buf1,0,64); memset(buf2,0,64); N = 1024; r = 8; p = 16; libscrypt_retval = libscrypt_scrypt((const uint8_t *)"password", strlen("password"), (const uint8_t *)"NaCl", strlen("NaCl"), N, r, p, buf1, dk_len); openssl_retval = EVP_PBE_scrypt((const char *)"password", strlen("password"), (const unsigned char *)"NaCl", strlen("NaCl"), N, r, p, maxmem, buf2, dk_len); tt_int_op(libscrypt_retval, ==, 0); tt_int_op(openssl_retval, ==, 1); tt_mem_op(buf1, ==, buf2, 64); memset(buf1,0,64); memset(buf2,0,64); N = 16384; r = 8; p = 1; libscrypt_retval = libscrypt_scrypt((const uint8_t *)"pleaseletmein", strlen("pleaseletmein"), (const uint8_t *)"SodiumChloride", strlen("SodiumChloride"), N, r, p, buf1, dk_len); openssl_retval = EVP_PBE_scrypt((const char *)"pleaseletmein", strlen("pleaseletmein"), (const unsigned char *)"SodiumChloride", strlen("SodiumChloride"), N, r, p, maxmem, buf2, dk_len); tt_int_op(libscrypt_retval, ==, 0); tt_int_op(openssl_retval, ==, 1); tt_mem_op(buf1, ==, buf2, 64); memset(buf1,0,64); memset(buf2,0,64); N = 1048576; maxmem = 2 * 1024 * 1024 * (uint64_t)1024; // 2 GB libscrypt_retval = libscrypt_scrypt((const uint8_t *)"pleaseletmein", strlen("pleaseletmein"), (const uint8_t *)"SodiumChloride", strlen("SodiumChloride"), N, r, p, buf1, dk_len); openssl_retval = EVP_PBE_scrypt((const char *)"pleaseletmein", strlen("pleaseletmein"), (const unsigned char *)"SodiumChloride", strlen("SodiumChloride"), N, r, p, maxmem, buf2, dk_len); tt_int_op(libscrypt_retval, ==, 0); tt_int_op(openssl_retval, ==, 1); tt_mem_op(buf1, ==, buf2, 64); done: return; } #endif static void test_crypto_s2k_errors(void *arg) { uint8_t buf[S2K_MAXLEN], buf2[S2K_MAXLEN]; size_t sz; (void)arg; /* Bogus specifiers: simple */ tt_int_op(S2K_BAD_LEN, OP_EQ, secret_to_key_derivekey(buf, sizeof(buf), (const uint8_t*)"", 0, "ABC", 3)); tt_int_op(S2K_BAD_ALGORITHM, OP_EQ, secret_to_key_derivekey(buf, sizeof(buf), (const uint8_t*)"\x10", 1, "ABC", 3)); tt_int_op(S2K_BAD_LEN, OP_EQ, secret_to_key_derivekey(buf, sizeof(buf), (const uint8_t*)"\x01\x02", 2, "ABC", 3)); tt_int_op(S2K_BAD_LEN, OP_EQ, secret_to_key_check((const uint8_t*)"", 0, "ABC", 3)); tt_int_op(S2K_BAD_ALGORITHM, OP_EQ, secret_to_key_check((const uint8_t*)"\x10", 1, "ABC", 3)); tt_int_op(S2K_BAD_LEN, OP_EQ, secret_to_key_check((const uint8_t*)"\x01\x02", 2, "ABC", 3)); /* too long gets "BAD_LEN" too */ memset(buf, 0, sizeof(buf)); buf[0] = 2; tt_int_op(S2K_BAD_LEN, OP_EQ, secret_to_key_derivekey(buf2, sizeof(buf2), buf, sizeof(buf), "ABC", 3)); /* Truncated output */ #ifdef HAVE_LIBSCRYPT_H tt_int_op(S2K_TRUNCATED, OP_EQ, secret_to_key_new(buf, 50, &sz, "ABC", 3, 0)); tt_int_op(S2K_TRUNCATED, OP_EQ, secret_to_key_new(buf, 50, &sz, "ABC", 3, S2K_FLAG_LOW_MEM)); #endif tt_int_op(S2K_TRUNCATED, OP_EQ, secret_to_key_new(buf, 37, &sz, "ABC", 3, S2K_FLAG_USE_PBKDF2)); tt_int_op(S2K_TRUNCATED, OP_EQ, secret_to_key_new(buf, 29, &sz, "ABC", 3, S2K_FLAG_NO_SCRYPT)); #ifdef HAVE_LIBSCRYPT_H tt_int_op(S2K_TRUNCATED, OP_EQ, secret_to_key_make_specifier(buf, 18, 0)); tt_int_op(S2K_TRUNCATED, OP_EQ, secret_to_key_make_specifier(buf, 18, S2K_FLAG_LOW_MEM)); #endif tt_int_op(S2K_TRUNCATED, OP_EQ, secret_to_key_make_specifier(buf, 17, S2K_FLAG_USE_PBKDF2)); tt_int_op(S2K_TRUNCATED, OP_EQ, secret_to_key_make_specifier(buf, 9, S2K_FLAG_NO_SCRYPT)); /* Now try using type-specific bogus specifiers. */ /* It's a bad pbkdf2 buffer if it has an iteration count that would overflow * int32_t. */ memset(buf, 0, sizeof(buf)); buf[0] = 1; /* pbkdf2 */ buf[17] = 100; /* 1<<100 is much bigger than INT32_MAX */ tt_int_op(S2K_BAD_PARAMS, OP_EQ, secret_to_key_derivekey(buf2, sizeof(buf2), buf, 18, "ABC", 3)); #ifdef HAVE_LIBSCRYPT_H /* It's a bad scrypt buffer if N would overflow uint64 */ memset(buf, 0, sizeof(buf)); buf[0] = 2; /* scrypt */ buf[17] = 100; /* 1<<100 is much bigger than UINT64_MAX */ tt_int_op(S2K_BAD_PARAMS, OP_EQ, secret_to_key_derivekey(buf2, sizeof(buf2), buf, 19, "ABC", 3)); #endif done: ; } static void test_crypto_scrypt_vectors(void *arg) { char *mem_op_hex_tmp = NULL; uint8_t spec[64], out[64]; (void)arg; #ifndef HAVE_LIBSCRYPT_H if (1) tt_skip(); #endif /* Test vectors from http://tools.ietf.org/html/draft-josefsson-scrypt-kdf-00 section 11. Note that the names of 'r' and 'N' are switched in that section. Or possibly in libscrypt. */ base16_decode((char*)spec, sizeof(spec), "0400", 4); memset(out, 0x00, sizeof(out)); tt_int_op(64, OP_EQ, secret_to_key_compute_key(out, 64, spec, 2, "", 0, 2)); test_memeq_hex(out, "77d6576238657b203b19ca42c18a0497" "f16b4844e3074ae8dfdffa3fede21442" "fcd0069ded0948f8326a753a0fc81f17" "e8d3e0fb2e0d3628cf35e20c38d18906"); base16_decode((char*)spec, sizeof(spec), "4e61436c" "0A34", 12); memset(out, 0x00, sizeof(out)); tt_int_op(64, OP_EQ, secret_to_key_compute_key(out, 64, spec, 6, "password", 8, 2)); test_memeq_hex(out, "fdbabe1c9d3472007856e7190d01e9fe" "7c6ad7cbc8237830e77376634b373162" "2eaf30d92e22a3886ff109279d9830da" "c727afb94a83ee6d8360cbdfa2cc0640"); base16_decode((char*)spec, sizeof(spec), "536f6469756d43686c6f72696465" "0e30", 32); memset(out, 0x00, sizeof(out)); tt_int_op(64, OP_EQ, secret_to_key_compute_key(out, 64, spec, 16, "pleaseletmein", 13, 2)); test_memeq_hex(out, "7023bdcb3afd7348461c06cd81fd38eb" "fda8fbba904f8e3ea9b543f6545da1f2" "d5432955613f0fcf62d49705242a9af9" "e61e85dc0d651e40dfcf017b45575887"); base16_decode((char*)spec, sizeof(spec), "536f6469756d43686c6f72696465" "1430", 32); memset(out, 0x00, sizeof(out)); tt_int_op(64, OP_EQ, secret_to_key_compute_key(out, 64, spec, 16, "pleaseletmein", 13, 2)); test_memeq_hex(out, "2101cb9b6a511aaeaddbbe09cf70f881" "ec568d574a2ffd4dabe5ee9820adaa47" "8e56fd8f4ba5d09ffa1c6d927c40f4c3" "37304049e8a952fbcbf45c6fa77a41a4"); done: tor_free(mem_op_hex_tmp); } static void test_crypto_pbkdf2_vectors(void *arg) { char *mem_op_hex_tmp = NULL; uint8_t spec[64], out[64]; (void)arg; /* Test vectors from RFC6070, section 2 */ base16_decode((char*)spec, sizeof(spec), "73616c74" "00" , 10); memset(out, 0x00, sizeof(out)); tt_int_op(20, OP_EQ, secret_to_key_compute_key(out, 20, spec, 5, "password", 8, 1)); test_memeq_hex(out, "0c60c80f961f0e71f3a9b524af6012062fe037a6"); base16_decode((char*)spec, sizeof(spec), "73616c74" "01" , 10); memset(out, 0x00, sizeof(out)); tt_int_op(20, OP_EQ, secret_to_key_compute_key(out, 20, spec, 5, "password", 8, 1)); test_memeq_hex(out, "ea6c014dc72d6f8ccd1ed92ace1d41f0d8de8957"); base16_decode((char*)spec, sizeof(spec), "73616c74" "0C" , 10); memset(out, 0x00, sizeof(out)); tt_int_op(20, OP_EQ, secret_to_key_compute_key(out, 20, spec, 5, "password", 8, 1)); test_memeq_hex(out, "4b007901b765489abead49d926f721d065a429c1"); base16_decode((char*)spec, sizeof(spec), "73616c74" "18" , 10); memset(out, 0x00, sizeof(out)); tt_int_op(20, OP_EQ, secret_to_key_compute_key(out, 20, spec, 5, "password", 8, 1)); test_memeq_hex(out, "eefe3d61cd4da4e4e9945b3d6ba2158c2634e984"); base16_decode((char*)spec, sizeof(spec), "73616c7453414c5473616c7453414c5473616c745" "3414c5473616c7453414c5473616c74" "0C" , 74); memset(out, 0x00, sizeof(out)); tt_int_op(25, OP_EQ, secret_to_key_compute_key(out, 25, spec, 37, "passwordPASSWORDpassword", 24, 1)); test_memeq_hex(out, "3d2eec4fe41c849b80c8d83662c0e44a8b291a964cf2f07038"); base16_decode((char*)spec, sizeof(spec), "7361006c74" "0c" , 12); memset(out, 0x00, sizeof(out)); tt_int_op(16, OP_EQ, secret_to_key_compute_key(out, 16, spec, 6, "pass\0word", 9, 1)); test_memeq_hex(out, "56fa6aa75548099dcc37d7f03425e0c3"); done: tor_free(mem_op_hex_tmp); } static void test_crypto_pwbox(void *arg) { uint8_t *boxed=NULL, *decoded=NULL; size_t len, dlen; unsigned i; const char msg[] = "This bunny reminds you that you still have a " "salamander in your sylladex. She is holding the bunny Dave got you. " "It’s sort of uncanny how similar they are, aside from the knitted " "enhancements. Seriously, what are the odds?? So weird."; const char pw[] = "I'm a night owl and a wise bird too"; const unsigned flags[] = { 0, S2K_FLAG_NO_SCRYPT, S2K_FLAG_LOW_MEM, S2K_FLAG_NO_SCRYPT|S2K_FLAG_LOW_MEM, S2K_FLAG_USE_PBKDF2 }; (void)arg; for (i = 0; i < ARRAY_LENGTH(flags); ++i) { tt_int_op(0, OP_EQ, crypto_pwbox(&boxed, &len, (const uint8_t*)msg, strlen(msg), pw, strlen(pw), flags[i])); tt_assert(boxed); tt_assert(len > 128+32); tt_int_op(0, OP_EQ, crypto_unpwbox(&decoded, &dlen, boxed, len, pw, strlen(pw))); tt_assert(decoded); tt_uint_op(dlen, OP_EQ, strlen(msg)); tt_mem_op(decoded, OP_EQ, msg, dlen); tor_free(decoded); tt_int_op(UNPWBOX_BAD_SECRET, OP_EQ, crypto_unpwbox(&decoded, &dlen, boxed, len, pw, strlen(pw)-1)); boxed[len-1] ^= 1; tt_int_op(UNPWBOX_BAD_SECRET, OP_EQ, crypto_unpwbox(&decoded, &dlen, boxed, len, pw, strlen(pw))); boxed[0] = 255; tt_int_op(UNPWBOX_CORRUPTED, OP_EQ, crypto_unpwbox(&decoded, &dlen, boxed, len, pw, strlen(pw))); tor_free(boxed); } done: tor_free(boxed); tor_free(decoded); } #define CRYPTO_LEGACY(name) \ { #name, test_crypto_ ## name , 0, NULL, NULL } struct testcase_t slow_crypto_tests[] = { CRYPTO_LEGACY(s2k_rfc2440), #ifdef HAVE_LIBSCRYPT_H { "s2k_scrypt", test_crypto_s2k_general, 0, &passthrough_setup, (void*)"scrypt" }, { "s2k_scrypt_low", test_crypto_s2k_general, 0, &passthrough_setup, (void*)"scrypt-low" }, #ifdef HAVE_EVP_PBE_SCRYPT { "libscrypt_eq_openssl", test_libscrypt_eq_openssl, 0, NULL, NULL }, #endif #endif { "s2k_pbkdf2", test_crypto_s2k_general, 0, &passthrough_setup, (void*)"pbkdf2" }, { "s2k_rfc2440_general", test_crypto_s2k_general, 0, &passthrough_setup, (void*)"rfc2440" }, { "s2k_rfc2440_legacy", test_crypto_s2k_general, 0, &passthrough_setup, (void*)"rfc2440-legacy" }, { "s2k_errors", test_crypto_s2k_errors, 0, NULL, NULL }, { "scrypt_vectors", test_crypto_scrypt_vectors, 0, NULL, NULL }, { "pbkdf2_vectors", test_crypto_pbkdf2_vectors, 0, NULL, NULL }, { "pwbox", test_crypto_pwbox, 0, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test.h0000644000175000017500000001471212621363246012321 00000000000000/* Copyright (c) 2001-2003, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef TOR_TEST_H #define TOR_TEST_H /** * \file test.h * \brief Macros and functions used by unit tests. */ #include "compat.h" #include "tinytest.h" #define TT_EXIT_TEST_FUNCTION STMT_BEGIN goto done; STMT_END #include "tinytest_macros.h" #ifdef __GNUC__ #define PRETTY_FUNCTION __PRETTY_FUNCTION__ #else #define PRETTY_FUNCTION "" #endif /* As test_mem_op, but decodes 'hex' before comparing. There must be a * local char* variable called mem_op_hex_tmp for this to work. */ #define test_mem_op_hex(expr1, op, hex) \ STMT_BEGIN \ size_t length = strlen(hex); \ tor_free(mem_op_hex_tmp); \ mem_op_hex_tmp = tor_malloc(length/2); \ tor_assert((length&1)==0); \ base16_decode(mem_op_hex_tmp, length/2, hex, length); \ tt_mem_op(expr1, op, mem_op_hex_tmp, length/2); \ STMT_END #define test_memeq_hex(expr1, hex) test_mem_op_hex(expr1, OP_EQ, hex) #define tt_double_op(a,op,b) \ tt_assert_test_type(a,b,#a" "#op" "#b,double,(val1_ op val2_),"%g", \ TT_EXIT_TEST_FUNCTION) /* Declare "double equal" in a sneaky way, so compiler won't complain about * comparing floats with == or !=. Of course, only do this if you know what * you're doing. */ #define tt_double_eq(a,b) \ STMT_BEGIN \ tt_double_op((a), >=, (b)); \ tt_double_op((a), <=, (b)); \ STMT_END #ifdef _MSC_VER #define U64_PRINTF_TYPE uint64_t #define I64_PRINTF_TYPE int64_t #else #define U64_PRINTF_TYPE unsigned long long #define I64_PRINTF_TYPE long long #endif #define tt_size_op(a,op,b) \ tt_assert_test_fmt_type(a,b,#a" "#op" "#b,size_t,(val1_ op val2_), \ U64_PRINTF_TYPE, U64_FORMAT, \ {print_ = (U64_PRINTF_TYPE) value_;}, {}, TT_EXIT_TEST_FUNCTION) #define tt_u64_op(a,op,b) \ tt_assert_test_fmt_type(a,b,#a" "#op" "#b,uint64_t,(val1_ op val2_), \ U64_PRINTF_TYPE, U64_FORMAT, \ {print_ = (U64_PRINTF_TYPE) value_;}, {}, TT_EXIT_TEST_FUNCTION) #define tt_i64_op(a,op,b) \ tt_assert_test_fmt_type(a,b,#a" "#op" "#b,int64_t,(val1_ op val2_), \ I64_PRINTF_TYPE, I64_FORMAT, \ {print_ = (I64_PRINTF_TYPE) value_;}, {}, TT_EXIT_TEST_FUNCTION) const char *get_fname(const char *name); crypto_pk_t *pk_generate(int idx); #define US2_CONCAT_2__(a, b) a ## __ ## b #define US_CONCAT_2__(a, b) a ## _ ## b #define US_CONCAT_3__(a, b, c) a ## _ ## b ## _ ## c #define US_CONCAT_2_(a, b) US_CONCAT_2__(a, b) #define US_CONCAT_3_(a, b, c) US_CONCAT_3__(a, b, c) /* * These macros are helpful for streamlining the authorship of several test * cases that use mocks. * * The pattern is as follows. * * Declare a top level namespace: * #define NS_MODULE foo * * * For each test case you want to write, create a new submodule in the * namespace. All mocks and other information should belong to a single * submodule to avoid interference with other test cases. * You can simply name the submodule after the function in the module you * are testing: * #define NS_SUBMODULE some_function * or, if you're wanting to write several tests against the same function, * ie., you are testing an aspect of that function, you can use: * #define NS_SUBMODULE ASPECT(some_function, behavior) * * * Declare all the mocks you will use. The NS_DECL macro serves to declare * the mock in the current namespace (defined by NS_MODULE and NS_SUBMODULE). * It behaves like MOCK_DECL: * NS_DECL(int, dependent_function, (void *)); * Here, dependent_function must be declared and implemented with the * MOCK_DECL and MOCK_IMPL macros. The NS_DECL macro also defines an integer * global for use for tracking how many times a mock was called, and can be * accessed by CALLED(mock_name). For example, you might put * CALLED(dependent_function)++; * in your mock body. * * * Define a function called NS(main) that will contain the body of the * test case. The NS macro can be used to reference a name in the current * namespace. * * * In NS(main), indicate that a mock function in the current namespace, * declared with NS_DECL is to override that in the global namespace, * with the NS_MOCK macro: * NS_MOCK(dependent_function) * Unmock with: * NS_UNMOCK(dependent_function) * * * Define the mocks with the NS macro, eg., * int * NS(dependent_function)(void *) * { * CALLED(dependent_function)++; * } * * * In the struct testcase_t array, you can use the TEST_CASE and * TEST_CASE_ASPECT macros to define the cases without having to do so * explicitly nor without having to reset NS_SUBMODULE, eg., * struct testcase_t foo_tests[] = { * TEST_CASE_ASPECT(some_function, behavior), * ... * END_OF_TESTCASES * which will define a test case named "some_function__behavior". */ #define NAME_TEST_(name) #name #define NAME_TEST(name) NAME_TEST_(name) #define ASPECT(test_module, test_name) US2_CONCAT_2__(test_module, test_name) #define TEST_CASE(function) \ { \ NAME_TEST(function), \ NS_FULL(NS_MODULE, function, test_main), \ TT_FORK, \ NULL, \ NULL, \ } #define TEST_CASE_ASPECT(function, aspect) \ { \ NAME_TEST(ASPECT(function, aspect)), \ NS_FULL(NS_MODULE, ASPECT(function, aspect), test_main), \ TT_FORK, \ NULL, \ NULL, \ } #define NS(name) US_CONCAT_3_(NS_MODULE, NS_SUBMODULE, name) #define NS_FULL(module, submodule, name) US_CONCAT_3_(module, submodule, name) #define CALLED(mock_name) US_CONCAT_2_(NS(mock_name), called) #define NS_DECL(retval, mock_fn, args) \ static retval NS(mock_fn) args; int CALLED(mock_fn) = 0 #define NS_MOCK(name) MOCK(name, NS(name)) #define NS_UNMOCK(name) UNMOCK(name) extern const struct testcase_setup_t passthrough_setup; #endif tor-0.2.7.6/src/test/test_circuitlist.c0000644000175000017500000002576012621363246014737 00000000000000/* Copyright (c) 2013-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define TOR_CHANNEL_INTERNAL_ #define CIRCUITBUILD_PRIVATE #define CIRCUITLIST_PRIVATE #include "or.h" #include "channel.h" #include "circuitbuild.h" #include "circuitlist.h" #include "test.h" static channel_t * new_fake_channel(void) { channel_t *chan = tor_malloc_zero(sizeof(channel_t)); channel_init(chan); return chan; } static struct { int ncalls; void *cmux; void *circ; cell_direction_t dir; } cam; static void circuitmux_attach_mock(circuitmux_t *cmux, circuit_t *circ, cell_direction_t dir) { ++cam.ncalls; cam.cmux = cmux; cam.circ = circ; cam.dir = dir; } static struct { int ncalls; void *cmux; void *circ; } cdm; static void circuitmux_detach_mock(circuitmux_t *cmux, circuit_t *circ) { ++cdm.ncalls; cdm.cmux = cmux; cdm.circ = circ; } #define GOT_CMUX_ATTACH(mux_, circ_, dir_) do { \ tt_int_op(cam.ncalls, OP_EQ, 1); \ tt_ptr_op(cam.cmux, OP_EQ, (mux_)); \ tt_ptr_op(cam.circ, OP_EQ, (circ_)); \ tt_int_op(cam.dir, OP_EQ, (dir_)); \ memset(&cam, 0, sizeof(cam)); \ } while (0) #define GOT_CMUX_DETACH(mux_, circ_) do { \ tt_int_op(cdm.ncalls, OP_EQ, 1); \ tt_ptr_op(cdm.cmux, OP_EQ, (mux_)); \ tt_ptr_op(cdm.circ, OP_EQ, (circ_)); \ memset(&cdm, 0, sizeof(cdm)); \ } while (0) static void test_clist_maps(void *arg) { channel_t *ch1 = new_fake_channel(); channel_t *ch2 = new_fake_channel(); channel_t *ch3 = new_fake_channel(); or_circuit_t *or_c1=NULL, *or_c2=NULL; (void) arg; MOCK(circuitmux_attach_circuit, circuitmux_attach_mock); MOCK(circuitmux_detach_circuit, circuitmux_detach_mock); memset(&cam, 0, sizeof(cam)); memset(&cdm, 0, sizeof(cdm)); tt_assert(ch1); tt_assert(ch2); tt_assert(ch3); ch1->cmux = tor_malloc(1); ch2->cmux = tor_malloc(1); ch3->cmux = tor_malloc(1); or_c1 = or_circuit_new(100, ch2); tt_assert(or_c1); GOT_CMUX_ATTACH(ch2->cmux, or_c1, CELL_DIRECTION_IN); tt_int_op(or_c1->p_circ_id, OP_EQ, 100); tt_ptr_op(or_c1->p_chan, OP_EQ, ch2); or_c2 = or_circuit_new(100, ch1); tt_assert(or_c2); GOT_CMUX_ATTACH(ch1->cmux, or_c2, CELL_DIRECTION_IN); tt_int_op(or_c2->p_circ_id, OP_EQ, 100); tt_ptr_op(or_c2->p_chan, OP_EQ, ch1); circuit_set_n_circid_chan(TO_CIRCUIT(or_c1), 200, ch1); GOT_CMUX_ATTACH(ch1->cmux, or_c1, CELL_DIRECTION_OUT); circuit_set_n_circid_chan(TO_CIRCUIT(or_c2), 200, ch2); GOT_CMUX_ATTACH(ch2->cmux, or_c2, CELL_DIRECTION_OUT); tt_ptr_op(circuit_get_by_circid_channel(200, ch1), OP_EQ, TO_CIRCUIT(or_c1)); tt_ptr_op(circuit_get_by_circid_channel(200, ch2), OP_EQ, TO_CIRCUIT(or_c2)); tt_ptr_op(circuit_get_by_circid_channel(100, ch2), OP_EQ, TO_CIRCUIT(or_c1)); /* Try the same thing again, to test the "fast" path. */ tt_ptr_op(circuit_get_by_circid_channel(100, ch2), OP_EQ, TO_CIRCUIT(or_c1)); tt_assert(circuit_id_in_use_on_channel(100, ch2)); tt_assert(! circuit_id_in_use_on_channel(101, ch2)); /* Try changing the circuitid and channel of that circuit. */ circuit_set_p_circid_chan(or_c1, 500, ch3); GOT_CMUX_DETACH(ch2->cmux, TO_CIRCUIT(or_c1)); GOT_CMUX_ATTACH(ch3->cmux, TO_CIRCUIT(or_c1), CELL_DIRECTION_IN); tt_ptr_op(circuit_get_by_circid_channel(100, ch2), OP_EQ, NULL); tt_assert(! circuit_id_in_use_on_channel(100, ch2)); tt_ptr_op(circuit_get_by_circid_channel(500, ch3), OP_EQ, TO_CIRCUIT(or_c1)); /* Now let's see about destroy handling. */ tt_assert(! circuit_id_in_use_on_channel(205, ch2)); tt_assert(circuit_id_in_use_on_channel(200, ch2)); channel_note_destroy_pending(ch2, 200); channel_note_destroy_pending(ch2, 205); channel_note_destroy_pending(ch1, 100); tt_assert(circuit_id_in_use_on_channel(205, ch2)) tt_assert(circuit_id_in_use_on_channel(200, ch2)); tt_assert(circuit_id_in_use_on_channel(100, ch1)); tt_assert(TO_CIRCUIT(or_c2)->n_delete_pending != 0); tt_ptr_op(circuit_get_by_circid_channel(200, ch2), OP_EQ, TO_CIRCUIT(or_c2)); tt_ptr_op(circuit_get_by_circid_channel(100, ch1), OP_EQ, TO_CIRCUIT(or_c2)); /* Okay, now free ch2 and make sure that the circuit ID is STILL not * usable, because we haven't declared the destroy to be nonpending */ tt_int_op(cdm.ncalls, OP_EQ, 0); circuit_free(TO_CIRCUIT(or_c2)); or_c2 = NULL; /* prevent free */ tt_int_op(cdm.ncalls, OP_EQ, 2); memset(&cdm, 0, sizeof(cdm)); tt_assert(circuit_id_in_use_on_channel(200, ch2)); tt_assert(circuit_id_in_use_on_channel(100, ch1)); tt_ptr_op(circuit_get_by_circid_channel(200, ch2), OP_EQ, NULL); tt_ptr_op(circuit_get_by_circid_channel(100, ch1), OP_EQ, NULL); /* Now say that the destroy is nonpending */ channel_note_destroy_not_pending(ch2, 200); tt_ptr_op(circuit_get_by_circid_channel(200, ch2), OP_EQ, NULL); channel_note_destroy_not_pending(ch1, 100); tt_ptr_op(circuit_get_by_circid_channel(100, ch1), OP_EQ, NULL); tt_assert(! circuit_id_in_use_on_channel(200, ch2)); tt_assert(! circuit_id_in_use_on_channel(100, ch1)); done: if (or_c1) circuit_free(TO_CIRCUIT(or_c1)); if (or_c2) circuit_free(TO_CIRCUIT(or_c2)); if (ch1) tor_free(ch1->cmux); if (ch2) tor_free(ch2->cmux); if (ch3) tor_free(ch3->cmux); tor_free(ch1); tor_free(ch2); tor_free(ch3); UNMOCK(circuitmux_attach_circuit); UNMOCK(circuitmux_detach_circuit); } static void test_rend_token_maps(void *arg) { or_circuit_t *c1, *c2, *c3, *c4; const uint8_t tok1[REND_TOKEN_LEN] = "The cat can't tell y"; const uint8_t tok2[REND_TOKEN_LEN] = "ou its name, and it "; const uint8_t tok3[REND_TOKEN_LEN] = "doesn't really care."; /* -- Adapted from a quote by Fredrik Lundh. */ (void)arg; (void)tok1; //xxxx c1 = or_circuit_new(0, NULL); c2 = or_circuit_new(0, NULL); c3 = or_circuit_new(0, NULL); c4 = or_circuit_new(0, NULL); /* Make sure we really filled up the tok* variables */ tt_int_op(tok1[REND_TOKEN_LEN-1], OP_EQ, 'y'); tt_int_op(tok2[REND_TOKEN_LEN-1], OP_EQ, ' '); tt_int_op(tok3[REND_TOKEN_LEN-1], OP_EQ, '.'); /* No maps; nothing there. */ tt_ptr_op(NULL, OP_EQ, circuit_get_rendezvous(tok1)); tt_ptr_op(NULL, OP_EQ, circuit_get_intro_point(tok1)); circuit_set_rendezvous_cookie(c1, tok1); circuit_set_intro_point_digest(c2, tok2); tt_ptr_op(NULL, OP_EQ, circuit_get_rendezvous(tok3)); tt_ptr_op(NULL, OP_EQ, circuit_get_intro_point(tok3)); tt_ptr_op(NULL, OP_EQ, circuit_get_rendezvous(tok2)); tt_ptr_op(NULL, OP_EQ, circuit_get_intro_point(tok1)); /* Without purpose set, we don't get the circuits */ tt_ptr_op(NULL, OP_EQ, circuit_get_rendezvous(tok1)); tt_ptr_op(NULL, OP_EQ, circuit_get_intro_point(tok2)); c1->base_.purpose = CIRCUIT_PURPOSE_REND_POINT_WAITING; c2->base_.purpose = CIRCUIT_PURPOSE_INTRO_POINT; /* Okay, make sure they show up now. */ tt_ptr_op(c1, OP_EQ, circuit_get_rendezvous(tok1)); tt_ptr_op(c2, OP_EQ, circuit_get_intro_point(tok2)); /* Two items at the same place with the same token. */ c3->base_.purpose = CIRCUIT_PURPOSE_REND_POINT_WAITING; circuit_set_rendezvous_cookie(c3, tok2); tt_ptr_op(c2, OP_EQ, circuit_get_intro_point(tok2)); tt_ptr_op(c3, OP_EQ, circuit_get_rendezvous(tok2)); /* Marking a circuit makes it not get returned any more */ circuit_mark_for_close(TO_CIRCUIT(c1), END_CIRC_REASON_FINISHED); tt_ptr_op(NULL, OP_EQ, circuit_get_rendezvous(tok1)); circuit_free(TO_CIRCUIT(c1)); c1 = NULL; /* Freeing a circuit makes it not get returned any more. */ circuit_free(TO_CIRCUIT(c2)); c2 = NULL; tt_ptr_op(NULL, OP_EQ, circuit_get_intro_point(tok2)); /* c3 -- are you still there? */ tt_ptr_op(c3, OP_EQ, circuit_get_rendezvous(tok2)); /* Change its cookie. This never happens in Tor per se, but hey. */ c3->base_.purpose = CIRCUIT_PURPOSE_INTRO_POINT; circuit_set_intro_point_digest(c3, tok3); tt_ptr_op(NULL, OP_EQ, circuit_get_rendezvous(tok2)); tt_ptr_op(c3, OP_EQ, circuit_get_intro_point(tok3)); /* Now replace c3 with c4. */ c4->base_.purpose = CIRCUIT_PURPOSE_INTRO_POINT; circuit_set_intro_point_digest(c4, tok3); tt_ptr_op(c4, OP_EQ, circuit_get_intro_point(tok3)); tt_ptr_op(c3->rendinfo, OP_EQ, NULL); tt_ptr_op(c4->rendinfo, OP_NE, NULL); tt_mem_op(c4->rendinfo, OP_EQ, tok3, REND_TOKEN_LEN); /* Now clear c4's cookie. */ circuit_set_intro_point_digest(c4, NULL); tt_ptr_op(c4->rendinfo, OP_EQ, NULL); tt_ptr_op(NULL, OP_EQ, circuit_get_intro_point(tok3)); done: if (c1) circuit_free(TO_CIRCUIT(c1)); if (c2) circuit_free(TO_CIRCUIT(c2)); if (c3) circuit_free(TO_CIRCUIT(c3)); if (c4) circuit_free(TO_CIRCUIT(c4)); } static void test_pick_circid(void *arg) { bitarray_t *ba = NULL; channel_t *chan1, *chan2; circid_t circid; int i; (void) arg; chan1 = tor_malloc_zero(sizeof(channel_t)); chan2 = tor_malloc_zero(sizeof(channel_t)); chan2->wide_circ_ids = 1; chan1->circ_id_type = CIRC_ID_TYPE_NEITHER; tt_int_op(0, OP_EQ, get_unique_circ_id_by_chan(chan1)); /* Basic tests, with no collisions */ chan1->circ_id_type = CIRC_ID_TYPE_LOWER; for (i = 0; i < 50; ++i) { circid = get_unique_circ_id_by_chan(chan1); tt_uint_op(0, OP_LT, circid); tt_uint_op(circid, OP_LT, (1<<15)); } chan1->circ_id_type = CIRC_ID_TYPE_HIGHER; for (i = 0; i < 50; ++i) { circid = get_unique_circ_id_by_chan(chan1); tt_uint_op((1<<15), OP_LT, circid); tt_uint_op(circid, OP_LT, (1<<16)); } chan2->circ_id_type = CIRC_ID_TYPE_LOWER; for (i = 0; i < 50; ++i) { circid = get_unique_circ_id_by_chan(chan2); tt_uint_op(0, OP_LT, circid); tt_uint_op(circid, OP_LT, (1u<<31)); } chan2->circ_id_type = CIRC_ID_TYPE_HIGHER; for (i = 0; i < 50; ++i) { circid = get_unique_circ_id_by_chan(chan2); tt_uint_op((1u<<31), OP_LT, circid); } /* Now make sure that we can behave well when we are full up on circuits */ chan1->circ_id_type = CIRC_ID_TYPE_LOWER; chan2->circ_id_type = CIRC_ID_TYPE_LOWER; chan1->wide_circ_ids = chan2->wide_circ_ids = 0; ba = bitarray_init_zero((1<<15)); for (i = 0; i < (1<<15); ++i) { circid = get_unique_circ_id_by_chan(chan1); if (circid == 0) { tt_int_op(i, OP_GT, (1<<14)); break; } tt_uint_op(circid, OP_LT, (1<<15)); tt_assert(! bitarray_is_set(ba, circid)); bitarray_set(ba, circid); channel_mark_circid_unusable(chan1, circid); } tt_int_op(i, OP_LT, (1<<15)); /* Make sure that being full on chan1 does not interfere with chan2 */ for (i = 0; i < 100; ++i) { circid = get_unique_circ_id_by_chan(chan2); tt_uint_op(circid, OP_GT, 0); tt_uint_op(circid, OP_LT, (1<<15)); channel_mark_circid_unusable(chan2, circid); } done: tor_free(chan1); tor_free(chan2); bitarray_free(ba); circuit_free_all(); } struct testcase_t circuitlist_tests[] = { { "maps", test_clist_maps, TT_FORK, NULL, NULL }, { "rend_token_maps", test_rend_token_maps, TT_FORK, NULL, NULL }, { "pick_circid", test_pick_circid, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_extorport.c0000644000175000017500000005025212632034724014437 00000000000000/* Copyright (c) 2013-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define CONNECTION_PRIVATE #define EXT_ORPORT_PRIVATE #define MAIN_PRIVATE #include "or.h" #include "buffers.h" #include "connection.h" #include "connection_or.h" #include "config.h" #include "control.h" #include "ext_orport.h" #include "main.h" #include "test.h" /* Test connection_or_remove_from_ext_or_id_map and * connection_or_set_ext_or_identifier */ static void test_ext_or_id_map(void *arg) { or_connection_t *c1 = NULL, *c2 = NULL, *c3 = NULL; char *idp = NULL, *idp2 = NULL; (void)arg; /* pre-initialization */ tt_ptr_op(NULL, OP_EQ, connection_or_get_by_ext_or_id("xxxxxxxxxxxxxxxxxxxx")); c1 = or_connection_new(CONN_TYPE_EXT_OR, AF_INET); c2 = or_connection_new(CONN_TYPE_EXT_OR, AF_INET); c3 = or_connection_new(CONN_TYPE_OR, AF_INET); tt_ptr_op(c1->ext_or_conn_id, OP_NE, NULL); tt_ptr_op(c2->ext_or_conn_id, OP_NE, NULL); tt_ptr_op(c3->ext_or_conn_id, OP_EQ, NULL); tt_ptr_op(c1, OP_EQ, connection_or_get_by_ext_or_id(c1->ext_or_conn_id)); tt_ptr_op(c2, OP_EQ, connection_or_get_by_ext_or_id(c2->ext_or_conn_id)); tt_ptr_op(NULL, OP_EQ, connection_or_get_by_ext_or_id("xxxxxxxxxxxxxxxxxxxx")); idp = tor_memdup(c2->ext_or_conn_id, EXT_OR_CONN_ID_LEN); /* Give c2 a new ID. */ connection_or_set_ext_or_identifier(c2); tt_mem_op(idp, OP_NE, c2->ext_or_conn_id, EXT_OR_CONN_ID_LEN); idp2 = tor_memdup(c2->ext_or_conn_id, EXT_OR_CONN_ID_LEN); tt_assert(!tor_digest_is_zero(idp2)); tt_ptr_op(NULL, OP_EQ, connection_or_get_by_ext_or_id(idp)); tt_ptr_op(c2, OP_EQ, connection_or_get_by_ext_or_id(idp2)); /* Now remove it. */ connection_or_remove_from_ext_or_id_map(c2); tt_ptr_op(NULL, OP_EQ, connection_or_get_by_ext_or_id(idp)); tt_ptr_op(NULL, OP_EQ, connection_or_get_by_ext_or_id(idp2)); done: if (c1) connection_free_(TO_CONN(c1)); if (c2) connection_free_(TO_CONN(c2)); if (c3) connection_free_(TO_CONN(c3)); tor_free(idp); tor_free(idp2); connection_or_clear_ext_or_id_map(); } /* Simple connection_write_to_buf_impl_ replacement that unconditionally * writes to outbuf. */ static void connection_write_to_buf_impl_replacement(const char *string, size_t len, connection_t *conn, int zlib) { (void) zlib; tor_assert(string); tor_assert(conn); write_to_buf(string, len, conn->outbuf); } static char * buf_get_contents(buf_t *buf, size_t *sz_out) { char *out; *sz_out = buf_datalen(buf); if (*sz_out >= ULONG_MAX) return NULL; /* C'mon, really? */ out = tor_malloc(*sz_out + 1); if (fetch_from_buf(out, (unsigned long)*sz_out, buf) != 0) { tor_free(out); return NULL; } out[*sz_out] = '\0'; /* Hopefully gratuitous. */ return out; } static void test_ext_or_write_command(void *arg) { or_connection_t *c1; char *cp = NULL; char *buf = NULL; size_t sz; (void) arg; MOCK(connection_write_to_buf_impl_, connection_write_to_buf_impl_replacement); c1 = or_connection_new(CONN_TYPE_EXT_OR, AF_INET); tt_assert(c1); /* Length too long */ tt_int_op(connection_write_ext_or_command(TO_CONN(c1), 100, "X", 100000), OP_LT, 0); /* Empty command */ tt_int_op(connection_write_ext_or_command(TO_CONN(c1), 0x99, NULL, 0), OP_EQ, 0); cp = buf_get_contents(TO_CONN(c1)->outbuf, &sz); tt_int_op(sz, OP_EQ, 4); tt_mem_op(cp, OP_EQ, "\x00\x99\x00\x00", 4); tor_free(cp); /* Medium command. */ tt_int_op(connection_write_ext_or_command(TO_CONN(c1), 0x99, "Wai\0Hello", 9), OP_EQ, 0); cp = buf_get_contents(TO_CONN(c1)->outbuf, &sz); tt_int_op(sz, OP_EQ, 13); tt_mem_op(cp, OP_EQ, "\x00\x99\x00\x09Wai\x00Hello", 13); tor_free(cp); /* Long command */ buf = tor_malloc(65535); memset(buf, 'x', 65535); tt_int_op(connection_write_ext_or_command(TO_CONN(c1), 0xf00d, buf, 65535), OP_EQ, 0); cp = buf_get_contents(TO_CONN(c1)->outbuf, &sz); tt_int_op(sz, OP_EQ, 65539); tt_mem_op(cp, OP_EQ, "\xf0\x0d\xff\xff", 4); tt_mem_op(cp+4, OP_EQ, buf, 65535); tor_free(cp); done: if (c1) connection_free_(TO_CONN(c1)); tor_free(cp); tor_free(buf); UNMOCK(connection_write_to_buf_impl_); } static int write_bytes_to_file_fail(const char *fname, const char *str, size_t len, int bin) { (void) fname; (void) str; (void) len; (void) bin; return -1; } static void test_ext_or_init_auth(void *arg) { or_options_t *options = get_options_mutable(); const char *fn; char *cp = NULL; struct stat st; char cookie0[32]; (void)arg; /* Check default filename location */ tor_free(options->DataDirectory); options->DataDirectory = tor_strdup("foo"); cp = get_ext_or_auth_cookie_file_name(); tt_str_op(cp, OP_EQ, "foo"PATH_SEPARATOR"extended_orport_auth_cookie"); tor_free(cp); /* Shouldn't be initialized already, or our tests will be a bit * meaningless */ ext_or_auth_cookie = tor_malloc_zero(32); tt_assert(tor_mem_is_zero((char*)ext_or_auth_cookie, 32)); /* Now make sure we use a temporary file */ fn = get_fname("ext_cookie_file"); options->ExtORPortCookieAuthFile = tor_strdup(fn); cp = get_ext_or_auth_cookie_file_name(); tt_str_op(cp, OP_EQ, fn); tor_free(cp); /* Test the initialization function with a broken write_bytes_to_file(). See if the problem is handled properly. */ MOCK(write_bytes_to_file, write_bytes_to_file_fail); tt_int_op(-1, OP_EQ, init_ext_or_cookie_authentication(1)); tt_int_op(ext_or_auth_cookie_is_set, OP_EQ, 0); UNMOCK(write_bytes_to_file); /* Now do the actual initialization. */ tt_int_op(0, OP_EQ, init_ext_or_cookie_authentication(1)); tt_int_op(ext_or_auth_cookie_is_set, OP_EQ, 1); cp = read_file_to_str(fn, RFTS_BIN, &st); tt_ptr_op(cp, OP_NE, NULL); tt_u64_op((uint64_t)st.st_size, OP_EQ, 64); tt_mem_op(cp,OP_EQ, "! Extended ORPort Auth Cookie !\x0a", 32); tt_mem_op(cp+32,OP_EQ, ext_or_auth_cookie, 32); memcpy(cookie0, ext_or_auth_cookie, 32); tt_assert(!tor_mem_is_zero((char*)ext_or_auth_cookie, 32)); /* Operation should be idempotent. */ tt_int_op(0, OP_EQ, init_ext_or_cookie_authentication(1)); tt_mem_op(cookie0,OP_EQ, ext_or_auth_cookie, 32); done: tor_free(cp); ext_orport_free_all(); } static void test_ext_or_cookie_auth(void *arg) { char *reply=NULL, *reply2=NULL, *client_hash=NULL, *client_hash2=NULL; size_t reply_len=0; char hmac1[32], hmac2[32]; const char client_nonce[32] = "Who is the third who walks alway"; char server_hash_input[] = "ExtORPort authentication server-to-client hash" "Who is the third who walks alway" "................................"; char client_hash_input[] = "ExtORPort authentication client-to-server hash" "Who is the third who walks alway" "................................"; (void)arg; tt_int_op(strlen(client_hash_input), OP_EQ, 46+32+32); tt_int_op(strlen(server_hash_input), OP_EQ, 46+32+32); ext_or_auth_cookie = tor_malloc_zero(32); memcpy(ext_or_auth_cookie, "s beside you? When I count, ther", 32); ext_or_auth_cookie_is_set = 1; /* For this authentication, the client sends 32 random bytes (ClientNonce) * The server replies with 32 byte ServerHash and 32 byte ServerNonce, * where ServerHash is: * HMAC-SHA256(CookieString, * "ExtORPort authentication server-to-client hash" | ClientNonce | * ServerNonce)" * The client must reply with 32-byte ClientHash, which we compute as: * ClientHash is computed as: * HMAC-SHA256(CookieString, * "ExtORPort authentication client-to-server hash" | ClientNonce | * ServerNonce) */ /* Wrong length */ tt_int_op(-1, OP_EQ, handle_client_auth_nonce(client_nonce, 33, &client_hash, &reply, &reply_len)); tt_int_op(-1, OP_EQ, handle_client_auth_nonce(client_nonce, 31, &client_hash, &reply, &reply_len)); /* Now let's try this for real! */ tt_int_op(0, OP_EQ, handle_client_auth_nonce(client_nonce, 32, &client_hash, &reply, &reply_len)); tt_int_op(reply_len, OP_EQ, 64); tt_ptr_op(reply, OP_NE, NULL); tt_ptr_op(client_hash, OP_NE, NULL); /* Fill in the server nonce into the hash inputs... */ memcpy(server_hash_input+46+32, reply+32, 32); memcpy(client_hash_input+46+32, reply+32, 32); /* Check the HMACs are correct... */ crypto_hmac_sha256(hmac1, (char*)ext_or_auth_cookie, 32, server_hash_input, 46+32+32); crypto_hmac_sha256(hmac2, (char*)ext_or_auth_cookie, 32, client_hash_input, 46+32+32); tt_mem_op(hmac1,OP_EQ, reply, 32); tt_mem_op(hmac2,OP_EQ, client_hash, 32); /* Now do it again and make sure that the results are *different* */ tt_int_op(0, OP_EQ, handle_client_auth_nonce(client_nonce, 32, &client_hash2, &reply2, &reply_len)); tt_mem_op(reply2,OP_NE, reply, reply_len); tt_mem_op(client_hash2,OP_NE, client_hash, 32); /* But that this one checks out too. */ memcpy(server_hash_input+46+32, reply2+32, 32); memcpy(client_hash_input+46+32, reply2+32, 32); /* Check the HMACs are correct... */ crypto_hmac_sha256(hmac1, (char*)ext_or_auth_cookie, 32, server_hash_input, 46+32+32); crypto_hmac_sha256(hmac2, (char*)ext_or_auth_cookie, 32, client_hash_input, 46+32+32); tt_mem_op(hmac1,OP_EQ, reply2, 32); tt_mem_op(hmac2,OP_EQ, client_hash2, 32); done: tor_free(reply); tor_free(client_hash); tor_free(reply2); tor_free(client_hash2); } static int crypto_rand_return_tse_str(char *to, size_t n) { if (n != 32) { TT_FAIL(("Asked for %d bytes, not 32", (int)n)); return -1; } memcpy(to, "te road There is always another ", 32); return 0; } static void test_ext_or_cookie_auth_testvec(void *arg) { char *reply=NULL, *client_hash=NULL; size_t reply_len; char *mem_op_hex_tmp=NULL; const char client_nonce[] = "But when I look ahead up the whi"; (void)arg; ext_or_auth_cookie = tor_malloc_zero(32); memcpy(ext_or_auth_cookie, "Gliding wrapt in a brown mantle," , 32); ext_or_auth_cookie_is_set = 1; MOCK(crypto_rand, crypto_rand_return_tse_str); tt_int_op(0, OP_EQ, handle_client_auth_nonce(client_nonce, 32, &client_hash, &reply, &reply_len)); tt_ptr_op(reply, OP_NE, NULL ); tt_uint_op(reply_len, OP_EQ, 64); tt_mem_op(reply+32,OP_EQ, "te road There is always another ", 32); /* HMACSHA256("Gliding wrapt in a brown mantle," * "ExtORPort authentication server-to-client hash" * "But when I look ahead up the write road There is always another "); */ test_memeq_hex(reply, "ec80ed6e546d3b36fdfc22fe1315416b" "029f1ade7610d910878b62eeb7403821"); /* HMACSHA256("Gliding wrapt in a brown mantle," * "ExtORPort authentication client-to-server hash" * "But when I look ahead up the write road There is always another "); * (Both values computed using Python CLI.) */ test_memeq_hex(client_hash, "ab391732dd2ed968cd40c087d1b1f25b" "33b3cd77ff79bd80c2074bbf438119a2"); done: UNMOCK(crypto_rand); tor_free(reply); tor_free(client_hash); tor_free(mem_op_hex_tmp); } static void ignore_bootstrap_problem(const char *warn, int reason, or_connection_t *conn) { (void)warn; (void)reason; (void)conn; } static int is_reading = 1; static int handshake_start_called = 0; static void note_read_stopped(connection_t *conn) { (void)conn; is_reading=0; } static void note_read_started(connection_t *conn) { (void)conn; is_reading=1; } static int handshake_start(or_connection_t *conn, int receiving) { if (!conn || !receiving) TT_FAIL(("Bad arguments to handshake_start")); handshake_start_called = 1; return 0; } #define WRITE(s,n) \ do { \ write_to_buf((s), (n), TO_CONN(conn)->inbuf); \ } while (0) #define CONTAINS(s,n) \ do { \ tt_int_op((n), OP_LE, sizeof(b)); \ tt_int_op(buf_datalen(TO_CONN(conn)->outbuf), OP_EQ, (n)); \ if ((n)) { \ fetch_from_buf(b, (n), TO_CONN(conn)->outbuf); \ tt_mem_op(b, OP_EQ, (s), (n)); \ } \ } while (0) /* Helper: Do a successful Extended ORPort authentication handshake. */ static void do_ext_or_handshake(or_connection_t *conn) { char b[256]; tt_int_op(0, OP_EQ, connection_ext_or_start_auth(conn)); CONTAINS("\x01\x00", 2); WRITE("\x01", 1); WRITE("But when I look ahead up the whi", 32); MOCK(crypto_rand, crypto_rand_return_tse_str); tt_int_op(0, OP_EQ, connection_ext_or_process_inbuf(conn)); UNMOCK(crypto_rand); tt_int_op(TO_CONN(conn)->state, OP_EQ, EXT_OR_CONN_STATE_AUTH_WAIT_CLIENT_HASH); CONTAINS("\xec\x80\xed\x6e\x54\x6d\x3b\x36\xfd\xfc\x22\xfe\x13\x15\x41\x6b" "\x02\x9f\x1a\xde\x76\x10\xd9\x10\x87\x8b\x62\xee\xb7\x40\x38\x21" "te road There is always another ", 64); /* Send the right response this time. */ WRITE("\xab\x39\x17\x32\xdd\x2e\xd9\x68\xcd\x40\xc0\x87\xd1\xb1\xf2\x5b" "\x33\xb3\xcd\x77\xff\x79\xbd\x80\xc2\x07\x4b\xbf\x43\x81\x19\xa2", 32); tt_int_op(0, OP_EQ, connection_ext_or_process_inbuf(conn)); CONTAINS("\x01", 1); tt_assert(! TO_CONN(conn)->marked_for_close); tt_int_op(TO_CONN(conn)->state, OP_EQ, EXT_OR_CONN_STATE_OPEN); done: ; } static void test_ext_or_handshake(void *arg) { or_connection_t *conn=NULL; char b[256]; (void) arg; MOCK(connection_write_to_buf_impl_, connection_write_to_buf_impl_replacement); /* Use same authenticators as for test_ext_or_cookie_auth_testvec */ ext_or_auth_cookie = tor_malloc_zero(32); memcpy(ext_or_auth_cookie, "Gliding wrapt in a brown mantle," , 32); ext_or_auth_cookie_is_set = 1; init_connection_lists(); conn = or_connection_new(CONN_TYPE_EXT_OR, AF_INET); tt_int_op(0, OP_EQ, connection_ext_or_start_auth(conn)); /* The server starts by telling us about the one supported authtype. */ CONTAINS("\x01\x00", 2); /* Say the client hasn't responded yet. */ tt_int_op(0, OP_EQ, connection_ext_or_process_inbuf(conn)); /* Let's say the client replies badly. */ WRITE("\x99", 1); tt_int_op(-1, OP_EQ, connection_ext_or_process_inbuf(conn)); CONTAINS("", 0); tt_assert(TO_CONN(conn)->marked_for_close); close_closeable_connections(); conn = NULL; /* Okay, try again. */ conn = or_connection_new(CONN_TYPE_EXT_OR, AF_INET); tt_int_op(0, OP_EQ, connection_ext_or_start_auth(conn)); CONTAINS("\x01\x00", 2); /* Let's say the client replies sensibly this time. "Yes, AUTHTYPE_COOKIE * sounds delicious. Let's have some of that!" */ WRITE("\x01", 1); /* Let's say that the client also sends part of a nonce. */ WRITE("But when I look ", 16); tt_int_op(0, OP_EQ, connection_ext_or_process_inbuf(conn)); CONTAINS("", 0); tt_int_op(TO_CONN(conn)->state, OP_EQ, EXT_OR_CONN_STATE_AUTH_WAIT_CLIENT_NONCE); /* Pump it again. Nothing should happen. */ tt_int_op(0, OP_EQ, connection_ext_or_process_inbuf(conn)); /* send the rest of the nonce. */ WRITE("ahead up the whi", 16); MOCK(crypto_rand, crypto_rand_return_tse_str); tt_int_op(0, OP_EQ, connection_ext_or_process_inbuf(conn)); UNMOCK(crypto_rand); /* We should get the right reply from the server. */ CONTAINS("\xec\x80\xed\x6e\x54\x6d\x3b\x36\xfd\xfc\x22\xfe\x13\x15\x41\x6b" "\x02\x9f\x1a\xde\x76\x10\xd9\x10\x87\x8b\x62\xee\xb7\x40\x38\x21" "te road There is always another ", 64); /* Send the wrong response. */ WRITE("not with a bang but a whimper...", 32); MOCK(control_event_bootstrap_problem, ignore_bootstrap_problem); tt_int_op(-1, OP_EQ, connection_ext_or_process_inbuf(conn)); CONTAINS("\x00", 1); tt_assert(TO_CONN(conn)->marked_for_close); /* XXXX Hold-open-until-flushed. */ close_closeable_connections(); conn = NULL; UNMOCK(control_event_bootstrap_problem); MOCK(connection_start_reading, note_read_started); MOCK(connection_stop_reading, note_read_stopped); MOCK(connection_tls_start_handshake, handshake_start); /* Okay, this time let's succeed. */ conn = or_connection_new(CONN_TYPE_EXT_OR, AF_INET); do_ext_or_handshake(conn); /* Now let's run through some messages. */ /* First let's send some junk and make sure it's ignored. */ WRITE("\xff\xf0\x00\x03""ABC", 7); tt_int_op(0, OP_EQ, connection_ext_or_process_inbuf(conn)); CONTAINS("", 0); /* Now let's send a USERADDR command. */ WRITE("\x00\x01\x00\x0c""1.2.3.4:5678", 16); tt_int_op(0, OP_EQ, connection_ext_or_process_inbuf(conn)); tt_int_op(TO_CONN(conn)->port, OP_EQ, 5678); tt_int_op(tor_addr_to_ipv4h(&TO_CONN(conn)->addr), OP_EQ, 0x01020304); /* Now let's send a TRANSPORT command. */ WRITE("\x00\x02\x00\x07""rfc1149", 11); tt_int_op(0, OP_EQ, connection_ext_or_process_inbuf(conn)); tt_ptr_op(NULL, OP_NE, conn->ext_or_transport); tt_str_op("rfc1149", OP_EQ, conn->ext_or_transport); tt_int_op(is_reading,OP_EQ,1); tt_int_op(TO_CONN(conn)->state, OP_EQ, EXT_OR_CONN_STATE_OPEN); /* DONE */ WRITE("\x00\x00\x00\x00", 4); tt_int_op(0, OP_EQ, connection_ext_or_process_inbuf(conn)); tt_int_op(TO_CONN(conn)->state, OP_EQ, EXT_OR_CONN_STATE_FLUSHING); tt_int_op(is_reading,OP_EQ,0); CONTAINS("\x10\x00\x00\x00", 4); tt_int_op(handshake_start_called,OP_EQ,0); tt_int_op(0, OP_EQ, connection_ext_or_finished_flushing(conn)); tt_int_op(is_reading,OP_EQ,1); tt_int_op(handshake_start_called,OP_EQ,1); tt_int_op(TO_CONN(conn)->type, OP_EQ, CONN_TYPE_OR); tt_int_op(TO_CONN(conn)->state, OP_EQ, 0); close_closeable_connections(); conn = NULL; /* Okay, this time let's succeed the handshake but fail the USERADDR command. */ conn = or_connection_new(CONN_TYPE_EXT_OR, AF_INET); do_ext_or_handshake(conn); /* USERADDR command with an extra NUL byte */ WRITE("\x00\x01\x00\x0d""1.2.3.4:5678\x00", 17); MOCK(control_event_bootstrap_problem, ignore_bootstrap_problem); tt_int_op(-1, OP_EQ, connection_ext_or_process_inbuf(conn)); CONTAINS("", 0); tt_assert(TO_CONN(conn)->marked_for_close); close_closeable_connections(); conn = NULL; UNMOCK(control_event_bootstrap_problem); /* Now fail the TRANSPORT command. */ conn = or_connection_new(CONN_TYPE_EXT_OR, AF_INET); do_ext_or_handshake(conn); /* TRANSPORT command with an extra NUL byte */ WRITE("\x00\x02\x00\x08""rfc1149\x00", 12); MOCK(control_event_bootstrap_problem, ignore_bootstrap_problem); tt_int_op(-1, OP_EQ, connection_ext_or_process_inbuf(conn)); CONTAINS("", 0); tt_assert(TO_CONN(conn)->marked_for_close); close_closeable_connections(); conn = NULL; UNMOCK(control_event_bootstrap_problem); /* Now fail the TRANSPORT command. */ conn = or_connection_new(CONN_TYPE_EXT_OR, AF_INET); do_ext_or_handshake(conn); /* TRANSPORT command with transport name with symbols (not a C-identifier) */ WRITE("\x00\x02\x00\x07""rf*1149", 11); MOCK(control_event_bootstrap_problem, ignore_bootstrap_problem); tt_int_op(-1, OP_EQ, connection_ext_or_process_inbuf(conn)); CONTAINS("", 0); tt_assert(TO_CONN(conn)->marked_for_close); close_closeable_connections(); conn = NULL; UNMOCK(control_event_bootstrap_problem); done: UNMOCK(connection_write_to_buf_impl_); UNMOCK(crypto_rand); if (conn) connection_free_(TO_CONN(conn)); #undef CONTAINS #undef WRITE } struct testcase_t extorport_tests[] = { { "id_map", test_ext_or_id_map, TT_FORK, NULL, NULL }, { "write_command", test_ext_or_write_command, TT_FORK, NULL, NULL }, { "init_auth", test_ext_or_init_auth, TT_FORK, NULL, NULL }, { "cookie_auth", test_ext_or_cookie_auth, TT_FORK, NULL, NULL }, { "cookie_auth_testvec", test_ext_or_cookie_auth_testvec, TT_FORK, NULL, NULL }, { "handshake", test_ext_or_handshake, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_buffers.c0000644000175000017500000005353012621363246014031 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define BUFFERS_PRIVATE #include "or.h" #include "buffers.h" #include "ext_orport.h" #include "test.h" /** Run unit tests for buffers.c */ static void test_buffers_basic(void *arg) { char str[256]; char str2[256]; buf_t *buf = NULL, *buf2 = NULL; const char *cp; int j; size_t r; (void) arg; /**** * buf_new ****/ if (!(buf = buf_new())) TT_DIE(("Assertion failed.")); //test_eq(buf_capacity(buf), 4096); tt_int_op(buf_datalen(buf),OP_EQ, 0); /**** * General pointer frobbing */ for (j=0;j<256;++j) { str[j] = (char)j; } write_to_buf(str, 256, buf); write_to_buf(str, 256, buf); tt_int_op(buf_datalen(buf),OP_EQ, 512); fetch_from_buf(str2, 200, buf); tt_mem_op(str,OP_EQ, str2, 200); tt_int_op(buf_datalen(buf),OP_EQ, 312); memset(str2, 0, sizeof(str2)); fetch_from_buf(str2, 256, buf); tt_mem_op(str+200,OP_EQ, str2, 56); tt_mem_op(str,OP_EQ, str2+56, 200); tt_int_op(buf_datalen(buf),OP_EQ, 56); memset(str2, 0, sizeof(str2)); /* Okay, now we should be 512 bytes into the 4096-byte buffer. If we add * another 3584 bytes, we hit the end. */ for (j=0;j<15;++j) { write_to_buf(str, 256, buf); } assert_buf_ok(buf); tt_int_op(buf_datalen(buf),OP_EQ, 3896); fetch_from_buf(str2, 56, buf); tt_int_op(buf_datalen(buf),OP_EQ, 3840); tt_mem_op(str+200,OP_EQ, str2, 56); for (j=0;j<15;++j) { memset(str2, 0, sizeof(str2)); fetch_from_buf(str2, 256, buf); tt_mem_op(str,OP_EQ, str2, 256); } tt_int_op(buf_datalen(buf),OP_EQ, 0); buf_free(buf); buf = NULL; /* Okay, now make sure growing can work. */ buf = buf_new_with_capacity(16); //test_eq(buf_capacity(buf), 16); write_to_buf(str+1, 255, buf); //test_eq(buf_capacity(buf), 256); fetch_from_buf(str2, 254, buf); tt_mem_op(str+1,OP_EQ, str2, 254); //test_eq(buf_capacity(buf), 256); assert_buf_ok(buf); write_to_buf(str, 32, buf); //test_eq(buf_capacity(buf), 256); assert_buf_ok(buf); write_to_buf(str, 256, buf); assert_buf_ok(buf); //test_eq(buf_capacity(buf), 512); tt_int_op(buf_datalen(buf),OP_EQ, 33+256); fetch_from_buf(str2, 33, buf); tt_int_op(*str2,OP_EQ, str[255]); tt_mem_op(str2+1,OP_EQ, str, 32); //test_eq(buf_capacity(buf), 512); tt_int_op(buf_datalen(buf),OP_EQ, 256); fetch_from_buf(str2, 256, buf); tt_mem_op(str,OP_EQ, str2, 256); /* now try shrinking: case 1. */ buf_free(buf); buf = buf_new_with_capacity(33668); for (j=0;j<67;++j) { write_to_buf(str,255, buf); } //test_eq(buf_capacity(buf), 33668); tt_int_op(buf_datalen(buf),OP_EQ, 17085); for (j=0; j < 40; ++j) { fetch_from_buf(str2, 255,buf); tt_mem_op(str2,OP_EQ, str, 255); } /* now try shrinking: case 2. */ buf_free(buf); buf = buf_new_with_capacity(33668); for (j=0;j<67;++j) { write_to_buf(str,255, buf); } for (j=0; j < 20; ++j) { fetch_from_buf(str2, 255,buf); tt_mem_op(str2,OP_EQ, str, 255); } for (j=0;j<80;++j) { write_to_buf(str,255, buf); } //test_eq(buf_capacity(buf),33668); for (j=0; j < 120; ++j) { fetch_from_buf(str2, 255,buf); tt_mem_op(str2,OP_EQ, str, 255); } /* Move from buf to buf. */ buf_free(buf); buf = buf_new_with_capacity(4096); buf2 = buf_new_with_capacity(4096); for (j=0;j<100;++j) write_to_buf(str, 255, buf); tt_int_op(buf_datalen(buf),OP_EQ, 25500); for (j=0;j<100;++j) { r = 10; move_buf_to_buf(buf2, buf, &r); tt_int_op(r,OP_EQ, 0); } tt_int_op(buf_datalen(buf),OP_EQ, 24500); tt_int_op(buf_datalen(buf2),OP_EQ, 1000); for (j=0;j<3;++j) { fetch_from_buf(str2, 255, buf2); tt_mem_op(str2,OP_EQ, str, 255); } r = 8192; /*big move*/ move_buf_to_buf(buf2, buf, &r); tt_int_op(r,OP_EQ, 0); r = 30000; /* incomplete move */ move_buf_to_buf(buf2, buf, &r); tt_int_op(r,OP_EQ, 13692); for (j=0;j<97;++j) { fetch_from_buf(str2, 255, buf2); tt_mem_op(str2,OP_EQ, str, 255); } buf_free(buf); buf_free(buf2); buf = buf2 = NULL; buf = buf_new_with_capacity(5); cp = "Testing. This is a moderately long Testing string."; for (j = 0; cp[j]; j++) write_to_buf(cp+j, 1, buf); tt_int_op(0,OP_EQ, buf_find_string_offset(buf, "Testing", 7)); tt_int_op(1,OP_EQ, buf_find_string_offset(buf, "esting", 6)); tt_int_op(1,OP_EQ, buf_find_string_offset(buf, "est", 3)); tt_int_op(39,OP_EQ, buf_find_string_offset(buf, "ing str", 7)); tt_int_op(35,OP_EQ, buf_find_string_offset(buf, "Testing str", 11)); tt_int_op(32,OP_EQ, buf_find_string_offset(buf, "ng ", 3)); tt_int_op(43,OP_EQ, buf_find_string_offset(buf, "string.", 7)); tt_int_op(-1,OP_EQ, buf_find_string_offset(buf, "shrdlu", 6)); tt_int_op(-1,OP_EQ, buf_find_string_offset(buf, "Testing thing", 13)); tt_int_op(-1,OP_EQ, buf_find_string_offset(buf, "ngx", 3)); buf_free(buf); buf = NULL; /* Try adding a string too long for any freelist. */ { char *cp = tor_malloc_zero(65536); buf = buf_new(); write_to_buf(cp, 65536, buf); tor_free(cp); tt_int_op(buf_datalen(buf), OP_EQ, 65536); buf_free(buf); buf = NULL; } done: if (buf) buf_free(buf); if (buf2) buf_free(buf2); } static void test_buffer_pullup(void *arg) { buf_t *buf; char *stuff, *tmp; const char *cp; size_t sz; (void)arg; stuff = tor_malloc(16384); tmp = tor_malloc(16384); buf = buf_new_with_capacity(3000); /* rounds up to next power of 2. */ tt_assert(buf); tt_int_op(buf_get_default_chunk_size(buf), OP_EQ, 4096); tt_int_op(buf_get_total_allocation(), OP_EQ, 0); /* There are a bunch of cases for pullup. One is the trivial case. Let's mess around with an empty buffer. */ buf_pullup(buf, 16); buf_get_first_chunk_data(buf, &cp, &sz); tt_ptr_op(cp, OP_EQ, NULL); tt_uint_op(sz, OP_EQ, 0); /* Let's make sure nothing got allocated */ tt_int_op(buf_get_total_allocation(), OP_EQ, 0); /* Case 1: everything puts into the first chunk with some moving. */ /* Let's add some data. */ crypto_rand(stuff, 16384); write_to_buf(stuff, 3000, buf); write_to_buf(stuff+3000, 3000, buf); buf_get_first_chunk_data(buf, &cp, &sz); tt_ptr_op(cp, OP_NE, NULL); tt_int_op(sz, OP_LE, 4096); /* Make room for 3000 bytes in the first chunk, so that the pullup-move code * can get tested. */ tt_int_op(fetch_from_buf(tmp, 3000, buf), OP_EQ, 3000); tt_mem_op(tmp,OP_EQ, stuff, 3000); buf_pullup(buf, 2048); assert_buf_ok(buf); buf_get_first_chunk_data(buf, &cp, &sz); tt_ptr_op(cp, OP_NE, NULL); tt_int_op(sz, OP_GE, 2048); tt_mem_op(cp,OP_EQ, stuff+3000, 2048); tt_int_op(3000, OP_EQ, buf_datalen(buf)); tt_int_op(fetch_from_buf(tmp, 3000, buf), OP_EQ, 0); tt_mem_op(tmp,OP_EQ, stuff+3000, 2048); buf_free(buf); /* Now try the large-chunk case. */ buf = buf_new_with_capacity(3000); /* rounds up to next power of 2. */ write_to_buf(stuff, 4000, buf); write_to_buf(stuff+4000, 4000, buf); write_to_buf(stuff+8000, 4000, buf); write_to_buf(stuff+12000, 4000, buf); tt_int_op(buf_datalen(buf), OP_EQ, 16000); buf_get_first_chunk_data(buf, &cp, &sz); tt_ptr_op(cp, OP_NE, NULL); tt_int_op(sz, OP_LE, 4096); buf_pullup(buf, 12500); assert_buf_ok(buf); buf_get_first_chunk_data(buf, &cp, &sz); tt_ptr_op(cp, OP_NE, NULL); tt_int_op(sz, OP_GE, 12500); tt_mem_op(cp,OP_EQ, stuff, 12500); tt_int_op(buf_datalen(buf), OP_EQ, 16000); fetch_from_buf(tmp, 12400, buf); tt_mem_op(tmp,OP_EQ, stuff, 12400); tt_int_op(buf_datalen(buf), OP_EQ, 3600); fetch_from_buf(tmp, 3500, buf); tt_mem_op(tmp,OP_EQ, stuff+12400, 3500); fetch_from_buf(tmp, 100, buf); tt_mem_op(tmp,OP_EQ, stuff+15900, 10); buf_free(buf); /* Make sure that the pull-up-whole-buffer case works */ buf = buf_new_with_capacity(3000); /* rounds up to next power of 2. */ write_to_buf(stuff, 4000, buf); write_to_buf(stuff+4000, 4000, buf); fetch_from_buf(tmp, 100, buf); /* dump 100 bytes from first chunk */ buf_pullup(buf, 16000); /* Way too much. */ assert_buf_ok(buf); buf_get_first_chunk_data(buf, &cp, &sz); tt_ptr_op(cp, OP_NE, NULL); tt_int_op(sz, OP_EQ, 7900); tt_mem_op(cp,OP_EQ, stuff+100, 7900); buf_free(buf); buf = NULL; tt_int_op(buf_get_total_allocation(), OP_EQ, 0); done: buf_free(buf); tor_free(stuff); tor_free(tmp); } static void test_buffer_copy(void *arg) { generic_buffer_t *buf=NULL, *buf2=NULL; const char *s; size_t len; char b[256]; int i; (void)arg; buf = generic_buffer_new(); tt_assert(buf); /* Copy an empty buffer. */ tt_int_op(0, OP_EQ, generic_buffer_set_to_copy(&buf2, buf)); tt_assert(buf2); tt_int_op(0, OP_EQ, generic_buffer_len(buf2)); /* Now try with a short buffer. */ s = "And now comes an act of enormous enormance!"; len = strlen(s); generic_buffer_add(buf, s, len); tt_int_op(len, OP_EQ, generic_buffer_len(buf)); /* Add junk to buf2 so we can test replacing.*/ generic_buffer_add(buf2, "BLARG", 5); tt_int_op(0, OP_EQ, generic_buffer_set_to_copy(&buf2, buf)); tt_int_op(len, OP_EQ, generic_buffer_len(buf2)); generic_buffer_get(buf2, b, len); tt_mem_op(b, OP_EQ, s, len); /* Now free buf2 and retry so we can test allocating */ generic_buffer_free(buf2); buf2 = NULL; tt_int_op(0, OP_EQ, generic_buffer_set_to_copy(&buf2, buf)); tt_int_op(len, OP_EQ, generic_buffer_len(buf2)); generic_buffer_get(buf2, b, len); tt_mem_op(b, OP_EQ, s, len); /* Clear buf for next test */ generic_buffer_get(buf, b, len); tt_int_op(generic_buffer_len(buf),OP_EQ,0); /* Okay, now let's try a bigger buffer. */ s = "Quis autem vel eum iure reprehenderit qui in ea voluptate velit " "esse quam nihil molestiae consequatur, vel illum qui dolorem eum " "fugiat quo voluptas nulla pariatur?"; len = strlen(s); for (i = 0; i < 256; ++i) { b[0]=i; generic_buffer_add(buf, b, 1); generic_buffer_add(buf, s, len); } tt_int_op(0, OP_EQ, generic_buffer_set_to_copy(&buf2, buf)); tt_int_op(generic_buffer_len(buf2), OP_EQ, generic_buffer_len(buf)); for (i = 0; i < 256; ++i) { generic_buffer_get(buf2, b, len+1); tt_int_op((unsigned char)b[0],OP_EQ,i); tt_mem_op(b+1, OP_EQ, s, len); } done: if (buf) generic_buffer_free(buf); if (buf2) generic_buffer_free(buf2); } static void test_buffer_ext_or_cmd(void *arg) { ext_or_cmd_t *cmd = NULL; generic_buffer_t *buf = generic_buffer_new(); char *tmp = NULL; (void) arg; /* Empty -- should give "not there. */ tt_int_op(0, OP_EQ, generic_buffer_fetch_ext_or_cmd(buf, &cmd)); tt_ptr_op(NULL, OP_EQ, cmd); /* Three bytes: shouldn't work. */ generic_buffer_add(buf, "\x00\x20\x00", 3); tt_int_op(0, OP_EQ, generic_buffer_fetch_ext_or_cmd(buf, &cmd)); tt_ptr_op(NULL, OP_EQ, cmd); tt_int_op(3, OP_EQ, generic_buffer_len(buf)); /* 0020 0000: That's a nil command. It should work. */ generic_buffer_add(buf, "\x00", 1); tt_int_op(1, OP_EQ, generic_buffer_fetch_ext_or_cmd(buf, &cmd)); tt_ptr_op(NULL, OP_NE, cmd); tt_int_op(0x20, OP_EQ, cmd->cmd); tt_int_op(0, OP_EQ, cmd->len); tt_int_op(0, OP_EQ, generic_buffer_len(buf)); ext_or_cmd_free(cmd); cmd = NULL; /* Now try a length-6 command with one byte missing. */ generic_buffer_add(buf, "\x10\x21\x00\x06""abcde", 9); tt_int_op(0, OP_EQ, generic_buffer_fetch_ext_or_cmd(buf, &cmd)); tt_ptr_op(NULL, OP_EQ, cmd); generic_buffer_add(buf, "f", 1); tt_int_op(1, OP_EQ, generic_buffer_fetch_ext_or_cmd(buf, &cmd)); tt_ptr_op(NULL, OP_NE, cmd); tt_int_op(0x1021, OP_EQ, cmd->cmd); tt_int_op(6, OP_EQ, cmd->len); tt_mem_op("abcdef", OP_EQ, cmd->body, 6); tt_int_op(0, OP_EQ, generic_buffer_len(buf)); ext_or_cmd_free(cmd); cmd = NULL; /* Now try a length-10 command with 4 extra bytes. */ generic_buffer_add(buf, "\xff\xff\x00\x0a" "loremipsum\x10\x00\xff\xff", 18); tt_int_op(1, OP_EQ, generic_buffer_fetch_ext_or_cmd(buf, &cmd)); tt_ptr_op(NULL, OP_NE, cmd); tt_int_op(0xffff, OP_EQ, cmd->cmd); tt_int_op(10, OP_EQ, cmd->len); tt_mem_op("loremipsum", OP_EQ, cmd->body, 10); tt_int_op(4, OP_EQ, generic_buffer_len(buf)); ext_or_cmd_free(cmd); cmd = NULL; /* Finally, let's try a maximum-length command. We already have the header * waiting. */ tt_int_op(0, OP_EQ, generic_buffer_fetch_ext_or_cmd(buf, &cmd)); tmp = tor_malloc_zero(65535); generic_buffer_add(buf, tmp, 65535); tt_int_op(1, OP_EQ, generic_buffer_fetch_ext_or_cmd(buf, &cmd)); tt_ptr_op(NULL, OP_NE, cmd); tt_int_op(0x1000, OP_EQ, cmd->cmd); tt_int_op(0xffff, OP_EQ, cmd->len); tt_mem_op(tmp, OP_EQ, cmd->body, 65535); tt_int_op(0, OP_EQ, generic_buffer_len(buf)); ext_or_cmd_free(cmd); cmd = NULL; done: ext_or_cmd_free(cmd); generic_buffer_free(buf); tor_free(tmp); } static void test_buffer_allocation_tracking(void *arg) { char *junk = tor_malloc(16384); buf_t *buf1 = NULL, *buf2 = NULL; int i; (void)arg; crypto_rand(junk, 16384); tt_int_op(buf_get_total_allocation(), OP_EQ, 0); buf1 = buf_new(); tt_assert(buf1); buf2 = buf_new(); tt_assert(buf2); tt_int_op(buf_allocation(buf1), OP_EQ, 0); tt_int_op(buf_get_total_allocation(), OP_EQ, 0); write_to_buf(junk, 4000, buf1); write_to_buf(junk, 4000, buf1); write_to_buf(junk, 4000, buf1); write_to_buf(junk, 4000, buf1); tt_int_op(buf_allocation(buf1), OP_EQ, 16384); fetch_from_buf(junk, 100, buf1); tt_int_op(buf_allocation(buf1), OP_EQ, 16384); /* still 4 4k chunks */ tt_int_op(buf_get_total_allocation(), OP_EQ, 16384); fetch_from_buf(junk, 4096, buf1); /* drop a 1k chunk... */ tt_int_op(buf_allocation(buf1), OP_EQ, 3*4096); /* now 3 4k chunks */ tt_int_op(buf_get_total_allocation(), OP_EQ, 12288); /* that chunk was really freed. */ write_to_buf(junk, 4000, buf2); tt_int_op(buf_allocation(buf2), OP_EQ, 4096); /* another 4k chunk. */ /* * We bounce back up to 16384 by allocating a new chunk. */ tt_int_op(buf_get_total_allocation(), OP_EQ, 16384); write_to_buf(junk, 4000, buf2); tt_int_op(buf_allocation(buf2), OP_EQ, 8192); /* another 4k chunk. */ tt_int_op(buf_get_total_allocation(), OP_EQ, 5*4096); /* that chunk was new. */ /* Make a really huge buffer */ for (i = 0; i < 1000; ++i) { write_to_buf(junk, 4000, buf2); } tt_int_op(buf_allocation(buf2), OP_GE, 4008000); tt_int_op(buf_get_total_allocation(), OP_GE, 4008000); buf_free(buf2); buf2 = NULL; tt_int_op(buf_get_total_allocation(), OP_LT, 4008000); tt_int_op(buf_get_total_allocation(), OP_EQ, buf_allocation(buf1)); buf_free(buf1); buf1 = NULL; tt_int_op(buf_get_total_allocation(), OP_EQ, 0); done: buf_free(buf1); buf_free(buf2); tor_free(junk); } static void test_buffer_time_tracking(void *arg) { buf_t *buf=NULL, *buf2=NULL; struct timeval tv0; const time_t START = 1389288246; const uint32_t START_MSEC = (uint32_t) ((uint64_t)START * 1000); int i; char tmp[4096]; (void)arg; crypto_rand(tmp, sizeof(tmp)); tv0.tv_sec = START; tv0.tv_usec = 0; buf = buf_new_with_capacity(3000); /* rounds up to next power of 2. */ tt_assert(buf); /* Empty buffer means the timestamp is 0. */ tt_int_op(0, OP_EQ, buf_get_oldest_chunk_timestamp(buf, START_MSEC)); tt_int_op(0, OP_EQ, buf_get_oldest_chunk_timestamp(buf, START_MSEC+1000)); tor_gettimeofday_cache_set(&tv0); write_to_buf("ABCDEFG", 7, buf); tt_int_op(1000, OP_EQ, buf_get_oldest_chunk_timestamp(buf, START_MSEC+1000)); buf2 = buf_copy(buf); tt_assert(buf2); tt_int_op(1234, OP_EQ, buf_get_oldest_chunk_timestamp(buf2, START_MSEC+1234)); /* Now add more bytes; enough to overflow the first chunk. */ tv0.tv_usec += 123 * 1000; tor_gettimeofday_cache_set(&tv0); for (i = 0; i < 600; ++i) write_to_buf("ABCDEFG", 7, buf); tt_int_op(4207, OP_EQ, buf_datalen(buf)); /* The oldest bytes are still in the front. */ tt_int_op(2000, OP_EQ, buf_get_oldest_chunk_timestamp(buf, START_MSEC+2000)); /* Once those bytes are dropped, the chunk is still on the first * timestamp. */ fetch_from_buf(tmp, 100, buf); tt_int_op(2000, OP_EQ, buf_get_oldest_chunk_timestamp(buf, START_MSEC+2000)); /* But once we discard the whole first chunk, we get the data in the second * chunk. */ fetch_from_buf(tmp, 4000, buf); tt_int_op(107, OP_EQ, buf_datalen(buf)); tt_int_op(2000, OP_EQ, buf_get_oldest_chunk_timestamp(buf, START_MSEC+2123)); /* This time we'll be grabbing a chunk from the freelist, and making sure its time gets updated */ tv0.tv_sec += 5; tv0.tv_usec = 617*1000; tor_gettimeofday_cache_set(&tv0); for (i = 0; i < 600; ++i) write_to_buf("ABCDEFG", 7, buf); tt_int_op(4307, OP_EQ, buf_datalen(buf)); tt_int_op(2000, OP_EQ, buf_get_oldest_chunk_timestamp(buf, START_MSEC+2123)); fetch_from_buf(tmp, 4000, buf); fetch_from_buf(tmp, 306, buf); tt_int_op(0, OP_EQ, buf_get_oldest_chunk_timestamp(buf, START_MSEC+5617)); tt_int_op(383, OP_EQ, buf_get_oldest_chunk_timestamp(buf, START_MSEC+6000)); done: buf_free(buf); buf_free(buf2); } static void test_buffers_zlib_impl(int finalize_with_nil) { char *msg = NULL; char *contents = NULL; char *expanded = NULL; buf_t *buf = NULL; tor_zlib_state_t *zlib_state = NULL; size_t out_len, in_len; int done; buf = buf_new_with_capacity(128); /* will round up */ zlib_state = tor_zlib_new(1, ZLIB_METHOD, HIGH_COMPRESSION); msg = tor_malloc(512); crypto_rand(msg, 512); tt_int_op(write_to_buf_zlib(buf, zlib_state, msg, 128, 0), OP_EQ, 0); tt_int_op(write_to_buf_zlib(buf, zlib_state, msg+128, 128, 0), OP_EQ, 0); tt_int_op(write_to_buf_zlib(buf, zlib_state, msg+256, 256, 0), OP_EQ, 0); done = !finalize_with_nil; tt_int_op(write_to_buf_zlib(buf, zlib_state, "all done", 9, done), OP_EQ, 0); if (finalize_with_nil) { tt_int_op(write_to_buf_zlib(buf, zlib_state, "", 0, 1), OP_EQ, 0); } in_len = buf_datalen(buf); contents = tor_malloc(in_len); tt_int_op(fetch_from_buf(contents, in_len, buf), OP_EQ, 0); tt_int_op(0, OP_EQ, tor_gzip_uncompress(&expanded, &out_len, contents, in_len, ZLIB_METHOD, 1, LOG_WARN)); tt_int_op(out_len, OP_GE, 128); tt_mem_op(msg, OP_EQ, expanded, 128); tt_int_op(out_len, OP_GE, 512); tt_mem_op(msg, OP_EQ, expanded, 512); tt_int_op(out_len, OP_EQ, 512+9); tt_mem_op("all done", OP_EQ, expanded+512, 9); done: buf_free(buf); tor_zlib_free(zlib_state); tor_free(contents); tor_free(expanded); tor_free(msg); } static void test_buffers_zlib(void *arg) { (void) arg; test_buffers_zlib_impl(0); } static void test_buffers_zlib_fin_with_nil(void *arg) { (void) arg; test_buffers_zlib_impl(1); } static void test_buffers_zlib_fin_at_chunk_end(void *arg) { char *msg = NULL; char *contents = NULL; char *expanded = NULL; buf_t *buf = NULL; tor_zlib_state_t *zlib_state = NULL; size_t out_len, in_len; size_t sz, headerjunk; (void) arg; buf = buf_new_with_capacity(128); /* will round up */ sz = buf_get_default_chunk_size(buf); msg = tor_malloc_zero(sz); write_to_buf(msg, 1, buf); tt_assert(buf->head); /* Fill up the chunk so the zlib stuff won't fit in one chunk. */ tt_uint_op(buf->head->memlen, OP_LT, sz); headerjunk = buf->head->memlen - 7; write_to_buf(msg, headerjunk-1, buf); tt_uint_op(buf->head->datalen, OP_EQ, headerjunk); tt_uint_op(buf_datalen(buf), OP_EQ, headerjunk); /* Write an empty string, with finalization on. */ zlib_state = tor_zlib_new(1, ZLIB_METHOD, HIGH_COMPRESSION); tt_int_op(write_to_buf_zlib(buf, zlib_state, "", 0, 1), OP_EQ, 0); in_len = buf_datalen(buf); contents = tor_malloc(in_len); tt_int_op(fetch_from_buf(contents, in_len, buf), OP_EQ, 0); tt_uint_op(in_len, OP_GT, headerjunk); tt_int_op(0, OP_EQ, tor_gzip_uncompress(&expanded, &out_len, contents + headerjunk, in_len - headerjunk, ZLIB_METHOD, 1, LOG_WARN)); tt_int_op(out_len, OP_EQ, 0); tt_assert(expanded); done: buf_free(buf); tor_zlib_free(zlib_state); tor_free(contents); tor_free(expanded); tor_free(msg); } const uint8_t *tls_read_ptr; int n_remaining; int next_reply_val[16]; static int mock_tls_read(tor_tls_t *tls, char *cp, size_t len) { (void)tls; int rv = next_reply_val[0]; if (rv > 0) { int max = rv > (int)len ? (int)len : rv; if (max > n_remaining) max = n_remaining; memcpy(cp, tls_read_ptr, max); rv = max; n_remaining -= max; tls_read_ptr += max; } memmove(next_reply_val, next_reply_val + 1, 15*sizeof(int)); return rv; } static void test_buffers_tls_read_mocked(void *arg) { uint8_t *mem; buf_t *buf; (void)arg; mem = tor_malloc(64*1024); crypto_rand((char*)mem, 64*1024); tls_read_ptr = mem; n_remaining = 64*1024; MOCK(tor_tls_read, mock_tls_read); buf = buf_new(); next_reply_val[0] = 1024; tt_int_op(128, ==, read_to_buf_tls(NULL, 128, buf)); next_reply_val[0] = 5000; next_reply_val[1] = 5000; tt_int_op(6000, ==, read_to_buf_tls(NULL, 6000, buf)); done: UNMOCK(tor_tls_read); tor_free(mem); buf_free(buf); } struct testcase_t buffer_tests[] = { { "basic", test_buffers_basic, TT_FORK, NULL, NULL }, { "copy", test_buffer_copy, TT_FORK, NULL, NULL }, { "pullup", test_buffer_pullup, TT_FORK, NULL, NULL }, { "ext_or_cmd", test_buffer_ext_or_cmd, TT_FORK, NULL, NULL }, { "allocation_tracking", test_buffer_allocation_tracking, TT_FORK, NULL, NULL }, { "time_tracking", test_buffer_time_tracking, TT_FORK, NULL, NULL }, { "zlib", test_buffers_zlib, TT_FORK, NULL, NULL }, { "zlib_fin_with_nil", test_buffers_zlib_fin_with_nil, TT_FORK, NULL, NULL }, { "zlib_fin_at_chunk_end", test_buffers_zlib_fin_at_chunk_end, TT_FORK, NULL, NULL}, { "tls_read_mocked", test_buffers_tls_read_mocked, 0, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_replay.c0000644000175000017500000001764012631612325013667 00000000000000/* Copyright (c) 2012-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define REPLAYCACHE_PRIVATE #include "orconfig.h" #include "or.h" #include "replaycache.h" #include "test.h" static const char *test_buffer = "Lorem ipsum dolor sit amet, consectetur adipisici elit, sed do eiusmod" " tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim" " veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea" " commodo consequat. Duis aute irure dolor in reprehenderit in voluptate" " velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint" " occaecat cupidatat non proident, sunt in culpa qui officia deserunt" " mollit anim id est laborum."; static void test_replaycache_alloc(void *arg) { replaycache_t *r = NULL; (void)arg; r = replaycache_new(600, 300); tt_assert(r != NULL); done: if (r) replaycache_free(r); return; } static void test_replaycache_badalloc(void *arg) { replaycache_t *r = NULL; /* Negative horizon should fail */ (void)arg; r = replaycache_new(-600, 300); tt_assert(r == NULL); /* Negative interval should get adjusted to zero */ r = replaycache_new(600, -300); tt_assert(r != NULL); tt_int_op(r->scrub_interval,OP_EQ, 0); replaycache_free(r); /* Negative horizon and negative interval should still fail */ r = replaycache_new(-600, -300); tt_assert(r == NULL); done: if (r) replaycache_free(r); return; } static void test_replaycache_free_null(void *arg) { (void)arg; replaycache_free(NULL); /* Assert that we're here without horrible death */ tt_assert(1); done: return; } static void test_replaycache_miss(void *arg) { replaycache_t *r = NULL; int result; (void)arg; r = replaycache_new(600, 300); tt_assert(r != NULL); result = replaycache_add_and_test_internal(1200, r, test_buffer, strlen(test_buffer), NULL); tt_int_op(result,OP_EQ, 0); /* poke the bad-parameter error case too */ result = replaycache_add_and_test_internal(1200, NULL, test_buffer, strlen(test_buffer), NULL); tt_int_op(result,OP_EQ, 0); done: if (r) replaycache_free(r); return; } static void test_replaycache_hit(void *arg) { replaycache_t *r = NULL; int result; (void)arg; r = replaycache_new(600, 300); tt_assert(r != NULL); result = replaycache_add_and_test_internal(1200, r, test_buffer, strlen(test_buffer), NULL); tt_int_op(result,OP_EQ, 0); result = replaycache_add_and_test_internal(1300, r, test_buffer, strlen(test_buffer), NULL); tt_int_op(result,OP_EQ, 1); done: if (r) replaycache_free(r); return; } static void test_replaycache_age(void *arg) { replaycache_t *r = NULL; int result; (void)arg; r = replaycache_new(600, 300); tt_assert(r != NULL); result = replaycache_add_and_test_internal(1200, r, test_buffer, strlen(test_buffer), NULL); tt_int_op(result,OP_EQ, 0); result = replaycache_add_and_test_internal(1300, r, test_buffer, strlen(test_buffer), NULL); tt_int_op(result,OP_EQ, 1); result = replaycache_add_and_test_internal(3000, r, test_buffer, strlen(test_buffer), NULL); tt_int_op(result,OP_EQ, 0); done: if (r) replaycache_free(r); return; } static void test_replaycache_elapsed(void *arg) { replaycache_t *r = NULL; int result; time_t elapsed; (void)arg; r = replaycache_new(600, 300); tt_assert(r != NULL); result = replaycache_add_and_test_internal(1200, r, test_buffer, strlen(test_buffer), NULL); tt_int_op(result,OP_EQ, 0); result = replaycache_add_and_test_internal(1300, r, test_buffer, strlen(test_buffer), &elapsed); tt_int_op(result,OP_EQ, 1); tt_int_op(elapsed,OP_EQ, 100); done: if (r) replaycache_free(r); return; } static void test_replaycache_noexpire(void *arg) { replaycache_t *r = NULL; int result; (void)arg; r = replaycache_new(0, 0); tt_assert(r != NULL); result = replaycache_add_and_test_internal(1200, r, test_buffer, strlen(test_buffer), NULL); tt_int_op(result,OP_EQ, 0); result = replaycache_add_and_test_internal(1300, r, test_buffer, strlen(test_buffer), NULL); tt_int_op(result,OP_EQ, 1); result = replaycache_add_and_test_internal(3000, r, test_buffer, strlen(test_buffer), NULL); tt_int_op(result,OP_EQ, 1); done: if (r) replaycache_free(r); return; } static void test_replaycache_scrub(void *arg) { replaycache_t *r = NULL; int result; (void)arg; r = replaycache_new(600, 300); tt_assert(r != NULL); /* Set up like in test_replaycache_hit() */ result = replaycache_add_and_test_internal(100, r, test_buffer, strlen(test_buffer), NULL); tt_int_op(result,OP_EQ, 0); result = replaycache_add_and_test_internal(200, r, test_buffer, strlen(test_buffer), NULL); tt_int_op(result,OP_EQ, 1); /* * Poke a few replaycache_scrub_if_needed_internal() error cases that * can't happen through replaycache_add_and_test_internal() */ /* Null cache */ replaycache_scrub_if_needed_internal(300, NULL); /* Assert we're still here */ tt_assert(1); /* Make sure we hit the aging-out case too */ replaycache_scrub_if_needed_internal(1500, r); /* Assert that we aged it */ tt_int_op(digestmap_size(r->digests_seen),OP_EQ, 0); done: if (r) replaycache_free(r); return; } static void test_replaycache_future(void *arg) { replaycache_t *r = NULL; int result; time_t elapsed = 0; (void)arg; r = replaycache_new(600, 300); tt_assert(r != NULL); /* Set up like in test_replaycache_hit() */ result = replaycache_add_and_test_internal(100, r, test_buffer, strlen(test_buffer), &elapsed); tt_int_op(result,OP_EQ, 0); /* elapsed should still be 0, since it wasn't written */ tt_int_op(elapsed,OP_EQ, 0); result = replaycache_add_and_test_internal(200, r, test_buffer, strlen(test_buffer), &elapsed); tt_int_op(result,OP_EQ, 1); /* elapsed should be the time since the last hit */ tt_int_op(elapsed,OP_EQ, 100); /* * Now let's turn the clock back to get coverage on the cache entry from the * future not-supposed-to-happen case. */ result = replaycache_add_and_test_internal(150, r, test_buffer, strlen(test_buffer), &elapsed); /* We should still get a hit */ tt_int_op(result,OP_EQ, 1); /* ...but it shouldn't let us see a negative elapsed time */ tt_int_op(elapsed,OP_EQ, 0); done: if (r) replaycache_free(r); return; } static void test_replaycache_realtime(void *arg) { replaycache_t *r = NULL; /* * Negative so we fail if replaycache_add_test_and_elapsed() doesn't * write to elapsed. */ time_t elapsed = -1; int result; /* Test the realtime as well as *_internal() entry points */ (void)arg; r = replaycache_new(600, 300); tt_assert(r != NULL); /* This should miss */ result = replaycache_add_and_test(r, test_buffer, strlen(test_buffer)); tt_int_op(result,OP_EQ, 0); /* This should hit */ result = replaycache_add_and_test(r, test_buffer, strlen(test_buffer)); tt_int_op(result,OP_EQ, 1); /* This should hit and return a small elapsed time */ result = replaycache_add_test_and_elapsed(r, test_buffer, strlen(test_buffer), &elapsed); tt_int_op(result,OP_EQ, 1); tt_assert(elapsed >= 0); tt_assert(elapsed <= 5); /* Scrub it to exercise that entry point too */ replaycache_scrub_if_needed(r); done: if (r) replaycache_free(r); return; } #define REPLAYCACHE_LEGACY(name) \ { #name, test_replaycache_ ## name , 0, NULL, NULL } struct testcase_t replaycache_tests[] = { REPLAYCACHE_LEGACY(alloc), REPLAYCACHE_LEGACY(badalloc), REPLAYCACHE_LEGACY(free_null), REPLAYCACHE_LEGACY(miss), REPLAYCACHE_LEGACY(hit), REPLAYCACHE_LEGACY(age), REPLAYCACHE_LEGACY(elapsed), REPLAYCACHE_LEGACY(noexpire), REPLAYCACHE_LEGACY(scrub), REPLAYCACHE_LEGACY(future), REPLAYCACHE_LEGACY(realtime), END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_slow.c0000644000175000017500000000122612621363246013354 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file test_slow.c * \brief Slower unit tests for many pieces of the lower level Tor modules. **/ #include "orconfig.h" #include #ifdef HAVE_FCNTL_H #include #endif #include "or.h" #include "test.h" extern struct testcase_t slow_crypto_tests[]; extern struct testcase_t slow_util_tests[]; struct testgroup_t testgroups[] = { { "slow/crypto/", slow_crypto_tests }, { "slow/util/", slow_util_tests }, END_OF_GROUPS }; tor-0.2.7.6/src/test/test_controller.c0000644000175000017500000001102512621363246014551 00000000000000/* Copyright (c) 2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define CONTROL_PRIVATE #include "or.h" #include "control.h" #include "rendservice.h" #include "test.h" static void test_add_onion_helper_keyarg(void *arg) { crypto_pk_t *pk = NULL; crypto_pk_t *pk2 = NULL; const char *key_new_alg = NULL; char *key_new_blob = NULL; char *err_msg = NULL; char *encoded = NULL; char *arg_str = NULL; (void) arg; /* Test explicit RSA1024 key generation. */ pk = add_onion_helper_keyarg("NEW:RSA1024", 0, &key_new_alg, &key_new_blob, &err_msg); tt_assert(pk); tt_str_op(key_new_alg, OP_EQ, "RSA1024"); tt_assert(key_new_blob); tt_assert(!err_msg); /* Test "BEST" key generation (Assumes BEST = RSA1024). */ crypto_pk_free(pk); tor_free(key_new_blob); pk = add_onion_helper_keyarg("NEW:BEST", 0, &key_new_alg, &key_new_blob, &err_msg); tt_assert(pk); tt_str_op(key_new_alg, OP_EQ, "RSA1024"); tt_assert(key_new_blob); tt_assert(!err_msg); /* Test discarding the private key. */ crypto_pk_free(pk); tor_free(key_new_blob); pk = add_onion_helper_keyarg("NEW:BEST", 1, &key_new_alg, &key_new_blob, &err_msg); tt_assert(pk); tt_assert(!key_new_alg); tt_assert(!key_new_blob); tt_assert(!err_msg); /* Test generating a invalid key type. */ crypto_pk_free(pk); pk = add_onion_helper_keyarg("NEW:RSA512", 0, &key_new_alg, &key_new_blob, &err_msg); tt_assert(!pk); tt_assert(!key_new_alg); tt_assert(!key_new_blob); tt_assert(err_msg); /* Test loading a RSA1024 key. */ tor_free(err_msg); pk = pk_generate(0); tt_int_op(0, OP_EQ, crypto_pk_base64_encode(pk, &encoded)); tor_asprintf(&arg_str, "RSA1024:%s", encoded); pk2 = add_onion_helper_keyarg(arg_str, 0, &key_new_alg, &key_new_blob, &err_msg); tt_assert(pk2); tt_assert(!key_new_alg); tt_assert(!key_new_blob); tt_assert(!err_msg); tt_assert(crypto_pk_cmp_keys(pk, pk2) == 0); /* Test loading a invalid key type. */ tor_free(arg_str); crypto_pk_free(pk); pk = NULL; tor_asprintf(&arg_str, "RSA512:%s", encoded); pk = add_onion_helper_keyarg(arg_str, 0, &key_new_alg, &key_new_blob, &err_msg); tt_assert(!pk); tt_assert(!key_new_alg); tt_assert(!key_new_blob); tt_assert(err_msg); /* Test loading a invalid key. */ tor_free(arg_str); crypto_pk_free(pk); pk = NULL; tor_free(err_msg); encoded[strlen(encoded)/2] = '\0'; tor_asprintf(&arg_str, "RSA1024:%s", encoded); pk = add_onion_helper_keyarg(arg_str, 0, &key_new_alg, &key_new_blob, &err_msg); tt_assert(!pk); tt_assert(!key_new_alg); tt_assert(!key_new_blob); tt_assert(err_msg); done: crypto_pk_free(pk); crypto_pk_free(pk2); tor_free(key_new_blob); tor_free(err_msg); tor_free(encoded); tor_free(arg_str); } static void test_rend_service_parse_port_config(void *arg) { const char *sep = ","; rend_service_port_config_t *cfg = NULL; char *err_msg = NULL; (void)arg; /* Test "VIRTPORT" only. */ cfg = rend_service_parse_port_config("80", sep, &err_msg); tt_assert(cfg); tt_assert(!err_msg); /* Test "VIRTPORT,TARGET" (Target is port). */ rend_service_port_config_free(cfg); cfg = rend_service_parse_port_config("80,8080", sep, &err_msg); tt_assert(cfg); tt_assert(!err_msg); /* Test "VIRTPORT,TARGET" (Target is IPv4:port). */ rend_service_port_config_free(cfg); cfg = rend_service_parse_port_config("80,192.0.2.1:8080", sep, &err_msg); tt_assert(cfg); tt_assert(!err_msg); /* Test "VIRTPORT,TARGET" (Target is IPv6:port). */ rend_service_port_config_free(cfg); cfg = rend_service_parse_port_config("80,[2001:db8::1]:8080", sep, &err_msg); tt_assert(cfg); tt_assert(!err_msg); /* XXX: Someone should add tests for AF_UNIX targets if supported. */ /* Test empty config. */ rend_service_port_config_free(cfg); cfg = rend_service_parse_port_config("", sep, &err_msg); tt_assert(!cfg); tt_assert(err_msg); /* Test invalid port. */ tor_free(err_msg); cfg = rend_service_parse_port_config("90001", sep, &err_msg); tt_assert(!cfg); tt_assert(err_msg); done: rend_service_port_config_free(cfg); tor_free(err_msg); } struct testcase_t controller_tests[] = { { "add_onion_helper_keyarg", test_add_onion_helper_keyarg, 0, NULL, NULL }, { "rend_service_parse_port_config", test_rend_service_parse_port_config, 0, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_routerkeys.c0000644000175000017500000005267312621363246014620 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #define ROUTER_PRIVATE #include "or.h" #include "config.h" #include "router.h" #include "routerkeys.h" #include "util.h" #include "crypto.h" #include "torcert.h" #include "test.h" #ifdef _WIN32 /* For mkdir() */ #include #endif static void test_routerkeys_write_fingerprint(void *arg) { crypto_pk_t *key = pk_generate(2); or_options_t *options = get_options_mutable(); const char *ddir = get_fname("write_fingerprint"); char *cp = NULL, *cp2 = NULL; char fp[FINGERPRINT_LEN+1]; (void)arg; tt_assert(key); options->ORPort_set = 1; /* So that we can get the server ID key */ tor_free(options->DataDirectory); options->DataDirectory = tor_strdup(ddir); options->Nickname = tor_strdup("haflinger"); set_server_identity_key(key); set_client_identity_key(crypto_pk_dup_key(key)); tt_int_op(0, OP_EQ, check_private_dir(ddir, CPD_CREATE, NULL)); tt_int_op(crypto_pk_cmp_keys(get_server_identity_key(),key),OP_EQ,0); /* Write fingerprint file */ tt_int_op(0, OP_EQ, router_write_fingerprint(0)); cp = read_file_to_str(get_fname("write_fingerprint/fingerprint"), 0, NULL); crypto_pk_get_fingerprint(key, fp, 0); tor_asprintf(&cp2, "haflinger %s\n", fp); tt_str_op(cp, OP_EQ, cp2); tor_free(cp); tor_free(cp2); /* Write hashed-fingerprint file */ tt_int_op(0, OP_EQ, router_write_fingerprint(1)); cp = read_file_to_str(get_fname("write_fingerprint/hashed-fingerprint"), 0, NULL); crypto_pk_get_hashed_fingerprint(key, fp); tor_asprintf(&cp2, "haflinger %s\n", fp); tt_str_op(cp, OP_EQ, cp2); tor_free(cp); tor_free(cp2); /* Replace outdated file */ write_str_to_file(get_fname("write_fingerprint/hashed-fingerprint"), "junk goes here", 0); tt_int_op(0, OP_EQ, router_write_fingerprint(1)); cp = read_file_to_str(get_fname("write_fingerprint/hashed-fingerprint"), 0, NULL); crypto_pk_get_hashed_fingerprint(key, fp); tor_asprintf(&cp2, "haflinger %s\n", fp); tt_str_op(cp, OP_EQ, cp2); tor_free(cp); tor_free(cp2); done: crypto_pk_free(key); set_client_identity_key(NULL); tor_free(cp); tor_free(cp2); } static void test_routerkeys_ed_certs(void *args) { (void)args; ed25519_keypair_t kp1, kp2; tor_cert_t *cert[2] = {NULL, NULL}, *nocert = NULL; tor_cert_t *parsed_cert[2] = {NULL, NULL}; time_t now = 1412094534; uint8_t *junk = NULL; char *base64 = NULL; tt_int_op(0,==,ed25519_keypair_generate(&kp1, 0)); tt_int_op(0,==,ed25519_keypair_generate(&kp2, 0)); for (int i = 0; i <= 1; ++i) { uint32_t flags = i ? CERT_FLAG_INCLUDE_SIGNING_KEY : 0; cert[i] = tor_cert_create(&kp1, 5, &kp2.pubkey, now, 10000, flags); tt_assert(cert[i]); tt_assert(cert[i]->sig_bad == 0); tt_assert(cert[i]->sig_ok == 1); tt_assert(cert[i]->cert_expired == 0); tt_assert(cert[i]->cert_valid == 1); tt_int_op(cert[i]->cert_type, ==, 5); tt_mem_op(cert[i]->signed_key.pubkey, ==, &kp2.pubkey.pubkey, 32); tt_mem_op(cert[i]->signing_key.pubkey, ==, &kp1.pubkey.pubkey, 32); tt_int_op(cert[i]->signing_key_included, ==, i); tt_assert(cert[i]->encoded); tt_int_op(cert[i]->encoded_len, ==, 104 + 36 * i); tt_int_op(cert[i]->encoded[0], ==, 1); tt_int_op(cert[i]->encoded[1], ==, 5); parsed_cert[i] = tor_cert_parse(cert[i]->encoded, cert[i]->encoded_len); tt_assert(parsed_cert[i]); tt_int_op(cert[i]->encoded_len, ==, parsed_cert[i]->encoded_len); tt_mem_op(cert[i]->encoded, ==, parsed_cert[i]->encoded, cert[i]->encoded_len); tt_assert(parsed_cert[i]->sig_bad == 0); tt_assert(parsed_cert[i]->sig_ok == 0); tt_assert(parsed_cert[i]->cert_expired == 0); tt_assert(parsed_cert[i]->cert_valid == 0); /* Expired */ tt_int_op(tor_cert_checksig(parsed_cert[i], &kp1.pubkey, now + 30000), <, 0); tt_assert(parsed_cert[i]->cert_expired == 1); parsed_cert[i]->cert_expired = 0; /* Wrong key */ tt_int_op(tor_cert_checksig(parsed_cert[i], &kp2.pubkey, now), <, 0); tt_assert(parsed_cert[i]->sig_bad== 1); parsed_cert[i]->sig_bad = 0; /* Missing key */ int ok = tor_cert_checksig(parsed_cert[i], NULL, now); tt_int_op(ok < 0, ==, i == 0); tt_assert(parsed_cert[i]->sig_bad == 0); tt_assert(parsed_cert[i]->sig_ok == (i != 0)); tt_assert(parsed_cert[i]->cert_valid == (i != 0)); parsed_cert[i]->sig_bad = 0; parsed_cert[i]->sig_ok = 0; parsed_cert[i]->cert_valid = 0; /* Right key */ tt_int_op(tor_cert_checksig(parsed_cert[i], &kp1.pubkey, now), ==, 0); tt_assert(parsed_cert[i]->sig_bad == 0); tt_assert(parsed_cert[i]->sig_ok == 1); tt_assert(parsed_cert[i]->cert_expired == 0); tt_assert(parsed_cert[i]->cert_valid == 1); } /* Now try some junky certs. */ /* - Truncated */ nocert = tor_cert_parse(cert[0]->encoded, cert[0]->encoded_len-1); tt_ptr_op(NULL, ==, nocert); /* - First byte modified */ cert[0]->encoded[0] = 99; nocert = tor_cert_parse(cert[0]->encoded, cert[0]->encoded_len); tt_ptr_op(NULL, ==, nocert); cert[0]->encoded[0] = 1; /* - Extra byte at the end*/ junk = tor_malloc_zero(cert[0]->encoded_len + 1); memcpy(junk, cert[0]->encoded, cert[0]->encoded_len); nocert = tor_cert_parse(junk, cert[0]->encoded_len+1); tt_ptr_op(NULL, ==, nocert); /* - Multiple signing key instances */ tor_free(junk); junk = tor_malloc_zero(104 + 36 * 2); junk[0] = 1; /* version */ junk[1] = 5; /* cert type */ junk[6] = 1; /* key type */ junk[39] = 2; /* n_extensions */ junk[41] = 32; /* extlen */ junk[42] = 4; /* exttype */ junk[77] = 32; /* extlen */ junk[78] = 4; /* exttype */ nocert = tor_cert_parse(junk, 104 + 36 * 2); tt_ptr_op(NULL, ==, nocert); done: tor_cert_free(cert[0]); tor_cert_free(cert[1]); tor_cert_free(parsed_cert[0]); tor_cert_free(parsed_cert[1]); tor_cert_free(nocert); tor_free(junk); tor_free(base64); } static void test_routerkeys_ed_key_create(void *arg) { (void)arg; tor_cert_t *cert = NULL; ed25519_keypair_t *kp1 = NULL, *kp2 = NULL; time_t now = time(NULL); /* This is a simple alias for 'make a new keypair' */ kp1 = ed_key_new(NULL, 0, 0, 0, 0, &cert); tt_assert(kp1); /* Create a new certificate signed by kp1. */ kp2 = ed_key_new(kp1, INIT_ED_KEY_NEEDCERT, now, 3600, 4, &cert); tt_assert(kp2); tt_assert(cert); tt_mem_op(&cert->signed_key, ==, &kp2->pubkey, sizeof(ed25519_public_key_t)); tt_assert(! cert->signing_key_included); tt_int_op(cert->valid_until, >=, now); tt_int_op(cert->valid_until, <=, now+7200); /* Create a new key-including certificate signed by kp1 */ ed25519_keypair_free(kp2); tor_cert_free(cert); cert = NULL; kp2 = NULL; kp2 = ed_key_new(kp1, (INIT_ED_KEY_NEEDCERT| INIT_ED_KEY_INCLUDE_SIGNING_KEY_IN_CERT), now, 3600, 4, &cert); tt_assert(kp2); tt_assert(cert); tt_assert(cert->signing_key_included); tt_mem_op(&cert->signed_key, ==, &kp2->pubkey, sizeof(ed25519_public_key_t)); tt_mem_op(&cert->signing_key, ==, &kp1->pubkey,sizeof(ed25519_public_key_t)); done: ed25519_keypair_free(kp1); ed25519_keypair_free(kp2); tor_cert_free(cert); } static void test_routerkeys_ed_key_init_basic(void *arg) { (void) arg; tor_cert_t *cert = NULL, *cert2 = NULL; ed25519_keypair_t *kp1 = NULL, *kp2 = NULL, *kp3 = NULL; time_t now = time(NULL); char *fname1 = tor_strdup(get_fname("test_ed_key_1")); char *fname2 = tor_strdup(get_fname("test_ed_key_2")); struct stat st; unlink(fname1); unlink(fname2); /* Fail to load a key that isn't there. */ kp1 = ed_key_init_from_file(fname1, 0, LOG_INFO, NULL, now, 0, 7, &cert); tt_assert(kp1 == NULL); tt_assert(cert == NULL); /* Create the key if requested to do so. */ kp1 = ed_key_init_from_file(fname1, INIT_ED_KEY_CREATE, LOG_INFO, NULL, now, 0, 7, &cert); tt_assert(kp1 != NULL); tt_assert(cert == NULL); tt_int_op(stat(get_fname("test_ed_key_1_cert"), &st), <, 0); tt_int_op(stat(get_fname("test_ed_key_1_secret_key"), &st), ==, 0); /* Fail to load if we say we need a cert */ kp2 = ed_key_init_from_file(fname1, INIT_ED_KEY_NEEDCERT, LOG_INFO, NULL, now, 0, 7, &cert); tt_assert(kp2 == NULL); /* Fail to load if we say the wrong key type */ kp2 = ed_key_init_from_file(fname1, 0, LOG_INFO, NULL, now, 0, 6, &cert); tt_assert(kp2 == NULL); /* Load successfully if we're not picky, whether we say "create" or not. */ kp2 = ed_key_init_from_file(fname1, INIT_ED_KEY_CREATE, LOG_INFO, NULL, now, 0, 7, &cert); tt_assert(kp2 != NULL); tt_assert(cert == NULL); tt_mem_op(kp1, ==, kp2, sizeof(*kp1)); ed25519_keypair_free(kp2); kp2 = NULL; kp2 = ed_key_init_from_file(fname1, 0, LOG_INFO, NULL, now, 0, 7, &cert); tt_assert(kp2 != NULL); tt_assert(cert == NULL); tt_mem_op(kp1, ==, kp2, sizeof(*kp1)); ed25519_keypair_free(kp2); kp2 = NULL; /* Now create a key with a cert. */ kp2 = ed_key_init_from_file(fname2, (INIT_ED_KEY_CREATE| INIT_ED_KEY_NEEDCERT), LOG_INFO, kp1, now, 7200, 7, &cert); tt_assert(kp2 != NULL); tt_assert(cert != NULL); tt_mem_op(kp1, !=, kp2, sizeof(*kp1)); tt_int_op(stat(get_fname("test_ed_key_2_cert"), &st), ==, 0); tt_int_op(stat(get_fname("test_ed_key_2_secret_key"), &st), ==, 0); tt_assert(cert->cert_valid == 1); tt_mem_op(&cert->signed_key, ==, &kp2->pubkey, 32); /* Now verify we can load the cert... */ kp3 = ed_key_init_from_file(fname2, (INIT_ED_KEY_CREATE| INIT_ED_KEY_NEEDCERT), LOG_INFO, kp1, now, 7200, 7, &cert2); tt_mem_op(kp2, ==, kp3, sizeof(*kp2)); tt_mem_op(cert2->encoded, ==, cert->encoded, cert->encoded_len); ed25519_keypair_free(kp3); kp3 = NULL; tor_cert_free(cert2); cert2 = NULL; /* ... even without create... */ kp3 = ed_key_init_from_file(fname2, INIT_ED_KEY_NEEDCERT, LOG_INFO, kp1, now, 7200, 7, &cert2); tt_mem_op(kp2, ==, kp3, sizeof(*kp2)); tt_mem_op(cert2->encoded, ==, cert->encoded, cert->encoded_len); ed25519_keypair_free(kp3); kp3 = NULL; tor_cert_free(cert2); cert2 = NULL; /* ... but that we don't crash or anything if we say we don't want it. */ kp3 = ed_key_init_from_file(fname2, INIT_ED_KEY_NEEDCERT, LOG_INFO, kp1, now, 7200, 7, NULL); tt_mem_op(kp2, ==, kp3, sizeof(*kp2)); ed25519_keypair_free(kp3); kp3 = NULL; /* Fail if we're told the wrong signing key */ kp3 = ed_key_init_from_file(fname2, INIT_ED_KEY_NEEDCERT, LOG_INFO, kp2, now, 7200, 7, &cert2); tt_assert(kp3 == NULL); tt_assert(cert2 == NULL); done: ed25519_keypair_free(kp1); ed25519_keypair_free(kp2); ed25519_keypair_free(kp3); tor_cert_free(cert); tor_cert_free(cert2); tor_free(fname1); tor_free(fname2); } static void test_routerkeys_ed_key_init_split(void *arg) { (void) arg; tor_cert_t *cert = NULL; ed25519_keypair_t *kp1 = NULL, *kp2 = NULL; time_t now = time(NULL); char *fname1 = tor_strdup(get_fname("test_ed_key_3")); char *fname2 = tor_strdup(get_fname("test_ed_key_4")); struct stat st; const uint32_t flags = INIT_ED_KEY_SPLIT|INIT_ED_KEY_MISSING_SECRET_OK; unlink(fname1); unlink(fname2); /* Can't load key that isn't there. */ kp1 = ed_key_init_from_file(fname1, flags, LOG_INFO, NULL, now, 0, 7, &cert); tt_assert(kp1 == NULL); tt_assert(cert == NULL); /* Create a split key */ kp1 = ed_key_init_from_file(fname1, flags|INIT_ED_KEY_CREATE, LOG_INFO, NULL, now, 0, 7, &cert); tt_assert(kp1 != NULL); tt_assert(cert == NULL); tt_int_op(stat(get_fname("test_ed_key_3_cert"), &st), <, 0); tt_int_op(stat(get_fname("test_ed_key_3_secret_key"), &st), ==, 0); tt_int_op(stat(get_fname("test_ed_key_3_public_key"), &st), ==, 0); /* Load it. */ kp2 = ed_key_init_from_file(fname1, flags|INIT_ED_KEY_CREATE, LOG_INFO, NULL, now, 0, 7, &cert); tt_assert(kp2 != NULL); tt_assert(cert == NULL); tt_mem_op(kp1, ==, kp2, sizeof(*kp2)); ed25519_keypair_free(kp2); kp2 = NULL; /* Okay, try killing the secret key and loading it. */ unlink(get_fname("test_ed_key_3_secret_key")); kp2 = ed_key_init_from_file(fname1, flags, LOG_INFO, NULL, now, 0, 7, &cert); tt_assert(kp2 != NULL); tt_assert(cert == NULL); tt_mem_op(&kp1->pubkey, ==, &kp2->pubkey, sizeof(kp2->pubkey)); tt_assert(tor_mem_is_zero((char*)kp2->seckey.seckey, sizeof(kp2->seckey.seckey))); ed25519_keypair_free(kp2); kp2 = NULL; /* Even when we're told to "create", don't create if there's a public key */ kp2 = ed_key_init_from_file(fname1, flags|INIT_ED_KEY_CREATE, LOG_INFO, NULL, now, 0, 7, &cert); tt_assert(kp2 != NULL); tt_assert(cert == NULL); tt_mem_op(&kp1->pubkey, ==, &kp2->pubkey, sizeof(kp2->pubkey)); tt_assert(tor_mem_is_zero((char*)kp2->seckey.seckey, sizeof(kp2->seckey.seckey))); ed25519_keypair_free(kp2); kp2 = NULL; /* Make sure we fail on a tag mismatch, though */ kp2 = ed_key_init_from_file(fname1, flags, LOG_INFO, NULL, now, 0, 99, &cert); tt_assert(kp2 == NULL); done: ed25519_keypair_free(kp1); ed25519_keypair_free(kp2); tor_cert_free(cert); tor_free(fname1); tor_free(fname2); } static void test_routerkeys_ed_keys_init_all(void *arg) { (void)arg; char *dir = tor_strdup(get_fname("test_ed_keys_init_all")); or_options_t *options = tor_malloc_zero(sizeof(or_options_t)); time_t now = time(NULL); ed25519_public_key_t id; ed25519_keypair_t sign, auth; tor_cert_t *link_cert = NULL; get_options_mutable()->ORPort_set = 1; crypto_pk_t *rsa = pk_generate(0); set_server_identity_key(rsa); set_client_identity_key(rsa); router_initialize_tls_context(); options->SigningKeyLifetime = 30*86400; options->TestingAuthKeyLifetime = 2*86400; options->TestingLinkCertLifetime = 2*86400; options->TestingSigningKeySlop = 2*86400; options->TestingAuthKeySlop = 2*3600; options->TestingLinkKeySlop = 2*3600; #ifdef _WIN32 mkdir(dir); mkdir(get_fname("test_ed_keys_init_all/keys")); #else mkdir(dir, 0700); mkdir(get_fname("test_ed_keys_init_all/keys"), 0700); #endif options->DataDirectory = dir; tt_int_op(0, ==, load_ed_keys(options, now)); tt_int_op(0, ==, generate_ed_link_cert(options, now)); tt_assert(get_master_identity_key()); tt_assert(get_master_identity_key()); tt_assert(get_master_signing_keypair()); tt_assert(get_current_auth_keypair()); tt_assert(get_master_signing_key_cert()); tt_assert(get_current_link_cert_cert()); tt_assert(get_current_auth_key_cert()); memcpy(&id, get_master_identity_key(), sizeof(id)); memcpy(&sign, get_master_signing_keypair(), sizeof(sign)); memcpy(&auth, get_current_auth_keypair(), sizeof(auth)); link_cert = tor_cert_dup(get_current_link_cert_cert()); /* Call load_ed_keys again, but nothing has changed. */ tt_int_op(0, ==, load_ed_keys(options, now)); tt_int_op(0, ==, generate_ed_link_cert(options, now)); tt_mem_op(&id, ==, get_master_identity_key(), sizeof(id)); tt_mem_op(&sign, ==, get_master_signing_keypair(), sizeof(sign)); tt_mem_op(&auth, ==, get_current_auth_keypair(), sizeof(auth)); tt_assert(tor_cert_eq(link_cert, get_current_link_cert_cert())); /* Force a reload: we make new link/auth keys. */ routerkeys_free_all(); tt_int_op(0, ==, load_ed_keys(options, now)); tt_int_op(0, ==, generate_ed_link_cert(options, now)); tt_mem_op(&id, ==, get_master_identity_key(), sizeof(id)); tt_mem_op(&sign, ==, get_master_signing_keypair(), sizeof(sign)); tt_assert(tor_cert_eq(link_cert, get_current_link_cert_cert())); tt_mem_op(&auth, !=, get_current_auth_keypair(), sizeof(auth)); tt_assert(get_master_signing_key_cert()); tt_assert(get_current_link_cert_cert()); tt_assert(get_current_auth_key_cert()); tor_cert_free(link_cert); link_cert = tor_cert_dup(get_current_link_cert_cert()); memcpy(&auth, get_current_auth_keypair(), sizeof(auth)); /* Force a link/auth-key regeneration by advancing time. */ tt_int_op(0, ==, load_ed_keys(options, now+3*86400)); tt_int_op(0, ==, generate_ed_link_cert(options, now+3*86400)); tt_mem_op(&id, ==, get_master_identity_key(), sizeof(id)); tt_mem_op(&sign, ==, get_master_signing_keypair(), sizeof(sign)); tt_assert(! tor_cert_eq(link_cert, get_current_link_cert_cert())); tt_mem_op(&auth, !=, get_current_auth_keypair(), sizeof(auth)); tt_assert(get_master_signing_key_cert()); tt_assert(get_current_link_cert_cert()); tt_assert(get_current_auth_key_cert()); tor_cert_free(link_cert); link_cert = tor_cert_dup(get_current_link_cert_cert()); memcpy(&auth, get_current_auth_keypair(), sizeof(auth)); /* Force a signing-key regeneration by advancing time. */ tt_int_op(0, ==, load_ed_keys(options, now+100*86400)); tt_int_op(0, ==, generate_ed_link_cert(options, now+100*86400)); tt_mem_op(&id, ==, get_master_identity_key(), sizeof(id)); tt_mem_op(&sign, !=, get_master_signing_keypair(), sizeof(sign)); tt_assert(! tor_cert_eq(link_cert, get_current_link_cert_cert())); tt_mem_op(&auth, !=, get_current_auth_keypair(), sizeof(auth)); tt_assert(get_master_signing_key_cert()); tt_assert(get_current_link_cert_cert()); tt_assert(get_current_auth_key_cert()); memcpy(&sign, get_master_signing_keypair(), sizeof(sign)); tor_cert_free(link_cert); link_cert = tor_cert_dup(get_current_link_cert_cert()); memcpy(&auth, get_current_auth_keypair(), sizeof(auth)); /* Demonstrate that we can start up with no secret identity key */ routerkeys_free_all(); unlink(get_fname("test_ed_keys_init_all/keys/" "ed25519_master_id_secret_key")); tt_int_op(0, ==, load_ed_keys(options, now)); tt_int_op(0, ==, generate_ed_link_cert(options, now)); tt_mem_op(&id, ==, get_master_identity_key(), sizeof(id)); tt_mem_op(&sign, ==, get_master_signing_keypair(), sizeof(sign)); tt_assert(! tor_cert_eq(link_cert, get_current_link_cert_cert())); tt_mem_op(&auth, !=, get_current_auth_keypair(), sizeof(auth)); tt_assert(get_master_signing_key_cert()); tt_assert(get_current_link_cert_cert()); tt_assert(get_current_auth_key_cert()); /* But we're in trouble if we have no id key and our signing key has expired. */ log_global_min_severity_ = LOG_ERR; /* Suppress warnings. * XXX (better way to do this)? */ routerkeys_free_all(); tt_int_op(-1, ==, load_ed_keys(options, now+200*86400)); done: tor_free(dir); tor_free(options); tor_cert_free(link_cert); routerkeys_free_all(); } static void test_routerkeys_cross_certify_ntor(void *args) { (void) args; tor_cert_t *cert = NULL; curve25519_keypair_t onion_keys; ed25519_public_key_t master_key; ed25519_public_key_t onion_check_key; time_t now = time(NULL); int sign; tt_int_op(0, ==, ed25519_public_from_base64(&master_key, "IamwritingthesetestsOnARainyAfternoonin2014")); tt_int_op(0, ==, curve25519_keypair_generate(&onion_keys, 0)); cert = make_ntor_onion_key_crosscert(&onion_keys, &master_key, now, 10000, &sign); tt_assert(cert); tt_assert(sign == 0 || sign == 1); tt_int_op(cert->cert_type, ==, CERT_TYPE_ONION_ID); tt_int_op(1, ==, ed25519_pubkey_eq(&cert->signed_key, &master_key)); tt_int_op(0, ==, ed25519_public_key_from_curve25519_public_key( &onion_check_key, &onion_keys.pubkey, sign)); tt_int_op(0, ==, tor_cert_checksig(cert, &onion_check_key, now)); done: tor_cert_free(cert); } static void test_routerkeys_cross_certify_tap(void *args) { (void)args; uint8_t *cc = NULL; int cc_len; ed25519_public_key_t master_key; crypto_pk_t *onion_key = pk_generate(2), *id_key = pk_generate(1); char digest[20]; char buf[128]; int n; tt_int_op(0, ==, ed25519_public_from_base64(&master_key, "IAlreadyWroteTestsForRouterdescsUsingTheseX")); cc = make_tap_onion_key_crosscert(onion_key, &master_key, id_key, &cc_len); tt_assert(cc); tt_assert(cc_len); n = crypto_pk_public_checksig(onion_key, buf, sizeof(buf), (char*)cc, cc_len); tt_int_op(n,>,0); tt_int_op(n,==,52); crypto_pk_get_digest(id_key, digest); tt_mem_op(buf,==,digest,20); tt_mem_op(buf+20,==,master_key.pubkey,32); tt_int_op(0, ==, check_tap_onion_key_crosscert(cc, cc_len, onion_key, &master_key, (uint8_t*)digest)); done: tor_free(cc); crypto_pk_free(id_key); crypto_pk_free(onion_key); } #define TEST(name, flags) \ { #name , test_routerkeys_ ## name, (flags), NULL, NULL } struct testcase_t routerkeys_tests[] = { TEST(write_fingerprint, TT_FORK), TEST(ed_certs, TT_FORK), TEST(ed_key_create, TT_FORK), TEST(ed_key_init_basic, TT_FORK), TEST(ed_key_init_split, TT_FORK), TEST(ed_keys_init_all, TT_FORK), TEST(cross_certify_ntor, 0), TEST(cross_certify_tap, 0), END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_keypin.c0000644000175000017500000002300612621363246013667 00000000000000/* Copyright (c) 2014, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #define KEYPIN_PRIVATE #include "or.h" #include "keypin.h" #include "util.h" #include "test.h" static void test_keypin_parse_line(void *arg) { (void)arg; keypin_ent_t *ent = NULL; /* Good line */ ent = keypin_parse_journal_line( "aGVyZSBpcyBhIGdvb2Qgc2hhMSE " "VGhpcyBlZDI1NTE5IHNjb2ZmcyBhdCB0aGUgc2hhMS4"); tt_assert(ent); tt_mem_op(ent->rsa_id, ==, "here is a good sha1!", 20); tt_mem_op(ent->ed25519_key, ==, "This ed25519 scoffs at the sha1.", 32); tor_free(ent); ent = NULL; /* Good line with extra stuff we will ignore. */ ent = keypin_parse_journal_line( "aGVyZSBpcyBhIGdvb2Qgc2hhMSE " "VGhpcyBlZDI1NTE5IHNjb2ZmcyBhdCB0aGUgc2hhMS4helloworld"); tt_assert(ent); tt_mem_op(ent->rsa_id, ==, "here is a good sha1!", 20); tt_mem_op(ent->ed25519_key, ==, "This ed25519 scoffs at the sha1.", 32); tor_free(ent); ent = NULL; /* Bad line: no space in the middle. */ ent = keypin_parse_journal_line( "aGVyZSBpcyBhIGdvb2Qgc2hhMSE?" "VGhpcyBlZDI1NTE5IHNjb2ZmcyBhdCB0aGUgc2hhMS4"); tt_assert(! ent); /* Bad line: bad base64 in RSA ID */ ent = keypin_parse_journal_line( "aGVyZSBpcyBhIGdv!2Qgc2hhMSE " "VGhpcyBlZDI1NTE5IHNjb2ZmcyBhdCB0aGUgc2hhMS4"); tt_assert(! ent); /* Bad line: bad base64 in Ed25519 */ ent = keypin_parse_journal_line( "aGVyZSBpcyBhIGdvb2Qgc2hhMSE " "VGhpcyBlZDI1NTE5IHNjb2ZmcyB!dCB0aGUgc2hhMS4"); tt_assert(! ent); done: tor_free(ent); } static smartlist_t *mock_addent_got = NULL; static void mock_addent(keypin_ent_t *ent) { smartlist_add(mock_addent_got, ent); keypin_add_entry_to_map__real(ent); } static void test_keypin_parse_file(void *arg) { (void)arg; mock_addent_got = smartlist_new(); MOCK(keypin_add_entry_to_map, mock_addent); /* Simple, minimal, correct example. */ const char data1[] = "PT09PT09PT09PT09PT09PT09PT0 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0\n" "TG9yYXggaXBzdW0gZ3J1dnZ1bHU cyB0aG5lZWQgYW1ldCwgc25lcmdlbGx5IG9uY2UtbGU\n" "ciBsZXJraW0sIHNlZCBkbyBiYXI YmFsb290IHRlbXBvciBnbHVwcGl0dXMgdXQgbGFib3I\n" "ZSBldCB0cnVmZnVsYSBtYWduYSA YWxpcXVhLiBVdCBlbmltIGFkIGdyaWNrbGUtZ3Jhc3M\n" "dmVuaWFtLCBxdWlzIG1pZmYtbXU ZmZlcmVkIGdhLXp1bXBjbyBsYWJvcmlzIG5pc2kgdXQ\n" "Y3J1ZmZ1bHVzIGV4IGVhIHNjaGw b3BwaXR5IGNvbnNlcXVhdC4gRHVpcyBhdXRlIHNuYXI\n" "Z2dsZSBpbiBzd29tZWVzd2FucyA aW4gdm9sdXB0YXRlIGF4ZS1oYWNrZXIgZXNzZSByaXA\n" "cHVsdXMgY3J1bW1paSBldSBtb28 ZiBudWxsYSBzbnV2di5QTFVHSFBMT1ZFUlhZWlpZLi4\n"; tt_int_op(0, ==, keypin_load_journal_impl(data1, strlen(data1))); tt_int_op(8, ==, smartlist_len(mock_addent_got)); keypin_ent_t *ent = smartlist_get(mock_addent_got, 2); tt_mem_op(ent->rsa_id, ==, "r lerkim, sed do bar", 20); tt_mem_op(ent->ed25519_key, ==, "baloot tempor gluppitus ut labor", 32); /* More complex example: weird lines, bogus lines, duplicate/conflicting lines */ const char data2[] = "PT09PT09PT09PT09PT09PT09PT0 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0\n" "# This is a comment.\n" " \n" "QXQgdGhlIGVuZCBvZiB0aGUgeWU YXIgS3VycmVta2FybWVycnVrIHNhaWQgdG8gaGltLCA\n" "IllvdSBoYXZlIG1hZGUgYSBnb28 ZCBiZWdpbm5pbmcuIiBCdXQgbm8gbW9yZS4gV2l6YXI\n" "\n" "ZHMgc3BlYWsgdHJ1dGgsIGFuZCA aXQgd2FzIHRydWUgdGhhdCBhbGwgdGhlIG1hc3Rlcgo\n" "@reserved for a future extension \n" "eSBvZiBOYW1lcyB0aGF0IEdlZCA aGFkIHRvaWxlZCbyB3aW4gdGhhdCB5ZWFyIHdhcyA\n" "eSBvZiBOYW1lcyB0aGF0IEdlZCA aGFkIHRvaWxlZCbyB3aW4gdGhhdCB5ZWFyIHdhcy" "A line too long\n" "dGhlIG1lcmUgc3RhcnQgb2Ygd2g YXQgaGUgbXVzdCBnbyBvb!BsZWFybmluZy4uLi4uLi4\n" "ZHMgc3BlYWsgdaJ1dGgsIGFuZCA aXQgd2FzIHRydWUgdGhhdCBhbGwgdGhlIG1hc3Rlcgo\n" "ZHMgc3BlYWsgdHJ1dGgsIGFuZCA aXQgd2FzIHRydaUgdGhhdCBhbGwgdGhlIG1hc3Rlcgo\n" ; tt_int_op(0, ==, keypin_load_journal_impl(data2, strlen(data2))); tt_int_op(13, ==, smartlist_len(mock_addent_got)); ent = smartlist_get(mock_addent_got, 9); tt_mem_op(ent->rsa_id, ==, "\"You have made a goo", 20); tt_mem_op(ent->ed25519_key, ==, "d beginning.\" But no more. Wizar", 32); ent = smartlist_get(mock_addent_got, 12); tt_mem_op(ent->rsa_id, ==, "ds speak truth, and ", 20); tt_mem_op(ent->ed25519_key, ==, "it was tru\xa5 that all the master\n", 32); /* File truncated before NL */ const char data3[] = "Tm8gZHJhZ29uIGNhbiByZXNpc3Q IHRoZSBmYXNjaW5hdGlvbiBvZiByaWRkbGluZyB0YWw"; tt_int_op(0, ==, keypin_load_journal_impl(data3, strlen(data3))); tt_int_op(14, ==, smartlist_len(mock_addent_got)); ent = smartlist_get(mock_addent_got, 13); tt_mem_op(ent->rsa_id, ==, "No dragon can resist", 20); tt_mem_op(ent->ed25519_key, ==, " the fascination of riddling tal", 32); done: keypin_clear(); smartlist_free(mock_addent_got); } #define ADD(a,b) keypin_check_and_add((const uint8_t*)(a),\ (const uint8_t*)(b),0) #define LONE_RSA(a) keypin_check_lone_rsa((const uint8_t*)(a)) static void test_keypin_add_entry(void *arg) { (void)arg; keypin_clear(); tt_int_op(KEYPIN_ADDED, ==, ADD("ambassadors-at-large", "bread-and-butter thing-in-itself")); tt_int_op(KEYPIN_ADDED, ==, ADD("gentleman-adventurer", "cloak-and-dagger what's-his-face")); tt_int_op(KEYPIN_FOUND, ==, ADD("ambassadors-at-large", "bread-and-butter thing-in-itself")); tt_int_op(KEYPIN_FOUND, ==, ADD("ambassadors-at-large", "bread-and-butter thing-in-itself")); tt_int_op(KEYPIN_FOUND, ==, ADD("gentleman-adventurer", "cloak-and-dagger what's-his-face")); tt_int_op(KEYPIN_ADDED, ==, ADD("Johnnies-come-lately", "run-of-the-mill root-mean-square")); tt_int_op(KEYPIN_MISMATCH, ==, ADD("gentleman-adventurer", "hypersentimental closefistedness")); tt_int_op(KEYPIN_MISMATCH, ==, ADD("disestablismentarian", "cloak-and-dagger what's-his-face")); tt_int_op(KEYPIN_FOUND, ==, ADD("gentleman-adventurer", "cloak-and-dagger what's-his-face")); tt_int_op(KEYPIN_NOT_FOUND, ==, LONE_RSA("Llanfairpwllgwyngyll")); tt_int_op(KEYPIN_MISMATCH, ==, LONE_RSA("Johnnies-come-lately")); done: keypin_clear(); } static void test_keypin_journal(void *arg) { (void)arg; char *contents = NULL; const char *fname = get_fname("keypin-journal"); tt_int_op(0, ==, keypin_load_journal(fname)); /* ENOENT is okay */ update_approx_time(1217709000); tt_int_op(0, ==, keypin_open_journal(fname)); tt_int_op(KEYPIN_ADDED, ==, ADD("king-of-the-herrings", "good-for-nothing attorney-at-law")); tt_int_op(KEYPIN_ADDED, ==, ADD("yellowish-red-yellow", "salt-and-pepper high-muck-a-muck")); tt_int_op(KEYPIN_FOUND, ==, ADD("yellowish-red-yellow", "salt-and-pepper high-muck-a-muck")); keypin_close_journal(); keypin_clear(); tt_int_op(0, ==, keypin_load_journal(fname)); update_approx_time(1231041600); tt_int_op(0, ==, keypin_open_journal(fname)); tt_int_op(KEYPIN_FOUND, ==, ADD("yellowish-red-yellow", "salt-and-pepper high-muck-a-muck")); tt_int_op(KEYPIN_ADDED, ==, ADD("theatre-in-the-round", "holier-than-thou jack-in-the-box")); tt_int_op(KEYPIN_ADDED, ==, ADD("no-deposit-no-return", "across-the-board will-o-the-wisp")); tt_int_op(KEYPIN_MISMATCH, ==, ADD("intellectualizations", "salt-and-pepper high-muck-a-muck")); keypin_close_journal(); keypin_clear(); tt_int_op(0, ==, keypin_load_journal(fname)); update_approx_time(1412278354); tt_int_op(0, ==, keypin_open_journal(fname)); tt_int_op(KEYPIN_FOUND, ==, ADD("yellowish-red-yellow", "salt-and-pepper high-muck-a-muck")); tt_int_op(KEYPIN_MISMATCH, ==, ADD("intellectualizations", "salt-and-pepper high-muck-a-muck")); tt_int_op(KEYPIN_FOUND, ==, ADD("theatre-in-the-round", "holier-than-thou jack-in-the-box")); tt_int_op(KEYPIN_MISMATCH, ==, ADD("counterrevolutionary", "holier-than-thou jack-in-the-box")); tt_int_op(KEYPIN_MISMATCH, ==, ADD("no-deposit-no-return", "floccinaucinihilipilificationism")); keypin_close_journal(); contents = read_file_to_str(fname, RFTS_BIN, NULL); tt_assert(contents); tt_str_op(contents,==, "\n" "@opened-at 2008-08-02 20:30:00\n" "a2luZy1vZi10aGUtaGVycmluZ3M Z29vZC1mb3Itbm90aGluZyBhdHRvcm5leS1hdC1sYXc\n" "eWVsbG93aXNoLXJlZC15ZWxsb3c c2FsdC1hbmQtcGVwcGVyIGhpZ2gtbXVjay1hLW11Y2s\n" "\n" "@opened-at 2009-01-04 04:00:00\n" "dGhlYXRyZS1pbi10aGUtcm91bmQ aG9saWVyLXRoYW4tdGhvdSBqYWNrLWluLXRoZS1ib3g\n" "bm8tZGVwb3NpdC1uby1yZXR1cm4 YWNyb3NzLXRoZS1ib2FyZCB3aWxsLW8tdGhlLXdpc3A\n" "\n" "@opened-at 2014-10-02 19:32:34\n"); done: tor_free(contents); keypin_clear(); } #undef ADD #undef LONE_RSA #define TEST(name, flags) \ { #name , test_keypin_ ## name, (flags), NULL, NULL } struct testcase_t keypin_tests[] = { TEST( parse_line, 0 ), TEST( parse_file, TT_FORK ), TEST( add_entry, TT_FORK ), TEST( journal, TT_FORK ), END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_pt.c0000644000175000017500000004134712621363246013023 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #define PT_PRIVATE #define UTIL_PRIVATE #define STATEFILE_PRIVATE #define CONTROL_PRIVATE #include "or.h" #include "config.h" #include "confparse.h" #include "control.h" #include "transports.h" #include "circuitbuild.h" #include "util.h" #include "statefile.h" #include "test.h" static void reset_mp(managed_proxy_t *mp) { mp->conf_state = PT_PROTO_LAUNCHED; SMARTLIST_FOREACH(mp->transports, transport_t *, t, transport_free(t)); smartlist_clear(mp->transports); } static void test_pt_parsing(void *arg) { char line[200]; transport_t *transport = NULL; tor_addr_t test_addr; managed_proxy_t *mp = tor_malloc_zero(sizeof(managed_proxy_t)); (void)arg; mp->conf_state = PT_PROTO_INFANT; mp->transports = smartlist_new(); /* incomplete cmethod */ strlcpy(line,"CMETHOD trebuchet",sizeof(line)); tt_assert(parse_cmethod_line(line, mp) < 0); reset_mp(mp); /* wrong proxy type */ strlcpy(line,"CMETHOD trebuchet dog 127.0.0.1:1999",sizeof(line)); tt_assert(parse_cmethod_line(line, mp) < 0); reset_mp(mp); /* wrong addrport */ strlcpy(line,"CMETHOD trebuchet socks4 abcd",sizeof(line)); tt_assert(parse_cmethod_line(line, mp) < 0); reset_mp(mp); /* correct line */ strlcpy(line,"CMETHOD trebuchet socks5 127.0.0.1:1999",sizeof(line)); tt_assert(parse_cmethod_line(line, mp) == 0); tt_assert(smartlist_len(mp->transports) == 1); transport = smartlist_get(mp->transports, 0); /* test registered address of transport */ tor_addr_parse(&test_addr, "127.0.0.1"); tt_assert(tor_addr_eq(&test_addr, &transport->addr)); /* test registered port of transport */ tt_assert(transport->port == 1999); /* test registered SOCKS version of transport */ tt_assert(transport->socks_version == PROXY_SOCKS5); /* test registered name of transport */ tt_str_op(transport->name,OP_EQ, "trebuchet"); reset_mp(mp); /* incomplete smethod */ strlcpy(line,"SMETHOD trebuchet",sizeof(line)); tt_assert(parse_smethod_line(line, mp) < 0); reset_mp(mp); /* wrong addr type */ strlcpy(line,"SMETHOD trebuchet abcd",sizeof(line)); tt_assert(parse_smethod_line(line, mp) < 0); reset_mp(mp); /* cowwect */ strlcpy(line,"SMETHOD trebuchy 127.0.0.2:2999",sizeof(line)); tt_assert(parse_smethod_line(line, mp) == 0); tt_assert(smartlist_len(mp->transports) == 1); transport = smartlist_get(mp->transports, 0); /* test registered address of transport */ tor_addr_parse(&test_addr, "127.0.0.2"); tt_assert(tor_addr_eq(&test_addr, &transport->addr)); /* test registered port of transport */ tt_assert(transport->port == 2999); /* test registered name of transport */ tt_str_op(transport->name,OP_EQ, "trebuchy"); reset_mp(mp); /* Include some arguments. Good ones. */ strlcpy(line,"SMETHOD trebuchet 127.0.0.1:9999 " "ARGS:counterweight=3,sling=snappy", sizeof(line)); tt_assert(parse_smethod_line(line, mp) == 0); tt_int_op(1, OP_EQ, smartlist_len(mp->transports)); { const transport_t *transport = smartlist_get(mp->transports, 0); tt_assert(transport); tt_str_op(transport->name, OP_EQ, "trebuchet"); tt_int_op(transport->port, OP_EQ, 9999); tt_str_op(fmt_addr(&transport->addr), OP_EQ, "127.0.0.1"); tt_str_op(transport->extra_info_args, OP_EQ, "counterweight=3,sling=snappy"); } reset_mp(mp); /* unsupported version */ strlcpy(line,"VERSION 666",sizeof(line)); tt_assert(parse_version(line, mp) < 0); /* incomplete VERSION */ strlcpy(line,"VERSION ",sizeof(line)); tt_assert(parse_version(line, mp) < 0); /* correct VERSION */ strlcpy(line,"VERSION 1",sizeof(line)); tt_assert(parse_version(line, mp) == 0); done: reset_mp(mp); smartlist_free(mp->transports); tor_free(mp); } static void test_pt_get_transport_options(void *arg) { char **execve_args; smartlist_t *transport_list = smartlist_new(); managed_proxy_t *mp; or_options_t *options = get_options_mutable(); char *opt_str = NULL; config_line_t *cl = NULL; (void)arg; execve_args = tor_malloc(sizeof(char*)*2); execve_args[0] = tor_strdup("cheeseshop"); execve_args[1] = NULL; mp = managed_proxy_create(transport_list, execve_args, 1); tt_ptr_op(mp, OP_NE, NULL); opt_str = get_transport_options_for_server_proxy(mp); tt_ptr_op(opt_str, OP_EQ, NULL); smartlist_add(mp->transports_to_launch, tor_strdup("gruyere")); smartlist_add(mp->transports_to_launch, tor_strdup("roquefort")); smartlist_add(mp->transports_to_launch, tor_strdup("stnectaire")); tt_assert(options); cl = tor_malloc_zero(sizeof(config_line_t)); cl->value = tor_strdup("gruyere melty=10 hardness=se;ven"); options->ServerTransportOptions = cl; cl = tor_malloc_zero(sizeof(config_line_t)); cl->value = tor_strdup("stnectaire melty=4 hardness=three"); cl->next = options->ServerTransportOptions; options->ServerTransportOptions = cl; cl = tor_malloc_zero(sizeof(config_line_t)); cl->value = tor_strdup("pepperjack melty=12 hardness=five"); cl->next = options->ServerTransportOptions; options->ServerTransportOptions = cl; opt_str = get_transport_options_for_server_proxy(mp); tt_str_op(opt_str, OP_EQ, "gruyere:melty=10;gruyere:hardness=se\\;ven;" "stnectaire:melty=4;stnectaire:hardness=three"); done: tor_free(opt_str); config_free_lines(cl); managed_proxy_destroy(mp, 0); smartlist_free(transport_list); } static void test_pt_protocol(void *arg) { char line[200]; managed_proxy_t *mp = tor_malloc_zero(sizeof(managed_proxy_t)); (void)arg; mp->conf_state = PT_PROTO_LAUNCHED; mp->transports = smartlist_new(); mp->argv = tor_calloc(2, sizeof(char *)); mp->argv[0] = tor_strdup(""); /* various wrong protocol runs: */ strlcpy(line,"VERSION 1",sizeof(line)); handle_proxy_line(line, mp); tt_assert(mp->conf_state == PT_PROTO_ACCEPTING_METHODS); strlcpy(line,"VERSION 1",sizeof(line)); handle_proxy_line(line, mp); tt_assert(mp->conf_state == PT_PROTO_BROKEN); reset_mp(mp); strlcpy(line,"CMETHOD trebuchet socks5 127.0.0.1:1999",sizeof(line)); handle_proxy_line(line, mp); tt_assert(mp->conf_state == PT_PROTO_BROKEN); reset_mp(mp); /* correct protocol run: */ strlcpy(line,"VERSION 1",sizeof(line)); handle_proxy_line(line, mp); tt_assert(mp->conf_state == PT_PROTO_ACCEPTING_METHODS); strlcpy(line,"CMETHOD trebuchet socks5 127.0.0.1:1999",sizeof(line)); handle_proxy_line(line, mp); tt_assert(mp->conf_state == PT_PROTO_ACCEPTING_METHODS); strlcpy(line,"CMETHODS DONE",sizeof(line)); handle_proxy_line(line, mp); tt_assert(mp->conf_state == PT_PROTO_CONFIGURED); done: reset_mp(mp); smartlist_free(mp->transports); tor_free(mp->argv[0]); tor_free(mp->argv); tor_free(mp); } static void test_pt_get_extrainfo_string(void *arg) { managed_proxy_t *mp1 = NULL, *mp2 = NULL; char **argv1, **argv2; smartlist_t *t1 = smartlist_new(), *t2 = smartlist_new(); int r; char *s = NULL; (void) arg; argv1 = tor_malloc_zero(sizeof(char*)*3); argv1[0] = tor_strdup("ewige"); argv1[1] = tor_strdup("Blumenkraft"); argv1[2] = NULL; argv2 = tor_malloc_zero(sizeof(char*)*4); argv2[0] = tor_strdup("und"); argv2[1] = tor_strdup("ewige"); argv2[2] = tor_strdup("Schlangenkraft"); argv2[3] = NULL; mp1 = managed_proxy_create(t1, argv1, 1); mp2 = managed_proxy_create(t2, argv2, 1); r = parse_smethod_line("SMETHOD hagbard 127.0.0.1:5555", mp1); tt_int_op(r, OP_EQ, 0); r = parse_smethod_line("SMETHOD celine 127.0.0.1:1723 ARGS:card=no-enemy", mp2); tt_int_op(r, OP_EQ, 0); /* Force these proxies to look "completed" or they won't generate output. */ mp1->conf_state = mp2->conf_state = PT_PROTO_COMPLETED; s = pt_get_extra_info_descriptor_string(); tt_assert(s); tt_str_op(s, OP_EQ, "transport hagbard 127.0.0.1:5555\n" "transport celine 127.0.0.1:1723 card=no-enemy\n"); done: /* XXXX clean up better */ smartlist_free(t1); smartlist_free(t2); tor_free(s); } #ifdef _WIN32 #define STDIN_HANDLE HANDLE #else #define STDIN_HANDLE FILE #endif static smartlist_t * tor_get_lines_from_handle_replacement(STDIN_HANDLE *handle, enum stream_status *stream_status_out) { static int times_called = 0; smartlist_t *retval_sl = smartlist_new(); (void) handle; (void) stream_status_out; /* Generate some dummy CMETHOD lines the first 5 times. The 6th time, send 'CMETHODS DONE' to finish configuring the proxy. */ if (times_called++ != 5) { smartlist_add_asprintf(retval_sl, "SMETHOD mock%d 127.0.0.1:555%d", times_called, times_called); } else { smartlist_add(retval_sl, tor_strdup("SMETHODS DONE")); } return retval_sl; } /* NOP mock */ static void tor_process_handle_destroy_replacement(process_handle_t *process_handle, int also_terminate_process) { (void) process_handle; (void) also_terminate_process; } static or_state_t *dummy_state = NULL; static or_state_t * get_or_state_replacement(void) { return dummy_state; } static int controlevent_n = 0; static uint16_t controlevent_event = 0; static smartlist_t *controlevent_msgs = NULL; static void queue_control_event_string_replacement(uint16_t event, char *msg) { ++controlevent_n; controlevent_event = event; if (!controlevent_msgs) controlevent_msgs = smartlist_new(); smartlist_add(controlevent_msgs, msg); } /* Test the configure_proxy() function. */ static void test_pt_configure_proxy(void *arg) { int i, retval; managed_proxy_t *mp = NULL; (void) arg; dummy_state = tor_malloc_zero(sizeof(or_state_t)); MOCK(tor_get_lines_from_handle, tor_get_lines_from_handle_replacement); MOCK(tor_process_handle_destroy, tor_process_handle_destroy_replacement); MOCK(get_or_state, get_or_state_replacement); MOCK(queue_control_event_string, queue_control_event_string_replacement); control_testing_set_global_event_mask(EVENT_TRANSPORT_LAUNCHED); mp = tor_malloc_zero(sizeof(managed_proxy_t)); mp->conf_state = PT_PROTO_ACCEPTING_METHODS; mp->transports = smartlist_new(); mp->transports_to_launch = smartlist_new(); mp->process_handle = tor_malloc_zero(sizeof(process_handle_t)); mp->argv = tor_malloc_zero(sizeof(char*)*2); mp->argv[0] = tor_strdup(""); mp->is_server = 1; /* Test the return value of configure_proxy() by calling it some times while it is uninitialized and then finally finalizing its configuration. */ for (i = 0 ; i < 5 ; i++) { retval = configure_proxy(mp); /* retval should be zero because proxy hasn't finished configuring yet */ tt_int_op(retval, OP_EQ, 0); /* check the number of registered transports */ tt_assert(smartlist_len(mp->transports) == i+1); /* check that the mp is still waiting for transports */ tt_assert(mp->conf_state == PT_PROTO_ACCEPTING_METHODS); } /* this last configure_proxy() should finalize the proxy configuration. */ retval = configure_proxy(mp); /* retval should be 1 since the proxy finished configuring */ tt_int_op(retval, OP_EQ, 1); /* check the mp state */ tt_assert(mp->conf_state == PT_PROTO_COMPLETED); tt_int_op(controlevent_n, OP_EQ, 5); tt_int_op(controlevent_event, OP_EQ, EVENT_TRANSPORT_LAUNCHED); tt_int_op(smartlist_len(controlevent_msgs), OP_EQ, 5); smartlist_sort_strings(controlevent_msgs); tt_str_op(smartlist_get(controlevent_msgs, 0), OP_EQ, "650 TRANSPORT_LAUNCHED server mock1 127.0.0.1 5551\r\n"); tt_str_op(smartlist_get(controlevent_msgs, 1), OP_EQ, "650 TRANSPORT_LAUNCHED server mock2 127.0.0.1 5552\r\n"); tt_str_op(smartlist_get(controlevent_msgs, 2), OP_EQ, "650 TRANSPORT_LAUNCHED server mock3 127.0.0.1 5553\r\n"); tt_str_op(smartlist_get(controlevent_msgs, 3), OP_EQ, "650 TRANSPORT_LAUNCHED server mock4 127.0.0.1 5554\r\n"); tt_str_op(smartlist_get(controlevent_msgs, 4), OP_EQ, "650 TRANSPORT_LAUNCHED server mock5 127.0.0.1 5555\r\n"); { /* check that the transport info were saved properly in the tor state */ config_line_t *transport_in_state = NULL; smartlist_t *transport_info_sl = smartlist_new(); char *name_of_transport = NULL; char *bindaddr = NULL; /* Get the bindaddr for "mock1" and check it against the bindaddr that the mocked tor_get_lines_from_handle() generated. */ transport_in_state = get_transport_in_state_by_name("mock1"); tt_assert(transport_in_state); smartlist_split_string(transport_info_sl, transport_in_state->value, NULL, 0, 0); name_of_transport = smartlist_get(transport_info_sl, 0); bindaddr = smartlist_get(transport_info_sl, 1); tt_str_op(name_of_transport, OP_EQ, "mock1"); tt_str_op(bindaddr, OP_EQ, "127.0.0.1:5551"); SMARTLIST_FOREACH(transport_info_sl, char *, cp, tor_free(cp)); smartlist_free(transport_info_sl); } done: or_state_free(dummy_state); UNMOCK(tor_get_lines_from_handle); UNMOCK(tor_process_handle_destroy); UNMOCK(get_or_state); UNMOCK(queue_control_event_string); if (controlevent_msgs) { SMARTLIST_FOREACH(controlevent_msgs, char *, cp, tor_free(cp)); smartlist_free(controlevent_msgs); controlevent_msgs = NULL; } if (mp->transports) { SMARTLIST_FOREACH(mp->transports, transport_t *, t, transport_free(t)); smartlist_free(mp->transports); } smartlist_free(mp->transports_to_launch); tor_free(mp->process_handle); tor_free(mp->argv[0]); tor_free(mp->argv); tor_free(mp); } /* Test the get_pt_proxy_uri() function. */ static void test_get_pt_proxy_uri(void *arg) { or_options_t *options = get_options_mutable(); char *uri = NULL; int ret; (void) arg; /* Test with no proxy. */ uri = get_pt_proxy_uri(); tt_assert(uri == NULL); /* Test with a SOCKS4 proxy. */ options->Socks4Proxy = tor_strdup("192.0.2.1:1080"); ret = tor_addr_port_lookup(options->Socks4Proxy, &options->Socks4ProxyAddr, &options->Socks4ProxyPort); tt_int_op(ret, OP_EQ, 0); uri = get_pt_proxy_uri(); tt_str_op(uri, OP_EQ, "socks4a://192.0.2.1:1080"); tor_free(uri); tor_free(options->Socks4Proxy); /* Test with a SOCKS5 proxy, no username/password. */ options->Socks5Proxy = tor_strdup("192.0.2.1:1080"); ret = tor_addr_port_lookup(options->Socks5Proxy, &options->Socks5ProxyAddr, &options->Socks5ProxyPort); tt_int_op(ret, OP_EQ, 0); uri = get_pt_proxy_uri(); tt_str_op(uri, OP_EQ, "socks5://192.0.2.1:1080"); tor_free(uri); /* Test with a SOCKS5 proxy, with username/password. */ options->Socks5ProxyUsername = tor_strdup("hwest"); options->Socks5ProxyPassword = tor_strdup("r34n1m470r"); uri = get_pt_proxy_uri(); tt_str_op(uri, OP_EQ, "socks5://hwest:r34n1m470r@192.0.2.1:1080"); tor_free(uri); tor_free(options->Socks5Proxy); tor_free(options->Socks5ProxyUsername); tor_free(options->Socks5ProxyPassword); /* Test with a HTTPS proxy, no authenticator. */ options->HTTPSProxy = tor_strdup("192.0.2.1:80"); ret = tor_addr_port_lookup(options->HTTPSProxy, &options->HTTPSProxyAddr, &options->HTTPSProxyPort); tt_int_op(ret, OP_EQ, 0); uri = get_pt_proxy_uri(); tt_str_op(uri, OP_EQ, "http://192.0.2.1:80"); tor_free(uri); /* Test with a HTTPS proxy, with authenticator. */ options->HTTPSProxyAuthenticator = tor_strdup("hwest:r34n1m470r"); uri = get_pt_proxy_uri(); tt_str_op(uri, OP_EQ, "http://hwest:r34n1m470r@192.0.2.1:80"); tor_free(uri); tor_free(options->HTTPSProxy); tor_free(options->HTTPSProxyAuthenticator); /* Token nod to the fact that IPv6 exists. */ options->Socks4Proxy = tor_strdup("[2001:db8::1]:1080"); ret = tor_addr_port_lookup(options->Socks4Proxy, &options->Socks4ProxyAddr, &options->Socks4ProxyPort); tt_int_op(ret, OP_EQ, 0); uri = get_pt_proxy_uri(); tt_str_op(uri, OP_EQ, "socks4a://[2001:db8::1]:1080"); tor_free(uri); tor_free(options->Socks4Proxy); done: if (uri) tor_free(uri); } #define PT_LEGACY(name) \ { #name, test_pt_ ## name , 0, NULL, NULL } struct testcase_t pt_tests[] = { PT_LEGACY(parsing), PT_LEGACY(protocol), { "get_transport_options", test_pt_get_transport_options, TT_FORK, NULL, NULL }, { "get_extrainfo_string", test_pt_get_extrainfo_string, TT_FORK, NULL, NULL }, { "configure_proxy",test_pt_configure_proxy, TT_FORK, NULL, NULL }, { "get_pt_proxy_uri", test_get_pt_proxy_uri, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_workqueue.c0000644000175000017500000002500312632034724014414 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "or.h" #include "compat_threads.h" #include "onion.h" #include "workqueue.h" #include "crypto.h" #include "crypto_curve25519.h" #include "compat_libevent.h" #include #ifdef HAVE_EVENT2_EVENT_H #include #else #include #endif #define MAX_INFLIGHT (1<<16) static int opt_verbose = 0; static int opt_n_threads = 8; static int opt_n_items = 10000; static int opt_n_inflight = 1000; static int opt_n_lowwater = 250; static int opt_n_cancel = 0; static int opt_ratio_rsa = 5; #ifdef TRACK_RESPONSES tor_mutex_t bitmap_mutex; int handled_len; bitarray_t *handled; #endif typedef struct state_s { int magic; int n_handled; crypto_pk_t *rsa; curve25519_secret_key_t ecdh; int is_shutdown; } state_t; typedef struct rsa_work_s { int serial; uint8_t msg[128]; uint8_t msglen; } rsa_work_t; typedef struct ecdh_work_s { int serial; union { curve25519_public_key_t pk; uint8_t msg[32]; } u; } ecdh_work_t; static void mark_handled(int serial) { #ifdef TRACK_RESPONSES tor_mutex_acquire(&bitmap_mutex); tor_assert(serial < handled_len); tor_assert(! bitarray_is_set(handled, serial)); bitarray_set(handled, serial); tor_mutex_release(&bitmap_mutex); #else (void)serial; #endif } static workqueue_reply_t workqueue_do_rsa(void *state, void *work) { rsa_work_t *rw = work; state_t *st = state; crypto_pk_t *rsa = st->rsa; uint8_t sig[256]; int len; tor_assert(st->magic == 13371337); len = crypto_pk_private_sign(rsa, (char*)sig, 256, (char*)rw->msg, rw->msglen); if (len < 0) { rw->msglen = 0; return WQ_RPL_ERROR; } memset(rw->msg, 0, sizeof(rw->msg)); rw->msglen = len; memcpy(rw->msg, sig, len); ++st->n_handled; mark_handled(rw->serial); return WQ_RPL_REPLY; } static workqueue_reply_t workqueue_do_shutdown(void *state, void *work) { (void)state; (void)work; crypto_pk_free(((state_t*)state)->rsa); tor_free(state); return WQ_RPL_SHUTDOWN; } static workqueue_reply_t workqueue_do_ecdh(void *state, void *work) { ecdh_work_t *ew = work; uint8_t output[CURVE25519_OUTPUT_LEN]; state_t *st = state; tor_assert(st->magic == 13371337); curve25519_handshake(output, &st->ecdh, &ew->u.pk); memcpy(ew->u.msg, output, CURVE25519_OUTPUT_LEN); ++st->n_handled; mark_handled(ew->serial); return WQ_RPL_REPLY; } static workqueue_reply_t workqueue_shutdown_error(void *state, void *work) { (void)state; (void)work; return WQ_RPL_REPLY; } static void * new_state(void *arg) { state_t *st; (void)arg; st = tor_malloc(sizeof(*st)); /* Every thread gets its own keys. not a problem for benchmarking */ st->rsa = crypto_pk_new(); if (crypto_pk_generate_key_with_bits(st->rsa, 1024) < 0) { crypto_pk_free(st->rsa); tor_free(st); return NULL; } curve25519_secret_key_generate(&st->ecdh, 0); st->magic = 13371337; return st; } static void free_state(void *arg) { state_t *st = arg; crypto_pk_free(st->rsa); tor_free(st); } static tor_weak_rng_t weak_rng; static int n_sent = 0; static int rsa_sent = 0; static int ecdh_sent = 0; static int n_received = 0; static int no_shutdown = 0; #ifdef TRACK_RESPONSES bitarray_t *received; #endif static void handle_reply(void *arg) { #ifdef TRACK_RESPONSES rsa_work_t *rw = arg; /* Naughty cast, but only looking at serial. */ tor_assert(! bitarray_is_set(received, rw->serial)); bitarray_set(received,rw->serial); #endif tor_free(arg); ++n_received; } /* This should never get called. */ static void handle_reply_shutdown(void *arg) { (void)arg; no_shutdown = 1; } static workqueue_entry_t * add_work(threadpool_t *tp) { int add_rsa = opt_ratio_rsa == 0 || tor_weak_random_range(&weak_rng, opt_ratio_rsa) == 0; if (add_rsa) { rsa_work_t *w = tor_malloc_zero(sizeof(*w)); w->serial = n_sent++; crypto_rand((char*)w->msg, 20); w->msglen = 20; ++rsa_sent; return threadpool_queue_work(tp, workqueue_do_rsa, handle_reply, w); } else { ecdh_work_t *w = tor_malloc_zero(sizeof(*w)); w->serial = n_sent++; /* Not strictly right, but this is just for benchmarks. */ crypto_rand((char*)w->u.pk.public_key, 32); ++ecdh_sent; return threadpool_queue_work(tp, workqueue_do_ecdh, handle_reply, w); } } static int n_failed_cancel = 0; static int n_successful_cancel = 0; static int add_n_work_items(threadpool_t *tp, int n) { int n_queued = 0; int n_try_cancel = 0, i; workqueue_entry_t **to_cancel; workqueue_entry_t *ent; to_cancel = tor_malloc(sizeof(workqueue_entry_t*) * opt_n_cancel); while (n_queued++ < n) { ent = add_work(tp); if (! ent) { puts("Z"); tor_event_base_loopexit(tor_libevent_get_base(), NULL); return -1; } if (n_try_cancel < opt_n_cancel && tor_weak_random_range(&weak_rng, n) < opt_n_cancel) { to_cancel[n_try_cancel++] = ent; } } for (i = 0; i < n_try_cancel; ++i) { void *work = workqueue_entry_cancel(to_cancel[i]); if (! work) { n_failed_cancel++; } else { n_successful_cancel++; tor_free(work); } } tor_free(to_cancel); return 0; } static int shutting_down = 0; static void replysock_readable_cb(tor_socket_t sock, short what, void *arg) { threadpool_t *tp = arg; replyqueue_t *rq = threadpool_get_replyqueue(tp); int old_r = n_received; (void) sock; (void) what; replyqueue_process(rq); if (old_r == n_received) return; if (opt_verbose) { printf("%d / %d", n_received, n_sent); if (opt_n_cancel) printf(" (%d cancelled, %d uncancellable)", n_successful_cancel, n_failed_cancel); puts(""); } #ifdef TRACK_RESPONSES tor_mutex_acquire(&bitmap_mutex); for (i = 0; i < opt_n_items; ++i) { if (bitarray_is_set(received, i)) putc('o', stdout); else if (bitarray_is_set(handled, i)) putc('!', stdout); else putc('.', stdout); } puts(""); tor_mutex_release(&bitmap_mutex); #endif if (n_sent - (n_received+n_successful_cancel) < opt_n_lowwater) { int n_to_send = n_received + opt_n_inflight - n_sent; if (n_to_send > opt_n_items - n_sent) n_to_send = opt_n_items - n_sent; add_n_work_items(tp, n_to_send); } if (shutting_down == 0 && n_received+n_successful_cancel == n_sent && n_sent >= opt_n_items) { shutting_down = 1; threadpool_queue_update(tp, NULL, workqueue_do_shutdown, NULL, NULL); // Anything we add after starting the shutdown must not be executed. threadpool_queue_work(tp, workqueue_shutdown_error, handle_reply_shutdown, NULL); { struct timeval limit = { 2, 0 }; tor_event_base_loopexit(tor_libevent_get_base(), &limit); } } } static void help(void) { puts( "Options:\n" " -h Display this information\n" " -v Be verbose\n" " -N Run this many items of work\n" " -T Use this many threads\n" " -I Have no more than this many requests queued at once\n" " -L Add items whenever fewer than this many are pending\n" " -C Try to cancel N items of every batch that we add\n" " -R Make one out of this many items be a slow (RSA) one\n" " --no-{eventfd2,eventfd,pipe2,pipe,socketpair}\n" " Disable one of the alert_socket backends."); } int main(int argc, char **argv) { replyqueue_t *rq; threadpool_t *tp; int i; tor_libevent_cfg evcfg; struct event *ev; uint32_t as_flags = 0; for (i = 1; i < argc; ++i) { if (!strcmp(argv[i], "-v")) { opt_verbose = 1; } else if (!strcmp(argv[i], "-T") && i+1 opt_n_inflight || opt_n_inflight > MAX_INFLIGHT || opt_ratio_rsa < 0) { help(); return 1; } if (opt_n_inflight > opt_n_items) { opt_n_inflight = opt_n_items; } init_logging(1); network_init(); crypto_global_init(1, NULL, NULL); crypto_seed_rng(); rq = replyqueue_new(as_flags); tor_assert(rq); tp = threadpool_new(opt_n_threads, rq, new_state, free_state, NULL); tor_assert(tp); crypto_seed_weak_rng(&weak_rng); memset(&evcfg, 0, sizeof(evcfg)); tor_libevent_initialize(&evcfg); ev = tor_event_new(tor_libevent_get_base(), replyqueue_get_socket(rq), EV_READ|EV_PERSIST, replysock_readable_cb, tp); event_add(ev, NULL); #ifdef TRACK_RESPONSES handled = bitarray_init_zero(opt_n_items); received = bitarray_init_zero(opt_n_items); tor_mutex_init(&bitmap_mutex); handled_len = opt_n_items; #endif for (i = 0; i < opt_n_inflight; ++i) { if (! add_work(tp)) { puts("Couldn't add work."); return 1; } } { struct timeval limit = { 180, 0 }; tor_event_base_loopexit(tor_libevent_get_base(), &limit); } event_base_loop(tor_libevent_get_base(), 0); if (n_sent != opt_n_items || n_received+n_successful_cancel != n_sent) { printf("%d vs %d\n", n_sent, opt_n_items); printf("%d+%d vs %d\n", n_received, n_successful_cancel, n_sent); puts("FAIL"); return 1; } else if (no_shutdown) { puts("Accepted work after shutdown\n"); puts("FAIL"); } else { puts("OK"); return 0; } } tor-0.2.7.6/src/test/test_circuitmux.c0000644000175000017500000000364612621363246014574 00000000000000/* Copyright (c) 2013-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define TOR_CHANNEL_INTERNAL_ #define CIRCUITMUX_PRIVATE #define RELAY_PRIVATE #include "or.h" #include "channel.h" #include "circuitmux.h" #include "relay.h" #include "scheduler.h" #include "test.h" /* XXXX duplicated function from test_circuitlist.c */ static channel_t * new_fake_channel(void) { channel_t *chan = tor_malloc_zero(sizeof(channel_t)); channel_init(chan); return chan; } static int has_queued_writes(channel_t *c) { (void) c; return 1; } /** Test destroy cell queue with no interference from other queues. */ static void test_cmux_destroy_cell_queue(void *arg) { circuitmux_t *cmux = NULL; channel_t *ch = NULL; circuit_t *circ = NULL; cell_queue_t *cq = NULL; packed_cell_t *pc = NULL; tor_libevent_cfg cfg; memset(&cfg, 0, sizeof(cfg)); tor_libevent_initialize(&cfg); scheduler_init(); (void) arg; cmux = circuitmux_alloc(); tt_assert(cmux); ch = new_fake_channel(); ch->has_queued_writes = has_queued_writes; ch->wide_circ_ids = 1; circ = circuitmux_get_first_active_circuit(cmux, &cq); tt_assert(!circ); tt_assert(!cq); circuitmux_append_destroy_cell(ch, cmux, 100, 10); circuitmux_append_destroy_cell(ch, cmux, 190, 6); circuitmux_append_destroy_cell(ch, cmux, 30, 1); tt_int_op(circuitmux_num_cells(cmux), OP_EQ, 3); circ = circuitmux_get_first_active_circuit(cmux, &cq); tt_assert(!circ); tt_assert(cq); tt_int_op(cq->n, OP_EQ, 3); pc = cell_queue_pop(cq); tt_assert(pc); tt_mem_op(pc->body, OP_EQ, "\x00\x00\x00\x64\x04\x0a\x00\x00\x00", 9); packed_cell_free(pc); pc = NULL; tt_int_op(circuitmux_num_cells(cmux), OP_EQ, 2); done: circuitmux_free(cmux); channel_free(ch); packed_cell_free(pc); } struct testcase_t circuitmux_tests[] = { { "destroy_cell_queue", test_cmux_destroy_cell_queue, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_scheduler.c0000644000175000017500000005112012621363246014344 00000000000000/* Copyright (c) 2014-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include #include "orconfig.h" /* Libevent stuff */ #ifdef HAVE_EVENT2_EVENT_H #include #else #include #endif #define TOR_CHANNEL_INTERNAL_ #define CHANNEL_PRIVATE_ #include "or.h" #include "compat_libevent.h" #include "channel.h" #define SCHEDULER_PRIVATE_ #include "scheduler.h" /* Test suite stuff */ #include "test.h" #include "fakechans.h" /* Statics in scheduler.c exposed to the test suite */ extern smartlist_t *channels_pending; extern struct event *run_sched_ev; extern uint64_t queue_heuristic; extern time_t queue_heuristic_timestamp; /* Event base for scheduelr tests */ static struct event_base *mock_event_base = NULL; /* Statics controlling mocks */ static circuitmux_t *mock_ccm_tgt_1 = NULL; static circuitmux_t *mock_ccm_tgt_2 = NULL; static circuitmux_t *mock_cgp_tgt_1 = NULL; static circuitmux_policy_t *mock_cgp_val_1 = NULL; static circuitmux_t *mock_cgp_tgt_2 = NULL; static circuitmux_policy_t *mock_cgp_val_2 = NULL; static int scheduler_compare_channels_mock_ctr = 0; static int scheduler_run_mock_ctr = 0; static void channel_flush_some_cells_mock_free_all(void); static void channel_flush_some_cells_mock_set(channel_t *chan, ssize_t num_cells); /* Setup for mock event stuff */ static void mock_event_free_all(void); static void mock_event_init(void); /* Mocks used by scheduler tests */ static ssize_t channel_flush_some_cells_mock(channel_t *chan, ssize_t num_cells); static int circuitmux_compare_muxes_mock(circuitmux_t *cmux_1, circuitmux_t *cmux_2); static const circuitmux_policy_t * circuitmux_get_policy_mock( circuitmux_t *cmux); static int scheduler_compare_channels_mock(const void *c1_v, const void *c2_v); static void scheduler_run_noop_mock(void); static struct event_base * tor_libevent_get_base_mock(void); /* Scheduler test cases */ static void test_scheduler_channel_states(void *arg); static void test_scheduler_compare_channels(void *arg); static void test_scheduler_initfree(void *arg); static void test_scheduler_loop(void *arg); static void test_scheduler_queue_heuristic(void *arg); /* Mock event init/free */ /* Shamelessly stolen from compat_libevent.c */ #define V(major, minor, patch) \ (((major) << 24) | ((minor) << 16) | ((patch) << 8)) static void mock_event_free_all(void) { tt_assert(mock_event_base != NULL); if (mock_event_base) { event_base_free(mock_event_base); mock_event_base = NULL; } tt_ptr_op(mock_event_base, ==, NULL); done: return; } static void mock_event_init(void) { #ifdef HAVE_EVENT2_EVENT_H struct event_config *cfg = NULL; #endif tt_ptr_op(mock_event_base, ==, NULL); /* * Really cut down from tor_libevent_initialize of * src/common/compat_libevent.c to kill config dependencies */ if (!mock_event_base) { #ifdef HAVE_EVENT2_EVENT_H cfg = event_config_new(); #if LIBEVENT_VERSION_NUMBER >= V(2,0,9) /* We can enable changelist support with epoll, since we don't give * Libevent any dup'd fds. This lets us avoid some syscalls. */ event_config_set_flag(cfg, EVENT_BASE_FLAG_EPOLL_USE_CHANGELIST); #endif mock_event_base = event_base_new_with_config(cfg); event_config_free(cfg); #else mock_event_base = event_init(); #endif } tt_assert(mock_event_base != NULL); done: return; } /* Mocks */ typedef struct { const channel_t *chan; ssize_t cells; } flush_mock_channel_t; static smartlist_t *chans_for_flush_mock = NULL; static void channel_flush_some_cells_mock_free_all(void) { if (chans_for_flush_mock) { SMARTLIST_FOREACH_BEGIN(chans_for_flush_mock, flush_mock_channel_t *, flush_mock_ch) { SMARTLIST_DEL_CURRENT(chans_for_flush_mock, flush_mock_ch); tor_free(flush_mock_ch); } SMARTLIST_FOREACH_END(flush_mock_ch); smartlist_free(chans_for_flush_mock); chans_for_flush_mock = NULL; } } static void channel_flush_some_cells_mock_set(channel_t *chan, ssize_t num_cells) { flush_mock_channel_t *flush_mock_ch = NULL; if (!chan) return; if (num_cells <= 0) return; if (!chans_for_flush_mock) { chans_for_flush_mock = smartlist_new(); } SMARTLIST_FOREACH_BEGIN(chans_for_flush_mock, flush_mock_channel_t *, flush_mock_ch) { if (flush_mock_ch != NULL && flush_mock_ch->chan != NULL) { if (flush_mock_ch->chan == chan) { /* Found it */ flush_mock_ch->cells = num_cells; break; } } else { /* That shouldn't be there... */ SMARTLIST_DEL_CURRENT(chans_for_flush_mock, flush_mock_ch); tor_free(flush_mock_ch); } } SMARTLIST_FOREACH_END(flush_mock_ch); if (!flush_mock_ch) { /* The loop didn't find it */ flush_mock_ch = tor_malloc_zero(sizeof(*flush_mock_ch)); flush_mock_ch->chan = chan; flush_mock_ch->cells = num_cells; smartlist_add(chans_for_flush_mock, flush_mock_ch); } } static ssize_t channel_flush_some_cells_mock(channel_t *chan, ssize_t num_cells) { ssize_t flushed = 0, max; char unlimited = 0; flush_mock_channel_t *found = NULL; tt_assert(chan != NULL); if (chan) { if (num_cells < 0) { num_cells = 0; unlimited = 1; } /* Check if we have it */ if (chans_for_flush_mock != NULL) { SMARTLIST_FOREACH_BEGIN(chans_for_flush_mock, flush_mock_channel_t *, flush_mock_ch) { if (flush_mock_ch != NULL && flush_mock_ch->chan != NULL) { if (flush_mock_ch->chan == chan) { /* Found it */ found = flush_mock_ch; break; } } else { /* That shouldn't be there... */ SMARTLIST_DEL_CURRENT(chans_for_flush_mock, flush_mock_ch); tor_free(flush_mock_ch); } } SMARTLIST_FOREACH_END(flush_mock_ch); if (found) { /* We found one */ if (found->cells < 0) found->cells = 0; if (unlimited) max = found->cells; else max = MIN(found->cells, num_cells); flushed += max; found->cells -= max; if (found->cells <= 0) { smartlist_remove(chans_for_flush_mock, found); tor_free(found); } } } } done: return flushed; } static int circuitmux_compare_muxes_mock(circuitmux_t *cmux_1, circuitmux_t *cmux_2) { int result = 0; tt_assert(cmux_1 != NULL); tt_assert(cmux_2 != NULL); if (cmux_1 != cmux_2) { if (cmux_1 == mock_ccm_tgt_1 && cmux_2 == mock_ccm_tgt_2) result = -1; else if (cmux_1 == mock_ccm_tgt_2 && cmux_2 == mock_ccm_tgt_1) { result = 1; } else { if (cmux_1 == mock_ccm_tgt_1 || cmux_1 == mock_ccm_tgt_2) result = -1; else if (cmux_2 == mock_ccm_tgt_1 || cmux_2 == mock_ccm_tgt_2) { result = 1; } else { result = circuitmux_compare_muxes__real(cmux_1, cmux_2); } } } /* else result = 0 always */ done: return result; } static const circuitmux_policy_t * circuitmux_get_policy_mock(circuitmux_t *cmux) { const circuitmux_policy_t *result = NULL; tt_assert(cmux != NULL); if (cmux) { if (cmux == mock_cgp_tgt_1) result = mock_cgp_val_1; else if (cmux == mock_cgp_tgt_2) result = mock_cgp_val_2; else result = circuitmux_get_policy__real(cmux); } done: return result; } static int scheduler_compare_channels_mock(const void *c1_v, const void *c2_v) { uintptr_t p1, p2; p1 = (uintptr_t)(c1_v); p2 = (uintptr_t)(c2_v); ++scheduler_compare_channels_mock_ctr; if (p1 == p2) return 0; else if (p1 < p2) return 1; else return -1; } static void scheduler_run_noop_mock(void) { ++scheduler_run_mock_ctr; } static struct event_base * tor_libevent_get_base_mock(void) { return mock_event_base; } /* Test cases */ static void test_scheduler_channel_states(void *arg) { channel_t *ch1 = NULL, *ch2 = NULL; int old_count; (void)arg; /* Set up libevent and scheduler */ mock_event_init(); MOCK(tor_libevent_get_base, tor_libevent_get_base_mock); scheduler_init(); /* * Install the compare channels mock so we can test * scheduler_touch_channel(). */ MOCK(scheduler_compare_channels, scheduler_compare_channels_mock); /* * Disable scheduler_run so we can just check the state transitions * without having to make everything it might call work too. */ MOCK(scheduler_run, scheduler_run_noop_mock); tt_int_op(smartlist_len(channels_pending), ==, 0); /* Set up a fake channel */ ch1 = new_fake_channel(); tt_assert(ch1); /* Start it off in OPENING */ ch1->state = CHANNEL_STATE_OPENING; /* We'll need a cmux */ ch1->cmux = circuitmux_alloc(); /* Try to register it */ channel_register(ch1); tt_assert(ch1->registered); /* It should start off in SCHED_CHAN_IDLE */ tt_int_op(ch1->scheduler_state, ==, SCHED_CHAN_IDLE); /* Now get another one */ ch2 = new_fake_channel(); tt_assert(ch2); ch2->state = CHANNEL_STATE_OPENING; ch2->cmux = circuitmux_alloc(); channel_register(ch2); tt_assert(ch2->registered); /* Send it to SCHED_CHAN_WAITING_TO_WRITE */ scheduler_channel_has_waiting_cells(ch1); tt_int_op(ch1->scheduler_state, ==, SCHED_CHAN_WAITING_TO_WRITE); /* This should send it to SCHED_CHAN_PENDING */ scheduler_channel_wants_writes(ch1); tt_int_op(ch1->scheduler_state, ==, SCHED_CHAN_PENDING); tt_int_op(smartlist_len(channels_pending), ==, 1); /* Now send ch2 to SCHED_CHAN_WAITING_FOR_CELLS */ scheduler_channel_wants_writes(ch2); tt_int_op(ch2->scheduler_state, ==, SCHED_CHAN_WAITING_FOR_CELLS); /* Drop ch2 back to idle */ scheduler_channel_doesnt_want_writes(ch2); tt_int_op(ch2->scheduler_state, ==, SCHED_CHAN_IDLE); /* ...and back to SCHED_CHAN_WAITING_FOR_CELLS */ scheduler_channel_wants_writes(ch2); tt_int_op(ch2->scheduler_state, ==, SCHED_CHAN_WAITING_FOR_CELLS); /* ...and this should kick ch2 into SCHED_CHAN_PENDING */ scheduler_channel_has_waiting_cells(ch2); tt_int_op(ch2->scheduler_state, ==, SCHED_CHAN_PENDING); tt_int_op(smartlist_len(channels_pending), ==, 2); /* This should send ch2 to SCHED_CHAN_WAITING_TO_WRITE */ scheduler_channel_doesnt_want_writes(ch2); tt_int_op(ch2->scheduler_state, ==, SCHED_CHAN_WAITING_TO_WRITE); tt_int_op(smartlist_len(channels_pending), ==, 1); /* ...and back to SCHED_CHAN_PENDING */ scheduler_channel_wants_writes(ch2); tt_int_op(ch2->scheduler_state, ==, SCHED_CHAN_PENDING); tt_int_op(smartlist_len(channels_pending), ==, 2); /* Now we exercise scheduler_touch_channel */ old_count = scheduler_compare_channels_mock_ctr; scheduler_touch_channel(ch1); tt_assert(scheduler_compare_channels_mock_ctr > old_count); /* Close */ channel_mark_for_close(ch1); tt_int_op(ch1->state, ==, CHANNEL_STATE_CLOSING); channel_mark_for_close(ch2); tt_int_op(ch2->state, ==, CHANNEL_STATE_CLOSING); channel_closed(ch1); tt_int_op(ch1->state, ==, CHANNEL_STATE_CLOSED); ch1 = NULL; channel_closed(ch2); tt_int_op(ch2->state, ==, CHANNEL_STATE_CLOSED); ch2 = NULL; /* Shut things down */ channel_free_all(); scheduler_free_all(); mock_event_free_all(); done: tor_free(ch1); tor_free(ch2); UNMOCK(scheduler_compare_channels); UNMOCK(scheduler_run); UNMOCK(tor_libevent_get_base); return; } static void test_scheduler_compare_channels(void *arg) { /* We don't actually need whole fake channels... */ channel_t c1, c2; /* ...and some dummy circuitmuxes too */ circuitmux_t *cm1 = NULL, *cm2 = NULL; int result; (void)arg; /* We can't actually see sizeof(circuitmux_t) from here */ cm1 = tor_malloc_zero(sizeof(void *)); cm2 = tor_malloc_zero(sizeof(void *)); c1.cmux = cm1; c2.cmux = cm2; /* Configure circuitmux_get_policy() mock */ mock_cgp_tgt_1 = cm1; mock_cgp_tgt_2 = cm2; /* * This is to test the different-policies case, which uses the policy * cast to an intptr_t as an arbitrary but definite thing to compare. */ mock_cgp_val_1 = tor_malloc_zero(16); mock_cgp_val_2 = tor_malloc_zero(16); if ( ((intptr_t) mock_cgp_val_1) > ((intptr_t) mock_cgp_val_2) ) { void *tmp = mock_cgp_val_1; mock_cgp_val_1 = mock_cgp_val_2; mock_cgp_val_2 = tmp; } MOCK(circuitmux_get_policy, circuitmux_get_policy_mock); /* Now set up circuitmux_compare_muxes() mock using cm1/cm2 */ mock_ccm_tgt_1 = cm1; mock_ccm_tgt_2 = cm2; MOCK(circuitmux_compare_muxes, circuitmux_compare_muxes_mock); /* Equal-channel case */ result = scheduler_compare_channels(&c1, &c1); tt_int_op(result, ==, 0); /* Distinct channels, distinct policies */ result = scheduler_compare_channels(&c1, &c2); tt_int_op(result, ==, -1); result = scheduler_compare_channels(&c2, &c1); tt_int_op(result, ==, 1); /* Distinct channels, same policy */ tor_free(mock_cgp_val_2); mock_cgp_val_2 = mock_cgp_val_1; result = scheduler_compare_channels(&c1, &c2); tt_int_op(result, ==, -1); result = scheduler_compare_channels(&c2, &c1); tt_int_op(result, ==, 1); done: UNMOCK(circuitmux_compare_muxes); mock_ccm_tgt_1 = NULL; mock_ccm_tgt_2 = NULL; UNMOCK(circuitmux_get_policy); mock_cgp_tgt_1 = NULL; mock_cgp_tgt_2 = NULL; tor_free(cm1); tor_free(cm2); if (mock_cgp_val_1 != mock_cgp_val_2) tor_free(mock_cgp_val_1); tor_free(mock_cgp_val_2); mock_cgp_val_1 = NULL; mock_cgp_val_2 = NULL; return; } static void test_scheduler_initfree(void *arg) { (void)arg; tt_ptr_op(channels_pending, ==, NULL); tt_ptr_op(run_sched_ev, ==, NULL); mock_event_init(); MOCK(tor_libevent_get_base, tor_libevent_get_base_mock); scheduler_init(); tt_assert(channels_pending != NULL); tt_assert(run_sched_ev != NULL); scheduler_free_all(); UNMOCK(tor_libevent_get_base); mock_event_free_all(); tt_ptr_op(channels_pending, ==, NULL); tt_ptr_op(run_sched_ev, ==, NULL); done: return; } static void test_scheduler_loop(void *arg) { channel_t *ch1 = NULL, *ch2 = NULL; (void)arg; /* Set up libevent and scheduler */ mock_event_init(); MOCK(tor_libevent_get_base, tor_libevent_get_base_mock); scheduler_init(); /* * Install the compare channels mock so we can test * scheduler_touch_channel(). */ MOCK(scheduler_compare_channels, scheduler_compare_channels_mock); /* * Disable scheduler_run so we can just check the state transitions * without having to make everything it might call work too. */ MOCK(scheduler_run, scheduler_run_noop_mock); tt_int_op(smartlist_len(channels_pending), ==, 0); /* Set up a fake channel */ ch1 = new_fake_channel(); tt_assert(ch1); /* Start it off in OPENING */ ch1->state = CHANNEL_STATE_OPENING; /* We'll need a cmux */ ch1->cmux = circuitmux_alloc(); /* Try to register it */ channel_register(ch1); tt_assert(ch1->registered); /* Finish opening it */ channel_change_state(ch1, CHANNEL_STATE_OPEN); /* It should start off in SCHED_CHAN_IDLE */ tt_int_op(ch1->scheduler_state, ==, SCHED_CHAN_IDLE); /* Now get another one */ ch2 = new_fake_channel(); tt_assert(ch2); ch2->state = CHANNEL_STATE_OPENING; ch2->cmux = circuitmux_alloc(); channel_register(ch2); tt_assert(ch2->registered); /* * Don't open ch2; then channel_num_cells_writeable() will return * zero and we'll get coverage of that exception case in scheduler_run() */ tt_int_op(ch1->state, ==, CHANNEL_STATE_OPEN); tt_int_op(ch2->state, ==, CHANNEL_STATE_OPENING); /* Send it to SCHED_CHAN_WAITING_TO_WRITE */ scheduler_channel_has_waiting_cells(ch1); tt_int_op(ch1->scheduler_state, ==, SCHED_CHAN_WAITING_TO_WRITE); /* This should send it to SCHED_CHAN_PENDING */ scheduler_channel_wants_writes(ch1); tt_int_op(ch1->scheduler_state, ==, SCHED_CHAN_PENDING); tt_int_op(smartlist_len(channels_pending), ==, 1); /* Now send ch2 to SCHED_CHAN_WAITING_FOR_CELLS */ scheduler_channel_wants_writes(ch2); tt_int_op(ch2->scheduler_state, ==, SCHED_CHAN_WAITING_FOR_CELLS); /* Drop ch2 back to idle */ scheduler_channel_doesnt_want_writes(ch2); tt_int_op(ch2->scheduler_state, ==, SCHED_CHAN_IDLE); /* ...and back to SCHED_CHAN_WAITING_FOR_CELLS */ scheduler_channel_wants_writes(ch2); tt_int_op(ch2->scheduler_state, ==, SCHED_CHAN_WAITING_FOR_CELLS); /* ...and this should kick ch2 into SCHED_CHAN_PENDING */ scheduler_channel_has_waiting_cells(ch2); tt_int_op(ch2->scheduler_state, ==, SCHED_CHAN_PENDING); tt_int_op(smartlist_len(channels_pending), ==, 2); /* * Now we've got two pending channels and need to fire off * scheduler_run(); first, unmock it. */ UNMOCK(scheduler_run); scheduler_run(); /* Now re-mock it */ MOCK(scheduler_run, scheduler_run_noop_mock); /* * Assert that they're still in the states we left and aren't still * pending */ tt_int_op(ch1->state, ==, CHANNEL_STATE_OPEN); tt_int_op(ch2->state, ==, CHANNEL_STATE_OPENING); tt_assert(ch1->scheduler_state != SCHED_CHAN_PENDING); tt_assert(ch2->scheduler_state != SCHED_CHAN_PENDING); tt_int_op(smartlist_len(channels_pending), ==, 0); /* Now, finish opening ch2, and get both back to pending */ channel_change_state(ch2, CHANNEL_STATE_OPEN); scheduler_channel_wants_writes(ch1); scheduler_channel_wants_writes(ch2); scheduler_channel_has_waiting_cells(ch1); scheduler_channel_has_waiting_cells(ch2); tt_int_op(ch1->state, ==, CHANNEL_STATE_OPEN); tt_int_op(ch2->state, ==, CHANNEL_STATE_OPEN); tt_int_op(ch1->scheduler_state, ==, SCHED_CHAN_PENDING); tt_int_op(ch2->scheduler_state, ==, SCHED_CHAN_PENDING); tt_int_op(smartlist_len(channels_pending), ==, 2); /* Now, set up the channel_flush_some_cells() mock */ MOCK(channel_flush_some_cells, channel_flush_some_cells_mock); /* * 16 cells on ch1 means it'll completely drain into the 32 cells * fakechan's num_cells_writeable() returns. */ channel_flush_some_cells_mock_set(ch1, 16); /* * This one should get sent back to pending, since num_cells_writeable() * will still return non-zero. */ channel_flush_some_cells_mock_set(ch2, 48); /* * And re-run the scheduler_run() loop with non-zero returns from * channel_flush_some_cells() this time. */ UNMOCK(scheduler_run); scheduler_run(); /* Now re-mock it */ MOCK(scheduler_run, scheduler_run_noop_mock); /* * ch1 should have gone to SCHED_CHAN_WAITING_FOR_CELLS, with 16 flushed * and 32 writeable. */ tt_int_op(ch1->scheduler_state, ==, SCHED_CHAN_WAITING_FOR_CELLS); /* * ...ch2 should also have gone to SCHED_CHAN_WAITING_FOR_CELLS, with * channel_more_to_flush() returning false and channel_num_cells_writeable() * > 0/ */ tt_int_op(ch2->scheduler_state, ==, SCHED_CHAN_WAITING_FOR_CELLS); /* Close */ channel_mark_for_close(ch1); tt_int_op(ch1->state, ==, CHANNEL_STATE_CLOSING); channel_mark_for_close(ch2); tt_int_op(ch2->state, ==, CHANNEL_STATE_CLOSING); channel_closed(ch1); tt_int_op(ch1->state, ==, CHANNEL_STATE_CLOSED); ch1 = NULL; channel_closed(ch2); tt_int_op(ch2->state, ==, CHANNEL_STATE_CLOSED); ch2 = NULL; /* Shut things down */ channel_flush_some_cells_mock_free_all(); channel_free_all(); scheduler_free_all(); mock_event_free_all(); done: tor_free(ch1); tor_free(ch2); UNMOCK(channel_flush_some_cells); UNMOCK(scheduler_compare_channels); UNMOCK(scheduler_run); UNMOCK(tor_libevent_get_base); } static void test_scheduler_queue_heuristic(void *arg) { time_t now = approx_time(); uint64_t qh; (void)arg; queue_heuristic = 0; queue_heuristic_timestamp = 0; /* Not yet inited case */ scheduler_update_queue_heuristic(now - 180); tt_u64_op(queue_heuristic, ==, 0); tt_int_op(queue_heuristic_timestamp, ==, now - 180); queue_heuristic = 1000000000L; queue_heuristic_timestamp = now - 120; scheduler_update_queue_heuristic(now - 119); tt_u64_op(queue_heuristic, ==, 500000000L); tt_int_op(queue_heuristic_timestamp, ==, now - 119); scheduler_update_queue_heuristic(now - 116); tt_u64_op(queue_heuristic, ==, 62500000L); tt_int_op(queue_heuristic_timestamp, ==, now - 116); qh = scheduler_get_queue_heuristic(); tt_u64_op(qh, ==, 0); done: return; } struct testcase_t scheduler_tests[] = { { "channel_states", test_scheduler_channel_states, TT_FORK, NULL, NULL }, { "compare_channels", test_scheduler_compare_channels, TT_FORK, NULL, NULL }, { "initfree", test_scheduler_initfree, TT_FORK, NULL, NULL }, { "loop", test_scheduler_loop, TT_FORK, NULL, NULL }, { "queue_heuristic", test_scheduler_queue_heuristic, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_controller_events.c0000644000175000017500000003454612621363246016152 00000000000000/* Copyright (c) 2013-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define CONNECTION_PRIVATE #define TOR_CHANNEL_INTERNAL_ #define CONTROL_PRIVATE #include "or.h" #include "channel.h" #include "channeltls.h" #include "connection.h" #include "control.h" #include "test.h" static void help_test_bucket_note_empty(uint32_t expected_msec_since_midnight, int tokens_before, size_t tokens_removed, uint32_t msec_since_epoch) { uint32_t timestamp_var = 0; struct timeval tvnow; tvnow.tv_sec = msec_since_epoch / 1000; tvnow.tv_usec = (msec_since_epoch % 1000) * 1000; connection_buckets_note_empty_ts(×tamp_var, tokens_before, tokens_removed, &tvnow); tt_int_op(expected_msec_since_midnight, OP_EQ, timestamp_var); done: ; } static void test_cntev_bucket_note_empty(void *arg) { (void)arg; /* Two cases with nothing to note, because bucket was empty before; * 86442200 == 1970-01-02 00:00:42.200000 */ help_test_bucket_note_empty(0, 0, 0, 86442200); help_test_bucket_note_empty(0, -100, 100, 86442200); /* Nothing to note, because bucket has not been emptied. */ help_test_bucket_note_empty(0, 101, 100, 86442200); /* Bucket was emptied, note 42200 msec since midnight. */ help_test_bucket_note_empty(42200, 101, 101, 86442200); help_test_bucket_note_empty(42200, 101, 102, 86442200); } static void test_cntev_bucket_millis_empty(void *arg) { struct timeval tvnow; (void)arg; /* 1970-01-02 00:00:42.200000 */ tvnow.tv_sec = 86400 + 42; tvnow.tv_usec = 200000; /* Bucket has not been refilled. */ tt_int_op(0, OP_EQ, bucket_millis_empty(0, 42120, 0, 100, &tvnow)); tt_int_op(0, OP_EQ, bucket_millis_empty(-10, 42120, -10, 100, &tvnow)); /* Bucket was not empty. */ tt_int_op(0, OP_EQ, bucket_millis_empty(10, 42120, 20, 100, &tvnow)); /* Bucket has been emptied 80 msec ago and has just been refilled. */ tt_int_op(80, OP_EQ, bucket_millis_empty(-20, 42120, -10, 100, &tvnow)); tt_int_op(80, OP_EQ, bucket_millis_empty(-10, 42120, 0, 100, &tvnow)); tt_int_op(80, OP_EQ, bucket_millis_empty(0, 42120, 10, 100, &tvnow)); /* Bucket has been emptied 180 msec ago, last refill was 100 msec ago * which was insufficient to make it positive, so cap msec at 100. */ tt_int_op(100, OP_EQ, bucket_millis_empty(0, 42020, 1, 100, &tvnow)); /* 1970-01-02 00:00:00:050000 */ tvnow.tv_sec = 86400; tvnow.tv_usec = 50000; /* Last emptied 30 msec before midnight, tvnow is 50 msec after * midnight, that's 80 msec in total. */ tt_int_op(80, OP_EQ, bucket_millis_empty(0, 86400000 - 30, 1, 100, &tvnow)); done: ; } static void add_testing_cell_stats_entry(circuit_t *circ, uint8_t command, unsigned int waiting_time, unsigned int removed, unsigned int exitward) { testing_cell_stats_entry_t *ent = tor_malloc_zero( sizeof(testing_cell_stats_entry_t)); ent->command = command; ent->waiting_time = waiting_time; ent->removed = removed; ent->exitward = exitward; if (!circ->testing_cell_stats) circ->testing_cell_stats = smartlist_new(); smartlist_add(circ->testing_cell_stats, ent); } static void test_cntev_sum_up_cell_stats(void *arg) { or_circuit_t *or_circ; circuit_t *circ; cell_stats_t *cell_stats = NULL; (void)arg; /* This circuit is fake. */ or_circ = tor_malloc_zero(sizeof(or_circuit_t)); or_circ->base_.magic = OR_CIRCUIT_MAGIC; or_circ->base_.purpose = CIRCUIT_PURPOSE_OR; circ = TO_CIRCUIT(or_circ); /* A single RELAY cell was added to the appward queue. */ cell_stats = tor_malloc_zero(sizeof(cell_stats_t)); add_testing_cell_stats_entry(circ, CELL_RELAY, 0, 0, 0); sum_up_cell_stats_by_command(circ, cell_stats); tt_u64_op(1, OP_EQ, cell_stats->added_cells_appward[CELL_RELAY]); /* A single RELAY cell was added to the exitward queue. */ add_testing_cell_stats_entry(circ, CELL_RELAY, 0, 0, 1); sum_up_cell_stats_by_command(circ, cell_stats); tt_u64_op(1, OP_EQ, cell_stats->added_cells_exitward[CELL_RELAY]); /* A single RELAY cell was removed from the appward queue where it spent * 20 msec. */ add_testing_cell_stats_entry(circ, CELL_RELAY, 2, 1, 0); sum_up_cell_stats_by_command(circ, cell_stats); tt_u64_op(20, OP_EQ, cell_stats->total_time_appward[CELL_RELAY]); tt_u64_op(1, OP_EQ, cell_stats->removed_cells_appward[CELL_RELAY]); /* A single RELAY cell was removed from the exitward queue where it * spent 30 msec. */ add_testing_cell_stats_entry(circ, CELL_RELAY, 3, 1, 1); sum_up_cell_stats_by_command(circ, cell_stats); tt_u64_op(30, OP_EQ, cell_stats->total_time_exitward[CELL_RELAY]); tt_u64_op(1, OP_EQ, cell_stats->removed_cells_exitward[CELL_RELAY]); done: tor_free(cell_stats); tor_free(or_circ); } static void test_cntev_append_cell_stats(void *arg) { smartlist_t *event_parts; char *cp = NULL; const char *key = "Z"; uint64_t include_if_non_zero[CELL_COMMAND_MAX_ + 1], number_to_include[CELL_COMMAND_MAX_ + 1]; (void)arg; event_parts = smartlist_new(); memset(include_if_non_zero, 0, (CELL_COMMAND_MAX_ + 1) * sizeof(uint64_t)); memset(number_to_include, 0, (CELL_COMMAND_MAX_ + 1) * sizeof(uint64_t)); /* All array entries empty. */ append_cell_stats_by_command(event_parts, key, include_if_non_zero, number_to_include); tt_int_op(0, OP_EQ, smartlist_len(event_parts)); /* There's a RELAY cell to include, but the corresponding field in * include_if_non_zero is still zero. */ number_to_include[CELL_RELAY] = 1; append_cell_stats_by_command(event_parts, key, include_if_non_zero, number_to_include); tt_int_op(0, OP_EQ, smartlist_len(event_parts)); /* Now include single RELAY cell. */ include_if_non_zero[CELL_RELAY] = 2; append_cell_stats_by_command(event_parts, key, include_if_non_zero, number_to_include); cp = smartlist_pop_last(event_parts); tt_str_op("Z=relay:1", OP_EQ, cp); tor_free(cp); /* Add four CREATE cells. */ include_if_non_zero[CELL_CREATE] = 3; number_to_include[CELL_CREATE] = 4; append_cell_stats_by_command(event_parts, key, include_if_non_zero, number_to_include); cp = smartlist_pop_last(event_parts); tt_str_op("Z=create:4,relay:1", OP_EQ, cp); done: tor_free(cp); smartlist_free(event_parts); } static void test_cntev_format_cell_stats(void *arg) { char *event_string = NULL; origin_circuit_t *ocirc = NULL; or_circuit_t *or_circ = NULL; cell_stats_t *cell_stats = NULL; channel_tls_t *n_chan=NULL, *p_chan=NULL; (void)arg; n_chan = tor_malloc_zero(sizeof(channel_tls_t)); n_chan->base_.global_identifier = 1; ocirc = tor_malloc_zero(sizeof(origin_circuit_t)); ocirc->base_.magic = ORIGIN_CIRCUIT_MAGIC; ocirc->base_.purpose = CIRCUIT_PURPOSE_C_GENERAL; ocirc->global_identifier = 2; ocirc->base_.n_circ_id = 3; ocirc->base_.n_chan = &(n_chan->base_); /* Origin circuit was completely idle. */ cell_stats = tor_malloc_zero(sizeof(cell_stats_t)); format_cell_stats(&event_string, TO_CIRCUIT(ocirc), cell_stats); tt_str_op("ID=2 OutboundQueue=3 OutboundConn=1", OP_EQ, event_string); tor_free(event_string); /* Origin circuit had 4 RELAY cells added to its exitward queue. */ cell_stats->added_cells_exitward[CELL_RELAY] = 4; format_cell_stats(&event_string, TO_CIRCUIT(ocirc), cell_stats); tt_str_op("ID=2 OutboundQueue=3 OutboundConn=1 OutboundAdded=relay:4", OP_EQ, event_string); tor_free(event_string); /* Origin circuit also had 5 CREATE2 cells added to its exitward * queue. */ cell_stats->added_cells_exitward[CELL_CREATE2] = 5; format_cell_stats(&event_string, TO_CIRCUIT(ocirc), cell_stats); tt_str_op("ID=2 OutboundQueue=3 OutboundConn=1 OutboundAdded=relay:4," "create2:5", OP_EQ, event_string); tor_free(event_string); /* Origin circuit also had 7 RELAY cells removed from its exitward queue * which together spent 6 msec in the queue. */ cell_stats->total_time_exitward[CELL_RELAY] = 6; cell_stats->removed_cells_exitward[CELL_RELAY] = 7; format_cell_stats(&event_string, TO_CIRCUIT(ocirc), cell_stats); tt_str_op("ID=2 OutboundQueue=3 OutboundConn=1 OutboundAdded=relay:4," "create2:5 OutboundRemoved=relay:7 OutboundTime=relay:6", OP_EQ, event_string); tor_free(event_string); p_chan = tor_malloc_zero(sizeof(channel_tls_t)); p_chan->base_.global_identifier = 2; or_circ = tor_malloc_zero(sizeof(or_circuit_t)); or_circ->base_.magic = OR_CIRCUIT_MAGIC; or_circ->base_.purpose = CIRCUIT_PURPOSE_OR; or_circ->p_circ_id = 8; or_circ->p_chan = &(p_chan->base_); or_circ->base_.n_circ_id = 9; or_circ->base_.n_chan = &(n_chan->base_); tor_free(cell_stats); /* OR circuit was idle. */ cell_stats = tor_malloc_zero(sizeof(cell_stats_t)); format_cell_stats(&event_string, TO_CIRCUIT(or_circ), cell_stats); tt_str_op("InboundQueue=8 InboundConn=2 OutboundQueue=9 OutboundConn=1", OP_EQ, event_string); tor_free(event_string); /* OR circuit had 3 RELAY cells added to its appward queue. */ cell_stats->added_cells_appward[CELL_RELAY] = 3; format_cell_stats(&event_string, TO_CIRCUIT(or_circ), cell_stats); tt_str_op("InboundQueue=8 InboundConn=2 InboundAdded=relay:3 " "OutboundQueue=9 OutboundConn=1", OP_EQ, event_string); tor_free(event_string); /* OR circuit had 7 RELAY cells removed from its appward queue which * together spent 6 msec in the queue. */ cell_stats->total_time_appward[CELL_RELAY] = 6; cell_stats->removed_cells_appward[CELL_RELAY] = 7; format_cell_stats(&event_string, TO_CIRCUIT(or_circ), cell_stats); tt_str_op("InboundQueue=8 InboundConn=2 InboundAdded=relay:3 " "InboundRemoved=relay:7 InboundTime=relay:6 " "OutboundQueue=9 OutboundConn=1", OP_EQ, event_string); done: tor_free(cell_stats); tor_free(event_string); tor_free(or_circ); tor_free(ocirc); tor_free(p_chan); tor_free(n_chan); } static void test_cntev_event_mask(void *arg) { unsigned int test_event, selected_event; (void)arg; /* Check that nothing is interesting when no events are set */ control_testing_set_global_event_mask(EVENT_MASK_NONE_); /* Check that nothing is interesting between EVENT_MIN_ and EVENT_MAX_ */ for (test_event = EVENT_MIN_; test_event <= EVENT_MAX_; test_event++) tt_assert(!control_event_is_interesting(test_event)); /* Check that nothing is interesting outside EVENT_MIN_ to EVENT_MAX_ * This will break if control_event_is_interesting() checks its arguments */ for (test_event = 0; test_event < EVENT_MIN_; test_event++) tt_assert(!control_event_is_interesting(test_event)); for (test_event = EVENT_MAX_ + 1; test_event < EVENT_CAPACITY_; test_event++) tt_assert(!control_event_is_interesting(test_event)); /* Check that all valid events are interesting when all events are set */ control_testing_set_global_event_mask(EVENT_MASK_ALL_); /* Check that everything is interesting between EVENT_MIN_ and EVENT_MAX_ */ for (test_event = EVENT_MIN_; test_event <= EVENT_MAX_; test_event++) tt_assert(control_event_is_interesting(test_event)); /* Check that nothing is interesting outside EVENT_MIN_ to EVENT_MAX_ * This will break if control_event_is_interesting() checks its arguments */ for (test_event = 0; test_event < EVENT_MIN_; test_event++) tt_assert(!control_event_is_interesting(test_event)); for (test_event = EVENT_MAX_ + 1; test_event < EVENT_CAPACITY_; test_event++) tt_assert(!control_event_is_interesting(test_event)); /* Check that only that event is interesting when a single event is set */ for (selected_event = EVENT_MIN_; selected_event <= EVENT_MAX_; selected_event++) { control_testing_set_global_event_mask(EVENT_MASK_(selected_event)); /* Check that only this event is interesting * between EVENT_MIN_ and EVENT_MAX_ */ for (test_event = EVENT_MIN_; test_event <= EVENT_MAX_; test_event++) { if (test_event == selected_event) { tt_assert(control_event_is_interesting(test_event)); } else { tt_assert(!control_event_is_interesting(test_event)); } } /* Check that nothing is interesting outside EVENT_MIN_ to EVENT_MAX_ * This will break if control_event_is_interesting checks its arguments */ for (test_event = 0; test_event < EVENT_MIN_; test_event++) tt_assert(!control_event_is_interesting(test_event)); for (test_event = EVENT_MAX_ + 1; test_event < EVENT_CAPACITY_; test_event++) tt_assert(!control_event_is_interesting(test_event)); } /* Check that only that event is not-interesting * when a single event is un-set */ for (selected_event = EVENT_MIN_; selected_event <= EVENT_MAX_; selected_event++) { control_testing_set_global_event_mask( EVENT_MASK_ALL_ & ~(EVENT_MASK_(selected_event)) ); /* Check that only this event is not-interesting * between EVENT_MIN_ and EVENT_MAX_ */ for (test_event = EVENT_MIN_; test_event <= EVENT_MAX_; test_event++) { if (test_event == selected_event) { tt_assert(!control_event_is_interesting(test_event)); } else { tt_assert(control_event_is_interesting(test_event)); } } /* Check that nothing is interesting outside EVENT_MIN_ to EVENT_MAX_ * This will break if control_event_is_interesting checks its arguments */ for (test_event = 0; test_event < EVENT_MIN_; test_event++) tt_assert(!control_event_is_interesting(test_event)); for (test_event = EVENT_MAX_ + 1; test_event < EVENT_CAPACITY_; test_event++) tt_assert(!control_event_is_interesting(test_event)); } done: ; } #define TEST(name, flags) \ { #name, test_cntev_ ## name, flags, 0, NULL } struct testcase_t controller_event_tests[] = { TEST(bucket_note_empty, TT_FORK), TEST(bucket_millis_empty, TT_FORK), TEST(sum_up_cell_stats, TT_FORK), TEST(append_cell_stats, TT_FORK), TEST(format_cell_stats, TT_FORK), TEST(event_mask, TT_FORK), END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_entrynodes.c0000644000175000017500000005145612621363246014574 00000000000000/* Copyright (c) 2014-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #define STATEFILE_PRIVATE #define ENTRYNODES_PRIVATE #define ROUTERLIST_PRIVATE #include "or.h" #include "test.h" #include "entrynodes.h" #include "routerparse.h" #include "nodelist.h" #include "util.h" #include "routerlist.h" #include "routerset.h" #include "statefile.h" #include "config.h" #include "test_helpers.h" /* TODO: * choose_random_entry() test with state set. * * parse_state() tests with more than one guards. * * More tests for set_from_config(): Multiple nodes, use fingerprints, * use country codes. */ /** Dummy Tor state used in unittests. */ static or_state_t *dummy_state = NULL; static or_state_t * get_or_state_replacement(void) { return dummy_state; } /* Unittest cleanup function: Cleanup the fake network. */ static int fake_network_cleanup(const struct testcase_t *testcase, void *ptr) { (void) testcase; (void) ptr; routerlist_free_all(); nodelist_free_all(); entry_guards_free_all(); or_state_free(dummy_state); return 1; /* NOP */ } /* Unittest setup function: Setup a fake network. */ static void * fake_network_setup(const struct testcase_t *testcase) { (void) testcase; /* Setup fake state */ dummy_state = tor_malloc_zero(sizeof(or_state_t)); MOCK(get_or_state, get_or_state_replacement); /* Setup fake routerlist. */ helper_setup_fake_routerlist(); /* Return anything but NULL (it's interpreted as test fail) */ return dummy_state; } /** Test choose_random_entry() with none of our routers being guard nodes. */ static void test_choose_random_entry_no_guards(void *arg) { const node_t *chosen_entry = NULL; (void) arg; /* Try to pick an entry even though none of our routers are guards. */ chosen_entry = choose_random_entry(NULL); /* Unintuitively, we actually pick a random node as our entry, because router_choose_random_node() relaxes its constraints if it can't find a proper entry guard. */ tt_assert(chosen_entry); done: ; } /** Test choose_random_entry() with only one of our routers being a guard node. */ static void test_choose_random_entry_one_possible_guard(void *arg) { const node_t *chosen_entry = NULL; node_t *the_guard = NULL; smartlist_t *our_nodelist = NULL; (void) arg; /* Set one of the nodes to be a guard. */ our_nodelist = nodelist_get_list(); the_guard = smartlist_get(our_nodelist, 4); /* chosen by fair dice roll */ the_guard->is_possible_guard = 1; /* Pick an entry. Make sure we pick the node we marked as guard. */ chosen_entry = choose_random_entry(NULL); tt_ptr_op(chosen_entry, OP_EQ, the_guard); done: ; } /** Helper to conduct tests for populate_live_entry_guards(). This test adds some entry guards to our list, and then tests populate_live_entry_guards() to mke sure it filters them correctly. num_needed is the number of guard nodes we support. It's configurable to make sure we function properly with 1 or 3 guard nodes configured. */ static void populate_live_entry_guards_test_helper(int num_needed) { smartlist_t *our_nodelist = NULL; smartlist_t *live_entry_guards = smartlist_new(); const smartlist_t *all_entry_guards = get_entry_guards(); or_options_t *options = get_options_mutable(); int retval; /* Set NumEntryGuards to the provided number. */ options->NumEntryGuards = num_needed; tt_int_op(num_needed, OP_EQ, decide_num_guards(options, 0)); /* The global entry guards smartlist should be empty now. */ tt_int_op(smartlist_len(all_entry_guards), OP_EQ, 0); /* Walk the nodelist and add all nodes as entry guards. */ our_nodelist = nodelist_get_list(); tt_int_op(smartlist_len(our_nodelist), OP_EQ, HELPER_NUMBER_OF_DESCRIPTORS); SMARTLIST_FOREACH_BEGIN(our_nodelist, const node_t *, node) { const node_t *node_tmp; node_tmp = add_an_entry_guard(node, 0, 1, 0, 0); tt_assert(node_tmp); } SMARTLIST_FOREACH_END(node); /* Make sure the nodes were added as entry guards. */ tt_int_op(smartlist_len(all_entry_guards), OP_EQ, HELPER_NUMBER_OF_DESCRIPTORS); /* Ensure that all the possible entry guards are enough to satisfy us. */ tt_int_op(smartlist_len(all_entry_guards), OP_GE, num_needed); /* Walk the entry guard list for some sanity checking */ SMARTLIST_FOREACH_BEGIN(all_entry_guards, const entry_guard_t *, entry) { /* Since we called add_an_entry_guard() with 'for_discovery' being False, all guards should have made_contact enabled. */ tt_int_op(entry->made_contact, OP_EQ, 1); } SMARTLIST_FOREACH_END(entry); /* First, try to get some fast guards. This should fail. */ retval = populate_live_entry_guards(live_entry_guards, all_entry_guards, NULL, NO_DIRINFO, /* Don't care about DIRINFO*/ 0, 0, 1); /* We want fast guard! */ tt_int_op(retval, OP_EQ, 0); tt_int_op(smartlist_len(live_entry_guards), OP_EQ, 0); /* Now try to get some stable guards. This should fail too. */ retval = populate_live_entry_guards(live_entry_guards, all_entry_guards, NULL, NO_DIRINFO, 0, 1, /* We want stable guard! */ 0); tt_int_op(retval, OP_EQ, 0); tt_int_op(smartlist_len(live_entry_guards), OP_EQ, 0); /* Now try to get any guard we can find. This should succeed. */ retval = populate_live_entry_guards(live_entry_guards, all_entry_guards, NULL, NO_DIRINFO, 0, 0, 0); /* No restrictions! */ /* Since we had more than enough guards in 'all_entry_guards', we should have added 'num_needed' of them to live_entry_guards. 'retval' should be 1 since we now have enough live entry guards to pick one. */ tt_int_op(retval, OP_EQ, 1); tt_int_op(smartlist_len(live_entry_guards), OP_EQ, num_needed); done: smartlist_free(live_entry_guards); } /* Test populate_live_entry_guards() for 1 guard node. */ static void test_populate_live_entry_guards_1guard(void *arg) { (void) arg; populate_live_entry_guards_test_helper(1); } /* Test populate_live_entry_guards() for 3 guard nodes. */ static void test_populate_live_entry_guards_3guards(void *arg) { (void) arg; populate_live_entry_guards_test_helper(3); } /** Append some EntryGuard lines to the Tor state at state. entry_guard_lines is a smartlist containing 2-tuple smartlists that carry the key and values of the statefile. As an example: entry_guard_lines = (("EntryGuard", "name 67E72FF33D7D41BF11C569646A0A7B4B188340DF DirCache"), ("EntryGuardDownSince", "2014-06-07 16:02:46 2014-06-07 16:02:46")) */ static void state_insert_entry_guard_helper(or_state_t *state, smartlist_t *entry_guard_lines) { config_line_t **next, *line; next = &state->EntryGuards; *next = NULL; /* Loop over all the state lines in the smartlist */ SMARTLIST_FOREACH_BEGIN(entry_guard_lines, const smartlist_t *,state_lines) { /* Get key and value for each line */ const char *state_key = smartlist_get(state_lines, 0); const char *state_value = smartlist_get(state_lines, 1); *next = line = tor_malloc_zero(sizeof(config_line_t)); line->key = tor_strdup(state_key); tor_asprintf(&line->value, "%s", state_value); next = &(line->next); } SMARTLIST_FOREACH_END(state_lines); } /** Free memory occupied by entry_guard_lines. */ static void state_lines_free(smartlist_t *entry_guard_lines) { SMARTLIST_FOREACH_BEGIN(entry_guard_lines, smartlist_t *, state_lines) { char *state_key = smartlist_get(state_lines, 0); char *state_value = smartlist_get(state_lines, 1); tor_free(state_key); tor_free(state_value); smartlist_free(state_lines); } SMARTLIST_FOREACH_END(state_lines); smartlist_free(entry_guard_lines); } /* Tests entry_guards_parse_state(). It creates a fake Tor state with a saved entry guard and makes sure that Tor can parse it and creates the right entry node out of it. */ static void test_entry_guards_parse_state_simple(void *arg) { or_state_t *state = or_state_new(); const smartlist_t *all_entry_guards = get_entry_guards(); smartlist_t *entry_state_lines = smartlist_new(); char *msg = NULL; int retval; /* Details of our fake guard node */ const char *nickname = "hagbard"; const char *fpr = "B29D536DD1752D542E1FBB3C9CE4449D51298212"; const char *tor_version = "0.2.5.3-alpha-dev"; const char *added_at = get_yesterday_date_str(); const char *unlisted_since = "2014-06-08 16:16:50"; (void) arg; /* The global entry guards smartlist should be empty now. */ tt_int_op(smartlist_len(all_entry_guards), OP_EQ, 0); { /* Prepare the state entry */ /* Prepare the smartlist to hold the key/value of each line */ smartlist_t *state_line = smartlist_new(); smartlist_add_asprintf(state_line, "EntryGuard"); smartlist_add_asprintf(state_line, "%s %s %s", nickname, fpr, "DirCache"); smartlist_add(entry_state_lines, state_line); state_line = smartlist_new(); smartlist_add_asprintf(state_line, "EntryGuardAddedBy"); smartlist_add_asprintf(state_line, "%s %s %s", fpr, tor_version, added_at); smartlist_add(entry_state_lines, state_line); state_line = smartlist_new(); smartlist_add_asprintf(state_line, "EntryGuardUnlistedSince"); smartlist_add_asprintf(state_line, "%s", unlisted_since); smartlist_add(entry_state_lines, state_line); } /* Inject our lines in the state */ state_insert_entry_guard_helper(state, entry_state_lines); /* Parse state */ retval = entry_guards_parse_state(state, 1, &msg); tt_int_op(retval, OP_GE, 0); /* Test that the guard was registered. We need to re-get the entry guard list since its pointer was overwritten in entry_guards_parse_state(). */ all_entry_guards = get_entry_guards(); tt_int_op(smartlist_len(all_entry_guards), OP_EQ, 1); { /* Test the entry guard structure */ char hex_digest[1024]; char str_time[1024]; const entry_guard_t *e = smartlist_get(all_entry_guards, 0); tt_str_op(e->nickname, OP_EQ, nickname); /* Verify nickname */ base16_encode(hex_digest, sizeof(hex_digest), e->identity, DIGEST_LEN); tt_str_op(hex_digest, OP_EQ, fpr); /* Verify fingerprint */ tt_assert(e->is_dir_cache); /* Verify dirness */ tt_str_op(e->chosen_by_version, OP_EQ, tor_version); /* Verify version */ tt_assert(e->made_contact); /* All saved guards have been contacted */ tt_assert(e->bad_since); /* Verify bad_since timestamp */ format_iso_time(str_time, e->bad_since); tt_str_op(str_time, OP_EQ, unlisted_since); /* The rest should be unset */ tt_assert(!e->unreachable_since); tt_assert(!e->can_retry); tt_assert(!e->path_bias_noticed); tt_assert(!e->path_bias_warned); tt_assert(!e->path_bias_extreme); tt_assert(!e->path_bias_disabled); tt_assert(!e->path_bias_use_noticed); tt_assert(!e->path_bias_use_extreme); tt_assert(!e->last_attempted); } done: state_lines_free(entry_state_lines); or_state_free(state); tor_free(msg); } /** Similar to test_entry_guards_parse_state_simple() but aims to test the PathBias-related details of the entry guard. */ static void test_entry_guards_parse_state_pathbias(void *arg) { or_state_t *state = or_state_new(); const smartlist_t *all_entry_guards = get_entry_guards(); char *msg = NULL; int retval; smartlist_t *entry_state_lines = smartlist_new(); /* Path bias details of the fake guard */ const double circ_attempts = 9; const double circ_successes = 8; const double successful_closed = 4; const double collapsed = 2; const double unusable = 0; const double timeouts = 1; (void) arg; /* The global entry guards smartlist should be empty now. */ tt_int_op(smartlist_len(all_entry_guards), OP_EQ, 0); { /* Prepare the state entry */ /* Prepare the smartlist to hold the key/value of each line */ smartlist_t *state_line = smartlist_new(); smartlist_add_asprintf(state_line, "EntryGuard"); smartlist_add_asprintf(state_line, "givethanks B29D536DD1752D542E1FBB3C9CE4449D51298212 NoDirCache"); smartlist_add(entry_state_lines, state_line); state_line = smartlist_new(); smartlist_add_asprintf(state_line, "EntryGuardAddedBy"); smartlist_add_asprintf(state_line, "B29D536DD1752D542E1FBB3C9CE4449D51298212 0.2.5.3-alpha-dev " "%s", get_yesterday_date_str()); smartlist_add(entry_state_lines, state_line); state_line = smartlist_new(); smartlist_add_asprintf(state_line, "EntryGuardUnlistedSince"); smartlist_add_asprintf(state_line, "2014-06-08 16:16:50"); smartlist_add(entry_state_lines, state_line); state_line = smartlist_new(); smartlist_add_asprintf(state_line, "EntryGuardPathBias"); smartlist_add_asprintf(state_line, "%f %f %f %f %f %f", circ_attempts, circ_successes, successful_closed, collapsed, unusable, timeouts); smartlist_add(entry_state_lines, state_line); } /* Inject our lines in the state */ state_insert_entry_guard_helper(state, entry_state_lines); /* Parse state */ retval = entry_guards_parse_state(state, 1, &msg); tt_int_op(retval, OP_GE, 0); /* Test that the guard was registered */ all_entry_guards = get_entry_guards(); tt_int_op(smartlist_len(all_entry_guards), OP_EQ, 1); { /* Test the path bias of this guard */ const entry_guard_t *e = smartlist_get(all_entry_guards, 0); tt_assert(!e->is_dir_cache); tt_assert(!e->can_retry); /* XXX tt_double_op doesn't support equality. Cast to int for now. */ tt_int_op((int)e->circ_attempts, OP_EQ, (int)circ_attempts); tt_int_op((int)e->circ_successes, OP_EQ, (int)circ_successes); tt_int_op((int)e->successful_circuits_closed, OP_EQ, (int)successful_closed); tt_int_op((int)e->timeouts, OP_EQ, (int)timeouts); tt_int_op((int)e->collapsed_circuits, OP_EQ, (int)collapsed); tt_int_op((int)e->unusable_circuits, OP_EQ, (int)unusable); } done: or_state_free(state); state_lines_free(entry_state_lines); tor_free(msg); } /* Simple test of entry_guards_set_from_config() by specifying a particular EntryNode and making sure it gets picked. */ static void test_entry_guards_set_from_config(void *arg) { or_options_t *options = get_options_mutable(); const smartlist_t *all_entry_guards = get_entry_guards(); const char *entrynodes_str = "test003r"; const node_t *chosen_entry = NULL; int retval; (void) arg; /* Prase EntryNodes as a routerset. */ options->EntryNodes = routerset_new(); retval = routerset_parse(options->EntryNodes, entrynodes_str, "test_entrynodes"); tt_int_op(retval, OP_GE, 0); /* Read nodes from EntryNodes */ entry_guards_set_from_config(options); /* Test that only one guard was added. */ tt_int_op(smartlist_len(all_entry_guards), OP_EQ, 1); /* Make sure it was the guard we specified. */ chosen_entry = choose_random_entry(NULL); tt_str_op(chosen_entry->ri->nickname, OP_EQ, entrynodes_str); done: routerset_free(options->EntryNodes); } static void test_entry_is_time_to_retry(void *arg) { entry_guard_t *test_guard; time_t now; int retval; (void)arg; now = time(NULL); test_guard = tor_malloc_zero(sizeof(entry_guard_t)); test_guard->last_attempted = now - 10; test_guard->unreachable_since = now - 1; retval = entry_is_time_to_retry(test_guard,now); tt_int_op(retval,OP_EQ,1); test_guard->unreachable_since = now - (6*60*60 - 1); test_guard->last_attempted = now - (60*60 + 1); retval = entry_is_time_to_retry(test_guard,now); tt_int_op(retval,OP_EQ,1); test_guard->last_attempted = now - (60*60 - 1); retval = entry_is_time_to_retry(test_guard,now); tt_int_op(retval,OP_EQ,0); test_guard->unreachable_since = now - (6*60*60 + 1); test_guard->last_attempted = now - (4*60*60 + 1); retval = entry_is_time_to_retry(test_guard,now); tt_int_op(retval,OP_EQ,1); test_guard->unreachable_since = now - (3*24*60*60 - 1); test_guard->last_attempted = now - (4*60*60 + 1); retval = entry_is_time_to_retry(test_guard,now); tt_int_op(retval,OP_EQ,1); test_guard->unreachable_since = now - (3*24*60*60 + 1); test_guard->last_attempted = now - (18*60*60 + 1); retval = entry_is_time_to_retry(test_guard,now); tt_int_op(retval,OP_EQ,1); test_guard->unreachable_since = now - (7*24*60*60 - 1); test_guard->last_attempted = now - (18*60*60 + 1); retval = entry_is_time_to_retry(test_guard,now); tt_int_op(retval,OP_EQ,1); test_guard->last_attempted = now - (18*60*60 - 1); retval = entry_is_time_to_retry(test_guard,now); tt_int_op(retval,OP_EQ,0); test_guard->unreachable_since = now - (7*24*60*60 + 1); test_guard->last_attempted = now - (36*60*60 + 1); retval = entry_is_time_to_retry(test_guard,now); tt_int_op(retval,OP_EQ,1); test_guard->unreachable_since = now - (7*24*60*60 + 1); test_guard->last_attempted = now - (36*60*60 + 1); retval = entry_is_time_to_retry(test_guard,now); tt_int_op(retval,OP_EQ,1); done: tor_free(test_guard); } /** XXX Do some tests that entry_is_live() */ static void test_entry_is_live(void *arg) { smartlist_t *our_nodelist = NULL; const smartlist_t *all_entry_guards = get_entry_guards(); const node_t *test_node = NULL; const entry_guard_t *test_entry = NULL; const char *msg; int which_node; (void) arg; /* The global entry guards smartlist should be empty now. */ tt_int_op(smartlist_len(all_entry_guards), OP_EQ, 0); /* Walk the nodelist and add all nodes as entry guards. */ our_nodelist = nodelist_get_list(); tt_int_op(smartlist_len(our_nodelist), OP_EQ, HELPER_NUMBER_OF_DESCRIPTORS); SMARTLIST_FOREACH_BEGIN(our_nodelist, const node_t *, node) { const node_t *node_tmp; node_tmp = add_an_entry_guard(node, 0, 1, 0, 0); tt_assert(node_tmp); tt_int_op(node->is_stable, OP_EQ, 0); tt_int_op(node->is_fast, OP_EQ, 0); } SMARTLIST_FOREACH_END(node); /* Make sure the nodes were added as entry guards. */ tt_int_op(smartlist_len(all_entry_guards), OP_EQ, HELPER_NUMBER_OF_DESCRIPTORS); /* Now get a random test entry that we will use for this unit test. */ which_node = 3; /* (chosen by fair dice roll) */ test_entry = smartlist_get(all_entry_guards, which_node); /* Let's do some entry_is_live() tests! */ /* Require the node to be stable, but it's not. Should fail. Also enable 'assume_reachable' because why not. */ test_node = entry_is_live(test_entry, ENTRY_NEED_UPTIME | ENTRY_ASSUME_REACHABLE, &msg); tt_assert(!test_node); /* Require the node to be fast, but it's not. Should fail. */ test_node = entry_is_live(test_entry, ENTRY_NEED_CAPACITY | ENTRY_ASSUME_REACHABLE, &msg); tt_assert(!test_node); /* Don't impose any restrictions on the node. Should succeed. */ test_node = entry_is_live(test_entry, 0, &msg); tt_assert(test_node); tt_ptr_op(test_node, OP_EQ, node_get_by_id(test_entry->identity)); /* Require descriptor for this node. It has one so it should succeed. */ test_node = entry_is_live(test_entry, ENTRY_NEED_DESCRIPTOR, &msg); tt_assert(test_node); tt_ptr_op(test_node, OP_EQ, node_get_by_id(test_entry->identity)); done: ; /* XXX */ } static const struct testcase_setup_t fake_network = { fake_network_setup, fake_network_cleanup }; struct testcase_t entrynodes_tests[] = { { "entry_is_time_to_retry", test_entry_is_time_to_retry, TT_FORK, NULL, NULL }, { "choose_random_entry_no_guards", test_choose_random_entry_no_guards, TT_FORK, &fake_network, NULL }, { "choose_random_entry_one_possibleguard", test_choose_random_entry_one_possible_guard, TT_FORK, &fake_network, NULL }, { "populate_live_entry_guards_1guard", test_populate_live_entry_guards_1guard, TT_FORK, &fake_network, NULL }, { "populate_live_entry_guards_3guards", test_populate_live_entry_guards_3guards, TT_FORK, &fake_network, NULL }, { "entry_guards_parse_state_simple", test_entry_guards_parse_state_simple, TT_FORK, &fake_network, NULL }, { "entry_guards_parse_state_pathbias", test_entry_guards_parse_state_pathbias, TT_FORK, &fake_network, NULL }, { "entry_guards_set_from_config", test_entry_guards_set_from_config, TT_FORK, &fake_network, NULL }, { "entry_is_live", test_entry_is_live, TT_FORK, &fake_network, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_util_slow.c0000644000175000017500000002761612621363246014424 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #define UTIL_PRIVATE #include "util.h" #include "util_process.h" #include "crypto.h" #include "torlog.h" #include "test.h" #ifndef BUILDDIR #define BUILDDIR "." #endif #ifdef _WIN32 #define notify_pending_waitpid_callbacks() STMT_NIL #define TEST_CHILD "test-child.exe" #define EOL "\r\n" #else #define TEST_CHILD (BUILDDIR "/src/test/test-child") #define EOL "\n" #endif #ifdef _WIN32 /* I've assumed Windows doesn't have the gap between fork and exec * that causes the race condition on unix-like platforms */ #define MATCH_PROCESS_STATUS(s1,s2) ((s1) == (s2)) #else /* work around a race condition of the timing of SIGCHLD handler updates * to the process_handle's fields, and checks of those fields * * TODO: Once we can signal failure to exec, change PROCESS_STATUS_RUNNING to * PROCESS_STATUS_ERROR (and similarly with *_OR_NOTRUNNING) */ #define PROCESS_STATUS_RUNNING_OR_NOTRUNNING (PROCESS_STATUS_RUNNING+1) #define IS_RUNNING_OR_NOTRUNNING(s) \ ((s) == PROCESS_STATUS_RUNNING || (s) == PROCESS_STATUS_NOTRUNNING) /* well, this is ugly */ #define MATCH_PROCESS_STATUS(s1,s2) \ ( (s1) == (s2) \ ||((s1) == PROCESS_STATUS_RUNNING_OR_NOTRUNNING \ && IS_RUNNING_OR_NOTRUNNING(s2)) \ ||((s2) == PROCESS_STATUS_RUNNING_OR_NOTRUNNING \ && IS_RUNNING_OR_NOTRUNNING(s1))) #endif // _WIN32 /** Helper function for testing tor_spawn_background */ static void run_util_spawn_background(const char *argv[], const char *expected_out, const char *expected_err, int expected_exit, int expected_status) { int retval, exit_code; ssize_t pos; process_handle_t *process_handle=NULL; char stdout_buf[100], stderr_buf[100]; int status; /* Start the program */ #ifdef _WIN32 status = tor_spawn_background(NULL, argv, NULL, &process_handle); #else status = tor_spawn_background(argv[0], argv, NULL, &process_handle); #endif notify_pending_waitpid_callbacks(); /* the race condition doesn't affect status, * because status isn't updated by the SIGCHLD handler, * but we still need to handle PROCESS_STATUS_RUNNING_OR_NOTRUNNING */ tt_assert(MATCH_PROCESS_STATUS(expected_status, status)); if (status == PROCESS_STATUS_ERROR) { tt_ptr_op(process_handle, OP_EQ, NULL); return; } tt_assert(process_handle != NULL); /* When a spawned process forks, fails, then exits very quickly, * (this typically occurs when exec fails) * there is a race condition between the SIGCHLD handler * updating the process_handle's fields, and this test * checking the process status in those fields. * The SIGCHLD update can occur before or after the code below executes. * This causes intermittent failures in spawn_background_fail(), * typically when the machine is under load. * We use PROCESS_STATUS_RUNNING_OR_NOTRUNNING to avoid this issue. */ /* the race condition affects the change in * process_handle->status from RUNNING to NOTRUNNING */ tt_assert(MATCH_PROCESS_STATUS(expected_status, process_handle->status)); #ifndef _WIN32 notify_pending_waitpid_callbacks(); /* the race condition affects the change in * process_handle->waitpid_cb to NULL, * so we skip the check if expected_status is ambiguous, * that is, PROCESS_STATUS_RUNNING_OR_NOTRUNNING */ tt_assert(process_handle->waitpid_cb != NULL || expected_status == PROCESS_STATUS_RUNNING_OR_NOTRUNNING); #endif #ifdef _WIN32 tt_assert(process_handle->stdout_pipe != INVALID_HANDLE_VALUE); tt_assert(process_handle->stderr_pipe != INVALID_HANDLE_VALUE); tt_assert(process_handle->stdin_pipe != INVALID_HANDLE_VALUE); #else tt_assert(process_handle->stdout_pipe >= 0); tt_assert(process_handle->stderr_pipe >= 0); tt_assert(process_handle->stdin_pipe >= 0); #endif /* Check stdout */ pos = tor_read_all_from_process_stdout(process_handle, stdout_buf, sizeof(stdout_buf) - 1); tt_assert(pos >= 0); stdout_buf[pos] = '\0'; tt_int_op(strlen(expected_out),OP_EQ, pos); tt_str_op(expected_out,OP_EQ, stdout_buf); notify_pending_waitpid_callbacks(); /* Check it terminated correctly */ retval = tor_get_exit_code(process_handle, 1, &exit_code); tt_int_op(PROCESS_EXIT_EXITED,OP_EQ, retval); tt_int_op(expected_exit,OP_EQ, exit_code); // TODO: Make test-child exit with something other than 0 #ifndef _WIN32 notify_pending_waitpid_callbacks(); tt_ptr_op(process_handle->waitpid_cb, OP_EQ, NULL); #endif /* Check stderr */ pos = tor_read_all_from_process_stderr(process_handle, stderr_buf, sizeof(stderr_buf) - 1); tt_assert(pos >= 0); stderr_buf[pos] = '\0'; tt_str_op(expected_err,OP_EQ, stderr_buf); tt_int_op(strlen(expected_err),OP_EQ, pos); notify_pending_waitpid_callbacks(); done: if (process_handle) tor_process_handle_destroy(process_handle, 1); } /** Check that we can launch a process and read the output */ static void test_util_spawn_background_ok(void *ptr) { const char *argv[] = {TEST_CHILD, "--test", NULL}; const char *expected_out = "OUT"EOL "--test"EOL "SLEEPING"EOL "DONE" EOL; const char *expected_err = "ERR"EOL; (void)ptr; run_util_spawn_background(argv, expected_out, expected_err, 0, PROCESS_STATUS_RUNNING); } /** Check that failing to find the executable works as expected */ static void test_util_spawn_background_fail(void *ptr) { const char *argv[] = {BUILDDIR "/src/test/no-such-file", "--test", NULL}; const char *expected_err = ""; char expected_out[1024]; char code[32]; #ifdef _WIN32 const int expected_status = PROCESS_STATUS_ERROR; #else /* TODO: Once we can signal failure to exec, set this to be * PROCESS_STATUS_RUNNING_OR_ERROR */ const int expected_status = PROCESS_STATUS_RUNNING_OR_NOTRUNNING; #endif memset(expected_out, 0xf0, sizeof(expected_out)); memset(code, 0xf0, sizeof(code)); (void)ptr; tor_snprintf(code, sizeof(code), "%x/%x", 9 /* CHILD_STATE_FAILEXEC */ , ENOENT); tor_snprintf(expected_out, sizeof(expected_out), "ERR: Failed to spawn background process - code %s\n", code); run_util_spawn_background(argv, expected_out, expected_err, 255, expected_status); } /** Test that reading from a handle returns a partial read rather than * blocking */ static void test_util_spawn_background_partial_read_impl(int exit_early) { const int expected_exit = 0; const int expected_status = PROCESS_STATUS_RUNNING; int retval, exit_code; ssize_t pos = -1; process_handle_t *process_handle=NULL; int status; char stdout_buf[100], stderr_buf[100]; const char *argv[] = {TEST_CHILD, "--test", NULL}; const char *expected_out[] = { "OUT" EOL "--test" EOL "SLEEPING" EOL, "DONE" EOL, NULL }; const char *expected_err = "ERR" EOL; #ifndef _WIN32 int eof = 0; #endif int expected_out_ctr; if (exit_early) { argv[1] = "--hang"; expected_out[0] = "OUT"EOL "--hang"EOL "SLEEPING" EOL; } /* Start the program */ #ifdef _WIN32 status = tor_spawn_background(NULL, argv, NULL, &process_handle); #else status = tor_spawn_background(argv[0], argv, NULL, &process_handle); #endif tt_int_op(expected_status,OP_EQ, status); tt_assert(process_handle); tt_int_op(expected_status,OP_EQ, process_handle->status); /* Check stdout */ for (expected_out_ctr = 0; expected_out[expected_out_ctr] != NULL;) { #ifdef _WIN32 pos = tor_read_all_handle(process_handle->stdout_pipe, stdout_buf, sizeof(stdout_buf) - 1, NULL); #else /* Check that we didn't read the end of file last time */ tt_assert(!eof); pos = tor_read_all_handle(process_handle->stdout_handle, stdout_buf, sizeof(stdout_buf) - 1, NULL, &eof); #endif log_info(LD_GENERAL, "tor_read_all_handle() returned %d", (int)pos); /* We would have blocked, keep on trying */ if (0 == pos) continue; tt_assert(pos > 0); stdout_buf[pos] = '\0'; tt_str_op(expected_out[expected_out_ctr],OP_EQ, stdout_buf); tt_int_op(strlen(expected_out[expected_out_ctr]),OP_EQ, pos); expected_out_ctr++; } if (exit_early) { tor_process_handle_destroy(process_handle, 1); process_handle = NULL; goto done; } /* The process should have exited without writing more */ #ifdef _WIN32 pos = tor_read_all_handle(process_handle->stdout_pipe, stdout_buf, sizeof(stdout_buf) - 1, process_handle); tt_int_op(0,OP_EQ, pos); #else if (!eof) { /* We should have got all the data, but maybe not the EOF flag */ pos = tor_read_all_handle(process_handle->stdout_handle, stdout_buf, sizeof(stdout_buf) - 1, process_handle, &eof); tt_int_op(0,OP_EQ, pos); tt_assert(eof); } /* Otherwise, we got the EOF on the last read */ #endif /* Check it terminated correctly */ retval = tor_get_exit_code(process_handle, 1, &exit_code); tt_int_op(PROCESS_EXIT_EXITED,OP_EQ, retval); tt_int_op(expected_exit,OP_EQ, exit_code); // TODO: Make test-child exit with something other than 0 /* Check stderr */ pos = tor_read_all_from_process_stderr(process_handle, stderr_buf, sizeof(stderr_buf) - 1); tt_assert(pos >= 0); stderr_buf[pos] = '\0'; tt_str_op(expected_err,OP_EQ, stderr_buf); tt_int_op(strlen(expected_err),OP_EQ, pos); done: tor_process_handle_destroy(process_handle, 1); } static void test_util_spawn_background_partial_read(void *arg) { (void)arg; test_util_spawn_background_partial_read_impl(0); } static void test_util_spawn_background_exit_early(void *arg) { (void)arg; test_util_spawn_background_partial_read_impl(1); } static void test_util_spawn_background_waitpid_notify(void *arg) { int retval, exit_code; process_handle_t *process_handle=NULL; int status; int ms_timer; const char *argv[] = {TEST_CHILD, "--fast", NULL}; (void) arg; #ifdef _WIN32 status = tor_spawn_background(NULL, argv, NULL, &process_handle); #else status = tor_spawn_background(argv[0], argv, NULL, &process_handle); #endif tt_int_op(status, OP_EQ, PROCESS_STATUS_RUNNING); tt_ptr_op(process_handle, OP_NE, NULL); /* We're not going to look at the stdout/stderr output this time. Instead, * we're testing whether notify_pending_waitpid_calbacks() can report the * process exit (on unix) and/or whether tor_get_exit_code() can notice it * (on windows) */ #ifndef _WIN32 ms_timer = 30*1000; tt_ptr_op(process_handle->waitpid_cb, OP_NE, NULL); while (process_handle->waitpid_cb && ms_timer > 0) { tor_sleep_msec(100); ms_timer -= 100; notify_pending_waitpid_callbacks(); } tt_int_op(ms_timer, OP_GT, 0); tt_ptr_op(process_handle->waitpid_cb, OP_EQ, NULL); #endif ms_timer = 30*1000; while (((retval = tor_get_exit_code(process_handle, 0, &exit_code)) == PROCESS_EXIT_RUNNING) && ms_timer > 0) { tor_sleep_msec(100); ms_timer -= 100; } tt_int_op(ms_timer, OP_GT, 0); tt_int_op(retval, OP_EQ, PROCESS_EXIT_EXITED); done: tor_process_handle_destroy(process_handle, 1); } #undef TEST_CHILD #undef EOL #undef MATCH_PROCESS_STATUS #ifndef _WIN32 #undef PROCESS_STATUS_RUNNING_OR_NOTRUNNING #undef IS_RUNNING_OR_NOTRUNNING #endif #define UTIL_TEST(name, flags) \ { #name, test_util_ ## name, flags, NULL, NULL } struct testcase_t slow_util_tests[] = { UTIL_TEST(spawn_background_ok, 0), UTIL_TEST(spawn_background_fail, 0), UTIL_TEST(spawn_background_partial_read, 0), UTIL_TEST(spawn_background_exit_early, 0), UTIL_TEST(spawn_background_waitpid_notify, 0), END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_data.c0000644000175000017500000002407512621363246013310 00000000000000/* Copyright 2001-2004 Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /* Our unit test expect that the AUTHORITY_CERT_* public keys will sort * in this order. */ #define AUTHORITY_CERT_A AUTHORITY_CERT_3 #define AUTHORITY_CERT_B AUTHORITY_CERT_1 #define AUTHORITY_CERT_C AUTHORITY_CERT_2 #define AUTHORITY_SIGNKEY_A AUTHORITY_SIGNKEY_3 #define AUTHORITY_SIGNKEY_B AUTHORITY_SIGNKEY_1 #define AUTHORITY_SIGNKEY_C AUTHORITY_SIGNKEY_2 /** First of 3 example authority certificates for unit testing. */ const char AUTHORITY_CERT_A[] = "dir-key-certificate-version 3\n" "fingerprint D867ACF56A9D229B35C25F0090BC9867E906BE69\n" "dir-key-published 2008-12-12 18:07:24\n" "dir-key-expires 2009-12-12 18:07:24\n" "dir-identity-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIIBigKCAYEAveMpKlw8oD1YqFqpJchuwSR82BDhutbqgHiez3QO9FmzOctJpV+Y\n" "mpTYIJLS/qC+4GBKFF1VK0C4SoBrS3zri0qdXdE+vBGcyrxrjMklpxoqSKRY2011\n" "4eqYPghKlo5RzuqteBclGCHyNxWjUJeRKDWgvh+U/gr2uYM6fRm5q0fCzg4aECE7\n" "VP6fDGZrMbQI8jHpiMSoC9gkUASNEa6chLInlnP8/H5qUEW4TB9CN/q095pefuwL\n" "P+F+1Nz5hnM7fa5XmeMB8iM4RriUmOQlLBZgpQBMpEfWMIPcR9F1Gh3MxERqqUcH\n" "tmij+IZdeXg9OkCXykcabaYIhZD3meErn9Tax4oA/THduLfgli9zM0ExwzH1OooN\n" "L8rIcJ+2eBo3bQiQUbdYW71sl9w7nSPtircbJUa1mUvWYLPWQxFliPiQSetgJLMj\n" "VQqtPmV2hvN2Xk3lLfJO50qMTK7w7Gsaw8UtV4YDM1Hcjp/hQaIB1xfwhXgl+eUU\n" "btUa4c+cUTjHAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "dir-signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALPSUInyuEu6NV3NjozplaniIEBzQXEjv1x9/+mqnwZABpYVmuy9A8nx\n" "eoyY3sZFsnYwNW/IZjAgG23pEmevu3F+L4myMjjaa6ORl3MgRYQ4gmuFqpefrGdm\n" "ywRCleh2JerkQ4VxOuq10dn/abITzLyaZzMw30KXWp5pxKXOLtxFAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "dir-key-crosscert\n" "-----BEGIN ID SIGNATURE-----\n" "FTBJNR/Hlt4T53yUMp1r/QCSMCpkHJCbYBT0R0pvYqhqFfYN5qHRSICRXaFFImIF\n" "0DGWmwRza6DxPKNzkm5/b7I0de9zJW1jNNdQAQK5xppAtQcAafRdu8cBonnmh9KX\n" "k1NrAK/X00FYywju3yl/SxCn1GddVNkHYexEudmJMPM=\n" "-----END ID SIGNATURE-----\n" "dir-key-certification\n" "-----BEGIN SIGNATURE-----\n" "pjWguLFBfELZDc6DywL6Do21SCl7LcutfpM92MEn4WYeSNcTXNR6lRX7reOEJk4e\n" "NwEaMt+Hl7slgeR5wjnW3OmMmRPZK9bquNWbfD+sAOV9bRFZTpXIdleAQFPlwvMF\n" "z/Gzwspzn4i2Yh6hySShrctMmW8YL3OM8LsBXzBhp/rG2uHlsxmIsc13DA6HWt61\n" "ffY72uNE6KckDGsQ4wPGP9q69y6g+X+TNio1KPbsILbePv6EjbO+rS8FiS4njPlg\n" "SPYry1RaUvxzxTkswIzdE1tjJrUiqpbWlTGxrH9N4OszoLm45Pc784KLULrjKIoi\n" "Q+vRsGrcMBAa+kDowWU6H1ryKR7KOhzRTcf2uqLE/W3ezaRwmOG+ETmoVFwbhk2X\n" "OlbXEM9fWP+INvFkr6Z93VYL2jGkCjV7e3xXmre/Lb92fUcYi6t5dwzfV8gJnIoG\n" "eCHd0K8NrQK0ipVk/7zcPDKOPeo9Y5aj/f6X/pDHtb+Dd5sT+l82G/Tqy4DIYUYR\n" "-----END SIGNATURE-----\n"; /** The private signing key for AUTHORITY_CERT_1 */ const char AUTHORITY_SIGNKEY_A[] = "-----BEGIN RSA PRIVATE KEY-----\n" "MIICWwIBAAKBgQCz0lCJ8rhLujVdzY6M6ZWp4iBAc0FxI79cff/pqp8GQAaWFZrs\n" "vQPJ8XqMmN7GRbJ2MDVvyGYwIBtt6RJnr7txfi+JsjI42mujkZdzIEWEOIJrhaqX\n" "n6xnZssEQpXodiXq5EOFcTrqtdHZ/2myE8y8mmczMN9Cl1qeacSlzi7cRQIDAQAB\n" "AoGASpzUkDinIbzU0eQt5ugxEnliOnvYRpK3nzAk1JbYPyan1PSIAPz4qn1JBTeV\n" "EB3xS7r7ITO8uvFHkFZqLZ2sH1uE6e4sAytJGO+kyqnlkiDTPEXpcGe99j8PH1yj\n" "xUOrHRlAYWjG8NEkQi+APA+HZkswE3L/viFwR2AARoE2ac0CQQDsOLdNJa+mqn6N\n" "1L76nEl/YgXHtKUks+beOR3IgknKEjcsJJEUHyiu0wjbXZV6gTtyQvcAePglUUD1\n" "R2OkOOADAkEAwuCxvHEAPeQbVt8fSvxw74vqew6LITP2Utb1dQK0E26IRPF36BsJ\n" "buO/gqMZv6ALq+/KxpA/pUsApbgog9uUFwJAYvHCvbrKX1pM1iXFtP1fv86UMzlU\n" "bxI34t8zvXftZonIuGG8rxv6E3hr3k7NvNmCx/KKuZTyA9eMCPFVKEV2dwJACn8j\n" "06yagLrqphE6lEVop953cM1lvRIZcHjXm8fbfzhy6pO/C6d5KJnn1NeIKYQrXMV7\n" "vJpEc1jI3iQ/Omr3XQJAEBIt5MlP2wlrX9om7B+32XBygUssY3cw/bXybZrtSU0/\n" "Yx4lqK0ca5IkTp3HevwnlWaJgbaOTUspCVshzJBhDA==\n" "-----END RSA PRIVATE KEY-----\n"; const char AUTHORITY_SIGNKEY_A_DIGEST[] = "CBF56A83368A5150F1A9AAADAFB4D77F8C4170E2"; const char AUTHORITY_SIGNKEY_A_DIGEST256[] = "AF7C5468DBE3BA54A052726038D7F15F3C4CA511B1952645B3D96D83A8DFB51C"; /** Second of 3 example authority certificates for unit testing. */ const char AUTHORITY_CERT_B[] = "dir-key-certificate-version 3\n" "fingerprint AD011E25302925A9D39A80E0E32576442E956467\n" "dir-key-published 2013-11-14 14:12:05\n" "dir-key-expires 2014-11-14 14:12:05\n" "dir-identity-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIIBigKCAYEAyXYEMlGNRAixXdg65xf2WPkskYj2Wo8ysKMTls1JCXdIOAPvC2k2\n" "+AC6i3x9JHzUgCjWr4Jd5PSi7ODGyFC543igYl4wzkxNTU2L+SQ+hMe9qbEuUNhH\n" "sRR0xofdoH//3UuKj+HXEiMhhHbRWQGtWFuJqtGBruJqjZqIGOrp5nFjdlP0R98n\n" "Rx5wWlPgdJzifkXjKouu4mV+KzLl7f0gAtngA9DkSjt1wzga5IlL/lxDciD0SyJU\n" "tKMmls056omrZNbTnBxnY2pOlq9nx/zFrt/KQm1fTAQMjMBCf9KnDIV7NhaaHx7F\n" "7Nk8L7Hha353SvR+bsOFpiu05/EMZFTTIhO3MhUxZiCVZ0hKXvW1xe0HoGC5wbB+\n" "NyXu8oa4fIKLJ+WJ8Z60BNc0DcxJiQOf1eolGM/qrBul1lFZznds5/7182d+nF2W\n" "+bEjSm0fgXIxPfSD/7hB0FvgtmB3TXybHGBfPZgX0sTzFB6LNtP0BHicRoMXKdLF\n" "hM3tgIjEAsoZAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "dir-signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAJ567PZIGG/mYWEY4szYi/C5XXvf0BkquzKTHKrqVjysZEys9giz56Gv\n" "B08kIRxsxYKEWkq60rv0xtTc1WyEMcDpV1WLU0KSTQSVXzLu7BT8jbTsWzGsxdTV\n" "TdeyOirwHh8Cyyon5lppuMH5twUHrL5O7pWWbxjjrQjAHCn3gd+NAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "dir-key-crosscert\n" "-----BEGIN ID SIGNATURE-----\n" "OC+gaukd4K7xJOsgTPbRhacf5mDUGxsu3ho/J1oJdtni4CK9WscVs6/Goj1o5Lot\n" "H1nCAMaR96Jnqq5c63Aaj1sEXdeYHlu5cI7YHgtGI5MmtjiUNXUCWMjCwSQYwGKe\n" "2YDYGAKAGt97n7XMKhJWGjAmv1TgmK3DvL1jt/aazL8=\n" "-----END ID SIGNATURE-----\n" "dir-key-certification\n" "-----BEGIN SIGNATURE-----\n" "BddmCKsvS6VoFXIf9Aj9OZnfyVCx527517QtsQHN+NaVm20LzUkJ5MWGXYx4wgh3\n" "ExsHvVQguiVfnonkQpEHHKg+TbldlkuDhIdlb9f7dL7V3HLCsEdmS1c3A+TEyrPH\n" "i44p6QB5IMFAdgUMV/9ueKMh7pMoam6VNakMOd+Axx9BSJTrCRzcepjtM4Z0cPsj\n" "nmDgZi0df1+ca1t+HnuWyt3trxlqoUxRcPZKz28kEFDJsgnRNvoHrIvNTuy9qY4x\n" "rONnPuLr5kTO7VQVVZxgxt6WX3p6d8tj+WYHubydr2pG0dwu2vGDTy4qXvDIm/I4\n" "Gyo6OAoPbYV8fl0584EgiEbAWcX/Pze8mXr9lmXbf73xbSBHqveAs0UfB+4sBI98\n" "v4ax4NZkGs8cCIfugtAOLgZE0WCh/TQYnQ3PFcrUtj0RW+tM1z7S8P3UfEVBHVkJ\n" "8SqSB+pbsY6PwMuy6TC3WujW7gmjVanbwkbW19El9l9jRzteFerz7grG/WQkshqF\n" "-----END SIGNATURE-----\n"; /** The private signing key for AUTHORITY_CERT_2 */ const char AUTHORITY_SIGNKEY_B[] = "-----BEGIN RSA PRIVATE KEY-----\n" "MIICWwIBAAKBgQCeeuz2SBhv5mFhGOLM2IvwuV1739AZKrsykxyq6lY8rGRMrPYI\n" "s+ehrwdPJCEcbMWChFpKutK79MbU3NVshDHA6VdVi1NCkk0ElV8y7uwU/I207Fsx\n" "rMXU1U3Xsjoq8B4fAssqJ+ZaabjB+bcFB6y+Tu6Vlm8Y460IwBwp94HfjQIDAQAB\n" "AoGAfHQ4ZmfTmPyoeGHcqdVcgBxxh3gJqdnezCavGqGQO3F+CqDBTbBKNLSI3uOW\n" "hQX+TTK23Xy9RRFCm6MYj3F4x7OOrSHSFyhMmzRnAZi3zGbtQZn30XoqTwCmVevY\n" "p5JbVvhP2BJcvdsyQhiIG23FRQ7MMHWtksAxmovTto1h/hkCQQDNCfMqSztgJZDn\n" "JSf5ASHBOw8QzfZBeYi3hqfiDtAN1RxT1uQnEiFQFJqwCz5lCbcwVrfQbrrk5M+h\n" "ooYrX7tTAkEAxd6Tl0N0WM3zCKz+3/Hoiyty6olnnpzNoPCg7LLBJcetABQi0KUv\n" "swYWlKP3eOFZkiBzTqa9nBK7eYLKV3d9nwJAKNM3WI98Nguky3FJgTnpd6kDuevY\n" "gXbqcuhb2xXp9Sceqc7axLDGc0R2/GBwvvttPzG1DcpOai7o7J0Iq/A2wwJAYuKI\n" "/99GFdtWyc8q0OAkRui/1VY14p6aZQPcaG4s+KSBYLivbXYgEGfKgR4wXsi/6rcs\n" "6PGLcKQr7N3gITYmIQJAaQn6djUWygCn1noKyWU+Sa7G5qqU2GWkLq9dMaRLm1/I\n" "nqi+2K1mN15rra0QtFVqSH4JXr8h3KAGyU45voGM7A==\n" "-----END RSA PRIVATE KEY-----\n"; /** Third of 3 example authority certificates for unit testing. */ const char AUTHORITY_CERT_C[] = "dir-key-certificate-version 3\n" "fingerprint 628C2086EC29C9D26E638C5A8B2065BFBD35829B\n" "dir-key-published 2013-11-14 14:12:18\n" "dir-key-expires 2014-11-14 14:12:18\n" "dir-identity-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIIBigKCAYEAuzPA82lRVUAc1uZgfDehhK0rBU5xt+qhJXUSH0DxsuocYCLW//q+\n" "7+L7q9SochqZK3R5+SxJaZRlVK4rAeIHsxXFxsnGvuqasGM3he80EV1RpVRkvLaO\n" "2dDmHcfEjYBadft2DEq811yvqSRqbFXmK0hLucA6LI6NnEw9VNWlguaV6ACVLyKQ\n" "iYVFz2JOJIAi0Zz57WZg7eHypUAGoyXjtYTJPsh6pUe/0NLFJVd3JHcJX+bNqU2a\n" "QU37r+CQ9f3T+8fZGJQ/CXNnYUNHa0j+toOFuPEiZBBh8C4PE7FJWjidvhe9uI7T\n" "Py41RZhy8e05MAQmUBNRKBHWPKHoy2zWZZxTkcfWFdJJz/dzsNrIjrqf2fYId9To\n" "fDpHzYd/UjzZaaVYRVS/Oyf3pN8DKw8LMhEArS0X9pblPVkWWjmYMU6f0VR7pelc\n" "gGYuML3gOiKdNbeMWgAv3HNRsVsuW0HZLrhXUGYzTRPJ/GxVCwA/NmYgMTNVWRwF\n" "7M78YHpayyEPAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "dir-signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANESf/hRRWCK3TLQyNb9Y42tYedCORUc8Rl+Q4wrvdz3R0TNr6rztE9N\n" "u8v3Wbvjtiqm1xL1I5PaOObFQQj61QZxKiCm1yU4eFH15dNmcvBEy5BjEXVYiDgy\n" "zKRyePzjHYQIZF3ZaQTABUplkXVpY0YvAurluhEy+dKEvZMwWFZTAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "dir-key-crosscert\n" "-----BEGIN ID SIGNATURE-----\n" "NHNBya6Dt7Ww3qSGA0DBEl6pZFBzmYXM+QdqF+ESpdyYCQ54EYimaxl4VcXoGaxy\n" "xk8/VOXPC6h7hVnTWDTsC86G6eXug1yzpd/uhQbcDJMH5q8/Yg5WXGOnGhMWNCBh\n" "u2UmbtAjdjLrObQaB50FfOpuOV9kdG4SEzaPUBR2ayU=\n" "-----END ID SIGNATURE-----\n" "dir-key-certification\n" "-----BEGIN SIGNATURE-----\n" "NocTkLl9iKglVo+yrpY0slsqgPviuScMyEfOJ3i65KeJb4Dr1huIs0Fip40zFD8D\n" "cz/SYu09FbANuRwBJIRdVWZLLwVFLBj5F8U65iJRAPBw/O/xgSVBvWoOhBUZqmJA\n" "Jp1IUutQHYFfnAOO9za4r8Ox6yPaOWF9Ks5gL0kU/fI8Bdi5E9p3e9fMtoM7hROg\n" "oX1AoV/za3LcM0oMsGsdXQ7B8vRqY0eUX523kpRpF1fUDyvBUvvMsXdZDN6anCV6\n" "NtSq2UaM/msTX1oQ8gzyD1gMXH0Ek26YMhd+6WZE6KUeb1x5HJgXtKtYzMLB6nQM\n" "4Q/OA4NND/Veflofy6xx8uzXe8H+MoUHK9WiORtwqvBl0E9qk6SVCuo4ipR4Ybgk\n" "PAFOXA58j80dlNYYEVgV8MXF1Y/g/thuXlf2dWiLAExdHTtE0AzC4quWshegaImC\n" "4aziHeA43TRDszAXcJorREAM0AhSxp3aWDde4Jt46ODOJR8t+gHreks29eDttEIn\n" "-----END SIGNATURE-----\n"; /** The private signing key for AUTHORITY_CERT_3 */ const char AUTHORITY_SIGNKEY_C[] = "-----BEGIN RSA PRIVATE KEY-----\n" "MIICXAIBAAKBgQDREn/4UUVgit0y0MjW/WONrWHnQjkVHPEZfkOMK73c90dEza+q\n" "87RPTbvL91m747YqptcS9SOT2jjmxUEI+tUGcSogptclOHhR9eXTZnLwRMuQYxF1\n" "WIg4Msykcnj84x2ECGRd2WkEwAVKZZF1aWNGLwLq5boRMvnShL2TMFhWUwIDAQAB\n" "AoGAU68L+eDN3C65CzX2rdcOmg7kOSSQpJrJBmM7tkdr3546sJeD0PFrIrMCkEmZ\n" "aVNj/v545+WnL+8RB4280lNUIF4AMNaMZUL+4FAtwekqWua3QvvqgRMjCdG3/h/d\n" "bOAUiiKKEimflTaIVHNVSCvOIntftOu3PhebctuabnZzg0ECQQD9i+FX7M9UXT1A\n" "bVm+bRIJuQtG+u9jD3VxrvHsmh0QnOAL3oa/ofTCwoTJLZs8Qy0GeAoJNf28rY1q\n" "AgNMEeEXAkEA0xhxNX2fDQ2yvKwPkPMrRycJVWry+KHvSZG2+XYh+V5sVGQ5H7Gu\n" "krc6IzRZlIKQhEGktkw8ih0DEHQbAihiJQJBAKi/SnFcePjrPXL91Hb63MB/2dOZ\n" "+21wwnexOe6A+8ssvajop8IvJlnhYMMMiX7oLrVZe0R6HLBQyge94zfjxm0CQGye\n" "dRIrE34qAEBo4JGbLjesdHcJUwBwgqn+WoI+MPkZhvBdqa8PRF6l/TpEI5vxGt+S\n" "z2gmDjia+QqsU4FmuikCQDDOs85uwNSKJFax9XMzd1qd1QwX20F8lvnOsWErXiDw\n" "Fy2+rmIRHoSxn4D+rE5ivqkO99E9jAlz+uuQz/6WqwE=\n" "-----END RSA PRIVATE KEY-----\n"; tor-0.2.7.6/src/test/test_dir.c0000644000175000017500000037431012621363246013155 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #include #define DIRSERV_PRIVATE #define DIRVOTE_PRIVATE #define ROUTER_PRIVATE #define ROUTERLIST_PRIVATE #define HIBERNATE_PRIVATE #define NETWORKSTATUS_PRIVATE #include "or.h" #include "config.h" #include "crypto_ed25519.h" #include "directory.h" #include "dirserv.h" #include "dirvote.h" #include "hibernate.h" #include "networkstatus.h" #include "router.h" #include "routerkeys.h" #include "routerlist.h" #include "routerparse.h" #include "routerset.h" #include "test.h" #include "torcert.h" static void test_dir_nicknames(void *arg) { (void)arg; tt_assert( is_legal_nickname("a")); tt_assert(!is_legal_nickname("")); tt_assert(!is_legal_nickname("abcdefghijklmnopqrst")); /* 20 chars */ tt_assert(!is_legal_nickname("hyphen-")); /* bad char */ tt_assert( is_legal_nickname("abcdefghijklmnopqrs")); /* 19 chars */ tt_assert(!is_legal_nickname("$AAAAAAAA01234AAAAAAAAAAAAAAAAAAAAAAAAAAA")); /* valid */ tt_assert( is_legal_nickname_or_hexdigest( "$AAAAAAAA01234AAAAAAAAAAAAAAAAAAAAAAAAAAA")); tt_assert( is_legal_nickname_or_hexdigest( "$AAAAAAAA01234AAAAAAAAAAAAAAAAAAAAAAAAAAA=fred")); tt_assert( is_legal_nickname_or_hexdigest( "$AAAAAAAA01234AAAAAAAAAAAAAAAAAAAAAAAAAAA~fred")); /* too short */ tt_assert(!is_legal_nickname_or_hexdigest( "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")); /* illegal char */ tt_assert(!is_legal_nickname_or_hexdigest( "$AAAAAAzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")); /* hex part too long */ tt_assert(!is_legal_nickname_or_hexdigest( "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")); tt_assert(!is_legal_nickname_or_hexdigest( "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=fred")); /* Bad nickname */ tt_assert(!is_legal_nickname_or_hexdigest( "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=")); tt_assert(!is_legal_nickname_or_hexdigest( "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA~")); tt_assert(!is_legal_nickname_or_hexdigest( "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA~hyphen-")); tt_assert(!is_legal_nickname_or_hexdigest( "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA~" "abcdefghijklmnoppqrst")); /* Bad extra char. */ tt_assert(!is_legal_nickname_or_hexdigest( "$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA!")); tt_assert(is_legal_nickname_or_hexdigest("xyzzy")); tt_assert(is_legal_nickname_or_hexdigest("abcdefghijklmnopqrs")); tt_assert(!is_legal_nickname_or_hexdigest("abcdefghijklmnopqrst")); done: ; } /** Run unit tests for router descriptor generation logic. */ static void test_dir_formats(void *arg) { char *buf = NULL; char buf2[8192]; char platform[256]; char fingerprint[FINGERPRINT_LEN+1]; char *pk1_str = NULL, *pk2_str = NULL, *cp; size_t pk1_str_len, pk2_str_len; routerinfo_t *r1=NULL, *r2=NULL; crypto_pk_t *pk1 = NULL, *pk2 = NULL; routerinfo_t *rp1 = NULL, *rp2 = NULL; addr_policy_t *ex1, *ex2; routerlist_t *dir1 = NULL, *dir2 = NULL; uint8_t *rsa_cc = NULL; or_options_t *options = get_options_mutable(); const addr_policy_t *p; time_t now = time(NULL); (void)arg; pk1 = pk_generate(0); pk2 = pk_generate(1); tt_assert(pk1 && pk2); hibernate_set_state_for_testing_(HIBERNATE_STATE_LIVE); get_platform_str(platform, sizeof(platform)); r1 = tor_malloc_zero(sizeof(routerinfo_t)); r1->addr = 0xc0a80001u; /* 192.168.0.1 */ r1->cache_info.published_on = 0; r1->or_port = 9000; r1->dir_port = 9003; tor_addr_parse(&r1->ipv6_addr, "1:2:3:4::"); r1->ipv6_orport = 9999; r1->onion_pkey = crypto_pk_dup_key(pk1); r1->identity_pkey = crypto_pk_dup_key(pk2); r1->bandwidthrate = 1000; r1->bandwidthburst = 5000; r1->bandwidthcapacity = 10000; r1->exit_policy = NULL; r1->nickname = tor_strdup("Magri"); r1->platform = tor_strdup(platform); ex1 = tor_malloc_zero(sizeof(addr_policy_t)); ex2 = tor_malloc_zero(sizeof(addr_policy_t)); ex1->policy_type = ADDR_POLICY_ACCEPT; tor_addr_from_ipv4h(&ex1->addr, 0); ex1->maskbits = 0; ex1->prt_min = ex1->prt_max = 80; ex2->policy_type = ADDR_POLICY_REJECT; tor_addr_from_ipv4h(&ex2->addr, 18<<24); ex2->maskbits = 8; ex2->prt_min = ex2->prt_max = 24; r2 = tor_malloc_zero(sizeof(routerinfo_t)); r2->addr = 0x0a030201u; /* 10.3.2.1 */ ed25519_keypair_t kp1, kp2; ed25519_secret_key_from_seed(&kp1.seckey, (const uint8_t*)"YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY"); ed25519_public_key_generate(&kp1.pubkey, &kp1.seckey); ed25519_secret_key_from_seed(&kp2.seckey, (const uint8_t*)"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"); ed25519_public_key_generate(&kp2.pubkey, &kp2.seckey); r2->signing_key_cert = tor_cert_create(&kp1, CERT_TYPE_ID_SIGNING, &kp2.pubkey, now, 86400, CERT_FLAG_INCLUDE_SIGNING_KEY); char cert_buf[256]; base64_encode(cert_buf, sizeof(cert_buf), (const char*)r2->signing_key_cert->encoded, r2->signing_key_cert->encoded_len, BASE64_ENCODE_MULTILINE); r2->platform = tor_strdup(platform); r2->cache_info.published_on = 5; r2->or_port = 9005; r2->dir_port = 0; r2->onion_pkey = crypto_pk_dup_key(pk2); curve25519_keypair_t r2_onion_keypair; curve25519_keypair_generate(&r2_onion_keypair, 0); r2->onion_curve25519_pkey = tor_memdup(&r2_onion_keypair.pubkey, sizeof(curve25519_public_key_t)); r2->identity_pkey = crypto_pk_dup_key(pk1); r2->bandwidthrate = r2->bandwidthburst = r2->bandwidthcapacity = 3000; r2->exit_policy = smartlist_new(); smartlist_add(r2->exit_policy, ex1); smartlist_add(r2->exit_policy, ex2); r2->nickname = tor_strdup("Fred"); tt_assert(!crypto_pk_write_public_key_to_string(pk1, &pk1_str, &pk1_str_len)); tt_assert(!crypto_pk_write_public_key_to_string(pk2 , &pk2_str, &pk2_str_len)); /* XXXX025 router_dump_to_string should really take this from ri.*/ options->ContactInfo = tor_strdup("Magri White " ""); buf = router_dump_router_to_string(r1, pk2, NULL, NULL, NULL); tor_free(options->ContactInfo); tt_assert(buf); strlcpy(buf2, "router Magri 192.168.0.1 9000 0 9003\n" "or-address [1:2:3:4::]:9999\n" "platform Tor "VERSION" on ", sizeof(buf2)); strlcat(buf2, get_uname(), sizeof(buf2)); strlcat(buf2, "\n" "protocols Link 1 2 Circuit 1\n" "published 1970-01-01 00:00:00\n" "fingerprint ", sizeof(buf2)); tt_assert(!crypto_pk_get_fingerprint(pk2, fingerprint, 1)); strlcat(buf2, fingerprint, sizeof(buf2)); strlcat(buf2, "\nuptime 0\n" /* XXX the "0" above is hard-coded, but even if we made it reflect * uptime, that still wouldn't make it right, because the two * descriptors might be made on different seconds... hm. */ "bandwidth 1000 5000 10000\n" "onion-key\n", sizeof(buf2)); strlcat(buf2, pk1_str, sizeof(buf2)); strlcat(buf2, "signing-key\n", sizeof(buf2)); strlcat(buf2, pk2_str, sizeof(buf2)); strlcat(buf2, "hidden-service-dir\n", sizeof(buf2)); strlcat(buf2, "contact Magri White \n", sizeof(buf2)); strlcat(buf2, "reject *:*\nrouter-signature\n", sizeof(buf2)); buf[strlen(buf2)] = '\0'; /* Don't compare the sig; it's never the same * twice */ tt_str_op(buf,OP_EQ, buf2); tor_free(buf); buf = router_dump_router_to_string(r1, pk2, NULL, NULL, NULL); tt_assert(buf); cp = buf; rp1 = router_parse_entry_from_string((const char*)cp,NULL,1,0,NULL,NULL); tt_assert(rp1); tt_int_op(rp1->addr,OP_EQ, r1->addr); tt_int_op(rp1->or_port,OP_EQ, r1->or_port); //test_eq(rp1->dir_port, r1->dir_port); tt_int_op(rp1->bandwidthrate,OP_EQ, r1->bandwidthrate); tt_int_op(rp1->bandwidthburst,OP_EQ, r1->bandwidthburst); tt_int_op(rp1->bandwidthcapacity,OP_EQ, r1->bandwidthcapacity); tt_assert(crypto_pk_cmp_keys(rp1->onion_pkey, pk1) == 0); tt_assert(crypto_pk_cmp_keys(rp1->identity_pkey, pk2) == 0); //tt_assert(rp1->exit_policy == NULL); tor_free(buf); strlcpy(buf2, "router Fred 10.3.2.1 9005 0 0\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n", sizeof(buf2)); strlcat(buf2, cert_buf, sizeof(buf2)); strlcat(buf2, "-----END ED25519 CERT-----\n", sizeof(buf2)); strlcat(buf2, "master-key-ed25519 ", sizeof(buf2)); { char k[ED25519_BASE64_LEN+1]; tt_assert(ed25519_public_to_base64(k, &r2->signing_key_cert->signing_key) >= 0); strlcat(buf2, k, sizeof(buf2)); strlcat(buf2, "\n", sizeof(buf2)); } strlcat(buf2, "platform Tor "VERSION" on ", sizeof(buf2)); strlcat(buf2, get_uname(), sizeof(buf2)); strlcat(buf2, "\n" "protocols Link 1 2 Circuit 1\n" "published 1970-01-01 00:00:05\n" "fingerprint ", sizeof(buf2)); tt_assert(!crypto_pk_get_fingerprint(pk1, fingerprint, 1)); strlcat(buf2, fingerprint, sizeof(buf2)); strlcat(buf2, "\nuptime 0\n" "bandwidth 3000 3000 3000\n", sizeof(buf2)); strlcat(buf2, "onion-key\n", sizeof(buf2)); strlcat(buf2, pk2_str, sizeof(buf2)); strlcat(buf2, "signing-key\n", sizeof(buf2)); strlcat(buf2, pk1_str, sizeof(buf2)); int rsa_cc_len; rsa_cc = make_tap_onion_key_crosscert(pk2, &kp1.pubkey, pk1, &rsa_cc_len); tt_assert(rsa_cc); base64_encode(cert_buf, sizeof(cert_buf), (char*)rsa_cc, rsa_cc_len, BASE64_ENCODE_MULTILINE); strlcat(buf2, "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n", sizeof(buf2)); strlcat(buf2, cert_buf, sizeof(buf2)); strlcat(buf2, "-----END CROSSCERT-----\n", sizeof(buf2)); int ntor_cc_sign; { tor_cert_t *ntor_cc = NULL; ntor_cc = make_ntor_onion_key_crosscert(&r2_onion_keypair, &kp1.pubkey, r2->cache_info.published_on, MIN_ONION_KEY_LIFETIME, &ntor_cc_sign); tt_assert(ntor_cc); base64_encode(cert_buf, sizeof(cert_buf), (char*)ntor_cc->encoded, ntor_cc->encoded_len, BASE64_ENCODE_MULTILINE); tor_cert_free(ntor_cc); } tor_snprintf(buf2+strlen(buf2), sizeof(buf2)-strlen(buf2), "ntor-onion-key-crosscert %d\n" "-----BEGIN ED25519 CERT-----\n" "%s" "-----END ED25519 CERT-----\n", ntor_cc_sign, cert_buf); strlcat(buf2, "hidden-service-dir\n", sizeof(buf2)); strlcat(buf2, "ntor-onion-key ", sizeof(buf2)); base64_encode(cert_buf, sizeof(cert_buf), (const char*)r2_onion_keypair.pubkey.public_key, 32, BASE64_ENCODE_MULTILINE); strlcat(buf2, cert_buf, sizeof(buf2)); strlcat(buf2, "accept *:80\nreject 18.0.0.0/8:24\n", sizeof(buf2)); strlcat(buf2, "router-sig-ed25519 ", sizeof(buf2)); buf = router_dump_router_to_string(r2, pk1, pk2, &r2_onion_keypair, &kp2); tt_assert(buf); buf[strlen(buf2)] = '\0'; /* Don't compare the sig; it's never the same * twice */ tt_str_op(buf, OP_EQ, buf2); tor_free(buf); buf = router_dump_router_to_string(r2, pk1, NULL, NULL, NULL); cp = buf; rp2 = router_parse_entry_from_string((const char*)cp,NULL,1,0,NULL,NULL); tt_assert(rp2); tt_int_op(rp2->addr,OP_EQ, r2->addr); tt_int_op(rp2->or_port,OP_EQ, r2->or_port); tt_int_op(rp2->dir_port,OP_EQ, r2->dir_port); tt_int_op(rp2->bandwidthrate,OP_EQ, r2->bandwidthrate); tt_int_op(rp2->bandwidthburst,OP_EQ, r2->bandwidthburst); tt_int_op(rp2->bandwidthcapacity,OP_EQ, r2->bandwidthcapacity); tt_mem_op(rp2->onion_curve25519_pkey->public_key,OP_EQ, r2->onion_curve25519_pkey->public_key, CURVE25519_PUBKEY_LEN); tt_assert(crypto_pk_cmp_keys(rp2->onion_pkey, pk2) == 0); tt_assert(crypto_pk_cmp_keys(rp2->identity_pkey, pk1) == 0); tt_int_op(smartlist_len(rp2->exit_policy),OP_EQ, 2); p = smartlist_get(rp2->exit_policy, 0); tt_int_op(p->policy_type,OP_EQ, ADDR_POLICY_ACCEPT); tt_assert(tor_addr_is_null(&p->addr)); tt_int_op(p->maskbits,OP_EQ, 0); tt_int_op(p->prt_min,OP_EQ, 80); tt_int_op(p->prt_max,OP_EQ, 80); p = smartlist_get(rp2->exit_policy, 1); tt_int_op(p->policy_type,OP_EQ, ADDR_POLICY_REJECT); tt_assert(tor_addr_eq(&p->addr, &ex2->addr)); tt_int_op(p->maskbits,OP_EQ, 8); tt_int_op(p->prt_min,OP_EQ, 24); tt_int_op(p->prt_max,OP_EQ, 24); #if 0 /* Okay, now for the directories. */ { fingerprint_list = smartlist_new(); crypto_pk_get_fingerprint(pk2, buf, 1); add_fingerprint_to_dir(buf, fingerprint_list, 0); crypto_pk_get_fingerprint(pk1, buf, 1); add_fingerprint_to_dir(buf, fingerprint_list, 0); } #endif dirserv_free_fingerprint_list(); done: if (r1) routerinfo_free(r1); if (r2) routerinfo_free(r2); if (rp2) routerinfo_free(rp2); tor_free(rsa_cc); tor_free(buf); tor_free(pk1_str); tor_free(pk2_str); if (pk1) crypto_pk_free(pk1); if (pk2) crypto_pk_free(pk2); if (rp1) routerinfo_free(rp1); tor_free(dir1); /* XXXX And more !*/ tor_free(dir2); /* And more !*/ } #include "failing_routerdescs.inc" static void test_dir_routerinfo_parsing(void *arg) { (void) arg; int again; routerinfo_t *ri = NULL; #define CHECK_OK(s) \ do { \ routerinfo_free(ri); \ ri = router_parse_entry_from_string((s), NULL, 0, 0, NULL, NULL); \ tt_assert(ri); \ } while (0) #define CHECK_FAIL(s, againval) \ do { \ routerinfo_free(ri); \ again = 999; \ ri = router_parse_entry_from_string((s), NULL, 0, 0, NULL, &again); \ tt_assert(ri == NULL); \ tt_int_op(again, OP_EQ, (againval)); \ } while (0) CHECK_OK(EX_RI_MINIMAL); CHECK_OK(EX_RI_MAXIMAL); CHECK_OK(EX_RI_MINIMAL_ED); /* good annotations prepended */ routerinfo_free(ri); ri = router_parse_entry_from_string(EX_RI_MINIMAL, NULL, 0, 0, "@purpose bridge\n", NULL); tt_assert(ri != NULL); tt_assert(ri->purpose == ROUTER_PURPOSE_BRIDGE); routerinfo_free(ri); /* bad annotations prepended. */ ri = router_parse_entry_from_string(EX_RI_MINIMAL, NULL, 0, 0, "@purpose\n", NULL); tt_assert(ri == NULL); /* bad annotations on router. */ ri = router_parse_entry_from_string("@purpose\nrouter x\n", NULL, 0, 1, NULL, NULL); tt_assert(ri == NULL); /* unwanted annotations on router. */ ri = router_parse_entry_from_string("@purpose foo\nrouter x\n", NULL, 0, 0, NULL, NULL); tt_assert(ri == NULL); /* No signature. */ ri = router_parse_entry_from_string("router x\n", NULL, 0, 0, NULL, NULL); tt_assert(ri == NULL); /* Not a router */ routerinfo_free(ri); ri = router_parse_entry_from_string("hello\n", NULL, 0, 0, NULL, NULL); tt_assert(ri == NULL); CHECK_FAIL(EX_RI_BAD_SIG1, 1); CHECK_FAIL(EX_RI_BAD_SIG2, 1); CHECK_FAIL(EX_RI_BAD_TOKENS, 0); CHECK_FAIL(EX_RI_BAD_PUBLISHED, 0); CHECK_FAIL(EX_RI_NEG_BANDWIDTH, 0); CHECK_FAIL(EX_RI_BAD_BANDWIDTH, 0); CHECK_FAIL(EX_RI_BAD_BANDWIDTH2, 0); CHECK_FAIL(EX_RI_BAD_ONIONKEY1, 0); CHECK_FAIL(EX_RI_BAD_ONIONKEY2, 0); CHECK_FAIL(EX_RI_BAD_PORTS, 0); CHECK_FAIL(EX_RI_BAD_IP, 0); CHECK_FAIL(EX_RI_BAD_DIRPORT, 0); CHECK_FAIL(EX_RI_BAD_NAME2, 0); CHECK_FAIL(EX_RI_BAD_UPTIME, 0); CHECK_FAIL(EX_RI_BAD_BANDWIDTH3, 0); CHECK_FAIL(EX_RI_BAD_NTOR_KEY, 0); CHECK_FAIL(EX_RI_BAD_FINGERPRINT, 0); CHECK_FAIL(EX_RI_MISMATCHED_FINGERPRINT, 0); CHECK_FAIL(EX_RI_BAD_HAS_ACCEPT6, 0); CHECK_FAIL(EX_RI_BAD_NO_EXIT_POLICY, 0); CHECK_FAIL(EX_RI_BAD_IPV6_EXIT_POLICY, 0); CHECK_FAIL(EX_RI_BAD_FAMILY, 0); CHECK_FAIL(EX_RI_ZERO_ORPORT, 0); CHECK_FAIL(EX_RI_ED_MISSING_CROSSCERT, 0); CHECK_FAIL(EX_RI_ED_MISSING_CROSSCERT2, 0); CHECK_FAIL(EX_RI_ED_MISSING_CROSSCERT_SIGN, 0); CHECK_FAIL(EX_RI_ED_BAD_SIG1, 0); CHECK_FAIL(EX_RI_ED_BAD_SIG2, 0); CHECK_FAIL(EX_RI_ED_BAD_SIG3, 0); CHECK_FAIL(EX_RI_ED_BAD_SIG4, 0); CHECK_FAIL(EX_RI_ED_BAD_CROSSCERT1, 0); CHECK_FAIL(EX_RI_ED_BAD_CROSSCERT3, 0); CHECK_FAIL(EX_RI_ED_BAD_CROSSCERT4, 0); CHECK_FAIL(EX_RI_ED_BAD_CROSSCERT5, 0); CHECK_FAIL(EX_RI_ED_BAD_CROSSCERT6, 0); CHECK_FAIL(EX_RI_ED_BAD_CROSSCERT7, 0); CHECK_FAIL(EX_RI_ED_MISPLACED1, 0); CHECK_FAIL(EX_RI_ED_MISPLACED2, 0); CHECK_FAIL(EX_RI_ED_BAD_CERT1, 0); CHECK_FAIL(EX_RI_ED_BAD_CERT2, 0); CHECK_FAIL(EX_RI_ED_BAD_CERT3, 0); /* This is allowed; we just ignore it. */ CHECK_OK(EX_RI_BAD_EI_DIGEST); CHECK_OK(EX_RI_BAD_EI_DIGEST2); #undef CHECK_FAIL #undef CHECK_OK done: routerinfo_free(ri); } #include "example_extrainfo.inc" static void routerinfo_free_wrapper_(void *arg) { routerinfo_free(arg); } static void test_dir_extrainfo_parsing(void *arg) { (void) arg; #define CHECK_OK(s) \ do { \ extrainfo_free(ei); \ ei = extrainfo_parse_entry_from_string((s), NULL, 0, map, NULL); \ tt_assert(ei); \ } while (0) #define CHECK_FAIL(s, againval) \ do { \ extrainfo_free(ei); \ again = 999; \ ei = extrainfo_parse_entry_from_string((s), NULL, 0, map, &again); \ tt_assert(ei == NULL); \ tt_int_op(again, OP_EQ, (againval)); \ } while (0) #define ADD(name) \ do { \ ri = tor_malloc_zero(sizeof(routerinfo_t)); \ crypto_pk_t *pk = ri->identity_pkey = crypto_pk_new(); \ tt_assert(! crypto_pk_read_public_key_from_string(pk, \ name##_KEY, strlen(name##_KEY))); \ tt_int_op(0,OP_EQ,base16_decode(d, 20, name##_FP, strlen(name##_FP))); \ digestmap_set((digestmap_t*)map, d, ri); \ ri = NULL; \ } while (0) routerinfo_t *ri = NULL; char d[20]; struct digest_ri_map_t *map = NULL; extrainfo_t *ei = NULL; int again; CHECK_OK(EX_EI_MINIMAL); tt_assert(ei->pending_sig); CHECK_OK(EX_EI_MAXIMAL); tt_assert(ei->pending_sig); CHECK_OK(EX_EI_GOOD_ED_EI); tt_assert(ei->pending_sig); map = (struct digest_ri_map_t *)digestmap_new(); ADD(EX_EI_MINIMAL); ADD(EX_EI_MAXIMAL); ADD(EX_EI_GOOD_ED_EI); ADD(EX_EI_BAD_FP); ADD(EX_EI_BAD_NICKNAME); ADD(EX_EI_BAD_TOKENS); ADD(EX_EI_BAD_START); ADD(EX_EI_BAD_PUBLISHED); ADD(EX_EI_ED_MISSING_SIG); ADD(EX_EI_ED_MISSING_CERT); ADD(EX_EI_ED_BAD_CERT1); ADD(EX_EI_ED_BAD_CERT2); ADD(EX_EI_ED_BAD_SIG1); ADD(EX_EI_ED_BAD_SIG2); ADD(EX_EI_ED_MISPLACED_CERT); ADD(EX_EI_ED_MISPLACED_SIG); CHECK_OK(EX_EI_MINIMAL); tt_assert(!ei->pending_sig); CHECK_OK(EX_EI_MAXIMAL); tt_assert(!ei->pending_sig); CHECK_OK(EX_EI_GOOD_ED_EI); tt_assert(!ei->pending_sig); CHECK_FAIL(EX_EI_BAD_SIG1,1); CHECK_FAIL(EX_EI_BAD_SIG2,1); CHECK_FAIL(EX_EI_BAD_SIG3,1); CHECK_FAIL(EX_EI_BAD_FP,0); CHECK_FAIL(EX_EI_BAD_NICKNAME,0); CHECK_FAIL(EX_EI_BAD_TOKENS,0); CHECK_FAIL(EX_EI_BAD_START,0); CHECK_FAIL(EX_EI_BAD_PUBLISHED,0); CHECK_FAIL(EX_EI_ED_MISSING_SIG,0); CHECK_FAIL(EX_EI_ED_MISSING_CERT,0); CHECK_FAIL(EX_EI_ED_BAD_CERT1,0); CHECK_FAIL(EX_EI_ED_BAD_CERT2,0); CHECK_FAIL(EX_EI_ED_BAD_SIG1,0); CHECK_FAIL(EX_EI_ED_BAD_SIG2,0); CHECK_FAIL(EX_EI_ED_MISPLACED_CERT,0); CHECK_FAIL(EX_EI_ED_MISPLACED_SIG,0); #undef CHECK_OK #undef CHECK_FAIL done: extrainfo_free(ei); routerinfo_free(ri); digestmap_free((digestmap_t*)map, routerinfo_free_wrapper_); } static void test_dir_parse_router_list(void *arg) { (void) arg; smartlist_t *invalid = smartlist_new(); smartlist_t *dest = smartlist_new(); smartlist_t *chunks = smartlist_new(); int dest_has_ri = 1; char *list = NULL; const char *cp; digestmap_t *map = NULL; char *mem_op_hex_tmp = NULL; routerinfo_t *ri = NULL; char d[DIGEST_LEN]; smartlist_add(chunks, tor_strdup(EX_RI_MINIMAL)); // ri 0 smartlist_add(chunks, tor_strdup(EX_RI_BAD_PORTS)); // bad ri 0 smartlist_add(chunks, tor_strdup(EX_EI_MAXIMAL)); // ei 0 smartlist_add(chunks, tor_strdup(EX_EI_BAD_SIG2)); // bad ei -- smartlist_add(chunks, tor_strdup(EX_EI_BAD_NICKNAME));// bad ei 0 smartlist_add(chunks, tor_strdup(EX_RI_BAD_SIG1)); // bad ri -- smartlist_add(chunks, tor_strdup(EX_EI_BAD_PUBLISHED)); // bad ei 1 smartlist_add(chunks, tor_strdup(EX_RI_MAXIMAL)); // ri 1 smartlist_add(chunks, tor_strdup(EX_RI_BAD_FAMILY)); // bad ri 1 smartlist_add(chunks, tor_strdup(EX_EI_MINIMAL)); // ei 1 list = smartlist_join_strings(chunks, "", 0, NULL); /* First, parse the routers. */ cp = list; tt_int_op(0,OP_EQ, router_parse_list_from_string(&cp, NULL, dest, SAVED_NOWHERE, 0, 0, NULL, invalid)); tt_int_op(2, OP_EQ, smartlist_len(dest)); tt_ptr_op(cp, OP_EQ, list + strlen(list)); routerinfo_t *r = smartlist_get(dest, 0); tt_mem_op(r->cache_info.signed_descriptor_body, OP_EQ, EX_RI_MINIMAL, strlen(EX_RI_MINIMAL)); r = smartlist_get(dest, 1); tt_mem_op(r->cache_info.signed_descriptor_body, OP_EQ, EX_RI_MAXIMAL, strlen(EX_RI_MAXIMAL)); tt_int_op(2, OP_EQ, smartlist_len(invalid)); test_memeq_hex(smartlist_get(invalid, 0), "ab9eeaa95e7d45740185b4e519c76ead756277a9"); test_memeq_hex(smartlist_get(invalid, 1), "9a651ee03b64325959e8f1b46f2b689b30750b4c"); /* Now tidy up */ SMARTLIST_FOREACH(dest, routerinfo_t *, ri, routerinfo_free(ri)); SMARTLIST_FOREACH(invalid, uint8_t *, d, tor_free(d)); smartlist_clear(dest); smartlist_clear(invalid); /* And check extrainfos. */ dest_has_ri = 0; map = (digestmap_t*)router_get_routerlist()->identity_map; ADD(EX_EI_MINIMAL); ADD(EX_EI_MAXIMAL); ADD(EX_EI_BAD_NICKNAME); ADD(EX_EI_BAD_PUBLISHED); cp = list; tt_int_op(0,OP_EQ, router_parse_list_from_string(&cp, NULL, dest, SAVED_NOWHERE, 1, 0, NULL, invalid)); tt_int_op(2, OP_EQ, smartlist_len(dest)); extrainfo_t *e = smartlist_get(dest, 0); tt_mem_op(e->cache_info.signed_descriptor_body, OP_EQ, EX_EI_MAXIMAL, strlen(EX_EI_MAXIMAL)); e = smartlist_get(dest, 1); tt_mem_op(e->cache_info.signed_descriptor_body, OP_EQ, EX_EI_MINIMAL, strlen(EX_EI_MINIMAL)); tt_int_op(2, OP_EQ, smartlist_len(invalid)); test_memeq_hex(smartlist_get(invalid, 0), "d5df4aa62ee9ffc9543d41150c9864908e0390af"); test_memeq_hex(smartlist_get(invalid, 1), "f61efd2a7f4531f3687a9043e0de90a862ec64ba"); done: tor_free(list); if (dest_has_ri) SMARTLIST_FOREACH(dest, routerinfo_t *, rt, routerinfo_free(rt)); else SMARTLIST_FOREACH(dest, extrainfo_t *, ei, extrainfo_free(ei)); smartlist_free(dest); SMARTLIST_FOREACH(invalid, uint8_t *, d, tor_free(d)); smartlist_free(invalid); SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp)); smartlist_free(chunks); routerinfo_free(ri); if (map) { digestmap_free((digestmap_t*)map, routerinfo_free_wrapper_); router_get_routerlist()->identity_map = (struct digest_ri_map_t*)digestmap_new(); } tor_free(mem_op_hex_tmp); #undef ADD } static download_status_t dls_minimal; static download_status_t dls_maximal; static download_status_t dls_bad_fingerprint; static download_status_t dls_bad_sig2; static download_status_t dls_bad_ports; static download_status_t dls_bad_tokens; static int mock_router_get_dl_status_unrecognized = 0; static int mock_router_get_dl_status_calls = 0; static download_status_t * mock_router_get_dl_status(const char *d) { ++mock_router_get_dl_status_calls; char hex[HEX_DIGEST_LEN+1]; base16_encode(hex, sizeof(hex), d, DIGEST_LEN); if (!strcmp(hex, "3E31D19A69EB719C00B02EC60D13356E3F7A3452")) { return &dls_minimal; } else if (!strcmp(hex, "581D8A368A0FA854ECDBFAB841D88B3F1B004038")) { return &dls_maximal; } else if (!strcmp(hex, "2578AE227C6116CDE29B3F0E95709B9872DEE5F1")) { return &dls_bad_fingerprint; } else if (!strcmp(hex, "16D387D3A58F7DB3CF46638F8D0B90C45C7D769C")) { return &dls_bad_sig2; } else if (!strcmp(hex, "AB9EEAA95E7D45740185B4E519C76EAD756277A9")) { return &dls_bad_ports; } else if (!strcmp(hex, "A0CC2CEFAD59DBF19F468BFEE60E0868C804B422")) { return &dls_bad_tokens; } else { ++mock_router_get_dl_status_unrecognized; return NULL; } } static void test_dir_load_routers(void *arg) { (void) arg; smartlist_t *chunks = smartlist_new(); smartlist_t *wanted = smartlist_new(); char buf[DIGEST_LEN]; char *mem_op_hex_tmp = NULL; char *list = NULL; #define ADD(str) \ do { \ tt_int_op(0,OP_EQ,router_get_router_hash(str, strlen(str), buf)); \ smartlist_add(wanted, tor_strdup(hex_str(buf, DIGEST_LEN))); \ } while (0) MOCK(router_get_dl_status_by_descriptor_digest, mock_router_get_dl_status); update_approx_time(1412510400); smartlist_add(chunks, tor_strdup(EX_RI_MINIMAL)); smartlist_add(chunks, tor_strdup(EX_RI_BAD_FINGERPRINT)); smartlist_add(chunks, tor_strdup(EX_RI_BAD_SIG2)); smartlist_add(chunks, tor_strdup(EX_RI_MAXIMAL)); smartlist_add(chunks, tor_strdup(EX_RI_BAD_PORTS)); smartlist_add(chunks, tor_strdup(EX_RI_BAD_TOKENS)); /* not ADDing MINIMIAL */ ADD(EX_RI_MAXIMAL); ADD(EX_RI_BAD_FINGERPRINT); ADD(EX_RI_BAD_SIG2); /* Not ADDing BAD_PORTS */ ADD(EX_RI_BAD_TOKENS); list = smartlist_join_strings(chunks, "", 0, NULL); tt_int_op(1, OP_EQ, router_load_routers_from_string(list, NULL, SAVED_IN_JOURNAL, wanted, 1, NULL)); /* The "maximal" router was added. */ /* "minimal" was not. */ tt_int_op(smartlist_len(router_get_routerlist()->routers),OP_EQ,1); routerinfo_t *r = smartlist_get(router_get_routerlist()->routers, 0); test_memeq_hex(r->cache_info.signed_descriptor_digest, "581D8A368A0FA854ECDBFAB841D88B3F1B004038"); tt_int_op(dls_minimal.n_download_failures, OP_EQ, 0); tt_int_op(dls_maximal.n_download_failures, OP_EQ, 0); /* "Bad fingerprint" and "Bad tokens" should have gotten marked * non-retriable. */ tt_want_int_op(mock_router_get_dl_status_calls, OP_EQ, 2); tt_want_int_op(mock_router_get_dl_status_unrecognized, OP_EQ, 0); tt_int_op(dls_bad_fingerprint.n_download_failures, OP_EQ, 255); tt_int_op(dls_bad_tokens.n_download_failures, OP_EQ, 255); /* bad_sig2 and bad ports" are retriable -- one since only the signature * was bad, and one because we didn't ask for it. */ tt_int_op(dls_bad_sig2.n_download_failures, OP_EQ, 0); tt_int_op(dls_bad_ports.n_download_failures, OP_EQ, 0); /* Wanted still contains "BAD_SIG2" */ tt_int_op(smartlist_len(wanted), OP_EQ, 1); tt_str_op(smartlist_get(wanted, 0), OP_EQ, "E0A3753CEFD54128EAB239F294954121DB23D2EF"); #undef ADD done: tor_free(mem_op_hex_tmp); UNMOCK(router_get_dl_status_by_descriptor_digest); SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp)); smartlist_free(chunks); SMARTLIST_FOREACH(wanted, char *, cp, tor_free(cp)); smartlist_free(wanted); tor_free(list); } static int mock_get_by_ei_dd_calls = 0; static int mock_get_by_ei_dd_unrecognized = 0; static signed_descriptor_t sd_ei_minimal; static signed_descriptor_t sd_ei_bad_nickname; static signed_descriptor_t sd_ei_maximal; static signed_descriptor_t sd_ei_bad_tokens; static signed_descriptor_t sd_ei_bad_sig2; static signed_descriptor_t * mock_get_by_ei_desc_digest(const char *d) { ++mock_get_by_ei_dd_calls; char hex[HEX_DIGEST_LEN+1]; base16_encode(hex, sizeof(hex), d, DIGEST_LEN); if (!strcmp(hex, "11E0EDF526950739F7769810FCACAB8C882FAEEE")) { return &sd_ei_minimal; } else if (!strcmp(hex, "47803B02A0E70E9E8BDA226CB1D74DE354D67DFF")) { return &sd_ei_maximal; } else if (!strcmp(hex, "D5DF4AA62EE9FFC9543D41150C9864908E0390AF")) { return &sd_ei_bad_nickname; } else if (!strcmp(hex, "16D387D3A58F7DB3CF46638F8D0B90C45C7D769C")) { return &sd_ei_bad_sig2; } else if (!strcmp(hex, "9D90F8C42955BBC57D54FB05E54A3F083AF42E8B")) { return &sd_ei_bad_tokens; } else { ++mock_get_by_ei_dd_unrecognized; return NULL; } } static smartlist_t *mock_ei_insert_list = NULL; static was_router_added_t mock_ei_insert(routerlist_t *rl, extrainfo_t *ei, int warn_if_incompatible) { (void) rl; (void) warn_if_incompatible; smartlist_add(mock_ei_insert_list, ei); return ROUTER_ADDED_SUCCESSFULLY; } static void test_dir_load_extrainfo(void *arg) { (void) arg; smartlist_t *chunks = smartlist_new(); smartlist_t *wanted = smartlist_new(); char buf[DIGEST_LEN]; char *mem_op_hex_tmp = NULL; char *list = NULL; #define ADD(str) \ do { \ tt_int_op(0,OP_EQ,router_get_extrainfo_hash(str, strlen(str), buf)); \ smartlist_add(wanted, tor_strdup(hex_str(buf, DIGEST_LEN))); \ } while (0) mock_ei_insert_list = smartlist_new(); MOCK(router_get_by_extrainfo_digest, mock_get_by_ei_desc_digest); MOCK(extrainfo_insert, mock_ei_insert); smartlist_add(chunks, tor_strdup(EX_EI_MINIMAL)); smartlist_add(chunks, tor_strdup(EX_EI_BAD_NICKNAME)); smartlist_add(chunks, tor_strdup(EX_EI_MAXIMAL)); smartlist_add(chunks, tor_strdup(EX_EI_BAD_PUBLISHED)); smartlist_add(chunks, tor_strdup(EX_EI_BAD_TOKENS)); /* not ADDing MINIMIAL */ ADD(EX_EI_MAXIMAL); ADD(EX_EI_BAD_NICKNAME); /* Not ADDing BAD_PUBLISHED */ ADD(EX_EI_BAD_TOKENS); ADD(EX_EI_BAD_SIG2); list = smartlist_join_strings(chunks, "", 0, NULL); router_load_extrainfo_from_string(list, NULL, SAVED_IN_JOURNAL, wanted, 1); /* The "maximal" router was added. */ /* "minimal" was also added, even though we didn't ask for it, since * that's what we do with extrainfos. */ tt_int_op(smartlist_len(mock_ei_insert_list),OP_EQ,2); extrainfo_t *e = smartlist_get(mock_ei_insert_list, 0); test_memeq_hex(e->cache_info.signed_descriptor_digest, "11E0EDF526950739F7769810FCACAB8C882FAEEE"); e = smartlist_get(mock_ei_insert_list, 1); test_memeq_hex(e->cache_info.signed_descriptor_digest, "47803B02A0E70E9E8BDA226CB1D74DE354D67DFF"); tt_int_op(dls_minimal.n_download_failures, OP_EQ, 0); tt_int_op(dls_maximal.n_download_failures, OP_EQ, 0); /* "Bad nickname" and "Bad tokens" should have gotten marked * non-retriable. */ tt_want_int_op(mock_get_by_ei_dd_calls, OP_EQ, 2); tt_want_int_op(mock_get_by_ei_dd_unrecognized, OP_EQ, 0); tt_int_op(sd_ei_bad_nickname.ei_dl_status.n_download_failures, OP_EQ, 255); tt_int_op(sd_ei_bad_tokens.ei_dl_status.n_download_failures, OP_EQ, 255); /* bad_ports is retriable -- because we didn't ask for it. */ tt_int_op(dls_bad_ports.n_download_failures, OP_EQ, 0); /* Wanted still contains "BAD_SIG2" */ tt_int_op(smartlist_len(wanted), OP_EQ, 1); tt_str_op(smartlist_get(wanted, 0), OP_EQ, "16D387D3A58F7DB3CF46638F8D0B90C45C7D769C"); #undef ADD done: tor_free(mem_op_hex_tmp); UNMOCK(router_get_by_extrainfo_digest); SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp)); smartlist_free(chunks); SMARTLIST_FOREACH(wanted, char *, cp, tor_free(cp)); smartlist_free(wanted); tor_free(list); } static void test_dir_versions(void *arg) { tor_version_t ver1; /* Try out version parsing functionality */ (void)arg; tt_int_op(0,OP_EQ, tor_version_parse("0.3.4pre2-cvs", &ver1)); tt_int_op(0,OP_EQ, ver1.major); tt_int_op(3,OP_EQ, ver1.minor); tt_int_op(4,OP_EQ, ver1.micro); tt_int_op(VER_PRE,OP_EQ, ver1.status); tt_int_op(2,OP_EQ, ver1.patchlevel); tt_int_op(0,OP_EQ, tor_version_parse("0.3.4rc1", &ver1)); tt_int_op(0,OP_EQ, ver1.major); tt_int_op(3,OP_EQ, ver1.minor); tt_int_op(4,OP_EQ, ver1.micro); tt_int_op(VER_RC,OP_EQ, ver1.status); tt_int_op(1,OP_EQ, ver1.patchlevel); tt_int_op(0,OP_EQ, tor_version_parse("1.3.4", &ver1)); tt_int_op(1,OP_EQ, ver1.major); tt_int_op(3,OP_EQ, ver1.minor); tt_int_op(4,OP_EQ, ver1.micro); tt_int_op(VER_RELEASE,OP_EQ, ver1.status); tt_int_op(0,OP_EQ, ver1.patchlevel); tt_int_op(0,OP_EQ, tor_version_parse("1.3.4.999", &ver1)); tt_int_op(1,OP_EQ, ver1.major); tt_int_op(3,OP_EQ, ver1.minor); tt_int_op(4,OP_EQ, ver1.micro); tt_int_op(VER_RELEASE,OP_EQ, ver1.status); tt_int_op(999,OP_EQ, ver1.patchlevel); tt_int_op(0,OP_EQ, tor_version_parse("0.1.2.4-alpha", &ver1)); tt_int_op(0,OP_EQ, ver1.major); tt_int_op(1,OP_EQ, ver1.minor); tt_int_op(2,OP_EQ, ver1.micro); tt_int_op(4,OP_EQ, ver1.patchlevel); tt_int_op(VER_RELEASE,OP_EQ, ver1.status); tt_str_op("alpha",OP_EQ, ver1.status_tag); tt_int_op(0,OP_EQ, tor_version_parse("0.1.2.4", &ver1)); tt_int_op(0,OP_EQ, ver1.major); tt_int_op(1,OP_EQ, ver1.minor); tt_int_op(2,OP_EQ, ver1.micro); tt_int_op(4,OP_EQ, ver1.patchlevel); tt_int_op(VER_RELEASE,OP_EQ, ver1.status); tt_str_op("",OP_EQ, ver1.status_tag); tt_int_op(0, OP_EQ, tor_version_parse("10.1", &ver1)); tt_int_op(10, OP_EQ, ver1.major); tt_int_op(1, OP_EQ, ver1.minor); tt_int_op(0, OP_EQ, ver1.micro); tt_int_op(0, OP_EQ, ver1.patchlevel); tt_int_op(VER_RELEASE, OP_EQ, ver1.status); tt_str_op("", OP_EQ, ver1.status_tag); tt_int_op(0, OP_EQ, tor_version_parse("5.99.999", &ver1)); tt_int_op(5, OP_EQ, ver1.major); tt_int_op(99, OP_EQ, ver1.minor); tt_int_op(999, OP_EQ, ver1.micro); tt_int_op(0, OP_EQ, ver1.patchlevel); tt_int_op(VER_RELEASE, OP_EQ, ver1.status); tt_str_op("", OP_EQ, ver1.status_tag); tt_int_op(0, OP_EQ, tor_version_parse("10.1-alpha", &ver1)); tt_int_op(10, OP_EQ, ver1.major); tt_int_op(1, OP_EQ, ver1.minor); tt_int_op(0, OP_EQ, ver1.micro); tt_int_op(0, OP_EQ, ver1.patchlevel); tt_int_op(VER_RELEASE, OP_EQ, ver1.status); tt_str_op("alpha", OP_EQ, ver1.status_tag); tt_int_op(0, OP_EQ, tor_version_parse("2.1.700-alpha", &ver1)); tt_int_op(2, OP_EQ, ver1.major); tt_int_op(1, OP_EQ, ver1.minor); tt_int_op(700, OP_EQ, ver1.micro); tt_int_op(0, OP_EQ, ver1.patchlevel); tt_int_op(VER_RELEASE, OP_EQ, ver1.status); tt_str_op("alpha", OP_EQ, ver1.status_tag); tt_int_op(0, OP_EQ, tor_version_parse("1.6.8-alpha-dev", &ver1)); tt_int_op(1, OP_EQ, ver1.major); tt_int_op(6, OP_EQ, ver1.minor); tt_int_op(8, OP_EQ, ver1.micro); tt_int_op(0, OP_EQ, ver1.patchlevel); tt_int_op(VER_RELEASE, OP_EQ, ver1.status); tt_str_op("alpha-dev", OP_EQ, ver1.status_tag); #define tt_versionstatus_op(vs1, op, vs2) \ tt_assert_test_type(vs1,vs2,#vs1" "#op" "#vs2,version_status_t, \ (val1_ op val2_),"%d",TT_EXIT_TEST_FUNCTION) #define test_v_i_o(val, ver, lst) \ tt_versionstatus_op(val, OP_EQ, tor_version_is_obsolete(ver, lst)) /* make sure tor_version_is_obsolete() works */ test_v_i_o(VS_OLD, "0.0.1", "Tor 0.0.2"); test_v_i_o(VS_OLD, "0.0.1", "0.0.2, Tor 0.0.3"); test_v_i_o(VS_OLD, "0.0.1", "0.0.2,Tor 0.0.3"); test_v_i_o(VS_OLD, "0.0.1","0.0.3,BetterTor 0.0.1"); test_v_i_o(VS_RECOMMENDED, "0.0.2", "Tor 0.0.2,Tor 0.0.3"); test_v_i_o(VS_NEW_IN_SERIES, "0.0.2", "Tor 0.0.2pre1,Tor 0.0.3"); test_v_i_o(VS_OLD, "0.0.2", "Tor 0.0.2.1,Tor 0.0.3"); test_v_i_o(VS_NEW, "0.1.0", "Tor 0.0.2,Tor 0.0.3"); test_v_i_o(VS_RECOMMENDED, "0.0.7rc2", "0.0.7,Tor 0.0.7rc2,Tor 0.0.8"); test_v_i_o(VS_OLD, "0.0.5.0", "0.0.5.1-cvs"); test_v_i_o(VS_NEW_IN_SERIES, "0.0.5.1-cvs", "0.0.5, 0.0.6"); /* Not on list, but newer than any in same series. */ test_v_i_o(VS_NEW_IN_SERIES, "0.1.0.3", "Tor 0.1.0.2,Tor 0.0.9.5,Tor 0.1.1.0"); /* Series newer than any on list. */ test_v_i_o(VS_NEW, "0.1.2.3", "Tor 0.1.0.2,Tor 0.0.9.5,Tor 0.1.1.0"); /* Series older than any on list. */ test_v_i_o(VS_OLD, "0.0.1.3", "Tor 0.1.0.2,Tor 0.0.9.5,Tor 0.1.1.0"); /* Not on list, not newer than any on same series. */ test_v_i_o(VS_UNRECOMMENDED, "0.1.0.1", "Tor 0.1.0.2,Tor 0.0.9.5,Tor 0.1.1.0"); /* On list, not newer than any on same series. */ test_v_i_o(VS_UNRECOMMENDED, "0.1.0.1", "Tor 0.1.0.2,Tor 0.0.9.5,Tor 0.1.1.0"); tt_int_op(0,OP_EQ, tor_version_as_new_as("Tor 0.0.5", "0.0.9pre1-cvs")); tt_int_op(1,OP_EQ, tor_version_as_new_as( "Tor 0.0.8 on Darwin 64-121-192-100.c3-0." "sfpo-ubr1.sfrn-sfpo.ca.cable.rcn.com Power Macintosh", "0.0.8rc2")); tt_int_op(0,OP_EQ, tor_version_as_new_as( "Tor 0.0.8 on Darwin 64-121-192-100.c3-0." "sfpo-ubr1.sfrn-sfpo.ca.cable.rcn.com Power Macintosh", "0.0.8.2")); /* Now try svn revisions. */ tt_int_op(1,OP_EQ, tor_version_as_new_as("Tor 0.2.1.0-dev (r100)", "Tor 0.2.1.0-dev (r99)")); tt_int_op(1,OP_EQ, tor_version_as_new_as( "Tor 0.2.1.0-dev (r100) on Banana Jr", "Tor 0.2.1.0-dev (r99) on Hal 9000")); tt_int_op(1,OP_EQ, tor_version_as_new_as("Tor 0.2.1.0-dev (r100)", "Tor 0.2.1.0-dev on Colossus")); tt_int_op(0,OP_EQ, tor_version_as_new_as("Tor 0.2.1.0-dev (r99)", "Tor 0.2.1.0-dev (r100)")); tt_int_op(0,OP_EQ, tor_version_as_new_as("Tor 0.2.1.0-dev (r99) on MCP", "Tor 0.2.1.0-dev (r100) on AM")); tt_int_op(0,OP_EQ, tor_version_as_new_as("Tor 0.2.1.0-dev", "Tor 0.2.1.0-dev (r99)")); tt_int_op(1,OP_EQ, tor_version_as_new_as("Tor 0.2.1.1", "Tor 0.2.1.0-dev (r99)")); /* Now try git revisions */ tt_int_op(0,OP_EQ, tor_version_parse("0.5.6.7 (git-ff00ff)", &ver1)); tt_int_op(0,OP_EQ, ver1.major); tt_int_op(5,OP_EQ, ver1.minor); tt_int_op(6,OP_EQ, ver1.micro); tt_int_op(7,OP_EQ, ver1.patchlevel); tt_int_op(3,OP_EQ, ver1.git_tag_len); tt_mem_op(ver1.git_tag,OP_EQ, "\xff\x00\xff", 3); tt_int_op(-1,OP_EQ, tor_version_parse("0.5.6.7 (git-ff00xx)", &ver1)); tt_int_op(-1,OP_EQ, tor_version_parse("0.5.6.7 (git-ff00fff)", &ver1)); tt_int_op(0,OP_EQ, tor_version_parse("0.5.6.7 (git ff00fff)", &ver1)); done: ; } /** Run unit tests for directory fp_pair functions. */ static void test_dir_fp_pairs(void *arg) { smartlist_t *sl = smartlist_new(); fp_pair_t *pair; (void)arg; dir_split_resource_into_fingerprint_pairs( /* Two pairs, out of order, with one duplicate. */ "73656372657420646174612E0000000000FFFFFF-" "557365204145532d32353620696e73746561642e+" "73656372657420646174612E0000000000FFFFFF-" "557365204145532d32353620696e73746561642e+" "48657861646563696d616c2069736e277420736f-" "676f6f6420666f7220686964696e6720796f7572.z", sl); tt_int_op(smartlist_len(sl),OP_EQ, 2); pair = smartlist_get(sl, 0); tt_mem_op(pair->first,OP_EQ, "Hexadecimal isn't so", DIGEST_LEN); tt_mem_op(pair->second,OP_EQ, "good for hiding your", DIGEST_LEN); pair = smartlist_get(sl, 1); tt_mem_op(pair->first,OP_EQ, "secret data.\0\0\0\0\0\xff\xff\xff", DIGEST_LEN); tt_mem_op(pair->second,OP_EQ, "Use AES-256 instead.", DIGEST_LEN); done: SMARTLIST_FOREACH(sl, fp_pair_t *, pair, tor_free(pair)); smartlist_free(sl); } static void test_dir_split_fps(void *testdata) { smartlist_t *sl = smartlist_new(); char *mem_op_hex_tmp = NULL; (void)testdata; /* Some example hex fingerprints and their base64 equivalents */ #define HEX1 "Fe0daff89127389bc67558691231234551193EEE" #define HEX2 "Deadbeef99999991111119999911111111f00ba4" #define HEX3 "b33ff00db33ff00db33ff00db33ff00db33ff00d" #define HEX256_1 \ "f3f3f3f3fbbbbf3f3f3f3fbbbf3f3f3f3fbbbbf3f3f3f3fbbbf3f3f3f3fbbbbf" #define HEX256_2 \ "cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccCCc" #define HEX256_3 \ "0123456789ABCdef0123456789ABCdef0123456789ABCdef0123456789ABCdef" #define B64_1 "/g2v+JEnOJvGdVhpEjEjRVEZPu4" #define B64_2 "3q2+75mZmZERERmZmRERERHwC6Q" #define B64_256_1 "8/Pz8/u7vz8/Pz+7vz8/Pz+7u/Pz8/P7u/Pz8/P7u78" #define B64_256_2 "zMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMzMw" /* no flags set */ dir_split_resource_into_fingerprints("A+C+B", sl, NULL, 0); tt_int_op(smartlist_len(sl), OP_EQ, 3); tt_str_op(smartlist_get(sl, 0), OP_EQ, "A"); tt_str_op(smartlist_get(sl, 1), OP_EQ, "C"); tt_str_op(smartlist_get(sl, 2), OP_EQ, "B"); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_clear(sl); /* uniq strings. */ dir_split_resource_into_fingerprints("A+C+B+A+B+B", sl, NULL, DSR_SORT_UNIQ); tt_int_op(smartlist_len(sl), OP_EQ, 3); tt_str_op(smartlist_get(sl, 0), OP_EQ, "A"); tt_str_op(smartlist_get(sl, 1), OP_EQ, "B"); tt_str_op(smartlist_get(sl, 2), OP_EQ, "C"); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_clear(sl); /* Decode hex. */ dir_split_resource_into_fingerprints(HEX1"+"HEX2, sl, NULL, DSR_HEX); tt_int_op(smartlist_len(sl), OP_EQ, 2); test_mem_op_hex(smartlist_get(sl, 0), OP_EQ, HEX1); test_mem_op_hex(smartlist_get(sl, 1), OP_EQ, HEX2); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_clear(sl); /* decode hex and drop weirdness. */ dir_split_resource_into_fingerprints(HEX1"+bogus+"HEX2"+"HEX256_1, sl, NULL, DSR_HEX); tt_int_op(smartlist_len(sl), OP_EQ, 2); test_mem_op_hex(smartlist_get(sl, 0), OP_EQ, HEX1); test_mem_op_hex(smartlist_get(sl, 1), OP_EQ, HEX2); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_clear(sl); /* Decode long hex */ dir_split_resource_into_fingerprints(HEX256_1"+"HEX256_2"+"HEX2"+"HEX256_3, sl, NULL, DSR_HEX|DSR_DIGEST256); tt_int_op(smartlist_len(sl), OP_EQ, 3); test_mem_op_hex(smartlist_get(sl, 0), OP_EQ, HEX256_1); test_mem_op_hex(smartlist_get(sl, 1), OP_EQ, HEX256_2); test_mem_op_hex(smartlist_get(sl, 2), OP_EQ, HEX256_3); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_clear(sl); /* Decode hex and sort. */ dir_split_resource_into_fingerprints(HEX1"+"HEX2"+"HEX3"+"HEX2, sl, NULL, DSR_HEX|DSR_SORT_UNIQ); tt_int_op(smartlist_len(sl), OP_EQ, 3); test_mem_op_hex(smartlist_get(sl, 0), OP_EQ, HEX3); test_mem_op_hex(smartlist_get(sl, 1), OP_EQ, HEX2); test_mem_op_hex(smartlist_get(sl, 2), OP_EQ, HEX1); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_clear(sl); /* Decode long hex and sort */ dir_split_resource_into_fingerprints(HEX256_1"+"HEX256_2"+"HEX256_3 "+"HEX256_1, sl, NULL, DSR_HEX|DSR_DIGEST256|DSR_SORT_UNIQ); tt_int_op(smartlist_len(sl), OP_EQ, 3); test_mem_op_hex(smartlist_get(sl, 0), OP_EQ, HEX256_3); test_mem_op_hex(smartlist_get(sl, 1), OP_EQ, HEX256_2); test_mem_op_hex(smartlist_get(sl, 2), OP_EQ, HEX256_1); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_clear(sl); /* Decode base64 */ dir_split_resource_into_fingerprints(B64_1"-"B64_2, sl, NULL, DSR_BASE64); tt_int_op(smartlist_len(sl), OP_EQ, 2); test_mem_op_hex(smartlist_get(sl, 0), OP_EQ, HEX1); test_mem_op_hex(smartlist_get(sl, 1), OP_EQ, HEX2); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_clear(sl); /* Decode long base64 */ dir_split_resource_into_fingerprints(B64_256_1"-"B64_256_2, sl, NULL, DSR_BASE64|DSR_DIGEST256); tt_int_op(smartlist_len(sl), OP_EQ, 2); test_mem_op_hex(smartlist_get(sl, 0), OP_EQ, HEX256_1); test_mem_op_hex(smartlist_get(sl, 1), OP_EQ, HEX256_2); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_clear(sl); dir_split_resource_into_fingerprints(B64_256_1, sl, NULL, DSR_BASE64|DSR_DIGEST256); tt_int_op(smartlist_len(sl), OP_EQ, 1); test_mem_op_hex(smartlist_get(sl, 0), OP_EQ, HEX256_1); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_clear(sl); done: SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); smartlist_free(sl); tor_free(mem_op_hex_tmp); } static void test_dir_measured_bw_kb(void *arg) { measured_bw_line_t mbwl; int i; const char *lines_pass[] = { "node_id=$557365204145532d32353620696e73746561642e bw=1024\n", "node_id=$557365204145532d32353620696e73746561642e\t bw=1024 \n", " node_id=$557365204145532d32353620696e73746561642e bw=1024\n", "\tnoise\tnode_id=$557365204145532d32353620696e73746561642e " "bw=1024 junk=007\n", "misc=junk node_id=$557365204145532d32353620696e73746561642e " "bw=1024 junk=007\n", "end" }; const char *lines_fail[] = { /* Test possible python stupidity on input */ "node_id=None bw=1024\n", "node_id=$None bw=1024\n", "node_id=$557365204145532d32353620696e73746561642e bw=None\n", "node_id=$557365204145532d32353620696e73746561642e bw=1024.0\n", "node_id=$557365204145532d32353620696e73746561642e bw=.1024\n", "node_id=$557365204145532d32353620696e73746561642e bw=1.024\n", "node_id=$557365204145532d32353620696e73746561642e bw=1024 bw=0\n", "node_id=$557365204145532d32353620696e73746561642e bw=1024 bw=None\n", "node_id=$557365204145532d32353620696e73746561642e bw=-1024\n", /* Test incomplete writes due to race conditions, partial copies, etc */ "node_i", "node_i\n", "node_id=", "node_id=\n", "node_id=$557365204145532d32353620696e73746561642e bw=", "node_id=$557365204145532d32353620696e73746561642e bw=1024", "node_id=$557365204145532d32353620696e73746561642e bw=\n", "node_id=$557365204145532d32353620696e7374", "node_id=$557365204145532d32353620696e7374\n", "", "\n", " \n ", " \n\n", /* Test assorted noise */ " node_id= ", "node_id==$557365204145532d32353620696e73746561642e bw==1024\n", "node_id=$55736520414552d32353620696e73746561642e bw=1024\n", "node_id=557365204145532d32353620696e73746561642e bw=1024\n", "node_id= $557365204145532d32353620696e73746561642e bw=0.23\n", "end" }; (void)arg; for (i = 0; strcmp(lines_fail[i], "end"); i++) { //fprintf(stderr, "Testing: %s\n", lines_fail[i]); tt_assert(measured_bw_line_parse(&mbwl, lines_fail[i]) == -1); } for (i = 0; strcmp(lines_pass[i], "end"); i++) { //fprintf(stderr, "Testing: %s %d\n", lines_pass[i], TOR_ISSPACE('\n')); tt_assert(measured_bw_line_parse(&mbwl, lines_pass[i]) == 0); tt_assert(mbwl.bw_kb == 1024); tt_assert(strcmp(mbwl.node_hex, "557365204145532d32353620696e73746561642e") == 0); } done: return; } #define MBWC_INIT_TIME 1000 /** Do the measured bandwidth cache unit test */ static void test_dir_measured_bw_kb_cache(void *arg) { /* Initial fake time_t for testing */ time_t curr = MBWC_INIT_TIME; /* Some measured_bw_line_ts */ measured_bw_line_t mbwl[3]; /* For receiving output on cache queries */ long bw; time_t as_of; /* First, clear the cache and assert that it's empty */ (void)arg; dirserv_clear_measured_bw_cache(); tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 0); /* * Set up test mbwls; none of the dirserv_cache_*() functions care about * the node_hex field. */ memset(mbwl[0].node_id, 0x01, DIGEST_LEN); mbwl[0].bw_kb = 20; memset(mbwl[1].node_id, 0x02, DIGEST_LEN); mbwl[1].bw_kb = 40; memset(mbwl[2].node_id, 0x03, DIGEST_LEN); mbwl[2].bw_kb = 80; /* Try caching something */ dirserv_cache_measured_bw(&(mbwl[0]), curr); tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 1); /* Okay, let's see if we can retrieve it */ tt_assert(dirserv_query_measured_bw_cache_kb(mbwl[0].node_id,&bw, &as_of)); tt_int_op(bw,OP_EQ, 20); tt_int_op(as_of,OP_EQ, MBWC_INIT_TIME); /* Try retrieving it without some outputs */ tt_assert(dirserv_query_measured_bw_cache_kb(mbwl[0].node_id,NULL, NULL)); tt_assert(dirserv_query_measured_bw_cache_kb(mbwl[0].node_id,&bw, NULL)); tt_int_op(bw,OP_EQ, 20); tt_assert(dirserv_query_measured_bw_cache_kb(mbwl[0].node_id,NULL,&as_of)); tt_int_op(as_of,OP_EQ, MBWC_INIT_TIME); /* Now expire it */ curr += MAX_MEASUREMENT_AGE + 1; dirserv_expire_measured_bw_cache(curr); /* Check that the cache is empty */ tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 0); /* Check that we can't retrieve it */ tt_assert(!dirserv_query_measured_bw_cache_kb(mbwl[0].node_id, NULL,NULL)); /* Try caching a few things now */ dirserv_cache_measured_bw(&(mbwl[0]), curr); tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 1); curr += MAX_MEASUREMENT_AGE / 4; dirserv_cache_measured_bw(&(mbwl[1]), curr); tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 2); curr += MAX_MEASUREMENT_AGE / 4; dirserv_cache_measured_bw(&(mbwl[2]), curr); tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 3); curr += MAX_MEASUREMENT_AGE / 4 + 1; /* Do an expire that's too soon to get any of them */ dirserv_expire_measured_bw_cache(curr); tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 3); /* Push the oldest one off the cliff */ curr += MAX_MEASUREMENT_AGE / 4; dirserv_expire_measured_bw_cache(curr); tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 2); /* And another... */ curr += MAX_MEASUREMENT_AGE / 4; dirserv_expire_measured_bw_cache(curr); tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 1); /* This should empty it out again */ curr += MAX_MEASUREMENT_AGE / 4; dirserv_expire_measured_bw_cache(curr); tt_int_op(dirserv_get_measured_bw_cache_size(),OP_EQ, 0); done: return; } static void test_dir_param_voting(void *arg) { networkstatus_t vote1, vote2, vote3, vote4; smartlist_t *votes = smartlist_new(); char *res = NULL; /* dirvote_compute_params only looks at the net_params field of the votes, so that's all we need to set. */ (void)arg; memset(&vote1, 0, sizeof(vote1)); memset(&vote2, 0, sizeof(vote2)); memset(&vote3, 0, sizeof(vote3)); memset(&vote4, 0, sizeof(vote4)); vote1.net_params = smartlist_new(); vote2.net_params = smartlist_new(); vote3.net_params = smartlist_new(); vote4.net_params = smartlist_new(); smartlist_split_string(vote1.net_params, "ab=90 abcd=20 cw=50 x-yz=-99", NULL, 0, 0); smartlist_split_string(vote2.net_params, "ab=27 cw=5 x-yz=88", NULL, 0, 0); smartlist_split_string(vote3.net_params, "abcd=20 c=60 cw=500 x-yz=-9 zzzzz=101", NULL, 0, 0); smartlist_split_string(vote4.net_params, "ab=900 abcd=200 c=1 cw=51 x-yz=100", NULL, 0, 0); tt_int_op(100,OP_EQ, networkstatus_get_param(&vote4, "x-yz", 50, 0, 300)); tt_int_op(222,OP_EQ, networkstatus_get_param(&vote4, "foobar", 222, 0, 300)); tt_int_op(80,OP_EQ, networkstatus_get_param(&vote4, "ab", 12, 0, 80)); tt_int_op(-8,OP_EQ, networkstatus_get_param(&vote4, "ab", -12, -100, -8)); tt_int_op(0,OP_EQ, networkstatus_get_param(&vote4, "foobar", 0, -100, 8)); smartlist_add(votes, &vote1); /* Do the first tests without adding all the other votes, for * networks without many dirauths. */ res = dirvote_compute_params(votes, 12, 2); tt_str_op(res,OP_EQ, ""); tor_free(res); res = dirvote_compute_params(votes, 12, 1); tt_str_op(res,OP_EQ, "ab=90 abcd=20 cw=50 x-yz=-99"); tor_free(res); smartlist_add(votes, &vote2); res = dirvote_compute_params(votes, 12, 2); tt_str_op(res,OP_EQ, "ab=27 cw=5 x-yz=-99"); tor_free(res); res = dirvote_compute_params(votes, 12, 3); tt_str_op(res,OP_EQ, "ab=27 cw=5 x-yz=-99"); tor_free(res); res = dirvote_compute_params(votes, 12, 6); tt_str_op(res,OP_EQ, ""); tor_free(res); smartlist_add(votes, &vote3); res = dirvote_compute_params(votes, 12, 3); tt_str_op(res,OP_EQ, "ab=27 abcd=20 cw=50 x-yz=-9"); tor_free(res); res = dirvote_compute_params(votes, 12, 5); tt_str_op(res,OP_EQ, "cw=50 x-yz=-9"); tor_free(res); res = dirvote_compute_params(votes, 12, 9); tt_str_op(res,OP_EQ, "cw=50 x-yz=-9"); tor_free(res); smartlist_add(votes, &vote4); res = dirvote_compute_params(votes, 12, 4); tt_str_op(res,OP_EQ, "ab=90 abcd=20 cw=50 x-yz=-9"); tor_free(res); res = dirvote_compute_params(votes, 12, 5); tt_str_op(res,OP_EQ, "ab=90 abcd=20 cw=50 x-yz=-9"); tor_free(res); /* Test that the special-cased "at least three dirauths voted for * this param" logic works as expected. */ res = dirvote_compute_params(votes, 12, 6); tt_str_op(res,OP_EQ, "ab=90 abcd=20 cw=50 x-yz=-9"); tor_free(res); res = dirvote_compute_params(votes, 12, 10); tt_str_op(res,OP_EQ, "ab=90 abcd=20 cw=50 x-yz=-9"); tor_free(res); done: tor_free(res); SMARTLIST_FOREACH(vote1.net_params, char *, cp, tor_free(cp)); SMARTLIST_FOREACH(vote2.net_params, char *, cp, tor_free(cp)); SMARTLIST_FOREACH(vote3.net_params, char *, cp, tor_free(cp)); SMARTLIST_FOREACH(vote4.net_params, char *, cp, tor_free(cp)); smartlist_free(vote1.net_params); smartlist_free(vote2.net_params); smartlist_free(vote3.net_params); smartlist_free(vote4.net_params); smartlist_free(votes); return; } extern const char AUTHORITY_CERT_1[]; extern const char AUTHORITY_SIGNKEY_1[]; extern const char AUTHORITY_CERT_2[]; extern const char AUTHORITY_SIGNKEY_2[]; extern const char AUTHORITY_CERT_3[]; extern const char AUTHORITY_SIGNKEY_3[]; /** Helper: Test that two networkstatus_voter_info_t do in fact represent the * same voting authority, and that they do in fact have all the same * information. */ static void test_same_voter(networkstatus_voter_info_t *v1, networkstatus_voter_info_t *v2) { tt_str_op(v1->nickname,OP_EQ, v2->nickname); tt_mem_op(v1->identity_digest,OP_EQ, v2->identity_digest, DIGEST_LEN); tt_str_op(v1->address,OP_EQ, v2->address); tt_int_op(v1->addr,OP_EQ, v2->addr); tt_int_op(v1->dir_port,OP_EQ, v2->dir_port); tt_int_op(v1->or_port,OP_EQ, v2->or_port); tt_str_op(v1->contact,OP_EQ, v2->contact); tt_mem_op(v1->vote_digest,OP_EQ, v2->vote_digest, DIGEST_LEN); done: ; } /** Helper: Make a new routerinfo containing the right information for a * given vote_routerstatus_t. */ static routerinfo_t * generate_ri_from_rs(const vote_routerstatus_t *vrs) { routerinfo_t *r; const routerstatus_t *rs = &vrs->status; static time_t published = 0; r = tor_malloc_zero(sizeof(routerinfo_t)); r->cert_expiration_time = TIME_MAX; memcpy(r->cache_info.identity_digest, rs->identity_digest, DIGEST_LEN); memcpy(r->cache_info.signed_descriptor_digest, rs->descriptor_digest, DIGEST_LEN); r->cache_info.do_not_cache = 1; r->cache_info.routerlist_index = -1; r->cache_info.signed_descriptor_body = tor_strdup("123456789012345678901234567890123"); r->cache_info.signed_descriptor_len = strlen(r->cache_info.signed_descriptor_body); r->exit_policy = smartlist_new(); r->cache_info.published_on = ++published + time(NULL); if (rs->has_bandwidth) { /* * Multiply by 1000 because the routerinfo_t and the routerstatus_t * seem to use different units (*sigh*) and because we seem stuck on * icky and perverse decimal kilobytes (*double sigh*) - see * router_get_advertised_bandwidth_capped() of routerlist.c and * routerstatus_format_entry() of dirserv.c. */ r->bandwidthrate = rs->bandwidth_kb * 1000; r->bandwidthcapacity = rs->bandwidth_kb * 1000; } return r; } /** Helper: get a detached signatures document for one or two * consensuses. */ static char * get_detached_sigs(networkstatus_t *ns, networkstatus_t *ns2) { char *r; smartlist_t *sl; tor_assert(ns && ns->flavor == FLAV_NS); sl = smartlist_new(); smartlist_add(sl,ns); if (ns2) smartlist_add(sl,ns2); r = networkstatus_get_detached_signatures(sl); smartlist_free(sl); return r; } /** * Generate a routerstatus for v3_networkstatus test */ static vote_routerstatus_t * gen_routerstatus_for_v3ns(int idx, time_t now) { vote_routerstatus_t *vrs=NULL; routerstatus_t *rs; tor_addr_t addr_ipv6; switch (idx) { case 0: /* Generate the first routerstatus. */ vrs = tor_malloc_zero(sizeof(vote_routerstatus_t)); rs = &vrs->status; vrs->version = tor_strdup("0.1.2.14"); rs->published_on = now-1500; strlcpy(rs->nickname, "router2", sizeof(rs->nickname)); memset(rs->identity_digest, 3, DIGEST_LEN); memset(rs->descriptor_digest, 78, DIGEST_LEN); rs->addr = 0x99008801; rs->or_port = 443; rs->dir_port = 8000; /* all flags but running cleared */ rs->is_flagged_running = 1; break; case 1: /* Generate the second routerstatus. */ vrs = tor_malloc_zero(sizeof(vote_routerstatus_t)); rs = &vrs->status; vrs->version = tor_strdup("0.2.0.5"); rs->published_on = now-1000; strlcpy(rs->nickname, "router1", sizeof(rs->nickname)); memset(rs->identity_digest, 5, DIGEST_LEN); memset(rs->descriptor_digest, 77, DIGEST_LEN); rs->addr = 0x99009901; rs->or_port = 443; rs->dir_port = 0; tor_addr_parse(&addr_ipv6, "[1:2:3::4]"); tor_addr_copy(&rs->ipv6_addr, &addr_ipv6); rs->ipv6_orport = 4711; rs->is_exit = rs->is_stable = rs->is_fast = rs->is_flagged_running = rs->is_valid = rs->is_possible_guard = 1; break; case 2: /* Generate the third routerstatus. */ vrs = tor_malloc_zero(sizeof(vote_routerstatus_t)); rs = &vrs->status; vrs->version = tor_strdup("0.1.0.3"); rs->published_on = now-1000; strlcpy(rs->nickname, "router3", sizeof(rs->nickname)); memset(rs->identity_digest, 33, DIGEST_LEN); memset(rs->descriptor_digest, 79, DIGEST_LEN); rs->addr = 0xAA009901; rs->or_port = 400; rs->dir_port = 9999; rs->is_authority = rs->is_exit = rs->is_stable = rs->is_fast = rs->is_flagged_running = rs->is_valid = rs->is_possible_guard = 1; break; case 3: /* Generate a fourth routerstatus that is not running. */ vrs = tor_malloc_zero(sizeof(vote_routerstatus_t)); rs = &vrs->status; vrs->version = tor_strdup("0.1.6.3"); rs->published_on = now-1000; strlcpy(rs->nickname, "router4", sizeof(rs->nickname)); memset(rs->identity_digest, 34, DIGEST_LEN); memset(rs->descriptor_digest, 47, DIGEST_LEN); rs->addr = 0xC0000203; rs->or_port = 500; rs->dir_port = 1999; /* Running flag (and others) cleared */ break; case 4: /* No more for this test; return NULL */ vrs = NULL; break; default: /* Shouldn't happen */ tt_assert(0); } if (vrs) { vrs->microdesc = tor_malloc_zero(sizeof(vote_microdesc_hash_t)); tor_asprintf(&vrs->microdesc->microdesc_hash_line, "m 9,10,11,12,13,14,15,16,17 " "sha256=xyzajkldsdsajdadlsdjaslsdksdjlsdjsdaskdaaa%d\n", idx); } done: return vrs; } /** Apply tweaks to the vote list for each voter */ static int vote_tweaks_for_v3ns(networkstatus_t *v, int voter, time_t now) { vote_routerstatus_t *vrs; const char *msg = NULL; tt_assert(v); (void)now; if (voter == 1) { measured_bw_line_t mbw; memset(mbw.node_id, 33, sizeof(mbw.node_id)); mbw.bw_kb = 1024; tt_assert(measured_bw_line_apply(&mbw, v->routerstatus_list) == 1); } else if (voter == 2 || voter == 3) { /* Monkey around with the list a bit */ vrs = smartlist_get(v->routerstatus_list, 2); smartlist_del_keeporder(v->routerstatus_list, 2); vote_routerstatus_free(vrs); vrs = smartlist_get(v->routerstatus_list, 0); vrs->status.is_fast = 1; if (voter == 3) { vrs = smartlist_get(v->routerstatus_list, 0); smartlist_del_keeporder(v->routerstatus_list, 0); vote_routerstatus_free(vrs); vrs = smartlist_get(v->routerstatus_list, 0); memset(vrs->status.descriptor_digest, (int)'Z', DIGEST_LEN); tt_assert(router_add_to_routerlist( generate_ri_from_rs(vrs), &msg,0,0) >= 0); } } done: return 0; } /** * Test a parsed vote_routerstatus_t for v3_networkstatus test */ static void test_vrs_for_v3ns(vote_routerstatus_t *vrs, int voter, time_t now) { routerstatus_t *rs; tor_addr_t addr_ipv6; tt_assert(vrs); rs = &(vrs->status); tt_assert(rs); /* Split out by digests to test */ if (tor_memeq(rs->identity_digest, "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3" "\x3\x3\x3\x3", DIGEST_LEN) && (voter == 1)) { /* Check the first routerstatus. */ tt_str_op(vrs->version,OP_EQ, "0.1.2.14"); tt_int_op(rs->published_on,OP_EQ, now-1500); tt_str_op(rs->nickname,OP_EQ, "router2"); tt_mem_op(rs->identity_digest,OP_EQ, "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3" "\x3\x3\x3\x3", DIGEST_LEN); tt_mem_op(rs->descriptor_digest,OP_EQ, "NNNNNNNNNNNNNNNNNNNN", DIGEST_LEN); tt_int_op(rs->addr,OP_EQ, 0x99008801); tt_int_op(rs->or_port,OP_EQ, 443); tt_int_op(rs->dir_port,OP_EQ, 8000); /* no flags except "running" (16) and "v2dir" (64) */ tt_u64_op(vrs->flags, OP_EQ, U64_LITERAL(80)); } else if (tor_memeq(rs->identity_digest, "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5" "\x5\x5\x5\x5", DIGEST_LEN) && (voter == 1 || voter == 2)) { tt_mem_op(rs->identity_digest,OP_EQ, "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5" "\x5\x5\x5\x5", DIGEST_LEN); if (voter == 1) { /* Check the second routerstatus. */ tt_str_op(vrs->version,OP_EQ, "0.2.0.5"); tt_int_op(rs->published_on,OP_EQ, now-1000); tt_str_op(rs->nickname,OP_EQ, "router1"); } tt_mem_op(rs->descriptor_digest,OP_EQ, "MMMMMMMMMMMMMMMMMMMM", DIGEST_LEN); tt_int_op(rs->addr,OP_EQ, 0x99009901); tt_int_op(rs->or_port,OP_EQ, 443); tt_int_op(rs->dir_port,OP_EQ, 0); tor_addr_parse(&addr_ipv6, "[1:2:3::4]"); tt_assert(tor_addr_eq(&rs->ipv6_addr, &addr_ipv6)); tt_int_op(rs->ipv6_orport,OP_EQ, 4711); if (voter == 1) { /* all except "authority" (1) and "v2dir" (64) */ tt_u64_op(vrs->flags, OP_EQ, U64_LITERAL(190)); } else { /* 1023 - authority(1) - madeofcheese(16) - madeoftin(32) - v2dir(256) */ tt_u64_op(vrs->flags, OP_EQ, U64_LITERAL(718)); } } else if (tor_memeq(rs->identity_digest, "\x33\x33\x33\x33\x33\x33\x33\x33\x33\x33" "\x33\x33\x33\x33\x33\x33\x33\x33\x33\x33", DIGEST_LEN) && (voter == 1 || voter == 2)) { /* Check the measured bandwidth bits */ tt_assert(vrs->has_measured_bw && vrs->measured_bw_kb == 1024); } else { /* * Didn't expect this, but the old unit test only checked some of them, * so don't assert. */ /* tt_assert(0); */ } done: return; } /** * Test a consensus for v3_networkstatus_test */ static void test_consensus_for_v3ns(networkstatus_t *con, time_t now) { (void)now; tt_assert(con); tt_assert(!con->cert); tt_int_op(2,OP_EQ, smartlist_len(con->routerstatus_list)); /* There should be two listed routers: one with identity 3, one with * identity 5. */ done: return; } /** * Test a router list entry for v3_networkstatus test */ static void test_routerstatus_for_v3ns(routerstatus_t *rs, time_t now) { tor_addr_t addr_ipv6; tt_assert(rs); /* There should be two listed routers: one with identity 3, one with * identity 5. */ /* This one showed up in 2 digests. */ if (tor_memeq(rs->identity_digest, "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3" "\x3\x3", DIGEST_LEN)) { tt_mem_op(rs->identity_digest,OP_EQ, "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3", DIGEST_LEN); tt_mem_op(rs->descriptor_digest,OP_EQ, "NNNNNNNNNNNNNNNNNNNN", DIGEST_LEN); tt_assert(!rs->is_authority); tt_assert(!rs->is_exit); tt_assert(!rs->is_fast); tt_assert(!rs->is_possible_guard); tt_assert(!rs->is_stable); /* (If it wasn't running it wouldn't be here) */ tt_assert(rs->is_flagged_running); tt_assert(!rs->is_valid); tt_assert(!rs->is_named); /* XXXX check version */ } else if (tor_memeq(rs->identity_digest, "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5" "\x5\x5\x5\x5", DIGEST_LEN)) { /* This one showed up in 3 digests. Twice with ID 'M', once with 'Z'. */ tt_mem_op(rs->identity_digest,OP_EQ, "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5", DIGEST_LEN); tt_str_op(rs->nickname,OP_EQ, "router1"); tt_mem_op(rs->descriptor_digest,OP_EQ, "MMMMMMMMMMMMMMMMMMMM", DIGEST_LEN); tt_int_op(rs->published_on,OP_EQ, now-1000); tt_int_op(rs->addr,OP_EQ, 0x99009901); tt_int_op(rs->or_port,OP_EQ, 443); tt_int_op(rs->dir_port,OP_EQ, 0); tor_addr_parse(&addr_ipv6, "[1:2:3::4]"); tt_assert(tor_addr_eq(&rs->ipv6_addr, &addr_ipv6)); tt_int_op(rs->ipv6_orport,OP_EQ, 4711); tt_assert(!rs->is_authority); tt_assert(rs->is_exit); tt_assert(rs->is_fast); tt_assert(rs->is_possible_guard); tt_assert(rs->is_stable); tt_assert(rs->is_flagged_running); tt_assert(rs->is_valid); tt_assert(!rs->is_named); /* XXXX check version */ } else { /* Weren't expecting this... */ tt_assert(0); } done: return; } /** Run a unit tests for generating and parsing networkstatuses, with * the supply test fns. */ static void test_a_networkstatus( vote_routerstatus_t * (*vrs_gen)(int idx, time_t now), int (*vote_tweaks)(networkstatus_t *v, int voter, time_t now), void (*vrs_test)(vote_routerstatus_t *vrs, int voter, time_t now), void (*consensus_test)(networkstatus_t *con, time_t now), void (*rs_test)(routerstatus_t *rs, time_t now)) { authority_cert_t *cert1=NULL, *cert2=NULL, *cert3=NULL; crypto_pk_t *sign_skey_1=NULL, *sign_skey_2=NULL, *sign_skey_3=NULL; crypto_pk_t *sign_skey_leg1=NULL; const char *msg=NULL; /* * Sum the non-zero returns from vote_tweaks() we've seen; if vote_tweaks() * returns non-zero, it changed net_params and we should skip the tests for * that later as they will fail. */ int params_tweaked = 0; time_t now = time(NULL); networkstatus_voter_info_t *voter; document_signature_t *sig; networkstatus_t *vote=NULL, *v1=NULL, *v2=NULL, *v3=NULL, *con=NULL, *con_md=NULL; vote_routerstatus_t *vrs; routerstatus_t *rs; int idx, n_rs, n_vrs; char *v1_text=NULL, *v2_text=NULL, *v3_text=NULL, *consensus_text=NULL, *cp=NULL; smartlist_t *votes = smartlist_new(); /* For generating the two other consensuses. */ char *detached_text1=NULL, *detached_text2=NULL; char *consensus_text2=NULL, *consensus_text3=NULL; char *consensus_text_md2=NULL, *consensus_text_md3=NULL; char *consensus_text_md=NULL; networkstatus_t *con2=NULL, *con_md2=NULL, *con3=NULL, *con_md3=NULL; ns_detached_signatures_t *dsig1=NULL, *dsig2=NULL; tt_assert(vrs_gen); tt_assert(rs_test); tt_assert(vrs_test); /* Parse certificates and keys. */ cert1 = authority_cert_parse_from_string(AUTHORITY_CERT_1, NULL); tt_assert(cert1); cert2 = authority_cert_parse_from_string(AUTHORITY_CERT_2, NULL); tt_assert(cert2); cert3 = authority_cert_parse_from_string(AUTHORITY_CERT_3, NULL); tt_assert(cert3); sign_skey_1 = crypto_pk_new(); sign_skey_2 = crypto_pk_new(); sign_skey_3 = crypto_pk_new(); sign_skey_leg1 = pk_generate(4); tt_assert(!crypto_pk_read_private_key_from_string(sign_skey_1, AUTHORITY_SIGNKEY_1, -1)); tt_assert(!crypto_pk_read_private_key_from_string(sign_skey_2, AUTHORITY_SIGNKEY_2, -1)); tt_assert(!crypto_pk_read_private_key_from_string(sign_skey_3, AUTHORITY_SIGNKEY_3, -1)); tt_assert(!crypto_pk_cmp_keys(sign_skey_1, cert1->signing_key)); tt_assert(!crypto_pk_cmp_keys(sign_skey_2, cert2->signing_key)); /* * Set up a vote; generate it; try to parse it. */ vote = tor_malloc_zero(sizeof(networkstatus_t)); vote->type = NS_TYPE_VOTE; vote->published = now; vote->valid_after = now+1000; vote->fresh_until = now+2000; vote->valid_until = now+3000; vote->vote_seconds = 100; vote->dist_seconds = 200; vote->supported_methods = smartlist_new(); smartlist_split_string(vote->supported_methods, "1 2 3", NULL, 0, -1); vote->client_versions = tor_strdup("0.1.2.14,0.1.2.15"); vote->server_versions = tor_strdup("0.1.2.14,0.1.2.15,0.1.2.16"); vote->known_flags = smartlist_new(); smartlist_split_string(vote->known_flags, "Authority Exit Fast Guard Running Stable V2Dir Valid", 0, SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0); vote->voters = smartlist_new(); voter = tor_malloc_zero(sizeof(networkstatus_voter_info_t)); voter->nickname = tor_strdup("Voter1"); voter->address = tor_strdup("1.2.3.4"); voter->addr = 0x01020304; voter->dir_port = 80; voter->or_port = 9000; voter->contact = tor_strdup("voter@example.com"); crypto_pk_get_digest(cert1->identity_key, voter->identity_digest); smartlist_add(vote->voters, voter); vote->cert = authority_cert_dup(cert1); vote->net_params = smartlist_new(); smartlist_split_string(vote->net_params, "circuitwindow=101 foo=990", NULL, 0, 0); vote->routerstatus_list = smartlist_new(); /* add routerstatuses */ idx = 0; do { vrs = vrs_gen(idx, now); if (vrs) { smartlist_add(vote->routerstatus_list, vrs); tt_assert(router_add_to_routerlist(generate_ri_from_rs(vrs), &msg,0,0)>=0); ++idx; } } while (vrs); n_vrs = idx; /* dump the vote and try to parse it. */ v1_text = format_networkstatus_vote(sign_skey_1, vote); tt_assert(v1_text); v1 = networkstatus_parse_vote_from_string(v1_text, NULL, NS_TYPE_VOTE); tt_assert(v1); /* Make sure the parsed thing was right. */ tt_int_op(v1->type,OP_EQ, NS_TYPE_VOTE); tt_int_op(v1->published,OP_EQ, vote->published); tt_int_op(v1->valid_after,OP_EQ, vote->valid_after); tt_int_op(v1->fresh_until,OP_EQ, vote->fresh_until); tt_int_op(v1->valid_until,OP_EQ, vote->valid_until); tt_int_op(v1->vote_seconds,OP_EQ, vote->vote_seconds); tt_int_op(v1->dist_seconds,OP_EQ, vote->dist_seconds); tt_str_op(v1->client_versions,OP_EQ, vote->client_versions); tt_str_op(v1->server_versions,OP_EQ, vote->server_versions); tt_assert(v1->voters && smartlist_len(v1->voters)); voter = smartlist_get(v1->voters, 0); tt_str_op(voter->nickname,OP_EQ, "Voter1"); tt_str_op(voter->address,OP_EQ, "1.2.3.4"); tt_int_op(voter->addr,OP_EQ, 0x01020304); tt_int_op(voter->dir_port,OP_EQ, 80); tt_int_op(voter->or_port,OP_EQ, 9000); tt_str_op(voter->contact,OP_EQ, "voter@example.com"); tt_assert(v1->cert); tt_assert(!crypto_pk_cmp_keys(sign_skey_1, v1->cert->signing_key)); cp = smartlist_join_strings(v1->known_flags, ":", 0, NULL); tt_str_op(cp,OP_EQ, "Authority:Exit:Fast:Guard:Running:Stable:V2Dir:Valid"); tor_free(cp); tt_int_op(smartlist_len(v1->routerstatus_list),OP_EQ, n_vrs); if (vote_tweaks) params_tweaked += vote_tweaks(v1, 1, now); /* Check the routerstatuses. */ for (idx = 0; idx < n_vrs; ++idx) { vrs = smartlist_get(v1->routerstatus_list, idx); tt_assert(vrs); vrs_test(vrs, 1, now); } /* Generate second vote. It disagrees on some of the times, * and doesn't list versions, and knows some crazy flags */ vote->published = now+1; vote->fresh_until = now+3005; vote->dist_seconds = 300; authority_cert_free(vote->cert); vote->cert = authority_cert_dup(cert2); SMARTLIST_FOREACH(vote->net_params, char *, c, tor_free(c)); smartlist_clear(vote->net_params); smartlist_split_string(vote->net_params, "bar=2000000000 circuitwindow=20", NULL, 0, 0); tor_free(vote->client_versions); tor_free(vote->server_versions); voter = smartlist_get(vote->voters, 0); tor_free(voter->nickname); tor_free(voter->address); voter->nickname = tor_strdup("Voter2"); voter->address = tor_strdup("2.3.4.5"); voter->addr = 0x02030405; crypto_pk_get_digest(cert2->identity_key, voter->identity_digest); smartlist_add(vote->known_flags, tor_strdup("MadeOfCheese")); smartlist_add(vote->known_flags, tor_strdup("MadeOfTin")); smartlist_sort_strings(vote->known_flags); /* generate and parse v2. */ v2_text = format_networkstatus_vote(sign_skey_2, vote); tt_assert(v2_text); v2 = networkstatus_parse_vote_from_string(v2_text, NULL, NS_TYPE_VOTE); tt_assert(v2); if (vote_tweaks) params_tweaked += vote_tweaks(v2, 2, now); /* Check that flags come out right.*/ cp = smartlist_join_strings(v2->known_flags, ":", 0, NULL); tt_str_op(cp,OP_EQ, "Authority:Exit:Fast:Guard:MadeOfCheese:MadeOfTin:" "Running:Stable:V2Dir:Valid"); tor_free(cp); /* Check the routerstatuses. */ n_vrs = smartlist_len(v2->routerstatus_list); for (idx = 0; idx < n_vrs; ++idx) { vrs = smartlist_get(v2->routerstatus_list, idx); tt_assert(vrs); vrs_test(vrs, 2, now); } /* Generate the third vote. */ vote->published = now; vote->fresh_until = now+2003; vote->dist_seconds = 250; authority_cert_free(vote->cert); vote->cert = authority_cert_dup(cert3); SMARTLIST_FOREACH(vote->net_params, char *, c, tor_free(c)); smartlist_clear(vote->net_params); smartlist_split_string(vote->net_params, "circuitwindow=80 foo=660", NULL, 0, 0); smartlist_add(vote->supported_methods, tor_strdup("4")); vote->client_versions = tor_strdup("0.1.2.14,0.1.2.17"); vote->server_versions = tor_strdup("0.1.2.10,0.1.2.15,0.1.2.16"); voter = smartlist_get(vote->voters, 0); tor_free(voter->nickname); tor_free(voter->address); voter->nickname = tor_strdup("Voter3"); voter->address = tor_strdup("3.4.5.6"); voter->addr = 0x03040506; crypto_pk_get_digest(cert3->identity_key, voter->identity_digest); /* This one has a legacy id. */ memset(voter->legacy_id_digest, (int)'A', DIGEST_LEN); v3_text = format_networkstatus_vote(sign_skey_3, vote); tt_assert(v3_text); v3 = networkstatus_parse_vote_from_string(v3_text, NULL, NS_TYPE_VOTE); tt_assert(v3); if (vote_tweaks) params_tweaked += vote_tweaks(v3, 3, now); /* Compute a consensus as voter 3. */ smartlist_add(votes, v3); smartlist_add(votes, v1); smartlist_add(votes, v2); consensus_text = networkstatus_compute_consensus(votes, 3, cert3->identity_key, sign_skey_3, "AAAAAAAAAAAAAAAAAAAA", sign_skey_leg1, FLAV_NS); tt_assert(consensus_text); con = networkstatus_parse_vote_from_string(consensus_text, NULL, NS_TYPE_CONSENSUS); tt_assert(con); //log_notice(LD_GENERAL, "<<%s>>\n<<%s>>\n<<%s>>\n", // v1_text, v2_text, v3_text); consensus_text_md = networkstatus_compute_consensus(votes, 3, cert3->identity_key, sign_skey_3, "AAAAAAAAAAAAAAAAAAAA", sign_skey_leg1, FLAV_MICRODESC); tt_assert(consensus_text_md); con_md = networkstatus_parse_vote_from_string(consensus_text_md, NULL, NS_TYPE_CONSENSUS); tt_assert(con_md); tt_int_op(con_md->flavor,OP_EQ, FLAV_MICRODESC); /* Check consensus contents. */ tt_assert(con->type == NS_TYPE_CONSENSUS); tt_int_op(con->published,OP_EQ, 0); /* this field only appears in votes. */ tt_int_op(con->valid_after,OP_EQ, now+1000); tt_int_op(con->fresh_until,OP_EQ, now+2003); /* median */ tt_int_op(con->valid_until,OP_EQ, now+3000); tt_int_op(con->vote_seconds,OP_EQ, 100); tt_int_op(con->dist_seconds,OP_EQ, 250); /* median */ tt_str_op(con->client_versions,OP_EQ, "0.1.2.14"); tt_str_op(con->server_versions,OP_EQ, "0.1.2.15,0.1.2.16"); cp = smartlist_join_strings(v2->known_flags, ":", 0, NULL); tt_str_op(cp,OP_EQ, "Authority:Exit:Fast:Guard:MadeOfCheese:MadeOfTin:" "Running:Stable:V2Dir:Valid"); tor_free(cp); if (!params_tweaked) { /* Skip this one if vote_tweaks() messed with the param lists */ cp = smartlist_join_strings(con->net_params, ":", 0, NULL); tt_str_op(cp,OP_EQ, "circuitwindow=80:foo=660"); tor_free(cp); } tt_int_op(4,OP_EQ, smartlist_len(con->voters)); /*3 voters, 1 legacy key.*/ /* The voter id digests should be in this order. */ tt_assert(memcmp(cert2->cache_info.identity_digest, cert1->cache_info.identity_digest,DIGEST_LEN)<0); tt_assert(memcmp(cert1->cache_info.identity_digest, cert3->cache_info.identity_digest,DIGEST_LEN)<0); test_same_voter(smartlist_get(con->voters, 1), smartlist_get(v2->voters, 0)); test_same_voter(smartlist_get(con->voters, 2), smartlist_get(v1->voters, 0)); test_same_voter(smartlist_get(con->voters, 3), smartlist_get(v3->voters, 0)); consensus_test(con, now); /* Check the routerstatuses. */ n_rs = smartlist_len(con->routerstatus_list); for (idx = 0; idx < n_rs; ++idx) { rs = smartlist_get(con->routerstatus_list, idx); tt_assert(rs); rs_test(rs, now); } /* Check signatures. the first voter is a pseudo-entry with a legacy key. * The second one hasn't signed. The fourth one has signed: validate it. */ voter = smartlist_get(con->voters, 1); tt_int_op(smartlist_len(voter->sigs),OP_EQ, 0); voter = smartlist_get(con->voters, 3); tt_int_op(smartlist_len(voter->sigs),OP_EQ, 1); sig = smartlist_get(voter->sigs, 0); tt_assert(sig->signature); tt_assert(!sig->good_signature); tt_assert(!sig->bad_signature); tt_assert(!networkstatus_check_document_signature(con, sig, cert3)); tt_assert(sig->signature); tt_assert(sig->good_signature); tt_assert(!sig->bad_signature); { const char *msg=NULL; /* Compute the other two signed consensuses. */ smartlist_shuffle(votes); consensus_text2 = networkstatus_compute_consensus(votes, 3, cert2->identity_key, sign_skey_2, NULL,NULL, FLAV_NS); consensus_text_md2 = networkstatus_compute_consensus(votes, 3, cert2->identity_key, sign_skey_2, NULL,NULL, FLAV_MICRODESC); smartlist_shuffle(votes); consensus_text3 = networkstatus_compute_consensus(votes, 3, cert1->identity_key, sign_skey_1, NULL,NULL, FLAV_NS); consensus_text_md3 = networkstatus_compute_consensus(votes, 3, cert1->identity_key, sign_skey_1, NULL,NULL, FLAV_MICRODESC); tt_assert(consensus_text2); tt_assert(consensus_text3); tt_assert(consensus_text_md2); tt_assert(consensus_text_md3); con2 = networkstatus_parse_vote_from_string(consensus_text2, NULL, NS_TYPE_CONSENSUS); con3 = networkstatus_parse_vote_from_string(consensus_text3, NULL, NS_TYPE_CONSENSUS); con_md2 = networkstatus_parse_vote_from_string(consensus_text_md2, NULL, NS_TYPE_CONSENSUS); con_md3 = networkstatus_parse_vote_from_string(consensus_text_md3, NULL, NS_TYPE_CONSENSUS); tt_assert(con2); tt_assert(con3); tt_assert(con_md2); tt_assert(con_md3); /* All three should have the same digest. */ tt_mem_op(&con->digests,OP_EQ, &con2->digests, sizeof(digests_t)); tt_mem_op(&con->digests,OP_EQ, &con3->digests, sizeof(digests_t)); tt_mem_op(&con_md->digests,OP_EQ, &con_md2->digests, sizeof(digests_t)); tt_mem_op(&con_md->digests,OP_EQ, &con_md3->digests, sizeof(digests_t)); /* Extract a detached signature from con3. */ detached_text1 = get_detached_sigs(con3, con_md3); tt_assert(detached_text1); /* Try to parse it. */ dsig1 = networkstatus_parse_detached_signatures(detached_text1, NULL); tt_assert(dsig1); /* Are parsed values as expected? */ tt_int_op(dsig1->valid_after,OP_EQ, con3->valid_after); tt_int_op(dsig1->fresh_until,OP_EQ, con3->fresh_until); tt_int_op(dsig1->valid_until,OP_EQ, con3->valid_until); { digests_t *dsig_digests = strmap_get(dsig1->digests, "ns"); tt_assert(dsig_digests); tt_mem_op(dsig_digests->d[DIGEST_SHA1], OP_EQ, con3->digests.d[DIGEST_SHA1], DIGEST_LEN); dsig_digests = strmap_get(dsig1->digests, "microdesc"); tt_assert(dsig_digests); tt_mem_op(dsig_digests->d[DIGEST_SHA256],OP_EQ, con_md3->digests.d[DIGEST_SHA256], DIGEST256_LEN); } { smartlist_t *dsig_signatures = strmap_get(dsig1->signatures, "ns"); tt_assert(dsig_signatures); tt_int_op(1,OP_EQ, smartlist_len(dsig_signatures)); sig = smartlist_get(dsig_signatures, 0); tt_mem_op(sig->identity_digest,OP_EQ, cert1->cache_info.identity_digest, DIGEST_LEN); tt_int_op(sig->alg,OP_EQ, DIGEST_SHA1); dsig_signatures = strmap_get(dsig1->signatures, "microdesc"); tt_assert(dsig_signatures); tt_int_op(1,OP_EQ, smartlist_len(dsig_signatures)); sig = smartlist_get(dsig_signatures, 0); tt_mem_op(sig->identity_digest,OP_EQ, cert1->cache_info.identity_digest, DIGEST_LEN); tt_int_op(sig->alg,OP_EQ, DIGEST_SHA256); } /* Try adding it to con2. */ detached_text2 = get_detached_sigs(con2,con_md2); tt_int_op(1,OP_EQ, networkstatus_add_detached_signatures(con2, dsig1, "test", LOG_INFO, &msg)); tor_free(detached_text2); tt_int_op(1,OP_EQ, networkstatus_add_detached_signatures(con_md2, dsig1, "test", LOG_INFO, &msg)); tor_free(detached_text2); detached_text2 = get_detached_sigs(con2,con_md2); //printf("\n<%s>\n", detached_text2); dsig2 = networkstatus_parse_detached_signatures(detached_text2, NULL); tt_assert(dsig2); /* printf("\n"); SMARTLIST_FOREACH(dsig2->signatures, networkstatus_voter_info_t *, vi, { char hd[64]; base16_encode(hd, sizeof(hd), vi->identity_digest, DIGEST_LEN); printf("%s\n", hd); }); */ tt_int_op(2,OP_EQ, smartlist_len((smartlist_t*)strmap_get(dsig2->signatures, "ns"))); tt_int_op(2,OP_EQ, smartlist_len((smartlist_t*)strmap_get(dsig2->signatures, "microdesc"))); /* Try adding to con2 twice; verify that nothing changes. */ tt_int_op(0,OP_EQ, networkstatus_add_detached_signatures(con2, dsig1, "test", LOG_INFO, &msg)); /* Add to con. */ tt_int_op(2,OP_EQ, networkstatus_add_detached_signatures(con, dsig2, "test", LOG_INFO, &msg)); /* Check signatures */ voter = smartlist_get(con->voters, 1); sig = smartlist_get(voter->sigs, 0); tt_assert(sig); tt_assert(!networkstatus_check_document_signature(con, sig, cert2)); voter = smartlist_get(con->voters, 2); sig = smartlist_get(voter->sigs, 0); tt_assert(sig); tt_assert(!networkstatus_check_document_signature(con, sig, cert1)); } done: tor_free(cp); smartlist_free(votes); tor_free(v1_text); tor_free(v2_text); tor_free(v3_text); tor_free(consensus_text); tor_free(consensus_text_md); if (vote) networkstatus_vote_free(vote); if (v1) networkstatus_vote_free(v1); if (v2) networkstatus_vote_free(v2); if (v3) networkstatus_vote_free(v3); if (con) networkstatus_vote_free(con); if (con_md) networkstatus_vote_free(con_md); if (sign_skey_1) crypto_pk_free(sign_skey_1); if (sign_skey_2) crypto_pk_free(sign_skey_2); if (sign_skey_3) crypto_pk_free(sign_skey_3); if (sign_skey_leg1) crypto_pk_free(sign_skey_leg1); if (cert1) authority_cert_free(cert1); if (cert2) authority_cert_free(cert2); if (cert3) authority_cert_free(cert3); tor_free(consensus_text2); tor_free(consensus_text3); tor_free(consensus_text_md2); tor_free(consensus_text_md3); tor_free(detached_text1); tor_free(detached_text2); if (con2) networkstatus_vote_free(con2); if (con3) networkstatus_vote_free(con3); if (con_md2) networkstatus_vote_free(con_md2); if (con_md3) networkstatus_vote_free(con_md3); if (dsig1) ns_detached_signatures_free(dsig1); if (dsig2) ns_detached_signatures_free(dsig2); } /** Run unit tests for generating and parsing V3 consensus networkstatus * documents. */ static void test_dir_v3_networkstatus(void *arg) { (void)arg; test_a_networkstatus(gen_routerstatus_for_v3ns, vote_tweaks_for_v3ns, test_vrs_for_v3ns, test_consensus_for_v3ns, test_routerstatus_for_v3ns); } static void test_dir_scale_bw(void *testdata) { double v[8] = { 2.0/3, 7.0, 1.0, 3.0, 1.0/5, 1.0/7, 12.0, 24.0 }; u64_dbl_t vals[8]; uint64_t total; int i; (void) testdata; for (i=0; i<8; ++i) vals[i].dbl = v[i]; scale_array_elements_to_u64(vals, 8, &total); tt_int_op((int)total, OP_EQ, 48); total = 0; for (i=0; i<8; ++i) { total += vals[i].u64; } tt_assert(total >= (U64_LITERAL(1)<<60)); tt_assert(total <= (U64_LITERAL(1)<<62)); for (i=0; i<8; ++i) { /* vals[2].u64 is the scaled value of 1.0 */ double ratio = ((double)vals[i].u64) / vals[2].u64; tt_double_op(fabs(ratio - v[i]), OP_LT, .00001); } /* test handling of no entries */ total = 1; scale_array_elements_to_u64(vals, 0, &total); tt_assert(total == 0); /* make sure we don't read the array when we have no entries * may require compiler flags to catch NULL dereferences */ total = 1; scale_array_elements_to_u64(NULL, 0, &total); tt_assert(total == 0); scale_array_elements_to_u64(NULL, 0, NULL); /* test handling of zero totals */ total = 1; vals[0].dbl = 0.0; scale_array_elements_to_u64(vals, 1, &total); tt_assert(total == 0); tt_assert(vals[0].u64 == 0); vals[0].dbl = 0.0; vals[1].dbl = 0.0; scale_array_elements_to_u64(vals, 2, NULL); tt_assert(vals[0].u64 == 0); tt_assert(vals[1].u64 == 0); done: ; } static void test_dir_random_weighted(void *testdata) { int histogram[10]; uint64_t vals[10] = {3,1,2,4,6,0,7,5,8,9}, total=0; u64_dbl_t inp[10]; int i, choice; const int n = 50000; double max_sq_error; (void) testdata; /* Try a ten-element array with values from 0 through 10. The values are * in a scrambled order to make sure we don't depend on order. */ memset(histogram,0,sizeof(histogram)); for (i=0; i<10; ++i) { inp[i].u64 = vals[i]; total += vals[i]; } tt_u64_op(total, OP_EQ, 45); for (i=0; i max_sq_error) max_sq_error = sq; } /* It should almost always be much much less than this. If you want to * figure out the odds, please feel free. */ tt_double_op(max_sq_error, OP_LT, .05); /* Now try a singleton; do we choose it? */ for (i = 0; i < 100; ++i) { choice = choose_array_element_by_weight(inp, 1); tt_int_op(choice, OP_EQ, 0); } /* Now try an array of zeros. We should choose randomly. */ memset(histogram,0,sizeof(histogram)); for (i = 0; i < 5; ++i) inp[i].u64 = 0; for (i = 0; i < n; ++i) { choice = choose_array_element_by_weight(inp, 5); tt_int_op(choice, OP_GE, 0); tt_int_op(choice, OP_LT, 5); histogram[choice]++; } /* Now see if we chose things about frequently enough. */ max_sq_error = 0; for (i=0; i<5; ++i) { int expected = n/5; double frac_diff = 0, sq; TT_BLATHER((" %d : %5d vs %5d\n", (int)vals[i], histogram[i], expected)); frac_diff = (histogram[i] - expected) / ((double)expected); sq = frac_diff * frac_diff; if (sq > max_sq_error) max_sq_error = sq; } /* It should almost always be much much less than this. If you want to * figure out the odds, please feel free. */ tt_double_op(max_sq_error, OP_LT, .05); done: ; } /* Function pointers for test_dir_clip_unmeasured_bw_kb() */ static uint32_t alternate_clip_bw = 0; /** * Generate a routerstatus for clip_unmeasured_bw_kb test; based on the * v3_networkstatus ones. */ static vote_routerstatus_t * gen_routerstatus_for_umbw(int idx, time_t now) { vote_routerstatus_t *vrs = NULL; routerstatus_t *rs; tor_addr_t addr_ipv6; uint32_t max_unmeasured_bw_kb = (alternate_clip_bw > 0) ? alternate_clip_bw : DEFAULT_MAX_UNMEASURED_BW_KB; switch (idx) { case 0: /* Generate the first routerstatus. */ vrs = tor_malloc_zero(sizeof(vote_routerstatus_t)); rs = &vrs->status; vrs->version = tor_strdup("0.1.2.14"); rs->published_on = now-1500; strlcpy(rs->nickname, "router2", sizeof(rs->nickname)); memset(rs->identity_digest, 3, DIGEST_LEN); memset(rs->descriptor_digest, 78, DIGEST_LEN); rs->addr = 0x99008801; rs->or_port = 443; rs->dir_port = 8000; /* all flags but running cleared */ rs->is_flagged_running = 1; /* * This one has measured bandwidth below the clip cutoff, and * so shouldn't be clipped; we'll have to test that it isn't * later. */ vrs->has_measured_bw = 1; rs->has_bandwidth = 1; vrs->measured_bw_kb = rs->bandwidth_kb = max_unmeasured_bw_kb / 2; break; case 1: /* Generate the second routerstatus. */ vrs = tor_malloc_zero(sizeof(vote_routerstatus_t)); rs = &vrs->status; vrs->version = tor_strdup("0.2.0.5"); rs->published_on = now-1000; strlcpy(rs->nickname, "router1", sizeof(rs->nickname)); memset(rs->identity_digest, 5, DIGEST_LEN); memset(rs->descriptor_digest, 77, DIGEST_LEN); rs->addr = 0x99009901; rs->or_port = 443; rs->dir_port = 0; tor_addr_parse(&addr_ipv6, "[1:2:3::4]"); tor_addr_copy(&rs->ipv6_addr, &addr_ipv6); rs->ipv6_orport = 4711; rs->is_exit = rs->is_stable = rs->is_fast = rs->is_flagged_running = rs->is_valid = rs->is_possible_guard = 1; /* * This one has measured bandwidth above the clip cutoff, and * so shouldn't be clipped; we'll have to test that it isn't * later. */ vrs->has_measured_bw = 1; rs->has_bandwidth = 1; vrs->measured_bw_kb = rs->bandwidth_kb = 2 * max_unmeasured_bw_kb; break; case 2: /* Generate the third routerstatus. */ vrs = tor_malloc_zero(sizeof(vote_routerstatus_t)); rs = &vrs->status; vrs->version = tor_strdup("0.1.0.3"); rs->published_on = now-1000; strlcpy(rs->nickname, "router3", sizeof(rs->nickname)); memset(rs->identity_digest, 0x33, DIGEST_LEN); memset(rs->descriptor_digest, 79, DIGEST_LEN); rs->addr = 0xAA009901; rs->or_port = 400; rs->dir_port = 9999; rs->is_authority = rs->is_exit = rs->is_stable = rs->is_fast = rs->is_flagged_running = rs->is_valid = rs->is_possible_guard = 1; /* * This one has unmeasured bandwidth above the clip cutoff, and * so should be clipped; we'll have to test that it isn't * later. */ vrs->has_measured_bw = 0; rs->has_bandwidth = 1; vrs->measured_bw_kb = 0; rs->bandwidth_kb = 2 * max_unmeasured_bw_kb; break; case 3: /* Generate a fourth routerstatus that is not running. */ vrs = tor_malloc_zero(sizeof(vote_routerstatus_t)); rs = &vrs->status; vrs->version = tor_strdup("0.1.6.3"); rs->published_on = now-1000; strlcpy(rs->nickname, "router4", sizeof(rs->nickname)); memset(rs->identity_digest, 0x34, DIGEST_LEN); memset(rs->descriptor_digest, 47, DIGEST_LEN); rs->addr = 0xC0000203; rs->or_port = 500; rs->dir_port = 1999; /* all flags but running cleared */ rs->is_flagged_running = 1; /* * This one has unmeasured bandwidth below the clip cutoff, and * so shouldn't be clipped; we'll have to test that it isn't * later. */ vrs->has_measured_bw = 0; rs->has_bandwidth = 1; vrs->measured_bw_kb = 0; rs->bandwidth_kb = max_unmeasured_bw_kb / 2; break; case 4: /* No more for this test; return NULL */ vrs = NULL; break; default: /* Shouldn't happen */ tt_assert(0); } if (vrs) { vrs->microdesc = tor_malloc_zero(sizeof(vote_microdesc_hash_t)); tor_asprintf(&vrs->microdesc->microdesc_hash_line, "m 9,10,11,12,13,14,15,16,17 " "sha256=xyzajkldsdsajdadlsdjaslsdksdjlsdjsdaskdaaa%d\n", idx); } done: return vrs; } /** Apply tweaks to the vote list for each voter; for the umbw test this is * just adding the right consensus methods to let clipping happen */ static int vote_tweaks_for_umbw(networkstatus_t *v, int voter, time_t now) { char *maxbw_param = NULL; int rv = 0; tt_assert(v); (void)voter; (void)now; tt_assert(v->supported_methods); SMARTLIST_FOREACH(v->supported_methods, char *, c, tor_free(c)); smartlist_clear(v->supported_methods); /* Method 17 is MIN_METHOD_TO_CLIP_UNMEASURED_BW_KB */ smartlist_split_string(v->supported_methods, "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17", NULL, 0, -1); /* If we're using a non-default clip bandwidth, add it to net_params */ if (alternate_clip_bw > 0) { tor_asprintf(&maxbw_param, "maxunmeasuredbw=%u", alternate_clip_bw); tt_assert(maxbw_param); if (maxbw_param) { smartlist_add(v->net_params, maxbw_param); rv = 1; } } done: return rv; } /** * Test a parsed vote_routerstatus_t for umbw test. */ static void test_vrs_for_umbw(vote_routerstatus_t *vrs, int voter, time_t now) { routerstatus_t *rs; tor_addr_t addr_ipv6; uint32_t max_unmeasured_bw_kb = (alternate_clip_bw > 0) ? alternate_clip_bw : DEFAULT_MAX_UNMEASURED_BW_KB; (void)voter; tt_assert(vrs); rs = &(vrs->status); tt_assert(rs); /* Split out by digests to test */ if (tor_memeq(rs->identity_digest, "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3" "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3", DIGEST_LEN)) { /* * Check the first routerstatus - measured bandwidth below the clip * cutoff. */ tt_str_op(vrs->version,OP_EQ, "0.1.2.14"); tt_int_op(rs->published_on,OP_EQ, now-1500); tt_str_op(rs->nickname,OP_EQ, "router2"); tt_mem_op(rs->identity_digest,OP_EQ, "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3" "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3", DIGEST_LEN); tt_mem_op(rs->descriptor_digest,OP_EQ, "NNNNNNNNNNNNNNNNNNNN", DIGEST_LEN); tt_int_op(rs->addr,OP_EQ, 0x99008801); tt_int_op(rs->or_port,OP_EQ, 443); tt_int_op(rs->dir_port,OP_EQ, 8000); tt_assert(rs->has_bandwidth); tt_assert(vrs->has_measured_bw); tt_int_op(rs->bandwidth_kb,OP_EQ, max_unmeasured_bw_kb / 2); tt_int_op(vrs->measured_bw_kb,OP_EQ, max_unmeasured_bw_kb / 2); } else if (tor_memeq(rs->identity_digest, "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5" "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5", DIGEST_LEN)) { /* * Check the second routerstatus - measured bandwidth above the clip * cutoff. */ tt_str_op(vrs->version,OP_EQ, "0.2.0.5"); tt_int_op(rs->published_on,OP_EQ, now-1000); tt_str_op(rs->nickname,OP_EQ, "router1"); tt_mem_op(rs->identity_digest,OP_EQ, "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5" "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5", DIGEST_LEN); tt_mem_op(rs->descriptor_digest,OP_EQ, "MMMMMMMMMMMMMMMMMMMM", DIGEST_LEN); tt_int_op(rs->addr,OP_EQ, 0x99009901); tt_int_op(rs->or_port,OP_EQ, 443); tt_int_op(rs->dir_port,OP_EQ, 0); tor_addr_parse(&addr_ipv6, "[1:2:3::4]"); tt_assert(tor_addr_eq(&rs->ipv6_addr, &addr_ipv6)); tt_int_op(rs->ipv6_orport,OP_EQ, 4711); tt_assert(rs->has_bandwidth); tt_assert(vrs->has_measured_bw); tt_int_op(rs->bandwidth_kb,OP_EQ, max_unmeasured_bw_kb * 2); tt_int_op(vrs->measured_bw_kb,OP_EQ, max_unmeasured_bw_kb * 2); } else if (tor_memeq(rs->identity_digest, "\x33\x33\x33\x33\x33\x33\x33\x33\x33\x33" "\x33\x33\x33\x33\x33\x33\x33\x33\x33\x33", DIGEST_LEN)) { /* * Check the third routerstatus - unmeasured bandwidth above the clip * cutoff; this one should be clipped later on in the consensus, but * appears unclipped in the vote. */ tt_assert(rs->has_bandwidth); tt_assert(!(vrs->has_measured_bw)); tt_int_op(rs->bandwidth_kb,OP_EQ, max_unmeasured_bw_kb * 2); tt_int_op(vrs->measured_bw_kb,OP_EQ, 0); } else if (tor_memeq(rs->identity_digest, "\x34\x34\x34\x34\x34\x34\x34\x34\x34\x34" "\x34\x34\x34\x34\x34\x34\x34\x34\x34\x34", DIGEST_LEN)) { /* * Check the fourth routerstatus - unmeasured bandwidth below the clip * cutoff; this one should not be clipped. */ tt_assert(rs->has_bandwidth); tt_assert(!(vrs->has_measured_bw)); tt_int_op(rs->bandwidth_kb,OP_EQ, max_unmeasured_bw_kb / 2); tt_int_op(vrs->measured_bw_kb,OP_EQ, 0); } else { tt_assert(0); } done: return; } /** * Test a consensus for v3_networkstatus_test */ static void test_consensus_for_umbw(networkstatus_t *con, time_t now) { (void)now; tt_assert(con); tt_assert(!con->cert); // tt_assert(con->consensus_method >= MIN_METHOD_TO_CLIP_UNMEASURED_BW_KB); tt_assert(con->consensus_method >= 16); tt_int_op(4,OP_EQ, smartlist_len(con->routerstatus_list)); /* There should be four listed routers; all voters saw the same in this */ done: return; } /** * Test a router list entry for umbw test */ static void test_routerstatus_for_umbw(routerstatus_t *rs, time_t now) { tor_addr_t addr_ipv6; uint32_t max_unmeasured_bw_kb = (alternate_clip_bw > 0) ? alternate_clip_bw : DEFAULT_MAX_UNMEASURED_BW_KB; tt_assert(rs); /* There should be four listed routers, as constructed above */ if (tor_memeq(rs->identity_digest, "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3" "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3", DIGEST_LEN)) { tt_mem_op(rs->identity_digest,OP_EQ, "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3" "\x3\x3\x3\x3\x3\x3\x3\x3\x3\x3", DIGEST_LEN); tt_mem_op(rs->descriptor_digest,OP_EQ, "NNNNNNNNNNNNNNNNNNNN", DIGEST_LEN); tt_assert(!rs->is_authority); tt_assert(!rs->is_exit); tt_assert(!rs->is_fast); tt_assert(!rs->is_possible_guard); tt_assert(!rs->is_stable); /* (If it wasn't running it wouldn't be here) */ tt_assert(rs->is_flagged_running); tt_assert(!rs->is_valid); tt_assert(!rs->is_named); /* This one should have measured bandwidth below the clip cutoff */ tt_assert(rs->has_bandwidth); tt_int_op(rs->bandwidth_kb,OP_EQ, max_unmeasured_bw_kb / 2); tt_assert(!(rs->bw_is_unmeasured)); } else if (tor_memeq(rs->identity_digest, "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5" "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5", DIGEST_LEN)) { /* This one showed up in 3 digests. Twice with ID 'M', once with 'Z'. */ tt_mem_op(rs->identity_digest,OP_EQ, "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5" "\x5\x5\x5\x5\x5\x5\x5\x5\x5\x5", DIGEST_LEN); tt_str_op(rs->nickname,OP_EQ, "router1"); tt_mem_op(rs->descriptor_digest,OP_EQ, "MMMMMMMMMMMMMMMMMMMM", DIGEST_LEN); tt_int_op(rs->published_on,OP_EQ, now-1000); tt_int_op(rs->addr,OP_EQ, 0x99009901); tt_int_op(rs->or_port,OP_EQ, 443); tt_int_op(rs->dir_port,OP_EQ, 0); tor_addr_parse(&addr_ipv6, "[1:2:3::4]"); tt_assert(tor_addr_eq(&rs->ipv6_addr, &addr_ipv6)); tt_int_op(rs->ipv6_orport,OP_EQ, 4711); tt_assert(!rs->is_authority); tt_assert(rs->is_exit); tt_assert(rs->is_fast); tt_assert(rs->is_possible_guard); tt_assert(rs->is_stable); tt_assert(rs->is_flagged_running); tt_assert(rs->is_valid); tt_assert(!rs->is_named); /* This one should have measured bandwidth above the clip cutoff */ tt_assert(rs->has_bandwidth); tt_int_op(rs->bandwidth_kb,OP_EQ, max_unmeasured_bw_kb * 2); tt_assert(!(rs->bw_is_unmeasured)); } else if (tor_memeq(rs->identity_digest, "\x33\x33\x33\x33\x33\x33\x33\x33\x33\x33" "\x33\x33\x33\x33\x33\x33\x33\x33\x33\x33", DIGEST_LEN)) { /* * This one should have unmeasured bandwidth above the clip cutoff, * and so should be clipped */ tt_assert(rs->has_bandwidth); tt_int_op(rs->bandwidth_kb,OP_EQ, max_unmeasured_bw_kb); tt_assert(rs->bw_is_unmeasured); } else if (tor_memeq(rs->identity_digest, "\x34\x34\x34\x34\x34\x34\x34\x34\x34\x34" "\x34\x34\x34\x34\x34\x34\x34\x34\x34\x34", DIGEST_LEN)) { /* * This one should have unmeasured bandwidth below the clip cutoff, * and so should not be clipped */ tt_assert(rs->has_bandwidth); tt_int_op(rs->bandwidth_kb,OP_EQ, max_unmeasured_bw_kb / 2); tt_assert(rs->bw_is_unmeasured); } else { /* Weren't expecting this... */ tt_assert(0); } done: return; } /** * Compute a consensus involving clipping unmeasured bandwidth with consensus * method 17; this uses the same test_a_networkstatus() function that the * v3_networkstatus test uses. */ static void test_dir_clip_unmeasured_bw_kb(void *arg) { /* Run the test with the default clip bandwidth */ (void)arg; alternate_clip_bw = 0; test_a_networkstatus(gen_routerstatus_for_umbw, vote_tweaks_for_umbw, test_vrs_for_umbw, test_consensus_for_umbw, test_routerstatus_for_umbw); } /** * This version of test_dir_clip_unmeasured_bw_kb() uses a non-default choice * of clip bandwidth. */ static void test_dir_clip_unmeasured_bw_kb_alt(void *arg) { /* * Try a different one; this value is chosen so that the below-the-cutoff * unmeasured nodes the test uses, at alternate_clip_bw / 2, will be above * DEFAULT_MAX_UNMEASURED_BW_KB and if the consensus incorrectly uses that * cutoff it will fail the test. */ (void)arg; alternate_clip_bw = 3 * DEFAULT_MAX_UNMEASURED_BW_KB; test_a_networkstatus(gen_routerstatus_for_umbw, vote_tweaks_for_umbw, test_vrs_for_umbw, test_consensus_for_umbw, test_routerstatus_for_umbw); } static void test_dir_fmt_control_ns(void *arg) { char *s = NULL; routerstatus_t rs; (void)arg; memset(&rs, 0, sizeof(rs)); rs.published_on = 1364925198; strlcpy(rs.nickname, "TetsuoMilk", sizeof(rs.nickname)); memcpy(rs.identity_digest, "Stately, plump Buck ", DIGEST_LEN); memcpy(rs.descriptor_digest, "Mulligan came up fro", DIGEST_LEN); rs.addr = 0x20304050; rs.or_port = 9001; rs.dir_port = 9002; rs.is_exit = 1; rs.is_fast = 1; rs.is_flagged_running = 1; rs.has_bandwidth = 1; rs.bandwidth_kb = 1000; s = networkstatus_getinfo_helper_single(&rs); tt_assert(s); tt_str_op(s, OP_EQ, "r TetsuoMilk U3RhdGVseSwgcGx1bXAgQnVjayA " "TXVsbGlnYW4gY2FtZSB1cCBmcm8 2013-04-02 17:53:18 " "32.48.64.80 9001 9002\n" "s Exit Fast Running V2Dir\n" "w Bandwidth=1000\n"); done: tor_free(s); } static int mock_get_options_calls = 0; static or_options_t *mock_options = NULL; static void reset_options(or_options_t *options, int *get_options_calls) { memset(options, 0, sizeof(or_options_t)); options->TestingTorNetwork = 1; *get_options_calls = 0; } static const or_options_t * mock_get_options(void) { ++mock_get_options_calls; tor_assert(mock_options); return mock_options; } static void reset_routerstatus(routerstatus_t *rs, const char *hex_identity_digest, int32_t ipv4_addr) { memset(rs, 0, sizeof(routerstatus_t)); base16_decode(rs->identity_digest, sizeof(rs->identity_digest), hex_identity_digest, HEX_DIGEST_LEN); /* A zero address matches everything, so the address needs to be set. * But the specific value is irrelevant. */ rs->addr = ipv4_addr; } #define ROUTER_A_ID_STR "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" #define ROUTER_A_IPV4 0xAA008801 #define ROUTER_B_ID_STR "BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB" #define ROUTER_B_IPV4 0xBB008801 #define ROUTERSET_ALL_STR "*" #define ROUTERSET_A_STR ROUTER_A_ID_STR #define ROUTERSET_NONE_STR "" /* * Test that dirserv_set_routerstatus_testing sets router flags correctly * Using "*" sets flags on A and B * Using "A" sets flags on A * Using "" sets flags on Neither * If the router is not included: * - if *Strict is set, the flag is set to 0, * - otherwise, the flag is not modified. */ static void test_dir_dirserv_set_routerstatus_testing(void *arg) { (void)arg; /* Init options */ mock_options = malloc(sizeof(or_options_t)); reset_options(mock_options, &mock_get_options_calls); MOCK(get_options, mock_get_options); /* Init routersets */ routerset_t *routerset_all = routerset_new(); routerset_parse(routerset_all, ROUTERSET_ALL_STR, "All routers"); routerset_t *routerset_a = routerset_new(); routerset_parse(routerset_a, ROUTERSET_A_STR, "Router A only"); routerset_t *routerset_none = routerset_new(); /* Routersets are empty when provided by routerset_new(), * so this is not strictly necessary */ routerset_parse(routerset_none, ROUTERSET_NONE_STR, "No routers"); /* Init routerstatuses */ routerstatus_t *rs_a = malloc(sizeof(routerstatus_t)); reset_routerstatus(rs_a, ROUTER_A_ID_STR, ROUTER_A_IPV4); routerstatus_t *rs_b = malloc(sizeof(routerstatus_t)); reset_routerstatus(rs_b, ROUTER_B_ID_STR, ROUTER_B_IPV4); /* Sanity check that routersets correspond to routerstatuses. * Return values are {2, 3, 4} */ /* We want 3 ("*" means match all addresses) */ tt_assert(routerset_contains_routerstatus(routerset_all, rs_a, 0) == 3); tt_assert(routerset_contains_routerstatus(routerset_all, rs_b, 0) == 3); /* We want 4 (match id_digest [or nickname]) */ tt_assert(routerset_contains_routerstatus(routerset_a, rs_a, 0) == 4); tt_assert(routerset_contains_routerstatus(routerset_a, rs_b, 0) == 0); tt_assert(routerset_contains_routerstatus(routerset_none, rs_a, 0) == 0); tt_assert(routerset_contains_routerstatus(routerset_none, rs_b, 0) == 0); /* Check that "*" sets flags on all routers: Exit * Check the flags aren't being confused with each other */ reset_options(mock_options, &mock_get_options_calls); reset_routerstatus(rs_a, ROUTER_A_ID_STR, ROUTER_A_IPV4); reset_routerstatus(rs_b, ROUTER_B_ID_STR, ROUTER_B_IPV4); mock_options->TestingDirAuthVoteExit = routerset_all; mock_options->TestingDirAuthVoteExitIsStrict = 0; dirserv_set_routerstatus_testing(rs_a); tt_assert(mock_get_options_calls == 1); dirserv_set_routerstatus_testing(rs_b); tt_assert(mock_get_options_calls == 2); tt_assert(rs_a->is_exit == 1); tt_assert(rs_b->is_exit == 1); /* Be paranoid - check no other flags are set */ tt_assert(rs_a->is_possible_guard == 0); tt_assert(rs_b->is_possible_guard == 0); tt_assert(rs_a->is_hs_dir == 0); tt_assert(rs_b->is_hs_dir == 0); /* Check that "*" sets flags on all routers: Guard & HSDir * Cover the remaining flags in one test */ reset_options(mock_options, &mock_get_options_calls); reset_routerstatus(rs_a, ROUTER_A_ID_STR, ROUTER_A_IPV4); reset_routerstatus(rs_b, ROUTER_B_ID_STR, ROUTER_B_IPV4); mock_options->TestingDirAuthVoteGuard = routerset_all; mock_options->TestingDirAuthVoteGuardIsStrict = 0; mock_options->TestingDirAuthVoteHSDir = routerset_all; mock_options->TestingDirAuthVoteHSDirIsStrict = 0; dirserv_set_routerstatus_testing(rs_a); tt_assert(mock_get_options_calls == 1); dirserv_set_routerstatus_testing(rs_b); tt_assert(mock_get_options_calls == 2); tt_assert(rs_a->is_possible_guard == 1); tt_assert(rs_b->is_possible_guard == 1); tt_assert(rs_a->is_hs_dir == 1); tt_assert(rs_b->is_hs_dir == 1); /* Be paranoid - check exit isn't set */ tt_assert(rs_a->is_exit == 0); tt_assert(rs_b->is_exit == 0); /* Check routerset A sets all flags on router A, * but leaves router B unmodified */ reset_options(mock_options, &mock_get_options_calls); reset_routerstatus(rs_a, ROUTER_A_ID_STR, ROUTER_A_IPV4); reset_routerstatus(rs_b, ROUTER_B_ID_STR, ROUTER_B_IPV4); mock_options->TestingDirAuthVoteExit = routerset_a; mock_options->TestingDirAuthVoteExitIsStrict = 0; mock_options->TestingDirAuthVoteGuard = routerset_a; mock_options->TestingDirAuthVoteGuardIsStrict = 0; mock_options->TestingDirAuthVoteHSDir = routerset_a; mock_options->TestingDirAuthVoteHSDirIsStrict = 0; dirserv_set_routerstatus_testing(rs_a); tt_assert(mock_get_options_calls == 1); dirserv_set_routerstatus_testing(rs_b); tt_assert(mock_get_options_calls == 2); tt_assert(rs_a->is_exit == 1); tt_assert(rs_b->is_exit == 0); tt_assert(rs_a->is_possible_guard == 1); tt_assert(rs_b->is_possible_guard == 0); tt_assert(rs_a->is_hs_dir == 1); tt_assert(rs_b->is_hs_dir == 0); /* Check routerset A unsets all flags on router B when Strict is set */ reset_options(mock_options, &mock_get_options_calls); reset_routerstatus(rs_b, ROUTER_B_ID_STR, ROUTER_B_IPV4); mock_options->TestingDirAuthVoteExit = routerset_a; mock_options->TestingDirAuthVoteExitIsStrict = 1; mock_options->TestingDirAuthVoteGuard = routerset_a; mock_options->TestingDirAuthVoteGuardIsStrict = 1; mock_options->TestingDirAuthVoteHSDir = routerset_a; mock_options->TestingDirAuthVoteHSDirIsStrict = 1; rs_b->is_exit = 1; rs_b->is_possible_guard = 1; rs_b->is_hs_dir = 1; dirserv_set_routerstatus_testing(rs_b); tt_assert(mock_get_options_calls == 1); tt_assert(rs_b->is_exit == 0); tt_assert(rs_b->is_possible_guard == 0); tt_assert(rs_b->is_hs_dir == 0); /* Check routerset A doesn't modify flags on router B without Strict set */ reset_options(mock_options, &mock_get_options_calls); reset_routerstatus(rs_b, ROUTER_B_ID_STR, ROUTER_B_IPV4); mock_options->TestingDirAuthVoteExit = routerset_a; mock_options->TestingDirAuthVoteExitIsStrict = 0; mock_options->TestingDirAuthVoteGuard = routerset_a; mock_options->TestingDirAuthVoteGuardIsStrict = 0; mock_options->TestingDirAuthVoteHSDir = routerset_a; mock_options->TestingDirAuthVoteHSDirIsStrict = 0; rs_b->is_exit = 1; rs_b->is_possible_guard = 1; rs_b->is_hs_dir = 1; dirserv_set_routerstatus_testing(rs_b); tt_assert(mock_get_options_calls == 1); tt_assert(rs_b->is_exit == 1); tt_assert(rs_b->is_possible_guard == 1); tt_assert(rs_b->is_hs_dir == 1); /* Check the empty routerset zeroes all flags * on routers A & B with Strict set */ reset_options(mock_options, &mock_get_options_calls); reset_routerstatus(rs_b, ROUTER_B_ID_STR, ROUTER_B_IPV4); mock_options->TestingDirAuthVoteExit = routerset_none; mock_options->TestingDirAuthVoteExitIsStrict = 1; mock_options->TestingDirAuthVoteGuard = routerset_none; mock_options->TestingDirAuthVoteGuardIsStrict = 1; mock_options->TestingDirAuthVoteHSDir = routerset_none; mock_options->TestingDirAuthVoteHSDirIsStrict = 1; rs_b->is_exit = 1; rs_b->is_possible_guard = 1; rs_b->is_hs_dir = 1; dirserv_set_routerstatus_testing(rs_b); tt_assert(mock_get_options_calls == 1); tt_assert(rs_b->is_exit == 0); tt_assert(rs_b->is_possible_guard == 0); tt_assert(rs_b->is_hs_dir == 0); /* Check the empty routerset doesn't modify any flags * on A or B without Strict set */ reset_options(mock_options, &mock_get_options_calls); reset_routerstatus(rs_a, ROUTER_A_ID_STR, ROUTER_A_IPV4); reset_routerstatus(rs_b, ROUTER_B_ID_STR, ROUTER_B_IPV4); mock_options->TestingDirAuthVoteExit = routerset_none; mock_options->TestingDirAuthVoteExitIsStrict = 0; mock_options->TestingDirAuthVoteGuard = routerset_none; mock_options->TestingDirAuthVoteGuardIsStrict = 0; mock_options->TestingDirAuthVoteHSDir = routerset_none; mock_options->TestingDirAuthVoteHSDirIsStrict = 0; rs_b->is_exit = 1; rs_b->is_possible_guard = 1; rs_b->is_hs_dir = 1; dirserv_set_routerstatus_testing(rs_a); tt_assert(mock_get_options_calls == 1); dirserv_set_routerstatus_testing(rs_b); tt_assert(mock_get_options_calls == 2); tt_assert(rs_a->is_exit == 0); tt_assert(rs_a->is_possible_guard == 0); tt_assert(rs_a->is_hs_dir == 0); tt_assert(rs_b->is_exit == 1); tt_assert(rs_b->is_possible_guard == 1); tt_assert(rs_b->is_hs_dir == 1); done: free(mock_options); mock_options = NULL; UNMOCK(get_options); routerset_free(routerset_all); routerset_free(routerset_a); routerset_free(routerset_none); free(rs_a); free(rs_b); } static void test_dir_http_handling(void *args) { char *url = NULL; (void)args; /* Parse http url tests: */ /* Good headers */ tt_int_op(parse_http_url("GET /tor/a/b/c.txt HTTP/1.1\r\n" "Host: example.com\r\n" "User-Agent: Mozilla/5.0 (Windows;" " U; Windows NT 6.1; en-US; rv:1.9.1.5)\r\n", &url),OP_EQ, 0); tt_str_op(url,OP_EQ, "/tor/a/b/c.txt"); tor_free(url); tt_int_op(parse_http_url("GET /tor/a/b/c.txt HTTP/1.0\r\n", &url),OP_EQ, 0); tt_str_op(url,OP_EQ, "/tor/a/b/c.txt"); tor_free(url); tt_int_op(parse_http_url("GET /tor/a/b/c.txt HTTP/1.600\r\n", &url), OP_EQ, 0); tt_str_op(url,OP_EQ, "/tor/a/b/c.txt"); tor_free(url); /* Should prepend '/tor/' to url if required */ tt_int_op(parse_http_url("GET /a/b/c.txt HTTP/1.1\r\n" "Host: example.com\r\n" "User-Agent: Mozilla/5.0 (Windows;" " U; Windows NT 6.1; en-US; rv:1.9.1.5)\r\n", &url),OP_EQ, 0); tt_str_op(url,OP_EQ, "/tor/a/b/c.txt"); tor_free(url); /* Bad headers -- no HTTP/1.x*/ tt_int_op(parse_http_url("GET /a/b/c.txt\r\n" "Host: example.com\r\n" "User-Agent: Mozilla/5.0 (Windows;" " U; Windows NT 6.1; en-US; rv:1.9.1.5)\r\n", &url),OP_EQ, -1); tt_assert(!url); /* Bad headers */ tt_int_op(parse_http_url("GET /a/b/c.txt\r\n" "Host: example.com\r\n" "User-Agent: Mozilla/5.0 (Windows;" " U; Windows NT 6.1; en-US; rv:1.9.1.5)\r\n", &url),OP_EQ, -1); tt_assert(!url); tt_int_op(parse_http_url("GET /tor/a/b/c.txt", &url),OP_EQ, -1); tt_assert(!url); tt_int_op(parse_http_url("GET /tor/a/b/c.txt HTTP/1.1", &url),OP_EQ, -1); tt_assert(!url); tt_int_op(parse_http_url("GET /tor/a/b/c.txt HTTP/1.1x\r\n", &url), OP_EQ, -1); tt_assert(!url); tt_int_op(parse_http_url("GET /tor/a/b/c.txt HTTP/1.", &url),OP_EQ, -1); tt_assert(!url); tt_int_op(parse_http_url("GET /tor/a/b/c.txt HTTP/1.\r", &url),OP_EQ, -1); tt_assert(!url); done: tor_free(url); } static void test_dir_purpose_needs_anonymity(void *arg) { (void)arg; tt_int_op(1, ==, purpose_needs_anonymity(0, ROUTER_PURPOSE_BRIDGE)); tt_int_op(1, ==, purpose_needs_anonymity(0, ROUTER_PURPOSE_GENERAL)); tt_int_op(0, ==, purpose_needs_anonymity(DIR_PURPOSE_FETCH_MICRODESC, ROUTER_PURPOSE_GENERAL)); done: ; } static void test_dir_fetch_type(void *arg) { (void)arg; tt_assert(dir_fetch_type(DIR_PURPOSE_FETCH_MICRODESC, ROUTER_PURPOSE_GENERAL, NULL) == MICRODESC_DIRINFO); tt_assert(dir_fetch_type(DIR_PURPOSE_FETCH_SERVERDESC, ROUTER_PURPOSE_BRIDGE, NULL) == BRIDGE_DIRINFO); tt_assert(dir_fetch_type(DIR_PURPOSE_FETCH_CONSENSUS, ROUTER_PURPOSE_GENERAL, "microdesc") == (V3_DIRINFO | MICRODESC_DIRINFO)); done: ; } static void test_dir_packages(void *arg) { smartlist_t *votes = smartlist_new(); char *res = NULL; (void)arg; #define BAD(s) \ tt_int_op(0, ==, validate_recommended_package_line(s)); #define GOOD(s) \ tt_int_op(1, ==, validate_recommended_package_line(s)); GOOD("tor 0.2.6.3-alpha " "http://torproject.example.com/dist/tor-0.2.6.3-alpha.tar.gz " "sha256=sssdlkfjdsklfjdskfljasdklfj"); GOOD("tor 0.2.6.3-alpha " "http://torproject.example.com/dist/tor-0.2.6.3-alpha.tar.gz " "sha256=sssdlkfjdsklfjdskfljasdklfj blake2b=fred"); BAD("tor 0.2.6.3-alpha " "http://torproject.example.com/dist/tor-0.2.6.3-alpha.tar.gz " "sha256=sssdlkfjdsklfjdskfljasdklfj="); BAD("tor 0.2.6.3-alpha " "http://torproject.example.com/dist/tor-0.2.6.3-alpha.tar.gz " "sha256=sssdlkfjdsklfjdskfljasdklfj blake2b"); BAD("tor 0.2.6.3-alpha " "http://torproject.example.com/dist/tor-0.2.6.3-alpha.tar.gz "); BAD("tor 0.2.6.3-alpha " "http://torproject.example.com/dist/tor-0.2.6.3-alpha.tar.gz"); BAD("tor 0.2.6.3-alpha "); BAD("tor 0.2.6.3-alpha"); BAD("tor "); BAD("tor"); BAD(""); BAD("=foobar sha256=" "3c179f46ca77069a6a0bac70212a9b3b838b2f66129cb52d568837fc79d8fcc7"); BAD("= = sha256=" "3c179f46ca77069a6a0bac70212a9b3b838b2f66129cb52d568837fc79d8fcc7"); BAD("sha512= sha256=" "3c179f46ca77069a6a0bac70212a9b3b838b2f66129cb52d568837fc79d8fcc7"); smartlist_add(votes, tor_malloc_zero(sizeof(networkstatus_t))); smartlist_add(votes, tor_malloc_zero(sizeof(networkstatus_t))); smartlist_add(votes, tor_malloc_zero(sizeof(networkstatus_t))); smartlist_add(votes, tor_malloc_zero(sizeof(networkstatus_t))); smartlist_add(votes, tor_malloc_zero(sizeof(networkstatus_t))); smartlist_add(votes, tor_malloc_zero(sizeof(networkstatus_t))); SMARTLIST_FOREACH(votes, networkstatus_t *, ns, ns->package_lines = smartlist_new()); #define ADD(i, s) \ smartlist_add(((networkstatus_t*)smartlist_get(votes, (i)))->package_lines, \ (void*)(s)); /* Only one vote for this one. */ ADD(4, "cisco 99z http://foobar.example.com/ sha256=blahblah"); /* Only two matching entries for this one, but 3 voters */ ADD(1, "mystic 99y http://barfoo.example.com/ sha256=blahblah"); ADD(3, "mystic 99y http://foobar.example.com/ sha256=blahblah"); ADD(4, "mystic 99y http://foobar.example.com/ sha256=blahblah"); /* Only two matching entries for this one, but at least 4 voters */ ADD(1, "mystic 99p http://barfoo.example.com/ sha256=ggggggg"); ADD(3, "mystic 99p http://foobar.example.com/ sha256=blahblah"); ADD(4, "mystic 99p http://foobar.example.com/ sha256=blahblah"); ADD(5, "mystic 99p http://foobar.example.com/ sha256=ggggggg"); /* This one has only invalid votes. */ ADD(0, "haffenreffer 1.2 http://foobar.example.com/ sha256"); ADD(1, "haffenreffer 1.2 http://foobar.example.com/ "); ADD(2, "haffenreffer 1.2 "); ADD(3, "haffenreffer "); ADD(4, "haffenreffer"); /* Three matching votes for this; it should actually go in! */ ADD(2, "element 0.66.1 http://quux.example.com/ sha256=abcdef"); ADD(3, "element 0.66.1 http://quux.example.com/ sha256=abcdef"); ADD(4, "element 0.66.1 http://quux.example.com/ sha256=abcdef"); ADD(1, "element 0.66.1 http://quum.example.com/ sha256=abcdef"); ADD(0, "element 0.66.1 http://quux.example.com/ sha256=abcde"); /* Three votes for A, three votes for B */ ADD(0, "clownshoes 22alpha1 http://quumble.example.com/ blake2=foob"); ADD(1, "clownshoes 22alpha1 http://quumble.example.com/ blake2=foob"); ADD(2, "clownshoes 22alpha1 http://quumble.example.com/ blake2=foob"); ADD(3, "clownshoes 22alpha1 http://quumble.example.com/ blake2=fooz"); ADD(4, "clownshoes 22alpha1 http://quumble.example.com/ blake2=fooz"); ADD(5, "clownshoes 22alpha1 http://quumble.example.com/ blake2=fooz"); /* Three votes for A, two votes for B */ ADD(1, "clownshoes 22alpha3 http://quumble.example.com/ blake2=foob"); ADD(2, "clownshoes 22alpha3 http://quumble.example.com/ blake2=foob"); ADD(3, "clownshoes 22alpha3 http://quumble.example.com/ blake2=fooz"); ADD(4, "clownshoes 22alpha3 http://quumble.example.com/ blake2=fooz"); ADD(5, "clownshoes 22alpha3 http://quumble.example.com/ blake2=fooz"); /* Four votes for A, two for B. */ ADD(0, "clownshoes 22alpha4 http://quumble.example.com/ blake2=foob"); ADD(1, "clownshoes 22alpha4 http://quumble.example.com/ blake2=foob"); ADD(2, "clownshoes 22alpha4 http://quumble.example.cam/ blake2=fooa"); ADD(3, "clownshoes 22alpha4 http://quumble.example.cam/ blake2=fooa"); ADD(4, "clownshoes 22alpha4 http://quumble.example.cam/ blake2=fooa"); ADD(5, "clownshoes 22alpha4 http://quumble.example.cam/ blake2=fooa"); /* Five votes for A ... all from the same guy. Three for B. */ ADD(0, "cbc 99.1.11.1.1 http://example.com/cbc/ cubehash=ahooy sha512=m"); ADD(1, "cbc 99.1.11.1.1 http://example.com/cbc/ cubehash=ahooy sha512=m"); ADD(3, "cbc 99.1.11.1.1 http://example.com/cbc/ cubehash=ahooy sha512=m"); ADD(2, "cbc 99.1.11.1.1 http://example.com/ cubehash=ahooy"); ADD(2, "cbc 99.1.11.1.1 http://example.com/ cubehash=ahooy"); ADD(2, "cbc 99.1.11.1.1 http://example.com/ cubehash=ahooy"); ADD(2, "cbc 99.1.11.1.1 http://example.com/ cubehash=ahooy"); ADD(2, "cbc 99.1.11.1.1 http://example.com/ cubehash=ahooy"); /* As above but new replaces old: no two match. */ ADD(0, "cbc 99.1.11.1.2 http://example.com/cbc/ cubehash=ahooy sha512=m"); ADD(1, "cbc 99.1.11.1.2 http://example.com/cbc/ cubehash=ahooy sha512=m"); ADD(1, "cbc 99.1.11.1.2 http://example.com/cbc/x cubehash=ahooy sha512=m"); ADD(2, "cbc 99.1.11.1.2 http://example.com/cbc/ cubehash=ahooy sha512=m"); ADD(2, "cbc 99.1.11.1.2 http://example.com/ cubehash=ahooy"); ADD(2, "cbc 99.1.11.1.2 http://example.com/ cubehash=ahooy"); ADD(2, "cbc 99.1.11.1.2 http://example.com/ cubehash=ahooy"); ADD(2, "cbc 99.1.11.1.2 http://example.com/ cubehash=ahooy"); ADD(2, "cbc 99.1.11.1.2 http://example.com/ cubehash=ahooy"); res = compute_consensus_package_lines(votes); tt_assert(res); tt_str_op(res, ==, "package cbc 99.1.11.1.1 http://example.com/cbc/ cubehash=ahooy sha512=m\n" "package clownshoes 22alpha3 http://quumble.example.com/ blake2=fooz\n" "package clownshoes 22alpha4 http://quumble.example.cam/ blake2=fooa\n" "package element 0.66.1 http://quux.example.com/ sha256=abcdef\n" "package mystic 99y http://foobar.example.com/ sha256=blahblah\n" ); #undef ADD #undef BAD #undef GOOD done: SMARTLIST_FOREACH(votes, networkstatus_t *, ns, { smartlist_free(ns->package_lines); tor_free(ns); }); smartlist_free(votes); tor_free(res); } #define DIR_LEGACY(name) \ { #name, test_dir_ ## name , TT_FORK, NULL, NULL } #define DIR(name,flags) \ { #name, test_dir_##name, (flags), NULL, NULL } struct testcase_t dir_tests[] = { DIR_LEGACY(nicknames), DIR_LEGACY(formats), DIR(routerinfo_parsing, 0), DIR(extrainfo_parsing, 0), DIR(parse_router_list, TT_FORK), DIR(load_routers, TT_FORK), DIR(load_extrainfo, TT_FORK), DIR_LEGACY(versions), DIR_LEGACY(fp_pairs), DIR(split_fps, 0), DIR_LEGACY(measured_bw_kb), DIR_LEGACY(measured_bw_kb_cache), DIR_LEGACY(param_voting), DIR_LEGACY(v3_networkstatus), DIR(random_weighted, 0), DIR(scale_bw, 0), DIR_LEGACY(clip_unmeasured_bw_kb), DIR_LEGACY(clip_unmeasured_bw_kb_alt), DIR(fmt_control_ns, 0), DIR(dirserv_set_routerstatus_testing, 0), DIR(http_handling, 0), DIR(purpose_needs_anonymity, 0), DIR(fetch_type, 0), DIR(packages, 0), END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_options.c0000644000175000017500000001116212621363246014063 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define CONFIG_PRIVATE #include "or.h" #include "confparse.h" #include "config.h" #include "test.h" typedef struct { int severity; uint32_t domain; char *msg; } logmsg_t; static smartlist_t *messages = NULL; static void log_cback(int severity, uint32_t domain, const char *msg) { logmsg_t *x = tor_malloc(sizeof(*x)); x->severity = severity; x->domain = domain; x->msg = tor_strdup(msg); if (!messages) messages = smartlist_new(); smartlist_add(messages, x); } static void setup_log_callback(void) { log_severity_list_t lst; memset(&lst, 0, sizeof(lst)); lst.masks[LOG_ERR - LOG_ERR] = ~0; lst.masks[LOG_WARN - LOG_ERR] = ~0; lst.masks[LOG_NOTICE - LOG_ERR] = ~0; add_callback_log(&lst, log_cback); } static char * dump_logs(void) { smartlist_t *msgs; char *out; if (! messages) return tor_strdup(""); msgs = smartlist_new(); SMARTLIST_FOREACH_BEGIN(messages, logmsg_t *, x) { smartlist_add_asprintf(msgs, "[%s] %s", log_level_to_string(x->severity), x->msg); } SMARTLIST_FOREACH_END(x); out = smartlist_join_strings(msgs, "", 0, NULL); SMARTLIST_FOREACH(msgs, char *, cp, tor_free(cp)); smartlist_free(msgs); return out; } static void clear_log_messages(void) { if (!messages) return; SMARTLIST_FOREACH(messages, logmsg_t *, m, { tor_free(m->msg); tor_free(m); }); smartlist_free(messages); messages = NULL; } static void test_options_validate_impl(const char *configuration, const char *expect_errmsg, int expect_log_severity, const char *expect_log) { or_options_t *opt = options_new(); or_options_t *dflt; config_line_t *cl=NULL; char *msg=NULL; int r; opt->command = CMD_RUN_TOR; options_init(opt); dflt = config_dup(&options_format, opt); clear_log_messages(); r = config_get_lines(configuration, &cl, 1); tt_int_op(r, OP_EQ, 0); r = config_assign(&options_format, opt, cl, 0, 0, &msg); tt_int_op(r, OP_EQ, 0); r = options_validate(NULL, opt, dflt, 0, &msg); if (expect_errmsg && !msg) { TT_DIE(("Expected error message <%s> from <%s>, but got none.", expect_errmsg, configuration)); } else if (expect_errmsg && !strstr(msg, expect_errmsg)) { TT_DIE(("Expected error message <%s> from <%s>, but got <%s>.", expect_errmsg, configuration, msg)); } else if (!expect_errmsg && msg) { TT_DIE(("Expected no error message from <%s> but got <%s>.", configuration, msg)); } tt_int_op((r == 0), OP_EQ, (msg == NULL)); if (expect_log) { int found = 0; if (messages) { SMARTLIST_FOREACH_BEGIN(messages, logmsg_t *, m) { if (m->severity == expect_log_severity && strstr(m->msg, expect_log)) { found = 1; break; } } SMARTLIST_FOREACH_END(m); } if (!found) { tor_free(msg); msg = dump_logs(); TT_DIE(("Expected log message [%s] %s from <%s>, but got <%s>.", log_level_to_string(expect_log_severity), expect_log, configuration, msg)); } } done: config_free_lines(cl); or_options_free(opt); or_options_free(dflt); tor_free(msg); clear_log_messages(); } #define WANT_ERR(config, msg) \ test_options_validate_impl((config), (msg), 0, NULL) #define WANT_LOG(config, severity, msg) \ test_options_validate_impl((config), NULL, (severity), (msg)) #define WANT_ERR_LOG(config, msg, severity, logmsg) \ test_options_validate_impl((config), (msg), (severity), (logmsg)) #define OK(config) \ test_options_validate_impl((config), NULL, 0, NULL) static void test_options_validate(void *arg) { (void)arg; setup_log_callback(); WANT_ERR("ExtORPort 500000", "Invalid ExtORPort"); WANT_ERR_LOG("ServerTransportOptions trebuchet", "ServerTransportOptions did not parse", LOG_WARN, "Too few arguments"); OK("ServerTransportOptions trebuchet sling=snappy"); OK("ServerTransportOptions trebuchet sling="); WANT_ERR_LOG("ServerTransportOptions trebuchet slingsnappy", "ServerTransportOptions did not parse", LOG_WARN, "\"slingsnappy\" is not a k=v"); clear_log_messages(); return; } struct testcase_t options_tests[] = { { "validate", test_options_validate, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/zero_length_keys.sh0000755000175000017500000001011212621363246015071 00000000000000#!/bin/sh # Check that tor regenerates keys when key files are zero-length # Test for bug #13111 - Tor fails to start if onion keys are zero length # # Usage: # ./zero_length_keys.sh PATH_TO_TOR # Run all the tests below # ./zero_length_keys.sh PATH_TO_TOR -z # Check tor will launch and regenerate zero-length keys # ./zero_length_keys.sh PATH_TO_TOR -d # Check tor regenerates deleted keys (existing behaviour) # ./zero_length_keys.sh PATH_TO_TOR -e # Check tor does not overwrite existing keys (existing behaviour) # # Exit Statuses: # 0: test succeeded - tor regenerated/kept the files # 1: test failed - tor did not regenerate/keep the files # 2: test failed - tor did not generate the key files on first run # 3: a command failed - the test could not be completed # if [ $# -eq 0 ] || [ ! -f ${1} ] || [ ! -x ${1} ]; then echo "Usage: ${0} PATH_TO_TOR [-z|-d|-e]" exit 1 elif [ $# -eq 1 ]; then echo "Testing that tor correctly handles zero-length keys" "$0" "${1}" -z && "$0" "${1}" -d && "$0" "${1}" -e exit $? else #[$# -gt 1 ]; then TOR_BINARY="${1}" shift fi DATA_DIR=`mktemp -d -t tor_zero_length_keys.XXXXXX` if [ -z "$DATA_DIR" ]; then echo "Failure: mktemp invocation returned empty string" >&2 exit 3 fi if [ ! -d "$DATA_DIR" ]; then echo "Failure: mktemp invocation result doesn't point to directory" >&2 exit 3 fi trap "rm -rf '$DATA_DIR'" 0 touch "$DATA_DIR"/empty_torrc # DisableNetwork means that the ORPort won't actually be opened. # 'ExitRelay 0' suppresses a warning. TOR="${TOR_BINARY} --hush --DisableNetwork 1 --ShutdownWaitLength 0 --ORPort 12345 --ExitRelay 0 -f $DATA_DIR/empty_torrc" if [ -s "$DATA_DIR"/keys/secret_id_key ] && [ -s "$DATA_DIR"/keys/secret_onion_key ] && [ -s "$DATA_DIR"/keys/secret_onion_key_ntor ]; then echo "Failure: Previous tor keys present in tor data directory" >&2 exit 3 else echo "Generating initial tor keys" $TOR --DataDirectory "$DATA_DIR" --list-fingerprint # tor must successfully generate non-zero-length key files if [ -s "$DATA_DIR"/keys/secret_id_key ] && [ -s "$DATA_DIR"/keys/secret_onion_key ] && [ -s "$DATA_DIR"/keys/secret_onion_key_ntor ]; then true #echo "tor generated the initial key files" else echo "Failure: tor failed to generate the initial key files" exit 2 fi fi #ls -lh "$DATA_DIR"/keys/ || exit 3 # backup and keep/delete/create zero-length files for the keys FILE_DESC="keeps existing" # make a backup cp -r "$DATA_DIR"/keys "$DATA_DIR"/keys.old # delete keys for -d or -z if [ "$1" != "-e" ]; then FILE_DESC="regenerates deleted" rm "$DATA_DIR"/keys/secret_id_key || exit 3 rm "$DATA_DIR"/keys/secret_onion_key || exit 3 rm "$DATA_DIR"/keys/secret_onion_key_ntor || exit 3 fi # create empty files for -z if [ "$1" = "-z" ]; then FILE_DESC="regenerates zero-length" touch "$DATA_DIR"/keys/secret_id_key || exit 3 touch "$DATA_DIR"/keys/secret_onion_key || exit 3 touch "$DATA_DIR"/keys/secret_onion_key_ntor || exit 3 fi echo "Running tor again to check if it $FILE_DESC keys" $TOR --DataDirectory "$DATA_DIR" --list-fingerprint #ls -lh "$DATA_DIR"/keys/ || exit 3 # tor must always have non-zero-length key files if [ -s "$DATA_DIR"/keys/secret_id_key ] && [ -s "$DATA_DIR"/keys/secret_onion_key ] && [ -s "$DATA_DIR"/keys/secret_onion_key_ntor ]; then # check if the keys are different to the old ones diff -q -r "$DATA_DIR"/keys "$DATA_DIR"/keys.old > /dev/null SAME_KEYS=$? # if we're not testing existing keys, # the current keys should be different to the old ones if [ "$1" != "-e" ]; then if [ $SAME_KEYS -ne 0 ]; then echo "Success: test that tor $FILE_DESC key files: different keys" exit 0 else echo "Failure: test that tor $FILE_DESC key files: same keys" exit 1 fi else #[ "$1" == "-e" ]; then if [ $SAME_KEYS -eq 0 ]; then echo "Success: test that tor $FILE_DESC key files: same keys" exit 0 else echo "Failure: test that tor $FILE_DESC key files: different keys" exit 1 fi fi else echo "Failure: test that tor $FILE_DESC key files: no key files" exit 1 fi tor-0.2.7.6/src/test/test_microdesc.c0000644000175000017500000007730312621363246014351 00000000000000/* Copyright (c) 2010-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #include "or.h" #include "config.h" #include "dirvote.h" #include "microdesc.h" #include "networkstatus.h" #include "routerlist.h" #include "routerparse.h" #include "torcert.h" #include "test.h" #include #include #include #ifdef _WIN32 /* For mkdir() */ #include #else #include #endif static const char test_md1[] = "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMjlHH/daN43cSVRaHBwgUfnszzAhg98EvivJ9Qxfv51mvQUxPjQ07es\n" "gV/3n8fyh3Kqr/ehi9jxkdgSRfSnmF7giaHL1SLZ29kA7KtST+pBvmTpDtHa3ykX\n" "Xorc7hJvIyTZoc1HU+5XSynj3gsBE5IGK1ZRzrNS688LnuZMVp1tAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n"; static const char test_md2[] = "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMIixIowh2DyPmDNMDwBX2DHcYcqdcH1zdIQJZkyV6c6rQHnvbcaDoSg\n" "jgFSLJKpnGmh71FVRqep+yVB0zI1JY43kuEnXry2HbZCD9UDo3d3n7t015X5S7ON\n" "bSSYtQGPwOr6Epf96IF6DoQxy4iDnPUAlejuhAG51s1y6/rZQ3zxAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n"; static const char test_md3[] = "@last-listed 2009-06-22\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMH3340d4ENNGrqx7UxT+lB7x6DNUKOdPEOn4teceE11xlMyZ9TPv41c\n" "qj2fRZzfxlc88G/tmiaHshmdtEpklZ740OFqaaJVj4LjPMKFNE+J7Xc1142BE9Ci\n" "KgsbjGYe2RY261aADRWLetJ8T9QDMm+JngL4288hc8pq1uB/3TAbAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "p accept 1-700,800-1000\n" "family nodeX nodeY nodeZ\n"; static void test_md_cache(void *data) { or_options_t *options = NULL; microdesc_cache_t *mc = NULL ; smartlist_t *added = NULL, *wanted = NULL; microdesc_t *md1, *md2, *md3; char d1[DIGEST256_LEN], d2[DIGEST256_LEN], d3[DIGEST256_LEN]; const char *test_md3_noannotation = strchr(test_md3, '\n')+1; time_t time1, time2, time3; char *fn = NULL, *s = NULL; (void)data; options = get_options_mutable(); tt_assert(options); time1 = time(NULL); time2 = time(NULL) - 2*24*60*60; time3 = time(NULL) - 15*24*60*60; /* Possibly, turn this into a test setup/cleanup pair */ tor_free(options->DataDirectory); options->DataDirectory = tor_strdup(get_fname("md_datadir_test")); #ifdef _WIN32 tt_int_op(0, OP_EQ, mkdir(options->DataDirectory)); #else tt_int_op(0, OP_EQ, mkdir(options->DataDirectory, 0700)); #endif tt_assert(!strcmpstart(test_md3_noannotation, "onion-key")); crypto_digest256(d1, test_md1, strlen(test_md1), DIGEST_SHA256); crypto_digest256(d2, test_md2, strlen(test_md1), DIGEST_SHA256); crypto_digest256(d3, test_md3_noannotation, strlen(test_md3_noannotation), DIGEST_SHA256); mc = get_microdesc_cache(); added = microdescs_add_to_cache(mc, test_md1, NULL, SAVED_NOWHERE, 0, time1, NULL); tt_int_op(1, OP_EQ, smartlist_len(added)); md1 = smartlist_get(added, 0); smartlist_free(added); added = NULL; wanted = smartlist_new(); added = microdescs_add_to_cache(mc, test_md2, NULL, SAVED_NOWHERE, 0, time2, wanted); /* Should fail, since we didn't list test_md2's digest in wanted */ tt_int_op(0, OP_EQ, smartlist_len(added)); smartlist_free(added); added = NULL; smartlist_add(wanted, tor_memdup(d2, DIGEST256_LEN)); smartlist_add(wanted, tor_memdup(d3, DIGEST256_LEN)); added = microdescs_add_to_cache(mc, test_md2, NULL, SAVED_NOWHERE, 0, time2, wanted); /* Now it can work. md2 should have been added */ tt_int_op(1, OP_EQ, smartlist_len(added)); md2 = smartlist_get(added, 0); /* And it should have gotten removed from 'wanted' */ tt_int_op(smartlist_len(wanted), OP_EQ, 1); tt_mem_op(smartlist_get(wanted, 0), OP_EQ, d3, DIGEST256_LEN); smartlist_free(added); added = NULL; added = microdescs_add_to_cache(mc, test_md3, NULL, SAVED_NOWHERE, 0, -1, NULL); /* Must fail, since SAVED_NOWHERE precludes annotations */ tt_int_op(0, OP_EQ, smartlist_len(added)); smartlist_free(added); added = NULL; added = microdescs_add_to_cache(mc, test_md3_noannotation, NULL, SAVED_NOWHERE, 0, time3, NULL); /* Now it can work */ tt_int_op(1, OP_EQ, smartlist_len(added)); md3 = smartlist_get(added, 0); smartlist_free(added); added = NULL; /* Okay. We added 1...3. Let's poke them to see how they look, and make * sure they're really in the journal. */ tt_ptr_op(md1, OP_EQ, microdesc_cache_lookup_by_digest256(mc, d1)); tt_ptr_op(md2, OP_EQ, microdesc_cache_lookup_by_digest256(mc, d2)); tt_ptr_op(md3, OP_EQ, microdesc_cache_lookup_by_digest256(mc, d3)); tt_int_op(md1->last_listed, OP_EQ, time1); tt_int_op(md2->last_listed, OP_EQ, time2); tt_int_op(md3->last_listed, OP_EQ, time3); tt_int_op(md1->saved_location, OP_EQ, SAVED_IN_JOURNAL); tt_int_op(md2->saved_location, OP_EQ, SAVED_IN_JOURNAL); tt_int_op(md3->saved_location, OP_EQ, SAVED_IN_JOURNAL); tt_int_op(md1->bodylen, OP_EQ, strlen(test_md1)); tt_int_op(md2->bodylen, OP_EQ, strlen(test_md2)); tt_int_op(md3->bodylen, OP_EQ, strlen(test_md3_noannotation)); tt_mem_op(md1->body, OP_EQ, test_md1, strlen(test_md1)); tt_mem_op(md2->body, OP_EQ, test_md2, strlen(test_md2)); tt_mem_op(md3->body, OP_EQ, test_md3_noannotation, strlen(test_md3_noannotation)); tor_asprintf(&fn, "%s"PATH_SEPARATOR"cached-microdescs.new", options->DataDirectory); s = read_file_to_str(fn, RFTS_BIN, NULL); tt_assert(s); tt_mem_op(md1->body, OP_EQ, s + md1->off, md1->bodylen); tt_mem_op(md2->body, OP_EQ, s + md2->off, md2->bodylen); tt_mem_op(md3->body, OP_EQ, s + md3->off, md3->bodylen); tt_ptr_op(md1->family, OP_EQ, NULL); tt_ptr_op(md3->family, OP_NE, NULL); tt_int_op(smartlist_len(md3->family), OP_EQ, 3); tt_str_op(smartlist_get(md3->family, 0), OP_EQ, "nodeX"); /* Now rebuild the cache! */ tt_int_op(microdesc_cache_rebuild(mc, 1), OP_EQ, 0); tt_int_op(md1->saved_location, OP_EQ, SAVED_IN_CACHE); tt_int_op(md2->saved_location, OP_EQ, SAVED_IN_CACHE); tt_int_op(md3->saved_location, OP_EQ, SAVED_IN_CACHE); /* The journal should be empty now */ tor_free(s); s = read_file_to_str(fn, RFTS_BIN, NULL); tt_str_op(s, OP_EQ, ""); tor_free(s); tor_free(fn); /* read the cache. */ tor_asprintf(&fn, "%s"PATH_SEPARATOR"cached-microdescs", options->DataDirectory); s = read_file_to_str(fn, RFTS_BIN, NULL); tt_mem_op(md1->body, OP_EQ, s + md1->off, strlen(test_md1)); tt_mem_op(md2->body, OP_EQ, s + md2->off, strlen(test_md2)); tt_mem_op(md3->body, OP_EQ, s + md3->off, strlen(test_md3_noannotation)); /* Okay, now we are going to forget about the cache entirely, and reload it * from the disk. */ microdesc_free_all(); mc = get_microdesc_cache(); md1 = microdesc_cache_lookup_by_digest256(mc, d1); md2 = microdesc_cache_lookup_by_digest256(mc, d2); md3 = microdesc_cache_lookup_by_digest256(mc, d3); tt_assert(md1); tt_assert(md2); tt_assert(md3); tt_mem_op(md1->body, OP_EQ, s + md1->off, strlen(test_md1)); tt_mem_op(md2->body, OP_EQ, s + md2->off, strlen(test_md2)); tt_mem_op(md3->body, OP_EQ, s + md3->off, strlen(test_md3_noannotation)); tt_int_op(md1->last_listed, OP_EQ, time1); tt_int_op(md2->last_listed, OP_EQ, time2); tt_int_op(md3->last_listed, OP_EQ, time3); /* Okay, now we are going to clear out everything older than a week old. * In practice, that means md3 */ microdesc_cache_clean(mc, time(NULL)-7*24*60*60, 1/*force*/); tt_ptr_op(md1, OP_EQ, microdesc_cache_lookup_by_digest256(mc, d1)); tt_ptr_op(md2, OP_EQ, microdesc_cache_lookup_by_digest256(mc, d2)); tt_ptr_op(NULL, OP_EQ, microdesc_cache_lookup_by_digest256(mc, d3)); md3 = NULL; /* it's history now! */ /* rebuild again, make sure it stays gone. */ tt_int_op(microdesc_cache_rebuild(mc, 1), OP_EQ, 0); tt_ptr_op(md1, OP_EQ, microdesc_cache_lookup_by_digest256(mc, d1)); tt_ptr_op(md2, OP_EQ, microdesc_cache_lookup_by_digest256(mc, d2)); tt_ptr_op(NULL, OP_EQ, microdesc_cache_lookup_by_digest256(mc, d3)); /* Re-add md3, and make sure we can rebuild the cache. */ added = microdescs_add_to_cache(mc, test_md3_noannotation, NULL, SAVED_NOWHERE, 0, time3, NULL); tt_int_op(1, OP_EQ, smartlist_len(added)); md3 = smartlist_get(added, 0); smartlist_free(added); added = NULL; tt_int_op(md1->saved_location, OP_EQ, SAVED_IN_CACHE); tt_int_op(md2->saved_location, OP_EQ, SAVED_IN_CACHE); tt_int_op(md3->saved_location, OP_EQ, SAVED_IN_JOURNAL); tt_int_op(microdesc_cache_rebuild(mc, 1), OP_EQ, 0); tt_int_op(md3->saved_location, OP_EQ, SAVED_IN_CACHE); done: if (options) tor_free(options->DataDirectory); microdesc_free_all(); smartlist_free(added); if (wanted) SMARTLIST_FOREACH(wanted, char *, cp, tor_free(cp)); smartlist_free(wanted); tor_free(s); tor_free(fn); } static const char truncated_md[] = "@last-listed 2013-08-08 19:02:59\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAM91vLFNaM+gGhnRIdz2Cm/Kl7Xz0cOobIdVzhS3cKUJfk867hCuTipS\n" "NveLBzNopvgXKruAAzEj3cACxk6Q8lv5UWOGCD1UolkgsWSE62RBjap44g+oc9J1\n" "RI9968xOTZw0VaBQg9giEILNXl0djoikQ+5tQRUvLDDa67gpa5Q1AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "family @\n"; static void test_md_cache_broken(void *data) { or_options_t *options; char *fn=NULL; microdesc_cache_t *mc = NULL; (void)data; options = get_options_mutable(); tt_assert(options); tor_free(options->DataDirectory); options->DataDirectory = tor_strdup(get_fname("md_datadir_test2")); #ifdef _WIN32 tt_int_op(0, OP_EQ, mkdir(options->DataDirectory)); #else tt_int_op(0, OP_EQ, mkdir(options->DataDirectory, 0700)); #endif tor_asprintf(&fn, "%s"PATH_SEPARATOR"cached-microdescs", options->DataDirectory); write_str_to_file(fn, truncated_md, 1); mc = get_microdesc_cache(); tt_assert(mc); done: if (options) tor_free(options->DataDirectory); tor_free(fn); microdesc_free_all(); } /* Generated by chutney. */ static const char test_ri[] = "router test005r 127.0.0.1 5005 0 7005\n" "platform Tor 0.2.5.4-alpha-dev on Linux\n" "protocols Link 1 2 Circuit 1\n" "published 2014-05-06 22:57:55\n" "fingerprint 09DE 3BA2 48C2 1C3F 3760 6CD3 8460 43A6 D5EC F59E\n" "uptime 0\n" "bandwidth 1073741824 1073741824 0\n" "extra-info-digest 361F9428F9FA4DD854C03DDBCC159D0D9FA996C9\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANBJz8Vldl12aFeSMPLiA4nOetLDN0oxU8bB1SDhO7Uu2zdWYVYAF5J0\n" "st7WvrVy/jA9v/fsezNAPskBanecHRSkdMTpkcgRPMHE7CTGEwIy1Yp1X4bPgDlC\n" "VCnbs5Pcts5HnWEYNK7qHDAUn+IlmjOO+pTUY8uyq+GQVz6H9wFlAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANbGUC4802Ke6C3nOVxN0U0HhIRrs32cQFEL4v+UUMJPgjbistHBvOax\n" "CWVR/sMXM2kKJeGThJ9ZUs2p9dDG4WHPUXgkMqzTTEeeFa7pQKU0brgbmLaJq0Pi\n" "mxmqC5RkTHa5bQvq6QlSFprAEoovV27cWqBM9jVdV9hyc//6kwPzAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "hidden-service-dir\n" "ntor-onion-key Gg73xH7+kTfT6bi1uNVx9gwQdQas9pROIfmc4NpAdC4=\n" "reject *:25\n" "reject *:119\n" "reject *:135-139\n" "reject *:445\n" "reject *:563\n" "reject *:1214\n" "reject *:4661-4666\n" "reject *:6346-6429\n" "reject *:6699\n" "reject *:6881-6999\n" "accept *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "ImzX5PF2vRCrG1YzGToyjoxYhgh1vtHEDjmP+tIS/iil1DSnHZNpHSuHp0L1jE9S\n" "yZyrtKaqpBE/aecAM3j4CWCn/ipnAAQkHcyRLin1bYvqBtRzyopVCRlUhF+uWrLq\n" "t0xkIE39ss/EwmQr7iIgkdVH4oRIMsjYnFFJBG26nYY=\n" "-----END SIGNATURE-----\n"; static const char test_ri2[] = "router test001a 127.0.0.1 5001 0 7001\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf/FAf5iDuKCZP2VxnAaQWdklilAh6kaEeFX4z8261Yx2T1/AQAgBADCp8vO\n" "B8K1F9g2DzwuwvVCnPFLSK1qknVqPpNucHLH9DY7fuIYogBAdz4zHv1qC7RKaMNG\n" "Jux/tMO2tzPcm62Ky5PjClMQplKUOnZNQ+RIpA3wYCIfUDy/cQnY7XWgNQ0=\n" "-----END ED25519 CERT-----\n" "platform Tor 0.2.6.0-alpha-dev on Darwin\n" "protocols Link 1 2 Circuit 1\n" "published 2014-10-08 12:58:04\n" "fingerprint B7E2 7F10 4213 C36F 13E7 E982 9182 845E 4959 97A0\n" "uptime 0\n" "bandwidth 1073741824 1073741824 0\n" "extra-info-digest 568F27331B6D8C73E7024F1EF5D097B90DFC7CDB\n" "caches-extra-info\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAL2R8EfubUcahxha4u02P4VAR0llQIMwFAmrHPjzcK7apcQgDOf2ovOA\n" "+YQnJFxlpBmCoCZC6ssCi+9G0mqo650lFuTMP5I90BdtjotfzESfTykHLiChyvhd\n" "l0dlqclb2SU/GKem/fLRXH16aNi72CdSUu/1slKs/70ILi34QixRAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAN8+78KUVlgHXdMMkYJxcwh1Zv2y+Gb5eWUyltUaQRajhrT9ij2T5JZs\n" "M0g85xTcuM3jNVVpV79+33hiTohdC6UZ+Bk4USQ7WBFzRbVFSXoVKLBJFkCOIexg\n" "SMGNd5WEDtHWrXl58mizmPFu1eG6ZxHzt7RuLSol5cwBvawXPNkFAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "ETFDzU49bvNfoZnKK1j6JeBP2gDirgj6bBCgWpUYs663OO9ypbZRO0JwWANssKl6\n" "oaq9vKTsKGRsaNnqnz/JGMhehymakjjNtqg7crWwsahe8+7Pw9GKmW+YjFtcOkUf\n" "KfOn2bmKBa1FoJb4yW3oXzHcdlLSRuCciKqPn+Hky5o=\n" "-----END CROSSCERT-----\n" "ntor-onion-key-crosscert 0\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf2dAcKny84HwrUX2DYPPC7C9UKc8UtIrWqSdWo+k25wcsf0AFohutG+xI06\n" "Ef21c5Zl1j8Hw6DzHDjYyJevXLFuOneaL3zcH2Ldn4sjrG3kc5UuVvRfTvV120UO\n" "xk4f5s5LGwY=\n" "-----END ED25519 CERT-----\n" "hidden-service-dir\n" "contact auth1@test.test\n" "ntor-onion-key hbxdRnfVUJJY7+KcT4E3Rs7/zuClbN3hJrjSBiEGMgI=\n" "reject *:*\n" "router-sig-ed25519 5aQXyTif7PExIuL2di37UvktmJECKnils2OWz2vDi" "hFxi+5TTAAPxYkS5clhc/Pjvw34itfjGmTKFic/8httAQ\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "BaUB+aFPQbb3BwtdzKsKqV3+6cRlSqJF5bI3UTmwRoJk+Z5Pz+W5NWokNI0xArHM\n" "T4T5FZCCP9350jXsUCIvzyIyktU6aVRCGFt76rFlo1OETpN8GWkMnQU0w18cxvgS\n" "cf34GXHv61XReJF3AlzNHFpbrPOYmowmhrTULKyMqow=\n" "-----END SIGNATURE-----\n"; static const char test_md_8[] = "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANBJz8Vldl12aFeSMPLiA4nOetLDN0oxU8bB1SDhO7Uu2zdWYVYAF5J0\n" "st7WvrVy/jA9v/fsezNAPskBanecHRSkdMTpkcgRPMHE7CTGEwIy1Yp1X4bPgDlC\n" "VCnbs5Pcts5HnWEYNK7qHDAUn+IlmjOO+pTUY8uyq+GQVz6H9wFlAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "p reject 25,119,135-139,445,563,1214,4661-4666,6346-6429,6699,6881-6999\n"; static const char test_md_16[] = "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANBJz8Vldl12aFeSMPLiA4nOetLDN0oxU8bB1SDhO7Uu2zdWYVYAF5J0\n" "st7WvrVy/jA9v/fsezNAPskBanecHRSkdMTpkcgRPMHE7CTGEwIy1Yp1X4bPgDlC\n" "VCnbs5Pcts5HnWEYNK7qHDAUn+IlmjOO+pTUY8uyq+GQVz6H9wFlAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key Gg73xH7+kTfT6bi1uNVx9gwQdQas9pROIfmc4NpAdC4=\n" "p reject 25,119,135-139,445,563,1214,4661-4666,6346-6429,6699,6881-6999\n"; static const char test_md_18[] = "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANBJz8Vldl12aFeSMPLiA4nOetLDN0oxU8bB1SDhO7Uu2zdWYVYAF5J0\n" "st7WvrVy/jA9v/fsezNAPskBanecHRSkdMTpkcgRPMHE7CTGEwIy1Yp1X4bPgDlC\n" "VCnbs5Pcts5HnWEYNK7qHDAUn+IlmjOO+pTUY8uyq+GQVz6H9wFlAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key Gg73xH7+kTfT6bi1uNVx9gwQdQas9pROIfmc4NpAdC4=\n" "p reject 25,119,135-139,445,563,1214,4661-4666,6346-6429,6699,6881-6999\n" "id rsa1024 Cd47okjCHD83YGzThGBDptXs9Z4\n"; static const char test_md2_18[] = "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAL2R8EfubUcahxha4u02P4VAR0llQIMwFAmrHPjzcK7apcQgDOf2ovOA\n" "+YQnJFxlpBmCoCZC6ssCi+9G0mqo650lFuTMP5I90BdtjotfzESfTykHLiChyvhd\n" "l0dlqclb2SU/GKem/fLRXH16aNi72CdSUu/1slKs/70ILi34QixRAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key hbxdRnfVUJJY7+KcT4E3Rs7/zuClbN3hJrjSBiEGMgI=\n" "id rsa1024 t+J/EEITw28T5+mCkYKEXklZl6A\n"; static const char test_md2_21[] = "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAL2R8EfubUcahxha4u02P4VAR0llQIMwFAmrHPjzcK7apcQgDOf2ovOA\n" "+YQnJFxlpBmCoCZC6ssCi+9G0mqo650lFuTMP5I90BdtjotfzESfTykHLiChyvhd\n" "l0dlqclb2SU/GKem/fLRXH16aNi72CdSUu/1slKs/70ILi34QixRAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key hbxdRnfVUJJY7+KcT4E3Rs7/zuClbN3hJrjSBiEGMgI=\n" "id ed25519 wqfLzgfCtRfYNg88LsL1QpzxS0itapJ1aj6TbnByx/Q\n"; static void test_md_generate(void *arg) { routerinfo_t *ri; microdesc_t *md = NULL; (void)arg; ri = router_parse_entry_from_string(test_ri, NULL, 0, 0, NULL, NULL); tt_assert(ri); md = dirvote_create_microdescriptor(ri, 8); tt_str_op(md->body, OP_EQ, test_md_8); /* XXXX test family lines. */ /* XXXX test method 14 for A lines. */ /* XXXX test method 15 for P6 lines. */ microdesc_free(md); md = NULL; md = dirvote_create_microdescriptor(ri, 16); tt_str_op(md->body, OP_EQ, test_md_16); microdesc_free(md); md = NULL; md = dirvote_create_microdescriptor(ri, 18); tt_str_op(md->body, OP_EQ, test_md_18); microdesc_free(md); md = NULL; md = dirvote_create_microdescriptor(ri, 21); tt_str_op(md->body, ==, test_md_18); routerinfo_free(ri); ri = router_parse_entry_from_string(test_ri2, NULL, 0, 0, NULL, NULL); microdesc_free(md); md = NULL; md = dirvote_create_microdescriptor(ri, 18); tt_str_op(md->body, ==, test_md2_18); microdesc_free(md); md = NULL; md = dirvote_create_microdescriptor(ri, 21); tt_str_op(md->body, ==, test_md2_21); tt_assert(ed25519_pubkey_eq(md->ed25519_identity_pkey, &ri->signing_key_cert->signing_key)); done: microdesc_free(md); routerinfo_free(ri); } /* Taken at random from my ~/.tor/cached-microdescs file and then * hand-munged */ static const char MD_PARSE_TEST_DATA[] = /* Good 0 */ "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANsKd1GRfOuSR1MkcwKqs6SVy4Gi/JXplt/bHDkIGm6Q96TeJ5uyVgUL\n" "DBr/ij6+JqgVFeriuiMzHKREytzjdaTuKsKBFFpLwb+Ppcjr5nMIH/AR6/aHO8hW\n" "T3B9lx5T6Kl7CqZ4yqXxYRHzn50EPTIZuz0y9se4J4gi9mLmL+pHAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "p accept 20-23,43,53,79-81,88,110,143,194,220,443,464,531,543-544\n" "id rsa1024 GEo59/iR1GWSIWZDzXTd5QxtqnU\n" /* Bad 0: I've messed with the onion-key in the second one. */ "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMr4o/pflVwscx11vC1AKEADlKEqnhpvCIjAEzNEenMhvGQHRlA0EXLC\n" "7G7O5bhnCwEHqK8Pvg8cuX/fD8v08TF1EVPhwPa0UI6ab8KnPP2F!!!!!!b92DG7EQIk3q\n" "d68Uxp7E9/t3v1WWZjzDqvEe0par6ul+DKW6HMlTGebFo5Q4e8R1AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key 761Dmm27via7lXygNHM3l+oJLrYU2Nye0Uz4pkpipyY=\n" "p accept 53\n" "id rsa1024 3Y4fwXhtgkdGDZ5ef5mtb6TJRQQ\n" /* Good 1 */ "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANsMSjVi3EX8ZHfm/dvPF6KdVR66k1tVul7Jp+dDbDajBYNhgKRzVCxy\n" "Yac1CBuQjOqK89tKap9PQBnhF087eDrfaZDqYTLwB2W2sBJncVej15WEPXPRBifo\n" "iFZ8337kgczkaY+IOfSuhtbOUyDOoDpRJheIKBNq0ZiTqtLbbadVAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key ncfiHJjSgdDEW/gc6q6/7idac7j+x7ejQrRm6i75pGA=\n" "p accept 443,6660-6669,6697,7000-7001\n" "id rsa1024 XXuLzw3mfBELEq3veXoNhdehwD4\n" /* Good 2 */ "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANQfBlrHrh9F/CAOytrNFgi0ikWMW/HZxuoszF9X+AQ+MudR8bcxxOGl\n" "1RFwb74s8E3uuzrCkNFvSw9Ar1L02F2DOX0gLsxEGuYC4Ave9NUteGqSqDyEJQUJ\n" "KlfxCPn2qC9nvNT7wR/Dg2WRvAEKnJmkpb57N3+WSAOPLjKOFEz3AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key AppBt6CSeb1kKid/36ototmFA24ddfW5JpjWPLuoJgs=\n" "id rsa1024 6y60AEI9a1PUUlRPO0YQT9WzrjI\n" /* Bad 1: Here I've messed with the ntor key */ "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAPjy2HacU3jDNO5nTOFGSwNa0qKCNn4yhtrDVcAJ5alIQeBWZZGJLZ0q\n" "Cqylw1vYqxu8E09g+QXXFbAgBv1U9TICaATxrIJhIJzc8TJPhqJemp1kq0DvHLDx\n" "mxwlkNnCD/P5NS+JYB3EjOlU9EnSKUWNU61+Co344m2JqhEau40vAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key 4i2Fp9JHTUr1uQs0pxD5j5spl4/RG56S2P0gQxU=\n" "id rsa1024 nMRmNEGysA0NmlALVaUmI7D5jLU\n" /* Good 3: I've added a weird token in this one. This shouldn't prevent * it parsing */ "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAKmosxudyNA/yJNz3S890VqV/ebylzoD11Sc0b/d5tyNNaNZjcYy5vRD\n" "kwyxFRMbP2TLZQ1zRfNwY7IDnYjU2SbW0pxuM6M8WRtsmx/YOE3kHMVAFJNrTUqU\n" "6D1zB3IiRDS5q5+NoRxwqo+hYUck60O3WTwEoqb+l3lvXeu7z9rFAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "flux-capacitor 1.21 GW\n" "ntor-onion-key MWBoEkl+RlBiGX44XKIvTSqbznTNZStOmUYtcYRQQyY=\n" "id rsa1024 R+A5O9qRvRac4FT3C4L2QnFyxsc\n" /* Good 4: Here I've made the 'id rsa' token odd. It should still parse * just fine. */ "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAOh+WMkdNe/Pkjb8UjQyfLOlFgpuVFrxAIGnJsmWWx0yBE97DQxGyh2n\n" "h8G5OJZHRarJQyCIf7vpZQAi0oP0OkGGaCaDQsM+D8TnqhnU++RWGnMqY/cXxPrL\n" "MEq+n6aGiLmzkO7ah8yorZpoREk4GqLUIN89/tHHGOhJL3c4CPGjAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "p reject 25,119,135-139,445,563,1214,4661-4666,6346-6429,6699,6881-6999\n" "id rsa1234 jlqAKFD2E7uMKv+8TmKSeo7NBho\n" /* Good 5: Extra id type. */ "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMdgPPc5uaw4y/q+SUTN/I8Y+Gvdx9kKgWV4dmDGJ0mxsVZmo1v6+v3F\n" "12M2f9m99G3WB8F8now29C+9XyEv8MBHj1lHRdUFHSQes3YTFvDNlgj+FjLqO5TJ\n" "adOOmfu4DCUUtUEDyQKbNVL4EkMTXY73omTVsjcH3xxFjTx5wixhAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key AAVnWZcnDbxasdZwKqb4fL6O9sZV+XsRNHTpNd1YMz8=\n" "id rsa1024 72EfBL11QuwX2vU8y+p9ExGfGEg\n" "id expolding hedgehog 0+A5O9qRvRac4FT3C4L2QnFyxsc\n" /* Good 6: I've given this a bogus policy. It should parse. */ "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALNuufwhPMF8BooxYMNvhYJMPqUB8hQDt8wGmPKphJcD1sVD1i4gAZM2\n" "HIo+zUBlljDrRWL5NzVzd1yxUJAiQxvXS5dRRFY3B70M7wTVpXw53xe0/BM5t1AX\n" "n0MFk7Jl6XIKMlzRalZvmMvE/odtyWXkP4Nd1MyZ1QcIwrQ2iwyrAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "p condone 1-10\n" "ntor-onion-key 2/nMJ+L4dd/2GpMyTYjz3zC59MvQy4MIzJZhdzKHekg=\n" "id rsa1024 FHyh10glEMA6MCmBb5R9Y+X/MhQ\n" /* Good 7: I've given this one another sort of odd policy. Should parse. */ "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAKcd3FmQ8iAADghyvX8eca0ePqtJ2w1IDdUdTlf5Y/8+OMdp//sD01yC\n" "YmiX45LK5ge1O3AzcakYCO6fb3pyIqvXdvm24OjyYZELQ40cmKSLjdhcSf4Fr/N9\n" "uR/CkknR9cEePu1wZ5WBIGmGdXI6s7t3LB+e7XFyBYAx6wMGlnX7AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "p accept frogs-mice\n" "ntor-onion-key AMxvhaQ1Qg7jBJFoyHuPRgETvLbFmJ194hExV24FuAI=\n" "family $D8CFEA0D996F5D1473D2063C041B7910DB23981E\n" "id rsa1024 d0VVZC/cHh1P3y4MMbfKlQHFycc\n" /* Good 8: This one has the ntor-onion-key without terminating =. That's * allowed. */ "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAL438YfjrJE2SPqkkXeQwICygu8KNO54Juj6sjqk5hgsiazIWMOBgbaX\n" "LIRqPNGaiSq01xSqwjwCBCfwZYT/nSdDBqj1h9aoR8rnjxZjyQ+m3rWpdDqeCDMx\n" "I3NgZ5w4bNX4poRb42lrV6NmQiFdjzpqszVbv5Lpn2CSKu32CwKVAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key UKL6Dnj2KwYsFlkCvOkXVatxvOPB4MaxqwPQQgZMTwI\n" "id rsa1024 FPIXc6k++JnKCtSKWUxaR6oXEKs\n" /* Good 9: Another totally normal one.*/ "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANNGIKRd8PFNXkJ2JPV1ohDMFNbJwKbwybeieaQFjtU9KWedHCbr+QD4\n" "B6zNY5ysguNjHNnlq2f6D09+uhnfDBON8tAz0mPQH/6JqnOXm+EiUn+8bN0E8Nke\n" "/i3GEgDeaxJJMNQcpsJvmmSmKFOlYy9Fy7ejAjTGqtAnqOte7BnTAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key gUsq3e5iYgsQQvyxINtLzBpHxmIt5rtuFlEbKfI4gFk=\n" "id rsa1024 jv+LdatDzsMfEW6pLBeL/5uzwCc\n" /* Bad 2: RSA key has bad exponent of 3. */ "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGHAoGBAMMTWtvPxYnUNJ5Y7B+XENcpxzPoGstrdiUszCBS+/42xvluLJ+JDSdR\n" "qJaMD6ax8vKAeLS5C6O17MNdG2VldlPRbtgl41MXsOoUqEJ+nY9e3WG9Snjp47xC\n" "zmWIfeduXSavIsb3a43/MLIz/9qO0TkgAAiuQr79JlwKhLdzCqTLAgED\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key NkRB4wTUFogiVp5jYmjGORe2ffb/y5Kk8Itw8jdzMjA=\n" "p reject 25,119,135-139,445,563,1214,4661-4666,6346-6429,6699,6881-6999\n" "id rsa1024 fKvYjP7TAjCC1FzYee5bYAwYkoDg\n" /* Bad 3: Bogus annotation */ "@last-listed with strange aeons\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALcRBFNCZtpd2TFJysU77/fJMFzKisRQEBOtDGtTZ2Bg4aEGosssa0Id\n" "YtUagRLYle08QVGvGB+EHBI5qf6Ah2yPH7k5QiN2a3Sq+nyh85dXKPazBGBBbM+C\n" "DOfDauV02CAnADNMLJEf1voY3oBVvYyIsmHxn5i1R19ZYIiR8NX5AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key m4xcFXMWMjCvZDXq8FT3XmS0EHYseGOeu+fV+6FYDlk=\n" "p accept 20-23,43,53,79-81,88,110,143,194,220,389,443,464,531,543-544\n" "id rsa1024 SSbfNE9vmaiwRKH+eqNAkiKQhds\n" /* Good 10: Normal, with added ipv6 address and added other address */ "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAM7uUtq5F6h63QNYIvC+4NcWaD0DjtnrOORZMkdpJhinXUOwce3cD5Dj\n" "sgdN1wJpWpTQMXJ2DssfSgmOVXETP7qJuZyRprxalQhaEATMDNJA/66Ml1jSO9mZ\n" "+8Xb7m/4q778lNtkSbsvMaYD2Dq6k2QQ3kMhr9z8oUtX0XA23+pfAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "a [::1:2:3:4]:9090\n" "a 18.0.0.1:9999\n" "ntor-onion-key k2yFqTU2vzMCQDEiE/j9UcEHxKrXMLpB3IL0or09sik=\n" "id rsa1024 2A8wYpHxnkKJ92orocvIQBzeHlE\n" "p6 allow 80\n" ; /** More tests for parsing different kinds of microdescriptors, and getting * invalid digests trackd from them. */ static void test_md_parse(void *arg) { (void) arg; char *mem_op_hex_tmp = NULL; smartlist_t *invalid = smartlist_new(); smartlist_t *mds = microdescs_parse_from_string(MD_PARSE_TEST_DATA, NULL, 1, SAVED_NOWHERE, invalid); tt_int_op(smartlist_len(mds), OP_EQ, 11); tt_int_op(smartlist_len(invalid), OP_EQ, 4); test_memeq_hex(smartlist_get(invalid,0), "5d76bf1c6614e885614a1e0ad074e1ab" "4ea14655ebeefb1736a71b5ed8a15a51"); test_memeq_hex(smartlist_get(invalid,1), "2fde0ee3343669c2444cd9d53cbd39c6" "a7d1fc0513513e840ca7f6e68864b36c"); test_memeq_hex(smartlist_get(invalid,2), "20d1576c5ab11bbcff0dedb1db4a3cfc" "c8bc8dd839d8cbfef92d00a1a7d7b294"); test_memeq_hex(smartlist_get(invalid,3), "074770f394c73dbde7b44412e9692add" "691a478d4727f9804b77646c95420a96"); /* Spot-check the valid ones. */ const microdesc_t *md = smartlist_get(mds, 5); test_memeq_hex(md->digest, "54bb6d733ddeb375d2456c79ae103961" "da0cae29620375ac4cf13d54da4d92b3"); tt_int_op(md->last_listed, OP_EQ, 0); tt_int_op(md->saved_location, OP_EQ, SAVED_NOWHERE); tt_int_op(md->no_save, OP_EQ, 0); tt_uint_op(md->held_in_map, OP_EQ, 0); tt_uint_op(md->held_by_nodes, OP_EQ, 0); tt_assert(md->onion_curve25519_pkey); md = smartlist_get(mds, 6); test_memeq_hex(md->digest, "53f740bd222ab37f19f604b1d3759aa6" "5eff1fbce9ac254bd0fa50d4af9b1bae"); tt_assert(! md->exit_policy); md = smartlist_get(mds, 8); test_memeq_hex(md->digest, "a0a155562d8093d8fd0feb7b93b7226e" "17f056c2142aab7a4ea8c5867a0376d5"); tt_assert(md->onion_curve25519_pkey); md = smartlist_get(mds, 10); test_memeq_hex(md->digest, "409ebd87d23925a2732bd467a92813c9" "21ca378fcb9ca193d354c51550b6d5e9"); tt_assert(tor_addr_family(&md->ipv6_addr) == AF_INET6); tt_int_op(md->ipv6_orport, OP_EQ, 9090); done: SMARTLIST_FOREACH(mds, microdesc_t *, md, microdesc_free(md)); smartlist_free(mds); SMARTLIST_FOREACH(invalid, char *, cp, tor_free(cp)); smartlist_free(invalid); tor_free(mem_op_hex_tmp); } static int mock_rgsbd_called = 0; static routerstatus_t *mock_rgsbd_val_a = NULL; static routerstatus_t *mock_rgsbd_val_b = NULL; static routerstatus_t * mock_router_get_status_by_digest(networkstatus_t *c, const char *d) { (void) c; ++mock_rgsbd_called; if (fast_memeq(d, "\x5d\x76", 2)) { memcpy(mock_rgsbd_val_a->descriptor_digest, d, 32); return mock_rgsbd_val_a; } else if (fast_memeq(d, "\x20\xd1", 2)) { memcpy(mock_rgsbd_val_b->descriptor_digest, d, 32); return mock_rgsbd_val_b; } else { return NULL; } } static networkstatus_t *mock_ns_val = NULL; static networkstatus_t * mock_ns_get_by_flavor(consensus_flavor_t f) { (void)f; return mock_ns_val; } static void test_md_reject_cache(void *arg) { (void) arg; microdesc_cache_t *mc = NULL ; smartlist_t *added = NULL, *wanted = smartlist_new(); or_options_t *options = get_options_mutable(); char buf[DIGEST256_LEN]; tor_free(options->DataDirectory); options->DataDirectory = tor_strdup(get_fname("md_datadir_test_rej")); mock_rgsbd_val_a = tor_malloc_zero(sizeof(routerstatus_t)); mock_rgsbd_val_b = tor_malloc_zero(sizeof(routerstatus_t)); mock_ns_val = tor_malloc_zero(sizeof(networkstatus_t)); mock_ns_val->valid_after = time(NULL) - 86400; mock_ns_val->valid_until = time(NULL) + 86400; mock_ns_val->flavor = FLAV_MICRODESC; #ifdef _WIN32 tt_int_op(0, OP_EQ, mkdir(options->DataDirectory)); #else tt_int_op(0, OP_EQ, mkdir(options->DataDirectory, 0700)); #endif MOCK(router_get_mutable_consensus_status_by_descriptor_digest, mock_router_get_status_by_digest); MOCK(networkstatus_get_latest_consensus_by_flavor, mock_ns_get_by_flavor); mc = get_microdesc_cache(); #define ADD(hex) \ do { \ tt_int_op(0,OP_EQ,base16_decode(buf,sizeof(buf),hex,strlen(hex))); \ smartlist_add(wanted, tor_memdup(buf, DIGEST256_LEN)); \ } while (0) /* invalid,0 */ ADD("5d76bf1c6614e885614a1e0ad074e1ab4ea14655ebeefb1736a71b5ed8a15a51"); /* invalid,2 */ ADD("20d1576c5ab11bbcff0dedb1db4a3cfcc8bc8dd839d8cbfef92d00a1a7d7b294"); /* valid, 6 */ ADD("53f740bd222ab37f19f604b1d3759aa65eff1fbce9ac254bd0fa50d4af9b1bae"); /* valid, 8 */ ADD("a0a155562d8093d8fd0feb7b93b7226e17f056c2142aab7a4ea8c5867a0376d5"); added = microdescs_add_to_cache(mc, MD_PARSE_TEST_DATA, NULL, SAVED_NOWHERE, 0, time(NULL), wanted); tt_int_op(smartlist_len(added), OP_EQ, 2); tt_int_op(mock_rgsbd_called, OP_EQ, 2); tt_int_op(mock_rgsbd_val_a->dl_status.n_download_failures, OP_EQ, 255); tt_int_op(mock_rgsbd_val_b->dl_status.n_download_failures, OP_EQ, 255); done: UNMOCK(networkstatus_get_latest_consensus_by_flavor); UNMOCK(router_get_mutable_consensus_status_by_descriptor_digest); tor_free(options->DataDirectory); microdesc_free_all(); smartlist_free(added); SMARTLIST_FOREACH(wanted, char *, cp, tor_free(cp)); smartlist_free(wanted); tor_free(mock_rgsbd_val_a); tor_free(mock_rgsbd_val_b); tor_free(mock_ns_val); } static void test_md_corrupt_desc(void *arg) { char *cp = NULL; smartlist_t *sl = NULL; (void) arg; sl = microdescs_add_to_cache(get_microdesc_cache(), "@last-listed 2015-06-22 10:00:00\n" "onion-k\n", NULL, SAVED_IN_JOURNAL, 0, time(NULL), NULL); tt_int_op(smartlist_len(sl), ==, 0); smartlist_free(sl); sl = microdescs_add_to_cache(get_microdesc_cache(), "@last-listed 2015-06-22 10:00:00\n" "wiggly\n", NULL, SAVED_IN_JOURNAL, 0, time(NULL), NULL); tt_int_op(smartlist_len(sl), ==, 0); smartlist_free(sl); tor_asprintf(&cp, "%s\n%s", test_md1, "@foobar\nonion-wobble\n"); sl = microdescs_add_to_cache(get_microdesc_cache(), cp, cp+strlen(cp), SAVED_IN_JOURNAL, 0, time(NULL), NULL); tt_int_op(smartlist_len(sl), ==, 0); done: tor_free(cp); smartlist_free(sl); } struct testcase_t microdesc_tests[] = { { "cache", test_md_cache, TT_FORK, NULL, NULL }, { "broken_cache", test_md_cache_broken, TT_FORK, NULL, NULL }, { "generate", test_md_generate, 0, NULL, NULL }, { "parse", test_md_parse, 0, NULL, NULL }, { "reject_cache", test_md_reject_cache, TT_FORK, NULL, NULL }, { "corrupt_desc", test_md_corrupt_desc, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_cell_queue.c0000644000175000017500000001037612621363246014521 00000000000000/* Copyright (c) 2013-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define CIRCUITLIST_PRIVATE #define RELAY_PRIVATE #include "or.h" #include "circuitlist.h" #include "relay.h" #include "test.h" static void test_cq_manip(void *arg) { packed_cell_t *pc1=NULL, *pc2=NULL, *pc3=NULL, *pc4=NULL, *pc_tmp=NULL; cell_queue_t cq; cell_t cell; (void) arg; cell_queue_init(&cq); tt_int_op(cq.n, OP_EQ, 0); pc1 = packed_cell_new(); pc2 = packed_cell_new(); pc3 = packed_cell_new(); pc4 = packed_cell_new(); tt_assert(pc1 && pc2 && pc3 && pc4); tt_ptr_op(NULL, OP_EQ, cell_queue_pop(&cq)); /* Add and remove a singleton. */ cell_queue_append(&cq, pc1); tt_int_op(cq.n, OP_EQ, 1); tt_ptr_op(pc1, OP_EQ, cell_queue_pop(&cq)); tt_int_op(cq.n, OP_EQ, 0); /* Add and remove four items */ cell_queue_append(&cq, pc4); cell_queue_append(&cq, pc3); cell_queue_append(&cq, pc2); cell_queue_append(&cq, pc1); tt_int_op(cq.n, OP_EQ, 4); tt_ptr_op(pc4, OP_EQ, cell_queue_pop(&cq)); tt_ptr_op(pc3, OP_EQ, cell_queue_pop(&cq)); tt_ptr_op(pc2, OP_EQ, cell_queue_pop(&cq)); tt_ptr_op(pc1, OP_EQ, cell_queue_pop(&cq)); tt_int_op(cq.n, OP_EQ, 0); tt_ptr_op(NULL, OP_EQ, cell_queue_pop(&cq)); /* Try a packed copy (wide, then narrow, which is a bit of a cheat, since a * real cell queue has only one type.) */ memset(&cell, 0, sizeof(cell)); cell.circ_id = 0x12345678; cell.command = 10; strlcpy((char*)cell.payload, "Lorax ipsum gruvvulus thneed amet, snergelly " "once-ler lerkim, sed do barbaloot tempor gluppitus ut labore et " "truffula magna aliqua.", sizeof(cell.payload)); cell_queue_append_packed_copy(NULL /*circ*/, &cq, 0 /*exitward*/, &cell, 1 /*wide*/, 0 /*stats*/); cell.circ_id = 0x2013; cell_queue_append_packed_copy(NULL /*circ*/, &cq, 0 /*exitward*/, &cell, 0 /*wide*/, 0 /*stats*/); tt_int_op(cq.n, OP_EQ, 2); pc_tmp = cell_queue_pop(&cq); tt_int_op(cq.n, OP_EQ, 1); tt_ptr_op(pc_tmp, OP_NE, NULL); tt_mem_op(pc_tmp->body, OP_EQ, "\x12\x34\x56\x78\x0a", 5); tt_mem_op(pc_tmp->body+5, OP_EQ, cell.payload, sizeof(cell.payload)); packed_cell_free(pc_tmp); pc_tmp = cell_queue_pop(&cq); tt_int_op(cq.n, OP_EQ, 0); tt_ptr_op(pc_tmp, OP_NE, NULL); tt_mem_op(pc_tmp->body, OP_EQ, "\x20\x13\x0a", 3); tt_mem_op(pc_tmp->body+3, OP_EQ, cell.payload, sizeof(cell.payload)); packed_cell_free(pc_tmp); pc_tmp = NULL; tt_ptr_op(NULL, OP_EQ, cell_queue_pop(&cq)); /* Now make sure cell_queue_clear works. */ cell_queue_append(&cq, pc2); cell_queue_append(&cq, pc1); tt_int_op(cq.n, OP_EQ, 2); cell_queue_clear(&cq); pc2 = pc1 = NULL; /* prevent double-free */ tt_int_op(cq.n, OP_EQ, 0); done: packed_cell_free(pc1); packed_cell_free(pc2); packed_cell_free(pc3); packed_cell_free(pc4); packed_cell_free(pc_tmp); cell_queue_clear(&cq); } static void test_circuit_n_cells(void *arg) { packed_cell_t *pc1=NULL, *pc2=NULL, *pc3=NULL, *pc4=NULL, *pc5=NULL; origin_circuit_t *origin_c=NULL; or_circuit_t *or_c=NULL; (void)arg; pc1 = packed_cell_new(); pc2 = packed_cell_new(); pc3 = packed_cell_new(); pc4 = packed_cell_new(); pc5 = packed_cell_new(); tt_assert(pc1 && pc2 && pc3 && pc4 && pc5); or_c = or_circuit_new(0, NULL); origin_c = origin_circuit_new(); origin_c->base_.purpose = CIRCUIT_PURPOSE_C_GENERAL; tt_int_op(n_cells_in_circ_queues(TO_CIRCUIT(or_c)), OP_EQ, 0); cell_queue_append(&or_c->p_chan_cells, pc1); tt_int_op(n_cells_in_circ_queues(TO_CIRCUIT(or_c)), OP_EQ, 1); cell_queue_append(&or_c->base_.n_chan_cells, pc2); cell_queue_append(&or_c->base_.n_chan_cells, pc3); tt_int_op(n_cells_in_circ_queues(TO_CIRCUIT(or_c)), OP_EQ, 3); tt_int_op(n_cells_in_circ_queues(TO_CIRCUIT(origin_c)), OP_EQ, 0); cell_queue_append(&origin_c->base_.n_chan_cells, pc4); cell_queue_append(&origin_c->base_.n_chan_cells, pc5); tt_int_op(n_cells_in_circ_queues(TO_CIRCUIT(origin_c)), OP_EQ, 2); done: circuit_free(TO_CIRCUIT(or_c)); circuit_free(TO_CIRCUIT(origin_c)); } struct testcase_t cell_queue_tests[] = { { "basic", test_cq_manip, TT_FORK, NULL, NULL, }, { "circ_n_cells", test_circuit_n_cells, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_dns.c0000644000175000017500000002145212631612325013153 00000000000000#include "or.h" #include "test.h" #define DNS_PRIVATE #include "dns.h" #include "connection.h" static void test_dns_clip_ttl(void *arg) { (void)arg; uint32_t ttl_mid = MIN_DNS_TTL / 2 + MAX_DNS_TTL / 2; tt_int_op(dns_clip_ttl(MIN_DNS_TTL - 1),==,MIN_DNS_TTL); tt_int_op(dns_clip_ttl(ttl_mid),==,ttl_mid); tt_int_op(dns_clip_ttl(MAX_DNS_TTL + 1),==,MAX_DNS_TTL); done: return; } static void test_dns_expiry_ttl(void *arg) { (void)arg; uint32_t ttl_mid = MIN_DNS_TTL / 2 + MAX_DNS_ENTRY_AGE / 2; tt_int_op(dns_get_expiry_ttl(MIN_DNS_TTL - 1),==,MIN_DNS_TTL); tt_int_op(dns_get_expiry_ttl(ttl_mid),==,ttl_mid); tt_int_op(dns_get_expiry_ttl(MAX_DNS_ENTRY_AGE + 1),==,MAX_DNS_ENTRY_AGE); done: return; } static int resolve_retval = 0; static int resolve_made_conn_pending = 0; static char *resolved_name = NULL; static cached_resolve_t *cache_entry = NULL; static int n_fake_impl = 0; /** This will be our configurable substitute for dns_resolve_impl in * dns.c. It will return resolve_retval, * and set resolve_made_conn_pending to * made_connection_pending_out. It will set hostname_out * to a duplicate of resolved_name and it will set resolve_out * to cache_entry. Lastly, it will increment n_fake_implbase_.magic = OR_CIRCUIT_MAGIC; memset(fake_resolved,0,sizeof(cached_resolve_t)); memset(exitconn,0,sizeof(edge_connection_t)); memset(nextconn,0,sizeof(edge_connection_t)); MOCK(dns_resolve_impl,dns_resolve_fake_impl); MOCK(send_resolved_cell,send_resolved_cell_replacement); MOCK(send_resolved_hostname_cell,send_resolved_hostname_cell_replacement); /* * CASE 1: dns_resolve_impl returns 1 and sets a hostname. purpose is * EXIT_PURPOSE_RESOLVE. * * We want dns_resolve() to call send_resolved_hostname_cell() for a * given exit connection (represented by edge_connection_t object) * with a hostname it received from _impl. */ prev_n_send_resolved_hostname_cell_replacement = n_send_resolved_hostname_cell_replacement; exitconn->base_.purpose = EXIT_PURPOSE_RESOLVE; exitconn->on_circuit = &(on_circuit->base_); resolve_retval = 1; resolved_name = tor_strdup("www.torproject.org"); retval = dns_resolve(exitconn); tt_int_op(retval,==,1); tt_str_op(resolved_name,==,last_resolved_hostname); tt_assert(conn_for_resolved_cell == exitconn); tt_int_op(n_send_resolved_hostname_cell_replacement,==, prev_n_send_resolved_hostname_cell_replacement + 1); tt_assert(exitconn->on_circuit == NULL); tor_free(last_resolved_hostname); // implies last_resolved_hostname = NULL; /* CASE 2: dns_resolve_impl returns 1, but does not set hostname. * Instead, it yields cached_resolve_t object. * * We want dns_resolve to call send_resolved_cell on exitconn with * RESOLVED_TYPE_AUTO and the cached_resolve_t object from _impl. */ tor_free(resolved_name); resolved_name = NULL; exitconn->on_circuit = &(on_circuit->base_); cache_entry = fake_resolved; prev_n_send_resolved_cell_replacement = n_send_resolved_cell_replacement; retval = dns_resolve(exitconn); tt_int_op(retval,==,1); tt_assert(conn_for_resolved_cell == exitconn); tt_int_op(n_send_resolved_cell_replacement,==, prev_n_send_resolved_cell_replacement + 1); tt_assert(last_resolved == fake_resolved); tt_int_op(last_answer_type,==,0xff); tt_assert(exitconn->on_circuit == NULL); /* CASE 3: The purpose of exit connection is not EXIT_PURPOSE_RESOLVE * and _impl returns 1. * * We want dns_resolve to prepend exitconn to n_streams linked list. * We don't want it to send any cells about hostname being resolved. */ exitconn->base_.purpose = EXIT_PURPOSE_CONNECT; exitconn->on_circuit = &(on_circuit->base_); on_circuit->n_streams = nextconn; prev_n_send_resolved_cell_replacement = n_send_resolved_cell_replacement; prev_n_send_resolved_hostname_cell_replacement = n_send_resolved_hostname_cell_replacement; retval = dns_resolve(exitconn); tt_int_op(retval,==,1); tt_assert(on_circuit->n_streams == exitconn); tt_assert(exitconn->next_stream == nextconn); tt_int_op(prev_n_send_resolved_cell_replacement,==, n_send_resolved_cell_replacement); tt_int_op(prev_n_send_resolved_hostname_cell_replacement,==, n_send_resolved_hostname_cell_replacement); /* CASE 4: _impl returns 0. * * We want dns_resolve() to set exitconn state to * EXIT_CONN_STATE_RESOLVING and prepend exitconn to resolving_streams * linked list. */ exitconn->on_circuit = &(on_circuit->base_); resolve_retval = 0; exitconn->next_stream = NULL; on_circuit->resolving_streams = nextconn; retval = dns_resolve(exitconn); tt_int_op(retval,==,0); tt_int_op(exitconn->base_.state,==,EXIT_CONN_STATE_RESOLVING); tt_assert(on_circuit->resolving_streams == exitconn); tt_assert(exitconn->next_stream == nextconn); /* CASE 5: _impl returns -1 when purpose of exitconn is * EXIT_PURPOSE_RESOLVE. We want dns_resolve to call send_resolved_cell * on exitconn with type being RESOLVED_TYPE_ERROR. */ MOCK(dns_cancel_pending_resolve,dns_cancel_pending_resolve_replacement); MOCK(connection_free,connection_free_replacement); exitconn->on_circuit = &(on_circuit->base_); exitconn->base_.purpose = EXIT_PURPOSE_RESOLVE; resolve_retval = -1; prev_n_send_resolved_cell_replacement = n_send_resolved_cell_replacement; prev_n_connection_free = n_connection_free; retval = dns_resolve(exitconn); tt_int_op(retval,==,-1); tt_int_op(n_send_resolved_cell_replacement,==, prev_n_send_resolved_cell_replacement + 1); tt_int_op(last_answer_type,==,RESOLVED_TYPE_ERROR); tt_int_op(n_dns_cancel_pending_resolve_replacement,==,1); tt_int_op(n_connection_free,==,prev_n_connection_free + 1); tt_assert(last_freed_conn == TO_CONN(exitconn)); done: UNMOCK(dns_resolve_impl); UNMOCK(send_resolved_cell); UNMOCK(send_resolved_hostname_cell); UNMOCK(dns_cancel_pending_resolve); UNMOCK(connection_free); tor_free(on_circuit); tor_free(exitconn); tor_free(nextconn); tor_free(resolved_name); tor_free(fake_resolved); tor_free(last_resolved_hostname); return; } struct testcase_t dns_tests[] = { { "clip_ttl", test_dns_clip_ttl, 0, NULL, NULL }, { "expiry_ttl", test_dns_expiry_ttl, 0, NULL, NULL }, { "resolve_outer", test_dns_resolve_outer, TT_FORK, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/failing_routerdescs.inc0000644000175000017500000020754712621363246015731 00000000000000/* This one actually succeeds */ static const char EX_RI_MINIMAL[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAObzT4opT9uaThByupbb96tYxVpGxzL9CRPKUcU0beGpHyognD9USHWc\n" "SpSpKfBL5P3xr2i/XTs34M4UTbT9PE7bVyxv7RD/BZmI4gc8R3PMU77xxbpEU5bK\n" "LF3QUPpuB88m/2fXUGgMNVDc5MIq6pod2NRoDpeU7WA8T3ewXzK5AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAM1QKsQiup9DNMCgNeE2FkAhCWzpMZKCn1nNlZbDGfE3Z22ex6bdWWY6\n" "ocEZ3JZDsZsnaZrdYxrL3Mquq7MbHdfx90EdlOvDRP1SAIbZ55mLR77fZTu4BKd/\n" "h9BC6I26uZE0QavFq3+BhoVVhVn5Mqv05nR9CeUMSSZLxw/RJm4DAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "Ft/y3JXowjItgfTHwYcZzuUgXrskluoINW5sr+GQoNYE2F4sT8o0tBBJwqJ6FwKd\n" "fkIprv9UXqkv5iY+pXSYSI12mY1K5GMNkXiObk46NjuoNNP9l8oidhO6eNfcE+k3\n" "CRIYS4FbBaD0fWUSwgMuo0Bp83/Wzp3B9ytEBh0/624=\n" "-----END SIGNATURE-----\n"; /* So does this, and it's bigger. */ static const char EX_RI_MAXIMAL[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANNI56H+b7SW5LMzvXyY5NJzXszsHZZ4O1CPm4CePhBsAz1r0s1JYJ1F\n" "Anrc0mEcLtmj0c5+HnhPBNrfpjO6G94Wp3NZMVykHDhfNVDBRyFZMroG8/GlysYB\n" "MQPGQYR0xBgiuclNHoyk/vygQhZekumamu2O86EIPcfg9LhGIgEbAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALvuNVSmg6R9USFbQcNbRjMCJAV0Rwdv0DlS6Rl02ibJgb01G7v391xE\n" "d9Njzgf93n8gOrE195bkUbvS6k/DM3HFGgArq6q9AZ2LTbu3KbAYy1YPsSIh07kB\n" "/8kkvRRGx37X9WGZU3j5VUEuzqI//xDE9lbanlnnFXpnb6ymehDJAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject 127.0.0.1:*\n" "accept *:80\n" "reject *:*\n" "ipv6-policy accept 80,100,101\n" "ntor-onion-key s7rSohmz9SXn8WWh1EefTHIsWePthsEntQi0WL+ScVw\n" "uptime 1000\n" "hibernating 0\n" "unrecognized-keywords are just dandy in this format\n" "platform Tor 0.2.4.23 on a Banana PC Jr 6000 Series\n" "contact O.W.Jones\n" "fingerprint CC43 DC8E 8C9E 3E6D 59CD 0399 2491 0C8C E1E4 50D2\n" "read-history 900 1,2,3,4\n" "write-history 900 1,2,3,4\n" "extra-info-digest AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\n" "hidden-service-dir\n" "allow-single-hop-exits\n" "family $AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA $BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB\n" "caches-extra-info\n" "or-address [::1:2:3:4]:9999\n" "or-address 127.0.0.99:10000\n" "opt fred is a fine router\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "x5cxL2h2UsEKk2OVnCTxOF8a89HAe/HwQnSlrBy8+l0YdVCcePDJhm1WyWU7ToHZ\n" "K8auwreuw+u/n14sQHPYrM9NQE689hP4LC9AYOnrCnMHysfVqKuou+DSKYYRgs0D\n" "ySCmJ9p+xekfmms+JBmS5o5DVo48VGlG0VksegoB264=\n" "-----END SIGNATURE-----\n" ; /* I've messed with 12 bits of the signature on this one */ static const char EX_RI_BAD_SIG1[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAObzT4opT9uaThByupbb96tYxVpGxzL9CRPKUcU0beGpHyognD9USHWc\n" "SpSpKfBL5P3xr2i/XTs34M4UTbT9PE7bVyxv7RD/BZmI4gc8R3PMU77xxbpEU5bK\n" "LF3QUPpuB88m/2fXUGgMNVDc5MIq6pod2NRoDpeU7WA8T3ewXzK5AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAM1QKsQiup9DNMCgNeE2FkAhCWzpMZKCn1nNlZbDGfE3Z22ex6bdWWY6\n" "ocEZ3JZDsZsnaZrdYxrL3Mquq7MbHdfx90EdlOvDRP1SAIbZ55mLR77fZTu4BKd/\n" "h9BC6I26uZE0QavFq3+BhoVVhVn5Mqv05nR9CeUMSSZLxw/RJm4DAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "Ft/y3JXowjItgfTHwYcZzuUgXrskluoINW5sr+GQoNYE2F4sT8o0tBBJwqJ6FwKd\n" "fkIprv9UXqkv5iY+pXSYXX12mY1K5GMNkXiObk46NjuoNNP9l8oidhO6eNfcE+k3\n" "CRIYS4FbBaD0fWUSwgMuo0Bp83/Wzp3B9ytEBh0/624=\n" "-----END SIGNATURE-----\n"; /* This is a good signature of the wrong data: I changed 'published' */ static const char EX_RI_BAD_SIG2[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAObzT4opT9uaThByupbb96tYxVpGxzL9CRPKUcU0beGpHyognD9USHWc\n" "SpSpKfBL5P3xr2i/XTs34M4UTbT9PE7bVyxv7RD/BZmI4gc8R3PMU77xxbpEU5bK\n" "LF3QUPpuB88m/2fXUGgMNVDc5MIq6pod2NRoDpeU7WA8T3ewXzK5AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAM1QKsQiup9DNMCgNeE2FkAhCWzpMZKCn1nNlZbDGfE3Z22ex6bdWWY6\n" "ocEZ3JZDsZsnaZrdYxrL3Mquq7MbHdfx90EdlOvDRP1SAIbZ55mLR77fZTu4BKd/\n" "h9BC6I26uZE0QavFq3+BhoVVhVn5Mqv05nR9CeUMSSZLxw/RJm4DAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:01\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "Ft/y3JXowjItgfTHwYcZzuUgXrskluoINW5sr+GQoNYE2F4sT8o0tBBJwqJ6FwKd\n" "fkIprv9UXqkv5iY+pXSYSI12mY1K5GMNkXiObk46NjuoNNP9l8oidhO6eNfcE+k3\n" "CRIYS4FbBaD0fWUSwgMuo0Bp83/Wzp3B9ytEBh0/624=\n" "-----END SIGNATURE-----\n"; /* This one will fail while tokenizing the first line. */ static const char EX_RI_BAD_TOKENS[] = "router bob\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANGCgvZc+JRtAzuzk3gBD2rH9SHrXzjJ1wqdU3tLKr7FamKCMI2pLwSA\n" "FZUpTuSqB9wJ/iVcYws+/kA3FjLqgPtzJFI0SVLvQcz5oIC1rEWpuP6t88duMlO9\n" "flOUzmYu29sBffrXkQr8pesYvakyXArOJVeRR7fSvouneV5aDYWrAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAML+pYZoYc+whKLijupd63xn0gzlEQqe7k07x/lWMqWFT37FfG6YeNr5\n" "fpFoo77FDfuFaL+VfPfI8i88g157hcPKBVX6OyRH54+l5By0tN91S0H+abXjXQpv\n" "U/Bvmul+5QpUeVJa1nPg71HRIauoDnBNexUQ7Xf/Bwb2xCt+IJ6DAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "tbxtYYzyVqi6w6jz1k8NPjFvZaSNR0WzixVTTvKKGoMPx/6+Z8QAFK1ILzRUVucB\n" "nRhmZMFaPr3vREMErLRE47ODAzwoBCE9C+vYFvROhgfzuQ3cYXla+4sMaRXYZzjH\n" "PQ82bTwvSbHsR8fTTgePD/Ac082WxXTGpx6HOLBfNsQ=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_BAD_PUBLISHED[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMoipSwZgTG6SpSOm6ENbyALS1Ljqqa1LSGmtHSRfGYgUQGWZXERXKQj\n" "P5ql6o7EbGr1wnispGW/KB8Age09jGDvd/oGhQ9TDFluhLZon3obkZSFw7f9iA7Q\n" "s29rNxoeXXLZVyS7+sux70b8x2Dt4CeG8GA8nQLljy1euwU+qYYJAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAPzfzQ+2WFMUvnB3z0xD+zwczWcFyYYNW8Lj7/aRGSNN2DICp5uzSjKq\n" "qkYQ+C8jG21+MR2PE+ZBmq6CL5mvlFKlWKouXUlN7BejwWf2gw0UYag0SYctae1b\n" "bu8NuUEvdeGWg5Odgs+abH7U9S0hEtjKrmE5vvJS5L841IcaPLCFAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 99:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "G92pnwCIXGJ9Q0fI9y4m/fHpWCsD0Hnk81/6T4TmRH3jt77fc0uRdomUOC5id4kz\n" "J2M4vqXwRs5OK+eaPbtxf8Yv6FPmB3OBNCIhwNHIIqzKQStHUhPxD3P6j8uJFwot\n" "/CNGciDN+owZ2DzwrXpszDfzcyp/nmwhApbi3W601vY=\n" "-----END SIGNATURE-----\n" ; /* Bandwidth field isn't an integer. */ static const char EX_RI_BAD_BANDWIDTH[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAN32LAvXQaq0p554FcL4LVwnxyiZvscfuFnfpXwWTDRJJHd2+JCttWIx\n" "v+eW7dNq+rq/tzSzaZwnp8b4V2skLRojSt6UUHD234eZcsPwUNhSr0y1eMuoZbnV\n" "UBBPevpuXea85aSFEXXRlIpQfvFc43y3/UFoRzo5iMPqReo2uQ4BAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMBuF1GvOyVcRDNjzlEmGHJkTA7qkaWgTp33NSY/DPEJoahg0Qswuh2w\n" "1YCBqem6Txp+/Vl9hoUoUGwb7Vwq0+YDMSyr0z3Ih2NcNjOMZPVtjJuv+3wXrQC8\n" "LPpCpfU9m9QvhQ7f9zprEqUHOQTT0v5j2a5bpfd++6LFxrMUNwbfAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth hello world today\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "svABTGDNJOgaiPLqDlkRU6ldYJcoEe2qHlr4O30lVM2hS3Gg6o4QARL7QRt7VepT\n" "SruR6pE83xOr7/5Ijq5PlamS4WtODMJSH3DXT2hM5dYYrEX5jsJNZTQ+cYwPQI3y\n" "ykuvQIutH6ipz5MYc9n0GWAzDjLq1G8wlcEfFXQLD10=\n" "-----END SIGNATURE-----\n" ; /* Onion key is actually a signature. */ static const char EX_RI_BAD_ONIONKEY1[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANByIdFOKA3r2nnWyLjdZE8oGHqJE62T1zjW/nsCzCJQ8/kBMRYeGDu4\n" "SeUJJ2rsh2t3PNzkqJM14f4DKmc2q76STsOW0Zcj70Bjhxb9r/OfyELVsi+x3CsE\n" "Zo/W4JtdlVFjqevhODJdyFNLKOvqwG7sZo/K++Hx01Iu0zXLeg8nAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "svABTGDNJOgaiPLqDlkRU6ldYJcoEe2qHlr4O30lVM2hS3Gg6o4QARL7QRt7VepT\n" "SruR6pE83xOr7/5Ijq5PlamS4WtODMJSH3DXT2hM5dYYrEX5jsJNZTQ+cYwPQI3y\n" "ykuvQIutH6ipz5MYc9n0GWAzDjLq1G8wlcEfFXQLD10=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "Cc/Y22KFvxXPXZtjvGIyQdjm4EMhXVXJEBwt8PvK7qlO1AgiVjEBPkUrTQQ/paLQ\n" "lmeCN6jEVcZ8lNiVZgzRQ/2mTO3xLBPj26UNSDuouUwZ01tZ4wPENylNYnLKv5hg\n" "gYARg/nXEJiTVe9LHl99Hr9EWWruRG2wFQjjTILaWzI=\n" "-----END SIGNATURE-----\n" ; /* Onion key has exponent 3 */ static const char EX_RI_BAD_ONIONKEY2[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAKP1kWHsH/BZhNSZmn0FyzIrAHtMl1IVPzc7ABbx+kK+IIEMD9k1fy2h\n" "AP2JTm2UmJDUwutVxPsxmndI+9QsRDpu33E5Ai4U1Rb6Qu+2BRj43YAyg414caIu\n" "J5LLn6bOzt7gtz0+q69WHbnwgI4zUgUbwYpwoB7k0dRY97xip9fHAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGHAoGBANBKlyoqApWzG7UzmXcxhXM4T370FbN1edPbw4WAczBDXJslXCU9Xk1r\n" "fKfoi/+WiTGvH7RcZWPm7wnThq2u2EAO/IPPcLE9cshLBkK28EvDg5K/WsYedbY9\n" "1Gou+7ZSwMEPv2b13c7eWnSW1YvFa64pVDKu2sKnIjX6Bm0HZGbXAgED\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "cYcBOlapA+R4xq3nn5CjpnzNXdDArMlHuXv4MairjleF1n755ecH8A/R8YIc2ioV\n" "n/C1TACzFVQ12Q9P3iikVOjIXNxYzaz4Lm/L/Lq4sEOPRJC38QEXeIHEaeM51lE6\n" "p6kCqXcGu/51p5vAFCSiXI1ciucmx93N+TH1yGKRLV0=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_BAD_PORTS[] = "router fred 127.0.0.1 900001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANVi/MVWhzT5uo3Jxw4ElS7UGmA24dnckdkCLetMhZOcE9e9mg4WcImL\n" "NuBe2L/9YaL4PFVchCGlq73phKG6yFdqJdjDV8Qh9MJdAYWW2ORrjRvCrspPaYPN\n" "BGJrkD2Gd4u3sq7f26TIkzmBx0Acd/FD4PQf8+XOt9YYd36ooS4vAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALtP4cIpAYp9nqo1ak4SxALcndFw4o51U36R4oa+uJS/lYQPHkMMOj6K\n" "+AVnj9sxkDJ1POaU5lsCQ5JPG1t+Tkh7vDlJb6RCUy25vJOuaQCb9GVVY7KQTJqA\n" "E0fU73JdKACNjMlbF36aliQhrG4Fq2Uv+y7yp8qsRxQ8jvzEMES/AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "xzu2T+pMZtdsS5q1cwXM2hMIH2c8mpAV31G2hKIuiQRwtPD1ne4iJsnoVCXhFakd\n" "QTq7eTXM174fGWyIT93wvQx/Uqnp29dGZp/VaNOsxHFdYVB4VIVqkBh757h+PSJ+\n" "VNV5JUm4XQ1QbmniJGdTQp4PLBM++fOXMR3ZNd6rt4o=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_NEG_BANDWIDTH[] = "router fred 100.127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMCG/ZCXNCF02uXRSCP7qWBN75jDMQZ363ubnQWhF9KDDNWWiwj3UiZR\n" "zqsM4zKRgjtarWZvp2qxKABFAODd+j9iq5DvUGRbbXv+aR8TT/ifMtwwxHZQBk1F\n" "1hbsLdwWzGIiyz5k2MVhXnt6JTlklH2hgT++gt9YTHYKxkssaq5TAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAM3vk/4kOTB1VXrve29JeHOzNUsPwKruBcjxJf+aatxjf6KO2/RW41bM\n" "gRYq9V7VAYeZTsbS727fy03F5rk3QIBhMJxm9FHatQ6rT/iEDD4Q1UZQsNtm+OLf\n" "/TkZZhgfB3MiDQ4ld/+GKd7qww8HXTE+m/g1rXNyZPKozn8K7YUHAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 -1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "bUBBZYZWqCbsH4/7fNXtC/HgIZNGOfDF9v4d9YfKaDs5xDYf2o67hRcwx5imhrgC\n" "IU7n9AI4AGxkFoN6g3Y/t4pqebxdkF678rRDCtrlwwreAiUktgrwnetp9Tpo16xj\n" "V7Uf6LcqQdvu78lRh1dsrY78sf7sb90vusFMPLXGUKM=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_BAD_IP[] = "router fred 100.127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMtMrM24AJpJCevxnseIpRlSuAIMksfkfky2+noe7Rok8xn6AMQzMrwx\n" "AiCJ8Jy4DBzIKUiJK4/y1FimyM08qZGR0xeqblCxZ1lbSiXv6OYxoaD2xmWw8zEP\n" "Zgu4jKReHh+gan1D+XpAbFNY0KrANhjRo96ZZ3AQsZQcWBiPKCynAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAOPclmBO/amw1RWTSI1y80qY/EPjc0I+sk9HKr0BQOovxqJ0lmy9Gaue\n" "y+MOejQ9H2hNev0nd7z1fPxEogt7SCe22qJHHX3xDf+D9RpKsvVzDYZsk7hVL7T1\n" "mwHzuiV/dtRa7yAMp7+q0vTUGesU2PYFYMOyPvz5skNLSWrXOm05AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "g6besL/zxOp0N6Q5/7QZgai2kmCU5EAWJlvZrf5jyrjKhsv2a4LDkap07m9QRFqW\n" "GGe7g5iiABIqnl0kzv7NLX7ah+d/xxv+IILXyZfVTxSw0e+zFb3uPlQ7f9JsGJ8i\n" "a+w8wyyDBpOAmi8Ny866Cnp9ojVzCyIErUYHFaPvKao=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_BAD_DIRPORT[] = "router fred 127.0.0.1 9001 0 bob\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANKcD6DJ16X3yvdq05jatdwgjO+hyoIpckW9sV/OkdfIZwf+S6Q4pZGC\n" "doMw5XeOM52gjpx42kUp6M2WlTGDFEpaNU0VyeZYG/M1CM1xvfj3+1PoebioAGdf\n" "GuhNBCHZdaYNiOGnh9t2GgUomgpE6njdS/lovSrDeTL469hfcUghAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANWeGHig5wE9UijaNnEW5au3B3hZKSlzCi+T6MYDPbbYhm8qJaVoXUXF\n" "EP1EUgzDcX3dPEo9upUA1+91GkjGQCo9eOYlqGib8kHIwKnHZK+hernBc/DnOeUp\n" "Wyk9SW5s+fi12OQhr3NGjbSn76FMY9XU3Qt7m3EviTwWpI3Jr5eRAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "t77wEoLjyfMf9LKgBfjveosgwvJ8Go0nb27Ae3Ng9tGtR4qaJQfmwZ5fOOuVU9QC\n" "3s8ww3aY91KD3NTcN3v3FKngxWtRM8AIfwh4pqT3zW6OSP4+nO3xml7ql0Zf6wfj\n" "TPFV2941O3yplAsmBJ41sRSWizF04wTtZAIgzY7dMLA=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_BAD_NAME2[] = "router verylongnamethatnevereverendsandgoesontoolong 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAL0mcUxg7GJ6oxgciLiBCbo+NuZ/OVKRrERCSM6j6iHERcB9+ciSRgQ5\n" "H6o6FUX2LoRmHYzBk1x7kIjHa9kx9g6CAbBamdZrQbdVnc1y2NrdHB/jvwLj3C48\n" "PgzFIrLg9OlkuoWck/E+YpPllONfF65e0+ualgVjPgpQpXwmz+ktAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAOgHvvTAxyjJtHx9W2X7aOI05H9sYDDY+sxhovT/8EpAHrioex54tsMT\n" "ifgtoXTjGIBEOTDi/1ry39nEW5WPbowqvyzRfR2M43pc96WV7e1nhmD/JrnTYgtR\n" "5/15KxcMJxoDhod7WZ/wlXBnHc2VevX8JTaeOe9KYORCj5iNbtVZAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "j/nFT5gyj20cLHWv94O1jmnqy3n6qkO8Av0OdvvfNeXsMK2UHxk84vzFvEwpUF/Y\n" "i+VR3LXY4CjTpuliMtjt7BQGtmJSvB8W0CeIUenIGzfwDxW9dG2o7spDldKDB/OU\n" "C1wyHvKaA6Yss/02RIDa4AxyjsfbgdJ91qK+aAnYAtA=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_BAD_BANDWIDTH2[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALQDCm9VEopiYILmt4X9kP6DQazfgKnLXv+6rHbc4qtmvQQD3TVYbxMP\n" "F4sEUaz+YHAPnomfDVW3a0YFRYXwDzUm1n47YYCyhUzEaD2f69Mcl/gLpKdg+QOy\n" "boGB1oD4CStWL3y05KhxxTNiTrg+veMzXTqNwryCYm+GoihIAM9fAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALYHwdx6bmYy09AW5ElN/DWh0fHh3mBK97ryiIMi8FImYfzbw2BR6xuT\n" "aQT5omqS3PNJJcNWZt5gOyDtA9kLh03cch7t1PenXSYJshbME2bDrZDJKVJMN6vV\n" "B1v/9HjXsVF50jBzZsJo3j26XCPT5s6u9wqUFWW09QR3E/1HInHVAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 -1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "p09ijyuvcW+WKRj4mJA/nkLCvZkRcMzykAWheJi1IHCoqhXFdkFLiIRqjaeDVHRr\n" "zBtD+YCQiGvFcaQJ9IUhh7IleHcyyljmDYlvuBAxWiKvVZstJac0kclCU4W+g8yK\n" "0Qug3PmGKk115x2TllHaCZqMo5OkK4I/WAsKp+DnJ1A=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_BAD_UPTIME[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMM0Nubr1VXQ/FcgIQTFxZpZDlAEh2XN8FoJ8d+X5S46VDGijmMoYmyN\n" "oLXqMTGmOaR0RGZOeGLgDzeY8tLrfF821IjfkXeAANZibUjdsHwqHO3wlWD2v+GN\n" "0GBocWXEdAp/os229mQQKgYAATJ0Ib3jKhBdtgm5R444u8VX5XnbAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMpyOr4kEtSTZw4H9eSkH2+WmwIlO4VBpY2HkPS00l6L5fM2REjt50Xi\n" "lsNOz8Q6mAn5cMYmsGlv61kg01mCvYc7Z715jGh+1hhVAxMaNS3ED/nSPnslyjhq\n" "BUm51LhYNHD4ktISIqPMurx6aC8B68UYgKzLgCYNzkathFXSBpjRAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "uptime forever-and-a-day\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "NHYeiQOu0nZdrhSy31Xz4F0T6OTU23hPQDzoLax1/zq6iTVrz9xi3HGm7HhOMW1j\n" "YgFGK3+Xm4iJL+DwriunsAIuL5axr3z2hlmFDQHYItP//KyPpOqSrfEOhwcuj/PE\n" "VbWsiVYwz9VJLO8SfHoBeHI6PsjQRQFt2REBKZhYdxA=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_BAD_BANDWIDTH3[] = "router lucy 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAO6HrITQTEjV/v/rInQ2REmCFZa4dZg8zIh6+B51U/I6hDiZaKGwpNey\n" "9OfjoRqT2DwyLEe3ORm9A2RAz2twLBixrpt5IvC0sbGustmW964BHW7k9VvRupwl\n" "ovujHpLIj5dkLxD15jGXHoTp1yHUVk9NkMGN+ahg6y+QhTbIrWbRAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAOEpciJFXauEqs31GMTUTzu6edBj9WtV+sIflhGKvU1KKRfwCgOcuKMx\n" "QiLHHD9AjhMAFGT/qtNbPFkzfYxHKLHw+NLJsxmNtdkYM26FX3ButPiX+69sq9fI\n" "PCHqQy6z/A7hHwtEk6niWgK2PLhAZCg9duAv+mqFVXe2QEBjax/lAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 electric\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "Jk0Xk1RMJSjEflNRcp4qznaHKcfe2r0kOc7TdLAnM8zyNDVj6+Bn8HWmyp/oFmf6\n" "xtWKKgkKxriAVIJgqZMchPbr9RuZS+i+cad++FCwpTVkyBP920XWC47jA3ZXSBee\n" "HK6FaoK5LfmUm8XEU9BVhiwISXaUfTdkR8HfzugFbWk=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_BAD_NTOR_KEY[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAKYDCSr0Jh9d/mJKjnGYAHKNBcxR3EJk6GGLwKUrRpN8z/aHRxdWlZF2\n" "lBml6yQNK/VPftcvOekxrKq3/dISrIFBzFYj6XHNtg31d09UgitVkk0VfRarZiGu\n" "O6Yv55GSJ9a3AZDE4YmIp5eBjVuChyVkeDFYKVn0ed4sj9gg35rjAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALXdUQuq1pYHyYP0qU6Ik+oOmwl0eOsuwiLWf9Vd+dsgEszICX4DRWPx\n" "syDxfxyA/g9FEPvlI7Nglx6cKe2MT0AutSRLbbML4smfuRZNIF35Cnfu5qTGVVzL\n" "GWVSA2Ip7p+9S9xLhLBdc6qmrxEXCPL6anEhCR4f8AeybXAsz2JLAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "ntor-onion-key s7rSohmz9SXn8WWh1EefTHIsWePthsEntQi0WL+ScVfjdklsdfjkf\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "Yf9axWyzPudnRvQstNdbtBYo7pGpUEIdECMGcJtFb6v/00pxk4Tt3RiOKa84cOBV\n" "7V9NjOLdqlx88pGz0DNCJKqToIrwjZDeQ8Q1yi9XClLDkC32fQRX4y6vNBZ3LXLe\n" "ayVrdRrb41/DP+E7FP4RNPA5czujTfs8xLBMbGew8AA=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_BAD_FINGERPRINT[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAM0wDWF2dBLzsmoIDHRugzosCSR9TSvEE0TkvKu6+agfogGtkQJwQ5zO\n" "sGzZbRR+okO7d+QCED2i3rUs1iikoMUT+pwgvOm8Bxg9R64GK7fl9K5WuAiG11Uj\n" "DQAfSx5Fo30+rhOhe16c9CT7xJhj//ZKDbXUW7BrJI8zpuOnvgD5AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAKACg1nWM/WjpUiGwlLQsY3Tq1h0RTz/HmOMx/6rTRxS5HLz0KnLg5zV\n" "dvmfhxqQVKBkt1N2+y+qO7x71oFzIsFMfHYWSxOCEo8Nkff1BqAPqxxUHvM0HwJo\n" "d7lswJ/UT1j4+WZNZ4sFIujsIW2/zZqKlxG9xaw0GXJ082Cj9XkPAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "fingerprint 5555\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "mlqyJ/ZGBINKwSNEi7GpNBCMqIVbL0pGAOBYHJF1GbRlU28uRyNyeELIxIK5ZIet\n" "ZzKr7KPvlBxlyolScPhTJfP98TFSubrwYz7NnQv0vLI0bD0OyoBf/9/1GYlzgTso\n" "3mKfnV7THUalpxe9EjQ/x61Yqf26Co0+jYpt8/Ck6tg=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_MISMATCHED_FINGERPRINT[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANUAvwbpGbsAyA+mBwjFkvurtRzdw9btDqNKtPImufIE+q+AFTaCnwPr\n" "kA7vm/O6h6OhgfdYEC2GfYJfwPGM7MDuz+NnuKxUb3qb2DQN2laqow6qWs9La/if\n" "oHKUjC5mNeAgHcbWapx9CygwaFeVW6FBPl6Db6GIRAlywPSX+XMJAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANlSGd+Vm9nLiUk6zgu8dPnSFfw4F0R2GYfmzncIGJWtRFTF9ThW/0av\n" "/9vZAWyVBjjtnpAP5R1BzdJYV2RwimC/6tqoHtkSbCBhdq5Cb/EHG7Xgb8KwNWVJ\n" "NV1EESDwvWnRfSPGTreRw9+2LkdXri17FhDo2GjRxAq/N7YkLK5hAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "fingerprint CC43 DC8E 8C9E 3E6D 59CD 0399 2491 0C8C E1E4 50D2\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "Y8MwYBeEfMhoAABK/FgpVRYolZ7jQ2BJL+8Lb6i4yAuk+HeVmPKTX7MqQoekUuin\n" "/HdPKP+g/9HPMS5pCiW4FMwnXAF0ZocPXF0ndmsTuh0/7VWVOUGgvBpPbIW6guvt\n" "sLLQ3Cq9a4Kwmd+koatfLB6xSZjhXmOn7nRy7gOdwJ8=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_BAD_HAS_ACCEPT6[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAJfPJNA3zZ77v2nlX2j5dXImcB/NhRtkG8XQgF7z+3H17sqoXgBgZ1dq\n" "IbyJmAy2Lrvk/8VkXNFrT5/ErThn1B98V/PsJOOW1x7jGcix6X4zDYn/MvwC+AxA\n" "zNP0ozNcVZ6BzVYq8w4I1V4O3Cd6VJesxRVX6mUeSeNawOb7fBY7AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAKBzfB4mDEJjFTnmtqZxDG8G1yAiccVgAtq9ECEREL/BOQyukixUBeBe\n" "j/FgXzbMJ7DZAuopuJZU2ma6h14G63fZs7eNFceDtmdLpuCOsFuvJ5Mlkf3hDZ1u\n" "1KK5q+tiG7MKxgnGrqjPBUO2uubs2Cpx0HmsqBNUalXd/KAkFJbXAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "accept6 *:80\n" "reject6 *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "Dp9dLgs9s5beMPxfD0m96as9gNBvlmKhH1RQ/kcOKscia4R8Q42CnUtIqLkCdjOu\n" "zErc2Vj9QzjKOvlqUqHxP+J+l+ZJez6F+E1tcmK/Ydz3exL8cg9f4sAOCSXcpBey\n" "llTFDibz6GkQ2j3/Uc4bN/uLzoyZKunpJbSKZP5nt8Q=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_BAD_NO_EXIT_POLICY[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAK4fbjTKYqv2fygfjzY53sVTdtbNMjq293/uffKKxFYnOVvPzrHlP6Go\n" "2S19ZcyDxOuH1unbBChPnV0GpxXX6+bgfDkaFh7+jef0RQ3fpJl84hSvdM8J8SCt\n" "Q/F4Oqk3NeKKs+zAHDjhAU1G4LkF9/SZ9WZVXlH4a4pf7xgQtaShAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAKahvyDkmh33ob/bLVO1icgz2ntOZN6ZQUfgpMU4Cd6DQtOEwFUGhbVt\n" "gvtMHv2+VbxM31ZfUsyBqJ1rJBLpOqlPvSoYwSac2+twa+w/qjfGqcJYhBjP9TV9\n" "n9y8DzBX85p6vRcCzcuZ4qUJ2nRzdLHwjdgzeLmmCHuPO2dQxQhXAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "ntgCtMC0VrsY42dKts8igGQ2Nu1BpuzUltisIsJz75dDx2LCqTn7p4VpWbTrj1sH\n" "MRNOvEPFxVMs0Lu50ZUGRzeV6GrHmzIRnOIWanb3I/jyrJLM0jTIjCOLwdMRA298\n" "tw8Y9Hnwj4K7K6VvgU8LP4l7MAJNfR6UT46AJ6vkgL0=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_BAD_IPV6_EXIT_POLICY[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAKHJKLHqjYoW9M+1q0CGHJRT5u2CnZWb8Qr1DpLkkusQ6ru+cDAG12so\n" "IpDQh7IyB2JosVJi9ogekYxJ3O1p5WlFUi0X19DMoer9FJ9J7/3s4enGJ/yMBeuu\n" "jLVRkjMJhsfhj3Cykon+8Rrf520wSmBg1dpJQCXTwtb7DARgYRpZAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAPJH61Ir6XSu9/Q9tXGaINbXO1GWQQUXtwh6TX9lxnaCNDLGnxiY+ZZw\n" "+Vqj3LAQoMrz1PpPsF5e0VIxok10Vc8y4cWC+kIitcecut4vWC5FYTtVVP9wtlyg\n" "YCcVOVhtFQxtLiGqprl84+EVxrR7RQVCMLNDUXIgxAfdnS24eBPDAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "ipv6-policy kfdslfdfj sdjfk sdfjsdf\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "XWorzVT5Owg+QcsBtksiUNtpQQ5+IdvbsN+0O9FbFtGZeaeBAbPJ3Poz+KFCUjZY\n" "DeDAiu1cVgODx2St+99LpwEuIBx78HaD8RYU8tHx8LoA+mGC43ogQQS9lmfxzvP5\n" "eT5WXhkOS5AZ8LZOCOmT+tj/LkSXev2x/NC9+Vc1HPo=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_BAD_FAMILY[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAM62QoRxSPnm+ZM4fv9p03Qqbz5SzhXYSNjKWqylBruaofTw6oIM8DtX\n" "7QnrEe/ou/WtfB+swV/2rt/r0EzmeWBWuDmuSUrN5TC2AdOi9brSJMgXVW6VW77X\n" "fuIlLd5DVSId2zs3cKLDqp36CUsooA9sS6I5HrvW9QDf3VS3pGBtAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANg1trpnRzkCi4t4Z4qnBKF612H5A3Zrjg7Jo2b3ajUnON/KEuLPTc3t\n" "PPN0W4qqeCMmVQEuxf3DRbTPS20ycy4B/JDWYfxCNwuj5YAx04REf7T0Hlx7Aee/\n" "sHEQBhIBfasA2idhTh3cAm4DMYn+00BqjxF6jmyRA0hyntEABabrAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "family aaaa,bbbb\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "xOgP3liKF/WEvwbbGzUUVRZ5WPrOI7jex8pZU/02UEnHjit7vCf9fsUcvkeo0xjz\n" "n3FQHIO1iAJS7dEaEM4nz6wtPUb2iXSU9QajkGBkJ9/V7NHMFIU3FGfP47PIJJkd\n" "nz5INoS+AsE7PmnDjUMm1H45TCCl8N8y4FO6TtN7p8I=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_BAD_EI_DIGEST[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAJ8Sn8AxBRbeIAHUvaKjqmcYOvXz7YFlpYFiVHp/cn+l+KUkIYTOFQXf\n" "K8AtwjmJ4R2qJIbNlY/6oZGFbizt/B+WPuWsTj+8ACEEDlxx0ibg3EJRB8AZYiWv\n" "0zC/loiUvHm6fXF5ghvDr9BQzEUo9kBk5haoHwROtGawr1+vOEiNAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMzok3ZJtLjXOC8RKltXI8xulwn/ctCvQFHImR0+ccA1uBxaZNYgiIcc\n" "q8XngROfV8xEgDbYPiWiLXJOMSwOd7hfs3YzRWF+LKftYs8PuRyMJcCoBjOPZ4QX\n" "HRfTetEvu2SijZMby+lkqpZg2nuF/ipsXUjrabRZdNiIGhC451vdAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "extra-info-digest not-a-digest\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "c/6zAxO04izQvqdM4bZVGE+ak0nna5pz9XZizFkieZEDWGzWQuVMhXyL5sbsFbsx\n" "6Hn7DvNRYR/2nA0teDeRyIHMoMHi76te5X9OFDgaeUVCbyJ8h/KZYfPnN86IDbsR\n" "dCSmj9kX55keu64ccCAH1CqwcN/UsbplXiJJVG5pTfI=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_ZERO_ORPORT[] = "router fred 127.0.0.1 0 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMc4MOhLG3PKPgc+xYVf4eScWzeOf8wq7Cb/JxZm50G0LuvVbhHtHEZX\n" "VOSHI7mLE1ifakJvCFJRLobMU7lU0yhn18/nKl2Cu5NfFHHeF/NieUBSxBGb2wD6\n" "aM1azheXrRqvDVVfbI0DLc/XfQC/YNiohOsQ/c9C6wuffA4+Sg85AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALBWdl9/Vft+NQKQlg5kgvZo+krnhNTRVQojWtUEzom4TFIT+NNKJyMG\n" "reQXcNdzNptTB0aOBGGwqAesqzsZ2Hje699NsDe7hdl7Sb5yhKDqtdQY6yDXJUFt\n" "zqpAUkmYMLe2p3kPiWefNso56KYXrZrlNAiIS/FhQ5cmuMC2jPydAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "gFg08P9A6QNQjURlebfdhU3DSV0BeM0j2SFza1jF9JcBOWDRmT8FvYFK1B3js6jK\n" "8LNV8JOUssv14z5CnUY9CO1BD0xSl+vGlSS4VOXD7rxui8IoWgnqnZsitq+Qzs95\n" "wgFKhHI/49NHyWHX5IMQpeicg0T7Qa6qwnUvspH62p8=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_MINIMAL_ED[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf5iAa+2yD5ryD5kXaWbpmzaTyuTjRfjMTFleDuFGkHe26wrAQAgBABFTAHm\n" "hdZriC+6BRCCMYu48cYc9tUN1adfEROqSHZN3HHP4k/fYgncoxrS3OYDX1x8Ysm/\n" "sqxAXBY4NhCMswWvuDYgtQpro9YaFohiorJkHjyLQXjUeZikCfDrlxyR8AM=\n" "-----END ED25519 CERT-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAOsjlHgM/lPQgjJyfrq0y+cR+iipcAeS2HAU8CK9SATETOTZYrxoL5vH\n" "1BNteT+JxAxpjva+j7r7XZV41xPDx7alVr8G3zQsjqkAt5NnleTfUREUbg0+OSMV\n" "10gU+DgcZJTMehfGYJnuJsF4eQHio/ZTdJLaZML7qwq0iWg3sZfBAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAK9NjRY7GtAZnlxrAZlImChXmGzml0uk2KlCugvju+eIsjSA/zW3LuqW\n" "wqp7Kh488Ak5nUFSlCaV9GjAexT134pynst8P0m/ofrejwlzl5DHd6sFbR33Fkzl\n" "H48zic0QDY+8tKXI732dA4GveEwZDlxxy8sPcvUDaVyTsuZLHR4zAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key 71DgscFrk4i58O5GuTerI9g3JL0kz+6QaCstAllz9xw=\n" "ntor-onion-key-crosscert 1\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf5iAUVMAeaF1muIL7oFEIIxi7jxxhz21Q3Vp18RE6pIdk3cAH5ijeKqa+LM\n" "T5Nb0I42Io4Z7BVjXG7sYVSxrospCOI4dqkl2ln3BKNuEFFT42xJwt+XGz3aMyK2\n" "Cpp8w8I8nwU=\n" "-----END ED25519 CERT-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "lAZwD6YVic61NvJ0Iy62cSPuzJl5hJOFYNh9iSG/vn4/lVfnnCik+Gqi2v9pwItC\n" "acwmutCSrMprmmFAW1dgzoU7GzUtdbxaGaOJdg8WwtO4JjFSzScTDB8R6sp0SCAI\n" "PdbzAzJyiMqYcynyyCTiL77iwhUOBPzs2fXlivMtW2E=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 Oyo/eES+/wsgse1f+YSiJDGatBDaiB4fASf7vJ7GxFeD4OfLbB7OYa4hYNEo5NBssNt/PA55AQVSL8hvzBE3Cg\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "wdk26ZtS1H81IxcUThyirANLoszrnYYhOMP57YRAUDEzUr88X6yNDZ5S0tLl+FoT\n" "9XlEVrpN7Z3k4N9WloWb0o/zVVidPMRVwt8YQakSgR8axzMQg6QhQ6zXTiYhiXa4\n" "mawlwYFXsaVDSIIqYA2CudIyF3UBRZuTbw0CFZElMWc=\n" "-----END SIGNATURE-----\n" "\n" ; static const char EX_RI_ED_MISSING_CROSSCERT[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf54AfsyyHhGluzfESzL4LP8AhFEm83+GkFoHbe1KnssVngHAQAgBABNzJRw\n" "BLXT3QMlic0QZ4eG612wkfSRS4yzONIbATKLHIgyzgGiGl4gaSX0JTeHeGfIlu7P\n" "5SKocZVNxm1mp55PG+tgBqHObDRJRSgbOyUbUgfOtcbQGUeVgUlFKWZ9FAY=\n" "-----END ED25519 CERT-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMqT7K8cEzWIaPNXbNgvoZ5ejavoszI2OjW9XXetPD/S2f+N7TfQXHBW\n" "bnjpgj87gmk59w0OXTMCv+XofZ0xOy2YR/jG5l1VJIvqgJhhFJ8oSEGVzy+97Ekn\n" "Lb1FEYuVfVxSxnU2jhHW6KPtee/gvuyRI/TvZuwmYWxLRpikVn4pAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAM4nITNe8UykgsIuo5czSSSl3Okr1K+UVWTzDGLznDg77MkLy7mydmk9\n" "vf51OB+ogQhozYKIh9uHvecOzY4EhSIuKhui4hNyQklD9juGoW7RVTSpGdYT1ymp\n" "dDYS30JBPwCZ7KjdMtXiU8ch2WgbzYBuI+JfjwOhfcsuNC9QPfbfAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key lx8o212IYw5Ly2KbH2ua1+fr4YvDq5nKd7LHMdPzTGo=\n" "ntor-onion-key-crosscert 1\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf54AU3MlHAEtdPdAyWJzRBnh4brXbCR9JFLjLM40hsBMoscAJ8cHMIc71+p\n" "Qa+lg5JiYb551mLgtPWLy12xdhog7SXiJl3NvnMgbMZXHDqkU2YZCidnVz+xqMdh\n" "mjQFK4AtRwg=\n" "-----END ED25519 CERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 4DSdPePrToNx3WQ+4GfFelB8IyHu5Z9vTbbLZ02vfYEsCF9QeaeHbYagY/yjdt+9e71jmfM+W5MfRQd8FJ1+Dg\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "cv1yL8HhQzQfjzkSosziu2kMecNUQGle4d103h6tVMoZS1ua1xiDpVKeuWPl9Z0+\n" "wpFwRkOmK0HpNeOXCNHJwfJaWBGQXunB3WQ6Oi1BLilwLtWQixGTYG0hZ6xYLTnX\n" "PdSQIbsohSgCzo9HLTAgTnkyBgklIO1PHJBJsaNOwfI=\n" "-----END SIGNATURE-----\n" "\n" ; static const char EX_RI_ED_MISSING_CROSSCERT2[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf54AXXgm0CUWQr+rxvgdIslqaFdBiwosT+9PaC8zOxYGIsZAQAgBAA6yeH7\n" "3AfGIGuDpVihVUUo0QwguWDPwk2dBJan7B0qgPWF5Y4YL5XDh2nMatskUrtUGCr1\n" "abLYlJPozmYd6QBSv6eyBfITS/oNOMyZpjDiIjcLQD08tVQ2Jho+WmN64wc=\n" "-----END ED25519 CERT-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMdyTK/VPZloLUaLsvj1+NOFs33/E9HmA0VgvZ1nNUrR+PxSR71QF7Tw\n" "DKz+/p2rJE+MPfQ/Na3dH0vH4CDZ+FH2m4A8SB9emF8aKxdc/7KCjQNDQCNlEQYn\n" "O9WvZJhbNPHUmX0z4OotI+Sk3qBzVHu0BGDsPYC9gwszIumDUILxAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAL8o6CJiLfW4vdRFvJ2nFt/H/ei0ov83rilOuwSmNORmL9lvnHY++HrD\n" "dmEEvBv74xqWJxGbJ6OQ3VOwRpf2X/cb4gAvsQDqDmNwpJsrPYRQVXp/KY/8z7bJ\n" "dM4CjcsuJHHmj3yc3iCzgqt/Xr6vR24X4bee12/bP7R8IETvWoiHAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key qpNEGrLMVn28Odonk/nDtZq1ljy0fBshwgoAm4X1yzQ=\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "i4RKGIeaUrO6nzfdtb6j+ijYJh1Vgc9bsHMpW9cVCOjoJKFW9xljgl9xp6LytviN\n" "ppKYCt9/JflbZUZjny34ESltPGrdquvHe8TtdQazjiZBWQok/kKnx2i+PioRF/xI\n" "P8D0512kbJjXSuuq9tGl94RKPM/ySGjkTJPevN4TaJE=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 pMAOpepn5Q9MxcV9+Yiftu50oBzBsItQcBV9qdZCIt3lvSFqFY9+wJjaShvW3N9ICHkunrC0h/w5VEfx4SQdDA\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "Du5fJYDzvEeGqKTJwgaQsJJgz39K/J4qEM2TZ3Mh0XuDM1ZWDtjyzP03PaPQqbJ1\n" "FsN5IStjOqN3O1IWuLzGaZGpGVuqcyYOxjs7REkGQn2LfqCjpzjaAdcsL0fI4ain\n" "o/in8GQ6S/qhsx8enKlN0tffTmWmH9bmmVz0+yYmBSo=\n" "-----END SIGNATURE-----\n" "\n" ; static const char EX_RI_ED_MISSING_CROSSCERT_SIGN[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf54AfoVFYuJnDNBWbjbTqfXACUtXWPipmqEYC++Ok/+4VoFAQAgBADH7JzI\n" "fjSMV158AMiftgNY+KyHYIECuL9SnV3CSO+8+I7+r9n+A3DQQmGLULo/uZnkbteJ\n" "+uy6uRG4kW0fnuBlKhseJQm9hjNGWzC8hmebp1M+bxwG41EGI7BZvnTrRgM=\n" "-----END ED25519 CERT-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALEqlijoFIDX1y1i5zfei8DuDIsFtSw56PGgnMRGcybwD1PRQCheCUZM\n" "erQgFCWjgLgvGJERBK/oILW1dFXp4MAR5RgnrPGTfWTinCj32obMLN1gIczpq6a9\n" "P9uv6Cz0ApSxpA/AuvjyAZwQKbUXuMvIY4aTprAKSqqVohk6E+E1AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMZbbBjGV7xPri4XNmejq4add93p+XsWlsfbM930bcC2JZiwg4g4cq6W\n" "idl8VDmCXeaWg5y3kb82Ch/Q9vPG0QYQbXxUA3JxQKKbcEK3QsEvqQh8Nb7krILK\n" "YnSGAnLG2Nc3PnKb7Wpb8M3rAysC5O99Gq1mSfm8ntj3zlIM7NSHAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key CYcpfIF4T9PJcfROfVJTUYl0zNd4Ia5u0L9eng/EBSo=\n" "ntor-onion-key-crosscert\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf54AcfsnMh+NIxXXnwAyJ+2A1j4rIdggQK4v1KdXcJI77z4AMRc2LxiKbyr\n" "fqRVynHuB031C4TN/HAlNPBjVoRvQRgzpiyyoyCqMDxLZdM8KtzdLLeqZJOXtWod\n" "UXbYG3L70go=\n" "-----END ED25519 CERT-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "BRwRAK2lWxWGS49k8gXFHLEQ/h4k8gOQxM0WgCaN4LjAOilLHFjsjXkmKgttVpHl\n" "f0V9ebSf+HgkpQnDSD8ittnr/0QaohUbD4lzslW4e/tQYEiM46soSoFft85J6U3G\n" "D3D63+GmaOfIaa4nv7CD0Rw/Jz0zTuyEuARsdJIr1IY=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 7XfV5r7FXbXPEvrxlecWmAJxat/6VT+/4tE5cHrQnvLM4zslysstWH6/AfIfcmUuDlQ0watmfg1MvVnjavcfDA\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "eigLL3S/oMGL2tJULt9bl3S0iY+YIxdKeGFCcKZci59zD786m+n+BpGM3yPpvrXr\n" "bGvl4IBqCa1I+TqPP1rM9lIEcUWaBT7Zo5uMcL1o+zZl1ZWPWVVKP5hC5ehDueu8\n" "/blzNhTEFAp23ftDK9PnFf+bXxqbgKkEoZsxnd3e9Ns=\n" "-----END SIGNATURE-----\n" "\n" ; static const char EX_RI_ED_BAD_SIG1[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf54AR8QC+SNBpPOTVY198IQBANNwZjy+SBqQNxfzjEmo204AQAgBABjz4FP\n" "zW/G+fu7YirvANvvqJeb7S1YYJnf6IrPaPsPRzDqJcO3/sTzFC5OSb9iJmzQAWnn\n" "ADPOl+nOJC58XJnJ7CUJdPtyoVdMvUiUT/Jtg4RuCN1iDaDYaTh2VavImAY=\n" "-----END ED25519 CERT-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAKuLC0kzCBTV6+WPZcAOQPKjqbjvMIyaehIQS1o90dYM+Tosrhtk3bw8\n" "QBLMaiWL3kfIWPZuWi2ai40dmqAXMrXH3yBgKRNZ6zZSbUUuJ1IknqmrQ2PKjC/p\n" "sIW2awC6Tq+zrZ7vntDb02zY857vP59j8eolTDg1Vvn6l2ieL+WhAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMnBQPOJBQLZ3NAa70n6lGZGvS3DYZFNOZ2QnHVeVvOSFIFsuvHtnUdX\n" "svDafznYAuRFRVqJS2xtKKGu0cmy6ulEbBF+4uAEMwQY7dGRPMgVF1Z33U0CSd08\n" "ChCJGPTE7tGGuoeSIGN3mfC4z2v9SP3McBdAiLHisPzaUjfRTcwRAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key W8fUvBpKBoePmqb70rdJUcRT0NhELDWH7/BSXJtkXS0=\n" "ntor-onion-key-crosscert 1\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf54AWPPgU/Nb8b5+7tiKu8A2++ol5vtLVhgmd/ois9o+w9HAAPwWqmL0HXa\n" "bYKrKPWQYnpQHQ3Ty0MmCgj3ABF940JURnV161RlN8CRAOJaeQ0Z8wBRLFC1NqLT\n" "+GVdtewGeQA=\n" "-----END ED25519 CERT-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "x0vT5Wv7Guc0/Vu2BqomWwenh8oda9+8K/7ILi5GQL/WC29Tj51i0EE7PVSnSMJ7\n" "33I/V+N5neauqWnbg7TxYaLsPfr6SpPTpBL1Xt0OiwT1//PvPYZ1gCcF3ig3KcfI\n" "mreQd5C5Vri6ukWkMtz/zNDaDpDanzaNXTdaUXmFHF4=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 4DSdPePrToNx3WQ+4GfFelB8IyHu5Z9vTbbLZ02vfYEsCF9QeaeHbYagY/yjdt+9e71jmfM+W5MfRQd8FJ1+Dg\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "Hci/Br1+NNymDZBmQy1QWMlCeLe8Z1vtZ2ZTj42jDhWg1OC/v72ptI072x4x5cmi\n" "X3EONy8wQUvTNowkfG6/V/B768C7FYJYBId1GAFZZymXnON9zUYnE3z1J20eu6l6\n" "QepmmdvRmteIHMQ7HLSrBuDuXZUDJD0yXm6g8bMT+Ek=\n" "-----END SIGNATURE-----\n" "\n" "\n" "\n" ; static const char EX_RI_ED_BAD_SIG2[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf54AW8fyx54c7vQQA/AmShAitFP7XI1CLdifEVPSrFKwYq6AQAgBAChqjVA\n" "/wKKJZ30BIQoXe5+QMiPR6meNxF1lBttQ2t5AhauZbH5XzRhZkdGo114wuyPNEM9\n" "PrBwp5akTtari9doVy6gs3McqdoIbRdWevpaGj5g5oOEOtA9b5UNWQSwUAs=\n" "-----END ED25519 CERT-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALp0Croi9zhpGxi9sUj54jr/flZdzxVVS+8VNldJG2c1soSx8kwlwotu\n" "7mGGudJDAzDHGo5F5CCPEfQov2OmDehpefYUz/AaMLly6PrLRJlcUcpLogGf1+KU\n" "1lLwE8kanXUkgvDhVQiFvNjy2Dxxuv3AHH4WdZZfbMbm8FJRGoHzAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMoI9vQT4g2sV2dViGOWOzxckk367T9sMjVwcYfJCmnixGxjWeKScQFB\n" "K9v1uK73cfZR8AxiUGK4/iOX/9en14mJOGF7fftAqypFLAt1TBvb07IgXljOBoHc\n" "Paw4oZoJQzEoazt0Oa181LyNnNIoaZpHVZd1+a1Gs1gKoM4xDBv1AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key KjyvXYkMcpke5ZsUYf2gZAUNeEoz8NAwYoQvvbcDGiw=\n" "ntor-onion-key-crosscert 0\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf54AaGqNUD/AoolnfQEhChd7n5AyI9HqZ43EXWUG21Da3kCAI6MRHm7GpCF\n" "/3zDGR/6jKe625uFZX9HpLt6FgAdGSJeMQ9W4Np9VkrFXAB3gvh7xxRzSgZ1rXgR\n" "lUomgi7N1gc=\n" "-----END ED25519 CERT-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "xJXvCCpP4ExBuT3OTsdn2HJB0HidupmQq5zBh8fx/ox6+047ZBOM7+hVxxWapcMg\n" "PMXbcLD4L/FCBpA/rjnFUE/9kztdq7FH/rOdi0nB6FZWhwDcsZuyfvbnDTxz5iHJ\n" "87gd5nXA5PE649SRCxW5LX0OtSiPFPazu4KyyBgnTIM=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 4DSdPePrToNx3WQ+4GfFelB8IyHu5Z9vTbbLZ02vfYEsCF9QeaeHbYagY/yjdt+9e71jmfM+W5MfRQd8FJ1+Dgxx\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "tk4kBNYqB8utOmX30HrV8YfnwBXYODIiL3M/juRS6nPn0uvbW7pjoZ3ck/ahgW+6\n" "FNQsgTJnEADCWS1r6v7PcvzQjtrOUUpNxGJxYw1r8yZkvmIxSQD6GMzuTxq7o1VA\n" "/wZYDLonLhCWRdPjxnrl12+z92NdyISJCHMLRVqs2QY=\n" "-----END SIGNATURE-----\n" "\n" "\n" ; static const char EX_RI_ED_BAD_SIG3[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf54AYYiKZrFWZ/Cj5mZbfK11MZHYbwchllsUl4qPqY9gfi6AQAgBAB4irxT\n" "86FYA0NbZssSTmfyG6Edcf0ge61OwB4QD35kHCrvuZk2HnmL+63Tj4QoFqIVnwVC\n" "3wRGJGcmS7y+vS64GUXbuyTgqgpl/KuoHo5Aqe6IxJlVWYtU6W0M6FV9tAM=\n" "-----END ED25519 CERT-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMUEvXTVTl5xkQ2MTEsB4sXQ3MQkz8sQrU63rlqglpi1yUv24fotjzvE\n" "oJpeKJBwwg5WBW/fW0bUDJF2cOHRHkj/R4Is3m+2PR1Kn3UbYfxNkFkTE11l099V\n" "H6xlsi0TJOJKlgrcbSuB7se2QctZVhwsdsJvFRptC9Qd+klAPb7tAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMooTeSUX7GPoyklSd1/6cF1u8e2LbjOLIpZrMon0Xt7c/aNwlrG9rVo\n" "TSokHs3AQ2H2XIceySVRRWR4AdX9KApO4CX0gGTuVUmq6hFJWMnHdAs2mKL0kt1w\n" "I+YWzjUqn4jIVa2nMbyHVQWzIysWwWiO4yduIjAYpBbWd9Biew4BAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key BN0I+pLmFkDQD5iRsdkcped4eZwGIuXnLiX2K0Zoi2I=\n" "ntor-onion-key-crosscert 1\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf54AXiKvFPzoVgDQ1tmyxJOZ/IboR1x/SB7rU7AHhAPfmQcAOrIvaG/xJqe\n" "adM6mai+FlV8Dbt6QrXTcNHJU1m+CUDthA9TPTAYz9D8W0mTEQ6KEAKGfQrNLy2r\n" "G1B+9wWSpA4=\n" "-----END ED25519 CERT-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "BpLBsl6Yo64QzczJn0TjdcXC1Jv9IhUG2m/Re3v0voCELOP+t5vkZXXLoVL23oKv\n" "JheSkWiuAIEPsatb4afXZ8wZxPcQjwy3zTOBM7p9CG5fA+KYpqKTxAi+dhVYlcDo\n" "M7S5nMV63FclkZIT70FFTHwWed1sAKwEO3/Ny24eppc=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 abcdvEzGFYMcJ/Ea7sbessW1qRJmnNNo2Khkkl0rEEgtLX0b4L4MMhK/ktS52Y6jX3PRQWK5PZc6gjV7Jaldh+g0Aw\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "Vyj7g3eQ3K4+tm49fJkAtsAYnYHcEiMnlucYCEPeKojzYStNfZwQO2SG5gsoBIif\n" "urgQZ/heaF4uiGFg64UFw08doXqQkd5SHO3B4astslITvmq0jyaqzSXhdB5uUzvp\n" "QCR0fqGLVS1acUiqGbRr4PiZ9G7OJkm230N3rGdet+0=\n" "-----END SIGNATURE-----\n" "\n" ; static const char EX_RI_ED_BAD_SIG4[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf55AaEnncX/t0cbLm1xrtlUpkXghaA8fVuV7g1VF3YNfCaIAQAgBAC7Ki3S\n" "zzH9Aezz5X4fbwHeF+BQEDfVasfyTxTI4fhRi7t3RxHzBJd60uEMXy2FchD8VO5d\n" "j4Dl7R4btrohPVSVBQZuemBQSW6g3ufNl0txpFWu0R7vBPTFH6oyXYfY9gQ=\n" "-----END ED25519 CERT-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALGKwzhOui2/jJPjU1ngW5IZRPcoDk7RAfGDO4xaef4VfAFHCV9CQO1c\n" "/wQ09CcRdggTvUcv9hJTGJhSObUUooCkxw4/35f/A6/NoW1Gi0JqF9EsQWHpuAfr\n" "n/ATlJQ9oGdTCNDq/BXSPWXhoI6UhUe0wiD4P4x4QwaYHcZh+lE5AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAOKrizVm2h5/jE/HqqLCBLWJZVVoGspasCtDDqHhSqsPzyjpqa52iMKi\n" "q/deJ92le3J2NJRGKxPmPQqWxwhIjnMS5kUMoW182iLpO/G9qyPZ0dh6jXB0NBLF\n" "ySfW6V2s3h4G4D2P+fqnsnzQnAX7YufkvgDau/qTWi2CqD0CjavDAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key A9h8jY9dPbhHTDbIc/NYWXmRP65wwSMrkY1MN8dV3BM=\n" "ntor-onion-key-crosscert 1\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf55AbsqLdLPMf0B7PPlfh9vAd4X4FAQN9Vqx/JPFMjh+FGLAN8xr/w3KFVi\n" "yXoP/az6hIbJh0HYCwH8D1rPoQLcdpe8XVwFSrHGarZesdslIwc9dZa/D1dx3OGO\n" "UhJOrdv51QY=\n" "-----END ED25519 CERT-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "bLmdO7ME5vq+c9y/Hd8EyBviMBTeo85sHZF/z6Pehc3Wg3i1BJ8DHSd1cK24Pg48\n" "4WUrGTfonewuzJBDd3MLkKe6epXmvUgvuQN5wQszq1+u9ap/mRf6b3nEG0MHxMlO\n" "FLx5MBsScuo+Q+pwXZa8vPuKTtEjqbVZivdKExJuIX0=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" " router-sig-ed25519 4DSdPePrToNx3WQ+4GfFelB8IyHu5Z9vTbbLZ02vfYEsCF9QeaeHbYagY/yjdt+9e71jmfM+W5MfRQd8FJ1+Dgxx\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "LqNGEa10zwSPeomBXTfgvBnnWAdWyiR7KYZq9T++jK4ctR6hUaWngH8qSteUrkMx\n" "gyWb6UMmlxdfOG0sdcU463HsqV7zObaKya8/WwQ9elj3FfsToswUCeOaLR/Rg7wC\n" "zcUjI5VsneQoXT2WVZbZBLsLB3+7QfezVHRMB377GAY=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_ED_BAD_CROSSCERT1[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf55AV1AfOvQWKlWsbzoBdJc5m72ShIJuA8eNV15basjhXYdAQAgBABy+KQK\n" "3oLDGtqL5kwRmjAsls/+C6SAoAALll7U7wNSH7en5RVBal4RUzCf57ea/KG0c9V8\n" "2DmZ3PdOt2aY/M2bWGmmH/tyyapOoV98dhDwFU7zcx/pMfRnJTDRSDwl8QE=\n" "-----END ED25519 CERT-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMP6xbqbj+x1mq5XImjeT0rUzqKZTgBd5zvK4Xcy9IifJuFC9+mMzrY4\n" "WhYbdClxKUkDMkit9MVhek+P/w5TSHKl6AuqGaO09ID+hZpoUSdoBUYktynxfGsx\n" "kIDu0XvgtAeSyJaVvoV1SKVChY0IBbzUqbHt4O2Q1BhzFCKEJTEzAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANwWlBh7e/eSLlhto5YUdj1iGYOq+yAmlosDItVfYrSPJuUfM2ocMBAn\n" "udbRbWiADoqsbKn/gwwHCC/f1HX2FkRXxxnOlJKLo+NEi8tGmOlcQXSQol1pCpvK\n" "sA9TxtYr+Ft4LRpxNrexF+pIBxqzwetqQrZbKYr0CFJi8q1qlMynAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key cs1AP+xF5cXTLuKeOeItdoDAzfALTJkwk9lB4mtC4QI=\n" "ntor-onion-key-crosscert 3\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf55AXL4pAregsMa2ovmTBGaMCyWz/4LpICgAAuWXtTvA1IfAKo6ANUq+hi+\n" "xb3J4aYafnszlj87oi/DR+SDf29wzwNw8gmaqGzJ5GbfISfABuTUCzlilZyVnLxi\n" "BHcCH6PWiAQ=\n" "-----END ED25519 CERT-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "qC9Kph/kGtONR2DxZDoIFFgnDFC+/7H07EgCiYQdIFIROc+gGK9qBOgeFEptrkXF\n" "XdE35xxox5xSASQvp7hjFwxUtJRGOtf2O98regqeeaz6O9VPXHkLf51uqX3bVgq8\n" "KvFAsFFS66GxhtbrVjpyRgIwHAYvse1WVESfLuZZTn0=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 3uW8Q1aetIQLOsqSco128ZUaHlhqdYiBvrxV7x75BGNS5RzIMTEwYDNtEX1LNPFJ5N0YOV0HEEOLhrJUV9QCBA\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "WuD7S/saTYBxKvItITbHRi8n+e6g/oVbosicfbRbafYPzPp4Prb+RK03UTafzXrV\n" "QEQIzDNhfePcIMH8qX+qrogLMXFqiXx6TVQ0GqNvqirokk8ar3AgtRtewhChAuAj\n" "8pmQTj2JpZn/iB3PCE2l/93O9LHZfp44hc8QOWKs6BE=\n" "-----END SIGNATURE-----\n" "\n" "\n" "\n" ; static const char EX_RI_ED_BAD_CROSSCERT4[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf55AW5TTGF9jCMl7aALZzqypD9Bj8WYnAPIrKCoIJdgMbY0AQAgBAB7eCn8\n" "rukx7t/egZUdqU7+FYqsnO4wdmOkLZkp0+gpF3jjk6N1Q0037NNVNZBjONB0Nm2F\n" "CpB3nWSJliSSKr5tOYsuBPFy5VVGYeKPakpOoxanQ1UcqevMBAQy0zf9hwA=\n" "-----END ED25519 CERT-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBALeS5YbeDuKQ5iiuUvh3REoyJ47/YU9lslWmTrVBf9b66pMnYJv/awPu\n" "m2HredUAJ3VzwQ38VJA39w3fQXUhQDnQ0OPpKzeAmIiuG+6WdW/mBSK7uKcezC23\n" "LA1d6Afyl79LjZz/n+ENXqNMlJk4QPcPHuRnAvwBl3t8YVRPJmxhAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAPprokY7utWuO/0252dBB5MCxmVD/dROaIBDyFtpdH+YVv04rkOlDzYD\n" "W4mgHVBMxEm/cspTgQmJ4exRHJPpcSe1RYHt1ONZdLYr6D7OOWf0y1IUrVSzF6K4\n" "lqlmNuH1H4+TKGbkvixYc5GU/2ZmAy6gFEuphYnBbsN2Ywc38mnfAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key Cgo6xniGfEiuYoLSPUdE4Vb2D4zj2NQzC1lRjysRRXs=\n" "ntor-onion-key-crosscert 1\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf54AU3MlHAEtdPdAyWJzRBnh4brXbCR9JFLjLM40hsBMoscAJ8cHMIc71+p\n" "Qa+lg5JiYb551mLgtPWLy12xdhog7SXiJl3NvnMgbMZXHDqkU2YZCidnVz+xqMdh\n" "mjQFK4AtRwg=\n" "-----END ED25519 CERT-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "bi4M/AJLZF7/vSNmOj4uhrgKBQA/KfcZy5e58mhGL4owxd9vaWfl3aelvb9jf9zN\n" "Q7FMv8f9aXzeVIoXIpRJxSKIJgBtG2wnMumIc80pqBvTyGInharszb6njfm0bg1u\n" "PfJkbQYyf/dA5l5UwCrjFs06ImDmjFTAdsSWf6DfZ/k=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 4DSdPePrToNx3WQ+4GfFelB8IyHu5Z9vTbbLZ02vfYEsCF9QeaeHbYagY/yjdt+9e71jmfM+W5MfRQd8FJ1+Dgxx\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "io16v+e0pK3sbFzPGnkQrAjrRgIOJHrVZ1RXcxZ1+UNXagWM/MOLhQpkU/cw49Wd\n" "4rQeZD3JQh16330eXbxc97AyDgp0b30He846SI0MfW/DnmGI8ZNeYfLbMv2bmbs9\n" "QULzyIH8C+5mnMI1arcuiAua+Dpa34F79vgqPuvw5fU=\n" "-----END SIGNATURE-----\n" "\n" "\n" ; static const char EX_RI_ED_BAD_CROSSCERT3[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf55AVB+j+B2yPgGywvp7nvejyhMh9ejKmw7LCwufV83Zl9eAQAgBAConA3B\n" "jJ3X2tES40jd94rRUFS2/s/Yv7E4LEQ9z0+jz8horNivzK3O/t7IGxJggi+b41/9\n" "Uaqt+wqtVuKj0xJ9jwBlCXFt28G2P9s4ZyXYgGZqo7MlJlboybnOMvmoTQA=\n" "-----END ED25519 CERT-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAPWuEWckT4aYAVNrZzLA8xVwfXp0wzfXeTWBztLS8VzssN6w/+cwXdeY\n" "N1YNc2DiD3u8f+7kmuZIqL1EFQUwTvRwEzQXm2dqGM7qkm5ZGNMb5FKu+QwO2ImI\n" "FLNiO5zO/LqP3cf/2L8/DuvruLenUrhRtecGFaHmhDYl+2brHIiPAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMtHTfk0gDvp9+PtIG8Ks7rgCiJZ2aihSvr6WaKHYuIprgspFuga98cg\n" "D//J80CrgH5Dw68YnkG+gU40IxP7YzhQ4glFlJGu3s2y7Qazcv5ww1XtHur+GDoA\n" "cY0zCLhltNQFxIsoVUepY97XA6Y2ejYJjyqNXQcAmoPNoVhnTdkhAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key ibZf57LptdOK3WpVFXkYMatEEqPhuVWxsnkwF6638V4=\n" "ntor-onion-key-crosscert 0\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf55AaicDcGMndfa0RLjSN33itFQVLb+z9i/sTgsRD3PT6PPAEbkxCdI/bH/\n" "B06DAjRuoDiv1HKsGuW+UN1iGEiWu2ieFzf3m0Z7BL9p2u2zIbHYkP50b3T3sebD\n" "1AksemmMdA0=\n" "-----END ED25519 CERT-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "BpLBsl6Yo64QzczJn0TjdcXC1Jv9IhUG2m/Re3v0voCELOP+t5vkZXXLoVL23oKv\n" "JheSkWiuAIEPsatb4afXZ8wZxPcQjwy3zTOBM7p9CG5fA+KYpqKTxAi+dhVYlcDo\n" "M7S5nMV63FclkZIT70FFTHwWed1sAKwEO3/Ny24eppc=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 XS4zVi46Xl3xKhuozPCDlW0QRFD4qUhJmkefonQNsRlMVsrPkALnP2tfnfdfTc69hbNa22pOjJNf6Gm505EnAw\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "Q+R3OpO8VhfvFbXuE5qolhVbgosBHy2A5QS91TMzCbsxa8pBA6Li4QdPR37wvdLq\n" "KayfmmNCMKU5qiZMyXqJZm4fdpxiSi50Z0tYlXM3b2OVfza3+pSOEBl89fN6G4Qc\n" "pAmM14eEo1UzXrqZw76tMS2CwOYF5vR2xFGCYC0b5hM=\n" "-----END SIGNATURE-----\n" "\n" "\n" "\n" ; static const char EX_RI_ED_BAD_CROSSCERT5[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf55AaCfOaispi7dJhK0c8HXJHIwoBkMgRpmmHu+3Zce/soMAQAgBAB5bAIo\n" "5i4TSY/bV2KQAyziRwvgJm+nEiECClflPbP9Um+zOzOgxtDmNnR5UFQj+VWNG4uf\n" "5lnaryN+PfUXZMTcs8AARof3fFz9tVPINHDrsGvKt8gpzgZEHkVioAXOFwg=\n" "-----END ED25519 CERT-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAL3Fr/ovZ9SMGYrAM24taKBm/NpemZaXdD/JeBXFYm5Zs3szLwJC4Etm\n" "zjNL6tVy+I21O1g3cs16TkflcidsjPXNx//PHAn7bqWMekjrt3SQdkHW2gDPgT2c\n" "zYJ/hBR96JYG796jP3pkfJz6Iz5uT/ci3A/cdaVbzM1uZbMUgYGzAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMHB+1dWa8BBrKE94vTqfbkSEuysG5LyyZF/WrqHq/3W+ocDLz795k8O\n" "2Zvgr9im/Ib4hD7IyrtRexcuBdwujdG7cBALdCcWiUTGAMkl96HNETSX+lUVIpJ9\n" "pMsc9O7+yz+/0Cl2RpILZCdE/7I96qHpZl3tzlRKSu15WeIm5U77AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key GXi0a2VLcRHQMMYys85zu3IPqOn5ZTsOixYyQvTGnQs=\n" "ntor-onion-key-crosscert 1\n" "-----BEGIN BUTTERED CRUMPET-----\n" "AQoABf54AU3MlHAEtdPdAyWJzRBnh4brXbCR9JFLjLM40hsBMoscAJ8cHMIc71+p\n" "Qa+lg5JiYb551mLgtPWLy12xdhog7SXiJl3NvnMgbMZXHDqkU2YZCidnVz+xqMdh\n" "mjQFK4AtRwg=\n" "-----END BUTTERED CRUMPET-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "T9NHMBhuJo+TlfU3TztNgCc9fK1naNRwPOyoqr5R6lJvJ40jkHnIVOFuvuzvZ35O\n" "QgPbyFcMjv6leV5xcW+/I9tWaBUFXiRGI27qjCFth4Gxq2B6B2dIcQliLXSvW9b+\n" "CMTgDwVa4h2R2PMh18TRx1596ywE09YhCgBF3CwYsiM=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 sRpiP9kyW/DGOphp4V2VCtcKNA8i7zGuv2tnljNIPTB7r7KsTvdUk/Ha9ArRQEivO4nC2HHENtknDl3GtWIPCA\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "DtORw3+gO/yUUIp70xDaWSOgQZrJAAoZTNCB7q5WCoZOngeaCiC1Gtc+Fmdn7tER\n" "uPqQC5H/Kh3Mi82PCj0JxvNivnNTNY1AZVaIX5YoioXVOkWF0B2pqMvFuDSdm2oJ\n" "29PqSVcklquu19EjJRTopIHvYn3sFhQL4LarMsYY11c=\n" "-----END SIGNATURE-----\n" "\n" "\n" "\n" ; static const char EX_RI_ED_BAD_CROSSCERT6[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf55ARMMCtQ8pObC5bq02AUE9Lx2bqsZBBkeOsDZVaEq6JavAQAgBABtV0xF\n" "CsWXL/uFIBnoEsnXBeU1MvYRFrj1vR7QHdWXnxywXvBYUAC8lu/uyc8qqLp+aQSJ\n" "5JzpDYlg3hp1fl5k97iv5F9WrR6s554YpmgYy9agFaxZ4LmRgz7n0UJ8mwM=\n" "-----END ED25519 CERT-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAO5qd1TndKD2pEs1ZLWsHlvfO/E7cA0H7NKGLSioGpBf4P0rtkueX4ci\n" "kJNa/4Fn/QsLECqEF2lUjkIc8YL+HMS6qteKvN8+nn16DfvnIhPDNZWTJjLl1bOI\n" "sWSSiduhanoWQnhRtl3Rxg3opdNd9ApO0DLUNy4Qy18Ai6SgksfHAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAJkMYNpK7eJJyGwD/xG/iNg6gzzbIwrOSvmtoP7Rot42qtBiQ9A9kdsy\n" "sazwkWkM93U1+1OaAADPYxeHoyHnuia95Cnc5y2lFSH3I7gnGGSPKSTwXtdyvDWZ\n" "P1LbmQ4Bnh5leTCNZ/eFC4/GjNVzqHxjbb8a11dQhA8dOk8PrUq9AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key HdSQOqvLr4YnJE1XzzVIddgKgnjaHKJqnq0GqF4wXDg=\n" "ntor-onion-key-crosscert 0\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf55AW1XTEUKxZcv+4UgGegSydcF5TUy9hEWuPW9HtAd1ZefACVwif1deQry\n" "K5GeemRa32sGzujVDDe75WRiPKFT3l/EtjTq3oeVq2xwbVJklnG3ASejKTr3YcHt\n" "ov0jOl0jywc=\n" "-----END ED25519 CERT-----\n" "onion-key-crosscert\n" "-----BEGIN NAUGHTY MARMOSET-----\n" "BpLBsl6Yo64QzczJn0TjdcXC1Jv9IhUG2m/Re3v0voCELOP+t5vkZXXLoVL23oKv\n" "JheSkWiuAIEPsatb4afXZ8wZxPcQjwy3zTOBM7p9CG5fA+KYpqKTxAi+dhVYlcDo\n" "M7S5nMV63FclkZIT70FFTHwWed1sAKwEO3/Ny24eppc=\n" "-----END NAUGHTY MARMOSET-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 lNY8TRX/FZdH5eFbsBkFHuRi8bPDsE5P+v7zExyD/IXnKS/ffYlP8qw1XIPdEDOIzGQ14+kyPX0SotaAqHRtBA\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "BHamS+epF77iozo5cBt+tbs22m9GhwY55DRXpEWAtvn67jsMnmn7qCOLONigK1RT\n" "adZNezIydcCxXltgHTdKaZw4lcqv3s0KL8kI8frbBmm7PjXtWnrdXBYY+YK54MN/\n" "t4N3162o9hzzKSwye0gPjgzpQ1xtEIkzWhBcmE9Vw5s=\n" "-----END SIGNATURE-----\n" "\n" ; static const char EX_RI_ED_BAD_CROSSCERT7[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf55AfVmH2ReTyatl4VnS5YREtCM2dwikWuAPffq6M5bysZxAQAgBAAXoqE7\n" "taqwLDXLZrZukpF1eBkCwYQK9uzctHTuMdqOHChguvkfX7V4H3O76Ayqvz+Z1ut1\n" "KYRdgiArn3viRaBv3ZKT4Z75suMI3bjqGOSGLAKfOa0uLkOmKblHHhSUkwQ=\n" "-----END ED25519 CERT-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAOLNugzUezzzw+N1SuQWzILJYkUJyQDoVXSZjT0dzBplHCjlrv0WZCUP\n" "/pbonE7SlCChIovHcdiASaLj7MVaGgYDq3M1Vtgt5vhgGl10/+evBAD1QEt8AVfr\n" "5+PH/sbZvOWucAhNUhOlqFKAn4vdRY39VEEXC5/Jz5fsk1E/DBu5AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAKxzg1hsYMS+0zAIrgYxSGO0GbKRrL/VhdlMEGu7ACaoqlGnmGQS3B4B\n" "gLk8xDdx9N//8+YTx0hUIxP38w08lubPl1WXMq8s7wAiFd06Nklf65mHs0sXVtS1\n" "EG3f97PQqmBpEJOwYBATNcA9e6F62P8SXNkpSjOzNaE0h9wHNKk7AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key msdr3O4W4bm/xdmZLzj35363ZSFex8yQxLWsV3wRCAQ=\n" "ntor-onion-key-crosscert 1\n" "-----BEGIN ED25519 CERT-----\n" "VQoABx54AU3MlHAEtgPdAyWJzRBnh4brXbCR9JFLjLM40hsBMoscAJ8cHMIc71+p\n" "Qa+lg5JiYb551mLgtPWLy12xdhog7SXiJl3NvnMgbMZXHDqkU2YZCidnVz+xqMdh\n" "mjQFK4AtRwg=\n" "-----END ED25519 CERT-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "RJJRiU0vjVtRi3bVZru3aTvV5l56X/WOOp/ii316yPAS3aAMpOm1+piFVR5MNqcB\n" "ZGyrA2Kx0hawdL2buU47iZ12GOCi4f1Es4V4N0TQgJICsKX38DsRdct9c1qMcqpp\n" "1aENSRuaw0szTIr9OgR7/8stqR5c3iF1H5fOhmTi6xM=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 4DSdPePrToNx3WQ+4GfFelB8IyHu5Z9vTbbLZ02vfYEsCF9QeaeHbYagY/yjdt+9e71jmfM+W5MfRQd8FJ1+Dgxx\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "F3ZqvsyL6RRhPEnNFFIZY4WJM7LK082rseWzRkGNXjwoEwOWUK8enQ4Wjit+wozW\n" "4HVIY1F+vP7gm6IiOEAFgEpB4C8FGuyoFw2q0ONA2tqTcvBJDDnqbx08FO7v2Dij\n" "d3ucfc5gf7YNaoFCMMuyAzC56eyNk4U+6cSKy6wnJds=\n" "-----END SIGNATURE-----\n" ; static const char EX_RI_ED_MISPLACED1[] = "router fred 127.0.0.1 9001 0 9002\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAKT6OIN6TsDB+xcp1uLeE0K3aiHGqa7hdxMBGpvcD0UFSyzpVv1A/fJa\n" "tClDCwTpfTGbyK2L7AO75Ci0c7jf6Pq+V7L6R7o12g6WBTMrgsceC4YqXSKpXNhi\n" "oudJyPfVzBfKcJUSynv89FUQOyul/WRRqWTfv0xUsJ3yjuOESfCNAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf55AbBV9NVz0Hdl0Uiv87LiXaTAoeSXE+bheNG4Dju1GzQHAQAgBAD16h+T\n" "ygzSgPN4Qat5ITthvm+lvMwMVGbVNWMxNy9i33NGhgp8kqMp2iPAY+LhX8It2b+X\n" "8H9cBmYLO5G7AlMPj7GsuWdCdP/M/ldMvFfznlqeE3pCpRas6W48CFJ+9Ao=\n" "-----END ED25519 CERT-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANMO/MepK3uCkKTLRCwIWc/8URVza2gEmDx6mDTJIB/Mw8U8VRDuu4iJ\n" "v+LL3D8/HGLvT9a8OXbl5525Zszt8XueF3uePBF0Qp0fjGBL8GFqmrmFe6plurPJ\n" "TfrS/m3q+KhXAUowmghciVGDY0kMiDG9X/t/zKLMKWVDYRZk+fupAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key I8yDO62Flx5O/QsFvgb2ArIRqwJLWetHMeZdxngRl2A=\n" "ntor-onion-key-crosscert 1\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf55AfXqH5PKDNKA83hBq3khO2G+b6W8zAxUZtU1YzE3L2LfAGC1uXxN2KwW\n" "w4PqRidM1UPZ5jVOHceZYNQcTzzzArfBpr9OraOO2up4TGte8GVqjJNxrZc1gfjn\n" "CwPW5WxpFg0=\n" "-----END ED25519 CERT-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "jLg3D3VO4i0sN8p2qtB6+5C3tai/K4M89mP7z2abQnUTbynOacPoNXIk4o64DjBJ\n" "kaR42yfA7yQZ8Rj8abwgz0Zz6zbd+JjE+s/EklrEEtOl+jZAl3i+92FaHROJojXq\n" "hw+ZEPOb9zgb1UQ7S1Fo+GoqA5bdGm/Wg1kSQielkNE=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 TRKvIl/wIIRD4Xcmd6HYmy7tD0KhVGgoStpWPtX0zmXGZ7+jugItrY0frDu9n82syiruuA45ZOs1Rfi4CbOSCg\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "NYpRfurB1YhFmDAdRc2Sd77S7By2V/0kgEHpJhtySb7efiQsyOA4ZBr1zEFPAXdp\n" "TviKzyS9kN2fnz3hORoqFul33BDZbiLMNLtt5tzp62TYtmIg9IZdjjczbJUgbVLt\n" "KCJL0vM7fdbXkZX61GIBbMYwzwIiHvVxG7F/AS5RbtE=\n" "-----END SIGNATURE-----\n" "\n" ; static const char EX_RI_ED_MISPLACED2[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf55AfJo9FIePrxeDNnWT6SWkoz0/L27018XjUNWEHfaR06MAQAgBAAMgolK\n" "nLg3ZnVv0skzHCfmX+ZR9Ttwj7FNXfhXCsyr860S79OW5LD0/m1GcS9JflWhP+FO\n" "ng5cRb+aqNc8Ul+/4sQudZRx8w4U3d5rOuMGCqhQXnktH9AFzQHFq0jpAAU=\n" "-----END ED25519 CERT-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAPeK/znKLRvSUmCIUiZOgfhiRFt7XGN//C2GFuey4xkKiIr9LWMuVe9m\n" "Wx39Ea2UGEtNGCEVvZdJMDVRl7heFTfJTN4L1YeyWx6iNRWlpAmgQOKII7slHwlq\n" "seEULOLOXc9AsU/v9ba9G54DFbHfe2k44ZOwEmaQZW5VF/I0YMMdAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAKFRzlrqPPxEW0nboAJ1qzKFb/vFtvRW0xNVb8RtbOY/NY5FV1hS8yfH\n" "igtugkrOBmWah7cmJhiON2j+TKeBxEoXwJMZeyV+HLbr7nY/mFhad4BQ3Frkl8d6\n" "1kQMhOJswMdwnnVHPNGUob4YAX0SpFA6MpBVj92zmMBeaihqUS9VAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key br8svioLcJCAQxoo3KvlT288p8rb4lQIZNLlplkIKkw=\n" "ntor-onion-key-crosscert 0\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf55AQyCiUqcuDdmdW/SyTMcJ+Zf5lH1O3CPsU1d+FcKzKvzAG9XqwmRm0uJ\n" "E49NoHcWr9IzdIwSGo+PJSkVpk95a5p2s065BetCWxEEBJQniajQf2hZ36zmV9rq\n" "a6puqkEAKAM=\n" "-----END ED25519 CERT-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "d6QGIVAJL5JjHUyV+aicLIdBYyxHwviKpPcp7uldRF8vfDGFpu0qFgJ5KT+3t36w\n" "QY1r75bvUMG/ZzGKDg95dcK0X2AK6GFlcrYyCoQEVOsuPc1QEUeK9P2s7viNQE4V\n" "tRwG/CvJhPfcnxErzVGfXIeYRL1r/hPNFDZSeSxPPM0=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "router-sig-ed25519 ts9pFk8PnDWtXgQad09XC/ZCbruSx1U1pNOMWF9fyoNG0CodxdDH9Vglg+BOS7Nd9fmsINfPWKCVdVuSSM7zCA\n" "reject *:*\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "YMl6mpQm7UCsPQhZKMm0aZ7fzGevWzRbQO+de20HTn7fVqMWQf2hBDJe9QTN/uDK\n" "/VKYT8SnIBexbrSMy1N5q8kNFKxxUtwA9GRtz620Vvc4m+lz/tnT9qucIKCDL5iJ\n" "eRpnls0JoAMIHKl99zdUioYubmOZuqUaRAdT8ulWy+Y=\n" "-----END SIGNATURE-----\n" "\n" ; static const char EX_RI_ED_BAD_CERT1[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf55AYf+rX8a5rzdTBGPvLdQIP8XcElDDQnJIruGqfDTj+tjAP+3XOL2UTmn\n" "Hu39PbLZV+m9DIj/DvG38M0hP4MmHUjP/iZG5PaCX6/aMe+nQSNuTl0IDGpIo1l8\n" "dZToQTFSzAQ=\n" "-----END ED25519 CERT-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAM4o2DrTwn3wrvUMm41S/hFL5ZtRHGRDh26o8htn14AKMC65vpygKFY7\n" "fUQVClAiJthAs5fD/8sE5XDtQrLnFv5OegQx8kSPuwyS/+5pI1bdxRJvKMOUl2Tc\n" "fAUhzeNBmPvW3lMi9Fksw5sCSAKQ5VH/+DlYvBGZIO49pTnOAty1AgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAMzIsJeEWWjN3Lp6qrzaJGn8uhJPJyjy2Wt3sp7z7iD/yBWW6Q7Jku3e\n" "C5QfKmSmNi2pNjS0SqPjqZZNsbcxpq/bEOcZdysZG1lqi/QgxUevk57RWjh3EFsG\n" "TwK3ougKWB5Q6/3m32dNsnnnDqzVapgZo7Zd3V/aCo0BVtL5VXZbAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key W28nwT/5FJ818M78y/5sNOkxhQ7ENBhjVhGG2j6KvFY=\n" "ntor-onion-key-crosscert 0\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf55AYf+rX8a5rzdTBGPvLdQIP8XcElDDQnJIruGqfDTj+tjAP+3XOL2UTmn\n" "Hu39PbLZV+m9DIj/DvG38M0hP4MmHUjP/iZG5PaCX6/aMe+nQSNuTl0IDGpIo1l8\n" "dZToQTFSzAQ=\n" "-----END ED25519 CERT-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "FWnEjvFob0ObgqohMT7miwGsAuioCT7Urz6tyWaGWph/TP9hbFWj4MPK5mt998mn\n" "xA8zHSF5n/edu7wVX+rtnPrYPBmg+qN8+Pq6XMg64CwtWu+sqigsi6vtz/TfAIDL\n" "mypENmSY32sWPvy/CA8dAZ2ASh57EH9a+WcFModpXkM=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 88YqJdGJS4O6XiUCNrc9xbOHxujvcN/TkCoRuQQeKfZGHM+4IhI6AcXFlPIfDYq0SAavMhVmzsDDw0ROl7vyCQ\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "cU4WDO3w9ZfVRbNUgxOQMbwS2xWXvaL+cZmIV6AAjAZVWkLEpif4g6uYu+jJUZOS\n" "NUT7lNOMwTu4tE4b1YJpnD9T8iW0DlOXxlvRBMQYmKwhQuYk898BDGTSk+0AY0HJ\n" "vv8wRVewDajNhW7tFY907IdHvPXG0u83GANxkYrRyUg=\n" "-----END SIGNATURE-----\n" "\n" ; static const char EX_RI_ED_BAD_CERT2[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN WOBBLY RUTABAGA-----\n" "helo\n" "-----END WOBBLY RUTABAGA-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANZvqyqFeiekh8ApqIGK4ZtOqjaX87EzDestvAWwamVOXiPoUrzXgM3O\n" "l8uuTnMA4TfnjLyyA2TnaMzJylOI1OMHuW/D9B/liWDstSxWNNIlKgLQ/Dh9xBS7\n" "uQb2PYlI+iMkPKPyJQSTDdGHE7cdFPewUfhRtJU3F5ztm/3FLBFvAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBANZl8U/Z8KCPS7EBDzt8i9kNETXS7vnp9gnw3BQNXfjiDtDg9eO7ChxY\n" "NBwuOTXmRxfX3W9kvZ0op9Hno6hixIhHzDql+vZ+hN7yPanVVDglSUXcr31yBm5K\n" "kA+ZnRvH3oVQ97E4rRzpi09dtI13Pzu7JS5jRMtH+JF1kQBoNC0dAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key lUrEL+TVXpjjHQ2BIKk34vblyDmoyMro1a6/9hJ4VRc=\n" "ntor-onion-key-crosscert 0\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf55Abm5E7FBdd3F8N1xuz/vdv03zh2lABrmGjzPQ3AFJtntALNeQTgjv0JL\n" "jON4+SPNi0B2Bva3yKaSsdxiHQ1rIwQqIUVkzXmmX4jmsvJK/9gERAdD7GafTKZQ\n" "BaZbNXBvmQw=\n" "-----END ED25519 CERT-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "OxkqFsw1vHUQ9iPYcKC/MHUBtbLPK6JY2i81ccAai2eW118UXcTbeCRccrXyqSkl\n" "RLcooZyli1D6wg9x7O8+2+HXIbUa6WcTOD1Qi7Z9wKZfk4sDUy7QHKENMRfAXwX3\n" "U/gqd4BflMPp4+XrYfPzz+6yQPWp0t9wXbFv5hZ9F3k=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 fW6Bt4R3xVk5KMDyOcYg8n5ANP0OrQq2PQFK2cW0lTAdi+eX+oT/BeWnkrn0uSWOC/t4omCmH4Rdl8M9xtpfBA\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "DHxiQXuLxZR0ylqwUGGePgN4KF4ItlOV/DuGmmszCO/Ut0p+5s4FP2v6Mm9M92Wj\n" "75rS9xF/Ts0Kf49dvgc+c5VTvhX5I5SwGQkRk0RNJtNoP0t+qXBHaFV8BlAeaWF6\n" "Lg3O+GUK325fQv9uDPCe37mFQV9jafAzsZUrO/ggb1U=\n" "-----END SIGNATURE-----\n" "\n" ; static const char EX_RI_ED_BAD_CERT3[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "BVVVnf55AW5TTGF9jCMl7aALZzqypD9Bj8WYnAPIrKCoIJdgMbY0AQAgBAB7eCn8\n" "rukx7t/egZUdqU7+FYqsnO4wdmOkLZkp0+gpF3jjk6N1Q0037NNVNZBjONB0Nm2F\n" "CpB3nWSJliSSKr5tOYsuBPFy5VVGYeKPakpOoxanQ1UcqevMBAQy0zf9hwA=\n" "-----END ED25519 CERT-----\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAPgeQNbKwpnTU+qW/2djh66hptS9rcy1B4vdyWkDTdREao2ECuCv691Y\n" "oIw3MpTWvpC1qHIKorunusR0FKgwXw3xQTikXbDq/1ptsekzoIA1R/hltQV3UuGH\n" "zdzHuQXAMX7Fdll2gyya03c3Yq5s+xSDvGdkEeaIoctKjwxp4SdNAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAOzWuH4cPW9rIrfi8MrruMUg4IUVHz4BxfY4/szMIUvzeEAdHn4FYkWy\n" "Vt7MDtUELZsmZeFNmkn72kLxnrdZ5XhxZBriq1Fzq11cSWRBF+SyE1MdcouY4GyG\n" "drw6T8xb8ty19q0eO6C/gw27iqXPAp1clvkroLg6Nv9lGZvsedVDAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key /vYZ+9yLqG7yUnutoI57s96JBl36GTz0IDWE244rbzE=\n" "ntor-onion-key-crosscert 0\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf55AZ4zVBWP/fIYEgWmyj0WpO6CkXRJjtrWXtiT02k3IddiAMpYgMemGIpN\n" "xj7TQRULsHHYvo4fLcKrSgndQbUUhfLTUuVhIzbnE2TBLMVOEkpxKU6mTuvTT/3h\n" "MJugrwTWVg4=\n" "-----END ED25519 CERT-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "c/Vqu3wtsTsYMdnhTS9Tn1Pq6jDmH4uRD5WmbaCKKrkin2DjuYSMVpypndkdlZDE\n" "He7uF7SUO3QG/UcRIXYOsg9MSLUmvn2kIwef8ykyqlRh95Csjo5DyattUhL2w4QF\n" "tJkJBQAnXWaAVW1O8XimGCAvJ84cxbmZEcpN6WKjrXI=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 Ue7bkPpOoc8ca7cyQj/Vq3BP5X4vwLA5QmpLGw/WfRNVRPojJRxU3RVqWMi3JbsJFRTe6pH6ZHyXER33G5aAAA\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "ifKUtbxmqHVs8A0oT5n7Te0c6D/XqWQTc0RxX9OKGspzh6wNX26h0Xa2vpK1Q9Zu\n" "sj61I7vbHuZN6rxiWs9IzJgb//XaNJasX1pd9tbGSXW+yYzc9G9kaa7vp3HcnhIP\n" "XVWzzS8WmOiVNGcF65j6f7yGloTgN7cHMptgJG7pWes=\n" "-----END SIGNATURE-----\n" "\n" ; static const char EX_RI_BAD_EI_DIGEST2[] = "router fred 127.0.0.1 9001 0 9002\n" "identity-ed25519\n" "-----BEGIN ED25519 CERT-----\n" "AQQABf55ATrK8IVBWLO2yXKCqXLXJOTu89W2b+hREPO+tCrxjVqWAQAgBACG/vVx\n" "NK8wKVZvf34d75ZObSR0ge1N2RrAIKNslNXBq/tcllIrNE4S0ZNcMpA+hxXoVFeo\n" "jbxifYX7nTs5N3GrGPmkiuo82v2X6ZwoIXJGFnvWMxCjsYsUVDDxoT6h/w8=\n" "-----END ED25519 CERT-----\n" "extra-info-digest E5FAC29E766D63F96AD175069640E803F2723765 99oo\n" "signing-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAK9wHSdRalxkuAybrSCA3dlEC1ZGc7oHOzXRGLg+z6batuiCdQtus1Rk\n" "LP821eZJtEMAE56aewCIHDcTiCxVa6DMqmxRjm5pfW4G5H5QCPYT6Fu0RoYck3Ef\n" "vkgits5/fNYGPPVC7k8AdGax5dKj5oFVGq+JWolYFRv6tyR9AThvAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "onion-key\n" "-----BEGIN RSA PUBLIC KEY-----\n" "MIGJAoGBAKxjxTQ/T/MHpFbk7/zwA7l5b3IW3yVcyVe6eIGFoYun8FI0fbYRmR4M\n" "G5Asu07gP9Bbgt3AFPuEqrjg4u+lIkgqTcCgKWJbAgm7fslwaDTXQ36A7I1M95PD\n" "GJ10Dk5v4dVbrqwoF7MSrQPFtMO91RP11nGPSvDqXZJ4XpwqwdxpAgMBAAE=\n" "-----END RSA PUBLIC KEY-----\n" "ntor-onion-key LuVmHxpj4F5mPXGNi4MtxbIbLMav6frJRBsRgAvpdzo=\n" "ntor-onion-key-crosscert 0\n" "-----BEGIN ED25519 CERT-----\n" "AQoABf55AYb+9XE0rzApVm9/fh3vlk5tJHSB7U3ZGsAgo2yU1cGrAKBcSzwi4lY/\n" "salCELOLdeZzOjDNnBd6cKp2WJg7Yz5zFlbVbyNk0iwfGmucHk8vQZe5BS0Oq/Pz\n" "B1u/BcJv8gk=\n" "-----END ED25519 CERT-----\n" "onion-key-crosscert\n" "-----BEGIN CROSSCERT-----\n" "QsAQVdDVHtasDbhrZG4ZxImdTTMY7fz3vouAiGyZx6/jCCB5v0gHwTn4xo6pgLEW\n" "LQfMhQZIr76Ky67c0hAN2hihuDlfvhfVe9c2c5UOH1BOhq3llE3Hc3xGyEy3rw7r\n" "5y38YGi759CvsP2/L8JfXMuBg89OcgJYFa27Q6e6MdQ=\n" "-----END CROSSCERT-----\n" "published 2014-10-05 12:00:00\n" "bandwidth 1000 1000 1000\n" "reject *:*\n" "router-sig-ed25519 5zoQ0dufeeOJ/tE/BgcWgM8JpfW1ELSXLz4dI+K8YRH/gUtaPmYJgU2QfeUHD0oy1iwv4Qvl8Ferga7aBk1+DA\n" "router-signature\n" "-----BEGIN SIGNATURE-----\n" "D6KRMwkb6JmVEnpZ825SD3LMB84UmVy0i94xk44OwhoWNKLXhaSTWJgf6AqnPG5o\n" "QrCypSb44bYLn+VaDN5LVUl36jeZqCT4xd+4ZwIRdPOUj7vcVmyUDg3lXcAIk97Q\n" "E5PrQY1mQuLSIjjKInAR2NRBumNJtRw31Y/DTB7tODU=\n" "-----END SIGNATURE-----\n" "\n" ; tor-0.2.7.6/src/test/test_routerset.c0000644000175000017500000013155012631612325014424 00000000000000#define ROUTERSET_PRIVATE #include "or.h" #include "geoip.h" #include "routerset.h" #include "routerparse.h" #include "policies.h" #include "nodelist.h" #include "test.h" #define NS_MODULE routerset #define NS_SUBMODULE routerset_new /* * Functional (blackbox) test to determine that each member of the routerset * is non-NULL */ static void NS(test_main)(void *arg) { routerset_t *rs; (void)arg; rs = routerset_new(); tt_ptr_op(rs, OP_NE, NULL); tt_ptr_op(rs->list, OP_NE, NULL); tt_ptr_op(rs->names, OP_NE, NULL); tt_ptr_op(rs->digests, OP_NE, NULL); tt_ptr_op(rs->policies, OP_NE, NULL); tt_ptr_op(rs->country_names, OP_NE, NULL); done: routerset_free(rs); } #undef NS_SUBMODULE #define NS_SUBMODULE routerset_get_countryname /* * Functional test to strip the braces from a "{xx}" country code string. */ static void NS(test_main)(void *arg) { const char *input; char *name; (void)arg; /* strlen(c) < 4 */ input = "xxx"; name = routerset_get_countryname(input); tt_ptr_op(name, OP_EQ, NULL); tor_free(name); /* c[0] != '{' */ input = "xxx}"; name = routerset_get_countryname(input); tt_ptr_op(name, OP_EQ, NULL); tor_free(name); /* c[3] != '}' */ input = "{xxx"; name = routerset_get_countryname(input); tt_ptr_op(name, OP_EQ, NULL); tor_free(name); /* tor_strlower */ input = "{XX}"; name = routerset_get_countryname(input); tt_str_op(name, OP_EQ, "xx"); tor_free(name); input = "{xx}"; name = routerset_get_countryname(input); tt_str_op(name, OP_EQ, "xx"); done: tor_free(name); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_refresh_counties, geoip_not_loaded) /* * Structural (whitebox) test for routerset_refresh_counties, when the GeoIP DB * is not loaded. */ NS_DECL(int, geoip_is_loaded, (sa_family_t family)); NS_DECL(int, geoip_get_n_countries, (void)); static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); (void)arg; NS_MOCK(geoip_is_loaded); NS_MOCK(geoip_get_n_countries); routerset_refresh_countries(set); tt_ptr_op(set->countries, OP_EQ, NULL); tt_int_op(set->n_countries, OP_EQ, 0); tt_int_op(CALLED(geoip_is_loaded), OP_EQ, 1); tt_int_op(CALLED(geoip_get_n_countries), OP_EQ, 0); done: NS_UNMOCK(geoip_is_loaded); NS_UNMOCK(geoip_get_n_countries); routerset_free(set); } static int NS(geoip_is_loaded)(sa_family_t family) { (void)family; CALLED(geoip_is_loaded)++; return 0; } static int NS(geoip_get_n_countries)(void) { CALLED(geoip_get_n_countries)++; return 0; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_refresh_counties, no_countries) /* * Structural test for routerset_refresh_counties, when there are no countries. */ NS_DECL(int, geoip_is_loaded, (sa_family_t family)); NS_DECL(int, geoip_get_n_countries, (void)); NS_DECL(country_t, geoip_get_country, (const char *country)); static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); (void)arg; NS_MOCK(geoip_is_loaded); NS_MOCK(geoip_get_n_countries); NS_MOCK(geoip_get_country); routerset_refresh_countries(set); tt_ptr_op(set->countries, OP_NE, NULL); tt_int_op(set->n_countries, OP_EQ, 1); tt_int_op((unsigned int)(*set->countries), OP_EQ, 0); tt_int_op(CALLED(geoip_is_loaded), OP_EQ, 1); tt_int_op(CALLED(geoip_get_n_countries), OP_EQ, 1); tt_int_op(CALLED(geoip_get_country), OP_EQ, 0); done: NS_UNMOCK(geoip_is_loaded); NS_UNMOCK(geoip_get_n_countries); NS_UNMOCK(geoip_get_country); routerset_free(set); } static int NS(geoip_is_loaded)(sa_family_t family) { (void)family; CALLED(geoip_is_loaded)++; return 1; } static int NS(geoip_get_n_countries)(void) { CALLED(geoip_get_n_countries)++; return 1; } static country_t NS(geoip_get_country)(const char *countrycode) { (void)countrycode; CALLED(geoip_get_country)++; return 1; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_refresh_counties, one_valid_country) /* * Structural test for routerset_refresh_counties, with one valid country. */ NS_DECL(int, geoip_is_loaded, (sa_family_t family)); NS_DECL(int, geoip_get_n_countries, (void)); NS_DECL(country_t, geoip_get_country, (const char *country)); static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); (void)arg; NS_MOCK(geoip_is_loaded); NS_MOCK(geoip_get_n_countries); NS_MOCK(geoip_get_country); smartlist_add(set->country_names, tor_strndup("foo", 3)); routerset_refresh_countries(set); tt_ptr_op(set->countries, OP_NE, NULL); tt_int_op(set->n_countries, OP_EQ, 2); tt_int_op(CALLED(geoip_is_loaded), OP_EQ, 1); tt_int_op(CALLED(geoip_get_n_countries), OP_EQ, 1); tt_int_op(CALLED(geoip_get_country), OP_EQ, 1); tt_int_op((unsigned int)(*set->countries), OP_NE, 0); done: NS_UNMOCK(geoip_is_loaded); NS_UNMOCK(geoip_get_n_countries); NS_UNMOCK(geoip_get_country); routerset_free(set); } static int NS(geoip_is_loaded)(sa_family_t family) { (void)family; CALLED(geoip_is_loaded)++; return 1; } static int NS(geoip_get_n_countries)(void) { CALLED(geoip_get_n_countries)++; return 2; } static country_t NS(geoip_get_country)(const char *countrycode) { (void)countrycode; CALLED(geoip_get_country)++; return 1; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_refresh_counties, one_invalid_country) /* * Structural test for routerset_refresh_counties, with one invalid * country code.. */ NS_DECL(int, geoip_is_loaded, (sa_family_t family)); NS_DECL(int, geoip_get_n_countries, (void)); NS_DECL(country_t, geoip_get_country, (const char *country)); static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); (void)arg; NS_MOCK(geoip_is_loaded); NS_MOCK(geoip_get_n_countries); NS_MOCK(geoip_get_country); smartlist_add(set->country_names, tor_strndup("foo", 3)); routerset_refresh_countries(set); tt_ptr_op(set->countries, OP_NE, NULL); tt_int_op(set->n_countries, OP_EQ, 2); tt_int_op(CALLED(geoip_is_loaded), OP_EQ, 1); tt_int_op(CALLED(geoip_get_n_countries), OP_EQ, 1); tt_int_op(CALLED(geoip_get_country), OP_EQ, 1); tt_int_op((unsigned int)(*set->countries), OP_EQ, 0); done: NS_UNMOCK(geoip_is_loaded); NS_UNMOCK(geoip_get_n_countries); NS_UNMOCK(geoip_get_country); routerset_free(set); } static int NS(geoip_is_loaded)(sa_family_t family) { (void)family; CALLED(geoip_is_loaded)++; return 1; } static int NS(geoip_get_n_countries)(void) { CALLED(geoip_get_n_countries)++; return 2; } static country_t NS(geoip_get_country)(const char *countrycode) { (void)countrycode; CALLED(geoip_get_country)++; return -1; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_parse, malformed) /* * Functional test, with a malformed string to parse. */ static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); const char *s = "_"; int r; (void)arg; r = routerset_parse(set, s, ""); tt_int_op(r, OP_EQ, -1); done: routerset_free(set); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_parse, valid_hexdigest) /* * Functional test for routerset_parse, that routerset_parse returns 0 * on a valid hexdigest entry. */ static void NS(test_main)(void *arg) { routerset_t *set; const char *s; int r; (void)arg; set = routerset_new(); s = "$0000000000000000000000000000000000000000"; r = routerset_parse(set, s, ""); tt_int_op(r, OP_EQ, 0); tt_int_op(digestmap_isempty(set->digests), OP_NE, 1); done: routerset_free(set); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_parse, valid_nickname) /* * Functional test for routerset_parse, when given a valid nickname as input. */ static void NS(test_main)(void *arg) { routerset_t *set; const char *s; int r; (void)arg; set = routerset_new(); s = "fred"; r = routerset_parse(set, s, ""); tt_int_op(r, OP_EQ, 0); tt_int_op(strmap_isempty(set->names), OP_NE, 1); done: routerset_free(set); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_parse, get_countryname) /* * Functional test for routerset_parse, when given a valid countryname. */ static void NS(test_main)(void *arg) { routerset_t *set; const char *s; int r; (void)arg; set = routerset_new(); s = "{cc}"; r = routerset_parse(set, s, ""); tt_int_op(r, OP_EQ, 0); tt_int_op(smartlist_len(set->country_names), OP_NE, 0); done: routerset_free(set); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_parse, policy) /* * Structural test for routerset_parse, when given a valid policy. */ NS_DECL(addr_policy_t *, router_parse_addr_policy_item_from_string, (const char *s, int assume_action, int *malformed_list)); addr_policy_t *NS(mock_addr_policy); static void NS(test_main)(void *arg) { routerset_t *set; const char *s; int r; (void)arg; NS_MOCK(router_parse_addr_policy_item_from_string); NS(mock_addr_policy) = tor_malloc_zero(sizeof(addr_policy_t)); set = routerset_new(); s = "*"; r = routerset_parse(set, s, ""); tt_int_op(r, OP_EQ, 0); tt_int_op(smartlist_len(set->policies), OP_NE, 0); tt_int_op(CALLED(router_parse_addr_policy_item_from_string), OP_EQ, 1); done: routerset_free(set); } addr_policy_t * NS(router_parse_addr_policy_item_from_string)(const char *s, int assume_action, int *malformed_list) { (void)s; (void)assume_action; (void)malformed_list; CALLED(router_parse_addr_policy_item_from_string)++; return NS(mock_addr_policy); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_union, source_bad) /* * Structural test for routerset_union, when given a bad source argument. */ NS_DECL(smartlist_t *, smartlist_new, (void)); static void NS(test_main)(void *arg) { routerset_t *set, *bad_set; (void)arg; set = routerset_new(); bad_set = routerset_new(); smartlist_free(bad_set->list); bad_set->list = NULL; NS_MOCK(smartlist_new); routerset_union(set, NULL); tt_int_op(CALLED(smartlist_new), OP_EQ, 0); routerset_union(set, bad_set); tt_int_op(CALLED(smartlist_new), OP_EQ, 0); done: NS_UNMOCK(smartlist_new); routerset_free(set); /* Just recreate list, so we can simply use routerset_free. */ bad_set->list = smartlist_new(); routerset_free(bad_set); } static smartlist_t * NS(smartlist_new)(void) { CALLED(smartlist_new)++; return NULL; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_union, one) /* * Functional test for routerset_union. */ static void NS(test_main)(void *arg) { routerset_t *src = routerset_new(); routerset_t *tgt; (void)arg; tgt = routerset_new(); smartlist_add(src->list, tor_strdup("{xx}")); routerset_union(tgt, src); tt_int_op(smartlist_len(tgt->list), OP_NE, 0); done: routerset_free(src); routerset_free(tgt); } #undef NS_SUBMODULE #define NS_SUBMODULE routerset_is_list /* * Functional tests for routerset_is_list. */ static void NS(test_main)(void *arg) { routerset_t *set; addr_policy_t *policy; int is_list; (void)arg; /* len(set->country_names) == 0, len(set->policies) == 0 */ set = routerset_new(); is_list = routerset_is_list(set); routerset_free(set); set = NULL; tt_int_op(is_list, OP_NE, 0); /* len(set->country_names) != 0, len(set->policies) == 0 */ set = routerset_new(); smartlist_add(set->country_names, tor_strndup("foo", 3)); is_list = routerset_is_list(set); routerset_free(set); set = NULL; tt_int_op(is_list, OP_EQ, 0); /* len(set->country_names) == 0, len(set->policies) != 0 */ set = routerset_new(); policy = tor_malloc_zero(sizeof(addr_policy_t)); smartlist_add(set->policies, (void *)policy); is_list = routerset_is_list(set); routerset_free(set); set = NULL; tt_int_op(is_list, OP_EQ, 0); /* len(set->country_names) != 0, len(set->policies) != 0 */ set = routerset_new(); smartlist_add(set->country_names, tor_strndup("foo", 3)); policy = tor_malloc_zero(sizeof(addr_policy_t)); smartlist_add(set->policies, (void *)policy); is_list = routerset_is_list(set); routerset_free(set); set = NULL; tt_int_op(is_list, OP_EQ, 0); done: ; } #undef NS_SUBMODULE #define NS_SUBMODULE routerset_needs_geoip /* * Functional tests for routerset_needs_geoip. */ static void NS(test_main)(void *arg) { const routerset_t *set; int needs_geoip; (void)arg; set = NULL; needs_geoip = routerset_needs_geoip(set); tt_int_op(needs_geoip, OP_EQ, 0); set = routerset_new(); needs_geoip = routerset_needs_geoip(set); routerset_free((routerset_t *)set); tt_int_op(needs_geoip, OP_EQ, 0); set = NULL; set = routerset_new(); smartlist_add(set->country_names, tor_strndup("xx", 2)); needs_geoip = routerset_needs_geoip(set); routerset_free((routerset_t *)set); set = NULL; tt_int_op(needs_geoip, OP_NE, 0); done: ; } #undef NS_SUBMODULE #define NS_SUBMODULE routerset_is_empty /* * Functional tests for routerset_is_empty. */ static void NS(test_main)(void *arg) { routerset_t *set = NULL; int is_empty; (void)arg; is_empty = routerset_is_empty(set); tt_int_op(is_empty, OP_NE, 0); set = routerset_new(); is_empty = routerset_is_empty(set); routerset_free(set); set = NULL; tt_int_op(is_empty, OP_NE, 0); set = routerset_new(); smartlist_add(set->list, tor_strdup("{xx}")); is_empty = routerset_is_empty(set); routerset_free(set); set = NULL; tt_int_op(is_empty, OP_EQ, 0); done: ; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_contains, null_set_or_null_set_list) /* * Functional test for routerset_contains, when given a NULL set or the * set has a NULL list. */ static void NS(test_main)(void *arg) { routerset_t *set = NULL; int contains; (void)arg; contains = routerset_contains(set, NULL, 0, NULL, NULL, 0); tt_int_op(contains, OP_EQ, 0); set = tor_malloc_zero(sizeof(routerset_t)); set->list = NULL; contains = routerset_contains(set, NULL, 0, NULL, NULL, 0); tor_free(set); tt_int_op(contains, OP_EQ, 0); done: ; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_contains, set_and_null_nickname) /* * Functional test for routerset_contains, when given a valid routerset but a * NULL nickname. */ static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); char *nickname = NULL; int contains; (void)arg; contains = routerset_contains(set, NULL, 0, nickname, NULL, 0); routerset_free(set); tt_int_op(contains, OP_EQ, 0); done: ; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_contains, set_and_nickname) /* * Functional test for routerset_contains, when given a valid routerset * and the nickname is in the routerset. */ static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); const char *nickname; int contains; (void)arg; nickname = "Foo"; /* This tests the lowercase comparison as well. */ strmap_set_lc(set->names, nickname, (void *)1); contains = routerset_contains(set, NULL, 0, nickname, NULL, 0); routerset_free(set); tt_int_op(contains, OP_EQ, 4); done: ; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_contains, set_and_no_nickname) /* * Functional test for routerset_contains, when given a valid routerset * and the nickname is not in the routerset. */ static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); int contains; (void)arg; strmap_set_lc(set->names, "bar", (void *)1); contains = routerset_contains(set, NULL, 0, "foo", NULL, 0); routerset_free(set); tt_int_op(contains, OP_EQ, 0); done: ; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_contains, set_and_digest) /* * Functional test for routerset_contains, when given a valid routerset * and the digest is contained in the routerset. */ static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); int contains; uint8_t foo[20] = { 2, 3, 4 }; (void)arg; digestmap_set(set->digests, (const char*)foo, (void *)1); contains = routerset_contains(set, NULL, 0, NULL, (const char*)foo, 0); routerset_free(set); tt_int_op(contains, OP_EQ, 4); done: ; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_contains, set_and_no_digest) /* * Functional test for routerset_contains, when given a valid routerset * and the digest is not contained in the routerset. */ static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); int contains; uint8_t bar[20] = { 9, 10, 11, 55 }; uint8_t foo[20] = { 1, 2, 3, 4}; (void)arg; digestmap_set(set->digests, (const char*)bar, (void *)1); contains = routerset_contains(set, NULL, 0, NULL, (const char*)foo, 0); routerset_free(set); tt_int_op(contains, OP_EQ, 0); done: ; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_contains, set_and_null_digest) /* * Functional test for routerset_contains, when given a valid routerset * and the digest is NULL. */ static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); int contains; uint8_t bar[20] = { 9, 10, 11, 55 }; (void)arg; digestmap_set(set->digests, (const char*)bar, (void *)1); contains = routerset_contains(set, NULL, 0, NULL, NULL, 0); routerset_free(set); tt_int_op(contains, OP_EQ, 0); done: ; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_contains, set_and_addr) /* * Structural test for routerset_contains, when given a valid routerset * and the address is rejected by policy. */ NS_DECL(addr_policy_result_t, compare_tor_addr_to_addr_policy, (const tor_addr_t *addr, uint16_t port, const smartlist_t *policy)); static tor_addr_t MOCK_TOR_ADDR; #define MOCK_TOR_ADDR_PTR (&MOCK_TOR_ADDR) static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); tor_addr_t *addr = MOCK_TOR_ADDR_PTR; int contains; (void)arg; NS_MOCK(compare_tor_addr_to_addr_policy); contains = routerset_contains(set, addr, 0, NULL, NULL, 0); routerset_free(set); tt_int_op(CALLED(compare_tor_addr_to_addr_policy), OP_EQ, 1); tt_int_op(contains, OP_EQ, 3); done: ; } addr_policy_result_t NS(compare_tor_addr_to_addr_policy)(const tor_addr_t *addr, uint16_t port, const smartlist_t *policy) { (void)port; (void)policy; CALLED(compare_tor_addr_to_addr_policy)++; tt_ptr_op(addr, OP_EQ, MOCK_TOR_ADDR_PTR); return ADDR_POLICY_REJECTED; done: return 0; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_contains, set_and_no_addr) /* * Structural test for routerset_contains, when given a valid routerset * and the address is not rejected by policy. */ NS_DECL(addr_policy_result_t, compare_tor_addr_to_addr_policy, (const tor_addr_t *addr, uint16_t port, const smartlist_t *policy)); static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); tor_addr_t *addr = MOCK_TOR_ADDR_PTR; int contains; (void)arg; NS_MOCK(compare_tor_addr_to_addr_policy); contains = routerset_contains(set, addr, 0, NULL, NULL, 0); routerset_free(set); tt_int_op(CALLED(compare_tor_addr_to_addr_policy), OP_EQ, 1); tt_int_op(contains, OP_EQ, 0); done: ; } addr_policy_result_t NS(compare_tor_addr_to_addr_policy)(const tor_addr_t *addr, uint16_t port, const smartlist_t *policy) { (void)port; (void)policy; CALLED(compare_tor_addr_to_addr_policy)++; tt_ptr_op(addr, OP_EQ, MOCK_TOR_ADDR_PTR); return ADDR_POLICY_ACCEPTED; done: return 0; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_contains, set_and_null_addr) /* * Structural test for routerset_contains, when given a valid routerset * and the address is NULL. */ NS_DECL(addr_policy_result_t, compare_tor_addr_to_addr_policy, (const tor_addr_t *addr, uint16_t port, const smartlist_t *policy)); static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); int contains; (void)arg; NS_MOCK(compare_tor_addr_to_addr_policy); contains = routerset_contains(set, NULL, 0, NULL, NULL, 0); routerset_free(set); tt_int_op(contains, OP_EQ, 0); done: ; } addr_policy_result_t NS(compare_tor_addr_to_addr_policy)(const tor_addr_t *addr, uint16_t port, const smartlist_t *policy) { (void)port; (void)policy; CALLED(compare_tor_addr_to_addr_policy)++; tt_ptr_op(addr, OP_EQ, MOCK_TOR_ADDR_PTR); return ADDR_POLICY_ACCEPTED; done: return 0; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_contains, countries_no_geoip) /* * Structural test for routerset_contains, when there is no matching country * for the address. */ NS_DECL(addr_policy_result_t, compare_tor_addr_to_addr_policy, (const tor_addr_t *addr, uint16_t port, const smartlist_t *policy)); NS_DECL(int, geoip_get_country_by_addr, (const tor_addr_t *addr)); static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); int contains = 1; (void)arg; NS_MOCK(compare_tor_addr_to_addr_policy); NS_MOCK(geoip_get_country_by_addr); set->countries = bitarray_init_zero(1); bitarray_set(set->countries, 1); contains = routerset_contains(set, MOCK_TOR_ADDR_PTR, 0, NULL, NULL, -1); routerset_free(set); tt_int_op(contains, OP_EQ, 0); tt_int_op(CALLED(compare_tor_addr_to_addr_policy), OP_EQ, 1); tt_int_op(CALLED(geoip_get_country_by_addr), OP_EQ, 1); done: ; } addr_policy_result_t NS(compare_tor_addr_to_addr_policy)(const tor_addr_t *addr, uint16_t port, const smartlist_t *policy) { (void)port; (void)policy; CALLED(compare_tor_addr_to_addr_policy)++; tt_ptr_op(addr, OP_EQ, MOCK_TOR_ADDR_PTR); done: return ADDR_POLICY_ACCEPTED; } int NS(geoip_get_country_by_addr)(const tor_addr_t *addr) { CALLED(geoip_get_country_by_addr)++; tt_ptr_op(addr, OP_EQ, MOCK_TOR_ADDR_PTR); done: return -1; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_contains, countries_geoip) /* * Structural test for routerset_contains, when there a matching country * for the address. */ NS_DECL(addr_policy_result_t, compare_tor_addr_to_addr_policy, (const tor_addr_t *addr, uint16_t port, const smartlist_t *policy)); NS_DECL(int, geoip_get_country_by_addr, (const tor_addr_t *addr)); static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); int contains = 1; (void)arg; NS_MOCK(compare_tor_addr_to_addr_policy); NS_MOCK(geoip_get_country_by_addr); set->n_countries = 2; set->countries = bitarray_init_zero(1); bitarray_set(set->countries, 1); contains = routerset_contains(set, MOCK_TOR_ADDR_PTR, 0, NULL, NULL, -1); routerset_free(set); tt_int_op(contains, OP_EQ, 2); tt_int_op(CALLED(compare_tor_addr_to_addr_policy), OP_EQ, 1); tt_int_op(CALLED(geoip_get_country_by_addr), OP_EQ, 1); done: ; } addr_policy_result_t NS(compare_tor_addr_to_addr_policy)(const tor_addr_t *addr, uint16_t port, const smartlist_t *policy) { (void)port; (void)policy; CALLED(compare_tor_addr_to_addr_policy)++; tt_ptr_op(addr, OP_EQ, MOCK_TOR_ADDR_PTR); done: return ADDR_POLICY_ACCEPTED; } int NS(geoip_get_country_by_addr)(const tor_addr_t *addr) { CALLED(geoip_get_country_by_addr)++; tt_ptr_op(addr, OP_EQ, MOCK_TOR_ADDR_PTR); done: return 1; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_add_unknown_ccs, only_flag_and_no_ccs) /* * Functional test for routerset_add_unknown_ccs, where only_if_some_cc_set * is set and there are no country names. */ static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); routerset_t **setp = &set; int r; (void)arg; r = routerset_add_unknown_ccs(setp, 1); tt_int_op(r, OP_EQ, 0); done: routerset_free(set); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_add_unknown_ccs, creates_set) /* * Functional test for routerset_add_unknown_ccs, where the set argument * is created if passed in as NULL. */ /* The mock is only used to stop the test from asserting erroneously. */ NS_DECL(country_t, geoip_get_country, (const char *country)); static void NS(test_main)(void *arg) { routerset_t *set = NULL; routerset_t **setp = &set; int r; (void)arg; NS_MOCK(geoip_get_country); r = routerset_add_unknown_ccs(setp, 0); tt_ptr_op(*setp, OP_NE, NULL); tt_int_op(r, OP_EQ, 0); done: if (set != NULL) routerset_free(set); } country_t NS(geoip_get_country)(const char *country) { (void)country; CALLED(geoip_get_country)++; return -1; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_add_unknown_ccs, add_unknown) /* * Structural test for routerset_add_unknown_ccs, that the "{??}" * country code is added to the list. */ NS_DECL(country_t, geoip_get_country, (const char *country)); NS_DECL(int, geoip_is_loaded, (sa_family_t family)); static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); routerset_t **setp = &set; int r; (void)arg; NS_MOCK(geoip_get_country); NS_MOCK(geoip_is_loaded); r = routerset_add_unknown_ccs(setp, 0); tt_int_op(r, OP_EQ, 1); tt_int_op(smartlist_contains_string(set->country_names, "??"), OP_EQ, 1); tt_int_op(smartlist_contains_string(set->list, "{??}"), OP_EQ, 1); done: if (set != NULL) routerset_free(set); } country_t NS(geoip_get_country)(const char *country) { int arg_is_qq, arg_is_a1; CALLED(geoip_get_country)++; arg_is_qq = !strcmp(country, "??"); arg_is_a1 = !strcmp(country, "A1"); tt_int_op(arg_is_qq || arg_is_a1, OP_EQ, 1); if (arg_is_qq) return 1; done: return -1; } int NS(geoip_is_loaded)(sa_family_t family) { CALLED(geoip_is_loaded)++; tt_int_op(family, OP_EQ, AF_INET); done: return 0; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_add_unknown_ccs, add_a1) /* * Structural test for routerset_add_unknown_ccs, that the "{a1}" * country code is added to the list. */ NS_DECL(country_t, geoip_get_country, (const char *country)); NS_DECL(int, geoip_is_loaded, (sa_family_t family)); static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); routerset_t **setp = &set; int r; (void)arg; NS_MOCK(geoip_get_country); NS_MOCK(geoip_is_loaded); r = routerset_add_unknown_ccs(setp, 0); tt_int_op(r, OP_EQ, 1); tt_int_op(smartlist_contains_string(set->country_names, "a1"), OP_EQ, 1); tt_int_op(smartlist_contains_string(set->list, "{a1}"), OP_EQ, 1); done: if (set != NULL) routerset_free(set); } country_t NS(geoip_get_country)(const char *country) { int arg_is_qq, arg_is_a1; CALLED(geoip_get_country)++; arg_is_qq = !strcmp(country, "??"); arg_is_a1 = !strcmp(country, "A1"); tt_int_op(arg_is_qq || arg_is_a1, OP_EQ, 1); if (arg_is_a1) return 1; done: return -1; } int NS(geoip_is_loaded)(sa_family_t family) { CALLED(geoip_is_loaded)++; tt_int_op(family, OP_EQ, AF_INET); done: return 0; } #undef NS_SUBMODULE #define NS_SUBMODULE routerset_contains_extendinfo /* * Functional test for routerset_contains_extendinfo. */ static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); extend_info_t ei; int r; const char *nickname = "foo"; (void)arg; memset(&ei, 0, sizeof(ei)); strmap_set_lc(set->names, nickname, (void *)1); strncpy(ei.nickname, nickname, sizeof(ei.nickname) - 1); ei.nickname[sizeof(ei.nickname) - 1] = '\0'; r = routerset_contains_extendinfo(set, &ei); tt_int_op(r, OP_EQ, 4); done: routerset_free(set); } #undef NS_SUBMODULE #define NS_SUBMODULE routerset_contains_router /* * Functional test for routerset_contains_router. */ static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); routerinfo_t ri; country_t country = 1; int r; const char *nickname = "foo"; (void)arg; memset(&ri, 0, sizeof(ri)); strmap_set_lc(set->names, nickname, (void *)1); ri.nickname = (char *)nickname; r = routerset_contains_router(set, &ri, country); tt_int_op(r, OP_EQ, 4); done: routerset_free(set); } #undef NS_SUBMODULE #define NS_SUBMODULE routerset_contains_routerstatus /* * Functional test for routerset_contains_routerstatus. */ // XXX: This is a bit brief. It only populates and tests the nickname fields // ie., enough to make the containment check succeed. Perhaps it should do // a bit more or test a bit more. static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); routerstatus_t rs; country_t country = 1; int r; const char *nickname = "foo"; (void)arg; memset(&rs, 0, sizeof(rs)); strmap_set_lc(set->names, nickname, (void *)1); strncpy(rs.nickname, nickname, sizeof(rs.nickname) - 1); rs.nickname[sizeof(rs.nickname) - 1] = '\0'; r = routerset_contains_routerstatus(set, &rs, country); tt_int_op(r, OP_EQ, 4); done: routerset_free(set); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_contains_node, none) /* * Functional test for routerset_contains_node, when the node has no * routerset or routerinfo. */ node_t NS(mock_node); static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); int r; (void)arg; NS(mock_node).ri = NULL; NS(mock_node).rs = NULL; r = routerset_contains_node(set, &NS(mock_node)); tt_int_op(r, OP_EQ, 0); done: routerset_free(set); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_contains_node, routerstatus) /* * Functional test for routerset_contains_node, when the node has a * routerset and no routerinfo. */ node_t NS(mock_node); static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); int r; const char *nickname = "foo"; routerstatus_t rs; (void)arg; strmap_set_lc(set->names, nickname, (void *)1); strncpy(rs.nickname, nickname, sizeof(rs.nickname) - 1); rs.nickname[sizeof(rs.nickname) - 1] = '\0'; NS(mock_node).ri = NULL; NS(mock_node).rs = &rs; r = routerset_contains_node(set, &NS(mock_node)); tt_int_op(r, OP_EQ, 4); done: routerset_free(set); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_contains_node, routerinfo) /* * Functional test for routerset_contains_node, when the node has no * routerset and a routerinfo. */ static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); int r; const char *nickname = "foo"; routerinfo_t ri; node_t mock_node; (void)arg; strmap_set_lc(set->names, nickname, (void *)1); ri.nickname = (char *)nickname; mock_node.ri = &ri; mock_node.rs = NULL; r = routerset_contains_node(set, &mock_node); tt_int_op(r, OP_EQ, 4); done: routerset_free(set); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_get_all_nodes, no_routerset) /* * Functional test for routerset_get_all_nodes, when routerset is NULL or * the routerset list is NULL. */ static void NS(test_main)(void *arg) { smartlist_t *out = smartlist_new(); routerset_t *set = NULL; (void)arg; tt_int_op(smartlist_len(out), OP_EQ, 0); routerset_get_all_nodes(out, NULL, NULL, 0); tt_int_op(smartlist_len(out), OP_EQ, 0); set = routerset_new(); smartlist_free(set->list); routerset_get_all_nodes(out, NULL, NULL, 0); tt_int_op(smartlist_len(out), OP_EQ, 0); /* Just recreate list, so we can simply use routerset_free. */ set->list = smartlist_new(); done: routerset_free(set); smartlist_free(out); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_get_all_nodes, list_with_no_nodes) /* * Structural test for routerset_get_all_nodes, when the routerset list * is empty. */ NS_DECL(const node_t *, node_get_by_nickname, (const char *nickname, int warn_if_unused)); const char *NS(mock_nickname); static void NS(test_main)(void *arg) { smartlist_t *out = smartlist_new(); routerset_t *set = routerset_new(); int out_len; (void)arg; NS_MOCK(node_get_by_nickname); NS(mock_nickname) = "foo"; smartlist_add(set->list, tor_strdup(NS(mock_nickname))); routerset_get_all_nodes(out, set, NULL, 0); out_len = smartlist_len(out); smartlist_free(out); routerset_free(set); tt_int_op(out_len, OP_EQ, 0); tt_int_op(CALLED(node_get_by_nickname), OP_EQ, 1); done: ; } const node_t * NS(node_get_by_nickname)(const char *nickname, int warn_if_unused) { CALLED(node_get_by_nickname)++; tt_str_op(nickname, OP_EQ, NS(mock_nickname)); tt_int_op(warn_if_unused, OP_EQ, 1); done: return NULL; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_get_all_nodes, list_flag_not_running) /* * Structural test for routerset_get_all_nodes, with the running_only flag * is set but the nodes are not running. */ NS_DECL(const node_t *, node_get_by_nickname, (const char *nickname, int warn_if_unused)); const char *NS(mock_nickname); node_t NS(mock_node); static void NS(test_main)(void *arg) { smartlist_t *out = smartlist_new(); routerset_t *set = routerset_new(); int out_len; (void)arg; NS_MOCK(node_get_by_nickname); NS(mock_node).is_running = 0; NS(mock_nickname) = "foo"; smartlist_add(set->list, tor_strdup(NS(mock_nickname))); routerset_get_all_nodes(out, set, NULL, 1); out_len = smartlist_len(out); smartlist_free(out); routerset_free(set); tt_int_op(out_len, OP_EQ, 0); tt_int_op(CALLED(node_get_by_nickname), OP_EQ, 1); done: ; } const node_t * NS(node_get_by_nickname)(const char *nickname, int warn_if_unused) { CALLED(node_get_by_nickname)++; tt_str_op(nickname, OP_EQ, NS(mock_nickname)); tt_int_op(warn_if_unused, OP_EQ, 1); done: return &NS(mock_node); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_get_all_nodes, list) /* * Structural test for routerset_get_all_nodes. */ NS_DECL(const node_t *, node_get_by_nickname, (const char *nickname, int warn_if_unused)); char *NS(mock_nickname); node_t NS(mock_node); static void NS(test_main)(void *arg) { smartlist_t *out = smartlist_new(); routerset_t *set = routerset_new(); int out_len; node_t *ent; (void)arg; NS_MOCK(node_get_by_nickname); NS(mock_nickname) = tor_strdup("foo"); smartlist_add(set->list, NS(mock_nickname)); routerset_get_all_nodes(out, set, NULL, 0); out_len = smartlist_len(out); ent = (node_t *)smartlist_get(out, 0); smartlist_free(out); routerset_free(set); tt_int_op(out_len, OP_EQ, 1); tt_ptr_op(ent, OP_EQ, &NS(mock_node)); tt_int_op(CALLED(node_get_by_nickname), OP_EQ, 1); done: ; } const node_t * NS(node_get_by_nickname)(const char *nickname, int warn_if_unused) { CALLED(node_get_by_nickname)++; tt_str_op(nickname, OP_EQ, NS(mock_nickname)); tt_int_op(warn_if_unused, OP_EQ, 1); done: return &NS(mock_node); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_get_all_nodes, nodelist_with_no_nodes) /* * Structural test for routerset_get_all_nodes, when the nodelist has no nodes. */ NS_DECL(smartlist_t *, nodelist_get_list, (void)); smartlist_t *NS(mock_smartlist); static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); smartlist_t *out = smartlist_new(); int r; (void)arg; NS_MOCK(nodelist_get_list); smartlist_add(set->country_names, tor_strdup("{xx}")); NS(mock_smartlist) = smartlist_new(); routerset_get_all_nodes(out, set, NULL, 1); r = smartlist_len(out); routerset_free(set); smartlist_free(out); smartlist_free(NS(mock_smartlist)); tt_int_op(r, OP_EQ, 0); tt_int_op(CALLED(nodelist_get_list), OP_EQ, 1); done: ; } smartlist_t * NS(nodelist_get_list)(void) { CALLED(nodelist_get_list)++; return NS(mock_smartlist); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_get_all_nodes, nodelist_flag_not_running) /* * Structural test for routerset_get_all_nodes, with a non-list routerset * the running_only flag is set, but the nodes are not running. */ NS_DECL(smartlist_t *, nodelist_get_list, (void)); smartlist_t *NS(mock_smartlist); node_t NS(mock_node); static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); smartlist_t *out = smartlist_new(); int r; (void)arg; NS_MOCK(nodelist_get_list); smartlist_add(set->country_names, tor_strdup("{xx}")); NS(mock_smartlist) = smartlist_new(); NS(mock_node).is_running = 0; smartlist_add(NS(mock_smartlist), (void *)&NS(mock_node)); routerset_get_all_nodes(out, set, NULL, 1); r = smartlist_len(out); routerset_free(set); smartlist_free(out); smartlist_free(NS(mock_smartlist)); tt_int_op(r, OP_EQ, 0); tt_int_op(CALLED(nodelist_get_list), OP_EQ, 1); done: ; } smartlist_t * NS(nodelist_get_list)(void) { CALLED(nodelist_get_list)++; return NS(mock_smartlist); } #undef NS_SUBMODULE #define NS_SUBMODULE routerset_subtract_nodes /* * Functional test for routerset_subtract_nodes. */ static void NS(test_main)(void *arg) { routerset_t *set = routerset_new(); smartlist_t *list = smartlist_new(); const char *nickname = "foo"; routerinfo_t ri; node_t mock_node; (void)arg; strmap_set_lc(set->names, nickname, (void *)1); ri.nickname = (char *)nickname; mock_node.rs = NULL; mock_node.ri = &ri; smartlist_add(list, (void *)&mock_node); tt_int_op(smartlist_len(list), OP_NE, 0); routerset_subtract_nodes(list, set); tt_int_op(smartlist_len(list), OP_EQ, 0); done: routerset_free(set); smartlist_free(list); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_subtract_nodes, null_routerset) /* * Functional test for routerset_subtract_nodes, with a NULL routerset. */ static void NS(test_main)(void *arg) { routerset_t *set = NULL; smartlist_t *list = smartlist_new(); const char *nickname = "foo"; routerinfo_t ri; node_t mock_node; (void)arg; ri.nickname = (char *)nickname; mock_node.ri = &ri; smartlist_add(list, (void *)&mock_node); tt_int_op(smartlist_len(list), OP_NE, 0); routerset_subtract_nodes(list, set); tt_int_op(smartlist_len(list), OP_NE, 0); done: routerset_free(set); smartlist_free(list); } #undef NS_SUBMODULE #define NS_SUBMODULE routerset_to_string /* * Functional test for routerset_to_string. */ static void NS(test_main)(void *arg) { routerset_t *set = NULL; char *s = NULL; (void)arg; set = NULL; s = routerset_to_string(set); tt_str_op(s, OP_EQ, ""); tor_free(s); set = routerset_new(); s = routerset_to_string(set); tt_str_op(s, OP_EQ, ""); tor_free(s); routerset_free(set); set = NULL; set = routerset_new(); smartlist_add(set->list, tor_strndup("a", 1)); s = routerset_to_string(set); tt_str_op(s, OP_EQ, "a"); tor_free(s); routerset_free(set); set = NULL; set = routerset_new(); smartlist_add(set->list, tor_strndup("a", 1)); smartlist_add(set->list, tor_strndup("b", 1)); s = routerset_to_string(set); tt_str_op(s, OP_EQ, "a,b"); tor_free(s); routerset_free(set); set = NULL; done: tor_free(s); routerset_free((routerset_t *)set); } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_equal, empty_empty) /* * Functional test for routerset_equal, with both routersets empty. */ static void NS(test_main)(void *arg) { routerset_t *a = routerset_new(), *b = routerset_new(); int r; (void)arg; r = routerset_equal(a, b); routerset_free(a); routerset_free(b); tt_int_op(r, OP_EQ, 1); done: ; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_equal, empty_not_empty) /* * Functional test for routerset_equal, with one routersets empty. */ static void NS(test_main)(void *arg) { routerset_t *a = routerset_new(), *b = routerset_new(); int r; (void)arg; smartlist_add(b->list, tor_strdup("{xx}")); r = routerset_equal(a, b); routerset_free(a); routerset_free(b); tt_int_op(r, OP_EQ, 0); done: ; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_equal, differing_lengths) /* * Functional test for routerset_equal, with the routersets having * differing lengths. */ static void NS(test_main)(void *arg) { routerset_t *a = routerset_new(), *b = routerset_new(); int r; (void)arg; smartlist_add(a->list, tor_strdup("{aa}")); smartlist_add(b->list, tor_strdup("{b1}")); smartlist_add(b->list, tor_strdup("{b2}")); r = routerset_equal(a, b); routerset_free(a); routerset_free(b); tt_int_op(r, OP_EQ, 0); done: ; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_equal, unequal) /* * Functional test for routerset_equal, with the routersets being * different. */ static void NS(test_main)(void *arg) { routerset_t *a = routerset_new(), *b = routerset_new(); int r; (void)arg; smartlist_add(a->list, tor_strdup("foo")); smartlist_add(b->list, tor_strdup("bar")); r = routerset_equal(a, b); routerset_free(a); routerset_free(b); tt_int_op(r, OP_EQ, 0); done: ; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_equal, equal) /* * Functional test for routerset_equal, with the routersets being * equal. */ static void NS(test_main)(void *arg) { routerset_t *a = routerset_new(), *b = routerset_new(); int r; (void)arg; smartlist_add(a->list, tor_strdup("foo")); smartlist_add(b->list, tor_strdup("foo")); r = routerset_equal(a, b); routerset_free(a); routerset_free(b); tt_int_op(r, OP_EQ, 1); done: ; } #undef NS_SUBMODULE #define NS_SUBMODULE ASPECT(routerset_free, null_routerset) /* * Structural test for routerset_free, where the routerset is NULL. */ NS_DECL(void, smartlist_free, (smartlist_t *sl)); static void NS(test_main)(void *arg) { (void)arg; NS_MOCK(smartlist_free); routerset_free(NULL); tt_int_op(CALLED(smartlist_free), OP_EQ, 0); done: ; } void NS(smartlist_free)(smartlist_t *s) { (void)s; CALLED(smartlist_free)++; } #undef NS_SUBMODULE #define NS_SUBMODULE routerset_free /* * Structural test for routerset_free. */ NS_DECL(void, smartlist_free, (smartlist_t *sl)); NS_DECL(void, strmap_free,(strmap_t *map, void (*free_val)(void*))); NS_DECL(void, digestmap_free, (digestmap_t *map, void (*free_val)(void*))); static void NS(test_main)(void *arg) { routerset_t *routerset = routerset_new(); (void)arg; NS_MOCK(smartlist_free); NS_MOCK(strmap_free); NS_MOCK(digestmap_free); routerset_free(routerset); tt_int_op(CALLED(smartlist_free), OP_NE, 0); tt_int_op(CALLED(strmap_free), OP_NE, 0); tt_int_op(CALLED(digestmap_free), OP_NE, 0); done: ; } void NS(smartlist_free)(smartlist_t *s) { CALLED(smartlist_free)++; smartlist_free__real(s); } void NS(strmap_free)(strmap_t *map, void (*free_val)(void*)) { CALLED(strmap_free)++; strmap_free__real(map, free_val); } void NS(digestmap_free)(digestmap_t *map, void (*free_val)(void*)) { CALLED(digestmap_free)++; digestmap_free__real(map, free_val); } #undef NS_SUBMODULE struct testcase_t routerset_tests[] = { TEST_CASE(routerset_new), TEST_CASE(routerset_get_countryname), TEST_CASE(routerset_is_list), TEST_CASE(routerset_needs_geoip), TEST_CASE(routerset_is_empty), TEST_CASE_ASPECT(routerset_contains, null_set_or_null_set_list), TEST_CASE_ASPECT(routerset_contains, set_and_nickname), TEST_CASE_ASPECT(routerset_contains, set_and_null_nickname), TEST_CASE_ASPECT(routerset_contains, set_and_no_nickname), TEST_CASE_ASPECT(routerset_contains, set_and_digest), TEST_CASE_ASPECT(routerset_contains, set_and_no_digest), TEST_CASE_ASPECT(routerset_contains, set_and_null_digest), TEST_CASE_ASPECT(routerset_contains, set_and_addr), TEST_CASE_ASPECT(routerset_contains, set_and_no_addr), TEST_CASE_ASPECT(routerset_contains, set_and_null_addr), TEST_CASE_ASPECT(routerset_contains, countries_no_geoip), TEST_CASE_ASPECT(routerset_contains, countries_geoip), TEST_CASE_ASPECT(routerset_add_unknown_ccs, only_flag_and_no_ccs), TEST_CASE_ASPECT(routerset_add_unknown_ccs, creates_set), TEST_CASE_ASPECT(routerset_add_unknown_ccs, add_unknown), TEST_CASE_ASPECT(routerset_add_unknown_ccs, add_a1), TEST_CASE(routerset_contains_extendinfo), TEST_CASE(routerset_contains_router), TEST_CASE(routerset_contains_routerstatus), TEST_CASE_ASPECT(routerset_contains_node, none), TEST_CASE_ASPECT(routerset_contains_node, routerinfo), TEST_CASE_ASPECT(routerset_contains_node, routerstatus), TEST_CASE_ASPECT(routerset_get_all_nodes, no_routerset), TEST_CASE_ASPECT(routerset_get_all_nodes, list_with_no_nodes), TEST_CASE_ASPECT(routerset_get_all_nodes, list_flag_not_running), TEST_CASE_ASPECT(routerset_get_all_nodes, list), TEST_CASE_ASPECT(routerset_get_all_nodes, nodelist_with_no_nodes), TEST_CASE_ASPECT(routerset_get_all_nodes, nodelist_flag_not_running), TEST_CASE_ASPECT(routerset_refresh_counties, geoip_not_loaded), TEST_CASE_ASPECT(routerset_refresh_counties, no_countries), TEST_CASE_ASPECT(routerset_refresh_counties, one_valid_country), TEST_CASE_ASPECT(routerset_refresh_counties, one_invalid_country), TEST_CASE_ASPECT(routerset_union, source_bad), TEST_CASE_ASPECT(routerset_union, one), TEST_CASE_ASPECT(routerset_parse, malformed), TEST_CASE_ASPECT(routerset_parse, valid_hexdigest), TEST_CASE_ASPECT(routerset_parse, valid_nickname), TEST_CASE_ASPECT(routerset_parse, get_countryname), TEST_CASE_ASPECT(routerset_parse, policy), TEST_CASE(routerset_subtract_nodes), TEST_CASE_ASPECT(routerset_subtract_nodes, null_routerset), TEST_CASE(routerset_to_string), TEST_CASE_ASPECT(routerset_equal, empty_empty), TEST_CASE_ASPECT(routerset_equal, empty_not_empty), TEST_CASE_ASPECT(routerset_equal, differing_lengths), TEST_CASE_ASPECT(routerset_equal, unequal), TEST_CASE_ASPECT(routerset_equal, equal), TEST_CASE_ASPECT(routerset_free, null_routerset), TEST_CASE(routerset_free), END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_ntor.sh0000755000175000017500000000037612621363246013552 00000000000000#!/bin/sh # Validate Tor's ntor implementation. exitcode=0 "${PYTHON:-python}" "${abs_top_srcdir:-.}/src/test/ntor_ref.py" test-tor || exitcode=1 "${PYTHON:-python}" "${abs_top_srcdir:-.}/src/test/ntor_ref.py" self-test || exitcode=1 exit ${exitcode} tor-0.2.7.6/src/test/test_checkdir.c0000644000175000017500000001231712621363246014147 00000000000000/* Copyright (c) 2014-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #include "or.h" #ifdef _WIN32 #include #else #include #endif #include "config.h" #include "test.h" #include "util.h" #ifdef _WIN32 #define mkdir(a,b) mkdir(a) #define tt_int_op_nowin(a,op,b) do { (void)(a); (void)(b); } while (0) #define umask(mask) ((void)0) #else #define tt_int_op_nowin(a,op,b) tt_int_op((a),op,(b)) #endif /** Run unit tests for private dir permission enforcement logic. */ static void test_checkdir_perms(void *testdata) { (void)testdata; or_options_t *options = get_options_mutable(); const char *subdir = "test_checkdir"; char *testdir = NULL; cpd_check_t cpd_chkopts; cpd_check_t unix_create_opts; cpd_check_t unix_verify_optsmask; struct stat st; umask(022); /* setup data directory before tests. */ tor_free(options->DataDirectory); options->DataDirectory = tor_strdup(get_fname(subdir)); tt_int_op(mkdir(options->DataDirectory, 0750), OP_EQ, 0); /* test: create new dir, no flags. */ testdir = get_datadir_fname("checkdir_new_none"); cpd_chkopts = CPD_CREATE; unix_verify_optsmask = 0077; tt_int_op(0, OP_EQ, check_private_dir(testdir, cpd_chkopts, NULL)); tt_int_op(0, OP_EQ, stat(testdir, &st)); tt_int_op_nowin(0, OP_EQ, (st.st_mode & unix_verify_optsmask)); tor_free(testdir); /* test: create new dir, CPD_GROUP_OK option set. */ testdir = get_datadir_fname("checkdir_new_groupok"); cpd_chkopts = CPD_CREATE|CPD_GROUP_OK; unix_verify_optsmask = 0077; tt_int_op(0, OP_EQ, check_private_dir(testdir, cpd_chkopts, NULL)); tt_int_op(0, OP_EQ, stat(testdir, &st)); tt_int_op_nowin(0, OP_EQ, (st.st_mode & unix_verify_optsmask)); tor_free(testdir); /* test: should get an error on existing dir with wrong perms */ testdir = get_datadir_fname("checkdir_new_groupok_err"); tt_int_op(0, OP_EQ, mkdir(testdir, 027)); cpd_chkopts = CPD_CHECK_MODE_ONLY|CPD_CREATE|CPD_GROUP_OK; tt_int_op_nowin(-1, OP_EQ, check_private_dir(testdir, cpd_chkopts, NULL)); tor_free(testdir); /* test: create new dir, CPD_GROUP_READ option set. */ testdir = get_datadir_fname("checkdir_new_groupread"); cpd_chkopts = CPD_CREATE|CPD_GROUP_READ; unix_verify_optsmask = 0027; tt_int_op(0, OP_EQ, check_private_dir(testdir, cpd_chkopts, NULL)); tt_int_op(0, OP_EQ, stat(testdir, &st)); tt_int_op_nowin(0, OP_EQ, (st.st_mode & unix_verify_optsmask)); tor_free(testdir); /* test: check existing dir created with defaults, and verify with CPD_CREATE only. */ testdir = get_datadir_fname("checkdir_exists_none"); cpd_chkopts = CPD_CREATE; unix_create_opts = 0700; (void)unix_create_opts; unix_verify_optsmask = 0077; tt_int_op(0, OP_EQ, mkdir(testdir, unix_create_opts)); tt_int_op(0, OP_EQ, check_private_dir(testdir, cpd_chkopts, NULL)); tt_int_op(0, OP_EQ, stat(testdir, &st)); tt_int_op_nowin(0, OP_EQ, (st.st_mode & unix_verify_optsmask)); tor_free(testdir); /* test: check existing dir created with defaults, and verify with CPD_GROUP_OK option set. */ testdir = get_datadir_fname("checkdir_exists_groupok"); cpd_chkopts = CPD_CREATE; unix_verify_optsmask = 0077; tt_int_op(0, OP_EQ, check_private_dir(testdir, cpd_chkopts, NULL)); cpd_chkopts = CPD_GROUP_OK; tt_int_op(0, OP_EQ, check_private_dir(testdir, cpd_chkopts, NULL)); tt_int_op(0, OP_EQ, stat(testdir, &st)); tt_int_op_nowin(0, OP_EQ, (st.st_mode & unix_verify_optsmask)); tor_free(testdir); /* test: check existing dir created with defaults, and verify with CPD_GROUP_READ option set. */ testdir = get_datadir_fname("checkdir_exists_groupread"); cpd_chkopts = CPD_CREATE; unix_verify_optsmask = 0027; tt_int_op(0, OP_EQ, check_private_dir(testdir, cpd_chkopts, NULL)); cpd_chkopts = CPD_GROUP_READ; tt_int_op(0, OP_EQ, check_private_dir(testdir, cpd_chkopts, NULL)); tt_int_op(0, OP_EQ, stat(testdir, &st)); tt_int_op_nowin(0, OP_EQ, (st.st_mode & unix_verify_optsmask)); tor_free(testdir); /* test: check existing dir created with CPD_GROUP_READ, and verify with CPD_GROUP_OK option set. */ testdir = get_datadir_fname("checkdir_existsread_groupok"); cpd_chkopts = CPD_CREATE|CPD_GROUP_READ; unix_verify_optsmask = 0027; tt_int_op(0, OP_EQ, check_private_dir(testdir, cpd_chkopts, NULL)); cpd_chkopts = CPD_GROUP_OK; tt_int_op(0, OP_EQ, check_private_dir(testdir, cpd_chkopts, NULL)); tt_int_op(0, OP_EQ, stat(testdir, &st)); tt_int_op_nowin(0, OP_EQ, (st.st_mode & unix_verify_optsmask)); tor_free(testdir); /* test: check existing dir created with CPD_GROUP_READ, and verify with CPD_GROUP_READ option set. */ testdir = get_datadir_fname("checkdir_existsread_groupread"); cpd_chkopts = CPD_CREATE|CPD_GROUP_READ; unix_verify_optsmask = 0027; tt_int_op(0, OP_EQ, check_private_dir(testdir, cpd_chkopts, NULL)); tt_int_op(0, OP_EQ, stat(testdir, &st)); tt_int_op_nowin(0, OP_EQ, (st.st_mode & unix_verify_optsmask)); done: tor_free(testdir); } #define CHECKDIR(name,flags) \ { #name, test_checkdir_##name, (flags), NULL, NULL } struct testcase_t checkdir_tests[] = { CHECKDIR(perms, TT_FORK), END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_routerlist.c0000644000175000017500000000517512621363246014613 00000000000000/* Copyright (c) 2014, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define ROUTERLIST_PRIVATE #include "or.h" #include "routerlist.h" #include "directory.h" #include "test.h" /* 4 digests + 3 sep + pre + post + NULL */ static char output[4*BASE64_DIGEST256_LEN+3+2+2+1]; static void mock_get_from_dirserver(uint8_t dir_purpose, uint8_t router_purpose, const char *resource, int pds_flags) { (void)dir_purpose; (void)router_purpose; (void)pds_flags; tt_assert(resource); strlcpy(output, resource, sizeof(output)); done: ; } static void test_routerlist_initiate_descriptor_downloads(void *arg) { const char *prose = "unhurried and wise, we perceive."; smartlist_t *digests = smartlist_new(); (void)arg; for (int i = 0; i < 20; i++) { smartlist_add(digests, (char*)prose); } MOCK(directory_get_from_dirserver, mock_get_from_dirserver); initiate_descriptor_downloads(NULL, DIR_PURPOSE_FETCH_MICRODESC, digests, 3, 7, 0); UNMOCK(directory_get_from_dirserver); tt_str_op(output, OP_EQ, "d/" "dW5odXJyaWVkIGFuZCB3aXNlLCB3ZSBwZXJjZWl2ZS4-" "dW5odXJyaWVkIGFuZCB3aXNlLCB3ZSBwZXJjZWl2ZS4-" "dW5odXJyaWVkIGFuZCB3aXNlLCB3ZSBwZXJjZWl2ZS4-" "dW5odXJyaWVkIGFuZCB3aXNlLCB3ZSBwZXJjZWl2ZS4" ".z"); done: smartlist_free(digests); } static int count = 0; static void mock_initiate_descriptor_downloads(const routerstatus_t *source, int purpose, smartlist_t *digests, int lo, int hi, int pds_flags) { (void)source; (void)purpose; (void)digests; (void)pds_flags; (void)hi; (void)lo; count += 1; } static void test_routerlist_launch_descriptor_downloads(void *arg) { smartlist_t *downloadable = smartlist_new(); time_t now = time(NULL); char *cp; (void)arg; for (int i = 0; i < 100; i++) { cp = tor_malloc(DIGEST256_LEN); tt_assert(cp); crypto_rand(cp, DIGEST256_LEN); smartlist_add(downloadable, cp); } MOCK(initiate_descriptor_downloads, mock_initiate_descriptor_downloads); launch_descriptor_downloads(DIR_PURPOSE_FETCH_MICRODESC, downloadable, NULL, now); tt_int_op(3, ==, count); UNMOCK(initiate_descriptor_downloads); done: SMARTLIST_FOREACH(downloadable, char *, cp1, tor_free(cp1)); smartlist_free(downloadable); } #define NODE(name, flags) \ { #name, test_routerlist_##name, (flags), NULL, NULL } struct testcase_t routerlist_tests[] = { NODE(initiate_descriptor_downloads, 0), NODE(launch_descriptor_downloads, 0), END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_policy.c0000644000175000017500000005322112631612325013665 00000000000000/* Copyright (c) 2013-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "or.h" #include "router.h" #include "routerparse.h" #include "policies.h" #include "test.h" /* Helper: assert that short_policy parses and writes back out as itself, or as expected if that's provided. */ static void test_short_policy_parse(const char *input, const char *expected) { short_policy_t *short_policy = NULL; char *out = NULL; if (expected == NULL) expected = input; short_policy = parse_short_policy(input); tt_assert(short_policy); out = write_short_policy(short_policy); tt_str_op(out, OP_EQ, expected); done: tor_free(out); short_policy_free(short_policy); } /** Helper: Parse the exit policy string in policy_str, and make sure * that policies_summarize() produces the string expected_summary from * it. */ static void test_policy_summary_helper(const char *policy_str, const char *expected_summary) { config_line_t line; smartlist_t *policy = smartlist_new(); char *summary = NULL; char *summary_after = NULL; int r; short_policy_t *short_policy = NULL; line.key = (char*)"foo"; line.value = (char *)policy_str; line.next = NULL; r = policies_parse_exit_policy(&line, &policy, EXIT_POLICY_IPV6_ENABLED | EXIT_POLICY_ADD_DEFAULT, 0, NULL, 0); tt_int_op(r,OP_EQ, 0); summary = policy_summarize(policy, AF_INET); tt_assert(summary != NULL); tt_str_op(summary,OP_EQ, expected_summary); short_policy = parse_short_policy(summary); tt_assert(short_policy); summary_after = write_short_policy(short_policy); tt_str_op(summary,OP_EQ, summary_after); done: tor_free(summary_after); tor_free(summary); if (policy) addr_policy_list_free(policy); short_policy_free(short_policy); } /** Run unit tests for generating summary lines of exit policies */ static void test_policies_general(void *arg) { int i; smartlist_t *policy = NULL, *policy2 = NULL, *policy3 = NULL, *policy4 = NULL, *policy5 = NULL, *policy6 = NULL, *policy7 = NULL, *policy8 = NULL, *policy9 = NULL, *policy10 = NULL, *policy11 = NULL, *policy12 = NULL; addr_policy_t *p; tor_addr_t tar; config_line_t line; smartlist_t *sm = NULL; char *policy_str = NULL; short_policy_t *short_parsed = NULL; int malformed_list = -1; (void)arg; policy = smartlist_new(); p = router_parse_addr_policy_item_from_string("reject 192.168.0.0/16:*", -1, &malformed_list); tt_assert(p != NULL); tt_int_op(ADDR_POLICY_REJECT,OP_EQ, p->policy_type); tor_addr_from_ipv4h(&tar, 0xc0a80000u); tt_int_op(0,OP_EQ, tor_addr_compare(&p->addr, &tar, CMP_EXACT)); tt_int_op(16,OP_EQ, p->maskbits); tt_int_op(1,OP_EQ, p->prt_min); tt_int_op(65535,OP_EQ, p->prt_max); smartlist_add(policy, p); tor_addr_from_ipv4h(&tar, 0x01020304u); tt_assert(ADDR_POLICY_ACCEPTED == compare_tor_addr_to_addr_policy(&tar, 2, policy)); tor_addr_make_unspec(&tar); tt_assert(ADDR_POLICY_PROBABLY_ACCEPTED == compare_tor_addr_to_addr_policy(&tar, 2, policy)); tor_addr_from_ipv4h(&tar, 0xc0a80102); tt_assert(ADDR_POLICY_REJECTED == compare_tor_addr_to_addr_policy(&tar, 2, policy)); tt_int_op(0, OP_EQ, policies_parse_exit_policy(NULL, &policy2, EXIT_POLICY_IPV6_ENABLED | EXIT_POLICY_REJECT_PRIVATE | EXIT_POLICY_ADD_DEFAULT, 0, NULL, 0)); tt_assert(policy2); tor_addr_parse(&tar, "[2000::1234]"); tt_int_op(0, OP_EQ, policies_parse_exit_policy(NULL, &policy12, EXIT_POLICY_IPV6_ENABLED | EXIT_POLICY_REJECT_PRIVATE | EXIT_POLICY_ADD_DEFAULT, 0x0306090cu, &tar, 1)); tt_assert(policy12); policy3 = smartlist_new(); p = router_parse_addr_policy_item_from_string("reject *:*", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy3, p); p = router_parse_addr_policy_item_from_string("accept *:*", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy3, p); policy4 = smartlist_new(); p = router_parse_addr_policy_item_from_string("accept *:443", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy4, p); p = router_parse_addr_policy_item_from_string("accept *:443", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy4, p); policy5 = smartlist_new(); p = router_parse_addr_policy_item_from_string("reject 0.0.0.0/8:*", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy5, p); p = router_parse_addr_policy_item_from_string("reject 169.254.0.0/16:*", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy5, p); p = router_parse_addr_policy_item_from_string("reject 127.0.0.0/8:*", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy5, p); p = router_parse_addr_policy_item_from_string("reject 192.168.0.0/16:*", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy5, p); p = router_parse_addr_policy_item_from_string("reject 10.0.0.0/8:*", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy5, p); p = router_parse_addr_policy_item_from_string("reject 172.16.0.0/12:*", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy5, p); p = router_parse_addr_policy_item_from_string("reject 80.190.250.90:*", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy5, p); p = router_parse_addr_policy_item_from_string("reject *:1-65534", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy5, p); p = router_parse_addr_policy_item_from_string("reject *:65535", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy5, p); p = router_parse_addr_policy_item_from_string("accept *:1-65535", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy5, p); policy6 = smartlist_new(); p = router_parse_addr_policy_item_from_string("accept 43.3.0.0/9:*", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy6, p); policy7 = smartlist_new(); p = router_parse_addr_policy_item_from_string("accept 0.0.0.0/8:*", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy7, p); tt_int_op(0, OP_EQ, policies_parse_exit_policy(NULL, &policy8, EXIT_POLICY_IPV6_ENABLED | EXIT_POLICY_REJECT_PRIVATE | EXIT_POLICY_ADD_DEFAULT, 0, NULL, 0)); tt_assert(policy8); tt_int_op(0, OP_EQ, policies_parse_exit_policy(NULL, &policy9, EXIT_POLICY_REJECT_PRIVATE | EXIT_POLICY_ADD_DEFAULT, 0, NULL, 0)); tt_assert(policy9); /* accept6 * and reject6 * produce IPv6 wildcards only */ policy10 = smartlist_new(); p = router_parse_addr_policy_item_from_string("accept6 *:*", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy10, p); policy11 = smartlist_new(); p = router_parse_addr_policy_item_from_string("reject6 *:*", -1, &malformed_list); tt_assert(p != NULL); smartlist_add(policy11, p); tt_assert(!exit_policy_is_general_exit(policy)); tt_assert(exit_policy_is_general_exit(policy2)); tt_assert(!exit_policy_is_general_exit(NULL)); tt_assert(!exit_policy_is_general_exit(policy3)); tt_assert(!exit_policy_is_general_exit(policy4)); tt_assert(!exit_policy_is_general_exit(policy5)); tt_assert(!exit_policy_is_general_exit(policy6)); tt_assert(!exit_policy_is_general_exit(policy7)); tt_assert(exit_policy_is_general_exit(policy8)); tt_assert(exit_policy_is_general_exit(policy9)); tt_assert(!exit_policy_is_general_exit(policy10)); tt_assert(!exit_policy_is_general_exit(policy11)); tt_assert(cmp_addr_policies(policy, policy2)); tt_assert(cmp_addr_policies(policy, NULL)); tt_assert(!cmp_addr_policies(policy2, policy2)); tt_assert(!cmp_addr_policies(NULL, NULL)); tt_assert(!policy_is_reject_star(policy2, AF_INET)); tt_assert(policy_is_reject_star(policy, AF_INET)); tt_assert(policy_is_reject_star(policy10, AF_INET)); tt_assert(!policy_is_reject_star(policy10, AF_INET6)); tt_assert(policy_is_reject_star(policy11, AF_INET)); tt_assert(policy_is_reject_star(policy11, AF_INET6)); tt_assert(policy_is_reject_star(NULL, AF_INET)); tt_assert(policy_is_reject_star(NULL, AF_INET6)); addr_policy_list_free(policy); policy = NULL; /* make sure compacting logic works. */ policy = NULL; line.key = (char*)"foo"; line.value = (char*)"accept *:80,reject private:*,reject *:*"; line.next = NULL; tt_int_op(0, OP_EQ, policies_parse_exit_policy(&line,&policy, EXIT_POLICY_IPV6_ENABLED | EXIT_POLICY_ADD_DEFAULT, 0, NULL, 0)); tt_assert(policy); //test_streq(policy->string, "accept *:80"); //test_streq(policy->next->string, "reject *:*"); tt_int_op(smartlist_len(policy),OP_EQ, 4); /* test policy summaries */ /* check if we properly ignore private IP addresses */ test_policy_summary_helper("reject 192.168.0.0/16:*," "reject 0.0.0.0/8:*," "reject 10.0.0.0/8:*," "accept *:10-30," "accept *:90," "reject *:*", "accept 10-30,90"); /* check all accept policies, and proper counting of rejects */ test_policy_summary_helper("reject 11.0.0.0/9:80," "reject 12.0.0.0/9:80," "reject 13.0.0.0/9:80," "reject 14.0.0.0/9:80," "accept *:*", "accept 1-65535"); test_policy_summary_helper("reject 11.0.0.0/9:80," "reject 12.0.0.0/9:80," "reject 13.0.0.0/9:80," "reject 14.0.0.0/9:80," "reject 15.0.0.0:81," "accept *:*", "accept 1-65535"); test_policy_summary_helper("reject 11.0.0.0/9:80," "reject 12.0.0.0/9:80," "reject 13.0.0.0/9:80," "reject 14.0.0.0/9:80," "reject 15.0.0.0:80," "accept *:*", "reject 80"); /* no exits */ test_policy_summary_helper("accept 11.0.0.0/9:80," "reject *:*", "reject 1-65535"); /* port merging */ test_policy_summary_helper("accept *:80," "accept *:81," "accept *:100-110," "accept *:111," "reject *:*", "accept 80-81,100-111"); /* border ports */ test_policy_summary_helper("accept *:1," "accept *:3," "accept *:65535," "reject *:*", "accept 1,3,65535"); /* holes */ test_policy_summary_helper("accept *:1," "accept *:3," "accept *:5," "accept *:7," "reject *:*", "accept 1,3,5,7"); test_policy_summary_helper("reject *:1," "reject *:3," "reject *:5," "reject *:7," "accept *:*", "reject 1,3,5,7"); /* Short policies with unrecognized formats should get accepted. */ test_short_policy_parse("accept fred,2,3-5", "accept 2,3-5"); test_short_policy_parse("accept 2,fred,3", "accept 2,3"); test_short_policy_parse("accept 2,fred,3,bob", "accept 2,3"); test_short_policy_parse("accept 2,-3,500-600", "accept 2,500-600"); /* Short policies with nil entries are accepted too. */ test_short_policy_parse("accept 1,,3", "accept 1,3"); test_short_policy_parse("accept 100-200,,", "accept 100-200"); test_short_policy_parse("reject ,1-10,,,,30-40", "reject 1-10,30-40"); /* Try parsing various broken short policies */ #define TT_BAD_SHORT_POLICY(s) \ do { \ tt_ptr_op(NULL, OP_EQ, (short_parsed = parse_short_policy((s)))); \ } while (0) TT_BAD_SHORT_POLICY("accept 200-199"); TT_BAD_SHORT_POLICY(""); TT_BAD_SHORT_POLICY("rejekt 1,2,3"); TT_BAD_SHORT_POLICY("reject "); TT_BAD_SHORT_POLICY("reject"); TT_BAD_SHORT_POLICY("rej"); TT_BAD_SHORT_POLICY("accept 2,3,100000"); TT_BAD_SHORT_POLICY("accept 2,3x,4"); TT_BAD_SHORT_POLICY("accept 2,3x,4"); TT_BAD_SHORT_POLICY("accept 2-"); TT_BAD_SHORT_POLICY("accept 2-x"); TT_BAD_SHORT_POLICY("accept 1-,3"); TT_BAD_SHORT_POLICY("accept 1-,3"); /* Make sure that IPv4 addresses are ignored in accept6/reject6 lines. */ p = router_parse_addr_policy_item_from_string("accept6 1.2.3.4:*", -1, &malformed_list); tt_assert(p == NULL); tt_assert(!malformed_list); p = router_parse_addr_policy_item_from_string("reject6 2.4.6.0/24:*", -1, &malformed_list); tt_assert(p == NULL); tt_assert(!malformed_list); p = router_parse_addr_policy_item_from_string("accept6 *4:*", -1, &malformed_list); tt_assert(p == NULL); tt_assert(!malformed_list); /* Make sure malformed policies are detected as such. */ p = router_parse_addr_policy_item_from_string("bad_token *4:*", -1, &malformed_list); tt_assert(p == NULL); tt_assert(malformed_list); p = router_parse_addr_policy_item_from_string("accept6 **:*", -1, &malformed_list); tt_assert(p == NULL); tt_assert(malformed_list); p = router_parse_addr_policy_item_from_string("accept */15:*", -1, &malformed_list); tt_assert(p == NULL); tt_assert(malformed_list); p = router_parse_addr_policy_item_from_string("reject6 */:*", -1, &malformed_list); tt_assert(p == NULL); tt_assert(malformed_list); p = router_parse_addr_policy_item_from_string("accept 127.0.0.1/33:*", -1, &malformed_list); tt_assert(p == NULL); tt_assert(malformed_list); p = router_parse_addr_policy_item_from_string("accept6 [::1]/129:*", -1, &malformed_list); tt_assert(p == NULL); tt_assert(malformed_list); p = router_parse_addr_policy_item_from_string("reject 8.8.8.8/-1:*", -1, &malformed_list); tt_assert(p == NULL); tt_assert(malformed_list); p = router_parse_addr_policy_item_from_string("reject 8.8.4.4:10-5", -1, &malformed_list); tt_assert(p == NULL); tt_assert(malformed_list); p = router_parse_addr_policy_item_from_string("reject 1.2.3.4:-1", -1, &malformed_list); tt_assert(p == NULL); tt_assert(malformed_list); /* Test a too-long policy. */ { int i; char *policy = NULL; smartlist_t *chunks = smartlist_new(); smartlist_add(chunks, tor_strdup("accept ")); for (i=1; i<10000; ++i) smartlist_add_asprintf(chunks, "%d,", i); smartlist_add(chunks, tor_strdup("20000")); policy = smartlist_join_strings(chunks, "", 0, NULL); SMARTLIST_FOREACH(chunks, char *, ch, tor_free(ch)); smartlist_free(chunks); short_parsed = parse_short_policy(policy);/* shouldn't be accepted */ tor_free(policy); tt_ptr_op(NULL, OP_EQ, short_parsed); } /* truncation ports */ sm = smartlist_new(); for (i=1; i<2000; i+=2) { char buf[POLICY_BUF_LEN]; tor_snprintf(buf, sizeof(buf), "reject *:%d", i); smartlist_add(sm, tor_strdup(buf)); } smartlist_add(sm, tor_strdup("accept *:*")); policy_str = smartlist_join_strings(sm, ",", 0, NULL); test_policy_summary_helper( policy_str, "accept 2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44," "46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90," "92,94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126,128," "130,132,134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164," "166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196,198,200," "202,204,206,208,210,212,214,216,218,220,222,224,226,228,230,232,234,236," "238,240,242,244,246,248,250,252,254,256,258,260,262,264,266,268,270,272," "274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308," "310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344," "346,348,350,352,354,356,358,360,362,364,366,368,370,372,374,376,378,380," "382,384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414,416," "418,420,422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452," "454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484,486,488," "490,492,494,496,498,500,502,504,506,508,510,512,514,516,518,520,522"); done: addr_policy_list_free(policy); addr_policy_list_free(policy2); addr_policy_list_free(policy3); addr_policy_list_free(policy4); addr_policy_list_free(policy5); addr_policy_list_free(policy6); addr_policy_list_free(policy7); addr_policy_list_free(policy8); addr_policy_list_free(policy9); addr_policy_list_free(policy10); addr_policy_list_free(policy11); addr_policy_list_free(policy12); tor_free(policy_str); if (sm) { SMARTLIST_FOREACH(sm, char *, s, tor_free(s)); smartlist_free(sm); } short_policy_free(short_parsed); } static void test_dump_exit_policy_to_string(void *arg) { char *ep; addr_policy_t *policy_entry; int malformed_list = -1; routerinfo_t *ri = tor_malloc_zero(sizeof(routerinfo_t)); (void)arg; ri->policy_is_reject_star = 1; ri->exit_policy = NULL; // expecting "reject *:*" ep = router_dump_exit_policy_to_string(ri,1,1); tt_str_op("reject *:*",OP_EQ, ep); tor_free(ep); ri->exit_policy = smartlist_new(); ri->policy_is_reject_star = 0; policy_entry = router_parse_addr_policy_item_from_string("accept *:*", -1, &malformed_list); smartlist_add(ri->exit_policy,policy_entry); ep = router_dump_exit_policy_to_string(ri,1,1); tt_str_op("accept *:*",OP_EQ, ep); tor_free(ep); policy_entry = router_parse_addr_policy_item_from_string("reject *:25", -1, &malformed_list); smartlist_add(ri->exit_policy,policy_entry); ep = router_dump_exit_policy_to_string(ri,1,1); tt_str_op("accept *:*\nreject *:25",OP_EQ, ep); tor_free(ep); policy_entry = router_parse_addr_policy_item_from_string("reject 8.8.8.8:*", -1, &malformed_list); smartlist_add(ri->exit_policy,policy_entry); ep = router_dump_exit_policy_to_string(ri,1,1); tt_str_op("accept *:*\nreject *:25\nreject 8.8.8.8:*",OP_EQ, ep); tor_free(ep); policy_entry = router_parse_addr_policy_item_from_string("reject6 [FC00::]/7:*", -1, &malformed_list); smartlist_add(ri->exit_policy,policy_entry); ep = router_dump_exit_policy_to_string(ri,1,1); tt_str_op("accept *:*\nreject *:25\nreject 8.8.8.8:*\n" "reject6 [fc00::]/7:*",OP_EQ, ep); tor_free(ep); policy_entry = router_parse_addr_policy_item_from_string("accept6 [c000::]/3:*", -1, &malformed_list); smartlist_add(ri->exit_policy,policy_entry); ep = router_dump_exit_policy_to_string(ri,1,1); tt_str_op("accept *:*\nreject *:25\nreject 8.8.8.8:*\n" "reject6 [fc00::]/7:*\naccept6 [c000::]/3:*",OP_EQ, ep); done: if (ri->exit_policy) { SMARTLIST_FOREACH(ri->exit_policy, addr_policy_t *, entry, addr_policy_free(entry)); smartlist_free(ri->exit_policy); } tor_free(ri); tor_free(ep); } struct testcase_t policy_tests[] = { { "router_dump_exit_policy_to_string", test_dump_exit_policy_to_string, 0, NULL, NULL }, { "general", test_policies_general, 0, NULL, NULL }, END_OF_TESTCASES }; tor-0.2.7.6/src/test/test_bt.sh0000755000175000017500000000057212621364222013166 00000000000000#!/bin/sh # Test backtrace functionality. exitcode=0 "${builddir:-.}/src/test/test-bt-cl" backtraces || exit 77 "${builddir:-.}/src/test/test-bt-cl" assert | "${PYTHON:-python}" "${abs_top_srcdir:-.}/src/test/bt_test.py" || exitcode=1 "${builddir:-.}/src/test/test-bt-cl" crash | "${PYTHON:-python}" "${abs_top_srcdir:-.}/src/test/bt_test.py" || exitcode=1 exit ${exitcode} tor-0.2.7.6/src/test/test_entryconn.c0000644000175000017500000006417712621363246014425 00000000000000/* Copyright (c) 2014-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #define CONNECTION_PRIVATE #define CONNECTION_EDGE_PRIVATE #include "or.h" #include "test.h" #include "addressmap.h" #include "config.h" #include "confparse.h" #include "connection.h" #include "connection_edge.h" static void * entryconn_rewrite_setup(const struct testcase_t *tc) { (void)tc; entry_connection_t *ec = entry_connection_new(CONN_TYPE_AP, AF_INET); addressmap_init(); return ec; } static int entryconn_rewrite_teardown(const struct testcase_t *tc, void *arg) { (void)tc; entry_connection_t *ec = arg; if (ec) connection_free_(ENTRY_TO_CONN(ec)); addressmap_free_all(); return 1; } static struct testcase_setup_t test_rewrite_setup = { entryconn_rewrite_setup, entryconn_rewrite_teardown }; /* Simple rewrite: no changes needed */ static void test_entryconn_rewrite_basic(void *arg) { entry_connection_t *ec = arg; rewrite_result_t rr; tt_assert(ec->socks_request); strlcpy(ec->socks_request->address, "www.TORproject.org", sizeof(ec->socks_request->address)); ec->socks_request->command = SOCKS_COMMAND_CONNECT; connection_ap_handshake_rewrite(ec, &rr); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_int_op(rr.automap, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, "www.torproject.org"); tt_str_op(ec->socks_request->address, OP_EQ, "www.torproject.org"); tt_str_op(ec->original_dest_address, OP_EQ, "www.torproject.org"); done: ; } /* Rewrite but reject because of disallowed .exit */ static void test_entryconn_rewrite_bad_dotexit(void *arg) { entry_connection_t *ec = arg; rewrite_result_t rr; get_options_mutable()->AllowDotExit = 0; tt_assert(ec->socks_request); strlcpy(ec->socks_request->address, "www.TORproject.org.foo.exit", sizeof(ec->socks_request->address)); ec->socks_request->command = SOCKS_COMMAND_CONNECT; connection_ap_handshake_rewrite(ec, &rr); tt_int_op(rr.should_close, OP_EQ, 1); tt_int_op(rr.end_reason, OP_EQ, END_STREAM_REASON_TORPROTOCOL); done: ; } /* Automap on resolve, connect to automapped address, resolve again and get * same answer. (IPv4) */ static void test_entryconn_rewrite_automap_ipv4(void *arg) { entry_connection_t *ec = arg; entry_connection_t *ec2=NULL, *ec3=NULL; rewrite_result_t rr; char *msg = NULL; ec2 = entry_connection_new(CONN_TYPE_AP, AF_INET); ec3 = entry_connection_new(CONN_TYPE_AP, AF_INET); get_options_mutable()->AutomapHostsOnResolve = 1; smartlist_add(get_options_mutable()->AutomapHostsSuffixes, tor_strdup(".")); parse_virtual_addr_network("127.202.0.0/16", AF_INET, 0, &msg); /* Automap this on resolve. */ strlcpy(ec->socks_request->address, "WWW.MIT.EDU", sizeof(ec->socks_request->address)); ec->socks_request->command = SOCKS_COMMAND_RESOLVE; connection_ap_handshake_rewrite(ec, &rr); tt_int_op(rr.automap, OP_EQ, 1); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, "www.mit.edu"); tt_str_op(ec->original_dest_address, OP_EQ, "www.mit.edu"); tt_assert(!strcmpstart(ec->socks_request->address,"127.202.")); /* Connect to it and make sure we get the original address back. */ strlcpy(ec2->socks_request->address, ec->socks_request->address, sizeof(ec2->socks_request->address)); ec2->socks_request->command = SOCKS_COMMAND_CONNECT; connection_ap_handshake_rewrite(ec2, &rr); tt_int_op(rr.automap, OP_EQ, 0); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, ec->socks_request->address); tt_str_op(ec2->original_dest_address, OP_EQ, ec->socks_request->address); tt_str_op(ec2->socks_request->address, OP_EQ, "www.mit.edu"); /* Resolve it again, make sure the answer is the same. */ strlcpy(ec3->socks_request->address, "www.MIT.EDU", sizeof(ec3->socks_request->address)); ec3->socks_request->command = SOCKS_COMMAND_RESOLVE; connection_ap_handshake_rewrite(ec3, &rr); tt_int_op(rr.automap, OP_EQ, 1); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, "www.mit.edu"); tt_str_op(ec3->original_dest_address, OP_EQ, "www.mit.edu"); tt_str_op(ec3->socks_request->address, OP_EQ, ec->socks_request->address); done: connection_free_(ENTRY_TO_CONN(ec2)); connection_free_(ENTRY_TO_CONN(ec3)); } /* Automap on resolve, connect to automapped address, resolve again and get * same answer. (IPv6) */ static void test_entryconn_rewrite_automap_ipv6(void *arg) { (void)arg; entry_connection_t *ec =NULL; entry_connection_t *ec2=NULL, *ec3=NULL; rewrite_result_t rr; char *msg = NULL; ec = entry_connection_new(CONN_TYPE_AP, AF_INET6); ec2 = entry_connection_new(CONN_TYPE_AP, AF_INET6); ec3 = entry_connection_new(CONN_TYPE_AP, AF_INET6); get_options_mutable()->AutomapHostsOnResolve = 1; smartlist_add(get_options_mutable()->AutomapHostsSuffixes, tor_strdup(".")); parse_virtual_addr_network("FE80::/32", AF_INET6, 0, &msg); /* Automap this on resolve. */ strlcpy(ec->socks_request->address, "WWW.MIT.EDU", sizeof(ec->socks_request->address)); ec->socks_request->command = SOCKS_COMMAND_RESOLVE; connection_ap_handshake_rewrite(ec, &rr); tt_int_op(rr.automap, OP_EQ, 1); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, "www.mit.edu"); tt_str_op(ec->original_dest_address, OP_EQ, "www.mit.edu"); /* Yes, this [ should be here. */ tt_assert(!strcmpstart(ec->socks_request->address,"[fe80:")); /* Connect to it and make sure we get the original address back. */ strlcpy(ec2->socks_request->address, ec->socks_request->address, sizeof(ec2->socks_request->address)); ec2->socks_request->command = SOCKS_COMMAND_CONNECT; connection_ap_handshake_rewrite(ec2, &rr); tt_int_op(rr.automap, OP_EQ, 0); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, ec->socks_request->address); tt_str_op(ec2->original_dest_address, OP_EQ, ec->socks_request->address); tt_str_op(ec2->socks_request->address, OP_EQ, "www.mit.edu"); /* Resolve it again, make sure the answer is the same. */ strlcpy(ec3->socks_request->address, "www.MIT.EDU", sizeof(ec3->socks_request->address)); ec3->socks_request->command = SOCKS_COMMAND_RESOLVE; connection_ap_handshake_rewrite(ec3, &rr); tt_int_op(rr.automap, OP_EQ, 1); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, "www.mit.edu"); tt_str_op(ec3->original_dest_address, OP_EQ, "www.mit.edu"); tt_str_op(ec3->socks_request->address, OP_EQ, ec->socks_request->address); done: connection_free_(ENTRY_TO_CONN(ec)); connection_free_(ENTRY_TO_CONN(ec2)); connection_free_(ENTRY_TO_CONN(ec3)); } #if 0 /* FFFF not actually supported. */ /* automap on resolve, reverse lookup. */ static void test_entryconn_rewrite_automap_reverse(void *arg) { entry_connection_t *ec = arg; entry_connection_t *ec2=NULL; rewrite_result_t rr; char *msg = NULL; ec2 = entry_connection_new(CONN_TYPE_AP, AF_INET); get_options_mutable()->AutomapHostsOnResolve = 1; get_options_mutable()->SafeLogging_ = SAFELOG_SCRUB_NONE; smartlist_add(get_options_mutable()->AutomapHostsSuffixes, tor_strdup(".bloom")); parse_virtual_addr_network("127.80.0.0/16", AF_INET, 0, &msg); /* Automap this on resolve. */ strlcpy(ec->socks_request->address, "www.poldy.BLOOM", sizeof(ec->socks_request->address)); ec->socks_request->command = SOCKS_COMMAND_RESOLVE; connection_ap_handshake_rewrite(ec, &rr); tt_int_op(rr.automap, OP_EQ, 1); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, "www.poldy.bloom"); tt_str_op(ec->original_dest_address, OP_EQ, "www.poldy.bloom"); tt_assert(!strcmpstart(ec->socks_request->address,"127.80.")); strlcpy(ec2->socks_request->address, ec->socks_request->address, sizeof(ec2->socks_request->address)); ec2->socks_request->command = SOCKS_COMMAND_RESOLVE_PTR; connection_ap_handshake_rewrite(ec2, &rr); tt_int_op(rr.automap, OP_EQ, 0); tt_int_op(rr.should_close, OP_EQ, 1); tt_int_op(rr.end_reason, OP_EQ, END_STREAM_REASON_DONE|END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); done: connection_free_(ENTRY_TO_CONN(ec2)); } #endif /* Rewrite because of cached DNS entry. */ static void test_entryconn_rewrite_cached_dns_ipv4(void *arg) { entry_connection_t *ec = arg; rewrite_result_t rr; time_t expires = time(NULL) + 3600; entry_connection_t *ec2=NULL; ec2 = entry_connection_new(CONN_TYPE_AP, AF_INET); addressmap_register("www.friendly.example.com", tor_strdup("240.240.241.241"), expires, ADDRMAPSRC_DNS, 0, 0); strlcpy(ec->socks_request->address, "www.friendly.example.com", sizeof(ec->socks_request->address)); strlcpy(ec2->socks_request->address, "www.friendly.example.com", sizeof(ec2->socks_request->address)); ec->socks_request->command = SOCKS_COMMAND_CONNECT; ec2->socks_request->command = SOCKS_COMMAND_CONNECT; ec2->entry_cfg.use_cached_ipv4_answers = 1; /* only ec2 gets this flag */ connection_ap_handshake_rewrite(ec, &rr); tt_int_op(rr.automap, OP_EQ, 0); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, "www.friendly.example.com"); tt_str_op(ec->socks_request->address, OP_EQ, "www.friendly.example.com"); connection_ap_handshake_rewrite(ec2, &rr); tt_int_op(rr.automap, OP_EQ, 0); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, expires); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, "www.friendly.example.com"); tt_str_op(ec2->socks_request->address, OP_EQ, "240.240.241.241"); done: connection_free_(ENTRY_TO_CONN(ec2)); } /* Rewrite because of cached DNS entry. */ static void test_entryconn_rewrite_cached_dns_ipv6(void *arg) { entry_connection_t *ec = NULL; rewrite_result_t rr; time_t expires = time(NULL) + 3600; entry_connection_t *ec2=NULL; (void)arg; ec = entry_connection_new(CONN_TYPE_AP, AF_INET6); ec2 = entry_connection_new(CONN_TYPE_AP, AF_INET6); addressmap_register("www.friendly.example.com", tor_strdup("[::f00f]"), expires, ADDRMAPSRC_DNS, 0, 0); strlcpy(ec->socks_request->address, "www.friendly.example.com", sizeof(ec->socks_request->address)); strlcpy(ec2->socks_request->address, "www.friendly.example.com", sizeof(ec2->socks_request->address)); ec->socks_request->command = SOCKS_COMMAND_CONNECT; ec2->socks_request->command = SOCKS_COMMAND_CONNECT; ec2->entry_cfg.use_cached_ipv6_answers = 1; /* only ec2 gets this flag */ connection_ap_handshake_rewrite(ec, &rr); tt_int_op(rr.automap, OP_EQ, 0); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, "www.friendly.example.com"); tt_str_op(ec->socks_request->address, OP_EQ, "www.friendly.example.com"); connection_ap_handshake_rewrite(ec2, &rr); tt_int_op(rr.automap, OP_EQ, 0); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, expires); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, "www.friendly.example.com"); tt_str_op(ec2->socks_request->address, OP_EQ, "[::f00f]"); done: connection_free_(ENTRY_TO_CONN(ec)); connection_free_(ENTRY_TO_CONN(ec2)); } /* Fail to connect to unmapped address in virtual range. */ static void test_entryconn_rewrite_unmapped_virtual(void *arg) { entry_connection_t *ec = arg; rewrite_result_t rr; entry_connection_t *ec2 = NULL; char *msg = NULL; ec2 = entry_connection_new(CONN_TYPE_AP, AF_INET6); parse_virtual_addr_network("18.202.0.0/16", AF_INET, 0, &msg); parse_virtual_addr_network("[ABCD::]/16", AF_INET6, 0, &msg); strlcpy(ec->socks_request->address, "18.202.5.5", sizeof(ec->socks_request->address)); ec->socks_request->command = SOCKS_COMMAND_CONNECT; connection_ap_handshake_rewrite(ec, &rr); tt_int_op(rr.should_close, OP_EQ, 1); tt_int_op(rr.end_reason, OP_EQ, END_STREAM_REASON_INTERNAL); tt_int_op(rr.automap, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); strlcpy(ec2->socks_request->address, "[ABCD:9::5314:9543]", sizeof(ec2->socks_request->address)); ec2->socks_request->command = SOCKS_COMMAND_CONNECT; connection_ap_handshake_rewrite(ec2, &rr); tt_int_op(rr.should_close, OP_EQ, 1); tt_int_op(rr.end_reason, OP_EQ, END_STREAM_REASON_INTERNAL); tt_int_op(rr.automap, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); done: connection_free_(ENTRY_TO_CONN(ec2)); } /* Rewrite because of mapaddress option */ static void test_entryconn_rewrite_mapaddress(void *arg) { entry_connection_t *ec = arg; rewrite_result_t rr; config_line_append(&get_options_mutable()->AddressMap, "MapAddress", "meta metaobjects.example"); config_register_addressmaps(get_options()); strlcpy(ec->socks_request->address, "meta", sizeof(ec->socks_request->address)); ec->socks_request->command = SOCKS_COMMAND_CONNECT; connection_ap_handshake_rewrite(ec, &rr); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_int_op(rr.automap, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(ec->socks_request->address, OP_EQ, "metaobjects.example"); done: ; } /* Reject reverse lookups of internal address. */ static void test_entryconn_rewrite_reject_internal_reverse(void *arg) { entry_connection_t *ec = arg; rewrite_result_t rr; strlcpy(ec->socks_request->address, "10.0.0.1", sizeof(ec->socks_request->address)); ec->socks_request->command = SOCKS_COMMAND_RESOLVE_PTR; connection_ap_handshake_rewrite(ec, &rr); tt_int_op(rr.should_close, OP_EQ, 1); tt_int_op(rr.end_reason, OP_EQ, END_STREAM_REASON_SOCKSPROTOCOL | END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED); tt_int_op(rr.automap, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); done: ; } /* Rewrite into .exit because of virtual address mapping */ static void test_entryconn_rewrite_automap_exit(void *arg) { entry_connection_t *ec = arg; entry_connection_t *ec2=NULL; rewrite_result_t rr; char *msg = NULL; ec2 = entry_connection_new(CONN_TYPE_AP, AF_INET); get_options_mutable()->AutomapHostsOnResolve = 1; get_options_mutable()->AllowDotExit = 1; smartlist_add(get_options_mutable()->AutomapHostsSuffixes, tor_strdup(".EXIT")); parse_virtual_addr_network("127.1.0.0/16", AF_INET, 0, &msg); /* Automap this on resolve. */ strlcpy(ec->socks_request->address, "website.example.exit", sizeof(ec->socks_request->address)); ec->socks_request->command = SOCKS_COMMAND_RESOLVE; connection_ap_handshake_rewrite(ec, &rr); tt_int_op(rr.automap, OP_EQ, 1); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, "website.example.exit"); tt_str_op(ec->original_dest_address, OP_EQ, "website.example.exit"); tt_assert(!strcmpstart(ec->socks_request->address,"127.1.")); /* Connect to it and make sure we get the original address back. */ strlcpy(ec2->socks_request->address, ec->socks_request->address, sizeof(ec2->socks_request->address)); ec2->socks_request->command = SOCKS_COMMAND_CONNECT; connection_ap_handshake_rewrite(ec2, &rr); tt_int_op(rr.automap, OP_EQ, 0); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_AUTOMAP); tt_str_op(rr.orig_address, OP_EQ, ec->socks_request->address); tt_str_op(ec2->original_dest_address, OP_EQ, ec->socks_request->address); tt_str_op(ec2->socks_request->address, OP_EQ, "website.example.exit"); done: connection_free_(ENTRY_TO_CONN(ec2)); } /* Rewrite into .exit because of mapaddress */ static void test_entryconn_rewrite_mapaddress_exit(void *arg) { entry_connection_t *ec = arg; rewrite_result_t rr; config_line_append(&get_options_mutable()->AddressMap, "MapAddress", "*.example.com *.example.com.abc.exit"); config_register_addressmaps(get_options()); /* Automap this on resolve. */ strlcpy(ec->socks_request->address, "abc.example.com", sizeof(ec->socks_request->address)); ec->socks_request->command = SOCKS_COMMAND_CONNECT; connection_ap_handshake_rewrite(ec, &rr); tt_int_op(rr.automap, OP_EQ, 0); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_TORRC); tt_str_op(rr.orig_address, OP_EQ, "abc.example.com"); tt_str_op(ec->socks_request->address, OP_EQ, "abc.example.com.abc.exit"); done: ; } /* Map foo.onion to longthing.onion, and also automap. */ static void test_entryconn_rewrite_mapaddress_automap_onion(void *arg) { entry_connection_t *ec = arg; entry_connection_t *ec2 = NULL; entry_connection_t *ec3 = NULL; entry_connection_t *ec4 = NULL; rewrite_result_t rr; char *msg = NULL; ec2 = entry_connection_new(CONN_TYPE_AP, AF_INET); ec3 = entry_connection_new(CONN_TYPE_AP, AF_INET); ec4 = entry_connection_new(CONN_TYPE_AP, AF_INET); get_options_mutable()->AutomapHostsOnResolve = 1; get_options_mutable()->AllowDotExit = 1; smartlist_add(get_options_mutable()->AutomapHostsSuffixes, tor_strdup(".onion")); parse_virtual_addr_network("192.168.0.0/16", AF_INET, 0, &msg); config_line_append(&get_options_mutable()->AddressMap, "MapAddress", "foo.onion abcdefghijklmnop.onion"); config_register_addressmaps(get_options()); /* Connect to foo.onion. */ strlcpy(ec->socks_request->address, "foo.onion", sizeof(ec->socks_request->address)); ec->socks_request->command = SOCKS_COMMAND_CONNECT; connection_ap_handshake_rewrite(ec, &rr); tt_int_op(rr.automap, OP_EQ, 0); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, "foo.onion"); tt_str_op(ec->socks_request->address, OP_EQ, "abcdefghijklmnop.onion"); /* Okay, resolve foo.onion */ strlcpy(ec2->socks_request->address, "foo.onion", sizeof(ec2->socks_request->address)); ec2->socks_request->command = SOCKS_COMMAND_RESOLVE; connection_ap_handshake_rewrite(ec2, &rr); tt_int_op(rr.automap, OP_EQ, 1); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, "foo.onion"); tt_assert(!strcmpstart(ec2->socks_request->address, "192.168.")); /* Now connect */ strlcpy(ec3->socks_request->address, ec2->socks_request->address, sizeof(ec3->socks_request->address)); ec3->socks_request->command = SOCKS_COMMAND_CONNECT; connection_ap_handshake_rewrite(ec3, &rr); tt_int_op(rr.automap, OP_EQ, 0); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_assert(!strcmpstart(ec3->socks_request->address, "abcdefghijklmnop.onion")); /* Now resolve abcefghijklmnop.onion. */ strlcpy(ec4->socks_request->address, "abcdefghijklmnop.onion", sizeof(ec4->socks_request->address)); ec4->socks_request->command = SOCKS_COMMAND_RESOLVE; connection_ap_handshake_rewrite(ec4, &rr); tt_int_op(rr.automap, OP_EQ, 1); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, "abcdefghijklmnop.onion"); tt_assert(!strcmpstart(ec4->socks_request->address, "192.168.")); /* XXXX doesn't work tt_str_op(ec4->socks_request->address, OP_EQ, ec2->socks_request->address); */ done: connection_free_(ENTRY_TO_CONN(ec2)); connection_free_(ENTRY_TO_CONN(ec3)); connection_free_(ENTRY_TO_CONN(ec4)); } static void test_entryconn_rewrite_mapaddress_automap_onion_common(entry_connection_t *ec, int map_to_onion, int map_to_address) { entry_connection_t *ec2 = NULL; entry_connection_t *ec3 = NULL; rewrite_result_t rr; ec2 = entry_connection_new(CONN_TYPE_AP, AF_INET); ec3 = entry_connection_new(CONN_TYPE_AP, AF_INET); /* Connect to irc.example.com */ strlcpy(ec->socks_request->address, "irc.example.com", sizeof(ec->socks_request->address)); ec->socks_request->command = SOCKS_COMMAND_CONNECT; connection_ap_handshake_rewrite(ec, &rr); tt_int_op(rr.automap, OP_EQ, 0); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, "irc.example.com"); tt_str_op(ec->socks_request->address, OP_EQ, map_to_onion ? "abcdefghijklmnop.onion" : "irc.example.com"); /* Okay, resolve irc.example.com */ strlcpy(ec2->socks_request->address, "irc.example.com", sizeof(ec2->socks_request->address)); ec2->socks_request->command = SOCKS_COMMAND_RESOLVE; connection_ap_handshake_rewrite(ec2, &rr); tt_int_op(rr.automap, OP_EQ, map_to_onion && map_to_address); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); tt_i64_op(rr.map_expires, OP_EQ, TIME_MAX); tt_int_op(rr.exit_source, OP_EQ, ADDRMAPSRC_NONE); tt_str_op(rr.orig_address, OP_EQ, "irc.example.com"); if (map_to_onion && map_to_address) tt_assert(!strcmpstart(ec2->socks_request->address, "192.168.")); /* Now connect */ strlcpy(ec3->socks_request->address, ec2->socks_request->address, sizeof(ec3->socks_request->address)); ec3->socks_request->command = SOCKS_COMMAND_CONNECT; connection_ap_handshake_rewrite(ec3, &rr); tt_int_op(rr.automap, OP_EQ, 0); tt_int_op(rr.should_close, OP_EQ, 0); tt_int_op(rr.end_reason, OP_EQ, 0); if (map_to_onion) tt_assert(!strcmpstart(ec3->socks_request->address, "abcdefghijklmnop.onion")); done: connection_free_(ENTRY_TO_CONN(ec2)); connection_free_(ENTRY_TO_CONN(ec3)); } /* This time is the same, but we start with a mapping from a non-onion * address. */ static void test_entryconn_rewrite_mapaddress_automap_onion2(void *arg) { char *msg = NULL; get_options_mutable()->AutomapHostsOnResolve = 1; smartlist_add(get_options_mutable()->AutomapHostsSuffixes, tor_strdup(".onion")); parse_virtual_addr_network("192.168.0.0/16", AF_INET, 0, &msg); config_line_append(&get_options_mutable()->AddressMap, "MapAddress", "irc.example.com abcdefghijklmnop.onion"); config_register_addressmaps(get_options()); test_entryconn_rewrite_mapaddress_automap_onion_common(arg, 1, 1); } /* Same as above, with automapped turned off */ static void test_entryconn_rewrite_mapaddress_automap_onion3(void *arg) { config_line_append(&get_options_mutable()->AddressMap, "MapAddress", "irc.example.com abcdefghijklmnop.onion"); config_register_addressmaps(get_options()); test_entryconn_rewrite_mapaddress_automap_onion_common(arg, 1, 0); } /* As above, with no mapping. */ static void test_entryconn_rewrite_mapaddress_automap_onion4(void *arg) { char *msg = NULL; get_options_mutable()->AutomapHostsOnResolve = 1; smartlist_add(get_options_mutable()->AutomapHostsSuffixes, tor_strdup(".onion")); parse_virtual_addr_network("192.168.0.0/16", AF_INET, 0, &msg); test_entryconn_rewrite_mapaddress_automap_onion_common(arg, 0, 1); } #define REWRITE(name) \ { #name, test_entryconn_##name, TT_FORK, &test_rewrite_setup, NULL } struct testcase_t entryconn_tests[] = { REWRITE(rewrite_basic), REWRITE(rewrite_bad_dotexit), REWRITE(rewrite_automap_ipv4), REWRITE(rewrite_automap_ipv6), // REWRITE(rewrite_automap_reverse), REWRITE(rewrite_cached_dns_ipv4), REWRITE(rewrite_cached_dns_ipv6), REWRITE(rewrite_unmapped_virtual), REWRITE(rewrite_mapaddress), REWRITE(rewrite_reject_internal_reverse), REWRITE(rewrite_automap_exit), REWRITE(rewrite_mapaddress_exit), REWRITE(rewrite_mapaddress_automap_onion), REWRITE(rewrite_mapaddress_automap_onion2), REWRITE(rewrite_mapaddress_automap_onion3), REWRITE(rewrite_mapaddress_automap_onion4), END_OF_TESTCASES }; tor-0.2.7.6/src/test/bench.c0000644000175000017500000004204712632034724012414 00000000000000/* Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /* Ordinarily defined in tor_main.c; this bit is just here to provide one * since we're not linking to tor_main.c */ const char tor_git_revision[] = ""; /** * \file bench.c * \brief Benchmarks for lower level Tor modules. **/ #include "orconfig.h" #include "or.h" #include "onion_tap.h" #include "relay.h" #include #include #include #include #include #include "config.h" #include "crypto_curve25519.h" #include "onion_ntor.h" #include "crypto_ed25519.h" #if defined(HAVE_CLOCK_GETTIME) && defined(CLOCK_PROCESS_CPUTIME_ID) static uint64_t nanostart; static inline uint64_t timespec_to_nsec(const struct timespec *ts) { return ((uint64_t)ts->tv_sec)*1000000000 + ts->tv_nsec; } static void reset_perftime(void) { struct timespec ts; int r; r = clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &ts); tor_assert(r == 0); nanostart = timespec_to_nsec(&ts); } static uint64_t perftime(void) { struct timespec ts; int r; r = clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &ts); tor_assert(r == 0); return timespec_to_nsec(&ts) - nanostart; } #else static struct timeval tv_start = { 0, 0 }; static void reset_perftime(void) { tor_gettimeofday(&tv_start); } static uint64_t perftime(void) { struct timeval now, out; tor_gettimeofday(&now); timersub(&now, &tv_start, &out); return ((uint64_t)out.tv_sec)*1000000000 + out.tv_usec*1000; } #endif #define NANOCOUNT(start,end,iters) \ ( ((double)((end)-(start))) / (iters) ) #define MICROCOUNT(start,end,iters) \ ( NANOCOUNT((start), (end), (iters)) / 1000.0 ) /** Run AES performance benchmarks. */ static void bench_aes(void) { int len, i; char *b1, *b2; crypto_cipher_t *c; uint64_t start, end; const int bytes_per_iter = (1<<24); reset_perftime(); c = crypto_cipher_new(NULL); for (len = 1; len <= 8192; len *= 2) { int iters = bytes_per_iter / len; b1 = tor_malloc_zero(len); b2 = tor_malloc_zero(len); start = perftime(); for (i = 0; i < iters; ++i) { crypto_cipher_encrypt(c, b1, b2, len); } end = perftime(); tor_free(b1); tor_free(b2); printf("%d bytes: %.2f nsec per byte\n", len, NANOCOUNT(start, end, iters*len)); } crypto_cipher_free(c); } static void bench_onion_TAP(void) { const int iters = 1<<9; int i; crypto_pk_t *key, *key2; uint64_t start, end; char os[TAP_ONIONSKIN_CHALLENGE_LEN]; char or[TAP_ONIONSKIN_REPLY_LEN]; crypto_dh_t *dh_out; key = crypto_pk_new(); key2 = crypto_pk_new(); if (crypto_pk_generate_key_with_bits(key, 1024) < 0) goto done; if (crypto_pk_generate_key_with_bits(key2, 1024) < 0) goto done; reset_perftime(); start = perftime(); for (i = 0; i < iters; ++i) { onion_skin_TAP_create(key, &dh_out, os); crypto_dh_free(dh_out); } end = perftime(); printf("Client-side, part 1: %f usec.\n", NANOCOUNT(start, end, iters)/1e3); onion_skin_TAP_create(key, &dh_out, os); start = perftime(); for (i = 0; i < iters; ++i) { char key_out[CPATH_KEY_MATERIAL_LEN]; onion_skin_TAP_server_handshake(os, key, NULL, or, key_out, sizeof(key_out)); } end = perftime(); printf("Server-side, key guessed right: %f usec\n", NANOCOUNT(start, end, iters)/1e3); start = perftime(); for (i = 0; i < iters; ++i) { char key_out[CPATH_KEY_MATERIAL_LEN]; onion_skin_TAP_server_handshake(os, key2, key, or, key_out, sizeof(key_out)); } end = perftime(); printf("Server-side, key guessed wrong: %f usec.\n", NANOCOUNT(start, end, iters)/1e3); start = perftime(); for (i = 0; i < iters; ++i) { crypto_dh_t *dh; char key_out[CPATH_KEY_MATERIAL_LEN]; int s; dh = crypto_dh_dup(dh_out); s = onion_skin_TAP_client_handshake(dh, or, key_out, sizeof(key_out), NULL); crypto_dh_free(dh); tor_assert(s == 0); } end = perftime(); printf("Client-side, part 2: %f usec.\n", NANOCOUNT(start, end, iters)/1e3); done: crypto_pk_free(key); crypto_pk_free(key2); } static void bench_onion_ntor_impl(void) { const int iters = 1<<10; int i; curve25519_keypair_t keypair1, keypair2; uint64_t start, end; uint8_t os[NTOR_ONIONSKIN_LEN]; uint8_t or[NTOR_REPLY_LEN]; ntor_handshake_state_t *state = NULL; uint8_t nodeid[DIGEST_LEN]; di_digest256_map_t *keymap = NULL; curve25519_secret_key_generate(&keypair1.seckey, 0); curve25519_public_key_generate(&keypair1.pubkey, &keypair1.seckey); curve25519_secret_key_generate(&keypair2.seckey, 0); curve25519_public_key_generate(&keypair2.pubkey, &keypair2.seckey); dimap_add_entry(&keymap, keypair1.pubkey.public_key, &keypair1); dimap_add_entry(&keymap, keypair2.pubkey.public_key, &keypair2); reset_perftime(); start = perftime(); for (i = 0; i < iters; ++i) { onion_skin_ntor_create(nodeid, &keypair1.pubkey, &state, os); ntor_handshake_state_free(state); state = NULL; } end = perftime(); printf("Client-side, part 1: %f usec.\n", NANOCOUNT(start, end, iters)/1e3); state = NULL; onion_skin_ntor_create(nodeid, &keypair1.pubkey, &state, os); start = perftime(); for (i = 0; i < iters; ++i) { uint8_t key_out[CPATH_KEY_MATERIAL_LEN]; onion_skin_ntor_server_handshake(os, keymap, NULL, nodeid, or, key_out, sizeof(key_out)); } end = perftime(); printf("Server-side: %f usec\n", NANOCOUNT(start, end, iters)/1e3); start = perftime(); for (i = 0; i < iters; ++i) { uint8_t key_out[CPATH_KEY_MATERIAL_LEN]; int s; s = onion_skin_ntor_client_handshake(state, or, key_out, sizeof(key_out), NULL); tor_assert(s == 0); } end = perftime(); printf("Client-side, part 2: %f usec.\n", NANOCOUNT(start, end, iters)/1e3); ntor_handshake_state_free(state); dimap_free(keymap, NULL); } static void bench_onion_ntor(void) { int ed; for (ed = 0; ed <= 1; ++ed) { printf("Ed25519-based basepoint multiply = %s.\n", (ed == 0) ? "disabled" : "enabled"); curve25519_set_impl_params(ed); bench_onion_ntor_impl(); } } static void bench_ed25519_impl(void) { uint64_t start, end; const int iters = 1<<12; int i; const uint8_t msg[] = "but leaving, could not tell what they had heard"; ed25519_signature_t sig; ed25519_keypair_t kp; curve25519_keypair_t curve_kp; ed25519_public_key_t pubkey_tmp; ed25519_secret_key_generate(&kp.seckey, 0); start = perftime(); for (i = 0; i < iters; ++i) { ed25519_public_key_generate(&kp.pubkey, &kp.seckey); } end = perftime(); printf("Generate public key: %.2f usec\n", MICROCOUNT(start, end, iters)); start = perftime(); for (i = 0; i < iters; ++i) { ed25519_sign(&sig, msg, sizeof(msg), &kp); } end = perftime(); printf("Sign a short message: %.2f usec\n", MICROCOUNT(start, end, iters)); start = perftime(); for (i = 0; i < iters; ++i) { ed25519_checksig(&sig, msg, sizeof(msg), &kp.pubkey); } end = perftime(); printf("Verify signature: %.2f usec\n", MICROCOUNT(start, end, iters)); curve25519_keypair_generate(&curve_kp, 0); start = perftime(); for (i = 0; i < iters; ++i) { ed25519_public_key_from_curve25519_public_key(&pubkey_tmp, &curve_kp.pubkey, 1); } end = perftime(); printf("Convert public point from curve25519: %.2f usec\n", MICROCOUNT(start, end, iters)); curve25519_keypair_generate(&curve_kp, 0); start = perftime(); for (i = 0; i < iters; ++i) { ed25519_public_blind(&pubkey_tmp, &kp.pubkey, msg); } end = perftime(); printf("Blind a public key: %.2f usec\n", MICROCOUNT(start, end, iters)); } static void bench_ed25519(void) { int donna; for (donna = 0; donna <= 1; ++donna) { printf("Ed25519-donna = %s.\n", (donna == 0) ? "disabled" : "enabled"); ed25519_set_impl_params(donna); bench_ed25519_impl(); } } static void bench_cell_aes(void) { uint64_t start, end; const int len = 509; const int iters = (1<<16); const int max_misalign = 15; char *b = tor_malloc(len+max_misalign); crypto_cipher_t *c; int i, misalign; c = crypto_cipher_new(NULL); reset_perftime(); for (misalign = 0; misalign <= max_misalign; ++misalign) { start = perftime(); for (i = 0; i < iters; ++i) { crypto_cipher_crypt_inplace(c, b+misalign, len); } end = perftime(); printf("%d bytes, misaligned by %d: %.2f nsec per byte\n", len, misalign, NANOCOUNT(start, end, iters*len)); } crypto_cipher_free(c); tor_free(b); } /** Run digestmap_t performance benchmarks. */ static void bench_dmap(void) { smartlist_t *sl = smartlist_new(); smartlist_t *sl2 = smartlist_new(); uint64_t start, end, pt2, pt3, pt4; int iters = 8192; const int elts = 4000; const int fpostests = 100000; char d[20]; int i,n=0, fp = 0; digestmap_t *dm = digestmap_new(); digestset_t *ds = digestset_new(elts); for (i = 0; i < elts; ++i) { crypto_rand(d, 20); smartlist_add(sl, tor_memdup(d, 20)); } for (i = 0; i < elts; ++i) { crypto_rand(d, 20); smartlist_add(sl2, tor_memdup(d, 20)); } printf("nbits=%d\n", ds->mask+1); reset_perftime(); start = perftime(); for (i = 0; i < iters; ++i) { SMARTLIST_FOREACH(sl, const char *, cp, digestmap_set(dm, cp, (void*)1)); } pt2 = perftime(); printf("digestmap_set: %.2f ns per element\n", NANOCOUNT(start, pt2, iters*elts)); for (i = 0; i < iters; ++i) { SMARTLIST_FOREACH(sl, const char *, cp, digestmap_get(dm, cp)); SMARTLIST_FOREACH(sl2, const char *, cp, digestmap_get(dm, cp)); } pt3 = perftime(); printf("digestmap_get: %.2f ns per element\n", NANOCOUNT(pt2, pt3, iters*elts*2)); for (i = 0; i < iters; ++i) { SMARTLIST_FOREACH(sl, const char *, cp, digestset_add(ds, cp)); } pt4 = perftime(); printf("digestset_add: %.2f ns per element\n", NANOCOUNT(pt3, pt4, iters*elts)); for (i = 0; i < iters; ++i) { SMARTLIST_FOREACH(sl, const char *, cp, n += digestset_contains(ds, cp)); SMARTLIST_FOREACH(sl2, const char *, cp, n += digestset_contains(ds, cp)); } end = perftime(); printf("digestset_contains: %.2f ns per element.\n", NANOCOUNT(pt4, end, iters*elts*2)); /* We need to use this, or else the whole loop gets optimized out. */ printf("Hits == %d\n", n); for (i = 0; i < fpostests; ++i) { crypto_rand(d, 20); if (digestset_contains(ds, d)) ++fp; } printf("False positive rate on digestset: %.2f%%\n", (fp/(double)fpostests)*100); digestmap_free(dm, NULL); digestset_free(ds); SMARTLIST_FOREACH(sl, char *, cp, tor_free(cp)); SMARTLIST_FOREACH(sl2, char *, cp, tor_free(cp)); smartlist_free(sl); smartlist_free(sl2); } static void bench_siphash(void) { char buf[128]; int lens[] = { 7, 8, 15, 16, 20, 32, 111, 128, -1 }; int i, j; uint64_t start, end; const int N = 300000; crypto_rand(buf, sizeof(buf)); for (i = 0; lens[i] > 0; ++i) { reset_perftime(); start = perftime(); for (j = 0; j < N; ++j) { siphash24g(buf, lens[i]); } end = perftime(); printf("siphash24g(%d): %.2f ns per call\n", lens[i], NANOCOUNT(start,end,N)); } } static void bench_cell_ops(void) { const int iters = 1<<16; int i; /* benchmarks for cell ops at relay. */ or_circuit_t *or_circ = tor_malloc_zero(sizeof(or_circuit_t)); cell_t *cell = tor_malloc(sizeof(cell_t)); int outbound; uint64_t start, end; crypto_rand((char*)cell->payload, sizeof(cell->payload)); /* Mock-up or_circuit_t */ or_circ->base_.magic = OR_CIRCUIT_MAGIC; or_circ->base_.purpose = CIRCUIT_PURPOSE_OR; /* Initialize crypto */ or_circ->p_crypto = crypto_cipher_new(NULL); or_circ->n_crypto = crypto_cipher_new(NULL); or_circ->p_digest = crypto_digest_new(); or_circ->n_digest = crypto_digest_new(); reset_perftime(); for (outbound = 0; outbound <= 1; ++outbound) { cell_direction_t d = outbound ? CELL_DIRECTION_OUT : CELL_DIRECTION_IN; start = perftime(); for (i = 0; i < iters; ++i) { char recognized = 0; crypt_path_t *layer_hint = NULL; relay_crypt(TO_CIRCUIT(or_circ), cell, d, &layer_hint, &recognized); } end = perftime(); printf("%sbound cells: %.2f ns per cell. (%.2f ns per byte of payload)\n", outbound?"Out":" In", NANOCOUNT(start,end,iters), NANOCOUNT(start,end,iters*CELL_PAYLOAD_SIZE)); } crypto_digest_free(or_circ->p_digest); crypto_digest_free(or_circ->n_digest); crypto_cipher_free(or_circ->p_crypto); crypto_cipher_free(or_circ->n_crypto); tor_free(or_circ); tor_free(cell); } static void bench_dh(void) { const int iters = 1<<10; int i; uint64_t start, end; reset_perftime(); start = perftime(); for (i = 0; i < iters; ++i) { char dh_pubkey_a[DH_BYTES], dh_pubkey_b[DH_BYTES]; char secret_a[DH_BYTES], secret_b[DH_BYTES]; ssize_t slen_a, slen_b; crypto_dh_t *dh_a = crypto_dh_new(DH_TYPE_TLS); crypto_dh_t *dh_b = crypto_dh_new(DH_TYPE_TLS); crypto_dh_generate_public(dh_a); crypto_dh_generate_public(dh_b); crypto_dh_get_public(dh_a, dh_pubkey_a, sizeof(dh_pubkey_a)); crypto_dh_get_public(dh_b, dh_pubkey_b, sizeof(dh_pubkey_b)); slen_a = crypto_dh_compute_secret(LOG_NOTICE, dh_a, dh_pubkey_b, sizeof(dh_pubkey_b), secret_a, sizeof(secret_a)); slen_b = crypto_dh_compute_secret(LOG_NOTICE, dh_b, dh_pubkey_a, sizeof(dh_pubkey_a), secret_b, sizeof(secret_b)); tor_assert(slen_a == slen_b); tor_assert(!memcmp(secret_a, secret_b, slen_a)); crypto_dh_free(dh_a); crypto_dh_free(dh_b); } end = perftime(); printf("Complete DH handshakes (1024 bit, public and private ops):\n" " %f millisec each.\n", NANOCOUNT(start, end, iters)/1e6); } static void bench_ecdh_impl(int nid, const char *name) { const int iters = 1<<10; int i; uint64_t start, end; reset_perftime(); start = perftime(); for (i = 0; i < iters; ++i) { char secret_a[DH_BYTES], secret_b[DH_BYTES]; ssize_t slen_a, slen_b; EC_KEY *dh_a = EC_KEY_new_by_curve_name(nid); EC_KEY *dh_b = EC_KEY_new_by_curve_name(nid); if (!dh_a || !dh_b) { puts("Skipping. (No implementation?)"); return; } EC_KEY_generate_key(dh_a); EC_KEY_generate_key(dh_b); slen_a = ECDH_compute_key(secret_a, DH_BYTES, EC_KEY_get0_public_key(dh_b), dh_a, NULL); slen_b = ECDH_compute_key(secret_b, DH_BYTES, EC_KEY_get0_public_key(dh_a), dh_b, NULL); tor_assert(slen_a == slen_b); tor_assert(!memcmp(secret_a, secret_b, slen_a)); EC_KEY_free(dh_a); EC_KEY_free(dh_b); } end = perftime(); printf("Complete ECDH %s handshakes (2 public and 2 private ops):\n" " %f millisec each.\n", name, NANOCOUNT(start, end, iters)/1e6); } static void bench_ecdh_p256(void) { bench_ecdh_impl(NID_X9_62_prime256v1, "P-256"); } static void bench_ecdh_p224(void) { bench_ecdh_impl(NID_secp224r1, "P-224"); } typedef void (*bench_fn)(void); typedef struct benchmark_t { const char *name; bench_fn fn; int enabled; } benchmark_t; #define ENT(s) { #s , bench_##s, 0 } static struct benchmark_t benchmarks[] = { ENT(dmap), ENT(siphash), ENT(aes), ENT(onion_TAP), ENT(onion_ntor), ENT(ed25519), ENT(cell_aes), ENT(cell_ops), ENT(dh), ENT(ecdh_p256), ENT(ecdh_p224), {NULL,NULL,0} }; static benchmark_t * find_benchmark(const char *name) { benchmark_t *b; for (b = benchmarks; b->name; ++b) { if (!strcmp(name, b->name)) { return b; } } return NULL; } /** Main entry point for benchmark code: parse the command line, and run * some benchmarks. */ int main(int argc, const char **argv) { int i; int list=0, n_enabled=0; benchmark_t *b; char *errmsg; or_options_t *options; tor_threads_init(); for (i = 1; i < argc; ++i) { if (!strcmp(argv[i], "--list")) { list = 1; } else { benchmark_t *b = find_benchmark(argv[i]); ++n_enabled; if (b) { b->enabled = 1; } else { printf("No such benchmark as %s\n", argv[i]); } } } reset_perftime(); crypto_seed_rng(); crypto_init_siphash_key(); options = options_new(); init_logging(1); options->command = CMD_RUN_UNITTESTS; options->DataDirectory = tor_strdup(""); options_init(options); if (set_options(options, &errmsg) < 0) { printf("Failed to set initial options: %s\n", errmsg); tor_free(errmsg); return 1; } for (b = benchmarks; b->name; ++b) { if (b->enabled || n_enabled == 0) { printf("===== %s =====\n", b->name); if (!list) b->fn(); } } return 0; } tor-0.2.7.6/src/test/test_helpers.c0000644000175000017500000000467212621363246014042 00000000000000/* Copyright (c) 2014, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file test_helpers.c * \brief Some helper functions to avoid code duplication in unit tests. */ #define ROUTERLIST_PRIVATE #include "orconfig.h" #include "or.h" #include "routerlist.h" #include "nodelist.h" #include "test.h" #include "test_helpers.h" #include "test_descriptors.inc" /* Return a statically allocated string representing yesterday's date * in ISO format. We use it so that state file items are not found to * be outdated. */ const char * get_yesterday_date_str(void) { static char buf[ISO_TIME_LEN+1]; time_t yesterday = time(NULL) - 24*60*60; format_iso_time(buf, yesterday); return buf; } /* NOP replacement for router_descriptor_is_older_than() */ static int router_descriptor_is_older_than_replacement(const routerinfo_t *router, int seconds) { (void) router; (void) seconds; return 0; } /** Parse a file containing router descriptors and load them to our routerlist. This function is used to setup an artificial network so that we can conduct tests on it. */ void helper_setup_fake_routerlist(void) { int retval; routerlist_t *our_routerlist = NULL; smartlist_t *our_nodelist = NULL; /* Read the file that contains our test descriptors. */ /* We need to mock this function otherwise the descriptors will not accepted as they are too old. */ MOCK(router_descriptor_is_older_than, router_descriptor_is_older_than_replacement); /* Load all the test descriptors to the routerlist. */ retval = router_load_routers_from_string(TEST_DESCRIPTORS, NULL, SAVED_IN_JOURNAL, NULL, 0, NULL); tt_int_op(retval, ==, HELPER_NUMBER_OF_DESCRIPTORS); /* Sanity checking of routerlist and nodelist. */ our_routerlist = router_get_routerlist(); tt_int_op(smartlist_len(our_routerlist->routers), ==, HELPER_NUMBER_OF_DESCRIPTORS); routerlist_assert_ok(our_routerlist); our_nodelist = nodelist_get_list(); tt_int_op(smartlist_len(our_nodelist), ==, HELPER_NUMBER_OF_DESCRIPTORS); /* Mark all routers as non-guards but up and running! */ SMARTLIST_FOREACH_BEGIN(our_nodelist, node_t *, node) { node->is_running = 1; node->is_valid = 1; node->is_possible_guard = 0; } SMARTLIST_FOREACH_END(node); done: UNMOCK(router_descriptor_is_older_than); } tor-0.2.7.6/src/include.am0000644000175000017500000000034712621363246012153 00000000000000include src/ext/include.am include src/trunnel/include.am include src/common/include.am include src/or/include.am include src/test/include.am include src/tools/include.am include src/win32/include.am include src/config/include.am tor-0.2.7.6/src/config/0000755000175000017500000000000012632347251011532 500000000000000tor-0.2.7.6/src/config/torrc.sample.in0000644000175000017500000002262512621364222014415 00000000000000## Configuration file for a typical Tor user ## Last updated 22 September 2015 for Tor 0.2.7.3-alpha. ## (may or may not work for much older or much newer versions of Tor.) ## ## Lines that begin with "## " try to explain what's going on. Lines ## that begin with just "#" are disabled commands: you can enable them ## by removing the "#" symbol. ## ## See 'man tor', or https://www.torproject.org/docs/tor-manual.html, ## for more options you can use in this file. ## ## Tor will look for this file in various places based on your platform: ## https://www.torproject.org/docs/faq#torrc ## Tor opens a SOCKS proxy on port 9050 by default -- even if you don't ## configure one below. Set "SOCKSPort 0" if you plan to run Tor only ## as a relay, and not make any local application connections yourself. #SOCKSPort 9050 # Default: Bind to localhost:9050 for local connections. #SOCKSPort 192.168.0.1:9100 # Bind to this address:port too. ## Entry policies to allow/deny SOCKS requests based on IP address. ## First entry that matches wins. If no SOCKSPolicy is set, we accept ## all (and only) requests that reach a SOCKSPort. Untrusted users who ## can access your SOCKSPort may be able to learn about the connections ## you make. #SOCKSPolicy accept 192.168.0.0/16 #SOCKSPolicy accept6 FC00::/7 #SOCKSPolicy reject * ## Logs go to stdout at level "notice" unless redirected by something ## else, like one of the below lines. You can have as many Log lines as ## you want. ## ## We advise using "notice" in most cases, since anything more verbose ## may provide sensitive information to an attacker who obtains the logs. ## ## Send all messages of level 'notice' or higher to @LOCALSTATEDIR@/log/tor/notices.log #Log notice file @LOCALSTATEDIR@/log/tor/notices.log ## Send every possible message to @LOCALSTATEDIR@/log/tor/debug.log #Log debug file @LOCALSTATEDIR@/log/tor/debug.log ## Use the system log instead of Tor's logfiles #Log notice syslog ## To send all messages to stderr: #Log debug stderr ## Uncomment this to start the process in the background... or use ## --runasdaemon 1 on the command line. This is ignored on Windows; ## see the FAQ entry if you want Tor to run as an NT service. #RunAsDaemon 1 ## The directory for keeping all the keys/etc. By default, we store ## things in $HOME/.tor on Unix, and in Application Data\tor on Windows. #DataDirectory @LOCALSTATEDIR@/lib/tor ## The port on which Tor will listen for local connections from Tor ## controller applications, as documented in control-spec.txt. #ControlPort 9051 ## If you enable the controlport, be sure to enable one of these ## authentication methods, to prevent attackers from accessing it. #HashedControlPassword 16:872860B76453A77D60CA2BB8C1A7042072093276A3D701AD684053EC4C #CookieAuthentication 1 ############### This section is just for location-hidden services ### ## Once you have configured a hidden service, you can look at the ## contents of the file ".../hidden_service/hostname" for the address ## to tell people. ## ## HiddenServicePort x y:z says to redirect requests on port x to the ## address y:z. #HiddenServiceDir @LOCALSTATEDIR@/lib/tor/hidden_service/ #HiddenServicePort 80 127.0.0.1:80 #HiddenServiceDir @LOCALSTATEDIR@/lib/tor/other_hidden_service/ #HiddenServicePort 80 127.0.0.1:80 #HiddenServicePort 22 127.0.0.1:22 ################ This section is just for relays ##################### # ## See https://www.torproject.org/docs/tor-doc-relay for details. ## Required: what port to advertise for incoming Tor connections. #ORPort 9001 ## If you want to listen on a port other than the one advertised in ## ORPort (e.g. to advertise 443 but bind to 9090), you can do it as ## follows. You'll need to do ipchains or other port forwarding ## yourself to make this work. #ORPort 443 NoListen #ORPort 127.0.0.1:9090 NoAdvertise ## The IP address or full DNS name for incoming connections to your ## relay. Leave commented out and Tor will guess. #Address noname.example.com ## If you have multiple network interfaces, you can specify one for ## outgoing traffic to use. # OutboundBindAddress 10.0.0.5 ## A handle for your relay, so people don't have to refer to it by key. #Nickname ididnteditheconfig ## Define these to limit how much relayed traffic you will allow. Your ## own traffic is still unthrottled. Note that RelayBandwidthRate must ## be at least 20 kilobytes per second. ## Note that units for these config options are bytes (per second), not ## bits (per second), and that prefixes are binary prefixes, i.e. 2^10, ## 2^20, etc. #RelayBandwidthRate 100 KBytes # Throttle traffic to 100KB/s (800Kbps) #RelayBandwidthBurst 200 KBytes # But allow bursts up to 200KB (1600Kb) ## Use these to restrict the maximum traffic per day, week, or month. ## Note that this threshold applies separately to sent and received bytes, ## not to their sum: setting "40 GB" may allow up to 80 GB total before ## hibernating. ## ## Set a maximum of 40 gigabytes each way per period. #AccountingMax 40 GBytes ## Each period starts daily at midnight (AccountingMax is per day) #AccountingStart day 00:00 ## Each period starts on the 3rd of the month at 15:00 (AccountingMax ## is per month) #AccountingStart month 3 15:00 ## Administrative contact information for this relay or bridge. This line ## can be used to contact you if your relay or bridge is misconfigured or ## something else goes wrong. Note that we archive and publish all ## descriptors containing these lines and that Google indexes them, so ## spammers might also collect them. You may want to obscure the fact that ## it's an email address and/or generate a new address for this purpose. #ContactInfo Random Person ## You might also include your PGP or GPG fingerprint if you have one: #ContactInfo 0xFFFFFFFF Random Person ## Uncomment this to mirror directory information for others. Please do ## if you have enough bandwidth. #DirPort 9030 # what port to advertise for directory connections ## If you want to listen on a port other than the one advertised in ## DirPort (e.g. to advertise 80 but bind to 9091), you can do it as ## follows. below too. You'll need to do ipchains or other port ## forwarding yourself to make this work. #DirPort 80 NoListen #DirPort 127.0.0.1:9091 NoAdvertise ## Uncomment to return an arbitrary blob of html on your DirPort. Now you ## can explain what Tor is if anybody wonders why your IP address is ## contacting them. See contrib/tor-exit-notice.html in Tor's source ## distribution for a sample. #DirPortFrontPage @CONFDIR@/tor-exit-notice.html ## Uncomment this if you run more than one Tor relay, and add the identity ## key fingerprint of each Tor relay you control, even if they're on ## different networks. You declare it here so Tor clients can avoid ## using more than one of your relays in a single circuit. See ## https://www.torproject.org/docs/faq#MultipleRelays ## However, you should never include a bridge's fingerprint here, as it would ## break its concealability and potentially reveal its IP/TCP address. #MyFamily $keyid,$keyid,... ## A comma-separated list of exit policies. They're considered first ## to last, and the first match wins. ## ## If you want to allow the same ports on IPv4 and IPv6, write your rules ## using accept/reject *. If you want to allow different ports on IPv4 and ## IPv6, write your IPv6 rules using accept6/reject6 *6, and your IPv4 rules ## using accept/reject *4. ## ## If you want to _replace_ the default exit policy, end this with either a ## reject *:* or an accept *:*. Otherwise, you're _augmenting_ (prepending to) ## the default exit policy. Leave commented to just use the default, which is ## described in the man page or at ## https://www.torproject.org/documentation.html ## ## Look at https://www.torproject.org/faq-abuse.html#TypicalAbuses ## for issues you might encounter if you use the default exit policy. ## ## If certain IPs and ports are blocked externally, e.g. by your firewall, ## you should update your exit policy to reflect this -- otherwise Tor ## users will be told that those destinations are down. ## ## For security, by default Tor rejects connections to private (local) ## networks, including to the configured primary public IPv4 and IPv6 addresses, ## and any public IPv4 and IPv6 addresses on any interface on the relay. ## See the man page entry for ExitPolicyRejectPrivate if you want to allow ## "exit enclaving". ## #ExitPolicy accept *:6660-6667,reject *:* # allow irc ports on IPv4 and IPv6 but no more #ExitPolicy accept *:119 # accept nntp ports on IPv4 and IPv6 as well as default exit policy #ExitPolicy accept *4:119 # accept nntp ports on IPv4 only as well as default exit policy #ExitPolicy accept6 *6:119 # accept nntp ports on IPv6 only as well as default exit policy #ExitPolicy reject *:* # no exits allowed ## Bridge relays (or "bridges") are Tor relays that aren't listed in the ## main directory. Since there is no complete public list of them, even an ## ISP that filters connections to all the known Tor relays probably ## won't be able to block all the bridges. Also, websites won't treat you ## differently because they won't know you're running Tor. If you can ## be a real relay, please do; but if not, be a bridge! #BridgeRelay 1 ## By default, Tor will advertise your bridge to users through various ## mechanisms like https://bridges.torproject.org/. If you want to run ## a private bridge, for example because you'll give out your bridge ## address manually to your friends, uncomment this line: #PublishServerDescriptor 0 tor-0.2.7.6/src/config/geoip0000644000175000017500001223772312632311025012507 00000000000000# Last updated based on December 1 2015 Maxmind GeoLite2 Country # wget https://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz # gunzip GeoLite2-Country.mmdb.gz # python mmdb-convert.py GeoLite2-Country.mmdb 16777216,16777471,AU 16777472,16778239,CN 16778240,16779263,AU 16779264,16781311,CN 16781312,16785407,JP 16785408,16793599,CN 16793600,16809983,JP 16809984,16842751,TH 16842752,16843007,CN 16843008,16843263,AU 16843264,16859135,CN 16859136,16875519,JP 16875520,16908287,TH 16908288,16909055,CN 16909056,16909311,US 16909312,16941055,CN 16941056,16973823,TH 16973824,17039359,CN 17039360,17039615,AU 17039616,17072127,CN 17072128,17104895,TH 17104896,17170431,JP 17170432,17301503,IN 17301504,17367039,CN 17367040,17432575,MY 17432576,17435135,CN 17435136,17435391,AU 17435392,17465343,CN 17465344,17498111,TH 17498112,17563647,KR 17563648,17825791,CN 17825792,18087935,KR 18087936,18153471,TH 18153472,18219007,JP 18219008,18350079,IN 18350080,18874367,CN 18874368,18907135,MY 18907136,18923519,SG 18923520,18939903,HK 18939904,19005439,JP 19005440,19005440,CN 19005441,19136511,TW 19136512,19202047,HK 19202048,19267583,PH 19267584,19398655,IN 19398656,19726335,AU 19726336,19791871,CN 19791872,19922943,TH 19922944,20185087,CN 20185088,20447231,VN 20447232,20971519,CN 20971520,21102591,HK 21102592,21233663,JP 21233664,21495807,CN 21495808,22020095,JP 22020096,23068671,CN 23068672,24117247,KR 24117248,24379391,JP 24379392,24641535,CN 24641536,27262975,AU 27262976,28311551,TW 28311552,28442623,KR 28442624,28540927,AU 28540928,28573695,TH 28573696,28966911,CN 28966912,29097983,IN 29097984,29884415,CN 29884416,29949951,TW 29949952,30015487,KR 30015488,30408703,CN 30408704,33554431,KR 33554432,33554432,ZA 33554433,34603007,FR 34604544,34605055,DE 34612224,34612735,IL 34620416,34620927,SE 34620928,34621439,IT 34621952,34622463,NL 34636800,34637311,DE 34646528,34647551,DE 34648576,34649087,GR 34659328,34660351,GR 34664448,34668543,DE 34673664,34674687,DE 34733056,34734079,DE 34754560,34758655,GR 34796032,34796543,NL 34803712,34807807,IT 34861056,34865151,DE 34866176,34867199,IT 34880512,34881535,DE 34910976,34911231,ES 34911232,34911743,DE 34911744,34911999,AT 34912000,34912255,GB 34912256,34912511,DE 34912512,34912767,ES 34912768,34913279,DE 34928384,34928639,DE 34930688,34938879,DE 34938880,34947071,FR 34953216,34954751,AT 34954752,34955263,NL 34955264,34959359,AT 34959360,34963455,NL 34992128,34993151,NL 34993152,34993663,FR 34993664,34993919,AT 34993920,34994175,DE 34994176,34995711,FR 34995968,34996223,NL 34999296,35001343,GB 35001344,35002367,FR 35008512,35009023,FR 35010304,35010559,BE 35010560,35011583,FR 35011584,35011839,SE 35020800,35037183,GB 35037184,35054335,FR 35054336,35054591,GB 35055104,35055359,ES 35055872,35056127,NL 35059200,35059711,GB 35060736,35061247,GB 35061248,35061759,FR 35090432,35094527,GR 35127296,35651583,GB 35651584,36700159,IT 36700160,36962303,AE 36962304,37224447,IL 37486592,37748735,RU 37748736,38064639,SE 38064640,38064895,DK 38064896,38134783,SE 38134784,38135039,DK 38135040,38273023,SE 38273024,38797311,KZ 38797312,39059455,PT 39059456,39321599,GR 39321600,39583743,SA 39583744,39845887,RU 39845888,40370175,GB 40370176,40894463,DK 40894464,41094879,IT 41094880,41094887,SI 41094888,41094895,IT 41094896,41094903,SI 41094904,41418751,IT 41418752,41943039,GB 41943040,42205183,DK 42205184,42467327,KZ 42467328,42991615,ES 42991616,43253759,IR 43253760,43515903,NO 43515904,43778047,ES 43778048,44040191,IT 44040192,45088767,DE 45088768,46137343,IR 46137344,46661631,IT 46661632,47710207,DE 47710208,48234495,GB 48234496,49283071,IT 49283072,49807359,DE 49807360,50331647,SE 50331648,68305407,US 68305408,68305919,MX 68305920,68980223,US 68980224,68980479,CA 68980480,70620927,US 70620928,70621183,CA 70621184,71670208,US 71670209,71670209,NL 71670210,83886080,US 83886081,83951615,SY 83951616,83959807,UA 83959808,83961855,ES 83961856,83963903,CY 83963904,83965951,RU 83965952,83967999,CZ 83968000,83972863,DE 83972864,83973119,GB 83973120,83974143,DE 83974144,83974399,GB 83974400,83976191,DE 83976192,83978239,CH 83978240,83980287,IQ 83980288,83982335,CH 83982336,84017151,DE 84017152,84021247,IT 84021248,84023295,GB 84023296,84025343,ES 84025344,84033535,RU 84033536,84037631,NL 84037632,84039679,TR 84039680,84041727,ES 84041728,84049919,GB 84049920,84082687,RO 84082688,84148223,RU 84148224,84410367,DE 84410368,84418559,RU 84418560,84419583,BZ 84419584,84420607,RU 84420608,84421631,NL 84421632,84421759,MX 84421760,84421887,PA 84421888,84422015,BR 84422016,84422143,CL 84422144,84422271,AR 84422272,84422399,CO 84422400,84422527,PL 84422528,84422655,IT 84422656,84434943,RU 84434944,84443135,IT 84443136,84451327,LB 84451328,84457471,RU 84457472,84459519,ES 84459520,84471807,RU 84471808,84473855,IQ 84475904,84498681,DE 84498682,84498682,NL 84498683,84545535,DE 84545536,84549631,GB 84549632,84551679,GE 84551680,84557823,DE 84557824,84566015,NL 84566016,84574207,GB 84574208,84576255,FR 84576256,84582399,GB 84582400,84590591,DE 84590592,84592639,BR 84592640,84594687,ES 84594688,84598783,DE 84598784,84600831,IQ 84600832,84602879,GB 84602880,84606975,AZ 84606976,84609023,AT 84609024,84615167,GB 84615168,84617215,IT 84617216,84619263,PS 84619264,84621311,DE 84621312,84623359,GR 84623360,84627455,RU 84627456,84631551,GB 84631552,84639743,IT 84639744,84672511,TR 84672512,84934655,RO 84934656,85196799,RU 85196800,85262335,LT 85262336,85327871,OM 85327872,85360639,IR 85360640,85362687,IL 85362688,85364735,GB 85364736,85366783,DE 85366784,85367039,CZ 85367040,85367295,RU 85367296,85367551,SK 85367552,85367807,RU 85367808,85368831,UA 85368832,85377023,RS 85377024,85385215,IR 85385216,85387263,GB 85387264,85389311,SE 85389312,85391359,DE 85391360,85393407,NL 85395456,85395711,TR 85395968,85396223,BE 85396480,85397503,ES 85398528,85398783,SA 85399552,85400063,FR 85401600,85403647,IT 85403648,85405695,FR 85405696,85407743,RU 85407744,85409791,FI 85409792,85417983,IS 85417984,85422079,RU 85422080,85424127,IR 85424128,85426175,TR 85426176,85458943,BE 85458944,85721087,TR 85721088,85723135,HU 85723136,85725183,IT 85725184,85729279,RU 85729280,85731327,IR 85731328,85733375,DE 85733376,85737471,GB 85737472,85753855,DE 85753856,85770239,IL 85770240,85786623,DE 85786624,85852159,IL 85852160,86015999,AE 86016000,86018047,BG 86018048,86020095,SI 86020096,86022143,RU 86022144,86024191,GB 86024192,86026239,DE 86026240,86028287,MD 86028288,86030335,MK 86030336,86032383,DE 86032384,86048767,OM 86048768,86114303,DK 86114304,86147071,KZ 86147072,86155263,ES 86155264,86157311,PS 86157312,86159359,IL 86159360,86161407,UA 86161408,86163455,IT 86163456,86171647,IR 86171648,86173695,DE 86173696,86175743,NL 86175744,86177279,SE 86177280,86177791,US 86177792,86179839,LI 86179840,86220799,RU 86220800,86222607,JE 86222608,86222615,GB 86222616,86222847,JE 86222848,86226943,NL 86226944,86228991,SE 86228992,86231039,BE 86231040,86233087,ES 86233088,86235135,RO 86235136,86237183,ES 86237184,86245375,DE 86245376,86376447,OM 86376448,86409215,AE 86409216,86441983,HU 86441984,86442495,FR 86442496,86442499,ES 86442500,86442507,FR 86442508,86442511,ES 86442512,86442551,FR 86442552,86442559,PL 86442560,86442591,FR 86442592,86442599,IT 86442600,86442687,FR 86442688,86442691,ES 86442692,86442699,FR 86442700,86442700,ES 86442701,86442702,CH 86442703,86442703,ES 86442704,86442723,FR 86442724,86442724,PL 86442725,86442739,FR 86442740,86442743,ES 86442744,86442751,FR 86442752,86443007,GB 86443008,86443047,FR 86443048,86443051,ES 86443052,86443451,FR 86443452,86443455,ES 86443456,86443535,FR 86443536,86443539,ES 86443540,86444119,FR 86444120,86444123,ES 86444124,86444287,FR 86444288,86444291,NL 86444292,86444315,FR 86444316,86444323,ES 86444324,86444387,FR 86444388,86444391,NL 86444392,86444519,FR 86444520,86444523,ES 86444524,86444563,FR 86444564,86444567,NL 86444568,86444575,FR 86444576,86444579,ES 86444580,86444687,FR 86444688,86444691,ES 86444692,86444835,FR 86444836,86444839,NL 86444840,86444843,ES 86444844,86444879,FR 86444880,86444883,NL 86444884,86444895,FR 86444896,86444903,NL 86444904,86445059,FR 86445060,86445063,NL 86445064,86445111,FR 86445112,86445115,NL 86445116,86445251,FR 86445252,86445255,NL 86445256,86445559,FR 86445560,86445563,NL 86445564,86446407,FR 86446408,86446408,DE 86446409,86446411,FR 86446412,86446412,DE 86446413,86446427,FR 86446428,86446431,DE 86446432,86446619,FR 86446620,86446620,DE 86446621,86446655,FR 86446656,86446663,ES 86446664,86446679,FR 86446680,86446683,ES 86446684,86446719,FR 86446720,86446727,NL 86446728,86446731,DE 86446732,86446931,FR 86446932,86446935,CZ 86446936,86446983,FR 86446984,86446991,IT 86446992,86447071,FR 86447072,86447087,DE 86447088,86447095,FR 86447096,86447103,ES 86447104,86447255,FR 86447256,86447263,PL 86447264,86447279,FR 86447280,86447280,DE 86447281,86447287,FR 86447288,86447288,DE 86447289,86448559,FR 86448560,86448575,GB 86448576,86448803,FR 86448804,86448807,FI 86448808,86448851,FR 86448852,86448855,IT 86448856,86448859,PT 86448860,86448951,FR 86448952,86448955,DE 86448956,86449311,FR 86449312,86449343,ES 86449344,86449363,FR 86449364,86449367,DE 86449368,86449499,FR 86449500,86449503,ES 86449504,86449883,FR 86449884,86449884,DE 86449885,86451167,FR 86451168,86451175,NL 86451176,86452067,FR 86452068,86452071,ES 86452072,86452299,FR 86452300,86452303,IT 86452304,86452367,FR 86452368,86452383,GB 86452384,86452671,FR 86452672,86452735,GB 86452736,86453199,FR 86453200,86453203,ES 86453204,86453311,FR 86453312,86453315,ES 86453316,86453836,FR 86453837,86453838,PT 86453839,86453947,FR 86453948,86453951,IE 86453952,86454187,FR 86454188,86454191,IT 86454192,86454279,FR 86454280,86454287,ES 86454288,86454295,IT 86454296,86454299,FR 86454300,86454303,DE 86454304,86454335,FR 86454336,86454343,DE 86454344,86454615,FR 86454616,86454619,ES 86454620,86454823,FR 86454824,86454831,ES 86454832,86455591,FR 86455592,86455595,NL 86455596,86455623,FR 86455624,86455624,DE 86455625,86456195,FR 86456196,86456211,DE 86456212,86456351,FR 86456352,86456367,CH 86456368,86456371,FR 86456372,86456375,ES 86456376,86456655,FR 86456656,86456671,IE 86456672,86456943,FR 86456944,86456947,GR 86456948,86457059,FR 86457060,86457060,DE 86457061,86457087,FR 86457088,86457091,DE 86457092,86457111,FR 86457112,86457112,DE 86457113,86457187,FR 86457188,86457191,ES 86457192,86457403,FR 86457404,86457407,ES 86457408,86457455,FR 86457456,86457456,DE 86457457,86457799,FR 86457800,86457803,ES 86457804,86458303,FR 86458304,86458335,DE 86458336,86466839,FR 86466840,86466847,NL 86466848,86466943,FR 86466944,86466959,DE 86466960,86467320,FR 86467321,86467321,FI 86467322,86467999,FR 86468000,86468003,PL 86468004,86468055,FR 86468056,86468056,DE 86468057,86468199,FR 86468200,86468200,ES 86468201,86468447,FR 86468448,86468479,CZ 86468480,86468587,FR 86468588,86468591,ES 86468592,86469183,FR 86469184,86469247,GB 86469248,86469691,FR 86469692,86469695,DE 86469696,86469779,FR 86469780,86469783,IT 86469784,86469974,FR 86469975,86469982,ES 86469983,86469983,FR 86469984,86469986,ES 86469987,86469988,FR 86469989,86469991,ES 86469992,86469993,FR 86469994,86469995,ES 86469996,86470002,FR 86470003,86470008,ES 86470009,86470015,FR 86470016,86470047,ES 86470048,86470731,FR 86470732,86470735,BE 86470736,86471083,FR 86471084,86471087,DE 86471088,86471123,FR 86471124,86471127,GB 86471128,86471179,FR 86471180,86471180,DE 86471181,86473087,FR 86473088,86473151,PT 86473152,86473359,FR 86473360,86473363,IT 86473364,86473423,FR 86473424,86473427,NL 86473428,86474307,FR 86474308,86474311,DE 86474312,86474475,FR 86474476,86474479,DE 86474480,86474527,FR 86474528,86474531,DE 86474532,86474743,FR 86474744,86474747,LT 86474748,86474751,FR 86474752,86482943,HR 86482944,86484991,RU 86484992,86487039,NL 86487040,86489087,GB 86489088,86491135,NL 86491136,86493183,PL 86493184,86495231,RU 86495232,86497279,ES 86497280,86499327,NL 86499328,86503423,FR 86503424,86505471,DE 86505472,86507519,GB 86507520,86573055,ES 86573056,86638591,SA 86638592,86671359,RU 86671360,86673407,JE 86673408,86675455,DE 86675456,86677503,IT 86677504,86687743,FR 86687744,86695935,IQ 86695936,86704127,SA 86704128,86720511,PT 86720512,86736895,BA 86736896,86745087,RU 86745088,86753279,HR 86753280,86761471,PS 86761472,86763519,CZ 86763520,86765567,IT 86765568,86767615,RU 86767616,86769663,IT 86769664,86773759,RU 86773760,86777855,GB 86777856,86778879,AZ 86778880,86779135,RU 86779136,86779903,AZ 86779904,86786047,RU 86786048,86788095,NO 86788096,86790143,NL 86790144,86794239,TR 86794240,86795263,DE 86795264,86796287,NL 86796288,86797311,US 86797312,86797343,PY 86797344,86798335,DE 86798336,86802431,CH 86802432,86804479,GE 86804480,86806527,DK 86806528,86810623,TR 86810624,86812671,FR 86812672,86814719,RU 86814720,86816767,SE 86816768,86818815,EE 86818816,86822911,SE 86822912,86824959,AT 86824960,86827007,LV 86827008,86831103,GB 86831104,86833151,FI 86833152,86835199,GB 86835200,86837247,DE 86837248,86839295,ES 86839296,86843391,GB 86847488,86849535,GB 86849536,86850559,CZ 86850560,86851327,NL 86851328,86851583,CZ 86851584,86855679,NL 86855680,86859775,RU 86859776,86863871,DE 86863872,86867967,EE 86867968,86872063,JO 86872064,86874111,GB 86874112,86876159,NO 86876160,86880255,ES 86880256,86882303,DE 86882304,86884351,LB 86884352,86900735,RU 86900736,87031807,TR 87031808,87293951,FR 87293952,87359487,IR 87359488,87361535,ES 87361536,87363583,CZ 87363584,87367679,RU 87367680,87375871,IR 87375872,87384063,GB 87384064,87386111,AE 87386112,87388159,CH 87388160,87390207,UA 87390208,87392255,RU 87392256,87425023,BG 87425024,87556095,GR 87556096,87558143,ES 87558144,87560191,IT 87560192,87562239,DE 87562240,87564287,UA 87564288,87566335,HU 87566336,87568383,FR 87568384,87570431,GB 87570432,87572479,ES 87572480,87588863,MD 87588864,87590143,IR 87590144,87590399,US 87590400,87590911,GB 87590912,87592959,RU 87592960,87597055,DK 87597056,87599103,ES 87599104,87601151,GB 87601152,87621631,DE 87621632,87623679,LB 87623680,87625727,KG 87625728,87626880,NL 87626881,87626881,GB 87626882,87627775,NL 87627776,87629823,ES 87629824,87631871,IR 87631872,87633919,DE 87633920,87635967,DK 87635968,87638015,GB 87638016,87640063,UA 87640064,87642111,RS 87642112,87646207,GB 87646208,87646463,FR 87646464,87646975,RE 87646976,87647487,FR 87647488,87647743,RE 87647744,87647999,FR 87648000,87648511,RE 87648512,87648767,FR 87648768,87649535,RE 87649536,87650559,FR 87650560,87650815,RE 87650816,87651327,FR 87651328,87651583,RE 87651584,87652607,FR 87652608,87652863,RE 87652864,87654399,FR 87654400,87670783,PL 87670784,87672831,DE 87672832,87674879,CH 87674880,87676927,AE 87676928,87678975,RU 87678976,87679999,ES 87680000,87681023,NL 87681024,87683071,RU 87683072,87685119,SE 87685120,87687167,NL 87687168,87752703,UA 87752704,87818239,CZ 87818240,87883775,PL 87883776,87885823,IT 87885824,87889919,RU 87889920,87890431,IR 87890432,87890943,US 87890944,87891199,NL 87891200,87891967,US 87891968,87902207,DE 87902208,87904255,IR 87904256,87906303,DE 87906304,87908351,FI 87908352,87912447,BG 87912448,87914495,IE 87914496,87916543,GB 87916544,87932927,DE 87932928,87934975,GB 87934976,87939071,ES 87939072,87941119,IT 87941120,87943167,CH 87943168,87945215,RU 87945216,87947263,HU 87947264,87949311,NL 87949312,87965695,GB 87965696,87967743,DE 87967744,87969791,IT 87969792,87972863,IM 87972864,87973375,GI 87973376,87973887,IM 87973888,87982079,DE 87982080,87988479,RU 87988480,87988735,US 87988736,87988863,LV 87988864,87989247,RU 87989248,87989503,US 87989504,87989759,FR 87989760,87990015,US 87990016,88014847,RU 88014848,88016895,LY 88016896,88018943,IR 88018944,88020991,GB 88020992,88023039,FR 88023040,88031231,TR 88031232,88047615,KZ 88047616,88048639,US 88048640,88049663,LU 88049664,88051711,IT 88051712,88053759,GB 88053760,88055807,RU 88055808,88057855,AM 88057856,88059903,IT 88059904,88061951,DE 88061952,88063999,PL 88064000,88080383,HU 88080384,88604671,GB 88604672,88866815,RU 88866816,88932351,KZ 88932352,88940543,RU 88940544,88948735,GB 88948736,88965119,IT 88965120,88997887,AM 88997888,89063423,IR 89063424,89079807,GB 89079808,89096191,NL 89096192,89128959,RU 89128960,89260031,GB 89260032,89325567,SA 89325568,89327615,NL 89327616,89329663,GB 89329664,89331711,UA 89331712,89333759,DK 89333760,89337855,RO 89337856,89339903,ES 89339904,89341951,FI 89341952,89350143,ES 89350144,89352191,GB 89352192,89354239,IT 89354240,89356287,AE 89356288,89358335,IT 89358336,89374719,DE 89374720,89382911,GB 89382912,89384959,NO 89384960,89387007,FR 89387008,89391103,IE 89391104,90439679,IT 90439680,90456063,DE 90456064,90472447,RU 90472448,90476543,DE 90476544,90478591,FR 90478592,90480639,VG 90480640,90482687,YE 90482688,90484735,GB 90484736,90488831,NO 90488832,90497023,BY 90497024,90499071,NL 90499072,90501119,IT 90503168,90505215,IL 90505216,90529791,RU 90529792,90533119,NL 90533120,90533375,DE 90533376,90533631,NL 90533632,90533887,GB 90533888,90537983,EE 90537984,90540031,RU 90540032,90544127,GB 90544128,90546175,RU 90546176,90548223,DE 90548224,90550271,GB 90550272,90554367,EE 90554368,90560767,RU 90560768,90560895,UZ 90560896,90561023,BG 90561024,90561151,RU 90561152,90561279,NI 90561280,90561407,TH 90561408,90561535,GR 90561536,90561663,GE 90561664,90561791,LV 90561792,90561919,CY 90561920,90562047,CU 90562048,90562175,AM 90562176,90562303,QA 90562304,90570751,RU 90570752,90578943,IT 90578944,90583039,IR 90583040,90587135,CZ 90587136,90589183,PL 90589184,90590207,FR 90590208,90590463,GP 90590464,90591231,FR 90591232,90595327,GB 90595328,90603519,PS 90603520,90605567,ES 90605568,90607615,NL 90607616,90609663,CH 90609664,90611711,RU 90611712,90613759,DE 90613760,90615807,GB 90615808,90617855,BA 90617856,90619903,GB 90619904,90636287,IL 90636288,90701823,DK 90701824,90705919,TR 90705920,90707967,CZ 90707968,90710015,IT 90710016,90718207,UA 90718208,90718719,DE 90718720,90719231,FR 90719232,90719487,AT 90720000,90720255,GB 90720256,90722303,IQ 90722304,90724351,FI 90724352,90726399,CH 90726400,90728447,FR 90728448,90730495,DE 90730496,90734591,NL 90734592,90736639,SY 90736640,90738687,NL 90738688,90740735,DE 90740736,90742527,NL 90742528,90742783,RO 90742784,90750975,BG 90750976,90753023,FR 90753024,90755071,RU 90755072,90757119,PL 90757120,90759167,AT 90759168,90761215,NL 90761216,90763263,KZ 90763264,90764287,IL 90764288,90764799,US 90764800,90765311,IL 90765312,90767359,PL 90767360,90832895,UA 90832896,90898431,IR 90898432,90963967,AE 90963968,91226111,SA 91226112,92274687,IR 92274688,92536831,RU 92536832,92569599,NL 92569600,92585983,AT 92585984,92602367,SA 92602368,92604415,BA 92604416,92606463,PL 92606464,92608511,GB 92608512,92610559,PS 92610560,92612607,CH 92612608,92614655,GB 92614656,92618751,IT 92635136,92643327,BA 92643328,92645375,GE 92645376,92651519,GB 92651520,92654591,SE 92654592,92654623,US 92654624,92654847,SE 92654848,92654879,US 92654880,92655039,SE 92655040,92655071,NL 92655072,92655103,SE 92655104,92655135,US 92655136,92655295,SE 92655296,92655327,NL 92655328,92655359,SE 92655360,92655391,US 92655392,92655615,SE 92655616,92655647,US 92655648,92655727,SE 92655728,92655743,NL 92655744,92655871,SE 92655872,92655903,US 92655904,92655999,SE 92656000,92656015,NL 92656016,92656127,SE 92656128,92656159,US 92656160,92656223,SE 92656224,92656239,NL 92656240,92656383,SE 92656384,92656415,US 92656416,92656591,SE 92656592,92656607,NL 92656608,92656639,SE 92656640,92656671,US 92656672,92656783,SE 92656784,92656799,NL 92656800,92656895,SE 92656896,92656927,US 92656928,92657103,SE 92657104,92657119,NL 92657120,92657151,SE 92657152,92657183,US 92657184,92657279,SE 92657280,92657295,NL 92657296,92657407,SE 92657408,92657439,US 92657440,92657631,SE 92657632,92657663,NL 92657664,92657695,US 92657696,92657775,SE 92657776,92657823,NL 92657824,92657919,SE 92657920,92657951,US 92657952,92658111,SE 92658112,92658127,NL 92658128,92658175,SE 92658176,92658207,US 92658208,92658303,SE 92658304,92658319,NL 92658320,92658431,SE 92658432,92658463,US 92658464,92658575,SE 92658576,92658591,NL 92658592,92658687,SE 92658688,92658719,US 92658720,92658847,SE 92658848,92658879,NL 92658880,92658943,SE 92658944,92658975,US 92658976,92659055,SE 92659056,92659103,NL 92659104,92659199,SE 92659200,92659231,US 92659232,92659295,SE 92659296,92659311,NL 92659312,92659455,SE 92659456,92659471,US 92659472,92659631,SE 92659632,92659647,NL 92659648,92659711,SE 92659712,92663807,AZ 92663808,92665855,GB 92665856,92667903,PL 92667904,92669951,BE 92669952,92671999,GB 92672000,92674047,DE 92674048,92676095,CH 92676096,92680191,ES 92680192,92684287,AZ 92684288,92688383,PL 92688384,92690431,AM 92690432,92692479,IE 92692480,92694527,FR 92694528,92696575,RS 92696576,92698623,ES 92698624,92700671,IT 92700672,92717055,IR 92717056,92719103,SE 92719104,92721151,SY 92721152,92723199,PL 92723200,92725247,RU 92725248,92733439,SY 92733440,92734515,FR 92734516,92734519,IT 92734520,92734735,FR 92734736,92734739,DE 92734740,92735103,FR 92735104,92735119,GB 92735120,92735615,FR 92735616,92735616,DE 92735617,92735619,FR 92735620,92735623,ES 92735624,92735823,FR 92735824,92735827,ES 92735828,92735875,FR 92735876,92735876,DE 92735877,92735999,FR 92736000,92736255,GB 92736256,92736479,FR 92736480,92736480,DE 92736481,92736571,FR 92736572,92736575,NL 92736576,92737751,FR 92737752,92737759,NL 92737760,92738071,FR 92738072,92738075,DE 92738076,92738271,FR 92738272,92738303,NL 92738304,92738663,FR 92738664,92738679,ES 92738680,92739199,FR 92739200,92739215,DE 92739216,92740447,FR 92740448,92740455,IT 92740456,92740611,FR 92740612,92740615,CZ 92740616,92740915,FR 92740916,92740923,DE 92740924,92741203,FR 92741204,92741207,IT 92741208,92741387,FR 92741388,92741395,IT 92741396,92742347,FR 92742348,92742351,IT 92742352,92742415,FR 92742416,92742419,IT 92742420,92742487,FR 92742488,92742491,IT 92742492,92742639,FR 92742640,92742643,ES 92742644,92742691,FR 92742692,92742695,IT 92742696,92742815,FR 92742816,92742819,ES 92742820,92743047,FR 92743048,92743055,NL 92743056,92743243,FR 92743244,92743247,IT 92743248,92743295,FR 92743296,92743307,IT 92743308,92743311,FR 92743312,92743315,IT 92743316,92743355,FR 92743356,92743359,IT 92743360,92743611,FR 92743612,92743615,IT 92743616,92743955,FR 92743956,92743959,IT 92743960,92744243,FR 92744244,92744247,NL 92744248,92744263,FR 92744264,92744267,NL 92744268,92744283,FR 92744284,92744291,NL 92744292,92744555,FR 92744556,92744559,IT 92744560,92744575,NL 92744576,92745207,FR 92745208,92745215,ES 92745216,92746415,FR 92746416,92746431,ES 92746432,92747711,FR 92747712,92747775,GB 92747776,92748751,FR 92748752,92748752,PT 92748753,92748773,FR 92748774,92748774,PT 92748775,92749067,FR 92749068,92749071,GB 92749072,92749747,FR 92749748,92749751,ES 92749752,92751711,FR 92751712,92751712,DE 92751713,92753079,FR 92753080,92753087,ES 92753088,92753547,FR 92753548,92753551,IT 92753552,92754579,FR 92754580,92754583,ES 92754584,92757311,FR 92757312,92757375,ES 92757376,92760159,FR 92760160,92760191,DE 92760192,92760323,FR 92760324,92760327,DE 92760328,92761215,FR 92761216,92761343,DE 92761344,92761390,FR 92761391,92761391,FI 92761392,92762127,FR 92762128,92762135,ES 92762136,92762383,FR 92762384,92762391,ES 92762392,92764223,FR 92764224,92764287,ES 92764288,92782687,FR 92782688,92782719,ES 92782720,92783291,FR 92783292,92783295,DE 92783296,92783543,FR 92783544,92783547,ES 92783548,92784159,FR 92784160,92784191,IT 92784192,92784239,FR 92784240,92784243,DE 92784244,92784255,FR 92784256,92784263,NL 92784264,92785363,FR 92785364,92785367,PT 92785368,92785735,FR 92785736,92785739,DE 92785740,92786827,FR 92786828,92786831,IT 92786832,92789499,FR 92789500,92789503,IT 92789504,92789703,FR 92789704,92789707,DE 92789708,92790271,FR 92790272,92790275,DE 92790276,92790671,FR 92790672,92790679,ES 92790680,92792107,FR 92792108,92792111,IT 92792112,92792119,FR 92792120,92792127,NL 92792128,92792415,FR 92792416,92792431,ES 92792432,92793055,FR 92793056,92793087,ES 92793088,92795123,FR 92795124,92795127,IT 92795128,92796687,FR 92796688,92796691,DE 92796692,92797355,FR 92797356,92797359,DE 92797360,92798231,FR 92798232,92798239,NL 92798240,92798975,FR 92798976,93323263,RU 93323264,93335551,CH 93335552,93339647,IL 93339648,93343743,RU 93343744,93347839,GB 93347840,93356031,RU 93356032,93358079,IR 93358080,93360127,FR 93360128,93362175,ES 93362176,93364223,GB 93364224,93368319,IT 93368320,93370367,GB 93370368,93372415,IT 93372416,93388799,GR 93388800,93415423,CH 93415424,93417471,CZ 93417472,93419519,IR 93419520,93421567,IT 93421568,93425663,DE 93425664,93426687,GI 93426688,93427085,DE 93427086,93427086,GI 93427087,93427199,DE 93427200,93427455,GI 93427456,93427711,DE 93427712,93429759,NO 93429760,93431807,RU 93431808,93433855,ES 93433856,93437951,DE 93437952,93454335,RU 93454336,93585407,DE 93585408,93626367,GB 93626368,93634559,CH 93634560,93650943,HU 93650944,93652991,CH 93652992,93655039,GB 93655040,93667327,CH 93667328,93675519,BA 93675520,93679615,IQ 93679616,93681663,LU 93681664,93683711,UA 93683712,93685759,AT 93685760,93687807,BE 93687808,93691903,RU 93691904,93693951,PL 93693952,93695999,IE 93696000,93700095,FR 93700096,93702143,PL 93702144,93704191,RU 93704192,93708287,UA 93708288,93712383,DE 93712384,93714431,HU 93714432,93714943,NL 93714944,93715455,GB 93715456,93715967,CA 93715968,93716479,NL 93716480,93749247,GB 93749248,93753343,IT 93753344,93765631,GB 93765632,93774847,SE 93774848,93775871,NO 93775872,93782015,SE 93782016,93836287,GB 93836288,93836799,NL 93836800,93842351,GB 93842352,93842359,NL 93842360,93847551,GB 93847552,93880319,GE 93880320,93888511,IT 93888512,93890559,PL 93890560,93892607,ES 93892608,93892863,GB 93892864,93893119,HK 93893120,93893375,NL 93893376,93893631,US 93893632,93893887,AU 93893888,93896703,US 93896704,93904895,GB 93904896,93906943,LV 93906944,93908991,BA 93908992,93911039,IT 93911040,93913087,AE 93913088,93929471,NL 93929472,93939711,GB 93939712,93941759,NO 93941760,93945855,CH 93945856,93962239,UA 93962240,93972479,GB 93972480,93974527,SE 93974528,93976575,CH 93976576,93978623,GB 93978624,94011391,ES 94011392,94019583,GB 94019584,94021631,DE 94021632,94027263,RO 94027264,94027775,MD 94027776,94035967,IT 94035968,94044159,RO 94044160,94109695,SY 94109696,94175231,SA 94175232,94179071,SE 94179072,94179327,NL 94179328,94179583,SE 94179584,94179839,NL 94179840,94180351,DK 94180352,94180607,TR 94180608,94180863,DK 94180864,94181887,FI 94181888,94182911,BE 94182912,94183167,FR 94183168,94183423,SE 94183424,94183935,RU 94183936,94184959,CH 94184960,94185471,IT 94185472,94186495,LU 94186496,94187263,DE 94187264,94187519,AT 94187520,94187775,SE 94187776,94188287,AT 94188288,94189311,SE 94189312,94189567,LI 94189568,94191615,SE 94191616,94193663,GB 94193664,94195711,SI 94195712,94199807,NL 94199808,94207999,IT 94208000,94240767,RO 94240768,94257151,PT 94257152,94261247,IT 94261248,94263295,ES 94263296,94265343,GB 94265344,94273535,RU 94273536,94289919,DE 94289920,94291967,NO 94291968,94294015,FR 94294016,94296063,GB 94296064,94298111,ES 94298112,94300159,GB 94300160,94302207,RU 94302208,94306303,FR 94306304,94308351,AT 94308352,94310399,ES 94310400,94312447,GE 94312448,94314495,DE 94314496,94316543,NL 94316544,94318591,IE 94318592,94320639,IR 94320640,94330879,DE 94330880,94337023,RU 94337024,94339071,GB 94339072,94355455,ES 94355456,94357503,NL 94357504,94361599,GB 94361600,94363647,LU 94363648,94365695,GB 94365696,94367743,HU 94367744,94369791,ES 94369792,94371839,TR 94371840,94502911,IR 94502912,94568447,OM 94568448,94633983,SA 94633984,94896127,RU 94896128,95158271,IT 95158272,95166463,RU 95166464,95168511,RS 95168512,95170559,NL 95170560,95174655,GB 95174656,95191039,IT 95191040,95195135,CH 95195136,95197183,SE 95197184,95203327,GB 95203328,95205375,FR 95205376,95207423,PL 95207424,95211519,GR 95211520,95213567,IT 95213568,95215615,NL 95215616,95354879,PL 95354880,95363071,DE 95363072,95365119,IT 95365120,95367167,ES 95367168,95369215,IT 95369216,95371263,GB 95371264,95375359,IT 95375360,95377407,NL 95377408,95387647,RU 95387648,95387903,GB 95387904,95388927,DE 95388928,95389183,AU 95389184,95389695,DE 95389696,95389951,GB 95389952,95390207,US 95390208,95391231,DE 95391232,95391487,AE 95391488,95391999,RU 95392000,95393023,DE 95393024,95393151,GB 95393152,95393279,RS 95393280,95393407,GB 95393408,95393535,AE 95393536,95393663,DE 95393664,95393791,QA 95393792,95394047,GB 95394048,95394175,AU 95394176,95394303,DE 95394304,95395327,AU 95395328,95395455,GB 95395456,95395583,DE 95395584,95395839,GB 95395840,95398399,DE 95398400,95398655,GB 95398656,95398911,US 95398912,95399423,DE 95399424,95399679,US 95399680,95399695,DE 95399696,95399807,US 95399808,95399951,DE 95399952,95400063,CA 95400064,95400207,DE 95400208,95400319,US 95400320,95400447,DE 95400448,95400703,GB 95400704,95400719,DE 95400720,95400831,US 95400832,95400975,DE 95400976,95401087,US 95401088,95401471,DE 95401472,95401727,GB 95401728,95401855,US 95401856,95401903,DE 95401904,95401911,AT 95401912,95401983,DE 95401984,95402111,GB 95402112,95402239,KW 95402240,95402495,DE 95402496,95402623,GB 95402624,95402695,US 95402696,95402703,HR 95402704,95402719,DE 95402720,95402751,US 95402752,95403007,DE 95403008,95403135,US 95403136,95403183,DE 95403184,95403191,BE 95403192,95403263,DE 95403264,95403391,US 95403392,95403519,DE 95403520,95403775,GB 95403776,95404031,US 95404032,95404799,DE 95404800,95405055,GB 95405056,95405311,DE 95405312,95405439,US 95405440,95405567,DE 95405568,95405823,GB 95405824,95405951,US 95405952,95406335,DE 95406336,95407103,GB 95407104,95407359,DE 95407360,95407871,US 95407872,95407999,DE 95408000,95408127,US 95408128,95408255,DE 95408256,95408383,US 95408384,95408511,DE 95408512,95408639,US 95408640,95409151,GB 95409152,95409279,DE 95409280,95409407,US 95409408,95410175,DE 95410176,95410431,US 95410432,95410447,CH 95410448,95410559,DE 95410560,95410943,GB 95410944,95411199,DE 95411200,95411215,NL 95411216,95416831,DE 95416832,95417087,GB 95417088,95420173,DE 95420174,95420174,US 95420175,95420415,DE 95420416,95551487,TR 95551488,95555583,AZ 95555584,95557631,GB 95557632,95559679,RU 95559680,95561727,NL 95561728,95563007,IT 95563008,95563263,GB 95563264,95563775,IT 95563776,95567871,SK 95567872,95569919,NL 95569920,95571967,SE 95571968,95574015,RU 95574016,95576063,IT 95576064,95580159,GB 95580160,95582207,NL 95582208,95584255,IT 95584256,95617023,GE 95617024,95625215,LV 95625216,95635455,IE 95635456,95637503,GB 95637504,95641599,DK 95641600,95645695,GB 95645696,95647743,SE 95647744,95649791,FR 95649792,95666175,IT 95666176,95668223,FR 95668224,95682559,DE 95944704,96075775,PL 96075776,96141311,DK 96141312,96143359,DE 96143360,96145407,GE 96145408,96149503,GB 96149504,96151551,ES 96151552,96153599,RU 96153600,96155647,PL 96155648,96157695,CH 96157696,96165887,RU 96165888,96172543,GP 96172544,96172799,MF 96172800,96174079,GP 96174080,96206847,HU 96206848,96305151,RU 96305152,96321535,DE 96321536,96323583,RU 96323584,96323711,ZA 96323712,96323839,KR 96323840,96323967,EG 96323968,96324095,ID 96324096,96324223,PK 96324224,96324351,VN 96324352,96324479,SG 96324480,96324607,US 96324608,96324735,IR 96324736,96324863,US 96324864,96324991,CA 96324992,96325119,FR 96325120,96325247,US 96325248,96325375,FI 96325376,96325503,US 96325504,96325631,SE 96325632,96337919,RU 96337920,96403455,IR 96403456,96468991,AZ 96468992,96731135,AE 96731136,96736399,FR 96736400,96736400,ES 96736401,96739479,FR 96739480,96739483,DE 96739484,96739583,FR 96739584,96739587,PT 96739588,96739887,FR 96739888,96739903,IT 96739904,96740111,FR 96740112,96740127,IT 96740128,96740223,FR 96740224,96740351,IT 96740352,96741039,FR 96741040,96741043,PT 96741044,96742407,FR 96742408,96742415,NL 96742416,96742427,FR 96742428,96742431,NL 96742432,96742679,FR 96742680,96742687,DE 96742688,96744607,FR 96744608,96744611,IT 96744612,96744831,FR 96744832,96744839,GB 96744840,96746879,FR 96746880,96747007,IT 96747008,96747103,FR 96747104,96747135,DE 96747136,96747291,FR 96747292,96747295,PT 96747296,96747343,FR 96747344,96747359,DE 96747360,96747407,FR 96747408,96747423,DE 96747424,96755815,FR 96755816,96755819,PT 96755820,96756427,FR 96756428,96756431,ES 96756432,96756447,DE 96756448,96756743,FR 96756744,96756751,NL 96756752,96757639,FR 96757640,96757643,CH 96757644,96757647,SE 96757648,96757663,FR 96757664,96757667,SE 96757668,96757883,FR 96757884,96757887,ES 96757888,96758247,FR 96758248,96758251,DE 96758252,96759735,FR 96759736,96759739,ES 96759740,96759767,FR 96759768,96759775,IT 96759776,96760403,FR 96760404,96760407,IT 96760408,96761855,FR 96761856,96761871,BE 96761872,96762799,FR 96762800,96762815,BE 96762816,96762863,FR 96762864,96762879,NL 96762880,96762943,FR 96762944,96763007,ES 96763008,96763163,FR 96763164,96763167,PT 96763168,96763199,DE 96763200,96763551,FR 96763552,96763555,GB 96763556,96764239,FR 96764240,96764255,DE 96764256,96764375,FR 96764376,96764383,IT 96764384,96764559,FR 96764560,96764575,NL 96764576,96766943,FR 96766944,96766975,BE 96766976,96767031,FR 96767032,96767035,GB 96767036,96767823,FR 96767824,96767839,BE 96767840,96768151,FR 96768152,96768155,FI 96768156,96768603,FR 96768604,96768607,DE 96768608,96769279,FR 96769280,96769295,ES 96769296,96770159,FR 96770160,96770175,ES 96770176,96770651,FR 96770652,96770655,PL 96770656,96772215,FR 96772216,96772223,PT 96772224,96772407,FR 96772408,96772408,GB 96772409,96772943,FR 96772944,96772959,DE 96772960,96773119,FR 96773120,96773375,ES 96773376,96774719,FR 96774720,96774751,ES 96774752,96775599,FR 96775600,96775615,DE 96775616,96776319,FR 96776320,96776323,ES 96776324,96776511,FR 96776512,96776543,ES 96776544,96777023,FR 96777024,96777087,ES 96777088,96778015,FR 96778016,96778031,ES 96778032,96778167,FR 96778168,96778171,LU 96778172,96778175,PT 96778176,96778239,FR 96778240,96778243,NL 96778244,96778247,FR 96778248,96778255,IT 96778256,96778259,NL 96778260,96778859,FR 96778860,96778863,NL 96778864,96778867,CZ 96778868,96778871,BE 96778872,96778991,FR 96778992,96779007,DE 96779008,96779011,PT 96779012,96779167,FR 96779168,96779199,PT 96779200,96779247,FR 96779248,96779255,CZ 96779256,96779519,FR 96779520,96779523,NL 96779524,96779839,FR 96779840,96779903,NL 96779904,96780355,FR 96780356,96780359,BE 96780360,96782199,FR 96782200,96782207,CZ 96782208,96782911,FR 96782912,96782915,LT 96782916,96783299,FR 96783300,96783303,ES 96783304,96783311,BE 96783312,96783327,DE 96783328,96783519,FR 96783520,96783551,ES 96783552,96783771,FR 96783772,96783775,DE 96783776,96783887,FR 96783888,96783903,DE 96783904,96785135,FR 96785136,96785151,NL 96785152,96785407,FR 96785408,96785411,NL 96785412,96785415,FR 96785416,96785423,NL 96785424,96786431,FR 96786432,96786495,GB 96786496,96788143,FR 96788144,96788159,ES 96788160,96792751,FR 96792752,96792767,DE 96792768,96793583,FR 96793584,96793599,DE 96793600,96793687,FR 96793688,96793688,ES 96793689,96793715,FR 96793716,96793716,ES 96793717,96794471,FR 96794472,96794479,ES 96794480,96794707,FR 96794708,96794711,IT 96794712,96796671,FR 96796672,96862207,AZ 96862208,96894975,GB 96894976,96897023,CZ 96897024,96899071,GB 96899072,96903167,AT 96903168,96911359,IR 96911360,96919551,FR 96919552,96923647,IT 96923648,96925695,JO 96925696,96960511,GB 96960512,96964607,DE 96964608,96968703,NL 96968704,96972799,LT 96972800,96974847,DE 96976896,96985087,RU 96985088,96987135,ES 96987136,96989183,UA 96989184,96993279,DE 96993280,97001471,NL 97001472,97009663,RU 97009664,97058815,IR 97058816,97091583,PL 97091584,97189887,IR 97189888,97255423,GR 97255424,97320959,HU 97320960,97386495,ES 97386496,97419263,RU 97419264,97435647,HU 97435648,97437695,DK 97437696,97439743,AT 97439744,97443839,NL 97443840,97445887,PT 97445888,97447679,RS 97447680,97447935,XK 97447936,97452031,PL 97452032,97517567,UA 97517568,98566143,IR 98566144,98697215,ES 98697216,98701311,FR 98701312,98705407,ES 98705408,98707455,SE 98707456,98709503,NL 98709504,98711551,IR 98711552,98713599,GB 98713600,98732031,PL 98732032,98734079,GB 98734080,98736127,CH 98736128,98738175,RU 98738176,98740223,NO 98740224,98740479,ES 98740480,98740735,US 98740736,98741503,DE 98741504,98741759,US 98741760,98742271,DE 98742272,98744319,GB 98744320,98746367,ES 98746368,98762751,TR 98762752,98893823,RU 98893824,98959359,TR 98959360,98959615,DE 98959616,98959679,US 98959680,98960639,DE 98960640,98960799,US 98960800,98961407,DE 98961408,98961919,FR 98961920,98992383,DE 98992384,98992423,US 98992424,98992431,DE 98992432,98992639,US 98992640,98993151,DE 98993152,98993175,US 98993176,98993407,DE 98993408,98993663,GB 98993664,98997759,DE 98997760,98998271,FR 98998272,98998527,DE 98998528,98998783,GB 98998784,98999551,DE 98999552,99000319,GB 99000320,99024895,DE 99024896,99025167,GB 99025168,99025279,DE 99025280,99025407,US 99025408,99025919,DE 99025920,99025935,FI 99025936,99026047,DE 99026048,99026175,US 99026176,99026303,DE 99026304,99026431,US 99026432,99026559,DE 99026560,99026687,US 99026688,99026943,DE 99026944,99027199,GB 99027200,99027215,HR 99027216,99027455,CA 99027456,99027711,PL 99027712,99027967,DE 99027968,99027983,ES 99027984,99028095,DE 99028096,99028223,US 99028224,99028239,GB 99028240,99028351,DE 99028352,99028735,US 99028736,99028751,SE 99028752,99028863,DE 99028864,99028991,US 99028992,99029503,GB 99029504,99029519,IE 99029520,99029887,DE 99029888,99030015,US 99030016,99030143,DE 99030144,99030271,US 99030272,99030399,DE 99030400,99030527,US 99030528,99030783,DE 99030784,99030895,US 99030896,99030911,DE 99030912,99031039,US 99031040,99031295,DE 99031296,99031551,GB 99031552,99031679,DE 99031680,99031807,US 99031808,99031823,GB 99031824,99031935,DE 99031936,99032063,US 99032064,99032319,DE 99032320,99032575,ES 99032576,99033343,DE 99033344,99033599,IT 99033600,99043839,DE 99043840,99043847,AT 99043848,99044111,DE 99044112,99044223,US 99044224,99044351,DE 99044352,99044359,BE 99044360,99044607,DE 99044608,99044615,HR 99044616,99044863,DE 99044864,99045119,GB 99045120,99045375,NL 99045376,99049471,DE 99049472,99049983,GB 99049984,99053055,DE 99053056,99053567,GB 99053568,99085567,DE 99085568,99085823,GB 99085824,99090431,DE 99090432,99614719,IR 99614720,99876863,SE 99876864,100139007,SA 100139008,100204543,UA 100204544,100237311,PT 100237312,100245503,IT 100245504,100246015,SE 100246016,100246271,GB 100246272,100246527,NL 100246528,100246783,DE 100246784,100247039,FR 100247040,100247551,SE 100247552,100249599,CH 100249600,100253695,SI 100253696,100261887,RU 100261888,100270079,NO 100270080,100302847,IR 100302848,100311039,KZ 100311040,100313087,FI 100313088,100315135,RU 100315136,100319231,GB 100319232,100327423,AZ 100327424,100329471,SE 100329472,100331519,RU 100331520,100335615,TR 100335616,100401151,KZ 100532224,100548863,RO 100548864,100548875,TR 100548876,100548876,RO 100548877,100549119,TR 100549120,100559255,RO 100559256,100559263,EG 100559264,100559551,RO 100559552,100559615,GB 100559616,100559743,RO 100559744,100559871,GB 100559872,100559935,US 100559936,100560127,RO 100560128,100560383,US 100560384,100560895,RO 100560896,100561151,GB 100561152,100561599,RO 100561600,100561663,US 100561664,100564799,RO 100564800,100564863,US 100564864,100564991,RO 100564992,100573183,SE 100573184,100575231,GB 100575232,100577279,DK 100577280,100579327,RU 100579328,100581375,AT 100581376,100589567,SE 100589568,100597759,RU 100597760,100598783,TR 100598784,100614143,US 100614144,100630527,NL 100630528,100632575,BE 100632576,100634623,GB 100634624,100636671,ES 100636672,100638719,NL 100638720,100646911,UA 100646912,100647679,RU 100647680,100647711,TR 100647712,100663295,RU 100663296,134221823,US 134221824,134221824,DE 134221825,134222335,US 134222336,134222336,DE 134222337,134223871,US 134223872,134223872,GB 134223873,134224383,US 134224384,134224384,GB 134224385,134247423,US 134247424,134247424,DE 134247425,134738943,US 134738944,134739199,CA 134739200,135192575,US 135192576,135200767,MX 135200768,135430143,US 135430144,135430399,CA 135430400,135432191,US 135432192,135434239,CA 135434240,135441407,US 135441408,135441663,CA 135441664,135556607,US 135556608,135556863,CA 135556864,135603199,US 135603200,135604223,CA 135604224,135604479,US 135604480,135604735,CA 135604736,135607039,US 135607040,135607295,CA 135607296,135776255,US 135776256,135776511,GU 135776512,135791359,US 135791360,135791615,CA 135791616,135792383,US 135792384,135794687,CA 135794688,135926271,US 135926272,135926783,VI 135926784,135945727,US 135945728,135945983,CA 135945984,136175615,US 136175616,136175871,CA 136175872,136237055,US 136237056,136239103,CA 136239104,136404991,US 136404992,136407039,CA 136407040,136413183,US 136413184,136415665,CA 136415666,136415666,FR 136415667,136415743,CA 136415744,139954241,US 139954242,139954242,ES 139954243,152305663,US 152305664,152338431,GB 152338432,167772159,US 184549376,201897983,US 201897984,201898239,PR 201898240,202385407,US 202385408,202385919,PR 202385920,202706431,US 202706432,202706943,PR 202706944,203272959,US 203272960,203273215,GB 203273216,203658975,US 203658976,203658991,VI 203658992,203659007,US 203659008,203659263,VI 203659264,204047871,US 204047872,204047999,PR 204048000,204048031,US 204048032,204048047,PR 204048048,205884415,US 205884416,205884671,MX 205884672,206010367,US 206010368,206010623,MX 206010624,211597719,US 211597720,211597727,VI 211597728,212787199,US 212787200,212788223,PR 212788224,212791831,US 212791832,212791839,VI 212791840,212794623,US 212794624,212794879,PR 212794880,214698239,US 214698240,214698255,VI 214698256,214698303,US 214698304,214698311,VI 214698312,214779135,US 214779136,214779263,PR 214779264,214783487,US 214783488,214783743,PR 214783744,214786047,US 214786048,214786431,PR 214786432,219249919,US 219249920,219250175,GB 219250176,219512063,US 219512064,219512319,GB 219512320,222494719,US 222494720,222527487,SG 222527488,222625791,US 222625792,222658559,NL 222658560,222691327,IE 222691328,222707711,HK 222707712,222740479,AU 222740480,222756863,IE 222756864,222789631,IN 222789632,222806015,JP 222806016,222871551,US 222871552,222879743,HK 222879744,222887935,AU 222887936,222896127,JP 222896128,222912511,US 222912512,222920703,AU 222920704,222937087,NL 222937088,222941183,AU 222941184,222953471,US 222953472,223019007,IE 223019008,223051775,HK 223051776,223084543,AU 223084544,223150079,SG 223150080,223166463,AU 223166464,223215615,US 223215616,223248383,JP 223248384,223281151,US 223281152,223346687,IE 223346688,223477759,NL 223477760,223805439,US 223805440,223838207,GB 223838208,224198655,US 224198656,224264191,NL 224264192,234881023,US 234881024,234883071,CN 234883072,234884095,JP 234884096,234885119,CN 234885120,234889215,VN 234889216,234893311,JP 234893312,234895359,KR 234895360,234895615,TW 234895616,234895871,MY 234895872,234896127,TH 234896128,234896383,MN 234896384,234896639,IN 234896640,234896895,AE 234896896,234897151,PH 234897152,234897407,TW 234897408,234913791,KR 234913792,234946559,HK 234946560,234947583,CN 234947584,234950655,JP 234950656,234951679,AU 234951680,234952703,HK 234954752,234971135,NZ 234979328,235012095,MY 235012096,235077631,AU 235077632,235143167,JP 235143168,235405311,KR 235405312,235929599,JP 235929600,236978175,CN 236978176,241172479,KR 241172480,241434623,IN 241434624,241469039,SG 241469040,241469047,MY 241469048,241500159,SG 241500160,241565695,JP 241565696,241598463,IN 241598464,241599487,CN 241599488,241600511,JP 241600512,241602559,AU 241602560,241604607,MY 241604608,241605631,ID 241605632,241606655,CN 241614848,241623039,JP 241623040,241627135,IN 241627136,241631231,HK 241631232,243269631,CN 243269632,243270655,JP 243270656,243271679,NZ 243271680,243272703,TH 243272704,243273727,NP 243273728,243277823,JP 243277824,243286015,AU 243286016,243302399,JP 243302400,243400703,KR 243400704,243531775,CN 243531776,243662847,JP 243662848,243793919,CN 243793920,243859455,HK 243859456,243916799,AU 243916800,243924991,JP 243924992,243990527,KR 243990528,244318207,IN 244318208,245366783,CN 245366784,247463935,VN 247472128,247476223,JP 247479296,247480319,CN 247480320,247482367,MY 247482368,247483391,PG 247483392,247484415,CN 247484416,247488511,KR 247488512,247496703,JP 247496704,247504895,PK 247504896,247508991,AU 247508992,247513087,US 247513088,247529471,MY 247529472,247595007,JP 247595008,247726079,IN 247726080,247857151,CN 247857152,247988223,HK 247988224,248250367,AU 248250368,248381439,CN 248381440,248446975,KR 248446976,248512511,TH 248512512,249561087,CN 249561088,251658239,VN 251658240,260976639,US 260976640,260980735,GB 260980736,264482815,US 264482816,264485119,DE 264485120,264485375,US 264485376,264486911,DE 264486912,264495103,US 264495104,264503295,CH 264503296,264634367,US 264634368,264667135,DE 264667136,264699903,US 264699904,264716287,CH 264716288,264798207,US 264798208,264802303,GB 264802304,264994815,US 264994816,264997119,FR 264997120,264997375,US 264997376,265005311,FR 265005312,265005567,US 265005568,265011199,FR 265011200,265023487,US 265023488,265027583,GB 265027584,265060351,US 265060352,265093119,FR 265093120,265523711,US 265523712,265523967,AU 265523968,265533695,US 265533696,265533951,JP 265533952,266062079,US 266062080,266062335,IN 266062336,266070271,US 266070272,266070527,AU 266070528,266598655,US 266598656,266598911,BR 266598912,288153599,US 288153600,288157695,CA 288157696,288167423,US 288167424,288167935,CA 288167936,288169471,US 288169472,288169983,CA 288169984,288176127,US 288176128,288178175,MX 288178176,288196607,US 288196608,288197119,CA 288197120,288197631,US 288197632,288198143,CA 288198144,288198655,CL 288198656,288199679,US 288199680,288200703,CO 288200704,288205422,US 288205423,288205423,CO 288205424,288205424,BR 288205425,288205425,MX 288205426,288205426,CL 288205427,288212991,US 288212992,288215039,CA 288215040,288223231,US 288223232,288227327,CA 288227328,289652735,US 289652736,289653759,NL 289653760,289654271,DE 289654272,289655807,US 289655808,289656831,DE 289656832,289657855,BE 289657856,289658879,AE 289658880,289659903,GB 289659904,289660927,US 289660928,289665023,ES 289665024,289667071,US 289667072,289669119,GB 289669120,289783807,US 289783808,289787903,GB 289787904,289791999,US 289792000,289794047,AE 289794048,289795071,US 289795072,289796095,GB 289796096,289798143,TR 289798144,289948927,US 289948928,289949055,AT 289949056,289949183,US 289949184,289949695,RU 289949696,289950207,NL 289950208,289950463,PL 289950464,289950719,PT 289950720,289950975,CZ 289950976,289951231,US 289951232,289951487,RU 289951488,289951743,US 289951744,289952255,DE 289952256,289953791,GB 289953792,289954303,US 289954304,289954559,ES 289954560,289955839,US 289955840,289955967,NL 289955968,289956095,US 289956096,289956223,NO 289956224,289956351,US 289956352,289956479,DK 289956480,289956607,US 289956608,289956735,NL 289956736,289956863,IN 289956864,289957119,ES 289957120,289957375,US 289957376,289957631,SE 289957632,289957887,US 289957888,289958143,LU 289958144,289958399,US 289958400,289958655,IN 289958656,289958911,US 289958912,289959423,IT 289959424,289959935,DK 289959936,289960447,DE 289960448,289960959,IN 289960960,289961471,BE 289961472,289963007,US 289963008,289964031,FR 289964032,290265087,US 290265088,290267135,RU 290267136,290269183,US 290269184,290270207,PL 290270208,290271231,PT 290271232,290277375,US 290277376,290279423,GB 290279424,290280447,US 290280448,290280703,GB 290280704,290295295,US 290295296,290295807,IN 290295808,290299903,US 290299904,290300927,LU 290300928,290301951,TR 290301952,290302463,IN 290302464,290302975,US 290302976,290303999,IN 290304000,290306047,US 290306048,290308095,DK 290308096,290310143,US 290310144,290312191,IN 290312192,290357247,US 290357248,290365439,IL 290365440,290377727,US 290377728,290379775,GB 290379776,290423807,US 290423808,290424831,SE 290424832,344195839,US 344195840,344196095,CA 344196096,344260607,US 344260608,344260863,GB 344260864,344262655,US 344262656,344262911,GB 344262912,344270860,US 344270861,344270861,GB 344270862,344588799,US 344588800,344589055,GB 344589056,344592895,US 344592896,344592945,GB 344592946,344592946,US 344592947,344593151,GB 344593152,344662783,US 344662784,344663039,MY 344663040,344670719,US 344670720,344671231,IN 344671232,344674815,US 344674816,344675071,IN 344675072,344712447,US 344712448,344712703,AU 344712704,344881151,US 344881152,344881407,IN 344881408,344977407,US 344977408,344977663,IN 344977664,372398271,US 372398272,372398303,AU 372398304,385884159,US 385884160,385888255,NL 385888256,385917183,US 385917184,385917439,NL 385917440,385920511,US 385920512,385920767,NL 385920768,385930239,US 385930240,385931263,NL 385931264,385934335,US 385934336,385934847,NL 385934848,385939967,US 385939968,385940479,NL 385940480,385942527,US 385942528,385943551,NL 385943552,385950719,US 385950720,385951743,NL 385951744,385957887,US 385957888,385961983,NL 385961984,386002431,US 386002432,386002943,NL 386002944,386006015,US 386006016,386007039,NL 386007040,386010623,US 386010624,386011135,NL 386011136,386012159,US 386012160,386012671,NL 386012672,386013183,US 386013184,386013695,NL 386013696,386015231,US 386015232,386015487,NL 386015488,386020351,US 386020352,386021375,NL 386021376,386025471,US 386025472,386026495,NL 386026496,386035711,US 386035712,386039807,NL 386039808,386060287,US 386060288,386068479,NL 386068480,386073343,US 386073344,386073599,NL 386073600,386074111,US 386074112,386074623,NL 386074624,386076415,US 386076416,386076671,NL 386076672,386088959,US 386088960,386089983,NL 386089984,386095615,US 386095616,386096127,NL 386096128,386100735,US 386100736,386101247,NL 386101248,386109439,US 386109440,386113535,NL 386113536,386125823,US 386125824,386134015,NL 386134016,386228223,US 386228224,386232319,NL 386232320,386244607,US 386244608,386244863,NL 386244864,386245119,US 386245120,386245631,NL 386245632,386297855,US 386297856,386310143,NL 386310144,386383871,US 386383872,386387967,NL 386387968,386408447,US 386408448,386412543,NL 386412544,386453503,US 386453504,386457599,NL 386457600,386465791,US 386465792,386469887,NL 386469888,386482175,US 386482176,386486271,NL 386486272,386519039,US 386519040,386523135,NL 386523136,386593279,US 386593280,386594815,NL 386594816,386595327,US 386595328,386596095,NL 386596096,386613247,US 386613248,386617343,NL 386617344,386656255,US 386656256,386656511,NL 386656512,386662399,US 386662400,386670591,NL 386670592,386682879,US 386682880,386691071,NL 386691072,386736127,US 386736128,386740223,NL 386740224,386774527,US 386774528,386775039,NL 386775040,386816511,US 386816512,386818047,NL 386818048,386826751,US 386826752,386827263,NL 386827264,386828287,US 386828288,386829311,NL 386829312,386842623,US 386842624,386846719,NL 386846720,386862079,US 386862080,386862335,JP 386862336,386862591,KR 386862592,386862847,US 386862848,386863103,NL 386863104,386875391,US 386875392,386879487,NL 386879488,386887679,US 386887680,386891775,NL 386891776,386892799,US 386892800,386893311,NL 386893312,386904063,US 386904064,386905087,NL 386905088,386924543,US 386924544,387055615,CA 387055616,387121151,PR 387121152,387825663,US 387825664,387833855,CA 387833856,387975167,US 387975168,387976191,NL 387976192,387976703,US 387976704,387978751,NL 387978752,387980287,US 387980288,387980799,NL 387980800,387985407,US 387985408,387996159,NL 387996160,387997695,US 387997696,388001791,NL 388001792,388029439,US 388029440,388030463,NL 388030464,388035071,US 388035072,388036607,NL 388036608,388038655,US 388038656,388042751,NL 388042752,388050943,US 388050944,388051967,NL 388051968,388055039,US 388055040,388059135,NL 388059136,388084735,US 388084736,388085759,NL 388085760,388086783,US 388086784,388087807,NL 388087808,388091903,US 388091904,388101119,NL 388101120,388149247,US 388149248,388153343,NL 388153344,388198399,US 388198400,388202495,NL 388202496,388222975,US 388222976,388227071,NL 388227072,388272127,US 388272128,388284415,NL 388284416,388288511,US 388288512,388300799,NL 388300800,388308991,US 388308992,388317183,NL 388317184,388325375,US 388325376,388329471,NL 388329472,388341759,US 388341760,388345855,NL 388345856,388354047,US 388354048,388358143,NL 388358144,388362239,US 388362240,388392447,NL 388392448,388397055,US 388397056,388399103,NL 388399104,388419583,US 388419584,388423679,NL 388423680,388448255,US 388448256,388464639,NL 388464640,388472831,US 388472832,388476927,NL 388476928,388481023,US 388481024,388485119,NL 388485120,388493311,US 388493312,388501503,NL 388501504,388513791,US 388513792,388517887,NL 388517888,388526079,US 388526080,388530175,NL 388530176,388538367,US 388538368,388542463,NL 388542464,388550655,US 388550656,388554751,NL 388554752,388567039,US 388567040,388571135,NL 388571136,388632575,US 388632576,388636671,NL 388636672,388677631,US 388677632,388681727,NL 388681728,388698111,US 388698112,388702207,NL 388702208,388706303,US 388706304,388714495,NL 388714496,388726783,US 388726784,388730879,NL 388730880,388812799,US 388812800,388816895,NL 388816896,388842239,US 388842240,388842495,NL 388842496,388843519,US 388843520,388844543,NL 388844544,388849663,US 388849664,388853759,NL 388853760,388857855,US 388857856,388878335,NL 388878336,388885503,US 388885504,388886527,NL 388886528,388894207,US 388894208,388894719,NL 388894720,388896767,US 388896768,388897279,NL 388897280,388897791,US 388897792,388898815,NL 388898816,388919295,US 388919296,388923391,NL 388923392,389044223,US 389044224,389045247,NL 389045248,389070847,US 389070848,389078015,NL 389078016,389079039,US 389079040,389083135,NL 389083136,389090303,US 389090304,389091327,NL 389091328,389136383,US 389136384,389140479,NL 389140480,389177343,US 389177344,389181439,NL 389181440,389185535,US 389185536,389201919,NL 389201920,389206015,US 389206016,389210111,NL 389210112,389242879,US 389242880,389251071,NL 389251072,389259263,US 389259264,389292031,NL 389292032,389296127,US 389296128,389300223,NL 389300224,389328895,US 389328896,389341183,NL 389341184,389349375,US 389349376,389365759,NL 389365760,389390335,US 389390336,389398527,NL 389398528,389402623,US 389402624,389423103,NL 389423104,389435391,US 389435392,389451775,NL 389451776,389480447,US 389480448,389484543,NL 389484544,389509119,US 389509120,389513215,NL 389513216,389515263,US 389515264,389521407,NL 389521408,389537791,US 389537792,389541887,NL 389541888,389599743,US 389599744,389600767,NL 389600768,389602303,US 389602304,389603327,NL 389603328,389611519,US 389611520,389615615,NL 389615616,389619711,US 389619712,389628927,NL 389628928,389631999,US 389632000,389641215,NL 389641216,389701119,US 389701120,389701631,NL 389701632,389730303,US 389730304,389734399,NL 389734400,389754879,US 389754880,389765631,NL 389765632,389767167,US 389767168,389775359,NL 389775360,389812223,US 389812224,389825535,NL 389825536,389825791,US 389825792,389826559,NL 389826560,389861375,US 389861376,389865471,NL 389865472,389902335,US 389902336,389903359,NL 389903360,389923839,US 389923840,389924351,NL 389924352,389924607,US 389924608,389925375,NL 389925376,389926911,US 389926912,389936127,NL 389936128,389937151,US 389937152,389937407,NL 389937408,389937919,US 389937920,389938175,NL 389938176,389938687,US 389938688,389940223,NL 389940224,389941247,US 389941248,389941503,AU 389941504,389941759,NL 389941760,389942271,US 389942272,389942783,NL 389942784,389952767,US 389952768,389953023,NL 389953024,389954815,US 389954816,389955071,NL 389955072,389964287,US 389964288,389965055,NL 389965056,389965311,US 389965312,389966335,NL 389966336,389967871,US 389967872,389977087,NL 389977088,389977599,US 389977600,389978111,NL 389978112,389979135,US 389979136,389979391,AU 389979392,389988351,US 389988352,389992447,NL 389992448,389999871,US 389999872,390000127,NL 390000128,390011903,US 390011904,390012927,NL 390012928,390021119,US 390021120,390030847,NL 390030848,390033407,US 390033408,390043135,NL 390043136,390063615,US 390063616,390066175,NL 390066176,390074111,US 390074112,390074367,NL 390074368,390085631,US 390085632,390086655,NL 390086656,390106623,US 390106624,390107135,NL 390107136,390123519,US 390123520,390131711,NL 390131712,390141439,US 390141440,390141695,NL 390141696,390143231,US 390143232,390148095,NL 390148096,390165503,US 390165504,390166527,NL 390166528,390181887,US 390181888,390182399,NL 390182400,390184959,US 390184960,390193151,NL 390193152,390205439,US 390205440,390209535,NL 390209536,390261247,US 390261248,390270975,NL 390270976,390276863,US 390276864,390277375,NL 390277376,390277631,US 390277632,390278143,NL 390278144,390278911,US 390278912,390279167,NL 390279168,390281727,US 390281728,390281983,NL 390281984,390284799,US 390284800,390285311,NL 390285312,390286847,US 390286848,390295551,NL 390295552,390299647,US 390299648,390304767,NL 390304768,390332159,US 390332160,390332415,NL 390332416,390694655,US 390694656,390694911,NL 390694912,390731775,US 390731776,390732031,NL 390732032,390732287,US 390732288,390732799,NL 390732800,390733823,US 390733824,390737919,NL 390737920,390746111,US 390746112,390758399,NL 390758400,390767615,US 390767616,390768639,NL 390768640,390770687,US 390770688,390778879,NL 390778880,390896639,US 390896640,390897151,NL 390897152,390943743,US 390943744,390944767,NL 390944768,390946815,US 390946816,390955007,NL 390955008,390972159,US 390972160,390972415,NL 390972416,390972927,US 390972928,390973951,NL 390973952,390985727,US 390985728,390987775,NL 390987776,390995967,US 390995968,391020543,NL 391020544,391081983,US 391081984,391086079,NL 391086080,391110655,US 391110656,391110911,IL 391110912,391111167,GB 391111168,391111679,NL 391111680,391111935,US 391111936,391112191,AU 391112192,391112447,NL 391112448,391112703,US 391112704,391113471,NL 391113472,391113983,US 391113984,391114751,NL 391114752,391116543,US 391116544,391116799,NL 391116800,391872511,US 391872512,391888895,CA 391888896,391897087,US 391897088,391905279,CA 391905280,391938047,US 391938048,391946239,CA 391946240,391961711,US 391961712,391961719,RO 391961720,392245247,US 392245248,392249343,SG 392249344,392257535,HK 392257536,392265727,BR 392265728,392298495,NL 392298496,392306687,US 392306688,392310015,HK 392310016,392310271,US 392310272,392310527,NL 392310528,392312831,US 392312832,392314879,JP 392314880,392331263,SG 392331264,392388607,US 392388608,392396799,HK 392396800,392429567,US 392429568,392433663,NL 392433664,392441855,US 392441856,392445951,IE 392445952,392452095,US 392452096,392454143,HK 392454144,392458239,JP 392458240,392460287,SG 392460288,392495103,US 392495104,392499199,HK 392499200,392503295,SG 392503296,392507391,US 392507392,392511487,IE 392511488,392515583,NL 392515584,392523775,JP 392523776,392548351,US 392548352,392556543,AU 392556544,392579345,US 392579346,392579346,JP 392579347,392659871,US 392659872,392659903,NL 392659904,392765439,US 392765440,392765695,GB 392765696,394264575,US 394264576,394264831,CA 394270720,394271231,NL 394296320,394296831,NL 394526720,394526975,US 394788864,394789119,US 395313152,397410303,US 397410304,397410559,CA 397934592,397934847,US 398458880,398500351,US 398500352,398500863,NL 398500864,398617599,US 398617600,398618623,NL 398618624,398635007,US 398635008,398644223,NL 398644224,398644735,US 398644736,398645247,NL 398645248,398647295,US 398647296,398656511,NL 398656512,398657535,US 398657536,398658559,NL 398658560,398667775,US 398667776,398675967,NL 398675968,398684159,US 398684160,398692351,NL 398692352,398779903,US 398779904,398781439,NL 398781440,398782463,US 398782464,398790655,NL 398790656,398802431,US 398802432,398802943,NL 398802944,398850047,US 398850048,398852095,NL 398852096,398856191,US 398856192,398877183,NL 398877184,398970879,US 398970880,398974975,NL 398974976,399004671,US 399004672,399006207,FR 399006208,399007743,US 399007744,399011839,NL 399011840,399016959,US 399016960,399017983,NL 399017984,399020031,US 399020032,399028223,NL 399028224,399032319,US 399032320,399036415,NL 399036416,399076351,US 399076352,399076863,NL 399076864,399087615,US 399087616,399088639,NL 399088640,399097855,US 399097856,399106047,NL 399106048,399125759,US 399125760,399126015,NL 399126016,399143935,US 399143936,399145471,NL 399145472,399147007,US 399147008,399159295,NL 399159296,399331327,US 399331328,399339519,NL 399339520,399340543,US 399340544,399341055,AU 399341056,399353855,US 399353856,399354879,NL 399354880,399355391,US 399355392,399355903,NL 399355904,399365119,US 399365120,399366143,NL 399366144,399367167,US 399367168,399406591,NL 399406592,399458303,US 399458304,399466495,NL 399466496,399591935,US 399591936,399593471,NL 399593472,399601663,US 399601664,399619583,NL 399619584,399619839,US 399619840,399620095,AU 399620096,399621631,US 399621632,399639551,NL 399639552,399719679,US 399719680,399719935,NL 399719936,399737855,US 399737856,399738367,NL 399738368,399797247,US 399797248,399797759,NL 399797760,399815679,US 399815680,399817215,NL 399817216,399818751,US 399818752,399831039,NL 399831040,399870975,US 399870976,399871999,NL 399872000,399908863,US 399908864,399919615,NL 399919616,399921151,US 399921152,399958015,NL 399958016,399970303,US 399970304,399980031,NL 399980032,399981567,US 399981568,399982079,NL 399982080,399990783,US 399990784,400000511,NL 400000512,400021247,US 400021248,400021503,NL 400021504,400033279,US 400033280,400033791,NL 400033792,400034815,US 400034816,400035327,NL 400035328,400056319,US 400056320,400064511,NL 400064512,400130559,US 400130560,400131071,NL 400131072,400131583,US 400131584,400132095,NL 400132096,400134143,US 400134144,400143359,NL 400143360,400144383,US 400144384,400145407,NL 400145408,400154623,US 400154624,400162815,NL 400162816,400201215,US 400201216,400202751,NL 400202752,400203775,US 400203776,400211967,NL 400211968,400240639,US 400240640,400250367,NL 400250368,400270847,US 400270848,400271359,NL 400271360,400283647,US 400283648,400284671,NL 400284672,400293887,US 400293888,400302079,NL 400302080,400400383,US 400400384,400430079,NL 400430080,400431103,US 400431104,400442367,NL 400442368,400482303,US 400482304,400527359,NL 400527360,400543743,US 400543744,400551935,NL 400551936,400715775,US 400719872,400760831,US 400760832,400769023,CA 400769024,400805887,US 400805888,400809983,CA 400809984,400884479,US 400884480,400884735,TR 400884736,400884991,GB 400884992,400887551,US 400887552,400887807,GB 400887808,400888575,US 400888576,400888831,GB 400888832,400911103,US 400911104,400911359,PA 400911360,400911615,AU 400911616,400911871,CR 400911872,400912127,US 400912128,400912383,SG 400912384,401129727,US 401129728,401129983,FR 401129984,401130495,US 401130496,401130751,DE 401130752,401137151,US 401137152,401137663,GB 401137664,401142783,US 401142784,401143039,PE 401143040,401143295,BZ 401143296,401143551,NG 401143552,401143807,IM 401143808,401144063,SA 401144064,401144319,VE 401144320,401144575,BS 401144576,401144831,MA 401144832,401145087,OM 401145088,401145343,CO 401145344,401145599,SC 401145600,401145855,YE 401145856,401211391,CA 401211392,401232375,US 401232376,401232383,GB 401232384,401236447,US 401236448,401236479,GB 401236480,401293311,US 401293312,401297407,CA 401297408,401342463,US 401342464,401346559,BB 401346560,401378303,US 401378304,401378559,EG 401378560,401386495,US 401386496,401387007,SE 401387008,401387263,RU 401387264,401547263,US 401547264,401555455,CA 401555456,402096639,US 402096640,402096895,FR 402096896,402097407,US 402097408,402097663,KE 402097664,402097919,SY 402097920,402098175,MX 402098176,402098431,BN 402098432,402098687,BH 402098688,402098943,AW 402098944,402105087,US 402105088,402105343,GB 402105344,402107391,US 402107392,402107647,IT 402107648,402122751,US 402122752,402123007,SE 402123008,402124287,US 402124288,402124543,TR 402124544,402128895,US 402128896,402169855,CA 402169856,402223103,US 402223104,402227199,CA 402227200,402227455,PR 402227456,402231295,US 402235392,402239301,US 402239302,402239302,CA 402239303,402239473,US 402239474,402239474,CA 402239475,402243583,US 402243584,402247679,CA 402247680,402279935,US 402279936,402280191,CA 402280192,402366463,US 402366464,402374655,CA 402374656,402399231,US 402399232,402403327,CA 402403328,402415615,US 402415616,402416639,CA 402416640,402417151,US 402417152,402417663,CA 402417664,402448383,US 402452480,402550015,US 402550016,402550271,CA 402550272,402550783,GB 402550784,402614087,US 402614088,402614095,GB 402614096,402614303,US 402614304,402614311,AU 402614312,402615055,US 402615056,402615063,GB 402615064,402615415,US 402615416,402615423,AU 402615424,402653183,US 402653184,402653184,EC 402653185,405012479,US 405012480,405143551,CA 405143552,405180415,US 405180416,405184511,CA 405184512,405364735,US 405364736,405372927,CA 405372928,405422079,PR 405422080,405798911,US 405798912,405831679,CA 405831680,405843967,US 405843968,405848063,CA 405848064,405864447,PR 405864448,405921791,US 405921792,405929983,CA 405929984,405938175,US 405938176,405962751,CA 405962752,405970943,US 405970944,405979135,CA 405979136,405995519,PR 405995520,406003711,CA 406003712,406011903,US 406011904,406028287,BS 406028288,406052863,US 406052864,406061055,CA 406061056,406110207,US 406110208,406142975,CA 406142976,406147071,US 406147072,406159359,CA 406159360,406175743,US 406175744,406216703,CA 406216704,406241279,US 406241280,406257663,PR 406257664,406274047,US 406274048,406284031,PR 406284032,406284287,US 406284288,406284543,PR 406284544,406284799,US 406284800,406290431,PR 406290432,406298623,US 406298624,406306815,PR 406306816,406323199,CA 406323200,406388735,US 406388736,406454271,CA 406454272,406683647,US 406683648,406683775,CA 406683776,406684031,US 406684032,406684159,CA 406684160,406838783,US 406838784,406839295,CA 406839296,406847487,US 406847488,407408639,CA 407408640,407613439,US 407613440,407617535,CA 407617536,407633919,US 407633920,408420351,CA 408420352,408502271,US 408502272,408518655,CA 408518656,408535039,US 408535040,408551423,CA 408551424,408719359,US 408719360,408723455,LC 408723456,409255935,US 409255936,409272319,CA 409272320,409337855,US 409337856,409354239,CA 409354240,409509887,US 409509888,409518079,CA 409518080,409550847,US 409550848,409567231,CA 409567232,409731071,US 409731072,409862143,CA 409862144,410124287,US 410124288,410189823,CA 410189824,410648575,US 410648576,410714111,CA 410714112,411156479,US 411156480,411160575,CA 411160576,411164671,US 411164672,411168767,CA 411168768,411303935,US 411303936,411369471,NL 411369472,411435007,TR 411435008,411500543,DE 411500544,411566079,RS 411566080,411639807,US 411639808,411664383,CA 411664384,411680767,US 411680768,411688959,CA 411688960,411697151,PR 411697152,411746303,CA 411746304,411762687,PR 411762688,411770879,CA 411770880,411779071,US 411779072,411828223,PR 411828224,411885567,US 411885568,411975679,CA 411975680,411979775,US 411979776,411983871,CA 411983872,411988991,US 411988992,411989247,GB 411989248,412057599,US 412057600,412073983,CA 412073984,412221439,US 412221440,412254207,CA 412254208,412483583,US 412483584,412549119,CA 412549120,412614655,US 412647424,412680191,US 412680192,412688383,CA 412688384,412704767,US 412704768,412708863,CA 412708864,412909567,US 412909568,412942335,CA 412942336,412946431,US 412946432,412950527,PR 412950528,412958719,US 412958720,413007871,CA 413007872,413908991,US 413908992,413925375,PR 413925376,414502783,US 414502784,414502911,CA 414502912,415760383,US 415760384,416022527,CA 416022528,416059391,US 416059392,416088063,CA 416088064,416153599,US 416153600,416161791,BS 416161792,416219135,US 416219136,416251903,CA 416251904,416546815,US 416546816,416612351,CA 416612352,416628735,US 416628736,416636927,CA 416636928,416743423,US 416743424,416776191,CA 416776192,417202175,US 417202176,417267711,CA 417267712,417366015,US 417366016,417398783,CA 417398784,417431551,US 417431552,417529855,CA 417529856,417538047,PR 417538048,417726463,US 417726464,417734655,HK 417734656,417775615,US 417775616,417796095,CA 417796096,417800191,US 417800192,417808383,BS 417808384,417816575,CA 417820672,417857535,US 417857536,417923071,AR 417923072,418060287,US 418060288,418062335,HK 418062336,418070527,CA 418070528,418078719,US 418078720,418119679,CA 418119680,418316287,US 418316288,418320383,CA 418320384,418643967,US 418643968,418668543,CA 418668544,418672639,US 418672640,418676735,CA 418676736,418693119,BS 418693120,418709503,CA 418709504,418766847,US 418766848,418770943,CA 418770944,418775039,US 418775040,418799615,CA 418799616,419430399,US 419430400,436207615,GB 436207616,452984831,US 452984832,452985855,JP 452985856,452986879,MY 452986880,452987903,SG 452987904,452988927,VN 452988928,452989183,US 452989184,452989439,JP 452989440,452990207,US 452990208,452990463,JP 452990464,452990719,US 452990720,452991231,JP 452991232,452991487,US 452991488,452992767,JP 452992768,452993023,US 452993024,452997119,JP 452997120,453001215,IN 453001216,453009407,AU 453009408,453017599,BD 453050368,453115903,KR 453115904,453246975,VN 453246976,453509119,IN 453509120,455081983,CN 455081984,455213055,AU 455213056,455215359,NP 455215360,455215615,RU 455215616,455245823,NP 455245824,455258111,JP 455258112,455262207,SG 455262208,455270399,JP 455270400,455272447,AU 455272448,455274495,CN 455274496,455278591,IN 455278592,455344127,KR 455344128,456130559,CN 456130560,456261631,IN 456261632,456262655,PH 456262656,456263679,IN 456264704,456265727,JP 456265728,456269823,ID 456269824,456271871,HK 456271872,456273919,CN 456273920,456286207,AU 456286208,456294399,JP 456294400,456327167,CN 456327168,456523775,TW 456523776,456540159,SG 456540160,456542207,AU 456542208,456544255,CN 456544256,456548351,AU 456548352,456553471,JP 456553472,456554495,ID 456554496,456555519,PK 456555520,456556543,JP 456556544,456560639,AU 456562688,456564735,CN 456564736,456572927,IN 456572928,456589311,CN 456589312,456654847,TH 456654848,457179135,IN 457179136,458227711,VN 458227712,459282431,JP 459282432,459284479,TK 459284480,459292671,JP 459292672,459293695,NZ 459293696,459297791,JP 459297792,459299839,IN 459299840,459300863,PK 459300864,459309055,SG 459309056,459325439,KR 459325440,459333631,AU 459333632,459341823,TW 459341824,459407359,IN 459407360,459456511,JP 459456512,459460607,HK 459460608,459472895,CN 459472896,459505663,AU 459505664,459538431,CN 459538432,459539455,AU 459540480,459541503,JP 459541504,459542527,IN 459542528,459543295,HK 459543296,459543551,TW 459543552,459544575,HK 459544576,459545599,IN 459545600,459547647,JP 459547648,459548671,AU 459548672,459550719,TH 459550720,459554815,JP 459554816,459571199,TW 459571200,459735039,KR 459735040,459800575,CN 459800576,459866111,SG 459866112,459931647,TW 459931648,459964415,IN 459964416,459980799,CN 459980800,459983871,AU 459983872,459984895,CN 459984896,459986943,JP 459986944,459988991,PH 459988992,459997183,JP 459997184,460062719,IN 460062720,460128255,PH 460128256,460136447,IN 460136448,460144639,CN 460144640,460152831,PH 460152832,460154879,JP 460154880,460155903,SG 460155904,460156927,AU 460156928,460158975,KH 460158976,460159999,JP 460160000,460161023,CN 460161024,460193791,MO 460193792,460210175,JP 460210176,460214271,HK 460214272,460218367,MY 460218368,460224511,JP 460224512,460226559,NZ 460226560,460259327,PH 460259328,460261375,AU 460261376,460262399,KH 460262400,460262655,US 460262656,460262911,AU 460262912,460263167,NZ 460263168,460263423,GB 460263424,460267519,NP 460267520,460275711,ID 460275712,460277759,AU 460277760,460278783,IN 460278784,460279807,JP 460279808,460283903,AU 460283904,460292095,KR 460292096,460300287,JP 460300288,460312575,HK 460312576,460320767,SG 460320768,460324863,AU 460324864,460341247,CN 460341248,460343295,ID 460343296,460344319,AU 460344320,460345343,ID 460345344,460349439,CN 460349440,460351487,AU 460351488,460353535,JP 460353536,460355583,CN 460355584,460356607,IN 460356608,460357631,JP 460357632,460423167,KR 460423168,460439551,CN 460439552,460451839,JP 460451840,460453887,AU 460453888,460454911,JP 460454912,460455935,IN 460455936,460488703,JP 460488704,460505087,MV 460505088,460521471,SG 460521472,460554239,CN 460554240,460587007,KR 460587008,460591103,JP 460591104,460593151,IN 460593152,460595199,JP 460595200,460595711,SG 460595712,460596223,JP 460596224,460597247,AU 460597248,460598271,IN 460598272,460599295,CN 460599296,460601343,IN 460601344,460602367,AF 460602368,460603391,KH 460603392,460718079,KR 460718080,460722175,JP 460722176,460726271,VN 460726272,460734463,IN 460734464,460865535,KR 460865536,460931071,JP 460931072,460933119,AU 460933120,460935167,CN 460935168,460937215,ID 460937216,460938239,AU 460938240,460939263,JP 460939264,460940287,NZ 460940288,460941311,IN 460941312,460942335,AU 460942336,460943359,MY 460943360,460945407,AU 460945408,460947455,CN 460947456,460980223,JP 460980224,460981247,NC 460981248,460983295,JP 460983296,460984319,HK 460984320,460988415,PG 460988416,460994559,JP 460994560,460995327,MY 460995328,460995583,SG 460995584,460996607,IN 460996608,461008895,JP 461008896,461012991,AU 461012992,461045759,KR 461045760,461047807,ID 461047808,461049855,JP 461049856,461050879,TH 461050880,461051903,NZ 461051904,461054975,AU 461054976,461055999,HK 461056000,461058047,AU 461058048,461062143,HK 461062144,461078527,IN 461078528,461094911,FJ 461094912,461096959,HK 461096960,461099007,TW 461099008,461100031,JP 461100032,461101055,MN 461101056,461102079,IN 461102080,461103103,ID 461111296,461127679,IN 461127680,461131775,PH 461131776,461135871,ID 461135872,461144063,AU 461144064,461209599,KR 461209600,461225983,SG 461225984,461227007,WF 461227008,461228031,SG 461228032,461229055,IN 461229056,461230079,JP 461230080,461234175,AU 461234176,461242367,MY 461242368,461258751,KR 461258752,461279231,JP 461279232,461281279,AU 461281280,461282303,PH 461282304,461283327,MY 461283328,461287423,JP 461287424,461294591,HK 461294592,461298687,US 461298688,461301759,HK 461301760,461302527,US 461302528,461307903,HK 461307904,461357055,JP 461357056,461369343,AU 461369344,461373439,JP 461373440,461504511,CN 461504512,461570047,TH 461570048,461572095,ID 461572096,461573119,JP 461573120,461574143,BD 461574144,461578239,JP 461578240,461586431,MY 461586432,461602815,AU 461602816,461619199,TH 461619200,461623295,JP 461623296,461625343,IN 461625344,461626367,AU 461626368,461627391,CN 461627392,461633535,JP 461633536,461635583,ID 461635584,462422015,JP 462422016,462487551,CN 462487552,462553087,TH 462553088,462618623,MY 462618624,462635007,TW 462635008,462651391,JP 462651392,462684159,BD 462684160,463470591,CN 463470592,465043455,KR 465043456,467927039,CN 467927040,468189183,JP 468189184,468713471,KR 468713472,469237759,TW 469237760,469499903,IN 469499904,469565439,NZ 469565440,469598207,AU 469598208,469630975,JP 469630976,469696511,TH 469696512,469712895,PK 469712896,469729279,KR 469729280,469762047,IN 469762048,520093695,US 520093696,520257535,PL 520257536,520290303,IR 520290304,520292351,TR 520292352,520294399,NL 520294400,520296447,RU 520296448,520298495,UA 520298496,520306687,SK 520306688,520308735,GB 520308736,520310783,DK 520310784,520312831,DE 520312832,520314879,MK 520314880,520318975,NL 520318976,520323071,ES 520323072,520325119,CH 520325120,520327167,FR 520327168,520329215,DE 520329216,520330239,SE 520330240,520330495,NL 520330496,520330751,US 520330752,520331263,SE 520331264,520339455,IT 520339456,520343551,UA 520343552,520355839,GB 520355840,520421375,ES 520421376,520486911,BE 520486912,520488959,NL 520488960,520489983,IT 520489984,520490495,RU 520490496,520490751,RO 520490752,520491007,RU 520491008,520491263,GB 520491264,520491391,IS 520491392,520491647,IT 520491648,520491775,IS 520491776,520492031,IE 520492032,520492799,IT 520492800,520493055,GB 520493056,520493311,BE 520493312,520493567,GB 520493568,520493695,DE 520493696,520493823,PT 520493824,520494079,FI 520494080,520494335,IT 520494336,520494591,CZ 520494592,520494847,CH 520494848,520495103,DK 520495104,520495359,SE 520495360,520495615,BE 520495616,520495871,SE 520495872,520496383,DE 520496384,520496639,TR 520496640,520496767,CZ 520496768,520496895,TR 520496896,520497151,ES 520497152,520497407,FR 520497408,520497919,CH 520497920,520498175,FR 520498176,520498431,CH 520498432,520498687,SE 520498688,520498943,IT 520498944,520499711,FR 520499712,520500223,DK 520500224,520500479,LU 520500480,520500735,DE 520500736,520500991,LT 520500992,520501247,AT 520501248,520501503,LU 520501504,520501759,NO 520501760,520502271,GB 520502272,520502527,IE 520502528,520502783,IT 520502784,520503295,GB 520503296,520505343,PL 520505344,520507391,GB 520507392,520511487,TR 520511488,520519679,UA 520519680,520552447,PL 520552448,520554495,NL 520554496,520556543,GB 520556544,520560639,FI 520560640,520562687,TR 520562688,520564735,PL 520564736,520566783,IE 520566784,520568831,CH 520568832,520589311,IR 520589312,520593407,IT 520593408,520595455,AM 520595456,520597503,MK 520597504,520601599,DE 520601600,520609791,SI 520609792,520613887,RU 520613888,520615935,CZ 520615936,520617983,FR 520617984,520683519,RU 520683520,520749055,SY 520749056,520753151,RU 520753152,520757247,LI 520757248,520761343,GB 520761344,520763391,IT 520763392,520765439,CZ 520765440,520781823,RU 520781824,520822783,CH 520822784,520824831,IT 520824832,520826879,RO 520826880,520828927,QA 520828928,520830975,NL 520830976,520847359,MK 520847360,520880127,PL 520880128,520882175,AT 520882176,520884223,IT 520884224,520888319,MK 520888320,520896511,DE 520896512,520898559,BE 520898560,520912895,GB 520912896,520945663,UA 520945664,520947711,GB 520947712,520949759,SE 520949760,520951807,RU 520951808,520953855,IE 520953856,520962047,RU 520962048,520963407,IE 520963408,520963408,US 520963409,520963583,IE 520963584,520963839,US 520963840,520965119,IE 520965120,520965631,US 520965632,520978431,IE 520978432,520980479,RU 520980480,520982527,IT 520982528,520984575,RU 520984576,520986623,NG 520986624,520988671,PS 520988672,520990719,DE 520990720,520992767,RU 520994816,521011199,BG 521011200,521014015,RO 521014016,521014271,NL 521014272,521019391,RO 521019392,521019647,NL 521019648,521022463,RO 521022464,521022719,NL 521022720,521022975,RO 521022976,521023487,DE 521023488,521023743,NL 521023744,521026559,RO 521026560,521027583,ES 521027584,521027839,RO 521027840,521028607,GB 521028608,521028863,RU 521028864,521029119,RO 521029120,521029375,ES 521029376,521029631,US 521029632,521031679,RO 521031680,521035775,IR 521035776,521037567,RO 521037568,521037823,TH 521037824,521039871,RO 521039872,521043967,IR 521043968,521045286,RO 521045287,521045287,IT 521045288,521048063,RO 521048064,521052159,IR 521052160,521056255,RO 521056256,521057279,LT 521057280,521058303,MD 521058304,521060351,IT 521060352,521064063,RO 521064064,521064191,ES 521064192,521074687,RO 521074688,521074943,EG 521074944,521075199,RO 521075200,521075327,FR 521075328,521075455,RO 521075456,521075711,EG 521075712,521076479,RO 521076480,521076735,IN 521076736,521078783,ES 521078784,521080831,CZ 521080832,521082879,RU 521082880,521084927,FR 521084928,521093119,SE 521093120,521095167,DE 521095168,521097215,IT 521097216,521101311,RU 521101312,521103359,IT 521103360,521105407,GB 521105408,521107455,IS 521107456,521109503,FI 521109504,521142271,SI 521142272,521404415,DE 521404416,521535487,NL 521535488,521537535,GB 521539584,521541631,BE 521541632,521543679,DE 521543680,521545727,RU 521545728,521547775,GB 521547776,521551871,AL 521551872,521553919,DE 521553920,521555967,GB 521555968,521558015,NL 521558016,521560063,CY 521560064,521562111,PL 521562112,521563135,GB 521563136,521564159,NL 521564160,521565183,GR 521565184,521565439,GB 521565440,521565695,US 521565696,521566207,GR 521566208,521568255,LU 521568256,521601023,PT 521601024,521666559,RU 521666560,521668607,GB 521668608,521670655,CH 521670656,521670911,HU 521670912,521671935,DE 521671936,521672703,HU 521672704,521674751,RU 521674752,521676799,GB 521676800,521678847,ES 521678848,521680895,NL 521680896,521682943,EE 521682944,521683679,SE 521683680,521683695,FI 521683696,521683711,NO 521683712,521687039,SE 521687040,521689087,GB 521689088,521691135,BY 521691136,521693183,DE 521693184,521695231,GB 521695232,521697279,BE 521697280,521699327,ES 521699328,521701375,NO 521701376,521703423,IT 521703424,521705471,DE 521705472,521707519,ES 521707520,521709567,NL 521709568,521711615,DE 521711616,521713663,SK 521713664,521715711,HU 521715712,521717759,LV 521717760,521718783,IQ 521718784,521719807,IR 521719808,521721855,UA 521721856,521725951,GB 521725952,521727999,IR 521728000,521732095,FR 521732096,521736191,GB 521736192,521738239,DK 521738240,521740287,RU 521740288,521742335,IT 521742336,521746431,DE 521746432,521748479,NL 521748480,521750527,SE 521750528,521752575,PS 521752576,521754623,FR 521754624,521756671,IR 521756672,521758719,NL 521758720,521760767,IR 521760768,521762815,IL 521762816,521764863,CH 521764864,521766911,IR 521766912,521768959,IQ 521768960,521771007,FI 521771008,521773055,DE 521773056,521775103,GB 521775104,521777151,TR 521777152,521779199,ES 521779200,521783295,GB 521783296,521785343,RU 521785344,521787391,GB 521787392,521789439,NO 521789440,521791487,RU 521791488,521793535,IR 521793536,521795583,RU 521795584,521797631,PL 521797632,521928703,IT 521928704,521945087,RU 521945088,521953279,GB 521953280,521961471,RU 521961472,521969663,CZ 521969664,521977855,UA 521977856,521986047,RU 521986048,521994239,UA 521994240,522002431,KG 522002432,522010623,IR 522010624,522018815,AE 522018816,522027007,FR 522027008,522059775,RU 522059776,522125311,CZ 522125312,522133503,MD 522133504,522135551,NL 522135552,522137599,IT 522137600,522141695,CH 522141696,522143743,RU 522143744,522145791,CZ 522145792,522147839,DK 522147840,522149887,ES 522149888,522158079,UA 522158080,522166271,BE 522166272,522168319,SE 522168320,522170367,RU 522170368,522174463,YE 522174464,522178559,RU 522178560,522180607,DE 522180608,522182655,KZ 522182656,522190847,CZ 522190848,522715135,FR 522715136,522717183,IR 522717184,522719231,RU 522719232,522721279,UA 522721280,522741759,RU 522741760,522743807,UA 522743808,522764287,RU 522780672,522782719,RU 522782720,522784767,UA 522784768,522786815,BG 522786816,522788863,PL 522788864,522792959,RU 522792960,522795007,UA 522795008,522797055,RU 522797056,522801151,UA 522801152,522803199,PL 522803200,522805247,UA 522805248,522807295,RU 522807296,522811391,UA 522811392,522813439,RU 522813440,522815487,UA 522815488,522819583,PL 522819584,522821631,KG 522821632,522823679,RU 522823680,522827775,PL 522827776,522831871,RU 522831872,522833919,CZ 522833920,522835967,PL 522835968,522838015,UA 522838016,522840063,RU 522840064,522842111,PL 522842112,522846207,RU 522846208,522854399,PL 522854400,522858495,RU 522858496,522866687,UA 522866688,522870783,LV 522870784,522874879,RU 522874880,522878975,UA 522878976,522887167,RO 522887168,522895359,UA 522895360,522911743,RU 522911744,522960895,UA 522960896,522969087,RU 522969088,522977279,UA 522977280,522981375,RU 522981376,522985471,IT 522985472,522989567,CH 522989568,522993663,RU 522993664,522997759,AL 522997760,523001855,RU 523001856,523003903,LT 523003904,523004159,IL 523004160,523004415,AE 523004416,523004671,TR 523004672,523004927,ES 523004928,523005183,BE 523005184,523005951,CH 523005952,523010047,IT 523010048,523014143,IL 523014144,523018239,ES 523018240,523022335,IT 523022336,523024895,RU 523024896,523025407,DE 523025408,523025663,UA 523025664,523025919,CH 523025920,523026431,RU 523026432,523030527,TR 523030528,523034623,FR 523034624,523038719,SE 523038720,523042815,RU 523042816,523075583,NO 523075584,523108351,HR 523108352,523119615,HU 523119616,523120639,RO 523120640,523173887,HU 523173888,523182079,BA 523182080,523190271,IR 523190272,523192319,FI 523192320,523194367,ES 523194368,523196415,DE 523196416,523198463,AE 523198464,523202559,CZ 523202560,523223039,RU 523223040,523225087,AM 523225088,523227135,SE 523227136,523229183,RO 523229184,523231231,GB 523231232,523239423,DE 523239424,523763711,GB 523763712,524025855,IR 524025856,524287999,PL 524288000,528482303,GB 528482304,528490495,PL 528490496,528498687,RU 528498688,528515071,UA 528515072,528523263,RU 528523264,528531455,UA 528531456,528539647,RU 528539648,528547839,UA 528547840,528564223,RU 528564224,528580607,UA 528580608,528588799,RU 528588800,528596991,UA 528596992,528605183,RU 528605184,528613375,UA 528613376,528637951,RU 528637952,528642047,PL 528642048,528654335,RU 528654336,528656383,SK 528656384,528658431,CZ 528658432,528662527,IR 528662528,528664575,RU 528664576,528666623,BY 528666624,528668671,RU 528668672,528670719,PL 528670720,528674815,US 528674816,528676863,GB 528676864,528678911,RU 528678912,528680959,MD 528680960,528683007,RO 528683008,528684031,UA 528684032,528684543,NL 528684544,528685823,UA 528685824,528687103,US 528687104,528689151,UA 528689152,528691199,RO 528691200,528695295,PL 528695296,528703487,RU 528703488,528715775,UA 528715776,528719871,RU 528719872,528721919,RO 528721920,528723967,PL 528723968,528726015,ES 528726016,528736255,RU 528736256,528740351,SK 528740352,528742399,IT 528742400,528744447,RU 528744448,528746495,GB 528748544,528752639,CZ 528760832,528762879,PL 528762880,528764927,AM 528764928,528769023,RO 528769024,528793599,RU 528793600,528795647,RO 528795648,528797695,NL 528797696,528809983,RU 528809984,528812031,PL 528812032,528814079,CZ 528814080,528816127,PL 528816128,528818175,RO 528818176,528834559,UA 528836608,528838655,RU 528838656,528840703,UA 528840704,528842751,RU 528842752,528859135,US 528859136,528861183,RO 528861184,528863231,RU 528863232,528867327,KZ 528867328,528887807,RU 528887808,528891903,PL 528891904,528900095,UA 528900096,528902143,SK 528902144,528908287,UA 528908288,528926719,RU 528926720,528928767,NL 528928768,528930815,UA 528930816,528932863,CZ 528932864,528941055,RU 528941056,528943103,RO 528943104,528945151,RU 528945152,528949247,PL 528949248,528965631,RU 528965632,528982015,UA 528982016,528986111,PL 528986112,528988159,UA 528988160,528990207,RU 528990208,528994303,PL 528994304,528996351,UZ 528996352,528998399,LT 528998400,529006591,RU 529006592,529268735,NL 529268736,529530879,TR 529530880,529596415,UA 529596416,529661951,TR 529661952,529727487,GE 529727488,529793023,HR 529793024,529793279,CZ 529793280,529794303,RU 529794304,529794559,CZ 529794560,529796095,RU 529796096,529797119,UA 529797120,529798143,RU 529798144,529798399,CZ 529798400,529798655,RU 529798656,529798911,KZ 529798912,529799167,UA 529799168,529799423,RU 529799424,529799679,UA 529799680,529800191,RU 529800192,529800703,UA 529800704,529800959,CZ 529800960,529801215,BY 529801216,529817599,RU 529817600,529818623,CZ 529818624,529826303,RU 529826304,529826815,CZ 529826816,529827839,RU 529827840,529828863,CZ 529828864,529829887,RU 529829888,529830911,CZ 529830912,529838079,RU 529838080,529842175,UA 529842176,529843199,IN 529843200,529844223,RU 529844224,529845247,CZ 529845248,529846271,UZ 529846272,529847295,CZ 529847296,529848319,GB 529848320,529848575,NL 529848576,529848831,CZ 529848832,529849087,UA 529849088,529849599,NL 529849600,529850111,CZ 529850112,529850367,RU 529850368,529853439,CZ 529853440,529856511,RU 529856512,529857535,KZ 529857536,529858559,UA 529858560,529924095,NL 529924096,529989631,DE 529989632,530055167,NL 530055168,530120703,GR 530120704,530153471,CY 530153472,530173951,GR 530173952,530174207,CY 530174208,530180095,GR 530180096,530186239,CY 530186240,530251775,IL 530251776,530317311,TR 530317312,530579455,IT 530579456,530710527,NL 530710528,530841599,RU 530841600,530972671,CH 530972672,531103743,SA 531103744,531169279,IL 531169280,531177471,KZ 531177472,531179519,GB 531179520,531181567,FR 531181568,531183615,NO 531183616,531185663,NL 531185664,531193855,TR 531193856,531195903,IE 531195904,531197951,IT 531197952,531199999,GB 531200000,531202047,RU 531202048,531234815,CZ 531234816,531236863,IE 531236864,531238911,FR 531238912,531240959,LV 531240960,531243007,SE 531243008,531245055,RU 531245056,531247103,IT 531247104,531251199,IR 531251200,531259391,SK 531259392,531261439,ES 531261440,531263487,DE 531263488,531265535,RU 531265536,531267583,GB 531267584,531275775,UA 531275776,531276799,US 531276800,531277311,GB 531277312,531277823,US 531277824,531279871,RU 531279872,531281919,CZ 531281920,531283967,RU 531283968,531292159,DE 531292160,531333119,AZ 531333120,531334655,NL 531334656,531335167,US 531335168,531337215,IT 531337216,531339263,CH 531339264,531341311,AL 531341312,531349503,KZ 531349504,531351551,RU 531351552,531355647,NL 531355648,531357695,IR 531357696,531361791,HU 531361792,531367935,CH 531367936,531369983,DE 531369984,531372031,CH 531372032,531372287,DE 531372288,531372543,CH 531372544,531372799,DE 531372800,531380223,CH 531380224,531390463,DE 531390464,531392511,CH 531392512,531398655,DE 531398656,531400703,RU 531400704,531402751,UA 531402752,531404799,LU 531404800,531406847,FI 531406848,531408895,FR 531410944,531415039,PL 531415040,531423231,RU 531425280,531427327,FR 531427328,531427503,GB 531427504,531427511,IT 531427512,531427559,GB 531427560,531427567,IT 531427568,531427703,GB 531427704,531427711,IT 531427712,531428191,GB 531428192,531428199,IT 531428200,531428207,GB 531428208,531428215,IT 531428216,531428351,GB 531428352,531428359,IT 531428360,531428495,GB 531428496,531428503,IT 531428504,531429135,GB 531429136,531429143,IT 531429144,531429167,GB 531429168,531429175,IT 531429176,531429207,GB 531429208,531429215,IT 531429216,531429239,GB 531429240,531429247,IT 531429248,531429319,GB 531429320,531429327,IT 531429328,531429391,GB 531429392,531429399,IT 531429400,531429407,GB 531429408,531429415,IT 531429416,531429599,GB 531429600,531429607,IT 531429608,531430191,GB 531430192,531430199,IT 531430200,531430319,GB 531430320,531430327,IT 531430328,531430407,GB 531430408,531430415,IT 531430416,531430583,GB 531430584,531430591,IT 531430592,531430791,GB 531430792,531430799,IT 531430800,531430823,GB 531430824,531430831,IT 531430832,531430847,GB 531430848,531430855,IT 531430856,531430871,GB 531430872,531430879,IT 531430880,531430903,GB 531430904,531430911,IT 531430912,531431423,GB 531431424,531496959,RU 531496960,531628031,PL 531628032,531660799,TR 531660800,531693567,BA 531693568,531695615,RU 531695616,531697663,LT 531697664,531699711,GB 531699712,531701759,CZ 531701760,531703551,NL 531703552,531703807,IQ 531703808,531705855,IT 531705856,531707903,ES 531707904,531709951,GR 531709952,531718143,RU 531718144,531720191,ES 531720192,531722239,RU 531722240,531724287,IT 531724288,531726335,DE 531726336,531759103,TR 531759104,531890175,PL 531890176,532021247,RU 532021248,532152319,PL 532152320,532168703,DE 532168704,532185087,NL 532185088,532201471,IR 532201472,532209663,RU 532209664,532210687,DE 532210688,532212223,RU 532212224,532212479,ME 532212480,532212735,NL 532212736,532213759,RU 532213760,532214015,GB 532214016,532221951,RU 532221952,532223999,IT 532224000,532226047,NO 532226048,532234239,GB 532234240,532242431,DK 532242432,532244479,IT 532244480,532246527,DE 532246528,532250623,BA 532250624,532283391,GB 532283392,532291583,TR 532291584,532293631,IE 532293632,532295679,IT 532295680,532297727,KG 532297728,532303871,RU 532303872,532305919,PL 532305920,532307967,NO 532307968,532310015,RU 532310016,532312063,GR 532312064,532312983,JE 532312984,532312991,GB 532312992,532313855,JE 532313856,532313983,GG 532313984,532314111,JE 532314112,532316159,DE 532316160,532324351,RU 532324352,532328447,NL 532328448,532330495,PS 532330496,532332543,CZ 532332544,532340735,PL 532340736,532341503,GB 532341504,532341759,DE 532341760,532343967,GB 532343968,532343983,US 532343984,532344319,GB 532344320,532344371,FR 532344372,532344372,GB 532344373,532344575,FR 532344576,532347391,GB 532347392,532347903,DE 532347904,532348671,GB 532348672,532348927,NL 532348928,532365311,IE 532365312,532365823,NL 532365824,532366079,DE 532366080,532366207,NL 532366208,532366239,AR 532366240,532366271,PA 532366272,532366893,DE 532366894,532366894,GB 532366895,532367359,DE 532367360,532368383,US 532368384,532368639,NL 532368640,532371455,DE 532371456,532372479,NL 532372480,532372735,LU 532372736,532372767,GB 532372768,532372783,CA 532372784,532372799,BR 532372800,532372815,MX 532372816,532372831,PL 532372832,532372863,FR 532372864,532372895,IT 532372896,532372959,SE 532372960,532372991,RU 532372992,532373247,NL 532373248,532373343,DE 532373344,532373503,NL 532373504,532375551,RU 532375552,532377599,IT 532377600,532381695,DE 532381696,532414463,NL 532414464,532676607,IT 532676608,532692991,GE 532692992,532701153,CZ 532701154,532701154,SK 532701155,532701183,CZ 532701184,532703231,GB 532703232,532705279,RU 532705280,532709375,NL 532709376,532725759,RU 532725760,532729855,SE 532729856,532731903,TR 532731904,532733951,PL 532733952,532735999,SE 532736000,532738047,RU 532738048,532740095,GB 532740096,532742143,KG 532742144,532746239,GB 532746240,532752383,IT 532752384,532754431,BE 532754432,532756479,FR 532756480,532758527,IT 532758528,532762623,SY 532762624,532766719,UA 532766720,532768767,PL 532768768,532770815,NL 532770816,532772863,IR 532772864,532774911,RU 532774912,532779007,GB 532779008,532783103,IR 532783104,532785151,AT 532785152,532787199,GB 532787200,532789247,BE 532789248,532791295,DK 532791296,532793343,LT 532793344,532795391,SE 532795392,532797439,CH 532797440,532799231,IE 532799232,532799487,GB 532799488,532801535,ES 532801536,532803583,DK 532803584,532805631,FR 532805632,532807679,SE 532807680,533200895,IT 533200896,533233663,TR 533233664,533250047,IE 533250048,533254143,RU 533254144,533256191,NL 533256192,533262335,RU 533262336,533264383,ES 533264384,533266431,RU 533266432,533331967,NL 533331968,533397503,UA 533397504,533463039,KW 533463040,533479423,RU 533479424,533479519,DE 533479520,533479551,FI 533479552,533479743,DE 533479744,533479775,FI 533479776,533480031,DE 533480032,533480063,FI 533480064,533481471,DE 533481472,533483519,NO 533483520,533485567,FR 533485568,533487615,LU 533487616,533491711,RU 533491712,533495807,DE 533495808,533500159,NL 533500160,533500415,JP 533500416,533503999,NL 533504000,533512191,RU 533512192,533528575,ME 533528576,533594111,GB 533594112,533659647,TR 533659648,533676031,CZ 533676032,533680127,RU 533680128,533682175,TR 533682176,533684223,ES 533684224,533692415,IT 533692416,533725183,RU 533725184,533734393,SE 533734394,533734394,DK 533734395,533807103,SE 533807104,533811199,LT 533811200,533815295,DE 533815296,533815296,TR 533815297,533816319,CY 533816320,533816320,TR 533816321,533817343,CY 533817344,533817344,TR 533817345,533819391,CY 533819392,533823487,DE 533823488,533825535,BE 533825536,533831679,IS 533831680,533835775,DE 533835776,533837823,SE 533837824,533839871,DE 533839872,533856255,IS 533856256,533858303,FR 533858304,533858751,TR 533858752,533858815,AT 533858816,533858895,TR 533858896,533858903,AT 533858904,533859647,TR 533859648,533859663,AT 533859664,533860351,TR 533862400,533864447,GB 533864448,533886719,TR 533886720,533886975,JP 533886976,533889023,TR 533889024,533891071,GB 533891072,533893119,RU 533893120,533895167,ES 533895168,533897215,TR 533897216,533899263,DE 533899264,533901311,RU 533901312,533905407,IL 533905408,533913599,RU 533913600,533915647,ES 533915648,533919743,GB 533919744,533921791,SE 533921792,533954559,RU 533954560,533962751,BG 533962752,533964799,GB 533964800,533966847,NO 533966848,533968895,DE 533968896,533970943,ES 533970944,533987327,SE 533987328,534118399,DE 534118400,534151167,KW 534151168,534158591,DE 534158592,534158847,NL 534158848,534163455,DE 534163456,534167551,ES 534167552,534181887,DE 534181888,534183935,IR 534183936,534249471,AE 534249472,534253567,GB 534253568,534257663,FR 534257664,534259711,SE 534259712,534261759,CH 534261760,534263807,GB 534263808,534265855,PL 534265856,534282239,CY 534282240,534284287,IT 534284288,534286335,SE 534286336,534288383,LU 534288384,534290431,IT 534290432,534296575,RU 534296576,534298623,BA 534298624,534306815,HR 534306816,534308863,SE 534308864,534310911,IE 534310912,534315007,IT 534315008,534347775,HR 534347776,534355967,GB 534355968,534364159,GR 534364160,534366207,FI 534366208,534368255,IT 534368256,534370303,IR 534370304,534372351,AT 534372352,534374399,KW 534374400,534376447,FR 534376448,534378495,IE 534380544,534511615,AE 534511616,534512639,BZ 534512640,534512895,NL 534512896,534513151,SE 534513152,534513215,BS 534513216,534513279,VG 534513280,534513407,NL 534513408,534513663,SE 534513664,534514687,US 534514688,534515455,DE 534515456,534515711,SE 534515712,534515967,GB 534515968,534516735,US 534516736,534516991,GB 534516992,534517759,US 534517760,534518783,NL 534518784,534519039,DE 534519040,534519167,NL 534519168,534519199,KP 534519200,534519231,VA 534519232,534519263,AQ 534519264,534519295,IT 534519296,534519327,NL 534519328,534519359,PK 534519360,534519391,PE 534519392,534519423,PK 534519424,534519455,FJ 534519456,534519487,BR 534519488,534519519,MX 534519520,534519551,CN 534519552,534519807,NL 534519808,534521855,US 534521856,534522367,DE 534522368,534523391,NL 534523392,534523903,DE 534523904,534530047,US 534530048,534538239,ES 534538240,534538751,US 534538752,534539007,GB 534539008,534540287,US 534540288,534542335,NL 534542336,534544383,DE 534544384,534546431,RO 534546432,534548479,DE 534548480,534550527,PL 534550528,534560767,RU 534560768,534573823,GB 534573824,534574079,NL 534574080,534609919,GB 534609920,534642687,ES 534642688,534645759,CZ 534645760,534646271,PL 534646272,534646783,CZ 534646784,534648831,PL 534648832,534650879,CH 534650880,534652927,RU 534652928,534654975,AL 534654976,534663167,GB 534663168,534675455,ES 534675456,534691839,GB 534691840,534693887,FR 534693888,534695935,NL 534695936,534700031,GB 534700032,534708223,JO 534708224,534740991,TR 534740992,534749183,BA 534749184,534753279,NL 534753280,534757375,PS 534757376,534761471,KZ 534761472,534765567,BA 534765568,534767615,UA 534767616,534769663,HU 534769664,534773759,IT 534773760,536870911,DE 536870912,539623423,US 539623424,539624577,NL 539624578,539624578,US 539624579,539627519,NL 539627520,539629455,GB 539629456,539629463,BE 539629464,539629975,GB 539629976,539629983,DE 539629984,539630975,GB 539630976,539630983,PT 539630984,539630991,FI 539630992,539630999,NO 539631000,539631007,CZ 539631008,539631015,DK 539631016,539631023,FR 539631024,539631031,ES 539631032,539631039,IE 539631040,539631047,IT 539631048,539631615,GB 539631616,539635711,NL 539635712,539656191,US 539656192,539660287,IN 539660288,539666431,HK 539666432,539668479,JP 539668480,539668819,AU 539668820,539668823,NZ 539668824,539670527,AU 539670528,539672575,JP 539672576,540725247,US 540725248,540727295,FR 540727296,540729343,DE 540729344,540731391,US 540731392,540733439,GB 540733440,540737535,NL 540737536,540737757,BZ 540737758,540737758,BR 540737759,540783936,BZ 540783937,540783937,BR 540783938,540803071,BZ 540803072,540811263,US 540811264,540814084,SG 540814085,540814086,TH 540814087,540814327,SG 540814328,540814328,IN 540814329,540814335,SG 540814336,540814591,US 540814592,540819455,SG 540819456,540820959,US 540820960,540820975,CA 540820976,540825347,US 540825348,540825348,CA 540825349,540826383,US 540826384,540826399,CA 540826400,543690751,US 543690752,543691007,AR 543691008,543821567,US 543821568,543821823,NL 543821824,543830527,US 543830528,543830783,NL 543830784,543844863,US 543844864,543845119,CH 543845120,543849983,US 543849984,543850239,ES 543850240,543850495,US 543850496,543850751,ES 543850752,543851263,TR 543851264,543855615,US 543855616,543855871,FI 543855872,543857663,US 543857664,543857919,NO 543857920,543859967,US 543859968,543860223,DK 543860224,543860479,GR 543860480,543864319,US 543864320,543864575,IE 543864576,543865343,US 543865344,543865599,CZ 543865600,543866623,US 543866624,543866879,NL 543866880,543872511,US 543872512,543872767,BE 543872768,543873023,NL 543873024,544436771,US 544436772,544436775,CA 544436776,548441343,US 548441344,548441599,PR 548441600,586972927,US 586972928,586973183,CA 586973184,586978047,US 586978048,586978303,BN 586978304,587006719,US 587006720,587006975,GB 587006976,603979775,US 603979776,603980799,CN 603980800,603981823,NP 603981824,604110847,CN 604110848,604241919,JP 604241920,604504063,CN 604504064,605028351,JP 605028352,606412799,CN 606412800,606413823,HK 606413824,606414335,CN 606414336,606414591,AU 606414592,606420991,CN 606420992,606437375,ID 606437376,606470143,KH 606470144,606601215,KR 606601216,607256575,CN 607322112,607387647,CN 607387648,607649791,JP 607649792,608174079,CN 608174080,610271231,ID 610271232,618659839,CN 618659840,619708415,TW 619708416,620232703,JP 620232704,620494847,CN 620494848,620625919,NP 620625920,620691455,CN 620756992,620759039,IE 620759040,620763135,NL 620763136,620765183,EE 620765184,620773375,CH 620773376,620775423,ME 620775424,620777471,FR 620777472,620781567,NL 620781568,620783615,GB 620783616,620785663,ES 620785664,620785919,DE 620785920,620786687,US 620786688,620787711,DE 620787712,620789503,RU 620789504,620789631,KZ 620789632,620789759,RU 620789760,620810239,HR 620810240,620822527,LT 620822528,620845055,RU 620845056,620845191,GB 620845192,620845199,DE 620845200,620845503,GB 620845504,620845567,SI 620845568,620849151,GB 620849152,620851199,NL 620851200,620855295,DE 620855296,620859391,RU 620859392,620861439,NL 620861440,620863487,GB 620863488,620865535,DE 620865536,620867583,FR 620867584,620869631,ES 620869632,620871679,FI 620871680,620873727,DE 620873728,620875775,NL 620875776,620877823,US 620877824,620879871,DE 620879872,620881919,GB 620881920,620888063,FR 620888064,621019135,SE 621019136,621150207,DE 621150208,621215743,GR 621215744,621281279,PL 621281280,621314047,PS 621314048,621318143,BA 621318144,621322239,RU 621322240,621330431,FR 621330432,621346815,PL 621346816,621355007,RU 621355008,621357055,UA 621357056,621361151,RU 621361152,621363199,GB 621363200,621381631,RU 621381632,621383679,FR 621383680,621387775,RU 621387776,621389823,NL 621389824,621391871,SK 621391872,621392127,IT 621392128,621392383,CY 621392384,621392639,GE 621392640,621392895,CY 621392896,621393151,IT 621393152,621393919,CY 621393920,621395967,DE 621395968,621398015,CZ 621398016,621400063,TR 621400064,621402111,HU 621402112,621404159,NL 621404160,621408255,IT 621408256,621410303,RU 621410304,621412351,IR 621412352,621428735,NL 621428736,621429759,IR 621429760,621430527,DE 621430528,621430783,GB 621430784,621432831,ES 621432832,621436927,IT 621436928,621445119,DE 621445120,621805567,ES 621805568,621813759,NL 621813760,621821951,SA 621821952,621823567,DE 621823568,621823583,US 621823584,621823999,DE 621824000,621826047,FR 621826048,621828095,RU 621830144,621838335,FI 621838336,621871103,SA 621871104,621903871,BY 621903872,621912063,IQ 621912064,621916159,HU 621916160,621918207,KZ 621918208,621920255,GB 621920256,621924351,JO 621924352,621928447,NL 621928448,621932543,DE 621932544,621934591,UA 621934592,621936639,SE 621936640,621938687,RU 621938688,621939458,GE 621939459,621939459,RU 621939460,621939711,GE 621939712,621940479,RU 621940480,621942527,GB 621942528,621969407,RU 621971456,621971711,GB 621971712,621973247,IM 621973248,621973503,GB 621973504,621975551,IE 621975552,621977599,RU 621977600,621981695,FR 621981696,621983743,US 621983744,621985791,GB 621985792,621987839,US 621987840,621989887,DK 621989888,621992959,SE 621992960,621993983,DK 621993984,621998079,SI 621998080,622000127,ES 622000128,622004223,RU 622004224,622006271,BE 622006272,622008319,FI 622008320,622010367,GB 622010368,622018559,RU 622018560,622020607,SI 622020608,622022655,RU 622022656,622026751,IR 622026752,622028799,IE 622028800,622030847,RS 622030848,622034943,IL 622034944,622067711,UA 622067712,622329855,RU 622329856,622395391,DE 622395392,622405631,UA 622405632,622406655,ES 622406656,622407679,GB 622407680,622409727,DE 622409728,622411775,FR 622411776,622413823,DE 622413824,622415871,FR 622415872,622417919,MK 622417920,622419967,IM 622419968,622428159,UA 622428160,622460927,GB 622460928,622477311,AZ 622477312,622479359,AL 622479360,622481407,GB 622481408,622483455,AL 622483456,622485503,GB 622485504,622487551,MK 622487552,622489599,GB 622489600,622493695,IL 622493696,622497791,MD 622497792,622499839,IL 622499840,622501887,SE 622501888,622503935,PL 622503936,622505983,AM 622505984,622510079,FR 622510080,622512127,PL 622512128,622514175,DE 622514176,622518271,NO 622518272,622518527,GB 622518528,622519281,NL 622519282,622519282,GB 622519283,622520319,NL 622520320,622522367,RU 622522368,622524415,FR 622524416,622526463,ES 622526464,622591999,IR 622592000,622624767,OM 622624768,622626815,NO 622626816,622630911,DK 622630912,622632959,PL 622632960,622641151,RU 622641152,622657535,PT 622657536,622690303,RU 622690304,622723071,ES 622723072,622854143,PL 622854144,622866431,IR 622866432,622868479,NO 622868480,622870527,FR 622870528,622874623,AZ 622874624,622878719,IT 622880768,622882815,IT 622882816,622886911,IR 622886912,622919679,GR 622919680,622985215,FI 622985216,622993407,TR 622993408,622997503,IT 622997504,623001599,NL 623001600,623003647,ES 623003648,623005695,IT 623005696,623009791,PS 623009792,623017983,MD 623017984,623050751,KW 623050752,623052799,FR 623052800,623054847,RS 623054848,623058943,FI 623058944,623067135,RO 623067136,623069183,AL 623069184,623071231,GB 623071232,623073279,FI 623073280,623075327,GB 623075328,623077375,DK 623077376,623077783,CH 623077784,623077791,NL 623077792,623077807,CH 623077808,623077815,BE 623077816,623077819,SE 623077820,623077827,CH 623077828,623077831,US 623077832,623077833,PT 623077834,623077835,ES 623077836,623077837,CR 623077838,623077839,KN 623077840,623077843,BR 623077844,623077849,HK 623077850,623077851,ZA 623077852,623077855,SG 623077856,623077857,WS 623077858,623077861,NZ 623077862,623083519,CH 623083520,623116287,ES 623116288,623378431,KW 623378432,623509503,OM 623509504,623575807,SA 623575808,623576063,RO 623576064,623640575,SA 623640576,623642623,DE 623642624,623644671,NL 623644672,623648767,CZ 623648768,623650815,JO 623650816,623652863,RU 623652864,623654911,FI 623654912,623656959,IR 623656960,623673343,BY 623673344,623689727,NO 623689728,623706111,RU 623706112,623771647,BY 623771648,623775743,GB 623775744,623777791,IE 623777792,623779839,GB 623779840,623783935,IL 623783936,623788031,RU 623788032,623790079,HU 623790080,623792127,ES 623792128,623794175,CZ 623794176,623796223,ES 623796224,623798271,GB 623798272,623800319,GE 623800320,623800831,SE 623800832,623801087,NL 623801088,623801855,US 623801856,623802367,NL 623802368,623802879,SE 623802880,623804415,NL 623804416,623806463,RU 623806464,623808511,NL 623810560,623812607,ES 623812608,623820799,SE 623820800,623821823,NL 623821824,623822335,US 623822336,623822847,NL 623822848,623824895,GB 623824896,623826943,CZ 623826944,623827967,UA 623827968,623828991,BG 623828992,623837183,UA 623837184,623902719,PL 623902720,623919103,CZ 623919104,623935487,NL 623935488,623960063,SY 623960064,623962111,GB 623962112,623964159,HR 623964160,623966207,GB 623966208,623968255,RU 623968256,624001023,DE 624001024,624005119,DK 624005120,624007167,IR 624007168,624009215,DE 624009216,624025599,RU 624025600,624027647,NL 624027648,624029695,FR 624029696,624033791,SE 624033792,624164863,DE 624164864,624427007,UA 624427008,624492543,SA 624492544,624558079,UA 624558080,624562175,SK 624562176,624564223,TR 624564224,624566271,GB 624566272,624568319,RU 624568320,624570367,BE 624570368,624574463,DE 624574464,624590847,NL 624590848,624625848,FR 624625849,624625849,CA 624625850,624640255,FR 624640256,624640259,GB 624640260,624640527,FR 624640528,624640543,GB 624640544,624640759,FR 624640760,624640767,NL 624640768,624640951,FR 624640952,624640959,PT 624640960,624641743,FR 624641744,624641759,NL 624641760,624641791,IT 624641792,624643019,FR 624643020,624643023,IT 624643024,624643231,FR 624643232,624643235,DE 624643236,624643311,FR 624643312,624643315,IT 624643316,624644667,FR 624644668,624644671,DK 624644672,624645147,FR 624645148,624645151,IT 624645152,624645479,FR 624645480,624645487,CZ 624645488,624646235,FR 624646236,624646239,IT 624646240,624646255,DE 624646256,624646343,FR 624646344,624646347,NL 624646348,624646399,FR 624646400,624646431,BE 624646432,624646583,FR 624646584,624646591,NL 624646592,624647171,FR 624647172,624647183,ES 624647184,624647459,FR 624647460,624647463,GB 624647464,624648139,FR 624648140,624648143,ES 624648144,624653311,FR 624653312,624653823,GB 624653824,624656975,FR 624656976,624656979,PT 624656980,624657543,FR 624657544,624657547,ES 624657548,624657607,FR 624657608,624657615,BE 624657616,624657711,FR 624657712,624657715,ES 624657716,624657883,FR 624657884,624657887,ES 624657888,624657923,FR 624657924,624657927,DE 624657928,624658323,FR 624658324,624658327,IE 624658328,624658479,FR 624658480,624658483,DE 624658484,624658495,FR 624658496,624658527,IT 624658528,624659031,FR 624659032,624659039,IT 624659040,624659071,FR 624659072,624659135,ES 624659136,624660103,FR 624660104,624660107,PT 624660108,624660827,FR 624660828,624660831,ES 624660832,624661247,FR 624661248,624661251,ES 624661252,624661787,FR 624661788,624661788,RO 624661789,624661955,FR 624661956,624661959,PL 624661960,624663863,FR 624663864,624663867,DE 624663868,624663951,FR 624663952,624663955,ES 624663956,624664527,FR 624664528,624664531,ES 624664532,624664615,FR 624664616,624664619,IT 624664620,624664676,FR 624664677,624664677,IE 624664678,624665587,FR 624665588,624665591,DE 624665592,624665803,FR 624665804,624665807,NL 624665808,624665951,FR 624665952,624665955,NL 624665956,624666167,FR 624666168,624666168,GB 624666169,624666172,FR 624666173,624666173,GB 624666174,624666219,FR 624666220,624666223,DE 624666224,624666695,FR 624666696,624666703,DE 624666704,624667471,FR 624667472,624667475,IT 624667476,624667599,FR 624667600,624667603,IT 624667604,624668063,FR 624668064,624668079,BE 624668080,624668639,FR 624668640,624668643,NL 624668644,624669011,FR 624669012,624669015,DE 624669016,624669795,FR 624669796,624669799,ES 624669800,624670915,FR 624670916,624670919,ES 624670920,624671455,FR 624671456,624671471,ES 624671472,624671855,FR 624671856,624671871,DE 624671872,624672547,FR 624672548,624672551,ES 624672552,624672559,FR 624672560,624672563,IT 624672564,624673287,FR 624673288,624673295,DE 624673296,624673451,FR 624673452,624673455,ES 624673456,624673535,FR 624673536,624673791,ES 624673792,624673803,FR 624673804,624673807,NL 624673808,624673903,FR 624673904,624673919,ES 624673920,624675691,FR 624675692,624675695,ES 624675696,624675775,FR 624675776,624675779,ES 624675780,624676003,FR 624676004,624676007,DE 624676008,624676087,FR 624676088,624676091,DE 624676092,624676715,FR 624676716,624676719,ES 624676720,624677463,FR 624677464,624677467,ES 624677468,624677683,FR 624677684,624677687,NL 624677688,624677767,FR 624677768,624677775,NL 624677776,624678391,FR 624678392,624678399,NL 624678400,624678487,FR 624678488,624678495,NL 624678496,624679175,FR 624679176,624679183,NL 624679184,624679199,FR 624679200,624679203,ES 624679204,624679679,FR 624679680,624679687,NL 624679688,624679843,FR 624679844,624679847,ES 624679848,624680839,FR 624680840,624680847,NL 624680848,624680931,FR 624680932,624680935,NL 624680936,624681351,FR 624681352,624681359,NL 624681360,624681807,FR 624681808,624681823,BE 624681824,624682495,FR 624682496,624682527,ES 624682528,624683295,FR 624683296,624683311,DE 624683312,624683775,FR 624683776,624683779,DE 624683780,624683783,FR 624683784,624683787,DE 624683788,624683975,FR 624683976,624683983,GB 624683984,624684043,FR 624684044,624684047,PT 624684048,624684183,FR 624684184,624684191,IT 624684192,624684199,FR 624684200,624684203,IT 624684204,624684207,FR 624684208,624684211,ES 624684212,624684799,FR 624684800,624684803,DE 624684804,624685535,FR 624685536,624685539,PT 624685540,624685711,FR 624685712,624685715,ES 624685716,624685799,FR 624685800,624685803,ES 624685804,624685919,FR 624685920,624685923,ES 624685924,624685943,FR 624685944,624685947,IT 624685948,624686627,FR 624686628,624686631,ES 624686632,624686667,FR 624686668,624686671,ES 624686672,624686711,FR 624686712,624686715,ES 624686716,624686783,FR 624686784,624686815,ES 624686816,624687343,FR 624687344,624687346,CZ 624687347,624687347,ES 624687348,624687827,FR 624687828,624687831,ES 624687832,624688007,FR 624688008,624688015,ES 624688016,624688307,FR 624688308,624688311,ES 624688312,624688487,FR 624688488,624688491,ES 624688492,624688639,FR 624688640,624688643,ES 624688644,624688691,FR 624688692,624688695,ES 624688696,624688779,FR 624688780,624688783,ES 624688784,624688791,FR 624688792,624688795,ES 624688796,624688831,FR 624688832,624688835,ES 624688836,624689076,FR 624689077,624689078,BE 624689079,624689151,FR 624689152,624691199,DE 624691200,624693247,FR 624693248,624695295,RU 624695296,624697343,PL 624697344,624699391,IT 624699392,624701439,IL 624701440,624705535,FR 624705536,624721919,GB 624721920,624723967,HR 624723968,624726015,BG 624726016,624728063,PS 624728064,624730111,FR 624730112,624732159,DK 624732160,624734207,DE 624734208,624736255,RU 624736256,624738303,FR 624738304,624740351,NL 624740352,624742399,DE 624742400,624746495,RU 624746496,624748182,US 624748183,624748183,NL 624748184,624750236,US 624750237,624750237,NL 624750238,624750241,US 624750242,624750242,NL 624750243,624754687,US 624754688,624787455,AZ 624787456,624791551,DE 624791552,624795647,ES 624795648,624799743,SK 624799744,624801791,RU 624801792,624803839,AT 624803840,624812031,DE 624812032,624813055,US 624813056,624814079,IL 624814080,624816127,GB 624816128,624818175,FR 624818176,624820223,ES 624820224,624885759,BE 624885760,624918527,BG 624918528,624951295,IR 624951296,625475583,FR 625475584,625483775,ES 625483776,625485823,IT 625485824,625487871,UA 625487872,625491967,TR 625491968,625500159,RU 625500160,625504255,NL 625504256,625506303,GB 625506304,625508351,PL 625508352,625512447,AZ 625512448,625514495,DE 625514496,625515007,GG 625515008,625515519,GB 625515520,625515775,GG 625515776,625516031,GB 625516032,625516287,GG 625516288,625516543,GB 625516544,625518591,BE 625518592,625518847,NL 625518848,625519103,US 625519104,625520639,NL 625520640,625522687,RU 625522688,625523967,SE 625523968,625524479,US 625524480,625524735,SE 625524736,625541119,FR 625541120,625606655,UA 625606656,625672191,NL 625672192,625674239,RU 625674240,625676287,TR 625676288,625680383,MD 625680384,625688575,MT 625688576,625704959,MD 625704960,625707007,GE 625707008,625709055,AT 625709056,625711103,JO 625711104,625713151,NL 625713152,625721343,DK 625721344,625725439,RU 625725440,625727487,PS 625727488,625729535,UA 625729536,625731583,NL 625731584,625733631,GB 625733632,625735679,IR 625735680,625737727,RU 625737728,625770495,HU 625770496,625786879,RU 625786880,625795071,PS 625795072,625803263,SA 625803264,625811455,TR 625811456,625815551,FR 625815552,625817599,IQ 625817600,625817911,NL 625817912,625817915,GB 625817916,625819647,NL 625819648,625823743,IQ 625823744,625827839,NL 625827840,625829887,IT 625829888,625831935,RU 625831936,625836031,IT 625836032,625838079,RU 625838080,625840127,IT 625840128,625842175,GB 625842176,625844223,PL 625844224,625846271,IT 625846272,625848319,RS 625848320,625854463,GB 625854464,625856511,DE 625856512,625860607,IT 625860608,625868799,CZ 625868800,625999871,RU 625999872,627048447,DE 627048448,627130367,DK 627130368,627142655,FR 627142656,627145727,RO 627145728,627146751,ES 627146752,627179519,NL 627179520,627212287,IR 627212288,627216383,FI 627216384,627218431,GB 627218432,627220479,TJ 627220480,627228671,RU 627228672,627230719,GR 627230720,627232767,IR 627232768,627236863,PL 627236864,627238911,IQ 627240804,627240804,US 627240960,627245055,RU 627245056,627277823,KZ 627277824,627294207,SA 627294208,627296255,GR 627296256,627298303,DE 627298304,627300351,IT 627300352,627302399,RU 627302400,627572735,IT 627572736,627834879,SA 627834880,627965951,PL 627965952,628006911,RU 628006912,628015103,GE 628015104,628017151,FR 628017152,628019199,CH 628019200,628021247,UZ 628021248,628023295,GB 628023296,628029439,RU 628029440,628031487,GB 628031488,628097023,HU 628097024,628230143,RU 628230144,628232191,IT 628232192,628236287,RU 628236288,628244479,DE 628244480,628246527,FR 628246528,628248575,MT 628248576,628250623,FI 628250624,628252671,NL 628252672,628260863,DE 628260864,628277247,AZ 628277248,628293631,IR 628293632,628359167,UA 628359168,628621311,IT 628621312,628654079,DE 628654080,628662271,RO 628662272,628670463,DE 628670464,628686847,RO 628686848,628752383,SA 628752384,628785151,RU 628785152,628787199,CH 628787200,628789247,TR 628789248,628791295,SE 628791296,628793343,IL 628793344,628801535,ME 628801536,628803583,GB 628803584,628805631,FR 628805632,628807679,GB 628809728,628813823,TR 628813824,628815871,DK 628815872,628817919,GB 628817920,628834303,TR 628834304,628842495,JO 628842496,628844543,TR 628844544,628846847,DE 628846848,628847359,GB 628847360,628847615,FR 628847616,628848639,GB 628848640,628850687,DE 628850688,628851455,SE 628851456,628852479,NO 628852480,628867071,SE 628867072,628869119,IR 628869120,628871167,PL 628871168,628873215,US 628873216,628875263,RU 628875264,628877311,SE 628877312,628879359,BE 628879360,628881407,IT 628881408,628883455,GB 628883456,629145599,SA 629145600,629178367,PL 629178368,629180415,GB 629180416,629182463,IT 629182464,629184511,NL 629184512,629188607,PL 629188608,629190655,ES 629190656,629192703,CH 629192704,629194751,GB 629194752,629196799,IE 629196800,629198847,AZ 629198848,629202943,DK 629202944,629207039,RO 629207040,629276671,IR 629276672,629293055,PL 629293056,629309439,TR 629309440,629313535,DE 629313536,629315583,ES 629315584,629317631,IT 629317632,629325823,FI 629325824,629327871,RU 629327872,629329919,IR 629329920,629331967,ES 629331968,629334015,IT 629334016,629334271,NL 629334272,629338111,GB 629338112,629340159,BG 629340160,629342207,GB 629342208,629374975,BH 629374976,629387263,PL 629387264,629389311,DE 629389312,629391359,CH 629391360,629399551,RU 629399552,629401599,GE 629401600,629405695,DE 629405696,629407743,TR 629407744,629669887,ES 629669888,629735423,FI 629735424,629800959,IR 629800960,629866495,DE 629866496,629874687,NL 629874688,629879807,RU 629879808,629880063,DE 629880064,629882879,RU 629882880,629883135,GB 629883136,629883391,AU 629883904,629884159,AU 629884416,629884671,CL 629884672,629884927,AU 629884928,629886975,PL 629886976,629889023,RU 629889024,629891071,IT 629891072,629895167,UA 629895168,629897215,AL 629897216,629899263,ES 629901312,629903359,NL 629903360,629905407,PL 629905408,629907455,SE 629907456,629915647,UA 629915648,629983231,RU 629983232,629985279,FR 629985280,629987327,TR 629987328,629989375,SE 629989376,629991423,FR 629991424,629991935,US 629991936,629992447,NL 629992448,629993215,US 629993216,629993231,NL 629993232,629993471,US 629993472,629997567,JO 629997568,630063103,SA 630063104,630128639,IL 630128640,630130687,BE 630130688,630136831,RU 630136832,630138879,NL 630138880,630145023,DE 630145024,630147071,EE 630147072,630149119,HU 630149120,630151167,NL 630151168,630153215,UA 630153216,630157311,RU 630157312,630159359,CZ 630159360,630161407,ES 630161408,630163455,KG 630163456,630165503,GB 630165504,630167551,IR 630167552,630169599,GE 630169600,630173695,RO 630173696,630177791,AT 630177792,630194175,BG 630194176,630456319,RU 630456320,630489087,RO 630489088,630491135,NL 630491136,630493183,DE 630493184,630495231,NO 630495232,630497279,DE 630497280,630499327,NL 630499328,630501375,LV 630501376,630503679,NL 630503680,630504447,IT 630504448,630509567,NL 630509568,630511615,TR 630511616,630513663,GB 630513664,630515711,IT 630515712,630517759,DE 630517760,630519807,GB 630521856,630538239,GR 630538240,630539263,CY 630539264,630554623,GR 630554624,630556671,CY 630556672,630571007,GR 630571008,630587391,CY 630587392,630718463,KZ 630718464,630720511,JO 630720512,630722559,NL 630722560,630726655,PL 630726656,630732799,GB 630732800,630734079,SE 630734080,630734847,US 630734848,630736895,IS 630736896,630738943,TR 630738944,630743039,ES 630743040,630751231,SK 630751232,630759423,ES 630759424,630767615,IR 630767616,630783999,GB 630784000,630802431,RU 630802432,630804479,GB 630804480,630806527,CH 630806528,630808575,ES 630808576,630810623,NL 630810624,630816767,CH 630816768,630818303,RO 630818304,630818431,CN 630818432,630818559,KR 630818560,630819327,RO 630819328,630819839,SE 630819840,630820095,GR 630820096,630820351,RO 630820352,630820607,ES 630820608,630820863,US 630820864,630828031,RO 630828032,630828543,SE 630828544,630829055,RO 630829056,630833151,IR 630833152,630849535,NL 630849536,630980607,TR 630980608,630981631,MD 630981632,630982143,RO 630982144,630982271,CN 630982272,630982399,KR 630982400,630982655,RO 630982656,630984703,MD 630984704,630988799,IR 630988800,630990335,RO 630990336,630990847,JE 630990848,630992895,RO 630992896,630996991,IR 630996992,630997503,GB 630997504,630997759,MD 630997760,630998271,RO 630998272,630998783,MD 630998784,630999039,RO 630999040,630999295,CN 630999296,630999551,RO 630999552,630999679,GB 630999680,631001087,RO 631001088,631005183,MD 631005184,631006207,IT 631006208,631007231,MD 631007232,631007487,KR 631007488,631007743,RO 631007744,631007871,GB 631007872,631009279,RO 631009280,631017471,IR 631017472,631018495,MD 631018496,631019519,IT 631019520,631023615,IR 631023616,631024639,IT 631024640,631024895,RO 631024896,631025151,GB 631025152,631027711,RO 631027712,631027967,KR 631027968,631028223,RO 631028224,631028351,GB 631028352,631029759,RO 631029760,631033855,SE 631033856,631034879,IT 631034880,631035903,RO 631035904,631036159,JP 631036160,631036415,RO 631036416,631036543,GB 631036544,631039999,RO 631040000,631043071,MD 631043072,631043839,RO 631043840,631045119,MD 631045120,631046143,RO 631046144,631048191,DK 631048192,631050239,FR 631050240,631054335,RU 631054336,631056383,GB 631056384,631058431,DE 631058432,631060479,GB 631060480,631062527,FR 631062528,631078911,EE 631078912,631080959,FR 631080960,631083007,BG 631083008,631085055,LT 631085056,631087103,LU 631087104,631095295,BG 631095296,631097343,CZ 631097344,631099391,PL 631099392,631103487,AM 631103488,631105535,FR 631105536,631107583,RU 631107584,631109631,GB 631109632,631111679,DE 631111680,631177215,ES 631177216,631242751,IT 631242752,632291327,FR 632291328,632815615,IT 632815616,632946687,BE 632946688,632963071,AT 632963072,632979455,AM 632979456,633012223,IT 633012224,633059983,FR 633059984,633059987,GB 633059988,633063679,FR 633063680,633063935,PL 633063936,633064191,FR 633064192,633064447,GB 633064448,633065471,FR 633065472,633065727,GB 633065728,633065983,DE 633065984,633066239,FR 633066240,633066495,ES 633066496,633066751,FR 633066752,633067007,IT 633067008,633074760,FR 633074761,633074761,ES 633074762,633077759,FR 633077760,633094143,RU 633094144,633098239,NL 633098240,633100287,HU 633100288,633102335,FR 633102336,633110527,GB 633110528,633143295,CZ 633143296,633208831,PT 633208832,633241599,RU 633241600,633274367,PL 633274368,633290751,HU 633290752,633298943,IR 633298944,633307135,GB 633307136,633339903,NO 633339904,633602047,RU 633602048,633864191,SE 633864192,633880575,NO 633880576,633884671,RU 633884672,633886719,IT 633886720,633888767,RU 633888768,633890815,DE 633890816,633892863,FR 633892864,633894911,GB 633894912,633896959,RU 633896960,633929727,OM 633929728,633997311,DE 633997312,633999359,RU 633999360,634001407,IT 634001408,634003455,NO 634003456,634007551,PL 634007552,634009599,TR 634009600,634011647,NO 634011648,634028031,JO 634028032,634060799,RO 634060800,634068991,UA 634068992,634071039,LV 634071040,634073087,GB 634073088,634075135,IE 634075136,634077183,NL 634077184,634093567,BA 634093568,634109951,GB 634109952,634110975,IE 634110976,634111231,GB 634111232,634111999,IE 634112000,634114047,RU 634114048,634116095,SE 634116096,634118143,NL 634118144,634122239,IT 634122240,634124287,RU 634124288,634126335,CH 634126336,634191871,RU 634191872,634193919,TR 634193920,634195967,CZ 634195968,634198015,RU 634198016,634200063,BA 634200064,634202111,IS 634202112,634204159,FR 634204160,634206207,RU 634206208,634208255,GB 634208256,634216447,RU 634216448,634220543,HR 634220544,634222591,IQ 634222592,634224639,DK 634224640,634388479,IT 634388480,634396671,SE 634396672,634398719,BA 634398720,634400767,KZ 634400768,634402815,FR 634402816,634404863,BE 634404864,634408959,RU 634408960,634411007,GB 634411008,634413055,BE 634413056,634415103,RU 634415104,634417151,DE 634417152,634419199,NL 634419200,634421247,RU 634421248,634454015,QA 634454016,634486783,DE 634486784,634494975,PL 634494976,634497023,LV 634497024,634499071,BG 634499072,634503167,CH 634503168,634505215,GB 634505216,634507263,IT 634507264,634511359,GB 634511360,634517503,RU 634517504,634519551,LB 634519552,634650623,QA 634650624,634912767,BY 634912768,635043839,SA 635043840,635076607,ES 635076608,635092991,KG 635092992,635097087,CY 635097088,635101183,PS 635101184,635103231,AE 635103232,635105279,HU 635105280,635106303,IS 635106304,635107327,NL 635107328,635109375,DE 635109376,635174911,FI 635174912,635183103,GB 635183104,635185151,NL 635185152,635187199,IT 635187200,635191295,FR 635191296,635195391,RS 635195392,635197439,RU 635197440,635199591,GB 635199592,635199599,IT 635199600,635199775,GB 635199776,635199783,IT 635199784,635200167,GB 635200168,635200175,IT 635200176,635200263,GB 635200264,635200271,IT 635200272,635200335,GB 635200336,635200343,IT 635200344,635200431,GB 635200432,635200439,IT 635200440,635200631,GB 635200632,635200639,IT 635200640,635200727,GB 635200728,635200735,IT 635200736,635200991,GB 635200992,635200999,IT 635201000,635201159,GB 635201160,635201167,IT 635201168,635201455,GB 635201456,635201463,IT 635201464,635203583,GB 635203584,635207679,JO 635207680,635211775,HU 635211776,635213823,NL 635213824,635217919,RU 635217920,635219967,NL 635219968,635224063,RU 635224064,635240447,HU 635240448,635256831,IR 635273216,635281407,UA 635281408,635283455,RO 635283456,635283967,DE 635283968,635284223,RO 635284224,635284418,DE 635284419,635284419,RO 635284420,635284479,DE 635284480,635284991,RO 635284992,635285503,US 635285504,635287551,ME 635287552,635289599,RU 635289600,635291647,DE 635291648,635293695,RU 635293696,635295743,HU 635295744,635297791,GB 635297792,635299839,SE 635299840,635301887,ES 635301888,635305983,CZ 635305984,635437055,ES 635437056,635502591,SA 635502592,635568127,PL 635568128,635699199,IT 635699200,635715583,PL 635715584,635717631,KZ 635717632,635719679,NL 635719680,635723775,RU 635723776,635725823,ES 635725824,635727871,US 635727872,635729919,RU 635729920,635748351,DE 635748352,635764735,IE 635764736,635830271,UA 635830272,635842559,DE 635842560,635846655,GB 635846656,635854847,ES 635854848,635856895,NL 635856896,635858943,TR 635858944,635860991,RU 635860992,635863039,BE 635863040,635893503,RU 635893504,635893759,AZ 635893760,635894527,RU 635894528,635894783,KZ 635894784,635895807,RU 635895808,635961343,KW 635961344,635994111,GE 635994112,636026879,RU 636026880,636043263,MD 636043264,636047359,SE 636047360,636049407,RU 636049408,636051455,FI 636051456,636055551,PL 636055552,636057599,RU 636057600,636059647,CH 636059648,636092415,GE 636092416,636157951,HU 636157952,636159999,AT 636160000,636162047,NL 636162048,636166143,IR 636166144,636168191,ES 636168192,636170239,GB 636170240,636170495,PL 636170496,636170751,IS 636170752,636171263,CH 636171264,636171519,CL 636171520,636171775,ES 636171776,636172031,GB 636172032,636172287,IM 636172288,636174335,AT 636174336,636176383,RU 636176384,636178431,TR 636178432,636180479,NL 636180480,636182527,FR 636182528,636185087,CZ 636185088,636185343,SE 636185344,636186111,US 636186112,636186367,FR 636186368,636186623,ES 636186624,636188671,NL 636188672,636190719,GB 636190720,636223487,RU 636223488,636485631,IQ 636485632,636747775,SA 636747776,636780543,DE 636780544,636813311,HR 636813312,636878847,AE 636878848,636944383,MD 636944384,636952575,SE 636952576,636956671,NL 636956672,636958719,IT 636958720,636960767,PL 636960768,636965631,DE 636965632,636965887,BE 636965888,636966655,DE 636966656,636966911,IT 636966912,636967167,DE 636967168,636967935,FR 636967936,636968191,DE 636968192,636968447,ES 636968448,636968959,DE 636968960,636974079,TR 636974080,636974591,GB 636974592,636974847,NL 636974848,636975103,TR 636975104,636977151,ES 636977152,637140991,PL 637140992,637206527,SE 637206528,637239295,NL 637239296,637272063,RO 637272064,637272831,RU 637272832,637275135,DE 637275136,637275391,RU 637275392,637276159,DE 637276160,637278207,RU 637278208,637288447,GB 637288448,637296639,AM 637296640,637298687,ES 637298688,637300735,DE 637300736,637302783,NO 637302784,637304831,NL 637304832,637313023,CH 637317120,637319167,ES 637319168,637321215,AT 637321216,637323263,GB 637323264,637325311,FR 637325312,637325823,US 637325824,637326079,GB 637326080,637326335,DE 637326336,637326591,HK 637326592,637326847,AU 637326848,637327359,NO 637329408,637329663,SI 637329664,637330175,FR 637330176,637330431,DE 637330432,637330943,JP 637330944,637331199,GB 637331200,637331455,IE 637331456,637331711,GB 637331712,637331967,AT 637331968,637332223,DE 637332224,637332991,AT 637332992,637333503,BR 637333504,637333759,AU 637333760,637334271,AT 637334272,637334527,TW 637334528,637334783,KR 637334784,637335039,AE 637335040,637335295,SK 637335296,637335551,BG 637335552,637335807,DE 637335808,637336063,HK 637336064,637336319,AT 637336320,637336575,CL 637336576,637336831,AT 637336832,637337087,IT 637337088,637337599,RU 637337600,637403135,NO 637403136,637534207,IR 637534208,641738239,US 641738240,641738495,CA 641738496,641761535,US 641761536,641761791,CA 641761792,641763071,US 641763072,641763839,CA 641763840,641765375,US 641765376,641765887,CA 641765888,641766911,US 641766912,641767167,CA 641767168,641771519,US 641771520,641772543,CA 641772544,641773055,US 641773056,641773567,CA 641773568,641775615,US 641775616,641775871,CA 641775872,641776639,US 641776640,641777407,CA 641777408,641777663,US 641777664,641777919,CA 641777920,641779199,US 641779200,641779327,CA 641779328,641828351,US 641828352,641828607,MX 641828608,641829057,US 641829058,641829058,MX 641829059,641829119,US 641829120,641829375,MX 641829376,641830143,US 641830144,641830399,MX 641830400,642089215,US 642089216,642089471,CA 642089472,642092543,US 642092544,642092799,CA 642092800,642093311,US 642093312,642093823,CA 642093824,642094079,US 642094080,642094591,CA 642094592,642097919,US 642097920,642098175,CA 642098176,642113535,US 642113536,642115583,AU 642115584,642387967,US 642387968,642388223,CA 642388224,642390015,US 642390016,642390527,CA 642390528,642391039,US 642391040,642391295,CA 642391296,642395135,US 642395136,642395391,CA 642395392,642793471,US 642793472,642793983,CA 642793984,643219519,US 643219520,643219523,CA 643219524,643219526,US 643219527,643219527,CA 643219528,643295231,US 643295232,643295487,PR 643295488,643296767,US 643296768,643297023,PR 643297024,643302911,US 643302912,643303039,CA 643303040,643303167,US 643303168,643303423,CA 643303424,643317759,US 643317760,643318015,CA 643318016,643318271,US 643318272,643319039,CA 643319040,643346431,US 643346432,643346943,CA 643346944,644055039,US 644055040,644055807,CA 644055808,644056063,US 644056064,644056319,CA 644056320,644056575,US 644056576,644056831,CA 644056832,644057087,US 644057088,644057599,CA 644057600,644058367,US 644058368,644058879,CA 644058880,644059135,US 644059136,644059391,CA 644059392,644060927,US 644060928,644061183,CA 644061184,644063231,US 644063232,644063743,CA 644063744,644063999,US 644064000,644064767,CA 644064768,644065055,US 644065056,644065279,CA 644065280,644066303,US 644066304,644066815,CA 644066816,644067071,US 644067072,644067327,CA 644067328,644067583,US 644067584,644067839,CA 644067840,644069631,US 644069632,644069887,CA 644069888,644070143,US 644070144,644070399,CA 644070400,644070655,US 644070656,644071167,CA 644071168,644084479,US 644084480,644084735,GU 644084736,644236031,US 644236032,644236287,CA 644236288,644239615,US 644239616,644239871,CA 644239872,644247551,US 644247552,644247807,CA 644247808,644248831,US 644248832,644249087,CA 644249088,644268543,US 644268544,644268569,CA 644268570,644268570,US 644268571,644268613,CA 644268614,644268614,US 644268615,644268799,CA 644268800,644323327,US 644323328,644323583,CA 644323584,644324095,US 644324096,644324351,CA 644324352,644389375,US 644389376,644389631,CA 644389632,644389887,US 644389888,644390911,CA 644390912,644399103,US 644399104,644399359,CA 644399360,644403199,US 644403200,644403711,CA 644403712,644413439,US 644413440,644413695,MX 644413696,644414207,US 644414208,644414463,CA 644414464,644422911,US 644422912,644423423,JP 644423424,644524607,US 644524608,644524671,CA 644524672,644569087,US 644569088,644569599,PR 644569600,644569855,US 644569856,644570367,PR 644570368,644570879,US 644570880,644571135,PR 644571136,644628735,US 644628736,644628991,CA 644628992,644630271,US 644630272,644630527,CA 644630528,644631039,US 644631040,644631295,CA 644631296,644634367,US 644634368,644634623,CA 644634624,644718591,US 644718592,644718911,CA 644718912,644759551,US 644759552,644759807,CA 644759808,644760575,US 644760576,644760831,CA 644760832,644761343,US 644761344,644761599,CA 644761600,644762879,US 644762880,644763135,CA 644763136,644763903,US 644763904,644764159,CA 644764160,644765439,US 644765440,644765695,CA 644765696,644767878,US 644767879,644767879,CA 644767880,644768511,US 644768512,644768767,CA 644768768,644775679,US 644775680,644775935,CA 644775936,644834047,US 644834048,644834303,CA 644834304,644834815,US 644834816,644835327,CA 644835328,644838655,US 644838656,644839423,CA 644839424,644840447,US 644840448,644840703,CA 644840704,644875007,US 644875008,644875263,CA 644875264,644894975,US 644894976,644895231,CA 644895232,644897023,US 644897024,644897279,CA 644897280,644897791,US 644897792,644898047,CA 644898048,644898815,US 644898816,644899071,CA 644899072,644899839,US 644899840,644900095,CA 644900096,644901631,US 644901632,644901887,CA 644901888,644903167,US 644903168,644903679,CA 644903680,644904959,US 644904960,644905215,CA 644905216,644906239,US 644906240,644906495,CA 644906496,644987135,US 644987136,644987391,CA 644987392,644987647,US 644987648,644987903,CA 644987904,645185535,US 645185536,645185791,CA 645185792,645186559,US 645186560,645186815,CA 645186816,645187071,US 645187072,645187583,CA 645187584,645221375,US 645221376,645222399,CA 645222400,645223423,US 645223424,645223679,CA 645223680,645225471,US 645225472,645225727,CA 645225728,645229311,US 645229312,645229823,CA 645229824,645483263,US 645483264,645483519,CA 645483520,645484543,US 645484544,645485055,CA 645485056,645526527,US 645526528,645526783,CA 645526784,645527295,US 645527296,645527551,CA 645527552,645528319,US 645528320,645528575,CA 645528576,645529343,US 645529344,645529599,CA 645529600,645540351,US 645540352,645540607,CA 645540608,645547007,US 645547008,645547519,CA 645547520,645576703,US 645576704,645576997,CA 645576998,645576998,US 645576999,645577215,CA 645577216,645612031,US 645612032,645612543,MX 645612544,645644351,US 645644352,645644415,MX 645644416,645644927,US 645644928,645645055,MX 645645056,645647103,US 645647104,645647359,MX 645647360,645704447,US 645704448,645704703,MX 645704704,645705215,US 645705216,645705471,MX 645705472,645710079,US 645710080,645710335,MX 645710336,645737983,US 645737984,645738239,PR 645738240,645873663,US 645873664,645873919,CA 645873920,645874175,US 645874176,645874431,CA 645874432,645876479,US 645876480,645876735,CA 645876736,645984255,US 645984256,645988351,CA 645988352,645989450,US 645989451,645989451,CA 645989452,646160383,US 646160384,646164479,CA 646164480,646711807,US 646711808,646712319,CA 646712320,646734847,US 646734848,646735103,CA 646735104,654311423,US 654311424,654311679,CN 654311680,654311935,AU 654311936,654376959,CN 654376960,654442495,TW 654442496,654573567,JP 654573568,654835711,KR 654835712,655359999,TW 655360000,656408575,KR 656408576,658505727,PK 658505728,661454847,CN 661454848,661487615,HK 661487616,661520383,SG 661520384,661651455,JP 661651456,662700031,KR 662700032,666894335,CN 666894336,671088639,ID 671088640,675807231,US 675807232,675938303,CN 675938304,675954687,NL 675954688,675975167,JP 675975168,675979263,IE 675979264,676177756,US 676177757,676177757,RE 676177758,676249599,US 676249600,676265983,AU 676265984,676298751,US 676298752,676331519,IE 676331520,676347903,NL 676347904,676368383,JP 676368384,676462591,US 676462592,676528127,NL 676528128,676544511,US 676544512,676560895,HK 676560896,676659199,US 676659200,676696063,IE 676696064,676708351,US 676708352,676724735,CA 676724736,676773887,US 676773888,676790271,CA 676790272,676823039,US 676823040,676831231,IE 676831232,676840447,US 676840448,676841471,SG 676841472,678428671,US 678428672,678436863,IE 678436864,678437887,US 678437888,678438015,IE 678438016,678438207,NL 678438208,678438271,IE 678438272,678438399,AU 678438400,678438591,US 678438592,678438655,NL 678438656,678438783,IN 678438784,678445055,US 678445056,678453247,IE 678453248,678461439,NL 678461440,678494207,US 678494208,678518783,IE 678518784,678543359,NL 678543360,678592511,US 678592512,678623193,NL 678623194,678623194,US 678623195,678625279,NL 678625280,678633471,IE 678633472,678641663,NL 678641664,678649855,AU 678649856,678658047,IE 678658048,678690815,JP 678690816,678756351,US 678756352,678764543,IE 678764544,678821887,US 678821888,678854655,NL 678854656,678887423,US 678887424,678952959,NL 678952960,679018495,IE 679018496,679182335,US 679182336,679215103,AU 679215104,679313407,US 679313408,679346175,CN 679346176,679362559,JP 679362560,679378943,CN 679378944,679395327,KR 679395328,679403519,IN 679403520,679411711,AU 679411712,679428095,SG 679428096,679436287,AU 679436288,679440383,IE 679440384,679444479,US 679444480,679477247,IE 679477248,687865855,US 687865856,689963007,ZA 689963008,691011583,EG 691011584,691617791,ZA 691617792,691621887,ZW 691621888,691625983,LR 691625984,691630079,KE 691630080,691631103,ZA 691631104,691632127,GH 691632128,691633151,NG 691633152,691634175,ZW 691634176,691650559,ZA 691650560,691666943,GH 691666944,691732479,NG 691732480,691798015,TZ 691798016,691814399,ZM 691814400,691814655,ZW 691814656,691815167,ZM 691815168,691815423,ZW 691815424,691816191,ZM 691816192,691816703,ZW 691816704,691816959,ZM 691816960,691817215,ZW 691817216,691819007,ZM 691819008,691819263,ZW 691819264,691820799,ZM 691820800,691821311,ZW 691821312,691821567,ZM 691821568,691821823,ZW 691821824,691863551,ZM 691863552,691929087,ZA 691994624,692011007,ZM 692011008,692027391,ZA 692027392,692035583,MG 692035584,692043775,AO 692043776,692060159,NA 692060160,692191231,EG 692191232,692207615,CI 692207616,692240383,ZA 692240384,692256767,GH 692256768,692273151,SD 692273152,692289535,EG 692289536,692305919,NG 692305920,692322303,CM 692322304,692453375,EG 692453376,692486143,MW 692486144,692518911,AO 692518912,692551679,ZA 692551680,692584447,NG 692584448,692600831,AO 692600832,692608255,EG 692608256,692608767,AO 692608768,692609023,EG 692609024,692617215,ZM 692617216,692625407,ZA 692625408,692626687,KE 692626688,692626943,AO 692626944,692633599,KE 692633600,692635903,MU 692635904,692636159,KE 692636160,692639743,MU 692639744,692639999,KE 692640000,692641791,MU 692641792,692649983,GA 692649984,692658175,NG 692658176,692666367,ZA 692666368,692674559,TZ 692674560,692682751,ML 692682752,692690943,NG 692690944,692707327,TZ 692707328,692715519,NG 692715520,692719615,BJ 692719616,692723711,MG 692723712,692727807,TD 692727808,692731903,BW 692731904,692735999,LY 692736000,692740095,GH 692740096,692744191,ZA 692744192,692748287,TZ 692748288,692752383,CV 692752384,692756479,ZA 692756480,692760575,RW 692760576,692768767,ZA 692768768,692772863,MG 692772864,692776959,ZA 692776960,692781055,AO 692781056,692785151,BW 692785152,692789247,NG 692789248,692793343,KE 692793344,692797439,GH 692797440,692801535,CG 692801536,692805631,NG 692805632,692809727,ZA 692809728,692813823,MW 692813824,692817919,ZA 692817920,692822015,KE 692822016,692826111,UG 692826112,692830207,KE 692830208,692834303,NG 692834304,692838399,TZ 692838400,692842495,ZA 692842496,692846591,ZM 692846592,692848639,MZ 692848640,692850687,GM 692850688,692852735,LS 692852736,692854783,GH 692854784,692856831,ZA 692856832,692858879,MU 692858880,692860927,MW 692860928,692862975,ZA 692862976,692869119,NG 692869120,692871167,TZ 692871168,692877311,ZA 692877312,692879359,GA 692879360,692881407,ZA 692881408,692883455,CG 692883456,692885503,MZ 692885504,692887551,NG 692887552,692889599,UG 692889600,692891647,KE 692891648,692893695,ZA 692893696,692895743,KE 692895744,692897791,NG 692897792,692905983,ZA 692908032,692910079,BW 692910080,692912127,NG 692912128,692914175,ZM 692914176,692916223,MW 692916224,692918271,MG 692918272,692920319,ZA 692920320,692922367,MZ 692922368,692924415,NG 692924416,692928511,ZA 692928512,692930559,GH 692930560,692932607,UG 692932608,692934655,CM 692934656,692936703,BW 692936704,692940799,ZA 692940800,692942847,MA 692942848,692944895,GA 692944896,692946943,MZ 692946944,692948991,EG 692948992,692951039,ZM 692951040,692953087,ZA 692953088,692954111,RW 692955136,692957183,NG 692957184,692959231,DZ 692959232,692961279,GN 692961280,692963327,TZ 692963328,692965375,ZA 692965376,692967423,CM 692967424,692968447,KE 692968448,692969471,CD 692969472,692971519,TZ 692971520,692973567,SZ 692973568,692975615,MZ 692975616,692977663,EG 692977664,692978687,TZ 692978688,692979711,ZA 692979712,692981759,NG 692981760,692982783,AO 692982784,692983807,EG 692983808,692984831,KE 692984832,692987903,ZA 692987904,692988927,GH 692988928,692989951,ZW 692989952,692991999,BF 692992000,692993023,MW 692993024,692994047,EG 692994048,692995071,TZ 692995072,692996095,SL 692996096,692997119,SO 692997120,692998143,ZW 692998144,692999167,NG 692999168,693000191,SL 693000192,693001215,NG 693001216,693002239,BW 693002240,693002505,GA 693002506,693002506,CM 693002507,693003263,GA 693003264,693004287,NG 693004288,693005311,CD 693005312,693006335,SD 693006336,693007359,ZM 693007360,693008383,NE 693008384,693009407,CF 693009408,693010431,GH 693010432,693011455,ZA 693011456,693012479,SZ 693012480,693013503,TG 693013504,693014527,ZA 693014528,693015551,GH 693015552,693016575,EG 693016576,693017599,GA 693017600,693018623,NG 693018624,693019647,UG 693019648,693020671,ZA 693020672,693021695,TZ 693021696,693022719,NG 693022720,693023743,KE 693023744,693026815,ZA 693026816,693028863,CD 693028864,693029887,ZA 693029888,693030911,CM 693030912,693031935,NG 693031936,693032959,ZA 693032960,693033983,MW 693033984,693035007,ZA 693035008,693036031,NG 693036032,693038079,ZA 693038080,693039103,ZW 693039104,693040127,GA 693040128,693041151,ZA 693041152,693042175,MW 693042176,693043199,NG 693044224,693045247,NG 693045248,693046271,KE 693046272,693047295,ZW 693047296,693049343,ZA 693049344,693050367,KE 693050368,693051391,ZW 693051392,693052415,BW 693052416,693054463,ZA 693054464,693055487,BI 693055488,693056511,GQ 693056512,693057535,NA 693057536,693058559,ZW 693058560,693059583,SC 693059584,693060607,NG 693060608,693061631,TZ 693061632,693064703,ZA 693064704,693065727,GH 693065728,693066751,MW 693066752,693067775,ZA 693067776,693068799,GH 693068800,693069823,TZ 693069824,693071871,ZA 693071872,693072895,ZW 693072896,693073919,NG 693073920,693074943,SS 693074944,693075967,CV 693075968,693076991,CM 693076992,693078015,ZW 693078016,693079039,BW 693079040,693080063,KE 693080064,693081087,NG 693081088,693082111,ZA 693082112,693083135,NG 693083136,693086207,ZA 693086208,693087231,KE 693087232,693088255,ZA 693088256,693089279,NG 693089280,693090303,ZA 693090304,693091327,TZ 693091328,693092351,ZW 693092352,693093375,ZA 693093376,693094399,SO 693094400,693095423,GN 693095424,693096447,NG 693096448,693097471,EG 693097472,693098495,ZA 693098496,693099519,BJ 693099520,693100543,ZA 693100544,693101567,BI 693101568,693102591,KE 693102592,693103615,CD 693103616,693104639,GN 693104640,693105663,ZA 693105664,693106687,MZ 693106688,693107711,ZA 693107712,693239807,KE 693239808,693370879,SN 693370880,693403647,ZA 693403648,693411583,KE 693411584,693411839,MU 693411840,693420031,NG 693420032,693423103,UG 693423104,693424127,KE 693424128,693428223,UG 693428224,693436415,SZ 693436416,693477375,ZA 693477376,693485567,BJ 693485568,693493759,ZW 693493760,693501951,ZA 693501952,693510143,LR 693510144,693518335,SC 693518336,693534719,ZA 693534720,693542911,NG 693542912,693551103,TZ 693551104,693559295,ZA 693559296,693567487,BJ 693567488,693575679,MW 693575680,693583871,KE 693583872,693592063,NG 693592064,693600255,MU 693600256,693608447,MA 693608448,693616639,BW 693616640,693633023,ZA 693633024,693698559,EG 693698560,693829631,KE 693829632,693895167,EG 693895168,693927935,MA 693927936,693960703,CM 693960704,693993471,TZ 693993472,694026239,GH 694026240,694091775,MZ 694091776,694157311,SD 694157312,695205887,DZ 695205888,696254463,ZA 696254464,696516607,EG 696516608,696778751,ZA 696778752,696844287,MU 696844288,696909823,MA 696909824,696918015,UG 696918016,696926207,NE 696926208,696928255,ZA 696928256,696930303,BW 696930304,696932351,RW 696932352,696933375,BJ 696933376,696934399,ZA 696934400,696942591,BF 696942592,696950783,MR 696950784,696958975,NG 696958976,696963071,TZ 696963072,696965119,UG 696965120,696966143,NG 696966144,696967167,TZ 696967168,696971263,MZ 696971264,696974335,KE 696974336,696975359,LU 696975360,696991743,GH 696991744,697008127,NG 697008128,697040895,KE 697040896,697303039,MA 697303040,697827327,ZA 697827328,697958399,EG 697958400,698023935,ZA 698023936,698056703,NG 698056704,698089471,EG 698089472,698220543,ZA 698220544,698351615,GA 698351616,699400191,ZA 699400192,699465727,EG 699465728,699531263,ZA 699531264,699662335,EG 699662336,699793407,ZA 699793408,699858943,NA 699858944,699924479,ZA 699924480,699990015,NG 699990016,700055551,ZA 700055552,700121087,RW 700121088,700186623,EG 700186624,700203007,MG 700203008,700219391,MR 700219392,700235775,TZ 700235776,700252159,ZA 700252160,700260351,NG 700260352,700268543,CI 700268544,700276735,ZA 700276736,700284927,CI 700284928,700301311,GH 700301312,700309503,CD 700309504,700313599,DJ 700313600,700314367,US 700314368,700314623,DJ 700314624,700315584,US 700315585,700315585,DJ 700315586,700317478,US 700317479,700317479,DJ 700317480,700317695,US 700317696,700325887,NG 700325888,700334079,ZW 700334080,700335103,BJ 700335104,700336127,GH 700336128,700337151,CG 700337152,700338175,UG 700338176,700339199,CD 700339200,700340223,NA 700340224,700341247,GH 700341248,700342271,MW 700342272,700350463,NA 700350464,700351487,MU 700351488,700352511,UG 700352512,700358655,MU 700358656,700366847,MZ 700366848,700375039,UG 700375040,700376063,CM 700376064,700377087,NE 700377088,700378111,CD 700378112,700379135,MG 700379136,700380159,NG 700380160,700381183,BW 700381184,700382207,EG 700382208,700383231,KE 700383232,700399615,EG 700399616,700400639,AO 700400640,700401663,CI 700401664,700402687,MZ 700402688,700403711,UG 700403712,700404735,EG 700404736,700405759,BJ 700405760,700406783,ZA 700406784,700407807,TZ 700407808,700408831,GH 700408832,700409855,CM 700409856,700410879,LR 700411392,700411647,NG 700412928,700413951,ZM 700413952,700414975,SC 700414976,700432383,ZA 700432384,700434431,KE 700434432,700436479,LS 700436480,700437503,NG 700437504,700438527,MU 700438528,700439551,BW 700439552,700440575,GN 700440576,700442247,MU 700442248,700442251,KE 700442252,700442623,MU 700442624,700444671,ZW 700444672,700446719,GH 700446720,700447743,SL 700447744,700448767,DZ 700448768,700587007,ZA 700587008,700587263,ZM 700587264,700588287,ZA 700588288,700588543,KM 700588544,700593151,ZA 700593152,700594175,NG 700594176,700595199,ZA 700595200,700596223,CD 700596224,700598783,ZA 700598784,700599039,CG 700599040,700710911,ZA 700710912,700776447,EG 700776448,700841983,RW 700841984,700846079,MU 700846080,700850175,NA 700850176,700854271,MU 700854272,700855295,NA 700855296,700866559,MU 700866560,700866815,NG 700866816,700867327,MU 700867328,700867583,NG 700867584,700893439,MU 700893440,700893951,NG 700893952,700895231,MU 700895232,700899327,NG 700899328,700907519,MU 700907520,700973055,EG 700973056,701104127,DZ 701104128,701112319,GH 701112320,701120511,ZA 701120512,701145087,CI 701145088,701153279,SD 701153280,701161471,CM 701161472,701169663,UG 701169664,701186047,ZA 701186048,701189887,NG 701189888,701190143,BJ 701190144,701202431,NG 701202432,701210623,NE 701210624,701214719,ZA 701214720,701218815,LS 701218816,701222911,ML 701222912,701227007,KE 701227008,701231103,BF 701231104,701235199,SC 701235200,701243391,SZ 701243392,701251583,GH 701251584,701259775,CM 701259776,701267967,MG 701267968,701276159,TZ 701276160,701284351,KE 701284352,701292543,ZA 701292544,701300735,NG 701300736,701308927,CM 701308928,701317119,AO 701317120,701325311,CM 701325312,701333503,EG 701333504,701338111,NA 701338112,701338367,ZM 701338368,701341695,NA 701341696,701349887,NG 701349888,701358079,MA 701358080,701366271,SL 701366272,701374463,NG 701374464,701382655,KE 701382656,701390847,CI 701390848,701392127,MU 701392128,701392383,TZ 701392384,701392639,ZA 701392640,701399039,MU 701399040,701407231,EG 701407232,701423615,ZA 701423616,701431807,NG 701431808,701439999,CI 701440000,701448191,MG 701448192,701462783,KE 701462784,701463039,CG 701463040,701463807,KE 701463808,701464063,CG 701464064,701464575,KE 701464576,701472767,MU 701472768,701480959,TG 701480960,701489151,CI 701489152,701490175,NG 701490176,701491199,AO 701491200,701492223,MU 701492224,701493247,ZA 701493248,701495295,TZ 701495296,701496319,NG 701496320,701497343,GH 701497344,701513727,ZA 701513728,701530111,LY 701530112,701546495,SN 701546496,701562879,ZA 701562880,701579263,KE 701579264,701595647,SD 701595648,701603839,DZ 701612032,701628415,EG 701628416,701644799,GH 701644800,701661183,DZ 701661184,701677567,UG 701677568,701693951,AO 701693952,701702143,GH 701702144,701710335,SZ 701710336,701718527,MU 701718528,701726719,CM 701726720,701743103,GA 701743104,701759487,NG 701759488,701792255,KE 701792256,701825023,MU 701825024,701857791,ZA 701857792,701890559,RE 701890560,701923327,SN 701923328,701956095,MA 701956096,701992959,KE 701992960,701997055,SZ 701997056,702001151,GH 702001152,702005247,ZM 702005248,702009343,KE 702009344,702013439,CV 702013440,702015487,KE 702015488,702017535,ZA 702017536,702018559,EG 702018560,702019583,NG 702019584,702020607,RW 702020608,702021631,CD 702021632,702029823,ZM 702029824,702038015,BJ 702038016,702046207,ZM 702046208,702053375,RW 702053376,702054399,ZW 702054400,702058495,ZA 702058496,702062591,BF 702062592,702066687,NG 702066688,702070783,CM 702070784,702074879,ZA 702074880,702076927,BW 702076928,702078975,TZ 702078976,702079999,MA 702080000,702081023,MW 702081024,702082047,CM 702082048,702083071,AO 702087168,702119935,NG 702119936,702128127,CM 702128128,702136319,EG 702136320,702137343,ZA 702137344,702138367,MG 702138368,702139391,TZ 702139392,702140415,NG 702140416,702141439,MZ 702141440,702142463,MU 702142464,702143487,MW 702143488,702144511,KE 702144512,702146559,EG 702146560,702148607,UG 702148608,702150655,ZA 702152704,702169087,SD 702169088,702173183,NA 702173184,702175231,ZM 702175232,702181375,NA 702181376,702185471,AO 702185472,702201855,EG 702201856,702218239,GH 702218240,702234623,SN 702234624,702251007,NA 702251008,702283775,NG 702283776,702287871,UG 702287872,702291967,ZW 702291968,702296063,MZ 702296064,702300159,GH 702300160,702308351,NG 702308352,702312447,SC 702312448,702316543,KE 702316544,702320639,TZ 702320640,702324735,DZ 702324736,702328831,MZ 702328832,702332927,TZ 702332928,702337023,MZ 702337024,702341119,UG 702341120,702342259,MU 702342260,702342263,KE 702342264,702344199,MU 702344200,702349311,KE 702349312,702353407,ZA 702353408,702357503,DZ 702357504,702365695,TZ 702365696,702369791,MZ 702369792,702373887,UG 702373888,702377983,MW 702377984,702382079,NG 702382080,702386175,EG 702386176,702390271,ZW 702390272,702394367,NG 702394368,702398463,ML 702398464,702402559,CV 702402560,702410751,ZA 702410752,702414847,AO 702414848,702416895,UG 702416896,702418943,KE 702418944,702420991,ZM 702420992,702423039,TZ 702423040,702425087,ZA 702425088,702427135,NG 702427136,702429183,ZA 702429184,702431231,TZ 702431232,702433279,NG 702433280,702434303,SS 702434304,702435327,NG 702435328,702437375,MZ 702437376,702439423,TZ 702439424,702441471,MU 702441472,702443519,ZA 702443520,702445567,GQ 702445568,702447615,ZA 702447616,702449663,EG 702449664,702451711,ZA 702451712,702453759,NG 702455808,702457855,KE 702457856,702459903,EG 702459904,702461951,TZ 702461952,702463999,MW 702464000,702465023,BJ 702465024,702466047,CD 702466048,702467071,AO 702467072,702468095,SC 702468096,702469119,NG 702469120,702470143,ZA 702470144,702471167,CD 702471168,702474239,ZA 702474240,702475263,GH 702475264,702476287,AO 702476288,702477311,ZM 702477312,702478335,RW 702478336,702480383,AO 702481408,702482431,TZ 702482432,702483455,ZA 702483456,702484479,BI 702484480,702485503,TZ 702485504,702486527,EG 702486528,702487551,ZA 702487552,702488575,CM 702488576,702490623,ZA 702490624,702491647,AO 702491648,702492671,NG 702492672,702493695,GN 702493696,702494719,EG 702494720,702495743,KE 702495744,702496767,ZA 702496768,702497791,NG 702497792,702498815,ZA 702498816,702499839,BW 702499840,702500863,MU 702500864,702501887,NA 702501888,702502911,UG 702502912,702503935,CG 702503936,702504959,CM 702504960,702505983,MR 702505984,702507007,AO 702507008,702508031,CD 702508032,702509055,SO 702509056,702510079,KE 702510080,702511103,ZM 702511104,702512127,ZA 702512128,702513151,MZ 702513152,702514175,NG 702514176,702515199,SL 702515200,702516223,NG 702516224,702517247,BW 702517248,702518271,NG 702518272,702519295,KE 702519296,702520319,MZ 702520320,702521343,AO 702521344,702522367,SD 702522368,702523391,AO 702523392,702524415,GA 702524416,702525439,ZA 702525440,702526463,DZ 702526464,702527487,TZ 702527488,702528511,CF 702528512,702529535,CG 702529536,702530559,BW 702530560,702531583,EG 702531584,702532607,SD 702532608,702533631,SC 702533632,702534655,CI 702534656,702535679,GM 702535680,702536703,SC 702536704,702538751,MU 702538752,702539775,TZ 702539776,702540799,BF 702540800,702541823,DZ 702541824,702542847,EG 702542848,702543871,ZA 702543872,702544895,BJ 702544896,702545919,ZA 702545920,703070207,TN 703070208,703594495,EG 703594496,703725567,SD 703725568,703727615,KE 703727616,703728639,TZ 703728640,703733759,LY 703733760,703735807,CI 703735808,703737855,ZA 703737856,703746047,NG 703746048,703747071,ZA 703747072,703748095,CD 703748096,703749119,GN 703749120,703750143,NG 703750144,703754239,MG 703754240,703755263,GH 703755264,703756287,YT 703756288,703757311,ZA 703757312,703758335,RE 703758336,703759359,CD 703759360,703760383,ZA 703760384,703761407,GH 703761408,703762431,RW 703762432,703764095,MU 703764096,703764223,ZA 703764224,703764479,MU 703764480,703766527,LY 703766528,703770623,ZA 703770624,703774719,BJ 703774720,703791103,ZA 703791104,703856639,CD 703856640,703922175,CM 703922176,704118783,ZA 704118784,704380927,MA 704380928,704643071,LY 704643072,704644095,CN 704644096,704645119,BD 704645120,704650239,CN 704650240,704651263,MY 704651264,704659455,CN 704659456,704675839,TW 704675840,704723967,CN 704723968,704724991,MY 704724992,704741375,VN 704741376,704774143,CN 704774144,704905215,HK 704905216,705167359,CN 705167360,707788799,KR 707788800,708575231,CN 708575232,708706303,SG 708706304,708751359,CN 708751360,708752383,ID 708752384,708755455,CN 708755456,708771839,AU 708771840,708837375,CN 708837376,709885951,TW 709885952,710017023,CN 710017024,710082559,KR 710082560,710098943,JP 710098944,710104063,CN 710104064,710105087,PK 710105088,710934527,CN 710934528,710950911,VN 710950912,710961151,CN 710961152,710962175,TH 710962176,711065599,CN 711065600,711131135,HK 711131136,711160831,CN 711160832,711161855,BD 711161856,711163903,CN 711163904,711164727,JP 711164728,711164735,HK 711164736,711166463,JP 711166464,711166591,HK 711166592,711169311,JP 711169312,711169327,IN 711169328,711173119,JP 711173120,711173210,SG 711173211,711173211,ID 711173212,711173375,SG 711173376,711196671,JP 711196672,711458815,CN 711458816,711983103,IN 711983104,712507391,VN 712507392,712712191,CN 712712192,712713215,JP 712713216,712769535,CN 712769536,713031679,JP 713031680,714080255,CN 714080256,714604543,JP 714604544,714866687,MY 714866688,714874879,CN 714874880,714875903,MY 714875904,716930047,CN 716930048,716931071,JP 716931072,716963839,CN 716963840,717225983,MY 717225984,717750271,CN 717750272,717815807,HK 717815808,717848575,CN 717848576,717881343,PK 717881344,720437247,CN 720437248,720502783,AU 720502784,721420287,CN 721420288,736100351,JP 736100352,736101375,IN 736101376,736102399,HK 736102400,736103423,IN 736103424,736104447,CN 736104448,736105471,ID 736105472,736106495,TW 736106496,736107519,CN 736107520,736108543,HK 736108544,736109567,JP 736109568,736110591,LA 736110592,736111615,MM 736111616,736112639,CN 736112640,736113663,HK 736113664,736115711,CN 736115712,736116735,AU 736116736,736119807,CN 736119808,736120831,AU 736120832,736121855,CN 736121856,736122879,MM 736122880,736123903,MO 736123904,736124927,HK 736124928,736125951,IN 736125952,736126975,CN 736126976,736127999,KR 736128000,736131071,BD 736131072,736132095,NZ 736132096,736133119,LK 736133120,736136191,IN 736136192,736138239,CN 736138240,736139263,HK 736139264,736140287,SG 736140288,736141311,IN 736141312,736142335,CN 736142336,736143359,IN 736143360,736144383,ID 736144384,736145407,IN 736145408,736146431,CN 736146432,736147455,IN 736147456,736148479,CN 736148480,736149503,NZ 736149504,736150527,NC 736150528,736151551,HK 736151552,736156671,CN 736156672,736157695,IN 736157696,736158719,CN 736158720,736160767,HK 736160768,736161791,PK 736161792,736162815,CN 736162816,736163839,HK 736163840,736164351,TW 736164352,736164863,NZ 736164864,736166911,IN 736166912,736167935,SG 736167936,736168959,HK 736168960,736169983,AU 736169984,736173055,IN 736173056,736174079,HK 736174080,736175103,AU 736175104,736176127,MY 736176128,736177151,BN 736177152,736178175,HK 736178176,736179199,AU 736179200,736180223,IN 736180224,736181247,HK 736181248,736182271,AU 736182272,736183295,ID 736183296,736185343,IN 736185344,736186367,CN 736186368,736187391,IN 736187392,736188415,CN 736188416,736189439,JP 736189440,736190463,IN 736190464,736191487,PK 736191488,736193535,HK 736193536,736194559,MY 736194560,736195583,AU 736195584,736196607,IN 736196608,736198655,CN 736198656,736199679,AU 736199680,736200703,HK 736200704,736201727,BN 736201728,736202751,CN 736202752,736203775,AU 736203776,736204799,BD 736204800,736205823,SG 736206848,736209919,IN 736209920,736210943,CN 736210944,736211967,AU 736211968,736214015,CN 736214016,736216063,IN 736216064,736217087,HK 736217088,736218111,NZ 736218112,736219135,BD 736219136,736220159,CN 736220160,736221183,IN 736221184,736229375,CN 736229376,736230399,IN 736230400,736231423,CN 736231424,736231935,AU 736231936,736232447,IN 736232448,736233471,PH 736233472,736234495,NZ 736234496,736235519,KH 736235520,736237567,HK 736237568,736239615,IN 736239616,736263167,CN 736263168,736264191,HK 736264192,736286719,CN 736286720,736287743,NZ 736287744,736288767,MV 736288768,736289791,MY 736289792,736289919,KR 736289920,736290047,JP 736290048,736290303,AU 736290304,736290815,US 736290816,736291839,TW 736291840,736300031,CN 736300032,736301055,HK 736301056,736303103,IN 736303104,736304127,TW 736304128,736324607,CN 736324608,736325631,AU 736325632,736326655,HK 736326656,736328703,KR 736328704,736329727,AU 736329728,736331775,IN 736331776,736334847,CN 736334848,736335871,ID 736335872,736344063,CN 736344064,736345087,IN 736345088,736354303,CN 736354304,736355327,IN 736355328,736356351,SG 736356352,736357375,CN 736357376,736358399,HK 736358400,736359423,SG 736359424,736360447,IN 736360448,736380927,CN 736380928,736381951,IN 736381952,736382975,CN 736382976,736383999,TH 736384000,736385023,LA 736385024,736386047,HK 736386048,736388095,IN 736388096,736389119,CN 736389120,736390143,JP 736390144,736391167,LK 736391168,736392191,IN 736392192,736394239,CN 736394240,736395263,HK 736395264,736396287,MN 736396288,736398335,CN 736398336,736400383,IN 736400384,736402431,CN 736402432,736402559,NZ 736402560,736402687,PK 736402688,736402943,SG 736402944,736403071,MY 736403072,736403199,BN 736403200,736403327,AU 736403328,736403455,PK 736403456,736404479,KR 736405504,736408575,IN 736408576,736409599,CN 736409600,736410623,US 736410624,736411647,CN 736411648,736412671,NP 736412672,736413695,TH 736413696,736414719,HK 736414720,736415743,CN 736415744,736416767,BD 736416768,736417791,SG 736417792,736418815,HK 736418816,736421887,IN 736421888,736422911,SG 736422912,736423935,IN 736423936,736424959,CN 736425984,736428031,MY 736428032,736429055,IN 736429056,736430079,HK 736430080,736431103,IN 736431104,736432127,BD 736432128,736433151,CN 736433152,736434175,ID 736434176,736435199,IN 736435200,736436223,HK 736436224,736437247,JP 736437248,736438271,HK 736438272,736439295,CN 736439296,736440319,TH 736440320,736441343,CN 736441344,736442367,HK 736442368,736443391,CN 736443392,736445439,AU 736446464,736447487,IN 736447488,736448511,TH 736448512,736449535,IN 736449536,736450559,SG 736450560,736452607,IN 736452608,736453631,CN 736453632,736455679,IN 736455680,736456703,CN 736456704,736458751,HK 736458752,736459775,CN 736459776,736460799,JP 736460800,736461823,SG 736461824,736462847,TH 736462848,736465919,CN 736465920,736466943,TH 736466944,736467967,HK 736467968,736468991,SG 736468992,736470015,IN 736471040,736479231,CN 736479232,736480255,IN 736480256,736481279,ID 736481280,736482303,BD 736482304,736483327,HK 736483328,736485375,CN 736485376,736486399,IN 736486400,736487423,NP 736487424,736489471,CN 736489472,736491519,JP 736491520,736493567,ID 736493568,736494591,KR 736494592,736495103,ID 736495104,736495359,NR 736495360,736495615,ID 736495616,736498687,HK 736498688,736499711,CN 736499712,736500479,SG 736500480,736500735,TH 736500736,736501759,JP 736501760,736502783,CN 736502784,736505855,IN 736505856,736506879,AU 736506880,736508927,JP 736508928,736509951,BD 736509952,736510975,AU 736510976,736513023,CN 736513024,736515071,KR 736515072,736516095,CN 736516096,736517119,HK 736517120,736518143,PK 736518144,736519167,HK 736519168,736520191,AU 736520192,736521215,IN 736521216,736522239,AU 736522240,736524287,HK 736524288,736525311,BD 736525312,736526335,CN 736526336,736527359,ID 736527360,736528383,IN 736528384,736529407,CN 736529408,736531455,HK 736531456,736532479,IN 736532480,736533503,ID 736533504,736535551,IN 736535552,736536575,HK 736536576,736537599,CN 736537600,736538623,IN 736538624,736539647,AU 736539648,736540671,SG 736540672,736541695,IN 736541696,736542719,HK 736542720,736543743,KH 736543744,736545791,IN 736545792,736546815,HK 736546816,736547839,JP 736547840,736548863,IN 736548864,736549887,KR 736549888,736559103,CN 736559104,736560127,HK 736560128,736561151,MY 736561152,736562175,HK 736562176,736563199,SG 736563200,736564223,HK 736564224,736565247,BD 736565248,736566271,AU 736566272,736567295,MV 736567296,736571391,CN 736571392,736574463,IN 736574464,736575487,PK 736575488,736576511,KH 736576512,736577535,AU 736577536,736578559,MY 736578560,736579583,BD 736579584,736587775,CN 736587776,736588799,MN 736588800,736591871,IN 736591872,736592383,ID 736592384,736592639,SG 736592640,736592895,AF 736592896,736593919,IN 736593920,736606207,CN 736606208,736607231,HK 736607232,736608255,JP 736608256,736609279,NZ 736609280,736610303,HK 736610304,736611327,AU 736612352,736613375,NP 736613376,736615423,IN 736615424,736616447,JP 736616448,736617471,MY 736617472,736618495,PH 736618496,736621567,IN 736621568,736622591,JP 736622592,736624639,IN 736624640,736886783,JP 736886784,737096703,CN 737096704,737099775,IN 737099776,737100799,HK 737100800,737101823,IN 737101824,737102847,BD 737102848,737104895,IN 737104896,737106943,HK 737106944,737108991,NZ 737108992,737110015,SG 737110016,737111039,JP 737111040,737113087,IN 737113088,737115135,CN 737115136,737118207,IN 737118208,737119231,AU 737119232,737120255,NL 737120256,737121279,IN 737121280,737122303,VN 737122304,737123327,IN 737123328,737126399,HK 737126400,737127423,IN 737127424,737129471,CN 737129472,737130495,NZ 737130496,737132543,VN 737132544,737139711,IN 737139712,737141759,VN 737141760,737142783,IN 737142784,737143039,HK 737143040,737143807,MY 737143808,737146879,IN 737146880,737147903,NZ 737147904,737148927,MY 737148928,737149951,CN 737149952,737151999,IN 737152000,737154047,HK 737154048,737155071,MY 737155072,737156095,TW 737156096,737157119,HK 737157120,737158143,NZ 737158144,737159167,HK 737159168,737160191,AU 737160192,737161215,TW 737161216,737162239,CN 737162240,737163263,BD 737163264,737165311,CN 737165312,737166335,IN 737166336,737169407,CN 737169408,737170431,ID 737170432,737171455,CN 737171456,737172479,GU 737172480,737173503,HK 737173504,737174527,AU 737174528,737175551,BD 737175552,737177599,TW 737177600,737178623,IN 737178624,737179647,HK 737179648,737180671,AU 737180672,737184767,CN 737184768,737185791,VU 737185792,737186815,AU 737186816,737187839,ID 737187840,737188863,TW 737188864,737206271,CN 737206272,737208319,ID 737208320,737209343,AU 737209344,737220607,CN 737220608,737222655,IN 737222656,737223679,TW 737223680,737225727,IN 737225728,737225983,KR 737225984,737226751,HK 737226752,737227775,CN 737227776,737228799,AU 737228800,737229823,TH 737229824,737232895,IN 737232896,737233919,HK 737233920,737239039,CN 737239040,737240063,MY 737240064,737241087,HK 737241088,737243135,KR 737243136,737244159,CN 737244160,737249279,IN 737249280,737250303,BT 737250304,737253375,IN 737253376,737255423,HK 737255424,737256447,TW 737256448,737257471,WS 737257472,737262591,CN 737262592,737263615,AU 737263616,737264639,IN 737264640,737265663,CN 737265664,737266687,AU 737266688,737267711,HK 737267712,737276927,CN 737276928,737277951,IN 737277952,737279999,CN 737281024,737282047,SG 737282048,737288191,CN 737288192,737289215,HK 737289216,737290239,IN 737290240,737291263,AU 737291264,737297407,CN 737297408,737298431,AU 737298432,737305599,CN 737305600,737306623,PK 737306624,737307647,IN 737307648,737308671,HK 737308672,737309695,KR 737309696,737312767,IN 737312768,737313791,HK 737314816,737315839,JP 737315840,737316863,HK 737316864,737324031,CN 737324032,737325055,HK 737325056,737326079,PK 737326080,737327103,CN 737327104,737328127,SG 737328128,737331199,CN 737331200,737332223,HK 737332224,737333247,CN 737333248,737335295,IN 737335296,737337343,CN 737337344,737339391,IN 737339392,737341439,HK 737341440,737342463,MN 737342464,737343487,IN 737344512,737345535,CN 737345536,737346559,AU 737346560,737350655,CN 737350656,737350911,AU 737350912,737351679,NZ 737351680,737352703,CN 737352704,737354751,HK 737354752,737355775,IN 737355776,737359871,HK 737359872,737361919,NZ 737361920,737364991,HK 737364992,737368063,IN 737368064,737369087,CN 737369088,737370111,HK 737370112,737371135,NP 737371136,737375231,HK 737375232,737376255,AU 737376256,737377279,HK 737377280,737378303,PH 737378304,737379327,CN 737380352,737381375,CN 737381376,737382399,ID 737382400,737384447,CN 737384448,737385471,ID 737385472,737386495,CN 737386496,737387519,MN 737387520,737388543,HK 737388544,737389567,CN 737389568,737390591,IN 737390592,737391615,HK 737391616,737392639,CN 737392640,737393663,ID 737393664,737394687,CN 737394688,737395711,HK 737395712,737396735,NZ 737396736,737397759,AU 737397760,737398783,BD 737398784,737399807,HK 737399808,737400831,IN 737400832,737401855,KR 737401856,737403903,HK 737403904,737405951,CN 737405952,737406975,AU 737406976,737407999,HK 737408000,737409023,CN 737409024,737410047,HK 737410048,737411071,TW 737411072,737476607,JP 737476608,737478655,IN 737478656,737479679,PK 737479680,737480703,IN 737480704,737481727,SG 737481728,737482751,IN 737482752,737484799,AU 737484800,737485823,KH 737485824,737487871,AU 737487872,737488895,MM 737488896,737489151,AU 737489152,737489407,SG 737489408,737489919,HK 737489920,737490943,NZ 737490944,737491967,FJ 737491968,737492447,SG 737492448,737492479,MY 737492480,737492735,SG 737492736,737492991,HK 737492992,737497087,AU 737497088,737498111,NZ 737498112,737499135,NP 737499136,737500159,IN 737500160,737501183,NP 737501184,737502207,SG 737502208,737503231,IN 737503232,737505279,SG 737505280,737506303,AU 737506304,737507327,BD 737507328,737508351,AU 737508352,737509375,MY 737509376,737510399,PK 737510400,737511423,AU 737511424,737512447,IN 737512448,737513471,BD 737513472,737514495,TH 737514496,737515519,IN 737515520,737516543,AU 737516544,737517567,IN 737517568,737517823,AU 737517824,737518079,NZ 737518080,737520639,AU 737520640,737521663,NZ 737521664,737522687,AU 737522688,737525759,ID 737525760,737526783,BD 737526784,737527295,US 737527296,737527551,SG 737527552,737527807,ID 737527808,737528831,KH 737528832,737529855,PK 737529856,737530879,IN 737530880,737531903,NC 737531904,737532927,KH 737533952,737534975,AU 737534976,737535999,SG 737536000,737537023,BD 737537024,737538047,NP 737538048,737539071,NZ 737539072,737540095,BD 737540096,737541119,ID 737541120,737542143,SG 737542144,737567743,CN 737567744,737570815,IN 737570816,737571839,SG 737571840,737572863,HK 737572864,737574911,IN 737574912,737575935,JP 737575936,737576959,HK 737576960,737581055,IN 737581056,737582079,KR 737582080,737584127,IN 737584128,737585151,MY 737585152,737587199,HK 737587200,737588223,MY 737588224,737589247,KR 737589248,737590271,TH 737590272,737591295,TW 737591296,737593343,JP 737593344,737594367,BD 737594368,737596415,HK 737596416,737597439,CN 737597440,737598463,TW 737598464,737600511,PK 737600512,737601535,CN 737601536,737602559,AU 737602560,737607679,IN 737607680,737608703,HK 737608704,737610751,CN 737610752,737611775,ID 737611776,737612799,PH 737612800,737613823,ID 737613824,737614847,MO 737614848,737615871,IN 737615872,737617919,ID 737617920,737618943,IN 737618944,737620991,CN 737620992,737622015,IN 737622016,737623039,TH 737623040,737624063,GU 737624064,737625087,AU 737625088,737626111,CN 737626112,737627135,JP 737627136,737628159,CN 737628160,737629183,AU 737629184,737634303,CN 737634304,737635327,KR 737635328,737637375,CN 737637376,737638399,AU 737638400,737639423,PK 737639424,737641471,AU 737641472,737642495,HK 737642496,737645567,IN 737645568,737647615,CN 737647616,737649663,IN 737649664,737650687,HK 737650688,737651711,JP 737651712,737652735,NZ 737652736,737656831,CN 737656832,737657855,KR 737657856,737675263,CN 737675264,737676287,HK 737676288,737677311,PK 737677312,737678335,TW 737678336,737679359,CN 737679360,737680383,ID 737680384,737681407,CN 737681408,737683455,IN 737683456,737685503,JP 737685504,737686527,CN 737686528,737687551,AU 737687552,737688575,CN 737688576,737690623,HK 737690624,737692671,IN 737692672,737712127,CN 737712128,737713151,IN 737713152,737714175,FM 737714176,737715199,JP 737715200,737718271,HK 737718272,737727487,CN 737727488,737728511,AU 737728512,737729535,JP 737729536,737730559,IN 737730560,737731583,HK 737731584,737733631,CN 737733632,737735679,IN 737735680,737736703,CN 737736704,737737727,HK 737737728,737738751,IN 737738752,737741823,CN 737741824,737742847,SG 737742848,737744895,HK 737744896,737745919,CN 737745920,737746943,HK 737746944,737747967,TH 737747968,737748479,HK 737748480,737748991,SG 737748992,737750015,AF 737750016,737751039,JP 737751040,737753087,IN 737753088,737757183,TH 737757184,737758207,NZ 737758208,737760255,HK 737760256,737761279,IN 737761280,737762303,HK 737763328,737765375,HK 737765376,737768447,TH 737768448,737769471,AU 737769472,737770495,CN 737770496,737771519,HK 737771520,737771647,KR 737771648,737771775,JP 737771776,737771903,KR 737771904,737772159,JP 737772160,737772287,KR 737772288,737772415,JP 737772416,737772543,KR 737772544,737774591,CN 737774592,737775615,ID 737775616,737782783,CN 737782784,737783807,HK 737783808,737784831,PF 737784832,737787903,IN 737787904,737788927,CN 737788928,737790975,NZ 737790976,737791999,HK 737792000,737793023,ID 737793024,737794047,SG 737794048,737795071,IN 737795072,737796095,HK 737796096,737799167,IN 737799168,737800191,CN 737800192,737802239,JP 737802240,737803263,SG 737803264,737804287,HK 737804288,737805311,SG 737805312,737806335,CN 737806336,737807359,HK 737807360,737810431,CN 737810432,737811455,AU 737811456,737814527,CN 737814528,737815551,IN 737815552,737816575,TW 737816576,737817599,HK 737817600,737818623,AU 737818624,737821695,HK 737821696,737822719,AU 737822720,737823743,CN 737824768,737825791,BD 737825792,737826815,PK 737826816,737827839,JP 737827840,737828863,AU 737828864,737835007,CN 737835008,737836031,IN 737836032,737837055,MN 737837056,737838079,CN 737838080,737839103,IN 737839104,737840127,AF 737840128,737841151,AU 737841152,737843199,CN 737843200,737844223,KR 737844224,737845247,IN 737845248,737846271,CN 737846272,737847295,IN 737847296,737850367,CN 737850368,737851391,IN 737851392,737853439,HK 737853440,737854463,SG 737854464,737855487,JP 737855488,737856511,CN 737856512,737857535,AU 737857536,737858559,IN 737858560,737861631,CN 737861632,737862655,PH 737862656,737863679,JP 737863680,737864447,AU 737864448,737864703,HK 737864704,737865727,CN 737865728,737866751,LK 737866752,737867775,CN 737867776,737868799,AU 737868800,737870847,IN 737870848,737874431,CN 737874432,737874943,IN 737874944,737876991,HK 737876992,737878015,KR 737878016,737879039,HK 737879040,737880063,CN 737880064,737881087,AU 737881088,737882111,HK 737882112,737883135,JP 737883136,737884159,AU 737884160,737886207,TW 737886208,737887231,SG 737887232,737888255,KR 737888256,737889279,IN 737889280,737890303,HK 737890304,737894399,IN 737894400,737895423,ID 737895424,737896447,IN 737896448,737897471,HK 737897472,737898495,AU 737898496,737899519,MY 737899520,737900543,CN 737900544,737901567,KR 737901568,737902591,IN 737902592,737903615,BN 737903616,737904639,HK 737904640,737905663,MY 737905664,737906687,HK 737906688,737908735,IN 737908736,737909759,AU 737909760,737911807,HK 737911808,737912703,SG 737912704,737912831,MY 737912832,737915903,IN 737915904,737916927,TW 737916928,737917951,JP 737917952,737918975,IN 737918976,737919999,CN 737920000,737921023,HK 737921024,737922047,AU 737922048,737923071,KR 737923072,737924095,MY 737924096,737927167,IN 737927168,737929215,HK 737929216,737931263,CN 737931264,737932287,AU 737932288,737933311,CN 737933312,737934335,HK 737934336,737935359,TH 737935360,737936383,AU 737936384,737937407,IN 737937408,737938431,ID 737938432,737939455,LK 737939456,737940479,KH 737940480,737941503,AU 737941504,737944575,IN 737944576,737945599,MY 737945600,737946623,HK 737946624,737947647,MY 737947648,737948671,CN 737948672,737949695,HK 737949696,737950719,CN 737950720,737951743,IN 737951744,737953791,NZ 737953792,737954815,ID 737954816,737955839,AU 737955840,737956863,IN 737956864,737957887,HK 737957888,737959935,IN 737959936,737960959,AU 737960960,737961983,IN 737961984,737963007,ID 737963008,737965055,AU 737965056,737966079,IN 737966080,737967103,TH 737967104,737969151,AU 737969152,737970175,HK 737970176,737971199,ID 737971200,737972223,IN 737972224,737973247,ID 737973248,737974271,HK 737974272,737975295,IN 737975296,737976319,ID 737976320,737981439,HK 737981440,737982463,IN 737982464,737983487,ID 737983488,737986559,IN 737986560,737987583,HK 737987584,737988607,IN 737988608,737989631,HK 737989632,737991679,MY 737991680,737992191,IN 737992192,737992703,ID 737992704,737993727,CN 737993728,737994751,HK 737994752,737995775,MY 737995776,737996799,ID 737996800,737997823,IN 737997824,737998847,LA 737998848,737999871,IN 737999872,738000895,AU 738000896,738066431,JP 738066432,738069503,CN 738069504,738070527,PK 738070528,738071551,TW 738071552,738072575,NZ 738072576,738073599,CN 738073600,738075647,IN 738075648,738076671,CN 738076672,738077695,IN 738077696,738078719,CN 738078720,738079743,IN 738079744,738080767,CN 738080768,738081791,TL 738081792,738082815,WS 738082816,738083839,CN 738083840,738084863,ID 738084864,738085887,CN 738085888,738086911,MY 738086912,738087935,ID 738087936,738091007,CN 738091008,738092031,BD 738092032,738094079,CN 738094080,738095103,IN 738095104,738097151,CN 738097152,738098175,MY 738098176,738099199,ID 738099200,738100223,CN 738100224,738101247,TH 738101248,738107391,CN 738107392,738108415,IN 738108416,738109439,HK 738109440,738111487,CN 738111488,738112511,IN 738112512,738118655,CN 738118656,738119679,IN 738119680,738120703,CN 738120704,738121727,IN 738121728,738122751,HK 738122752,738128895,CN 738128896,738129919,KR 738129920,738135039,CN 738135040,738136063,TW 738136064,738137087,CN 738137088,738138111,BD 738138112,738138367,US 738138368,738139135,NZ 738140160,738141183,AU 738141184,738142207,HK 738142208,738143231,JP 738143232,738144255,AU 738144256,738145279,CN 738145280,738146303,HK 738146304,738147327,IN 738147328,738148095,CN 738148096,738148351,AU 738148352,738152447,CN 738152448,738152703,JP 738152704,738152959,AU 738152960,738153215,JP 738153216,738153471,AU 738153472,738154495,CN 738154496,738156543,TW 738156544,738157567,CN 738157568,738158591,SG 738158592,738159615,HK 738159616,738160639,CN 738160640,738161663,KH 738161664,738163711,HK 738163712,738164735,SG 738164736,738165759,AU 738165760,738166783,IN 738166784,738167807,AU 738167808,738168831,IN 738168832,738169855,CN 738169856,738170879,TO 738170880,738171903,SG 738171904,738172927,HK 738172928,738173951,NZ 738173952,738174975,IN 738174976,738175999,CN 738176000,738177023,MY 738177024,738178047,CN 738178048,738179071,TW 738179072,738180095,CN 738180096,738181119,HK 738181120,738182143,CN 738182144,738183167,ID 738183168,738187263,CN 738187264,738188287,PH 738188288,738189311,IN 738189312,738192383,CN 738192384,738193407,NC 738193408,738194431,TH 738194432,738195455,CN 738195456,738197503,KR 738197504,747175935,US 747175936,747241471,NL 747241472,755105791,US 755105792,755179519,CA 755179520,755236863,US 756023296,757071871,US 757071872,757088255,NL 757088256,757090303,US 757090304,757104639,NL 757104640,757106687,US 757106688,757121535,NL 757121536,757121791,US 757121792,757122047,NL 757122048,757122303,US 757122304,757125631,NL 757125632,757126655,US 757126656,757133311,NL 757133312,757135359,AU 757135360,757137407,JP 757137408,757186559,US 757186560,757190655,CA 757190656,757600255,US 757600256,757604351,CA 757604352,757612543,US 757612544,757616639,CA 757616640,757645311,US 757645312,757645567,NZ 757645568,757661695,US 757661696,757661951,NZ 757661952,757662719,US 757662720,757662975,IN 757662976,757686271,US 757686272,757694463,CA 757694464,757696255,US 757696256,757696511,JP 757696512,757697535,DE 757697536,757711871,US 757711872,757712127,AU 757712128,757714175,US 757714176,757714431,JP 757714432,757716735,US 757716736,757716991,NZ 757716992,757721599,US 757721600,757721855,PH 757721856,757727231,US 757727232,757727743,VI 757727744,757729279,US 757729280,757731327,CA 757731328,757733375,US 757733376,757734399,CA 757734400,757736447,US 757736448,757737471,CA 757737472,757745663,US 757745664,757747711,CA 757747712,757751807,US 757751808,757759999,CA 757760000,757760255,US 757760256,757760511,ML 757760512,757761535,US 757761536,757761791,MW 757761792,757762047,US 757762048,757762303,MV 757762304,757762559,JP 757762560,757762815,PH 757762816,757763071,CD 757763072,757763327,US 757763328,757763583,PA 757763584,757763839,MN 757763840,757764095,VA 757764096,757764351,ZW 757764352,757765375,US 757765376,757765631,SD 757765632,757765887,US 757765888,757766143,KP 757766144,757766655,US 757766656,757766911,BI 757766912,757767167,US 757767168,757767423,CC 757767424,757767935,US 757767936,757768191,MU 757768192,757768447,US 757768448,757768703,AD 757768704,757769215,US 757769216,757769471,SL 757769472,757769727,US 757769728,757769983,NZ 757769984,757770239,GU 757770240,757770495,US 757770496,757770751,TG 757770752,757771007,US 757771008,757771263,FJ 757771264,757771519,CW 757771520,757771775,SB 757771776,757772031,ER 757772032,757772287,US 757772288,757772543,NR 757772544,757773055,US 757773056,757773311,MR 757773312,757774335,US 757774336,757774591,LR 757774592,757774847,US 757774848,757775103,MC 757775104,757776639,US 757776640,757776767,GQ 757776768,757777919,US 757777920,757778047,LS 757778048,757779199,US 757779200,757779327,CV 757779328,757780479,US 757780480,757780607,CF 757780608,757780991,US 757780992,757781247,SM 757781248,757781503,US 757781504,757781759,TO 757781760,757781887,GW 757781888,757783039,US 757783040,757783167,GM 757783168,757783551,US 757783552,757783807,TV 757783808,757784319,US 757784320,757784447,KM 757784448,757784831,US 757784832,757785087,CG 757785088,757785599,US 757785600,757785727,ST 757785728,757786111,US 757786112,757786367,AR 757786368,757786879,US 757786880,757787007,SO 757787008,757788159,US 757788160,757788287,LK 757788288,757789439,US 757789440,757789567,NP 757789568,757790975,US 757790976,757791231,WS 757791232,757858303,US 757858304,757956607,CA 757956608,757956863,HK 757956864,757957119,DE 757957120,757957631,US 757957632,757957887,JP 757957888,757958143,GB 757958144,757958399,US 757958400,757958655,DE 757958656,757959679,US 757959680,757959935,IT 757959936,757960191,GB 757960192,757961471,US 757961472,757961727,HK 757961728,757962239,US 757962240,757962495,GB 757962496,757964031,US 757964032,757964287,GB 757964288,757965311,US 757965312,757965567,IN 757965568,757967103,US 757967104,757967359,FR 757967360,757968127,US 757968128,757968383,FR 757968384,757969151,US 757969152,757969407,FR 757969408,757971199,US 757971200,757971455,FR 757971456,758682111,US 758682112,758682367,PH 758682368,758683647,US 758683648,758683903,HK 758683904,758684159,SG 758684160,758684671,US 758684672,758684927,BR 758684928,758685183,IN 758685184,758685439,AU 758685440,758685695,JP 758685696,758691839,US 758691840,758693887,DE 758693888,758779903,US 758779904,758783999,CA 758784000,758785023,US 758785024,758785535,CA 758785536,758796287,US 758796288,758804479,CA 758804480,758824959,US 758824960,758841343,CA 758841344,758847487,US 758847488,758847743,NL 758847744,758847999,US 758848000,758848255,CA 758848256,758874367,US 758874368,758874623,AM 758874624,758875391,US 758875392,758875647,AO 758875648,758875903,BT 758875904,758876159,AZ 758876160,758876415,AU 758876416,758876671,US 758876672,758876927,SD 758876928,758877183,MH 758877184,758877439,US 758877440,758877695,KZ 758877696,758877951,IR 758877952,758878207,PG 758878208,758878463,ET 758878464,758878719,TO 758878720,758878975,KH 758878976,758879231,KG 758879232,758879487,US 758879488,758879743,GG 758879744,758879999,CD 758880000,758880255,SJ 758880256,758880511,AS 758880512,758880767,UZ 758880768,758881023,GN 758881024,758881535,US 758881536,758881791,PH 758881792,758882047,CG 758882048,758882303,TM 758882304,758882559,US 758882560,758882815,CV 758882816,758883071,ZM 758883072,758883583,US 758883584,758883839,TJ 758883840,758884095,LI 758884096,758884351,MQ 758884352,758884607,MZ 758884608,758884863,GP 758884864,758885119,RE 758885120,758885375,CN 758885376,758885631,WF 758885632,758885887,KM 758885888,758886143,SN 758886144,758886399,TF 758886400,758886655,PA 758886656,758886911,DZ 758886912,758887167,NE 758887168,758887423,GI 758887424,758887679,TD 758887680,758888191,US 758888192,758888447,LY 758888448,758888703,US 758888704,758888959,TZ 758888960,758889215,US 758889216,758889471,MG 758889472,758889727,LA 758889728,758889983,TN 758889984,758972415,US 758972416,758976511,CA 758976512,758984703,US 758984704,758988799,CA 758988800,758994943,US 758994944,758996991,IN 758996992,758998015,DE 758998016,759001087,US 759001088,759005183,CN 759005184,759047423,US 759047424,759047679,IN 759047680,759048191,US 759048192,759048447,PK 759048448,759050495,US 759050496,759050751,IN 759050752,759051519,US 759051520,759051775,PK 759051776,759053055,US 759053056,759053311,IN 759053312,759053823,US 759053824,759054079,PK 759054080,759054335,US 759054336,759062527,CA 759062528,759068671,US 759068672,759069695,NL 759069696,759087103,US 759087104,759103487,CA 759103488,759128063,US 759128064,759130111,GB 759130112,759132159,US 759132160,759133183,FR 759133184,759134207,DE 759134208,759136255,JP 759136256,759169023,US 759169024,759171071,ID 759171072,759174143,IN 759174144,759175167,MO 759175168,759176191,PK 759176192,759178239,TW 759178240,759179263,AU 759179264,759180287,SG 759180288,759181311,ID 759181312,759182335,NZ 759182336,759183359,HK 759183360,759184383,AU 759184384,759185407,NZ 759185408,759186431,HK 759186432,759187455,AU 759187456,759187967,SG 759187968,759188479,TW 759188480,759189503,TH 759189504,759190527,PH 759190528,759193599,IN 759193600,759193855,ID 759193856,759194111,SG 759194112,759195647,ID 759195648,759196671,IN 759196672,759197695,HK 759197696,759198207,CN 759198208,759198719,IN 759198720,759199743,NZ 759199744,759200767,PH 759200768,759201791,KH 759201792,759202815,SG 759202816,759204863,BD 759204864,759206911,KR 759206912,759207935,AU 759207936,759208959,KR 759208960,759209983,IN 759209984,759211007,NP 759211008,759212031,BD 759212032,759213055,MY 759213056,759214079,KR 759214080,759215103,IN 759215104,759216127,PK 759216128,759217151,TH 759217152,759220223,IN 759220224,759221247,NZ 759221248,759227391,IN 759227392,759229439,TW 759229440,759230463,IN 759230464,759232511,HK 759232512,759233535,BT 759233536,759234559,ID 759234560,759235583,SG 759235584,759236607,NZ 759236608,759237631,IN 759237632,759238655,AU 759693312,759726079,US 759726080,759791615,CA 759791616,759824639,US 759824640,759824895,SA 759824896,759825151,CR 759825152,759825407,NO 759825408,759825663,BE 759825664,759828735,US 759828736,759828863,GT 759828864,759828991,SV 759828992,759829119,HN 759829120,759829247,NI 759829248,759829375,BO 759829376,759829503,PY 759829504,759829631,SR 759829632,759829759,GY 759829760,759829887,TT 759829888,759830015,GD 759830016,759830143,DM 759830144,759830271,BB 759830272,759830399,LC 759830400,759830527,DO 759830528,759830655,HT 759830656,759830783,TC 759830784,759830911,CV 759830912,759831039,KY 759831040,759831167,BM 759831168,759831295,MS 759831296,759831423,AG 759831424,759831551,BY 759831552,759831679,CM 759831680,759831807,CF 759831808,759831935,US 759831936,759832063,ZW 759832064,759832191,ZM 759832192,759832319,GA 759832320,759832447,RW 759832448,759832575,BW 759832576,759832703,MZ 759832704,759832831,SZ 759832832,759832959,MW 759832960,759833087,BI 759833088,759833215,ER 759833216,759833343,LS 759833344,759840767,US 759840768,759844863,CA 759844864,759848959,US 759848960,759885823,CA 759885824,759889919,US 759889920,759955455,CA 759955456,760111103,US 760111104,760119295,CA 760119296,760127487,US 760127488,760152063,CA 760152064,760217599,US 761266176,762314751,EG 762314752,762315775,IN 762316800,762320895,IN 762320896,762321919,HK 762321920,762323967,IN 762323968,762324991,SG 762324992,762330111,IN 762330112,762331135,JP 762331136,762332159,TH 762332160,762333183,IN 762333184,762334207,BD 762334208,762335743,SG 762335744,762336255,PH 762336256,762337279,ID 762337280,762345471,KR 762345472,762346495,JP 762346496,762347519,ID 762347520,762348543,JP 762348544,762349567,CN 762349568,762350591,IN 762350592,762351615,TH 762351616,762353663,IN 762353664,762358783,KR 762358784,762359807,IN 762359808,762360831,MM 762360832,762361855,NP 762361856,762362879,IN 762362880,762363903,CN 762363904,762364927,IN 762364928,762365951,MY 762365952,762366975,IN 762366976,762367999,HK 762368000,762372095,CN 762372096,762373119,FJ 762373120,762376191,CN 762376192,762377215,HK 762377216,762378239,AU 762378240,762380287,IN 762380288,762381311,HK 762381312,762382335,JP 762382336,762383359,NZ 762383360,762388479,CN 762388480,762389503,HK 762389504,762390527,AU 762390528,762391551,CN 762391552,762393599,KR 762393600,762395647,CN 762395648,762396159,TH 762396160,762397695,IN 762397696,762398719,HK 762398720,762399743,CN 762399744,762400767,IN 762400768,762401791,HK 762401792,762402815,TH 762402816,762403839,IN 762403840,762404863,AU 762404864,762407935,IN 762407936,762408959,CN 762408960,762409983,HK 762409984,762411007,JP 762411008,762411263,IN 762411264,762411519,HK 762411520,762412031,IN 762412032,762413055,PK 762413056,762414079,HK 762414080,762415103,JP 762415104,762416127,IN 762416128,762417151,HK 762417152,762419199,CN 762419200,762420223,IN 762420224,762421247,TW 762421248,762422271,HK 762422272,762423295,JP 762423296,762424319,CN 762424320,762425343,JP 762425344,762426367,CN 762426368,762427391,IN 762427392,762428415,CN 762428416,762429439,IN 762429440,762430463,HK 762430464,762431487,AU 762431488,762437631,CN 762437632,762438655,IN 762438656,762439679,CN 762439680,762440703,AU 762440704,762441727,BD 762441728,762442751,CN 762442752,762443775,AU 762443776,762444799,IN 762444800,762446847,CN 762447872,762448895,HK 762448896,762449919,CN 762449920,762450943,JP 762450944,762451967,PH 762451968,762452991,HK 762452992,762454015,MY 762454016,762455039,CN 762455040,762456063,IN 762456064,762457087,CN 762457088,762458111,HK 762458112,762459135,IN 762459136,762460159,CN 762460160,762467327,IN 762467328,762469375,BD 762469376,762470399,HK 762470400,762471423,CN 762471424,762472447,MY 762472448,762473471,CN 762473472,762475519,JP 762475520,762475775,AU 762475776,762476031,SG 762476032,762476543,ID 762476544,762478591,PK 762478592,762479615,KR 762479616,762480639,PK 762480640,762481663,CN 762481664,762486783,IN 762486784,762487807,KH 762487808,762490879,HK 762490880,762491903,IN 762491904,762492927,BD 762492928,762493951,JP 762493952,762494975,AU 762494976,762495999,IN 762496000,762498047,CN 762498048,762499071,HK 762499072,762500095,JP 762500096,762502143,IN 762502144,762503167,AU 762503168,762504191,IN 762504192,762505215,CN 762505216,762506239,BD 762506240,762507263,CN 762507264,762510335,IN 762510336,762511359,CN 762511360,762514431,IN 762514432,762515455,BD 762515456,762516479,IN 762516480,762517503,AU 762517504,762517759,US 762517760,762518015,KR 762518016,762518079,VN 762518080,762518111,ID 762518112,762519551,HK 762519552,762520575,JP 762520576,762522623,HK 762522624,762523647,CN 762523648,762523903,AU 762523904,762524159,PK 762524160,762524671,TH 762524672,762527743,IN 762527744,762528767,ID 762528768,762529791,AU 762529792,762530815,TL 762530816,762532863,IN 762532864,762533887,PK 762533888,762536959,IN 762536960,762537983,CN 762537984,762540031,IN 762540032,762541055,BD 762541056,762541567,AU 762541568,762541823,TH 762541824,762542079,IN 762542080,762543103,CN 762543104,762544127,HK 762544128,762545151,AU 762545152,762546175,CN 762546176,762547199,ID 762547200,762548223,IN 762548224,762549247,CN 762549248,762550271,IN 762550272,762551295,KR 762551296,762552319,CN 762552320,762553343,HK 762553344,762554367,CN 762554368,762560511,IN 762560512,762561535,JP 762561536,762562559,AU 762562560,762563583,CN 762563584,762564607,AU 762564608,762565631,IN 762565632,762567679,CN 762567680,762568703,IN 762568704,762569727,BD 762569728,762570751,CN 762570752,762571775,AU 762571776,762572799,CN 762572800,762573823,HK 762573824,762575871,CN 762575872,762578943,IN 762578944,762580479,HK 762580480,762580991,JP 762580992,762584063,CN 762584064,762585087,IN 762585088,762587135,CN 762587136,762588159,HK 762588160,762589183,IN 762589184,762590207,JP 762590208,762591231,CN 762591232,762592255,IN 762592256,762594303,CN 762594304,762595327,IN 762595328,762596351,JP 762596352,762598399,HK 762598400,762599423,IN 762599424,762600447,SG 762600448,762601471,JP 762601472,762603519,CN 762603520,762604543,IN 762604544,762605567,AU 762605568,762609663,IN 762609664,762610175,AF 762610176,762610431,HK 762610432,762610687,AU 762610688,762611711,JP 762611712,762612735,SG 762612736,762613759,CN 762613760,762614783,HK 762614784,762615807,IN 762615808,762616831,CN 762616832,762617855,ID 762617856,762619903,IN 762619904,762620927,HK 762620928,762622975,MY 762622976,762630143,IN 762630144,762631167,CN 762631168,762632191,HK 762632192,762633215,TH 762633216,762634239,AU 762634240,762635263,JP 762635264,762636287,IN 762636288,762637311,PK 762637312,762640383,MY 762640384,762641407,BD 762641408,762644479,IN 762644480,762645503,CN 762645504,762646527,KR 762646528,762647551,JP 762647552,762648575,CN 762648576,762649599,AU 762649600,762650623,IN 762650624,762651647,MN 762651648,762652671,NZ 762652672,762653695,CN 762653696,762656767,IN 762656768,762658815,BD 762658816,762659839,IN 762659840,762660863,CN 762660864,762661887,IN 762661888,762663935,VN 762663936,762664959,AU 762664960,762665983,PK 762665984,762667007,IN 762667008,762669055,HK 762669056,762670079,PK 762670080,762673151,IN 762673152,762674175,MY 762674176,762675199,CN 762675200,762678271,IN 762678272,762679295,JP 762679296,762680319,HK 762680320,762681343,IN 762681344,762682367,NP 762682368,762688511,VN 762688512,762690559,IN 762690560,762691583,SG 762691584,762692607,HK 762692608,762693631,MP 762693632,762700799,IN 762700800,762701823,MY 762701824,762702847,IN 762702848,762703871,MY 762703872,762705919,FJ 762705920,762706943,IN 762706944,762707967,CN 762707968,762717183,IN 762717184,762718207,PH 762718208,762719231,JP 762719232,762723327,IN 762723328,762724351,BD 762724352,762725375,AU 762725376,762726399,BD 762726400,762736639,IN 762736640,762737663,ID 762737664,762739711,IN 762739712,762740735,HK 762740736,762741759,IN 762741760,762742783,JP 762742784,762746879,VN 762746880,762754047,IN 762754048,762755071,SG 762755072,762756095,AU 762756096,762757119,NZ 762757120,762770431,IN 762770432,762771455,BD 762771456,762775551,HK 762775552,762783743,IN 762783744,762784767,KR 762784768,762786815,IN 762786816,762787839,CN 762787840,762788863,IN 762788864,762792959,CN 762792960,762796031,VN 762796032,762797055,IN 762797056,762799103,HK 762799104,762800127,NZ 762800128,762801151,CN 762801152,762802175,VN 762802176,762803199,IN 762803200,762804223,CN 762804224,762805247,BD 762805248,762806271,HK 762806272,762810367,IN 762810368,762811391,KR 762811392,762812415,IN 762812416,762814463,SG 762814464,762815487,CN 762815488,762816511,JP 762816512,762824703,IN 762824704,762825727,SG 762825728,762827775,JP 762827776,762829823,VN 762829824,762830847,AU 762830848,762832895,IN 762832896,762833919,CN 762833920,762834943,IN 762834944,762835967,VN 762835968,762838015,IN 762838016,762841087,HK 762841088,762846207,IN 762846208,762847231,HK 762847232,762848255,IN 762848256,762848511,AU 762848512,762848767,IN 762848768,762849279,BD 762849280,762850303,IN 762850304,762851327,JP 762851328,762852351,IN 762852352,762853375,HK 762853376,762855423,IN 762855424,762857471,KR 762857472,762858495,IN 762858496,762860543,HK 762860544,762861567,MM 762861568,762863615,IN 762863616,762864639,BD 762864640,762865663,CN 762865664,762866687,AU 762866688,762867711,PH 762867712,762868735,BD 762868736,762869759,NZ 762869760,762871807,IN 762871808,762872831,MY 762872832,762873855,JP 762873856,762874879,NZ 762874880,762875903,CN 762875904,762876927,IN 762876928,762877951,SG 762877952,762879231,HK 762879232,762879487,JP 762879488,762879743,HK 762879744,762879999,JP 762880000,762881023,IN 762881024,762882047,CN 762882048,762883071,HK 762883072,762884095,IN 762884096,762885119,JP 762885120,762887167,HK 762887168,762888191,IN 762888192,762890239,JP 762890240,762890495,KR 762890496,762890751,TW 762890752,762891007,HK 762891008,762891263,MY 762891264,762893311,HK 762893312,762894335,IN 762894336,762895359,HK 762895360,762896383,CN 762896384,762898431,VN 762898432,762900479,IN 762900480,762901503,CN 762901504,762902527,ID 762902528,762909695,IN 762909696,762910719,CN 762910720,762911743,VN 762911744,762912767,IN 762912768,762913791,HK 762913792,762914815,MY 762914816,762915839,ID 762915840,762916863,IN 762916864,762917887,TW 762917888,762918911,CN 762918912,762919935,HK 762919936,762920959,TH 762920960,762924031,CN 762924032,762925055,IN 762925056,762927103,HK 762927104,762928127,LK 762928128,762930175,CN 762930176,762931199,IN 762931200,762932223,CN 762932224,762938367,IN 762938368,762939391,AU 762939392,762941439,HK 762941440,762942463,MY 762942464,762943487,JP 762943488,762944511,VN 762944512,762945535,IN 762945536,762946559,VN 762946560,762947583,KR 762947584,762948607,IN 762948608,762950655,CN 762950656,762951679,AU 762951680,762952703,JP 762952704,762953727,IN 762953728,762957823,HK 762957824,762958847,AU 762958848,762959871,CN 762959872,762960895,ID 762960896,762964991,IN 762964992,762966015,KH 762966016,762981375,CN 762981376,762982399,IN 762982400,762983423,TH 762983424,762984447,HK 762984448,762985471,ID 762985472,763000831,CN 763000832,763003903,IN 763003904,763005951,HK 763005952,763010047,IN 763010048,763011071,HK 763011072,763026431,CN 763026432,763027455,VN 763027456,763028479,JP 763028480,763029503,AU 763029504,763035647,VN 763035648,763040767,IN 763040768,763041791,HK 763041792,763042815,IN 763042816,763045887,CN 763045888,763046911,BD 763046912,763059199,CN 763059200,763060223,IN 763060224,763061247,VN 763061248,763062271,MY 763062272,763063295,AU 763063296,763064319,IN 763064320,763065343,HK 763065344,763066367,TR 763066368,763067391,CN 763067392,763068415,MY 763068416,763071487,CN 763071488,763073535,IN 763073536,763076607,CN 763076608,763077631,IN 763077632,763083775,CN 763083776,763086847,HK 763086848,763087871,MO 763087872,763088895,CN 763088896,763089919,JP 763089920,763090943,CN 763090944,763091967,IN 763091968,763092991,NP 763092992,763102207,CN 763102208,763103231,IN 763103232,763104255,HK 763104256,763105279,BD 763105280,763106303,PH 763106304,763107327,CN 763107328,763108351,HK 763108352,763111423,CN 763111424,763112447,AU 763112448,763113471,CN 763113472,763114495,IN 763114496,763115519,AU 763115520,763116543,PH 763116544,763117567,JP 763117568,763118591,HK 763118592,763119615,CN 763119616,763120639,HK 763120640,763122687,CN 763122688,763125759,VN 763125760,763126783,IN 763126784,763127807,CN 763127808,763129343,IN 763129344,763129855,AU 763129856,763130879,HK 763130880,763132927,IN 763132928,763133951,CN 763133952,763134975,IN 763134976,763135999,HK 763136000,763137023,JP 763137024,763142143,IN 763142144,763143167,HK 763143168,763144191,AU 763144192,763145215,BD 763145216,763147263,CN 763147264,763152383,IN 763152384,763153407,AU 763153408,763154431,JP 763154432,763155455,CN 763155456,763156479,AU 763156480,763158527,JP 763158528,763164671,IN 763164672,763166719,CN 763166720,763169791,HK 763169792,763171839,CN 763171840,763172863,SG 763172864,763175935,CN 763175936,763177983,IN 763177984,763179007,CN 763179008,763180031,HK 763180032,763182079,CN 763182080,763183103,IN 763183104,763184127,HK 763184128,763185151,IN 763185152,763186175,HK 763186176,763194367,CN 763194368,763196415,HK 763196416,763197439,IN 763197440,763199487,AU 763199488,763201535,IN 763201536,763202559,CN 763202560,763207679,IN 763207680,763209727,HK 763209728,763210751,NZ 763210752,763214847,IN 763214848,763215871,JP 763215872,763217919,SG 763217920,763220991,VN 763220992,763222015,IN 763222016,763223039,HK 763223040,763224063,BD 763224064,763225087,AF 763225088,763226111,TH 763226112,763227135,KR 763227136,763228159,VN 763228160,763229183,JP 763229184,763229695,NZ 763229696,763230207,IN 763230208,763231231,PH 763231232,763232255,IN 763232256,763234303,HK 763234304,763235327,IN 763235328,763236351,HK 763236352,763238399,IN 763238400,763239423,AU 763239424,763243519,IN 763243520,763244543,AU 763244544,763246591,CN 763246592,763247615,ID 763247616,763248639,SG 763248640,763250687,IN 763250688,763251711,AU 763251712,763252735,HK 763252736,763253759,ID 763253760,763254783,JP 763254784,763255807,MY 763255808,763257855,VN 763257856,763258879,CN 763258880,763259903,IN 763259904,763263999,CN 763264000,763265023,AU 763265024,763266047,NZ 763266048,763267071,ID 763267072,763268095,IN 763268096,763269119,BN 763269120,763270143,IN 763270144,763271167,KR 763271168,763272191,ID 763272192,763273215,JP 763273216,763274239,IN 763274240,763275263,SG 763275264,763278335,IN 763278336,763279359,HK 763279360,763280383,ID 763280384,763281407,IN 763281408,763282431,AU 763282432,763285503,IN 763285504,763286527,SG 763286528,763287551,CN 763287552,763288575,HK 763288576,763289599,CN 763289600,763290623,TH 763290624,763291647,HK 763291648,763293695,IN 763293696,763294719,HK 763294720,763297023,IN 763297024,763297279,AF 763297280,763297791,IN 763297792,763298815,HK 763298816,763299839,MY 763299840,763301887,CN 763301888,763304959,IN 763304960,763305983,JP 763305984,763307007,SG 763307008,763308031,CN 763308032,763310079,IN 763310080,763311103,BD 763311104,763321343,IN 763321344,763322367,HK 763322368,763323391,CN 763323392,763326463,IN 763326464,763327487,US 763327488,763328511,CN 763328512,763329535,IN 763329536,763331583,CN 763331584,763332607,ID 763332608,763333631,IN 763333632,763334655,AU 763334656,763336703,CN 763336704,763337727,KH 763337728,763338751,CN 763338752,763339775,HK 763339776,763340799,PH 763340800,763341823,SG 763341824,763342847,AU 763342848,763343871,HK 763343872,763344895,AU 763344896,763345919,HK 763345920,763350015,IN 763350016,763351039,HK 763351040,763353087,IN 763353088,763354111,CN 763354112,763360255,IN 763360256,763362303,BD 763362304,763363327,VN 767557632,768606207,ZA 768606208,768868351,GH 768868352,769130495,ZM 769130496,769392639,MA 770703360,771227647,EG 771751936,771817471,RU 771817472,771948543,TR 771948544,772014079,RU 772014080,772145151,DE 772145152,772210687,ES 772210688,772276223,IE 772276224,772284415,NL 772284416,772284927,RU 772284928,772285183,UA 772285184,772285439,UZ 772285440,772285695,RU 772285696,772285951,GR 772285952,772286719,RU 772286720,772286975,LB 772286976,772296703,RU 772296704,772300799,UA 772300800,772341759,RU 772341760,772407295,NO 772407296,772472831,BG 772472832,772538367,MT 772538368,772603903,GR 772603904,772669439,CZ 772669440,772734975,CH 772734976,772800511,NO 772800512,772802559,GB 772802560,772804607,RU 772804608,772806655,GL 772806656,772808703,RU 772808704,772810751,GB 772810752,772812799,FR 772812800,772814847,NO 772814848,772816895,ES 772816896,772818943,RU 772818944,772820991,DE 772820992,772823039,GB 772823040,772825087,IT 772825088,772827135,RU 772827136,772829183,RS 772829184,772831231,EE 772831232,772833279,CZ 772833280,772835327,RU 772835328,772837375,CY 772837376,772839423,KZ 772839424,772841471,CH 772841472,772843519,GB 772843520,772845567,IT 772845568,772847615,RU 772847616,772849663,NL 772849664,772851711,BG 772851712,772853759,CH 772853760,772855807,GB 772855808,772857855,DE 772857856,772859903,RU 772859904,772861951,SE 772861952,772863743,BE 772863744,772863999,ES 772864000,772870143,NL 772870144,772872191,NO 772872192,772874239,NL 772874240,772876287,IE 772876288,772880383,RU 772880384,772882431,GB 772882432,772884479,FR 772884480,772886527,LB 772886528,772888575,FR 772888576,772890623,GB 772890624,772892671,NL 772892672,772894719,GB 772894720,772896767,PL 772896768,772898815,RS 772898816,772900863,TR 772900864,772902911,ES 772902912,772904959,RS 772904960,772907007,IT 772907008,772909055,GB 772909056,772911103,LU 772911104,772913151,GB 772913152,772915199,SE 772915200,772917247,FI 772917248,772919295,RU 772919296,772923391,GB 772923392,772925439,AT 772925440,772926975,GB 772926976,772927231,ZW 772927232,772927487,GB 772927488,772929535,UA 772929536,772931583,RU 772931584,772933631,UA 772933632,772935679,GB 772935680,772937727,PS 772937728,772939775,IT 772939776,772941823,BE 772941824,772943871,ES 772943872,772945919,GB 772945920,772947967,DE 772947968,772950015,AZ 772950016,772952063,ES 772952064,772952319,US 772952320,772954111,GB 772954112,772958207,FR 772958208,772962303,GB 772962304,772966399,FR 772966400,772968447,IT 772968448,772970495,SK 772970496,772972543,GB 772972544,772974591,SA 772974592,772978687,GB 772978688,772980735,DE 772980736,772982783,FR 772982784,772984831,RU 772984832,772986879,FR 772986880,772988927,GB 772988928,772990975,FR 772990976,772993023,IT 772993024,772995071,DE 772995072,772997119,IR 772997120,772999167,BE 772999168,773001215,SI 773001216,773003263,NO 773003264,773005311,FR 773005312,773007359,NL 773007360,773009407,KZ 773009408,773011455,IT 773011456,773013503,DE 773013504,773015551,RU 773015552,773017599,AE 773017600,773019647,IL 773019648,773021695,DE 773021696,773023743,AM 773023744,773025791,RO 773025792,773027839,RU 773027840,773031935,FR 773031936,773033983,CH 773033984,773036031,LV 773036032,773038079,DE 773038080,773040127,GB 773040128,773042175,NL 773042176,773044223,FR 773044224,773046271,RU 773046272,773048319,LB 773048320,773050367,LV 773050368,773052415,IE 773052416,773054463,NL 773054464,773055231,AL 773055232,773055487,RS 773055488,773055871,AL 773055872,773055999,RS 773056000,773056007,AL 773056008,773056009,RS 773056010,773056511,AL 773056512,773058559,IT 773058560,773060607,BE 773060608,773062655,DK 773062656,773066751,TR 773066752,773070847,AT 773070848,773074943,DE 773074944,773079039,PL 773079040,773083135,RU 773083136,773087231,IT 773087232,773091327,LB 773091328,773095423,GB 773095424,773099519,RO 773099520,773103615,TR 773103616,773107711,FR 773107712,773111807,RU 773111808,773115903,TJ 773115904,773119999,PS 773120000,773124095,GB 773124096,773125247,CH 773125248,773125375,GB 773125376,773125503,CH 773125504,773125567,GB 773125568,773125855,CH 773125856,773125887,RU 773125888,773126143,FR 773126144,773128191,CH 773128192,773132287,DE 773132288,773134335,IT 773134336,773135359,CH 773135360,773136383,IT 773136384,773140479,DK 773140480,773144575,CY 773144576,773148671,RU 773148672,773152767,IR 773152768,773156863,SE 773156864,773165055,FR 773165056,773166463,NL 773166464,773166591,PL 773166592,773167199,US 773167200,773167207,NL 773167208,773167359,US 773167360,773167615,NL 773167616,773167655,US 773167656,773167663,NL 773167664,773168127,US 773168128,773168415,NL 773168416,773168639,US 773168640,773168895,NL 773168896,773169151,US 773169152,773173247,NL 773173248,773177343,IT 773177344,773181439,FR 773181440,773185535,PL 773185536,773189631,NL 773189632,773197823,RU 773197824,773201919,CH 773201920,773206015,DE 773206016,773210111,RU 773210112,773210623,US 773210624,773211135,ES 773211136,773211391,FR 773211392,773211647,US 773211648,773211903,NL 773211904,773212159,US 773212160,773212671,NL 773212672,773213183,GB 773213184,773214207,US 773214208,773218303,FR 773218304,773222399,IS 773222400,773226495,SE 773226496,773230591,IE 773230592,773234687,RS 773234688,773238783,PL 773238784,773242879,NL 773242880,773246975,FR 773246976,773251071,EE 773251072,773255167,AZ 773255168,773259263,RU 773259264,773263359,SI 773263360,773267455,GB 773267456,773271551,LV 773271552,773275647,CZ 773275648,773277695,GB 773277696,773283839,NL 773283840,773287935,AZ 773287936,773292031,JO 773292032,773296127,CZ 773296128,773300223,RU 773300224,773304319,FI 773304320,773308415,RU 773308416,773312511,IT 773312512,773316607,DE 773316608,773318655,GB 773318656,773320703,DE 773320704,773324799,FR 773324800,773586943,ES 773586944,773588991,IT 773588992,773591039,PL 773591040,773593087,RU 773593088,773595135,IT 773595136,773597183,DE 773597184,773599231,BE 773599232,773601279,GB 773601280,773603327,LV 773603328,773605375,UA 773605376,773607423,IR 773607424,773609471,DE 773609472,773611519,RU 773611520,773613567,BY 773613568,773615615,CZ 773615616,773617663,DE 773617664,773619711,IT 773619712,773621759,RU 773621760,773623807,PS 773623808,773625855,SE 773625856,773627903,IS 773627904,773629951,ES 773629952,773631999,FR 773632000,773634047,CY 773634048,773636095,DE 773636096,773638143,UA 773638144,773640191,CH 773640192,773642239,ES 773642240,773644287,HU 773644288,773646335,RU 773646336,773648383,TR 773648384,773650431,PL 773650432,773652479,GB 773652480,773653503,SK 773653504,773654527,TR 773654528,773656575,RU 773656576,773658623,PL 773660672,773662719,AT 773662720,773664767,DE 773664768,773666815,ES 773666816,773668863,GB 773668864,773670911,DE 773670912,773672959,RU 773672960,773675007,SA 773675008,773677055,GB 773677056,773679103,DE 773679104,773681151,IT 773681152,773683199,RU 773683200,773685247,FR 773685248,773687295,UA 773687296,773689343,HU 773689344,773691391,PL 773691392,773695487,RU 773695488,773697535,MK 773697536,773699583,LU 773699584,773701631,CZ 773701632,773703679,RU 773703680,773705727,IT 773705728,773707775,RU 773707776,773709823,NO 773709824,773711871,CZ 773711872,773713919,RU 773713920,773715967,NL 773715968,773716991,SE 773716992,773718015,US 773718016,773720063,DE 773720064,773722111,GB 773722112,773724159,ES 773724160,773726207,DE 773726208,773730303,RU 773730304,773732351,GB 773732352,773734399,DE 773734400,773736447,CZ 773736448,773740543,DE 773740544,773742591,CZ 773742592,773744639,GB 773744640,773746687,ES 773746688,773748735,DE 773748736,773750783,DK 773750784,773752831,FI 773752832,773754879,GB 773754880,773756927,CZ 773756928,773758975,RU 773758976,773761023,UA 773761024,773763071,IT 773763072,773765119,TR 773767168,773769215,GB 773769216,773771263,FR 773771264,773773311,DK 773773312,773775359,IT 773775360,773777407,IQ 773777408,773779455,CZ 773779456,773783551,IT 773783552,773785599,RU 773785600,773787647,NL 773787648,773789695,DK 773789696,773791743,RU 773791744,773793791,PL 773793792,773795839,FR 773795840,773797887,NL 773797888,773799935,ES 773799936,773801983,CY 773801984,773804031,IQ 773804032,773806079,GB 773806080,773808127,BE 773808128,773810175,IL 773810176,773812223,IT 773812224,773814271,TR 773814272,773816319,DE 773816320,773818367,IT 773818368,773820415,HR 773820416,773822463,TR 773822464,773824511,RU 773824512,773826559,FR 773826560,773828607,GB 773828608,773830655,HU 773830656,773832703,NO 773832704,773834751,FR 773834752,773835007,GB 773835008,773835263,IM 773835264,773835775,GB 773835776,773836031,IM 773836032,773836543,GB 773836544,773836799,IM 773836800,773838847,FR 773838848,773840895,DE 773840896,773842943,GB 773844992,773845759,GB 773845760,773846015,JE 773846016,773846527,GG 773846528,773847039,GB 773847040,773849087,IT 773849088,773857279,IR 773857280,773865471,DK 773865472,773873663,RU 773873664,773881855,JO 773881856,773890047,DK 773890048,773898239,AZ 773898240,773906431,PS 773906432,773922815,GB 773922816,773931007,UA 773931008,773934591,DE 773934592,773935352,FR 773935353,773935353,US 773935354,773935728,FR 773935729,773935729,GB 773935730,773937663,FR 773937664,773937664,DE 773937665,773937673,FR 773937674,773937674,IE 773937675,773938231,FR 773938232,773938239,GB 773938240,773939199,FR 773939200,773947391,CZ 773947392,773955583,GB 773955584,773963775,FR 773963776,773971967,ME 773971968,773980159,UA 773980160,773988351,GB 773988352,773997823,ES 773997824,773998079,NL 773998080,774000639,ES 774000640,774000823,NL 774000824,774000824,GB 774000825,774000895,NL 774000896,774001663,ES 774001664,774002687,NL 774002688,774002815,ES 774002816,774002842,NL 774002843,774002843,ES 774002844,774002943,NL 774002944,774004735,ES 774004736,774012927,IR 774012928,774021119,RU 774021120,774029311,IR 774029312,774037503,KZ 774037504,774045695,SK 774045696,774053887,FR 774053888,774055935,DE 774055936,774057727,US 774057728,774062079,DE 774062080,774070271,YE 774070272,774078463,ES 774078464,774086655,BA 774086656,774094847,BG 774094848,774103039,HU 774103040,774111231,UA 774111232,774119423,RU 774119424,774127615,CZ 774127616,774135807,LT 774135808,774143999,IR 774144000,774152191,KZ 774152192,774160383,BA 774160384,774162431,GB 774162432,774162432,VA 774162433,774162442,GB 774162443,774162452,BA 774162453,774162462,BO 774162463,774162472,SR 774162473,774162482,IT 774162483,774162492,CK 774162493,774162502,IT 774162503,774162512,NU 774162513,774162522,BO 774162523,774162532,DE 774162533,774162542,TF 774162543,774162552,GG 774162553,774162562,MX 774162563,774162572,MQ 774162573,774162582,YT 774162583,774162592,NC 774162593,774162602,CA 774162603,774162622,US 774162623,774162627,MX 774162628,774162637,GB 774162638,774162642,NF 774162643,774162647,VN 774162648,774162652,AO 774162653,774162657,GM 774162658,774162662,US 774162663,774162667,BW 774162668,774162672,US 774162673,774162677,KG 774162678,774162682,MG 774162683,774162687,US 774162688,774162688,VA 774162689,774162693,US 774162694,774162698,MZ 774162699,774162703,NP 774162704,774162738,US 774162739,774162743,VA 774162744,774162778,US 774162779,774162784,CA 774162785,774162787,UA 774162788,774162788,VA 774162789,774162798,CA 774162799,774162803,BN 774162804,774162808,TM 774162809,774162813,US 774162814,774162818,IT 774162819,774162823,KZ 774162824,774162828,US 774162829,774162833,PN 774162834,774162838,SM 774162839,774162848,GB 774162849,774162853,AU 774162854,774162858,NL 774162859,774162863,IE 774162864,774162888,US 774162889,774162893,CA 774162894,774162903,MX 774162904,774162908,GB 774162909,774162913,AX 774162914,774162917,FO 774162918,774162923,SJ 774162924,774162928,CC 774162929,774162933,NR 774162934,774162938,GS 774162939,774162942,UM 774162943,774162944,VA 774162945,774162964,IT 774162965,774162966,MX 774162967,774162967,LI 774162968,774162969,MX 774162970,774162970,BY 774162971,774162971,MX 774162972,774162974,VA 774162975,774162975,MY 774162976,774162979,VA 774162980,774162980,IN 774162981,774162983,BO 774162984,774162987,SX 774162988,774162991,MX 774162992,774162999,VA 774163000,774163000,PK 774163001,774163009,BO 774163010,774163010,VE 774163011,774163014,BO 774163015,774163071,VA 774163072,774163074,GW 774163075,774163124,IT 774163125,774163127,TJ 774163128,774163203,VA 774163204,774163210,AU 774163211,774163215,TD 774163216,774163220,CD 774163221,774163225,DJ 774163226,774163230,CF 774163231,774163235,VA 774163236,774163240,MF 774163241,774163245,VC 774163246,774163250,PM 774163251,774163255,BL 774163256,774163260,DM 774163261,774163265,KM 774163266,774163270,TZ 774163271,774163275,ST 774163276,774163280,GB 774163281,774163283,KP 774163284,774163290,FK 774163291,774163330,IT 774163331,774163331,UG 774163332,774163335,VA 774163336,774163339,MP 774163340,774163343,TL 774163344,774163347,WF 774163348,774163351,SD 774163352,774163359,VA 774163360,774163367,BQ 774163368,774163375,CW 774163376,774163383,IT 774163384,774163391,GE 774163392,774163399,VA 774163400,774163411,US 774163412,774163455,VA 774163456,774166527,DK 774166528,774168575,EE 774168576,774176767,PL 774176768,774184959,IT 774184960,774193151,GB 774193152,774209535,ES 774209536,774217727,RU 774217728,774225919,GB 774225920,774234111,UA 774234112,774242303,IT 774242304,774258687,RU 774258688,774266879,SA 774266880,774275071,RU 774275072,774283263,IR 774283264,774291455,GB 774291456,774299647,NL 774299648,774307839,DE 774307840,774324223,RU 774324224,774332415,UA 774332416,774340607,SE 774340608,774348799,EE 774348800,774356991,CZ 774356992,774365183,ES 774365184,774373375,RU 774373376,774389759,RS 774389760,774406143,BG 774406144,774422527,IT 774422528,774438911,OM 774438912,774455295,DE 774455296,774471679,RU 774471680,774488063,PL 774488064,774504447,IR 774504448,774520831,RU 774520832,774537215,BH 774537216,774553599,RU 774553600,774569983,KZ 774569984,774586367,GB 774586368,774602751,PS 774602752,774619135,GB 774619136,774651903,RU 774651904,774668287,SA 774668288,774684671,NL 774684672,774701055,IT 774701056,774717439,RU 774717440,774733823,PL 774733824,774750207,TR 774750208,774782975,RU 774782976,774799359,UA 774799360,774815743,RU 774815744,774832127,NO 774832128,774848511,RU 774848512,774864895,BG 774864896,774881279,CZ 774881280,774963199,RU 774963200,774995967,GE 774995968,775028735,SA 775028736,775061503,PT 775061504,775094271,RU 775094272,775127039,RO 775127040,775149566,IE 775149567,775149567,NL 775149568,775151615,SG 775151616,775159807,JP 775159808,775192575,SA 775192576,775225343,RU 775225344,775258111,SY 775258112,775290879,BY 775290880,775323647,MT 775323648,775356415,SI 775356416,775389183,MD 775389184,775421951,BG 775421952,775487487,BY 775487488,775520255,AT 775520256,775553023,SY 775585792,775618559,SY 775618560,775645951,SE 775645952,775646207,NO 775646208,775651327,SE 775651328,775684095,DE 775684096,775708671,PS 775708672,775710719,IL 775710720,775716863,PS 775716864,775749631,GB 775749632,775847935,RU 775847936,775880703,IR 775880704,775913471,UA 775913472,775946239,RU 775946240,776077311,GB 776077312,776208383,NO 776208384,776339455,GB 776339456,776470527,AM 776470528,776601599,RU 776601600,776732671,AT 776732672,776863743,PL 776863744,778043391,DE 778043392,778108927,UA 778108928,778174463,RO 778174464,778239999,UA 778240000,778304305,AL 778304306,778304306,SI 778304307,778305535,AL 778305536,778371071,IR 778371072,778403839,GB 778403840,778436607,DE 778436608,778461183,RO 778461184,778461439,TR 778461440,778462207,EE 778462208,778462463,TR 778462464,778463231,EE 778463232,778467327,RO 778467328,778473471,IR 778473472,778475519,RO 778475520,778475775,CH 778475776,778476031,RO 778476032,778476287,MD 778476288,778477567,RO 778477568,778477695,NL 778477696,778480639,RO 778480640,778480895,MD 778480896,778481663,RO 778481664,778481919,MD 778481920,778482943,GB 778482944,778483199,MD 778483200,778484735,RO 778484736,778485247,IT 778485248,778485759,RO 778485760,778493951,GB 778493952,778495999,NL 778496000,778497791,RO 778497792,778500095,NL 778500096,778500863,RO 778500864,778500991,CN 778500992,778501119,HK 778501120,778502143,RO 778502144,778567679,GR 778567680,778633215,TR 778633216,778640127,FR 778640128,778640383,GB 778640384,778666259,FR 778666260,778666263,ES 778666264,778666479,FR 778666480,778666495,DE 778666496,778666879,FR 778666880,778666943,GB 778666944,778667327,FR 778667328,778667331,DE 778667332,778667391,FR 778667392,778667395,IT 778667396,778668623,FR 778668624,778668627,NL 778668628,778668631,ES 778668632,778668863,FR 778668864,778668895,DE 778668896,778669935,FR 778669936,778669951,ES 778669952,778669967,FR 778669968,778669983,IE 778669984,778670751,FR 778670752,778670755,DE 778670756,778670975,FR 778670976,778670976,DE 778670977,778671201,FR 778671202,778671202,ES 778671203,778673187,FR 778673188,778673191,ES 778673192,778673207,FR 778673208,778673211,ES 778673212,778673383,FR 778673384,778673387,IT 778673388,778673631,FR 778673632,778673647,DE 778673648,778673751,FR 778673752,778673759,DE 778673760,778673883,FR 778673884,778673887,ES 778673888,778674767,FR 778674768,778674783,BE 778674784,778675695,FR 778675696,778675711,BE 778675712,778675795,FR 778675796,778675799,ES 778675800,778675891,FR 778675892,778675895,ES 778675896,778677071,FR 778677072,778677075,NL 778677076,778677471,FR 778677472,778677475,DE 778677476,778677503,FR 778677504,778677505,GB 778677506,778677506,ES 778677507,778677507,GB 778677508,778677759,ES 778677760,778679212,FR 778679213,778679214,FI 778679215,778679491,FR 778679492,778679495,ES 778679496,778680227,FR 778680228,778680231,IE 778680232,778680683,FR 778680684,778680687,ES 778680688,778681487,FR 778681488,778681495,NL 778681496,778681503,FR 778681504,778681507,DE 778681508,778681519,FR 778681520,778681523,ES 778681524,778681535,FR 778681536,778681543,NL 778681544,778681823,FR 778681824,778681827,IT 778681828,778682103,FR 778682104,778682111,DE 778682112,778688447,FR 778688448,778688451,CZ 778688452,778688627,FR 778688628,778688631,NL 778688632,778689923,FR 778689924,778689927,DE 778689928,778691619,FR 778691620,778691623,IT 778691624,778691711,FR 778691712,778691727,GB 778691728,778692143,FR 778692144,778692159,DE 778692160,778692499,FR 778692500,778692503,ES 778692504,778692519,FR 778692520,778692527,NL 778692528,778692535,BE 778692536,778692539,IT 778692540,778692619,FR 778692620,778692623,ES 778692624,778692743,FR 778692744,778692747,ES 778692748,778693095,FR 778693096,778693099,ES 778693100,778693427,FR 778693428,778693431,ES 778693432,778693759,FR 778693760,778693763,ES 778693764,778695135,FR 778695136,778695167,DE 778695168,778695471,FR 778695472,778695475,ES 778695476,778695839,FR 778695840,778695871,DE 778695872,778696439,FR 778696440,778696447,IT 778696448,778696495,FR 778696496,778696499,ES 778696500,778696811,FR 778696812,778696815,DE 778696816,778696991,FR 778696992,778696995,ES 778696996,778697067,FR 778697068,778697071,ES 778697072,778697175,FR 778697176,778697179,ES 778697180,778697471,FR 778697472,778697479,CZ 778697480,778697815,FR 778697816,778697819,ES 778697820,778697955,FR 778697956,778697959,ES 778697960,778698447,FR 778698448,778698451,ES 778698452,778698643,FR 778698644,778698647,ES 778698648,778698703,FR 778698704,778698707,ES 778698708,778698751,FR 778698752,778764287,TR 778764288,778829823,HU 778829824,778895359,RO 778895360,778960895,LV 778960896,779026431,DE 779026432,779091967,RU 779091968,779223039,PL 779223040,779354111,DE 779354112,779485183,IL 779485184,779616255,UA 779616256,779747327,IL 779747328,779878399,SI 779878400,780009471,AT 780009472,780125183,CH 780125184,780125695,DE 780125696,780140543,CH 780140544,780206079,DE 780206080,780271615,NL 780271616,780337151,AM 780337152,780402687,EE 780402688,780468223,FI 780468224,780533759,UA 780533760,780599295,PL 780599296,780664831,CZ 780664832,780730367,ES 780730368,780779519,IE 780779520,780795903,SG 780795904,780861439,RU 780861440,780926975,HU 780926976,780949503,CH 780949504,780949759,DE 780949760,780992511,CH 780992512,781058047,IT 781058048,781123583,DE 781123584,781189119,IR 781189120,781320191,NL 781320192,781451263,RU 781451264,781455359,PL 781455360,781459455,UA 781459456,781463551,IR 781463552,781467647,RU 781467648,781475839,PL 781475840,781479935,RU 781479936,781484031,UA 781484032,781488127,RU 781488128,781496319,PL 781496320,781500415,UA 781500416,781516799,RU 781516800,781520895,SA 781520896,781524991,IS 781524992,781529087,RU 781529088,781533183,UA 781533184,781537279,RU 781537280,781545471,UA 781545472,781549567,CZ 781549568,781553663,RU 781553664,781557759,PL 781557760,781565951,UA 781565952,781570047,CH 781570048,781574143,PL 781574144,781578239,RU 781578240,781582335,PL 781582336,781590527,UA 781590528,781598719,SI 781598720,781615103,UA 781615104,781631487,RU 781631488,781639679,SK 781639680,781651967,RU 781651968,781654015,PL 781654016,781656063,RU 781656064,781658111,RO 781658112,781662207,UA 781662208,781664255,SK 781664256,781666303,UA 781666304,781668351,PL 781668352,781670399,UA 781670400,781672447,RU 781672448,781674495,BE 781674496,781676543,RU 781676544,781678591,PL 781678592,781682687,RS 781682688,781684735,PL 781684736,781688831,RU 781688832,781690879,RO 781690880,781692927,RU 781692928,781694975,UA 781694976,781697023,PL 781697024,781699071,UA 781699072,781701119,RO 781701120,781703167,SA 781703168,781705215,PL 781705216,781707263,RO 781707264,781709311,SI 781709312,781711359,RU 781711360,781713407,UA 781713408,781844479,SA 781844480,781975551,TR 781975552,782106623,NO 782106624,782254079,RU 782254080,782270463,UA 782270464,782306303,RU 782306304,782307327,NL 782307328,782317567,RU 782317568,782317695,IN 782317696,782317823,CN 782317824,782317951,TR 782317952,782318079,JP 782318080,782318207,SA 782318208,782318335,IL 782318336,782318463,AU 782318464,782318591,RU 782318592,782318719,ES 782318720,782318847,RU 782318848,782318975,IS 782318976,782319103,BE 782319104,782319231,KZ 782319232,782319359,RU 782319360,782319487,MD 782319488,782319615,RU 782319616,782335999,ME 782336000,782352383,RU 782352384,782368767,SY 782368768,782385151,UA 782385152,782401535,SE 782401536,782417919,FR 782417920,782434303,AM 782434304,782446591,SI 782446592,782447359,BA 782447360,782447615,HR 782447616,782449663,SI 782449664,782450687,BA 782450688,782467071,DE 782467072,782483455,RU 782483456,782499839,FI 782499840,782516223,SI 782516224,782532607,IR 782532608,782548991,UA 782548992,782581759,RU 782581760,782598143,FR 782598144,782616643,DE 782616644,782616644,RU 782616645,782630911,DE 782630912,782647295,MD 782647296,782663679,RU 782663680,782667519,NL 782667520,782667775,LU 782667776,782671871,NL 782671872,782672783,LT 782672784,782672791,CH 782672792,782672871,LT 782672872,782672879,IL 782672880,782672991,LT 782672992,782673023,CR 782673024,782673927,LT 782673928,782673935,RU 782673936,782675967,LT 782675968,782680063,NL 782680064,782696447,RU 782696448,782712831,DE 782712832,782729215,RU 782729216,782745599,DE 782745600,782761983,CZ 782761984,783024127,PL 783024128,783040511,RU 783040512,783048703,UA 783048704,783056895,RU 783056896,783065087,UA 783065088,783081471,RU 783081472,783089663,UA 783089664,783106047,RU 783106048,783134719,UA 783134720,783138815,RU 783138816,783142911,CZ 783142912,783147007,RU 783147008,783151103,FI 783151104,783155199,RO 783155200,783157247,PL 783157248,783159295,RU 783159296,783161343,CZ 783161344,783163391,PL 783163392,783165439,CZ 783165440,783167487,UA 783167488,783169535,RU 783169536,783171583,CZ 783171584,783173631,UA 783173632,783175679,PL 783175680,783179775,RU 783179776,783181823,RS 783181824,783185919,RU 783185920,783187967,UA 783187968,783190015,NL 783190016,783194111,RO 783194112,783196159,CZ 783196160,783198207,UA 783198208,783202303,PL 783202304,783204351,VG 783204352,783206399,RU 783206400,783208447,RO 783208448,783210495,PL 783210496,783212543,UA 783212544,783216639,PL 783216640,783218687,UA 783218688,783220735,RU 783220736,783222783,SK 783222784,783223807,CH 783223808,783224063,RU 783224064,783224319,GB 783224320,783224831,PL 783224832,783226879,UA 783226880,783230975,RU 783230976,783233023,PL 783233024,783235071,GB 783235072,783237119,DE 783237120,783243263,UA 783243264,783245311,CZ 783245312,783247359,RU 783247360,783251455,PL 783251456,783255551,RU 783255552,783259647,UA 783259648,783261695,RU 783261696,783263743,UA 783263744,783265791,BY 783265792,783267839,CZ 783267840,783269887,UA 783269888,783278079,RU 783278080,783282175,PL 783282176,783286271,UA 783286272,783417343,GR 783417344,783548415,BE 783548416,783679487,RU 783679488,783681535,FR 783681536,783683583,IE 783683584,783685631,DE 783685632,783687679,RU 783687680,783688447,PT 783688448,783688703,ES 783688704,783689727,PT 783689728,783691775,FR 783691776,783693823,BY 783693824,783694367,GB 783694368,783694399,DE 783694400,783695871,GB 783695872,783697919,TR 783697920,783699967,FR 783699968,783702015,UA 783702016,783704063,IT 783704064,783706111,PL 783706112,783707391,NL 783707392,783707647,US 783707648,783708159,NL 783708160,783710207,FI 783710208,783712255,NL 783712256,783714303,RU 783714304,783718399,DE 783718400,783720447,IT 783720448,783722495,FI 783722496,783724543,AM 783724544,783726591,NL 783726592,783728639,IS 783728640,783730687,BE 783730688,783732735,SE 783732736,783734783,FR 783734784,783736831,NL 783736832,783738879,SI 783738880,783740927,IT 783740928,783745023,DE 783745024,783747071,RU 783747072,783749119,GB 783749120,783751167,GR 783751168,783753215,SE 783753216,783755263,FR 783755264,783757311,DE 783757312,783759359,FR 783759360,783763455,CZ 783763456,783765503,FI 783765504,783767551,RU 783767552,783769599,IL 783769600,783771647,DE 783771648,783773695,CH 783773696,783775743,ES 783775744,783777791,AL 783777792,783779839,RU 783779840,783781887,DK 783781888,783783935,NL 783783936,783785983,DE 783785984,783788031,RU 783788032,783790079,NO 783790080,783792127,RU 783794176,783798271,GB 783798272,783800319,PL 783800320,783802367,LV 783802368,783804415,FR 783804416,783806463,IT 783806464,783810559,NL 783810560,783843327,SA 783843328,783876095,BH 783876096,783908863,UA 783908864,783941631,JO 783941632,783974399,PL 783974400,784007167,KW 784007168,784039935,RU 784039936,784072703,PL 784072704,784105471,RU 784105472,784138239,HR 784138240,784169215,DE 784169216,784169231,AL 784169232,784169247,BG 784169248,784169263,CZ 784169264,784169279,MK 784169280,784169343,AT 784169344,784169407,HU 784169408,784169471,SE 784169472,784171007,DE 784171008,784203775,PT 784203776,784236543,GR 784236544,784269311,GB 784269312,784302079,BY 784302080,784334847,RU 784334848,784465919,FR 784465920,784596991,SE 784596992,784728063,TR 784728064,784793599,GR 784793600,784859135,CY 784859136,785121279,UA 785121280,785252351,PL 785252352,785383423,AT 785383424,785448959,GB 785448960,785514495,IR 785514496,785580031,IL 785580032,785645567,UA 785645568,785711103,NO 785711104,785776639,SY 785776640,785842175,RO 785842176,785907711,PL 785907712,785973247,BY 785973248,786038783,MK 786038784,786085119,FR 786085120,786085233,US 786085234,786085234,FR 786085235,786085375,US 786085376,786104319,FR 786104320,786169855,UA 786169856,786235391,AT 786235392,786300927,TR 786300928,786366463,ES 786366464,786431999,DE 786432000,786563071,IR 786563072,786565119,GB 786565120,786567167,NO 786567168,786569215,CZ 786569216,786571263,NO 786571264,786575359,ES 786575360,786575871,GB 786575872,786576098,NO 786576099,786576099,SE 786576100,786576127,NO 786576128,786577407,GB 786577408,786579455,NL 786579456,786581503,RU 786581504,786583551,GB 786583552,786585599,DE 786585600,786587647,NL 786587648,786589695,RU 786589696,786590719,FR 786590720,786591743,LU 786591744,786593791,DE 786593792,786595839,GB 786595840,786597887,FR 786597888,786599935,EE 786599936,786601983,ES 786601984,786604031,SE 786604032,786606079,RU 786606080,786608127,GB 786608128,786610175,IT 786610176,786612223,IM 786612224,786614271,GR 786614272,786616319,IT 786616320,786618367,KG 786618368,786620415,GB 786620416,786622463,RU 786622464,786624511,NL 786624512,786626559,RU 786626560,786628607,GB 786628608,786630655,IT 786630656,786632703,CZ 786632704,786634751,FR 786634752,786636799,RU 786636800,786638847,PL 786638848,786642943,GB 786642944,786644991,GR 786644992,786649087,SE 786649088,786651135,FR 786651136,786655231,DE 786655232,786657279,PL 786657280,786659327,FO 786659328,786661375,UZ 786661376,786663423,DE 786663424,786665471,UA 786665472,786667519,GB 786667520,786669567,IT 786669568,786671615,RU 786671616,786673663,CZ 786673664,786675711,SK 786675712,786677759,KZ 786677760,786679807,NO 786679808,786681855,GB 786681856,786683903,RU 786683904,786685951,DE 786685952,786687999,CH 786688000,786690047,NL 786690048,786692095,PL 786692096,786694143,LB 786694144,786698239,RU 786698240,786702335,CZ 786702336,786706431,GB 786706432,786710527,NO 786710528,786714623,RU 786714624,786718719,PL 786718720,786726911,RU 786726912,786731007,FI 786731008,786735103,IL 786735104,786739199,GB 786739200,786743295,AZ 786743296,786747391,DE 786747392,786751487,SK 786751488,786755583,PL 786755584,786759679,IT 786759680,786771967,DE 786771968,786776063,UA 786776064,786780159,RU 786780160,786784255,IT 786784256,786788351,RU 786788352,786792447,CZ 786792448,786796543,RU 786796544,786800639,PL 786800640,786804735,US 786804736,786808831,RU 786808832,786812927,BG 786812928,786817023,RU 786817024,786821119,SK 786821120,786825215,HR 786825216,786857983,SA 786857984,786868223,NO 786868224,786890751,SE 786890752,786892799,ES 786892800,786894847,GB 786894848,786896895,NL 786896896,786900991,IT 786900992,786905087,NL 786905088,786907135,PL 786907136,786909183,GB 786909184,786911231,CZ 786911232,786913279,NL 786913280,786915327,DE 786915328,786917375,SK 786917376,786919423,RO 786919424,786919431,IT 786919432,786919639,GB 786919640,786919647,IT 786919648,786919799,GB 786919800,786919807,IT 786919808,786919879,GB 786919880,786919887,IT 786919888,786920191,GB 786920192,786920199,IT 786920200,786920343,GB 786920344,786920351,IT 786920352,786920839,GB 786920840,786920847,IT 786920848,786920855,GB 786920856,786920863,IT 786920864,786921303,GB 786921304,786921311,IT 786921312,786921455,GB 786921456,786921463,IT 786921464,786921471,GB 786921472,786923519,ES 786923520,786925567,FR 786925568,786927615,DE 786927616,786929663,FR 786929664,786931711,PL 786931712,786933759,GB 786933760,786935807,RU 786935808,786937855,DE 786937856,786939903,GB 786939904,786941951,FI 786941952,786943999,CH 786944000,786946047,RU 786946048,786948095,FR 786948096,786950143,UA 786950144,786952191,DE 786952192,786954239,US 786954240,786956287,NL 786956288,786989055,RU 786989056,786991103,PL 786991104,786995199,IT 786995200,786997247,BG 786997248,786999295,RU 786999296,787001343,ES 787001344,787003391,CH 787003392,787005439,DE 787005440,787007487,GB 787007488,787009535,RU 787009536,787011583,NL 787011584,787013631,RU 787013632,787015679,DE 787015680,787017727,UA 787017728,787019775,RU 787021824,787038207,BG 787038208,787038463,GB 787038464,787038719,IE 787038720,787038975,DE 787038976,787039231,FR 787039232,787039247,AR 787039248,787039263,PE 787039264,787039279,VE 787039280,787054591,GB 787054592,787070975,IT 787070976,787087359,RU 787087360,787095551,TR 787095680,787095711,CH 787096576,787097855,CH 787098112,787098879,CH 787099392,787100671,CH 787101696,787102719,CH 787103744,787111935,HR 787111936,787116287,CZ 787116288,787116543,US 787116544,787120127,CZ 787120128,787128319,ES 787128320,787136511,CZ 787136512,787152895,IT 787152896,787154943,GB 787154944,787156991,TR 787156992,787159039,FR 787159040,787161087,DE 787161088,787163135,SE 787163136,787165183,NL 787165184,787167231,RU 787167232,787169279,CH 787169280,787171327,RU 787171328,787173375,KG 787173376,787175423,KZ 787175424,787177471,SA 787177472,787179519,RS 787179520,787183615,DE 787183616,787185663,PL 787185664,787187711,GG 787187712,787189759,IT 787189760,787191807,CH 787191808,787192063,GB 787192064,787192319,FR 787192384,787192447,DE 787192576,787192831,SE 787193088,787193343,FI 787193344,787193599,DE 787193856,787195903,RU 787195904,787197951,GB 787197952,787199999,FR 787200000,787202047,RU 787202048,787206143,DE 787206144,787208191,BH 787208192,787210239,RU 787210240,787212287,GB 787212288,787214335,SE 787214336,787216383,DE 787216384,787218431,RU 787218432,787234815,GB 787234816,787236559,SE 787236560,787236575,NO 787236576,787251199,SE 787251200,787267583,RU 787267584,787283967,DE 787283968,787300351,RU 787300352,787316735,BG 787316736,787333119,GB 787333120,787349503,DE 787349504,787365887,BG 787365888,787382271,PL 787382272,787383039,GP 787383040,787383295,MF 787383296,787392511,GP 787392512,787392767,MF 787392768,787398655,GP 787398656,787415039,PL 787415040,787431423,BA 787431424,787447807,SE 787447808,787464191,PL 787464192,787480575,IS 787480576,787513343,SA 787513344,787546111,RS 787546112,787578879,RU 787578880,787611647,AM 787611648,787644415,RU 787644416,787677183,PL 787677184,787679231,GB 787679232,787681279,RU 787681280,787683327,IQ 787683328,787685375,NL 787685376,787687423,IT 787687424,787689471,NL 787689472,787691519,CZ 787693568,787695615,SK 787695616,787697663,RU 787697664,787701759,DE 787701760,787703807,NL 787703808,787705855,AT 787705856,787707903,RO 787707904,787709951,DE 787709952,787711487,IE 787711488,787711999,GB 787712000,787712255,MT 787712256,787712511,MA 787712512,787712767,DE 787712768,787713023,IT 787713024,787713279,LV 787713280,787713535,SE 787713536,787713791,BG 787713792,787714047,GR 787714048,787714303,IM 787714304,787714559,SY 787714560,787714815,LB 787714816,787715071,QA 787715072,787715327,OM 787715328,787715583,YE 787715584,787715839,BH 787715840,787718143,NL 787718144,787742719,RU 787742720,787750911,NL 787750912,787755007,GB 787755008,787759103,NL 787759104,787767295,PS 787767296,787768319,IT 787768320,787771135,NL 787771136,787771391,IT 787771392,787775487,NL 787775488,787808255,DE 787808256,787841023,IR 787841024,787843071,RU 787843072,787845119,GR 787845120,787847167,CH 787847168,787849215,SE 787849216,787851263,TR 787851264,787853311,RU 787853312,787855359,DE 787855360,787857407,CH 787857408,787859455,PL 787859456,787861503,AT 787861504,787863551,IE 787863552,787865599,DE 787865600,787869695,FR 787869696,787873791,GB 787873792,787881745,SE 787881746,787881747,FR 787881748,787906559,SE 787906560,787939327,GR 787939328,787972095,GB 787972096,788004863,UA 788004864,788013055,GB 788013056,788021247,IR 788021248,788029439,SI 788029440,788045823,GB 788045824,788054015,PL 788054016,788062207,JO 788062208,788070399,GB 788070400,788078591,RU 788078592,788086783,NL 788086784,788094975,BG 788094976,788095231,IR 788095232,788095487,DE 788095488,788103167,IR 788103168,788111359,HU 788111360,788119551,LT 788119552,788127743,GB 788127744,788135935,NO 788135936,788144127,UA 788144128,788160511,RU 788160512,788168703,UA 788168704,788176895,RU 788176896,788185087,PL 788185088,788193279,NO 788193280,788201471,GB 788201472,788209663,HU 788209664,788217855,LT 788217856,788226047,RU 788226048,788234239,CY 788234240,788242431,SA 788242432,788250623,IR 788250624,788258815,KG 788258816,788261375,DE 788261376,788261631,GB 788261632,788267007,DE 788267008,788271103,SE 788271104,788275199,DE 788275200,788279295,AL 788279296,788283391,BG 788283392,788291583,GB 788291584,788295679,TR 788295680,788299775,RU 788299776,788303871,DE 788303872,788307967,IT 788307968,788312063,RU 788312064,788316159,FR 788316160,788320255,NL 788320256,788324351,UA 788324352,788328447,CZ 788328448,788332543,RU 788332544,788336639,BG 788336640,788340735,DE 788340736,788344831,ES 788344832,788353023,DE 788353024,788357119,PS 788357120,788361215,CZ 788361216,788365311,DE 788365312,788369407,IQ 788369408,788373503,DE 788373504,788377599,BE 788377600,788381695,CH 788381696,788385791,SE 788385792,788389887,PL 788389888,788393983,ES 788393984,788398079,DE 788398080,788400127,SI 788400128,788402175,SE 788402176,788406271,RU 788406272,788410367,IT 788410368,788412415,TR 788412416,788414463,SI 788414464,788416511,CZ 788416512,788418559,PL 788418560,788422655,RU 788422656,788424703,FI 788424704,788426751,IT 788426752,788428799,GB 788428800,788430847,DE 788430848,788432895,BG 788432896,788434943,DE 788434944,788436991,SI 788436992,788439039,IT 788439040,788441087,RU 788441088,788443135,NL 788443136,788445183,IT 788445184,788451327,GB 788451328,788453375,FI 788453376,788455423,RU 788455424,788457471,FR 788457472,788459519,IT 788459520,788461567,RU 788461568,788462335,JE 788462336,788462591,GB 788462592,788463103,JE 788463104,788465663,GB 788465664,788467711,CZ 788467712,788469759,NO 788469760,788471807,NL 788471808,788473855,UA 788473856,788474879,DE 788474880,788475903,GB 788475904,788477951,FR 788477952,788479999,OM 788480000,788482047,UZ 788482048,788484095,GB 788484096,788486143,IT 788486144,788488191,NL 788488192,788490239,RU 788490240,788492287,NL 788492288,788494335,GB 788494336,788494591,US 788494592,788495103,CY 788495104,788495615,US 788495616,788495871,GB 788495872,788496383,CY 788496384,788498431,FR 788498432,788500479,RU 788500480,788502527,AL 788502528,788504575,IE 788504576,788506623,FR 788506624,788508671,CH 788508672,788509439,AT 788509440,788509695,FR 788509696,788510719,AT 788510720,788512767,ES 788512768,788514815,FI 788514816,788516863,FR 788516864,788518911,LT 788518912,788520959,IR 788520960,788523007,CZ 788523008,788525055,KZ 788525056,788527103,IT 788527104,788529151,GB 788529152,789577727,CA 789577728,790102015,US 790102016,790626303,CA 790626304,791937023,US 791937024,792002559,CA 792002560,792068095,IT 792068096,792094719,CA 792094720,792094975,US 792094976,792330239,CA 792330240,792723455,ES 792723456,793247743,DE 793247744,793313279,NZ 793313280,793378815,DE 793378816,794367999,CA 794368000,794369023,HK 794369024,794558463,CA 794558464,796917759,CN 796917760,797873663,CA 797873664,797873919,US 797873920,805306367,CA 805306368,822083583,US 822083584,822084607,ID 822085632,822087679,AU 822087680,822089727,JP 822089728,822090751,ID 822090752,822091775,NZ 822091776,822099967,BD 822099968,822116351,TH 822116352,822149119,MN 822149120,822214655,KR 822214656,822345727,AU 822345728,822607871,CN 822607872,822870015,KR 822870016,823132159,IN 823132160,824180735,KR 824180736,825229311,IN 825229312,825360383,TH 825360384,825361407,KR 825361408,825363455,ID 825363456,825364479,MY 825364480,825376767,KR 825376768,825393151,IN 825393152,825409535,KR 825409536,825419775,NZ 825419776,825420799,TH 825420800,825421823,MY 825421824,825425919,NZ 825425920,825753599,CN 825753600,826277887,KR 826277888,828375039,CN 828375040,829423615,JP 829423616,830210047,CN 830210048,830341119,MY 830341120,830406655,NP 830406656,830472191,AU 830472192,830472447,CN 830472448,830472703,AU 830472704,830474239,CN 830474240,830475263,SG 830475264,830476287,AU 830476288,830480383,JP 830480384,830488575,SG 830488576,830496767,HK 830496768,830498815,JP 830498816,830499839,GU 830499840,830500863,IN 830500864,830504959,TW 830504960,830513151,JP 830513152,830517247,IN 830517248,830521343,ID 830521344,830529535,KR 830529536,830537727,AU 830537728,830603263,JP 830603264,830734335,HK 830734336,830996479,JP 830996480,831258623,IN 831258624,831389695,CN 831389696,831512575,KR 831512576,831513599,AU 831513600,831514623,NZ 831514624,831514975,HK 831514976,831515007,AU 831515008,831515647,HK 831515648,831516671,AU 831516672,831518719,JP 831518720,831519743,AU 831519744,831520767,IN 831520768,832045055,PH 832045056,832307199,CN 832307200,832311295,JP 832311296,832312319,AU 832312320,832313343,ID 832313344,832315391,AU 832315392,832319487,KH 832319488,832320511,NU 832320512,832321535,VN 832321536,832323583,ID 832323584,832348159,IN 832348160,832372735,JP 832372736,832438271,PH 832438272,832569343,TW 832569344,833617919,KR 833617920,835190783,AU 835190784,835715071,IN 835715072,835977215,CN 835977216,836042751,JP 836042752,836046847,HK 836046848,836050943,SG 836050944,836059135,IN 836059136,836075519,VN 836075520,836501503,TW 836501504,836763647,CN 836763648,837025791,NZ 837025792,837287935,TH 837287936,837550079,CN 837550080,837566463,IN 837566464,837599231,KR 837599232,837603327,MY 837603328,837604351,VN 837604352,837605375,NP 837605376,837607423,ID 837607424,837611519,JP 837611520,837615615,AU 837615616,837681151,TH 837681152,837689343,JP 837689344,837697535,IN 837697536,837746687,KR 837746688,837763071,CN 837763072,837779455,JP 837779456,837795839,KR 837795840,837812223,CN 837812224,838074367,JP 838074368,838139903,NP 838139904,838205439,SG 838205440,838238207,KR 838238208,838262783,VN 838262784,838270975,CN 838270976,838336511,KR 838336512,838467583,IN 838467584,838729727,JP 838729728,838795263,KR 838795264,838860799,AU 838860800,838996991,US 838996992,838997247,CA 838997248,839016191,US 839016192,839016447,CA 839016448,839056447,US 839056448,839056455,CN 839056456,839112191,US 839112192,839112447,CA 839112448,839340031,US 839340032,839341055,ES 839341056,839342079,US 839342080,839343103,DE 839343104,839344127,NL 839344128,839348223,US 839348224,839348479,DE 839348480,839348735,AT 839348736,839348991,GB 839348992,839349247,AT 839349248,839350271,DE 839350272,839351295,NL 839351296,839352063,DE 839352064,839357439,NL 839357440,839358463,FR 839358464,839359487,GB 839359488,839360511,DE 839360512,839366655,NL 839366656,839366911,AT 839366912,839367167,CZ 839367168,839368703,NL 839368704,839385087,CZ 839385088,840269823,US 840269824,840273919,CA 840273920,840278015,US 840278016,840282111,CA 840282112,840294399,US 840294400,840298495,CA 840298496,840836121,US 840836122,840836124,BZ 840836125,840838428,US 840838429,840838429,UA 840838430,840838453,US 840838454,840838454,UA 840838455,840838508,US 840838509,840838509,UA 840838510,840838510,US 840838511,840838512,UA 840838513,840865791,US 840865792,840866047,CA 840866048,840953855,US 840953856,840954367,JP 840954368,840956927,US 840956928,840957951,JP 840957952,843055103,US 843055104,843644927,CA 843644928,844890111,US 844890112,844988415,CA 844988416,845283327,US 845283328,845545471,CA 845545472,846442495,US 846442496,846446591,CA 846446592,846561279,US 846561280,846594047,CA 846594048,846626815,US 846626816,846627071,CN 846627072,846644755,US 846644756,846644756,PT 846644757,848915455,US 848915456,848916479,CA 848916480,850506751,US 850506752,850507263,CA 850507264,855638015,US 855638016,858230746,GB 858230747,858230747,SA 858230748,860905167,GB 860905168,860905171,FR 860905172,867041279,GB 867041280,867172351,NO 867172352,867368959,GB 867368960,867401727,IT 867401728,869466111,GB 869466112,869531647,SA 869531648,869924863,GB 869924864,869990399,SA 869990400,870252543,GB 870252544,870318079,SA 870318080,871038975,GB 871038976,871104511,SA 871104512,872153087,GB 872153088,872284159,SA 872284160,872288871,FR 872288872,872288875,DE 872288876,872290111,FR 872290112,872290143,ES 872290144,872300031,FR 872300032,872300063,ES 872300064,872300649,FR 872300650,872300650,PT 872300651,872306183,FR 872306184,872306191,GB 872306192,872309883,FR 872309884,872309884,PT 872309885,872316797,FR 872316798,872316798,PT 872316799,872326151,FR 872326152,872326155,CZ 872326156,872326176,FR 872326177,872326179,PT 872326180,872327807,FR 872327808,872327811,FI 872327812,872327815,IE 872327816,872327831,FR 872327832,872327835,IT 872327836,872330279,FR 872330280,872330283,GB 872330284,872342335,FR 872342336,872342367,ES 872342368,872344603,FR 872344604,872344607,GB 872344608,872346978,FR 872346979,872346979,DE 872346980,872364863,FR 872364864,872364927,NL 872364928,872374608,FR 872374609,872374618,ES 872374619,872380607,FR 872380608,872380671,ES 872380672,872415231,FR 872415232,873463807,US 873463808,873646466,IE 873646467,873646467,US 873646468,873725951,IE 873725952,874250239,US 874250240,874381311,DE 874381312,874512383,IE 874512384,875560959,US 875560960,875823103,IE 875823104,876216319,US 876216320,876347391,DE 876347392,876478463,US 876478464,876740607,AU 876740608,876871679,US 876871680,877002751,JP 877002752,877264895,US 877264896,877330431,SG 877330432,877395967,US 877395968,877527039,SG 877527040,877658111,US 877658112,877920255,CN 877920256,878454527,US 878454528,878454783,BR 878454784,878456831,IE 878456832,878457855,US 878457856,878458879,AU 878458880,878459903,SG 878459904,878460927,JP 878460928,878461951,BR 878461952,878462975,DE 878462976,878463999,BR 878464000,878576895,US 878576896,878577151,IE 878577152,878577663,US 878577664,878577919,BR 878577920,878578175,JP 878578176,878578687,US 878578688,878578943,SG 878578944,878579199,AU 878579200,878649855,US 878649856,878650111,JP 878650112,878650367,SG 878650368,878651391,AU 878651392,878655487,US 878655488,878656511,JP 878656512,878657023,IE 878657024,878695423,US 878695424,878696447,SG 878696448,878702591,US 878702592,878702847,BR 878702848,878703103,AU 878703104,878703359,SG 878703360,878703615,JP 878703616,878703871,IE 878703872,878704639,US 878704640,878704895,DE 878704896,878705151,CN 878705152,878706431,US 878706432,878706447,BR 878706448,878706463,AU 878706464,878706479,SG 878706480,878706495,JP 878706496,878706511,IE 878706512,878706559,US 878706560,878706575,DE 878706576,878706591,CN 878706592,884998143,US 884998144,885129215,JP 885129216,889192447,US 889192448,905969663,DE 905969664,910163967,US 910163968,910197237,JP 910197238,910197238,US 910197239,910295039,JP 910295040,910360575,AU 910360576,910688255,US 910688256,911147007,IE 911147008,911212543,AU 911212544,911998975,US 911998976,912031743,JP 912031744,912064511,US 912064512,912130047,DE 912130048,912195583,BR 912195584,912261119,JP 912261120,915800063,US 915800064,915865599,JP 915865600,915898367,US 915898368,915931135,SG 915931136,916029439,US 916029440,916062207,AU 916062208,916191009,IE 916191010,916191010,GB 916191011,916193279,IE 916193280,916979711,US 916979712,917045247,JP 917045248,917110783,SG 917110784,917241855,IE 917241856,917635071,US 917635072,917700607,JP 917700608,917766143,SG 917766144,918683647,US 918683648,918814719,IE 918814720,919011327,US 919011328,919076863,JP 919076864,919470079,US 919470080,919535615,AU 919535616,919601151,BR 919601152,920125439,US 920125440,920256511,IE 920256512,920387583,US 920387584,920453119,IE 920453120,920518655,US 920518656,920649727,CN 920649728,920911871,US 920911872,921042943,IE 921042944,921141247,US 921141248,921149439,IE 921149440,921157631,US 921157632,921161727,DE 921161728,921165823,CN 921165824,921167871,JP 921167872,921169919,US 921169920,921170943,SG 921170944,921171967,US 921171968,921173247,AU 921173248,921173503,BR 921173504,921174015,US 921174016,921305087,BR 921305088,921567231,US 921567232,921632767,JP 921632768,921633791,US 921633792,921634815,DE 921634816,921640959,US 921640960,921643007,IE 921643008,921646079,US 921646080,921646591,JP 921646592,921649151,DE 921649152,921657343,US 921657344,921657599,JP 921657600,921658111,US 921658112,921658879,IE 921658880,921661951,US 921661952,921662207,IE 921662208,921747455,US 921747456,921748479,AU 921748480,921748735,US 921748736,921748991,IE 921748992,921749247,US 921749248,921749503,SG 921749504,921749759,JP 921749760,921750271,US 921750272,921751551,AU 921751552,921754623,US 921754624,921755647,IE 921755648,921755903,US 921755904,921756159,JP 921756160,921756671,SG 921756672,921758719,US 921758720,921759999,DE 921760000,921760767,US 921760768,921761791,BR 921761792,922091519,US 922091520,922189311,IE 922189312,922189567,US 922189568,922205775,IE 922205776,922205776,DE 922205777,922222591,IE 922222592,922419199,JP 922419200,922427633,SG 922427634,922427634,US 922427635,922427703,SG 922427704,922427704,US 922427705,922484735,SG 922484736,922615807,AU 922615808,922746879,SG 922746880,956301311,US 956301312,959447039,BE 959447040,959512575,US 959512576,960626687,BE 960626688,960641023,GB 960641024,960641279,BE 960641280,960643330,GB 960643331,960643331,BE 960643332,960644351,GB 960644352,960644863,BE 960644864,960646399,GB 960646400,960646911,BE 960646912,960654335,GB 960654336,960654374,BE 960654375,960654375,GB 960654376,960654591,BE 960654592,960659455,GB 960659456,960662015,DE 960662016,960662271,BE 960662272,960662783,DE 960662784,960663039,FR 960663040,960671487,DE 960671488,960671743,BE 960671744,960676607,DE 960676608,960676863,PL 960676864,960692223,DE 960692224,960724991,FR 960724992,960726783,NL 960726784,960727039,ZA 960727040,960727295,US 960727296,960728319,NL 960728320,960728575,BE 960728576,960729343,NL 960729344,960729599,ZA 960729600,960729855,BE 960729856,960733183,NL 960733184,960741375,BE 960741376,960749567,NL 960749568,960757759,LU 960757760,960888831,US 960888832,960921599,AU 960921600,960929791,NZ 960929792,960933887,KI 960933888,960937983,MH 960937984,960942079,FM 960942080,960946175,NR 960946176,960950271,FJ 960950272,960954367,PW 960954368,960958463,PG 960958464,960962559,WS 960962560,960966655,SB 960966656,960970751,TO 960970752,960974847,TV 960974848,960978943,VU 960978944,960983039,NC 960983040,961019903,BE 961019904,961021439,HK 961021440,961021695,BE 961021696,961021951,HK 961021952,961022079,BE 961022080,961022095,SG 961022096,961022207,BE 961022208,961022719,HK 961022720,961022975,BE 961022976,961025535,HK 961025536,961025791,BE 961025792,961036799,HK 961036800,961037055,BE 961037056,961052671,HK 961052672,961085439,JP 961085440,961087231,SG 961087232,961087487,BE 961087488,961089023,SG 961089024,961089535,BE 961089536,961090047,SG 961090048,961090303,BE 961090304,961091839,SG 961091840,961092095,BE 961092096,961092351,IN 961092352,961092607,BE 961092608,961093887,SG 961093888,961094143,BE 961094144,961118207,SG 961118208,961119487,MY 961119488,961119508,BE 961119509,961119509,MY 961119510,961119743,BE 961119744,961126399,MY 961126400,961134591,TW 961134592,961142783,KR 961142784,961150975,KP 961150976,961183743,BR 961183744,961191935,AR 961191936,961200127,CL 961200128,961208319,CO 961208320,961216511,VE 961216512,961224703,PE 961224704,961228799,EC 961228800,961232895,BO 961232896,961236991,PY 961236992,961241087,BE 961241088,961245183,GF 961245184,961247231,GY 961247232,961249279,SR 961249280,961253375,GT 961253376,961257471,BZ 961257472,961261567,HN 961261568,961265663,NI 961265664,961269759,SV 961269760,961273855,PA 961273856,961277951,CR 961277952,961282047,BE 961282048,961314815,MX 961314816,961380351,US 961380352,961413119,CA 961413120,961445887,IT 961445888,961478655,ES 961478656,961511423,CH 961511424,961519615,PT 961519616,961523711,SE 961523712,961527807,LI 961527808,961531903,MC 961531904,961533951,SM 961533952,961540095,VA 961540096,961542143,AD 961542144,961544191,MC 961544192,961675263,US 961675264,961683455,ZA 961683456,961687551,DZ 961687552,961691647,AO 961691648,961695743,BJ 961695744,961699839,BW 961699840,961703935,BF 961703936,961708031,BI 961708032,961712127,CM 961712128,961716223,CV 961716224,961720319,CF 961720320,961724415,TD 961724416,961740799,ZA 961740800,961781759,BE 961781760,961785855,LS 961785856,961806335,BE 961806336,961810431,MR 961810432,961818623,BE 961818624,961822719,MZ 961822720,961826815,NA 961826816,961830911,NE 961830912,961835007,NG 961835008,961867775,BE 961867776,961871871,TZ 961871872,961892351,BE 961892352,961896447,ZW 961896448,961900543,NG 961900544,961937407,BE 961937408,961945599,IS 961945600,961950463,FI 961950464,961950719,BE 961950720,961953791,FI 961953792,961961983,DK 961961984,961970175,NO 961970176,961971455,SE 961971456,961971711,BE 961971712,962002943,SE 962002944,962035711,RU 962035712,962039807,EE 962039808,962043903,LV 962043904,962047999,LT 962048000,962076671,BE 962076672,962080767,BH 962080768,962084863,BE 962084864,962088959,GE 962088960,962097151,BE 962097152,962101247,IL 962101248,962117631,BE 962117632,962121727,QA 962121728,962134015,BE 962134016,962138111,AE 962138112,962203647,BE 962203648,962207999,AT 962208000,962208255,BE 962208256,962211839,AT 962211840,962215935,BG 962215936,962217983,HR 962217984,962220031,BA 962220032,962224127,CZ 962224128,962228223,GR 962228224,962232319,HU 962232320,962244607,BE 962244608,962248703,RO 962248704,962252799,BE 962252800,962256895,SK 962256896,962260991,SI 962260992,962265087,TR 962265088,962281471,BE 962281472,962285567,DO 962285568,962359295,BE 962359296,962363391,IN 962363392,962367487,ID 962367488,962392063,BE 962392064,962396159,PK 962396160,962400255,PH 962400256,962408447,BE 962408448,962412543,TH 962412544,962416639,UZ 962416640,962461695,BE 962461696,962469887,IE 962469888,962527231,TR 962527232,962592767,BE 962592768,962594815,IN 962594816,962596863,BE 962596864,962598911,SG 962598912,962600959,BE 962600960,962609151,HK 962609152,962613247,JP 962613248,962617343,BE 962617344,962621439,AU 962621440,962674687,BE 962674688,962676735,BR 962676736,962680831,BE 962680832,962689023,US 962689024,962723839,BE 962723840,962732031,GB 962732032,962740223,DE 962740224,962744319,SE 962744320,962748415,BE 962748416,962752511,BH 962752512,962756607,ZA 962756608,968818687,BE 968818688,968819711,DE 968819712,968851455,BE 968851456,968852479,US 968852480,973078527,BE 973078528,973209599,JP 973209600,973275135,IN 973275136,973471743,JP 973471744,973602815,AU 973602816,973864959,TH 973864960,973996031,JP 973996032,974782463,CN 974782464,974880767,MY 974880768,974913535,PK 974913536,974979071,NZ 974979072,975044607,KR 975044608,977272831,CN 977272832,977305599,TH 977305600,977338367,HK 977338368,977346559,SG 977346560,977354751,JP 977354752,977371135,KR 977371136,977395711,PK 977395712,977397759,BD 977397760,977399807,CN 977399808,977401855,ID 977401856,977403903,AU 977403904,977534975,CN 977534976,977567743,IN 977567744,977600511,CN 977600512,977666047,PH 977666048,977731583,JP 977731584,977764351,PH 977764352,977797119,MY 977797120,978321407,KR 978321408,978452479,JP 978452480,978485247,CN 978485248,978501631,TH 978501632,978518015,HK 978518016,978583551,CN 978583552,978584575,VN 978584576,978585599,HK 978585600,978587647,IN 978587648,978588671,MY 978588672,978590719,IN 978590720,978591743,PK 978591744,978592767,BD 978592768,978593791,NZ 978593792,978594815,MY 978594816,978595839,KR 978595840,978596863,NZ 978596864,978597887,HK 978597888,978599935,IN 978599936,978640895,AU 978640896,978644991,NZ 978644992,978714623,JP 978714624,978780159,TW 978780160,978784255,AU 978784256,978788351,JP 978788352,978796543,KR 978796544,978812927,CN 978812928,979369983,JP 979369984,979410943,AU 979410944,979419135,HK 979419136,979435519,AU 979435520,979468287,TH 979468288,979501055,BD 979501056,979566591,JP 979566592,979599359,TW 979599360,979763199,CN 979763200,979894271,KR 979894272,980418559,AU 980418560,980549631,JP 980549632,980680703,TW 980680704,980942847,CN 980942848,981467135,KR 981467136,981991423,CN 981991424,982122495,TH 982122496,982171647,JP 982171648,982188031,KR 982188032,982253567,MY 982253568,982515711,KR 982515712,982581247,CN 982581248,982614015,KR 982614016,982622207,AU 982622208,982624255,JP 982624256,982626303,ID 982626304,982628351,JP 982628352,982630399,BD 982630400,982646783,SG 982646784,982671359,JP 982671360,982679551,IN 982679552,982695935,SG 982695936,982712319,KR 982712320,982745087,TH 982745088,982753279,AF 982753280,982755327,JP 982755328,982757375,BD 982757376,982759423,KR 982759424,982761471,ID 982761472,982777855,JP 982777856,983039999,KR 983040000,983171071,HK 983171072,983302143,CN 983302144,983564287,JP 983564288,984612863,AU 984612864,984743935,HK 984743936,984875007,AU 984875008,984956927,KR 984956928,984965119,AU 984965120,984973311,PK 984973312,985006079,TH 985006080,985071615,SG 985071616,985137151,JP 985137152,985202687,KR 985202688,985268223,SG 985268224,985399295,VN 985399296,985661439,JP 985661440,987758591,CN 987758592,988807167,KR 988807168,989855743,CN 989855744,991952895,KR 991952896,995360767,CN 995360768,995532799,JP 995532800,995540991,AU 995540992,995557375,KR 995557376,995622911,JP 995622912,996409343,IN 996409344,996573183,AU 996573184,996605951,TW 996605952,996671487,PK 996671488,996802559,TW 996802560,996868095,JP 996868096,997195775,CN 997195776,998244351,TW 998244352,999292927,JP 999292928,999423999,IN 999424000,999555071,JP 999555072,999686143,HK 999686144,999751679,KR 999751680,999784447,CN 999784448,999800831,JP 999800832,999817215,KR 999817216,999821311,BD 999821312,999825407,CN 999833600,999837695,CN 999837696,999838719,IN 999839744,999845887,BD 999845888,999847935,CN 999847936,999848959,IN 999848960,999849983,HK 999849984,999866367,KR 999866368,999882751,HK 999882752,999883775,IN 999883776,999884799,CN 999884800,999885823,AU 999885824,999886847,IN 999886848,999887871,BD 999887872,999888895,NZ 999888896,999889407,ID 999889408,999889919,MY 999889920,999890943,BD 999890944,999891967,CN 999891968,999892991,IN 999892992,999895039,JP 999895040,999898111,HK 999898112,999902207,CN 999902208,999903231,SG 999903232,999904255,ID 999904256,999905279,MN 999905280,999906303,MM 999906304,999907327,CN 999907328,999908351,IN 999908352,999909375,BD 999909376,999910399,SG 999910400,999911423,MM 999911424,999912447,MN 999912448,999913471,CN 999913472,999914495,IN 999914496,999915519,AF 999915520,999916543,ID 999916544,999917567,TL 999917568,999918591,CN 999918592,999919615,JP 999919616,999921663,HK 999921664,999923711,CN 999923712,999924735,HK 999924736,999932927,CN 999932928,999933951,HK 999933952,999934975,BD 999934976,999935999,JP 999936000,999937023,TH 999937024,999948287,VN 999948288,1000013823,AU 1000013824,1000079359,CN 1000079360,1000341503,JP 1000341504,1000734719,IN 1000734720,1000800255,JP 1000800256,1000865791,AU 1000865792,1001127935,JP 1001127936,1001390079,CN 1001390080,1002045439,IN 1002045440,1002176511,KR 1002176512,1002242047,HK 1002242048,1002307583,SG 1002307584,1002373119,JP 1002373120,1002405887,CN 1002405888,1002422271,JP 1002422272,1002434559,AU 1002434560,1002438399,CN 1002438400,1002438655,HK 1002438656,1008730111,CN 1008730112,1009778687,JP 1009778688,1010237439,MY 1010237440,1010302975,CN 1010302976,1010761727,JP 1010761728,1010827263,CN 1010827264,1017118719,JP 1017118720,1019215871,CN 1019215872,1019346943,JP 1019346944,1019478015,CN 1019478016,1019609087,KR 1019609088,1019740159,TW 1019740160,1021313023,CN 1021313024,1021837311,AU 1021837312,1021968383,CN 1021968384,1022033919,NZ 1022033920,1022099455,CN 1022099456,1022361599,JP 1022361600,1022558207,AU 1022558208,1022623743,IN 1022623744,1022722047,TW 1022722048,1022754815,CN 1022754816,1022820351,MO 1022820352,1022885887,CN 1022885888,1023148031,TW 1023148032,1023213567,CN 1023213568,1023238143,KR 1023238144,1023246335,ID 1023246336,1023279103,CN 1023279104,1023311871,IN 1023311872,1023315711,US 1023315712,1023315967,AU 1023315968,1023317503,US 1023317504,1023318015,IN 1023318016,1023328255,US 1023328256,1023344639,JP 1023344640,1023410175,CN 1023410176,1023672319,IN 1023672320,1023688703,HK 1023688704,1023692799,MM 1023692800,1023696895,CN 1023696896,1023705087,MY 1023705088,1023717375,JP 1023717376,1023721471,CN 1023721472,1023737855,KR 1023737856,1023770623,ID 1023770624,1023778815,PK 1023778816,1023787007,KR 1023787008,1023791103,AF 1023791104,1023795199,NC 1023795200,1023803391,JP 1023803392,1023852543,MY 1023852544,1023868927,BN 1023868928,1023901695,JP 1023901696,1023934463,TH 1023934464,1023942719,AU 1023942720,1023942751,MY 1023942752,1023946879,AU 1023946880,1023946911,SG 1023946912,1023950847,AU 1023950848,1023954943,ID 1023954944,1023959039,JP 1023959040,1023967231,AU 1023967232,1023975423,IN 1023975424,1023979519,CN 1023979520,1023983615,AU 1023983616,1023996927,SG 1023996928,1023997183,AU 1023997184,1023999999,SG 1024000000,1024032767,PH 1024032768,1024065535,AU 1024065536,1024131071,HK 1024131072,1024163839,IN 1024163840,1024184319,JP 1024184320,1024188415,MY 1024188416,1024196607,VN 1024196608,1024229375,IN 1024229376,1024262143,JP 1024262144,1024327679,SG 1024327680,1024327935,US 1024327936,1024327943,AU 1024327944,1024339967,US 1024339968,1024340991,ZA 1024340992,1024344063,US 1024344064,1024352255,SG 1024352256,1024360447,AU 1024360448,1024361167,JP 1024361168,1024361183,HK 1024361184,1024363519,JP 1024363520,1024363775,AU 1024363776,1024364063,JP 1024364064,1024364079,AU 1024364080,1024365727,JP 1024365728,1024365759,SG 1024365760,1024371199,JP 1024371200,1024371455,PH 1024371456,1024372543,JP 1024372544,1024372639,HK 1024372640,1024373263,JP 1024373264,1024373279,HK 1024373280,1024375551,JP 1024375552,1024375807,AU 1024375808,1024376831,JP 1024376832,1024378879,PH 1024378880,1024380927,IN 1024380928,1024381951,KR 1024381952,1024385023,CN 1024393216,1024458751,HK 1024458752,1024491519,SG 1024491520,1024589823,IN 1024589824,1024655359,HK 1024655360,1024720895,TH 1024720896,1024786431,TW 1024786432,1025245183,JP 1025245184,1025277951,CN 1025277952,1025294335,PH 1025294336,1025294591,JP 1025294592,1025294847,HK 1025294848,1025295103,TH 1025295104,1025295615,CN 1025295616,1025295616,PH 1025295617,1025295739,MY 1025295740,1025295742,PH 1025295743,1025295871,MY 1025295872,1025296127,GB 1025296128,1025296639,FR 1025296640,1025296895,MY 1025296896,1025297407,SG 1025297408,1025297919,AU 1025297920,1025298175,NZ 1025298176,1025298943,AU 1025298944,1025299199,AE 1025299200,1025300223,AU 1025300224,1025300479,SA 1025300480,1025300735,AE 1025300736,1025301247,US 1025301248,1025302527,AU 1025302528,1025310719,VN 1025310720,1025343487,AU 1025343488,1025376255,CN 1025376256,1025507327,TW 1025507328,1026293759,KR 1026293760,1026311423,JP 1026311424,1026311530,US 1026311531,1026311531,JP 1026311532,1026311679,US 1026311680,1026392063,JP 1026392064,1026408447,CN 1026408448,1026416639,JP 1026416640,1026420735,CN 1026420736,1026422783,JP 1026422784,1026424831,AU 1026424832,1026490367,JP 1026490368,1026523135,TH 1026523136,1026539519,CN 1026539520,1026555903,KR 1026555904,1027080191,CN 1027080192,1027866623,TW 1027866624,1027997695,AU 1027997696,1028128767,TW 1028128768,1029046271,KR 1029046272,1029148671,JP 1029148672,1029152767,HK 1029152768,1029156863,SG 1029156864,1029160959,AU 1029160960,1029177343,CN 1029177344,1029242879,AU 1029242880,1029308415,JP 1029308416,1029439487,TH 1029439488,1029570559,HK 1029570560,1029636095,ID 1029636096,1029668863,AU 1029668864,1029701631,IN 1029701632,1030674431,KR 1030674432,1030676479,JP 1030676480,1030750207,KR 1030750208,1031798783,JP 1031798784,1035993087,CN 1035993088,1037565951,JP 1037565952,1038614527,TW 1038614528,1039007743,CN 1039007744,1039138815,HK 1039138816,1039400959,CN 1039400960,1039466495,HK 1039466496,1039499263,JP 1039499264,1039507455,AU 1039507456,1039511551,LK 1039511552,1039515647,KR 1039515648,1039523839,JP 1039523840,1039532031,KR 1039532032,1039597567,IN 1039597568,1039613951,ID 1039613952,1039638527,KR 1039638528,1039642623,TW 1039642624,1039646719,BD 1039646720,1039654911,KR 1039654912,1039663103,IN 1039663104,1040187391,KR 1040187392,1040252927,IL 1040252928,1040318463,GR 1040318464,1040383999,CH 1040384000,1040392191,SA 1040392192,1040392447,GB 1040392448,1040400383,SA 1040400384,1040416767,GB 1040416768,1040424959,SE 1040424960,1040433151,PL 1040433152,1040449535,GB 1040449536,1040457727,FR 1040457728,1040465919,ME 1040473344,1040473599,DE 1040474112,1040482303,CZ 1040482304,1040515071,BE 1040515072,1040547839,GB 1040547840,1040580607,RU 1040580608,1040711679,GB 1040711680,1040719871,FR 1040719872,1040728063,DE 1040728064,1040736255,KE 1040736256,1040744447,GB 1040744448,1040777215,DE 1040777216,1040842751,IE 1040842752,1040973823,IT 1040973824,1040982015,NL 1040982016,1040982527,DK 1040982528,1040982783,FI 1040982784,1040983551,DK 1040983552,1040983807,FO 1040983808,1040990207,DK 1040990208,1040998399,CY 1040998400,1041006591,EG 1041006592,1041039359,CH 1041039360,1041072127,SE 1041072128,1041080319,GB 1041080320,1041088511,IT 1041088512,1041096703,AT 1041096704,1041235967,ES 1041235968,1041244159,UA 1041244160,1041268735,RU 1041268736,1041301503,NO 1041301504,1041310975,IE 1041310976,1041311231,GB 1041311232,1041338879,IE 1041338880,1041339135,GB 1041339136,1041367039,IE 1041367040,1041498111,IT 1041498112,1041523967,SE 1041523968,1041524223,DK 1041524224,1041563647,SE 1041563648,1041596415,PL 1041596416,1041629183,NL 1041629184,1041694719,ES 1041694720,1041748991,FR 1041748992,1041749247,GB 1041749248,1041760255,FR 1041760256,1041768447,DE 1041768448,1041776639,NO 1041776640,1041784831,CZ 1041784832,1041793023,KE 1041793024,1041825791,GB 1041825792,1041842175,NL 1041842176,1041858559,GB 1041858560,1041862655,HK 1041862656,1041866751,SG 1041866752,1041870847,JP 1041870848,1041891327,GB 1041891328,1042022399,DE 1042022400,1042087935,PT 1042087936,1042120703,TR 1042120704,1042153471,PL 1042153472,1042284543,GB 1042284544,1042292735,CH 1042292736,1042294527,NL 1042294528,1042294783,GB 1042294784,1042295551,NL 1042295552,1042296575,GE 1042296576,1042300903,NL 1042300904,1042300911,UA 1042300912,1042300927,NL 1042300928,1042309119,RU 1042309120,1042317311,GB 1042317312,1042350079,ES 1042350080,1042415615,RU 1042415616,1042546687,FR 1042546688,1042677759,ES 1042677760,1042743295,GR 1042743296,1042808831,FR 1042808832,1042817023,DE 1042817024,1042825215,IE 1042825216,1042833407,CZ 1042833408,1042834025,GB 1042834026,1042834026,PT 1042834027,1042840673,GB 1042840674,1042840674,PT 1042840675,1042841599,GB 1042841600,1042874367,AT 1042874368,1042875135,NL 1042875136,1042875391,FR 1042875392,1042879999,NL 1042880000,1042880007,GB 1042880008,1042881023,NL 1042881024,1042881535,DE 1042881536,1042939903,NL 1042939904,1043070975,ES 1043070976,1043079167,CZ 1043079168,1043087359,DE 1043087360,1043095551,GB 1043095552,1043103743,BG 1043103744,1043120127,DK 1043120128,1043136511,FI 1043136512,1043202047,NL 1043202048,1043333119,AT 1043333120,1043341311,CH 1043341312,1043349503,IT 1043349504,1043357695,DE 1043357696,1043365887,CH 1043365888,1043398655,PT 1043398656,1043465839,GB 1043465840,1043465847,NL 1043465848,1043470127,GB 1043470128,1043470223,NL 1043470224,1043475871,GB 1043475872,1043475887,DE 1043475888,1043476111,GB 1043476112,1043476127,DE 1043476128,1043476383,GB 1043476384,1043476399,DE 1043476400,1043476431,GB 1043476432,1043476447,DE 1043476448,1043488767,GB 1043488768,1043496959,DE 1043496960,1043505151,GB 1043505152,1043513343,NO 1043513344,1043529727,GB 1043529728,1043595263,NL 1043595264,1043661567,DE 1043661568,1043661823,GB 1043661824,1043857407,DE 1043857408,1043897343,GB 1043897344,1043897855,NG 1043897856,1043919442,GB 1043919443,1043919443,SS 1043919444,1043921919,GB 1043921920,1043922943,IL 1043922944,1043988479,ES 1043988480,1044118295,NL 1044118296,1044118303,BE 1044118304,1044118423,NL 1044118424,1044118431,BE 1044118432,1044118439,NL 1044118440,1044118447,BE 1044118448,1044119551,NL 1044119552,1044152319,GB 1044152320,1044185087,IR 1044185088,1044193279,RU 1044193280,1044201471,PL 1044201472,1044217855,FI 1044217856,1044226047,DK 1044226048,1044234239,OM 1044234240,1044250623,RE 1044283392,1044316159,FR 1044316160,1044332543,NO 1044332544,1044348927,RU 1044348928,1044365311,LV 1044365312,1044381695,SE 1044381696,1044389887,RU 1044389888,1044398079,FR 1044398080,1044414463,UA 1044414464,1044447231,GB 1044447232,1044453233,SE 1044453234,1044453234,NO 1044453235,1044455168,SE 1044455169,1044455169,NO 1044455170,1044455423,SE 1044455424,1044463615,EE 1044463616,1044479999,SE 1044480000,1044488191,CH 1044488192,1044496383,SK 1044496384,1044512767,EE 1044512768,1044578303,DK 1044578304,1044578623,GB 1044578624,1044578639,DE 1044578640,1044589055,GB 1044589056,1044589311,DE 1044589312,1044592895,GB 1044592896,1044593151,DE 1044593152,1044625631,GB 1044625632,1044625647,RS 1044625648,1044636671,GB 1044636672,1044637695,DE 1044637696,1044638463,GB 1044638464,1044638719,DE 1044638720,1044640767,GB 1044640768,1044642815,DE 1044642816,1044643839,GB 1044643840,1044652031,DE 1044652032,1044660223,LY 1044660224,1044668415,GR 1044668416,1044676607,BA 1044676608,1044684799,RU 1044684800,1044692991,HU 1044692992,1044697087,AT 1044697088,1044697343,DE 1044697344,1044698111,AT 1044698112,1044698367,DE 1044698368,1044698623,AT 1044698624,1044699135,DE 1044699136,1044701183,AT 1044701184,1044709375,EG 1044709376,1044717567,RU 1044717568,1044742143,GB 1044742144,1044744191,IT 1044744192,1044746239,GB 1044746240,1044748287,DE 1044748288,1044750335,DK 1044750336,1044758527,NL 1044758528,1044774911,PL 1044774912,1044840447,NO 1044840448,1044905983,FI 1044905984,1044908031,GB 1044908032,1044909055,US 1044909056,1044916735,GB 1044916736,1044917263,DE 1044917264,1044917279,GB 1044917280,1044920319,DE 1044920320,1044921343,GB 1044921344,1044922367,US 1044922368,1044930559,DE 1044930560,1044931231,GB 1044931232,1044931239,BE 1044931240,1044933499,GB 1044933500,1044933503,BE 1044933504,1044933887,GB 1044933888,1044934143,BE 1044934144,1044935439,GB 1044935440,1044935455,BE 1044935456,1044935663,GB 1044935664,1044935671,BE 1044935672,1044935759,GB 1044935760,1044935775,BE 1044935776,1044936115,GB 1044936116,1044936119,BE 1044936120,1044936487,GB 1044936488,1044936495,BE 1044936496,1044936735,GB 1044936736,1044936743,BE 1044936744,1044937247,GB 1044937248,1044937255,BE 1044937256,1044938503,GB 1044938504,1044938511,LU 1044938512,1044946943,GB 1044946944,1044955135,UA 1044955136,1044963327,NL 1044963328,1044971519,FI 1044971520,1044979711,FR 1044979712,1044987903,FI 1044987904,1045004287,BG 1045004288,1045018623,GB 1045018624,1045018751,ES 1045018752,1045018787,GB 1045018788,1045018799,ES 1045018800,1045020671,GB 1045020672,1045037055,NO 1045037056,1045038271,GR 1045038272,1045038335,AU 1045038336,1045135359,GR 1045135360,1045152603,DE 1045152604,1045152606,SG 1045152607,1045154629,DE 1045154630,1045154630,SG 1045154631,1045158306,DE 1045158307,1045158307,SG 1045158308,1045168127,DE 1045168128,1045171199,RU 1045171200,1045171455,UA 1045171456,1045233663,RU 1045233664,1045241855,GB 1045241856,1045250047,IT 1045250048,1045266431,CZ 1045266432,1045274623,HU 1045274624,1045282815,IE 1045282816,1045299199,HU 1045299200,1045307391,US 1045307392,1045315583,RU 1045315584,1045319679,DE 1045319680,1045323775,RU 1045323776,1045364735,FI 1045364736,1045430271,DK 1045430272,1045446655,DE 1045446656,1045454847,SK 1045454848,1045460991,DE 1045460992,1045461503,FR 1045461504,1045461631,DE 1045461632,1045461695,FR 1045461696,1045463039,DE 1045463040,1045471231,FI 1045471232,1045479423,UA 1045479424,1045487615,SE 1045487616,1045495807,LT 1045495808,1045692415,ES 1045692416,1045700607,LV 1045700608,1045708799,KZ 1045708800,1045716991,LB 1045716992,1045725183,RU 1045725184,1045733375,CZ 1045733376,1045745407,GB 1045745408,1045745663,SE 1045745664,1045748319,GB 1045748320,1045748351,SE 1045748352,1045749759,GB 1045749760,1045753855,SI 1045753856,1045755903,NL 1045755904,1045757951,UA 1045757952,1045790719,LV 1045790720,1045798911,FR 1045798912,1045889023,IT 1045889024,1045921791,ES 1045921792,1045954559,PL 1045954560,1045987327,BE 1045987328,1046020095,SE 1046020096,1046028287,AM 1046028288,1046036479,NO 1046036480,1046052863,PL 1046052864,1046061055,GB 1046061056,1046069247,DE 1046069248,1046085631,RU 1046085632,1046151167,IL 1046151168,1046216703,DE 1046216704,1046225647,NO 1046225648,1046225655,SE 1046225656,1046282239,NO 1046282240,1046289407,DE 1046289408,1046290431,AG 1046290432,1046298623,PL 1046298624,1046315007,AT 1046315008,1046316031,FR 1046316032,1046319103,GB 1046319104,1046320127,NL 1046320128,1046321151,GB 1046321152,1046323199,NL 1046323200,1046331391,ES 1046347776,1046413311,IT 1046413312,1046446079,SE 1046446080,1046478879,DE 1046478880,1046479839,GB 1046479840,1046479871,DE 1046479872,1046480511,GB 1046480512,1046480543,DE 1046480544,1046481919,GB 1046481920,1046481927,DE 1046481928,1046483199,GB 1046483200,1046483231,DE 1046483232,1046484479,GB 1046484480,1046484511,DE 1046484512,1046485303,GB 1046485304,1046485311,DE 1046485312,1046485903,GB 1046485904,1046485911,DE 1046485912,1046487289,GB 1046487290,1046487290,DE 1046487291,1046488319,GB 1046488320,1046488575,DE 1046488576,1046489087,GB 1046489088,1046489218,DE 1046489219,1046489219,GB 1046489220,1046489311,DE 1046489312,1046489327,ES 1046489328,1046489343,DE 1046489344,1046489391,GB 1046489392,1046489407,IT 1046489408,1046489471,GB 1046489472,1046489487,ES 1046489488,1046489503,GB 1046489504,1046489519,DE 1046489520,1046492471,GB 1046492472,1046492479,DE 1046492480,1046492719,GB 1046492720,1046492727,DE 1046492728,1046493015,GB 1046493016,1046493023,DE 1046493024,1046493039,GB 1046493040,1046493047,DE 1046493048,1046493063,GB 1046493064,1046493071,DE 1046493072,1046493983,GB 1046493984,1046493999,DE 1046494000,1046494191,GB 1046494192,1046494199,DE 1046494200,1046495127,GB 1046495128,1046495135,DE 1046495136,1046495415,GB 1046495416,1046495423,DE 1046495424,1046495607,GB 1046495608,1046495615,DE 1046495616,1046495719,GB 1046495720,1046495727,DE 1046495728,1046495767,GB 1046495768,1046495775,DE 1046495776,1046495911,GB 1046495912,1046495919,DE 1046495920,1046495983,GB 1046495984,1046495991,DE 1046495992,1046497807,GB 1046497808,1046497815,DE 1046497816,1046498135,GB 1046498136,1046498143,DE 1046498144,1046498215,GB 1046498216,1046498223,DE 1046498224,1046498303,GB 1046498304,1046498319,DE 1046498320,1046498687,GB 1046498688,1046498695,DE 1046498696,1046498799,GB 1046498800,1046498807,DE 1046498808,1046502106,GB 1046502107,1046502107,DE 1046502108,1046503095,GB 1046503096,1046503103,DE 1046503104,1046504447,GB 1046504448,1046508543,DE 1046508544,1046511815,GB 1046511816,1046511823,DE 1046511824,1046512583,GB 1046512584,1046512599,DE 1046512600,1046514687,GB 1046514688,1046515711,DE 1046515712,1046518783,GB 1046518784,1046519807,DE 1046519808,1046524215,GB 1046524216,1046524223,DE 1046524224,1046524615,GB 1046524616,1046524623,DE 1046524624,1046525351,GB 1046525352,1046525359,DE 1046525360,1046525439,GB 1046525440,1046525695,DE 1046525696,1046529023,GB 1046529024,1046530047,DE 1046530048,1046530973,GB 1046530974,1046530974,DE 1046530975,1046531071,GB 1046531072,1046531327,DE 1046531328,1046531839,GB 1046531840,1046532095,DE 1046532096,1046533375,GB 1046533376,1046533383,DE 1046533384,1046533537,GB 1046533538,1046533538,DE 1046533539,1046533887,GB 1046533888,1046534143,DE 1046534144,1046535295,GB 1046535296,1046535311,DE 1046535312,1046535439,GB 1046535440,1046535447,DE 1046535448,1046537023,GB 1046537024,1046537039,DE 1046537040,1046543209,GB 1046543210,1046543210,DE 1046543211,1046543343,GB 1046543344,1046543359,DE 1046543360,1046544383,GB 1046544384,1046560767,IT 1046560768,1046585343,ES 1046585344,1046609919,NO 1046609920,1046675455,IT 1046675456,1046708223,ES 1046708224,1046740991,AT 1046740992,1046757375,NL 1046757376,1046765567,IT 1046765568,1046773759,ES 1046773760,1046781951,FR 1046781952,1046790143,GB 1046790144,1046792191,CN 1046792192,1046798335,GB 1046798336,1046806527,HU 1046806528,1046814719,IT 1046814720,1046822911,SE 1046822912,1046839295,IT 1046839296,1046847487,BA 1046847488,1046855679,ES 1046855680,1046872063,NO 1046898944,1046899199,GB 1046904832,1046908927,IR 1046908928,1046910975,SE 1046910976,1046913023,IT 1046913024,1046921215,NO 1046921216,1046929407,DE 1046929408,1046937599,FR 1046937600,1047003135,GR 1047003136,1047068671,DE 1047068672,1047085055,RU 1047085056,1047101439,GB 1047101440,1047109631,RU 1047109632,1047117823,GB 1047117824,1047134207,NL 1047134208,1047150591,FI 1047150592,1047158783,FR 1047158784,1047166975,RU 1047166976,1047199743,FR 1047199744,1047265279,DK 1047265280,1047273471,NL 1047273472,1047281663,DE 1047281664,1047289855,TR 1047289856,1047298047,RS 1047298048,1047306239,CH 1047306240,1047314431,PL 1047314432,1047322623,SE 1047322624,1047330815,IT 1047330816,1047339007,RU 1047339008,1047340863,SE 1047340864,1047340927,NO 1047340928,1047342879,SE 1047342880,1047342887,FI 1047342888,1047347199,SE 1047347200,1047363583,DE 1047363584,1047371775,CZ 1047371776,1047373559,RU 1047373560,1047373567,FI 1047373568,1047379967,RU 1047379968,1047396351,NL 1047396352,1047461887,IT 1047461888,1047494655,DE 1047494656,1047527423,PL 1047527424,1047535615,BE 1047535616,1047551999,DE 1047552000,1047560191,RU 1047560192,1047568383,DE 1047568384,1047576575,NL 1047576576,1047584767,HU 1047584768,1047592959,NL 1047592960,1047601151,BA 1047601152,1047625727,RU 1047625728,1047633919,NO 1047633920,1047642111,FI 1047642112,1047658495,DE 1047658496,1047724031,EG 1047728128,1047732223,SE 1047740544,1047740671,DE 1047781856,1047781871,DE 1047782690,1047782690,GB 1047787520,1047787775,ES 1047788288,1047788543,NL 1047788544,1047789055,GB 1047789568,1047822335,AT 1047822336,1047838719,DE 1047838720,1047846911,DK 1047846912,1047855103,SE 1047855104,1047863295,DE 1047863296,1047871487,EG 1047871488,1047887871,RU 1047887872,1047920639,ES 1047920640,1047986175,RU 1047986176,1048051711,SE 1048051712,1048117247,SA 1048117248,1048125439,GB 1048125440,1048133631,FI 1048133632,1048150015,RO 1048150016,1048158207,PL 1048158208,1048166399,DK 1048166400,1048182783,CH 1048182784,1048184831,UA 1048184832,1048186879,FR 1048186880,1048188927,LV 1048193024,1048195071,RO 1048195072,1048197119,RU 1048197120,1048201215,UA 1048203264,1048205311,DE 1048205312,1048209407,RU 1048209408,1048211455,UA 1048211456,1048215551,PL 1048215552,1048221695,RU 1048221696,1048223743,UA 1048223744,1048225791,DK 1048225792,1048227839,CZ 1048227840,1048233983,RU 1048233984,1048236031,UA 1048236032,1048238079,RU 1048242176,1048244223,PL 1048244224,1048246271,RU 1048246272,1048248319,NO 1048248320,1048313855,IT 1048313856,1048510463,GB 1048510464,1048536319,SE 1048536320,1048536575,FI 1048536576,1048575999,SE 1048576000,1048584191,DE 1048584192,1048592383,IL 1048592384,1048600575,IT 1048600576,1048602111,UA 1048602112,1048602623,PL 1048602624,1048603135,RU 1048603136,1048603391,UA 1048603392,1048603647,LV 1048603648,1048608767,UA 1048608768,1048616959,GB 1048616960,1048617215,DE 1048617216,1048618751,KE 1048618752,1048619007,DE 1048619008,1048621055,KE 1048621056,1048625151,DE 1048625152,1048633343,GB 1048633344,1048641535,NO 1048641536,1048649727,FR 1048649728,1048657919,CZ 1048657920,1048674303,GB 1048674304,1048682495,NL 1048682496,1048690687,FR 1048690688,1048707071,PL 1048707072,1048772607,GB 1048772608,1048903679,NL 1048903680,1048911871,GB 1048920064,1048936447,NL 1048936448,1048944639,PL 1048944640,1048952831,RU 1048952832,1048969215,NL 1048979712,1048980223,DE 1049006080,1049006335,DE 1049008128,1049009151,DE 1049016320,1049018367,DE 1049018624,1049020671,DE 1049020672,1049020927,GB 1049020928,1049022463,DE 1049026816,1049029375,DE 1049030656,1049031679,DE 1049031744,1049031871,DE 1049032094,1049032094,DE 1049034752,1049067519,EG 1049067520,1049100287,DK 1049100288,1049231359,GB 1049231360,1049296895,DE 1049296896,1049362431,EG 1049362432,1049366527,GB 1049366528,1049368575,DE 1049368576,1049368656,GB 1049368657,1049368657,DE 1049368658,1049369983,GB 1049369984,1049370047,DE 1049370048,1049370623,GB 1049370624,1049378815,AT 1049378816,1049395199,EG 1049395200,1049411583,NL 1049411584,1049419775,GB 1049419776,1049427967,RU 1049427968,1049436159,CZ 1049436160,1049444351,DE 1049444352,1049460735,RU 1049460736,1049468927,NO 1049468928,1049477119,DE 1049477120,1049493503,PL 1049493504,1049559039,FI 1049559040,1049698303,DE 1049698304,1049700351,NL 1049700352,1049702399,DE 1049702400,1049706495,NL 1049706496,1049716735,GB 1049716736,1049717759,IQ 1049717760,1049722879,GB 1049722880,1049731071,IS 1049731072,1049739263,FI 1049739264,1049755647,NL 1049755648,1049794559,DE 1049794560,1049795583,CH 1049795584,1049821183,DE 1049821184,1049886719,FR 1049886720,1049894911,RU 1049894912,1049903103,NO 1049903104,1049911295,PL 1049911296,1049919487,FI 1049919488,1049927679,RU 1049927680,1049935871,NL 1049935872,1049944063,FI 1049944064,1049952255,RU 1049952256,1049960447,UA 1049960448,1049968639,GB 1049968640,1049985023,SA 1049985024,1050017791,IT 1050017792,1050083327,KW 1050083328,1050148863,ES 1050148864,1050157055,CY 1050157056,1050173439,RU 1050173440,1050181631,IT 1050181632,1050189823,PL 1050189824,1050198015,DE 1050198016,1050206207,RU 1050206208,1050214399,SK 1050214400,1050470911,DE 1050470912,1050471031,GB 1050471032,1050471039,DE 1050471040,1050471167,GB 1050471168,1050673151,DE 1050673152,1050804223,FR 1050804224,1050869759,MK 1050869760,1050935295,NL 1050968064,1051000831,GB 1051000832,1051017215,RU 1051017216,1051033599,NL 1051033600,1051049983,FI 1051049984,1051066367,HU 1051066368,1051115519,NL 1051115520,1051117055,BE 1051117056,1051117567,NL 1051117568,1051123711,BE 1051123712,1051125471,NL 1051125472,1051125479,BE 1051125480,1051131903,NL 1051131904,1051197439,CH 1051197440,1051213823,CZ 1051213824,1051230207,SK 1051230208,1051238399,SE 1051238400,1051246591,GE 1051246592,1051254783,DE 1051254784,1051262975,RU 1051262976,1051271167,DE 1051271168,1051279359,IT 1051279360,1051295743,PT 1051295744,1051303935,GB 1051303936,1051312127,SK 1051312128,1051328511,GR 1051328512,1051525119,GB 1051525120,1051533311,MT 1051533312,1051541503,NG 1051541504,1051557887,GB 1051557888,1051566079,RU 1051566080,1051574271,IT 1051574272,1051590655,GB 1051590656,1051721727,ES 1051721728,1051729919,RU 1051729920,1051738111,FI 1051738112,1051754495,BG 1051754496,1051762687,DE 1051762688,1051770879,SK 1051770880,1051779071,NO 1051779072,1051787263,DE 1051787264,1051795455,IT 1051795456,1051803647,RU 1051803648,1051820031,CZ 1051820032,1051852799,NL 1051852800,1051918335,AT 1051918336,1051922431,PL 1051922432,1051924479,CH 1051924480,1051948031,AT 1051948032,1051949055,CH 1051949056,1051951103,AT 1051951104,1051983871,NL 1051990016,1051991039,DE 1052001280,1052002303,DE 1052003584,1052003839,DE 1052011264,1052012031,DE 1052017536,1052017567,DE 1052045312,1052046079,DE 1052049408,1052057599,PL 1052057600,1052065791,RU 1052065792,1052076031,SE 1052076032,1052077055,NL 1052077056,1052081151,SE 1052081152,1052082175,NL 1052082176,1052090367,DE 1052090368,1052098559,PL 1052098560,1052116991,SE 1052116992,1052119039,RU 1052119040,1052121087,GB 1052121088,1052125183,RU 1052127232,1052129279,RU 1052129280,1052131327,BE 1052131328,1052133375,UA 1052133376,1052135423,RU 1052135424,1052137471,UA 1052137472,1052139519,RU 1052141056,1052141567,DE 1052141568,1052143615,PL 1052143616,1052145663,BG 1052145664,1052147711,UA 1052147712,1052151807,RU 1052151808,1052153855,PL 1052153856,1052157951,UA 1052157952,1052159999,DK 1052160000,1052160703,LU 1052160704,1052161215,BE 1052161216,1052162047,LU 1052162048,1052164095,CH 1052164096,1052168191,RU 1052168192,1052170239,PL 1052170240,1052172287,SE 1052172288,1052174335,PL 1052174336,1052176383,CZ 1052176384,1052178431,GB 1052178432,1052180479,DK 1052180480,1052213247,RU 1052213248,1052246015,FI 1052259328,1052260351,FR 1052279808,1052282879,GB 1052284928,1052286975,GB 1052293120,1052298239,GB 1052303360,1052305407,DE 1052306432,1052307455,DE 1052309504,1052310527,CH 1052313600,1052314623,DE 1052317312,1052317343,DE 1052325888,1052327935,GB 1052328960,1052329983,CH 1052338176,1052339199,FR 1052340608,1052340671,HU 1052347392,1052348415,CH 1052350464,1052352511,GB 1052354560,1052356607,GB 1052358432,1052358463,ZA 1052366848,1052367871,BE 1052369888,1052369919,CZ 1052374016,1052375039,CH 1052378944,1052378959,DE 1052387328,1052388351,GB 1052397312,1052397439,HU 1052405248,1052405503,FR 1052405760,1052406783,AT 1052407856,1052407871,ZA 1052421120,1052422143,GB 1052425216,1052426239,ZA 1052431104,1052432127,BE 1052433712,1052433719,DK 1052449360,1052449375,ZA 1052450768,1052450783,ZA 1052481536,1052482559,NL 1052485376,1052485631,IT 1052487680,1052488703,CH 1052488704,1052489727,GB 1052494336,1052494591,NL 1052498432,1052498463,RO 1052508160,1052596479,GB 1052596480,1052596735,NL 1052596736,1052704767,GB 1052704768,1052712959,NL 1052712960,1052770303,GB 1052770304,1052778495,CH 1052778496,1052786687,RU 1052786688,1052789759,GR 1052789760,1052803071,NL 1052803072,1052811263,DE 1052811264,1052819455,RU 1052819456,1052827647,DE 1052827648,1052835839,RU 1052835840,1052844031,IR 1052844032,1052852223,FR 1052852224,1052868607,EG 1052868608,1052876799,RS 1052876800,1052884991,NG 1052884992,1052901375,FR 1052901376,1053032447,NL 1053032448,1053097983,IT 1053097984,1053106175,DE 1053106176,1053114367,GB 1053114368,1053130751,BE 1053130752,1053138943,NL 1053138944,1053147135,FI 1053147136,1053163519,SK 1053163520,1053294591,DK 1053294616,1053294623,AT 1053294656,1053294679,AT 1053295104,1053296639,AT 1053297152,1053297663,IT 1053301056,1053301071,FR 1053312872,1053312887,DK 1053312912,1053312927,DK 1053313280,1053313535,GB 1053318912,1053318943,FI 1053320224,1053320239,DE 1053325824,1053326335,DE 1053326504,1053326527,BE 1053326544,1053326551,BE 1053329440,1053329471,ES 1053329516,1053329535,ES 1053332992,1053334015,BE 1053335552,1053336575,ZA 1053339904,1053340159,AT 1053349376,1053349631,NL 1053349952,1053349967,IE 1053352960,1053353215,IE 1053353408,1053353423,GB 1053353984,1053354239,IL 1053354912,1053355007,IL 1053360128,1053364223,ES 1053364224,1053368319,CZ 1053368320,1053376511,SE 1053376512,1053392895,HU 1053392896,1053401087,FR 1053401088,1053409279,DE 1053409280,1053425663,IQ 1053425664,1053556735,CH 1053556736,1053564927,FI 1053564928,1053573119,GB 1053573120,1053581311,NL 1053581312,1053589503,CH 1053589504,1053597695,BG 1053597696,1053605887,DE 1053605888,1053614079,ES 1053614080,1053622271,CZ 1053622272,1053630463,IT 1053630464,1053638655,GR 1053638656,1053655039,BE 1053655040,1053663231,UA 1053663232,1053671423,RU 1053671424,1053687807,LV 1053687808,1053753343,DE 1053753344,1053818879,NL 1053818880,1053819391,DE 1053819424,1053819439,DE 1053819520,1053819563,DE 1053819584,1053819647,DE 1053820160,1053820927,DE 1053821440,1053821447,GB 1053821568,1053821695,GB 1053824000,1053824007,DE 1053824016,1053824023,DE 1053824064,1053824095,DE 1053824128,1053824255,NL 1053825024,1053825791,ES 1053825792,1053825919,GB 1053825920,1053826047,ES 1053826816,1053827327,DE 1053827328,1053827583,BE 1053828096,1053829119,GB 1053829888,1053830143,DE 1053831168,1053831423,DE 1053834944,1053834975,DE 1053835264,1053835775,DE 1053837312,1053837439,FK 1053837440,1053837455,GB 1053837568,1053837823,GB 1053837824,1053838335,FK 1053838336,1053838591,DE 1053839360,1053840383,DE 1053840400,1053840415,DE 1053840448,1053840511,DE 1053843200,1053843231,DK 1053843232,1053843455,GB 1053843712,1053843967,DE 1053843968,1053844223,GB 1053844224,1053844479,DE 1053844992,1053845503,DE 1053845728,1053845735,DE 1053846016,1053846527,DE 1053846784,1053847551,DE 1053847552,1053849599,GB 1053849600,1053850367,DE 1053851136,1053851647,DE 1053851904,1053851919,FR 1053852032,1053852047,IT 1053852112,1053852127,GB 1053852128,1053852159,DE 1053855744,1053859839,GB 1053859840,1053860863,DE 1053862656,1053862783,DE 1053862848,1053862879,DE 1053863424,1053864959,DE 1053865216,1053865727,DE 1053865728,1053865759,US 1053865984,1053866239,DE 1053866240,1053866495,ES 1053866496,1053866823,DE 1053866832,1053866847,DE 1053867520,1053867775,DE 1053867976,1053867983,DE 1053867992,1053867999,DE 1053868008,1053868015,DE 1053868032,1053868351,ES 1053868416,1053868447,ES 1053868448,1053868455,GB 1053868456,1053868463,ES 1053868480,1053868543,FR 1053868800,1053869567,DE 1053870080,1053870335,DE 1053870336,1053870591,GB 1053870848,1053871359,DE 1053871616,1053871871,DE 1053872384,1053872447,DE 1053872512,1053872639,FR 1053872896,1053873663,DE 1053876224,1053876479,DE 1053876480,1053876735,GB 1053876736,1053876991,DE 1053877248,1053878271,DE 1053878272,1053878783,GB 1053878784,1053879047,DE 1053879056,1053879071,DE 1053879104,1053879167,GB 1053879296,1053882111,DE 1053882368,1053882879,DE 1053882880,1053883391,GB 1053883392,1053884415,DE 1053884416,1053892607,BH 1053892608,1053900799,DE 1053900800,1053917183,NO 1053917184,1053925375,UZ 1053925376,1053927159,SE 1053927160,1053927199,FI 1053927200,1053933567,SE 1053933568,1053949951,CZ 1053949952,1053968188,FR 1053968189,1053968189,PT 1053968190,1054015487,FR 1054015488,1054089215,IT 1054089216,1054097407,GE 1054097408,1054105599,NL 1054105600,1054113791,FR 1054113792,1054121983,NL 1054121984,1054130175,AT 1054130176,1054138367,LT 1054138368,1054146559,AZ 1054146560,1054179327,RU 1054179328,1054180351,GB 1054180352,1054181120,DE 1054181121,1054181375,GB 1054181376,1054182399,DE 1054182400,1054183423,GB 1054183424,1054185216,DE 1054185217,1054185471,GB 1054185472,1054186240,DE 1054186241,1054186495,GB 1054186496,1054187264,DE 1054187265,1054187519,GB 1054187520,1054195711,FR 1054195712,1054212095,BE 1054212096,1054277631,DE 1054277632,1054343167,KW 1054343168,1054351359,NL 1054351360,1054359551,UA 1054359552,1054367743,RO 1054367744,1054375935,FI 1054375936,1054381567,GB 1054381568,1054381571,CA 1054381572,1054381572,SG 1054381573,1054381587,CA 1054381588,1054381588,HK 1054381589,1054381619,CA 1054381620,1054381620,US 1054381621,1054381823,CA 1054381824,1054384127,GB 1054384128,1054400511,DE 1054400512,1054408703,GB 1054408704,1054416895,FR 1054416896,1054425087,DE 1054425088,1054441471,GR 1054441472,1054449663,AZ 1054449664,1054457855,RU 1054457856,1054474239,RO 1054474240,1054539775,AT 1054539776,1054605311,IL 1054605312,1054613503,DE 1054613504,1054621695,RU 1054621696,1054629887,IT 1054629888,1054638079,IR 1054638080,1054646271,CH 1054646272,1054654463,SE 1054654464,1054662655,MK 1054662656,1054670847,FI 1054670848,1054671103,GB 1054671168,1054671231,IE 1054671372,1054671375,IE 1054671416,1054671423,IE 1054671432,1054671439,IE 1054672160,1054672175,IE 1054672256,1054672287,IE 1054672320,1054672335,US 1054672336,1054672367,IE 1054672384,1054672447,IE 1054672720,1054672727,IE 1054672744,1054672767,IE 1054672776,1054672783,IE 1054672792,1054672807,IE 1054673664,1054673727,IE 1054673856,1054673919,IE 1054673952,1054674047,IE 1054674080,1054674111,IE 1054674456,1054674471,IE 1054674480,1054674495,IE 1054674504,1054674511,IE 1054674520,1054674527,GB 1054674688,1054675199,IE 1054675456,1054675711,IE 1054675968,1054676223,US 1054679040,1054687231,UA 1054687232,1054703615,MD 1054703616,1054711807,BG 1054711808,1054719999,IT 1054720000,1054867455,NL 1054867456,1055129599,DE 1055129600,1055195135,CY 1055195136,1055203327,CH 1055211520,1055219711,PT 1055219712,1055223807,NL 1055223808,1055225855,LU 1055225856,1055227903,ES 1055232000,1055236095,NL 1055252480,1055256575,ES 1055260672,1055264767,SE 1055326208,1055334399,RU 1055334400,1055342591,IE 1055342592,1055358975,RO 1055358976,1055367167,GB 1055367168,1055375359,RU 1055375360,1055391743,OM 1055391744,1055457279,GB 1055457280,1055465471,BE 1055465472,1055473663,FR 1055473664,1055490047,GB 1055490048,1055522815,PL 1055522816,1055588351,NL 1055588352,1055653887,BE 1055653888,1055784959,FI 1055784960,1055850495,NL 1055850496,1055916031,GB 1055916032,1055924223,RS 1055924224,1055932415,LY 1055932416,1055940607,FI 1055940608,1055948799,EG 1055948800,1055956991,DE 1055956992,1055965183,CZ 1055965184,1055973375,CH 1055973376,1055981567,FR 1055981568,1055989759,IT 1055989760,1055997951,DE 1055997952,1056014335,FR 1056014336,1056022527,EG 1056022528,1056030719,GB 1056030720,1056047103,FI 1056047104,1056178175,DK 1056178176,1056194559,UA 1056194560,1056210943,FR 1056210944,1056219135,PL 1056219136,1056227327,GB 1056227328,1056243711,TR 1056243712,1056251903,CH 1056251904,1056260095,RU 1056260096,1056276479,CZ 1056276480,1056374783,DE 1056374784,1056440319,SE 1056440320,1056473087,TR 1056473088,1056505855,FI 1056505856,1056514047,PT 1056514048,1056522239,IT 1056522240,1056522664,DE 1056522665,1056522665,AT 1056522666,1056523007,DE 1056523008,1056538623,AT 1056538624,1056546815,RU 1056546816,1056555007,NO 1056555008,1056571391,GB 1056571392,1056669695,NL 1056669696,1056702463,MA 1056702464,1056874751,GB 1056874752,1056874943,IE 1056874944,1056874975,GB 1056874976,1056875007,IE 1056875008,1056875663,GB 1056875664,1056875671,IE 1056875672,1056964607,GB 1056964608,1061227263,US 1061227264,1061227519,BO 1061227520,1061558271,US 1061558272,1061559295,PK 1061559296,1061588735,US 1061588736,1061588991,GU 1061588992,1061853695,US 1061853696,1061854207,GB 1061854208,1061939711,US 1061939712,1061940223,JM 1061940224,1062069247,US 1062069248,1062070271,PR 1062070272,1062219519,US 1062219520,1062219775,IN 1062219776,1062262783,US 1062262784,1062263039,PH 1062263040,1062486271,US 1062486272,1062486527,MX 1062486528,1062530047,US 1062530048,1062531071,EC 1062531072,1062545919,US 1062545920,1062546431,BM 1062546432,1062597375,US 1062597376,1062597631,PR 1062597632,1062871551,US 1062871552,1062872063,PR 1062872064,1063052351,US 1063052352,1063052367,CA 1063052368,1063057432,US 1063057433,1063057433,CA 1063057434,1063390207,US 1063390208,1063390463,PR 1063390464,1063568895,US 1063568896,1063569151,TZ 1063569152,1063747839,US 1063747840,1063748095,UG 1063748096,1063748607,US 1063748608,1063749119,GH 1063749120,1063749631,US 1063749632,1063749887,LR 1063749888,1063750143,SA 1063750144,1063750399,NG 1063750400,1063750655,US 1063750656,1063751679,NG 1063751680,1063895039,US 1063895040,1063899135,KR 1063899136,1064124927,US 1064124928,1064125695,EC 1064125696,1064125951,US 1064125952,1064126207,PE 1064126208,1064126719,US 1064126720,1064126975,EC 1064126976,1064127487,US 1064127488,1064127999,EC 1064128000,1064171263,US 1064171264,1064171519,NG 1064171520,1064204287,US 1064204288,1064205311,MX 1064205312,1064221951,US 1064221952,1064222207,MX 1064222208,1064445183,US 1064445184,1064445439,PK 1064445440,1065372927,US 1065372928,1065373183,PR 1065373184,1065519247,US 1065519248,1065519263,IN 1065519264,1065519303,US 1065519304,1065519311,IN 1065519312,1065519871,US 1065519872,1065520127,GB 1065520128,1065521407,US 1065521408,1065525247,GB 1065525248,1065525791,US 1065525792,1065525807,IN 1065525808,1065533439,US 1065533440,1065537535,GB 1065537536,1065539583,US 1065539584,1065539839,GB 1065539840,1065611263,US 1065611264,1065615359,PR 1065615360,1065811967,US 1065811968,1065820159,CA 1065820160,1065873407,US 1065873408,1065877503,PR 1065877504,1065906175,US 1065906176,1065908223,KY 1065908224,1066254975,US 1066254976,1066255103,GB 1066255104,1066311679,US 1066311680,1066315775,CA 1066315776,1066352639,US 1066352640,1066355711,JM 1066355712,1066355967,BB 1066355968,1066356479,JM 1066356480,1066356735,VG 1066356736,1066358271,JM 1066358272,1066358495,VG 1066358496,1066358527,AG 1066358528,1066369023,JM 1066369024,1066830303,US 1066830304,1066830311,SG 1066830312,1066831183,US 1066831184,1066831191,JP 1066831192,1066831335,US 1066831336,1066831343,JP 1066831344,1067238143,US 1067238144,1067238399,JP 1067238400,1067294719,US 1067294720,1067294975,CA 1067294976,1067481855,US 1067481856,1067482111,CA 1067482112,1067532287,US 1067532288,1067532799,HN 1067532800,1067575295,US 1067575296,1067577343,HN 1067577344,1067617791,US 1067617792,1067618047,CN 1067618048,1067693055,US 1067693056,1067693567,CO 1067693568,1067726847,US 1067726848,1067727359,EC 1067727360,1067736831,US 1067736832,1067737087,PR 1067737088,1067740159,US 1067740160,1067741183,HN 1067741184,1067780607,US 1067780608,1067780863,GB 1067780864,1067824895,US 1067824896,1067825151,PR 1067825152,1067989247,US 1067989248,1067989503,EC 1067989504,1067998463,US 1067998464,1067998719,CO 1067998720,1068004351,US 1068004352,1068004607,CA 1068004608,1068017663,US 1068017664,1068018175,YE 1068018176,1068123135,US 1068123136,1068123647,BB 1068123648,1068175871,US 1068175872,1068176383,YE 1068176384,1068199935,US 1068199936,1068204031,CA 1068204032,1068230655,US 1068230656,1068230911,CO 1068230912,1068326911,US 1068326912,1068327167,EC 1068327168,1068346367,US 1068346368,1068346879,YE 1068346880,1068419071,US 1068419072,1068421119,CO 1068421120,1068425983,US 1068425984,1068426239,EC 1068426240,1068473343,US 1068473344,1068474367,BB 1068474368,1068481023,US 1068481024,1068481535,PR 1068481536,1068491263,US 1068491264,1068491519,HN 1068491520,1070701055,US 1070701056,1070701311,DO 1070701312,1070729471,US 1070729472,1070729727,CA 1070729728,1071100927,US 1071100928,1071101951,PR 1071101952,1071106559,US 1071106560,1071106815,NL 1071106816,1071144959,US 1071144960,1071153151,LB 1071153152,1071170815,US 1071170816,1071171071,PH 1071171072,1071206911,US 1071206912,1071207167,HK 1071207168,1071255525,US 1071255526,1071255526,DE 1071255527,1071255839,US 1071255840,1071255847,TW 1071255848,1071278959,US 1071278960,1071278963,SG 1071278964,1071291647,US 1071291648,1071291903,AU 1071291904,1071318783,US 1071318784,1071319039,IN 1071319040,1071472639,US 1071472640,1071476735,CA 1071476736,1071477247,US 1071477248,1071480831,CA 1071480832,1071522817,US 1071522818,1071522818,MW 1071522819,1071726951,US 1071726952,1071726955,IE 1071726956,1071727023,US 1071727024,1071727027,GB 1071727028,1071954223,US 1071954224,1071954231,GB 1071954232,1071954303,US 1071954304,1071954319,GB 1071954320,1071954327,US 1071954328,1071954335,ES 1071954336,1071954391,US 1071954392,1071954399,GB 1071954400,1071998999,US 1071999000,1071999003,GB 1071999004,1072099327,US 1072099328,1072099583,DE 1072099584,1072157503,US 1072157504,1072157511,GR 1072157512,1072157631,US 1072157632,1072157663,DE 1072157664,1072228863,US 1072228864,1072229375,CA 1072229376,1072361471,US 1072361472,1072361727,GB 1072361728,1072707327,US 1072707328,1072707583,IN 1072707584,1072923135,US 1072923136,1072923391,CA 1072923392,1072924159,US 1072924160,1072924671,HT 1072924672,1072925183,US 1072925184,1072925695,GB 1072925696,1072926207,CA 1072926208,1072926463,US 1072926464,1072926719,CA 1072926720,1072926975,PH 1072926976,1072927487,CA 1072927488,1072928511,US 1072928512,1072928767,CA 1072928768,1072929023,US 1072929024,1072929535,CA 1072929536,1072930303,US 1072930304,1072931071,CA 1072931072,1072931327,US 1072931328,1072931583,CA 1072931584,1072931839,SY 1072931840,1072932095,CA 1072932096,1072932351,US 1072932352,1072932607,CA 1072932608,1072932863,NG 1072932864,1072933887,US 1072933888,1072934399,CA 1072934400,1072934775,US 1072934776,1072934783,FR 1072934784,1072935423,US 1072935424,1072935679,CA 1072935680,1072936191,US 1072936192,1072936447,CA 1072936448,1072936703,PH 1072936704,1072937215,US 1072937216,1072937471,IR 1072937472,1072937727,US 1072937728,1072938239,CA 1072938240,1072938495,VG 1072938496,1072939007,US 1072939008,1072939263,CA 1072939264,1072941055,US 1072941056,1072942079,CA 1072942080,1072943103,US 1072943104,1072945151,CA 1072945152,1072953599,US 1072953600,1072953607,IE 1072953608,1073022975,US 1073022976,1073025791,HN 1073025792,1073026047,NI 1073026048,1073026303,US 1073026304,1073026559,DO 1073026560,1073027071,PR 1073027072,1073028351,NI 1073028352,1073028607,US 1073028608,1073029119,GD 1073029120,1073031423,US 1073031424,1073031935,CW 1073031936,1073034751,US 1073034752,1073035007,BB 1073035008,1073035263,US 1073035264,1073036032,GD 1073036033,1073036543,US 1073036544,1073037055,MX 1073037056,1073037311,CW 1073037312,1073037823,CO 1073037824,1073038335,GD 1073038336,1073039359,US 1073039360,1073041407,GT 1073041408,1073043455,CO 1073043456,1073043967,PR 1073043968,1073044735,US 1073044736,1073044991,PR 1073044992,1073045247,US 1073045248,1073045503,PR 1073045504,1073047551,CO 1073047552,1073049599,US 1073049600,1073052671,BS 1073052672,1073373183,US 1073373184,1073381375,CA 1073381376,1073454591,US 1073454592,1073454847,KY 1073454848,1074020351,US 1074020352,1074028543,CA 1074028544,1074118655,US 1074118656,1074120959,CA 1074120960,1074121215,US 1074121216,1074125055,CA 1074125056,1074125311,US 1074125312,1074126847,CA 1074126848,1074127359,US 1074127360,1074130943,CA 1074130944,1074131199,US 1074131200,1074135039,CA 1074135040,1074184191,US 1074184192,1074188287,CA 1074188288,1074233343,US 1074233344,1074241535,CA 1074241536,1074397439,US 1074397440,1074398975,CA 1074398976,1074399231,US 1074399232,1074406655,CA 1074406656,1074407167,US 1074407168,1074408191,CA 1074408192,1074408447,US 1074408448,1074409471,CA 1074409472,1074409727,US 1074409728,1074410495,CA 1074410496,1074411007,US 1074411008,1074413567,CA 1074413568,1074413823,US 1074413824,1074417407,CA 1074417408,1074418431,US 1074418432,1074419967,CA 1074419968,1074420223,US 1074420224,1074421247,CA 1074421248,1074421503,US 1074421504,1074426623,CA 1074426624,1074427135,US 1074427136,1074428671,CA 1074428672,1074428927,US 1074428928,1074430207,CA 1074430208,1074430463,US 1074430464,1074433535,CA 1074433536,1074433791,US 1074433792,1074437119,CA 1074437120,1074437375,US 1074437376,1074438911,CA 1074438912,1074439167,US 1074439168,1074441727,CA 1074441728,1074441983,US 1074441984,1074444031,CA 1074444032,1074444287,US 1074444288,1074445311,CA 1074445312,1074445567,US 1074445568,1074446079,CA 1074446080,1074446335,US 1074446336,1074453247,CA 1074453248,1074453503,US 1074453504,1074455039,CA 1074455040,1074455295,US 1074455296,1074456319,CA 1074456320,1074456575,US 1074456576,1074459135,CA 1074459136,1074459391,US 1074459392,1074462207,CA 1074462208,1074463743,US 1074463744,1074465535,CA 1074465536,1074465791,US 1074465792,1074466815,CA 1074466816,1074467071,US 1074467072,1074469887,CA 1074469888,1074470143,US 1074470144,1074472191,CA 1074472192,1074472447,US 1074472448,1074474751,CA 1074474752,1074475263,US 1074475264,1074479871,CA 1074479872,1074480127,US 1074480128,1074482175,CA 1074482176,1074482431,US 1074482432,1074484479,CA 1074484480,1074484735,US 1074484736,1074488319,CA 1074488320,1074488831,US 1074488832,1074493695,CA 1074493696,1074494207,US 1074494208,1074494719,CA 1074494720,1074495743,US 1074495744,1074497023,CA 1074497024,1074497279,US 1074497280,1074498815,CA 1074498816,1074499071,US 1074499072,1074501375,CA 1074501376,1074501631,US 1074501632,1074503935,CA 1074503936,1074504191,US 1074504192,1074505215,CA 1074505216,1074505471,US 1074505472,1074508031,CA 1074508032,1074508287,US 1074508288,1074509823,CA 1074509824,1074510079,US 1074510080,1074513151,CA 1074513152,1074703615,US 1074703616,1074703871,GB 1074703872,1074704383,US 1074704384,1074704639,GB 1074704640,1074707967,US 1074707968,1074708223,GB 1074708224,1074708991,US 1074708992,1074709247,PH 1074709248,1074733055,US 1074733056,1074737151,AU 1074737152,1074745343,CA 1074745344,1074757631,US 1074757632,1074765823,CA 1074765824,1074777343,US 1074777344,1074777599,AU 1074777600,1074871591,US 1074871592,1074871599,CA 1074871600,1074871807,US 1074871808,1074872319,CA 1074872320,1074937855,US 1074937856,1074946047,CA 1074946048,1074962431,US 1074962432,1074970623,CA 1074970624,1075265535,US 1075265536,1075269631,KR 1075269632,1075421183,US 1075421184,1075429375,CA 1075429376,1075478527,US 1075478528,1075494911,CA 1075494912,1075558399,US 1075558400,1075558911,VI 1075558912,1075576831,US 1075576832,1075576895,GB 1075576896,1075576896,SE 1075576897,1075577087,GB 1075577088,1075579391,NO 1075579392,1075579903,GB 1075579904,1075580415,NO 1075580416,1075580671,GB 1075580672,1075585023,NO 1075585024,1075609599,US 1075609600,1075613695,TT 1075613696,1075769343,US 1075769344,1075773439,CA 1075773440,1075855359,US 1075855360,1075871743,DO 1075871744,1075970047,US 1075970048,1075972095,CA 1075972096,1075972351,GB 1075972352,1075975167,US 1075975168,1075975679,CA 1075975680,1075976191,US 1075976192,1075976447,CA 1075976448,1075977055,US 1075977056,1075977071,CA 1075977072,1075982335,US 1075982336,1075982591,CA 1075982592,1075982847,US 1075982848,1075983103,CA 1075983104,1075983359,US 1075983360,1075984127,CA 1075984128,1075985919,US 1075985920,1075986687,CA 1075986688,1075986943,US 1075986944,1075987199,CA 1075987200,1075987967,US 1075987968,1075988223,CA 1075988224,1075988319,US 1075988320,1075988351,CA 1075988352,1075988479,US 1075988480,1075988991,CA 1075988992,1075989231,US 1075989232,1075989239,CA 1075989240,1075989503,US 1075989504,1075989759,CA 1075989760,1075990015,US 1075990016,1075990527,CA 1075990528,1075994623,US 1075994624,1075995007,CA 1075995008,1075995103,US 1075995104,1075995135,CA 1075995136,1075995647,US 1075995648,1075996671,CA 1075996672,1075997183,US 1075997184,1075997439,CA 1075997440,1075998119,US 1075998120,1075998127,CA 1075998128,1075998207,US 1075998208,1075998271,CA 1075998272,1075998463,US 1075998464,1075999231,CA 1075999232,1075999999,US 1076000000,1076000255,CA 1076000256,1076000767,US 1076000768,1076002047,CA 1076002048,1076003071,US 1076003072,1076003327,CA 1076003328,1076003583,US 1076003584,1076004351,CA 1076004352,1076004863,US 1076004864,1076005119,CA 1076005120,1076005311,US 1076005312,1076005319,CA 1076005320,1076005375,US 1076005376,1076005631,CA 1076005632,1076006399,US 1076006400,1076006655,CA 1076006656,1076006911,US 1076006912,1076007167,CA 1076007168,1076007423,US 1076007424,1076007935,CA 1076007936,1076008447,US 1076008448,1076009215,CA 1076009216,1076009727,US 1076009728,1076009983,CA 1076009984,1076026623,US 1076026624,1076026879,CA 1076026880,1076027019,US 1076027020,1076027023,CA 1076027024,1076028159,US 1076028160,1076028415,CA 1076028416,1076028927,US 1076028928,1076029183,BZ 1076029184,1076029439,US 1076029440,1076030207,CA 1076030208,1076031743,US 1076031744,1076031999,CA 1076032000,1076032255,US 1076032256,1076032511,CA 1076032512,1076035519,US 1076035520,1076035583,IN 1076035584,1076049151,US 1076049152,1076049407,DE 1076049408,1076049919,US 1076049920,1076050175,IL 1076050176,1076174847,US 1076174848,1076178943,BM 1076178944,1076183807,US 1076183808,1076184063,CA 1076184064,1076194559,US 1076194560,1076194815,CA 1076194816,1076195071,US 1076195072,1076195327,IN 1076195328,1076196095,US 1076196096,1076196351,CA 1076196352,1076197119,US 1076197120,1076197375,CA 1076197376,1076198655,US 1076198656,1076198911,AE 1076198912,1076283903,US 1076283904,1076284159,NO 1076284160,1076307967,US 1076307968,1076308223,DE 1076308224,1076310015,US 1076310016,1076310271,DE 1076310272,1076338687,US 1076338688,1076346879,CA 1076346880,1076387839,US 1076387840,1076393727,CA 1076393728,1076394239,US 1076394240,1076396031,CA 1076396032,1076408319,US 1076408320,1076412415,CA 1076412416,1076422143,US 1076422144,1076422192,GB 1076422193,1076422193,US 1076422194,1076422399,GB 1076422400,1076424703,US 1076424704,1076428799,CA 1076428800,1076543487,US 1076543488,1076559871,CA 1076559872,1076625407,US 1076690944,1076756479,US 1076756480,1076772863,CA 1076772864,1076850687,US 1076850688,1076850943,CA 1076850944,1076851199,US 1076851200,1076851455,CA 1076851456,1076880383,US 1076880384,1076880639,CH 1076880640,1076880895,GB 1076880896,1077055487,US 1077055488,1077059583,CA 1077059584,1077444607,US 1077444608,1077452799,CA 1077452800,1077460991,JP 1077460992,1077469183,US 1077469184,1077477375,CA 1077477376,1077506047,US 1077506048,1077510143,LS 1077510144,1077512191,US 1077512192,1077514239,SE 1077514240,1077641215,US 1077641216,1077657599,CA 1077657600,1077841151,US 1077841152,1077841407,GB 1077841408,1077848575,US 1077848576,1077848831,GR 1077848832,1077865983,US 1077865984,1077866239,CA 1077866240,1077963775,US 1077963776,1077964031,JP 1077964032,1077967103,US 1077967104,1077967359,CA 1077967360,1077967615,US 1077967616,1077967871,GB 1077967872,1077977087,US 1077977088,1077985279,CA 1077985280,1077993471,US 1077993472,1078001663,CA 1078001664,1078065039,US 1078065040,1078065047,CA 1078065048,1078067199,US 1078067200,1078071295,BS 1078071296,1078075391,CA 1078075392,1078124543,US 1078124544,1078128639,CA 1078128640,1078247423,US 1078247424,1078251519,CA 1078251520,1078280191,US 1078280192,1078280447,CA 1078280448,1078280575,US 1078280576,1078280583,CA 1078280584,1078281071,US 1078281072,1078281079,CA 1078281080,1078281300,US 1078281301,1078281301,CA 1078281302,1078281511,US 1078281512,1078281519,CA 1078281520,1078281599,US 1078281600,1078281663,CA 1078281664,1078281727,US 1078281728,1078281735,CA 1078281736,1078282239,US 1078282240,1078283015,CA 1078283016,1078283831,US 1078283832,1078283839,CA 1078283840,1078284031,US 1078284032,1078284287,CA 1078284288,1078284479,US 1078284480,1078284543,CA 1078284544,1078284703,US 1078284704,1078284719,CA 1078284720,1078284735,US 1078284736,1078284751,CA 1078284752,1078284863,US 1078284864,1078284991,CA 1078284992,1078285151,US 1078285152,1078285167,CA 1078285168,1078285255,US 1078285256,1078285259,CA 1078285260,1078285311,US 1078285312,1078285567,CA 1078285568,1078286351,US 1078286352,1078286367,CA 1078286368,1078287231,US 1078287232,1078287239,CA 1078287240,1078287359,US 1078287360,1078287615,CA 1078287616,1078287807,US 1078287808,1078287839,CA 1078287840,1078287871,US 1078287872,1078288383,CA 1078288384,1078349311,US 1078349312,1078349823,PH 1078349824,1078429695,US 1078429696,1078429951,GR 1078429952,1078438399,US 1078438400,1078438655,CA 1078438656,1078438911,US 1078438912,1078438929,CN 1078438930,1078438930,US 1078438931,1078439167,CN 1078439168,1078439679,US 1078439680,1078439935,NL 1078439936,1078453935,US 1078453936,1078453951,AT 1078453952,1078454703,US 1078454704,1078454719,AT 1078454720,1078455343,US 1078455344,1078455359,AT 1078455360,1078455551,US 1078455552,1078455807,NL 1078455808,1078456319,US 1078456320,1078460415,CA 1078460416,1078517759,US 1078517760,1078525951,CA 1078525952,1078575359,US 1078575360,1078575615,CA 1078575616,1078722559,US 1078722560,1078734847,AR 1078734848,1078737919,CO 1078737920,1078738943,EC 1078738944,1078739455,VE 1078739456,1078739967,US 1078739968,1078743039,PE 1078743040,1078743551,CO 1078743552,1078743807,US 1078743808,1078746111,CO 1078746112,1078747135,PE 1078747136,1078749183,CL 1078749184,1078751231,PE 1078751232,1078753279,CO 1078753280,1078755327,AR 1078755328,1078757375,PE 1078757376,1078767615,CL 1078767616,1078768639,CO 1078768640,1078769663,CL 1078769664,1078771711,CO 1078771712,1078773759,EC 1078773760,1078775807,PE 1078775808,1078777855,CO 1078777856,1078780927,EC 1078780928,1078782463,US 1078782464,1078782719,PA 1078782720,1078895103,US 1078895104,1078895359,CN 1078895360,1078945023,US 1078945024,1078945279,GB 1078945280,1078956799,US 1078956800,1078957055,GB 1078957056,1079320575,US 1079320576,1079322831,CA 1079322832,1079322839,US 1079322840,1079328767,CA 1079328768,1079377919,US 1079377920,1079378943,CA 1079378944,1079379199,US 1079379200,1079379455,CA 1079379456,1079383039,US 1079383040,1079383295,VG 1079383296,1079383807,US 1079383808,1079384063,MH 1079384064,1079384319,LR 1079384320,1079384575,CA 1079384576,1079385087,ZW 1079385088,1079385599,US 1079385600,1079386623,CA 1079386624,1079386879,SG 1079386880,1079387135,EG 1079387136,1079387903,US 1079387904,1079388159,PH 1079388160,1079389183,CA 1079389184,1079389951,US 1079389952,1079390207,CA 1079390208,1079391743,US 1079391744,1079392255,HT 1079392256,1079393791,CA 1079393792,1079394303,US 1079394304,1079395327,EC 1079395328,1079396095,US 1079396096,1079396351,CA 1079396352,1079397375,MP 1079397376,1079397631,MH 1079397632,1079400959,US 1079400960,1079401215,CA 1079401216,1079402495,US 1079402496,1079403263,CA 1079403264,1079403519,US 1079403520,1079403775,CA 1079403776,1079405567,US 1079405568,1079406111,CA 1079406112,1079408895,US 1079408896,1079409407,PK 1079409408,1079409919,US 1079409920,1079410175,CA 1079410176,1079411455,US 1079411456,1079411711,PK 1079411712,1079413759,US 1079413760,1079414271,CA 1079414272,1079415039,US 1079415040,1079415295,HN 1079415296,1079417087,US 1079417088,1079418879,CA 1079418880,1079422975,US 1079422976,1079423999,CA 1079424000,1079425791,US 1079425792,1079426047,CA 1079426048,1079427327,US 1079427328,1079427583,CA 1079427584,1079428095,PW 1079428096,1079429295,US 1079429296,1079429311,FR 1079429312,1079431679,US 1079431680,1079432191,ZM 1079432192,1079432959,US 1079432960,1079433215,CA 1079433216,1079435263,CR 1079435264,1079435775,CO 1079435776,1079436031,CA 1079436032,1079440191,US 1079440192,1079440207,CA 1079440208,1079459839,US 1079459840,1079508991,CA 1079508992,1079566847,US 1079566848,1079567103,GB 1079567104,1079567359,US 1079567360,1079567615,AU 1079567616,1079574527,US 1079574528,1079578623,PR 1079578624,1079623679,US 1079623680,1079627775,PR 1079627776,1079664639,US 1079664640,1079668735,CA 1079668736,1079669247,US 1079669248,1079669759,NL 1079669760,1079861247,US 1079861248,1079865343,CA 1079865344,1079962879,US 1079962880,1079963135,GB 1079963136,1080024319,US 1080024320,1080024575,CA 1080024576,1080033279,US 1080033280,1080164351,KY 1080164352,1080225791,CA 1080225792,1080229887,US 1080229888,1080295423,CA 1080295424,1080512511,US 1080512512,1080512767,GB 1080512768,1080514559,US 1080514560,1080514815,GB 1080514816,1080568831,US 1080568832,1080569087,JP 1080569088,1080569343,US 1080569344,1080569599,JP 1080569600,1080589567,US 1080589568,1080589823,CN 1080589824,1080610559,US 1080610560,1080610815,AU 1080610816,1080621055,US 1080621056,1080621567,AU 1080621568,1080957951,US 1080957952,1080958207,DE 1080958208,1080958463,BH 1080958464,1080958719,DE 1080958720,1080958975,BH 1080958976,1080960255,DE 1080960256,1080960511,BH 1080960512,1080963839,DE 1080963840,1080967167,US 1080967168,1080968191,DE 1080968192,1080968447,BH 1080968448,1080969471,DE 1080969472,1080969727,BH 1080969728,1080983551,DE 1080983552,1080987647,US 1080987648,1080988671,DE 1080988672,1080989951,US 1080989952,1080990207,DE 1080990208,1080999935,US 1080999936,1081016319,CA 1081016320,1081037311,US 1081037312,1081037567,CA 1081037568,1081038335,US 1081038336,1081040895,CA 1081040896,1081081855,US 1081131008,1081212927,US 1081212928,1081278463,CA 1081278464,1081369599,US 1081369600,1081370111,CO 1081370112,1081377663,US 1081377664,1081377791,VE 1081377792,1081378495,US 1081378496,1081378559,VE 1081378560,1081379327,US 1081379328,1081379839,VE 1081379840,1081385215,US 1081385216,1081385471,PA 1081385472,1081387519,US 1081387520,1081387775,PA 1081387776,1081391103,US 1081391104,1081393151,PA 1081393152,1081393407,US 1081393408,1081393663,CL 1081393664,1081393919,US 1081393920,1081397247,CL 1081397248,1081397759,US 1081397760,1081398783,CL 1081398784,1081399295,US 1081399296,1081401343,CL 1081401344,1081401855,US 1081401856,1081402367,AR 1081402368,1081403135,US 1081403136,1081403391,AR 1081403392,1081409791,US 1081409792,1081410047,PR 1081410048,1081410559,US 1081410560,1081411583,PR 1081411584,1081416191,US 1081416192,1081416447,PR 1081416448,1081419775,US 1081419776,1081420287,PR 1081420288,1081421311,US 1081421312,1081421567,MF 1081421568,1081443327,US 1081443328,1081444351,CL 1081444352,1081445375,US 1081445376,1081446399,CL 1081446400,1081460735,US 1081460736,1081462783,PA 1081462784,1081462856,US 1081462857,1081462857,BR 1081462858,1081479167,US 1081479168,1081483263,CA 1081483264,1081565183,US 1081565184,1081573375,CA 1081573376,1081589759,US 1081589760,1081593855,BB 1081593856,1081597951,CA 1081597952,1081639423,US 1081639424,1081639679,DE 1081639680,1082314751,US 1082314752,1082318847,CA 1082318848,1082683391,US 1082683392,1082687487,CA 1082687488,1082753023,US 1082753024,1082785791,CA 1082785792,1082790911,US 1082790912,1082791167,AU 1082791168,1082791423,IN 1082791424,1082945535,US 1082945536,1082949631,CA 1082949632,1082982399,US 1082982400,1083015167,CA 1083015168,1083267583,US 1083267584,1083268095,JP 1083268096,1083396095,US 1083396096,1083400191,BM 1083400192,1083437055,US 1083437056,1083441151,CA 1083441152,1083621375,US 1083621376,1083637759,BS 1083637760,1083686911,US 1083686912,1083703295,CA 1083703296,1083738111,US 1083738112,1083740159,PR 1083740160,1084067583,US 1084067584,1084067839,CA 1084067840,1084153599,US 1084153600,1084153855,NL 1084153856,1085439999,US 1085440000,1085448191,CA 1085448192,1085456383,US 1085456384,1085457919,PR 1085457920,1085458175,US 1085458176,1085464575,PR 1085464576,1085526015,US 1085526016,1085530111,CA 1085530112,1085538303,US 1085538304,1085603839,CA 1085603840,1085849599,US 1085849600,1085857791,CA 1085857792,1085915135,US 1085915136,1085923327,PR 1085923328,1085997055,US 1085997056,1086013439,CA 1086013440,1086042111,US 1086042112,1086046207,CA 1086046208,1086050815,US 1086050816,1086051327,CA 1086051328,1086421503,US 1086421504,1086422015,MP 1086422016,1086922751,US 1086922752,1086930943,CA 1086930944,1086942975,US 1086942976,1086943231,CA 1086943232,1086955519,US 1086955520,1086971903,CA 1086971904,1087016959,US 1087016960,1087021055,CA 1087021056,1087399167,US 1087399168,1087399423,GB 1087399424,1087405407,US 1087405408,1087405423,MX 1087405424,1087413895,US 1087413896,1087413903,DE 1087413904,1087419135,US 1087419136,1087419391,GB 1087419392,1087419903,US 1087419904,1087420159,CA 1087420160,1087430191,US 1087430192,1087430195,FR 1087430196,1087440895,US 1087440896,1087442943,PR 1087442944,1087444223,US 1087444224,1087444479,GB 1087444480,1087466883,US 1087466884,1087466887,GB 1087466888,1087496703,US 1087496704,1087496959,CA 1087496960,1087501471,US 1087501472,1087501479,GB 1087501480,1087501535,US 1087501536,1087501695,HK 1087501696,1087508161,US 1087508162,1087508162,JP 1087508163,1087514623,US 1087514624,1087516671,BB 1087516672,1087593983,US 1087593984,1087594239,MX 1087594240,1087596031,US 1087596032,1087596287,DE 1087596288,1087608319,US 1087608320,1087608575,GB 1087608576,1087626111,US 1087626112,1087626239,VI 1087626240,1087655167,US 1087655168,1087655295,VE 1087655296,1087686655,US 1087686656,1087686911,PR 1087686912,1087708671,US 1087708672,1087708927,AU 1087708928,1087714335,US 1087714336,1087714367,NL 1087714368,1087715327,US 1087715328,1087717375,PA 1087717376,1087721215,US 1087721216,1087721471,MX 1087721472,1087726015,US 1087726016,1087726047,FR 1087726048,1087735743,US 1087735744,1087735807,CA 1087735808,1087758335,US 1087758336,1087766527,PR 1087766528,1087783423,US 1087783424,1087783679,ZA 1087783680,1087798943,US 1087798944,1087798975,CA 1087798976,1087799295,US 1087799296,1087799372,BE 1087799373,1087799374,US 1087799375,1087799551,BE 1087799552,1087804159,US 1087804160,1087804415,GB 1087804416,1087837359,US 1087837360,1087837367,BR 1087837368,1087837695,US 1087837696,1087837951,BR 1087837952,1087839231,US 1087839232,1087839487,GB 1087839488,1087862783,US 1087862784,1087864831,PA 1087864832,1087873023,US 1087873024,1087873535,CA 1087873536,1087883263,US 1087883264,1087883519,AR 1087883520,1087918511,US 1087918512,1087918519,PR 1087918520,1087950111,US 1087950112,1087950119,PR 1087950120,1088012767,US 1088012768,1088012775,PR 1088012776,1088311615,US 1088311616,1088311679,CA 1088311680,1088684031,US 1088684032,1088946175,CA 1088946176,1089151231,US 1089151232,1089151487,NL 1089151488,1089167359,US 1089167360,1089171455,CA 1089171456,1089183231,US 1089183232,1089183487,GB 1089183488,1089191935,US 1089191936,1089200127,CA 1089200128,1089210623,US 1089210624,1089210879,GB 1089210880,1089211391,BR 1089211392,1089219839,US 1089219840,1089220095,JP 1089220096,1089233919,US 1089233920,1089234175,JP 1089234176,1089235455,US 1089235456,1089235967,GB 1089235968,1089249279,US 1089249280,1089249535,IE 1089249536,1089263615,US 1089263616,1089263871,GB 1089263872,1089264127,US 1089264128,1089264639,FR 1089264640,1089265663,US 1089265664,1089265919,GB 1089265920,1089266431,US 1089266432,1089266943,GB 1089266944,1089306623,US 1089306624,1089339391,PR 1089339392,1089393223,US 1089393224,1089393231,CA 1089393232,1089393343,US 1089393344,1089393359,CA 1089393360,1089526783,US 1089526784,1089527039,VE 1089527040,1089579519,US 1089579520,1089580031,VE 1089580032,1089881599,US 1089881600,1089882111,GB 1089882112,1089882623,US 1089882624,1089883135,GB 1089883136,1089887231,US 1089887232,1089887743,GB 1089887744,1089961983,US 1089961984,1089970175,CA 1089970176,1089974271,PR 1089974272,1090146303,US 1090146304,1090150399,CA 1090150400,1090207743,US 1090207744,1090215935,CA 1090215936,1090355199,US 1090355200,1090363391,CA 1090363392,1090387967,US 1090387968,1090396159,CA 1090396160,1090427391,US 1090427392,1090427647,CA 1090427648,1090445311,US 1090445312,1090453503,CA 1090453504,1091803135,US 1091803136,1091803391,CN 1091803392,1091807231,US 1091807232,1091807487,CA 1091807488,1091807999,US 1091808000,1091808255,CA 1091808256,1091812351,US 1091812352,1091812607,CN 1091812608,1091960831,US 1091960832,1092026367,CA 1092026368,1092075519,US 1092075520,1092091903,PR 1092091904,1093017599,US 1093017600,1093021695,CA 1093021696,1093025791,US 1093025792,1093033983,CA 1093033984,1093055487,US 1093055488,1093055743,AR 1093055744,1093058559,US 1093058560,1093066751,PR 1093066752,1093074943,US 1093074944,1093091327,CA 1093091328,1093107967,US 1093107968,1093108223,CA 1093108224,1093108991,US 1093108992,1093109247,CA 1093109248,1093109503,US 1093109504,1093109759,CA 1093109760,1093109871,US 1093109872,1093109879,CA 1093109880,1093110015,US 1093110016,1093110271,CA 1093110272,1093110527,US 1093110528,1093110783,CA 1093110784,1093110927,US 1093110928,1093110935,CA 1093110936,1093111039,US 1093111040,1093111551,CA 1093111552,1093111727,US 1093111728,1093111743,CA 1093111744,1093111903,US 1093111904,1093111935,CA 1093111936,1093112063,US 1093112064,1093112319,CA 1093112320,1093113855,US 1093113856,1093114111,CA 1093114112,1093114843,US 1093114844,1093114847,CA 1093114848,1093114879,US 1093114880,1093115647,CA 1093115648,1093115903,US 1093115904,1093116415,CA 1093116416,1093116927,US 1093116928,1093117183,HK 1093117184,1093117951,US 1093117952,1093118207,CA 1093118208,1093118463,HK 1093118464,1093119999,US 1093120000,1093120255,CA 1093120256,1093120415,US 1093120416,1093120431,CA 1093120432,1093120511,US 1093120512,1093120767,GB 1093120768,1093121023,US 1093121024,1093122047,CA 1093122048,1093122175,US 1093122176,1093122303,CA 1093122304,1093122751,US 1093122752,1093122767,CA 1093122768,1093122815,US 1093122816,1093123839,CA 1093123840,1093123951,US 1093123952,1093123967,CA 1093123968,1093126143,US 1093126144,1093126399,CA 1093126400,1093126911,US 1093126912,1093127167,CA 1093127168,1093128447,US 1093128448,1093129215,CA 1093129216,1093130751,US 1093130752,1093131263,CA 1093131264,1093132543,US 1093132544,1093133055,CA 1093133056,1093135359,US 1093135360,1093135615,CA 1093135616,1093135631,US 1093135632,1093135639,CA 1093135640,1093135871,US 1093135872,1093136639,CA 1093136640,1093136895,US 1093136896,1093137151,CA 1093137152,1093137407,US 1093137408,1093137791,CA 1093137792,1093137919,US 1093137920,1093138175,CA 1093138176,1093138303,US 1093138304,1093138319,CA 1093138320,1093139711,US 1093139712,1093140223,CA 1093140224,1093697535,US 1093697536,1093699071,BB 1093699072,1093700607,GD 1093700608,1093701631,VC 1093701632,1093708287,BB 1093708288,1093709311,LC 1093709312,1093716479,BB 1093716480,1093717759,GD 1093717760,1093719807,BB 1093719808,1093720319,LC 1093720320,1093721343,VG 1093721344,1093723391,BB 1093723392,1093723647,VC 1093723648,1093724415,BB 1093724416,1093725183,VC 1093725184,1093730303,BB 1093730304,1093734053,US 1093734054,1093734054,PH 1093734055,1093965960,US 1093965961,1093965961,NL 1093965962,1093966163,US 1093966164,1093966164,NL 1093966165,1093966216,US 1093966217,1093966217,NL 1093966218,1093984294,US 1093984295,1093984295,IE 1093984296,1094074879,US 1094074880,1094075167,BR 1094075168,1094088959,US 1094088960,1094089023,PR 1094089024,1094565887,US 1094565888,1094582271,CA 1094582272,1095450623,US 1095450624,1095467007,BS 1095467008,1095483391,US 1095491584,1095627775,US 1095627776,1095628287,CA 1095628288,1096278015,US 1096278016,1096286207,CA 1096286208,1096548351,US 1096548352,1096810495,CA 1096810496,1096884223,US 1096884224,1096888319,CA 1096888320,1096890879,US 1096890880,1096891135,GB 1096891136,1096925183,US 1096925184,1096941567,CA 1096941568,1097076123,US 1097076124,1097076127,DE 1097076128,1097727999,US 1097728000,1097736191,CA 1097736192,1097768959,US 1097768960,1097785343,CA 1097785344,1097793535,US 1097801728,1097830399,US 1097830400,1097834495,CA 1097834496,1097896191,US 1097896192,1097896519,VI 1097896520,1097896527,US 1097896528,1097897215,VI 1097897216,1097947135,US 1097947136,1097947151,VI 1097947152,1097947167,US 1097947168,1097947207,VI 1097947208,1097947215,US 1097947216,1097947327,VI 1097947328,1097947391,US 1097947392,1097949183,VI 1097949184,1097951231,US 1097951232,1097953279,VI 1097953280,1098070271,US 1098070272,1098070279,GR 1098070280,1098070295,US 1098070296,1098070303,BE 1098070304,1098891623,US 1098891624,1098891631,AU 1098891632,1101121535,US 1101121536,1101121791,EC 1101121792,1101182975,US 1101182976,1101183487,YE 1101183488,1101190655,US 1101190656,1101191167,EC 1101191168,1101224959,US 1101224960,1101225215,EC 1101225216,1101263103,US 1101263104,1101263359,CW 1101263360,1101267711,US 1101267712,1101267967,CA 1101267968,1101304063,US 1101304064,1101304319,EC 1101304320,1101304831,US 1101304832,1101305855,HN 1101305856,1101352959,US 1101352960,1101355007,HN 1101355008,1101402031,US 1101402032,1101402047,PR 1101402048,1101425919,US 1101425920,1101426175,EC 1101426176,1101459455,US 1101459456,1101461503,BB 1101461504,1101469695,US 1101469696,1101471743,HN 1101471744,1101475839,US 1101475840,1101479935,CO 1101479936,1101484031,US 1101484032,1101488127,CO 1101488128,1101521407,US 1101521408,1101521663,AS 1101521664,1101542399,US 1101542400,1101542911,CO 1101542912,1101574655,US 1101574656,1101575167,EC 1101575168,1101635327,US 1101635328,1101635583,HN 1101635584,1101650431,US 1101650432,1101650943,HN 1101650944,1101668095,US 1101668096,1101668351,EC 1101668352,1101676543,US 1101676544,1101678591,EC 1101678592,1101681407,US 1101681408,1101681663,NL 1101681664,1101750783,US 1101750784,1101751295,BM 1101751296,1101767679,US 1101767680,1101768191,CW 1101768192,1101797375,US 1101797376,1101798399,BB 1101798400,1101803519,US 1101803520,1101804543,HN 1101804544,1101837311,US 1101837312,1101837567,EC 1101837568,1101869055,US 1101869056,1101869567,GH 1101869568,1101871103,US 1101871104,1101873151,BO 1101873152,1101905407,US 1101905408,1101905663,GH 1101905664,1101992063,US 1101992064,1101992191,NL 1101992192,1102004735,US 1102004736,1102004991,IN 1102004992,1102005247,US 1102005248,1102005503,CA 1102005504,1102005759,PK 1102005760,1102006271,US 1102006272,1102006527,CA 1102006528,1102007295,US 1102007296,1102007551,PK 1102007552,1102010623,US 1102010624,1102010879,PK 1102010880,1102389247,US 1102389248,1102393343,CA 1102393344,1102446591,US 1102446592,1102448383,HN 1102448384,1102449151,US 1102449152,1102449407,SV 1102449408,1102454527,CR 1102454528,1102454783,HN 1102454784,1102512127,US 1102512128,1102516223,JM 1102516224,1103244799,US 1103244800,1103245055,EC 1103245056,1103548415,US 1103548416,1103550463,BS 1103550464,1103603711,US 1103603712,1103605759,EC 1103605760,1103623167,US 1103623168,1103623679,CO 1103623680,1103930879,US 1103930880,1103931135,MX 1103931136,1103987967,US 1103987968,1103988223,BR 1103988224,1103992319,US 1103992320,1103992575,FI 1103992576,1103996927,US 1103996928,1103997439,EC 1103997440,1104166911,US 1104166912,1104168959,CO 1104168960,1104265215,US 1104265216,1104265727,PH 1104265728,1104492287,US 1104492288,1104492543,PH 1104492544,1104842751,US 1104842752,1104844799,PR 1104844800,1105099519,US 1105099520,1105099775,EC 1105099776,1105719295,US 1105719296,1105723391,IN 1105723392,1106381199,US 1106381200,1106381207,UM 1106381208,1106469887,US 1106469888,1106470911,BS 1106470912,1106475007,US 1106475008,1106475519,CO 1106475520,1106758655,US 1106758656,1106759167,EC 1106759168,1106759679,CO 1106759680,1106767871,US 1106767872,1106768383,CO 1106768384,1106768895,EC 1106768896,1106769919,CO 1106769920,1107239935,US 1107239936,1107240959,CN 1107240960,1107243007,US 1107243008,1107247103,TC 1107247104,1107275775,US 1107275776,1107279871,CA 1107279872,1107288063,US 1107288064,1107292159,CA 1107292160,1107701759,US 1107701760,1107705855,CA 1107705856,1107820543,US 1107820544,1107853311,ZA 1107853312,1107895039,US 1107895040,1107895807,GB 1107895808,1107898367,US 1107898368,1107899903,GB 1107899904,1107900671,US 1107900672,1107900927,GB 1107900928,1107906559,US 1107906560,1107907071,GB 1107907072,1107907839,US 1107907840,1107908095,GB 1107908096,1107909375,US 1107909376,1107909631,GB 1107909632,1107909887,US 1107909888,1107910143,GB 1107910144,1107927039,US 1107927040,1107927551,GB 1107927552,1107935743,US 1107935744,1107936767,GB 1107936768,1107946495,US 1107946496,1107947007,GB 1107947008,1107947775,US 1107947776,1107948031,GB 1107948032,1107948543,US 1107948544,1107948799,GB 1107948800,1108025343,US 1108025344,1108029439,CA 1108029440,1108033535,US 1108033536,1108041727,CA 1108041728,1108054015,US 1108054016,1108066303,CA 1108066304,1108492287,US 1108492288,1108500479,ZA 1108500480,1108525055,US 1108525056,1108541439,CA 1108541440,1109688319,US 1109688320,1109696511,CA 1109696512,1109705727,US 1109705728,1109705983,CG 1109705984,1109707007,US 1109707008,1109707263,JM 1109707264,1109707519,US 1109707520,1109707775,MW 1109707776,1109709823,US 1109709824,1109710847,ZM 1109710848,1109819391,US 1109819392,1109852159,CA 1109852160,1109918463,US 1109918464,1109918719,GB 1109918720,1109919743,US 1109919744,1109919999,GB 1109920000,1109927167,US 1109927168,1109927423,AU 1109927424,1109934591,US 1109934592,1109934847,GB 1109934848,1110126591,US 1110126592,1110130687,CA 1110130688,1110270207,US 1110270208,1110270335,CA 1110270336,1110270399,US 1110270400,1110270431,CA 1110270432,1110310911,US 1110310912,1110376447,CA 1110376448,1110443535,US 1110443536,1110443543,CA 1110443544,1110444287,US 1110444288,1110444799,CA 1110444800,1110445055,US 1110445056,1110446591,CA 1110446592,1110447359,US 1110447360,1110448383,CA 1110448384,1110448639,US 1110448640,1110448895,CA 1110448896,1110449151,US 1110449152,1110449663,CA 1110449664,1110449919,US 1110449920,1110450175,CA 1110450176,1110450431,US 1110450432,1110450943,CA 1110450944,1110451455,US 1110451456,1110451711,CA 1110451712,1110451967,US 1110451968,1110453247,CA 1110453248,1110463999,US 1110464000,1110464767,CA 1110464768,1110465023,US 1110465024,1110465535,CA 1110465536,1110466047,US 1110466048,1110466303,CA 1110466304,1110472447,US 1110472448,1110473727,CA 1110473728,1110473983,US 1110473984,1110474239,CA 1110474240,1110540287,US 1110540288,1110573055,CA 1110573056,1110587391,PR 1110587392,1110587647,US 1110587648,1110588159,PR 1110588160,1110592767,US 1110592768,1110593023,PR 1110593024,1110594815,US 1110594816,1110595071,PR 1110595072,1110595776,US 1110595777,1110598655,PR 1110598656,1110599167,US 1110599168,1110638591,PR 1110638592,1110654463,US 1110654464,1110654719,HT 1110654720,1110663167,US 1110663168,1110675455,CA 1110675456,1110679551,US 1110679552,1110683647,CA 1110683648,1110700031,US 1110700032,1110704127,CA 1110704128,1110853631,US 1110853632,1110854655,GB 1110854656,1110857215,US 1110857216,1110857471,DE 1110857472,1110859007,US 1110859008,1110859263,AU 1110859264,1110863871,US 1110863872,1110865919,JM 1110865920,1110867455,KY 1110867456,1110867967,JM 1110867968,1110887423,US 1110887424,1110887679,IE 1110887680,1110929407,US 1110929408,1110933503,BM 1110933504,1111195647,US 1111195648,1111212031,CA 1111212032,1111228415,US 1111228416,1111244799,AR 1111244800,1112424447,US 1112432640,1112440831,CA 1112440832,1112530943,US 1112530944,1112539135,CA 1112539136,1112869887,US 1112869888,1112870143,CA 1112870400,1112870911,US 1112871936,1112873983,US 1112873984,1112875007,CA 1112875008,1112875519,US 1112875520,1112875775,CA 1112875776,1112887551,US 1112887808,1112889855,US 1112890112,1112890367,CA 1112890368,1112907775,US 1112907776,1112907783,CA 1112907784,1112931327,US 1112931328,1112931839,CA 1112931840,1112932095,US 1112932352,1113501695,US 1113501696,1113501951,VI 1113501952,1113591807,US 1113591808,1113595903,CA 1113595904,1113596415,CL 1113596416,1113596927,GT 1113596928,1113597183,PE 1113597184,1113597439,US 1113597440,1113597695,PE 1113597696,1113598463,PA 1113598464,1113599487,US 1113599488,1113599999,VE 1113600000,1113600255,US 1113600256,1113603071,VE 1113603072,1113603327,CL 1113603328,1113603583,GT 1113603584,1113603839,US 1113603840,1113604095,CA 1113604096,1113636863,US 1113636864,1113645055,SG 1113645056,1113653247,ID 1113653248,1113657343,US 1113657344,1113661439,CA 1113661440,1113669631,US 1113669632,1113677823,CA 1113677824,1113718783,US 1113718784,1113743359,DO 1113743360,1113854207,US 1113854208,1113854463,CA 1113854464,1113854975,US 1113854976,1113855487,CA 1113855488,1113984643,US 1113984644,1113984645,DE 1113984646,1113997311,US 1113997312,1114005503,CA 1114005504,1114054655,US 1114054656,1114062847,CA 1114062848,1114095615,US 1114095616,1114103807,CA 1114103808,1114505215,US 1114505216,1114506239,CA 1114506240,1114506751,US 1114506752,1114507263,CA 1114507264,1114511871,US 1114511872,1114512127,CA 1114512128,1114513407,US 1114513408,1114513471,SA 1114513472,1114513555,US 1114513556,1114513559,SA 1114513560,1114513567,US 1114513568,1114513663,SA 1114513664,1114514431,US 1114514432,1114515455,SA 1114515456,1114515463,US 1114515464,1114515471,CA 1114515472,1114517503,US 1114517504,1114518015,CA 1114518016,1114520063,US 1114520064,1114520319,PH 1114520320,1114520575,US 1114520576,1114520831,PH 1114520832,1114524159,US 1114524160,1114524671,ZA 1114524672,1114533375,US 1114533376,1114533887,ZA 1114533888,1114537983,AO 1114537984,1114550271,CA 1114550272,1114681343,US 1114681344,1114685439,CA 1114685440,1114730495,US 1114730496,1114734591,CA 1114734592,1114877183,US 1114877184,1114877439,CY 1114877440,1114877951,US 1114877952,1114878207,PA 1114878208,1115112575,US 1115112576,1115112607,IN 1115112608,1115113471,US 1115113472,1115114495,HN 1115114496,1115114751,MX 1115114752,1115115007,GT 1115115008,1115115519,US 1115115520,1115116543,HN 1115116544,1115117055,US 1115117056,1115117311,GB 1115117312,1115117567,US 1115117568,1115118591,HN 1115118592,1115119615,SV 1115119616,1115127807,US 1115127808,1115131903,CA 1115131904,1115135999,US 1115136000,1115144191,CA 1115144192,1115693055,US 1115693056,1115697151,AR 1115697152,1115705343,US 1115705344,1115709439,CA 1115709440,1115783167,US 1115783168,1115791359,CA 1115791360,1115795455,PR 1115795456,1115799551,CA 1115799552,1115815935,US 1115815936,1115947007,CA 1115947008,1116014079,US 1116014080,1116014335,DE 1116014336,1116014591,US 1116014592,1116014847,DE 1116014848,1116015871,US 1116015872,1116016127,DE 1116016128,1116024063,US 1116024064,1116024319,PG 1116024320,1116027135,US 1116027136,1116027903,DE 1116027904,1116033023,US 1116033024,1116037119,HK 1116037120,1116168191,US 1116168192,1116176383,CA 1116176384,1116897279,US 1116897280,1116905471,CA 1116905472,1117137919,US 1117137920,1117138175,CA 1117138176,1117142271,US 1117142272,1117142527,CA 1117142528,1117198591,US 1117198592,1117198847,CA 1117198848,1117274111,US 1117274112,1117282303,CA 1117282304,1117413375,US 1117413376,1117415423,CA 1117415424,1117416191,CW 1117416192,1117416447,CA 1117416448,1117416703,US 1117416704,1117420415,CA 1117420416,1117420447,US 1117420448,1117421567,CA 1117421568,1117458911,US 1117458912,1117458943,GB 1117458944,1117460223,US 1117460224,1117460287,GB 1117460288,1117460991,US 1117460992,1117461247,GB 1117461248,1117470719,US 1117470720,1117471231,CA 1117471232,1117480191,US 1117480192,1117480255,CA 1117480256,1117683711,US 1117683712,1117691903,CA 1117691904,1117724671,US 1117724672,1117728767,CA 1117728768,1117744127,US 1117744128,1117749247,CA 1117749248,1117815295,US 1117815296,1117815551,CN 1117815552,1117823231,US 1117823232,1117823487,CA 1117823488,1117823743,CN 1117823744,1117823999,US 1117824000,1117824511,GR 1117824512,1117829375,US 1117829376,1117829631,GR 1117829632,1117978623,US 1117978624,1117986815,CA 1117986816,1117995007,US 1117995008,1117999103,CA 1117999104,1118027775,US 1118027776,1118031871,CA 1118031872,1118126335,US 1118126336,1118126591,CA 1118126592,1118130687,US 1118130688,1118131199,CA 1118131200,1118131967,US 1118131968,1118132479,CA 1118132480,1118132991,US 1118132992,1118133247,CA 1118133248,1118135807,US 1118135808,1118136063,CA 1118136064,1118138879,US 1118138880,1118139135,CA 1118139136,1118139903,US 1118139904,1118140415,CA 1118140416,1118141183,US 1118141184,1118141439,CA 1118141440,1118141695,US 1118141696,1118141951,CA 1118141952,1118158847,US 1118158848,1118167039,CA 1118167040,1118474239,US 1118474240,1118478335,CA 1118478336,1118483455,US 1118483456,1118484479,CA 1118484480,1118515199,US 1118515200,1118519295,CA 1118519296,1118527487,US 1118527488,1118531583,CA 1118531584,1118535679,US 1118535680,1118539775,CA 1118539776,1118543871,US 1118543872,1118547967,CA 1118547968,1118790655,US 1118790656,1118790911,IL 1118790912,1118792431,US 1118792432,1118792447,AR 1118792448,1118793471,US 1118793472,1118793727,CO 1118793728,1118796543,US 1118796544,1118796799,GB 1118796800,1118962943,US 1118962944,1118963199,AS 1118963200,1118965247,US 1118965248,1118965503,AS 1118965504,1118966015,US 1118966016,1118966271,BR 1118966272,1118969855,US 1118969856,1118970111,LB 1118970112,1118970367,US 1118970368,1118970623,GB 1118970624,1118971647,US 1118971648,1118971903,GY 1118971904,1118972159,US 1118972160,1118972415,VE 1118972416,1118972671,GB 1118972672,1118973183,US 1118973184,1118973439,VE 1118973440,1118973695,US 1118973696,1118973951,NG 1118973952,1118975487,US 1118975488,1118975743,KE 1118975744,1118975999,US 1118976000,1118976255,GB 1118976256,1118980607,US 1118980608,1118980863,TZ 1118980864,1118983423,US 1118983424,1118983679,NI 1118983680,1118984447,US 1118984448,1118984703,SA 1118984704,1118986239,US 1118986240,1118987007,GB 1118987008,1118988799,US 1118988800,1118989055,VE 1118989056,1118989311,US 1118989312,1118989823,KE 1118989824,1118994175,US 1118994176,1118994431,LR 1118994432,1119109119,US 1119109120,1119111167,CA 1119111168,1119173135,US 1119173136,1119173143,MX 1119173144,1119173167,US 1119173168,1119173175,MX 1119173176,1119173183,US 1119173184,1119173199,MX 1119173200,1119173247,US 1119173248,1119173255,MX 1119173256,1119173279,US 1119173280,1119173295,MX 1119173296,1119173599,US 1119173600,1119173607,MX 1119173608,1119174063,US 1119174064,1119174071,MX 1119174072,1119174135,US 1119174136,1119174143,MX 1119174144,1119174183,US 1119174184,1119174191,MX 1119174192,1119174223,US 1119174224,1119174231,GT 1119174232,1119174407,US 1119174408,1119174415,MX 1119174416,1119211519,US 1119211520,1119215615,CA 1119215616,1119289343,US 1119289344,1119354879,CA 1119354880,1119428607,US 1119428608,1119431663,VI 1119431664,1119432191,US 1119432192,1119432703,VI 1119432704,1119436799,CA 1119436800,1119440895,US 1119440896,1119444991,CA 1119444992,1119469567,US 1119469568,1119477759,CA 1119477760,1119486783,US 1119486784,1119486847,BR 1119486848,1119502335,US 1119502336,1119510527,CA 1119510528,1119558143,US 1119558144,1119558655,PR 1119558656,1119568383,US 1119568384,1119568639,GB 1119568640,1119571967,US 1119571968,1119576063,CA 1119576064,1119580159,US 1119580160,1119584255,CA 1119584256,1119611903,US 1119611904,1119612159,BR 1119612160,1119612671,US 1119612672,1119612927,AU 1119617024,1120149503,US 1120149504,1120153599,CA 1120153600,1120159487,US 1120159488,1120159743,GB 1120159744,1120274943,US 1120274944,1120274991,CA 1120274992,1120282367,US 1120282368,1120282623,SY 1120282624,1120282879,US 1120282880,1120283135,SY 1120283136,1120283647,US 1120283648,1120284671,EC 1120284672,1120286719,CA 1120286720,1120294911,US 1120294912,1120297215,CA 1120297216,1120306687,US 1120306688,1120306943,PH 1120306944,1120307199,US 1120307200,1120307967,EC 1120307968,1120308223,PH 1120308224,1120310015,US 1120310016,1120310783,PH 1120310784,1120312575,US 1120312576,1120312831,PH 1120312832,1120315391,US 1120315392,1120317439,SG 1120317440,1120346111,US 1120346112,1120350207,CA 1120350208,1120370687,US 1120370688,1120371199,CA 1120371200,1120371567,US 1120371568,1120371583,CA 1120371584,1120372223,US 1120372224,1120372479,CA 1120372480,1120372991,US 1120372992,1120373247,CA 1120373248,1120373503,US 1120373504,1120374015,CA 1120374016,1120374519,US 1120374520,1120374523,CA 1120374524,1120374783,US 1120374784,1120375039,CA 1120375040,1120375551,US 1120375552,1120376063,CA 1120376064,1120376303,US 1120376304,1120376319,CA 1120376320,1120376479,US 1120376480,1120376494,CA 1120376495,1120376559,US 1120376560,1120376575,CA 1120376576,1120376831,US 1120376832,1120377087,CA 1120377088,1120377343,US 1120377344,1120377599,CA 1120377600,1120377855,US 1120377856,1120378367,CA 1120378368,1120378623,US 1120378624,1120378879,CA 1120378880,1120379199,US 1120379200,1120379263,CA 1120379264,1120379295,US 1120379296,1120379311,CA 1120379312,1120379391,US 1120379392,1120379903,CA 1120379904,1120380453,US 1120380454,1120380454,CA 1120380455,1120380671,US 1120380672,1120380991,CA 1120380992,1120381087,US 1120381088,1120381095,CA 1120381096,1120381183,US 1120381184,1120382207,CA 1120382208,1120382439,US 1120382440,1120382447,CA 1120382448,1120382463,US 1120382464,1120382975,CA 1120382976,1120385279,US 1120385280,1120385535,CA 1120385536,1120386559,US 1120386560,1120387071,CA 1120387072,1120486655,US 1120486656,1120486911,CA 1120486912,1120487423,US 1120487424,1120487679,CA 1120487680,1120489471,US 1120489472,1120489727,CA 1120489728,1120491519,US 1120491520,1120491775,CA 1120491776,1120492543,US 1120492544,1120493055,CA 1120493056,1120493823,US 1120493824,1120494079,CA 1120494080,1120494335,US 1120494336,1120494591,CA 1120494592,1120496639,US 1120496640,1120496895,CA 1120496896,1120497407,US 1120497408,1120497663,CA 1120497664,1120498943,US 1120498944,1120499199,CA 1120499200,1120501247,US 1120501248,1120501503,CA 1120501504,1120509951,US 1120509952,1120516095,SV 1120516096,1120517119,US 1120517120,1120517375,CN 1120517376,1120517631,AR 1120517632,1120517887,US 1120517888,1120518143,CL 1120518144,1120534527,CA 1120534528,1120641023,US 1120641024,1120657407,CA 1120657408,1120737023,US 1120737024,1120737279,BS 1120737280,1120740351,US 1120740352,1120741375,TT 1120741376,1120741631,US 1120741632,1120741887,KN 1120741888,1120743423,US 1120743424,1120743679,KN 1120743680,1120744447,US 1120744448,1120744703,KN 1120744704,1120788479,US 1120796672,1120854015,US 1120854016,1120862207,CA 1120862208,1120875007,US 1120875008,1120875263,AS 1120875264,1120886783,US 1120886784,1120894975,CA 1120894976,1120911359,US 1120911360,1120919551,CA 1120919552,1121005567,US 1121005568,1121009663,CA 1121009664,1121038335,US 1121038336,1121042431,CA 1121042432,1121230847,US 1121230848,1121239039,CA 1121239040,1121247231,US 1121247232,1121250303,CA 1121250304,1121250815,BZ 1121250816,1121252863,CA 1121252864,1121253119,BZ 1121253120,1121253887,CA 1121253888,1121254143,BZ 1121254144,1121255423,CA 1121255424,1121763327,US 1121763328,1121767423,CA 1121767424,1121878015,US 1121878016,1121910783,CA 1121910784,1122074623,US 1122074624,1122087935,CA 1122087936,1122088191,US 1122088192,1122091007,CA 1122091008,1122092799,US 1122092800,1122093055,CA 1122093056,1122140159,US 1122140160,1122148351,CA 1122148352,1122156543,BS 1122156544,1122203135,US 1122203136,1122203391,GB 1122203392,1122412287,US 1122412288,1122412543,AU 1122412544,1122414335,US 1122414336,1122414591,AU 1122414592,1122416383,US 1122416384,1122416639,DM 1122416640,1122417919,US 1122417920,1122418175,AU 1122418176,1122433023,US 1122433024,1122434047,PR 1122434048,1122451455,US 1122451456,1122455551,CO 1122455552,1122476031,US 1122476032,1122480127,PR 1122480128,1122497327,US 1122497328,1122497343,BR 1122497344,1122499071,US 1122499072,1122499327,PR 1122499328,1122533375,US 1122533376,1122535423,GB 1122535424,1122538495,KR 1122538496,1122635775,US 1122635776,1122639871,CA 1122639872,1123123199,US 1123123200,1123127295,CA 1123127296,1123180543,US 1123180544,1123184639,CA 1123184640,1123336191,US 1123336192,1123352575,CA 1123352576,1123394559,US 1123394560,1123394815,CA 1123394816,1123534847,US 1123534848,1123536895,AW 1123536896,1123589631,US 1123589632,1123589887,DE 1123589888,1123590143,US 1123590144,1123598335,VI 1123598336,1123598591,CA 1123598592,1123635639,US 1123635640,1123635640,RU 1123635641,1123635660,US 1123635661,1123635661,RU 1123635662,1123635670,US 1123635671,1123635671,RU 1123635672,1123635887,US 1123635888,1123635888,AU 1123635889,1123651583,US 1123651584,1123651839,JM 1123651840,1123652095,BB 1123652096,1123653119,JM 1123653120,1123653375,BB 1123653376,1123653631,JM 1123653632,1123654655,KY 1123654656,1123655679,JM 1123655680,1123663871,US 1123663872,1123667967,SV 1123667968,1123670015,PR 1123670016,1123671039,US 1123671040,1123672063,PY 1123672064,1123694591,US 1123694592,1123694847,CA 1123694848,1123778559,US 1123794944,1123795199,DO 1123795200,1123801087,US 1123801088,1123801343,RU 1123801344,1123848191,US 1123848192,1123852287,CA 1123852288,1123929599,US 1123929600,1123929855,CA 1123929856,1123950591,US 1123950592,1123958783,CA 1123958784,1125064703,US 1125064704,1125065215,GB 1125065216,1125081855,US 1125081856,1125082111,DE 1125082112,1125082367,US 1125082368,1125082623,DE 1125082624,1125087999,US 1125088000,1125088255,CA 1125088256,1125099775,US 1125099776,1125100031,GB 1125100032,1125112831,US 1125112832,1125113087,MA 1125113088,1125116415,US 1125116416,1125116671,MA 1125116672,1125117183,US 1125117184,1125117439,MA 1125117440,1125120255,US 1125120256,1125120511,MA 1125120512,1125147624,US 1125147625,1125147625,GB 1125147626,1125156304,US 1125156305,1125156305,DE 1125156306,1125237919,US 1125237920,1125237923,GB 1125237924,1125251327,US 1125251328,1125251583,VE 1125251584,1125474303,US 1125474304,1125478399,CA 1125478400,1125481215,US 1125481216,1125481727,CA 1125481728,1125486591,US 1125486592,1125490687,CA 1125490688,1125498879,US 1125498880,1125508095,CA 1125508096,1125508351,PA 1125508352,1125514239,CA 1125514240,1125514495,CY 1125514496,1125514751,US 1125514752,1125515263,CA 1125515264,1125531647,US 1125531648,1125543887,CA 1125543888,1125543903,US 1125543904,1125543935,CA 1125543936,1125545983,US 1125545984,1125550079,CA 1125550080,1125550335,US 1125550336,1125552127,CA 1125552128,1125572607,US 1125572608,1125576703,CA 1125576704,1125613567,US 1125613568,1125617663,CA 1125617664,1126009343,US 1126009344,1126009599,AR 1126009600,1126924287,US 1126924288,1126928383,CA 1126928384,1126948863,US 1126948864,1126952959,CA 1126952960,1127147263,US 1127147264,1127147519,CA 1127147520,1127677951,US 1127677952,1127694335,CA 1127694336,1127923711,US 1127923712,1127931903,CA 1127931904,1128529919,US 1128529920,1128641023,CA 1128641024,1128641535,US 1128641536,1128792063,CA 1128792064,1128817407,US 1128817408,1128817663,NL 1128817664,1130535935,US 1130535936,1130536191,FR 1130536192,1130537471,US 1130537472,1130537983,GU 1130537984,1130538751,US 1130538752,1130539007,GU 1130539008,1133461247,US 1133461248,1133461503,CA 1133461504,1133785351,US 1133785352,1133785359,IE 1133785360,1133785439,US 1133785440,1133785471,GB 1133785472,1133785487,US 1133785488,1133785495,IE 1133785496,1133789695,US 1133789696,1133789823,GB 1133789824,1133789887,US 1133789888,1133789895,NL 1133789896,1133789903,IE 1133789904,1134444543,US 1134444544,1134448639,CA 1134448640,1134546943,US 1134546944,1134551039,CA 1134551040,1136523263,US 1136523264,1136523775,CA 1136523776,1136721919,US 1136721920,1136787455,CA 1136787456,1137195519,US 1137195520,1137195775,JP 1137195776,1137278975,US 1137278976,1137283071,CA 1137283072,1137287167,US 1137287168,1137295359,CA 1137295360,1137369727,US 1137369728,1137369759,CA 1137369760,1137369855,US 1137369856,1137370111,CA 1137370112,1137376255,US 1137376256,1137376543,CA 1137376544,1137376575,US 1137376576,1137376591,CA 1137376592,1137376623,US 1137376624,1137376671,CA 1137376672,1137376719,US 1137376720,1137376743,CA 1137376744,1137376751,US 1137376752,1137376767,CA 1137376768,1137426431,US 1137426432,1137442815,PR 1137442816,1137459199,CA 1137459200,1137491967,US 1137491968,1137508351,CA 1137508352,1137524735,US 1137524736,1137541119,CA 1137541120,1137623039,US 1137623040,1137639423,PR 1137639424,1137680959,US 1137680960,1137680975,UA 1137680976,1137704959,US 1137704960,1137706239,CA 1137706240,1137706495,US 1137706496,1137712383,CA 1137712384,1137712639,US 1137712640,1137713151,CA 1137713152,1137758207,US 1137758208,1137758463,GB 1137758464,1137836031,US 1137840128,1137840383,CA 1137840384,1137868799,US 1137868800,1137872895,CA 1137872896,1137876991,US 1137876992,1137881087,CA 1137881088,1137889279,US 1137889280,1137893375,CA 1137893376,1137917951,US 1137917952,1137922047,CA 1137922048,1137926143,US 1137926144,1137929727,CA 1137929728,1137929983,IE 1137929984,1137934335,CA 1137934336,1137950719,US 1137950720,1137952255,CA 1137952256,1137952767,US 1137952768,1137954303,CA 1137954304,1137963007,US 1137963008,1137967103,VI 1137967104,1137975295,CA 1137975296,1137983487,US 1137983488,1137991679,CA 1137991680,1138049023,US 1138049024,1138053631,CA 1138053632,1138053887,US 1138053888,1138061311,CA 1138061312,1138069503,US 1138069504,1138073599,JM 1138073600,1138163711,US 1138163712,1138167807,CA 1138167808,1138175999,US 1138176000,1138180095,CA 1138180096,1138184959,US 1138184960,1138185215,AU 1138185216,1138185727,CA 1138185728,1138185983,ZA 1138185984,1138188287,US 1138188288,1138192383,PR 1138192384,1138196479,US 1138196480,1138204671,CA 1138204672,1138212863,US 1138212864,1138216959,CA 1138216960,1138373887,US 1138373888,1138374143,AS 1138374144,1138374399,US 1138374400,1138374911,AS 1138374912,1138375423,US 1138375424,1138375679,AS 1138375680,1138419711,US 1138419712,1138419967,DE 1138419968,1138499583,US 1138499584,1138503679,CA 1138503680,1138508575,US 1138508576,1138508591,IT 1138508592,1138509823,US 1138509824,1138510847,IN 1138510848,1138528255,US 1138528256,1138528511,CA 1138528512,1138544895,US 1138544896,1138545151,GB 1138545152,1138593791,US 1138593792,1138597887,CA 1138597888,1138704383,US 1138704384,1138716671,CA 1138716672,1138720767,US 1138720768,1138728959,CA 1138728960,1138774015,US 1138774016,1138778111,CA 1138778112,1138780671,US 1138780672,1138780679,CA 1138780680,1138781183,US 1138781184,1138781439,CA 1138781440,1138786303,US 1138786304,1138819071,PR 1138819072,1138851839,CA 1138851840,1138917375,US 1138917376,1138937855,CA 1138937856,1138941951,US 1138941952,1138950143,CA 1138950144,1139146751,US 1139146752,1139154943,GT 1139154944,1139167231,JM 1139167232,1139167487,US 1139167488,1139168767,PR 1139168768,1139169279,US 1139169280,1139169791,PR 1139169792,1139170815,US 1139170816,1139171071,PR 1139171072,1139179519,US 1139179520,1139195903,CA 1139195904,1139216383,US 1139216384,1139220479,CA 1139220480,1139265535,US 1139265536,1139269631,CA 1139269632,1144796287,US 1144796288,1144796415,CA 1144796416,1144848383,US 1144848384,1144848511,CA 1144848512,1145099519,US 1145099520,1145099697,SA 1145099698,1145099699,US 1145099700,1145099775,SA 1145099776,1145188351,US 1145188352,1145192447,CA 1145192448,1145242111,US 1145242112,1145242367,NO 1145242368,1145244159,US 1145244160,1145244415,NO 1145244416,1145249791,US 1145249792,1145257983,CA 1145257984,1145259247,US 1145259248,1145259251,AE 1145259252,1145286655,US 1145286656,1145287167,SG 1145287168,1145287679,US 1145287680,1145287935,SG 1145287936,1145288191,US 1145288192,1145288447,SG 1145288448,1145307135,US 1145307136,1145311231,CA 1145311232,1145376767,US 1145376768,1145380863,CA 1145380864,1145405439,US 1145405440,1145413631,CA 1145413632,1145421823,US 1145421824,1145430015,CA 1145430016,1145475071,US 1145475072,1145479167,CA 1145479168,1145503743,US 1145503744,1145520127,CA 1145520128,1150043135,US 1150043136,1150044159,VA 1150044160,1150287871,US 1150287872,1150812159,CA 1150812160,1151889407,US 1151889408,1151897599,CA 1151897600,1152073727,US 1152073728,1152077823,CA 1152077824,1152085152,US 1152085153,1152085168,KN 1152085169,1152114687,US 1152114688,1152117759,CA 1152117760,1152117952,IL 1152117953,1152117953,CA 1152117954,1152118015,IL 1152118016,1152122879,CA 1152122880,1152581631,US 1152581632,1152614399,CA 1152614400,1152778239,US 1152778240,1152843775,CA 1152843776,1156071423,US 1156071424,1156079615,CA 1156079616,1156243455,US 1156243456,1156245503,CA 1156245504,1156249599,US 1156249600,1156250623,CA 1156250624,1156263935,US 1156263936,1156265983,CA 1156265984,1156296703,US 1156296704,1156300799,CA 1156300800,1157753087,US 1157753088,1157753343,GB 1157753344,1157758207,US 1157758208,1157758463,RU 1157758464,1157913215,US 1157913216,1157913279,CA 1157913280,1157914194,US 1157914195,1157914202,IN 1157914203,1157914234,US 1157914235,1157914242,IN 1157914243,1157914258,US 1157914259,1157914266,IN 1157914267,1157931007,US 1157931008,1157935103,BS 1157935104,1157943295,US 1157943296,1157947391,CA 1157947392,1158027263,US 1158027264,1158027519,CA 1158027520,1158028287,US 1158028288,1158028543,CA 1158028544,1158120959,US 1158120960,1158121215,GB 1158121216,1158148095,US 1158148096,1158152191,CA 1158152192,1158234111,US 1158234112,1158242047,CA 1158242048,1158242303,US 1158242304,1158249727,CA 1158249728,1158295807,US 1158295808,1158296063,GB 1158296064,1158316031,US 1158316032,1158322242,CA 1158322243,1158322243,US 1158322244,1158324223,CA 1158324224,1158340607,US 1158340608,1158344703,CA 1158344704,1158348799,US 1158348800,1158381567,CA 1158381568,1158422527,US 1158422528,1158423551,CA 1158423552,1158427647,US 1158427648,1158428159,CA 1158428160,1158440959,US 1158440960,1158441215,CA 1158441216,1158441471,US 1158441472,1158441983,CA 1158441984,1158443007,DM 1158443008,1158774783,US 1158774784,1158784703,CA 1158784704,1158784767,US 1158784768,1158791167,CA 1158791168,1158794239,BM 1158794240,1158794495,US 1158794496,1158799359,BM 1158799360,1158807551,CA 1158807552,1158995967,US 1158995968,1159004159,CA 1159004160,1159213055,US 1159213056,1159217151,CA 1159217152,1159249919,US 1159249920,1159254015,PR 1159254016,1159262475,US 1159262476,1159262479,SA 1159262480,1159262487,US 1159262488,1159262491,SA 1159262492,1159269119,US 1159269120,1159269375,AR 1159269376,1159274495,US 1159274496,1159274751,GB 1159274752,1159279359,US 1159279360,1159279615,PR 1159279616,1159281919,US 1159281920,1159282175,GB 1159282176,1159300607,US 1159300608,1159300863,SE 1159300864,1159341103,US 1159341104,1159341111,BR 1159341112,1159348223,US 1159348224,1159356415,CA 1159356416,1159421951,US 1159421952,1159430143,CA 1159430144,1159480063,US 1159480064,1159480319,CA 1159480320,1159483903,US 1159483904,1159484415,CA 1159484416,1159512575,US 1159512576,1159512831,CA 1159512832,1159513599,US 1159513600,1159514879,CA 1159514880,1159515135,US 1159515136,1159515647,CA 1159515648,1159515903,US 1159515904,1159516159,CA 1159516160,1159516415,US 1159516416,1159516671,NL 1159516672,1159517695,US 1159517696,1159517951,CA 1159517952,1159518015,US 1159518016,1159518047,CA 1159518048,1159519743,US 1159519744,1159520255,CA 1159520256,1159521535,US 1159521536,1159521791,CA 1159521792,1159522223,US 1159522224,1159522239,CA 1159522240,1159522815,US 1159522816,1159523071,CA 1159523072,1159523583,US 1159523584,1159524351,CA 1159524352,1159525375,US 1159525376,1159526399,CA 1159526400,1159527935,US 1159527936,1159528191,CA 1159528192,1159560207,US 1159560208,1159560215,MO 1159560216,1159668479,US 1159668480,1159668735,CA 1159668736,1159694591,US 1159694592,1159694847,CA 1159694848,1159700479,US 1159700480,1159725055,CA 1159725056,1159767039,US 1159767040,1159767295,CA 1159767296,1160011775,US 1160011776,1160019967,CA 1160019968,1160364031,US 1160364032,1160368127,CA 1160368128,1160373247,US 1160373248,1160373503,AE 1160373504,1160392703,US 1160392704,1160392959,CA 1160392960,1160393727,US 1160393728,1160396799,CA 1160396800,1160405759,US 1160405760,1160406015,DO 1160406016,1160406319,US 1160406320,1160406335,DO 1160406336,1160408319,US 1160408320,1160408575,CA 1160408576,1160409599,US 1160409600,1160410111,CO 1160410112,1160410511,US 1160410512,1160410519,EC 1160410520,1160410551,US 1160410552,1160410559,EC 1160410560,1160425471,US 1160425472,1160429567,CA 1160429568,1160486911,US 1160486912,1160487423,AU 1160487424,1160505343,US 1160505344,1160505855,AU 1160505856,1160547839,US 1160547840,1160548351,MX 1160548352,1160563199,US 1160563200,1160563711,MP 1160563712,1160609791,US 1160609792,1160610815,MX 1160610816,1160665599,US 1160665600,1160665855,CH 1160665856,1160667135,US 1160667136,1160675327,CA 1160675328,1160678399,US 1160678400,1160678655,MX 1160678656,1160683519,US 1160683520,1160691711,CA 1160691712,1160810495,US 1160810496,1160810751,CA 1160810752,1160847359,US 1160847360,1160855551,CA 1160855552,1160863999,US 1160864000,1160864255,CA 1160864256,1160921087,US 1160921088,1160925183,AG 1160925184,1160945663,US 1160945664,1160953855,CA 1160953856,1161019391,US 1161019392,1161035775,CA 1161035776,1161052671,US 1161052672,1161052927,GB 1161052928,1161053439,US 1161053440,1161053695,GB 1161053696,1161293823,US 1161293824,1161297919,CA 1161297920,1161363455,US 1161363456,1161367551,CA 1161367552,1161416703,US 1161416704,1161420799,CA 1161420800,1161421311,AG 1161421312,1161421567,AI 1161421568,1161422079,AG 1161422080,1161422335,VG 1161422336,1161422591,LC 1161422592,1161422847,AG 1161422848,1161423103,LC 1161423104,1161423359,VG 1161423360,1161423615,AI 1161423616,1161423871,AG 1161423872,1161424127,LC 1161424128,1161424383,AI 1161424384,1161424639,KN 1161424640,1161424895,LC 1161424896,1161425151,VG 1161425152,1161425407,DM 1161425408,1161425663,AG 1161425664,1161425919,AI 1161425920,1161426943,AG 1161426944,1161427199,AI 1161427200,1161427455,VG 1161427456,1161428223,AG 1161428224,1161428991,KN 1161428992,1161429247,US 1161429248,1161429375,CA 1161429376,1161429407,US 1161429408,1161429503,CA 1161429504,1161429951,US 1161429952,1161430015,CA 1161430016,1161430783,US 1161430784,1161430879,CA 1161430880,1161430911,US 1161430912,1161430943,CA 1161430944,1161430975,US 1161430976,1161431039,CA 1161431040,1161431295,US 1161431296,1161431359,CA 1161431360,1161432063,US 1161432064,1161432126,CA 1161432127,1161432319,US 1161432320,1161432575,IN 1161432576,1161433087,US 1161433088,1161437183,CA 1161437184,1161453567,US 1161453568,1161457663,CA 1161457664,1161576447,US 1161576448,1161580543,CA 1161580544,1161617407,US 1161617408,1161625599,CA 1161625600,1161631623,US 1161631624,1161631631,KW 1161631632,1161649407,US 1161649408,1161649663,AR 1161649664,1161764863,US 1161764864,1161773055,CA 1161773056,1161777151,SZ 1161777152,1161818111,US 1161818112,1161822207,CA 1161822208,1161830425,US 1161830426,1161830426,UA 1161830427,1161830596,US 1161830597,1161830597,UA 1161830598,1161831090,US 1161831091,1161831091,DE 1161831092,1161831305,US 1161831306,1161831306,DE 1161831307,1161831384,US 1161831385,1161831385,UA 1161831386,1161832483,US 1161832484,1161832484,UA 1161832485,1161833967,US 1161833968,1161833975,DE 1161833976,1161835225,US 1161835226,1161835226,UA 1161835227,1161835230,US 1161835231,1161835231,PH 1161835232,1161835338,US 1161835339,1161835339,DE 1161835340,1161837567,US 1161837568,1161837823,JP 1161837824,1161885695,US 1161885696,1161886207,JP 1161886208,1161887231,US 1161887232,1161887743,AU 1161887744,1161925631,US 1161925632,1161925887,EC 1161925888,1161926399,US 1161926400,1161926655,EC 1161926656,1162018815,US 1162018816,1162022911,CA 1162022912,1162027007,US 1162027008,1162031103,ZA 1162031104,1162032287,US 1162032288,1162032303,BE 1162032304,1162059775,US 1162059776,1162067967,CA 1162067968,1162215423,US 1162215424,1162280959,CA 1162280960,1162297343,US 1162297344,1162305535,CA 1162305536,1162461183,US 1162461184,1162461695,BB 1162461696,1162462207,GD 1162462208,1162462975,BB 1162462976,1162463999,VC 1162464000,1162465279,BB 1162465280,1162465535,GD 1162465536,1162470911,BB 1162470912,1162471423,GD 1162471424,1162472703,BB 1162472704,1162473471,VC 1162473472,1162475007,GD 1162475008,1162477567,BB 1162477568,1162715135,US 1162715136,1162723327,CA 1162723328,1162806527,US 1162806528,1162806783,PR 1162806784,1162807295,US 1162807296,1162809343,PR 1162809344,1162811391,US 1162811392,1162811647,CW 1162811648,1162812159,US 1162812160,1162812415,DO 1162812416,1162813439,BS 1162813440,1162823679,US 1162823680,1162825727,GT 1162825728,1162831871,US 1162831872,1162833919,PR 1162833920,1162835967,GT 1162835968,1162836223,BS 1162836224,1162836735,CW 1162836736,1162836991,US 1162836992,1162838015,BS 1162838016,1162840063,PR 1162840064,1162853375,US 1162853376,1162854399,PR 1162854400,1162858495,JM 1162858496,1162862591,US 1162862592,1162862847,PR 1162862848,1162870783,US 1162870784,1162871295,BB 1162871296,1162879999,LC 1162880000,1162882559,DM 1162882560,1162883839,GD 1162883840,1162884863,BB 1162884864,1162885887,VC 1162885888,1162887167,BB 1162887168,1163398655,US 1163398656,1163398911,BD 1163398912,1163400959,US 1163400960,1163401215,BD 1163401216,1163401471,US 1163401472,1163401727,ID 1163401728,1163401983,US 1163401984,1163402239,BD 1163402240,1163402495,US 1163402496,1163402751,BD 1163402752,1163407359,US 1163407360,1163411455,CA 1163411456,1163468799,US 1163468800,1163469055,PR 1163469056,1163469311,US 1163469312,1163472895,PR 1163472896,1163479295,US 1163479296,1163479551,CA 1163479552,1163526143,US 1163526144,1163526399,CA 1163526400,1163526655,US 1163526656,1163526911,CA 1163526912,1163527167,US 1163527168,1163527679,CA 1163527680,1163527935,US 1163527936,1163529215,CA 1163529216,1163530655,US 1163530656,1163530663,CA 1163530664,1163530991,US 1163530992,1163532799,CA 1163532800,1163533055,US 1163533056,1163533311,CA 1163533312,1163533807,US 1163533808,1163533823,CA 1163533824,1163534255,US 1163534256,1163534271,CA 1163534272,1163536127,US 1163536128,1163536383,CA 1163536384,1163537663,US 1163537664,1163538431,CA 1163538432,1163538463,US 1163538464,1163538479,CA 1163538480,1163538575,US 1163538576,1163538591,CA 1163538592,1163539199,US 1163539200,1163539455,CA 1163539456,1163540351,US 1163540352,1163540479,CA 1163540480,1163540735,US 1163540736,1163541503,CA 1163541504,1163542015,US 1163542016,1163542527,CA 1163542528,1163543295,US 1163543296,1163543551,CA 1163543552,1163544831,US 1163544832,1163545087,CA 1163545088,1163545343,US 1163545344,1163545599,CA 1163545600,1163546015,US 1163546016,1163546031,CA 1163546032,1163546623,US 1163546624,1163546879,CA 1163546880,1163547135,US 1163547136,1163547391,CA 1163547392,1163547647,US 1163547648,1163547903,CA 1163547904,1163548159,US 1163548160,1163548927,CA 1163548928,1163549183,US 1163549184,1163549695,CA 1163549696,1163549951,US 1163549952,1163550207,CA 1163550208,1163550815,US 1163550816,1163550831,CA 1163550832,1163550847,US 1163550848,1163550975,CA 1163550976,1163551295,US 1163551296,1163551311,CA 1163551312,1163551455,US 1163551456,1163551487,CA 1163551488,1163551631,US 1163551632,1163551647,CA 1163551648,1163551743,US 1163551744,1163552255,CA 1163552256,1163552519,US 1163552520,1163552527,CA 1163552528,1163552543,US 1163552544,1163552559,CA 1163552560,1163552607,US 1163552608,1163552623,CA 1163552624,1163552767,US 1163552768,1163553791,CA 1163553792,1163554047,US 1163554048,1163554559,CA 1163554560,1163554815,US 1163554816,1163555839,CA 1163555840,1163556095,US 1163556096,1163556607,CA 1163556608,1163560959,US 1163560960,1163561983,CA 1163561984,1163562239,US 1163562240,1163563007,CA 1163563008,1163564031,US 1163564032,1163565311,CA 1163565312,1163567103,US 1163567104,1163568127,CA 1163568128,1163571199,US 1163571200,1163571967,CA 1163571968,1163572223,US 1163572224,1163572479,CA 1163572480,1163572991,US 1163572992,1163573247,CA 1163573248,1163575039,US 1163575040,1163575295,IN 1163575296,1163576575,CA 1163576576,1163579903,US 1163579904,1163580159,NL 1163580160,1163580927,US 1163580928,1163581183,CA 1163581184,1163581695,US 1163581696,1163581951,CA 1163581952,1163582003,US 1163582004,1163582007,CA 1163582008,1163582031,US 1163582032,1163582039,CA 1163582040,1163582079,US 1163582080,1163582111,CA 1163582112,1163582463,US 1163582464,1163583487,CA 1163583488,1163587583,US 1163587584,1163587839,CA 1163587840,1163588351,US 1163588352,1163588607,CA 1163588608,1163588863,US 1163588864,1163589631,CA 1163589632,1167851519,US 1167851520,1168113663,CA 1168113664,1168138239,US 1168138240,1168146431,JM 1168146432,1168211967,US 1168211968,1168220159,CA 1168220160,1168321535,US 1168321536,1168321791,CA 1168321792,1168393215,US 1168393216,1168393471,CA 1168393472,1168393503,US 1168393504,1168393519,CA 1168393520,1168393543,US 1168393544,1168393567,CA 1168393568,1168393663,US 1168393664,1168393791,CA 1168393792,1168393935,US 1168393936,1168393943,CA 1168393944,1168393951,US 1168393952,1168393983,CA 1168393984,1168394143,US 1168394144,1168394151,CA 1168394152,1168394279,US 1168394280,1168394303,CA 1168394304,1168394399,US 1168394400,1168394407,CA 1168394408,1168394431,US 1168394432,1168394447,CA 1168394448,1168394479,US 1168394480,1168394495,CA 1168394496,1168394575,US 1168394576,1168394591,CA 1168394592,1168394719,US 1168394720,1168394751,CA 1168394752,1168420863,US 1168420864,1168424959,CA 1168424960,1168461823,US 1168461824,1168465919,CA 1168465920,1168474111,US 1168474112,1168506879,CA 1168506880,1168510975,US 1168510976,1168515071,CA 1168515072,1168535551,US 1168535552,1168539647,CA 1168539648,1168593151,US 1168593152,1168593279,CA 1168593280,1168670719,US 1168670720,1168687103,CA 1168687104,1168697599,US 1168697600,1168697855,GB 1168697856,1168698111,NL 1168698112,1168698367,GB 1168698368,1168727551,US 1168727552,1168727807,ES 1168727808,1168859135,US 1168859136,1168863231,CA 1168863232,1168867327,US 1168867328,1168875519,CA 1168875520,1168916479,US 1168916480,1168932863,CA 1168932864,1168936959,US 1168936960,1168949247,CA 1168949248,1168949503,US 1168949504,1168949759,CA 1168949760,1168950271,US 1168950272,1168951295,CA 1168951296,1168952575,US 1168952576,1168952831,CA 1168952832,1168952887,US 1168952888,1168952895,CA 1168952896,1168955647,US 1168955648,1168956415,CA 1168956416,1168957183,US 1168957184,1168957311,IN 1168957312,1168957439,US 1168957440,1168958207,CA 1168958208,1168958271,US 1168958272,1168958303,CA 1168958304,1168958527,US 1168958528,1168958559,IN 1168958560,1168960671,US 1168960672,1168960703,CA 1168960704,1168961535,US 1168961536,1168961791,CA 1168961792,1168961807,US 1168961808,1168961815,CA 1168961816,1168961887,US 1168961888,1168961919,CA 1168961920,1168962303,US 1168962304,1168962559,CA 1168962560,1168963071,US 1168963072,1168965631,CA 1168965632,1168973823,US 1168973824,1168982015,CA 1168982016,1169182975,US 1169182976,1169183487,CA 1169183488,1169184767,US 1169184768,1169185023,CA 1169185024,1169185535,US 1169185536,1169186047,CA 1169186048,1169186303,SG 1169186304,1169203199,US 1169203200,1169211391,CA 1169211392,1170190335,US 1170190336,1170190591,GB 1170190592,1170190847,US 1170190848,1170191103,JP 1170191104,1170212351,US 1170212352,1170212607,NL 1170212608,1170227199,US 1170227200,1170231295,NL 1170231296,1170461183,US 1170461184,1170461695,CO 1170461696,1170465791,US 1170465792,1170466047,CY 1170466048,1170467839,US 1170467840,1170468351,DO 1170468352,1170470911,US 1170470912,1170471167,ES 1170471168,1170472959,US 1170472960,1170481151,CA 1170481152,1170489343,US 1170489344,1170497535,CA 1170497536,1170505727,US 1170505728,1170522111,CA 1170522112,1175726591,US 1175726592,1175726719,CA 1175726720,1175728639,US 1175728640,1175728895,CA 1175728896,1175977983,US 1175977984,1176068167,CA 1176068168,1176068175,US 1176068176,1176068191,CA 1176068192,1176068207,US 1176068208,1176502271,CA 1176502272,1176616959,US 1176616960,1176620031,CA 1176620032,1176620447,US 1176620448,1176620479,CA 1176620480,1176621311,US 1176621312,1176621567,CA 1176621568,1176622079,US 1176622080,1176622335,GB 1176622336,1176622591,US 1176622592,1176623103,CA 1176623104,1176623871,US 1176623872,1176625151,CA 1176625152,1176626111,US 1176626112,1176626127,CA 1176626128,1176630271,US 1176630272,1176631295,CA 1176631296,1176702975,US 1176702976,1176707071,CA 1176707072,1176731647,US 1176731648,1176735743,PR 1176735744,1176738303,US 1176738304,1176739071,CO 1176739072,1176739583,US 1176739584,1176739839,CO 1176739840,1176743935,CA 1176743936,1176752127,US 1176752128,1176756223,CA 1176756224,1176764415,US 1176764416,1176768511,PM 1176768512,1176770927,US 1176770928,1176770935,DO 1176770936,1176771327,US 1176771328,1176771583,KR 1176771584,1176771839,GB 1176771840,1176776703,US 1176776704,1176780799,CA 1176780800,1176867583,US 1176867584,1176867839,AU 1176867840,1176868095,US 1176868096,1176868111,AU 1176868112,1176895487,US 1176895488,1176897047,CA 1176897048,1176897055,US 1176897056,1176900735,CA 1176900736,1176900743,US 1176900744,1176904767,CA 1176904768,1176904775,US 1176904776,1176904871,CA 1176904872,1176904879,US 1176904880,1176917831,CA 1176917832,1176917839,AU 1176917840,1176925007,CA 1176925008,1176925015,NG 1176925016,1176928255,CA 1176928256,1177000703,US 1177000704,1177000735,CA 1177000736,1177000751,US 1177000752,1177000759,CA 1177000760,1177000791,US 1177000792,1177000799,CA 1177000800,1177000807,US 1177000808,1177000959,CA 1177000960,1177022975,US 1177022976,1177023231,GB 1177023232,1177030655,US 1177030656,1177033727,AG 1177033728,1177059327,US 1177059328,1177061375,CA 1177061376,1177062143,US 1177062144,1177075455,CA 1177075456,1177164415,US 1177164416,1177164543,CA 1177164544,1177164863,US 1177164864,1177164895,CA 1177164896,1177165055,US 1177165056,1177165311,CA 1177165312,1177354239,US 1177354240,1177419775,PR 1177419776,1177550847,US 1177550848,1177593599,CA 1177593600,1177593855,US 1177593856,1178075135,CA 1178075136,1178599423,US 1178599424,1179910143,CA 1179910144,1180113919,US 1180113920,1180114431,AE 1180114432,1191673855,US 1191673856,1191706623,CA 1191706624,1192232127,US 1192232128,1192232159,PA 1192232160,1192296447,US 1192296448,1192361983,CA 1192361984,1192427519,US 1192427520,1192460287,CA 1192464384,1192468479,US 1192468480,1192476671,CA 1192476672,1192488959,US 1192488960,1192493055,CA 1192493056,1202304255,US 1202304256,1202304383,CA 1202304384,1207975935,US 1207975936,1207980031,CA 1207980032,1208008703,US 1208008704,1208016895,CA 1208016896,1208020991,US 1208020992,1208025087,CA 1208025088,1208050943,US 1208050944,1208051199,CA 1208051200,1208074239,US 1208074240,1208082431,CA 1208082432,1208090623,US 1208090624,1208107007,CA 1208107008,1208590335,US 1208590336,1208598527,CA 1208598528,1208647679,US 1208647680,1208657775,CA 1208657776,1208657783,TR 1208657784,1208659967,CA 1208659968,1208721407,US 1208721408,1208729599,CA 1208729600,1208770559,US 1208770560,1208774655,CA 1208774656,1208778751,US 1208778752,1208795135,CA 1208795136,1208852479,US 1208852480,1208860671,CA 1208860672,1208918015,US 1208918016,1208922111,CA 1208922112,1208935935,US 1208935936,1208935943,AU 1208935944,1208935951,IN 1208935952,1208935959,SG 1208935960,1208935967,HK 1208935968,1208935975,KR 1208935976,1208935983,TW 1208935984,1208935991,IN 1208935992,1208935999,JP 1208936000,1208936003,HK 1208936004,1208936007,US 1208936008,1208936015,ID 1208936016,1208936031,US 1208936032,1208936039,IN 1208936040,1208936191,US 1208936192,1208936199,AU 1208936200,1208936207,SG 1208936208,1208936215,HK 1208936216,1208936223,IN 1208936224,1208936231,KR 1208936232,1208936239,TW 1208936240,1208936247,JP 1208936248,1208936255,IN 1208936256,1208936263,MY 1208936264,1208936295,US 1208936296,1208936299,HK 1208936300,1208936311,US 1208936312,1208936313,ID 1208936314,1208936319,US 1208936320,1208936447,IN 1208936448,1208954879,US 1208954880,1208958975,CA 1208958976,1208975359,US 1208975360,1208983551,CA 1208983552,1209204735,US 1209212928,1209358591,US 1209358592,1209358847,DE 1209358848,1209359103,GB 1209359104,1209434111,US 1209434112,1209436671,BB 1209436672,1209437183,VC 1209437184,1209440767,BB 1209440768,1209441279,GD 1209441280,1209442303,BB 1209442304,1209647103,US 1209647104,1209663487,CA 1209663488,1209718783,US 1209718784,1209719807,NL 1209719808,1209720831,SG 1209720832,1209729023,US 1209729024,1209786367,JM 1209786368,1209810943,US 1209810944,1209819135,CA 1209819136,1209823487,US 1209823488,1209823519,GB 1209823520,1209823543,US 1209823544,1209823551,GB 1209823552,1209824447,US 1209824448,1209824511,GB 1209824512,1209824767,CN 1209824768,1209861119,US 1209861120,1209861375,CA 1209861376,1209862143,US 1209862144,1209862399,CA 1209862400,1209863167,US 1209863168,1209863423,CA 1209863424,1209863679,IN 1209863680,1209863935,US 1209863936,1209864191,CA 1209864192,1209867263,US 1209867264,1209867519,CA 1209867520,1209917439,US 1209917440,1209925631,CA 1209925632,1210254935,US 1210254936,1210254943,CA 1210254944,1210256127,US 1210256128,1210256383,CA 1210256384,1210259967,US 1210259968,1210260223,CA 1210260224,1210316799,US 1210316800,1210317823,ID 1210317824,1210420223,US 1210420224,1210420479,IT 1210420480,1210421503,US 1210421504,1210421551,CA 1210421552,1210449919,US 1210449920,1210580991,CA 1210580992,1210847231,US 1210851328,1210925055,US 1210925056,1210941439,CA 1210941440,1211032271,US 1211032272,1211032287,DO 1211032288,1211033087,US 1211033088,1211033599,CO 1211033600,1211035711,US 1211035712,1211035775,CA 1211035776,1211038719,US 1211038720,1211038975,CY 1211038976,1211236351,US 1211236352,1211269119,PR 1211269120,1211303679,US 1211303680,1211303935,CA 1211303936,1211304223,US 1211304224,1211304239,CA 1211304240,1211304447,US 1211304448,1211304703,CA 1211304704,1211306783,US 1211306784,1211306879,CA 1211306880,1211308031,US 1211308032,1211308159,CA 1211308160,1211308167,US 1211308168,1211308175,CA 1211308176,1211308287,US 1211308288,1211308543,CA 1211308544,1211308719,US 1211308720,1211308727,CA 1211308728,1211308799,US 1211308800,1211310079,CA 1211310080,1211316479,US 1211316480,1211316991,CA 1211316992,1211317503,US 1211317504,1211317759,CA 1211317760,1211318271,US 1211318272,1211321343,BB 1211321344,1211322367,VC 1211322368,1211322623,BB 1211322624,1211324159,GD 1211324160,1211324927,VC 1211324928,1211333119,BB 1211333120,1211333631,VC 1211333632,1211333887,GD 1211333888,1211334655,VG 1211334656,1211367935,US 1211367936,1211368191,CA 1211368192,1211368447,EE 1211368448,1211390981,US 1211390982,1211390982,DE 1211390983,1211390989,US 1211390990,1211390990,DE 1211390991,1211391216,US 1211391217,1211391217,IT 1211391218,1211432959,US 1211432960,1211473919,CA 1211473920,1211596799,US 1211596800,1211605999,CA 1211606000,1211606003,US 1211606004,1211613183,CA 1211613184,1216872447,US 1216872448,1217396735,CA 1217396736,1218697215,US 1218697216,1218697727,IN 1218697728,1218698239,US 1218698240,1218698495,IN 1218698496,1218987263,US 1218987264,1218987519,CA 1218987520,1219256319,US 1219256320,1219264511,CA 1219264512,1219272703,US 1219272704,1219276799,CA 1219276800,1224091903,US 1224091904,1224092159,NL 1224092160,1224093183,US 1224093184,1224093439,NL 1224093440,1224094463,US 1224094464,1224094719,NL 1224094720,1224094975,US 1224094976,1224095487,NL 1224095488,1224099327,US 1224099328,1224099839,NL 1224099840,1224106751,US 1224106752,1224107519,NL 1224107520,1224124415,US 1224124416,1224126463,NL 1224126464,1224151039,US 1224151040,1224152575,NL 1224152576,1224171519,US 1224171520,1224173567,NL 1224173568,1224184063,US 1224184064,1224184319,NL 1224184320,1224189951,US 1224189952,1224191999,NL 1224192000,1224196095,US 1224196096,1224196607,NL 1224196608,1224197119,US 1224197120,1224198143,NL 1224198144,1224200191,US 1224200192,1224200959,NL 1224200960,1224201215,US 1224201216,1224202239,NL 1224202240,1224207359,US 1224207360,1224207871,NL 1224207872,1224210431,US 1224210432,1224212479,NL 1224212480,1224470527,US 1224470528,1224471567,NL 1224471568,1224471568,RU 1224471569,1224473599,NL 1224473600,1224474623,US 1224474624,1224475647,GT 1224475648,1224475903,PR 1224475904,1224476671,US 1224476672,1224476927,SX 1224476928,1224476975,US 1224476976,1224476977,SX 1224476978,1224477183,US 1224477184,1224477439,SX 1224477440,1224477695,US 1224477696,1224478719,SX 1224478720,1224480767,US 1224480768,1224484863,JM 1224484864,1224493055,GT 1224493056,1224497151,US 1224497152,1224501247,GT 1224501248,1224523519,JM 1224523520,1224523775,US 1224523776,1224525568,JM 1224525569,1224525823,US 1224525824,1224539904,JM 1224539905,1235708415,US 1235708416,1235708927,CA 1235708928,1237309823,US 1237309824,1237309951,CA 1237309952,1238547071,US 1238547072,1238547199,PR 1238547200,1241743359,US 1241743360,1241759743,CA 1241759744,1242300415,US 1242300416,1242562559,CA 1242562560,1244659711,US 1244659712,1244790783,CA 1244790784,1244831743,US 1244831744,1244839935,CA 1244839936,1244848127,US 1244848128,1244852223,CA 1244852224,1244864511,US 1244864512,1244872703,CA 1244872704,1245144575,US 1245144576,1245144831,CH 1245144832,1245183999,US 1245184000,1245446143,CA 1245446144,1245450186,US 1245450187,1245450187,GU 1245450188,1246890431,US 1246890432,1246890463,CA 1246890464,1246890464,US 1246890465,1246890495,CA 1246890496,1246902783,US 1246902784,1246903039,NL 1246903040,1246904575,US 1246904576,1246905343,CA 1246905344,1246905599,US 1246905600,1246912511,CA 1246912512,1246923519,US 1246923520,1246923775,AU 1246923776,1246937087,US 1246937088,1246945279,CA 1246945280,1247073023,US 1247073024,1247073279,CA 1247073280,1247490047,US 1247494144,1248864255,US 1248864256,1248866303,CA 1248866304,1248879615,US 1248880640,1248885759,US 1248885760,1248886783,CA 1248886784,1248899071,US 1248899072,1248900095,CA 1248900096,1248902143,US 1248902144,1248903167,CA 1248903168,1248913407,US 1248913408,1248915455,MF 1248915456,1248919551,US 1248919552,1248920575,CA 1248920576,1248921599,US 1248922624,1248923647,CA 1248923648,1248936959,US 1248936960,1248939007,CA 1248939008,1248946175,US 1248946176,1248947199,VG 1248947200,1248956415,US 1248956416,1248957439,CA 1248957440,1248958463,US 1248958464,1248959487,CA 1248959488,1248964607,US 1248964608,1248966655,CA 1248966656,1248970751,US 1248971776,1248998399,US 1248999424,1249003519,US 1249003520,1249005567,CA 1249005568,1249010687,US 1249010688,1249011711,CA 1249011712,1249019903,US 1249019904,1249020927,CA 1249020928,1249029119,US 1249029120,1249030143,CA 1249030144,1249032191,US 1249033216,1249036287,US 1249036288,1249037311,TC 1249037312,1249038335,US 1249038336,1249040383,CA 1249040384,1249046527,US 1249046528,1249047551,BM 1249047552,1249059327,US 1249059328,1249059839,CA 1249059840,1249082367,US 1249083392,1249099775,US 1249099776,1249101823,CA 1249101824,1249102847,PR 1249102848,1249103103,US 1249103104,1249103871,CA 1249103872,1249106943,US 1249106944,1249107967,CA 1249107968,1249130495,US 1249130496,1249131519,JM 1249131520,1249139711,US 1249139712,1249140268,MF 1249140269,1249140269,FR 1249140270,1249140735,MF 1249140736,1249142015,US 1249142016,1249142271,GB 1249142272,1249146879,US 1249146880,1249147903,CA 1249147904,1249163263,US 1249163264,1249165311,CA 1249165312,1249165823,US 1249165824,1249166335,CA 1249166336,1249171455,US 1249171456,1249173503,CA 1249173504,1249191935,US 1249191936,1249193983,CA 1249193984,1249195007,US 1249195008,1249196031,CA 1249196032,1249203199,US 1249203200,1249204223,GD 1249204224,1249210367,US 1249210368,1249212415,KY 1249212416,1249217535,US 1249217536,1249218559,CA 1249218560,1249227263,US 1249227264,1249227519,VG 1249227520,1249234687,US 1249234688,1249234943,GB 1249234944,1249236991,US 1249236992,1249239039,KY 1249239040,1249245183,US 1249245184,1249247231,CA 1249247232,1249256447,US 1249256448,1249257471,CA 1249257472,1249260543,US 1249260544,1249261567,CA 1249261568,1249267711,US 1249267712,1249268735,AF 1249268736,1249272831,US 1249272832,1249273855,CA 1249273856,1249281023,US 1249282048,1249310719,US 1249310720,1249311743,CA 1249311744,1249312767,US 1249312768,1249313791,CA 1249313792,1249335295,US 1249335296,1249337343,CA 1249337344,1249359871,US 1249359872,1249361919,CA 1249361920,1249379327,US 1249379328,1249380351,CA 1249380352,1249383423,US 1249384448,1249386495,PR 1249386496,1249391615,US 1249391616,1249392639,CA 1249392640,1249396735,US 1249396736,1249397759,CA 1249398784,1249409023,US 1249409024,1249410047,CA 1249410048,1249434623,US 1249434624,1249435647,CA 1249435648,1249449983,US 1249451008,1249452031,US 1249452032,1249453055,CA 1249453056,1249474559,US 1249474560,1249475583,CA 1249475584,1249479167,US 1249479168,1249479423,FR 1249479424,1249479679,US 1249479680,1249479935,CH 1249479936,1249480191,HK 1249480192,1249484799,US 1249484800,1249486847,CA 1249486848,1249492735,US 1249492736,1249492991,CA 1249492992,1249506303,US 1249506304,1249507327,CA 1249507328,1249522687,US 1249522688,1249523711,CA 1249523712,1249531903,US 1249531904,1249533951,GD 1249533952,1249542143,US 1249542144,1249544191,CA 1249544192,1249562623,US 1249562624,1249564671,CA 1249564672,1249571839,US 1249571840,1249572863,CA 1249572864,1249576959,US 1249576960,1249577983,CA 1249577984,1249592319,US 1249592320,1249593343,CA 1249593344,1249598463,US 1249598464,1249599487,CA 1249599488,1249609727,US 1249611776,1249637887,US 1249637888,1249638143,CA 1249638144,1249710143,US 1249710144,1249710207,CN 1249710208,1249710271,NL 1249710272,1249710591,BE 1249710592,1249710847,NL 1249710848,1249716479,US 1249716480,1249716735,TW 1249716736,1249717759,US 1249717760,1249718015,FI 1249718016,1249718271,NL 1249718272,1249720339,US 1249720340,1249720343,AU 1249720344,1249720351,US 1249720352,1249720367,JP 1249720368,1249720383,SG 1249720384,1249720511,US 1249720512,1249720527,IN 1249720528,1249720543,AU 1249720544,1249720575,US 1249720576,1249720591,FR 1249720592,1249720599,GB 1249720600,1249720607,DE 1249720608,1249720663,GB 1249720664,1249720671,SE 1249720672,1249720711,GB 1249720712,1249720719,NL 1249720720,1249720831,GB 1249720832,1249721119,US 1249721120,1249721135,CA 1249721136,1249721343,US 1249721344,1249721351,AT 1249721352,1249721359,BE 1249721360,1249721367,CH 1249721368,1249721375,CZ 1249721376,1249721407,DE 1249721408,1249721415,ES 1249721416,1249721423,FI 1249721424,1249721431,FR 1249721432,1249721439,HU 1249721440,1249721447,IE 1249721448,1249721455,IT 1249721456,1249721463,NL 1249721464,1249721471,NO 1249721472,1249721479,PL 1249721480,1249721487,PT 1249721488,1249721495,SE 1249721496,1249721503,GB 1249721504,1249721511,KE 1249721512,1249721519,TR 1249721520,1249721527,ZA 1249721528,1249721535,DK 1249721536,1249721539,PL 1249721540,1249721543,US 1249721544,1249721551,GB 1249721552,1249721599,US 1249721600,1249721607,AT 1249721608,1249721615,BE 1249721616,1249721623,CH 1249721624,1249721631,CZ 1249721632,1249721647,DE 1249721648,1249721655,DK 1249721656,1249721663,ES 1249721664,1249721671,FI 1249721672,1249721679,FR 1249721680,1249721687,HU 1249721688,1249721695,IE 1249721696,1249721703,IT 1249721704,1249721711,NL 1249721712,1249721719,NO 1249721720,1249721727,PL 1249721728,1249721735,PT 1249721736,1249721743,SE 1249721744,1249721751,GB 1249721752,1249721759,DE 1249721760,1249721767,FR 1249721768,1249721775,IE 1249721776,1249721783,RU 1249721784,1249721791,GB 1249721792,1249721799,KE 1249721800,1249721807,TR 1249721808,1249721815,ZA 1249721816,1249721833,US 1249721834,1249721835,GB 1249721836,1249722111,US 1249722112,1249722367,IN 1249722368,1249724671,US 1249724672,1249724694,NL 1249724695,1249724695,US 1249724696,1249724927,NL 1249724928,1249725183,FI 1249725184,1249752319,US 1249752320,1249752575,NL 1249752576,1249754111,US 1249754112,1249754367,IE 1249754368,1249754390,US 1249754391,1249754391,DE 1249754392,1249754623,US 1249754624,1249754879,SG 1249754880,1249796095,US 1249796096,1249804287,CA 1249804288,1249851903,US 1249851904,1249852159,FR 1249852160,1249886207,US 1249886208,1249902591,CA 1249902592,1254490111,US 1254490112,1254532095,CA 1254532096,1254532223,RU 1254532224,1254555647,CA 1254555648,1254621183,US 1254621184,1254629375,CA 1254629376,1254978751,US 1254978752,1254978767,LB 1254978768,1254989823,US 1254989824,1254998015,CA 1254998016,1255002111,US 1255002112,1255006207,CA 1255006208,1255011583,US 1255011584,1255011839,CA 1255011840,1255047167,US 1255047168,1255055359,CA 1255055360,1255210495,US 1255210496,1255211007,DE 1255211008,1255264511,US 1255264512,1255264767,SG 1255264768,1255274495,US 1255274496,1255274751,SG 1255274752,1255276543,US 1255276544,1255342079,CA 1255342080,1255367167,US 1255367168,1255367423,DE 1255367424,1255489535,US 1255489536,1255505919,PR 1255505920,1255514111,US 1255514112,1255522303,CA 1255522304,1255571455,US 1255571456,1255579647,CA 1255579648,1255588351,US 1255588352,1255588607,NL 1255588608,1255669759,US 1255669760,1255735295,CA 1255735296,1255770367,US 1255770368,1255770623,CA 1255770624,1255792127,US 1255792128,1255792383,IL 1255792384,1255972863,US 1255972864,1255981055,CA 1255981056,1256001535,US 1256001536,1256005631,CA 1256005632,1256030207,US 1256030208,1256034303,CA 1256034304,1256054399,US 1256054400,1256054783,CZ 1256054784,1256079359,US 1256079360,1256087551,KY 1256087552,1262783487,US 1262783488,1262783615,CA 1262783616,1262783743,US 1262783744,1262784511,CA 1262784512,1264717823,US 1264717824,1264718079,CA 1264718080,1264718591,US 1264718592,1264718847,CA 1264718848,1264719103,US 1264719104,1264719871,CA 1264719872,1264746527,US 1264746528,1264746543,CA 1264746544,1264762879,US 1264762880,1264763391,CA 1264763392,1264763647,IE 1264763648,1264766975,CA 1264766976,1264991311,US 1264991312,1264991319,JP 1264991320,1266147327,US 1266147328,1266155519,CA 1266155520,1268252671,US 1268252672,1268776959,CA 1268776960,1275600895,US 1275600896,1275604991,BM 1275604992,1275621375,US 1275621376,1275625471,CA 1275625472,1275658239,US 1275658240,1275658495,GB 1275658496,1275659007,US 1275659008,1275659263,GB 1275659264,1275665151,US 1275665152,1275665407,UA 1275665408,1275666431,US 1275666432,1275674623,CA 1275674624,1275707391,US 1275707392,1275711487,CA 1275711488,1275712511,US 1275712512,1275714047,CA 1275714048,1275714559,US 1275714560,1275715583,CA 1275715584,1275756543,US 1275756544,1275772927,CA 1275772928,1275789311,US 1275789312,1275822079,CA 1275822080,1275912759,US 1275912760,1275912783,CA 1275912784,1279262719,US 1279262720,1279787007,CA 1279787008,1279848447,US 1279848448,1279852543,PR 1279852544,1279950847,US 1279950848,1279951103,CA 1279951104,1279951231,US 1279951232,1279952127,CA 1279952128,1279952383,US 1279952384,1279952895,CA 1279952896,1279953151,US 1279953152,1279953663,CA 1279953664,1279953759,US 1279953760,1279953791,CA 1279953792,1279959551,US 1279959552,1279959807,CA 1279959808,1279960479,US 1279960480,1279960511,CA 1279960512,1279963135,US 1279963136,1279963391,IN 1279963392,1279965183,US 1279965184,1279966207,CA 1279966208,1279967231,US 1279967232,1279967487,CA 1279967488,1279968127,US 1279968128,1279968255,CA 1279968256,1279969167,US 1279969168,1279969183,CA 1279969184,1279969343,US 1279969344,1279969407,CA 1279969408,1279969663,US 1279969664,1279969791,CA 1279969792,1279970047,US 1279970048,1279970303,CA 1279970304,1279970559,US 1279970560,1279970815,CA 1279970816,1279970943,US 1279970944,1279971071,CA 1279971072,1279971583,US 1279971584,1279972095,CA 1279972096,1279973983,US 1279973984,1279974015,IN 1279974016,1279975423,US 1279975424,1279975679,CA 1279975680,1279976191,US 1279976192,1279976959,CA 1279976960,1279977215,US 1279977216,1279977471,CA 1279977472,1279977727,US 1279977728,1279977983,CA 1279977984,1279979775,US 1279979776,1279980031,CA 1279980032,1279980287,US 1279980288,1279981567,CA 1279981568,1279999999,US 1280000000,1280032767,CA 1280032768,1280040959,US 1280040960,1280049151,CA 1280049152,1280073727,US 1280073728,1280081919,CA 1280081920,1280090111,US 1280090112,1280091135,AG 1280091136,1280092159,VG 1280092160,1280093183,KN 1280093184,1280094207,VG 1280094208,1280095231,AI 1280095232,1280095487,KN 1280095488,1280097279,AG 1280097280,1280097791,LC 1280097792,1280098303,AG 1280098304,1280102399,PR 1280102400,1280126975,US 1280126976,1280131071,JP 1280131072,1280139263,CA 1280139264,1280242175,US 1280242176,1280242176,CA 1280242177,1291845631,US 1291845632,1292894207,DE 1292894208,1293156351,NO 1293156352,1293549567,DE 1293549568,1293680639,ES 1293680640,1293811711,MK 1293811712,1293942783,SA 1293942784,1294073855,PL 1294073856,1294204927,RU 1294204928,1294237695,RO 1294237696,1294270463,IR 1294270464,1294303231,DE 1294303232,1294335999,RU 1294336000,1294368767,SI 1294368768,1294401535,LV 1294401536,1294434303,RU 1294434304,1294467071,IT 1294467072,1294499839,RU 1294499840,1294532607,NO 1294532608,1294598143,RU 1294598144,1294630911,IT 1294630912,1294663679,LB 1294663680,1294696447,IT 1294696448,1294729215,RU 1294729216,1294761983,GB 1294761984,1294794751,SY 1294794752,1294827519,PL 1294827520,1294860287,RU 1294860288,1294893055,PL 1294893056,1294925823,RS 1294925824,1294958591,DE 1294958592,1294991359,UA 1294991360,1295024639,CZ 1295024640,1295024895,SK 1295024896,1295047679,CZ 1295047680,1295048191,SK 1295048192,1295056895,CZ 1295056896,1295122431,GR 1295122432,1295253503,RU 1295253504,1295319039,UA 1295319040,1295384575,SE 1295384576,1295450111,PT 1295450112,1295515647,PL 1295515648,1295777791,CH 1295777792,1296039935,NL 1296039936,1296072703,SA 1296072704,1296105471,DE 1296105472,1296171007,PL 1296171008,1296203775,DK 1296203776,1296236543,RU 1296236544,1296237439,FR 1296237440,1296237567,IT 1296237568,1296237823,FR 1296237824,1296238079,GB 1296238080,1296238591,FR 1296238592,1296239103,NL 1296239104,1296239231,FR 1296239232,1296239359,NL 1296239360,1296239615,DE 1296239616,1296241407,FR 1296241408,1296242175,NL 1296242176,1296242303,FR 1296242304,1296242431,NL 1296242432,1296243455,FR 1296243456,1296243711,DE 1296243712,1296244223,US 1296244224,1296244479,NL 1296244480,1296244991,FR 1296244992,1296245247,CH 1296245248,1296245503,FR 1296245504,1296245759,NL 1296245760,1296246783,ES 1296246784,1296247295,NL 1296247296,1296248959,FR 1296248960,1296249023,DE 1296249024,1296249087,GB 1296249088,1296249279,FR 1296249280,1296249343,DE 1296249344,1296249599,FR 1296249600,1296249615,GB 1296249616,1296250367,FR 1296250368,1296250399,CZ 1296250400,1296250431,DE 1296250432,1296250463,PL 1296250464,1296250495,RO 1296250496,1296250527,FR 1296250528,1296250559,DK 1296250560,1296250623,FR 1296250624,1296250847,BE 1296250848,1296250879,GB 1296250880,1296251199,FR 1296251200,1296251231,NL 1296251232,1296251391,FR 1296251392,1296251775,NL 1296251776,1296251903,DE 1296251904,1296252479,FR 1296252480,1296252487,ES 1296252488,1296252535,FR 1296252536,1296252543,IT 1296252544,1296252591,FR 1296252592,1296252595,GB 1296252596,1296252599,FR 1296252600,1296252607,GB 1296252608,1296252615,NL 1296252616,1296252623,ES 1296252624,1296252647,FR 1296252648,1296252655,GB 1296252656,1296252663,IE 1296252664,1296252667,FR 1296252668,1296252671,GB 1296252672,1296252871,FR 1296252872,1296252879,DE 1296252880,1296256839,FR 1296256840,1296256847,US 1296256848,1296258303,FR 1296258304,1296258559,NL 1296258560,1296258815,US 1296258816,1296259071,NL 1296259072,1296259839,FR 1296259840,1296260095,NL 1296260096,1296260351,US 1296260352,1296261119,FR 1296261120,1296262143,DE 1296262144,1296262399,FR 1296262400,1296262655,US 1296262656,1296263679,FR 1296263680,1296263935,US 1296263936,1296264263,FR 1296264264,1296264271,GB 1296264272,1296264287,FR 1296264288,1296264303,US 1296264304,1296266239,FR 1296266240,1296266495,US 1296266496,1296269055,FR 1296269056,1296269311,US 1296269312,1296302079,BY 1296302080,1296334847,GB 1296334848,1296367615,DK 1296367616,1296400383,GR 1296400384,1296433151,BH 1296433152,1296465919,BG 1296465920,1296469759,LU 1296469760,1296473263,FR 1296473264,1296473279,CD 1296473280,1296479743,FR 1296479744,1296482303,NO 1296482304,1296498687,FR 1296498688,1296531455,BG 1296531456,1296564223,MT 1296564224,1296566271,GB 1296566272,1296568319,DE 1296568320,1296570367,RU 1296570368,1296574463,IT 1296574464,1296576511,FR 1296576512,1296578559,DK 1296578560,1296580607,FI 1296580608,1296582655,CH 1296582656,1296584703,IE 1296584704,1296586751,RU 1296586752,1296588799,FR 1296588800,1296590847,SE 1296590848,1296592895,ES 1296592896,1296594943,NL 1296594944,1296596991,RU 1296596992,1296599039,DE 1296599040,1296601087,RU 1296601088,1296605183,NL 1296605184,1296607231,AT 1296607232,1296609279,NL 1296609280,1296611327,CH 1296611328,1296613375,TR 1296613376,1296615423,IT 1296615424,1296617471,GB 1296617472,1296619519,ES 1296619520,1296621567,DE 1296621568,1296623615,SE 1296623616,1296625663,BE 1296625664,1296629759,RU 1296629760,1296633855,GB 1296635904,1296637951,RU 1296637952,1296639999,CH 1296640000,1296642047,ES 1296642048,1296644095,RU 1296644096,1296646143,IT 1296646144,1296648191,RU 1296648192,1296650239,GB 1296650240,1296652287,ES 1296652288,1296654335,RU 1296654336,1296656383,BE 1296656384,1296658431,RU 1296658432,1296662527,GB 1296662528,1296664575,KZ 1296664576,1296666623,RU 1296666624,1296670719,GB 1296670720,1296672767,ES 1296672768,1296674815,GB 1296674816,1296676863,BE 1296676864,1296677295,JE 1296677296,1296677303,NG 1296677304,1296677639,JE 1296677640,1296677647,NG 1296677648,1296677727,JE 1296677728,1296677735,NG 1296677736,1296678791,JE 1296678792,1296678799,NG 1296678800,1296678903,JE 1296678904,1296678911,NG 1296678912,1296680959,SA 1296680960,1296683007,ES 1296683008,1296685055,IE 1296685056,1296687103,TR 1296687104,1296689151,NL 1296689152,1296691199,RU 1296691200,1296693247,CH 1296693248,1296695295,DE 1296695296,1296697343,CH 1296697344,1296699391,RU 1296699392,1296701439,IT 1296701440,1296703487,RU 1296703488,1296705535,BY 1296705536,1296707583,GE 1296707584,1296709631,NL 1296709632,1296711679,CY 1296711680,1296713727,KZ 1296713728,1296715775,RU 1296715776,1296717823,CH 1296717824,1296719871,BE 1296719872,1296721919,CH 1296721920,1296723967,GB 1296723968,1296726015,AT 1296726016,1296728063,GB 1296728064,1296730111,SE 1296730112,1296732159,DE 1296732160,1296734207,IT 1296734208,1296736255,US 1296736256,1296738303,NO 1296738304,1296738815,CH 1296738816,1296739327,FI 1296739328,1296740351,CH 1296740352,1296744447,RU 1296744448,1296746495,GB 1296748544,1296750591,FR 1296750592,1296752639,NO 1296752640,1296754687,BA 1296754688,1296756735,DE 1296756736,1296758783,FR 1296758784,1296760831,RS 1296760832,1296764927,RU 1296764928,1296769023,AT 1296769024,1296771071,TR 1296771072,1296773119,LT 1296773120,1296774143,FR 1296775168,1296779263,FR 1296779264,1296781311,CZ 1296781312,1296783359,DK 1296783360,1296785407,LB 1296785408,1296787455,IE 1296787456,1296789503,GB 1296789504,1296791551,CH 1296791552,1296793599,GB 1296793600,1296795647,RU 1296795648,1296797695,GB 1296797696,1296799743,UA 1296799744,1296801791,RU 1296801792,1296803839,DK 1296803840,1296805887,RU 1296805888,1296807935,ES 1296807936,1296812031,GB 1296812032,1296814079,DE 1296814080,1296816127,NO 1296816128,1296818175,TR 1296818176,1296820223,ES 1296820224,1296822271,GB 1296822272,1296824319,IE 1296824320,1296826367,DE 1296826368,1296842751,BG 1296842752,1296859135,GB 1296859136,1296875519,BG 1296875520,1296891903,DE 1296891904,1296908287,BG 1296908288,1296924671,IR 1296924672,1296941055,BG 1296941056,1296957439,BA 1296957440,1296973823,BG 1296973824,1296990207,CZ 1296990208,1297006591,BG 1297006592,1297022975,BA 1297022976,1297039359,LT 1297039360,1297055743,TR 1297055744,1297072127,RU 1297072128,1297088511,PL 1297088512,1297121279,AT 1297121280,1297154047,SE 1297154048,1297154815,RO 1297154816,1297155071,MD 1297155072,1297162239,RO 1297162240,1297166335,IR 1297166336,1297168383,RO 1297168384,1297170431,AZ 1297170432,1297170943,RO 1297170944,1297171455,GB 1297171456,1297172479,RO 1297172480,1297172991,GB 1297172992,1297173503,RO 1297173504,1297173759,IR 1297173760,1297173775,IQ 1297173776,1297175551,IR 1297175552,1297176319,GB 1297176320,1297176831,RO 1297176832,1297177599,GB 1297177600,1297177855,QA 1297177856,1297178111,US 1297178112,1297178367,QA 1297178368,1297178623,RO 1297178624,1297178879,NL 1297178880,1297181951,RO 1297181952,1297182463,DE 1297182464,1297182719,RO 1297182720,1297184767,ES 1297184768,1297185279,BZ 1297185280,1297185791,RO 1297185792,1297185919,NL 1297185920,1297190143,RO 1297190144,1297190399,ES 1297190400,1297195007,RO 1297195008,1297195135,NL 1297195136,1297196799,RO 1297196800,1297197055,CN 1297197056,1297203199,RO 1297203200,1297211391,IR 1297211392,1297215487,RO 1297215488,1297217535,NL 1297217536,1297219583,AZ 1297219584,1297285119,RU 1297350656,1297416191,FR 1297416192,1297481727,BG 1297481728,1297514495,GB 1297514496,1297547263,FI 1297547264,1297549311,PL 1297549312,1297551359,LT 1297551360,1297553407,SA 1297553408,1297555455,IE 1297555456,1297559551,UA 1297559552,1297561599,DE 1297561600,1297563647,NL 1297563648,1297565695,RU 1297565696,1297567743,PL 1297567744,1297569791,RU 1297569792,1297571839,RO 1297571840,1297573887,RU 1297573888,1297575935,FR 1297575936,1297577983,RU 1297577984,1297580031,PL 1297580032,1297582079,CH 1297582080,1297584127,PL 1297584128,1297588223,UA 1297588224,1297590271,NL 1297590272,1297592319,RU 1297592320,1297594367,GB 1297594368,1297596415,DE 1297596416,1297598463,UA 1297598464,1297602559,RU 1297602560,1297604607,PL 1297604608,1297606655,DE 1297606656,1297610751,CZ 1297610752,1297612799,DE 1297612800,1297629183,RU 1297629184,1297645567,NO 1297645568,1297661951,PL 1297661952,1297678335,UA 1297678336,1297694719,IT 1297694720,1297711103,PL 1297711104,1297727487,GB 1297727488,1297743871,MD 1297743872,1297760255,DE 1297760256,1297776639,LT 1297776640,1297793023,DE 1297793024,1297809407,UA 1297809408,1297825791,PL 1297825792,1297842175,RU 1297842176,1297858559,UA 1297858560,1297860607,RU 1297860608,1297862655,PT 1297862656,1297864703,FI 1297864704,1297866751,SE 1297866752,1297868799,RU 1297868800,1297870847,DE 1297870848,1297872895,FR 1297872896,1297874943,GB 1297874944,1297879040,CY 1297879041,1297883135,TR 1297883136,1297891327,PL 1297891328,1297899519,GB 1297899520,1297915903,TR 1297915904,1297924095,BH 1297924096,1297932287,CZ 1297932288,1297940479,GE 1297940480,1297948671,LV 1297948672,1297956863,UA 1297956864,1297965055,NL 1297965056,1297973247,RU 1297973248,1297981439,GB 1297981440,1297989631,RO 1297989632,1297997823,CZ 1297997824,1298006015,IT 1298006016,1298016255,RU 1298016256,1298016511,LT 1298016512,1298017279,RU 1298017280,1298018303,BY 1298018304,1298020351,RU 1298020352,1298022399,BY 1298022400,1298030591,IT 1298030592,1298038783,RU 1298038784,1298046975,SI 1298046976,1298063359,RU 1298063360,1298065407,FR 1298065408,1298067455,NO 1298067456,1298071551,NL 1298071552,1298073599,TJ 1298073600,1298075647,RU 1298075648,1298077695,CY 1298077696,1298079743,NL 1298079744,1298081791,GB 1298081792,1298083839,CZ 1298083840,1298085887,PL 1298085888,1298087935,KG 1298087936,1298089983,FR 1298089984,1298092031,NO 1298092032,1298094079,GB 1298094080,1298096127,RU 1298096128,1298098175,NL 1298098176,1298100223,SE 1298100224,1298102271,GB 1298102272,1298104319,CH 1298104320,1298106367,RU 1298106368,1298108415,IT 1298108416,1298110463,FI 1298110464,1298112511,ES 1298112512,1298114559,IE 1298114560,1298116607,IT 1298116608,1298118655,GB 1298118656,1298120703,AM 1298120704,1298122751,CZ 1298122752,1298124799,RU 1298124800,1298126847,IT 1298126848,1298128895,SA 1298128896,1298130943,NL 1298130944,1298132991,BG 1298132992,1298135039,FI 1298135040,1298137087,NL 1298137088,1298661375,GB 1298661376,1298677759,FR 1298677760,1298694143,IR 1298694144,1298710527,BG 1298710528,1298726911,CZ 1298726912,1298743295,RS 1298743296,1298759679,FI 1298759680,1298776063,RU 1298776064,1298792447,SE 1298792448,1298825215,RU 1298825216,1298841599,NO 1298841600,1298857983,RU 1298857984,1298874367,SE 1298874368,1298907135,GB 1298907136,1298923519,IE 1298923520,1298939903,IT 1298939904,1298956287,RU 1298956288,1298972671,GB 1298972672,1298989055,RU 1298989056,1299005439,UA 1299005440,1299009023,NL 1299009024,1299009279,BE 1299009280,1299010047,NL 1299010048,1299010815,BE 1299010816,1299013119,NL 1299013120,1299013375,BE 1299013376,1299013631,NL 1299013632,1299015679,BE 1299015680,1299017727,NL 1299017728,1299019775,BE 1299019776,1299020031,NL 1299020032,1299021055,BE 1299021056,1299021823,NL 1299021824,1299026111,CH 1299026112,1299026127,ES 1299026128,1299038207,CH 1299038208,1299054591,FI 1299054592,1299070975,SE 1299070976,1299087359,SA 1299087360,1299103743,HU 1299103744,1299120127,NO 1299120128,1299136511,SI 1299136512,1299169279,HU 1299169280,1299174399,FR 1299174400,1299178495,GB 1299178496,1299185663,FR 1299185664,1299447807,PL 1299447808,1299709951,AT 1299709952,1299972095,UA 1299972096,1300234239,IL 1300234240,1302331391,FR 1302331392,1303154431,NL 1303154432,1303154687,RO 1303154688,1303379967,NL 1303379968,1304428543,DE 1304428544,1305477119,FR 1305477120,1305739263,ES 1305739264,1306001407,DK 1306001408,1306198015,SE 1306198016,1306206207,LV 1306206208,1306214399,HR 1306214400,1306222591,LT 1306222592,1306230783,HR 1306230784,1306238975,LT 1306238976,1306263551,SE 1306263552,1306271743,KE 1306271744,1306279935,RU 1306279936,1306288127,IT 1306288128,1306296319,AT 1306296320,1306312703,RU 1306312704,1306320895,UZ 1306320896,1306329087,DE 1306329088,1306337279,BA 1306337280,1306345471,HU 1306345472,1306353663,LT 1306353664,1306361855,SA 1306361856,1306370047,RU 1306370048,1306378239,GB 1306378240,1306386431,RU 1306386432,1306394623,DK 1306394624,1306402815,ME 1306402816,1306411007,RU 1306411008,1306419199,NL 1306419200,1306427391,RU 1306427392,1306435583,UA 1306435584,1306451967,NO 1306451968,1306460159,PL 1306460160,1306468351,IT 1306468352,1306476543,FI 1306476544,1306492927,RU 1306492928,1306501119,TR 1306501120,1306509311,NO 1306509312,1306525695,PL 1306525696,1307049983,ES 1307049984,1307066367,RU 1307068870,1307068870,CH 1307074560,1307082751,SA 1307082752,1307092991,RU 1307092992,1307095039,GB 1307095040,1307097087,SA 1307097088,1307099135,RU 1307099136,1307107327,RO 1307107328,1307115519,DE 1307115520,1307123711,RU 1307123712,1307131903,NL 1307131904,1307140095,EE 1307140096,1307148287,FR 1307148288,1307156479,GB 1307156480,1307172863,RU 1307172864,1307181055,DK 1307181056,1307189247,RU 1307189248,1307191295,DE 1307191296,1307191551,CZ 1307191552,1307192063,US 1307192064,1307192319,GB 1307192320,1307192575,US 1307192576,1307192831,DE 1307192832,1307193343,CZ 1307193344,1307195391,NO 1307195392,1307197439,CH 1307197440,1307205631,HU 1307205632,1307213823,FI 1307213824,1307222015,SI 1307222016,1307230207,DK 1307230208,1307238399,RU 1307238400,1307246591,SK 1307246592,1307254783,KG 1307254784,1307262975,NL 1307262976,1307271167,AT 1307271168,1307279359,MD 1307279360,1307287551,LB 1307287552,1307295743,DE 1307295744,1307303935,RU 1307303936,1307312127,SE 1307312128,1307320319,PL 1307320320,1307336703,RU 1307336704,1307344895,DE 1307344896,1307353087,RU 1307353088,1307361279,BG 1307361280,1307369471,CZ 1307369472,1307377663,RU 1307377664,1307385855,PL 1307385856,1307394047,AT 1307394048,1307402239,IR 1307402240,1307410431,HR 1307410432,1307418623,CZ 1307418624,1307426815,IR 1307426816,1307435007,CH 1307435008,1307437055,DE 1307437056,1307441151,ES 1307441152,1307442175,NL 1307442176,1307443199,DE 1307443200,1307451391,IT 1307451392,1307459583,SE 1307459584,1307467775,BG 1307467776,1307484159,RU 1307484160,1307492351,GB 1307492352,1307500543,BA 1307500544,1307508735,RU 1307508736,1307516927,BA 1307516928,1307525119,CH 1307525120,1307533311,BA 1307533312,1307535871,GB 1307535872,1307536127,US 1307536128,1307541503,GB 1307541504,1307549695,IT 1307549696,1307557887,UA 1307557888,1307574271,RU 1307574272,1307578367,GB 1307578368,1307582463,FI 1307582464,1307586559,KZ 1307586560,1307590655,GB 1307590656,1307594751,SE 1307594752,1307598847,SA 1307598848,1307602943,CZ 1307602944,1307607039,ES 1307607040,1307611135,SA 1307611136,1307619327,RU 1307619328,1307623423,CZ 1307623424,1307627519,FR 1307627520,1307631615,SE 1307631616,1307635711,IT 1307635712,1307636735,EE 1307636736,1307637759,LV 1307637760,1307639807,LT 1307639808,1307643903,IT 1307643904,1307652095,RU 1307652096,1307656191,ES 1307656192,1307660287,JO 1307660288,1307662335,BE 1307662336,1307664383,NL 1307664384,1307668479,NO 1307668480,1307672575,ES 1307672576,1307676671,DK 1307676672,1307680767,RU 1307680768,1307684863,LV 1307684864,1307688959,GB 1307688960,1307693055,LT 1307693056,1307697151,IT 1307697152,1307701247,NL 1307701248,1307709439,RU 1307709440,1307713535,AL 1307713536,1307717631,IT 1307717632,1307721727,GE 1307721728,1307725823,AT 1307725824,1307729919,CZ 1307729920,1307734015,RU 1307734016,1307738111,NL 1307738112,1307742207,IT 1307742208,1307746303,HU 1307746304,1307750399,UA 1307750400,1307754495,IT 1307754496,1307757055,GB 1307757056,1307757311,FR 1307757312,1307758591,GB 1307758592,1307762687,SM 1307762688,1307766783,PL 1307766784,1307770879,GB 1307770880,1307774975,RU 1307774976,1307779071,RS 1307779072,1307787263,DK 1307787264,1307791359,MT 1307795456,1307803647,RU 1307803648,1307807743,DK 1307807744,1307811839,SE 1307811840,1307815935,NL 1307816192,1307816447,GB 1307817216,1307817471,DE 1307817984,1307818048,GB 1307818049,1307818049,BE 1307818050,1307818239,GB 1307819008,1307819263,GB 1307819264,1307819519,NL 1307819520,1307819775,GB 1307820032,1307824127,PT 1307824128,1307828223,HU 1307828224,1307832319,NL 1307832320,1307836415,RU 1307836416,1307840511,SE 1307840512,1307844607,RU 1307844608,1307848703,UA 1307848704,1307852799,CH 1307852800,1307856895,RU 1307856896,1307860991,IT 1307860992,1307865087,DE 1307865088,1307869183,AZ 1307869184,1307873279,GB 1307873280,1307877375,TJ 1307877376,1307881471,RU 1307881472,1307885567,IT 1307885568,1307889663,BG 1307889664,1307893759,RU 1307893760,1307897855,SE 1307897856,1307901951,AT 1307901952,1307906047,JO 1307906048,1307910143,CH 1307910144,1307914239,DE 1307914240,1307918335,NL 1307918336,1307922431,GB 1307922432,1307926527,NL 1307926528,1307930623,KZ 1307930624,1307934719,RU 1307934720,1307938815,FR 1307938816,1307942911,TR 1307942912,1307947007,RU 1307947008,1307951103,CH 1307951104,1307959295,RU 1307959296,1307963391,IR 1307963392,1307967487,PL 1307967488,1307971583,IT 1307971584,1307979775,GB 1307979776,1307981823,ZW 1307981824,1307983871,GB 1307983872,1307987967,LB 1307987968,1307992063,FR 1307992064,1307996159,RU 1307996160,1308000255,DE 1308000256,1308004351,CH 1308004352,1308008447,RU 1308008448,1308012543,GB 1308012544,1308016639,ES 1308016640,1308020735,FI 1308020736,1308024831,BG 1308024832,1308033023,RU 1308033024,1308037119,DE 1308037120,1308041215,UA 1308041216,1308049407,RU 1308049408,1308053503,DK 1308053504,1308055551,DE 1308055552,1308057599,AL 1308065792,1308069887,RU 1308069888,1308073983,NO 1308073984,1308078079,RU 1308078080,1308080127,NL 1308080128,1308082175,RU 1308082176,1308084223,GB 1308084224,1308086271,RS 1308086272,1308088319,RU 1308088320,1308090367,UA 1308090368,1308092415,SK 1308092416,1308096511,RU 1308096512,1308098559,RS 1308098560,1308360703,NL 1308360704,1308622847,PL 1308622848,1308884991,HR 1308884992,1309147135,IT 1309147136,1309409279,PL 1309409280,1309671423,IT 1309671424,1309933567,IE 1309933568,1310195711,BE 1310195712,1310197759,RU 1310197760,1310199807,CZ 1310199808,1310201855,IE 1310201856,1310203903,RU 1310203904,1310205951,FR 1310205952,1310207999,RU 1310208000,1310210047,MD 1310210048,1310212095,RU 1310212096,1310214143,HU 1310214144,1310216191,UA 1310216192,1310218239,IT 1310222336,1310224383,RS 1310224384,1310226431,GB 1310226432,1310228479,BE 1310228480,1310230527,FR 1310230528,1310232575,ES 1310232576,1310234623,NO 1310234624,1310236671,RU 1310236672,1310238719,PL 1310238720,1310240767,BE 1310240768,1310242815,RU 1310242816,1310244863,HU 1310244864,1310246911,EE 1310246912,1310248959,ZA 1310248960,1310251007,IM 1310251008,1310255103,RU 1310255104,1310257151,CZ 1310257152,1310259199,FR 1310259200,1310261247,GB 1310261248,1310277631,UA 1310277632,1310310399,RU 1310310400,1310326783,GB 1310326784,1310343167,NO 1310343168,1310359551,IT 1310359552,1310392319,UA 1310392320,1310408703,NL 1310408704,1310425087,FI 1310425088,1310457855,UA 1310457856,1310474239,PL 1310474240,1310490623,EE 1310490624,1310507007,BA 1310507008,1310523391,LV 1310523392,1310556159,RU 1310556160,1310572543,PT 1310572544,1310588927,BE 1310588928,1310605311,RU 1310605312,1310621695,PL 1310621696,1310638079,RS 1310638080,1310654463,UA 1310654464,1310656511,RU 1310656512,1310657535,GB 1310657536,1310658559,SE 1310658560,1310660607,RU 1310660608,1310662655,CZ 1310662656,1310664703,DK 1310664704,1310666751,FR 1310666752,1310668799,NL 1310668800,1310670847,RO 1310670848,1310672895,DE 1310672896,1310674943,RU 1310674944,1310676991,NO 1310676992,1310679039,PL 1310679040,1310681087,RU 1310681088,1310683135,GB 1310683136,1310685183,NL 1310685184,1310687231,PL 1310687232,1310689279,RO 1310689280,1310695423,PL 1310695424,1310695935,RU 1310695936,1310696447,PL 1310696448,1310696703,RO 1310696704,1310696959,SE 1310696960,1310697471,PL 1310697472,1310699519,DE 1310699520,1310705663,UA 1310705664,1310707711,RU 1310707712,1310707967,GB 1310707968,1310708223,PL 1310708224,1310708479,RU 1310708480,1310708735,GB 1310708736,1310708927,IE 1310708928,1310708943,GB 1310708944,1310709199,IE 1310709200,1310709215,DE 1310709216,1310709231,NL 1310709232,1310709247,IE 1310709248,1310709759,PL 1310709760,1310711807,RU 1310711808,1310713855,LT 1310713856,1310715903,UA 1310715904,1310717951,RU 1310717952,1310719999,UA 1310720000,1310851071,GB 1310851072,1310921103,DE 1310921104,1310921119,ES 1310921120,1310982143,DE 1310982144,1311113215,RU 1311113216,1311244287,IR 1311244288,1311246335,MK 1311246336,1311248383,IT 1311248384,1311250431,GB 1311250432,1311252479,RU 1311252480,1311253447,GB 1311253448,1311253455,IT 1311253456,1311253887,GB 1311253888,1311253895,IT 1311253896,1311254007,GB 1311254008,1311254015,IT 1311254016,1311254527,GB 1311254528,1311256575,SE 1311256576,1311258623,FR 1311258624,1311262719,GB 1311262720,1311262735,CH 1311262736,1311262767,FR 1311262768,1311264767,CH 1311264768,1311266815,RU 1311266816,1311268863,FR 1311268864,1311270911,BE 1311270912,1311271935,RU 1311271936,1311272447,KZ 1311272448,1311272703,RU 1311272704,1311272959,IE 1311272960,1311275007,GB 1311275008,1311277055,FR 1311277056,1311279103,IT 1311279104,1311280127,BG 1311280128,1311280383,MK 1311280384,1311281151,BG 1311281152,1311285247,GB 1311285248,1311289343,IT 1311289344,1311291391,LB 1311291392,1311293439,RU 1311293440,1311295487,NL 1311295488,1311297535,IT 1311297536,1311299583,AT 1311299584,1311301631,RU 1311301632,1311303679,TR 1311303680,1311307775,GB 1311307776,1311309823,IS 1311309824,1311311871,GB 1311311872,1311315967,CZ 1311315968,1311318015,PL 1311318016,1311320063,RU 1311320064,1311322111,FR 1311324160,1311326207,LB 1311326208,1311328255,BE 1311328256,1311330303,NL 1311332352,1311338495,RU 1311338496,1311340543,AT 1311340544,1311342591,NO 1311342592,1311344639,FR 1311344640,1311346687,NO 1311346688,1311348735,AT 1311348736,1311350783,GB 1311350784,1311352831,FR 1311352832,1311354879,SK 1311354880,1311356927,RU 1311356928,1311358975,FR 1311358976,1311361023,RU 1311361024,1311363071,NL 1311363072,1311365119,GB 1311365120,1311367167,DE 1311367168,1311369215,GB 1311369216,1311371263,FR 1311371264,1311373311,SE 1311373312,1311375359,FR 1311375360,1311506431,DE 1311506432,1311593431,CZ 1311593432,1311593432,US 1311593433,1311637503,CZ 1311637504,1312292863,DE 1312292864,1312304383,LT 1312304384,1312304639,GB 1312304640,1312564479,LT 1312564480,1312564735,RU 1312564736,1312817151,LT 1312817152,1313191295,SE 1313191296,1313191423,DK 1313191424,1313865727,SE 1313865728,1313931263,CZ 1313931264,1313996799,RU 1313996800,1314062335,SE 1314062336,1314127871,BG 1314127872,1314193407,LV 1314193408,1314258943,RU 1314258944,1314324479,GB 1314324480,1314390015,GR 1314390016,1314455551,PL 1314455552,1314521087,KW 1314521088,1314586623,BG 1314586624,1314652159,NO 1314652160,1314717695,HU 1314717696,1314783231,SA 1314783232,1314848767,DE 1314848768,1314914303,SA 1314914304,1315045375,RO 1315045376,1315176447,SK 1315176448,1315307519,QA 1315307520,1315438591,CZ 1315438592,1315504127,AT 1315504128,1315569663,GB 1315569664,1315700735,RU 1315700736,1315704831,SE 1315704832,1315708927,HU 1315708928,1315713023,GR 1315713024,1315717119,SE 1315717120,1315725311,RU 1315725312,1315729407,CZ 1315733504,1315737599,NL 1315737600,1315741695,CZ 1315741696,1315745791,LB 1315745792,1315749887,CZ 1315749888,1315753983,RU 1315758080,1315758335,FR 1315758336,1315758591,RE 1315758592,1315758847,FR 1315758848,1315759103,RE 1315759104,1315759615,FR 1315759616,1315759871,RE 1315759872,1315762175,FR 1315762176,1315766271,BG 1315766272,1315770367,NL 1315770368,1315774463,UA 1315774464,1315778559,RU 1315778560,1315780607,AZ 1315780608,1315782655,DE 1315782656,1315786751,AM 1315786752,1315790847,FR 1315790848,1315794943,RS 1315794944,1315803135,RU 1315803136,1315807231,KZ 1315807232,1315815423,GB 1315815424,1315819519,IR 1315819520,1315823615,DK 1315823616,1315827711,IQ 1315827712,1315831807,FR 1315831808,1315835903,SA 1315835904,1315839999,MT 1315840000,1315844095,EE 1315844096,1315848191,RU 1315848192,1315852287,BH 1315852288,1315856383,SE 1315856384,1315860479,SY 1315860480,1315864575,IR 1315864576,1315868671,CH 1315868672,1315872767,RU 1315872768,1315876863,GB 1315876864,1315880959,IT 1315880960,1315885055,BE 1315885056,1315889151,CZ 1315889152,1315893247,DE 1315893248,1315897343,RU 1315897344,1315901439,IR 1315901440,1315905535,UA 1315905536,1315909631,BA 1315909632,1315913727,AZ 1315913728,1315917823,DE 1315917824,1315921919,RU 1315921920,1315926015,TR 1315926016,1315930111,CZ 1315930112,1315934207,DE 1315934208,1315938303,RU 1315938304,1315942399,DK 1315942400,1315945030,UA 1315945031,1315945031,RU 1315945032,1315946495,UA 1315946496,1315947007,GB 1315947008,1315950591,GG 1315950592,1315954687,UA 1315954688,1315958783,DE 1315958784,1315962879,RU 1315962880,1317011455,FR 1317011456,1317044223,BG 1317044224,1317076991,CZ 1317076992,1317109759,BE 1317109760,1317126399,GB 1317126400,1317126655,US 1317126656,1317142527,GB 1317142528,1317175295,PT 1317175296,1317208063,BG 1317208064,1317240831,HU 1317240832,1317273599,PL 1317273600,1317306367,AT 1317306368,1317339135,RU 1317339136,1317371903,MT 1317371904,1317404671,PL 1317404672,1317437439,IT 1317437440,1317470207,HR 1317470208,1317473535,TR 1317473536,1317473791,GB 1317473792,1317502975,TR 1317502976,1317535743,IE 1317535744,1317552127,GB 1317552128,1317568511,ES 1317568512,1317584895,CZ 1317584896,1317601279,RU 1317601280,1317617663,UA 1317617664,1317625855,YE 1317625856,1317627903,DE 1317627904,1317629951,RU 1317629952,1317636095,GB 1317636096,1317637119,IE 1317637120,1317640959,GB 1317640960,1317641215,IE 1317641216,1317642239,GB 1317642240,1317642495,IE 1317642496,1317643316,GB 1317643317,1317643317,IE 1317643318,1317647015,GB 1317647016,1317647023,IE 1317647024,1317647026,GB 1317647027,1317647027,IE 1317647028,1317650130,GB 1317650131,1317650131,IE 1317650132,1317650431,GB 1317650432,1317666815,PT 1317666816,1317679727,GB 1317679728,1317679735,CM 1317679736,1317681919,GB 1317681920,1317682175,NG 1317682176,1317683199,GB 1317683200,1317699583,DE 1317699584,1317715967,RU 1317715968,1317732351,SA 1317732352,1317748735,HU 1317748736,1317765119,RU 1317765120,1317781503,GE 1317781504,1317814271,RU 1317814272,1317830655,DE 1317830656,1317847039,NL 1317847040,1317863423,RU 1317863424,1317879807,GB 1317879808,1317896191,SK 1317896192,1317912575,LU 1317912576,1317928959,GB 1317928960,1317945343,BG 1317945344,1317978111,AT 1317978112,1317994495,RU 1317994496,1318010879,DE 1318010880,1318027263,DK 1318027264,1318043647,IE 1318043648,1318584319,GB 1318584320,1318592511,PL 1318592512,1318593983,NL 1318593984,1318593991,GB 1318593992,1318594007,NL 1318594008,1318594015,GB 1318594016,1318594335,NL 1318594336,1318594343,US 1318594344,1318596543,NL 1318596544,1318596559,SE 1318596560,1318597343,NL 1318597344,1318597359,US 1318597360,1318599679,NL 1318599680,1318599687,IE 1318599688,1318600703,NL 1318600704,1318608895,AT 1318608896,1318617087,IT 1318617088,1318625279,FR 1318625280,1318633471,UA 1318633472,1318649855,IE 1318649856,1318658047,RU 1318658048,1318666239,SI 1318666240,1318674431,DE 1318674432,1318682623,HU 1318682624,1318690815,RU 1318690816,1318699007,DK 1318699008,1318707199,IE 1318707200,1318715391,FR 1318715392,1318723583,BG 1318723584,1318731775,IR 1318731776,1318739967,PL 1318739968,1318748159,GB 1318748160,1318756351,LV 1318756352,1318764543,UA 1318764544,1318780927,KW 1318780928,1318789119,CH 1318789120,1318797311,ME 1318797312,1318805503,SY 1318805504,1318813695,PL 1318813696,1318821887,FR 1318821888,1318838271,RU 1318838272,1318841078,IE 1318841079,1318841079,GB 1318841080,1318846463,IE 1318846464,1318854655,NO 1318854656,1318862847,CZ 1318862848,1318871039,GB 1318871040,1318879231,DK 1318879232,1318887423,CZ 1318887424,1318895615,PL 1318895616,1318903807,DK 1318903808,1318911999,RU 1318912000,1318920191,MK 1318920192,1318928383,IR 1318928384,1318936383,LT 1318936384,1318936447,BR 1318936448,1318936575,LT 1318936576,1318944767,DK 1318944768,1318958079,CZ 1318958080,1318960127,PL 1318960128,1318961151,CZ 1318961152,1318969343,GB 1318969344,1318977535,RU 1318977536,1318985727,LT 1318985728,1319000063,GB 1319000064,1319002111,US 1319002112,1319010303,IE 1319010304,1319018495,CY 1319018496,1319026687,IR 1319026688,1319034879,RU 1319034880,1319035903,NO 1319035904,1319036927,DK 1319036928,1319038975,SE 1319038976,1319043071,NO 1319043072,1319051263,FR 1319051264,1319059455,UA 1319059456,1319067647,PL 1319067648,1319070975,DE 1319070976,1319071103,PL 1319071104,1319071231,DE 1319071232,1319071487,PL 1319071488,1319074815,DE 1319074816,1319074943,PL 1319074944,1319075071,DE 1319075072,1319075199,PL 1319075200,1319075839,DE 1319075840,1319084031,BG 1319084032,1319092223,KW 1319092224,1319100415,IT 1319100416,1319108607,RU 1319108608,1321205759,TR 1321205760,1325400063,FR 1325400064,1329594367,IT 1329594368,1330642943,GB 1330642944,1331691519,FR 1331691520,1331757055,PL 1331757056,1331822591,IE 1331822592,1331824639,IT 1331824640,1331826687,RU 1331826688,1331828735,FR 1331828736,1331830783,LT 1331830784,1331832831,GB 1331832832,1331834879,IT 1331834880,1331836927,BY 1331836928,1331838975,FR 1331838976,1331841023,ES 1331841024,1331843071,CZ 1331843072,1331845119,GB 1331845120,1331847167,RU 1331847168,1331849215,FR 1331849216,1331851263,BG 1331851264,1331853311,AL 1331853312,1331855359,AE 1331855360,1331857407,TR 1331857408,1331859455,RU 1331859456,1331861503,PL 1331861504,1331863551,CZ 1331863552,1331865599,GB 1331865600,1331869695,NL 1331871744,1331873791,DK 1331873792,1331877887,RU 1331877888,1331879935,ES 1331879936,1331881983,DE 1331881984,1331886079,GB 1331886080,1331888127,RU 1331888128,1331890175,SE 1331890176,1331892223,IT 1331892224,1331894271,RU 1331894272,1331896319,NL 1331896320,1331898367,FR 1331898368,1331900415,GB 1331900416,1331902463,RU 1331902464,1331904511,MK 1331904512,1331908607,GB 1331908608,1331910655,DE 1331912704,1331912959,DE 1331912960,1331913215,GB 1331913216,1331914751,DE 1331914752,1331916799,RU 1331916800,1331918847,IT 1331918848,1331920895,BE 1331920896,1331922943,NL 1331922944,1331924991,DE 1331924992,1331927039,GB 1331927040,1331929087,FI 1331929088,1331931135,FR 1331931136,1331933183,SE 1331933184,1331935231,TR 1331935232,1331937279,NL 1331937280,1331938063,NG 1331938064,1331938079,GB 1331938080,1331938431,NG 1331938432,1331938559,GB 1331938560,1331939327,NG 1331939328,1331941375,BE 1331941376,1331943423,ES 1331943424,1331945471,RU 1331945472,1331947519,SE 1331947520,1331949567,DE 1331949568,1331951615,RU 1331951616,1331953663,GE 1331953664,1332019199,BG 1332019200,1332084735,RS 1332084736,1332150271,SE 1332150272,1332215807,GR 1332215808,1332346879,RU 1332346880,1332412415,AL 1332412416,1332477951,GR 1332477952,1332609023,ES 1332609024,1332613119,PL 1332613120,1332614783,UA 1332614784,1332614911,KZ 1332614912,1332616191,UA 1332616192,1332616319,GB 1332616320,1332616447,US 1332616448,1332616959,UA 1332616960,1332617087,RU 1332617088,1332617215,CA 1332617216,1332621311,CZ 1332625408,1332629503,RU 1332629504,1332633599,DE 1332633600,1332637695,UA 1332637696,1332641791,BG 1332641792,1332645887,UA 1332645888,1332649983,RS 1332654080,1332658175,RU 1332658176,1332662271,PL 1332662272,1332670463,UA 1332670464,1332740095,RU 1332740096,1333264383,RO 1333264384,1333297151,RU 1333297152,1333362687,HU 1333362688,1333395455,GB 1333395456,1333428223,HU 1333428224,1333460991,RU 1333460992,1333493759,GB 1333493760,1333526527,TR 1333526528,1333551103,BG 1333551104,1333559295,PL 1333559296,1333592063,UA 1333592064,1333624831,IE 1333624832,1333657599,MK 1333657600,1333690367,RU 1333690368,1333723135,MK 1333723136,1333755903,IR 1333755904,1333788671,CZ 1333788672,1334050815,GR 1334050816,1334059007,BG 1334059008,1334067199,FR 1334067200,1334075391,LV 1334075392,1334083583,RU 1334083584,1334091775,DE 1334091776,1334099967,LT 1334099968,1334108159,IR 1334108160,1334116351,BE 1334116352,1334124543,AX 1334124544,1334125823,DE 1334125824,1334126591,ES 1334126592,1334127359,DE 1334127360,1334127615,AT 1334127616,1334130687,DE 1334130688,1334131711,NL 1334131712,1334132735,DE 1334132736,1334165503,RU 1334165504,1334173695,PL 1334173696,1334181887,LT 1334181888,1334190079,RU 1334190080,1334198271,BG 1334198272,1334206463,RU 1334206464,1334214655,FI 1334214656,1334222847,JO 1334222848,1334231039,BG 1334231040,1334239231,RU 1334239232,1334247423,IS 1334247424,1334255615,NO 1334255616,1334263807,IT 1334263808,1334271999,RU 1334272000,1334280191,GB 1334280192,1334288383,LV 1334288384,1334296575,PL 1334296576,1334304767,UA 1334304768,1334312959,RU 1334312960,1334316031,SE 1334316032,1334316159,NO 1334316160,1334345727,SE 1334345728,1334378495,RU 1334378496,1334411263,IT 1334411264,1334444031,RU 1334444032,1334503935,SE 1334503936,1334504191,DK 1334504192,1334509567,SE 1334509568,1334542335,PL 1334542336,1334575103,RU 1334575104,1334579199,UA 1334579200,1334583295,RU 1334583296,1334591487,DE 1334591488,1334595583,RU 1334595584,1334599039,IT 1334599040,1334599167,FR 1334599168,1334599679,IT 1334599680,1334603775,RU 1334603776,1334607871,DE 1334607872,1334611967,IE 1334611968,1334616063,ME 1334616064,1334620159,MD 1334620160,1334624255,DE 1334624256,1334625791,GB 1334625792,1334626047,AU 1334626048,1334627071,GB 1334627072,1334627327,AU 1334627328,1334628351,GB 1334628352,1334632447,IE 1334632448,1334636543,KZ 1334636544,1334640639,RU 1334640640,1334644735,FR 1334644736,1334647039,DE 1334647040,1334647807,IQ 1334647808,1334648831,DE 1334648832,1334652927,GB 1334652928,1334661119,RU 1334661120,1334665215,CH 1334665216,1334669311,NO 1334669312,1334673407,MK 1334673408,1334677503,GB 1334677504,1334681599,FI 1334681600,1334681855,PL 1334681856,1334682111,GB 1334682112,1334682367,IE 1334682368,1334682623,FR 1334682624,1334683135,GB 1334683136,1334683391,CZ 1334683392,1334683647,CH 1334683648,1334683903,GB 1334683904,1334684031,DE 1334684032,1334684159,NL 1334684160,1334684415,SE 1334684416,1334684479,GB 1334684480,1334684511,DE 1334684512,1334684671,GB 1334684672,1334684927,FI 1334684928,1334685183,NL 1334685184,1334685695,DE 1334685696,1334689791,IT 1334689792,1334693887,FR 1334693888,1334702079,RU 1334702080,1334706175,CZ 1334706176,1334706431,BA 1334706432,1334706687,AT 1334706688,1334710271,BA 1334710272,1334714367,RU 1334714368,1334718463,DE 1334718464,1334722559,KZ 1334722560,1334723583,NL 1334723584,1334723839,BE 1334723840,1334724095,DK 1334724096,1334724351,NO 1334724352,1334724607,SE 1334724608,1334724863,US 1334724864,1334725631,NL 1334725632,1334726143,SE 1334726144,1334726399,LU 1334726400,1334726655,SE 1334726656,1334730239,RU 1334730240,1334730495,KZ 1334730496,1334734847,RU 1334734848,1334738943,LT 1334738944,1334743039,CH 1334743040,1334747135,CZ 1334747136,1334751231,RU 1334755328,1334759423,UA 1334759424,1334763519,SE 1334763520,1334767615,DK 1334767616,1334771711,SE 1334771712,1334779903,RU 1334779904,1334783999,UA 1334784000,1334788095,AT 1334788096,1334792191,RU 1334792192,1334793320,GB 1334793321,1334793321,IR 1334793322,1334794239,GB 1334794240,1334796287,ES 1334796288,1334800383,ME 1334800384,1334804479,IT 1334804480,1334808575,FR 1334808576,1334812671,GB 1334812672,1334816767,BA 1334816768,1334820863,DE 1334820864,1334824959,IE 1334824960,1334829055,NL 1334829056,1334833151,RU 1334833152,1334837247,FR 1334837248,1335885823,ES 1335885824,1336016895,NO 1336016896,1336147967,PL 1336147968,1336279039,RU 1336279040,1336410111,GR 1336410112,1336541183,PT 1336541184,1336543231,SA 1336543232,1336545279,ES 1336545280,1336547327,SE 1336547328,1336549375,RU 1336549376,1336551423,IM 1336551424,1336553471,GB 1336553472,1336555519,SA 1336555520,1336557567,BE 1336557568,1336559615,ES 1336559616,1336561663,GB 1336561664,1336563711,NO 1336563712,1336567807,NL 1336567808,1336569855,BY 1336571904,1336573951,PL 1336573952,1336575999,DK 1336576000,1336578047,RU 1336580096,1336584191,RU 1336584192,1336586239,TR 1336586240,1336588287,GB 1336588288,1336590335,TJ 1336590336,1336592383,GB 1336592384,1336594431,AM 1336594432,1336596479,AT 1336596480,1336598527,FR 1336598528,1336600575,MD 1336600576,1336602623,FR 1336602624,1336604671,IE 1336604672,1336606719,CZ 1336606720,1336608767,PL 1336608768,1336610815,RU 1336610816,1336612863,TR 1336612864,1336614911,ES 1336614912,1336616959,GB 1336616960,1336619007,ES 1336619008,1336621055,AL 1336621056,1336623103,DE 1336623104,1336625151,BE 1336625152,1336627199,IE 1336627200,1336629247,NO 1336629248,1336631295,DE 1336631296,1336633343,IS 1336633344,1336635391,PT 1336635392,1336637439,RU 1336637440,1336639487,UA 1336639488,1336643583,HU 1336643584,1336645631,DK 1336645632,1336647679,GB 1336647680,1336649727,IT 1336649728,1336651775,RU 1336651776,1336653823,DE 1336653824,1336655871,CZ 1336655872,1336657919,NL 1336657920,1336659967,DE 1336659968,1336662015,RU 1336662016,1336664063,ES 1336664064,1336668159,FI 1336668160,1336670207,BH 1336670208,1336672255,SE 1336672256,1336705023,RU 1336705024,1336721407,SA 1336721408,1336737791,HU 1336737792,1336754175,PL 1336754176,1336770559,RU 1336770560,1336786943,GB 1336786944,1336803327,JO 1336811520,1336827903,RU 1336827904,1336836095,AT 1336836096,1336836889,NL 1336836890,1336836890,BE 1336836891,1336838143,NL 1336838144,1336842239,DE 1336842240,1336844287,DK 1336844288,1336846335,IR 1336846336,1336848383,GB 1336848384,1336850431,NO 1336850432,1336852479,RU 1336852480,1336868863,FR 1336868864,1336885247,RU 1336885248,1336901631,RS 1336901632,1336918015,IR 1336918016,1336934399,PL 1336934400,1337241562,IL 1337241563,1337241563,RO 1337241564,1337458687,IL 1337458688,1337982975,PL 1337982976,1339416319,DE 1339416320,1339416575,LU 1339416576,1342177279,DE 1342177280,1342628207,GB 1342628208,1342628223,IE 1342628224,1342701567,GB 1342701568,1342750719,RE 1342750720,1342751487,YT 1342751488,1342751743,FR 1342751744,1342752511,YT 1342752512,1342752767,FR 1342752768,1342753023,YT 1342753024,1342753535,FR 1342753536,1342754047,YT 1342754048,1342754303,FR 1342754304,1342754559,YT 1342754560,1342754815,FR 1342754816,1342756095,YT 1342756096,1342758911,FR 1342758912,1342759423,YT 1342759424,1342759935,FR 1342759936,1342760447,YT 1342760448,1342760703,FR 1342760704,1342761727,YT 1342761728,1342761983,FR 1342761984,1342763007,YT 1342763008,1342763263,FR 1342763264,1342764543,YT 1342764544,1342988287,FR 1342988288,1342989055,US 1342989056,1342996479,FR 1342996480,1342997759,GF 1342997760,1342998015,FR 1342998016,1342998783,GF 1342998784,1342999039,FR 1342999040,1342999807,GF 1342999808,1343000063,FR 1343000064,1343000575,GF 1343000576,1343000831,FR 1343000832,1343001087,GF 1343001088,1343001599,FR 1343001600,1343001855,GF 1343001856,1343002367,FR 1343002368,1343003391,GF 1343003392,1343004159,FR 1343004160,1343004415,GF 1343004416,1343004671,FR 1343004672,1343005951,GF 1343005952,1343006207,FR 1343006208,1343006975,GF 1343006976,1343007743,FR 1343007744,1343007999,GF 1343008000,1343008255,FR 1343008256,1343009791,GF 1343009792,1343010303,FR 1343010304,1343010815,GF 1343010816,1343011071,FR 1343011072,1343011327,GF 1343011328,1343011583,FR 1343011584,1343012863,GF 1343012864,1343017983,FR 1343017984,1343018495,RE 1343018496,1343025151,FR 1343025152,1343025663,RE 1343025664,1343218687,FR 1343218688,1343219711,DE 1343219712,1343220479,FR 1343220480,1343220671,DE 1343220672,1343220735,FR 1343220736,1343220863,GB 1343220864,1343221055,FR 1343221056,1343221119,GB 1343221120,1343221247,DE 1343221248,1343221759,FR 1343221760,1343222335,GB 1343222336,1343223679,FR 1343223680,1343223687,LB 1343223688,1343224255,FR 1343224256,1343224303,US 1343224304,1343225855,FR 1343225856,1343750143,IT 1343750144,1344798719,ES 1344798720,1345323007,GB 1345323008,1345847295,PL 1345847296,1345978367,NL 1345978368,1346109439,ES 1346109440,1346240511,NL 1346240512,1346371583,DK 1346371584,1346375679,FI 1346375680,1346379775,RU 1346379776,1346383871,ES 1346383872,1346387967,GB 1346387968,1346392063,HU 1346392064,1346396159,UA 1346396160,1346400255,RU 1346400256,1346404351,IT 1346404352,1346407423,AT 1346407424,1346408447,DE 1346408448,1346412543,LU 1346412544,1346416639,RU 1346416640,1346420735,DE 1346420736,1346424831,NO 1346428928,1346433023,FR 1346433024,1346439167,NL 1346439168,1346441215,ES 1346441216,1346445311,RU 1346445312,1346449407,DE 1346449408,1346453503,NO 1346453504,1346461695,BA 1346461696,1346469887,NL 1346469888,1346473983,BE 1346473984,1346478079,IT 1346478080,1346482175,BA 1346482176,1346486271,CZ 1346486272,1346490367,SE 1346494464,1346498559,FR 1346498560,1346502655,IM 1346502656,1346510847,DE 1346510848,1346519039,AT 1346519040,1346527231,RU 1346527232,1346531327,DE 1346531328,1346535423,ES 1346535424,1346539519,BE 1346539520,1346543615,RU 1346543616,1346547711,FI 1346547712,1346551807,IR 1346555904,1346559999,IT 1346560000,1346564095,LI 1346564096,1346568191,EE 1346568192,1346569815,SE 1346569816,1346569819,ES 1346569820,1346572287,SE 1346572288,1346576383,DE 1346580480,1346584575,RU 1346584576,1346588159,US 1346588160,1346588671,KR 1346588928,1346589439,US 1346589440,1346589695,DE 1346589696,1346592767,US 1346592768,1346596863,ES 1346596864,1346600959,IT 1346600960,1346605055,MU 1346605056,1346609151,CH 1346609152,1346617343,FR 1346617344,1346621439,SE 1346621440,1346625535,RU 1346625536,1346629631,DE 1346629632,1346637823,RU 1346637824,1346650111,GB 1346650112,1346654207,RU 1346654208,1346658303,GB 1346658304,1346666495,SE 1346666496,1346670591,ES 1346670592,1346674687,IT 1346674688,1346678783,DE 1346678784,1346686975,IT 1346686976,1346691071,GB 1346691072,1346695167,PL 1346695168,1346699263,RU 1346699264,1346707455,GB 1346707456,1346711551,DE 1346711552,1346715647,AZ 1346715648,1346723839,NL 1346723840,1346732031,DE 1346732032,1346736127,GB 1346736128,1346740223,RU 1346740224,1346744319,FI 1346744320,1346748415,RU 1346748416,1346752511,DE 1346752512,1346753791,FR 1346753792,1346754303,RE 1346754304,1346756607,FR 1346756608,1346760703,SE 1346760704,1346764799,IR 1346764800,1346768895,DK 1346768896,1346772991,LV 1346772992,1346777087,FR 1346777088,1346781183,GB 1346781184,1346789375,UA 1346789376,1346793471,RU 1346793472,1346797567,IT 1346797568,1346801663,IL 1346801664,1346805759,SE 1346805760,1346818047,DE 1346818048,1346822143,FR 1346822144,1346826239,RU 1346826240,1346830335,RS 1346830336,1346838527,GB 1346838528,1346842623,RU 1346842624,1346846719,MT 1346846720,1346854911,DK 1346854912,1346859007,MT 1346859008,1346863103,IR 1346863104,1346867199,DK 1346867200,1346871295,BA 1346871296,1346879487,RU 1346879488,1346883583,FI 1346883584,1346887679,RU 1346887680,1346891775,IT 1346891776,1346895871,RU 1346895872,1346899967,SE 1346899968,1346904063,RU 1346904064,1346908159,PL 1346908160,1346912255,LI 1346912256,1346920447,BG 1346920448,1346924543,KE 1346924544,1346928639,RU 1346928640,1346932735,DE 1346932736,1346936831,DK 1346936832,1346940927,IT 1346940928,1346945023,KG 1346945024,1346949119,PL 1346949120,1346957311,RU 1346957312,1346961407,DE 1346961408,1346965503,UA 1346965504,1346969599,RU 1346969600,1346973695,DE 1346973696,1346977791,SE 1346977792,1346985983,RU 1346985984,1346994175,DE 1346994176,1346998271,NL 1346998272,1347002367,ES 1347002368,1347006463,RU 1347006464,1347010559,SE 1347010560,1347014655,RU 1347014656,1347018751,GG 1347018752,1347022847,IT 1347022848,1347024895,AT 1347024896,1347035135,GB 1347035136,1347039231,CZ 1347039232,1347043327,RO 1347043328,1347047423,FR 1347047424,1347051519,SA 1347051520,1347059711,IL 1347059712,1347067903,CH 1347067904,1347071999,RS 1347072000,1347076095,IT 1347076096,1347084287,FI 1347084288,1347092479,GB 1347092480,1347096575,IR 1347096576,1347100671,SE 1347100672,1347108863,AT 1347108864,1347112959,GB 1347112960,1347117055,RU 1347117056,1347121151,FI 1347121152,1347125247,CH 1347125248,1347129343,RU 1347129344,1347133439,FR 1347133440,1347141631,EG 1347141632,1347145727,CH 1347145728,1347146239,IN 1347146240,1347146751,DE 1347146752,1347147263,IN 1347147264,1347147775,GB 1347147776,1347148287,DE 1347148288,1347148543,GB 1347148544,1347149055,IN 1347149056,1347149311,GB 1347149312,1347149567,DE 1347149568,1347149823,IN 1347149824,1347151423,HU 1347151424,1347158015,AT 1347158016,1347162111,CH 1347162112,1347166207,IT 1347166208,1347174399,GR 1347174400,1347182591,IT 1347182592,1347186687,RU 1347186688,1347190783,GB 1347190784,1347194879,RU 1347194880,1347198975,SE 1347198976,1347203071,QA 1347203072,1347207167,RU 1347207168,1347215359,GB 1347215360,1347223551,RU 1347223552,1347225599,GB 1347225600,1347226623,PK 1347226624,1347227647,GB 1347227648,1347229895,DE 1347229896,1347229903,GR 1347229904,1347231743,DE 1347231744,1347235839,UA 1347235840,1347239935,GE 1347239936,1347244031,DK 1347244032,1347248127,GB 1347248128,1347252223,SE 1347252224,1347256319,HU 1347256320,1347260415,FO 1347260416,1347264511,MK 1347264512,1347268607,RU 1347268608,1347272703,LB 1347272704,1347276799,MT 1347276800,1347280895,DE 1347280896,1347284991,FR 1347284992,1347289087,GB 1347289088,1347293183,FR 1347293184,1347293311,SE 1347293312,1347293312,LR 1347293313,1347293316,DJ 1347293317,1347293319,LR 1347293320,1347293328,GA 1347293329,1347293335,NG 1347293336,1347293351,SE 1347293352,1347293375,NG 1347293376,1347293391,SE 1347293392,1347293392,CY 1347293393,1347293400,NG 1347293401,1347293407,US 1347293408,1347293408,SE 1347293409,1347293416,NG 1347293417,1347293424,TZ 1347293425,1347293440,GN 1347293441,1347293447,US 1347293448,1347293456,GA 1347293457,1347293464,NG 1347293465,1347293471,SE 1347293472,1347293479,IQ 1347293480,1347293487,LR 1347293488,1347293495,TD 1347293496,1347293496,GH 1347293497,1347293512,NG 1347293513,1347293520,GN 1347293521,1347293528,PS 1347293529,1347293536,NG 1347293537,1347293544,GH 1347293545,1347293552,NG 1347293553,1347293559,ZM 1347293560,1347293560,SE 1347293561,1347293568,GN 1347293569,1347293576,NG 1347293577,1347293584,GN 1347293585,1347293591,NG 1347293592,1347293600,US 1347293601,1347293616,NG 1347293617,1347293623,US 1347293624,1347293624,PK 1347293625,1347293632,GH 1347293633,1347293640,LR 1347293641,1347293656,NG 1347293657,1347293672,GN 1347293673,1347293675,SE 1347293676,1347293679,BR 1347293680,1347293680,GN 1347293681,1347293688,US 1347293689,1347293719,NG 1347293720,1347293723,SE 1347293724,1347293724,US 1347293725,1347293727,SE 1347293728,1347293728,GN 1347293729,1347293735,US 1347293736,1347293743,GN 1347293744,1347293744,US 1347293745,1347293752,GN 1347293753,1347293760,NG 1347293761,1347293767,ZM 1347293768,1347293775,CM 1347293776,1347293776,ZM 1347293777,1347293800,NG 1347293801,1347293807,US 1347293808,1347293816,NG 1347293817,1347293824,GN 1347293825,1347293831,CM 1347293832,1347293840,NG 1347293841,1347293848,CG 1347293849,1347293856,NG 1347293857,1347293864,GN 1347293865,1347293872,ZM 1347293873,1347293880,GN 1347293881,1347293887,NG 1347293888,1347293904,GQ 1347293905,1347293912,GN 1347293913,1347293920,US 1347293921,1347293928,CM 1347293929,1347293936,TZ 1347293937,1347293944,NG 1347293945,1347293952,US 1347293953,1347293976,NG 1347293977,1347293984,CM 1347293985,1347293991,US 1347293992,1347294000,NG 1347294001,1347294008,TZ 1347294009,1347294015,SE 1347294016,1347294023,US 1347294024,1347294040,GN 1347294041,1347294048,NG 1347294049,1347294056,GN 1347294057,1347294072,US 1347294073,1347294080,NG 1347294081,1347294087,GA 1347294088,1347294095,US 1347294096,1347294096,CM 1347294097,1347294112,NG 1347294113,1347294119,GN 1347294120,1347294136,NG 1347294137,1347294143,LR 1347294144,1347294152,NG 1347294153,1347294160,NE 1347294161,1347294168,GN 1347294169,1347294176,NG 1347294177,1347294184,US 1347294185,1347294191,SE 1347294192,1347294192,KE 1347294193,1347294207,NG 1347294208,1347294215,SE 1347294216,1347294223,IQ 1347294224,1347294224,SE 1347294225,1347294232,CM 1347294233,1347294240,US 1347294241,1347294248,LR 1347294249,1347294256,NG 1347294257,1347294264,LR 1347294265,1347294268,LS 1347294269,1347294271,LR 1347294272,1347294279,BR 1347294280,1347294280,SE 1347294281,1347294288,CM 1347294289,1347294303,UG 1347294304,1347294304,US 1347294305,1347294312,NG 1347294313,1347294319,KZ 1347294320,1347294328,NG 1347294329,1347294336,GA 1347294337,1347294343,NG 1347294344,1347294351,CM 1347294352,1347294352,LR 1347294353,1347294368,US 1347294369,1347294372,LS 1347294373,1347294375,IQ 1347294376,1347294400,NG 1347294401,1347294401,CM 1347294402,1347294402,NG 1347294403,1347294408,CM 1347294409,1347294415,GN 1347294416,1347294418,SE 1347294419,1347294424,NG 1347294425,1347294425,US 1347294426,1347294426,NG 1347294427,1347294432,US 1347294433,1347294440,SE 1347294441,1347294447,SO 1347294448,1347294463,US 1347294464,1347294464,SE 1347294465,1347294496,US 1347294497,1347294975,SE 1347294976,1347294992,CG 1347294993,1347295008,US 1347295009,1347295015,LR 1347295016,1347295032,SE 1347295033,1347295056,NG 1347295057,1347295064,SE 1347295065,1347295072,LS 1347295073,1347295079,AF 1347295080,1347295103,NG 1347295104,1347295104,SE 1347295105,1347295112,LY 1347295113,1347295120,ZA 1347295121,1347295128,NG 1347295129,1347295132,GN 1347295133,1347295135,SE 1347295136,1347295144,FR 1347295145,1347295152,NG 1347295153,1347295159,US 1347295160,1347295160,NG 1347295161,1347295168,GN 1347295169,1347295184,LS 1347295185,1347295192,SO 1347295193,1347295199,SE 1347295200,1347295216,ZM 1347295217,1347295223,US 1347295224,1347295224,AO 1347295225,1347295232,NG 1347295233,1347295744,SE 1347295745,1347295745,US 1347295746,1347295748,SE 1347295749,1347295752,US 1347295753,1347295755,BW 1347295756,1347295759,SE 1347295760,1347295775,BW 1347295776,1347295776,IQ 1347295777,1347295784,HU 1347295785,1347295791,LB 1347295792,1347295816,SE 1347295817,1347295824,OM 1347295825,1347295832,GH 1347295833,1347295840,FR 1347295841,1347295848,NG 1347295849,1347295852,LS 1347295853,1347295856,SE 1347295857,1347295864,NG 1347295865,1347295928,SE 1347295929,1347295936,NG 1347295937,1347295976,US 1347295977,1347295984,LS 1347295985,1347295992,US 1347295993,1347295999,SE 1347296000,1347296007,US 1347296008,1347296008,SE 1347296009,1347296032,US 1347296033,1347296040,SE 1347296041,1347296044,US 1347296045,1347296056,SE 1347296057,1347296080,US 1347296081,1347296104,SE 1347296105,1347296112,US 1347296113,1347296128,ZM 1347296129,1347296136,SE 1347296137,1347296144,US 1347296145,1347296160,SE 1347296161,1347296168,US 1347296169,1347296176,SE 1347296177,1347296184,US 1347296185,1347296192,SE 1347296193,1347296200,US 1347296201,1347296224,SE 1347296225,1347296232,US 1347296233,1347296240,JO 1347296241,1347296264,SE 1347296265,1347296272,US 1347296273,1347297071,SE 1347297072,1347297079,US 1347297080,1347297151,SE 1347297152,1347297159,SL 1347297160,1347297279,SE 1347297280,1347305471,UA 1347305472,1347309567,AL 1347309568,1347313663,DE 1347313664,1347321855,RU 1347325952,1347330047,CZ 1347330048,1347338239,DE 1347338240,1347342335,RU 1347342336,1347346431,SE 1347346432,1347350527,BG 1347350528,1347354623,RU 1347354624,1347358719,GR 1347358720,1347362815,CZ 1347362816,1347366911,NL 1347366912,1347371007,IT 1347371008,1347375103,RU 1347375104,1347379199,GB 1347379200,1347383295,NL 1347383296,1347387011,EE 1347387012,1347387015,DE 1347387016,1347387391,EE 1347387392,1347391487,GB 1347391488,1347393535,IQ 1347393536,1347395583,LB 1347395584,1347399679,SE 1347399680,1347403775,RU 1347403776,1347407871,NL 1347407872,1347411967,GB 1347411968,1347416063,DE 1347416064,1347420159,RU 1347420160,1347428351,DK 1347428352,1347432447,BA 1347432448,1347436543,HR 1347436544,1347440639,SE 1347440640,1347444735,ES 1347444736,1347452927,RU 1347452928,1347461119,BG 1347461120,1347465215,AL 1347465216,1347469311,GB 1347469312,1347473407,RU 1347473408,1347477503,UZ 1347477504,1347481599,CH 1347481600,1347485695,AT 1347485696,1347493887,DE 1347493888,1347502079,LV 1347502080,1347503103,ES 1347503104,1347503359,KR 1347503360,1347505159,ES 1347505160,1347505167,GB 1347505168,1347505215,ES 1347505216,1347505247,GB 1347505248,1347518463,ES 1347518464,1347522559,AT 1347522560,1347526655,LB 1347526656,1347534847,FI 1347534848,1347538943,DE 1347538944,1347543039,RU 1347543040,1347547135,SK 1347547136,1347551231,DE 1347551232,1347555327,IT 1347555328,1347559423,PL 1347559424,1347567615,RU 1347567616,1347571711,NL 1347571712,1347575807,RU 1347575808,1347579903,DK 1347579904,1347588095,GB 1347588096,1347592191,CZ 1347592192,1347600383,RU 1347600384,1347601407,CZ 1347601408,1347602431,UA 1347602432,1347608575,DE 1347608576,1347612671,FR 1347612672,1347616767,GB 1347616768,1347620863,FI 1347620864,1347624959,LB 1347624960,1347633151,CH 1347633152,1347637247,CZ 1347637248,1347641343,SE 1347641344,1347649535,DE 1347649536,1347653631,GE 1347653632,1347657727,GB 1347657728,1347661823,IT 1347661824,1347665919,DE 1347665920,1347670015,RU 1347670016,1347674111,SE 1347674112,1347682303,RU 1347682304,1347686399,DE 1347690496,1347694591,SE 1347694592,1347706879,GB 1347706880,1347710975,IT 1347710976,1347715071,RU 1347715072,1347717375,ES 1347717376,1347717631,BG 1347717632,1347718143,ES 1347718144,1347718399,US 1347718400,1347723263,ES 1347723264,1347727359,GB 1347727360,1347731455,UA 1347731456,1347739647,DE 1347739648,1347747839,NL 1347747840,1347751935,DE 1347751936,1347754903,CY 1347754904,1347754911,GR 1347754912,1347755015,CY 1347755016,1347755023,GR 1347755024,1347755135,CY 1347755136,1347755151,GR 1347755152,1347755159,CY 1347755160,1347755175,GR 1347755176,1347756031,CY 1347756032,1347760127,NL 1347760128,1347764223,HU 1347764224,1347772415,GB 1347772416,1347776511,MT 1347776512,1347780607,SE 1347780608,1347784703,NL 1347784704,1347788799,RU 1347788800,1347792895,NL 1347792896,1347796991,RU 1347796992,1347801087,DE 1347801088,1347805183,GB 1347805184,1347809279,PL 1347809280,1347813375,RU 1347813376,1347817471,DE 1347817472,1347821567,IT 1347821568,1347825663,GB 1347825664,1347829759,IT 1347829760,1347833855,SE 1347833856,1347837951,DE 1347837952,1347846143,RO 1347846144,1347850239,NO 1347850240,1347854335,IT 1347854336,1347854591,DE 1347854600,1347854607,DE 1347857408,1347858431,DE 1347858752,1347858815,DE 1347860992,1347861247,DE 1347862090,1347862090,DE 1347862272,1347862527,DE 1347862528,1347866623,CH 1347866624,1347870719,NO 1347870720,1347874815,AM 1347874816,1347878911,SK 1347878912,1347887103,GB 1347887104,1347891199,PL 1347891200,1347895295,SE 1347895296,1347903487,GH 1347903488,1347907583,RU 1347907584,1347911679,DE 1347911680,1347915775,GB 1347915776,1347919871,RU 1347919872,1347923967,DE 1347923968,1347928063,CZ 1347928064,1347932159,RU 1347932160,1347936255,SK 1347936256,1347940351,FR 1347940352,1347944447,BA 1347945472,1347946495,NG 1347947520,1347948543,DZ 1347948544,1347952639,DE 1347952640,1347956735,BE 1347956736,1347960831,RU 1347960832,1347964927,DE 1347964928,1347969023,IT 1347969024,1347977215,SE 1347977216,1347985407,DK 1347985408,1347989503,IT 1347989504,1347993599,FI 1347993600,1348001791,GB 1348001792,1348005887,ES 1348005888,1348009983,BH 1348009984,1348014079,RU 1348014080,1348018175,DK 1348018176,1348026367,NO 1348026368,1348030463,DE 1348030464,1348034559,GB 1348034560,1348038655,AT 1348038656,1348042751,FR 1348042752,1348050943,RU 1348050944,1348055039,SE 1348055040,1348058111,NG 1348058112,1348059135,LB 1348059136,1348063231,RU 1348063232,1348067327,CH 1348067328,1348071423,NL 1348071424,1348075519,DE 1348075520,1348076287,LV 1348076288,1348076543,RU 1348076544,1348082687,LV 1348082688,1348082943,RU 1348082944,1348083711,LV 1348083712,1348091903,LU 1348091904,1348095999,RU 1348096000,1348100095,AL 1348100096,1348104191,DE 1348104192,1348108287,RU 1348108288,1348112383,CZ 1348112384,1348116479,DE 1348116480,1348120575,JO 1348120576,1348124671,RU 1348124672,1348128767,GB 1348128768,1348129791,BE 1348129792,1348132351,SI 1348132352,1348132863,BE 1348132864,1348136959,UA 1348136960,1348141055,RU 1348141056,1348145151,DK 1348145152,1348149247,RU 1348149248,1348153343,NO 1348153344,1348157439,IT 1348157440,1348165631,ES 1348165632,1348169727,DE 1348169728,1348173823,AL 1348173824,1348177919,DK 1348177920,1348182015,BE 1348182016,1348190207,UA 1348190208,1348194303,RU 1348194304,1348198399,GR 1348198400,1348202495,NO 1348206592,1348218879,RU 1348218880,1348222975,DE 1348222976,1348231167,LU 1348231168,1348235263,RU 1348235264,1348239359,AT 1348239360,1348241407,SE 1348241408,1348242431,GB 1348242432,1348243455,SE 1348243456,1348247551,GB 1348247552,1348251647,RU 1348251648,1348255743,GE 1348255744,1348263935,RU 1348263936,1348268031,UA 1348268032,1348272127,CZ 1348272128,1348280319,IE 1348280320,1348284415,AT 1348284416,1348288511,RU 1348288512,1348292607,IT 1348292608,1348296703,FR 1348296704,1348300799,RU 1348300800,1348304895,UA 1348304896,1348308991,IT 1348308992,1348313087,MT 1348313088,1348317183,GB 1348317184,1348321279,RU 1348321280,1348325375,GB 1348325376,1348329471,TR 1348329472,1348337663,RS 1348337664,1348341759,ES 1348341760,1348345855,PL 1348345856,1348349951,GB 1348349952,1348354047,SK 1348354048,1348358143,NL 1348358144,1348362239,DE 1348362240,1348366335,MC 1348366336,1348370431,IT 1348370432,1348374527,DE 1348374528,1348378623,CH 1348378624,1348382719,BY 1348382720,1348386815,FR 1348386816,1348390911,GB 1348390912,1348395007,SE 1348395008,1348399103,BY 1348399104,1348403199,MD 1348403200,1348404223,ZA 1348407296,1348411391,BG 1348411392,1348415487,RU 1348415488,1348419583,GB 1348419584,1348427775,HU 1348427776,1348429823,CZ 1348429824,1348430079,AU 1348430080,1348435967,CZ 1348435968,1348440063,FI 1348440064,1348444159,DE 1348444160,1348448255,NL 1348448256,1348456447,GB 1348456448,1348460543,BH 1348460544,1348464639,SI 1348464640,1348468735,CZ 1348468736,1348548607,RO 1348548608,1348549631,MD 1348549632,1348599807,RO 1348599808,1348730879,HU 1348730880,1348861951,NL 1348861952,1348993023,ES 1348993024,1349124095,IT 1349124096,1349255167,GR 1349255168,1349451775,AT 1349451776,1349517311,IE 1349517312,1349554687,NL 1349554688,1349554943,NO 1349554944,1349763071,NL 1349763072,1349771263,RU 1349771264,1349779455,NL 1349779456,1349910527,IT 1349910528,1350041599,FR 1350041600,1350215679,AT 1350215680,1350215935,IQ 1350215936,1350216959,AT 1350216960,1350217215,IQ 1350217216,1350217471,AT 1350217472,1350217727,IQ 1350217728,1350303743,AT 1350303744,1350434815,FR 1350434816,1350565887,NL 1350565888,1352299775,DE 1352299776,1352300031,US 1352300032,1352412159,DE 1352412160,1352412415,FR 1352412416,1352417279,DE 1352417280,1352418303,SK 1352418304,1352488959,DE 1352488960,1352491007,FR 1352491008,1352663039,DE 1352663040,1353187327,DK 1353187328,1353262295,GB 1353262296,1353262303,US 1353262304,1353271567,GB 1353271568,1353271575,AT 1353271576,1353271711,GB 1353271712,1353271719,AT 1353271720,1353271727,GB 1353271728,1353271743,AT 1353271744,1353271775,GB 1353271776,1353271807,AT 1353271808,1353272079,GB 1353272080,1353272095,ES 1353272096,1353273407,GB 1353273408,1353273423,BE 1353273424,1353275247,GB 1353275248,1353275255,ES 1353275256,1353277439,GB 1353277440,1353279487,CH 1353279488,1353279583,GB 1353279584,1353279591,IT 1353279592,1353287959,GB 1353287960,1353287967,IE 1353287968,1353288191,GB 1353288192,1353288447,IE 1353288448,1353289215,GB 1353289216,1353289471,IE 1353289472,1353298783,GB 1353298784,1353298815,SE 1353298816,1353298895,GB 1353298896,1353298911,SE 1353298912,1353298943,GB 1353298944,1353299455,SE 1353299456,1353300063,GB 1353300064,1353300071,SE 1353300072,1353300079,GB 1353300080,1353300095,SE 1353300096,1353306623,GB 1353306624,1353306879,BE 1353306880,1353308159,GB 1353308160,1353309183,FR 1353309184,1353312447,GB 1353312448,1353312479,CH 1353312480,1353315327,GB 1353315328,1353316351,ES 1353316352,1353318399,GB 1353318400,1353383935,SE 1353383936,1353449471,DE 1353449472,1353515007,PT 1353515008,1353646079,ES 1353646080,1353842687,GB 1353842688,1353973759,IL 1353973760,1354235903,IT 1354235904,1354301439,KW 1354301440,1354366975,FR 1354366976,1354432511,FI 1354432512,1354498047,DE 1354498048,1354563583,CZ 1354563584,1354629119,GB 1354629120,1354658495,DE 1354658496,1354658511,AT 1354658512,1354662159,DE 1354662160,1354662167,AT 1354662168,1354665215,DE 1354665216,1354665223,AT 1354665224,1354694655,DE 1354694656,1354760191,IR 1354760192,1355022335,GB 1355022336,1355284479,DK 1355284480,1355415551,BE 1355415552,1355546623,NO 1355546624,1355808767,IT 1355808768,1356070911,DK 1356070912,1356076799,NO 1356076800,1356077055,SE 1356077056,1356201983,NO 1356201984,1356333055,FR 1356333056,1356464127,SE 1356464128,1356539582,CH 1356539583,1356539583,DE 1356539584,1356595199,CH 1356595200,1356857343,FI 1356857344,1356922879,ES 1356922880,1356988415,GB 1356988416,1357053951,DE 1357053952,1357119487,AE 1357119488,1357185023,DE 1357185024,1357250559,GB 1357250560,1357316095,IL 1357317120,1357317375,GB 1357318152,1357318159,GR 1357318160,1357318207,GB 1357318208,1357318215,IT 1357318400,1357318655,FR 1357318912,1357319167,DE 1357321024,1357321087,KE 1357321984,1357322239,GB 1357322240,1357322255,DE 1357322752,1357323007,GB 1357323008,1357323015,CG 1357323520,1357323775,GB 1357323776,1357323791,FI 1357324288,1357324295,RU 1357324296,1357325311,GB 1357326336,1357326337,ES 1357326848,1357327103,GB 1357327360,1357327615,FR 1357328384,1357328671,GB 1357328896,1357329159,NL 1357329408,1357329415,BE 1357330944,1357331199,GB 1357335808,1357336063,IT 1357337600,1357337635,NL 1357340672,1357341695,GB 1357342976,1357343231,GB 1357343488,1357343503,GB 1357344260,1357344271,FR 1357344512,1357344767,FR 1357346816,1357346835,FR 1357346848,1357346863,FR 1357347336,1357347375,FR 1357347456,1357347583,FR 1357347616,1357347659,FR 1357347664,1357347671,FR 1357347680,1357347727,FR 1357347840,1357348095,PL 1357348384,1357348415,ES 1357348480,1357348607,ES 1357350400,1357350623,GB 1357350656,1357350783,GB 1357351168,1357351423,PL 1357355520,1357355775,FR 1357360064,1357360383,GB 1357361152,1357363199,GB 1357363200,1357364223,QA 1357364224,1357365247,ES 1357366784,1357366959,NL 1357366960,1357366967,BE 1357366968,1357366975,NL 1357366976,1357367039,GB 1357368352,1357368383,NL 1357368576,1357368831,NL 1357371392,1357371647,GB 1357372416,1357372927,GB 1357373468,1357373471,GB 1357373480,1357373519,GB 1357373520,1357373535,FI 1357373536,1357373539,ES 1357373540,1357373543,PT 1357373544,1357373555,GB 1357373568,1357375151,GB 1357377536,1357377679,FR 1357377696,1357378623,FR 1357381632,1357414399,NO 1357414400,1357447167,LV 1357447168,1357479935,IE 1357479936,1357512703,LV 1357512704,1357545471,RU 1357545472,1357578239,GB 1357578240,1357611007,EE 1357611008,1357643775,GB 1357643776,1357676543,FR 1357676544,1357709311,BE 1357709312,1357742079,RU 1357742080,1357774847,DE 1357774848,1357791231,GB 1357791232,1357807615,PL 1357807616,1357840383,CH 1357840384,1357873151,NO 1357875296,1357875327,IE 1357875456,1357875711,NL 1357876448,1357876479,DE 1357876736,1357876863,ES 1357877248,1357877311,DE 1357877376,1357877439,DE 1357878272,1357878335,CH 1357878336,1357878399,CZ 1357878400,1357878463,NL 1357878464,1357878527,NO 1357878528,1357878591,AT 1357878592,1357878655,PL 1357878656,1357878719,DE 1357879296,1357879423,DE 1357879936,1357880063,GB 1357883648,1357883903,SE 1357884160,1357884415,GB 1357885120,1357885183,DE 1357885200,1357885215,AT 1357885248,1357885311,SE 1357885952,1357886207,SE 1357889024,1357889279,GB 1357889280,1357889535,SE 1357890828,1357890831,NL 1357891072,1357891327,NL 1357891584,1357891647,SE 1357891680,1357891711,GB 1357891712,1357891839,SE 1357891840,1357892095,GB 1357892224,1357892351,FR 1357892608,1357892735,NL 1357892864,1357893119,NL 1357894912,1357895423,FR 1357895680,1357895935,DE 1357895936,1357896191,SE 1357896192,1357896447,DE 1357897376,1357897407,PL 1357898752,1357898879,DE 1357899584,1357899615,NL 1357899648,1357899775,GB 1357900416,1357900543,SE 1357901056,1357901183,SE 1357902366,1357902366,NO 1357902848,1357903359,GB 1357903616,1357903743,CH 1357903744,1357903871,DK 1357904896,1357905407,GB 1357905408,1357905663,SE 1357905664,1357905919,NL 1357905920,1357910015,LT 1357910016,1357914111,GR 1357914112,1357922303,RU 1357922304,1357926399,SA 1357926400,1357930495,GB 1357930496,1357938687,RU 1357938688,1357942783,NL 1357942784,1357946879,RS 1357946880,1357953023,PL 1357953024,1357954047,US 1357954048,1357955071,PL 1357955072,1357959167,KE 1357959168,1357963263,RU 1357963264,1357967359,AT 1357967360,1357971455,RU 1357971456,1357975551,KZ 1357975552,1357979647,AT 1357979648,1357983743,KZ 1357983744,1357984103,GB 1357984104,1357984119,IT 1357984120,1357984527,GB 1357984528,1357984535,IT 1357984536,1357984543,GB 1357984544,1357984551,IT 1357984552,1357984591,GB 1357984592,1357984599,IT 1357984600,1357984831,GB 1357984832,1357984839,IT 1357984840,1357984911,GB 1357984912,1357984919,IT 1357984920,1357985015,GB 1357985016,1357985023,IT 1357985024,1357985791,GB 1357985792,1357987839,DE 1357987840,1357991935,GB 1357991936,1357996031,NO 1357996032,1358000127,CH 1358000128,1358004223,LI 1358004224,1358006271,PL 1358008320,1358012415,BH 1358012416,1358016511,IT 1358016512,1358020607,GE 1358020608,1358028799,DE 1358028800,1358032895,IT 1358032896,1358036991,GE 1358036992,1358041087,IR 1358041088,1358045183,FI 1358045184,1358049279,SK 1358049280,1358062591,RU 1358062592,1358065663,UA 1358065664,1358069759,BA 1358069760,1358086143,DE 1358086144,1358090239,CH 1358090240,1358094335,KZ 1358094336,1358102527,NL 1358102528,1358106623,RU 1358106624,1358110719,LT 1358110720,1358118911,DE 1358118912,1358123007,RU 1358123008,1358127103,PT 1358127104,1358131199,CZ 1358131200,1358132735,DK 1358132736,1358133247,GB 1358133248,1358135295,DK 1358135296,1358139391,RU 1358139392,1358143487,UA 1358143488,1358147583,AT 1358147584,1358151679,GB 1358151680,1358155775,DE 1358155776,1358159871,CH 1358163968,1358164479,FR 1358164480,1358164735,MQ 1358164736,1358164991,FR 1358164992,1358165247,MQ 1358165248,1358167807,FR 1358167808,1358168063,GP 1358168064,1358172159,GB 1358172160,1358176255,CY 1358176256,1358180351,RU 1358180352,1358184447,ES 1358184448,1358187775,SE 1358187776,1358187839,NO 1358187840,1358192639,SE 1358192640,1358196735,HU 1358196736,1358200831,IT 1358200832,1358209023,PL 1358209024,1358213119,IL 1358213120,1358217215,GB 1358217216,1358221311,SE 1358221312,1358225407,DE 1358225408,1358229503,RU 1358229504,1358233599,DE 1358233600,1358237695,ES 1358237696,1358249983,FR 1358249984,1358254079,DE 1358254080,1358258175,MD 1358262272,1358266367,UA 1358266368,1358274559,DE 1358274560,1358278655,GR 1358278656,1358282751,PL 1358282752,1358286847,AT 1358286848,1358290943,MT 1358290944,1358295039,SE 1358295040,1358299135,RU 1358299136,1358303231,DZ 1358303232,1358307327,RU 1358307328,1358315519,DE 1358315520,1358323711,RU 1358323712,1358327807,LU 1358327808,1358331903,DE 1358331904,1358335999,IL 1358336000,1358344191,FI 1358344192,1358352383,NL 1358352384,1358356479,RU 1358356480,1358360575,SI 1358360576,1358364671,RU 1358364672,1358372863,GB 1358372864,1358376959,RU 1358376960,1358381055,GB 1358381056,1358385151,IT 1358385152,1358389247,GB 1358389248,1358397439,RU 1358397440,1358401279,GB 1358401280,1358401535,KE 1358401536,1358402303,GB 1358402304,1358402559,TZ 1358402560,1358405631,GB 1358405632,1358409727,NL 1358409728,1358413823,RU 1358413824,1358422015,NL 1358422016,1358426111,FR 1358426112,1358430207,FI 1358430208,1358434303,NG 1358434304,1358438399,IS 1358438400,1358442495,NL 1358442496,1358446591,RU 1358446592,1358450687,TG 1358450688,1358454783,RU 1358454784,1358462975,FI 1358462976,1358467071,SE 1358467072,1358471167,RU 1358471168,1358475263,FI 1358475264,1358479359,GB 1358479360,1358479615,CH 1358479616,1358483455,LI 1358483456,1358487551,FR 1358487552,1358491647,SE 1358491648,1358495743,FI 1358495744,1358499839,PL 1358499840,1358503935,KZ 1358503936,1358508031,IT 1358508032,1358512127,GB 1358512128,1358516223,DZ 1358516224,1358520319,BY 1358520320,1358524415,GB 1358528512,1358536703,RU 1358536704,1358540799,HU 1358540800,1358548991,RU 1358548992,1358551039,NL 1358551040,1358553087,GB 1358553088,1358557183,UA 1358557184,1358561279,IE 1358561280,1358569471,CZ 1358569472,1358573567,NG 1358573568,1358577663,LV 1358577664,1358585855,RU 1358585856,1358589951,GB 1358589952,1358594047,EE 1358594048,1358598143,DE 1358598144,1358602239,IL 1358602240,1358610431,RU 1358610432,1358614527,IR 1358614528,1358622719,RU 1358622720,1358626815,SK 1358626816,1358635007,GB 1358635008,1358639103,TR 1358639104,1358643199,RU 1358643200,1358647295,ES 1358647296,1358651391,DE 1358651392,1358655487,FR 1358655488,1358667775,RU 1358667776,1358668159,GB 1358668160,1358668167,PT 1358668168,1358668447,GB 1358668448,1358668455,PT 1358668456,1358668623,GB 1358668624,1358668631,PT 1358668632,1358670943,GB 1358670944,1358670951,FR 1358670952,1358670975,GB 1358670976,1358670991,PT 1358670992,1358671001,GB 1358671002,1358671002,PT 1358671003,1358671359,GB 1358671360,1358671615,PT 1358671616,1358671935,GB 1358671936,1358671943,PT 1358671944,1358675967,GB 1358675968,1358676991,SE 1358676992,1358677759,DK 1358677760,1358679295,SE 1358679296,1358680063,DK 1358680064,1358688255,RU 1358688256,1358692351,CZ 1358692352,1358696447,PL 1358696448,1358700543,RU 1358700544,1358704639,AT 1358704640,1358708735,HU 1358708736,1358712831,GB 1358712832,1358716927,NL 1358716928,1358721023,DE 1358721024,1358725119,GB 1358725120,1358733311,RU 1358733312,1358741503,SE 1358741504,1358745599,IT 1358745600,1358749695,SE 1358749696,1358753791,IT 1358753792,1358757887,UA 1358757888,1358766079,RU 1358766080,1358770175,IT 1358770176,1358774271,BG 1358774272,1358778367,ES 1358778368,1358782463,CH 1358782464,1358784039,GB 1358784040,1358784047,DE 1358784048,1358787327,GB 1358787328,1358787583,IE 1358787584,1358790655,GB 1358790656,1358798847,IR 1358798848,1358802943,HR 1358802944,1358807039,HU 1358807040,1358811135,ES 1358811136,1358815231,DE 1358815232,1358819327,RU 1358819328,1358823423,TR 1358823424,1358827519,UA 1358827520,1358831615,RU 1358831616,1358835711,NO 1358835712,1358839807,RU 1358839808,1358843903,CH 1358843904,1358847999,MT 1358848000,1358856191,RU 1358856192,1358860287,DE 1358860288,1358861361,GB 1358861362,1358861363,DE 1358861364,1358861449,GB 1358861450,1358861450,DE 1358861451,1358861473,GB 1358861474,1358861474,DE 1358861475,1358861567,GB 1358861568,1358861823,DE 1358861824,1358862335,FR 1358862336,1358862847,US 1358862848,1358862911,DK 1358862912,1358862914,GB 1358862915,1358862915,DK 1358862916,1358863359,GB 1358863360,1358863615,US 1358863616,1358864383,GB 1358864384,1358872575,CH 1358872576,1358876671,IT 1358876672,1358880767,LV 1358884864,1358888959,SE 1358888960,1358893055,DE 1358893056,1358897151,RU 1358897152,1358899711,GB 1358899712,1358899967,US 1358899968,1358900223,KE 1358900224,1358905343,GB 1358905344,1358909439,UA 1358909440,1358913535,RU 1358913536,1358917631,CH 1358917632,1358921727,ES 1358921728,1358929919,RU 1358929920,1358934015,LU 1358934016,1358938111,RU 1358938112,1358946303,GB 1358946304,1358950399,LV 1358950400,1358954495,NL 1358954496,1358970879,ES 1358970880,1358987263,HU 1358987264,1359003647,NO 1359003648,1359020031,CZ 1359020032,1359036415,FR 1359036416,1359052799,GB 1359052800,1359101951,RU 1359101952,1359118335,GB 1359118336,1359118655,DE 1359118656,1359118719,GR 1359118720,1359118847,DE 1359118848,1359119103,IT 1359119104,1359119199,DE 1359119200,1359119231,NL 1359119232,1359119359,DE 1359119360,1359120383,NL 1359120384,1359121407,DK 1359121408,1359122431,ES 1359122432,1359134719,DE 1359134720,1359151103,CZ 1359151104,1359167487,DE 1359167488,1359183871,GB 1359183872,1359200255,RU 1359200256,1359216639,AT 1359216640,1359233023,ZA 1359233024,1359249407,NL 1359249408,1359265791,CY 1359265792,1359282175,RU 1359282176,1359298559,IL 1359298560,1359314943,RU 1359314944,1359331327,GB 1359331328,1359347711,AT 1359347712,1359364095,CH 1359364096,1359380479,TR 1359380480,1359396863,PL 1359396864,1359413247,GB 1359413248,1359429631,DE 1359429632,1359446015,LT 1359446016,1359462399,DK 1359462400,1359467007,DE 1359467008,1359467263,US 1359467264,1359470591,DE 1359470592,1359478783,CH 1359478784,1359511551,TR 1359511552,1359544319,SE 1359544320,1359577087,RU 1359577088,1359609855,ES 1359609856,1359642623,EG 1359642624,1359675391,AT 1359675392,1359708159,DE 1359708160,1359740927,BE 1359740928,1359773695,IR 1359773696,1359806463,RO 1359806464,1359839231,RU 1359839232,1359871999,CH 1359872000,1359904767,FR 1359904768,1359937535,DE 1359937536,1359970303,IS 1359970304,1360003071,PL 1360003072,1360007167,AM 1360011264,1360015359,AT 1360015360,1360019455,DE 1360019456,1360023551,FI 1360023552,1360027647,RU 1360027648,1360031743,AT 1360031744,1360035839,RU 1360039936,1360044031,AT 1360044032,1360048127,SE 1360048128,1360052223,DE 1360052224,1360056319,HU 1360056320,1360060415,SA 1360060416,1360064511,LT 1360064512,1360068607,GE 1360068608,1360072703,RU 1360072704,1360076799,CH 1360076800,1360084991,NL 1360084992,1360089087,GB 1360089088,1360093183,AZ 1360093184,1360101375,DE 1360101376,1360105471,UA 1360105472,1360109567,RU 1360109568,1360113663,KZ 1360113664,1360117759,HU 1360117760,1360121855,FI 1360121856,1360125951,DE 1360125952,1360127487,SI 1360127488,1360127999,RS 1360128000,1360128511,MK 1360128512,1360128767,ME 1360128768,1360129023,SI 1360129024,1360129535,BA 1360129536,1360130047,SI 1360130048,1360134143,IE 1360134144,1360138239,NL 1360138240,1360142335,CH 1360142336,1360146431,KZ 1360146432,1360150527,RS 1360150528,1360158719,RO 1360158720,1360162815,DE 1360162816,1360175103,RU 1360175104,1360179199,NL 1360179200,1360183295,FR 1360183296,1360191487,PL 1360191488,1360195583,FO 1360195584,1360199679,NL 1360199680,1360203775,CZ 1360203776,1360207871,FR 1360207872,1360211967,CZ 1360211968,1360216063,GB 1360216064,1360224255,RU 1360224256,1360228351,ES 1360228352,1360232447,FI 1360232448,1360236543,RU 1360236544,1360240639,AT 1360240640,1360242431,ES 1360242432,1360244479,US 1360244480,1360244735,ES 1360244736,1360257023,GB 1360257024,1360265215,DK 1360265216,1360269311,GB 1360269312,1360273407,KG 1360273408,1360281599,GB 1360281600,1360281727,NL 1360281728,1360281855,ES 1360281856,1360282111,NL 1360282112,1360282239,ES 1360282240,1360282495,NL 1360282496,1360282623,DE 1360282624,1360284671,NL 1360284672,1360284927,DK 1360284928,1360285695,NL 1360285696,1360289791,DE 1360289792,1360293887,RU 1360293888,1360302079,DE 1360302080,1360306175,EE 1360306176,1360310271,RU 1360310272,1360314367,JE 1360314368,1360318463,RU 1360318464,1360322559,FR 1360322560,1360326655,FI 1360326656,1360330751,PT 1360330752,1360334847,UA 1360334848,1360338943,IT 1360338944,1360343039,CY 1360343040,1360347135,SA 1360347136,1360351231,GB 1360351232,1360355327,AZ 1360355328,1360359423,EG 1360359424,1360363519,AT 1360363520,1360365567,IT 1360365568,1360367615,NL 1360367616,1360367771,IE 1360367772,1360367772,DE 1360367773,1360371711,IE 1360371712,1360375807,TR 1360375808,1360379903,NL 1360379904,1360383999,PL 1360384000,1360388095,SE 1360388096,1360392191,RU 1360392192,1360396287,EE 1360396288,1360400383,RU 1360400384,1360404479,BH 1360404480,1360408575,GB 1360408576,1360412671,RU 1360412672,1360420863,DZ 1360420864,1360424959,TR 1360424960,1360429055,RU 1360429056,1360433151,UA 1360433152,1360437247,RO 1360437248,1360441343,FI 1360441344,1360445439,HU 1360445440,1360453631,RU 1360453632,1360457727,DE 1360457728,1360461823,FI 1360461824,1360465919,RU 1360465920,1360470015,UA 1360470016,1360474111,FR 1360474112,1360478207,GB 1360478208,1360482303,CH 1360482304,1360486399,IT 1360486400,1360494591,RU 1360494592,1360498687,DK 1360498688,1360515071,RU 1360515072,1360519167,GB 1360519168,1360524031,NL 1360524032,1360524287,US 1360524288,1360531455,NL 1360531456,1360535551,RO 1360535552,1360539647,DE 1360539648,1360543743,NL 1360543744,1360547839,DE 1360547840,1360551935,RU 1360551936,1360556031,NL 1360556032,1360564223,RU 1360564224,1360568319,AT 1360568320,1360572415,ES 1360572416,1360576511,RU 1360576512,1360580607,GB 1360580608,1360584703,UA 1360584704,1360588799,IT 1360588800,1360590847,RS 1360590848,1360592895,IE 1360592896,1360596991,RU 1360596992,1360601087,CZ 1360601088,1360605183,BY 1360605184,1360609279,RU 1360613376,1360617471,SE 1360617472,1360621567,IT 1360621568,1360625663,ES 1360625664,1360629759,DE 1360629760,1360633855,SE 1360633856,1360637951,RU 1360637952,1360642047,FO 1360642048,1360644735,FR 1360644736,1360644863,IT 1360644864,1360645887,FR 1360645888,1360646143,GB 1360646144,1360650239,AT 1360650240,1360654335,UA 1360654336,1360658431,EE 1360658432,1360666623,PL 1360666624,1360674815,NO 1360674816,1360676863,DZ 1360676864,1360678911,ZA 1360678912,1360683007,RU 1360683008,1360691199,GB 1360691200,1360698879,RU 1360698880,1360699391,RO 1360699392,1360703487,DE 1360703488,1360707583,RU 1360707584,1360709631,IT 1360709632,1360711679,AL 1360711680,1360715775,NL 1360715776,1360728063,SE 1360728064,1360732159,FR 1360732160,1360736255,NO 1360736256,1360740351,RU 1360740352,1360752639,GB 1360752640,1360756735,DE 1360756736,1360760831,IT 1360760832,1360764927,RU 1360764928,1360769023,DE 1360769024,1360773119,IT 1360773120,1360777215,CZ 1360777216,1360781311,DK 1360781312,1360785407,DE 1360785408,1360793599,RU 1360793600,1360797695,CZ 1360797696,1360805887,IR 1360805888,1360809983,DE 1360809984,1360814079,NL 1360814080,1360818175,FR 1360818176,1360822271,JO 1360822272,1360826367,AT 1360826368,1360830463,GB 1360830464,1360838655,RU 1360838656,1360842751,FR 1360842752,1360846847,RU 1360846848,1360850943,DE 1360855040,1360859135,NL 1360859136,1360863231,LT 1360863232,1360867327,NO 1360867328,1360879615,GB 1360879616,1360883711,EG 1360883712,1360887807,RU 1360887808,1360891903,FI 1360891904,1360895999,CH 1360896000,1360900095,QA 1360900096,1360916479,IT 1360916480,1360920575,IR 1360920576,1360928767,IT 1360928768,1360932863,NL 1360932864,1360936959,RU 1360936960,1360941055,NL 1360941056,1360945151,BY 1360945152,1360949247,DE 1360949248,1360953343,RU 1360953344,1360957439,PL 1360957440,1360961535,DE 1360961536,1360965631,UA 1360965632,1360977919,RU 1360977920,1360986111,CZ 1360986112,1360986269,GB 1360986270,1360986270,US 1360986271,1360986299,GB 1360986300,1360986300,US 1360986301,1360986356,GB 1360986357,1360986358,US 1360986359,1360986367,GB 1360986368,1360986399,US 1360986400,1360986631,GB 1360986632,1360986635,US 1360986636,1360992255,GB 1360992256,1360992511,DE 1360992512,1360993095,GB 1360993096,1360993099,DE 1360993100,1360994303,GB 1360994304,1360998399,CZ 1360998400,1361002495,FI 1361002496,1361006591,GB 1361006592,1361010687,DK 1361010688,1361018879,GB 1361018880,1361022975,AT 1361022976,1361027071,IT 1361027072,1361035263,IR 1361035628,1361035631,DZ 1361039360,1361041407,IE 1361041408,1361043455,NL 1361043456,1361051647,IR 1361051648,1362100223,ES 1362100224,1362395647,FR 1362395648,1362395775,US 1362395776,1362395807,FR 1362395808,1362395903,US 1362395904,1362396671,FR 1362396672,1362396927,US 1362396928,1362398463,FR 1362398464,1362398719,DE 1362398720,1362403583,FR 1362403584,1362404351,DZ 1362404352,1362404607,FR 1362404608,1362405887,DZ 1362405888,1362406143,FR 1362406144,1362407167,SV 1362407168,1362411519,FR 1362411520,1362413273,MQ 1362413274,1362414847,FR 1362414848,1362415103,GB 1362415104,1362415359,FR 1362415360,1362415615,DE 1362415616,1362417663,GP 1362417664,1362419711,SG 1362419712,1362423807,FR 1362423808,1362425855,SG 1362425856,1362426879,FR 1362426880,1362427815,MQ 1362427816,1362755583,FR 1362755584,1362886655,NL 1362886656,1363017727,ES 1363017728,1363148799,CH 1363148800,1363410943,FR 1363410944,1363673087,NL 1363673088,1363935231,IT 1363935232,1364197375,GB 1364197376,1364262911,FR 1364262912,1364328447,IT 1364328448,1364459519,BE 1364459520,1364525055,PT 1364525056,1364526591,NL 1364526592,1364528639,GB 1364528640,1364529663,NL 1364529664,1364530175,GB 1364530176,1364537343,NL 1364537344,1364537599,IS 1364537600,1364541439,NL 1364541440,1364545535,SE 1364545536,1364581375,NL 1364581376,1364582399,LY 1364582400,1364585727,NL 1364585728,1364585983,CA 1364585984,1364590591,NL 1364590592,1364721663,GB 1364721664,1364725759,SE 1364725760,1364733951,DE 1364733952,1364738047,IT 1364738048,1364742143,NO 1364742144,1364746239,RU 1364746240,1364750335,FR 1364750336,1364754431,RU 1364754432,1364758527,SK 1364758528,1364762623,KZ 1364762624,1364766719,GB 1364766720,1364770815,CH 1364770816,1364774911,KG 1364774912,1364779007,RU 1364779008,1364787199,IT 1364787200,1364795391,RO 1364795392,1364799487,ES 1364799488,1364803583,SK 1364803584,1364809727,RU 1364809728,1364815871,DE 1364815872,1364819967,RU 1364819968,1364824063,GB 1364824064,1364828159,SE 1364828160,1364832255,GB 1364832256,1364836351,RU 1364836352,1364840447,DE 1364840448,1364844543,AM 1364844544,1364852735,DE 1364852736,1364856831,RU 1364856832,1364860927,IQ 1364860928,1364865023,DE 1364865024,1364869119,PT 1364869120,1364873215,FI 1364873216,1364877311,GB 1364877312,1364881407,ES 1364881408,1364885503,EE 1364885504,1364889599,GB 1364889600,1364893695,IR 1364893696,1364897791,CZ 1364897792,1364901887,SI 1364901888,1364905983,DE 1364905984,1364910079,RU 1364910080,1364914175,UA 1364914176,1364918271,CZ 1364918272,1364922367,SE 1364922368,1364924415,DE 1364924416,1364926463,YE 1364926464,1364934655,RU 1364934656,1364938751,FR 1364938752,1364942847,CZ 1364942848,1364946943,GB 1364946944,1364951039,TR 1364951040,1364959231,IR 1364959232,1364963327,DE 1364963328,1364967423,RU 1364967424,1364971519,GB 1364971520,1364975615,CZ 1364975616,1364979711,BJ 1364979712,1364983807,GB 1364983808,1364991999,DE 1364992000,1364996095,IT 1364996096,1365000191,GR 1365000192,1365004287,SE 1365004288,1365008383,FR 1365008384,1365012479,CH 1365012480,1365015903,US 1365015904,1365015919,GB 1365015920,1365016575,US 1365016576,1365020671,ES 1365020672,1365024767,CZ 1365024768,1365025151,DE 1365025152,1365025215,AT 1365025216,1365028863,DE 1365028864,1365032959,NL 1365032960,1365039615,PT 1365039616,1365039871,BE 1365039872,1365041151,PT 1365041152,1365044735,FR 1365044736,1365044799,LU 1365044800,1365044927,FR 1365044928,1365044935,GR 1365044936,1365044943,LU 1365044944,1365045247,FR 1365045248,1365047295,AT 1365047296,1365049343,SK 1365049344,1365057535,FR 1365057536,1365061631,IT 1365061632,1365065727,NL 1365065728,1365073919,BA 1365073920,1365078015,NO 1365078016,1365082111,DE 1365082112,1365090303,SE 1365090304,1365094399,NO 1365094400,1365098495,FR 1365098496,1365102591,HU 1365102592,1365106687,ES 1365106688,1365110783,GB 1365110784,1365114879,FR 1365114880,1365118975,BA 1365118976,1365127167,RU 1365127168,1365131263,AT 1365131264,1365139455,SE 1365139456,1365147647,CH 1365147648,1365155839,RU 1365155840,1365159935,SE 1365159936,1365164031,HU 1365164032,1365172223,GB 1365172224,1365176319,LV 1365176320,1365180415,HU 1365180416,1365184511,DE 1365184512,1365192703,RU 1365192704,1365196799,GB 1365196800,1365200895,ES 1365200896,1365204991,IQ 1365204992,1365209087,CZ 1365209088,1365213183,BE 1365213184,1365217279,RU 1365217280,1365219167,NL 1365219168,1365219168,GB 1365219169,1365221375,NL 1365221376,1365225471,GE 1365225472,1365229567,UA 1365229568,1365233663,PL 1365233664,1365237759,RU 1365237760,1365241855,UZ 1365241856,1365245951,DK 1365245952,1366294527,GB 1366294528,1366405831,IT 1366405832,1366405835,SI 1366405836,1367343103,IT 1367343104,1369440255,GB 1369440256,1369473023,DE 1369473024,1369505791,HU 1369505792,1369509887,RO 1369509888,1369518079,RU 1369518080,1369520127,RO 1369520128,1369520639,LI 1369520640,1369520895,FR 1369520896,1369521151,RO 1369521152,1369521663,SK 1369521664,1369521919,PL 1369521920,1369522175,RU 1369522176,1369530367,CZ 1369530368,1369530879,DK 1369530880,1369531391,RU 1369531392,1369534975,PL 1369534976,1369535231,RU 1369535232,1369535487,AT 1369535488,1369538559,RU 1369538560,1369554943,DK 1369554944,1369559039,PL 1369559040,1369563135,RU 1369567232,1369571327,BG 1369571328,1369585663,RU 1369585664,1369591807,UA 1369591808,1369595903,SK 1369595904,1369604095,UA 1369604096,1369620479,MD 1369620480,1369624575,CZ 1369624576,1369626623,PL 1369626624,1369636863,UA 1369636864,1369638911,IR 1369638912,1369640959,PL 1369640960,1369655295,RU 1369655296,1369657343,LV 1369657344,1369659391,RU 1369659392,1369661439,UA 1369661440,1369665535,RU 1369665536,1369677823,UA 1369677824,1369686015,RU 1369686016,1369690111,PL 1369690112,1369694207,UA 1369694208,1369702399,RU 1369702400,1369833471,BE 1369833472,1369964543,NO 1369964544,1369997311,GB 1369997312,1370030079,PL 1370030080,1370062847,BE 1370062848,1370095615,DE 1370095616,1370128383,GB 1370128384,1370161151,SE 1370161152,1370174207,NL 1370174208,1370174463,DE 1370174464,1370174495,BE 1370174496,1370174527,FR 1370174528,1370174559,CH 1370174560,1370174591,HU 1370174592,1370174623,CZ 1370174624,1370174655,PL 1370174656,1370174687,DE 1370174688,1370174719,SE 1370174720,1370174751,DK 1370174752,1370174752,NL 1370174753,1370174783,ES 1370174784,1370174815,CH 1370174816,1370176255,NL 1370176256,1370176511,GB 1370176512,1370178815,NL 1370178816,1370179071,ES 1370179072,1370181887,NL 1370181888,1370182143,US 1370182144,1370182911,NL 1370182912,1370183167,DE 1370183168,1370185983,NL 1370185984,1370186239,GB 1370186240,1370188543,NL 1370188544,1370188799,FR 1370188800,1370189055,US 1370189056,1370189311,NL 1370189312,1370189567,US 1370189568,1370190847,NL 1370190848,1370192127,DE 1370192128,1370193919,NL 1370193920,1370226687,GB 1370226688,1370259455,ES 1370259456,1370292223,SE 1370292224,1370324991,NL 1370324992,1370357759,DE 1370357760,1370390527,IT 1370390528,1370423295,GB 1370423296,1370439679,NO 1370439680,1370456063,NL 1370456064,1370488831,FI 1370488832,1370619903,RU 1370619904,1370750975,GB 1370750976,1370767359,RO 1370767360,1370771455,MD 1370771456,1370772479,RO 1370772480,1370772991,MD 1370772992,1370882047,RO 1370882048,1371013119,HU 1371013120,1371078655,ES 1371078656,1371144191,FR 1371144192,1371201535,GR 1371201536,1371205631,PL 1371205632,1371209727,SE 1371209728,1371275263,GB 1371275264,1371340799,BE 1371340800,1371406335,AT 1371406336,1371471871,PL 1371471872,1371537407,NO 1371537408,1371602943,MA 1371602944,1371668479,PT 1371668480,1371734015,FR 1371734016,1371799551,RU 1371799552,1371865087,RO 1371865088,1371930623,FI 1371930624,1371996159,LV 1371996160,1371996671,GB 1371996672,1371996927,GA 1371996928,1372000255,GB 1372000256,1372004351,UG 1372004352,1372012543,GB 1372012544,1372013567,ZM 1372013568,1372020735,GB 1372020736,1372020991,ZM 1372020992,1372021247,CD 1372021248,1372022783,ZM 1372022784,1372026623,GB 1372026624,1372026879,KE 1372026880,1372027903,IL 1372027904,1372043519,GB 1372043520,1372043775,NG 1372043776,1372060671,GB 1372060672,1372061695,IL 1372061696,1372069887,RU 1372069888,1372073983,FR 1372073984,1372078079,CZ 1372078080,1372082175,GB 1372082176,1372086271,RU 1372086272,1372090367,DE 1372090368,1372094463,RU 1372094464,1372098559,IT 1372098560,1372102655,RU 1372102656,1372106751,SE 1372106752,1372110847,FR 1372110848,1372114943,DE 1372114944,1372119039,RU 1372119040,1372123135,IT 1372123136,1372127231,RU 1372127232,1372131327,IT 1372131328,1372135423,RU 1372135424,1372139519,DE 1372139520,1372143615,CZ 1372143616,1372147711,RU 1372147712,1372149247,BE 1372149248,1372149375,HK 1372149376,1372151807,BE 1372151808,1372159999,DE 1372160000,1372164095,GB 1372164096,1372168191,DE 1372168192,1372172287,GB 1372172288,1372176383,FR 1372176384,1372180479,CH 1372180480,1372184575,SE 1372184576,1372188671,DE 1372188672,1372192767,RU 1372192768,1372323839,ES 1372323840,1372585983,NL 1372585984,1372618751,IT 1372618752,1372651519,GB 1372651520,1372684287,FI 1372684544,1372684799,DE 1372685664,1372685679,DE 1372688384,1372689407,DE 1372689920,1372690175,DE 1372690432,1372691455,DE 1372693504,1372694015,DE 1372697344,1372697599,DE 1372698880,1372699647,DE 1372699904,1372700159,DE 1372702720,1372703231,DE 1372703616,1372703743,DE 1372704768,1372713983,DE 1372715008,1372717055,DE 1372717056,1372749823,PL 1372749824,1372782591,DE 1372782592,1372815359,RU 1372815360,1372848127,KZ 1372848128,1373110271,TR 1373110272,1373175807,SE 1373175808,1373241343,AT 1373241344,1373306879,IL 1373306880,1373372415,PL 1373372416,1373437951,FR 1373437952,1373503487,CH 1373503488,1373569023,RU 1373569024,1373634559,AT 1373634560,1374433279,SE 1374433280,1374433535,DK 1374433536,1374683135,SE 1374683136,1375207423,BE 1375207424,1375207679,FR 1375207680,1375208447,MQ 1375208448,1375208703,GP 1375208704,1375208959,FR 1375208960,1375210239,MQ 1375210240,1375210495,GP 1375210496,1375211263,MQ 1375211264,1375211519,FR 1375211520,1375213055,GP 1375213056,1375213311,FR 1375213312,1375215359,GP 1375215360,1375215615,BL 1375215616,1375215871,GF 1375215872,1375216127,FR 1375216128,1375216639,GF 1375216640,1375217663,FR 1375217664,1375217919,GF 1375217920,1375218175,FR 1375218176,1375218687,GF 1375218688,1375218943,FR 1375218944,1375220735,GF 1375220736,1375221759,FR 1375221760,1375222015,GF 1375222016,1375222783,FR 1375222784,1375223039,GF 1375223040,1375223295,FR 1375223296,1375223551,GF 1375223552,1375224831,FR 1375224832,1375225087,MQ 1375225088,1375226111,FR 1375226112,1375226367,MQ 1375226368,1375226623,FR 1375226624,1375227391,MQ 1375227392,1375227647,FR 1375227648,1375227903,MQ 1375227904,1375228415,FR 1375228416,1375228671,MQ 1375228672,1375229183,FR 1375229184,1375229439,MQ 1375229440,1375230719,FR 1375230720,1375230975,MQ 1375230976,1375231487,FR 1375231488,1375231743,MQ 1375231744,1375234047,FR 1375234048,1375234303,MQ 1375234304,1375234559,FR 1375234560,1375234815,MQ 1375234816,1375235071,FR 1375235072,1375235583,MQ 1375235584,1375236095,FR 1375236096,1375236351,MQ 1375236352,1375237887,FR 1375237888,1375238143,MQ 1375238144,1375238655,FR 1375238656,1375238911,MQ 1375238912,1375239167,FR 1375239168,1375239423,MQ 1375239424,1375242495,FR 1375242496,1375242751,GP 1375242752,1375243007,FR 1375243008,1375243263,GP 1375243264,1375243775,FR 1375243776,1375244031,GP 1375244032,1375246079,FR 1375246080,1375246591,GP 1375246592,1375247871,FR 1375247872,1375248383,GP 1375248384,1375250687,FR 1375250688,1375251199,GP 1375251200,1375251711,FR 1375251712,1375252223,GP 1375252224,1375252735,FR 1375252736,1375253247,GP 1375253248,1375253503,FR 1375253504,1375253759,GP 1375253760,1375254015,FR 1375254016,1375254527,GP 1375254528,1375255039,FR 1375255040,1375255295,GP 1375255296,1375255551,FR 1375255552,1375255807,GP 1375255808,1375256575,FR 1375256576,1375257599,RE 1375257600,1375258111,FR 1375258112,1375258623,RE 1375258624,1375260062,FR 1375260063,1375260063,RE 1375260064,1375260685,FR 1375260686,1375260686,RE 1375260687,1375260927,FR 1375260928,1375262463,RE 1375262464,1375262975,FR 1375262976,1375263487,RE 1375263488,1375264255,FR 1375264256,1375264511,RE 1375264512,1375264550,FR 1375264551,1375264551,RE 1375264552,1375264727,FR 1375264728,1375264728,RE 1375264729,1375264767,FR 1375264768,1375265791,RE 1375265792,1375266303,FR 1375266304,1375266815,RE 1375266816,1375269119,FR 1375269120,1375269375,RE 1375269376,1375269631,FR 1375269632,1375270143,RE 1375270144,1375270399,FR 1375270400,1375270655,RE 1375270656,1375270911,FR 1375270912,1375271679,RE 1375271680,1375731711,FR 1375731712,1378877439,GB 1378877440,1379926015,IT 1379926016,1380188159,FR 1380188160,1380450303,GB 1380450304,1380712447,NL 1380712448,1380974591,RO 1380974592,1381105663,IL 1381105664,1381236735,DE 1381236736,1381367807,IT 1381367808,1381498879,ES 1381498880,1381761023,IT 1381761024,1382023167,NL 1382023168,1382039551,SE 1382039552,1382055935,DE 1382055936,1382072319,FR 1382072320,1382088703,RU 1382088704,1382105087,FR 1382105088,1382137855,DE 1382137856,1382154239,RU 1382154240,1382170623,FR 1382170624,1382187007,DE 1382187008,1382203391,ES 1382203392,1382205439,GB 1382213632,1382219775,GB 1382219776,1382222807,SE 1382222808,1382222815,FI 1382222816,1382222847,SE 1382222848,1382223103,FI 1382223104,1382252543,SE 1382252544,1382268927,CZ 1382268928,1382285311,IR 1382285312,1382301695,CZ 1382301696,1382318079,SE 1382318080,1382334463,RU 1382334464,1382350847,DE 1382350848,1382367231,FR 1382367232,1382383615,BG 1382383616,1382399999,DZ 1382400000,1382416383,NL 1382416384,1382417663,PT 1382417664,1382418175,SE 1382418176,1382432767,PT 1382432768,1382449151,CY 1382449152,1382465535,IL 1382465536,1382481919,PS 1382481920,1382498303,AT 1382498304,1382514687,BG 1382514688,1382518783,DK 1382518784,1382522879,DE 1382522880,1382531071,DK 1382531072,1382547455,FI 1382547456,1382809599,IT 1382809600,1383071743,GB 1383071744,1383088127,RU 1383088128,1383096319,IS 1383096320,1383098879,GB 1383098880,1383099135,DE 1383099136,1383099163,GB 1383099164,1383099164,NL 1383099165,1383104511,GB 1383104512,1383108735,JE 1383108736,1383108863,GG 1383108864,1383112703,JE 1383112704,1383114751,LB 1383114752,1383116799,GB 1383116800,1383120895,RU 1383120896,1383129087,IT 1383129088,1383137279,GB 1383137280,1383145471,MC 1383145472,1383153663,CZ 1383153664,1383161855,GB 1383161856,1383170047,DE 1383170048,1383186431,GB 1383186432,1383194623,IT 1383194624,1383202815,GB 1383202816,1383211007,RU 1383211008,1383219199,CY 1383219200,1383225983,AL 1383225984,1383226007,RS 1383226008,1383226207,AL 1383226208,1383226239,RS 1383226240,1383227391,AL 1383227392,1383243775,RU 1383243776,1383251967,YE 1383251968,1383260159,CZ 1383260160,1383268351,RU 1383268352,1383272191,IR 1383272192,1383272447,NL 1383272448,1383273983,IR 1383273984,1383274248,KW 1383274249,1383274249,IR 1383274250,1383275775,KW 1383275776,1383276543,IR 1383276544,1383284735,KZ 1383284736,1383292927,PL 1383292928,1383301119,DE 1383301120,1383309311,SE 1383309312,1383317503,IT 1383317504,1383321599,SE 1383325696,1383333887,GB 1383333888,1383350271,RU 1383350272,1383358463,NO 1383358464,1383367679,DE 1383367680,1383368703,GB 1383368704,1383369727,DE 1383369728,1383369983,SA 1383369984,1383372031,DE 1383372032,1383374335,KW 1383374336,1383374847,DE 1383374848,1383383039,ES 1383383040,1383391231,CY 1383391232,1383399423,FI 1383399424,1383407615,LI 1383407616,1383415807,NO 1383415808,1383423999,RU 1383424000,1383432191,SE 1383432192,1383440383,CZ 1383440384,1383448575,RU 1383448576,1383456767,RS 1383456768,1383464959,UA 1383464960,1383469055,BA 1383469056,1383471103,UA 1383471104,1383473151,SE 1383473152,1383481343,DE 1383481344,1383481599,GB 1383481600,1383481615,US 1383481616,1383481663,GB 1383481664,1383481695,US 1383481696,1383482623,GB 1383482624,1383482879,NL 1383482880,1383497727,GB 1383497728,1383505919,RU 1383505920,1383514111,SA 1383514112,1383522303,FI 1383522304,1383523839,BG 1383523840,1383524095,GB 1383524096,1383530495,BG 1383530496,1383538687,DE 1383538688,1383546879,IT 1383546880,1383555071,BG 1383555072,1383563263,SK 1383563264,1383571455,RU 1383571456,1383579647,DE 1383579648,1383587839,IT 1383587840,1383591935,SK 1383591936,1383596031,CZ 1383596032,1384120319,FR 1384120320,1384153087,NG 1384153088,1384185855,FI 1384190976,1384191231,DK 1384196096,1384197119,CZ 1384204288,1384206335,ES 1384218624,1384251391,EG 1384251392,1384267775,FI 1384267776,1384284159,CH 1384284160,1384316927,ES 1384316928,1384349695,EE 1384349696,1384382463,HU 1384382464,1384415231,HR 1384415232,1384480767,GB 1384480768,1384513535,FI 1384513536,1384546303,NO 1384546304,1384579071,NL 1384579072,1384611839,DE 1384611840,1384644607,LT 1384644608,1384660991,GB 1384660992,1384677375,CH 1384677376,1384693759,SE 1384693760,1384710143,NL 1384710144,1384726527,RO 1384726528,1384742911,BG 1384742912,1384759295,RU 1384759296,1384775679,SY 1384775680,1384792063,RU 1384792064,1384808447,FR 1384824832,1384841215,GB 1384841216,1384857599,PL 1384857600,1384873983,NL 1384873984,1384890367,PL 1384890368,1384923135,DE 1384923136,1384939519,RU 1384939520,1384955903,LT 1384955904,1384972287,RU 1384972288,1384988671,DE 1384988672,1385005055,FI 1385005056,1385021439,HU 1385021440,1385037823,IE 1385037824,1385054207,FR 1385054208,1385070591,CZ 1385070592,1385086975,RU 1385086976,1385103359,GB 1385103360,1385119743,IT 1385119744,1385136127,BE 1385136128,1385152511,PL 1385152512,1385168895,DK 1385168896,1385177087,ES 1385177088,1385185279,DE 1385185280,1385193471,RU 1385193472,1385201663,ES 1385201664,1385209855,CZ 1385209856,1385218047,HU 1385218048,1385226239,UA 1385226240,1385234431,GB 1385234432,1385242623,DE 1385242624,1385250815,GB 1385250816,1385259007,PL 1385259008,1385267199,IT 1385267200,1385275391,SE 1385275392,1385283583,IT 1385283584,1385286143,DE 1385286144,1385290631,GB 1385290632,1385290632,IS 1385290633,1385291343,GB 1385291344,1385291344,IS 1385291345,1385291775,GB 1385291776,1385299967,TR 1385299968,1385308159,BG 1385308160,1385312255,RU 1385312256,1385313279,US 1385313280,1385316351,RU 1385316352,1385324543,NO 1385324544,1385332735,BE 1385332736,1385340927,GB 1385340928,1385349119,LB 1385349120,1385357311,CH 1385357312,1385365503,PL 1385365504,1385373695,GB 1385373696,1385381887,NO 1385381888,1385398271,RU 1385398272,1385406463,BG 1385406464,1385414655,EE 1385414656,1385422847,SA 1385422848,1385431039,DK 1385431040,1385439231,RU 1385439232,1385447423,GB 1385447424,1385455615,IS 1385455616,1385463807,QA 1385463808,1385480191,NO 1385480192,1385488383,NL 1385488384,1385496575,GB 1385496576,1385504767,SI 1385504768,1385512959,IT 1385512960,1385521151,DE 1385521152,1385529343,AT 1385529344,1385537535,RU 1385537536,1385545727,DE 1385545728,1385553919,RU 1385553920,1385562111,DE 1385567232,1385568255,IE 1385570304,1385578495,HU 1385578496,1385586687,TR 1385586688,1385594879,GB 1385594880,1385603071,NL 1385603072,1385611263,CZ 1385611264,1385619455,AT 1385619456,1385625599,DE 1385625600,1385635839,FR 1385635840,1385644031,NL 1385644032,1385652223,MR 1385652224,1385660415,RU 1385660416,1385668607,TR 1385668608,1385676799,NL 1385676800,1385684991,RU 1385684992,1385824255,GB 1385824256,1385955327,PT 1385955328,1386086399,NL 1386086400,1386217471,ES 1386217472,1386283007,PL 1386283008,1386348543,NL 1386348544,1386414079,RU 1386414080,1386438399,GB 1386438400,1386438655,FR 1386438656,1386448895,GB 1386448896,1386450943,IL 1386450944,1386479615,GB 1386479616,1386545151,NO 1386545152,1386552319,DE 1386552320,1386553087,GB 1386553088,1386610687,DE 1386610688,1386676223,IL 1386676224,1386741759,SA 1386741760,1387249663,NL 1387249664,1387250687,BE 1387250688,1387331583,NL 1387331584,1387397119,PL 1387397120,1387462655,OM 1387462656,1387528191,RU 1387528192,1387593727,DK 1387593728,1387659263,FI 1387659264,1387790335,SE 1387790336,1388314623,IT 1388314624,1388322815,AT 1388322816,1388331007,SI 1388331008,1388339199,NL 1388339200,1388347391,GB 1388347392,1388363775,DK 1388363776,1388371967,DE 1388371968,1388380159,CH 1388380160,1388396543,IT 1388396544,1388404735,LV 1388404736,1388412927,UA 1388412928,1388421119,RU 1388421120,1388429311,SE 1388429312,1388437503,HR 1388437504,1388445695,DE 1388445696,1388453887,AZ 1388453888,1388462079,BH 1388462080,1388470271,ES 1388470272,1388478463,DE 1388478464,1388486655,AT 1388486656,1388494847,RU 1388494848,1388503039,NO 1388503040,1388519423,RU 1388519424,1388527615,NL 1388527616,1388535807,DE 1388535808,1388543999,GB 1388544000,1388552191,IE 1388552192,1388560383,GB 1388560384,1388568575,FI 1388568576,1388576767,CH 1388576768,1388580863,NL 1388580864,1388581119,GB 1388581120,1388583167,FR 1388583168,1388583423,DZ 1388583424,1388584959,FR 1388587456,1388587471,GB 1388587520,1388587775,GB 1388589056,1388589823,GB 1388591104,1388591359,AU 1388593152,1388601343,RU 1388601344,1388609535,SE 1388609536,1388617727,RU 1388617728,1388625919,SE 1388625920,1388634111,NO 1388634112,1388642303,GB 1388642304,1388650495,FI 1388650496,1388658687,PL 1388658688,1388666879,GB 1388666880,1388667647,FR 1388667648,1388668159,RE 1388668160,1388671097,FR 1388671098,1388671098,RE 1388671099,1388671763,FR 1388671764,1388671764,RE 1388671765,1388672244,FR 1388672245,1388672245,RE 1388672246,1388673079,FR 1388673080,1388673080,RE 1388673081,1388673769,FR 1388673770,1388673770,RE 1388673771,1388675071,FR 1388675584,1388676095,DE 1388677632,1388677887,NL 1388678144,1388679167,DE 1388681216,1388683263,DE 1388683264,1388683903,CH 1388683904,1388683919,DE 1388683920,1388685599,CH 1388685600,1388685631,GB 1388685632,1388688127,CH 1388688128,1388688159,NL 1388688160,1388691455,CH 1388691456,1388699647,NL 1388699648,1388707839,SE 1388707840,1388708727,RU 1388708728,1388708743,US 1388708744,1388708859,RU 1388708860,1388708863,US 1388708864,1388709375,RU 1388709376,1388709887,LT 1388709888,1388712063,RU 1388712064,1388712191,LT 1388712192,1388714239,RU 1388714240,1388714495,LB 1388714496,1388714751,RU 1388714752,1388715007,LT 1388715008,1388715263,RU 1388715264,1388715519,LT 1388715520,1388716031,RU 1388716032,1388724223,ES 1388724224,1388732415,DE 1388732416,1388740607,ES 1388740608,1388741791,GB 1388741792,1388741795,IE 1388741796,1388743015,GB 1388743016,1388743023,IE 1388743024,1388743047,GB 1388743048,1388743055,IE 1388743056,1388743423,GB 1388743424,1388743435,IE 1388743436,1388743679,GB 1388743680,1388743935,IE 1388743936,1388744391,GB 1388744392,1388744395,IE 1388744396,1388744759,GB 1388744760,1388744767,IE 1388744768,1388744831,GB 1388744832,1388744847,IE 1388744848,1388745971,GB 1388745972,1388745975,IE 1388745976,1388746495,GB 1388746496,1388746559,IE 1388746560,1388746911,GB 1388746912,1388746927,IE 1388746928,1388748799,GB 1388748800,1388756991,RU 1388756992,1388765183,DE 1388765184,1388773375,GB 1388773376,1388781567,NO 1388781568,1388789759,ES 1388789760,1388794943,NL 1388794944,1388794959,GB 1388794960,1388796679,NL 1388796680,1388796681,GB 1388796682,1388796682,NL 1388796683,1388796687,GB 1388796688,1388797951,NL 1388797952,1388806143,RU 1388806144,1388814335,DE 1388814336,1388822527,AX 1388822528,1388830719,AM 1388830720,1388838911,FI 1388838912,1388871679,RU 1388871680,1388904447,KZ 1388904448,1388937215,NL 1388937216,1388969983,EG 1388969984,1389002751,CZ 1389002752,1389035519,RU 1389035520,1389068287,GB 1389068288,1389101055,FI 1389101056,1389133823,NL 1389133824,1389166591,RU 1389166592,1389199359,PS 1389199360,1389199871,AE 1389199872,1389200159,US 1389200160,1389218815,AE 1389218816,1389219839,AF 1389219840,1389228415,AE 1389228416,1389228479,LB 1389228480,1389232127,AE 1389232128,1389264895,DE 1389264896,1389265151,TZ 1389265152,1389266943,GB 1389266944,1389267199,KE 1389267200,1389268863,GB 1389268864,1389268871,KE 1389268872,1389275647,GB 1389275648,1389275903,ZA 1389275904,1389289471,GB 1389289472,1389290495,NO 1389290496,1389297663,GB 1389297664,1389330431,UA 1389330432,1389363199,DE 1389363200,1389373498,CZ 1389373499,1389373499,ES 1389373500,1389379583,CZ 1389379584,1389395967,RU 1389395968,1389412351,RO 1389412352,1389428735,RS 1389428736,1389445119,CZ 1389445120,1389461503,RU 1389461504,1389477887,SE 1389477888,1389494271,BY 1389494272,1389510655,DE 1389510656,1389527039,NL 1389527040,1389543423,RO 1389543424,1389576191,DE 1389576192,1389592575,GB 1389592576,1389598719,GE 1389598720,1389598956,RU 1389598957,1389598957,GE 1389598958,1389598975,RU 1389598976,1389604863,GE 1389604864,1389605119,RU 1389605120,1389608959,GE 1389608960,1389625343,DK 1389625344,1389641727,DE 1389641728,1389658111,JO 1389658112,1389674495,BE 1389674496,1389690879,DE 1389690880,1389707263,PS 1389707264,1389723647,IT 1389723648,1389756415,ES 1389756416,1389772799,SE 1389772800,1389778431,SI 1389778432,1389780991,RS 1389780992,1389783039,HR 1389783040,1389785087,BA 1389785088,1389787135,MK 1389787136,1389788671,SI 1389788672,1389789183,RS 1389789184,1389805567,PL 1389805568,1389806591,DE 1389806592,1389806847,SA 1389806848,1389817855,DE 1389817856,1389819903,GB 1389819904,1389821951,DE 1389821952,1389838335,NL 1389838336,1389854719,UZ 1389854720,1389871103,IT 1389871104,1389887487,FI 1389887488,1389953023,FR 1389953024,1390018559,NL 1390018560,1390084095,AT 1390084096,1390149631,GB 1390149632,1390215167,CH 1390215168,1390280703,IS 1390280704,1390346239,TR 1390346240,1390411775,ES 1390411776,1392508927,FR 1392508928,1393623705,PL 1393623706,1393623706,GB 1393623707,1394606079,PL 1394606080,1396703231,ES 1396703232,1396834303,AT 1396834304,1396899839,TR 1396899840,1396965375,GB 1396965376,1396973567,NL 1396973568,1396981759,RU 1396981760,1396989951,PL 1396989952,1396998143,FR 1396998144,1397006335,AT 1397006336,1397014527,KW 1397014528,1397022719,CH 1397022720,1397030911,SE 1397030912,1397039103,RU 1397039104,1397047295,CZ 1397047296,1397063679,RU 1397063680,1397071871,UZ 1397071872,1397096447,RU 1397096448,1397227519,IE 1397227520,1397489663,DK 1397489664,1397751807,CH 1397751808,1398276095,NL 1398276096,1398800383,DK 1398800384,1398833151,KW 1398833152,1398865919,NL 1398865920,1398867967,RU 1398867968,1398870015,NL 1398872064,1398874111,BG 1398874112,1398876159,GB 1398876160,1398880255,DE 1398880256,1398882303,FR 1398882304,1398884351,BG 1398884352,1398886399,DE 1398886400,1398888447,CH 1398888448,1398890495,GB 1398890496,1398892543,DK 1398892544,1398894591,RU 1398896640,1398898687,CH 1398898688,1398931455,ES 1398931456,1398964223,GB 1398964224,1398996991,NL 1398996992,1399029759,LU 1399029760,1399062527,LV 1399062528,1399095295,FI 1399095296,1399128063,GB 1399128064,1399160831,BE 1399160832,1399193599,SA 1399193600,1399226367,FI 1399226368,1399259135,RU 1399259136,1399291903,IT 1399291904,1399324671,RO 1399324672,1399586815,GB 1399586816,1399717887,NO 1399717888,1399848959,AE 1399848960,1400111103,FR 1400111104,1400373247,NL 1400373248,1400766463,DE 1400897536,1400963071,NL 1400963072,1401028607,DE 1401028608,1401094143,IL 1401094144,1401159679,HR 1401159680,1401225215,PT 1401225216,1401241599,DE 1401246720,1401257983,DE 1401271296,1401274367,DE 1401278464,1401283583,DE 1401286656,1401290751,DE 1401290752,1401356287,BE 1401356288,1401421823,DE 1401421824,1401423871,GB 1401423872,1401425919,AE 1401425920,1401427967,NL 1401427968,1401430015,RU 1401430016,1401432063,AT 1401432064,1401434111,IE 1401436160,1401438207,BH 1401438208,1401440255,GB 1401440256,1401444351,DE 1401444352,1401446399,DK 1401446400,1401448447,DE 1401448448,1401450495,IT 1401450496,1401452543,RU 1401452544,1401454591,GB 1401454592,1401456639,DE 1401456640,1401458687,LV 1401460736,1401462783,PL 1401462784,1401464831,FR 1401464832,1401466879,IE 1401466880,1401468927,RS 1401468928,1401470975,ES 1401470976,1401473023,NL 1401473024,1401475071,CZ 1401475072,1401477119,FR 1401477120,1401479167,BE 1401479168,1401481215,PL 1401481216,1401485311,RU 1401485312,1401489407,GB 1401489408,1401491455,SE 1401491456,1401493503,NL 1401493504,1401495551,CH 1401495552,1401497599,DE 1401497600,1401499647,AT 1401499648,1401501695,RU 1401501696,1401503487,IT 1401503488,1401503743,AL 1401503744,1401505791,DE 1401505792,1401509887,CH 1401509888,1401511935,UA 1401511936,1401513983,DE 1401513984,1401516031,IT 1401516032,1401518079,AT 1401518080,1401520127,DK 1401520128,1401522175,GB 1401522176,1401526271,NL 1401526272,1401528319,HU 1401528320,1401530367,IT 1401530368,1401532415,DE 1401532416,1401534463,GB 1401534464,1401536511,DE 1401536512,1401538559,NL 1401538560,1401540607,NO 1401540608,1401542655,GB 1401542656,1401544703,RU 1401544704,1401546751,GB 1401546752,1401548799,IT 1401548800,1401550847,FR 1401550848,1401551103,JE 1401551104,1401551615,GB 1401551616,1401552639,JE 1401552640,1401552895,GB 1401552896,1401554943,NL 1401554944,1401556991,IE 1401556992,1401563135,GB 1401563136,1401565183,ES 1401565184,1401567231,RU 1401567232,1401569279,GB 1401569280,1401585663,DE 1401585664,1401602047,GB 1401602048,1401618431,ES 1401618432,1401634815,AM 1401634816,1401651199,HR 1401651200,1401667583,RU 1401667584,1401683967,IT 1401683968,1401708287,SE 1401708288,1401708543,DE 1401708544,1401712895,SE 1401712896,1401713151,DE 1401713152,1401727743,SE 1401727744,1401727999,GB 1401728000,1401740543,SE 1401740544,1401740799,DE 1401740800,1401747711,SE 1401747712,1401747967,FR 1401747968,1401749503,SE 1401749504,1401765887,DE 1401765888,1401782271,IE 1401782272,1401815039,FR 1401815040,1401817087,SE 1401817088,1401819135,RU 1401819136,1401821183,BG 1401821184,1401825279,GB 1401825280,1401827327,PL 1401829376,1401831423,PL 1401831424,1401833471,GB 1401833472,1401835519,FI 1401835520,1401837567,DE 1401837568,1401839615,CH 1401839616,1401841663,NO 1401841664,1401843711,UA 1401843712,1401847807,PL 1401847808,1401849855,DE 1401849856,1401851903,PL 1401851904,1401853951,FR 1401853952,1401855999,PL 1401856000,1401858047,RU 1401858048,1401868287,PL 1401868288,1401870335,UA 1401870336,1401872383,PL 1401872384,1401874431,GB 1401874432,1401876479,UA 1401876480,1401878527,ES 1401878528,1401880575,MT 1401880576,1401882623,DE 1401882624,1401884671,NG 1401884672,1401886719,FR 1401886720,1401888767,BW 1401888768,1401890815,RU 1401890816,1401892863,PL 1401892864,1401894911,RU 1401894912,1401896959,FI 1401896960,1401899007,RU 1401901056,1401903103,NO 1401903104,1401905151,FI 1401905152,1401907199,PL 1401911296,1401913343,DK 1401913344,1401917439,PL 1401917440,1401919487,BG 1401919488,1401921535,RU 1401921536,1401923583,PL 1401923584,1401925631,GG 1401925632,1401927679,BG 1401927680,1401929727,NL 1401929728,1401931775,RU 1401931776,1401933823,UA 1401933824,1401935871,DE 1401935872,1401937919,FI 1401937920,1401939967,GB 1401939968,1401942015,UA 1401942016,1401942047,CZ 1401942528,1401943039,GB 1401943552,1401943807,US 1401944064,1401946111,BG 1401946112,1401962495,FR 1401962496,1401978879,PL 1401978880,1401995263,PT 1401995264,1402011647,CH 1402011648,1402018815,SE 1402018816,1402019327,FI 1402019328,1402027263,SE 1402027264,1402027519,NO 1402027520,1402028031,SE 1402028032,1402044415,FR 1402044416,1402060799,PL 1402060800,1402077183,FI 1402077184,1402093567,GB 1402093568,1402109951,RU 1402109952,1402142719,FI 1402142720,1402159103,ES 1402159104,1402175487,IT 1402175488,1402191871,IE 1402191872,1402208255,IR 1402208256,1402224639,CZ 1402224640,1402241023,BG 1402241024,1402257407,GB 1402257408,1402273791,FI 1402273792,1402277631,RU 1402277632,1402277887,TJ 1402277888,1402290175,RU 1402290176,1402306047,NL 1402306048,1402306303,DE 1402306304,1402306559,NL 1402306560,1402322943,IT 1402322944,1402339327,RU 1402339328,1402355711,CH 1402355712,1402372095,FI 1402372096,1402388479,SE 1402388480,1402404863,ES 1402404864,1402408959,RU 1402408960,1402413055,DE 1402413056,1402417151,PL 1402417152,1402421247,DE 1402421248,1402422271,FR 1402422272,1402429439,GB 1402429440,1402430463,US 1402430464,1402433600,GB 1402433601,1402433601,FR 1402433602,1402437631,GB 1402437632,1402454015,DK 1402454016,1402470399,GB 1402470400,1402994687,FR 1402994688,1403256831,NL 1403256832,1403322367,AT 1403322368,1403387903,ES 1403387904,1403396095,SE 1403396096,1403404287,EE 1403404288,1403412479,GB 1403412480,1403420671,RU 1403420672,1403428863,NL 1403428864,1403437055,GB 1403437056,1403445247,RO 1403445248,1403447295,RU 1403447296,1403448575,MD 1403448576,1403461631,RU 1403461632,1403469823,FR 1403469824,1403486207,RU 1403486208,1403494399,FR 1403494400,1403502591,GB 1403502592,1403510783,NL 1403510784,1403518975,CZ 1403518976,1403535359,CY 1403535360,1403551743,PL 1403551744,1403568127,SK 1403568128,1403573247,SE 1403573248,1403573503,ES 1403573504,1403574783,SE 1403574784,1403575039,IT 1403575040,1403576063,SE 1403576064,1403576319,DE 1403576320,1403578879,SE 1403578880,1403579135,DK 1403579136,1403581951,SE 1403581952,1403582207,US 1403582208,1403584511,SE 1403584512,1403600895,DE 1403600896,1403617279,FR 1403617280,1403633663,DE 1403633664,1403650047,RU 1403650048,1403666431,DE 1403666432,1403699199,GB 1403699200,1403715583,UA 1403715584,1403731967,LT 1403731968,1403748351,RU 1403748352,1403764735,DE 1403764736,1403781119,GR 1403781120,1403797503,RU 1403797504,1403813887,SE 1403813888,1403830271,NL 1403830272,1403846655,CH 1403846656,1403863039,IS 1403863040,1403879423,FR 1403879424,1403895807,ES 1403895808,1403912191,CH 1403912192,1403928575,PT 1403928576,1403944959,SE 1403944960,1403953151,GR 1403953152,1403961343,IE 1403961344,1403977727,RU 1403977728,1403994111,IT 1403994112,1404010495,AT 1404010496,1404026879,PL 1404026880,1404043263,ES 1404043264,1404051455,EE 1404051456,1404059647,HR 1404059648,1404076031,NO 1404076032,1404077055,SE 1404077056,1404081151,LV 1404081152,1404082175,SE 1404082176,1404083199,DE 1404083200,1404084223,SE 1404084224,1404092415,NO 1404092416,1404108799,SE 1404108800,1404112895,NL 1404112896,1404114943,HR 1404114944,1404116991,SE 1404116992,1404125183,NO 1404125184,1404130303,SE 1404130304,1404131327,HR 1404131328,1404135423,SE 1404135424,1404137471,NL 1404137472,1404139519,SE 1404139520,1404141567,NL 1404141568,1404166143,SE 1404166144,1404174335,LV 1404174336,1404182527,EE 1404182528,1404187519,SE 1404187520,1404187535,LV 1404187536,1404187551,NL 1404187552,1404189183,SE 1404189184,1404190719,EE 1404190720,1404192767,SE 1404192768,1404194815,LV 1404194816,1404198911,LT 1404198912,1404200959,SE 1404200960,1404203007,NL 1404203008,1404207103,HR 1404207104,1404209151,LV 1404209152,1404210175,NO 1404210176,1404212223,LV 1404212224,1404215295,SE 1404215296,1404219391,LV 1404219392,1404220415,SE 1404220416,1404221439,EE 1404221440,1404227583,SE 1404227584,1404231679,LV 1404231680,1404232191,SE 1404232192,1404232703,NO 1404232704,1404234751,SE 1404234752,1404239871,HR 1404239872,1404305407,SE 1404305408,1404313599,EE 1404313600,1404321791,HR 1404321792,1404338175,EE 1404338176,1404340223,SE 1404340224,1404342271,HR 1404342272,1404379135,SE 1404379136,1404383231,AT 1404383232,1404385279,HR 1404385280,1404386047,LT 1404386048,1404387327,SE 1404387328,1404420095,LT 1404420096,1404426502,HR 1404426503,1404426503,SE 1404426504,1404436479,HR 1404436480,1404444671,SE 1404444672,1404452863,NO 1404452864,1404510207,SE 1404510208,1404518399,HR 1404518400,1404522495,SE 1404522496,1404526591,LV 1404526592,1404538879,SE 1404538880,1404542975,LV 1404542976,1404559359,SE 1404559360,1404563455,LV 1404563456,1404567551,SE 1404567552,1404583935,HR 1404583936,1404600319,NO 1404600320,1404633087,SE 1404633088,1404641279,HR 1404641280,1404678143,SE 1404678144,1404680191,HR 1404680192,1404731391,SE 1404731392,1404764159,HR 1404764160,1404780543,NL 1404780544,1404788735,SE 1404788736,1404796927,NL 1404796928,1404801023,EE 1404801024,1404803583,SE 1404803584,1404804095,LV 1404804096,1404805119,SE 1404805120,1404813311,AT 1404813312,1404815871,EE 1404815872,1404816383,LT 1404816384,1404829695,NL 1404829696,1404854271,LT 1404854272,1404862463,SE 1404862464,1404870655,HR 1404870656,1404872703,LT 1404872704,1404874751,SE 1404874752,1404875775,LV 1404875776,1404887039,SE 1404887040,1404927999,NL 1404928000,1404944383,SE 1404944384,1404960767,LT 1404960768,1404977151,SE 1404977152,1404993535,LT 1404993536,1405009919,SE 1405009920,1405026303,LT 1405026304,1405042687,NO 1405042688,1405048831,SE 1405048832,1405050879,HR 1405050880,1405059071,AT 1405059072,1405063167,SE 1405063168,1405067263,NO 1405067264,1405083647,EE 1405083648,1405091839,SE 1405091840,1405812991,FR 1405812992,1405813759,MQ 1405813760,1405814271,FR 1405814272,1405814527,MQ 1405814528,1405814783,FR 1405814784,1405815295,MQ 1405815296,1405816319,FR 1405816320,1405817343,MQ 1405817344,1405817599,FR 1405817600,1405819903,MQ 1405819904,1405820159,FR 1405820160,1405821439,MQ 1405821440,1405821695,FR 1405821696,1405821951,MQ 1405821952,1405822207,FR 1405822208,1405823231,MQ 1405823232,1405823487,FR 1405823488,1405823743,MQ 1405823744,1405823999,FR 1405824000,1405825535,MQ 1405825536,1405826047,FR 1405826048,1405826559,MQ 1405826560,1405826815,FR 1405826816,1405827583,MQ 1405827584,1405827839,FR 1405827840,1405828351,MQ 1405828352,1405828607,FR 1405828608,1405828863,MQ 1405828864,1405829119,FR 1405829120,1405829375,MQ 1405829376,1405829631,FR 1405829632,1405830143,MQ 1405830144,1405830399,FR 1405830400,1405830911,MQ 1405830912,1405831167,FR 1405831168,1405834495,MQ 1405834496,1405835007,FR 1405835008,1405835519,MQ 1405835520,1405835775,FR 1405835776,1405836031,MQ 1405836032,1405836287,FR 1405836288,1405836543,MQ 1405836544,1405837311,FR 1405837312,1405837567,MQ 1405837568,1405837823,FR 1405837824,1405838079,MQ 1405838080,1405838335,FR 1405838336,1405839103,MQ 1405839104,1405839359,FR 1405839360,1405840383,MQ 1405840384,1405840895,FR 1405840896,1405846015,MQ 1405846016,1405846271,FR 1405846272,1405846783,MQ 1405846784,1405847039,FR 1405847040,1405847551,MQ 1405847552,1405847807,FR 1405847808,1405848063,MQ 1405848064,1405849599,FR 1405849600,1405850879,MQ 1405850880,1405851391,FR 1405851392,1405851647,MQ 1405851648,1405851903,FR 1405851904,1405852159,MQ 1405852160,1405852415,FR 1405852416,1405852927,MQ 1405852928,1405853439,FR 1405853440,1405853695,MQ 1405853696,1405853951,FR 1405853952,1405854207,MQ 1405854208,1405854975,FR 1405854976,1405855743,MQ 1405855744,1405855999,FR 1405856000,1405858047,MQ 1405858048,1405858559,FR 1405858560,1405860607,MQ 1405860608,1405860863,FR 1405860864,1405861887,MQ 1405861888,1405862399,FR 1405862400,1405862655,MQ 1405862656,1405863423,FR 1405863424,1405864191,MQ 1405864192,1405866495,FR 1405866496,1405867519,MQ 1405867520,1405868031,FR 1405868032,1405868287,MQ 1405868288,1405868799,FR 1405868800,1405869055,MQ 1405869056,1405869311,FR 1405869312,1405870591,MQ 1405870592,1405870847,FR 1405870848,1405871103,MQ 1405871104,1405871359,FR 1405871360,1405872127,MQ 1405872128,1405872639,FR 1405872640,1405873919,MQ 1405873920,1405874175,FR 1405874176,1405874431,MQ 1405874432,1405874687,FR 1405874688,1405876479,MQ 1405876480,1405876735,FR 1405876736,1405878271,MQ 1405878272,1406140415,FR 1406140416,1406205951,CZ 1406205952,1406271487,SE 1406271488,1406337023,IE 1406337024,1406402559,IT 1406402560,1406468095,GR 1406468096,1406533631,ES 1406533632,1406599167,FR 1406599168,1406664703,AT 1406664704,1406672895,FI 1406672896,1406681087,HU 1406681088,1406689279,GB 1406689280,1406697471,SE 1406697472,1406705663,GB 1406705664,1406713855,IT 1406713856,1406722047,AT 1406722048,1406730239,DE 1406730240,1406746623,RU 1406746624,1406754559,BE 1406754560,1406754815,FR 1406754816,1406763007,GB 1406763008,1406771199,LU 1406771200,1406779391,GB 1406779392,1406787583,RU 1406787584,1406788095,ES 1406788096,1406788351,NL 1406788352,1406791159,ES 1406791160,1406791295,GB 1406791296,1406793843,ES 1406793844,1406793847,GB 1406793848,1406794751,ES 1406794752,1406795775,NL 1406795776,1406796799,GB 1406796800,1406797311,IM 1406797312,1406803711,GB 1406803712,1406803967,IM 1406803968,1406812159,DE 1406812160,1406820351,SE 1406820352,1406828543,PL 1406828544,1406836735,GB 1406836736,1406837247,AT 1406837248,1406837503,GB 1406837504,1406844927,AT 1406844928,1406853119,MD 1406853120,1406861311,UA 1406861312,1406869503,RU 1406869504,1406877695,GB 1406877696,1406885887,NL 1406887936,1406889983,DE 1406889984,1406894079,CH 1406894080,1406902271,RU 1406902272,1406910463,AT 1406910464,1406918655,SE 1406918656,1406926847,RU 1406926848,1406935039,IT 1406935040,1406951423,RU 1406951424,1406959615,PL 1406959616,1406964351,DE 1406964352,1406964479,NL 1406964480,1406967807,DE 1406967808,1406975999,RU 1406976000,1406984191,IE 1406984192,1407000575,RU 1407000576,1407016959,DE 1407016960,1407025151,IT 1407025152,1407033343,DK 1407033344,1407034367,UZ 1407034368,1407035391,RU 1407035392,1407041535,UZ 1407041536,1407049727,RU 1407049728,1407057919,DE 1407057920,1407066111,RU 1407066112,1407074303,LU 1407074304,1407089663,RU 1407089664,1407090559,US 1407090560,1407090687,RU 1407090688,1407098879,CH 1407098880,1407107071,BG 1407107072,1407115263,RU 1407115264,1407123455,GB 1407123456,1407131647,SE 1407131648,1407139839,NL 1407139840,1407148031,DE 1407148032,1407156223,GB 1407156224,1407164415,LV 1407164416,1407172607,PT 1407172608,1407180799,GB 1407180800,1407188991,PT 1407188992,1407320063,IT 1407320064,1407451135,SE 1407451136,1407483903,BG 1407483904,1407516671,CH 1407516672,1407526231,GB 1407526232,1407526239,CD 1407526240,1407537087,GB 1407537088,1407537095,GH 1407537096,1407549439,GB 1407549440,1407582207,RU 1407582208,1407614975,PL 1407614976,1407680511,ES 1407680512,1407686119,GB 1407686120,1407686123,CH 1407686124,1407686127,DE 1407686128,1407686131,FR 1407686132,1407686135,BE 1407686136,1407686139,GB 1407686140,1407686143,ES 1407686144,1407686147,SE 1407686148,1407695679,GB 1407695680,1407695683,IT 1407695684,1407695763,GB 1407695764,1407695767,DK 1407695768,1407695771,GB 1407695772,1407695775,DK 1407695776,1407695807,GB 1407695808,1407695811,SE 1407695812,1407702271,GB 1407702272,1407702527,DE 1407702528,1407711239,GB 1407711240,1407711247,FR 1407711248,1407711263,GB 1407711264,1407711295,FR 1407711296,1407713279,GB 1407713280,1407778815,NL 1407778816,1407844351,SE 1407844352,1407909887,RU 1407909888,1407975423,GR 1407975424,1408040959,DE 1408040960,1408106495,RU 1408106496,1408172031,PL 1408172032,1408237567,RU 1408237568,1408270335,CZ 1408270336,1408283135,PT 1408283136,1408283391,GB 1408283392,1408303103,PT 1408303104,1408335871,LV 1408335872,1408368639,SE 1408368640,1408376831,NO 1408376832,1408385023,DE 1408385024,1408393215,PL 1408393216,1408397311,UA 1408397312,1408401407,PL 1408401408,1408434175,RU 1408434176,1408436223,DE 1408436224,1408438271,LU 1408438272,1408440319,FR 1408440320,1408442367,SE 1408442368,1408444415,PL 1408444416,1408450559,DE 1408450560,1408454655,RU 1408454656,1408456703,DE 1408456704,1408458751,LV 1408458752,1408460799,GB 1408460800,1408462847,PL 1408462848,1408464895,DE 1408466944,1408499711,NO 1408499712,1408532479,PS 1408532480,1408567919,GB 1408567920,1408567927,IE 1408567928,1408579583,GB 1408579584,1408579839,IE 1408579840,1408597503,GB 1408597504,1408598015,IE 1408598016,1408630783,FI 1408630784,1408634879,RO 1408634880,1408663551,DE 1408663552,1408696319,RU 1408696320,1408729087,NL 1408729088,1408761855,ES 1408761856,1409286143,SE 1409286144,1409362431,HU 1409362432,1409363967,BG 1409363968,1409377791,HU 1409377792,1409378047,RO 1409378048,1409378679,HU 1409378680,1409378687,RO 1409378688,1409413119,HU 1409413120,1409415167,BG 1409415168,1409548287,HU 1409548288,1409810431,FR 1409810432,1409941503,GB 1409941504,1410007039,PL 1410007040,1410072575,DE 1410072576,1410203647,GB 1410203648,1410212863,FR 1410212864,1410213119,GB 1410213120,1410269183,FR 1410269184,1410303999,LT 1410304000,1410306047,LV 1410306048,1410318335,LT 1410318336,1410319359,LV 1410319360,1410322431,LT 1410322432,1410326527,LV 1410326528,1410334719,LT 1410334720,1410342911,ES 1410342912,1410351103,SK 1410351104,1410359295,CH 1410359296,1410367487,CZ 1410367488,1410375679,RU 1410375680,1410378015,DK 1410378016,1410378031,NO 1410378032,1410383871,DK 1410383872,1410392063,NO 1410392064,1410400255,DE 1410400256,1410408447,RU 1410408448,1410416639,IT 1410416640,1410424831,TR 1410424832,1410433023,DE 1410433024,1410441215,BE 1410441216,1410449407,DE 1410449408,1410457599,SE 1410457600,1410465791,RU 1410465792,1410473983,ES 1410473984,1410490367,JO 1410490368,1410498559,RU 1410498560,1410506751,IT 1410506752,1410514943,IE 1410514944,1410523135,GB 1410523136,1410531327,PT 1410531328,1410539519,DE 1410539520,1410547711,GB 1410547712,1410555903,CZ 1410555904,1410564095,GB 1410564096,1410568991,SE 1410568992,1410569007,NO 1410569008,1410572287,SE 1410572288,1410588671,DE 1410588672,1410596863,GB 1410596864,1410605055,ES 1410605056,1410613247,CH 1410613248,1410621439,AL 1410621440,1410629631,NO 1410629632,1410637823,FI 1410637824,1410646015,AT 1410646016,1410654207,GB 1410654208,1410662399,SI 1410662400,1410670591,HU 1410670592,1410673151,DE 1410673152,1410673407,US 1410673408,1410675967,DE 1410675968,1410676223,US 1410676224,1410678783,DE 1410678784,1410686975,RU 1410686976,1410695167,CZ 1410695168,1410703359,GB 1410711552,1410719743,BG 1410719744,1410727935,RU 1410727936,1410736127,BG 1410736128,1410744319,RS 1410744320,1410752511,FR 1410752512,1410760703,NL 1410760704,1410768895,RU 1410768896,1410777087,GB 1410777088,1410785279,RU 1410785280,1410793471,SA 1410793472,1410801663,GB 1410801664,1410809855,RU 1410809856,1410818047,DE 1410818048,1410826239,SA 1410826240,1410834431,SE 1410834432,1410842623,PL 1410842624,1410850815,PT 1410850816,1410859007,DE 1410859008,1411383295,NL 1411383296,1411448831,LT 1411448832,1411449727,IT 1411449728,1411449791,DE 1411449792,1411450303,IT 1411450304,1411450367,DE 1411450368,1411481855,IT 1411481856,1411483903,DE 1411483904,1411514367,IT 1411514368,1411579903,FI 1411579904,1411645439,NL 1411645440,1411710975,EG 1411710976,1411776511,FR 1411776512,1411778559,RU 1411778560,1411780607,NO 1411780608,1411784703,PL 1411784704,1411788799,GB 1411788800,1411792895,IT 1411792896,1411796991,DE 1411796992,1411805183,PL 1411805184,1411809279,AT 1411809280,1411813375,LV 1411813376,1411817471,NO 1411817472,1411821567,PL 1411821568,1411825663,RU 1411825664,1411829759,DE 1411829760,1411833855,PL 1411833856,1411837951,NL 1411837952,1411842047,BG 1411842048,1411850239,NL 1411850240,1411858431,FR 1411858432,1411870719,DE 1411871744,1411871999,GB 1411872057,1411872057,GB 1411872160,1411872161,GB 1411872196,1411872199,GB 1411872228,1411872231,GB 1411872244,1411872255,GB 1411872768,1411874815,NL 1411874816,1411876863,RU 1411878912,1411880959,CH 1411880960,1411880990,DE 1411880991,1411880991,GB 1411880992,1411881215,DE 1411881216,1411881471,GB 1411881472,1411883007,DE 1411883008,1411887103,PL 1411887104,1411889151,IR 1411889152,1411891199,IT 1411895296,1411899391,SI 1411899392,1411901439,ES 1411901440,1411903487,IE 1411903488,1411907583,RU 1411907584,1411911679,GB 1411911680,1411915775,US 1411915776,1411919871,GB 1411919872,1411921919,DE 1411922432,1411923967,GB 1411923968,1411940351,BG 1411940352,1411973119,PL 1411973120,1411999743,SI 1411999744,1412001023,BA 1412001024,1412002815,SI 1412002816,1412003839,BA 1412003840,1412005887,SI 1412005888,1412038655,NL 1412038656,1412071423,RU 1412071424,1412104191,CZ 1412104192,1412136959,GB 1412136960,1412169727,BG 1412169728,1412202495,TR 1412202496,1412235263,DE 1412235264,1412300799,GB 1412300800,1412333567,DE 1412333568,1412366335,LT 1412366336,1412399103,SK 1412399104,1412400127,RU 1412400128,1412400639,RO 1412400640,1412403711,RU 1412403712,1412403967,RO 1412403968,1412405759,RU 1412405760,1412406271,RO 1412406272,1412408831,RU 1412408832,1412409343,RO 1412409344,1412412159,RU 1412412160,1412412415,UA 1412412416,1412412671,RO 1412412672,1412413439,RU 1412413440,1412413951,RO 1412413952,1412414719,RU 1412414720,1412414975,RO 1412414976,1412415487,RU 1412415488,1412419583,AE 1412419584,1412427775,IR 1412427776,1412429823,AE 1412429824,1412431871,IR 1412431872,1412562943,NO 1412562944,1412628479,EE 1412628480,1412644863,TR 1412644864,1412661247,RU 1412661248,1412677631,GB 1412677632,1412685823,RU 1412685824,1412694015,IE 1412694016,1412710399,EE 1412710400,1412726783,RU 1412726784,1412743167,SI 1412743168,1412775935,NO 1412775936,1412792319,NL 1412792320,1412793343,US 1412793856,1412795903,US 1412796416,1412804607,US 1412804864,1412805631,US 1412806144,1412808703,US 1412808704,1412825087,RU 1412825088,1412831231,IQ 1412832768,1412833023,SL 1412841472,1412857855,UZ 1412857856,1412874239,BG 1412874240,1412890623,RU 1412890624,1412907007,LT 1412907008,1412923391,SE 1412923392,1412939775,FR 1412939776,1412956159,CH 1412956160,1413480447,DE 1413480448,1414004735,IN 1414004736,1414039551,CH 1414039552,1414039679,DE 1414039680,1414040319,CH 1414040320,1414040575,DE 1414040576,1414069218,CH 1414069219,1414069219,AT 1414069220,1414095871,CH 1414095872,1414096127,DE 1414096128,1414266879,CH 1414266880,1414529023,ES 1414529024,1415053311,NL 1415053312,1415184383,ES 1415184384,1415315455,PT 1415315456,1415446527,GB 1415446528,1415577599,IL 1415577600,1416101887,FR 1416101888,1416364031,NL 1416364032,1416626175,IL 1416626176,1416941567,AT 1416941568,1416943615,CH 1416943616,1416944639,AT 1416944640,1416945663,CZ 1416945664,1416953855,AT 1416953856,1417019391,RO 1417019392,1417150463,DE 1417150464,1417674751,ES 1417674752,1421869055,DE 1421869056,1422393343,BE 1422393344,1422413567,DE 1422413568,1422413695,AT 1422413696,1422413727,US 1422413728,1422463231,DE 1422463232,1422463743,NL 1422463744,1422491647,DE 1422491648,1422495615,RU 1422495616,1422495679,NL 1422495680,1422508031,RU 1422508032,1422512127,BG 1422512128,1422516223,PL 1422516224,1422520319,BY 1422520320,1422524415,RU 1422524416,1422589951,NO 1422589952,1422655487,IE 1422655488,1422721023,RU 1422721024,1422729215,PL 1422729216,1422737407,NO 1422745600,1422753791,EG 1422753792,1422761983,FR 1422761984,1422770175,PL 1422770176,1422786559,GR 1422786560,1422852095,HU 1422857088,1422857151,FR 1422905344,1422907391,IE 1422907392,1422911487,NL 1422911488,1422915583,GB 1422916608,1422916863,GB 1422917120,1422917343,GB 1422917344,1422917375,NL 1422917632,1423441919,NO 1423441920,1423704063,SE 1423704064,1423966207,IT 1423966208,1424097279,HU 1424097280,1424228351,CH 1424228352,1424359423,IL 1424359424,1424490495,FI 1424490496,1424503711,ES 1424503712,1424503715,PT 1424503716,1424523263,ES 1424523264,1424556031,RO 1424556032,1424588799,EG 1424588800,1424595726,GB 1424595727,1424595727,IT 1424595728,1424595743,GB 1424595744,1424595751,IT 1424595752,1424597069,GB 1424597070,1424597070,CZ 1424597071,1424601887,GB 1424601888,1424601903,NL 1424601904,1424603023,GB 1424603024,1424603039,US 1424603040,1424604975,GB 1424604976,1424604991,NL 1424604992,1424607743,GB 1424607744,1424607775,DE 1424607776,1424608083,GB 1424608084,1424608087,FR 1424608088,1424609247,GB 1424609248,1424609255,DE 1424609256,1424610643,GB 1424610644,1424610644,PL 1424610645,1424610992,GB 1424610993,1424610993,FR 1424610994,1424611002,GB 1424611003,1424611003,FR 1424611004,1424611005,GB 1424611006,1424611006,FR 1424611007,1424611295,GB 1424611296,1424611311,BE 1424611312,1424617215,GB 1424617216,1424617231,IT 1424617232,1424619855,GB 1424619856,1424619863,BE 1424619864,1424621567,GB 1424621568,1424625663,PL 1424625664,1424629759,GB 1424629760,1424633855,PL 1424633856,1424637951,MD 1424637952,1424642047,FI 1424642048,1424646143,DK 1424646144,1424650239,UA 1424650240,1424654335,PL 1424654336,1424687103,NO 1424687104,1424711679,SA 1424711680,1424713727,BH 1424713728,1424719871,SA 1424719872,1424722431,IE 1424722432,1424723199,CZ 1424723200,1424724991,DE 1424724992,1424727039,GB 1424727040,1424728319,DE 1424728320,1424729855,FR 1424729856,1424730879,DE 1424730880,1424733183,IE 1424733184,1424733951,NL 1424733952,1424735103,SE 1424735104,1424738815,DE 1424738816,1424739583,SE 1424739584,1424746495,DE 1424746496,1424749055,IE 1424749056,1424752639,DE 1424752640,1424785407,HU 1424785408,1424818175,ES 1424818176,1424850943,RU 1424850944,1424883711,LV 1424883712,1424916479,DK 1424916480,1424949247,BG 1424949248,1424965631,RO 1424965632,1424982015,FR 1424982016,1425014783,FI 1425014784,1425015295,LT 1425015296,1425015551,RU 1425015552,1425031167,LT 1425031168,1425047551,FI 1425047552,1425063935,IT 1425063936,1425080319,KZ 1425080320,1425096703,IR 1425096704,1425113087,CH 1425113088,1425145855,NL 1425145856,1425162239,RU 1425162240,1425178623,CZ 1425178624,1425195007,BG 1425195008,1425211391,RU 1425211392,1425227775,SE 1425227776,1425244159,RO 1425244160,1425260543,NO 1425260544,1425276927,NL 1425276928,1425293311,RU 1425293312,1425309695,CZ 1425309696,1425326079,NL 1425326080,1425342463,SE 1425342464,1425358847,NL 1425358848,1425375231,SK 1425375232,1425391615,DE 1425391616,1425407999,LV 1425408000,1425424383,NL 1425424384,1425426431,DE 1425426432,1425428479,KW 1425428480,1425430527,GB 1425430528,1425432575,SE 1425432576,1425434623,HR 1425434624,1425436671,FR 1425436672,1425438719,GB 1425438720,1425440767,DE 1425440768,1425442815,SE 1425442816,1425444863,GB 1425444864,1425446911,IT 1425446912,1425448959,GB 1425448960,1425451007,CZ 1425451008,1425459199,GB 1425459200,1425461247,IM 1425461248,1425463295,ES 1425463296,1425467135,FR 1425467136,1425467391,ES 1425467392,1425469439,CH 1425469440,1425471487,DK 1425471488,1425473535,DE 1425473536,1425479679,RO 1425479680,1425480703,MD 1425480704,1425484799,RO 1425484800,1425485311,MD 1425485312,1425486847,RO 1425486848,1425487359,MD 1425487360,1425489407,RO 1425489408,1425489663,NL 1425489664,1425506303,RO 1425506304,1425522687,NO 1425522688,1425539071,IT 1425539072,1425801215,FI 1425801216,1425813503,BG 1425813504,1425814527,MK 1425814528,1425817599,BG 1425833984,1425850367,RU 1425850368,1425866751,GB 1425866752,1425883135,CH 1425883136,1425899519,RU 1425899520,1425915903,IT 1425915904,1425932287,FI 1425932288,1425948671,GR 1425948672,1425965055,DE 1425965056,1425974271,IT 1425974272,1425974783,GB 1425974784,1425975807,IT 1425975808,1425976063,FR 1425976064,1425977343,IT 1425977344,1425980415,FR 1425980416,1425980671,IQ 1425980672,1425981439,IT 1425981440,1425997823,RU 1425997824,1426014207,MT 1426014208,1426030591,DK 1426030592,1426046975,BH 1426046976,1426063359,SI 1426063360,1426587647,CH 1426587648,1426604031,SE 1426604032,1426620415,DE 1426636800,1426653183,GB 1426653184,1426660657,RO 1426660658,1426660658,US 1426660659,1426669567,RO 1426669568,1426685951,IR 1426685952,1426702335,TJ 1426702336,1426702591,LV 1426702592,1426702847,RU 1426702848,1426706687,LV 1426706688,1426706943,GB 1426706944,1426716159,LV 1426716160,1426716415,RU 1426716416,1426718719,LV 1426718720,1426731007,SI 1426731008,1426735103,HR 1426735104,1426743295,BE 1426743296,1426751487,LU 1426751488,1426767871,FR 1426767872,1426784255,DE 1426784256,1426800639,SE 1426800640,1426817023,PL 1426817024,1426833407,BG 1426833408,1426849791,SE 1426849792,1426866175,NL 1426866176,1426882559,GB 1426882560,1426898943,FR 1426898944,1426915327,RU 1426915328,1426931711,AT 1426931712,1426948095,CZ 1426948096,1426964479,DE 1426964480,1426980863,GB 1426980864,1426997247,BG 1426997248,1427013631,PL 1427013632,1427030015,FR 1427030016,1427032143,DE 1427032144,1427032159,TW 1427032160,1427032735,DE 1427032736,1427032743,AT 1427032744,1427032855,DE 1427032856,1427032863,TR 1427032864,1427032959,DE 1427032960,1427032967,NL 1427032968,1427033247,DE 1427033248,1427033263,TW 1427033264,1427046399,DE 1427046400,1427062783,IR 1427062784,1427095551,RU 1427095552,1427111935,LV 1427111936,1427177471,DE 1427177472,1427243007,NL 1427243008,1427308543,IT 1427308544,1427374079,NO 1427374080,1427439615,IT 1427439616,1427505151,RU 1427505152,1427570687,DE 1427570688,1427636223,FI 1427636224,1427668991,DK 1427668992,1427701759,SE 1427701760,1427712304,DE 1427712305,1427712305,SG 1427712306,1427712369,DE 1427712370,1427712373,SG 1427712374,1427712374,DE 1427712375,1427712381,SG 1427712382,1427712382,DE 1427712383,1427712388,SG 1427712389,1427722027,DE 1427722028,1427722030,SG 1427722031,1427722031,DE 1427722032,1427722033,SG 1427722034,1427722093,DE 1427722094,1427722094,EE 1427722095,1427728088,DE 1427728089,1427728100,SG 1427728101,1427728599,DE 1427728600,1427728600,SK 1427728601,1427741372,DE 1427741373,1427741373,AT 1427741374,1427767295,DE 1427767296,1427800063,BE 1427800064,1427832831,RU 1427832832,1427865599,BE 1427865600,1427898367,DK 1427898368,1427914751,RU 1427914752,1427930965,BE 1427930966,1427930966,LU 1427930967,1427931135,BE 1427931136,1427947519,PL 1427947520,1427963903,RU 1427963904,1427980287,TR 1427980288,1427996671,FI 1427996672,1428013055,KZ 1428013056,1428029439,EE 1428029440,1428045823,SE 1428045824,1428062207,MK 1428062208,1428078591,SE 1428078592,1428094975,RU 1428094976,1428103167,AT 1428103168,1428119551,GB 1428119552,1428121599,LV 1428121600,1428123647,FR 1428123648,1428127743,RU 1428127744,1428129791,ES 1428129792,1428131839,GB 1428131840,1428133887,FR 1428133888,1428135935,LI 1428135936,1428137983,IT 1428137984,1428140031,GB 1428140032,1428142079,RU 1428142080,1428144127,DE 1428144128,1428152319,FR 1428152320,1428160511,PL 1428160512,1428260863,IT 1428260864,1428261119,GB 1428261120,1429209087,IT 1429209088,1430257663,ES 1430257664,1430388735,IL 1430388736,1430519807,HU 1430519808,1430650879,FR 1430650880,1430781951,CZ 1430781952,1431044095,GR 1431044096,1431306239,FI 1431306240,1431568383,DK 1431568384,1431830527,ES 1431830528,1431838719,DE 1431838720,1431846911,BE 1431846912,1431855103,NO 1431855104,1431863295,NL 1431863296,1431871487,PT 1431871488,1431879679,RU 1431879680,1431887871,IT 1431887872,1431896063,GB 1431896064,1431904255,NO 1431904256,1431912447,EE 1431912448,1431920639,SE 1431920640,1431928831,RU 1431928832,1431937023,IT 1431937024,1431945215,PL 1431945216,1431953407,NO 1431953408,1431961599,DK 1431961600,1431969791,CH 1431969792,1431977983,GB 1431977984,1431980719,NL 1431980720,1431980727,SA 1431980728,1431986175,NL 1431986176,1431994367,RU 1431994368,1432002559,AT 1432002560,1432010751,HU 1432010752,1432018943,UA 1432018944,1432024063,GB 1432024064,1432025087,DE 1432025088,1432027135,GB 1432027136,1432035327,IE 1432035328,1432043519,GB 1432043520,1432051711,ES 1432051712,1432054015,RU 1432054016,1432054271,RO 1432054272,1432056831,RU 1432056832,1432057343,RO 1432057344,1432059903,RU 1432059904,1432068095,BG 1432068096,1432076287,BE 1432076288,1432084479,RU 1432084480,1432092671,GB 1432092672,1432100863,RU 1432100864,1432109055,CZ 1432109056,1432117247,GB 1432125440,1432131583,NL 1432131584,1432133631,US 1432133632,1432150015,GB 1432150016,1432158207,BA 1432158208,1432158463,RO 1432158464,1432158719,DE 1432158720,1432158975,LB 1432158976,1432159487,DE 1432159488,1432159743,AE 1432159744,1432166399,DE 1432166400,1432174591,RU 1432174592,1432182783,DE 1432182784,1432190975,CZ 1432190976,1432199167,RU 1432199168,1432207359,CZ 1432207360,1432215551,LU 1432215552,1432223743,NO 1432223744,1432240127,RU 1432240128,1432248319,HR 1432248320,1432256511,ME 1432256512,1432264703,BA 1432264704,1432272895,AD 1432272896,1432281087,IT 1432281088,1432289279,LU 1432289280,1432297471,GB 1432297472,1432305663,NO 1432305664,1432313855,BG 1432313856,1432322047,GB 1432322048,1432338431,RU 1432338432,1432346623,FR 1432346624,1433403391,TR 1433403392,1433411583,ES 1433411584,1433419775,RU 1433419776,1433427967,LB 1433427968,1433436159,RU 1433436160,1433444351,NO 1433444352,1433452543,SE 1433452544,1433460735,PL 1433460736,1433468927,DE 1433468928,1433477119,KG 1433477120,1433485311,RU 1433485312,1433493503,GB 1433493504,1433501695,PS 1433501696,1433509887,RU 1433509888,1433518079,NO 1433518080,1433526271,RU 1433526272,1433534463,NL 1433534464,1433542655,RU 1433542656,1433550847,HR 1433550848,1433559039,RU 1433559040,1433567231,PS 1433567232,1433575423,DE 1433575424,1433583615,RU 1433583616,1433591807,UA 1433591808,1433599999,GE 1433600000,1433608191,DE 1433608192,1433608447,TR 1433608448,1433608703,NL 1433608704,1433610239,GB 1433610240,1433612287,US 1433612288,1433614335,GB 1433614336,1433614591,NL 1433614592,1433615027,DE 1433615028,1433615028,GB 1433615029,1433615359,DE 1433615360,1433615615,FR 1433615616,1433615871,GB 1433615872,1433616127,IT 1433616128,1433616383,GB 1433616384,1433624575,AE 1433624576,1433632767,LV 1433632768,1433640959,GI 1433640960,1433649151,RU 1433649152,1433657343,KG 1433657344,1433665535,RU 1433665536,1433673727,GB 1433673728,1433681919,FR 1433681920,1433690111,IS 1433690112,1433698303,RU 1433698304,1433706495,IT 1433706496,1433714687,GB 1433714688,1433722879,DE 1433722880,1433731071,IT 1433731072,1433739263,PL 1433739264,1433747455,GE 1433747456,1433755647,RU 1433755648,1433763839,KZ 1433763840,1433772031,FR 1433772032,1433788415,SE 1433796608,1433804799,GB 1433804800,1433812991,FR 1433812992,1433821183,BG 1433821184,1433829375,GE 1433829376,1433831423,CZ 1433831424,1433833471,RU 1433833472,1433835519,IT 1433835520,1433837567,GB 1433837568,1433839615,DE 1433839616,1433841663,GB 1433841664,1433843711,RU 1433843712,1433845759,HR 1433845760,1433847807,BG 1433847808,1433849855,SE 1433849856,1433851903,BE 1433851904,1433853951,CH 1433853952,1433855999,RU 1433856000,1433858047,GB 1433858048,1433860095,ES 1433860096,1433862143,DE 1433862144,1433864191,CH 1433864192,1433866239,HU 1433866240,1433867521,NL 1433867522,1433867522,GB 1433867523,1433868287,NL 1433868288,1433870335,GB 1433870336,1433872383,TR 1433872384,1433874431,IT 1433874432,1433876479,NL 1433876480,1433878527,GB 1433878528,1433880575,TR 1433880576,1433882623,RU 1433882624,1433884671,GB 1433884672,1433886719,CZ 1433886720,1433888767,GB 1433888768,1433890815,NL 1433890816,1433892863,GB 1433892864,1433894911,MT 1433894912,1433896959,SE 1433896960,1433899007,NO 1433899008,1433901055,RU 1433901056,1433905151,DE 1433905152,1433907199,FR 1433907200,1433909247,IT 1433909248,1433911295,BE 1433911296,1433913343,ES 1433913344,1433917439,DE 1433917440,1433919487,BE 1433919488,1433921535,GB 1433921536,1433923583,CH 1433923584,1433925631,BE 1433925632,1433927679,GB 1433927680,1434189823,RO 1434189824,1434451967,AT 1434451968,1434517503,PL 1434517504,1434550271,DK 1434550272,1434583039,SA 1434583040,1434595583,BG 1434595584,1434596351,MK 1434596352,1434611711,BG 1434611712,1434613759,MK 1434613760,1434615807,BG 1434615808,1434648575,IL 1434648576,1434681343,FI 1434681344,1434714111,DE 1434714112,1434746879,AZ 1434746880,1434779647,CZ 1434779648,1434812415,GB 1434812416,1434845183,IR 1434845184,1434877951,FI 1434877952,1434910719,IE 1434910720,1434943487,CZ 1434943488,1434976255,SK 1434976256,1435107327,ES 1435107328,1435238399,PT 1435238400,1435500543,RU 1435500544,1436024831,NL 1436024832,1436090367,ES 1436090368,1436155903,TR 1436155904,1436221439,OM 1436221440,1436286975,ES 1436286976,1436418047,FI 1436418048,1436420095,DE 1436422144,1436424191,FR 1436424192,1436426239,CH 1436426240,1436428287,BA 1436428288,1436430335,GB 1436430336,1436432383,RU 1436432384,1436436479,GB 1436436480,1436438527,LV 1436438528,1436440575,IT 1436440576,1436442623,RU 1436442624,1436444671,TR 1436444672,1436446719,BE 1436446720,1436450815,FR 1436450816,1436452863,BH 1436452864,1436453119,GB 1436453120,1436453314,DE 1436453315,1436453315,GB 1436453316,1436453631,DE 1436453632,1436454911,GB 1436454912,1436456959,AZ 1436456960,1436459007,GB 1436459008,1436461055,NL 1436461056,1436463103,ES 1436463104,1436464383,DE 1436464384,1436464639,AT 1436464640,1436465151,DE 1436465152,1436467199,RU 1436467200,1436469247,DE 1436469248,1436471295,NL 1436471296,1436473343,BE 1436473344,1436475391,RO 1436475392,1436477439,AT 1436477440,1436479487,CH 1436479488,1436481535,RU 1436481536,1436483583,NL 1436483584,1436485631,UA 1436485632,1436487679,DE 1436487680,1436489727,IE 1436489728,1436491775,KZ 1436491776,1436495871,RU 1436495872,1436497919,HU 1436497920,1436499967,GB 1436499968,1436504063,TR 1436504064,1436508159,GB 1436508160,1436510207,NL 1436510208,1436512255,SK 1436512256,1436514303,NL 1436514304,1436516351,GI 1436516352,1436520447,GB 1436520448,1436522495,IT 1436522496,1436524543,GB 1436524544,1436526591,IL 1436526592,1436528639,GB 1436528640,1436530687,IT 1436530688,1436532735,GB 1436532736,1436536831,IT 1436536832,1436538879,GB 1436538880,1436540927,JO 1436540928,1436542975,RU 1436542976,1436545023,NL 1436545024,1436547071,DE 1436547072,1436549119,GB 1436549120,1436680191,CZ 1436680192,1436811263,SK 1436811264,1437073407,NO 1437073408,1437335551,FR 1437335552,1437597695,RU 1437597696,1438121983,DE 1438121984,1438187519,NL 1438187520,1438253055,IR 1438253056,1438318591,RO 1438318592,1438384127,BG 1438384128,1438400511,FI 1438400512,1438433279,SE 1438433280,1438515199,GB 1438515200,1438553855,DE 1438553856,1438554111,BR 1438554112,1438554623,US 1438554624,1438555135,DE 1438555136,1438555391,US 1438555392,1438560255,DE 1438560256,1438562303,US 1438562304,1438580735,DE 1438580736,1438613503,NL 1438613504,1438646271,DK 1438646272,1438662655,RU 1438662656,1438679039,ES 1438679040,1438695423,RU 1438695424,1438711807,FR 1438711808,1438728191,CZ 1438728192,1438744575,RU 1438744576,1438748671,AT 1438748672,1438752767,GB 1438752768,1438760959,AT 1438760960,1438777343,PL 1438777344,1438793727,SE 1438793728,1438810111,SA 1438810112,1438826495,SE 1438826496,1438827519,FI 1438827520,1438828543,IQ 1438828544,1438829567,EE 1438829568,1438838783,FI 1438838784,1438840831,PL 1438840832,1438841855,IQ 1438841856,1438842367,DE 1438842368,1438842879,DK 1438842880,1438859263,SE 1438859264,1438875647,DE 1438875648,1438876927,RU 1438876928,1438877183,IQ 1438877184,1438877951,RU 1438877952,1438878207,LB 1438878208,1438885887,RU 1438885888,1438889983,LT 1438889984,1438892031,RU 1438892032,1438896127,CH 1438896128,1438900223,AQ 1438900224,1438908415,CH 1438908416,1438924799,GR 1438924800,1438941183,NO 1438941184,1438957567,BG 1438957568,1438973951,EE 1438973952,1439000575,DE 1439000576,1439001343,NL 1439001344,1439002367,DE 1439002368,1439002623,NL 1439002624,1439006719,DE 1439006720,1439023103,SE 1439023104,1439039487,IS 1439039488,1439055871,IR 1439055872,1439072255,RU 1439072256,1439088639,UA 1439088640,1439105023,PL 1439105024,1439121407,AT 1439121408,1439154175,DE 1439154176,1439170559,GB 1439170560,1439236095,NO 1439236096,1439301631,BE 1439301632,1439305727,RU 1439305728,1439309823,DK 1439309824,1439318015,PL 1439318016,1439322111,DK 1439326208,1439330303,PL 1439330304,1439334399,RS 1439334400,1439338495,RU 1439338496,1439342591,PL 1439346688,1439350783,RU 1439354880,1439358975,PL 1439358976,1439367167,RU 1439367168,1439371263,NL 1439371264,1439371519,CZ 1439371520,1439371775,FR 1439371776,1439372031,SE 1439372032,1439372287,TR 1439372288,1439372543,IT 1439372544,1439372799,JP 1439372800,1439373311,NL 1439373312,1439373567,SE 1439373568,1439374335,NL 1439374336,1439375359,IT 1439375360,1439375615,ES 1439375616,1439376383,NL 1439376384,1439377407,CN 1439377408,1439378431,IT 1439378432,1439383551,NL 1439383552,1439399935,FR 1439399936,1439432703,DK 1439432704,1439437823,RO 1439437824,1439438335,FR 1439438336,1439438847,RO 1439438848,1439439359,FR 1439439360,1439440383,RO 1439440384,1439440895,IR 1439440896,1439441919,RO 1439441920,1439442943,ES 1439442944,1439446527,RO 1439446528,1439447039,DE 1439447040,1439451647,RO 1439451648,1439451903,LT 1439451904,1439452159,RO 1439452160,1439452671,IR 1439452672,1439453183,RO 1439453184,1439457279,IR 1439457280,1439457791,DE 1439457792,1439459327,RO 1439459328,1439459839,IR 1439459840,1439460607,RO 1439460608,1439460863,MD 1439460864,1439462655,RO 1439462656,1439462911,MD 1439462912,1439463423,RO 1439463424,1439463935,DK 1439463936,1439466495,RO 1439466496,1439467007,DK 1439467008,1439467519,RO 1439467520,1439468031,DK 1439468032,1439468543,RO 1439468544,1439469567,ES 1439469568,1439475711,RO 1439475712,1439475967,IN 1439475968,1439476735,RO 1439476736,1439477759,IN 1439477760,1439479807,MD 1439479808,1439482367,RO 1439482368,1439482879,DK 1439482880,1439483903,RO 1439483904,1439485951,ES 1439485952,1439490047,IR 1439490048,1439498239,RO 1439498240,1439513599,DE 1439513600,1439514623,GB 1439514624,1439516671,IT 1439516672,1439518207,DE 1439518208,1439518719,IT 1439518720,1439527935,DE 1439527936,1439528959,GB 1439528960,1439529599,DE 1439529600,1439529983,GB 1439529984,1439530239,EG 1439530240,1439534079,DE 1439534080,1439535103,GB 1439535104,1439536127,IT 1439536128,1439537151,DE 1439537152,1439538175,IT 1439538176,1439538687,GB 1439538688,1439539199,IT 1439539200,1439549439,DE 1439549440,1439551487,IT 1439551488,1439556095,DE 1439556096,1439556607,IT 1439556608,1439558143,DE 1439558144,1439558911,IT 1439558912,1439560191,DE 1439560192,1439560447,IT 1439560448,1439560703,DE 1439560704,1439561215,IT 1439561216,1439561727,DE 1439561728,1439562239,GB 1439562240,1439562751,IE 1439562752,1439563007,DE 1439563008,1439563263,GB 1439563264,1439563775,DE 1439563776,1439629311,LT 1439629312,1439694847,CZ 1439694848,1439825919,SA 1439825920,1439956991,GB 1439956992,1440251903,DE 1440251904,1440284671,SK 1440284672,1440317439,FI 1440317440,1440350207,BG 1440350208,1440382975,CH 1440382976,1440415743,DK 1440415744,1440448511,ES 1440448512,1440481279,PL 1440481280,1440514047,IS 1440514048,1440546815,DE 1440546816,1440579583,NO 1440579584,1440645119,PL 1440645120,1440653311,GB 1440653312,1440665599,RS 1440665600,1440669695,DE 1440669696,1440671743,NL 1440671744,1440672767,EE 1440672768,1440710655,NL 1440710656,1440743423,UA 1440743424,1441267711,SE 1441267712,1441275903,DE 1441275904,1441284095,GB 1441284096,1441292287,AT 1441292288,1441300479,RU 1441300480,1441308671,LT 1441308672,1441316863,SE 1441316864,1441325055,MT 1441325056,1441333247,PL 1441333248,1441349631,DE 1441349632,1441357823,RU 1441357824,1441366015,AT 1441366016,1441374207,RU 1441374208,1441382399,GB 1441382400,1441390591,FR 1441390592,1441398783,DK 1441398784,1441415167,RU 1441415168,1441423359,GB 1441423360,1441431551,RU 1441431552,1441439743,GB 1441439744,1441447935,LV 1441447936,1441456127,BE 1441456128,1441464319,NL 1441464320,1441469439,SE 1441469440,1441469695,DK 1441469696,1441472511,SE 1441472512,1441480703,RU 1441480704,1441488895,TR 1441488896,1441497087,GB 1441497088,1441505279,IT 1441505280,1441521663,RU 1441521664,1441529855,DK 1441529856,1441538047,RU 1441538048,1441546239,DE 1441546240,1441554431,DK 1441554432,1441556991,GB 1441556992,1441557503,SE 1441557504,1441564671,GB 1441564672,1441566719,NL 1441566720,1441568767,GB 1441568768,1441570815,FR 1441570816,1441579007,RU 1441579008,1441587199,DE 1441587200,1441603583,AT 1441603584,1441611775,RU 1441611776,1441619967,DE 1441619968,1441628159,FR 1441628160,1441636351,SA 1441636352,1441644543,PL 1441644544,1441651455,GB 1441651456,1441651711,CA 1441651712,1441652735,GB 1441652736,1441660927,SK 1441660928,1441669119,ES 1441669120,1441677311,GE 1441677312,1441685503,HU 1441685504,1441693695,UA 1441693696,1441694719,BR 1441694720,1441697023,DE 1441697024,1441697791,SG 1441697792,1441698815,US 1441698816,1441701887,DE 1441701888,1441710079,AT 1441710080,1441718271,SE 1441718272,1441726463,DE 1441726464,1441734655,KW 1441734656,1441742847,RU 1441742848,1441751039,CZ 1441751040,1441759231,DE 1441759232,1441767423,BG 1441767424,1441775615,IT 1441775616,1441783807,IR 1441783808,1441791999,CZ 1441792000,1442316287,PT 1442316288,1442381823,SK 1442381824,1442447359,RU 1442447360,1442512895,IL 1442512896,1442578431,ES 1442578432,1442643967,NO 1442643968,1442709503,EE 1442709504,1442775039,LV 1442775040,1442779135,PL 1442779136,1442783231,DE 1442783232,1442787327,NO 1442787328,1442791423,LT 1442791424,1442795519,LV 1442799616,1442803711,LT 1442803712,1442807807,RO 1442807808,1442811903,BG 1442811904,1442815999,AT 1442816000,1442820095,BG 1442820096,1442822143,UA 1442822144,1442824191,RU 1442824192,1442828287,BE 1442828288,1442832383,NL 1442832384,1442836479,GB 1442836480,1442840575,PL 1442840576,1444937727,GB 1444937728,1445068799,AT 1445068800,1445199871,RO 1445199872,1445330943,QA 1445330944,1445396479,LT 1445396480,1445462015,BE 1445462016,1445986303,IE 1445986304,1446051839,DK 1446051840,1446117375,CZ 1446117376,1446182911,FI 1446182912,1446248447,SA 1446248448,1446313983,DK 1446313984,1446445055,GB 1446445056,1446510591,IR 1446510592,1446543359,DE 1446543360,1446576127,AT 1446576128,1446608895,IR 1446608896,1446641663,BY 1446641664,1446674431,SI 1446674432,1446704127,DK 1446704128,1446705151,ES 1446705152,1446707199,DK 1446707200,1446739967,AT 1446739968,1446772735,HU 1446772736,1446805503,SA 1446805504,1446838271,FI 1446838272,1446871039,SI 1446871040,1446903807,CZ 1446906880,1446907135,IQ 1446910720,1446911231,IQ 1446920192,1446936575,RU 1446936576,1446952959,NO 1446952960,1446969343,QA 1446969344,1446985727,GB 1446985728,1447010303,PL 1447010304,1447018495,LV 1447018496,1447026687,CZ 1447026688,1448083455,FR 1448083456,1449132031,NL 1449132032,1449394175,AE 1449394176,1449459711,LT 1449459712,1449525247,HU 1449525248,1449590783,RU 1449590784,1449656319,DE 1449656320,1449657087,GB 1449657088,1449660159,RO 1449660160,1449660415,BG 1449660416,1449664511,RO 1449664512,1449668607,IR 1449668608,1449672703,SE 1449672704,1449676799,RO 1449676800,1449684991,IR 1449684992,1449688575,RO 1449688576,1449688831,GB 1449688832,1449690623,RO 1449690624,1449690879,MD 1449690880,1449695231,RO 1449695232,1449697279,SE 1449697280,1449699327,PS 1449699328,1449706495,RO 1449706496,1449707519,MD 1449707520,1449709567,SE 1449709568,1449709823,GB 1449709824,1449710591,RO 1449710592,1449711103,GB 1449711104,1449713151,RO 1449713152,1449714175,GB 1449714176,1449715711,RO 1449715712,1449719807,IR 1449719808,1449722111,RO 1449722112,1449722367,IT 1449722368,1449723135,RO 1449723136,1449723391,DE 1449723392,1449724927,RO 1449724928,1449725183,GB 1449725184,1449726463,RO 1449726464,1449726719,NL 1449726720,1449727999,RO 1449728000,1449728255,MD 1449728256,1449734143,RO 1449734144,1449736191,IT 1449736192,1449738239,MD 1449738240,1449742335,RO 1449742336,1449744383,MD 1449744384,1449750527,RO 1449750528,1449752575,SE 1449752576,1449754623,RO 1449754624,1449758719,IR 1449758720,1449759743,RO 1449759744,1449760511,MD 1449760512,1449764863,RO 1449764864,1449765119,MD 1449765120,1449765887,RO 1449765888,1449766911,MD 1449766912,1449768959,RO 1449768960,1449769471,GB 1449769472,1449772031,RO 1449772032,1449772287,GB 1449772288,1449775103,RO 1449775104,1449776127,MD 1449776128,1449776639,FR 1449776640,1449778431,RO 1449778432,1449778687,MD 1449778688,1449779455,RO 1449779456,1449779711,GB 1449779712,1449779967,RO 1449779968,1449780223,RU 1449780224,1449780479,RO 1449780480,1449780991,GB 1449780992,1449781247,RO 1449781248,1449781503,MD 1449781504,1449782015,RO 1449782016,1449782271,GB 1449782272,1449783295,RO 1449783296,1449783551,DE 1449783552,1449783807,RO 1449783808,1449784319,GB 1449784320,1449789439,RO 1449789440,1449790207,GB 1449790208,1449790719,RO 1449790720,1449791487,GB 1449791488,1449793279,RO 1449793280,1449793535,NL 1449793536,1449794047,IR 1449794048,1449794303,PH 1449794304,1449810943,RO 1449810944,1449811199,MD 1449811200,1449811455,BG 1449811456,1449811967,GB 1449811968,1449812223,DK 1449812224,1449812991,RO 1449812992,1449813503,GB 1449813504,1449813759,RU 1449813760,1449814271,RO 1449814272,1449815039,GB 1449815040,1449815295,RO 1449815296,1449816063,GB 1449816064,1449816575,RO 1449816576,1449817855,GB 1449817856,1449820927,RO 1449820928,1449821183,DE 1449821184,1449822719,RO 1449822720,1449823743,GB 1449823744,1449824255,RO 1449824256,1449826303,MD 1449826304,1449828351,RO 1449828352,1449830399,SE 1449830400,1449831935,RO 1449831936,1449832447,GB 1449832448,1449840639,RO 1449840640,1449852927,MD 1449852928,1449857023,IR 1449857024,1449859583,RO 1449859584,1449860607,GB 1449860608,1449863679,RO 1449863680,1449863935,GB 1449863936,1449869311,RO 1449869312,1449870335,MD 1449870336,1449870847,RO 1449870848,1449871615,GB 1449871616,1449871871,RO 1449871872,1449872383,GB 1449872384,1449873407,RO 1449873408,1449877503,IR 1449877504,1449878527,IT 1449878528,1449879039,RO 1449879040,1449879167,PH 1449879168,1449879295,TH 1449879296,1449880319,RO 1449880320,1449880575,MD 1449880576,1449883647,RO 1449883648,1449885695,BE 1449885696,1449889791,GB 1449889792,1449893887,IR 1449893888,1449895935,MD 1449895936,1449900543,RO 1449900544,1449901055,MD 1449901056,1449901311,RO 1449901312,1449901823,FR 1449901824,1449902079,DE 1449902080,1449902335,RO 1449902336,1449903103,GB 1449903104,1449903359,MD 1449903360,1449906175,RO 1449906176,1449910271,IR 1449910272,1449918463,RO 1449918464,1449951231,JO 1449951232,1449983999,TR 1449984000,1449992191,NL 1449992192,1450000127,IR 1450000128,1450000383,GB 1450000384,1450008575,HU 1450008576,1450016767,ES 1450016768,1450024959,IT 1450024960,1450033151,ES 1450033152,1450041343,RU 1450041344,1450049535,DE 1450049536,1450057727,RU 1450057728,1450065919,EE 1450065920,1450067135,DE 1450067136,1450067199,AT 1450067200,1450074111,DE 1450074112,1450082303,RU 1450082304,1450090495,IT 1450090496,1450106879,RU 1450106880,1450115071,SK 1450115072,1450123263,RU 1450123264,1450131455,AT 1450131456,1450139647,UA 1450139648,1450147839,PL 1450147840,1450151935,CH 1450151936,1450153983,IQ 1450153984,1450156031,DE 1450156032,1450164223,GB 1450164224,1450166271,SA 1450166272,1450168319,PL 1450170368,1450172415,GB 1450172416,1450174463,UA 1450174464,1450176511,DE 1450176512,1450178559,PL 1450178560,1450180607,DE 1450180608,1450311679,GB 1450311680,1450442751,FI 1450442752,1450704895,CH 1450704896,1451229183,RO 1451229184,1455423487,GB 1455423488,1459617791,FR 1459617792,1461714943,IT 1461714944,1462763519,IE 1462763520,1463812095,DK 1463812096,1464074239,BE 1464074240,1464336383,IL 1464336384,1464467455,DK 1464467456,1464598527,GB 1464598528,1464602623,RU 1464602624,1464606719,GB 1464606720,1464614911,KZ 1464614912,1464664063,UA 1464664064,1464860671,DE 1464860672,1465384959,GB 1465384960,1465647103,FR 1465647104,1465909247,FI 1465909248,1465942015,PL 1465942016,1465974783,SE 1465974784,1466007551,HU 1466007552,1466040319,BG 1466040320,1466073087,EE 1466073088,1466097663,FR 1466097664,1466099711,ES 1466099712,1466101759,PL 1466101760,1466103807,DE 1466103808,1466104575,GB 1466104576,1466104942,FR 1466104943,1466104943,BE 1466104944,1466105173,FR 1466105174,1466105174,BE 1466105175,1466105343,FR 1466105344,1466105855,GB 1466105856,1466122239,PL 1466122240,1466130431,LV 1466130432,1466138623,PL 1466138624,1466171391,SE 1466171392,1466204159,FR 1466204160,1466236927,FI 1466236928,1466241023,NL 1466241024,1466249215,PL 1466249216,1466253311,GR 1466253312,1466257407,PL 1466261504,1466265599,GB 1466265600,1466269695,HU 1466269696,1466302463,SA 1466302464,1466335231,GB 1466335232,1466367999,CH 1466368000,1466400767,PT 1466400768,1466433535,RU 1466433536,1466499071,DK 1466499072,1466564607,PL 1466564608,1466571894,DE 1466571895,1466571895,AE 1466571896,1466588785,DE 1466588786,1466588786,FR 1466588787,1466589183,DE 1466589184,1466590207,FR 1466590208,1466591999,GB 1466592000,1466613759,DE 1466613760,1466615807,ES 1466615808,1466616575,GB 1466616576,1466630143,DE 1466630144,1466695679,IR 1466695680,1466761215,FI 1466761216,1466826751,SA 1466826752,1466892287,LV 1466892288,1466957823,ES 1466957824,1467219967,GB 1467219968,1467236351,DK 1467236352,1467252735,BG 1467252736,1467269119,RS 1467269120,1467285503,PL 1467285504,1467301887,RU 1467301888,1467318271,GB 1467318272,1467334655,RU 1467334656,1467351039,GB 1467351040,1467367423,NO 1467367424,1467383807,DE 1467383808,1467400191,BG 1467400192,1467416575,RU 1467416576,1467432959,PL 1467432960,1467449343,BG 1467449344,1467457535,SI 1467457536,1467465727,EE 1467465728,1467465759,NL 1467465760,1467465791,DE 1467465792,1467465799,NL 1467465800,1467465983,DE 1467465984,1467466015,NL 1467466016,1467466495,DE 1467466496,1467466751,NL 1467466752,1467472895,DE 1467472896,1467473919,NL 1467473920,1467482111,RU 1467482112,1467613183,BG 1467613184,1467744255,DE 1467744256,1467875327,GB 1467875328,1467940863,BG 1467940864,1468006399,GB 1468006400,1472200703,DE 1472200704,1472259071,IE 1472259072,1472259327,GB 1472259328,1472266239,IE 1472266240,1472331775,DE 1472331776,1472397311,GB 1472397312,1472462847,NL 1472462848,1472528383,PT 1472528384,1472593919,SK 1472593920,1472659455,IE 1472659456,1472724991,PL 1472724992,1472856063,AE 1472856064,1472987135,GR 1472987136,1473249279,PL 1473249280,1473773567,NL 1473773568,1474297855,ES 1474297856,1474330623,GB 1474330624,1474396159,RU 1474396160,1474428927,DE 1474428928,1474461695,LV 1474461696,1474494463,RU 1474494464,1474527231,SE 1474527232,1474559999,BG 1474560000,1474592767,RU 1474592768,1474625535,CY 1474625536,1474658303,HU 1474658304,1474691071,RU 1474691072,1474723839,DE 1474723840,1474756607,SA 1474756608,1474822143,FR 1474822144,1474887679,IE 1474887680,1474953215,NL 1474953216,1475018751,DE 1475018752,1475084287,ES 1475084288,1475086335,NL 1475086336,1475092479,RU 1475092480,1475094527,CY 1475094528,1475096575,RU 1475096576,1475098623,BH 1475098624,1475102719,GB 1475102720,1475104767,FR 1475104768,1475106815,RU 1475106816,1475108863,SE 1475108864,1475110911,NL 1475110912,1475112959,DE 1475112960,1475115007,AT 1475115008,1475117055,KW 1475117056,1475119103,GB 1475119104,1475121151,BH 1475121152,1475123199,GB 1475123200,1475125247,FI 1475125248,1475127295,IT 1475127296,1475129343,FI 1475129344,1475131391,BE 1475131392,1475133439,RU 1475133440,1475135487,CZ 1475135488,1475137535,CH 1475137536,1475139583,GB 1475139584,1475141631,ES 1475141632,1475143679,FI 1475143680,1475145727,JO 1475145728,1475147775,ES 1475147776,1475149823,GB 1475149824,1475151871,NL 1475151872,1475153919,BE 1475153920,1475155967,GB 1475155968,1475158015,NL 1475158016,1475160063,IS 1475160064,1475162111,RU 1475162112,1475170303,GB 1475170304,1475172351,ES 1475172352,1475174399,DE 1475174400,1475176447,NL 1475176448,1475178495,RO 1475178496,1475180543,RU 1475180544,1475184639,DE 1475184640,1475186687,RU 1475186688,1475188735,GB 1475188736,1475190783,SE 1475190784,1475192831,GB 1475192832,1475194879,CH 1475194880,1475196927,DE 1475196928,1475198975,FR 1475198976,1475201023,BH 1475201024,1475203071,RS 1475203072,1475205119,SE 1475205120,1475205887,DE 1475205888,1475206143,US 1475206144,1475207167,DE 1475207168,1475209215,AE 1475209216,1475211263,UZ 1475211264,1475213311,DE 1475213312,1475215359,FR 1475215360,1475223551,IT 1475223552,1475233791,NO 1475233792,1475235839,GB 1475235840,1475237887,IE 1475237888,1475239935,ES 1475239936,1475241983,RU 1475241984,1475244031,FR 1475244032,1475245823,DE 1475245824,1475246079,RU 1475246080,1475248127,CH 1475248128,1475250175,JO 1475250176,1475252223,DE 1475252224,1475254271,FR 1475254272,1475256319,UA 1475256320,1475258367,BE 1475258368,1475260415,NL 1475260416,1475262463,FR 1475262464,1475266559,DE 1475266560,1475268607,GB 1475268608,1475270655,RS 1475270656,1475272703,GB 1475272704,1475274751,BE 1475274752,1475276799,RU 1475276800,1475278847,ES 1475278848,1475280895,DK 1475280896,1475282943,RU 1475282944,1475284991,NL 1475284992,1475287039,GB 1475287040,1475291135,RU 1475291136,1475293183,PL 1475295232,1475297279,SK 1475297280,1475299327,DK 1475299328,1475301375,PL 1475301376,1475303423,LT 1475303424,1475305471,PL 1475305472,1475307519,NL 1475307520,1475309567,RU 1475309568,1475311615,LT 1475311616,1475313663,FI 1475313664,1475315711,DE 1475315712,1475317759,US 1475317760,1475319807,RU 1475319808,1475321855,BG 1475321856,1475323903,RO 1475323904,1475327999,PL 1475328000,1475330047,NL 1475330048,1475332095,PL 1475332096,1475334143,LI 1475334144,1475336191,CH 1475336192,1475338239,PL 1475338240,1475340287,RO 1475340288,1475342335,GR 1475342336,1475344383,PL 1475344384,1475344639,RO 1475344640,1475345919,NL 1475345920,1475346431,RO 1475346432,1475362815,RU 1475362816,1475379199,FR 1475379200,1475395583,RU 1475395584,1475411967,LU 1475411968,1475428351,IT 1475428352,1475444735,SE 1475444736,1475461119,AM 1475461120,1475477503,RU 1475477504,1475493887,HU 1475493888,1475510271,RU 1475510272,1475543039,GB 1475543040,1475545087,RO 1475545088,1475559423,KZ 1475559424,1475571711,GR 1475571712,1475572735,BG 1475572736,1475575807,GR 1475575808,1475592191,AT 1475592192,1475608575,GB 1475608576,1475624959,RU 1475624960,1475625727,JE 1475625728,1475625855,GG 1475625856,1475638783,JE 1475638784,1475639039,GB 1475639040,1475639391,JE 1475639392,1475639399,GB 1475639400,1475639479,JE 1475639480,1475639487,GB 1475639488,1475639559,JE 1475639560,1475639567,GB 1475639568,1475639583,JE 1475639584,1475639591,GB 1475639592,1475639695,JE 1475639696,1475639703,GB 1475639704,1475641343,JE 1475641344,1475657727,UA 1475657728,1475674111,SK 1475674112,1475690495,DE 1475690496,1475693055,CH 1475693056,1475693311,DE 1475693312,1475706879,CH 1475706880,1475723263,RU 1475723264,1475723839,GB 1475723840,1475723903,RU 1475723904,1475723967,GB 1475723968,1475724031,RU 1475724032,1475724223,GB 1475724224,1475724287,RU 1475724288,1475724351,GB 1475724352,1475724415,RU 1475724416,1475724479,GB 1475724480,1475724543,RU 1475724544,1475724866,GB 1475724867,1475724867,RU 1475724868,1475724869,GB 1475724870,1475724870,RU 1475724871,1475724927,GB 1475724928,1475725183,RU 1475725184,1475725311,GB 1475725312,1475725439,RU 1475725440,1475728639,GB 1475728640,1475728767,PL 1475728768,1475729407,GB 1475729408,1475729535,UA 1475729536,1475729663,GB 1475729664,1475729671,UA 1475729672,1475729791,GB 1475729792,1475729855,UA 1475729856,1475730751,GB 1475730752,1475730815,UA 1475730816,1475731007,GB 1475731008,1475731071,UA 1475731072,1475731135,GB 1475731136,1475731167,UA 1475731168,1475738111,GB 1475738112,1475738879,RU 1475738880,1475739647,GB 1475739648,1475756031,BG 1475756032,1475772415,GB 1475772416,1475788799,LV 1475788800,1475805183,PL 1475805184,1475821567,KZ 1475821568,1475837951,LT 1475837952,1475846143,GB 1475846144,1475854335,IR 1475854336,1475862527,AT 1475862528,1475864575,FR 1475864576,1475866623,IT 1475866624,1475868671,GB 1475868672,1475870719,BG 1475870720,1475878911,NO 1475878912,1475887103,IT 1475887104,1475895295,PL 1475895296,1475903487,GB 1475903488,1475911679,IR 1475911680,1475919871,MD 1475919872,1475928063,IT 1475928064,1475952639,RU 1475952640,1475954175,GB 1475954176,1475954687,NO 1475954688,1475955247,GB 1475955248,1475955255,NG 1475955256,1475958527,GB 1475958528,1475958783,NO 1475958784,1475960831,GB 1475960832,1475969023,NL 1475969024,1475977215,CZ 1475977216,1475985407,SE 1475985408,1476009983,RU 1476009984,1476018175,RS 1476018176,1476026367,IT 1476026368,1476034559,BA 1476034560,1476042751,NL 1476042752,1476050943,PL 1476050944,1476067327,RU 1476067328,1476075519,TR 1476075520,1476083711,NL 1476083712,1476116479,RU 1476116480,1476124671,SE 1476124672,1476132863,PL 1476132864,1476141055,FR 1476141056,1476149247,GB 1476149248,1476157439,NO 1476157440,1476160511,BH 1476160512,1476164607,GB 1476164608,1476165631,BH 1476165632,1476173823,HR 1476173824,1476182015,BG 1476182016,1476186367,GB 1476186368,1476186383,IE 1476186384,1476190207,GB 1476190208,1476198399,BY 1476198400,1476206591,RU 1476206592,1476214783,GE 1476214784,1476222975,SE 1476222976,1476231167,IT 1476231168,1476239359,NL 1476239360,1476247551,DE 1476247552,1476255743,RU 1476255744,1476257791,ES 1476257792,1476259839,FR 1476259840,1476263935,DE 1476263936,1476272127,GB 1476272128,1476280319,NO 1476280320,1476288511,IM 1476288512,1476296703,LU 1476296704,1476304895,RU 1476304896,1476313087,BG 1476313088,1476315135,DE 1476315136,1476316159,US 1476316160,1476317183,FI 1476317184,1476321151,DE 1476321152,1476321279,FI 1476321280,1476329471,MC 1476329472,1476337663,RU 1476337664,1476345855,NL 1476345856,1476354047,MD 1476354048,1476362239,KE 1476362240,1476370431,FR 1476370432,1476378623,SE 1476378624,1476386815,KZ 1476386816,1476395007,RU 1476395008,1478492159,ES 1478492160,1478772671,IT 1478772672,1478772675,SI 1478772676,1478912623,IT 1478912624,1478912631,SI 1478912632,1479296487,IT 1479296488,1479296495,SI 1479296496,1479421151,IT 1479421152,1479421159,SI 1479421160,1480589311,IT 1480589312,1481637887,DE 1481637888,1481646079,SE 1481646080,1481654271,RU 1481654272,1481662463,IT 1481662464,1481678847,BG 1481678848,1481684991,SE 1481684992,1481687039,GB 1481687040,1481695231,DE 1481695232,1481703423,SK 1481703424,1481711615,SA 1481711616,1481719807,RU 1481719808,1481727999,CZ 1481728000,1481736191,IE 1481736192,1481741055,GG 1481741056,1481741823,GB 1481741824,1481742079,GG 1481742080,1481744383,GB 1481744384,1481752575,IT 1481752576,1481760767,RU 1481760768,1481768959,UA 1481768960,1481777151,GB 1481777152,1481785343,BE 1481785344,1481793535,RU 1481793536,1481801727,LI 1481801728,1481809919,GB 1481809920,1481818111,RU 1481818112,1481826303,ES 1481826304,1481834495,DE 1481834496,1481842687,GL 1481842688,1481850879,SE 1481850880,1481859071,DK 1481859072,1481867263,GB 1481867264,1481875455,SE 1481875456,1481883647,CZ 1481883648,1481891839,RU 1481891840,1481893631,CZ 1481893632,1481893887,SK 1481893888,1481900031,CZ 1481900032,1481908223,CH 1481908224,1481916415,NO 1481916416,1481924607,ES 1481924608,1481932799,SA 1481932800,1481940991,DE 1481940992,1481949183,NO 1481949184,1481957375,RU 1481957376,1481965567,SE 1481965568,1481973759,CH 1481973760,1481981951,FO 1481981952,1481990143,NL 1481990144,1481998335,MK 1481998336,1482006527,FI 1482006528,1482022911,RU 1482022912,1482031103,SA 1482031104,1482039295,SY 1482039296,1482047487,SE 1482047488,1482055679,RU 1482055680,1482063871,CZ 1482063872,1482072063,FI 1482072064,1482080255,IT 1482080256,1482088447,RU 1482088448,1482096639,FR 1482096640,1482104831,BG 1482104832,1482113023,NO 1482113024,1482121215,RU 1482121216,1482129407,IT 1482129408,1482137599,ES 1482137600,1482145791,IE 1482145792,1482153983,ES 1482153984,1482162175,HU 1482162176,1482686463,NO 1482686464,1482948607,GB 1482948608,1483210751,CZ 1483210752,1483735039,GB 1483735040,1483997183,FI 1483997184,1484128255,AT 1484128256,1484259327,LT 1484259328,1484783615,FR 1484783616,1484849151,DE 1484849152,1484914687,SE 1484914688,1484980223,DE 1484980224,1485045759,SE 1485045760,1485111295,HU 1485111296,1485242367,DE 1485242368,1485246463,RU 1485246464,1485250559,UA 1485250560,1485254655,IR 1485254656,1485259007,RU 1485262848,1485263103,UA 1485263104,1485266943,RU 1485266944,1485271039,RO 1485271040,1485275135,UA 1485275136,1485283327,LV 1485283328,1485291519,PL 1485291520,1485307903,UA 1485307904,1485832191,FR 1485832192,1485963263,GB 1485963264,1486028799,CZ 1486028800,1486061567,IT 1486061568,1486094335,RU 1486094336,1486127103,ES 1486127104,1486159871,FI 1486159872,1486192639,IS 1486192640,1486225407,IT 1486225408,1486258175,DE 1486258176,1486292991,GB 1486292992,1486295039,RU 1486295040,1486297087,ES 1486297088,1486299135,IE 1486299136,1486301183,NL 1486301184,1486303231,GB 1486303232,1486305279,IS 1486305280,1486307327,HU 1486307328,1486309375,DE 1486309376,1486311423,AT 1486311424,1486313471,IE 1486313472,1486315519,RU 1486315520,1486317567,HU 1486317568,1486321663,RU 1486321664,1486323711,NL 1486323712,1486325759,GB 1486325760,1486327807,PL 1486327808,1486329855,CH 1486329856,1486331903,GB 1486331904,1486333951,NO 1486333952,1486335999,SE 1486336000,1486338047,KZ 1486338048,1486340095,RU 1486340096,1486342143,AZ 1486342144,1486344191,RU 1486344192,1486346239,ES 1486346240,1486348287,GB 1486348288,1486349311,NL 1486349312,1486350335,US 1486350336,1486352383,FR 1486352384,1486354431,BE 1486354432,1486356479,RU 1486356480,1486487551,DE 1486487552,1486618623,UA 1486618624,1486684159,PL 1486684160,1486749695,PT 1486749696,1486815231,RO 1486815232,1486880767,NL 1486880768,1488977919,FR 1488977920,1489240063,FI 1489240064,1489305599,EE 1489305600,1489338367,GR 1489338368,1489371135,BE 1489371136,1489436671,DE 1489436672,1489502207,PL 1489502208,1489534975,SI 1489534976,1489567743,RU 1489567744,1489600511,BH 1489600512,1489633279,RU 1489633280,1489634303,FR 1489634304,1489635839,IT 1489635840,1489636863,FR 1489636864,1489637119,IT 1489637120,1489637631,FR 1489637632,1489638143,IT 1489638144,1489639423,FR 1489639424,1489639679,IT 1489639680,1489640959,FR 1489640960,1489641215,IT 1489641216,1489641471,FR 1489641472,1489641599,PT 1489641600,1489641727,GR 1489641728,1489642495,FR 1489642496,1489642751,IT 1489642752,1489644031,FR 1489644032,1489644287,IT 1489644288,1489644543,FR 1489644544,1489644799,IQ 1489644800,1489647615,IT 1489647616,1489648383,FR 1489648384,1489648639,GR 1489648640,1489649663,IT 1489649664,1489650687,FR 1489650688,1489651199,IT 1489651200,1489653247,FR 1489653248,1489655295,IT 1489655296,1489655551,GR 1489655552,1489659647,IT 1489659648,1489661951,FR 1489661952,1489664511,IT 1489664512,1489664767,LY 1489664768,1489665023,TN 1489665024,1489666047,IT 1489666048,1489674239,GB 1489674240,1489676287,NL 1489676288,1489692415,GB 1489692416,1489692431,AU 1489692432,1489692447,GB 1489692448,1489692463,AU 1489692464,1489698815,GB 1489698816,1489731583,MT 1489731584,1489764351,BG 1489764352,1489797119,RU 1489797120,1489829887,KZ 1489829888,1489855807,DE 1489855808,1489855839,US 1489855840,1489856527,DE 1489856528,1489856543,US 1489856544,1489862655,DE 1489862656,1489928191,RU 1489928192,1489960959,SE 1489960960,1489993727,HR 1489993728,1490026495,LU 1490026496,1490028543,NL 1490028544,1490028671,GB 1490028672,1490028799,DE 1490028800,1490042879,NL 1490042880,1490053375,CZ 1490053376,1490054143,PL 1490054144,1490059263,CZ 1490059264,1490075647,DE 1490075648,1490092031,GB 1490092032,1490108415,DE 1490108416,1490124799,MC 1490124800,1490157567,HU 1490157568,1490173951,RU 1490173952,1490190335,PT 1490190336,1490193616,GB 1490193617,1490193617,DE 1490193618,1490196991,GB 1490196992,1490197247,IE 1490197248,1490206719,GB 1490206720,1490223103,GE 1490223104,1490255871,GB 1490255872,1490272255,NL 1490272256,1490288639,GB 1490288640,1490305023,SK 1490305024,1490321407,DK 1490321408,1490337791,GB 1490337792,1490354175,RU 1490354176,1490386943,SA 1490386944,1490403327,IT 1490403328,1490419711,BG 1490419712,1490436095,DE 1490436096,1490452479,UA 1490452480,1490468863,PT 1490468864,1490478591,GB 1490478592,1490478847,RU 1490478848,1490480127,GB 1490480128,1490480639,RU 1490480640,1490501631,GB 1490501632,1490518015,DE 1490518016,1490534399,RU 1490534400,1490550783,DE 1490550784,1490616319,LT 1490616320,1490681855,DE 1490681856,1490747391,GR 1490747392,1490812927,FR 1490812928,1490878463,PL 1490878464,1490879487,DE 1490879488,1490880511,US 1490880512,1490881535,FR 1490885632,1490886655,US 1490904064,1490905087,US 1490909184,1490910207,US 1490913280,1490915327,US 1490915328,1490917375,IT 1490917376,1490919423,IL 1490927616,1490929663,FR 1490931712,1490931967,DE 1490931968,1490932223,PL 1490932224,1490933759,DE 1490934528,1490934783,IL 1490944000,1491075071,LT 1491075072,1493172223,TR 1493172224,1493303295,DE 1493303296,1493431551,FR 1493431552,1493432319,GP 1493432320,1493433087,FR 1493433088,1493433343,MQ 1493433344,1493434111,FR 1493434112,1493434367,MQ 1493434368,1493565439,SA 1493565440,1493696511,ES 1493696512,1493958655,NO 1493958656,1494220799,DE 1494220800,1494221823,FR 1494221824,1494222335,RE 1494222336,1494222591,FR 1494222592,1494222847,RE 1494222848,1494223103,FR 1494223104,1494223359,RE 1494223360,1494224127,FR 1494224128,1494224383,RE 1494224384,1494224639,FR 1494224640,1494224895,RE 1494224896,1494227199,FR 1494227200,1494227711,GP 1494227712,1494228991,FR 1494228992,1494237183,RU 1494237184,1494245375,IE 1494245376,1494253567,RU 1494253568,1494261759,DE 1494261760,1494269951,GB 1494269952,1494278143,AT 1494278144,1494286335,GB 1494286336,1494294527,HR 1494294528,1494302719,RU 1494302720,1494310911,FI 1494310912,1494319103,LB 1494319104,1494327295,IS 1494327296,1494335487,IT 1494335488,1494343679,ES 1494343680,1494351871,PL 1494351872,1494360063,RO 1494360064,1494368255,HR 1494368256,1494376447,IE 1494376448,1494384639,SE 1494384640,1494392831,RU 1494392832,1494401023,NL 1494401024,1494409215,LV 1494409216,1494417407,FI 1494417408,1494425599,TR 1494433792,1494441983,IE 1494441984,1494450175,UA 1494450176,1494458367,DK 1494458368,1494474751,RU 1494474752,1494482943,DE 1494482944,1494499327,RU 1494499328,1494507519,NL 1494507520,1494523903,RU 1494523904,1494532095,NL 1494532096,1494540287,GB 1494540288,1494548479,NO 1494548480,1494556671,GB 1494556672,1494564863,DE 1494564864,1494573055,UA 1494573056,1494581247,RO 1494581248,1494589439,RU 1494589440,1494597631,US 1494597632,1494605823,IT 1494605824,1494614015,GB 1494614016,1494616063,RU 1494616064,1494618111,ES 1494618112,1494622207,RU 1494622208,1494624255,PL 1494624256,1494626303,UA 1494626304,1494626559,CZ 1494626560,1494626815,RO 1494626816,1494627071,RU 1494627072,1494627327,IE 1494627328,1494630399,RU 1494630400,1494638591,CZ 1494638592,1494646783,DE 1494646784,1494663167,RU 1494663168,1494665215,PL 1494665216,1494667263,UA 1494667264,1494669311,PL 1494669312,1494675455,RU 1494675456,1494679551,UA 1494679552,1494695935,RU 1494695936,1494704127,RS 1494704128,1494736895,RU 1494736896,1494745087,DK 1494745088,1494810623,CZ 1494810624,1494843391,BG 1494843392,1494876159,PL 1494876160,1494908927,AT 1494908928,1494941695,PT 1494941696,1494974463,FI 1494974464,1495007231,DE 1495007232,1495039999,MD 1495040000,1495042047,KZ 1495042048,1495044095,DE 1495044096,1495046143,FR 1495046144,1495048191,CH 1495048192,1495050239,RU 1495050240,1495052287,GB 1495052288,1495054335,IE 1495054336,1495056383,GB 1495056384,1495058431,RU 1495058432,1495060479,UA 1495060480,1495062527,GB 1495062528,1495064575,JO 1495064576,1495066623,PL 1495066624,1495068671,GB 1495068672,1495070719,DE 1495070720,1495072767,RU 1495072768,1495105535,CZ 1495105536,1495138303,ES 1495138304,1495139327,FR 1495140352,1495142399,FR 1495148544,1495150591,FR 1495151616,1495153663,FR 1495160240,1495160255,FR 1495160256,1495160263,GB 1495163392,1495163647,FR 1495168640,1495168655,FR 1495169024,1495169279,FR 1495170760,1495170763,DE 1495170816,1495171071,FR 1495171072,1495203839,NL 1495203840,1495205887,DE 1495205888,1495207935,CZ 1495207936,1495209983,RU 1495212032,1495214079,RU 1495214080,1495216127,CZ 1495216128,1495218175,IT 1495218176,1495220223,NL 1495220224,1495222271,PL 1495222272,1495224319,IT 1495224320,1495228415,RU 1495228416,1495230463,NL 1495230464,1495234559,RU 1495236608,1495238655,AT 1495238656,1495240703,DE 1495240704,1495242751,FR 1495242752,1495244799,MK 1495244800,1495246847,CZ 1495246848,1495248895,IE 1495248896,1495250943,GR 1495250944,1495252991,RU 1495252992,1495255039,BH 1495255040,1495257087,IT 1495257088,1495259135,GB 1495259136,1495261183,BE 1495261184,1495263231,PT 1495263232,1495265279,GB 1495265280,1495267327,US 1495267328,1495269375,SE 1495269376,1495277567,IR 1495277568,1495279615,SE 1495279616,1495279871,DE 1495279872,1495283711,RO 1495283712,1495285759,MD 1495285760,1495287807,US 1495287808,1495289855,SE 1495289856,1495293951,RO 1495293952,1495298047,IR 1495298048,1495300095,RO 1495300096,1495300351,SE 1495300352,1495300607,US 1495300608,1495300863,SE 1495300864,1495304191,RO 1495304192,1495306239,MD 1495306240,1495306573,GB 1495306574,1495306574,RO 1495306575,1495308287,GB 1495308288,1495312383,RO 1495312384,1495312895,IT 1495312896,1495313151,GB 1495313152,1495314431,MD 1495314432,1495316991,RO 1495316992,1495317503,IT 1495317504,1495319039,RO 1495319040,1495319167,FR 1495319168,1495319295,RO 1495319296,1495319551,SE 1495319552,1495320063,IR 1495320064,1495326719,RO 1495326720,1495332863,MD 1495332864,1495333375,RO 1495333376,1495333631,CH 1495333632,1495333887,RO 1495333888,1495335935,MD 1495335936,1495336447,RO 1495336448,1495336959,NL 1495336960,1495339007,RO 1495339008,1495339263,DE 1495339264,1495339519,MD 1495339520,1495340031,IR 1495340032,1495342591,RO 1495342592,1495342847,MD 1495342848,1495345151,RO 1495345152,1495345407,FI 1495345408,1495345663,US 1495345664,1495345919,FI 1495345920,1495346687,RO 1495346688,1495347199,GB 1495347200,1495351295,RO 1495351296,1495351551,GB 1495351552,1495351807,MD 1495351808,1495352319,IQ 1495352320,1495352447,FR 1495352448,1495352831,RO 1495352832,1495353087,FI 1495353088,1495362559,RO 1495362560,1495363583,ES 1495363584,1495364607,RO 1495364608,1495364863,GB 1495364864,1495367679,RO 1495367680,1495368191,IR 1495368192,1495369215,RO 1495369216,1495369471,GB 1495369472,1495369727,RO 1495369728,1495371775,SE 1495371776,1495376383,RO 1495376384,1495376639,GB 1495376640,1495376895,RO 1495376896,1495377407,GB 1495377408,1495385599,RO 1495385600,1495386623,GB 1495386624,1495387135,RO 1495387136,1495387647,IR 1495387648,1495387903,GB 1495387904,1495388159,RO 1495388160,1495392255,KZ 1495392256,1495394815,RO 1495394816,1495395327,IR 1495395328,1495396351,RO 1495396352,1495396863,IR 1495396864,1495398911,RO 1495398912,1495399423,GB 1495399424,1495399935,RO 1495399936,1495400447,GB 1495400448,1495405567,RO 1495405568,1495406079,IR 1495406080,1495408639,RO 1495408640,1495416831,IR 1495416832,1495418879,MD 1495418880,1495422975,RO 1495422976,1495423487,IR 1495423488,1495424511,RO 1495424512,1495425023,IR 1495425024,1495426559,RO 1495426560,1495426815,GB 1495426816,1495427071,RO 1495427072,1495427583,GB 1495427584,1495428095,RO 1495428096,1495428351,GB 1495428352,1495428863,RO 1495428864,1495429119,DE 1495429120,1495431167,MD 1495431168,1495433215,RO 1495433216,1495441407,IR 1495441408,1495442431,RO 1495442432,1495442559,FR 1495442560,1495442943,RO 1495442944,1495443199,AE 1495443200,1495443455,RO 1495443456,1495443967,IR 1495443968,1495444479,RO 1495444480,1495444607,KR 1495444608,1495444735,IN 1495444736,1495445503,RO 1495445504,1495446015,IR 1495446016,1495446271,RO 1495446272,1495446527,MD 1495446528,1495447551,RO 1495447552,1495449599,SE 1495449600,1495451647,MD 1495451648,1495452159,IR 1495452160,1495452671,RO 1495452672,1495453695,MD 1495453696,1495455743,RO 1495455744,1495456255,MD 1495456256,1495459839,RO 1495459840,1495460863,MD 1495460864,1495461887,RO 1495461888,1495463935,SE 1495463936,1495466495,RO 1495466496,1495467007,DE 1495467008,1495468031,RO 1495468032,1495470079,MD 1495470080,1495474687,RO 1495474688,1495474943,MD 1495474944,1495476223,RO 1495476224,1495478271,MD 1495478272,1495480831,RO 1495480832,1495481343,IR 1495481344,1495485439,RO 1495485440,1495485695,MD 1495485696,1495487487,RO 1495487488,1495488767,MD 1495488768,1495489279,GB 1495489280,1495489535,MD 1495489536,1495493119,RO 1495493120,1495493375,US 1495493376,1495493631,RO 1495493632,1495494655,AE 1495494656,1495495167,RO 1495495168,1495495423,MD 1495495424,1495497288,RO 1495497289,1495497289,IR 1495497290,1495498239,RO 1495498240,1495498367,IN 1495498368,1495498495,BD 1495498496,1495499775,RO 1495499776,1495500287,IR 1495500288,1495502847,RO 1495502848,1495503871,PL 1495503872,1495505151,RO 1495505152,1495505407,GB 1495505408,1495505919,RO 1495505920,1495506431,IR 1495506432,1495507711,RO 1495507712,1495507967,MD 1495507968,1495508991,RO 1495508992,1495510015,IT 1495510016,1495510527,RO 1495510528,1495511039,DE 1495511040,1495511551,IR 1495511552,1495511807,LT 1495511808,1495515647,RO 1495515648,1495516159,IR 1495516160,1495516287,FR 1495516288,1495516671,RO 1495516672,1495516927,GR 1495516928,1495517183,RO 1495517184,1495518207,MD 1495518208,1495529471,RO 1495529472,1495529727,MD 1495529728,1495535615,RO 1495535616,1495536127,IR 1495536128,1495540735,RO 1495540736,1495540991,NL 1495540992,1495541247,RO 1495541248,1495541759,GB 1495541760,1495543807,RO 1495543808,1495547903,IR 1495547904,1495548159,US 1495548160,1495548671,RO 1495548672,1495548703,RU 1495548704,1495548735,RO 1495548736,1495548927,RU 1495548928,1495549695,RO 1495549696,1495549951,RU 1495549952,1495551999,RO 1495552000,1495554047,ES 1495554048,1495554559,RO 1495554560,1495555071,SE 1495555072,1495556095,RO 1495556096,1495560191,IR 1495560192,1495566335,RO 1495566336,1495566591,GB 1495566592,1495566847,RO 1495566848,1495567359,GB 1495567360,1495571455,RO 1495571456,1495572479,MD 1495572480,1495576575,RO 1495576576,1495580671,IR 1495580672,1495581183,RO 1495581184,1495581695,IR 1495581696,1495589375,RO 1495589376,1495589887,IR 1495589888,1495596031,RO 1495596032,1495596543,IR 1495596544,1495596799,RO 1495596800,1495597055,MD 1495597056,1495601151,IR 1495601152,1495603199,AZ 1495603200,1495604735,RO 1495604736,1495605247,IR 1495605248,1495607295,AZ 1495607296,1495607551,MD 1495607552,1495607807,RO 1495607808,1495608319,IR 1495608320,1495617535,RO 1495617536,1495618559,ES 1495618560,1495620607,RO 1495620608,1495621375,GB 1495621376,1495623167,RO 1495623168,1495623679,IR 1495623680,1495624191,MD 1495624192,1495630079,RO 1495630080,1495631615,GB 1495631616,1495632127,RO 1495632128,1495632639,MD 1495632640,1495642111,RO 1495642112,1495644159,SE 1495644160,1495647743,RO 1495647744,1495648255,IR 1495648256,1495652863,RO 1495652864,1495653375,IR 1495653376,1495658495,RO 1495658496,1495662591,IR 1495662592,1495668735,RO 1495668736,1495669247,IR 1495669248,1495669503,GB 1495669504,1495670783,RO 1495670784,1495671807,MD 1495671808,1495672575,RO 1495672576,1495672831,MD 1495672832,1495674879,ES 1495674880,1495678975,RO 1495678976,1495679999,MD 1495680000,1495682047,RO 1495682048,1495683071,MD 1495683072,1495687167,IR 1495687168,1495688703,RO 1495688704,1495689215,IR 1495689216,1495723519,RO 1495723520,1495724031,FR 1495724032,1495724543,RO 1495724544,1495725055,IR 1495725056,1495732223,RO 1495732224,1495734271,ES 1495734272,1495745791,RO 1495745792,1495746047,GB 1495746048,1495747583,RO 1495747584,1495748607,MD 1495748608,1495748863,RO 1495748864,1495749119,GB 1495749120,1495749631,RO 1495749632,1495750655,MD 1495750656,1495752703,RO 1495752704,1495754751,MD 1495754752,1495755775,RO 1495755776,1495756031,PL 1495756032,1495756799,RO 1495756800,1495758847,MD 1495758848,1495759359,RO 1495759360,1495759487,TH 1495759488,1495759615,ID 1495759616,1495759871,RO 1495759872,1495760127,ES 1495760128,1495760895,RO 1495760896,1495762943,DE 1495762944,1495763967,GB 1495763968,1495764735,RO 1495764736,1495764991,AU 1495764992,1495765503,RO 1495765504,1495765759,GB 1495765760,1495766015,NL 1495766016,1495767039,RO 1495767040,1495769087,ES 1495769088,1495771135,RO 1495771136,1495772159,PL 1495772160,1495775743,RO 1495775744,1495776255,IR 1495776256,1495782399,RO 1495782400,1495782911,GB 1495782912,1495783167,RO 1495783168,1495783423,GB 1495783424,1495789823,RO 1495789824,1495790079,GB 1495790080,1495790335,MD 1495790336,1495790847,GB 1495790848,1495791359,RO 1495791360,1495791615,GB 1495791616,1495793663,RO 1495793664,1495794687,DE 1495794688,1495795199,RO 1495795200,1495795327,FR 1495795328,1495795455,RO 1495795456,1495795711,RU 1495795712,1495803391,RO 1495803392,1495803903,IR 1495803904,1495804927,RO 1495804928,1495805439,GB 1495805440,1495805951,RO 1495805952,1495810047,KZ 1495810048,1495813631,RO 1495813632,1495814143,IR 1495814144,1495815167,RO 1495815168,1495816191,ES 1495816192,1495816703,RO 1495816704,1495817215,IR 1495817216,1495820799,RO 1495820800,1495821311,IR 1495821312,1495821823,RO 1495821824,1495822335,IR 1495822336,1495826431,RO 1495826432,1495826943,IR 1495826944,1495827967,RO 1495827968,1495828479,DE 1495828480,1495829503,RO 1495829504,1495830015,GB 1495830016,1495833672,RO 1495833673,1495833673,IR 1495833674,1495837695,RO 1495837696,1495838719,IT 1495838720,1495845631,RO 1495845632,1495845887,GB 1495845888,1495846911,RO 1495846912,1495847423,GB 1495847424,1495848959,RO 1495848960,1495849471,SE 1495849472,1495852031,RO 1495852032,1495853055,MD 1495853056,1495855103,RO 1495855104,1495859199,IR 1495859200,1495860223,ES 1495860224,1495861247,AZ 1495861248,1495865343,IR 1495865344,1495865599,GB 1495865600,1495866111,RO 1495866112,1495866879,GB 1495866880,1495867391,RO 1495867392,1495867903,IR 1495867904,1495871743,RO 1495871744,1495872511,GB 1495872512,1495874047,RO 1495874048,1495874559,IR 1495874560,1495875583,RO 1495875584,1495891967,MD 1495891968,1495900159,RO 1495900160,1495902207,SE 1495902208,1495907583,RO 1495907584,1495908351,GB 1495908352,1495922687,IR 1495922688,1495926783,RO 1495926784,1495927039,SG 1495927040,1495927295,RO 1495927296,1495927551,GB 1495927552,1495932927,RO 1495932928,1495933439,IR 1495933440,1495939071,RO 1495939072,1495939583,IR 1495939584,1495941119,RO 1495941120,1495942143,MD 1495942144,1495942655,IR 1495942656,1495943167,RO 1495943168,1495945215,MD 1495945216,1495951359,RO 1495951360,1495952383,MD 1495952384,1495953919,RO 1495953920,1495954175,GB 1495954176,1495957503,RO 1495957504,1495958527,MD 1495958528,1495959551,RO 1495959552,1495960575,IR 1495960576,1495961087,SE 1495961088,1495963135,RO 1495963136,1495963647,IR 1495963648,1495964415,GB 1495964416,1495967743,RO 1495967744,1495968767,NL 1495968768,1495970815,RO 1495970816,1495971839,MD 1495971840,1495974911,RO 1495974912,1495975935,IR 1495975936,1495979007,RO 1495979008,1495979263,NL 1495979264,1495982079,RO 1495982080,1495983103,MD 1495983104,1495983615,IR 1495983616,1495985663,RO 1495985664,1495985791,FR 1495985792,1495985919,RO 1495985920,1495986175,JP 1495986176,1495990271,RO 1495990272,1495994367,IR 1495994368,1495998463,RO 1495998464,1495998719,SG 1495998720,1495999487,RO 1495999488,1495999999,IR 1496000000,1496005631,RO 1496005632,1496005887,GB 1496005888,1496008191,RO 1496008192,1496008703,IR 1496008704,1496012799,RO 1496012800,1496016895,IR 1496016896,1496018943,RO 1496018944,1496019967,FR 1496019968,1496020735,RO 1496020736,1496020991,AU 1496020992,1496023039,RO 1496023040,1496024063,MD 1496024064,1496033279,RO 1496033280,1496034303,MD 1496034304,1496036863,RO 1496036864,1496037375,IR 1496037376,1496038399,RO 1496038400,1496038911,IR 1496038912,1496040447,RO 1496040448,1496040959,ES 1496040960,1496042495,RO 1496042496,1496043007,IR 1496043008,1496045567,RO 1496045568,1496049663,IR 1496049664,1496051711,SE 1496051712,1496055807,RO 1496055808,1496057855,SE 1496057856,1496058111,DE 1496058112,1496066815,RO 1496066816,1496067071,QA 1496067072,1496073983,RO 1496073984,1496074239,ES 1496074240,1496078335,RO 1496078336,1496079359,MD 1496079360,1496082175,RO 1496082176,1496082431,GB 1496082432,1496084479,RO 1496084480,1496084991,IR 1496084992,1496085247,MD 1496085248,1496086015,RO 1496086016,1496086527,IR 1496086528,1496088063,RO 1496088064,1496088575,MD 1496088576,1496093183,RO 1496093184,1496093695,IR 1496093696,1496094719,RO 1496094720,1496095743,MD 1496095744,1496104447,RO 1496104448,1496104959,IR 1496104960,1496107519,RO 1496107520,1496108031,IR 1496108032,1496117309,RO 1496117310,1496117310,IR 1496117311,1496119295,RO 1496119296,1496121343,SE 1496121344,1496122367,MD 1496122368,1496130559,RO 1496130560,1496131583,ES 1496131584,1496132607,MD 1496132608,1496133631,RO 1496133632,1496137727,IR 1496137728,1496138495,RO 1496138496,1496138751,BG 1496138752,1496139263,IR 1496139264,1496141823,RO 1496141824,1496142335,IR 1496142336,1496150015,RO 1496150016,1496152063,IR 1496152064,1496153599,RO 1496153600,1496154111,IR 1496154112,1496179199,RO 1496179200,1496179711,SE 1496179712,1496180223,RO 1496180224,1496180735,IR 1496180736,1496182783,SE 1496182784,1496183039,ES 1496183040,1496188927,RO 1496188928,1496189951,ES 1496189952,1496190975,RO 1496190976,1496193023,SE 1496193024,1496197119,RO 1496197120,1496197631,MD 1496197632,1496198143,RO 1496198144,1496198655,IR 1496198656,1496198911,RO 1496198912,1496199167,GB 1496199168,1496202239,RO 1496202240,1496202751,IR 1496202752,1496203263,RO 1496203264,1496205311,IT 1496205312,1496210943,RO 1496210944,1496211455,IR 1496211456,1496213503,RO 1496213504,1496215551,IT 1496215552,1496216319,RO 1496216320,1496216575,MD 1496216576,1496221695,RO 1496221696,1496223743,ES 1496223744,1496228863,RO 1496228864,1496229887,MD 1496229888,1496231935,RO 1496231936,1496233983,PS 1496233984,1496236031,RO 1496236032,1496238079,IT 1496238080,1496240127,IQ 1496240128,1496253439,RO 1496253440,1496254463,ES 1496254464,1496268799,RO 1496268800,1496272895,IR 1496272896,1496275455,RO 1496275456,1496275711,MD 1496275712,1496276735,RO 1496276736,1496276991,MD 1496276992,1496285183,RO 1496285184,1496293375,IR 1496293376,1496295423,RO 1496295424,1496297471,GB 1496297472,1496299519,MD 1496299520,1496301567,SE 1496301568,1496302591,RO 1496302592,1496304639,IR 1496304640,1496317951,RO 1496317952,1497366527,DE 1497366528,1498415103,PL 1498415104,1499463679,FR 1499463680,1499594751,IT 1499594752,1499725823,NL 1499725824,1499856895,IE 1499856896,1499987967,CZ 1499987968,1499996159,AT 1499996160,1500004351,GB 1500004352,1500020735,RU 1500020736,1500028927,IS 1500028928,1500037119,NL 1500037120,1500045311,DK 1500045312,1500061695,GB 1500061696,1500069887,NO 1500069888,1500078079,IT 1500078080,1500086271,GB 1500086272,1500094463,RU 1500094464,1500102655,AT 1500102656,1500110847,NL 1500110848,1500119039,UA 1500119040,1500127231,TR 1500127232,1500135423,FI 1500135424,1500143615,DE 1500143616,1500151807,BG 1500151808,1500153855,GB 1500153856,1500155903,IE 1500155904,1500157951,GB 1500157952,1500159999,DE 1500160000,1500162047,NL 1500162048,1500164095,RU 1500164096,1500166143,GB 1500166144,1500168191,FR 1500168192,1500170239,RU 1500170240,1500172287,LU 1500172288,1500174335,AT 1500174336,1500176383,DE 1500176384,1500178431,GB 1500178432,1500180479,KZ 1500180480,1500182527,BE 1500182528,1500184575,RU 1500184576,1500186623,IM 1500186624,1500188671,KW 1500188672,1500190719,FR 1500192768,1500194815,RU 1500194816,1500196863,GB 1500196864,1500198911,ES 1500198912,1500200959,GB 1500200960,1500203007,DE 1500203008,1500205055,GB 1500205056,1500207103,RU 1500207104,1500209151,IT 1500209152,1500211199,KZ 1500211200,1500213247,IT 1500213248,1500217343,RU 1500217344,1500219391,DE 1500219392,1500221439,RU 1500221440,1500223487,SK 1500223488,1500225535,PL 1500225536,1500227583,DE 1500227584,1500229631,FR 1500229632,1500231679,ES 1500231680,1500233727,DE 1500233728,1500237823,RU 1500237824,1500241919,SE 1500241920,1500243967,TR 1500243968,1500246015,GB 1500246016,1500248063,ES 1500248064,1500250111,HU 1500250112,1500266495,SA 1500266496,1500282879,RU 1500282880,1500299263,LB 1500299264,1500315647,PL 1500315648,1500332031,RU 1500332032,1500348415,PT 1500348416,1500413951,RU 1500413952,1500430335,DE 1500430336,1500446719,RS 1500446720,1500463103,LV 1500463104,1500479487,CZ 1500479488,1500495871,RU 1500495872,1500512255,BA 1500512256,1500643327,RU 1500643328,1500774399,PT 1500774400,1500905471,LT 1500905472,1501036543,IT 1501036544,1501298687,RO 1501298688,1501560831,IE 1501560832,1501822975,ES 1501822976,1502085119,HU 1502085120,1502216191,RO 1502216192,1502347263,IL 1502347264,1502478335,ES 1502478336,1502605311,SI 1502605312,1502606335,HR 1502606336,1502609407,SI 1502609408,1502625791,DE 1502625792,1502642175,SA 1502642176,1502658559,IR 1502658560,1502665983,AT 1502665984,1502666239,SK 1502666240,1502674943,AT 1502674944,1502691327,DE 1502691328,1502707711,GB 1502707712,1502715903,RU 1502715904,1502717951,IT 1502717952,1502719999,GB 1502720000,1502721023,FR 1502721024,1502722047,CH 1502722048,1502724095,TR 1502724096,1502740479,GB 1502740480,1502756863,NL 1502756864,1502773247,UZ 1502773248,1502789631,BA 1502789632,1502806015,DE 1502806016,1502822399,SA 1502822400,1502838783,HU 1502838784,1502855167,SE 1502855168,1502871551,AZ 1502871552,1502887935,BH 1502887936,1502904319,HU 1502904320,1502920703,IT 1502920704,1502937087,RU 1502937088,1502953471,RO 1502953472,1502969855,MD 1502969856,1502973951,FR 1502973952,1502974975,DE 1502974976,1502975231,FR 1502975232,1502975247,GB 1502975248,1502975327,FR 1502975328,1502975359,GB 1502975360,1502975743,FR 1502975744,1502977023,DE 1502977024,1502978047,FR 1502978048,1502979071,US 1502979072,1502979135,FR 1502979136,1502979199,GB 1502979200,1502979215,FR 1502979216,1502979231,CZ 1502979232,1502979263,IE 1502979264,1502980351,FR 1502980352,1502980607,US 1502980608,1502980879,FR 1502980880,1502980895,DE 1502980896,1502980991,FR 1502980992,1502981119,DE 1502981120,1502981887,FR 1502981888,1502982143,NL 1502982144,1502986239,FR 1502986240,1503000063,DE 1503000064,1503000319,PL 1503000320,1503001087,DE 1503001088,1503001343,PL 1503001344,1503002623,DE 1503002624,1503006719,GE 1503006720,1503010815,GB 1503010816,1503019007,IT 1503019008,1503051775,DK 1503051776,1503068159,SE 1503068160,1503084543,PL 1503084544,1503100927,GB 1503100928,1503117311,RU 1503117312,1503133695,NO 1503133696,1503370138,PT 1503370139,1503370139,GB 1503370140,1503395839,PT 1503395840,1503491082,FR 1503491083,1503491083,GP 1503491084,1503657983,FR 1503657984,1503690751,SE 1503690752,1503723519,IS 1503723520,1503789055,PL 1503789056,1503821823,NO 1503821824,1503854591,UA 1503854592,1503887359,RU 1503887360,1503895559,DE 1503895560,1503895567,GR 1503895568,1503895599,DE 1503895600,1503895607,BE 1503895608,1503895663,DE 1503895664,1503895671,FR 1503895672,1503895679,PL 1503895680,1503895687,IT 1503895688,1503895695,DE 1503895696,1503895703,GB 1503895704,1503896175,DE 1503896176,1503896183,NL 1503896184,1503896359,DE 1503896360,1503896367,CH 1503896368,1503896375,DE 1503896376,1503896383,CH 1503896384,1503896399,DE 1503896400,1503896407,GR 1503896408,1503896439,DE 1503896440,1503896447,NO 1503896448,1503896543,DE 1503896544,1503896551,FR 1503896552,1503897303,DE 1503897304,1503897311,AT 1503897312,1503897335,DE 1503897336,1503897343,PT 1503897344,1503897351,RO 1503897352,1503897367,DE 1503897368,1503897375,BE 1503897376,1503897383,GR 1503897384,1503897407,DE 1503897408,1503897415,IT 1503897416,1503897431,DE 1503897432,1503897439,IT 1503897440,1503897463,DE 1503897464,1503897471,GR 1503897472,1503897479,DE 1503897480,1503897487,BE 1503897488,1503897583,DE 1503897584,1503897591,GB 1503897592,1503898119,DE 1503898120,1503898135,TH 1503898136,1503898167,DE 1503898168,1503898175,RO 1503898176,1503898183,IT 1503898184,1503898191,AT 1503898192,1503898207,DE 1503898208,1503898215,IT 1503898216,1503898335,DE 1503898336,1503898343,IT 1503898344,1503898351,DE 1503898352,1503898359,CH 1503898360,1503898415,DE 1503898416,1503898423,BE 1503898424,1503898503,DE 1503898504,1503898511,GR 1503898512,1503898567,DE 1503898568,1503898575,TH 1503898576,1503898607,DE 1503898608,1503898615,GR 1503898616,1503898631,DE 1503898632,1503898647,GR 1503898648,1503898791,DE 1503898792,1503898799,AT 1503898800,1503898807,DE 1503898808,1503898815,PL 1503898816,1503898831,GB 1503898832,1503898839,RO 1503898840,1503898887,DE 1503898888,1503898895,IT 1503898896,1503898927,DE 1503898928,1503898935,RO 1503898936,1503898943,IT 1503898944,1503898959,DE 1503898960,1503898967,IT 1503898968,1503898991,DE 1503898992,1503898999,GB 1503899000,1503899007,AT 1503899008,1503899015,CH 1503899016,1503899071,DE 1503899072,1503899087,AT 1503899088,1503899119,DE 1503899120,1503899127,NL 1503899128,1503899143,DE 1503899144,1503899151,IT 1503899152,1503899183,DE 1503899184,1503899191,GR 1503899192,1503899199,CH 1503899200,1503899271,DE 1503899272,1503899279,BE 1503899280,1503899295,DE 1503899296,1503899303,GR 1503899304,1503899311,NL 1503899312,1503899351,DE 1503899352,1503899367,GR 1503899368,1503899375,CH 1503899376,1503899383,DE 1503899384,1503899391,RO 1503899392,1503899399,DE 1503899400,1503899407,CH 1503899408,1503899423,DE 1503899424,1503899431,IT 1503899432,1503899439,GR 1503899440,1503899463,DE 1503899464,1503899471,IT 1503899472,1503899543,DE 1503899544,1503899551,SK 1503899552,1503899575,DE 1503899576,1503899583,BE 1503899584,1503899687,DE 1503899688,1503899695,IT 1503899696,1503899703,BE 1503899704,1503899919,DE 1503899920,1503899927,BE 1503899928,1503899935,IT 1503899936,1503899943,BE 1503899944,1503899951,DE 1503899952,1503899959,IT 1503899960,1503900143,DE 1503900144,1503900151,RU 1503900152,1503900679,DE 1503900680,1503900687,BE 1503900688,1503900703,IT 1503900704,1503900719,DE 1503900720,1503900727,TW 1503900728,1503901455,DE 1503901456,1503901463,IT 1503901464,1503901471,CH 1503901472,1503901567,DE 1503901568,1503901695,TW 1503901696,1503902007,DE 1503902008,1503902015,IT 1503902016,1503902079,DE 1503902080,1503902087,BA 1503902088,1503902135,DE 1503902136,1503902143,BE 1503902144,1503902167,DE 1503902168,1503902175,NL 1503902176,1503902215,DE 1503902216,1503902223,US 1503902224,1503902335,DE 1503902336,1503902399,BE 1503902400,1503902407,RO 1503902408,1503903687,DE 1503903688,1503903695,IT 1503903696,1503903711,DE 1503903712,1503903719,IT 1503903720,1503904319,DE 1503904320,1503904327,IT 1503904328,1503904343,DE 1503904344,1503904351,BE 1503904352,1503904367,DE 1503904368,1503904375,CH 1503904376,1503905551,DE 1503905552,1503905559,CH 1503905560,1503905567,ES 1503905568,1503905583,DE 1503905584,1503905591,YE 1503905592,1503905599,DE 1503905600,1503905607,BE 1503905608,1503905615,DE 1503905616,1503905623,FI 1503905624,1503905647,DE 1503905648,1503905655,IT 1503905656,1503905663,AT 1503905664,1503905863,DE 1503905864,1503905871,FI 1503905872,1503905895,DE 1503905896,1503905903,GB 1503905904,1503905983,DE 1503905984,1503905991,UA 1503905992,1503906015,DE 1503906016,1503906023,AT 1503906024,1503906055,DE 1503906056,1503906063,CH 1503906064,1503906071,TR 1503906072,1503906111,DE 1503906112,1503906175,TR 1503906176,1503906343,DE 1503906344,1503906351,AT 1503906352,1503906383,DE 1503906384,1503906391,GR 1503906392,1503906407,DE 1503906408,1503906415,MX 1503906416,1503906431,DE 1503906432,1503906439,AT 1503906440,1503906495,DE 1503906496,1503906559,TR 1503906560,1503920127,DE 1503920128,1503985663,HR 1503985664,1504018431,IR 1504018432,1504051199,RO 1504051200,1504083967,FI 1504083968,1504116735,DE 1504116736,1504149503,PL 1504149504,1504149759,GB 1504149760,1504150015,ES 1504150016,1504150271,GB 1504150272,1504150527,DE 1504150528,1504151039,GB 1504151040,1504151295,FR 1504151296,1504152575,GB 1504152576,1504152831,IE 1504152832,1504154623,GB 1504154624,1504155647,IE 1504155648,1504247807,GB 1504247808,1504313343,RU 1504313344,1504378879,FR 1504378880,1504444415,PL 1504444416,1504509951,HR 1504509952,1504575487,SK 1504575488,1504641023,PL 1504641024,1504706559,RU 1504706560,1504837631,CZ 1504837632,1504968703,RU 1504968704,1505099775,PT 1505099776,1505230847,DE 1505230848,1505239039,RU 1505239040,1505247231,IE 1505247232,1505255423,UA 1505255424,1505263615,IT 1505263616,1505271807,DK 1505271808,1505279999,NL 1505280000,1505288191,IR 1505288192,1505296383,RU 1505296384,1505304575,UA 1505304576,1505312767,FR 1505312768,1505320959,RU 1505320960,1505329151,AT 1505329152,1505337343,IE 1505337344,1505345535,FR 1505345536,1505353727,MK 1505353728,1505361919,CZ 1505361920,1505370111,PL 1505370112,1505378303,SM 1505378304,1505386495,IT 1505386496,1505394687,HU 1505394688,1505402879,DE 1505402880,1505411071,DK 1505411072,1505413119,CH 1505413120,1505415167,BG 1505415168,1505417215,CH 1505417216,1505419263,AT 1505419264,1505427455,RU 1505427456,1505435647,UA 1505435648,1505443839,MD 1505443840,1505460223,GB 1505460224,1505478655,CZ 1505478656,1505482751,DE 1505482752,1505484799,LB 1505484800,1505492991,PL 1505492992,1505501183,NL 1505501184,1505509375,ME 1505509376,1505511423,AT 1505511424,1505517567,DK 1505517568,1505525759,RU 1505525760,1505533951,IT 1505533952,1505542143,RU 1505542144,1505550335,PL 1505550336,1505566719,RU 1505566720,1505574911,IT 1505574912,1505583103,YE 1505583104,1505607679,RU 1505607680,1505615871,SE 1505615872,1505624063,SA 1505624064,1505632255,FI 1505632256,1505646847,CZ 1505646848,1505647103,PL 1505647104,1505648639,CZ 1505648640,1505656831,LT 1505665024,1505673215,IT 1505673216,1505681407,BG 1505681408,1505689599,RU 1505689600,1505697791,NO 1505697792,1505705983,IE 1505705984,1505714175,DE 1505714176,1505722367,LV 1505722368,1505738751,PL 1505738752,1505746943,GB 1505746944,1505755135,RU 1505755136,1506017279,GB 1506017280,1506082815,IR 1506082816,1506148351,GB 1506148352,1506279423,IR 1506279424,1506312191,NL 1506312192,1506316287,GB 1506316288,1506322431,PL 1506322432,1506324479,DE 1506324480,1506328575,RU 1506328576,1506330623,FI 1506330624,1506332671,NL 1506332672,1506334719,PL 1506334720,1506336767,GB 1506336768,1506338815,PL 1506338816,1506340863,UA 1506340864,1506342911,RO 1506342912,1506344959,UA 1506344960,1506377727,LV 1506377728,1506410495,HR 1506410496,1506422063,DE 1506422064,1506422079,GB 1506422080,1506443263,DE 1506443264,1506444397,GB 1506444398,1506444398,DE 1506444399,1506444757,GB 1506444758,1506444758,DE 1506444759,1506445103,GB 1506445104,1506445119,DE 1506445120,1506445135,GB 1506445136,1506445151,DE 1506445152,1506445167,GB 1506445168,1506445183,DE 1506445184,1506446143,GB 1506446144,1506446151,FR 1506446152,1506446823,GB 1506446824,1506446831,NL 1506446832,1506448319,GB 1506448320,1506448383,IT 1506448384,1506449263,GB 1506449264,1506449279,BE 1506449280,1506450047,GB 1506450048,1506450111,CH 1506450112,1506450863,GB 1506450864,1506450879,CZ 1506450880,1506453311,GB 1506453312,1506453319,SE 1506453320,1506456533,GB 1506456534,1506456534,IT 1506456535,1506456959,GB 1506456960,1506456975,IT 1506456976,1506458244,GB 1506458245,1506458245,CH 1506458246,1506459207,GB 1506459208,1506459247,BE 1506459248,1506459295,GB 1506459296,1506459327,BE 1506459328,1506459968,GB 1506459969,1506459969,FR 1506459970,1506460151,GB 1506460152,1506460159,FR 1506460160,1506460679,GB 1506460680,1506460683,IT 1506460684,1506462511,GB 1506462512,1506462527,FR 1506462528,1506462719,GB 1506462720,1506462975,IT 1506462976,1506463551,GB 1506463552,1506463615,DE 1506463616,1506463679,GB 1506463680,1506463695,DE 1506463696,1506464895,GB 1506464896,1506464911,NL 1506464912,1506464999,GB 1506465000,1506465007,NL 1506465008,1506465187,GB 1506465188,1506465188,NL 1506465189,1506466383,GB 1506466384,1506466391,DE 1506466392,1506466431,GB 1506466432,1506466559,DE 1506466560,1506469663,GB 1506469664,1506469695,IT 1506469696,1506469759,GB 1506469760,1506469775,IT 1506469776,1506471455,GB 1506471456,1506471487,IT 1506471488,1506471551,GB 1506471552,1506471679,IT 1506471680,1506471871,GB 1506471872,1506471903,IT 1506471904,1506471983,GB 1506471984,1506471999,NL 1506472000,1506472031,GB 1506472032,1506472047,NL 1506472048,1506475873,GB 1506475874,1506475874,DE 1506475875,1506476031,GB 1506476032,1506508799,KW 1506508800,1506541567,CZ 1506541568,1506574335,RU 1506574336,1506582527,DE 1506582528,1506607103,IE 1506607104,1506639871,MK 1506639872,1506672639,NL 1506672640,1506689023,PL 1506689024,1506705407,CH 1506705408,1506727935,GB 1506727936,1506728959,FR 1506728960,1506740223,GB 1506742272,1506744319,SE 1506744320,1506746367,NL 1506746368,1506750463,RU 1506750464,1506752511,GB 1506752512,1506754559,IE 1506754560,1506758655,RU 1506758656,1506760703,IT 1506760704,1506764799,RU 1506764800,1506766847,IT 1506766848,1506768895,NO 1506768896,1506770943,AT 1506770944,1506772991,NL 1506772992,1506775039,GB 1506775040,1506777087,AT 1506777088,1506783231,GB 1506785280,1506787327,BE 1506787328,1506789375,ME 1506789376,1506791423,DE 1506791424,1506793471,GB 1506793472,1506795519,RU 1506795520,1506799615,CH 1506799616,1506801663,LV 1506801664,1506803711,DE 1506803712,1506869247,RU 1506869248,1506934783,UA 1506934784,1507000319,GR 1507000320,1507065855,QA 1507065856,1507131391,SI 1507131392,1507196927,GB 1507196928,1507262463,PT 1507262464,1507327999,BG 1507328000,1507393535,RS 1507393536,1507414648,CH 1507414649,1507414649,DE 1507414650,1507459071,CH 1507459072,1507524607,KZ 1507524608,1507525631,EE 1507525632,1507533823,KZ 1507533824,1507540991,AZ 1507540992,1507557375,IR 1507557376,1507558399,EE 1507558400,1507558911,AZ 1507558912,1507564287,EE 1507564288,1507565823,AZ 1507565824,1507566335,EE 1507566336,1507567615,AZ 1507567616,1507567871,EE 1507567872,1507573759,AZ 1507573760,1507590143,IR 1507590144,1507655679,NL 1507655680,1507659775,DE 1507659776,1507663871,RU 1507663872,1507665791,IT 1507665792,1507665919,GR 1507665920,1507667967,IT 1507667968,1507672063,RU 1507672064,1507676159,EE 1507676160,1507680255,IR 1507680256,1507684351,NO 1507684352,1507688447,LV 1507688448,1507696639,IT 1507696640,1507700735,DK 1507700736,1507704831,NL 1507704832,1507708927,RU 1507708928,1507713023,CZ 1507713024,1507717119,RU 1507717120,1507717631,SE 1507717632,1507718911,NO 1507718912,1507721215,SE 1507721216,1507753983,GB 1507753984,1507819519,RU 1507819520,1507852287,HU 1507852288,1508114431,FR 1508114432,1508376575,PL 1508376576,1508392959,GE 1508392960,1508442111,RU 1508442112,1508458495,DK 1508458496,1508466687,DE 1508466688,1508468735,NO 1508468736,1508470783,NL 1508470784,1508474879,SI 1508474880,1508491263,CZ 1508491264,1508507647,SE 1508507648,1508524031,GB 1508524032,1508540415,IE 1508540416,1508556799,FR 1508556800,1508573183,PL 1508573184,1508589567,CZ 1508589568,1508605951,IR 1508605952,1508622335,RU 1508622336,1508638719,EE 1508638720,1508642175,SE 1508642176,1508642303,DK 1508642304,1508647691,SE 1508647692,1508647692,DK 1508647693,1508655103,SE 1508655104,1508671487,FI 1508671488,1508687871,CH 1508687872,1508704255,UZ 1508704256,1508720639,RU 1508720640,1508737023,FR 1508737024,1508753407,SA 1508753408,1508769791,KG 1508769792,1508786175,PL 1508786176,1508802559,DE 1508802560,1508818943,GB 1508818944,1508830719,RO 1508830720,1508831487,SK 1508831488,1508835327,RO 1508835328,1508851711,CZ 1508851712,1508868095,PL 1508868096,1508884479,RU 1508884480,1508900863,DK 1508900864,1509163007,GB 1509163008,1509425151,DE 1509425152,1509429247,NO 1509429248,1509433343,GB 1509433344,1509437439,CH 1509437440,1509443583,GB 1509443584,1509445631,FR 1509445632,1509449727,LV 1509449728,1509453823,ES 1509453824,1509457919,RU 1509457920,1509462015,NL 1509462016,1509466111,LI 1509466112,1509470207,NL 1509470208,1509478399,RU 1509478400,1509482495,FR 1509482496,1509486591,RU 1509486592,1509490687,CZ 1509490688,1509494783,DK 1509494784,1509498879,RU 1509498880,1509502975,DE 1509502976,1509507071,RU 1509507072,1509511167,GB 1509511168,1509515263,LT 1509515264,1509519359,HR 1509519360,1509535743,RU 1509535744,1509537791,IT 1509537792,1509539839,HR 1509539840,1509543935,AM 1509543936,1509548031,LB 1509548032,1509564415,RU 1509564416,1509568511,GB 1509568512,1509572607,FI 1509572608,1509576703,NL 1509576704,1509580799,KZ 1509580800,1509584895,CZ 1509584896,1509588991,NO 1509588992,1509593087,DE 1509593088,1509601279,RU 1509601280,1509605375,NL 1509605376,1509609471,PL 1509609472,1509617663,RU 1509617664,1509621759,CZ 1509621760,1509625855,US 1509625856,1509629951,UA 1509629952,1509634047,HU 1509634048,1509638143,FR 1509638144,1509642239,RU 1509642240,1509646335,KW 1509646336,1509650431,RU 1509650432,1509654527,GB 1509654528,1509658623,DE 1509658624,1509666815,RU 1509666816,1509670911,IT 1509670912,1509675007,GB 1509675008,1509677439,NO 1509677440,1509679103,GB 1509679104,1509683199,ES 1509683200,1509687295,CH 1509687296,1509703679,UA 1509703680,1509720063,RU 1509720064,1509736447,TR 1509736448,1509752831,BG 1509752832,1509769215,RU 1509769216,1509785599,SE 1509785600,1509801983,BG 1509801984,1509818367,RU 1509818368,1509851135,NO 1509851136,1509867519,LV 1509867520,1509883903,RU 1509883904,1509900287,NL 1509900288,1509916671,RU 1509916672,1509933055,GB 1509933056,1509935103,CH 1509935104,1509941247,NL 1509941248,1509947391,SE 1509947392,1509949439,NL 1509949440,1510604799,FR 1510604800,1510605311,RE 1510605312,1510605823,FR 1510605824,1510607615,RE 1510607616,1510607871,FR 1510607872,1510608383,RE 1510608384,1510608639,FR 1510608640,1510609663,RE 1510609664,1510609919,FR 1510609920,1510611199,RE 1510611200,1510611711,FR 1510611712,1510614271,RE 1510614272,1510614783,FR 1510614784,1510615551,RE 1510615552,1510615807,FR 1510615808,1510616063,RE 1510616064,1510616319,FR 1510616320,1510617087,RE 1510617088,1510617343,FR 1510617344,1510617599,RE 1510617600,1510617855,FR 1510617856,1510619647,RE 1510619648,1510620159,FR 1510620160,1510623743,RE 1510623744,1510623999,FR 1510624000,1510624511,RE 1510624512,1510624767,FR 1510624768,1510625279,RE 1510625280,1510626047,FR 1510626048,1510628351,RE 1510628352,1510628607,FR 1510628608,1510629119,RE 1510629120,1510629375,FR 1510629376,1510630143,RE 1510630144,1510630655,FR 1510630656,1510631167,RE 1510631168,1510631423,FR 1510631424,1510631935,RE 1510631936,1510632447,FR 1510632448,1510633983,RE 1510633984,1510634239,FR 1510634240,1510635263,RE 1510635264,1510635716,FR 1510635717,1510635717,RE 1510635718,1510637823,FR 1510637824,1510638079,RE 1510638080,1510638335,FR 1510638336,1510638591,RE 1510638592,1510639103,FR 1510639104,1510642687,RE 1510642688,1510642943,FR 1510642944,1510643455,RE 1510643456,1510643711,FR 1510643712,1510644991,RE 1510644992,1510645247,FR 1510645248,1510646783,RE 1510646784,1510647551,FR 1510647552,1510648063,RE 1510648064,1510648319,FR 1510648320,1510648575,RE 1510648576,1510648831,FR 1510648832,1510649855,RE 1510649856,1510650111,FR 1510650112,1510651135,RE 1510651136,1510651647,FR 1510651648,1510652927,RE 1510652928,1510653183,FR 1510653184,1510654463,RE 1510654464,1510654719,FR 1510654720,1510654975,RE 1510654976,1510655999,FR 1510656000,1510656255,RE 1510656256,1510656511,FR 1510656512,1510657535,RE 1510657536,1510658047,FR 1510658048,1510658303,RE 1510658304,1510658559,FR 1510658560,1510658815,RE 1510658816,1510659327,FR 1510659328,1510659583,RE 1510659584,1510659839,FR 1510659840,1510660095,RE 1510660096,1510660607,FR 1510660608,1510664447,RE 1510664448,1510664703,FR 1510664704,1510665983,RE 1510665984,1510666239,FR 1510666240,1510668031,RE 1510668032,1510668403,FR 1510668404,1510668404,RE 1510668405,1510669018,FR 1510669019,1510669019,RE 1510669020,1510669897,FR 1510669898,1510669898,RE 1510669899,1510670012,FR 1510670013,1510670013,RE 1510670014,1511981055,FR 1511981056,1511981567,GP 1511981568,1511981823,FR 1511981824,1511982335,GP 1511982336,1511982847,FR 1511982848,1511984127,GP 1511984128,1511984639,FR 1511984640,1511985151,GP 1511985152,1511985407,FR 1511985408,1511987199,GP 1511987200,1511987455,FR 1511987456,1511989759,GP 1511989760,1511990015,FR 1511990016,1511990271,GP 1511990272,1511990527,FR 1511990528,1511991039,GP 1511991040,1511991295,FR 1511991296,1511991807,GP 1511991808,1511992063,FR 1511992064,1511994111,GP 1511994112,1511994367,FR 1511994368,1511995135,GP 1511995136,1511995391,FR 1511995392,1511997439,GP 1511997440,1511998207,FR 1511998208,1511998719,MF 1511998720,1511999487,BL 1511999488,1512000767,MF 1512000768,1512001023,BL 1512001024,1512002559,FR 1512002560,1512003583,BL 1512003584,1512003839,FR 1512003840,1512004095,BL 1512004096,1512004351,MF 1512004352,1512004607,BL 1512004608,1512005119,MF 1512005120,1512005375,FR 1512005376,1512005631,MF 1512005632,1512006655,FR 1512006656,1512006911,BL 1512006912,1512007167,FR 1512007168,1512008447,BL 1512008448,1512008703,FR 1512008704,1512008959,MF 1512008960,1512009215,FR 1512009216,1512009471,BL 1512009472,1512010239,FR 1512010240,1512010495,MF 1512010496,1512010751,FR 1512010752,1512011263,MF 1512011264,1512011775,FR 1512011776,1512012287,MF 1512012288,1512012543,BL 1512012544,1512012799,FR 1512012800,1512013823,MF 1512013824,1512024831,GF 1512024832,1512025087,FR 1512025088,1512026111,GF 1512026112,1512026367,FR 1512026368,1512026879,GF 1512026880,1512027135,FR 1512027136,1512028159,GF 1512028160,1512028927,FR 1512028928,1512029695,GF 1512029696,1512029951,FR 1512029952,1512030207,GF 1512030208,1512046591,MQ 1512046592,1512309247,FR 1512309248,1512311039,GP 1512311040,1512311295,FR 1512311296,1512311807,GP 1512311808,1512312063,FR 1512312064,1512312575,GP 1512312576,1512312831,FR 1512312832,1512314111,GP 1512314112,1512314623,FR 1512314624,1512315135,GP 1512315136,1512315391,FR 1512315392,1512316415,GP 1512316416,1512316671,FR 1512316672,1512318207,GP 1512318208,1512318463,FR 1512318464,1512319487,GP 1512319488,1512319743,FR 1512319744,1512320255,GP 1512320256,1512320511,FR 1512320512,1512322559,GP 1512322560,1512322815,FR 1512322816,1512323071,GP 1512323072,1512323839,FR 1512323840,1512324607,GP 1512324608,1512324863,FR 1512324864,1512325631,GP 1512325632,1512325887,FR 1512325888,1512326143,GP 1512326144,1512326399,FR 1512326400,1512326655,GP 1512326656,1512326911,FR 1512326912,1512327679,GP 1512327680,1512327935,FR 1512327936,1512329727,GP 1512329728,1512330239,FR 1512330240,1512330751,GP 1512330752,1512331007,FR 1512331008,1512331263,GP 1512331264,1512331519,FR 1512331520,1512331775,GP 1512331776,1512332031,FR 1512332032,1512333567,GP 1512333568,1512335615,FR 1512335616,1512338175,GP 1512338176,1512338431,FR 1512338432,1512339967,GP 1512339968,1512340223,FR 1512340224,1512340479,GP 1512340480,1512340991,FR 1512340992,1512341759,GP 1512341760,1512342015,FR 1512342016,1512344319,GP 1512344320,1512344831,FR 1512344832,1512345343,GP 1512345344,1512345855,FR 1512345856,1512346623,GP 1512346624,1512347135,FR 1512347136,1512347647,GP 1512347648,1512347903,FR 1512347904,1512348415,GP 1512348416,1512348671,FR 1512348672,1512350463,GP 1512350464,1512350719,FR 1512350720,1512351999,GP 1512352000,1512352255,FR 1512352256,1512353279,GP 1512353280,1512353791,FR 1512353792,1512354047,GP 1512354048,1512354303,FR 1512354304,1512354815,GP 1512354816,1512355327,FR 1512355328,1512356607,GP 1512356608,1512357119,FR 1512357120,1512357375,GP 1512357376,1512357631,FR 1512357632,1512357887,GP 1512357888,1512358399,FR 1512358400,1512358655,GP 1512358656,1512359167,FR 1512359168,1512359423,GP 1512359424,1512360191,FR 1512360192,1512360959,GP 1512360960,1512361215,FR 1512361216,1512363007,GP 1512363008,1512363263,FR 1512363264,1512365055,GP 1512365056,1512365311,FR 1512365312,1512365823,GP 1512365824,1512366079,FR 1512366080,1512366335,GP 1512366336,1512366847,FR 1512366848,1512367103,GP 1512367104,1512368639,FR 1512368640,1512369151,GP 1512369152,1512369407,FR 1512369408,1512370441,GP 1512370442,1512370442,FR 1512370443,1512370687,GP 1512370688,1512370943,FR 1512370944,1512371199,GP 1512371200,1512371455,FR 1512371456,1512374271,GP 1512374272,1514143743,FR 1514143744,1514176511,SK 1514176512,1514471423,FR 1514471424,1514536959,ES 1514536960,1514602495,FR 1514602496,1514668031,ES 1514668032,1514799103,FR 1514799104,1514930175,ES 1514930176,1515002367,FR 1515002368,1515002623,ES 1515002624,1515030783,FR 1515030784,1515031039,ES 1515031040,1515035168,FR 1515035169,1515035169,ES 1515035170,1515051263,FR 1515051264,1515051519,ES 1515051520,1515052989,FR 1515052990,1515052990,ES 1515052991,1515057919,FR 1515057920,1515058175,ES 1515058176,1515059621,FR 1515059622,1515059622,ES 1515059623,1515467007,FR 1515467008,1515467263,ES 1515467264,1515467519,FR 1515467520,1515468031,US 1515468032,1515468287,ES 1515468288,1515468543,NL 1515468544,1515468799,DE 1515468800,1515469823,FR 1515469824,1515470079,DE 1515470080,1515470335,FR 1515470336,1515470847,US 1515470848,1515488511,FR 1515488512,1515489023,US 1515489024,1515489039,DE 1515489040,1515489055,FR 1515489056,1515489087,DE 1515489088,1515489151,FR 1515489152,1515489167,ES 1515489168,1515489535,FR 1515489536,1515489791,US 1515489792,1515491007,NL 1515491008,1518338047,FR 1518338048,1518370815,DE 1518370816,1518409727,NL 1518409728,1518411775,SE 1518411776,1518419967,NO 1518419968,1518436351,SE 1518436352,1518452735,NO 1518452736,1518460927,AT 1518460928,1518471167,NL 1518471168,1518472191,SE 1518472192,1518475263,LT 1518475264,1518476287,SE 1518476288,1518476799,EE 1518476800,1518477311,SE 1518477312,1518481407,EE 1518481408,1518489599,SE 1518489600,1518501887,NL 1518501888,1518503935,EE 1518503936,1518510079,LT 1518510080,1518516223,LV 1518516224,1518517247,SE 1518517248,1518518271,LV 1518518272,1518530559,SE 1518530560,1518534655,NO 1518534656,1518540543,SE 1518540544,1518540799,LT 1518540800,1518541479,SE 1518541480,1518541480,DE 1518541481,1518542847,SE 1518542848,1518551039,LT 1518551040,1518565375,NL 1518565376,1518567423,SE 1518567424,1518600191,LV 1518600192,1518633215,SE 1518633216,1518633471,NL 1518633472,1518635007,SE 1518635008,1518637055,NL 1518637056,1518641151,SE 1518641152,1518649343,NL 1518649344,1518723071,SE 1518723072,1518727167,EE 1518727168,1518731263,SE 1518731264,1518747647,DE 1518747648,1518772223,LT 1518772224,1518780415,NL 1518780416,1518796799,HR 1518796800,1518927871,DE 1518927872,1518944255,SE 1518944256,1518960639,NL 1518960640,1518961663,LT 1518961664,1518962175,EE 1518962176,1518962687,SE 1518962688,1518964735,NO 1518964736,1518966783,HR 1518966784,1518967807,SE 1518967808,1518977023,HR 1518977024,1518985215,NL 1518985216,1518989311,SE 1518989312,1518993152,NL 1518993153,1519190015,SE 1519190016,1519198207,NL 1519198208,1519200255,SE 1519200256,1519206399,EE 1519206400,1519208447,LV 1519208448,1519214591,SE 1519214592,1519222783,LV 1519222784,1519259647,SE 1519259648,1519260671,NL 1519260672,1519263743,SE 1519263744,1519290367,NL 1519290368,1519292415,SE 1519292416,1519294463,LT 1519294464,1519296511,SE 1519296512,1519304703,LT 1519304704,1519308799,NL 1519308800,1519312895,SE 1519312896,1519321087,LT 1519321088,1519337471,KZ 1519337472,1519358975,SE 1519358976,1519359231,KZ 1519359232,1519369215,SE 1519369216,1519369471,KZ 1519369472,1519394815,SE 1519394816,1519398911,HR 1519398912,1519403007,SE 1519403008,1519419391,NL 1519419392,1519452159,SE 1519452160,1519517695,NL 1519517696,1519583231,AT 1519583232,1519648767,IT 1519648768,1519714303,SA 1519714304,1519779839,NO 1519779840,1519910911,RU 1519910912,1519927295,GB 1519927296,1519927551,NL 1519927552,1519929855,GB 1519929856,1519930111,SE 1519930112,1519931391,GB 1519931392,1519934463,NL 1519934464,1519936191,GB 1519936192,1519936255,DK 1519936256,1519943679,GB 1519943680,1519976447,AT 1519976448,1520009215,DE 1520009216,1520041983,SY 1520041984,1520074751,RU 1520074752,1520107519,BG 1520107520,1520139767,GB 1520139768,1520139775,IE 1520139776,1520140287,GB 1520140288,1520173055,RU 1520173056,1520205823,PL 1520205824,1520230399,RU 1520230400,1520234495,NL 1520234496,1520271359,RU 1520271360,1520304127,SI 1520304128,1520435199,TR 1520435200,1521483775,ES 1521483776,1522008063,CZ 1522008064,1522139135,DK 1522139136,1522270207,DE 1522270208,1522401279,RU 1522401280,1522532351,EE 1522532352,1524629503,GB 1524629504,1525678079,SE 1525678080,1526726655,GB 1526726656,1527519999,DE 1527520000,1527520255,LU 1527520256,1531183103,DE 1531183104,1531445247,FR 1531445248,1531707391,AE 1531707392,1531969535,RU 1531969536,1532100607,IT 1532100608,1532199935,HU 1532199936,1532200959,RS 1532200960,1532231679,HU 1532231680,1532362751,GB 1532362752,1532493823,BE 1532493824,1532559359,FR 1532559360,1532624895,DE 1532624896,1532626943,ES 1532626944,1532631039,UA 1532631040,1532633087,SE 1532633088,1532635135,RU 1532635136,1532637183,NO 1532637184,1532639231,FI 1532639232,1532641279,PL 1532641280,1532643327,NO 1532643328,1532645375,PL 1532647424,1532649471,PL 1532649472,1532651519,FR 1532651520,1532653567,NO 1532653568,1532655615,PL 1532655616,1532657663,RO 1532657664,1532661759,IL 1532661760,1532665855,DE 1532665856,1532674047,PL 1532674048,1532682239,UA 1532682240,1532690431,LV 1532690432,1532755967,FR 1532755968,1532821503,BG 1532821504,1532887039,TR 1532887040,1532952575,PL 1532952576,1533018111,SE 1533018112,1533149183,DE 1533149184,1533280255,IR 1533280256,1533411327,DK 1533411328,1533413375,GB 1533413376,1533415423,DE 1533415424,1533417471,SA 1533417472,1533419519,NO 1533419520,1533421567,KW 1533421568,1533423615,NL 1533423616,1533425663,IT 1533425664,1533429759,GB 1533429760,1533431807,RU 1533431808,1533433855,IE 1533433856,1533435903,DK 1533435904,1533437951,CZ 1533437952,1533442047,PL 1533442048,1533444095,AE 1533444096,1533446143,IT 1533446144,1533448191,DE 1533448192,1533450239,KW 1533450240,1533452287,RU 1533452288,1533454335,TR 1533454336,1533456383,RS 1533456384,1533458431,UA 1533458432,1533460479,GB 1533460480,1533462527,CH 1533462528,1533464575,RU 1533464576,1533466623,NL 1533466624,1533468671,RU 1533468672,1533470719,RS 1533470720,1533472767,KW 1533472768,1533474815,ES 1533474816,1533476863,FR 1533476864,1533478911,IE 1533480960,1533483007,NL 1533483008,1533485055,AM 1533485056,1533486079,GB 1533486080,1533486335,SE 1533486336,1533486591,NO 1533486592,1533487103,GB 1533487104,1533489151,FR 1533489152,1533491199,ES 1533491200,1533493247,AM 1533493248,1533499391,RU 1533499392,1533501439,MT 1533501440,1533503487,LT 1533503488,1533505535,RU 1533505536,1533507583,DE 1533507584,1533509631,UA 1533509632,1533511679,GB 1533511680,1533513727,FR 1533513728,1533515775,KW 1533515776,1533517823,RU 1533517824,1533519871,CZ 1533519872,1533526015,GB 1533526016,1533532159,RU 1533532160,1533534207,GB 1533534208,1533536255,RU 1533536256,1533538303,FR 1533538304,1533540351,DE 1533540352,1533542399,AT 1533542400,1533607935,HU 1533607936,1533640703,LV 1533640704,1533659135,RU 1533659136,1533660159,LV 1533660160,1533661183,UA 1533661184,1533663231,SE 1533663232,1533665279,NL 1533665280,1533667327,GB 1533667328,1533669375,RU 1533669376,1533671423,DE 1533671424,1533673471,FI 1533673472,1533677567,DE 1533677568,1533679615,ES 1533679616,1533680127,PL 1533680128,1533680383,ES 1533680384,1533681663,PL 1533681664,1533689855,IQ 1533689856,1533698047,IR 1533698048,1533702143,JO 1533702144,1533704191,RU 1533704192,1533722623,DE 1533722624,1533724671,SE 1533724672,1533726719,RU 1533726720,1533728767,CY 1533728768,1533730815,FR 1533730816,1533732863,NL 1533732864,1533734911,RU 1533734912,1533739007,CZ 1533739008,1533739263,IR 1533739264,1533771775,RU 1533771776,1533804543,IR 1533804544,1533805567,RU 1533805568,1533806591,NL 1533806592,1533818879,RU 1533818880,1533819903,NL 1533819904,1533820927,RU 1533820928,1533837311,DE 1533837312,1533845503,IR 1533845504,1533847551,GB 1533847552,1533849599,RU 1533849600,1533851647,SE 1533851648,1533853695,CH 1533853696,1533874175,GB 1533874176,1533878271,DE 1533878272,1533880319,CZ 1533880320,1533882367,GB 1533882368,1533886463,IT 1533886464,1533894655,RU 1533894656,1533896703,ES 1533896704,1533900799,PT 1533900800,1533902847,FR 1533902848,1533911039,RU 1533911040,1533913087,ES 1533913088,1533915135,IT 1533915136,1533919231,NL 1533919232,1533921279,IT 1533921280,1533923327,RU 1533923328,1533925375,TR 1533925376,1533927423,AF 1533927424,1533929471,RU 1533929472,1533932799,GB 1533932800,1533933055,DE 1533933056,1534066687,GB 1534066688,1534328831,AT 1534328832,1534459903,ES 1534459904,1534590975,AT 1534590976,1534656511,HU 1534656512,1534711807,FR 1534711808,1534712831,BE 1534712832,1534714207,FR 1534714208,1534714223,NL 1534714224,1534714415,FR 1534714416,1534714431,ES 1534714432,1534714639,FR 1534714640,1534714655,IE 1534714656,1534714751,FR 1534714752,1534714767,DE 1534714768,1534715263,FR 1534715264,1534715267,IT 1534715268,1534715871,FR 1534715872,1534715875,ES 1534715876,1534715935,FR 1534715936,1534715939,NL 1534715940,1534716095,FR 1534716096,1534716099,DE 1534716100,1534716111,FR 1534716112,1534716115,DE 1534716116,1534716375,FR 1534716376,1534716379,ES 1534716380,1534717199,FR 1534717200,1534717215,GB 1534717216,1534717247,FR 1534717248,1534717251,ES 1534717252,1534717263,FR 1534717264,1534717267,ES 1534717268,1534717663,FR 1534717664,1534717679,GB 1534717680,1534717923,FR 1534717924,1534717927,IT 1534717928,1534718763,FR 1534718764,1534718767,ES 1534718768,1534719747,FR 1534719748,1534719751,ES 1534719752,1534719783,FR 1534719784,1534719787,ES 1534719788,1534720007,FR 1534720008,1534720011,IT 1534720012,1534720023,FR 1534720024,1534720027,PL 1534720028,1534720179,FR 1534720180,1534720183,ES 1534720184,1534720471,FR 1534720472,1534720479,DE 1534720480,1534722047,FR 1534722048,1534787583,RU 1534787584,1534791679,RO 1534791680,1534795775,RU 1534795776,1534803967,NO 1534803968,1534808063,LV 1534808064,1534812159,RU 1534812160,1534816255,CH 1534816256,1534820351,FR 1534820352,1534824447,FI 1534824448,1534828543,UA 1534828544,1534836735,PL 1534836736,1534840831,SE 1534840832,1534844927,PL 1534844928,1534849023,IE 1534849024,1534853119,NL 1534853120,1534918655,UA 1534918656,1534984191,GB 1534984192,1534988287,NO 1534988288,1535049727,ES 1535049728,1535115263,SK 1535115264,1535197183,AT 1535197184,1535203359,EE 1535203360,1535205375,SE 1535205376,1535213567,EE 1535213568,1535246335,SE 1535246336,1535311871,AT 1535311872,1535344639,NO 1535344640,1535350783,LV 1535350784,1535352831,HR 1535352832,1535361023,EE 1535361024,1535377407,NL 1535377408,1535442943,GR 1535442944,1535451135,RU 1535451136,1535459327,DK 1535459328,1535475711,AT 1535475712,1535508479,IR 1535508480,1535574015,BG 1535574016,1535578111,GB 1535578112,1535582207,LV 1535582208,1535590399,NO 1535590400,1535591423,CH 1535591424,1535591679,NL 1535591680,1535593471,CH 1535593472,1535593727,HK 1535593728,1535594495,CH 1535594496,1535598591,LV 1535598592,1535602687,IL 1535602688,1535606783,HU 1535606784,1535610879,NO 1535610880,1535614975,RU 1535614976,1535619071,AT 1535619072,1535623167,FR 1535623168,1535627263,KZ 1535627264,1535631359,RU 1535631360,1535635455,GB 1535635456,1535639551,AZ 1535639552,1535672319,GB 1535672320,1535737855,DE 1535737856,1535770623,HU 1535770624,1535803391,CH 1535803392,1535836159,GR 1535836160,1535868927,CZ 1535868928,1535901695,BG 1535901696,1535934463,GR 1535934464,1535967231,KW 1535967232,1535999999,AT 1536000000,1536032767,NL 1536032768,1536036863,LV 1536036864,1536040959,AT 1536040960,1536045055,GB 1536045056,1536049151,DE 1536049152,1536051199,IT 1536051200,1536057343,RU 1536057344,1536061439,IE 1536061440,1536065535,SE 1536065536,1536065791,GB 1536065792,1536066303,LU 1536066304,1536066815,NL 1536067072,1536067327,GB 1536067328,1536067583,RU 1536067584,1536067839,DK 1536067840,1536068095,PL 1536068096,1536068351,RU 1536068352,1536068607,HR 1536068864,1536069119,RU 1536069120,1536069375,TR 1536069376,1536069631,IT 1536069632,1536073727,RU 1536073728,1536077823,UA 1536077824,1536081919,SE 1536081920,1536086015,PL 1536086016,1536090111,ES 1536090112,1536094207,IE 1536094208,1536098303,NL 1536098304,1536114687,RU 1536114688,1536118783,GB 1536118784,1536122879,DE 1536122880,1536126975,AT 1536126976,1536131071,DK 1536131072,1536143359,RU 1536143360,1536147455,GB 1536147456,1536151551,IT 1536151552,1536155647,RS 1536155648,1536159743,IL 1536159744,1536163839,DE 1536163840,1536180223,SY 1536180224,1536196607,HU 1536196608,1536212991,RU 1536212992,1536229375,DK 1536229376,1536245759,SE 1536245760,1536262143,FI 1536262144,1536278527,PL 1536278528,1536294911,UA 1536294912,1536311295,RU 1536311296,1536319487,EE 1536319488,1536321535,ES 1536321536,1536325631,GB 1536325632,1536327679,CZ 1536327680,1536344063,HU 1536344064,1536360447,PL 1536360448,1536376831,RU 1536376832,1536393215,KZ 1536393216,1536409599,SA 1536409600,1536425983,HU 1536425984,1536442367,SK 1536442368,1536458751,RS 1536458752,1536475135,BG 1536475136,1536476545,NL 1536476546,1536476546,GB 1536476547,1536479231,NL 1536479232,1536483327,GB 1536483328,1536491519,NL 1536491520,1536499711,NO 1536499712,1536503807,SE 1536503808,1536507903,NO 1536507904,1536524287,RU 1536524288,1536540671,BY 1536540672,1536557055,PL 1536557056,1536573439,FI 1536573440,1536589823,RS 1536589824,1536614399,PL 1536614400,1536622591,DK 1536622592,1536626687,GB 1536626688,1536630783,DE 1536630784,1536634879,RU 1536634880,1536643071,FR 1536643072,1536647167,TR 1536647168,1536651263,ES 1536651264,1536655359,FR 1536655360,1536659455,GE 1536659456,1536663551,DE 1536663552,1536667647,SA 1536667648,1536675839,RU 1536675840,1536679935,GB 1536679936,1536684031,LB 1536684032,1536688127,GB 1536688128,1537212415,FI 1537212416,1538260991,FR 1538260992,1538785279,BE 1538785280,1538793471,NL 1538793472,1538797567,DE 1538797568,1538801663,NL 1538801664,1538809855,IR 1538809856,1538818047,GE 1538818048,1538826239,NO 1538826240,1538834431,DE 1538834432,1538842623,CY 1538842624,1538850815,RU 1538850816,1538859007,KZ 1538859008,1538875391,RU 1538875392,1538883583,RS 1538883584,1538891775,IR 1538891776,1538897919,GB 1538897920,1538899967,PL 1538899968,1538908159,SI 1538908160,1538916351,RU 1538916352,1538924543,GB 1538924544,1538932735,DE 1538932736,1538940927,NO 1538940928,1538949119,RU 1538949120,1538957311,AT 1538957312,1538964991,DE 1538964992,1538965503,GB 1538965504,1538973695,IR 1538973696,1538981887,JO 1538981888,1538990079,BY 1538990080,1538998271,CZ 1538998272,1539006463,AD 1539006464,1539014655,AL 1539014656,1539022847,RS 1539022848,1539031039,LT 1539031040,1539039231,IT 1539039232,1539047423,PL 1539047424,1539055615,IT 1539055616,1539063807,LV 1539063808,1539071999,FR 1539072000,1539080191,PL 1539080192,1539088383,UZ 1539088384,1539096575,RU 1539112960,1539115007,PL 1539115008,1539117055,AE 1539117056,1539123199,PL 1539123200,1539125247,SE 1539125248,1539127295,RU 1539127296,1539129343,PL 1539129344,1539131391,IE 1539131392,1539133439,PL 1539133440,1539135487,RU 1539135488,1539136255,GB 1539136256,1539136511,US 1539136512,1539137535,GB 1539137536,1539139583,NL 1539139584,1539141631,FR 1539141632,1539143679,RU 1539143680,1539145727,NO 1539145728,1539147775,UA 1539147776,1539149823,PL 1539149824,1539151871,GB 1539151872,1539153919,UA 1539153920,1539155967,RU 1539155968,1539160063,NO 1539162112,1539164159,DE 1539164160,1539166207,DK 1539166208,1539168255,FI 1539168256,1539170303,PL 1539170304,1539172351,NL 1539172352,1539176447,RU 1539176448,1539178495,PL 1539178496,1539186687,CH 1539186688,1539194879,LV 1539194880,1539203071,RU 1539203072,1539207167,NL 1539207168,1539211263,RU 1539211264,1539213311,CZ 1539213312,1539215359,SE 1539215360,1539219455,DE 1539219456,1539219967,GB 1539219968,1539221503,GG 1539221504,1539223551,FR 1539223552,1539225599,RU 1539225600,1539227647,HU 1539227648,1539229695,FI 1539229696,1539231743,DE 1539231744,1539233791,BE 1539233792,1539235839,LU 1539235840,1539237887,DE 1539237888,1539239935,RU 1539239936,1539244031,DE 1539244032,1539260415,BA 1539260416,1539276799,SK 1539276800,1539280895,SE 1539280896,1539284991,FR 1539284992,1539289087,TR 1539289088,1539293183,RU 1539293184,1539297279,AZ 1539297280,1539301375,BG 1539301376,1539309567,RU 1539309568,1539310591,PL 1539311616,1539312639,NL 1539312640,1539313663,DE 1539313664,1539314687,GB 1539314688,1539315711,RU 1539316736,1539317759,SE 1539317760,1539318783,CZ 1539318784,1539319807,NL 1539319808,1539320831,DE 1539320832,1539321855,UA 1539321856,1539322879,EG 1539322880,1539323903,DK 1539323904,1539324927,PL 1539324928,1539325951,RU 1539325952,1539326975,KG 1539326976,1539329023,RU 1539329024,1539330047,PL 1539330048,1539331071,RU 1539331072,1539332095,CZ 1539332096,1539333119,PL 1539333120,1539335167,RU 1539335168,1539336191,CH 1539336192,1539336703,UA 1539337216,1539338239,ES 1539338240,1539339263,SE 1539339264,1539340287,NL 1539340288,1539341311,PL 1539341312,1539342335,IT 1539342336,1539345407,UA 1539345408,1539346431,RO 1539346432,1539347455,PL 1539347456,1539348479,RU 1539348480,1539351551,UA 1539351552,1539352575,PL 1539352576,1539354623,RU 1539355648,1539357695,UA 1539357696,1539358719,RU 1539358720,1539359743,GB 1539359744,1539360767,PL 1539360768,1539361279,UA 1539361280,1539361791,DE 1539361792,1539362815,PL 1539362816,1539363839,GB 1539363840,1539364863,DK 1539364864,1539365887,UA 1539365888,1539366911,NO 1539366912,1539368959,PL 1539368960,1539369983,GB 1539369984,1539371007,BG 1539371008,1539373055,RU 1539373056,1539374079,PL 1539374080,1539375103,SE 1539375104,1539376127,NO 1539377152,1539378175,UA 1539378176,1539379199,PL 1539380224,1539381247,CH 1539381248,1539382271,RS 1539382272,1539383295,RO 1539383296,1539384319,UA 1539384320,1539385343,RU 1539385344,1539385855,PL 1539385856,1539386367,BE 1539386368,1539387391,IT 1539387392,1539388415,IL 1539388416,1539389439,PL 1539389440,1539389951,FR 1539389952,1539390463,RU 1539391488,1539392511,LV 1539392512,1539393535,UA 1539393536,1539393791,DE 1539393792,1539394047,PL 1539394048,1539394303,GI 1539394304,1539394559,RS 1539394560,1539396607,UA 1539396608,1539397631,PL 1539397632,1539398143,RU 1539398144,1539398655,PL 1539398656,1539399679,ES 1539399680,1539400703,PL 1539401728,1539402239,GB 1539402240,1539402751,FR 1539402752,1539403263,GB 1539403264,1539403775,RU 1539405824,1539406847,PL 1539406848,1539408895,UA 1539408896,1539409919,CZ 1539409920,1539410943,DK 1539410944,1539411967,RU 1539411968,1539412991,PL 1539412992,1539414015,RU 1539415040,1539416063,BG 1539416064,1539417087,PL 1539417088,1539418111,UA 1539418112,1539419135,RU 1539419136,1539420159,UA 1539420160,1539421183,RU 1539422208,1539423231,PL 1539423232,1539424255,IE 1539425280,1539426303,PL 1539426304,1539427327,BG 1539427328,1539428351,UA 1539428352,1539429375,PL 1539429376,1539434495,RU 1539434496,1539435519,GB 1539435520,1539437567,RU 1539437568,1539438591,GB 1539439616,1539440639,UA 1539441152,1539441663,RU 1539441664,1539442175,IL 1539442176,1539442687,DE 1539442688,1539443199,NL 1539443200,1539444223,RU 1539444736,1539445247,RU 1539445248,1539445759,PL 1539445760,1539446271,FI 1539446272,1539446783,SE 1539447296,1539447807,SE 1539447808,1539448831,RO 1539448832,1539449343,AT 1539449344,1539449855,UA 1539449856,1539450367,DK 1539450368,1539450879,SE 1539450880,1539451391,UA 1539451392,1539452415,RO 1539452416,1539452927,GB 1539452928,1539453439,CH 1539453440,1539453951,UA 1539454976,1539455487,UA 1539455488,1539455999,RU 1539456000,1539456511,FR 1539456512,1539457023,ES 1539457024,1539457535,RU 1539457536,1539458047,SE 1539458048,1539459071,GB 1539459072,1539459583,UA 1539459584,1539460095,GB 1539460096,1539460607,LV 1539460608,1539461631,UA 1539461632,1539462143,RS 1539462144,1539462655,DE 1539462656,1539463167,BE 1539463168,1539463679,UA 1539463680,1539464191,DE 1539464192,1539464703,RO 1539464704,1539465215,DK 1539465216,1539466751,FR 1539466752,1539467263,KW 1539467776,1539468287,PL 1539468288,1539468799,DE 1539468800,1539469823,RU 1539469824,1539470335,IL 1539470336,1539470847,GB 1539471360,1539471871,RU 1539471872,1539472383,PL 1539472896,1539473407,GB 1539473408,1539473919,FR 1539473920,1539474431,KW 1539474432,1539474943,DE 1539474944,1539475455,UA 1539475456,1539475967,NL 1539475968,1539476479,PL 1539476992,1539477503,IT 1539477504,1539478015,PL 1539478016,1539478527,CH 1539478528,1539479039,RO 1539479040,1539480063,GB 1539480064,1539480575,DK 1539480576,1539481087,PL 1539481088,1539481599,GB 1539481600,1539482111,RU 1539482112,1539482623,UA 1539482624,1539483135,RU 1539483648,1539484159,UA 1539484672,1539485695,RU 1539485696,1539485951,LV 1539485952,1539486207,RO 1539486208,1539486719,FR 1539486720,1539487231,DE 1539487744,1539488255,RU 1539488256,1539488767,SE 1539488768,1539489279,PL 1539489280,1539489791,RU 1539490816,1539491327,CH 1539491328,1539491839,PL 1539491840,1539492351,RU 1539492352,1539492863,BE 1539492864,1539493375,KR 1539493376,1539493887,RU 1539493888,1539494399,FR 1539494400,1539494911,PL 1539494912,1539495423,RU 1539495936,1539496447,RS 1539496448,1539496959,NL 1539496960,1539497471,GB 1539497472,1539497983,DE 1539497984,1539498495,NL 1539498496,1539499007,RU 1539499008,1539499519,PL 1539499520,1539500543,DE 1539500544,1539501055,RO 1539501056,1539501567,BE 1539501568,1539502079,UA 1539502592,1539503103,HR 1539503104,1539504127,RU 1539504128,1539504639,AT 1539504640,1539505151,UA 1539505152,1539505663,RU 1539505664,1539506175,AT 1539506176,1539506687,NL 1539506688,1539507199,UA 1539507200,1539508223,RO 1539508224,1539508735,NO 1539508736,1539509759,UA 1539509760,1539510271,RO 1539510272,1539510783,RU 1539510784,1539511295,LU 1539511296,1539511807,UA 1539511808,1539512319,RU 1539512320,1539512831,BG 1539512832,1539513343,PL 1539513344,1539513855,RO 1539513856,1539514367,RU 1539514368,1539514879,SE 1539514880,1539515391,ES 1539515392,1539515903,FR 1539515904,1539516415,RS 1539516416,1539516927,AT 1539516928,1539517439,PL 1539517440,1539517951,RO 1539517952,1539518463,PL 1539518464,1539518975,DE 1539519488,1539519999,UA 1539520000,1539520511,DE 1539520512,1539521023,PL 1539521024,1539521535,DK 1539521536,1539522047,RU 1539522048,1539522559,RO 1539523584,1539524095,UA 1539524096,1539524607,GB 1539524608,1539525119,FR 1539525120,1539525631,UA 1539525632,1539526143,SE 1539526144,1539526655,DE 1539526656,1539527167,NL 1539527168,1539527679,GB 1539527680,1539528191,RO 1539528192,1539528703,UA 1539528704,1539529215,SA 1539529216,1539529727,UA 1539529728,1539530239,PL 1539530240,1539530751,AT 1539530752,1539531263,UA 1539531264,1539531775,RO 1539531776,1539532799,RU 1539532800,1539533311,DE 1539533312,1539533823,CZ 1539533824,1539534335,PL 1539534336,1539534847,RU 1539534848,1539535359,GB 1539535360,1539535871,RU 1539535872,1539536383,AT 1539536384,1539536895,NL 1539536896,1539537407,UA 1539537408,1539537919,GB 1539537920,1539540479,RU 1539540480,1539540991,PL 1539540992,1539541503,RU 1539541504,1539542015,TR 1539542016,1539542527,DE 1539542528,1539543039,CH 1539543040,1539543551,RO 1539543552,1539544063,SI 1539544064,1539544575,RU 1539544576,1539545087,DE 1539545088,1539545599,GR 1539545600,1539546111,SE 1539546112,1539546623,UA 1539546624,1539547135,PL 1539547136,1539547647,NL 1539547648,1539548159,IL 1539548160,1539548671,FR 1539549184,1539549695,GB 1539549696,1539550207,RU 1539550208,1539550719,UA 1539551232,1539551743,RS 1539551744,1539552255,RU 1539552256,1539552767,RO 1539552768,1539553279,GB 1539553280,1539553791,UA 1539553792,1539554303,GB 1539554304,1539554815,CH 1539554816,1539555327,PL 1539555328,1539555839,GB 1539555840,1539556863,RO 1539556864,1539557375,AT 1539557376,1539557887,NL 1539557888,1539558399,CZ 1539558400,1539558911,RU 1539558912,1539559423,FR 1539559424,1539560447,RU 1539560960,1539561471,UA 1539561472,1539561983,RO 1539561984,1539563007,DE 1539563520,1539564031,SE 1539564032,1539564543,KZ 1539564544,1539565055,GB 1539565056,1539565567,UA 1539565568,1539566079,PL 1539566080,1539567103,NL 1539567104,1539567615,CH 1539567616,1539568127,DE 1539568128,1539568639,NL 1539568640,1539569151,UA 1539569152,1539569407,SE 1539569408,1539569663,EE 1539569664,1539570175,UA 1539570176,1539570687,PL 1539570688,1539571711,RU 1539571712,1539572735,UA 1539572736,1539573759,RU 1539573760,1539575807,PL 1539576832,1539577855,GB 1539577856,1539578879,RU 1539578880,1539579903,PL 1539579904,1539580927,RU 1539580928,1539581951,AM 1539582976,1539583999,RO 1539584000,1539585023,PL 1539585024,1539586047,UA 1539586048,1539587071,PL 1539587072,1539588095,UA 1539590144,1539591167,RU 1539591168,1539592191,UZ 1539592192,1539593215,UA 1539593216,1539594239,RU 1539594240,1539598335,UA 1539598336,1539599359,NL 1539599360,1539600383,PL 1539600384,1539601407,HU 1539601408,1539602431,GB 1539602432,1539603455,UA 1539603456,1539604479,BG 1539604480,1539605503,ES 1539605504,1539606527,DE 1539606528,1539607551,RU 1539607552,1539609599,DE 1539609600,1539610623,UA 1539610624,1539611647,RU 1539611648,1539614719,UA 1539614720,1539615743,NL 1539615744,1539616767,DK 1539616768,1539617791,UA 1539618816,1539619839,GB 1539619840,1539620863,RU 1539620864,1539622911,UA 1539623936,1539624959,DE 1539624960,1539625983,RU 1539625984,1539627007,PL 1539627008,1539628031,RU 1539629056,1539630079,BG 1539630080,1539631103,UA 1539632128,1539633151,RU 1539633152,1539634175,SE 1539634176,1539637247,RU 1539638272,1539639295,UA 1539639296,1539640319,RU 1539640320,1539641343,PL 1539641344,1539642367,UA 1539642368,1539643391,RU 1539643392,1539644415,UA 1539644416,1539645439,DE 1539645440,1539646463,GB 1539648512,1539649023,CY 1539649024,1539649535,LB 1539649536,1539650559,UA 1539650560,1539651583,RU 1539651584,1539652607,UA 1539652608,1539653631,IL 1539653632,1539654655,RU 1539654656,1539655679,UA 1539655680,1539656703,NL 1539656704,1539657727,RU 1539657728,1539658751,UA 1539658752,1539659775,FI 1539659776,1539660799,PL 1539660800,1539661823,GB 1539661824,1539662847,RU 1539662848,1539663871,IL 1539663872,1539664895,RU 1539664896,1539665919,BE 1539665920,1539666943,RU 1539666944,1539667967,CZ 1539668992,1539670015,RU 1539670016,1539672063,UA 1539672064,1539673087,FR 1539673088,1539674111,GB 1539674112,1539675135,UA 1539675136,1539677183,PL 1539677184,1539678207,UA 1539678208,1539679231,RU 1539679232,1539680255,FR 1539680256,1539681279,UA 1539681280,1539684351,RU 1539684352,1539685375,UA 1539685376,1539688447,RU 1539689472,1539690495,RU 1539690496,1539691519,FI 1539691520,1539692543,RU 1539692544,1539694591,UA 1539694592,1539695615,PL 1539695616,1539696639,GB 1539696640,1539697663,RU 1539697664,1539698687,UA 1539699712,1539700735,RO 1539700736,1539701759,DK 1539701760,1539702783,UA 1539702784,1539703039,SI 1539703040,1539703295,UA 1539703296,1539703551,DE 1539703552,1539703807,GB 1539703808,1539704063,UA 1539704064,1539704319,IL 1539704320,1539704575,CH 1539704576,1539704831,HU 1539704832,1539705087,CH 1539705088,1539705343,GB 1539705344,1539705599,UA 1539705600,1539706111,CH 1539706112,1539706367,GB 1539706368,1539706623,RU 1539706624,1539707135,PL 1539707136,1539707391,LT 1539707392,1539707647,GB 1539707648,1539707903,AE 1539707904,1539708159,PL 1539708160,1539708415,DE 1539708416,1539708671,GB 1539708672,1539708927,RO 1539708928,1539709183,IE 1539709184,1539709439,AT 1539709440,1539709695,BE 1539709696,1539709951,NL 1539710208,1539710463,GB 1539710464,1539710719,FR 1539710720,1539710975,UA 1539710976,1539711231,DE 1539711232,1539711487,RU 1539711488,1539711743,UA 1539711744,1539711999,DE 1539712000,1539712255,UA 1539712512,1539713023,RU 1539713024,1539713279,UA 1539713536,1539713791,DK 1539713792,1539714047,DE 1539714048,1539714303,FR 1539714304,1539714559,AT 1539714560,1539714815,RU 1539714816,1539715071,PT 1539715328,1539715583,TR 1539715584,1539715839,UA 1539715840,1539716095,RU 1539716096,1539716351,SI 1539716352,1539716607,PL 1539716608,1539716863,RU 1539716864,1539717375,PL 1539717376,1539717631,DE 1539717632,1539717887,CH 1539717888,1539718143,MK 1539718144,1539718399,DE 1539718400,1539718655,TR 1539718656,1539718911,SA 1539718912,1539719167,KZ 1539719168,1539719423,IE 1539719424,1539719679,PL 1539719680,1539720191,DE 1539720192,1539720703,RU 1539720704,1539720959,IL 1539720960,1539721215,RU 1539721216,1539721727,CH 1539721728,1539721983,PL 1539721984,1539722239,RU 1539722240,1539722495,PL 1539722752,1539723007,DE 1539723008,1539723263,CH 1539723264,1539723519,PL 1539723520,1539723775,GB 1539723776,1539724031,DE 1539724032,1539724287,UA 1539724288,1539724543,IT 1539724544,1539724799,RU 1539724800,1539725055,DE 1539725056,1539725311,NL 1539725312,1539725567,FR 1539725568,1539725823,PL 1539725824,1539726079,PT 1539726080,1539726335,LV 1539726336,1539726591,SE 1539726592,1539726847,AT 1539726848,1539727103,PL 1539727104,1539727359,SE 1539727360,1539727615,SI 1539727616,1539727871,PL 1539727872,1539728127,RU 1539728128,1539728383,GB 1539728384,1539728639,PL 1539728640,1539728895,UA 1539728896,1539729151,SA 1539729152,1539729407,NL 1539729408,1539729663,RU 1539729664,1539729919,FR 1539729920,1539730175,NL 1539730176,1539730431,GB 1539730944,1539731455,PL 1539731456,1539731711,SI 1539731712,1539732223,DE 1539732480,1539732735,UA 1539732736,1539732991,DK 1539732992,1539733247,PL 1539733248,1539733503,BG 1539733504,1539733759,FI 1539733760,1539734015,PL 1539734016,1539734271,FR 1539734528,1539734783,TR 1539734784,1539735039,FR 1539735040,1539735295,BE 1539735296,1539735551,RU 1539735552,1539735807,AT 1539735808,1539736063,IL 1539736064,1539736319,RU 1539736320,1539736575,HU 1539736576,1539736831,BG 1539736832,1539737087,UA 1539737088,1539737343,KW 1539737344,1539737599,SE 1539737600,1539737855,RO 1539737856,1539738111,DE 1539738112,1539738367,DK 1539738368,1539738623,DE 1539738624,1539738879,UA 1539738880,1539739135,NL 1539739136,1539739391,AT 1539739392,1539739647,UA 1539739648,1539739903,DK 1539739904,1539740415,PL 1539740672,1539740927,AT 1539740928,1539741183,RU 1539741184,1539741439,PL 1539741440,1539741695,NL 1539741696,1539741951,DE 1539741952,1539742207,UA 1539742208,1539742463,CH 1539742464,1539742719,RU 1539742720,1539742975,LV 1539742976,1539743231,DE 1539743488,1539743743,FR 1539743744,1539743999,RO 1539744000,1539744255,PL 1539744256,1539744511,RO 1539744512,1539744767,DE 1539744768,1539745023,SE 1539745024,1539745279,GB 1539745280,1539745535,GI 1539745792,1539746303,DK 1539746560,1539746815,RU 1539746816,1539747071,DK 1539747072,1539747327,CH 1539747328,1539747583,NL 1539747584,1539747839,UA 1539747840,1539748095,NO 1539748096,1539748351,PL 1539748352,1539748607,NL 1539748608,1539748863,PL 1539748864,1539749119,GB 1539749120,1539749375,BG 1539749376,1539749631,PT 1539749632,1539749887,GR 1539749888,1539750143,RU 1539750400,1539750655,PL 1539750656,1539750911,DE 1539750912,1539751167,UA 1539751168,1539751423,DE 1539751424,1539751679,SI 1539751680,1539751935,FR 1539752192,1539752447,SE 1539752448,1539752703,PL 1539752704,1539752959,AT 1539753216,1539753471,DE 1539753472,1539753727,HU 1539753728,1539754239,FR 1539754240,1539754495,NO 1539754496,1539754751,SE 1539754752,1539755007,BE 1539755008,1539755263,DK 1539755264,1539755519,IL 1539755520,1539755775,EE 1539755776,1539756031,MT 1539756288,1539756543,PL 1539756800,1539757055,BE 1539757056,1539757567,RU 1539757568,1539757823,SI 1539757824,1539758079,UA 1539758080,1539758335,HR 1539758336,1539758591,PL 1539758848,1539759103,BA 1539759360,1539759615,RU 1539759616,1539759871,PL 1539759872,1539760127,SE 1539760128,1539760383,DE 1539760384,1539760639,RU 1539760640,1539760895,PL 1539760896,1539761151,DK 1539761152,1539761407,DE 1539761408,1539761663,CH 1539761920,1539762175,RU 1539762176,1539762431,PL 1539762432,1539762687,UA 1539762688,1539762943,NL 1539762944,1539763199,UA 1539763200,1539763455,MD 1539763456,1539763711,DK 1539763712,1539763967,DE 1539763968,1539764223,PT 1539764224,1539764479,AT 1539764480,1539764735,GB 1539764736,1539764991,DE 1539764992,1539765247,BE 1539765248,1539765503,GB 1539765504,1539766015,PL 1539766016,1539766271,UA 1539766272,1539766527,PL 1539766528,1539766783,UA 1539766784,1539767039,DE 1539767040,1539767295,SA 1539767296,1539767551,DK 1539767552,1539767807,DE 1539768064,1539768319,GB 1539768320,1539768575,FR 1539768576,1539768831,GB 1539768832,1539769087,IT 1539769088,1539769343,BE 1539769344,1539769599,RU 1539769600,1539769855,AT 1539769856,1539770111,FR 1539770112,1539770367,GR 1539770368,1539770623,DE 1539770880,1539771135,RU 1539771136,1539771391,FR 1539771392,1539771647,PL 1539771648,1539771903,UA 1539771904,1539772159,RU 1539772160,1539772415,BE 1539772416,1539772671,RU 1539772672,1539772927,RS 1539773184,1539773439,GB 1539773440,1539773695,KZ 1539773696,1539773951,DE 1539773952,1539774207,PL 1539774208,1539774463,SI 1539774464,1539774719,GB 1539774720,1539774975,PL 1539774976,1539775231,RU 1539775488,1539775743,UA 1539775744,1539775999,IL 1539776256,1539776511,SK 1539776768,1539777023,UA 1539777024,1539777279,RU 1539777280,1539777535,UA 1539777536,1539777791,BG 1539777792,1539778047,UA 1539778048,1539778303,AM 1539778304,1539778559,LB 1539778560,1539778815,RU 1539778816,1539779071,RO 1539779328,1539779583,CH 1539779840,1539780095,NL 1539780096,1539780351,RU 1539780608,1539780863,PL 1539780864,1539781119,RO 1539781120,1539781375,NL 1539781376,1539781631,PL 1539781632,1539781887,HU 1539781888,1539782143,IL 1539782144,1539782399,UA 1539782400,1539782655,LT 1539782656,1539782911,GI 1539782912,1539783167,PL 1539783168,1539783679,NL 1539783680,1539783935,DE 1539783936,1539784191,SI 1539784192,1539784447,RU 1539784448,1539784703,NO 1539784704,1539784959,SE 1539784960,1539785215,DE 1539785216,1539785471,CH 1539785472,1539785727,RU 1539785728,1539785983,SE 1539785984,1539786239,IL 1539786240,1539786495,AT 1539786496,1539786751,GB 1539786752,1539787007,HU 1539787008,1539787263,TR 1539787264,1539787519,IE 1539787520,1539787775,DE 1539787776,1539788031,CH 1539788032,1539788287,HR 1539788288,1539788543,GB 1539788544,1539788799,HR 1539788800,1539789055,RU 1539789568,1539789823,DE 1539789824,1539790079,NL 1539790080,1539790335,CH 1539790336,1539790591,LV 1539790848,1539791103,DE 1539791104,1539791359,PL 1539791616,1539792383,UA 1539792384,1539792639,IL 1539792640,1539792895,PL 1539792896,1539793151,GR 1539793152,1539793407,PL 1539793408,1539793663,CH 1539793664,1539794175,IL 1539794176,1539794431,PL 1539794688,1539794943,FR 1539794944,1539795199,RO 1539795200,1539795455,PL 1539795456,1539795711,UA 1539795712,1539795967,SA 1539796224,1539796479,MC 1539796480,1539796735,GB 1539796736,1539796991,TR 1539796992,1539797247,UA 1539797248,1539797503,DK 1539797504,1539797759,RU 1539797760,1539798015,UA 1539798016,1539798271,HU 1539798272,1539798527,PL 1539798528,1539798783,GB 1539798784,1539799039,IL 1539799040,1539799295,ES 1539799296,1539799551,DK 1539799552,1539799807,ES 1539800064,1539800319,SI 1539800320,1539800575,GB 1539800576,1539800831,LV 1539800832,1539801087,PL 1539801088,1539801343,BG 1539801344,1539801855,GB 1539801856,1539802111,SI 1539802112,1539802367,PL 1539802368,1539802623,RO 1539802624,1539802879,IS 1539802880,1539803135,NL 1539803136,1539803391,GB 1539803392,1539803647,NL 1539803648,1539804159,UA 1539804160,1539804671,PL 1539804672,1539804927,SI 1539804928,1539805439,UA 1539805440,1539805695,AT 1539805696,1539805951,CH 1539806208,1539806463,FI 1539806464,1539806719,RU 1539806720,1539806975,BG 1539806976,1539807231,GB 1539807232,1539807487,FR 1539807488,1539807743,RU 1539807744,1539807999,GB 1539808000,1539808255,HU 1539808256,1539808511,RU 1539808512,1539808767,GB 1539808768,1539809023,DE 1539809024,1539809279,GB 1539809536,1539809791,SI 1539809792,1539810047,DE 1539810304,1539810559,CZ 1539810560,1539810815,DE 1539810816,1539811071,TR 1539811072,1539811327,NL 1539811584,1539811839,DE 1539811840,1539812095,IT 1539812096,1539812351,RU 1539812608,1539812863,IT 1539812864,1539813119,RU 1539813120,1539813375,AT 1539813376,1539813631,PL 1539813632,1539813887,NL 1539813888,1539814143,RU 1539814400,1539814911,GB 1539814912,1539815167,UA 1539815168,1539815423,GB 1539815936,1539816191,CH 1539816192,1539816447,SA 1539816448,1539816703,UA 1539816704,1539816959,RU 1539816960,1539817215,DK 1539817216,1539817471,TR 1539817472,1539817727,DE 1539817984,1539818239,UA 1539818240,1539818495,NO 1539818496,1539819007,RU 1539819008,1539819263,CH 1539819264,1539819519,RO 1539819520,1539819775,AT 1539819776,1539820031,SI 1539820032,1539820287,IL 1539820288,1539820543,PL 1539820544,1539820799,ES 1539820800,1539821055,RU 1539821056,1539821311,UA 1539821312,1539821567,CZ 1539821568,1539821823,DK 1539821824,1539822079,DE 1539822080,1539822335,RO 1539822592,1539822847,GB 1539822848,1539823103,IE 1539823104,1539823359,DE 1539823360,1539823615,CY 1539823616,1539823871,RO 1539823872,1539824127,DK 1539824128,1539824383,CH 1539824384,1539824639,NL 1539824640,1539824895,HU 1539824896,1539825151,RU 1539825152,1539825407,UA 1539825408,1539825919,RU 1539825920,1539826175,DE 1539826176,1539826431,AM 1539826432,1539826687,BE 1539826688,1539826943,CH 1539826944,1539827199,RU 1539827200,1539827455,ES 1539827456,1539827711,MK 1539827712,1539827967,RU 1539827968,1539828479,FR 1539828480,1539828735,SI 1539828736,1539828991,NL 1539828992,1539829247,BG 1539829248,1539829503,SE 1539829504,1539829759,DE 1539829760,1539830015,PL 1539830016,1539830271,DE 1539830272,1539830527,FR 1539830528,1539830783,RO 1539830784,1539831039,RU 1539831040,1539831295,UA 1539831296,1539831551,PL 1539831552,1539831807,DE 1539832064,1539832319,GB 1539832320,1539832575,PL 1539832576,1539832831,RU 1539832832,1539833087,GB 1539833088,1539833343,RU 1539833344,1539833855,FR 1539833856,1539837951,UA 1539837952,1539838975,NL 1539838976,1539839999,GR 1539840000,1539841023,PL 1539841024,1539842047,RU 1539842048,1539844095,PL 1539844096,1539846143,UA 1539846144,1539847167,NL 1539847168,1539849471,UA 1539849472,1539849727,GB 1539849728,1539850239,RU 1539850240,1539851263,LV 1539851264,1539852287,PL 1539852288,1539853311,UA 1539853312,1539854335,PL 1539854336,1539855103,UA 1539855104,1539855231,US 1539855232,1539855359,UA 1539855360,1539856383,RU 1539857408,1539858431,PL 1539858432,1539859455,RO 1539860480,1539861503,PL 1539861504,1539862527,DE 1539862528,1539863551,UA 1539863552,1539864575,ES 1539864576,1539865599,RO 1539865600,1539866623,UA 1539866624,1539867647,IT 1539867648,1539868671,RO 1539868672,1539869695,RU 1539869696,1539870719,ES 1539870720,1539871743,IL 1539872768,1539873791,SE 1539873792,1539875839,UA 1539875840,1539876863,RU 1539876864,1539877887,ES 1539877888,1539878911,PL 1539879936,1539880959,UA 1539880960,1539881983,PL 1539883008,1539884031,RS 1539884032,1539885055,MT 1539885056,1539886079,UA 1539886080,1539887103,FR 1539887104,1539888127,IT 1539888128,1539889151,UA 1539889152,1539890175,RU 1539890176,1539891199,UA 1539891200,1539893247,RU 1539893248,1539894271,UA 1539894272,1539895295,PL 1539897344,1539898367,UA 1539898368,1539899391,CZ 1539899392,1539900415,RU 1539901440,1539902463,RU 1539902464,1539903487,LV 1539903488,1539904511,PL 1539904512,1539905535,CZ 1539905536,1539906559,UA 1539908608,1539909631,UA 1539909632,1539910655,RU 1539910656,1539911679,PL 1539911680,1539913727,RU 1539913728,1539914751,CH 1539914752,1539915775,SE 1539916800,1539917823,UA 1539917824,1539918847,RU 1539918848,1539920895,RO 1539920896,1539921919,UA 1539921920,1539922943,PL 1539922944,1539923967,SE 1539923968,1539924991,RU 1539924992,1539926015,DE 1539927040,1539928063,UA 1539928064,1539930111,RU 1539930112,1539931135,PL 1539932160,1539933183,DE 1539933184,1539934207,ES 1539934208,1539935231,RS 1539936256,1539937279,UA 1539937280,1539938303,CH 1539938304,1539939327,PL 1539939328,1539940351,UA 1539940352,1539941375,GB 1539941376,1539942399,NL 1539942400,1539943423,UA 1539943424,1539944447,BG 1539944448,1539946495,UA 1539946496,1539947519,JE 1539947520,1539948543,UA 1539948544,1539949567,RO 1539950592,1539950847,GB 1539950848,1539951103,RU 1539951104,1539951615,UA 1539951616,1539953663,RU 1539953664,1539954175,AT 1539954176,1539954687,KZ 1539954688,1539956735,RO 1539956736,1539957759,UA 1539957760,1539958783,RU 1539958784,1539960063,UA 1539960064,1539960831,RU 1539960832,1539962879,UA 1539962880,1539964927,RU 1539964928,1539965951,UA 1539965952,1539966975,RU 1539966976,1539967999,UA 1539968000,1539972095,RU 1539974144,1539975167,RU 1539975168,1539976191,DE 1539976192,1539977215,RU 1539977216,1539978239,DE 1539978240,1539979263,CZ 1539979264,1539980287,UA 1539980288,1539981311,VG 1539981312,1539982335,SI 1539982336,1539983359,RU 1539983360,1539984383,UA 1539984384,1539985407,RU 1539985408,1539986431,SE 1539986432,1539987455,RU 1539987456,1539988479,RO 1539988480,1539990527,RU 1539990528,1539991551,PL 1539991552,1539993599,UA 1539993600,1539994623,FI 1539994624,1539995647,AT 1539995648,1539996671,CH 1539996672,1539997695,PL 1539997696,1539999743,UA 1539999744,1540000767,GB 1540000768,1540001791,RU 1540001792,1540002815,UA 1540002816,1540003839,RU 1540003840,1540004863,PL 1540004864,1540005887,SE 1540005888,1540006911,UA 1540006912,1540007935,RU 1540007936,1540008959,IL 1540008960,1540011007,PL 1540011008,1540014079,RU 1540014080,1540015103,PL 1540015104,1540018175,RU 1540018176,1540020223,UA 1540020224,1540022271,RU 1540022272,1540023295,GB 1540023296,1540024319,PL 1540024320,1540025343,RU 1540025344,1540026367,GB 1540026368,1540027391,UA 1540029440,1540031487,RU 1540031488,1540032511,UA 1540032512,1540033535,RU 1540033536,1540034559,UA 1540034560,1540035583,PL 1540035584,1540036607,RU 1540036608,1540037631,UA 1540037632,1540038655,EE 1540038656,1540039679,FR 1540039680,1540040703,RU 1540040704,1540041727,SE 1540041728,1540042751,RU 1540042752,1540043775,UA 1540043776,1540044799,PL 1540044800,1540045823,GB 1540045824,1540046847,UA 1540046848,1540047871,RU 1540047872,1540048895,LV 1540048896,1540049919,GB 1540050944,1540052991,RU 1540052992,1540054015,UA 1540055040,1540056063,NO 1540057088,1540057343,PL 1540057344,1540057599,RU 1540057600,1540057855,US 1540057856,1540058111,UA 1540058112,1540059135,DE 1540059136,1540060159,UA 1540060160,1540061183,NO 1540062208,1540063231,RU 1540063232,1540064255,NL 1540064256,1540065279,PL 1540065280,1540068351,UA 1540068352,1540069375,FR 1540069376,1540070399,RU 1540070400,1540071423,PL 1540071424,1540072447,SE 1540072448,1540073471,UA 1540073472,1540074495,RU 1540074496,1540075519,UZ 1540075520,1540077567,RU 1540077568,1540078591,FR 1540078592,1540081663,RU 1540081664,1540082687,DE 1540082688,1540083711,NO 1540083712,1540084735,RU 1540084736,1540085759,NL 1540085760,1540087807,PL 1540087808,1540088831,RU 1540089856,1540092927,RU 1540092928,1540094975,PL 1540094976,1540095999,RU 1540096000,1540097023,SE 1540097024,1540099071,DE 1540099072,1540099583,UA 1540099584,1540099711,US 1540099712,1540099839,UA 1540099840,1540103167,RU 1540103168,1540105215,DE 1540105216,1540106239,UA 1540110336,1540111359,RU 1540111360,1540112383,UA 1540112384,1540113407,LV 1540113408,1540115455,RU 1540115456,1540116479,UA 1540116480,1540117503,CH 1540117504,1540118527,UA 1540118528,1540119551,PL 1540119552,1540120575,UA 1540120576,1540124671,RU 1540124672,1540125695,UA 1540125696,1540126719,FR 1540126720,1540127743,UA 1540127744,1540128767,GB 1540128768,1540129791,RU 1540129792,1540130815,UA 1540130816,1540131839,RU 1540131840,1540132863,PL 1540132864,1540134911,RU 1540134912,1540135935,PL 1540135936,1540136959,BG 1540136960,1540137983,PL 1540137984,1540139007,RU 1540139008,1540140031,DE 1540140032,1540141055,GB 1540141056,1540142079,RU 1540142080,1540143103,UA 1540143104,1540144127,RU 1540144128,1540145151,AM 1540145152,1540146175,AT 1540146176,1540147199,UA 1540147200,1540148223,RU 1540148224,1540149247,PL 1540149248,1540150271,GB 1540150272,1540151295,UA 1540151296,1540152319,AT 1540153344,1540156415,RU 1540156416,1540157439,UZ 1540157440,1540158463,RU 1540158464,1540159487,GB 1540159488,1540160511,UA 1540160512,1540162559,RU 1540162560,1540163583,UA 1540163584,1540164607,RU 1540164608,1540165631,DE 1540165632,1540166655,UA 1540166656,1540167679,PL 1540167680,1540168703,RU 1540168704,1540169727,DE 1540169728,1540170751,NL 1540170752,1540171775,DE 1540171776,1540172799,GB 1540172800,1540173823,RU 1540173824,1540174847,KG 1540174848,1540175871,RU 1540175872,1540176895,DE 1540176896,1540177919,SE 1540177920,1540178943,UA 1540178944,1540179967,BA 1540179968,1540180991,PL 1540180992,1540182015,DE 1540182016,1540183039,IT 1540183040,1540184063,RU 1540184064,1540185087,PL 1540185088,1540186111,RU 1540186112,1540187135,NL 1540187136,1540188159,US 1540190208,1540191231,PT 1540191232,1540192255,FR 1540192256,1540195327,RU 1540195328,1540198399,AM 1540198400,1540199423,RU 1540199424,1540200447,CH 1540200448,1540201471,IL 1540201472,1540202495,UA 1540202496,1540203519,RU 1540203520,1540204543,UA 1540204544,1540205567,RU 1540205568,1540206591,DE 1540206592,1540208639,RU 1540208640,1540209663,NO 1540210688,1540211455,NL 1540211456,1540211711,CZ 1540212736,1540213759,RU 1540213760,1540214783,UA 1540214784,1540215807,RU 1540215808,1540216831,NL 1540216832,1540217855,UA 1540217856,1540218879,GB 1540218880,1540219903,RU 1540219904,1540220927,PL 1540220928,1540221951,US 1540221952,1540223999,RU 1540224000,1540225023,PL 1540225024,1540226047,GB 1540226048,1540227071,RU 1540227072,1540227583,GB 1540227584,1540228095,RU 1540228096,1540228607,UA 1540228608,1540229119,PL 1540229120,1540229631,AT 1540229632,1540230143,NL 1540230144,1540232191,RU 1540232192,1540232703,LU 1540232704,1540233215,RU 1540233216,1540233727,CH 1540233728,1540234239,PL 1540234240,1540234751,DE 1540234752,1540235775,UA 1540235776,1540236287,NO 1540236288,1540236799,RO 1540236800,1540237311,PL 1540237312,1540238847,RO 1540238848,1540239359,DE 1540239360,1540239871,UA 1540239872,1540240383,FR 1540240384,1540240895,CH 1540240896,1540242431,RU 1540242432,1540242943,DE 1540242944,1540243455,RU 1540243456,1540243967,PL 1540243968,1540244479,RU 1540244992,1540245503,DE 1540245504,1540246015,RU 1540246016,1540246527,IT 1540246528,1540247551,RO 1540247552,1540248063,NL 1540248064,1540248575,RO 1540248576,1540249087,GB 1540249088,1540249599,PL 1540249600,1540250111,KZ 1540250112,1540250367,PL 1540250368,1540250623,CZ 1540251136,1540251647,GB 1540251648,1540252159,PL 1540252160,1540252671,DE 1540252672,1540253183,RU 1540253184,1540253695,AT 1540253696,1540254207,CH 1540254208,1540254719,RU 1540254720,1540255231,PL 1540255232,1540255743,UA 1540255744,1540256255,AT 1540256256,1540256767,PL 1540256768,1540257279,RU 1540257280,1540257791,GB 1540257792,1540258303,RU 1540258304,1540258815,IR 1540258816,1540259327,UA 1540259328,1540259839,RU 1540259840,1540260351,IT 1540260352,1540260863,RU 1540260864,1540261375,LT 1540261376,1540261887,SA 1540261888,1540262399,NL 1540262400,1540262911,BG 1540262912,1540263423,RO 1540263424,1540263935,DE 1540263936,1540264447,GB 1540264448,1540265983,RU 1540265984,1540266495,DE 1540266496,1540267007,PL 1540267008,1540267519,FR 1540267520,1540268543,RO 1540268544,1540269055,RU 1540269056,1540269567,DK 1540269568,1540270079,RU 1540270080,1540270591,GB 1540270592,1540271103,IL 1540271104,1540271615,PL 1540271616,1540272127,SE 1540272128,1540272639,GB 1540272640,1540273663,PL 1540273664,1540274175,GB 1540274176,1540274687,DE 1540274688,1540275199,UA 1540275200,1540275711,DE 1540275712,1540276223,GR 1540276224,1540276735,AT 1540276736,1540277247,RO 1540277248,1540277759,RU 1540277760,1540278271,FR 1540278272,1540278783,UA 1540278784,1540279807,RU 1540279808,1540280319,RO 1540280320,1540280831,MD 1540280832,1540281343,PL 1540281344,1540281855,UA 1540281856,1540282367,DE 1540282368,1540282879,RU 1540282880,1540283391,UA 1540283392,1540284415,RU 1540284416,1540284927,AT 1540284928,1540285439,UA 1540285440,1540285951,DE 1540285952,1540286463,RU 1540286464,1540286719,GB 1540286720,1540286975,NL 1540286976,1540287487,GB 1540287488,1540288511,AT 1540288512,1540289535,RU 1540289536,1540290047,PL 1540290048,1540290559,NL 1540290560,1540291071,RU 1540291072,1540291583,BE 1540291584,1540292095,UA 1540292096,1540292607,RU 1540293120,1540293631,DK 1540293632,1540295167,UA 1540295168,1540295679,PL 1540296192,1540296703,PL 1540296704,1540297215,DE 1540297216,1540298239,FR 1540298240,1540298751,HR 1540298752,1540299263,RU 1540299264,1540299775,UA 1540299776,1540300287,KG 1540300288,1540300799,RU 1540300800,1540301311,DK 1540301312,1540301823,IL 1540301824,1540302847,GB 1540302848,1540303871,RU 1540303872,1540304895,UA 1540304896,1540305407,PL 1540305408,1540305919,GB 1540305920,1540306431,PL 1540306432,1540306943,UA 1540306944,1540307455,GB 1540307456,1540307967,RU 1540307968,1540308479,UA 1540308480,1540308991,RS 1540308992,1540309503,PL 1540309504,1540310015,UA 1540310016,1540310527,PL 1540311040,1540313087,RU 1540313088,1540313599,SE 1540313600,1540315135,RU 1540315136,1540315647,UA 1540315648,1540316159,IL 1540316160,1540316671,DE 1540316672,1540317183,RO 1540317696,1540318207,UA 1540318208,1540318719,RU 1540318720,1540319231,RO 1540319232,1540320255,UA 1540320768,1540321279,GB 1540321280,1540321791,SE 1540321792,1540322303,RU 1540322304,1540322815,UA 1540322816,1540323327,DE 1540323328,1540323839,RO 1540323840,1540324351,UA 1540324352,1540324863,RO 1540324864,1540325375,PL 1540325376,1540325887,DE 1540325888,1540326399,LI 1540326400,1540326911,RU 1540326912,1540327423,AT 1540327424,1540327935,RU 1540327936,1540328447,IR 1540328448,1540329983,RU 1540329984,1540330495,UA 1540330496,1540331007,PL 1540331008,1540331519,IT 1540331520,1540332031,GB 1540332544,1540333055,PL 1540333056,1540333567,NO 1540333568,1540334079,RO 1540334080,1540334591,DE 1540334592,1540335103,RU 1540335104,1540336127,PL 1540336128,1540336639,RU 1540337664,1540338175,FR 1540338688,1540339199,RU 1540339200,1540339711,UA 1540339712,1540340735,PL 1540340736,1540341247,CZ 1540341248,1540341759,BG 1540341760,1540342271,GB 1540342272,1540342783,UA 1540343296,1540343807,GB 1540343808,1540344831,PL 1540344832,1540345343,UA 1540345344,1540345855,IL 1540345856,1540346367,FR 1540346368,1540346879,UA 1540346880,1540347391,GB 1540347392,1540347903,DK 1540347904,1540348415,RO 1540348416,1540348927,UA 1540348928,1540349439,GB 1540349952,1540350463,UA 1540350464,1540350975,NO 1540350976,1540351487,DK 1540352000,1540352511,NL 1540353024,1540353535,GR 1540353536,1540354047,RU 1540354048,1540354559,IL 1540354560,1540355071,PL 1540355072,1540355583,UA 1540355584,1540356607,RU 1540356608,1540357119,DE 1540357120,1540357631,RU 1540357632,1540358143,FR 1540358144,1540358399,RU 1540358400,1540358655,GB 1540358656,1540358911,SE 1540358912,1540359167,GB 1540359168,1540359423,SA 1540359424,1540359679,DE 1540359680,1540359935,GB 1540359936,1540360191,AT 1540360192,1540360447,NO 1540360448,1540360703,FR 1540360704,1540360959,PL 1540360960,1540361215,GB 1540361216,1540361471,BE 1540361472,1540361727,DE 1540361728,1540361983,IT 1540361984,1540362239,EE 1540362240,1540363263,DE 1540363264,1540363519,RU 1540363776,1540364031,IS 1540364032,1540364287,RU 1540364288,1540364543,NO 1540364544,1540364799,UA 1540364800,1540365055,EE 1540365056,1540365311,SI 1540365312,1540365567,GB 1540365568,1540365823,RU 1540365824,1540366079,CH 1540366336,1540366591,PL 1540366592,1540366847,RU 1540366848,1540367103,AT 1540367104,1540367359,RU 1540367360,1540367615,HU 1540367616,1540367871,BE 1540367872,1540368127,DE 1540368128,1540368383,RU 1540368384,1540368639,FR 1540368640,1540368895,SK 1540368896,1540369407,RU 1540369408,1540369663,PL 1540369664,1540369919,DE 1540370176,1540370431,DE 1540370432,1540370687,LB 1540370688,1540370943,NL 1540370944,1540371199,PL 1540371200,1540371455,BE 1540371456,1540371711,UA 1540371712,1540371967,GB 1540371968,1540372223,NO 1540372224,1540372479,PL 1540372736,1540372991,GR 1540372992,1540373247,DE 1540373248,1540373503,UA 1540373504,1540373759,NL 1540373760,1540374015,TR 1540374016,1540374271,NL 1540374272,1540374527,BG 1540374528,1540374783,RU 1540374784,1540375039,UA 1540375040,1540375551,GB 1540375552,1540375807,DE 1540376064,1540376319,TR 1540376320,1540376575,DK 1540376576,1540376831,PL 1540376832,1540377087,RU 1540377088,1540377343,DE 1540377344,1540377599,RO 1540377600,1540377855,AM 1540377856,1540378111,ES 1540378112,1540378367,PL 1540378368,1540378623,CH 1540378624,1540378879,AT 1540378880,1540379135,SE 1540379136,1540379391,CH 1540379392,1540379647,DE 1540379648,1540379903,RU 1540380160,1540380415,IL 1540380416,1540380671,NL 1540380672,1540380927,SI 1540380928,1540381183,RS 1540381184,1540381439,RO 1540381440,1540381695,AT 1540381696,1540381951,RO 1540381952,1540382207,PL 1540382208,1540382463,UA 1540382464,1540382719,GB 1540382720,1540382975,LB 1540382976,1540383231,UA 1540383232,1540383487,AT 1540383488,1540383743,GB 1540383744,1540383999,RO 1540384000,1540384255,SI 1540384256,1540384511,FR 1540384512,1540384767,SE 1540385024,1540385279,GB 1540385280,1540385535,PL 1540385536,1540385791,DE 1540385792,1540386303,FR 1540386304,1540386559,NL 1540386560,1540386815,GB 1540386816,1540387071,NL 1540387328,1540387583,GB 1540387584,1540388095,UA 1540388096,1540388351,GB 1540388352,1540388607,IL 1540388608,1540388863,RU 1540388864,1540389119,RO 1540389120,1540389375,RU 1540389376,1540389631,GB 1540389632,1540389887,RO 1540389888,1540390143,GB 1540390144,1540390399,SI 1540390400,1540390655,RU 1540390656,1540390911,UA 1540391168,1540391423,IL 1540391424,1540391679,CH 1540391680,1540391935,NL 1540391936,1540392191,RU 1540392192,1540392447,PL 1540392448,1540392703,RU 1540392704,1540392959,PL 1540392960,1540393215,GB 1540393472,1540393727,UA 1540393728,1540394239,IL 1540394240,1540394495,GB 1540394496,1540394751,RO 1540394752,1540395007,DK 1540395008,1540395263,GE 1540395264,1540395519,UA 1540395520,1540395775,GB 1540395776,1540396031,IL 1540396032,1540396287,NO 1540396288,1540396543,AM 1540396544,1540396799,PL 1540396800,1540397055,RU 1540397056,1540397311,IT 1540397312,1540397823,UA 1540397824,1540398079,DE 1540398080,1540398335,SA 1540398336,1540398591,DK 1540398592,1540399359,DE 1540399360,1540399615,RU 1540399872,1540400127,GB 1540400128,1540400383,NL 1540400384,1540400639,IR 1540400640,1540400895,RU 1540400896,1540401151,NL 1540401152,1540401407,SI 1540401408,1540401663,AT 1540401664,1540401919,GB 1540401920,1540402175,RU 1540402176,1540402431,FR 1540402432,1540402687,CH 1540402688,1540402943,SE 1540402944,1540403199,NL 1540403200,1540403455,AT 1540403456,1540403711,GB 1540403712,1540404223,RO 1540404224,1540404479,CH 1540404480,1540404735,FR 1540404736,1540404991,PL 1540404992,1540405247,RU 1540405248,1540405503,GB 1540405504,1540405759,RU 1540405760,1540406015,PL 1540406016,1540406271,RU 1540406272,1540406527,SE 1540406528,1540407039,PL 1540407040,1540407807,DE 1540407808,1540408063,UA 1540408064,1540408319,IT 1540408320,1540408575,NL 1540408832,1540409087,UA 1540409088,1540409343,TR 1540409344,1540409599,SI 1540409600,1540409855,AT 1540409856,1540410111,DE 1540410112,1540410367,KW 1540410368,1540410623,CH 1540410624,1540410879,RU 1540411136,1540411391,NL 1540411648,1540411903,FR 1540411904,1540412159,RU 1540412160,1540412415,BE 1540412416,1540412671,DE 1540412672,1540412927,RO 1540412928,1540413183,FR 1540413184,1540413439,RO 1540413440,1540413695,RU 1540413696,1540413951,AT 1540413952,1540414207,IL 1540414208,1540414463,GB 1540414464,1540414719,BE 1540414720,1540414975,SE 1540414976,1540415231,FR 1540415232,1540415487,RO 1540415488,1540415743,FR 1540415744,1540415999,SI 1540416000,1540416255,FR 1540416256,1540416511,CH 1540416768,1540417023,NL 1540417280,1540417535,UA 1540417536,1540417791,RU 1540417792,1540418047,HR 1540418048,1540418559,RO 1540418816,1540419071,FR 1540419072,1540419327,RU 1540419328,1540419583,GB 1540419840,1540420095,NL 1540420096,1540420607,GB 1540420608,1540420863,DE 1540420864,1540421119,GB 1540421376,1540421631,PL 1540421632,1540422143,RU 1540422144,1540422399,PL 1540422400,1540422655,UA 1540422656,1540422911,GB 1540422912,1540423423,RU 1540423424,1540423679,BA 1540423680,1540423935,SE 1540423936,1540424191,UA 1540424192,1540424447,AT 1540424448,1540424703,ES 1540424704,1540424959,PL 1540424960,1540425215,RO 1540425216,1540425471,US 1540425472,1540425727,NL 1540425728,1540425983,BG 1540425984,1540426239,RU 1540426240,1540426495,IE 1540426496,1540426751,UA 1540426752,1540427263,NL 1540427520,1540427775,FR 1540427776,1540428287,RU 1540428288,1540428543,SI 1540428544,1540428799,FR 1540428800,1540429055,PL 1540429568,1540429823,RO 1540429824,1540430079,UA 1540430080,1540430335,FR 1540430336,1540430591,DE 1540430592,1540430847,PL 1540430848,1540431103,CH 1540431104,1540431359,FI 1540431360,1540431615,NO 1540431616,1540431871,GB 1540431872,1540432127,HR 1540432128,1540432383,AT 1540432384,1540432639,GB 1540432640,1540432895,FR 1540432896,1540433151,UA 1540433152,1540433407,GB 1540433408,1540433663,AM 1540433664,1540433919,DK 1540434176,1540434431,DK 1540434432,1540434687,DE 1540434688,1540434943,GB 1540434944,1540435199,FR 1540435200,1540435455,RO 1540435456,1540435967,GR 1540436224,1540436479,SI 1540436480,1540436735,GB 1540436736,1540436991,UA 1540436992,1540437247,DE 1540437248,1540437503,CH 1540437504,1540438015,UA 1540438016,1540438271,PL 1540438272,1540438527,US 1540438784,1540439039,RU 1540439040,1540439295,GB 1540439296,1540439551,RO 1540440064,1540440319,UA 1540440320,1540440575,RU 1540440576,1540440831,MD 1540440832,1540441087,RU 1540441344,1540441855,RU 1540441856,1540442111,GB 1540442112,1540442367,RU 1540442368,1540442623,GB 1540442624,1540442879,IE 1540442880,1540443135,AT 1540443136,1540443391,RU 1540443392,1540443647,CZ 1540443648,1540443903,FR 1540443904,1540444159,GB 1540444160,1540444415,RU 1540444416,1540444671,DE 1540444672,1540445183,GB 1540445184,1540445439,CH 1540445440,1540445695,RU 1540445696,1540445951,GB 1540445952,1540446207,DE 1540446208,1540446463,NO 1540446464,1540446719,AT 1540446720,1540446975,UA 1540446976,1540447231,RU 1540447232,1540447487,DE 1540447488,1540447743,PL 1540447744,1540447999,RU 1540448000,1540448255,PL 1540448256,1540448511,UA 1540448512,1540448767,IT 1540448768,1540449023,CH 1540449536,1540449791,CZ 1540449792,1540450047,RO 1540450048,1540450303,DE 1540450304,1540450559,GB 1540450560,1540450815,AM 1540450816,1540451071,IE 1540451072,1540451327,FR 1540451328,1540451583,ES 1540451584,1540451839,RO 1540451840,1540452095,NL 1540452096,1540452351,CH 1540452352,1540452607,AT 1540452608,1540452863,IL 1540452864,1540453119,HU 1540453376,1540453631,PL 1540453632,1540453887,FR 1540453888,1540454143,UA 1540454144,1540454399,RU 1540454400,1540454911,DE 1540454912,1540455167,RU 1540455168,1540455423,RO 1540455424,1540455679,RU 1540455680,1540455935,GB 1540455936,1540456191,UA 1540456192,1540457215,RU 1540457216,1540457471,GE 1540457472,1540457727,SI 1540457728,1540457983,BE 1540457984,1540458239,CH 1540458240,1540458495,ES 1540458496,1540458751,HR 1540458752,1540459007,NL 1540459008,1540459519,UA 1540459520,1540459775,GB 1540459776,1540460031,PL 1540460032,1540460287,GB 1540460288,1540460543,NL 1540460544,1540460799,GB 1540460800,1540461055,SI 1540461056,1540461311,BG 1540461312,1540461823,RU 1540462080,1540462335,SI 1540462592,1540463103,PL 1540463104,1540463359,FR 1540463360,1540463615,PL 1540463616,1540463871,DK 1540463872,1540464127,UA 1540464128,1540464383,CH 1540464384,1540464895,DE 1540464896,1540465407,GB 1540465664,1540465919,NL 1540465920,1540466175,UA 1540466176,1540466431,DK 1540466432,1540466687,RU 1540466688,1540466943,NL 1540466944,1540467455,CH 1540467456,1540467711,RO 1540467712,1540467967,KW 1540467968,1540468223,GR 1540468224,1540468735,FR 1540468736,1540468991,UA 1540468992,1540469247,PL 1540469248,1540469503,GB 1540469760,1540470015,PL 1540470016,1540470271,SI 1540470272,1540470527,IL 1540471040,1540471295,DE 1540471552,1540471807,GB 1540471808,1540472063,SI 1540472064,1540472319,RO 1540472320,1540472575,DK 1540472576,1540472831,FR 1540472832,1540473087,NL 1540473088,1540473343,UA 1540473344,1540473599,IT 1540473600,1540473855,RO 1540473856,1540474367,GB 1540474368,1540474623,RO 1540474624,1540474879,PL 1540474880,1540475135,GB 1540475136,1540475903,UA 1540475904,1540476159,CH 1540476160,1540476415,DE 1540476416,1540476671,UA 1540476672,1540476927,SI 1540476928,1540477183,NL 1540477440,1540477695,UA 1540477696,1540477951,DE 1540477952,1540478207,NO 1540478208,1540478463,NL 1540478464,1540478719,UA 1540478976,1540479231,HR 1540479232,1540479487,GB 1540479488,1540479743,RU 1540479744,1540479999,AT 1540480000,1540480255,GB 1540480256,1540480767,PL 1540480768,1540481023,GB 1540481280,1540481535,GB 1540481536,1540481791,UA 1540482048,1540482303,DK 1540482304,1540482559,FR 1540482816,1540483071,DE 1540483072,1540483327,SE 1540483328,1540483839,RU 1540483840,1540484095,UA 1540484096,1540484351,DK 1540484352,1540484607,SI 1540484608,1540484863,GB 1540484864,1540485119,UA 1540485120,1540485375,SE 1540485376,1540485631,RO 1540485632,1540485887,IR 1540485888,1540486143,ES 1540486144,1540486399,GB 1540486400,1540486655,FR 1540486656,1540486911,GB 1540486912,1540487167,SK 1540487168,1540487423,PS 1540487424,1540487679,UA 1540487680,1540487935,DE 1540487936,1540488191,SI 1540488192,1540488447,GB 1540488448,1540488703,SA 1540488704,1540488959,DE 1540488960,1540489215,RO 1540489216,1540491263,RU 1540491264,1540492287,UA 1540492288,1540493311,PL 1540493312,1540494335,CZ 1540494336,1540495359,UA 1540495360,1540496383,RU 1540496384,1540499455,UA 1540499456,1540500479,AM 1540500480,1540501503,RU 1540501504,1540502527,PL 1540502528,1540503551,RU 1540504576,1540505599,SE 1540506624,1540507647,GB 1540507648,1540508671,RU 1540508672,1540509695,UA 1540509696,1540510719,RO 1540510720,1540511743,RU 1540511744,1540512767,BG 1540512768,1540514815,RU 1540515840,1540516863,RU 1540516864,1540517887,UA 1540517888,1540518911,RU 1540518912,1540520959,UA 1540520960,1540521983,RU 1540521984,1540523007,PL 1540523008,1540524031,RU 1540524032,1540525055,AL 1540525056,1540526079,AT 1540526080,1540528127,UA 1540528128,1540529151,RU 1540529152,1540530175,UA 1540530176,1540531199,RU 1540531200,1540532223,UA 1540532224,1540533247,RU 1540533248,1540534271,KZ 1540534272,1540534527,UA 1540534528,1540535295,RU 1540535296,1540536319,SK 1540536320,1540537343,RU 1540537344,1540539391,UA 1540539392,1540542463,RU 1540542464,1540543487,PL 1540543488,1540544511,DE 1540544512,1540545535,RU 1540545536,1540546559,AT 1540546560,1540548607,RU 1540548608,1540549631,IE 1540549632,1540552703,PL 1540552704,1540553727,UA 1540553728,1540555775,RU 1540555776,1540556799,UZ 1540556800,1540557823,GB 1540557824,1540559871,UA 1540559872,1540562943,RU 1540562944,1540563967,AT 1540563968,1540564991,RU 1540564992,1540566015,DE 1540566016,1540567039,RU 1540567040,1540568063,MD 1540568064,1540571135,RU 1540572160,1540573183,UA 1540573184,1540574207,NL 1540574208,1540576255,RU 1540576256,1540577279,PL 1540578304,1540579327,RU 1540579328,1540580351,IE 1540580352,1540581375,PL 1540581376,1540582399,RU 1540582400,1540583423,BG 1540583424,1540584447,DE 1540584448,1540586495,UA 1540586496,1540588543,RU 1540588544,1540589567,UA 1540589568,1540593663,RU 1540594688,1540595711,IT 1540596736,1540597759,FR 1540597760,1540598783,SE 1540598784,1540600831,UA 1540600832,1540602879,RU 1540602880,1540603903,BG 1540603904,1540604927,RU 1540605952,1540606975,MD 1540606976,1540607999,UA 1540608000,1540609023,RU 1540609024,1540610047,UA 1540610048,1540611071,RU 1540611072,1540612095,PL 1540613120,1540614143,RU 1540614144,1540615167,BG 1540615168,1540616191,RU 1540616192,1540617215,AT 1540617216,1540618239,LT 1540619264,1540620287,PL 1540620288,1540620543,NL 1540620544,1540620799,LB 1540620800,1540621055,PL 1540621056,1540621311,DE 1540621312,1540621567,BA 1540621568,1540621823,PL 1540621824,1540622335,RU 1540622336,1540622591,KW 1540622592,1540622847,PL 1540622848,1540623103,RU 1540623360,1540623615,GB 1540623616,1540623871,BG 1540624128,1540624383,RS 1540624384,1540624639,IR 1540624640,1540624895,BG 1540624896,1540625151,GB 1540625664,1540625919,FR 1540625920,1540626175,UA 1540626176,1540626431,RO 1540626432,1540626687,SI 1540626688,1540626943,PL 1540626944,1540627199,FR 1540627456,1540627711,DK 1540627712,1540627967,CH 1540627968,1540628223,PL 1540628224,1540628479,HR 1540628480,1540628735,KW 1540628736,1540628991,PL 1540628992,1540629247,UA 1540629248,1540629503,RO 1540629504,1540629759,DK 1540629760,1540630015,BG 1540630272,1540630527,RO 1540630528,1540630783,CH 1540631040,1540631295,NL 1540631296,1540631551,CH 1540631552,1540631807,HR 1540632064,1540632319,AT 1540632320,1540632575,RU 1540632576,1540632831,DK 1540633088,1540633343,RU 1540633600,1540633855,RO 1540633856,1540634111,AE 1540634624,1540634879,UA 1540634880,1540635135,RU 1540635136,1540635391,FR 1540635392,1540635647,RO 1540635648,1540636159,RU 1540636160,1540636415,RO 1540636416,1540636671,LV 1540636672,1540636927,RU 1540637184,1540637439,RO 1540637440,1540637695,SA 1540637696,1540637951,RU 1540637952,1540638207,RS 1540638208,1540638463,RO 1540638464,1540638719,AM 1540639232,1540639487,RO 1540639488,1540639743,CH 1540639744,1540639999,IL 1540640000,1540640255,CH 1540640256,1540640511,FR 1540640512,1540640767,ES 1540640768,1540641023,UA 1540641024,1540641535,RU 1540641536,1540641791,DE 1540641792,1540642047,PL 1540642048,1540642303,DE 1540642304,1540642559,PL 1540642560,1540642815,DE 1540642816,1540643071,IE 1540643072,1540643327,UZ 1540643328,1540643583,GB 1540643584,1540643839,CH 1540643840,1540644095,NO 1540644096,1540644607,GB 1540644608,1540644863,DE 1540644864,1540645119,NL 1540645120,1540645375,RU 1540645376,1540645631,BE 1540645632,1540645887,NL 1540646144,1540646399,RO 1540646400,1540646655,PS 1540646656,1540646911,SE 1540646912,1540647167,RU 1540647168,1540647423,GB 1540647424,1540647679,RU 1540647936,1540648191,GB 1540648192,1540648447,CH 1540648448,1540648959,RO 1540648960,1540649215,SK 1540649216,1540649471,DE 1540649472,1540649727,IL 1540649728,1540649983,GB 1540649984,1540650239,FR 1540650240,1540650495,CH 1540650496,1540650751,RU 1540650752,1540651007,FR 1540651008,1540651263,RO 1540651264,1540651519,CH 1540651520,1540651775,MK 1540652032,1540652543,UA 1540652544,1540652799,TR 1540652800,1540653055,PL 1540653056,1540653311,FR 1540653312,1540653567,DK 1540653568,1540653823,DE 1540653824,1540654079,GB 1540654336,1540654591,RU 1540654592,1540654847,SI 1540654848,1540655103,RU 1540655104,1540655359,AT 1540655360,1540655615,RU 1540655616,1540655871,GB 1540655872,1540656383,NL 1540656896,1540657151,RO 1540657152,1540657407,DE 1540657408,1540657663,CY 1540657664,1540657919,RU 1540657920,1540658175,FR 1540658176,1540658431,RO 1540658432,1540659199,RU 1540659200,1540659455,FR 1540659712,1540659967,UA 1540659968,1540660223,PL 1540660224,1540660479,RU 1540660480,1540660735,FR 1540660736,1540660991,RU 1540660992,1540661247,RO 1540661248,1540661503,GB 1540661760,1540662015,RO 1540662016,1540662271,BG 1540662272,1540662527,RO 1540662528,1540662783,PL 1540662784,1540663039,GB 1540663040,1540663295,IT 1540663296,1540663551,RU 1540663552,1540664063,PL 1540664064,1540664319,RU 1540664320,1540664575,PL 1540664576,1540665087,UA 1540665088,1540665343,ES 1540665344,1540665599,NL 1540665600,1540665855,UA 1540665856,1540666111,TR 1540666112,1540666367,RU 1540666368,1540666623,UZ 1540666624,1540666879,DE 1540666880,1540667135,GB 1540667136,1540667647,NL 1540667648,1540668159,BE 1540668160,1540668415,AT 1540668416,1540668671,SE 1540668672,1540668927,IL 1540668928,1540669695,RO 1540669696,1540669951,KZ 1540669952,1540670207,UA 1540670208,1540670463,RU 1540670464,1540670719,CH 1540670720,1540670975,RU 1540671232,1540671487,SI 1540671488,1540671743,CH 1540671744,1540671999,BG 1540672000,1540672255,FR 1540672256,1540672511,UA 1540672512,1540672767,DE 1540672768,1540673023,FR 1540673024,1540673279,DE 1540673280,1540673535,SE 1540673536,1540673791,SI 1540673792,1540674047,SE 1540674048,1540674303,GB 1540674304,1540674559,FR 1540674560,1540674815,GB 1540674816,1540675071,GE 1540675072,1540675327,UA 1540675328,1540675583,NL 1540675584,1540675839,GB 1540675840,1540676351,RU 1540676352,1540676607,IT 1540676608,1540677119,RU 1540677120,1540677375,GB 1540677376,1540677631,PL 1540677632,1540677887,DK 1540677888,1540678143,GE 1540678400,1540678655,RO 1540678656,1540678911,SE 1540678912,1540679167,GB 1540679168,1540679423,RU 1540679680,1540679935,LT 1540679936,1540680191,BG 1540680192,1540680447,CH 1540680448,1540680703,BG 1540680704,1540680959,FR 1540680960,1540681215,NL 1540681216,1540681471,FR 1540681472,1540681727,RU 1540681984,1540682239,IT 1540682240,1540682495,PL 1540682496,1540682751,DE 1540682752,1540683007,EE 1540683008,1540683263,DE 1540683520,1540683775,HR 1540683776,1540684031,UA 1540684032,1540684287,IT 1540684288,1540684543,HU 1540684544,1540684799,SI 1540684800,1540685055,IR 1540685056,1540685311,UA 1540685312,1540685567,RO 1540685568,1540685823,FR 1540685824,1540686079,SE 1540686080,1540686335,TR 1540686336,1540686591,CH 1540686592,1540686847,GB 1540686848,1540687103,CH 1540687104,1540687359,RU 1540687360,1540687615,AT 1540687616,1540687871,IT 1540687872,1540688127,UA 1540688128,1540688383,HU 1540688384,1540688639,CZ 1540688640,1540688895,RO 1540688896,1540689151,BG 1540689152,1540689407,NL 1540689408,1540689663,RU 1540689664,1540689919,FR 1540689920,1540690175,RO 1540690176,1540690431,DK 1540690432,1540690687,SA 1540690688,1540690943,RO 1540690944,1540691711,DE 1540691712,1540691967,RU 1540691968,1540692223,CH 1540692224,1540692735,FR 1540692736,1540692991,DE 1540692992,1540693247,GB 1540693504,1540693759,ES 1540693760,1540694015,UZ 1540694016,1540694271,CH 1540694272,1540694527,UA 1540694528,1540694783,RO 1540695040,1540695295,DE 1540695296,1540695551,NL 1540695552,1540695807,PL 1540695808,1540696063,RU 1540696064,1540696319,HU 1540696320,1540696575,FR 1540696576,1540696831,GB 1540696832,1540697087,EE 1540697088,1540697343,RU 1540697344,1540697599,GB 1540697600,1540697855,ES 1540697856,1540698111,NO 1540698112,1540698367,DE 1540698368,1540698623,IE 1540698880,1540699135,RU 1540699136,1540699391,GR 1540699392,1540699647,NL 1540699648,1540699903,AT 1540699904,1540700159,RO 1540700160,1540700415,DE 1540700416,1540700671,RO 1540700672,1540700927,PL 1540700928,1540701183,UA 1540701184,1540701695,DE 1540701696,1540701951,UA 1540701952,1540702207,GB 1540702208,1540702463,PL 1540702464,1540702719,PT 1540702720,1540702975,DK 1540702976,1540703231,RU 1540703232,1540703487,GB 1540703488,1540703743,NL 1540703744,1540703999,DK 1540704000,1540704255,PL 1540704512,1540704767,IE 1540705280,1540705535,RO 1540705536,1540705791,AT 1540705792,1540706047,NL 1540706048,1540706303,FR 1540706304,1540706559,SI 1540706560,1540706815,GB 1540706816,1540707071,FR 1540707072,1540707327,AT 1540707328,1540707583,HR 1540707584,1540707839,NL 1540707840,1540708095,MD 1540708096,1540708351,RU 1540708352,1540708607,PL 1540708608,1540708863,SI 1540708864,1540709119,FR 1540709120,1540709375,DE 1540709376,1540709631,UA 1540710144,1540710399,NL 1540710400,1540710655,PL 1540710656,1540710911,FI 1540710912,1540711423,DE 1540711424,1540711679,CH 1540711680,1540711935,RO 1540711936,1540712191,FR 1540712192,1540712447,DE 1540712448,1540712703,RU 1540712704,1540713215,LV 1540713216,1540713727,PL 1540713728,1540713983,RU 1540713984,1540714239,GB 1540714496,1540714751,NL 1540714752,1540715263,RU 1540715264,1540715519,NL 1540715520,1540715775,DE 1540716032,1540716287,PL 1540716288,1540716543,UA 1540717056,1540717311,CZ 1540717312,1540717823,PL 1540717824,1540718079,UA 1540718080,1540718335,RU 1540718336,1540718591,NO 1540718592,1540718847,CH 1540718848,1540719103,IT 1540719104,1540719359,RU 1540719360,1540719615,SI 1540719616,1540719871,AT 1540719872,1540720127,CH 1540720128,1540720383,NL 1540720384,1540720639,RO 1540720640,1540720895,CH 1540720896,1540721151,PL 1540721408,1540721663,RU 1540721664,1540721919,GB 1540721920,1540722431,RU 1540722432,1540722687,CZ 1540722688,1540722943,RU 1540722944,1540723455,FR 1540723456,1540723711,SI 1540723968,1540724223,UA 1540724224,1540724479,HU 1540724736,1540724991,CH 1540724992,1540725247,IT 1540725248,1540725503,UA 1540725504,1540725759,SE 1540725760,1540726015,PL 1540726272,1540726527,RU 1540726528,1540726783,CH 1540726784,1540727039,CZ 1540727040,1540727295,FI 1540727296,1540727551,PL 1540727552,1540727807,RU 1540727808,1540728063,GB 1540728064,1540728319,NL 1540728320,1540728575,RU 1540728832,1540729343,RU 1540729344,1540729599,PL 1540729600,1540729855,CH 1540729856,1540730111,RU 1540730112,1540730367,GB 1540730624,1540730879,UA 1540730880,1540731135,IL 1540731136,1540731391,DE 1540731392,1540731647,NL 1540731648,1540731903,SE 1540731904,1540732159,FR 1540732160,1540732415,MD 1540732416,1540732671,UA 1540732672,1540732927,GB 1540732928,1540733183,RU 1540733184,1540733439,UA 1540733440,1540733695,RU 1540733696,1540733951,UA 1540733952,1540734207,GB 1540734208,1540734463,RU 1540734464,1540734719,NL 1540734720,1540734975,IQ 1540734976,1540735231,UA 1540735232,1540735487,PL 1540735488,1540735743,CH 1540735744,1540735999,NL 1540736000,1540736255,RU 1540736256,1540736511,IT 1540736512,1540736767,DE 1540736768,1540737791,GB 1540737792,1540738047,NO 1540738048,1540738303,AT 1540738304,1540738559,SA 1540738560,1540738815,PL 1540738816,1540739071,DE 1540739072,1540739327,SE 1540739328,1540739583,UA 1540739584,1540739839,IT 1540739840,1540740095,CZ 1540740096,1540740351,GB 1540740352,1540740607,SA 1540740608,1540740863,NL 1540740864,1540741119,RO 1540741120,1540741375,GB 1540741632,1540742143,NL 1540742400,1540742655,DE 1540742656,1540742911,AT 1540743168,1540743423,NO 1540743424,1540743679,GB 1540743680,1540743935,PL 1540743936,1540744191,CH 1540744192,1540744447,GR 1540744448,1540744703,FR 1540744704,1540744959,GB 1540744960,1540745215,UA 1540745216,1540745471,DE 1540745472,1540745727,KG 1540745728,1540746239,AT 1540746240,1540746495,FR 1540746496,1540747263,PL 1540747264,1540747519,RU 1540747520,1540747775,SI 1540747776,1540748031,FR 1540748032,1540748287,RU 1540748288,1540748543,CZ 1540748544,1540748799,TR 1540748800,1540749055,SE 1540749056,1540749311,RU 1540749312,1540749567,UZ 1540749568,1540749823,RU 1540749824,1540750079,SE 1540750080,1540750335,BE 1540750336,1540750591,DE 1540750592,1540751103,TR 1540751104,1540752383,PL 1540752384,1540753407,GB 1540753408,1540754431,DE 1540754432,1540755455,RO 1540755456,1540756479,UA 1540756480,1540757503,DK 1540757504,1540758527,PL 1540758528,1540759551,UA 1540760576,1540761599,PL 1540761600,1540762623,RU 1540762624,1540763647,LU 1540763648,1540764671,UA 1540764672,1540765695,PL 1540765696,1540766719,RU 1540766720,1540767743,IT 1540768768,1540769791,RU 1540769792,1540770815,IT 1540770816,1540771839,RU 1540771840,1540773887,UA 1540773888,1540774911,SE 1540775936,1540776959,RU 1540776960,1540777983,IL 1540777984,1540779007,HR 1540779008,1540780031,NL 1540780032,1540781055,UA 1540781056,1540783103,RU 1540783104,1540787199,UA 1540787200,1540789247,RU 1540790272,1540791295,KW 1540791296,1540792319,CZ 1540792320,1540793343,UA 1540793344,1540794367,FI 1540794368,1540795391,CH 1540795392,1540796415,RU 1540796416,1540798463,UA 1540798464,1540799487,RU 1540799488,1540800511,RO 1540800512,1540801535,CZ 1540801536,1540802559,RU 1540802560,1540803583,MD 1540803584,1540804607,RU 1540804608,1540805631,UA 1540805632,1540806655,RU 1540807680,1540809727,RU 1540809728,1540810751,GB 1540810752,1540811775,UA 1540811776,1540812799,PL 1540812800,1540813823,RU 1540813824,1540815871,UA 1540815872,1540816895,DE 1540816896,1540817919,PL 1540817920,1540818943,NL 1540818944,1540819967,UA 1540819968,1540820991,CZ 1540820992,1540823039,RU 1540823040,1540824063,UA 1540824064,1540825087,RU 1540825088,1540826111,PL 1540826112,1540828159,RU 1540828160,1540829183,PL 1540829184,1540830207,RU 1540830208,1540833279,UA 1540833280,1540834303,ES 1540834304,1540835327,UA 1540835328,1540836351,DE 1540836352,1540837375,RU 1540837376,1540838399,PL 1540838400,1540840447,RU 1540840448,1540841471,SE 1540841472,1540842495,RO 1540842496,1540843519,DE 1540843520,1540844543,PL 1540844544,1540846591,RU 1540846592,1540847615,DE 1540847616,1540848639,RU 1540848640,1540849663,UA 1540849664,1540850687,RU 1540850688,1540851711,FI 1540851712,1540853759,RU 1540853760,1540854783,UA 1540854784,1540855807,NL 1540855808,1540856831,BG 1540856832,1540857855,NL 1540857856,1540858879,DK 1540858880,1540859903,GB 1540859904,1540860927,RU 1540860928,1540861951,KZ 1540861952,1540862975,BY 1540862976,1540865023,GB 1540865024,1540872191,RU 1540872192,1540873215,BG 1540873216,1540875263,RU 1540875264,1540876287,PL 1540876288,1540877311,RU 1540877312,1540878335,PL 1540878336,1540879359,AT 1540879360,1540880383,RU 1540880384,1540881407,UA 1540881408,1540882431,RU 1540882432,1540882687,SE 1540882688,1540883199,LV 1540883200,1540883455,RU 1540883456,1540883711,IR 1540883712,1540883967,PL 1540883968,1540884223,IE 1540884224,1540884479,SE 1540884480,1540884735,RO 1540884736,1540884991,GB 1540884992,1540885247,BE 1540885504,1540885759,ES 1540885760,1540886015,DE 1540886016,1540886271,DK 1540886272,1540886527,UA 1540886528,1540886783,PL 1540886784,1540887039,IT 1540887040,1540887295,GB 1540887296,1540887551,FR 1540887552,1540887807,BE 1540887808,1540888063,MD 1540888064,1540888319,UA 1540888320,1540888575,DE 1540888576,1540888831,SE 1540888832,1540889087,PL 1540889088,1540889343,FR 1540889344,1540889599,RO 1540889600,1540889855,UA 1540889856,1540890111,FR 1540890112,1540890367,PL 1540890368,1540890623,IL 1540890624,1540890879,SE 1540890880,1540891135,DE 1540891136,1540891391,NL 1540891392,1540891647,DE 1540891648,1540891903,CH 1540891904,1540892159,GB 1540892160,1540892415,IT 1540892672,1540892927,GB 1540892928,1540893183,BE 1540893184,1540893439,GB 1540893440,1540893695,FR 1540893696,1540893951,HU 1540893952,1540894207,DE 1540894208,1540894463,RU 1540894464,1540894719,MD 1540894720,1540895487,RU 1540895488,1540895743,PL 1540895744,1540895999,RO 1540896000,1540896255,RU 1540896256,1540896511,SI 1540896512,1540896767,GB 1540897024,1540897279,GB 1540897280,1540897535,FR 1540897536,1540897791,RU 1540897792,1540898047,HU 1540898048,1540898303,UA 1540898304,1540898559,SE 1540898560,1540898815,ES 1540898816,1540899071,PL 1540899072,1540899327,SE 1540899328,1540899583,RU 1540899584,1540899839,FR 1540899840,1540900351,RU 1540900352,1540900607,HU 1540900608,1540900863,BG 1540900864,1540901119,RU 1540901376,1540901631,SI 1540901632,1540901887,RO 1540901888,1540902143,GR 1540902144,1540902399,FI 1540902400,1540902655,RO 1540902656,1540902911,CH 1540902912,1540903167,RO 1540903168,1540903423,RU 1540903424,1540903679,GB 1540903680,1540904447,FR 1540904448,1540904703,EE 1540904704,1540904959,SI 1540904960,1540905471,GB 1540905472,1540905727,DE 1540905728,1540905983,TR 1540905984,1540906239,AT 1540906240,1540906495,GB 1540906496,1540906751,UA 1540906752,1540907007,BG 1540907008,1540907263,RU 1540907264,1540907519,MD 1540907520,1540907775,TR 1540907776,1540908031,PL 1540908032,1540908287,NL 1540908288,1540908543,DK 1540908544,1540908799,IT 1540908800,1540909055,DK 1540909056,1540909311,NL 1540909312,1540909567,GB 1540909568,1540909823,UA 1540909824,1540910079,FR 1540910080,1540910335,DE 1540910336,1540910591,SI 1540910592,1540910847,FR 1540910848,1540911103,SE 1540911104,1540911359,GB 1540911360,1540911615,NL 1540911616,1540911871,RU 1540911872,1540912127,PL 1540912128,1540912383,GB 1540912384,1540912639,PT 1540912640,1540912895,DK 1540912896,1540913151,TR 1540913152,1540913407,AT 1540913408,1540913663,RU 1540913920,1540914175,RU 1540914176,1540914687,PL 1540914688,1540914943,RU 1540914944,1540915199,IT 1540915200,1540915455,DE 1540915456,1540915967,RU 1540915968,1540916479,NL 1540916480,1540916735,UA 1540916736,1540916991,PL 1540916992,1540917247,UA 1540917248,1540917503,FI 1540917504,1540917759,GB 1540917760,1540918015,RO 1540918016,1540918527,FR 1540918528,1540919039,NL 1540919040,1540919295,GB 1540919296,1540919551,RO 1540919552,1540919807,BE 1540919808,1540920063,GB 1540920064,1540920319,RU 1540920320,1540920575,TR 1540920576,1540920831,PL 1540920832,1540921087,HU 1540921088,1540921599,RO 1540921600,1540922111,MT 1540922112,1540922367,ES 1540922368,1540922879,RO 1540922880,1540923135,DE 1540923136,1540923391,GB 1540923392,1540923647,PL 1540923648,1540923903,UA 1540923904,1540924159,DE 1540924160,1540924415,LT 1540924416,1540924671,RU 1540924672,1540924927,UA 1540924928,1540925183,MD 1540925184,1540925439,RU 1540925440,1540925695,CZ 1540925952,1540926207,TR 1540926208,1540926463,FR 1540926464,1540926719,SI 1540926720,1540926975,UA 1540926976,1540927231,BG 1540927232,1540927487,RU 1540927488,1540927743,GE 1540927744,1540927999,RO 1540928000,1540928255,KZ 1540928256,1540928511,CZ 1540928512,1540928767,GR 1540928768,1540929023,GB 1540929024,1540929279,DK 1540929280,1540929535,GB 1540929536,1540929791,NL 1540929792,1540930047,CZ 1540930048,1540930303,FR 1540930304,1540930559,RU 1540930560,1540930815,KW 1540930816,1540931071,KZ 1540931328,1540931839,PL 1540931840,1540932095,GB 1540932096,1540932351,PL 1540932352,1540932607,FR 1540932608,1540932863,UA 1540932864,1540933119,GB 1540933120,1540933375,RU 1540933376,1540933631,RO 1540933632,1540933887,NL 1540933888,1540934143,TR 1540934144,1540934399,PL 1540934400,1540934655,FR 1540934656,1540934911,PL 1540934912,1540935167,RU 1540935168,1540935423,GR 1540935424,1540935679,NL 1540935680,1540935935,RU 1540935936,1540936191,FR 1540936192,1540936447,CY 1540936448,1540936959,RU 1540936960,1540937471,PL 1540937728,1540937983,DE 1540937984,1540938239,RU 1540938240,1540938751,ES 1540938752,1540939007,KZ 1540939008,1540939263,FR 1540939264,1540939519,IL 1540939520,1540939775,TR 1540939776,1540940031,PL 1540940032,1540940287,RO 1540940288,1540940543,DK 1540940544,1540940799,RO 1540940800,1540941055,FR 1540941056,1540941311,CH 1540941312,1540941567,AT 1540941568,1540942079,UA 1540942080,1540942335,RO 1540942336,1540942591,FR 1540942592,1540942847,DE 1540942848,1540943103,IE 1540943104,1540943359,UA 1540943360,1540943615,BE 1540943616,1540943871,PL 1540943872,1540944127,UA 1540944128,1540944383,IE 1540944384,1540944639,AT 1540944640,1540944895,DE 1540944896,1540945151,UA 1540945152,1540945407,DE 1540945408,1540945663,GB 1540945664,1540945919,AT 1540945920,1540946175,DE 1540946176,1540946431,AT 1540946432,1540946943,UA 1540946944,1540947199,IL 1540947200,1540947455,BG 1540947456,1540947711,PL 1540947712,1540947967,IS 1540947968,1540948479,PL 1540948480,1540948991,RU 1540948992,1540949503,UA 1540950016,1540951551,UA 1540951552,1540952063,RS 1540952064,1540952575,RU 1540952576,1540953087,PL 1540953088,1540953599,RU 1540953600,1540954623,PL 1540954624,1540955647,RO 1540955648,1540956159,NL 1540956160,1540956671,SK 1540956672,1540957183,RU 1540957184,1540957695,DE 1540957696,1540958207,AT 1540958208,1540958719,PL 1540958720,1540959231,RU 1540959232,1540959743,FR 1540959744,1540960255,RU 1540960256,1540960767,PL 1540960768,1540961279,RU 1540961280,1540961791,CZ 1540961792,1540962303,AT 1540962304,1540962815,NL 1540962816,1540963839,UA 1540963840,1540964351,RU 1540964352,1540964863,IR 1540964864,1540965887,UA 1540965888,1540966399,RU 1540966400,1540966911,GB 1540966912,1540967935,RU 1540967936,1540968447,UA 1540968960,1540969471,RO 1540969472,1540969983,GB 1540969984,1540970495,DE 1540970496,1540971007,IE 1540971008,1540971519,UA 1540971520,1540972031,SI 1540972032,1540972543,FR 1540972544,1540973055,CZ 1540973056,1540973567,PL 1540973568,1540974079,UA 1540974080,1540974591,RU 1540974592,1540975103,PL 1540975104,1540975615,UA 1540975616,1540976639,RU 1540976640,1540977151,UA 1540977152,1540977663,PL 1540977664,1540978175,FI 1540978176,1540978687,AT 1540979200,1540979711,SI 1540979712,1540980223,RU 1540980224,1540980735,SI 1540980736,1540980991,CH 1540980992,1540981247,RU 1540981248,1540981503,RO 1540981504,1540981759,DE 1540981760,1540982015,PL 1540982016,1540982271,DK 1540982272,1540982783,GB 1540982784,1540983295,RU 1540983296,1540983551,ME 1540983808,1540984063,FR 1540984064,1540984319,DE 1540984320,1540984575,PL 1540984576,1540984831,RU 1540984832,1540985087,UA 1540985088,1540985343,DE 1540985344,1540985599,NL 1540985600,1540985855,TR 1540985856,1540986111,BG 1540986112,1540986367,AT 1540986368,1540986623,PL 1540986624,1540986879,FR 1540986880,1540987135,PL 1540987136,1540987391,LV 1540987392,1540987647,FR 1540987648,1540987903,GR 1540987904,1540988159,RU 1540988160,1540988415,AM 1540988416,1540988671,PL 1540988672,1540988927,RU 1540988928,1540989183,GB 1540989184,1540989439,PL 1540989696,1540989951,PL 1540989952,1540990207,FR 1540990208,1540990463,DE 1540990464,1540990719,UA 1540990976,1540991231,FR 1540991232,1540991487,HU 1540991488,1540991743,CH 1540991744,1540991999,PL 1540992000,1540992255,FR 1540992256,1540992511,AT 1540992512,1540993279,DE 1540993280,1540993535,LB 1540993536,1540993791,RU 1540993792,1540994047,UA 1540994048,1540994303,RU 1540994304,1540994559,SE 1540994560,1540994815,PL 1540994816,1540995071,UA 1540995072,1540995327,RU 1540995328,1540995583,IQ 1540995584,1540995839,SE 1540995840,1540996095,RO 1540996096,1540996351,DE 1540996352,1540996607,SE 1540996608,1540996863,RU 1540996864,1540997119,NL 1540997120,1540997375,RU 1540997376,1540997631,TR 1540997632,1540998399,RU 1540998400,1540998655,UA 1540998656,1540998911,PL 1540998912,1540999167,DE 1540999424,1540999679,DK 1540999680,1540999935,RU 1540999936,1541000191,RO 1541000192,1541000447,PL 1541000448,1541000703,BG 1541000704,1541000959,DE 1541001216,1541001471,PL 1541001472,1541001727,SE 1541001728,1541001983,NL 1541001984,1541002239,FI 1541002240,1541002495,RU 1541002496,1541002751,AT 1541002752,1541003007,DE 1541003008,1541003263,BG 1541003264,1541003519,GB 1541003520,1541004031,PL 1541004032,1541004287,IL 1541004288,1541004543,RU 1541004544,1541004799,PL 1541004800,1541005055,SI 1541005312,1541005567,PL 1541005568,1541006079,AT 1541006080,1541006335,RU 1541006336,1541006591,PL 1541006592,1541006847,AT 1541006848,1541007103,DE 1541007104,1541007359,GB 1541007360,1541007615,DE 1541007616,1541007871,RU 1541007872,1541008127,FR 1541008128,1541008383,NL 1541008384,1541008639,RU 1541008640,1541008895,GB 1541008896,1541009151,TR 1541009408,1541009663,UA 1541009664,1541009919,CH 1541009920,1541010175,PL 1541010176,1541010431,GR 1541010432,1541010687,UA 1541010688,1541010943,GB 1541010944,1541011199,CY 1541011200,1541011455,CH 1541011456,1541011711,FI 1541012224,1541012479,DE 1541012480,1541012735,FI 1541012992,1541013247,UA 1541013248,1541013503,SI 1541013504,1541014527,RO 1541014528,1541015551,AM 1541015552,1541016575,RU 1541016576,1541018623,UA 1541019648,1541020671,RU 1541020672,1541022719,UA 1541023418,1541023418,UA 1541023744,1541024767,RU 1541024768,1541026815,UA 1541026816,1541027839,LV 1541028864,1541029887,PL 1541030912,1541031935,PL 1541031936,1541032959,UA 1541032960,1541033983,PL 1541033984,1541035007,BG 1541035008,1541036031,RU 1541036032,1541037055,UA 1541037056,1541038079,RU 1541038080,1541039103,UA 1541039104,1541040127,RU 1541040128,1541041151,UA 1541041152,1541044223,RU 1541044224,1541045247,US 1541045248,1541046271,NL 1541046272,1541047295,RU 1541047296,1541047551,UA 1541047552,1541051391,RU 1541051392,1541052415,NL 1541052416,1541053439,RO 1541053440,1541054463,PL 1541054464,1541055487,TJ 1541055488,1541056511,PL 1541056512,1541057535,TJ 1541057536,1541058559,RS 1541058560,1541059583,RU 1541059584,1541060607,AM 1541060608,1541061631,NO 1541061632,1541062655,CZ 1541062656,1541063679,UA 1541063680,1541065727,PL 1541065728,1541066751,NL 1541066752,1541067775,PL 1541067776,1541068799,UA 1541068800,1541069823,PL 1541069824,1541070847,RU 1541070848,1541071871,IT 1541071872,1541072895,RU 1541072896,1541073919,CZ 1541073920,1541074943,GB 1541074944,1541075967,PL 1541075968,1541078015,RU 1541078016,1541079039,RO 1541079040,1541080063,PL 1541080064,1541081087,RU 1541081088,1541082111,DE 1541082112,1541083135,RU 1541083136,1541084159,RO 1541084160,1541086207,RU 1541086208,1541086463,NL 1541086464,1541088255,UA 1541088256,1541089279,RU 1541089280,1541090303,GB 1541090304,1541091327,CZ 1541091328,1541092351,RU 1541092352,1541093375,UA 1541093376,1541094399,RU 1541094400,1541095423,UA 1541095424,1541096447,RU 1541096448,1541097471,AT 1541097472,1541098495,RU 1541098496,1541099519,NL 1541099520,1541100543,UA 1541100544,1541101567,HU 1541101568,1541102591,RU 1541102592,1541103615,SA 1541103616,1541105663,RU 1541105664,1541106687,PL 1541106688,1541107711,NL 1541107712,1541108735,PL 1541108736,1541109759,ES 1541109760,1541110783,PL 1541110784,1541111807,RU 1541111808,1541112831,PL 1541112832,1541113855,SK 1541113856,1541114879,RU 1541114880,1541116927,UA 1541116928,1541117951,RU 1541117952,1541118975,DK 1541118976,1541122047,RU 1541122048,1541123071,UA 1541123072,1541124095,FI 1541124096,1541126143,RU 1541126144,1541127167,PL 1541127168,1541129215,RU 1541129216,1541130239,UA 1541130240,1541132287,RU 1541132288,1541133311,PL 1541133312,1541134335,RO 1541134336,1541135359,SE 1541135360,1541136383,UA 1541136384,1541139455,RU 1541139456,1541140479,HU 1541140480,1541142527,CZ 1541142528,1541143551,RU 1541143552,1541144575,UA 1541144576,1541144831,PL 1541144832,1541145087,RU 1541145088,1541145343,AT 1541145344,1541145599,UA 1541145600,1541145855,IT 1541145856,1541146111,RU 1541146112,1541146367,UA 1541146368,1541146623,DK 1541146624,1541146879,AT 1541146880,1541147135,IL 1541147136,1541147391,PL 1541147392,1541147903,RU 1541147904,1541148415,RO 1541148416,1541148671,GB 1541148672,1541148927,RU 1541148928,1541149439,PL 1541149440,1541149695,SE 1541149696,1541149951,LT 1541149952,1541150207,NL 1541150208,1541150463,IL 1541150464,1541150719,CH 1541150720,1541151231,GB 1541151232,1541151487,RO 1541151488,1541151743,FR 1541152000,1541152255,HU 1541152256,1541152511,NL 1541152512,1541152767,RU 1541152768,1541153023,PL 1541153024,1541153279,RU 1541153280,1541153535,DE 1541153536,1541153791,UA 1541153792,1541154047,DE 1541154048,1541154303,NL 1541154304,1541154559,RU 1541154560,1541154815,PL 1541154816,1541155071,CH 1541155072,1541155327,CY 1541155328,1541155583,GB 1541155584,1541155839,LV 1541155840,1541156095,PL 1541156096,1541156351,IE 1541156352,1541156607,RU 1541156608,1541156863,SE 1541156864,1541157119,RO 1541157120,1541157375,DE 1541157376,1541157631,TR 1541157632,1541157887,KZ 1541157888,1541158143,GB 1541158144,1541158399,NL 1541158400,1541158655,PL 1541158656,1541158911,SI 1541158912,1541159167,DE 1541159168,1541159423,RU 1541159424,1541159679,SE 1541159680,1541159935,LT 1541159936,1541160447,UA 1541160448,1541160703,RU 1541160704,1541160959,RO 1541160960,1541161215,CH 1541161216,1541161471,TR 1541161472,1541161727,ES 1541161728,1541161983,DE 1541161984,1541162239,BE 1541162240,1541162495,RU 1541162496,1541162751,GB 1541163008,1541163263,RO 1541163264,1541163519,PL 1541163520,1541163775,DE 1541163776,1541164031,RO 1541164032,1541164287,RU 1541164288,1541164543,CH 1541164544,1541164799,SI 1541164800,1541165055,IR 1541165056,1541165311,UA 1541165312,1541165567,RU 1541165568,1541165823,NL 1541165824,1541166079,GB 1541166336,1541166591,FR 1541166592,1541166847,RO 1541166848,1541167103,RU 1541167104,1541167359,NL 1541167360,1541167615,AT 1541167872,1541168127,UA 1541168128,1541168639,RU 1541168640,1541168895,MD 1541168896,1541169151,MK 1541169152,1541169407,RO 1541169408,1541169663,PL 1541169664,1541169919,SE 1541169920,1541170431,CH 1541170432,1541170687,NL 1541170688,1541170943,BE 1541170944,1541171199,PL 1541171200,1541171455,UA 1541171456,1541171711,PL 1541171712,1541171967,UA 1541171968,1541172223,SI 1541172224,1541172479,GR 1541172480,1541172735,RU 1541172736,1541172991,IS 1541172992,1541173247,BE 1541173248,1541173503,RU 1541173504,1541173759,UA 1541173760,1541174015,LT 1541174016,1541174271,DE 1541174272,1541174527,FR 1541174528,1541174783,SE 1541174784,1541175039,GB 1541175040,1541175295,SI 1541175296,1541175551,RU 1541175552,1541175807,RO 1541175808,1541176063,CZ 1541176064,1541176319,NL 1541176320,1541176575,AM 1541176576,1541176831,DE 1541177088,1541177343,GB 1541177344,1541177599,CH 1541177600,1541177855,DE 1541177856,1541178111,RO 1541178112,1541178367,RU 1541178368,1541178623,GB 1541178624,1541178879,RU 1541178880,1541179135,DE 1541179136,1541179391,RU 1541179392,1541179647,BE 1541179648,1541179903,RU 1541179904,1541180159,IS 1541180160,1541180415,MT 1541180416,1541180671,UA 1541180672,1541180927,GB 1541180928,1541181183,IT 1541181184,1541181439,NO 1541181440,1541181695,MD 1541181696,1541182207,RU 1541182208,1541182463,NL 1541182464,1541182719,DE 1541182720,1541182975,RO 1541182976,1541183231,SE 1541183232,1541183487,UA 1541183488,1541183743,RU 1541183744,1541183999,DE 1541184000,1541184255,BE 1541184256,1541184511,RU 1541184512,1541184767,SI 1541184768,1541185023,DE 1541185024,1541185279,ES 1541185280,1541185535,DE 1541185536,1541185791,GB 1541185792,1541186047,UA 1541186048,1541186303,CH 1541186304,1541186559,UA 1541186560,1541186815,PL 1541186816,1541187071,NO 1541187072,1541187327,RU 1541187328,1541187583,RO 1541187584,1541187839,IT 1541187840,1541188351,RU 1541188352,1541188607,FR 1541188608,1541188863,HU 1541188864,1541189119,RU 1541189120,1541189375,UA 1541189376,1541189631,GB 1541189888,1541190143,PL 1541190144,1541190399,GB 1541190400,1541190655,AT 1541190656,1541190911,GB 1541190912,1541191167,RU 1541191168,1541191423,TR 1541191424,1541191679,RO 1541191680,1541192191,NL 1541192448,1541192703,ME 1541192704,1541192959,RU 1541192960,1541193215,BG 1541193216,1541193471,UA 1541193472,1541193727,BE 1541193728,1541193983,SE 1541193984,1541194239,IL 1541194240,1541194495,SI 1541194496,1541194751,JO 1541194752,1541195007,NO 1541195008,1541195263,FR 1541195264,1541195519,UA 1541195520,1541195775,GB 1541195776,1541196031,FR 1541196032,1541196287,CZ 1541196800,1541197055,UA 1541197056,1541197311,PL 1541197312,1541197567,RU 1541197568,1541197823,MD 1541197824,1541198079,GR 1541198080,1541198335,LT 1541198336,1541198591,AT 1541198592,1541198847,RU 1541198848,1541199103,GB 1541199104,1541199359,SI 1541199360,1541199615,GB 1541199616,1541199871,RU 1541199872,1541200127,GB 1541200128,1541200383,NO 1541200384,1541201151,RU 1541201152,1541201407,SI 1541201408,1541201663,PL 1541201664,1541201919,RU 1541201920,1541202175,IE 1541202176,1541202431,PL 1541202432,1541202687,ES 1541202688,1541202943,SE 1541202944,1541203199,DE 1541203456,1541203711,UA 1541203712,1541203967,GB 1541203968,1541204223,RO 1541204224,1541204479,RU 1541204480,1541204735,GB 1541204736,1541204991,UA 1541204992,1541205247,GR 1541205248,1541205503,SK 1541205504,1541205759,PL 1541205760,1541206015,AT 1541206016,1541206271,SI 1541206272,1541206527,FI 1541206528,1541206783,TR 1541206784,1541207039,NO 1541207040,1541207295,DE 1541207296,1541207807,FR 1541207808,1541208063,HU 1541208064,1541208319,FR 1541208320,1541208575,NL 1541208576,1541208831,BY 1541208832,1541209087,HU 1541209088,1541209599,UA 1541209600,1541209855,SE 1541209856,1541210111,UA 1541210112,1541210623,RU 1541210624,1541211135,CZ 1541211136,1541211647,SK 1541211648,1541212159,UA 1541212160,1541212671,DE 1541212672,1541213183,MT 1541213184,1541213695,DE 1541213696,1541214207,UA 1541214208,1541215743,RU 1541215744,1541216255,SA 1541216256,1541216767,RU 1541216768,1541217279,PL 1541217280,1541218303,RU 1541218304,1541218815,IT 1541218816,1541219839,RU 1541219840,1541220351,CZ 1541220352,1541221375,RU 1541221376,1541221887,PL 1541221888,1541222399,CZ 1541222400,1541222911,RU 1541222912,1541223423,DK 1541223424,1541223935,UA 1541223936,1541224447,GB 1541224448,1541224959,RU 1541224960,1541225471,DE 1541225472,1541225983,RU 1541225984,1541226495,LV 1541226496,1541227007,UA 1541227008,1541227519,FI 1541227520,1541227775,RU 1541227776,1541228031,NL 1541228032,1541228543,RU 1541228544,1541229055,CZ 1541229056,1541229567,UA 1541230080,1541230591,RO 1541230592,1541231103,RU 1541231104,1541231615,GB 1541231616,1541232127,UA 1541232128,1541232639,RU 1541232640,1541233151,PL 1541233152,1541233663,RU 1541234176,1541234687,RO 1541234688,1541235199,NL 1541235200,1541235455,RU 1541235456,1541235711,NL 1541235712,1541236223,AT 1541236224,1541236735,RU 1541236736,1541237247,DE 1541237248,1541238271,RU 1541238272,1541239295,SK 1541239296,1541239807,PL 1541240320,1541240831,CH 1541240832,1541241343,DE 1541241344,1541241855,PL 1541241856,1541242367,UA 1541242368,1541242879,PL 1541242880,1541243391,KW 1541243392,1541243903,NO 1541243904,1541244415,UA 1541244416,1541244927,RS 1541244928,1541245439,UA 1541245440,1541245951,AT 1541245952,1541246463,RU 1541246464,1541246975,DK 1541246976,1541247487,PL 1541247488,1541247999,FR 1541248000,1541248511,CZ 1541248512,1541249023,NL 1541249024,1541249535,GB 1541249536,1541250047,UA 1541250048,1541250559,RU 1541250560,1541251071,PL 1541251072,1541251583,NL 1541251584,1541252607,RU 1541252608,1541253119,UA 1541253120,1541253631,GB 1541253632,1541254143,SI 1541254144,1541254655,PL 1541254656,1541255679,RU 1541255680,1541256191,UA 1541256192,1541256703,RU 1541256704,1541257215,DE 1541257216,1541257727,SA 1541257728,1541258239,EE 1541258240,1541258751,RU 1541258752,1541259263,UA 1541259264,1541259775,CH 1541259776,1541260287,RU 1541260288,1541260799,DK 1541260800,1541261823,RU 1541261824,1541262335,SA 1541262336,1541262847,DE 1541262848,1541263359,DK 1541263360,1541263871,NL 1541263872,1541264383,UA 1541264384,1541264895,CZ 1541264896,1541265407,PL 1541265408,1541265919,RS 1541265920,1541266431,UA 1541266432,1541266943,KW 1541266944,1541267455,CY 1541267456,1541267967,FR 1541267968,1541268479,DE 1541268480,1541268991,AM 1541268992,1541269503,NL 1541269504,1541270015,RU 1541270016,1541270527,UA 1541270528,1541271039,IT 1541271040,1541271551,FI 1541271552,1541272063,RO 1541272064,1541272575,RU 1541272576,1541273087,FR 1541273088,1541274623,RU 1541274624,1541275135,UA 1541275136,1541275647,FR 1541275648,1541276671,UA 1541276672,1541277695,RS 1541277696,1541278719,GB 1541278720,1541280767,UA 1541280768,1541281791,BG 1541281792,1541282815,PL 1541282816,1541283839,RU 1541283840,1541286911,UA 1541286912,1541287935,DE 1541287936,1541288191,UA 1541288192,1541288959,RU 1541288960,1541289983,CZ 1541289984,1541291007,PL 1541291008,1541293055,UA 1541293056,1541295103,PL 1541295104,1541297151,UA 1541297152,1541298175,CH 1541298176,1541299199,KZ 1541299200,1541300223,RO 1541300224,1541301247,DE 1541301248,1541302271,PL 1541302272,1541303295,SK 1541303296,1541304319,PL 1541304320,1541305343,UA 1541305344,1541306367,PL 1541306368,1541307391,RU 1541307392,1541308415,PL 1541308416,1541309439,RU 1541309440,1541310463,CH 1541310464,1541311487,UA 1541311488,1541314559,PL 1541314560,1541315583,UA 1541315584,1541316607,RU 1541316608,1541317631,PL 1541317632,1541318655,RU 1541318656,1541320703,UA 1541320704,1541321727,DE 1541321728,1541322751,UA 1541322752,1541323775,PL 1541323776,1541324799,FI 1541324800,1541325823,PL 1541325824,1541326847,IR 1541326848,1541327871,SA 1541327872,1541328895,CZ 1541328896,1541329919,RU 1541329920,1541330943,PL 1541330944,1541331967,RU 1541331968,1541332991,UA 1541332992,1541334015,PL 1541334016,1541335039,RU 1541335040,1541336063,DE 1541336064,1541338111,RU 1541338112,1541341183,UA 1541341184,1541341439,TR 1541341440,1541341695,RU 1541341696,1541341951,DE 1541341952,1541342463,PL 1541342464,1541342719,FR 1541342720,1541342975,PL 1541342976,1541343231,RU 1541343232,1541343487,TR 1541343488,1541343743,IE 1541343744,1541343999,GB 1541344000,1541344255,IL 1541344256,1541344511,IT 1541344512,1541345023,PL 1541345024,1541345279,RU 1541345280,1541345535,GB 1541345536,1541345791,CH 1541345792,1541346047,DE 1541346048,1541346303,UA 1541346304,1541346559,DE 1541346560,1541346815,BE 1541346816,1541347071,FR 1541347072,1541347327,PL 1541347328,1541347583,HR 1541347584,1541347839,RU 1541347840,1541348095,SI 1541348096,1541348351,UA 1541348352,1541348607,RU 1541348608,1541348863,HR 1541348864,1541349119,UA 1541349120,1541349375,PL 1541349376,1541349631,RU 1541349632,1541349887,PL 1541349888,1541350143,RU 1541350144,1541350399,FR 1541350400,1541350655,SE 1541350656,1541350911,RU 1541350912,1541351167,AT 1541351168,1541351423,SI 1541351424,1541351679,FR 1541351680,1541351935,DE 1541351936,1541352191,GR 1541352192,1541352447,SI 1541352448,1541352703,RU 1541352704,1541352959,RO 1541352960,1541353215,GB 1541353216,1541353471,SE 1541353472,1541353727,UA 1541353728,1541353983,SI 1541353984,1541354239,RO 1541354240,1541354495,SE 1541354496,1541354751,PL 1541354752,1541355007,UA 1541355008,1541355263,IL 1541355264,1541355519,PL 1541355520,1541355775,NL 1541355776,1541356031,PL 1541356032,1541356287,GB 1541356288,1541356543,UA 1541356544,1541356799,RU 1541356800,1541357055,ES 1541357056,1541357311,FR 1541357312,1541357567,RU 1541357568,1541357823,PL 1541357824,1541358079,HR 1541358080,1541358335,BG 1541358336,1541358591,GB 1541358592,1541358847,PL 1541358848,1541359103,SK 1541359360,1541359615,FR 1541359616,1541359871,PL 1541359872,1541360127,FR 1541360128,1541360383,CZ 1541360640,1541360895,FR 1541360896,1541361151,UA 1541361152,1541361407,PL 1541361408,1541361663,CH 1541361664,1541361919,SI 1541361920,1541362175,PL 1541362176,1541362431,NL 1541362432,1541362687,PL 1541362688,1541362943,FR 1541362944,1541363199,DK 1541363200,1541363455,UA 1541363456,1541363711,IE 1541363712,1541364223,UA 1541364224,1541364479,RU 1541364480,1541364735,AT 1541364736,1541364991,SE 1541364992,1541365247,RU 1541365248,1541365503,GB 1541365504,1541365759,NL 1541365760,1541366015,DE 1541366016,1541366271,UA 1541366272,1541366527,RU 1541366784,1541367039,NO 1541367040,1541367295,AT 1541367296,1541367807,UA 1541367808,1541368063,GR 1541368064,1541368319,RU 1541368320,1541368575,IL 1541368576,1541368831,FI 1541368832,1541369343,RU 1541369344,1541369599,UA 1541369600,1541369855,GB 1541369856,1541370111,UA 1541370112,1541370367,SI 1541370368,1541370623,DE 1541370624,1541370879,SI 1541370880,1541371135,FI 1541371136,1541371391,RO 1541371392,1541371647,RU 1541371648,1541371903,PL 1541371904,1541372159,RU 1541372160,1541372415,CH 1541372416,1541372671,UA 1541372672,1541373183,NL 1541373184,1541373439,FR 1541373440,1541373695,GB 1541373696,1541373951,UA 1541373952,1541374207,RU 1541374208,1541374463,DE 1541374464,1541374719,PL 1541374720,1541374975,NL 1541374976,1541375231,GR 1541375232,1541375487,UA 1541375488,1541375999,PL 1541376000,1541376255,UA 1541376256,1541376767,RU 1541376768,1541377023,FR 1541377024,1541377279,NL 1541377280,1541377535,DE 1541377536,1541377791,PL 1541377792,1541378047,ES 1541378048,1541378303,RU 1541378304,1541378559,DE 1541378560,1541378815,GB 1541378816,1541379071,AT 1541379072,1541379327,RO 1541379328,1541379583,UA 1541379584,1541379839,FR 1541379840,1541380095,DE 1541380096,1541380351,UA 1541380352,1541380607,RU 1541380608,1541380863,CH 1541380864,1541381119,IT 1541381120,1541381375,RO 1541381376,1541381631,TR 1541381632,1541381887,RO 1541381888,1541382143,FR 1541382144,1541382399,PL 1541382400,1541382655,IM 1541382656,1541382911,RS 1541383168,1541383423,CY 1541383424,1541383679,LV 1541383680,1541383935,SI 1541383936,1541384447,PL 1541384704,1541384959,RU 1541384960,1541385215,PL 1541385216,1541385471,NL 1541385472,1541385727,SK 1541385728,1541385983,SI 1541385984,1541386239,PL 1541386240,1541386495,RU 1541386496,1541386751,UA 1541386752,1541387007,RU 1541387008,1541387263,CH 1541387264,1541387519,UA 1541387520,1541387775,RU 1541387776,1541388031,SI 1541388032,1541388287,RO 1541388288,1541388543,PL 1541388544,1541388799,RO 1541388800,1541389055,CH 1541389056,1541389311,NL 1541389312,1541389567,RU 1541389568,1541389823,SI 1541389824,1541390079,RO 1541390080,1541390335,NL 1541390336,1541390591,DK 1541390592,1541390847,SI 1541390848,1541391103,RU 1541391104,1541391359,BE 1541391360,1541391615,PL 1541391616,1541391871,SI 1541391872,1541392127,DE 1541392128,1541392383,RU 1541392384,1541392639,RO 1541392640,1541392895,AT 1541392896,1541393151,DE 1541393152,1541393407,GB 1541393408,1541393663,DE 1541393664,1541393919,UA 1541393920,1541394175,ES 1541394176,1541394431,FR 1541394432,1541394687,CY 1541394688,1541394943,SK 1541394944,1541395199,SA 1541395200,1541395455,DE 1541395456,1541395711,PL 1541395712,1541395967,NO 1541395968,1541396223,UA 1541396224,1541396479,LB 1541396480,1541396735,UA 1541396736,1541396991,RU 1541396992,1541397247,GB 1541397248,1541397503,SE 1541397504,1541397759,NL 1541397760,1541398015,PL 1541398016,1541398271,HU 1541398272,1541398527,UA 1541398528,1541398783,RU 1541398784,1541399039,PL 1541399040,1541399295,RU 1541399296,1541399551,UA 1541399552,1541399807,DE 1541399808,1541400063,RU 1541400064,1541400319,SI 1541400320,1541400831,SE 1541400832,1541401087,NL 1541401088,1541401343,UA 1541401344,1541401599,DK 1541401600,1541401855,LV 1541401856,1541402111,HR 1541402112,1541402367,SI 1541402368,1541402623,RU 1541402624,1541402879,FR 1541402880,1541403135,PL 1541403136,1541403391,RU 1541403392,1541403647,EE 1541403648,1541403903,RU 1541403904,1541404159,GE 1541404160,1541404415,RU 1541404416,1541404671,DE 1541404672,1541404927,AT 1541404928,1541405183,HR 1541405184,1541405439,PL 1541405440,1541405951,RU 1541405952,1541406207,FR 1541406208,1541406463,RU 1541406464,1541406719,AT 1541406720,1541407231,LV 1541407232,1541407743,UA 1541407744,1541408255,FI 1541408256,1541408767,FR 1541408768,1541409791,UA 1541409792,1541410303,LV 1541410304,1541410815,RU 1541410816,1541411327,UA 1541411328,1541412863,RU 1541412864,1541413375,UA 1541413376,1541413887,GB 1541413888,1541414399,PL 1541414400,1541414911,UA 1541414912,1541415935,RU 1541415936,1541416447,SE 1541416448,1541416959,PL 1541416960,1541417471,RO 1541417472,1541417983,SK 1541417984,1541418495,UA 1541418496,1541419007,PL 1541419008,1541419519,CZ 1541419520,1541420031,RO 1541420032,1541420543,RU 1541420544,1541421055,NL 1541421056,1541421567,PL 1541421568,1541422079,CZ 1541422080,1541422591,PL 1541422592,1541423103,RU 1541423616,1541424127,AT 1541424128,1541424639,UA 1541424640,1541425151,AT 1541425152,1541425663,IT 1541425664,1541426175,UA 1541426176,1541426687,RU 1541426688,1541427199,UA 1541427200,1541428223,RU 1541428224,1541428735,UA 1541428736,1541429247,RU 1541429248,1541429759,FI 1541429760,1541430271,CZ 1541430272,1541430783,LT 1541430784,1541431295,CH 1541431296,1541431807,UA 1541431808,1541432319,RU 1541432832,1541433343,RU 1541433344,1541433855,PL 1541433856,1541434367,RU 1541434368,1541434879,GB 1541434880,1541435391,IR 1541435392,1541435903,UA 1541435904,1541436415,RU 1541436416,1541437951,PL 1541437952,1541438463,NL 1541438464,1541439487,RU 1541439488,1541439999,PL 1541440000,1541441023,RU 1541441024,1541441535,LT 1541441536,1541442559,RU 1541442560,1541443071,NL 1541443072,1541444607,PL 1541444608,1541445119,FR 1541445120,1541445631,ES 1541445632,1541446143,GB 1541446144,1541446655,RU 1541446656,1541447167,UA 1541447168,1541447679,RU 1541447680,1541448191,NL 1541448192,1541448703,FR 1541448704,1541449215,NL 1541449216,1541449727,RU 1541449728,1541450239,UA 1541450240,1541450751,RU 1541450752,1541451263,SI 1541451264,1541451775,DK 1541451776,1541452287,IR 1541452288,1541452799,UA 1541452800,1541453311,PL 1541453312,1541453823,RU 1541453824,1541454335,PL 1541454336,1541454847,GB 1541454848,1541455359,EE 1541455360,1541455871,GB 1541455872,1541456383,PL 1541456384,1541456895,RU 1541456896,1541457919,PL 1541457920,1541458943,UA 1541458944,1541460479,RU 1541460480,1541460991,DK 1541460992,1541461503,RO 1541461504,1541462527,PL 1541462528,1541463039,RU 1541463040,1541463551,PL 1541463552,1541464063,UA 1541464064,1541464575,PL 1541464576,1541465087,DE 1541465600,1541466111,FR 1541466112,1541467135,RU 1541467136,1541467647,PL 1541467648,1541468159,SI 1541468160,1541468671,ES 1541468672,1541469183,NL 1541469184,1541469695,SE 1541470208,1541470719,NL 1541470720,1541471231,RS 1541471232,1541472255,UA 1541472256,1541473279,GB 1541473280,1541474303,UA 1541474304,1541475327,PL 1541475328,1541476351,RO 1541476352,1541477375,GB 1541477376,1541479423,RU 1541479424,1541480447,PL 1541480448,1541481471,RO 1541481472,1541485567,UA 1541485568,1541486591,IR 1541486592,1541487615,UA 1541487616,1541488639,NO 1541488640,1541489663,PL 1541489664,1541490687,FI 1541490688,1541491711,UA 1541491712,1541492735,RU 1541492736,1541493759,UA 1541493760,1541494783,CZ 1541494784,1541496831,UA 1541496832,1541497855,SI 1541497856,1541498879,RU 1541498880,1541499903,LT 1541499904,1541500927,UA 1541500928,1541501951,RU 1541501952,1541503999,UA 1541504000,1541506047,RU 1541506048,1541507071,PL 1541507072,1541510143,UA 1541510144,1541511167,RU 1541511168,1541512191,UA 1541512192,1541513215,PL 1541513216,1541517311,UA 1541517312,1541518335,PL 1541518336,1541519359,IT 1541519360,1541521407,PL 1541521408,1541522431,RU 1541522432,1541524479,UA 1541524480,1541525503,SA 1541525504,1541528575,RU 1541528576,1541532671,UA 1541532672,1541533695,RU 1541533696,1541534719,PL 1541534720,1541535743,IT 1541535744,1541536255,US 1541536256,1541536511,IE 1541536512,1541536767,US 1541536768,1541537791,RU 1541537792,1541538303,GB 1541538304,1541538815,RO 1541538816,1541539327,UA 1541539328,1541539839,PL 1541539840,1541540351,HR 1541540352,1541541375,RU 1541541376,1541541887,UA 1541541888,1541542399,PL 1541542400,1541542911,FR 1541542912,1541543423,MK 1541543424,1541543935,PL 1541543936,1541544447,GB 1541544448,1541544959,PL 1541544960,1541545471,FR 1541545472,1541545983,RU 1541545984,1541546495,LV 1541546496,1541547007,UA 1541547008,1541547519,SE 1541547520,1541548543,PL 1541548544,1541549567,UA 1541549568,1541550079,DE 1541550080,1541550591,RU 1541550592,1541551103,PL 1541551104,1541552127,RO 1541552128,1541553151,UA 1541553152,1541555199,RU 1541555200,1541556223,PL 1541556480,1541556735,RU 1541556736,1541557247,IT 1541557504,1541557759,SI 1541558016,1541558271,HU 1541558272,1541559295,RU 1541560320,1541561343,DE 1541561344,1541562367,RU 1541562624,1541562879,RU 1541562880,1541563135,FR 1541563136,1541563391,NL 1541563392,1541564415,PL 1541564416,1541565439,RU 1541565440,1541565951,IT 1541565952,1541566463,PL 1541566464,1541567487,SK 1541567488,1541567743,RU 1541567744,1541567999,PL 1541568000,1541568511,SE 1541568512,1541569535,RU 1541569536,1541570559,NL 1541570560,1541571583,RU 1541571584,1541572607,UA 1541572608,1541573119,RU 1541573120,1541573631,UA 1541573632,1541574655,RU 1541574656,1541575167,SE 1541575168,1541575423,PL 1541575424,1541575679,IT 1541575680,1541577727,RU 1541577728,1541578751,AT 1541578752,1541579007,GB 1541579008,1541579263,RU 1541579264,1541579775,DE 1541579776,1541580799,RU 1541580800,1541581311,KZ 1541581312,1541581567,HR 1541581568,1541582847,RU 1541582848,1541583359,ES 1541583360,1541583615,RU 1541583616,1541583871,GE 1541583872,1541584127,SE 1541584128,1541584383,GB 1541584384,1541584895,NL 1541585152,1541585663,RU 1541585664,1541585919,UA 1541585920,1541586431,RU 1541586432,1541587199,UA 1541587200,1541587455,FR 1541587456,1541588991,PL 1541588992,1541589247,RU 1541589248,1541589503,UA 1541589504,1541590015,CH 1541590016,1541590527,RU 1541590528,1541590783,GB 1541590784,1541591039,UA 1541591040,1541592063,RU 1541592064,1541592575,UA 1541592576,1541593087,FR 1541593088,1541594111,CZ 1541594112,1541594367,AL 1541594624,1541595135,RU 1541595136,1541595647,IR 1541595648,1541596159,BG 1541596160,1541597695,PL 1541597696,1541597951,RU 1541597952,1541598207,AM 1541598208,1541599231,PL 1541599232,1541600255,RS 1541600256,1541600511,HR 1541600512,1541600767,IL 1541600768,1541601023,SI 1541601024,1541601279,RU 1541601280,1541601791,DE 1541601792,1541602047,RU 1541602048,1541602303,PL 1541602304,1541603327,UA 1541603328,1541604351,PL 1541604352,1541605119,TR 1541605120,1541605375,CZ 1541605376,1541606911,RU 1541606912,1541607423,UZ 1541607424,1541608447,RU 1541608448,1541608703,DE 1541608704,1541608959,PL 1541608960,1541609215,SA 1541609216,1541609471,RU 1541609472,1541609983,SA 1541609984,1541610239,GB 1541610240,1541610495,NL 1541610496,1541611775,RU 1541611776,1541612031,RO 1541612032,1541612543,RU 1541612544,1541614079,PL 1541614080,1541614335,UA 1541614336,1541614591,SI 1541614592,1541615615,RU 1541615616,1541615871,CH 1541615872,1541616127,SE 1541616128,1541617663,RU 1541617664,1541619199,PL 1541619200,1541619455,GB 1541619456,1541620735,PL 1541620736,1541620991,RU 1541620992,1541621247,UA 1541621248,1541621759,IL 1541621760,1541622271,RO 1541622272,1541622527,RU 1541622528,1541622783,NL 1541622784,1541623295,PL 1541623296,1541623551,GB 1541623552,1541623807,RU 1541623808,1541624831,PL 1541624832,1541625855,RU 1541625856,1541626367,PL 1541626368,1541626623,RO 1541626624,1541627903,RU 1541627904,1541628415,CZ 1541628416,1541628927,DE 1541628928,1541629183,PT 1541629184,1541629439,LV 1541629440,1541630975,PL 1541630976,1541631231,GR 1541631232,1541631487,IT 1541631488,1541631999,SI 1541632000,1541632511,RU 1541632512,1541632767,NL 1541632768,1541634303,PL 1541634304,1541634559,MD 1541634560,1541635071,PL 1541635072,1541636095,GB 1541636096,1541636863,AT 1541636864,1541637119,RO 1541637632,1541638143,CZ 1541638144,1541638399,RU 1541638656,1541639167,HU 1541639168,1541640191,RU 1541640192,1541641215,KZ 1541641216,1541641727,RU 1541641728,1541642239,UA 1541642240,1541643263,RU 1541643264,1541644287,PL 1541644288,1541645311,RU 1541645312,1541645823,IL 1541645824,1541646079,RO 1541646080,1541646335,PL 1541646336,1541646847,RU 1541647360,1541648383,RU 1541648384,1541648639,PL 1541648640,1541648895,DK 1541648896,1541649151,GB 1541649152,1541649407,NL 1541649408,1541650431,UA 1541650432,1541650687,RU 1541650688,1541650943,MD 1541650944,1541651199,SE 1541651200,1541651455,FI 1541651456,1541652479,RU 1541652480,1541652991,FI 1541652992,1541653247,FR 1541653248,1541653503,CZ 1541653504,1541654015,PL 1541654016,1541654271,RU 1541654272,1541655551,PL 1541655552,1541656063,AT 1541656064,1541656575,UA 1541656576,1541656831,SE 1541656832,1541657087,BE 1541657088,1541657599,RU 1541657600,1541659647,PL 1541659648,1541660671,GB 1541660672,1541661695,SK 1541661696,1541661951,RU 1541661952,1541662207,NL 1541662208,1541662719,AT 1541662720,1541663743,CZ 1541663744,1541664767,RO 1541664768,1541666047,RU 1541666048,1541666303,GB 1541666816,1541667839,NO 1541667840,1541668095,CH 1541668352,1541668607,UA 1541668608,1541668863,GE 1541668864,1541669887,GB 1541669888,1541670911,LV 1541670912,1541671423,PL 1541671424,1541671679,RU 1541671680,1541671935,PL 1541671936,1541672959,UA 1541672960,1541674495,RS 1541674496,1541675007,KG 1541675008,1541675519,IE 1541675520,1541676031,RU 1541676032,1541676287,PL 1541676288,1541676543,RO 1541676544,1541677055,RU 1541677056,1541678079,PL 1541678080,1541678591,RO 1541678592,1541678847,BG 1541678848,1541679103,KZ 1541679104,1541679615,RU 1541679616,1541680127,PL 1541680128,1541681151,CZ 1541681152,1541682175,RU 1541682176,1541682687,DE 1541682688,1541683199,RU 1541683200,1541683455,PL 1541683456,1541683711,RU 1541683712,1541684223,UA 1541684224,1541684735,CH 1541684736,1541686271,RU 1541686272,1541687295,UA 1541687296,1541688319,GB 1541688320,1541688831,RU 1541688832,1541689343,GB 1541689344,1541690367,PL 1541690368,1541691391,LT 1541691392,1541691903,PL 1541691904,1541692159,SE 1541692160,1541692415,ES 1541692416,1541693439,PL 1541693440,1541694463,RU 1541694464,1541694719,CZ 1541694720,1541694975,DE 1541694976,1541695487,RU 1541695488,1541696511,DE 1541696512,1541697535,MD 1541697536,1541698047,PL 1541698048,1541698303,DK 1541698304,1541698559,GB 1541698560,1541699327,RU 1541699328,1541699583,RO 1541699584,1541700095,RU 1541700096,1541700607,UA 1541700608,1541700863,RU 1541700864,1541701119,PL 1541701120,1541701631,IL 1541701632,1541702655,SA 1541703424,1541703679,RU 1541703680,1541704703,PL 1541704704,1541706239,RO 1541706240,1541706751,UA 1541706752,1541707263,RU 1541707264,1541707519,DE 1541707520,1541707775,NL 1541707776,1541708799,DE 1541708800,1541709823,PL 1541710080,1541710335,RU 1541710336,1541710847,IL 1541710848,1541711871,SK 1541711872,1541712127,FR 1541712128,1541712383,TR 1541712384,1541712895,DE 1541713920,1541714175,NL 1541714176,1541716223,RU 1541716224,1541716479,PL 1541716480,1541716991,GB 1541716992,1541717247,FR 1541717248,1541717503,IR 1541717504,1541718015,DE 1541718016,1541718271,KZ 1541718272,1541719039,NO 1541719040,1541720063,PL 1541720064,1541721087,RU 1541721088,1541721343,PL 1541721344,1541721599,RU 1541721600,1541721855,GB 1541721856,1541722111,SI 1541722112,1541723135,RU 1541723136,1541723647,HU 1541723648,1541723903,NO 1541723904,1541724159,BE 1541724160,1541725183,CZ 1541725184,1541727487,RU 1541727488,1541727743,UA 1541727744,1541727999,RU 1541728256,1541729023,GB 1541729024,1541729279,DE 1541729280,1541729535,UA 1541729536,1541729791,PL 1541729792,1541730303,RU 1541730304,1541730815,ES 1541730816,1541731071,GB 1541731072,1541731327,DE 1541731328,1541731839,SK 1541731840,1541732351,RU 1541732352,1541732607,IL 1541732608,1541732863,RO 1541732864,1541733119,RU 1541733120,1541733375,GB 1541733376,1541734143,RS 1541734144,1541734399,TR 1541734400,1541734911,RO 1541734912,1541735167,RU 1541735168,1541735423,DE 1541735424,1541735679,GB 1541735936,1541736447,RO 1541736448,1541737471,RU 1541737472,1541739519,RO 1541739520,1541739775,FR 1541739776,1541740031,NO 1541740032,1541740287,PL 1541740288,1541740543,NL 1541740544,1541740799,CZ 1541741056,1541741567,PL 1541741568,1541742079,SK 1541742080,1541742591,RO 1541742592,1541743103,SA 1541743104,1541743615,TR 1541743616,1541744639,SK 1541744640,1541745663,PL 1541745664,1541746175,TR 1541746688,1541746943,RU 1541746944,1541747199,NL 1541747200,1541747711,RU 1541747712,1541748735,UA 1541748992,1541749247,AT 1541749248,1541749503,ES 1541749504,1541749759,RU 1541749760,1541750783,NL 1541750784,1541751295,AE 1541751296,1541751807,UA 1541751808,1541752831,PL 1541752832,1541753087,SI 1541753088,1541753343,GB 1541753344,1541753855,RU 1541753856,1541754879,UA 1541754880,1541755391,IT 1541755392,1541757439,PL 1541757952,1541758207,GB 1541758208,1541758463,HU 1541758464,1541758719,RU 1541758720,1541758975,FR 1541758976,1541760255,RU 1541760256,1541760511,UA 1541760512,1541761023,CH 1541761024,1541761535,KG 1541761536,1541762047,PL 1541762048,1541763583,RU 1541763584,1541763839,SE 1541763840,1541764095,UA 1541764096,1541765119,RU 1541765120,1541766143,UA 1541766144,1541767167,GB 1541767168,1541767679,UA 1541767680,1541768191,FR 1541769216,1541769471,FR 1541769472,1541770239,FI 1541770240,1541770495,CH 1541770496,1541770751,SE 1541770752,1541771263,NO 1541771264,1541771775,NL 1541771776,1541772031,RU 1541772032,1541772287,RO 1541772288,1541773311,KZ 1541773312,1541773823,NL 1541773824,1541774079,RU 1541774080,1541774335,TR 1541774336,1541775359,RO 1541775360,1541776895,UZ 1541776896,1541777151,GB 1541777152,1541777407,UA 1541777408,1541778431,DE 1541778432,1541778687,FR 1541778688,1541779455,GB 1541779456,1541779967,RU 1541779968,1541780479,DE 1541780480,1541780735,ES 1541780736,1541780991,GB 1541781248,1541781503,RO 1541781504,1541781759,TR 1541781760,1541782015,RU 1541782016,1541782271,RO 1541782272,1541782527,GB 1541782528,1541783551,RU 1541783552,1541783807,IE 1541783808,1541784063,PL 1541784064,1541784575,DE 1541784576,1541785855,RU 1541785856,1541786111,GB 1541786112,1541786623,RU 1541786624,1541787647,UA 1541787648,1541788159,RU 1541788160,1541788415,UA 1541788416,1541788671,RU 1541788672,1541789183,PL 1541789184,1541789695,IR 1541789696,1541790719,UA 1541790720,1541790975,SA 1541790976,1541791231,RU 1541791232,1541791743,GB 1541791744,1541792255,KG 1541792256,1541792511,UA 1541792512,1541792767,FR 1541792768,1541793023,RO 1541793024,1541793279,HR 1541793280,1541793791,FR 1541793792,1541794047,NL 1541794048,1541794815,RU 1541794816,1541795071,CH 1541795072,1541795327,RU 1541795328,1541795583,PL 1541795584,1541795839,ES 1541795840,1541796863,UA 1541796864,1541797375,RU 1541797376,1541797887,GB 1541797888,1541798911,PL 1541798912,1541799935,CZ 1541799936,1541800447,FR 1541800448,1541800959,AT 1541800960,1541801471,FI 1541801472,1541801983,BG 1541801984,1541802495,PL 1541802496,1541803007,RU 1541803008,1541804031,LT 1541804032,1541804287,GB 1541804288,1541804543,PL 1541804544,1541805567,RU 1541805568,1541805823,DE 1541805824,1541806079,RU 1541806080,1541806335,PL 1541806336,1541806591,UA 1541806592,1541807103,RU 1541807104,1541808127,UA 1541808128,1541808383,IR 1541808384,1541809151,NL 1541809152,1541809663,PL 1541809664,1541810175,GB 1541810176,1541810431,PT 1541810432,1541810687,AE 1541810688,1541811199,PL 1541811200,1541811711,SK 1541811712,1541811967,NL 1541811968,1541812991,RU 1541812992,1541813247,NL 1541813248,1541813759,LT 1541813760,1541814015,RU 1541814016,1541814783,ES 1541814784,1541815295,PL 1541815296,1541816319,RU 1541816320,1541816575,BE 1541816576,1541816831,RU 1541816832,1541817343,FR 1541817344,1541818367,DK 1541818368,1541818623,RU 1541818624,1541818879,TR 1541818880,1541819903,PL 1541819904,1541820159,SE 1541820160,1541820415,IL 1541820416,1541820671,MD 1541820672,1541820927,TR 1541820928,1541821183,RU 1541821184,1541821439,DE 1541821440,1541821695,RU 1541821696,1541821951,TR 1541821952,1541822975,PL 1541822976,1541823231,SI 1541823232,1541823487,RU 1541823488,1541823999,UA 1541824000,1541824511,RU 1541824512,1541824767,IT 1541824768,1541825023,GB 1541825024,1541825535,PL 1541825536,1541826047,RU 1541826048,1541826559,IT 1541826560,1541827071,ES 1541827072,1541827327,LV 1541827328,1541827583,RU 1541827584,1541828095,SE 1541828096,1541828351,RU 1541828608,1541830911,PL 1541830912,1541831167,UA 1541831168,1541831423,PL 1541831424,1541831679,RO 1541831680,1541832191,SA 1541832192,1541833983,SE 1541833984,1541834239,RU 1541834496,1541834751,RU 1541835776,1541836287,CH 1541836288,1541836543,AT 1541836800,1541837055,CZ 1541837056,1541837311,IT 1541837312,1541837567,RU 1541837824,1541838079,PL 1541838080,1541839871,RU 1541839872,1541840383,PL 1541840384,1541840639,RU 1541840640,1541840895,PL 1541840896,1541841407,DE 1541841408,1541842943,PL 1541842944,1541843199,GB 1541843200,1541843455,FR 1541843456,1541843967,BE 1541843968,1541844991,DE 1541844992,1541846015,BE 1541846016,1541846271,PL 1541846272,1541846527,GB 1541847040,1541848063,RU 1541848064,1541848319,HU 1541848320,1541848575,GB 1541848576,1541849087,RU 1541849088,1541850111,BG 1541850112,1541850623,RU 1541850624,1541851135,UA 1541851136,1541852671,PL 1541852672,1541853183,RO 1541853184,1541854207,RU 1541854208,1541854463,FR 1541854464,1541854719,KW 1541854720,1541854975,MD 1541854976,1541855999,RU 1541856000,1541856255,MK 1541856256,1541856511,UA 1541856512,1541857279,PL 1541857280,1541857535,RU 1541857536,1541857791,KW 1541857792,1541858303,RU 1541858816,1541859327,BG 1541859328,1541859583,RO 1541859584,1541859839,PL 1541859840,1541860095,RO 1541860096,1541860351,FR 1541860352,1541860607,IL 1541860608,1541860863,NL 1541860864,1541861119,SI 1541861120,1541861375,DK 1541861376,1541861887,RO 1541861888,1541862143,AT 1541862144,1541862399,GB 1541862400,1541862911,NL 1541862912,1541863167,GB 1541863168,1541863423,RU 1541863424,1541863679,RO 1541863680,1541863935,CH 1541863936,1541864191,ES 1541864192,1541864447,GB 1541864448,1541864959,RU 1541864960,1541865471,AL 1541865472,1541865727,RO 1541865728,1541865983,UA 1541865984,1541866239,PL 1541866240,1541866495,FR 1541866496,1541867263,NL 1541867264,1541867519,RO 1541867520,1541867775,RU 1541867776,1541868031,PL 1541868032,1541868287,MT 1541868288,1541868543,AE 1541868544,1541869567,PL 1541869568,1541870079,RU 1541870080,1541871103,PL 1541871104,1541871359,AT 1541871360,1541872639,PL 1541872640,1541873663,CZ 1541873664,1541874175,PL 1541874176,1541874687,RU 1541874688,1541875711,PL 1541875712,1541876735,UA 1541876736,1541877247,PL 1541877248,1541877503,GB 1541877504,1541877759,RU 1541877760,1541878783,SA 1541878784,1541879295,PL 1541879296,1541879807,UA 1541879808,1541880831,UZ 1541880832,1541881343,PL 1541881344,1541881599,IT 1541881600,1541881855,SE 1541881856,1541882879,RU 1541882880,1541883135,LV 1541883136,1541883391,UA 1541883392,1541884927,PL 1541884928,1541885951,LT 1541885952,1541886975,PL 1541886976,1541887999,UA 1541888000,1541888255,RS 1541888512,1541889023,GB 1541889024,1541889535,PL 1541889536,1541890303,RU 1541890304,1541890559,DE 1541890560,1541891071,UA 1541891072,1541893119,PL 1541893120,1541893631,BE 1541893632,1541894143,PL 1541894144,1541895167,RU 1541895168,1541897727,PL 1541897984,1541898239,UA 1541898240,1541900799,RU 1541900800,1541901055,RO 1541901056,1541901311,FR 1541901312,1541901567,PL 1541901568,1541901823,RU 1541901824,1541902335,UA 1541902336,1541902847,GB 1541902848,1541903103,RU 1541903104,1541903359,DK 1541903360,1541904383,UA 1541904384,1541904639,PL 1541904640,1541904895,SE 1541904896,1541905407,GB 1541905664,1541905919,PL 1541905920,1541906431,RS 1541906432,1541906687,UA 1541906688,1541907455,RU 1541907456,1541908479,IT 1541908480,1541908991,PL 1541908992,1541909247,UA 1541909248,1541909503,CZ 1541909504,1541910527,NL 1541910528,1541911039,RU 1541911040,1541911295,PL 1541911296,1541911551,IT 1541911552,1541912575,RU 1541912576,1541912831,NL 1541912832,1541913087,UA 1541913088,1541914623,RU 1541914624,1541915647,IL 1541915648,1541916671,RU 1541917696,1541917951,CH 1541917952,1541918207,PL 1541918208,1541918463,UA 1541918464,1541919743,RO 1541919744,1541919999,DK 1541920000,1541920767,RU 1541920768,1541921279,PT 1541921280,1541921791,RU 1541921792,1541922047,DE 1541922048,1541922303,PL 1541922304,1541922559,RU 1541922560,1541923839,RO 1541923840,1541924095,FR 1541924096,1541924351,UA 1541924352,1541924863,PL 1541924864,1541925119,RO 1541925120,1541926911,RU 1541926912,1541927167,UA 1541927168,1541927679,PL 1541927680,1541927935,DE 1541927936,1541929983,PL 1541929984,1541931007,RU 1541931008,1541932031,UA 1541932032,1541932543,PL 1541932544,1541935103,RU 1541935104,1541936383,RO 1541936384,1541936639,UA 1541936640,1541936895,DE 1541936896,1541937151,FR 1541937152,1541937663,NL 1541937664,1541937919,GE 1541937920,1541938175,PL 1541938176,1541939199,UA 1541939200,1541939967,RU 1541939968,1541940223,ES 1541940224,1541940479,GB 1541940480,1541940735,CH 1541940736,1541940991,PL 1541940992,1541941247,RU 1541941248,1541942271,FR 1541942272,1541944831,PL 1541944832,1541945087,DE 1541945088,1541945855,RO 1541945856,1541946111,PL 1541946112,1541946879,SE 1541946880,1541947391,PL 1541947392,1541948927,IR 1541948928,1541949183,RU 1541949184,1541949439,ES 1541949440,1541950463,IR 1541950464,1541951487,ES 1541951488,1541951743,RU 1541951744,1541951999,ES 1541952000,1541952255,CZ 1541952256,1541952511,NO 1541952512,1541953535,CZ 1541953536,1541954047,LU 1541954048,1541954559,PL 1541954560,1541955583,RU 1541955584,1541956095,DE 1541956096,1541956351,RO 1541956608,1541957119,LB 1541957120,1541957375,PL 1541957376,1541957631,UA 1541957632,1541957887,GB 1541957888,1541958143,NL 1541958144,1541958655,RS 1541958656,1541959679,RU 1541959680,1541959935,PL 1541959936,1541960191,RU 1541960192,1541960703,NL 1541960704,1541961727,UA 1541961728,1541962751,RU 1541962752,1541963263,GB 1541963264,1541963519,RU 1541963520,1541964031,UA 1541964288,1541964543,NL 1541964544,1541965823,RU 1541965824,1541966847,NL 1541966848,1541967871,PL 1541967872,1541968895,RU 1541968896,1541969919,GB 1541969920,1541970175,IT 1541970176,1541970431,GB 1541970432,1541971199,FI 1541971200,1541971967,UA 1541971968,1541972479,PL 1541972480,1541972735,RU 1541972736,1541972991,AT 1541972992,1541974015,PL 1541974016,1541975551,RU 1541975552,1541975807,TR 1541975808,1541976319,PL 1541976320,1541977087,UA 1541977088,1541977343,IT 1541977344,1541977599,GB 1541977600,1541977855,RO 1541977856,1541978111,PL 1541978112,1541978879,RO 1541978880,1541979135,FR 1541979136,1541979647,RU 1541979648,1541981183,PL 1541981184,1541981951,RU 1541981952,1541982207,UA 1541982208,1541982719,RS 1541982720,1541984255,RU 1541984512,1541984767,BG 1541984768,1541985279,RO 1541985280,1541986303,CZ 1541986304,1541986815,RU 1541986816,1541987327,CZ 1541987328,1541988351,SK 1541988352,1541988607,FR 1541988608,1541988863,RU 1541988864,1541989631,RO 1541989632,1541989887,LI 1541989888,1541990399,RU 1541990400,1541990911,AT 1541990912,1541991167,SI 1541991424,1541991935,RS 1541991936,1541992191,UA 1541992192,1541992447,SI 1541992448,1541992959,UA 1541992960,1541993215,FR 1541993216,1541994239,RU 1541994240,1541994495,CZ 1541994496,1541995519,PL 1541995520,1541996031,RU 1541996032,1541996287,RO 1541996544,1541997567,RO 1541997568,1541997823,RU 1541997824,1541998079,GB 1541998080,1541998335,NL 1541998336,1541998591,AT 1541998592,1541999615,DE 1541999616,1542000127,AT 1542000128,1542000383,NO 1542000384,1542000639,GE 1542000640,1542000895,GB 1542000896,1542001151,UA 1542001152,1542001663,PL 1542001920,1542002175,HU 1542002176,1542002687,NL 1542002688,1542002943,RS 1542002944,1542003199,PL 1542003200,1542003711,RO 1542003712,1542004735,RU 1542004736,1542004991,BG 1542004992,1542005247,GB 1542005248,1542005503,PL 1542005504,1542005759,DE 1542005760,1542006271,HR 1542006272,1542008831,RU 1542008832,1542009343,UA 1542009344,1542009599,SE 1542009600,1542009855,FR 1542009856,1542010367,NL 1542010368,1542010879,RU 1542010880,1542011903,IR 1542011904,1542012159,PL 1542012160,1542012415,RU 1542012416,1542012671,GB 1542012672,1542013951,RU 1542013952,1542014207,FR 1542014208,1542017023,PL 1542017024,1542017279,TR 1542017280,1542017535,GB 1542017536,1542017791,RU 1542017792,1542018047,GB 1542018048,1542019071,DE 1542019072,1542019583,RU 1542019584,1542020095,UA 1542020096,1542021119,RU 1542021120,1542023167,UA 1542023168,1542023423,PL 1542023424,1542023679,NL 1542023680,1542023935,RO 1542023936,1542024191,PL 1542024192,1542025215,UA 1542025216,1542026239,PL 1542026240,1542026751,FI 1542026752,1542027007,BE 1542027008,1542027263,FR 1542027776,1542028031,FR 1542028032,1542028287,UA 1542028288,1542028543,GB 1542028544,1542028799,FI 1542028800,1542029055,CH 1542029056,1542029311,UA 1542029312,1542029823,GB 1542030336,1542031359,RU 1542031360,1542032383,PL 1542032384,1542032639,UA 1542032640,1542032895,SA 1542032896,1542033407,DK 1542033408,1542035455,RU 1542035456,1542036479,GB 1542036480,1542038271,PL 1542038272,1542038527,SI 1542038528,1542040575,RU 1542040576,1542041087,UA 1542041088,1542041343,SA 1542041344,1542041599,RU 1542041600,1542042623,LT 1542042624,1542043135,IT 1542043136,1542043391,CH 1542043392,1542043647,GB 1542043648,1542044671,PL 1542044672,1542045183,RU 1542045184,1542045439,RO 1542045440,1542045695,AT 1542045696,1542046719,RO 1542046720,1542047743,PL 1542047744,1542048767,RO 1542048768,1542049279,PL 1542049280,1542049791,BE 1542049792,1542050815,CZ 1542050816,1542051327,RU 1542051328,1542051839,LV 1542051840,1542053887,RU 1542053888,1542054399,NL 1542054400,1542054655,RU 1542054656,1542054911,AT 1542054912,1542055423,PL 1542055424,1542055935,RU 1542055936,1542057471,PL 1542057472,1542060031,RU 1542060032,1542060287,SK 1542060288,1542060543,RO 1542060544,1542061055,PL 1542061056,1542062079,IT 1542062080,1542063103,UA 1542063104,1542064127,RU 1542064128,1542064383,PL 1542064384,1542064639,FR 1542064640,1542065151,RU 1542065152,1542066175,PL 1542066176,1542066431,RU 1542066432,1542066687,NL 1542066688,1542066943,GB 1542066944,1542067199,BG 1542067200,1542067455,UA 1542067456,1542067711,BG 1542067712,1542067967,US 1542067968,1542068223,GB 1542068224,1542069759,UA 1542069760,1542070015,DE 1542070016,1542071295,UA 1542071296,1542071551,CN 1542071552,1542071807,UA 1542071808,1542072319,DE 1542072320,1542073343,UA 1542073344,1542073855,PL 1542073856,1542074111,HR 1542074112,1542074367,UA 1542074368,1542074623,GB 1542074624,1542074879,PL 1542074880,1542075391,NL 1542075392,1542075647,CH 1542075648,1542075903,RU 1542075904,1542076159,IE 1542076160,1542077439,RO 1542077440,1542078975,RU 1542078976,1542079487,PL 1542079488,1542080511,RU 1542080512,1542082559,UA 1542082560,1542083583,RU 1542083584,1542085631,UA 1542085632,1542086655,BG 1542086656,1542087167,RU 1542087168,1542087679,UA 1542087680,1542088703,PL 1542088704,1542089727,FR 1542089728,1542090751,RU 1542090752,1542091775,PL 1542091776,1542092799,RU 1542092800,1542093823,RO 1542093824,1542095871,PL 1542095872,1542096895,RS 1542096896,1542098431,UA 1542098432,1542099199,PL 1542099200,1542099455,RU 1542099456,1542099711,PL 1542099712,1542099967,RU 1542099968,1542100223,NL 1542100224,1542100479,DK 1542100480,1542100991,RO 1542100992,1542102015,RU 1542102016,1542103039,RO 1542103040,1542103295,CH 1542103296,1542103551,RU 1542103552,1542104063,CZ 1542104064,1542105087,RU 1542105088,1542105599,RO 1542105600,1542105855,RU 1542105856,1542106111,DE 1542106112,1542107135,RU 1542107136,1542107391,PL 1542107392,1542107903,RU 1542107904,1542108159,AT 1542108160,1542109183,RU 1542109184,1542109695,GB 1542109696,1542110207,PL 1542110208,1542110463,RU 1542110464,1542110719,CH 1542110720,1542111231,RS 1542111232,1542111487,SE 1542111488,1542111743,NL 1542111744,1542112255,FR 1542112256,1542113279,UA 1542113280,1542113535,LT 1542113536,1542113791,GB 1542113792,1542114047,RU 1542114048,1542114303,BE 1542114304,1542114815,FI 1542114816,1542115071,NL 1542115072,1542115327,PL 1542115328,1542116351,UA 1542116352,1542116607,RO 1542116608,1542116863,DE 1542116864,1542117119,GB 1542117120,1542117631,DE 1542117632,1542117887,PL 1542117888,1542118399,UZ 1542118400,1542119423,RO 1542119424,1542119935,RU 1542119936,1542120447,UA 1542120448,1542120703,GE 1542120704,1542120959,AT 1542120960,1542121471,BE 1542121472,1542121727,PL 1542121728,1542123519,FR 1542123520,1542123775,SE 1542123776,1542124543,RO 1542124544,1542124799,DE 1542124800,1542125567,PL 1542125568,1542126591,CZ 1542126592,1542127103,PL 1542127360,1542127615,RU 1542127616,1542128127,PL 1542128128,1542128383,RU 1542128384,1542129151,RO 1542129152,1542129407,IS 1542129408,1542129663,RU 1542129664,1542130687,DE 1542130688,1542131711,UA 1542131712,1542134271,PL 1542134272,1542136319,RU 1542136320,1542136831,DE 1542136832,1542137855,RU 1542137856,1542138367,ES 1542138368,1542138623,RU 1542138624,1542138879,RO 1542138880,1542139135,GB 1542139136,1542139391,DE 1542139392,1542139647,UA 1542139648,1542139903,DE 1542139904,1542140927,ES 1542140928,1542141951,SK 1542141952,1542142975,GB 1542142976,1542143999,NO 1542144000,1542144255,TR 1542144256,1542144511,GB 1542144512,1542144767,RU 1542144768,1542146047,UA 1542146048,1542147583,RU 1542147584,1542148095,FR 1542148096,1542148607,RU 1542148608,1542148863,SI 1542148864,1542149119,NL 1542149120,1542150143,UA 1542150144,1542152191,RU 1542152192,1542153215,IE 1542153216,1542153471,DK 1542153472,1542153727,RU 1542153728,1542153983,UA 1542153984,1542154239,RU 1542154240,1542154751,TR 1542154752,1542155007,RU 1542155008,1542155263,IL 1542155264,1542156287,ES 1542156288,1542156543,RU 1542156544,1542156799,RO 1542156800,1542157311,DE 1542157312,1542158335,AZ 1542158336,1542158847,IT 1542158848,1542159359,RO 1542159360,1542160127,PL 1542160128,1542160383,RU 1542160384,1542160895,UA 1542160896,1542161407,GB 1542161408,1542162431,NL 1542162432,1542162943,RU 1542162944,1542163199,FR 1542163200,1542163455,DK 1542163456,1542163711,GB 1542163712,1542163967,FR 1542163968,1542164479,UA 1542164480,1542165503,RU 1542165760,1542166015,PL 1542166016,1542166527,IL 1542166528,1542167551,PL 1542167552,1542168319,RU 1542168320,1542168575,AE 1542168576,1542169599,PL 1542169600,1542169855,BG 1542169856,1542170623,RO 1542170624,1542170879,SE 1542170880,1542171135,RU 1542171136,1542171647,HR 1542171648,1542172159,GB 1542172160,1542172415,NL 1542172416,1542172671,RU 1542172672,1542173695,KZ 1542173696,1542174207,RU 1542174208,1542174719,CZ 1542174720,1542176767,RU 1542176768,1542177791,PL 1542177792,1542178815,UA 1542178816,1542179327,CZ 1542179328,1542179583,PL 1542179584,1542179839,RU 1542179840,1542180863,PL 1542180864,1542181887,GB 1542181888,1542182143,CH 1542182144,1542182399,RU 1542182400,1542182655,GB 1542182656,1542182911,FR 1542182912,1542183935,PL 1542183936,1542184191,GB 1542184192,1542184447,RU 1542184448,1542184959,PL 1542184960,1542185983,UA 1542185984,1542187007,PL 1542187008,1542187263,DK 1542187264,1542187519,RU 1542187520,1542188031,GB 1542188032,1542188287,DE 1542188288,1542188543,NL 1542188544,1542189055,PL 1542189056,1542189311,DE 1542189568,1542189823,SI 1542189824,1542190079,DE 1542190080,1542191103,RU 1542191104,1542192127,BG 1542192128,1542193407,PL 1542193408,1542193663,SI 1542193664,1542194175,RU 1542194176,1542195711,PL 1542195712,1542196479,RU 1542196480,1542196735,PL 1542196736,1542197247,RU 1542197248,1542197503,DK 1542197504,1542198015,GB 1542198016,1542198271,NL 1542198272,1542198783,PL 1542198784,1542199551,RU 1542199552,1542199807,FR 1542199808,1542200319,GB 1542200320,1542200575,DK 1542200576,1542200831,US 1542200832,1542201343,RU 1542201344,1542202367,PL 1542202368,1542202623,UA 1542202624,1542202879,HR 1542202880,1542203391,EE 1542203392,1542204415,CZ 1542204416,1542204671,EE 1542204672,1542204927,CH 1542204928,1542205439,RO 1542205440,1542206463,RU 1542206464,1542207487,PL 1542207488,1542207743,GB 1542207744,1542207999,PL 1542208000,1542208255,RO 1542208256,1542208511,ES 1542208512,1542209535,RU 1542209536,1542211583,SK 1542211584,1542212607,PL 1542212608,1542213119,RO 1542213120,1542213375,CH 1542213376,1542213631,RO 1542213632,1542214143,RU 1542214144,1542214399,SK 1542214400,1542214655,NL 1542214656,1542215679,PL 1542215680,1542216703,RO 1542216704,1542217727,RU 1542217728,1542218751,UA 1542218752,1542220031,RU 1542220032,1542220287,PL 1542220288,1542220799,DE 1542220800,1542222591,RU 1542222848,1542223103,SE 1542223104,1542223359,GB 1542223360,1542223871,UA 1542223872,1542224127,RU 1542224384,1542224639,DE 1542224640,1542224895,DK 1542224896,1542225151,RU 1542225152,1542225407,PL 1542225408,1542225919,UA 1542225920,1542227455,PL 1542227456,1542227967,UA 1542227968,1542228223,RU 1542228224,1542228479,PL 1542228480,1542228991,UA 1542228992,1542230015,RU 1542230016,1542231039,BG 1542231040,1542232063,RU 1542232064,1542232319,GB 1542232320,1542232575,FR 1542232576,1542233087,RU 1542233088,1542234111,UA 1542234112,1542234367,AT 1542234368,1542234623,FR 1542234624,1542234879,AE 1542234880,1542235135,PL 1542235136,1542236159,RU 1542236160,1542236671,IR 1542236672,1542236927,RO 1542236928,1542237183,UA 1542237184,1542238207,PL 1542238208,1542239743,RU 1542239744,1542239999,HU 1542240000,1542240255,RU 1542240256,1542240767,UA 1542240768,1542241023,DK 1542241024,1542241279,GB 1542241280,1542241535,LV 1542241536,1542241791,NL 1542241792,1542242303,GB 1542242304,1542243071,NL 1542243072,1542244863,RU 1542244864,1542245375,NL 1542245376,1542245887,RU 1542245888,1542246143,GB 1542246144,1542246911,SE 1542246912,1542247423,DK 1542247424,1542247679,SE 1542247680,1542247935,UA 1542247936,1542248447,NL 1542248448,1542249471,RO 1542249472,1542249727,RU 1542249728,1542249983,UA 1542249984,1542250239,EE 1542250240,1542250495,RO 1542250496,1542251519,UA 1542251520,1542251775,RO 1542251776,1542252031,PL 1542252032,1542252543,RO 1542252544,1542253055,PL 1542253056,1542253567,RU 1542253568,1542253823,LB 1542253824,1542254079,RO 1542254080,1542254335,RU 1542254336,1542254591,FR 1542254592,1542255615,RO 1542255616,1542256127,BE 1542256128,1542256639,RU 1542256640,1542257663,UA 1542257664,1542258175,RU 1542258176,1542258687,FR 1542258688,1542262783,UA 1542262784,1542263295,IT 1542263296,1542263807,PL 1542263808,1542264063,RU 1542264064,1542264831,SA 1542264832,1542265855,UA 1542265856,1542266879,SA 1542266880,1542267135,RU 1542267136,1542267391,SI 1542267392,1542267903,NO 1542267904,1542268159,PL 1542268160,1542268415,RU 1542268416,1542268927,FR 1542268928,1542269439,UA 1542269440,1542269695,LV 1542269696,1542269951,NL 1542269952,1542271487,RO 1542271488,1542271743,PS 1542271744,1542271999,CZ 1542272000,1542272255,PL 1542272256,1542273023,RU 1542273024,1542274047,BG 1542274048,1542275071,PL 1542275072,1542275327,UA 1542275328,1542275583,AT 1542275584,1542276095,SE 1542276096,1542277631,PL 1542277632,1542278143,GB 1542278144,1542278399,RU 1542278400,1542278655,PL 1542278656,1542278911,NL 1542278912,1542279679,PL 1542279680,1542280191,RU 1542280192,1542280959,PL 1542280960,1542281215,GB 1542281216,1542281727,DE 1542281728,1542281983,SE 1542281984,1542282751,RO 1542282752,1542283007,RU 1542283008,1542283263,SE 1542283264,1542283519,AT 1542283520,1542283775,RU 1542283776,1542284287,LV 1542284288,1542284799,DE 1542284800,1542285311,BG 1542285312,1542285823,RU 1542285824,1542286079,SE 1542286080,1542287359,UA 1542287360,1542287871,PL 1542287872,1542288639,UA 1542288640,1542288895,DE 1542288896,1542289151,PL 1542289152,1542291967,UA 1542291968,1542292479,RO 1542292480,1542293503,SI 1542293504,1542294527,PL 1542294528,1542295039,SE 1542295040,1542295295,UA 1542295296,1542295551,AT 1542295552,1542296831,RU 1542296832,1542297087,PL 1542297088,1542297343,RU 1542297344,1542297599,FI 1542297600,1542297855,UA 1542298112,1542300159,PL 1542300160,1542300671,RU 1542300672,1542301695,UA 1542301696,1542302463,SK 1542302464,1542303231,PL 1542303232,1542303999,GB 1542304000,1542304255,FR 1542304256,1542305279,RU 1542305280,1542305791,UA 1542305792,1542306047,FR 1542306048,1542306303,GB 1542306304,1542307327,RU 1542307328,1542307583,PL 1542307584,1542307839,SE 1542307840,1542308095,RU 1542308096,1542308863,RO 1542308864,1542309119,PL 1542309120,1542309375,GB 1542309376,1542310911,RU 1542310912,1542312191,UA 1542312192,1542312447,RU 1542312448,1542312959,GB 1542312960,1542313215,FR 1542313216,1542313471,RU 1542313472,1542313727,DE 1542313728,1542313983,RU 1542313984,1542314495,TR 1542314496,1542314751,CH 1542314752,1542315007,PL 1542315008,1542316031,RU 1542316032,1542317567,PL 1542317568,1542317823,RU 1542317824,1542318079,GB 1542318080,1542319103,UA 1542319104,1542320127,CZ 1542320128,1542322175,UA 1542322176,1542322431,RO 1542322432,1542322687,RU 1542322944,1542323199,IL 1542323200,1542323711,RU 1542323712,1542324479,IR 1542324480,1542325247,RU 1542325248,1542325759,UA 1542325760,1542326271,RS 1542326272,1542326527,CH 1542326528,1542326783,UA 1542326784,1542327295,RU 1542327296,1542328319,MD 1542328320,1542328831,UA 1542329088,1542329343,AT 1542329344,1542329855,RU 1542329856,1542330111,GB 1542330112,1542330367,UA 1542330368,1542331903,RU 1542331904,1542332671,BE 1542332672,1542333439,RU 1542333440,1542333695,PL 1542333696,1542335487,RO 1542335488,1542337023,RU 1542337024,1542337279,RO 1542337280,1542337535,SE 1542337536,1542339839,PL 1542339840,1542340095,RS 1542340096,1542340607,PL 1542340608,1542342143,RU 1542342144,1542342655,RO 1542342656,1542343167,FR 1542343168,1542343679,UA 1542343680,1542344447,PL 1542344448,1542345471,RU 1542345984,1542346239,PL 1542346240,1542347775,RU 1542348288,1542348799,MD 1542348800,1542349823,RU 1542349824,1542350847,UA 1542350848,1542351359,CZ 1542351360,1542351615,BG 1542351616,1542351871,PL 1542351872,1542353151,RU 1542353152,1542353407,SA 1542353408,1542353919,RU 1542353920,1542354943,IT 1542354944,1542355711,RU 1542355712,1542355967,GB 1542355968,1542356479,PL 1542356480,1542356735,ES 1542356736,1542357503,RU 1542357504,1542357759,GB 1542357760,1542358015,FR 1542358016,1542358271,UA 1542358272,1542358527,CZ 1542358528,1542359039,PL 1542359040,1542360319,RU 1542360320,1542360575,NL 1542360576,1542361087,PL 1542361088,1542361343,CH 1542361344,1542361599,PL 1542361600,1542362111,UA 1542362112,1542362623,RO 1542362624,1542363135,FR 1542363136,1542363647,DK 1542363648,1542364159,NL 1542364160,1542365183,RU 1542365184,1542366719,GB 1542366720,1542367231,PL 1542367232,1542368255,RU 1542368256,1542369279,PL 1542369280,1542369791,NL 1542369792,1542370303,PL 1542370304,1542370815,DE 1542370816,1542371839,RU 1542371840,1542372351,RO 1542372352,1542373375,RU 1542373376,1542374399,UA 1542374400,1542375167,GB 1542375168,1542375423,BG 1542375424,1542376447,RU 1542376448,1542376959,BG 1542376960,1542377215,DK 1542377216,1542377471,RU 1542377472,1542377983,GB 1542377984,1542378495,RU 1542378496,1542378751,DK 1542378752,1542379007,RU 1542379008,1542379519,GB 1542379520,1542379775,PL 1542379776,1542380031,RU 1542380032,1542380287,RO 1542380288,1542380543,BE 1542380544,1542380799,FR 1542380800,1542381055,GB 1542381056,1542381823,RU 1542381824,1542382079,AT 1542382080,1542382335,BE 1542382336,1542383615,RU 1542383616,1542384639,PL 1542384640,1542384895,DE 1542384896,1542385151,RU 1542385152,1542385663,CH 1542385664,1542386687,PL 1542386688,1542387199,UA 1542387200,1542387711,PL 1542387712,1542388223,RU 1542388224,1542388479,IT 1542388480,1542388735,BG 1542388736,1542389247,RU 1542389248,1542389503,PL 1542389504,1542389759,BG 1542389760,1542390783,RO 1542390784,1542391295,RU 1542391296,1542391807,FR 1542391808,1542392831,MD 1542392832,1542393087,RO 1542393088,1542393343,BG 1542393344,1542393599,IR 1542393856,1542394879,RU 1542394880,1542395135,DE 1542395136,1542395391,ES 1542395392,1542395647,RU 1542395648,1542395903,AT 1542395904,1542396159,RU 1542396160,1542396415,NO 1542396416,1542396927,RU 1542396928,1542397951,PL 1542397952,1542398463,NL 1542398464,1542398975,DE 1542398976,1542399231,PL 1542399488,1542399999,DK 1542400000,1542401535,RU 1542401536,1542401791,GB 1542401792,1542402047,BG 1542402048,1542403071,UA 1542403072,1542403327,CH 1542403328,1542403583,RU 1542403584,1542404095,IR 1542404096,1542405375,RU 1542405376,1542405631,PL 1542405632,1542405887,GB 1542405888,1542406143,RU 1542406144,1542406655,NL 1542406656,1542407167,PL 1542407168,1542408191,RU 1542408192,1542408703,GB 1542408704,1542408959,UA 1542408960,1542409215,CH 1542409216,1542411263,UA 1542411264,1542411519,DE 1542411520,1542411775,RU 1542411776,1542412031,EE 1542412032,1542412287,GB 1542412288,1542412799,RU 1542412800,1542413055,PL 1542413056,1542413311,GB 1542413312,1542413823,DE 1542413824,1542414079,RU 1542414080,1542414335,UA 1542414336,1542414847,SI 1542414848,1542415359,RU 1542415360,1542415615,DK 1542415616,1542415871,KZ 1542415872,1542416383,RU 1542416384,1542417407,UA 1542417408,1542418431,IR 1542418432,1542418687,RU 1542418688,1542420735,PL 1542420736,1542420991,RU 1542420992,1542421247,DK 1542421248,1542421503,RO 1542421504,1542422015,GB 1542422016,1542422527,RU 1542422528,1542422783,RO 1542422784,1542423039,PL 1542423296,1542424575,RU 1542424576,1542425599,UA 1542425600,1542426623,RU 1542426624,1542426879,PL 1542426880,1542427135,GB 1542427136,1542427391,PT 1542427392,1542427647,IE 1542428160,1542428415,UA 1542428416,1542428671,RS 1542428672,1542429695,PL 1542429696,1542429951,GB 1542430208,1542430719,RU 1542430720,1542431743,UA 1542431744,1542432767,RO 1542432768,1542433791,PL 1542433792,1542434047,RU 1542434048,1542434303,RO 1542434304,1542434815,NL 1542434816,1542435071,RU 1542435072,1542435327,DE 1542435328,1542435839,RO 1542435840,1542436863,PL 1542436864,1542437119,RU 1542437120,1542437375,PL 1542437376,1542437631,NL 1542437632,1542437887,UA 1542437888,1542438399,SE 1542438400,1542438655,UA 1542438656,1542438911,RU 1542438912,1542439167,KZ 1542439168,1542439423,SI 1542439424,1542439679,RO 1542439680,1542439935,CY 1542439936,1542440959,PL 1542440960,1542441983,CZ 1542441984,1542442239,TR 1542442240,1542442495,PL 1542442496,1542443007,GE 1542443008,1542444031,GB 1542444032,1542444543,NL 1542444544,1542444799,IR 1542444800,1542445055,RU 1542445056,1542445567,SE 1542445568,1542446079,IL 1542446080,1542447871,RO 1542447872,1542448639,RU 1542448640,1542448895,RO 1542448896,1542449151,AT 1542449152,1542450175,UA 1542450176,1542450687,CZ 1542450688,1542451199,RU 1542451200,1542451455,BG 1542451456,1542451711,UA 1542451712,1542451967,TR 1542451968,1542452223,SI 1542452224,1542454271,PL 1542454272,1542454783,NO 1542454784,1542455039,PL 1542455040,1542455295,SE 1542455296,1542455551,CH 1542455552,1542455807,RO 1542455808,1542456319,GB 1542456320,1542456831,RO 1542456832,1542457343,RS 1542457344,1542458367,RO 1542458368,1542458623,UZ 1542458624,1542458879,RU 1542458880,1542459391,UZ 1542459392,1542459647,RU 1542459648,1542459903,GB 1542459904,1542460415,UA 1542460416,1542461439,CZ 1542461440,1542461695,GB 1542461696,1542461951,RU 1542461952,1542462207,TR 1542462208,1542462463,GE 1542462464,1542463487,PL 1542463488,1542463743,FR 1542463744,1542463999,ES 1542464000,1542464255,DE 1542464256,1542464511,CZ 1542464512,1542464767,RU 1542464768,1542465023,TR 1542465024,1542465535,RU 1542465536,1542466559,XK 1542466560,1542466815,PL 1542466816,1542467071,RU 1542467072,1542467583,PL 1542467584,1542468607,UA 1542468608,1542469631,SI 1542469632,1542470655,ES 1542470656,1542471679,IR 1542471680,1542472703,SE 1542472704,1542472959,PL 1542472960,1542473215,LB 1542473216,1542473471,PL 1542473472,1542473727,GB 1542473728,1542473983,FR 1542473984,1542474239,AE 1542474240,1542474751,RU 1542474752,1542475007,PL 1542475008,1542475263,DE 1542475264,1542475775,FR 1542475776,1542476799,LB 1542476800,1542477823,RU 1542477824,1542478079,DK 1542478336,1542479103,RU 1542479104,1542479359,PL 1542479360,1542479615,RO 1542479616,1542479871,RU 1542479872,1542480895,UA 1542480896,1542481407,PL 1542481408,1542481919,RU 1542481920,1542482431,CH 1542482432,1542482943,PL 1542482944,1542483199,TR 1542483200,1542483455,FR 1542483456,1542484991,RU 1542484992,1542486015,NL 1542486016,1542488319,RU 1542488320,1542488575,DE 1542488576,1542491135,PL 1542491136,1542492159,UA 1542492160,1542492415,RU 1542492416,1542492671,CZ 1542492672,1542493183,IL 1542493184,1542493439,PS 1542493440,1542494207,RO 1542494208,1542494719,PL 1542494720,1542494975,RO 1542494976,1542495231,RU 1542495232,1542496255,RO 1542496256,1542496767,DE 1542496768,1542497279,RU 1542497280,1542497535,DE 1542497536,1542497791,CZ 1542497792,1542498303,IT 1542498304,1542499583,RU 1542499584,1542499839,ES 1542499840,1542500095,GB 1542500352,1542500607,GB 1542500608,1542500863,RO 1542500864,1542501119,GB 1542501120,1542501375,RU 1542501376,1542502399,IR 1542502400,1542502655,RO 1542502656,1542503423,DK 1542503424,1542503679,RO 1542503680,1542503935,DK 1542503936,1542504447,UA 1542504448,1542504703,GB 1542504704,1542504959,PL 1542504960,1542505215,SE 1542505216,1542505471,NO 1542505472,1542506495,PL 1542506496,1542507007,NL 1542507008,1542507263,RU 1542507264,1542507519,CY 1542507520,1542508543,NO 1542508544,1542509567,RU 1542509568,1542510079,CY 1542510080,1542510591,RU 1542510592,1542510847,SI 1542510848,1542511103,DE 1542511104,1542511871,RU 1542511872,1542512127,GB 1542512128,1542512383,RU 1542512384,1542512639,PL 1542512640,1542512895,GB 1542512896,1542513151,RU 1542513152,1542513663,GB 1542513664,1542513919,FR 1542513920,1542514175,GB 1542514176,1542514687,IT 1542514688,1542515199,RU 1542515200,1542515711,IL 1542515712,1542516223,RO 1542516224,1542516735,PL 1542516736,1542516991,NL 1542516992,1542517247,FR 1542517248,1542517759,RU 1542517760,1542518015,UA 1542518016,1542518271,SK 1542518272,1542518783,LV 1542518784,1542519807,PL 1542519808,1542520319,SE 1542520320,1542520575,PL 1542520576,1542520831,BG 1542520832,1542521343,GB 1542521344,1542521599,PL 1542521600,1542521855,PT 1542521856,1542522111,RU 1542522112,1542522367,PL 1542522368,1542522879,NL 1542522880,1542523903,CZ 1542523904,1542525951,RU 1542525952,1542526463,IR 1542526464,1542526719,RU 1542526720,1542526975,CZ 1542526976,1542527999,PL 1542528000,1542528255,LU 1542528256,1542528511,NL 1542528512,1542528767,BE 1542528768,1542531583,PL 1542531584,1542531839,FR 1542531840,1542532095,RU 1542532096,1542532351,DE 1542532352,1542533119,RU 1542533120,1542534143,PL 1542534144,1542534399,DE 1542534400,1542534655,HR 1542534656,1542535167,DE 1542535168,1542535423,GB 1542535424,1542535679,FR 1542535680,1542536191,RU 1542536192,1542537215,PL 1542537216,1542538239,LV 1542538240,1542538751,RU 1542538752,1542539007,GB 1542539008,1542539263,UA 1542539264,1542540287,DE 1542540288,1542540799,IT 1542540800,1542541055,GB 1542541056,1542541311,BE 1542541312,1542542335,UA 1542542336,1542542847,RU 1542542848,1542543359,GB 1542543360,1542544383,RU 1542544384,1542544639,IR 1542544896,1542545407,GR 1542545408,1542553599,UA 1542553600,1542561791,RU 1542561792,1542586367,UA 1542586368,1542594559,AZ 1542594560,1542597631,RU 1542597632,1542598143,IR 1542598144,1542599679,RO 1542599680,1542600703,UA 1542600704,1542602751,PL 1542602752,1542627327,MD 1542627328,1542627583,NL 1542627584,1542627839,RU 1542627840,1542628095,FR 1542628096,1542630399,RU 1542630400,1542630655,GB 1542630656,1542630911,DE 1542630912,1542631423,PL 1542631424,1542635519,RU 1542635520,1542637567,UA 1542637568,1542639615,NO 1542639616,1542640639,UA 1542640640,1542640895,DE 1542640896,1542641151,RU 1542641152,1542641663,IN 1542641664,1542641919,RO 1542641920,1542642175,AE 1542642176,1542642431,PL 1542642688,1542643199,PL 1542643200,1542643455,UA 1542643456,1542643711,NL 1542643712,1542660095,UA 1542660096,1542668287,RU 1542668288,1542668799,NL 1542668800,1542669311,PL 1542669312,1542669567,RU 1542669568,1542669823,NO 1542669824,1542670079,DE 1542670080,1542670335,CH 1542670336,1542670591,US 1542670592,1542670847,ES 1542670848,1542671359,NL 1542671360,1542671871,FR 1542671872,1542672383,AT 1542672384,1542681087,RU 1542681088,1542681343,GB 1542681344,1542683135,RU 1542683136,1542683391,SK 1542683392,1542683647,RS 1542683648,1542684159,RU 1542684160,1542684671,IR 1542684672,1542692863,RU 1542692864,1542696959,IR 1542696960,1542701055,RU 1542701056,1542709247,UA 1542709248,1542717439,RU 1542717440,1542733823,UA 1542733824,1542734847,RU 1542734848,1542735103,GB 1542735104,1542735359,UA 1542735360,1542735871,PL 1542735872,1542742015,RU 1542742016,1542746111,RO 1542746112,1542747135,RU 1542747136,1542747391,TR 1542747392,1542747647,GB 1542747648,1542748159,UA 1542748160,1542749183,SK 1542749184,1542749439,UA 1542749440,1542749695,DE 1542749696,1542749951,GB 1542749952,1542758399,UA 1542758400,1542763519,RU 1542763520,1542763775,DE 1542763776,1542764031,BG 1542764032,1542764543,RU 1542764544,1542766591,PL 1542766592,1542770687,RU 1542770688,1542774783,PL 1542774784,1542775039,NL 1542775040,1542775295,PL 1542775296,1542775807,TR 1542775808,1542776063,RU 1542776064,1542776319,GB 1542776320,1542776831,PL 1542776832,1542777855,UA 1542777856,1542778367,GB 1542778368,1542778623,FR 1542778624,1542778879,GB 1542778880,1542780159,RU 1542780160,1542780927,GB 1542780928,1542781951,PL 1542781952,1542782975,RU 1542782976,1542791167,CZ 1542791168,1542801407,RU 1542801408,1542803455,UA 1542803456,1542805503,PL 1542805504,1542807551,RO 1542807552,1542815743,UA 1542815744,1542823935,RU 1542823936,1542832127,RO 1542832128,1542832383,BG 1542832384,1542832639,SI 1542832640,1542832895,LV 1542832896,1542833151,GR 1542833152,1542836735,RO 1542836736,1542837247,RU 1542837248,1542837503,GB 1542837504,1542837759,UA 1542837760,1542838015,RS 1542838016,1542838271,DE 1542838272,1542838783,UA 1542838784,1542839039,DK 1542839040,1542839295,PL 1542839296,1542839551,DE 1542839552,1542839807,UA 1542839808,1542840063,CY 1542840064,1542840319,UA 1542848512,1542849535,RU 1542849536,1542850559,UA 1542850560,1542851583,GB 1542851584,1542851839,BG 1542852096,1542852351,KW 1542852352,1542852607,PL 1542852608,1542855167,RU 1542855168,1542856191,GB 1542856192,1542856703,RU 1542856704,1542864895,UA 1542864896,1542868991,PL 1542868992,1542875135,RU 1542875136,1542877183,PL 1542877184,1542881279,RU 1542881280,1542889471,UA 1542889472,1542891519,RU 1542891520,1542892543,PL 1542892544,1542900223,RO 1542900224,1542900479,DE 1542900480,1542901759,RO 1542901760,1542903807,PL 1542903808,1542904319,RO 1542904320,1542904575,IL 1542904576,1542904831,RU 1542904832,1542914047,UA 1542914048,1542922239,RU 1542922240,1542930431,UA 1542930432,1542930943,CZ 1542930944,1542931455,IR 1542931456,1542932479,RU 1542932480,1542932735,LV 1542932736,1542932991,GB 1542932992,1542933247,NO 1542933248,1542933503,FR 1542933504,1542938623,UA 1542938624,1542950911,RU 1542950912,1542951423,DE 1542951424,1542951679,RO 1542951680,1542951935,PL 1542951936,1542955007,RU 1542955008,1542963199,UA 1542963200,1542970623,RU 1542970624,1542970879,UA 1542970880,1542971391,RU 1542971392,1542972415,UA 1542972416,1542973439,NO 1542973440,1542975487,RU 1542975488,1542977535,RO 1542977536,1542978559,RU 1542978560,1542978815,PL 1542978816,1542979071,CH 1542979072,1542979583,RU 1542979584,1543110655,DE 1543110656,1543127039,UA 1543127040,1543143423,DE 1543143424,1543159807,RO 1543159808,1543167999,SE 1543168000,1543172095,MD 1543172096,1543176191,RO 1543176192,1543241727,IR 1543241728,1543503871,IT 1543503872,1545601023,GB 1545601024,1545674495,SE 1545674496,1545674751,FI 1545674752,1545863167,SE 1545863168,1545895935,RU 1545895936,1545928703,BA 1545928704,1545961471,SI 1545961472,1545994751,RU 1545994752,1545995007,CZ 1545995008,1545995519,RU 1545995520,1545996287,CZ 1545996288,1545998335,RU 1545998336,1546000383,CZ 1546000384,1546001407,UZ 1546001408,1546002943,RU 1546002944,1546003199,UA 1546003200,1546003967,RU 1546003968,1546004479,CZ 1546004480,1546004735,UA 1546004736,1546004795,CZ 1546004796,1546004796,UA 1546004797,1546005247,CZ 1546005248,1546006527,RU 1546006528,1546008575,UA 1546008576,1546014719,BY 1546014720,1546015743,RU 1546015744,1546018815,CZ 1546018816,1546027007,UA 1546027008,1546059775,RU 1546059776,1546063871,SE 1546063872,1546067967,DE 1546067968,1546072063,SE 1546072064,1546076159,MD 1546076160,1546080255,RU 1546080256,1546084351,AZ 1546084352,1546088447,RU 1546088448,1546092543,GB 1546092544,1546096639,RU 1546096640,1546100735,IT 1546100736,1546104831,AT 1546104832,1546108927,IE 1546108928,1546113023,IM 1546113024,1546121215,RU 1546121216,1546121727,FR 1546121728,1546121983,IT 1546121984,1546121987,ES 1546121988,1546122463,FR 1546122464,1546122479,DZ 1546122480,1546122633,FR 1546122634,1546122641,GB 1546122642,1546122642,DE 1546122643,1546122649,FR 1546122650,1546122650,PT 1546122651,1546122696,FR 1546122697,1546122704,ES 1546122705,1546124191,FR 1546124192,1546124223,DZ 1546124224,1546125311,FR 1546125312,1546256383,GB 1546256384,1546264575,RU 1546264576,1546266623,TR 1546266624,1546268671,RU 1546268672,1546270719,IR 1546270720,1546272767,GB 1546272768,1546274815,NO 1546274816,1546276863,SE 1546276864,1546278911,IT 1546278912,1546280959,RU 1546280960,1546283007,IT 1546283008,1546285055,CH 1546285056,1546287103,PL 1546287104,1546289151,GB 1546289152,1546291199,RU 1546291200,1546293247,AT 1546293248,1546295295,GB 1546295296,1546297343,SE 1546297344,1546299391,RU 1546299392,1546301439,GB 1546301440,1546303487,LU 1546303488,1546305535,CH 1546305536,1546307583,DE 1546307584,1546311679,RU 1546311680,1546313727,FR 1546313728,1546315775,DE 1546315776,1546317823,NL 1546317824,1546319871,CH 1546319872,1546321919,RS 1546321920,1546323967,RU 1546323968,1546326015,NO 1546326016,1546328063,ES 1546328064,1546330111,CZ 1546330112,1546332159,SE 1546332160,1546334207,GB 1546334208,1546336255,DE 1546336256,1546338303,CZ 1546338304,1546340351,GB 1546340352,1546342399,DK 1546342400,1546344447,TR 1546344448,1546346495,DK 1546346496,1546348543,AT 1546348544,1546348607,DE 1546348608,1546348623,CH 1546348624,1546350591,DE 1546350592,1546352639,PL 1546352640,1546354687,DK 1546354688,1546356735,FR 1546356736,1546358783,AM 1546358784,1546360831,PL 1546360832,1546364927,RU 1546364928,1546366975,SA 1546366976,1546369023,DK 1546369024,1546371071,RU 1546371072,1546373119,IS 1546373120,1546375167,HU 1546375168,1546377215,GB 1546377216,1546379263,CH 1546379264,1546381311,ES 1546381312,1546383359,DK 1546383360,1546385407,IT 1546385408,1546387455,FR 1546387456,1546491647,TR 1546491648,1546491903,RU 1546491904,1546518527,TR 1546518528,1546649599,KZ 1546649600,1546665983,SA 1546665984,1546682367,GB 1546682368,1546698751,BE 1546698752,1546715135,NL 1546715136,1546731519,LV 1546731520,1546731775,FR 1546731776,1546732543,MQ 1546732544,1546739711,FR 1546739712,1546739967,GP 1546739968,1546740991,FR 1546740992,1546741503,GP 1546741504,1546745343,FR 1546745344,1546745599,MQ 1546745600,1546746111,FR 1546746112,1546746367,MQ 1546746368,1546747903,FR 1546747904,1546764287,RU 1546764288,1546780671,UA 1546780672,1546797055,IR 1546797056,1546813439,DE 1546813440,1546862591,RU 1546862592,1546878975,GE 1546878976,1546895359,DE 1546895360,1546897919,IE 1546897920,1546898175,US 1546898176,1546911743,IE 1546911744,1546928127,SK 1546928128,1546944511,GB 1546944512,1546960895,UA 1546960896,1546964991,HU 1546964992,1546966015,US 1546966016,1546977279,HU 1546977280,1546993663,MK 1546993664,1547010047,RU 1547010048,1547026431,SI 1547026432,1547034623,ES 1547034624,1547036671,RU 1547036672,1547038719,SE 1547038720,1547040767,GB 1547040768,1547042815,NL 1547042816,1547059199,ES 1547059200,1547075583,RU 1547075584,1547091967,GB 1547091968,1547108351,GE 1547108352,1547124735,RU 1547124736,1547141119,MK 1547141120,1547149311,RO 1547149312,1547157503,KZ 1547157504,1547173887,PL 1547173888,1547436031,ES 1547436032,1547440127,AT 1547440128,1547444223,AL 1547448320,1547452415,SK 1547452416,1547456511,IT 1547456512,1547460607,RU 1547460608,1547468799,GB 1547468800,1547472895,PL 1547472896,1547476991,DK 1547476992,1547481087,ES 1547481088,1547485183,UA 1547485184,1547489279,IE 1547489280,1547493375,DE 1547493376,1547497471,RS 1547497472,1547498495,NL 1547498496,1547501567,GB 1547501568,1547505663,TR 1547505664,1547509759,RU 1547509760,1547513855,LT 1547513856,1547517951,AT 1547517952,1547522047,RU 1547522048,1547526143,CZ 1547526144,1547534335,HU 1547534336,1547538431,FR 1547542528,1547546623,FR 1547546624,1547550719,IR 1547550720,1547554815,IE 1547554816,1547555071,AT 1547555072,1547555078,NL 1547555079,1547555079,AT 1547555080,1547555327,NL 1547555328,1547558911,AT 1547558912,1547563007,IL 1547563008,1547565055,NL 1547565056,1547565823,US 1547565824,1547567103,NL 1547567104,1547571199,GB 1547571200,1547575295,AT 1547575296,1547579391,NO 1547579392,1547583487,RU 1547583488,1547587583,KG 1547587584,1547591679,IT 1547591680,1547595775,EE 1547595776,1547599871,JO 1547599872,1547603967,LT 1547603968,1547608063,RU 1547608064,1547612159,LB 1547612160,1547616255,IR 1547616256,1547620351,DK 1547620352,1547620375,JE 1547620376,1547620383,NG 1547620384,1547620399,JE 1547620400,1547620407,NG 1547620408,1547620599,JE 1547620600,1547620607,NG 1547620608,1547620919,JE 1547620920,1547620927,NG 1547620928,1547621015,JE 1547621016,1547621023,NG 1547621024,1547621047,JE 1547621048,1547621055,NG 1547621056,1547621183,JE 1547621184,1547621191,NG 1547621192,1547621215,JE 1547621216,1547621223,NG 1547621224,1547621231,JE 1547621232,1547621239,NG 1547621240,1547621255,JE 1547621256,1547621263,NG 1547621264,1547621271,JE 1547621272,1547621279,NG 1547621280,1547621447,JE 1547621448,1547621455,NG 1547621456,1547621463,JE 1547621464,1547621471,NG 1547621472,1547622919,JE 1547622920,1547622935,NG 1547622936,1547623167,JE 1547623168,1547623423,NG 1547623424,1547623479,JE 1547623480,1547623487,NG 1547623488,1547624447,JE 1547624448,1547628543,CZ 1547628544,1547632639,BG 1547632640,1547636735,TR 1547636736,1547640831,SI 1547640832,1547644927,PL 1547644928,1547649023,CZ 1547649024,1547653119,RU 1547653120,1547657215,LV 1547657216,1547660287,RU 1547660288,1547661311,BE 1547661312,1547665407,ES 1547665408,1547669503,GB 1547669504,1547673599,AT 1547673600,1547677695,NL 1547677696,1547683839,RU 1547683840,1547685887,FR 1547685888,1547689983,AT 1547689984,1547694079,IT 1547694080,1547698175,HU 1547698176,1548158599,NL 1548158600,1548158607,GB 1548158608,1548159231,NL 1548159232,1548159235,ES 1548159236,1548159487,NL 1548159488,1548159999,GB 1548160000,1548160255,NL 1548160256,1548160257,BE 1548160258,1548160259,NL 1548160260,1548160511,BE 1548160512,1548162463,NL 1548162464,1548162495,FR 1548162496,1548169215,NL 1548169216,1548171263,DE 1548171264,1548172287,FR 1548172288,1548173311,GB 1548173312,1548174335,BE 1548174336,1548174847,LU 1548174848,1548175359,IE 1548175360,1548175871,ES 1548175872,1548176383,PT 1548176384,1548176895,IT 1548176896,1548177407,CH 1548177408,1548177919,AT 1548177920,1548178431,PL 1548178432,1548178943,DK 1548178944,1548179455,NO 1548179456,1548179967,SE 1548179968,1548180479,FI 1548180480,1548180991,SK 1548180992,1548181503,TR 1548181504,1548182015,US 1548182016,1548182527,HK 1548182528,1548222463,NL 1548222464,1548746751,DE 1548746752,1549271039,RO 1549271040,1549795327,FR 1549795328,1550057471,AE 1550057472,1550188543,RU 1550188544,1550319615,FR 1550319616,1550581759,CH 1550581760,1550843903,NL 1550843904,1550974975,UA 1550974976,1550975999,RO 1550976000,1550976255,EG 1550976256,1550976767,RO 1550976768,1550977023,US 1550977024,1550979071,RO 1550979072,1550983167,IR 1550983168,1550983935,RO 1550983936,1550984191,GB 1550984192,1550984447,KR 1550984448,1550985215,RO 1550985216,1550987263,PS 1550987264,1550988287,IR 1550988288,1550988543,RO 1550988544,1550988799,JP 1550988800,1550990335,RO 1550990336,1550991359,AU 1550991360,1550996223,RO 1550996224,1550996479,AU 1550996480,1550998527,RO 1550998528,1550998783,IT 1550998784,1551007743,RO 1551007744,1551106047,MD 1551106048,1551237119,DE 1551237120,1551368191,GR 1551368192,1551499263,NL 1551503360,1551504383,GB 1551504384,1551505407,FR 1551507456,1551508479,DE 1551508480,1551509503,IT 1551516672,1551517695,IT 1551517696,1551518719,ES 1551528960,1551529983,FR 1551544320,1551547391,DE 1551548416,1551551487,DE 1551556608,1551558655,FR 1551560704,1551561727,DE 1551561728,1551562751,FR 1551564800,1551572991,FR 1551577088,1551580159,NL 1551604480,1551604735,SE 1551630336,1551892479,RU 1551892480,1555696895,FR 1555696896,1555697151,ES 1555697152,1555760639,FR 1555760640,1555760895,ES 1555760896,1556086783,FR 1556086784,1557069823,DE 1557069824,1557076991,GB 1557076992,1557077247,DE 1557077248,1557135359,GB 1557135360,1557313279,DE 1557313280,1557313535,US 1557313536,1557921791,DE 1557921792,1558052863,NO 1558052864,1558053760,FR 1558053761,1558053761,PT 1558053762,1558054351,FR 1558054352,1558054352,PT 1558054353,1558054399,FR 1558054400,1558054655,DE 1558054656,1558056102,FR 1558056103,1558056103,ES 1558056104,1558079407,FR 1558079408,1558079415,PL 1558079416,1558079423,GB 1558079424,1558079871,FR 1558079872,1558079887,GB 1558079888,1558081175,FR 1558081176,1558081183,BE 1558081184,1558083775,FR 1558083776,1558083791,DE 1558083792,1558084655,FR 1558084656,1558084659,BE 1558084660,1558085055,FR 1558085056,1558085071,GB 1558085072,1558091351,FR 1558091352,1558091352,ES 1558091353,1558093531,FR 1558093532,1558093532,HR 1558093533,1558093609,FR 1558093610,1558093610,ES 1558093611,1558097919,FR 1558097920,1558098175,GB 1558098176,1558102501,FR 1558102502,1558102502,DE 1558102503,1558102507,FR 1558102508,1558102508,DE 1558102509,1558103159,FR 1558103160,1558103167,GB 1558103168,1558112095,FR 1558112096,1558112127,ES 1558112128,1558112191,FR 1558112192,1558112192,ES 1558112193,1558112207,FR 1558112208,1558112208,ES 1558112209,1558112209,FR 1558112210,1558112211,ES 1558112212,1558118399,FR 1558118400,1558119423,DE 1558119424,1558122495,RU 1558122496,1558123007,SG 1558123008,1558123519,RU 1558123520,1558125567,LU 1558125568,1558141439,AT 1558141440,1558141695,CY 1558141696,1558147071,AT 1558147072,1558147327,LU 1558147328,1558147583,AT 1558147584,1558147839,RU 1558147840,1558148095,AT 1558148096,1558148351,SG 1558148352,1558148607,AT 1558148608,1558149631,US 1558149632,1558150143,RU 1558150144,1558150655,DE 1558150656,1558151167,NL 1558151168,1558172927,IT 1558172928,1558173183,US 1558173184,1558179839,IT 1558179840,1558179955,NL 1558179956,1558179959,IT 1558179960,1558180023,NL 1558180024,1558180039,IT 1558180040,1558180287,NL 1558180288,1558180351,IT 1558180352,1558180863,NL 1558180864,1558183935,IT 1558183936,1558708223,DE 1558708224,1558904831,GB 1558904832,1558970367,BE 1558970368,1559236607,GB 1559236608,1559240703,IL 1559240704,1559248895,BA 1559248896,1559257087,LV 1559257088,1559265279,UA 1559265280,1559269375,RU 1559269376,1559271423,NL 1559271424,1559273471,FI 1559273472,1559281663,CZ 1559281664,1559289855,RU 1559289856,1559298047,SK 1559298048,1559306239,RU 1559306240,1559314431,JO 1559314432,1559322623,GE 1559322624,1559330815,RU 1559330816,1559339007,BA 1559339008,1559347199,RU 1559347200,1559355391,SE 1559355392,1559388159,RU 1559388160,1559396351,UA 1559396352,1559404543,GB 1559412736,1559420927,IR 1559420928,1559429119,HR 1559429120,1559437311,FR 1559437312,1559445503,AT 1559445504,1559461887,RU 1559461888,1559470079,IT 1559470080,1559478271,RU 1559478272,1559486463,CZ 1559486464,1559494655,DK 1559494656,1559502847,SE 1559502848,1559511039,PL 1559511040,1559519231,SI 1559519232,1559527423,UA 1559527424,1559535615,RS 1559535616,1559543807,GB 1559543808,1559551999,SE 1559552000,1559560191,RU 1559560192,1559568383,SK 1559568384,1559576575,RU 1559576576,1559584767,HU 1559584768,1559592959,KG 1559592960,1559601151,FR 1559601152,1559609343,IT 1559609344,1559617535,SK 1559617536,1559625727,GB 1559625728,1559633919,DK 1559633920,1559642111,IT 1559650304,1559658495,IT 1559658496,1559683071,RU 1559683072,1559691263,IE 1559691264,1559756799,BG 1559756800,1559789567,AT 1559789568,1559822335,RU 1559838720,1559855103,UA 1559855104,1559887871,HU 1559887872,1559920639,PT 1559920640,1559932927,LU 1559932928,1559939071,DE 1559939072,1559942143,LU 1559942144,1559943167,DE 1559943168,1559944191,LU 1559944192,1559945727,FR 1559945728,1559946751,LU 1559946752,1559950335,DE 1559950336,1559951359,LU 1559951360,1559952383,DE 1559952384,1559953407,LU 1559953408,1559986175,MT 1559986176,1560018943,IE 1560018944,1560051711,DE 1560051712,1560084479,RU 1560084480,1560117247,JO 1560117248,1560125439,CZ 1560125440,1560135679,RU 1560135680,1560135807,UA 1560135808,1560135935,CZ 1560135936,1560137727,RU 1560137728,1560137983,DE 1560137984,1560150015,CZ 1560150016,1560182783,NL 1560182784,1560215551,SE 1560215552,1560281087,RU 1560281088,1562378239,FR 1562378240,1564999679,IT 1564999680,1565523967,UA 1565523968,1565655039,RU 1565655040,1565786111,AT 1565786112,1565917183,BY 1565917184,1566048255,RS 1566048256,1566056447,RU 1566056448,1566060543,IT 1566060544,1566064639,UA 1566064640,1566068735,RU 1566068736,1566072831,AZ 1566072832,1566081023,IT 1566081024,1566085119,RU 1566085120,1566089215,NL 1566089216,1566097407,RU 1566097408,1566101503,HU 1566101504,1566105599,RU 1566105600,1566109695,DE 1566109696,1566113791,CH 1566113792,1566117887,DE 1566117888,1566121983,TR 1566121984,1566126079,NO 1566126080,1566130175,IT 1566130176,1566134271,TR 1566134272,1566138367,GB 1566138368,1566142463,CZ 1566142464,1566146559,NO 1566146560,1566150655,GB 1566150656,1566154751,CZ 1566154752,1566158847,HU 1566158848,1566162943,RU 1566162944,1566167039,PL 1566167040,1566171135,UA 1566171136,1566175231,CY 1566175232,1566179327,IE 1566179328,1566183423,DK 1566183424,1566187519,ES 1566187520,1566191615,RU 1566191616,1566195711,FI 1566199808,1566207999,RU 1566208000,1566212095,DK 1566212096,1566216191,DE 1566216192,1566220287,SE 1566220288,1566224383,CZ 1566224384,1566228479,DE 1566228480,1566232575,GB 1566232576,1566248959,RU 1566248960,1566257151,GB 1566257152,1566261247,CZ 1566261248,1566265343,TR 1566265344,1566269439,DE 1566269440,1566273535,NO 1566273536,1566277631,RU 1566277632,1566281727,IT 1566281728,1566285823,CZ 1566285824,1566289919,RU 1566289920,1566294015,FI 1566294016,1566298111,IQ 1566298112,1566302207,PL 1566302208,1566306303,RU 1566306304,1566310399,CZ 1566310400,1566312447,SE 1566312448,1566314495,IE 1566314496,1566316543,BE 1566316544,1566318591,NL 1566318592,1566320639,RU 1566320640,1566322687,DE 1566322688,1566324735,CZ 1566324736,1566326783,HU 1566326784,1566328831,RU 1566328832,1566330879,IT 1566330880,1566334975,RU 1566334976,1566337023,NL 1566337024,1566339071,FR 1566339072,1566341119,RU 1566341120,1566343167,GB 1566343168,1566345215,DE 1566345216,1566347263,RU 1566347264,1566349311,DE 1566349312,1566351359,IT 1566351360,1566353407,AT 1566353408,1566355455,ES 1566355456,1566357503,RU 1566357504,1566359551,IT 1566359552,1566363647,RU 1566363648,1566365695,GB 1566365696,1566367743,RU 1566369792,1566371839,ES 1566371840,1566373887,IT 1566373888,1566375935,RS 1566375936,1566377983,DE 1566377984,1566380031,BG 1566380032,1566382079,IT 1566382080,1566384127,TR 1566384128,1566386175,CZ 1566386176,1566388223,FR 1566388224,1566390271,LU 1566390272,1566392319,LT 1566392320,1566394367,ES 1566394368,1566394528,GB 1566394529,1566394529,FR 1566394530,1566394530,GB 1566394531,1566394531,DE 1566394532,1566394532,PL 1566394533,1566394533,NL 1566394534,1566394534,SE 1566394535,1566394535,PT 1566394536,1566394538,GB 1566394539,1566394539,RU 1566394540,1566394623,GB 1566394624,1566396415,NO 1566396416,1566398463,GB 1566398464,1566400511,RU 1566400512,1566400607,NO 1566400608,1566400639,GB 1566400640,1566400671,NO 1566400672,1566400703,DE 1566400704,1566400735,NL 1566400736,1566401023,NO 1566401024,1566401087,US 1566401088,1566401151,NO 1566401152,1566401279,US 1566401280,1566401599,NO 1566401600,1566401631,HK 1566401632,1566401663,NO 1566401664,1566401695,SG 1566401696,1566401727,NO 1566401728,1566401759,AU 1566401760,1566402303,NO 1566402304,1566402559,SG 1566404608,1566406655,ES 1566406656,1566408703,NL 1566408704,1566410751,GB 1566410752,1566412799,RU 1566412800,1566414847,JO 1566414848,1566416895,FR 1566416896,1566418943,IT 1566418944,1566420991,RU 1566420992,1566423039,ES 1566423040,1566425087,FR 1566425088,1566427135,RS 1566427136,1566429183,IT 1566429184,1566437375,GB 1566439424,1566443519,DE 1566443520,1566445567,NO 1566445568,1566447615,PL 1566447616,1566451711,IT 1566451712,1566452223,IL 1566452224,1566452479,TR 1566452480,1566453759,IL 1566453760,1566455807,IQ 1566455808,1566457855,PT 1566457856,1566459903,CH 1566459904,1566461951,GB 1566461952,1566463999,DE 1566464000,1566466047,IT 1566466048,1566468095,ES 1566468096,1566470143,BE 1566470144,1566471007,GB 1566471008,1566471011,IE 1566471012,1566471143,GB 1566471144,1566471147,IE 1566471148,1566474239,GB 1566474240,1566476287,DE 1566476288,1566478335,BG 1566478336,1566482431,RU 1566482432,1566484479,FR 1566484480,1566486527,SE 1566486528,1566488575,RU 1566488576,1566490623,PL 1566490624,1566492671,TR 1566492672,1566494719,NL 1566494720,1566496767,SE 1566496768,1566498815,AM 1566498816,1566500863,NL 1566500864,1566502911,RU 1566502912,1566504959,CH 1566504960,1566507007,TR 1566507008,1566509055,NL 1566509056,1566511103,GB 1566511104,1566513151,GG 1566513152,1566515199,BH 1566515200,1566517247,CZ 1566517248,1566519295,RU 1566519296,1566521343,BE 1566521344,1566523391,FR 1566523392,1566525439,MK 1566525440,1566527487,IS 1566527488,1566529535,IE 1566529536,1566531583,PL 1566531584,1566533631,RU 1566533632,1566535679,GB 1566535680,1566537727,NL 1566537728,1566539775,GB 1566539776,1566541823,DE 1566541824,1566543871,RU 1566543872,1566545919,NL 1566545920,1566552063,RU 1566552064,1566554111,TR 1566554112,1566556159,UA 1566556160,1566558207,RU 1566558208,1566560255,JO 1566560256,1566560767,IT 1566560768,1566561023,SM 1566561024,1566564351,IT 1566564352,1566566399,IS 1566566400,1566568447,FR 1566568448,1566570495,KZ 1566570496,1566572543,NL 1566572544,1566703615,GB 1566703616,1566769151,SA 1566769152,1566834687,CZ 1566834688,1566900223,RU 1566900224,1566965759,IT 1566965760,1567031295,PT 1567031296,1567096831,SI 1567096832,1567162367,DE 1567162368,1567227903,PL 1567227904,1567293439,FI 1567293440,1567358975,IE 1567358976,1567424511,PT 1567424512,1567490047,CY 1567490048,1567555583,IR 1567555584,1567621119,AT 1567621120,1567686655,SA 1567686656,1567690751,RO 1567690752,1567692799,ES 1567692800,1567696383,RO 1567696384,1567696895,MD 1567696896,1567703039,RO 1567703040,1567709183,MD 1567709184,1567710207,RO 1567710208,1567711231,MD 1567711232,1567715327,RO 1567715328,1567717375,MD 1567717376,1567719167,RO 1567719168,1567719423,GB 1567719424,1567727359,RO 1567727360,1567727615,GB 1567727616,1567742975,RO 1567742976,1567743487,MD 1567743488,1567743999,RO 1567744000,1567748095,IR 1567748096,1567749119,RO 1567749120,1567750143,MD 1567750144,1567752191,RO 1567752192,1567756287,MD 1567756288,1567760383,IR 1567760384,1567765247,RO 1567765248,1567766271,GB 1567766272,1567767039,RO 1567767040,1567767551,GB 1567767552,1567768575,ES 1567768576,1567769343,RO 1567769344,1567769599,MD 1567769600,1567773951,RO 1567773952,1567774207,MD 1567774208,1567775743,RO 1567775744,1567776767,MD 1567776768,1567785983,RO 1567785984,1567786239,MD 1567786240,1567789055,RO 1567789056,1567793151,ES 1567793152,1567826175,RO 1567826176,1567826431,DE 1567826432,1567827455,RO 1567827456,1567827711,BG 1567827712,1567830015,RO 1567830016,1567831039,MD 1567831040,1567832831,RO 1567832832,1567833087,GB 1567833088,1567833599,NL 1567833600,1567834111,IT 1567834112,1567842303,RO 1567842304,1567842815,FR 1567842816,1567852543,RO 1567852544,1567856639,MD 1567856640,1567858687,RO 1567858688,1567860735,SE 1567860736,1567866879,RO 1567866880,1567867135,IN 1567867136,1567867391,RO 1567867392,1567867519,GB 1567867520,1567869183,RO 1567869184,1567869439,GB 1567869440,1567871999,RO 1567872000,1567873023,ES 1567873024,1567879167,MD 1567879168,1567883263,RO 1567883264,1567948799,MD 1567948800,1567961087,IR 1567961088,1567965183,MD 1567965184,1567966207,RO 1567966208,1567969279,MD 1567969280,1567973375,RO 1567973376,1567981567,IR 1567981568,1567983615,MD 1567983616,1567983871,RO 1567983872,1567984127,NL 1567984128,1567984639,RO 1567984640,1567987711,MD 1567987712,1567988223,IT 1567988224,1567988735,RO 1567988736,1567992831,MD 1567992832,1567993343,IT 1567993344,1567993599,GB 1567993600,1567993855,RO 1567993856,1567997951,IR 1567997952,1568014335,NL 1568014336,1568022527,DE 1568022528,1568023551,FR 1568023552,1568024063,RO 1568024064,1568024319,SG 1568024320,1568026623,RO 1568026624,1568030719,MD 1568030720,1568038911,RO 1568038912,1568059391,IR 1568059392,1568060415,RO 1568060416,1568063487,MD 1568063488,1568083967,RO 1568083968,1568084223,CN 1568084224,1568084991,RO 1568084992,1568086015,CN 1568086016,1568088063,RO 1568088064,1568104447,IR 1568104448,1568106495,MD 1568106496,1568107519,RO 1568107520,1568108543,MD 1568108544,1568109055,GB 1568109056,1568110079,RO 1568110080,1568111103,GB 1568111104,1568111359,RO 1568111360,1568111615,NL 1568111616,1568112127,GB 1568112128,1568112639,RO 1568112640,1568114687,MD 1568114688,1568115711,RO 1568115712,1568118783,MD 1568118784,1568120831,RO 1568120832,1568122879,MD 1568122880,1568130047,RO 1568130048,1568133119,MD 1568133120,1568137215,IR 1568137216,1568138239,RO 1568138240,1568141311,MD 1568141312,1568145407,DE 1568145408,1568178175,RO 1568178176,1568210943,RU 1568210944,1568243711,GB 1568243712,1568247551,GP 1568247552,1568247807,MF 1568247808,1568250879,GP 1568250880,1568251135,MF 1568251136,1568254719,GP 1568254720,1568254975,MF 1568254976,1568258815,GP 1568258816,1568259071,MF 1568259072,1568260607,GP 1568260608,1568260863,MF 1568260864,1568267263,GP 1568267264,1568267775,MF 1568267776,1568276479,GP 1568276480,1568309247,DE 1568309248,1568342015,RO 1568342016,1568374783,BG 1568374784,1568440319,RU 1568440320,1568473087,NO 1568473088,1568505855,BY 1568505856,1568538623,NL 1568538624,1568555007,IR 1568555008,1568571391,UA 1568571392,1568604159,LB 1568604160,1568636927,UA 1568636928,1569193983,DE 1569193984,1569718271,HR 1569718272,1570242559,IT 1570242560,1570275327,GB 1570275328,1570308095,BG 1570308096,1570340863,CZ 1570340864,1570373631,RU 1570373632,1570406399,NL 1570406400,1570439167,PL 1570439168,1570471935,TR 1570471936,1570504703,BG 1570504704,1570570239,ES 1570570240,1570572287,NL 1570572288,1570574335,UA 1570574336,1570576383,RU 1570576384,1570578431,UA 1570578432,1570580479,CH 1570580480,1570582527,RU 1570582528,1570584575,DE 1570584576,1570586623,RU 1570586624,1570590719,PL 1570590720,1570592767,IL 1570592768,1570596863,PL 1570598912,1570600959,PL 1570600960,1570603007,RU 1570603008,1570605055,CZ 1570605056,1570607103,NL 1570607104,1570609151,RU 1570609152,1570611199,PL 1570611200,1570617343,RU 1570619392,1570621439,BA 1570621440,1570625535,RU 1570625536,1570627583,GB 1570627584,1570635775,RU 1570635776,1570644767,FR 1570644768,1570644775,GB 1570644776,1570644991,FR 1570644992,1570645247,GB 1570645248,1570652159,FR 1570652160,1570660863,SE 1570660864,1570661375,NO 1570661376,1570662143,SE 1570662144,1570662399,DE 1570662400,1570668543,SE 1570668544,1570686975,RU 1570686976,1570693119,NL 1570693120,1570695167,RU 1570695168,1570696191,PL 1570696192,1570697215,NL 1570697216,1570701311,RU 1570701312,1570717695,PL 1570717696,1570725887,HR 1570725888,1570734079,DE 1570734080,1570750463,PL 1570750464,1570752511,AL 1570752512,1570754559,GB 1570754560,1570756607,ES 1570756608,1570764799,RU 1570764800,1570766847,DE 1570766848,1571291135,DK 1571291136,1571422207,SA 1571422208,1571422463,CZ 1571422464,1571422719,UA 1571422720,1571423231,RU 1571423232,1571423487,UA 1571423488,1571423999,RU 1571424000,1571424255,KZ 1571424256,1571424511,KG 1571424512,1571424767,AM 1571424768,1571425023,CZ 1571425024,1571425024,RU 1571425025,1571425148,CZ 1571425149,1571425149,RU 1571425150,1571425231,CZ 1571425232,1571425232,RU 1571425233,1571425279,CZ 1571425280,1571425535,RU 1571425536,1571425791,NL 1571425792,1571425871,CZ 1571425872,1571425872,RU 1571425873,1571426047,CZ 1571426048,1571426303,UA 1571426304,1571428607,CZ 1571428608,1571428863,UA 1571428864,1571430399,CZ 1571430400,1571430911,UA 1571430912,1571431167,BY 1571431168,1571431423,UA 1571431424,1571432447,KZ 1571432448,1571434495,RU 1571434496,1571435519,UA 1571435520,1571436031,RU 1571436032,1571436287,CZ 1571436288,1571436543,UA 1571436544,1571438591,BA 1571438592,1571440639,UA 1571440640,1571440895,RU 1571440896,1571441407,CZ 1571441408,1571441663,UA 1571441664,1571441919,RU 1571441920,1571442175,CZ 1571442176,1571442687,NL 1571442688,1571443199,UA 1571443200,1571443711,RU 1571443712,1571444991,CZ 1571444992,1571445247,UA 1571445248,1571446271,NL 1571446272,1571446783,RU 1571446784,1571447039,GB 1571447040,1571447295,UA 1571447296,1571447807,RU 1571447808,1571448063,CZ 1571448064,1571448319,RU 1571448320,1571448575,CZ 1571448576,1571448831,RU 1571448832,1571449343,NL 1571449344,1571449855,CZ 1571449856,1571451391,RU 1571451392,1571452927,UA 1571452928,1571453695,RU 1571453696,1571453951,CZ 1571453952,1571455999,RU 1571456000,1571456511,UA 1571456512,1571456767,CZ 1571456768,1571457023,UA 1571457024,1571457535,CZ 1571457536,1571458559,RU 1571458560,1571458815,CZ 1571458816,1571459071,BY 1571459072,1571463167,UA 1571463168,1571466239,CZ 1571466240,1571467007,RU 1571467008,1571467263,CZ 1571467264,1571467775,RU 1571467776,1571468287,CZ 1571468288,1571469311,RU 1571469312,1571469823,BY 1571469824,1571470335,CZ 1571470336,1571470847,UA 1571470848,1571475455,RU 1571475456,1571476479,CZ 1571476480,1571479551,RU 1571479552,1571483647,CZ 1571483648,1571484159,RU 1571484160,1571485183,CZ 1571485184,1571486719,RU 1571486720,1571486975,CZ 1571486976,1571487231,UA 1571487232,1571487743,CZ 1571487744,1571489023,SK 1571489024,1571489279,UA 1571489280,1571489535,BY 1571489536,1571491071,RU 1571491072,1571491327,CZ 1571491328,1571495935,UA 1571495936,1571496447,RU 1571496448,1571497983,BY 1571497984,1571500031,RU 1571500032,1571504127,BY 1571504128,1571508223,UA 1571508224,1571514367,CZ 1571514368,1571520511,BY 1571520512,1571522047,UA 1571522048,1571522815,RU 1571522816,1571523583,CZ 1571523584,1571524351,RU 1571524352,1571524607,CZ 1571524608,1571526655,RU 1571526656,1571526911,UA 1571526912,1571528191,CZ 1571528192,1571528703,UA 1571528704,1571529215,BY 1571529216,1571529471,CZ 1571529472,1571529727,UA 1571529728,1571530239,RU 1571530240,1571531263,CZ 1571531264,1571532031,UA 1571532032,1571532287,RU 1571532288,1571532543,CZ 1571532544,1571532799,RU 1571532800,1571534079,CZ 1571534080,1571534847,RU 1571534848,1571535103,LV 1571535104,1571535359,UA 1571535360,1571535617,CZ 1571535618,1571535618,RU 1571535619,1571535871,CZ 1571535872,1571538943,RU 1571538944,1571539967,CZ 1571539968,1571540223,UA 1571540224,1571540693,CZ 1571540694,1571540695,RU 1571540696,1571540696,CZ 1571540697,1571540697,RU 1571540698,1571540991,CZ 1571540992,1571541247,RU 1571541248,1571541503,UA 1571541504,1571542015,CZ 1571542016,1571542527,RU 1571542528,1571542783,SK 1571542784,1571543039,CZ 1571543040,1571543551,NL 1571543552,1571543807,UA 1571543808,1571545343,RU 1571545344,1571545599,UA 1571545600,1571545855,CZ 1571545856,1571546111,RU 1571546112,1571546879,CZ 1571546880,1571547135,RU 1571547136,1571549183,CZ 1571549184,1571550207,UA 1571550208,1571550463,RU 1571550464,1571553279,UA 1571553280,1571684351,IL 1571684352,1571686399,ES 1571686400,1571688447,GB 1571688448,1571690495,CH 1571690496,1571692543,PL 1571692544,1571694591,FR 1571694592,1571696639,LU 1571696640,1571700735,RU 1571700736,1571702783,IT 1571702784,1571704831,RU 1571704832,1571706879,GB 1571706880,1571708927,NL 1571708928,1571710975,GB 1571710976,1571713023,NL 1571713024,1571715071,RU 1571715072,1571717119,GR 1571717120,1571719167,RU 1571719168,1571721215,GB 1571721216,1571723263,FR 1571723264,1571725311,GB 1571725312,1571727359,RO 1571727360,1571729407,IE 1571729408,1571731455,SK 1571731456,1571733503,CH 1571733504,1571735551,FI 1571735552,1571737599,NL 1571739648,1571741695,GB 1571741696,1571743743,RU 1571743744,1571745791,GB 1571745792,1571747839,RU 1571747840,1571748095,GB 1571748096,1571748351,US 1571748352,1571748607,SG 1571748608,1571748863,GB 1571748864,1571749119,US 1571749120,1571749375,SG 1571749376,1571749887,GB 1571749888,1571758079,RU 1571758080,1571766271,IL 1571766272,1571786751,PL 1571790848,1571794943,PL 1571794944,1571799039,NL 1571799040,1571815423,UA 1571815424,1571815679,FR 1571815680,1571815935,RE 1571815936,1571817215,FR 1571817216,1571817471,RE 1571817472,1571817727,FR 1571817728,1571817983,RE 1571817984,1571823615,FR 1571823616,1571823871,RE 1571823872,1571825151,FR 1571825152,1571825407,RE 1571825408,1571826687,FR 1571826688,1571826943,RE 1571826944,1571827711,FR 1571827712,1571827967,RE 1571827968,1571829759,FR 1571829760,1571830015,RE 1571830016,1571830527,FR 1571830528,1571830783,RE 1571830784,1571831807,FR 1571831808,1571848191,DK 1571848192,1571864575,RU 1571864576,1571880959,PL 1571880960,1571897343,RU 1571913728,1571930111,GE 1571930112,1571946495,LV 1571946496,1571962879,SA 1571962880,1571979263,RU 1571979264,1571995647,DK 1571995648,1572012031,UA 1572012032,1572020223,NO 1572020224,1572028415,SE 1572028416,1572028927,GB 1572028928,1572029183,UA 1572029184,1572030156,GB 1572030157,1572030157,RU 1572030158,1572030463,GB 1572030464,1572034815,RU 1572034816,1572034943,BY 1572034944,1572035071,US 1572035072,1572035199,CZ 1572035200,1572035327,NG 1572035328,1572035455,US 1572035456,1572035583,RU 1572035584,1572036607,GB 1572036608,1572042751,RU 1572042752,1572043263,GB 1572043264,1572044799,RU 1572044800,1572061183,IT 1572061184,1572077567,PL 1572077568,1572093951,RU 1572093952,1572095999,NL 1572096000,1572098047,DE 1572098048,1572100095,DK 1572100096,1572102143,CH 1572102144,1572110335,BA 1572110336,1572112383,GB 1572112384,1572114431,RU 1572114432,1572116479,BA 1572116480,1572118527,DE 1572118528,1572126719,PL 1572126720,1572143103,UA 1572143104,1572159487,DE 1572159488,1572175871,CZ 1572175872,1572192255,PL 1572192256,1572225023,RU 1572225024,1572241407,TR 1572241408,1572257791,SE 1572257792,1572274175,FR 1572274176,1572276223,FI 1572276224,1572277247,US 1572277248,1572290559,SG 1572290560,1572306943,RU 1572306944,1572323327,BG 1572323328,1572339711,UA 1572339712,1572343807,PS 1572343808,1572347903,CH 1572347904,1572351999,FR 1572352000,1572356095,DE 1572356096,1572360191,SK 1572360192,1572364287,RS 1572364288,1572368383,NL 1572368384,1572372479,NO 1572372480,1572376575,DE 1572376576,1572380671,TR 1572380672,1572384767,RU 1572384768,1572388863,DE 1572388864,1572392959,DK 1572392960,1572393471,NL 1572393472,1572393727,US 1572393728,1572393983,GB 1572393984,1572394239,DE 1572394240,1572394495,US 1572394496,1572394751,FR 1572394752,1572395263,US 1572395264,1572395519,NL 1572395520,1572397055,US 1572397056,1572401151,AZ 1572401152,1572405247,GB 1572405248,1572409343,CZ 1572409344,1572413439,RU 1572413440,1572417535,AM 1572417536,1572421631,CZ 1572421632,1572425727,KZ 1572425728,1572429823,LB 1572429824,1572433919,CZ 1572433920,1572438015,IT 1572438016,1572442111,AT 1572442112,1572446207,RU 1572450304,1572458495,RU 1572458496,1572462591,UA 1572462592,1572466687,LB 1572466688,1572470783,EE 1572470784,1572474879,DE 1572474880,1572475135,ZA 1572475136,1572483071,GB 1572483072,1572487167,RU 1572487168,1572491007,RS 1572491008,1572491263,LU 1572491264,1572495359,IT 1572495360,1572499455,RU 1572499456,1572503551,TR 1572503552,1572505983,IT 1572505984,1572506623,GR 1572506624,1572507647,IT 1572507648,1572511743,GB 1572511744,1572515839,DE 1572515840,1572519935,NL 1572519936,1572520447,DE 1572520448,1572520703,ES 1572520704,1572524031,DE 1572524032,1572528127,GE 1572528128,1572532223,RU 1572532224,1572536319,IT 1572536320,1572536575,GB 1572536576,1572537087,GG 1572537088,1572538367,GB 1572538368,1572540415,NL 1572540416,1572542463,GB 1572542464,1572544511,IT 1572544512,1572545407,IQ 1572545408,1572545439,AU 1572545440,1572546559,IQ 1572546560,1572548607,FR 1572548608,1572550655,NL 1572550656,1572552703,DE 1572552704,1572554751,TR 1572554752,1572556799,RU 1572556800,1572558847,NO 1572558848,1572560895,IT 1572560896,1572562943,RU 1572562944,1572564991,CZ 1572564992,1572567039,DE 1572567040,1572569087,RU 1572571136,1572573183,BG 1572573184,1572573439,GB 1572573440,1572574463,GG 1572574464,1572574719,GB 1572574720,1572574975,GG 1572574976,1572575231,GB 1572575232,1572577279,RU 1572577280,1572579327,AM 1572579328,1572581375,GB 1572581376,1572585471,RU 1572585472,1572587519,CH 1572587520,1572589567,TR 1572589568,1572591615,CH 1572591616,1572593663,NL 1572593664,1572595711,GB 1572595712,1572597759,DE 1572597760,1572599807,XK 1572599808,1572601855,DE 1572601856,1572603903,SE 1572603904,1572605951,GE 1572605952,1572607999,RU 1572608000,1572610047,DE 1572610048,1572612095,UA 1572612096,1572614143,RU 1572614144,1572616191,ES 1572618240,1572620287,NL 1572620288,1572622335,CH 1572622336,1572624383,RU 1572624384,1572626431,NO 1572626432,1572628479,IT 1572628480,1572630527,DE 1572630528,1572632575,IT 1572632576,1572634623,RU 1572634624,1572634879,GB 1572634880,1572635391,NL 1572635392,1572635647,FR 1572635648,1572635903,ES 1572635904,1572636159,DE 1572636160,1572636415,IT 1572636416,1572636671,NL 1572636672,1572638719,ES 1572638720,1572640767,FR 1572640768,1572642815,RU 1572642816,1572644863,US 1572644864,1572646911,FR 1572646912,1572648959,GB 1572648960,1572651007,RU 1572651008,1572653055,BH 1572653056,1572657151,RU 1572657152,1572659199,DE 1572659200,1572661247,IT 1572661248,1572663295,NO 1572663296,1572665343,DE 1572665344,1572667391,NL 1572667392,1572669439,GB 1572669440,1572673535,RU 1572673536,1572675583,AT 1572675584,1572677631,ES 1572677632,1572683775,RU 1572683776,1572685823,CH 1572685824,1572689919,RU 1572689920,1572691967,ES 1572691968,1572694015,SA 1572694016,1572696063,GB 1572696064,1572698111,HU 1572700160,1572702207,NL 1572702208,1572704255,IT 1572704256,1572706303,RU 1572706304,1572708351,DE 1572708352,1572708607,GB 1572708608,1572709375,GG 1572709376,1572709887,GB 1572709888,1572710143,GG 1572710144,1572710399,GB 1572710400,1572712447,DE 1572712448,1572714495,ES 1572714496,1572714943,NG 1572714944,1572714959,IT 1572714960,1572715775,NG 1572715776,1572716031,IT 1572716032,1572716543,NG 1572716544,1572718591,SA 1572718592,1572720639,RU 1572720640,1572722687,IT 1572722688,1572724735,RU 1572724736,1572726783,BY 1572726784,1572728831,CH 1572728832,1572730879,SE 1572730880,1572732927,RU 1572732928,1572734975,HU 1572737024,1572739071,RU 1572739072,1572741119,IR 1572741120,1572743167,FI 1572743168,1572745215,UA 1572745216,1572749311,CZ 1572749312,1572751359,DE 1572751360,1572753407,CH 1572753408,1572755455,NO 1572755456,1572757503,DE 1572757504,1572759551,FI 1572759552,1572761599,RU 1572761600,1572763647,GB 1572763648,1572765695,TR 1572765696,1572767743,CZ 1572767744,1572769791,NL 1572769792,1572771839,RO 1572771840,1572773887,ES 1572773888,1572775935,RS 1572775936,1572777983,GB 1572777984,1572780031,UA 1572780032,1572782079,NL 1572782080,1572784127,SE 1572784128,1572786175,RU 1572786176,1572788223,FR 1572788224,1572790271,TR 1572790272,1572792319,RU 1572792320,1572794367,DE 1572794368,1572796415,RU 1572796416,1572798463,DE 1572798464,1572800511,NL 1572800512,1572800738,RU 1572800739,1572800740,UA 1572800741,1572800741,RU 1572800742,1572800742,UA 1572800743,1572804607,RU 1572804608,1572808703,GB 1572808704,1572810751,FR 1572810752,1572812799,DE 1572812800,1572814847,RU 1572814848,1572816895,KW 1572816896,1572818943,RU 1572818944,1572820991,FR 1572820992,1572823039,CH 1572823040,1572825087,BY 1572825088,1572827135,RU 1572827136,1572829183,NO 1572829184,1572831231,FI 1572831232,1572833279,NL 1572833280,1572835327,ES 1572835328,1572837375,IE 1572837376,1572839423,DK 1572839424,1572841471,DE 1572842752,1572843007,NL 1572843520,1572845567,JO 1572845568,1572847615,FR 1572847616,1572849663,GI 1572849664,1572850431,JE 1572850432,1572851711,GB 1572851712,1572853759,DE 1572853760,1572855807,BE 1572855808,1572857855,KZ 1572857856,1572859903,SE 1572859904,1572861951,IT 1572861952,1572863999,CH 1572864000,1577058303,DE 1577058304,1578106879,GB 1578106880,1578139647,DE 1578139648,1578172415,CH 1578172416,1578237951,MT 1578237952,1578303487,DK 1578303488,1578369023,RU 1578369024,1578434559,AZ 1578434560,1578500095,HU 1578500096,1578565631,FI 1578565632,1578579321,FR 1578579322,1578579322,HR 1578579323,1578582015,FR 1578582016,1578584063,IT 1578584064,1578584355,FR 1578584356,1578584356,IT 1578584357,1578584680,FR 1578584681,1578584681,PT 1578584682,1578584689,FR 1578584690,1578584690,PT 1578584691,1578585087,FR 1578585088,1578585299,PT 1578585300,1578585300,FR 1578585301,1578586111,PT 1578586112,1578588159,ES 1578588160,1578590207,PL 1578590208,1578590787,FR 1578590788,1578590791,ES 1578590792,1578590851,FR 1578590852,1578590855,ES 1578590856,1578590863,FR 1578590864,1578590879,BE 1578590880,1578591087,FR 1578591088,1578591103,IT 1578591104,1578591695,FR 1578591696,1578591699,ES 1578591700,1578592071,FR 1578592072,1578592079,ES 1578592080,1578592167,FR 1578592168,1578592171,IT 1578592172,1578592175,FR 1578592176,1578592183,CZ 1578592184,1578592191,PT 1578592192,1578592199,BE 1578592200,1578592207,CH 1578592208,1578592295,FR 1578592296,1578592303,NL 1578592304,1578592783,FR 1578592784,1578592799,BE 1578592800,1578593023,FR 1578593024,1578593279,DE 1578593280,1578593415,FR 1578593416,1578593423,IT 1578593424,1578593439,FR 1578593440,1578593443,ES 1578593444,1578593551,FR 1578593552,1578593559,NL 1578593560,1578593955,FR 1578593956,1578593959,ES 1578593960,1578594559,FR 1578594560,1578594815,ES 1578594816,1578595295,FR 1578595296,1578595327,DE 1578595328,1578595367,FR 1578595368,1578595371,IT 1578595372,1578595419,FR 1578595420,1578595423,GB 1578595424,1578595807,FR 1578595808,1578595823,ES 1578595824,1578595987,FR 1578595988,1578595991,ES 1578595992,1578596351,FR 1578596352,1578596863,GB 1578596864,1578602495,FR 1578602496,1578604543,NL 1578604544,1578606591,GB 1578606592,1578608639,DE 1578608640,1578610687,CZ 1578610688,1578611167,FR 1578611168,1578611175,DE 1578611176,1578611967,FR 1578611968,1578611971,DE 1578611972,1578611979,FR 1578611980,1578611983,DE 1578611984,1578612907,FR 1578612908,1578612911,ES 1578612912,1578613436,FR 1578613437,1578613437,ES 1578613438,1578613735,FR 1578613736,1578613739,ES 1578613740,1578613931,FR 1578613932,1578613935,NL 1578613936,1578614319,FR 1578614320,1578614323,RU 1578614324,1578614327,HU 1578614328,1578614399,FR 1578614400,1578614403,EE 1578614404,1578614423,FR 1578614424,1578614427,IS 1578614428,1578614431,LV 1578614432,1578614435,BG 1578614436,1578614459,FR 1578614460,1578614463,NO 1578614464,1578614471,FR 1578614472,1578614475,SI 1578614476,1578614479,UA 1578614480,1578614495,FR 1578614496,1578614511,DE 1578614512,1578631167,FR 1578631168,1578659839,RO 1578659840,1578663935,ES 1578663936,1578762239,RU 1578762240,1578795007,BG 1578795008,1578827775,RU 1578827776,1578860543,UA 1578860544,1578893311,HU 1578893312,1578991615,RU 1578991616,1579024383,KW 1579024384,1579057151,GB 1579057152,1579089919,LV 1579089920,1579106303,GB 1579106304,1579122687,DE 1579122688,1579155455,RU 1579155456,1579679743,IT 1579679744,1579745279,PL 1579745280,1579810815,RU 1579810816,1579876351,PL 1579876352,1579941887,GE 1579941888,1580007423,HU 1580007424,1580015615,RU 1580015616,1580048383,UA 1580048384,1580064767,RU 1580064768,1580072959,GB 1580072960,1580083199,PT 1580083200,1580089343,US 1580089344,1580097535,PT 1580097536,1580105727,GB 1580105728,1580109567,PT 1580109568,1580109823,SE 1580109824,1580113919,US 1580113920,1580125695,PT 1580125696,1580125951,TR 1580125952,1580134399,PT 1580134400,1580135423,SE 1580135424,1580136447,ES 1580136448,1580138495,PT 1580138496,1580204031,IT 1580204032,1580335103,SA 1580335104,1580466175,RU 1580466176,1580597247,RO 1580597248,1580728319,TR 1580728320,1580990463,AE 1580990464,1581252607,PT 1581252608,1581776895,GR 1581776896,1581793279,RU 1581793280,1581809663,PL 1581809664,1581826047,BG 1581826048,1581842431,GB 1581842432,1581858815,BG 1581858816,1581875199,IT 1581875200,1581891583,TR 1581891584,1581907967,RU 1581907968,1581924351,IT 1581924352,1581940735,UA 1581940736,1581957119,IR 1581957120,1581973503,CZ 1581973504,1581989887,RU 1581989888,1582006271,PL 1582006272,1582022655,RU 1582022656,1582039039,NL 1582039040,1582055423,BH 1582055424,1582071807,UA 1582071808,1582088191,ES 1582088192,1582104575,GB 1582104576,1582153727,RU 1582153728,1582170111,SA 1582170112,1582186495,CH 1582186496,1582194271,TR 1582194272,1582194303,CY 1582194304,1582202879,TR 1582202880,1582219263,PL 1582219264,1582252031,RU 1582252032,1582268415,TR 1582268416,1582284799,DE 1582284800,1582301183,BH 1582301184,1582452223,IT 1582452224,1582452231,SI 1582452232,1582695151,IT 1582695152,1582695159,SI 1582695160,1582701383,IT 1582701384,1582701391,SI 1582701392,1582704639,IT 1582704640,1582705663,SI 1582705664,1582853903,IT 1582853904,1582853919,SI 1582853920,1583349759,IT 1583349760,1583611903,SA 1583611904,1583615999,LV 1583616000,1583620095,NL 1583620096,1583624191,IT 1583624192,1583628287,RS 1583628288,1583632383,DE 1583632384,1583636479,RU 1583636480,1583640575,MK 1583640576,1583644671,NL 1583644672,1583648767,DE 1583648768,1583652863,CH 1583652864,1583656959,FR 1583656960,1583665151,RU 1583665152,1583669247,UA 1583669248,1583673343,GE 1583673344,1583677439,DE 1583677440,1583681535,FI 1583681536,1583685631,PL 1583685632,1583689727,DE 1583689728,1583693823,IT 1583693824,1583697919,RU 1583697920,1583702015,TR 1583702016,1583706111,RU 1583706624,1583706879,RU 1583710208,1583714303,IR 1583714304,1583722495,GB 1583722496,1583726591,IR 1583726592,1583730687,BG 1583730688,1583734783,DK 1583734784,1583738879,LV 1583738880,1583742975,IR 1583742976,1583747071,TR 1583747072,1583751167,RU 1583751168,1583755263,NO 1583755264,1583759359,NL 1583759360,1583763455,TR 1583763456,1583767551,RU 1583767552,1583771647,AT 1583771648,1583775743,RU 1583775744,1583779839,IT 1583779840,1583780263,GB 1583780264,1583780271,IT 1583780272,1583780335,GB 1583780336,1583780343,IT 1583780344,1583780423,GB 1583780424,1583780431,IT 1583780432,1583780767,GB 1583780768,1583780775,IT 1583780776,1583780791,GB 1583780792,1583780799,IT 1583780800,1583781359,GB 1583781360,1583781367,IT 1583781368,1583781863,GB 1583781864,1583781871,IT 1583781872,1583782415,GB 1583782416,1583782423,IT 1583782424,1583782431,GB 1583782432,1583782439,IT 1583782440,1583782703,GB 1583782704,1583782711,IT 1583782712,1583782975,GB 1583782976,1583782983,IT 1583782984,1583783095,GB 1583783096,1583783103,IT 1583783104,1583783495,GB 1583783496,1583783503,IT 1583783504,1583783935,GB 1583788032,1583792127,TM 1583792128,1583796223,IE 1583796224,1583800319,DE 1583800320,1583804415,ME 1583804416,1583808511,GB 1583808512,1583812607,MD 1583812608,1583816703,NL 1583816704,1583820799,TR 1583820800,1583824895,LV 1583824896,1583828991,SI 1583828992,1583833087,RU 1583833088,1583837183,CH 1583841280,1583845375,FR 1583845376,1583849471,NL 1583849472,1583853567,DE 1583853568,1583857663,RU 1583857664,1583861759,SE 1583861760,1583865855,LU 1583865856,1583869951,RU 1583869952,1583874047,KZ 1583874048,1584398335,BE 1584398336,1584529407,CZ 1584529408,1584660479,DE 1584660480,1584857354,GB 1584857355,1584857355,DE 1584857356,1584922623,GB 1584922624,1585184767,TR 1585184768,1585190911,PL 1585190912,1585192959,ES 1585192960,1585195007,IT 1585195008,1585197055,CZ 1585197056,1585199103,IT 1585199104,1585201151,NL 1585201152,1585205247,IT 1585205248,1585207295,FR 1585207296,1585209343,NL 1585211392,1585213439,CZ 1585213440,1585214463,GB 1585214464,1585217535,NL 1585217536,1585219583,FR 1585219584,1585221631,NL 1585221632,1585223679,SK 1585223680,1585223935,MQ 1585223936,1585224063,RE 1585224064,1585225471,FR 1585225472,1585225727,YT 1585225728,1585227007,UA 1585227008,1585227263,RU 1585227264,1585227775,UA 1585227776,1585231871,RU 1585231872,1585233919,CZ 1585233920,1585238015,RU 1585238016,1585240063,DE 1585240064,1585241087,FR 1585241088,1585241343,GP 1585241344,1585242111,MQ 1585242112,1585244159,RU 1585244160,1585246207,FR 1585246208,1585248255,RU 1585248256,1585250303,CZ 1585250304,1585254399,RU 1585254400,1585256447,GB 1585256448,1585258495,DE 1585258496,1585260543,GB 1585260544,1585264639,RU 1585264640,1585265663,MT 1585265664,1585266687,IM 1585266688,1585270783,DE 1585270784,1585272831,IT 1585272832,1585274879,RU 1585274880,1585276927,ES 1585276928,1585278975,FR 1585278976,1585281023,AL 1585281024,1585283071,UA 1585283072,1585285119,GB 1585285120,1585287167,ES 1585287168,1585289215,CY 1585289216,1585291263,DE 1585291264,1585295359,FR 1585295360,1585297407,HU 1585297408,1585299455,RU 1585299456,1585301503,GB 1585301504,1585303551,LU 1585303552,1585305599,DE 1585305600,1585307647,CZ 1585307648,1585309695,QA 1585309696,1585311743,IT 1585311744,1585313791,RU 1585313792,1585315839,HU 1585315840,1585317887,DK 1585317888,1585319935,IT 1585319936,1585321983,CH 1585321984,1585324031,RU 1585324032,1585326079,NL 1585326080,1585328127,GB 1585328128,1585330175,BE 1585330176,1585332223,IT 1585332224,1585334271,NL 1585334272,1585336319,DE 1585336320,1585338367,SE 1585338368,1585340415,RU 1585340416,1585340671,DE 1585340672,1585342463,AT 1585342464,1585344511,GB 1585344512,1585346559,FR 1585346560,1585348607,GB 1585348608,1585350655,CH 1585350656,1585352703,IT 1585352704,1585354751,PT 1585354752,1585356799,RU 1585356800,1585358847,FI 1585358848,1585360895,PT 1585360896,1585362943,DK 1585362944,1585364991,IT 1585364992,1585367039,GB 1585367040,1585369087,RU 1585369088,1585371135,GB 1585371136,1585375231,SE 1585375232,1585377279,GB 1585377280,1585379327,ES 1585379328,1585381375,CH 1585381376,1585383423,RS 1585383424,1585385471,FR 1585385472,1585387519,DE 1585387520,1585389567,SI 1585389568,1585391615,SE 1585391616,1585393663,IT 1585393664,1585395711,DK 1585395712,1585397759,NO 1585397760,1585399807,RU 1585400832,1585401087,DE 1585401344,1585401599,DE 1585401600,1585401855,GB 1585401856,1585403903,IT 1585403904,1585405951,RU 1585405952,1585407999,GB 1585408000,1585410047,PL 1585410048,1585412095,GB 1585412096,1585414143,NO 1585414144,1585416191,CZ 1585416192,1585422335,RU 1585422336,1585424383,ES 1585424384,1585428479,RU 1585428480,1585432575,ES 1585432576,1585434623,RU 1585434624,1585436671,JO 1585436672,1585438719,RU 1585438720,1585440767,DE 1585440768,1585442815,IT 1585442816,1585446911,RU 1585446912,1585577983,KW 1585577984,1585643519,UA 1585643520,1585709055,RU 1585709056,1585840127,PT 1585840128,1585971199,DE 1585971200,1585979391,AT 1585979392,1585987583,GB 1585987584,1585995775,SE 1585995776,1586003967,AT 1586003968,1586012159,SK 1586012160,1586020351,DE 1586020352,1586028543,RU 1586028544,1586036735,GB 1586036736,1586061311,RU 1586061312,1586069503,SE 1586069504,1586073599,DK 1586073600,1586077695,DE 1586077696,1586085887,GE 1586085888,1586110463,RU 1586110464,1586118655,IT 1586118656,1586126847,DK 1586126848,1586135039,CZ 1586135040,1586143231,RU 1586143232,1586151423,IT 1586151424,1586159615,TR 1586159616,1586167807,MT 1586167808,1586175999,DE 1586176000,1586184191,BE 1586184192,1586192383,NO 1586192384,1586200575,RU 1586200576,1586208767,MD 1586208768,1586216959,IR 1586216960,1586225151,BG 1586225152,1586233343,RU 1586233344,1586241535,FR 1586241536,1586249727,SE 1586249728,1586257919,SI 1586266112,1586274303,RU 1586274304,1586282495,BE 1586282496,1586298879,RU 1586298880,1586307071,IT 1586307072,1586315263,RU 1586315264,1586323455,UZ 1586323456,1586331647,RU 1586331648,1586339839,PL 1586339840,1586348031,RU 1586348032,1586356223,SY 1586356224,1586372607,RU 1586372608,1586380799,JO 1586380800,1586388991,GB 1586388992,1586389503,ES 1586389504,1586389759,US 1586389760,1586397183,ES 1586399232,1586401279,RU 1586401280,1586403327,IT 1586403328,1586405375,IS 1586405376,1586407423,AT 1586407424,1586409471,GB 1586411520,1586412031,GB 1586412032,1586412287,US 1586412288,1586413567,GB 1586413568,1586415615,IT 1586415616,1586416255,ES 1586416256,1586417663,AD 1586417664,1586419711,NL 1586419712,1586421759,DE 1586421760,1586423807,SE 1586423808,1586425855,CZ 1586425856,1586427903,NL 1586427904,1586431999,CH 1586432000,1586434047,DK 1586434048,1586436095,FR 1586436096,1586438143,ES 1586438144,1586446335,RU 1586446336,1586448383,NO 1586448384,1586450431,ES 1586450432,1586452479,FR 1586452480,1586454527,CH 1586454528,1586456575,IT 1586456576,1586458623,GB 1586458624,1586460671,FR 1586460672,1586462719,GB 1586462720,1586464767,RU 1586464768,1586466815,ES 1586466816,1586468863,RU 1586468864,1586470911,IT 1586472960,1586475007,CZ 1586475008,1586477055,GR 1586477056,1586479103,BE 1586479104,1586481151,KG 1586481152,1586483199,ES 1586483200,1586485247,NL 1586485248,1586487295,FR 1586487296,1586489343,SA 1586489344,1586491391,CZ 1586491392,1586493439,RU 1586493440,1586495487,GB 1586495488,1587019775,DK 1587019776,1587085311,PL 1587085312,1587150847,UA 1587150848,1587154943,RU 1587154944,1587159039,PL 1587159040,1587163135,UA 1587163136,1587165183,DE 1587165184,1587167231,PL 1587167232,1587175423,RU 1587175424,1587177471,PL 1587177472,1587179519,RS 1587179520,1587183615,UA 1587183616,1587199999,RU 1587200000,1587216383,UA 1587216384,1587325951,BG 1587325952,1587326975,GR 1587326976,1587347455,BG 1587347456,1587412991,NL 1587412992,1587417087,RU 1587421184,1587425279,UA 1587425280,1587429375,UZ 1587429376,1587437567,UA 1587437568,1587445759,RU 1587445760,1587449855,PL 1587449856,1587453951,UA 1587453952,1587470335,RU 1587470336,1587474431,PL 1587478528,1587511295,RU 1587511296,1587544063,IL 1587544064,1588068351,IT 1588068352,1588133887,NL 1588133888,1588592639,GB 1588592640,1588593663,RO 1588593664,1588593919,MD 1588593920,1588594687,RO 1588594688,1588602879,IR 1588602880,1588604927,RO 1588604928,1588609023,IR 1588609024,1588613119,MD 1588613120,1588617215,IR 1588617216,1588619775,RO 1588619776,1588620287,SG 1588620288,1588621311,RO 1588621312,1588625407,MD 1588625408,1588637695,RO 1588637696,1588638719,ES 1588638720,1588641535,RO 1588641536,1588641791,GB 1588641792,1588643839,ES 1588643840,1588649983,RO 1588649984,1588652031,SE 1588652032,1588652159,NL 1588652160,1588654079,RO 1588654080,1588658175,DE 1588658176,1588659199,RO 1588659200,1588659711,NL 1588659712,1588661247,RO 1588661248,1588661503,NL 1588661504,1588664319,RO 1588664320,1588664575,TH 1588664576,1588664831,VG 1588664832,1588673535,RO 1588673536,1588674559,MD 1588674560,1588676607,RO 1588676608,1588678655,IR 1588678656,1588684799,RO 1588684800,1588685055,TH 1588685056,1588685311,VG 1588685312,1588689663,RO 1588689664,1588689919,RU 1588689920,1588690687,GB 1588690688,1588723711,RO 1588723712,1588854783,UA 1588854784,1588985855,RU 1588985856,1589182463,IR 1589182464,1589198847,OM 1589198848,1589200895,FR 1589200896,1589202943,IT 1589202944,1589204991,SE 1589204992,1589207039,DE 1589207040,1589215231,IT 1589215232,1589247999,GB 1589248000,1589256191,NO 1589256192,1589258239,SE 1589258240,1589264383,LV 1589264384,1589280767,NL 1589280768,1589313535,DE 1589313536,1589346303,LB 1589346304,1589379071,KW 1589379072,1589411839,RU 1589411840,1589444607,IL 1589444608,1589477375,DK 1589477376,1589510143,RS 1589510144,1589542911,RU 1589542912,1589575679,BG 1589575680,1589608447,RU 1589608448,1589622783,SE 1589622784,1589641215,DK 1589641216,1590034431,GB 1590034432,1590036479,RU 1590036480,1590038527,GB 1590038528,1590040575,RU 1590040576,1590042623,NL 1590042624,1590048767,RU 1590048768,1590050815,DE 1590050816,1590052863,SE 1590052864,1590054911,IT 1590054912,1590056959,GB 1590056960,1590059007,ES 1590059008,1590061055,IT 1590061056,1590063103,RU 1590063104,1590065151,CZ 1590065152,1590067199,IE 1590067200,1590069247,RU 1590069248,1590071295,AT 1590071296,1590073343,FR 1590073344,1590075391,NL 1590075392,1590077439,BE 1590077440,1590079487,GB 1590079488,1590079743,MQ 1590079744,1590080511,GP 1590080512,1590081535,MQ 1590081536,1590083583,GB 1590083584,1590085631,RU 1590085632,1590087679,FR 1590087680,1590089727,IT 1590089728,1590091775,RU 1590091776,1590093823,CZ 1590093824,1590095871,RU 1590095872,1590097919,CZ 1590097920,1590099967,CH 1590099968,1590102015,RU 1590102016,1590104063,IT 1590104064,1590106111,TJ 1590106112,1590108159,GB 1590108160,1590110207,TR 1590110208,1590112255,CZ 1590112256,1590114303,HU 1590114304,1590116351,FI 1590116352,1590120447,RU 1590120448,1590122495,IT 1590122496,1590124543,DE 1590126592,1590128639,RU 1590128640,1590130687,FI 1590130688,1590132735,FR 1590132736,1590134783,GB 1590136832,1590138879,GB 1590138880,1590140927,FR 1590140928,1590142975,UA 1590142976,1590145023,AT 1590145024,1590147071,HU 1590147072,1590149119,GB 1590149120,1590151167,CZ 1590151168,1590153215,TR 1590153216,1590157311,RU 1590157312,1590161407,GB 1590161408,1590163455,DE 1590163456,1590165503,NL 1590165504,1590689791,AE 1590689792,1591214079,NL 1591214080,1591738367,DE 1591738368,1592000511,BE 1592000512,1592004607,ES 1592004608,1592008703,AM 1592008704,1592012799,GB 1592012800,1592016895,CH 1592016896,1592020991,GB 1592020992,1592025087,SK 1592025088,1592029183,DE 1592029184,1592033279,RU 1592033280,1592037375,NL 1592037376,1592041471,CH 1592041472,1592045567,RU 1592045568,1592045595,FR 1592045596,1592045599,GB 1592045600,1592046107,FR 1592046108,1592046111,GB 1592046112,1592049663,FR 1592049664,1592053759,RU 1592053760,1592057855,NL 1592057856,1592061951,RS 1592061952,1592066047,RU 1592066048,1592066559,CY 1592066560,1592067583,US 1592067584,1592070143,CY 1592070144,1592074239,RU 1592074240,1592078335,SK 1592078336,1592082431,NL 1592082432,1592086527,GB 1592086528,1592087551,CZ 1592087552,1592088063,PL 1592088064,1592090623,CZ 1592090624,1592094719,RU 1592094720,1592098815,RS 1592098816,1592102911,GB 1592102912,1592107007,DE 1592107008,1592111103,GB 1592111104,1592115199,DE 1592115200,1592119295,ES 1592119296,1592123391,PL 1592123392,1592135679,RU 1592135680,1592139775,PL 1592139776,1592143871,RU 1592143872,1592147967,DE 1592147968,1592152063,IT 1592152064,1592156159,IL 1592156160,1592160255,IE 1592160256,1592168447,RU 1592168448,1592172543,CZ 1592172544,1592176639,RU 1592176640,1592180735,RS 1592180736,1592184831,UA 1592184832,1592188927,CH 1592188928,1592193023,UZ 1592193024,1592197119,RU 1592197120,1592201215,PL 1592201216,1592205311,RU 1592205312,1592209407,UA 1592209408,1592213503,PL 1592213504,1592217599,UA 1592217600,1592221695,CH 1592221696,1592225791,DK 1592225792,1592242175,RU 1592242176,1592246271,UA 1592246272,1592250367,RU 1592254464,1592258559,PL 1592258560,1592262655,NL 1592262656,1592268799,RU 1592268800,1592269823,UZ 1592269824,1592270847,RU 1592270848,1592272895,PL 1592272896,1592281087,RU 1592281088,1592283135,UA 1592283136,1592285183,GR 1592285184,1592287231,RU 1592287232,1592289279,RO 1592289280,1592291327,RU 1592291328,1592293375,NL 1592293376,1592295423,LT 1592295424,1592299519,RU 1592299520,1592303615,PL 1592303616,1592305663,NL 1592305664,1592307711,IR 1592307712,1592309759,UA 1592309760,1592311807,RU 1592311808,1592313855,DE 1592313856,1592315903,RU 1592315904,1592317951,UA 1592317952,1592319999,PL 1592320000,1592322047,LT 1592322048,1592324095,RU 1592328192,1592393727,RU 1592393728,1592459263,SE 1592459264,1592524799,TR 1592524800,1592557567,GB 1592557568,1592590335,BG 1592590336,1592594431,FI 1592594432,1592598527,DE 1592598528,1592623103,FI 1592623104,1592655871,RU 1592655872,1592786943,FR 1592786944,1592803327,PL 1592803328,1592819711,RU 1592819712,1592836095,UA 1592836096,1592852479,GE 1592852480,1592868863,RU 1592868864,1592885247,CZ 1592885248,1592901631,IR 1592901632,1592934399,RU 1592934400,1592950783,CZ 1592950784,1592967167,RU 1592967168,1592980351,LU 1592980352,1592980479,DE 1592980480,1592983551,LU 1592983552,1592999935,RU 1592999936,1593016319,MD 1593016320,1593049087,RU 1593049088,1593065471,UA 1593065472,1593081855,LT 1593081856,1593098239,UA 1593098240,1593114623,CH 1593114624,1593131007,SE 1593131008,1593131023,CH 1593131024,1593131519,GB 1593131520,1593131775,CH 1593131776,1593133055,GB 1593133056,1593133311,FR 1593133312,1593134335,GB 1593134336,1593134351,AT 1593134352,1593134591,GB 1593134592,1593134863,SE 1593134864,1593135615,GB 1593135616,1593135743,RU 1593135744,1593143295,GB 1593143296,1593143551,IE 1593143552,1593147391,GB 1593147392,1593163775,RU 1593163776,1593180159,AT 1593180160,1593196543,NO 1593196544,1593203103,SE 1593203104,1593203135,FI 1593203136,1593206783,SE 1593206784,1593207039,FI 1593207040,1593212927,SE 1593212928,1593229311,PL 1593229312,1593245695,EE 1593245696,1593247743,NL 1593247744,1593249791,IT 1593249792,1593251839,RU 1593251840,1593253631,FR 1593253632,1593253887,ES 1593253888,1593255935,CZ 1593255936,1593257983,DE 1593257984,1593260031,IE 1593260032,1593262079,RU 1593262080,1593264127,KZ 1593264128,1593266175,NL 1593266176,1593268223,GB 1593268224,1593270271,HU 1593270272,1593272319,GB 1593272320,1593274367,RU 1593274368,1593276415,DE 1593276416,1593278463,RU 1593278464,1593280511,KZ 1593282560,1593284607,AT 1593284608,1593286655,GB 1593286656,1593288703,FR 1593288704,1593290751,SE 1593290752,1593292799,FR 1593292800,1593294847,IT 1593294848,1593296895,NL 1593296896,1593298943,RS 1593298944,1593300991,RU 1593300992,1593303039,CH 1593303040,1593305087,UA 1593305088,1593307135,FR 1593307136,1593311231,RU 1593311232,1593343999,UA 1593344000,1593376767,HU 1593376768,1593409535,JO 1593409536,1593412095,DE 1593412096,1593412351,GB 1593412352,1593421055,DE 1593421056,1593421311,GB 1593421312,1593421567,FR 1593421568,1593421823,GB 1593421824,1593422591,DE 1593422592,1593422847,GB 1593422848,1593423359,DE 1593423360,1593423423,US 1593423424,1593423439,DE 1593423440,1593423615,US 1593423616,1593431167,DE 1593431168,1593431295,GB 1593431296,1593438719,DE 1593438720,1593438847,US 1593438848,1593438863,DE 1593438864,1593438975,US 1593438976,1593441023,DE 1593441024,1593441279,RU 1593441280,1593442303,DE 1593442304,1593475071,BA 1593475072,1593491455,HR 1593491456,1593499647,DE 1593499648,1593503743,GB 1593503744,1593505791,CZ 1593505792,1593540607,RU 1593540608,1593573375,PL 1593573376,1593606143,LU 1593606144,1593638911,SY 1593638912,1593671679,RU 1593671680,1593704447,HR 1593704448,1593737215,SE 1593737216,1593769983,PL 1593769984,1593802751,RU 1593802752,1593835519,SE 1593835520,1594884095,TR 1594884096,1595408383,ES 1595408384,1595998207,RU 1595998208,1596063743,DE 1596063744,1596129279,NO 1596129280,1596194815,IL 1596194816,1596260351,NL 1596260352,1596325887,RU 1596325888,1596391423,IR 1596391424,1596456959,ES 1596456960,1596588031,PL 1596588032,1596719103,BG 1596719104,1596850175,IE 1596850176,1596851199,CZ 1596851200,1596851455,RU 1596851456,1596851711,CZ 1596851712,1596851967,UA 1596851968,1596852223,CZ 1596852224,1596854271,UA 1596854272,1596858367,BY 1596858368,1596858879,CZ 1596858880,1596859391,RU 1596859392,1596862463,CZ 1596862464,1596876799,RU 1596876800,1596877055,CZ 1596877056,1596877311,RU 1596877312,1596878079,CZ 1596878080,1596878335,RU 1596878336,1596880895,CZ 1596880896,1596881407,UA 1596881408,1596881919,CZ 1596881920,1596887295,RU 1596887296,1596887551,KZ 1596887552,1596888063,UA 1596888064,1596889087,RU 1596889088,1596889599,KZ 1596889600,1596889855,CZ 1596889856,1596890111,UA 1596890112,1596890623,RU 1596890624,1596890879,CZ 1596890880,1596900351,RU 1596900352,1596900607,CZ 1596900608,1596900863,RU 1596900864,1596901375,NL 1596901376,1596907519,BY 1596907520,1596909567,RU 1596909568,1596911615,KZ 1596911616,1596911871,BY 1596911872,1596915711,RU 1596915712,1596923903,UA 1596923904,1596925951,CZ 1596925952,1596932095,RU 1596932096,1596940543,CZ 1596940544,1596940799,RU 1596940800,1596941055,UA 1596941056,1596941311,BY 1596941312,1596942335,RU 1596942336,1596945407,UA 1596945408,1596945919,CZ 1596945920,1596947455,RU 1596947456,1596948479,UA 1596948480,1596950527,BY 1596950528,1596950783,UA 1596950784,1596951551,CZ 1596951552,1596951807,RU 1596951808,1596952063,NL 1596952064,1596952575,UA 1596952576,1596952831,RU 1596952832,1596953599,CZ 1596953600,1596954623,UA 1596954624,1596954879,RU 1596954880,1596955391,CZ 1596955392,1596955647,RU 1596955648,1596956159,CZ 1596956160,1596956671,RU 1596956672,1596956927,CZ 1596956928,1596957183,RU 1596957184,1596957695,UA 1596957696,1596957951,RU 1596957952,1596958207,CZ 1596958208,1596958463,RU 1596958464,1596958719,UA 1596958720,1596961023,RU 1596961024,1596961279,CZ 1596961280,1596961791,SK 1596961792,1596962815,RU 1596962816,1596963327,AM 1596963328,1596963839,CZ 1596963840,1596964095,KZ 1596964096,1596964607,CZ 1596964608,1596967167,RU 1596967168,1596967423,CZ 1596967424,1596967935,RU 1596967936,1596968959,UA 1596968960,1596973055,BA 1596973056,1596975103,BY 1596975104,1596975615,CZ 1596975616,1596978431,RU 1596978432,1596978944,CZ 1596978945,1596978945,RU 1596978946,1596981247,CZ 1596981248,1597243391,PL 1597243392,1597505535,RU 1597505536,1597767679,KZ 1597767680,1598029823,ES 1598029824,1598062591,RO 1598062592,1598095359,RU 1598095360,1598128127,MD 1598128128,1598160895,TR 1598160896,1598193663,KW 1598193664,1598226431,RU 1598226432,1598259199,UA 1598259200,1598291967,RU 1598291968,1598324735,LV 1598324736,1598357503,RU 1598357504,1598390271,PT 1598390272,1598423039,UA 1598423040,1598455807,RU 1598455808,1598488575,TR 1598488576,1598685183,RU 1598685184,1598816255,IT 1598816256,1598947327,RO 1598947328,1599078399,RU 1599078400,1599094783,SE 1599094784,1599111167,RU 1599111168,1599127551,IR 1599127552,1599143935,CZ 1599143936,1599160319,UA 1599160320,1599176703,IR 1599176704,1599188991,FR 1599188992,1599189503,DE 1599189504,1599193087,FR 1599193088,1599209471,RU 1599209472,1599242239,IR 1599242240,1599258623,CZ 1599258624,1599324159,RU 1599324160,1599339007,IE 1599339008,1599339263,RU 1599339264,1599340543,IE 1599340544,1599356927,RU 1599356928,1599373311,BH 1599373312,1599406079,RU 1599406080,1599422463,NL 1599422464,1599430655,RU 1599430656,1599438847,TM 1599438848,1599455231,RS 1599455232,1599471615,CZ 1599471616,1599487999,MK 1599488000,1599504383,IL 1599504384,1599520767,AZ 1599520768,1599537151,RU 1599537152,1599550719,BG 1599550720,1599550975,RS 1599550976,1599553535,BG 1599553536,1599561727,KG 1599561728,1599565823,GB 1599565824,1599567871,SY 1599567872,1599569919,IT 1599569920,1599586303,SI 1599586304,1599602687,BG 1599602688,1599864831,DE 1599864832,1600126975,PT 1600126976,1600389119,NL 1600397312,1600401407,DE 1600442368,1600446463,DE 1600453120,1600453631,IT 1600456704,1600457727,DE 1600520192,1600651263,SK 1600651264,1600684031,GE 1600684032,1600749567,RU 1600749568,1600782335,SK 1600782336,1600880639,RU 1600880640,1600913407,AL 1600913408,1600946175,PL 1600946176,1600978943,RU 1600978944,1601011711,SE 1601011712,1601044479,UA 1601044480,1601077247,RU 1601077248,1601109567,IT 1601109568,1601109631,FR 1601109632,1601110015,IT 1601110016,1601142783,BG 1601142784,1601175551,UA 1601175552,1601699839,DE 1601699840,1602224127,ES 1602224128,1602226175,NL 1602226176,1602228223,GB 1602228224,1602230270,FR 1602230271,1602230271,DE 1602230272,1602232319,DK 1602232320,1602234367,CH 1602234368,1602235967,FR 1602235968,1602235999,ES 1602236000,1602236415,FR 1602236416,1602238463,GB 1602238464,1602240511,TR 1602240512,1602242559,BY 1602242560,1602244607,FR 1602244608,1602246655,CH 1602246656,1602248703,NL 1602248704,1602250751,BE 1602250752,1602252799,NO 1602252800,1602254847,SE 1602254848,1602256895,LU 1602256896,1602258943,GB 1602258944,1602260991,RU 1602260992,1602263039,FR 1602263040,1602265087,ES 1602265088,1602267135,RU 1602267136,1602269183,RO 1602269184,1602271231,RU 1602271232,1602273279,MK 1602273280,1602273535,FR 1602273536,1602273536,GB 1602273537,1602274559,IN 1602274560,1602274815,IE 1602274816,1602274816,GB 1602274817,1602275071,IN 1602275072,1602279423,DE 1602279424,1602281471,GB 1602281472,1602283519,RU 1602283520,1602285567,HR 1602285568,1602287615,RU 1602287616,1602289663,DE 1602289664,1602291711,LB 1602291712,1602293759,SA 1602293760,1602295807,GB 1602295808,1602297855,NL 1602297856,1602299903,IL 1602299904,1602301951,GR 1602301952,1602303999,DE 1602304000,1602306047,RU 1602306048,1602308095,GB 1602308096,1602310143,RU 1602310144,1602312191,NL 1602312192,1602314239,RU 1602314240,1602316287,CZ 1602316288,1602318335,GB 1602318336,1602320383,ES 1602320384,1602324479,NL 1602324480,1602328575,RU 1602328576,1602330623,ES 1602330624,1602336767,RU 1602336768,1602338815,GB 1602338816,1602340863,EE 1602340864,1602342911,AT 1602342912,1602344959,DE 1602344960,1602347007,ES 1602347008,1602349055,PL 1602349056,1602351103,RU 1602351104,1602353151,CZ 1602353152,1602355199,ES 1602357248,1602359295,FR 1602359296,1602361343,DE 1602361344,1602363391,FI 1602363392,1602365439,LV 1602365440,1602367487,BE 1602367488,1602369535,ES 1602369536,1602371583,IR 1602371584,1602373631,SE 1602373632,1602375679,GB 1602375680,1602377727,BY 1602377728,1602379775,PS 1602379776,1602383871,GB 1602383872,1602385919,DE 1602385920,1602387967,AT 1602387968,1602390015,RU 1602390016,1602392063,IT 1602392064,1602394111,GB 1602394112,1602396159,FR 1602396160,1602398207,DE 1602398208,1602400255,TR 1602400256,1602402303,RU 1602402304,1602404351,LU 1602404352,1602405631,GB 1602405632,1602405759,CN 1602405760,1602406399,GB 1602406400,1602408447,DE 1602408448,1602410495,DK 1602410496,1602412543,NO 1602414592,1602416639,NL 1602416640,1602418687,IR 1602418688,1602420735,DE 1602420736,1602424831,RU 1602424832,1602426879,FR 1602426880,1602428927,RU 1602428928,1602430975,PL 1602430976,1602433023,IT 1602433024,1602435071,HU 1602435072,1602437119,IT 1602437120,1602439167,GB 1602439168,1602441215,RU 1602441216,1602443263,GB 1602443264,1602445311,RU 1602445312,1602447359,DE 1602447360,1602449407,GB 1602449408,1602451455,LV 1602451456,1602453503,DE 1602453504,1602455551,SK 1602455552,1602457599,FR 1602457600,1602459647,RU 1602459648,1602461695,GB 1602461696,1602465791,ES 1602465792,1602467839,RU 1602467840,1602469887,GI 1602469888,1602471935,AT 1602471936,1602473983,SE 1602473984,1602476031,RU 1602476032,1602478079,GB 1602478080,1602480127,RU 1602480128,1602482175,MT 1602482176,1602484223,FR 1602484224,1602486271,GB 1602486272,1602748415,UA 1602748416,1602781183,PT 1602781184,1602813951,FR 1602813952,1602846719,RU 1602846720,1602879487,GE 1602879488,1602896924,MQ 1602896925,1602896925,RE 1602896926,1602912255,MQ 1602912256,1602928639,GB 1602928640,1602930687,HU 1602930688,1602932735,GB 1602932736,1602936831,DK 1602936832,1603010559,RU 1603010560,1603014655,FR 1603014656,1603018751,RU 1603018752,1603022847,HU 1603022848,1603026943,GB 1603026944,1603031039,SE 1603031040,1603035135,RU 1603035136,1603039231,SY 1603039232,1603043327,RS 1603043328,1603047423,IT 1603047424,1603051519,RU 1603051520,1603055615,JO 1603055616,1603059711,SE 1603059712,1603063807,AM 1603063808,1603067903,BG 1603067904,1603071999,GB 1603072000,1603076095,CZ 1603076096,1603080191,RU 1603080192,1603080703,GB 1603080704,1603080831,US 1603080832,1603080959,SE 1603080960,1603081087,DE 1603081088,1603081247,GB 1603081248,1603081255,NO 1603081256,1603081263,FI 1603081264,1603081279,GB 1603081280,1603081295,US 1603081296,1603081471,ES 1603081472,1603082239,GB 1603082240,1603082495,DE 1603082496,1603082751,GT 1603082752,1603083007,ES 1603083008,1603083263,UA 1603083264,1603083535,DE 1603083536,1603083551,LU 1603083552,1603083567,NL 1603083568,1603083583,LU 1603083584,1603083615,DE 1603083616,1603083647,LU 1603083648,1603083775,DE 1603083776,1603084031,GB 1603084032,1603088383,IT 1603088384,1603092479,LB 1603092480,1603100671,NO 1603100672,1603108863,FR 1603108864,1603112959,KZ 1603112960,1603121151,GB 1603121152,1603129343,RU 1603129344,1603133439,JO 1603133440,1603137535,RU 1603137536,1603141631,KW 1603141632,1603145727,ES 1603145728,1603146239,IL 1603146240,1603146751,US 1603146752,1603149311,IL 1603149312,1603149567,NL 1603149568,1603149823,IL 1603149824,1603153919,RU 1603153920,1603158015,NL 1603158016,1603162111,DE 1603162112,1603166207,TJ 1603166208,1603168191,NL 1603168192,1603168207,US 1603168208,1603168615,NL 1603168616,1603168623,US 1603168624,1603170303,NL 1603170304,1603174399,IE 1603174400,1603178495,TR 1603178496,1603182591,GB 1603182592,1603186687,FR 1603186688,1603190783,IT 1603190784,1603194879,RU 1603194880,1603198975,IT 1603198976,1603203071,IR 1603203072,1603207167,PL 1603207168,1603215359,RU 1603215360,1603219455,DE 1603219456,1603223551,CH 1603223552,1603223807,FR 1603223808,1603225087,GB 1603225088,1603225343,FR 1603225344,1603226255,GB 1603226256,1603226263,DE 1603226264,1603226271,NL 1603226272,1603227647,GB 1603227648,1603231743,AT 1603231744,1603235839,IT 1603235840,1603239935,RU 1603239936,1603244031,CZ 1603244032,1603248127,SI 1603248128,1603252223,DE 1603252224,1603256319,RU 1603256320,1603260415,SE 1603260416,1603264511,RU 1603264512,1603268607,AT 1603268608,1603272703,PL 1603272704,1603796991,GB 1603796992,1603813375,RU 1603813376,1603829759,CH 1603829760,1603846143,NL 1603846144,1603862527,GB 1603862528,1603878911,EE 1603878912,1603895295,MD 1603895296,1603928063,RU 1603928064,1603944447,DK 1603944448,1603977215,RU 1603977216,1603993599,GB 1603993600,1604009983,ME 1604009984,1604026367,PL 1604026368,1604042751,NL 1604042752,1604059135,SE 1604059136,1604075519,MK 1604075520,1604091903,RU 1604091904,1604108287,BA 1604108288,1604114431,DE 1604114432,1604115455,IR 1604115456,1604115967,DE 1604115968,1604116479,IR 1604116480,1604118783,DE 1604118784,1604120063,IR 1604120064,1604120575,DE 1604120576,1604122623,PL 1604122624,1604123135,IR 1604123136,1604123647,DE 1604123648,1604124671,IR 1604124672,1604141055,DE 1604141056,1604157439,IT 1604157440,1604190207,FR 1604190208,1604206591,UA 1604206592,1604222975,PL 1604222976,1604239359,BG 1604239360,1604255743,RU 1604255744,1604272127,SY 1604272128,1604288511,IQ 1604288512,1604304895,RU 1604304896,1604321279,SI 1604321280,1604386815,PL 1604386816,1604444159,RU 1604444160,1604445183,KZ 1604445184,1604452351,RU 1604452352,1604517887,RO 1604517888,1604583423,RU 1604583424,1604648959,UA 1604648960,1604714495,RU 1604714496,1604780031,DK 1604780032,1604845567,RU 1604845568,1604853759,FR 1604853760,1604861951,HU 1604861952,1604870143,RS 1604870144,1604878335,HR 1604878336,1604888063,DE 1604888064,1604888831,TR 1604888832,1604894719,DE 1604894720,1604902911,CZ 1604902912,1604911103,BG 1604911104,1604919295,UA 1604919296,1604927487,NO 1604927488,1604935679,IT 1604935680,1604952063,RU 1604952064,1604960255,DE 1604960256,1604968447,BG 1604968448,1604976639,ES 1604976640,1604993023,FR 1604993024,1605001215,NL 1605001216,1605025791,RU 1605025792,1605033983,IQ 1605033984,1605042175,SK 1605042176,1605050367,RU 1605050368,1605058559,IT 1605058560,1605066751,HU 1605066752,1605074943,PL 1605074944,1605083135,FR 1605083136,1605091327,BE 1605091328,1605099519,PL 1605099520,1605107711,RU 1605107712,1605108247,GB 1605108248,1605108255,IT 1605108256,1605108287,GB 1605108288,1605108295,IT 1605108296,1605108407,GB 1605108408,1605108415,IT 1605108416,1605108567,GB 1605108568,1605108575,IT 1605108576,1605108903,GB 1605108904,1605108911,IT 1605108912,1605109223,GB 1605109224,1605109231,IT 1605109232,1605109495,GB 1605109496,1605109503,IT 1605109504,1605109559,GB 1605109560,1605109567,IT 1605109568,1605109639,GB 1605109640,1605109647,IT 1605109648,1605109815,GB 1605109816,1605109823,IT 1605109824,1605110263,GB 1605110264,1605110271,IT 1605110272,1605111023,GB 1605111024,1605111031,IT 1605111032,1605111199,GB 1605111200,1605111207,IT 1605111208,1605111799,GB 1605111800,1605111807,IT 1605111808,1605111879,GB 1605111880,1605111887,IT 1605111888,1605111919,GB 1605111920,1605111927,IT 1605111928,1605111935,GB 1605111936,1605111943,IT 1605111944,1605112423,GB 1605112424,1605112431,IT 1605112432,1605112847,GB 1605112848,1605112855,IT 1605112856,1605113087,GB 1605113088,1605113095,IT 1605113096,1605113383,GB 1605113384,1605113391,IT 1605113392,1605113407,GB 1605113408,1605113415,IT 1605113416,1605113567,GB 1605113568,1605113583,IT 1605113584,1605113815,GB 1605113816,1605113823,IT 1605113824,1605114199,GB 1605114200,1605114207,IT 1605114208,1605114287,GB 1605114288,1605114295,IT 1605114296,1605114327,GB 1605114328,1605114335,IT 1605114336,1605114975,GB 1605114976,1605114983,IT 1605114984,1605115007,GB 1605115008,1605115015,IT 1605115016,1605115583,GB 1605115584,1605115591,IT 1605115592,1605115599,GB 1605115600,1605115607,IT 1605115608,1605115711,GB 1605115712,1605115719,IT 1605115720,1605115903,GB 1605115904,1605124095,RU 1605124096,1605125119,GB 1605125120,1605125275,DE 1605125276,1605125276,GB 1605125277,1605125375,DE 1605125376,1605125903,GB 1605125904,1605125919,DE 1605125920,1605126701,GB 1605126702,1605126702,US 1605126703,1605130239,GB 1605130240,1605130271,NL 1605130272,1605131263,GB 1605131264,1605131519,DE 1605131520,1605132287,GB 1605132288,1605148671,RU 1605148672,1605156863,PT 1605156864,1605165055,JO 1605165056,1605173247,GB 1605173248,1605181439,TR 1605181440,1605189631,LT 1605189632,1605189887,CZ 1605189888,1605190143,SK 1605190144,1605197823,CZ 1605197824,1605206015,DE 1605206016,1605214207,RU 1605214208,1605222399,TR 1605222400,1605230591,CZ 1605230592,1605238783,TR 1605238784,1605246975,IT 1605246976,1605255167,PL 1605257216,1605259263,FR 1605259264,1605261311,DE 1605261312,1605271551,RU 1605271552,1605279743,DE 1605279744,1605287935,FR 1605287936,1605296127,RU 1605296128,1605304319,CH 1605304320,1605312511,PL 1605312512,1605320703,IL 1605320704,1605328895,KW 1605328896,1605337087,FI 1605337088,1605345279,GB 1605345280,1605353471,FR 1605353472,1605361663,GB 1605361664,1605369855,RU 1605369856,1605402623,FR 1605402624,1605435391,SI 1605435392,1605468159,GB 1605468160,1605500927,SA 1605500928,1605533695,PL 1605533696,1605566463,HR 1605566464,1605599231,RU 1605599232,1605631999,GR 1605632000,1605664767,RS 1605664768,1605697535,MK 1605697536,1605753343,RU 1605753344,1605753471,US 1605753472,1605753855,RU 1605753856,1605754879,FR 1605754880,1605763071,RU 1605763072,1605769215,KZ 1605769216,1605771263,PL 1605771264,1605795839,RU 1605795840,1605828607,BE 1605828608,1605828863,GB 1605828864,1605829631,US 1605829632,1605829887,GB 1605829888,1605830143,US 1605830144,1605830399,IL 1605830400,1605830655,US 1605830656,1605840895,RU 1605840896,1605844991,CH 1605844992,1605861375,RU 1605861376,1605894143,TR 1605894144,1606156287,SA 1606156288,1606418431,RU 1606418432,1607467007,SE 1607467008,1607532543,DE 1607532544,1607569407,SE 1607569408,1607572479,DK 1607572480,1607575551,SE 1607575552,1607577599,GB 1607577600,1607581695,SE 1607581696,1607598079,DK 1607598080,1607598335,GB 1607598336,1607598591,IT 1607598592,1607599103,GB 1607599104,1607600383,IT 1607600384,1607600639,DE 1607600640,1607600895,AT 1607600896,1607601151,CH 1607601152,1607601919,IT 1607601920,1607602175,GB 1607602176,1607606015,IT 1607606016,1607606271,FR 1607606272,1607606783,DE 1607606784,1607607039,GB 1607607040,1607607295,IT 1607607296,1607607551,PL 1607607552,1607608319,IT 1607608320,1607608575,HU 1607608576,1607608831,SK 1607608832,1607610367,IT 1607610368,1607612415,IE 1607612416,1607614463,IT 1607614464,1607615487,FR 1607615488,1607617535,GB 1607617536,1607618559,IT 1607618560,1607620607,ES 1607620608,1607622655,IT 1607622656,1607624703,ES 1607624704,1607625727,IT 1607625728,1607625983,ES 1607625984,1607626121,IT 1607626122,1607626122,ES 1607626123,1607626239,IT 1607626240,1607626751,ES 1607626752,1607627519,FR 1607627520,1607627775,FI 1607627776,1607640805,IT 1607640806,1607640806,CH 1607640807,1607642388,IT 1607642389,1607642389,NL 1607642390,1607647231,IT 1607647232,1607651327,DE 1607651328,1607655423,FR 1607655424,1607663615,IT 1607663616,1607729151,NL 1607729152,1607737343,SY 1607737344,1607745535,EG 1607745536,1607770111,SY 1607770112,1607778303,EG 1607778304,1607794687,SY 1607794688,1607860223,RU 1607860224,1607892991,ES 1607892992,1607893055,GB 1607893056,1607893119,DE 1607893120,1607893183,DK 1607893184,1607893247,IT 1607893248,1607893311,AT 1607893312,1607893375,FR 1607893376,1607893439,SE 1607893440,1607893503,NL 1607893504,1607893567,BE 1607893568,1607893631,IE 1607893632,1607925759,ES 1607925760,1607926783,RU 1607926784,1607927807,UA 1607927808,1607929855,RU 1607929856,1607930879,SE 1607930880,1607933951,PL 1607933952,1607934975,DE 1607934976,1607937023,UA 1607937024,1607938047,SE 1607938048,1607939071,UA 1607939072,1607940095,PL 1607940096,1607941119,RU 1607941120,1607942143,ES 1607942144,1607944191,RU 1607944192,1607945215,FR 1607945216,1607946239,PL 1607947264,1607948287,RU 1607948288,1607949311,GB 1607949312,1607950335,UA 1607950336,1607952383,RU 1607952384,1607953407,UA 1607953408,1607956479,RU 1607956480,1607957503,ES 1607957504,1607958527,UA 1607958528,1607959551,PS 1607959552,1607960575,EE 1607960576,1607961599,RU 1607962624,1607963647,UA 1607963648,1607965695,RU 1607965696,1607966719,UA 1607966720,1607967743,IR 1607967744,1607968767,UA 1607968768,1607969791,SE 1607969792,1607970047,RU 1607970048,1607970303,IR 1607970304,1607970815,GB 1607970816,1607972863,RU 1607972864,1607974911,NL 1607974912,1607976959,PL 1607976960,1607980031,RU 1607980032,1607981055,DE 1607981056,1607982079,UA 1607982080,1607982847,RO 1607982848,1607983103,UA 1607983104,1607984127,GB 1607984128,1607985151,RU 1607985152,1607986175,PL 1607986176,1607986431,FR 1607986432,1607986687,GB 1607986688,1607988223,RU 1607988224,1607989247,KG 1607989248,1607991295,RU 1607991296,1608122367,UA 1608122368,1608253439,SA 1608253440,1608384511,RU 1608384512,1608515583,DE 1608515584,1610612735,IT 1610612736,1610678271,US 1610678272,1610743807,CA 1610743808,1611005951,US 1611005952,1611007999,NL 1611008000,1611009023,US 1611009024,1611010047,NL 1611010048,1611016703,US 1611016704,1611016959,NL 1611016960,1611036671,US 1611036672,1611037183,NL 1611037184,1611084031,US 1611084032,1611084543,NL 1611084544,1611086335,US 1611086336,1611086847,NL 1611086848,1611116543,US 1611116544,1611117567,NL 1611117568,1611128831,US 1611128832,1611130879,NL 1611130880,1611218943,US 1611218944,1611227135,KH 1611227136,1611235327,CA 1611235328,1611243519,SG 1611243520,1611247615,MY 1611247616,1611251711,HK 1611251712,1611662335,US 1611662336,1611662847,NL 1611662848,1611692543,US 1611692544,1611693567,NL 1611693568,1611777023,US 1611777024,1611777279,NL 1611777280,1611778047,US 1611778048,1611778559,NL 1611778560,1611923455,US 1611923456,1612185599,CA 1612185600,1612611327,US 1612611328,1612636159,CA 1612636160,1613471743,US 1613471744,1613479935,JM 1613479936,1613480191,CA 1613480192,1613488127,US 1613488128,1613492223,CA 1613492224,1613504511,US 1613504512,1613521151,CA 1613521152,1613521407,US 1613521408,1613529087,CA 1613529088,1613545471,US 1613545472,1613565951,CA 1613565952,1613584639,US 1613584640,1613584895,HK 1613584896,1613585407,US 1613585408,1613585663,DE 1613585664,1613585919,GB 1613585920,1613606911,US 1613606912,1613615103,CA 1613615104,1613635583,US 1613635584,1613640191,CA 1613640192,1613640319,US 1613640320,1613640447,CA 1613640448,1613640575,US 1613640576,1613643263,CA 1613643264,1613643391,US 1613643392,1613643775,CA 1613643776,1613676543,US 1613676544,1613680639,CA 1613680640,1613737983,US 1613737984,1613742079,CA 1613742080,1613758463,US 1613758464,1614282751,CA 1614282752,1614741503,US 1614741504,1614757887,CA 1614757888,1614774271,US 1614774272,1614786559,CA 1614786560,1618837503,US 1618837504,1618841599,CA 1618841600,1618849791,US 1618849792,1618850303,CA 1618850304,1618850559,US 1618850560,1618862079,CA 1618862080,1618866175,US 1618866176,1618870271,CA 1618870272,1618984959,US 1618984960,1619001343,CA 1619001344,1632305151,US 1632305152,1632321535,CA 1632321536,1632354303,US 1632354304,1632362495,CA 1632362496,1632978175,US 1632978176,1632978303,CA 1632978304,1632980607,US 1632980608,1632980735,CA 1632980736,1634414591,US 1634414592,1634418687,CA 1634418688,1634447359,US 1634447360,1634451455,CA 1634451456,1634455551,US 1634455552,1634459647,CA 1634459648,1634467839,US 1634467840,1634729983,CA 1634729984,1652293631,US 1652293632,1652310015,CA 1652310016,1652481279,US 1652481280,1652481791,CN 1652481792,1653500927,US 1653500928,1653501183,FR 1653501184,1653501439,IL 1653501440,1653534719,US 1653534720,1653538815,CA 1653538816,1653555199,US 1653555200,1653567487,CA 1653567488,1653571583,US 1653571584,1653575679,CA 1653575680,1653579775,US 1653583872,1653592063,US 1653592064,1653596159,CA 1653596160,1653600255,US 1653600256,1653604351,CA 1653604352,1654542335,US 1654542336,1654546431,CA 1654546432,1654550527,VG 1654550528,1654554623,US 1654554624,1654558719,CA 1654558720,1654648831,US 1654648832,1654652927,CA 1654652928,1660149759,US 1660149760,1660149887,CA 1660149888,1673527295,US 1673527296,1673560063,CA 1673560064,1673580287,US 1673580288,1673580543,CA 1673580544,1673986047,US 1673986048,1674051583,CA 1674051584,1674575871,US 1674575872,1677721599,CA 1677721600,1680535551,US 1680535552,1680539647,CA 1680539648,1680564223,US 1680564224,1680572415,CA 1680572416,1681915903,US 1686110208,1694498815,US 1694498816,1694499839,CN 1694499840,1694500863,ID 1694500864,1694507007,JP 1694507008,1694515199,IN 1694515200,1694531583,AU 1694531584,1694564351,TW 1694564352,1694565375,CN 1694565376,1694566399,HK 1694566400,1694568447,KR 1694568448,1694572543,HK 1694572544,1694580735,KR 1694580736,1694629887,JP 1694629888,1694662655,IN 1694662656,1694670847,JP 1694670848,1694672895,BD 1694672896,1694673919,AU 1694673920,1694674943,CN 1694674944,1694679039,LK 1694679040,1694695423,AU 1694695424,1694760959,TW 1694760960,1695023103,CN 1695023104,1695547391,TW 1695547392,1697775615,CN 1697775616,1697776639,ID 1697776640,1697777663,JP 1697777664,1697779711,CN 1697779712,1697783807,ID 1697783808,1697789951,JP 1697789952,1697790975,CN 1697790976,1697791999,JP 1697792000,1697808383,PK 1697808384,1697841151,JP 1697841152,1697906687,TH 1697906688,1697972223,CN 1697972224,1697988607,VN 1697988608,1697996799,KR 1697996800,1697997823,JP 1697997824,1697998847,CN 1697998848,1698004991,JP 1698004992,1698037759,AU 1698037760,1698103295,CN 1698103296,1698136063,KR 1698136064,1698160639,JP 1698160640,1698162687,CN 1698162688,1698168831,JP 1698168832,1698693119,IN 1698693120,1699611647,CN 1699611648,1699612671,JP 1699612672,1699614719,LA 1699614720,1699618815,PH 1699618816,1699627007,CN 1699627008,1699643391,SG 1699643392,1699676159,HK 1699676160,1699741695,KR 1699741696,1700793343,CN 1700793344,1700794367,VN 1700794368,1700798463,CN 1700798464,1700806655,JP 1700806656,1700823039,VN 1700823040,1700855807,CN 1700855808,1700921343,JP 1700921344,1700986879,NZ 1700986880,1701003263,VN 1701003264,1701011455,MY 1701011456,1701019647,CN 1701019648,1701052415,GU 1701052416,1701093375,NZ 1701093376,1701117951,SG 1701117952,1701134335,NC 1701134336,1701142527,CN 1701142528,1701143551,HK 1701143552,1701143807,CN 1701143808,1701144063,AU 1701144064,1701150719,CN 1701150720,1701183487,KR 1701183488,1701199871,JP 1701199872,1701208063,CN 1701208064,1701209087,JP 1701209088,1701209855,CN 1701209856,1701210111,AU 1701210112,1701216255,CN 1701216256,1701249023,JP 1701249024,1701314559,AU 1701314560,1701576703,CN 1701576704,1701707775,TH 1701707776,1701724159,JP 1701724160,1701736447,CN 1701736448,1701737471,NZ 1701737472,1701740543,CN 1701740544,1701838847,JP 1701838848,1702363135,AU 1702363136,1702821887,CN 1702821888,1702887423,SG 1702887424,1702888447,CN 1702888448,1702889471,AU 1702889472,1702903807,CN 1702903808,1702920191,ID 1702920192,1702952959,JP 1702952960,1703411711,CN 1703411712,1703673855,TW 1703673856,1703935999,JP 1703936000,1704984575,CN 1704984576,1705488383,AU 1705488384,1705489407,HK 1705489408,1705490431,SG 1705490432,1705491455,GB 1705491456,1705494527,HK 1705494528,1705497599,SG 1705497600,1705500671,GB 1705500672,1707081727,AU 1707081728,1707737087,CN 1707737088,1707802623,KR 1707802624,1707835391,JP 1707835392,1707845631,CN 1707845632,1707846655,ID 1707846656,1707851775,CN 1707851776,1707868159,JP 1707868160,1708130303,CN 1708130304,1709178879,IN 1709178880,1709834239,CN 1709834240,1709850623,SG 1709850624,1709852671,CN 1709852672,1709853695,AU 1709853696,1709867007,CN 1709867008,1709899775,AU 1709899776,1709965311,KR 1709965312,1710882815,CN 1710882816,1710948351,KR 1710948352,1710949375,CN 1710949376,1710950399,NP 1710950400,1711210495,CN 1711210496,1711276031,ID 1724715556,1724715556,MU 1728053248,1728120063,AU 1728120064,1728120319,SG 1728120320,1728120575,IN 1728120576,1728120831,AU 1728120832,1728121855,CN 1728121856,1728123903,HK 1728123904,1728125951,CN 1728125952,1728126975,LA 1728126976,1728132095,HK 1728132096,1728134399,AU 1728134400,1728134655,US 1728134656,1728135167,AU 1728135168,1728136191,HK 1728136192,1728137215,MY 1728137216,1728138239,CN 1728138240,1728139263,AU 1728139264,1728140287,IN 1728140288,1728141311,SG 1728141312,1728142335,CN 1728142336,1728143359,NP 1728143360,1728144383,MP 1728144384,1728145407,IN 1728145408,1728146431,MY 1728146432,1728147455,AU 1728147456,1728148479,IN 1728148480,1728149503,PH 1728149504,1728150527,JP 1728150528,1728152575,IN 1728152576,1728153599,MY 1728153600,1728154623,SG 1728154624,1728155647,JP 1728155648,1728158463,MY 1728158464,1728158719,NL 1728158720,1728159743,HK 1728159744,1728161791,TH 1728161792,1728162815,CN 1728162816,1728163839,SG 1728163840,1728164863,LK 1728164864,1728165887,FJ 1728165888,1728168959,AU 1728168960,1728169983,IN 1728169984,1728171007,VN 1728171008,1728172031,AU 1728172032,1728173055,VN 1728173056,1728175103,AU 1728175104,1728176127,TW 1728176128,1728177151,HK 1728177152,1728178175,AU 1728178176,1728179199,LA 1728179200,1728180223,VN 1728180224,1728181247,AU 1728181248,1728203775,JP 1728203776,1728204799,KR 1728204800,1728205823,IN 1728205824,1728206847,KR 1728206848,1728207871,SB 1728207872,1728208895,KR 1728208896,1728210943,JP 1728210944,1728211967,SG 1728211968,1728212991,CN 1728212992,1728214015,TH 1728214016,1728215039,AU 1728215040,1728216063,NZ 1728216064,1728218111,JP 1728218112,1728219135,IN 1728219136,1728220159,JP 1728220160,1728221183,NZ 1728221184,1728222207,ID 1728222208,1728224255,LK 1728224256,1728225279,CN 1728225280,1728226303,JP 1728226304,1728227327,CN 1728227328,1728230399,AU 1728230400,1728231423,SG 1728231424,1728232447,NC 1728232448,1728235519,AU 1728235520,1728239615,CN 1728239616,1728240639,TW 1728240640,1728243711,VN 1728243712,1728246783,IN 1728246784,1728254975,JP 1728254976,1728255999,MY 1728256000,1728257023,HK 1728257024,1728258047,JP 1728258048,1728259071,IN 1728259072,1728260095,KR 1728260096,1728261119,IN 1728261120,1728262143,ID 1728262144,1728264191,JP 1728264192,1728265215,ID 1728265216,1728266239,SG 1728266240,1728267263,TH 1728267264,1728268287,ID 1728268288,1728269311,MY 1728269312,1728270335,ID 1728270336,1728271359,PH 1728271360,1728286719,CN 1728286720,1728287743,AU 1728287744,1728290815,CN 1728290816,1728291839,AU 1728291840,1728292607,US 1728292608,1728292863,SG 1728292864,1728293887,PG 1728293888,1728294911,MY 1728294912,1728295935,TH 1728295936,1728299007,JP 1728299008,1728300031,TW 1728300032,1728301055,AU 1728301056,1728302079,SG 1728302080,1728303103,IN 1728303104,1728305151,ID 1728305152,1728306175,AU 1728306176,1728307199,ID 1728307200,1728308223,BD 1728308224,1728309247,IN 1728309248,1728310271,NZ 1728310272,1728311295,AU 1728311296,1728312319,GU 1728312320,1728315391,VN 1728315392,1728316415,ID 1728316416,1728317439,MY 1728317440,1728319487,JP 1728319488,1728320511,AU 1728320512,1728322559,HK 1728322560,1728323583,MY 1728323584,1728324607,JP 1728324608,1728325631,SG 1728325632,1728326655,JP 1728326656,1728327679,MY 1728327680,1728328703,KR 1728328704,1728329727,ID 1728329728,1728330751,CN 1728330752,1728331775,AU 1728331776,1728332799,BD 1728332800,1728333823,JP 1728333824,1728334847,PF 1728334848,1728336895,JP 1728336896,1728337919,AU 1728337920,1728338943,MY 1728338944,1728339967,PK 1728339968,1728340991,SG 1728340992,1728342015,AU 1728342016,1728343039,TW 1728343040,1728344063,SG 1728344064,1728344575,HK 1728344576,1728345087,SG 1728345088,1728346111,BD 1728346112,1728346367,AU 1728346368,1728346623,NZ 1728346624,1728347135,AU 1728347136,1728348159,SG 1728348160,1728349183,VN 1728349184,1728350207,AU 1728350208,1728351231,NZ 1728351232,1728352255,MY 1728352256,1728353279,BD 1728353280,1728354303,KR 1728354304,1728355327,NZ 1728355328,1728356351,TH 1728356352,1728357375,AU 1728357376,1728358399,ID 1728358400,1728359423,CN 1728359424,1728359935,AU 1728359936,1728360447,ID 1728360448,1728362495,KR 1728362496,1728363519,CN 1728363520,1728364543,BN 1728364544,1728365567,AU 1728365568,1728366591,SG 1728366592,1728367615,JP 1728367616,1728367871,IN 1728367872,1728368127,AU 1728368128,1728368639,ID 1728368640,1728369663,IN 1728369664,1728370687,AU 1728370688,1728371711,TH 1728371712,1728372735,IN 1728372736,1728373759,CN 1728373760,1728374783,TH 1728374784,1728375039,SG 1728375040,1728375295,IN 1728375296,1728376831,AU 1728376832,1728377855,ID 1728377856,1728378623,HK 1728378624,1728378879,US 1728378880,1728380927,IN 1728380928,1728382975,PH 1728382976,1728383999,SG 1728384000,1728385023,HK 1728385024,1728386047,IN 1728386048,1728387071,JP 1728387072,1728388095,TH 1728388096,1728388351,NZ 1728388352,1728388607,AU 1728388608,1728389119,VN 1728389120,1728390143,TW 1728390144,1728391167,CN 1728391168,1728392191,JP 1728392192,1728393215,SG 1728393216,1728394239,ID 1728394240,1728396287,CN 1728396288,1728397311,PH 1728397312,1728398335,JP 1728398336,1728398847,AU 1728398848,1728399103,IN 1728399104,1728400383,NZ 1728400384,1728400895,AU 1728400896,1728401151,IN 1728401152,1728401407,HK 1728401408,1728402431,NZ 1728402432,1728403455,IN 1728403456,1728406527,AU 1728406528,1728407551,TW 1728407552,1728407807,AU 1728407808,1728408063,MY 1728408064,1728408319,AU 1728408320,1728408575,ID 1728408576,1728409599,NZ 1728409600,1728410623,IN 1728410624,1728411647,JP 1728411648,1728412671,TH 1728412672,1728413695,KH 1728413696,1728414719,KR 1728414720,1728415743,IN 1728415744,1728416767,PK 1728416768,1728417791,JP 1728417792,1728418815,KR 1728418816,1728419071,ID 1728419072,1728419327,HK 1728419328,1728419583,NP 1728419584,1728419839,SG 1728419840,1728420863,CN 1728420864,1728421887,NZ 1728421888,1728422911,JP 1728422912,1728423935,AU 1728423936,1728424959,CN 1728424960,1728425983,AF 1728425984,1728427007,JP 1728427008,1728428031,MY 1728428032,1728430079,IN 1728430080,1728431103,CN 1728431104,1728431615,AF 1728431616,1728431871,HK 1728431872,1728432127,SG 1728432128,1728433151,IN 1728433152,1728435199,VN 1728435200,1728435967,AU 1728435968,1728436223,ID 1728436224,1728437247,IN 1728437248,1728438271,HK 1728438272,1728439295,NZ 1728439296,1728439807,NP 1728439808,1728440319,KH 1728440320,1728441343,BD 1728441344,1728442367,MY 1728442368,1728443391,SG 1728443392,1728444415,IN 1728444416,1728445439,JP 1728445440,1728446463,CN 1728446464,1728446975,ID 1728446976,1728447231,IN 1728447232,1728447487,AU 1728447488,1728448511,HK 1728448512,1728449535,KH 1728449536,1728450559,AU 1728450560,1728452607,JP 1728452608,1728453119,AU 1728453120,1728453631,IN 1728453632,1728454655,NZ 1728454656,1728455167,IN 1728455168,1728455423,ID 1728455424,1728455679,AU 1728455680,1728457727,ID 1728457728,1728458751,JP 1728458752,1728459775,HK 1728459776,1728460799,ID 1728460800,1728462847,JP 1728462848,1728463871,US 1728463872,1728464895,JP 1728464896,1728465919,KR 1728465920,1728466943,CN 1728466944,1728467967,KR 1728467968,1728468735,HK 1728468736,1728469247,IN 1728469248,1728469503,NZ 1728469504,1728470015,IN 1728470016,1728471039,JP 1728471040,1728472063,PH 1728472064,1728473087,KR 1728473088,1728473343,PH 1728473344,1728473599,AU 1728473600,1728474111,SG 1728474112,1728475135,CN 1728475136,1728476159,JP 1728476160,1728476415,AU 1728476416,1728476927,ID 1728476928,1728477183,IN 1728478208,1728480255,HK 1728480256,1728481279,IN 1728481280,1728483327,HK 1728483328,1728484351,NZ 1728484352,1728485375,SG 1728485376,1728486399,HK 1728486400,1728487423,IN 1728487424,1728487935,HK 1728487936,1728488191,TH 1728488192,1728488447,MY 1728488448,1728488703,IN 1728488704,1728488959,TH 1728488960,1728489215,HK 1728489216,1728490495,IN 1728490496,1728491519,KR 1728491520,1728492543,HK 1728492544,1728492799,ID 1728492800,1728493055,PH 1728493056,1728493567,TH 1728493568,1728494591,IN 1728494592,1728495615,AU 1728495616,1728496639,HK 1728496640,1728497663,MY 1728497664,1728499711,ID 1728499712,1728500735,AU 1728500736,1728501247,NZ 1728501248,1728501503,ID 1728501504,1728502783,AU 1728502784,1728503807,CN 1728503808,1728504831,JP 1728504832,1728505855,CN 1728505856,1728506879,NL 1728506880,1728507903,MY 1728507904,1728508927,JP 1728508928,1728509951,MY 1728509952,1728510975,PH 1728510976,1728511999,AU 1728512000,1728512511,ID 1728512512,1728512767,SG 1728512768,1728513023,IN 1728513024,1728514047,CN 1728514048,1728515071,SG 1728515072,1728516095,ID 1728516096,1728517119,TH 1728517120,1728518143,JP 1728518144,1728519167,KH 1728519168,1728520191,CN 1728520192,1728521215,KR 1728521216,1728523263,VN 1728523264,1728525311,AU 1728525312,1728525823,ID 1728525824,1728526335,HK 1728526336,1728527359,TH 1728527360,1728528383,PK 1728528384,1728529407,IN 1728529408,1728530431,MY 1728530432,1728531455,AU 1728531456,1728532479,PK 1728532480,1728533503,IN 1728533504,1728534527,ID 1728534528,1728535551,AU 1728535552,1728536575,JP 1728536576,1728537087,NZ 1728537088,1728537599,AU 1728537600,1728538623,GU 1728538624,1728539647,AF 1728539648,1728540671,IN 1728540672,1728541695,BD 1728541696,1728542719,JP 1728543744,1728544767,SG 1728544768,1728545791,IN 1728545792,1728546815,JP 1728546816,1728547839,AU 1728547840,1728548863,CN 1728548864,1728549119,KH 1728549120,1728549375,IN 1728549376,1728549631,PH 1728549632,1728549887,AU 1728549888,1728550911,IN 1728550912,1728551935,JP 1728551936,1728552959,MY 1728552960,1728553983,HK 1728553984,1728555007,AU 1728555008,1728556031,NZ 1728556032,1728556287,VN 1728556288,1728556543,ID 1728556544,1728557055,VN 1728557056,1728557311,ID 1728557312,1728557567,VN 1728557568,1728558079,ID 1728558080,1728559103,IN 1728559104,1728560127,ID 1728560128,1728560639,AU 1728560640,1728561151,KR 1728561152,1728562175,AU 1728562176,1728562431,VN 1728562432,1728562687,VU 1728562688,1728563199,JP 1728563200,1728564223,SG 1728564224,1728565247,IN 1728565248,1728566271,JP 1728566272,1728569343,CN 1728569344,1728569599,PH 1728569600,1728571391,ID 1728571392,1728572415,AU 1728572416,1728573439,JP 1728573440,1728574463,HK 1728574464,1728575487,KR 1728575488,1728576511,BD 1728576512,1728577535,BT 1728578560,1728580607,CN 1728580608,1728580863,ID 1728580864,1728581119,VN 1728581120,1728581631,PK 1728581632,1728582655,NZ 1728582656,1728583679,JP 1728583680,1728584703,MY 1728584704,1728585215,AU 1728585216,1728585727,SG 1728585728,1728586751,CN 1728586752,1728589823,IN 1728589824,1728590847,JP 1728590848,1728591871,CN 1728591872,1728592895,ID 1728592896,1728593151,MN 1728593152,1728593407,AU 1728593408,1728593663,IN 1728593664,1728593919,ID 1728593920,1728594943,JP 1728594944,1728595967,CN 1728595968,1728596479,NZ 1728596480,1728598015,ID 1728598016,1728599039,NZ 1728599040,1728602111,JP 1728602112,1728603135,ID 1728603136,1728604159,KR 1728604160,1728605183,TW 1728605184,1728606207,CN 1728606208,1728607231,PK 1728607232,1728608255,IN 1728608256,1728608511,SG 1728608512,1728608767,BD 1728608768,1728609023,ID 1728609024,1728610303,IN 1728610304,1728611327,TH 1728611328,1728613375,AU 1728613376,1728614399,NZ 1728614400,1728615423,MY 1728615424,1728616447,IN 1728616448,1728617471,SG 1728617472,1728618495,CN 1728618496,1728619519,MY 1728619520,1728620543,IN 1728620544,1728622591,AU 1728622592,1728624639,SG 1728624640,1728625663,JP 1728625664,1728626175,IN 1728626176,1728626431,JP 1728626432,1728626687,HK 1728626688,1728627711,IN 1728627712,1728628735,JP 1728628736,1728630783,CN 1728630784,1728631807,TH 1728631808,1728632319,SG 1728632320,1728632575,PK 1728632576,1728633855,IN 1728633856,1728634879,CN 1728634880,1728636159,ID 1728636160,1728636415,AU 1728636416,1728636671,KR 1728636672,1728636927,PK 1728636928,1728637951,NZ 1728637952,1728638463,AU 1728638464,1728638719,ID 1728638720,1728638975,AU 1728638976,1728639999,JP 1728640000,1728641023,ID 1728641024,1728642047,IN 1728642048,1728643071,NZ 1728643072,1728645119,VN 1728645120,1728646143,CN 1728646144,1728647167,IN 1728647168,1728648703,AU 1728648704,1728648959,ID 1728648960,1728649215,PK 1728649216,1728650239,CN 1728650240,1728651263,JP 1728651264,1728652287,KR 1728652288,1728653311,ID 1728653312,1728654335,NZ 1728654336,1728655359,ID 1728655360,1728655871,AU 1728655872,1728656127,SB 1728656128,1728656383,MY 1728656384,1728661503,AU 1728661504,1728662527,IN 1728662528,1728665599,VN 1728665600,1728666623,MN 1728666624,1728668671,JP 1728668672,1728669695,SG 1728669696,1728670207,BD 1728670208,1728670463,NZ 1728670464,1728670719,ID 1728670720,1728671743,CN 1728671744,1728672767,BD 1728672768,1728673791,TW 1728673792,1728674815,JP 1728674816,1728675839,ID 1728675840,1728676863,KR 1728677888,1728678911,BD 1728678912,1728679935,PG 1728679936,1728680959,ID 1728680960,1728681983,MY 1728681984,1728683007,CN 1728684032,1728685055,AU 1728685056,1728686079,JP 1728686080,1728687103,AU 1728687104,1728688127,JP 1728689152,1728689407,JP 1728689408,1728689663,BD 1728689664,1728689919,PK 1728689920,1728690175,ID 1728690176,1728691199,BD 1728691200,1728692223,KH 1728693248,1728698367,VN 1728698368,1728699391,NZ 1728699392,1728699903,BD 1728699904,1728700415,IN 1728700416,1728700671,BD 1728700672,1728700927,IN 1728700928,1728701183,PG 1728701184,1728701439,ID 1728701440,1728702463,WS 1728702464,1728703487,IN 1728703488,1728704511,NZ 1728704512,1728705535,AU 1728705536,1728706559,HK 1728706560,1728709631,CN 1728709632,1728710655,TW 1728710656,1728710911,AU 1728710912,1728711167,IN 1728711424,1728711679,AU 1728711680,1728712703,HK 1728712704,1728713727,CN 1728713728,1728714751,MN 1728714752,1728715775,IN 1728715776,1728716799,NP 1728716800,1728717823,AU 1728717824,1728718847,JP 1728718848,1728719871,MY 1728720896,1728721919,AU 1728721920,1728722943,BD 1728722944,1728723199,ID 1728723200,1728723455,AU 1728723456,1728726015,ID 1728726016,1728727039,JP 1728727040,1728728063,AU 1728728064,1728729087,BD 1728729088,1728729599,ID 1728729600,1728730111,AU 1728730112,1728731135,CN 1728731136,1728732159,VN 1728732160,1728733183,KR 1728733184,1728734207,ID 1728734208,1728735231,SG 1728735232,1728736255,ID 1728736256,1728736511,HK 1728736512,1728736767,IN 1728736768,1728737023,ID 1728737024,1728737279,CN 1728737280,1728738303,JP 1728738304,1728739327,IN 1728739328,1728740351,ID 1728740352,1728740607,SG 1728740608,1728741119,AU 1728741120,1728741375,IN 1728741376,1728742399,ID 1728742400,1728743423,IN 1728743424,1728744447,ID 1728744448,1728745471,CN 1728745472,1728747519,ID 1728747520,1728748543,PH 1728748544,1728750591,MY 1728750592,1728751615,JP 1728751616,1728751871,IN 1728751872,1728752639,ID 1728753664,1728754687,PH 1728754688,1728755711,IN 1728755712,1728756735,ID 1728756736,1728757759,IN 1728757760,1728758783,JP 1728758784,1728759039,MY 1728759040,1728759257,HK 1728759258,1728759258,KR 1728759259,1728759295,HK 1728759296,1728759551,MY 1728759552,1728759807,HK 1728759808,1728760831,PH 1728760832,1728761855,TW 1728761856,1728762879,IN 1728762880,1728763903,VN 1728763904,1728764927,KR 1728764928,1728765439,SG 1728765440,1728765695,IN 1728765696,1728765951,ID 1728765952,1728766975,IN 1728766976,1728767999,TH 1728768000,1728768255,AU 1728768256,1728768511,NZ 1728768512,1728769023,IN 1728770048,1728772095,JP 1728772096,1728773375,IN 1728773376,1728773631,ID 1728773632,1728774143,PH 1728775168,1728776191,JP 1728776192,1728777215,AU 1728777216,1728778239,TH 1728779264,1728779519,IN 1728779520,1728780287,ID 1728780288,1728781311,KR 1728781312,1728782335,ID 1728782336,1728783359,LK 1728783360,1728784383,HK 1728784384,1728785407,PH 1728785408,1728786431,KR 1728786432,1728787455,SG 1728787456,1728788479,AU 1728788480,1728789503,KR 1728789504,1728790527,PK 1728790528,1728791551,PH 1728791552,1728792575,PK 1728792576,1728793087,HK 1728793088,1728793599,ID 1728793600,1728794623,AU 1728794624,1728796671,IN 1728796672,1728798719,HK 1728798720,1728799743,ID 1728799744,1728801279,HK 1728801280,1728801791,ID 1728801792,1728802815,HK 1728802816,1728803839,PH 1728803840,1728804863,IN 1728804864,1728805887,JP 1728805888,1728806911,NZ 1728806912,1728807935,KR 1728807936,1728808959,ID 1728808960,1728809983,BD 1728809984,1728810495,SG 1728810496,1728810751,AU 1728810752,1728811007,SG 1728811008,1728812031,AU 1728812032,1728812543,ID 1728812544,1728813055,SG 1728813056,1728814079,IN 1728814080,1728815103,JP 1728815104,1728817151,AU 1728817152,1728818175,CN 1728818176,1728819199,VN 1728819200,1728819711,ID 1728819712,1728819967,NZ 1728819968,1728820223,ID 1728820224,1728821247,CN 1728821248,1728821759,AU 1728821760,1728822271,ID 1728822272,1728823295,SG 1728823296,1728824319,MN 1728824320,1728825343,JP 1728825344,1728826367,SG 1728826368,1728827391,AU 1728827392,1728828415,JP 1728828416,1728829439,AU 1728829440,1728830463,KH 1728830464,1728830719,PK 1728830720,1728830975,JP 1728830976,1728831487,ID 1728831488,1728832511,IN 1728832512,1728833535,HK 1728833536,1728834559,IN 1728834560,1728835583,JP 1728835584,1728836607,NZ 1728836608,1728837631,HK 1728837632,1728838655,KR 1728838656,1728839679,ID 1728839680,1728839935,MN 1728839936,1728840191,IN 1728840192,1728840447,SG 1728840448,1728842751,AU 1728842752,1728843775,ID 1728843776,1728844799,JP 1728844800,1728845311,ID 1728845312,1728845567,AU 1728845568,1728845823,ID 1728845824,1728846847,IN 1728846848,1728847871,ID 1728847872,1728848895,CN 1728848896,1728849919,AU 1728849920,1728850943,PK 1728850944,1728851967,BD 1728852992,1728854015,JP 1728854016,1728854527,AU 1728854528,1728854783,PK 1728854784,1728855039,AU 1728855040,1728856063,HK 1728856064,1728857087,MY 1728857088,1728858111,CN 1728858112,1728859135,BD 1728859136,1728860159,HK 1728860160,1728860671,ID 1728860672,1728861183,BD 1728861184,1728861439,ID 1728861440,1728862207,AU 1728862208,1728863231,PH 1728863232,1728864255,CN 1728864256,1728865279,AF 1728865280,1728866303,AU 1728866304,1728867327,VN 1728867328,1728868351,AU 1728868352,1728869375,ID 1728869376,1728870399,IN 1728870400,1728871423,PK 1728871424,1728872447,IN 1728872448,1728873471,AU 1728873472,1728874495,IN 1728874496,1728875519,CN 1728875520,1728876543,HK 1728876544,1728877567,MY 1728877568,1728878591,HK 1728878592,1728879615,MY 1728879616,1728880127,IN 1728880128,1728880383,JP 1728880384,1728880639,AU 1728880640,1728881663,KH 1728881664,1728881919,ID 1728881920,1728882175,AU 1728882176,1728882431,BD 1728882432,1728882687,ID 1728882688,1728883711,IN 1728883712,1728885759,BD 1728886784,1728887807,CN 1728887808,1728888831,AU 1728888832,1728889855,IN 1728890880,1728891903,AU 1728891904,1728892927,BD 1728892928,1728893439,BN 1728893440,1728893695,SG 1728893696,1728893951,IN 1728893952,1728894975,SG 1728894976,1728895999,HK 1728896000,1728897023,ID 1728897024,1728898047,JP 1728898048,1728899071,BD 1728899072,1728900095,CN 1728900096,1728901119,BD 1728901120,1728901375,ID 1728901632,1728902143,ID 1728902144,1728903167,IN 1728903168,1728905215,KR 1728905216,1728905471,IN 1728905472,1728905727,PK 1728905728,1728906239,IN 1728906240,1728907263,MY 1728907264,1728908287,NZ 1728908288,1728909311,CN 1728909312,1728912383,JP 1728912384,1728913407,TH 1728914432,1728915199,ID 1728915200,1728915455,NZ 1728915456,1728917503,JP 1728917504,1728918527,HK 1728918528,1728919551,KR 1728919552,1728920575,AU 1728920576,1728921599,JP 1728921600,1728922623,AF 1728922624,1728923647,AU 1728923648,1728924159,CN 1728924160,1728924671,MY 1728924672,1728925695,VN 1728925696,1728927743,AU 1728927744,1728928767,LA 1728928768,1728929791,JP 1728929792,1728930815,IN 1728930816,1728931839,AU 1728932864,1728934911,IN 1728934912,1728935935,NZ 1728935936,1728936959,MY 1728936960,1728937983,CN 1728937984,1728939007,SG 1728939008,1728939519,BD 1728939520,1728939775,PH 1728939776,1728940031,IN 1728940032,1728942079,JP 1728942080,1728943103,CN 1728943104,1728944127,BD 1728944128,1728945151,JP 1728945152,1728946175,BD 1728946176,1728947199,KR 1728947200,1728949247,JP 1728949248,1728950271,SG 1728950272,1728950783,HK 1728950784,1728951551,IN 1728951552,1728951807,ID 1728951808,1728952063,SG 1728952064,1728952319,IN 1728952320,1728952831,PH 1728952832,1728953343,AU 1728953344,1728954367,HK 1728955392,1728956415,CN 1728956416,1728957439,ID 1728958464,1728959487,JP 1728959488,1728960511,TH 1728960512,1728961279,AU 1728961280,1728961535,IN 1728961536,1728962559,CN 1728962560,1728963583,BD 1728963584,1728964607,TH 1728964608,1728965631,HK 1728965632,1728966655,BD 1728966656,1728967679,IN 1728967680,1728968703,CN 1728968704,1728970751,JP 1728970752,1728971007,IN 1728971008,1728971263,AU 1728971264,1728971519,IN 1728971520,1728971775,NZ 1728971776,1728972799,AU 1728972800,1728973823,TH 1728973824,1728974847,JP 1728974848,1728976383,ID 1728976384,1728976895,AU 1728977152,1728977407,AU 1728977408,1728977919,BD 1728977920,1728978943,MY 1728979968,1728980991,MN 1728980992,1728982015,AU 1728982016,1728982527,ID 1728982528,1728982783,IN 1728982784,1728985087,AU 1728985088,1728986111,SG 1728986112,1728987135,PH 1728987136,1728987391,JP 1728987392,1728988159,AU 1728988160,1728988191,NZ 1728988192,1728988199,US 1728988200,1728989183,NZ 1728989184,1728989695,BD 1728989696,1728990207,ID 1728990208,1728990335,MY 1728990336,1728990463,ID 1728990464,1728990975,KR 1728990976,1728991231,SG 1728991232,1728992255,JP 1728992256,1728993279,CN 1728993280,1728994303,PG 1728994304,1728995327,AU 1728995328,1728996095,IN 1728996096,1728996351,SG 1728996352,1728997375,CN 1728997376,1728998399,IN 1728998400,1728998655,ID 1728998656,1728998911,BD 1728998912,1728999423,ID 1728999424,1729001471,HK 1729001472,1729003519,IN 1729003520,1729004543,BD 1729004544,1729006591,CN 1729006592,1729007615,NZ 1729007616,1729008639,HK 1729008640,1729010687,JP 1729010688,1729011711,CN 1729011712,1729012735,IN 1729012736,1729013759,TH 1729013760,1729014783,NZ 1729014784,1729015807,AU 1729015808,1729016831,JP 1729016832,1729017855,IN 1729017856,1729018111,MY 1729018112,1729018367,SG 1729018368,1729018879,AU 1729018880,1729019903,IN 1729019904,1729020159,ID 1729020160,1729020415,BD 1729020416,1729020671,PH 1729020672,1729020927,ID 1729020928,1729021951,IN 1729021952,1729022975,AU 1729022976,1729023999,BD 1729024000,1729025023,IN 1729025024,1729026047,SG 1729026048,1729027071,NZ 1729027072,1729027327,HK 1729027328,1729027583,AU 1729027584,1729027839,JP 1729027840,1729028095,HK 1729028096,1729029119,SG 1729029376,1729029631,ID 1729029632,1729029887,AU 1729029888,1729030143,PK 1729030144,1729031167,IN 1729031168,1729032191,SG 1729032192,1729033215,CN 1729033216,1729033727,SG 1729033728,1729034239,GB 1729034240,1729035263,KH 1729035264,1729036287,AU 1729036288,1729037311,JP 1729037312,1729039359,CN 1729040384,1729041407,CN 1729041408,1729042687,HK 1729042688,1729042943,SG 1729042944,1729044479,HK 1729044480,1729045503,JP 1729045504,1729046015,ID 1729046016,1729046271,HK 1729046272,1729046527,JP 1729046528,1729047551,BD 1729047552,1729048575,AU 1729048576,1729049599,VN 1729049600,1729053695,IN 1729053696,1729054719,JP 1729054720,1729055231,AU 1729055232,1729055487,IN 1729055488,1729055743,NZ 1729055744,1729056767,JP 1729056768,1729057791,IN 1729057792,1729058815,HK 1729058816,1729059839,TH 1729060864,1729061887,CN 1729061888,1729062911,SG 1729062912,1729063935,MY 1729063936,1729064959,JP 1729064960,1729065983,PG 1729065984,1729067007,JP 1729067008,1729068031,HK 1729068032,1729068287,IN 1729068288,1729068543,SG 1729068544,1729069055,NZ 1729069056,1729070079,AU 1729070080,1729071103,HK 1729071104,1729072127,MY 1729072128,1729072895,BD 1729072896,1729073151,ID 1729073152,1729074175,TH 1729074176,1729075199,AU 1729075200,1729076223,NZ 1729076224,1729076735,AU 1729076736,1729076991,HK 1729076992,1729077247,IN 1729077248,1729078271,JP 1729078272,1729079295,BD 1729079296,1729080319,AU 1729080320,1729081343,ID 1729081344,1729081599,IN 1729081600,1729082111,AU 1729082112,1729082367,IN 1729082368,1729083391,HK 1729083392,1729083647,JP 1729083648,1729084207,HK 1729084208,1729084215,JP 1729084216,1729084415,HK 1729084416,1729085439,JP 1729085440,1729087487,HK 1729087488,1729088511,CN 1729088512,1729090559,AU 1729090560,1729091583,JP 1729091584,1729092607,HK 1729093632,1729094143,BD 1729094144,1729094399,ID 1729094656,1729095679,IN 1729095680,1729096703,SG 1729096704,1729097215,AU 1729097216,1729097727,AF 1729097728,1729098751,ID 1729098752,1729099775,BD 1729099776,1729100543,IN 1729100544,1729100799,ID 1729100800,1729101823,IN 1729101824,1729102847,VN 1729102848,1729103871,IN 1729103872,1729104895,JP 1729104896,1729105663,IN 1729105664,1729105919,VU 1729105920,1729106943,SG 1729106944,1729107967,NZ 1729107968,1729108479,BD 1729108480,1729108991,HK 1729108992,1729111039,IN 1729111040,1729112063,JP 1729112064,1729113087,MY 1729113088,1729114111,IN 1729114112,1729114623,ID 1729114624,1729114879,IN 1729114880,1729115135,AU 1729115136,1729116159,CN 1729116160,1729117183,IN 1729117184,1729118207,KH 1729118208,1729119231,AU 1729119232,1729120255,IN 1729120256,1729121279,BD 1729121280,1729121535,IN 1729121536,1729122303,ID 1729122304,1729125375,CN 1729125376,1729127423,AU 1729127424,1729127935,IN 1729127936,1729128447,SG 1729128448,1729129471,IN 1729129472,1729130495,CN 1729130496,1729131519,ID 1729131520,1729132543,HK 1729132544,1729133567,BN 1729133568,1729134591,CN 1729134592,1729135615,AU 1729135616,1729136127,ID 1729136128,1729136639,AU 1729136640,1729137663,ID 1729137664,1729139711,IN 1729139712,1729140735,AU 1729140736,1729141759,BD 1729141760,1729142783,PG 1729142784,1729143807,JP 1729143808,1729144831,IN 1729144832,1729145855,PH 1729145856,1729146879,NZ 1729146880,1729147903,IN 1729147904,1729148415,NZ 1729148416,1729148927,MY 1729148928,1729149951,HK 1729149952,1729150975,ID 1729150976,1729151999,AU 1729152000,1729152255,IN 1729152256,1729153023,ID 1729153024,1729154047,IN 1729154048,1729155071,TH 1729155072,1729155583,IN 1729155584,1729156095,AU 1729156096,1729157119,JP 1729157120,1729158143,HK 1729158144,1729158399,ID 1729158400,1729158911,IN 1729158912,1729159167,ID 1729159168,1729160191,JP 1729160192,1729161215,HK 1729161216,1729162239,ID 1729162240,1729163263,JP 1729163264,1729165311,TW 1729165312,1729166335,JP 1729166336,1729166671,SG 1729166672,1729166687,PH 1729166688,1729166847,SG 1729166848,1729167359,HK 1729167360,1729168383,IN 1729168384,1729169407,JP 1729169408,1729170431,TW 1729170432,1729171455,HK 1729171456,1729171967,AU 1729171968,1729172223,IN 1729172224,1729172479,MY 1729172480,1729173503,PH 1729173504,1729174527,BN 1729174528,1729176575,HK 1729176576,1729177599,BD 1729177600,1729178623,CN 1729178624,1729179647,NC 1729179648,1729180671,IN 1729180672,1729181695,ID 1729181696,1729182207,AU 1729182208,1729182463,ID 1729182464,1729182719,AU 1729182720,1729183743,AF 1729184768,1729185791,BD 1729185792,1729186815,HK 1729186816,1729187327,ID 1729187328,1729187583,MY 1729187584,1729187839,ID 1729187840,1729189887,IN 1729189888,1729190911,VN 1729190912,1729191935,HK 1729191936,1729195007,IN 1729195008,1729195519,MN 1729195520,1729196031,IN 1729196032,1729197055,GU 1729197056,1729198079,HK 1729198080,1729199103,CN 1729199104,1729199615,MY 1729199616,1729199871,JP 1729200128,1729201151,IN 1729201152,1729202175,AU 1729202176,1729203199,CN 1729203200,1729205247,SG 1729205248,1729206271,JP 1729206272,1729207295,AU 1729207296,1729208319,IN 1729208320,1729209343,CN 1729209344,1729209599,ID 1729209600,1729210367,AF 1729210368,1729211391,MY 1729211392,1729212415,ID 1729212416,1729213439,JP 1729213440,1729213951,BD 1729213952,1729214463,ID 1729214464,1729216511,JP 1729216512,1729216767,ID 1729216768,1729217023,AU 1729217024,1729217535,IN 1729217536,1729217791,JP 1729217792,1729218175,MY 1729218176,1729218303,SG 1729218304,1729218431,JP 1729218432,1729218559,KR 1729218560,1729219583,PK 1729219584,1729220607,CN 1729220608,1729221631,MY 1729221632,1729222655,KH 1729222656,1729225727,AU 1729225728,1729226751,CN 1729226752,1729227775,AU 1729227776,1729228799,VN 1729228800,1729229823,TW 1729229824,1729230847,ID 1729230848,1729231103,PH 1729231104,1729231359,TH 1729231360,1729232895,AU 1729232896,1729233919,MY 1729233920,1729234943,VN 1729234944,1729236991,PK 1729236992,1729238015,ID 1729238016,1729239039,PK 1729239040,1729240063,JP 1729240064,1729242111,ID 1729242112,1729244159,AU 1729245184,1729247231,AU 1729247232,1729247487,NZ 1729247488,1729247743,AU 1729247744,1729248255,NZ 1729248256,1729249279,JP 1729249280,1729252351,IN 1729252352,1729253375,ID 1729253376,1729254399,BD 1729254400,1729255423,AU 1729255424,1729257471,MY 1729257472,1729258495,ID 1729258496,1729259519,JP 1729259520,1729260543,IN 1729260544,1729261567,AU 1729261568,1729262591,JP 1729262592,1729262847,PK 1729262848,1729263103,ID 1729263104,1729263615,NZ 1729263616,1729264639,IN 1729264640,1729265663,AU 1729265664,1729266687,TW 1729266688,1729267711,ID 1729267712,1729268735,NZ 1729268736,1729269759,IN 1729269760,1729270783,ID 1729270784,1729271807,AU 1729271808,1729272063,IN 1729272064,1729272319,ID 1729272320,1729272831,AU 1729272832,1729273855,IN 1729273856,1729274879,AF 1729274880,1729276927,IN 1729276928,1729277951,BN 1729277952,1729278975,VN 1729280000,1729281023,HK 1729281024,1729281535,AU 1729281536,1729282047,ID 1729282048,1729283071,CN 1729283072,1729284095,AU 1729284096,1729285119,NZ 1729285120,1729286143,AU 1729286144,1729288191,CN 1729288192,1729289215,IN 1729289216,1729290239,ID 1729290240,1729291263,CN 1729291264,1729293311,JP 1729293312,1729294591,ID 1729294592,1729294847,AU 1729294848,1729295103,IN 1729295104,1729295359,PK 1729295360,1729296383,MY 1729296384,1729297407,IN 1729297408,1729298431,AU 1729298432,1729299455,JP 1729299456,1729300479,NZ 1729300480,1729300991,SG 1729300992,1729301503,NZ 1729301504,1729302527,CN 1729302528,1729302783,PH 1729302784,1729303551,IN 1729303552,1729304575,SG 1729304576,1729305599,HK 1729305600,1729306623,JP 1729306624,1729307647,PH 1729307648,1729307903,BD 1729307904,1729308159,ID 1729308160,1729308415,HK 1729308416,1729308671,IN 1729308672,1729310719,CN 1729310720,1729311743,JP 1729311744,1729312767,IN 1729312768,1729313791,ID 1729313792,1729314815,AU 1729314816,1729317887,CN 1729317888,1729319423,ID 1729319424,1729319935,SG 1729319936,1729320959,HK 1729320960,1729321983,IN 1729321984,1729323007,AU 1729323008,1729324031,VN 1729324032,1729325055,NZ 1729325056,1729326079,TH 1729326080,1729327103,ID 1729327104,1729328127,AU 1729328128,1729330175,JP 1729330176,1729331199,KR 1729331200,1729331711,IN 1729331712,1729332223,BD 1729332224,1729335295,IN 1729335296,1729336319,AU 1729336320,1729338367,IN 1729338368,1729340415,JP 1729340416,1729341439,VN 1729341440,1729341951,IN 1729341952,1729343487,AU 1729343488,1729346559,ID 1729346560,1729347583,HK 1729347584,1729348607,AU 1729348608,1729350655,IN 1729350656,1729352703,ID 1729352704,1729353727,IN 1729353728,1729353983,AU 1729353984,1729354239,IN 1729354240,1729354495,AU 1729354752,1729355775,VN 1729355776,1729356799,IN 1729356800,1729357823,ID 1729357824,1729358847,CN 1729358848,1729359871,HK 1729359872,1729360895,JP 1729360896,1729361919,AU 1729361920,1729362943,IN 1729362944,1729363967,BD 1729363968,1729364991,PK 1729364992,1729367039,JP 1729367040,1729368063,CN 1729368064,1729369343,AU 1729369344,1729369599,ID 1729369600,1729370111,AU 1729370112,1729371135,BN 1729371136,1729372159,IN 1729372160,1729373183,CN 1729373184,1729374207,JP 1729374208,1729375231,TW 1729375232,1729376255,CN 1729376256,1729376767,AU 1729376768,1729377023,SG 1729377024,1729377279,ID 1729377280,1729378303,BD 1729378560,1729378815,IN 1729378816,1729379071,KR 1729379072,1729379327,SG 1729379328,1729380351,HK 1729380352,1729381375,IN 1729382400,1729383423,JP 1729383424,1729384447,PG 1729384448,1729385471,KH 1729385472,1729386495,JP 1729386496,1729386751,NZ 1729386752,1729387007,BD 1729387008,1729387519,ID 1729387520,1729388543,SG 1729388544,1729389567,HK 1729390592,1729391103,IN 1729391104,1729391615,ID 1729391616,1729392639,JP 1729392640,1729393663,CN 1729393664,1729394687,KR 1729394688,1729395711,TH 1729395712,1729395967,NR 1729395968,1729396735,IN 1729396736,1729397759,CN 1729397760,1729398783,PK 1729398784,1729399807,NZ 1729399808,1729400831,BD 1729400832,1729402879,VN 1729402880,1729403903,MN 1729403904,1729404927,JP 1729404928,1729405951,CN 1729405952,1729406207,IN 1729406208,1729406463,HK 1729406464,1729406975,ID 1729406976,1729407999,SG 1729408000,1729409023,HK 1729409024,1729410047,TW 1729410048,1729411071,BD 1729411072,1729413119,ID 1729413120,1729414143,HK 1729414144,1729414655,ID 1729414656,1729416191,AU 1729416192,1729417215,TH 1729417216,1729418239,AU 1729418240,1729419263,IN 1729419264,1729419519,AU 1729419520,1729419775,SG 1729419776,1729420031,IN 1729420288,1729421311,HK 1729421312,1729422335,MY 1729422336,1729423359,HK 1729423360,1729423871,VU 1729423872,1729424383,AU 1729424384,1729425407,HK 1729425408,1729426431,JP 1729426432,1729427455,AU 1729427456,1729428479,CN 1729428480,1729430527,AU 1729432576,1729433599,PH 1729433600,1729433855,IN 1729433856,1729434111,AU 1729434112,1729434623,IN 1729434624,1729435647,AU 1729435648,1729436671,TH 1729436672,1729437695,SG 1729437696,1729438719,MY 1729438720,1729439743,JP 1729439744,1729440767,BD 1729440768,1729441791,MY 1729441792,1729442815,AU 1729442816,1729443839,IN 1729443840,1729444351,AU 1729444352,1729444863,IN 1729444864,1729445887,TW 1729445888,1729446399,SG 1729446400,1729446911,IN 1729446912,1729447935,SG 1729447936,1729448959,BD 1729448960,1729449983,IN 1729449984,1729450495,SG 1729450496,1729451007,IN 1729451008,1729452031,ID 1729452032,1729453055,MY 1729453056,1729454079,ID 1729454080,1729457151,JP 1729457152,1729458175,AU 1729458176,1729460223,CN 1729460224,1729461247,VN 1729461248,1729462271,IN 1729462272,1729464319,AU 1729464320,1729466367,CN 1729466368,1729467391,AU 1729467392,1729468415,VN 1729468416,1729469439,MY 1729469440,1729470463,AU 1729470464,1729471487,IN 1729471488,1729472511,LK 1729472512,1729473535,PH 1729473536,1729474559,NZ 1729474560,1729475583,CN 1729475584,1729476607,MY 1729476608,1729477631,IN 1729477632,1729478655,AU 1729478912,1729479423,NZ 1729479424,1729479679,IN 1729479680,1729480703,TW 1729480704,1729481727,KR 1729481728,1729482751,ID 1729482752,1729483775,CN 1729483776,1729485823,ID 1729485824,1729486847,HK 1729486848,1729488383,ID 1729488384,1729488895,SB 1729488896,1729489919,IN 1729490944,1729491967,CN 1729491968,1729492223,HK 1729492224,1729492479,AU 1729492480,1729492991,US 1729492992,1729494015,SB 1729494016,1729495039,MY 1729495040,1729519615,CN 1729519616,1729520639,HK 1729520640,1729527807,CN 1729527808,1729528831,SG 1729528832,1729530879,ID 1729531904,1729532927,AU 1729532928,1729533951,MY 1729533952,1729534975,JP 1729534976,1729535999,TW 1729536000,1729537023,HK 1729537024,1729537791,ID 1729537792,1729538047,JP 1729538048,1729538559,ID 1729538560,1729538815,SG 1729538816,1729539071,ID 1729539072,1729540095,IN 1729540096,1729541119,AU 1729541120,1729542143,TH 1729542144,1729543167,AU 1729543168,1729544191,CN 1729544192,1729545215,IN 1729545216,1729546239,AU 1729546240,1729546495,JP 1729546496,1729546751,HK 1729546752,1729547007,NZ 1729547008,1729547263,HK 1729548544,1729549311,AU 1729550336,1729551359,MY 1729551360,1729552383,KR 1729552384,1729553407,AU 1729553408,1729554431,CN 1729554432,1729554943,ID 1729554944,1729555455,NZ 1729555456,1729556479,IN 1729556480,1729557503,ID 1729558528,1729559551,ID 1729559552,1729560575,CN 1729560576,1729561599,AU 1729561600,1729562623,JP 1729562624,1729563647,CN 1729563648,1729564671,JP 1729564672,1729565695,NZ 1729565696,1729566719,ID 1729566720,1729568255,IN 1729568256,1729568511,ID 1729568512,1729568767,BD 1729568768,1729569791,ID 1729569792,1729570815,AF 1729570816,1729571839,AU 1729571840,1729572863,MY 1729572864,1729573887,MN 1729573888,1729574911,NC 1729574912,1729575935,CN 1729575936,1729576959,BD 1729576960,1729577983,AU 1729577984,1729578495,HK 1729578496,1729578751,AU 1729578752,1729579007,NZ 1729579008,1729580031,JP 1729580032,1729581055,SG 1729581056,1729583103,KR 1729583104,1729584127,JP 1729584128,1729585151,SG 1729585152,1729586175,PH 1729586176,1729587199,ID 1729587200,1729588223,AU 1729588224,1729589247,TW 1729589248,1729590271,AU 1729590272,1729590783,ID 1729590784,1729591295,IN 1729591296,1729592319,TH 1729592320,1729593343,IN 1729593344,1729594367,JP 1729594368,1729596415,KH 1729596416,1729596671,IN 1729596672,1729596927,ID 1729596928,1729597439,NZ 1729597440,1729598463,VN 1729598976,1729599231,IN 1729599232,1729599487,ID 1729599488,1729600511,AU 1729600512,1729601535,VN 1729601536,1729603583,CN 1729603584,1729604607,HK 1729604608,1729604863,AU 1729605120,1729605375,AU 1729605376,1729605631,ID 1729605632,1729606655,CN 1729606656,1729607679,ID 1729607680,1729609727,AU 1729609728,1729609999,HK 1729610000,1729610003,JP 1729610004,1729610063,HK 1729610064,1729610071,SG 1729610072,1729610751,HK 1729610752,1729611775,JP 1729611776,1729612799,ID 1729613824,1729614847,SG 1729614848,1729615103,NZ 1729615104,1729615359,KH 1729615360,1729615615,IN 1729615872,1729616895,AU 1729616896,1729617919,JP 1729617920,1729618943,ID 1729618944,1729619967,CN 1729619968,1729620991,ID 1729620992,1729622015,IN 1729622016,1729623295,ID 1729623296,1729623551,AU 1729623552,1729623807,TH 1729623808,1729624063,AF 1729624064,1729626111,JP 1729626112,1729627135,HK 1729627136,1729628159,SG 1729628160,1729629183,KR 1729629184,1729629695,ID 1729629696,1729629951,AU 1729629952,1729630207,HK 1729630208,1729631231,PH 1729631232,1729632255,IN 1729633280,1729634303,NZ 1729634304,1729635327,KH 1729635328,1729636351,IN 1729636352,1729637375,NZ 1729637376,1729637887,SG 1729637888,1729638143,IN 1729638144,1729638399,AU 1729638400,1729639423,ID 1729639424,1729640447,JP 1729640448,1729641471,ID 1729641472,1729642495,IN 1729642496,1729643519,AU 1729643520,1729644543,JP 1729644544,1729645823,ID 1729645824,1729646079,SG 1729646080,1729646591,PG 1729646592,1729649663,IN 1729649664,1729650687,HK 1729650688,1729651711,PK 1729651712,1729652735,TW 1729652736,1729653759,ID 1729653760,1729654783,IN 1729654784,1729655807,NC 1729655808,1729656831,CN 1729656832,1729657855,AU 1729657856,1729658879,IN 1729658880,1729659903,CN 1729659904,1729660415,AU 1729660416,1729660671,MY 1729660672,1729660927,IN 1729660928,1729662975,NZ 1729662976,1729663999,CN 1729664000,1729665023,ID 1729665024,1729666047,HK 1729666048,1729667071,SG 1729667072,1729668095,JP 1729668096,1729669119,SG 1729669120,1729670143,JP 1729670144,1729671167,IN 1729671168,1729672191,CN 1729672192,1729673215,IN 1729673216,1729674239,CN 1729674240,1729675263,IN 1729675264,1729676287,JP 1729676288,1729677311,AU 1729677312,1729677439,IN 1729677440,1729677567,NL 1729677568,1729677823,IN 1729677824,1729678079,NL 1729678080,1729678335,IN 1729678336,1729679359,HK 1729679360,1729680383,AU 1729680384,1729681407,ID 1729681408,1729682431,HK 1729682432,1729683455,CN 1729683456,1729684479,HK 1729684480,1729685503,CN 1729685504,1729687551,IN 1729687552,1729688575,AU 1729688576,1729689599,VN 1729689600,1729691647,CN 1729691648,1729693695,IN 1729693696,1729694207,CN 1729694208,1729694719,IN 1729694720,1729695743,MM 1729695744,1729696767,KR 1729696768,1729702911,CN 1729702912,1729703935,IN 1729703936,1729704959,CN 1729704960,1729705215,SG 1729705216,1729705471,AU 1729705472,1729705983,ID 1729705984,1729706751,AU 1729706752,1729707007,NZ 1729707008,1729708031,HK 1729708032,1729710079,CN 1729710080,1729711103,HK 1729711104,1729712127,MM 1729712128,1729713151,BD 1729713152,1729714175,IN 1729714176,1729715199,JP 1729715200,1729716223,IN 1729716224,1729717247,TH 1729717248,1729718271,JP 1729718272,1729719295,HK 1729719296,1729720319,ID 1729720320,1729721087,AU 1729721344,1729722367,NZ 1729723392,1729726463,IN 1729726464,1729727487,PK 1729727488,1729728511,KI 1729729536,1729730559,CN 1729730560,1729731583,IN 1729731584,1729732607,CN 1729732608,1729733631,AU 1729733632,1729733887,BD 1729733888,1729734655,ID 1729734656,1729736703,IN 1729736704,1729737727,PH 1729737728,1729738751,AU 1729738752,1729739775,BD 1729739776,1729740799,NZ 1729740800,1729742335,ID 1729742336,1729742847,PH 1729742848,1729743871,SG 1729743872,1729744895,IN 1729744896,1729745919,ID 1729745920,1729746943,AU 1729746944,1729747967,CN 1729747968,1729748223,IN 1729748224,1729748479,AU 1729748480,1729748991,ID 1729748992,1729750015,IN 1729750016,1729750527,VU 1729750528,1729751039,IN 1729751040,1729753087,TW 1729753088,1729754111,TH 1729754112,1729755135,NZ 1729755136,1729756159,BD 1729756160,1729757183,HK 1729757184,1729758207,CN 1729758208,1729759231,ID 1729759232,1729760255,IN 1729760256,1729761279,ID 1729761280,1729762303,NZ 1729762304,1729763327,TH 1729763328,1729764351,SG 1729764352,1729766399,JP 1729766400,1729767423,PH 1729767424,1729768447,SG 1729768448,1729769471,MY 1729769472,1729772543,IN 1729772544,1729773567,AU 1729773568,1729774591,CN 1729774592,1729775615,AU 1729775616,1729776127,IN 1729776128,1729776639,MY 1729777664,1729779711,PK 1729779712,1729780735,AU 1729780736,1729781503,HK 1729781504,1729781759,TL 1729781760,1729782783,IN 1729782784,1729783551,ID 1729783552,1729783807,NZ 1729783808,1729785855,IN 1729785856,1729786879,BD 1729786880,1729787903,CN 1729787904,1729789951,HK 1729789952,1729790975,ID 1729790976,1729791999,CN 1729792000,1729793023,BD 1729793024,1729794047,IN 1729794048,1729795071,HK 1729795072,1729796095,MY 1729796096,1729797119,JP 1729797120,1729799167,CN 1729799168,1729800191,JP 1729800192,1729800703,IN 1729800704,1729801215,MY 1729801216,1729802239,AU 1729802240,1729803263,MY 1729803264,1729804287,TH 1729804288,1729805311,PK 1729805312,1729806335,JP 1729806336,1729807359,MN 1729807360,1729808383,MY 1729808384,1729808895,IN 1729808896,1729809407,AU 1729809408,1729810431,IN 1729810432,1729812479,ID 1729812480,1729813503,IN 1729813504,1729814527,HK 1729814528,1729815551,IN 1729815552,1729816575,CN 1729816576,1729817599,IN 1729817600,1729818623,AU 1729818624,1729819647,CN 1729819648,1729820671,BD 1729820672,1729821695,MY 1729821696,1729822719,VN 1729822720,1729822975,HK 1729822976,1729823231,AU 1729823232,1729823487,IN 1729823488,1729823743,ID 1729823744,1729824767,CN 1729824768,1729825791,IN 1729825792,1729826815,CN 1729826816,1729827839,IN 1729827840,1729828863,PK 1729828864,1729829887,CN 1729829888,1729831935,AU 1729831936,1729832191,ID 1729832192,1729832447,NZ 1729832448,1729832959,AU 1729832960,1729833983,JP 1729833984,1729835007,SG 1729835008,1729836031,IN 1729836032,1729837055,NZ 1729837056,1729838079,CN 1729838080,1729840127,VN 1729840128,1729841151,JP 1729841152,1729842175,MY 1729842176,1729843199,HK 1729843200,1729844223,JP 1729844224,1729845247,IN 1729845248,1729846271,NZ 1729846272,1729847295,AU 1729847296,1729848319,CN 1729848320,1729849343,TH 1729849344,1729850367,MY 1729850368,1729851391,HK 1729851392,1729852415,MY 1729852416,1729853439,MM 1729853440,1729853695,IN 1729853696,1729853951,NZ 1729853952,1729854463,PH 1729854464,1729855487,HK 1729855488,1729856511,KR 1729856512,1729857535,AU 1729857536,1729858559,JP 1729858560,1729859583,IN 1729860608,1729861631,KR 1729861632,1729862655,AU 1729862656,1729863679,JP 1729863680,1729864703,AU 1729864704,1729866751,IN 1729866752,1729867775,AU 1729867776,1729869823,HK 1729870848,1729871871,AU 1729871872,1729872895,JP 1729872896,1729873919,AU 1729873920,1729874943,TH 1729874944,1729875455,MY 1729875456,1729875967,ID 1729875968,1729876991,CN 1729878016,1729879039,NZ 1729879040,1729879167,AU 1729879168,1729879295,JP 1729879296,1729879423,KR 1729879424,1729879679,JP 1729879680,1729879807,AU 1729879808,1729879935,JP 1729879936,1729880063,KR 1729880064,1729880831,AU 1729880832,1729881087,NZ 1729881088,1729881215,PH 1729881216,1729881343,TH 1729881344,1729881471,ID 1729881472,1729881599,VN 1729881600,1729881727,TH 1729881728,1729881855,PH 1729881856,1729881983,VN 1729881984,1729882111,ID 1729882112,1729883135,IN 1729883136,1729884159,VN 1729884160,1729885183,CN 1729885184,1729886207,JP 1729886208,1729887743,ID 1729887744,1729887999,JP 1729888000,1729888255,IN 1729888256,1729889279,KH 1729889280,1729891327,CN 1729891328,1729892351,ID 1729892352,1729893375,PH 1729893376,1729893631,AU 1729893632,1729894399,ID 1729894400,1729896447,JP 1729896448,1729898495,VN 1729898496,1729899519,AU 1729899520,1729900543,HK 1729900544,1729901567,AU 1729901568,1729902079,ID 1729902080,1729902591,SG 1729902592,1729903615,ID 1729903616,1729905663,KR 1729905664,1729906687,PH 1729906688,1729906943,AU 1729906944,1729907199,JP 1729907200,1729907711,ID 1729907712,1729908735,HK 1729908736,1729909759,ID 1729909760,1729910783,NP 1729910784,1729911807,MY 1729911808,1729912063,AU 1729912064,1729912831,ID 1729912832,1729913855,JP 1729913856,1729914879,TH 1729914880,1729915135,ID 1729915136,1729915391,IN 1729915392,1729918975,ID 1729918976,1729919999,BD 1729920000,1729921023,TH 1729921024,1729922047,AU 1729922048,1729923071,AF 1729923072,1729924095,VN 1729924096,1729925119,IN 1729925120,1729926143,HK 1729926144,1729926655,ID 1729926656,1729928191,PK 1729928192,1729929215,IN 1729929216,1729929471,AU 1729929472,1729929727,ID 1729929728,1729929983,MY 1729929984,1729930239,ID 1729930240,1729932287,JP 1729932288,1729933311,VN 1729933312,1729934335,ID 1729934336,1729935359,IN 1729936384,1729938431,ID 1729938432,1729939455,AU 1729939456,1729939967,TW 1729939968,1729940479,PH 1729940480,1729941503,CN 1729941504,1729942527,SG 1729942528,1729943551,CN 1729943552,1729944063,AU 1729944064,1729946623,ID 1729946624,1729949695,JP 1729949696,1729950207,IN 1729950208,1729950719,KH 1729950720,1729951743,IN 1729951744,1729951999,SG 1729952000,1729952511,JP 1729952512,1729952767,NZ 1729952768,1729953791,IN 1729954816,1729955839,ID 1729955840,1729956863,BD 1729956864,1729957887,HK 1729957888,1729958911,CN 1729958912,1729959935,PH 1729959936,1729960959,SG 1729960960,1729961471,IN 1729961472,1729961983,NZ 1729961984,1729964031,IN 1729964032,1729965055,AU 1729965056,1729966079,IN 1729966080,1729967103,JP 1729967104,1729968127,AU 1729968128,1729969151,MY 1729969152,1729970175,LK 1729970176,1729971199,AU 1729971200,1729972223,SG 1729972224,1729973247,HK 1729973248,1729974271,AU 1729974272,1729975295,PH 1729975296,1729976831,AU 1729977344,1729978367,HK 1729978368,1729979391,IN 1729979392,1729980415,AU 1729980416,1729980927,BD 1729980928,1729982463,SG 1729982464,1729982719,AU 1729982720,1729982975,JP 1729982976,1729983231,SG 1729983232,1729983487,AU 1729983488,1729984511,IN 1729984512,1729985535,ID 1729985536,1729986559,BD 1729986560,1729989631,CN 1729989632,1729990655,HK 1729990656,1729991679,MN 1729991680,1729992703,ID 1729992704,1729993727,NC 1729993728,1729994751,IN 1729994752,1729995519,AU 1729995520,1729995775,PK 1729995776,1729996799,ID 1729996800,1729997311,AU 1729997312,1729997823,ID 1729997824,1729998847,AU 1729998848,1730000895,JP 1730000896,1730001919,ID 1730001920,1730002943,TH 1730002944,1730003967,AU 1730003968,1730004223,ID 1730004224,1730004479,IN 1730004480,1730004735,MY 1730004736,1730004991,MN 1730004992,1730007039,AU 1730007040,1730008063,IN 1730008064,1730009087,ID 1730009088,1730010111,AU 1730010112,1730011135,IN 1730011136,1730012159,BT 1730012160,1730013183,ID 1730013184,1730014207,IN 1730015232,1730016255,MY 1730016256,1730017279,NZ 1730017280,1730017791,IN 1730017792,1730019327,PH 1730019328,1730020351,ID 1730020352,1730021375,HK 1730021376,1730022399,JP 1730022400,1730023423,IN 1730023424,1730024447,HK 1730024448,1730025471,CN 1730025472,1730026495,HK 1730026496,1730027519,BD 1730027520,1730028543,SG 1730028544,1730029567,VN 1730029568,1730030591,HK 1730030592,1730031615,TW 1730031616,1730032639,HK 1730032640,1730033663,JP 1730033664,1730034687,ID 1730034688,1730035711,JP 1730035712,1730036735,IN 1730036736,1730037759,HK 1730037760,1730038783,JP 1730038784,1730039807,HK 1730039808,1730040831,IN 1730040832,1730043903,ID 1730043904,1730044927,CN 1730044928,1730046975,HK 1730046976,1730047999,KR 1730048000,1730049023,TL 1730049024,1730050047,IN 1730050048,1730050303,AU 1730050304,1730050559,SG 1730050560,1730051071,ID 1730051072,1730052095,TH 1730052096,1730054143,TW 1730054144,1730055167,AF 1730055168,1730056191,IN 1730056192,1730057215,ID 1730057216,1730058239,CN 1730058240,1730059263,IN 1730059264,1730061311,KR 1730061312,1730062335,JP 1730062336,1730062591,AU 1730062592,1730062847,BD 1730062848,1730064383,ID 1730064384,1730065407,IN 1730065408,1730066431,ID 1730066432,1730067455,AU 1730067456,1730068479,BD 1730068480,1730069503,IN 1730070528,1730071551,CN 1730071552,1730072575,KR 1730072576,1730073599,SG 1730073600,1730073855,HK 1730074112,1730074367,AU 1730074368,1730074623,SG 1730075648,1730076671,ID 1730076672,1730077695,IN 1730077696,1730078719,CN 1730078720,1730079743,HK 1730079744,1730080767,CN 1730080768,1730081791,HK 1730081792,1730082815,ID 1730082816,1730083839,PW 1730084864,1730085887,CN 1730085888,1730086143,SG 1730086144,1730086911,AU 1730086912,1730087935,HK 1730087936,1730088959,JP 1730088960,1730091007,HK 1730091008,1730091519,SG 1730091520,1730091775,AU 1730092032,1730093055,AU 1730093056,1730093567,ID 1730093568,1730094079,MY 1730094080,1730095103,ID 1730095104,1730096127,JP 1730096128,1730097151,ID 1730097152,1730103295,CN 1730103296,1730104319,HK 1730104320,1730105343,JP 1730105344,1730106367,PK 1730106368,1730107391,MV 1730107392,1730108415,AU 1730108416,1730109439,PK 1730109440,1730110463,HK 1730110464,1730112511,PK 1730112512,1730112767,BD 1730112768,1730113535,ID 1730113536,1730114559,AU 1730114560,1730115583,JP 1730115584,1730117631,VN 1730117632,1730118655,KH 1730118656,1730119679,ID 1730119680,1730120703,HK 1730120704,1730121727,JP 1730121728,1730122751,IN 1730122752,1730123775,CN 1730123776,1730124799,BD 1730124800,1730125823,ID 1730125824,1730126847,CN 1730126848,1730127871,ID 1730127872,1730128895,CN 1730128896,1730129919,SG 1730129920,1730130943,BD 1730130944,1730131967,KR 1730131968,1730132799,HK 1730132800,1730132831,RO 1730132832,1730132991,HK 1730132992,1730134015,IN 1730134016,1730135039,JP 1730135040,1730136063,TW 1730136064,1730137087,CN 1730137088,1730138111,ID 1730138112,1730139135,BD 1730139136,1730140159,IN 1730140160,1730141183,JP 1730141184,1730142207,HK 1730142208,1730143231,ID 1730143232,1730144255,SG 1730144256,1730145279,ID 1730145280,1730146303,CN 1730146304,1730147327,HK 1730147328,1730148351,JP 1730148352,1730149375,ID 1730149376,1730150399,JP 1730150400,1730360319,CN 1730360320,1730361343,IN 1730361344,1730362367,SG 1730362368,1730363391,JP 1730363392,1730364415,VN 1730364416,1730365439,IN 1730365440,1730367487,HK 1730367488,1730368511,AU 1730368512,1730369535,HK 1730369536,1730370047,NZ 1730370048,1730370303,IN 1730370304,1730370559,JP 1730370560,1730371583,AU 1730371584,1730372607,TH 1730372608,1730373631,IN 1730373632,1730374655,CN 1730374656,1730375679,BD 1730375680,1730376191,AU 1730376192,1730376703,VU 1730376704,1730377727,CN 1730377728,1730378239,IN 1730378240,1730378495,HK 1730378496,1730378751,IN 1730378752,1730379775,HK 1730379776,1730380799,AU 1730380800,1730381823,IN 1730381824,1730382847,MY 1730382848,1730383359,ID 1730383360,1730383615,IN 1730383616,1730383871,MY 1730383872,1730385919,HK 1730385920,1730386943,AU 1730386944,1730387967,BD 1730387968,1730389503,IN 1730389504,1730390015,AF 1730390016,1730391039,BD 1730391040,1730392063,HK 1730392064,1730393087,AU 1730393088,1730394111,SG 1730394112,1730395135,HK 1730395136,1730396159,JP 1730396160,1730398207,IN 1730398208,1730399231,CN 1730399232,1730400255,TW 1730400256,1730402303,PK 1730402304,1730402559,NZ 1730402560,1730402815,IN 1730402816,1730403071,ID 1730403072,1730403327,AU 1730403328,1730404351,CN 1730404352,1730406399,AU 1730406400,1730407423,IN 1730407424,1730408447,ID 1730408448,1730410495,IN 1730410496,1730411519,SG 1730411520,1730412543,HK 1730412544,1730414591,AU 1730414592,1730415615,ID 1730415616,1730416127,AU 1730416128,1730416639,ID 1730416640,1730417663,PH 1730417664,1730418687,CN 1730418688,1730419711,BD 1730419712,1730420735,CN 1730420736,1730421759,ID 1730421760,1730422783,CN 1730422784,1730423807,ID 1730423808,1730425855,IN 1730425856,1730426879,HK 1730426880,1730429951,CN 1730429952,1730430207,ID 1730430208,1730430463,AU 1730430464,1730430719,HK 1730430720,1730430975,IN 1730430976,1730431999,CN 1730432000,1730435071,IN 1730435072,1730436095,HK 1730436096,1730437119,SG 1730437120,1730438143,CN 1730438144,1730439167,BD 1730439168,1730440191,IN 1730440192,1730442239,HK 1730442240,1730443263,TW 1730443264,1730445311,IN 1730445312,1730445567,NZ 1730445568,1730446335,AU 1730446336,1730448383,CN 1730448384,1730449407,JP 1730449408,1730450431,VU 1730450432,1730450687,AU 1730450688,1730450943,IN 1730450944,1730451455,PH 1730451456,1730452479,AU 1730452480,1730453503,ID 1730453504,1730476031,CN 1730476032,1730476543,AU 1730476544,1730476799,NZ 1730476800,1730477055,IN 1730477056,1730478079,AU 1730478080,1730479103,CN 1730480128,1730480639,AU 1730480640,1730481151,JP 1730481152,1730483199,CN 1730483200,1730483711,IN 1730483712,1730484223,AU 1730484224,1730485247,CN 1730485248,1730487295,VN 1730487296,1730488319,TW 1730488320,1730489343,HK 1730489344,1730490367,CN 1730490368,1730491391,PH 1730491392,1730493439,CN 1730493440,1730494463,HK 1730494464,1730495487,JP 1730495488,1730496511,AU 1730496512,1730497535,CN 1730497536,1730499583,IN 1730499584,1730500607,HK 1730500608,1730501631,IN 1730501632,1730502655,JP 1730502656,1730503167,MY 1730503168,1730503423,ID 1730503424,1730503679,AU 1730503680,1730505727,CN 1730505728,1730508799,JP 1730508800,1730509823,AU 1730509824,1730510847,CN 1730510848,1730511871,AU 1730511872,1730512895,JP 1730512896,1730521087,CN 1730521088,1730522111,ID 1730522112,1730524159,CN 1730524160,1730525183,IN 1730528256,1730529279,SG 1730529280,1730529791,IN 1730529792,1730530303,AU 1730530304,1730531327,NZ 1730531328,1730535423,CN 1730535424,1730536447,ID 1730536448,1730536703,AU 1730536704,1730537471,ID 1730537472,1730538495,HK 1730538496,1730540543,JP 1730540544,1730541567,ID 1730541568,1730544639,CN 1730544640,1730545919,IN 1730545920,1730546687,AU 1730546688,1730547711,IN 1730547712,1730548735,BD 1730548736,1730549759,HK 1730549760,1730550783,KR 1730550784,1730551807,HK 1730551808,1730552831,CN 1730552832,1730553855,IN 1730553856,1730555903,CN 1730555904,1730556415,IN 1730557952,1730558975,CN 1730558976,1730559999,MY 1730560000,1730561023,HK 1730561024,1730562047,IN 1730562048,1730563071,SG 1730563072,1730564095,CN 1730564096,1730565119,HK 1730565120,1730566143,CN 1730566144,1730566655,IN 1730566656,1730567167,HK 1730567168,1730569215,CN 1730569216,1730570239,ID 1730570240,1730571263,HK 1730572288,1730573311,KH 1730573312,1730574335,CN 1730574336,1730575359,AU 1730575360,1730577407,IN 1730577408,1730578431,CN 1730578432,1730579455,VN 1730579456,1730580479,CN 1730580480,1730580735,HK 1730580736,1730580991,AU 1730580992,1730581503,TW 1730581504,1730582015,AU 1730582016,1730582271,IN 1730582272,1730582527,PH 1730582528,1730585599,HK 1730585600,1730586623,NZ 1730586624,1730587647,HK 1730587648,1730588671,PH 1730588672,1730589695,IN 1730589696,1730590719,JP 1730590720,1730591743,SG 1730591744,1730591999,PH 1730592000,1730592767,IN 1730592768,1730593791,MY 1730593792,1730594815,NP 1730594816,1730596863,IN 1730597888,1730598911,PH 1730599424,1730599935,VU 1730599936,1730604031,CN 1730604032,1730605055,NP 1730605056,1730607103,IN 1730607104,1730608127,JP 1730608128,1730609151,CN 1730609152,1730610687,IN 1730610688,1730610943,MY 1730610944,1730611199,SG 1730611200,1730612223,IN 1730612224,1730613247,ID 1730613248,1730614271,CN 1730614272,1730615295,NZ 1730615296,1730616319,HK 1730616320,1730617343,IN 1730617344,1730618367,TW 1730618368,1730619391,KR 1730619392,1730619903,HK 1730619904,1730620415,SG 1730620416,1730621439,NZ 1730621440,1730622719,ID 1730622720,1730622975,AU 1730622976,1730623231,IN 1730623232,1730623487,AU 1730623488,1730624511,HK 1730624512,1730625535,AU 1730625536,1730626559,CN 1730626560,1730629631,HK 1730629632,1730630655,PK 1730630656,1730631679,AU 1730631680,1730632703,CN 1730632704,1730634751,VN 1730634752,1730637823,CN 1730637824,1730638079,AU 1730638080,1730638335,JP 1730638336,1730638847,NZ 1730638848,1730639871,IN 1730639872,1730640383,AU 1730640384,1730640895,MY 1730640896,1730641919,JP 1730641920,1730643967,IN 1730643968,1730644735,AU 1730644736,1730644991,IN 1730644992,1730646015,MY 1730646016,1730647039,CN 1730647040,1730649087,HK 1730649088,1730650111,IN 1730650112,1730658303,CN 1730658304,1730660351,JP 1730660352,1730669567,CN 1730669568,1730670079,IN 1730670080,1730670591,AU 1730670592,1730672639,IN 1730672640,1730673407,AU 1730673408,1730673663,IN 1730673664,1730674687,FM 1730674688,1730675711,AU 1730675712,1730677759,HK 1730677760,1730686975,CN 1730686976,1730687999,IN 1730688000,1730688511,AU 1730688512,1730689023,ID 1730689024,1730692095,IN 1730692096,1730692607,ID 1730692608,1730693119,AU 1730693120,1730694143,IN 1730694144,1730695167,BD 1730695168,1730695423,IN 1730695424,1730695679,NZ 1730695680,1730696191,BD 1730696192,1730697215,HK 1730697216,1730698239,CN 1730698240,1730699263,ID 1730699264,1730700287,JP 1730700288,1730701311,CN 1730701312,1730702335,JP 1730702336,1730702591,ID 1730702592,1730702847,AU 1730702848,1730703359,HK 1730703360,1730704383,CN 1730704384,1730705407,TH 1730705408,1730706431,ID 1730706432,1730708479,JP 1730708480,1730713599,TH 1730713600,1730714623,HK 1730714624,1730715647,JP 1730715648,1730716671,HK 1730716672,1730717183,PH 1730717696,1730718719,IN 1730718720,1730720767,HK 1730720768,1730723839,TH 1730723840,1730724863,CN 1730724864,1730727935,IN 1730727936,1730728959,HK 1730728960,1730729983,CN 1730729984,1730731007,JP 1730731008,1730732031,CN 1730732032,1730732287,AU 1730732288,1730732543,HK 1730732544,1730733055,BD 1730733056,1730741247,CN 1730741248,1730742271,HK 1730742272,1730742783,AF 1730742784,1730743295,IN 1730743296,1730744319,SG 1730744320,1730745343,CN 1730745344,1730752511,IN 1730752512,1730753535,HK 1730753536,1730754559,CN 1730754560,1730755071,IN 1730755072,1730755583,TH 1730755584,1730756351,JP 1730756352,1730756607,CN 1730756608,1730757631,HK 1730757632,1730758655,SG 1730758656,1730759679,JP 1730759680,1730760703,SG 1730760704,1730761727,HK 1730761728,1730762751,TH 1730762752,1730766847,IN 1730766848,1730767871,HK 1730767872,1730768127,AU 1730768128,1730768639,ID 1730768640,1730768895,BD 1730768896,1730769919,JP 1730769920,1730770943,CN 1730770944,1730771967,ID 1730771968,1730772991,HK 1730772992,1730774015,SG 1730774016,1730775039,HK 1730775040,1730776063,JP 1730776064,1730777087,CN 1730777088,1730778111,IN 1730778112,1730780159,CN 1730780160,1730781183,AU 1730781184,1730783231,CN 1730783232,1730783487,IN 1730783488,1730783743,ID 1730783744,1730783999,IN 1730784000,1730784255,ID 1730784256,1730785279,HK 1730785280,1730785535,NL 1730785536,1730786303,AU 1730786304,1730788351,HK 1730788352,1730790399,ID 1730790400,1730791423,IN 1730791424,1730794495,ID 1730794496,1730795007,BD 1730795008,1730795519,IN 1730795520,1730796543,AU 1730796544,1730800639,CN 1730800640,1730801663,IN 1730801664,1730802687,JP 1730802688,1730803199,BD 1730803200,1730803711,ID 1730803712,1730804735,HK 1730804736,1730805759,JP 1730805760,1730806783,AF 1730806784,1730807807,JP 1730807808,1730808831,CN 1730808832,1730809855,HK 1730809856,1730810623,IN 1730810624,1730811903,AU 1730811904,1730814975,CN 1730814976,1730815999,HK 1730816000,1730817023,ID 1730817024,1730818047,JP 1730818048,1730818815,AU 1730818816,1730819071,IN 1730819072,1730820095,JP 1730820096,1730821119,VN 1730821120,1730822143,HK 1730822144,1730824191,CN 1730824192,1730825215,IN 1730825216,1730826239,CN 1730826240,1730827263,JP 1730827264,1730829311,IN 1730829312,1730831359,PH 1730831360,1730832383,HK 1730832384,1730833407,CN 1730833408,1730834431,AU 1730834432,1730834943,TW 1730834944,1730835455,IN 1730835456,1730837503,ID 1730837504,1730838527,IN 1730838528,1730839551,TH 1730839552,1730840575,AU 1730840576,1730841599,SG 1730841600,1730842623,AU 1730842624,1730844671,TW 1730844672,1730845695,BD 1730845696,1730848767,IN 1730848768,1730849791,JP 1730849792,1730850815,IN 1730850816,1730851839,HK 1730851840,1730852863,CN 1730852864,1730853887,KR 1730853888,1730854143,IN 1730854144,1730854399,AU 1730854400,1730854655,NZ 1730854656,1730854911,HK 1730854912,1730856959,IN 1730856960,1730857983,JP 1730857984,1730858239,AU 1730858240,1730858495,ID 1730858496,1730859007,IN 1730859008,1730860031,BN 1730860032,1730861055,HK 1730861056,1730862079,MM 1730862080,1730863103,JP 1730863104,1730864127,AU 1730864128,1730865151,TW 1730865152,1730866175,CN 1730866176,1730867199,AU 1730867200,1730868223,JP 1730868224,1730869247,KR 1730869248,1730870271,IN 1730870272,1730871807,ID 1730871808,1730873343,IN 1730873344,1730875391,HK 1730875392,1730876415,CN 1730876416,1730877439,AU 1730877440,1730878463,CN 1730878464,1730879487,HK 1730879488,1730881023,IN 1730881024,1730881535,AU 1730881536,1730882559,IN 1730882560,1730883583,ID 1730883584,1730884607,TW 1730884608,1730885631,BD 1730885632,1730886655,AU 1730886656,1730887679,HK 1730887680,1730887935,KR 1730887936,1730888191,IN 1730888192,1730888703,ID 1730888704,1730889727,HK 1730889728,1730890751,AU 1730890752,1730891775,LA 1730891776,1730892799,IN 1730892800,1730893823,CN 1730893824,1730895103,AU 1730895104,1730895359,BD 1730895360,1730895871,NL 1730895872,1730898943,CN 1730898944,1730899967,MO 1730899968,1730900991,IN 1730900992,1730901503,AU 1730901504,1730901759,DE 1730901760,1730902015,AU 1730902016,1730903039,KR 1730903040,1730904063,CN 1730904064,1730905087,ID 1730905088,1730906111,CN 1730906112,1730906367,TH 1730906368,1730907135,AU 1730907136,1730908159,JP 1730908160,1730909183,PG 1730909184,1730910207,BD 1730910208,1730911231,IN 1730911232,1730912255,NC 1730912256,1730913279,IN 1730913280,1730914303,CN 1730914304,1730915327,NP 1730915328,1730916351,HK 1730916352,1730918399,AU 1730918400,1730919423,CN 1730919424,1730920447,SG 1730920448,1730922495,CN 1730922496,1730923519,IN 1730923520,1730924031,NF 1730924032,1730924543,NZ 1730924544,1730925567,CN 1730925568,1730926591,NZ 1730926592,1730927615,HK 1730927616,1730929663,CN 1730929664,1730929919,IN 1730929920,1730930175,TH 1730930176,1730930431,BD 1730930432,1730930687,IN 1730930688,1730931711,CN 1730931712,1730932735,HK 1730932736,1730933759,CN 1730933760,1730934783,HK 1730934784,1730936063,IN 1730936064,1730936831,AU 1730936832,1730937855,IN 1730937856,1730938879,SG 1730938880,1730939903,JP 1730939904,1730940927,IN 1730940928,1730941439,JP 1730941440,1730941951,IN 1730941952,1730942975,HK 1730942976,1730943487,AU 1730943488,1730943999,ID 1730944000,1730945023,HK 1730945024,1730946047,AU 1730946048,1730947071,ID 1730947072,1730948095,AU 1730948096,1730948351,TH 1730948352,1730948607,NZ 1730948608,1730949119,AU 1730949120,1730951167,IN 1730951168,1730952191,CN 1730952192,1730954239,HK 1730954240,1730955263,SG 1730955264,1730957311,BD 1730957312,1730958335,CN 1730958336,1730959359,JP 1730959360,1730960383,CN 1730960384,1730961407,AU 1730961408,1730962431,IN 1730962432,1730962687,ID 1730962688,1730962943,AU 1730962944,1730963455,JP 1730963456,1730964479,IN 1730964480,1730964735,MY 1730964736,1730964991,HK 1730964992,1730965503,NZ 1730965504,1730966527,SG 1730966528,1730967551,IN 1730967552,1730969599,CN 1730969600,1730970623,JP 1730970624,1730971647,CN 1730971648,1730973695,IN 1730973696,1730974719,CN 1730974720,1730974975,AU 1730974976,1730975231,ID 1730975232,1730975743,BD 1730975744,1730976767,CN 1730976768,1730977791,IN 1730977792,1730978815,HK 1730978816,1730979839,NZ 1730979840,1730980863,CN 1730980864,1730981887,IN 1730981888,1730990079,CN 1730990080,1730992127,JP 1730992128,1730993151,TH 1730993152,1730993407,SG 1730993408,1730993663,IN 1730993664,1730993919,NZ 1730993920,1730994175,PK 1730994176,1730995199,CN 1730995200,1730996223,AU 1730996224,1730997247,PH 1730997248,1731018751,CN 1731018752,1731020799,HK 1731020800,1731060735,CN 1731060736,1731063807,VN 1731063808,1731064831,NZ 1731064832,1731065855,JP 1731065856,1731066879,CN 1731066880,1731067391,PH 1731067392,1731067903,AU 1731067904,1731068927,CN 1731068928,1731070975,JP 1731070976,1731103743,CN 1731103744,1731103871,TH 1731103872,1731103999,FR 1731104000,1731104127,KR 1731104128,1731104255,JP 1731104256,1731104511,CN 1731104512,1731104639,MY 1731104640,1731104767,SG 1731104768,1731105791,TW 1731105792,1731106815,BD 1731106816,1731115007,CN 1731115008,1731116031,HK 1731116032,1731117055,TW 1731117056,1731118847,IN 1731118848,1731119103,AU 1731119104,1731120127,IN 1731120128,1731121151,JP 1731121152,1731122175,AF 1731122176,1731123199,AU 1731123200,1731124223,PF 1731124224,1731125247,AU 1731125248,1731126271,HK 1731126272,1731127039,AU 1731127040,1731127295,NZ 1731127296,1731130367,IN 1731130368,1731132415,CN 1731132416,1731133439,SG 1731133440,1731133951,AU 1731133952,1731134207,JP 1731134208,1731134463,NZ 1731134464,1731135487,CN 1731135488,1731136511,JP 1731136512,1731138559,IN 1731138560,1731139583,CN 1731139584,1731140607,HK 1731140608,1731141631,SG 1731141632,1731142655,IN 1731142656,1731144703,CN 1731144704,1731145727,IN 1731145728,1731146751,CN 1731146752,1731148799,IN 1731148800,1731149055,ID 1731149056,1731149311,HK 1731149312,1731149823,AU 1731149824,1731152895,IN 1731152896,1731153407,SG 1731153408,1731153919,IN 1731153920,1731154943,CN 1731154944,1731155967,TH 1731155968,1731156479,HK 1731156480,1731158015,IN 1731158016,1731159039,CN 1731159040,1731160063,JP 1731160064,1731161087,IN 1731161088,1731162111,CN 1731162112,1731163135,HK 1731163136,1731165183,CN 1731165184,1731167231,IN 1731167232,1731168255,ID 1731168256,1731170559,CN 1731170560,1731170687,HK 1731170688,1731170815,MY 1731170816,1731171071,AU 1731171072,1731171199,TH 1731171200,1731171327,MY 1731171328,1731172863,IN 1731172864,1731173119,MY 1731173120,1731173375,SG 1731173376,1731178495,IN 1731178496,1731179519,HK 1731179520,1731180543,JP 1731180544,1731181055,MM 1731181056,1731181311,IN 1731181312,1731181567,AU 1731181568,1731182591,KH 1731182592,1731183615,VN 1731183616,1731184639,IN 1731184640,1731185663,CN 1731185664,1731186687,US 1731186688,1731187711,SG 1731187712,1731188735,CN 1731188736,1731189759,IN 1731189760,1731190783,CN 1731190784,1731191807,SG 1731191808,1731192831,ID 1731192832,1731193087,SG 1731193088,1731193855,AU 1731193856,1731194879,IN 1731194880,1731196159,SG 1731196160,1731196927,AU 1731196928,1731197951,CN 1731197952,1731199999,MY 1731200000,1731201023,HK 1731201024,1731202047,NZ 1731202048,1731202303,TH 1731202304,1731202559,ID 1731202560,1731203071,AU 1731203072,1731204095,BD 1731204096,1731205119,CN 1731205120,1731205631,PK 1731205632,1731205887,HK 1731205888,1731206143,ID 1731206144,1731206655,HK 1731206656,1731206911,PH 1731206912,1731207167,JP 1731207168,1731208191,IN 1731208192,1731210239,JP 1731210240,1731211263,IN 1731211264,1731211775,HK 1731211776,1731212287,IN 1731212288,1731213311,CN 1731213312,1731218431,IN 1731218432,1731221503,VN 1731221504,1731221759,NP 1731221760,1731222015,AU 1731222016,1731222527,IN 1731222528,1731223551,CN 1731223552,1731228671,IN 1731228672,1731228927,MN 1731228928,1731229183,AU 1731229184,1731229439,NZ 1731229440,1731229695,BD 1731229696,1731230719,JP 1731230720,1731231743,IN 1731231744,1731232767,ID 1731232768,1731233791,HK 1731233792,1731234815,JP 1731234816,1731235839,HK 1731235840,1731239935,CN 1731239936,1731241983,JP 1731241984,1731243007,HK 1731243008,1731244031,SG 1731244032,1731247103,IN 1731247104,1731249151,VN 1731249152,1731250175,IN 1731250176,1731250687,AU 1731250688,1731251199,CN 1731251200,1731252223,TH 1731252224,1731253247,AU 1731253248,1731253759,IN 1731253760,1731254271,AU 1731254272,1731262463,CN 1731262464,1731263487,JP 1731263488,1731264511,IN 1731264512,1731265535,JP 1731265536,1731266559,AU 1731266560,1731267583,HK 1731267584,1731268607,CN 1731268608,1731269631,AU 1731269632,1731270655,CN 1731270656,1731271679,MY 1731271680,1731272703,ID 1731272704,1731273727,SG 1731273728,1731273983,PH 1731273984,1731274239,ID 1731274240,1731274751,AU 1731274752,1731275775,KH 1731275776,1731276799,KR 1731276800,1731279871,IN 1731279872,1731280895,HK 1731280896,1731281919,JP 1731281920,1731282175,IN 1731282176,1731282431,PK 1731282432,1731282943,PH 1731282944,1731284991,CN 1731284992,1731286015,AU 1731286016,1731288063,JP 1731288064,1731290111,CN 1731290112,1731291135,PH 1731291136,1731291647,ID 1731291648,1731292159,AU 1731292160,1731293183,CN 1731293184,1731294207,SG 1731294208,1731296767,IN 1731296768,1731297023,HK 1731297024,1731297279,AU 1731297280,1731298303,CN 1731298304,1731299327,HK 1731299328,1731300351,PK 1731300352,1731301375,JP 1731301376,1731302143,AU 1731302144,1731302399,IN 1731302400,1731302911,TH 1731302912,1731303167,NZ 1731303168,1731303423,AU 1731303424,1731304447,IN 1731304448,1731306495,HK 1731306496,1731307519,SG 1731307520,1731308543,BD 1731308544,1731308799,NZ 1731308800,1731309567,NR 1731309568,1731311615,CN 1731311616,1731314687,ID 1731314688,1731315711,CN 1731315712,1731316735,BD 1731316736,1731316991,IN 1731316992,1731317247,NZ 1731317248,1731317503,IN 1731317504,1731317759,PG 1731317760,1731319807,HK 1731319808,1731320831,JP 1731320832,1731321855,ID 1731321856,1731322879,IN 1731322880,1731323903,ID 1731323904,1731327487,IN 1731327488,1731327999,HK 1731328000,1731329023,CN 1731329024,1731330047,IN 1731330048,1731331071,SG 1731331072,1731332095,IN 1731332096,1731333119,HK 1731333120,1731333631,AU 1731333632,1731334143,SG 1731334144,1731335167,HK 1731335168,1731336191,JP 1731336192,1731337215,ID 1731337216,1731338239,JP 1731338240,1731338751,IN 1731338752,1731339263,AU 1731339264,1731340287,CN 1731340288,1731341311,KR 1731341312,1731349503,CN 1731349504,1731351551,IN 1731351552,1731352575,JP 1731352576,1731353599,HK 1731353600,1731354623,SG 1731354624,1731355647,HK 1731355648,1731356671,AU 1731356672,1731357695,MV 1731357696,1731362815,CN 1731362816,1731363839,ID 1731363840,1731366911,CN 1731366912,1731369983,IN 1731369984,1731371007,PK 1731371008,1731372031,IN 1731372032,1731373055,MY 1731373056,1731374079,BD 1731374080,1731382271,CN 1731382272,1731383295,MN 1731383296,1731385343,IN 1731385344,1731386111,ID 1731386112,1731386367,IN 1731386368,1731394559,CN 1731394560,1731395583,HK 1731395584,1731396095,IN 1731396096,1731396607,BD 1731396608,1731397631,JP 1731397632,1731398143,IN 1731398144,1731398655,TH 1731398656,1731399679,HK 1731399680,1731400703,NP 1731400704,1731404799,IN 1731404800,1731405823,JP 1731405824,1731406079,AU 1731406080,1731406335,MY 1731406336,1731406591,AU 1731406592,1731406847,MY 1731406848,1731407871,ID 1731407872,1731408895,MY 1731408896,1731410943,IN 1731410944,1731411199,MN 1731411200,1731411455,AU 1731411456,1731411711,SG 1731411712,1731411967,IN 1731411968,1731412991,TH 1731412992,1731414015,AU 1731414016,1731416063,IN 1731416064,1731418111,JP 1731418112,1731421183,IN 1731421184,1731421695,NZ 1731421696,1731421951,IN 1731421952,1731422207,ID 1731422208,1731423231,BD 1731423232,1731424255,HK 1731424256,1731425279,AU 1731425280,1731426303,IN 1731426304,1731427327,BD 1731427328,1731428351,KH 1731428352,1731428607,IN 1731428864,1731429119,AU 1731429120,1731429375,ID 1731429376,1731431423,IN 1731431424,1731431935,TR 1731431936,1731432191,TW 1731432192,1731432447,TR 1731432448,1731433471,HK 1731433472,1731435519,IN 1731435520,1731436031,NZ 1731436032,1731436287,ID 1731436288,1731436543,AU 1731436544,1731437567,SG 1731437568,1731438591,ID 1731438592,1731441663,KR 1731441664,1731442687,JP 1731442688,1731447807,KR 1731447808,1731448831,JP 1731448832,1731449855,IN 1731449856,1731450879,JP 1731450880,1731451903,IN 1731451904,1731452159,PK 1731452160,1731452415,AU 1731452416,1731452927,IN 1731452928,1731453951,TH 1731453952,1731454975,BD 1731454976,1731457023,IN 1731457024,1731461119,KR 1731461120,1731461375,IN 1731461376,1731461631,AU 1731461632,1731462143,ID 1731462144,1731462655,AU 1731462656,1731462911,IN 1731462912,1731463167,ID 1731463168,1731464191,IN 1731464192,1731465215,MM 1731465216,1731466239,ID 1731466240,1731467263,JP 1731467264,1731469311,NP 1731469312,1731470335,SG 1731470336,1731471359,IN 1731471360,1731472383,CN 1731472384,1731473407,ID 1731473408,1731475455,IN 1731475456,1731476479,MY 1731476480,1731476991,ID 1731476992,1731477247,PH 1731477248,1731477503,AU 1731477504,1731479551,ID 1731479552,1731483647,CN 1731483648,1731484671,FJ 1731484672,1731485695,VN 1731485696,1731488767,CN 1731488768,1731489791,JP 1731489792,1731490815,HK 1731490816,1731491839,AU 1731491840,1731492863,ID 1731492864,1731493887,IN 1731493888,1731495167,JP 1731495168,1731495423,SG 1731495424,1731495935,BD 1731495936,1731496959,IN 1731496960,1731497983,BD 1731497984,1731499007,ID 1731499008,1731500031,JP 1731500032,1731501055,HK 1731501056,1731502079,NZ 1731502080,1731504127,CN 1731504128,1731504639,AU 1731504640,1731505151,ID 1731505152,1731507199,CN 1731507200,1731508223,IN 1731508224,1731509247,CN 1731509248,1731510271,HK 1731510272,1731510527,MY 1731510528,1731510783,AU 1731510784,1731511295,IN 1731511296,1731512319,CN 1731512320,1731513343,KR 1731513344,1731514367,NZ 1731514368,1731515391,IN 1731515392,1731515647,AU 1731515648,1731515903,ID 1731515904,1731517439,HK 1731517440,1731519487,IN 1731519488,1731520511,MM 1731520512,1731523583,JP 1731523584,1731526655,IN 1731526656,1731527679,ID 1731527680,1731528703,CN 1731528704,1731529727,HK 1731529728,1731530751,JP 1731530752,1731531775,AF 1731531776,1731532031,ID 1731532032,1731532287,IN 1731532288,1731532799,NZ 1731532800,1731533823,AF 1731533824,1731534847,JP 1731534848,1731535871,MY 1731535872,1731536895,BD 1731536896,1731537919,IN 1731537920,1731538943,PK 1731538944,1731539967,HK 1731539968,1731540991,IN 1731540992,1731542015,PH 1731542016,1731543039,IN 1731543040,1731545087,CN 1731545088,1731546111,IN 1731546112,1731547135,ID 1731547136,1731548159,IN 1731548160,1731548671,BD 1731548672,1731549183,IN 1731549184,1731550207,VN 1731550208,1731551231,CN 1731551232,1731552255,JP 1731552256,1731553279,CN 1731553280,1731555839,IN 1731555840,1731556095,KR 1731556096,1731557375,AU 1731557376,1731558399,JP 1731558400,1731564543,CN 1731564544,1731565567,NZ 1731565568,1731565600,HK 1731565601,1731565605,JP 1731565606,1731565611,HK 1731565612,1731565613,JP 1731565614,1731566079,HK 1731566080,1731566591,PH 1731566592,1731567615,IN 1731567616,1731568639,CN 1731568640,1731569663,IN 1731569664,1731570687,VN 1731570688,1731571711,SG 1731571712,1731572735,PG 1731572736,1731573759,CN 1731573760,1731574271,ID 1731574272,1731574527,MY 1731574528,1731574783,AU 1731574784,1731576831,ID 1731576832,1731577087,AU 1731577088,1731577599,SG 1731577600,1731577855,HK 1731577856,1731578879,AU 1731578880,1731580927,CN 1731581952,1731582975,CN 1731582976,1731583999,PH 1731584000,1731585023,HK 1731585024,1731586047,VN 1731586048,1731587071,IN 1731587072,1731588095,CN 1731588096,1731590143,IN 1731590144,1731591167,CN 1731591168,1731592191,VN 1731592192,1731593215,ID 1731593216,1731594239,HK 1731594240,1731595263,CN 1731595264,1731601407,IN 1731601408,1731603455,BD 1731603456,1731604479,HK 1731604480,1731605503,CN 1731605504,1731606527,MY 1731606528,1731607551,JP 1731607552,1731608575,CN 1731608576,1731609599,IN 1731609600,1731610623,AU 1731610624,1731611647,KR 1731611648,1731614719,PK 1731614720,1731615743,JP 1731615744,1731616767,ID 1731616768,1731620351,IN 1731620352,1731620607,MY 1731620608,1731620863,AU 1731620864,1731621887,KH 1731621888,1731625983,HK 1731625984,1731626495,AU 1731626496,1731626751,ID 1731626752,1731628543,IN 1731628544,1731628799,PH 1731628800,1731630079,IN 1731630080,1731631103,BD 1731631104,1731632127,SG 1731632128,1731633151,JP 1731633152,1731635199,CN 1731635200,1731636223,IN 1731636224,1731636479,ID 1731636480,1731637247,IN 1731637248,1731638271,HK 1731638272,1731639295,IN 1731639296,1731640319,JP 1731640320,1731641343,IN 1731641344,1731642367,HK 1731642368,1731644415,IN 1731644416,1731646463,JP 1731646464,1731647487,CN 1731647488,1731648511,ID 1731648512,1731649535,IN 1731649536,1731649791,NZ 1731649792,1731650559,ID 1731650560,1731651583,CN 1731651584,1731652607,AU 1731652608,1731653119,IN 1731653120,1731653631,AU 1731653632,1731654655,CN 1731654656,1731655679,IN 1731655680,1731657727,VN 1731657728,1731658751,TH 1731658752,1731659775,JP 1731659776,1731660031,HK 1731660032,1731660287,SG 1731660288,1731660543,MY 1731660544,1731660799,BN 1731660800,1731661823,JP 1731661824,1731662847,AU 1731662848,1731665919,HK 1731665920,1731666175,AU 1731666176,1731666431,ID 1731666432,1731666687,AU 1731666688,1731666943,KR 1731666944,1731667967,ID 1731667968,1731668991,IN 1731668992,1731670015,AU 1731670016,1731671039,TL 1731671040,1731671551,AU 1731671552,1731672063,TH 1731672064,1731672575,ID 1731672576,1731672831,AU 1731672832,1731673087,TH 1731673088,1731675135,IN 1731675136,1731676159,PK 1731676160,1731677183,IN 1731677184,1731678207,AU 1731678208,1731679231,CN 1731679232,1731681279,IN 1731681280,1731682303,AU 1731682304,1731686399,IN 1731686400,1731686911,HK 1731686912,1731688447,AU 1731688448,1731689471,CN 1731689472,1731690495,SG 1731690496,1731691519,HK 1731691520,1731691775,AU 1731691776,1731692031,PK 1731692032,1731692543,AU 1731692544,1731693055,PK 1731693056,1731693311,SG 1731693312,1731693567,ID 1731693568,1731694591,TH 1731694592,1731695615,BD 1731695616,1731696639,AU 1731696640,1731697663,CN 1731697664,1731698687,JP 1731698688,1731698943,ID 1731698944,1731699199,PH 1731699200,1731699711,AU 1731699712,1731701759,IN 1731701760,1731702783,CN 1731702784,1731703295,AU 1731703296,1731703551,AF 1731703552,1731703807,NZ 1731703808,1731705855,IN 1731705856,1731706879,KR 1731706880,1731708927,JP 1731708928,1731709951,HK 1731709952,1731711999,CN 1731712000,1731712255,AU 1731712256,1731713023,IN 1731713024,1731713279,ID 1731713280,1731713535,AU 1731713536,1731713791,HK 1731713792,1731714047,AU 1731714048,1731715071,ID 1731715072,1731716095,AU 1731716096,1731717119,CN 1731717120,1731718143,AU 1731718144,1731720191,CN 1731720192,1731723263,IN 1731723264,1731724287,AU 1731724288,1731725311,BD 1731725312,1731726335,CN 1731726336,1731727359,AU 1731727360,1731729407,CN 1731729408,1731730431,HK 1731730432,1731731199,IN 1731731200,1731731455,AU 1731731456,1731732479,CN 1731732480,1731734527,IN 1731734528,1731735551,HK 1731735552,1731736575,JP 1731736576,1731737599,HK 1731737600,1731739647,CN 1731739648,1731741183,IN 1731741184,1731741439,ID 1731741440,1731741695,AU 1731741696,1731743743,CN 1731743744,1731744767,JP 1731744768,1731747839,IN 1731747840,1731748863,JP 1731748864,1731750911,CN 1731750912,1731751935,JP 1731751936,1731753983,HK 1731753984,1731755007,IN 1731755008,1731756031,SG 1731756032,1731757055,PH 1731757056,1731758079,JP 1731758080,1731759103,HK 1731759104,1731760127,CN 1731760128,1731761663,ID 1731761664,1731762175,AU 1731762176,1731763199,CN 1731763200,1731767295,VN 1731767296,1731767807,IN 1731767808,1731768063,KH 1731768064,1731770367,IN 1731770368,1731771391,CN 1731771392,1731772415,ID 1731772416,1731773439,HK 1731773440,1731774463,IN 1731774464,1731775487,CN 1731775488,1731776511,ID 1731776512,1731777023,BD 1731777024,1731777535,IN 1731777536,1731778559,JP 1731778560,1731779071,HK 1731779072,1731779583,JP 1731779584,1731782655,IN 1731782656,1731783679,ID 1731783680,1731788799,IN 1731788800,1731789823,AU 1731789824,1731790847,JP 1731790848,1731791871,ID 1731791872,1731792895,CN 1731792896,1731793919,IN 1731793920,1731794943,BD 1731794944,1731795967,HK 1731795968,1731796991,JP 1731796992,1731798015,AU 1731798016,1731799039,ID 1731799040,1731800063,BD 1731800064,1731802111,JP 1731802112,1731804159,CN 1731804160,1731805183,KR 1731805184,1731806207,IN 1731806208,1731806463,AU 1731806464,1731807231,IN 1731807232,1731808255,SG 1731808256,1731809279,CN 1731809280,1731811583,IN 1731811584,1731811839,AU 1731811840,1731812095,HK 1731812096,1731812351,AU 1731812352,1731813375,MN 1731813376,1731815423,JP 1731815424,1731816447,VN 1731816448,1731817471,CN 1731817472,1731818495,VN 1731818496,1731820543,BD 1731820544,1731821567,IN 1731821568,1731822591,JP 1731822592,1731823615,IN 1731823616,1731824639,CN 1731824640,1731825663,IN 1731825664,1731826687,JP 1731826688,1731827199,AU 1731827200,1731827455,IN 1731827456,1731827711,BD 1731827712,1731828735,PK 1731828736,1731829759,SG 1731829760,1731830783,IN 1731830784,1731831039,SG 1731831040,1731831807,AU 1731831808,1731832831,PK 1731832832,1731836927,IN 1731836928,1731837951,MY 1731837952,1731838975,ID 1731838976,1731839999,CN 1731840000,1731841023,HK 1731841024,1731842047,NP 1731842048,1731843071,VN 1731843072,1731845119,IN 1731845120,1731846143,VN 1731846144,1731846655,HK 1731846656,1731846911,IN 1731846912,1731847167,PH 1731847168,1731848191,HK 1731848192,1731849215,MP 1731849216,1731858431,IN 1731858432,1731859455,MY 1731859456,1731860479,FJ 1731860480,1731861503,CN 1731861504,1731862527,IN 1731862528,1731862783,AU 1731862784,1731863039,ID 1731863040,1731863551,AU 1731863552,1731871743,IN 1731871744,1731872767,JP 1731872768,1731873791,BD 1731873792,1731877887,IN 1731877888,1731878911,BD 1731878912,1731879935,IN 1731879936,1731881983,ID 1731881984,1731882495,BD 1731882496,1731882751,SG 1731882752,1731883007,ID 1731883008,1731883263,SG 1731883264,1731883519,MY 1731883520,1731891199,IN 1731891200,1731891711,NP 1731891712,1731892223,ID 1731892224,1731893247,TH 1731893248,1731895295,IN 1731895296,1731896319,ID 1731896320,1731899391,IN 1731899392,1731900415,HK 1731900416,1731900671,IN 1731900672,1731900927,HK 1731900928,1731901439,CN 1731901440,1731903487,IN 1731903488,1731905535,AU 1731905536,1731908607,IN 1731908608,1731911679,AU 1731911680,1731912703,KH 1731912704,1731913727,NZ 1731913728,1731913983,AU 1731913984,1731928063,IN 1731928064,1731929087,JP 1731929088,1731930111,BD 1731930112,1731933183,HK 1731933184,1731934207,LA 1731934208,1731939327,IN 1731939328,1731940351,CN 1731940352,1731942655,IN 1731942656,1731942911,JP 1731942912,1731943423,HK 1731943424,1731944447,KR 1731944448,1731945471,IN 1731945472,1731946495,CN 1731946496,1731947519,IN 1731947520,1731948543,AU 1731948544,1731953663,CN 1731953664,1731954687,IN 1731954688,1731955711,JP 1731956736,1731957759,HK 1731957760,1731958783,CN 1731958784,1731959807,IN 1731959808,1731960831,KR 1731960832,1731961855,AU 1731961856,1731962879,CN 1731962880,1731963903,BD 1731963904,1731964927,KH 1731964928,1731965951,BD 1731965952,1731966463,IN 1731966464,1731966975,AU 1731966976,1731975167,IN 1731975168,1731976191,CN 1731976192,1731977215,TW 1731977216,1731979519,IN 1731979520,1731979775,BD 1731979776,1731980287,ID 1731980288,1731986431,IN 1731986432,1731987455,JP 1731987456,1731988479,SG 1731988480,1731989503,JP 1731989504,1731990527,VN 1731990528,1731990783,AU 1731990784,1731991039,IN 1731991040,1731991551,AU 1731991552,1731992575,MY 1731992576,1731993599,IN 1731993600,1731994623,CN 1731994624,1731995647,JP 1731995648,1731996671,IN 1731996672,1731997695,CN 1731997696,1731999743,IN 1731999744,1732002815,HK 1732002816,1732007935,IN 1732007936,1732009983,JP 1732009984,1732010239,AU 1732010240,1732010495,MN 1732010496,1732010751,AU 1732010752,1732011007,NZ 1732011008,1732012287,IN 1732012288,1732013055,AU 1732013056,1732014079,HK 1732014080,1732016127,IN 1732016128,1732018175,KR 1732018176,1732019199,IN 1732019200,1732019967,AU 1732019968,1732022271,IN 1732022272,1732024319,HK 1732024320,1732025343,AU 1732025344,1732026367,IN 1732026368,1732027391,BD 1732027392,1732028415,CN 1732028416,1732029439,PH 1732029440,1732030463,BD 1732030464,1732031487,IN 1732031488,1732032511,ID 1732032512,1732032767,PH 1732032768,1732033023,TH 1732033024,1732033535,IN 1732033536,1732034559,JP 1732034560,1732035583,NZ 1732035584,1732036607,IN 1732036608,1732037631,AU 1732037632,1732038655,JP 1732038656,1732040703,IN 1732040704,1732040959,AU 1732040960,1732041215,SG 1732041216,1732041727,IN 1732041728,1732042751,HK 1732042752,1732043775,JP 1732043776,1732044799,CN 1732044800,1732045823,HK 1732045824,1732046847,CN 1732046848,1732047871,AU 1732047872,1732048895,IN 1732048896,1732049919,HK 1732049920,1732050943,PH 1732050944,1732051967,HK 1732051968,1732052991,SG 1732052992,1732054015,MM 1732054016,1732055039,IN 1732055040,1732056063,ID 1732056064,1732057087,HK 1732057088,1732058111,KH 1732058112,1732059135,HK 1732059136,1732060159,IN 1732060160,1732061183,HK 1732061184,1732061439,AU 1732061440,1732061695,ID 1732061696,1732062207,AU 1732062208,1732064255,VN 1732064256,1732066303,IN 1732066304,1732067327,CN 1732067328,1732068607,IN 1732068608,1732068863,NZ 1732068864,1732069119,AU 1732069120,1732069375,ID 1732069376,1732074495,IN 1732074496,1732075519,KH 1732075520,1732076543,AU 1732076544,1732077567,IN 1732077568,1732078591,CN 1732078592,1732080639,IN 1732080640,1732081663,ID 1732081664,1732082687,HK 1732082688,1732083711,MY 1732083712,1732084735,AU 1732084736,1732085759,IN 1732085760,1732086783,TW 1732086784,1732087807,CN 1732087808,1732088831,HK 1732088832,1732089599,IN 1732089600,1732089855,JP 1732089856,1732092927,CN 1732092928,1732093951,IN 1732093952,1732094975,HK 1732094976,1732097023,CN 1732097024,1732098047,IN 1732098048,1732100095,CN 1732100096,1732100607,SG 1732100608,1732107263,IN 1732107264,1732108287,HK 1732108288,1732109823,AU 1732109824,1732110335,IN 1732110336,1732111359,JP 1732111360,1732113407,HK 1732113408,1732114431,JP 1732114432,1732115455,ID 1732115456,1732116479,IN 1732116480,1732117503,PH 1732117504,1732118527,SG 1732118528,1732119551,VN 1732119552,1732122623,IN 1732122624,1732123647,CN 1732123648,1732124159,AU 1732124160,1732124671,PH 1732124672,1732126719,AU 1732126720,1732127743,IN 1732127744,1732128767,HK 1732128768,1732129023,SG 1732129024,1732129279,NZ 1732129280,1732129535,AU 1732129536,1732129791,HK 1732129792,1732130815,CN 1732130816,1732134911,IN 1732134912,1732140031,CN 1732140032,1732141055,IN 1732141056,1732151295,CN 1732151296,1732152319,IN 1732152320,1732153855,BD 1732153856,1732154367,IN 1732154368,1732155391,HK 1732155392,1732156415,PH 1732156416,1732166655,CN 1732166656,1732167167,ID 1732167168,1732167679,IN 1732167680,1732168191,AU 1732168192,1732168703,ID 1732168704,1732174847,CN 1732174848,1732175871,KR 1732175872,1732176895,PK 1732176896,1732177919,IN 1732177920,1732178943,SG 1732178944,1732179967,JP 1732179968,1732182015,IN 1732182016,1732184063,HK 1732184064,1732188671,IN 1732188672,1732188927,AU 1732188928,1732189183,WS 1732189184,1732190207,IN 1732190208,1732205567,CN 1732205568,1732206591,NZ 1732206592,1732207615,ID 1732207616,1732207871,AU 1732207872,1732208127,IN 1732208128,1732208383,PH 1732208384,1732208639,AU 1732208640,1732213759,VN 1732213760,1732215807,IN 1732215808,1732217855,HK 1732217856,1732219903,CN 1732219904,1732220927,IN 1732220928,1732221951,CN 1732221952,1732222975,BD 1732222976,1732230143,CN 1732230144,1732230399,LA 1732230400,1732230655,AU 1732230656,1732230911,KH 1732230912,1732231167,AU 1732231168,1732236287,CN 1732236288,1732237311,VN 1732237312,1732240383,JP 1732240384,1732241407,AU 1732241408,1732241663,IN 1732241664,1732241919,ID 1732241920,1732242431,BD 1732242432,1732243455,HK 1732243456,1732247551,CN 1740636160,1740644351,CN 1740644352,1740645375,IN 1740645376,1740647423,HK 1740647424,1740648447,MO 1740648448,1740651519,CN 1740651520,1740653567,IN 1740653568,1740654591,JP 1740654592,1740655615,IN 1740655616,1740656639,NP 1740656640,1740656895,NZ 1740656896,1740657151,AF 1740657152,1740657663,AU 1740657664,1740665855,CN 1740665856,1740666879,IN 1740666880,1740667903,JP 1740667904,1740668927,PH 1740668928,1740674047,CN 1740674048,1740675071,JP 1740675072,1740676095,AU 1740676096,1740677119,BD 1740677120,1740678143,HK 1740678144,1740679167,CN 1740679168,1740680447,IN 1740680448,1740680703,AU 1740680704,1740680959,MM 1740680960,1740681215,AU 1740681216,1740682239,HK 1740682240,1740683263,KH 1740683264,1740684287,PH 1740684288,1740685311,CN 1740685312,1740686591,AU 1740686592,1740686847,NZ 1740686848,1740687359,IN 1740687360,1740688383,HK 1740688384,1740689407,IN 1740689408,1740692479,CN 1740692480,1740693503,IN 1740693504,1740694527,HK 1740694528,1740696575,JP 1740696576,1740697599,VN 1740697600,1740698623,NZ 1740698624,1740700671,IN 1740700672,1740701695,CN 1740701696,1740702719,IN 1740702720,1740703743,MX 1740703744,1740704255,NZ 1740704256,1740704767,AU 1740704768,1740705791,JP 1740705792,1740706047,NZ 1740706048,1740706303,AU 1740706304,1740706559,PK 1740706560,1740706815,ID 1740706816,1740709887,IN 1740709888,1740710911,HK 1740710912,1740711423,IN 1740711424,1740711935,NZ 1740711936,1740713983,CN 1740713984,1740719103,IN 1740719104,1740720127,HK 1740720128,1740721151,JP 1740721152,1740721407,AU 1740721408,1740721663,IN 1740721664,1740721919,AU 1740721920,1740722175,IN 1740722176,1740723199,AU 1740723200,1740731391,IN 1740731392,1740732415,ID 1740732416,1740734463,CN 1740734464,1740736511,HK 1740736512,1740737535,NZ 1740737536,1740740607,CN 1740740608,1740742655,IN 1740742656,1740743679,CN 1740743680,1740743935,NZ 1740743936,1740744191,PH 1740744192,1740744703,AU 1740744704,1740745727,BD 1740745728,1740746751,HK 1740746752,1740747775,JP 1740747776,1740748799,KH 1740748800,1740749823,JP 1740749824,1740751871,CN 1740751872,1740753919,IN 1740753920,1740754943,KH 1740754944,1740755967,AU 1740755968,1740764159,CN 1740764160,1740766207,HK 1740766208,1740767231,IN 1740767232,1740769279,AU 1740769280,1740771327,IN 1740771328,1740772351,CN 1740772352,1740776447,IN 1740776448,1740777471,HK 1740777472,1740777983,JP 1740777984,1740778239,KR 1740778240,1740778495,HK 1740778496,1740779519,IN 1740779520,1740780543,AU 1740780544,1740784639,IN 1740784640,1740784895,AU 1740784896,1740785663,IN 1740785664,1740786687,JP 1740786688,1740787711,SG 1740787712,1740788735,MY 1740788736,1740789759,KH 1740789760,1740790783,IN 1740791808,1740792831,IN 1740792832,1740794879,HK 1740794880,1740795903,KR 1740795904,1740796415,NZ 1740796416,1740796671,IN 1740796672,1740796927,AU 1740796928,1740798207,IN 1740798208,1740798463,AU 1740798464,1740798975,IN 1740798976,1740799999,AU 1740800000,1740800511,IN 1740800512,1740800767,ID 1740800768,1740805119,IN 1740805120,1740806143,HK 1740806144,1740809215,IN 1740809216,1740810239,JP 1740810240,1740811263,NL 1740811264,1740812287,ID 1740812288,1740813311,MN 1740813312,1740814335,IN 1740815360,1740816383,VN 1740816384,1740821503,IN 1740821504,1740822015,HK 1740822016,1740822527,AU 1740822528,1740825599,IN 1740825600,1740825855,SG 1740825856,1740826111,AU 1740826112,1740826623,CN 1740826624,1740827647,IN 1740827648,1740828671,HK 1740828672,1740829695,IN 1740829696,1740830719,HK 1740830720,1740831743,IN 1740831744,1740832767,KR 1740832768,1740833791,BD 1740833792,1740834815,HK 1740834816,1740835839,NZ 1740835840,1740836863,AU 1740836864,1740837119,IN 1740837376,1740837887,ID 1740837888,1740838911,MY 1740838912,1740839935,IN 1740839936,1740840191,SG 1740840192,1740840959,ID 1740840960,1740841983,SG 1740841984,1740845055,IN 1740845056,1740846079,HK 1740846080,1740846591,AU 1740846592,1740847103,BD 1740847104,1740848127,ID 1740848128,1740849407,AU 1740849408,1740849663,ID 1740849664,1740850175,AU 1740850176,1740855295,IN 1740855296,1740856319,ID 1740856320,1740858367,IN 1740858368,1740859391,US 1740859392,1740860415,CN 1740860416,1740861439,HK 1740861440,1740862463,CN 1740862464,1740863487,HK 1740863488,1740865535,IN 1740865536,1740866559,AU 1740866560,1740867583,HK 1740867584,1740868607,CN 1740868608,1740869119,BD 1740869120,1740869375,ID 1740869376,1740869631,MY 1740869632,1740870655,JP 1740870656,1740872703,CN 1740872704,1740873727,ID 1740873728,1740874751,CN 1740874752,1740876287,ID 1740876288,1740876799,AU 1740876800,1740880895,IN 1740880896,1740881919,SG 1740881920,1740882943,CN 1740882944,1740884991,IN 1740884992,1740885503,BD 1740885504,1740886015,AU 1740886016,1740893183,IN 1740893184,1740895231,VN 1740895232,1740901375,IN 1740901376,1740901887,TH 1740901888,1740902143,ID 1740902144,1740902399,IN 1740902400,1740903423,VN 1740903424,1740904447,HK 1740904448,1740904959,NZ 1740904960,1740907519,IN 1740907520,1740908543,US 1740908544,1740909055,PK 1740909056,1740910591,ID 1740910592,1740911615,CN 1740911616,1740912639,IN 1740912640,1740913663,PH 1740913664,1740915711,CN 1740915712,1740916735,AU 1740916736,1740917759,CN 1740917760,1740918783,IN 1740918784,1740920319,AU 1740920320,1740920831,HK 1740920832,1740923903,CN 1740923904,1740924927,HK 1740924928,1740925951,PH 1740925952,1740926463,NZ 1740926464,1740926719,IN 1740926720,1740926975,AU 1740926976,1740927999,SG 1740928000,1740928255,ID 1740928256,1740928511,IN 1740928512,1740929023,AU 1740929024,1740931071,HK 1740931072,1740932095,PH 1740932096,1740933119,IN 1740933120,1740934143,PH 1740934144,1740935167,AU 1740935168,1740936191,IN 1740936192,1740937215,AU 1740937216,1740938239,HK 1740938240,1740938495,AU 1740938496,1740938751,IN 1740938752,1740939263,TH 1740939264,1740940287,PK 1740940288,1740941311,JP 1740941312,1740942335,CN 1740942336,1740943359,TW 1740944384,1740945407,US 1740945408,1740946431,CN 1740946432,1740947967,IN 1740947968,1740948223,AU 1740948224,1740948479,MY 1740948480,1740950527,IN 1740950528,1740951551,CN 1740951552,1740957695,IN 1740957696,1740958719,BD 1740958720,1740959743,VN 1740959744,1740960255,NL 1740960256,1740960767,IN 1740960768,1740962815,VN 1740962816,1740964863,SG 1740964864,1740965887,HK 1740965888,1740966911,IN 1740966912,1740967935,JP 1740967936,1740968959,IN 1740968960,1740969983,MY 1740969984,1740971007,HK 1740971008,1740975103,IN 1740975104,1740976127,PK 1740976128,1740976639,BD 1740976640,1740976895,SG 1740976896,1740977151,IN 1740977152,1740978175,NZ 1740978176,1740979199,MY 1740979200,1740980223,NZ 1740980224,1740981247,AU 1740981248,1740982271,HK 1740982272,1740985343,IN 1740985344,1740986367,PH 1740986368,1740986623,AU 1740986624,1740986879,ID 1740986880,1740987391,IN 1740987392,1740988415,ID 1740988416,1740989439,SG 1740989440,1740990463,IN 1740990464,1740991487,KH 1740991488,1741000703,IN 1741000704,1741001727,AU 1741001728,1741002751,HK 1741002752,1741003775,BD 1741003776,1741004799,HK 1741004800,1741005823,AU 1741005824,1741006847,MV 1741006848,1741007871,HK 1741007872,1741008895,TW 1741008896,1741009919,BT 1741009920,1741010943,CN 1741010944,1741011455,IN 1741011456,1741011967,AU 1741011968,1741012991,ID 1741012992,1741014015,HK 1741014016,1741015039,MM 1741015040,1741016063,PH 1741016064,1741017087,BD 1741017088,1741018111,JP 1741018112,1741019135,AU 1741019136,1741020159,HK 1741020160,1741022207,IN 1741022208,1741023231,CN 1741023232,1741025279,AU 1741025280,1741026303,IN 1741026304,1741027327,TH 1741027328,1741028351,BD 1741028352,1741029375,CN 1741029376,1741029631,SG 1741029632,1741029887,HK 1741029888,1741030399,BD 1741030400,1741031423,JP 1741031424,1741031935,NP 1741031936,1741032447,IN 1741032448,1741033471,JP 1741033472,1741033983,MY 1741033984,1741034495,HK 1741034496,1741035519,CN 1741035520,1741036031,AU 1741036544,1741037567,IN 1741037568,1741038079,AU 1741038080,1741038591,IN 1741038592,1741039615,JP 1741039616,1741040639,AU 1741040640,1741042687,HK 1741042688,1741043199,MY 1741043200,1741043711,AU 1741043712,1741044735,HK 1741044736,1741046783,CN 1741046784,1741047807,MY 1741047808,1741048831,CN 1741048832,1741049855,SG 1741049856,1741050367,IN 1741050368,1741050623,HK 1741050624,1741050879,IN 1741050880,1741051903,MY 1741051904,1741052927,PH 1741052928,1741053183,AU 1741053184,1741053439,ID 1741053440,1741055999,IN 1741056000,1741056511,NZ 1741056512,1741057023,AU 1741057024,1741058047,JP 1741058048,1741058559,AU 1741058560,1741061119,ID 1741061120,1741062143,CN 1741062144,1741062655,IN 1741062656,1741062911,AU 1741062912,1741063167,ID 1741063168,1741065215,BD 1741065216,1741067263,SG 1741067264,1741068287,MM 1741068288,1741069311,TH 1741069312,1741070335,CN 1741070336,1741071359,JP 1741071360,1741072383,IN 1741072384,1741073407,BD 1741073408,1741074431,IN 1741074432,1741075455,TL 1741075456,1741076479,CN 1741076480,1741077247,NZ 1741077248,1741077503,IN 1741077504,1741079551,HK 1741079552,1741081599,CN 1741081600,1741082623,HK 1741082624,1741084671,JP 1741084672,1741092863,CN 1741092864,1741093887,HK 1741093888,1741094911,BD 1741094912,1741095423,NZ 1741095424,1741095935,ID 1741095936,1741115391,VN 1741115392,1741115647,AU 1741115648,1741115903,NZ 1741115904,1741116415,AU 1741116416,1741117439,BD 1741117440,1741119487,IN 1741119488,1741119743,AU 1741119744,1741120511,IN 1741120512,1741122559,HK 1741122560,1741123583,BD 1741123584,1741125119,IN 1741125120,1741125375,ID 1741125376,1741125631,AU 1741125632,1741128703,IN 1741128704,1741129727,JP 1741129728,1741130751,IN 1741130752,1741131775,JP 1741131776,1741132799,IN 1741132800,1741133823,HK 1741133824,1741134847,BD 1741134848,1741136895,IN 1741136896,1741137919,CN 1741137920,1741138431,BD 1741138432,1741138943,TH 1741138944,1741145087,IN 1741145088,1741146111,CN 1741146112,1741150207,IN 1741150208,1741151231,MY 1741151232,1741152255,JP 1741152256,1741153279,IN 1741153280,1741154303,CN 1741154304,1741155327,BD 1741155328,1741156351,ID 1741156352,1741157375,IN 1741157376,1741158399,HK 1741158400,1741160447,CN 1741160448,1741161471,TW 1741161472,1741162495,SG 1741162496,1741164543,AU 1741164544,1741165567,ID 1741165568,1741167615,VN 1741167616,1741169663,CN 1741169664,1741170687,BD 1741170688,1741173759,IN 1741173760,1741174783,CN 1741174784,1741175807,IN 1741175808,1741176831,VN 1741176832,1741178879,CN 1741178880,1741183999,IN 1741184000,1741185023,BD 1741185024,1741186047,JP 1741186048,1741188095,IN 1741188096,1741191167,HK 1741191168,1741192191,VN 1741192192,1741193215,HK 1741193216,1741194239,ID 1741194240,1741195263,MM 1741195264,1741210623,CN 1741210624,1741211647,PK 1741211648,1741212671,SG 1741212672,1741213695,AU 1741213696,1741214719,SG 1741214720,1741215743,IN 1741215744,1741216767,SG 1741216768,1741232127,CN 1741232128,1741233151,HK 1741233152,1741243391,CN 1741243392,1741245439,HK 1741245440,1741257727,CN 1741257728,1741258751,IN 1741258752,1741259775,JP 1741259776,1741264895,IN 1741264896,1741303807,CN 1741303808,1741304831,HK 1741304832,1741305855,BD 1741305856,1741329407,CN 1741329408,1741330431,MH 1741330432,1741344767,CN 1741344768,1741345791,AU 1741345792,1741346815,CN 1741346816,1741347327,JP 1741347328,1741347583,PH 1741347584,1741347839,AU 1741347840,1741348863,BD 1741348864,1741349375,PH 1741349376,1741349631,IN 1741349632,1741349887,ID 1741349888,1741350911,CN 1741350912,1741351935,AU 1741351936,1741366271,CN 1741366272,1741367295,IN 1741367296,1741368319,HK 1741368320,1741369343,PK 1741369344,1741370367,HK 1741370368,1741372415,CN 1741372416,1741376511,IN 1741376512,1741377535,ID 1741377536,1741380095,IN 1742734336,1742735359,IN 1742735360,1742736383,JP 1742736384,1742737407,PK 1742737408,1742738431,CN 1742738432,1742738687,HK 1742738688,1742738943,AU 1742738944,1742739199,HK 1742739200,1742740479,IN 1742740480,1742741503,KH 1742741504,1742743551,IN 1742743552,1742745599,CN 1742745600,1742745855,IN 1742745856,1742746111,AU 1742746112,1742746623,IN 1742746624,1742747135,AU 1742747136,1742747391,IN 1742747392,1742747647,AU 1742747648,1742748671,HK 1742748672,1742749695,CN 1742749696,1742750719,ID 1742750720,1742751743,IN 1742751744,1742752767,HK 1742752768,1742753791,NZ 1742753792,1742754815,HK 1742754816,1742756863,AU 1742756864,1742757887,JP 1742757888,1742758911,BN 1742758912,1742759935,ID 1742759936,1742760191,AU 1742760192,1742760447,IN 1742760448,1742760703,HK 1742760704,1742760959,NZ 1742760960,1742761983,IN 1742761984,1742763007,AU 1742763008,1742764031,SG 1742764032,1742764287,AU 1742764288,1742764543,SG 1742764544,1742765823,AU 1742765824,1742766079,AF 1742766080,1742767103,NZ 1742767104,1742768127,TW 1742768128,1742769663,ID 1742769664,1742769919,AU 1742769920,1742770175,JP 1742770176,1742774271,IN 1742774272,1742774527,AU 1742774528,1742774783,NZ 1742774784,1742775295,AU 1742775296,1742776319,SG 1742776320,1742777343,VN 1742777344,1742779647,ID 1742779648,1742779903,IN 1742779904,1742780415,AU 1742780416,1742782463,IN 1742782464,1742783487,TW 1742783488,1742784511,MY 1742784512,1742786559,TW 1742786560,1742788095,AU 1742788096,1742788607,AF 1742788608,1742789631,IN 1742789632,1742793727,CN 1742793728,1742796799,IN 1742796800,1742797823,HK 1742797824,1742798847,JP 1742798848,1742799871,TW 1742799872,1742800895,NZ 1742800896,1742801919,HK 1742801920,1742802943,IN 1742802944,1742804991,HK 1742804992,1742807039,IN 1742807040,1742808063,AU 1742808064,1742809087,PH 1742809088,1742810111,IN 1742810112,1742810623,AU 1742810624,1742811135,IN 1742811136,1742812159,PK 1742812160,1742813183,JP 1742813184,1742815231,IN 1742815232,1742815743,SG 1742815744,1742815999,ID 1742816000,1742817279,AU 1742817280,1742818815,IN 1742818816,1742819327,KH 1742819328,1742820351,JP 1742820352,1742821375,CN 1742821376,1742822399,ID 1742822400,1742823423,BD 1742823424,1742823679,AU 1742823680,1742823935,IN 1742823936,1742824191,ID 1742824192,1742826495,IN 1742827520,1742828543,IN 1742829568,1742830591,JP 1742830592,1742833663,IN 1742833664,1742834687,PH 1742834688,1742835711,AU 1742835712,1742836735,JP 1742836736,1742837759,ID 1742837760,1742838783,JP 1742838784,1742841855,AU 1742841856,1742842367,TH 1742842368,1742843391,ID 1742843392,1742843647,IN 1742843648,1742843903,ID 1742843904,1742845951,IN 1742845952,1742846463,ID 1742846464,1742846975,AU 1742846976,1742847999,IN 1742848000,1742849023,JP 1742849024,1742851071,HK 1742851072,1742852095,IN 1742852096,1742852607,ID 1742852608,1742853119,NZ 1742853120,1742854143,HK 1742854144,1742855167,AF 1742855168,1742856191,PK 1742856192,1742857215,IN 1742857216,1742858239,BD 1742858240,1742859263,AU 1742859264,1742860287,VN 1742860288,1742860799,AU 1742860800,1742861055,ID 1742861056,1742861311,AU 1742861312,1742862335,NP 1742862336,1742862847,IN 1742862848,1742863359,HK 1742863360,1742864383,JP 1742864384,1742866431,IN 1742866432,1742867199,AU 1742867200,1742867455,IN 1742867456,1742868479,PH 1742868480,1742869503,CN 1742869504,1742870015,IN 1742870016,1742870527,VU 1742870528,1742872575,IN 1742872576,1742873855,NZ 1742873856,1742874623,PH 1742874624,1742875647,CN 1742875648,1742876671,JP 1742876672,1742877695,ID 1742877696,1742877951,IN 1742877952,1742878207,AU 1742878208,1742878463,JP 1742878464,1742878719,ID 1742878720,1742880767,CN 1742880768,1742881791,NZ 1742881792,1742882815,AU 1742882816,1742884863,KR 1742884864,1742885887,CN 1742885888,1742887935,IN 1742887936,1742888959,HK 1742888960,1742889983,KR 1742889984,1742891007,TW 1742891008,1742892031,AU 1742892032,1742893055,VN 1742893056,1742894079,NZ 1742894080,1742895103,CN 1742895104,1742895615,SG 1742895616,1742895871,BD 1742895872,1742896127,AU 1742896128,1742897151,HK 1742897152,1742898175,AU 1742898176,1742899199,CN 1742899200,1742900223,ID 1742900224,1742903295,IN 1742903296,1742904319,HK 1742904320,1742905343,CN 1742905344,1742907391,AU 1742907392,1742908415,IN 1742908416,1742908927,SG 1742908928,1742909183,ID 1742909184,1742909439,IN 1742909440,1742910463,AU 1742910464,1742911487,CN 1742911488,1742914559,IN 1742914560,1742915583,CN 1742915584,1742918655,IN 1742918656,1742919679,TW 1742919680,1742920191,PK 1742920192,1742920447,ID 1742920448,1742921727,AU 1742921728,1742923775,IN 1742923776,1742924799,ID 1742924800,1742926847,IN 1742926848,1742927359,AU 1742927360,1742927615,SG 1742927616,1742927871,AU 1742927872,1742928895,VN 1742928896,1742929919,NZ 1742929920,1742930175,IN 1742930432,1742930943,PH 1742931968,1742932991,JP 1742932992,1742933503,SG 1742933504,1742933759,ID 1742933760,1742934015,NZ 1742934016,1742935039,AF 1742935040,1742938111,AU 1742938112,1742939135,TW 1742939136,1742940159,IN 1742940160,1742941183,JP 1742941184,1742942207,PH 1742942208,1742943231,CN 1742943232,1742945279,IN 1742945280,1742945791,AU 1742945792,1742946047,IN 1742946048,1742947327,AU 1742947328,1742948351,IN 1742948352,1742951423,CN 1742951424,1742953471,HK 1742954496,1742955519,IN 1742955520,1742956543,CN 1742956544,1742957567,HK 1742957568,1742958591,AU 1742958592,1742959615,VN 1742959616,1742960639,IN 1742960640,1742961663,CN 1742961664,1742962687,IN 1742962688,1742963711,HK 1742963712,1742965759,CN 1742965760,1742966015,MY 1742966016,1742968319,ID 1742968320,1742970879,IN 1742970880,1742971903,JP 1742971904,1742972927,SG 1742972928,1742973439,AU 1742973440,1742973951,NZ 1742973952,1742975999,SG 1742978048,1742979071,JP 1742979072,1742980095,HK 1742980096,1742981119,CN 1742981120,1742982143,AU 1742982144,1742983167,CN 1742983168,1742984191,IN 1742984192,1742985215,CN 1742985216,1742986239,VN 1742986240,1742987263,ID 1742987264,1742988287,TW 1742988288,1742989311,CN 1742989312,1742989567,AU 1742989568,1742989823,PH 1742989824,1742990335,AU 1742990336,1742991359,IN 1742991360,1742992383,ID 1742992384,1742993407,LK 1742993408,1742994431,JP 1742994432,1742995455,ID 1742995456,1742996479,BD 1742996480,1742997503,TH 1742998528,1742999551,CN 1742999552,1742999807,AU 1742999808,1743000063,ID 1743000064,1743000575,IN 1743000576,1743001599,VN 1743001600,1743002623,ID 1743002624,1743003647,CN 1743003648,1743007999,IN 1743008000,1743008255,BD 1743008256,1743008767,IN 1743008768,1743010815,MY 1743010816,1743011839,JP 1743011840,1743012863,HK 1743012864,1743013887,CN 1743013888,1743015935,IN 1743015936,1743016447,ID 1743016448,1743016703,HK 1743016704,1743016959,IN 1743017984,1743019007,CN 1743019008,1743021055,HK 1743021056,1743021311,SG 1743021312,1743021567,NZ 1743021568,1743021823,PH 1743021824,1743022079,IN 1743023104,1743024127,HK 1743024128,1743025151,IN 1743025152,1743026175,ID 1743026176,1743027199,BD 1743027200,1743028223,AU 1743028224,1743029247,CN 1743029504,1743029759,AU 1743029760,1743030271,BD 1743031296,1743035391,IN 1743035392,1743036415,PK 1743036416,1743037439,CN 1743037440,1743038463,AU 1743039488,1743040511,IN 1743040512,1743041535,CN 1743041536,1743042559,HK 1743042560,1743043583,IN 1743043584,1743044607,AU 1743044608,1743045119,IN 1743045120,1743045631,AU 1743045632,1743046655,JP 1743046656,1743047679,BD 1743047680,1743049727,CN 1743049728,1743050751,AU 1743050752,1743051775,TW 1743051776,1743052799,IN 1743053824,1743055871,CN 1743055872,1743059199,ID 1743059200,1743059967,IN 1743059968,1743060991,LA 1743060992,1743061503,AU 1743061504,1743062015,IN 1743062016,1743062271,AU 1743062272,1743062527,IN 1743062528,1743063039,AU 1743063040,1743064063,SG 1743064064,1743064575,ID 1743064576,1743065087,IN 1743065088,1743066111,TW 1743066112,1743067135,CN 1743067136,1743068159,IN 1743068160,1743069183,HK 1743069184,1743070207,MY 1743070208,1743071231,IN 1743071232,1743072255,VN 1743072256,1743073279,BD 1743073280,1743074047,AU 1743074048,1743074303,IN 1743074304,1743075327,HK 1743075328,1743076351,MY 1743077376,1743078399,IN 1743079424,1743080959,ID 1743080960,1743081471,IN 1743081472,1743083519,BD 1743083520,1743084543,SG 1743084544,1743085567,TH 1743085568,1743085823,SG 1743085824,1743086079,AU 1743086080,1743086591,NZ 1743086592,1743087615,TW 1743087616,1743088639,PH 1743088640,1743089663,TH 1743089664,1743090687,MY 1743090688,1743091711,HK 1743091712,1743092735,MN 1743092736,1743093759,TW 1743093760,1743094015,SG 1743094016,1743094271,IN 1743094272,1743094527,NZ 1743094528,1743094783,IN 1743094784,1743095807,TW 1743095808,1743096831,CN 1743096832,1743098879,HK 1743098880,1743099903,CN 1743100928,1743101951,KR 1743101952,1743103999,ID 1743104000,1743105023,IN 1743105024,1743106047,CN 1743106048,1743107071,MN 1743107072,1743108095,HK 1743108096,1743108607,IN 1743108608,1743108863,SG 1743108864,1743109119,AU 1743109120,1743110143,HK 1743110144,1743111167,VN 1743111168,1743111423,SG 1743111424,1743111679,MY 1743111680,1743111935,ID 1743111936,1743112191,HK 1743112192,1743113215,ID 1743113216,1743114239,SG 1743114240,1743115263,IN 1743115264,1743118335,CN 1743118336,1743119359,IN 1743119360,1743120383,CN 1743120384,1743121407,IN 1743121408,1743123455,CN 1743123456,1743124479,IN 1743124480,1743124991,NZ 1743124992,1743125503,IN 1743125504,1743126527,JP 1743126528,1743127551,CN 1743127552,1743128575,BD 1743128576,1743129599,JP 1743131648,1743132671,IN 1743132672,1743133695,JP 1743133696,1743134719,CN 1743134720,1743134975,HK 1743134976,1743135231,IN 1743135232,1743135743,HK 1743135744,1743136767,SG 1743136768,1743138815,CN 1743138816,1743139327,ID 1743139328,1743139839,SG 1743139840,1743140863,IN 1743140864,1743141887,MY 1743141888,1743142911,BD 1743142912,1743143935,BN 1743144960,1743145983,AU 1743145984,1743147007,NZ 1743147008,1743147263,AU 1743147264,1743147519,NZ 1743147520,1743147775,MN 1743147776,1743148031,ID 1743148032,1743149055,IN 1743149056,1743150079,KR 1743150080,1743151103,JP 1743151104,1743152127,CN 1743152128,1743152383,ID 1743152384,1743153151,IN 1743153152,1743154175,BD 1743154176,1743155199,HK 1743155200,1743156223,KR 1743157248,1743158271,HK 1743159296,1743160319,JP 1743160320,1743161343,TH 1743161344,1743162367,HK 1743163392,1743166463,IN 1743166464,1743167487,AU 1743167488,1743168511,HK 1743168512,1743169535,IN 1743169536,1743170559,JP 1743171584,1743172607,AU 1743172608,1743173631,BD 1743173632,1743174655,AU 1743174656,1743175679,ID 1743175680,1743176703,HK 1743176704,1743179775,CN 1743180800,1743181823,CN 1743181824,1743182847,HK 1743182848,1743184895,IN 1743184896,1743185919,HK 1743185920,1743186943,SG 1743186944,1743187967,CN 1743187968,1743188991,HK 1743188992,1743190015,JP 1743190016,1743191039,SG 1743191040,1743192063,AF 1743192064,1743195135,IN 1743195136,1743196159,HK 1743196160,1743198207,CN 1743198208,1743198719,JP 1743198720,1743198975,AU 1743198976,1743199231,SG 1743199232,1743200255,HK 1743200256,1743201279,IN 1743201280,1743202303,PH 1743202304,1743204351,IN 1743204352,1743205375,TW 1743206400,1743207423,HK 1743207424,1743208447,KH 1743208448,1743210495,CN 1743210496,1743211519,JP 1743211520,1743212543,IN 1743212544,1743213567,ID 1743213568,1743214591,HK 1743214592,1743215615,AU 1743215616,1743216639,MM 1743216640,1743217151,SG 1743217152,1743217663,JP 1743217664,1743218687,IN 1743218688,1743219711,HK 1743219712,1743221759,ID 1743221760,1743222783,IN 1743222784,1743223807,ID 1743223808,1743224831,IN 1743224832,1743225855,KR 1743225856,1743226367,IN 1743226368,1743226623,PH 1743226624,1743226879,BD 1743226880,1743227903,AF 1743227904,1743228927,HK 1743228928,1743229951,CN 1743229952,1743230975,VN 1743230976,1743231999,HK 1743232000,1743232511,NZ 1743232512,1743233023,AU 1743233024,1743234047,BD 1743234048,1743235071,HK 1743235072,1743235583,AU 1743235584,1743236095,ID 1743236096,1743237119,US 1743237120,1743238143,BD 1743238144,1743240191,CN 1743240192,1743241215,SG 1743241216,1743242239,JP 1743242240,1743244287,ID 1743244288,1743245311,AU 1743245312,1743248383,IN 1743248384,1743248895,SG 1743248896,1743249407,IN 1743249408,1743250431,MY 1743250432,1743251455,BD 1743251456,1743252479,IN 1743252480,1743253503,JP 1743253504,1743254527,PH 1743254528,1743255551,CN 1743255552,1743256319,SG 1743256320,1743256575,MY 1743256576,1743258623,HK 1743258624,1743259647,CN 1743259648,1743260671,IN 1743260672,1743261703,JP 1743261704,1743261711,PH 1743261712,1743262719,HK 1743262720,1743264767,IN 1743264768,1743265279,MY 1743265280,1743265535,ID 1743265536,1743265791,AU 1743265792,1743266303,ID 1743266304,1743267839,HK 1743267840,1743268863,TH 1743268864,1743269887,SG 1743269888,1743270911,MY 1743270912,1743273983,VN 1743273984,1743275007,ID 1743275008,1743276031,HK 1743276032,1743277055,JP 1743278080,1743279103,LA 1743279104,1743281151,HK 1743281152,1743283199,AU 1743283200,1743284223,BD 1743285248,1743286271,NZ 1743286272,1743287295,IN 1743287296,1743288319,AU 1743288320,1743289343,VN 1743289344,1743291391,IN 1743291392,1743292415,AU 1743292416,1743293439,IN 1743293440,1743293951,AU 1743294464,1743295487,CN 1743295488,1743296511,IN 1743296512,1743297535,NP 1743297536,1743298303,NZ 1743298304,1743299583,AU 1743300608,1743301631,AU 1743301632,1743303679,IN 1743303680,1743304703,NZ 1743304704,1743305727,IN 1743306752,1743307775,KH 1743307776,1743308799,AU 1743308800,1743309823,JP 1743309824,1743310335,NZ 1743310336,1743311871,AU 1743311872,1743312895,CN 1743312896,1743313663,AU 1743313664,1743313919,MY 1743313920,1743314943,HK 1743314944,1743315199,IN 1743315200,1743315455,PK 1743315456,1743315967,NZ 1743315968,1743316991,NP 1743316992,1743319039,IN 1743319040,1743319295,ID 1743319296,1743319551,IN 1743319552,1743320063,ID 1743320064,1743321087,IN 1743322112,1743323135,AU 1743323136,1743324159,MY 1743324160,1743325183,CN 1743326208,1743327231,SG 1743327232,1743328255,AU 1743328256,1743329279,NZ 1743329280,1743330303,IN 1743330304,1743331327,AU 1743331328,1743333375,PH 1743334400,1743335423,CN 1743335424,1743336447,VN 1743336448,1743337471,CN 1743337472,1743338495,NP 1743338496,1743339519,NZ 1743339520,1743340543,IN 1743340544,1743341567,TW 1743341568,1743341823,HK 1743341824,1743342079,IN 1743342080,1743342591,AU 1743342592,1743343615,IN 1743343616,1743344639,TH 1743344640,1743345663,IN 1743345664,1743346687,ID 1743346688,1743347711,IN 1743347712,1743348735,HK 1743348736,1743348991,ID 1743348992,1743349247,IN 1743349248,1743349759,ID 1743349760,1743350783,CN 1743350784,1743351807,ID 1743351808,1743354111,IN 1743354112,1743354367,BD 1743354368,1743355903,IN 1743355904,1743356927,CN 1743356928,1743357951,NZ 1743357952,1743358975,CN 1743358976,1743359231,AF 1743359488,1743361023,ID 1743361024,1743362047,AU 1743362048,1743364095,ID 1743364096,1743365119,IN 1743365120,1743366143,HK 1743366144,1743367167,IN 1743367168,1743368191,SG 1743368192,1743369215,TH 1743369216,1743369727,MY 1743369728,1743369983,NP 1743369984,1743370239,AF 1743370240,1743371263,HK 1743371264,1743372287,MO 1743372288,1743373311,TH 1743373312,1743374335,JP 1743375360,1743376383,MM 1743376384,1743377407,AU 1743378432,1743379455,IN 1743379456,1743380479,NZ 1743380480,1743381503,AU 1743381504,1743382527,CN 1743382528,1743383551,HK 1743383552,1743384575,AU 1743384576,1743385087,SG 1743385088,1743385343,AU 1743385344,1743386623,IN 1743386624,1743387647,HK 1743388672,1743389695,CN 1743389696,1743390719,KR 1743391744,1743391999,PK 1743392000,1743392767,AU 1743392768,1743393791,HK 1743393792,1743394815,CN 1743394816,1743395839,BD 1743395840,1743396863,JP 1743396864,1743397887,HK 1743397888,1743398911,VN 1743398912,1743399935,TW 1743400960,1743401983,PG 1743401984,1743403007,HK 1743403008,1743404031,CN 1743404032,1743405055,AU 1743405056,1743407103,IN 1743408128,1743410175,TW 1743410176,1743411199,SG 1743411200,1743412223,VN 1743412224,1743412479,AU 1743412480,1743412991,IN 1743412992,1743413247,AU 1743413248,1743414271,HK 1743414272,1743415295,MY 1743415296,1743416319,SG 1743416320,1743417855,AU 1743417856,1743418879,IN 1743418880,1743419391,AU 1743419392,1743420415,ID 1743420416,1743422463,CN 1743422464,1743423487,NZ 1743423488,1743424511,IN 1743424512,1743425535,HK 1743425536,1743426559,PK 1743426560,1743426815,SG 1743426816,1743430399,IN 1743430400,1743430655,AU 1743431680,1743432703,SG 1743432704,1743433727,CN 1743433728,1743434751,JP 1743434752,1743435775,CN 1743435776,1743437823,IN 1743437824,1743438335,BD 1743438336,1743438591,AU 1743438592,1743438847,ID 1743438848,1743439871,JP 1743439872,1743440895,BD 1743440896,1743441919,TW 1743441920,1743442943,ID 1743442944,1743443967,IN 1743443968,1743444991,ID 1743444992,1743446015,HK 1743446016,1743448063,TW 1743448064,1743449087,AU 1743449088,1743451135,IN 1743451136,1743452159,CN 1743452160,1743453183,AU 1743453184,1743454207,ID 1743454208,1743455231,IN 1743455232,1743456255,HK 1743456256,1743457279,IN 1743457280,1743458303,JP 1743458304,1743459327,CN 1743459328,1743459583,AU 1743459584,1743459839,ID 1743459840,1743460095,AU 1743460096,1743460351,IN 1743460352,1743461375,KR 1743461376,1743462399,MY 1743462400,1743463423,ID 1743463424,1743464447,AU 1743464448,1743465471,JP 1743465472,1743466495,HK 1743466496,1743467519,CN 1743467520,1743468543,AU 1743468544,1743470591,CN 1743470592,1743470847,IN 1743470848,1743471103,AU 1743471104,1743471615,ID 1743471616,1743472639,IN 1743474688,1743476735,CN 1743476736,1743477759,TW 1743477760,1743479807,AU 1743479808,1743480831,HK 1743480832,1743481855,IN 1743481856,1743482111,AU 1743482112,1743482367,ID 1743482368,1743482879,WF 1743482880,1743483903,JP 1743483904,1743484927,AU 1743484928,1743485951,IN 1743485952,1743486975,JP 1743486976,1743493119,CN 1743493120,1743493631,ID 1743493632,1743493887,AU 1743493888,1743495167,IN 1743497216,1743499263,HK 1743499264,1743500287,AF 1743500288,1743501311,JP 1743501312,1743502335,CN 1743502336,1743503359,AU 1743503360,1743504383,CN 1743504384,1743505407,NP 1743505408,1743506431,CN 1743506432,1743506943,SG 1743506944,1743507455,IN 1743507456,1743509503,VN 1743510528,1743545343,CN 1743545344,1743546367,HK 1743546368,1743549951,IN 1743549952,1743550207,AU 1743550208,1743550463,SG 1743550464,1743551487,CN 1743551488,1743552511,IN 1743552512,1743553535,JP 1743553536,1743554559,PK 1743554560,1743555583,HK 1743555584,1743557631,JP 1743557632,1743558143,SG 1743558144,1743558655,ID 1743558656,1743560703,IN 1743560704,1743561215,ID 1743561216,1743561727,AU 1743561728,1743564799,IN 1743564800,1743565823,PH 1743565824,1743566847,JP 1743566848,1743567871,CN 1743567872,1743569151,ID 1743569152,1743569919,IN 1743569920,1743570943,SG 1743570944,1743571199,IN 1743571200,1743571455,ID 1743571456,1743571967,AU 1743571968,1743574015,IN 1743574016,1743574527,AU 1743574528,1743574783,US 1743574784,1743575039,AU 1743575040,1743576063,HK 1743576064,1743577087,CN 1743577088,1743578111,JP 1743578112,1743579135,MY 1743579136,1743580159,CN 1743580160,1743581183,IN 1743581184,1743589375,CN 1743589376,1743590399,AU 1743590400,1743591423,KR 1743591424,1743593471,CN 1743593472,1743594495,ID 1743594496,1743595519,BD 1743595520,1743596543,NZ 1743596544,1743598591,IN 1743598592,1743599103,KH 1743599104,1743599615,HK 1743599616,1743600639,IN 1743600640,1743602687,VN 1743602688,1743603711,CN 1743603712,1743604735,HK 1743605760,1743606015,SG 1743606016,1743606527,AU 1743606528,1743606783,AF 1743606784,1743607807,PK 1743607808,1743608831,CN 1743608832,1743609855,AU 1743609856,1743610879,VN 1743610880,1743611903,MO 1743611904,1743613951,AU 1743613952,1743615999,IN 1743616000,1743617023,JP 1743617024,1743618047,MO 1743618048,1743619071,HK 1743619072,1743619583,SG 1743619584,1743619839,ID 1743619840,1743620095,IN 1743620096,1743621119,JP 1743621120,1743621631,ID 1743621632,1743622143,SG 1743622144,1743624191,VN 1743624192,1743625215,CN 1743625216,1743626239,IN 1743626240,1743627263,AU 1743627264,1743628287,NZ 1743628288,1743628799,SG 1743628800,1743629055,IN 1743629056,1743629311,AU 1743629312,1743630335,IN 1743630336,1743652863,CN 1743652864,1743654911,IN 1743654912,1743666175,CN 1743666176,1743666431,NZ 1743666432,1743666687,IN 1743666688,1743666943,AU 1743666944,1743667199,BD 1743668224,1743672319,VN 1743672320,1743673343,NZ 1743673344,1743676415,CN 1743676416,1743679487,IN 1743680512,1743681535,TL 1743681536,1743682559,AU 1743682560,1743683583,MY 1743683584,1743683839,JP 1743683840,1743684095,AU 1743684096,1743684351,JP 1743684352,1743684607,AU 1743684608,1743685631,CN 1743685632,1743686655,ID 1743686656,1743688703,CN 1743688704,1743689727,MY 1743689728,1743690751,IN 1743690752,1743691263,AS 1743691264,1743691775,IN 1743691776,1743699967,CN 1743699968,1743700479,IN 1743700480,1743700735,NZ 1743700736,1743700991,AU 1743700992,1743702015,CN 1743702016,1743703039,ID 1743703040,1743704063,CN 1743704064,1743706111,VN 1743706112,1743708159,IN 1743708160,1743709183,HK 1743709184,1743711231,IN 1743711232,1743712255,JP 1743712256,1743713279,IN 1743713280,1743714303,JP 1743714304,1743715327,KR 1743715328,1743717375,CN 1743717376,1743718399,BD 1743718400,1743719423,NZ 1743720448,1743721471,JP 1743722496,1743723519,AU 1743723520,1743724543,HK 1743724544,1743725567,VN 1743725568,1743726591,IN 1743726592,1743728639,CN 1743728640,1743729151,AU 1743729152,1743729407,IN 1743729408,1743729663,AU 1743729664,1743730687,KH 1743730688,1743731711,IN 1743731712,1743732735,TW 1743733760,1743734783,CN 1743734784,1743735807,HK 1743735808,1743736319,AU 1743736320,1743736575,IN 1743736576,1743736831,AU 1743736832,1743738879,IN 1743739904,1743740927,JP 1743740928,1743741951,CN 1743741952,1743742975,HK 1743742976,1743743487,NZ 1743743488,1743743999,AU 1743744000,1743745023,JP 1743745024,1743746047,KR 1743746048,1743748095,VN 1743748096,1743748607,IN 1743748608,1743748863,HK 1743748864,1743749119,MY 1743749120,1743751167,AU 1743751168,1743755263,IN 1743755264,1743757311,CN 1743757312,1743758335,TO 1743758336,1743758591,HK 1743758592,1743758847,ID 1743758848,1743759359,AU 1743759360,1743761407,IN 1743761408,1743764479,CN 1743764480,1743765503,ID 1743765504,1743767551,CN 1743767552,1743768575,PH 1743768576,1743770623,CN 1743770624,1743770879,AU 1743771136,1743771647,NZ 1743771648,1743772671,JP 1743772672,1743773695,SG 1743773696,1743774719,CN 1743774720,1743775743,NZ 1743775744,1743776767,IN 1743776768,1743778815,KR 1743778816,1743779839,CN 1743779840,1743780863,MY 1743780864,1743781887,BD 1743781888,1743783935,JP 1743783936,1743784959,IN 1743784960,1743785983,JP 1743785984,1743787007,CN 1743787008,1743789055,JP 1743789056,1743790079,KR 1743790080,1743791103,IN 1743791104,1743792127,CN 1743792128,1743793151,HK 1743793152,1743794175,BD 1743794176,1743795199,KR 1743795200,1743796223,NZ 1743796224,1743797247,JP 1743797248,1743798271,TH 1743798272,1743799295,HK 1743800320,1743801343,CN 1743801344,1743802367,IN 1743802368,1743803391,HK 1743803392,1743804415,CN 1743804416,1743804671,AU 1743804672,1743805439,IN 1743805440,1743806463,HK 1743806464,1743809535,IN 1743809536,1743810559,ID 1743810560,1743811583,KH 1743811584,1743812607,JP 1743812608,1743813631,PH 1743813632,1743814655,CN 1743814656,1743815679,SG 1743815680,1743815935,AU 1743815936,1743816191,NZ 1743816192,1743816703,AU 1743816704,1743817727,IN 1743817728,1743818751,HK 1743818752,1743819775,IN 1743819776,1743820799,HK 1743820800,1743821823,NZ 1743821824,1743822847,CN 1743822848,1743825919,IN 1743825920,1743826943,CN 1743826944,1743827967,MY 1743827968,1743828991,HK 1743828992,1743830015,NZ 1743831040,1743832063,IN 1743832064,1743834111,HK 1743834112,1743838207,IN 1743838208,1743838463,PK 1743838464,1743838719,HK 1743838720,1743841279,AU 1743841280,1743843327,IN 1743843328,1743844351,LA 1743844352,1743845375,CN 1743845376,1743846399,BD 1743846400,1743847423,JP 1743847424,1743848447,AU 1743848448,1743848959,ID 1743848960,1743849471,AU 1743849472,1743850495,IN 1743850496,1743851519,CN 1743851520,1743852543,HK 1743852544,1743853567,IN 1743853568,1743853823,ID 1743853824,1743854079,IN 1743854080,1743854335,AU 1743854336,1743854591,LK 1743854592,1743856639,TH 1743856640,1743857663,NZ 1743857664,1743859711,IN 1743859712,1743860735,HK 1743860736,1743861759,IN 1743861760,1743862783,NZ 1743862784,1743863807,SG 1743863808,1743864831,JP 1743864832,1743865855,TW 1743865856,1743866879,CN 1743866880,1743867903,KR 1743868928,1743870975,NZ 1743870976,1743873023,CN 1743873024,1743874047,AU 1743874048,1743874303,JP 1743874304,1743875071,SG 1743875072,1743876095,HK 1743876096,1743877119,IN 1743877120,1743878143,KR 1743878144,1743879167,NZ 1743879168,1743881215,JP 1743881216,1743885311,IN 1743885312,1743885823,AU 1743885824,1743886207,MY 1743886208,1743886335,SG 1743886336,1743887359,JP 1743887360,1743888383,AF 1743888384,1743889407,CN 1743889408,1743890431,HK 1743890432,1743891455,IN 1743891456,1743892479,JP 1743892480,1743892991,AU 1743892992,1743893503,ID 1743893504,1743894527,IN 1743894528,1743896575,CN 1743896576,1743897599,JP 1743897600,1743899647,AU 1743899648,1743900671,ID 1743900672,1743901695,JP 1743902720,1743903743,AU 1743903744,1743904767,CN 1743904768,1743905791,IN 1743905792,1743906815,HK 1743906816,1743908863,IN 1743908864,1743909375,AU 1743909376,1743910911,IN 1743910912,1743911935,VN 1743911936,1743912959,AU 1743912960,1743913983,HK 1743913984,1743915007,JP 1743915008,1743916031,CN 1743916032,1743917055,KH 1743917056,1743918079,MY 1743918080,1743919103,BD 1743919104,1743920127,NZ 1743920128,1743921151,JP 1743921152,1743922175,AU 1743922176,1743923199,NZ 1743923200,1743924223,KH 1743924224,1743925247,MN 1743925248,1743925503,NZ 1743925504,1743925759,AU 1743925760,1743926271,AF 1743926272,1743927295,VN 1743927296,1743928319,KH 1743928320,1743929343,IN 1743929344,1743930367,CN 1743930368,1743931391,NZ 1743931392,1743932415,HK 1743932416,1743933439,IN 1743933440,1743934463,AU 1743935488,1743936511,SG 1743936512,1743937535,AU 1743937536,1743938559,MM 1743938560,1743939583,HK 1743939584,1743940607,ID 1743940608,1743941631,HK 1743941632,1743942655,JP 1743942656,1743944703,IN 1743944704,1743945215,ID 1743945216,1743945727,TO 1743945728,1743947775,CN 1743948800,1743949823,HK 1743949824,1743950847,TH 1743950848,1743951359,HK 1743951360,1743951871,SG 1743951872,1743953919,IN 1743953920,1743954943,CN 1743954944,1743955967,PG 1743955968,1743959039,CN 1743959040,1743959551,ID 1743959552,1743960063,AU 1743960064,1743964159,IN 1743964160,1743965183,CN 1743965184,1743966719,ID 1743966720,1743967231,AU 1743967232,1743968255,CN 1743968256,1743969279,BD 1743969280,1743970303,CN 1743970304,1743971327,IN 1743971328,1743972351,NZ 1743972352,1743972607,IN 1743972608,1743972863,ID 1743972864,1743973119,IN 1743973120,1743973375,AU 1743973376,1743974399,IN 1743974400,1743975423,CN 1743975424,1743976447,NZ 1743976448,1743977471,AU 1743977472,1743978495,JP 1743978496,1743979519,HK 1743980544,1743981567,IN 1743981568,1743982591,SG 1743982592,1743983359,AU 1743983360,1743983615,IN 1743983616,1743984639,KR 1743984640,1743985663,CN 1743985664,1743990783,IN 1743991808,1743994879,IN 1743994880,1743995903,AU 1743995904,1743997951,IN 1743997952,1743999999,BD 1744000000,1744001023,AU 1744001024,1744001535,IN 1744001536,1744001791,NZ 1744001792,1744002047,AU 1744002048,1744003071,HK 1744003072,1744004095,NZ 1744004096,1744005119,HK 1744005120,1744006143,VN 1744006144,1744006655,ID 1744006656,1744006911,AU 1744006912,1744009215,IN 1744009216,1744010239,JP 1744011264,1744012287,HK 1744012288,1744013311,IN 1744013312,1744014335,CN 1744014336,1744015359,BD 1744015360,1744016383,IN 1744016384,1744017407,AU 1744017408,1744018431,JP 1744018432,1744019455,MY 1744019456,1744020479,NZ 1744020480,1744021503,HK 1744021504,1744022527,TH 1744022528,1744023551,SG 1744023552,1744023807,IN 1744023808,1744024319,ID 1744024320,1744024575,AF 1744024576,1744025599,HK 1744025600,1744026623,IN 1744027648,1744028671,MY 1744028672,1744029695,JP 1744029696,1744030719,KR 1744030720,1744031743,NZ 1744031744,1744032767,JP 1744032768,1744033791,MY 1744033792,1744034815,VN 1744034816,1744035839,SG 1744035840,1744039423,IN 1744039424,1744039679,PH 1744039680,1744039935,AU 1744039936,1744040959,JP 1744040960,1744041471,AU 1744041472,1744041983,ID 1744041984,1744043007,TW 1744043008,1744044031,CN 1744044032,1744045055,HK 1744046080,1744047103,SG 1744047104,1744048127,BD 1744048128,1744049151,CN 1744049152,1744050175,BD 1744050176,1744051199,HK 1744051200,1744052223,PH 1744053248,1744054271,ID 1744054272,1744055295,KR 1744055296,1744056319,HK 1744056320,1744056575,IN 1744056576,1744056831,MY 1744056832,1744057087,NZ 1744057088,1744057343,ID 1744057344,1744058879,HK 1744058880,1744066559,CN 1744066560,1744067583,HK 1744067584,1744068607,JP 1744068608,1744069631,ID 1744069632,1744070655,SG 1744070656,1744071679,JP 1744071680,1744072703,KR 1744073728,1744074751,CN 1744074752,1744076799,IN 1744076800,1744077823,AU 1744077824,1744078847,PK 1744078848,1744079871,VN 1744079872,1744080895,BD 1744080896,1744081919,AF 1744081920,1744082943,HK 1744082944,1744083967,IN 1744083968,1744084991,HK 1744084992,1744085503,ID 1744085504,1744085759,BD 1744085760,1744086015,MY 1744086016,1744087039,CN 1744087040,1744088063,IN 1744088064,1744090111,PK 1744090112,1744091135,NZ 1744091136,1744092159,BD 1744092160,1744092671,MY 1744092672,1744092927,IN 1744092928,1744093183,MY 1744094208,1744096255,AU 1744096256,1744097279,ID 1744097280,1744098303,JP 1744098304,1744099327,NZ 1744099328,1744101375,JP 1744101376,1744102399,HK 1744102400,1744103423,FJ 1744103424,1744104447,CN 1744104448,1744105471,AU 1744105472,1744106751,IN 1744106752,1744107007,ID 1744107008,1744107519,SG 1744107520,1744108543,KH 1744108544,1744109567,CN 1744109568,1744110591,IN 1744110592,1744111615,JP 1744111616,1744113663,IN 1744113664,1744114687,ID 1744114688,1744115455,IN 1744115456,1744115711,CN 1744115712,1744116735,MY 1744116736,1744117759,HK 1744117760,1744118783,IN 1744118784,1744119807,SG 1744119808,1744120831,JP 1744120832,1744122879,IN 1744122880,1744123903,CN 1744123904,1744124927,JP 1744124928,1744125951,CN 1744125952,1744127999,IN 1744128000,1744128511,ID 1744128512,1744128767,IN 1744128768,1744129023,AU 1744129024,1744130047,KH 1744130048,1744131071,CN 1744131072,1744132095,AU 1744132096,1744133119,MY 1744133120,1744134143,SG 1744134144,1744135167,BD 1744135168,1744137215,IN 1744137216,1744138239,BD 1744138240,1744140287,IN 1744140288,1744140799,MY 1744140800,1744141311,ID 1744141312,1744143359,CN 1744143360,1744144383,PK 1744144384,1744145407,ID 1744145408,1744146431,BD 1744146432,1744146687,IN 1744146688,1744147199,AU 1744147200,1744147455,IN 1744147456,1744148479,VN 1744148480,1744149503,AU 1744149504,1744150527,IN 1744150528,1744151551,TO 1744151552,1744152319,LA 1744152320,1744152575,TH 1744152576,1744153599,JP 1744153600,1744154623,NZ 1744154880,1744155135,ID 1744155136,1744155647,BD 1744155648,1744156671,ID 1744156672,1744158207,IN 1744158208,1744158719,HK 1744158720,1744159743,PK 1744159744,1744161791,IN 1744161792,1744162815,BD 1744162816,1744163839,HK 1744163840,1744166655,AU 1744166656,1744166911,SG 1744166912,1744167167,JP 1744167168,1744167679,ID 1744167680,1744167935,AU 1744167936,1744171007,JP 1744171008,1744172031,BT 1744172032,1744175103,VN 1744175104,1744176127,ID 1744176128,1744177151,AU 1744177152,1744179199,CN 1744179200,1744180223,TH 1744180224,1744181247,PH 1744181248,1744182271,TH 1744182272,1744184575,AU 1744184576,1744184831,SG 1744184832,1744185087,HK 1744185088,1744185343,JP 1744185344,1744187903,IN 1744187904,1744188159,TH 1744188160,1744188415,AU 1744188416,1744189439,NZ 1744189440,1744190463,KR 1744190464,1744191487,JP 1744191488,1744192511,IN 1744192512,1744193535,JP 1744194560,1744194815,ID 1744194816,1744195071,HK 1744195072,1744195327,SG 1744195328,1744195583,HK 1744195584,1744196607,JP 1744196608,1744197631,IN 1744197632,1744198655,MY 1744198656,1744199679,SG 1744199680,1744199935,US 1744199936,1744201727,AU 1744201728,1744201983,VN 1744202240,1744202495,IN 1744202496,1744202751,ID 1744202752,1744203775,PK 1744203776,1744204799,HK 1744204800,1744205823,ID 1744205824,1744207871,CN 1744207872,1744208127,AU 1744208128,1744208383,ID 1744208384,1744208895,AU 1744208896,1744209919,CN 1744209920,1744210943,AU 1744210944,1744211967,SG 1744211968,1744212991,KH 1744212992,1744213503,SG 1744213504,1744214015,JP 1744214016,1744216063,CN 1744216064,1744217087,HK 1744217088,1744218111,JP 1744218112,1744218367,AU 1744218368,1744218623,ID 1744218624,1744219135,IN 1744220160,1744220927,HK 1744220928,1744221183,JP 1744221184,1744222207,NZ 1744222208,1744222719,ID 1744222720,1744222975,AU 1744223232,1744224255,TH 1744224256,1744226303,IN 1744226304,1744226559,SG 1744226560,1744226595,ID 1744226596,1744226596,SG 1744226597,1744226815,ID 1744226816,1744227327,SG 1744227328,1744228351,MY 1744228352,1744229375,TW 1744229376,1744230399,IN 1744230400,1744230655,HK 1744230656,1744230911,MY 1744230912,1744231423,TW 1744231424,1744232447,VN 1744232448,1744233471,IN 1744233472,1744234495,KH 1744234496,1744234751,JP 1744234752,1744235519,AU 1744235520,1744236543,KR 1744236544,1744237567,IN 1744237568,1744238591,HK 1744238592,1744238847,US 1744238848,1744239615,NZ 1744239616,1744240639,JP 1744240640,1744241663,AU 1744241664,1744242687,IN 1744242688,1744247807,ID 1744247808,1744248831,IN 1744248832,1744249855,ID 1744249856,1744250367,HK 1744250368,1744250879,PH 1744250880,1744251903,ID 1744251904,1744252927,BD 1744252928,1744253951,LK 1744253952,1744254975,IN 1744254976,1744255999,NZ 1744256000,1744257023,TH 1744257024,1744257535,AU 1744257536,1744257791,PK 1744257792,1744258047,AU 1744258048,1744259071,JP 1744259072,1744260095,NZ 1744260096,1744261119,AU 1744261120,1744262143,IN 1744262144,1744264191,JP 1744264192,1744265215,HK 1744265216,1744266239,IN 1744266240,1744267263,ID 1744267264,1744268287,IN 1744268288,1744269311,HK 1744269312,1744270335,TW 1744270336,1744270591,AU 1744270592,1744270847,ID 1744270848,1744271359,AU 1744271360,1744272383,ID 1744272384,1744272895,PK 1744272896,1744273407,ID 1744273408,1744274431,AU 1744274432,1744275455,SG 1744275456,1744278527,HK 1744278528,1744279551,IN 1744279552,1744280575,NZ 1744280576,1744283647,HK 1744283648,1744286719,CN 1744286720,1744286975,SG 1744286976,1744287231,JP 1744287232,1744287743,ID 1744287744,1744288767,AU 1744288768,1744289791,JP 1744289792,1744290815,NZ 1744290816,1744291327,ID 1744291328,1744291583,AF 1744291584,1744291839,SG 1744291840,1744292863,CN 1744292864,1744293887,SG 1744293888,1744294655,IN 1744294656,1744294911,ID 1744294912,1744295935,CN 1744295936,1744296959,ID 1744296960,1744297983,KR 1744297984,1744298495,AU 1744298496,1744299007,ID 1744299008,1744300031,HK 1744300032,1744301055,KR 1744301056,1744301567,AU 1744301568,1744302079,BD 1744302080,1744303103,JP 1744303104,1744303615,ID 1744303616,1744303871,IN 1744303872,1744304127,NZ 1744304128,1744305151,AU 1744305152,1744306175,PH 1744306176,1744306687,CN 1744306688,1744308223,AU 1744308224,1744309247,JP 1744309248,1744310271,BD 1744310272,1744312319,AU 1744312320,1744312575,IN 1744312576,1744312831,ID 1744312832,1744313343,AU 1744313344,1744315391,IN 1744315392,1744316415,HK 1744316416,1744317439,KH 1744317440,1744318463,AU 1744318464,1744319487,JP 1744320512,1744321535,ID 1744321536,1744322559,IN 1744322560,1744323583,CN 1744323584,1744324607,JP 1744324608,1744325631,IN 1744325632,1744326655,HK 1744326656,1744328703,IN 1744329728,1744330751,IN 1744330752,1744331263,AU 1744331264,1744331775,SG 1744331776,1744332799,CN 1744332800,1744333823,KR 1744333824,1744334847,HK 1744334848,1744337919,IN 1744337920,1744338943,CN 1744338944,1744339967,AU 1744339968,1744340991,SG 1744342016,1744343039,HK 1744343040,1744343551,SG 1744343552,1744343807,ID 1744343808,1744344063,AU 1744344064,1744345087,JP 1744345088,1744346111,CN 1744346112,1744347135,IN 1744347136,1744349183,VN 1744349184,1744350207,CN 1744350208,1744351231,IN 1744351232,1744352255,NZ 1744352256,1744354303,HK 1744354304,1744355327,AU 1744355328,1744356351,CN 1744357376,1744357631,NZ 1744357632,1744357887,AU 1744358400,1744359423,BD 1744359424,1744360447,IN 1744360448,1744361471,CN 1744361472,1744362495,ID 1744362496,1744365567,CN 1744365568,1744366591,IN 1744366592,1744367615,BD 1744367616,1744368639,HK 1744368640,1744369663,IN 1744369664,1744369919,ID 1744369920,1744370175,AU 1744370432,1744370687,JP 1744370688,1744371711,HK 1744371712,1744372735,BD 1744372736,1744373759,IN 1744373760,1744375807,CN 1744375808,1744376831,IN 1744376832,1744377855,VN 1744377856,1744378879,IN 1744378880,1744379903,KR 1744379904,1744380927,HK 1744380928,1744383999,IN 1744384000,1744384000,AU 1744384001,1744384031,GU 1744384032,1744384039,AU 1744384040,1744384047,GU 1744384048,1744385023,AU 1744385024,1744386047,CN 1744386048,1744386303,BD 1744386304,1744386559,AU 1744386560,1744387071,ID 1744387072,1744388095,NZ 1744388096,1744388607,ID 1744388608,1744390143,AU 1744390144,1744391167,HK 1744391168,1744393215,IN 1744393216,1744394239,MY 1744394240,1744395263,IN 1744395264,1744396287,MY 1744396288,1744397311,IN 1744397312,1744398335,VN 1744398336,1744399359,CN 1744399360,1744400383,HK 1744400384,1744402431,JP 1744402432,1744403455,IN 1744403456,1744404479,AU 1744404480,1744405503,CN 1744405504,1744406527,IN 1744406528,1744407551,CN 1744407552,1744408575,AU 1744408576,1744409599,CN 1744409600,1744410623,AU 1744410624,1744411647,PK 1744411648,1744412671,LA 1744412672,1744413695,TW 1744413696,1744417791,CN 1744417792,1744418815,IN 1744418816,1744419839,JP 1744419840,1744421887,CN 1744421888,1744422911,HK 1744422912,1744423935,JP 1744423936,1744424959,IN 1744424960,1744425471,MY 1744425472,1744425727,ID 1744425728,1744425983,IN 1744425984,1744428031,JP 1744428032,1744429567,AU 1744429568,1744429823,IN 1744429824,1744430079,ID 1744430080,1744431103,PK 1744431104,1744434175,IN 1744434176,1744435199,CN 1744435200,1744436223,IN 1744436224,1744437247,CN 1744437248,1744438271,KI 1744439296,1744439807,AU 1744439808,1744440319,IN 1744440320,1744441343,HK 1744441344,1744442367,IN 1744442368,1744443391,AU 1744443392,1744444415,VN 1744444416,1744445439,IN 1744445440,1744446463,CN 1744446464,1744447743,IN 1744447744,1744447999,HK 1744448000,1744448511,BD 1744448512,1744449535,IN 1744449536,1744450559,NZ 1744450560,1744451583,HK 1744451584,1744452607,SG 1744452608,1744453119,AU 1744453120,1744453375,IN 1744453376,1744453631,AU 1744453632,1744454655,SG 1744454656,1744455679,BD 1744455680,1744456703,JP 1744456704,1744459775,IN 1744459776,1744460799,NZ 1744460800,1744461823,JP 1744463872,1744464895,CN 1744464896,1744465919,JP 1744465920,1744466943,IN 1744466944,1744467967,NZ 1744467968,1744468991,JP 1744468992,1744470015,CN 1744470016,1744471039,TH 1744471040,1744472063,NP 1744472064,1744473087,IN 1744473088,1744473343,TW 1744473344,1744474111,SG 1744474112,1744481279,IN 1744481280,1744482303,JP 1744482304,1744483327,HK 1744483328,1744484351,CN 1744484352,1744486399,IN 1744486400,1744487423,CN 1744487424,1744487935,TH 1744487936,1744488191,NZ 1744488192,1744488447,ID 1744488448,1744489471,JP 1744489472,1744490495,NZ 1744490496,1744491519,IN 1744491520,1744492543,AU 1744492544,1744493567,CN 1744494080,1744494591,PK 1744494592,1744495615,CN 1744495616,1744497663,NZ 1744497664,1744498687,CN 1744498688,1744500735,AU 1744500736,1744502783,CN 1744502784,1744503807,MY 1744503808,1744504831,AU 1744505856,1744506367,AU 1744506368,1744506623,ID 1744506624,1744506879,AU 1744506880,1744510975,IN 1744510976,1744511999,CN 1744512000,1744513023,HK 1744513024,1744513535,ID 1744513536,1744513791,AU 1744513792,1744514047,IN 1744514048,1744514559,ID 1744514560,1744514815,IN 1744514816,1744515071,AU 1744515072,1744516095,IN 1744517120,1744519167,IN 1744519168,1744520191,AU 1744520192,1744521215,TH 1744521216,1744523263,JP 1744523264,1744524287,IN 1744524288,1744525311,CN 1744525312,1744526335,HK 1744526336,1744527359,IN 1744527360,1744528383,CN 1744528384,1744529407,IN 1744529408,1744530431,KR 1744530432,1744530943,SG 1744530944,1744531455,AU 1744531456,1744532479,HK 1744532480,1744533503,JP 1744533504,1744534527,BD 1744534528,1744536575,CN 1744536576,1744537087,PW 1744537088,1744538623,AU 1744539648,1744540671,AU 1744540672,1744541695,IN 1744541696,1744542719,ID 1744542720,1744543743,JP 1744543744,1744544767,CN 1744544768,1744545791,HK 1744545792,1744546047,NZ 1744546048,1744547839,AU 1744547840,1744548863,AF 1744548864,1744549887,ID 1744549888,1744551935,IN 1744551936,1744552959,CN 1744552960,1744553471,SG 1744553472,1744553983,HK 1744553984,1744555007,MY 1744555008,1744556031,CN 1744556032,1744562175,IN 1744562176,1744563199,BD 1744563200,1744564223,HK 1744564224,1744565247,CN 1744566272,1744567295,IN 1744567296,1744568319,JP 1744568320,1744569343,VN 1744569344,1744570367,IN 1744570880,1744571391,AU 1744571392,1744571903,ID 1744571904,1744572415,AU 1744572416,1744573439,HK 1744573440,1744574463,ID 1744574464,1744575487,IN 1744575488,1744576511,CN 1744577536,1744578559,CN 1744578560,1744580607,IN 1744580608,1744580863,PH 1744580864,1744581119,SG 1744581120,1744581631,ID 1744582656,1744583679,AU 1744583680,1744584703,IN 1744584704,1744585727,CN 1744585728,1744586751,TW 1744586752,1744588799,HK 1744588800,1744589823,PK 1744589824,1744590079,BT 1744590080,1744590335,ID 1744590336,1744590591,IN 1744590592,1744590847,AU 1744590848,1744591871,HK 1744591872,1744592895,IN 1744593920,1744594431,ID 1744594432,1744594943,AU 1744594944,1744595967,CN 1744595968,1744596991,IN 1744596992,1744597123,SG 1744597124,1744597124,US 1744597125,1744597151,SG 1744597152,1744597183,IN 1744597184,1744597215,JP 1744597216,1744598015,SG 1744599040,1744601087,JP 1744602112,1744603135,HK 1744603136,1744604159,JP 1744604160,1744607231,IN 1744607232,1744608255,AU 1744608256,1744609791,IN 1744609792,1744610047,HK 1744610048,1744610303,ID 1744610304,1744612351,IN 1744612352,1744613375,CN 1744614400,1744615423,JP 1744615424,1744616447,IN 1744616448,1744616959,ID 1744616960,1744617471,AU 1744617472,1744618495,IN 1744619520,1744620543,SG 1744620544,1744622591,CN 1744622592,1744624639,IN 1744624640,1744625663,NL 1744626688,1744627711,KR 1744627712,1744628735,CN 1744628736,1744629759,IN 1744629760,1744630783,HK 1744630784,1744631039,TW 1744631040,1744631295,IN 1744631296,1744631551,AU 1744631552,1744631807,NZ 1744631808,1744632831,CN 1744632832,1744633855,VN 1744633856,1744634879,ID 1744634880,1744635903,CN 1744635904,1744636927,HK 1744636928,1744637951,MY 1744637952,1744638975,JP 1744638976,1744639999,IN 1744640000,1744641023,SG 1744641024,1744643583,IN 1744643584,1744644095,BD 1744644096,1744645119,HK 1744645120,1744646143,BD 1744647168,1744648191,IN 1744648192,1744649215,KR 1744649216,1744650239,CN 1744650240,1744651263,AU 1744651264,1744651775,ID 1744651776,1744652287,IN 1744652288,1744653311,TH 1744653312,1744655871,JP 1744655872,1744656383,ID 1744656384,1744657407,VN 1744657408,1744658431,AU 1744658432,1744659455,HK 1744660480,1744660735,IN 1744660736,1744660991,MY 1744660992,1744661503,ID 1744661504,1744662527,MY 1744662528,1744663551,ID 1744663552,1744663807,NZ 1744663808,1744664063,TH 1744664064,1744664575,AU 1744664576,1744665599,HK 1744665600,1744665855,ID 1744665856,1744666111,IN 1744666112,1744666367,AU 1744666368,1744666623,PH 1744667648,1744668671,TH 1744668672,1744669695,NZ 1744669696,1744670719,HK 1744670720,1744671743,SG 1744671744,1744673791,IN 1744673792,1744674815,PK 1744674816,1744675839,BD 1744676352,1744678911,IN 1744678912,1744679935,JP 1744679936,1744680959,KH 1744680960,1744681983,TW 1744681984,1744683007,JP 1744683008,1744685055,AU 1744685056,1744686079,IN 1744686080,1744687103,CN 1744687104,1744688127,IN 1744688128,1744689151,ID 1744689152,1744690175,JP 1744690176,1744692223,CN 1744692224,1744693247,IN 1744693248,1744694271,CN 1744694272,1744695295,HK 1744696320,1744697343,PH 1744697344,1744698367,HK 1744698368,1744699391,KH 1744699392,1744700415,NZ 1744700416,1744701439,AU 1744701440,1744702463,CN 1744702464,1744704511,VN 1744704512,1744705535,CN 1744705536,1744705791,AU 1744705792,1744706047,ID 1744706048,1744706303,BD 1744706304,1744708607,IN 1744708608,1744709631,PH 1744709632,1744710655,VN 1744710656,1744711679,SG 1744711680,1744712191,ID 1744712192,1744712447,AU 1744712448,1744712703,ID 1744712704,1744714751,IN 1744714752,1744715775,JP 1744715776,1744719871,CN 1744719872,1744720895,IN 1744720896,1744721919,BD 1744721920,1744723455,AU 1744723456,1744723711,BD 1744723712,1744723967,ID 1744723968,1744726015,IN 1744726016,1744727039,ID 1744727040,1744728063,HK 1744728064,1744729087,CN 1744729088,1744730111,HK 1744730112,1744731135,MN 1744731136,1744731647,IN 1744731648,1744732159,ID 1744732160,1744733183,IN 1744733184,1744734207,NZ 1744734208,1744736255,AU 1744736256,1744737279,JP 1744737280,1744738303,HK 1744738304,1744739327,SG 1744739328,1744740351,NZ 1744740352,1744741375,IN 1744741376,1744741887,AU 1744741888,1744742143,AF 1744742144,1744742399,BD 1744742400,1744743423,ID 1744743424,1744744447,IN 1744744448,1744745471,CN 1744745472,1744747519,NP 1744747520,1744748543,CN 1744749056,1744749567,NZ 1744749568,1744749823,CN 1744750592,1744752639,IN 1744752640,1744753663,HK 1744753664,1744754687,SG 1744754688,1744755711,VN 1744755712,1744756735,HK 1744756736,1744757759,PF 1744757760,1744758271,NZ 1744758272,1744758527,IN 1744758528,1744758783,NZ 1744758784,1744759807,PF 1744759808,1744762879,IN 1744763904,1744764927,HK 1744764928,1744765951,JP 1744765952,1744766975,PK 1744766976,1744767999,IN 1744768000,1744768255,ID 1744768256,1744768511,TH 1744768512,1744769023,ID 1744769024,1744770047,AU 1744770048,1744771071,JP 1744771072,1744772095,NZ 1744772096,1744772351,IN 1744772352,1744772607,ID 1744772608,1744772863,BD 1744772864,1744773119,AU 1744773120,1744774143,SG 1744774144,1744776191,IN 1744776192,1744777215,HK 1744777216,1744778239,AU 1744778240,1744778751,ID 1744778752,1744779263,AU 1744780288,1744781311,HK 1744781312,1744782335,JP 1744782336,1744783359,CN 1744783360,1744786431,IN 1744786432,1744787455,VN 1744787456,1744789503,CN 1744789504,1744792575,IN 1744792576,1744793599,PK 1744793600,1744794623,IN 1744794624,1744795647,KH 1744795648,1744797183,ID 1744797184,1744797439,NP 1744797440,1744797695,HK 1744797696,1744798719,PK 1744799744,1744801791,CN 1744801792,1744802815,IN 1744802816,1744803839,PK 1744803840,1744804863,PH 1744804864,1744805375,ID 1744805376,1744808447,IN 1744808448,1744808959,MY 1744808960,1744809983,MM 1744809984,1744811007,HK 1744811008,1744812031,IN 1744812032,1744813055,CN 1744813056,1744816127,IN 1744816128,1744817151,CN 1744817152,1744818175,IN 1744818176,1744820223,CN 1744820224,1744823295,IN 1744823296,1744824319,CN 1744824320,1744825343,IN 1744825344,1744826367,VN 1744826368,1744827391,ID 1744827392,1744828415,JP 1744828416,1744828927,AU 1744828928,1744829183,SG 1744829184,1744829439,AU 1744829440,1744830463,HK 1744830464,1745410303,US 1745410304,1745410559,PL 1745410560,1747191807,US 1747191808,1747193855,CA 1747193856,1747215359,US 1747215360,1747216383,CA 1747216384,1747219455,US 1747219456,1747220479,CA 1747220480,1747227647,US 1747227648,1747228671,CA 1747228672,1747230719,US 1747231744,1747235839,US 1747235840,1747236863,CA 1747236864,1747255807,US 1747255808,1747256063,CN 1747256064,1747256319,US 1747256320,1747256575,IE 1747256576,1747256831,AU 1747256832,1747257087,AE 1747257088,1747257343,IN 1747257344,1747260415,US 1747260416,1747261439,CA 1747261440,1747270655,US 1747270656,1747272703,CA 1747272704,1747273727,US 1747273728,1747274751,CA 1747274752,1747275775,US 1747275776,1747276799,CA 1747276800,1747283967,US 1747283968,1747284991,CA 1747284992,1747293183,US 1747293184,1747294207,CA 1747294208,1747304447,US 1747304448,1747308543,CA 1747308544,1747316735,US 1747316736,1747317759,CA 1747317760,1747485016,US 1747485017,1747485017,NL 1747485018,1747500223,US 1747500224,1747500224,IE 1747500225,1747517439,US 1747517440,1747521535,BR 1747521536,1747521791,US 1747521792,1747522303,BR 1747522304,1747525631,US 1747525632,1747527679,BR 1747527680,1747558399,US 1747558400,1747566591,JP 1747566592,1747763679,US 1747763680,1747763711,AU 1747763712,1747767887,US 1747767888,1747767903,AU 1747767904,1747767919,JP 1747767920,1747767935,AU 1747767936,1747767951,JP 1747767952,1747770623,US 1747770624,1747770655,JP 1747770656,1747770687,SG 1747770688,1747770719,JP 1747770720,1747770751,IE 1747770752,1747770815,AT 1747770816,1747770943,US 1747770944,1747771007,SE 1747771008,1747771071,AU 1747771072,1747771135,OM 1747771136,1747779583,US 1747779584,1747795967,NL 1747795968,1747801855,US 1747801856,1747802111,IE 1747802112,1747853924,US 1747853925,1747853925,NL 1747853926,1749061631,US 1749061632,1749069823,NL 1749069824,1749094399,US 1749094400,1749098495,NL 1749098496,1749172223,US 1749172224,1749188607,NL 1749188608,1749196799,US 1749196800,1749204991,NL 1749204992,1749213183,US 1749213184,1749237759,NL 1749237760,1749327871,US 1749327872,1749344255,NL 1749344256,1749364735,US 1749364736,1749389311,NL 1749389312,1749397503,US 1749397504,1749406719,NL 1749406720,1749413887,US 1749413888,1749422079,NL 1749422080,1749449727,US 1749449728,1749450239,NL 1749450240,1749476863,US 1749476864,1749496319,NL 1749496320,1749497855,US 1749497856,1749499391,NL 1749499392,1749508095,US 1749508096,1749516287,NL 1749516288,1749516799,US 1749516800,1749517055,NL 1749517056,1749517311,US 1749517312,1749518335,NL 1749518336,1749519871,US 1749519872,1749520383,NL 1749520384,1749528575,US 1749528576,1749539327,NL 1749539328,1749540863,US 1749540864,1749549055,NL 1749549056,1749586943,US 1749586944,1749588479,NL 1749588480,1749590015,US 1749590016,1749598207,NL 1749598208,1749685247,US 1749685248,1749686783,NL 1749686784,1749696511,US 1749696512,1749698047,NL 1749698048,1749698559,US 1749698560,1749718015,NL 1749718016,1749749247,US 1749749248,1749749759,NL 1749749760,1749757951,US 1749757952,1749767167,NL 1749767168,1749767679,US 1749767680,1749769215,NL 1749769216,1749770239,US 1749770240,1749778431,NL 1749778432,1749816831,US 1749816832,1749818367,NL 1749818368,1749819391,US 1749819392,1749827583,NL 1749827584,1749837823,US 1749837824,1749838847,NL 1749838848,1749862143,US 1749862144,1749862399,NL 1749862400,1749863423,US 1749863424,1749863679,NL 1749863680,1749866239,US 1749866240,1749866495,NL 1749866496,1749867263,US 1749867264,1749867519,NL 1749867520,1749868031,US 1749868032,1749868287,NL 1749868288,1750079999,US 1750080000,1750081535,NL 1750081536,1750089727,US 1750089728,1750106111,NL 1750106112,1750241279,US 1750241280,1750252543,NL 1750252544,1750253567,US 1750253568,1750261759,NL 1750261760,1750270975,US 1750270976,1750290943,NL 1750290944,1750292479,US 1750292480,1750294527,NL 1750294528,1750302719,US 1750302720,1750321663,NL 1750321664,1750323199,US 1750323200,1750331391,NL 1750331392,1750372351,US 1750372352,1750373375,NL 1750373376,1750374399,US 1750374400,1750374911,NL 1750374912,1750494719,US 1750494720,1750495231,NL 1750495232,1750515199,US 1750515200,1750515711,NL 1750515712,1750523903,US 1750523904,1750533119,NL 1750533120,1750581247,US 1750581248,1750597631,NL 1750597632,1750705151,US 1750705152,1750724607,NL 1750724608,1751505919,US 1751505920,1751506175,IN 1751506176,1751506431,HK 1751506432,1753251839,US 1753251840,1753252095,MN 1753252096,1753252351,SY 1753252352,1753252607,BY 1753252608,1753252863,PK 1753252864,1753253119,SD 1753253120,1753253375,LK 1753253376,1753253631,ID 1753253632,1753253887,LB 1753253888,1753254143,OM 1753254144,1753254399,MT 1753254400,1753254655,MK 1753254656,1753254911,MY 1753254912,1753255167,AL 1753255168,1753255423,NP 1753255424,1753255679,DZ 1753255680,1753255935,KZ 1753255936,1753260031,CA 1753260032,1753280511,US 1753280512,1753284607,CA 1753284608,1753309183,US 1753309184,1753317375,CA 1753317376,1753341951,US 1753341952,1753346047,CA 1753346048,1753483263,US 1753483264,1753483519,IE 1753483520,1753483775,IL 1753483776,1753484607,US 1753484608,1753484655,BR 1753484656,1753486335,US 1753486336,1753486591,IN 1753486592,1753487359,US 1753487360,1753487615,CH 1753487616,1753489407,US 1753489408,1753489663,GB 1753489664,1753490175,US 1753490176,1753490431,AU 1753490432,1753490687,IL 1753490688,1753494527,US 1753494528,1753494783,IL 1753494784,1753516543,US 1753516544,1753516799,ES 1753516800,1753517567,US 1753517568,1753517823,NO 1753517824,1753522431,US 1753522432,1753522687,FR 1753522688,1753735167,US 1753735168,1753743359,IE 1753743360,1754136575,US 1754136576,1754169343,CA 1754169344,1754206719,US 1754206720,1754206975,GW 1754206976,1754207231,RW 1754207232,1754207487,GA 1754207488,1754207743,KI 1754207744,1754207999,MM 1754208000,1754208255,VU 1754208256,1754208326,NA 1754208327,1754208327,AO 1754208328,1754208353,NA 1754208354,1754208354,AO 1754208355,1754208511,NA 1754208512,1754208767,DJ 1754208768,1754209023,BF 1754209024,1754209279,BW 1754209280,1754209535,PW 1754209536,1754209791,BR 1754209792,1754210047,AR 1754210048,1754210303,BJ 1754210304,1754223615,US 1754223616,1754223623,MX 1754223624,1754223631,AU 1754223632,1754230783,US 1754230784,1754234879,VG 1754234880,1754251519,US 1754251520,1754251775,LY 1754251776,1754252031,US 1754252032,1754252287,MR 1754252288,1754252543,US 1754252544,1754252799,MZ 1754252800,1754253055,US 1754253056,1754253311,GN 1754253312,1754253567,US 1754253568,1754253823,ML 1754253824,1754254079,US 1754254080,1754254335,SO 1754254336,1754254591,CD 1754254592,1754254847,US 1754254848,1754255103,VE 1754255104,1754255359,US 1754255360,1754255615,EC 1754255616,1754255871,US 1754255872,1754256127,PY 1754256128,1754256383,US 1754256384,1754256639,BO 1754256640,1754256895,US 1754256896,1754257151,UY 1754257152,1754257407,US 1754257408,1754257663,TZ 1754257664,1754257919,US 1754257920,1754258175,TD 1754258176,1754258431,US 1754258432,1754258687,MG 1754258688,1754258943,US 1754258944,1754259199,TN 1754259200,1754333183,US 1754333184,1754337279,CA 1754337280,1754394367,US 1754394368,1754394623,CA 1754394624,1754792959,US 1754792960,1754793983,CA 1754793984,1754799103,US 1754799104,1754800127,CA 1754800128,1754822655,US 1754822656,1754823679,CA 1754823680,1754830847,US 1754830848,1754831871,CA 1754831872,1754832895,US 1754832896,1754835967,CA 1754835968,1754840743,US 1754840744,1754840751,RO 1754840752,1754845183,US 1754845184,1754846207,CA 1754846208,1754849279,US 1754849280,1754850303,CA 1754850304,1754852351,US 1754852352,1754853375,JM 1754853376,1754863615,US 1754863616,1754864639,CA 1754864640,1754869759,US 1754869760,1754870783,CA 1754870784,1754871807,US 1754871808,1754872831,CA 1754872832,1754890239,US 1754890240,1754892287,BB 1754892288,1754894335,CA 1754894336,1754899455,US 1754899456,1754900479,CA 1754900480,1754911743,US 1754911744,1754912767,CA 1754912768,1754920959,US 1754920960,1754921983,DM 1754921984,1755062271,US 1755062272,1755066367,CA 1755066368,1755070463,US 1755070464,1755074559,CA 1755074560,1755103487,US 1755103488,1755103743,MH 1755103744,1755103999,US 1755104000,1755104255,ZM 1755104256,1755104511,US 1755104512,1755104767,HT 1755104768,1755105023,US 1755105024,1755105279,BB 1755105280,1755106047,US 1755106048,1755106303,SR 1755106304,1755106559,US 1755106560,1755106815,BZ 1755106816,1755107071,US 1755107072,1755107327,MW 1755107328,1755107583,US 1755107584,1755107839,DM 1755107840,1755108095,US 1755108096,1755108351,NE 1755108352,1755108607,US 1755108608,1755108863,AG 1755108864,1755109119,US 1755109120,1755109375,TL 1755109376,1755109631,US 1755109632,1755109887,HN 1755109888,1755110143,US 1755110144,1755110399,SB 1755110400,1755110655,US 1755110656,1755110911,JO 1755110912,1755111167,US 1755111168,1755111423,SD 1755111424,1755113471,US 1755113472,1755113983,AU 1755113984,1755115007,US 1755115008,1755115519,JP 1755115520,1755119615,US 1755119616,1755283455,CA 1755283456,1755365375,US 1755365376,1755373567,CA 1755373568,1755512831,US 1755512832,1755578367,CA 1755578368,1755717631,US 1755717632,1755721727,BS 1755721728,1755734271,US 1755734272,1755734527,LB 1755734528,1755734783,BS 1755734784,1755735295,US 1755735296,1755735551,KE 1755735552,1755735807,MA 1755735808,1755736063,CN 1755736064,1755736319,US 1755736320,1755736575,MX 1755736576,1755736831,AW 1755736832,1755737087,US 1755737088,1755737343,GH 1755737344,1755737599,IN 1755737600,1755737855,MO 1755737856,1755738111,MT 1755738112,1755738367,QA 1755738368,1755738623,YE 1755738624,1755738879,GR 1755738880,1755739135,US 1755739136,1755739391,BH 1755739392,1755739647,CO 1755739648,1755739903,OM 1755739904,1755740159,BN 1755740160,1755740415,SC 1755740416,1755740671,SY 1755740672,1755741183,US 1755741184,1755741439,PA 1755741440,1755741695,BZ 1755741696,1755741951,IM 1755741952,1755742207,NG 1755742208,1755799551,US 1755799552,1755807743,CA 1755807744,1755824127,US 1755824128,1755824383,TV 1755824384,1755824639,SY 1755824640,1755824895,ZW 1755824896,1755825151,US 1755825152,1755825407,GM 1755825408,1755825663,AO 1755825664,1755825919,LB 1755825920,1755826175,MW 1755826176,1755826431,CV 1755826432,1755826687,TZ 1755826688,1755826943,KM 1755826944,1755827199,MN 1755827200,1755827455,CG 1755827456,1755827711,FM 1755827712,1755827967,SB 1755827968,1755828223,BI 1755828224,1755828479,CD 1755828480,1755828735,NE 1755828736,1755828991,NP 1755828992,1755829247,PK 1755829248,1755829503,KZ 1755829504,1755829759,OM 1755829760,1755830015,CN 1755830016,1755830271,ST 1755830272,1755830527,LR 1755830528,1755830783,JP 1755830784,1755831039,SD 1755831040,1755831295,MU 1755831296,1755831551,GQ 1755831552,1755831807,MK 1755831808,1755832063,TL 1755832064,1755832319,ML 1755832320,1755832575,DZ 1755832576,1755832831,MM 1755832832,1755833087,NR 1755833088,1755833343,SA 1755833344,1755833599,IN 1755833600,1755833855,BY 1755833856,1755834111,SZ 1755834112,1755834367,CN 1755834368,1755834623,TN 1755834624,1755834879,AS 1755834880,1755835135,PG 1755835136,1755835391,PR 1755835392,1755835647,BA 1755835648,1755835903,US 1755835904,1755836159,GN 1755836160,1755836415,FJ 1755836416,1755836671,MH 1755836672,1755836927,SL 1755836928,1755837183,LK 1755837184,1755837439,MG 1755837440,1755837695,ME 1755837696,1755837951,MR 1755837952,1755838207,SO 1755838208,1755838463,UA 1755838464,1755838719,LY 1755838720,1755838975,TO 1755838976,1755839231,TD 1755839232,1755839487,MZ 1755839488,1755839743,ZM 1755839744,1755839999,ER 1755840000,1755840255,AL 1755840256,1755840511,RU 1755840512,1756049407,US 1756049408,1756053503,CA 1756053504,1756066719,US 1756066720,1756066751,RO 1756066752,1756067663,US 1756067664,1756067671,RO 1756067672,1756068447,US 1756068448,1756068479,RO 1756068480,1756069439,US 1756069440,1756069471,RO 1756069472,1756069567,US 1756069568,1756069599,RO 1756069600,1756069695,US 1756069696,1756069727,RO 1756069728,1756069815,US 1756069816,1756069823,RO 1756069824,1756086271,US 1756086272,1756090367,CA 1756090368,1757417471,US 1757417472,1757419519,CA 1757419520,1757424639,US 1757424640,1757425663,CA 1757425664,1757426687,US 1757426688,1757427711,CA 1757427712,1757432831,US 1757433856,1757443071,US 1757443072,1757446143,CA 1757446144,1757447167,US 1757447168,1757447343,CA 1757447344,1757447344,US 1757447345,1757448191,CA 1757448192,1757450239,US 1757450240,1757451263,CA 1757451264,1757452287,US 1757452288,1757453311,CA 1757453312,1757457407,US 1757457408,1757458431,CA 1757458432,1757460479,US 1757460480,1757462527,VI 1757462528,1757472767,US 1757472768,1757473791,CA 1757473792,1757487103,US 1757487104,1757489151,CA 1757489152,1757491199,US 1757491200,1757497343,CA 1757497344,1757502463,US 1757502464,1757503487,CA 1757503488,1757505535,US 1757505536,1757506559,CA 1757506560,1757512703,US 1757512704,1757513727,CA 1757513728,1757522943,US 1757522944,1757523967,CA 1757523968,1757529087,US 1757529088,1757530111,AI 1757530112,1757532159,US 1757532160,1757534207,CA 1757534208,1757543295,US 1757543296,1757543327,AU 1757543328,1757552639,US 1757552640,1757560831,CA 1757560832,1757596415,US 1757596416,1757596671,AU 1757596672,1757597695,US 1757597696,1757599743,GB 1757599744,1757642751,US 1757642752,1757675519,CA 1757675520,1757937663,US 1757937664,1757941759,CA 1757941760,1757957631,US 1757957632,1757957887,NL 1757957888,1757958143,US 1757958144,1757962239,CA 1757962240,1757966335,BB 1757966336,1758199807,US 1758199808,1758330879,CA 1758330880,1758412799,US 1758412800,1758413055,BG 1758413056,1758413311,SE 1758413312,1758413567,PS 1758413568,1758414335,US 1758414336,1758414591,LV 1758414592,1758414847,IN 1758414848,1758415103,US 1758415104,1758415359,GB 1758415360,1758415615,FR 1758415616,1758415871,CY 1758415872,1758416127,IT 1758416128,1758416383,US 1758416384,1758416639,CF 1758416640,1758416895,US 1758416896,1758417151,VC 1758417152,1758417407,ID 1758417408,1758417663,CL 1758417664,1758417919,HK 1758417920,1758418175,DE 1758418176,1758418431,US 1758418432,1758418687,CN 1758418688,1758418943,BL 1758418944,1758419199,US 1758419200,1758419455,CR 1758419456,1758420223,US 1758420224,1758420479,HU 1758420480,1758420735,CH 1758420736,1758420991,MM 1758420992,1758429695,US 1758429696,1758430207,DE 1758430208,1759128575,US 1759128576,1759129599,CA 1759129600,1759131647,US 1759131648,1759133695,CA 1759133696,1759138815,US 1759138816,1759139839,CA 1759139840,1759140863,US 1759140864,1759141887,CA 1759141888,1759149055,US 1759149056,1759150079,CA 1759150080,1759160319,US 1759160320,1759162367,BM 1759162368,1759163391,BB 1759163392,1759166463,US 1759166464,1759167511,CA 1759167512,1759172607,US 1759172608,1759173631,VC 1759173632,1759178751,US 1759178752,1759179775,PR 1759179776,1759184639,US 1759184640,1759184895,AU 1759184896,1759186943,CA 1759186944,1759188991,US 1759188992,1759190015,VC 1759190016,1759191039,PR 1759191040,1759201279,US 1759201280,1759202303,VG 1759202304,1759208447,US 1759208448,1759209471,CA 1759209472,1759212543,US 1759212544,1759217663,CA 1759217664,1759222783,US 1759222784,1759223807,CA 1759223808,1759230975,US 1759230976,1759233023,CA 1759233024,1759234047,US 1759234048,1759236095,CA 1759236096,1759239167,US 1759239168,1759240191,CA 1759240192,1759313919,US 1759313920,1759346687,CA 1759346688,1759408127,US 1759408128,1759412223,CA 1759412224,1759412991,US 1759412992,1759413247,AU 1759413248,1759414271,US 1759414272,1759414527,SE 1759414528,1759415295,US 1759415296,1759415551,SG 1759415552,1759416575,US 1759416576,1759416831,HK 1759416832,1759417599,US 1759417600,1759417855,FR 1759417856,1759428607,US 1759428608,1759428863,LB 1759428864,1759429119,US 1759429120,1759429375,LK 1759429376,1759429631,MO 1759429632,1759429887,CN 1759429888,1759430143,DK 1759430144,1759430399,QA 1759430400,1759430655,BA 1759430656,1759430911,AR 1759430912,1759431167,MX 1759431168,1759431423,AW 1759431424,1759431679,BZ 1759431680,1759431935,BS 1759431936,1759432191,IN 1759432192,1759432447,HR 1759432448,1759432703,OM 1759432704,1759432959,PK 1759432960,1759433215,PS 1759433216,1759433471,SA 1759433472,1759433983,US 1759433984,1759434239,MA 1759434240,1759434495,DE 1759434496,1759434751,JP 1759434752,1759435007,SY 1759435008,1759435263,US 1759435264,1759435519,HK 1759435520,1759435775,IQ 1759435776,1759436031,KE 1759436032,1759436287,AE 1759436288,1759510527,US 1759510528,1759510783,VE 1759510784,1759511039,AG 1759511040,1759511295,GT 1759511296,1759511551,VC 1759511552,1759511807,PY 1759511808,1759512063,JM 1759512064,1759512319,MS 1759512320,1759512575,GD 1759512576,1759512831,LC 1759512832,1759513087,HT 1759513088,1759513343,EC 1759513344,1759513599,KN 1759513600,1759513855,SR 1759513856,1759514111,NI 1759514112,1759514367,BB 1759514368,1759514623,PE 1759514624,1759514879,KY 1759514880,1759515135,TT 1759515136,1759515391,GY 1759515392,1759515647,BO 1759515648,1759515903,CU 1759515904,1759516159,DM 1759516160,1759516415,SH 1759516416,1759516671,BM 1759516672,1759516927,FJ 1759516928,1759517183,HN 1759517184,1759517439,GL 1759517440,1759517695,MQ 1759517696,1759517951,GF 1759517952,1759518207,MF 1759518208,1759518463,BZ 1759518464,1759518719,GP 1759518720,1759518975,AW 1759518976,1759519231,AI 1759519232,1759519487,BL 1759519488,1759519743,CO 1759519744,1759519999,TC 1759520000,1759520255,VG 1759520256,1759520511,WF 1759520512,1759520767,US 1759520768,1759521023,SV 1759521024,1759521279,TK 1759521280,1759521535,SJ 1759521536,1759521791,PM 1759521792,1759522047,GS 1759522048,1759522303,DO 1759522304,1759522559,RE 1759522560,1759522815,PN 1759522816,1759523071,MP 1759523072,1759523327,NF 1759523328,1759523583,PR 1759523584,1759523839,NU 1759523840,1759524095,NC 1759524096,1759524351,NL 1759524352,1759524607,CX 1759524608,1759524863,BS 1759524864,1759525119,PF 1759525120,1759525375,CK 1759525376,1759525631,TF 1759525632,1759525887,FK 1759525888,1759526143,GG 1759526144,1759526399,CC 1759526400,1759526655,JE 1759526656,1759526911,FO 1759526912,1759535103,US 1759535104,1759543295,CA 1759543296,1759547391,US 1759547392,1759548415,NL 1759548416,1760047103,US 1760047104,1760051199,CA 1760051200,1760083967,US 1760083968,1760086015,SE 1760086016,1760088063,GB 1760088064,1760116735,US 1760116736,1760133119,CA 1760133120,1760165887,US 1760165888,1760231423,CA 1760231424,1760383743,US 1760383744,1760383999,MO 1760384000,1760384255,GB 1760384256,1760384511,BZ 1760384512,1760384767,US 1760384768,1760385023,KE 1760385024,1760385279,US 1760385280,1760385535,SG 1760385536,1760385791,US 1760385792,1760386047,HK 1760386048,1760386303,US 1760386304,1760386559,GB 1760386560,1760386815,US 1760386816,1760387071,HK 1760387072,1760440831,US 1760440832,1760441343,AU 1760441344,1760443391,US 1760443392,1760444415,DE 1760444416,1760465919,US 1760465920,1760466943,JP 1760466944,1760468479,US 1760468480,1760468991,DE 1760468992,1760469503,JP 1760469504,1760470527,US 1760470528,1760471039,DE 1760471040,1760473087,GB 1760473088,1760473599,DE 1760473600,1760475135,US 1760475136,1760476159,GB 1760476160,1760477183,FR 1760477184,1760657407,US 1760657408,1760677887,CA 1760677888,1760690175,US 1760690176,1760755711,CA 1760755712,1760776191,US 1760776192,1760784383,CA 1760784384,1760817407,US 1760817408,1760817663,BZ 1760817664,1760817919,BS 1760817920,1760818175,PA 1760818176,1760818431,AR 1760818432,1760818687,MX 1760818688,1760818943,AW 1760818944,1760819199,SE 1760819200,1760819455,ES 1760819456,1760819711,GB 1760819712,1760819967,MA 1760819968,1760820223,HK 1760820224,1760820479,JP 1760820480,1760820735,CA 1760820736,1760837631,US 1760837632,1760839679,CA 1760839680,1760840379,US 1760840380,1760840380,LU 1760840381,1760867327,US 1760867328,1760868351,PR 1760868352,1760869375,US 1760869376,1760870399,CA 1760870400,1760871423,US 1760871424,1760872447,CA 1760872448,1760878591,US 1760878592,1760880639,JM 1760880640,1760883711,US 1760883712,1760884735,CA 1760884736,1760886783,US 1760886784,1760888831,CA 1760888832,1760889087,US 1760889088,1760889343,JP 1760889344,1760889599,GB 1760889600,1760890623,US 1760890624,1760890879,SG 1760890880,1760896255,US 1760896256,1760896511,CA 1760896512,1760899071,US 1760899072,1760900095,GD 1760900096,1760903167,US 1760903168,1760904191,CA 1760904192,1760909311,US 1760909312,1760910335,VG 1760910336,1760911359,GD 1760911360,1760915455,US 1760915456,1760917503,MQ 1760917504,1760923647,US 1760923648,1760924671,CA 1760924672,1760925695,US 1760925696,1760929791,CA 1760929792,1760937983,US 1760937984,1760939007,CA 1760939008,1760940031,DM 1760940032,1760944127,US 1760944128,1760945151,CA 1760945152,1760985087,US 1760985088,1761017855,CA 1761017856,1761019647,US 1761019648,1761019903,VE 1761019904,1761023231,US 1761023232,1761023487,JP 1761023488,1761043711,US 1761043712,1761043967,PH 1761043968,1761044479,US 1761044480,1761044735,AU 1761044736,1761046527,US 1761046528,1761046783,JP 1761046784,1761048063,US 1761048064,1761048319,IN 1761048320,1761075199,US 1761075200,1761083391,CA 1761083392,1761181695,US 1761181696,1761181951,MX 1761181952,1761183743,US 1761183744,1761183999,AU 1761184000,1761185023,US 1761185024,1761185279,RU 1761185280,1761185535,US 1761185536,1761185791,AE 1761185792,1761186047,MX 1761186048,1761186303,US 1761186304,1761186559,DE 1761186560,1761186815,US 1761186816,1761187071,MX 1761187072,1761187327,US 1761187328,1761187583,PK 1761187584,1761188095,US 1761188096,1761188351,RU 1761188352,1761189631,US 1761189632,1761189887,DE 1761189888,1761190143,JP 1761190144,1761191679,US 1761191680,1761191935,MX 1761191936,1761192703,US 1761192704,1761192959,AU 1761192960,1761193727,US 1761193728,1761193983,DE 1761193984,1761194239,US 1761194240,1761194495,PH 1761194496,1761194751,HK 1761194752,1761195007,US 1761195008,1761195263,HK 1761195264,1761198079,US 1761198080,1761214463,CA 1761214464,1761222655,GP 1761222656,1761230847,US 1761230848,1761239039,CA 1761239040,1761255423,US 1761255424,1761255679,CN 1761255680,1761255935,NZ 1761255936,1761256191,DK 1761256192,1761256447,HR 1761256448,1761256703,LI 1761256704,1761256959,ME 1761256960,1761257215,AM 1761257216,1761257471,GE 1761257472,1761257727,MC 1761257728,1761257983,BA 1761257984,1761258239,RS 1761258240,1761258495,SI 1761258496,1761258751,IT 1761258752,1761259007,LU 1761259008,1761259263,PT 1761259264,1761259519,FR 1761259520,1761259775,KH 1761259776,1761260031,AZ 1761260032,1761260287,ET 1761260288,1761260543,US 1761260544,1761260799,EC 1761260800,1761261055,MU 1761261056,1761261311,JM 1761261312,1761261567,PR 1761261568,1761261823,VG 1761261824,1761262079,SG 1761262080,1761262335,IN 1761262336,1761262591,PK 1761262592,1761262847,US 1761262848,1761263103,RU 1761263104,1761273087,US 1761273088,1761273343,PH 1761273344,1761273599,US 1761273600,1761273855,AU 1761273856,1761275391,US 1761275392,1761275647,JP 1761275648,1761288191,US 1761288192,1761292287,CA 1761292288,1761302015,US 1761302016,1761302271,CA 1761302272,1761302527,US 1761302528,1761302783,CA 1761302784,1761304575,US 1761304576,1761308671,CA 1761308672,1761328639,US 1761328640,1761328895,AU 1761328896,1761478655,US 1761478656,1761479679,CA 1761479680,1761484799,US 1761484800,1761485823,CA 1761485824,1761488895,US 1761488896,1761489919,CA 1761489920,1761499135,US 1761499136,1761501183,CA 1761501184,1761502207,VG 1761502208,1761507615,US 1761507616,1761507711,GB 1761507712,1761515519,US 1761515520,1761517567,CA 1761517568,1761519615,US 1761519616,1761521663,PR 1761521664,1761522687,US 1761522688,1761523711,CA 1761523712,1761524735,US 1761524736,1761525759,CA 1761525760,1761526783,US 1761526784,1761527807,CA 1761527808,1761544191,US 1761544192,1761546239,CA 1761546240,1761554431,US 1761554432,1761555455,CA 1761555456,1761581055,US 1761581056,1761583103,CA 1761583104,1761587199,US 1761587200,1761588223,AI 1761588224,1761589247,PR 1761589248,1761595391,US 1761595392,1761596415,CA 1761596416,1761601535,US 1761601536,1761602559,VC 1761602560,1761606655,US 1761606656,1761607679,VC 1761607680,1762656255,ZA 1762656256,1762660351,MU 1762660352,1762661375,KE 1762661376,1762661887,MU 1762661888,1762662399,TZ 1762662400,1762662911,MZ 1762662912,1762664447,ZA 1762664448,1762664959,FR 1762664960,1762665471,GB 1762665472,1762680063,MU 1762680064,1762680575,NL 1762680576,1762681087,SE 1762681088,1762681599,DE 1762681600,1762684927,MU 1762684928,1762689023,KE 1762689024,1762691071,DJ 1762691072,1762693119,TZ 1762693120,1762695167,MZ 1762695168,1762701311,ZA 1762701312,1762703359,FR 1762703360,1762705407,GB 1762705408,1762768895,MU 1762768896,1762770943,DE 1762770944,1762783231,MU 1762783232,1762791423,KE 1762791424,1762795519,DJ 1762795520,1762799615,TZ 1762799616,1762803711,MZ 1762803712,1762815999,ZA 1762816000,1762820095,FR 1762820096,1762942975,MU 1762942976,1762947071,NL 1762947072,1762951167,SE 1762951168,1762955263,DE 1762955264,1762983935,MU 1762983936,1763000319,KE 1763000320,1763008511,UG 1763008512,1763016703,RW 1763016704,1763024895,DJ 1763024896,1763041279,TZ 1763041280,1763049471,MZ 1763049472,1763074047,ZA 1763074048,1763082239,FR 1763082240,1763090431,GB 1763090432,1763270655,MU 1763270656,1763278847,US 1763278848,1763319807,MU 1763319808,1763327999,IN 1763328000,1763336191,NL 1763336192,1763344383,SE 1763344384,1763344895,UG 1763344896,1763352575,DE 1763352576,1763385343,MU 1763385344,1763393535,AE 1763393536,1763401727,GB 1763401728,1763402239,MU 1763402240,1763402751,KE 1763402752,1763406335,MU 1763406336,1763406847,ZA 1763406848,1763428351,MU 1763428352,1763429375,ZA 1763429376,1763430399,MU 1763430400,1763438591,KE 1763438592,1763442687,UG 1763442688,1763446783,RW 1763446784,1763450879,DJ 1763450880,1763459071,TZ 1763459072,1763463167,MZ 1763463168,1763475455,ZA 1763475456,1763479551,FR 1763479552,1763483647,GB 1763483648,1763573759,MU 1763573760,1763577855,US 1763577856,1763598335,MU 1763598336,1763602431,IN 1763602432,1763606527,NL 1763606528,1763610623,MU 1763610624,1763614719,DE 1763614720,1763631103,MU 1763631104,1763635199,AE 1763635200,1763657727,MU 1763657728,1763659775,ZA 1763659776,1763661823,MU 1763661824,1763663871,FR 1763663872,1763690495,MU 1763690496,1763692543,ZA 1763692544,1763694591,MU 1763694592,1763696639,FR 1763696640,1763704831,MU 1763704832,1764753407,EG 1764753408,1765801983,KE 1765801984,1766850559,MA 1766850560,1767899135,EG 1767899136,1768947711,DZ 1768947712,1769996287,NG 1769996288,1772093439,MA 1772093440,1772617727,KE 1772617728,1773142015,AO 1773142016,1773273087,ZA 1773273088,1773404159,RW 1773404160,1773666303,EG 1773666304,1773928447,ZA 1773928448,1774190591,MA 1774190592,1775239167,EG 1775239168,1776680959,ZA 1776680960,1776812031,KE 1776812032,1776877567,NA 1776877568,1776943103,ZA 1776943104,1777008639,MW 1777008640,1777041407,CI 1777041408,1777045503,DZ 1777045504,1777049599,MU 1777049600,1777053695,ZA 1777053696,1777057791,BF 1777057792,1777061887,NG 1777061888,1777063935,SS 1777063936,1777065983,MZ 1777065984,1777070079,GQ 1777070080,1777074175,BW 1777074176,1777205247,ZA 1777205248,1777336319,SD 1777336320,1778384895,ZA 1778384896,1778385151,CN 1778385152,1778385407,AU 1778385408,1778393087,CN 1778401280,1778417663,CN 1778417664,1778450431,TH 1778450432,1778515967,TW 1778515968,1779040255,CN 1779040256,1779073023,KR 1779073024,1779105791,SG 1779105792,1781727231,CN 1781727232,1781792767,IN 1781792768,1782579199,CN 1782579200,1782710271,TW 1782710272,1782841343,IN 1782841344,1783103487,AU 1783103488,1783234559,JP 1783234560,1783365631,CN 1783365632,1783627775,IN 1783627776,1784676351,CN 1784676352,1785200639,KR 1785200640,1785462783,TW 1785462784,1786773503,CN 1786773504,1790967807,JP 1790967808,1793064959,IN 1793064960,1794113535,CN 1794113536,1795162111,KR 1795162112,1795388031,US 1795388032,1795388415,CA 1795388416,1795555839,US 1795555840,1795555855,CA 1795555856,1795556351,US 1795556352,1795556607,CA 1795556608,1795557375,US 1795557376,1795557631,IN 1795557632,1795559423,US 1795559424,1795559679,AR 1795559680,1795560447,US 1795560448,1795560959,CA 1795560960,1795561247,US 1795561248,1795561343,CA 1795561344,1795561983,US 1795561984,1795562495,CA 1795562496,1795562911,US 1795562912,1795562943,CA 1795562944,1795564031,US 1795564032,1795564543,CA 1795564544,1795565823,US 1795565824,1795566079,CA 1795566080,1795566335,US 1795566336,1795566591,CA 1795566592,1795568127,US 1795568128,1795568639,CA 1795568640,1795569663,US 1795569664,1795570175,CA 1795570176,1795571087,US 1795571088,1795571103,CA 1795571104,1795583999,US 1795584000,1795588095,SG 1795588096,1795591167,US 1795591168,1795592191,NL 1795592192,1795593727,US 1795593728,1795595775,NL 1795595776,1795596287,US 1795596288,1795603455,NL 1795603456,1805000058,US 1805000059,1805000059,CA 1805000060,1805016575,US 1805016576,1805016831,NZ 1805016832,1805017087,TR 1805017088,1805021183,CN 1805021184,1805049855,US 1805049856,1805058047,CA 1805058048,1805144063,US 1805144064,1805148159,CA 1805148160,1805167103,US 1805167104,1805167359,FR 1805167360,1805171231,US 1805171232,1805171239,CA 1805171240,1805171607,US 1805171608,1805171615,CA 1805171616,1805190399,US 1805190400,1805190655,ES 1805190656,1805194239,US 1805194240,1805194495,AU 1805194496,1805210623,US 1805210624,1805210879,EG 1805210880,1805251583,US 1805251584,1805251839,DE 1805251840,1805252095,GB 1805252096,1805252351,DE 1805252352,1805252607,GB 1805252608,1805252863,DE 1805252864,1805253119,GB 1805253120,1805253375,DE 1805253376,1805253631,GB 1805253632,1805253887,DE 1805253888,1805254143,US 1805254144,1805254399,DE 1805254400,1805254655,GB 1805254656,1805582335,US 1805582336,1805647871,CA 1805647872,1805713407,US 1805713408,1805717503,CA 1805717504,1805721599,US 1805721600,1805725695,CA 1805725696,1805729791,US 1805729792,1805733887,CA 1805733888,1805737983,US 1805737984,1805742079,CA 1805742080,1805752575,US 1805752576,1805753087,CA 1805753088,1805754111,US 1805754112,1805754367,CA 1805754368,1806134015,US 1806134016,1806134271,IN 1806134272,1806172159,US 1806172160,1806172415,DE 1806172416,1806172671,GB 1806172672,1806172927,DE 1806172928,1806173183,GB 1806173184,1806174207,US 1806174208,1806174463,BR 1806174464,1806180351,US 1806180352,1806180607,AU 1806180608,1806198271,US 1806198272,1806198527,JP 1806198528,1806203391,US 1806203392,1806203647,AU 1806203648,1806205183,US 1806205184,1806205439,CA 1806205440,1806263551,US 1806263552,1806263807,KR 1806263808,1806401535,US 1806401536,1806434303,CA 1806434304,1806925823,US 1806925824,1806958591,CA 1806958592,1807056895,US 1807056896,1807057151,AU 1807057152,1807057663,US 1807057664,1807057919,GB 1807057920,1807548415,US 1807548416,1807548927,LU 1807548928,1807597567,US 1807597568,1807646719,CA 1807646720,1807655679,US 1807655680,1807655935,IE 1807655936,1807656447,US 1807656448,1807656703,NL 1807656704,1807657983,US 1807657984,1807658239,SG 1807658240,1807658495,GB 1807658496,1807658751,BS 1807658752,1807691263,US 1807691264,1807691775,FR 1807691776,1807692799,US 1807692800,1807693311,JP 1807693312,1807693823,US 1807693824,1807694079,AU 1807694080,1807694847,US 1807694848,1807695359,JP 1807695360,1807695871,FR 1807695872,1807699967,VI 1807699968,1807707311,US 1807707312,1807707312,JP 1807707313,1807732735,US 1807732736,1807736831,GP 1807736832,1815822335,US 1815822336,1815826431,CA 1815826432,1815871487,US 1815871488,1815879679,CA 1815879680,1815912447,US 1815912448,1815920639,CA 1815920640,1815928831,US 1815928832,1815937023,BS 1815937024,1815961599,US 1815961600,1815961855,AU 1815961856,1815962111,ES 1815962112,1815962623,NL 1815962624,1815963391,US 1815963392,1815963647,NL 1815963648,1815963903,US 1815963904,1815964159,FR 1815964160,1815964415,DK 1815964416,1815964671,PL 1815964672,1815965695,US 1815965696,1815966207,DE 1815966208,1815966719,US 1815966720,1815966975,GB 1815966976,1815967231,NL 1815967232,1815967487,CA 1815967488,1815968255,US 1815968256,1815968767,FR 1815968768,1815969279,US 1815969280,1815969791,JP 1815969792,1815977983,US 1815977984,1815979007,JP 1815979008,1815980031,NL 1815980032,1815980543,AU 1815980544,1815981055,DE 1815981056,1815982079,GB 1815982080,1815982591,FR 1815982592,1815983103,DE 1815983104,1815984127,JP 1815984128,1815984639,AU 1815984640,1815985151,US 1815985152,1815985663,NL 1815985664,1815985919,DE 1815985920,1815987199,US 1815987200,1815987711,GB 1815987712,1815988223,NL 1815988224,1815988735,JP 1815988736,1815990271,US 1815990272,1815990783,FR 1815990784,1815991295,DE 1815991296,1815991807,AU 1815991808,1815993599,US 1815993600,1815993855,GB 1815993856,1815994111,US 1815994112,1815994367,JP 1815994368,1815994623,US 1815994624,1815994879,GB 1815994880,1815995135,US 1815995136,1815995391,AU 1815995392,1815995903,US 1815995904,1815996159,GB 1815996160,1815996415,CA 1815996416,1815997695,US 1815997696,1815997951,FR 1815997952,1816000063,US 1816000064,1816000511,JP 1816000512,1816001023,US 1816001024,1816001279,JP 1816001280,1816001535,AU 1816001536,1816001791,US 1816001792,1816002559,NL 1816002560,1816068095,US 1816068096,1816133631,CA 1816133632,1819976622,US 1819976623,1819976623,RE 1819976624,1822429183,US 1822429184,1822433279,CA 1822433280,1822445567,US 1822445568,1822451199,CA 1822451200,1822486527,US 1822486528,1822490623,CA 1822490624,1822498815,US 1822498816,1822502911,CA 1822502912,1822519295,US 1822519296,1822523391,CA 1822523392,1822531583,US 1822531584,1822535679,CA 1822535680,1822552575,US 1822552576,1822553087,AT 1822553088,1822553343,US 1822553344,1822553599,BR 1822553600,1822553855,US 1822553856,1822554111,HK 1822554112,1822572543,US 1822572544,1822605311,CA 1822605312,1822614015,US 1822614016,1822614271,JP 1822614272,1822614527,US 1822614528,1822615039,FR 1822615040,1822617855,US 1822617856,1822618367,CA 1822618368,1822619647,US 1822619648,1822620415,AU 1822620416,1822654463,US 1822654464,1822662143,CA 1822662144,1822662399,US 1822662400,1822670847,CA 1822670848,1822949375,US 1822949376,1822982143,CA 1822982144,1823113215,US 1823113216,1823129599,CA 1823129600,1823162367,US 1823162368,1823170559,CA 1823170560,1823178751,US 1823178752,1823179007,GB 1823179008,1823179263,DE 1823179264,1823180287,US 1823180288,1823180543,AU 1823180544,1823186687,US 1823186688,1823186943,IN 1823186944,1823211519,US 1823211520,1823342591,CA 1823342592,1823346687,US 1823346688,1823350783,CA 1823350784,1823361791,US 1823361792,1823362303,CA 1823362304,1823375359,US 1823375360,1823379455,CA 1823379456,1823383551,US 1823383552,1823387647,CA 1823387648,1823428607,US 1823428608,1823430655,CA 1823430656,1823430911,US 1823430912,1823432703,CA 1823432704,1823440895,US 1823440896,1823444991,CA 1823444992,1823465471,US 1823465472,1823469567,CA 1823469568,1823735807,US 1823735808,1823866879,CA 1823866880,1828716543,US 1828716544,1830106367,FR 1830106368,1830106623,CH 1830106624,1830813695,FR 1830813696,1831337983,NL 1831337984,1831862271,DE 1831862272,1832124415,PT 1832124416,1832386559,IT 1832386560,1832456959,DK 1832456960,1832457215,SE 1832457216,1832478463,DK 1832478464,1832478719,SE 1832478720,1832517631,DK 1832517632,1832583167,SE 1832583168,1832648703,DK 1832648704,1832681471,HR 1832681472,1832714239,RU 1832714240,1832747007,HU 1832747008,1832779775,RU 1832779776,1832780799,FR 1832780800,1832781055,MQ 1832781056,1832782591,FR 1832782592,1832783103,MQ 1832783104,1832784639,FR 1832784640,1832785407,GP 1832785408,1832786943,FR 1832786944,1832787967,GF 1832787968,1832790527,FR 1832790528,1832790783,YT 1832790784,1832794111,FR 1832794112,1832794879,GP 1832794880,1832795391,FR 1832795392,1832795647,GF 1832795648,1832796415,FR 1832796416,1832796671,RE 1832796672,1832796927,FR 1832796928,1832797183,GP 1832797184,1832798463,FR 1832798464,1832798975,GP 1832798976,1832800255,FR 1832800256,1832800511,MQ 1832800512,1832800767,FR 1832800768,1832801535,MQ 1832801536,1832804351,FR 1832804352,1832804607,MQ 1832804608,1832805119,FR 1832805120,1832805631,MQ 1832805632,1832805887,FR 1832805888,1832806399,MQ 1832806400,1832806911,GP 1832806912,1832807167,FR 1832807168,1832807935,GP 1832807936,1832812543,FR 1832812544,1832845311,RU 1832845312,1832878079,BH 1832878080,1832910847,RU 1832910848,1833172991,IL 1833172992,1833177087,GB 1833177088,1833179135,RU 1833179136,1833181183,IT 1833181184,1833183231,GB 1833183232,1833185279,UA 1833185280,1833187327,DE 1833187328,1833189375,NL 1833189376,1833191423,GB 1833191424,1833193471,RU 1833193472,1833195519,ES 1833195520,1833197567,NO 1833197568,1833199615,DE 1833199616,1833201663,AT 1833201664,1833203711,RU 1833203712,1833205759,AM 1833205760,1833207807,FI 1833207808,1833209855,RU 1833209856,1833211903,GR 1833211904,1833213951,IT 1833213952,1833215999,BE 1833216000,1833218047,RU 1833218048,1833220095,NO 1833220096,1833222143,RU 1833222144,1833224191,GB 1833224192,1833228287,RU 1833228288,1833232383,DE 1833232384,1833234431,TJ 1833234432,1833236479,GB 1833236480,1833238527,FI 1833238528,1833240575,AL 1833240576,1833242623,ES 1833242624,1833246719,RU 1833246720,1833248767,FI 1833248768,1833250815,MK 1833250816,1833254911,GB 1833254912,1833256959,DE 1833256960,1833259007,RU 1833259008,1833261055,GB 1833261056,1833263103,PL 1833263104,1833265151,DE 1833265152,1833267199,GB 1833267200,1833269247,HU 1833269248,1833271295,FI 1833271296,1833273343,IT 1833275392,1833277439,IT 1833277440,1833279487,CH 1833279488,1833281535,AL 1833281536,1833283583,AT 1833283584,1833285631,RU 1833285632,1833289727,FR 1833289728,1833291775,IT 1833291776,1833293823,CZ 1833293824,1833295871,BE 1833295872,1833297919,NL 1833297920,1833299967,GB 1833299968,1833302015,LU 1833302016,1833304063,AT 1833304064,1833308159,NL 1833308160,1833310207,FR 1833310208,1833312255,RU 1833312256,1833314303,ES 1833314304,1833315963,IM 1833315964,1833315967,GB 1833315968,1833316351,IM 1833316352,1833318399,DK 1833318400,1833320447,GB 1833320448,1833320959,AE 1833320960,1833321215,IQ 1833321216,1833322495,AE 1833322496,1833324543,IT 1833324544,1833326591,NO 1833326592,1833328639,US 1833328640,1833330687,AT 1833330688,1833332735,UA 1833332736,1833334783,CH 1833334784,1833336831,IT 1833336832,1833338879,ES 1833338880,1833342975,GB 1833342976,1833345023,CH 1833345024,1833347071,FI 1833347072,1833349119,FR 1833349120,1833351167,FI 1833351168,1833353215,RU 1833353216,1833355263,DE 1833355264,1833357311,IT 1833357312,1833357587,GB 1833357588,1833357631,IE 1833357632,1833357823,GB 1833357824,1833357903,IE 1833357904,1833359359,GB 1833359360,1833361407,DE 1833361408,1833363455,GB 1833363456,1833365503,RU 1833365504,1833367551,IT 1833367552,1833369599,RU 1833369600,1833371647,NL 1833371648,1833373695,RU 1833373696,1833377791,DE 1833377792,1833379839,KZ 1833379840,1833381887,PT 1833381888,1833383935,NL 1833383936,1833385983,DK 1833385984,1833388031,SK 1833390080,1833392127,GB 1833392128,1833396223,CH 1833396224,1833398271,NL 1833398272,1833400319,DE 1833400320,1833402367,GB 1833402368,1833406463,FR 1833406464,1833408511,GB 1833410560,1833412607,LU 1833412608,1833414655,GB 1833414656,1833416703,RU 1833416704,1833418751,NL 1833418752,1833422847,RU 1833422848,1833424895,CZ 1833424896,1833426943,DE 1833426944,1833428991,KG 1833428992,1833431039,IT 1833431040,1833433087,RU 1833435136,1833439231,CZ 1833439232,1833443327,GB 1833443328,1833447423,NL 1833447424,1833451519,RS 1833451520,1833455615,RU 1833455616,1833459711,NL 1833459712,1833463807,ME 1833463808,1833467903,UA 1833467904,1833468579,CH 1833468580,1833468580,RU 1833468581,1833471999,CH 1833472000,1833473023,NL 1833474048,1833475071,UA 1833476096,1833484287,NL 1833484288,1833488383,IR 1833488384,1833492479,GB 1833492480,1833504767,RU 1833504768,1833508863,DE 1833508864,1833512959,RU 1833512960,1833517055,DE 1833517056,1833521151,GB 1833521152,1833525247,IT 1833525248,1833529343,LV 1833529344,1833533439,GB 1833535488,1833537535,RU 1833537536,1833541631,AT 1833541632,1833541887,GB 1833541888,1833542143,IN 1833542144,1833542655,GB 1833542656,1833542911,IN 1833542912,1833543167,GB 1833543168,1833543423,IN 1833543424,1833544959,GB 1833544960,1833545001,IN 1833545002,1833545002,GB 1833545003,1833545087,IN 1833545088,1833545215,GB 1833545216,1833545471,NL 1833545472,1833545727,GB 1833545728,1833549823,IT 1833549824,1833553919,RU 1833553920,1833558015,CZ 1833558016,1833562111,US 1833562112,1833566207,PS 1833566208,1833570303,SE 1833570304,1833571583,NL 1833571584,1833573631,GB 1833573632,1833574399,NL 1833574400,1833578495,YE 1833578496,1833582591,HU 1833582592,1833586687,TJ 1833586688,1833590783,FR 1833590784,1833594879,PL 1833594880,1833603071,RU 1833603072,1833607167,SK 1833607168,1833611263,RU 1833611264,1833615359,NO 1833615360,1833619455,GB 1833619456,1833623551,RU 1833623552,1833627647,IR 1833627648,1833631743,GB 1833631744,1833635839,CZ 1833635840,1833639935,DE 1833639936,1833644031,AM 1833644032,1833648127,RU 1833648128,1833652223,LB 1833652224,1833660415,DE 1833660416,1833664511,IT 1833664512,1833668607,RU 1833668608,1833672703,CZ 1833672704,1833676799,GB 1833676800,1833680895,DE 1833680896,1833684991,UA 1833684992,1833689087,DE 1833689088,1833693183,FI 1833693184,1833697279,RU 1833697280,1833959423,IE 1833959424,1834090495,CZ 1834090496,1834221567,SA 1834221568,1834352639,DE 1834352640,1834483711,UA 1834483712,1834614783,BE 1834614784,1834745855,DE 1834745856,1834876927,RS 1834876928,1834885119,RU 1834885120,1834893311,FR 1834893312,1834901503,RU 1834901504,1834909695,RS 1834909696,1834913791,GB 1834913792,1834917887,RO 1834917888,1834921983,UA 1834921984,1834930175,RU 1834930176,1834934271,UA 1834934272,1834938367,RS 1834938368,1834944511,PL 1834944512,1834946559,RO 1834946560,1834948607,RU 1834948608,1834950655,PL 1834950656,1834956799,UA 1834956800,1834960895,IR 1834960896,1834964991,RU 1834964992,1834967039,PL 1834967040,1834971135,RU 1834971136,1834973183,PL 1834973184,1834974207,UA 1834975232,1834977279,IL 1834977280,1834983423,PL 1834983424,1834985471,RU 1834985472,1834989567,PL 1834989568,1834991615,GB 1834991616,1834993663,RU 1834993664,1834995711,PL 1834995712,1835001855,RU 1835001856,1835003903,PL 1835003904,1835005951,CH 1835005952,1835007999,RU 1835008000,1835532287,RO 1835532288,1835540479,SE 1835540480,1835548671,DE 1835548672,1835565055,GB 1835565056,1835573247,AL 1835573248,1835581439,UA 1835581440,1835589631,BG 1835589632,1835597823,IT 1835597824,1835606015,HU 1835606016,1835614207,CZ 1835614208,1835622399,RU 1835622400,1835627007,SE 1835627008,1835627263,DK 1835627264,1835630591,SE 1835630592,1835636735,RU 1835636736,1835638527,LU 1835638528,1835638783,AM 1835638784,1835646975,RU 1835646976,1835655167,BA 1835655168,1835663359,CY 1835663360,1835671551,UA 1835671552,1835679743,CH 1835679744,1835687935,FR 1835687936,1835696127,IE 1835696128,1835704319,RU 1835704320,1835709439,NL 1835712512,1835720703,RU 1835720704,1835728895,RS 1835728896,1835737087,PL 1835737088,1835745279,GB 1835745280,1835753471,BG 1835753472,1835761663,ES 1835761664,1835769855,JO 1835769856,1835778047,RU 1835778048,1835786239,CZ 1835786240,1835794431,JO 1835794432,1835802623,FI 1835802624,1835810815,RU 1835810816,1835819007,UA 1835819008,1835827199,CZ 1835827200,1835835391,GB 1835835392,1835843583,IR 1835843584,1835851775,NO 1835851776,1835859967,UA 1835859968,1835868159,DE 1835868160,1835876351,IR 1835876352,1835884543,NO 1835884544,1835892735,NL 1835892736,1835909119,GB 1835909120,1835911167,RS 1835911168,1835913215,DE 1835913216,1835917311,RU 1835917312,1835917855,GB 1835917856,1835917863,IT 1835917864,1835917919,GB 1835917920,1835917935,IT 1835917936,1835918031,GB 1835918032,1835918039,IT 1835918040,1835918383,GB 1835918384,1835918391,IT 1835918392,1835918439,GB 1835918440,1835918447,IT 1835918448,1835918519,GB 1835918520,1835918527,IT 1835918528,1835918711,GB 1835918712,1835918719,IT 1835918720,1835918735,GB 1835918736,1835918743,IT 1835918744,1835918847,GB 1835918848,1835918855,IT 1835918856,1835919127,GB 1835919128,1835919135,IT 1835919136,1835919151,GB 1835919152,1835919159,IT 1835919160,1835919751,GB 1835919752,1835919759,IT 1835919760,1835920479,GB 1835920480,1835920487,IT 1835920488,1835921119,GB 1835921120,1835921127,IT 1835921128,1835921343,GB 1835921344,1835921351,IT 1835921352,1835921711,GB 1835921712,1835921719,IT 1835921720,1835922351,GB 1835922352,1835922359,IT 1835922360,1835922415,GB 1835922416,1835922423,IT 1835922424,1835922559,GB 1835922560,1835922567,IT 1835922568,1835922647,GB 1835922648,1835922655,IT 1835922656,1835922671,GB 1835922672,1835922679,IT 1835922680,1835922959,GB 1835922960,1835922967,IT 1835922968,1835923007,GB 1835923008,1835923015,IT 1835923016,1835923343,GB 1835923344,1835923351,IT 1835923352,1835924375,GB 1835924376,1835924383,IT 1835924384,1835925159,GB 1835925160,1835925167,IT 1835925168,1835925327,GB 1835925328,1835925335,IT 1835925336,1835925503,GB 1835925504,1835933695,LV 1835933696,1835941887,RU 1835941888,1835950079,UA 1835950080,1835958271,LB 1835958272,1835966463,HU 1835966464,1835974655,IR 1835974656,1835978751,HU 1835978752,1835982847,PL 1835982848,1835991039,CY 1835991040,1835999231,RU 1835999232,1836007423,IR 1836007424,1836015615,RU 1836015616,1836023807,AD 1836023808,1836040191,RU 1836040192,1836048383,GB 1836048384,1836056575,RS 1836056576,1836450337,IT 1836450338,1836450338,CN 1836450339,1836450371,IT 1836450372,1836450372,CN 1836450373,1836450450,IT 1836450451,1836450451,CN 1836450452,1836450470,IT 1836450471,1836450471,CN 1836450472,1836450511,IT 1836450512,1836450512,CN 1836450513,1836450869,IT 1836450870,1836450870,CN 1836450871,1836450881,IT 1836450882,1836450882,CN 1836450883,1836450883,IT 1836450884,1836450884,CN 1836450885,1836450926,IT 1836450927,1836450927,CN 1836450928,1836450931,IT 1836450932,1836450932,CN 1836450933,1836450940,IT 1836450941,1836450941,CN 1836450942,1836450955,IT 1836450956,1836450956,CN 1836450957,1836451346,IT 1836451347,1836451348,CN 1836451349,1836451350,IT 1836451351,1836451351,CN 1836451352,1836451406,IT 1836451407,1836451407,CN 1836451408,1836451417,IT 1836451418,1836451418,CN 1836451419,1836451461,IT 1836451462,1836451462,CN 1836451463,1836451463,IT 1836451464,1836451464,CN 1836451465,1836451521,IT 1836451522,1836451522,CN 1836451523,1836452122,IT 1836452123,1836452123,CN 1836452124,1836452147,IT 1836452148,1836452148,CN 1836452149,1836452186,IT 1836452187,1836452187,CN 1836452188,1836452315,IT 1836452316,1836452316,CN 1836452317,1836452343,IT 1836452344,1836452345,CN 1836452346,1836452445,IT 1836452446,1836452446,CN 1836452447,1836452447,IT 1836452448,1836452448,CN 1836452449,1836452450,IT 1836452451,1836452451,CN 1836452452,1836452546,IT 1836452547,1836452547,CN 1836452548,1836452751,IT 1836452752,1836452752,CN 1836452753,1836452755,IT 1836452756,1836452757,CN 1836452758,1836453483,IT 1836453484,1836453484,CN 1836453485,1836453539,IT 1836453540,1836453540,CN 1836453541,1836453573,IT 1836453574,1836453574,CN 1836453575,1836454695,IT 1836454696,1836454696,CN 1836454697,1836454740,IT 1836454741,1836454741,CN 1836454742,1836454755,IT 1836454756,1836454756,CN 1836454757,1836455219,IT 1836455220,1836455220,CN 1836455221,1836455228,IT 1836455229,1836455229,CN 1836455230,1836455233,IT 1836455234,1836455234,CN 1836455235,1836455263,IT 1836455264,1836455264,CN 1836455265,1836455272,IT 1836455273,1836455274,CN 1836455275,1836455281,IT 1836455282,1836455282,CN 1836455283,1836455305,IT 1836455306,1836455306,CN 1836455307,1836455309,IT 1836455310,1836455310,CN 1836455311,1836455378,IT 1836455379,1836455379,CN 1836455380,1836455454,IT 1836455455,1836455455,CN 1836455456,1836455458,IT 1836455459,1836455460,CN 1836455461,1836455516,IT 1836455517,1836455517,CN 1836455518,1836455546,IT 1836455547,1836455547,CN 1836455548,1836455556,IT 1836455557,1836455557,CN 1836455558,1836455562,IT 1836455563,1836455563,CN 1836455564,1836455565,IT 1836455566,1836455566,CN 1836455567,1836455568,IT 1836455569,1836455570,CN 1836455571,1836455589,IT 1836455590,1836455590,CN 1836455591,1836455631,IT 1836455632,1836455632,CN 1836455633,1836455987,IT 1836455988,1836455988,CN 1836455989,1836455993,IT 1836455994,1836455995,CN 1836455996,1836455997,IT 1836455998,1836455998,CN 1836455999,1836456001,IT 1836456002,1836456002,CN 1836456003,1836456021,IT 1836456022,1836456022,CN 1836456023,1836456097,IT 1836456098,1836456098,CN 1836456099,1836456117,IT 1836456118,1836456118,CN 1836456119,1836456131,IT 1836456132,1836456135,CN 1836456136,1836456136,IT 1836456137,1836456137,CN 1836456138,1836458047,IT 1836458048,1836458048,CN 1836458049,1836459294,IT 1836459295,1836459295,CN 1836459296,1836459383,IT 1836459384,1836459384,CN 1836459385,1836459399,IT 1836459400,1836459400,CN 1836459401,1836466454,IT 1836466455,1836466455,CN 1836466456,1836466465,IT 1836466466,1836466466,CN 1836466467,1836466529,IT 1836466530,1836466530,CN 1836466531,1836466532,IT 1836466533,1836466533,CN 1836466534,1836466551,IT 1836466552,1836466552,CN 1836466553,1836580863,IT 1836580864,1836597247,RU 1836597248,1836598271,LU 1836598272,1836605439,FR 1836605440,1836606463,GB 1836606464,1836611583,LU 1836611584,1836613631,DE 1836613632,1836626943,RU 1836626944,1836627967,NL 1836627968,1836630015,RU 1836630016,1836646399,BG 1836646400,1836679167,RS 1836679168,1836680703,BG 1836680704,1836681215,MK 1836681216,1836711935,BG 1836711936,1836728319,UA 1836728320,1836744703,RS 1836744704,1836746495,FR 1836746496,1836746751,RE 1836746752,1836747263,FR 1836747264,1836748031,RE 1836748032,1836748287,FR 1836748288,1836748543,RE 1836748544,1836749567,FR 1836749568,1836750079,RE 1836750080,1836750335,FR 1836750336,1836750591,RE 1836750592,1836750847,FR 1836750848,1836751359,RE 1836751360,1836753919,FR 1836753920,1836754175,RE 1836754176,1836754431,FR 1836754432,1836754687,RE 1836754688,1836754943,FR 1836754944,1836755199,RE 1836755200,1836755967,FR 1836755968,1836756223,RE 1836756224,1836756479,FR 1836756480,1836756735,RE 1836756736,1836758015,FR 1836758016,1836758271,RE 1836758272,1836760063,FR 1836760064,1836760319,RE 1836760320,1836760831,FR 1836760832,1836761087,RE 1836761088,1836777471,IR 1836777472,1836793855,SI 1836793856,1836794567,GB 1836794568,1836794587,FR 1836794588,1836794588,GB 1836794589,1836794592,FR 1836794593,1836794594,GB 1836794595,1836794595,FR 1836794596,1836797951,GB 1836797952,1836798207,DE 1836798208,1836807087,GB 1836807088,1836807088,CN 1836807089,1836810239,GB 1836810240,1836826623,RU 1836826624,1836843007,CZ 1836843008,1836875775,RU 1836875776,1836892159,SE 1836892160,1836908543,RU 1836908544,1836924927,IE 1836924928,1836941311,DE 1836941312,1836957695,IR 1836957696,1836974079,PL 1836974080,1836990463,RU 1836990464,1837006847,AT 1837006848,1837023231,BY 1837023232,1837039615,RU 1837039616,1837055999,AZ 1837056000,1837072383,IQ 1837072384,1837088767,RU 1837088768,1837105151,SI 1837105152,1837500953,BE 1837500954,1837500954,CN 1837500955,1837501019,BE 1837501020,1837501020,CN 1837501021,1837501040,BE 1837501041,1837501041,CN 1837501042,1837501584,BE 1837501585,1837501585,CN 1837501586,1837501588,BE 1837501589,1837501589,CN 1837501590,1837501623,BE 1837501624,1837501624,CN 1837501625,1837501643,BE 1837501644,1837501644,CN 1837501645,1837501998,BE 1837501999,1837501999,CN 1837502000,1837502022,BE 1837502023,1837502023,CN 1837502024,1837502041,BE 1837502042,1837502042,CN 1837502043,1837502052,BE 1837502053,1837502053,CN 1837502054,1837502126,BE 1837502127,1837502127,CN 1837502128,1837502164,BE 1837502165,1837502165,CN 1837502166,1837502539,BE 1837502540,1837502540,CN 1837502541,1837502574,BE 1837502575,1837502575,CN 1837502576,1837502606,BE 1837502607,1837502607,CN 1837502608,1837502610,BE 1837502611,1837502611,CN 1837502612,1837502639,BE 1837502640,1837502640,CN 1837502641,1837502702,BE 1837502703,1837502703,CN 1837502704,1837502818,BE 1837502819,1837502819,CN 1837502820,1837502913,BE 1837502914,1837502914,CN 1837502915,1837502931,BE 1837502932,1837502932,CN 1837502933,1837503116,BE 1837503117,1837503117,CN 1837503118,1837503125,BE 1837503126,1837503127,CN 1837503128,1837503129,BE 1837503130,1837503131,CN 1837503132,1837503136,BE 1837503137,1837503137,CN 1837503138,1837503153,BE 1837503154,1837503154,CN 1837503155,1837503156,BE 1837503157,1837503157,CN 1837503158,1837503163,BE 1837503164,1837503165,CN 1837503166,1837503166,BE 1837503167,1837503167,CN 1837503168,1837503175,BE 1837503176,1837503176,CN 1837503177,1837503184,BE 1837503185,1837503185,CN 1837503186,1837503186,BE 1837503187,1837503187,CN 1837503188,1837503188,BE 1837503189,1837503189,CN 1837503190,1838153727,BE 1838153728,1839202303,GB 1839202304,1839235071,BG 1839235072,1839267839,IL 1839267840,1839300607,RU 1839300608,1839333375,BH 1839333376,1839366143,UA 1839366144,1839398911,IR 1839398912,1839431679,NO 1839431680,1839448063,BA 1839448064,1839450111,KZ 1839450112,1839452159,NO 1839452160,1839454207,FI 1839454208,1839456255,RU 1839456256,1839460351,RO 1839460352,1839462399,RU 1839462400,1839464447,FI 1839464448,1839497215,CZ 1839497216,1839529983,CH 1839529984,1839562751,RU 1839562752,1839595519,BA 1839595520,1839603711,SA 1839603712,1839618047,RO 1839618048,1839628287,SA 1839628288,1839661055,RO 1839661056,1839686655,UA 1839686656,1839687167,ES 1839687168,1839693055,UA 1839693056,1839693311,ES 1839693312,1839693823,UA 1839693824,1839726591,RU 1839726592,1839759359,IT 1839759360,1839792127,RU 1839792128,1839794847,GB 1839794848,1839794879,CH 1839794880,1839816703,GB 1839816704,1839824895,NO 1839824896,1839890431,RU 1839890432,1839923199,GB 1839923200,1839955967,RU 1839955968,1839988735,SA 1839988736,1840021503,RU 1840021504,1840054271,GE 1840054272,1840087039,RU 1840087040,1840119807,PL 1840119808,1840152575,RU 1840152576,1840185343,GB 1840185344,1840218111,BA 1840218112,1840232447,GB 1840232448,1840232703,NL 1840232704,1840247007,GB 1840247008,1840247023,NL 1840247024,1840316415,GB 1840316416,1840381951,AE 1840381952,1840447487,GR 1840447488,1840513023,NO 1840513024,1840644095,GB 1840644096,1840709631,SI 1840709632,1840775167,CZ 1840775168,1840840703,RU 1840840704,1840906239,MD 1840906240,1840971775,IL 1840971776,1841102847,RU 1841102848,1841168383,NO 1841168384,1841233919,FR 1841233920,1841299455,RU 1841299456,1841430527,DE 1841430528,1841561599,RU 1841561600,1841565695,PL 1841565696,1841569791,RU 1841569792,1841577983,PL 1841577984,1841582079,RU 1841582080,1841586175,PL 1841586176,1841590271,RU 1841590272,1841594367,PL 1841594368,1841598463,RU 1841598464,1841602559,PL 1841606656,1841610751,UA 1841610752,1841618943,RU 1841618944,1841627135,PL 1841627136,1841629183,NO 1841629184,1841635327,RU 1841635328,1841639423,PL 1841639424,1841641471,RU 1841641472,1841645567,PL 1841645568,1841647615,RU 1841647616,1841649663,RO 1841649664,1841651711,RU 1841651712,1841653759,PL 1841653760,1841655807,FR 1841655808,1841668095,RU 1841668096,1841668607,SE 1841668608,1841669119,RU 1841669120,1841669375,PL 1841669376,1841669631,BE 1841669632,1841670143,UA 1841670144,1841672191,PL 1841672192,1841674239,FR 1841674240,1841676287,PL 1841676288,1841680383,RU 1841680384,1841682431,LV 1841682432,1841684479,UA 1841684480,1841686527,RU 1841686528,1841688575,RO 1841688576,1841690623,FR 1841690624,1841692671,RU 1841692672,1841700863,RS 1841700864,1841709055,MD 1841709056,1841725439,RU 1841725440,1841733631,DK 1841733632,1841758207,RU 1841758208,1841766399,PL 1841766400,1841774591,HU 1841774592,1841782783,PL 1841782784,1841790975,US 1841790976,1841799167,BG 1841799168,1841807359,DE 1841807360,1841815551,NO 1841815552,1841823743,BG 1841823744,1841831935,GB 1841831936,1841840127,MT 1841840128,1841848319,PL 1841848320,1841856511,RU 1841856512,1841864703,UA 1841864704,1841872895,YE 1841872896,1841876991,NL 1841876992,1841878015,JP 1841878016,1841879039,AU 1841879040,1841879807,NL 1841879808,1841880063,GB 1841880064,1841881087,JP 1841881088,1841889279,UA 1841889280,1841897471,IR 1841897472,1841905663,KZ 1841905664,1841922047,RU 1841922048,1841926099,NL 1841926100,1841926100,DE 1841926101,1841930239,NL 1841930240,1841938431,KG 1841938432,1841946623,RU 1841946624,1841954815,UA 1841954816,1841971199,RU 1841971200,1841979391,CZ 1841979392,1841982975,NL 1841982976,1841983103,BE 1841983104,1841983487,NL 1841983488,1841985535,IM 1841985536,1841987583,SI 1841987584,1841995775,DK 1841995776,1842003967,RU 1842003968,1842012159,CH 1842012160,1842017023,GB 1842017024,1842017279,BE 1842017280,1842020351,GB 1842020352,1842028543,NO 1842028544,1842029567,CH 1842029568,1842030591,FR 1842030592,1842036735,CH 1842036736,1842042879,FR 1842042880,1842044927,LU 1842044928,1842053119,GB 1842053120,1842069503,IR 1842069504,1842077695,RU 1842077696,1842078207,FR 1842078208,1842078463,MQ 1842078464,1842079231,FR 1842079232,1842079743,MQ 1842079744,1842080255,GP 1842080256,1842080767,MQ 1842080768,1842081023,GP 1842081024,1842081791,MQ 1842081792,1842082047,GP 1842082048,1842082815,MQ 1842082816,1842083327,GP 1842083328,1842084607,MQ 1842084608,1842084863,GP 1842084864,1842085887,MQ 1842085888,1842118655,GB 1842118656,1842151423,FI 1842151424,1842153471,FR 1842153472,1842153983,NO 1842153984,1842154239,US 1842154240,1842154271,NO 1842154272,1842154303,HK 1842154304,1842154335,NO 1842154336,1842154343,SG 1842154344,1842154351,NO 1842154352,1842154367,SG 1842154368,1842154495,NO 1842154496,1842155007,US 1842155008,1842155263,AU 1842155264,1842155519,NL 1842155520,1842157567,IT 1842157568,1842159615,AE 1842159616,1842161663,BA 1842161664,1842163711,GE 1842163712,1842165759,PL 1842165760,1842167807,RU 1842167808,1842169855,FR 1842169856,1842171903,CZ 1842171904,1842173951,RU 1842173952,1842175999,RO 1842176000,1842178047,FI 1842178048,1842180095,IT 1842180096,1842182143,IQ 1842182144,1842184191,LV 1842184192,1842186239,DE 1842186240,1842188287,ES 1842188288,1842190335,RU 1842190336,1842192383,GB 1842192384,1842194431,AZ 1842194432,1842196479,CH 1842196480,1842198527,DE 1842198528,1842200575,GB 1842200576,1842202623,NL 1842202624,1842204671,CH 1842204672,1842206719,AZ 1842206720,1842208767,SE 1842208768,1842210815,GB 1842210816,1842212863,LT 1842212864,1842213631,CZ 1842213632,1842213887,SK 1842213888,1842214911,CZ 1842214912,1842216959,RU 1842216960,1842225151,RO 1842225152,1842233343,UA 1842233344,1842241535,SA 1842241536,1842249727,RS 1842249728,1842257919,RU 1842257920,1842266111,NL 1842266112,1842274303,PL 1842282496,1842286591,RU 1842286592,1842290687,GB 1842290688,1842294783,RS 1842294784,1842298879,PL 1842302976,1842307071,RU 1842307072,1842311167,PL 1842311168,1842315263,UA 1842315264,1842319359,RO 1842319360,1842323455,PL 1842323456,1842331647,RU 1842331648,1842335743,UA 1842335744,1842339839,RO 1842339840,1842343935,RU 1842343936,1842348031,UZ 1842348032,1843396607,FR 1843396608,1843412991,IQ 1843412992,1843429375,CZ 1843429376,1843462143,GB 1843462144,1843478527,RU 1843478528,1843494911,SE 1843494912,1843511295,IR 1843511296,1843527679,RU 1843527680,1843544063,IL 1843544064,1843560447,RU 1843560448,1843576831,DE 1843576832,1843593215,RU 1843593216,1843609599,HR 1843609600,1843625983,UA 1843625984,1843642367,ES 1843642368,1843658751,RU 1843658752,1843675135,GB 1843675136,1843691519,ME 1843691520,1843707903,SE 1843707904,1843724287,TR 1843724288,1843732479,UA 1843732480,1843765247,RU 1843765248,1843773439,KZ 1843773440,1843781631,LV 1843781632,1843789823,RU 1843789824,1843806207,SK 1843806208,1843822591,IR 1843822592,1843838975,RU 1843838976,1843846911,DE 1843846912,1843847167,IR 1843847168,1843853055,DE 1843853056,1843853311,IR 1843853312,1843855359,DE 1843855360,1843871743,PL 1843871744,1843888127,GB 1843888128,1843904511,CZ 1843904512,1843920895,GB 1843920896,1843922943,KZ 1843922944,1843924991,NL 1843924992,1843927039,ES 1843927040,1843929087,PL 1843929088,1843931135,IT 1843931136,1843933183,NL 1843933184,1843935231,IT 1843935232,1843937279,GB 1843937280,1843939327,ES 1843939328,1843941375,DK 1843941376,1843943423,FI 1843943424,1843945471,CH 1843945472,1843947519,FR 1843947520,1843949567,RU 1843949568,1843950591,ES 1843950592,1843951615,BY 1843951616,1843955711,DE 1843955712,1843957759,IT 1843957760,1843959807,CZ 1843959808,1843961855,GB 1843963904,1843965951,DE 1843965952,1843967999,GB 1843968000,1843970047,RU 1843970048,1843972095,FR 1843972096,1843974143,HU 1843974144,1843976191,ES 1843976192,1843978239,TR 1843978240,1843980287,NL 1843980288,1843982335,FR 1843982336,1843984383,PL 1843984384,1843986431,RU 1843986432,1843988479,NO 1843988480,1843990527,GB 1843990528,1843992575,LB 1843992576,1843994623,AT 1843994624,1844000767,GB 1844000768,1844002815,NO 1844002816,1844006911,CZ 1844006912,1844008959,SM 1844008960,1844011007,PL 1844011008,1844013055,IT 1844013056,1844015103,PL 1844015104,1844017151,GB 1844017152,1844021247,IT 1844021248,1844027391,DE 1844027392,1844029439,CZ 1844029440,1844031487,RU 1844033536,1844035583,RS 1844035584,1844037631,MD 1844037632,1844041727,RU 1844041728,1844043775,IT 1844043776,1844049919,RU 1844049920,1844051967,DE 1844051968,1844054015,FR 1844054016,1844056063,RU 1844056064,1844058111,IL 1844058112,1844062207,RU 1844062208,1844064255,CZ 1844064256,1844068351,IT 1844068352,1844070399,ES 1844070400,1844072447,LU 1844072448,1844076543,ES 1844076544,1844078591,IE 1844078592,1844080639,DE 1844080640,1844082687,GE 1844082688,1844084735,DE 1844084736,1844086783,RU 1844086784,1844088831,IT 1844088832,1844090879,AT 1844090880,1844092927,RU 1844092928,1844094975,FR 1844094976,1844099071,GB 1844099072,1844101119,DE 1844101120,1844105215,GB 1844105216,1844107263,ES 1844107264,1844109311,DE 1844109312,1844109567,US 1844109568,1844111359,GB 1844111360,1844113407,AL 1844113408,1844115455,FI 1844115456,1844117503,DE 1844117504,1844119551,CZ 1844119552,1844121599,UA 1844121600,1844123647,ES 1844123648,1844125695,RU 1844125696,1844127743,NL 1844127744,1844129791,DE 1844129792,1844131839,NL 1844131840,1844133887,DE 1844133888,1844135935,LT 1844135936,1844137983,NL 1844137984,1844140031,FR 1844140032,1844142079,RU 1844142080,1844144127,RS 1844144128,1844146175,SM 1844146176,1844148223,NO 1844148224,1844150271,GB 1844150272,1844152319,ES 1844152320,1844154367,DE 1844154368,1844156415,GB 1844156416,1844158463,IT 1844158464,1844160511,RU 1844160512,1844162559,SE 1844162560,1844164607,CZ 1844164608,1844166655,RU 1844166656,1844168703,AZ 1844168704,1844169503,GI 1844169504,1844169519,US 1844169520,1844169567,GI 1844169568,1844169583,US 1844169584,1844169727,GI 1844169728,1844170751,DE 1844170752,1844174847,RU 1844174848,1844178943,DE 1844178944,1844180991,EE 1844180992,1844183039,TR 1844183040,1844185087,IT 1844185088,1844186111,IE 1844186112,1844191231,IT 1844191232,1844195327,AL 1844199424,1844203519,RU 1844203520,1844207615,NL 1844207616,1844211711,RU 1844211712,1844215807,SK 1844215808,1844219903,BE 1844219904,1844223999,DE 1844224000,1844228095,GB 1844228096,1844232191,DK 1844232192,1844236287,ES 1844236288,1844252671,RU 1844252672,1844256767,GB 1844256768,1844260863,BA 1844260864,1844264959,CH 1844264960,1844269055,NL 1844269056,1844273151,UA 1844273152,1844277247,RU 1844277248,1844281343,AZ 1844281344,1844285439,DE 1844285440,1844289535,RU 1844289536,1844293631,IT 1844293632,1844297727,DE 1844297728,1844301823,IQ 1844301824,1844305919,NL 1844305920,1844310015,RU 1844310016,1844318207,FR 1844318208,1844322303,IT 1844322304,1844326399,CZ 1844326400,1844330495,DK 1844330496,1844334591,GB 1844334592,1844342783,RU 1844342784,1844346879,IT 1844346880,1844350975,GB 1844350976,1844355071,SY 1844355072,1844359167,KZ 1844359168,1844363263,IR 1844363264,1844367359,RU 1844367360,1844371455,CZ 1844371456,1844375551,GE 1844375552,1844379647,RU 1844379648,1844383743,IR 1844383744,1844387839,AZ 1844387840,1844391935,KZ 1844391936,1844396031,DE 1844396032,1844400127,CZ 1844400128,1844408319,GB 1844408320,1844412415,FR 1844412416,1844416511,RU 1844416512,1844420607,FR 1844420608,1844424703,DE 1844424704,1844428799,SI 1844428800,1844432895,DE 1844432896,1844436991,RU 1844436992,1844441087,NO 1844441088,1844445183,IT 1844445184,1844510719,FI 1844510720,1844576255,PL 1844576256,1844641791,GR 1844641792,1844707327,PL 1844707328,1844772863,RU 1844772864,1844838399,RS 1844838400,1844903935,GB 1844903936,1844969471,NO 1844969472,1845006335,RU 1845006336,1845010431,KZ 1845010432,1845022719,RU 1845022720,1845023743,KZ 1845023744,1845025535,RU 1845025536,1845025791,KZ 1845025792,1845027583,RU 1845027584,1845027839,ES 1845027840,1845029887,RU 1845029888,1845030143,KZ 1845030144,1845030911,RU 1845030912,1845031935,GE 1845031936,1845034751,RU 1845034752,1845035007,BY 1845035008,1845100543,GB 1845100544,1845166079,DE 1845166080,1845231615,UA 1845231616,1845297151,RU 1845297152,1845362687,IL 1845362688,1845428223,UA 1845428224,1845493759,IE 1845493760,1845755903,JP 1845755904,1845764095,HK 1845764096,1845766143,JP 1845766144,1845768191,MY 1845768192,1845772287,JP 1845772288,1845788671,KR 1845788672,1845837823,JP 1845837824,1845839871,PH 1845839872,1845841919,IN 1845841920,1845846015,AU 1845846016,1845850111,ID 1845850112,1845851135,WS 1845851136,1845852159,AU 1845852160,1845854207,JP 1845854208,1845886975,KR 1845886976,1846018047,CN 1846018048,1846542335,KR 1846542336,1846804479,CN 1846804480,1847066623,AU 1847066624,1847590911,TW 1847590912,1847721983,AU 1847721984,1847730175,NP 1847730176,1847732223,PK 1847732224,1847734271,CN 1847734272,1847735295,NZ 1847735296,1847736319,AU 1847736320,1847738367,JP 1847738368,1847754751,KR 1847754752,1847757823,TH 1847757824,1847758847,CN 1847758848,1847770111,TH 1847770112,1847771135,SG 1847771136,1847783423,TH 1847783424,1847787519,US 1847787520,1847803903,KR 1847803904,1847807999,VN 1847808000,1847810047,ID 1847810048,1847812095,FJ 1847812096,1847853055,KR 1847853056,1848115199,PK 1848115200,1848377343,CN 1848381440,1848382463,NZ 1848382464,1848383487,JP 1848383488,1848385535,AU 1848385536,1848393727,KR 1848393728,1848401919,JP 1848401920,1848406015,PH 1848406016,1848410111,NP 1848410112,1848411135,JP 1848411136,1848411391,PH 1848411392,1848412415,JP 1848412416,1848412671,PH 1848412672,1848413439,JP 1848413440,1848413951,PH 1848413952,1848414207,JP 1848414208,1848418303,CN 1848418304,1848420351,AU 1848420352,1848422399,ID 1848422400,1848424447,JP 1848424448,1848426495,VN 1848426496,1848639487,KR 1848639488,1848705023,CN 1848705024,1848770559,TH 1848770560,1848774655,JP 1848774656,1848776703,AU 1848776704,1848778751,JP 1848778752,1848786943,IN 1848786944,1848791039,JP 1848791040,1848793087,ID 1848793088,1848803327,JP 1848803328,1848819711,TW 1848819712,1848827903,JP 1848827904,1848831999,PH 1848832000,1848836095,JP 1848836096,1849032703,CN 1849032704,1849065471,JP 1849065472,1849163775,PH 1849163776,1849819135,CN 1849819136,1849950207,JP 1849950208,1850212351,KR 1850212352,1850343423,CN 1850343424,1850376191,JP 1850376192,1850392575,MY 1850392576,1850400767,KH 1850400768,1850408959,JP 1850408960,1850490879,CN 1850490880,1850507263,KR 1850507264,1850508287,BD 1850508288,1850509311,CN 1850509312,1850510335,AU 1850510336,1850511359,KR 1850511360,1850513407,ID 1850513408,1850514431,TH 1850514432,1850515455,CN 1850515456,1850519551,IN 1850519552,1850520575,AU 1850520576,1850521599,JP 1850521600,1850522623,CN 1850522624,1850523647,HK 1850523648,1850572799,CN 1850572800,1850671103,TH 1850671104,1850736639,HK 1850736640,1851523071,CN 1851523072,1851527167,JP 1851527168,1851528191,NZ 1851528192,1851529215,KR 1851529216,1851531263,PH 1851531264,1851539455,JP 1851539456,1851540479,HK 1851540480,1851541503,CN 1851541504,1851542527,ID 1851542528,1851543551,HK 1851543552,1851547647,JP 1851547648,1851555839,SG 1851555840,1851588607,KR 1851588608,1851590655,JP 1851590656,1851591679,AU 1851591680,1851592703,ID 1851592704,1851594751,AU 1851594752,1851596799,KR 1851596800,1851604991,CN 1851604992,1851613183,PH 1851613184,1851617279,JP 1851617280,1851637759,KR 1851637760,1851654143,PK 1851654144,1853882367,CN 1853882368,1854406655,JP 1854406656,1854668799,ID 1854668800,1855455231,AU 1855455232,1855848447,CN 1855848448,1855913983,JP 1855913984,1855979519,MY 1855979520,1856241663,JP 1856241664,1856307199,TH 1856307200,1856315391,KR 1856315392,1856323583,CN 1856323584,1856339967,KR 1856339968,1856372735,JP 1856372736,1856503807,CN 1856503808,1856765951,TH 1856765952,1856770047,JP 1856770048,1856774143,IN 1856774144,1856779263,JP 1856779264,1856780287,IN 1856780288,1856782335,JP 1856782336,1856798719,KR 1856798720,1856815103,IN 1856815104,1856843775,CN 1856843776,1856847871,HK 1856847872,1856864255,CN 1856864256,1856872447,AU 1856872448,1856876543,NZ 1856876544,1856880639,IN 1856880640,1856888831,CN 1856888832,1856892927,AU 1856892928,1856897023,JP 1856897024,1857028095,AU 1857028096,1860173823,CN 1860173824,1860435967,IN 1860435968,1860698111,CN 1860698112,1860706303,JP 1860706304,1860714495,CN 1860714496,1860722687,ID 1860722688,1860726783,KR 1860726784,1860728831,AU 1860728832,1860733951,JP 1860733952,1860734975,AU 1860734976,1860735999,NZ 1860736000,1860737023,AU 1860737024,1860743167,JP 1860743168,1860743333,AU 1860743334,1860743334,HK 1860743335,1860743462,AU 1860743463,1860743464,JP 1860743465,1860744191,AU 1860744192,1860745215,IN 1860745216,1860746239,AU 1860746240,1860747263,PK 1860747264,1860759551,JP 1860759552,1860761599,AU 1860761600,1860763647,IN 1860763648,1860829183,JP 1860829184,1860960255,IN 1860960256,1861091327,CN 1861091328,1861222399,AU 1861222400,1866465279,CN 1866465280,1866530815,JP 1866530816,1866563583,SG 1866563584,1866579967,KR 1866579968,1866588159,JP 1866588160,1866592255,NZ 1866592256,1866596351,VN 1866596352,1866661887,CN 1866661888,1866666656,AU 1866666657,1866666657,NZ 1866666658,1866670079,AU 1866670080,1866674175,MY 1866674176,1866678271,TW 1866678272,1866686463,ID 1866686464,1866690559,KH 1866690560,1866711039,JP 1866711040,1866715135,CN 1866715136,1866727423,KR 1866727424,1866731519,HK 1866731520,1866733567,JP 1866733568,1866735615,ID 1866735616,1866743807,PH 1866743808,1866751999,CN 1866752000,1866756095,PK 1866756096,1866760191,ID 1866760192,1866792959,JP 1866792960,1866858495,NZ 1866858496,1866989567,TW 1866989568,1867513855,CN 1867513856,1867775999,TW 1867776000,1867825151,TH 1867825152,1867826175,MM 1867826176,1867841535,TH 1867841536,1867907071,CN 1867907072,1868038143,JP 1868038144,1868103679,PK 1868103680,1868201983,JP 1868201984,1868210175,MY 1868210176,1868212223,JP 1868212224,1868214271,IN 1868214272,1868218367,KH 1868218368,1868234751,SG 1868234752,1868267519,IN 1868267520,1868283903,KR 1868283904,1868292095,CN 1868292096,1868294143,IN 1868294144,1868295167,VN 1868295168,1868296191,HK 1868296192,1868300287,JP 1868300288,1868333055,IN 1868333056,1868341247,PK 1868341248,1868345343,ID 1868345344,1868346367,GU 1868346368,1868347391,TH 1868348416,1868349439,KR 1868349440,1868357631,SG 1868357632,1868361727,HK 1868361728,1868362751,KH 1868362752,1868363775,JP 1868363776,1868365823,CN 1868365824,1868431359,IN 1868431360,1868562431,ID 1868562432,1869611007,JP 1869611008,1870004223,CN 1870004224,1870036991,KR 1870036992,1870045183,KH 1870045184,1870049279,AU 1870049280,1870053375,IN 1870053376,1870055423,AU 1870055424,1870057471,CN 1870057472,1870058495,AU 1870058496,1870059519,IN 1870059520,1870065663,AU 1870065664,1870069759,IN 1870069760,1870077951,JP 1870077952,1870086143,NP 1870086144,1870110719,CN 1870110720,1870118911,PK 1870118912,1870135295,IN 1870135296,1870462975,CN 1870462976,1870479359,JP 1870479360,1870495743,PH 1870495744,1870497791,TW 1870497792,1870499839,IN 1870499840,1870501887,JP 1870501888,1870503935,AF 1870503936,1870512127,AU 1870512128,1870528511,IN 1870528512,1873281023,CN 1873281024,1873412095,JP 1873412096,1873477631,CN 1873477632,1873510399,KR 1873510400,1873543167,JP 1873543168,1874329599,CN 1874329600,1874460671,TW 1874460672,1874591743,CN 1874591744,1874853887,JP 1874853888,1876426751,CN 1876426752,1876557823,JP 1876557824,1876688895,KR 1876688896,1876754431,AU 1876754432,1876756479,BD 1876756480,1876761599,SG 1876761600,1876761855,CN 1876761856,1876762623,SG 1876762624,1876764671,KR 1876764672,1876765695,ID 1876765696,1876766719,SG 1876766720,1876768767,MY 1876768768,1876769791,AU 1876769792,1876770815,JP 1876770816,1876785407,SG 1876785408,1876785439,HK 1876785440,1876787199,SG 1876787200,1876885503,CN 1876893696,1876901887,TH 1876901888,1876918271,SG 1876918272,1876934655,LK 1876934656,1876942847,JP 1876942848,1876946943,AU 1876946944,1876947967,CN 1876948992,1876950015,CN 1876950016,1876951039,ID 1876951040,1877475327,CN 1877475328,1877688319,JP 1877688320,1877691391,IN 1877691392,1877692415,JP 1877692416,1877696511,PH 1877696512,1877704703,CN 1877704704,1877705727,AU 1877705728,1877706751,MY 1877706752,1877707775,SG 1877707776,1877709823,AU 1877709824,1877710847,IN 1877710848,1877711871,HK 1877711872,1877721087,CN 1877721088,1877737471,TW 1877737472,1877999615,JP 1877999616,1879048191,TW 1879048192,1883504639,CN 1883504640,1883766783,JP 1883766784,1883770879,MN 1883770880,1883783167,KR 1883783168,1883799551,VN 1883799552,1883832319,KR 1883832320,1884028927,CN 1884028928,1884159999,KR 1884160000,1884164095,VN 1884164096,1884168191,TW 1884168192,1884172287,ID 1884172288,1884176383,PH 1884176384,1884184575,TW 1884184576,1884186623,ID 1884186624,1884188671,TW 1884188672,1884192767,JP 1884192768,1884209151,ID 1884209152,1884217343,JP 1884217344,1884225535,SG 1884225536,1884291071,IN 1884291072,1885863935,CN 1885863936,1885995007,TW 1885995008,1886191615,KR 1886191616,1886195455,JP 1886195456,1886195711,PH 1886195712,1886197759,ID 1886197760,1886199807,JP 1886199808,1886207999,KR 1886208000,1886214143,NZ 1886214144,1886216191,VN 1886216192,1886224383,IN 1886224384,1886257151,CN 1886257152,1886322687,IN 1886322688,1886781439,CN 1886781440,1886978047,HK 1886978048,1886986239,KR 1886986240,1886990335,TW 1886990336,1886994431,IN 1886994432,1887005695,TW 1887005696,1887010815,HK 1887010816,1887019007,TH 1887019008,1887027199,HK 1887027200,1887043583,KR 1887043584,1887764479,CN 1887764480,1887813631,KR 1887813632,1887830015,IN 1887830016,1887961087,LK 1887961088,1887993855,JP 1887993856,1888026623,KR 1888026624,1888030719,BD 1888030720,1888030975,HK 1888030976,1888031231,GB 1888031232,1888034815,HK 1888034816,1888038911,JP 1888038912,1888040959,CN 1888040960,1888059391,JP 1888059392,1888063487,VN 1888063488,1888067583,JP 1888067584,1888071679,MY 1888071680,1888073727,KR 1888073728,1888239615,JP 1888239616,1888255999,KR 1888256000,1888260095,JP 1888260096,1888264191,KR 1888264192,1888266239,ID 1888266240,1888268287,JP 1888268288,1888270335,AU 1888270336,1888271359,SG 1888271360,1888272383,IN 1888272384,1888288767,KR 1888288768,1888354303,AU 1888354304,1888485375,TH 1888485376,1891631103,KR 1891631104,1891893247,CN 1891893248,1891942399,IN 1891942400,1891950591,KR 1891950592,1891958783,PH 1891958784,1892024319,VN 1892024320,1892122623,PH 1892122624,1892155391,SG 1892155392,1892941823,PH 1892941824,1893015551,KR 1893015552,1893019647,AU 1893019648,1893023743,TW 1893023744,1893027839,HK 1893027840,1893031935,VN 1893031936,1893040127,HK 1893040128,1893072895,AU 1893072896,1893138431,KR 1893138432,1893203967,ID 1893203968,1893728255,KR 1893728256,1896480767,CN 1896480768,1896497151,KR 1896497152,1896513535,SG 1896513536,1896546303,HK 1896546304,1896579071,BD 1896579072,1896587263,ID 1896587264,1896591359,SG 1896591360,1896593407,ID 1896593408,1896594431,AU 1896594432,1896595455,MY 1896595456,1896603647,CN 1896603648,1896605695,IN 1896605696,1896606719,AU 1896606720,1896607743,MY 1896607744,1896609791,VU 1896609792,1896611839,SG 1896611840,1897070591,CN 1897070592,1897136127,IN 1897136128,1897140223,AU 1897140224,1897141247,IN 1897141248,1897142271,HK 1897142272,1897143295,AU 1897143296,1897144319,ID 1897144320,1897152511,NC 1897152512,1897160703,FJ 1897160704,1897168895,VN 1897168896,1897169919,AU 1897169920,1897170943,HK 1897170944,1897172991,ID 1897172992,1897175039,PH 1897175040,1897176063,JP 1897177088,1897201663,JP 1897201664,1897209855,KR 1897209856,1897213951,AU 1897213952,1897218047,JP 1897218048,1897222143,IN 1897222144,1897226239,TW 1897226240,1897234431,NC 1897234432,1897242623,MY 1897242624,1897250815,TW 1897250816,1897259007,HK 1897259008,1897260031,NZ 1897260032,1897261055,BD 1897261056,1897263103,CN 1897263104,1897265151,TH 1897265152,1897267199,JP 1897267200,1897365503,VN 1897365504,1897398271,MY 1897398272,1897660415,CN 1897660416,1897725951,HK 1897725952,1897726463,US 1897726464,1897726527,JP 1897726528,1897730047,US 1897730048,1897730303,AU 1897730304,1897730559,US 1897730560,1897730815,AU 1897730816,1897735295,US 1897735296,1897735423,HK 1897735424,1897758719,US 1897758720,1897779199,KR 1897779200,1897781247,AU 1897781248,1897783295,JP 1897783296,1897784319,SG 1897784320,1897784831,HK 1897784832,1897785343,KR 1897785344,1897787391,SG 1897787392,1897789439,AU 1897789440,1897790463,KH 1897790464,1897791487,HK 1897791488,1897824255,KR 1897824256,1897857023,IN 1897857024,1897922559,CN 1897922560,1898708991,JP 1898708992,1899233279,CN 1899233280,1899237375,AU 1899237376,1899241471,JP 1899241472,1899249663,VN 1899249664,1899266047,MO 1899266048,1899267071,AU 1899267072,1899268095,HK 1899268096,1899270143,KR 1899270144,1899271167,AU 1899271168,1899272191,ID 1899272192,1899273215,SG 1899273216,1899274239,JP 1899274240,1899282431,CN 1899282432,1899290623,KR 1899291648,1899292671,CN 1899292672,1899294719,AU 1899294720,1899298815,JP 1899298816,1899364351,TH 1899364352,1899724799,CN 1899724800,1899741183,KR 1899741184,1899749375,LK 1899749376,1899750399,CN 1899750400,1899751423,JP 1899751424,1899753471,ID 1899753472,1899757567,HK 1899757568,1899831295,KR 1899831296,1899839487,PH 1899839488,1899849727,AU 1899849728,1899850751,KR 1899850752,1899851775,VN 1899851776,1899855871,JP 1899855872,1899888639,TW 1899888640,1904345087,CN 1904345088,1904361471,JP 1904361472,1904369663,KR 1904369664,1904375807,CN 1904375808,1904376831,NZ 1904376832,1904377855,KH 1904377856,1904476159,KR 1904476160,1905262591,CN 1905262592,1906311167,JP 1906311168,1908408319,VN 1908408320,1908424703,AU 1908424704,1908441087,KR 1908441088,1908473855,JP 1908473856,1908539391,IN 1908539392,1908670463,CN 1908670464,1908735999,TW 1908736000,1908740095,AU 1908740096,1908744191,JP 1908744192,1908746239,SG 1908746240,1908748287,JP 1908748288,1908750335,PK 1908750336,1908752383,JP 1908752384,1908753407,NZ 1908753408,1908754431,PF 1908754432,1908756479,PH 1908756480,1908760575,KR 1908760576,1908761599,NZ 1908761600,1908762623,CN 1908762624,1908763647,IN 1908763648,1908764671,ID 1908764672,1908768767,AU 1908768768,1908801535,JP 1908801536,1908899839,KR 1908899840,1908932607,NP 1908932608,1909129215,CN 1909129216,1909161983,AU 1909161984,1909194751,PK 1909194752,1909456895,CN 1909456896,1909473279,JP 1909473280,1909474303,HK 1909474304,1909475327,PH 1909475328,1909481471,HK 1909481472,1909587967,CN 1909587968,1909719039,MY 1909719040,1909735423,CN 1909735424,1909743615,IN 1909743616,1909744639,AU 1909744640,1909745663,CN 1909745664,1909746687,JP 1909746688,1909747711,MY 1909747712,1909751807,ID 1909751808,1909759999,JP 1909760000,1909762047,ID 1909762048,1909764095,AU 1909764096,1909766143,PH 1909766144,1909768191,CN 1909768192,1909784575,HK 1909784576,1909817343,CN 1909817344,1909850111,JP 1909850112,1909981183,CN 1909981184,1910112255,KR 1910112256,1912340479,CN 1912340480,1912602623,HK 1912602624,1913651199,ID 1913651200,1914109951,JP 1914109952,1914175487,NZ 1914175488,1914437631,TW 1914437632,1914503167,CN 1914503168,1914552319,KR 1914552320,1914560511,SG 1914568704,1914576895,KR 1914576896,1914580991,TW 1914580992,1914585087,KR 1914585088,1914587135,AU 1914587136,1914589183,IN 1914589184,1914593279,ID 1914593280,1914601471,AU 1914601472,1914634239,KR 1914634240,1914642431,BD 1914642432,1914650623,KR 1914650624,1914652671,CN 1914652672,1914654719,AU 1914654720,1914658815,JP 1914658816,1914660863,AU 1914660864,1914662911,JP 1914662912,1914667007,KR 1914667008,1914683391,IN 1914683392,1914687487,AU 1914687488,1914688511,US 1914688512,1914689535,NZ 1914689536,1914691583,JP 1914691584,1914695679,IN 1914695680,1914697727,ID 1914697728,1914699775,IN 1914699776,1915748351,TW 1915748352,1916010495,JP 1916010496,1916141567,KR 1916141568,1916272639,CN 1916272640,1916534783,ID 1916534784,1917124607,CN 1917124608,1917169663,JP 1917169664,1917181951,NC 1917181952,1917190143,IN 1917190144,1917321215,KR 1917321216,1917779967,AU 1917779968,1917796351,ID 1917796352,1917812735,CN 1917812736,1917845503,IN 1917845504,1919680511,CN 1919680512,1919729663,KR 1919729664,1919746047,PH 1919746048,1919811583,TH 1919811584,1919815679,CN 1919815680,1919817727,ID 1919817728,1919819775,KR 1919819776,1919821823,NZ 1919821824,1919823871,ID 1919823872,1919827967,JP 1919827968,1919844351,CN 1919844352,1919877119,KR 1919877120,1919885311,CN 1919885312,1919893503,KR 1919893504,1919909887,JP 1919909888,1919918079,AU 1919918080,1919926271,CN 1919926272,1919942655,KR 1919942656,1919999999,CN 1920000000,1920002047,HK 1920002048,1920003071,CN 1920003072,1920008191,HK 1920008192,1920057343,CN 1920057344,1920058111,HK 1920058112,1920069631,CN 1920069632,1920071167,HK 1920071168,1920072703,CN 1920072704,1920073727,HK 1920073728,1920466943,CN 1920466944,1920991231,ID 1920991232,1921056767,TH 1921056768,1921058815,JP 1921058816,1921060863,BD 1921060864,1921062911,ID 1921062912,1921064959,LA 1921064960,1921069055,SG 1921069056,1921073151,JP 1921073152,1921089535,KR 1921089536,1921105919,AU 1921105920,1921122303,KR 1921122304,1921187839,BD 1921187840,1921253375,TH 1921253376,1921318911,CN 1921318912,1921384447,MY 1921384448,1921388543,NZ 1921388544,1921391615,IN 1921392640,1921400831,JP 1921400832,1921404927,ID 1921404928,1921406463,HK 1921406464,1921406719,GB 1921406720,1921406975,HK 1921406976,1921409023,BD 1921409024,1921425407,JP 1921425408,1921431551,NZ 1921431552,1921433599,KH 1921433600,1921449983,JP 1921449984,1921515519,CN 1921515520,1921646591,TW 1921646592,1921777663,CN 1921777664,1921843199,TW 1921843200,1921851391,KR 1921851392,1921853439,JP 1921853440,1921855487,KR 1921855488,1921859583,ID 1921859584,1921861631,CN 1921861632,1921863679,SG 1921863680,1921865727,CN 1921865728,1921867775,ID 1921867776,1921871871,AU 1921871872,1921872895,US 1921872896,1921873663,NZ 1921873664,1921875967,US 1921875968,1921892351,CN 1921892352,1921896447,AU 1921896448,1921898495,SG 1921898496,1921900543,PH 1921900544,1921908735,KR 1921908736,1921943551,JP 1921943552,1921945599,IN 1921945600,1921949695,HK 1921949696,1921953791,AU 1921953792,1921957887,JP 1921957888,1921974271,GU 1921974272,1922039807,IN 1922039808,1925447679,JP 1925447680,1925578751,CN 1925578752,1925611519,AU 1925611520,1925619711,PH 1925619712,1925627903,TW 1925627904,1925638143,JP 1925638144,1925640191,PK 1925640192,1925642239,ID 1925642240,1925644287,CN 1925644288,1925660671,KR 1925660672,1925661439,TW 1925661440,1925662463,HK 1925662464,1925663743,TW 1925663744,1925664767,HK 1925664768,1925677055,ID 1925677056,1926234111,KR 1926234112,1929379839,CN 1929379840,1930952703,KR 1930952704,1931345919,CN 1931345920,1931354111,JP 1931354112,1931362303,AU 1931362304,1931378687,TW 1931378688,1931427839,JP 1931431936,1931433983,JP 1931433984,1931436031,AU 1931436032,1931444223,KR 1931444224,1931460607,TH 1931460608,1931468799,JP 1931468800,1931476991,SG 1931476992,1931739135,CN 1931739136,1932001279,JP 1932001280,1932132351,KR 1932132352,1932140543,AU 1932148736,1932152831,PK 1932152832,1932156927,TW 1932156928,1932161023,JP 1932161024,1932163071,TW 1932163072,1932165119,PH 1932165120,1932197887,SG 1932197888,1932263423,TW 1932263424,1933574143,CN 1933574144,1933639679,AU 1933639680,1933705215,JP 1933705216,1933770751,SG 1933770752,1933836287,TH 1933836288,1933901823,KR 1933901824,1933918207,AU 1933918208,1933922303,CN 1933922304,1933926399,IN 1933926400,1933934591,KR 1933934592,1933942783,IN 1933942784,1933950975,NZ 1933950976,1933955071,JP 1933955072,1933957119,BD 1933957120,1933959167,ID 1933959168,1933963263,JP 1933963264,1933967359,IN 1933967360,1934032895,AU 1934032896,1934098431,KR 1934098432,1934622719,VN 1934622720,1934884863,TW 1934884864,1934901247,CN 1934901248,1934917631,LA 1934917632,1934925823,MV 1934925824,1934927871,KR 1934927872,1934929919,PH 1934929920,1934931967,VN 1934931968,1934934015,JP 1934934016,1934942207,CN 1934942208,1934966783,PH 1934966784,1934974975,ID 1934974976,1934983167,JP 1934983168,1934983423,MY 1934983424,1934984959,AU 1934984960,1934985215,US 1934985216,1934987263,JP 1934987264,1934991359,TW 1934991360,1934999551,KR 1934999552,1935015935,CN 1935015936,1935081471,KR 1935081472,1935147007,TH 1935147008,1935671295,KR 1935671296,1935933439,IN 1935933440,1936457727,CN 1936457728,1937244159,IN 1937244160,1937506303,CN 1937506304,1937510399,AU 1937510400,1937514495,CN 1937514496,1937516543,AU 1937516544,1937518591,IN 1937518592,1937522687,JP 1937522688,1937530879,ID 1937530880,1937534463,IN 1937534464,1937534975,GB 1937534976,1937535999,IN 1937536000,1937536511,GB 1937536512,1937537023,US 1937537024,1937539071,IN 1937539072,1937637375,JP 1937637376,1937670143,HK 1937670144,1937672191,NZ 1937672192,1937678335,JP 1937678336,1937686527,NC 1937686528,1937702911,KR 1937702912,1937760255,BD 1937760256,1937768447,JP 1937768448,1938030591,AU 1938030592,1938292735,MY 1938292736,1938948095,KR 1938948096,1938964479,JP 1938964480,1938972671,AU 1938972672,1938976767,MY 1938976768,1938978815,SG 1938978816,1938980863,VN 1938980864,1939079167,PH 1939079168,1939865599,CN 1939865600,1939898367,KR 1939898368,1939914751,HK 1939914752,1939931135,IN 1939931136,1939996671,KR 1939996672,1940127743,JP 1940127744,1940193279,MY 1940193280,1940234239,JP 1940234240,1940236287,VN 1940236288,1940238335,AU 1940238336,1940240383,KR 1940240384,1940242431,JP 1940242432,1940258815,TW 1940258816,1940275199,AU 1940275200,1940283391,CN 1940283392,1940291583,ID 1940295680,1940324351,JP 1940324352,1940357119,PK 1940357120,1940389887,JP 1940389888,1940914175,CN 1940914176,1941045247,JP 1941045248,1941049343,HK 1941049344,1941051391,AU 1941051392,1941052415,KH 1941052416,1941053439,AU 1941053440,1941057535,KR 1941057536,1941059583,ID 1941059584,1941061631,TH 1941061632,1941069823,KR 1941069824,1941071871,IN 1941071872,1941073919,AU 1941073920,1941075967,JP 1941075968,1941110783,ID 1941110784,1941176319,JP 1941176320,1941438463,CN 1941438464,1941569535,IN 1941569536,1941618687,PK 1941618688,1941635071,AU 1941639168,1941643263,NP 1941643264,1941651455,IN 1941651456,1941655551,JP 1941655552,1941657599,KR 1941657600,1941658623,MN 1941658624,1941659647,JP 1941659648,1941667839,NZ 1941667840,1941700607,AU 1941700608,1941831679,NZ 1941831680,1945108479,CN 1945108480,1946157055,IN 1946157056,1946159103,ID 1946159104,1946161151,CN 1946161152,1946163199,AU 1946163200,1946165247,CN 1946165248,1946173439,PK 1946173440,1946173695,PG 1946173696,1946173951,TW 1946173952,1946174463,SG 1946174464,1946174719,TW 1946174720,1946175487,SG 1946175488,1946175615,HK 1946175616,1946175999,SG 1946176000,1946176255,JP 1946176256,1946176511,SG 1946176512,1946176647,AU 1946176648,1946176767,PH 1946176768,1946178047,SG 1946178048,1946178303,HK 1946178304,1946179583,SG 1946179584,1946179839,AU 1946179840,1946181631,SG 1946181632,1946189823,MY 1946189824,1946222591,JP 1946222592,1946943487,CN 1946943488,1946951679,JP 1946951680,1946953727,BD 1946953728,1946955775,ID 1946955776,1946957823,SG 1946957824,1946959871,NZ 1946959872,1946976255,LK 1946976256,1947009023,SG 1947009024,1947074559,CN 1947074560,1947205631,SG 1947205632,1948254207,CN 1948254208,1949302783,KR 1949302784,1949433855,HK 1949433856,1949437951,CN 1949437952,1949439999,AU 1949440000,1949442047,ID 1949442048,1949446143,TW 1949446144,1949448191,JP 1949448192,1949449139,AU 1949449140,1949449140,IN 1949449141,1949449395,AU 1949449396,1949449396,HK 1949449397,1949449471,AU 1949449472,1949449727,JP 1949449728,1949450239,AU 1949450240,1949466623,IN 1949466624,1949499391,PH 1949499392,1949564927,SG 1949564928,1949958143,CN 1949958144,1949990911,PK 1949990912,1949995007,CN 1949995008,1950007295,JP 1950007296,1950009343,ID 1950009344,1950011391,BD 1950011392,1950015487,CN 1950015488,1950023679,TH 1950023680,1950089215,TW 1950089216,1950351359,CN 1950351360,1950482431,JP 1950482432,1950515199,CN 1950515200,1950517247,IN 1950517248,1950518271,US 1950518272,1950519295,IN 1950519296,1950520319,US 1950520320,1950521343,PH 1950521344,1950523391,IN 1950523392,1950527487,AU 1950531584,1950533631,NP 1950533632,1950535679,ID 1950535680,1950539775,HK 1950539776,1950541823,AU 1950541824,1950543871,HK 1950543872,1950545919,NZ 1950545920,1950547967,PH 1950547968,1950580735,KR 1950580736,1950613503,JP 1950613504,1950621695,GU 1950621696,1950629887,KR 1950629888,1950646271,IN 1950646272,1950648319,VN 1950648320,1950650367,CN 1950650368,1950654463,TH 1950654464,1950658559,ID 1950658560,1950660607,CN 1950660608,1950662655,HK 1950662656,1950666751,BD 1950666752,1950668799,NP 1950668800,1950670847,JP 1950670848,1950672895,ID 1950672896,1950674943,KR 1950674944,1950676991,IN 1950676992,1950679039,ID 1950679040,1950777343,CN 1950777344,1950810111,JP 1950810112,1950875647,PK 1950875648,1951137791,IN 1951137792,1951399935,CN 1951399936,1951662079,JP 1951662080,1951727615,KR 1951727616,1951793151,CN 1951793152,1952022527,SG 1952022528,1952026623,TW 1952026624,1952030719,CN 1952030720,1952038911,KR 1952038912,1952047103,JP 1952047104,1952051199,NZ 1952051200,1952055295,JP 1952055296,1952071679,AU 1952071680,1952073727,HK 1952073728,1952074751,AU 1952074752,1952075775,NZ 1952075776,1952079871,CN 1952079872,1952088063,PK 1952088064,1952092159,NZ 1952092160,1952096255,JP 1952096256,1952102399,ID 1952102400,1952104447,CN 1952104448,1952108543,JP 1952108544,1952110591,ID 1952110592,1952112639,KR 1952112640,1952116735,NP 1952116736,1952120831,IN 1952120832,1952186367,JP 1952186368,1952251903,HK 1952251904,1952284671,PH 1952284672,1952288767,NZ 1952288768,1952292863,JP 1952292864,1952317439,KR 1952317440,1952382975,JP 1952382976,1952448511,CN 1952448512,1953497087,VN 1953497088,1953890303,CN 1953890304,1953923071,VN 1953923072,1953939455,TW 1953939456,1953951743,JP 1953951744,1953955839,AU 1953955840,1954021375,IN 1954021376,1954545663,KR 1954545664,1958805503,CN 1958805504,1958807551,SG 1958807552,1958809599,MO 1958809600,1958821887,CN 1958821888,1958825983,VN 1958825984,1958830079,KR 1958830080,1958838271,JP 1958838272,1958842367,IN 1958842368,1958844415,NZ 1958844416,1958845439,CN 1958845440,1958845951,MY 1958845952,1958846463,HK 1958846464,1958847487,IN 1958847488,1958848511,CN 1958848512,1958850559,BD 1958850560,1958852607,CN 1958852608,1958853631,AU 1958853632,1958854655,ID 1958854656,1958860799,AU 1958860800,1958862847,BD 1958862848,1958871039,JP 1958871040,1959067647,CN 1959067648,1959100415,MY 1959100416,1959102463,ID 1959102464,1959104511,JP 1959104512,1959106559,AU 1959108608,1959110655,CN 1959110656,1959112703,JP 1959112704,1959114751,HK 1959114752,1959115007,IN 1959115008,1959116287,HK 1959116288,1959116543,AU 1959116544,1959116799,HK 1959116800,1959133183,SG 1959133184,1959239679,CN 1959239680,1959241727,KR 1959241728,1959243775,IN 1959243776,1959247871,JP 1959247872,1959249919,ID 1959251968,1959256063,NZ 1959256064,1959260159,AU 1959260160,1959264255,JP 1959264256,1959395327,KR 1959395328,1959526399,IN 1959526400,1959657471,CN 1959723008,1960050687,CN 1960050688,1960058879,KR 1960058880,1960067071,VN 1960067072,1960069119,AU 1960069120,1960071167,ID 1960071168,1960075263,TW 1960075264,1960077311,ID 1960077312,1960079359,BD 1960079360,1960083455,HK 1960083456,1960091647,KH 1960091648,1960095743,CN 1960095744,1960097791,IN 1960097792,1960099839,BD 1960099840,1960121343,AU 1960121344,1960122367,JP 1960122368,1960124415,ID 1960124416,1960125439,PK 1960125440,1960126463,HK 1960126464,1960128511,CN 1960128512,1960132607,ID 1960132608,1960181759,CN 1960181760,1960185855,TW 1960185856,1960187903,JP 1960187904,1960189951,IN 1960189952,1960202239,CN 1960202240,1960206335,JP 1960206336,1960210431,SG 1960210432,1960210943,TH 1960210944,1960211455,SG 1960211456,1960211903,AU 1960211904,1960212479,SG 1960212480,1960212582,IN 1960212583,1960212583,SG 1960212584,1960212735,IN 1960212736,1960214015,SG 1960214016,1960214271,IN 1960214272,1960214527,SG 1960214528,1960574975,CN 1960574976,1960837119,JP 1960837120,1961885695,CN 1961885696,1961951231,AU 1961951232,1962016767,TW 1962016768,1962541055,CN 1962541056,1962622975,AU 1962622976,1962639359,CN 1962639360,1962658815,NZ 1962658816,1962659839,HK 1962659840,1962663935,SG 1962663936,1962672127,HK 1962672128,1962803199,CN 1962803200,1962827775,JP 1962827776,1962829823,ID 1962829824,1962831871,CN 1962831872,1962835967,ID 1962835968,1962868735,CN 1962868736,1962885119,AU 1962885120,1962901503,KR 1962901504,1962934271,CN 1962934272,1963458559,VN 1963458560,1963982847,CN 1963982848,1964113919,KR 1964113920,1964118015,HK 1964118016,1964120063,ID 1964120064,1964122111,JP 1964122112,1964122367,SG 1964122368,1964122879,JP 1964122880,1964123135,HK 1964123136,1964123391,GB 1964123392,1964123647,US 1964123648,1964123903,CN 1964123904,1964126207,SG 1964126208,1964126463,HK 1964126464,1964130303,SG 1964130304,1964134399,HK 1964134400,1964136447,NZ 1964136448,1964138495,JP 1964138496,1964146687,HK 1964146688,1964171263,JP 1964171264,1964173311,BD 1964173312,1964173776,AU 1964173777,1964173777,JP 1964173778,1964173823,AU 1964173824,1964174079,HK 1964174080,1964174335,AU 1964174336,1964174591,SG 1964174592,1964175359,AU 1964175360,1964179455,GB 1964179456,1964244991,TW 1964244992,1964249087,AU 1964249088,1964253183,PK 1964253184,1964255231,WF 1964255232,1964257279,SG 1964257280,1964261375,ID 1964261376,1964263423,AU 1964263424,1964265471,JP 1964265472,1964269567,KR 1964269568,1964273663,JP 1964273664,1964275711,KH 1964275712,1964277759,GU 1964277760,1964294143,SG 1964294144,1964310527,KR 1964310528,1965948927,CN 1965948928,1966014463,JP 1966014464,1966079999,TH 1966080000,1966342143,CN 1966342144,1966407679,KR 1966407680,1966417919,JP 1966417920,1966418943,PK 1966418944,1966419967,ID 1966419968,1966424063,CN 1966424064,1966440447,KR 1966440448,1966444543,AU 1966444544,1966446591,ID 1966446592,1966447615,MY 1966447616,1966448639,NZ 1966448640,1966452735,AU 1966452736,1966456831,CN 1966456832,1966473215,KR 1966473216,1966538751,ID 1966538752,1966571519,JP 1966571520,1966587903,KR 1966587904,1966591999,AF 1966592000,1966596095,JP 1966596096,1966600191,AU 1966600192,1966602239,IN 1966602240,1966604287,KH 1966604288,1966669823,TW 1966669824,1966768127,CN 1966768128,1966772223,KR 1966772224,1966776319,JP 1966776320,1966784511,SG 1966784512,1966792703,PH 1966792704,1966796799,JP 1966796800,1966798847,BD 1966798848,1966800895,AU 1966800896,1967783935,CN 1967783936,1967800319,JP 1967800320,1967808511,CN 1967808512,1967812607,AU 1967812608,1967816703,ID 1967816704,1969225727,CN 1969225728,1969487871,IN 1969487872,1969618943,CN 1969618944,1969635327,PK 1969635328,1969651711,ID 1969651712,1969659903,AU 1969659904,1969661951,ID 1969661952,1969676287,JP 1969676288,1969688575,ID 1969688576,1969692671,CN 1969692672,1969694719,ID 1969694720,1969696767,CN 1969696768,1969702911,ID 1969702912,1969704959,CN 1969704960,1969707007,BD 1969707008,1969709055,MH 1969709056,1969713151,TW 1969713152,1969715199,AU 1969715200,1969717247,IN 1969717248,1969721343,CN 1969721344,1969725439,HK 1969725440,1969727487,JP 1969727488,1969729535,ID 1969729536,1969733631,JP 1969733632,1969750015,VN 1969750016,1969790975,JP 1969790976,1969793023,AU 1969793024,1969795071,CN 1969795072,1969797119,NZ 1969797120,1969798143,SG 1969798144,1969799167,HK 1969799168,1969807359,ID 1969807360,1969809407,AF 1969809408,1969811455,IN 1969811456,1969815551,PH 1969815552,1969881087,SG 1969881088,1970012159,CN 1970012160,1970143231,JP 1970143232,1970274303,KR 1970274304,1970798591,CN 1970798592,1970800639,SG 1970800640,1970802943,AU 1970802944,1970803199,SG 1970803200,1970803711,AU 1970803712,1970803967,HK 1970803968,1970804479,AU 1970804480,1970804735,SG 1970804736,1970806783,KH 1970806784,1970808831,NZ 1970808832,1970810879,AU 1970810880,1970812927,JP 1970814976,1970915327,CN 1970915328,1970917375,ID 1970917376,1970921471,TH 1970921472,1970925567,NP 1970925568,1970925823,MY 1970925824,1970926079,SG 1970926080,1970926335,AU 1970926336,1970926591,US 1970926592,1970926847,SG 1970926848,1970927103,IL 1970927104,1970927359,SG 1970927360,1970927615,US 1970927616,1970929663,AU 1970929664,1970962431,VN 1970962432,1970995199,CN 1970995200,1971060735,KR 1971060736,1975517183,CN 1975517184,1979711487,IN 1979711488,1981284351,JP 1981284352,1981480959,CN 1981480960,1981546495,JP 1981546496,1981808639,CN 1981808640,1983905791,KR 1983905792,1984102399,CN 1984102400,1984118783,AU 1984118784,1984131071,JP 1984131072,1984135167,CN 1984135168,1984151551,KR 1984151552,1984153599,NZ 1984153600,1984155647,KH 1984155648,1984159743,AU 1984159744,1984167935,IN 1984167936,1984430079,VN 1984430080,1985085439,CN 1985085440,1985093631,ID 1985093632,1985097727,AU 1985097728,1985118207,JP 1985118208,1985150975,NZ 1985150976,1985216511,JP 1985216512,1985347583,CN 1985347584,1985478655,JP 1985478656,1985480703,IN 1985480704,1985482751,PH 1985482752,1985486847,AU 1985486848,1985609727,CN 1985609728,1985675263,NZ 1985675264,1985708031,KR 1985708032,1985712127,ID 1985712128,1985716223,KR 1985716224,1985720319,NP 1985720320,1985724415,IN 1985724416,1985732607,JP 1985732608,1985734655,ID 1985734656,1985736703,IN 1985736704,1985740799,CN 1985740800,1985871871,NZ 1985871872,1986002943,IN 1986002944,1986199551,ID 1986199552,1986215935,HK 1986215936,1986232319,ID 1986232320,1986265087,TW 1986265088,1986396159,MY 1986396160,1986398207,VN 1986398208,1986400255,HK 1986400256,1986406399,CN 1986406400,1986412543,JP 1986412544,1986428927,AU 1986428928,1986461695,IN 1986461696,1986496511,JP 1986496512,1986498559,BT 1986498560,1986502655,HK 1986510848,1986519039,KR 1986519040,1986523135,PK 1986523136,1986523904,HK 1986523905,1986525183,CN 1986525184,1986527231,BN 1986527232,1986723839,JP 1986723840,1986740223,AU 1986740224,1986756607,VN 1986756608,1986760703,PK 1986760704,1986762751,AU 1986762752,1986764799,JP 1986764800,1986768895,KR 1986768896,1986769919,SG 1986769920,1986772991,AU 1986772992,1986789375,MY 1986789376,1987051519,JP 1987051520,1988034559,CN 1988034560,1988067327,AU 1988067328,1988075519,CN 1988075520,1988083711,AU 1988083712,1988362239,KR 1988362240,1988624383,CN 1988624384,1988755455,ID 1988755456,1988861951,AU 1988861952,1988870143,SG 1988870144,1988886527,KR 1988886528,1989148671,HK 1989148672,1989410815,CN 1989410816,1989541887,NZ 1989541888,1989607423,TW 1989607424,1989660671,JP 1989660672,1989661695,IN 1989661696,1989662719,ID 1989662720,1989663743,AU 1989663744,1989664767,ID 1989664768,1990197247,JP 1990197248,1990448639,TW 1990448640,1990448895,CN 1990448896,1990983679,TW 1990983680,1991245823,TH 1991245824,1991311359,KR 1991311360,1991376895,JP 1991376896,1991442431,CN 1991442432,1991499775,BD 1991499776,1991507967,NC 1991507968,1991835647,CN 1991835648,1991901183,IN 1991901184,1992097791,CN 1992097792,1992163327,SG 1992163328,1992364031,CN 1992364032,1992368127,HK 1992368128,1992380415,CN 1992380416,1992384511,HK 1992384512,1992417279,CN 1992417280,1992417535,HK 1992417536,1992818687,CN 1992818688,1992949759,SG 1992949760,1993342975,CN 1993342976,1993605119,AU 1993605120,1993736191,CN 1993736192,1993867263,SG 1993867264,1994391551,KR 1994391552,1994850303,CN 1994850304,1995046911,TW 1995046912,1995177983,KR 1995177984,1995374591,JP 1995374592,1995440127,CN 1995440128,1995571199,JP 1995571200,1995636735,CN 1995636736,1995702271,JP 1995702272,1996627967,CN 1996627968,1996630015,PH 1996630016,1996634111,ID 1996634112,1996636159,AU 1996636160,1996644351,ID 1996644352,1996652543,BT 1996652544,1996685311,CN 1996685312,1996750847,HK 1996750848,1997078527,CN 1997078528,1997094911,AU 1997094912,1997111295,HK 1997111296,1997127679,AU 1997127680,1997144063,HK 1997144064,1997176831,CN 1997176832,1997180927,AU 1997180928,1997185023,HK 1997185024,1997187071,JP 1997187072,1997188095,HK 1997188096,1997189119,BD 1997189120,1997191167,ID 1997191168,1997209599,JP 1997209600,1997242367,AU 1997242368,1997275135,ID 1997275136,1997406207,AU 1997406208,1997471743,TW 1997471744,1997479935,NZ 1997479936,1997488127,JP 1997488128,1997492223,AU 1997492224,1997496319,KH 1997496320,1997500415,AU 1997500416,1997504511,JP 1997504512,1997506559,ID 1997506560,1997508607,CN 1997508608,1997510655,JP 1997510656,1997512703,BD 1997512704,1997520895,VN 1997520896,1997537279,TW 1997537280,1997602815,CN 1997602816,1997611007,KR 1997611008,1997619199,AU 1997619200,1997635583,KR 1997635584,1997651967,AU 1997651968,1997668351,VN 1997668352,1997680639,AU 1997680640,1997684735,IN 1997684736,1997701119,KR 1997701120,1997705215,VN 1997705216,1997707263,BD 1997707264,1997709311,ID 1997709312,1997715455,JP 1997715456,1997717503,VN 1997717504,1997723647,CN 1997723648,1997725695,JP 1997725696,1998061567,CN 1998061568,1998258175,JP 1998258176,1998266367,SG 1998266368,1998268415,JP 1998268416,1998271271,SG 1998271272,1998271272,AU 1998271273,1998271815,SG 1998271816,1998271823,JP 1998271824,1998272431,SG 1998272432,1998272447,JP 1998272448,1998272547,SG 1998272548,1998272551,JP 1998272552,1998274559,SG 1998274560,1998454783,CN 1998454784,1998456831,AU 1998456832,1998458879,JP 1998458880,1998462975,TW 1998462976,1998467071,BD 1998467072,1998471167,CN 1998471168,1998487551,PK 1998487552,1998503935,KR 1998503936,1998520319,JP 1998520320,1998553087,TH 1998553088,1998561279,JP 1998561280,1998562863,IN 1998562864,1998562864,HK 1998562865,1998565375,IN 1998565376,1998569471,TW 1998569472,1998577663,CN 1998577664,1998579711,AU 1998579712,1998581759,SG 1998581760,1998584063,KR 1998584064,1998584319,IN 1998584320,1998584575,OM 1998584576,1998584831,IN 1998584832,1998585087,ZA 1998585088,1998585343,KR 1998585344,1998585599,JP 1998585600,1998585855,KR 1998585856,1999130623,CN 1999130624,1999134719,BD 1999134720,1999136767,MN 1999136768,1999138815,AU 1999138816,1999142911,MY 1999142912,1999249407,CN 1999257600,1999273983,TH 1999273984,1999278079,CN 1999278080,1999280127,HK 1999280128,1999282175,IN 1999282176,1999290367,KR 1999290368,1999298559,SG 1999298560,1999306751,CN 1999306752,1999372287,IN 1999372288,1999503359,CN 1999503360,1999568895,TH 1999568896,1999589375,JP 1999589376,1999591423,HK 1999591424,1999593471,ID 1999593472,1999597567,JP 1999597568,1999601663,NZ 1999601664,1999634431,JP 1999634432,2000158719,CN 2000158720,2000191487,SG 2000191488,2000224255,KR 2000224256,2000355327,CN 2000355328,2000371711,KR 2000371712,2000373759,JP 2000373760,2000375807,HK 2000375808,2000377855,AF 2000377856,2000379903,JP 2000379904,2000388095,TH 2000388096,2000617471,CN 2000617472,2000621567,PH 2000621568,2000625663,JP 2000625664,2000633855,CN 2000633856,2000642047,TH 2000642048,2000646143,HK 2000646144,2000650239,JP 2000650240,2000654335,PK 2000654336,2000668671,JP 2000668672,2000674815,AU 2000674816,2001207295,KR 2001207296,2001272831,JP 2001272832,2001305599,PK 2001305600,2001420287,SG 2001420288,2001453055,KR 2001453056,2001457151,SG 2001457152,2001461247,CN 2001461248,2001465343,JP 2001465344,2001469439,TW 2001469440,2001534975,TH 2001534976,2001559551,AU 2001559552,2001567743,KR 2001567744,2001600511,TW 2001600512,2001797119,CN 2001797120,2001829887,SG 2001829888,2001841247,HK 2001841248,2001841248,SA 2001841249,2001846271,HK 2001846272,2001854943,SG 2001854944,2001854951,CN 2001854952,2001855231,SG 2001855232,2001855263,US 2001855264,2001855743,SG 2001855744,2001855999,HK 2001856000,2001856127,SG 2001856128,2001856151,CZ 2001856152,2001856155,SG 2001856156,2001856159,CZ 2001856160,2001856191,SG 2001856192,2001856199,CZ 2001856200,2001857279,SG 2001857280,2001857535,HK 2001857536,2001857791,SG 2001857792,2001858047,HK 2001858048,2001858335,SG 2001858336,2001858367,US 2001858368,2001858639,SG 2001858640,2001858655,US 2001858656,2001859071,SG 2001859072,2001859327,HK 2001859328,2001860015,SG 2001860016,2001860031,US 2001860032,2001860047,HK 2001860048,2001860263,SG 2001860264,2001860271,US 2001860272,2001860351,SG 2001860352,2001860607,HK 2001860608,2001860655,SG 2001860656,2001860659,US 2001860660,2001860661,HK 2001860662,2001860664,US 2001860665,2001860665,HK 2001860666,2001860667,US 2001860668,2001860668,HK 2001860669,2001860671,US 2001860672,2001860991,SG 2001860992,2001860995,US 2001860996,2001860997,HK 2001860998,2001861001,US 2001861002,2001861003,HK 2001861004,2001861007,US 2001861008,2001861263,SG 2001861264,2001861265,US 2001861266,2001861267,HK 2001861268,2001861268,US 2001861269,2001861269,HK 2001861270,2001861271,US 2001861272,2001861272,HK 2001861273,2001861273,US 2001861274,2001861274,HK 2001861275,2001861279,US 2001861280,2001862079,SG 2001862080,2001862101,US 2001862102,2001862102,HK 2001862103,2001862116,US 2001862117,2001862118,HK 2001862119,2001862124,US 2001862125,2001862125,HK 2001862126,2001862128,US 2001862129,2001862131,HK 2001862132,2001862143,US 2001862144,2001862655,SG 2001862656,2001864703,AU 2001864704,2001870847,JP 2001870848,2001879039,KR 2001879040,2001895423,IN 2001895424,2001899519,VN 2001899520,2001901567,AU 2001901568,2001915903,JP 2001915904,2001919999,CN 2001920000,2001926143,ID 2001926144,2001928191,KH 2001928192,2001993727,JP 2001993728,2002518015,CN 2002518016,2002780159,PH 2002780160,2003304447,CN 2003304448,2003566591,JP 2003566592,2003697663,CN 2003697664,2003714047,MY 2003714048,2003720191,ID 2003720192,2003722239,JP 2003722240,2003726335,MY 2003726336,2003730431,ID 2003730432,2003763199,MY 2003763200,2003828735,PH 2003828736,2006188031,CN 2006188032,2006204415,BD 2006204416,2006212607,AU 2006212608,2006214655,TH 2006214656,2006216703,JP 2006216704,2006228991,KR 2006228992,2006237183,CN 2006237184,2006253567,JP 2006253568,2006319103,KR 2006319104,2006384639,JP 2006384640,2006433791,IN 2006433792,2006450175,CN 2006450176,2007007231,PK 2007007232,2007023615,BN 2007023616,2007025663,IN 2007025664,2007027711,CN 2007027712,2007031807,TH 2007031808,2007035903,AU 2007035904,2007039999,TW 2007040000,2007048191,KR 2007048192,2007064575,AU 2007064576,2007065599,IN 2007065600,2007066623,SG 2007066624,2007070719,JP 2007070720,2007498751,CN 2007498752,2008023039,JP 2008023040,2009071615,CN 2009071616,2011168767,KR 2011168768,2011205631,NZ 2011205632,2011209727,AU 2011209728,2011234303,JP 2011234304,2011299839,AU 2011299840,2011430911,IN 2011430912,2011693055,JP 2011693056,2011824127,CN 2011824128,2011889663,SG 2011889664,2011893759,LK 2011893760,2011897855,ID 2011897856,2011899903,NZ 2011899904,2011901951,HK 2011901952,2011906047,IN 2011906048,2011916287,FJ 2011916288,2011922431,JP 2011922432,2011938815,CN 2011938816,2011942911,KR 2011942912,2011947007,ID 2011947008,2011951103,JP 2011951104,2011953151,KR 2011953152,2011955199,ID 2011955200,2012086271,HK 2012086272,2012610559,JP 2012610560,2012741631,HK 2012741632,2013003775,CN 2013003776,2013011967,AU 2013011968,2013020159,JP 2013020160,2013028351,AU 2013028352,2013030399,CN 2013030400,2013032447,ID 2013032448,2013036543,FM 2013036544,2013038591,ID 2013038592,2013040639,HK 2013040640,2013044735,IN 2013044736,2013048831,ID 2013048832,2013052927,AU 2013052928,2013061119,IN 2013061120,2013065215,PG 2013065216,2014314495,CN 2014314496,2014838783,AU 2014838784,2015100927,CN 2015100928,2015166463,PH 2015166464,2015182847,AU 2015182848,2015199231,PH 2015199232,2015203327,KR 2015203328,2015205375,JP 2015205376,2015207423,ID 2015207424,2015215615,JP 2015215616,2015216383,IN 2015216384,2015216639,AU 2015216640,2015217663,IN 2015217664,2015219456,GU 2015219457,2015219967,IN 2015219968,2015220223,PH 2015220224,2015220479,IN 2015220480,2015220735,JP 2015220736,2015223807,IN 2015223808,2015225855,ID 2015225856,2015227903,IN 2015227904,2015231999,AU 2015232000,2016542719,CN 2016542720,2016550911,BD 2016550912,2016555007,SG 2016555008,2016559103,MY 2016559104,2016583679,KR 2016583680,2016587775,JP 2016587776,2016589823,BD 2016589824,2016591871,VN 2016591872,2016673791,JP 2016673792,2016935935,CN 2016935936,2017460223,IN 2017460224,2017984511,CN 2017984512,2017988607,JP 2017988608,2017992703,PH 2017992704,2018000895,CN 2018000896,2018004991,JP 2018004992,2018007039,VN 2018007040,2018009087,IN 2018009088,2018017279,VN 2018017280,2018050047,CN 2018050048,2018115583,KR 2018115584,2018246655,JP 2018246656,2019033087,CN 2019033088,2019035135,AU 2019035136,2019037183,CN 2019037184,2019041279,JP 2019041280,2019045375,IN 2019045376,2019045887,US 2019045888,2019049471,JP 2019049472,2019078143,AU 2019078144,2019082239,IN 2019082240,2019098623,HK 2019098624,2019115007,PH 2019115008,2019117055,US 2019117056,2019119103,IN 2019119104,2019121151,NZ 2019121152,2019123199,ID 2019123200,2019131391,NP 2019131392,2019164159,JP 2019164160,2019360767,CN 2019360768,2019426303,JP 2019426304,2019557375,CN 2019557376,2021654527,TW 2021654528,2022178815,CN 2022178816,2022180863,NZ 2022180864,2022182911,JP 2022182912,2022184959,CN 2022184960,2022187007,KH 2022187008,2022191103,HK 2022191104,2022194175,NZ 2022194176,2022194687,AU 2022194688,2022195199,NZ 2022195200,2022211583,KR 2022211584,2022227967,CN 2022227968,2022244351,JP 2022244352,2022277119,CN 2022277120,2022309887,JP 2022309888,2022313983,IN 2022313984,2022318079,NZ 2022318080,2022319135,AU 2022319136,2022319151,SG 2022319152,2022319359,AU 2022319360,2022319615,IN 2022319616,2022320127,AU 2022320128,2022320383,HK 2022320384,2022321151,AU 2022321152,2022321407,SG 2022321408,2022322175,AU 2022322176,2022322431,JP 2022322432,2022323199,AU 2022323200,2022323455,KR 2022323456,2022326271,AU 2022326272,2022330367,VN 2022330368,2022334463,MY 2022334464,2022342655,IN 2022342656,2022359039,JP 2022359040,2022375423,IN 2022375424,2022572031,MY 2022572032,2022637567,KR 2022637568,2022670335,JP 2022670336,2022678527,CN 2022678528,2022703103,KR 2022703104,2023751679,AU 2023751680,2025848831,ID 2025848832,2030043135,CN 2030043136,2030045183,AU 2030045184,2030051327,CN 2030051328,2030059519,JP 2030059520,2030108671,KR 2030108672,2030125055,PH 2030125056,2030141439,KR 2030141440,2030305279,JP 2030305280,2030436351,CN 2030436352,2030567423,SG 2030567424,2032926719,CN 2032926720,2033057791,AU 2033057792,2033319935,CN 2033319936,2033321983,IN 2033321984,2033324031,CN 2033324032,2033328127,KR 2033328128,2033330175,ID 2033330176,2033336319,JP 2033336320,2033352703,KR 2033352704,2033356799,ID 2033356800,2033358847,TW 2033358848,2033362943,JP 2033362944,2033363967,HK 2033363968,2033364991,VN 2033364992,2033369087,TW 2033369088,2033377279,AU 2033377280,2033385471,KR 2033385472,2033451007,CN 2033451008,2033487871,ID 2033487872,2033491967,PK 2033491968,2033500159,CN 2033500160,2033502207,AU 2033502208,2033504255,SG 2033504256,2033516543,CN 2033516544,2033582079,KR 2033582080,2033614847,PH 2033614848,2033623039,AU 2033623040,2033624063,HK 2033624064,2033625087,MM 2033625088,2033627135,HK 2033627136,2033629183,CN 2033631232,2033647615,KR 2033647616,2033663999,CN 2033664000,2033696767,KR 2033696768,2033713151,GU 2033713152,2033876991,CN 2033876992,2033879039,JP 2033879040,2033887231,CN 2033887232,2033889279,IN 2033889280,2033891327,JP 2033891328,2033893375,ID 2033893376,2033909759,PH 2033909760,2034237439,CN 2034237440,2034499583,KR 2034499584,2034761727,CN 2034761728,2035023871,NZ 2035023872,2035154943,CN 2035154944,2035220479,KR 2035220480,2035253247,AU 2035253248,2035269631,CN 2035269632,2035286015,NZ 2035286016,2035810303,JP 2035810304,2035875839,KR 2035875840,2035941375,CN 2035941376,2036006911,NZ 2036006912,2036072447,AU 2036072448,2036334591,JP 2036334592,2036465663,PH 2036465664,2036596735,NZ 2036596736,2036598783,ID 2036598784,2036600831,JP 2036600832,2036604927,ID 2036604928,2036609023,SG 2036609024,2036611071,AF 2036611072,2036613119,JP 2036613120,2036629503,KR 2036629504,2036678655,CN 2036678656,2036695039,JP 2036695040,2036697087,ID 2036697088,2036699135,AU 2036699136,2036703231,IN 2036703232,2036705279,AU 2036705280,2036707327,HK 2036707328,2036709375,MN 2036709376,2036711423,ID 2036711424,2036715519,KR 2036715520,2036719615,CN 2036719616,2036727807,KR 2036727808,2037896959,JP 2037896960,2037897215,US 2037897216,2037907455,JP 2037907456,2038169599,MY 2038169600,2038366207,KR 2038366208,2038374399,PH 2038374400,2038382591,AF 2038382592,2038415359,KR 2038415360,2038423551,AU 2038423552,2038431743,HK 2038431744,2042626047,KR 2042626048,2043150335,CN 2043150336,2043162623,AU 2043162624,2043165695,IN 2043165696,2043166719,BD 2043166720,2043183103,KR 2043183104,2043199487,JP 2043199488,2043201535,CN 2043201536,2043203583,JP 2043203584,2043205631,AU 2043205632,2043207679,JP 2043207680,2043211775,AU 2043211776,2043215871,SG 2043215872,2043281407,CN 2043281408,2043412479,HK 2043412480,2043674623,CN 2043674624,2044723199,AU 2044723200,2045771775,CN 2045771776,2046296063,IN 2046296064,2046558207,CN 2046558208,2046705663,KR 2046705664,2046722047,TW 2046722048,2046754815,KR 2046754816,2046820351,CN 2046820352,2046822399,TH 2046822400,2046824447,KR 2046824448,2046828543,MY 2046828544,2046836735,KR 2046836736,2046885887,CN 2046885888,2046951423,JP 2046951424,2047082495,PH 2047082496,2047410175,CN 2047410176,2047492095,HK 2047492096,2047496191,KR 2047496192,2047506431,HK 2047506432,2047508479,US 2047508480,2047574015,CN 2047574016,2047606783,SG 2047606784,2047770879,CN 2047770880,2047773184,HK 2047773185,2047803391,CN 2047803392,2047868927,IN 2047868928,2048917503,JP 2048917504,2049966079,KR 2049966080,2050047999,CN 2050048000,2050064383,KR 2050064384,2050080767,AU 2050080768,2050082815,JP 2050082816,2050084863,AU 2050084864,2050088959,PH 2050088960,2050091007,ID 2050091008,2050097151,JP 2050097152,2050101247,SG 2050101248,2050113535,JP 2050113536,2050129663,SG 2050129664,2050129727,JP 2050129728,2050129919,SG 2050129920,2050162687,IN 2050162688,2050228223,CN 2050228224,2050490367,PH 2050490368,2051014655,NZ 2051014656,2053242879,CN 2053242880,2053308415,IN 2053308416,2053324799,TW 2053324800,2053332991,AU 2053332992,2053335039,BD 2053335040,2053337087,JP 2053337088,2053340159,AU 2053340160,2053341183,IN 2053341184,2053373951,KR 2053373952,2053378047,AU 2053378048,2053382143,JP 2053382144,2053390335,KR 2053390336,2053406719,TW 2053406720,2053439487,MO 2053439488,2053505023,KR 2053505024,2053509119,CN 2053509120,2053511167,AU 2053511168,2053513215,IN 2053513216,2053515263,BD 2053515264,2053519359,ID 2053519360,2053521407,JP 2053521408,2053529599,CN 2053529600,2053532671,AU 2053532672,2053533183,NZ 2053533184,2053533695,AU 2053533696,2053534719,VN 2053534720,2053537791,IN 2053537792,2053636095,JP 2053636096,2054160383,AU 2054160384,2054376447,CN 2054376448,2054377471,HK 2054377472,2054422527,CN 2054422528,2054619135,TW 2054619136,2054684671,CN 2054684672,2055208959,TW 2055208960,2055213055,JP 2055213056,2055217151,ID 2055217152,2055229439,KR 2055229440,2055231487,TW 2055231488,2055233535,AU 2055233536,2055234559,JP 2055234560,2055235583,CN 2055235584,2055237631,HK 2055237632,2055239679,JP 2055239680,2055241727,CN 2055241728,2055274495,KR 2055274496,2055290879,VN 2055290880,2055299071,PK 2055299072,2055305215,ID 2055305216,2055307263,MY 2055307264,2055315455,AU 2055315456,2055323647,JP 2055323648,2055327743,ID 2055327744,2055329791,KR 2055329792,2055331839,AU 2055331840,2055335935,JP 2055335936,2055340031,KR 2055340032,2055733247,JP 2055733248,2056257535,CN 2056257536,2056259583,ID 2056259584,2056261631,BD 2056261632,2056263679,IN 2056263680,2056265727,TH 2056265728,2056273919,TW 2056273920,2056290303,PH 2056290304,2056323071,CN 2056323072,2056388607,JP 2056388608,2056519679,TW 2056519680,2056781823,AU 2056781824,2056794111,JP 2056794112,2056796159,BD 2056796160,2056806399,JP 2056806400,2056814591,KR 2056814592,2056815215,JP 2056815216,2056815231,HK 2056815232,2056816863,JP 2056816864,2056816895,MY 2056816896,2056817335,JP 2056817336,2056817343,HK 2056817344,2056817727,JP 2056817728,2056817791,AU 2056817792,2056823849,JP 2056823850,2056823850,SG 2056823851,2056830975,JP 2056830976,2056847359,CN 2056847360,2056912895,KR 2056912896,2057043967,TH 2057043968,2057306111,CN 2057306112,2059141119,IN 2059141120,2059665407,CN 2059665408,2059796479,JP 2059796480,2059862015,CN 2059862016,2059878399,AU 2059878400,2059927551,KR 2059927552,2059931647,ID 2059931648,2059933695,IN 2059933696,2059935743,AU 2059935744,2059937791,JP 2059937792,2059939839,CN 2059939840,2059941887,ID 2059941888,2059943935,AU 2059943936,2059960319,CN 2059960320,2059961343,JP 2059961344,2059962367,HK 2059962368,2059964415,JP 2059964416,2059966463,ID 2059966464,2059968511,TW 2059968512,2059976703,AU 2059976704,2059995135,JP 2059995136,2059997183,VN 2059997184,2060001279,MN 2060001280,2060002559,HK 2060002560,2060002815,ID 2060002816,2060005375,HK 2060005376,2060009471,CN 2060009472,2060025855,AU 2060025856,2060058623,TW 2060058624,2060062719,AU 2060062720,2060066815,JP 2060066816,2060075007,KR 2060075008,2060083199,AU 2060083200,2060091391,JP 2060091392,2060189695,KR 2060189696,2060451839,CN 2060451840,2061500415,JP 2061500416,2063073279,CN 2063073280,2063077375,BD 2063077376,2063077377,PH 2063077378,2063077378,HK 2063077379,2063077631,PH 2063077632,2063079423,HK 2063079424,2063081471,CN 2063081472,2063085567,ID 2063085568,2063089663,CN 2063089664,2063097855,JP 2063097856,2063106047,MM 2063106048,2063106559,SG 2063106560,2063106815,AU 2063106816,2063107071,SG 2063107072,2063107327,JP 2063107328,2063108095,SG 2063108096,2063110143,HK 2063110144,2063111167,JP 2063111168,2063114239,AU 2063114240,2063115263,IN 2063115264,2063118079,JP 2063118080,2063118335,PH 2063118336,2063118591,IN 2063118592,2063119871,JP 2063119872,2063120127,IN 2063120128,2063120895,JP 2063120896,2063121151,AU 2063121152,2063122431,JP 2063122432,2063138815,SG 2063138816,2063335423,JP 2063335424,2063341567,AU 2063341568,2063351807,SG 2063351808,2063368191,KR 2063368192,2063372287,JP 2063372288,2063374335,AU 2063374336,2063376383,NZ 2063376384,2063380479,TW 2063380480,2063382527,KH 2063382528,2063384575,NZ 2063384576,2063392767,KR 2063392768,2063400959,IN 2063400960,2063466495,JP 2063466496,2063482879,TW 2063482880,2063499263,MN 2063499264,2063532031,KR 2063532032,2063548415,LK 2063548416,2063550463,CN 2063550464,2063551487,IN 2063551488,2063552511,JP 2063552512,2063556607,TW 2063556608,2063564799,MY 2063564800,2063597567,JP 2063597568,2063601663,KR 2063601664,2063605759,BD 2063605760,2063613951,TW 2063613952,2063630335,JP 2063630336,2063646719,CN 2063646720,2063663103,TW 2063663104,2063695871,JP 2063695872,2063728639,HK 2063728640,2063859711,AU 2063859712,2064646143,CN 2064646144,2065694719,VN 2065694720,2066743295,KR 2066743296,2066808831,JP 2066808832,2066825215,BD 2066825216,2066841599,SG 2066841600,2066874367,CN 2066874368,2066882559,JP 2066882560,2066890751,TW 2066890752,2066907135,PF 2066907136,2066915327,AU 2066915328,2066923519,CN 2066923520,2066939903,JP 2066939904,2066972671,AU 2066972672,2067005439,TW 2067005440,2067529727,CN 2067529728,2067595263,HK 2067595264,2067726335,CN 2067726336,2067791871,IN 2067791872,2070052863,CN 2070052864,2070056959,AU 2070056960,2070061055,JP 2070061056,2070077439,KR 2070077440,2070085631,JP 2070085632,2070102015,TW 2070102016,2070118399,KR 2070118400,2070159359,CN 2070159360,2070167551,AU 2070167552,2070183935,NZ 2070183936,2070192127,AU 2070192128,2070200319,KR 2070200320,2070208511,JP 2070208512,2070209279,MY 2070209280,2070209535,SG 2070209536,2070210559,AU 2070210560,2070210815,SG 2070210816,2070211071,AU 2070211072,2070216703,SG 2070216704,2070282239,CN 2070282240,2070347775,AU 2070347776,2070380543,CN 2070380544,2070396927,JP 2070396928,2070405119,AU 2070405120,2070409215,JP 2070409216,2070413311,HK 2070413312,2070677503,JP 2070677504,2070679551,ID 2070679552,2070683647,KR 2070683648,2070691839,IN 2070691840,2070700031,AU 2070700032,2070702079,ID 2070702080,2070703103,AU 2070703104,2070704127,HK 2070704128,2070708223,PH 2070708224,2070712319,CN 2070712320,2070714367,NZ 2070714368,2070716415,JP 2070716416,2070724607,KR 2070724608,2070726655,JP 2070726656,2070728703,IN 2070728704,2070732799,CN 2070732800,2070734847,IN 2070734848,2070736895,JP 2070736896,2070738943,BD 2070738944,2070740991,KH 2070740992,2070806527,KR 2070806528,2070872063,TW 2070872064,2070937599,KR 2070937600,2072510463,CN 2072510464,2072514559,HK 2072514560,2072516607,IN 2072516608,2072518655,BD 2072518656,2072526847,AU 2072526848,2072528895,SG 2072528896,2072530943,PH 2072530944,2072535039,CN 2072535040,2072543231,MY 2072543232,2072575999,IN 2072576000,2072772607,CN 2072772608,2073034751,KR 2073034752,2075131903,CN 2075131904,2075140095,MV 2075140096,2075144191,IN 2075144192,2075146239,JP 2075146240,2075147263,BD 2075147264,2075148287,CN 2075148288,2075150335,PH 2075150336,2075152383,WS 2075152384,2075156479,CN 2075156480,2075158527,HK 2075158528,2075160575,JP 2075160576,2075162623,AU 2075162624,2075164671,ID 2075164672,2075197439,JP 2075197440,2076180479,CN 2076180480,2076442623,TW 2076442624,2076573695,CN 2076573696,2076639231,JP 2076639232,2076671999,KR 2076672000,2076704767,CN 2076704768,2076712959,BD 2076712960,2076721151,JP 2076721152,2076737535,KR 2076737536,2076770303,AU 2076770304,2076835839,IN 2076835840,2076966911,HK 2076966912,2077097983,TW 2077097984,2077229055,CN 2077229056,2077491199,AU 2077491200,2077753343,KR 2077753344,2078539775,JP 2078539776,2078670847,KR 2078670848,2078736383,JP 2078736384,2078769151,LK 2078769152,2078801919,ID 2078801920,2079064063,CN 2079064064,2079326207,IN 2079326208,2079457279,TW 2079457280,2079490047,CN 2079490048,2079506431,TH 2079506432,2079508479,CN 2079508480,2079510527,PH 2079510528,2079514623,JP 2079514624,2079516671,HK 2079516672,2079518719,JP 2079518720,2079522815,IN 2079522816,2079588351,AU 2079588352,2079850495,CN 2079850496,2079916031,KR 2079916032,2079981567,CN 2079981568,2080112639,KR 2080112640,2080145407,TW 2080145408,2080178175,IN 2080178176,2080243711,CN 2080243712,2080260095,JP 2080260096,2080268287,KR 2080268288,2080270335,CN 2080270336,2080272383,HK 2080272384,2080276479,AU 2080276480,2080309247,KR 2080309248,2080325631,NZ 2080325632,2080342015,HK 2080342016,2080360447,JP 2080360448,2080362495,ID 2080362496,2080366591,AU 2080366592,2080368639,TW 2080368640,2080372735,JP 2080372736,2080374783,IN 2080374784,2080636927,KR 2080636928,2080702463,IN 2080702464,2080767999,KR 2080768000,2080776191,TW 2080776192,2080777215,HK 2080777216,2080778239,GB 2080778240,2080780287,US 2080780288,2080781311,ID 2080781312,2080784383,SG 2080784384,2080800767,CN 2080800768,2080817151,PH 2080817152,2080825343,NZ 2080825344,2080829439,BD 2080829440,2080833535,LK 2080833536,2080899071,IN 2080899072,2081226751,TW 2081226752,2081292287,MY 2081292288,2081554431,CN 2081554432,2081619967,JP 2081619968,2081652735,AU 2081652736,2081685503,PH 2081685504,2081947647,CN 2081947648,2082209791,JP 2082209792,2082258943,KR 2082258944,2082308095,CN 2082308096,2082324479,TW 2082324480,2082340863,PK 2082340864,2082406399,IN 2082406400,2082471935,CN 2082471936,2083007231,JP 2083007232,2083007999,US 2083008000,2083024895,JP 2083024896,2083053567,CN 2083053568,2083057663,TH 2083057664,2083058687,CN 2083058688,2083059711,IN 2083059712,2083061759,ID 2083061760,2083110911,JP 2083110912,2083127295,NP 2083127296,2083192831,CN 2083192832,2083258367,LK 2083258368,2083389439,JP 2083389440,2083454975,KR 2083454976,2083471359,CN 2083471360,2083487743,JP 2083487744,2083491583,AU 2083491584,2083491839,US 2083491840,2083492863,AU 2083492864,2083493375,US 2083493376,2083504127,AU 2083504128,2083520511,JP 2083520512,2083966719,KR 2083966720,2083966975,JP 2083966976,2084569087,KR 2084569088,2084732927,CN 2084732928,2084741119,SG 2084741120,2084743167,ID 2084743168,2084745215,IN 2084745216,2084749311,KR 2084749312,2084753407,JP 2084753408,2084757503,KR 2084757504,2084765695,JP 2084765696,2085617663,CN 2085617664,2085683199,KR 2085683200,2085748735,ID 2085748736,2085814271,MY 2085814272,2085847039,PH 2085847040,2086141951,JP 2086141952,2086666239,CN 2086666240,2087190527,JP 2087190528,2087452671,PH 2087452672,2087453695,AU 2087453696,2087454719,KH 2087454720,2087456767,CN 2087456768,2087457791,IN 2087457792,2087458815,HK 2087458816,2087460863,FJ 2087460864,2087462911,JP 2087462912,2087464959,CN 2087464960,2087467007,KH 2087467008,2087471103,JP 2087471104,2087472127,SG 2087472128,2087476223,HK 2087476224,2087477247,TW 2087477248,2087478271,AU 2087478272,2087485439,HK 2087485440,2087501823,TW 2087501824,2087518207,JP 2087518208,2087519231,TH 2087519232,2087520255,SG 2087520256,2087522303,FM 2087524352,2087526399,TH 2087526400,2087534591,PK 2087534592,2087542783,AU 2087542784,2087544831,CN 2087544832,2087545855,BD 2087545856,2087546879,JP 2087546880,2087550975,TW 2087550976,2087649279,JP 2087649280,2087714815,KR 2087714816,2088239103,CN 2088239104,2088435711,TH 2088435712,2088632319,IN 2088632320,2089287679,CN 2089287680,2089549823,KR 2089549824,2089943039,JP 2089943040,2089959423,KR 2089959424,2090041343,JP 2090041344,2090074111,CN 2090074112,2090237951,AU 2090237952,2090239999,TW 2090240000,2090240255,IN 2090241024,2090242047,MY 2090242048,2090246143,JP 2090246144,2090250239,NZ 2090250240,2090270719,JP 2090270720,2090401791,CN 2090401792,2090418175,ID 2090418176,2090434559,IN 2090434560,2090467327,KR 2090467328,2090565631,JP 2090565632,2090582015,TW 2090582016,2090590207,SG 2090590208,2090594303,NZ 2090594304,2090598399,IN 2090598400,2090663935,CN 2090663936,2090680319,VN 2090680320,2090696703,NZ 2090696704,2090729471,TH 2090729472,2090733567,VN 2090733568,2090736639,AU 2090736640,2090737663,IN 2090737664,2090745855,PH 2090745856,2090762239,MN 2090762240,2090778623,ID 2090778624,2090786815,HK 2090786816,2090795007,MY 2090795008,2090860543,JP 2090860544,2091384831,CN 2091384832,2091646975,AU 2091646976,2091909119,CN 2091909120,2092957695,AU 2092957696,2093088767,CN 2093088768,2093154303,KR 2093154304,2093187071,ID 2093187072,2093191167,MY 2093191168,2093195263,JP 2093195264,2093203455,KR 2093203456,2093211647,MV 2093211648,2093219839,KR 2093219840,2093285375,CN 2093285376,2093301759,NZ 2093301760,2093318143,SG 2093318144,2093342719,KR 2093342720,2093350911,MY 2093350912,2093383679,KR 2093383680,2093416447,NZ 2093416448,2093432831,KR 2093432832,2093445119,TW 2093445120,2093449215,AF 2093449216,2093481983,KR 2093481984,2094006271,CN 2094006272,2094530559,JP 2094530560,2094596095,KR 2094596096,2094628863,PH 2094628864,2094645247,HK 2094645248,2094653439,KR 2094653440,2094661631,MY 2094661632,2094759935,TW 2094759936,2094792703,JP 2094792704,2096152575,CN 2096152576,2096160767,PG 2096160768,2096234495,JP 2096234496,2096300031,CN 2096300032,2096332799,KR 2096332800,2096349183,AU 2096349184,2096365567,CN 2096365568,2096431103,HK 2096431104,2096496639,JP 2096496640,2096513023,AU 2096513024,2096529407,SG 2096529408,2096611327,JP 2096611328,2096627711,IN 2096627712,2096660479,CN 2096660480,2096664575,NZ 2096664576,2096668671,JP 2096668672,2096676863,KH 2096676864,2096693247,HK 2096693248,2096889855,CN 2096889856,2096902143,BE 2096902144,2096955391,AU 2096955392,2097020927,IN 2097020928,2097037311,CN 2097037312,2097053695,AU 2097053696,2097086463,KR 2097086464,2097479679,JP 2097479680,2097545215,PH 2097545216,2097610751,JP 2097610752,2097643519,AU 2097643520,2097676287,KR 2097676288,2098200575,JP 2098200576,2098724863,IN 2098724864,2098987007,TH 2098987008,2099183615,JP 2099183616,2099199999,MO 2099200000,2099216383,JP 2099216384,2099232767,KR 2099232768,2100297727,CN 2100297728,2100854783,JP 2100854784,2100887551,US 2100887552,2100953087,KR 2100953088,2100969471,VN 2100969472,2100985855,JP 2100985856,2101018623,CN 2101018624,2101084159,HK 2101084160,2101116927,KR 2101116928,2101149695,PH 2101149696,2101182463,KR 2101182464,2101231615,CN 2101231616,2101239807,AU 2101239808,2101270527,IN 2101270528,2101272575,KR 2101272576,2101276671,TW 2101276672,2101280767,JP 2101280768,2101288959,AU 2101288960,2101293055,JP 2101293056,2101297151,AU 2101297152,2101313535,IN 2101313536,2101346303,AU 2101346304,2103640063,CN 2103640064,2103705599,IN 2103705600,2103967743,JP 2103967744,2105540607,CN 2105540608,2107637759,KR 2107637760,2108162047,ID 2108162048,2108227583,AU 2108227584,2108293119,CN 2108293120,2108358655,JP 2108358656,2108424191,CN 2108424192,2108686335,JP 2108686336,2109734911,KR 2109734912,2110783487,JP 2110783488,2110799871,CN 2110799872,2110816255,KR 2110816256,2110832639,ID 2110832640,2110865407,KR 2110865408,2110881791,PK 2110881792,2110898175,AU 2110898176,2110914559,KR 2110914560,2111045631,CN 2111045632,2111078399,PH 2111078400,2111111167,VN 2111111168,2111143935,CN 2111143936,2111152127,ID 2111152128,2111160319,AU 2111160320,2111168511,AF 2111168512,2111176703,TH 2111176704,2111193087,VN 2111193088,2111201279,AU 2111201280,2111209471,CN 2111209472,2111217663,JP 2111217664,2111225855,LK 2111225856,2111242239,HK 2111242240,2111258623,CN 2111258624,2111275007,JP 2111275008,2111307775,HK 2111307776,2111832063,CN 2111832064,2112082431,TW 2112082432,2112083199,CN 2112083200,2112487423,TW 2112487424,2112618495,VN 2112618496,2112880639,NZ 2112880640,2113560063,KR 2113560064,2113560319,SG 2113560320,2113683455,KR 2113683456,2113685663,JP 2113685664,2113685695,SG 2113685696,2113687295,JP 2113687296,2113687551,AU 2113687552,2113687807,JP 2113687808,2113688063,AU 2113688064,2113688959,JP 2113688960,2113688991,SG 2113688992,2113691135,JP 2113691136,2113691391,SG 2113691392,2113693599,JP 2113693600,2113693615,HK 2113693616,2113693879,JP 2113693880,2113693887,AU 2113693888,2113694175,JP 2113694176,2113694191,HK 2113694192,2113716223,JP 2113716224,2113724927,SG 2113724928,2113725183,IN 2113725184,2113728511,SG 2113728512,2113732607,JP 2113732608,2113761279,AU 2113761280,2113765375,VN 2113765376,2113798143,HK 2113798144,2113811455,AU 2113811456,2113812479,IN 2113812480,2113813503,JP 2113813504,2113830911,AU 2113830912,2113863679,CN 2113863680,2113929215,AU 2113929216,2130706431,JP 2147483648,2147485695,RO 2147485696,2147487743,DK 2147487744,2147489791,NO 2147489792,2147491839,RU 2147491840,2147494911,DE 2147494912,2147495167,RO 2147495168,2147495423,DE 2147495424,2147496959,RO 2147496960,2147497215,DE 2147497216,2147497471,RO 2147497472,2147498239,DE 2147498240,2147498495,RO 2147498496,2147500031,DE 2147500032,2147501055,FR 2147501056,2147502079,NL 2147502080,2147504127,DK 2147504128,2147508223,RU 2147508224,2147510271,DE 2147510272,2147510783,UA 2147510784,2147511039,RU 2147511040,2147512319,CY 2147512320,2147516415,DE 2147516416,2147520511,RU 2147520512,2147523583,DE 2147524608,2147526655,RU 2147526656,2147528703,UA 2147528704,2147532799,CZ 2147532800,2147534847,DE 2147534848,2147536895,CY 2147536896,2147538431,GR 2147538432,2147538943,CY 2147538944,2147540991,GR 2147540992,2147549183,CY 2147549184,2147942399,US 2147942400,2148007935,DE 2148007936,2148532223,US 2148532224,2148597759,GB 2148597760,2150039551,US 2150039552,2150105087,NO 2150105088,2150203391,GB 2150203392,2150236159,AF 2150236160,2150301695,US 2150301696,2150367231,CA 2150367232,2150432767,US 2150432768,2150498303,IT 2150498304,2151743487,US 2151743488,2151759871,BY 2151759872,2151768063,DE 2151768064,2151770111,GB 2151770112,2151772159,BA 2151772160,2151776255,IT 2151776256,2151778303,AT 2151778304,2151780351,RU 2151780352,2151782399,DE 2151782400,2151784447,ES 2151784448,2151788479,IR 2151788480,2151788495,IQ 2151788496,2151792639,IR 2151792640,2151794687,CH 2151794688,2151796735,IT 2151796736,2151797759,DE 2151797760,2151798783,NL 2151798784,2151799807,DE 2151799808,2151800831,NL 2151800832,2151809023,PT 2151809024,2151940095,IT 2151940096,2152464383,RU 2152464384,2152595455,DK 2152595456,2152726527,FR 2152726528,2153119743,US 2153119744,2153185279,GB 2153185280,2153250815,SE 2153250816,2153384447,US 2153384448,2153385471,GB 2153385472,2153385599,AT 2153385600,2153385663,CZ 2153385664,2153385727,FI 2153385728,2153385791,PL 2153385792,2153385855,PT 2153385856,2153385919,TR 2153385920,2153385983,US 2153385984,2153387007,GB 2153387008,2153387263,CH 2153387264,2153387775,US 2153387776,2153388031,CH 2153388032,2153396991,US 2153396992,2153397247,IL 2153397248,2153397503,IN 2153397504,2153397759,SA 2153397760,2153398015,QA 2153398016,2153398271,BH 2153398272,2153406463,US 2153406464,2153407487,JP 2153407488,2153407743,HK 2153407744,2153407999,AE 2153408000,2153408511,BR 2153408512,2153408767,AU 2153408768,2153409023,PA 2153409024,2153409279,AR 2153409280,2153409535,CR 2153409536,2153409791,CO 2153409792,2153410047,MX 2153410048,2153410303,US 2153410304,2153410559,TW 2153410560,2153410815,PA 2153410816,2153411071,AR 2153411072,2153411327,CR 2153411328,2153411583,CO 2153411584,2153411839,MX 2153411840,2153412095,US 2153412096,2153412351,TW 2153412352,2153413119,AU 2153413120,2153578495,US 2153578496,2153644031,FR 2153644032,2153906175,US 2153906176,2153971711,GB 2153971712,2154037247,US 2154037248,2154102783,CA 2154102784,2155610111,US 2155610112,2155675647,UA 2155675648,2155806719,US 2155806720,2155808767,IT 2155810816,2155812863,FR 2155812864,2155814911,GB 2155814912,2155819007,NL 2155819008,2155821055,DE 2155821056,2155823103,IT 2155823104,2155825151,DE 2155825152,2155827199,AE 2155827200,2155831295,PL 2155831296,2155833343,RU 2155833344,2155833855,SE 2155833856,2155834367,NL 2155834368,2155834464,SE 2155834465,2155834512,NL 2155834513,2155834532,SE 2155834533,2155834623,NL 2155834624,2155834879,LU 2155834880,2155835391,NL 2155835392,2155839487,RO 2155839488,2155843583,FR 2155843584,2155845631,RU 2155845632,2155847679,DE 2155847680,2155849727,ES 2155849728,2155851775,TR 2155853824,2155855871,SE 2155855872,2155872255,SA 2155872256,2156003327,US 2156003328,2156134399,AT 2156134400,2156265471,US 2156265472,2156331007,KR 2156331008,2156593151,US 2156593152,2156658687,IL 2156658688,2156691455,IR 2156691456,2156697599,FR 2156697600,2156699647,GR 2156699648,2156703743,RU 2156703744,2156707839,BG 2156707840,2156709887,RU 2156709888,2156711935,ES 2156711936,2156713983,DE 2156713984,2156716031,NL 2156716032,2156718079,RO 2156718080,2156720127,IS 2156720128,2156724223,BY 2156724224,2156855295,CH 2156855296,2156920831,US 2156920832,2156986367,CA 2156986368,2159017983,US 2159017984,2159083519,DE 2159083520,2159149055,US 2159149056,2159280127,CH 2159280128,2159542271,US 2159542272,2159607807,AU 2159607808,2159673343,IN 2159673344,2159869951,US 2159869952,2159935487,CA 2159935488,2160525311,US 2160525312,2160533503,SG 2160533504,2160541695,NL 2160541696,2160590847,SG 2160590848,2160656383,US 2160721920,2160852991,US 2160852992,2160885759,RU 2160885760,2160893951,AT 2160893952,2160902143,RU 2160902144,2160906239,NL 2160906240,2160908287,FR 2160908288,2160910335,PL 2160910336,2160914431,NL 2160914432,2160918527,SA 2160918528,2161508351,US 2161508352,2161573887,FI 2161573888,2162228223,US 2162228224,2162228479,CA 2162228480,2162687999,US 2162688000,2162753535,GB 2162753536,2162819071,CA 2162819072,2162884607,SA 2162884608,2163212287,US 2163212288,2163277823,GB 2163277824,2163408895,US 2163408896,2163474431,GB 2163474432,2163605503,US 2163605504,2163638271,DE 2163638272,2163638527,US 2163638528,2163671039,DE 2163671040,2163867647,US 2163867648,2163933183,AU 2163933184,2164260863,US 2164260864,2164326399,CM 2164326400,2164981759,US 2164981760,2165112831,GB 2165112832,2165178367,DE 2165178368,2165309439,US 2165309440,2165374975,SE 2165374976,2165440511,US 2165440512,2165506047,NG 2165506048,2165571583,US 2165571584,2165637119,FR 2165637120,2165964799,US 2165964800,2166030335,DE 2166030336,2166095871,AT 2166095872,2166292479,US 2166292480,2166358015,GB 2166358016,2166571007,US 2166571008,2166575103,GB 2166575104,2166594563,US 2166594564,2166594564,DE 2166594565,2167209983,US 2167209984,2167242751,DZ 2167242752,2167275519,BF 2167275520,2167930879,US 2167930880,2167996415,NG 2167996416,2168193023,US 2168193024,2168258559,JP 2168258560,2168651775,US 2168651776,2168717311,GB 2168717312,2168782847,US 2168782848,2168913919,DE 2168913920,2169372671,US 2169372672,2169438207,AU 2169438208,2170028031,US 2170028032,2170093567,FR 2170093568,2170159103,US 2170159104,2170224639,VE 2170224640,2170421247,US 2170421248,2170486783,AU 2170486784,2170552319,US 2170552320,2170617855,AU 2170617856,2170683391,CA 2170683392,2170814463,US 2170814464,2170879999,CA 2170880000,2170945535,US 2170945536,2171011071,FR 2171011072,2171076607,DE 2171076608,2171142143,FR 2171142144,2172256255,US 2172256256,2172272639,GH 2172272640,2172289023,RE 2172289024,2172321791,AO 2172321792,2172452863,US 2172452864,2172518399,NL 2172518400,2172583935,US 2172583936,2172649471,AU 2172649472,2172715007,CA 2172715008,2172780543,CH 2172780544,2172911615,US 2172911616,2172977151,CH 2172977152,2173173759,US 2173173760,2173239295,JP 2173239296,2173435903,US 2173501440,2173566975,US 2173566976,2173632511,DK 2173632512,2173698047,DE 2173698048,2175336447,US 2175336448,2175401983,GB 2175401984,2175598591,US 2175598592,2175664127,CA 2175664128,2175729663,US 2175729664,2175795199,FR 2175795200,2175860735,US 2175860736,2175926271,NO 2175926272,2175991807,SE 2175991808,2176057343,US 2176057344,2176122879,AU 2176122880,2176425983,FR 2176425984,2176434175,DE 2176434176,2176450559,FR 2176450560,2176516095,US 2176516096,2176581631,DE 2176581632,2176868607,US 2176868608,2176868863,IT 2176868864,2176897023,US 2176897024,2176897279,AU 2176897280,2176974847,US 2176974848,2177105919,CH 2177105920,2177302527,US 2177302528,2177368063,FR 2177368064,2177695743,US 2177695744,2177703935,UG 2177703936,2177720319,ZA 2177720320,2177728511,NG 2177728512,2177744895,ZA 2177744896,2177761279,BW 2177761280,2177826815,DE 2177826816,2177892351,US 2177892352,2177957887,SA 2177957888,2178351103,US 2178351104,2178416639,GB 2178416640,2178482175,US 2178482176,2178547711,DE 2178547712,2179465215,US 2179465216,2179497983,LS 2179497984,2179530751,ZA 2179530752,2179596287,DE 2179596288,2179661823,GB 2179661824,2179989503,US 2179989504,2180186111,NO 2180186112,2180448255,US 2180448256,2180513791,DE 2180513792,2180579327,US 2180579328,2180644863,JP 2180644864,2180907007,US 2180907008,2180972543,KR 2180972544,2181038079,US 2181038080,2181040127,GB 2181040128,2181042175,AZ 2181042176,2181044223,DE 2181044224,2181046271,AL 2181046272,2181054463,UA 2181054464,2181056511,AT 2181056512,2181058559,DE 2181058560,2181060607,GB 2181060608,2181062655,BA 2181062656,2181070847,FR 2181070848,2181087231,IT 2181087232,2181089279,FR 2181089280,2181091327,SE 2181091328,2181093375,IT 2181093376,2181095423,RU 2181095424,2181097471,GB 2181097472,2181099519,UA 2181099520,2181103615,SY 2181103616,2181824511,US 2181824512,2181890047,CA 2181890048,2182021119,US 2182021120,2182086655,CA 2182086656,2182610943,US 2182610944,2182676479,GB 2182676480,2182742015,IT 2182742016,2182873087,US 2182873088,2182938623,SE 2182938624,2183135231,US 2183135232,2183200767,GB 2183200768,2183266303,US 2183266304,2183331839,JP 2183331840,2183416575,US 2183416576,2183416831,GB 2183416832,2183462911,US 2183462912,2183528447,NL 2183528448,2183856127,US 2183856128,2183888895,GR 2183888896,2183905279,GB 2183905280,2183921663,HU 2183921664,2184380415,US 2184445952,2184577023,US 2184577024,2184642559,JP 2184642560,2184708095,US 2184708096,2184773631,AU 2184773632,2184803839,US 2184803840,2184804351,GB 2184804352,2184904703,US 2184904704,2185035775,CH 2185035776,2185166847,US 2185166848,2185232383,CA 2185232384,2185363455,US 2185363456,2185428991,FR 2185428992,2185494527,NO 2185494528,2185560063,US 2185560064,2185625599,JP 2185625600,2185822207,US 2185822208,2185887743,DE 2185887744,2185953279,US 2185953280,2186018815,DE 2186018816,2186149887,US 2186149888,2186215423,NL 2186215424,2186280959,FR 2186280960,2186412031,US 2186412032,2186477567,CH 2186477568,2186543103,DE 2186543104,2186608639,FR 2186608640,2186739711,US 2186739712,2186805247,JP 2186805248,2186870783,GB 2186870784,2186936319,NL 2186936320,2187067391,US 2187067392,2187132927,CH 2187132928,2187263999,US 2187264000,2187329535,AU 2187329536,2187460607,US 2187460608,2187526143,FR 2187526144,2187591679,US 2187591680,2187657215,SE 2187657216,2187722751,US 2187722752,2187788287,AU 2187788288,2187853823,US 2187853824,2187919359,BE 2187919360,2187984895,PH 2187984896,2188378111,US 2188378112,2188443647,NL 2188443648,2188509183,CA 2188509184,2188574719,US 2188574720,2188640255,NL 2188640256,2188705791,AU 2188705792,2188706153,US 2188706154,2188706154,SI 2188706155,2188718161,US 2188718162,2188718162,SI 2188718163,2188718337,US 2188718338,2188718338,AT 2188718339,2188718473,US 2188718474,2188718474,AT 2188718475,2188724463,US 2188724464,2188724464,NL 2188724465,2188724735,US 2188724736,2188724991,NL 2188724992,2188725247,US 2188725248,2188725503,GB 2188725504,2188728319,US 2188728320,2188728575,GB 2188728576,2188729855,US 2188729856,2188730111,ES 2188730112,2188736511,US 2188736512,2188736767,GB 2188736768,2188738306,US 2188738307,2188738307,GB 2188738308,2188749183,US 2188749184,2188749311,SL 2188749312,2188754431,US 2188754432,2188754687,RU 2188754688,2188902399,US 2188902400,2188967935,FR 2188967936,2189099007,US 2189099008,2189164543,NZ 2189164544,2189230079,US 2189230080,2189295615,CH 2189295616,2189557759,US 2189557760,2189623295,AU 2189623296,2189688831,FR 2189688832,2189754367,US 2189754368,2189819903,DE 2189819904,2189950975,US 2189950976,2190016511,IT 2190016512,2190082047,US 2190082048,2190737407,NL 2190737408,2190802943,GB 2190802944,2190868479,DE 2190868480,2191065087,US 2191065088,2191130623,JP 2191130624,2191196159,US 2191196160,2191261695,AU 2191261696,2191392767,US 2191392768,2191458303,JP 2191458304,2191523839,GB 2191523840,2191589375,US 2191589376,2191654911,NL 2191654912,2192769023,US 2192769024,2192834559,CA 2192834560,2192867327,DE 2192867328,2192883711,SY 2192883712,2192885759,PL 2192885760,2192887807,GB 2192887808,2192891903,UA 2192891904,2192900095,RS 2192900096,2193031167,US 2193031168,2193096703,DE 2193096704,2193162239,US 2193162240,2193178623,UA 2193178624,2193180671,GB 2193180672,2193182719,IR 2193182720,2193184767,PT 2193184768,2193186815,ES 2193186816,2193188863,PL 2193188864,2193190911,DE 2193195008,2193199103,DK 2193199104,2193201151,GB 2193201152,2193202175,SE 2193202176,2193203199,US 2193203200,2193205247,GB 2193205248,2193207295,FR 2193207296,2193209343,CZ 2193209344,2193211391,FR 2193211392,2193223423,BG 2193223424,2193223679,GB 2193223680,2193227775,BG 2193227776,2193293311,IT 2193293312,2193358847,US 2193358848,2193424383,FI 2193424384,2193489919,US 2193489920,2193555455,FR 2193555456,2193620991,US 2193620992,2193686527,IT 2193686528,2193688575,FR 2193688576,2193692671,CZ 2193692672,2193694719,FR 2193694720,2193704959,RU 2193704960,2193707007,IT 2193707008,2193707407,GB 2193707408,2193707415,IT 2193707416,2193707559,GB 2193707560,2193707567,IT 2193707568,2193707655,GB 2193707656,2193707663,IT 2193707664,2193707751,GB 2193707752,2193707759,IT 2193707760,2193708735,GB 2193708736,2193708743,IT 2193708744,2193708967,GB 2193708968,2193708975,IT 2193708976,2193709087,GB 2193709088,2193709095,IT 2193709096,2193709199,GB 2193709200,2193709215,IT 2193709216,2193709631,GB 2193709632,2193709639,IT 2193709640,2193711103,GB 2193711104,2193713151,DE 2193713152,2193715199,ES 2193715200,2193717247,DE 2193717248,2193719295,AM 2193719296,2193752063,IQ 2193752064,2193817599,AU 2193817600,2193883135,NZ 2193883136,2194014207,US 2194014208,2194079743,CH 2194079744,2194407423,US 2194407424,2194472959,BG 2194472960,2194538495,US 2194538496,2194604031,ES 2194604032,2194669567,US 2194669568,2194735103,IS 2194735104,2194800639,GB 2194800640,2194888509,US 2194888510,2194888510,IE 2194888511,2195193855,US 2195193856,2195324927,NZ 2195324928,2195455999,US 2195456000,2195521535,AU 2195521536,2195652607,US 2195652608,2195718143,CH 2195718144,2195783679,US 2195783680,2196045823,DK 2196045824,2196111359,SE 2196111360,2196439039,FI 2196439040,2197094399,SE 2197094400,2197159935,US 2197159936,2197225471,GB 2197225472,2197422079,US 2197422080,2197487615,CA 2197487616,2197553151,IT 2197553152,2197749759,US 2197749760,2197751807,IQ 2197751808,2197753855,RU 2197753856,2197754879,GB 2197754880,2197755135,DK 2197755136,2197756159,GB 2197756160,2197756175,PT 2197756176,2197757951,GB 2197757952,2197766143,RU 2197766144,2197768191,PS 2197768192,2197770239,DE 2197770240,2197772287,RU 2197772288,2197774335,IQ 2197774336,2197776383,IT 2197776384,2197778431,DE 2197778432,2197780479,IT 2197780480,2197782527,DE 2197782528,2197786623,UA 2197786624,2197788671,IT 2197788672,2197790719,PL 2197790720,2197792767,SE 2197792768,2197794815,IT 2197794816,2197796863,SA 2197796864,2197798911,DE 2197798912,2197815295,IR 2197815296,2197816319,BO 2197816320,2197828607,BR 2197828608,2197829631,AR 2197829632,2197833727,BR 2197833728,2197834751,CR 2197834752,2197841919,BR 2197841920,2197842943,AR 2197842944,2197843967,CL 2197843968,2197847039,BR 2197847040,2197848063,MX 2197848064,2197849087,AR 2197849088,2197850111,BR 2197850112,2197851135,CO 2197851136,2197858303,BR 2197858304,2197859327,CO 2197859328,2197860351,CL 2197860352,2197865471,BR 2197865472,2197866495,AR 2197866496,2197869567,BR 2197869568,2197870591,UY 2197870592,2197874687,BR 2197874688,2197875711,AR 2197875712,2197876735,MX 2197876736,2197880831,BR 2197880832,2197946367,IT 2197946368,2202533887,US 2202533888,2202534911,AR 2202534912,2202540031,BR 2202540032,2202541055,PY 2202541056,2202542079,AR 2202542080,2202552319,BR 2202552320,2202553343,AR 2202553344,2202554367,TT 2202554368,2202562559,BR 2202562560,2202563583,CW 2202563584,2202567679,BR 2202567680,2202568703,AR 2202568704,2202569727,NL 2202569728,2202573823,BR 2202573824,2202574847,AR 2202574848,2202576895,BR 2202576896,2202577919,VE 2202577920,2202586111,BR 2202586112,2202587135,AR 2202587136,2202588159,HN 2202588160,2202589183,MX 2202589184,2202591231,BR 2202591232,2202592255,PA 2202592256,2202593279,MX 2202593280,2202595327,CL 2202595328,2202596351,AR 2202596352,2202599423,BR 2202599424,2204172287,US 2204172288,2204237823,SE 2204237824,2204303359,US 2204303360,2204368895,DE 2204368896,2204369919,PA 2204369920,2204376063,BR 2204376064,2204377087,CL 2204377088,2204378111,BR 2204378112,2204379135,TT 2204379136,2204385279,BR 2204385280,2204386303,AR 2204386304,2204391423,BR 2204391424,2204392447,AR 2204392448,2204394495,BR 2204394496,2204395519,AR 2204395520,2204396543,BR 2204396544,2204397567,AR 2204397568,2204404735,BR 2204404736,2204405759,SV 2204405760,2204409855,BR 2204409856,2204410879,TT 2204410880,2204414975,BR 2204414976,2204415999,AR 2204416000,2204417023,PY 2204417024,2204420095,BR 2204420096,2204421119,BO 2204421120,2204434431,BR 2204434432,2204499967,US 2204499968,2204565503,CH 2204565504,2204631039,US 2204631040,2204696575,CA 2204696576,2204893183,US 2204893184,2204894207,AR 2204894208,2204895231,PA 2204895232,2204897279,BR 2204897280,2204897447,HN 2204897448,2204897455,CA 2204897456,2204898095,HN 2204898096,2204898111,CR 2204898112,2204898303,HN 2204898304,2204899327,PA 2204899328,2204902399,BR 2204902400,2204903423,CR 2204903424,2204904447,AR 2204904448,2204910591,BR 2204910592,2204910847,AR 2204910848,2204911487,CL 2204911488,2204911615,CO 2204911616,2204913663,BR 2204913664,2204914687,AR 2204914688,2204929023,BR 2204929024,2204930047,AR 2204930048,2204936191,BR 2204936192,2204937215,CO 2204937216,2204942335,BR 2204942336,2204943359,PY 2204943360,2204946431,BR 2204946432,2204947455,CL 2204947456,2204952575,BR 2204952576,2204952767,HN 2204952768,2204952775,US 2204952776,2204953599,HN 2204953600,2204958719,BR 2204958720,2205089791,US 2205089792,2205155327,GB 2205155328,2205286399,JP 2205286400,2205351935,IT 2205351936,2205483007,SE 2205483008,2205515775,CH 2205515776,2205519871,AZ 2205519872,2205523967,DE 2205523968,2205526015,YE 2205526016,2205528063,GB 2205528064,2205530111,SE 2205530112,2205532159,GB 2205532160,2205534207,CZ 2205534208,2205536255,FR 2205536256,2205538303,CZ 2205538304,2205540351,RU 2205540352,2205548543,IQ 2205548544,2206269439,US 2206269440,2206334975,HK 2206334976,2206400511,AT 2206400512,2206466047,US 2206466048,2207121407,CA 2207121408,2207449087,US 2207449088,2207514623,JP 2207514624,2207647487,CA 2207647488,2207647743,US 2207647744,2207648511,CA 2207648512,2207649791,US 2207649792,2207653631,CA 2207653632,2207653887,US 2207653888,2207659775,CA 2207659776,2207660031,US 2207660032,2207661567,CA 2207661568,2207661823,US 2207661824,2207666175,CA 2207666176,2207667199,US 2207667200,2207678975,CA 2207678976,2207679487,US 2207679488,2207682559,CA 2207682560,2207686655,US 2207686656,2207694335,CA 2207694336,2207694591,US 2207694592,2207711231,CA 2207711232,2207776767,US 2207776768,2207842303,CH 2207842304,2207907839,US 2207907840,2207973375,IT 2207973376,2208038911,NL 2208038912,2208235519,US 2208235520,2208301055,DE 2208301056,2208366591,FI 2208366592,2208379903,BR 2208379904,2208380927,HN 2208380928,2208381951,CL 2208381952,2208387071,BR 2208387072,2208388095,HN 2208388096,2208389119,SX 2208389120,2208390143,AR 2208390144,2208392191,BR 2208392192,2208393215,PE 2208393216,2208404479,BR 2208404480,2208405503,BZ 2208405504,2208406527,AR 2208406528,2208413695,BR 2208413696,2208414719,AR 2208414720,2208417791,BR 2208417792,2208418815,CL 2208418816,2208425983,BR 2208425984,2208428031,AR 2208428032,2208429055,BR 2208429056,2208430079,MX 2208430080,2208431103,BR 2208431104,2208432127,PY 2208432128,2208563199,CA 2208563200,2208759807,DK 2208759808,2208890879,US 2208890880,2208956415,DE 2208956416,2209021951,AU 2209021952,2209087487,US 2209087488,2209153023,AU 2209153024,2209218559,DE 2209218560,2209284095,NL 2209284096,2209349631,IT 2209349632,2209415167,US 2209415168,2209480703,FI 2209480704,2209546239,MX 2209546240,2209611775,US 2209611776,2209677311,NL 2209677312,2209742847,AU 2209742848,2209939455,US 2209939456,2210004991,AU 2210004992,2210136063,US 2210136064,2210201599,DE 2210201600,2210594815,US 2210594816,2210660351,CA 2210725888,2211053567,US 2211053568,2211119103,CA 2211119104,2211184639,NZ 2211184640,2211250175,US 2211250176,2211315711,SE 2211315712,2211381247,JP 2211381248,2211446783,FI 2211446784,2211643391,US 2211643392,2211708927,NL 2211708928,2211774463,US 2211774464,2211839999,JP 2211840000,2212036607,US 2212036608,2212102143,AU 2212102144,2212233215,US 2212233216,2212298751,DE 2212298752,2212299775,AR 2212299776,2212300799,DO 2212300800,2212301823,HN 2212301824,2212302847,BR 2212302848,2212303871,AR 2212303872,2212304895,BR 2212304896,2212305919,PA 2212305920,2212306943,TT 2212306944,2212307967,CL 2212307968,2212308991,BR 2212308992,2212310015,CO 2212310016,2212315135,BR 2212315136,2212316159,AR 2212316160,2212327423,BR 2212327424,2212328447,VE 2212328448,2212335615,BR 2212335616,2212336639,CW 2212336640,2212337663,BR 2212337664,2212338687,PE 2212338688,2212340735,BR 2212340736,2212341759,CL 2212341760,2212364287,BR 2212364288,2212495359,US 2212495360,2212560895,NL 2212560896,2212691967,US 2212691968,2212757503,GB 2212757504,2212761599,FI 2212761600,2212762623,GB 2212762624,2212764927,FI 2212764928,2212765183,GB 2212765184,2212766719,FI 2212766720,2212767743,GB 2212767744,2212796415,FI 2212796416,2212798463,NL 2212798464,2212804095,FI 2212804096,2212804351,NL 2212804352,2212807679,FI 2212807680,2212808703,US 2212808704,2212823039,FI 2212823040,2212954111,US 2212954112,2213019647,GB 2213019648,2213085183,CA 2213085184,2213150719,US 2213150720,2213216255,DE 2213216256,2213281791,CA 2213281792,2213347327,AU 2213347328,2213412863,NL 2213412864,2213675007,US 2213675008,2213740543,AU 2213740544,2213806079,US 2213806080,2213937151,AU 2213937152,2214002687,DE 2214002688,2214068223,US 2214068224,2214133759,JP 2214133760,2214264831,US 2214264832,2214330367,GB 2214330368,2214461439,US 2214461440,2214526975,FR 2214526976,2214527999,BR 2214528000,2214529023,AR 2214529024,2214530047,BR 2214530048,2214531071,AR 2214531072,2214537215,BR 2214537216,2214538239,BZ 2214538240,2214542335,BR 2214542336,2214543359,AR 2214543360,2214553599,BR 2214553600,2214554623,VE 2214554624,2214561791,BR 2214561792,2214562815,PE 2214562816,2214573055,BR 2214573056,2214574079,AR 2214574080,2214576127,BR 2214576128,2214577151,PE 2214577152,2214590463,BR 2214590464,2214591487,AR 2214591488,2214592511,BR 2214592512,2218786815,US 2218786816,2219769855,IL 2219769856,2223111679,US 2223111680,2223111935,VI 2223111936,2224160767,US 2224160768,2224226303,GB 2224226304,2224242687,US 2224242688,2224259071,SG 2224259072,2224357375,US 2224357376,2224422911,FR 2224422912,2224488447,NO 2224488448,2224619519,US 2224619520,2224685055,GB 2224685056,2224750591,US 2224750592,2224816127,FI 2224816128,2224881663,CA 2224881664,2224947199,PE 2224947200,2225340415,US 2225405952,2225733631,FR 2225733632,2225799167,US 2225799168,2225864703,FI 2225864704,2226126847,US 2226126848,2226192383,DE 2226192384,2226323455,US 2226323456,2226388991,JP 2226388992,2226454527,DE 2226454528,2226520063,NZ 2226520064,2226585599,JP 2226585600,2226651135,US 2226651136,2226716671,PE 2226716672,2226782207,GB 2226782208,2226847743,ZA 2226847744,2226913279,DE 2226913280,2226999039,US 2226999040,2226999295,BE 2226999296,2227109887,US 2227109888,2227175423,PE 2227175424,2227372031,US 2227372032,2227437567,DE 2227437568,2227503103,SE 2227503104,2227634175,US 2227634176,2227699711,DE 2227699712,2227830783,US 2227830784,2229141503,CA 2229141504,2229207039,JP 2229207040,2229338111,US 2229338112,2229403647,CA 2229403648,2229469183,US 2229469184,2229534719,FR 2229534720,2229600255,US 2229600256,2229665791,NL 2229665792,2229796863,DE 2229796864,2229862399,GB 2229862400,2229927935,US 2229927936,2229993471,AU 2229993472,2230321151,US 2230386688,2230583295,US 2230583296,2230603775,GB 2230603776,2230607871,US 2230607872,2230637567,GB 2230637568,2230638591,SG 2230638592,2230648831,GB 2230648832,2230714367,US 2230714368,2230779903,CA 2230779904,2230910975,MX 2230910976,2231042047,US 2231042048,2231099391,PE 2231099392,2231107583,BO 2231107584,2231173119,DE 2231173120,2231238655,US 2231238656,2231304191,MX 2231304192,2231305215,PE 2231305216,2231307263,AR 2231307264,2231309311,BR 2231309312,2231310335,CO 2231310336,2231321599,BR 2231321600,2231322623,CL 2231322624,2231332863,BR 2231332864,2231333887,AR 2231333888,2231335935,BR 2231335936,2231336959,MX 2231336960,2231337983,BR 2231337984,2231338695,HN 2231338696,2231338703,US 2231338704,2231339007,HN 2231339008,2231346175,BR 2231346176,2231347199,PY 2231347200,2231355391,BR 2231355392,2231356415,AR 2231356416,2231357439,BR 2231357440,2231358463,SV 2231358464,2231361535,BR 2231361536,2231362559,AR 2231362560,2231364607,BR 2231364608,2231365631,CL 2231365632,2231369727,BR 2231369728,2239889407,JP 2239889408,2239890431,US 2239890432,2248146943,JP 2248146944,2248148991,IT 2248148992,2248151039,ES 2248151040,2248153087,GB 2248153088,2248155135,DE 2248155136,2248163327,AL 2248163328,2248163839,US 2248163840,2248165375,GB 2248165376,2248167423,US 2248167424,2248169471,IE 2248169472,2248171519,NL 2248171520,2248177663,RU 2248177664,2248179711,DE 2248179712,2248212479,OM 2248212480,2248409087,DE 2248409088,2248605695,US 2248605696,2248671231,AU 2248671232,2249261055,US 2249261056,2249326591,BY 2249326592,2249392127,AU 2249392128,2249424895,DE 2249424896,2249426943,RU 2249426944,2249428991,SK 2249428992,2249433087,RU 2249433088,2249435135,GB 2249435136,2249437183,IT 2249437184,2249441279,NL 2249441280,2249443327,FR 2249443328,2249445375,TR 2249445376,2249449471,AZ 2249449472,2249457663,GE 2249457664,2249523199,US 2249523200,2249588735,CH 2249588736,2249654271,CA 2249654272,2249724671,US 2249724672,2249724927,CA 2249724928,2249785343,US 2249785344,2249850879,SE 2249850880,2249916415,US 2249916416,2249981951,NL 2249981952,2250047487,DE 2250047488,2250113023,US 2250113024,2250178559,DE 2250178560,2250244095,CA 2250244096,2250375167,US 2250375168,2250440703,DE 2250440704,2250506239,US 2250506240,2250571775,GB 2250571776,2250637311,FI 2250637312,2250702847,CH 2250702848,2250956799,US 2250956800,2250957055,HK 2250957056,2250957311,SG 2250957312,2250957567,AU 2250957568,2250957823,JP 2250957824,2251227135,US 2251227136,2251292671,NO 2251292672,2251685887,US 2251685888,2251751423,BE 2251751424,2251948031,US 2251948032,2252013567,BE 2252013568,2252079103,FR 2252079104,2252210175,DE 2252210176,2252931071,US 2252996608,2253062143,US 2253062144,2253127679,KR 2253127680,2253193215,DE 2253193216,2253455359,US 2253455360,2253520895,DE 2253520896,2253586431,US 2253586432,2253651967,GB 2253651968,2253848575,US 2253848576,2253914111,CA 2253914112,2254045183,US 2254045184,2254077951,GE 2254077952,2254079999,BA 2254080000,2254082047,FR 2254082048,2254082559,NO 2254082560,2254082815,NL 2254082816,2254083071,NO 2254083072,2254083327,US 2254083328,2254083583,DK 2254083584,2254084095,NO 2254084096,2254094335,RU 2254094336,2254098431,GB 2254098432,2254100479,RU 2254100480,2254102527,CH 2254102528,2254110719,IT 2254110720,2255421439,DE 2255421440,2255683583,US 2255683584,2255749119,AU 2255749120,2255814655,US 2255814656,2255880191,CA 2255880192,2255945727,US 2255945728,2256011263,DE 2256011264,2256551935,US 2256551936,2256601087,GB 2256601088,2256666623,US 2256666624,2256732159,DE 2256732160,2257190911,US 2257190912,2257256447,SE 2257256448,2257453055,US 2257453056,2257518591,GB 2257518592,2257584127,NL 2257584128,2257649663,AU 2257649664,2257717503,NL 2257717504,2257717759,GB 2257717760,2257776639,NL 2257776640,2257776895,IN 2257776896,2257780735,NL 2257780736,2257846271,DE 2257846272,2257911807,AU 2257911808,2257977343,US 2257977344,2258042879,CA 2258042880,2258108415,GB 2258108416,2258173951,US 2258173952,2258239487,CA 2258239488,2258305023,US 2258305024,2258370559,DE 2258370560,2258436095,US 2258436096,2258567167,FR 2258567168,2258568191,US 2258568192,2258568447,HK 2258568448,2258582783,US 2258582784,2258582791,GB 2258582792,2258583551,US 2258583552,2258591743,GB 2258591744,2258591935,AU 2258591936,2258591967,HK 2258591968,2258592271,AU 2258592272,2258592279,JP 2258592280,2258592287,AU 2258592288,2258592291,JP 2258592292,2258592439,AU 2258592440,2258592447,JP 2258592448,2258592767,AU 2258592768,2258593023,HK 2258593024,2258593087,TW 2258593088,2258593279,AU 2258593280,2258593535,HK 2258593536,2258594047,AU 2258594048,2258594111,HK 2258594112,2258594143,AU 2258594144,2258594175,HK 2258594176,2258594303,AU 2258594304,2258594815,HK 2258594816,2258595103,AU 2258595104,2258595167,TW 2258595168,2258595231,AU 2258595232,2258595263,TW 2258595264,2258595295,AU 2258595296,2258595327,TW 2258595328,2258595383,AU 2258595384,2258595391,KR 2258595392,2258595887,AU 2258595888,2258595895,NZ 2258595896,2258595967,AU 2258595968,2258595983,TW 2258595984,2258596095,AU 2258596096,2258596103,HK 2258596104,2258596159,AU 2258596160,2258596255,HK 2258596256,2258596351,AU 2258596352,2258597071,HK 2258597072,2258597079,TW 2258597080,2258597215,HK 2258597216,2258597263,AU 2258597264,2258597303,HK 2258597304,2258597311,AU 2258597312,2258597367,HK 2258597368,2258597371,AU 2258597372,2258597535,HK 2258597536,2258597567,AU 2258597568,2258597583,HK 2258597584,2258597599,AU 2258597600,2258597631,HK 2258597632,2258597903,AU 2258597904,2258597919,JP 2258597920,2258597927,AU 2258597928,2258597935,JP 2258597936,2258598079,AU 2258598080,2258598087,TW 2258598088,2258598095,AU 2258598096,2258598111,TW 2258598112,2258598143,JP 2258598144,2258598495,AU 2258598496,2258598511,NZ 2258598512,2258598519,AU 2258598520,2258598527,JP 2258598528,2258598623,AU 2258598624,2258598655,TW 2258598656,2258599183,AU 2258599184,2258599187,JP 2258599188,2258599675,AU 2258599676,2258599679,JP 2258599680,2258599935,AU 2258599936,2258599971,HK 2258599972,2258599975,AU 2258599976,2258600447,HK 2258600448,2258600515,AU 2258600516,2258600519,IN 2258600520,2258600523,AU 2258600524,2258600527,IN 2258600528,2258600959,AU 2258600960,2258601087,SG 2258601088,2258601167,AU 2258601168,2258601175,NZ 2258601176,2258601215,AU 2258601216,2258601343,TW 2258601344,2258601471,AU 2258601472,2258601983,JP 2258601984,2258602239,AU 2258602240,2258602495,HK 2258602496,2258602751,AU 2258602752,2258603071,HK 2258603072,2258603087,AU 2258603088,2258603103,HK 2258603104,2258603135,AU 2258603136,2258603139,HK 2258603140,2258603199,AU 2258603200,2258603207,HK 2258603208,2258603775,AU 2258603776,2258603839,HK 2258603840,2258603903,AU 2258603904,2258603943,HK 2258603944,2258603951,AU 2258603952,2258603967,HK 2258603968,2258604031,AU 2258604032,2258604543,HK 2258604544,2258604671,AU 2258604672,2258604735,SG 2258604736,2258604799,AU 2258604800,2258605311,HK 2258605312,2258605439,SG 2258605440,2258606079,AU 2258606080,2258606367,HK 2258606368,2258606415,AU 2258606416,2258606423,HK 2258606424,2258606463,AU 2258606464,2258606471,HK 2258606472,2258606487,AU 2258606488,2258606535,HK 2258606536,2258606963,AU 2258606964,2258606967,NZ 2258606968,2258607091,AU 2258607092,2258607095,NZ 2258607096,2258607351,AU 2258607352,2258607359,NZ 2258607360,2258607615,AU 2258607616,2258607879,HK 2258607880,2258607903,AU 2258607904,2258607999,HK 2258608000,2258608063,AU 2258608064,2258608127,HK 2258608128,2258608183,AU 2258608184,2258608187,TW 2258608188,2258608255,AU 2258608256,2258608259,JP 2258608260,2258608279,AU 2258608280,2258608283,JP 2258608284,2258608383,AU 2258608384,2258608639,HK 2258608640,2258608655,AU 2258608656,2258608663,JP 2258608664,2258608671,AU 2258608672,2258608687,JP 2258608688,2258610179,AU 2258610180,2258610183,IN 2258610184,2258610239,AU 2258610240,2258610303,IN 2258610304,2258610703,AU 2258610704,2258610719,TW 2258610720,2258610751,AU 2258610752,2258610755,TW 2258610756,2258610759,AU 2258610760,2258610783,TW 2258610784,2258611071,AU 2258611072,2258611103,JP 2258611104,2258611119,AU 2258611120,2258611167,JP 2258611168,2258611215,AU 2258611216,2258611223,NZ 2258611224,2258611711,AU 2258611712,2258611967,NZ 2258611968,2258612223,HK 2258612224,2258614783,AU 2258614784,2258614815,IN 2258614816,2258615039,AU 2258615040,2258615055,IN 2258615056,2258616319,AU 2258616320,2258621951,HK 2258621952,2258622207,NZ 2258622208,2258622719,HK 2258622720,2258623231,NZ 2258623232,2258624255,HK 2258624256,2258624511,AU 2258624512,2258632703,HK 2258632704,2258698239,JP 2258698240,2259222527,US 2259222528,2259288063,DE 2259288064,2259304703,US 2259304704,2259304719,NL 2259304720,2259343391,US 2259343392,2259343423,HK 2259343424,2259343743,US 2259343744,2259343775,BR 2259343776,2259353599,US 2259353600,2259419135,DE 2259419136,2259615743,US 2259681280,2259746815,DE 2259746816,2259812351,US 2259812352,2259877887,AU 2259877888,2259943423,US 2259943424,2260008959,JP 2260008960,2260140031,US 2260140032,2260205567,GB 2260205568,2260271103,BE 2260271104,2260467711,US 2260467712,2260533247,NL 2260533248,2260598783,US 2260598784,2260664319,CA 2260664320,2260723711,GB 2260723712,2260723967,IL 2260723968,2260729343,GB 2260729344,2260729599,IL 2260729600,2260729855,GB 2260729856,2260926463,US 2260992000,2261057535,TH 2261057536,2261188607,US 2261188608,2261254143,CA 2261254144,2261385215,US 2261385216,2261450751,PR 2261450752,2261516287,NL 2261516288,2261647359,US 2261647360,2261712895,FR 2261712896,2261778431,US 2261778432,2261843967,TW 2261843968,2261975039,US 2261975040,2262040575,AU 2262040576,2262106111,FR 2262106112,2262171647,GB 2262171648,2262237183,FR 2262237184,2262499327,US 2262499328,2262630399,GB 2262630400,2262724071,NL 2262724072,2262724073,IE 2262724074,2262761471,NL 2262761472,2262892543,US 2262892544,2262958079,GB 2262958080,2263023615,IE 2263023616,2263089151,FR 2263089152,2263613439,US 2263613440,2263678975,TH 2263678976,2263744511,JP 2263744512,2263810047,US 2263810048,2263875583,SA 2263875584,2264203263,US 2264203264,2264268799,DE 2264268800,2264334335,FR 2264334336,2264399871,DE 2264399872,2264465407,US 2264465408,2264530943,UA 2264530944,2264858623,US 2264858624,2264891391,HU 2264891392,2264899583,RU 2264899584,2264905727,IT 2264905728,2264907775,ES 2264907776,2264924159,DE 2264924160,2264989695,CA 2264989696,2265055231,US 2265055232,2265448447,FR 2265448448,2265605887,US 2265605888,2265606143,GB 2265606144,2265710847,US 2265710848,2265776127,CA 2265776128,2265841663,FR 2265841664,2266103807,US 2266103808,2266169343,FR 2266169344,2266234879,CA 2266234880,2266431487,US 2266431488,2266497023,CA 2266497024,2266694655,US 2266694656,2266694911,SG 2266694912,2270488575,US 2270488576,2270490623,MO 2270490624,2270494719,IN 2270494720,2270756863,FR 2270756864,2270953471,US 2270953472,2271084543,FR 2271084544,2271674367,US 2271674368,2271805439,FR 2271805440,2272067583,US 2272067584,2272133119,FR 2272133120,2276786175,US 2276786176,2276851711,CA 2276851712,2276917247,US 2276917248,2276982783,FR 2276982784,2277048319,US 2277048320,2277113855,FR 2277113856,2277769215,US 2277769216,2277834751,GB 2277834752,2279342079,US 2279342080,2280982527,FR 2280982528,2280982783,US 2280982784,2280983039,FR 2280983040,2280983295,US 2280983296,2280992779,FR 2280992780,2280992781,CA 2280992782,2280993023,FR 2280993024,2280993035,CA 2280993036,2280993036,US 2280993037,2280993279,CA 2280993280,2280998911,FR 2280998912,2280999167,US 2280999168,2281007103,FR 2281007104,2281007359,IN 2281007360,2281023487,FR 2281023488,2281023743,IN 2281023744,2281701375,FR 2281701376,2281705471,CH 2281705472,2281705727,US 2281705728,2281705983,CN 2281705984,2282226175,US 2282226176,2282226243,AU 2282226244,2282226245,US 2282226246,2282226246,AU 2282226247,2282226247,US 2282226248,2282226431,AU 2282226432,2282234111,US 2282234112,2282234367,GB 2282234368,2291204095,US 2291204096,2291269631,PR 2291269632,2291400703,US 2291400704,2291466239,GB 2291466240,2291728383,US 2291728384,2291859455,AU 2291859456,2291924991,SE 2291924992,2291990527,GB 2291990528,2292056063,US 2292056064,2292121599,NO 2292121600,2292187135,CA 2292187136,2292383743,US 2292383744,2292449279,SE 2292449280,2292514815,NO 2292514816,2292776959,US 2292776960,2292809727,LV 2292809728,2292842495,RU 2292842496,2292908031,GB 2292908032,2292973567,US 2292973568,2293039103,DE 2293039104,2293080575,LU 2293080576,2293080831,BE 2293080832,2293085183,LU 2293085184,2293085439,BE 2293085440,2293104639,LU 2293104640,2293825535,US 2293825536,2293891071,IN 2293891072,2293956607,AU 2293956608,2294022143,JP 2294022144,2294677503,US 2294677504,2294743039,JP 2294743040,2294808575,DE 2294808576,2294874111,US 2294874112,2294939647,IE 2294939648,2295201791,US 2295201792,2295267327,IE 2295267328,2296446975,US 2296446976,2296512511,SE 2296512512,2296774655,US 2296774656,2296840191,DE 2296840192,2296905727,NL 2296905728,2297167871,US 2297167872,2297233407,AU 2297233408,2297298943,US 2297298944,2297364479,CH 2297364480,2297626623,US 2297626624,2297692159,DE 2297692160,2299461631,US 2299461632,2299527167,CA 2299527168,2299592703,US 2299592704,2299658239,NL 2299658240,2300641279,US 2300641280,2300706815,FI 2300706816,2300772351,CH 2300772352,2301296639,US 2301296640,2301362175,IE 2301362176,2301427711,GB 2301427712,2301558783,US 2301558784,2301624319,NO 2301624320,2301755391,US 2301755392,2301820927,GB 2301820928,2302083071,US 2302083072,2302214143,NL 2302214144,2302279679,US 2302279680,2302345215,SE 2302345216,2302346239,IN 2302346240,2302347263,BD 2302347264,2302348287,IN 2302348288,2302349311,ID 2302349312,2302351359,HK 2302351360,2302357503,VN 2302357504,2302358527,BD 2302358528,2302363647,IN 2302363648,2302364671,JP 2302364672,2302365695,IN 2302365696,2302366719,HK 2302366720,2302367743,IN 2302367744,2302368767,CN 2302368768,2302369791,IN 2302410752,2302541823,SE 2302541824,2302607359,CH 2302607360,2302625761,SC 2302625762,2302625762,CA 2302625763,2302640127,SC 2302640128,2302672895,UG 2302738432,2302935039,US 2302935040,2303000575,KR 2303000576,2303262719,US 2303262720,2303328255,GB 2303328256,2303393791,HK 2303393792,2303459327,US 2303459328,2303524863,AU 2303524864,2303852543,US 2303852544,2303918079,CA 2303918080,2304507903,US 2304507904,2304573439,AU 2304573440,2304638975,NO 2304638976,2304704511,CA 2304704512,2304770047,US 2304770048,2304835583,FI 2304835584,2304901119,US 2304901120,2304966655,CZ 2304966656,2305097727,US 2305097728,2305163263,ES 2305163264,2305359871,US 2305359872,2305425407,GB 2305425408,2305556479,US 2305556480,2305622015,GB 2305622016,2305687551,AU 2305687552,2305753087,US 2305753088,2305818623,AU 2305818624,2306015231,US 2306080768,2306129919,US 2306129920,2306138111,NL 2306138112,2306146303,IE 2306146304,2306342911,US 2306342912,2306408447,NL 2306408448,2306473983,FR 2306473984,2306539519,CA 2306539520,2306932735,US 2306932736,2306998271,FR 2306998272,2307129343,US 2307129344,2307194879,SG 2307194880,2307260415,NO 2307260416,2307522559,US 2307522560,2307588095,CH 2307588096,2308112383,US 2308112384,2308177919,AU 2308177920,2308243455,US 2308243456,2308308991,CA 2308308992,2308505599,US 2308505600,2308571135,JP 2308571136,2308636671,AU 2308636672,2308702207,US 2308702208,2308767743,CH 2308767744,2308833279,AU 2308833280,2308898815,ZA 2308898816,2309160959,US 2309160960,2309226495,FI 2309226496,2309357567,US 2309357568,2309423103,AU 2309423104,2309685247,US 2309685248,2309750783,ZA 2309750784,2309816319,AU 2309816320,2309881855,US 2309881856,2309947391,NL 2309947392,2309980159,US 2309980160,2310012927,CA 2310012928,2310668287,US 2310668288,2310733823,CA 2310733824,2310864895,US 2310864896,2310930431,HK 2310930432,2310995967,US 2310995968,2311061503,IE 2311061504,2311127039,US 2311127040,2311192575,DE 2311192576,2311258111,FR 2311258112,2311315455,GB 2311315456,2311319551,MY 2311319552,2311323647,GB 2311389184,2311847935,US 2311847936,2311913471,IT 2311913472,2311979007,GB 2311979008,2312044543,US 2312044544,2312110079,CA 2312110080,2312175615,AT 2312175616,2312437759,US 2312437760,2312503295,GB 2312503296,2312634367,ZA 2312634368,2312699903,US 2312699904,2312765439,NO 2312765440,2312830975,GB 2312830976,2312896511,AU 2312896512,2312962047,US 2312962048,2313093119,GB 2313093120,2313158655,IE 2313158656,2313224191,NL 2313224192,2313289727,US 2313289728,2313355263,DE 2313355264,2314731519,US 2314731520,2314797055,DE 2314797056,2314862591,US 2314862592,2314993663,DE 2314993664,2315059199,US 2315059200,2315124735,GB 2315124736,2315190271,US 2315255808,2315257855,BR 2315257856,2315258879,AR 2315258880,2315259903,CL 2315259904,2315266047,BR 2315266048,2315267071,VE 2315267072,2315270143,BR 2315270144,2315271167,AR 2315271168,2315278335,BR 2315278336,2315279359,CO 2315279360,2315282431,BR 2315282432,2315283455,AR 2315283456,2315285503,BR 2315285504,2315286527,PA 2315286528,2315287551,CL 2315287552,2315294719,BR 2315294720,2315296767,AR 2315296768,2315302911,BR 2315302912,2315303935,AR 2315303936,2315314175,BR 2315314176,2315315199,HN 2315315200,2315317247,BR 2315317248,2315318271,HN 2315318272,2315321343,BR 2315321344,2315452415,US 2315452416,2315517951,GB 2315517952,2315583487,ES 2315583488,2315649023,US 2315649024,2315714559,SE 2315714560,2315780095,AU 2315780096,2315911167,US 2315911168,2316042239,CA 2316042240,2316173311,US 2316173312,2316238847,SE 2316238848,2316500991,US 2316500992,2316566527,AU 2316566528,2316613887,US 2316613888,2316614143,GB 2316614144,2316632063,US 2316632064,2316697599,FR 2316697600,2316763135,AT 2316763136,2316828671,US 2316828672,2316959743,AU 2316959744,2317221887,US 2317221888,2317287423,JP 2317287424,2317395967,US 2317395968,2317396223,NO 2317396224,2317398015,US 2317398016,2317398271,GB 2317398272,2317413119,US 2317413120,2317413375,CA 2317413376,2317413631,ID 2317413632,2317414655,US 2317414656,2317414911,AU 2317414912,2317484031,US 2317484032,2317487359,CA 2317487360,2317487615,US 2317487616,2317549567,CA 2317549568,2317615103,US 2317615104,2317619199,BR 2317619200,2317620223,AR 2317620224,2317621247,BR 2317621248,2317622271,DO 2317622272,2317628415,BR 2317628416,2317629439,AR 2317629440,2317631487,BR 2317631488,2317632511,CO 2317632512,2317634559,BR 2317634560,2317635583,BO 2317635584,2317638655,BR 2317638656,2317639679,HN 2317639680,2317640703,AR 2317640704,2317649919,BR 2317649920,2317650943,HN 2317650944,2317651967,BR 2317651968,2317652991,PE 2317652992,2317654015,AR 2317654016,2317655039,MX 2317655040,2317671423,BR 2317671424,2317672447,AR 2317672448,2317675519,BR 2317675520,2317676543,AR 2317676544,2317679615,BR 2317679616,2317680639,CL 2317680640,2317811711,GB 2317811712,2317877247,US 2317877248,2317942783,GB 2317942784,2318008319,IT 2318008320,2318139391,US 2318139392,2318204927,AU 2318204928,2318401535,US 2318401536,2318467071,BE 2318467072,2318598143,US 2318598144,2318663679,CA 2318663680,2319122431,US 2319122432,2319123455,AR 2319123456,2319124479,HN 2319124480,2319125503,VE 2319125504,2319126527,UY 2319126528,2319127551,CR 2319127552,2319128575,BR 2319128576,2319129599,TT 2319129600,2319138815,BR 2319138816,2319139839,PE 2319139840,2319150079,BR 2319150080,2319151103,EC 2319151104,2319152127,BR 2319152128,2319153151,VE 2319153152,2319156223,BR 2319156224,2319157247,CR 2319157248,2319158271,BR 2319158272,2319159295,AR 2319159296,2319160319,BR 2319160320,2319161343,PA 2319161344,2319164415,BR 2319164416,2319165439,PY 2319165440,2319167487,AR 2319167488,2319168511,HN 2319168512,2319174655,BR 2319174656,2319175679,HN 2319175680,2319184895,BR 2319184896,2319185919,AR 2319185920,2319187967,BR 2319187968,2319319039,US 2319319040,2319384575,NO 2319384576,2319450111,FR 2319450112,2319581183,US 2319581184,2319646719,IT 2319646720,2319843327,US 2319843328,2319908863,IT 2319908864,2319974399,AU 2319974400,2320039935,US 2320039936,2320105471,CA 2320105472,2320171007,US 2320171008,2320236543,SG 2320236544,2320302079,US 2320302080,2320367615,AU 2320367616,2320433151,US 2320433152,2320564223,AU 2320564224,2320629759,CH 2320629760,2320695295,CA 2320695296,2321223679,US 2321223680,2321227775,JP 2321227776,2321416191,US 2321416192,2321417215,CO 2321417216,2321419263,BR 2321419264,2321420287,AR 2321420288,2321430527,BR 2321430528,2321431551,CR 2321431552,2321446911,BR 2321446912,2321447647,HN 2321447648,2321447679,NL 2321447680,2321447727,HN 2321447728,2321447743,NL 2321447744,2321447935,HN 2321447936,2321452031,BR 2321452032,2321453055,MX 2321453056,2321454079,HN 2321454080,2321471487,BR 2321471488,2321472511,HN 2321472512,2321477631,BR 2321477632,2321478655,TT 2321478656,2321479679,SV 2321479680,2321480703,GY 2321480704,2321481727,GT 2321481728,2321547263,US 2321547264,2321612799,FR 2321612800,2321627135,BR 2321627136,2321628159,CO 2321628160,2321633279,BR 2321633280,2321634303,CO 2321634304,2321648639,BR 2321648640,2321649663,SV 2321649664,2321652735,BR 2321652736,2321653759,BZ 2321653760,2321654783,NI 2321654784,2321655807,BR 2321655808,2321656831,MX 2321656832,2321657855,BR 2321657856,2321658879,AR 2321658880,2321663999,BR 2321664000,2321665023,AR 2321665024,2321673215,BR 2321673216,2321674239,AR 2321674240,2321676287,BR 2321676288,2321677311,DO 2321677312,2321678335,BR 2321678336,2321743871,US 2321743872,2321744895,SV 2321744896,2321745919,AR 2321745920,2321753087,BR 2321753088,2321753927,HN 2321753928,2321753935,NL 2321753936,2321754111,HN 2321754112,2321755135,BR 2321755136,2321756159,UY 2321756160,2321769471,BR 2321769472,2321770495,PY 2321770496,2321774719,BR 2321774720,2321774847,PE 2321774848,2321774975,AR 2321774976,2321775103,VE 2321775104,2321775231,PE 2321775232,2321775359,BR 2321775360,2321775487,EC 2321775488,2321775615,AR 2321775616,2321776639,VE 2321776640,2321777663,AR 2321777664,2321778687,BR 2321778688,2321779711,PA 2321779712,2321780735,BR 2321780736,2321780991,PA 2321780992,2321781247,BR 2321781248,2321781503,PA 2321781504,2321781759,BR 2321781760,2321782783,MX 2321782784,2321787903,BR 2321787904,2321788927,AR 2321788928,2321789951,CL 2321789952,2321790975,SV 2321790976,2321791999,AR 2321792000,2321797119,BR 2321797120,2321798143,BZ 2321798144,2321799167,CW 2321799168,2321800191,BZ 2321800192,2321801215,VE 2321801216,2321802239,CL 2321802240,2321804287,BR 2321804288,2321805311,DO 2321805312,2321809407,BR 2321809408,2321874943,ES 2321874944,2321940479,JP 2321940480,2322006015,FR 2322006016,2322071551,SE 2322071552,2322130431,GB 2322130432,2322130687,SG 2322130688,2322137087,GB 2322137088,2322202623,US 2322202624,2322268159,SE 2322268160,2322333695,JP 2322333696,2322368511,US 2322368512,2322368767,MY 2322368768,2322563583,US 2322563584,2322563839,FI 2322563840,2322923519,US 2322923520,2322924543,BR 2322924544,2322925567,NI 2322925568,2322929663,AR 2322929664,2322933759,BR 2322933760,2322934783,CO 2322934784,2322935807,VE 2322935808,2322936831,AR 2322936832,2322940927,BR 2322940928,2322941951,CL 2322941952,2322942975,BR 2322942976,2322943999,AR 2322944000,2322945023,BR 2322945024,2322946047,CO 2322946048,2322948095,BR 2322948096,2322949119,HN 2322949120,2322951167,BR 2322951168,2322952191,CO 2322952192,2322953215,AR 2322953216,2322956287,BR 2322956288,2322957311,AR 2322957312,2322958335,BR 2322958336,2322959359,CO 2322959360,2322960383,GT 2322960384,2322961407,BR 2322961408,2322962431,CL 2322962432,2322963455,BR 2322963456,2322964479,AR 2322964480,2322965503,PE 2322965504,2322974719,BR 2322974720,2322975743,AR 2322975744,2322980863,BR 2322989056,2322991103,BR 2322991104,2322992127,CL 2322992128,2322998271,BR 2322998272,2322999295,AR 2322999296,2323001343,BR 2323001344,2323002367,AR 2323002368,2323009535,BR 2323009536,2323010559,CR 2323010560,2323015679,BR 2323015680,2323016703,GT 2323016704,2323017727,BR 2323017728,2323018751,AR 2323018752,2323020799,BR 2323020800,2323021823,PA 2323021824,2323025919,BR 2323025920,2323026943,AR 2323026944,2323028991,BR 2323028992,2323030015,CR 2323030016,2323042303,BR 2323042304,2323045375,AR 2323045376,2323054591,BR 2323054592,2323120127,CA 2323120128,2323185663,US 2323185664,2323186687,BR 2323186688,2323187711,CO 2323187712,2323188735,BR 2323188736,2323189759,CO 2323189760,2323205119,BR 2323205120,2323209215,AR 2323209216,2323210239,BR 2323210240,2323211263,CL 2323211264,2323213311,AR 2323213312,2323214335,CL 2323214336,2323215359,AR 2323215360,2323217407,BR 2323217408,2323218431,AR 2323218432,2323221503,BR 2323221504,2323222527,CR 2323222528,2323225599,BR 2323225600,2323226623,CO 2323226624,2323227647,AR 2323227648,2323228671,BR 2323228672,2323229695,CL 2323229696,2323230719,BR 2323230720,2323231743,CL 2323231744,2323236863,BR 2323236864,2323237887,CO 2323237888,2323244031,BR 2323244032,2323245055,AR 2323245056,2323247103,BR 2323247104,2323248127,AR 2323248128,2323252223,BR 2323252224,2323253247,VE 2323253248,2323257343,BR 2323257344,2323258367,CR 2323258368,2323275775,BR 2323275776,2323276799,MX 2323276800,2323278847,BR 2323278848,2323279871,EC 2323279872,2323283967,BR 2323283968,2323284991,AR 2323284992,2323288063,BR 2323288064,2323289087,MX 2323289088,2323291135,BR 2323291136,2323292159,AR 2323292160,2323293183,PY 2323293184,2323298303,BR 2323298304,2323299327,PY 2323299328,2323300351,AR 2323300352,2323301375,HN 2323301376,2323302399,BR 2323302400,2323303423,CO 2323303424,2323308543,BR 2323308544,2323309567,CL 2323309568,2323310591,AR 2323310592,2323313663,BR 2323313664,2323314687,CR 2323314688,2323315711,BR 2323315712,2323316735,MX 2323316736,2323382271,US 2323382272,2323447807,NO 2323447808,2323690495,US 2323690496,2323690751,IN 2323690752,2323699711,US 2323699712,2323700735,NL 2323700736,2323701759,US 2323701760,2323709951,VG 2323709952,2323775487,US 2323775488,2323841023,AU 2323841024,2323906559,CH 2323906560,2323972095,IT 2323972096,2324037631,US 2324037632,2324103167,IL 2324103168,2327379967,US 2327379968,2327380991,MX 2327380992,2327383039,BR 2327383040,2327384063,CL 2327384064,2327387135,BR 2327387136,2327388159,NI 2327388160,2327396351,BR 2327396352,2327398399,VE 2327398400,2327399423,BR 2327399424,2327400447,BZ 2327400448,2327401471,AR 2327401472,2327406591,BR 2327406592,2327407615,NI 2327407616,2327408639,BR 2327408640,2327409663,AR 2327409664,2327410687,PE 2327410688,2327414783,BR 2327414784,2327415807,EC 2327415808,2327416831,AR 2327416832,2327432191,BR 2327432192,2327433215,AR 2327433216,2327434239,BQ 2327434240,2327437311,BR 2327437312,2327438335,MX 2327438336,2327443455,BR 2327443456,2327444479,CR 2327444480,2327446527,BR 2327446528,2327447551,VE 2327447552,2327448575,CL 2327448576,2327449599,PA 2327449600,2327450623,BR 2327450624,2327451647,CO 2327451648,2327452671,BR 2327452672,2327453695,MX 2327453696,2327460863,BR 2327460864,2327461887,PY 2327461888,2327462911,MX 2327462912,2327468031,BR 2327468032,2327469055,PA 2327469056,2327471103,BR 2327471104,2327472127,MX 2327472128,2327476223,BR 2327476224,2327477247,CL 2327477248,2327480319,BR 2327480320,2327481343,HN 2327481344,2327482367,AR 2327482368,2327483391,BR 2327483392,2327485439,AR 2327485440,2327486463,BR 2327486464,2327487487,AR 2327487488,2327490559,BR 2327490560,2327491583,VE 2327491584,2327493631,BR 2327493632,2327494655,CO 2327494656,2327496703,BR 2327496704,2327497727,MX 2327497728,2327498751,BR 2327498752,2327499775,HN 2327499776,2327501823,AR 2327501824,2327507967,BR 2327507968,2327508991,AR 2327508992,2327510015,SV 2327510016,2327511039,AR 2327511040,2327838719,CH 2327838720,2327969791,US 2327969792,2328035327,AU 2328035328,2328100863,FR 2328100864,2328231935,US 2328231936,2328297471,GB 2328313856,2328317951,NL 2328363008,2328494079,DE 2328494080,2328559615,US 2328559616,2328625151,BE 2328625152,2328627199,AR 2328627200,2328628223,BR 2328628224,2328629247,BZ 2328629248,2328635391,BR 2328635392,2328636415,AR 2328636416,2328652799,BR 2328652800,2328653823,PA 2328653824,2328664063,BR 2328664064,2328667135,AR 2328667136,2328668159,BR 2328668160,2328669183,MX 2328669184,2328671231,BR 2328671232,2328672255,HN 2328672256,2328677375,BR 2328677376,2328678399,MX 2328678400,2328680447,BR 2328680448,2328681471,AR 2328681472,2328683519,BR 2328683520,2328684543,CL 2328684544,2328685567,BR 2328685568,2328686591,VE 2328686592,2328687615,BR 2328687616,2328690687,AR 2328690688,2328756223,BE 2328756224,2328797439,CH 2328797440,2328797695,AU 2328797696,2328821759,CH 2328821760,2329083903,US 2329083904,2329149439,NZ 2329149440,2329214975,JP 2329280512,2329346047,CA 2329346048,2329411583,SE 2329411584,2329477119,FI 2329477120,2329542655,AU 2329542656,2329608191,CA 2329608192,2329610239,AR 2329610240,2329611263,PY 2329611264,2329612287,SV 2329612288,2329613311,AR 2329613312,2329617407,BR 2329617408,2329618431,MX 2329618432,2329619455,AR 2329619456,2329622527,BR 2329622528,2329623551,CL 2329623552,2329624575,AR 2329624576,2329626623,BR 2329626624,2329627647,HN 2329627648,2329628671,BR 2329628672,2329629695,AR 2329629696,2329638911,BR 2329638912,2329639935,HN 2329639936,2329644031,BR 2329644032,2329645055,CW 2329645056,2329648127,BR 2329648128,2329649151,SV 2329649152,2329650175,AR 2329650176,2329652223,BR 2329652224,2329653247,HN 2329653248,2329662463,BR 2329662464,2329664511,AR 2329664512,2329666559,BR 2329666560,2329667583,CL 2329667584,2329668607,AR 2329668608,2329671679,BR 2329671680,2329672703,AR 2329672704,2329673727,BR 2329673728,2329739263,US 2329739264,2329804799,SE 2329804800,2329870335,DE 2329870336,2329935871,CH 2329935872,2330001407,DE 2330001408,2330066943,CH 2330066944,2330132479,US 2330132480,2330198015,SE 2330198016,2330263551,CH 2330263552,2330267647,US 2330267648,2330271743,CA 2330271744,2330394623,US 2330394624,2330460159,FR 2330460160,2330525695,AT 2330525696,2330591231,SE 2330591232,2330656767,US 2330656768,2330722303,NZ 2330722304,2330956287,US 2330956288,2330956543,GB 2330956544,2330956799,US 2330956800,2330957311,NZ 2330957312,2330968063,US 2330968064,2330968319,IN 2330968320,2331181055,US 2331181056,2331246591,JP 2331246592,2331443199,DE 2331443200,2331508735,US 2331508736,2331574271,GB 2331574272,2331639807,FI 2331639808,2331770879,GB 2331836416,2331901951,GB 2331901952,2331967487,US 2331967488,2331980799,BR 2331980800,2331981567,PA 2331981568,2331981823,US 2331981824,2331982847,BR 2331982848,2331983871,MX 2331983872,2331987967,BR 2331987968,2331988991,AR 2331988992,2331990015,BR 2331990016,2331991039,AR 2331991040,2331992063,BR 2331992064,2331994111,CL 2331994112,2331997183,BR 2331997184,2331998207,MX 2331998208,2332006399,BR 2332006400,2332007423,SV 2332007424,2332010495,BR 2332010496,2332011519,AR 2332011520,2332030975,BR 2332030976,2332031999,DO 2332032000,2332033023,AW 2332033024,2332098559,ID 2332098560,2332360703,DE 2332426240,2332622847,DE 2332622848,2332688383,CN 2332688384,2332753919,NL 2332753920,2333736959,DE 2333802496,2333868031,DE 2333933568,2334064639,DE 2334064640,2334916607,US 2334916608,2334982143,AU 2334982144,2335178751,US 2335178752,2335244287,CA 2335244288,2335309823,US 2335309824,2335375359,DE 2335375360,2335506431,US 2335506432,2335571967,ZA 2335571968,2335637503,FR 2335637504,2335768575,US 2335768576,2335834111,CA 2335834112,2335899647,SE 2335899648,2335965183,AU 2335965184,2336161791,US 2336161792,2336227327,NL 2336292864,2336358399,US 2336358400,2336411647,FI 2336411648,2336412671,SG 2336412672,2336423935,FI 2336423936,2336882687,US 2336882688,2336948223,FI 2336948224,2337013759,DE 2337013760,2337210367,US 2337210368,2337275903,CH 2337275904,2337341439,NZ 2337341440,2337406975,US 2337406976,2337472511,BR 2337472512,2337538047,PT 2337538048,2337669119,US 2337669120,2337734655,AU 2337734656,2337865727,US 2337865728,2337931263,DE 2337931264,2337996799,BE 2337996800,2338062335,GR 2338083840,2338084095,TR 2338086912,2338087423,DE 2338092288,2338092543,SE 2338113536,2338113791,FR 2338115072,2338115839,IL 2338120448,2338120703,DE 2338123008,2338123263,AT 2338123520,2338123775,IT 2338124800,2338125055,GB 2338125056,2338125311,FR 2338125312,2338125567,GB 2338127872,2338324479,US 2338324480,2338390015,SE 2338390016,2338455551,FI 2338455552,2338521087,NO 2338521088,2338586623,US 2338586624,2338652159,FR 2338652160,2338717695,JP 2338717696,2338783231,US 2338783232,2338848767,CA 2338848768,2338914303,US 2338914304,2339962879,NO 2339962880,2340028415,US 2340028416,2340081663,SE 2340081664,2340081919,BR 2340081920,2340093951,SE 2340093952,2340159487,FI 2340159488,2340225023,FR 2340225024,2340421631,US 2340421632,2340487167,IT 2340487168,2340552703,CN 2340552704,2340618239,AU 2340618240,2340683775,US 2340683776,2340749311,AU 2340749312,2340814847,GB 2340814848,2340880383,AU 2340880384,2341273599,US 2341273600,2341339135,KW 2341339136,2341404671,CA 2341404672,2341470207,GB 2341470208,2341535743,US 2341535744,2341601279,NO 2341601280,2341732351,US 2341732352,2341797887,CN 2341797888,2341863423,GB 2341863424,2341928959,KR 2341928960,2341994495,US 2341994496,2342060031,JP 2342060032,2342125567,GB 2342125568,2342191103,JP 2342191104,2342256639,CN 2342256640,2342322175,NL 2342322176,2342387711,FI 2342387712,2342453247,FR 2342453248,2342518783,CN 2342518784,2342584319,FR 2342584320,2342649856,US 2342649857,2342658047,SG 2342658048,2342682623,US 2342682624,2342690815,DE 2342690816,2342700247,US 2342700248,2342700248,GB 2342700249,2342701408,US 2342701409,2342701409,GB 2342701410,2342705120,US 2342705121,2342705121,GB 2342705122,2342715391,US 2342715392,2342780927,AU 2342780928,2342846463,NO 2342846464,2342911999,BE 2342912000,2342977535,GB 2342977536,2343043071,US 2343043072,2343108607,AU 2343108608,2343174143,US 2343174144,2343239679,CN 2343239680,2343370751,US 2343370752,2343436287,CA 2343436288,2343501823,DE 2343501824,2343567359,TW 2343567360,2343632895,CN 2343632896,2343698431,US 2343698432,2343763967,NL 2343763968,2343829503,TR 2343829504,2343924735,US 2343924736,2343925759,IL 2343925760,2343934975,US 2343934976,2343935999,IL 2343936000,2344026111,US 2344026112,2344091647,CN 2344091648,2344157183,GB 2344157184,2344222719,US 2344222720,2344288255,CN 2344288256,2344353791,US 2344353792,2344419327,AU 2344419328,2344484863,CN 2344484864,2344550399,PK 2344615936,2344878079,ID 2344878080,2346188799,CN 2346188800,2346254335,AU 2346254336,2346319871,CN 2346319872,2346385407,AU 2346385408,2346582015,CN 2346582016,2346647551,GB 2346647552,2346713087,TW 2346713088,2346778623,CN 2346778624,2346844159,US 2346844160,2346975231,CN 2346975232,2347040767,ID 2347040768,2347106303,US 2347106304,2347171839,AU 2347171840,2348744703,US 2348744704,2348875775,ID 2348875776,2353725439,US 2353725440,2353790975,CN 2353790976,2353856511,US 2353856512,2353922047,FR 2353922048,2353987583,AT 2353987584,2354053119,AU 2354053120,2354118655,CA 2354184192,2354249727,US 2354249728,2354315263,AU 2354315264,2354380799,US 2354380800,2354446335,NL 2354446336,2354511871,FR 2354511872,2354839551,US 2354839552,2354905087,TW 2354905088,2355036159,FR 2355036160,2355101695,US 2355101696,2355167231,TW 2355167232,2355232767,GB 2355232768,2355691519,US 2355691520,2355757055,IT 2355757056,2355953663,US 2355953664,2357919743,TW 2357919744,2358181887,US 2358181888,2358247423,CN 2358247424,2358509567,US 2358509568,2358575103,MX 2358575104,2358640639,TH 2358640640,2358706175,SE 2358706176,2358771711,FI 2358771712,2359230463,US 2359230464,2359295999,AU 2359296000,2359361535,US 2359361536,2359427071,CA 2359427072,2359558143,US 2359558144,2359623679,IT 2359623680,2359689215,US 2359689216,2359754751,SE 2359754752,2359820287,CA 2359820288,2359885823,AU 2359885824,2360672255,US 2360672256,2360737791,DE 2360737792,2360868863,US 2360868864,2360934399,CA 2360934400,2361327615,US 2361327616,2361393151,AR 2361393152,2361458687,US 2361458688,2361524223,CA 2361524224,2361917439,US 2361917440,2361982975,NZ 2361982976,2362114047,US 2362114048,2362179583,IE 2362179584,2362245119,US 2362245120,2362441727,CN 2362441728,2362572799,US 2362572800,2362638335,CN 2362638336,2362769407,US 2362769408,2362834943,ID 2362834944,2363490303,US 2363490304,2363555839,CN 2363555840,2363883519,US 2363883520,2363949055,CA 2363949056,2364211199,US 2364276736,2364342271,US 2364342272,2364407807,CN 2364407808,2364538879,US 2364538880,2364604415,CN 2364604416,2364671487,US 2364671488,2364671743,CN 2364671744,2364675839,US 2364675840,2364676095,CA 2364676096,2364676867,US 2364676868,2364677119,GB 2364677120,2364725503,US 2364725504,2364725759,IL 2364725760,2364727807,US 2364727808,2364728063,DE 2364728064,2364735487,US 2364735488,2364801023,CN 2364801024,2364932095,US 2364932096,2364997631,CN 2364997632,2365128703,US 2365128704,2365259775,CN 2365259776,2365390847,US 2365390848,2365456383,AU 2365456384,2365521919,US 2365521920,2365587455,CN 2365587456,2365589503,JO 2365589504,2365590527,US 2365590528,2365591039,NO 2365591040,2365591295,US 2365591296,2365591551,NO 2365591552,2365593599,DE 2365593600,2365595647,NL 2365595648,2365603839,GB 2365603840,2365624319,NO 2365624320,2365630463,GB 2365630464,2365632511,NL 2365632512,2365634559,RU 2365634560,2365636607,FR 2365636608,2365638655,GB 2365638656,2365640703,FR 2365640704,2365644799,GB 2365644800,2365652991,NO 2365652992,2366032895,DE 2366032896,2366033151,GB 2366033152,2366111743,DE 2366111744,2366144511,MT 2366144512,2366148479,RU 2366148480,2366148607,US 2366148608,2366149375,RU 2366149376,2366149407,DE 2366149408,2366149423,PL 2366149424,2366149439,SK 2366149440,2366149455,PT 2366149456,2366149471,ES 2366149472,2366149487,FR 2366149488,2366149495,MD 2366149496,2366149503,LT 2366149504,2366149511,LV 2366149512,2366149519,EE 2366149520,2366149527,BG 2366149528,2366149535,RS 2366149536,2366149543,UA 2366149544,2366149551,BY 2366149552,2366149559,KZ 2366149560,2366160223,RU 2366160224,2366160255,DE 2366160256,2366162943,RU 2366162944,2366164991,AL 2366164992,2366167039,GE 2366167040,2366169087,GB 2366169088,2366171135,CH 2366171136,2366308351,DE 2366308352,2366373887,GB 2366373888,2367487999,DE 2367488000,2367553535,SI 2367553536,2370895871,DE 2370895872,2370961407,SE 2370961408,2371158015,DE 2371158016,2371223551,RO 2371223552,2371289087,US 2371289088,2371616767,DE 2371616768,2371682303,GB 2371682304,2371747839,NL 2371747840,2371878911,GB 2371878912,2371944447,BE 2371944448,2372009983,GB 2372075520,2372206591,DE 2372206592,2372214783,UA 2372214784,2372218879,DE 2372218880,2372222463,FR 2372222464,2372222975,CH 2372222977,2372222977,NL 2372223488,2372223999,FR 2372224000,2372224255,IN 2372224656,2372224671,GB 2372225280,2372225791,US 2372225793,2372225793,NL 2372226304,2372226559,SG 2372227072,2372227327,NO 2372227840,2372228607,KR 2372231168,2372231295,HU 2372231680,2372232191,GB 2372233728,2372233983,GB 2372234240,2372235263,CO 2372238730,2372238730,US 2372239360,2372240383,SK 2372240384,2372240511,NL 2372240512,2372240639,LU 2372240640,2372240895,NL 2372240896,2372241151,CH 2372241152,2372241407,PK 2372241408,2372272127,RU 2372272128,2372337663,US 2372337664,2372403199,ID 2372403200,2372468735,US 2372468736,2372472831,NL 2372472832,2372474879,PL 2372474880,2372483071,RU 2372483072,2372485119,JO 2372485120,2372487167,RU 2372487168,2372489215,FR 2372489216,2372493311,LB 2372493312,2372497407,ES 2372497408,2372499455,IE 2372499456,2372501503,NL 2372501504,2372503551,BG 2372503552,2372505599,UA 2372505600,2372507647,NL 2372507648,2372509695,IT 2372509696,2372510335,AE 2372510336,2372510336,ES 2372510337,2372510719,AE 2372510720,2372510975,AO 2372510976,2372511743,AE 2372511744,2372513791,BA 2372513792,2372534271,GB 2372534272,2372665343,US 2372665344,2372730879,IT 2372730880,2372796415,CA 2372796416,2372993023,US 2372993024,2373025791,DE 2373025792,2373026047,SG 2373026048,2373031423,DE 2373031424,2373031679,US 2373031680,2373036031,DE 2373036032,2373038079,US 2373038080,2373058559,DE 2373058560,2373124095,US 2373124096,2373189631,FR 2373189632,2373255167,US 2373255168,2373451775,CA 2373451776,2373517311,AU 2373517312,2373582847,US 2373582848,2373626879,CH 2373626880,2373627102,AU 2373627103,2373627103,CH 2373627104,2373627135,AU 2373627136,2373648383,CH 2373648384,2373910527,US 2373910528,2373911041,FI 2373911042,2373911042,US 2373911043,2373976063,FI 2373976064,2374107135,US 2374107136,2374172671,DE 2374172672,2374238207,US 2374238208,2374303743,AU 2374303744,2374369279,US 2374369280,2374500351,BE 2374500352,2374502399,LV 2374502400,2374504447,MK 2374504448,2374508543,RO 2374508544,2374512639,LT 2374512640,2374514687,SK 2374514688,2374516735,ES 2374516736,2374524927,AM 2374524928,2374525717,FR 2374525718,2374525718,BE 2374525719,2374528261,FR 2374528262,2374528262,PL 2374528263,2374529023,FR 2374529024,2374531071,RU 2374531072,2374533119,NL 2374533120,2374565887,HR 2374565888,2374631423,SE 2374631424,2374647807,HR 2374647808,2374651903,BE 2374651904,2374653951,IT 2374653952,2374655999,FR 2374656000,2374664191,UA 2374664192,2374666239,GB 2374666240,2374670335,NL 2374670336,2374672383,FR 2374672384,2374674431,PL 2374674432,2374676479,NL 2374676480,2374680575,LB 2374680576,2374684671,NL 2374684672,2374686719,GB 2374686720,2374688767,NL 2374688768,2374696959,GB 2374696960,2374959103,US 2374959104,2375024639,BE 2375024640,2375090175,DK 2375090176,2375155711,NO 2375155712,2375221247,US 2375221248,2375286783,SE 2375286784,2375352319,CH 2375352320,2376269823,US 2376269824,2376335359,GB 2376335360,2376597503,US 2376597504,2376663039,AU 2376663040,2376728575,DE 2376728576,2376761343,GB 2376761344,2376777727,CZ 2376777728,2376781823,BA 2376781824,2376782847,DZ 2376782848,2376785919,FR 2376785920,2376794111,UA 2376794112,2376859647,CH 2376859648,2376925183,FI 2376925184,2377056255,US 2377056256,2377121791,FR 2377121792,2377187327,NL 2377187328,2377252863,US 2377252864,2377318399,JP 2377318400,2377449471,US 2377449472,2377515007,FR 2377515008,2377842687,US 2377842688,2377908223,GB 2377908224,2378010111,US 2378010112,2378010367,AU 2378010368,2378022911,US 2378022912,2378023423,HK 2378023424,2378025983,US 2378025984,2378026239,NL 2378026240,2378026495,US 2378026496,2378027007,FR 2378027008,2378170367,US 2378170368,2378203135,FI 2378203136,2378203647,NO 2378203648,2378210559,FI 2378210560,2378211071,NO 2378211072,2378235903,FI 2378235904,2378301439,US 2378301440,2378366975,FR 2378366976,2378432511,US 2378432512,2378498047,TR 2378498048,2378500607,US 2378500608,2378500863,GB 2378500864,2378504191,US 2378504192,2378504447,NL 2378504448,2378694655,US 2378694656,2378760191,DE 2378760192,2378825727,AT 2378825728,2378891263,US 2378891264,2378956799,AT 2378956800,2379131391,US 2379131392,2379131647,IN 2379131648,2379218943,US 2379218944,2379284479,FI 2379284480,2380201983,US 2380201984,2380267519,KR 2380267520,2380398591,US 2380398592,2380464127,IL 2380464128,2380464895,FR 2380464896,2380465151,US 2380465152,2380529663,FR 2380529664,2380595199,GB 2380660736,2380726271,US 2380726272,2380791807,GB 2380791808,2381119487,US 2381119488,2381185023,GR 2381185024,2381381631,US 2381381632,2381447167,GB 2381447168,2381512703,US 2381512704,2381578239,AU 2381578240,2381643775,AT 2381643776,2381709311,GB 2381709312,2381905919,US 2381905920,2381971455,CH 2381971456,2382036991,IT 2382036992,2382102527,US 2382102528,2382168063,NL 2382168064,2382233599,BE 2382233600,2382299135,US 2382299136,2382331903,GR 2382331904,2382335999,FR 2382336000,2382337279,NL 2382337280,2382337535,FR 2382337536,2382340095,NL 2382340096,2382342143,CH 2382342144,2382344191,AT 2382344192,2382346239,NL 2382346240,2382348287,SE 2382348288,2382364671,SI 2382364672,2382368767,US 2382368768,2382372863,CA 2382372864,2382383209,US 2382383210,2382383210,AE 2382383211,2382401535,US 2382401536,2382405631,CA 2382405632,2382422015,US 2382422016,2382426111,JM 2382426112,2382430207,US 2382430208,2382626815,CA 2382626816,2382654207,US 2382654208,2382654463,CN 2382654464,2382657023,US 2382657024,2382657535,CN 2382657536,2382657791,US 2382657792,2382658559,CN 2382658560,2382658815,CA 2382658816,2382659071,CN 2382659072,2382676479,US 2382676480,2382676991,CA 2382676992,2382677503,US 2382677504,2382677987,CA 2382677988,2382677991,US 2382677992,2382678015,CA 2382678016,2382678527,US 2382678528,2382679039,CA 2382679040,2382680063,US 2382680064,2382684159,CA 2382684160,2382692351,US 2382692352,2383085567,CA 2383085568,2383151103,US 2383151104,2385903615,CA 2385903616,2385908735,US 2385908736,2385909759,VG 2385909760,2385915903,US 2385915904,2385919999,CA 2385920000,2385952767,US 2385952768,2385954815,BM 2385954816,2385955839,US 2385955840,2385956863,TC 2385956864,2385969151,US 2385969152,2386624511,CA 2386624512,2386690047,US 2386690048,2386988287,CA 2386988288,2386988543,CH 2386988544,2386989055,CA 2386989056,2386989311,CH 2386989312,2387003391,CA 2387003392,2387003647,CH 2387003648,2387003903,CA 2387003904,2387004159,CH 2387004160,2387344127,CA 2387344128,2387344895,US 2387344896,2387345151,CA 2387345152,2387345407,US 2387345408,2387410943,CA 2387410944,2387476479,US 2387476480,2387542015,CA 2387542016,2387607551,US 2387607552,2388328447,CA 2388328448,2388345343,US 2388345344,2388345599,LK 2388345600,2388350207,US 2388350208,2388350463,LK 2388350464,2388393983,US 2388393984,2389245951,CA 2389245952,2389311487,US 2389311488,2389639167,CA 2389639168,2389704703,US 2389704704,2390818815,CA 2390818816,2390884351,US 2390884352,2390995455,CA 2390995456,2391015423,US 2391015424,2391277567,CA 2391277568,2391343103,US 2391343104,2391998463,CA 2391998464,2392002303,US 2392002304,2392010751,CA 2392010752,2392011263,US 2392011264,2392011519,CA 2392011520,2392011775,US 2392011776,2392012543,CA 2392012544,2392014079,US 2392014080,2392014335,CA 2392015360,2392015871,CA 2392015872,2392017407,US 2392017408,2392017663,CA 2392017664,2392018431,US 2392018432,2392018687,CA 2392018688,2392018943,US 2392018944,2392019199,CA 2392019200,2392019455,US 2392019456,2392019967,CA 2392019968,2392021759,US 2392021760,2392022015,NL 2392022016,2392022271,FR 2392022272,2392022527,DE 2392022528,2392022783,GB 2392022784,2392023039,US 2392023040,2392024319,CA 2392024320,2392024575,US 2392024576,2392025087,VI 2392025088,2392063999,US 2392064000,2392096767,CA 2392096768,2392129535,US 2392129536,2394947583,CA 2394947584,2395013119,US 2395013120,2395209727,CA 2395209728,2395340799,US 2395340800,2395814911,CA 2395814912,2395815167,US 2395815168,2395841023,CA 2395841024,2395841535,GB 2395841536,2397700095,CA 2397700096,2397765631,US 2397765632,2398748671,CA 2398748672,2398945279,US 2398945280,2399010815,CA 2399010816,2399109119,US 2399109120,2399141887,PR 2399141888,2399148031,BR 2399148032,2399149055,DO 2399149056,2399150079,BR 2399150080,2399151103,BQ 2399151104,2399158271,BR 2399158272,2399159295,AR 2399159296,2399161343,BR 2399161344,2399163391,AR 2399163392,2399165439,BR 2399165440,2399166463,CO 2399166464,2399167487,VE 2399167488,2399167743,AR 2399167744,2399167999,BO 2399168000,2399168511,CO 2399168512,2399169535,SV 2399169536,2399170559,CO 2399170560,2399182847,BR 2399182848,2399183871,CR 2399183872,2399184895,BR 2399184896,2399185919,AR 2399185920,2399186943,TT 2399186944,2399202303,BR 2399202304,2399203327,HN 2399203328,2399204351,CL 2399204352,2399205375,AR 2399205376,2399206399,PE 2399206400,2399207423,BR 2399207424,2401828863,US 2401828864,2401894399,GB 2401894400,2402222079,US 2402222080,2402287615,IE 2402287616,2402418687,US 2402418688,2402484223,AT 2402484224,2402549759,FI 2402549760,2402680831,GB 2402680832,2402746367,BR 2402746368,2402945023,US 2402945024,2402945279,GB 2402945280,2403401727,US 2403401728,2403467263,GB 2403467264,2404974591,US 2404974592,2405040127,HK 2405040128,2405105663,JP 2405105664,2405171199,US 2405171200,2405236735,AU 2405236736,2405302271,DE 2405302272,2405367807,JP 2405367808,2405433343,US 2405433344,2405498879,NZ 2405498880,2405564415,NO 2405564416,2405629951,US 2405629952,2405695487,CH 2405695488,2406088703,US 2406088704,2406285311,BR 2406285312,2406809599,US 2406809600,2406875135,GB 2406875136,2406940671,SE 2406940672,2407006207,AU 2407006208,2407071743,US 2407071744,2407137279,NL 2407137280,2407333887,US 2407333888,2407399423,JP 2407399424,2407464959,FR 2407464960,2407530495,US 2407530496,2407596031,ZA 2407596032,2407661567,BE 2407661568,2407727103,AT 2407727104,2408054783,US 2408054784,2408120319,JP 2408120320,2408125439,BR 2408125440,2408126463,AR 2408126464,2408127487,NI 2408127488,2408140799,BR 2408140800,2408141823,DO 2408141824,2408144895,BR 2408144896,2408145919,CO 2408145920,2408147967,BR 2408147968,2408148991,MX 2408148992,2408150015,BO 2408150016,2408157183,BR 2408157184,2408158207,PE 2408158208,2408159231,CR 2408159232,2408162303,BR 2408162304,2408164351,HN 2408164352,2408169471,BR 2408169472,2408170495,TT 2408170496,2408178687,BR 2408178688,2408179711,HN 2408179712,2408182783,BR 2408182784,2408183807,AR 2408183808,2408185855,BR 2408185856,2409562111,US 2409562112,2409627647,GB 2409627648,2409693183,ZA 2409693184,2409758719,AT 2409758720,2409824255,US 2409824256,2409955327,DE 2409955328,2410086399,US 2410086400,2410151935,GB 2410151936,2410217471,US 2410217472,2410283007,BE 2410283008,2410348543,US 2410414080,2410545151,US 2410545152,2410610687,AU 2410610688,2410676223,US 2410676224,2410938367,NL 2410938368,2411003903,CH 2411003904,2411462655,US 2411462656,2411593727,AU 2411593728,2411749375,US 2411749376,2411753471,MY 2411753472,2411757567,SG 2411757568,2411986943,US 2411986944,2412052479,FR 2412052480,2412314623,US 2412380160,2412383231,BR 2412383232,2412384255,CL 2412384256,2412387327,AR 2412387328,2412388351,BR 2412388352,2412389375,AR 2412389376,2412399615,BR 2412399616,2412400639,MX 2412400640,2412402687,BR 2412402688,2412403711,AR 2412403712,2412404735,BR 2412404736,2412405759,AR 2412405760,2412414975,BR 2412414976,2412415999,AR 2412416000,2412417023,CL 2412417024,2412418047,AR 2412418048,2412419071,BR 2412419072,2412420095,PA 2412420096,2412421119,MX 2412421120,2412422143,CR 2412422144,2412429311,BR 2412429312,2412430335,AR 2412430336,2412431359,HN 2412431360,2412432383,AR 2412432384,2412433407,MX 2412433408,2412434431,PY 2412434432,2412444671,BR 2412444672,2412445695,NI 2412445696,2412576767,US 2412576768,2412642303,AT 2412642304,2412773375,US 2412773376,2412777471,BR 2412777472,2412778495,HN 2412778496,2412782591,BR 2412782592,2412783615,AR 2412783616,2412784639,BR 2412784640,2412786687,AR 2412786688,2412787711,CL 2412787712,2412788735,GT 2412788736,2412789759,BR 2412789760,2412790783,CO 2412790784,2412807167,BR 2412807168,2412808191,PE 2412809216,2412815359,BR 2412815360,2412816383,DO 2412816384,2412817407,CR 2412817408,2412819455,BR 2412819456,2412820479,GT 2412820480,2412838911,BR 2412838912,2412904447,US 2412904448,2412969983,GB 2412969984,2413297663,US 2413297664,2413363199,AU 2413363200,2413428735,SE 2413428736,2413494271,AU 2413494272,2413625343,US 2413625344,2413690879,JP 2413690880,2413758463,US 2413758464,2413758975,GB 2413758976,2413821951,US 2413821952,2413887487,AT 2413887488,2413953023,IT 2413953024,2414411775,US 2414411776,2414477311,GR 2414477312,2414542847,GB 2414542848,2414673919,US 2414673920,2414739455,SE 2414739456,2414804991,AU 2414804992,2414870527,IE 2414870528,2415198207,US 2415198208,2415263743,AT 2415263744,2415394815,US 2415394816,2415460351,KR 2415460352,2415656959,US 2415656960,2415722495,GB 2415722496,2415788031,JP 2415788032,2415853567,US 2415853568,2415859711,BR 2415859712,2415860735,CL 2415860736,2415861759,CR 2415861760,2415862783,HN 2415864832,2415867903,BR 2415867904,2415868927,MX 2415868928,2415875071,BR 2415875072,2415876095,VE 2415876096,2415880191,BR 2415880192,2415881215,CL 2415881216,2415888383,BR 2415888384,2415889407,AR 2415890432,2415892479,BR 2415892480,2415893503,AR 2415893504,2415894527,PA 2415894528,2415898623,BR 2415898624,2415899647,CL 2415899648,2415917055,BR 2415917056,2415918079,EC 2415918080,2415919103,BR 2415919104,2415984639,CN 2416050176,2416058367,US 2416058368,2416084991,NL 2416084992,2416085247,AU 2416085248,2416085503,NL 2416085504,2416085759,US 2416085760,2416086015,NL 2416086016,2416086271,SG 2416086272,2416115711,NL 2416115712,2416181247,US 2416181248,2416246783,FI 2416246784,2416312319,US 2416312320,2416377855,AU 2416377856,2416443391,CN 2416443392,2416705535,US 2416705536,2416771071,CN 2416771072,2416916479,US 2416916480,2416916735,AU 2416916736,2416967679,US 2416967680,2417033215,IN 2417033216,2417229823,US 2417229824,2417295359,ES 2417295360,2417360895,PT 2417360896,2417491967,CR 2417491968,2417557503,GB 2417557504,2417688575,US 2417688576,2417754111,SE 2417754112,2418016255,US 2418016256,2418081791,GB 2418081792,2418278655,US 2418278656,2418278911,ZA 2418278912,2418279487,US 2418279488,2418279491,ES 2418279492,2418281151,US 2418281152,2418281215,IN 2418281216,2418281983,US 2418281984,2418282239,ES 2418282240,2418284543,US 2418284544,2418285055,CA 2418285056,2418285567,MX 2418285568,2418286335,US 2418286336,2418286591,MX 2418286592,2418287103,CA 2418287104,2418287295,US 2418287296,2418287359,GB 2418287360,2418291199,US 2418291200,2418292223,AR 2418292224,2418292735,PH 2418292736,2418294015,US 2418294016,2418294783,AR 2418294784,2418294911,US 2418294912,2418295039,GB 2418295040,2418295807,US 2418295808,2418295935,GB 2418295936,2418295947,US 2418295948,2418295951,GB 2418295952,2418296063,US 2418296064,2418296319,DE 2418296320,2418297343,IN 2418297344,2418297855,US 2418297856,2418298367,BR 2418298368,2418298623,ZA 2418298624,2418301439,US 2418301440,2418301695,PH 2418301696,2418302463,US 2418302464,2418302719,PH 2418302720,2418302975,US 2418302976,2418303231,IN 2418303232,2418303487,ZA 2418303488,2418303871,US 2418303872,2418303879,GB 2418303880,2418304511,US 2418304512,2418304671,GB 2418304672,2418304767,US 2418304768,2418304895,DE 2418304896,2418305151,US 2418305152,2418305279,IN 2418305280,2418305535,ES 2418305536,2418306303,US 2418306304,2418306559,GB 2418306560,2418307327,MU 2418307328,2418307455,US 2418307456,2418307583,PH 2418307584,2418308095,LV 2418308096,2418308351,PH 2418308352,2418308383,GB 2418308384,2418308607,US 2418308608,2418309119,RO 2418309120,2418309631,PL 2418309632,2418310143,US 2418310144,2418310655,PH 2418310656,2418311167,US 2418311168,2418311679,IN 2418311680,2418312703,CZ 2418312704,2418313215,IN 2418313216,2418314239,PH 2418314240,2418314751,IN 2418314752,2418315007,PH 2418315008,2418315135,IN 2418315136,2418315263,US 2418315264,2418315775,IN 2418315776,2418316287,CN 2418316288,2418316799,IN 2418316800,2418317055,AU 2418317056,2418317311,JP 2418317312,2418317823,PH 2418317824,2418318079,US 2418318080,2418318335,IN 2418318336,2418319871,PH 2418319872,2418320127,KR 2418320128,2418320191,US 2418320192,2418320255,AU 2418320256,2418320319,IN 2418320320,2418320383,PH 2418320384,2418321407,US 2418321408,2418322431,PH 2418322432,2418322687,US 2418322688,2418322847,IN 2418322848,2418323455,US 2418323456,2418323711,IN 2418323712,2418323967,US 2418323968,2418324479,IN 2418324480,2418324735,PH 2418324736,2418324799,IN 2418324800,2418324991,US 2418324992,2418326015,IN 2418326016,2418326527,PH 2418326528,2418327039,IN 2418327040,2418327423,US 2418327424,2418327487,PH 2418327488,2418328063,US 2418328064,2418328831,SK 2418328832,2418329599,US 2418329600,2418330367,SK 2418330368,2418331135,US 2418331136,2418331647,IN 2418331648,2418332159,US 2418332160,2418332671,IN 2418332672,2418333183,PH 2418333184,2418334207,IN 2418334208,2418334463,CN 2418334464,2418334719,PH 2418334720,2418339071,IN 2418339072,2418339839,MU 2418339840,2418340351,CN 2418340352,2418340863,US 2418340864,2418341375,IN 2418341376,2418341887,PH 2418341888,2418342911,IN 2418342912,2418343423,PH 2418343424,2418343935,IN 2418343936,2418606079,US 2418606080,2418671615,DE 2418671616,2418737151,US 2418737152,2418802687,NL 2418868224,2418998271,US 2418998272,2418998527,GB 2418998528,2419064831,US 2419130368,2419326975,US 2419326976,2419392511,CN 2419392512,2419458047,AU 2419458048,2419523583,NL 2419523584,2419589119,AU 2419589120,2419654655,FR 2419654656,2419720191,SE 2419720192,2420047871,US 2420047872,2420113407,SE 2420113408,2420178943,PT 2420178944,2420244479,AT 2420244480,2420310015,NZ 2420310016,2420899839,US 2420899840,2420932299,DE 2420932300,2420932300,NL 2420932301,2420965375,DE 2420965376,2421096447,US 2421161984,2421293055,US 2421293056,2421358591,GB 2421358592,2421424127,US 2421424128,2421489663,NO 2421489664,2421553919,CH 2421553920,2421554175,DE 2421554176,2421555199,CH 2421555200,2421620735,US 2421620736,2421686271,GB 2421686272,2422145023,US 2422145024,2422154239,NL 2422154240,2422155263,US 2422155264,2422161407,NL 2422161408,2422163455,GB 2422163456,2422165503,US 2422165504,2422167551,HK 2422167552,2422210559,NL 2422210560,2422276095,US 2422276096,2422341631,AU 2422341632,2422407167,GB 2422407168,2423128063,US 2423128064,2423193599,AU 2423193600,2423717887,US 2423717888,2423783423,NL 2423783424,2423848959,FJ 2423848960,2423914495,US 2423914496,2423980031,TR 2423980032,2424045567,CN 2424045568,2424111103,GB 2424111104,2424242175,US 2424242176,2424307711,NO 2424307712,2424438783,US 2424438784,2424471551,AU 2424471552,2424475647,US 2424475648,2425159679,AU 2425159680,2425421823,US 2425421824,2425487359,DE 2425487360,2426667007,US 2426667008,2426732543,NO 2426732544,2426798079,FR 2426798080,2426942463,US 2426942464,2426943487,CA 2426943488,2427224063,US 2427224064,2427256831,CA 2427256832,2427322367,GB 2427322368,2427453439,US 2427453440,2427536895,NO 2427536896,2427537151,US 2427537152,2427544319,NO 2427544320,2427544575,MY 2427544576,2427584511,NO 2427584512,2427650047,GB 2427650048,2427846655,NO 2427846656,2428567551,US 2428567552,2428633087,NO 2428633088,2428698623,CA 2428698624,2428960767,US 2428960768,2429026303,MY 2429026304,2429091839,CH 2429091840,2429288447,US 2429288448,2429353983,FR 2429353984,2429419519,AU 2429419520,2429485055,RU 2429485056,2429616127,US 2429616128,2429643519,NL 2429643520,2429643775,RU 2429643776,2429681663,NL 2429681664,2429796607,US 2429796608,2429797375,GB 2429797376,2429878271,US 2429878272,2429943807,JP 2429943808,2430009343,HK 2430009344,2430205951,US 2430271488,2431846143,US 2431846144,2431846399,GB 2431846400,2432172031,US 2432172032,2432237567,BE 2432237568,2432616447,US 2432616448,2432617471,NL 2432617472,2432630783,US 2432630784,2432696319,CN 2432696320,2433247231,NL 2433247232,2433247487,GB 2433247488,2433810431,NL 2433810432,2433875967,GB 2433875968,2435055615,NL 2435055616,2435071743,GB 2435071744,2435071999,NL 2435072000,2435121151,GB 2435121152,2436300799,NL 2436300800,2436366335,GB 2436366336,2436759551,NL 2436759552,2436767743,GB 2436767744,2436767999,NL 2436768000,2436775935,GB 2436775936,2436784127,DE 2436784128,2436825087,GB 2436825088,2441150463,NL 2441150464,2441215999,BE 2441216000,2446983167,NL 2447048704,2447376383,NL 2447376384,2447441919,GB 2447441920,2447507455,DE 2447507456,2447572991,FR 2447572992,2447638527,GB 2447638528,2447704063,DE 2447704064,2447769599,GB 2447769600,2447835135,DE 2447835136,2447900671,FR 2447900672,2447966207,CH 2447966208,2448031743,GB 2448031744,2448097279,CH 2448097280,2448162815,SE 2448162816,2448183295,HU 2448183296,2448183551,BG 2448183552,2448228351,HU 2448228352,2448293887,PL 2448293888,2448359423,FR 2448359424,2448424959,GB 2448424960,2448490495,FR 2448490496,2448556031,AT 2448556032,2448621567,FR 2448621568,2448687103,DE 2448687104,2448752639,AT 2448752640,2448818175,CH 2448818176,2448850943,GB 2448850944,2448851967,US 2448851968,2448883711,GB 2448883712,2448949247,FI 2448949248,2449014783,FR 2449014784,2449045503,RU 2449045504,2449080319,KZ 2449080320,2449145855,CH 2449145856,2449211391,SE 2449211392,2449276927,CH 2449276928,2449407999,DE 2449408000,2449420287,RU 2449420288,2449422335,DE 2449422336,2449424383,DK 2449424384,2449440767,OM 2449440768,2449442815,NL 2449442816,2449444863,RU 2449444864,2449448959,SK 2449448960,2449457151,KZ 2449457152,2449465343,BG 2449465344,2449467391,GB 2449467392,2449469439,RU 2449469440,2449471487,GB 2449471488,2449473535,RU 2449473536,2449477631,DE 2449477632,2449479679,AL 2449479680,2449481727,FR 2449481728,2449485567,DE 2449485568,2449485823,PL 2449485824,2449487871,IE 2449487872,2449488383,GB 2449488384,2449489919,RO 2449489920,2449490943,FR 2449490944,2449491199,DE 2449491200,2449491967,FR 2449491968,2449494015,NL 2449494016,2449496063,UA 2449496064,2449498111,FR 2449498112,2449506303,DE 2449506304,2449534975,RO 2449534976,2449539071,DE 2449539072,2449604607,US 2449604608,2449670143,NO 2449670144,2449735679,LU 2449735680,2449801215,CH 2449801216,2450194431,US 2450194432,2450259967,AU 2450259968,2450718719,US 2450718720,2450784255,FR 2450784256,2450849791,US 2450849792,2450915327,SE 2450915328,2451026431,US 2451026432,2451026687,AU 2451026688,2451042559,US 2451042560,2451043071,ZA 2451043072,2452619263,US 2452619264,2452684799,IT 2452684800,2452750335,US 2452750336,2452815871,NL 2452815872,2452881407,JP 2452881408,2452946943,DE 2452946944,2453143551,US 2453143552,2453209087,JP 2453209088,2453274623,US 2453340160,2453405695,NO 2453405696,2453471231,DE 2453471232,2453536767,US 2453602304,2453667839,US 2453667840,2453733375,ZA 2453733376,2453798911,US 2453798912,2453800959,GB 2453800960,2453803007,RU 2453803008,2453805055,KZ 2453805056,2453807103,FI 2453807104,2453815295,GB 2453815296,2453831679,BG 2453831680,2453833727,IQ 2453833728,2453835775,ES 2453835776,2453837823,FR 2453837824,2453838079,LU 2453838336,2453838591,LU 2453838592,2453838847,AT 2453838848,2453839359,SE 2453839360,2453839871,LU 2453839872,2453852159,RU 2453852160,2453856255,RO 2453856256,2453858303,DE 2453858304,2453860351,SE 2453860352,2453864447,ES 2453864448,2453929983,CH 2453929984,2454061055,US 2454061056,2454126591,GB 2454126592,2454192127,US 2454192128,2454257663,NO 2454257664,2454388735,US 2454388736,2454454271,SE 2454454272,2454519807,US 2454519808,2454585343,GB 2454585344,2454716415,US 2454716416,2454781951,GB 2454781952,2454847487,FI 2454847488,2454851583,US 2454851584,2454851839,DK 2454851840,2454852863,US 2454852864,2454853119,BE 2454853120,2454853375,DK 2454853376,2454887423,US 2454887424,2454887679,DK 2454887680,2454905919,US 2454905920,2454905951,AR 2454905952,2454907903,US 2454907904,2454908159,VE 2454908160,2454913023,US 2454913024,2454978559,CL 2454978560,2455175167,US 2455175168,2455240703,GB 2455240704,2455244799,US 2455244800,2455245567,AU 2455245568,2455245823,SG 2455245824,2455246847,AU 2455246848,2455247871,IN 2455247872,2455248127,AU 2455248128,2455248895,US 2455248896,2455257087,TH 2455257088,2455261183,PH 2455261184,2455262207,MY 2455262208,2455263231,KR 2455263232,2455265279,PH 2455265280,2455273471,US 2455273472,2455275519,AU 2455275520,2455279615,US 2455279616,2455280127,MO 2455280128,2455280383,MY 2455280384,2455281663,MO 2455281664,2455285759,IN 2455285760,2455291903,US 2455291904,2455293951,KH 2455293952,2455371775,US 2455371776,2455437311,GB 2455437312,2455830527,US 2455830528,2455896063,GB 2455896064,2455961599,US 2455961600,2456027135,JP 2456027136,2456092671,IT 2456092672,2456158207,GB 2456158208,2456223743,CZ 2456223744,2456289279,BE 2456289280,2456354815,NL 2456354816,2456420351,GB 2456485888,2456551423,DE 2456551424,2456602623,AT 2456602624,2456602879,DE 2456602880,2456616959,AT 2456616960,2456682495,CH 2456682496,2456748031,HU 2456748032,2456813567,US 2456813568,2456846335,AT 2456846336,2456846591,FR 2456846592,2456846847,CZ 2456846848,2456879103,AT 2456879104,2457075711,US 2457075712,2457141247,AU 2457206784,2457272319,AU 2457272320,2457337855,FI 2457337856,2457339903,RU 2457339904,2457340927,BA 2457340928,2457343999,RU 2457344000,2457346047,UA 2457346048,2457360383,RU 2457360384,2457360895,CZ 2457360896,2457361151,RU 2457361152,2457361407,CZ 2457361408,2457362431,RU 2457362432,2457364479,GB 2457364480,2457365503,RU 2457365504,2457366271,CZ 2457366272,2457366527,RU 2457366528,2457367551,GB 2457367552,2457372671,CZ 2457372672,2457376767,RU 2457376768,2457378815,DE 2457378816,2457379839,NL 2457379840,2457393151,RU 2457393152,2457397247,CZ 2457397248,2457403391,RU 2457403392,2457520895,US 2457520896,2457521151,BE 2457521152,2457599999,US 2457600000,2457665535,GR 2457665536,2458058751,US 2458058752,2458124287,CA 2458124288,2458189823,US 2458189824,2458255359,IT 2458255360,2458320895,BR 2458320896,2458386431,US 2458386432,2458451967,CH 2458451968,2458648575,US 2458648576,2458714111,DE 2458714112,2458779647,ZA 2458779648,2458910719,US 2458976256,2459631615,US 2459631616,2459697151,CL 2459697152,2459828223,US 2459828224,2459860991,RU 2459860992,2459893759,ES 2459893760,2459959295,CH 2459959296,2460024831,JP 2460024832,2460090367,FI 2460090368,2460152319,GB 2460152320,2460152575,FR 2460152576,2460155903,GB 2460155904,2460221439,US 2460221440,2460286975,BR 2460286976,2460549119,US 2460549120,2460614655,GB 2460614656,2460680191,US 2460680192,2460745727,NZ 2460745728,2460811263,NO 2460811264,2460876799,SE 2460876800,2460920319,US 2460920320,2460920575,GB 2460920576,2460942335,US 2460942336,2461007871,BE 2461007872,2461138943,GB 2461138944,2461204479,AU 2461204480,2461270015,GB 2461270016,2461401087,US 2461401088,2461466623,ZA 2461466624,2461597695,US 2461597696,2461599743,CH 2461599744,2461601791,SE 2461601792,2461605887,GB 2461605888,2461607935,LB 2461607936,2461609983,FR 2461609984,2461611007,BE 2461611008,2461612031,NL 2461612032,2461613567,IL 2461613568,2461613823,PS 2461613824,2461614079,IL 2461614080,2461630463,TR 2461630464,2461646847,NL 2461646848,2461648895,RU 2461648896,2461649023,BY 2461649024,2461649919,RU 2461649920,2461650047,US 2461650048,2461650175,RS 2461650176,2461650303,PT 2461650304,2461650431,TW 2461650432,2461650559,MA 2461650560,2461650687,NZ 2461650688,2461659391,RU 2461659392,2461659647,UA 2461659648,2461662463,RU 2461662464,2461662719,NL 2461662720,2461663231,RU 2461663232,2461794303,US 2461794304,2461859839,GB 2461859840,2461990911,US 2461990912,2462056447,GB 2462056448,2462121983,NO 2462121984,2462187519,PT 2462187520,2462253055,GB 2462253056,2462326783,AU 2462384128,2462449663,US 2462449664,2462526602,GB 2462526603,2462526603,US 2462526604,2462646271,GB 2462646272,2463236095,US 2463236096,2463301631,AT 2463301632,2463367167,FI 2463367168,2463432703,SI 2463432704,2463498239,NO 2463498240,2463629311,US 2463629312,2463694847,CH 2463694848,2463825919,US 2463825920,2463891455,ES 2463891456,2463911935,LU 2463911936,2463916031,FR 2463916032,2463956991,LU 2463956992,2464022527,AU 2464022528,2464153599,US 2464153600,2464219135,NO 2464219136,2464284671,US 2464284672,2464350207,VI 2464350208,2464415743,GB 2464415744,2464481279,CH 2464481280,2464546815,US 2464546816,2464743423,ZA 2464743424,2464808959,US 2464808960,2464874495,DE 2464874496,2465660927,US 2465660928,2465662975,RU 2465662976,2465665023,CH 2465665024,2465667071,IT 2465667072,2465669119,SI 2465669120,2465671167,RU 2465671168,2465673215,IE 2465673216,2465677311,GB 2465677312,2465679359,IT 2465679360,2465681407,NL 2465681408,2465683455,SE 2465683456,2465685503,FR 2465685504,2465690367,DE 2465690368,2465693695,IT 2465693696,2465726463,NO 2465726464,2465791999,CH 2465792000,2465857535,FR 2465857536,2465923071,US 2465923072,2465988607,SA 2465988608,2466054143,US 2466054144,2466119679,SE 2466119680,2466185215,DE 2466185216,2466189311,GB 2466189312,2466191359,ES 2466191360,2466193407,CZ 2466193408,2466199551,NL 2466199552,2466201599,AT 2466201600,2466209791,MK 2466209792,2466211839,ES 2466211840,2466213887,GB 2466213888,2466215935,CH 2466215936,2466216703,US 2466216704,2466216959,DE 2466216960,2466217727,SG 2466217728,2466217983,DE 2466217984,2466226175,BA 2466226176,2466228223,IT 2466228224,2466230271,FR 2466230272,2466232319,EE 2466232320,2466234367,ES 2466234368,2466242559,RU 2466242560,2466250751,GE 2466250752,2466318335,US 2466318336,2466318591,SG 2466318592,2466319103,US 2466319104,2466319359,AU 2466319360,2466323455,US 2466323456,2466323711,SG 2466323712,2466326015,US 2466326016,2466326271,SG 2466326272,2466336767,US 2466336768,2466337023,SG 2466337024,2466643967,US 2466643968,2466709503,KR 2466709504,2466775039,HU 2466775040,2466840575,HK 2466840576,2466906111,US 2466906112,2466971647,AU 2466971648,2467037183,US 2467037184,2467102719,NL 2467102720,2467233791,SE 2467233792,2468020223,US 2468020224,2468085759,GR 2468085760,2468151295,US 2468151296,2468216831,DK 2468216832,2468282367,KZ 2468282368,2468347903,US 2468347904,2468478975,CZ 2468478976,2468937727,US 2468937728,2469003263,AU 2469003264,2469068799,US 2469068800,2469134335,KR 2469134336,2469199871,SE 2469199872,2469265407,RU 2469265408,2469396479,KR 2469396480,2469658623,US 2469658624,2469724159,GR 2469724160,2469789695,US 2469789696,2469855231,DE 2469855232,2470182911,US 2470182912,2470248447,CH 2470248448,2470510591,US 2470510592,2470576127,BR 2470576128,2470641663,AU 2470641664,2470707199,LU 2470707200,2470772735,GB 2470772736,2470838271,AU 2470838272,2471165951,US 2471165952,2471198719,CH 2471198720,2471219199,US 2471219200,2471231487,CH 2471231488,2471297023,AU 2471297024,2471362559,GB 2471428096,2471690239,US 2471690240,2471821311,ES 2471821312,2471886847,US 2471886848,2472083455,CH 2472083456,2472148991,GB 2472148992,2472214527,US 2472214528,2472280063,RS 2472280064,2472345599,US 2472345600,2472411135,BE 2472411136,2472476671,FR 2472476672,2472542207,GR 2472542208,2472607743,ES 2472607744,2472673279,US 2472673280,2472869887,FR 2472869888,2472935423,US 2472935424,2473000959,GR 2473000960,2473332735,US 2473332736,2473333247,AE 2473333248,2473336831,US 2473336832,2473338879,AU 2473338880,2473342975,US 2473342976,2473345023,GB 2473345024,2473345535,US 2473345536,2473346047,AE 2473346048,2473348095,US 2473348096,2473348607,SA 2473348608,2473379839,US 2473379840,2473381887,AU 2473381888,2473394175,US 2473394176,2473459711,AU 2473459712,2473525247,ZA 2473525248,2473656319,NO 2473656320,2473721855,US 2473721856,2473785708,GB 2473785709,2473785709,HK 2473785710,2473787391,GB 2473787392,2474049535,US 2474049536,2474115071,GB 2474115072,2474246143,US 2474246144,2474377215,IT 2474377216,2474442751,US 2474442752,2474508287,AT 2474508288,2474573823,US 2474573824,2474639359,FR 2474639360,2474901503,US 2474901504,2474967039,AU 2474967040,2475556863,US 2475556864,2475622399,DE 2475622400,2475687935,GB 2475687936,2475884543,US 2475884544,2476277759,GB 2476277760,2476474367,US 2476474368,2476539903,ES 2476539904,2476605439,JP 2476605440,2476670975,NZ 2476670976,2476802047,US 2476802048,2476867583,IL 2476867584,2476998655,IT 2476998656,2477195263,US 2477195264,2477260799,CH 2477260800,2477457407,US 2477457408,2477522943,FR 2477522944,2477588479,DE 2477588480,2477654015,FR 2477654016,2477719551,US 2477719552,2477785087,SK 2477785088,2477850623,JP 2477850624,2478047231,US 2478047232,2478112767,SE 2478112768,2478178303,NL 2478178304,2478309375,US 2478309376,2478374911,GB 2478374912,2478440447,US 2478440448,2478505983,SE 2478505984,2478571519,US 2478571520,2478702591,GB 2478702592,2478899199,US 2478899200,2478964735,GB 2478964736,2479030271,CA 2479030272,2479095807,US 2479095808,2479161343,FR 2479161344,2479226879,GB 2479226880,2479357951,US 2479357952,2479423487,AU 2479423488,2479489023,GB 2479489024,2479620095,US 2479620096,2479685631,DE 2479685632,2479947775,US 2479947776,2480013311,AU 2480013312,2480078847,FR 2480078848,2480144383,AU 2480209920,2480275455,SK 2480275456,2480340991,SE 2480340992,2480406527,FR 2480406528,2480668671,US 2480668672,2480734207,SE 2480734208,2481192959,US 2481192960,2481455103,CZ 2481455104,2481520639,SK 2481520640,2481848319,IL 2481848320,2482175999,US 2482176000,2482208767,FI 2482208768,2482216959,US 2482216960,2482225151,FI 2482225152,2482233343,SG 2482233344,2482241535,CN 2482241536,2482634751,US 2482634752,2482700287,FR 2482700288,2482765823,CZ 2482765824,2482831359,IE 2482831360,2483027967,US 2483027968,2483093503,DO 2483093504,2483159039,US 2483159040,2483224575,SE 2483224576,2483290111,ES 2483290112,2483421183,US 2483421184,2483486719,HU 2483486720,2486566911,US 2486566912,2486632447,CH 2486632448,2486697983,US 2486697984,2486763519,DE 2486763520,2486960127,US 2486960128,2487025663,FR 2487025664,2487369727,US 2487369728,2487386111,PF 2487386112,2487484415,US 2487484416,2487549951,JP 2487549952,2488205311,US 2488205312,2488270847,GB 2488270848,2488336383,US 2488336384,2488401919,PL 2488401920,2488532991,NO 2488532992,2488795135,US 2488795136,2488860671,GB 2488860672,2489647103,US 2489647104,2489712639,DO 2489712640,2489745407,PE 2489745408,2489778175,HT 2489778176,2489843711,DO 2489843712,2490013695,US 2490013696,2490014011,GB 2490014012,2490014012,US 2490014013,2490015743,GB 2490015744,2490043391,US 2490043392,2490043647,GB 2490043648,2490236927,US 2490236928,2490302463,LU 2490302464,2490695679,US 2490695680,2490761215,CA 2490761216,2491154431,NO 2491154432,2491875327,US 2491875328,2492006399,SE 2492006400,2492071935,US 2492071936,2492137471,SE 2492137472,2492203007,US 2492203008,2492268543,NO 2492268544,2492399615,US 2492399616,2492465151,FR 2492465152,2492530687,US 2492530688,2492596223,AU 2492596224,2492727295,US 2492727296,2492792831,SE 2492792832,2492923903,US 2492923904,2492989439,OM 2492989440,2493513727,US 2493513728,2493579263,SE 2493579264,2493644799,JP 2493644800,2493756415,US 2493756416,2493757439,CA 2493757440,2494103551,US 2494103552,2494169087,FR 2494169088,2494562303,US 2494562304,2494627839,GB 2494627840,2494650623,US 2494650624,2494650879,BR 2494650880,2494677759,US 2494677760,2494678015,AU 2494678016,2494689791,US 2494689792,2494690047,IN 2494690048,2494889983,US 2494889984,2494955519,GB 2494955520,2495021055,AU 2495021056,2495152127,US 2495217664,2495283199,US 2495283200,2495348735,CH 2495348736,2495348991,US 2495348992,2495349051,DE 2495349052,2495349052,US 2495349053,2495349247,DE 2495349248,2495807487,US 2495807488,2495873023,AU 2495873024,2495938559,CH 2495938560,2496004095,GB 2496004096,2496069631,AT 2496069632,2496135167,US 2496135168,2496200703,NL 2496200704,2497682431,MX 2497682432,2497683455,EC 2497683456,2498475007,MX 2498475008,2498476031,EC 2498476032,2499110519,MX 2499110520,2499110527,NI 2499110528,2499477503,MX 2499477504,2499543039,DE 2499543040,2499674111,GB 2499674112,2499739647,US 2499739648,2499805183,DO 2499805184,2499870719,TR 2499870720,2500001791,US 2500001792,2500034559,GE 2500034560,2500038655,GB 2500038656,2500040703,IT 2500040704,2500042751,LB 2500042752,2500046847,SA 2500046848,2500047615,IT 2500047616,2500047871,GR 2500047872,2500048895,IT 2500048896,2500050943,MD 2500050944,2500067327,KZ 2500067328,2500132991,US 2500132992,2500133023,NL 2500133024,2500141055,US 2500141056,2500141311,IE 2500141312,2500141823,US 2500141824,2500142847,IE 2500142848,2500143103,US 2500143104,2500143615,IE 2500143616,2500144895,US 2500144896,2500145151,IE 2500145152,2500149503,US 2500149504,2500149759,GB 2500149760,2500150655,US 2500150656,2500150719,GB 2500150720,2500155647,US 2500155648,2500155903,GB 2500155904,2500161023,US 2500161024,2500162047,GB 2500162048,2500162559,US 2500162560,2500162815,GB 2500162816,2500166143,US 2500166144,2500166399,GB 2500166400,2500170751,US 2500170752,2500170752,FI 2500170753,2500177935,US 2500177936,2500177943,PL 2500177944,2500180735,US 2500180736,2500180991,HR 2500180992,2500188679,US 2500188680,2500188687,CH 2500188688,2500191231,US 2500191232,2500191487,FR 2500191488,2500196351,US 2500196352,2500198399,FI 2500198400,2500198911,US 2500198912,2500199167,GB 2500199168,2500199471,US 2500199472,2500199475,IE 2500199476,2500201535,US 2500201536,2500201543,GB 2500201544,2500202879,US 2500202880,2500203007,ES 2500203008,2500209919,US 2500209920,2500210175,GB 2500210176,2500212415,US 2500212416,2500212423,CH 2500212424,2500212991,US 2500212992,2500213247,ES 2500213248,2500221455,US 2500221456,2500221459,FR 2500221460,2500225551,US 2500225552,2500225559,ES 2500225560,2500230041,US 2500230042,2500230042,GB 2500230043,2500235775,US 2500235776,2500236031,GB 2500236032,2500236837,US 2500236838,2500236838,ES 2500236839,2500237791,US 2500237792,2500237799,IT 2500237800,2500238047,US 2500238048,2500238055,FR 2500238056,2500239615,US 2500239616,2500239871,FR 2500239872,2500240383,US 2500240384,2500240639,FR 2500240640,2500240895,US 2500240896,2500241407,FR 2500241408,2500246271,US 2500246272,2500246527,GB 2500246528,2500247551,US 2500247552,2500248575,ES 2500248576,2500249599,US 2500249600,2500249855,ES 2500249856,2500263935,US 2500263936,2500264191,FR 2500264192,2500272127,US 2500272128,2500272383,GB 2500272384,2500273151,US 2500273152,2500273407,GB 2500273408,2500275199,US 2500275200,2500275455,GB 2500275456,2500276223,US 2500276224,2500276735,GB 2500276736,2500276991,US 2500276992,2500277247,GB 2500277248,2500278751,US 2500278752,2500278783,GB 2500278784,2500288511,US 2500288512,2500288767,FR 2500288768,2500289023,US 2500289024,2500289279,FR 2500289280,2500290559,US 2500290560,2500290815,FR 2500290816,2500292607,US 2500292608,2500292863,DE 2500292864,2500313855,US 2500313856,2500314111,AT 2500314112,2500318207,US 2500318208,2500318463,IT 2500318464,2500319439,US 2500319440,2500319471,ES 2500319472,2500319487,US 2500319488,2500321279,ES 2500321280,2500392959,US 2500392960,2500393215,IN 2500393216,2500393983,US 2500393984,2500394239,GB 2500394240,2500532749,US 2500532750,2500532750,GR 2500532751,2500535295,US 2500535296,2500535807,IE 2500535808,2500537599,US 2500537600,2500537855,GB 2500537856,2500542751,US 2500542752,2500542755,NL 2500542756,2500551679,US 2500551680,2500551935,FR 2500551936,2500553727,US 2500553728,2500553983,GB 2500553984,2500554379,US 2500554380,2500554487,DE 2500554488,2500555263,US 2500555264,2500555519,FR 2500555520,2500558847,US 2500558848,2500559103,FR 2500559104,2500559359,US 2500559360,2500559615,FR 2500559616,2500562431,US 2500562432,2500562687,GB 2500562688,2500562719,US 2500562720,2500562727,GB 2500562728,2500562767,US 2500562768,2500562775,GB 2500562776,2500562943,US 2500562944,2500563199,ES 2500563200,2500567039,US 2500567040,2500567295,GB 2500567296,2500568679,US 2500568680,2500568683,GB 2500568684,2500591615,US 2500591616,2500595711,GB 2500595712,2500596223,US 2500596224,2500596735,CH 2500596736,2500616191,US 2500616192,2500616447,IT 2500616448,2500637727,US 2500637728,2500637759,GB 2500637760,2500638719,US 2500638720,2500639743,GB 2500639744,2500644863,US 2500644864,2500645119,FR 2500645120,2500646911,US 2500646912,2500647935,ES 2500647936,2500666463,US 2500666464,2500666471,LU 2500666472,2500681759,US 2500681760,2500681767,PL 2500681768,2500685823,US 2500685824,2500686079,FR 2500686080,2500687871,US 2500687872,2500689919,FR 2500689920,2500694527,US 2500694528,2500694783,IT 2500694784,2500719103,US 2500719104,2500721151,IE 2500721152,2500723711,US 2500723712,2500723799,GB 2500723800,2500723807,ES 2500723808,2500723967,GB 2500723968,2500728063,US 2500728064,2500728319,GB 2500728320,2500739599,US 2500739600,2500739607,DE 2500739608,2500743215,US 2500743216,2500743223,GB 2500743224,2500984831,US 2500984832,2501017599,GB 2501017600,2501574655,US 2501574656,2501640191,KZ 2501640192,2502033407,US 2502033408,2502037503,LU 2502037504,2502041599,US 2502041600,2502045695,ES 2502045696,2503016447,US 2503016448,2503147519,IL 2503147520,2503671807,US 2503671808,2503737343,NL 2503737344,2503868415,US 2503868416,2503876607,RU 2503880704,2503882751,RU 2503882752,2503884799,DE 2503884800,2503901183,SI 2503901184,2503905279,IT 2503905280,2503907327,CZ 2503907328,2503909375,FR 2503909376,2503911423,RU 2503911424,2503915519,ES 2503915520,2503917567,IT 2503917568,2503933951,BG 2503933952,2504180735,US 2504180736,2504180991,ES 2504180992,2504472831,US 2504472832,2504473599,ES 2504473600,2504474623,US 2504474624,2504482815,HR 2504482816,2504486911,ES 2504486912,2504491007,US 2504491008,2504499199,IT 2504499200,2504499455,US 2504499456,2504499711,IE 2504499712,2504917503,US 2504917504,2504917759,IL 2504917760,2504918642,US 2504918643,2504918643,IL 2504918644,2504919670,US 2504919671,2504919671,IL 2504919672,2504920831,US 2504920832,2504921087,IL 2504921088,2504923135,US 2504923136,2504923391,IL 2504923392,2504925695,US 2504925696,2504926207,IL 2504926208,2504926719,US 2504926720,2504926975,IL 2504926976,2504931583,US 2504931584,2504931839,IL 2504931840,2504936191,US 2504936192,2504936447,IL 2504936448,2504938495,US 2504938496,2504938751,IL 2504938752,2504943615,US 2504943616,2504944639,IL 2504944640,2504945151,US 2504945152,2504945407,IL 2504945408,2504945663,US 2504945664,2504946175,IL 2504946176,2504946431,US 2504946432,2504946687,IL 2504946688,2504949503,US 2504949504,2504982527,IL 2504982528,2505457663,US 2505457664,2505459711,IE 2505459712,2505469439,US 2505469440,2505469951,ES 2505469952,2505474047,NL 2505474048,2505482239,US 2505482240,2505484287,NL 2505484288,2505488383,US 2505488384,2505490431,FR 2505490432,2505502719,US 2505502720,2505503743,UA 2505503744,2505504767,US 2505504768,2505506815,FI 2505506816,2505572351,US 2505572352,2505637887,IL 2505637888,2505789439,US 2505789440,2505790463,FR 2505790464,2505791487,US 2505791488,2505792511,FR 2505792512,2505793535,US 2505793536,2505803775,ES 2505803776,2506293247,US 2506293248,2506358783,CA 2506358784,2506359039,ES 2506359040,2506360063,US 2506360064,2506360319,ES 2506360320,2506360575,US 2506360576,2506361087,ES 2506361088,2506399999,US 2506400000,2506400255,IT 2506400256,2506401791,US 2506401792,2506403839,IT 2506403840,2506489855,US 2506489856,2506498047,ES 2506498048,2506499071,FR 2506499072,2506506239,ES 2506506240,2506514431,NO 2506514432,2506522623,ES 2506522624,2506530815,GB 2506530816,2506555391,ES 2506555392,2507124735,US 2507124736,2507124991,IN 2507124992,2507145215,US 2507210752,2508062719,US 2508062720,2508064767,CH 2508064768,2508066815,ES 2508066816,2508068863,RU 2508068864,2508070911,HU 2508070912,2508075007,ES 2508075008,2508077055,CH 2508077056,2508079103,BE 2508079104,2508081151,DE 2508081152,2508081407,NL 2508081408,2508081663,IL 2508081664,2508082431,GB 2508082432,2508082943,DE 2508082944,2508083199,GB 2508083200,2508085247,IS 2508085248,2508087295,PS 2508087296,2508089343,RU 2508089344,2508091391,GB 2508091392,2508095487,AZ 2508095488,2508103679,SI 2508103680,2508105727,ES 2508105728,2508107775,RU 2508107776,2508109823,FI 2508109824,2508111871,DE 2508111872,2508128255,RU 2508128256,2508259327,US 2508259328,2508324863,MY 2508324864,2508455935,US 2508455936,2508521471,IT 2508521472,2508587007,CH 2508587008,2508652543,BE 2508652544,2508718079,AU 2508718080,2508914687,US 2508914688,2508980223,IT 2508980224,2509045759,TR 2509045760,2509242367,US 2509242368,2509307903,AU 2509307904,2509373439,US 2509373440,2509438975,NL 2509438976,2509504511,KW 2509504512,2509570047,AT 2509570048,2509832191,US 2509832192,2509897727,IE 2509897728,2509914111,US 2509914112,2509916159,RU 2509916160,2509918207,DE 2509918208,2509920255,FR 2509920256,2509922303,IT 2509922304,2509924351,AT 2509924352,2509928447,RU 2509928448,2509930495,FI 2509930496,2509934591,RU 2509934592,2509936639,DE 2509936640,2509937919,AT 2509937920,2509938175,IT 2509938176,2509938431,US 2509938432,2509938687,DE 2509938688,2509942783,GB 2509942784,2509946879,UA 2509946880,2509963263,BE 2509963264,2510028799,GB 2510028800,2510094335,PL 2510094336,2510159871,IE 2510159872,2510749695,US 2510749696,2510815231,AU 2510815232,2510946303,US 2510946304,2511011839,GB 2511011840,2511077375,AU 2511077376,2511142911,DE 2511142912,2511339519,US 2511339520,2511405055,AU 2511405056,2512715775,GB 2512715776,2512781311,FI 2512781312,2512912383,US 2512912384,2512945151,HU 2512945152,2512977919,JO 2512977920,2513043455,DE 2513043456,2513044691,FR 2513044692,2513044695,IT 2513044696,2513044703,FR 2513044704,2513044735,DE 2513044736,2513044751,FR 2513044752,2513044767,BE 2513044768,2513044799,ES 2513044800,2513044815,FR 2513044816,2513044831,IT 2513044832,2513045247,FR 2513045248,2513045255,CZ 2513045256,2513046591,FR 2513046592,2513046623,ES 2513046624,2513048047,FR 2513048048,2513048063,ES 2513048064,2513049375,FR 2513049376,2513049407,DE 2513049408,2513049551,FR 2513049552,2513049567,ES 2513049568,2513051487,FR 2513051488,2513051519,GB 2513051520,2513057045,FR 2513057046,2513057046,PT 2513057047,2513068207,FR 2513068208,2513068223,DE 2513068224,2513068287,NL 2513068288,2513070559,FR 2513070560,2513070591,ES 2513070592,2513070623,FR 2513070624,2513070655,ES 2513070656,2513073791,FR 2513073792,2513073855,IT 2513073856,2513073951,FR 2513073952,2513073983,ES 2513073984,2513076471,FR 2513076472,2513076479,ES 2513076480,2513078367,FR 2513078368,2513078371,GB 2513078372,2513079250,FR 2513079251,2513079254,ES 2513079255,2513080031,FR 2513080032,2513080063,IT 2513080064,2513081327,FR 2513081328,2513081343,ES 2513081344,2513081935,FR 2513081936,2513081939,DE 2513081940,2513082561,FR 2513082562,2513082562,GB 2513082563,2513102899,FR 2513102900,2513102903,CZ 2513102904,2513108991,FR 2513108992,2513502207,DE 2513502208,2513567743,NO 2513567744,2513600511,GR 2513600512,2513633279,NL 2513633280,2513672495,DE 2513672496,2513672496,US 2513672497,2513698815,DE 2513698816,2513764351,DK 2513764352,2514419711,DE 2514419712,2514485247,GB 2514485248,2515205119,DE 2515205120,2515206143,US 2515206144,2515599359,DE 2515599360,2515664895,GB 2515664896,2516037631,DE 2516037632,2516038143,DK 2516038144,2516058111,DE 2516058112,2516123647,CA 2516123648,2516254719,DE 2516254720,2516320255,FR 2516320256,2516451327,US 2516451328,2516516863,GB 2516516864,2516520959,RU 2516520960,2516523007,SA 2516523008,2516525055,RU 2516525056,2516525183,US 2516525184,2516525247,NL 2516525248,2516525391,US 2516525392,2516525407,NL 2516525408,2516525423,US 2516525424,2516525431,NL 2516525432,2516525439,US 2516525440,2516525447,NL 2516525448,2516525519,US 2516525520,2516525551,NL 2516525552,2516525727,US 2516525728,2516525823,NL 2516525824,2516526079,US 2516526080,2516526143,NL 2516526144,2516526335,US 2516526336,2516527103,NL 2516527104,2516529151,GB 2516529152,2516529279,CH 2516529280,2516529343,FR 2516529344,2516529375,BE 2516529376,2516531199,CH 2516531200,2516533247,GB 2516533248,2516541439,CZ 2516541440,2516545535,GB 2516545536,2516547583,RU 2516547584,2516549631,GB 2516549632,2516551679,RU 2516551680,2516553727,FR 2516553728,2516557823,AZ 2516557824,2516559871,RU 2516559872,2516561919,GB 2516561920,2516563967,LI 2516563968,2516566015,GB 2516566016,2516582399,IQ 2516582400,2516647935,CN 2516647936,2523201535,JP 2523201536,2523267071,AU 2523267072,2523463679,US 2523463680,2523529215,CA 2523529216,2523594751,NO 2523594752,2523595775,HK 2523595776,2523596799,KH 2523596800,2523597823,IN 2523597824,2523598847,TH 2523598848,2523601919,IN 2523601920,2523602943,TH 2523602944,2523603967,NZ 2523603968,2523604991,AU 2523604992,2523606015,IN 2523606016,2523607039,HK 2523607040,2523609087,BD 2523609088,2523612159,TW 2523612160,2523613183,KR 2523613184,2523614207,AU 2523614208,2523615231,MY 2523615232,2523617279,KR 2523617280,2523621375,IN 2523621376,2523621887,ID 2523621888,2523622399,IN 2523622400,2523623423,ID 2523623424,2523626495,IN 2523626496,2523628543,SG 2523628544,2523631615,ID 2523631616,2523632639,IN 2523632640,2523633663,ID 2523633664,2523634687,SG 2523634688,2523635711,MY 2523635712,2523636735,NZ 2523636736,2523638783,IN 2523638784,2523639807,NZ 2523639808,2523645951,IN 2523645952,2523646975,HK 2523646976,2523647999,NP 2523648000,2523657215,IN 2523657216,2523659263,ID 2523659264,2523660287,IN 2523660288,2524119039,US 2524119040,2524184575,CN 2524184576,2524315647,TW 2524315648,2524512255,US 2524512256,2524643327,CN 2524643328,2524963071,US 2524963072,2524963311,GB 2524963312,2524971007,US 2524971008,2525036543,ES 2525036544,2525037567,IN 2525037568,2525038591,PK 2525038592,2525039359,CN 2525039360,2525039615,HK 2525039616,2525040639,AU 2525040640,2525041151,BD 2525041152,2525041407,ID 2525041408,2525041663,IN 2525041664,2525042687,KH 2525042688,2525044735,IN 2525044736,2525045759,HK 2525045760,2525046783,TW 2525046784,2525047807,HK 2525047808,2525050879,IN 2525050880,2525051903,ID 2525051904,2525053951,IN 2525053952,2525054975,MY 2525054976,2525055999,TW 2525056000,2525058047,HK 2525058048,2525059071,AU 2525059072,2525060095,IN 2525060096,2525061119,AU 2525061120,2525062143,TW 2525062144,2525071359,IN 2525071360,2525072383,CN 2525072384,2525073407,MN 2525073408,2525075455,IN 2525075456,2525076479,CN 2525076480,2525077503,IN 2525077504,2525078527,ID 2525078528,2525083647,IN 2525083648,2525084671,MY 2525084672,2525085695,ID 2525085696,2525086719,CN 2525086720,2525089791,IN 2525089792,2525090815,HK 2525090816,2525091839,IN 2525091840,2525092863,CN 2525092864,2525093887,BD 2525093888,2525094911,KR 2525094912,2525095935,TW 2525095936,2525101055,IN 2525101056,2525102079,CN 2525102080,2525233151,US 2525233152,2525298687,SE 2525298688,2525626367,US 2525626368,2525757439,CN 2525757440,2525822975,GR 2525822976,2526085119,US 2526085120,2526216191,IT 2526216192,2526412799,US 2526412800,2526478335,KR 2526478336,2526543871,AU 2526543872,2526937087,US 2526937088,2527002623,BE 2527002624,2527133695,US 2527133696,2527461375,BR 2527461376,2527920127,US 2527920128,2527985663,AU 2527985664,2528051199,US 2528051200,2528116735,FR 2528116736,2528247807,US 2528247808,2528313343,IT 2528313344,2528575487,US 2528575488,2528641023,KR 2528641024,2528706559,US 2528706560,2529034239,VE 2529034240,2529099775,US 2529099776,2529165311,AU 2529165312,2529492991,US 2529492992,2529558527,KR 2529558528,2529886207,US 2529886208,2529951743,AU 2529951744,2530017279,GB 2530017280,2530082815,CH 2530082816,2530148351,NZ 2530148352,2530213887,AU 2530213888,2530541567,US 2530541568,2530607103,CH 2530607104,2530672639,ES 2530672640,2530803711,US 2530803712,2530869247,IT 2530869248,2531196927,US 2531196928,2531262463,CN 2531262464,2531459071,US 2531459072,2531524607,SE 2531524608,2531590143,US 2531590144,2531655679,AU 2531721216,2532048895,US 2532048896,2532114431,SE 2532114432,2532179967,GB 2532179968,2532376575,US 2532376576,2532442111,ES 2532442112,2532445183,CN 2532445184,2532449279,IN 2532449280,2532450303,CN 2532450304,2532451327,AU 2532451328,2532452351,HK 2532452352,2532453375,NZ 2532453376,2532457471,CN 2532457472,2532461567,IN 2532461568,2532463615,CN 2532463616,2532465663,IN 2532465664,2532467711,CN 2532467712,2532468735,TW 2532468736,2532469759,BD 2532469760,2532470783,TL 2532470784,2532473855,CN 2532473856,2532474879,HK 2532474880,2532475903,NZ 2532475904,2532476927,KR 2532476928,2532477951,AU 2532477952,2532478463,IN 2532478464,2532478975,AE 2532478976,2532479999,KR 2532480000,2532481023,IN 2532481024,2532486143,CN 2532486144,2532488191,IN 2532488192,2532489215,MY 2532489216,2532492287,CN 2532492288,2532495359,IN 2532495360,2532496383,HK 2532496384,2532497407,CN 2532497408,2532498431,HK 2532498432,2532499455,US 2532499456,2532500479,CN 2532500480,2532501503,HK 2532501504,2532506623,CN 2532506624,2532507647,IN 2532507648,2532573183,US 2532573184,2532638719,ES 2532638720,2533031935,US 2533031936,2533097471,BE 2533097472,2533228543,US 2533228544,2533294079,PL 2533294080,2533359615,CN 2533359616,2533367807,UA 2533367808,2533369855,BG 2533369856,2533375999,UA 2533376000,2533392383,HU 2533392384,2538602495,IT 2538602496,2538604967,FR 2538604968,2538604975,ES 2538604976,2538605271,FR 2538605272,2538605279,ES 2538605280,2538606027,FR 2538606028,2538606031,DE 2538606032,2538606039,ES 2538606040,2538606043,FR 2538606044,2538606047,DE 2538606048,2538606403,FR 2538606404,2538606407,GB 2538606408,2538619359,FR 2538619360,2538619375,ES 2538619376,2538619431,FR 2538619432,2538619435,DE 2538619436,2538619903,FR 2538619904,2538619911,ES 2538619912,2538625527,FR 2538625528,2538625535,DE 2538625536,2538626687,FR 2538626688,2538626703,ES 2538626704,2538634227,FR 2538634228,2538634231,DE 2538634232,2538644015,FR 2538644016,2538644039,ES 2538644040,2538645855,FR 2538645856,2538645871,ES 2538645872,2538646135,FR 2538646136,2538646139,DE 2538646140,2538646143,FR 2538646144,2538646155,DE 2538646156,2538646219,FR 2538646220,2538646227,DE 2538646228,2538646271,FR 2538646272,2538646399,BE 2538646400,2538646783,FR 2538646784,2538647039,CZ 2538647040,2538648015,FR 2538648016,2538648031,ES 2538648032,2538648239,FR 2538648240,2538648255,DE 2538648256,2538648591,FR 2538648592,2538648623,BE 2538648624,2538649767,FR 2538649768,2538649775,DE 2538649776,2538649991,FR 2538649992,2538649995,DE 2538649996,2538650059,FR 2538650060,2538650063,DE 2538650064,2538650103,FR 2538650104,2538650107,DE 2538650108,2538650199,FR 2538650200,2538650203,DE 2538650204,2538651135,FR 2538651136,2538651139,DE 2538651140,2538651183,FR 2538651184,2538651187,DE 2538651188,2538651255,FR 2538651256,2538651259,DE 2538651260,2538651279,FR 2538651280,2538651283,DE 2538651284,2538652727,FR 2538652728,2538652731,DE 2538652732,2538653327,FR 2538653328,2538653331,CZ 2538653332,2538653379,FR 2538653380,2538653383,DE 2538653384,2538653387,ES 2538653388,2538653927,FR 2538653928,2538653931,ES 2538653932,2538656515,FR 2538656516,2538656519,IT 2538656520,2538656959,FR 2538656960,2538656975,ES 2538656976,2538657135,FR 2538657136,2538657139,RO 2538657140,2538658347,FR 2538658348,2538658351,DE 2538658352,2538658623,FR 2538658624,2538658655,NL 2538658656,2538663299,FR 2538663300,2538663303,IT 2538663304,2538664847,FR 2538664848,2538664863,NL 2538664864,2538664895,DE 2538664896,2538668031,FR 2538668032,2539978751,IT 2539978752,2540240895,US 2540240896,2540306431,FI 2540306432,2540896255,US 2540896256,2540961791,GB 2540961792,2541223935,US 2541223936,2541289471,CH 2541289472,2541682687,US 2541682688,2541748223,PL 2541748224,2541813759,US 2541813760,2541879295,GB 2541879296,2541944831,AU 2541944832,2542075903,US 2542075904,2542141439,GB 2542141440,2542206975,US 2542206976,2542272511,TR 2542272512,2542338047,DE 2542338048,2543583231,US 2543583232,2543648767,SE 2543648768,2543714303,NO 2543779840,2544500735,US 2544500736,2544566271,GB 2544566272,2544631807,US 2544697344,2544828415,US 2544893952,2544959487,GB 2544959488,2545025023,SE 2545025024,2545090559,AU 2545090560,2545156095,US 2545156096,2545221631,GB 2545221632,2545287167,US 2545287168,2545352703,ES 2545352704,2545352959,SE 2545352960,2545418239,CH 2545418240,2545483775,NL 2545483776,2545614847,US 2545614848,2545680383,NO 2545680384,2545745919,US 2545745920,2545811455,DE 2545811456,2547187711,US 2547187712,2547318783,GB 2547318784,2547515391,US 2547523584,2547535871,GB 2547535872,2547548159,BG 2547548160,2547580927,NO 2548039680,2548563967,GB 2548563968,2548826111,IR 2548826112,2548829695,AT 2548829696,2548829951,NL 2548829952,2548830207,DE 2548830208,2548830463,US 2548830464,2548830719,DE 2548830720,2548830975,IT 2548830976,2548831231,GB 2548831232,2548831487,HK 2548831488,2548831743,FR 2548831744,2548831999,US 2548832000,2548832255,ES 2548832256,2548832511,IS 2548832512,2548832767,PL 2548832768,2548833279,CH 2548833280,2548833791,NL 2548833792,2548834303,AT 2548834304,2548842495,GB 2548842496,2548858879,RU 2548858880,2548867071,NL 2548867072,2548875263,IQ 2548875264,2548877311,KZ 2548877312,2548879359,SE 2548879360,2548883455,GB 2548883456,2548887551,SK 2548887552,2548891647,MK 2548891648,2548928511,BG 2548928512,2548932607,KZ 2548932608,2548934655,NL 2548934656,2548936703,RU 2548936704,2548936959,US 2548936960,2548940799,SE 2548940800,2548948991,ES 2548948992,2548951039,CZ 2548951040,2548953087,GB 2548953088,2548955135,RU 2548955136,2548957183,DE 2548957184,2549612543,IR 2549612544,2549614447,SE 2549614448,2549614463,NL 2549614464,2549614591,SE 2549614592,2549616639,IT 2549616640,2549618687,BE 2549618688,2549618943,US 2549618944,2549620735,DE 2549620736,2549624831,PL 2549624832,2549626879,BE 2549626880,2549628927,PL 2549628928,2549637119,RO 2549637120,2549641215,KW 2549641216,2549645311,RU 2549645312,2549678079,CH 2549678080,2549698559,GB 2549698560,2549700607,PL 2549700608,2549700863,FR 2549700864,2549701375,DE 2549701376,2549701631,SE 2549701632,2549701887,PL 2549701888,2549702143,FR 2549702144,2549702399,GB 2549702400,2549702655,FR 2549702656,2549704703,UA 2549704704,2549706751,CZ 2549706752,2549710847,NO 2549710848,2549743615,BY 2549743616,2549809151,TR 2549809152,2549874687,BG 2549874688,2549876735,GB 2549876736,2549878783,NO 2549878784,2549880831,DE 2549880832,2549881327,SE 2549881328,2549881343,NL 2549881344,2549882335,SE 2549882336,2549882351,FI 2549882352,2549882383,SE 2549882384,2549882399,FI 2549882400,2549882879,SE 2549882880,2549884927,CH 2549884928,2549891071,DE 2549891072,2549899263,RU 2549899264,2549901311,PS 2549901312,2549903359,RU 2549903360,2549905407,ES 2549905408,2549907455,GB 2549907456,2549923839,SE 2549923840,2549927935,BG 2549927936,2549929983,HR 2549929984,2549932031,DE 2549932032,2549940223,HR 2549940224,2550005759,AE 2550005760,2550136831,SA 2550136832,2550202367,DO 2550202368,2553544703,US 2553544704,2553610239,IN 2553610240,2554211327,US 2554211328,2554211383,SG 2554211384,2554211387,US 2554211388,2554211583,SG 2554211584,2554462207,US 2554462208,2554527743,HU 2554527744,2554789887,US 2554789888,2554855423,GB 2554855424,2554920959,US 2554920960,2554986495,DK 2554986496,2555052031,CL 2555052032,2555117567,US 2555117568,2555183103,AU 2555183104,2555248639,FR 2555248640,2555314175,GB 2555314176,2555445247,US 2555445248,2555510783,FR 2555510784,2555576319,US 2555576320,2555641855,AU 2555641856,2555707391,BR 2555707392,2555903999,US 2555904000,2555969535,CH 2556035072,2556100607,NO 2556100608,2556166143,AU 2556166144,2556231679,BR 2556231680,2556362751,NO 2556362752,2556428287,DK 2556428288,2556493823,CH 2556493824,2556559359,US 2556559360,2556624895,AU 2556624896,2556690431,KR 2556690432,2556755967,US 2556755968,2556780031,HK 2556780032,2556780799,SG 2556780800,2556821503,HK 2556821504,2556887039,SG 2556887040,2556985343,HK 2556985344,2557018111,CN 2557018112,2557083647,GB 2557083648,2557542399,ZA 2557542400,2557607935,US 2557607936,2557673471,GB 2557673472,2557739007,DK 2557739008,2557870079,US 2557870080,2557935615,ID 2557935616,2558658499,US 2558658500,2558658500,PR 2558658501,2558789571,US 2558789572,2558789572,PR 2558789573,2558918655,US 2558918656,2558984191,GB 2558984192,2559246335,US 2559246336,2559311871,CL 2559311872,2559508479,US 2559508480,2559574015,DE 2559574016,2559770623,US 2559770624,2559836159,AU 2559836160,2559901695,US 2559901696,2559967231,KR 2559967232,2560032767,GB 2560032768,2560098303,US 2560098304,2560163839,BE 2560229376,2560360447,US 2560360448,2560425983,UY 2560425984,2560628479,US 2560628480,2560628735,CA 2560628736,2560644607,US 2560644608,2560644863,CA 2560644864,2561015807,US 2561015808,2561146879,DO 2561146880,2561409023,AR 2561409024,2561671167,CL 2561671168,2563244031,US 2563244032,2563637247,CO 2563637248,2563768319,CU 2563768320,2564947967,US 2564947968,2565013503,SG 2565013504,2565210111,US 2565210112,2565275647,CL 2565275648,2565279743,HN 2565279744,2565281791,AR 2565281792,2565283839,CO 2565283840,2565287935,NI 2565287936,2565292031,AR 2565292032,2565308415,CL 2565308416,2565341183,CR 2565341184,2566914047,BR 2566914048,2566979583,CN 2566979584,2567045119,FI 2567045120,2567110655,US 2567110656,2567176191,CN 2567176192,2567241727,US 2567241728,2567307263,SI 2567307264,2567897087,US 2567897088,2567962623,NO 2567962624,2568028159,US 2568028160,2568093695,DE 2568093696,2568159231,US 2568159232,2568224767,PL 2568224768,2568290303,SG 2568290304,2569142271,US 2569142272,2569404415,CN 2569404416,2569797631,US 2569797632,2569863167,NO 2569863168,2569885183,US 2569885184,2569885439,CH 2569885440,2569928703,US 2569928704,2569994239,CH 2569994240,2570125311,US 2570125312,2570190847,BE 2570190848,2572681215,US 2572681216,2572746751,SE 2572746752,2572943359,US 2572943360,2572951551,DE 2572951552,2572953599,US 2572953600,2572953855,BY 2572953856,2572954111,HK 2572954112,2572954367,DE 2572954368,2572954623,HK 2572954624,2572954879,AU 2572954880,2572955135,HK 2572955136,2572955388,DE 2572955389,2572955389,HK 2572955390,2572955647,DE 2572955648,2572959743,BR 2572959744,2572960255,DE 2572960256,2572960511,SE 2572960512,2572960767,BE 2572960768,2572961023,FR 2572961024,2572961279,CH 2572961280,2572961535,IT 2572961536,2572961791,ES 2572961792,2572968447,DE 2572968448,2572968959,CZ 2572968960,2572975103,BR 2572975104,2572975615,DE 2572975616,2572975871,SE 2572975872,2572989439,NL 2572989440,2572989951,GR 2572989952,2572991487,NL 2572991488,2573000703,BR 2573000704,2573008895,FR 2573008896,2573402111,DE 2573402112,2573467647,CN 2573467648,2573533183,DE 2573533184,2573598719,CN 2573598720,2573926399,US 2573926400,2573991935,AU 2573991936,2574123007,CH 2574123008,2574188543,NO 2574188544,2574254079,NZ 2574254080,2574286847,SE 2574286848,2574287103,AU 2574287104,2574311167,SE 2574311168,2574311423,US 2574311424,2574319615,SE 2574319616,2574647295,US 2574647296,2574778367,CN 2574778368,2583582207,JP 2583582208,2583582463,HK 2583582464,2583691263,JP 2583691264,2583695359,ZA 2583695360,2583697407,BW 2583697408,2583699455,CI 2583699456,2583707647,GA 2583707648,2583724031,AO 2583724032,2583728127,UG 2583728128,2583730175,NG 2583730176,2583732223,TZ 2583732224,2583736319,ZA 2583736320,2583740415,GA 2583740416,2583756799,NA 2583756800,2584018943,US 2584018944,2584084479,CA 2584084480,2584215551,US 2584215552,2584281087,GB 2584281088,2584346623,US 2584346624,2584412159,KR 2584412160,2584477695,CA 2584477696,2584608767,US 2584608768,2584739839,CH 2584739840,2584739903,AU 2584739904,2584739935,DE 2584739936,2584740095,ZA 2584740096,2584740351,US 2584740352,2584740415,AU 2584740416,2584740479,DE 2584740480,2584740607,ZA 2584740608,2584740863,US 2584740864,2584740927,AU 2584740928,2584741119,ZA 2584741120,2584741375,US 2584741376,2584741439,AU 2584741440,2584741631,ZA 2584741632,2584741887,US 2584741888,2584741951,AU 2584741952,2584742143,ZA 2584742144,2584742399,US 2584742400,2584742463,AU 2584742464,2584742527,DE 2584742528,2584742655,ZA 2584742656,2584742911,US 2584742912,2584742975,KR 2584742976,2584743167,ZA 2584743168,2584743423,US 2584743424,2584743487,KR 2584743488,2584743679,ZA 2584743680,2584743935,US 2584743936,2584743999,AU 2584744000,2584744191,ZA 2584744192,2584744447,US 2584744448,2584744511,AU 2584744512,2584744575,ZA 2584744576,2584744703,DE 2584744704,2584744959,US 2584744960,2584745023,AU 2584745024,2584745215,ZA 2584745216,2584745471,US 2584745472,2584745535,AU 2584745536,2584745727,ZA 2584745728,2584745983,US 2584745984,2584746047,AU 2584746048,2584746239,ZA 2584746240,2584746495,US 2584746496,2584746559,AU 2584746560,2584746751,ZA 2584746752,2584747007,US 2584747008,2584747071,MY 2584747072,2584747263,ZA 2584747264,2584747519,US 2584747520,2584747583,MY 2584747584,2584747775,ZA 2584747776,2584748031,US 2584748032,2584748095,MY 2584748096,2584748287,ZA 2584748288,2584748543,US 2584748544,2584748607,MY 2584748608,2584748799,ZA 2584748800,2584749055,US 2584749056,2584749119,MY 2584749120,2584749311,ZA 2584749312,2584749567,US 2584749568,2584749631,MY 2584749632,2584749823,ZA 2584749824,2584750079,US 2584750080,2584750143,MY 2584750144,2584750335,ZA 2584750336,2584750591,US 2584750592,2584750655,MY 2584750656,2584750687,DE 2584750688,2584750847,ZA 2584750848,2584751103,US 2584751104,2584751167,AE 2584751168,2584751359,ZA 2584751360,2584751615,US 2584751616,2584751679,AE 2584751680,2584751871,ZA 2584751872,2584752127,US 2584752128,2584752191,AE 2584752192,2584752383,ZA 2584752384,2584752639,US 2584752640,2584752703,AE 2584752704,2584752895,ZA 2584752896,2584753151,US 2584753152,2584753215,AE 2584753216,2584753407,ZA 2584753408,2584753663,US 2584753664,2584753727,AE 2584753728,2584753919,ZA 2584753920,2584754175,US 2584754176,2584754431,ZA 2584754432,2584754687,US 2584754688,2584754943,ZA 2584754944,2584755199,US 2584755200,2584755263,AR 2584755264,2584755279,DE 2584755280,2584755455,ZA 2584755456,2584755711,US 2584755712,2584755775,AR 2584755776,2584755967,ZA 2584755968,2584756223,US 2584756224,2584756479,ZA 2584756480,2584756735,US 2584756736,2584756991,ZA 2584756992,2584757247,US 2584757248,2584757311,SG 2584757312,2584757503,ZA 2584757504,2584757759,US 2584757760,2584757823,HK 2584757824,2584758015,ZA 2584758016,2584758271,US 2584758272,2584758335,SG 2584758336,2584758527,ZA 2584758528,2584758783,US 2584758784,2584758847,HK 2584758848,2584759039,ZA 2584759040,2584759295,US 2584759296,2584759359,SG 2584759360,2584759551,ZA 2584759552,2584759807,US 2584759808,2584759871,HK 2584759872,2584760063,ZA 2584760064,2584760319,US 2584760320,2584760383,SG 2584760384,2584760575,ZA 2584760576,2584760831,US 2584760832,2584760895,HK 2584760896,2584761087,ZA 2584761088,2584761343,US 2584761344,2584761407,SG 2584761408,2584761599,ZA 2584761600,2584761855,US 2584761856,2584761919,HK 2584761920,2584762111,ZA 2584762112,2584762367,US 2584762368,2584762431,SG 2584762432,2584762623,ZA 2584762624,2584762879,US 2584762880,2584762943,HK 2584762944,2584763135,ZA 2584763136,2584763391,US 2584763392,2584763455,SG 2584763456,2584763647,ZA 2584763648,2584763903,US 2584763904,2584763967,HK 2584763968,2584763999,DE 2584764000,2584764159,ZA 2584764160,2584764415,US 2584764416,2584764671,ZA 2584764672,2584775423,US 2584775424,2584775679,KE 2584775680,2585001983,US 2585001984,2585067519,CA 2585067520,2585788415,US 2585788416,2585853951,GB 2585853952,2585985023,JP 2585985024,2586378751,US 2586378752,2586379263,UA 2586379264,2586480639,US 2586480640,2586484735,IL 2586484736,2586486783,GB 2586486784,2586510335,US 2586510336,2586511359,ES 2586511360,2586544127,US 2586544128,2586546175,SE 2586546176,2586566655,US 2586566656,2586566687,FR 2586566688,2586610687,US 2586610688,2586611711,ES 2586611712,2586619903,US 2586619904,2586620415,FR 2586620416,2586622463,US 2586622464,2586622975,ES 2586622976,2586640383,US 2586640384,2586640399,MC 2586640400,2586640895,US 2586640896,2586641407,FR 2586641408,2586650687,US 2586650688,2586650703,DE 2586650704,2586650879,US 2586650880,2586651135,NL 2586651136,2586714879,US 2586714880,2586715135,NL 2586715136,2586716159,US 2586716160,2586716671,ES 2586716672,2586717183,US 2586717184,2586718207,ES 2586718208,2586733567,US 2586733568,2586733823,LT 2586733824,2586734591,US 2586734592,2586735615,LT 2586735616,2586788863,US 2586788864,2586789119,GB 2586789120,2586789887,US 2586789888,2586790143,GB 2586790144,2586804223,US 2586804224,2586804479,ES 2586804480,2586805247,US 2586805248,2586805503,ES 2586805504,2586806271,US 2586806272,2586807295,ES 2586807296,2586828799,US 2586828800,2586829055,CH 2586829056,2586829311,US 2586829312,2586829567,CH 2586829568,2586869759,US 2586869760,2586870015,ES 2586870016,2586870271,US 2586870272,2586875903,ES 2586875904,2586876415,US 2586876416,2586876671,ES 2586876672,2586876927,US 2586876928,2586882559,ES 2586882560,2586952191,US 2586952192,2586952447,FR 2586952448,2586952703,US 2586952704,2586953471,FR 2586953472,2586953727,ES 2586953728,2586953983,MX 2586953984,2586954239,PE 2586954240,2587017215,US 2587017216,2587017471,IE 2587017472,2587017983,US 2587017984,2587018495,IE 2587018496,2587018671,US 2587018672,2587018687,IE 2587018688,2587019263,US 2587019264,2587019775,IE 2587019776,2587020031,US 2587020032,2587020799,IE 2587020800,2587021823,US 2587021824,2587022335,IE 2587022336,2587066879,US 2587066880,2587067135,GB 2587067136,2587067391,US 2587067392,2587067903,GB 2587067904,2587068415,US 2587068416,2587068479,GB 2587068480,2587070463,US 2587070464,2587070719,GB 2587070720,2587071759,US 2587071760,2587071775,GB 2587071776,2587128522,US 2587128523,2587128523,TR 2587128524,2587131903,US 2587131904,2587132415,FR 2587132416,2587197439,US 2587197440,2587197695,ES 2587197696,2587240389,US 2587240390,2587240390,FR 2587240391,2587249417,US 2587249418,2587249418,FR 2587249419,2587361791,US 2587361792,2587362047,MD 2587362048,2587394559,US 2587394560,2587395327,ES 2587395328,2587396095,US 2587396096,2587399167,ES 2587399168,2587412223,US 2587412224,2587414527,IT 2587414528,2587427839,US 2587427840,2587428863,GR 2587428864,2587443199,US 2587443200,2587447295,CH 2587447296,2587476760,US 2587476761,2587476761,LB 2587476762,2587479119,US 2587479120,2587479120,LB 2587479121,2587481969,US 2587481970,2587481970,LB 2587481971,2587484159,US 2587484160,2587492351,GB 2587492352,2587493375,ES 2587493376,2587494399,US 2587494400,2587496447,ES 2587496448,2587504639,US 2587504640,2587508735,ES 2587508736,2587525119,GB 2587525120,2587542527,US 2587542528,2587544575,ES 2587544576,2587545599,US 2587545600,2587549695,ES 2587549696,2587582463,US 2587582464,2587586559,NL 2587586560,2587592703,US 2587592704,2587594751,GB 2587594752,2587623423,US 2587623424,2587627519,BG 2587627520,2587639807,US 2587639808,2587640063,GB 2587640064,2587926527,US 2587926528,2587930623,BG 2587930624,2587938815,US 2587938816,2587939583,PR 2587939584,2587939711,US 2587939712,2587939839,PR 2587939840,2587940095,US 2587940096,2587940607,PR 2587940608,2587940863,US 2587940864,2587941119,PR 2587941120,2587951103,US 2587951104,2587952127,ZA 2587952128,2587953151,NG 2587953152,2587954175,MU 2587954176,2587955199,ZA 2587955200,2587959295,KE 2587959296,2587961343,SN 2587961344,2587962367,ZA 2587962368,2587964415,SS 2587964416,2587965439,ZA 2587965440,2587966463,KE 2587966464,2587967487,BF 2587967488,2587975679,ZA 2587975680,2587983871,GH 2587983872,2588016639,AO 2588016640,2588033023,NG 2588033024,2588037119,ZA 2588037120,2588038143,AO 2588038144,2588039167,GN 2588039168,2588041215,ZA 2588041216,2588042239,DZ 2588042240,2588043263,SS 2588043264,2588044287,AO 2588044288,2588045311,LS 2588045312,2588046335,ZA 2588046336,2588047359,TD 2588047360,2588049407,MW 2588049408,2588053503,BJ 2588053504,2588057599,ZA 2588057600,2588061695,BF 2588061696,2588070911,ZA 2588070912,2588071935,TZ 2588071936,2588072959,UG 2588072960,2588073983,NE 2588073984,2588075007,TZ 2588075008,2588076031,MU 2588076032,2588078079,GA 2588078080,2588080127,MU 2588080128,2588082175,ZA 2588082176,2588147711,RE 2588147712,2588164095,CI 2588164096,2588180479,RW 2588196864,2588213247,NG 2588213248,2588278783,ZA 2588278784,2588295167,KE 2588295168,2588299263,GH 2588299264,2588303359,TG 2588303360,2588311551,CM 2588311552,2588315647,ZA 2588315648,2588317695,BW 2588317696,2588317951,ZA 2588317952,2588318207,MU 2588318208,2588318719,ZA 2588318720,2588319743,UG 2588319744,2588327935,SC 2588327936,2588328959,ML 2588328960,2588329983,BI 2588329984,2588332031,MA 2588332032,2588344319,ZA 2588344320,2588409855,MU 2588409856,2588410879,KE 2588410880,2588412927,ZA 2588412928,2588413951,ST 2588413952,2588414975,UG 2588414976,2588415999,TZ 2588416000,2588417023,SO 2588417024,2588418047,KE 2588418048,2588420095,NG 2588420096,2588422143,ZA 2588422144,2588423167,SO 2588423168,2588424191,CD 2588424192,2588426239,ZA 2588426240,2588434431,TZ 2588434432,2588438527,ZA 2588438528,2588442623,BJ 2588442624,2588459007,CM 2588459008,2588467199,UG 2588467200,2588471295,TN 2588471296,2588477439,ZA 2588477440,2588478463,NG 2588478464,2588479487,UG 2588479488,2588480511,ZA 2588480512,2588481535,CD 2588481536,2588482559,SO 2588482560,2588483583,LY 2588483584,2588484607,ZA 2588484608,2588485631,BW 2588485632,2588486655,BI 2588486656,2588487679,SO 2588487680,2588487711,SC 2588487712,2588487743,FR 2588487744,2588487807,BF 2588487808,2588487839,NE 2588487840,2588487871,SC 2588487872,2588487935,MW 2588487936,2588488703,SC 2588488704,2588489727,LY 2588489728,2588490751,GQ 2588490752,2588491775,GW 2588491776,2588492799,TZ 2588492800,2588494847,ZA 2588494848,2588495871,SO 2588495872,2588496895,ZW 2588496896,2588497919,BW 2588497920,2588498943,SS 2588498944,2588499967,DZ 2588499968,2588500991,ZA 2588500992,2588502015,CI 2588502016,2588503039,BI 2588503040,2588504063,LY 2588504064,2588505087,TD 2588505088,2588506111,CG 2588506112,2588507135,ZA 2588507136,2588508159,SO 2588508160,2588510207,LY 2588510208,2588512255,ZA 2588512256,2588514303,TZ 2588514304,2588516351,ZA 2588516352,2588518399,TD 2588518400,2588519423,TZ 2588519424,2588520447,SN 2588520448,2588521471,SL 2588521472,2588526591,ZA 2588526592,2588528639,CM 2588528640,2588534783,ZA 2588534784,2588535807,ZM 2588535808,2588536831,NG 2588536832,2588540927,ZA 2588540928,2588671999,TZ 2588672000,2588934143,KE 2588934144,2589982719,SC 2589982720,2590507007,SD 2590507008,2591031295,TN 2591031296,2591096831,GA 2591096832,2591162367,NG 2591162368,2591293439,ZA 2591293440,2591326207,GA 2591326208,2591358975,AO 2591358976,2591375359,GH 2591375360,2591391743,NG 2591391744,2591408127,ZA 2591408128,2591424511,BI 2591424512,2591457279,NG 2591457280,2591473663,ML 2591473664,2591477759,AO 2591477760,2591478783,PT 2591478784,2591479039,AO 2591479040,2591479551,PT 2591479552,2591479807,AO 2591479808,2591481855,PT 2591481856,2591483903,TZ 2591485952,2591486975,SO 2591486976,2591487999,ZA 2591488000,2591489023,GA 2591489024,2591490047,ZA 2591490048,2591498239,BI 2591498240,2591510527,ZA 2591510528,2591514623,ZW 2591514624,2591522815,SZ 2591522816,2591526911,LR 2591526912,2591539199,ZA 2591539200,2591547391,GA 2591547392,2591555583,ZA 2591555584,2591571967,GH 2591571968,2591588351,NG 2591588352,2591604735,MG 2591604736,2591605759,MU 2591605760,2591606783,KE 2591606784,2591610879,MU 2591610880,2591612927,ZM 2591612928,2591621119,ZW 2591621120,2591686655,DZ 2591686656,2591817727,KE 2591817728,2591948799,SN 2591948800,2591981567,MG 2591981568,2591997951,CM 2591997952,2592006143,ZA 2592006144,2592007167,TZ 2592007168,2592009215,ZA 2592009216,2592022527,TZ 2592022528,2592026623,BJ 2592026624,2592026879,US 2592026880,2592027391,ZA 2592027392,2592027647,GB 2592027648,2592028671,US 2592028672,2592028799,NG 2592028800,2592028927,KE 2592028928,2592029183,US 2592029184,2592029311,CI 2592029312,2592030207,ZA 2592030208,2592030335,GH 2592030336,2592030463,CM 2592030464,2592030591,UG 2592030592,2592030719,ZA 2592030720,2592034815,LY 2592034816,2592038911,NE 2592038912,2592043007,DZ 2592043008,2592047103,ZA 2592047104,2592079871,AO 2600468480,2600534015,ZM 2600534016,2600665087,US 2600665088,2600730623,CA 2600730624,2600796159,SE 2600796160,2601123839,US 2601123840,2601189375,CA 2601189376,2601254911,EG 2601254912,2601287679,TZ 2601320448,2601451519,US 2601451520,2601517055,CA 2601517056,2602565631,US 2602565632,2602631167,NZ 2602631168,2602762495,US 2602762752,2602774015,US 2602774016,2602774271,IN 2602774528,2602825727,US 2602825728,2602825983,AU 2602825984,2603417599,US 2603417600,2603483135,DE 2603483136,2604007423,US 2604007424,2604072959,ES 2604072960,2604138495,NO 2604138496,2604204031,DE 2604204032,2604335103,US 2604335104,2604400639,NZ 2604400640,2604466175,AU 2604466176,2604648447,US 2604648448,2604648959,NZ 2604648960,2604793855,US 2604793856,2604859391,CH 2604859392,2604990463,US 2604990464,2605055999,SG 2605056000,2605121535,US 2605121536,2605187071,AU 2605187072,2605252607,US 2605252608,2605318143,AT 2605318144,2606301183,US 2606301184,2606366719,AO 2606366720,2606563327,US 2606628864,2607349759,US 2607349760,2607415295,CH 2607415296,2609053695,US 2609053696,2609119231,GB 2609119232,2609184767,FR 2609184768,2609250303,PL 2609250304,2609381375,US 2609381376,2609446911,GB 2609446912,2609512447,DK 2609512448,2609643519,US 2609643520,2609709055,GB 2609709056,2609840127,US 2609840128,2609971199,AU 2609971200,2610036735,GB 2610036736,2610823167,US 2610823168,2610888703,PL 2610888704,2610954239,ZA 2610954240,2611019775,JP 2611019776,2612592639,US 2612592640,2612658175,IT 2612658176,2612723711,US 2612723712,2612789247,AU 2612789248,2613051391,US 2613051392,2613116927,GB 2613116928,2613182463,US 2613182464,2613247999,CA 2613248000,2613313535,US 2613379072,2613444607,US 2613444608,2613510143,GB 2613510144,2613706751,US 2613706752,2613772287,GB 2613772288,2613837823,US 2613837824,2613903359,NL 2613903360,2613968895,AU 2613968896,2614034431,US 2614034432,2614099967,GR 2614099968,2614165503,US 2614165504,2614231039,NO 2614231040,2614296575,ES 2614296576,2614362111,BR 2614362112,2615083007,US 2615083008,2615148543,TR 2615148544,2615345151,US 2615345152,2615410687,NO 2615410688,2615476223,CH 2615476224,2615541759,US 2615541760,2615607295,KR 2615607296,2615672831,GB 2615672832,2616262655,ZA 2616262656,2616524799,US 2616524800,2616590335,GB 2616590336,2616786943,US 2616786944,2616852479,GB 2616852480,2616918015,DE 2616983552,2617049087,US 2617049088,2617114623,IT 2617114624,2617115135,US 2617115136,2617115647,CA 2617115648,2617123839,US 2617123840,2617124095,DE 2617124096,2617124863,US 2617124864,2617126911,NL 2617126912,2617131007,US 2617131008,2617139199,CA 2617139200,2617139455,PE 2617139456,2617139711,SZ 2617139712,2617139967,AU 2617139968,2617140223,PA 2617140224,2617140479,CO 2617140480,2617140735,SC 2617140736,2617140991,CA 2617140992,2617141247,LC 2617141248,2617141503,SV 2617141504,2617141759,US 2617141760,2617142015,ZW 2617142016,2617142271,KR 2617142272,2617142527,US 2617142528,2617142783,LU 2617142784,2617143039,US 2617143040,2617143295,UG 2617143296,2617143551,US 2617143552,2617143807,TT 2617143808,2617144063,US 2617144064,2617144319,ZA 2617144320,2617144575,US 2617144576,2617144831,FJ 2617144832,2617145343,US 2617145344,2617145599,NI 2617145600,2617145855,UA 2617145856,2617146111,US 2617146112,2617146367,CI 2617146368,2617146623,US 2617146624,2617146879,GY 2617146880,2617147135,DE 2617147136,2617149439,US 2617149440,2617155583,CA 2617155584,2617163775,US 2617163776,2617164031,SK 2617164032,2617164287,MC 2617164288,2617164543,AZ 2617164544,2617164799,FI 2617164800,2617165055,CZ 2617165056,2617165311,UZ 2617165312,2617165567,BT 2617165568,2617165823,CN 2617165824,2617166079,ME 2617166080,2617166335,YE 2617166336,2617166591,KH 2617166592,2617166847,TJ 2617166848,2617167103,KG 2617167104,2617167359,IN 2617167360,2617167615,DK 2617167616,2617167871,IL 2617167872,2617168127,PL 2617168128,2617168383,LA 2617168384,2617168639,GH 2617168640,2617168895,BD 2617168896,2617169151,LI 2617169152,2617169407,ET 2617169408,2617169663,SM 2617169664,2617169919,BH 2617169920,2617170175,CY 2617170176,2617170431,NZ 2617170432,2617170687,PS 2617170688,2617170943,GI 2617170944,2617171199,RS 2617171200,2617171455,HK 2617171456,2617171711,HR 2617171712,2617171967,SN 2617171968,2617172223,MV 2617172224,2617172479,AF 2617172480,2617172735,JP 2617172736,2617172991,CM 2617172992,2617173247,VA 2617173248,2617173503,JP 2617173504,2617173759,TM 2617173760,2617174015,GE 2617174016,2617174271,TR 2617174272,2617174527,TW 2617174528,2617174783,KW 2617174784,2617175039,EE 2617175040,2617175295,CN 2617175296,2617175551,MA 2617175552,2617175807,BA 2617175808,2617176063,IQ 2617176064,2617176319,NO 2617176320,2617176575,AU 2617176576,2617176831,TH 2617176832,2617177087,VN 2617177088,2617177343,US 2617177344,2617177599,RU 2617177600,2617177855,IN 2617177856,2617178111,BE 2617178112,2617178367,IM 2617178368,2617178623,BN 2617178624,2617178879,US 2617178880,2617179135,LT 2617179136,2617179391,MD 2617179392,2617179647,SI 2617179648,2617179903,KE 2617179904,2617180159,NG 2617311232,2617769983,US 2617769984,2617835519,ZA 2617835520,2617901055,US 2617901056,2617966591,FI 2617966592,2618032127,CA 2618032128,2618097663,US 2618097664,2618163199,NZ 2618163200,2618228735,SI 2618228736,2618294271,US 2618359808,2618425343,PL 2618425344,2618490879,FR 2618490880,2618687487,US 2618687488,2618753023,AU 2618753024,2618884095,US 2618884096,2618949631,CH 2618949632,2619080703,US 2619080704,2619146239,FR 2619146240,2619277311,US 2619277312,2619327743,BN 2619327744,2619327999,MY 2619328000,2619342847,BN 2619342848,2619473919,US 2619473920,2619539455,CA 2619539456,2619604991,ES 2619604992,2619736063,US 2619801600,2620063743,US 2620063744,2620129279,GB 2620129280,2620194815,CA 2620194816,2620391423,US 2620391424,2620456959,GB 2620456960,2620522495,SE 2620522496,2620588031,AU 2620588032,2620653567,SE 2620653568,2620719103,NO 2620719104,2620784639,US 2620784640,2620850175,IT 2620850176,2620981247,US 2620981248,2621046783,CA 2621046784,2621112319,AT 2621112320,2621177855,NZ 2621177856,2621243391,US 2621243392,2621308927,GB 2621308928,2621374463,NZ 2621374464,2621636607,US 2621636608,2621702143,DE 2621702144,2621767679,US 2621767680,2621833215,NZ 2621833216,2621936895,US 2621936896,2621937151,SG 2621937152,2622685183,US 2622685184,2622750719,NL 2622750720,2623602687,US 2623602688,2623668223,CL 2623668224,2624192511,US 2624192512,2624258047,CH 2624258048,2624279039,US 2624279040,2624279071,IN 2624279072,2624279095,US 2624279096,2624279111,IN 2624279112,2624281087,US 2624281088,2624281343,IN 2624281344,2624292863,US 2624292864,2624292883,SG 2624292884,2624292887,HK 2624292888,2624292891,SG 2624292892,2624292895,TW 2624292896,2624292899,KR 2624292900,2624292903,VN 2624292904,2624292907,JP 2624292908,2624292911,ID 2624292912,2624292915,MY 2624292916,2624292919,PH 2624292920,2624292923,TH 2624292924,2624293003,SG 2624293004,2624293007,HK 2624293008,2624293011,SG 2624293012,2624293015,TW 2624293016,2624293019,KR 2624293020,2624293023,VN 2624293024,2624293027,JP 2624293028,2624293031,ID 2624293032,2624293035,MY 2624293036,2624293039,PH 2624293040,2624293043,TH 2624293044,2624293139,SG 2624293140,2624293143,HK 2624293144,2624293147,SG 2624293148,2624293151,TW 2624293152,2624293155,KR 2624293156,2624293159,VN 2624293160,2624293163,JP 2624293164,2624293167,ID 2624293168,2624293171,MY 2624293172,2624293175,PH 2624293176,2624293179,TH 2624293180,2624293375,SG 2624293376,2624293385,US 2624293386,2624293386,SG 2624293387,2624297983,US 2624297984,2624297999,SG 2624298000,2624298003,CN 2624298004,2624298007,HK 2624298008,2624298011,SG 2624298012,2624298015,TW 2624298016,2624298019,KR 2624298020,2624298023,VN 2624298024,2624298027,JP 2624298028,2624298031,ID 2624298032,2624298035,MY 2624298036,2624298039,PH 2624298040,2624298043,TH 2624298044,2624298119,SG 2624298120,2624298123,CN 2624298124,2624298127,HK 2624298128,2624298131,SG 2624298132,2624298135,TW 2624298136,2624298139,KR 2624298140,2624298143,VN 2624298144,2624298147,JP 2624298148,2624298151,ID 2624298152,2624298155,MY 2624298156,2624298159,PH 2624298160,2624298163,TH 2624298164,2624298255,SG 2624298256,2624298259,CN 2624298260,2624298263,HK 2624298264,2624298267,SG 2624298268,2624298271,TW 2624298272,2624298275,KR 2624298276,2624298279,VN 2624298280,2624298283,JP 2624298284,2624298287,ID 2624298288,2624298291,MY 2624298292,2624298295,PH 2624298296,2624298299,TH 2624298300,2624298495,SG 2624298496,2624716799,US 2624716800,2624782335,NL 2624782336,2624847871,CH 2624847872,2624913407,NO 2624913408,2624978943,US 2624978944,2625044479,FR 2625044480,2625961983,US 2625961984,2626027519,LU 2626027520,2626093055,US 2626093056,2626158591,CH 2626158592,2626879487,US 2626879488,2626945023,KR 2626945024,2627010559,SI 2627010560,2627076095,NZ 2627076096,2627141631,NL 2627141632,2627403775,US 2627469312,2627731455,TZ 2627731456,2631925759,EG 2634022912,2634088447,CN 2634088448,2634350591,JP 2634416128,2635005951,JP 2635071488,2635202559,JP 2635202560,2635268095,CN 2635268096,2635399167,JP 2635399168,2635530239,US 2635530240,2635595775,FR 2635595776,2635661311,FI 2635661312,2635726847,PL 2635726848,2635792383,CH 2635792384,2635988991,IT 2635988992,2636120063,US 2636120064,2637430783,ID 2637430784,2637438975,CA 2637438976,2637630975,US 2637630976,2637631231,IE 2637631232,2637733151,US 2637733152,2637733183,JP 2637733184,2637733375,US 2637733376,2637733407,SG 2637733408,2637997055,US 2637997056,2637997311,AU 2637997312,2637998591,US 2637998592,2637998847,AU 2637998848,2638000127,US 2638000128,2638000255,AU 2638000256,2638002175,US 2638002176,2638002687,AU 2638002688,2638020607,US 2638020608,2638086143,CN 2638086144,2638151679,US 2638151680,2639331327,JP 2639396864,2639462399,JP 2639462400,2639593471,GB 2639593472,2639659007,AU 2639659008,2639724543,BR 2639724544,2639790079,US 2639790080,2639855615,ES 2639855616,2640052223,US 2640052224,2640117759,AR 2640117760,2640183295,US 2640183296,2640248831,FI 2640248832,2640314367,US 2640314368,2640379903,GB 2640379904,2640445439,CA 2640445440,2640510975,US 2640510976,2640576511,FR 2640576512,2640642047,EC 2640642048,2641821695,JP 2641887232,2641928191,JP 2641928192,2641936383,SG 2641936384,2641944575,US 2641944576,2641952767,JP 2641952768,2642018303,US 2642018304,2642083839,CN 2642083840,2642149375,US 2642149376,2642214911,FI 2642214912,2642280447,GB 2642280448,2642411519,US 2642411520,2642477055,AU 2642477056,2642542591,FI 2642542592,2642751487,US 2642751488,2642753535,CA 2642753536,2642935807,US 2642935808,2643001343,FR 2643001344,2643066879,US 2643066880,2643132415,IT 2643132416,2643197951,US 2643197952,2643263487,GB 2643263488,2643460095,US 2643460096,2643525631,FI 2643525632,2643722239,US 2643722240,2643787775,CN 2643787776,2644180991,US 2644180992,2644246527,AU 2644246528,2644312063,CN 2644312064,2644377599,IS 2644377600,2644443135,PL 2644443136,2644508671,FR 2644508672,2644574207,US 2644574208,2644639743,CH 2644639744,2644770815,DE 2644770816,2644836351,BE 2644836352,2644957183,US 2644957184,2644957439,GB 2644957440,2644967423,US 2644967424,2645032959,AT 2645032960,2645098495,CH 2645098496,2645164031,FR 2645164032,2645229567,US 2645229568,2645295103,SE 2645295104,2645360639,FR 2645360640,2645426175,GB 2645426176,2645622783,US 2645622784,2645688319,AT 2645688320,2645753855,US 2645753856,2645819391,TH 2645819392,2645884927,SE 2645884928,2645950463,HU 2645950464,2646212607,US 2646212608,2646278143,RU 2646278144,2646474751,US 2646474752,2646540287,IE 2646540288,2646605823,US 2646605824,2646671359,JP 2646671360,2646736895,BE 2646736896,2646933503,US 2646933504,2646999039,KR 2646999040,2647130111,US 2647130112,2647195647,FI 2647195648,2647326719,US 2647326720,2647392255,GB 2647392256,2647457791,US 2647457792,2647523327,JP 2647523328,2647605503,US 2647605504,2647605759,GB 2647605760,2647687167,US 2647687168,2647687423,CA 2647687424,2647851007,US 2647851008,2647916543,AU 2647916544,2648899583,US 2648899584,2648965119,IN 2648965120,2649030655,GB 2649030656,2649489407,US 2649489408,2649554943,GB 2649554944,2649620479,NO 2649620480,2649948159,US 2649948160,2650013695,FR 2650013696,2650079231,CA 2650079232,2650210303,US 2650210304,2650275839,AT 2650275840,2650341375,US 2650341376,2650406911,NO 2650406912,2650423295,US 2650423296,2650472447,JP 2650472448,2650603519,US 2650603520,2650669055,CO 2650669056,2650734591,US 2650734592,2650800127,CN 2650800128,2653159423,US 2653159424,2653421567,NO 2653421568,2653487103,AU 2653487104,2653552639,GB 2653552640,2653618175,ES 2653618176,2653683711,GB 2653683712,2653749247,KR 2653749248,2653814783,AU 2653814784,2653880319,RU 2653880320,2653945855,IT 2653945856,2654011391,US 2654011392,2654076927,ES 2654076928,2654085119,FR 2654085120,2654089215,HK 2654089216,2654093311,FR 2654093312,2654097407,US 2654097408,2654142463,FR 2654208000,2654339071,US 2654339072,2654404607,AU 2654404608,2654601215,US 2654601216,2654633983,DE 2654633984,2654636031,RU 2654636032,2654638079,IT 2654638080,2654640127,DE 2654640128,2654642175,NO 2654642176,2654644223,GB 2654644224,2654646271,IT 2654646272,2654648319,FR 2654648320,2654650367,IR 2654650368,2654666751,BG 2654666752,2654994431,US 2654994432,2655059967,LU 2655059968,2655125503,US 2655125504,2655191039,PL 2655256576,2655323135,US 2655323136,2655323647,CA 2655323648,2655324671,US 2655324672,2655324799,CA 2655324800,2655325695,US 2655325696,2655325823,CA 2655325824,2655326207,US 2655326208,2655326463,CA 2655326464,2655373256,US 2655373257,2655373257,CA 2655373258,2655715327,US 2655715328,2655780863,PL 2655780864,2656387071,US 2656387072,2656403455,CA 2656403456,2656632831,US 2656632832,2656698367,AU 2656698368,2656763903,FI 2656763904,2656829439,US 2656829440,2656894975,SE 2656894976,2656960511,US 2656960512,2657026047,GB 2657026048,2657157119,US 2657157120,2657222655,MX 2657222656,2657288191,US 2657288192,2657353727,ES 2657353728,2657484799,US 2657484800,2657550335,IT 2657550336,2657681407,US 2657681408,2657746943,SE 2657746944,2657763327,US 2657763328,2657779711,CA 2657779712,2657878015,US 2657878016,2657943551,TH 2657943552,2658009087,ES 2658009088,2658074623,IT 2658074624,2658140159,US 2658140160,2658205695,NO 2658205696,2658459647,US 2658459648,2658459648,HU 2658459649,2658459649,US 2658459650,2658459903,HU 2658459904,2658598911,US 2658598912,2658664447,GB 2658664448,2658926591,US 2658926592,2659057663,GB 2659057664,2659123199,SE 2659123200,2659180543,FI 2659180544,2659182591,NL 2659182592,2659188735,FI 2659188736,2659254271,CA 2659254272,2659319807,LT 2659319808,2659385343,US 2659385344,2659450879,FI 2659450880,2659516415,HK 2659516416,2659581951,CH 2659581952,2660040703,US 2660040704,2660106239,CA 2660106240,2660171775,US 2660171776,2660237311,GB 2660237312,2660302847,IN 2660302848,2660499455,US 2660499456,2660564991,IT 2660564992,2660696063,NO 2660696064,2660761599,US 2660761600,2660827135,GB 2660827136,2661023743,US 2661023744,2661089279,FR 2661089280,2661285887,US 2661285888,2661351423,VE 2661351424,2661416959,BN 2661416960,2661482495,PT 2661482496,2661548031,CA 2661548032,2661679103,US 2661679104,2661885951,LU 2661885952,2661886207,BE 2661886208,2661914111,LU 2661914112,2661914367,BE 2661914368,2661941247,LU 2661941248,2662006783,CL 2662006784,2662072319,US 2662072320,2662137855,ES 2662137856,2662203391,SE 2662203392,2662662143,GB 2662662144,2662670335,KG 2662670336,2662674431,AZ 2662674432,2662677087,DE 2662677088,2662677279,US 2662677280,2662677375,DE 2662677376,2662678527,US 2662678528,2662686719,DE 2662686720,2662694911,CH 2662694912,2662727679,KG 2662727680,2662793215,HK 2662793216,2663251967,US 2663251968,2663448575,FR 2663448576,2663514111,SK 2663514112,2663579647,CZ 2663579648,2663645183,SK 2663645184,2663710719,CZ 2663710720,2663776255,SK 2663776256,2663891199,JP 2663891200,2663891455,CN 2663891456,2664955903,JP 2664955904,2665021439,CH 2665021440,2665086975,JP 2665086976,2665152511,GB 2665152512,2665218047,US 2665218048,2665283583,CH 2665283584,2665359359,US 2665359360,2665359871,MF 2665359872,2665375743,US 2665375744,2665377791,CA 2665377792,2665414655,US 2665414656,2665480191,GB 2665480192,2665545727,US 2665545728,2665611263,DE 2665611264,2665676799,CH 2665676800,2665742335,ES 2665742336,2665805055,US 2665805056,2665805311,CA 2665805312,2665873407,US 2665873408,2665938943,GB 2665938944,2666004479,FR 2666004480,2666070015,CH 2666070016,2666135551,FI 2666135552,2666201087,GB 2666201088,2667053055,US 2667053056,2667118591,SE 2667118592,2667184127,HU 2667184128,2667249663,RU 2667249664,2667315199,CL 2667315200,2667511807,US 2667511808,2667513855,RU 2667513856,2667515903,GB 2667515904,2667517951,CZ 2667517952,2667519999,SK 2667520000,2667522047,CZ 2667522048,2667524095,GB 2667524096,2667526143,RU 2667526144,2667528191,LV 2667528192,2667532287,FR 2667532288,2667534335,RU 2667534336,2667536383,PL 2667536384,2667537087,AT 2667537088,2667537119,FR 2667537120,2667537151,AT 2667537152,2667541503,FR 2667541504,2667542527,AT 2667542528,2667544575,FR 2667544576,2667560959,RU 2667560960,2667565055,IT 2667565056,2667565311,HK 2667565312,2667565421,AT 2667565422,2667565422,PT 2667565423,2667565423,ES 2667565424,2667565424,US 2667565425,2667565425,CR 2667565426,2667565426,KN 2667565427,2667565427,BR 2667565428,2667565428,FI 2667565429,2667565429,CH 2667565430,2667565430,GB 2667565431,2667566335,AT 2667566336,2667566591,US 2667566592,2667566847,DE 2667566848,2667567103,FR 2667567104,2667569151,SE 2667569152,2667571199,GB 2667571200,2667573247,ES 2667573248,2667575295,IT 2667575296,2667577343,SK 2667577344,2667642879,SA 2667642880,2667970559,US 2667970560,2668036095,CA 2668036096,2668101631,SE 2668101632,2668118015,NL 2668118016,2668134399,FR 2668134400,2668150783,GB 2668150784,2668167167,NL 2668167168,2668363775,US 2668363776,2668429311,CH 2668429312,2668494847,AU 2668494848,2668560383,US 2668560384,2668625919,GB 2668625920,2668691455,MX 2668691456,2668756991,US 2668756992,2668822527,CA 2668822528,2668888063,US 2668888064,2668890111,DK 2668890112,2668892159,FR 2668892160,2668894207,BA 2668894208,2668896255,MT 2668896256,2668904447,GB 2668904448,2668912639,TR 2668912640,2668916735,IR 2668916736,2668918783,TR 2668918784,2668920831,ES 2668920832,2668953599,IT 2668953600,2668969983,US 2668969984,2668971007,GB 2668971008,2668987135,US 2668987136,2668987391,AU 2668987392,2668989951,US 2668989952,2668990463,NZ 2668990464,2668991487,IN 2668991488,2669019135,US 2669019136,2669084671,CH 2669084672,2669150207,ES 2669150208,2669215743,US 2669215744,2669281279,DE 2669281280,2669477887,US 2669477888,2669543423,CH 2669543424,2669608959,GB 2669608960,2669674495,FR 2669674496,2669805567,CA 2669805568,2669871103,GB 2669871104,2670067711,US 2670067712,2670133247,SE 2670133248,2670591999,US 2670592000,2670657535,NL 2670657536,2670854143,US 2670854144,2670919679,FR 2670919680,2670985215,DE 2670985216,2671050751,AU 2671050752,2671181823,US 2671181824,2671247359,CA 2671247360,2671378431,US 2671378432,2671443967,NO 2671443968,2671509503,US 2671509504,2671575039,NL 2671575040,2671711479,US 2671711480,2671711483,DE 2671711484,2671711573,US 2671711574,2671711574,GB 2671711575,2671718827,US 2671718828,2671718831,GB 2671718832,2671749119,US 2671749120,2671750143,CA 2671750144,2672295935,US 2672295936,2672361471,SE 2672361472,2672427007,AU 2672427008,2672820223,US 2672820224,2672885759,JP 2672885760,2672951295,NO 2672951296,2673082367,US 2673082368,2673147903,FR 2673147904,2673213439,US 2673213440,2673278975,GB 2673278976,2673410047,US 2673410048,2673475583,CA 2673475584,2673541119,VE 2673541120,2673606655,US 2673606656,2673672191,GB 2673672192,2673737727,RU 2673737728,2673803263,US 2673803264,2673868799,FR 2673868800,2674130943,US 2674130944,2674147327,GB 2674147328,2674163711,NL 2674163712,2674175999,GB 2674176000,2674177286,US 2674177287,2674177287,GB 2674177288,2674192383,US 2674192384,2674196479,CH 2674196480,2674249727,GB 2674249728,2674251775,US 2674251776,2674262015,GB 2674262016,2674327551,US 2674327552,2674393087,CH 2674393088,2674589695,US 2674589696,2674655231,SE 2674655232,2674720767,US 2674720768,2674786303,FR 2674786304,2674851839,US 2674851840,2674917375,AU 2674917376,2675048447,US 2675048448,2675113983,GB 2675113984,2675245055,US 2675245056,2675310591,NZ 2675310592,2675574239,US 2675574240,2675574271,IT 2675574272,2675576703,US 2675576704,2675576711,JO 2675576712,2675578527,US 2675578528,2675578535,CO 2675578536,2675580063,US 2675580064,2675580095,AE 2675580096,2675589119,US 2675589120,2675605503,DE 2675605504,2675606271,US 2675606272,2675606527,IT 2675606528,2675606975,US 2675606976,2675607039,IT 2675607040,2675628415,US 2675628416,2675628447,GB 2675628448,2675630095,US 2675630096,2675630111,GB 2675630112,2675965951,US 2675965952,2676031487,CA 2676031488,2676097023,US 2676097024,2676162559,NO 2676162560,2676359167,US 2676359168,2676424703,IE 2676424704,2677014527,US 2677014528,2677080063,CH 2677080064,2677145599,US 2677145600,2677178367,TR 2677178368,2677211135,UA 2677211136,2677276671,ES 2677276672,2677342207,LV 2677342208,2677407743,IT 2677407744,2677473279,US 2677473280,2677538815,FR 2677538816,2677604351,FI 2677604352,2677635071,US 2677635072,2677636095,CN 2677636096,2677639167,US 2677639168,2677639423,CA 2677639424,2677639679,US 2677639680,2677639935,CA 2677639936,2677642239,US 2677642240,2677642495,ES 2677642496,2677642751,CA 2677642752,2677643007,SE 2677643008,2677648383,US 2677648384,2677649407,JP 2677649408,2677650431,US 2677650432,2677650943,RO 2677650944,2677651455,US 2677651456,2677652479,SG 2677652480,2677658367,US 2677658368,2677658623,AU 2677658624,2677659647,US 2677659648,2677659903,AU 2677659904,2677660159,IN 2677660160,2677660415,KR 2677660416,2677669887,US 2677669888,2677735423,DE 2677735424,2677800959,US 2677800960,2677866495,CH 2677866496,2677997567,US 2677997568,2678063103,CA 2678063104,2678128639,UA 2678128640,2678194175,US 2678194176,2678259711,NO 2678259712,2678521855,US 2678521856,2678587391,GB 2678587392,2678652927,CH 2678652928,2678718463,US 2678718464,2678783999,GB 2678784000,2678849535,NO 2678849536,2678851583,US 2678851584,2678851839,GB 2678851840,2678862847,US 2678862848,2678863103,BR 2678863104,2678865919,US 2678865920,2678866175,AU 2678866176,2678876159,US 2678876160,2678878207,FR 2678878208,2678885375,US 2678885376,2678885631,GB 2678885632,2678885887,US 2678885888,2678886143,DE 2678886144,2678886399,NL 2678886400,2678886655,GB 2678886656,2678893567,US 2678893568,2678893823,CL 2678893824,2678901759,US 2678901760,2678902015,NZ 2678902016,2678902271,SG 2678902272,2678911231,US 2678911232,2678911487,NL 2678911488,2678911743,AU 2678911744,2678915071,US 2678915072,2678980607,FR 2678980608,2679046143,US 2679046144,2679111679,CA 2679111680,2679177215,US 2679177216,2679242751,CA 2679242752,2679308287,US 2679308288,2679373823,CH 2679373824,2679406591,GB 2679406592,2679414783,US 2679414784,2679415307,PR 2679415308,2679415308,DE 2679415309,2679418879,PR 2679418880,2679420927,SG 2679420928,2679422975,PR 2679422976,2679431167,US 2679431168,2679439359,FR 2679439360,2679515391,US 2679515392,2679515903,GB 2679515904,2679523327,US 2679523328,2679525375,GB 2679525376,2679535615,US 2679535616,2679537663,GB 2679537664,2680029183,US 2680029184,2680094719,SE 2680094720,2680160255,US 2680160256,2680225791,TH 2680225792,2680264191,SE 2680264192,2680264447,DK 2680264448,2680356863,SE 2680356864,2680422399,DK 2680422400,2680487935,AU 2680487936,2680553471,GB 2680553472,2680684543,US 2680684544,2680750079,SE 2680750080,2680881151,US 2680881152,2680897535,CA 2680897536,2681012223,US 2681012224,2681077759,PL 2681077760,2681143295,CA 2681143296,2681208831,AU 2681208832,2681274367,CA 2681274368,2681339903,US 2681339904,2681405439,IT 2681405440,2681470975,JP 2681470976,2681536511,US 2681536512,2681602047,IT 2681602048,2681700863,US 2681700864,2681701119,HK 2681701120,2681731071,US 2681731072,2681733119,FR 2681733120,2681798655,NO 2681798656,2681864191,FR 2681864192,2681929727,US 2681929728,2681995263,GB 2681995264,2682008575,US 2682008576,2682008831,GB 2682008832,2682014207,US 2682014208,2682014719,GB 2682014720,2682014725,TH 2682014726,2682014727,SG 2682014728,2682014975,TH 2682014976,2682015231,US 2682015232,2682015487,IN 2682015488,2682107903,US 2682107904,2682108159,GB 2682108160,2682257407,US 2682257408,2682322943,UA 2682322944,2682388479,US 2682388480,2682454015,CN 2682454016,2682519551,US 2682585088,2682716159,US 2682716160,2682781695,CA 2682781696,2682847231,CH 2682847232,2683043839,US 2683043840,2683109375,GB 2683109376,2683174911,ES 2683174912,2683240447,US 2683240448,2683305983,GB 2683305984,2683371519,US 2683371520,2683437055,CH 2683437056,2683568127,US 2683568128,2683633663,GB 2683637760,2683637859,FR 2683637861,2683638015,FR 2683638016,2683641855,NL 2683641856,2683645951,US 2683646208,2683650047,SG 2683650048,2683651071,US 2683699200,2683830271,US 2683830272,2683895807,AU 2683895808,2684157951,US 2684157952,2684159999,NL 2684160000,2684162047,NO 2684162048,2684164095,EE 2684164096,2684166143,SE 2684166144,2684170239,TR 2684170240,2684178431,GB 2684178432,2684180479,TR 2684180480,2684182527,DK 2684182528,2684184575,IT 2684184576,2684186623,SK 2684186624,2684188671,DE 2684188672,2684190719,RU 2684190720,2684198911,NL 2684198912,2684200959,GB 2684200960,2684203007,RU 2684203008,2684205055,GB 2684205056,2684207103,IT 2684207104,2684213247,GB 2684213248,2684215295,SE 2684215296,2684217343,BE 2684217344,2684219391,CZ 2684219392,2684221439,PL 2684221440,2684223487,IL 2684223488,2684289023,GB 2684289024,2684297215,RU 2684297216,2684299263,IR 2684299264,2684301311,CY 2684301312,2684305407,PT 2684305408,2684321791,RU 2684321792,2684329983,IT 2684329984,2684332031,IQ 2684332032,2684334079,DE 2684334080,2684338175,PL 2684338176,2684340223,ES 2684340224,2684344319,GB 2684344320,2684346367,NL 2684346368,2684354559,FI 2684420096,2684616703,US 2684616704,2684682239,NZ 2684682240,2684747775,GB 2684747776,2684813311,IE 2684813312,2684878847,US 2684878848,2684944383,SE 2684944384,2685009919,GB 2685009920,2685075455,US 2685075456,2685599743,JP 2685665280,2685992959,JP 2686058496,2686320639,JP 2686386176,2686844927,US 2686844928,2686910463,GB 2686910464,2686975999,US 2686976000,2687041535,GR 2687041536,2687238143,US 2687238144,2687297231,DE 2687297232,2687297239,GB 2687297240,2687297243,SE 2687297244,2687560191,DE 2687560192,2687560447,ZA 2687560448,2687762431,DE 2687762432,2687827967,AT 2687827968,2687893503,CH 2687893504,2688221183,DE 2688221184,2688286719,CH 2688286720,2688352255,DE 2688352256,2688420351,CH 2688420352,2688420607,CN 2688420608,2688548863,CH 2688548864,2688614399,AU 2688614400,2688679935,US 2688679936,2688745471,IT 2688745472,2688876543,NO 2688876544,2688942079,US 2688942080,2689007615,DE 2689007616,2689073151,FI 2689073152,2689138687,CA 2689138688,2689204223,US 2689204224,2689269759,JP 2689269760,2689335295,TR 2689335296,2689400831,US 2689466368,2689531903,IT 2689531904,2689535999,US 2689536000,2689536511,GB 2689536512,2689541631,US 2689541632,2689541887,GB 2689541888,2689545727,US 2689545728,2689546239,GB 2689546240,2689559807,US 2689559808,2689560063,GB 2689560064,2689566207,US 2689566208,2689566719,GB 2689566720,2689568255,US 2689568256,2689568767,GB 2689568768,2689586687,US 2689586688,2689587199,GB 2689587200,2689593343,US 2689593344,2689593855,GB 2689593856,2689594111,US 2689594112,2689594879,GB 2689594880,2689597439,US 2689597440,2689662975,IT 2689662976,2689801727,US 2689801728,2689801983,DE 2689801984,2689802751,US 2689802752,2689803263,TR 2689803264,2689803519,GB 2689803520,2689804799,US 2689804800,2689805055,GB 2689805056,2689818879,US 2689818880,2689819135,IN 2689819136,2689835007,US 2689835008,2689835263,AU 2689835264,2689925119,US 2689925120,2689990655,CH 2689990656,2690187263,US 2690318336,2690383871,US 2690383872,2690449407,FR 2690449408,2690646015,US 2690646016,2690711551,SG 2690711552,2690777087,IT 2690777088,2690842623,CH 2690842624,2690908159,RS 2690908160,2690973695,GB 2690973696,2691104767,US 2691104768,2691170303,FR 2691170304,2691235839,GB 2691301376,2691366911,CA 2691366912,2691760127,US 2691825664,2691891199,HU 2691891200,2692218879,ZA 2692218880,2692284415,CI 2692284416,2692546559,ZA 2692546560,2694316031,US 2694316032,2694381567,NG 2694381568,2694447103,US 2694447104,2694578175,CI 2694578176,2694840319,TN 2694840320,2696151039,MA 2696151040,2696216575,IT 2696216576,2696282111,BG 2696413184,2696478719,ZA 2696478720,2696871935,JP 2696937472,2697789439,JP 2697789440,2697854975,US 2697854976,2697889791,AU 2697889792,2697891839,US 2697891840,2697892095,GB 2697892096,2697892863,AU 2697892864,2697894399,US 2697894400,2697920511,AU 2697920512,2698117119,US 2698117120,2698182655,IS 2698182656,2698248191,DE 2698248192,2698313727,US 2698313728,2698379263,DE 2698379264,2698444799,ES 2698444800,2698510335,JP 2698510336,2698706943,CZ 2698706944,2698772479,CH 2698772480,2698838015,IT 2698838016,2698903551,BE 2698903552,2698969087,AU 2698969088,2699034623,CA 2699034624,2699165695,AO 2699165696,2699198463,NG 2699231232,2699296767,US 2699296768,2699362303,FR 2699362304,2699624447,US 2699624448,2699689983,JP 2699755520,2699821055,JP 2699886592,2699984895,JP 2700017664,2700214271,JP 2700214272,2700247039,NA 2700247040,2700263423,UG 2700279808,2700738559,JP 2700804096,2700935167,JP 2700935168,2701066239,US 2701066240,2701131775,BG 2701131776,2701131807,HN 2701131808,2701131823,CA 2701131824,2701132543,HN 2701132544,2701132559,CR 2701132560,2701136047,HN 2701136048,2701136055,US 2701136056,2701139135,HN 2701139136,2701139151,UY 2701139152,2701139967,HN 2701139968,2701148159,NI 2701148160,2701149183,AR 2701149184,2701150207,HN 2701150208,2701152255,AR 2701152256,2701156351,BQ 2701156352,2701160447,CW 2701160448,2701162495,TT 2701162496,2701164543,UY 2701164544,2701170687,HT 2701170688,2701172735,TT 2701172736,2701176831,CL 2701176832,2701178879,AR 2701178880,2701180927,CL 2701180928,2701189119,HN 2701189120,2701197311,TT 2701197312,2701262847,US 2701262848,2701328383,GB 2701328384,2701393919,FR 2701393920,2701459455,NO 2701459456,2701524991,AT 2701524992,2701656063,US 2701656064,2701688831,RU 2701688832,2701721087,US 2701721088,2701721599,RU 2701721600,2701787135,TR 2701787136,2701852671,CO 2701852672,2701918207,US 2701918208,2701983743,GB 2701983744,2702245887,US 2702245888,2702311423,GB 2702311424,2702376959,CO 2702376960,2702442495,CA 2702442496,2702508031,CH 2702508032,2702573567,US 2702573568,2702581759,AR 2702581760,2702583807,VE 2702583808,2702585855,MX 2702585856,2702586367,PA 2702586368,2702587903,CW 2702587904,2702589951,BR 2702589952,2702606335,GF 2702606336,2702639103,BO 2702639104,2702704639,GB 2702704640,2702770175,BR 2702770176,2702835711,CL 2702835712,2702901247,US 2702901248,2702966783,IT 2702966784,2703032319,US 2703032320,2703097855,AU 2703097856,2703163391,GB 2703163392,2703556607,US 2703556608,2703622143,ES 2703622144,2703818751,US 2703818752,2703884287,FI 2703884288,2703949823,DE 2703949824,2704015359,AU 2704015360,2704277503,US 2704277504,2704343039,FR 2704343040,2704408575,US 2704408576,2704474111,AU 2704474112,2704476927,US 2704476928,2704477183,GB 2704477184,2704485119,US 2704485120,2704485375,AU 2704485376,2704539647,US 2704539648,2704605183,SE 2704605184,2704670719,HR 2704670720,2704736255,SE 2704736256,2704801791,US 2704801792,2704867327,BO 2704867328,2704998399,US 2704998400,2705063935,BE 2705063936,2705195007,US 2705195008,2705260543,CH 2705260544,2705326079,US 2705326080,2705391615,MO 2705391616,2705399807,AU 2705399808,2705407999,NZ 2705408000,2705432575,AU 2705432576,2705440767,NZ 2705440768,2705457151,AU 2705457152,2705522687,NZ 2705522688,2705588223,ES 2705588224,2705596159,US 2705596160,2705596415,CA 2705596416,2705688319,US 2705688320,2705688575,DE 2705688576,2705691647,US 2705691648,2705692671,GB 2705692672,2705710079,US 2705710080,2705711103,IN 2705711104,2705784831,US 2705784832,2705850367,GB 2705850368,2705915903,ES 2705915904,2706046975,GB 2706046976,2706112511,JP 2706112512,2706178047,GB 2706178048,2706243583,US 2706243584,2706309119,CH 2706309120,2706374655,BR 2706374656,2706571263,US 2706571264,2706694143,NL 2706694144,2706702335,US 2706702336,2706960383,NL 2706960384,2706964479,US 2706964480,2707226623,NL 2707226624,2707488767,JP 2707488768,2707947519,US 2707947520,2708144127,FR 2708144128,2708340735,US 2708340736,2708406271,AT 2708406272,2708471807,ES 2708471808,2708537343,GB 2708537344,2708733951,US 2708733952,2708799487,ES 2708799488,2708865023,AU 2708865024,2708930559,JP 2708930560,2709127167,US 2709127168,2709192703,KR 2709192704,2709242111,ZA 2709242112,2709242367,US 2709242368,2709242623,ZA 2709242624,2709242879,US 2709242880,2709243135,ZA 2709243136,2709243391,US 2709243392,2709243647,ZA 2709243648,2709243903,US 2709243904,2709244159,ZA 2709244160,2709244415,US 2709244416,2709244671,ZA 2709244672,2709244927,US 2709244928,2709245183,ZA 2709245184,2709245439,US 2709245440,2709245695,ZA 2709245696,2709245951,US 2709245952,2709246207,ZA 2709246208,2709246463,US 2709246464,2709258239,ZA 2709258240,2709389311,US 2709389312,2709454847,SG 2709454848,2709716991,US 2709716992,2709782527,CL 2709782528,2709848063,PE 2709848064,2710175743,US 2710175744,2710241279,BO 2710241280,2710306815,MY 2710306816,2710372351,VE 2710372352,2710437887,CA 2710437888,2710503423,MY 2710503424,2710568959,AU 2710568960,2710700031,US 2710700032,2710765567,AU 2710765568,2710831103,IT 2710831104,2710896639,BR 2710896640,2711093247,US 2711093248,2711158783,AU 2711158784,2711486463,US 2711486464,2711551999,NL 2711552000,2713190399,US 2713190400,2713255935,CA 2713255936,2713387007,US 2713387008,2713452543,CA 2713452544,2713583615,US 2713583616,2713649151,AR 2713649152,2713946367,US 2713946368,2713946623,CA 2713946624,2713976831,US 2713976832,2714042367,VE 2714042368,2714238975,US 2714238976,2714304511,TH 2714304512,2714370799,US 2714370800,2714370815,PH 2714370816,2714370895,US 2714370896,2714370911,CN 2714370912,2714373127,US 2714373128,2714373128,SG 2714373129,2714386431,US 2714386432,2714402815,JP 2714402816,2714407160,US 2714407161,2714407161,JP 2714407162,2714697727,US 2714697728,2714763263,CN 2714763264,2715025407,US 2715025408,2715090943,VE 2715090944,2715287551,US 2715287552,2715353087,CA 2715353088,2716139519,US 2716139520,2716205055,SG 2716205056,2716467199,US 2716467200,2716532735,VE 2716532736,2716729343,US 2716729344,2716794879,CL 2716794880,2717253631,US 2717253632,2717319167,TH 2717319168,2717384703,US 2717450240,2717646847,US 2717646848,2717712383,KW 2717712384,2717843455,US 2717843456,2717908991,VE 2717908992,2717974527,CA 2717974528,2718171135,US 2718236672,2718629887,US 2718629888,2718695423,GB 2718695424,2718745599,US 2718751744,2718752767,US 2718755840,2718756863,US 2718758912,2718760959,US 2718760960,2718826495,GB 2718826496,2719285247,US 2719285248,2719350783,CH 2719350784,2719416319,US 2719416320,2719481855,CH 2719481856,2719547391,US 2719547392,2719612927,AT 2719612928,2719678463,CH 2719678464,2720399359,US 2720399360,2720464895,FR 2720464896,2720849919,US 2720849920,2720850175,GB 2720850176,2721382399,US 2721382400,2721447935,CA 2721447936,2721579007,US 2721579008,2721644543,IN 2721644544,2722496511,US 2722496512,2722562047,CA 2722562048,2722693119,US 2722693120,2722758655,CA 2722758656,2723479551,US 2723479552,2723545087,CA 2723545088,2723610623,CH 2723610624,2723832575,US 2723832576,2723832831,GB 2723832832,2724268287,US 2724268288,2724268543,MX 2724268544,2724303989,US 2724303990,2724303990,GB 2724303991,2724304013,US 2724304014,2724304014,GB 2724304015,2724790271,US 2724790272,2724855807,CN 2724855808,2724921343,CA 2724921344,2725249023,US 2725249024,2725314559,NZ 2725314560,2725904383,US 2725904384,2725969919,VE 2725969920,2727018495,US 2727018496,2727084031,CA 2727084032,2727411711,US 2727411712,2727608319,AU 2727608320,2728132607,US 2728132608,2728263679,CA 2728263680,2728263935,US 2728263936,2728264703,AU 2728264704,2728266495,US 2728266496,2728266751,QA 2728266752,2728269823,US 2728269824,2728270847,MY 2728270848,2728273407,US 2728273408,2728273663,IE 2728273664,2728274943,US 2728274944,2728276991,IN 2728276992,2728282271,US 2728282272,2728282303,CA 2728282304,2728286207,US 2728286208,2728286463,DE 2728286464,2728289023,US 2728289024,2728289279,AE 2728289280,2728292351,US 2728292352,2728293375,DE 2728293376,2728328191,US 2728328192,2728329215,SG 2728329216,2731543551,US 2731543552,2731544575,CA 2731544576,2731549695,US 2731549696,2731550719,CA 2731550720,2731555839,US 2731555840,2731556863,CA 2731556864,2731560959,US 2731560960,2731561983,CA 2731561984,2731563007,US 2731563008,2731564031,CA 2731564032,2731566079,US 2731566080,2731567103,CA 2731567104,2731573247,US 2731573248,2731606015,CA 2731606016,2731667455,US 2731667456,2731671551,HK 2731671552,2731673599,US 2731673600,2731674623,CA 2731674624,2731676671,US 2731677696,2731679743,US 2731679744,2731680767,CA 2731680768,2731681791,US 2731681792,2731682815,PR 2731682816,2731685887,US 2731685888,2731686911,CA 2731686912,2731688959,US 2731688960,2731689983,VG 2731689984,2731711487,US 2731711488,2731712511,AG 2731712512,2731714559,CA 2731714560,2731717631,US 2731717632,2731718655,CA 2731718656,2731728895,US 2731728896,2731729919,CA 2731729920,2731761663,US 2731761664,2731763711,CA 2731763712,2731765759,US 2731765760,2731767807,CA 2731767808,2731771903,US 2731771904,2731772927,KY 2731772928,2731782655,US 2731782656,2731783167,GB 2731783168,2731784191,US 2731784192,2731785215,CA 2731785216,2731786239,US 2731786240,2731788287,CA 2731788288,2731790335,US 2731790336,2731792383,CA 2731792384,2731795455,US 2731795456,2731796479,DE 2731796480,2731797503,CA 2731798528,2731800575,US 2731800576,2731801599,CA 2731801600,2731804671,US 2731804672,2731805695,CA 2731805696,2731806463,BB 2731806464,2731806719,VG 2731806720,2731807743,US 2731807744,2731808767,CA 2731808768,2731819007,US 2731819008,2731821055,CA 2731821056,2731828223,US 2731828224,2731829247,CA 2731829248,2731831295,US 2731831296,2731832319,CA 2731832320,2731836927,US 2731836928,2731837183,IS 2731837184,2731843583,US 2731843584,2731845631,PR 2731845632,2731853823,US 2731853824,2731855871,CA 2731855872,2731856127,VC 2731856128,2731856383,LC 2731856384,2731856895,VC 2731856896,2731862015,US 2731862016,2731864063,CA 2731864064,2731870207,US 2731870208,2731871231,CA 2731871232,2731894783,US 2731894784,2731896831,CA 2731896832,2731902975,US 2731902976,2731903999,CA 2731904000,2731908095,US 2731908096,2731909119,CA 2731909120,2731911167,US 2731911168,2731912191,DM 2731912192,2731921663,US 2731921664,2731921727,BE 2731921728,2732086271,US 2732086272,2732087295,CA 2732087296,2732105727,US 2732105728,2732107775,JM 2732107776,2732109823,US 2732110848,2732111871,US 2732111872,2732113919,CA 2732113920,2732136447,US 2732136448,2732138495,CA 2732138496,2732159999,US 2732161024,2732170239,US 2732171264,2732189695,US 2732189696,2732192767,CA 2732192768,2732201983,US 2732201984,2732203007,VG 2732203008,2732204031,US 2732204032,2732206079,CA 2732206080,2732220287,US 2732220288,2732220400,CA 2732220401,2732220401,US 2732220402,2732220415,CA 2732220416,2732227583,US 2732227584,2732228607,CA 2732228608,2732261375,US 2732261376,2732265471,CA 2732265472,2732273663,US 2732273664,2732275711,CA 2732275712,2732278783,US 2732278784,2732279807,CA 2732279808,2732302335,US 2732302336,2732303359,CA 2732303360,2732306431,US 2732306432,2732307455,CA 2732307456,2732308479,US 2732308480,2732310527,CA 2732310528,2732320767,US 2732320768,2732321023,AU 2732321024,2732321279,BM 2732321280,2732321535,CA 2732321536,2732321791,GB 2732321792,2732322815,CA 2732322816,2732336127,US 2732336128,2732337151,CA 2732337152,2732351487,US 2732351488,2732353535,PR 2732353536,2732361727,US 2732361728,2732362495,BB 2732362496,2732363007,DM 2732363008,2732363775,BB 2732363776,2732371967,US 2732372992,2732375039,US 2732375040,2732376063,CA 2732376064,2732379135,US 2732379136,2732380159,CA 2732380160,2732389887,US 2732389888,2732390143,IT 2732390144,2732390399,US 2732390400,2732391423,CA 2732391424,2732395519,US 2732395520,2732396543,CA 2732396544,2732423167,US 2732423168,2732425215,CA 2732425216,2732443647,US 2732443648,2732445695,CA 2732445696,2732446719,US 2732446720,2732447743,BM 2732447744,2732455935,US 2732455936,2732457983,CA 2732457984,2732472319,US 2732472320,2732474367,CA 2732474368,2732475391,US 2732475392,2732476415,CA 2732476416,2732478463,US 2732478464,2732479487,CA 2732479488,2732480511,AG 2732480512,2732485631,US 2732485632,2732486655,PR 2732486656,2732488703,US 2732488704,2732490751,CA 2732490752,2732492799,US 2732492800,2732493823,CA 2732493824,2732494847,US 2732494848,2732495871,CA 2732495872,2732497919,US 2732497920,2732499967,CA 2732499968,2732500223,US 2732500224,2732500479,TW 2732500480,2732515327,US 2732515328,2732515583,VG 2732515584,2732523519,US 2732523520,2732525567,CA 2732525568,2732534783,US 2732534784,2732536831,CA 2732536832,2732549119,US 2732549120,2732550143,CA 2732550144,2732580863,US 2732580864,2732582911,CA 2732582912,2733882879,US 2733882880,2733883135,CA 2733883136,2733903871,US 2733903872,2733904895,PR 2733904896,2733907967,CA 2733907968,2733911039,US 2733911040,2733912063,CA 2733912064,2733922303,US 2733922304,2733923327,CA 2733923328,2733930495,US 2733930496,2733931519,CA 2733931520,2733942783,US 2733942784,2733943807,PR 2733943808,2733953023,US 2733953024,2733954047,CA 2733954048,2733958143,US 2733958144,2733959167,CA 2733959168,2733963263,US 2733963264,2733964287,CA 2733964288,2733979647,US 2733979648,2733980671,CA 2733980672,2733984767,US 2733984768,2733985791,VC 2733985792,2734002175,US 2734002176,2734003199,CA 2734003200,2734004223,US 2734004224,2734005247,GD 2734005248,2734018559,US 2734018560,2734020607,CA 2734020608,2734026751,US 2734026752,2734030847,CA 2734030848,2734031871,JM 2734031872,2734032895,US 2734032896,2734034943,CA 2734034944,2734044159,US 2734044160,2734045183,CA 2734045184,2734057471,US 2734057472,2734059519,BB 2734059520,2734063615,US 2734063616,2734064639,CA 2734064640,2734070783,US 2734070784,2734071807,CA 2734071808,2734074879,US 2734074880,2734075903,PR 2734075904,2734077951,US 2734077952,2734078207,GB 2734078208,2734099455,US 2734099456,2734102527,CA 2734102528,2734104575,VI 2734104576,2734105599,US 2734105600,2734106623,CA 2734106624,2734119935,US 2734119936,2734120959,CA 2734120960,2734123007,VG 2734123008,2734125055,US 2734125056,2734129151,CA 2734129152,2734139391,US 2734139392,2734140415,CA 2734140416,2734152703,US 2734152704,2734153727,KY 2734153728,2734155775,CA 2734155776,2734163967,US 2734163968,2734164991,CA 2734164992,2734170111,US 2734170112,2734172159,CA 2734172160,2734173183,US 2734173184,2734174207,PR 2734174208,2734192639,US 2734192640,2734194687,CA 2734194688,2734197759,US 2734197760,2734198783,CA 2734198784,2734200831,US 2734200832,2734205951,CA 2734205952,2734206975,US 2734206976,2734209023,CA 2734209024,2734218239,US 2734218240,2734218751,CA 2734218752,2734229503,US 2734229504,2734230527,CA 2734230528,2734237695,US 2734237696,2734238719,CA 2734238720,2734249983,US 2734249984,2734252031,CA 2734252032,2734260223,US 2734260224,2734262271,KY 2734262272,2734268415,US 2734268416,2734269439,CA 2734269440,2734274559,US 2734275584,2734287871,US 2734287872,2734288895,CA 2734288896,2734296063,US 2734296064,2734297087,CA 2734297088,2734304255,US 2734304256,2734305279,CA 2734305280,2734330367,US 2734330368,2734330431,IT 2734330432,2734330623,US 2734330624,2734330879,IT 2734330880,2734335999,US 2734336000,2734338047,CA 2734338048,2734341119,US 2734341120,2734344191,CA 2734344192,2734349311,US 2734349312,2734350335,CA 2734350336,2734362623,US 2734362624,2734363647,CA 2734363648,2734364671,VG 2734364672,2734373887,US 2734373888,2734374911,CA 2734374912,2734376959,US 2734376960,2734379007,CA 2734379008,2734381055,VG 2734381056,2734389247,US 2734389248,2734389503,CA 2734389504,2734389535,US 2734389536,2734390271,CA 2734390272,2734398463,US 2734398464,2734399487,PR 2734399488,2734407679,US 2734407680,2734409727,CA 2734409728,2734435327,US 2734435328,2734436351,CA 2734436352,2734439167,US 2734439168,2734439423,GB 2734439424,2734447615,US 2734447616,2734448639,CA 2734448640,2734452735,US 2734452736,2734454783,CA 2734454784,2734457855,US 2734457856,2734458879,CA 2734458880,2734471167,US 2734471168,2734472191,CA 2734472192,2734473215,AG 2734473216,2734479359,US 2734479360,2734481407,CA 2734481408,2734485503,US 2734485504,2734486527,CA 2734486528,2734488575,US 2734488576,2734489599,CA 2734489600,2734491647,US 2734491648,2734492671,CA 2734492672,2734502911,US 2734502912,2734503935,CA 2734503936,2734515199,US 2734515200,2734516223,DM 2734516224,2734522367,US 2734522368,2734523391,CA 2734523392,2734524415,US 2734524416,2734526463,CA 2734526464,2734532607,US 2734532608,2734533631,VI 2734533632,2734542847,US 2734542848,2734544895,CA 2734544896,2734553087,US 2734553088,2734555135,CA 2734555136,2734557183,CN 2734557184,2734565375,US 2734565376,2734566399,CA 2734566400,2734577151,US 2734577152,2734577167,LU 2734577168,2734588927,US 2734588928,2734589951,CA 2734589952,2734599167,US 2734599168,2734600191,CA 2734600192,2734605311,US 2734605312,2734605567,GB 2734605568,2734605823,DE 2734605824,2734606079,SE 2734606080,2734633983,US 2734633984,2734635007,CA 2734635008,2734649343,US 2734649344,2734650367,CA 2734650368,2734657535,US 2734657536,2734658559,VG 2734658560,2734659583,CA 2734659584,2734665727,US 2734665728,2734666751,CA 2734666752,2734672895,US 2734672896,2734675967,CA 2734675968,2734678015,BM 2734678016,2734679039,US 2734679040,2734680063,CA 2734680064,2734684159,US 2734684160,2734686207,CA 2734686208,2734751743,CN 2734751744,2734817279,GB 2734817280,2734882815,US 2734882816,2734948351,SE 2734948352,2735013887,US 2735013888,2735079423,FR 2735079424,2735144959,US 2735144960,2735210495,NZ 2735210496,2735276031,AU 2735276032,2735341567,FR 2735341568,2735407103,AR 2735407104,2735538175,US 2735538176,2736848895,TW 2736848896,2736914431,US 2736914432,2736979967,NO 2736979968,2737438719,US 2737438720,2737594367,JP 2737594368,2737602559,US 2737602560,2737610751,SG 2737610752,2737767423,JP 2737767424,2737768447,CN 2737768448,2737769471,SG 2737769472,2737770495,IN 2737770496,2737771263,AU 2737771264,2737771519,JP 2737771520,2737771775,AU 2737771776,2737772031,NZ 2737772288,2737774591,JP 2737774592,2737776639,BD 2737776640,2737777663,AU 2737777664,2737778175,HK 2737778432,2737781759,AU 2737781760,2737782783,US 2737782784,2737785855,AU 2737785856,2737788927,BD 2737788928,2737789951,MY 2737789952,2737793023,AU 2737793024,2737794047,NZ 2737794048,2737795071,AU 2737795072,2737796095,NZ 2737796096,2737799167,AU 2737799168,2737800191,NZ 2737800192,2737802239,AU 2737802240,2737803263,IN 2737803264,2737804287,BD 2737804288,2737805311,NP 2737805312,2737806335,IN 2737806336,2737807359,BD 2737807360,2737808383,AF 2737808384,2737809407,NZ 2737809408,2737810431,AU 2737810432,2737811455,KH 2737811456,2737811711,SG 2737811712,2737811967,HK 2737811968,2737812223,GB 2737812224,2737812479,US 2737812480,2737813503,AU 2737813504,2737815551,NZ 2737815552,2737816575,MY 2737816576,2737817599,AU 2737817600,2737818111,MY 2737818112,2737818367,AU 2737818368,2737818623,MY 2737818624,2737819647,NZ 2737819648,2737821695,IN 2737821696,2737822719,AU 2737822720,2737823743,NZ 2737823744,2737824767,NC 2737824768,2737829887,NZ 2737829888,2737830911,NC 2737830912,2737831935,AU 2737831936,2738094079,JP 2738159616,2738163711,CN 2738163712,2738164735,HK 2738164736,2738165759,AU 2738165760,2738166783,NP 2738166784,2738167807,KH 2738167808,2738168831,AU 2738168832,2738177023,CN 2738177024,2738178047,AU 2738179072,2738182143,IN 2738182144,2738195455,CN 2738195456,2738196479,BD 2738196480,2738197503,AU 2738197504,2738198527,BD 2738198528,2738199551,MY 2738199552,2738200575,KR 2738200576,2738204671,CN 2738204672,2738205695,IN 2738205696,2738206719,BD 2738206720,2738207743,ID 2738207744,2738208767,CN 2738208768,2738209791,ID 2738209792,2738210815,KH 2738210816,2738213887,IN 2738214912,2738215935,HK 2738215936,2738216959,CN 2738216960,2738217983,HK 2738217984,2738220031,AU 2738220032,2738221055,PK 2738221056,2738222079,CN 2738222080,2738223103,MO 2738223104,2738224127,AU 2738224128,2738225151,IN 2738225152,2738421759,JP 2738487296,2738683903,JP 2738749440,2742353919,FR 2742353920,2742419455,ES 2742419456,2742484991,US 2742484992,2742550527,GB 2742550528,2742616063,US 2742616064,2742681599,EG 2742681600,2742747135,IN 2742747136,2742779903,CA 2742812672,2742878207,US 2742878208,2742943743,CN 2742943744,2743009279,US 2743140352,2743205887,US 2743205888,2743992319,JP 2743992320,2744057855,CN 2744057856,2744516607,JP 2744516608,2744647679,US 2744647680,2744713215,KR 2744713216,2744844287,US 2744844288,2744909823,CA 2744909824,2744975359,GB 2744975360,2745040895,SE 2745040896,2745106431,NL 2745106432,2745171967,SI 2745171968,2745237503,GB 2745237504,2745303039,CH 2745303040,2745368575,IT 2745368576,2745434111,BE 2745434112,2745499647,GB 2745499648,2745548799,BE 2745548800,2745565183,DE 2745565184,2745696255,GB 2745696256,2745761791,CH 2745761792,2746023935,GB 2746023936,2746089471,FR 2746089472,2746155007,NO 2746155008,2746220543,NL 2746220544,2746286079,US 2746286080,2746351615,CN 2746351616,2746417151,CR 2746417152,2746482687,CN 2746482688,2746548223,KR 2746548224,2747072511,US 2747072512,2747138047,AU 2747138048,2747465727,US 2747465728,2748055551,ZA 2748055552,2748121087,CN 2748121088,2748317695,US 2748317696,2748645375,JP 2748645376,2748710911,KR 2748710912,2748841983,JP 2748907520,2749235199,JP 2749235200,2749300735,KR 2749300736,2749628415,JP 2749628416,2749693951,US 2749693952,2749759487,KR 2749759488,2749890559,US 2749890560,2750021631,AU 2750021632,2750349311,US 2750349312,2750414847,KR 2750414848,2750739967,US 2750739968,2750740223,CN 2750740224,2750873599,US 2750873600,2750939135,CL 2750939136,2751070207,US 2751070208,2751135743,CL 2751135744,2751176703,US 2751176704,2751176959,GU 2751176960,2751397887,US 2751397888,2751463423,KR 2751463424,2751528959,KZ 2751528960,2751660031,FR 2751660032,2751716351,AT 2751716352,2751716607,US 2751716608,2751725567,AT 2751725568,2751791103,SE 2751791104,2751856639,FI 2751856640,2751922175,GB 2751922176,2751987711,FR 2751987712,2752053247,SI 2752053248,2752184319,SE 2752184320,2752315391,GB 2752315392,2752380927,FI 2752380928,2752446463,CH 2752446464,2752511999,BE 2752512000,2753757183,DE 2753757184,2753822719,BE 2753822720,2753888255,GB 2753888256,2753953791,SE 2753953792,2754084863,GB 2754084864,2754117631,KZ 2754117632,2754125823,NL 2754125824,2754127359,DE 2754127360,2754127615,US 2754127616,2754127871,DE 2754127872,2754129919,SK 2754129920,2754131967,SE 2754134016,2754138111,DE 2754138112,2754142207,GB 2754142208,2754144255,BA 2754144256,2754146303,DE 2754146304,2754148351,PL 2754148352,2754150399,MK 2754150400,2754215935,BR 2754215936,2754281471,PR 2754281472,2754347007,JP 2754347008,2754478079,US 2754478080,2754543615,JP 2754543616,2754609151,US 2754609152,2754674687,SE 2754674688,2754936831,US 2754936832,2755002367,AU 2755002368,2755330047,US 2755330048,2755526655,DE 2755526656,2755985407,US 2755985408,2756182015,JP 2756182016,2756247551,US 2756247552,2756313087,UY 2756313088,2756378623,US 2756378624,2756444159,AU 2756444160,2756509695,US 2756509696,2756556543,CL 2756556544,2756557311,PE 2756557312,2756575231,CL 2756575232,2756640767,SG 2756640768,2756706303,US 2756706304,2756771839,AU 2756771840,2756837375,FR 2756837376,2757033983,US 2757033984,2757099519,BR 2757099520,2757230591,US 2757230592,2757296127,ZA 2757296128,2757394431,US 2757394432,2757394687,GB 2757394688,2757754879,US 2757754880,2757820415,CL 2757820416,2757885951,AU 2757885952,2757951487,CL 2757951488,2758017023,US 2758017024,2758082559,IN 2758082560,2758148095,US 2758148096,2758213631,CA 2758213632,2758541311,US 2758541312,2758606847,AU 2758606848,2758803455,US 2758803456,2758868991,AU 2758868992,2759000063,US 2759000064,2759065599,TH 2759065600,2759589887,US 2759589888,2759720959,KR 2759720960,2759852031,PL 2759852032,2759917567,CH 2759917568,2759983103,FR 2759983104,2760048639,IT 2760048640,2760114175,FR 2760114176,2760179711,IT 2760179712,2760245247,DE 2760245248,2760310783,GB 2760310784,2760376319,SE 2760376320,2760507391,GB 2760507392,2760511487,RU 2760511488,2760513535,IR 2760513536,2760515583,NL 2760515584,2760517631,RU 2760517632,2760519679,KZ 2760519680,2760521727,IT 2760521728,2760523775,FR 2760523776,2760527871,CH 2760527872,2760529919,GB 2760529920,2760531967,RU 2760534016,2760536063,BE 2760536064,2760540159,IL 2760540160,2760556543,IR 2760556544,2760558591,DE 2760558592,2760562687,ES 2760562688,2760564735,BG 2760564736,2760566783,GB 2760566784,2760568831,IQ 2760568832,2760570879,FR 2760570880,2760572927,NL 2760572928,2760638463,DE 2760638464,2760703999,NL 2760704000,2760769535,FI 2760769536,2760835071,IT 2760835072,2760898559,GB 2760898560,2760899583,US 2760899584,2760900607,GB 2760900608,2761031679,US 2761031680,2761424895,ZA 2761424896,2761621503,US 2761621504,2761687039,ZA 2761687040,2761949183,US 2762014720,2762145791,JP 2762211328,2762276863,IN 2762276864,2762342399,US 2762342400,2762407935,CA 2762407936,2763063295,US 2763063296,2763096063,FR 2763096064,2763104255,GB 2763104256,2763108351,DE 2763108352,2763110399,RU 2763110400,2763112447,NL 2763112448,2763128831,BY 2763128832,2763194367,CA 2763194368,2765553663,US 2765553664,2765561855,CY 2765561856,2765563903,FI 2765563904,2765565951,IR 2765565952,2765567999,RU 2765568000,2765570047,IR 2765570048,2765578239,RU 2765578240,2765580287,AZ 2765580288,2765582335,GB 2765582336,2765586431,CZ 2765586432,2765619199,IR 2765619200,2768240639,US 2768306176,2768437247,US 2768437248,2768633855,ZA 2768633856,2768764927,US 2768764928,2769027071,ZA 2769027072,2769092607,AU 2769092608,2769158143,US 2769158144,2769223679,JP 2769485824,2769616895,US 2769616896,2769682431,SG 2769682432,2769747967,US 2769747968,2769813503,CA 2769813504,2769879039,US 2769879040,2769944575,ZA 2769944576,2769999871,US 2769999872,2769999935,GB 2769999936,2770272255,US 2770272256,2770337791,AU 2770337792,2770993151,US 2770993152,2771124223,IN 2771124224,2771451903,US 2771517440,2771648511,TN 2771648512,2771910655,ZA 2771910656,2772434943,ZM 2772434944,2772631551,US 2772697088,2772762623,US 2772762624,2772828159,AU 2772828160,2772959231,US 2772959232,2773024767,CZ 2773090304,2773221375,US 2773221376,2773286911,JP 2773286912,2773745663,US 2773745664,2773794815,NZ 2773794816,2773798911,IN 2773798912,2773805055,NZ 2773805056,2773807103,JP 2773807104,2773811199,IN 2773811200,2773876735,US 2773876736,2773942271,AU 2773942272,2774138879,US 2774155264,2774163455,MZ 2774163456,2774171647,CV 2774171648,2774188031,RE 2774188032,2774192127,ZA 2774192128,2774196223,ML 2774196224,2774200319,ZA 2774200320,2774204415,NG 2774204416,2774335487,US 2774335488,2774401023,JP 2774401024,2774532095,US 2774532096,2774597631,JP 2774597632,2774663167,US 2774663168,2774728703,NI 2774728704,2774860799,JP 2774925312,2774990847,JP 2774990848,2775318527,US 2775318528,2775384063,JP 2775384064,2775711743,US 2775711744,2775777279,NL 2775777280,2775842815,CA 2775842816,2775973887,US 2775973888,2776039423,AU 2776039424,2776104959,US 2776104960,2776170495,GB 2776170496,2776478463,US 2776478464,2776478719,ZA 2776478720,2776478975,US 2776478976,2776479231,AU 2776479232,2776891391,US 2776891392,2777022463,KR 2777022464,2777481215,US 2777481216,2777546751,KR 2777546752,2777612287,AU 2777612288,2778071039,ZA 2778071040,2778333183,US 2778333184,2778398719,CA 2778398720,2779054079,US 2779054080,2779119615,ZA 2779119616,2779316223,US 2779316224,2779381759,RE 2779381760,2779906047,US 2779906048,2779971583,CA 2779971584,2780037119,US 2780037120,2780102655,ZA 2780102656,2780168191,US 2780168192,2780299263,CL 2780299264,2780364799,US 2780364800,2780430335,CA 2780430336,2780495871,KR 2780495872,2780561407,AU 2780561408,2780758015,US 2780758016,2780823551,AU 2780823552,2780925951,US 2780925952,2780926207,GB 2780926208,2780926975,US 2780926976,2780927487,GB 2780927488,2780927743,US 2780927744,2780927999,GB 2780928000,2780929023,US 2780929024,2780929279,GB 2780929280,2780929791,FR 2780929792,2780930047,US 2780930048,2780930559,GB 2780930560,2780931071,US 2780931072,2780932351,GB 2780932352,2780932607,US 2780932608,2780933119,GB 2780933120,2780933375,US 2780933376,2780933631,GB 2780933632,2780933887,US 2780933888,2780934143,GB 2780934144,2780934911,US 2780934912,2780935167,GB 2780935168,2780954623,US 2780954624,2781020159,KR 2781020160,2781206527,US 2781206528,2781207551,GB 2781207552,2781208575,DE 2781208576,2781478911,US 2781478912,2781544447,HK 2781544448,2781623807,US 2781623808,2781624319,CA 2781624320,2781628415,US 2781628416,2781628671,DE 2781628672,2781630463,US 2781630464,2781631487,MY 2781631488,2781675519,US 2781675520,2781741055,NZ 2781741056,2781937663,US 2781937664,2782003199,TH 2782134272,2782199807,US 2782199808,2782265343,KR 2782265344,2782372863,US 2782372864,2782373887,GB 2782373888,2782658559,US 2782658560,2782724095,PH 2782724096,2782789631,US 2782789632,2782855167,CH 2782855168,2782995455,US 2782995456,2782995967,CA 2782995968,2783002623,US 2783002624,2783002879,DK 2783002880,2783003135,US 2783003136,2783003391,RU 2783003392,2783003647,US 2783003648,2783003903,SE 2783003904,2783004159,US 2783004160,2783004671,CH 2783004672,2783005439,DE 2783005440,2783005695,US 2783005696,2783006719,FR 2783006720,2783007743,GB 2783007744,2783010815,US 2783010816,2783011327,HK 2783011328,2783011583,AU 2783011584,2783011839,US 2783011840,2783012351,JP 2783012352,2783012607,TW 2783012608,2783012863,US 2783012864,2783013375,IN 2783013376,2783182847,US 2783182848,2783248383,AU 2783248384,2783313919,KR 2783313920,2783379455,US 2783379456,2783383551,SC 2783383552,2783387647,CA 2783387648,2783391743,GB 2783391744,2783395839,US 2783395840,2783399935,DE 2783399936,2783404031,FR 2783404032,2783408127,NL 2783408128,2783412223,NO 2783412224,2783416319,SE 2783416320,2783420415,RU 2783420416,2783424511,EE 2783424512,2783428607,JP 2783428608,2783436799,US 2783436800,2783440895,IT 2783440896,2783444991,IN 2783444992,2783510527,US 2783510528,2783576063,ZA 2783576064,2783969279,US 2783969280,2784034815,AU 2784034816,2784165887,JP 2784165888,2784296959,KR 2784296960,2784362495,US 2784362496,2784428031,KR 2784428032,2784952063,US 2784952064,2784952319,NL 2784952320,2785017855,ZA 2785017856,2785804287,US 2785804288,2786066431,CH 2786066432,2788163583,US 2788163584,2788229119,CA 2788229120,2788261887,US 2788261888,2788294655,GB 2788294656,2789113855,US 2789113856,2789146623,CA 2789146624,2789200895,US 2789200896,2789201151,GB 2789201152,2789212159,US 2789212160,2789277695,AU 2789277696,2789343231,NZ 2789343232,2789933055,US 2789933056,2789998591,CL 2789998592,2790195199,US 2790195200,2790260735,KR 2790260736,2790326271,US 2790391808,2790457343,US 2790457344,2790522879,NZ 2790522880,2790588415,US 2790588416,2790653951,ZA 2790653952,2790719487,US 2790719488,2790785023,SA 2790785024,2791112703,US 2791135872,2791135872,US 2791178240,2791571455,US 2791571456,2791636991,JP 2791636992,2791768063,US 2791768064,2791899135,KR 2791899136,2791964671,US 2792030208,2792226815,US 2792226816,2792292351,CL 2792292352,2792357887,CN 2792357888,2792488959,US 2792488960,2792554495,BO 2792554496,2792751103,US 2792751104,2792882175,JP 2792882176,2792947711,AU 2792947712,2793013247,SG 2793013248,2793209855,US 2793209856,2793275391,KR 2793275392,2796806911,US 2796806912,2796807167,NZ 2796807168,2796807935,US 2796807936,2796808191,NZ 2796808192,2798838015,US 2798838016,2798838271,CO 2798838272,2801795071,US 2801795072,2801860607,CO 2801860608,2802515967,US 2802515968,2802581503,CA 2802581504,2802909183,US 2802909184,2802974719,CA 2802974720,2803630079,US 2803630080,2803695615,CL 2803695616,2803761151,US 2803761152,2803826687,AU 2803826688,2803892223,US 2803892224,2805465087,CA 2805465088,2805989375,UY 2805989376,2806007807,US 2806007808,2806008063,GB 2806008064,2806644735,US 2806644736,2806710271,CA 2806710272,2807103487,US 2807103488,2807169023,NL 2807169024,2807271679,US 2807271680,2807271935,AU 2807271936,2807566335,US 2807566336,2807574527,CA 2807574528,2807587071,US 2807587072,2807587327,IT 2807587328,2807587583,QA 2807587584,2807587839,IN 2807587840,2807588095,AE 2807588096,2807588351,ES 2807588352,2807588863,CN 2807588864,2807589119,JP 2807589120,2807589375,RO 2807589376,2807589631,FR 2807589632,2807589887,PT 2807589888,2807590143,AT 2807590144,2807590399,MT 2807590400,2807590655,GR 2807590656,2807590911,SA 2807590912,2807595007,US 2807595008,2807599103,CA 2807599104,2807607295,US 2807607296,2807611391,CA 2807611392,2807824383,US 2807824384,2807889919,CA 2807889920,2808545279,US 2808545280,2808610815,AU 2808610816,2808872959,US 2808872960,2808938495,UY 2808938496,2809069567,US 2809069568,2809135103,SA 2809135104,2809266175,US 2809266176,2809269025,CA 2809269026,2809269026,US 2809269027,2809274367,CA 2809274368,2809274623,US 2809274624,2809277375,CA 2809277376,2809277407,FR 2809277408,2809281575,CA 2809281576,2809281583,US 2809281584,2809282652,CA 2809282653,2809282653,US 2809282654,2809286975,CA 2809286976,2809286991,US 2809286992,2809291732,CA 2809291733,2809291733,US 2809291734,2809291823,CA 2809291824,2809291824,US 2809291825,2809291891,CA 2809291892,2809291892,US 2809291893,2809297711,CA 2809297712,2809297712,US 2809297713,2809302815,CA 2809302816,2809302831,US 2809302832,2809308599,CA 2809308600,2809308607,US 2809308608,2809316607,CA 2809316608,2809316623,US 2809316624,2809321007,CA 2809321008,2809321015,US 2809321016,2809323519,CA 2809323520,2809331711,FR 2809331712,2809397247,US 2809397248,2809462783,UY 2809462784,2809855999,US 2809856000,2809921535,AU 2809921536,2809987071,US 2809987072,2810052607,CA 2810052608,2810249215,US 2810249216,2810314751,CA 2810314752,2810380287,AU 2810380288,2810576895,US 2810576896,2810642431,VE 2810642432,2810904575,US 2810904576,2810970111,CN 2810970112,2811428863,US 2811428864,2811494399,CA 2811494400,2811559935,US 2811559936,2811625471,CH 2811625472,2812084223,US 2812084224,2812149759,BO 2812149760,2812280831,US 2812280832,2812289023,TR 2812289024,2812291071,US 2812291072,2812292095,DE 2812292096,2812293119,US 2812293120,2812295167,IN 2812295168,2812297215,GB 2812297216,2812411903,US 2812411904,2812477439,AU 2812477440,2812805119,US 2812805120,2812870655,CH 2812870656,2812936191,JP 2812936192,2813067263,US 2813067264,2813132799,GB 2813132800,2813263871,US 2813263872,2813329407,JP 2813329408,2813526015,US 2813526016,2813591551,NZ 2813591552,2813908479,US 2813908480,2813908735,AU 2813908736,2814181375,US 2814181376,2814246911,CN 2814246912,2815082495,US 2815082496,2815090687,NL 2815090688,2815098879,US 2815098880,2815164415,GB 2815164416,2815229951,US 2815229952,2815295487,ID 2815295488,2815986943,US 2815986944,2815987199,GB 2815987200,2815988383,US 2815988384,2815988415,GB 2815988416,2815988863,US 2815988864,2815988895,GB 2815988896,2816159743,US 2816159744,2816159999,IN 2816160000,2816262143,US 2816262144,2816263167,IE 2816263168,2816264191,GB 2816264192,2816264447,IE 2816264448,2816264703,GB 2816264704,2816270335,US 2816270336,2816271615,SG 2816271616,2816271871,JP 2816271872,2816272127,IN 2816272128,2816272383,AU 2816272384,2816273407,JP 2816273408,2816274431,IN 2816274432,2816275455,AU 2816275456,2816276479,CN 2816276480,2816278527,SG 2816278528,2816671743,US 2816671744,2816737279,CA 2816737280,2817277951,US 2817277952,2817294335,NL 2817294336,2817933055,US 2817933056,2817933311,CA 2817933312,2817933567,PR 2817933568,2818002943,US 2818002944,2818003722,GB 2818003723,2818003723,US 2818003724,2818004991,GB 2818004992,2818113535,US 2818113536,2818115583,BR 2818115584,2818116607,PE 2818116608,2818118655,BR 2818118656,2818119679,SV 2818121728,2818122751,VE 2818123776,2818124799,CO 2818125824,2818134015,BR 2818139136,2818143231,BR 2818244608,2818310143,US 2818310144,2818375679,AR 2818375680,2818572287,US 2818637824,2818670591,AU 2818670592,2822592397,US 2822592398,2822592398,IE 2822592399,2822731894,US 2822731895,2822731895,GB 2822731896,2823159807,US 2823159808,2823225343,HK 2823225344,2823553023,US 2823553024,2823618559,ZA 2823618560,2823684095,PA 2823684096,2823749631,KR 2823815168,2823823359,ZA 2823823360,2823888895,SC 2823888896,2823897087,ZA 2823897088,2823946239,SC 2823946240,2824011775,US 2824011776,2824077311,AR 2824077312,2824292095,US 2824292096,2824292351,AU 2824292352,2824357375,US 2824357376,2824357631,GB 2824357632,2824357887,US 2824357888,2824358143,CA 2824358144,2824404991,US 2824404992,2824470527,ZA 2824536064,2824798207,US 2824798208,2824863743,TW 2824863744,2824929279,AR 2824929280,2825191423,US 2825191424,2825256959,AR 2825256960,2825519103,US 2825519104,2825584639,HK 2825584640,2826108927,US 2826108928,2826174463,KR 2826174464,2826436607,US 2826436608,2826502143,TH 2826567680,2826633215,US 2826633216,2826698751,GU 2826698752,2826829823,US 2826829824,2826895359,KR 2826895360,2826962943,US 2826962944,2826964991,DE 2826964992,2826969087,US 2826969088,2826971135,AU 2826971136,2826973183,NL 2826973184,2826975231,AU 2826975232,2827026431,ZA 2827026432,2827091967,US 2827091968,2827157503,AU 2827157504,2827223039,KR 2827223040,2827288575,AU 2827288576,2827354111,US 2827354112,2827419647,AU 2827419648,2827681791,US 2827681792,2827747327,TR 2827747328,2827812863,AU 2827812864,2827878399,US 2827878400,2827943935,ZA 2827943936,2828009471,US 2828009472,2828075007,CA 2828075008,2828533759,US 2828533760,2828599551,AU 2828599552,2828599807,IN 2828599808,2828664831,AU 2828664832,2828730367,KR 2828730368,2828795903,ZA 2828795904,2829033471,US 2829033472,2829033727,IN 2829033728,2829041663,US 2829041664,2829041919,AU 2829041920,2829058047,US 2829058048,2829123583,CN 2829123584,2829148415,US 2829148416,2829148671,HK 2829148672,2829174783,US 2829174784,2829175039,GB 2829175040,2829175551,US 2829175552,2829175807,GB 2829175808,2829254655,US 2829254656,2829320191,CH 2829320192,2829385727,ZA 2829385728,2829451263,MX 2829451264,2829516799,US 2829516800,2829582335,BW 2829582336,2829590783,US 2829590784,2829591033,GB 2829591034,2829591034,US 2829591035,2829591039,GB 2829591040,2829844479,US 2829844480,2829910015,ZA 2829910016,2830106623,US 2830106624,2830172159,CO 2830172160,2830434303,US 2830499840,2830761983,US 2830761984,2830827519,AU 2830827520,2830893055,KW 2830893056,2830958591,KR 2830958592,2831286271,US 2831548416,2831613951,AU 2831613952,2831810559,US 2831810560,2831876095,IT 2831876096,2832007167,US 2832072704,2832138239,ZA 2832138240,2832269311,US 2832269312,2832465919,ZA 2832465920,2832793599,US 2832793600,2832859135,AU 2832859136,2832924671,US 2832924672,2832990207,KR 2832990208,2833383423,US 2833383424,2833448959,AR 2833580032,2833707007,US 2833707008,2833707263,GB 2833707264,2833711103,US 2833711104,2833776639,CL 2833842176,2833907711,US 2833907712,2833973247,GT 2833973248,2833992901,US 2833992902,2833992902,MX 2833992903,2834010111,US 2834010112,2834014207,CA 2834014208,2834030591,US 2834030592,2834034687,CA 2834034688,2834497535,US 2834497536,2834563071,SV 2834563072,2834825215,US 2834825216,2834956287,KR 2834956288,2835087359,US 2835087360,2835152895,AU 2835152896,2835161087,LR 2835161088,2835169279,ZW 2835169280,2835177471,ZA 2835177472,2835181567,DZ 2835181568,2835183615,NG 2835183616,2835185663,ZA 2835185664,2835202047,RE 2835202048,2835206143,ZA 2835206144,2835208191,NG 2835208192,2835210239,ZA 2835210240,2835218431,MW 2835218432,2835283967,US 2835283968,2835349503,MX 2835349504,2835480575,ZA 2835480576,2837446655,US 2837446656,2837839871,CH 2837839872,2837858047,US 2837858048,2837858055,IN 2837858056,2837905407,US 2837905408,2837970943,CH 2837970944,2838036479,US 2838036480,2838233087,CH 2838233088,2838298623,US 2838298624,2838560767,NL 2838560768,2838626303,CH 2838626304,2838757375,US 2838757376,2838822911,CH 2838822912,2838865599,US 2838865600,2838865615,KR 2838865616,2838871295,US 2838871296,2838871311,CA 2838871312,2838881055,US 2838881056,2838881087,AT 2838881088,2838887871,US 2838887872,2838887887,EC 2838887888,2838904831,US 2838904832,2838921215,CA 2838921216,2838930495,US 2838930496,2838930511,HK 2838930512,2838938991,US 2838938992,2838939007,AU 2838939008,2838942527,US 2838942528,2838942559,AU 2838942560,2838943263,US 2838943264,2838943279,GB 2838943280,2838946431,US 2838946432,2838946447,CA 2838946448,2838946735,US 2838946736,2838946751,CA 2838946752,2838958927,US 2838958928,2838958943,AF 2838958944,2838962111,US 2838962112,2838962127,BR 2838962128,2838962527,US 2838962528,2838962543,GB 2838962544,2838964047,US 2838964048,2838964063,PE 2838964064,2839085055,US 2839085056,2839117823,MX 2839117824,2839150591,BR 2839150592,2839543807,CH 2839543808,2843803647,US 2843803648,2843869183,ZA 2843869184,2844524543,US 2844524544,2844590079,KR 2844590080,2844862975,US 2844862976,2844863231,CA 2844863232,2845704191,US 2845704192,2845769727,CU 2845769728,2845786111,GA 2845786112,2845802495,NG 2845818880,2845822975,ZA 2845835264,2848212991,US 2848212992,2848215039,GB 2848215040,2848244735,US 2848244736,2848245759,GB 2848245760,2848276479,US 2848325632,2848522239,US 2848587776,2848653311,ZA 2848653312,2848980991,US 2848980992,2850029567,KR 2850029568,2851012607,US 2851012608,2851013631,TZ 2851013632,2851015679,ZA 2851015680,2851016703,CV 2851016704,2851017727,NG 2851017728,2851018751,SC 2851018752,2851019775,ZW 2851019776,2851020799,ZA 2851020800,2851021823,AO 2851021824,2851022847,EG 2851022848,2851023871,CM 2851023872,2851024895,ZA 2851024896,2851025919,NG 2851025920,2851026943,GH 2851026944,2851027967,DZ 2851027968,2851028991,ZA 2851028992,2851030015,CI 2851030016,2851031039,ZA 2851031040,2851032063,CD 2851032064,2851033087,AO 2851033088,2851035135,ZA 2851035136,2851036159,UG 2851036160,2851037183,LY 2851037184,2851038207,CF 2851038208,2851039231,ML 2851039232,2851040255,MZ 2851040256,2851041279,AO 2851041280,2851042303,GQ 2851042304,2851043327,LY 2851043328,2851044351,TD 2851044352,2851045887,ZA 2851045888,2851046399,SC 2851046400,2851047423,AO 2851047424,2851048447,SN 2851048448,2851049471,MU 2851049472,2851050495,MZ 2851050496,2851051519,GA 2851051520,2851052543,SC 2851052544,2851053567,CD 2851053568,2851054591,KE 2851054592,2851055615,ZA 2851078144,2851995647,US 2852061184,2852062207,ZA 2852062208,2852063231,CM 2852063232,2852064255,KE 2852064256,2852065279,ZA 2852065280,2852066303,GH 2852066304,2852067327,ZA 2852067328,2852068351,SS 2852068352,2852071423,ZA 2852071424,2852072447,NG 2852072448,2852073471,ZA 2852073472,2852074495,TZ 2852074496,2852075519,MW 2852075520,2852077567,ZA 2852077568,2852078591,CD 2852078592,2852079615,TN 2852079616,2852080639,CG 2852080640,2852081663,ZA 2852081664,2852082687,BW 2852082688,2852083711,EG 2852083712,2852084735,AO 2852084736,2852085759,TN 2852085760,2852086783,KE 2852086784,2852087807,SS 2852087808,2852088831,KE 2852088832,2852089855,LY 2852089856,2852090879,TZ 2852090880,2852091903,ZA 2852091904,2852092927,CG 2852092928,2852093951,NG 2852093952,2852094975,ZA 2852094976,2852095999,MZ 2852096000,2852097023,SD 2852097024,2852098047,NG 2852098048,2852099071,ZA 2852099072,2852100095,GA 2852100096,2852101119,TD 2852101120,2852102143,LY 2852102144,2852103167,MU 2852103168,2852106239,ZA 2852106240,2852107263,MA 2852107264,2852108287,NG 2852108288,2852109311,TZ 2852109312,2852110335,CD 2852110336,2852112383,ZA 2852112384,2852113407,KE 2852113408,2852114431,CD 2852114432,2852115455,NG 2852115456,2852116479,KE 2852116480,2852118527,ZA 2852118528,2852119551,NG 2852119552,2852121599,ZA 2852121600,2852122623,NG 2852122624,2852126719,ZA 2852192256,2853306367,US 2853306368,2853371903,CL 2853371904,2853765119,US 2853765120,2853830655,MX 2853830656,2854289407,US 2854289408,2854354943,MY 2854354944,2854617087,US 2854617088,2854682623,MY 2854748160,2855469055,US 2855469056,2855484671,PY 2855484672,2855485439,AR 2855485440,2855487999,UY 2855488000,2855488255,AR 2855488256,2855501823,UY 2855501824,2855534591,AR 2855534592,2856058879,US 2856058880,2856124415,CH 2856124416,2856184831,US 2856184832,2856185855,GB 2856185856,2856438783,US 2856438784,2856439039,BR 2856439040,2856439295,US 2856439296,2856439551,BR 2856439552,2856442367,US 2856442368,2856442623,PH 2856442624,2856452095,US 2856452096,2856517631,BR 2856517632,2856714239,US 2856714240,2856779775,MX 2856779776,2857082879,US 2857082880,2857086975,CA 2857086976,2857238527,US 2857697280,2858352639,US 2858418176,2859007999,US 2859008000,2859073535,JP 2859073536,2861069055,US 2861069056,2861069311,GB 2861069312,2861733375,US 2861733376,2861733631,CA 2861733632,2861862911,US 2861862912,2861863167,AU 2861863168,2861876735,US 2861876736,2861876991,GB 2861876992,2861881087,US 2861881088,2861881343,GB 2861881344,2861957119,US 2862022656,2862284799,US 2862284800,2862350335,AR 2862350336,2862415871,US 2862415872,2862481407,AU 2862481408,2863202303,US 2863202304,2863267839,MX 2863267840,2863595519,US 2863595520,2863661055,CA 2863661056,2863857663,US 2863857664,2863923199,SG 2863923200,2864844799,US 2864844800,2864845055,NL 2864845056,2864848895,US 2864848896,2864849151,GB 2864849152,2865577983,US 2865577984,2865610751,BE 2865610752,2865889279,US 2865889280,2865954815,AR 2865954816,2867265535,US 2867331072,2867396607,US 2867462144,2867593215,US 2867593216,2867724287,CH 2867855360,2868117503,US 2868379648,2868380159,IN 2868380160,2868380671,BR 2868380672,2868380927,US 2868380928,2868381055,MX 2868381056,2868381183,IN 2868381184,2868381695,MX 2868381696,2868382463,US 2868382464,2868382719,CL 2868382720,2868383231,IN 2868383232,2868383743,US 2868383744,2868384255,PH 2868384256,2868384767,BR 2868384768,2868390143,US 2868390144,2868390399,GB 2868390400,2868390911,IN 2868390912,2868391423,US 2868391424,2868391935,IN 2868391936,2868399615,US 2868399616,2868399871,BR 2868399872,2868400127,US 2868400128,2868400639,BR 2868400640,2868401151,US 2868401152,2868401663,BR 2868401664,2868401919,PH 2868401920,2868402175,AR 2868402176,2868410367,US 2868410368,2868410879,BR 2868410880,2868411391,AR 2868411392,2868411903,PL 2868411904,2868414719,US 2868414720,2868414975,MU 2868414976,2868415487,IN 2868415488,2868415999,US 2868416000,2868416255,AU 2868416256,2868416767,US 2868416768,2868417023,PL 2868417024,2868417535,JP 2868417536,2868418815,US 2868418816,2868419071,TR 2868419072,2868419327,PH 2868419328,2868419583,IN 2868419584,2868420607,PH 2868420608,2868423679,IN 2868423680,2868428287,US 2868428288,2868428799,IN 2868428800,2868432895,US 2868432896,2868433407,AR 2868433408,2868437503,US 2868437504,2868437759,BR 2868437760,2868576255,US 2868576256,2868578303,IN 2868578304,2868578815,BR 2868578816,2868579327,IN 2868579328,2868581375,US 2868581376,2868581887,IN 2868581888,2868582143,US 2868582144,2868582399,RO 2868582400,2868585471,US 2868585472,2868585727,GB 2868585728,2868585983,PH 2868585984,2868586495,GB 2868586496,2868588543,IN 2868588544,2868589055,PH 2868589056,2868591615,US 2868591616,2868592383,IN 2868592384,2868592447,DE 2868592448,2868592511,IN 2868592512,2868592639,US 2868592640,2868593663,NL 2868593664,2868593919,IN 2868593920,2868595711,US 2868595712,2868596223,FR 2868596224,2868596735,ES 2868596736,2868597759,DE 2868597760,2868598271,PH 2868598272,2868599295,US 2868599296,2868599807,IN 2868599808,2868600319,FR 2868600320,2868600831,AU 2868600832,2868601343,FR 2868601344,2868601855,CR 2868601856,2868602367,ES 2868602368,2868602623,US 2868602624,2868603007,ES 2868603008,2868603071,IN 2868603072,2868603135,ES 2868603136,2868603391,PH 2868603392,2868603647,US 2868603648,2868604159,DE 2868604160,2868604415,PH 2868604416,2868604927,IN 2868604928,2868605183,PH 2868605184,2868605951,SE 2868605952,2868606207,PL 2868606208,2868609023,ES 2868609024,2868610047,AU 2868610048,2868611327,US 2868611328,2868611583,AU 2868611584,2868611839,US 2868611840,2868612095,IN 2868612096,2868612607,US 2868612608,2868613119,IN 2868613120,2868613631,US 2868613632,2868614143,PH 2868614144,2868614399,US 2868614400,2868615167,IN 2868615168,2868615679,US 2868615680,2868616703,IN 2868616704,2868617215,US 2868617216,2868617471,PH 2868617472,2868617727,AU 2868617728,2868618239,US 2868618240,2868618367,PH 2868618368,2868618431,US 2868618432,2868618751,PH 2868618752,2868619263,US 2868619264,2868619775,PH 2868619776,2868620287,IN 2868620288,2868620799,US 2868620800,2868621503,IN 2868621504,2868621567,ES 2868621568,2868621823,ID 2868621824,2868621855,IN 2868621856,2868621919,US 2868621920,2868621951,IN 2868621952,2868622335,US 2868622336,2868622847,DE 2868622848,2868623359,US 2868623360,2868623871,PH 2868623872,2868624383,IN 2868624384,2868625407,ES 2868625408,2868649983,US 2868649984,2868651263,DE 2868651264,2868651391,US 2868651392,2868652031,DE 2868652032,2868658175,US 2868658176,2868662271,GB 2868662272,2868664319,DE 2868664320,2868667903,GB 2868667904,2868668927,US 2868668928,2868669439,GB 2868669440,2868669951,US 2868669952,2868670975,GB 2868670976,2868671487,US 2868671488,2868674336,GB 2868674337,2868674337,SE 2868674338,2868674559,GB 2868674560,2868682752,PH 2868682753,2868682753,US 2868682754,2868689151,PH 2868689152,2868689663,AU 2868689664,2868690943,PH 2868690944,2868772863,US 2868838400,2868903935,BE 2868903936,2869035007,SG 2869035008,2869166079,JP 2869166080,2869428223,TH 2869428224,2869952511,CN 2869952512,2870018047,FR 2870018048,2870083583,DE 2870083584,2870089727,FR 2870089728,2870090495,DE 2870090496,2870090751,BE 2870090752,2870091775,DE 2870091776,2870149119,FR 2870149120,2870214655,HU 2870214656,2870280191,DK 2870280192,2870345727,NL 2870345728,2870411263,GB 2870411264,2870476799,NO 2870476800,2870542335,DE 2870542336,2870575103,CH 2870575104,2870583295,SE 2870583296,2870584319,NO 2870584320,2870585343,RU 2870585344,2870587391,UA 2870587392,2870587647,CZ 2870587648,2870587903,RU 2870587904,2870588159,DE 2870588160,2870588415,NL 2870588416,2870588927,HU 2870588928,2870589439,PL 2870589440,2870591231,RU 2870591232,2870591487,IT 2870591488,2870591743,PL 2870591744,2870591999,SE 2870592000,2870592511,RU 2870592512,2870593535,PL 2870593536,2870594047,GB 2870594048,2870594559,RU 2870594560,2870595583,UA 2870595584,2870596607,FR 2870596608,2870597631,RU 2870597632,2870597887,PL 2870597888,2870598143,BE 2870598144,2870598655,LV 2870598656,2870599423,CZ 2870599424,2870599679,RO 2870599680,2870599935,KW 2870599936,2870600191,DE 2870600192,2870600703,PL 2870600704,2870600959,DK 2870600960,2870601215,BE 2870601216,2870601727,PL 2870601728,2870602751,RU 2870602752,2870603775,UA 2870603776,2870604031,CZ 2870604032,2870604287,UA 2870604288,2870607871,RU 2870607872,2870673407,BE 2870673408,2870738943,CH 2870738944,2870935551,GB 2870935552,2871001087,HU 2871001088,2871066623,SE 2871066624,2871083007,CH 2871083008,2871099391,FR 2871099392,2871101439,NL 2871101440,2871103487,CZ 2871103488,2871104063,GB 2871104064,2871105535,NL 2871105536,2871107583,FR 2871107584,2871111679,GB 2871111680,2871115775,DE 2871115776,2871123967,GB 2871123968,2871126015,NL 2871126016,2871128063,ES 2871128064,2871130111,BH 2871130112,2871132159,RU 2871132160,2872049663,CN 2872049664,2873098239,IN 2873098240,2873884671,US 2873884672,2874146815,IN 2874146816,2875195391,CN 2875195392,2875719679,TH 2875719680,2877292543,CN 2877292544,2879336447,US 2879336448,2879336703,GB 2879336704,2881486847,US 2881486848,2881487103,GB 2881487104,2882469887,US 2882469888,2882535423,SG 2882535424,2883583999,CN 2883584000,2885681151,VN 2885681152,2886667007,US 2886667008,2886667263,DE 2886667264,2886729727,US 2887778304,2891034623,US 2891034624,2891036671,CA 2891036672,2891056383,US 2891056384,2891056639,ES 2891056640,2891058943,US 2891058944,2891059199,FR 2891059200,2891120639,US 2891251712,2891272191,US 2891272192,2891274239,CA 2891274240,2891282431,US 2891282432,2891283455,PR 2891283456,2891284479,CA 2891284480,2891364351,US 2891364352,2891374591,CA 2891374592,2891378687,US 2891378688,2891380735,CA 2891380736,2891403263,US 2891403264,2891407359,CA 2891407360,2891796479,US 2891796480,2891800575,CA 2891800576,2891807743,US 2891807744,2891808767,CA 2891808768,2891841535,US 2891841536,2891842303,SE 2891842304,2891843327,GB 2891843328,2891843839,SE 2891843840,2891844095,GB 2891844096,2891845119,FR 2891845120,2891846399,DE 2891846400,2891846911,CH 2891846912,2891847679,NL 2891847680,2891847935,SG 2891847936,2891848447,MY 2891848448,2891848959,JP 2891848960,2891849471,BN 2891849472,2891849983,PH 2891849984,2891850495,TH 2891850496,2891850751,SG 2891850752,2891854335,US 2891854336,2891855615,NL 2891855616,2891856127,SE 2891856128,2891856383,LU 2891856384,2891857919,US 2891857920,2891858175,ES 2891858176,2891858431,TR 2891858432,2891858687,RO 2891858688,2891862527,US 2891862528,2891863039,KR 2891863040,2891863551,AU 2891863552,2891864063,JP 2891864064,2891864575,SG 2891864576,2891871231,US 2891871232,2891871487,CA 2891871488,2891974655,US 2891974656,2891976703,CA 2891976704,2891982847,US 2891982848,2891984895,CA 2891984896,2892021759,US 2892021760,2892038143,CA 2892038144,2892040191,US 2892040192,2892042239,CA 2892042240,2892050431,US 2892050432,2892052479,CA 2892052480,2892053503,US 2892053504,2892054527,CA 2892054528,2892068863,US 2892068864,2892069887,CA 2892069888,2892070911,US 2892070912,2892103679,CA 2892103680,2892120831,US 2892120832,2892121087,CA 2892121088,2892140543,US 2892140544,2892144895,CA 2892144896,2892145407,US 2892145408,2892145663,CA 2892145664,2892146943,US 2892146944,2892147199,NL 2892147200,2892149503,US 2892149504,2892149759,NL 2892149760,2892150271,US 2892150272,2892150783,CA 2892150784,2892171263,US 2892171264,2892172287,CA 2892172288,2892174335,US 2892174336,2892177407,CA 2892177408,2892369919,US 2892369920,2892374015,CA 2892374016,2892420607,US 2892420608,2892420863,CA 2892420864,2892423167,US 2892423168,2892424191,VI 2892424192,2892425215,CA 2892425216,2892443647,US 2892443648,2892447743,CA 2892447744,2892464127,VG 2892464128,2892496895,CA 2892496896,2892906495,US 2892906496,2892910591,CA 2892910592,2892988415,US 2892988416,2892988671,SC 2892988672,2892988927,PA 2892988928,2892989183,SA 2892989184,2892989439,PE 2892989440,2892989695,CO 2892989696,2892989951,VE 2892989952,2892990207,US 2892990208,2892990463,CA 2892990464,2892990975,IT 2892990976,2892991231,ID 2892991232,2892991487,US 2892991488,2892991999,CN 2892992000,2892992511,HK 2892992512,2892993023,IT 2892993024,2892993535,JP 2892993536,2892994047,AE 2892994048,2892994559,US 2892994560,2892994815,JO 2892994816,2892995327,GB 2892995328,2892995839,AU 2892995840,2893676543,US 2893676544,2893807615,CA 2893807616,2894921727,US 2894921728,2895118335,GB 2895118336,2895301887,US 2895301888,2895302143,AR 2895302144,2895642623,US 2895642624,2895708159,FR 2895708160,2896035839,US 2896035840,2896101375,DE 2896101376,2896166911,GB 2896166912,2896301499,US 2896301500,2896301500,DE 2896301501,2896429280,US 2896429281,2896429281,CA 2896429282,2897018879,US 2897018880,2897149951,DE 2897149952,2897215487,US 2897215488,2897739775,DE 2897739776,2898001919,FR 2898001920,2898132991,GB 2898132992,2898264063,US 2898264064,2898788351,AU 2898788352,2899050495,GB 2899050496,2899116031,FR 2899116032,2899148799,VN 2899148800,2899181567,AU 2899181568,2899312639,GB 2899312640,2899378175,FR 2899378176,2899443711,GB 2899443712,2899574783,FR 2899574784,2899902463,GB 2899902464,2899967999,US 2899968000,2900099071,CA 2900099072,2901740455,US 2901740456,2901740463,CA 2901740464,2902476543,US 2902476544,2902476799,CW 2902476800,2902507519,US 2902507520,2902515711,CA 2902515712,2904555519,US 2904555520,2904817663,CA 2904817664,2905001983,US 2905001984,2905002152,GB 2905002153,2905002153,US 2905002154,2905002248,GB 2905002249,2905002249,NL 2905002250,2905002495,GB 2905002496,2905005055,US 2905005056,2905005311,GB 2905005312,2905044991,US 2905044992,2905045247,SG 2905045248,2905345279,US 2905345280,2905345535,AU 2905345536,2905346815,US 2905346816,2905347071,JP 2905347072,2905348095,US 2905348096,2905348351,PH 2905348352,2905348863,US 2905348864,2905349119,NZ 2905349120,2905387519,US 2905387520,2905388031,CA 2905388032,2905401855,US 2905401856,2905402111,CA 2905402112,2905405679,US 2905405680,2905405687,CN 2905405688,2905415679,US 2905415680,2905415935,GB 2905415936,2905446655,US 2905446656,2905446911,DE 2905446912,2905456639,US 2905457664,2905457919,US 2905458432,2905458687,US 2905458944,2905460479,US 2905460736,2905460991,US 2905461248,2905462271,US 2905463296,2905463551,US 2905463808,2905464319,US 2905464576,2905473023,US 2905473024,2905481215,CA 2905481216,2913992703,US 2913992704,2914516991,CA 2914516992,2915105791,US 2915105792,2915106047,NL 2915106048,2915106303,US 2915106304,2915106559,SG 2915106560,2915195647,US 2915195648,2915195903,CL 2915195904,2915196159,NL 2915196160,2915196927,US 2915196928,2915197183,IE 2915197184,2915197439,US 2915197440,2915197695,FI 2915197696,2915250175,US 2915250176,2915254271,CA 2915254272,2915516415,US 2915516416,2915516671,NL 2915516672,2915516927,CA 2915516928,2915517183,US 2915517184,2915517439,RU 2915517440,2915518463,DK 2915518464,2915520511,GB 2915520512,2915521023,AU 2915521024,2915521279,JP 2915521280,2915521535,PL 2915521536,2915526911,US 2915526912,2915527167,DE 2915527168,2915527423,US 2915527424,2915527679,DE 2915527680,2915528715,NL 2915528716,2915528735,US 2915528736,2915528751,NL 2915528752,2915528767,US 2915528768,2915528791,NL 2915528792,2915528863,US 2915528864,2915528879,NL 2915528880,2915528927,US 2915528928,2915528943,NL 2915528944,2915795013,US 2915795014,2915795014,MX 2915795015,2915894575,US 2915894576,2915894591,CA 2915894592,2915958783,US 2915958784,2916024319,CA 2916024320,2916163583,US 2916163584,2916167375,CA 2916167376,2916167383,US 2916167384,2916168159,CA 2916168160,2916168167,US 2916168168,2916169015,CA 2916169016,2916169023,US 2916169024,2916171775,CA 2916171776,2916184063,US 2916184064,2916196351,CA 2916196352,2916253695,US 2916253696,2916286463,CA 2916286464,2916319231,US 2916319232,2916335615,PR 2916335616,2916368383,US 2916368384,2916401151,CA 2916401152,2916410879,US 2916410880,2916411135,GB 2916411136,2916515839,US 2916515840,2916519935,CA 2916519936,2916581375,US 2916581376,2916614143,PR 2916614144,2917031935,US 2917031936,2917032959,NL 2917032960,2917035007,US 2917035008,2917035519,NL 2917035520,2917040127,US 2917040128,2917041407,NL 2917041408,2917048831,US 2917048832,2917049343,NL 2917049344,2917058559,US 2917058560,2917059583,NL 2917059584,2917060607,US 2917060608,2917061631,NL 2917061632,2917075455,US 2917075456,2917075967,NL 2917075968,2917078527,US 2917078528,2917079039,NL 2917079040,2917080063,US 2917080064,2917081087,NL 2917081088,2917100031,US 2917100032,2917100543,NL 2917100544,2917105663,US 2917105664,2917106175,NL 2917106176,2917106431,US 2917106432,2917106687,NL 2917106688,2917112831,US 2917112832,2917113855,NL 2917113856,2917117951,US 2917117952,2917122047,NL 2917122048,2917167905,US 2917167906,2917167906,BZ 2917167907,2917170822,US 2917170823,2917170823,UA 2917170824,2917170854,US 2917170855,2917170856,UA 2917170857,2917171086,US 2917171087,2917171087,UA 2917171088,2917171199,US 2917171200,2917175295,CA 2917175296,2917195775,US 2917195776,2917203967,CA 2917203968,2917257215,US 2917257216,2917261311,KY 2917261312,2917265407,US 2917265408,2917267711,JM 2917267712,2917267775,AG 2917267776,2917267839,VG 2917267840,2917267967,AG 2917267968,2917268223,JM 2917268224,2917268479,BB 2917268480,2917269113,JM 2917269114,2917269114,TC 2917269115,2917269503,JM 2917269504,2917449727,US 2917449728,2917466111,PR 2917466112,2917572607,US 2917572608,2917580799,CA 2917580800,2917593295,US 2917593296,2917593303,CO 2917593304,2917597439,US 2917597440,2917597695,GB 2917597696,2917621759,US 2917621760,2917629951,CA 2917629952,2917646847,US 2917646848,2917647103,CN 2917647104,2917647359,US 2917647360,2917648383,CN 2917648384,2917648639,US 2917648640,2917648895,CN 2917648896,2917652223,US 2917652224,2917652479,AU 2917652480,2917653503,US 2917653504,2917654015,GB 2917654016,2917654271,US 2917654272,2917654527,CN 2917654528,2917654783,US 2917654784,2917655039,DE 2917655040,2917655551,US 2917655552,2917655807,CN 2917655808,2917656063,US 2917656064,2917656319,CN 2917656320,2917656831,US 2917656832,2917657087,CN 2917657088,2917660671,US 2917660672,2917661183,GB 2917661184,2917676031,US 2917676032,2917676287,CA 2917676288,2917699839,US 2917699840,2917700351,CA 2917700352,2917700959,US 2917700960,2917700967,CN 2917700968,2917704191,US 2917704192,2917704447,CA 2917704448,2917707519,US 2917707520,2917707775,CA 2917707776,2917709823,US 2917709824,2917710079,CA 2917710080,2917710591,US 2917710592,2917710847,CA 2917710848,2917713919,US 2917713920,2917714175,CA 2917714176,2917715967,US 2917715968,2917716223,CA 2917716224,2917720575,US 2917720576,2917720831,CA 2917720832,2917842175,US 2917842176,2917842431,CA 2917842432,2918014975,US 2918014976,2918023167,CA 2918023168,2918043647,US 2918043648,2918047743,CA 2918047744,2918051839,US 2918051840,2918121471,CA 2918121472,2918154239,US 2918154240,2918170623,CA 2918170624,2918174463,US 2918174464,2918174719,MX 2918174720,2918187775,US 2918187776,2918188031,CA 2918188032,2918232063,US 2918232064,2918236159,CA 2918236160,2918260735,US 2918260736,2918264831,CA 2918264832,2918277119,US 2918277120,2918281215,CA 2918281216,2918286335,US 2918286336,2918286591,CA 2918286592,2918287103,US 2918287104,2918287359,CR 2918287360,2918289407,GB 2918289408,2918314216,US 2918314217,2918314217,GB 2918314218,2918371327,US 2918371328,2918375423,CA 2918375424,2918391807,US 2918391808,2918395903,CA 2918395904,2918404095,US 2918404096,2918406911,PR 2918406912,2918407423,US 2918407424,2918408191,PR 2918408192,2918432767,US 2918432768,2918436863,CA 2918436864,2918463231,US 2918463232,2918463487,CA 2918463488,2918469631,US 2918469632,2918471423,CA 2918471424,2918471679,US 2918471680,2918472703,CA 2918472704,2918473215,US 2918473216,2918473727,CA 2918473728,2918477823,US 2918477824,2918481919,CA 2918481920,2918527231,US 2918527232,2918527487,FR 2918527488,2918536719,US 2918536720,2918536727,CA 2918536728,2918570239,US 2918570240,2918570495,JP 2918570496,2918580223,US 2918580224,2918588415,CA 2918588416,2918596607,US 2918596608,2918604287,CA 2918604288,2918604543,US 2918604544,2918604799,CA 2918604800,2918612991,US 2918612992,2918621183,CA 2918621184,2918653951,US 2918653952,2918662143,CA 2918662144,2918678527,US 2918678528,2918686719,CA 2918686720,2918699007,US 2918699008,2918703103,CA 2918703104,2918760447,US 2918760448,2918776831,CA 2918776832,2918815999,US 2918816000,2918817023,GB 2918817024,2918828031,US 2918828032,2918828543,UA 2918828544,2918829055,ES 2918829056,2918829823,US 2918829824,2918830079,CN 2918830080,2918834175,CA 2918834176,2918842367,US 2918842368,2918875135,CA 2918875136,2918973439,US 2918973440,2918989823,CA 2918989824,2919010303,US 2919010304,2919010559,CA 2919010560,2919020551,US 2919020552,2919020559,CA 2919020560,2919020607,US 2919020608,2919020615,CA 2919020616,2919021359,US 2919021360,2919021375,CA 2919021376,2919021487,US 2919021488,2919021535,CA 2919021536,2919022207,US 2919022208,2919022239,CA 2919022240,2919022455,US 2919022456,2919022463,CA 2919022464,2919022495,US 2919022496,2919022527,CA 2919022528,2919055359,US 2919055360,2919057407,CN 2919057408,2919059455,IN 2919059456,2919063551,CN 2919063552,2919064063,MX 2919064064,2919067647,CN 2919067648,2919068247,US 2919068248,2919068255,AU 2919068256,2919070983,US 2919070984,2919070991,GB 2919070992,2919174143,US 2919174144,2919178239,CA 2919178240,2919186431,US 2919186432,2919190527,CA 2919190528,2919204747,US 2919204748,2919204755,NL 2919204756,2919205027,US 2919205028,2919205031,NL 2919205032,2919206911,US 2919206912,2919211007,CA 2919211008,2919235583,US 2919235584,2919759871,CA 2919759872,2921512703,US 2921512704,2921512959,CA 2921512960,2921530367,US 2921530368,2921530879,DE 2921530880,2921541119,US 2921541120,2921541375,DE 2921541376,2921542143,US 2921542144,2921542399,CA 2921542400,2921545215,US 2921545216,2921545727,DE 2921545728,2921545983,NL 2921545984,2921546239,US 2921546240,2921546495,FR 2921546496,2921546751,NL 2921546752,2921547007,US 2921547008,2921547263,FR 2921547264,2921547519,US 2921547520,2921547775,DE 2921547776,2921550335,US 2921550336,2921550591,IT 2921550592,2921551615,US 2921551616,2921551871,BR 2921551872,2921552127,AR 2921552128,2921552383,US 2921552384,2921552639,MX 2921552640,2921552895,US 2921552896,2921553151,CL 2921553152,2921553407,BR 2921553408,2921553663,CO 2921553664,2921562111,US 2921562112,2921594879,CA 2921594880,2925002751,US 2925002752,2925527039,CA 2925527040,2926575615,US 2926575616,2927056639,CA 2927056640,2927057023,US 2927057024,2927057919,CA 2927057920,2927058175,US 2927058176,2927099903,CA 2927099904,2927242751,US 2927242752,2927243263,AE 2927243264,2927581183,US 2927581184,2927581439,SG 2927581440,2927981567,US 2927981568,2927982591,SG 2927982592,2928175551,US 2928175552,2928175559,VN 2928175560,2928177151,US 2928177152,2928181247,CA 2928181248,2928200191,US 2928200192,2928200447,AU 2928200448,2928201983,US 2928201984,2928202239,JP 2928202240,2928204799,US 2928204800,2928205055,NZ 2928205056,2928206335,US 2928206336,2928206591,PH 2928206592,2928226303,US 2928226304,2928230399,CA 2928230400,2928261375,US 2928261376,2928261887,CA 2928261888,2928263167,US 2928263168,2928279551,CA 2928279552,2928312319,US 2928312320,2928316415,CA 2928316416,2928320511,HK 2928320512,2928328703,US 2928328704,2928336895,CA 2928336896,2928455679,US 2928455680,2928459775,CA 2928459776,2928541695,US 2928541696,2928607231,CA 2928607232,2928633199,US 2928633200,2928633215,CA 2928633216,2936012799,US 2936012800,2937847807,CN 2937847808,2937848831,KH 2937848832,2937849855,JP 2937849856,2937850879,SG 2937850880,2937851903,MY 2937851904,2937855999,JP 2937856000,2937860095,KR 2937860096,2937864191,JP 2937864192,2937880575,SG 2937880576,2937913343,JP 2937913344,2937978879,BD 2937978880,2938109951,CN 2938109952,2938634239,AU 2938634240,2938699775,IN 2938699776,2938700031,PH 2938700032,2938700287,ID 2938700288,2938700543,AE 2938700544,2938701055,SG 2938701056,2938701311,IQ 2938701312,2938701567,AU 2938701568,2938702079,IN 2938702080,2938703103,HK 2938703104,2938703359,IL 2938703360,2938703615,EG 2938703616,2938703871,IN 2938703872,2938707967,HK 2938707968,2938710015,JP 2938710016,2938712063,AU 2938712064,2938716159,TW 2938716160,2938732543,JP 2938732544,2938748927,SG 2938748928,2938765311,JP 2938765312,2938961919,CN 2938961920,2938978303,HK 2938978304,2938986495,AU 2938986496,2938986751,NZ 2938986752,2938996735,AU 2938996736,2938998783,JP 2938998784,2939002879,AU 2939002880,2939004927,KR 2939004928,2939006975,JP 2939006976,2939007999,KP 2939009024,2939011071,ID 2939011072,2939027455,KR 2939027456,2942304255,CN 2942304256,2942566399,TW 2942566400,2942599167,KH 2942599168,2942608383,IN 2942608384,2942608639,HK 2942608640,2942608895,US 2942608896,2942609407,HK 2942609408,2942615551,IN 2942615552,2942619647,HK 2942619648,2942631935,JP 2942631936,2942697471,IN 2942697472,2942763007,CN 2942763008,2942767103,JP 2942767104,2942771199,AU 2942771200,2942779391,ID 2942779392,2942795775,VN 2942795776,2942959615,JP 2942959616,2942960639,VN 2942960640,2942961663,AU 2942961664,2942965759,ID 2942965760,2942967807,AU 2942967808,2942975999,AF 2942976000,2942992383,KR 2942992384,2943025151,CN 2943025152,2943041535,PK 2943041536,2943057919,KR 2943057920,2943074303,AU 2943074304,2943090687,PK 2943090688,2943221759,JP 2943221760,2943291391,PK 2943291392,2943295487,KR 2943295488,2943303679,TW 2943303680,2943309823,JP 2943309824,2943310847,ID 2943310848,2943311871,JP 2943311872,2943312895,HK 2943312896,2943313919,NZ 2943313920,2943314943,SG 2943314944,2943315967,CN 2943315968,2943318015,ID 2943318016,2943320063,JP 2943336448,2943352831,TW 2943352832,2944401407,KR 2944401408,2944925695,JP 2944925696,2945581055,MY 2945581056,2946236415,CN 2946236416,2946301951,SG 2946301952,2946367487,LK 2946367488,2946375679,KR 2946375680,2946383871,ID 2946383872,2946392063,IN 2946392064,2946393087,CN 2946393088,2946394111,HK 2946394112,2946396159,AU 2946396160,2946400255,JP 2946400256,2946416639,NC 2946416640,2946433023,PH 2946433024,2946498559,HK 2946498560,2947547135,CN 2947547136,2947579903,PH 2947579904,2947583999,KR 2947584000,2947586047,TO 2947586048,2947587071,HK 2947587072,2947588095,CN 2947588096,2947590143,ID 2947590144,2947590655,JP 2947590656,2947590911,SG 2947590912,2947590927,HK 2947590928,2947591023,SG 2947591024,2947591031,HK 2947591032,2947591039,SG 2947591040,2947591071,HK 2947591072,2947591167,SG 2947591168,2947591183,HK 2947591184,2947591679,SG 2947591680,2947591695,JP 2947591696,2947592191,SG 2947596288,2947597311,IN 2947597312,2947598335,JP 2947598336,2947602431,AU 2947602432,2947603455,NZ 2947603456,2947604479,TH 2947604480,2947612671,HK 2947612672,2947678207,JP 2947678208,2947743743,CN 2947743744,2947809279,JP 2947809280,2948071423,TW 2948071424,2948104191,JP 2948104192,2948120575,CN 2948120576,2948128767,AU 2948128768,2948132863,ID 2948132864,2948134911,TW 2948134912,2948135935,ID 2948135936,2948136959,IN 2948136960,2948595711,CN 2948595712,2952790015,KR 2952790016,2953314303,DE 2953314304,2953379839,UA 2953379840,2953445375,DE 2953445376,2953453567,IT 2953453568,2953455615,IS 2953455616,2953457663,SK 2953457664,2953459711,DE 2953459712,2953461759,IT 2953461760,2953465855,ES 2953466112,2953466127,GB 2953466368,2953466879,GB 2953467392,2953467647,GB 2953467904,2953469951,BE 2953469952,2953478143,CH 2953478144,2953503551,SE 2953503552,2953503559,NO 2953503560,2953510911,SE 2953510912,2953576447,NO 2953576448,2953592831,BG 2953592832,2953596927,IR 2953596928,2953598975,ES 2953598976,2953601023,IT 2953601024,2953603071,RU 2953603072,2953605119,GB 2953605120,2953609215,CZ 2953609216,2953707519,IL 2953707520,2953838591,RU 2953838592,2954100735,SA 2954100736,2954362879,DK 2954362880,2954625023,GB 2954625024,2954641407,DE 2954641408,2954643455,RU 2954643456,2954645503,IQ 2954645504,2954647551,AZ 2954647552,2954657791,ES 2954657792,2954756095,JO 2954756096,2954821631,TR 2954821632,2954821947,FR 2954821948,2954821951,DE 2954821952,2954822079,FR 2954822080,2954822143,ES 2954822144,2954822927,FR 2954822928,2954822931,DE 2954822932,2954823999,FR 2954824000,2954824015,ES 2954824016,2954824255,FR 2954824256,2954824259,ES 2954824260,2954824415,FR 2954824416,2954824431,GB 2954824432,2954825063,FR 2954825064,2954825067,ES 2954825068,2954825151,FR 2954825152,2954825159,NL 2954825160,2954825315,FR 2954825316,2954825319,ES 2954825320,2954825383,FR 2954825384,2954825387,NL 2954825388,2954825403,FR 2954825404,2954825407,ES 2954825408,2954825535,FR 2954825536,2954825539,ES 2954825540,2954826031,FR 2954826032,2954826035,ES 2954826036,2954826159,FR 2954826160,2954826163,ES 2954826164,2954826755,FR 2954826756,2954826759,IT 2954826760,2954826763,ES 2954826764,2954826775,FR 2954826776,2954826779,ES 2954826780,2954827799,FR 2954827800,2954827807,DE 2954827808,2954828159,FR 2954828160,2954828191,IT 2954828192,2954829135,FR 2954829136,2954829139,DE 2954829140,2954829395,FR 2954829396,2954829399,IT 2954829400,2954829427,FR 2954829428,2954829431,NL 2954829432,2954829751,FR 2954829752,2954829752,ES 2954829753,2954829759,FR 2954829760,2954829823,ES 2954829824,2954829843,FR 2954829844,2954829847,DE 2954829848,2954829875,FR 2954829876,2954829879,DE 2954829880,2954830183,FR 2954830184,2954830191,IT 2954830192,2954830395,FR 2954830396,2954830399,ES 2954830400,2954830523,FR 2954830524,2954830527,DE 2954830528,2954830735,FR 2954830736,2954830751,NL 2954830752,2954830879,FR 2954830880,2954830887,BE 2954830888,2954831247,FR 2954831248,2954831251,ES 2954831252,2954831807,FR 2954831808,2954831823,ES 2954831824,2954832159,FR 2954832160,2954832167,PT 2954832168,2954832343,FR 2954832344,2954832347,CH 2954832348,2954832891,FR 2954832892,2954832895,ES 2954832896,2954832899,DE 2954832900,2954833419,FR 2954833420,2954833423,PL 2954833424,2954833555,FR 2954833556,2954833559,NL 2954833560,2954833567,FR 2954833568,2954833571,ES 2954833572,2954833655,FR 2954833656,2954833659,IT 2954833660,2954834519,FR 2954834520,2954834523,ES 2954834524,2954834671,FR 2954834672,2954834675,ES 2954834676,2954834983,FR 2954834984,2954834991,IT 2954834992,2954835039,FR 2954835040,2954835043,DE 2954835044,2954835067,FR 2954835068,2954835071,FI 2954835072,2954835295,FR 2954835296,2954835299,ES 2954835300,2954835443,FR 2954835444,2954835447,ES 2954835448,2954835451,FR 2954835452,2954835455,ES 2954835456,2954835619,FR 2954835620,2954835620,ES 2954835621,2954837071,FR 2954837072,2954837075,ES 2954837076,2954837615,FR 2954837616,2954837619,IT 2954837620,2954837667,FR 2954837668,2954837671,ES 2954837672,2954837827,FR 2954837828,2954837831,DE 2954837832,2954837867,FR 2954837868,2954837871,ES 2954837872,2954838103,FR 2954838104,2954838107,DE 2954838108,2954838599,FR 2954838600,2954838607,GB 2954838608,2954838615,NL 2954838616,2954838911,FR 2954838912,2954838915,DE 2954838916,2954839063,FR 2954839064,2954839067,IT 2954839068,2954839239,FR 2954839240,2954839243,IT 2954839244,2954839267,FR 2954839268,2954839271,ES 2954839272,2954839471,FR 2954839472,2954839479,BE 2954839480,2954840255,FR 2954840256,2954840447,GB 2954840448,2954840515,FR 2954840516,2954840519,NL 2954840520,2954840927,FR 2954840928,2954840931,DE 2954840932,2954841707,FR 2954841708,2954841711,NL 2954841712,2954841807,FR 2954841808,2954841815,NL 2954841816,2954843503,FR 2954843504,2954843507,ES 2954843508,2954843759,FR 2954843760,2954843771,ES 2954843772,2954844147,FR 2954844148,2954844151,DE 2954844152,2954844192,FR 2954844193,2954844193,NL 2954844194,2954844999,FR 2954845000,2954845003,ES 2954845004,2954845183,FR 2954845184,2954845199,DE 2954845200,2954846095,FR 2954846096,2954846103,NL 2954846104,2954846107,FR 2954846108,2954846111,ES 2954846112,2954846139,FR 2954846140,2954846143,ES 2954846144,2954854871,FR 2954854872,2954854875,IT 2954854876,2954855075,FR 2954855076,2954855079,ES 2954855080,2954855507,FR 2954855508,2954855511,DE 2954855512,2954855515,FR 2954855516,2954855519,ES 2954855520,2954855527,FR 2954855528,2954855531,ES 2954855532,2954856179,FR 2954856180,2954856183,ES 2954856184,2954857115,FR 2954857116,2954857119,NL 2954857120,2954858819,FR 2954858820,2954858823,IT 2954858824,2954858911,FR 2954858912,2954858943,ES 2954858944,2954859043,FR 2954859044,2954859047,ES 2954859048,2954859323,FR 2954859324,2954859327,ES 2954859328,2954859871,FR 2954859872,2954859903,ES 2954859904,2954861623,FR 2954861624,2954861631,IT 2954861632,2954861867,FR 2954861868,2954861871,CZ 2954861872,2954861875,FR 2954861876,2954861879,CH 2954861880,2954862415,FR 2954862416,2954862419,ES 2954862420,2954867041,FR 2954867042,2954867043,PT 2954867044,2954870799,FR 2954870800,2954870803,ES 2954870804,2954870839,FR 2954870840,2954870843,IT 2954870844,2954870847,ES 2954870848,2954870903,FR 2954870904,2954870907,ES 2954870908,2954874431,FR 2954874432,2954874447,GB 2954874448,2954874655,FR 2954874656,2954874663,DE 2954874664,2954875879,FR 2954875880,2954875883,ES 2954875884,2954876871,FR 2954876872,2954876875,ES 2954876876,2954876887,FR 2954876888,2954876891,ES 2954876892,2954877103,FR 2954877104,2954877107,PL 2954877108,2954877163,FR 2954877164,2954877167,ES 2954877168,2954877819,FR 2954877820,2954877823,ES 2954877824,2954878907,FR 2954878908,2954878911,ES 2954878912,2954887167,FR 2954887168,2954891263,UA 2954891264,2954895359,IT 2954895360,2954897407,RU 2954897408,2954899455,DE 2954899456,2954901503,ES 2954901504,2954903551,IT 2954903552,2954911743,JP 2954911744,2954913791,US 2954913792,2954915839,IE 2954915840,2954918911,US 2954918912,2954919167,IE 2954919168,2954919295,US 2954919296,2954919935,IE 2954919936,2954928127,RU 2954928128,2954932223,PL 2954932224,2954936319,RU 2954936320,2954938367,AM 2954938368,2954940415,HU 2954940416,2954944511,DE 2954944512,2954946559,GB 2954946560,2954948607,DE 2954948608,2954950655,RU 2954950656,2954952703,ES 2954952704,2955018239,TR 2955018240,2955027726,JP 2955027727,2955027727,IE 2955027728,2955034623,JP 2955034624,2955083775,IE 2955083776,2955149311,GB 2955149312,2955411455,UA 2955411456,2955631615,TR 2955631616,2955631871,UA 2955631872,2955673599,TR 2955673600,2955804671,SA 2955804672,2955837439,EE 2955837440,2955845631,IR 2955845632,2955853823,GB 2955853824,2955870207,CH 2955870208,2955935743,SA 2955935744,2956230655,RU 2956230656,2956238847,SI 2956238848,2956242943,ES 2956242944,2956244991,JO 2956244992,2956245247,FR 2956245248,2956245503,RO 2956245504,2956245759,GB 2956245760,2956246015,DE 2956246016,2956247039,FR 2956247040,2956251135,DE 2956251136,2956253183,GB 2956253184,2956255231,IE 2956255232,2956259327,FR 2956259328,2956261375,DE 2956261376,2956263423,ES 2956263424,2956296191,TR 2956312576,2956328959,RU 2956328960,2956460031,TR 2956460032,2956468223,RU 2956468224,2956470271,LV 2956472320,2956474367,RU 2956474368,2956476415,GB 2956476416,2956492799,ES 2956492800,2956496895,CH 2956496896,2956500991,IR 2956500992,2956503039,NL 2956503040,2956504063,CY 2956504064,2956504319,CH 2956504320,2956504575,NL 2956504576,2956504831,CH 2956504832,2956505087,RU 2956505088,2956506111,NL 2956506112,2956506367,GB 2956506368,2956507135,RU 2956507136,2956508159,NL 2956508160,2956509183,RU 2956509184,2956517375,GB 2956517376,2956521471,NL 2956521472,2956525567,SE 2956525568,2956533759,JO 2956533760,2956535807,FR 2956535808,2956537855,LV 2956537856,2956541951,UA 2956544000,2956546047,RU 2956546048,2956548095,FR 2956548096,2956550143,HR 2956550144,2956554239,ES 2956554240,2956558335,IT 2956558336,2956574719,DE 2956574720,2956576767,SE 2956576768,2956578815,ES 2956578816,2956582911,RU 2956582912,2956587007,IS 2956587008,2956589055,FR 2956589056,2956593151,GB 2956593152,2956595199,ES 2956595200,2956597247,PL 2956597248,2956599295,NL 2956599296,2956607487,RU 2956607488,2956611583,PS 2956611584,2956613631,IT 2956613632,2956613887,GB 2956613888,2956614143,NL 2956614144,2956614399,FR 2956614656,2956614911,GB 2956614912,2956615167,NL 2956615168,2956615423,FR 2956615680,2956623871,GB 2956623872,2956656639,GR 2956656640,2956722175,RU 2956722176,2956787711,BY 2956787712,2956820479,IE 2956820480,2956822527,NL 2956822528,2956823039,SE 2956823040,2956823167,GB 2956823168,2956823551,SE 2956823552,2956824575,US 2956824576,2956826623,PT 2956826624,2956828671,HR 2956828672,2956833023,BA 2956833024,2956833791,AT 2956833792,2956836863,BA 2956836864,2956853247,SK 2956853248,2956865535,HR 2956865536,2956869631,IT 2956869632,2956886015,RU 2956886016,2956888063,GB 2956888064,2956890111,BE 2956890112,2956892159,IR 2956892160,2956894207,IT 2956894208,2956898303,BE 2956898304,2956902399,RU 2956902400,2956904447,NL 2956904448,2956906495,DK 2956906496,2956908543,GB 2956908544,2956910591,RU 2956910592,2956914687,CZ 2956914688,2956918783,RU 2956918784,2956984319,HU 2956984320,2957049855,SE 2957049856,2957058047,PS 2957058048,2957066239,RU 2957066240,2957068287,GB 2957068288,2957070335,LU 2957070336,2957074431,IT 2957074432,2957082623,RU 2957082624,2957090815,DE 2957090816,2957115391,IR 2957115392,2957180927,AT 2957180928,2957189119,UA 2957189120,2957193215,LV 2957193216,2957195263,RU 2957195264,2957197311,PS 2957197312,2957201407,IR 2957201408,2957202679,US 2957202680,2957202680,PT 2957202681,2957203455,US 2957203456,2957205503,FR 2957205504,2957213695,PS 2957213696,2957221887,FR 2957221888,2957223935,GB 2957223936,2957223999,FR 2957224000,2957224063,GB 2957224064,2957224191,FR 2957224192,2957224447,DE 2957224448,2957224959,GB 2957224960,2957225215,FR 2957225216,2957228031,GB 2957228032,2957230079,DK 2957230080,2957238271,RS 2957238272,2957240319,CZ 2957240320,2957242367,BG 2957242368,2957244415,RU 2957244416,2957246463,HU 2957246464,2957508607,SE 2957508608,2957574143,FI 2957574144,2957639679,GE 2957639680,2957641727,GB 2957641728,2957643775,RU 2957643776,2957647871,GB 2957647872,2957649919,FR 2957649920,2957651967,CH 2957651968,2957654015,AE 2957654016,2957656063,DE 2957656064,2957672447,GE 2957672448,2957680639,CZ 2957680640,2957688831,GB 2957688832,2957690879,SE 2957690880,2957692927,RU 2957692928,2957694975,NO 2957694976,2957697023,CZ 2957697024,2957705215,NL 2957705216,2957770751,NO 2957770752,2957836287,SI 2957836288,2957869055,RU 2957869056,2957901823,HU 2957901824,2958032895,PT 2958032896,2958557183,ES 2958557184,2958819327,TR 2958819328,2958884863,GR 2958884864,2958950399,FI 2958950400,2959081471,DE 2959081472,2959089663,RU 2959089664,2959093759,PL 2959093760,2959097855,RO 2959097856,2959099903,RU 2959099904,2959101951,UA 2959101952,2959103999,RU 2959104000,2959106047,RO 2959106048,2959114239,AT 2959114240,2959118335,RU 2959118336,2959120383,PL 2959120384,2959122431,AT 2959122432,2959126527,PL 2959126528,2959128575,RO 2959128576,2959130623,RU 2959130624,2959138815,UA 2959138816,2959147007,RU 2959147008,2959149055,UA 2959149056,2959151103,CZ 2959151104,2959155199,PL 2959155200,2959159295,RU 2959159296,2959161343,PL 2959161344,2959163391,UA 2959163392,2959167487,GB 2959167488,2959171583,PL 2959171584,2959175679,RU 2959175680,2959179775,UA 2959179776,2959181823,RU 2959181824,2959183871,PL 2959183872,2959185919,RO 2959185920,2959186943,GB 2959186944,2959187455,CY 2959187456,2959187711,AT 2959187712,2959187967,FR 2959187968,2959204351,RU 2959204352,2959208447,RO 2959208448,2959210495,CZ 2959210496,2959212543,PL 2959212544,2959220735,UA 2959224832,2959226879,UA 2959226880,2959228927,RO 2959228928,2959237119,UA 2959237120,2959241215,CZ 2959241216,2959245311,PL 2959245312,2959253503,RU 2959253504,2959255551,DE 2959255552,2959261695,RU 2959261696,2959278079,KZ 2959278080,2959282175,RU 2959282176,2959286271,SA 2959286272,2959290367,RO 2959290368,2959292415,PL 2959292416,2959343615,RU 2959343616,2959351807,UA 2959351808,2959353855,DE 2959353856,2959355903,RU 2959355904,2959357951,RO 2959357952,2959359999,UA 2959360000,2959384575,RU 2959384576,2959392767,UA 2959392768,2959394815,PL 2959394816,2959398911,ES 2959398912,2959400959,RU 2959400960,2959405055,ES 2959405056,2959413247,RU 2959413248,2959417343,ES 2959417344,2959423487,IR 2959423488,2959427583,RU 2959427584,2959429631,ES 2959429632,2959431679,PL 2959431680,2959433727,RU 2959433728,2959441919,UA 2959441920,2959446015,PL 2959446016,2959450111,CZ 2959450112,2959452159,PL 2959454208,2959456255,SK 2959456256,2959466495,UA 2959466496,2959474687,RU 2959474688,2959491071,UA 2959491072,2959493119,NL 2959493120,2959495167,CZ 2959495168,2959499263,PL 2959499264,2959505407,SK 2959505408,2959507455,RO 2959507456,2959515647,CZ 2959515648,2959517695,RU 2959517696,2959519743,DE 2959519744,2959523839,PL 2959523840,2959532031,UA 2959532032,2959540223,IR 2959540224,2959548415,UA 2959548416,2959552511,PL 2959552512,2959558655,UA 2959558656,2959560703,PL 2959560704,2959568895,RU 2959568896,2959570943,UA 2959570944,2959572991,RO 2959572992,2959581183,RU 2959581184,2959585279,PL 2959585280,2959591423,LV 2959591424,2959595519,UA 2959595520,2959597567,RS 2959597568,2959601663,UA 2959601664,2959603711,RO 2959603712,2959605759,IT 2959605760,2959632383,UA 2959632384,2959634431,RS 2959634432,2959636479,PL 2959636480,2959648767,RU 2959648768,2959650815,UA 2959650816,2959652863,PL 2959652864,2959654911,UA 2959654912,2959663103,RU 2959663104,2959704063,UA 2959704064,2959708159,PL 2959712256,2959728639,UA 2959736832,2959738879,UA 2959738880,2959745023,RU 2959745024,2959747071,PL 2959747072,2959749119,PS 2959749120,2959753215,LV 2959753216,2959761407,RU 2959761408,2959763455,LV 2959763456,2959765503,PL 2959765504,2959767551,GB 2959767552,2959769599,RS 2959769600,2959777791,RU 2959777792,2959783935,LV 2959783936,2959785983,SK 2959785984,2959794175,UA 2959794176,2959796223,IL 2959796224,2959806463,RU 2959806464,2959810559,SK 2959810560,2959814655,PL 2959814656,2959818751,UA 2959818752,2959822847,RO 2959822848,2959824895,RU 2959824896,2959826943,UA 2959826944,2959828991,RU 2959828992,2959833087,PL 2959833088,2959835135,CZ 2959835136,2959843327,UA 2959843328,2959845375,RU 2959845376,2959847423,PL 2959847424,2959853567,UA 2959853568,2959867903,RU 2959867904,2959876095,UA 2959876096,2959880191,RS 2959880192,2959882239,RU 2959882240,2959884287,BA 2959884288,2959892479,KZ 2959892480,2959900671,UA 2959900672,2959902719,PL 2959902720,2959915007,RU 2959915008,2959917055,UA 2959917056,2959925247,RU 2959925248,2959927295,RO 2959927296,2959929343,UA 2959929344,2959935487,RU 2959935488,2959937535,UA 2959937536,2959945727,RU 2959945728,2959947775,PL 2959947776,2959949823,SK 2959949824,2959966207,RU 2959966208,2959968255,PL 2959968256,2959970303,RS 2959970304,2959974399,RU 2959974400,2959976447,PL 2959976448,2960015359,UA 2960015360,2960023551,RU 2960023552,2960024575,IT 2960024576,2960024831,SA 2960024832,2960025087,RU 2960025088,2960025599,UA 2960025600,2960025855,NL 2960025856,2960026111,FR 2960026112,2960026623,RO 2960026624,2960027647,IR 2960027648,2960028671,RO 2960028672,2960029183,NO 2960029184,2960029439,GB 2960029440,2960029695,KW 2960029696,2960035839,RU 2960035840,2960039935,PL 2960039936,2960054271,RU 2960054272,2960056319,RO 2960056320,2960064511,RU 2960064512,2960066559,RO 2960066560,2960068607,RU 2960068608,2960072703,PL 2960072704,2960080895,UA 2960080896,2960084991,RU 2960084992,2960089087,UA 2960089088,2960091135,RU 2960091136,2960093183,PT 2960093184,2960105471,PL 2960105472,2960107519,RO 2960109568,2960113663,UA 2960113664,2960117759,NO 2960117760,2960119807,RU 2960119808,2960121855,CH 2960121856,2960125951,PL 2960125952,2960127999,UA 2960128000,2960130047,RU 2960130048,2960138239,UA 2960138240,2960148479,RU 2960148480,2960150527,PL 2960150528,2960152575,RO 2960152576,2960158719,RU 2960158720,2960160767,PL 2960160768,2960162815,UA 2960162816,2960175103,RU 2960175104,2960179199,SK 2960179200,2960187391,IR 2960187392,2960205823,RU 2960207872,2960211967,RU 2960220160,2960224255,RO 2960224256,2960228351,RU 2960228352,2960232447,TJ 2960232448,2960240639,UA 2960240640,2960244735,RO 2960244736,2960248831,PL 2960248832,2960265215,UA 2960265216,2960275455,RU 2960275456,2960277503,RO 2960277504,2960285695,RU 2960285696,2960289791,RO 2960289792,2960320511,RU 2960320512,2960322559,PL 2960322560,2960326655,CZ 2960326656,2960334847,PL 2960334848,2960347135,RU 2960347136,2960349183,PL 2960349184,2960351231,RU 2960351232,2960353279,UA 2960353280,2960369663,RU 2960369664,2960371711,IT 2960371712,2960383999,RU 2960384000,2960388095,RO 2960388096,2960392191,PL 2960392192,2960400383,RU 2960400384,2960404479,RO 2960404480,2960408575,RU 2960408576,2960416767,UA 2960416768,2960424959,SK 2960424960,2960427007,RO 2960427008,2960429055,RU 2960429056,2960429311,BG 2960429312,2960429567,NL 2960429568,2960430079,UA 2960430080,2960431103,PL 2960431104,2960441343,RU 2960441344,2960443391,UA 2960443392,2960445439,PL 2960445440,2960449535,RU 2960449536,2960453631,RO 2960453632,2960472063,RU 2960472064,2960474111,NL 2960474112,2960482303,UA 2960482304,2960484351,TR 2960484352,2960486399,DE 2960486400,2960498687,RU 2960498688,2960506879,UA 2960506880,2960531455,RU 2960533504,2960537599,UA 2960537600,2960539647,RO 2960539648,2960543743,RU 2960543744,2960547839,RO 2960547840,2960551935,SK 2960551936,2960558079,RU 2960558080,2960560127,PL 2960560128,2960562175,UA 2960562176,2960564223,BY 2960574464,2960576511,RO 2960576512,2960588799,RU 2960588800,2960592895,UA 2960592896,2960594943,RU 2960594944,2960596991,UA 2960596992,2960605183,PL 2960605184,2960621567,UA 2960629760,2960646143,RU 2960646144,2960648191,KZ 2960648192,2960650239,UA 2960650240,2960652287,RU 2960652288,2960654335,PS 2960654336,2960658431,RU 2960658432,2960660479,US 2960660480,2960662527,RU 2960662528,2960670719,UA 2960670720,2960678911,RU 2960678912,2960685055,UA 2960685056,2960687103,PL 2960687104,2960695295,FR 2960695296,2960697343,AT 2960697344,2960699391,ES 2960699392,2960719871,RU 2960719872,2960723967,UA 2960723968,2960726015,RU 2960726016,2960732159,RO 2960732160,2960736255,RU 2960736256,2960738303,ES 2960738304,2960740351,UA 2960740352,2960742399,PL 2960742400,2960744447,NO 2960744448,2960748543,RO 2960748544,2960752639,PL 2960752640,2960769023,RU 2960769024,2960773119,UA 2960773120,2960777215,RU 2960777216,2960785407,UA 2960785408,2960793599,RU 2960793600,2960797695,CZ 2960797696,2960805887,RU 2960805888,2960807935,KZ 2960807936,2960834559,UA 2960834560,2960835071,GB 2960835072,2960835583,CH 2960835584,2960836351,IT 2960836352,2960836607,PL 2960836608,2960838655,RU 2960839168,2960839679,IR 2960839680,2960846847,PL 2960846848,2960847871,DE 2960847872,2960848383,PL 2960848384,2960848639,GB 2960848640,2960850943,RU 2960850944,2960859135,MD 2960859136,2960863231,GB 2960863232,2960863487,DE 2960863488,2960863743,RU 2960863744,2960863999,GB 2960864000,2960864255,DE 2960864256,2960864767,GB 2960864768,2960865279,DE 2960865280,2960865535,RU 2960865536,2960865791,HR 2960865792,2960866303,GB 2960866304,2960866815,PL 2960866816,2960867071,GB 2960867072,2960867327,FR 2960867328,2960883711,IR 2960883712,2960904191,RU 2960904192,2960906239,RS 2960906240,2960907263,RU 2960907264,2960907775,UA 2960907776,2960908031,GB 2960908032,2960908287,PL 2960908288,2960916479,KG 2960916480,2960924671,UA 2960932864,2960933887,IR 2960933888,2960934655,GB 2960934656,2960934911,NL 2960934912,2960941055,RO 2960941056,2960943103,AM 2960943104,2960945151,RO 2960945152,2960945663,GB 2960945664,2960949247,RU 2960949248,2960951295,UA 2960951296,2960951807,RU 2960951808,2960952319,UA 2960952320,2960953343,PL 2960953344,2960954367,RU 2960954368,2960954623,SE 2960954624,2960954879,DE 2960954880,2960960511,RU 2960960512,2960963583,RO 2960963584,2960964607,CZ 2960964608,2960965119,RU 2960965120,2960965375,PL 2960965376,2960965631,GB 2960965632,2960973823,RU 2960973824,2960974335,SE 2960974336,2960974847,RU 2960974848,2960977919,UA 2960977920,2960979455,PL 2960979456,2960979711,IE 2960979712,2960979967,EE 2960979968,2960980223,RU 2960980224,2960980479,AT 2960980480,2960980991,SE 2960980992,2960981247,PT 2960981248,2960982015,NL 2960982016,2960990207,RO 2960990208,2960998399,UA 2960998400,2961039359,RU 2961047552,2961057023,RU 2961057024,2961057279,IE 2961057280,2961057535,GR 2961057536,2961057791,AT 2961057792,2961061887,RU 2961061888,2961062911,PL 2961062912,2961063935,UA 2961063936,2961064959,NL 2961064960,2961065215,HK 2961065216,2961065471,AU 2961065472,2961065727,BR 2961065728,2961069567,NL 2961069568,2961069823,IN 2961069824,2961072127,NL 2961072128,2961088511,UA 2961088512,2961088767,SE 2961088768,2961089023,RU 2961089024,2961089535,UA 2961089536,2961090559,KG 2961090560,2961096703,RO 2961096704,2961097471,GB 2961097472,2961102847,RO 2961102848,2961103871,DE 2961103872,2961104895,RO 2961104896,2961106943,GB 2961106944,2961108991,RO 2961108992,2961111039,GB 2961111040,2961112063,PL 2961112064,2961113087,RO 2961113088,2961178623,CH 2961178624,2965372927,FR 2965372928,2965766143,RU 2965766144,2965897215,DE 2965897216,2966028287,IT 2966028288,2966159359,QA 2966159360,2966290431,AE 2966290432,2966421503,IT 2966421504,2966945791,RU 2966945792,2967268351,TR 2967268352,2967269375,IN 2967269376,2967273471,TR 2967273472,2967277567,RU 2967277568,2967281663,IR 2967281664,2967283711,PT 2967283712,2967285759,DE 2967285760,2967287807,IT 2967287808,2967289855,GB 2967289856,2967291903,IR 2967291904,2967293951,RS 2967293952,2967295999,SE 2967296000,2967298047,NO 2967298048,2967306239,PL 2967306240,2967339007,GE 2967339008,2967343103,BG 2967343104,2967345151,RU 2967345152,2967347199,ES 2967347200,2967351295,HR 2967351296,2967355391,FR 2967355392,2967363583,ES 2967363584,2967371775,SE 2967371776,2967388159,KZ 2967388160,2967392255,RU 2967392256,2967394303,FR 2967394304,2967396351,RU 2967396352,2967398399,CZ 2967398400,2967400447,DK 2967400448,2967404543,RU 2967404544,2967422975,RO 2967422976,2967425023,KZ 2967425024,2967427071,DE 2967427072,2967428095,NL 2967428096,2967432191,RO 2967432192,2967432447,GB 2967432448,2967432959,RO 2967432960,2967433215,CH 2967433216,2967434239,RO 2967434240,2967435007,GB 2967435008,2967435263,IE 2967435264,2967441407,RO 2967441408,2967445503,MD 2967445504,2967446015,GB 2967446016,2967446783,RO 2967446784,2967447039,DE 2967447040,2967470079,RO 2967470080,2967601151,SA 2967601152,2967633919,HU 2967633920,2967666687,RU 2967666688,2967699455,TR 2967699456,2967703551,GB 2967703552,2967707647,ES 2967707648,2967709695,PL 2967709696,2967711743,IT 2967711744,2967715839,RU 2967715840,2967724031,GB 2967724032,2967728127,CY 2967730176,2967732223,CZ 2967732224,2967994367,IL 2967994368,2968584191,TR 2968584192,2968600575,HU 2968600576,2968602623,IQ 2968602624,2968604671,PL 2968604672,2968608767,IQ 2968608768,2968610815,RU 2968610816,2968612863,UA 2968612864,2968614143,IL 2968614144,2968614911,US 2968614912,2968616959,FR 2968616960,2968625151,UA 2968625152,2968629247,DE 2968629248,2968631295,BH 2968631296,2968633343,SA 2968633344,2968643583,RU 2968643584,2968645631,NO 2968645632,2968647679,PL 2968647680,2968648223,FR 2968648224,2968648255,CH 2968648256,2968648287,GB 2968648288,2968648319,BE 2968648320,2968648479,FR 2968648480,2968648511,CH 2968648512,2968648543,GB 2968648544,2968648575,BE 2968648576,2968649727,FR 2968649728,2969042943,IT 2969042944,2969567231,GB 2969567232,2970294271,BR 2970295808,2972125183,BR 2972126208,2973071359,BR 2973072384,2973079551,BR 2973082624,2975199231,BR 2975199744,2975199999,BR 2975201280,2975594495,BR 2975594496,2975596543,PE 2975596544,2977733631,BR 2977734656,2978029567,BR 2978031616,2984247295,BR 2984247296,2984935423,MX 2984935424,2984936447,AR 2984936448,2984937471,BR 2984937472,2984938239,HN 2984938240,2984938255,US 2984938256,2984939519,HN 2984939520,2984951807,BR 2984951808,2984968191,EC 2984968192,2985033727,BR 2985033728,2985951231,MX 2985951232,2986082303,PY 2986082304,2986344447,CO 2986344448,2987393023,DE 2987393024,2987397119,IM 2987397120,2987401215,LV 2987401216,2987405311,LT 2987405312,2987409407,DE 2987409408,2987413503,NO 2987413504,2987415807,UA 2987415808,2987417599,RU 2987417600,2987425791,PL 2987425792,2987429887,BG 2987429888,2987433983,RU 2987433984,2987438079,FR 2987438080,2987442175,FI 2987442176,2987446271,IE 2987446272,2987450367,SE 2987450368,2987454463,GB 2987454464,2987458559,FR 2987458560,2987462655,CZ 2987462656,2987466751,RS 2987466752,2987470847,GB 2987470848,2987474943,IQ 2987474944,2987479039,GB 2987479040,2987487231,CZ 2987487232,2987491327,HR 2987491328,2987495423,RU 2987495424,2987499519,NO 2987499520,2987500199,MD 2987500200,2987500207,AQ 2987500208,2987503615,MD 2987503616,2987511807,RU 2987511808,2987515903,JO 2987515904,2987518207,DE 2987518208,2987519487,US 2987519488,2987519999,DE 2987520000,2987524095,GB 2987524096,2987528191,RU 2987528192,2987529215,US 2987529216,2987530751,NL 2987530752,2987531775,US 2987531776,2987532287,NL 2987532288,2987536383,MD 2987536384,2987540479,FR 2987540480,2987544575,SK 2987544576,2987548671,NL 2987548672,2987552767,RU 2987552768,2987553023,AE 2987553024,2987556863,GB 2987556864,2987560959,NL 2987560960,2987565055,DE 2987565056,2987569151,AT 2987569152,2987573247,FR 2987573248,2987577343,TR 2987577344,2987585535,RU 2987585536,2987589631,DE 2987589632,2987593727,FR 2987593728,2987597823,LT 2987597824,2987601919,ES 2987601920,2987606015,IS 2987606016,2987610111,DE 2987610112,2987614207,RU 2987614208,2987618303,PL 2987618304,2987622399,NL 2987622400,2987626495,FR 2987626496,2987634687,IT 2987634688,2987638783,PL 2987638784,2987642879,FO 2987642880,2987651071,DE 2987651072,2987655167,RU 2987655168,2987659263,DE 2987659264,2987661311,BA 2987663360,2987665407,IT 2987665408,2987667455,RU 2987667456,2987669503,FR 2987669504,2987671551,NL 2987671552,2987673599,FR 2987673600,2987675647,IT 2987675648,2987677695,IE 2987677696,2987681791,DE 2987681792,2987683839,NO 2987683840,2987685887,IT 2987685888,2987687935,GR 2987687936,2987689983,RU 2987689984,2987692031,CZ 2987692032,2987694079,SA 2987694080,2987696127,UA 2987696128,2987698175,RS 2987698176,2987700223,NL 2987700224,2987702271,RU 2987702272,2987704319,JO 2987704320,2987706367,GB 2987706368,2987708415,RS 2987710464,2987712511,DK 2987712512,2987714559,TR 2987714560,2987716607,RU 2987716608,2987718655,FR 2987718656,2987720703,NL 2987720704,2987722751,DE 2987722752,2987724799,RU 2987724800,2987726847,NL 2987726848,2987728895,RU 2987728896,2987730943,GB 2987730944,2987732991,IR 2987732992,2987735039,HU 2987735040,2987737087,ES 2987737088,2987739135,RU 2987739136,2987742982,SE 2987742983,2987742983,DK 2987742984,2987743231,SE 2987743232,2987745279,DK 2987745280,2987747327,IT 2987747328,2987749375,ES 2987749376,2987751423,NL 2987751424,2987753471,RO 2987753472,2987755519,NO 2987755520,2987757567,PL 2987757568,2987759615,DE 2987759616,2987761663,PL 2987761664,2987763711,IR 2987763712,2987765759,GR 2987765760,2987767807,FR 2987767808,2987769855,CZ 2987769856,2987771903,FI 2987771904,2987773951,IT 2987773952,2987775999,FR 2987776000,2987778047,NL 2987778048,2987780095,CH 2987780096,2987782143,GB 2987782144,2987784191,EE 2987784192,2987786239,DK 2987786240,2987788287,FR 2987788288,2987790335,TR 2987790336,2987792383,GB 2987792384,2987794431,CH 2987794432,2987796479,IQ 2987796480,2987800575,RU 2987800576,2987802623,NL 2987802624,2987804671,CH 2987804672,2987806719,IR 2987806720,2987808767,NL 2987808768,2987810815,RU 2987810816,2987812863,NO 2987812864,2987814911,CH 2987814912,2987816959,CZ 2987816960,2987817983,NL 2987817984,2987819007,GB 2987819008,2987821055,FR 2987821056,2987823103,GB 2987823104,2987827199,FR 2987827200,2987829247,GB 2987829248,2987831295,KZ 2987831296,2987833343,FR 2987833344,2987835391,IT 2987835392,2987837439,RU 2987837440,2987839487,SE 2987839488,2987841535,GB 2987841536,2987843583,RS 2987843584,2987845631,HU 2987845632,2987847679,NL 2987847680,2987849727,FR 2987849728,2987851775,IT 2987851776,2987853823,RU 2987853824,2987855871,IT 2987855872,2987857919,QA 2987857920,2987859967,DE 2987859968,2987862015,FR 2987862016,2987864063,BE 2987864064,2987866111,DE 2987866112,2987868159,ES 2987868160,2987870207,RO 2987870208,2987872255,GR 2987872256,2987874303,AT 2987874304,2987876351,SK 2987876352,2987878399,NO 2987878400,2987880447,PL 2987880448,2987882495,EE 2987882496,2987884543,DE 2987884544,2987886591,GB 2987886592,2987888639,UA 2987888640,2987890687,RU 2987890688,2987892735,FR 2987892736,2987894783,GB 2987894784,2987896831,CH 2987896832,2987898879,DK 2987898880,2987900927,NL 2987900928,2987902975,PL 2987902976,2987905023,IT 2987905024,2987907071,ES 2987907072,2987909119,CZ 2987909120,2987911167,RU 2987911168,2987913215,CZ 2987913216,2987915263,DK 2987915264,2987917311,IT 2987917312,2988179455,DE 2988179456,2988411647,SE 2988411648,2988411775,DE 2988411776,2988441599,SE 2988441600,2988442075,FR 2988442076,2988442079,ES 2988442080,2988442847,FR 2988442848,2988442863,IT 2988442864,2988443263,FR 2988443264,2988443295,ES 2988443296,2988444208,FR 2988444209,2988444209,FI 2988444210,2988444671,FR 2988444672,2988444679,ES 2988444680,2988446719,FR 2988446720,2988446723,DE 2988446724,2988446871,FR 2988446872,2988446872,IE 2988446873,2988448607,FR 2988448608,2988448639,ES 2988448640,2988448799,FR 2988448800,2988448815,ES 2988448816,2988449207,FR 2988449208,2988449215,ES 2988449216,2988451839,FR 2988451840,2988453887,BE 2988453888,2988457983,GB 2988457984,2988458319,FR 2988458320,2988458327,NL 2988458328,2988459119,FR 2988459120,2988459127,IT 2988459128,2988459135,PL 2988459136,2988459535,FR 2988459536,2988459539,ES 2988459540,2988459687,FR 2988459688,2988459691,PL 2988459692,2988459863,FR 2988459864,2988459867,ES 2988459868,2988460063,FR 2988460064,2988460095,PT 2988460096,2988460575,FR 2988460576,2988460591,PT 2988460592,2988460651,FR 2988460652,2988460655,ES 2988460656,2988462747,FR 2988462748,2988462751,ES 2988462752,2988463915,FR 2988463916,2988463919,ES 2988463920,2988463999,FR 2988464000,2988464007,IE 2988464008,2988464015,LT 2988464016,2988464359,FR 2988464360,2988464363,NL 2988464364,2988464611,FR 2988464612,2988464615,IT 2988464616,2988464623,FR 2988464624,2988464627,ES 2988464628,2988465215,FR 2988465216,2988465219,ES 2988465220,2988465559,FR 2988465560,2988465563,ES 2988465564,2988466098,FR 2988466099,2988466099,BE 2988466100,2988476415,FR 2988476416,2988478463,IT 2988478464,2988478579,FR 2988478580,2988478583,DE 2988478584,2988478587,FR 2988478588,2988478591,DE 2988478592,2988479003,FR 2988479004,2988479007,ES 2988479008,2988479727,FR 2988479728,2988479735,DE 2988479736,2988479791,FR 2988479792,2988479807,GB 2988479808,2988480077,FR 2988480078,2988480078,ES 2988480079,2988480207,FR 2988480208,2988480223,ES 2988480224,2988482111,FR 2988482112,2988482143,DE 2988482144,2988482319,FR 2988482320,2988482335,IT 2988482336,2988482575,FR 2988482576,2988482579,CZ 2988482580,2988483027,FR 2988483028,2988483031,ES 2988483032,2988484831,FR 2988484832,2988484847,GB 2988484848,2988485683,FR 2988485684,2988485687,PL 2988485688,2988486075,FR 2988486076,2988486079,DE 2988486080,2988486083,FR 2988486084,2988486087,PT 2988486088,2988486311,FR 2988486312,2988486319,NL 2988486320,2988487071,FR 2988487072,2988487075,ES 2988487076,2988487095,FR 2988487096,2988487099,ES 2988487100,2988487235,FR 2988487236,2988487239,NL 2988487240,2988487303,FR 2988487304,2988487311,NL 2988487312,2988487407,FR 2988487408,2988487415,IT 2988487416,2988487883,FR 2988487884,2988487887,NL 2988487888,2988487919,FR 2988487920,2988487923,DE 2988487924,2988488971,FR 2988488972,2988488975,MT 2988488976,2988489479,FR 2988489480,2988489483,DE 2988489484,2988489675,FR 2988489676,2988489679,ES 2988489680,2988490179,FR 2988490180,2988490183,ES 2988490184,2988490683,FR 2988490684,2988490686,IT 2988490687,2988490687,BE 2988490688,2988490719,ES 2988490720,2988491151,FR 2988491152,2988491155,NL 2988491156,2988491251,FR 2988491252,2988491252,ES 2988491253,2988492799,FR 2988492800,2988494847,PL 2988494848,2988499535,FR 2988499536,2988499551,ES 2988499552,2988499663,FR 2988499664,2988499671,NL 2988499672,2988499729,FR 2988499730,2988499730,GB 2988499731,2988499736,FR 2988499737,2988499737,NL 2988499738,2988500415,FR 2988500416,2988500447,CZ 2988500448,2988500855,FR 2988500856,2988500859,ES 2988500860,2988501127,FR 2988501128,2988501131,IT 2988501132,2988501415,FR 2988501416,2988501423,IT 2988501424,2988502051,FR 2988502052,2988502055,PL 2988502056,2988502479,FR 2988502480,2988502483,ES 2988502484,2988502655,FR 2988502656,2988502719,DE 2988502720,2988502881,FR 2988502882,2988502882,IT 2988502883,2988504371,FR 2988504372,2988504375,PL 2988504376,2988505151,FR 2988505152,2988505167,GB 2988505168,2988505391,FR 2988505392,2988505395,ES 2988505396,2988506235,FR 2988506236,2988506239,NL 2988506240,2988506943,FR 2988506944,2988506975,DE 2988506976,2988507163,FR 2988507164,2988507167,ES 2988507168,2988507531,FR 2988507532,2988507535,NL 2988507536,2988507807,FR 2988507808,2988507823,NL 2988507824,2988507975,FR 2988507976,2988507979,IT 2988507980,2988508607,FR 2988508608,2988508639,ES 2988508640,2988509511,FR 2988509512,2988509515,PL 2988509516,2988509747,FR 2988509748,2988509751,LT 2988509752,2988510175,FR 2988510176,2988510191,DE 2988510192,2988512903,FR 2988512904,2988512907,GB 2988512908,2988513003,FR 2988513004,2988513007,ES 2988513008,2988513747,FR 2988513748,2988513751,IT 2988513752,2988514207,FR 2988514208,2988514215,PT 2988514216,2988514399,FR 2988514400,2988514431,NL 2988514432,2988515327,FR 2988515328,2988517375,DE 2988517376,2988519423,FR 2988519424,2988521471,PL 2988521472,2988523743,FR 2988523744,2988523759,DE 2988523760,2988524075,FR 2988524076,2988524079,ES 2988524080,2988524271,FR 2988524272,2988524287,DE 2988524288,2988525579,FR 2988525580,2988525583,IT 2988525584,2988525887,FR 2988525888,2988525951,GB 2988525952,2988526415,FR 2988526416,2988526423,ES 2988526424,2988527447,FR 2988527448,2988527455,NL 2988527456,2988527527,FR 2988527528,2988527531,NL 2988527532,2988527723,FR 2988527724,2988527727,ES 2988527728,2988527831,FR 2988527832,2988527839,ES 2988527840,2988527887,FR 2988527888,2988527891,ES 2988527892,2988528699,FR 2988528700,2988528703,CZ 2988528704,2988529351,FR 2988529352,2988529359,GB 2988529360,2988529375,FR 2988529376,2988529383,GB 2988529384,2988529387,ES 2988529388,2988530087,FR 2988530088,2988530091,NL 2988530092,2988531275,FR 2988531276,2988531279,PT 2988531280,2988535807,FR 2988535808,2988537855,ES 2988537856,2988539971,FR 2988539972,2988539975,ES 2988539976,2988540199,FR 2988540200,2988540207,BE 2988540208,2988540503,FR 2988540504,2988540507,NL 2988540508,2988540563,FR 2988540564,2988540567,CZ 2988540568,2988541955,FR 2988541956,2988541959,DE 2988541960,2988542339,FR 2988542340,2988542340,PT 2988542341,2988542627,FR 2988542628,2988542631,NL 2988542632,2988544671,FR 2988544672,2988544687,GB 2988544688,2988545515,FR 2988545516,2988545519,GB 2988545520,2988546687,FR 2988546688,2988546691,CH 2988546692,2988546703,FR 2988546704,2988546719,DE 2988546720,2988546727,FR 2988546728,2988546731,ES 2988546732,2988547019,FR 2988547020,2988547023,NL 2988547024,2988547055,FR 2988547056,2988547059,NL 2988547060,2988547067,FR 2988547068,2988547071,ES 2988547072,2988547095,FR 2988547096,2988547099,ES 2988547100,2988547655,FR 2988547656,2988547663,PL 2988547664,2988547871,FR 2988547872,2988547903,GB 2988547904,2988548015,FR 2988548016,2988548019,ES 2988548020,2988548095,FR 2988548096,2988550143,ES 2988550144,2988550359,FR 2988550360,2988550363,ES 2988550364,2988550438,FR 2988550439,2988550439,GB 2988550440,2988550463,FR 2988550464,2988550527,DE 2988550528,2988551443,FR 2988551444,2988551447,ES 2988551448,2988551535,FR 2988551536,2988551551,DE 2988551552,2988552883,FR 2988552884,2988552887,IT 2988552888,2988553199,FR 2988553200,2988553215,BE 2988553216,2988553399,FR 2988553400,2988553407,NL 2988553408,2988553531,FR 2988553532,2988553535,ES 2988553536,2988553855,FR 2988553856,2988553919,BE 2988553920,2988554035,FR 2988554036,2988554039,ES 2988554040,2988555527,FR 2988555528,2988555531,DE 2988555532,2988555551,FR 2988555552,2988555559,PT 2988555560,2988556207,FR 2988556208,2988556211,DE 2988556212,2988556359,FR 2988556360,2988556363,ES 2988556364,2988557103,FR 2988557104,2988557111,PT 2988557112,2988557507,FR 2988557508,2988557511,ES 2988557512,2988557539,FR 2988557540,2988557543,ES 2988557544,2988557983,FR 2988557984,2988557999,IT 2988558000,2988558203,FR 2988558204,2988558207,DE 2988558208,2988558623,FR 2988558624,2988558655,NL 2988558656,2988558803,FR 2988558804,2988558807,ES 2988558808,2988558815,NL 2988558816,2988560639,FR 2988560640,2988560703,ES 2988560704,2988560759,FR 2988560760,2988560767,FI 2988560768,2988560783,FR 2988560784,2988560799,NL 2988560800,2988560815,DE 2988560816,2988561583,FR 2988561584,2988561591,GB 2988561592,2988561763,FR 2988561764,2988561767,IT 2988561768,2988562847,FR 2988562848,2988562863,GB 2988562864,2988563559,FR 2988563560,2988563567,NL 2988563568,2988563671,FR 2988563672,2988563675,DE 2988563676,2988564023,FR 2988564024,2988564027,IE 2988564028,2988564143,FR 2988564144,2988564159,ES 2988564160,2988564367,FR 2988564368,2988564383,GB 2988564384,2988572671,FR 2988572672,2988703743,RU 2988703744,2988834815,PL 2988834816,2988965887,CH 2988965888,2989096959,SK 2989096960,2989228031,PL 2989228032,2989490175,RU 2989490176,2989555711,HU 2989555712,2989588479,RU 2989588480,2989589503,CO 2989589504,2989621247,RU 2989621248,2989752319,BE 2989752320,2989817855,SY 2989817856,2989883391,KW 2989883392,2989948927,UA 2989948928,2990014463,FI 2990014464,2990079999,PL 2990080000,2990096895,RU 2990096896,2990097023,KZ 2990097024,2990097151,US 2990097152,2990097279,KZ 2990097280,2990145535,RU 2990145536,2990211071,SI 2990211072,2990276607,GR 2990276608,2990342143,ES 2990342144,2990407679,KW 2990407680,2990440447,GB 2990440448,2990473215,NL 2990473216,2990475674,DE 2990475675,2990475675,HR 2990475676,2990538751,DE 2990538752,2991063039,RU 2991063040,2991067135,SE 2991067136,2991071231,DK 2991071232,2991079423,NO 2991079424,2991095807,RU 2991095808,2991112191,AM 2991112192,2991128575,CZ 2991128576,2991144959,PL 2991144960,2991161343,SA 2991161344,2991177727,FR 2991177728,2991179503,SE 2991179504,2991179507,ES 2991179508,2991191807,SE 2991191808,2991192063,FI 2991192064,2991194111,SE 2991194112,2991210495,NO 2991210496,2991243263,RU 2991243264,2991259647,UA 2991259648,2991292415,RU 2991292416,2991308799,FI 2991308800,2991325183,BG 2991325184,2991341567,AZ 2991341568,2991357951,MD 2991357952,2991363071,DE 2991363072,2991363327,US 2991363328,2991374335,DE 2991374336,2991390719,RU 2991390720,2991407103,BA 2991407104,2991423487,DE 2991423488,2991439871,JO 2991439872,2991456255,CZ 2991456256,2991472639,RU 2991472640,2991489023,GB 2991489024,2991505407,AM 2991505408,2991521791,SE 2991521792,2991538175,RS 2991538176,2991554559,SI 2991554560,2991570943,GB 2991570944,2991571711,IT 2991571712,2991571967,GB 2991571968,2991587327,IT 2991587328,2991718399,SA 2991718400,2991752191,CH 2991752192,2991752575,DE 2991752576,2991849471,CH 2991849472,2991980543,NL 2991980544,2992111615,SA 2992111616,2992373759,KZ 2992373760,2992635903,UA 2992635904,2993684479,GB 2993684480,2993946623,AT 2993946624,2994208767,BE 2994208768,2994733055,BY 2994733056,2994798591,GR 2994798592,2994929663,RU 2994929664,2994995199,IR 2994995200,2994997247,RU 2994997248,2994999295,BE 2994999296,2995003391,FR 2995003392,2995007487,BH 2995007488,2995009535,TR 2995009536,2995011583,ES 2995011584,2995013631,DE 2995013632,2995015679,SE 2995015680,2995017215,BG 2995017216,2995017471,JP 2995017472,2995017727,BG 2995017728,2995019775,IT 2995019776,2995021823,RU 2995021824,2995023871,IT 2995023872,2995044351,MD 2995044352,2995046399,ES 2995046400,2995048447,RU 2995048448,2995050495,NL 2995050496,2995050561,AL 2995050562,2995050562,XK 2995050563,2995052543,AL 2995052544,2995056639,DK 2995056640,2995058687,DE 2995058688,2995060735,SE 2995060736,2995126271,UA 2995126272,2995191807,GE 2995191808,2995257343,LB 2995257344,2995388415,UA 2995388416,2995453951,RO 2995453952,2995519487,ES 2995519488,2995650559,RU 2995650560,2995716095,DE 2995716096,2995781631,SK 2995781632,2995912703,BE 2995912704,2996043775,GR 2996043776,2996174847,RS 2996174848,2996305919,UA 2996305920,2996436991,QA 2996436992,2996469759,BY 2996469760,2996502399,RU 2996502400,2996502431,TR 2996502432,2996535295,RU 2996535296,2996568063,DK 2996568064,2996600831,ES 2996600832,2996633599,RO 2996633600,2996649983,IR 2996649984,2996666367,RO 2996666368,2996682751,RU 2996682752,2996699135,DK 2996699136,2996764671,UA 2996764672,2996768767,GB 2996768768,2996772863,RU 2996772864,2996776959,UA 2996776960,2996781055,RU 2996781056,2996785151,RO 2996785152,2996789247,RU 2996789248,2996793599,UA 2996793600,2996797439,RU 2996797440,2996801535,PL 2996801536,2996805631,RO 2996805632,2996809727,PL 2996809728,2996813823,UA 2996813824,2996817919,PL 2996817920,2996826111,UA 2996826112,2996828159,BY 2996828160,2996830207,RU 2996830208,2996862975,HR 2996862976,2996895743,AM 2996895744,2996928511,KW 2996928512,2996994047,RU 2996994048,2997026815,DE 2997026816,2997059583,RU 2997059584,2997092351,BY 2997092352,2997125119,NO 2997125120,2997157887,HU 2997157888,2997190655,UA 2997190656,2997223423,AT 2997223424,2997256191,PT 2997256192,2997321727,RU 2997321728,2997354495,IE 2997354496,2997387263,MD 2997387264,2997420031,BY 2997420032,2997452799,RU 2997452800,2997485567,BG 2997485568,2997506559,FR 2997506560,2997506815,GB 2997506816,2997507071,ES 2997507072,2997507327,IT 2997507328,2997507583,DE 2997507584,2997508095,PT 2997508096,2997508351,DE 2997508352,2997508607,IT 2997508608,2997508863,ES 2997508864,2997509119,GB 2997509120,2997513345,FR 2997513346,2997513346,IT 2997513347,2997513347,ES 2997513348,2997513348,DE 2997513349,2997513349,PT 2997513350,2997513350,BE 2997513351,2997513351,LU 2997513352,2997513352,AT 2997513353,2997513353,NL 2997513354,2997513354,IE 2997513355,2997515683,FR 2997515684,2997515684,GB 2997515685,2997518335,FR 2997518336,2997520383,DE 2997520384,2997520895,NL 2997520896,2997521151,MT 2997521152,2997521407,US 2997521408,2997521663,UY 2997521664,2997522175,IN 2997522176,2997522431,PK 2997522432,2997522687,IT 2997522688,2997522943,BE 2997522944,2997523199,NO 2997523200,2997523455,NL 2997523456,2997524479,DE 2997524480,2997525503,NL 2997525504,2997526527,TR 2997526528,2997583871,RU 2997583872,2997616639,SY 2997616640,2997649407,SI 2997649408,2997682175,BY 2997682176,2997714943,RU 2997714944,2997747711,IR 2997747712,2997780479,CH 2997780480,2997813247,SE 2997813248,2997846015,AL 2997846016,2997878783,MD 2997878784,2998140927,RU 2998140928,2998403071,PL 2998403072,2998665215,RU 2998665216,2998927359,AT 2998927360,2999451647,CH 2999451648,2999713791,DE 2999713792,2999975935,RU 2999975936,2999984127,FR 2999984128,2999989005,NL 2999989006,2999989006,BE 2999989007,2999992319,NL 2999992320,3000000511,RU 3000000512,3000008703,DE 3000008704,3000016895,RU 3000016896,3000025087,GB 3000025088,3000033279,GI 3000033280,3000041471,RU 3000041472,3000049663,BA 3000049664,3000057855,CH 3000057856,3000066047,UA 3000066048,3000074239,RU 3000074240,3000082431,CZ 3000082432,3000090623,DK 3000090624,3000131583,RU 3000131584,3000139775,DE 3000139776,3000147967,UA 3000147968,3000156159,TR 3000156160,3000164351,UA 3000164352,3000172543,HU 3000172544,3000180735,RU 3000180736,3000188927,TR 3000188928,3000197119,IT 3000197120,3000213503,UA 3000213504,3000221695,RU 3000221696,3000229887,TR 3000229888,3000238079,CH 3000238080,3000240127,KZ 3000240128,3000242175,RU 3000242176,3000244223,AT 3000244224,3000246271,PL 3000246272,3000248319,RO 3000248320,3000252415,PL 3000252416,3000254463,RO 3000254464,3000256511,UA 3000256512,3000260607,RU 3000260608,3000262655,RS 3000262656,3000266751,UA 3000266752,3000268799,DE 3000268800,3000270847,PL 3000270848,3000272895,RU 3000272896,3000274943,IT 3000274944,3000283135,PL 3000283136,3000285183,RU 3000285184,3000287231,RO 3000287232,3000289279,UA 3000289280,3000291327,RO 3000291328,3000293375,RU 3000293376,3000295423,PL 3000295424,3000297471,RU 3000297472,3000301567,UA 3000301568,3000302591,RU 3000302592,3000303103,LV 3000303104,3000303359,CH 3000303360,3000303615,DE 3000303616,3000305663,UA 3000305664,3000313855,RU 3000313856,3000315903,CZ 3000315904,3000317951,LV 3000317952,3000319999,PL 3000320000,3000322047,FR 3000322048,3000322303,PL 3000322304,3000322559,RU 3000322560,3000322815,DE 3000322816,3000323071,RU 3000323072,3000323583,DE 3000323584,3000326143,RU 3000326144,3000330239,PL 3000330240,3000332287,UA 3000332288,3000334335,RU 3000334336,3000336383,PL 3000336384,3000338431,AM 3000338432,3000340479,PL 3000340480,3000342527,RU 3000342528,3000344575,CZ 3000344576,3000346623,PL 3000346624,3000348671,UA 3000348672,3000350719,RO 3000350720,3000352767,UA 3000352768,3000358911,RU 3000358912,3000360959,PL 3000360960,3000363007,RU 3000363008,3000365055,FI 3000365056,3000369151,RU 3000369152,3000377343,PL 3000377344,3000385535,RU 3000385536,3000393727,PS 3000393728,3000401919,NL 3000401920,3000410111,PL 3000410112,3000426495,UA 3000426496,3000434687,RU 3000434688,3000451071,IR 3000451072,3000467455,RU 3000467456,3000471551,GB 3000471552,3000475647,RU 3000475648,3000483839,UA 3000483840,3000487935,PL 3000487936,3000492031,PS 3000492032,3000506367,UA 3000506368,3000508415,PL 3000508416,3000510463,RU 3000510464,3000512511,PL 3000512512,3000514559,SE 3000514560,3000516607,SI 3000516608,3000520703,RU 3000520704,3000522751,CZ 3000522752,3000524799,PL 3000524800,3000526847,UA 3000526848,3000528895,PL 3000528896,3000530943,IE 3000530944,3000532991,UA 3000532992,3000535039,UZ 3000535040,3000537087,PL 3000537088,3000539135,CZ 3000539136,3000543231,RU 3000543232,3000545279,UA 3000545280,3000547327,RU 3000547328,3000549375,UA 3000549376,3000551423,SE 3000551424,3000553471,PL 3000553472,3000555519,KG 3000555520,3000557567,RU 3000557568,3000561663,UA 3000561664,3000563711,RO 3000563712,3000565759,CZ 3000565760,3000567807,RU 3000567808,3000569855,RS 3000569856,3000571903,BE 3000571904,3000573951,RU 3000573952,3000575999,PL 3000576000,3000586239,RU 3000586240,3000588287,NL 3000590336,3000594431,RU 3000594432,3000596479,PL 3000596480,3000598527,RU 3000598528,3000600575,FI 3000600576,3000602623,PL 3000602624,3000604671,CZ 3000604672,3000606719,RU 3000606720,3000608767,UA 3000608768,3000610815,KG 3000610816,3000612863,RU 3000612864,3000616959,PL 3000616960,3000621055,UA 3000621056,3000623103,PL 3000623104,3000625151,RU 3000627200,3000629247,CZ 3000629248,3000631295,PL 3000631296,3000647679,RU 3000647680,3000651775,UA 3000651776,3000664063,RU 3000664064,3000668159,RO 3000668160,3000672255,RU 3000672256,3000676351,HR 3000676352,3000680447,SA 3000682496,3000684543,UZ 3000684544,3000688639,RU 3000688640,3000692735,PL 3000696832,3000700927,RS 3000700928,3000705023,PL 3000705024,3000709119,RU 3000709120,3000713215,AM 3000713216,3000717311,IT 3000717312,3000721407,UA 3000721408,3000733695,PL 3000733696,3000745983,RU 3000745984,3000750079,UA 3000750080,3000754175,RU 3000754176,3000758271,IR 3000758272,3000762367,UA 3000762368,3001024511,RS 3001024512,3001548799,NL 3001548800,3001614335,NO 3001614336,3001679871,TR 3001679872,3001745407,RU 3001745408,3001810943,PL 3001810944,3001815039,IE 3001815040,3001819135,RU 3001819136,3001823231,IR 3001823232,3001827327,GE 3001827328,3001831423,SE 3001831424,3001835519,BA 3001835520,3001839615,RU 3001839616,3001843711,ES 3001843712,3001845759,RU 3001845760,3001846238,GB 3001846239,3001846239,RU 3001846240,3001846783,GB 3001846784,3001847807,RU 3001847808,3001851903,GB 3001851904,3001855999,IT 3001856000,3001859071,NL 3001859072,3001860095,MD 3001860096,3001861119,LV 3001861120,3001862143,LT 3001862144,3001863167,EE 3001863168,3001864191,LT 3001864192,3001868287,RU 3001868288,3001872383,FR 3001872384,3001876479,RU 3001876480,3001880575,IT 3001880576,3001884671,RU 3001884672,3001888767,NL 3001888768,3001892863,BH 3001892864,3001896959,AZ 3001896960,3001901055,CH 3001901056,3001905151,FR 3001905152,3001909247,GB 3001909248,3001917439,ES 3001917440,3001919743,GB 3001919744,3001919999,AU 3001920000,3001920255,GB 3001920256,3001920511,AU 3001920512,3001921535,GB 3001921536,3001929727,RU 3001929728,3001933823,RS 3001933824,3001937919,ES 3001937920,3001942015,RU 3001946112,3001950207,RU 3001950208,3001954303,CZ 3001954304,3001958399,IT 3001958400,3001962495,KZ 3001962496,3001966591,GB 3001966592,3001970687,NL 3001970688,3001974783,RU 3001974784,3001982975,GB 3001982976,3001987071,CH 3001987072,3001991167,JO 3001991168,3001995263,IR 3001995264,3001999359,HU 3001999360,3002003455,DE 3002003456,3002011647,PL 3002011648,3002015743,BA 3002015744,3002019839,IT 3002019840,3002023935,NL 3002023936,3002028031,DE 3002028032,3002036223,GB 3002036224,3002040319,BG 3002040320,3002044415,PL 3002044416,3002048511,IR 3002048512,3002052607,GB 3002052608,3002056703,IT 3002056704,3002060799,FI 3002060800,3002064895,ES 3002064896,3002068991,BG 3002068992,3002073087,ES 3002073088,3002597375,TR 3002597376,3002599423,RU 3002599424,3002601471,CZ 3002601472,3002603519,IS 3002603520,3002605567,SE 3002605568,3002607615,GB 3002607616,3002609663,IR 3002609664,3002611711,IT 3002611712,3002613759,CZ 3002613760,3002615807,RU 3002615808,3002617855,PL 3002617856,3002619903,RU 3002619904,3002621951,IT 3002621952,3002623999,NO 3002624000,3002627327,GB 3002627328,3002627583,SA 3002627584,3002628095,GB 3002628096,3002630143,NO 3002630144,3002632191,GB 3002632192,3002634239,EE 3002634240,3002636287,IT 3002636288,3002638335,NL 3002638336,3002640383,BE 3002640384,3002642431,NL 3002642432,3002644479,IT 3002644480,3002648575,FR 3002648576,3002650623,HU 3002650624,3002652671,FR 3002652672,3002654719,DE 3002654720,3002656767,NL 3002656768,3002658815,RU 3002658816,3002660863,DE 3002660864,3002662911,CZ 3002662912,3002664959,DE 3002664960,3002667007,ES 3002667008,3002669055,GE 3002669056,3002671103,DE 3002671104,3002673151,LV 3002673152,3002675199,GB 3002675200,3002677247,DK 3002677248,3002683391,RU 3002683392,3002685439,DE 3002685440,3002687487,PL 3002687488,3002688511,GB 3002688512,3002689535,NL 3002689536,3002691583,IL 3002691584,3002693631,MK 3002693632,3002695679,NO 3002695680,3002697727,RU 3002697728,3002699775,DE 3002699776,3002701823,SE 3002701824,3002703871,NL 3002703872,3002705919,FR 3002705920,3002707967,MK 3002707968,3002710015,KW 3002710016,3002712063,IT 3002712064,3002714111,LU 3002714112,3002716159,IT 3002716160,3002718207,CZ 3002718208,3002722303,IT 3002724352,3002726399,RU 3002726400,3002728447,NL 3002728448,3002730495,FR 3002730496,3002732543,DE 3002732544,3002734591,NL 3002734592,3002736639,CH 3002736640,3002738687,LT 3002738688,3002740735,PL 3002740736,3002742783,GB 3002742784,3002744831,LI 3002744832,3002746879,IT 3002746880,3002748927,GB 3002748928,3002750975,DE 3002750976,3002753023,TR 3002753024,3002755071,GB 3002755072,3002757119,FR 3002757120,3002759167,IE 3002759168,3002761215,DE 3002761216,3002763263,CH 3002763264,3002765311,RS 3002765312,3002767359,NL 3002767360,3002769407,RU 3002769408,3002773503,DE 3002773504,3002775551,GB 3002775552,3002777599,RO 3002777600,3002779647,NL 3002779648,3002781695,IT 3002781696,3002783743,FR 3002783744,3002785791,NO 3002785792,3002789887,DE 3002789888,3002791935,RU 3002791936,3002793983,AE 3002793984,3002796031,DK 3002796032,3002798079,DE 3002798080,3002800127,FR 3002800128,3002802175,NL 3002802176,3002804223,GB 3002804224,3002806271,TR 3002806272,3002808319,DE 3002808320,3002810367,FI 3002810368,3002812415,AT 3002812416,3002814463,IT 3002814464,3002816511,FR 3002816512,3002818559,DE 3002818560,3002820607,RU 3002820608,3002822655,UA 3002822656,3002824703,DE 3002824704,3002826751,NL 3002826752,3002828799,SE 3002828800,3002830847,RU 3002830848,3002834943,FI 3002834944,3002835063,BE 3002835064,3002835067,LU 3002835068,3002836319,BE 3002836320,3002836335,LU 3002836336,3002836991,BE 3002836992,3002841087,GB 3002841088,3002843135,CZ 3002843136,3002845183,NL 3002845184,3002847231,FR 3002847232,3002849279,IR 3002849280,3002851327,RU 3002851328,3002853375,DE 3002853376,3002855423,GB 3002855424,3002857471,SE 3002857472,3002859519,FR 3002859520,3002875903,PL 3002875904,3002892287,RU 3002892288,3002908671,IR 3002908672,3002925055,RU 3002925056,3002941439,IR 3002941440,3002957823,SY 3002957824,3002974207,SK 3002974208,3002990591,RS 3002990592,3003006975,DE 3003006976,3003023359,LU 3003023360,3003039743,RS 3003039744,3003056127,BG 3003056128,3003058175,DE 3003058176,3003060223,EE 3003060224,3003062271,DE 3003062272,3003064319,NL 3003064320,3003066367,RO 3003066368,3003068415,PL 3003068416,3003070463,NL 3003070464,3003074559,GB 3003074560,3003076607,IT 3003076608,3003078143,GB 3003078144,3003078151,US 3003078152,3003078155,IN 3003078156,3003078399,US 3003078400,3003080703,GB 3003080704,3003082751,FR 3003082752,3003084799,ES 3003086848,3003088895,RU 3003088896,3003090943,FR 3003090944,3003092991,DE 3003092992,3003095039,NO 3003095040,3003095295,AT 3003095296,3003095551,CH 3003095552,3003095807,CZ 3003095808,3003096063,IT 3003096064,3003097087,AT 3003097088,3003099135,FR 3003099136,3003101183,CZ 3003101184,3003103231,UA 3003103232,3003105279,IT 3003105280,3003107327,NL 3003107328,3003107583,RU 3003107584,3003109375,NL 3003109376,3003111423,FR 3003111424,3003113471,IT 3003113472,3003115519,ES 3003115520,3003117567,RU 3003117568,3003119615,IT 3003119616,3003121663,RU 3003121664,3003122175,AR 3003122176,3003122687,CL 3003122688,3003123711,AR 3003123712,3003123967,CL 3003123968,3003124479,CO 3003124480,3003124735,AR 3003124736,3003125247,SV 3003125248,3003125503,AR 3003125504,3003125759,CO 3003125760,3003126783,CL 3003126784,3003127807,CR 3003127808,3003128063,CO 3003128064,3003128319,AR 3003128320,3003128575,PY 3003128576,3003128831,CO 3003128832,3003129087,TT 3003129088,3003129343,CO 3003129344,3003129599,BO 3003129600,3003129855,HN 3003129856,3003130111,MX 3003130112,3003130367,CR 3003130368,3003130623,MX 3003130624,3003131647,CR 3003131648,3003133183,MX 3003133184,3003133695,CR 3003133696,3003134719,MX 3003134720,3003134975,CR 3003134976,3003135487,MX 3003135488,3003136255,CR 3003136256,3003137279,MX 3003137280,3003137791,CR 3003137792,3003138047,MX 3003138048,3003138559,HN 3003138560,3003139071,PA 3003139072,3003139583,HN 3003139584,3003140351,PA 3003140352,3003140607,HN 3003140608,3003141375,PA 3003141376,3003141631,HN 3003141632,3003141887,PA 3003141888,3003143679,HN 3003143680,3003144447,PA 3003144448,3003146239,HN 3003146240,3003146495,PA 3003146496,3003147007,GT 3003147008,3003147263,PA 3003147264,3003148031,GT 3003148032,3003148543,PA 3003148544,3003148799,GT 3003148800,3003149311,PA 3003149312,3003150335,GT 3003150336,3003151871,SV 3003151872,3003152383,PA 3003152384,3003152639,SV 3003152640,3003152895,PA 3003152896,3003154431,SV 3003154432,3003154687,CL 3003154688,3003154943,EC 3003154944,3003159039,AR 3003159040,3003159295,CO 3003159296,3003160575,AR 3003160576,3003160831,CL 3003160832,3003161087,PE 3003161088,3003161343,CO 3003161344,3003161599,CL 3003161600,3003162623,UY 3003162624,3003170815,CR 3003170816,3003171071,GT 3003171072,3003171327,AR 3003171328,3003171839,PA 3003171840,3003172863,TT 3003172864,3003173375,PA 3003173376,3003173631,CR 3003173632,3003173887,AR 3003173888,3003174143,EC 3003174144,3003174399,CO 3003174400,3003174911,BR 3003174912,3003179007,CR 3003179008,3003187199,AR 3003187200,3003252735,CO 3003252736,3003449343,CL 3003449344,3003514879,SV 3003514880,3003645951,PE 3003645952,3003777023,CL 3003777024,3003908095,BR 3003908096,3004170239,CO 3004170240,3004301311,BR 3004301312,3004432383,CO 3004432384,3004694527,VE 3004694528,3005218815,UY 3005218816,3005349887,CO 3005349888,3005480959,BR 3005480960,3005874175,AR 3005874176,3005875455,PA 3005875456,3005875711,CO 3005875712,3005879807,PA 3005879808,3005880063,CO 3005880064,3005881343,PA 3005881344,3005881599,CO 3005881600,3005883135,PA 3005883136,3005883391,CO 3005883392,3005886975,PA 3005886976,3005887487,CO 3005887488,3005887999,PA 3005888000,3005888255,CO 3005888256,3005890047,PA 3005890048,3005890303,CO 3005890304,3005890559,PA 3005890560,3005891583,CO 3005891584,3005891839,PA 3005891840,3005892095,CO 3005892096,3005893119,PA 3005893120,3005893631,CO 3005893632,3005893887,PA 3005893888,3005894911,CO 3005894912,3005895167,PA 3005895168,3005895935,CO 3005895936,3005896703,PA 3005896704,3005898495,CO 3005898496,3005899007,PA 3005899008,3005900543,CO 3005900544,3005901055,PA 3005901056,3005901311,CO 3005901312,3005901567,PA 3005901568,3005901823,CO 3005901824,3005902591,PA 3005902592,3005903871,CO 3005903872,3005904639,PA 3005904640,3005905407,CO 3005905408,3005905663,PA 3005905664,3005906943,CO 3005906944,3005911039,PA 3005911040,3005911295,CO 3005911296,3005911551,PA 3005911552,3005911807,CO 3005911808,3005912063,PA 3005912064,3005912319,CO 3005912320,3005912831,PA 3005912832,3005913087,CO 3005913088,3005913343,PA 3005913344,3005913599,CO 3005913600,3005913855,PA 3005913856,3005915135,CO 3005915136,3005918207,AR 3005918208,3005919231,CO 3005919232,3005923327,AR 3005923328,3005939711,BZ 3005939712,3005956095,CR 3005956096,3005960191,AR 3005960192,3005965311,PE 3005965312,3005966335,AR 3005966336,3005968383,CO 3005968384,3005972479,AR 3005972480,3005988863,CH 3005988864,3006005247,DO 3006005248,3006267391,VE 3006267392,3006267647,PA 3006267648,3006267903,NI 3006267904,3006268671,PA 3006268672,3006268927,NI 3006268928,3006271231,PA 3006271232,3006271487,NI 3006271488,3006273535,PA 3006273536,3006273791,NI 3006273792,3006275583,PA 3006275584,3006275839,NI 3006275840,3006276095,PA 3006276096,3006276351,NI 3006276352,3006277887,PA 3006277888,3006278143,NI 3006278144,3006279167,PA 3006279168,3006279423,NI 3006279424,3006283519,PA 3006283520,3006283775,NI 3006283776,3006286335,CR 3006286336,3006286847,PA 3006286848,3006287615,CR 3006287616,3006287871,PA 3006287872,3006288127,CR 3006288128,3006288383,PA 3006288384,3006289151,CR 3006289152,3006289407,PA 3006289408,3006290687,CR 3006290688,3006291199,PA 3006291200,3006291967,CR 3006291968,3006296575,PA 3006296576,3006296831,CR 3006296832,3006308351,PA 3006308352,3006308863,CR 3006308864,3006309631,PA 3006309632,3006310655,CR 3006310656,3006310911,PA 3006310912,3006312447,CR 3006312448,3006312703,PA 3006312704,3006313471,CR 3006313472,3006313727,PA 3006313728,3006314751,CR 3006314752,3006315263,PA 3006315264,3006315775,CR 3006315776,3006316031,PA 3006316032,3006316287,CR 3006316288,3006320895,PA 3006320896,3006321407,CR 3006321408,3006321663,PA 3006321664,3006322175,CR 3006322176,3006322431,PA 3006322432,3006323199,CR 3006323200,3006323455,PA 3006323456,3006323711,CR 3006323712,3006323967,PA 3006323968,3006324735,CR 3006324736,3006328831,PA 3006328832,3006330623,NI 3006330624,3006330879,PA 3006330880,3006331903,CR 3006331904,3006332927,AR 3006332928,3006349311,EC 3006349312,3006351359,PE 3006351360,3006353407,AR 3006353408,3006357503,DO 3006357504,3006361599,AR 3006361600,3006363647,HN 3006363648,3006365695,AR 3006365696,3006431231,CO 3006431232,3006463999,CR 3006464000,3006480383,SV 3006480384,3006484479,DO 3006484480,3006488575,AR 3006488576,3006496767,CO 3006496768,3006500351,CR 3006500352,3006500607,MX 3006500608,3006506239,CR 3006506240,3006506495,MX 3006506496,3006506751,CR 3006506752,3006507007,MX 3006507008,3006507519,CR 3006507520,3006507775,MX 3006507776,3006512895,CR 3006512896,3006513151,MX 3006513152,3006513663,PA 3006513664,3006514431,CR 3006514432,3006514687,PA 3006514688,3006516479,CR 3006516480,3006516735,PA 3006516736,3006517503,CR 3006517504,3006517759,NI 3006517760,3006518527,CR 3006518528,3006519295,NI 3006519296,3006521343,CR 3006521344,3006528511,AR 3006528512,3006529535,BZ 3006529536,3006660607,DO 3006660608,3006791679,BR 3006791680,3006922751,CL 3006922752,3007053823,BO 3007053824,3007062015,AR 3007062016,3007066111,CO 3007066112,3007070207,EC 3007070208,3007078399,CL 3007078400,3007082495,AR 3007082496,3007086591,BO 3007086592,3007090687,PA 3007090688,3007091199,NL 3007091200,3007092223,RU 3007092224,3007092479,VE 3007092480,3007092735,IR 3007092736,3007094783,AR 3007094784,3007096831,CR 3007096832,3007098879,AR 3007098880,3007099463,HN 3007099464,3007099471,IN 3007099472,3007100647,HN 3007100648,3007100655,MX 3007100656,3007100887,HN 3007100888,3007100895,PH 3007100896,3007100927,HN 3007100928,3007102975,AR 3007102976,3007103999,US 3007104000,3007106047,AR 3007106048,3007107071,PE 3007107072,3007108095,AR 3007108096,3007109119,TT 3007109120,3007111167,AR 3007111168,3007112191,PE 3007112192,3007115263,AR 3007115264,3007116287,CO 3007116288,3007117311,EC 3007117312,3007122431,AR 3007122432,3007123455,CL 3007123456,3007143935,AR 3007143936,3007148031,CL 3007148032,3007152127,CO 3007152128,3007152143,CL 3007152144,3007152159,DE 3007152160,3007152383,CL 3007152384,3007152639,US 3007152640,3007152655,CL 3007152656,3007152671,DE 3007152672,3007152895,CL 3007152896,3007153151,US 3007153152,3007153167,CL 3007153168,3007153183,DE 3007153184,3007153279,CL 3007153280,3007153663,US 3007153664,3007153679,CL 3007153680,3007153695,DE 3007153696,3007153919,CL 3007153920,3007154175,US 3007154176,3007154191,CL 3007154192,3007154207,DE 3007154208,3007154303,CL 3007154304,3007154687,US 3007154688,3007154703,CL 3007154704,3007154719,DE 3007154720,3007154943,CL 3007154944,3007155199,US 3007155200,3007155215,CL 3007155216,3007155231,DE 3007155232,3007155327,CL 3007155328,3007155711,US 3007155712,3007155727,CL 3007155728,3007155743,DE 3007155744,3007155967,CL 3007155968,3007156223,US 3007156224,3007156351,DE 3007156352,3007156479,US 3007156480,3007156495,ES 3007156496,3007156543,DE 3007156544,3007156607,GB 3007156608,3007156991,DE 3007156992,3007157007,HR 3007157008,3007157055,DE 3007157056,3007157119,GB 3007157120,3007157375,DE 3007157376,3007157503,US 3007157504,3007157519,IE 3007157520,3007157567,DE 3007157568,3007157631,GB 3007157632,3007157759,US 3007157760,3007158015,DE 3007158016,3007158031,BE 3007158032,3007158079,DE 3007158080,3007158143,GB 3007158144,3007158399,DE 3007158400,3007158527,US 3007158528,3007158543,GB 3007158544,3007158591,DE 3007158592,3007158655,GB 3007158656,3007159039,DE 3007159040,3007159055,GB 3007159056,3007159103,DE 3007159104,3007159167,GB 3007159168,3007159295,US 3007159296,3007159423,DE 3007159424,3007159551,US 3007159552,3007159567,RU 3007159568,3007159615,DE 3007159616,3007159679,GB 3007159680,3007160063,DE 3007160064,3007160079,HR 3007160080,3007160127,DE 3007160128,3007160191,GB 3007160192,3007160447,DE 3007160448,3007160575,US 3007160576,3007160591,IE 3007160592,3007160607,US 3007160608,3007160639,DE 3007160640,3007160655,GB 3007160656,3007160703,DE 3007160704,3007160831,US 3007160832,3007161087,DE 3007161088,3007161103,GB 3007161104,3007161151,DE 3007161152,3007161167,GB 3007161168,3007161471,DE 3007161472,3007161599,US 3007161600,3007161615,GB 3007161616,3007161663,DE 3007161664,3007161679,GB 3007161680,3007162111,DE 3007162112,3007162127,ES 3007162128,3007162175,DE 3007162176,3007162191,GB 3007162192,3007162239,DE 3007162240,3007162367,US 3007162368,3007162495,DE 3007162496,3007162623,US 3007162624,3007162639,NL 3007162640,3007162687,DE 3007162688,3007162703,GB 3007162704,3007163135,DE 3007163136,3007163151,GB 3007163152,3007163519,DE 3007163520,3007163647,US 3007163648,3007163663,ES 3007163664,3007163775,DE 3007163776,3007163903,US 3007163904,3007164159,DE 3007164160,3007164175,SK 3007164176,3007164543,DE 3007164544,3007164671,US 3007164672,3007164687,SE 3007164688,3007165183,DE 3007165184,3007165199,GB 3007165200,3007165311,DE 3007165312,3007165439,US 3007165440,3007165567,DE 3007165568,3007165695,US 3007165696,3007165711,DK 3007165712,3007166207,DE 3007166208,3007166223,TR 3007166224,3007166591,DE 3007166592,3007166719,US 3007166720,3007166735,GB 3007166736,3007166847,DE 3007166848,3007166975,US 3007166976,3007167231,DE 3007167232,3007167247,ES 3007167248,3007167615,DE 3007167616,3007167743,US 3007167744,3007167759,AU 3007167760,3007168127,DE 3007168128,3007168255,US 3007168256,3007168271,GR 3007168272,3007168383,DE 3007168384,3007168511,US 3007168512,3007168767,QA 3007168768,3007169023,CL 3007169024,3007169151,US 3007169152,3007169279,CL 3007169280,3007169791,US 3007169792,3007170047,CL 3007170048,3007170303,MX 3007170304,3007170559,CL 3007170560,3007171071,DE 3007171072,3007171327,US 3007171328,3007171583,ES 3007171584,3007171855,CL 3007171856,3007171871,US 3007171872,3007171873,BR 3007171874,3007171875,CL 3007171876,3007171903,BR 3007171904,3007172351,CL 3007172352,3007172383,FR 3007172384,3007172415,BE 3007172416,3007172607,CL 3007172608,3007172863,US 3007172864,3007172991,BR 3007172992,3007173023,IS 3007173024,3007173055,NZ 3007173056,3007173375,BR 3007173376,3007173407,NO 3007173408,3007173439,SE 3007173440,3007173631,BR 3007173632,3007173663,NO 3007173664,3007173695,NZ 3007173696,3007174015,BR 3007174016,3007174047,NL 3007174048,3007174079,FR 3007174080,3007174271,BR 3007174272,3007174303,FI 3007174304,3007174335,NL 3007174336,3007174399,BR 3007174400,3007174431,IS 3007174432,3007174463,IT 3007174464,3007174655,BR 3007174656,3007174911,US 3007174912,3007175167,BR 3007175168,3007175679,US 3007175680,3007175935,GB 3007175936,3007175967,NZ 3007175968,3007175999,BE 3007176000,3007176319,BR 3007176320,3007176351,SE 3007176352,3007176383,FR 3007176384,3007176703,BR 3007176704,3007177727,IN 3007177728,3007177983,BR 3007177984,3007178751,US 3007178752,3007179007,BR 3007179008,3007179775,US 3007179776,3007180031,BR 3007180032,3007180287,US 3007180288,3007180543,BR 3007180544,3007180799,US 3007180800,3007181183,BR 3007181184,3007181215,IT 3007181216,3007181247,IS 3007181248,3007181311,BR 3007181312,3007181567,US 3007181568,3007181599,NL 3007181600,3007181631,AU 3007181632,3007181823,BR 3007181824,3007181855,BE 3007181856,3007181887,NO 3007181888,3007182591,BR 3007182592,3007182623,SE 3007182624,3007182655,NL 3007182656,3007183231,BR 3007183232,3007183263,NZ 3007183264,3007183295,IT 3007183296,3007183359,BR 3007183360,3007183615,AU 3007183616,3007183871,IE 3007183872,3007184127,JO 3007184128,3007184383,KW 3007184384,3007184895,BR 3007184896,3007250431,AR 3007250432,3007268095,CR 3007268096,3007268607,PA 3007268608,3007269631,CR 3007269632,3007270143,PA 3007270144,3007270911,CR 3007270912,3007271167,PA 3007271168,3007272191,CR 3007272192,3007272447,PA 3007272448,3007272959,CR 3007272960,3007273215,PA 3007273216,3007273727,CR 3007273728,3007274239,PA 3007274240,3007274751,CR 3007274752,3007275007,PA 3007275008,3007279359,CR 3007279360,3007279871,PA 3007279872,3007280639,CR 3007280640,3007280895,PA 3007280896,3007281151,CR 3007281152,3007281919,PA 3007281920,3007283199,CR 3007283200,3007284479,PA 3007284480,3007284991,CR 3007284992,3007285247,PA 3007285248,3007285759,CR 3007285760,3007286271,PA 3007286272,3007286783,CR 3007286784,3007287295,PA 3007287296,3007287551,CR 3007287552,3007288063,MX 3007288064,3007289087,CR 3007289088,3007289343,MX 3007289344,3007290367,CR 3007290368,3007290623,PA 3007290624,3007291135,CR 3007291136,3007291391,PA 3007291392,3007292415,CR 3007292416,3007292671,MX 3007292672,3007293439,CR 3007293440,3007293951,MX 3007293952,3007294207,CR 3007294208,3007294463,MX 3007294464,3007294719,CR 3007294720,3007294975,MX 3007294976,3007296255,CR 3007296256,3007296511,MX 3007296512,3007296767,CR 3007296768,3007297023,MX 3007297024,3007299583,CR 3007299584,3007301631,PA 3007301632,3007305727,AR 3007305728,3007307775,BZ 3007307776,3007310847,CL 3007310848,3007312895,AR 3007312896,3007313919,CL 3007313920,3007314943,AR 3007314944,3007315967,HN 3007315968,3015648255,BR 3015651328,3019898879,BR 3019898880,3024093183,JP 3024093184,3024617471,KR 3024617472,3024879615,MY 3024879616,3025141759,CN 3025141760,3025403903,KR 3025403904,3025600511,CN 3025600512,3025602047,IN 3025602048,3025602303,HK 3025602304,3025603071,IN 3025603072,3025603091,HK 3025603092,3025603095,CN 3025603096,3025603103,IN 3025603104,3025603215,HK 3025603216,3025603327,IN 3025603328,3025603335,GU 3025603336,3025603583,IN 3025603584,3025603839,SG 3025603840,3025604095,HK 3025604096,3025604351,IN 3025604352,3025606655,SG 3025606656,3025606815,IN 3025606816,3025606831,SG 3025606832,3025607167,IN 3025607168,3025607423,SG 3025607424,3025607679,HK 3025607680,3025608191,IN 3025608192,3025608203,JP 3025608204,3025608447,IN 3025608448,3025608703,HK 3025608704,3025610751,IN 3025610752,3025612799,SG 3025612800,3025612815,IN 3025612816,3025612831,SG 3025612832,3025612895,IN 3025612896,3025613067,SG 3025613068,3025616895,IN 3025616896,3025617439,SG 3025617440,3025617447,IN 3025617448,3025617455,SG 3025617456,3025618943,IN 3025618944,3025619519,SG 3025619520,3025619583,IN 3025619584,3025619711,SG 3025619712,3025620991,IN 3025620992,3025621247,PH 3025621248,3025621503,IN 3025621504,3025621759,PH 3025621760,3025623055,IN 3025623056,3025623103,SG 3025623104,3025623295,IN 3025623296,3025623551,JP 3025623552,3025623807,SG 3025623808,3025625343,IN 3025625344,3025625375,SG 3025625376,3025625391,IN 3025625392,3025625395,CA 3025625396,3025625399,IN 3025625400,3025625407,TH 3025625408,3025625471,SG 3025625472,3025625503,MY 3025625504,3025625535,SG 3025625536,3025625599,CA 3025625600,3025625855,SG 3025625856,3025625887,IN 3025625888,3025625895,SG 3025625896,3025626111,IN 3025626112,3025626367,SG 3025626368,3025629439,IN 3025629440,3025629951,HK 3025629952,3025630031,AU 3025630032,3025630207,IN 3025630208,3025630719,AU 3025630720,3025630975,JP 3025630976,3025631239,IN 3025631240,3025631247,AU 3025631248,3025631747,IN 3025631748,3025631767,HK 3025631768,3025631999,IN 3025632000,3025632255,HK 3025632256,3025632415,SG 3025632416,3025632511,IN 3025632512,3025632767,SG 3025632768,3025633535,IN 3025633536,3025633791,HK 3025633792,3025633919,AU 3025633920,3025634047,MY 3025634048,3025637151,IN 3025637152,3025637183,MY 3025637184,3025637375,IN 3025637376,3025637631,HK 3025637632,3025637887,MY 3025637888,3025638015,IN 3025638016,3025638023,HK 3025638024,3025638031,IN 3025638032,3025638047,HK 3025638048,3025638279,IN 3025638280,3025638287,SG 3025638288,3025638399,IN 3025638400,3025638655,SG 3025638656,3025638783,IN 3025638784,3025638791,HK 3025638792,3025639167,IN 3025639168,3025639175,SG 3025639176,3025639295,IN 3025639296,3025639327,AU 3025639328,3025639423,IN 3025639424,3025639535,SG 3025639536,3025639551,HK 3025639552,3025639679,SG 3025639680,3025639807,HK 3025639808,3025639839,IN 3025639840,3025639879,HK 3025639880,3025640191,IN 3025640192,3025640447,JP 3025640448,3025640799,MY 3025640800,3025641727,IN 3025641728,3025641743,HK 3025641744,3025641759,IN 3025641760,3025641775,HK 3025641776,3025641983,IN 3025641984,3025642495,HK 3025642496,3025642751,SG 3025642752,3025647103,IN 3025647104,3025647359,SG 3025647360,3025647615,AU 3025647616,3025647775,IN 3025647776,3025647791,SG 3025647792,3025647839,IN 3025647840,3025647871,SG 3025647872,3025647903,HK 3025647904,3025647935,IN 3025647936,3025647967,SG 3025647968,3025648079,IN 3025648080,3025648087,SG 3025648088,3025648091,US 3025648092,3025648095,SG 3025648096,3025649151,IN 3025649152,3025649663,HK 3025649664,3025649919,AE 3025649920,3025666047,IN 3025666048,3025928191,CN 3025928192,3025932287,TW 3025932288,3025944575,JP 3025944576,3025960959,KR 3025960960,3025969151,PK 3025969152,3025973247,IN 3025973248,3025974271,AU 3025974272,3025975295,HK 3025975296,3025977343,SG 3025977344,3025979391,AU 3025979392,3025981439,IN 3025981440,3025982463,AU 3025982464,3025983487,ID 3025983488,3025985535,AU 3025985536,3025989631,BD 3025989632,3025993727,KR 3025993728,3026059263,VN 3026059264,3026067455,PH 3026067456,3026068479,IN 3026068480,3026069503,PH 3026069504,3026071551,JP 3026071552,3026073599,AU 3026073600,3026075647,CN 3026075648,3026083839,AF 3026083840,3026087935,CN 3026087936,3026089983,AU 3026089984,3026092031,CN 3026092032,3026108415,MO 3026108416,3026114559,JP 3026114560,3026115583,SG 3026115584,3026116607,AU 3026116608,3026118655,HK 3026118656,3026120703,AU 3026120704,3026124799,JP 3026124800,3026157567,AU 3026157568,3028287487,CN 3028287488,3028353023,TH 3028353024,3028385791,SG 3028385792,3028484095,CN 3028484096,3028500479,KR 3028500480,3028516863,JP 3028516864,3028518911,AU 3028518912,3028520959,JP 3028520960,3028521983,ID 3028521984,3028523007,LA 3028523008,3028525055,JP 3028525056,3028533247,HK 3028533248,3028539135,JP 3028539136,3028539391,US 3028539392,3028541951,JP 3028541952,3028542207,US 3028542208,3028544511,JP 3028544512,3028544767,US 3028544768,3028545023,JP 3028545024,3028545791,US 3028545792,3028546047,JP 3028546048,3028546303,US 3028546304,3028547839,JP 3028547840,3028548095,US 3028548096,3028548607,JP 3028548608,3028549119,US 3028549120,3028549631,JP 3028549632,3028811775,KR 3028811776,3029336063,CN 3029336064,3029598207,JP 3029598208,3029600255,VN 3029600256,3029601279,AU 3029601280,3029602303,IN 3029602304,3029604351,CN 3029604352,3029605375,AU 3029605376,3029606399,JP 3029606400,3029614591,IN 3029614592,3029630975,AU 3029630976,3029635071,VN 3029635072,3029637119,JP 3029637120,3029639167,CN 3029639168,3029643263,JP 3029643264,3029644287,AU 3029644288,3029645311,KR 3029645312,3029651455,JP 3029651456,3029653503,BD 3029653504,3029663743,CN 3029663744,3029671935,BD 3029671936,3029680127,IN 3029680128,3029696511,MN 3029696512,3029704703,CN 3029704704,3029712895,JP 3029712896,3029714943,AU 3029714944,3029715199,JP 3029715200,3029715455,AU 3029715456,3029716991,JP 3029716992,3029721087,PK 3029725184,3029727231,IN 3029727232,3029728255,AU 3029728256,3029729279,HK 3029729280,3029762047,AU 3029762048,3029770239,HK 3029770240,3029778431,CN 3029778432,3029788671,KR 3029788672,3029790719,ID 3029790720,3029791743,IN 3029791744,3029792767,ID 3029792768,3029793791,IN 3029793792,3029794815,PG 3029794816,3029860351,IN 3029860352,3031433215,CN 3031433216,3031564287,TW 3031564288,3031572479,IN 3031572480,3031580671,HK 3031580672,3031581695,AU 3031581696,3031582719,JP 3031582720,3031584767,SG 3031584768,3031587839,JP 3031587840,3031592959,ID 3031592960,3031595007,CN 3031595008,3031596031,AU 3031596032,3031597055,KH 3031597056,3031613439,PK 3031613440,3031629823,CN 3031629824,3031695359,IN 3031695360,3031760895,TH 3031760896,3031826431,AU 3031826432,3031891967,KR 3031891968,3031957503,TH 3031957504,3032252415,CN 3032252416,3032271871,HK 3032271872,3032272895,AU 3032272896,3032276991,JP 3032276992,3032285183,IN 3032285184,3032289279,JP 3032289280,3032293375,AU 3032293376,3032301567,JP 3032301568,3032317951,KR 3032317952,3032319999,JP 3032320000,3032323071,AU 3032323072,3032324095,CN 3032324096,3032326143,AU 3032326144,3032330239,TL 3032330240,3032334335,KR 3032334336,3032342527,NZ 3032342528,3032350719,JP 3032350720,3032743935,PH 3032743936,3033038847,JP 3033038848,3033063423,AU 3033063424,3033065471,JP 3033065472,3033066495,MY 3033066496,3033067519,BD 3033067520,3033068543,IN 3033068544,3033069567,AU 3033069568,3033070591,JP 3033070592,3033268223,CN 3033268224,3033530367,TW 3033530368,3033661439,CN 3033661440,3033694207,KR 3033694208,3033710591,BD 3033710592,3033712639,KR 3033712640,3033714687,SG 3033714688,3033715711,NZ 3033715712,3033716735,CN 3033716736,3033717759,TH 3033717760,3033718783,BD 3033718784,3033726975,CN 3033726976,3033743359,KR 3033743360,3033745407,IN 3033745408,3033747455,JP 3033747456,3033748479,IN 3033748480,3033749503,JP 3033749504,3033751551,ID 3033751552,3033759743,IN 3033759744,3033792511,BD 3033792512,3033923583,CN 3033923584,3033939967,JP 3033939968,3033948159,AU 3033948160,3033956351,NC 3033956352,3033964543,IN 3033964544,3033966591,HK 3033966592,3033968639,AU 3033968640,3033972735,TW 3033972736,3033980927,TH 3033980928,3033982975,JP 3033982976,3033983999,ID 3033984000,3033985023,VN 3033985024,3033989119,ID 3033989120,3034054655,IN 3034054656,3034120191,AU 3034120192,3034251263,TW 3034251264,3034316799,HK 3034316800,3034447871,JP 3034447872,3034456063,AU 3034456064,3034464255,JP 3034464256,3034466303,NZ 3034466304,3034472447,JP 3034472448,3034480639,IN 3034480640,3034482687,SG 3034482688,3034484735,AF 3034484736,3034488831,TH 3034488832,3034492927,AU 3034492928,3034497023,JP 3034497024,3034499071,AU 3034499072,3034500095,HK 3034500096,3034501119,TW 3034501120,3034502143,VU 3034502144,3034503167,IN 3034503168,3034504191,ID 3034504192,3034505215,KR 3034505216,3034578943,CN 3034578944,3035103231,KR 3035103232,3035168767,PH 3035168768,3035193343,CN 3035193344,3035197439,JP 3035197440,3035198463,SG 3035198464,3035199487,HK 3035199488,3035200511,IN 3035200512,3035202559,AU 3035202560,3035205631,JP 3035205632,3035206655,CN 3035206656,3035207679,IN 3035207680,3035209727,ID 3035209728,3035217919,HK 3035217920,3035234303,KR 3035234304,3035299839,BD 3035299840,3035316223,JP 3035316224,3035324415,CN 3035324416,3035326463,JP 3035326464,3035328511,AU 3035332608,3035333631,AU 3035333632,3035334655,HK 3035334656,3035334911,NL 3035334912,3035337727,JP 3035337728,3035338751,ID 3035338752,3035339775,SG 3035339776,3035340799,AU 3035340800,3035348991,MN 3035348992,3035357183,AU 3035357184,3035365375,JP 3035365376,3035627519,KR 3035627520,3035660287,ID 3035660288,3035673343,SG 3035673344,3035673599,US 3035673600,3035693055,SG 3035693056,3036610559,ID 3036610560,3036676095,SG 3036676096,3037790207,AR 3037790208,3037986815,VE 3037986816,3038773247,AR 3038773248,3038904319,CO 3038904320,3039035391,VE 3039035392,3039166463,DO 3039166464,3039231999,PA 3039232000,3039297535,EC 3039297536,3039363071,PY 3039363072,3039379455,US 3039379456,3039395839,GY 3039395840,3039412223,US 3039412224,3039412735,CL 3039412736,3039412991,BR 3039412992,3039413247,US 3039413248,3039414015,BR 3039414016,3039414527,US 3039414528,3039414783,BR 3039414784,3039415039,US 3039415040,3039415295,CL 3039415296,3039415551,US 3039415552,3039415807,BR 3039415808,3039416575,US 3039416576,3039416591,CL 3039416592,3039416607,SG 3039416608,3039416713,CL 3039416714,3039416715,US 3039416716,3039416719,SG 3039416720,3039416735,CL 3039416736,3039416739,US 3039416740,3039416741,SG 3039416742,3039416831,CL 3039416832,3039417599,BR 3039417600,3039417855,US 3039417856,3039418111,BR 3039418112,3039418623,US 3039418624,3039418879,BR 3039418880,3039419135,US 3039419136,3039419583,BR 3039419584,3039419647,SG 3039419648,3039419839,BR 3039419840,3039419903,SG 3039419904,3039420415,BR 3039420416,3039428607,AR 3039428608,3039559679,CL 3039559680,3039821823,AR 3039821824,3040870399,CO 3040870400,3041132543,PE 3041132544,3041394687,CO 3041394688,3041656831,CL 3041656832,3041787903,BR 3041787904,3041886463,AR 3041886464,3041886719,US 3041886720,3044016127,AR 3044016128,3044147199,EC 3044147200,3044155391,GT 3044155392,3044161535,AR 3044161536,3044162559,HN 3044162560,3044163583,AR 3044163584,3044179967,BO 3044179968,3044188159,AR 3044188160,3044196351,BO 3044196352,3044206591,AR 3044206592,3044208639,CL 3044208640,3044212735,BZ 3044212736,3044245503,HN 3044245504,3044278271,BO 3044278272,3044417535,AR 3044417536,3044418047,CY 3044418048,3044425727,PA 3044425728,3044446207,AR 3044446208,3044450303,CO 3044450304,3044454399,CL 3044454400,3044482559,AR 3044482560,3044482687,CO 3044482688,3044503551,AR 3044503552,3044503807,US 3044503808,3044504319,AR 3044504320,3044507647,US 3044507648,3044540415,AR 3044540416,3045064703,PY 3045064704,3047161855,CO 3047161856,3047423999,CL 3047424000,3047948287,AR 3047948288,3048079359,CL 3048079360,3048095743,CO 3048095744,3048112127,GT 3048112128,3048120319,AR 3048120320,3048121343,PY 3048121344,3048122367,PA 3048122368,3048123391,CR 3048123392,3048126463,AR 3048126464,3048128511,ES 3048128512,3048132607,AR 3048132608,3048135935,CR 3048135936,3048136447,PA 3048136448,3048144895,CR 3048144896,3048210431,EC 3048210432,3048275967,PE 3048275968,3048292351,AR 3048292352,3048292607,BZ 3048292608,3048292799,HN 3048292800,3048292807,ES 3048292808,3048293375,HN 3048293376,3048293599,BZ 3048293600,3048293615,ES 3048293616,3048295343,BZ 3048295344,3048295351,CA 3048295352,3048297407,BZ 3048297408,3048297423,CA 3048297424,3048298799,BZ 3048298800,3048298807,US 3048298808,3048299487,BZ 3048299488,3048299503,BR 3048299504,3048301935,BZ 3048301936,3048301951,CA 3048301952,3048302295,BZ 3048302296,3048302303,CA 3048302304,3048303303,BZ 3048303304,3048303311,NL 3048303312,3048304031,BZ 3048304032,3048304047,NL 3048304048,3048304919,BZ 3048304920,3048304927,CR 3048304928,3048305063,BZ 3048305064,3048305071,CR 3048305072,3048305471,BZ 3048305472,3048305487,US 3048305488,3048305983,BZ 3048305984,3048305991,US 3048305992,3048307607,BZ 3048307608,3048307615,CA 3048307616,3048307967,BZ 3048307968,3048307983,CA 3048307984,3048308103,BZ 3048308104,3048308111,CA 3048308112,3048308295,BZ 3048308296,3048308303,CR 3048308304,3048308735,BZ 3048308736,3048325119,BO 3048325120,3048331263,AR 3048331264,3048332287,GY 3048332288,3048333311,CL 3048333312,3048341503,PE 3048341504,3048472575,PA 3048472576,3048996863,VE 3048996864,3049029631,TT 3049029632,3049046015,BO 3049046016,3049062399,EC 3049062400,3049078271,CR 3049078272,3049078527,MX 3049078528,3049095167,CR 3049095168,3049103359,GT 3049103360,3049107455,AR 3049107456,3049111551,SV 3049111552,3049119743,AR 3049119744,3049127935,HN 3049127936,3049193471,CL 3049193472,3049255935,PA 3049255936,3049256959,US 3049256960,3049259007,PA 3049259008,3049283583,AR 3049283584,3049291775,BZ 3049291776,3049324543,CO 3049324544,3049362175,CR 3049362176,3049362431,NI 3049362432,3049521151,CR 3049521152,3049586687,EC 3049586688,3049635839,PA 3049635840,3049652223,AR 3049652224,3049750527,EC 3049750528,3049754623,PE 3049754624,3049762815,AR 3049762816,3049766911,HN 3049766912,3049775103,ES 3049775104,3049783295,PA 3049783296,3050045439,CL 3050045440,3050307583,CO 3050307584,3050373119,VE 3050373120,3050405887,AR 3050405888,3050438655,GT 3050438656,3050504191,HN 3050504192,3050569727,EC 3050569728,3050635263,CL 3050635264,3050700799,BR 3050700800,3050700815,JP 3050700816,3050701055,BR 3050701056,3050701311,US 3050701312,3050701327,IE 3050701328,3050701343,US 3050701344,3050701567,BR 3050701568,3050701823,US 3050701824,3050701839,SG 3050701840,3050702079,BR 3050702080,3050702335,US 3050702336,3050702351,DK 3050702352,3050702591,BR 3050702592,3050702847,US 3050702848,3050702863,FR 3050702864,3050703103,BR 3050703104,3050703359,US 3050703360,3050703375,AT 3050703376,3050703615,BR 3050703616,3050703871,US 3050703872,3050703887,PE 3050703888,3050704127,BR 3050704128,3050704383,US 3050704384,3050704399,KR 3050704400,3050704639,BR 3050704640,3050704895,US 3050704896,3050704911,IT 3050704912,3050705151,BR 3050705152,3050705407,US 3050705408,3050705423,JP 3050705424,3050705663,BR 3050705664,3050705919,US 3050705920,3050705935,AU 3050705936,3050706175,BR 3050706176,3050706431,US 3050706432,3050706447,NL 3050706448,3050706687,BR 3050706688,3050706943,US 3050706944,3050706959,HK 3050706960,3050707199,BR 3050707200,3050707455,US 3050707456,3050707471,IT 3050707472,3050707711,BR 3050707712,3050707967,US 3050707968,3050707983,CH 3050707984,3050708223,BR 3050708224,3050708479,US 3050708480,3050708495,FR 3050708496,3050708735,BR 3050708736,3050708991,US 3050708992,3050709007,AT 3050709008,3050709119,BR 3050709120,3050709247,US 3050709248,3050709375,DE 3050709376,3050709503,BR 3050709504,3050709519,TH 3050709520,3050709759,BR 3050709760,3050710015,NL 3050710016,3050710031,ES 3050710032,3050710271,BR 3050710272,3050710527,US 3050710528,3050710543,FR 3050710544,3050710655,BR 3050710656,3050711039,US 3050711040,3050711055,AU 3050711056,3050711295,BR 3050711296,3050711551,US 3050711552,3050711567,EE 3050711568,3050711807,BR 3050711808,3050712063,US 3050712064,3050712079,FR 3050712080,3050712127,BR 3050712128,3050712575,US 3050712576,3050712591,PL 3050712592,3050712831,BR 3050712832,3050713087,US 3050713088,3050713103,LV 3050713104,3050713343,BR 3050713344,3050713599,US 3050713600,3050713855,NL 3050713856,3050714111,BR 3050714112,3050714367,US 3050714368,3050714623,GB 3050714624,3050714879,BR 3050714880,3050715135,ES 3050715136,3050753023,US 3050753024,3050753279,BR 3050753280,3050753535,PE 3050753536,3050755071,US 3050755072,3050755327,CO 3050755328,3050755583,CL 3050755584,3050766335,US 3050766336,3050766351,NO 3050766352,3050766591,BR 3050766592,3050766847,US 3050766848,3050766863,KR 3050766864,3050767103,BR 3050767104,3050767359,AR 3050767360,3050767375,AT 3050767376,3050767615,BR 3050767616,3050767871,US 3050767872,3050767887,MY 3050767888,3050768127,BR 3050768128,3050768383,US 3050768384,3050768399,AT 3050768400,3050768511,BR 3050768512,3050768895,US 3050768896,3050768911,CZ 3050768912,3050769151,BR 3050769152,3050769407,US 3050769408,3050769423,AU 3050769424,3050769663,BR 3050769664,3050769919,US 3050769920,3050769935,MY 3050769936,3050770175,BR 3050770176,3050770431,US 3050770432,3050770447,LV 3050770448,3050770687,BR 3050770688,3050770943,US 3050770944,3050770959,HK 3050770960,3050771199,BR 3050771200,3050771455,US 3050771456,3050771471,SG 3050771472,3050771711,BR 3050771712,3050771967,US 3050771968,3050771983,EE 3050771984,3050772223,BR 3050772224,3050772479,US 3050772480,3050772495,MY 3050772496,3050772735,BR 3050772736,3050772991,US 3050772992,3050773007,HK 3050773008,3050773247,BR 3050773248,3050773503,US 3050773504,3050773519,NL 3050773520,3050773759,BR 3050773760,3050774015,US 3050774016,3050774031,TR 3050774032,3050774271,BR 3050774272,3050774527,US 3050774528,3050774543,ES 3050774544,3050774783,BR 3050774784,3050775039,US 3050775040,3050775055,KR 3050775056,3050775295,BR 3050775296,3050775551,US 3050775552,3050775567,FR 3050775568,3050775807,BR 3050775808,3050776063,US 3050776064,3050776079,MY 3050776080,3050776319,BR 3050776320,3050776575,US 3050776576,3050776591,TH 3050776592,3050776831,BR 3050776832,3050777087,US 3050777088,3050777103,AU 3050777104,3050777343,BR 3050777344,3050777599,US 3050777600,3050777615,HK 3050777616,3050777855,BR 3050777856,3050778111,US 3050778112,3050778127,KR 3050778128,3050778367,BR 3050778368,3050778623,US 3050778624,3050778639,TR 3050778640,3050778879,BR 3050778880,3050800383,US 3050800384,3050800399,AL 3050800400,3050800415,AD 3050800416,3050800431,AI 3050800432,3050800447,AG 3050800448,3050800463,AR 3050800464,3050800479,AM 3050800480,3050800495,AZ 3050800496,3050800511,BS 3050800512,3050800639,US 3050800640,3050800655,BB 3050800656,3050800671,BY 3050800672,3050800687,BZ 3050800688,3050800703,BM 3050800704,3050800719,BO 3050800720,3050800735,BA 3050800736,3050800751,VG 3050800752,3050800767,KY 3050800768,3050800895,US 3050800896,3050800911,CN 3050800912,3050800927,CO 3050800928,3050800943,GG 3050800944,3050800959,CU 3050800960,3050800975,CY 3050800976,3050800991,DK 3050800992,3050801007,DO 3050801008,3050801023,EC 3050801024,3050801151,US 3050801152,3050801167,EG 3050801168,3050801175,GQ 3050801176,3050801183,NZ 3050801184,3050801199,GF 3050801200,3050801215,PF 3050801216,3050801231,GE 3050801232,3050801247,SV 3050801248,3050801263,GD 3050801264,3050801279,GT 3050801280,3050801407,US 3050801408,3050801423,HN 3050801424,3050801439,IR 3050801440,3050801455,JM 3050801456,3050801471,JO 3050801472,3050801487,KG 3050801488,3050801503,LB 3050801504,3050801519,LI 3050801520,3050801535,MG 3050801536,3050801663,US 3050801664,3050801679,MT 3050801680,3050801695,MQ 3050801696,3050801703,MU 3050801704,3050801711,CL 3050801712,3050801727,MX 3050801728,3050801743,MC 3050801744,3050801759,ME 3050801760,3050801775,NC 3050801776,3050801791,NI 3050801792,3050802175,US 3050802176,3050802191,OM 3050802192,3050802207,PK 3050802208,3050802223,PE 3050802224,3050802239,PH 3050802240,3050802255,PR 3050802256,3050802271,QA 3050802272,3050802279,LC 3050802280,3050802287,IN 3050802288,3050802303,RS 3050802304,3050802431,US 3050802432,3050802447,SC 3050802448,3050802463,SI 3050802464,3050802479,KR 3050802480,3050802495,LK 3050802496,3050802511,TW 3050802512,3050802519,TT 3050802520,3050802527,CR 3050802528,3050802543,UY 3050802544,3050802559,VE 3050802560,3050802687,US 3050802688,3050802751,NZ 3050802752,3050802815,NO 3050802816,3050803199,US 3050803200,3050803263,NL 3050803264,3050803327,SE 3050803328,3050803711,US 3050803712,3050803775,IS 3050803776,3050803839,FR 3050803840,3050804223,US 3050804224,3050804287,BE 3050804288,3050804351,NZ 3050804352,3050805247,US 3050805248,3050805311,NL 3050805312,3050805375,FI 3050805376,3050805759,US 3050805760,3050805791,DK 3050805792,3050831871,US 3050831872,3051356159,BR 3051356160,3051372543,CR 3051372544,3051372799,PA 3051372800,3051373055,CR 3051373056,3051374591,PA 3051374592,3051374847,CR 3051374848,3051375871,PA 3051375872,3051376895,CR 3051376896,3051377151,PA 3051377152,3051379455,CR 3051379456,3051379711,PA 3051379712,3051380735,CR 3051380736,3051388927,AR 3051388928,3051389695,US 3051389696,3051389951,NL 3051389952,3051390719,US 3051390720,3051390975,NL 3051390976,3051395071,US 3051395072,3051395583,NL 3051395584,3051397119,PA 3051397120,3051398143,CO 3051398144,3051399167,AR 3051399168,3051400191,DO 3051400192,3051401215,EC 3051401216,3051405311,AR 3051405312,3051407359,CR 3051407360,3051408383,PE 3051408384,3051409407,DO 3051409408,3051411455,AR 3051411456,3051413503,CR 3051413504,3051421695,PE 3051421696,3051429887,AR 3051429888,3051438079,VE 3051438080,3051450367,CO 3051450368,3051454463,CL 3051454464,3051456511,SV 3051456512,3051457535,AR 3051457536,3051460607,CL 3051460608,3051462655,AR 3051462656,3051470847,PE 3051470848,3051479039,AR 3051479040,3051487231,CU 3051487232,3051552767,CL 3051552768,3051618303,BO 3051618304,3051880447,AR 3051880448,3051913215,CO 3051913216,3051963135,CR 3051963136,3051963391,PA 3051963392,3051964671,CR 3051964672,3051964927,PA 3051964928,3051965183,CR 3051965184,3051965439,PA 3051965440,3051965695,CR 3051965696,3051965951,PA 3051965952,3051968511,CR 3051968512,3051968767,PA 3051968768,3051969535,CR 3051969536,3051969791,PA 3051969792,3051971071,CR 3051971072,3051971327,PA 3051971328,3051971839,CR 3051971840,3051972351,PA 3051972352,3051973887,CR 3051973888,3051974143,PA 3051974144,3051974399,CR 3051974400,3051974655,PA 3051974656,3051976191,CR 3051976192,3051976447,PA 3051976448,3051983871,CR 3051983872,3051984895,BR 3051984896,3051995135,CR 3051995136,3052011519,PE 3052011520,3052273663,CO 3052273664,3052404735,AR 3052404736,3053453311,CO 3053453312,3054501887,ID 3054501888,3054534655,HK 3054534656,3054537727,PH 3054537728,3054538751,SG 3054538752,3054540799,CN 3054540800,3054541823,NZ 3054541824,3054542847,BD 3054542848,3054551039,ID 3054551040,3054559231,CN 3054559232,3054561279,JP 3054561280,3054562303,SG 3054562304,3054563327,JP 3054563328,3054567423,ID 3054567424,3054632959,TH 3054632960,3054665727,CN 3054665728,3054682111,IN 3054682112,3054698495,PH 3054698496,3054731263,IN 3054731264,3054764031,SG 3054764032,3054960639,JP 3054960640,3054993407,ID 3054993408,3054997503,IN 3054997504,3055001599,SG 3055001600,3055005695,ID 3055005696,3055007743,NZ 3055007744,3055009791,CN 3055009792,3055011839,AU 3055011840,3055013887,CN 3055013888,3055014911,JP 3055014912,3055015935,AU 3055015936,3055026175,JP 3055026176,3055484927,ID 3055484928,3055550463,KR 3055550464,3056599039,CN 3056599040,3056615423,JP 3056615424,3056623615,BD 3056623616,3056631807,CN 3056631808,3056639999,NZ 3056640000,3056648191,ID 3056648192,3056664575,IN 3056664576,3056734207,CN 3056734208,3056746495,KR 3056746496,3056747519,NP 3056748544,3056749567,WS 3056749568,3056750591,SG 3056750592,3056754687,TH 3056754688,3056758783,JP 3056758784,3056762879,CN 3056762880,3056771071,SG 3056771072,3056772095,NZ 3056772096,3056773119,JP 3056773120,3056774143,WS 3056774144,3056775167,JP 3056775168,3056779263,AF 3056779264,3056791551,JP 3056791552,3056795647,ID 3056795648,3056861183,CN 3056861184,3056992255,TH 3056992256,3057025023,CN 3057033216,3057037311,NZ 3057037312,3057041407,JP 3057041408,3057049599,MY 3057049600,3057050623,AU 3057050624,3057051647,SG 3057051648,3057052415,AU 3057052416,3057052671,ES 3057052672,3057052927,IL 3057052928,3057053183,GB 3057053184,3057053695,AU 3057053696,3057054719,JP 3057054720,3057055743,CN 3057055744,3057057791,JP 3057057792,3057123327,SG 3057123328,3057451007,IN 3057451008,3057516543,CN 3057516544,3057647615,MY 3057647616,3058696191,IN 3058696192,3059548159,CN 3059548160,3059564543,MO 3059564544,3059572735,NP 3059572736,3059580927,JP 3059580928,3059613695,TH 3059613696,3059744767,IN 3059744768,3063414783,CN 3063414784,3063545855,HK 3063545856,3063611391,NZ 3063611392,3063676927,TW 3063676928,3063742463,IN 3063742464,3063807999,CN 3063808000,3063939071,JP 3063939072,3063955455,MN 3063955456,3063963647,CN 3063963648,3063971839,BD 3063971840,3063988223,AU 3063988224,3064004607,JP 3064004608,3064012799,LK 3064020992,3064023039,JP 3064023040,3064024063,SG 3064024064,3064025087,JP 3064025088,3064029183,VN 3064029184,3064135679,KR 3064135680,3064160255,JP 3064160256,3064168447,BD 3064168448,3064201215,KR 3064201216,3064725503,JP 3064725504,3064791039,KR 3064791040,3064807423,TW 3064807424,3064808447,IN 3064808448,3064809471,TW 3064809472,3064810495,MY 3064810496,3064811519,HK 3064811520,3064823807,KR 3064823808,3064831999,JP 3064832000,3064840191,KR 3064840192,3064856575,GU 3064856576,3064987647,CN 3064987648,3066036223,PK 3066036224,3066560511,KR 3066560512,3067084799,CN 3067084800,3068657663,KR 3068657664,3068723199,TH 3068723200,3068919807,TW 3068919808,3068948479,JP 3068948480,3068949503,VN 3068949504,3068950527,AU 3068950528,3068952575,NZ 3068952576,3068985343,CN 3068985344,3068986367,HK 3068986368,3068987391,AU 3068987392,3068990463,IN 3068990464,3068991487,VN 3068991488,3068993535,CN 3068993536,3069018111,KR 3069018112,3069034495,IN 3069034496,3069050879,KR 3069050880,3069124607,CN 3069124608,3069126655,PH 3069126656,3069127679,MY 3069127680,3069128703,TW 3069128704,3069149183,HK 3069149184,3069181951,AU 3069181952,3069706239,CN 3069706240,3069968383,JP 3069968384,3069984767,KR 3069984768,3070001151,BD 3070001152,3070033919,KR 3070033920,3070099455,ID 3070099456,3070164991,CN 3070164992,3070167039,ID 3070167040,3070169087,TH 3070169088,3070170111,ID 3070170112,3070171135,MY 3070171136,3070172159,HK 3070172160,3070173183,AU 3070181376,3070185471,JP 3070185472,3070197759,AU 3070197760,3070230527,KR 3070230528,3074949119,CN 3074949120,3075342335,JP 3075342336,3075375103,MY 3075375104,3075383295,KR 3075383296,3075385343,CN 3075385344,3075386367,MY 3075386368,3075387391,AU 3075387392,3075388415,HK 3075388416,3075389439,CN 3075389440,3075390463,IN 3075390464,3075391487,JP 3075391488,3075407871,KR 3075407872,3075473407,JP 3075473408,3075571711,VN 3075571712,3075575807,FJ 3075575808,3075577855,AU 3075577856,3075579903,ID 3075579904,3075581951,MY 3075581952,3075582975,MN 3075582976,3075583999,CN 3075584000,3075585023,JP 3075585024,3075586047,CN 3075586048,3075588095,KH 3075588096,3075604479,SG 3075604480,3075735551,IN 3075735552,3075866623,CN 3075866624,3075915775,JP 3075915776,3075932159,KR 3075932160,3075997695,IN 3075997696,3076128767,TH 3076128768,3076161535,SG 3076161536,3076169727,KR 3076169728,3076171775,VN 3076171776,3076173823,TH 3076173824,3076175871,JP 3076175872,3076177919,HK 3076177920,3076194303,JP 3076194304,3076202495,VN 3076202496,3076210687,HK 3076210688,3076218879,ID 3076218880,3076227071,JP 3076227072,3076228095,CN 3076228096,3076229119,NP 3076229120,3076235263,CN 3076235264,3076243455,VN 3076243456,3076259839,KR 3076259840,3076521983,CN 3076521984,3078619135,KR 3078619136,3081437183,CN 3081437184,3081502719,MY 3081502720,3081764863,CN 3081764864,3081844735,JP 3081844736,3081846783,AU 3081846784,3081847807,TW 3081847808,3081848831,KR 3081848832,3081850879,SG 3081850880,3081851903,HK 3081851904,3081852927,JP 3081852928,3081854975,HK 3081854976,3081859071,MN 3081859072,3081861119,PH 3081861120,3081862143,AU 3081862144,3081863167,IN 3081863168,3081895935,JP 3081895936,3082027007,HK 3082027008,3082158079,JP 3082158080,3082166271,CN 3082166272,3082174463,JP 3082174464,3082178559,BZ 3082178560,3082178823,HK 3082178824,3082178824,SG 3082178825,3082179047,HK 3082179048,3082179055,SG 3082179056,3082179583,HK 3082179584,3082181631,IN 3082181632,3082182655,ID 3082182656,3082190847,LA 3082190848,3082289151,JP 3082289152,3087007743,CN 3087007744,3088449535,US 3088449536,3088474111,TH 3088474112,3088478207,US 3088478208,3088506879,TH 3088506880,3088605183,US 3088605184,3088609279,NL 3088609280,3088629759,US 3088629760,3088633855,NL 3088633856,3088654335,US 3088654336,3088658431,NL 3088658432,3088673535,US 3088673536,3088673791,NL 3088673792,3088686591,US 3088686592,3088687103,NL 3088687104,3088701439,US 3088701440,3088702463,NL 3088702464,3088711167,US 3088711168,3088711423,AU 3088711424,3088752639,US 3088752640,3088752895,NL 3088752896,3088753919,US 3088753920,3088754175,NL 3088754176,3088785407,US 3088785408,3088786431,NL 3088786432,3088812031,US 3088812032,3088813055,NL 3088813056,3088827135,US 3088827136,3088827391,NL 3088827392,3088829951,US 3088829952,3088830463,NL 3088830464,3088830975,US 3088830976,3088831487,NL 3088831488,3088856575,US 3088856576,3088857599,NL 3088857600,3088858111,US 3088858112,3088858623,NL 3088858624,3088861695,US 3088861696,3088862719,NL 3088862720,3088863231,US 3088863232,3088863743,NL 3088863744,3088863999,US 3088864000,3088864255,NL 3088864256,3088866303,US 3088866304,3088866815,NL 3088866816,3088867839,US 3088867840,3088868351,NL 3088868352,3088868607,US 3088868608,3088870143,NL 3088870144,3088880639,US 3088880640,3088881663,NL 3088881664,3088888831,US 3088888832,3088889343,NL 3088889344,3088924671,US 3088924672,3088925695,NL 3088925696,3088998399,US 3088998400,3089002495,NL 3089002496,3089027071,US 3089027072,3089031167,NL 3089031168,3089059839,US 3089059840,3089063935,NL 3089063936,3090292223,US 3090292224,3090292735,NL 3090292736,3090308863,US 3090308864,3090309119,NL 3090309120,3090325503,US 3090325504,3090329599,NL 3090329600,3090387455,US 3090387456,3090387711,NL 3090387712,3090387967,US 3090387968,3090388479,NL 3090388480,3090389503,US 3090389504,3090389631,CA 3090389632,3090401791,US 3090401792,3090402047,IN 3090402048,3090415103,US 3090415104,3090415615,NL 3090415616,3091202047,US 3091202048,3091726335,CA 3091726336,3091955711,US 3091955712,3091959807,CA 3091959808,3091976191,US 3091976192,3091980287,CA 3091980288,3092381695,US 3092381696,3092439039,TH 3092439040,3092559359,US 3092559360,3092559615,NL 3092559616,3092567039,US 3092567040,3092568063,NL 3092568064,3092569343,US 3092569344,3092569599,AU 3092569600,3092572671,US 3092572672,3092573183,NL 3092573184,3092573695,US 3092573696,3092573951,AU 3092573952,3092578303,US 3092578304,3092582399,NL 3092582400,3092615167,US 3092615168,3092619263,NL 3092619264,3092623359,US 3092623360,3092627455,NL 3092627456,3092635391,US 3092635392,3092635647,NL 3092635648,3092640255,US 3092640256,3092640767,NL 3092640768,3092641791,US 3092641792,3092642047,NL 3092642048,3092642559,US 3092642560,3092642815,NL 3092642816,3092643839,US 3092643840,3092647935,NL 3092647936,3092656127,US 3092656128,3092660223,NL 3092660224,3092664319,US 3092664320,3092665343,NL 3092665344,3092666367,US 3092666368,3092667391,NL 3092667392,3092669439,US 3092669440,3092669951,NL 3092669952,3092671487,US 3092671488,3092672511,NL 3092672512,3092688895,US 3092688896,3092692991,NL 3092692992,3092697087,US 3092697088,3092697599,NL 3092697600,3092700927,US 3092700928,3092701183,AU 3092701184,3092703231,NL 3092703232,3092704255,US 3092704256,3092705279,NL 3092705280,3092754431,US 3092754432,3092759039,NL 3092759040,3092764671,US 3092764672,3092766719,NL 3092766720,3093168127,US 3093168128,3093200895,CA 3093200896,3093213183,US 3093213184,3093217279,CA 3093217280,3093233663,US 3093233664,3093237759,PR 3093237760,3093282815,US 3093282816,3093299199,CA 3093299200,3093907199,US 3093907200,3093907455,CA 3093907456,3093908991,US 3093908992,3093909247,PR 3093909248,3093909528,US 3093909529,3093909529,AT 3093909530,3093909597,US 3093909598,3093909598,DE 3093909599,3093909656,US 3093909657,3093909657,FR 3093909658,3093909812,US 3093909813,3093909813,AT 3093909814,3093943785,US 3093943786,3093943786,CZ 3093943787,3093945989,US 3093945990,3093945990,AT 3093945991,3094020095,US 3094020096,3094023303,CA 3094023304,3094023311,BD 3094023312,3094032759,CA 3094032760,3094032767,GI 3094032768,3094041359,CA 3094041360,3094041367,DZ 3094041368,3094045663,CA 3094045664,3094045671,CO 3094045672,3094077751,CA 3094077752,3094077759,US 3094077760,3094085631,CA 3094085632,3096444927,US 3096444928,3096969215,CA 3096969216,3097493503,US 3097493504,3097755647,CA 3097755648,3098095615,US 3098095616,3098099711,CA 3098099712,3098099967,US 3098099968,3098100735,SE 3098100736,3098101247,SG 3098101248,3098103295,US 3098103296,3098103551,NL 3098103552,3098103807,DE 3098103808,3098104063,FR 3098104064,3098104319,GB 3098104320,3098104575,IL 3098104576,3098104831,AU 3098104832,3098105087,JP 3098105088,3098105855,ES 3098105856,3098106111,HK 3098106112,3098106623,IN 3098106624,3098106879,NL 3098106880,3098107135,DE 3098107136,3098107391,FR 3098107392,3098107647,US 3098107648,3098107903,SE 3098107904,3098148863,US 3098148864,3098165247,JM 3098165248,3098181631,US 3098181632,3098185727,CA 3098185728,3098263551,US 3098263552,3098271743,CA 3098271744,3098411007,US 3098411008,3098415103,PK 3098415104,3098476543,US 3098476544,3098492927,CA 3098492928,3098494719,US 3098494720,3098495743,CA 3098495744,3098495999,US 3098496000,3098496255,CA 3098496256,3098503423,US 3098503424,3098503679,CA 3098503680,3098507263,US 3098507264,3098507519,CA 3098507520,3103784959,US 3103850496,3103850751,RU 3103850752,3103851007,PS 3103851008,3103851519,FR 3103851520,3103852543,PL 3103852544,3103852799,AE 3103852800,3103853567,PL 3103853568,3103853823,NO 3103853824,3103854079,RU 3103854080,3103854335,FR 3103854336,3103854591,AE 3103854592,3103854847,UA 3103854848,3103855103,PL 3103855104,3103855359,DE 3103855360,3103855615,RU 3103855616,3103855871,ES 3103855872,3103856127,AT 3103856128,3103856383,PL 3103856384,3103856639,RU 3103856640,3103856895,HU 3103856896,3103857151,CZ 3103857152,3103857407,FR 3103857408,3103857663,RS 3103857664,3103857919,FR 3103857920,3103858175,PL 3103858176,3103858431,BG 3103858432,3103858687,AT 3103858688,3103858943,NL 3103858944,3103859199,GB 3103859200,3103859455,SK 3103859456,3103859711,DE 3103859712,3103859967,RO 3103859968,3103860223,PL 3103860224,3103860479,FR 3103860480,3103860735,UA 3103860736,3103860991,BG 3103860992,3103861247,RU 3103861248,3103861503,PL 3103861504,3103861759,AT 3103861760,3103862015,ME 3103862016,3103862271,MD 3103862272,3103862527,IT 3103862528,3103862783,FR 3103862784,3103863039,DE 3103863040,3103863295,RU 3103863296,3103863807,UA 3103863808,3103864063,RU 3103864064,3103864319,GB 3103864320,3103864575,DE 3103864832,3103865087,BG 3103865088,3103865343,DK 3103865856,3103866111,DE 3103916032,3103917055,CH 3103917056,3103918079,IT 3103918080,3103919103,DE 3103919104,3103920127,IR 3103920128,3103921151,DE 3103921152,3103922175,CH 3103922176,3103923199,NL 3103923200,3103923455,SE 3103923456,3103924223,NL 3103924224,3103924479,DE 3103924480,3103925247,RU 3103925248,3103926271,PL 3103926272,3103926783,CZ 3103926784,3103927039,SK 3103927040,3103927295,CZ 3103927296,3103929343,NL 3103929344,3103930367,BE 3103930368,3103931391,DE 3103931392,3103932415,PL 3103932416,3103933439,IE 3103933440,3103934463,ES 3103934464,3103935487,RU 3103935488,3103936511,PL 3103936512,3103937535,NL 3103937536,3103938559,PT 3103938560,3103939583,RU 3103939584,3103940607,BE 3103940608,3103941631,CY 3103941632,3103942655,DE 3103942656,3103943679,RU 3103943680,3103944703,UA 3103944704,3103945727,PL 3103945728,3103947775,DE 3103947776,3103948799,RU 3103948800,3103949823,ES 3103949824,3103950847,DE 3103950848,3103951871,GB 3103951872,3103952895,DE 3103952896,3103953919,IT 3103953920,3103954431,NL 3103954432,3103954943,ES 3103954944,3103955967,SE 3103955968,3103956991,AT 3103956992,3103958015,DE 3103958016,3103960063,GB 3103960064,3103961087,NL 3103961088,3103961343,TR 3103961344,3103961599,AE 3103961600,3103961855,AR 3103961856,3103962111,AT 3103962112,3103963135,DE 3103963136,3103964159,RU 3103964160,3103965183,MK 3103965184,3103967231,GB 3103967232,3103968255,DE 3103968256,3103969279,GB 3103969280,3103970303,BG 3103970304,3103971327,UA 3103971328,3103973375,GB 3103973376,3103974399,KZ 3103974400,3103974911,SE 3103974912,3103974919,LT 3103974920,3103974943,SE 3103974944,3103975071,LT 3103975072,3103975423,SE 3103975424,3103976447,SA 3103976448,3103977471,GB 3103977472,3103978495,NL 3103978496,3103979519,QA 3103979520,3103980543,DE 3103980544,3103981567,FR 3103981568,3103983615,NO 3103983616,3103984639,CZ 3103984640,3103985663,DK 3103985664,3103986687,RU 3103986688,3103987711,LB 3103987712,3103988735,FR 3103989760,3103990783,RU 3103990784,3103991807,IT 3103991808,3103992831,DE 3103992832,3103993855,LU 3103993856,3103994879,SE 3103994880,3103995903,JE 3103995904,3103996927,TR 3103996928,3103997951,PL 3103997952,3103998975,FR 3103998976,3103999999,RU 3104000000,3104002047,GB 3104002048,3104003071,DE 3104003072,3104006143,GB 3104006144,3104007167,DE 3104007168,3104008191,GG 3104008192,3104009215,NL 3104009216,3104010239,IT 3104010240,3104011263,PL 3104011264,3104012287,ES 3104012288,3104012799,BH 3104012800,3104013055,SA 3104013056,3104013311,BH 3104013312,3104014335,IR 3104014336,3104015359,FR 3104015360,3104016383,SE 3104016384,3104017407,HU 3104017408,3104018431,RU 3104018432,3104019455,IL 3104019456,3104020479,UA 3104020480,3104021503,AE 3104021504,3104022527,CZ 3104022528,3104023551,BE 3104023552,3104024575,GB 3104024576,3104025599,FR 3104025600,3104026623,RU 3104026624,3104027647,NL 3104027648,3104028671,RU 3104028672,3104029695,DE 3104029696,3104030719,AM 3104030720,3104031743,HR 3104031744,3104032767,FR 3104032768,3104033791,IR 3104033792,3104035839,NL 3104035840,3104036863,IR 3104036864,3104037887,BE 3104037888,3104038911,GR 3104038912,3104039935,PL 3104039936,3104040959,LT 3104040960,3104041983,DE 3104041984,3104043007,ES 3104043008,3104044031,RU 3104044032,3104045055,HU 3104045056,3104046079,DE 3104046080,3104047103,IT 3104047104,3104048127,IR 3104048128,3104049151,GB 3104049152,3104050175,SE 3104050176,3104051199,GB 3104051200,3104052223,IR 3104052224,3104053247,FR 3104053248,3104054271,GB 3104054272,3104055295,IR 3104055296,3104056319,ES 3104056320,3104057343,NO 3104057344,3104058367,UA 3104058368,3104059391,FR 3104059392,3104060415,GB 3104060416,3104061439,AD 3104061440,3104062463,RU 3104062464,3104063487,FR 3104063488,3104064511,RU 3104064512,3104065535,TR 3104065536,3104066559,EE 3104066560,3104067583,FR 3104067584,3104068607,BG 3104068608,3104069631,SY 3104069632,3104070655,GR 3104070656,3104071679,ES 3104071680,3104073727,GB 3104073728,3104074751,IR 3104074752,3104075775,RU 3104075776,3104076799,NL 3104076800,3104077823,GB 3104077824,3104078847,AT 3104078848,3104079871,FR 3104079872,3104080895,GB 3104080896,3104081919,GR 3104081920,3104082943,DK 3104082944,3104083967,IT 3104083968,3104084991,RU 3104084992,3104085247,NL 3104085248,3104085503,HR 3104085504,3104086015,NL 3104086016,3104087039,IT 3104087040,3104088063,GB 3104088064,3104089087,UZ 3104089088,3104090111,GB 3104090112,3104091135,CH 3104091136,3104092159,NO 3104092160,3104094207,RU 3104094208,3104096255,ES 3104096256,3104097279,IE 3104097280,3104098303,GB 3104098304,3104099327,CZ 3104099328,3104100351,RU 3104100352,3104101375,TR 3104101376,3104102399,PL 3104102400,3104103423,DK 3104103424,3104104447,IR 3104104448,3104105471,TR 3104105472,3104106495,FI 3104106496,3104107519,DE 3104107520,3104108543,UA 3104108544,3104109567,GB 3104109568,3104110591,ES 3104110592,3104111615,FR 3104111616,3104112639,LB 3104112640,3104113663,GB 3104113664,3104114687,MK 3104114688,3104116735,DE 3104116736,3104117759,RU 3104117760,3104118783,SE 3104118784,3104120831,DE 3104120832,3104121855,CH 3104121856,3104122879,GB 3104122880,3104123903,RU 3104123904,3104124159,SE 3104124160,3104124415,LU 3104124416,3104124927,SE 3104124928,3104125951,MT 3104125952,3104126975,LT 3104126976,3104127999,CH 3104128000,3104129023,IT 3104129024,3104130047,GB 3104130048,3104131071,CZ 3104132096,3104133119,GR 3104133120,3104134143,DE 3104134144,3104135167,ES 3104135168,3104136191,GB 3104136192,3104137215,IT 3104137216,3104138239,PL 3104138240,3104139263,DE 3104139264,3104140287,UA 3104140288,3104141311,FR 3104141312,3104142335,IT 3104142336,3104143359,BG 3104143360,3104144383,NL 3104144384,3104145407,ES 3104145408,3104146431,RU 3104146432,3104147455,NL 3104147456,3104149503,RU 3104149504,3104150527,GB 3104150528,3104151551,RU 3104151552,3104152575,SA 3104152576,3104153599,IR 3104153600,3104154623,RU 3104154624,3104155647,DK 3104155648,3104156671,DE 3104156672,3104157695,RO 3104157696,3104158719,TR 3104158720,3104159743,IT 3104159744,3104160767,CH 3104160768,3104161791,GB 3104161792,3104162815,RU 3104162816,3104164863,IT 3104164864,3104165887,RU 3104165888,3104166911,IT 3104166912,3104167935,FR 3104167936,3104168959,PL 3104168960,3104169983,PS 3104169984,3104171007,CZ 3104171008,3104172031,HU 3104172032,3104173055,NO 3104173056,3104174079,ES 3104174080,3104175103,IE 3104175104,3104176127,IT 3104176128,3104177151,RU 3104177152,3104178175,UA 3104178176,3104179199,PL 3104179200,3104180223,ES 3104180224,3104181247,SE 3104181248,3104182271,RU 3104182272,3104183295,PS 3104183296,3104184319,MK 3104184320,3104185343,BY 3104185344,3104186367,PL 3104186368,3104187391,ES 3104187392,3104188415,IE 3104188416,3104189439,UZ 3104189440,3104190463,RU 3104190464,3104191487,NL 3104191488,3104192511,PL 3104192512,3104193535,PS 3104193536,3104194559,FR 3104194560,3104195583,IL 3104195584,3104196607,DE 3104196608,3104197631,IT 3104197632,3104198655,GR 3104198656,3104199679,RU 3104199680,3104200703,NL 3104200704,3104201727,IT 3104201728,3104202751,FR 3104202752,3104203775,DE 3104203776,3104204799,HU 3104204800,3104205823,BA 3104205824,3104206847,NL 3104206848,3104207871,PL 3104207872,3104208895,RU 3104208896,3104209919,DE 3104209920,3104210943,RU 3104210944,3104211967,DE 3104211968,3104212991,GB 3104212992,3104214015,HU 3104214016,3104215039,FR 3104215040,3104216063,DE 3104216064,3104217087,LB 3104217088,3104218111,GB 3104218112,3104219135,HU 3104219136,3104220159,NL 3104220160,3104221183,RU 3104221184,3104222207,CH 3104222208,3104223231,RU 3104223232,3104224255,EE 3104224256,3104225279,FI 3104225280,3104226303,UA 3104226304,3104227327,RS 3104227328,3104228351,IT 3104228352,3104229375,GB 3104229376,3104230399,ES 3104230400,3104231423,NL 3104231424,3104233471,FR 3104233472,3104234495,RU 3104234496,3104235519,OM 3104235520,3104236543,GB 3104236544,3104237567,RU 3104237568,3104238591,LU 3104238592,3104239615,RU 3104239616,3104240639,IT 3104240640,3104242687,RU 3104242688,3104243711,DE 3104243712,3104244735,TR 3104244736,3104245759,FR 3104245760,3104246783,BH 3104246784,3104247807,FR 3104247808,3104248831,AT 3104248832,3104250879,CZ 3104250880,3104251903,RU 3104251904,3104252415,SE 3104252416,3104252927,NL 3104252928,3104253951,FR 3104253952,3104254975,RU 3104254976,3104255999,CZ 3104256000,3104257023,RU 3104257024,3104258047,HR 3104258048,3104259071,DE 3104259072,3104260095,NO 3104260096,3104261119,FR 3104261120,3104262143,NL 3104262144,3104263167,FR 3104263168,3104264191,NL 3104264192,3104265215,GB 3104265216,3104266239,RU 3104266240,3104267263,GB 3104267264,3104268287,RU 3104268288,3104269311,GB 3104269312,3104270335,FR 3104270336,3104271359,PL 3104271360,3104272383,FR 3104272384,3104273407,IT 3104273408,3104274431,RU 3104274432,3104275455,PS 3104275456,3104276479,AT 3104276480,3104277503,LB 3104277504,3104280575,NO 3104280576,3104281599,RU 3104281600,3104282623,GB 3104282624,3104283647,RU 3104283648,3104284671,CY 3104284672,3104285695,FR 3104285696,3104286719,GB 3104286720,3104287743,PL 3104287744,3104288767,RU 3104288768,3104289791,TR 3104289792,3104290815,RU 3104290816,3104291839,IE 3104291840,3104292863,GB 3104292864,3104293887,NO 3104293888,3104294911,DE 3104294912,3104295935,RU 3104295936,3104296959,BG 3104296960,3104297983,DE 3104297984,3104299007,FR 3104299008,3104300031,BG 3104300032,3104301055,NO 3104301056,3104303103,GB 3104303104,3104304127,RU 3104304128,3104305151,LV 3104305152,3104306175,FR 3104306176,3104307199,GB 3104307200,3104308223,NL 3104308224,3104309247,EE 3104309248,3104310271,AM 3104310272,3104311295,RU 3104311296,3104312319,DE 3104312320,3104313343,TR 3104313344,3104314367,NO 3104314368,3104315391,RU 3104315392,3104316415,IT 3104316416,3104317439,FR 3104317440,3104318463,TR 3104318464,3104319487,IT 3104319488,3104320511,UA 3104320512,3104321535,BE 3104321536,3104322559,FR 3104322560,3104323583,BE 3104323584,3104324607,CZ 3104324608,3104325631,LV 3104325632,3104326655,FR 3104326656,3104327679,MD 3104327680,3104328703,HU 3104328704,3104329727,FR 3104329728,3104330751,SE 3104330752,3104331775,DE 3104331776,3104333823,GB 3104333824,3104334847,ES 3104334848,3104335871,SE 3104335872,3104336895,LT 3104336896,3104337919,GB 3104337920,3104338943,IE 3104338944,3104339967,DE 3104339968,3104340991,IT 3104340992,3104342015,RU 3104342016,3104343039,TR 3104343040,3104344063,GB 3104344064,3104345087,DE 3104345088,3104346111,ES 3104346112,3104347135,FR 3104347136,3104348159,IT 3104348160,3104349183,RO 3104349184,3104350207,RU 3104350208,3104352255,CZ 3104352256,3104353279,DE 3104353280,3104354303,IR 3104354304,3104355327,NL 3104355328,3104356351,RU 3104356352,3104357375,AT 3104357376,3104358399,CZ 3104358400,3104359423,IE 3104359424,3104360447,IT 3104360448,3104361471,RU 3104361472,3104362495,GB 3104362496,3104363519,CH 3104363520,3104364543,UZ 3104364544,3104366591,RU 3104366592,3104368639,DE 3104368640,3104369663,KZ 3104369664,3104370687,CZ 3104370688,3104372735,ES 3104372736,3104373759,NO 3104373760,3104374783,FR 3104374784,3104375807,SE 3104375808,3104376831,DK 3104376832,3104377855,FI 3104377856,3104378879,DE 3104378880,3104379903,GB 3104379904,3104380927,FR 3104380928,3104381951,DK 3104381952,3104382975,DE 3104382976,3104383999,GB 3104384000,3104385023,TR 3104385024,3104386047,UA 3104386048,3104387071,AL 3104387072,3104388095,GB 3104388096,3104389119,IT 3104389120,3104390143,PL 3104390144,3104391167,SE 3104391168,3104392191,DE 3104392192,3104393215,IQ 3104393216,3104397311,RU 3104397312,3104398335,NO 3104398336,3104399359,GB 3104399360,3104400383,FR 3104400384,3104401407,MT 3104401408,3104403455,DE 3104403456,3104404479,SK 3104404480,3104405503,CZ 3104405504,3104405759,KZ 3104405760,3104406015,RU 3104406016,3104406527,KZ 3104406528,3104407551,PL 3104407552,3104408575,DE 3104408576,3104409599,AT 3104409600,3104410623,LB 3104410624,3104411647,DK 3104411648,3104412671,RU 3104412672,3104413695,IT 3104413696,3104414719,FR 3104414720,3104415743,TR 3104415744,3104416767,RU 3104416768,3104417791,SE 3104417792,3104418815,US 3104418816,3104419839,GB 3104419840,3104421887,DE 3104421888,3104422911,RU 3104422912,3104423935,LU 3104423936,3104424959,ES 3104424960,3104425983,KW 3104425984,3104428031,RU 3104428032,3104429055,IT 3104429056,3104430079,GI 3104430080,3104431103,DE 3104431104,3104432127,TR 3104432128,3104433151,DE 3104433152,3104434175,RU 3104434176,3104435199,GB 3104435200,3104438271,RO 3104438272,3104439295,FR 3104439296,3104440319,NL 3104440320,3104441343,RU 3104441344,3104442367,IL 3104442368,3104443391,DK 3104443392,3104444415,GB 3104444416,3104445439,FR 3104445440,3104446463,MD 3104446464,3104447487,PL 3104447488,3104448511,NO 3104448512,3104449535,IT 3104449536,3104450559,DE 3104450560,3104451583,HR 3104451584,3104452607,RU 3104452608,3104453631,NL 3104453632,3104454655,CH 3104454656,3104455294,NL 3104455295,3104455298,SE 3104455299,3104455679,NL 3104455680,3104456703,RU 3104456704,3104457727,IL 3104457728,3104458751,DE 3104458752,3104459775,IR 3104459776,3104460799,IT 3104460800,3104462847,ES 3104462848,3104463871,GB 3104463872,3104464895,DE 3104464896,3104465919,NL 3104465920,3104466943,GB 3104467968,3104468991,DE 3104468992,3104470015,SA 3104470016,3104471039,IE 3104471040,3104472063,PL 3104472064,3104473087,HU 3104473088,3104474111,RU 3104474112,3104475135,SE 3104475136,3104476159,RU 3104476160,3104477183,RS 3104477184,3104478207,GB 3104478208,3104479231,DE 3104479232,3104480255,RU 3104480256,3104483327,NL 3104483328,3104484351,ES 3104484352,3104485375,RU 3104485376,3104486399,FR 3104486400,3104488447,RU 3104488448,3104489471,IT 3104489472,3104490495,DE 3104490496,3104491519,FI 3104491520,3104492543,GB 3104492544,3104493567,RS 3104493568,3104494591,UA 3104494592,3104495615,DK 3104495616,3104496639,JO 3104496640,3104497663,DK 3104497664,3104498687,CH 3104498688,3104500735,NL 3104500736,3104501759,CZ 3104501760,3104502783,LY 3104502784,3104503807,DE 3104503808,3104504831,ES 3104504832,3104505855,FR 3104505856,3104506879,NO 3104506880,3104507903,RU 3104507904,3104508927,YE 3104508928,3104509951,TR 3104509952,3104510975,DE 3104510976,3104511999,IT 3104512000,3104513023,LT 3104513024,3104514047,UA 3104514048,3104515071,RU 3104515072,3104516095,GB 3104516096,3104517119,CY 3104517120,3104518143,IL 3104518144,3104519167,RU 3104519168,3104520191,IT 3104520192,3104521215,CH 3104521216,3104522239,RU 3104522240,3104523263,IE 3104523264,3104524287,IR 3104524288,3104525311,RU 3104525312,3104526335,BY 3104526336,3104527359,UA 3104527360,3104528383,AT 3104528384,3104529407,IR 3104529408,3104530431,GB 3104530432,3104531455,SE 3104531456,3104532479,PL 3104532480,3104533503,GB 3104533504,3104534527,PL 3104534528,3104535551,SE 3104535552,3104536575,ES 3104537600,3104538623,US 3104538624,3104539647,PL 3104539648,3104540671,RU 3104540672,3104541695,DE 3104541696,3104542719,GB 3104542720,3104543743,NL 3104543744,3104544767,RU 3104544768,3104545791,IT 3104545792,3104546815,DE 3104546816,3104547839,FR 3104547840,3104548863,PT 3104548864,3104549887,CH 3104549888,3104550911,HU 3104550912,3104551935,IR 3104551936,3104552959,NO 3104552960,3104553983,GB 3104553984,3104555007,FR 3104555008,3104556031,IT 3104556032,3104557055,RU 3104557056,3104558079,ES 3104558080,3104559103,GB 3104559104,3104560127,FI 3104560128,3104561151,TR 3104561152,3104562175,FR 3104562176,3104563199,ES 3104563200,3104564223,IT 3104564224,3104565247,RU 3104565248,3104566271,IT 3104566272,3104567295,ES 3104567296,3104568319,GB 3104568320,3104569343,RU 3104569344,3104570367,TR 3104570368,3104571391,DE 3104571392,3104572415,FR 3104572416,3104573439,CH 3104573440,3104574463,UA 3104574464,3104575487,NL 3104575488,3104576511,AZ 3104576512,3104577535,PL 3104577536,3104578559,IQ 3104578560,3104579583,RU 3104579584,3104580607,FR 3104580608,3104581631,GB 3104581632,3104582655,ME 3104582656,3104583679,CH 3104583680,3104584703,FR 3104584704,3104585727,RU 3104585728,3104586751,NO 3104586752,3104587775,IR 3104587776,3104588799,DE 3104588800,3104589823,RU 3104589824,3104590847,NO 3104590848,3104591871,BA 3104591872,3104592895,IE 3104592896,3104593919,RU 3104593920,3104594943,DE 3104594944,3104595967,RU 3104595968,3104596991,FR 3104596992,3104598015,IR 3104598016,3104599039,ES 3104599040,3104600063,TR 3104600064,3104601087,UA 3104601088,3104602111,PT 3104602112,3104603135,NL 3104603136,3104604159,RU 3104604160,3104605183,CH 3104605184,3104606207,NL 3104606208,3104607231,GB 3104607232,3104608255,UA 3104608256,3104609279,NL 3104609280,3104609503,SE 3104609504,3104609535,NL 3104609536,3104609759,SE 3104609760,3104609791,NL 3104609792,3104610303,SE 3104610304,3104611327,RU 3104611328,3104612351,IE 3104612352,3104613375,GB 3104613376,3104614399,SA 3104614400,3104615423,BA 3104615424,3104616447,SA 3104616448,3104617471,DE 3104617472,3104618495,AT 3104618496,3104619519,PS 3104619520,3104621567,GB 3104621568,3104622591,CZ 3104622592,3104623615,GB 3104623616,3104624639,FR 3104624640,3104625663,RU 3104625664,3104627711,NL 3104627712,3104628735,LB 3104628736,3104629759,TR 3104629760,3104630783,RU 3104630784,3104631807,GB 3104631808,3104632831,EE 3104632832,3104633855,NL 3104633856,3104634879,JO 3104634880,3104635903,SE 3104635904,3104637951,RU 3104637952,3104638975,UA 3104638976,3104639999,RS 3104640000,3104641023,GB 3104641024,3104642047,EE 3104642048,3104643071,KZ 3104643072,3104644095,RU 3104644096,3104645119,DE 3104645120,3104646143,RU 3104646144,3104647167,FR 3104647168,3104648191,GB 3104648192,3104649215,RU 3104649216,3104650239,GB 3104650240,3104651263,SI 3104651264,3104652287,TR 3104652288,3104653311,ES 3104653312,3104654335,FR 3104654336,3104655359,DE 3104655360,3104656383,GB 3104656384,3104657407,ES 3104657408,3104658431,GB 3104658432,3104659455,JO 3104659456,3104660479,LU 3104660480,3104661503,NO 3104661504,3104662527,SE 3104662528,3104663551,FR 3104663552,3104665599,GB 3104665600,3104668671,RU 3104668672,3104669695,NO 3104669696,3104670719,FR 3104670720,3104672767,RU 3104672768,3104673791,GB 3104673792,3104674815,PL 3104674816,3104675839,DE 3104675840,3104676863,LV 3104676864,3104677887,DE 3104677888,3104678911,RU 3104678912,3104679935,IT 3104679936,3104681983,PL 3104681984,3104683007,RU 3104683008,3104684031,FR 3104684032,3104685055,PL 3104685056,3104686079,GB 3104686080,3104687103,IL 3104687104,3104688127,AM 3104688128,3104689151,ES 3104689152,3104690175,GB 3104690176,3104691199,DE 3104691200,3104693247,FR 3104693248,3104694271,IT 3104694272,3104695295,NL 3104695296,3104696319,IR 3104696320,3104697343,PL 3104697344,3104698367,MK 3104698368,3104699391,BA 3104699392,3104700415,GB 3104700416,3104701439,UA 3104701440,3104702463,IT 3104702464,3104703487,FR 3104703488,3104704511,RU 3104704512,3104705535,IT 3104705536,3104706559,DE 3104706560,3104707583,UA 3104707584,3104708607,TR 3104708608,3104709631,ES 3104709632,3104710655,NL 3104710656,3104711679,RU 3104711680,3104712703,ES 3104712704,3104714751,RU 3104714752,3104715775,DE 3104715776,3104716799,AT 3104716800,3104717823,ES 3104717824,3104718847,GB 3104718848,3104719871,TR 3104719872,3104720895,RU 3104720896,3104721919,PL 3104721920,3104722943,IT 3104722944,3104723967,IR 3104723968,3104724991,GB 3104724992,3104726015,RU 3104726016,3104727039,DE 3104727040,3104728063,CY 3104728064,3104729087,KZ 3104729088,3104730111,FR 3104730112,3104731135,CH 3104731136,3104732159,PL 3104732160,3104733183,SK 3104733184,3104734207,FR 3104734208,3104735231,BA 3104735232,3104736255,FR 3104736256,3104737279,JO 3104737280,3104740351,GB 3104740352,3104741375,PL 3104741376,3104742399,GB 3104742400,3104743423,CH 3104743424,3104744447,IR 3104744448,3104745471,GB 3104745472,3104746495,NL 3104746496,3104747519,TR 3104747520,3104749567,FR 3104749568,3104750591,NL 3104750592,3104751615,CZ 3104751616,3104751871,UA 3104751872,3104752127,CA 3104752128,3104752255,GB 3104752256,3104752383,RU 3104752384,3104752639,UA 3104752640,3104753663,SA 3104753664,3104754687,GR 3104754688,3104755711,MK 3104755712,3104757759,GB 3104757760,3104758783,EE 3104758784,3104759807,GB 3104759808,3104760831,CZ 3104760832,3104761855,FR 3104761856,3104762879,CZ 3104762880,3104763903,IT 3104763904,3104764927,SE 3104764928,3104765951,FR 3104765952,3104766975,IQ 3104766976,3104767999,CZ 3104768000,3104769023,PL 3104769024,3104770047,UA 3104770048,3104771071,DE 3104771072,3104772095,NL 3104772096,3104773119,FR 3104773120,3104774143,PT 3104774144,3104775167,FR 3104775168,3104776191,HR 3104776192,3104776703,GB 3104776704,3104777215,IE 3104777216,3104778239,DE 3104778240,3104779263,TR 3104779264,3104780287,PL 3104780288,3104782335,FR 3104782336,3104783359,NL 3104783360,3104784383,RU 3104784384,3104785407,BA 3104785408,3104786431,FR 3104786432,3104787455,DK 3104787456,3104788479,ES 3104788480,3104789503,PL 3104789504,3104791551,RU 3104791552,3104792575,DE 3104792576,3104793599,RU 3104793600,3104794623,ES 3104794624,3104795647,GB 3104795648,3104796671,CZ 3104796672,3104797695,GE 3104797696,3104798719,RU 3104798720,3104799743,SE 3104799744,3104800767,DK 3104800768,3104801791,FR 3104801792,3104802815,PL 3104802816,3104803839,AE 3104803840,3104804863,FR 3104804864,3104805887,CZ 3104805888,3104806911,ES 3104806912,3104807935,NO 3104807936,3104808959,BY 3104808960,3104809983,IT 3104809984,3104811007,NL 3104811008,3104812031,IT 3104812032,3104813055,RU 3104813056,3104816127,DE 3104816128,3104817151,RU 3104817152,3104818175,DE 3104818176,3104819199,TR 3104819200,3104820223,CH 3104820224,3104821247,GB 3104821248,3104822271,RU 3104822272,3104823295,FI 3104823296,3104824319,NO 3104824320,3104825343,NL 3104825344,3104826367,GB 3104826368,3104827391,CH 3104827392,3104828415,PL 3104828416,3104829439,AT 3104829440,3104830463,GB 3104830464,3104831487,DE 3104831488,3104832511,NL 3104832512,3104833535,CZ 3104833536,3104834559,GB 3104834560,3104835583,KW 3104835584,3104836607,RU 3104836608,3104837631,BA 3104837632,3104838655,DK 3104838656,3104839679,NL 3104839680,3104840703,IQ 3104840704,3104841727,UA 3104841728,3104843775,PL 3104843776,3104844799,GB 3104844800,3104846847,FR 3104846848,3104847871,AT 3104847872,3104848895,RU 3104848896,3104849919,DE 3104849920,3104850943,RU 3104850944,3104851199,GB 3104851200,3104851711,JE 3104851712,3104851967,GB 3104851968,3104852991,DE 3104852992,3104854015,AT 3104854016,3104855039,GI 3104855040,3104856063,SE 3104856064,3104857087,IL 3104857088,3104858111,SE 3104858112,3104859135,FI 3104859136,3104861183,RU 3104861184,3104862207,DE 3104862208,3104863231,AT 3104863232,3104864255,RU 3104864256,3104865279,ES 3104865280,3104866303,UA 3104866304,3104867327,PL 3104867328,3104868351,IT 3104868352,3104869375,RU 3104869376,3104870399,DK 3104870400,3104871423,PL 3104871424,3104872447,CY 3104872448,3104873471,GB 3104873472,3104874495,DK 3104874496,3104875519,GB 3104875520,3104876543,GR 3104876544,3104877567,FI 3104877568,3104878591,CH 3104878592,3104879615,RU 3104879616,3104880639,CZ 3104880640,3104881663,DE 3104881664,3104882687,AT 3104882688,3104883711,MT 3104883712,3104884735,DE 3104884736,3104885759,SE 3104885760,3104886783,GB 3104886784,3104887807,ES 3104887808,3104888831,RU 3104888832,3104889855,US 3104889856,3104890879,FR 3104890880,3104891903,GB 3104891904,3104892927,UA 3104892928,3104893951,IR 3104893952,3104894975,TR 3104894976,3104895999,BE 3104896000,3104897023,RU 3104897024,3104898047,ES 3104898048,3104899071,FR 3104899072,3104900095,RU 3104900096,3104901119,DE 3104901120,3104902143,RU 3104902144,3104903167,AT 3104903168,3104904191,RU 3104904192,3104905215,IT 3104905216,3104906239,GB 3104906240,3104907263,RU 3104907264,3104908287,DE 3104908288,3104909311,RU 3104909312,3104910335,PL 3104910336,3104911359,DK 3104911360,3104912383,IT 3104912384,3104913407,DK 3104913408,3104914431,FR 3104914432,3104915455,NL 3104915456,3104916479,RU 3104916480,3104917503,CH 3104917504,3104918527,NL 3104918528,3104919551,RU 3104919552,3104920575,NL 3104920576,3104922623,RU 3104922624,3104923647,NO 3104924672,3104925695,CZ 3104925696,3104926719,IT 3104926720,3104927743,FR 3104927744,3104928767,TR 3104928768,3104929791,CZ 3104929792,3104930815,RU 3104930816,3104931839,UA 3104931840,3104933887,RU 3104933888,3104934911,TR 3104934912,3104935935,RU 3104935936,3104936959,DE 3104936960,3104937983,GB 3104937984,3104939007,RU 3104939008,3104940031,IT 3104940032,3104941055,PL 3104941056,3104942079,GB 3104942080,3104943103,RU 3104943104,3104944127,GB 3104944128,3104945151,CH 3104945152,3104946175,GB 3104946176,3104947199,NL 3104947200,3104948223,RS 3104948224,3104949247,DK 3104949248,3104950271,GB 3104950272,3104951295,RU 3104951296,3104952319,DE 3104952320,3104953343,CH 3104953344,3104954367,CZ 3104954368,3104955391,DK 3104955392,3104956415,VA 3104956416,3104957439,MD 3104957440,3104958463,PT 3104958464,3104959487,PS 3104959488,3104961535,FR 3104961536,3104962559,DE 3104962560,3104963583,FR 3104963584,3104964607,GB 3104964608,3104965631,DK 3104965632,3104966655,RU 3104966656,3104967679,NL 3104967680,3104968703,RS 3104968704,3104969727,ES 3104969728,3104970751,RU 3104970752,3104971775,IT 3104971776,3104972799,CZ 3104972800,3104973823,GB 3104973824,3104974847,DE 3104974848,3104975871,AL 3104975872,3104976895,RU 3104976896,3104977919,GB 3104977920,3104978943,DE 3104978944,3104979967,BG 3104979968,3104980991,HR 3104980992,3104982015,SK 3104982016,3104983039,PL 3104983040,3104984063,AM 3104984064,3104985087,FI 3104985088,3104986111,FR 3104986112,3104987135,SE 3104987136,3104988159,RU 3104988160,3104989183,DE 3104989184,3104990207,FR 3104990208,3104991231,DE 3104991232,3104992255,BE 3104992256,3104995327,RU 3104995328,3104996351,GB 3104996352,3104997375,RU 3104997376,3104998399,DE 3104998400,3104999423,PL 3104999424,3105000447,GB 3105000448,3105001471,PL 3105001472,3105002495,GB 3105002496,3105003519,BE 3105003520,3105004543,BA 3105004544,3105005567,PT 3105005568,3105006591,EE 3105006592,3105007615,SE 3105007616,3105008639,FR 3105008640,3105009663,CH 3105009664,3105010687,PL 3105010688,3105011711,AT 3105011712,3105012229,CY 3105012230,3105012230,US 3105012231,3105012231,CY 3105012232,3105012235,US 3105012236,3105012257,CY 3105012258,3105012258,US 3105012259,3105012259,CY 3105012260,3105012267,US 3105012268,3105012485,CY 3105012486,3105012486,GB 3105012487,3105012487,CY 3105012488,3105012491,GB 3105012492,3105012543,CY 3105012544,3105012557,DE 3105012558,3105012559,US 3105012560,3105012560,CY 3105012561,3105012563,DE 3105012564,3105012735,CY 3105012736,3105013759,GL 3105013760,3105014783,SE 3105014784,3105015807,ES 3105015808,3105016831,RU 3105016832,3105017855,IL 3105017856,3105018879,FR 3105018880,3105019903,IR 3105019904,3105020927,GB 3105020928,3105021439,NL 3105021440,3105021951,IN 3105021952,3105022975,RO 3105022976,3105023999,BG 3105024000,3105025023,IT 3105025024,3105026047,NL 3105026048,3105027071,IT 3105027072,3105028095,AZ 3105028096,3105029119,ES 3105029120,3105030143,KZ 3105030144,3105031167,CZ 3105031168,3105032191,UA 3105032192,3105033215,DE 3105033216,3105035263,GB 3105035264,3105036287,RU 3105036288,3105037311,ES 3105037312,3105038335,CH 3105038336,3105040383,DE 3105040384,3105041407,GB 3105041408,3105042431,GR 3105042432,3105043455,FR 3105043456,3105044479,DE 3105044480,3105045503,NL 3105045504,3105046527,DE 3105046528,3105047551,NO 3105047552,3105048575,ES 3105048576,3105049599,SK 3105049600,3105050623,KW 3105050624,3105051647,TR 3105051648,3105052671,CH 3105052672,3105053695,GB 3105053696,3105054719,TR 3105054720,3105055743,GE 3105055744,3105056767,NL 3105056768,3105057791,SC 3105057792,3105058815,GB 3105058816,3105059839,JO 3105059840,3105060863,PL 3105060864,3105061887,CH 3105061888,3105062911,SY 3105062912,3105063935,IT 3105063936,3105064959,DK 3105064960,3105065983,FR 3105065984,3105067007,IT 3105067008,3105069055,GB 3105069056,3105070079,TR 3105070080,3105071103,ES 3105071104,3105072127,FR 3105072128,3105073151,IT 3105073152,3105074175,RU 3105074176,3105075199,DE 3105075200,3105076223,RU 3105076224,3105077247,BE 3105077248,3105078271,IT 3105078272,3105079295,ES 3105079296,3105080319,KZ 3105080320,3105081343,DE 3105081344,3105082367,GB 3105082368,3105083391,RU 3105083392,3105084415,GB 3105084416,3105085439,NZ 3105085440,3105086463,DE 3105086464,3105087487,PS 3105087488,3105088511,FR 3105088512,3105089535,JO 3105089536,3105090559,DE 3105090560,3105091583,NL 3105091584,3105092607,FR 3105092608,3105093631,UA 3105093632,3105095679,SE 3105095680,3105097727,GB 3105097728,3105098751,FR 3105098752,3105099775,SE 3105099776,3105100799,FR 3105100800,3105101823,PL 3105101824,3105102847,IQ 3105102848,3105103871,HR 3105103872,3105104895,GB 3105104896,3105105919,CY 3105105920,3105106943,FR 3105106944,3105107967,RU 3105107968,3105110015,GB 3105110016,3105111039,EE 3105111040,3105112063,GB 3105112064,3105114111,IT 3105114112,3105115135,SA 3105115136,3105117183,RU 3105117184,3105118207,FR 3105118208,3105119231,BG 3105119232,3105120255,IM 3105120256,3105121279,GB 3105121280,3105122303,EE 3105122304,3105123327,NO 3105123328,3105124351,ES 3105124352,3105125375,BY 3105125376,3105126399,ES 3105126400,3105127423,KG 3105127424,3105128447,KZ 3105128448,3105129471,GB 3105129472,3105130495,RU 3105130496,3105131519,FI 3105131520,3105132543,DK 3105132544,3105133567,CH 3105133568,3105134591,PL 3105134592,3105135615,SA 3105135616,3105136639,BG 3105136640,3105137663,IR 3105137664,3105138687,GB 3105138688,3105139711,NO 3105139712,3105140735,PL 3105140736,3105142783,RU 3105142784,3105143807,UA 3105143808,3105144831,DE 3105144832,3105145855,ES 3105145856,3105146879,CZ 3105146880,3105147903,CH 3105147904,3105148927,DK 3105148928,3105149951,CH 3105149952,3105150975,CY 3105150976,3105151999,UA 3105152000,3105153023,NL 3105153024,3105154047,RU 3105154048,3105156095,DE 3105156096,3105157119,AT 3105157120,3105158143,DK 3105158144,3105159167,NO 3105159168,3105161215,GB 3105161216,3105162239,FI 3105162240,3105163263,TR 3105163264,3105164287,IL 3105164288,3105165311,GB 3105165312,3105166335,IS 3105166336,3105167359,GB 3105167360,3105168383,IT 3105168384,3105169407,DE 3105169408,3105170431,ES 3105170432,3105171455,PL 3105171456,3105172479,DK 3105172480,3105173503,ES 3105173504,3105174527,FR 3105174528,3105177599,NL 3105177600,3105178623,RU 3105178624,3105179647,IR 3105179648,3105180671,IT 3105180672,3105181695,IR 3105181696,3105182719,FR 3105182720,3105183743,PL 3105183744,3105184767,SE 3105184768,3105185791,RO 3105185792,3105186815,HR 3105186816,3105187839,DE 3105187840,3105188863,FR 3105188864,3105189887,GB 3105189888,3105190911,FR 3105190912,3105191935,SM 3105191936,3105192959,PS 3105192960,3105193983,DE 3105193984,3105195007,FR 3105195008,3105196031,GB 3105196032,3105197055,IQ 3105197056,3105198079,RU 3105198080,3105199103,SE 3105199104,3105200127,PL 3105200128,3105201151,FR 3105201152,3105202175,RU 3105202176,3105203199,CZ 3105203200,3105204223,DE 3105204224,3105205247,NL 3105205248,3105206271,IT 3105206272,3105207295,UA 3105207296,3105208319,RO 3105208320,3105210367,NL 3105210368,3105211391,FR 3105211392,3105212415,CZ 3105212416,3105213439,NL 3105213440,3105214463,TR 3105214464,3105215487,GB 3105215488,3105216511,GP 3105216512,3105217535,GB 3105217536,3105218559,CZ 3105218560,3105219583,DE 3105219584,3105220607,FR 3105220608,3105221631,DK 3105221632,3105222655,AT 3105222656,3105223679,NL 3105223680,3105224703,DE 3105224704,3105225727,IT 3105225728,3105226751,AM 3105226752,3105227775,RO 3105227776,3105228799,NL 3105228800,3105229823,PL 3105229824,3105230847,NL 3105230848,3105231871,UA 3105231872,3105232895,AT 3105232896,3105233919,RU 3105233920,3105234943,IR 3105234944,3105235967,LB 3105235968,3105236991,IT 3105236992,3105238015,GB 3105238016,3105239039,DE 3105239040,3105240063,FR 3105240064,3105241087,CH 3105241088,3105242111,TR 3105242112,3105243135,RU 3105243136,3105244159,KZ 3105244160,3105245183,DE 3105245184,3105246207,DK 3105246208,3105248255,GB 3105248256,3105249279,IT 3105249280,3105250303,RS 3105250304,3105251327,ES 3105251328,3105252351,CZ 3105252352,3105253375,TR 3105253376,3105254399,CH 3105254400,3105255423,FR 3105255424,3105256447,PL 3105256448,3105257471,FR 3105257472,3105258495,NO 3105258496,3105259519,CZ 3105259520,3105260543,FR 3105260544,3105261567,FI 3105261568,3105262591,PL 3105262592,3105263615,DE 3105263616,3105264639,RS 3105264640,3105265663,DE 3105265664,3105266687,RU 3105266688,3105267711,IE 3105267712,3105268735,TR 3105268736,3105269759,GB 3105269760,3105270783,FR 3105270784,3105271807,RU 3105271808,3105272831,SK 3105272832,3105273855,RU 3105273856,3105274879,TR 3105274880,3105276927,NL 3105276928,3105277951,FR 3105277952,3105278975,ES 3105278976,3105279999,RU 3105280000,3105281023,GB 3105281024,3105282047,SK 3105282048,3105283071,FR 3105283072,3105284095,DE 3105284096,3105285119,GB 3105285120,3105286143,IT 3105286144,3105287167,RU 3105287168,3105288191,CZ 3105288192,3105289215,GB 3105289216,3105290239,AT 3105290240,3105291263,TR 3105291264,3105292287,CH 3105292288,3105293311,AT 3105293312,3105294335,GB 3105294336,3105295359,RU 3105295360,3105296383,PL 3105296384,3105297407,LT 3105297408,3105298431,PL 3105298432,3105299455,NL 3105299456,3105300479,IT 3105300480,3105301503,RU 3105301504,3105302527,ES 3105302528,3105302783,GB 3105302784,3105303551,FR 3105303552,3105304575,IE 3105304576,3105305599,GE 3105305600,3105308671,GB 3105308672,3105309695,RU 3105309696,3105310719,ES 3105310720,3105311743,TR 3105311744,3105312767,SA 3105312768,3105313791,RU 3105313792,3105314815,IT 3105314816,3105315839,GR 3105315840,3105317887,FR 3105317888,3105318911,GB 3105318912,3105319935,UA 3105319936,3105320959,HU 3105320960,3105321983,SK 3105321984,3105323007,GB 3105323008,3105324031,ES 3105324032,3105325055,SA 3105325056,3105326079,IR 3105326080,3105328127,FR 3105328128,3105329151,NL 3105329152,3105330175,NO 3105330176,3105331199,PL 3105331200,3105332223,IQ 3105332224,3105333247,DE 3105333248,3105334271,LV 3105334272,3105335295,UA 3105335296,3105336319,GR 3105336320,3105337343,IL 3105337344,3105339391,GB 3105339392,3105340415,SY 3105340416,3105341439,FR 3105341440,3105342463,ES 3105342464,3105343487,AE 3105343488,3105344511,TJ 3105344512,3105345535,NO 3105345536,3105346559,DE 3105346560,3105347583,NL 3105347584,3105348607,DK 3105348608,3105349631,ES 3105349632,3105350655,DE 3105350656,3105351679,RU 3105351680,3105352703,GB 3105352704,3105354751,DE 3105354752,3105355775,BE 3105355776,3105356799,NL 3105356800,3105357823,GB 3105357824,3105358847,IS 3105358848,3105359871,ES 3105359872,3105360895,CZ 3105360896,3105361919,GB 3105361920,3105362943,FR 3105362944,3105363967,CZ 3105363968,3105364991,PL 3105364992,3105366015,FR 3105366016,3105367039,AL 3105367040,3105368063,SI 3105368064,3105370111,RU 3105370112,3105371135,NL 3105371136,3105373183,RU 3105373184,3105374207,SY 3105374208,3105375231,GB 3105375232,3105376255,DE 3105376256,3105377279,GB 3105377280,3105378303,IL 3105378304,3105380351,GB 3105380352,3105381375,PL 3105381376,3105382399,RU 3105382400,3105383423,GB 3105383424,3105383679,BY 3105383680,3105383935,SK 3105383936,3105384447,AT 3105384448,3105385471,IT 3105385472,3105387519,RU 3105387520,3105388543,IT 3105388544,3105389567,GB 3105389568,3105390591,TR 3105390592,3105391615,JO 3105391616,3105392639,NL 3105392640,3105393663,IR 3105393664,3105395711,FR 3105395712,3105396735,IR 3105396736,3105398783,FR 3105398784,3105399807,GB 3105399808,3105400831,PL 3105400832,3105401855,DK 3105401856,3105402879,NL 3105402880,3105404927,RU 3105404928,3105405951,FR 3105405952,3105406975,NO 3105406976,3105407999,FR 3105408000,3105410047,PL 3105410048,3105411071,IL 3105411072,3105412095,BA 3105412096,3105413119,RU 3105413120,3105414143,PL 3105414144,3105416191,NL 3105416192,3105417215,IR 3105417216,3105418239,IE 3105418240,3105419263,CZ 3105419264,3105420287,NL 3105420288,3105421311,RU 3105421312,3105422335,NL 3105422336,3105423359,IR 3105423360,3105423487,VN 3105423488,3105423615,NO 3105423616,3105423871,FI 3105423872,3105424127,RU 3105424128,3105424383,IL 3105424384,3105426431,RU 3105426432,3105427455,QA 3105427456,3105428479,RU 3105428480,3105429503,GR 3105429504,3105430527,ES 3105430528,3105431551,CH 3105431552,3105432575,GB 3105432576,3105433599,DE 3105433600,3105434623,FR 3105434624,3105435647,SE 3105435648,3105436671,LT 3105436672,3105437695,GR 3105437696,3105438719,GB 3105438720,3105439743,RU 3105439744,3105440767,GB 3105440768,3105441791,RU 3105441792,3105442815,IT 3105442816,3105443839,FI 3105443840,3105444863,NL 3105444864,3105445119,GB 3105445120,3105445631,US 3105445632,3105445887,GB 3105445888,3105446911,RU 3105446912,3105447935,CH 3105447936,3105448959,DE 3105448960,3105449983,TR 3105449984,3105451007,AE 3105451008,3105452031,PL 3105452032,3105453055,ES 3105453056,3105454079,UA 3105454080,3105455103,PL 3105455104,3105456127,AT 3105456128,3105457151,IT 3105457152,3105458175,DE 3105458176,3105459199,IT 3105459200,3105460223,DK 3105460224,3105461247,GB 3105461248,3105462271,PL 3105462272,3105463295,RU 3105463296,3105464319,FR 3105464320,3105465343,BE 3105465344,3105466367,DE 3105466368,3105467391,BE 3105467392,3105468415,GB 3105468416,3105469439,RU 3105469440,3105469951,SE 3105469952,3105470207,AT 3105470208,3105470463,AE 3105470464,3105471487,CZ 3105471488,3105472511,GB 3105472512,3105473535,CH 3105473536,3105474559,ES 3105474560,3105475583,FI 3105475584,3105476607,IT 3105476608,3105477631,GB 3105477632,3105478655,DK 3105478656,3105479679,PL 3105479680,3105480703,GB 3105480704,3105481727,CH 3105481728,3105482751,NL 3105482752,3105483775,IT 3105483776,3105486847,GB 3105486848,3105487871,SK 3105487872,3105488895,IS 3105488896,3105489407,BG 3105489408,3105489663,FR 3105489664,3105489919,BG 3105489920,3105490943,ES 3105490944,3105491967,SE 3105491968,3105494015,GB 3105494016,3105495039,BE 3105495040,3105496063,AE 3105496064,3105497087,RU 3105497088,3105498111,IR 3105498112,3105499135,DE 3105499136,3105501183,RU 3105501184,3105502207,FI 3105502208,3105503231,RU 3105503232,3105504255,NL 3105504256,3105505279,DK 3105505280,3105506303,IT 3105506304,3105507327,TR 3105507328,3105508351,RU 3105508352,3105510399,DE 3105510400,3105511423,SA 3105511424,3105512447,FR 3105512448,3105513471,GB 3105513472,3105514495,DE 3105514496,3105515519,RU 3105515520,3105516543,FR 3105516544,3105517567,NL 3105517568,3105518591,RU 3105518592,3105519615,RS 3105519616,3105520639,RU 3105520640,3105521151,LU 3105521152,3105521663,FR 3105521664,3105522687,NO 3105522688,3105523711,LT 3105523712,3105524735,ES 3105524736,3105525759,IT 3105525760,3105526783,TR 3105526784,3105527807,GB 3105527808,3105528831,JE 3105528832,3105529855,DE 3105529856,3105530879,LU 3105530880,3105531903,NO 3105531904,3105532927,RU 3105532928,3105533951,RS 3105533952,3105534975,BA 3105534976,3105535794,NO 3105535795,3105535795,RU 3105535796,3105535999,NO 3105536000,3105537023,AZ 3105537024,3105538047,AT 3105538048,3105539071,RU 3105539072,3105540095,IT 3105540096,3105541119,DE 3105541120,3105542143,RU 3105542144,3105543167,IR 3105543168,3105544191,NL 3105544192,3105545215,RU 3105545216,3105546239,FR 3105546240,3105547263,ES 3105547264,3105548287,GB 3105548288,3105549311,IR 3105549312,3105549823,AT 3105549824,3105550079,NL 3105550080,3105550335,FR 3105550336,3105551359,GB 3105551360,3105552383,US 3105552384,3105553407,FR 3105553408,3105554431,DE 3105554432,3105555455,DK 3105555456,3105556479,CH 3105556480,3105557503,DE 3105557504,3105558527,UA 3105558528,3105559551,NL 3105559552,3105560575,GB 3105560576,3105561599,NO 3105561600,3105563647,NL 3105563648,3105564671,IS 3105564672,3105565695,NL 3105565696,3105567743,RU 3105567744,3105568767,PL 3105568768,3105569791,MT 3105569792,3105570815,HU 3105570816,3105571839,LI 3105571840,3105572863,KZ 3105572864,3105573887,IT 3105573888,3105574911,FR 3105574912,3105575935,RU 3105575936,3105576959,DE 3105576960,3105577983,OM 3105577984,3105579007,LV 3105579008,3105580031,SE 3105580032,3105581055,RU 3105581056,3105582079,IL 3105582080,3105583103,CH 3105583104,3105584127,DK 3105584128,3105585151,EG 3105585152,3105586175,AT 3105586176,3105587199,ES 3105587200,3105588223,RS 3105588224,3105589247,GB 3105589248,3105590271,ES 3105590272,3105591295,NL 3105591296,3105592319,GB 3105592320,3105593343,RU 3105593344,3105595391,DE 3105595392,3105596415,RU 3105596416,3105598463,SE 3105598464,3105599487,NL 3105599488,3105600511,GB 3105600512,3105601535,DE 3105601536,3105602559,CH 3105602560,3105603583,PL 3105603584,3105604607,RU 3105604608,3105605631,GB 3105605632,3105606655,ES 3105606656,3105607679,DK 3105607680,3105608703,RU 3105608704,3105609727,DE 3105609728,3105610751,IQ 3105610752,3105611775,SA 3105611776,3105612799,FR 3105612800,3105613823,US 3105613824,3105614847,SE 3105614848,3105615871,NL 3105615872,3105616895,SE 3105616896,3105617919,GB 3105617920,3105618943,NL 3105618944,3105619967,DE 3105619968,3105620991,TR 3105620992,3105622015,DE 3105622016,3105623039,SI 3105623040,3105624063,GB 3105624064,3105625087,PL 3105625088,3105626111,US 3105626112,3105629183,GB 3105629184,3105629695,BE 3105629696,3105629951,NL 3105629952,3105630207,BE 3105630208,3105631231,FR 3105631232,3105632255,GB 3105632256,3105633279,ES 3105633280,3105634303,IT 3105634304,3105635327,NL 3105635328,3105636351,TR 3105636352,3105637375,IT 3105637376,3105637631,NL 3105637632,3105637887,DE 3105637888,3105638399,US 3105638400,3105639423,IM 3105639424,3105640447,DE 3105640448,3105641471,IT 3105641472,3105642495,NL 3105642496,3105644543,GB 3105644544,3105645567,DE 3105645568,3105646335,CZ 3105646336,3105646591,SK 3105646592,3105647615,MD 3105647616,3105648639,UA 3105648640,3105649663,GB 3105649664,3105650687,PL 3105650688,3105651199,EE 3105651200,3105651455,PL 3105651456,3105651711,EE 3105651712,3105652735,SK 3105652736,3105653759,NO 3105653760,3105654783,TR 3105654784,3105655807,SE 3105655808,3105656831,ES 3105656832,3105657855,SK 3105657856,3105658879,NL 3105658880,3105659903,IL 3105659904,3105660927,DE 3105660928,3105661951,TR 3105661952,3105662975,GB 3105662976,3105663999,ES 3105664000,3105665023,DE 3105665024,3105666047,PL 3105666048,3105667071,NL 3105667072,3105668095,DE 3105668096,3105668131,US 3105668132,3105668159,NL 3105668160,3105668191,US 3105668192,3105668351,NL 3105668352,3105668772,US 3105668773,3105668773,NL 3105668774,3105668863,US 3105668864,3105668879,NL 3105668880,3105669119,US 3105669120,3105670143,CZ 3105670144,3105671167,IE 3105671168,3105673215,GB 3105673216,3105674239,DE 3105674240,3105675263,GB 3105675264,3105676287,ES 3105676288,3105678335,NL 3105678336,3105679359,DE 3105679360,3105680383,FR 3105680384,3105681407,UA 3105681408,3105682431,GB 3105682432,3105683455,FI 3105683456,3105684479,PL 3105684480,3105686527,GB 3105686528,3105687551,BE 3105687552,3105688063,SE 3105688064,3105688575,LV 3105688576,3105689599,PL 3105689600,3105690623,SI 3105690624,3105691647,SE 3105691648,3105692671,GR 3105692672,3105693695,DE 3105693696,3105696767,FR 3105696768,3105697791,GB 3105697792,3105698815,FR 3105698816,3105700863,RU 3105700864,3105701887,BE 3105701888,3105702911,FR 3105702912,3105703935,ES 3105703936,3105704959,IT 3105704960,3105705983,DK 3105705984,3105707007,HU 3105707008,3105708031,PL 3105708032,3105709055,AT 3105709056,3105710079,SA 3105710080,3105711103,IT 3105711104,3105712127,RS 3105712128,3105713151,IT 3105713152,3105714175,NL 3105714176,3105715199,SE 3105715200,3105716223,DE 3105716224,3105717247,TR 3105717248,3105719295,RU 3105719296,3105721343,GB 3105721344,3105722367,BA 3105722368,3105723391,IT 3105723392,3105724415,FR 3105724416,3105725439,CH 3105725440,3105726463,SK 3105726464,3105727487,IT 3105727488,3105727743,NO 3105727744,3105727999,BE 3105728000,3105728127,AT 3105728128,3105728191,FI 3105728192,3105728255,PT 3105728256,3105728319,TR 3105728320,3105728383,PL 3105728384,3105728447,CZ 3105728448,3105728511,LT 3105728512,3105729535,DE 3105729536,3105731583,GB 3105731584,3105732607,FR 3105732608,3105733631,KG 3105733632,3105734655,DE 3105734656,3105735679,TR 3105735680,3105736703,IS 3105736704,3105737727,NL 3105737728,3105738751,IT 3105738752,3105739775,GB 3105739776,3105740799,ES 3105740800,3105741823,DE 3105741824,3105742847,IR 3105742848,3105744895,GB 3105744896,3105745919,FR 3105745920,3105746943,UA 3105746944,3105747967,DE 3105747968,3105748991,FR 3105748992,3105750015,IT 3105750016,3105751039,UA 3105751040,3105752063,RU 3105752064,3105753087,IR 3105753088,3105754111,GB 3105754112,3105756159,RU 3105756160,3105757183,US 3105757184,3105758207,GB 3105758208,3105759231,FR 3105759232,3105760255,DE 3105760256,3105761279,LB 3105761280,3105762303,RU 3105762304,3105763327,IT 3105763328,3105764351,FR 3105764352,3105765375,BE 3105765376,3105766399,NL 3105766400,3105769471,IT 3105769472,3105770495,IE 3105770496,3105771519,IR 3105771520,3105772543,IT 3105772544,3105773567,UA 3105773568,3105774591,AZ 3105774592,3105775615,FR 3105775616,3105776639,RU 3105776640,3105777663,DK 3105777664,3105778687,RU 3105778688,3105780735,IT 3105780736,3105781759,RU 3105781760,3105782783,SK 3105782784,3105783807,PL 3105783808,3105785855,FR 3105785856,3105786879,SI 3105786880,3105787903,ES 3105787904,3105788927,AL 3105788928,3105789951,SA 3105789952,3105790975,SE 3105790976,3105791999,DE 3105792000,3105793023,DK 3105793024,3105794047,NL 3105794048,3105795071,GB 3105795072,3105796095,LU 3105796096,3105797119,NL 3105797120,3105798143,IT 3105798144,3105799167,IS 3105799168,3105800191,IT 3105800192,3105801215,RU 3105801216,3105802239,ES 3105802240,3105803263,UA 3105803264,3105804287,NL 3105804288,3105805311,FR 3105805312,3105806335,GB 3105806336,3105807359,FR 3105807360,3105808383,RU 3105808384,3105809407,NO 3105809408,3105810431,RU 3105810432,3105811455,FR 3105811456,3105812479,NL 3105812480,3105814527,ES 3105814528,3105815551,JO 3105815552,3105816575,BE 3105816576,3105817599,FR 3105817600,3105818623,DE 3105818624,3105819647,NL 3105819648,3105820671,GB 3105821696,3105822719,ES 3105822720,3105823743,PL 3105823744,3105824767,AT 3105824768,3105825791,RS 3105825792,3105826815,CZ 3105826816,3105827839,FR 3105827840,3105828863,LV 3105828864,3105829887,PL 3105829888,3105830911,AT 3105830912,3105831167,IT 3105831168,3105831423,US 3105831424,3105831679,IT 3105831680,3105831935,BR 3105831936,3105832959,DE 3105832960,3105833983,IT 3105833984,3105835007,FI 3105835008,3105836031,KZ 3105836032,3105837055,DK 3105837056,3105838079,PL 3105838080,3105839103,UA 3105839104,3105840127,PL 3105840128,3105841151,EE 3105841152,3105842175,IE 3105842176,3105843199,CH 3105843200,3105844223,ES 3105844224,3105847295,RU 3105847296,3105848319,BG 3105848320,3105849343,IR 3105849344,3105850367,US 3105850368,3105851391,RU 3105851392,3105852415,FI 3105852416,3105853439,SE 3105853440,3105854463,NL 3105854464,3105855487,FR 3105855488,3105856511,GB 3105856512,3105857535,PT 3105857536,3105859583,RU 3105859584,3105860607,GB 3105860608,3105861631,NL 3105861632,3105862655,DK 3105862656,3105863679,CH 3105863680,3105864703,PL 3105864704,3105865727,AE 3105865728,3105866239,NL 3105866240,3105866751,RU 3105866752,3105867775,SE 3105867776,3105868799,NL 3105868800,3105869823,GB 3105869824,3105870847,DE 3105870848,3105871871,AT 3105871872,3105872895,PL 3105872896,3105873919,IM 3105873920,3105874943,GB 3105874944,3105875967,NL 3105875968,3105876991,GB 3105876992,3105878015,ES 3105878016,3105879039,EE 3105879040,3105880063,NL 3105880064,3105881087,CH 3105881088,3105882111,GB 3105882112,3105883135,MD 3105883136,3105884159,PL 3105884160,3105885183,SE 3105885184,3105886207,TR 3105886208,3105887231,ES 3105887232,3105888255,AL 3105888256,3105889279,RO 3105889280,3105890303,ES 3105890304,3105891327,DE 3105891328,3105892351,PT 3105892352,3105893375,GB 3105893376,3105894399,AZ 3105894400,3105895423,PL 3105895424,3105896447,GB 3105896448,3105897471,RU 3105897472,3105898495,UA 3105898496,3105898751,CZ 3105898752,3105899263,RU 3105899264,3105899519,CZ 3105899520,3105900543,RU 3105900544,3105901567,GB 3105901568,3105901823,US 3105901824,3105902591,GB 3105902592,3105903615,DE 3105903616,3105904639,RU 3105904640,3105905663,NO 3105905664,3105906687,IE 3105906688,3105908735,FR 3105908736,3105910783,GB 3105910784,3105911807,IL 3105911808,3105912831,DE 3105912832,3105913855,RU 3105913856,3105914879,CH 3105914880,3105915903,IR 3105915904,3105916927,RU 3105916928,3105917951,ES 3105917952,3105918975,NL 3105918976,3105919999,PL 3105920000,3105921023,IQ 3105921024,3105922047,IE 3105922048,3105923071,PL 3105923072,3105924095,CZ 3105924096,3105925119,RU 3105925120,3105926143,BE 3105926144,3105927167,BA 3105927168,3105928191,IL 3105928192,3105928447,ES 3105928448,3105929215,CZ 3105929216,3105930239,RU 3105930240,3105931263,PT 3105932288,3105933311,SE 3105933312,3105933351,GB 3105933352,3105933359,IT 3105933360,3105934215,GB 3105934216,3105934223,IT 3105934224,3105934231,GB 3105934232,3105934239,IT 3105934240,3105934327,GB 3105934328,3105934335,IT 3105934336,3105935359,SE 3105935360,3105936383,FR 3105936384,3105937407,CH 3105937408,3105938431,FR 3105938432,3105939455,CH 3105939456,3105940479,BY 3105940480,3105941503,GR 3105941504,3105942527,NL 3105942528,3105943039,LU 3105943040,3105943295,BE 3105943296,3105943551,LU 3105943552,3105944575,NL 3105944576,3105945599,DE 3105945600,3105946623,RU 3105946624,3105947647,IE 3105947648,3105948671,AD 3105948672,3105949695,GB 3105949696,3105950719,AT 3105950720,3105951743,FR 3105951744,3105952767,LU 3105952768,3105953791,CH 3105953792,3105954815,FR 3105954816,3105955839,JO 3105955840,3105956863,AL 3105956864,3105957887,PL 3105957888,3105958911,FR 3105958912,3105959935,IQ 3105959936,3105960959,SI 3105960960,3105961983,HU 3105961984,3105963007,IT 3105963008,3105964031,TR 3105964032,3105965055,ES 3105965056,3105966079,NL 3105966080,3105967103,FI 3105967104,3105968127,GB 3105968128,3105969151,HU 3105969152,3105969663,GB 3105969664,3105969695,DE 3105969696,3105970175,GB 3105970176,3105971199,FR 3105971200,3105972223,GB 3105972224,3105973247,FI 3105973248,3105974271,US 3105974272,3105975295,MD 3105975296,3105976319,TR 3105976320,3105977343,LB 3105977344,3105978367,NL 3105978368,3105979391,RU 3105979392,3105980415,KW 3105980416,3105981439,TR 3105981440,3105982463,ES 3105982464,3105983487,CZ 3105983488,3105984511,UA 3105984512,3105985279,CZ 3105985280,3105985535,HU 3105985536,3105986559,GB 3105986560,3105987583,NL 3105987584,3105988607,CZ 3105988608,3105989631,RU 3105989632,3105990655,NL 3105990656,3105990911,PS 3105990912,3105991679,US 3105991680,3105992703,SA 3105992704,3105993727,BH 3105993728,3105994751,DE 3105994752,3105995775,GB 3105995776,3105996799,DE 3105996800,3105997823,GB 3105997824,3105999871,RU 3105999872,3106000895,DE 3106000896,3106001919,GB 3106001920,3106002943,FR 3106002944,3106003967,DE 3106003968,3106004991,NL 3106004992,3106006015,CH 3106006016,3106007039,RU 3106007040,3106008063,CY 3106008064,3106009087,RU 3106009088,3106010111,GB 3106010112,3106011135,RU 3106011136,3106012159,CH 3106012160,3106013183,AT 3106013184,3106014207,DE 3106014208,3106015231,NO 3106015232,3106016255,GB 3106016256,3106017279,DK 3106017280,3106018303,IQ 3106018304,3106019327,RU 3106019328,3106020351,LV 3106020352,3106021375,PL 3106021376,3106022399,FR 3106022400,3106023423,IT 3106023424,3106023679,NL 3106023680,3106023807,US 3106023808,3106023935,AE 3106023936,3106024319,US 3106024320,3106024447,DE 3106024448,3106025471,GB 3106025472,3106026495,PL 3106026496,3106027519,NL 3106027520,3106027535,PL 3106027536,3106027551,FR 3106027552,3106027567,CH 3106027568,3106027583,DE 3106027584,3106027599,CZ 3106027600,3106027615,IT 3106027616,3106027631,NL 3106027632,3106029567,GB 3106029568,3106031615,NL 3106031616,3106032639,AZ 3106032640,3106033663,PL 3106033664,3106034687,GB 3106034688,3106035711,IT 3106035712,3106036735,DE 3106036736,3106037759,RS 3106037760,3106038783,GB 3106038784,3106039807,AZ 3106039808,3106041855,IE 3106041856,3106042879,DE 3106042880,3106043903,GB 3106043904,3106044927,IE 3106044928,3106045951,GB 3106045952,3106046975,TR 3106046976,3106047999,DK 3106048000,3106049023,IT 3106049024,3106050047,FR 3106050048,3106051071,NL 3106051072,3106052095,LI 3106052096,3106053119,RU 3106053120,3106054143,NL 3106054144,3106055167,IR 3106055168,3106056191,GB 3106056192,3106057215,NL 3106057216,3106058239,GB 3106058240,3106059263,NL 3106059264,3106060287,RU 3106060288,3106061311,DE 3106061312,3106062335,NL 3106062336,3106063359,ES 3106063360,3106064383,DE 3106064384,3106065407,NL 3106065408,3106066431,IT 3106066432,3106067455,GB 3106067456,3106068479,DE 3106068480,3106070527,NL 3106070528,3106071551,UA 3106071552,3106072063,BH 3106072064,3106072319,US 3106072320,3106072575,BH 3106072576,3106073599,GB 3106073600,3106074623,PL 3106074624,3106076671,RU 3106076672,3106078719,GB 3106078720,3106080767,RU 3106080768,3106081791,UA 3106081792,3106082815,DE 3106082816,3106083839,KZ 3106083840,3106084863,TR 3106084864,3106085887,GB 3106085888,3106086911,CH 3106086912,3106087935,NL 3106087936,3106091007,RU 3106091008,3106092031,GB 3106092032,3106093055,BE 3106093056,3106094079,GB 3106094080,3106095103,CH 3106095104,3106096127,FR 3106096128,3106097151,LV 3106097152,3106098175,GB 3106098176,3106098431,NL 3106098432,3106098687,GB 3106098688,3106098943,US 3106098944,3106099199,GB 3106099200,3106100223,NO 3106100224,3106101247,SE 3106101248,3106102271,GB 3106102272,3106103295,ES 3106103296,3106104319,NL 3106104320,3106105343,UA 3106105344,3106106367,AE 3106106368,3106107391,DE 3106107392,3106108415,NL 3106108416,3106110463,RU 3106110464,3106111487,GB 3106111488,3106112511,RU 3106112512,3106113535,DE 3106113536,3106114559,NL 3106114560,3106115583,ES 3106115584,3106116607,DE 3106116608,3106117631,GB 3106117632,3106118655,AT 3106118656,3106119679,BA 3106119680,3106120703,RU 3106120704,3106121727,BE 3106121728,3106122751,RU 3106122752,3106123775,BE 3106123776,3106124799,BG 3106124800,3106125823,AT 3106125824,3106126847,NO 3106126848,3106127871,ES 3106127872,3106128895,RU 3106128896,3106129919,PL 3106129920,3106130175,SE 3106130176,3106130943,NO 3106130944,3106131967,FR 3106131968,3106132991,DE 3106132992,3106134015,NO 3106134016,3106135039,DE 3106135040,3106136063,RU 3106136064,3106137087,CH 3106137088,3106138111,GB 3106138112,3106139135,DE 3106139136,3106140159,SE 3106140160,3106141183,DE 3106141184,3106142207,IS 3106142208,3106143231,GB 3106143232,3106144255,CH 3106144256,3106145279,ES 3106145280,3106146303,BE 3106146304,3106147327,GB 3106147328,3106148351,FR 3106148352,3106149375,AT 3106149632,3106149887,DE 3106150400,3106151423,GB 3106151424,3106152447,NO 3106152448,3106153471,GB 3106153472,3106154495,AM 3106154496,3106155519,NL 3106155520,3106156543,DE 3106156544,3106157567,NO 3106157568,3106158591,IT 3106158592,3106159615,UA 3106159616,3106160639,RU 3106160640,3106161663,IT 3106161664,3106162687,BA 3106162688,3106163711,IT 3106163712,3106165759,GB 3106165760,3106166783,BA 3106166784,3106167807,BH 3106167808,3106168831,RO 3106168832,3106169855,FI 3106169856,3106170000,NL 3106170001,3106170001,CZ 3106170002,3106170879,NL 3106170880,3106171903,RU 3106171904,3106172927,GB 3106172928,3106173951,NL 3106173952,3106175999,DE 3106176000,3106177023,NO 3106177024,3106178047,IT 3106178048,3106179071,NL 3106179072,3106180095,DE 3106180096,3106181119,NO 3106181120,3106182143,ES 3106182144,3106183167,AX 3106183168,3106184191,PL 3106184192,3106185215,RU 3106185216,3106186239,CZ 3106186240,3106187263,BE 3106187264,3106188287,PL 3106188288,3106189311,RU 3106189312,3106190335,KW 3106190336,3106191359,LU 3106191360,3106192383,DK 3106192384,3106193407,UA 3106193408,3106194431,IR 3106194432,3106195455,UA 3106195456,3106196479,AZ 3106196480,3106198527,ES 3106198528,3106199551,NO 3106199552,3106200575,FR 3106200576,3106202623,CH 3106202624,3106203647,RU 3106203648,3106204671,GR 3106204672,3106205695,MT 3106205696,3106205951,SE 3106205952,3106206719,NO 3106206720,3106207743,GE 3106207744,3106208767,GB 3106208768,3106209791,RO 3106209792,3106210815,CH 3106210816,3106211839,NL 3106211840,3106212863,BE 3106212864,3106213887,PS 3106213888,3106214911,DE 3106214912,3106215935,NL 3106215936,3106216959,RS 3106216960,3106217983,FR 3106217984,3106219007,ME 3106219008,3106220031,US 3106220032,3106221055,FR 3106221056,3106222079,IT 3106222080,3106223103,RU 3106223104,3106224127,IR 3106224128,3106226175,RU 3106226176,3106228223,NL 3106228224,3106229247,CH 3106229248,3106230271,GB 3106230272,3106231295,IT 3106231296,3106232319,DK 3106232320,3106233343,IQ 3106233344,3106234367,IT 3106234368,3106235391,QA 3106235392,3106235647,BA 3106235648,3106235903,RU 3106235904,3106236159,RO 3106236160,3106236415,TR 3106236416,3106237439,AT 3106237440,3106238463,QA 3106238464,3106239487,PL 3106239488,3106240511,IT 3106240512,3106241535,IE 3106241536,3106242559,NL 3106242560,3106243583,RU 3106243584,3106244607,FI 3106244608,3106245631,DE 3106245632,3106245887,DK 3106245888,3106246655,SE 3106246656,3106247679,DE 3106247680,3106248703,IL 3106248704,3106249727,DE 3106249728,3106250751,FR 3106250752,3106251775,IQ 3106251776,3106252799,RU 3106252800,3106253823,RS 3106253824,3106255871,GB 3106255872,3106256895,IT 3106256896,3106257919,TR 3106257920,3106258943,RU 3106258944,3106259967,UA 3106259968,3106260991,GB 3106260992,3106262015,AT 3106262016,3106263039,IT 3106263040,3106264063,PT 3106264064,3106265087,ES 3106265088,3106266111,GB 3106266112,3106266367,FR 3106266368,3106266399,HK 3106266400,3106266431,SG 3106266432,3106266463,JP 3106266464,3106266527,US 3106266528,3106266623,FR 3106266624,3106266879,US 3106266880,3106266927,FR 3106266928,3106266943,AU 3106266944,3106266975,FR 3106266976,3106267007,US 3106267008,3106267135,JP 3106267136,3106269183,ES 3106269184,3106270207,IS 3106270208,3106271231,GB 3106271232,3106272255,SK 3106272256,3106273279,NL 3106273280,3106274303,DE 3106274304,3106275327,CH 3106275328,3106276351,FI 3106276352,3106277375,AT 3106277376,3106278399,DE 3106278400,3106279423,NL 3106279424,3106280447,RU 3106280448,3106281471,FR 3106281472,3106282495,DK 3106282496,3106283519,LB 3106283520,3106285567,GB 3106285568,3106286591,DE 3106286592,3106287615,GB 3106287616,3106289663,DE 3106289664,3106290687,LV 3106290688,3106291711,IE 3106291712,3106292735,CH 3106292736,3106293759,NO 3106293760,3106294783,UA 3106294784,3106295807,DE 3106295808,3106296831,GB 3106296832,3106297855,RU 3106297856,3106298879,NL 3106298880,3106299903,FR 3106299904,3106300927,GB 3106300928,3106301951,NL 3106301952,3106302975,GB 3106302976,3106303999,CZ 3106304000,3106305023,GB 3106305024,3106306047,DE 3106306048,3106307071,NO 3106307072,3106308095,HU 3106308096,3106309119,ES 3106309120,3106310143,GB 3106310144,3106311167,IT 3106311168,3106312191,PT 3106312192,3106313215,BA 3106313216,3106314239,GB 3106314240,3106316287,NL 3106316288,3106317311,RU 3106317312,3106318335,LT 3106318336,3106319359,AT 3106319360,3106320383,DK 3106320384,3106321407,HR 3106321408,3106322431,DK 3106322432,3106323455,ME 3106323456,3106324479,CZ 3106324480,3106325503,AL 3106325504,3106326527,FR 3106326528,3106326783,NL 3106326784,3106327039,US 3106327040,3106327295,GB 3106327296,3106327551,NL 3106327552,3106328575,RU 3106328576,3106329599,UA 3106329600,3106330623,IQ 3106330624,3106331647,UA 3106331648,3106333695,PL 3106333696,3106334719,GB 3106334720,3106335743,NL 3106335744,3106336767,NO 3106336768,3106337791,RU 3106337792,3106338815,GB 3106338816,3106339839,PL 3106339840,3106340863,IT 3106340864,3106341887,BA 3106341888,3106342911,RU 3106342912,3106343935,CH 3106343936,3106344959,DE 3106344960,3106345983,RU 3106345984,3106347007,DE 3106347008,3106348031,IT 3106348032,3106349055,UA 3106349056,3106350079,CH 3106350080,3106351103,SA 3106351104,3106352127,ES 3106352128,3106353151,NL 3106353152,3106354175,DE 3106354176,3106354316,NL 3106354317,3106354317,BE 3106354318,3106354943,NL 3106354944,3106354951,GB 3106354952,3106354959,AT 3106354960,3106355023,NL 3106355024,3106355031,GB 3106355032,3106355039,AT 3106355040,3106355051,NL 3106355052,3106355103,GB 3106355104,3106355199,NL 3106355200,3106356223,DE 3106356224,3106357247,ES 3106357248,3106358271,DE 3106358272,3106359295,ES 3106359296,3106360319,UA 3106360320,3106361343,IQ 3106361344,3106362367,RU 3106362368,3106364415,DE 3106364416,3106365439,CH 3106365440,3106366463,ES 3106366464,3106367487,IT 3106367488,3106369535,DE 3106369536,3106371583,RU 3106371584,3106372607,NL 3106372608,3106373631,SE 3106373632,3106374655,FI 3106374656,3106375679,RU 3106375680,3106376703,ES 3106376704,3106377727,FR 3106377728,3106378751,SE 3106378752,3106379775,RU 3106379776,3106380799,LU 3106380800,3106381823,FR 3106381824,3106382847,PL 3106382848,3106383871,IE 3106383872,3106384895,FR 3106384896,3106385919,AT 3106385920,3106386943,DE 3106386944,3106387967,IR 3106387968,3106388991,FI 3106388992,3106390015,IT 3106390016,3106391039,RU 3106391040,3106392063,UA 3106392064,3106393087,NO 3106393088,3106394111,RU 3106394112,3106395135,PT 3106395136,3106396159,NO 3106396160,3106397183,FR 3106397184,3106398207,DE 3106398208,3106399231,UA 3106399232,3106400255,CH 3106400256,3106402303,GB 3106402304,3106403327,IT 3106403328,3106405375,GB 3106405376,3106406399,DE 3106406400,3106408447,RU 3106408448,3106409471,GB 3106409472,3106411519,IT 3106411520,3106412543,HU 3106412544,3106413567,GB 3106413568,3106414591,RU 3106414592,3106415615,AZ 3106415616,3106416639,ES 3106416640,3106417663,RU 3106417664,3106418687,DK 3106418688,3106419711,UA 3106419712,3106420735,AT 3106420736,3106421759,NL 3106421760,3106422783,LU 3106422784,3106423807,IE 3106423808,3106424831,BE 3106424832,3106425855,TR 3106425856,3106426879,RU 3106426880,3106427903,CZ 3106427904,3106428927,TR 3106428928,3106429951,FI 3106429952,3106431999,NL 3106432000,3106433023,FR 3106433024,3106434047,RU 3106434048,3106435071,NL 3106435072,3106436095,PL 3106436096,3106437119,DE 3106437120,3106438143,IS 3106438144,3106439167,GB 3106439168,3106440191,RU 3106440192,3106441215,DE 3106441216,3106442239,HU 3106442240,3106443263,GB 3106443264,3106445311,ES 3106445312,3106446335,RU 3106446336,3106447359,AZ 3106447360,3106448383,DE 3106448384,3106449407,BG 3106449408,3106450431,AT 3106450432,3106451455,DE 3106451456,3106452479,AZ 3106453504,3106454527,SE 3106454528,3106455551,ME 3106455552,3106456575,PS 3106456576,3106457599,PL 3106457600,3106458623,FI 3106458624,3106459647,GB 3106459648,3106460671,LB 3106460672,3106461695,IT 3106461696,3106462719,CH 3106462720,3106463743,IT 3106463744,3106464767,IR 3106464768,3106465791,PL 3106465792,3106466047,FR 3106466048,3106466303,NL 3106466304,3106466559,DE 3106466560,3106466815,RO 3106466816,3106467839,EE 3106467840,3106468863,IR 3106469888,3106470911,DE 3106470912,3106471935,NL 3106471936,3106472959,IR 3106472960,3106473983,FR 3106473984,3106475007,GB 3106475008,3106476031,DE 3106476032,3106477055,NO 3106477056,3106478079,UA 3106478080,3106479103,GB 3106479104,3106480127,FR 3106480128,3106481151,IT 3106481152,3106482175,NL 3106482176,3106483199,RU 3106483200,3106483423,GB 3106483424,3106483424,ES 3106483425,3106483425,NL 3106483426,3106483426,FR 3106483427,3106483429,GB 3106483430,3106483430,IE 3106483431,3106483761,GB 3106483762,3106483762,DE 3106483763,3106483763,CZ 3106483764,3106483765,GB 3106483766,3106483766,IT 3106483767,3106483767,DE 3106483768,3106483768,CZ 3106483769,3106483769,BE 3106483770,3106483770,PL 3106483771,3106483771,FR 3106483772,3106483772,IE 3106483773,3106483773,IT 3106483774,3106483774,PL 3106483775,3106483775,IE 3106483776,3106483815,GB 3106483816,3106483816,FR 3106483817,3106483826,GB 3106483827,3106483827,FR 3106483828,3106484223,GB 3106484224,3106485247,NL 3106485248,3106486271,CZ 3106486272,3106488319,DE 3106488320,3106489343,NO 3106489344,3106490367,PL 3106490368,3106491391,IT 3106491392,3106492415,CH 3106492416,3106493439,PL 3106493440,3106494463,SY 3106494464,3106495487,IT 3106495488,3106496511,PL 3106496512,3106497535,ES 3106497536,3106498559,RU 3106498560,3106500607,DE 3106500608,3106501631,RU 3106501632,3106502655,PT 3106502656,3106503679,RU 3106503680,3106504703,NL 3106504704,3106505727,PL 3106505728,3106506751,CH 3106506752,3106509823,NL 3106509824,3106510847,SE 3106510848,3106511871,FR 3106511872,3106512895,GE 3106512896,3106513919,RU 3106513920,3106514943,IT 3106514944,3106515967,RU 3106515968,3106516991,SE 3106516992,3106518015,SI 3106518016,3106519039,FR 3106519040,3106520063,RU 3106520064,3106521087,GB 3106521088,3106522111,UA 3106522112,3106523135,RU 3106523136,3106524159,AZ 3106524160,3106525183,RU 3106525184,3106526207,CY 3106526208,3106527231,IT 3106527232,3106528255,KW 3106528256,3106532351,GB 3106532352,3106533375,BE 3106533376,3106534399,NO 3106534400,3106535423,ES 3106535424,3106536447,FR 3106536448,3106537471,IT 3106537472,3106538495,GB 3106538496,3106539519,SK 3106539520,3106540543,NL 3106540544,3106541567,RU 3106541568,3106542591,GB 3106542592,3106543615,ES 3106543616,3106544639,IR 3106544640,3106545663,FR 3106545664,3106546687,CY 3106546688,3106547711,MK 3106547712,3106548735,UA 3106548736,3106549759,PL 3106549760,3106550783,RU 3106550784,3106551807,GB 3106551808,3106552831,NL 3106552832,3106553855,RU 3106553856,3106554879,GB 3106554880,3106556927,NL 3106556928,3106558975,RU 3106558976,3106559999,NL 3106560000,3106562047,RU 3106562048,3106563071,TJ 3106564096,3106565119,ES 3106565120,3106566143,RU 3106566144,3106568191,FR 3106568192,3106569215,ES 3106569216,3106570239,RU 3106570240,3106571263,UA 3106571264,3106572287,FR 3106572288,3106573311,SE 3106573312,3106574335,AE 3106574336,3106575359,RU 3106575360,3106577407,GB 3106577408,3106578431,RU 3106578432,3106579455,IT 3106579456,3106580479,RU 3106580480,3106581503,NO 3106581504,3106582527,TR 3106582528,3106583551,FR 3106583552,3106584575,RU 3106584576,3106585599,PL 3106585600,3106586623,FR 3106586624,3106587647,IQ 3106587648,3106589695,NL 3106590720,3106591743,GR 3106591744,3106592767,IR 3106592768,3106593791,LU 3106593792,3106594815,GB 3106594816,3106595839,IR 3106595840,3106596863,RU 3106596864,3106597887,FR 3106597888,3106598911,GB 3106598912,3106599935,ES 3106599936,3106601983,CH 3106601984,3106603007,DE 3106603008,3106604031,BE 3106604032,3106604434,DE 3106604435,3106604435,RU 3106604436,3106604543,DE 3106604544,3106604799,RU 3106604800,3106605055,DE 3106605056,3106606079,RU 3106606080,3106607103,AT 3106607104,3106608127,IT 3106608128,3106609151,NL 3106609152,3106611199,DE 3106611200,3106612223,GB 3106612224,3106613247,FR 3106613248,3106614271,GB 3106614272,3106615295,FR 3106615296,3106616319,GB 3106616320,3106617343,DE 3106617344,3106618367,BG 3106618368,3106619391,FR 3106619392,3106620415,NL 3106620416,3106621439,FR 3106621440,3106622463,ES 3106622464,3106623487,GB 3106623488,3106624511,NL 3106624512,3106625535,RU 3106625536,3106626559,FI 3106626560,3106627583,RU 3106627584,3106628607,GB 3106628608,3106629631,RU 3106629632,3106630655,EE 3106630656,3106630911,US 3106630912,3106631679,GB 3106631680,3106632703,SK 3106632704,3106633727,DE 3106633728,3106634751,FI 3106634752,3106635775,BE 3106635776,3106636799,GB 3106636800,3106637823,CZ 3106637824,3106638847,PL 3106638848,3106639871,DK 3106639872,3106640895,GB 3106640896,3106641919,IT 3106641920,3106642943,BE 3106642944,3106643967,GB 3106643968,3106644991,PL 3106644992,3106646015,IT 3106646016,3106647039,DE 3106647040,3106648063,HU 3106648064,3106649087,DE 3106649088,3106650111,ES 3106650112,3106651135,GB 3106651136,3106652159,AZ 3106652160,3106653183,IE 3106653184,3106654207,RU 3106654208,3106655231,CH 3106655232,3106656255,HU 3106656256,3106657279,GB 3106657280,3106658303,NL 3106658304,3106659327,GB 3106659328,3106660351,CZ 3106660352,3106661375,UA 3106661376,3106662399,TR 3106662400,3106663423,IE 3106663424,3106664447,UA 3106664448,3106665471,FR 3106665472,3106666495,CH 3106666496,3106667519,UA 3106667520,3106668543,ES 3106668544,3106669567,RU 3106669568,3106670591,DE 3106670592,3106672639,RU 3106672640,3106673663,ES 3106673664,3106674687,CH 3106674688,3106676735,ES 3106676736,3106677759,DE 3106677760,3106678783,IR 3106678784,3106680831,FR 3106680832,3106682879,AT 3106682880,3106683903,LU 3106683904,3106684927,ES 3106684928,3106685951,IR 3106685952,3106686975,RU 3106686976,3106687999,LT 3106688000,3106688255,GB 3106688256,3106688511,FR 3106688512,3106689023,GB 3106689024,3106690047,CH 3106690048,3106691071,UA 3106691072,3106692095,FR 3106692096,3106693119,NL 3106693120,3106694143,NO 3106694144,3106695167,IR 3106695168,3106697215,DE 3106697216,3106698239,IR 3106698240,3106698303,BG 3106698304,3106698367,GE 3106698368,3106698495,BG 3106698496,3106698751,GE 3106698752,3106699263,BG 3106699264,3106700287,RU 3106700288,3106701311,BG 3106701312,3106702335,NL 3106702336,3106703359,DE 3106703360,3106704383,NL 3106704384,3106705407,FR 3106705408,3106706431,GR 3106706432,3106707455,DE 3106707456,3106708479,LB 3106708480,3106709503,LI 3106709504,3106710527,NL 3106710528,3106711551,RU 3106711552,3106712575,NL 3106712576,3106713599,PL 3106713600,3106714623,DE 3106714624,3106715647,IT 3106715648,3106716671,SE 3106716672,3106717695,CZ 3106717696,3106718719,TR 3106718720,3106719743,CH 3106719744,3106720767,DE 3106720768,3106722815,AT 3106722816,3106723839,IT 3106723840,3106724863,PL 3106724864,3106725887,IT 3106725888,3106726911,NL 3106726912,3106727935,AM 3106727936,3106728959,ES 3106728960,3106729983,RU 3106729984,3106731007,IS 3106731008,3106732031,NL 3106732032,3106735167,GB 3106735168,3106735199,IE 3106735200,3106735231,DE 3106735232,3106736127,GB 3106736128,3106737151,IE 3106737152,3106738175,RO 3106738176,3106739199,DE 3106739200,3106740223,DK 3106740224,3106741247,GB 3106741248,3106742271,NL 3106742272,3106743295,FR 3106743296,3106744319,NO 3106744320,3106745343,SM 3106745344,3106746367,NL 3106746368,3106747391,DK 3106747392,3106748415,BE 3106748416,3106749439,CZ 3106749440,3106750463,RU 3106750464,3106751487,BG 3106751488,3106752511,IT 3106752512,3106753535,ES 3106753536,3106754559,IS 3106754560,3106755583,RU 3106755584,3106756607,SE 3106756608,3106757631,DE 3106757632,3106758655,RU 3106758656,3106759679,GB 3106759680,3106760703,RU 3106760704,3106761727,IE 3106762752,3106763775,DE 3106763776,3106764799,NL 3106764800,3106765823,SE 3106765824,3106766847,CZ 3106766848,3106767871,SE 3106767872,3106768895,DE 3106768896,3106769919,CZ 3106769920,3106770943,EE 3106770944,3106771967,RU 3106771968,3106772991,DK 3106772992,3106774015,BG 3106774016,3106775039,AE 3106775040,3106776063,GB 3106776064,3106777087,ES 3106777088,3106778111,GB 3106778112,3106779135,FR 3106779136,3106780159,NO 3106780160,3106781183,FR 3106781184,3106782207,DK 3106782208,3106783231,IR 3106783232,3106784255,NL 3106784256,3106785279,HU 3106785280,3106786303,CZ 3106786304,3106787327,DE 3106787328,3106788351,IT 3106788352,3106789375,AT 3106789376,3106790399,PL 3106790400,3106792447,GB 3106792448,3106793471,FR 3106793472,3106794495,AT 3106794496,3106795519,CH 3106795520,3106796543,DE 3106796544,3106797567,UA 3106797568,3106798591,DE 3106798592,3106799615,FR 3106799616,3106800639,IR 3106800640,3106801663,GR 3106801664,3106804735,RU 3106804736,3106805759,EE 3106805760,3106806783,IT 3106806784,3106807807,NL 3106807808,3106808831,HR 3106808832,3106809855,DK 3106809856,3106810879,TR 3106810880,3106812927,RU 3106812928,3106813951,TR 3106813952,3106814975,CH 3106814976,3106815999,MD 3106816000,3106817023,NL 3106817024,3106818047,IT 3106818048,3106819071,IE 3106819072,3106820095,BE 3106820096,3106821247,CH 3106821248,3106821375,PL 3106821376,3106821631,US 3106821632,3106821759,HK 3106821760,3106821887,CN 3106821888,3106822015,RU 3106822016,3106822143,JP 3106822144,3106824191,CH 3106824192,3106825215,RU 3106825216,3106826239,IT 3106826240,3106827263,PL 3106827264,3106828287,IR 3106828288,3106829311,GB 3106829312,3106830335,NL 3106830336,3106831359,US 3106831360,3106832383,ES 3106832384,3106833407,DE 3106833408,3106834431,NO 3106834432,3106835455,DE 3106835456,3106836479,IT 3106836480,3106837503,KW 3106837504,3106838527,UA 3106838528,3106838783,KZ 3106838784,3106839551,RU 3106839552,3106840575,NL 3106840576,3106841599,BG 3106841600,3106842623,FR 3106842624,3106843647,PL 3106843648,3106844671,GB 3106844672,3106845695,GE 3106845696,3106846719,NL 3106846720,3106847743,RU 3106847744,3106848767,UA 3106848768,3106849791,NL 3106849792,3106850815,RU 3106850816,3106851839,GB 3106851840,3106852863,PL 3106852864,3106853887,GB 3106853888,3106854143,NL 3106854144,3106854911,CH 3106854912,3106855935,IR 3106855936,3106856959,UA 3106856960,3106857983,NO 3106857984,3106859007,FR 3106859008,3106860031,NL 3106860032,3106861055,UA 3106861056,3106863103,PL 3106863104,3106864127,UA 3106864128,3106865151,IE 3106865152,3106866175,NL 3106866176,3106867199,AZ 3106867200,3106868223,LV 3106868224,3106869247,NL 3106869248,3106870271,ES 3106870272,3106871295,NL 3106871296,3106872319,CH 3106872320,3106873343,BE 3106873344,3106874367,ES 3106874368,3106875391,RU 3106875392,3106876415,NO 3106876416,3106877439,DE 3106877440,3106878463,IR 3106878464,3106879487,RU 3106879488,3106880511,MK 3106880512,3106881535,NL 3106881536,3106882559,PL 3106882560,3106883583,BE 3106883584,3106884607,GB 3106884608,3106885631,FI 3106885632,3106886655,FR 3106886656,3106887679,US 3106887680,3106888703,RS 3106888704,3106889727,LV 3106889728,3106890751,IT 3106890752,3106891775,NL 3106891776,3106892799,GB 3106892800,3106893823,IT 3106893824,3106894847,NL 3106894848,3106895871,GB 3106895872,3106896895,NL 3106896896,3106897919,DE 3106897920,3106898943,ES 3106898944,3106899967,NL 3106899968,3106900991,IT 3106900992,3106902015,DE 3106902016,3106903039,IE 3106903040,3106904063,BE 3106904064,3106904319,BY 3106904320,3106906111,RU 3106906112,3106907135,HU 3106907136,3106908159,SE 3106908160,3106909183,NL 3106909184,3106910207,IL 3106910208,3106911231,CZ 3106911232,3106912255,IQ 3106912256,3106913279,HU 3106913280,3106914303,AL 3106914304,3106915327,SE 3106915328,3106917375,NL 3106917376,3106918399,RU 3106918400,3106919423,RS 3106919424,3106920447,ES 3106920448,3106921471,GB 3106921472,3106922495,CZ 3106922496,3106923519,NL 3106923520,3106924543,IT 3106924544,3106925567,DE 3106925568,3106926591,NL 3106926592,3106927615,FR 3106927616,3106928639,ES 3106928640,3106929663,NO 3106929664,3106930687,FR 3106930688,3106931711,DE 3106931712,3106932735,AT 3106932736,3106933759,PL 3106933760,3106934783,BE 3106934784,3106935807,RU 3106935808,3106936831,CZ 3106936832,3106937855,TR 3106937856,3106938879,PL 3106938880,3106939903,IT 3106939904,3106940927,RU 3106940928,3106941951,HU 3106941952,3106943999,FR 3106944000,3106945023,IT 3106945024,3106946047,NL 3106946048,3106947071,JE 3106947072,3106948095,AE 3106948096,3106949119,NL 3106949120,3106950143,RU 3106950144,3106950399,IM 3106950400,3106951167,GB 3106951168,3106952191,SE 3106952192,3106954239,ES 3106954240,3106955263,DE 3106955264,3106956287,IT 3106956288,3106957311,NL 3106957312,3106958335,DE 3106958336,3106959359,GB 3106959360,3106960383,RU 3106960384,3106961407,DE 3106961408,3106962431,IE 3106962432,3106963455,KZ 3106963456,3106964479,PL 3106964480,3106965503,FR 3106965504,3106966527,KG 3106966528,3106967551,IT 3106967552,3106968575,CH 3106968576,3106969599,KZ 3106969600,3106970623,DK 3106970624,3106971647,DE 3106971648,3106973695,GB 3106973696,3106974719,PL 3106974720,3106975743,BA 3106975744,3106976767,PL 3106976768,3106977791,TR 3106977792,3106978815,RU 3106978816,3106979839,KW 3106979840,3106980863,ES 3106980864,3106981887,UA 3106981888,3106982911,FR 3106982912,3106984959,DE 3106984960,3106985983,TR 3106985984,3106989055,DE 3106989056,3106990079,CH 3106990080,3106991103,PL 3106991104,3106992127,RU 3106992128,3106993151,AM 3106993152,3106994175,DE 3106994176,3106995199,SK 3106995200,3106995711,FR 3106995712,3106995967,US 3106995968,3106996223,FR 3106996224,3106997247,SI 3106997248,3106998271,NO 3106998272,3106999295,IT 3106999296,3107000319,PL 3107000320,3107001343,DE 3107001344,3107002367,FR 3107002368,3107003391,AL 3107003392,3107004415,PL 3107004416,3107007487,GB 3107007488,3107008511,TR 3107008512,3107009535,NL 3107009536,3107010559,AT 3107010560,3107011583,IT 3107011584,3107012607,IE 3107012608,3107013631,RU 3107013632,3107014655,DE 3107014656,3107015679,GB 3107015680,3107016703,DE 3107016704,3107017107,NL 3107017108,3107017108,GB 3107017109,3107017127,NL 3107017128,3107017128,GB 3107017129,3107017727,NL 3107017728,3107018751,IR 3107018752,3107019775,BG 3107019776,3107020799,GB 3107020800,3107021823,IR 3107021824,3107022847,DE 3107022848,3107023871,IR 3107023872,3107024895,RU 3107024896,3107025919,GB 3107025920,3107026943,SI 3107026944,3107027967,NL 3107027968,3107028991,GB 3107028992,3107030015,TR 3107030016,3107031039,SE 3107031040,3107032063,DE 3107032064,3107034111,NL 3107034112,3107035135,PL 3107035136,3107036159,CH 3107036160,3107037183,ES 3107037184,3107038207,BH 3107038208,3107039231,GE 3107039232,3107040255,ES 3107040256,3107041279,GB 3107041280,3107042303,AT 3107042304,3107043327,BE 3107043328,3107044351,ES 3107044352,3107045375,CZ 3107045376,3107046399,ES 3107046400,3107047423,NO 3107047424,3107048447,PL 3107048448,3107049471,IT 3107049472,3107050495,FR 3107050496,3107051519,IT 3107051520,3107052543,GB 3107052544,3107053567,CH 3107053568,3107054591,ES 3107054592,3107057663,GB 3107057664,3107058687,RU 3107058688,3107059711,LU 3107059712,3107060735,IT 3107060736,3107061759,DK 3107061760,3107062783,BY 3107062784,3107063807,MD 3107063808,3107064831,RU 3107064832,3107065855,HR 3107065856,3107067903,GB 3107067904,3107068927,RU 3107068928,3107069951,HU 3107069952,3107070975,FR 3107070976,3107071231,SE 3107071232,3107071999,IR 3107072000,3107073023,SE 3107073024,3107074047,ES 3107074048,3107075071,PL 3107075072,3107076095,FR 3107076096,3107077119,BA 3107077120,3107078143,NL 3107078144,3107079167,FR 3107079168,3107080191,TR 3107080192,3107082239,FR 3107082240,3107083263,RU 3107083264,3107084287,BE 3107084288,3107085311,FI 3107085312,3107086335,NL 3107086336,3107087359,EE 3107087360,3107088383,IE 3107088384,3107089407,BR 3107089408,3107090431,IT 3107090432,3107091455,FR 3107091456,3107092479,ES 3107092480,3107093503,DE 3107093504,3107094527,CZ 3107094528,3107095551,FR 3107095552,3107096575,CY 3107096576,3107097599,RU 3107097600,3107098623,DE 3107098624,3107099647,ES 3107099648,3107099903,UA 3107099904,3107100159,CZ 3107100160,3107100415,RU 3107100416,3107101695,CZ 3107101696,3107102719,RU 3107102720,3107103743,GB 3107103744,3107104767,PL 3107104768,3107105791,ES 3107105792,3107106815,NL 3107106816,3107107839,ES 3107107840,3107108863,AL 3107108864,3107109887,RS 3107109888,3107110911,CH 3107110912,3107111935,DE 3107111936,3107112959,ES 3107112960,3107113983,RU 3107113984,3107115007,ES 3107115008,3107116031,NL 3107116032,3107117055,SK 3107117056,3107118079,RU 3107118080,3107120127,CH 3107120128,3107121151,CZ 3107121152,3107122175,AT 3107122176,3107123199,CH 3107123200,3107124223,GB 3107124224,3107125247,FI 3107125248,3107126271,UA 3107126272,3107127295,FR 3107127296,3107128319,SE 3107128320,3107129343,US 3107129344,3107130367,AT 3107130368,3107131391,IT 3107131392,3107132415,GE 3107132416,3107133439,RU 3107133440,3107134463,CY 3107134464,3107135487,CZ 3107135488,3107136511,DE 3107136512,3107137535,TR 3107137536,3107138559,IR 3107138560,3107139583,ES 3107139584,3107142655,NL 3107142656,3107143679,RU 3107143680,3107144703,HU 3107144704,3107145727,CH 3107145728,3107146751,IE 3107146752,3107147775,DK 3107147776,3107148799,GB 3107148800,3107149823,DE 3107149824,3107150847,PL 3107150848,3107151871,PT 3107151872,3107152895,PL 3107152896,3107153919,GE 3107153920,3107154943,IE 3107154944,3107155967,ES 3107155968,3107156991,TR 3107156992,3107158015,PL 3107158016,3107159039,IT 3107159040,3107160063,RU 3107160064,3107161087,AT 3107161088,3107162111,GR 3107162112,3107163135,IT 3107163136,3107164159,RU 3107164160,3107165183,FR 3107165184,3107166207,NL 3107166208,3107167231,AE 3107167232,3107168255,RU 3107168256,3107169279,ES 3107169280,3107170303,TR 3107170304,3107171327,IT 3107171328,3107172351,GB 3107172352,3107173375,FR 3107173376,3107174399,PL 3107174400,3107175423,DE 3107175424,3107176447,HU 3107176448,3107177471,NL 3107177472,3107178495,AT 3107178496,3107179519,IR 3107179520,3107180543,SA 3107180544,3107181567,RU 3107181568,3107182591,JO 3107182592,3107183615,FR 3107183616,3107184639,IQ 3107184640,3107185663,SE 3107185664,3107186687,CZ 3107186688,3107187711,NO 3107187712,3107188735,MT 3107188736,3107189759,CZ 3107189760,3107190783,NL 3107190784,3107191807,CZ 3107191808,3107192831,GB 3107192832,3107194879,NL 3107194880,3107195903,IT 3107195904,3107196927,NL 3107196928,3107197951,ES 3107197952,3107198975,AT 3107198976,3107199999,GB 3107200000,3107201023,RU 3107201024,3107202047,FR 3107202048,3107203071,GB 3107203072,3107204095,NO 3107204096,3107205119,FR 3107205120,3107206143,BG 3107206144,3107207167,NL 3107207168,3107207423,AT 3107208192,3107209215,NL 3107209216,3107210239,IT 3107210240,3107213311,RU 3107213312,3107214335,GE 3107214336,3107215359,FR 3107215360,3107216383,CY 3107216384,3107217407,IE 3107217408,3107218431,CZ 3107218432,3107219455,IQ 3107219456,3107220479,NL 3107220480,3107221503,GB 3107221504,3107222527,IT 3107222528,3107223551,IQ 3107223552,3107224063,AT 3107224064,3107224319,DE 3107224320,3107224575,AT 3107224576,3107225599,FR 3107225600,3107226623,AZ 3107226624,3107227647,RU 3107227648,3107228671,US 3107228672,3107229695,RU 3107229696,3107231743,GB 3107231744,3107232767,RU 3107232768,3107233791,SE 3107233792,3107234815,DE 3107234816,3107235839,FI 3107235840,3107236863,PL 3107236864,3107237887,CZ 3107237888,3107238911,NL 3107238912,3107239935,SE 3107239936,3107241983,AT 3107241984,3107243007,PL 3107243008,3107245055,GB 3107245056,3107246079,BG 3107246080,3107248127,NL 3107248128,3107249151,IT 3107249152,3107250175,GB 3107250176,3107251199,NL 3107251200,3107252223,TR 3107252224,3107253247,SY 3107253248,3107254271,NL 3107254272,3107255295,IT 3107255296,3107257343,DE 3107257344,3107258367,GB 3107258368,3107259391,IT 3107259392,3107260415,CZ 3107260416,3107261439,NL 3107261440,3107262463,SI 3107262464,3107263487,GB 3107263488,3107264511,RU 3107264512,3107265535,FR 3107265536,3107266559,GB 3107266560,3107267583,IE 3107267584,3107268607,IT 3107268608,3107270655,DE 3107270656,3107271679,NL 3107271680,3107272703,AE 3107272704,3107273727,GB 3107273728,3107274751,TR 3107274752,3107275775,SE 3107275776,3107276799,IT 3107276800,3107277823,BY 3107277824,3107278847,UA 3107278848,3107279871,FR 3107279872,3107280895,FI 3107280896,3107281919,NL 3107281920,3107282943,GB 3107282944,3107283967,PL 3107283968,3107284991,AL 3107284992,3107286015,KG 3107286016,3107287039,AT 3107287040,3107288063,RS 3107288064,3107289087,NO 3107289088,3107290111,SI 3107290112,3107291135,PL 3107291136,3107292159,NL 3107292160,3107293183,PL 3107293184,3107294207,FR 3107294208,3107295231,DE 3107295232,3107296255,PL 3107296256,3107297279,IT 3107297280,3107298303,PL 3107298304,3107299327,DE 3107299328,3107300351,NL 3107300352,3107301375,SE 3107301376,3107302399,DE 3107302400,3107303423,GB 3107303424,3107304447,DE 3107304448,3107305471,AT 3107305472,3107306495,FR 3107306496,3107307519,NO 3107307520,3107308543,IT 3107308544,3107310591,RO 3107310592,3107311615,DE 3107311616,3107312639,IL 3107312640,3107313663,SE 3107313664,3107315711,DE 3107315712,3107316735,GB 3107316736,3107317759,KG 3107317760,3107318783,RU 3107318784,3107318799,IE 3107318800,3107319039,NL 3107319040,3107319295,GB 3107319296,3107319807,NL 3107319808,3107320831,OM 3107320832,3107321855,SA 3107321856,3107322879,NL 3107322880,3107323903,IT 3107323904,3107324927,ES 3107324928,3107325951,CH 3107325952,3107326975,FR 3107326976,3107327999,LT 3107328000,3107329023,AE 3107329024,3107330047,RU 3107330048,3107331071,GE 3107331072,3107332095,NO 3107332096,3107333119,IT 3107333120,3107334143,FR 3107334144,3107335167,RU 3107335168,3107336191,NL 3107336192,3107337215,RU 3107337216,3107339263,PL 3107339264,3107340287,LB 3107340288,3107341311,GB 3107341312,3107342335,DE 3107342336,3107343359,GB 3107343360,3107344383,DE 3107344384,3107345407,CH 3107345408,3107346431,GB 3107346432,3107347455,TR 3107347456,3107348479,NL 3107348480,3107349503,LB 3107349504,3107350527,PL 3107350528,3107351551,IE 3107351552,3107352575,DE 3107352576,3107353599,NL 3107353600,3107355647,DE 3107355648,3107356671,GB 3107356672,3107357695,SI 3107357696,3107358719,SY 3107358720,3107359743,RU 3107359744,3107360767,NL 3107360768,3107361791,AT 3107361792,3107362815,DE 3107362816,3107363839,IT 3107363840,3107364863,IQ 3107364864,3107365375,CY 3107365376,3107365631,NL 3107365632,3107365887,BE 3107365888,3107366911,IQ 3107366912,3107367935,GB 3107367936,3107368959,CH 3107368960,3107369983,RU 3107369984,3107371007,NL 3107371008,3107372031,PL 3107372032,3107373055,DE 3107373056,3107374079,ES 3107374080,3107375103,SE 3107375104,3107376127,GB 3107376128,3107377151,NL 3107377152,3107378175,AT 3107378176,3107379199,IT 3107379200,3107380223,NL 3107380224,3107381247,RU 3107381248,3107382271,IE 3107382272,3107383295,NL 3107383296,3107384319,DE 3107384320,3107385343,RU 3107385344,3107386367,DE 3107386368,3107387391,RU 3107387392,3107388415,BE 3107388416,3107389439,KG 3107389440,3107390463,RU 3107390464,3107391487,RO 3107391488,3107392511,SE 3107392512,3107393535,HU 3107393536,3107394559,GB 3107394560,3107395583,NL 3107395584,3107396607,AT 3107396608,3107397631,GR 3107397632,3107398655,FI 3107398656,3107399679,AZ 3107399680,3107400703,RU 3107400704,3107401727,AL 3107401728,3107402751,EE 3107402752,3107403775,NL 3107403776,3107404799,ES 3107404800,3107405823,GB 3107405824,3107406847,PL 3107406848,3107408895,DE 3107408896,3107409919,GB 3107409920,3107410943,IT 3107410944,3107411967,FI 3107411968,3107412991,IT 3107412992,3107414015,BE 3107414016,3107415039,FR 3107415040,3107416063,DE 3107416064,3107417087,NO 3107417088,3107419135,NL 3107419136,3107422207,DE 3107422208,3107423231,NL 3107423232,3107424255,GB 3107424256,3107425279,NL 3107425280,3107426303,RO 3107426304,3107427327,FR 3107427328,3107428351,AL 3107428352,3107429375,DE 3107429376,3107430399,CH 3107430400,3107431423,GB 3107431424,3107432447,FR 3107432448,3107433471,IT 3107433472,3107434495,RU 3107434496,3107435519,FI 3107435520,3107436543,DE 3107436544,3107437567,IQ 3107437568,3107438591,GB 3107438592,3107439615,DE 3107439616,3107440639,DK 3107440640,3107442687,IE 3107443712,3107444735,IT 3107444736,3107445759,ES 3107445760,3107446783,DE 3107446784,3107447807,IR 3107447808,3107448831,BG 3107448832,3107449855,DE 3107449856,3107450879,AT 3107450880,3107451903,DE 3107451904,3107452927,FR 3107452928,3107453951,ES 3107453952,3107454975,GB 3107454976,3107455999,IT 3107456000,3107457023,GB 3107457024,3107458047,IT 3107458048,3107459071,IS 3107459072,3107460095,UA 3107460096,3107461119,GB 3107461120,3107462143,CH 3107462144,3107464191,NL 3107464192,3107465215,PL 3107465216,3107467263,GB 3107467264,3107468287,FR 3107468288,3107469311,NL 3107469312,3107470335,DK 3107470336,3107471359,NL 3107471360,3107473407,GB 3107473408,3107474431,IL 3107474432,3107475455,ES 3107475456,3107476479,NL 3107476480,3107476765,BG 3107476766,3107476766,US 3107476767,3107477503,BG 3107477504,3107478527,AE 3107478528,3107480575,IR 3107480576,3107481599,DK 3107481600,3107482623,DE 3107482624,3107483647,ES 3107483648,3107484671,DE 3107484672,3107485695,RU 3107485696,3107486719,IT 3107486720,3107487743,AT 3107487744,3107489791,DE 3107489792,3107489892,MT 3107489893,3107489893,NL 3107489894,3107490044,MT 3107490045,3107490046,NL 3107490047,3107490055,MT 3107490056,3107490056,NL 3107490057,3107490057,MT 3107490058,3107490058,NL 3107490059,3107490815,MT 3107490816,3107491839,DK 3107491840,3107492863,NL 3107492864,3107493887,DE 3107493888,3107494911,FR 3107494912,3107495935,IT 3107495936,3107496191,FR 3107496192,3107496255,DE 3107496256,3107496287,BS 3107496288,3107496319,VG 3107496320,3107496447,NL 3107496448,3107496463,CL 3107496464,3107496479,ES 3107496480,3107496495,RO 3107496496,3107496511,IN 3107496512,3107496703,NL 3107496704,3107496719,PE 3107496720,3107496735,PK 3107496736,3107496751,FJ 3107496752,3107496783,PA 3107496784,3107496799,BE 3107496800,3107496815,IL 3107496816,3107496831,CN 3107496832,3107496847,BR 3107496848,3107496863,KP 3107496864,3107496879,HK 3107496880,3107496895,IS 3107496896,3107496911,US 3107496912,3107496927,PL 3107496928,3107496959,FR 3107496960,3107497983,DK 3107497984,3107499007,IT 3107499008,3107500031,PL 3107500032,3107501055,FR 3107501056,3107502079,ES 3107502080,3107503103,NO 3107503104,3107504127,PL 3107504128,3107505151,IQ 3107505152,3107506175,SA 3107506176,3107507199,GB 3107507200,3107508223,FR 3107508224,3107509247,PL 3107509248,3107510271,SE 3107510272,3107511295,IT 3107511296,3107511807,RS 3107511808,3107512319,SI 3107512320,3107513343,NL 3107513344,3107514367,DE 3107514368,3107515391,US 3107515392,3107516415,TR 3107516416,3107517439,FR 3107517440,3107518463,PL 3107518464,3107519487,MK 3107519488,3107520511,MT 3107520512,3107521535,DE 3107521536,3107522559,SE 3107522560,3107523583,NL 3107523584,3107524607,FR 3107524608,3107525631,SI 3107525632,3107526655,IT 3107526656,3107527679,DE 3107527680,3107528703,RU 3107528704,3107531775,GB 3107531776,3107532799,MD 3107532800,3107533823,AT 3107533824,3107534847,FR 3107534848,3107536895,NL 3107536896,3107537919,TR 3107537920,3107538943,AM 3107538944,3107539967,KZ 3107539968,3107540991,GB 3107540992,3107542015,RO 3107542016,3107543039,SE 3107543040,3107544063,DE 3107544064,3107545087,GB 3107545088,3107546111,NL 3107546112,3107547135,GB 3107547136,3107548159,SE 3107548160,3107549183,IT 3107549184,3107551231,IE 3107551232,3107552255,JO 3107552256,3107553279,FR 3107553280,3107554303,BE 3107554304,3107555327,IR 3107555328,3107556351,SE 3107556352,3107557375,NL 3107557376,3107558399,SI 3107558400,3107559423,FR 3107559424,3107561471,GB 3107561472,3107562495,GL 3107562496,3107563519,IR 3107563520,3107564543,SE 3107564544,3107565567,NL 3107565568,3107566591,AT 3107566592,3107567615,FI 3107567616,3107568639,DE 3107568640,3107569663,GB 3107569664,3107571711,ES 3107571712,3107572735,IR 3107572736,3107573759,ES 3107573760,3107574783,IT 3107574784,3107575807,JE 3107575808,3107576831,DE 3107576832,3107577855,FR 3107577856,3107578879,SI 3107578880,3107579391,CZ 3107579392,3107579903,RU 3107579904,3107580927,IT 3107580928,3107581951,RU 3107581952,3107582975,DE 3107582976,3107583999,TR 3107584000,3107585023,RU 3107585024,3107586047,NO 3107586048,3107587071,DE 3107587072,3107588095,IT 3107588096,3107589119,FR 3107589120,3107590143,IQ 3107590144,3107591167,IE 3107591168,3107592191,BG 3107592192,3107593215,GB 3107593216,3107594239,DE 3107594240,3107595263,FI 3107595264,3107596287,DE 3107596288,3107597311,CZ 3107597312,3107598335,IT 3107598336,3107599359,PL 3107599360,3107600383,AT 3107600384,3107601407,NL 3107601408,3107602431,DK 3107602432,3107603455,LT 3107603456,3107604479,NO 3107604480,3107605503,HR 3107605504,3107606527,SE 3107606528,3107607551,PT 3107607552,3107609599,GB 3107609600,3107610623,BA 3107610624,3107611647,BE 3107611648,3107612671,SK 3107612672,3107613695,IT 3107613696,3107614719,DE 3107614720,3107615743,RU 3107615744,3107617791,IT 3107617792,3107618815,RU 3107618816,3107619839,CH 3107619840,3107620863,IT 3107620864,3107621887,NO 3107621888,3107622911,JP 3107622912,3107623935,SE 3107623936,3107624959,NL 3107624960,3107625983,RU 3107625984,3107627007,DE 3107627008,3107628031,PL 3107628032,3107629055,GB 3107629056,3107630079,DE 3107630080,3107631103,ES 3107631104,3107632127,GB 3107632128,3107633151,SI 3107633152,3107634175,FR 3107634176,3107635199,RU 3107635200,3107636223,IT 3107636224,3107637247,ES 3107637248,3107638271,LB 3107638272,3107639295,RU 3107639296,3107640319,ES 3107640320,3107641343,DK 3107641344,3107643391,RU 3107643392,3107644415,IT 3107644416,3107645439,FR 3107645440,3107646463,IE 3107646464,3107647487,NL 3107647488,3107648511,IR 3107648512,3107649535,TR 3107649536,3107651583,RU 3107651584,3107652607,CZ 3107652608,3107653631,PL 3107653632,3107654655,FR 3107654656,3107655679,DE 3107655680,3107656703,BE 3107656704,3107657727,IT 3107657728,3107658751,SI 3107658752,3107659775,TR 3107659776,3107660799,EE 3107660800,3107661823,NL 3107661824,3107662847,FR 3107662848,3107663871,TR 3107663872,3107664895,ES 3107664896,3107665919,CH 3107665920,3107666943,RU 3107666944,3107667967,GB 3107667968,3107668991,ES 3107668992,3107670015,AM 3107670016,3107671039,TR 3107671040,3107672063,NL 3107672064,3107673087,IT 3107673088,3107674111,AE 3107674112,3107675135,PL 3107675136,3107676159,GB 3107676160,3107678207,DE 3107678208,3107679231,DK 3107679232,3107680255,PL 3107680256,3107681279,IR 3107681280,3107682303,FI 3107682304,3107683327,CZ 3107683328,3107684351,GB 3107684352,3107685375,DE 3107685376,3107686399,IT 3107686400,3107688447,RU 3107688448,3107689471,CZ 3107689472,3107690495,GB 3107690496,3107691519,IT 3107691520,3107692543,UA 3107692544,3107693567,PL 3107693568,3107694591,IT 3107694592,3107695615,BE 3107695616,3107696639,RU 3107696640,3107698687,GB 3107698688,3107699711,SK 3107699712,3107700735,SA 3107700736,3107701759,RU 3107701760,3107702783,BE 3107702784,3107703807,DE 3107703808,3107704831,GB 3107704832,3107705855,CZ 3107705856,3107706879,NO 3107706880,3107707903,RU 3107707904,3107708159,DE 3107708160,3107708415,GB 3107708416,3107708671,NL 3107708672,3107708927,US 3107708928,3107709951,PL 3107709952,3107710975,DK 3107710976,3107711999,RU 3107712000,3107713023,NO 3107713024,3107714047,RO 3107714048,3107715071,RU 3107715072,3107716095,DE 3107716096,3107717119,LV 3107717120,3107718143,DE 3107718144,3107719167,GB 3107719168,3107720191,FR 3107720192,3107721215,RU 3107721216,3107723263,DE 3107723264,3107724287,FR 3107724288,3107725311,GB 3107725312,3107726335,IR 3107726336,3107727359,DE 3107727360,3107728383,ES 3107728384,3107730431,RU 3107730432,3107731455,CH 3107731456,3107732479,DE 3107732480,3107733503,NL 3107733504,3107734527,BG 3107734528,3107735551,HU 3107735552,3107737599,DE 3107737600,3107737855,GB 3107737856,3107738623,NL 3107738624,3107738879,DE 3107738880,3107739135,DK 3107739136,3107739391,RO 3107739392,3107739647,PL 3107739648,3107740671,IM 3107740672,3107741695,FR 3107741696,3107742719,DE 3107742720,3107743743,HU 3107743744,3107744767,CZ 3107744768,3107746815,FR 3107746816,3107747839,SI 3107747840,3107748863,GB 3107748864,3107749887,IE 3107749888,3107750911,SE 3107750912,3107751935,RU 3107751936,3107752959,IR 3107752960,3107753983,IT 3107753984,3107755007,CH 3107755008,3107756031,FR 3107756032,3107757055,RU 3107757056,3107758079,NL 3107758080,3107759103,DK 3107759104,3107760127,FR 3107760128,3107761151,IL 3107761152,3107762175,NO 3107762176,3107763199,FR 3107763200,3107764223,CH 3107764224,3107765247,PL 3107765248,3107767295,IT 3107767296,3107768319,DE 3107768320,3107769343,AE 3107769344,3107770367,DK 3107770368,3107771391,DE 3107771392,3107772415,RU 3107772416,3107773439,IE 3107773440,3107774463,GB 3107774464,3107775487,TR 3107775488,3107776511,PL 3107776512,3107777535,FR 3107777536,3107778559,CY 3107778560,3107779583,IT 3107779584,3107780607,PL 3107780608,3107781631,DE 3107781632,3107782655,NL 3107782656,3107783679,IE 3107783680,3107784703,PL 3107784704,3107785727,DE 3107785728,3107786751,IT 3107786752,3107787775,SK 3107787776,3107788799,PS 3107788800,3107789823,RU 3107789824,3107791871,DE 3107791872,3107792895,RU 3107792896,3107793919,AT 3107793920,3107794943,TR 3107794944,3107795967,LB 3107795968,3107796991,NL 3107796992,3107798015,RS 3107798016,3107799039,IE 3107799040,3107800063,LT 3107800064,3107801087,NL 3107801088,3107802111,BE 3107802112,3107803135,RU 3107803136,3107804159,ES 3107804160,3107805183,CZ 3107805184,3107806207,GB 3107806208,3107807231,RU 3107807232,3107808255,GB 3107808256,3107809279,DE 3107809280,3107810303,BY 3107810304,3107811327,SE 3107811328,3107812351,GB 3107812352,3107813375,FR 3107813376,3107814399,DE 3107814400,3107815423,ES 3107815424,3107816447,RU 3107816448,3107817471,GB 3107817472,3107818495,UA 3107818496,3107819519,GB 3107819520,3107820543,FR 3107820544,3107821055,LV 3107821056,3107821567,SE 3107821568,3107822591,GB 3107822592,3107823615,UA 3107823616,3107824639,FR 3107824640,3107825663,GB 3107825664,3107826687,IT 3107826688,3107827711,RU 3107827712,3107828735,FR 3107828736,3107829759,IT 3107829760,3107831807,FR 3107831808,3107832831,RU 3107832832,3107833855,NL 3107833856,3107834879,PS 3107834880,3107835903,ES 3107835904,3107837951,GB 3107837952,3107839999,RU 3107840000,3107841023,NL 3107841024,3107842047,CZ 3107842048,3107843071,FI 3107843072,3107844095,SE 3107844096,3107845119,CY 3107845120,3107846143,PL 3107847168,3107848191,RU 3107848192,3107849215,IT 3107849216,3107850239,BE 3107850240,3107851263,CZ 3107851264,3107853311,NL 3107853312,3107854335,ES 3107854336,3107855359,DE 3107855360,3107856383,IT 3107856384,3107857407,SM 3107857408,3107858431,MT 3107858432,3107859455,FR 3107859456,3107860479,GB 3107860480,3107862527,IT 3107862528,3107863551,NL 3107863552,3107864575,IS 3107864576,3107865599,DE 3107865600,3107866623,NL 3107866624,3107867647,HR 3107867648,3107868671,GB 3107868672,3107869695,CH 3107869696,3107870719,GB 3107870720,3107871743,DE 3107871744,3107872767,PL 3107872768,3107873791,LV 3107873792,3107874815,RU 3107874816,3107875839,CH 3107875840,3107876863,CZ 3107876864,3107877887,RS 3107877888,3107878143,GB 3107878144,3107878911,NL 3107878912,3107879935,IL 3107879936,3107880959,DE 3107880960,3107881983,HU 3107881984,3107883007,RS 3107883008,3107884031,US 3107884032,3107885055,NO 3107885056,3107887103,DE 3107887104,3107888127,BG 3107888128,3107889151,GB 3107889152,3107890175,NO 3107890176,3107891199,IE 3107891200,3107892223,CH 3107892224,3107893247,AL 3107893248,3107894271,SA 3107894272,3107895295,PL 3107895296,3107896319,FR 3107896320,3107897343,NL 3107897344,3107898367,RU 3107898368,3107899391,LV 3107899392,3107900415,RU 3107900416,3107901439,SE 3107901440,3107902463,NL 3107902464,3107904511,GB 3107904512,3107907583,FR 3107907584,3107908607,IR 3107908608,3107909631,BG 3107909632,3107910655,IT 3107910656,3107911679,DE 3107911680,3107912703,IT 3107912704,3107913727,SE 3107913728,3107914751,AT 3107914752,3107915775,RO 3107915776,3107916799,DE 3107916800,3107917823,IT 3107917824,3107918847,HU 3107918848,3107919871,NL 3107919872,3107920895,CZ 3107920896,3107921919,ES 3107921920,3107922943,UA 3107922944,3107923967,CH 3107923968,3107924991,IT 3107924992,3107926015,HU 3107926016,3107927039,FR 3107927040,3107928063,IT 3107928064,3107929087,NL 3107929088,3107930111,RU 3107930112,3107931135,CH 3107931136,3107932159,NL 3107932160,3107932415,SE 3107932416,3107934207,MT 3107934208,3107935231,GB 3107935232,3107936255,PL 3107936256,3107937279,IT 3107937280,3107938303,FR 3107938304,3107939327,CZ 3107939328,3107940351,IT 3107940352,3107941375,CZ 3107941376,3107942399,PL 3107942400,3107943423,RU 3107943424,3107944447,NL 3107944448,3107945471,FR 3107945472,3107947519,DE 3107947520,3107948543,IT 3107948544,3107949567,RO 3107949568,3107950591,GB 3107950592,3107951615,US 3107951616,3107952639,CH 3107952640,3107953663,NL 3107953664,3107954687,SK 3107954688,3107955711,IT 3107955712,3107956735,NL 3107956736,3107957759,IT 3107957760,3107958783,FR 3107958784,3107959807,AL 3107959808,3107960831,PT 3107960832,3107961855,IM 3107961856,3107962879,RU 3107962880,3107963903,FR 3107963904,3107964927,RU 3107964928,3107965951,PL 3107965952,3107966975,DE 3107966976,3107967999,NO 3107968000,3107969023,DE 3107969024,3107970047,RU 3107970048,3107971071,GB 3107971072,3107972095,UZ 3107972096,3107973119,IT 3107973120,3107974143,SA 3107974144,3107975167,IR 3107976192,3107977215,NL 3107977216,3107978239,AT 3107978240,3107979263,NL 3107979264,3107980287,ME 3107980288,3107981311,BE 3107981312,3107982335,IL 3107982336,3107983359,GB 3107983360,3107984383,IE 3107984384,3107985407,BG 3107985408,3107986431,OM 3107986432,3107987455,PL 3107987456,3107988479,NL 3107988480,3107989503,GB 3107989504,3107990527,CZ 3107990528,3107991551,RU 3107991552,3107992575,AT 3107992576,3107993599,RU 3107993600,3107994623,RO 3107994624,3107995647,AT 3107995648,3107996671,BE 3107996672,3107997695,IT 3107997696,3107998719,SE 3107998720,3107999743,AE 3107999744,3108000767,TR 3108000768,3108001791,MK 3108001792,3108002815,GB 3108002816,3108003839,RO 3108003840,3108004863,DE 3108004864,3108005887,RU 3108005888,3108006910,US 3108006911,3108006911,LT 3108006912,3108007935,NL 3108007936,3108008959,DE 3108008960,3108009983,CH 3108009984,3108011007,NL 3108011008,3108012031,DE 3108012032,3108013055,FR 3108013056,3108014079,HR 3108014080,3108015103,NL 3108015104,3108015359,GB 3108015360,3108016127,IE 3108016128,3108017151,DE 3108017152,3108018175,FR 3108018176,3108019199,AT 3108019200,3108020223,DE 3108020224,3108021247,US 3108021248,3108022271,AT 3108022272,3108023295,DE 3108023296,3108024319,RS 3108024320,3108025343,IR 3108025344,3108026367,BE 3108026368,3108027391,CH 3108027392,3108028415,GB 3108028416,3108029439,NL 3108029440,3108030463,CH 3108030464,3108031487,KW 3108031488,3108032511,IT 3108032512,3108033535,RU 3108033536,3108034559,GB 3108034560,3108036607,CZ 3108036608,3108037631,GB 3108037632,3108038655,RU 3108038656,3108039679,ES 3108039680,3108040703,MD 3108040704,3108041727,ES 3108041728,3108044799,GB 3108044800,3108045823,LU 3108045824,3108046847,DE 3108046848,3108047871,HU 3108047872,3108050943,RU 3108050944,3108051967,GB 3108051968,3108052991,FR 3108052992,3108054015,GB 3108054016,3108055039,LV 3108055040,3108056063,GB 3108056064,3108057087,IT 3108057088,3108058111,LT 3108058112,3108059135,NL 3108059136,3108060159,FR 3108060160,3108061183,CH 3108061184,3108062207,ES 3108062208,3108063231,TR 3108063232,3108064255,BE 3108064256,3108065279,CZ 3108065280,3108066303,FR 3108066304,3108067327,GB 3108067328,3108068351,AT 3108068352,3108069375,CZ 3108069376,3108070399,FR 3108070400,3108073471,GB 3108073472,3108074495,FR 3108074496,3108075519,DK 3108075520,3108076543,BA 3108076544,3108077567,NL 3108077568,3108078591,GB 3108078592,3108079615,SE 3108079616,3108080639,RU 3108080640,3108081663,SE 3108081664,3108082687,GB 3108082688,3108083711,RU 3108083712,3108084735,NO 3108084736,3108085759,ES 3108085760,3108086783,LV 3108086784,3108087807,GB 3108087808,3108088831,CH 3108088832,3108089855,RU 3108089856,3108090879,SE 3108090880,3108091903,BE 3108091904,3108092927,ES 3108092928,3108093951,SE 3108093952,3108095999,DE 3108096000,3108096511,LT 3108096512,3108097023,RU 3108097024,3108098047,TR 3108098048,3108099071,DE 3108099072,3108100095,NL 3108100096,3108101119,IT 3108101120,3108102143,SK 3108102144,3108103167,FR 3108103168,3108104191,BA 3108104192,3108105215,AT 3108105216,3108106239,GB 3108106240,3108107263,DE 3108107264,3108108287,UA 3108108288,3108109311,FR 3108109312,3108110335,IQ 3108110336,3108111359,DK 3108111360,3108112383,GB 3108112384,3108113407,US 3108113408,3108114431,RU 3108114432,3108115455,AE 3108115456,3108116479,GB 3108116480,3108117503,IT 3108117504,3108118527,RU 3108118528,3108119551,GB 3108119552,3108120575,CZ 3108120576,3108122623,ES 3108122624,3108123647,AT 3108123648,3108124671,HU 3108124672,3108125695,ES 3108125696,3108126719,CH 3108126720,3108127743,DE 3108127744,3108128767,BY 3108128768,3108129791,ES 3108129792,3108130815,DE 3108130816,3108131839,NL 3108131840,3108132863,RU 3108132864,3108133887,GB 3108133888,3108134911,NL 3108134912,3108135935,LU 3108135936,3108136959,FR 3108136960,3108137983,NL 3108137984,3108139007,CH 3108139008,3108141055,GB 3108141056,3108142079,PL 3108142080,3108143103,TR 3108143104,3108144127,AL 3108144128,3108145151,DE 3108145152,3108146175,RO 3108146176,3108147199,NL 3108147200,3108148223,RU 3108148224,3108149247,SI 3108149248,3108150271,FR 3108150272,3108151295,CH 3108151296,3108152319,CY 3108152320,3108153343,GB 3108153344,3108154367,NL 3108154368,3108155391,ES 3108155392,3108156415,DE 3108156416,3108157439,GB 3108157440,3108158463,DK 3108158464,3108159487,CZ 3108159488,3108161535,DE 3108161536,3108162559,SK 3108162560,3108164607,GB 3108164608,3108165631,PL 3108165632,3108166655,RU 3108166656,3108167679,DE 3108167680,3108169727,IR 3108169728,3108170751,FR 3108170752,3108171775,DE 3108171776,3108172799,GB 3108172800,3108173823,DE 3108173824,3108174847,NL 3108174848,3108175871,KG 3108175872,3108176127,NL 3108176128,3108176895,UA 3108176896,3108177919,NL 3108177920,3108178943,PL 3108178944,3108179967,IR 3108179968,3108180991,NO 3108180992,3108182015,IE 3108182016,3108183039,DE 3108183040,3108184063,ES 3108184064,3108185087,TR 3108185088,3108186111,DE 3108186112,3108187135,NO 3108187136,3108188159,NL 3108188160,3108189183,GB 3108189184,3108190207,RU 3108190208,3108191231,SE 3108191232,3108193279,NL 3108193280,3108194303,PL 3108194304,3108195327,FR 3108195328,3108196351,ES 3108196352,3108197375,FI 3108197376,3108198399,IS 3108198400,3108199423,FR 3108199424,3108200447,RU 3108200448,3108201471,ES 3108201472,3108202495,IR 3108202496,3108203519,ES 3108203520,3108204543,AT 3108204544,3108205567,ES 3108205568,3108206591,NO 3108206592,3108208639,TR 3108208640,3108209663,DK 3108209664,3108210687,CZ 3108210688,3108211711,BR 3108211712,3108212735,GB 3108212736,3108215807,FR 3108215808,3108216831,DE 3108216832,3108217855,RU 3108217856,3108218111,GB 3108218112,3108218623,US 3108218624,3108218879,GB 3108218880,3108219903,RU 3108219904,3108220927,AT 3108220928,3108221951,AL 3108221952,3108222975,IS 3108222976,3108223999,GB 3108224000,3108225023,CZ 3108225024,3108227071,CH 3108227072,3108228095,NL 3108228096,3108229119,TR 3108229120,3108230143,ES 3108230144,3108231167,IR 3108231168,3108232191,PL 3108232192,3108233215,DE 3108233216,3108234239,NL 3108234240,3108235263,AT 3108235264,3108236287,GB 3108236288,3108237311,IT 3108237312,3108238335,LT 3108238336,3108239359,RU 3108239360,3108240383,GB 3108240384,3108241407,CZ 3108241408,3108242431,GB 3108242432,3108243455,AT 3108243456,3108244479,GE 3108244480,3108245503,PL 3108245504,3108246527,UA 3108246528,3108247551,RU 3108247552,3108248575,PL 3108248576,3108249599,CZ 3108249600,3108250623,CH 3108250624,3108251647,LT 3108251648,3108252671,DE 3108252672,3108253695,LU 3108253696,3108254719,ME 3108254720,3108255743,CH 3108255744,3108256767,FI 3108256768,3108257791,RS 3108257792,3108258815,CH 3108258816,3108259839,CZ 3108259840,3108260863,HU 3108260864,3108261887,DE 3108261888,3108262911,AE 3108262912,3108263935,GB 3108263936,3108264959,NL 3108264960,3108265983,RU 3108265984,3108267007,NL 3108267008,3108268031,RU 3108268032,3108269055,GB 3108269056,3108270079,ES 3108270080,3108271103,GB 3108271104,3108272127,RU 3108272128,3108273151,RO 3108273152,3108274175,DE 3108274176,3108275199,CY 3108275200,3108276223,HR 3108276224,3108277247,DE 3108277248,3108278271,GB 3108278272,3108279295,RU 3108279296,3108280319,FR 3108280320,3108281343,RU 3108281344,3108282367,DE 3108282368,3108283391,NL 3108283392,3108284415,CZ 3108284416,3108285439,NO 3108285440,3108286463,NL 3108286464,3108287487,IT 3108287488,3108288511,NL 3108288512,3108289535,RU 3108289536,3108290559,RO 3108290560,3108291583,IT 3108291584,3108292607,NL 3108292608,3108293631,GB 3108293632,3108294655,CH 3108294656,3108295679,EE 3108295680,3108297727,CZ 3108297728,3108298751,TR 3108298752,3108300799,FR 3108300800,3108301823,GB 3108301824,3108302847,CH 3108302848,3108303871,NL 3108303872,3108304895,RU 3108304896,3108305919,GB 3108305920,3108306943,DE 3108306944,3108307967,PL 3108307968,3108308991,IQ 3108308992,3108310015,ES 3108310016,3108312063,GB 3108312064,3108313087,PL 3108313088,3108314111,LV 3108314112,3108315135,BA 3108315136,3108316159,NL 3108316160,3108317183,FI 3108317184,3108318207,CH 3108318208,3108319231,SE 3108319232,3108320255,SK 3108320256,3108321279,LT 3108321280,3108322303,RO 3108322304,3108323327,NL 3108323328,3108324351,GB 3108324352,3108325375,CZ 3108325376,3108326399,FI 3108326400,3108327423,FR 3108327424,3108328447,RU 3108328448,3108329471,GB 3108329472,3108330495,NL 3108330496,3108331519,CH 3108331520,3108332543,HU 3108332544,3108333567,NL 3108333568,3108334591,SK 3108334592,3108335615,IR 3108335616,3108336639,NL 3108336640,3108337663,GB 3108337664,3108338687,IR 3108338688,3108339711,RU 3108339712,3108340735,NL 3108340736,3108341759,RU 3108341760,3108342783,CH 3108342784,3108343807,FI 3108343808,3108344831,GB 3108344832,3108345855,SI 3108345856,3108346879,UA 3108346880,3108347903,NL 3108347904,3108348927,AT 3108348928,3108349951,BE 3108349952,3108350975,SE 3108350976,3108351999,GE 3108352000,3108354047,DE 3108354048,3108355071,TM 3108355072,3108356095,IT 3108356096,3108358143,PL 3108358144,3108359167,DE 3108359168,3108360191,NL 3108360192,3108361215,SA 3108361216,3108362239,IE 3108362240,3108363263,LU 3108363264,3108364287,RU 3108364288,3108365311,LU 3108365312,3108366335,FR 3108366336,3108367359,NL 3108367360,3108368383,AT 3108368384,3108369407,RO 3108369408,3108370431,AT 3108370432,3108371455,FR 3108371456,3108372479,ES 3108372480,3108373503,SK 3108373504,3108374527,NL 3108374528,3108375551,GB 3108375552,3108376575,BY 3108376576,3108377599,UA 3108377600,3108378623,DE 3108378624,3108379647,CZ 3108379648,3108380671,IE 3108380672,3108381695,GB 3108381696,3108382719,PL 3108382720,3108383743,CH 3108383744,3108384767,BE 3108384768,3108385791,CH 3108385792,3108386815,GE 3108386816,3108387839,GB 3108387840,3108388863,IR 3108388864,3108389887,NL 3108389888,3108390911,CH 3108390912,3108391935,BE 3108391936,3108392959,GR 3108392960,3108393983,LI 3108393984,3108395007,TR 3108395008,3108396031,GB 3108396032,3108397055,ES 3108397056,3108398079,TR 3108398080,3108399103,PT 3108399104,3108400127,RU 3108400128,3108401151,UA 3108401152,3108402175,NL 3108402176,3108403199,KZ 3108403200,3108404223,DE 3108404224,3108405247,SE 3108405248,3108406271,UA 3108406272,3108407295,GB 3108407296,3108408319,ES 3108408320,3108409343,TR 3108409344,3108410367,DE 3108410368,3108411391,IT 3108411392,3108412415,ES 3108412416,3108414463,GB 3108414464,3108415487,RU 3108415488,3108416511,GB 3108416512,3108417535,ES 3108417536,3108418559,FR 3108418560,3108419583,PL 3108419584,3108420607,NL 3108420608,3108421631,MD 3108421632,3108422655,GB 3108422656,3108423679,IR 3108423680,3108424703,IT 3108424704,3108425727,DE 3108425728,3108427775,NL 3108427776,3108428799,CZ 3108428800,3108429823,DE 3108429824,3108430847,LB 3108430848,3108433919,NL 3108433920,3108434943,GB 3108434944,3108435967,CH 3108435968,3108436991,IL 3108436992,3108438015,GB 3108438016,3108439039,US 3108439040,3108440063,DE 3108440064,3108441087,IT 3108441088,3108443135,CH 3108443136,3108444159,PL 3108444160,3108445183,GB 3108445184,3108446207,ES 3108446208,3108447231,DE 3108447232,3108448255,GB 3108448256,3108449279,CZ 3108449280,3108450303,IT 3108450304,3108451327,GB 3108451328,3108452351,RU 3108452352,3108453375,LU 3108453376,3108454399,NL 3108454400,3108456447,RU 3108456448,3108457471,GB 3108457472,3108459519,RU 3108459520,3108460543,DE 3108460544,3108461567,RO 3108461568,3108462591,DE 3108462592,3108463615,RU 3108463616,3108464639,GB 3108464640,3108465663,HU 3108465664,3108466687,GB 3108466688,3108467711,CH 3108467712,3108468735,TR 3108468736,3108470783,DE 3108470784,3108471807,LV 3108471808,3108472831,YE 3108472832,3108473855,GB 3108473856,3108474879,PS 3108474880,3108475903,RU 3108475904,3108476927,FR 3108476928,3108477951,IR 3108477952,3108478975,FR 3108478976,3108479999,IE 3108480000,3108481023,AT 3108481024,3108482047,DE 3108482048,3108483071,SI 3108483072,3108484095,SE 3108484096,3108485119,AL 3108485120,3108486143,GB 3108486144,3108487167,FR 3108487168,3108488191,IR 3108488192,3108489215,RU 3108489216,3108490239,ES 3108490240,3108491263,AE 3108491264,3108492287,NO 3108492288,3108493311,RU 3108493312,3108494335,CY 3108494336,3108496383,NL 3108496384,3108497407,DE 3108497408,3108498431,CZ 3108498432,3108499455,HR 3108499456,3108500479,PL 3108500480,3108501503,IT 3108501504,3108502527,DE 3108502528,3108503551,AT 3108503552,3108504575,CH 3108504576,3108505599,FR 3108505600,3108506623,RU 3108506624,3108507647,ES 3108507648,3108508671,HU 3108508672,3108509695,CH 3108509696,3108510719,IR 3108510720,3108511743,SI 3108511744,3108512767,PL 3108512768,3108513791,DK 3108513792,3108514815,IT 3108514816,3108515839,ES 3108515840,3108516863,UA 3108516864,3108517887,ES 3108517888,3108518911,BG 3108518912,3108519935,SI 3108519936,3108520959,CH 3108520960,3108521983,DE 3108521984,3108523007,AT 3108523008,3108524031,IT 3108524032,3108525055,FR 3108525056,3108526079,LV 3108526080,3108527103,FR 3108527104,3108528127,GB 3108528128,3108529151,NO 3108529152,3108530175,JO 3108530176,3108531199,SI 3108531200,3108532223,GB 3108532224,3108533247,ES 3108533248,3108534271,FI 3108534272,3108536319,NL 3108536320,3108537343,GB 3108537344,3108538367,NL 3108538368,3108539391,AT 3108539392,3108540415,DK 3108540416,3108541439,RU 3108541440,3108542463,GR 3108542464,3108543487,PT 3108543488,3108544511,US 3108544512,3108546559,NL 3108546560,3108547583,BE 3108547584,3108548607,GB 3108548608,3108549631,RO 3108549632,3108550655,NL 3108550656,3108551679,PL 3108551680,3108552703,RU 3108552704,3108553727,CH 3108553728,3108554751,PL 3108554752,3108555775,DE 3108555776,3108556799,LV 3108556800,3108557823,DK 3108557824,3108558847,ES 3108558848,3108559871,LB 3108559872,3108560895,NO 3108560896,3108562943,RU 3108562944,3108563967,DE 3108563968,3108564991,CH 3108564992,3108566015,RO 3108566016,3108567039,DE 3108567040,3108568063,FR 3108568064,3108569087,TR 3108569088,3108570111,IR 3108570112,3108571135,SI 3108571136,3108572159,GB 3108572160,3108573183,NO 3108573184,3108574207,RU 3108574208,3108575231,DE 3108575232,3108576255,NO 3108576256,3108578303,NL 3108578304,3108579327,GB 3108579328,3108580351,GR 3108580352,3108581375,GB 3108581376,3108582399,DE 3108582400,3108583423,FR 3108583424,3108584447,BG 3108584448,3108585471,PL 3108585472,3108586495,GB 3108586496,3108587519,EE 3108587520,3108588543,DK 3108588544,3108589567,IR 3108589568,3108590591,DE 3108590592,3108591615,GB 3108591616,3108592639,PL 3108592640,3108593663,NL 3108593664,3108594687,ES 3108594688,3108597759,CZ 3108597760,3108598783,IR 3108598784,3108600831,CH 3108600832,3108601855,NL 3108601856,3108602879,TR 3108602880,3108603903,EE 3108603904,3108604927,IT 3108604928,3108605951,GB 3108605952,3108606975,NL 3108606976,3108609023,GB 3108609024,3108610047,LI 3108610048,3108611071,CZ 3108611072,3108612095,IT 3108612096,3108615167,ES 3108615168,3108616191,RU 3108616192,3108617215,GB 3108617216,3108618239,ES 3108618240,3108619263,RU 3108619264,3108620287,DK 3108620288,3108621311,TR 3108621312,3108622335,FR 3108622336,3108623359,PL 3108623360,3108625407,RU 3108625408,3108626431,NL 3108626432,3108627455,CZ 3108627456,3108628479,PL 3108628480,3108629503,FR 3108629504,3108630527,BG 3108630528,3108631551,CH 3108631552,3108633599,IT 3108633600,3108634623,FR 3108634624,3108635647,AT 3108635648,3108636671,UZ 3108636672,3108637695,FR 3108637696,3108638719,DE 3108638720,3108639743,ES 3108639744,3108640767,TR 3108640768,3108641791,GB 3108641792,3108642815,CH 3108642816,3108643839,FR 3108643840,3108644863,IT 3108644864,3108645887,FR 3108645888,3108646911,US 3108646912,3108647935,DK 3108647936,3108648959,FR 3108648960,3108649983,IM 3108649984,3108651007,CZ 3108651008,3108652031,DE 3108652032,3108653055,CH 3108653056,3108654079,GI 3108654080,3108655103,NL 3108655104,3108656127,ES 3108656128,3108657151,PL 3108657152,3108658175,RS 3108658176,3108659199,GE 3108659200,3108660223,FR 3108660224,3108661247,UZ 3108661248,3108662271,RU 3108662272,3108676607,CH 3108676608,3108677631,IR 3108677632,3108678655,GB 3108678656,3108679679,RU 3108679680,3108680703,GB 3108680704,3108681727,DE 3108681728,3108682751,RU 3108682752,3108683775,IT 3108683776,3108684799,ES 3108684800,3108685823,SK 3108685824,3108686847,FR 3108686848,3108687871,CZ 3108687872,3108688895,FO 3108688896,3108689919,CH 3108689920,3108690943,DE 3108690944,3108691967,RU 3108691968,3108692991,DE 3108692992,3108694015,RU 3108694016,3108696063,GB 3108696064,3108697087,ES 3108697088,3108698111,DE 3108698112,3108699135,IT 3108699136,3108700159,CZ 3108700160,3108701183,PL 3108701184,3108702207,RU 3108702208,3108703231,AT 3108703232,3108704255,ES 3108704256,3108705279,SA 3108705280,3108706303,ES 3108706304,3108707327,DE 3108707328,3108708351,GB 3108708352,3108709375,CH 3108709376,3108710399,PL 3108710400,3108711423,SE 3108711424,3108712447,RU 3108712448,3108713471,BG 3108713472,3108714495,RO 3108714496,3108715519,RS 3108715520,3108716543,GB 3108716544,3108717567,RU 3108717568,3108718591,FR 3108718592,3108719615,DE 3108719616,3108720639,IT 3108720640,3108721663,GI 3108721664,3108723711,RU 3108723712,3108724735,GB 3108724736,3108725759,IQ 3108725760,3108726783,DE 3108726784,3108727807,GB 3108727808,3108728831,IT 3108728832,3108729855,NL 3108729856,3108730879,CZ 3108730880,3108731903,GB 3108731904,3108732927,FR 3108732928,3108733951,FI 3108733952,3108734975,RU 3108734976,3108735999,CZ 3108736000,3108737023,FR 3108737024,3108738047,IE 3108738048,3108739071,DE 3108739072,3108740095,CH 3108740096,3108741119,NL 3108741120,3108742143,PL 3108742144,3108743167,DE 3108743168,3108744191,NL 3108744192,3108745215,GB 3108745216,3108746239,ES 3108746240,3108747263,RU 3108747264,3108748287,DE 3108748288,3108749311,RU 3108749312,3108750335,HU 3108750336,3108751359,IR 3108751360,3108752383,RU 3108752384,3108753407,IR 3108753408,3108754431,NL 3108754432,3108755455,GB 3108755456,3108756479,AT 3108756480,3108757503,NL 3108757504,3108758527,FR 3108758528,3108759551,DE 3108759552,3108760575,CZ 3108760576,3108761599,LV 3108761600,3108761791,GB 3108761792,3108761855,AT 3108761856,3108762623,GB 3108762624,3108763647,NL 3108763648,3108764671,RU 3108764672,3108765695,NL 3108765696,3108766719,FR 3108766720,3108767743,PT 3108767744,3108768767,CZ 3108768768,3108769791,UA 3108769792,3108770815,NL 3108770816,3108772863,FR 3108772864,3108773887,RO 3108773888,3108774911,IQ 3108774912,3108775935,GB 3108775936,3108776959,DE 3108776960,3108779007,GB 3108779008,3108780031,RO 3108780032,3108781055,IT 3108781056,3108782079,RO 3108782080,3108783103,SE 3108783104,3108784127,UA 3108784128,3108785151,NL 3108785152,3108786175,ES 3108786176,3108787199,RU 3108787200,3108788223,NO 3108788224,3108789247,NL 3108789248,3108790271,GB 3108790272,3108791295,DE 3108791296,3108792319,IT 3108792320,3108793343,PL 3108793344,3108794367,RU 3108794368,3108795391,FR 3108795392,3108796415,DE 3108796416,3108797439,FR 3108797440,3108798463,NL 3108798464,3108799487,AE 3108799488,3108800511,NL 3108800512,3108801535,SA 3108801536,3108802559,TR 3108802560,3108803583,RU 3108803584,3108804607,GB 3108804608,3108805631,TR 3108805632,3108808703,DE 3108808704,3108809727,NL 3108809728,3108810751,DE 3108810752,3108811775,LB 3108811776,3108812799,CH 3108812800,3108813823,GB 3108813824,3108814847,DE 3108814848,3108815871,FR 3108815872,3108817919,TR 3108817920,3108818943,AE 3108818944,3108819967,GB 3108819968,3108822015,ES 3108822016,3108823039,RU 3108823040,3108825087,IE 3108825088,3108826111,RU 3108826112,3108827135,NL 3108827136,3108828159,RU 3108828160,3108829183,MT 3108829184,3108830207,IR 3108830208,3108831231,RU 3108831232,3108832255,TR 3108832256,3108833279,GB 3108833280,3108834303,RU 3108834304,3108835327,BE 3108835328,3108836351,RU 3108836352,3108837375,GB 3108837376,3108838399,NL 3108838400,3108839423,GE 3108839424,3108840447,IT 3108840448,3108841471,GR 3108841472,3108842495,TR 3108842496,3108843519,LI 3108843520,3108844543,IT 3108844544,3108845567,LI 3108845568,3108846591,GB 3108846592,3108847615,BE 3108847616,3108847639,GB 3108847640,3108847647,IT 3108847648,3108847959,GB 3108847960,3108847967,IT 3108847968,3108848639,GB 3108848640,3108849663,CH 3108849664,3108850687,GB 3108850688,3108851711,PL 3108851712,3108852735,GB 3108852736,3108853759,IT 3108853760,3108854783,TR 3108854784,3108855807,CH 3108855808,3108856831,LT 3108856832,3108857855,UA 3108857856,3108858879,DE 3108858880,3108859903,AT 3108859904,3108860927,FR 3108860928,3108861951,NO 3108861952,3108862975,NL 3108862976,3108863999,BG 3108864000,3108865023,NL 3108865024,3108866047,ES 3108866048,3108867071,RU 3108867072,3108868095,GB 3108868096,3108869119,SK 3108869120,3108870143,RU 3108870144,3108871167,GB 3108871168,3108872191,ES 3108872192,3108873215,IT 3108873216,3108873343,SG 3108873344,3108873471,MY 3108873472,3108873599,SG 3108873600,3108873727,MY 3108873728,3108873855,SG 3108873856,3108873983,ID 3108873984,3108874111,SG 3108874112,3108874239,ID 3108874240,3108875263,ES 3108875264,3108876287,GB 3108876288,3108877311,ES 3108877312,3108878335,FR 3108878336,3108879359,ES 3108879360,3108880383,NL 3108880384,3108881407,AM 3108881408,3108882431,BE 3108882432,3108883455,GB 3108883456,3108884479,RU 3108884480,3108885503,NL 3108885504,3108886527,BE 3108886528,3108888575,RU 3108888576,3108889599,VA 3108889600,3108893695,RU 3108893696,3108894719,FI 3108894720,3108895743,RO 3108895744,3108896767,AT 3108896768,3108897791,ES 3108897792,3108899839,GB 3108899840,3108900863,CZ 3108900864,3108901887,IT 3108901888,3108902911,IR 3108902912,3108903935,ES 3108903936,3108905983,RU 3108905984,3108907007,BG 3108907008,3108907263,DE 3108907264,3108907279,NL 3108907280,3108907295,BE 3108907296,3108907311,GB 3108907312,3108907327,DK 3108907328,3108907343,ES 3108907344,3108907359,IT 3108907360,3108907375,FR 3108907376,3108907391,AT 3108907392,3108907407,CH 3108907408,3108907423,US 3108907424,3108908031,DE 3108908032,3108909055,EE 3108909056,3108910079,IT 3108910080,3108911103,GB 3108911104,3108912127,CZ 3108912128,3108913151,DE 3108913152,3108914175,IT 3108914176,3108915199,NO 3108915200,3108916223,PL 3108916224,3108917247,RU 3108917248,3108918271,FR 3108918272,3108919295,TR 3108919296,3108920319,GB 3108920320,3108921343,RU 3108921344,3108922367,NL 3108922368,3108923391,CZ 3108923392,3108924415,IR 3108924416,3108927487,RU 3108927488,3108929535,CH 3108929536,3108930559,CY 3108930560,3108931583,PL 3108931584,3108932607,UZ 3108932608,3108933631,FR 3108933632,3108934655,AM 3108934656,3108935679,PL 3108935680,3108936703,SK 3108936704,3108937727,FR 3108937728,3108938751,NL 3108938752,3108940799,GB 3108940800,3108941823,SE 3108941824,3108942847,DE 3108942848,3108943871,BE 3108943872,3108944895,DE 3108944896,3108945919,CH 3108945920,3108946943,GB 3108946944,3108947967,NL 3108947968,3108948991,RU 3108948992,3108950015,GB 3108950016,3108951039,NO 3108951040,3108952063,ES 3108952064,3108953087,GB 3108953088,3108954111,GR 3108954112,3108955135,AL 3108955136,3108956159,NO 3108956160,3108956671,UA 3108956672,3108957183,TJ 3108957184,3108958207,RU 3108958208,3108959231,SI 3108959232,3108960255,AE 3108960256,3108961279,NL 3108961280,3108962303,DE 3108962304,3108963327,AM 3108963328,3108964351,ES 3108964352,3108965375,NL 3108965376,3108966399,TR 3108966400,3108967423,BY 3108967424,3108968447,ES 3108968448,3108969471,DE 3108969472,3108970495,ES 3108970496,3108971519,PL 3108971520,3108972543,ES 3108972544,3108973567,NL 3108973568,3108974591,DE 3108974592,3108975615,RU 3108975616,3108976639,IT 3108976640,3108977663,GB 3108977664,3108978687,IR 3108978688,3108979711,DE 3108979712,3108980735,RU 3108980736,3108981759,DE 3108981760,3108982783,RU 3108982784,3108983807,NL 3108983808,3108984831,NO 3108984832,3108985855,CH 3108985856,3108986879,HU 3108986880,3108987903,IR 3108987904,3108988927,RU 3108988928,3108989951,CH 3108989952,3108991999,GB 3108992000,3108993023,RU 3108993024,3108994047,BG 3108994048,3108995071,DE 3108995072,3108996095,ES 3108996096,3108998143,RU 3108998144,3108999167,GB 3108999168,3109000191,ES 3109000192,3109001215,FR 3109001216,3109002239,NL 3109002240,3109003263,IR 3109003264,3109004287,NL 3109004288,3109005311,SE 3109005312,3109006335,DE 3109006336,3109007359,ES 3109007360,3109008383,GB 3109008384,3109009407,CH 3109009408,3109010431,GB 3109010432,3109011455,GR 3109011456,3109012479,FR 3109012480,3109013503,DE 3109013504,3109015551,CH 3109015552,3109016575,DE 3109016576,3109017599,KZ 3109017600,3109018623,DE 3109018624,3109019647,FR 3109019648,3109020671,PT 3109020672,3109021695,BA 3109021696,3109022719,CH 3109022720,3109023743,RU 3109023744,3109024767,PL 3109024768,3109025791,LT 3109025792,3109026815,SA 3109026816,3109027839,CH 3109027840,3109028863,BG 3109028864,3109029887,ES 3109029888,3109030911,NL 3109030912,3109031935,GB 3109031936,3109032959,FR 3109032960,3109033983,TR 3109033984,3109035007,JO 3109035008,3109036031,RU 3109036032,3109037055,PL 3109037056,3109038079,NL 3109038080,3109039103,IQ 3109039104,3109040127,YE 3109040128,3109041151,HU 3109041152,3109042175,NL 3109042176,3109043199,PL 3109043200,3109044223,NO 3109044224,3109045247,CH 3109045248,3109046271,RS 3109046272,3109047295,TR 3109047296,3109048319,PT 3109048320,3109050367,GB 3109050368,3109051391,CH 3109051392,3109052415,DE 3109052416,3109053439,ME 3109053440,3109054463,RU 3109054464,3109055487,JO 3109055488,3109056511,IL 3109056512,3109058559,GB 3109058560,3109059583,DE 3109059584,3109060607,LU 3109060608,3109061631,LT 3109061632,3109062655,GB 3109062656,3109063679,TR 3109063680,3109064703,YE 3109064704,3109065727,DE 3109065728,3109066751,RU 3109066752,3109067775,UA 3109067776,3109068799,NO 3109068800,3109069823,PL 3109069824,3109070847,MK 3109070848,3109071871,DE 3109071872,3109072895,AZ 3109072896,3109073919,GB 3109073920,3109074943,NO 3109074944,3109075967,DE 3109075968,3109076991,AT 3109076992,3109078015,HR 3109078016,3109079039,IR 3109079040,3109080063,US 3109080064,3109081087,RU 3109081088,3109082111,SE 3109082112,3109083135,PL 3109083136,3109084159,SE 3109084160,3109084170,GB 3109084171,3109084171,NL 3109084172,3109085183,GB 3109085184,3109086207,AL 3109086208,3109087231,RU 3109087232,3109088255,NL 3109088256,3109089279,LV 3109089280,3109090303,AT 3109090304,3109091327,NL 3109091328,3109092351,RU 3109092352,3109093375,SE 3109093376,3109095423,IT 3109095424,3109096447,NL 3109096448,3109097471,NO 3109097472,3109098495,GB 3109098496,3109099519,HU 3109099520,3109100543,RU 3109100544,3109101567,SI 3109101568,3109102591,TR 3109102592,3109103615,DK 3109103616,3109104639,IR 3109104640,3109105663,FR 3109105664,3109106687,LV 3109106688,3109107711,FR 3109107712,3109108735,PL 3109108736,3109109759,RS 3109109760,3109110783,RU 3109110784,3109111807,FI 3109111808,3109112831,IE 3109112832,3109113855,ES 3109113856,3109115903,AZ 3109115904,3109116927,AU 3109116928,3109117951,GE 3109117952,3109118975,IR 3109118976,3109119999,DE 3109120000,3109121023,PL 3109121024,3109122047,SE 3109122048,3109122559,GB 3109122560,3109123071,NL 3109123072,3109124095,DK 3109124096,3109126143,ES 3109126144,3109127167,LV 3109127168,3109128191,ES 3109128192,3109128207,NL 3109128208,3109128215,GB 3109128216,3109128223,AT 3109128224,3109128231,DK 3109128232,3109128239,SE 3109128240,3109128247,IS 3109128248,3109128319,NL 3109128320,3109128383,GB 3109128384,3109128503,NL 3109128504,3109128511,IE 3109128512,3109128719,NL 3109128720,3109128727,GB 3109128728,3109128735,AT 3109128736,3109128743,DK 3109128744,3109128751,SE 3109128752,3109128759,IE 3109128760,3109128760,IT 3109128761,3109128831,NL 3109128832,3109128895,BE 3109128896,3109128975,NL 3109128976,3109128983,DK 3109128984,3109128991,SE 3109128992,3109128999,IT 3109129000,3109129007,DK 3109129008,3109129015,SE 3109129016,3109129023,IE 3109129024,3109129215,NL 3109129216,3109130239,LB 3109130240,3109131263,RU 3109131264,3109132287,DE 3109132288,3109133311,TR 3109133312,3109134335,FR 3109134336,3109135359,GB 3109135360,3109136383,RO 3109136384,3109137407,GB 3109137408,3109138431,RU 3109138432,3109139455,GB 3109139456,3109140479,ES 3109140480,3109141503,RU 3109141504,3109143551,GB 3109143552,3109144575,GR 3109144576,3109145599,FR 3109145600,3109148671,AT 3109148672,3109149695,AZ 3109149696,3109150719,RU 3109150720,3109151743,BE 3109151744,3109152767,HR 3109152768,3109153791,GB 3109153792,3109154815,TR 3109154816,3109155839,AT 3109155840,3109156863,GB 3109156864,3109157887,RU 3109157888,3109158911,GB 3109158912,3109159935,IT 3109159936,3109160959,DE 3109160960,3109161983,GB 3109161984,3109163007,RU 3109163008,3109164031,AT 3109164032,3109165055,DE 3109165056,3109166079,RU 3109166080,3109167103,IR 3109167104,3109168127,LB 3109168128,3109169151,BG 3109169152,3109170175,DE 3109170176,3109171199,IE 3109171200,3109172223,GI 3109172224,3109173247,IL 3109173248,3109174271,ES 3109174272,3109175295,GB 3109175296,3109176319,IR 3109176320,3109177343,IL 3109177344,3109178367,IE 3109178368,3109179391,GB 3109179392,3109180415,ES 3109180416,3109181439,DE 3109181440,3109182463,NL 3109182464,3109183487,LT 3109183488,3109184511,LB 3109184512,3109185535,CH 3109185536,3109187583,RS 3109187584,3109188607,IT 3109188608,3109189631,SA 3109189632,3109190655,AT 3109190656,3109191679,NL 3109191680,3109192703,CH 3109192704,3109193727,IT 3109193728,3109194751,IR 3109194752,3109195775,NL 3109195776,3109196799,FI 3109196800,3109197823,FR 3109197824,3109198847,NL 3109198848,3109199871,GB 3109199872,3109200895,DE 3109200896,3109201919,IR 3109201920,3109202943,IT 3109202944,3109203967,RO 3109203968,3109204991,RU 3109204992,3109206015,IR 3109206016,3109209087,NL 3109209088,3109210111,GB 3109210112,3109211135,NL 3109211136,3109212159,CH 3109212160,3109213183,NL 3109213184,3109214207,CZ 3109214208,3109215231,BG 3109215232,3109216255,TR 3109216256,3109217279,IT 3109217280,3109218303,DK 3109218304,3109219327,HU 3109219328,3109220351,CZ 3109220352,3109221375,IE 3109221376,3109222399,GB 3109222400,3109223423,PL 3109223424,3109224447,TR 3109224448,3109225471,RU 3109225472,3109226495,EE 3109226496,3109227519,NL 3109227520,3109228543,GB 3109228544,3109230591,NO 3109230592,3109231615,FR 3109231616,3109232639,IR 3109232640,3109233663,NL 3109233664,3109234687,GE 3109234688,3109235711,GB 3109235712,3109236735,PL 3109236736,3109237759,BE 3109237760,3109238783,GB 3109238784,3109239807,CZ 3109239808,3109240831,CH 3109240832,3109241855,GB 3109241856,3109242879,FR 3109242880,3109245951,IR 3109245952,3109246975,GB 3109246976,3109247999,IR 3109248000,3109249023,SE 3109249024,3109250047,FR 3109250048,3109251071,GB 3109251072,3109252095,ES 3109252096,3109253119,CH 3109253120,3109254143,IR 3109254144,3109255167,FI 3109255168,3109256191,GB 3109256192,3109257215,AZ 3109257216,3109258239,GB 3109258240,3109259263,ES 3109259264,3109260287,BE 3109260288,3109261311,DE 3109261312,3109262335,TR 3109262336,3109263359,GI 3109263360,3109264383,GB 3109264384,3109265407,US 3109265408,3109266431,ES 3109266432,3109267455,NO 3109267456,3109268479,GB 3109268480,3109269503,IT 3109269504,3109270527,GB 3109270528,3109272575,IR 3109272576,3109273599,FR 3109273600,3109274623,NO 3109274624,3109276671,IR 3109276672,3109277695,FI 3109277696,3109278719,IR 3109278720,3109279743,PT 3109279744,3109280767,NL 3109280768,3109281791,IL 3109281792,3109282815,HU 3109282816,3109283839,DE 3109283840,3109284863,IE 3109284864,3109285887,FR 3109285888,3109286911,RU 3109286912,3109287935,TR 3109287936,3109288959,PT 3109288960,3109289983,MK 3109289984,3109291007,NL 3109291008,3109292031,CH 3109292032,3109293055,IE 3109293056,3109294591,GB 3109294592,3109294847,FR 3109294848,3109295103,GB 3109295104,3109296127,DE 3109296128,3109297151,BE 3109297152,3109298175,SE 3109298176,3109299199,RU 3109299200,3109300223,NO 3109300224,3109301247,RU 3109301248,3109302271,ES 3109302272,3109303295,AE 3109303296,3109304319,SE 3109304320,3109305343,DE 3109305344,3109306367,DK 3109306368,3109307391,RO 3109307392,3109308415,IQ 3109308416,3109309439,NL 3109309440,3109310463,CH 3109310464,3109311487,DE 3109311488,3109312511,GB 3109312512,3109313535,IT 3109313536,3109314559,GB 3109314560,3109315583,IT 3109315584,3109316607,SI 3109316608,3109317631,LB 3109317632,3109318655,RU 3109318656,3109319679,FR 3109319680,3109320703,ES 3109320704,3109321727,DE 3109321728,3109322751,GR 3109322752,3109323775,ES 3109323776,3109324799,DK 3109324800,3109325823,PL 3109325824,3109326847,NL 3109326848,3109327871,BA 3109327872,3109328895,UA 3109328896,3109329919,CZ 3109329920,3109330943,RU 3109330944,3109331967,IR 3109331968,3109332991,SA 3109332992,3109334015,IT 3109334016,3109335039,RU 3109335040,3109336063,IT 3109336064,3109337087,TR 3109337088,3109339135,RU 3109339136,3109340159,CH 3109340160,3109341183,NL 3109341184,3109342207,GB 3109342208,3109343231,ES 3109343232,3109344255,CH 3109344256,3109345279,SE 3109345280,3109346303,DE 3109346304,3109347327,IR 3109347328,3109348351,LB 3109348352,3109349375,IT 3109349376,3109350399,CZ 3109350400,3109351423,SY 3109351424,3109352447,SE 3109352448,3109353471,RU 3109353472,3109354495,SE 3109354496,3109355519,IE 3109355520,3109356543,DE 3109356544,3109357567,DK 3109357568,3109359615,RU 3109359616,3109360639,NL 3109360640,3109362687,IT 3109362688,3109364735,AT 3109364736,3109365759,SK 3109365760,3109366783,GB 3109366784,3109367807,DK 3109367808,3109368831,DE 3109368832,3109369855,FI 3109369856,3109371903,GB 3109371904,3109372927,AT 3109372928,3109373951,IR 3109373952,3109374975,TR 3109374976,3109375999,FR 3109376000,3109377023,NL 3109377024,3109379071,GB 3109379072,3109380095,CZ 3109380096,3109381119,GB 3109381120,3109382143,SE 3109382144,3109383167,TR 3109383168,3109384191,CH 3109384192,3109385215,NL 3109385216,3109386239,GB 3109386240,3109387263,RU 3109387264,3109388287,CH 3109388288,3109389311,NO 3109389312,3109390335,DE 3109390336,3109391359,IR 3109391360,3109392383,NL 3109392384,3109393407,CH 3109393408,3109394431,SI 3109394432,3109395455,AL 3109395456,3109396479,SE 3109396480,3109397503,DE 3109397504,3109398527,CZ 3109398528,3109399551,CH 3109399552,3109400575,BE 3109400576,3109402623,RO 3109402624,3109403647,GB 3109403648,3109404671,TR 3109404672,3109405695,IT 3109405696,3109406719,UA 3109406720,3109407743,RO 3109407744,3109408767,TR 3109408768,3109409791,IR 3109409792,3109410815,IT 3109410816,3109411839,RU 3109411840,3109412863,DE 3109412864,3109413887,FR 3109413888,3109414911,CH 3109414912,3109415935,FR 3109415936,3109416959,TR 3109416960,3109417983,FR 3109417984,3109419007,GB 3109419008,3109420031,CH 3109420032,3109421055,IT 3109421056,3109422079,UA 3109422080,3109423103,TR 3109423104,3109424127,ES 3109424128,3109425151,TR 3109425152,3109426175,BE 3109426176,3109427199,GB 3109427200,3109428223,AT 3109428224,3109429247,CH 3109429248,3109430271,ES 3109430272,3109431295,IR 3109431296,3109432319,IL 3109432320,3109433343,MT 3109433344,3109435391,FR 3109435392,3109436415,UA 3109436416,3109437439,SM 3109437440,3109438463,RO 3109438464,3109439487,DK 3109439488,3109440511,ES 3109440512,3109441535,UA 3109441536,3109442559,TR 3109442560,3109443583,IT 3109443584,3109444607,FR 3109444608,3109445631,RU 3109445632,3109446655,CZ 3109446656,3109448703,SE 3109448704,3109449727,GB 3109449728,3109453823,RU 3109453824,3109454847,IT 3109454848,3109455871,RU 3109455872,3109456895,FR 3109456896,3109457919,PS 3109457920,3109458943,RU 3109458944,3109459711,SE 3109459712,3109459967,GB 3109459968,3109460991,TR 3109460992,3109462015,DE 3109462016,3109463039,LB 3109463040,3109464063,TR 3109464064,3109465087,FR 3109465088,3109466111,DE 3109466112,3109467135,FR 3109467136,3109468159,IR 3109468160,3109468351,GB 3109468352,3109468415,ES 3109468416,3109468671,GB 3109468672,3109468799,ES 3109468800,3109469183,GB 3109469184,3109470207,DE 3109470208,3109471231,AM 3109471232,3109472255,FR 3109472256,3109473279,IT 3109473280,3109474303,IL 3109474304,3109476351,ES 3109476352,3109477375,GB 3109477376,3109478399,IS 3109478400,3109480447,CH 3109480448,3109481471,DE 3109481472,3109482495,MK 3109482496,3109483519,RS 3109483520,3109484543,TR 3109484544,3109485567,ES 3109485568,3109486591,FR 3109486592,3109487615,DE 3109487616,3109488639,BE 3109488640,3109489663,NL 3109489664,3109490687,GB 3109490688,3109491711,AT 3109491712,3109492735,DE 3109492736,3109493759,TR 3109493760,3109494783,IT 3109494784,3109495807,GB 3109495808,3109498879,AD 3109498880,3109499903,RU 3109499904,3109500927,NO 3109500928,3109502975,GB 3109502976,3109503999,LB 3109504000,3109505023,IT 3109505024,3109506047,DE 3109506048,3109507071,IT 3109507072,3109508095,DK 3109508096,3109509119,ES 3109509120,3109511167,FR 3109511168,3109512191,ES 3109512192,3109513215,FR 3109513216,3109514239,NL 3109514240,3109515263,FI 3109515264,3109516287,CH 3109516288,3109517311,NL 3109517312,3109518335,TR 3109518336,3109519359,BE 3109519360,3109520383,ES 3109520384,3109521407,DE 3109521408,3109522431,PL 3109522432,3109523455,CZ 3109523456,3109524479,PL 3109524480,3109525503,GB 3109525504,3109527551,NL 3109527552,3109528575,IL 3109528576,3109529599,SE 3109529600,3109530623,LB 3109530624,3109531647,TR 3109531648,3109532671,DE 3109532672,3109533695,IR 3109533696,3109534719,NL 3109534720,3109535743,ES 3109535744,3109537791,RU 3109537792,3109538815,NL 3109538816,3109539839,LV 3109539840,3109541887,GB 3109541888,3109542911,EE 3109542912,3109543935,GB 3109543936,3109544959,DE 3109544960,3109545983,FR 3109545984,3109547007,PL 3109547008,3109548031,AT 3109548032,3109549055,IT 3109549056,3109550079,FI 3109550080,3109551103,NL 3109551104,3109552127,TR 3109552128,3109553151,ES 3109553152,3109554175,TR 3109554176,3109555199,RU 3109555200,3109556223,CZ 3109556224,3109557247,PT 3109557248,3109558271,GR 3109558272,3109559295,IQ 3109559296,3109560319,RO 3109560320,3109561343,KG 3109561344,3109562367,RU 3109562368,3109563391,NO 3109563392,3109564415,GB 3109564416,3109565439,IR 3109565440,3109566463,ES 3109566464,3109567487,GB 3109567488,3109568511,DE 3109568512,3109569535,NL 3109569536,3109570559,ES 3109570560,3109571583,CZ 3109571584,3109572607,CH 3109572608,3109573631,PS 3109573632,3109574655,IT 3109574656,3109575679,PS 3109575680,3109576703,DE 3109576704,3109578751,RU 3109578752,3109579775,FR 3109579776,3109580799,GB 3109580800,3109581823,SE 3109581824,3109582847,CH 3109582848,3109583871,BE 3109583872,3109584895,RU 3109584896,3109585919,RO 3109585920,3109586943,NL 3109586944,3109587967,SE 3109587968,3109588991,NL 3109588992,3109590015,DE 3109590016,3109591039,NL 3109591040,3109592063,IR 3109592064,3109594111,RU 3109594112,3109595135,NL 3109595136,3109596159,IT 3109596160,3109597183,TR 3109597184,3109598207,IR 3109598208,3109599231,NL 3109599232,3109600255,IT 3109600256,3109601279,NL 3109601280,3109602303,GB 3109602304,3109603327,FR 3109603328,3109604351,ES 3109604352,3109605375,IT 3109605376,3109606399,RU 3109606400,3109607423,DE 3109607424,3109608447,GB 3109608448,3109610495,DE 3109610496,3109611519,FO 3109611520,3109612543,ES 3109612544,3109613567,CH 3109613568,3109614591,IT 3109614592,3109615615,DE 3109615616,3109616639,CZ 3109616640,3109617663,IR 3109617664,3109618687,NO 3109618688,3109619711,NL 3109619712,3109621759,RU 3109621760,3109622783,NL 3109622784,3109623807,US 3109623808,3109624831,DE 3109624832,3109625855,ES 3109625856,3109626879,GB 3109626880,3109627903,DE 3109627904,3109628927,RU 3109628928,3109629951,IT 3109629952,3109630975,LV 3109630976,3109631999,FI 3109632000,3109633023,DE 3109633024,3109634047,ES 3109634048,3109635071,PL 3109635072,3109636095,FR 3109636096,3109637119,IE 3109637120,3109637887,NL 3109637888,3109638143,RU 3109638144,3109639167,NL 3109639168,3109640191,LB 3109640192,3109641215,IQ 3109641216,3109642239,NO 3109642240,3109643263,US 3109643264,3109643391,DE 3109643392,3109643519,UA 3109643520,3109643775,RU 3109643776,3109644287,UA 3109644288,3109646335,RU 3109646336,3109647359,IR 3109647360,3109648383,CZ 3109648384,3109649407,GB 3109649408,3109650431,IQ 3109650432,3109651455,FR 3109651456,3109652479,NL 3109652480,3109653503,MT 3109653504,3109654527,GB 3109654528,3109655551,CH 3109655552,3109656575,AT 3109656576,3109657599,NL 3109657600,3109658623,AL 3109658624,3109659647,AT 3109659648,3109661695,FR 3109661696,3109662719,NL 3109662720,3109663743,PL 3109663744,3109664767,IT 3109664768,3109665791,PL 3109665792,3109666815,CH 3109666816,3109667839,PT 3109667840,3109668863,DE 3109668864,3109669887,CH 3109669888,3109670911,GB 3109670912,3109671935,DE 3109671936,3109672959,HR 3109672960,3109673215,GB 3109673216,3109673471,NL 3109673472,3109673727,SG 3109673728,3109673983,GB 3109673984,3109675007,FR 3109675008,3109677055,DE 3109677056,3109678079,BE 3109678080,3109679103,MT 3109679104,3109680127,RO 3109680128,3109681151,MK 3109681152,3109682175,NL 3109682176,3109683199,CH 3109683200,3109684223,GB 3109684224,3109685247,TR 3109685248,3109686271,IT 3109686272,3109687295,GB 3109687296,3109688319,SA 3109688320,3109689343,AT 3109689344,3109690367,SE 3109690368,3109691391,ES 3109691392,3109692415,GB 3109692416,3109693439,CH 3109693440,3109694463,AT 3109694464,3109695487,CY 3109695488,3109696511,DE 3109696512,3109697535,DK 3109697536,3109698559,PT 3109698560,3109698815,GB 3109698816,3109699071,FI 3109699072,3109699327,DE 3109699328,3109699583,CA 3109699584,3109700607,DK 3109700608,3109701631,IT 3109701632,3109702655,KZ 3109702656,3109703679,IE 3109703680,3109704703,TR 3109704704,3109705727,HU 3109705728,3109706751,SA 3109706752,3109707775,AT 3109707776,3109708799,FR 3109708800,3109709823,RU 3109709824,3109710847,IQ 3109710848,3109711871,CH 3109711872,3109712895,DK 3109712896,3109713919,IT 3109713920,3109714943,GB 3109714944,3109715967,PS 3109715968,3109716991,DE 3109716992,3109718015,RS 3109718016,3109719039,NL 3109719040,3109720063,GB 3109720064,3109721087,RU 3109721088,3109722111,ES 3109722112,3109723135,CH 3109723136,3109725183,DE 3109725184,3109726207,SK 3109726208,3109727231,LB 3109727232,3109728255,DE 3109728256,3109729279,SE 3109729280,3109730303,NO 3109730304,3109731327,BE 3109731328,3109732351,IT 3109732352,3109733375,GB 3109733376,3109734399,NL 3109734400,3109735423,DE 3109735424,3109737471,ES 3109737472,3109738495,NO 3109738496,3109739519,GB 3109739520,3109740543,NL 3109740544,3109741567,RU 3109741568,3109743615,DE 3109743616,3109744639,HU 3109744640,3109745663,TR 3109745664,3109746431,DE 3109746432,3109746687,US 3109746688,3109747711,AZ 3109747712,3109748735,ES 3109748736,3109749759,MT 3109749760,3109750783,DE 3109750784,3109751807,GB 3109751808,3109752831,NL 3109752832,3109753855,IQ 3109753856,3109754879,GB 3109754880,3109755903,DE 3109755904,3109756927,NL 3109756928,3109757951,AT 3109757952,3109758975,FR 3109758976,3109759999,GB 3109760000,3109762047,DE 3109762048,3109763071,RU 3109763072,3109765119,IT 3109765120,3109766143,NO 3109766144,3109767167,ES 3109767168,3109768191,UA 3109768192,3109769215,GB 3109769216,3109770239,AT 3109770240,3109771263,GB 3109771264,3109772287,FR 3109772288,3109773311,NL 3109773312,3109774335,LB 3109774336,3109775359,GB 3109775360,3109776383,DE 3109776384,3109777407,ES 3109777408,3109778431,GB 3109778432,3109779455,CZ 3109779456,3109782527,GB 3109782528,3109783551,KG 3109783552,3109784575,ES 3109784576,3109785599,HU 3109785600,3109786623,AT 3109786624,3109787647,IT 3109787648,3109788671,NO 3109788672,3109789695,BA 3109789696,3109790719,IT 3109790720,3109792767,CZ 3109792768,3109795839,RU 3109795840,3109796863,HU 3109796864,3109797887,IT 3109797888,3109798911,ES 3109798912,3109799935,DE 3109799936,3109800959,SK 3109800960,3109801983,CZ 3109801984,3109803007,AZ 3109803008,3109804031,PL 3109804032,3109805055,GB 3109805056,3109807103,FR 3109807104,3109808127,ES 3109808128,3109809151,FR 3109809152,3109810175,GB 3109810176,3109811199,IT 3109811200,3109812223,DE 3109812224,3109813247,NL 3109813248,3109814271,RU 3109814272,3109815295,TR 3109815296,3109817343,IR 3109817344,3109818367,TR 3109818368,3109819391,NL 3109819392,3109820415,FR 3109820416,3109821439,GB 3109821440,3109822463,IR 3109822464,3109823487,RU 3109823488,3109824511,FR 3109824512,3109825535,IR 3109825536,3109826559,ES 3109826560,3109827583,PL 3109827584,3109828607,NO 3109828608,3109829631,GE 3109829632,3109830655,NL 3109830656,3109831679,CH 3109831680,3109833727,NL 3109833728,3109834751,DE 3109834752,3109835775,ES 3109835776,3109836799,AM 3109836800,3109837823,SY 3109837824,3109838847,ES 3109838848,3109839871,PT 3109839872,3109840895,AT 3109840896,3109841919,IT 3109841920,3109842943,ES 3109842944,3109843967,FI 3109843968,3109844991,HU 3109844992,3109845503,DE 3109845504,3109845759,GB 3109845760,3109846015,DE 3109846016,3109847039,GB 3109847040,3109848063,IE 3109848064,3109849087,BG 3109849088,3109850111,UA 3109850112,3109851135,RU 3109851136,3109852159,UA 3109852160,3109853183,NL 3109853184,3109854207,DE 3109854208,3109855231,PL 3109855232,3109856255,DE 3109856256,3109857279,IT 3109857280,3109858303,DE 3109858304,3109859327,GB 3109859328,3109860351,SI 3109860352,3109861375,DE 3109861376,3109862399,RU 3109862400,3109863423,DE 3109863424,3109864447,RO 3109864448,3109865471,BE 3109865472,3109866495,AT 3109866496,3109867519,DE 3109867520,3109868543,CH 3109868544,3109869567,TR 3109869568,3109870591,CZ 3109870592,3109871615,NL 3109871616,3109872639,AZ 3109872640,3109872895,SI 3109872896,3109873151,SE 3109873152,3109874687,SI 3109874688,3109875711,ES 3109875712,3109876735,DK 3109876736,3109877759,ES 3109877760,3109878783,PL 3109878784,3109879807,GB 3109879808,3109880831,CZ 3109880832,3109881855,FR 3109881856,3109882879,AT 3109882880,3109883903,NL 3109883904,3109884927,BE 3109884928,3109885951,GL 3109885952,3109886975,NL 3109886976,3109887999,GB 3109888000,3109888767,PL 3109888768,3109889023,RU 3109889024,3109890047,FR 3109890048,3109891071,RU 3109891072,3109892095,ES 3109892096,3109893119,FI 3109893120,3109894143,TR 3109894144,3109895167,DE 3109895168,3109896191,CZ 3109896192,3109897215,HU 3109897216,3109898239,TR 3109898240,3109899263,PL 3109899264,3109900287,NL 3109900288,3109901311,ES 3109901312,3109902335,DK 3109902336,3109903359,GB 3109903360,3109904383,PL 3109904384,3109905407,RO 3109905408,3109906431,RS 3109906432,3109907455,SI 3109907456,3109908479,RU 3109908480,3109909503,ES 3109909504,3109910527,DE 3109910528,3109911551,ES 3109911552,3109912575,UZ 3109912576,3109913599,FR 3109913600,3109914623,PL 3109914624,3109916671,DE 3109916672,3109917695,IT 3109917696,3109918719,IE 3109918720,3109919743,ES 3109919744,3109920767,IS 3109920768,3109921791,SE 3109921792,3109922815,IR 3109922816,3109924863,GB 3109924864,3109925887,IT 3109925888,3109926911,GB 3109926912,3109927935,UA 3109927936,3109928959,DE 3109928960,3109929983,DK 3109929984,3109931007,AE 3109931008,3109932031,DE 3109932032,3109933055,IT 3109933056,3109934079,RU 3109934080,3109935103,AT 3109935104,3109937151,CH 3109937152,3109938175,ES 3109938176,3109939199,GB 3109939200,3109940223,ES 3109940224,3109941247,DE 3109941248,3109942271,PL 3109942272,3109943295,AE 3109943296,3109944319,TR 3109944320,3109945343,RU 3109945344,3109946367,LU 3109946368,3109947391,CZ 3109947392,3109948415,CH 3109948416,3109949439,SE 3109949440,3109949695,IT 3109949696,3109950207,GB 3109950208,3109950463,DE 3109950464,3109951487,IT 3109951488,3109952511,DE 3109952512,3109952767,US 3109952768,3109953023,NL 3109953024,3109953279,CA 3109953280,3109953280,GB 3109953281,3109953281,US 3109953282,3109953284,GB 3109953285,3109953285,IT 3109953286,3109953288,GB 3109953289,3109953289,US 3109953290,3109953291,GB 3109953292,3109953292,HK 3109953293,3109953319,GB 3109953320,3109953320,MX 3109953321,3109953359,GB 3109953360,3109953360,SG 3109953361,3109953375,GB 3109953376,3109953376,US 3109953377,3109953379,GB 3109953380,3109953380,US 3109953381,3109953471,GB 3109953472,3109953472,HK 3109953473,3109953483,GB 3109953484,3109953484,AU 3109953485,3109953491,GB 3109953492,3109953492,AU 3109953493,3109953531,GB 3109953532,3109953532,CA 3109953533,3109953535,GB 3109953536,3109954559,RU 3109954560,3109955583,DE 3109955584,3109956607,BE 3109956608,3109957631,IE 3109957632,3109958655,ES 3109958656,3109959679,CZ 3109959680,3109960703,FR 3109960704,3109961727,SE 3109961728,3109962751,RU 3109962752,3109963775,PL 3109963776,3109964799,SE 3109964800,3109965823,GI 3109965824,3109966847,IT 3109966848,3109967871,NL 3109967872,3109968895,IT 3109968896,3109969919,NL 3109969920,3109970943,IR 3109970944,3109971967,CH 3109971968,3109972991,DE 3109972992,3109974015,RU 3109974016,3109975039,EE 3109975040,3109976063,GB 3109976064,3109977087,NL 3109977088,3109978111,GB 3109978112,3109979135,SE 3109979136,3109980159,IT 3109980160,3109981183,BE 3109981184,3109982207,FR 3109982208,3109984255,CH 3109984256,3109985279,RU 3109985280,3109986303,SK 3109986304,3109987327,SI 3109987328,3109988351,RU 3109988352,3109989375,NL 3109989376,3109990399,RU 3109990400,3109991423,GB 3109991424,3109992447,NL 3109992448,3109995519,GB 3109995520,3109996543,NL 3109996544,3109997567,IE 3109997568,3109998591,GB 3109998592,3109999615,NL 3109999616,3110001663,UA 3110001664,3110002687,FR 3110002688,3110003711,RU 3110003712,3110004735,FR 3110004736,3110005759,GB 3110005760,3110006783,NL 3110006784,3110007807,NO 3110007808,3110008831,NL 3110008832,3110009855,ES 3110009856,3110010879,DE 3110010880,3110011903,TR 3110011904,3110012927,KW 3110012928,3110013951,FR 3110013952,3110014975,RU 3110014976,3110015999,GB 3110016000,3110017023,UA 3110017024,3110018047,RU 3110018048,3110019071,NL 3110019072,3110020095,DE 3110020096,3110021119,IT 3110021120,3110022143,IE 3110022144,3110023167,NL 3110023168,3110024191,GB 3110024192,3110025215,IT 3110025216,3110026239,ES 3110026240,3110027263,IR 3110027264,3110028287,BE 3110028288,3110029311,NL 3110029312,3110030335,BE 3110030336,3110031359,GB 3110031360,3110032383,DE 3110032384,3110033407,TR 3110033408,3110035455,SE 3110035456,3110036479,DE 3110036480,3110038527,RU 3110038528,3110039551,GB 3110039552,3110040575,DE 3110040576,3110041599,CZ 3110041600,3110042623,TR 3110042624,3110043647,LB 3110043648,3110044671,DE 3110044672,3110046719,IT 3110046720,3110047743,SA 3110047744,3110048767,IT 3110048768,3110049791,SE 3110049792,3110050815,IR 3110050816,3110051839,BG 3110051840,3110052863,SE 3110052864,3110053887,NL 3110053888,3110054911,TR 3110054912,3110055935,GB 3110055936,3110056959,NL 3110056960,3110057983,IR 3110057984,3110059007,IQ 3110059008,3110060031,RU 3110060032,3110061055,DE 3110061056,3110062079,PL 3110062080,3110063103,DE 3110063104,3110064127,IQ 3110064128,3110065151,AT 3110065152,3110066175,DE 3110066176,3110067199,CH 3110067200,3110068223,PT 3110068224,3110069247,IT 3110069248,3110070271,RU 3110070272,3110073343,IT 3110073344,3110074367,GB 3110074368,3110075391,BG 3110075392,3110076415,LB 3110076416,3110077439,RU 3110077440,3110078463,NL 3110078464,3110079487,PL 3110079488,3110080511,DE 3110080512,3110081535,GB 3110081536,3110082559,IT 3110082560,3110083583,ES 3110083584,3110084607,NL 3110084608,3110085631,GR 3110085632,3110086655,RU 3110086656,3110087679,NO 3110087680,3110088703,NL 3110088704,3110089727,GB 3110089728,3110090751,TR 3110090752,3110091775,DE 3110091776,3110093823,GB 3110093824,3110094847,JO 3110094848,3110095871,NO 3110095872,3110096895,CH 3110096896,3110098943,RU 3110098944,3110099967,DK 3110099968,3110100991,GB 3110100992,3110102015,IT 3110102016,3110103039,AT 3110103040,3110104063,FR 3110104064,3110105087,IR 3110105088,3110106111,TR 3110106112,3110107135,IT 3110107136,3110108159,PL 3110108160,3110109183,AZ 3110109184,3110110207,IT 3110110208,3110111231,RU 3110111232,3110112255,AE 3110112256,3110113279,NL 3110113280,3110114303,SE 3110114304,3110115327,NL 3110115328,3110116351,SE 3110116352,3110117375,FR 3110117376,3110118399,RO 3110118400,3110119423,BG 3110119424,3110120447,TR 3110120448,3110121471,PT 3110121472,3110122495,MD 3110122496,3110123519,DK 3110123520,3110124543,FR 3110124544,3110125567,UA 3110125568,3110126591,TR 3110126592,3110127615,DE 3110127616,3110128639,GB 3110128640,3110129663,IT 3110129664,3110130687,RS 3110130688,3110131711,DE 3110131712,3110132735,IT 3110132736,3110133759,GB 3110133760,3110134783,QA 3110134784,3110135807,KW 3110135808,3110136831,ES 3110136832,3110137855,DE 3110137856,3110138879,IR 3110138880,3110139903,GB 3110139904,3110140927,SE 3110140928,3110141951,BG 3110141952,3110142975,RU 3110142976,3110143999,DE 3110144000,3110145023,TR 3110145024,3110146047,IT 3110146048,3110147071,PL 3110147072,3110148095,GB 3110148096,3110149119,CZ 3110149120,3110150143,GB 3110150144,3110151167,SE 3110151168,3110152191,EE 3110152192,3110153215,DE 3110153216,3110154239,LT 3110154240,3110155263,LB 3110155264,3110156287,SI 3110156288,3110157311,RU 3110157312,3110158335,GB 3110158336,3110159359,PS 3110159360,3110160383,SI 3110160384,3110161407,BG 3110161408,3110162431,RU 3110162432,3110163455,IE 3110163456,3110164479,FR 3110164480,3110165503,SE 3110165504,3110166527,LB 3110166528,3110167551,DE 3110167552,3110168575,CH 3110168576,3110169599,LB 3110169600,3110170623,IT 3110170624,3110171647,KZ 3110171648,3110172671,IR 3110172672,3110173695,IT 3110173696,3110174719,IL 3110174720,3110175743,SE 3110175744,3110176767,PS 3110176768,3110177791,CH 3110177792,3110178815,FR 3110178816,3110179839,GB 3110179840,3110180863,LT 3110180864,3110181887,GB 3110181888,3110182911,IT 3110182912,3110183935,GB 3110183936,3110184959,RU 3110184960,3110185983,ES 3110185984,3110187007,DE 3110187008,3110187263,BE 3110187264,3110189055,DE 3110189056,3110190079,FR 3110190080,3110193151,NO 3110193152,3110194175,RU 3110194176,3110195199,FR 3110195200,3110196223,HU 3110196224,3110196479,LT 3110196480,3110196735,GB 3110196736,3110196991,SE 3110196992,3110197247,NO 3110197248,3110199295,IT 3110199296,3110200319,DE 3110200320,3110201343,NL 3110201344,3110202367,IT 3110202368,3110203391,IE 3110203392,3110204415,DE 3110204416,3110205439,BE 3110205440,3110206463,EE 3110206464,3110207487,RU 3110207488,3110208511,BA 3110208512,3110209535,KZ 3110209536,3110210559,IT 3110210560,3110211583,HR 3110211584,3110212607,ES 3110212608,3110213631,FR 3110213632,3110214655,IQ 3110214656,3110215679,CH 3110215680,3110216703,ES 3110216704,3110217727,DK 3110217728,3110218751,RU 3110218752,3110219775,GB 3110219776,3110220799,DE 3110220800,3110221823,NL 3110221824,3110222847,DE 3110222848,3110223871,TR 3110223872,3110224895,FR 3110224896,3110225919,AT 3110225920,3110226943,CH 3110226944,3110227967,KZ 3110227968,3110231039,RU 3110231040,3110232063,DE 3110232064,3110233087,DK 3110233088,3110234879,NL 3110234880,3110235135,CY 3110235136,3110236159,GB 3110236160,3110237183,IR 3110237184,3110238207,FR 3110238208,3110239231,CH 3110239232,3110240255,NL 3110240256,3110241279,FR 3110241280,3110242303,GR 3110242304,3110243327,TR 3110243328,3110244351,DE 3110244352,3110245375,NL 3110245376,3110246399,GB 3110246400,3110247423,CH 3110247424,3110248447,SE 3110248448,3110249471,GB 3110249472,3110250495,IT 3110250496,3110254591,GB 3110254592,3110255615,DE 3110255616,3110256639,GB 3110256640,3110257663,SE 3110257664,3110259711,GB 3110259712,3110260735,LB 3110260736,3110261759,SK 3110261760,3110262783,GB 3110262784,3110263807,TR 3110263808,3110265855,JO 3110265856,3110266879,FI 3110266880,3110267903,ES 3110267904,3110269951,DE 3110269952,3110270975,SE 3110270976,3110271999,PT 3110272000,3110273023,TR 3110273024,3110274047,BA 3110274048,3110277119,RU 3110277120,3110278143,LB 3110278144,3110279167,TR 3110279168,3110279183,PL 3110279184,3110279199,GB 3110279200,3110279215,DE 3110279216,3110279423,GB 3110279424,3110279439,ES 3110279440,3110279455,GB 3110279456,3110279471,NL 3110279472,3110279679,GB 3110279680,3110279695,ES 3110279696,3110279711,GB 3110279712,3110279727,NL 3110279728,3110279935,GB 3110279936,3110279951,PL 3110279952,3110279967,GB 3110279968,3110279983,DE 3110279984,3110280191,GB 3110280192,3110281215,RU 3110281216,3110282239,LB 3110282240,3110283263,SE 3110283264,3110284287,FR 3110284288,3110285311,PS 3110285312,3110286335,BE 3110286336,3110288383,DE 3110288384,3110289407,ES 3110289408,3110291455,CZ 3110291456,3110292479,AT 3110292480,3110293503,GB 3110293504,3110294527,AT 3110294528,3110295551,GB 3110295552,3110296575,RO 3110296576,3110297599,RU 3110297600,3110298623,NL 3110298624,3110299647,RO 3110299648,3110300671,PL 3110300672,3110301695,IE 3110301696,3110302719,FR 3110302720,3110303743,CZ 3110303744,3110304767,DK 3110304768,3110305791,KZ 3110305792,3110306815,NL 3110306816,3110307327,NZ 3110307328,3110307839,BY 3110307840,3110308863,IE 3110308864,3110309887,RS 3110309888,3110310911,DE 3110310912,3110311935,FR 3110311936,3110315007,RU 3110315008,3110316031,GB 3110316032,3110317055,RU 3110317056,3110318079,PL 3110318080,3110319103,CZ 3110319104,3110320127,US 3110320128,3110321151,NL 3110321152,3110322175,SE 3110322176,3110323199,PL 3110323200,3110324223,IT 3110324224,3110325247,GB 3110325248,3110326271,NL 3110326272,3110327295,DE 3110327296,3110328319,IR 3110328320,3110329343,FR 3110329344,3110330367,LB 3110330368,3110331391,IT 3110331392,3110332415,DE 3110332416,3110333439,PT 3110333440,3110334463,GB 3110334464,3110335487,ES 3110335488,3110336511,GB 3110336512,3110337535,GE 3110337536,3110338559,PT 3110338560,3110339583,CH 3110339584,3110340607,FR 3110340608,3110341631,DE 3110341632,3110343679,IT 3110343680,3110344703,IQ 3110344704,3110345727,RU 3110345728,3110346751,FR 3110346752,3110347775,IT 3110347776,3110348799,NL 3110348800,3110349823,US 3110349824,3110350847,IR 3110350848,3110351871,DE 3110351872,3110353919,RU 3110353920,3110354943,GB 3110354944,3110355967,KZ 3110355968,3110356991,GB 3110356992,3110358015,ES 3110358016,3110359039,GE 3110359040,3110360063,IT 3110360064,3110360575,RO 3110360576,3110361087,FI 3110361088,3110362111,ES 3110362112,3110363135,CZ 3110363136,3110364159,KW 3110364160,3110366207,RU 3110366208,3110371327,IT 3110371328,3110372351,NL 3110372352,3110373375,LU 3110373376,3110374399,ES 3110374400,3110375423,NL 3110375424,3110376447,AT 3110376448,3110377471,GB 3110377472,3110378495,SA 3110378496,3110379519,RU 3110379520,3110380543,DE 3110380544,3110381567,IT 3110381568,3110382591,LB 3110382592,3110383615,GB 3110383616,3110384639,IT 3110384640,3110385663,ES 3110385664,3110386687,FR 3110386688,3110387711,GB 3110387712,3110388735,NL 3110388736,3110389759,CZ 3110389760,3110390783,LB 3110390784,3110391807,NO 3110391808,3110392831,AE 3110392832,3110393087,GB 3110393088,3110393343,IE 3110393344,3110393599,GB 3110393600,3110393855,IE 3110393856,3110394879,LB 3110394880,3110395647,DE 3110395648,3110395648,SA 3110395649,3110395903,DE 3110395904,3110396927,KZ 3110396928,3110397951,PL 3110397952,3110398975,NL 3110398976,3110399999,IT 3110400000,3110401023,AT 3110401024,3110402047,MK 3110402048,3110403071,GB 3110403072,3110404095,IT 3110404096,3110405119,NO 3110405120,3110406143,DE 3110406144,3110407167,LI 3110407168,3110408191,GB 3110408192,3110409215,LB 3110409216,3110411263,RU 3110411264,3110412287,FR 3110412288,3110413311,NO 3110413312,3110414335,IT 3110414336,3110415359,NL 3110415360,3110416383,GB 3110416384,3110417407,LI 3110417408,3110418431,DE 3110418432,3110419455,SE 3110419456,3110420479,NL 3110420480,3110421503,FR 3110421504,3110422015,RU 3110422016,3110422271,US 3110422272,3110422527,RU 3110422528,3110423551,PL 3110423552,3110425599,GB 3110425600,3110426623,IE 3110426624,3110427647,DK 3110427648,3110428671,DE 3110428672,3110428927,NL 3110428928,3110429183,US 3110429184,3110429695,NL 3110429696,3110430719,DE 3110430720,3110431743,RO 3110431744,3110432767,NL 3110432768,3110433791,DE 3110433792,3110434815,CH 3110434816,3110435839,GB 3110435840,3110436863,IS 3110436864,3110437887,PL 3110437888,3110438911,DE 3110438912,3110439935,GE 3110439936,3110440959,SK 3110440960,3110441983,BE 3110441984,3110443007,GB 3110443008,3110444031,DK 3110444032,3110445055,CH 3110445056,3110447103,ES 3110447104,3110448127,RO 3110448128,3110449151,DE 3110449152,3110450175,PT 3110450176,3110451199,FR 3110451200,3110452223,DE 3110452224,3110453247,PL 3110453248,3110454271,GB 3110454272,3110455295,NL 3110455296,3110457343,RU 3110457344,3110458367,FR 3110458368,3110459391,IT 3110459392,3110460415,RU 3110460416,3110461439,CZ 3110461440,3110462463,GB 3110462464,3110463487,IR 3110463488,3110464511,PL 3110464512,3110465535,RU 3110465536,3110466559,IE 3110466560,3110467583,RU 3110467584,3110468607,DE 3110468608,3110469631,RU 3110469632,3110470655,IL 3110470656,3110472703,RU 3110472704,3110473727,AT 3110473728,3110474751,SE 3110474752,3110475775,CZ 3110475776,3110476799,NL 3110476800,3110477823,NO 3110477824,3110478847,SE 3110478848,3110479871,TR 3110479872,3110480895,IT 3110480896,3110481919,NL 3110481920,3110482943,RO 3110482944,3110483967,NO 3110483968,3110487039,DE 3110487040,3110488063,NL 3110488064,3110489087,KZ 3110489088,3110490111,CZ 3110490112,3110491135,FR 3110491136,3110492159,GB 3110492160,3110493183,UA 3110493184,3110494207,DE 3110494208,3110495231,CZ 3110495232,3110496255,SE 3110496256,3110497279,DE 3110497280,3110498303,NO 3110498304,3110499839,RU 3110499840,3110500351,KZ 3110500352,3110501375,RU 3110501376,3110502399,RS 3110502400,3110503423,RU 3110503424,3110504447,GB 3110504448,3110505471,RU 3110505472,3110506495,IT 3110506496,3110507519,GE 3110507520,3110508543,GB 3110508544,3110509567,DE 3110509568,3110510591,RO 3110510592,3110511615,FR 3110511616,3110512639,UA 3110512640,3110514687,NL 3110514688,3110515711,FR 3110515712,3110516735,RU 3110516736,3110517759,UA 3110517760,3110518783,PL 3110518784,3110521855,GB 3110521856,3110523903,ES 3110523904,3110524927,SE 3110524928,3110525951,US 3110525952,3110526975,GB 3110526976,3110527999,DE 3110528000,3110529023,AT 3110529024,3110530047,FI 3110530048,3110531071,RS 3110531072,3110532095,DE 3110532096,3110534143,GB 3110534144,3110535167,DE 3110535168,3110536191,LU 3110536192,3110537215,GB 3110537216,3110538239,ES 3110538240,3110539263,LB 3110539264,3110540287,NL 3110540288,3110541311,LB 3110541312,3110542335,RU 3110542336,3110543359,HK 3110543360,3110545407,NL 3110545408,3110546431,UA 3110546432,3110547455,DE 3110547456,3110548479,SE 3110548480,3110549503,IT 3110549504,3110550527,NL 3110550528,3110551551,RU 3110551552,3110552575,FR 3110552576,3110553599,RU 3110553600,3110554623,DE 3110554624,3110555647,NL 3110555648,3110556671,IT 3110556672,3110557695,IR 3110557696,3110558719,LB 3110558720,3110559743,DE 3110559744,3110560767,GB 3110560768,3110561791,RU 3110561792,3110562815,IE 3110562816,3110563839,RU 3110563840,3110564863,IT 3110564864,3110565887,GB 3110565888,3110566911,DK 3110566912,3110567935,ES 3110567936,3110568959,IR 3110568960,3110569983,RU 3110569984,3110571007,RS 3110571008,3110572031,FR 3110572032,3110573055,SK 3110573056,3110574079,ES 3110574080,3110575103,PL 3110575104,3110576127,LU 3110576128,3110578175,RU 3110578176,3110579199,KZ 3110579200,3110580223,NL 3110580224,3110581247,KZ 3110581248,3110582271,ES 3110582272,3110583295,KZ 3110583296,3110584319,SE 3110584320,3110585343,DE 3110585344,3110586367,TR 3110586368,3110587391,NL 3110587392,3110588415,ES 3110588416,3110590463,SE 3110590464,3110591487,HR 3110591488,3110592511,GB 3110592512,3110593535,DE 3110593536,3110594303,GB 3110594304,3110594559,SE 3110594560,3110595583,DE 3110595584,3110596607,NL 3110596608,3110597631,SE 3110597632,3110599679,IR 3110599680,3110600703,RU 3110600704,3110601727,GR 3110601728,3110602751,RU 3110602752,3110603775,NL 3110603776,3110604799,RU 3110604800,3110605823,CH 3110605824,3110606847,TR 3110606848,3110607871,IT 3110607872,3110608895,NL 3110608896,3110611967,RO 3110611968,3110612991,GB 3110612992,3110615039,RO 3110615040,3110616063,QA 3110616064,3110617087,ES 3110617088,3110618111,PL 3110618112,3110619135,LB 3110619136,3110620159,DE 3110620160,3110621183,FR 3110621184,3110622207,GB 3110622208,3110623231,CH 3110623232,3110624255,DE 3110624256,3110625279,RU 3110625280,3110626303,GB 3110626304,3110627327,NL 3110627328,3110628351,RU 3110628352,3110629375,LU 3110629376,3110630399,UA 3110630400,3110631423,IT 3110631424,3110632447,GB 3110632448,3110633471,IT 3110633472,3110636543,NL 3110636544,3110637567,DE 3110637568,3110638591,GR 3110638592,3110639615,RU 3110639616,3110640639,ES 3110640640,3110641663,IQ 3110641664,3110642687,DE 3110642688,3110643711,ES 3110643712,3110644735,RO 3110644736,3110645759,RU 3110645760,3110646783,LT 3110646784,3110647807,RO 3110647808,3110648831,GB 3110648832,3110649855,NL 3110649856,3110650879,IR 3110650880,3110651903,RO 3110651904,3110652927,GG 3110652928,3110653951,DE 3110653952,3110654975,NO 3110654976,3110655999,UA 3110656000,3110657023,GB 3110657024,3110658047,GI 3110658048,3110659071,AT 3110659072,3110661119,IR 3110661120,3110662143,ES 3110662144,3110663167,IR 3110663168,3110664191,LB 3110664192,3110665215,RU 3110665216,3110666239,LB 3110666240,3110667263,DK 3110667264,3110668287,RO 3110668288,3110669311,PL 3110669312,3110671359,ES 3110671360,3110672383,AT 3110672384,3110673407,ES 3110673408,3110674431,FR 3110674432,3110676479,RO 3110676480,3110677503,DE 3110677504,3110679551,RU 3110679552,3110680575,BE 3110680576,3110681599,GB 3110681600,3110682623,SE 3110682624,3110683647,GB 3110683648,3110684671,TR 3110684672,3110685695,GB 3110685696,3110686719,NL 3110686720,3110687743,BE 3110687744,3110688767,RO 3110688768,3110689791,RU 3110689792,3110690815,IT 3110690816,3110691839,GB 3110691840,3110692863,RU 3110692864,3110693887,IT 3110693888,3110694911,UA 3110694912,3110695935,DE 3110695936,3110696959,RU 3110696960,3110697983,IR 3110697984,3110699007,GB 3110699008,3110700031,IT 3110700032,3110701055,CH 3110701056,3110702079,FR 3110702080,3110703103,PL 3110703104,3110704127,CH 3110704128,3110705151,GE 3110705152,3110706175,FR 3110706176,3110707199,BE 3110707200,3110708223,CZ 3110708224,3110709247,GB 3110709248,3110710271,RU 3110710272,3110711295,CY 3110711296,3110712319,IL 3110712320,3110713343,CZ 3110713344,3110714367,IR 3110714368,3110715391,RO 3110715392,3110716415,NL 3110716416,3110717439,AZ 3110717440,3110718463,BE 3110718464,3110719487,NL 3110719488,3110721535,IT 3110721536,3110723087,NL 3110723088,3110723103,DE 3110723104,3110723583,NL 3110723584,3110724607,RU 3110724608,3110725631,TJ 3110725632,3110726655,ES 3110726656,3110727679,IR 3110727680,3110728703,IT 3110728704,3110729727,SE 3110729728,3110730751,NL 3110730752,3110731775,DE 3110731776,3110733823,ES 3110733824,3110734847,DE 3110734848,3110735871,IQ 3110735872,3110736895,GR 3110736896,3110737919,TR 3110737920,3110738943,LU 3110738944,3110739967,IQ 3110739968,3110740991,IL 3110740992,3110742015,ES 3110742016,3110743039,RU 3110743040,3110744063,ES 3110744064,3110745087,AT 3110745088,3110746111,NL 3110746112,3110747135,IT 3110747136,3110748159,CZ 3110748160,3110749183,CH 3110749184,3110750207,BE 3110750208,3110751231,NL 3110751232,3110752255,DE 3110752256,3110753279,RO 3110753280,3110754303,DE 3110754304,3110755327,IE 3110755328,3110756351,RU 3110756352,3110757375,HU 3110757376,3110758399,CY 3110758400,3110759423,RU 3110759424,3110760447,AT 3110760448,3110761471,HU 3110761472,3110762495,IQ 3110762496,3110763007,NL 3110763008,3110763263,RO 3110763264,3110763519,NL 3110763520,3110764543,AD 3110764544,3110765567,RU 3110765568,3110766591,PL 3110766592,3110767615,IR 3110767616,3110768639,RS 3110768640,3110769663,IR 3110769664,3110770687,DE 3110770688,3110771711,NL 3110771712,3110772735,KZ 3110772736,3110773759,AT 3110773760,3110774783,DE 3110774784,3110775807,RE 3110775808,3110776831,RU 3110776832,3110777855,GB 3110777856,3110778879,SE 3110778880,3110779903,DE 3110779904,3110780927,AT 3110780928,3110781951,PS 3110781952,3110782975,RU 3110782976,3110783999,IR 3110784000,3110785023,RU 3110785024,3110786047,TR 3110786048,3110787071,AT 3110787072,3110788095,FR 3110788096,3110790143,NL 3110790144,3110791167,IR 3110791168,3110792191,DE 3110792192,3110793215,BE 3110793216,3110794239,NL 3110794240,3110795263,DE 3110795264,3110796287,AT 3110796288,3110797311,DE 3110797312,3110798335,ES 3110798336,3110799359,DE 3110799360,3110800383,GB 3110800384,3110801407,DK 3110801408,3110802431,ES 3110802432,3110803455,DE 3110803456,3110804479,NL 3110804480,3110806527,IR 3110806528,3110809599,NL 3110809600,3110810623,LB 3110810624,3110811647,DE 3110811648,3110812671,NL 3110812672,3110813695,IS 3110813696,3110814719,PL 3110814720,3110815743,NL 3110815744,3110816767,RU 3110816768,3110817791,QA 3110817792,3110818815,NL 3110818816,3110819839,FR 3110819840,3110821887,NL 3110821888,3110822911,DE 3110822912,3110823935,NL 3110823936,3110825983,ES 3110825984,3110829055,NL 3110829056,3110831103,RU 3110831104,3110832127,TR 3110832128,3110833151,RU 3110833152,3110834175,PL 3110834176,3110836223,IT 3110836224,3110837247,ES 3110837248,3110838271,RU 3110838272,3110839295,ES 3110839296,3110840319,RU 3110840320,3110841343,DK 3110841344,3110842367,KZ 3110842368,3110843391,DK 3110843392,3110845439,IT 3110845440,3110846463,NL 3110846464,3110847487,DE 3110847488,3110848511,GB 3110848512,3110849535,DK 3110849536,3110850559,IT 3110850560,3110851583,BE 3110851584,3110852607,NL 3110852608,3110853631,MK 3110853632,3110854655,DE 3110854656,3110855679,NL 3110855680,3110856703,GB 3110856704,3110857727,FR 3110857728,3110858751,IT 3110858752,3110859775,RU 3110859776,3110861823,IR 3110861824,3110862847,UA 3110862848,3110864895,RU 3110864896,3110865919,DE 3110865920,3110866943,GB 3110866944,3110868991,RU 3110868992,3110870015,PS 3110870016,3110871039,CZ 3110871040,3110872063,FR 3110872064,3110873087,MD 3110873088,3110874111,IE 3110874112,3110875135,GB 3110875136,3110876159,PL 3110876160,3110878207,GB 3110878208,3110879231,CZ 3110879232,3110880255,LV 3110880256,3110881279,PL 3110881280,3110883327,DE 3110883328,3110884351,IL 3110884352,3110886399,RU 3110886400,3110887423,GB 3110887424,3110888447,IR 3110888448,3110889471,DK 3110889472,3110890495,PT 3110890496,3110891519,DK 3110891520,3110892543,RO 3110892544,3110893567,NL 3110893568,3110894591,CZ 3110894592,3110895615,TR 3110895616,3110896639,IE 3110896640,3110897663,GB 3110897664,3110898687,MD 3110898688,3110899711,BG 3110899712,3110900735,MD 3110900736,3110901759,TR 3110901760,3110902783,MD 3110902784,3110903807,TR 3110903808,3110904831,RU 3110904832,3110905855,IR 3110905856,3110906879,GB 3110906880,3110907903,DE 3110907904,3110908927,GB 3110908928,3110909951,MD 3110909952,3110910975,DE 3110910976,3110911999,BG 3110912000,3110914047,RU 3110914048,3110915071,AT 3110915072,3110916095,ES 3110916096,3110917119,RU 3110917120,3110918143,UA 3110918144,3110919167,DE 3110919168,3110920191,RU 3110920192,3110921215,NL 3110921216,3110922239,DE 3110922240,3110923263,GB 3110923264,3110924287,FR 3110924288,3110925311,SA 3110925312,3110926335,CH 3110926336,3110927359,LU 3110927360,3110928383,DK 3110928384,3110929407,CH 3110929408,3110930431,IE 3110930432,3110931455,GB 3110931456,3110932479,DK 3110932480,3110933503,IE 3110933504,3110934527,RU 3110934528,3110935551,IT 3110935552,3110936575,TR 3110936576,3110937599,DE 3110937600,3110938623,CH 3110938624,3110941695,GB 3110941696,3110942719,UA 3110942720,3110943743,IT 3110943744,3110944767,IR 3110944768,3110945791,DK 3110945792,3110946815,IT 3110946816,3110947839,IR 3110947840,3110948863,DK 3110948864,3110949887,IR 3110949888,3110950911,SE 3110950912,3110951935,DK 3110951936,3110952959,GB 3110952960,3110953983,NL 3110953984,3110955007,IS 3110955008,3110956031,GB 3110956032,3110957055,DE 3110957056,3110958079,RU 3110958080,3110959103,GB 3110959104,3110960127,JO 3110960128,3110961151,GB 3110961152,3110962175,IR 3110962176,3110963199,DK 3110963200,3110965247,GB 3110965248,3110966271,NL 3110966272,3110967295,IL 3110967296,3110968319,PT 3110968320,3110969343,DE 3110969344,3110970367,NL 3110970368,3110971391,CH 3110971392,3110972415,GB 3110972416,3110973439,FR 3110973440,3110974463,SA 3110974464,3110975487,DE 3110975488,3110977535,IT 3110977536,3110978559,JO 3110978560,3110979583,DE 3110979584,3110980607,FR 3110980608,3110982655,UA 3110982656,3110983679,RO 3110983680,3110984703,PL 3110984704,3110985727,IT 3110985728,3110986751,IE 3110986752,3110987775,GB 3110987776,3110988799,NL 3110988800,3110989823,DE 3110989824,3110990847,CH 3110990848,3110992895,IR 3110992896,3110993919,RO 3110993920,3110994943,GB 3110994944,3110995967,PL 3110995968,3110996991,RU 3110996992,3110998015,DE 3110998016,3110999039,ES 3110999040,3111000063,IT 3111000064,3111001087,RO 3111001088,3111002111,IR 3111002112,3111003135,DE 3111003136,3111004159,GG 3111004160,3111005183,DE 3111005184,3111006207,RU 3111006208,3111007231,PL 3111007232,3111008255,GB 3111008256,3111009279,RU 3111009280,3111010303,BG 3111010304,3111012351,ES 3111012352,3111013375,CH 3111013376,3111014399,ES 3111014400,3111015423,DK 3111015424,3111016447,FR 3111016448,3111017471,CH 3111017472,3111018495,NL 3111018496,3111019519,FR 3111019520,3111020543,CH 3111020544,3111021567,SY 3111021568,3111022591,IL 3111022592,3111023615,NL 3111023616,3111024639,IT 3111024640,3111025663,AT 3111025664,3111026687,DE 3111026688,3111027711,RU 3111027712,3111028735,UA 3111028736,3111029759,AT 3111029760,3111031807,SK 3111031808,3111032831,NO 3111032832,3111033855,DE 3111033856,3111035903,ES 3111035904,3111036927,GE 3111036928,3111037951,RU 3111037952,3111038975,NL 3111038976,3111041023,GB 3111041024,3111042047,CH 3111042048,3111043071,GB 3111043072,3111044095,FR 3111044096,3111045119,CH 3111045120,3111046143,NL 3111046144,3111047167,CZ 3111047168,3111048191,RU 3111048192,3111049215,ES 3111049216,3111050239,IR 3111050240,3111051263,CH 3111051264,3111052287,ES 3111052288,3111053311,IR 3111053312,3111054335,SA 3111054336,3111055359,IR 3111055360,3111056383,TR 3111056384,3111057407,IR 3111057408,3111058431,GB 3111058432,3111059455,IR 3111059456,3111060479,ES 3111060480,3111061503,LB 3111061504,3111063551,IR 3111063552,3111064575,FR 3111064576,3111065599,GB 3111065600,3111066623,RU 3111066624,3111067647,NL 3111067648,3111068671,DE 3111068672,3111069695,IS 3111069696,3111070719,IR 3111070720,3111071743,FR 3111071744,3111072767,UA 3111072768,3111074815,FR 3111074816,3111075839,DE 3111075840,3111076863,IR 3111076864,3111077887,AZ 3111077888,3111078911,NL 3111078912,3111079935,IT 3111079936,3111080959,NL 3111080960,3111081983,RU 3111081984,3111083007,HU 3111083008,3111084031,UA 3111084032,3111085055,CZ 3111085056,3111086079,RU 3111086080,3111087103,KZ 3111087104,3111088127,CZ 3111088128,3111089151,IE 3111089152,3111090175,UA 3111090176,3111091199,NL 3111091200,3111092223,AT 3111092224,3111093247,IR 3111093248,3111094271,PL 3111094272,3111095295,IR 3111095296,3111096319,IE 3111096320,3111097343,AT 3111097344,3111098367,ES 3111098368,3111099391,SE 3111099392,3111100415,CH 3111100416,3111101439,LB 3111101440,3111102463,UA 3111102464,3111103487,DE 3111103488,3111104511,DK 3111104512,3111105535,CH 3111105536,3111106559,LT 3111106560,3111107583,ES 3111107584,3111108607,HR 3111108608,3111109631,DE 3111109632,3111110655,BE 3111110656,3111111679,NL 3111111680,3111112703,BE 3111112704,3111113727,HU 3111113728,3111114751,BG 3111114752,3111115775,RU 3111115776,3111116799,DE 3111116800,3111117823,GB 3111117824,3111117824,ES 3111117825,3111118079,FR 3111118080,3111118847,ES 3111118848,3111119871,TR 3111119872,3111120895,FR 3111120896,3111121919,SE 3111121920,3111122943,TR 3111122944,3111123967,IT 3111123968,3111126015,ES 3111126016,3111127039,IT 3111127040,3111128063,CH 3111128064,3111129087,UA 3111129088,3111130111,FR 3111130112,3111131135,RS 3111131136,3111132159,NO 3111132160,3111133183,CZ 3111133184,3111135231,IR 3111135232,3111136255,PL 3111136256,3111137279,DE 3111137280,3111138303,LI 3111138304,3111139327,CH 3111139328,3111140351,RU 3111140352,3111141375,IT 3111141376,3111142399,NL 3111142400,3111143423,DE 3111143424,3111144447,CH 3111144448,3111145471,ES 3111145472,3111146495,RU 3111146496,3111149567,IT 3111149568,3111150591,GB 3111150592,3111151615,RU 3111151616,3111152639,OM 3111152640,3111153663,NL 3111153664,3111154687,SE 3111154688,3111155711,PL 3111155712,3111156735,UA 3111156736,3111157759,DE 3111157760,3111158783,IR 3111158784,3111159807,CH 3111159808,3111160831,SE 3111160832,3111161855,RU 3111161856,3111162879,IS 3111162880,3111163903,IR 3111163904,3111164927,DE 3111164928,3111165951,HU 3111165952,3111166975,GB 3111166976,3111167999,CZ 3111168000,3111169023,IR 3111169024,3111170047,UA 3111170048,3111171071,DE 3111171072,3111172095,PL 3111172096,3111173119,RO 3111173120,3111174143,IQ 3111174144,3111175167,AZ 3111175168,3111176191,IT 3111176192,3111177215,YE 3111177216,3111178239,IS 3111178240,3111179263,DK 3111179264,3111180287,IT 3111180288,3111181311,DE 3111181312,3111182335,GB 3111182336,3111183359,RU 3111183360,3111184383,FR 3111184384,3111185407,IQ 3111185408,3111186431,UA 3111186432,3111189503,GB 3111189504,3111190527,DE 3111190528,3111191551,GB 3111191552,3111192575,DE 3111192576,3111193599,TR 3111193600,3111194623,RU 3111194624,3111195647,GB 3111195648,3111196671,CH 3111196672,3111197695,GB 3111197696,3111198719,RU 3111198720,3111199743,PL 3111199744,3111200767,KZ 3111200768,3111201791,ES 3111201792,3111202815,SK 3111202816,3111203839,FR 3111203840,3111204863,NL 3111204864,3111205887,IR 3111205888,3111206911,GB 3111206912,3111207935,FR 3111207936,3111208959,GB 3111208960,3111211007,RU 3111211008,3111212031,GB 3111212032,3111214079,NL 3111214080,3111215103,GB 3111215104,3111216127,SE 3111216128,3111217151,AT 3111217152,3111218175,IR 3111218176,3111219199,RU 3111219200,3111220223,IR 3111220224,3111221247,RU 3111221248,3111223295,DE 3111223296,3111224319,GB 3111224320,3111225343,KZ 3111225344,3111226367,RU 3111226368,3111227391,PT 3111227392,3111228415,DE 3111228416,3111230463,IR 3111230464,3111231487,PT 3111231488,3111232511,FR 3111232512,3111233535,DE 3111233536,3111234559,LV 3111234560,3111235583,NL 3111235584,3111236607,SE 3111236608,3111237631,GB 3111237632,3111238655,ES 3111238656,3111239679,GB 3111239680,3111240703,ES 3111240704,3111241727,NL 3111241728,3111242751,RU 3111242752,3111243775,GB 3111243776,3111244799,RU 3111244800,3111245823,NL 3111245824,3111246847,GB 3111246848,3111247871,TR 3111247872,3111248895,NL 3111248896,3111249919,DK 3111249920,3111250943,IE 3111250944,3111251967,ES 3111251968,3111252991,GB 3111252992,3111254015,RU 3111254016,3111255039,IE 3111255040,3111256063,EE 3111256064,3111257087,IT 3111257088,3111259135,FR 3111259136,3111261183,DE 3111261184,3111262207,TR 3111262208,3111266303,NL 3111266304,3111267327,DE 3111267328,3111268351,DK 3111268352,3111269375,BE 3111269376,3111270399,RO 3111270400,3111271423,NO 3111271424,3111272447,NL 3111272448,3111273471,ES 3111273472,3111274495,SA 3111274496,3111275519,IR 3111275520,3111276543,NL 3111276544,3111277567,IT 3111277568,3111278591,RO 3111278592,3111279615,LB 3111279616,3111280639,PL 3111280640,3111281663,GB 3111281664,3111282687,FR 3111282688,3111283711,SE 3111283712,3111284735,IT 3111284736,3111285759,AL 3111285760,3111286783,IT 3111286784,3111287807,IL 3111287808,3111288831,DE 3111288832,3111289855,FR 3111289856,3111290879,DE 3111290880,3111291903,UA 3111291904,3111292927,NL 3111292928,3111293951,SI 3111293952,3111294975,GB 3111294976,3111295999,US 3111296000,3111297023,NL 3111297024,3111298047,IE 3111298048,3111299071,NL 3111299072,3111300095,DE 3111300096,3111301119,ES 3111301120,3111302143,EE 3111302144,3111303167,BG 3111303168,3111304191,NL 3111304192,3111305215,IR 3111305216,3111306239,TR 3111306240,3111307263,NL 3111307264,3111308287,DE 3111308288,3111309311,GB 3111309312,3111310335,CH 3111310336,3111313407,DE 3111313408,3111313663,GB 3111313664,3111314431,AT 3111314432,3111315455,GB 3111315456,3111316479,IT 3111316480,3111317503,NL 3111317504,3111318527,SY 3111318528,3111319551,RU 3111319552,3111320575,SE 3111320576,3111321599,LB 3111321600,3111322623,CZ 3111322624,3111323647,GE 3111323648,3111324671,CZ 3111324672,3111325695,MT 3111325696,3111326719,FI 3111326720,3111327743,HU 3111327744,3111328767,DE 3111328768,3111329791,RO 3111329792,3111330815,NL 3111330816,3111331839,UA 3111331840,3111332863,TR 3111332864,3111333887,PL 3111333888,3111334911,DE 3111334912,3111335935,ES 3111335936,3111336959,HR 3111336960,3111337983,GB 3111337984,3111339007,RO 3111339008,3111340031,GB 3111340032,3111341055,CZ 3111341056,3111342079,IR 3111342080,3111343103,DE 3111343104,3111344127,GB 3111344128,3111345151,NL 3111345152,3111346175,RO 3111346176,3111347199,RU 3111347200,3111348223,LB 3111348224,3111349247,DE 3111349248,3111350271,GB 3111350272,3111351295,PL 3111351296,3111353343,GB 3111353344,3111353855,DE 3111353856,3111355391,GB 3111355392,3111356415,IT 3111356416,3111357439,GE 3111357440,3111358463,RU 3111358464,3111359487,NL 3111359488,3111360511,IR 3111360512,3111361535,PL 3111361536,3111363583,RU 3111363584,3111365631,IR 3111365632,3111367679,DE 3111367680,3111368703,CZ 3111368704,3111369727,AT 3111369728,3111370751,FR 3111370752,3111371775,DE 3111371776,3111373823,GB 3111373824,3111374847,GR 3111374848,3111375871,TR 3111375872,3111376895,IL 3111376896,3111377919,BE 3111377920,3111378943,RO 3111378944,3111379967,IL 3111379968,3111380991,GB 3111380992,3111382015,ES 3111382016,3111383039,DE 3111383040,3111383295,FI 3111383296,3111383551,FR 3111383552,3111383807,CH 3111383808,3111384063,NL 3111384064,3111387135,NO 3111387136,3111388159,IT 3111388160,3111389183,NO 3111389184,3111390207,DK 3111390208,3111391231,NL 3111391232,3111392255,DE 3111392256,3111394303,IR 3111394304,3111395327,AT 3111395328,3111396351,FI 3111396352,3111397375,DE 3111397376,3111399423,NL 3111399424,3111400447,CZ 3111400448,3111402495,GB 3111402496,3111403519,BE 3111403520,3111404543,IE 3111404544,3111405567,GB 3111405568,3111406591,BE 3111406592,3111407615,CZ 3111407616,3111408639,NL 3111408640,3111409663,IT 3111409664,3111410687,FR 3111410688,3111411711,BG 3111411712,3111412735,AT 3111412736,3111413759,IL 3111413760,3111414783,FR 3111414784,3111416831,GB 3111416832,3111417855,LB 3111417856,3111418879,SE 3111418880,3111419903,NL 3111419904,3111421951,FR 3111421952,3111422975,PL 3111422976,3111423999,KZ 3111424000,3111425023,NL 3111425024,3111426047,DK 3111426048,3111427071,TR 3111427072,3111428095,DE 3111428096,3111429119,IR 3111429120,3111430143,NL 3111430144,3111431167,IE 3111431168,3111432191,GB 3111432192,3111433215,FR 3111433216,3111434239,ES 3111434240,3111436287,DK 3111436288,3111437311,KZ 3111437312,3111439359,RU 3111439360,3111440383,BG 3111440384,3111441407,DE 3111441408,3111442431,GB 3111442432,3111443455,NL 3111443456,3111444479,DE 3111444480,3111445503,SA 3111445504,3111446527,RU 3111446528,3111447551,DE 3111447552,3111447791,NL 3111447792,3111447807,AT 3111447808,3111448575,GB 3111448576,3111449599,NO 3111449600,3111451647,DE 3111451648,3111452671,PL 3111452672,3111453695,MY 3111453696,3111454719,NL 3111454720,3111455743,IQ 3111455744,3111456255,CH 3111456256,3111456767,DE 3111456768,3111457791,FR 3111457792,3111458303,GB 3111458304,3111458815,FR 3111458816,3111459839,NL 3111459840,3111460863,RU 3111460864,3111461887,GR 3111461888,3111462911,FR 3111462912,3111463935,AT 3111463936,3111464959,ES 3111464960,3111465983,IR 3111465984,3111467007,DE 3111467008,3111469055,FR 3111469056,3111470079,EE 3111470080,3111471103,AE 3111471104,3111471359,NL 3111471360,3111471615,RO 3111471616,3111473151,NL 3111473152,3111474175,BG 3111474176,3111475199,PL 3111475200,3111476223,NL 3111476224,3111477247,FR 3111477248,3111478271,IR 3111478272,3111479295,UA 3111479296,3111480319,SE 3111480320,3111481343,NL 3111481344,3111482367,GB 3111482368,3111483391,RU 3111483392,3111484415,TR 3111484416,3111485439,NL 3111485440,3111486463,SA 3111486464,3111487487,CY 3111487488,3111488511,IR 3111488512,3111489535,UA 3111489536,3111490559,RU 3111490560,3111491583,KG 3111491584,3111493631,RU 3111493632,3111494655,DE 3111494656,3111495679,LI 3111495680,3111496703,CH 3111496704,3111498751,ES 3111498752,3111499775,DE 3111499776,3111500799,IT 3111500800,3111501823,BG 3111501824,3111502847,NO 3111502848,3111504895,GB 3111504896,3111505919,IR 3111505920,3111506943,NL 3111506944,3111507967,DE 3111507968,3111508991,IT 3111508992,3111510015,FI 3111510016,3111511039,LB 3111511040,3111512063,DE 3111512064,3111513087,RU 3111513088,3111514111,GB 3111514112,3111515135,UA 3111515136,3111516159,RU 3111516160,3111519231,DE 3111519232,3111520255,RO 3111520256,3111521279,IQ 3111521280,3111522303,IR 3111522304,3111523327,FR 3111523328,3111524351,DE 3111524352,3111525375,LB 3111525376,3111526399,GB 3111526400,3111527423,IS 3111527424,3111528447,SE 3111528448,3111529471,DK 3111529472,3111530495,IQ 3111530496,3111531519,AZ 3111531520,3111533567,ES 3111533568,3111534591,NL 3111534592,3111535615,RU 3111535616,3111536639,FR 3111536640,3111537663,IT 3111537664,3111538687,LV 3111538688,3111539711,CZ 3111539712,3111540735,GE 3111540736,3111541759,NL 3111541760,3111542783,FR 3111542784,3111543807,IQ 3111543808,3111544831,DE 3111544832,3111546879,US 3111546880,3111547903,PT 3111547904,3111548927,FR 3111548928,3111549951,SA 3111549952,3111550975,NL 3111550976,3111551999,IQ 3111552000,3111553023,NL 3111553024,3111554047,IR 3111554048,3111555071,TR 3111555072,3111556095,DE 3111556096,3111557119,AL 3111557120,3111558143,IR 3111558144,3111559167,ES 3111559168,3111560191,EE 3111560192,3111561215,RU 3111561216,3111562239,RS 3111562240,3111563263,DE 3111564288,3111565311,DK 3111565312,3111566335,IT 3111566336,3111567359,ES 3111567360,3111568383,TR 3111568384,3111569407,DE 3111569408,3111570431,RO 3111570432,3111571455,IE 3111571456,3111572479,DE 3111572480,3111573503,PL 3111573504,3111574527,LU 3111574528,3111575551,LB 3111575552,3111576575,FI 3111576576,3111577599,IE 3111577600,3111578623,FI 3111578624,3111579647,US 3111579648,3111580671,BG 3111580672,3111581695,AT 3111581696,3111582719,DK 3111582720,3111583743,IL 3111583744,3111584767,RU 3111584768,3111585791,IR 3111585792,3111586815,DE 3111586816,3111587839,PL 3111587840,3111588863,DE 3111588864,3111589887,GB 3111589888,3111590911,FR 3111590912,3111591935,NL 3111591936,3111592959,DE 3111592960,3111593983,CH 3111593984,3111595007,US 3111595008,3111596031,AT 3111596032,3111597055,ES 3111597056,3111598079,GB 3111598080,3111599103,RU 3111599104,3111600127,GB 3111600128,3111601151,RU 3111601152,3111602175,GB 3111602176,3111603199,DE 3111603200,3111604223,UA 3111604224,3111605247,TR 3111605248,3111606271,CH 3111606272,3111607295,RS 3111607296,3111608319,DE 3111608320,3111609343,CZ 3111609344,3111610367,SE 3111610368,3111611391,CH 3111611392,3111612415,GB 3111612416,3111613439,ES 3111613440,3111614463,AT 3111614464,3111615487,PL 3111615488,3111616511,IS 3111616512,3111617535,FI 3111617536,3111618559,GB 3111618560,3111619583,DE 3111619584,3111621631,GB 3111621632,3111622655,PL 3111622656,3111623679,GB 3111623680,3111624703,BE 3111624704,3111625727,AT 3111625728,3111626751,IR 3111626752,3111627775,FR 3111627776,3111628799,GB 3111628800,3111629823,CH 3111629824,3111630847,HU 3111630848,3111631871,PL 3111631872,3111633919,NL 3111633920,3111636991,FR 3111636992,3111638015,PL 3111638016,3111639039,UA 3111639040,3111640063,CZ 3111640064,3111641087,NL 3111641088,3111643135,IT 3111643136,3111644159,GB 3111644160,3111645183,ES 3111645184,3111646207,IR 3111646208,3111647231,IT 3111647232,3111648255,ES 3111648256,3111650559,GB 3111650560,3111650815,NL 3111650816,3111651327,GB 3111651328,3111652351,RO 3111652352,3111653375,GB 3111653376,3111654399,RO 3111654400,3111655423,GB 3111655424,3111656447,NO 3111656448,3111657471,LB 3111657472,3111658495,GB 3111658496,3111659519,AL 3111659520,3111660543,IT 3111660544,3111661567,ES 3111661568,3111662591,FI 3111662592,3111663615,GB 3111663616,3111664639,RU 3111664640,3111665663,DE 3111665664,3111666687,PL 3111666688,3111667711,CZ 3111667712,3111668735,GB 3111668736,3111669759,KZ 3111669760,3111670783,IT 3111670784,3111671807,ES 3111671808,3111672831,RU 3111672832,3111673855,MK 3111673856,3111674879,GI 3111674880,3111675903,NO 3111675904,3111676927,ES 3111676928,3111677951,AE 3111677952,3111678975,ES 3111678976,3111679999,GB 3111680000,3111681023,IR 3111681024,3111682047,IL 3111682048,3111683071,GB 3111683072,3111684095,UA 3111684096,3111685119,IR 3111685120,3111686143,CH 3111686144,3111687167,RO 3111687168,3111688191,DE 3111688192,3111689215,GB 3111689216,3111690239,DE 3111690240,3111691263,IR 3111691264,3111692287,BE 3111692288,3111693311,IR 3111693312,3111694335,GB 3111694336,3111695359,FR 3111695360,3111696383,RU 3111696384,3111697407,CY 3111697408,3111698431,RU 3111698432,3111701503,IR 3111701504,3111702527,GB 3111702528,3111713791,IR 3111713792,3111714815,RU 3111714816,3111715839,TJ 3111715840,3111716863,GB 3111716864,3111717887,NL 3111717888,3111718911,AD 3111718912,3111719935,GB 3111719936,3111720959,CY 3111720960,3111721983,GB 3111721984,3111723007,SE 3111723008,3111725055,IT 3111725056,3111726079,AT 3111726080,3111727103,SE 3111727104,3111728127,HR 3111728128,3111729151,AT 3111729152,3111730175,IR 3111730176,3111731199,DK 3111731200,3111732223,SK 3111732224,3111733247,DE 3111733248,3111734271,RU 3111734272,3111735295,GB 3111735296,3111736319,KZ 3111736320,3111737343,RU 3111737344,3111738367,GB 3111738368,3111739391,NL 3111739392,3111740415,DE 3111740416,3111741439,IT 3111741440,3111743487,UA 3111743488,3111744511,NL 3111744512,3111745535,UA 3111745536,3111746559,MD 3111746560,3111747583,TR 3111747584,3111748607,IR 3111748608,3111749631,GB 3111749632,3111750655,DE 3111750656,3111751679,FR 3111751680,3111752703,GB 3111752704,3111753727,IT 3111753728,3111754751,BG 3111754752,3111755775,IT 3111755776,3111756799,NO 3111756800,3111757823,NL 3111757824,3111758335,NZ 3111758336,3111758847,HR 3111758848,3111759871,DK 3111759872,3111760895,IS 3111760896,3111761919,NL 3111761920,3111762943,SY 3111762944,3111763967,NL 3111763968,3111766015,DE 3111766016,3111767039,HR 3111767040,3111768063,SE 3111768064,3111769087,IT 3111769088,3111770111,DE 3111770112,3111771135,FI 3111771136,3111772159,GB 3111772160,3111773183,NL 3111773184,3111774207,IQ 3111774208,3111775231,ES 3111775232,3111776255,AM 3111776256,3111778303,RU 3111778304,3111779327,GB 3111779328,3111780351,SA 3111780352,3111781375,GB 3111781376,3111782399,DE 3111782400,3111783423,IL 3111783424,3111784447,TR 3111784448,3111785471,GB 3111785472,3111786495,NL 3111786496,3111787519,IT 3111787520,3111788543,RU 3111788544,3111789567,KZ 3111789568,3111790591,GB 3111790592,3111791615,CZ 3111791616,3111792639,IT 3111792640,3111793663,CH 3111793664,3111794687,SK 3111794688,3111795711,GB 3111795712,3111796735,PL 3111796736,3111798783,GB 3111798784,3111799807,SE 3111799808,3111800831,CH 3111800832,3111801855,IR 3111801856,3111802879,DE 3111802880,3111803903,PL 3111803904,3111804927,LB 3111804928,3111805951,PL 3111805952,3111806975,FR 3111806976,3111807999,PL 3111808000,3111809023,FI 3111809024,3111810047,NO 3111810048,3111811071,NL 3111811072,3111812095,SA 3111812096,3111814143,GB 3111814144,3111815167,IE 3111815168,3111816191,PL 3111816192,3111817215,LT 3111817216,3111819263,PL 3111819264,3111821311,NL 3111821312,3111822335,FR 3111822336,3111824383,NL 3111824384,3111825407,PL 3111825408,3111826431,RU 3111826432,3111827455,DE 3111827456,3111828479,ES 3111828480,3111829503,DK 3111829504,3111830527,NL 3111830528,3111831551,NO 3111831552,3111832575,TR 3111832576,3111835647,GB 3111835648,3111836671,CZ 3111836672,3111837695,RO 3111837696,3111838719,IT 3111838720,3111839743,AL 3111839744,3111840767,GB 3111840768,3111841791,CH 3111841792,3111842815,DE 3111842816,3111843839,CH 3111843840,3111844863,BE 3111844864,3111845887,IQ 3111845888,3111846911,TR 3111846912,3111847935,GB 3111847936,3111848959,IT 3111848960,3111849983,RU 3111849984,3111851007,KZ 3111851008,3111852031,SA 3111852032,3111853055,FR 3111853056,3111854079,GP 3111854080,3111855103,NO 3111855104,3111856127,IT 3111856128,3111857151,KZ 3111857152,3111858175,UA 3111858176,3111859199,PL 3111859200,3111860223,EE 3111860224,3111861247,ES 3111861248,3111862271,NL 3111862272,3111864319,IR 3111864320,3111865343,FR 3111865344,3111866367,RU 3111866368,3111867391,GB 3111867392,3111868415,FR 3111868416,3111869439,DE 3111869440,3111870463,NO 3111870464,3111871487,GB 3111871488,3111873535,TR 3111873536,3111874559,AT 3111874560,3111875583,GB 3111875584,3111876607,FI 3111876608,3111877631,ES 3111877632,3111878655,PL 3111878656,3111879679,CZ 3111879680,3111880703,FI 3111880704,3111881727,ES 3111881728,3111882751,RO 3111882752,3111886847,GB 3111886848,3111887871,PL 3111887872,3111888895,RU 3111888896,3111889919,IE 3111889920,3111890943,RU 3111890944,3111891967,AT 3111891968,3111892991,FR 3111892992,3111894015,BY 3111894016,3111895039,BG 3111895040,3111896063,RU 3111896064,3111897087,IS 3111897088,3111899135,ES 3111899136,3111900159,IR 3111900160,3111901183,IT 3111901184,3111902207,LU 3111902208,3111903231,RO 3111903232,3111904255,DE 3111904256,3111905279,SE 3111905280,3111906303,IT 3111906304,3111908351,GB 3111908352,3111909375,RO 3111909376,3111912447,GB 3111912448,3111913471,ES 3111913472,3111914495,UA 3111914496,3111915519,RU 3111915520,3111916543,DE 3111916544,3111919615,ES 3111919616,3111920639,RO 3111920640,3111921663,ES 3111921664,3111922687,RU 3111922688,3111923711,IT 3111923712,3111924735,DE 3111924736,3111925759,NO 3111925760,3111927807,GB 3111927808,3111930879,DE 3111930880,3111931903,NO 3111931904,3111932927,CZ 3111932928,3111933951,TR 3111933952,3111935999,FI 3111936000,3111937023,NO 3111937024,3111940095,ES 3111940096,3111941119,IR 3111941120,3111942143,PL 3111942144,3111943167,DE 3111943168,3111944191,PT 3111944192,3111945215,PL 3111945216,3111946239,CH 3111946240,3111948287,ES 3111948288,3111949311,AT 3111949312,3111950335,IQ 3111950336,3111951359,RU 3111951360,3111952383,IR 3111952384,3111953407,GB 3111953408,3111954431,RU 3111954432,3111955455,UA 3111955456,3111956479,IR 3111956480,3111957503,RU 3111957504,3111958527,IT 3111958528,3111959551,PL 3111959552,3111960575,RU 3111960576,3111962623,DE 3111962624,3111963647,NL 3111963648,3111964671,IE 3111964672,3111965695,RU 3111965696,3111966719,LB 3111966720,3111967743,FR 3111967744,3111968767,DE 3111968768,3111969791,FR 3111969792,3111970815,RU 3111970816,3111971839,DE 3111971840,3111972863,FR 3111972864,3111973887,CH 3111973888,3111974911,LB 3111974912,3111975935,RO 3111975936,3111976959,IT 3111976960,3111977983,DE 3111977984,3111979007,PL 3111979008,3111980031,NL 3111980032,3111981055,IL 3111981056,3111982079,RU 3111982080,3111983103,IR 3111983104,3111984127,SA 3111984128,3111985151,FI 3111985152,3111986175,TR 3111986176,3111987199,RU 3111987200,3111988223,NL 3111988224,3111989247,KZ 3111989248,3111990271,RU 3111990272,3111991295,FR 3111991296,3111992319,RU 3111992320,3111993343,RS 3111993344,3111994367,GB 3111994368,3111995391,IT 3111995392,3111996415,RU 3111996416,3111997439,ES 3111997440,3111998463,DK 3111998464,3111999487,ES 3111999488,3112000511,KZ 3112000512,3112001535,DE 3112001536,3112002559,DK 3112002560,3112003583,RU 3112003584,3112004607,GB 3112004608,3112005631,RO 3112005632,3112006655,RU 3112006656,3112007679,NL 3112007680,3112008703,BA 3112008704,3112009727,PL 3112009728,3112010751,CZ 3112010752,3112011775,PL 3112011776,3112012799,RU 3112012800,3112013823,GB 3112013824,3112014847,IT 3112014848,3112017919,LB 3112017920,3112018943,NO 3112018944,3112019967,CH 3112019968,3112020991,NO 3112020992,3112022015,DE 3112022016,3112023039,RS 3112023040,3112024063,LU 3112024064,3112025087,US 3112025088,3112026111,GB 3112026112,3112027135,RU 3112027136,3112028159,CH 3112028160,3112029183,RU 3112029184,3112030207,DE 3112030208,3112031231,AT 3112031232,3112032255,CH 3112032256,3112033279,RU 3112033280,3112034303,DK 3112034304,3112034305,DE 3112034306,3112034306,GB 3112034307,3112034307,PL 3112034308,3112034308,FR 3112034309,3112034309,NL 3112034310,3112034310,AT 3112034311,3112034311,IT 3112034312,3112034312,CH 3112034313,3112034313,CZ 3112034314,3112034314,DK 3112034315,3112035327,DE 3112035328,3112036351,RU 3112036352,3112038399,NL 3112038400,3112039423,IS 3112039424,3112047615,IR 3112047616,3112048639,AT 3112048640,3112049663,GB 3112049664,3112050687,DE 3112050688,3112051711,AE 3112051712,3112052735,NO 3112052736,3112053759,IR 3112053760,3112054783,LB 3112054784,3112055807,BE 3112055808,3112056831,DK 3112056832,3112057855,NL 3112057856,3112058879,IS 3112058880,3112059903,NL 3112059904,3112062975,RO 3112062976,3112063999,ES 3112064000,3112065023,RU 3112065024,3112066047,PT 3112066048,3112067071,RU 3112067072,3112068095,ES 3112068096,3112069119,DE 3112069120,3112070143,ES 3112070144,3112071167,DK 3112071168,3112072191,UA 3112072192,3112073215,RO 3112073216,3112074239,NL 3112074240,3112075263,IR 3112075264,3112076287,RU 3112076288,3112077311,IR 3112077312,3112078335,GB 3112078336,3112079359,IT 3112079360,3112080383,IR 3112080384,3112081407,GB 3112081408,3112082431,DK 3112082432,3112083455,IR 3112083456,3112085503,GB 3112085504,3112086527,DE 3112086528,3112087551,GB 3112087552,3112088575,TR 3112088576,3112089599,RU 3112089600,3112090623,NO 3112090624,3112091647,PL 3112091648,3112092671,RU 3112092672,3112093695,SK 3112093696,3112094719,IR 3112094720,3112095743,IT 3112095744,3112096767,AT 3112096768,3112097791,DE 3112097792,3112098815,TR 3112098816,3112099839,CH 3112099840,3112100863,GB 3112100864,3112102911,FR 3112102912,3112103935,GB 3112103936,3112104959,DE 3112104960,3112105983,FR 3112105984,3112107007,GB 3112107008,3112108031,UA 3112108032,3112109055,LT 3112109056,3112110079,FR 3112110080,3112111103,IL 3112111104,3112112127,NL 3112112128,3112113151,GB 3112113152,3112114175,PL 3112114176,3112115199,RU 3112115200,3112116223,DE 3112116224,3112118271,IT 3112118272,3112119295,NO 3112119296,3112120319,GB 3112120320,3112121343,DK 3112121344,3112122367,ES 3112122368,3112123391,GB 3112123392,3112124415,FI 3112124416,3112125439,AM 3112125440,3112126463,GB 3112126464,3112127487,FI 3112127488,3112128511,GB 3112128512,3112129535,FR 3112129536,3112130559,FI 3112130560,3112131583,DK 3112131584,3112132607,GB 3112132608,3112133631,DK 3112133632,3112134655,NO 3112134656,3112136703,NL 3112136704,3112137727,CH 3112137728,3112138751,ES 3112138752,3112139775,PL 3112139776,3112140799,LB 3112140800,3112141823,ES 3112141824,3112142847,IT 3112142848,3112143871,NL 3112143872,3112144895,GB 3112144896,3112145919,ES 3112145920,3112146943,RU 3112146944,3112148991,GB 3112148992,3112150015,PT 3112150016,3112151039,RU 3112151040,3112152063,NO 3112152064,3112153087,CH 3112153088,3112154111,IR 3112154112,3112155135,LB 3112155136,3112156159,NL 3112156160,3112157183,LB 3112157184,3112158207,GB 3112158208,3112159231,IT 3112159232,3112160255,NL 3112160256,3112161279,CH 3112161280,3112162303,DE 3112162304,3112163327,IT 3112163328,3112164351,RS 3112164352,3112165375,IT 3112165376,3112166399,RU 3112166400,3112167423,SE 3112167424,3112168447,IR 3112168448,3112169471,IT 3112169472,3112170495,FR 3112170496,3112171519,UA 3112171520,3112172543,GB 3112172544,3112173567,NO 3112173568,3112174591,SE 3112175616,3112176639,UA 3112176640,3112177663,ES 3112177664,3112178687,FI 3112178688,3112179711,PL 3112179712,3112180735,AE 3112180736,3112181759,IT 3112181760,3112182783,NL 3112182784,3112183807,IQ 3112183808,3112184831,CH 3112184832,3112185855,DE 3112185856,3112186879,IR 3112186880,3112187903,ES 3112187904,3112188927,GB 3112188928,3112189951,ES 3112189952,3112190975,NL 3112190976,3112191999,DE 3112192000,3112193023,DK 3112193024,3112194047,IT 3112194048,3112195071,IR 3112195072,3112196095,RU 3112196096,3112197119,NL 3112197120,3112198143,UA 3112198144,3112199167,RO 3112199168,3112200191,DK 3112200192,3112201215,RU 3112201216,3112202239,DE 3112202240,3112203263,TR 3112203264,3112205311,DE 3112205312,3112206335,LB 3112206336,3112207359,ES 3112207360,3112208383,GB 3112208384,3112209407,IR 3112209408,3112210431,FR 3112210432,3112211455,NO 3112211456,3112212479,IT 3112212480,3112213503,IR 3112213504,3112214527,PL 3112214528,3112215551,FI 3112215552,3112216575,IR 3112216576,3112217599,ES 3112217600,3112218623,CH 3112218624,3112219647,GB 3112219648,3112220671,SY 3112220672,3112221695,NL 3112221696,3112222719,DE 3112222720,3112223743,ES 3112223744,3112224767,RU 3112224768,3112225791,BY 3112225792,3112227839,GB 3112227840,3112228863,RU 3112228864,3112229887,DE 3112229888,3112231935,GB 3112231936,3112232959,HU 3112232960,3112233983,UA 3112233984,3112235007,FR 3112235008,3112236031,RO 3112236032,3112237055,AT 3112237056,3112238079,SI 3112238080,3112239103,FI 3112239104,3112240127,AZ 3113710318,3113710318,CA 3120562176,3120594943,CO 3120594944,3120599039,AR 3120599040,3120601087,EC 3120601088,3120602111,AR 3120602112,3120603135,BO 3120603136,3120610303,AR 3120610304,3120611327,PY 3120611328,3120617471,AR 3120617472,3120617727,CL 3120617728,3120627711,AR 3120627712,3120644095,NI 3120644096,3120660479,DO 3120660480,3120668671,PA 3120668672,3120676863,CO 3120676864,3120680959,HT 3120680960,3120691199,AR 3120691200,3120693247,CO 3120693248,3120726015,BO 3120726016,3120734207,HN 3120734208,3120735743,RU 3120735744,3120736255,BZ 3120736256,3120736511,EC 3120736512,3120738303,BZ 3120738304,3120742399,CW 3120742400,3120754687,PY 3120754688,3120755711,CR 3120755712,3120756735,GF 3120757504,3120757759,BZ 3120757760,3120758783,CL 3120758784,3120824319,EC 3120824320,3120840703,CR 3120840704,3120857087,AR 3120857088,3120922623,EC 3120922624,3120922879,PA 3120922880,3120922943,CR 3120922944,3120930815,PA 3120930816,3120934911,CR 3120934912,3120949247,AR 3120949248,3120951295,CL 3120951296,3120955391,AR 3120955392,3121086463,DO 3121086464,3121151999,UY 3121152000,3121348607,CL 3121348608,3121479679,AR 3121479680,3121545215,VE 3121545216,3121610751,CR 3121610752,3121741823,PY 3121741824,3121872895,AR 3121872896,3122003967,CL 3122003968,3122135039,AR 3122135040,3122282495,VE 3122282496,3122290687,US 3122290688,3122292735,AR 3122292736,3122294783,US 3122294784,3122298879,CR 3122298880,3122331647,VE 3122331648,3122364415,BO 3122364416,3122659327,CO 3122659328,3122675711,CR 3122675712,3122692095,SV 3122692096,3122700287,HN 3122700288,3122716671,CR 3122716672,3122722815,HN 3122722816,3122724863,SV 3122724864,3122726911,US 3122726912,3122728447,AR 3122728448,3122728959,US 3122728960,3122729471,AR 3122729472,3122729983,US 3122729984,3122731007,AR 3122731008,3122731519,US 3122731520,3122732031,AR 3122732032,3122733055,US 3122733056,3122734079,AR 3122734080,3122734591,US 3122734592,3122735103,AR 3122735104,3122735615,US 3122735616,3122736127,AR 3122736128,3122736383,US 3122736384,3122737407,AR 3122737408,3122738431,US 3122738432,3122739199,AR 3122739200,3122739455,US 3122739456,3122739711,AR 3122739712,3122740223,US 3122740224,3122740479,AR 3122740480,3122740735,US 3122740736,3122741247,AR 3122741248,3122757631,DO 3122757632,3122774015,EC 3122774016,3122790399,AR 3122790400,3123052543,CL 3123052544,3123183615,AR 3123183616,3123314687,CL 3123314688,3123380223,EC 3123380224,3123412991,CO 3123412992,3123445759,EC 3123445760,3123576831,TT 3123576832,3123707903,EC 3123707904,3124232191,UY 3124232192,3124783103,AR 3124783104,3124785151,GT 3124785152,3124788223,CL 3124788224,3124789247,PE 3124789248,3124822015,CR 3124822016,3124838399,EC 3124838400,3124840447,AR 3124840448,3124842495,CL 3124842496,3124844543,AR 3124844544,3124845567,BZ 3124845568,3124846591,CR 3124846592,3124848639,AR 3124848640,3124849663,PA 3124849664,3124850687,AR 3124850688,3124851471,HN 3124851472,3124851487,CM 3124851488,3124852175,HN 3124852176,3124852191,PH 3124852192,3124853103,HN 3124853104,3124853119,VN 3124853120,3124853887,HN 3124853888,3124853903,FR 3124853904,3124854783,HN 3124854784,3124887551,CL 3124887552,3124953087,EC 3124953088,3125018623,CL 3125018624,3125280767,EC 3125280768,3125542911,PA 3125542912,3125673983,NI 3125673984,3125805055,CL 3125805056,3126329343,CO 3126329344,3126853631,VE 3126853632,3126855807,AR 3126855808,3126855935,US 3126855936,3126857855,AR 3126857856,3126857983,US 3126857984,3126858495,AR 3126858496,3126858623,US 3126858624,3126860415,AR 3126860416,3126860543,US 3126860544,3126860671,AR 3126860672,3126860799,US 3126860800,3126861311,AR 3126861312,3126861439,US 3126861440,3126862591,AR 3126862592,3126862719,US 3126862720,3126863999,AR 3126864000,3126864127,US 3126864128,3126870015,AR 3126870016,3126873343,VE 3126873344,3126873599,PA 3126873600,3126874111,VE 3126874112,3126878207,CR 3126878208,3126882303,PA 3126882304,3126886399,US 3126886400,3126918143,AR 3126918144,3126919167,HN 3126919168,3127115775,CO 3127115776,3127181311,AR 3127181312,3127246847,EC 3127246848,3127345151,CO 3127345152,3127640063,CL 3127640064,3127902207,AR 3127902208,3128426495,CO 3128426496,3128492031,DO 3128492032,3128524799,CO 3128524800,3128541183,AR 3128541184,3128557567,BO 3128557568,3129999359,AR 3129999360,3130261503,CO 3130261504,3130277887,CL 3130277888,3130284031,AR 3130284032,3130286079,DO 3130286080,3130290175,PA 3130290176,3130302463,AR 3130302464,3130302975,CY 3130302976,3130312703,PA 3130312704,3130314751,AR 3130314752,3130315775,CL 3130315776,3130316799,CR 3130316800,3130317823,AW 3130317824,3130318847,CW 3130318848,3130319871,AR 3130319872,3130320639,RU 3130320640,3130320895,BR 3130320896,3130327039,AR 3130327040,3130458111,DO 3130458112,3130523647,GT 3130523648,3130654719,AR 3130654720,3130785791,CO 3130785792,3130851327,CL 3130851328,3130982399,AR 3130982400,3131006975,CO 3131006976,3131011071,BQ 3131011072,3131012095,CO 3131012096,3131013119,PA 3131013120,3131015167,AR 3131015168,3131047935,CR 3131047936,3131310079,PE 3131310080,3131572223,VE 3131572224,3131834367,CO 3131834368,3132096511,CL 3132096512,3132211199,CR 3132211200,3132227583,AR 3132227584,3132293119,EC 3132293120,3132309503,HN 3132309504,3132313599,CR 3132313600,3132317695,CL 3132317696,3132321791,CO 3132321792,3132325887,PA 3132325888,3132358655,SR 3132358656,3132489727,CO 3132489728,3132588031,AR 3132588032,3132620799,CO 3132620800,3132915711,VE 3132915712,3132948479,PA 3132948480,3133014015,AR 3133014016,3133046783,HT 3133046784,3133067263,AR 3133067264,3133071359,PA 3133071360,3133071871,CY 3133071872,3133073407,PA 3133073408,3133073663,CW 3133073664,3133073919,AW 3133073920,3133074431,CW 3133074432,3133075455,CL 3133075456,3133079551,CW 3133079552,3133145087,AR 3133145088,3133311999,BR 3133312000,3133313023,MX 3133313024,3134289919,BR 3134291968,3136961535,BR 3136962560,3136985087,BR 3136985088,3136986111,AR 3136986112,3140614143,BR 3140614144,3140616191,CR 3140616192,3145727999,BR 3145728000,3149135871,MX 3149135872,3149398015,BR 3149398016,3149881343,MX 3149881344,3149889535,BR 3149889536,3154051071,MX 3154051072,3154116607,BR 3154116608,3154124799,RU 3154124800,3154126847,PL 3154126848,3154128895,RU 3154128896,3154132991,EE 3154132992,3154149375,UA 3154149376,3154157567,KZ 3154157568,3154173951,RU 3154173952,3154182143,MD 3154182144,3154247679,DE 3154247680,3154313215,RS 3154313216,3154378751,TR 3154378752,3154444287,GR 3154444288,3154509823,BE 3154509824,3154575359,HU 3154575360,3154640895,FR 3154640896,3155165183,IT 3155165184,3155427327,RU 3155427328,3155689471,AT 3155689472,3155951615,RO 3155951616,3156213759,GB 3156213760,3156279295,RU 3156279296,3156344831,PL 3156344832,3156410367,IR 3156410368,3156475903,RU 3156475904,3156541439,HU 3156541440,3156606975,PT 3156606976,3156672511,TR 3156672512,3156738047,GB 3156738048,3156803583,DE 3156803584,3156869119,TR 3156869120,3156924415,LU 3156924416,3156926463,SG 3156926464,3156928511,NL 3156928512,3156930559,LU 3156930560,3156933631,US 3156933632,3156933887,SG 3156933888,3156934143,CN 3156934144,3156934655,SG 3156934656,3157000191,RU 3157000192,3157008383,MK 3157008384,3157016575,RU 3157016576,3157024767,BE 3157024768,3157032959,RU 3157032960,3157065727,HU 3157065728,3157131263,AT 3157131264,3157196799,DE 3157196800,3157262335,PL 3157262336,3157786623,SA 3157786624,3158048767,TR 3158048768,3158070548,CH 3158070549,3158070549,SE 3158070550,3158310911,CH 3158310912,3158312959,FI 3158312960,3158315007,AZ 3158315008,3158317055,DE 3158317056,3158319103,SI 3158319104,3158321151,GB 3158321152,3158323199,DE 3158323200,3158325247,BE 3158325248,3158327295,DE 3158327296,3158329343,NL 3158329344,3158331391,BE 3158331392,3158333439,PL 3158333440,3158335487,IT 3158335488,3158337535,IL 3158337536,3158339583,SI 3158339584,3158341631,RU 3158341632,3158343679,IT 3158343680,3158345727,RU 3158345728,3158347775,CY 3158347776,3158349823,RU 3158349824,3158351871,DK 3158351872,3158355967,RU 3158355968,3158358015,LV 3158358016,3158360063,GB 3158360064,3158362111,DE 3158362112,3158364159,IL 3158364160,3158366207,TR 3158366208,3158368255,RU 3158368256,3158370303,FR 3158370304,3158372351,BE 3158372352,3158374399,FR 3158374400,3158376447,DE 3158376448,3158378495,IT 3158378496,3158382591,RU 3158382592,3158384639,OM 3158384640,3158386687,GB 3158386688,3158388735,PL 3158388736,3158390783,RU 3158390784,3158392831,GB 3158392832,3158394879,RU 3158394880,3158396927,AT 3158396928,3158398975,IT 3158398976,3158401023,ES 3158401024,3158403071,GB 3158403072,3158405119,RU 3158405120,3158407167,GB 3158407168,3158409215,FR 3158409216,3158411263,RU 3158411264,3158413311,FI 3158413312,3158415359,DE 3158415360,3158417407,SE 3158417408,3158419455,NL 3158419456,3158421503,FR 3158421504,3158423551,GB 3158423552,3158425159,MT 3158425160,3158425167,IE 3158425168,3158425599,MT 3158425600,3158427647,NL 3158427648,3158429695,DE 3158429696,3158431743,RU 3158431744,3158433791,BE 3158433792,3158435839,NL 3158435840,3158439935,RU 3158439936,3158441983,GB 3158441984,3158444031,EE 3158444032,3158446079,BE 3158446080,3158448127,NL 3158450176,3158452223,RU 3158452224,3158454271,DE 3158458368,3158474751,GB 3158474752,3158507519,OM 3158507520,3158573055,FI 3158573056,3158581247,RU 3158581248,3158589439,DE 3158589440,3158615039,RU 3158615040,3158616063,GB 3158616064,3158630399,RU 3158630400,3158638591,PL 3158638592,3158704127,LT 3158704128,3158835199,KW 3158835200,3158851583,IQ 3158851584,3158859775,RU 3158859776,3158859903,NL 3158859904,3158860031,CZ 3158860032,3158860287,GB 3158860288,3158860543,NL 3158860544,3158860799,GB 3158860800,3158861055,NL 3158861056,3158861311,UA 3158861312,3158861567,IE 3158861568,3158861823,AE 3158861824,3158862079,DE 3158862080,3158862335,GB 3158862336,3158862591,NL 3158862592,3158862847,FR 3158862848,3158863103,PL 3158863104,3158863359,IT 3158863360,3158863615,MD 3158863616,3158863871,EE 3158863872,3158864127,SK 3158864128,3158864383,ES 3158864384,3158864639,AT 3158864640,3158864895,RO 3158864896,3158865151,LT 3158865152,3158865407,NL 3158865408,3158865663,AL 3158865664,3158865919,CY 3158865920,3158866943,IT 3158866944,3158867199,DE 3158867200,3158867455,HU 3158867456,3158867711,DE 3158867712,3158867839,NL 3158867840,3158867967,NO 3158867968,3158884351,AZ 3158884352,3158884863,DE 3158884864,3158885119,GB 3158885120,3158885887,TR 3158885888,3158891775,DE 3158891776,3158892031,PL 3158892032,3158893567,DE 3158893568,3158893823,GB 3158893824,3158898431,DE 3158898432,3158898687,US 3158898688,3158900735,DE 3158900736,3158917119,FR 3158917120,3158933503,DE 3158933504,3158949887,RU 3158949888,3158966271,GR 3158966272,3158982655,DE 3158982656,3158999039,GB 3158999040,3159031807,RO 3159031808,3159048191,RU 3159048192,3159064575,IR 3159064576,3159080959,CZ 3159080960,3159097343,RU 3159097344,3159359487,ES 3159359488,3159621631,PT 3159621632,3159883775,ES 3159883776,3160145919,NL 3160145920,3160147967,RU 3160147968,3160150015,CZ 3160150016,3160152063,LV 3160152064,3160154111,IT 3160154112,3160156159,DE 3160156160,3160158207,CZ 3160158208,3160160255,CH 3160160256,3160162303,NL 3160162304,3160164351,FR 3160164352,3160166399,LV 3160166400,3160168447,NO 3160168448,3160170495,GB 3160170496,3160172543,CZ 3160172544,3160174591,RU 3160174592,3160176639,DE 3160178688,3160180735,DE 3160180736,3160182783,GB 3160182784,3160184831,CH 3160184832,3160186879,NL 3160186880,3160188927,EE 3160188928,3160190975,SE 3160190976,3160193023,RU 3160193024,3160195071,IT 3160195072,3160197119,RU 3160197120,3160199167,DE 3160199168,3160201215,GE 3160201216,3160203263,RU 3160203264,3160205311,CH 3160205312,3160207359,GB 3160207360,3160209407,RU 3160209408,3160211455,SE 3160211456,3160213503,IE 3160213504,3160215551,DE 3160215552,3160219647,RU 3160219648,3160221695,ES 3160221696,3160223743,FR 3160223744,3160227839,RU 3160227840,3160229887,IR 3160229888,3160231935,ES 3160231936,3160233983,BE 3160233984,3160236031,GE 3160236032,3160238079,BE 3160238080,3160240127,RU 3160240128,3160242175,BE 3160242176,3160244223,RS 3160244224,3160246271,RU 3160246272,3160248319,IT 3160248320,3160250367,NL 3160250368,3160252415,BE 3160252416,3160254463,PL 3160254464,3160256511,LU 3160256512,3160258559,GB 3160258560,3160260607,NO 3160260608,3160262655,PT 3160262656,3160264703,HU 3160264704,3160266751,RU 3160266752,3160268799,DE 3160268800,3160272895,PT 3160272896,3160274943,RU 3160274944,3160276991,AT 3160276992,3160279039,FR 3160279040,3160281087,ES 3160281088,3160283135,GB 3160283136,3160285183,DE 3160285184,3160287231,RU 3160287232,3160289279,GB 3160289280,3160291327,RU 3160291328,3160293375,ES 3160293376,3160295423,FI 3160295424,3160297471,GB 3160297472,3160299519,MD 3160299520,3160301567,RU 3160301568,3160303615,DE 3160303616,3160305663,GB 3160305664,3160307711,DE 3160307712,3160309759,IT 3160309760,3160311807,GB 3160311808,3160313855,HU 3160313856,3160315903,IT 3160315904,3160317951,KZ 3160317952,3160322047,RU 3160322048,3160324095,CH 3160326144,3160328191,IT 3160328192,3160330239,FR 3160330240,3160332287,RU 3160332288,3160334335,NO 3160334336,3160336383,RU 3160336384,3160338431,CZ 3160338432,3160340479,GB 3160340480,3160346623,DE 3160346624,3160348671,IT 3160348672,3160350719,PL 3160350720,3160352767,SE 3160352768,3160354815,GB 3160354816,3160356863,NL 3160356864,3160358911,CZ 3160358912,3160360959,JO 3160360960,3160363007,IT 3160363008,3160365055,GB 3160367104,3160369151,NL 3160369152,3160371199,RU 3160371200,3160373247,ES 3160373248,3160375295,CZ 3160375296,3160377343,GB 3160377344,3160379391,NL 3160379392,3160381439,TR 3160381440,3160383487,UA 3160383488,3160385535,SA 3160385536,3160387583,NL 3160387584,3160389631,RS 3160389632,3160391679,RU 3160391680,3160395775,GB 3160395776,3160397823,EE 3160397824,3160399871,ES 3160399872,3160401919,SE 3160401920,3160403967,DE 3160403968,3160406015,NO 3160406016,3160408063,ES 3160408064,3161456639,DE 3161456640,3161473023,PL 3161473024,3161489407,SK 3161489408,3161505791,LV 3161505792,3161538559,RU 3161538560,3161554943,NO 3161554944,3161571327,RU 3161571328,3161587711,UZ 3161587712,3161604095,RU 3161604096,3161612287,PL 3161613056,3161613311,BR 3161615360,3161615615,ES 3161616128,3161616383,ES 3161616384,3161618431,GB 3161618432,3161620479,IQ 3161620480,3161636863,DK 3161636864,3161641215,RU 3161641216,3161641983,UA 3161641984,3161642239,RU 3161642240,3161645055,UA 3161645056,3161653247,RU 3161653248,3161669631,LU 3161669632,3161670143,FR 3161670144,3161670399,RE 3161670400,3161671423,FR 3161671424,3161671679,RE 3161671680,3161671935,FR 3161671936,3161672191,RE 3161672192,3161678335,FR 3161678336,3161678591,MQ 3161678592,3161679871,FR 3161679872,3161680127,GP 3161680128,3161680383,FR 3161680384,3161680895,GP 3161680896,3161681151,FR 3161681152,3161681407,GP 3161681408,3161686015,FR 3161686016,3161702399,UA 3161702400,3161718783,AM 3161718784,3161735167,PL 3161735168,3161751551,CZ 3161751552,3161767935,RU 3161767936,3161784319,BH 3161784320,3161800703,FI 3161800704,3161817087,SA 3161817088,3161833471,PL 3161833472,3161835519,RS 3161835520,3161841663,AT 3161841664,3161845759,RS 3161845760,3161846015,AT 3161846016,3161846271,MK 3161846272,3161849855,AT 3161849856,3161866239,BE 3161866240,3161882623,IR 3161882624,3161899007,DE 3161899008,3161915391,AT 3161915392,3161931775,TR 3161948160,3161964543,RO 3161964544,3161980927,ES 3161980928,3161989119,SK 3161989120,3161989631,TR 3161989632,3161990143,NL 3161990144,3161991167,TR 3161991168,3161993215,NL 3161993216,3161997311,RU 3161997312,3162005503,DK 3162005504,3162013695,RS 3162013696,3162021887,IL 3162021888,3162030079,SE 3162030080,3162038271,CZ 3162038272,3162046463,RU 3162046464,3162054655,PL 3162054656,3162062847,NL 3162062848,3162071039,SE 3162071040,3162087423,IR 3162087424,3162095615,SK 3162095616,3162103807,GE 3162103808,3162104831,FR 3162104832,3162111103,NL 3162111104,3162111167,FR 3162111168,3162111999,NL 3162112000,3162120191,PL 3162120192,3162128383,GB 3162128384,3162129407,NL 3162129408,3162129919,DE 3162129920,3162136575,NL 3162136576,3162144767,IR 3162144768,3162152959,SE 3162152960,3162161151,RU 3162161152,3162169343,CZ 3162169344,3162177535,RU 3162177536,3162185727,FI 3162185728,3162193919,RU 3162193920,3162202111,FR 3162202112,3162210303,SK 3162210304,3162218495,GE 3162218496,3162226687,JO 3162226688,3162234879,PL 3162234880,3162243071,RU 3162243072,3162251263,TR 3162251264,3162259455,RU 3162259456,3162267647,BG 3162267648,3162275839,RU 3162275840,3162284031,NO 3162284032,3162292223,PL 3162292224,3162300415,BA 3162300416,3162308607,RU 3162308608,3162316799,HR 3162316800,3162324991,PL 3162324992,3162327039,IE 3162327040,3162329087,CH 3162329088,3162329225,IR 3162329226,3162329226,IE 3162329227,3162331135,IR 3162331136,3162333183,GB 3162333184,3162341375,IT 3162341376,3162349567,PL 3162349568,3162357759,TR 3162357760,3162365951,PT 3162365952,3162374143,PL 3162374144,3162382335,BG 3162382336,3162390527,RU 3162390528,3162398719,SE 3162398720,3162404863,NL 3162404864,3162406911,BE 3162406912,3162415103,IR 3162415104,3162423295,DE 3162423296,3162431487,NO 3162431488,3162439679,SE 3162439680,3162447871,PL 3162447872,3162456063,RU 3162456064,3162464255,BG 3162464256,3162472447,BA 3162472448,3162480639,HU 3162480640,3162488831,ES 3162488832,3162497023,FI 3162497024,3162537983,RU 3162537984,3162570751,PL 3162570752,3162603519,HR 3162603520,3162636287,GE 3162636288,3162669055,FR 3162669056,3162676223,RU 3162676224,3162677247,KZ 3162677248,3162681343,RU 3162681344,3162682367,UA 3162682368,3162682879,MD 3162682880,3162683135,IE 3162683136,3162683391,ES 3162683392,3162685439,RU 3162685440,3162693631,UA 3162693632,3162701823,RU 3162701824,3162734591,MD 3162734592,3162767359,RU 3162767360,3162800127,SA 3162800128,3162832895,TR 3162832896,3162865663,GR 3162865664,3162931199,RU 3162931200,3162963967,CZ 3162963968,3162996735,OM 3162996736,3163029503,IT 3163029504,3163062271,DE 3163062272,3163095039,IR 3163095040,3163127807,PL 3163127808,3163160575,BH 3163160576,3163164927,DE 3163164928,3163165183,FR 3163165184,3163166975,DE 3163166976,3163167231,FR 3163167232,3163170527,DE 3163170528,3163170559,AE 3163170560,3163184739,DE 3163184740,3163184740,GR 3163184741,3163186534,DE 3163186535,3163186535,FR 3163186536,3163186673,DE 3163186674,3163186674,FR 3163186675,3163193343,DE 3163193344,3163226111,MD 3163226112,3163258879,SA 3163258880,3163291647,SY 3163291648,3163324415,PT 3163324416,3163357183,OM 3163357184,3163389951,IE 3163389952,3163422719,FR 3163422720,3163455487,NL 3163455488,3163521023,HU 3163521024,3163553791,RU 3163553792,3163684863,DE 3163684864,3163815935,PL 3163815936,3164078079,NO 3164078080,3164209151,IT 3164209152,3164340223,CH 3164340224,3164471295,HU 3164471296,3164602367,IR 3164602368,3164667903,SY 3164667904,3164733439,PS 3164733440,3164798975,RU 3164798976,3164864511,UA 3164864512,3164864735,ZA 3164864736,3164864767,IE 3164864768,3164897279,GB 3164897280,3164899327,IT 3164899328,3164901375,RU 3164901376,3164903423,PL 3164903424,3164905471,AM 3164905472,3164913663,RU 3164913664,3164915711,ES 3164915712,3164917759,GR 3164917760,3164919807,RU 3164919808,3164921855,AL 3164921856,3164923903,GB 3164923904,3164925951,DE 3164925952,3164927999,PL 3164928000,3164930047,NL 3164930048,3164932095,IE 3164932096,3164934143,FR 3164934144,3164936191,PL 3164936192,3164937749,LT 3164937750,3164937750,FR 3164937751,3164938239,LT 3164938240,3164946727,FR 3164946728,3164946731,NL 3164946732,3164947067,FR 3164947068,3164947071,IT 3164947072,3164947579,FR 3164947580,3164947583,IT 3164947584,3164950695,FR 3164950696,3164950703,NL 3164950704,3164951663,FR 3164951664,3164951671,PL 3164951672,3164952224,FR 3164952225,3164952231,GB 3164952232,3164952233,FR 3164952234,3164952235,GB 3164952236,3164952236,FR 3164952237,3164952237,GB 3164952238,3164953255,FR 3164953256,3164953263,CZ 3164953264,3164953391,FR 3164953392,3164953399,NL 3164953400,3164953583,FR 3164953584,3164953599,ES 3164953600,3164954511,FR 3164954512,3164954515,IT 3164954516,3164958895,FR 3164958896,3164958911,PT 3164958912,3164959551,FR 3164959552,3164959583,DE 3164959584,3164960247,FR 3164960248,3164960255,DE 3164960256,3164960263,FR 3164960264,3164960267,ES 3164960268,3164960439,FR 3164960440,3164960443,DE 3164960444,3164960715,FR 3164960716,3164960719,NL 3164960720,3164960787,FR 3164960788,3164960791,DE 3164960792,3164960799,FR 3164960800,3164960831,PT 3164960832,3164960843,FR 3164960844,3164960847,NL 3164960848,3164961391,FR 3164961392,3164961395,ES 3164961396,3164961551,FR 3164961552,3164961555,ES 3164961556,3164962471,FR 3164962472,3164962475,ES 3164962476,3164962815,FR 3164962816,3164964863,ES 3164964864,3164966911,FI 3164966912,3164967231,FR 3164967232,3164967239,ES 3164967240,3164967303,FR 3164967304,3164967307,DE 3164967308,3164968319,FR 3164968320,3164968447,GB 3164968448,3164968455,FR 3164968456,3164968459,NL 3164968460,3164968835,FR 3164968836,3164968839,ES 3164968840,3164969019,FR 3164969020,3164969023,BE 3164969024,3164969039,FR 3164969040,3164969047,NL 3164969048,3164969207,FR 3164969208,3164969211,NL 3164969212,3164970413,FR 3164970414,3164970415,IT 3164970416,3164970923,FR 3164970924,3164970927,LT 3164970928,3164971791,FR 3164971792,3164971799,IT 3164971800,3164973419,FR 3164973420,3164973423,ES 3164973424,3164973663,FR 3164973664,3164973695,GB 3164973696,3164974335,FR 3164974336,3164974437,GB 3164974438,3164974438,IT 3164974439,3164974463,GB 3164974464,3164974527,FR 3164974528,3164974559,ES 3164974560,3164974651,FR 3164974652,3164974655,DE 3164974656,3164976143,FR 3164976144,3164976159,BE 3164976160,3164976295,FR 3164976296,3164976303,IT 3164976304,3164995583,FR 3164995584,3165052927,NL 3165052928,3165061119,SG 3165061120,3165126655,SK 3165126656,3165192191,RU 3165192192,3165257727,GE 3165257728,3165323263,RU 3165323264,3165388799,ES 3165388800,3165417471,MT 3165417472,3165421567,DE 3165421568,3165425663,IE 3165425664,3165437951,GB 3165437952,3165439487,AT 3165439488,3165439743,GB 3165439744,3165439999,AT 3165440000,3165440255,JP 3165440256,3165440511,HK 3165440512,3165440767,JP 3165440768,3165442047,AT 3165442048,3165442303,TW 3165442304,3165442559,AU 3165442560,3165442815,KR 3165442816,3165443071,HK 3165443072,3165443583,CA 3165443584,3165444095,US 3165444096,3165444351,BR 3165444352,3165444607,ZA 3165444608,3165444863,IT 3165444864,3165445119,NL 3165445120,3165445375,AT 3165445376,3165445631,CA 3165445632,3165454335,AT 3165454336,3165519871,RO 3165519872,3165585407,DE 3165585408,3165650943,CZ 3165650944,3166175231,DK 3166175232,3166306303,CH 3166306304,3166437375,RU 3166437376,3166568447,BE 3166568448,3166593023,UA 3166593792,3166594047,UA 3166601216,3166609407,RU 3166609408,3166633983,UA 3166633984,3166639103,RU 3166639104,3166639359,UA 3166639360,3166642175,RU 3166642176,3166646271,UA 3166646272,3166650367,CZ 3166650368,3166654463,UA 3166654464,3166658559,RU 3166658560,3166662655,UA 3166662656,3166666751,RU 3166666752,3166667263,PL 3166667264,3166667775,CZ 3166667776,3166668799,GB 3166668800,3166670847,RO 3166670848,3166672895,UA 3166672896,3166674943,GB 3166674944,3166679039,RU 3166679040,3166681087,IR 3166681088,3166685183,RU 3166685184,3166687231,PL 3166687232,3166689279,MD 3166689280,3166691327,PL 3166691328,3166693375,RU 3166693376,3166695423,UA 3166695424,3166697471,RU 3166697472,3166699519,RO 3166699520,3166961663,DE 3166961664,3167223807,SI 3167223808,3167748095,NL 3167748096,3167758335,RO 3167758336,3167758463,NL 3167758464,3167760383,RO 3167760384,3167762431,GB 3167762432,3167764479,MD 3167764480,3167772671,IR 3167772672,3167773695,MD 3167773696,3167774207,RO 3167774208,3167774335,KR 3167774336,3167774463,PH 3167774464,3167774719,RO 3167774720,3167775743,MD 3167775744,3167775999,RO 3167776000,3167776255,GB 3167776256,3167776511,RO 3167776512,3167776767,GB 3167776768,3167777791,MD 3167777792,3167778815,RO 3167778816,3167780863,MD 3167780864,3167784959,RO 3167784960,3167797247,IR 3167797248,3167798271,MD 3167798272,3167799295,RO 3167799296,3167803391,MD 3167803392,3167804159,RO 3167804160,3167804415,ES 3167804416,3167805439,GB 3167805440,3167813631,IR 3167813632,3167815679,MD 3167815680,3167825919,IR 3167825920,3167830015,NL 3167830016,3167834111,IR 3167834112,3167838207,IT 3167838208,3167842303,RO 3167842304,3167843327,ES 3167843328,3167844351,RO 3167844352,3167846399,GB 3167846400,3167866879,IR 3167866880,3167868927,RO 3167868928,3167879167,MD 3167879168,3167895551,DE 3167895552,3167899647,IR 3167899648,3167902719,RO 3167902720,3167902975,BE 3167902976,3167903231,NL 3167903232,3167903743,RO 3167903744,3167932415,IR 3167932416,3167933439,CH 3167933440,3167933695,RO 3167933696,3167933951,DE 3167933952,3167934207,US 3167934208,3167934463,RO 3167934464,3167935487,ES 3167935488,3167936511,PL 3167936512,3167938559,RO 3167938560,3167939583,MD 3167939584,3167940607,RO 3167940608,3167943679,MD 3167943680,3167944191,GB 3167944192,3167944447,RO 3167944448,3167944703,GB 3167944704,3167948799,IR 3167948800,3167951359,RO 3167951360,3167951487,IN 3167951488,3167951615,KR 3167951616,3167952895,RO 3167952896,3167985663,IR 3167985664,3167985919,US 3167985920,3167986431,RO 3167986432,3167986687,UA 3167986688,3167987711,RO 3167987712,3167989759,MD 3167989760,3168002047,IR 3168002048,3168005887,RO 3168005888,3168006143,NL 3168006144,3168008191,SE 3168008192,3168010239,RO 3168010240,3168011519,MD 3168011520,3168011775,RO 3168011776,3168012287,IR 3168012288,3168014335,MD 3168014336,3168015359,ES 3168015360,3168015615,BE 3168015616,3168015871,RO 3168015872,3168016127,US 3168016128,3168016383,GB 3168016384,3168018431,MD 3168018432,3168018687,TR 3168018688,3168020479,RO 3168020480,3168022527,MD 3168022528,3168034815,IR 3168034816,3168037887,RO 3168037888,3168038399,SE 3168038400,3168038911,RO 3168038912,3168039935,MD 3168039936,3168040959,BE 3168040960,3168050431,RO 3168050432,3168050687,MD 3168050688,3168051199,RO 3168051200,3168059391,IR 3168059392,3168063487,RO 3168063488,3168073727,IR 3168073728,3168074239,RO 3168074240,3168074495,GB 3168074496,3168077823,RO 3168077824,3168079871,ES 3168079872,3168081919,RO 3168081920,3168083967,FR 3168083968,3168084991,RO 3168084992,3168086015,MD 3168086016,3168088063,IT 3168088064,3168089087,RO 3168089088,3168090111,MD 3168090112,3168092159,ES 3168092160,3168096255,IR 3168096256,3168100351,MD 3168100352,3168108543,IR 3168108544,3168110335,RO 3168110336,3168110591,GB 3168110592,3168110847,IT 3168110848,3168111359,RO 3168111360,3168111615,IT 3168111616,3168112639,FR 3168112640,3168116735,IR 3168116736,3168120831,RO 3168120832,3168126975,IR 3168126976,3168127999,RO 3168128000,3168128255,MX 3168128256,3168128511,RO 3168128512,3168129023,GB 3168129024,3168130047,MD 3168130048,3168130559,RO 3168130560,3168131071,GB 3168131072,3168131583,RO 3168131584,3168131711,IN 3168131712,3168131839,CN 3168131840,3168132095,RO 3168132096,3168133119,MD 3168133120,3168135679,RO 3168135680,3168136191,CZ 3168136192,3168137471,RO 3168137472,3168137727,MD 3168137728,3168137983,RO 3168137984,3168138239,NL 3168138240,3168139263,MD 3168139264,3168141311,GB 3168141312,3168143615,RO 3168143616,3168143871,UA 3168143872,3168144383,RO 3168144384,3168144639,SG 3168144640,3168145151,RO 3168145152,3168145407,UA 3168145408,3168147455,RO 3168147456,3168147967,FR 3168147968,3168154111,RO 3168154112,3168154367,SG 3168154368,3168155135,RO 3168155136,3168155391,IT 3168155392,3168156671,RO 3168156672,3168157695,MD 3168157696,3168161791,IR 3168161792,3168164351,RO 3168164352,3168164863,GB 3168164864,3168165119,RO 3168165120,3168165375,DE 3168165376,3168165887,GB 3168165888,3168166911,MD 3168166912,3168167935,FR 3168167936,3168169983,RO 3168169984,3168172031,ES 3168172032,3168172543,IR 3168172544,3168174079,RO 3168174080,3168176127,LT 3168176128,3168177151,MD 3168177152,3168178175,RO 3168178176,3168179199,MD 3168179200,3168182271,RO 3168182272,3168190463,IR 3168190464,3168191999,RO 3168192000,3168192255,GB 3168192256,3168192511,RO 3168192512,3168194559,MD 3168194560,3168199679,RO 3168199680,3168200703,MD 3168200704,3168202751,IR 3168202752,3168203775,ES 3168203776,3168211455,RO 3168211456,3168211967,CZ 3168211968,3168212223,NL 3168212224,3168212479,US 3168212480,3168212735,RO 3168212736,3168212991,FR 3168212992,3168215551,RO 3168215552,3168215807,TH 3168215808,3168223743,RO 3168223744,3168224255,MD 3168224256,3168237567,RO 3168237568,3168239615,PS 3168239616,3168243711,IR 3168243712,3168247807,RO 3168247808,3168264191,IR 3168264192,3168265727,RO 3168265728,3168265855,FR 3168265856,3168265983,RO 3168265984,3168266239,GR 3168266240,3168267263,RO 3168267264,3168269311,MD 3168269312,3168270591,RO 3168270592,3168270847,MD 3168270848,3168271359,RO 3168271360,3168272383,MD 3168272384,3168534527,IT 3168534528,3168796671,GB 3168796672,3168829439,FR 3168829440,3168862207,RO 3168862208,3168894975,RU 3168894976,3168927231,PS 3168927232,3168927487,IL 3168927488,3168927743,PS 3168927744,3168960511,RU 3168960512,3168993279,NL 3168993280,3169026047,RU 3169026048,3169034239,CZ 3169034240,3169042431,GB 3169044480,3169046527,NL 3169046528,3169050623,AZ 3169050624,3169052671,HU 3169052672,3169054719,PS 3169054720,3169056767,GB 3169056768,3169058815,EE 3169058816,3169091583,DK 3169091584,3169124351,IT 3169124352,3169157119,RO 3169157120,3169189887,SY 3169189888,3169222655,UA 3169222656,3169255423,SI 3169255424,3169279999,KW 3169280000,3169285119,GB 3169285120,3169288191,KW 3169288192,3169320959,UA 3169320960,3169583103,RU 3169583104,3169648639,KW 3169648640,3169714175,MD 3169714176,3169779711,FI 3169779712,3169845247,UA 3169845248,3169854463,RO 3169854464,3169854719,ES 3169854720,3169863167,RO 3169863168,3169863423,MD 3169863424,3169863679,RO 3169863680,3169864703,MD 3169864704,3169869823,RO 3169869824,3169878015,MD 3169878016,3169882111,RO 3169882112,3169886207,SE 3169886208,3169894399,GB 3169894400,3169895423,ES 3169895424,3169895679,IR 3169895680,3169897471,RO 3169897472,3169898495,ES 3169898496,3169899263,RO 3169899264,3169899391,CN 3169899392,3169899519,TW 3169899520,3169899775,IR 3169899776,3169902079,RO 3169902080,3169902591,SE 3169902592,3169905663,RO 3169905664,3169906687,ES 3169906688,3169913855,RO 3169913856,3169914111,GB 3169914112,3169920767,RO 3169920768,3169921023,BZ 3169921024,3169923071,GB 3169923072,3169927423,RO 3169927424,3169927679,NL 3169927680,3169928191,RO 3169928192,3169928447,SE 3169928448,3169935359,RO 3169935360,3169937407,ES 3169937408,3169951743,RO 3169951744,3169955839,SE 3169955840,3169960191,RO 3169960192,3169960447,NL 3169960448,3169976319,RO 3169976320,3170111487,RU 3170111488,3170115583,MD 3170115584,3170119679,RU 3170119680,3170123775,CZ 3170123776,3170127871,DK 3170127872,3170131967,ES 3170131968,3170136063,JO 3170136064,3170140159,GB 3170140160,3170172927,RU 3170172928,3170238463,IR 3170238464,3170246655,DE 3170246656,3170254847,RS 3170254848,3170263039,BA 3170263040,3170271231,CZ 3170271232,3170279423,PL 3170279424,3170287615,RU 3170287616,3170295807,GB 3170295808,3170303999,RU 3170304000,3170312191,SY 3170312192,3170320383,RU 3170320384,3170327593,JO 3170327594,3170327594,US 3170327595,3170328575,JO 3170328576,3170336767,UA 3170336768,3170338815,RO 3170338816,3170344959,ES 3170344960,3170347007,RO 3170347008,3170349055,ES 3170349056,3170361343,KZ 3170361344,3170369535,RO 3170369536,3170500607,SA 3170500608,3170631679,PT 3170631680,3170664447,PL 3170664448,3170697215,HR 3170697216,3170729983,IR 3170729984,3170762751,AZ 3170762752,3170795519,RU 3170795520,3170828287,BG 3170828288,3170861055,RU 3170861056,3170893823,RS 3170893824,3173887999,BR 3173892096,3174223871,BR 3174227968,3179282431,BR 3179282432,3184116735,MX 3184116736,3184123903,BR 3184123904,3184125951,MX 3184125952,3184127999,BR 3184128000,3187671039,MX 3187671040,3187687423,CO 3187687424,3187695615,DO 3187695616,3187703807,AR 3187703808,3187711999,UY 3187712000,3187720191,AR 3187720192,3187728383,GT 3187728384,3187730431,CR 3187730432,3187732479,AR 3187732480,3187734527,CO 3187734528,3187736575,BO 3187736576,3187752959,AR 3187752960,3187761151,CO 3187761152,3187769343,AR 3187769344,3187802111,CO 3187802112,3187818495,AR 3187820544,3187822591,BR 3187822592,3187824639,AR 3187824640,3187826687,CL 3187826688,3187834879,AR 3187834880,3187843071,CW 3187843072,3187846143,AW 3187846144,3187849215,CW 3187849216,3187849471,CO 3187849472,3187851263,CW 3187851264,3187855359,PY 3187855360,3187855871,CY 3187855872,3187857407,PA 3187857408,3187859455,CR 3187859456,3187863551,PA 3187863552,3187908607,AR 3187908608,3187910655,CO 3187910656,3187914751,CL 3187914752,3187916799,BO 3187916800,3187933183,CO 3187933184,3187933311,HN 3187933312,3187933341,GT 3187933342,3187933342,HN 3187933343,3187935519,GT 3187935520,3187935527,HN 3187935528,3187935543,GT 3187935544,3187935551,HN 3187935552,3187935607,GT 3187935608,3187935615,HN 3187935616,3187936047,GT 3187936048,3187936063,HN 3187936064,3187936583,GT 3187936584,3187936591,HN 3187936592,3187936711,GT 3187936712,3187936719,HN 3187936720,3187937799,GT 3187937800,3187937807,HN 3187937808,3187939847,GT 3187939848,3187939855,HN 3187939856,3187940479,GT 3187940480,3187940543,HN 3187940544,3187940963,GT 3187940964,3187940967,HN 3187940968,3187941207,GT 3187941208,3187941215,HN 3187941216,3187941647,GT 3187941648,3187941655,HN 3187941656,3187942563,GT 3187942564,3187942567,HN 3187942568,3187943055,GT 3187943056,3187943063,HN 3187943064,3187943127,GT 3187943128,3187943135,HN 3187943136,3187943399,GT 3187943400,3187943403,HN 3187943404,3187943551,GT 3187943552,3187943679,HN 3187943680,3187944383,GT 3187944384,3187944399,HN 3187944400,3187944671,GT 3187944672,3187944679,HN 3187944680,3187944773,GT 3187944774,3187944774,HN 3187944775,3187944831,GT 3187944832,3187944835,HN 3187944836,3187945343,GT 3187945344,3187945471,HN 3187945472,3187945971,GT 3187945972,3187945975,HN 3187945976,3187946111,GT 3187946112,3187946239,HN 3187946240,3187946495,GT 3187946496,3187946751,HN 3187946752,3187946887,GT 3187946888,3187946895,HN 3187946896,3187947983,GT 3187947984,3187947987,HN 3187947988,3187948031,GT 3187948032,3187948287,HN 3187948288,3187948479,GT 3187948480,3187948543,HN 3187948544,3187948799,GT 3187948800,3187948927,HN 3187948928,3187949311,GT 3187949312,3187949439,HN 3187949440,3187949567,GT 3187949568,3187950126,BQ 3187950127,3187950127,CW 3187950128,3187953663,BQ 3187953664,3187955711,CL 3187955712,3187957759,CR 3187957760,3187961855,CL 3187961856,3187965951,AR 3187965952,3187982335,CW 3187982336,3187998719,CL 3187998720,3188006911,AR 3188006912,3188015103,CL 3188015104,3188031487,HN 3188031488,3188039679,SV 3188039680,3188047871,AR 3188047872,3188051967,CO 3188051968,3188054015,CR 3188054016,3188056063,AR 3188056064,3188064255,PA 3188064256,3188080639,VE 3188080640,3188088831,CU 3188088832,3188094975,AR 3188094976,3188097023,CL 3188097024,3188105215,DO 3188105216,3188113407,CO 3188113408,3188117503,HN 3188117504,3188121599,AR 3188121600,3188125695,TT 3188125696,3188137175,AR 3188137176,3188137183,DE 3188137184,3188146175,AR 3188146176,3188152171,CO 3188152172,3188152175,PE 3188152176,3188170751,CO 3188170752,3188174847,CR 3188174848,3188178943,BR 3188178944,3188187135,CR 3188187136,3188203519,AR 3188203520,3188207615,DO 3188207616,3188211711,AR 3188211712,3188228095,CL 3188228096,3188236287,PE 3188236288,3188237311,PA 3188237312,3188238847,VE 3188238848,3188239103,US 3188239104,3188239359,VE 3188239360,3188240383,PE 3188240384,3188241407,CO 3188241408,3188242431,EC 3188242432,3188244479,AR 3188244480,3188248575,CO 3188248576,3188248703,CL 3188248704,3188260863,CO 3188260864,3188269055,AR 3188269056,3188269439,MX 3188269440,3188269567,CO 3188269568,3188269823,MX 3188269824,3188270079,VE 3188270080,3188270335,MX 3188270336,3188270719,VE 3188270720,3188270847,MX 3188270848,3188271103,BR 3188271104,3188273151,MX 3188273152,3188275199,PA 3188275200,3188277247,CL 3188277248,3188293631,CO 3188293632,3188301823,VE 3188301824,3188310015,EC 3188310016,3188326399,CO 3188326400,3188359167,CR 3188359168,3188400127,EC 3188400128,3188408319,AR 3188408320,3188416511,BO 3188416512,3188445183,AR 3188445184,3188449279,PE 3188449280,3188453375,HN 3188453376,3188473855,EC 3188473856,3188482047,PE 3188482048,3188490239,AR 3188490240,3188498431,CO 3188498432,3188511103,AR 3188511104,3188511231,US 3188511232,3188512127,AR 3188512128,3188512255,US 3188512256,3188513407,AR 3188513408,3188513535,US 3188513536,3188516095,AR 3188516096,3188516223,US 3188516224,3188517119,AR 3188517120,3188517247,US 3188517248,3188517759,AR 3188517760,3188517887,US 3188517888,3188518271,AR 3188518272,3188518399,US 3188518400,3188523007,AR 3188523008,3188539391,CO 3188539392,3188543487,CL 3188543488,3188543999,CY 3188544000,3188545535,PA 3188545536,3188547583,AR 3188547584,3188551679,CO 3188551680,3188552703,AR 3188552704,3188553727,CL 3188553728,3188555775,CW 3188555776,3188572159,CL 3188572160,3188576255,CO 3188576256,3188597759,AR 3188597760,3188598783,PA 3188598784,3188600831,AR 3188600832,3188604927,CL 3188604928,3188621311,BO 3188621312,3188625407,GT 3188625408,3188627455,AR 3188627456,3188628479,CR 3188628480,3188637695,AR 3188637696,3188645887,PA 3188645888,3188662271,CO 3188662272,3188670463,BR 3188670464,3188674559,HN 3188674560,3188678655,AR 3188678656,3188682751,BR 3188682752,3188686847,AR 3188686848,3188690943,EC 3188690944,3188695039,CU 3188695040,3188703231,VE 3188703232,3188981759,AR 3188981760,3189178367,CL 3189178368,3189243903,PY 3189243904,3189637119,CO 3189637120,3189768191,AR 3189768192,3190030335,PA 3190030336,3190292479,VE 3190292480,3190554623,PE 3190554624,3190816767,CL 3190816768,3191078911,AR 3191078912,3191087103,CO 3191087104,3191091199,AR 3191091200,3191093247,BO 3191093248,3191095295,AR 3191095296,3191099391,EC 3191099392,3191103487,AR 3191103488,3191107583,VE 3191107584,3191108607,PE 3191108608,3191108639,MX 3191108640,3191108959,PE 3191108960,3191108991,CO 3191108992,3191109119,PE 3191109120,3191111167,MX 3191111168,3191111679,PE 3191111680,3191128063,PY 3191128064,3191132159,EC 3191132160,3191136255,AR 3191136256,3191144447,DO 3191144448,3191152639,SV 3191152640,3191155711,NI 3191155712,3191156223,SV 3191156224,3191156735,NI 3191156736,3191169023,HN 3191169024,3191193599,SV 3191193600,3191209983,HN 3191209984,3191275519,CL 3191275520,3191341055,AR 3191341056,3191406591,GT 3191406592,3191439359,SV 3191439360,3191455743,EC 3191455744,3191472127,AR 3191472128,3191603199,TT 3191603200,3191603519,CO 3191603520,3191603583,PR 3191603584,3191607295,CO 3191607296,3191607327,MX 3191607328,3191607807,CO 3191607808,3191608319,CL 3191608320,3191610623,CO 3191610624,3191611135,PE 3191611136,3191611391,CO 3191611392,3191619583,VE 3191619584,3191619903,CL 3191619904,3191619935,VE 3191619936,3191624191,CL 3191624192,3191624447,CO 3191624448,3191635967,CL 3191635968,3191637759,CO 3191637760,3191638015,AR 3191638016,3191647743,CO 3191647744,3191647935,AR 3191647936,3191648255,CO 3191648256,3191649791,US 3191649792,3191650303,CO 3191650304,3191652095,US 3191652096,3191668991,CO 3191668992,3191669247,PY 3191669248,3191670015,CO 3191670016,3191670271,AR 3191670272,3191670783,CO 3191670784,3191672831,CL 3191672832,3191673343,CO 3191673344,3191676927,CL 3191676928,3191677951,US 3191677952,3191678207,AR 3191678208,3191678719,US 3191678720,3191678975,AR 3191678976,3191680767,US 3191680768,3191681279,AR 3191681280,3191681535,US 3191681536,3191682303,AR 3191682304,3191682559,US 3191682560,3191683071,AR 3191683072,3191685119,US 3191685120,3191685631,AR 3191685632,3191685887,US 3191685888,3191687167,AR 3191687168,3191688703,CO 3191688704,3191693311,US 3191693312,3191695871,CL 3191695872,3191696127,US 3191696128,3191696383,CO 3191696384,3191701503,US 3191701504,3191702527,CL 3191702528,3191704575,US 3191704576,3191704831,CO 3191704832,3191705343,US 3191705344,3191705599,CO 3191705600,3191706623,US 3191706624,3191707647,CO 3191707648,3191719935,CL 3191719936,3191722495,AR 3191722496,3191725055,CL 3191725056,3191725311,AR 3191725312,3191725567,CL 3191725568,3191725823,CO 3191725824,3191726079,CL 3191726080,3191726335,AR 3191726336,3191726591,CL 3191726592,3191726847,AR 3191726848,3191727103,CL 3191727104,3191727359,AR 3191727360,3191727871,CO 3191727872,3191728127,CL 3191728128,3191729407,CO 3191729408,3191729663,CL 3191729664,3191729919,CO 3191729920,3191730431,CL 3191730432,3191730687,AR 3191730688,3191730943,CL 3191730944,3191731199,AR 3191731200,3191731455,CL 3191731456,3191731711,CO 3191731712,3191731967,AR 3191731968,3191732223,CO 3191732224,3191732479,CL 3191732480,3191732735,AR 3191732736,3191734079,CO 3191734080,3191734143,US 3191734144,3191734271,CO 3191734272,3191799807,SV 3191799808,3191865343,EC 3191865344,3191930879,UY 3191930880,3192389631,CO 3192389632,3192913919,VE 3192913920,3192946687,GY 3192946688,3192979455,DO 3192979456,3193044991,PE 3193044992,3193110527,CL 3193143296,3193176063,TT 3193176064,3193307135,CO 3193307136,3193438207,SV 3193438208,3193569279,CW 3193569280,3193573087,CO 3193573088,3193573095,US 3193573096,3193575311,CO 3193575312,3193575327,PE 3193575328,3193579263,CO 3193579264,3193579519,EC 3193579520,3193582591,CO 3193582592,3193583103,EC 3193583104,3193589503,CO 3193589504,3193589759,EC 3193589760,3193592319,CO 3193592320,3193592575,EC 3193592576,3193595391,CO 3193595392,3193595647,EC 3193595648,3193599743,CO 3193599744,3193600255,EC 3193600256,3193604351,CO 3193604352,3193605631,EC 3193605632,3193606143,CO 3193606144,3193606399,EC 3193606400,3193606655,CO 3193606656,3193607167,EC 3193607168,3193617151,CO 3193617152,3193617407,EC 3193617408,3193621759,CO 3193621760,3193622015,EC 3193622016,3193622271,CO 3193622272,3193623551,EC 3193623552,3193624063,CO 3193624064,3193624575,EC 3193624576,3193625599,CO 3193625600,3193625855,EC 3193625856,3193626111,CO 3193626112,3193626623,US 3193626624,3193628927,CO 3193628928,3193629695,EC 3193629696,3193630975,CO 3193630976,3193631231,EC 3193631232,3193634559,CO 3193634560,3193634815,EC 3193634816,3193700351,CL 3193700352,3193722751,HN 3193722752,3193722879,GT 3193722880,3193724927,HN 3193724928,3193729023,AR 3193729024,3193733119,CU 3193733120,3193735167,AR 3193735168,3193735935,US 3193735936,3193736191,AR 3193736192,3193736959,US 3193736960,3193737215,AR 3193737216,3193739007,US 3193739008,3193739263,AR 3193739264,3193742335,US 3193742336,3193742591,AR 3193742592,3193742847,US 3193742848,3193743231,AR 3193743232,3193743359,US 3193743360,3193743743,AR 3193743744,3193744127,US 3193744128,3193744639,AR 3193744640,3193745407,US 3193745408,3193746431,AR 3193746432,3193746687,US 3193746688,3193746751,AR 3193746752,3193746815,US 3193746816,3193746879,AR 3193746880,3193748479,US 3193748480,3193748863,AR 3193748864,3193750271,US 3193750272,3193750527,AR 3193750528,3193750783,US 3193750784,3193751039,AR 3193751040,3193751551,US 3193751552,3193751807,AR 3193751808,3193752959,US 3193752960,3193753087,AR 3193753088,3193753343,US 3193753344,3193753471,AR 3193753472,3193753599,US 3193753600,3193754111,AR 3193754112,3193754367,US 3193754368,3193754623,AR 3193754624,3193754751,US 3193754752,3193755007,AR 3193755008,3193755519,US 3193755520,3193755647,AR 3193755648,3193755775,US 3193755776,3193756415,AR 3193756416,3193756543,US 3193756544,3193756799,AR 3193756800,3193756927,US 3193756928,3193757055,AR 3193757056,3193757183,US 3193757184,3193765887,AR 3193765888,3193774079,TT 3193774080,3193775103,PA 3193775104,3193776127,GY 3193776128,3193777151,AR 3193777152,3193778175,VE 3193778176,3193782271,AR 3193782272,3193798655,TT 3193798656,3193806847,CO 3193806848,3193808895,CR 3193808896,3193809663,US 3193809664,3193810943,CR 3193810944,3193815039,PY 3193815040,3193823231,AR 3193823232,3193827327,CL 3193827328,3193828351,CR 3193828352,3193828863,US 3193828864,3193831423,CR 3193831424,3193864191,DO 3193864192,3193872383,EC 3193872384,3193880575,AR 3193880576,3193896959,VE 3193896960,3193929727,CL 3193929728,3193962495,EC 3193962496,3193987071,CL 3193987072,3193991167,EC 3193991168,3193995263,AR 3193995264,3194028031,CO 3194028032,3194044415,AR 3194044416,3194052607,CO 3194052608,3194056703,TT 3194056704,3194058751,BQ 3194058752,3194060799,AR 3194060800,3194068991,CO 3194068992,3194071039,PA 3194071040,3194072063,CL 3194073088,3194077183,HN 3194077184,3194085375,CO 3194085376,3194093567,VE 3194093568,3194126335,SR 3194126336,3194126591,GT 3194126592,3194126847,NL 3194126848,3194126911,GT 3194126912,3194126975,PE 3194126976,3194127103,GT 3194127104,3194127359,BR 3194127360,3194128383,PE 3194128384,3194129407,NI 3194129408,3194129663,AR 3194129664,3194129671,BR 3194129672,3194129919,AR 3194129920,3194130047,BR 3194130048,3194130175,CO 3194130176,3194130431,AR 3194130432,3194134527,BR 3194134528,3194135551,AR 3194135552,3194136063,GT 3194136064,3194136319,BR 3194136320,3194136575,GT 3194136576,3194137087,BR 3194137088,3194140159,AR 3194140160,3194142719,CR 3194142720,3194159103,CL 3194159104,3194165247,HN 3194165248,3194175487,SV 3194175488,3194177535,AR 3194177536,3194179583,EC 3194179584,3194181631,AR 3194181632,3194182655,CL 3194182656,3194183679,BO 3194183680,3194187775,UY 3194187776,3194188799,AR 3194188800,3194189823,GT 3194189824,3194191871,CR 3194191872,3194224639,CO 3194224640,3194355711,CL 3194355712,3194363903,SX 3194363904,3194367999,CR 3194368000,3194370047,BO 3194370048,3194372095,PA 3194372096,3194380287,HT 3194380288,3194388479,US 3194388480,3194396671,PE 3194396672,3194413055,CO 3194413056,3194421247,CL 3194421248,3194428415,AR 3194428416,3194437631,VE 3194437632,3194441727,BO 3194441728,3194445823,AR 3194445824,3194449175,CO 3194449176,3194449183,PE 3194449184,3194454015,CO 3194454016,3194458111,AR 3194458112,3194462207,CL 3194462208,3194466303,BR 3194466304,3194467327,AR 3194467328,3194468351,DO 3194468352,3194469375,US 3194469376,3194469631,CA 3194469632,3194469887,CR 3194469888,3194470143,US 3194470144,3194470399,CR 3194470400,3194486783,AR 3194486784,3194494975,BO 3194494976,3194511359,AR 3194511360,3194515455,AW 3194515456,3194519551,GT 3194519552,3194535935,PY 3194535936,3194585087,AR 3194585088,3194586623,HN 3194586624,3194586879,US 3194586880,3194589183,HN 3194589184,3194591231,AR 3194591232,3194592255,PA 3194592256,3194593279,GY 3194593280,3194595327,AR 3194595328,3194596351,PA 3194596352,3194597375,HT 3194597376,3194601471,AR 3194601472,3194602495,CW 3194602496,3194610943,AR 3194610944,3194611199,CO 3194611200,3194613503,AR 3194613504,3194613759,CL 3194613760,3194617855,PE 3194617856,3194626047,NI 3194626048,3194630143,AR 3194630144,3194634239,NI 3194634240,3194638335,CR 3194638336,3194640383,AR 3194640384,3194642431,BZ 3194642432,3194646527,AR 3194646528,3194648575,DO 3194648576,3194652159,AR 3194652160,3194652415,MX 3194652416,3194652671,AR 3194652672,3194654719,MX 3194654720,3194659839,AR 3194659840,3194660351,US 3194660352,3194661119,AR 3194661120,3194661375,US 3194661376,3194661887,AR 3194661888,3194662399,US 3194662400,3194663167,AR 3194663168,3194664447,US 3194664448,3194664959,AR 3194664960,3194665215,US 3194665216,3194665471,AR 3194665472,3194665727,US 3194665728,3194665983,AR 3194665984,3194666239,US 3194666240,3194667007,AR 3194667008,3194675199,GT 3194675200,3194679295,PA 3194679296,3194683391,BO 3194683392,3194687487,CU 3194687488,3194691583,CO 3194691584,3194699775,BO 3194699776,3194705919,EC 3194705920,3194707711,CR 3194707712,3194707967,US 3194707968,3194716159,AR 3194716160,3194724351,HN 3194724352,3194728447,PA 3194728448,3194729471,CL 3194729472,3194730495,PE 3194730496,3194732543,AR 3194732544,3194736639,BR 3194736640,3194737663,NI 3194737664,3194740735,AR 3194740736,3194742783,CL 3194742784,3194744831,EC 3194744832,3194746879,AR 3194746880,3194748927,BQ 3194748928,3194757119,UY 3194757120,3194765311,AR 3194765312,3194767359,EC 3194767360,3194768383,CR 3194768384,3194769407,AR 3194769408,3194773503,PE 3194773504,3194781695,BR 3194781696,3194798079,CL 3194798080,3194799103,AR 3194799104,3194804223,GY 3194804224,3194805247,AR 3194805248,3194806271,CR 3194806272,3194814463,AR 3194814464,3194818559,PA 3194818560,3194830847,AR 3194830848,3194836991,BR 3194836992,3194838015,PA 3194838016,3194839039,MX 3194839040,3194863615,CO 3194863616,3194871807,HN 3194871808,3194879999,BO 3194880000,3194896383,DO 3194896384,3194904575,CO 3194904576,3194908671,CL 3194908672,3194910719,AR 3194910720,3194925055,CL 3194925056,3194929151,AR 3194929152,3194937343,EC 3194937344,3194945535,AR 3194945536,3194953215,GT 3194953216,3194953343,NI 3194953344,3194953727,GT 3194953728,3194959871,AR 3194959872,3194960383,US 3194960384,3194960895,AR 3194960896,3194961151,US 3194961152,3194961407,AR 3194961408,3194961919,US 3194961920,3194970111,EC 3194970112,3194974207,PA 3194974208,3194976255,AR 3194976256,3194977279,VE 3194977280,3194978303,AR 3194978304,3194978559,PA 3194978560,3194978687,CW 3194978688,3194982911,PA 3194982912,3194983039,US 3194983040,3194984191,PA 3194984192,3194984319,US 3194984320,3194984831,PA 3194984832,3194984959,GB 3194984960,3194985471,PA 3194985472,3194985599,US 3194985600,3194994687,PA 3194994688,3195023359,AR 3195023360,3195024383,CL 3195024384,3195025407,UY 3195025408,3195043839,AR 3195043840,3195056127,CO 3195056128,3195060223,AR 3195060224,3195061247,US 3195061248,3195062271,AR 3195062272,3195062783,US 3195062784,3195063039,UY 3195063040,3195063295,US 3195063296,3195064319,BR 3195064320,3195066367,PY 3195066368,3195067391,AR 3195067392,3195068415,CR 3195068416,3195076607,CW 3195076608,3195084799,CL 3195084800,3195085055,CR 3195085056,3195086335,NI 3195086336,3195087359,CR 3195087360,3195087615,NI 3195087616,3195088127,CR 3195088128,3195088639,NI 3195088640,3195088895,CR 3195088896,3195089919,NI 3195089920,3195090431,CR 3195090432,3195090687,NI 3195090688,3195091199,CR 3195091200,3195091455,NI 3195091456,3195092223,CR 3195092224,3195092479,NI 3195092480,3195092735,CR 3195092736,3195092991,NI 3195092992,3195097087,DO 3195097088,3195099135,CR 3195099136,3195100159,GT 3195100160,3195101183,PY 3195101184,3195109375,CR 3195109376,3195125759,AR 3195125760,3195133951,PE 3195133952,3195138047,AR 3195138048,3195139071,DO 3195139072,3195140095,CL 3195140096,3195142143,CR 3195142144,3195142399,MX 3195142400,3195142655,PA 3195142656,3195142911,VE 3195142912,3195150335,PA 3195150336,3195158527,CL 3195158528,3195199487,AR 3195199488,3195201535,PY 3195201536,3195203583,AR 3195203584,3195205631,VE 3195205632,3195206655,PE 3195206656,3195207679,CL 3195207680,3195209687,GT 3195209688,3195209695,PR 3195209696,3195211775,GT 3195211776,3195214988,BZ 3195214989,3195214989,RU 3195214990,3195215871,BZ 3195215872,3195224063,AR 3195224064,3195232255,PA 3195232256,3195234559,CR 3195234560,3195234815,PA 3195234816,3195235327,CR 3195235328,3195235583,PA 3195235584,3195236351,CR 3195236352,3195240447,AR 3195240448,3195256831,HT 3195256832,3195265023,AR 3195265024,3195273215,CO 3195273216,3195535359,PE 3195535360,3195543551,SV 3195547648,3195551743,AR 3195551744,3195559935,EC 3195559936,3195568127,AR 3195568128,3195572223,CO 3195572224,3195576319,AR 3195576320,3195580415,CL 3195580416,3195584511,AR 3195584512,3195592703,HT 3195592704,3195596799,PA 3195596800,3195597823,CR 3195597824,3195598847,AR 3195598848,3195600895,VE 3195600896,3195633663,CL 3195633664,3195641855,CO 3195641856,3195645951,PY 3195645952,3195650047,AR 3195650048,3195654143,GT 3195654144,3195658239,CW 3195658240,3195662335,VE 3195662336,3195666431,CW 3195666432,3195691007,AR 3195691008,3195699199,DO 3195699200,3195707391,AR 3195707392,3195711487,PA 3195711488,3195712511,SV 3195712512,3195713535,AR 3195713536,3195714559,GT 3195714560,3195715583,PA 3195715584,3195721727,AR 3195721728,3195723775,VE 3195723776,3195731967,AR 3195731968,3195736063,EC 3195736064,3195736575,BQ 3195736576,3195736831,AI 3195736832,3195737087,BQ 3195737088,3195738111,CW 3195738112,3195740159,HN 3195740160,3195740415,US 3195740416,3195740927,PA 3195740928,3195741055,US 3195741056,3195741087,HN 3195741088,3195741695,US 3195741696,3195744255,PA 3195744256,3195748351,EC 3195748352,3195752447,CL 3195752448,3195763711,AR 3195763712,3195764735,BO 3195764736,3195768831,CR 3195768832,3195772927,AR 3195772928,3195781119,VE 3195781120,3195785215,PA 3195785216,3195786191,HN 3195786192,3195786199,US 3195786200,3195786527,HN 3195786528,3195786543,US 3195786544,3195786991,HN 3195786992,3195787007,CA 3195787008,3195787127,HN 3195787128,3195787135,DE 3195787136,3195787215,HN 3195787216,3195787231,US 3195787232,3195787607,HN 3195787608,3195787615,DE 3195787616,3195788159,HN 3195788160,3195788167,CA 3195788168,3195789311,HN 3195789312,3195793407,PA 3195793408,3195801599,AR 3195801600,3195803647,HN 3195803648,3195804671,CL 3195804672,3195805695,VE 3195805696,3195807743,NI 3195807744,3195808383,BZ 3195808384,3195808511,US 3195808512,3195808639,BZ 3195808640,3195808767,CO 3195808768,3195808895,US 3195808896,3195809151,BZ 3195809152,3195809279,US 3195809280,3195809791,BZ 3195809792,3195811839,PE 3195811840,3195813887,AR 3195813888,3195814655,DO 3195814656,3195814911,GP 3195814912,3195822079,DO 3195822080,3195830271,CO 3195830272,3195838463,AR 3195838464,3195840511,HN 3195840512,3195842559,AR 3195842560,3195846655,BR 3195846656,3195852799,AR 3195852800,3195853823,SX 3195853824,3195854847,GY 3195854848,3195859967,AR 3195859968,3195862015,CR 3195862016,3195863039,AR 3195863040,3196092415,CO 3196092416,3196125183,PY 3196125184,3196190719,BO 3196190720,3196207103,HN 3196207104,3196223487,CO 3196223488,3196305407,EC 3196305408,3196316183,CO 3196316184,3196316191,CW 3196316192,3196321791,CO 3196321792,3196583935,UY 3196583936,3196690687,AR 3196690688,3196690943,UY 3196690944,3196846079,AR 3196846080,3196874431,PA 3196874432,3196874447,PG 3196874448,3196977151,PA 3196977152,3197042687,VE 3197042688,3197075455,CO 3197075456,3197108223,GT 3197108224,3197370367,CO 3197370368,3197501439,GT 3197501440,3197566975,SV 3197566976,3197599743,CL 3197599744,3197600767,GT 3197600768,3197601791,CR 3197601792,3197612031,AR 3197612032,3197616127,SV 3197616128,3197632511,CO 3197632512,3197698047,EC 3197698048,3197730815,VE 3197730816,3197763583,CL 3197763584,3197894655,EC 3197894656,3198156799,CO 3198156800,3198484479,CL 3198484480,3198550015,CO 3198550016,3198681087,DO 3198681088,3198877695,VE 3198877696,3198894079,CR 3198894080,3198902271,CO 3198902272,3198910463,CR 3198910464,3198926847,CL 3198926848,3198943231,BO 3198943232,3199467519,AR 3199467520,3199500287,BO 3199500288,3199504383,BR 3199504384,3199505407,AR 3199505408,3199506431,BR 3199506432,3199508479,AR 3199508480,3199516671,BR 3199516672,3199533055,CL 3199533056,3199549439,BO 3199549440,3199565823,AR 3199565824,3199582207,NI 3199582208,3199598591,HN 3199598592,3199631359,CO 3199631360,3199719167,AR 3199719168,3199719423,DE 3199719424,3199729663,AR 3199729664,3199762431,NI 3199762432,3199778815,CO 3199778816,3199779839,AR 3199779840,3199780735,CR 3199780736,3199780863,US 3199780864,3199782911,CO 3199782912,3199784959,AR 3199784960,3199785983,EC 3199785984,3199795199,AR 3199795200,3199811583,CW 3199811584,3199819775,SX 3199819776,3199820799,CR 3199820800,3199822847,AR 3199822848,3199827967,HN 3199827968,3199860735,AR 3199860736,3199926271,BO 3199926272,3199991807,PE 3199991808,3200516095,AR 3200516096,3200565247,CL 3200565248,3200569343,HT 3200569344,3200573439,CL 3200573440,3200577535,AR 3200577536,3200579583,EC 3200579584,3200581631,AR 3200581632,3200614399,BZ 3200614400,3200647167,AR 3200647168,3201302527,VE 3201302528,3201433599,CL 3201433600,3201435135,AR 3201435136,3201435263,US 3201435264,3201441791,AR 3201441792,3201442047,US 3201442048,3201499135,AR 3201499136,3201515519,CL 3201515520,3201522687,AR 3201522688,3201531903,CR 3201531904,3201533951,AR 3201533952,3201534975,HN 3201534976,3201535999,CO 3201536000,3201540095,AR 3201540096,3201544191,CL 3201544192,3201548287,DO 3201548288,3201556479,AR 3201556480,3201560575,BO 3201560576,3201561599,PY 3201561600,3201562623,AR 3201562624,3201563647,CL 3201563648,3201564287,PA 3201564288,3201564415,GB 3201564416,3201564543,PA 3201564544,3201564671,GB 3201564672,3201630207,NI 3201630208,3201695743,TT 3201695744,3201761279,EC 3201761280,3201826815,CL 3201826816,3201851391,AR 3201851392,3201855487,EC 3201855488,3201859583,PE 3201859584,3201863679,CO 3201863680,3201865727,CL 3201865728,3201867775,CO 3201867776,3201875967,PE 3201875968,3201880063,CO 3201880064,3201884159,EC 3201884160,3201894399,VE 3201894400,3201925119,AR 3201925120,3201957887,CL 3201957888,3202088959,PA 3202088960,3202127999,AR 3202128000,3202128015,CW 3202128016,3202220031,AR 3202220032,3202280447,PE 3202280448,3202280575,SE 3202280576,3202351103,PE 3202351104,3202875391,AR 3202875392,3203399679,PE 3203399680,3203465215,CO 3203465216,3203494143,CR 3203494144,3203494271,CO 3203494272,3203530751,CR 3203530752,3203531519,CO 3203531520,3203531775,PA 3203531776,3203532287,CO 3203532288,3203532543,PA 3203532544,3203532799,CO 3203532800,3203534847,PA 3203534848,3203535871,CO 3203535872,3203536383,PA 3203536384,3203536895,CO 3203536896,3203537919,HN 3203537920,3203538431,GT 3203538432,3203538687,PA 3203538688,3203538943,CO 3203538944,3203539967,BZ 3203539968,3203543551,CO 3203543552,3203544575,GT 3203544576,3203545087,CO 3203545088,3203545599,GT 3203545600,3203547135,CO 3203547136,3203549183,PA 3203549184,3203553279,CO 3203553280,3203553535,CR 3203553536,3203556863,CO 3203556864,3203557119,DO 3203557120,3203561471,CO 3203561472,3203562495,SV 3203562496,3203563775,CO 3203563776,3203564031,PA 3203564032,3203564543,CO 3203564544,3203565055,DO 3203565056,3203566591,CO 3203566592,3203566847,PA 3203566848,3203568639,CO 3203568640,3203569663,SV 3203569664,3203570431,CO 3203570432,3203570687,CR 3203570688,3203661823,CO 3203661824,3203923967,AR 3203923968,3204448255,CO 3204448256,3208642559,BR 3208642560,3209691135,CO 3209691136,3210084351,AR 3210084352,3210215423,BR 3210215424,3210739711,CO 3210739712,3210739967,US 3210739968,3210740223,MX 3210740224,3210740479,AR 3210740480,3210740735,US 3210740736,3210742015,BR 3210742016,3210742031,IT 3210742032,3210742047,US 3210742048,3210742063,BR 3210742064,3210742079,US 3210742080,3210742271,BR 3210742272,3210742527,CL 3210742528,3210742543,KR 3210742544,3210742560,CL 3210742561,3210742561,BR 3210742562,3210742567,CL 3210742568,3210742575,US 3210742576,3210742591,BR 3210742592,3210743039,CL 3210743040,3210743055,GR 3210743056,3210743079,CL 3210743080,3210743087,US 3210743088,3210743295,CL 3210743296,3210743551,US 3210743552,3210743567,TH 3210743568,3210743583,US 3210743584,3210743807,CL 3210743808,3210744063,US 3210744064,3210744079,TR 3210744080,3210744191,CL 3210744192,3210744575,US 3210744576,3210744591,BE 3210744592,3210744703,BR 3210744704,3210744831,US 3210744832,3210744863,NZ 3210744864,3210744895,IS 3210744896,3210745087,CL 3210745088,3210745343,US 3210745344,3210745359,RU 3210745360,3210745375,US 3210745376,3210745599,CL 3210745600,3210745855,US 3210745856,3210745871,IT 3210745872,3210746367,BR 3210746368,3210746383,SE 3210746384,3210746623,BR 3210746624,3210746879,US 3210746880,3210746895,CH 3210746896,3210747135,CL 3210747136,3210747903,US 3210747904,3210748159,BR 3210748160,3210748175,JP 3210748176,3210748287,BR 3210748288,3210748927,US 3210748928,3210749439,CL 3210749440,3210752255,US 3210752256,3210752511,SG 3210752512,3210755839,US 3210755840,3210755855,MY 3210755856,3210755871,US 3210755872,3210756351,CL 3210756352,3210756607,US 3210756608,3210756863,DE 3210756864,3210757119,RU 3210757120,3210758911,US 3210758912,3210759167,GH 3210759168,3210764031,US 3210764032,3210764047,IE 3210764048,3210764063,US 3210764064,3210764287,CL 3210764288,3210764799,US 3210764800,3210765055,CL 3210765056,3210765071,SE 3210765072,3210765311,BR 3210765312,3210765567,CL 3210765568,3210766079,US 3210766080,3210766335,CL 3210766336,3210766591,US 3210766592,3210766847,CL 3210766848,3210767103,US 3210767104,3210767359,CL 3210767360,3210768127,US 3210768128,3210768383,MY 3210768384,3210768639,NL 3210768640,3210769151,US 3210769152,3210769407,NL 3210769408,3210771199,US 3210771200,3210771215,TH 3210771216,3210771455,CL 3210771456,3210772479,US 3210772480,3210772991,CL 3210772992,3210773247,US 3210773248,3210773503,BR 3210773504,3210773519,PL 3210773520,3210773759,BR 3210773760,3210774271,US 3210774272,3210774287,NO 3210774288,3210774783,BR 3210774784,3210774799,IT 3210774800,3210775039,BR 3210775040,3210775295,US 3210775296,3210775311,CH 3210775312,3210775551,BR 3210775552,3210775807,US 3210775808,3210776319,CL 3210776320,3210776575,US 3210776576,3210776831,CL 3210776832,3210777087,US 3210777088,3210777599,CL 3210777600,3210781951,US 3210781952,3210782719,CL 3210782720,3210782975,US 3210782976,3210782991,TR 3210782992,3210783231,CL 3210783232,3210783487,US 3210783488,3210783503,JP 3210783504,3210783743,CL 3210783744,3210783999,US 3210784000,3210784015,JP 3210784016,3210784255,CL 3210784256,3210784511,US 3210784512,3210784527,BE 3210784528,3210785023,CL 3210785024,3210785791,US 3210785792,3210786047,BR 3210786048,3210786063,AU 3210786064,3210786303,CL 3210786304,3210786559,US 3210786560,3210786575,GR 3210786576,3210786583,SG 3210786584,3210787071,CL 3210787072,3210787839,US 3210787840,3210788095,CL 3210788096,3210788607,US 3210788608,3210789119,CL 3210789120,3210789631,US 3210789632,3210789887,CL 3210789888,3210791423,US 3210791424,3210791679,CL 3210791680,3210791935,US 3210791936,3210792447,CL 3210792448,3210792703,US 3210792704,3210793471,CL 3210793472,3210793727,US 3210793728,3210793983,CL 3210793984,3210794751,US 3210794752,3210795007,CL 3210795008,3210796031,US 3210796032,3210796287,CL 3210796288,3210797055,US 3210797056,3210797311,CL 3210797312,3210798591,US 3210798592,3210798847,CL 3210798848,3210799103,ES 3210799104,3210799359,US 3210799360,3210799615,CL 3210799616,3210800639,US 3210800640,3210800895,CL 3210800896,3210802431,US 3210802432,3210802687,CL 3210802688,3210802943,US 3210802944,3210803039,CL 3210803040,3210803055,AU 3210803056,3210803071,CL 3210803072,3210803087,US 3210803088,3210803199,CL 3210803200,3210803201,US 3210803202,3210803327,CL 3210803328,3210803455,BR 3210803456,3210803711,CL 3210803712,3210804223,US 3210804224,3210804479,CL 3210804480,3210804735,US 3210804736,3210804991,CL 3210804992,3210805247,US 3210805248,3210809343,PA 3210809344,3210810367,VE 3210810368,3210811391,PA 3210811392,3210817535,AR 3210817536,3210821631,PE 3210821632,3210822655,EC 3210822656,3210825727,AR 3210825728,3210827775,BZ 3210827776,3210829823,DO 3210829824,3210830847,AR 3210830848,3210831871,PE 3210831872,3210832895,DO 3210832896,3210835967,AR 3210835968,3210838015,PY 3210838016,3210868735,AR 3210868736,3210869759,US 3210869760,3210870783,AR 3210870784,3210903551,CO 3210903552,3210919935,PE 3210919936,3210920959,GT 3210920960,3210921983,PA 3210921984,3210924031,CL 3210924032,3210926079,DO 3210926080,3210928127,AR 3210928128,3210936319,NI 3210936320,3211067391,EC 3211067392,3211071487,US 3211071488,3211071743,NL 3211071744,3211071999,DE 3211072000,3211072027,US 3211072028,3211072057,BR 3211072058,3211072287,US 3211072288,3211072319,NZ 3211072320,3211072511,US 3211072512,3211073023,NL 3211073024,3211073279,GB 3211073280,3211073535,FR 3211073536,3211074047,US 3211074048,3211074303,NL 3211074304,3211074559,ES 3211074560,3211074815,NL 3211074816,3211075071,US 3211075072,3211075327,DK 3211075328,3211075583,NL 3211075584,3211075839,US 3211075840,3211076095,CL 3211076096,3211076607,LT 3211076608,3211079679,US 3211079680,3211079935,GB 3211079936,3211080191,NG 3211080192,3211080703,US 3211080704,3211080959,GB 3211080960,3211081215,CL 3211081216,3211081727,CH 3211081728,3211082495,US 3211082496,3211082751,GB 3211082752,3211083007,SG 3211083008,3211083519,US 3211083520,3211083775,HK 3211083776,3211083791,RU 3211083792,3211083839,CL 3211083840,3211083855,GB 3211083856,3211083903,DE 3211083904,3211084031,CL 3211084032,3211084287,DE 3211084288,3211084303,NL 3211084304,3211084351,DE 3211084352,3211084367,GB 3211084368,3211084543,DE 3211084544,3211084559,CL 3211084560,3211084575,DE 3211084576,3211084671,CL 3211084672,3211084799,BY 3211084800,3211084815,AT 3211084816,3211084863,CL 3211084864,3211084879,GB 3211084880,3211084895,DE 3211084896,3211084927,CL 3211084928,3211085055,DE 3211085056,3211085071,CL 3211085072,3211085087,DE 3211085088,3211085311,CL 3211085312,3211085327,GB 3211085328,3211085375,CL 3211085376,3211085391,GB 3211085392,3211085407,DE 3211085408,3211085583,CL 3211085584,3211085599,DE 3211085600,3211085695,CL 3211085696,3211085823,GE 3211085824,3211085839,TH 3211085840,3211085887,DE 3211085888,3211085903,GB 3211085904,3211086335,DE 3211086336,3211086351,FR 3211086352,3211086367,DE 3211086368,3211086463,CL 3211086464,3211086847,DE 3211086848,3211086863,PL 3211086864,3211086879,DE 3211086880,3211087119,CL 3211087120,3211087135,DE 3211087136,3211087359,CL 3211087360,3211087375,GB 3211087376,3211087871,DE 3211087872,3211087887,ES 3211087888,3211087999,DE 3211088000,3211088127,US 3211088128,3211088383,DE 3211088384,3211088399,BE 3211088400,3211088895,DE 3211088896,3211088911,DK 3211088912,3211089407,DE 3211089408,3211089423,GB 3211089424,3211089535,DE 3211089536,3211089663,US 3211089664,3211089919,DE 3211089920,3211089935,GB 3211089936,3211090431,DE 3211090432,3211090447,GR 3211090448,3211090943,DE 3211090944,3211090959,TR 3211090960,3211091071,DE 3211091072,3211091199,US 3211091200,3211091455,DE 3211091456,3211091471,FI 3211091472,3211091967,DE 3211091968,3211091983,RU 3211091984,3211092479,DE 3211092480,3211092495,BE 3211092496,3211092607,DE 3211092608,3211092735,US 3211092736,3211092991,DE 3211092992,3211093007,SK 3211093008,3211093503,DE 3211093504,3211093519,HR 3211093520,3211094015,DE 3211094016,3211094031,CZ 3211094032,3211094143,DE 3211094144,3211094271,US 3211094272,3211094527,DE 3211094528,3211094543,HR 3211094544,3211095039,DE 3211095040,3211095055,ES 3211095056,3211095551,DE 3211095552,3211095567,GB 3211095568,3211095679,DE 3211095680,3211095807,US 3211095808,3211096063,DE 3211096064,3211096079,GB 3211096080,3211097103,DE 3211097104,3211097151,GB 3211097152,3211097215,CL 3211097216,3211097343,GB 3211097344,3211097359,CL 3211097360,3211097375,DE 3211097376,3211097599,CL 3211097600,3211097855,US 3211097856,3211097871,CL 3211097872,3211097887,DE 3211097888,3211098111,CL 3211098112,3211098367,US 3211098368,3211098383,CL 3211098384,3211098399,DE 3211098400,3211098623,CL 3211098624,3211098879,DE 3211098880,3211098895,CL 3211098896,3211098911,DE 3211098912,3211099135,CL 3211099136,3211099679,DE 3211099680,3211099711,GB 3211099712,3211099775,DE 3211099776,3211099903,GB 3211099904,3211099919,CL 3211099920,3211099935,DE 3211099936,3211100159,CL 3211100160,3211101951,US 3211101952,3211102207,AR 3211102208,3211104767,AU 3211104768,3211105791,US 3211105792,3211106303,ES 3211106304,3211112959,US 3211112960,3211113471,CL 3211113472,3211113727,GB 3211113728,3211113983,LT 3211113984,3211114239,US 3211114240,3211114495,CL 3211114496,3211116031,US 3211116032,3211116287,RU 3211116288,3211118079,US 3211118080,3211118335,VE 3211118336,3211118591,EC 3211118592,3211118847,BO 3211118848,3211119103,UY 3211119104,3211129087,US 3211129088,3211129343,CL 3211129344,3211129599,SG 3211129600,3211129855,NL 3211129856,3211130111,CL 3211130112,3211132927,US 3211132928,3211137023,CO 3211137024,3211141119,AR 3211141120,3211142143,CL 3211142144,3211143167,CR 3211143168,3211145215,AR 3211145216,3211147263,NI 3211147264,3211148287,CR 3211148288,3211165695,CO 3211165696,3211165951,HN 3211165952,3211165983,UY 3211165984,3211172047,HN 3211172048,3211172063,NL 3211172064,3211182079,HN 3211182080,3211194367,CO 3211194368,3211195391,DO 3211195392,3211214847,AR 3211214848,3211223039,HN 3211223040,3211227135,AR 3211227136,3211231231,NI 3211231232,3211788287,CO 3211788288,3212312575,CL 3212312576,3212574719,BR 3212574720,3212836863,CL 3212836864,3213885439,BR 3213885440,3214934015,CO 3214934016,3219652607,BR 3219652608,3219653119,US 3219653120,3219653127,BR 3219653128,3219653135,US 3219653136,3219653183,AU 3219653184,3219653247,BR 3219653248,3219653663,HK 3219653664,3219653695,SG 3219653696,3219653711,AU 3219653712,3219653727,US 3219653728,3219653823,JP 3219653824,3219653887,BR 3219653888,3219654399,US 3219654400,3219654463,CH 3219654464,3219654527,SE 3219654528,3219657727,US 3219657728,3219657983,SG 3219657984,3219658239,HK 3219658240,3219658495,FI 3219658496,3219658751,SE 3219658752,3219673183,US 3219673184,3219673343,BR 3219673344,3219673599,US 3219673600,3219673951,BR 3219673952,3219673983,IE 3219673984,3219685375,BR 3219685376,3219726335,US 3219726336,3219734527,JP 3219734528,3219750911,NL 3219750912,3219783679,US 3219783680,3219783743,AU 3219783744,3219783751,HK 3219783752,3219783807,BR 3219783808,3219783871,AU 3219783872,3219783935,BR 3219783936,3219784191,US 3219784192,3219784703,HK 3219784704,3219787775,US 3219787776,3219791871,HK 3219791872,3219800319,US 3219800320,3219800575,NL 3219800576,3219800591,US 3219800592,3219800703,BR 3219800704,3219800847,US 3219800848,3219800863,BR 3219800864,3219800895,US 3219800896,3219802111,BR 3219802112,3219802623,US 3219802624,3219803135,NL 3219803136,3219808255,US 3219808256,3219816447,BR 3219816448,3219818495,US 3219818496,3219819007,BR 3219819008,3219819519,JP 3219819520,3219820543,HK 3219820544,3219841023,US 3219841024,3219842047,NL 3219842048,3219842815,US 3219842816,3219843071,JP 3219843072,3219844351,US 3219844352,3219845119,BR 3219845120,3219847167,US 3219847168,3219848191,BR 3219848192,3219848447,AU 3219848448,3219849215,BR 3219849216,3219853311,US 3219853312,3219865599,BR 3219865600,3219881983,US 3219881984,3219914751,IE 3219914752,3220039679,US 3220039680,3220040703,NL 3220040704,3220041215,JP 3220041216,3220041471,HK 3220041472,3220041727,BR 3220041728,3220042239,JP 3220042240,3220042751,BR 3220042752,3220043775,US 3220043776,3220045823,BR 3220045824,3220062207,US 3220062208,3220062719,SG 3220062720,3220063231,AU 3220063232,3220063743,JP 3220063744,3220066303,US 3220066304,3220070399,JP 3220070400,3220078591,IE 3220078592,3220127743,US 3220127744,3220135935,AU 3220135936,3220152319,JP 3220152320,3220161535,AU 3220161536,3220161807,US 3220161808,3220162559,BR 3220162560,3220163583,NL 3220163584,3220164607,BR 3220164608,3220168703,IE 3220168704,3220172799,US 3220172800,3221196100,BR 3221196101,3221196101,US 3221196102,3221225471,BR 3221225480,3221225727,US 3221226240,3221226495,US 3221226496,3221227519,KY 3221227520,3221242879,US 3221242880,3221243135,AU 3221243136,3221243391,DE 3221243392,3221243647,US 3221243648,3221243903,SG 3221243904,3221258239,US 3221258240,3221291007,CA 3221291008,3221334269,US 3221334270,3221334270,DZ 3221334271,3221415935,US 3221415936,3221416191,RU 3221416192,3221469175,US 3221469176,3221469183,CA 3221469184,3221560319,US 3221560320,3221561087,GB 3221561088,3221562367,US 3221562368,3221562623,SE 3221562624,3221565951,US 3221565952,3221566207,NL 3221566208,3221568255,US 3221568256,3221568511,NL 3221568512,3221568767,US 3221568768,3221569279,FR 3221569280,3221576191,US 3221576192,3221576447,AU 3221576448,3221577727,US 3221577728,3221577983,CA 3221577984,3221578239,NL 3221578240,3221589503,US 3221589504,3221589759,NL 3221589760,3221590015,US 3221590016,3221590271,CA 3221590272,3221590527,NL 3221590528,3221594623,US 3221594624,3221594879,NL 3221594880,3221605375,US 3221605376,3221605887,CA 3221605888,3221608447,US 3221608448,3221608703,AU 3221608704,3221614335,US 3221614336,3221614591,GB 3221614592,3221614847,AU 3221614848,3221618175,US 3221618176,3221618431,NL 3221618432,3221618687,US 3221618688,3221618943,GB 3221618944,3221621247,US 3221621248,3221621503,GB 3221621504,3221647103,US 3221647104,3221647359,FR 3221647360,3221656831,US 3221656832,3221657087,AU 3221657088,3221757951,US 3221757952,3221761023,IN 3221761024,3221790719,US 3221790720,3221795071,IN 3221795072,3221795583,US 3221795584,3221796095,IN 3221796096,3221796351,US 3221796352,3221796607,IN 3221796608,3221796863,US 3221796864,3221815295,IN 3221815296,3221946367,US 3221946368,3221964287,FR 3221964288,3221964543,US 3221964544,3221985791,FR 3221985792,3221986047,US 3221986048,3221993727,FR 3221993728,3221993983,US 3221993984,3222003967,FR 3222003968,3222004223,US 3222004224,3222005503,FR 3222005504,3222005759,US 3222005760,3222011903,FR 3222011904,3222012159,CA 3222012160,3222012415,NL 3222012416,3222023935,US 3222023936,3222024191,IT 3222024192,3222025727,US 3222025728,3222025983,NL 3222025984,3222027775,US 3222027776,3222028031,CA 3222028032,3222030335,US 3222030336,3222030591,GB 3222030592,3222030847,NL 3222030848,3222031359,US 3222031360,3222031615,AU 3222031616,3222031871,IT 3222031872,3222032639,US 3222032640,3222032895,NL 3222032896,3222036479,US 3222036480,3222036735,FR 3222036736,3222036991,US 3222036992,3222037247,CA 3222037248,3222037503,NL 3222037504,3222039807,US 3222042624,3222044927,US 3222044928,3222045183,CA 3222045184,3222056447,US 3222056448,3222059007,CA 3222059008,3222061055,US 3222061056,3222061823,IT 3222061824,3222066943,US 3222066944,3222067199,CA 3222067200,3222067455,US 3222067456,3222067967,NL 3222067968,3222071039,US 3222071040,3222071551,NL 3222071552,3222072063,US 3222072064,3222072319,SE 3222072320,3222075135,US 3222075136,3222075391,NL 3222075392,3222274559,US 3222274560,3222274815,AU 3222274816,3222305535,US 3222305536,3222309119,SE 3222309120,3222309375,DE 3222309376,3222313727,SE 3222313728,3222316799,CH 3222316800,3222319615,US 3222319616,3222320127,JP 3222320128,3222320383,AU 3222320384,3222320895,US 3222320896,3222326015,NL 3222326016,3222326527,US 3222326528,3222339583,CA 3222339584,3222455039,US 3222455040,3222455295,NL 3222455296,3222524159,US 3222524160,3222524415,JP 3222524416,3222524927,SG 3222524928,3222525183,US 3222525184,3222525439,DE 3222525440,3222866431,US 3222866944,3222867199,US 3222867712,3222872319,US 3222872320,3222872575,CA 3222872576,3222890751,US 3222890752,3222891007,CA 3222891008,3222936575,US 3222936576,3222940927,CH 3222940928,3222941183,GB 3222941184,3222941695,CH 3222941696,3222952703,US 3222952704,3222952959,AU 3222952960,3222953215,US 3222953216,3222953727,AU 3222953728,3222953983,US 3222953984,3222954239,AU 3222954240,3222956287,US 3222956288,3222957567,FI 3222957824,3222962431,FI 3222962432,3222963455,US 3222963456,3222964223,FI 3222964224,3222968831,US 3222968832,3222973951,NL 3222973952,3222979071,DE 3222979072,3222983167,US 3222983168,3222983935,CA 3222983936,3222984447,US 3222984704,3222988543,AU 3222988544,3222988799,NL 3222988800,3222989055,AU 3222989056,3222989311,US 3222989312,3222989567,NL 3222989568,3222989823,CA 3222989824,3222990079,PT 3222990080,3222990591,AT 3222990592,3222990847,PT 3222990848,3223091199,US 3223091200,3223092223,AU 3223092224,3223092479,GB 3223092480,3223201791,US 3223201792,3223202815,PR 3223202816,3223204863,US 3223204864,3223205119,CA 3223205120,3223214079,US 3223214080,3223214591,CA 3223214592,3223216383,US 3223216384,3223217151,CA 3223217152,3223223295,US 3223223296,3223223551,AI 3223223552,3223227903,US 3223227904,3223228159,CA 3223228160,3223229695,US 3223229696,3223229951,CA 3223229952,3223236607,US 3223236608,3223237631,GB 3223237632,3223243263,US 3223243264,3223243519,CA 3223243520,3223249407,US 3223249408,3223249663,CA 3223249664,3223250943,US 3223250944,3223252991,CA 3223252992,3223258623,US 3223258624,3223258879,CA 3223258880,3223260671,US 3223260672,3223260927,DE 3223260928,3223262975,US 3223262976,3223263231,BE 3223263232,3223263743,US 3223263744,3223264255,NL 3223264256,3223265023,US 3223265024,3223265279,NL 3223265280,3223266559,US 3223266560,3223266815,AU 3223266816,3223267327,US 3223267328,3223267583,BE 3223267584,3223269119,US 3223269376,3223270399,US 3223270400,3223271423,CA 3223271424,3223272959,US 3223272960,3223273215,GB 3223273216,3223283199,US 3223283200,3223283455,NL 3223283456,3223286783,US 3223286784,3223289087,JP 3223289088,3223299583,US 3223299584,3223301119,NL 3223301120,3223302399,US 3223302400,3223302655,CA 3223302656,3223303167,US 3223303168,3223303423,CA 3223303424,3223307519,US 3223307520,3223310079,JP 3223310080,3223311103,US 3223311104,3223311359,NL 3223311360,3223314431,US 3223314688,3223315455,US 3223315456,3223315711,CA 3223315712,3223316223,US 3223316224,3223316479,NL 3223316480,3223321343,US 3223321344,3223321599,CA 3223321600,3223321855,FR 3223321856,3223390719,US 3223390720,3223390975,MU 3223390976,3223391999,US 3223392000,3223392511,NL 3223392512,3223397375,US 3223397376,3223397631,NL 3223397632,3223410431,US 3223410432,3223416831,CH 3223416832,3223417087,US 3223417088,3223417599,FR 3223417600,3223418367,US 3223418368,3223420927,CH 3223420928,3223421439,US 3223421440,3223421951,NL 3223421952,3223422719,US 3223422720,3223422975,JP 3223422976,3223424767,US 3223424768,3223425535,NL 3223425536,3223425791,US 3223425792,3223430911,FR 3223430912,3223431423,US 3223431424,3223432191,FR 3223432192,3223433215,US 3223433216,3223435007,FR 3223435008,3223437311,US 3223437312,3223447551,CH 3223447552,3223447807,US 3223447808,3223448063,NL 3223448064,3223453183,US 3223453184,3223453439,NL 3223453440,3223458559,US 3223458560,3223458815,NL 3223458816,3223460351,US 3223460352,3223460863,CA 3223460864,3223462911,US 3223462912,3223463935,CA 3223463936,3223466495,US 3223466496,3223466751,NL 3223466752,3223467007,US 3223467008,3223468031,CA 3223468032,3223471615,US 3223471616,3223471871,CA 3223471872,3223473151,US 3223473152,3223473215,CA 3223473216,3223473231,US 3223473232,3223474175,CA 3223474176,3223477247,US 3223477248,3223478271,CA 3223478272,3223481087,US 3223481088,3223481343,SE 3223481344,3223483391,US 3223483392,3223483647,NL 3223483904,3223499519,US 3223499520,3223499775,FI 3223499776,3223500031,US 3223500032,3223503871,CA 3223503872,3223504639,US 3223504640,3223504895,CA 3223504896,3223508991,US 3223508992,3223513087,CA 3223513088,3223519231,US 3223519232,3223523599,DE 3223523600,3223523600,CH 3223523601,3223524351,DE 3223524352,3223534335,US 3223534336,3223534591,AU 3223534592,3223535359,US 3223535360,3223537919,DE 3223537920,3223542271,US 3223542272,3223542527,NL 3223542528,3223543295,US 3223543296,3223543551,NL 3223543552,3223546879,US 3223546880,3223547135,NL 3223547136,3223552511,US 3223552512,3223553535,NL 3223553536,3223554559,US 3223554560,3223554815,GB 3223554816,3223556095,US 3223556096,3223556351,CA 3223556352,3223556607,US 3223556608,3223556863,NL 3223556864,3223557375,US 3223557376,3223558655,DE 3223558656,3223563263,US 3223563264,3223563519,NL 3223563520,3223566079,US 3223566080,3223568639,NL 3223568640,3223569663,US 3223569664,3223570175,GB 3223570176,3223571711,US 3223571712,3223572223,GB 3223572224,3223572479,IE 3223572480,3223577855,US 3223577856,3223578111,DE 3223578112,3223580671,US 3223580672,3223581951,AT 3223581952,3223582207,US 3223582208,3223582212,NL 3223582213,3223582213,PT 3223582214,3223582719,NL 3223582720,3223582975,AU 3223582976,3223584767,US 3223584768,3223585023,GB 3223585024,3223585791,SE 3223585792,3223586047,GB 3223586048,3223586303,SE 3223586304,3223586559,GB 3223586560,3223589119,SE 3223589120,3223589375,US 3223589376,3223594495,SE 3223594496,3223595007,AT 3223595008,3223599103,SE 3223599104,3223599359,AT 3223599360,3223599615,IS 3223599616,3223601663,SE 3223601664,3223602175,GB 3223602176,3223606527,SE 3223606528,3223606783,GB 3223606784,3223607551,SE 3223607552,3223607807,GB 3223607808,3223610367,SE 3223610368,3223610623,IT 3223610624,3223610879,SE 3223610880,3223611135,NO 3223611136,3223611647,SE 3223611648,3223611903,GB 3223611904,3223612927,SE 3223612928,3223613183,FR 3223613184,3223615999,SE 3223616000,3223616767,GB 3223616768,3223617535,SE 3223617536,3223617791,NO 3223617792,3223620863,SE 3223620864,3223621119,DK 3223621120,3223621375,GB 3223621376,3223627775,SE 3223627776,3223628031,DE 3223628032,3223628287,SE 3223628288,3223628543,ES 3223628544,3223630079,SE 3223630080,3223630591,FR 3223630592,3223630847,GB 3223630848,3223634431,SE 3223634432,3223634687,US 3223634688,3223634943,SE 3223634944,3223635455,GB 3223635456,3223637247,SE 3223637248,3223637503,GB 3223637504,3223638271,SE 3223638272,3223638527,GB 3223638528,3223640831,SE 3223640832,3223641087,GB 3223641088,3223644415,SE 3223644416,3223644671,DE 3223644672,3223644927,FR 3223644928,3223646207,SE 3223646208,3223646463,IT 3223646464,3223646975,SE 3223646976,3223647231,IT 3223647232,3223648511,SE 3223648512,3223648767,GB 3223648768,3223650047,SE 3223650048,3223650303,GB 3223650304,3223715839,CH 3223715840,3223781375,DK 3223781376,3223855103,US 3223855104,3223857151,CA 3223857152,3223863807,US 3223863808,3223864319,CA 3223864320,3223864575,US 3223864576,3223864831,AE 3223864832,3223865343,HR 3223865344,3223867391,FI 3223867392,3223867647,GB 3223867648,3223867903,CA 3223867904,3223868415,US 3223868416,3223869439,BM 3223869440,3223869695,NO 3223869696,3223869951,DK 3223869952,3223871487,US 3223871488,3223873535,CA 3223873536,3223881727,US 3223881728,3223882751,CA 3223882752,3223883263,US 3223883264,3223883519,CA 3223883520,3223902463,US 3223902464,3223902719,CA 3223902720,3223905279,US 3223905280,3223905535,FI 3223905536,3223906303,US 3223906304,3223909375,CA 3223909376,3223911935,US 3223911936,3223912191,CA 3223912448,3223938815,US 3223938816,3223946239,GB 3223946240,3223947519,CH 3223947520,3223948287,US 3223948288,3223948543,NL 3223948544,3223949823,CH 3223949824,3223950079,AU 3223950080,3223950335,DE 3223950336,3223950591,CA 3223950592,3223953663,CH 3223953664,3223955967,US 3223955968,3223956223,AU 3223956224,3223958015,US 3223958016,3223963135,JP 3223963136,3223963647,US 3223963648,3223964159,CA 3223964160,3223964415,US 3223964416,3223964671,AU 3223964672,3223965183,US 3223965184,3223965439,AU 3223965440,3223966207,US 3223966208,3223966463,NL 3223966464,3223967743,US 3223967744,3223967999,NL 3223968000,3223968255,US 3223968256,3223968511,NL 3223968512,3223970559,US 3223970560,3223970815,DE 3223970816,3223978239,US 3223978240,3223978495,NL 3223978496,3223979263,US 3223979264,3223979775,CA 3223979776,3223988735,US 3223988736,3223990271,CH 3223990272,3223991295,US 3223991296,3223991551,AU 3223991552,3223991807,NL 3223991808,3223992063,CA 3223992064,3223993343,US 3223993344,3223994111,AU 3223994112,3223994623,DE 3223994880,3223995391,US 3223995392,3223995647,CA 3223995648,3223996415,US 3223996416,3223996927,CA 3223996928,3223999487,US 3224000256,3224000511,NL 3224000512,3224001023,US 3224001024,3224001279,CA 3224001280,3224003327,US 3224003328,3224003583,ZA 3224003584,3224003839,NL 3224003840,3224004095,US 3224004096,3224004351,NL 3224004352,3224005631,JP 3224005632,3224006911,US 3224006912,3224012031,NL 3224012032,3224014591,US 3224014592,3224014847,NL 3224014848,3224016639,US 3224016640,3224016895,AU 3224016896,3224024063,US 3224024064,3224029695,CH 3224029696,3224030463,CA 3224030464,3224030719,US 3224030720,3224030975,CA 3224030976,3224038655,US 3224038656,3224038911,AU 3224038912,3224084991,US 3224084992,3224087551,SE 3224087552,3224088063,US 3224088064,3224088319,AU 3224088320,3224090879,US 3224090880,3224091135,AU 3224091136,3224091903,US 3224091904,3224092159,AU 3224092160,3224092415,CA 3224092416,3224092671,US 3224092672,3224093951,CH 3224093952,3224094207,US 3224094208,3224094463,AU 3224094464,3224094975,US 3224094976,3224095487,AU 3224095488,3224096511,US 3224096512,3224097279,AU 3224097280,3224097535,NL 3224097536,3224097791,US 3224097792,3224098047,NL 3224098048,3224099583,US 3224099584,3224099839,CA 3224099840,3224101375,US 3224101376,3224102399,AU 3224102400,3224103423,US 3224103424,3224103679,NL 3224103680,3224104703,US 3224104704,3224104959,AU 3224104960,3224109055,US 3224109056,3224109311,NL 3224109312,3224119551,DE 3224119552,3224126463,FR 3224126464,3224127231,US 3224127232,3224129791,FR 3224129792,3224132351,DE 3224132352,3224170495,US 3224170496,3224173567,SE 3224173568,3224288255,US 3224288256,3224289023,DE 3224289024,3224302335,US 3224302336,3224302591,CA 3224302592,3224305663,US 3224305664,3224367615,JP 3224367616,3224368127,US 3224368128,3224369663,CH 3224369664,3224370431,US 3224370432,3224370687,CA 3224370688,3224370943,US 3224370944,3224371199,CA 3224371200,3224373247,US 3224373248,3224373503,AU 3224373504,3224373759,US 3224373760,3224374015,AU 3224374016,3224379135,US 3224379136,3224379391,NL 3224379392,3224398591,US 3224398592,3224398847,DE 3224398848,3224399103,US 3224399104,3224399615,AU 3224399616,3224407295,US 3224407296,3224407551,CA 3224407552,3224408319,US 3224408320,3224408575,NL 3224408576,3224427519,US 3224427520,3224427775,CA 3224427776,3224428543,US 3224428544,3224428799,NL 3224428800,3224430335,US 3224430336,3224430591,NL 3224430592,3224431103,US 3224431104,3224431359,CA 3224431360,3224434687,US 3224434688,3224434943,AU 3224434944,3224435967,US 3224435968,3224436223,MU 3224436224,3224436735,US 3224436736,3224502271,FI 3224502272,3224567807,JP 3224567808,3224571903,NO 3224571904,3224580095,JP 3224580096,3224580351,US 3224580352,3224616959,JP 3224616960,3224617471,US 3224617472,3224633343,JP 3224633344,3224646399,DE 3224646400,3224651775,US 3224651776,3224652287,AU 3224652288,3224660991,US 3224660992,3224661247,CA 3224661248,3224663807,US 3224672000,3224672255,US 3224672256,3224672511,NL 3224672512,3224674047,US 3224674048,3224674559,DE 3224674560,3224674815,GB 3224674816,3224677119,US 3224677120,3224678655,AU 3224678656,3224680703,US 3224680704,3224680959,AU 3224680960,3224683519,US 3224683520,3224684031,AU 3224684032,3224689919,US 3224689920,3224690687,NL 3224690688,3224691455,US 3224691712,3224692735,US 3224692736,3224692991,NL 3224692992,3224694527,US 3224694528,3224694783,CA 3224694784,3224698111,US 3224698112,3224698623,NL 3224698624,3224699135,US 3224699136,3224699647,BE 3224699648,3224725247,US 3224725248,3224725759,NL 3224725760,3224739071,US 3224739072,3224739327,FI 3224739328,3224772351,US 3224772352,3224776447,DE 3224776448,3224776703,GB 3224776704,3224777983,DE 3224777984,3224778239,US 3224779776,3224785151,DE 3224785152,3224791039,US 3224791040,3224791295,NL 3224791296,3224791807,AU 3224791808,3224793343,US 3224793344,3224793599,NL 3224793600,3224793855,US 3224793856,3224795391,DK 3224795392,3224795647,CA 3224795648,3224795903,CH 3224795904,3224796415,US 3224796416,3224797439,DE 3224797440,3224797695,US 3224797696,3224797951,AU 3224797952,3224798207,US 3224798208,3224798463,NL 3224798464,3224798975,US 3224798976,3224799231,AU 3224799232,3224799487,US 3224799488,3224799743,AU 3224799744,3224799999,US 3224800000,3224800255,NL 3224800256,3224800511,US 3224800512,3224812031,FR 3224812544,3224816639,FR 3224816640,3224816895,IL 3224816896,3224820735,FR 3224820736,3224820991,PL 3224820992,3224821247,DE 3224821248,3224822015,US 3224822016,3224822271,NL 3224822272,3224823039,US 3224823296,3224826367,US 3224826368,3224826623,CA 3224826624,3224826879,US 3224826880,3224827391,NL 3224827392,3224827647,US 3224827648,3224827903,AU 3224827904,3224828671,US 3224828672,3224828927,AU 3224828928,3224829439,US 3224829440,3224829695,NL 3224829696,3224834047,US 3224834048,3224834303,SG 3224834304,3224834559,US 3224834560,3224834815,TH 3224834816,3224851455,US 3224851456,3224851711,NL 3224851712,3224852735,US 3224852736,3224852991,NL 3224852992,3224855039,US 3224855040,3224855551,AU 3224855552,3224855807,US 3224855808,3224856063,IT 3224856064,3224856831,US 3224856832,3224857087,NL 3224857088,3224857855,US 3224857856,3224858111,PL 3224858112,3224858367,AU 3224858368,3224858623,US 3224858624,3224858879,AU 3224858880,3224859391,US 3224859392,3224859647,NL 3224859648,3224860159,US 3224860160,3224860415,AU 3224860416,3224860671,CA 3224860672,3224862975,US 3224862976,3224863231,NL 3224863232,3224863487,CA 3224863488,3224863743,US 3224863744,3224863999,NL 3224864000,3224878079,US 3224878080,3224878335,NL 3224878336,3224878591,US 3224878592,3224878847,AU 3224878848,3224879359,US 3224879360,3224879615,NL 3224879616,3224879871,CA 3224879872,3224880383,US 3224880384,3224880639,NL 3224880640,3224880895,AU 3224880896,3224882687,US 3224882688,3224882943,CA 3224882944,3224883455,US 3224883456,3224883711,AU 3224883712,3224884223,US 3224884224,3224884479,NL 3224884480,3224885247,US 3224885248,3224885503,CA 3224885504,3224886015,US 3224886016,3224886527,AU 3224886528,3224887295,US 3224887296,3224887551,CA 3224887552,3224889343,US 3224889344,3224889599,AU 3224889600,3224890879,US 3224890880,3224891135,AU 3224891136,3224892415,US 3224892416,3224892671,NL 3224892672,3224899071,US 3224899072,3224899327,AT 3224899328,3224908543,US 3224908544,3224908799,CA 3224908800,3224933887,US 3224933888,3224934143,DE 3224934144,3224957951,US 3224957952,3224958207,CA 3224958208,3225028863,US 3225028864,3225031423,JP 3225031424,3225033727,US 3225033728,3225033983,LU 3225033984,3225034239,AE 3225034240,3225034751,FI 3225034752,3225035775,BG 3225035776,3225037055,US 3225037056,3225049599,FI 3225049600,3225051391,US 3225052672,3225057535,US 3225057536,3225057791,CA 3225057792,3225060607,US 3225060608,3225061631,AU 3225061632,3225062399,US 3225062400,3225063423,VC 3225063424,3225076223,US 3225076224,3225076479,CA 3225076480,3225076991,US 3225076992,3225077247,SE 3225077248,3225081087,US 3225081088,3225081343,CA 3225081344,3225082367,US 3225082368,3225082623,NL 3225082624,3225084671,US 3225084672,3225085183,NL 3225085184,3225085439,ES 3225085440,3225089279,US 3225089280,3225089535,CA 3225089536,3225314303,US 3225314304,3225314559,GB 3225314560,3225420799,US 3225420800,3225423871,CA 3225423872,3225426943,US 3225426944,3225427199,NL 3225427200,3225427455,US 3225427456,3225427967,CA 3225427968,3225428991,US 3225428992,3225431039,CA 3225431040,3225431551,NL 3225431552,3225434111,US 3225434112,3225436159,CA 3225436160,3225445375,US 3225445376,3225446399,BE 3225446400,3225450495,US 3225450496,3225451263,AG 3225451264,3225451519,MS 3225451520,3225451775,US 3225451776,3225452031,NL 3225452032,3225452543,US 3225452544,3225456639,CA 3225456640,3225459711,US 3225459712,3225459967,CA 3225459968,3225460991,US 3225460992,3225462015,CA 3225462016,3225468927,US 3225468928,3225470463,CA 3225470464,3225471487,US 3225471488,3225471743,NL 3225471744,3225472255,HK 3225472256,3225498367,US 3225498368,3225503487,NL 3225503488,3225506303,US 3225506304,3225508863,AU 3225508864,3225509631,CH 3225509632,3225509887,US 3225509888,3225510143,NL 3225510144,3225518591,US 3225518592,3225518847,AU 3225518848,3225519359,NL 3225519360,3225520895,US 3225520896,3225521151,NL 3225521152,3225522175,US 3225522176,3225522943,GB 3225522944,3225524223,US 3225524224,3225524479,VE 3225524480,3225524735,GB 3225524736,3225526271,US 3225526272,3225528319,BB 3225528320,3225528831,US 3225528832,3225529087,VI 3225529088,3225530367,US 3225530368,3225530623,PR 3225530624,3225531903,US 3225531904,3225532159,AU 3225532160,3225535999,CH 3225536000,3225540863,US 3225540864,3225541119,AU 3225541120,3225541375,US 3225541376,3225543935,GB 3225543936,3225544703,US 3225544704,3225546751,CA 3225546752,3225548799,US 3225548800,3225549055,AU 3225549056,3225549311,US 3225549312,3225549567,AU 3225549568,3225550847,US 3225550848,3225616383,DK 3225616384,3225616639,US 3225616640,3225616895,AU 3225616896,3225617151,US 3225617152,3225617663,NL 3225617664,3225618687,US 3225618688,3225618943,CA 3225618944,3225619455,US 3225619456,3225619711,AU 3225619712,3225624575,US 3225624576,3225625599,CA 3225625600,3225626367,US 3225626368,3225626623,GB 3225626624,3225627391,US 3225627392,3225627647,NL 3225627648,3225627903,US 3225627904,3225628159,CA 3225628160,3225628415,US 3225628416,3225628671,NL 3225628672,3225629183,US 3225629184,3225629439,NL 3225629440,3225629695,US 3225629696,3225629951,NL 3225629952,3225630463,US 3225630464,3225630719,NL 3225630720,3225631231,US 3225631232,3225631487,NL 3225631488,3225635839,US 3225635840,3225636095,NL 3225636096,3225636607,US 3225636608,3225636863,NL 3225636864,3225637887,US 3225637888,3225638399,AU 3225638400,3225638655,US 3225638656,3225638911,GB 3225638912,3225640447,US 3225640448,3225640703,NL 3225640704,3225641983,US 3225641984,3225643263,GB 3225643264,3225643775,CA 3225643776,3225650943,US 3225650944,3225651199,GB 3225651200,3225659135,US 3225659136,3225659391,DE 3225659392,3225659647,AU 3225659648,3225659903,US 3225659904,3225660159,DE 3225660160,3225660415,AU 3225660416,3225664767,US 3225664768,3225669887,DE 3225669888,3225671935,US 3225671936,3225672191,AU 3225672192,3225672447,DE 3225672448,3225672703,US 3225672704,3225673215,NL 3225673216,3225673471,CA 3225673472,3225673727,IE 3225673728,3225679871,US 3225679872,3225680127,AU 3225680128,3225680383,GR 3225680384,3225680639,CA 3225680640,3225681663,US 3225681664,3225681919,CA 3225681920,3225682943,DE 3225682944,3225683199,AT 3225683200,3225687039,DE 3225687040,3225687807,US 3225687808,3225688063,NL 3225688064,3225689855,US 3225689856,3225694975,NL 3225694976,3225695231,PL 3225695232,3225695487,US 3225695488,3225701119,CA 3225701120,3225701375,US 3225701376,3225709567,NO 3225709568,3225710079,US 3225710080,3225710591,AU 3225710592,3225715455,US 3225715456,3225715711,CA 3225715712,3225715967,AU 3225715968,3225716991,US 3225716992,3225717247,CA 3225717248,3225717503,MU 3225717504,3225717759,AU 3225717760,3225720575,US 3225720576,3225721343,GB 3225721344,3225723647,US 3225723648,3225723903,CA 3225723904,3225724159,US 3225724160,3225725439,DE 3225725440,3225725695,GB 3225725696,3225726207,AU 3225726208,3225726463,US 3225726464,3225726719,NL 3225726720,3225726975,US 3225726976,3225727231,NL 3225727232,3225727743,US 3225727744,3225727999,AU 3225728000,3225728511,US 3225728512,3225728767,NL 3225728768,3225729023,US 3225729024,3225729279,CA 3225729280,3225729535,US 3225729536,3225729791,NL 3225729792,3225730047,US 3225730048,3225730303,CA 3225730304,3225735423,US 3225735424,3225735679,PT 3225735680,3225735935,US 3225735936,3225737215,DE 3225737216,3225737471,PT 3225737472,3225738495,US 3225738496,3225738751,PT 3225738752,3225739263,US 3225739264,3225739519,PT 3225739520,3225740543,US 3225740544,3225740799,CA 3225740800,3225741055,NL 3225741056,3225742079,US 3225742080,3225745919,JP 3225745920,3225746687,NL 3225746688,3225746943,US 3225746944,3225747199,NL 3225747200,3225747711,US 3225747712,3225747967,CA 3225747968,3225757695,US 3225757696,3225758719,CA 3225758720,3225763839,US 3225763840,3225764095,BE 3225764096,3225764863,US 3225764864,3225765887,CA 3225765888,3225766399,US 3225766400,3225766655,CA 3225766656,3225769471,US 3225769472,3225769983,CA 3225769984,3225773311,US 3225773312,3225773567,CA 3225773568,3225776639,US 3225776640,3225777151,CA 3225777152,3225777407,AU 3225777408,3225781247,US 3225781248,3225782271,CA 3225782272,3225785599,US 3225785600,3225788159,CA 3225788160,3225807359,US 3225807360,3225807615,DE 3225807616,3225812991,US 3225812992,3225843711,FR 3225843712,3225847039,US 3225847040,3225847551,NL 3225847552,3225847807,AU 3225847808,3225848063,NL 3225848064,3225848831,US 3225848832,3225853951,DE 3225853952,3225857023,US 3225857024,3225857279,CA 3225857280,3225857535,US 3225857536,3225857791,AU 3225857792,3225858047,US 3225858048,3225858559,CA 3225858560,3225858815,US 3225858816,3225859583,JP 3225860096,3225868287,US 3225868288,3225868543,AU 3225868544,3225869055,US 3225869056,3225869311,AU 3225869312,3225869567,CA 3225869568,3225870335,US 3225870336,3225870591,CA 3225870592,3225873663,US 3225873664,3225873919,ZA 3225873920,3225874943,US 3225874944,3225875199,GB 3225875200,3225878527,US 3225878528,3225881343,SE 3225881344,3225881599,IT 3225881600,3225882367,SE 3225882368,3225882623,DE 3225882624,3225882879,SE 3225882880,3225883391,DE 3225883392,3225884927,SE 3225884928,3225885183,NL 3225885184,3225885695,AT 3225885696,3225886719,SE 3225886720,3225886975,NO 3225886976,3225887231,SE 3225887232,3225887487,DK 3225887488,3225887999,SE 3225888000,3225888255,GB 3225888256,3225892351,SE 3225892352,3225892863,FR 3225892864,3225894399,SE 3225894400,3225895423,GB 3225895424,3225902335,SE 3225902336,3225902591,NL 3225902592,3225902847,SE 3225902848,3225903103,NL 3225903104,3225905407,SE 3225905408,3225905663,IT 3225905664,3225913855,SE 3225913856,3225914111,DE 3225914112,3225915135,SE 3225915136,3225915391,DK 3225915392,3225917183,SE 3225917184,3225917439,NL 3225917440,3225917695,SE 3225917696,3225917951,NL 3225917952,3225918463,SE 3225918464,3225918719,GB 3225918720,3225920767,SE 3225920768,3225921023,GB 3225921024,3225921791,SE 3225921792,3225922047,GB 3225922048,3225923327,SE 3225923328,3225923583,IN 3225923584,3225923839,SE 3225923840,3225924095,GB 3225924096,3225930239,SE 3225930240,3225930495,FR 3225930496,3225932543,SE 3225932544,3225932799,IM 3225932800,3225933055,IT 3225933056,3225933311,ES 3225933312,3225934335,SE 3225934336,3225934591,IS 3225934592,3225935359,SE 3225935360,3225935615,US 3225935616,3225936639,SE 3225936640,3225936895,US 3225936896,3225937407,SE 3225937408,3225937663,US 3225937664,3225938175,SE 3225938176,3225938431,CH 3225938432,3225938687,US 3225938688,3225940991,SE 3225940992,3225941247,IL 3225941248,3225941503,IT 3225941504,3225941759,SE 3225941760,3225942015,AT 3225942016,3225942271,SE 3225942272,3225942527,BE 3225942528,3225944063,SE 3225944064,3225944831,US 3225944832,3226008831,TW 3226008832,3226010879,US 3226010880,3226011135,CA 3226011136,3226012671,US 3226012672,3226012927,AU 3226012928,3226014463,US 3226014464,3226014975,NL 3226014976,3226015487,AU 3226015488,3226015743,US 3226015744,3226016255,AU 3226016256,3226018303,US 3226018304,3226018559,DE 3226018560,3226021119,CH 3226021120,3226026495,US 3226026496,3226026751,AU 3226026752,3226067455,US 3226067456,3226067711,BE 3226067712,3226068223,US 3226068224,3226068479,NL 3226068480,3226074879,US 3226074880,3226075135,AT 3226075136,3226110719,US 3226110720,3226128639,AU 3226128640,3226140927,US 3226140928,3226141695,CA 3226141696,3226141951,US 3226141952,3226143487,CA 3226143488,3226143743,US 3226143744,3226146559,CA 3226146560,3226146815,US 3226146816,3226156543,CA 3226156544,3226156799,US 3226156800,3226157567,CA 3226157568,3226157823,US 3226157824,3226167807,CA 3226167808,3226168063,US 3226168064,3226175231,CA 3226175232,3226175999,US 3226176000,3226177535,CA 3226177536,3226178559,US 3226178560,3226188543,CA 3226188544,3226188799,PR 3226188800,3226189055,US 3226189056,3226189823,CA 3226189824,3226191871,US 3226191872,3226194175,CA 3226194176,3226194431,US 3226194432,3226194687,CA 3226194688,3226194943,US 3226194944,3226201087,CA 3226201088,3226201343,US 3226201344,3226201855,CA 3226202112,3226205439,CA 3226205440,3226205695,AE 3226205696,3226205951,CA 3226205952,3226207743,US 3226207744,3226215423,GB 3226215424,3226237439,US 3226237440,3226237695,AU 3226237696,3226240255,DE 3226240256,3226240511,US 3226240512,3226241535,DE 3226241536,3226241791,NL 3226241792,3226245375,DE 3226245632,3226248191,DE 3226248448,3226248703,IE 3226248704,3226249983,DE 3226250240,3226250495,DE 3226250496,3226251263,US 3226251264,3226251519,DE 3226251520,3226267903,US 3226267904,3226268159,DE 3226268160,3226268415,PT 3226268416,3226268927,AT 3226268928,3226269951,DE 3226269952,3226270719,US 3226271488,3226273791,US 3226273792,3226274047,AU 3226274048,3226274559,US 3226274560,3226274815,NL 3226274816,3226276095,US 3226276096,3226276351,AU 3226276352,3226283519,US 3226283520,3226291199,CA 3226291200,3226300927,US 3226300928,3226301439,DE 3226301440,3226302463,US 3226302464,3226303487,FI 3226303488,3226305535,US 3226305536,3226307327,GB 3226307328,3226307583,US 3226307584,3226308095,NL 3226308096,3226366975,US 3226366976,3226367231,CA 3226367232,3226374143,US 3226374144,3226375423,DE 3226375424,3226376703,US 3226376704,3226376959,AT 3226376960,3226384639,US 3226384640,3226385407,BE 3226385408,3226393599,US 3226393600,3226393855,DE 3226393856,3226397695,US 3226397696,3226400255,DE 3226400256,3226473471,US 3226473472,3226473727,NL 3226473728,3226473983,PT 3226473984,3226474495,US 3226474496,3226474751,CL 3226474752,3226476287,US 3226476288,3226479359,CH 3226479360,3226480127,US 3226480128,3226480383,NL 3226480384,3226481407,US 3226481408,3226481663,NL 3226481664,3226488831,US 3226488832,3226489087,CA 3226489088,3226521855,US 3226521856,3226522111,BR 3226522112,3226536959,US 3226536960,3226542079,CA 3226542080,3226547199,US 3226547200,3226548735,CA 3226548736,3226548991,US 3226548992,3226549247,BE 3226549248,3226549503,US 3226549504,3226550015,NL 3226550016,3226550783,US 3226550784,3226551039,CA 3226551040,3226551807,US 3226551808,3226552319,CA 3226552320,3226552831,VI 3226552832,3226555391,US 3226555392,3226555903,CA 3226555904,3226556671,US 3226556672,3226556927,CA 3226556928,3226561791,US 3226561792,3226562047,NL 3226562048,3226564863,US 3226564864,3226565119,DE 3226565120,3226565375,US 3226565376,3226565631,FI 3226565632,3226574847,US 3226574848,3226575103,FI 3226575104,3226575359,US 3226575360,3226576383,CA 3226576384,3226576895,US 3226576896,3226578943,CA 3226578944,3226580479,US 3226580480,3226581247,FI 3226581248,3226583295,US 3226583296,3226583551,CA 3226583552,3226583807,NL 3226583808,3226584415,US 3226584416,3226584447,AU 3226584448,3226590207,US 3226590208,3226591231,NL 3226591232,3226592255,CA 3226592256,3226592767,US 3226592768,3226593023,NL 3226593024,3226593791,US 3226593792,3226594047,NL 3226594048,3226626047,US 3226626048,3226626303,CA 3226626304,3226629375,US 3226629376,3226629631,CA 3226629632,3226630399,US 3226630400,3226630655,NL 3226630656,3226631167,US 3226631168,3226631423,NL 3226631424,3226631935,US 3226631936,3226632191,NL 3226632192,3226633215,CA 3226633216,3226633471,AU 3226633472,3226635263,US 3226635264,3226635519,AU 3226635520,3226635775,US 3226635776,3226636031,ZA 3226636032,3226636287,AU 3226636288,3226637823,US 3226637824,3226638079,CA 3226638080,3226638591,US 3226638592,3226638847,NL 3226638848,3226639615,US 3226639616,3226640127,AT 3226640128,3226640639,US 3226640640,3226640895,AU 3226640896,3226654207,US 3226654208,3226654463,NL 3226654464,3226655743,US 3226655744,3226656255,NL 3226656256,3226656511,AU 3226656512,3226658303,US 3226658304,3226658559,AU 3226658560,3226661119,US 3226661120,3226661375,NL 3226661376,3226664959,US 3226664960,3226690815,FI 3226690816,3226691071,CA 3226691072,3226691327,NL 3226691328,3226691583,US 3226691584,3226691839,AU 3226691840,3226695167,US 3226695168,3226695679,AU 3226695680,3226695935,US 3226695936,3226696191,CA 3226696192,3226696703,AU 3226696704,3226697727,US 3226697728,3226697983,CA 3226697984,3226698495,US 3226698496,3226698751,CA 3226698752,3226700287,US 3226700288,3226700799,CA 3226700800,3226701055,US 3226701056,3226701567,CA 3226701568,3226705151,US 3226705152,3226705407,AU 3226705408,3226705919,US 3226705920,3226706175,FR 3226706176,3226707199,US 3226707200,3226707455,PL 3226707456,3226715391,TW 3226715392,3226715647,US 3226715648,3226715903,AU 3226715904,3226716159,US 3226716160,3226716415,GB 3226716416,3226716671,US 3226716672,3226716927,GB 3226716928,3226718207,US 3226720768,3226721279,JP 3226721280,3226722047,US 3226722048,3226722303,NL 3226722304,3226722559,AU 3226722560,3226723583,US 3226723584,3226723839,NL 3226723840,3226724095,US 3226724096,3226724351,AU 3226724352,3226725631,US 3226725632,3226726143,AU 3226726144,3226728191,US 3226728192,3226728447,CA 3226728448,3226731775,US 3226731776,3226732031,GB 3226732032,3226732799,US 3226733056,3226733567,US 3226733568,3226733823,MX 3226733824,3226734079,PT 3226734080,3226734335,US 3226734336,3226734591,NL 3226734592,3226735615,US 3226735872,3226736639,US 3226736896,3226737407,US 3226737408,3226737663,AT 3226737664,3226738175,US 3226738176,3226738431,NL 3226738432,3226738687,US 3226738688,3226739199,NL 3226739200,3226746367,US 3226746368,3226746623,NL 3226746624,3226748927,US 3226749440,3226749695,US 3226749696,3226752255,GB 3226752256,3226752767,US 3226752768,3226753023,NL 3226753024,3226753279,US 3226753280,3226753535,AU 3226753536,3226753791,SI 3226753792,3226754303,HR 3226754304,3226756095,SI 3226756096,3226756351,US 3226756352,3226757375,SI 3226757376,3226757887,HR 3226757888,3226758655,SI 3226758656,3226763007,US 3226763008,3226770687,IT 3226770688,3226772991,US 3226772992,3226773247,NL 3226773248,3226774783,US 3226774784,3226775039,GB 3226775040,3226775551,US 3226775552,3226782463,FI 3226782720,3226783743,FI 3226783744,3226784767,US 3226784768,3226785023,GB 3226785024,3226786559,US 3226786560,3226786815,AU 3226786816,3226787327,NL 3226787328,3226788351,US 3226788352,3226789375,HU 3226789376,3226789631,AU 3226789632,3226791167,US 3226791168,3226791679,AU 3226791680,3226792191,US 3226792192,3226792703,AU 3226792704,3226792959,US 3226792960,3226793215,ZA 3226793216,3226793983,DE 3226793984,3226795263,US 3226795264,3226795519,AU 3226795520,3226800127,US 3226800128,3226800639,DE 3226800640,3226811391,US 3226811392,3226811647,DE 3226811648,3226861823,US 3226861824,3226862079,CA 3226862080,3226864383,US 3226864384,3226864639,RU 3226864640,3226864895,AU 3226864896,3226865151,US 3226865152,3226865407,NL 3226865408,3226866175,US 3226866176,3226866431,NL 3226866432,3226867967,US 3226867968,3226868223,NL 3226868224,3226868479,US 3226868480,3226868735,GB 3226868736,3226884351,US 3226884352,3226884607,NL 3226884608,3226893567,US 3226893568,3226894079,NL 3226894080,3226894335,GB 3226894336,3226894591,US 3226894592,3226894847,AU 3226894848,3226895359,US 3226895360,3226895871,AU 3226895872,3226896127,NL 3226896128,3226896639,US 3226896640,3226897151,NL 3226897152,3226903295,US 3226903296,3226903551,NL 3226903552,3226903807,US 3226903808,3226904063,AU 3226904064,3226904575,NL 3226904576,3226904831,US 3226904832,3226905087,NL 3226905088,3226926591,US 3226926592,3226926847,NL 3226926848,3226927103,US 3226927104,3226992639,NL 3226992640,3226992895,US 3226992896,3226993151,NL 3226993152,3226993663,US 3226993664,3226993919,NL 3226993920,3226994175,US 3226994176,3226994687,AU 3226994688,3226994943,US 3226994944,3226995455,NL 3226995456,3226996991,US 3226996992,3226997247,NL 3226997248,3226998527,US 3226998528,3226999039,NL 3226999040,3227013119,US 3227013120,3227013375,AU 3227013376,3227013887,US 3227013888,3227014399,NL 3227014400,3227014655,AU 3227014656,3227014911,NL 3227014912,3227017471,US 3227017472,3227017983,NL 3227018240,3227018495,US 3227018496,3227019007,AU 3227019008,3227020287,US 3227020288,3227020543,NL 3227020544,3227022847,US 3227022848,3227023103,NL 3227023104,3227023359,AU 3227023360,3227024127,US 3227024128,3227024383,NL 3227024384,3227025407,US 3227025408,3227025663,NL 3227025664,3227025919,US 3227025920,3227026175,GB 3227026176,3227026687,US 3227026688,3227026943,GB 3227026944,3227027455,CA 3227027456,3227040511,US 3227040512,3227040767,AU 3227040768,3227041279,US 3227041280,3227041535,AU 3227041536,3227042815,US 3227042816,3227043071,NL 3227043072,3227044863,US 3227044864,3227045119,NL 3227045120,3227053567,US 3227053568,3227054079,NL 3227054080,3227056639,US 3227056640,3227057919,PT 3227057920,3227058175,US 3227058176,3227123711,FI 3227123712,3227224831,US 3227225088,3227225599,NL 3227225600,3227234559,US 3227234560,3227234815,NL 3227234816,3227235071,US 3227235072,3227235327,AU 3227235328,3227236607,US 3227236608,3227236863,AU 3227236864,3227237119,NL 3227237120,3227237631,US 3227237632,3227237887,NO 3227237888,3227238143,US 3227238144,3227238399,NL 3227238400,3227240191,US 3227240192,3227240447,GB 3227240704,3227240959,GB 3227240960,3227243007,US 3227243008,3227243263,CA 3227243264,3227243519,NL 3227243520,3227243775,US 3227243776,3227244031,AU 3227244032,3227249151,SE 3227249152,3227249663,US 3227249664,3227252735,CH 3227252736,3227254271,US 3227254272,3227254527,AU 3227254528,3227258623,US 3227258624,3227258879,AU 3227258880,3227273983,US 3227273984,3227274239,FI 3227274240,3227274495,US 3227274496,3227274751,NL 3227274752,3227276799,US 3227276800,3227277055,FR 3227277056,3227278847,US 3227278848,3227279103,IE 3227279104,3227281407,US 3227281408,3227282175,IT 3227282176,3227282431,US 3227282432,3227282943,NL 3227282944,3227284479,US 3227284480,3227284735,FI 3227284736,3227286783,US 3227286784,3227287039,AT 3227287040,3227287295,IT 3227287296,3227287551,NL 3227287552,3227287807,CH 3227287808,3227288063,BG 3227288064,3227288319,BE 3227288320,3227288831,NL 3227288832,3227289087,PT 3227289088,3227289343,NL 3227289344,3227289599,PT 3227289600,3227290111,NL 3227290112,3227290367,AT 3227290368,3227290623,CH 3227290624,3227290879,US 3227290880,3227291135,AT 3227291136,3227294207,PT 3227294464,3227294975,GR 3227294976,3227304191,US 3227304192,3227304447,PR 3227304448,3227310079,US 3227310080,3227310335,NL 3227310336,3227312127,US 3227312128,3227312383,DK 3227312384,3227320319,US 3227320320,3227362047,FR 3227362048,3227362303,US 3227362304,3227362559,GB 3227362560,3227385855,FR 3227385856,3227391999,US 3227392000,3227392255,NL 3227392256,3227393023,US 3227393024,3227393279,AT 3227393280,3227396351,US 3227396352,3227396607,AU 3227396608,3227398399,US 3227398400,3227398655,CA 3227398656,3227400447,US 3227400448,3227400703,AT 3227400704,3227400959,GB 3227400960,3227401471,US 3227401472,3227401727,MU 3227401728,3227402495,AU 3227402496,3227403007,US 3227403008,3227403519,GR 3227403520,3227405311,US 3227405312,3227405567,NL 3227405568,3227414271,US 3227414272,3227416063,GB 3227416064,3227417087,US 3227417088,3227417343,AU 3227417344,3227418111,US 3227418112,3227418367,CA 3227418368,3227425791,US 3227425792,3227427583,DK 3227427584,3227427839,ES 3227427840,3227429119,US 3227429120,3227429375,AU 3227429376,3227429887,US 3227429888,3227430143,NL 3227430144,3227430399,US 3227430400,3227430655,AU 3227430656,3227437055,FR 3227437056,3227437311,AU 3227437312,3227439103,US 3227439104,3227439615,AU 3227439616,3227439871,MU 3227439872,3227440127,US 3227440128,3227440383,NL 3227440384,3227442175,US 3227442176,3227442431,AU 3227442432,3227442687,NL 3227442688,3227443711,US 3227443712,3227443967,AT 3227443968,3227444223,AU 3227444224,3227445503,US 3227445504,3227445759,RU 3227445760,3227446015,US 3227446016,3227446271,NL 3227446272,3227446783,US 3227446784,3227447039,AU 3227447040,3227447295,NL 3227447296,3227447807,MU 3227447808,3227448063,US 3227448064,3227448575,AU 3227448576,3227448831,US 3227448832,3227449087,MU 3227449088,3227450111,US 3227450112,3227450367,CA 3227450368,3227451455,US 3227451456,3227452375,CA 3227452376,3227452382,US 3227452383,3227452735,CA 3227452736,3227452767,US 3227452768,3227453503,CA 3227453504,3227453507,US 3227453508,3227454047,CA 3227454048,3227454079,US 3227454080,3227454687,CA 3227454688,3227454719,US 3227454720,3227455047,CA 3227455048,3227455051,US 3227455052,3227455487,CA 3227455488,3227456255,US 3227456256,3227457023,CA 3227457024,3227457535,US 3227457536,3227459001,CA 3227459002,3227459002,US 3227459003,3227461081,CA 3227461082,3227461082,US 3227461083,3227461119,CA 3227461120,3227461631,US 3227461632,3227461959,CA 3227461960,3227461963,US 3227461964,3227464447,CA 3227464448,3227464575,US 3227464576,3227464663,CA 3227464664,3227464667,US 3227464668,3227465147,CA 3227465148,3227465151,US 3227465152,3227466135,CA 3227466136,3227466143,US 3227466144,3227467775,CA 3227468032,3227468287,US 3227468288,3227468799,CA 3227468800,3227484159,US 3227484160,3227517183,CA 3227517184,3227517695,ZA 3227517696,3227518207,MU 3227518208,3227518463,ZA 3227518464,3227519743,MU 3227519744,3227520255,ZA 3227520256,3227520767,MU 3227520768,3227521023,ZA 3227521024,3227521279,MU 3227521280,3227521791,US 3227521792,3227522047,MU 3227522048,3227522559,ZA 3227522560,3227522815,MU 3227522816,3227523071,US 3227523072,3227526143,MU 3227526144,3227526399,US 3227526400,3227526655,MU 3227526656,3227526911,ZA 3227526912,3227527423,MU 3227527424,3227527935,US 3227527936,3227528191,MU 3227528192,3227528447,US 3227528448,3227532031,MU 3227532032,3227532287,US 3227532288,3227532799,MU 3227532800,3227534335,US 3227534336,3227535615,MU 3227535616,3227535871,US 3227535872,3227536895,MU 3227536896,3227537151,CA 3227537152,3227541503,MU 3227541504,3227541759,ZA 3227541760,3227543295,MU 3227543296,3227543551,US 3227543552,3227551743,MU 3227551744,3227552255,MF 3227552256,3227556863,MU 3227556864,3227557375,US 3227557376,3227557631,MU 3227557632,3227558911,US 3227558912,3227559935,MU 3227559936,3227562239,US 3227562240,3227566079,MU 3227566080,3227566335,US 3227566336,3227567103,MU 3227567104,3227568127,ZA 3227568128,3227574271,US 3227574272,3227576575,MU 3227576576,3227576831,US 3227576832,3227579391,MU 3227579392,3227579647,US 3227579648,3227580159,MU 3227580160,3227580927,ZA 3227580928,3227582207,MU 3227582208,3227638271,US 3227638272,3227638527,CA 3227638528,3227647999,US 3227648000,3227713535,FI 3227713536,3227722521,CA 3227722522,3227722522,US 3227722523,3227724031,CA 3227724032,3227724287,US 3227724288,3227738879,CA 3227738880,3227739135,US 3227739136,3227748035,CA 3227748036,3227748039,US 3227748040,3227751868,CA 3227751869,3227751869,US 3227751870,3227755775,CA 3227755776,3227756031,US 3227756032,3227756505,CA 3227756506,3227756506,US 3227756507,3227762655,CA 3227762656,3227762671,US 3227762672,3227765480,CA 3227765481,3227765482,US 3227765483,3227765503,CA 3227765504,3227765759,US 3227765760,3227777759,CA 3227777760,3227777763,US 3227777764,3227777951,CA 3227777952,3227777967,US 3227777968,3227777983,CA 3227777984,3227777999,US 3227778000,3227779071,CA 3227779072,3227779327,US 3227779328,3227779583,MU 3227779584,3227779839,AU 3227779840,3227783679,US 3227783680,3227783935,NL 3227783936,3227784703,US 3227784704,3227784959,AU 3227784960,3227785727,AT 3227785728,3227792383,US 3227792384,3227792639,NL 3227792640,3227792895,AU 3227792896,3227794687,US 3227794688,3227794943,GB 3227794944,3227795199,US 3227795200,3227795455,NO 3227795456,3227798783,US 3227798784,3227799039,TH 3227799040,3227799295,GB 3227799296,3227799551,US 3227799552,3227799807,AU 3227799808,3227801343,US 3227801344,3227801599,CA 3227801600,3227803647,US 3227803648,3227804415,DE 3227804416,3227804671,GB 3227804672,3227804927,US 3227804928,3227805183,CA 3227805184,3227805695,FI 3227805696,3227806463,US 3227806464,3227806719,FI 3227806720,3227807743,US 3227807744,3227813375,FI 3227813376,3227813631,US 3227813632,3227815167,GB 3227815168,3227815935,US 3227815936,3227816191,NL 3227816192,3227818495,US 3227818496,3227818751,GB 3227818752,3227819263,MX 3227819264,3227819519,AR 3227819520,3227822847,MX 3227822848,3227823103,HN 3227823104,3227824383,MX 3227824384,3227824639,BR 3227824640,3227825663,MX 3227825664,3227825919,CR 3227825920,3227826687,MX 3227826688,3227827199,AR 3227827200,3227829759,MX 3227829760,3227830015,BR 3227830016,3227831807,MX 3227831808,3227832063,BR 3227832064,3227833855,MX 3227833856,3227834367,BR 3227834368,3227837439,MX 3227837440,3227837951,BR 3227837952,3227842303,MX 3227842304,3227842815,BR 3227842816,3227843327,MX 3227843328,3227844095,BR 3227844096,3227844351,AR 3227844352,3227844607,US 3227844608,3227844863,CA 3227844864,3227845119,NL 3227845120,3227845631,US 3227845632,3227845887,NL 3227845888,3227846655,US 3227846656,3227846911,NL 3227846912,3227847423,US 3227847424,3227847679,NL 3227847680,3227848703,US 3227848704,3227848959,AU 3227848960,3227851775,US 3227851776,3227852031,NL 3227852032,3227853311,US 3227853312,3227853567,GB 3227853568,3227856383,US 3227856896,3227860991,US 3227863296,3227863807,US 3227863808,3227864063,NL 3227864064,3227865343,US 3227865344,3227867647,NL 3227867648,3227867903,BR 3227867904,3227868159,AU 3227868160,3227872767,US 3227872768,3227873023,GB 3227873024,3227874047,NL 3227874048,3227874815,US 3227874816,3227875071,NL 3227875072,3227878911,US 3227878912,3227879167,AU 3227879168,3227879679,US 3227879680,3227879935,NL 3227879936,3227880959,US 3227880960,3227881215,MU 3227881216,3227885823,US 3227885824,3227887871,ES 3227887872,3227888127,PR 3227888128,3227888383,NL 3227888384,3227889663,US 3227889664,3227889919,NL 3227890176,3227890431,US 3227890432,3227890943,NL 3227890944,3227891455,US 3227891456,3227891711,AU 3227891712,3227893759,US 3227893760,3227894015,NL 3227894016,3227895039,US 3227895040,3227895551,DE 3227895552,3227909119,US 3227909120,3227909375,NL 3227909376,3227909631,US 3227909632,3227909887,AU 3227909888,3227910399,US 3227910400,3227910655,NL 3227910656,3227911679,US 3227911680,3227912191,UA 3227912192,3227912447,GB 3227912448,3227912703,MU 3227912704,3227912959,US 3227912960,3227913215,CA 3227913216,3227914495,US 3227914496,3227914751,AT 3227914752,3227931135,FI 3227931136,3227931391,US 3227931392,3227931647,AU 3227931648,3227931903,PE 3227931904,3227932159,US 3227932672,3227932927,US 3227932928,3227933183,DE 3227933184,3227933695,US 3227933696,3227933951,NZ 3227933952,3227934463,US 3227934464,3227934719,CH 3227934720,3227947519,US 3227947520,3227955711,DE 3227955712,3227964927,US 3227964928,3227965183,NL 3227965184,3227967487,US 3227967488,3227967743,FR 3227967744,3227967999,NL 3227968000,3227968255,US 3227968256,3227968767,GB 3227968768,3227969023,RU 3227969024,3227971327,US 3227971328,3227971583,AU 3227971584,3227974143,US 3227974144,3227974655,AU 3227974656,3227975167,US 3227975168,3227975679,CA 3227975680,3227976191,US 3227976192,3227976447,LU 3227976448,3227977471,US 3227977472,3227977727,NL 3227977728,3227979263,US 3227979264,3227979519,NL 3227979520,3227980799,US 3227980800,3227981055,NL 3227981056,3227981567,US 3227981568,3227981823,NL 3227981824,3227982591,US 3227982592,3227982847,DE 3227982848,3227985919,GB 3227985920,3227986175,DE 3227986176,3227986431,US 3227986432,3227986943,AU 3227986944,3227987455,US 3227987456,3227987711,AU 3227987712,3227997439,US 3227997440,3228005631,FI 3228005632,3228008959,US 3228008960,3228009215,AU 3228009216,3228009471,US 3228009472,3228009727,AU 3228009728,3228010751,US 3228010752,3228011519,GB 3228011520,3228013311,US 3228013312,3228013567,NL 3228013568,3228045055,US 3228045056,3228045311,AU 3228045312,3228047103,US 3228047104,3228047359,NL 3228047360,3228048383,US 3228048384,3228048895,NL 3228048896,3228050175,US 3228050176,3228050943,PT 3228050944,3228051199,CA 3228051200,3228051455,US 3228051456,3228051711,AU 3228051712,3228051967,CH 3228051968,3228052223,US 3228052224,3228052991,AU 3228052992,3228053503,US 3228053504,3228053759,PT 3228053760,3228054783,US 3228054784,3228055039,NL 3228055040,3228055295,US 3228055296,3228055807,NL 3228055808,3228056319,NO 3228056320,3228059647,US 3228059648,3228059903,CH 3228059904,3228060927,US 3228060928,3228061183,NL 3228061184,3228061695,US 3228061696,3228061951,AU 3228061952,3228062207,US 3228062208,3228062463,GB 3228062464,3228077055,US 3228077056,3228077311,NL 3228077312,3228077567,US 3228077568,3228077823,NL 3228077824,3228078847,US 3228078848,3228079103,GR 3228079104,3228080639,US 3228080640,3228081151,NL 3228081152,3228083967,US 3228083968,3228084479,NL 3228084480,3228085247,US 3228085248,3228085503,AU 3228085504,3228100607,US 3228100608,3228101119,AU 3228101120,3228102143,US 3228102144,3228102399,NL 3228102400,3228103423,US 3228103424,3228103679,CA 3228103680,3228103935,US 3228103936,3228104191,FR 3228104192,3228104703,AU 3228104704,3228104959,NL 3228104960,3228105471,US 3228105472,3228105727,NL 3228105728,3228105983,AU 3228105984,3228109311,US 3228109312,3228109567,AU 3228109568,3228125951,US 3228125952,3228126207,NL 3228126208,3228133375,US 3228133376,3228134655,CA 3228134656,3228150271,US 3228150272,3228150527,FI 3228150528,3228156671,US 3228156672,3228156927,BE 3228156928,3228171775,US 3228171776,3228172031,GB 3228172032,3228172287,US 3228172288,3228237823,IT 3228237824,3228238079,US 3228238080,3228238591,NL 3228238592,3228238847,US 3228238848,3228239359,GB 3228239616,3228240127,US 3228240128,3228240639,AU 3228240640,3228241407,GB 3228241408,3228250367,US 3228250624,3228250879,US 3228250880,3228263679,IT 3228263680,3228263935,AU 3228263936,3228264447,US 3228264448,3228264703,NI 3228264704,3228265983,US 3228265984,3228266239,IE 3228266240,3228266495,PR 3228266496,3228267007,AU 3228267008,3228267263,NL 3228267264,3228269055,US 3228269056,3228269311,PT 3228269312,3228269567,DE 3228269568,3228270079,AT 3228270080,3228271103,GB 3228271104,3228271359,US 3228271360,3228271615,CA 3228271616,3228271871,DE 3228271872,3228272127,CA 3228272128,3228274687,US 3228274688,3228274943,CA 3228274944,3228280831,US 3228280832,3228281087,NL 3228281088,3228281599,US 3228281600,3228282111,AU 3228282112,3228282367,US 3228282368,3228282623,NL 3228282624,3228283135,US 3228283136,3228283391,GR 3228283392,3228283647,GB 3228283648,3228285695,US 3228285696,3228285951,SE 3228285952,3228289023,US 3228289024,3228297215,FI 3228297216,3228297727,AT 3228297728,3228297983,US 3228297984,3228298495,NL 3228298496,3228309247,US 3228309248,3228310271,DE 3228311808,3228312063,DE 3228312320,3228316159,DE 3228316160,3228316415,US 3228316416,3228327167,DE 3228327168,3228328703,US 3228328704,3228328959,AU 3228328960,3228329471,NL 3228329472,3228330751,US 3228330752,3228331263,SE 3228331264,3228332287,US 3228332288,3228332543,AU 3228332544,3228332799,GR 3228332800,3228334079,FR 3228334080,3228334335,GB 3228334336,3228334591,AT 3228334592,3228335359,US 3228335360,3228335615,SK 3228335616,3228335871,CZ 3228335872,3228336127,US 3228336128,3228336639,CZ 3228336640,3228337663,SK 3228337664,3228337919,CZ 3228337920,3228338175,SK 3228338176,3228338431,CZ 3228338432,3228340735,SK 3228340736,3228341247,CZ 3228341248,3228342783,SK 3228342784,3228343039,CZ 3228343040,3228343295,SK 3228343296,3228343551,CZ 3228343552,3228344063,SK 3228344064,3228344575,CZ 3228344576,3228347135,SK 3228347136,3228347391,CZ 3228347392,3228348159,SK 3228348160,3228353279,US 3228353280,3228358399,SE 3228358400,3228362239,US 3228362240,3228362495,AU 3228362496,3228363263,US 3228363264,3228363519,CH 3228363520,3228364287,US 3228364288,3228364543,NL 3228364544,3228368895,US 3228368896,3228371455,DE 3228371968,3228372735,DE 3228372992,3228373247,DE 3228373504,3228379135,DE 3228379648,3228380415,DE 3228380416,3228380671,US 3228380672,3228380927,DE 3228381184,3228387839,DE 3228388096,3228388351,US 3228388352,3228392447,DE 3228392448,3228392959,US 3228392960,3228393727,DE 3228394240,3228394495,US 3228394752,3228395263,DE 3228395264,3228395775,US 3228395776,3228398847,DE 3228399104,3228399359,DE 3228399616,3228399871,US 3228399872,3228400383,DE 3228400640,3228402687,DE 3228403200,3228403711,DE 3228403968,3228404223,DE 3228404736,3228405503,FR 3228405504,3228405759,DE 3228405760,3228406015,FR 3228406016,3228406271,US 3228406272,3228406527,IN 3228406528,3228407039,FR 3228407296,3228420095,DE 3228420608,3228420863,DE 3228421120,3228424447,DE 3228424704,3228424959,US 3228425472,3228425983,DE 3228426752,3228427263,DE 3228427776,3228428031,DE 3228428288,3228430335,DE 3228430592,3228430847,DE 3228430848,3228431103,MU 3228431872,3228434431,DE 3228434432,3228456191,US 3228456192,3228456447,CA 3228456448,3228457471,US 3228457472,3228457727,CA 3228457728,3228461567,US 3228461568,3228461823,CA 3228461824,3228464127,US 3228464128,3228464383,CA 3228464384,3228478463,US 3228478464,3228479487,CA 3228479488,3228496127,US 3228496128,3228496383,GB 3228496384,3228508159,US 3228508160,3228508415,AU 3228508416,3228508671,NL 3228508672,3228509951,US 3228509952,3228510207,NL 3228510208,3228511231,US 3228511232,3228511487,NL 3228511488,3228511999,US 3228512000,3228512511,NL 3228512512,3228522495,US 3228522496,3228522751,NL 3228522752,3228525823,US 3228525824,3228526079,NL 3228526080,3228526335,AU 3228526336,3228526847,NL 3228526848,3228527103,AU 3228527104,3228531711,US 3228531712,3228532223,NO 3228532224,3228532479,US 3228532480,3228532735,NL 3228532736,3228539247,US 3228539248,3228539251,AT 3228539252,3228558591,US 3228558592,3228559103,BR 3228559104,3228564479,US 3228564480,3228564735,AT 3228564736,3228572927,US 3228572928,3228573183,CA 3228573184,3228573951,PT 3228573952,3228577023,US 3228577024,3228577279,NL 3228577280,3228578047,US 3228578048,3228578303,NL 3228578304,3228581119,US 3228581120,3228581375,AT 3228581376,3228583423,US 3228583424,3228585983,ES 3228585984,3228590591,US 3228590592,3228590847,GB 3228590848,3228591103,DK 3228591104,3228591359,GB 3228591360,3228617727,US 3228617728,3228617983,FI 3228617984,3228618239,US 3228618240,3228618495,NL 3228618496,3228618751,US 3228618752,3228619007,DE 3228619008,3228620031,US 3228620032,3228620543,NL 3228620544,3228620799,AU 3228620800,3228628735,US 3228628736,3228628991,ES 3228628992,3228630527,US 3228630528,3228630783,NL 3228630784,3228631039,US 3228631040,3228696575,NL 3228696576,3228714764,IL 3228714765,3228714765,CA 3228714766,3228830719,IL 3228830720,3228833791,PS 3228833792,3229024255,IL 3229024256,3229024511,CA 3229024512,3229089791,US 3229089792,3229090047,CA 3229090048,3229092095,US 3229092096,3229093887,AU 3229093888,3229104895,US 3229104896,3229105151,ES 3229105152,3229120511,US 3229120512,3229120767,SE 3229120768,3229151487,US 3229151488,3229151743,SE 3229151744,3229155327,US 3229155328,3229155583,GB 3229155584,3229155839,SE 3229155840,3229156095,ES 3229156096,3229159423,SE 3229159424,3229159935,NL 3229159936,3229160959,SE 3229160960,3229161471,DE 3229161472,3229161727,SE 3229161728,3229161983,GB 3229161984,3229163263,SE 3229163264,3229163519,ES 3229163520,3229164287,SE 3229164288,3229164543,DK 3229164544,3229165055,GB 3229165056,3229165311,NO 3229165312,3229167103,SE 3229167104,3229167615,IT 3229167616,3229171711,SE 3229171712,3229172223,GB 3229172224,3229173503,SE 3229173504,3229173759,IT 3229173760,3229182463,SE 3229182464,3229182975,GB 3229182976,3229183999,SE 3229184000,3229184511,GB 3229184512,3229186559,SE 3229186560,3229186815,IT 3229186816,3229187327,ES 3229187328,3229187583,IT 3229187584,3229187839,DK 3229187840,3229192959,SE 3229192960,3229193727,FR 3229193728,3229194239,SE 3229194240,3229194495,FR 3229194496,3229195007,SE 3229195008,3229195263,NL 3229195264,3229196287,DE 3229196288,3229196799,SE 3229196800,3229197311,NL 3229197312,3229197823,SE 3229197824,3229198335,GB 3229198336,3229198591,SE 3229198592,3229198847,ES 3229198848,3229199103,CH 3229199104,3229199359,IT 3229199360,3229200383,SE 3229200384,3229200895,GB 3229200896,3229201151,DE 3229201152,3229201663,SE 3229201664,3229201919,DK 3229201920,3229202431,SE 3229202432,3229202687,ES 3229202688,3229203199,NL 3229203200,3229203967,GB 3229203968,3229204223,SE 3229204224,3229204479,IT 3229204480,3229205503,SE 3229205504,3229206015,GB 3229206016,3229211647,SE 3229211648,3229211903,IT 3229211904,3229212927,SE 3229212928,3229213183,DE 3229213184,3229219583,SE 3229219584,3229219839,DE 3229219840,3229220863,SE 3229220864,3229221119,US 3229221120,3229245439,GB 3229245440,3229246463,US 3229246464,3229254399,GB 3229254400,3229256959,SG 3229256960,3229258495,GB 3229258496,3229259519,US 3229259520,3229264639,GB 3229264640,3229264895,AU 3229264896,3229265919,US 3229265920,3229266175,AU 3229266176,3229266943,US 3229266944,3229267199,AU 3229267200,3229273599,US 3229273600,3229273855,CA 3229273856,3229274623,US 3229274624,3229274879,AU 3229274880,3229275647,US 3229275648,3229275903,NL 3229275904,3229276159,US 3229276160,3229281023,IE 3229281024,3229281791,US 3229281792,3229283071,PT 3229283072,3229354495,US 3229354496,3229355775,AU 3229355776,3229358079,US 3229358080,3229358335,AU 3229358336,3229359359,DE 3229359360,3229359615,US 3229359616,3229359871,CA 3229359872,3229360127,US 3229360128,3229360383,AT 3229360384,3229361919,US 3229361920,3229362175,BE 3229362176,3229363711,US 3229363712,3229363967,NL 3229363968,3229380607,US 3229380608,3229380863,NL 3229380864,3229381375,US 3229381376,3229381887,NL 3229381888,3229382143,AU 3229382144,3229390847,US 3229390848,3229391103,AU 3229391104,3229391359,US 3229391360,3229391615,AU 3229391616,3229391871,NL 3229391872,3229395455,US 3229395456,3229408255,RU 3229408256,3229412095,US 3229412096,3229412351,NL 3229412352,3229412607,US 3229412608,3229414911,DE 3229414912,3229415167,US 3229415168,3229415679,NL 3229415680,3229415935,US 3229415936,3229417215,DE 3229417472,3229483007,DE 3229483008,3229483263,US 3229483264,3229499647,FI 3229499648,3229614847,US 3229614848,3229615103,GB 3229615104,3229679871,US 3229679872,3229695487,DE 3229695488,3229700095,US 3229700096,3229700351,AT 3229700352,3229701887,US 3229701888,3229702143,TR 3229702144,3229704703,US 3229704704,3229704959,DE 3229704960,3229745151,US 3229745152,3229810687,FI 3229810688,3229814015,US 3229814016,3229814271,AU 3229814272,3229815807,US 3229815808,3229816063,NL 3229816064,3229817087,US 3229817088,3229817343,AU 3229817344,3229817599,NL 3229817600,3229818623,AU 3229818624,3229818879,US 3229818880,3229820927,JM 3229820928,3229821951,US 3229821952,3229822207,CA 3229822208,3229830911,US 3229830912,3229831167,NL 3229831168,3229833471,US 3229833472,3229833727,NL 3229833728,3229834495,AU 3229834496,3229834751,US 3229834752,3229835007,CA 3229835008,3229835263,US 3229835264,3229835519,NL 3229835520,3229835775,CA 3229835776,3229838335,US 3229838336,3229838591,NL 3229838592,3229844479,US 3229844480,3229844735,BE 3229844736,3229844991,US 3229844992,3229845247,BL 3229845248,3229845503,US 3229845504,3229846527,CA 3229847296,3229849599,US 3229849600,3229849855,AU 3229849856,3229870335,US 3229870592,3229870847,CA 3229870848,3229874943,US 3229874944,3229875455,AU 3229875456,3229876223,US 3229876224,3229876479,CA 3229876480,3229878527,US 3229878528,3229878783,GB 3229878784,3229879039,IT 3229879040,3229879295,NO 3229879296,3229880063,US 3229880064,3229880319,AU 3229880320,3229881087,US 3229881088,3229881343,CA 3229881344,3229884159,US 3229884160,3229884415,AU 3229884416,3229884927,US 3229884928,3229885183,NL 3229885184,3229885439,BR 3229885440,3229886719,US 3229886720,3229886975,AU 3229886976,3229889791,US 3229889792,3229890047,NL 3229890048,3229890303,US 3229890304,3229890559,NL 3229890560,3229891583,US 3229891584,3229891839,CA 3229891840,3229900031,US 3229900032,3229900287,AU 3229900288,3229901567,US 3229901568,3229901823,GB 3229901824,3229902335,US 3229902336,3229902591,AU 3229902592,3229937407,US 3229937408,3229937663,GB 3229937664,3229937919,US 3229937920,3229938175,CA 3229938176,3229938687,US 3229938688,3229939199,NL 3229939200,3229939455,US 3229939456,3229940735,KR 3229940736,3229940991,CH 3229940992,3229941247,AU 3229941248,3229941759,US 3229941760,3229942271,CA 3229942272,3229944319,US 3229944320,3229944575,AU 3229944576,3229945343,US 3229945344,3229945599,AU 3229945600,3229945855,NL 3229945856,3229947135,US 3229947136,3229947391,AU 3229947392,3229948927,US 3229948928,3229949183,IT 3229949184,3229949695,US 3229949696,3229949951,AU 3229949952,3229950207,NL 3229950208,3229950975,US 3229950976,3229951231,NL 3229951232,3229952255,US 3229952256,3229952511,AU 3229952512,3229953279,US 3229953280,3229953535,CA 3229953536,3229955327,US 3229955328,3229955583,NL 3229955584,3229956095,PT 3229956096,3229956607,US 3229956608,3229956863,NL 3229956864,3229958143,US 3229958144,3229958399,NL 3229958400,3229958655,US 3229958656,3229959167,AU 3229959168,3229962079,US 3229962080,3229962111,CA 3229962112,3229968127,US 3229968384,3229969407,US 3229969408,3229969663,PT 3229969664,3229969919,AT 3229969920,3229970431,FI 3229970432,3229972735,US 3229972736,3229972991,NL 3229972992,3229975295,US 3229975296,3229975551,GB 3229975552,3230004223,US 3230004224,3230004479,NL 3230004480,3230005759,US 3230005760,3230006015,MU 3230006016,3230007039,US 3230007040,3230007295,CA 3230007296,3230072831,FR 3230072832,3230074623,US 3230074624,3230074879,DE 3230074880,3230082559,IT 3230082560,3230084607,US 3230084608,3230084863,NL 3230084864,3230085119,US 3230085120,3230085375,CA 3230085376,3230085887,US 3230085888,3230086143,DE 3230086144,3230086655,GB 3230086656,3230088959,US 3230088960,3230089215,NL 3230089216,3230089727,US 3230089728,3230089983,NL 3230089984,3230090239,US 3230090240,3230090495,GB 3230090496,3230092543,US 3230092544,3230092799,CA 3230092800,3230093823,US 3230093824,3230094079,NL 3230094080,3230094335,CA 3230094336,3230095615,US 3230095616,3230095871,JP 3230096384,3230096639,JP 3230096640,3230096895,US 3230096896,3230097151,JP 3230097408,3230100735,JP 3230100736,3230100991,US 3230100992,3230101503,PR 3230101504,3230104319,US 3230104320,3230104575,CA 3230104576,3230105855,US 3230105856,3230106111,NL 3230106112,3230106879,US 3230106880,3230107135,NL 3230107136,3230109439,US 3230109440,3230109695,NL 3230109696,3230109951,US 3230109952,3230115071,CH 3230115072,3230115327,IT 3230115328,3230115583,GR 3230115584,3230116095,BE 3230116096,3230117631,US 3230117632,3230117887,NL 3230117888,3230120191,US 3230120192,3230120447,NL 3230120448,3230120703,US 3230120704,3230120959,PT 3230120960,3230125823,US 3230125824,3230126335,AU 3230126336,3230126591,US 3230126592,3230126847,AU 3230126848,3230128895,US 3230128896,3230129151,NL 3230129152,3230129663,US 3230129664,3230129919,AU 3230129920,3230130431,US 3230130432,3230130687,NL 3230130688,3230131711,US 3230131712,3230131967,CA 3230131968,3230132991,GB 3230132992,3230137599,US 3230137600,3230138111,NL 3230138112,3230140159,US 3230140160,3230140415,MT 3230140416,3230140671,US 3230140672,3230140927,FI 3230140928,3230142975,US 3230142976,3230143487,NL 3230143488,3230144255,US 3230144256,3230144511,NL 3230144512,3230145279,US 3230145280,3230145535,CA 3230145536,3230145791,US 3230145792,3230146047,GB 3230146048,3230146303,FR 3230146304,3230146559,PT 3230146560,3230148351,US 3230148352,3230148607,AU 3230148608,3230149119,NL 3230149120,3230150655,NI 3230150656,3230150911,US 3230150912,3230151167,NL 3230151168,3230151423,US 3230151424,3230151935,NL 3230151936,3230152191,CA 3230152192,3230152447,FR 3230152448,3230153215,BF 3230153216,3230153471,FR 3230153472,3230153727,AU 3230153728,3230153983,US 3230153984,3230154239,NL 3230154240,3230156543,US 3230156544,3230164735,FI 3230164736,3230167551,US 3230167552,3230168063,CA 3230168064,3230177791,US 3230177792,3230178303,GB 3230178304,3230178559,CH 3230178560,3230210047,US 3230210048,3230210303,CA 3230210304,3230211839,US 3230211840,3230212095,CN 3230212096,3230214911,US 3230214912,3230215167,PR 3230215168,3230219775,US 3230219776,3230220031,NL 3230220032,3230220287,US 3230220288,3230222847,NL 3230222848,3230223103,ES 3230223104,3230223359,GB 3230223360,3230223615,CH 3230223616,3230225919,LU 3230225920,3230226175,AU 3230226176,3230226431,ES 3230226432,3230226687,US 3230226688,3230226943,NO 3230226944,3230228223,GB 3230228224,3230228479,ES 3230228480,3230228735,AU 3230228736,3230228991,US 3230228992,3230229247,GB 3230229248,3230229503,US 3230229504,3230229759,ES 3230229760,3230230015,DE 3230230016,3230236159,US 3230236160,3230236415,AU 3230236416,3230236671,GB 3230236672,3230236927,CA 3230236928,3230240767,US 3230240768,3230241023,DK 3230241024,3230241791,GB 3230241792,3230242303,CH 3230242304,3230243839,US 3230243840,3230244095,HK 3230244096,3230244351,US 3230244352,3230244607,CA 3230244608,3230245119,FR 3230245120,3230246143,SE 3230246144,3230246911,US 3230246912,3230247167,CH 3230247168,3230247935,US 3230247936,3230248191,AU 3230248192,3230251007,US 3230251008,3230251263,CH 3230251264,3230251519,MX 3230251520,3230252031,CH 3230252032,3230254847,US 3230254848,3230255359,SE 3230255360,3230255615,ES 3230255616,3230256127,US 3230256128,3230256383,GB 3230256384,3230257919,US 3230257920,3230259199,CH 3230259200,3230263807,US 3230263808,3230264063,SE 3230264064,3230264319,NL 3230264320,3230266111,CH 3230266112,3230267135,US 3230267136,3230267903,CA 3230267904,3230269695,US 3230269696,3230271743,GB 3230271744,3230291455,US 3230291456,3230291711,NL 3230291712,3230295039,US 3230295040,3230295295,AU 3230295296,3230296319,US 3230296320,3230297343,NO 3230297344,3230300159,SE 3230301696,3230302207,US 3230302976,3230309119,US 3230309120,3230309375,NO 3230309376,3230310143,GB 3230310144,3230316287,US 3230316288,3230316543,NL 3230316544,3230316799,US 3230316800,3230317311,CA 3230317312,3230317567,US 3230317568,3230317823,AU 3230317824,3230318591,US 3230318592,3230318847,NL 3230318848,3230321663,US 3230321664,3230321919,PT 3230321920,3230327807,US 3230327808,3230328063,AT 3230328064,3230328319,GB 3230328320,3230329087,CH 3230329088,3230332927,US 3230332928,3230333183,NL 3230333184,3230333695,US 3230333696,3230333951,AU 3230333952,3230335231,US 3230335232,3230335743,CA 3230335744,3230335999,US 3230336000,3230336255,CA 3230336256,3230336511,US 3230336512,3230339583,CA 3230339584,3230339839,US 3230339840,3230340095,CA 3230340096,3230340351,US 3230340352,3230350847,CA 3230350848,3230351103,US 3230351104,3230354943,CA 3230354944,3230355199,FR 3230355200,3230365183,CA 3230365184,3230365439,US 3230365440,3230367743,CA 3230367744,3230367999,US 3230368000,3230368511,CA 3230368512,3230370303,US 3230370304,3230370559,CA 3230370560,3230370815,US 3230370816,3230372607,CA 3230372608,3230372863,US 3230372864,3230383359,CA 3230383360,3230383615,US 3230383616,3230384127,CA 3230384128,3230384383,MF 3230384384,3230387455,CA 3230387456,3230387711,US 3230387712,3230400255,CA 3230400256,3230400767,US 3230681088,3230683135,FR 3230787328,3230823679,US 3230823680,3230823935,NL 3230823936,3230824191,US 3230824192,3230824447,NL 3230824448,3230825215,US 3230825216,3230825471,GB 3230825472,3230826239,ES 3230826240,3230827519,US 3230827520,3230827775,NL 3230827776,3230828031,AU 3230828032,3230828543,HU 3230828544,3230829055,GB 3230829568,3230830079,RU 3230830080,3230832127,US 3230832128,3230832383,AU 3230832384,3230832639,US 3230832640,3230832895,NL 3230832896,3230833663,US 3230833664,3230833919,CA 3230833920,3230834175,BR 3230834176,3230835455,US 3230835456,3230837503,NO 3230837504,3230837759,US 3230837760,3230838015,ES 3230838016,3230840319,IT 3230840320,3230840575,FR 3230840576,3230840831,US 3230840832,3230841087,AU 3230841088,3230841343,NL 3230841344,3230841599,US 3230841600,3230841855,NL 3230841856,3230842111,US 3230842112,3230842367,AU 3230842368,3230843135,US 3230843136,3230843391,NL 3230843392,3230844927,US 3230844928,3230845183,AU 3230845184,3230845951,US 3230845952,3230846207,CZ 3230846208,3230849535,US 3230849536,3230850047,AU 3230850048,3230851839,US 3230851840,3230852351,NL 3230852352,3230852607,BR 3230852608,3230853119,CA 3230853120,3230853375,AU 3230853376,3230853887,FR 3230853888,3230854399,US 3230854400,3230854655,UY 3230854656,3230855167,NO 3230855168,3230855679,US 3230855680,3230855935,NL 3230855936,3230857983,US 3230857984,3230858751,AU 3230858752,3230865151,US 3230865152,3230865407,NL 3230865408,3230867967,US 3230867968,3230868223,NL 3230868224,3230868479,US 3230868480,3230868735,NL 3230868736,3230870015,US 3230870016,3230870271,NL 3230870272,3230878719,US 3230878720,3230879487,PT 3230879488,3230879743,FR 3230879744,3230888447,US 3230888448,3230888703,AU 3230888704,3230895359,US 3230895360,3230895615,NL 3230895616,3230897151,US 3230897408,3230897663,US 3230897664,3230897919,NL 3230898688,3230898943,US 3230898944,3230899199,NL 3230899200,3230913023,US 3230913024,3230913279,BR 3230913280,3230913535,US 3230913536,3230913791,NL 3230913792,3230914047,CA 3230914048,3230914303,US 3230914304,3230914815,FI 3230914816,3230915071,GB 3230915072,3230915327,BR 3230915328,3230915583,GB 3230915584,3230917631,US 3230917632,3230917887,NL 3230917888,3230918399,US 3230918400,3230918655,LC 3230918656,3230919423,US 3230919424,3230919679,AU 3230919680,3230922239,US 3230922240,3230922495,AU 3230922496,3230922751,NL 3230922752,3230923519,US 3230923776,3230924031,US 3230924032,3230924287,AU 3230924288,3230933247,US 3230933248,3230948607,SE 3230948608,3230951167,US 3230951168,3230951423,NL 3230951424,3230953215,US 3230953216,3230954495,CA 3230954496,3230967295,AU 3230967296,3230967551,RU 3230967552,3230967807,ES 3230967808,3230969599,US 3230969600,3230969855,MX 3230969856,3230970111,US 3230970112,3230972671,GB 3230972672,3230973951,US 3230973952,3230974207,NL 3230974208,3230974463,IT 3230974464,3230974719,GB 3230974720,3230975487,US 3230975488,3230975999,GB 3230976000,3230976255,NL 3230976256,3230980095,ES 3230980096,3230980351,GB 3230980352,3230980607,CA 3230980608,3230981119,US 3230981120,3230981375,NL 3230981376,3230981631,AU 3230981632,3230981887,US 3230981888,3230983935,AU 3230983936,3230991103,US 3230991104,3230991359,PL 3230991360,3230991615,US 3230991616,3230991871,FI 3230991872,3230994175,US 3230994176,3230994431,NL 3230994432,3230995199,US 3230995200,3230995455,NL 3230995456,3230995711,AU 3230995712,3230996223,US 3230996224,3230996479,CA 3230996480,3230997247,US 3230997248,3230997503,NL 3230997504,3230997759,US 3230997760,3230999039,SE 3230999040,3230999295,US 3230999296,3230999551,NL 3230999552,3230999807,AU 3230999808,3231000831,US 3231000832,3231001087,FR 3231001088,3231003903,US 3231003904,3231004159,CA 3231004160,3231004415,AU 3231004416,3231004927,US 3231004928,3231005183,GB 3231005184,3231005439,US 3231005440,3231005695,FR 3231005696,3231005951,GB 3231005952,3231010047,US 3231010048,3231010303,FR 3231010304,3231010815,NO 3231010816,3231011071,CA 3231011328,3231013375,US 3231013376,3231013887,CA 3231013888,3231015423,US 3231015424,3231015679,CA 3231015680,3231015935,US 3231015936,3231016191,NO 3231016192,3231016447,US 3231016448,3231016703,NO 3231016704,3231016959,US 3231016960,3231017215,CA 3231017216,3231018495,US 3231018496,3231018751,NL 3231018752,3231019007,GB 3231019008,3231020287,US 3231020288,3231020543,GB 3231020544,3231020799,NL 3231020800,3231021567,GB 3231021568,3231021823,US 3231021824,3231022079,CA 3231022080,3231022591,US 3231022592,3231022847,NL 3231022848,3231028479,US 3231028480,3231028735,AU 3231028736,3231042047,US 3231042048,3231042303,GU 3231042304,3231043839,US 3231043840,3231044095,AU 3231044096,3231047935,US 3231047936,3231048191,GB 3231048192,3231048447,US 3231048448,3231048703,NL 3231048704,3231049727,US 3231049728,3231049983,AT 3231049984,3231051263,US 3231051264,3231051519,GB 3231051520,3231051775,AU 3231051776,3231057151,US 3231057152,3231057407,CA 3231057408,3231070719,US 3231070720,3231074559,SE 3231074560,3231075071,US 3231075072,3231075583,NL 3231075584,3231075839,US 3231075840,3231077119,SE 3231077120,3231077375,PL 3231077376,3231077631,SE 3231077632,3231078655,US 3231078656,3231078911,NL 3231078912,3231079423,CA 3231079424,3231079679,NL 3231079680,3231079935,US 3231079936,3231080191,NL 3231080192,3231080447,US 3231080448,3231080703,AU 3231080704,3231082495,US 3231082496,3231082751,NL 3231082752,3231083007,US 3231083008,3231083263,GB 3231083264,3231083519,AU 3231083520,3231087615,US 3231087616,3231087871,NO 3231087872,3231088127,US 3231088128,3231088383,GT 3231088384,3231088895,US 3231088896,3231090687,AU 3231090944,3231091711,AU 3231091712,3231091967,NL 3231091968,3231092735,US 3231092736,3231092991,AU 3231092992,3231093247,US 3231093248,3231093503,NL 3231093504,3231101183,US 3231101184,3231103231,GB 3231103232,3231103487,CA 3231103488,3231103999,US 3231104000,3231104255,NO 3231104256,3231104767,DE 3231104768,3231105023,US 3231105024,3231105535,PT 3231105536,3231106303,IT 3231106304,3231106559,NO 3231106560,3231106815,GB 3231106816,3231107071,US 3231107072,3231107327,AU 3231107328,3231107583,US 3231107584,3231107839,AU 3231107840,3231108095,AT 3231108096,3231108351,GB 3231108352,3231108607,RU 3231108608,3231109119,US 3231109120,3231109375,GB 3231109376,3231109631,NO 3231109632,3231111679,US 3231111680,3231112191,NZ 3231112448,3231112959,US 3231112960,3231113215,NO 3231113216,3231113983,US 3231113984,3231115775,GB 3231115776,3231116799,AU 3231116800,3231117055,HU 3231117056,3231118847,US 3231118848,3231119103,AU 3231119104,3231119359,US 3231119360,3231119615,GB 3231119616,3231120383,TH 3231120384,3231120639,NO 3231120640,3231120895,US 3231120896,3231121151,NO 3231121152,3231149311,US 3231149312,3231149567,CA 3231149568,3231154431,US 3231154432,3231154687,AU 3231154688,3231155711,US 3231155712,3231156223,CA 3231156224,3231174655,US 3231174656,3231182847,CN 3231182848,3231186687,US 3231186688,3231186943,CN 3231186944,3231188479,US 3231188480,3231188735,NO 3231188736,3231190527,US 3231190528,3231190783,GB 3231190784,3231191295,US 3231191296,3231191551,GB 3231191552,3231193599,US 3231193600,3231194111,DE 3231194112,3231197695,US 3231197696,3231197951,FR 3231197952,3231198207,US 3231198208,3231198463,GB 3231198464,3231198975,US 3231198976,3231199231,PT 3231199232,3231199487,GB 3231199488,3231200255,NL 3231200256,3231200767,US 3231200768,3231201023,AT 3231201024,3231202559,US 3231202560,3231203071,GB 3231203072,3231203327,AT 3231203328,3231204351,US 3231204352,3231204607,FI 3231204608,3231204863,AU 3231204864,3231207167,US 3231207168,3231207423,CA 3231207424,3231207935,US 3231207936,3231208191,DE 3231208192,3231208959,US 3231208960,3231209471,AU 3231209472,3231210239,US 3231210240,3231210495,CA 3231210496,3231211775,US 3231211776,3231212031,CA 3231212032,3231212287,CH 3231212288,3231214335,US 3231214336,3231214591,CA 3231214592,3231215359,US 3231215360,3231215615,NO 3231215616,3231215871,GB 3231215872,3231217407,US 3231217408,3231217663,AU 3231217664,3231218175,US 3231218176,3231218431,GB 3231218432,3231218687,US 3231218688,3231218943,BE 3231218944,3231223039,US 3231223040,3231223295,IT 3231223296,3231223807,US 3231223808,3231224063,AU 3231224064,3231224319,US 3231224320,3231224575,AU 3231224576,3231225599,US 3231225600,3231225855,DE 3231225856,3231226879,US 3231226880,3231227135,GB 3231227136,3231227391,US 3231227392,3231227647,CA 3231227648,3231228927,US 3231228928,3231229183,PR 3231229184,3231229439,CA 3231229440,3231229695,IT 3231229696,3231229951,FR 3231229952,3231231487,US 3231231488,3231231743,PT 3231231744,3231234047,US 3231234048,3231235071,GB 3231235072,3231236863,US 3231236864,3231237119,CA 3231237120,3231237375,US 3231237376,3231237631,AU 3231237632,3231241215,US 3231241216,3231241471,AU 3231241472,3231241727,CA 3231241728,3231244287,US 3231244288,3231244543,CA 3231244544,3231248639,US 3231248640,3231248895,NL 3231248896,3231249407,US 3231249408,3231249663,GB 3231249664,3231250431,US 3231250432,3231250687,CA 3231250688,3231251711,US 3231251712,3231251967,GB 3231251968,3231252223,AT 3231252224,3231252991,US 3231252992,3231253503,NL 3231253504,3231254783,US 3231254784,3231255039,AU 3231255040,3231255551,US 3231255808,3231256063,PT 3231256064,3231257087,US 3231257088,3231257599,HU 3231257600,3231258623,US 3231258880,3231275007,US 3231275008,3231275263,BR 3231275264,3231275519,NL 3231275520,3231276287,US 3231276288,3231276543,AU 3231276544,3231276799,US 3231276800,3231281919,JP 3231281920,3231282175,US 3231282176,3231282431,HU 3231282432,3231282943,US 3231282944,3231283199,CL 3231283200,3231283455,BR 3231283456,3231284991,US 3231284992,3231285247,NL 3231285248,3231291647,US 3231291648,3231291903,NL 3231291904,3231292159,US 3231292160,3231292415,MX 3231292416,3231292927,US 3231292928,3231293183,AU 3231293184,3231294975,US 3231294976,3231295231,NL 3231295232,3231295487,CR 3231295488,3231295743,NL 3231295744,3231296255,US 3231296256,3231296511,NL 3231296512,3231296767,US 3231296768,3231299327,AT 3231299328,3231300095,US 3231300096,3231300351,CA 3231300352,3231300607,US 3231300608,3231301119,NL 3231301120,3231302143,US 3231302144,3231302399,NL 3231302400,3231302655,US 3231302656,3231303167,AU 3231303168,3231307007,US 3231307008,3231307263,GB 3231307264,3231308031,US 3231308032,3231308287,CA 3231308288,3231308799,US 3231308800,3231309055,CA 3231310848,3231316735,US 3231316736,3231316991,AU 3231316992,3231318783,US 3231319040,3231321343,US 3231321344,3231321599,CA 3231321600,3231322111,US 3231322112,3231324671,SG 3231324672,3231325183,US 3231325184,3231326207,CA 3231326208,3231352831,US 3231352832,3231358975,CA 3231358976,3231369215,US 3231369216,3231369471,TW 3231369472,3231383551,US 3231383552,3231383807,CA 3231383808,3231385343,NO 3231385344,3231401215,US 3231401216,3231401471,CA 3231401472,3231423999,US 3231424000,3231424511,PR 3231424512,3231477759,US 3231477760,3231478015,CA 3231478016,3231482879,US 3231482880,3231483135,BE 3231483136,3231484927,US 3231484928,3231487999,JP 3231488512,3231488767,JP 3231489280,3231489535,US 3231489536,3231489791,JP 3231489792,3231490047,AU 3231490048,3231490559,US 3231490560,3231490815,NL 3231490816,3231491327,US 3231491328,3231491583,AU 3231491584,3231491839,US 3231491840,3231492095,GB 3231492096,3231493631,US 3231493632,3231493887,CH 3231493888,3231500031,US 3231500032,3231500287,BM 3231500288,3231502079,US 3231502080,3231502591,AU 3231502592,3231502847,US 3231502848,3231503103,NL 3231503104,3231503615,US 3231503616,3231503871,IT 3231503872,3231504383,US 3231504640,3231504895,NL 3231504896,3231505407,US 3231505408,3231505663,AU 3231505664,3231506687,US 3231506688,3231506943,AU 3231506944,3231507199,US 3231507200,3231507455,BE 3231507456,3231510271,US 3231510272,3231510527,NL 3231510528,3231512575,US 3231512576,3231512831,LU 3231512832,3231513087,AU 3231513088,3231514879,US 3231514880,3231515647,NO 3231515648,3231516671,US 3231516672,3231519231,SE 3231519232,3231526935,US 3231526936,3231526943,CA 3231526944,3231527119,US 3231527120,3231527127,CA 3231527128,3231527679,US 3231527680,3231527967,CA 3231527968,3231528191,US 3231528192,3231528447,IN 3231528448,3231528471,US 3231528472,3231528487,CA 3231528488,3231528959,US 3231528960,3231528975,CA 3231528976,3231528983,US 3231528984,3231528991,CA 3231528992,3231529031,US 3231529032,3231529039,CA 3231529040,3231529471,US 3231529472,3231529487,CA 3231529488,3231529727,US 3231529728,3231529983,CA 3231529984,3231539199,US 3231539200,3231547391,CA 3231547392,3231547647,US 3231547648,3231547903,NL 3231547904,3231549951,US 3231549952,3231550207,JP 3231550208,3231550719,DE 3231550720,3231550975,GB 3231550976,3231551231,US 3231551232,3231551999,CA 3231552000,3231553023,US 3231553024,3231553791,JP 3231553792,3231554047,CH 3231554048,3231555327,DE 3231555328,3231556095,CA 3231556096,3231556351,AU 3231556352,3231556607,US 3231556608,3231556863,CA 3231556864,3231557887,AT 3231557888,3231558399,GB 3231558400,3231558655,DE 3231558656,3231558911,GB 3231558912,3231559167,CA 3231559168,3231559423,NL 3231559424,3231559679,US 3231559680,3231559935,NL 3231559936,3231561983,US 3231561984,3231562239,NL 3231562240,3231562495,US 3231562496,3231562751,NL 3231562752,3231563007,US 3231563008,3231563263,NL 3231563264,3231563519,MU 3231563520,3231563775,AU 3231563776,3231583231,US 3231583232,3231584255,CA 3231584256,3231588863,US 3231588864,3231589119,GB 3231589120,3231591679,US 3231591680,3231591935,AU 3231591936,3231596031,US 3231596032,3231596543,PR 3231596544,3231634943,US 3231634944,3231635455,CA 3231635456,3231641855,US 3231641856,3231642111,SG 3231642112,3231649791,US 3231649792,3231653631,SG 3231653632,3231663615,US 3231663616,3231663871,NL 3231663872,3231664127,CA 3231664128,3231664383,US 3231664384,3231664639,NL 3231664640,3231665407,US 3231665408,3231665663,NL 3231665664,3231667199,US 3231667200,3231667711,NL 3231667712,3231668735,US 3231668736,3231668991,BE 3231668992,3231669759,US 3231669760,3231670015,CA 3231670016,3231670271,NL 3231670272,3231671039,US 3231671040,3231672319,GB 3231672320,3231672575,US 3231672576,3231672831,NL 3231672832,3231673343,US 3231673344,3231673855,NL 3231673856,3231674111,US 3231674112,3231674367,CA 3231674368,3231675391,US 3231675392,3231675903,BR 3231675904,3231676159,NL 3231676160,3231676671,US 3231676672,3231677183,NL 3231677184,3231694847,US 3231694848,3231711231,CA 3231711232,3231713023,US 3231713024,3231713279,CA 3231713280,3231713791,US 3231713792,3231714047,NL 3231714048,3231715071,US 3231715072,3231715327,NL 3231715328,3231715583,AU 3231715584,3231716095,US 3231716096,3231716351,AU 3231716352,3231716607,US 3231716608,3231716863,TR 3231716864,3231717119,LU 3231717120,3231717375,NO 3231717376,3231718143,US 3231718144,3231718399,IT 3231718400,3231718655,US 3231718656,3231718911,AU 3231718912,3231719679,US 3231719680,3231719935,NL 3231720192,3231720703,US 3231720704,3231720959,NL 3231720960,3231722751,US 3231722752,3231723007,BR 3231723008,3231724031,US 3231724032,3231724287,BR 3231724288,3231727871,US 3231727872,3231728127,NL 3231728128,3231728383,US 3231728384,3231728639,NL 3231728640,3231729407,US 3231729408,3231729663,AU 3231729664,3231735551,US 3231735552,3231736063,CH 3231736064,3231737343,US 3231737344,3231737599,CA 3231737600,3231738367,US 3231738368,3231738623,NL 3231738624,3231739135,US 3231739136,3231739647,NL 3231739648,3231739903,BR 3231739904,3231742719,US 3231742720,3231742975,NL 3231742976,3231743487,US 3231743488,3231743743,NL 3231743744,3231743999,US 3231744000,3231744255,BR 3231744256,3231747583,US 3231747584,3231748095,NL 3231748096,3231750143,US 3231750144,3231750399,NL 3231750400,3231750911,US 3231750912,3231751167,AU 3231751168,3231751423,IT 3231751424,3231752191,US 3231752192,3231752447,NL 3231752448,3231752703,AU 3231752704,3231753983,US 3231753984,3231754239,CA 3231754240,3231754495,US 3231754496,3231755263,AU 3231755264,3231755519,NL 3231755520,3231755775,US 3231755776,3231756543,PR 3231756544,3231757311,GB 3231757312,3231759359,US 3231759360,3231759615,BR 3231759616,3231760895,US 3231760896,3231761151,GB 3231761152,3231761407,NL 3231761408,3231763711,US 3231763712,3231763967,AU 3231763968,3231768575,US 3231768576,3231769087,NL 3231769088,3231769343,AU 3231769344,3231769855,US 3231769856,3231770111,AU 3231770112,3231770367,US 3231770368,3231770879,AT 3231770880,3231771135,RU 3231771136,3231773951,US 3231773952,3231775231,PT 3231775232,3231775487,KY 3231775488,3231775999,NL 3231776000,3231776511,US 3231776512,3231776767,CA 3231776768,3231793151,US 3231793152,3231793663,NL 3231793664,3231800319,US 3231800320,3231801343,CN 3231801344,3231809535,CA 3231809536,3231810047,AU 3231810048,3231842303,US 3231842304,3231843327,RU 3231843328,3231844351,NO 3231844352,3231845375,RU 3231845376,3231846399,ES 3231846400,3231846655,RO 3231846656,3231846911,PT 3231846912,3231847167,GB 3231847168,3231847423,UA 3231847424,3231848447,RU 3231848448,3231849471,ES 3231849472,3231850495,CH 3231850496,3231851519,UA 3231851520,3231853567,RU 3231853568,3231855615,PL 3231855616,3231856639,RS 3231856640,3231857663,RU 3231857664,3231858687,PL 3231858688,3231859711,RU 3231859712,3231860735,FR 3231860736,3231861759,SA 3231861760,3231863807,UA 3231863808,3231864831,DE 3231864832,3231865855,RU 3231865856,3231866879,PL 3231866880,3231867903,CZ 3231867904,3231868927,RU 3231868928,3231869951,LV 3231869952,3231873023,UA 3231873024,3231875071,RU 3231875072,3231876095,PL 3231876096,3231877119,UA 3231877120,3231878143,NL 3231878144,3231879167,UA 3231879168,3231881215,PL 3231881216,3231882239,UA 3231882240,3231883263,RU 3231883264,3231884287,UA 3231884288,3231885311,PL 3231885312,3231886335,DE 3231886336,3231888383,PL 3231888384,3231889407,RU 3231889408,3231890431,RO 3231890432,3231892479,RU 3231893504,3231894527,UA 3231895552,3231896575,UA 3231896576,3231897599,RU 3231897600,3231898623,IE 3231898624,3231899647,SE 3231899648,3231900671,UA 3231900672,3231901439,DE 3231901440,3231901695,BG 3231901696,3231903743,UA 3231903744,3231905791,RU 3231905792,3231906047,PL 3231906048,3231907839,RU 3231907840,3231916031,US 3231916032,3231948799,FI 3231948800,3231973375,US 3231973376,3232038911,AT 3232038912,3232039167,SE 3232039168,3232039423,DK 3232039424,3232039679,IT 3232039680,3232047359,SE 3232047360,3232048639,GB 3232048640,3232049151,SE 3232049152,3232049407,GB 3232049408,3232051199,SE 3232051200,3232051455,AT 3232051456,3232051967,SE 3232051968,3232052991,GB 3232052992,3232053247,US 3232053248,3232056063,SE 3232056064,3232056319,IT 3232056320,3232060415,SE 3232060416,3232060671,IE 3232060672,3232060927,IT 3232060928,3232065791,SE 3232065792,3232066303,GB 3232066304,3232066559,SE 3232066560,3232066815,NO 3232066816,3232067839,SE 3232067840,3232068095,PL 3232068096,3232069887,SE 3232069888,3232070143,CH 3232070144,3232070399,SE 3232070400,3232070655,ES 3232070656,3232079871,SE 3232079872,3232080895,GB 3232080896,3232082687,SE 3232082688,3232083199,GB 3232083200,3232083455,SE 3232083456,3232083711,DE 3232083712,3232086527,SE 3232086528,3232087039,GB 3232087040,3232089087,SE 3232089088,3232089343,ES 3232089344,3232090367,SE 3232090368,3232090623,IT 3232090624,3232095231,SE 3232095232,3232096255,GB 3232096256,3232098047,SE 3232098048,3232098303,FR 3232098304,3232100095,SE 3232100096,3232100351,IE 3232100352,3232101119,GB 3232101120,3232104447,SE 3232104448,3232106495,DE 3232107520,3232108543,RU 3232108544,3232112639,DE 3232116736,3232125183,DE 3232125952,3232129023,DE 3232129024,3232130047,NL 3232130048,3232131071,UA 3232131072,3232133119,DE 3232133120,3232133631,UA 3232134144,3232135167,RU 3232135168,3232135679,PL 3232135680,3232135935,RO 3232135936,3232137215,RU 3232137216,3232139263,UA 3232139264,3232140287,GB 3232140288,3232141311,FR 3232141312,3232141823,UA 3232141824,3232142335,DE 3232142336,3232143359,ES 3232143360,3232156159,DE 3232156160,3232156671,PL 3232157696,3232159743,DE 3232159744,3232160767,PL 3232163840,3232165887,RU 3232169216,3232169727,DE 3232169728,3232169983,PL 3232169984,3232183295,IT 3232183296,3232184319,SI 3232184320,3232235519,IT 3232301056,3232309247,US 3232309248,3232311807,SG 3232311808,3232399615,US 3232399872,3232407039,US 3232407040,3232407551,SG 3232407552,3232432383,US 3232433408,3232433663,IT 3232433664,3232440319,US 3232440320,3232448511,CA 3232448512,3232461311,US 3232461312,3232461823,CA 3232461824,3232462847,US 3232462848,3232464895,BB 3232464896,3232483327,GB 3232483328,3232555775,US 3232555776,3232557055,JP 3232557056,3232557311,AU 3232557312,3232557567,US 3232557568,3232559103,JP 3232559104,3232559359,US 3232559360,3232560127,JP 3232560896,3232561663,US 3232561664,3232561919,CA 3232561920,3232562431,US 3232562432,3232562687,NL 3232562688,3232562943,CA 3232562944,3232563455,US 3232563456,3232564479,GB 3232564480,3232567295,US 3232567296,3232569599,NZ 3232569600,3232570367,US 3232570368,3232571391,CA 3232571392,3232595967,US 3232595968,3232598015,GB 3232598016,3232629759,US 3232629760,3232630783,CA 3232630784,3232645119,US 3232645120,3232646399,AT 3232646400,3232661503,US 3232661504,3232694271,JP 3232694272,3232695807,US 3232695808,3232696319,CA 3232696320,3232702463,US 3232702464,3232703743,FI 3232703744,3232703999,FR 3232704000,3232704511,CH 3232704512,3232705535,GB 3232705536,3232706559,FI 3232706560,3232716799,US 3232716800,3232724151,CA 3232724152,3232724159,US 3232724160,3232727039,CA 3232727040,3232759807,US 3232759808,3232765951,SE 3232765952,3232766207,NO 3232766208,3232766463,SE 3232766464,3232766719,NO 3232766720,3232767231,DE 3232767232,3232774911,SE 3232774912,3232775167,IE 3232775168,3232792319,SE 3232792320,3232792575,DK 3232792576,3232794879,SE 3232794880,3232795135,DE 3232795136,3232802559,SE 3232802560,3232802815,DK 3232802816,3232803071,SE 3232803072,3232803327,IE 3232803328,3232804351,SE 3232804352,3232804607,DK 3232804608,3232804863,IT 3232804864,3232812031,SE 3232812032,3232812543,GB 3232812544,3232812799,SE 3232812800,3232813055,ES 3232813056,3232820223,SE 3232820224,3232820479,IE 3232820480,3232825343,SE 3232825344,3233288191,US 3233288192,3233292287,CA 3233292288,3233431551,US 3233431552,3233447935,CA 3233447936,3233451519,US 3233451520,3233451775,GB 3233451776,3233453567,US 3233453568,3233453631,IT 3233453632,3233456191,US 3233456192,3233456255,LV 3233456256,3233456383,US 3233456384,3233456447,UA 3233456448,3233456639,US 3233456640,3233457151,CA 3233457152,3233458687,US 3233458688,3233458943,HU 3233458944,3233459007,BG 3233459008,3233484799,US 3233484800,3233487359,ES 3233487360,3233487871,US 3233487872,3233488895,CA 3233488896,3233546751,US 3233546752,3233547007,CA 3233547008,3233547519,US 3233547520,3233547775,CA 3233547776,3233548799,US 3233548800,3233549055,NL 3233549056,3233549311,BR 3233549312,3233557247,US 3233557248,3233557503,AU 3233557504,3233561855,EC 3233561856,3233562367,US 3233562368,3233562879,GB 3233562880,3233563135,FR 3233563136,3233563903,US 3233563904,3233564159,NL 3233564160,3233564415,US 3233564416,3233564671,AU 3233564672,3233564927,US 3233564928,3233566719,JP 3233567744,3233567999,US 3233568000,3233568767,JP 3233568768,3233569023,CA 3233569024,3233569535,AU 3233569536,3233569791,US 3233569792,3233570047,JP 3233570048,3233570815,US 3233570816,3233571071,GB 3233571072,3233572095,US 3233572096,3233572351,AU 3233572352,3233573119,US 3233573120,3233573375,NL 3233573376,3233573631,US 3233573632,3233573887,AU 3233573888,3233575679,US 3233575680,3233575935,AU 3233575936,3233576191,RU 3233576192,3233576447,GB 3233576448,3233577215,US 3233577216,3233577727,NL 3233577728,3233578239,US 3233578240,3233578495,NL 3233578496,3233578751,US 3233578752,3233579007,NL 3233579008,3233579263,AU 3233579264,3233579519,NL 3233579520,3233580031,US 3233580032,3233580287,NL 3233580288,3233581055,US 3233581056,3233581311,NL 3233581312,3233583359,US 3233583360,3233583615,NL 3233583616,3233584895,US 3233584896,3233585151,AU 3233585152,3233586431,US 3233586432,3233586943,NL 3233586944,3233588223,US 3233588224,3233589247,GA 3233589248,3233589759,CA 3233589760,3233590015,CN 3233590016,3233590271,TW 3233590272,3233590527,TH 3233590528,3233590783,PR 3233590784,3233591295,AU 3233591296,3233593599,US 3233593600,3233593855,NZ 3233593856,3233594111,AU 3233594112,3233594367,NL 3233594368,3233594623,US 3233594624,3233594879,NL 3233594880,3233595903,US 3233595904,3233596927,EC 3233596928,3233605887,US 3233605888,3233607167,PL 3233607168,3233607935,US 3233607936,3233608191,AU 3233608192,3233609727,HU 3233609984,3233612031,US 3233612032,3233612287,NL 3233612288,3233613823,US 3233613824,3233614847,GB 3233614848,3233615359,US 3233615360,3233615615,NL 3233615616,3233617407,US 3233617408,3233617663,CA 3233617664,3233617919,NL 3233617920,3233618175,AU 3233618176,3233620479,US 3233620480,3233620735,AU 3233620736,3233620991,US 3233620992,3233622015,CA 3233622016,3233622271,US 3233622272,3233622527,NL 3233622528,3233624831,US 3233624832,3233625343,NL 3233625344,3233625599,US 3233625600,3233625855,AU 3233625856,3233626111,NL 3233626112,3233628415,US 3233628672,3233628927,FR 3233628928,3233629439,CA 3233629440,3233629695,GB 3233629696,3233629951,IL 3233629952,3233630463,US 3233630464,3233630719,NL 3233630720,3233630975,US 3233630976,3233631231,MU 3233631232,3233631487,NL 3233631488,3233635839,US 3233635840,3233636095,AU 3233636096,3233642239,US 3233642240,3233642495,GB 3233642496,3233646591,US 3233646592,3233646847,AU 3233646848,3233647359,US 3233647360,3233647871,MU 3233647872,3233649663,US 3233649664,3233649919,AU 3233649920,3233650431,US 3233650432,3233650687,NL 3233650688,3233651199,US 3233651200,3233651455,NL 3233651456,3233651967,US 3233651968,3233652223,NL 3233652224,3233652479,US 3233652480,3233652735,AU 3233652736,3233652991,NL 3233652992,3233654271,US 3233654272,3233655551,GB 3233655552,3233663487,US 3233663488,3233663999,NL 3233664000,3233664255,CA 3233664256,3233665023,US 3233665024,3233666047,AU 3233666048,3233668863,US 3233668864,3233669119,AU 3233669120,3233670399,US 3233670400,3233670655,AU 3233671680,3233676031,US 3233676032,3233676287,NL 3233676288,3233677311,US 3233677312,3233677567,CA 3233677568,3233679359,US 3233679616,3233684991,US 3233684992,3233685247,MX 3233685248,3233685503,BR 3233685504,3233688575,US 3233688576,3233688831,NL 3233688832,3233692159,US 3233692160,3233692671,NL 3233692672,3233692927,US 3233692928,3233693183,AU 3233693184,3233693695,US 3233693696,3233693951,NL 3233693952,3233694207,US 3233694208,3233694463,AU 3233694464,3233694719,NL 3233694720,3233694975,US 3233694976,3233695231,FR 3233695232,3233696511,US 3233696512,3233696767,CA 3233696768,3233701631,US 3233701632,3233701887,NL 3233701888,3233704959,US 3233704960,3233705215,NZ 3233705216,3233710335,US 3233710336,3233711359,FR 3233711360,3233721599,US 3233721600,3233721855,HU 3233721856,3233722111,PT 3233722112,3233723391,US 3233723392,3233723903,AU 3233723904,3233724415,NL 3233724416,3233725951,US 3233725952,3233726975,NO 3233726976,3233728767,US 3233728768,3233729023,GB 3233729024,3233729279,NL 3233729280,3233729535,US 3233729536,3233730047,AU 3233730048,3233730559,US 3233730560,3233732607,AU 3233732608,3233736959,US 3233736960,3233737983,FR 3233737984,3233738751,US 3233738752,3233739007,NL 3233739008,3233739263,US 3233739264,3233739519,NL 3233739520,3233740543,US 3233740544,3233741311,GB 3233741312,3233743359,US 3233743360,3233743615,CA 3233743616,3233744383,US 3233744384,3233744639,PR 3233744640,3233745663,US 3233745664,3233745919,CA 3233745920,3233746943,US 3233746944,3233747199,PR 3233747200,3233748735,US 3233748736,3233748991,PR 3233748992,3233749503,US 3233749504,3233750015,CA 3233750016,3233752831,US 3233752832,3233753087,PR 3233753088,3233763071,US 3233763072,3233763327,CA 3233763328,3233765887,US 3233765888,3233766143,CA 3233766144,3233768447,US 3233768448,3233768703,CA 3233768704,3233768959,PR 3233768960,3233778175,US 3233778176,3233778431,CA 3233778432,3233779455,US 3233779456,3233779711,CA 3233779712,3233781503,US 3233781504,3233781759,PR 3233781760,3233783807,US 3233783808,3233784063,PR 3233784064,3233784319,CA 3233784320,3233786111,US 3233786112,3233786367,PR 3233786368,3233790207,US 3233790208,3233790463,PR 3233790464,3233790719,CA 3233790720,3233790975,PR 3233790976,3233791231,CA 3233791232,3233791487,PR 3233791488,3233793023,US 3233793024,3233793279,PR 3233793280,3233794047,US 3233794048,3233794303,CA 3233794304,3233800447,US 3233800448,3233800703,CA 3233800704,3233800959,US 3233800960,3233801215,CA 3233801216,3233801983,US 3233801984,3233802239,CA 3233802240,3233802495,US 3233802496,3233802751,CA 3233802752,3233803007,US 3233803008,3233803263,CA 3233803264,3233808383,US 3233808384,3233873919,TW 3233873920,3233874175,US 3233874176,3233874687,AU 3233874688,3233903615,US 3233903616,3233903743,GB 3233903744,3233903807,US 3233903808,3233903871,GB 3233903872,3233939455,US 3233939456,3234004991,FI 3234004992,3234005247,US 3234005248,3234005503,NL 3234005504,3234005759,AU 3234005760,3234006015,CA 3234006016,3234007039,US 3234007040,3234007295,NL 3234007296,3234007551,US 3234007552,3234007807,AU 3234007808,3234008063,US 3234008064,3234008831,NZ 3234008832,3234013695,US 3234013696,3234013951,AU 3234013952,3234014975,US 3234014976,3234015487,AU 3234015488,3234015743,US 3234015744,3234015999,IE 3234016000,3234016255,GB 3234016256,3234019327,AU 3234019840,3234023423,US 3234023424,3234023679,NL 3234023680,3234030079,US 3234030080,3234030335,NL 3234030336,3234031103,US 3234031104,3234031359,AU 3234031360,3234031871,US 3234031872,3234032383,NL 3234032384,3234033151,US 3234033152,3234033407,NL 3234033408,3234033663,US 3234033664,3234033919,AU 3234033920,3234034687,US 3234034688,3234035455,GB 3234035456,3234039295,US 3234039296,3234043135,SE 3234043136,3234043903,US 3234043904,3234044159,AU 3234044160,3234047743,US 3234047744,3234047999,GB 3234048000,3234048511,US 3234048512,3234048767,AU 3234048768,3234051839,US 3234051840,3234052351,NL 3234052352,3234052607,US 3234052608,3234052863,AU 3234052864,3234054911,US 3234054912,3234055167,NL 3234055168,3234055423,US 3234055424,3234055679,AU 3234055680,3234056959,US 3234056960,3234057215,CA 3234057216,3234061055,US 3234061056,3234061311,AU 3234061312,3234064639,US 3234064640,3234064895,AU 3234064896,3234065407,US 3234065408,3234065663,NL 3234065664,3234065919,BR 3234065920,3234069247,US 3234069248,3234069503,CA 3234069504,3234070271,US 3234070272,3234070527,CA 3234070528,3234070783,US 3234070784,3234110463,FR 3234110464,3234128455,US 3234128456,3234128463,GB 3234128464,3234130695,US 3234130696,3234130703,AU 3234130704,3234131183,US 3234131184,3234131191,GB 3234131192,3234136063,US 3234136064,3234150911,CA 3234150912,3234151423,US 3234151424,3234158847,CA 3234158848,3234159103,US 3234159104,3234159615,CA 3234159616,3234160127,US 3234160128,3234164991,CA 3234164992,3234165247,US 3234165248,3234167295,CA 3234167296,3234167807,US 3234167808,3234172927,CA 3234172928,3234173951,US 3234173952,3234175999,CA 3234176000,3234177279,US 3234177280,3234187007,CA 3234187008,3234187519,US 3234187520,3234189055,CA 3234189056,3234189311,US 3234189312,3234192383,CA 3234192384,3234193663,US 3234193664,3234198783,CA 3234198784,3234199039,US 3234199040,3234201343,CA 3234201344,3234203647,US 3234203648,3234205183,BR 3234205184,3234205439,AR 3234205440,3234205695,BR 3234205696,3234226983,US 3234226984,3234226991,CA 3234226992,3234227455,US 3234227456,3234227711,CA 3234227712,3234228223,US 3234228224,3234228351,CA 3234228352,3234230015,US 3234230016,3234230207,ES 3234230208,3234232319,US 3234232320,3234232575,EG 3234232576,3234238975,US 3234238976,3234239487,MY 3234239488,3234267135,US 3234267136,3234267391,CA 3234267392,3234270207,US 3234270208,3234271231,CA 3234271232,3234275327,PT 3234275328,3234279423,AU 3234279424,3234283519,CA 3234283520,3234316287,US 3234316288,3234320383,CA 3234320384,3234338815,US 3234338816,3234339071,CN 3234339072,3234339327,MT 3234339328,3234339583,LB 3234339584,3234339839,PA 3234339840,3234340095,US 3234340096,3234340351,IN 3234340352,3234349055,US 3234349056,3234353151,NZ 3234353152,3234529279,US 3234529280,3234529535,PR 3234529536,3234538751,US 3234538752,3234539007,TC 3234539520,3234549759,US 3234549760,3234550015,RU 3234553856,3234554623,US 3234554624,3234554879,AU 3234554880,3234556415,US 3234556416,3234556927,CA 3234556928,3234557439,FI 3234557440,3234564607,US 3234564608,3234566911,KR 3234566912,3234568703,US 3234568704,3234568959,AU 3234568960,3234569215,US 3234569216,3234569727,AU 3234569728,3234569983,CL 3234569984,3234574335,US 3234574336,3234574591,AU 3234574592,3234574847,MX 3234574848,3234576127,US 3234576896,3234578687,US 3234578688,3234578943,AU 3234578944,3234579711,US 3234579712,3234579967,CA 3234579968,3234581247,US 3234581248,3234581503,CA 3234581504,3234582527,US 3234582528,3234583039,AU 3234583040,3234583807,US 3234583808,3234584063,AU 3234584064,3234584575,US 3234584576,3234584831,AU 3234584832,3234587391,US 3234587392,3234587647,NL 3234587648,3234588671,US 3234588672,3234588927,AU 3234588928,3234589439,US 3234589440,3234589695,AU 3234589696,3234590463,US 3234590464,3234590719,CA 3234590720,3234592511,US 3234592512,3234592767,AU 3234592768,3234726143,US 3234726144,3234726399,CA 3234726400,3234726911,US 3234726912,3234727935,CA 3234727936,3234733055,US 3234733056,3234733311,CA 3234733312,3234739711,US 3234739712,3234740223,CA 3234740224,3234745599,US 3234745600,3234746879,GB 3234746880,3234747903,US 3234747904,3234748159,NL 3234748160,3234749695,US 3234749696,3234750207,CA 3234750208,3234751999,US 3234752000,3234752255,AU 3234752256,3234753535,US 3234753536,3234753791,AU 3234753792,3234755839,US 3234755840,3234756095,AU 3234756096,3234762751,US 3234762752,3234764799,CA 3234764800,3234766335,NZ 3234766336,3234772223,US 3234772224,3234772479,CA 3234772480,3234781439,US 3234781440,3234781951,CA 3234781952,3234782719,US 3234782720,3234783999,IL 3234784000,3234794495,US 3234794496,3234794751,CA 3234794752,3234795007,US 3234795008,3234795263,NL 3234795264,3234799359,US 3234799360,3234799615,NL 3234799616,3234799871,US 3234799872,3234800127,AU 3234800128,3234800639,US 3234800640,3234800895,AU 3234800896,3234801663,US 3234801664,3234802431,EC 3234802432,3234803711,US 3234803712,3234803967,PR 3234803968,3234806783,US 3234806784,3234807295,CA 3234807296,3234807807,US 3234807808,3234808063,AU 3234808064,3234809087,EC 3234809088,3234810879,US 3234810880,3234811135,CA 3234811136,3234814719,US 3234814720,3234814975,HK 3234814976,3234815999,US 3234816000,3234816767,AU 3234816768,3234820351,US 3234820352,3234820607,AU 3234820608,3234821887,US 3234821888,3234822655,AU 3234822656,3234826751,US 3234826752,3234827007,CA 3234827008,3234827519,US 3234827520,3234828031,NL 3234828032,3234828287,AU 3234828288,3234828799,US 3234828800,3234829055,CL 3234829056,3234830079,US 3234830080,3234830847,AU 3234831360,3234832127,AU 3234832128,3234832639,US 3234832640,3234832895,AU 3234832896,3234833663,US 3234833664,3234833919,AU 3234833920,3234838271,US 3234838272,3234838527,GT 3234838528,3234839295,US 3234839296,3234839551,AU 3234839552,3234841087,US 3234841088,3234841599,BR 3234841600,3234841855,NL 3234841856,3234842367,AU 3234842368,3234842623,US 3234842624,3234844415,BR 3234844416,3234853375,US 3234853376,3234853631,AU 3234853632,3234853887,US 3234853888,3234854143,EC 3234854144,3234854911,US 3234854912,3234855167,AU 3234855168,3234856447,US 3234856448,3234856703,AU 3234856704,3234857215,US 3234857216,3234861055,CA 3234861056,3234988287,US 3234988288,3234990847,CA 3234990848,3235004415,US 3235004416,3235021823,CA 3235021824,3235026943,US 3235026944,3235027967,CA 3235027968,3235044375,US 3235044376,3235044383,GB 3235044384,3235045375,US 3235045376,3235045887,CA 3235045888,3235065343,US 3235065344,3235065855,CA 3235065856,3235085311,US 3235085312,3235086335,CA 3235086336,3235184639,US 3235184640,3235184895,CA 3235184896,3235275775,US 3235275776,3235276799,CA 3235276800,3235278847,US 3235278848,3235282943,BB 3235282944,3235315711,CA 3235315712,3235389439,US 3235389440,3235389951,VE 3235389952,3235512319,US 3235512320,3235577855,JP 3235577856,3235641855,CA 3235642112,3235643135,CA 3235643136,3235745791,US 3235745792,3235745792,DE 3235745793,3235747839,US 3235747840,3235748095,GB 3235748096,3235748351,US 3235748352,3235748607,GB 3235748608,3235774719,US 3235774720,3235776767,CA 3235776768,3235800575,US 3235800576,3235801087,CA 3235801088,3235807231,US 3235807232,3235839999,CA 3235840000,3235843071,US 3235843072,3235844095,CA 3235844096,3235856383,US 3235856384,3235872767,BO 3235872768,3235877375,US 3235877376,3235877631,AU 3235877632,3235906303,US 3235906304,3235906559,CA 3235906560,3235908863,US 3235908864,3235909119,CA 3235909120,3235912447,US 3235912448,3235912703,CA 3235912704,3235914495,US 3235914496,3235914751,CA 3235914752,3235916543,US 3235916544,3235916799,VI 3235916800,3235917567,US 3235917568,3235917823,CA 3235917824,3235919359,US 3235919360,3235919615,CA 3235919616,3235921151,US 3235921152,3235921407,PR 3235921408,3235926271,US 3235926272,3235926527,CA 3235926528,3235927295,US 3235927296,3235927807,CA 3235927808,3235928319,US 3235928320,3235929343,CA 3235929344,3235929599,US 3235929600,3235929855,CA 3235929856,3235932159,US 3235932160,3235932415,CA 3235932416,3235932671,US 3235932672,3235932927,CA 3235932928,3235937023,US 3235937024,3235937535,CA 3235937536,3235937791,US 3235937792,3235938047,CA 3235938048,3235941631,US 3235941632,3235941887,CA 3235941888,3235945983,US 3235945984,3235946239,CA 3235946240,3235946751,US 3235946752,3235947007,CA 3235947008,3235949311,US 3235949312,3235950335,CA 3235950336,3235950591,US 3235950592,3235950847,CA 3235950848,3235951871,US 3235951872,3235952127,CA 3235952128,3235957247,US 3235957248,3235957503,PR 3235957504,3235957759,US 3235957760,3235958015,DE 3235958016,3235959551,US 3235959552,3235959807,CA 3235959808,3235960319,US 3235960320,3235960575,CA 3235960576,3235962111,US 3235962112,3235962367,CA 3235962368,3235963647,US 3235963648,3235963903,CA 3235963904,3235966975,US 3235966976,3235967231,PR 3235967232,3235967743,US 3235967744,3235967999,CA 3235968000,3235968511,US 3235968512,3235968767,CA 3235968768,3235970559,US 3235970560,3235970815,CA 3235970816,3235971071,US 3235971072,3235971327,CA 3235971328,3236044799,US 3236044800,3236052991,CA 3236052992,3236069375,US 3236069376,3236102143,CA 3236102144,3236102399,US 3236102400,3236106239,PH 3236106240,3236140031,US 3236140032,3236142079,CA 3236142080,3236142335,US 3236142336,3236142463,CA 3236142464,3236142847,US 3236142848,3236143005,CA 3236143006,3236143006,US 3236143007,3236143103,CA 3236143104,3236163519,US 3236163520,3236163583,IE 3236163584,3236167935,US 3236167936,3236175871,CA 3236175872,3236191487,US 3236191744,3236200447,US 3236200448,3236233215,MY 3236233216,3236239359,US 3236239360,3236241407,CA 3236241408,3236291071,US 3236291072,3236291327,GB 3236291328,3236302847,US 3236306944,3236312063,US 3236312064,3236312319,MO 3236312320,3236312575,GH 3236312576,3236312831,GR 3236312832,3236313087,QA 3236313088,3236365567,US 3236365568,3236365823,CA 3236365824,3236368127,US 3236368128,3236368383,AU 3236368384,3236372991,US 3236372992,3236373247,AU 3236373248,3236373503,US 3236373504,3236373759,BS 3236373760,3236379391,US 3236379392,3236379647,AU 3236379648,3236381183,US 3236381184,3236381439,CA 3236381440,3236381695,NL 3236381696,3236383999,US 3236384000,3236384255,AU 3236384256,3236385279,US 3236385280,3236385535,NL 3236385536,3236387071,US 3236387072,3236387327,CA 3236387328,3236387839,US 3236387840,3236389375,PR 3236389376,3236392447,US 3236392448,3236392703,CL 3236392704,3236393471,US 3236393472,3236393983,BR 3236393984,3236395007,CO 3236395008,3236395519,BR 3236395520,3236396799,US 3236396800,3236397055,AU 3236397056,3236398847,US 3236398848,3236399359,AU 3236399616,3236400127,US 3236400128,3236400383,CL 3236400384,3236401151,US 3236401152,3236401407,AU 3236401408,3236406783,US 3236406784,3236407551,AU 3236407552,3236408063,SG 3236408064,3236408319,US 3236408320,3236409087,CA 3236409088,3236409599,BR 3236409600,3236411135,US 3236411136,3236411391,AU 3236411392,3236412415,US 3236412416,3236412671,CA 3236412672,3236413695,US 3236413696,3236413951,AU 3236413952,3236416255,US 3236416256,3236416511,AU 3236416512,3236418303,US 3236418304,3236418815,AU 3236418816,3236419583,US 3236419584,3236419839,AU 3236419840,3236420095,US 3236420096,3236420351,AU 3236420352,3236424959,US 3236424960,3236425215,MU 3236425216,3236427519,US 3236427520,3236427775,CA 3236427776,3236428031,AU 3236428032,3236429311,US 3236429312,3236429567,MU 3236429568,3236438015,US 3236446208,3236462591,US 3236462592,3236470783,AU 3236470784,3236560895,US 3236560896,3236561151,CA 3236561152,3236566783,US 3236566784,3236567039,CA 3236567040,3236575743,US 3236575744,3236575999,AU 3236576000,3236585983,US 3236585984,3236586239,CA 3236586240,3236604671,US 3236604672,3236604927,CA 3236604928,3236610047,US 3236610560,3236611071,US 3236611072,3236612095,CA 3236612096,3236613119,US 3236613120,3236613375,CA 3236613376,3236617983,US 3236617984,3236619775,CA 3236619776,3236620031,US 3236620032,3236620287,AU 3236620288,3236623615,US 3236623616,3236623871,AU 3236623872,3236625919,US 3236625920,3236626175,CA 3236626176,3236638719,US 3236638720,3236642815,BB 3236642816,3236659199,US 3236659200,3236691967,CA 3236691968,3236695039,US 3236695040,3236696063,CA 3236696064,3236757503,US 3236757504,3236765695,CA 3236765696,3236774911,US 3236774912,3236775423,HK 3236775424,3236775679,NL 3236775680,3236776191,CA 3236776192,3236776447,DE 3236776448,3236776959,US 3236776960,3236777215,CA 3236777216,3236778239,US 3236778240,3236778751,GB 3236778752,3236780287,US 3236780288,3236780543,FR 3236780544,3236780799,CH 3236780800,3236781823,US 3236781824,3236782335,ES 3236782336,3236784383,US 3236784384,3236784895,IT 3236784896,3236785663,US 3236785664,3236785919,DE 3236785920,3236786175,ZA 3236786176,3236786431,US 3236786432,3236786687,FR 3236786688,3236787199,CA 3236787200,3236787967,US 3236787968,3236788223,JP 3236788224,3236788479,US 3236788480,3236789503,GB 3236789504,3236823295,US 3236823296,3236825855,CH 3236825856,3236827135,CA 3236827136,3236958207,US 3236958208,3236962303,AU 3236962304,3236995623,US 3236995624,3236995631,NL 3236995632,3237038079,US 3237038080,3237038335,CA 3237038336,3237043967,US 3237043968,3237044223,CH 3237044224,3237047039,US 3237047040,3237047295,FR 3237047296,3237050111,US 3237050112,3237050367,GB 3237050368,3237051903,US 3237051904,3237052159,TR 3237052160,3237052287,CA 3237052288,3237125295,US 3237125296,3237125311,CR 3237125312,3237154815,US 3237154816,3237155839,ES 3237155840,3237156863,AU 3237156864,3237182463,US 3237182464,3237183487,NL 3237183488,3237205503,US 3237205504,3237206015,CA 3237206016,3237216255,US 3237216256,3237281791,JP 3237281792,3237284607,US 3237284608,3237284863,AU 3237284864,3237285119,US 3237285120,3237285631,AU 3237285632,3237287935,US 3237287936,3237288191,CA 3237288192,3237289471,US 3237289472,3237289727,BR 3237289728,3237290495,US 3237291008,3237291263,NZ 3237291264,3237294847,US 3237294848,3237295103,CA 3237295104,3237296639,US 3237296640,3237297151,AU 3237297152,3237297407,CL 3237297408,3237300479,US 3237302528,3237305087,US 3237305088,3237305343,CA 3237305344,3237305855,US 3237305856,3237306111,AU 3237306112,3237308671,US 3237308672,3237310719,AU 3237310720,3237312767,US 3237312768,3237313023,BO 3237313024,3237319679,US 3237319680,3237319935,MU 3237319936,3237320703,US 3237320704,3237320959,UA 3237320960,3237321471,US 3237321472,3237321727,AU 3237321728,3237322751,US 3237322752,3237323263,CA 3237323264,3237325055,US 3237325056,3237325311,NL 3237325312,3237325823,US 3237325824,3237326079,CA 3237326080,3237328639,US 3237328640,3237328895,CA 3237328896,3237329151,US 3237329152,3237329407,NZ 3237329664,3237330943,US 3237330944,3237331199,AU 3237331200,3237331711,US 3237331968,3237332223,AU 3237332224,3237335039,US 3237335040,3237335295,AU 3237335296,3237335551,US 3237335552,3237337599,AU 3237337600,3237337855,US 3237337856,3237338367,AU 3237338368,3237339391,US 3237339392,3237339647,NL 3237339648,3237340159,US 3237340160,3237340415,CA 3237340416,3237345535,US 3237345536,3237346303,KR 3237346304,3237366015,US 3237366016,3237366271,AU 3237366272,3237412863,US 3237412864,3237413119,CA 3237413120,3237415679,GB 3237415680,3237415935,US 3237415936,3237416959,CA 3237416960,3237478399,US 3237478400,3237511167,LK 3237511168,3237548031,US 3237548032,3237552127,KR 3237552128,3237553151,US 3237553152,3237553407,GB 3237553408,3237554431,US 3237554432,3237554434,SG 3237554435,3237554435,US 3237554436,3237554463,SG 3237554464,3237568511,US 3237568512,3237572607,CA 3237572608,3237576703,US 3237576704,3237609471,CA 3237609472,3237613567,US 3237613568,3237614591,CA 3237614592,3237615615,US 3237615616,3237616895,CA 3237616896,3237647103,US 3237647104,3237647359,AU 3237647360,3237655039,US 3237655040,3237655551,IN 3237655552,3237675007,US 3237675008,3237675263,CA 3237675264,3237681663,US 3237681664,3237682943,CA 3237682944,3237684991,US 3237684992,3237685247,CL 3237685248,3237688319,US 3237688320,3237689343,CA 3237689344,3237690623,US 3237690624,3237691903,SA 3237691904,3237698303,US 3237698304,3237698559,CA 3237698560,3237712895,US 3237712896,3237713151,AU 3237713152,3237716991,US 3237716992,3237717247,CA 3237717248,3237717503,US 3237717504,3237717759,CA 3237717760,3237724927,US 3237724928,3237725183,AU 3237725184,3237725439,CA 3237725440,3237725695,US 3237725696,3237726207,CA 3237726208,3237726463,US 3237726464,3237726719,AU 3237726720,3237726975,GH 3237726976,3237727231,US 3237727232,3237728255,AU 3237728256,3237732863,US 3237732864,3237733119,NL 3237734144,3237734399,CA 3237734400,3237773311,US 3237773312,3237777407,CA 3237777408,3237781503,US 3237781504,3237785599,CA 3237785600,3237797887,US 3237797888,3237801983,CA 3237801984,3237858303,US 3237858304,3237863423,CA 3237863424,3237867519,US 3237867520,3237867775,HK 3237867776,3237868031,GB 3237868032,3237868159,US 3237868160,3237868287,AU 3237868288,3237869311,US 3237869312,3237869439,KR 3237869440,3237869567,JP 3237869568,3237869823,AU 3237869824,3237869951,PH 3237869952,3237870079,VN 3237870080,3237870335,IS 3237870336,3237870591,SG 3237870592,3237870847,DE 3237870848,3237870975,KR 3237870976,3237871103,JP 3237871104,3237871231,TH 3237871232,3237871359,TW 3237871360,3237871487,SG 3237871488,3237871615,MY 3237871616,3237896191,US 3237896192,3237900287,PR 3237900288,3237957631,US 3237957632,3237957887,VE 3237957888,3237958143,AG 3237958144,3237958399,PE 3237958400,3237958655,BS 3237958656,3237958911,PY 3237958912,3237959167,JM 3237959168,3237959423,GY 3237959424,3237959679,NI 3237959680,3237959935,EC 3237959936,3237960191,BB 3237960192,3237960447,SR 3237960448,3237960703,BZ 3237960704,3237960959,BO 3237960960,3237961215,DM 3237961216,3237961471,SV 3237961472,3237961727,HT 3237961728,3238002687,US 3238002688,3238008831,NL 3238008832,3238010879,RO 3238010880,3238017023,CH 3238017024,3238018303,DK 3238018304,3238018559,UA 3238018560,3238018815,FR 3238018816,3238019071,DE 3238019072,3238035711,PL 3238035712,3238037503,RU 3238037504,3238039039,LV 3238039040,3238039551,UA 3238039552,3238039807,PL 3238039808,3238040063,RU 3238040576,3238042623,RU 3238042624,3238042879,IR 3238042880,3238043135,IT 3238043136,3238043647,GB 3238043648,3238043903,NL 3238043904,3238044159,DK 3238044160,3238044671,KZ 3238044672,3238045183,FI 3238045184,3238047743,RU 3238047744,3238048255,GB 3238048256,3238048767,RU 3238048768,3238049791,CH 3238049792,3238050303,RU 3238050304,3238050815,DE 3238050816,3238051071,AT 3238051072,3238051327,GB 3238051328,3238051583,RO 3238051584,3238051839,GB 3238051840,3238053375,PL 3238053376,3238053631,RU 3238053632,3238053887,DE 3238053888,3238054911,RU 3238054912,3238055935,UA 3238055936,3238056959,PL 3238057216,3238057471,BG 3238057472,3238057983,RU 3238057984,3238059519,UA 3238059520,3238059775,NO 3238059776,3238060031,UA 3238060032,3238060287,CH 3238060288,3238060543,RO 3238060544,3238060799,HU 3238061056,3238061311,UA 3238061824,3238062079,CZ 3238062080,3238062591,CH 3238063104,3238063359,PL 3238063360,3238063615,CH 3238063616,3238063871,DE 3238064128,3238064383,UA 3238064384,3238064639,ES 3238064640,3238064895,PL 3238064896,3238065151,DK 3238065152,3238065407,SI 3238065664,3238065919,DE 3238065920,3238066175,UA 3238066176,3238066431,DE 3238066432,3238066687,GB 3238066688,3238066943,DE 3238066944,3238067199,LT 3238067200,3238067455,NO 3238067456,3238067711,SE 3238067712,3238067967,AT 3238067968,3238068223,GB 3238068224,3238133759,IE 3238133760,3238199295,SI 3238199296,3238264831,DK 3238264832,3238330367,IS 3238330368,3238337023,CH 3238337024,3238337535,LI 3238337536,3238395903,CH 3238395904,3238461439,HU 3238461440,3238502399,DE 3238502400,3238504447,RU 3238504448,3238510591,DE 3238518784,3238526975,DE 3238526976,3238527231,RU 3238529024,3238530047,CH 3238531072,3238535167,CH 3238535168,3238536191,SE 3238536192,3238537215,DK 3238537216,3238538495,CH 3238538496,3238538751,PL 3238538752,3238539263,UA 3238539264,3238541567,CH 3238541568,3238541823,PL 3238541824,3238542591,CH 3238542592,3238542847,PL 3238543360,3238545407,CH 3238545920,3238546431,RU 3238546432,3238546943,CH 3238546944,3238547455,UA 3238548992,3238549503,CZ 3238549504,3238550527,CH 3238551296,3238557695,CH 3238559232,3238559487,SE 3238559744,3238562303,CH 3238562560,3238562815,IR 3238562816,3238569983,CH 3238570496,3238570751,CH 3238571520,3238571775,CH 3238572032,3238573567,CH 3238573568,3238574079,PL 3238575104,3238575615,DE 3238575616,3238576127,CH 3238576384,3238576639,CH 3238577152,3238578431,CH 3238578432,3238578687,UA 3238578944,3238579199,RU 3238579200,3238579455,CH 3238580224,3238588415,CH 3238589696,3238589951,CH 3238589952,3238590207,LT 3238590464,3238590719,CH 3238590976,3238591231,SA 3238591232,3238592511,CH 3238592512,3238594559,GB 3238594560,3238595583,BE 3238595584,3238595839,SI 3238595840,3238596351,GB 3238596608,3238596863,BG 3238596864,3238597119,RU 3238597120,3238597375,DE 3238597376,3238597631,SI 3238597632,3238597887,GB 3238597888,3238598143,SI 3238598144,3238598399,RU 3238598400,3238598655,NL 3238598656,3238598911,CH 3238598912,3238599167,PL 3238599168,3238599679,HU 3238599680,3238599935,US 3238608896,3238621183,SE 3238623232,3238623487,LV 3238623488,3238623743,PL 3238623744,3238623999,CH 3238624000,3238624255,PL 3238624256,3238625279,HU 3238625280,3238630399,LU 3238630400,3238631423,GR 3238631424,3238632959,GB 3238632960,3238633215,UA 3238633216,3238653951,DK 3238653952,3238655999,RU 3238656000,3238656255,GB 3238656256,3238656511,RU 3238656512,3238657023,UA 3238657024,3238657535,AT 3238657536,3238657791,GB 3238658048,3238802431,SE 3238802432,3238804479,NL 3238804480,3238806527,SE 3238806528,3238807551,NL 3238807552,3238821887,SE 3238821888,3238823935,HR 3238823936,3238832127,SE 3238832128,3238833151,NL 3238833152,3238838271,SE 3238838272,3238839295,NL 3238839296,3238847487,SE 3238847488,3238848511,NL 3238848512,3238860799,SE 3238860800,3238862847,HR 3238862848,3238865919,SE 3238865920,3238867967,NL 3238867968,3238887423,SE 3238887424,3238888447,NL 3238888448,3238893567,SE 3238893568,3238895615,NL 3238895616,3238897663,SE 3238897664,3238899711,NL 3238899712,3238901759,SE 3238901760,3238902783,NL 3238902784,3238903807,SE 3238903808,3238905855,HR 3238905856,3238909951,SE 3238909952,3238910975,NL 3238910976,3238911999,SE 3238912000,3238913023,NL 3238913024,3238914047,SE 3238914048,3238916095,HR 3238916096,3238917119,NL 3238917120,3238919167,SE 3238919168,3238920191,NL 3238920192,3238941695,SE 3238941696,3238942719,NL 3238942720,3238967295,SE 3238967296,3238969343,HR 3238969344,3238975487,SE 3238975488,3238977535,HR 3238977536,3238981631,SE 3238981632,3238983679,HR 3238983680,3238986751,SE 3238986752,3238987775,NL 3238987776,3238993919,SE 3238993920,3238995967,HR 3238995968,3239001087,SE 3239001088,3239002111,NL 3239002112,3239006207,SE 3239006208,3239007231,NL 3239007232,3239008255,SE 3239008256,3239009279,NL 3239009280,3239018495,SE 3239018496,3239020543,HR 3239020544,3239022591,SE 3239022592,3239024639,HR 3239024640,3239026687,SE 3239026688,3239028735,HR 3239028736,3239051263,SE 3239051264,3239053311,DE 3239055360,3239059455,DE 3239062272,3239062527,ES 3239062528,3239062783,CH 3239062784,3239063039,UA 3239063040,3239063295,HU 3239063296,3239063551,UA 3239063552,3239075839,DE 3239075840,3239076095,MT 3239076096,3239076351,DE 3239076352,3239076607,RU 3239076608,3239076863,PL 3239076864,3239077119,NL 3239077120,3239077375,UA 3239077376,3239077631,BG 3239077632,3239077887,PT 3239077888,3239078143,CZ 3239078144,3239078399,UA 3239078656,3239078911,PL 3239078912,3239079167,GB 3239079168,3239079423,SI 3239079680,3239079935,MD 3239079936,3239088127,DE 3239088640,3239088895,DK 3239088896,3239089151,IL 3239089152,3239089407,RO 3239089408,3239089919,GB 3239089920,3239090175,DE 3239090176,3239090431,SI 3239090432,3239090687,ES 3239090688,3239090943,NL 3239090944,3239091199,AT 3239091456,3239091711,BG 3239091712,3239091967,UA 3239091968,3239092223,FR 3239092224,3239104511,DE 3239104512,3239105279,RU 3239105280,3239105535,CH 3239105536,3239105791,DE 3239106048,3239106559,AT 3239106560,3239106815,ES 3239106816,3239107071,CH 3239107072,3239107327,RO 3239107328,3239107583,GR 3239107584,3239107839,CH 3239108096,3239109887,DE 3239109888,3239110143,PL 3239110144,3239110655,DE 3239110656,3239110911,RU 3239110912,3239111167,UA 3239111168,3239111423,NL 3239111424,3239111679,DE 3239111936,3239112191,AT 3239112192,3239112447,IL 3239112704,3239112959,PL 3239112960,3239113215,CH 3239113216,3239113471,AT 3239113472,3239113727,ES 3239113728,3239113983,AT 3239113984,3239114239,DE 3239114240,3239114495,BG 3239114496,3239114751,UA 3239114752,3239116543,DE 3239116544,3239116799,PL 3239116800,3239117055,PT 3239117056,3239117311,SI 3239117312,3239117567,DE 3239118848,3239119871,DE 3239119872,3239120127,GB 3239120128,3239120383,CZ 3239120384,3239120639,PL 3239120896,3239121663,DE 3239121664,3239121919,FR 3239122176,3239122687,DE 3239122944,3239123967,DE 3239127296,3239127551,PL 3239127552,3239127807,IL 3239127808,3239128063,RU 3239128064,3239128319,UA 3239128320,3239128575,IT 3239128576,3239128831,UA 3239128832,3239129087,CZ 3239129088,3239130111,DE 3239130112,3239130367,RU 3239130368,3239130623,JO 3239130624,3239130879,PL 3239132160,3239133183,DE 3239133440,3239133695,GB 3239133696,3239133951,ES 3239133952,3239134207,SE 3239134208,3239134463,IL 3239134464,3239134719,UA 3239134976,3239135231,PL 3239135232,3239135487,SE 3239135488,3239135743,FR 3239135744,3239135999,IL 3239136000,3239136255,UA 3239136256,3239136511,CH 3239136512,3239136767,DE 3239136768,3239137023,MD 3239137024,3239137279,LI 3239138304,3239138559,PL 3239138560,3239138815,CH 3239139328,3239141375,DE 3239141376,3239145471,US 3239145472,3239147519,DE 3239147520,3239149567,SG 3239149568,3239160319,GB 3239160320,3239160575,RU 3239160576,3239160831,DE 3239160832,3239161087,PL 3239161088,3239161343,BY 3239161344,3239161599,PL 3239161600,3239161855,HU 3239162368,3239162623,DE 3239163904,3239164159,PL 3239164160,3239164671,DE 3239164672,3239164927,GB 3239165952,3239166207,FR 3239166464,3239166719,CH 3239166720,3239166975,RO 3239166976,3239167231,FR 3239167232,3239167487,DE 3239167488,3239167743,FR 3239167744,3239167999,CH 3239168000,3239168255,PL 3239168256,3239168511,CH 3239168512,3239168767,SE 3239168768,3239169023,PL 3239169024,3239169535,DE 3239169536,3239169791,DK 3239169792,3239170047,SE 3239170048,3239170303,UA 3239170304,3239170559,FR 3239170560,3239170815,GB 3239170816,3239171071,SE 3239171072,3239171327,PL 3239171328,3239171583,UA 3239171584,3239171839,PL 3239172096,3239172607,UA 3239172608,3239172863,SE 3239172864,3239173119,DE 3239173376,3239173631,DE 3239173632,3239173887,AT 3239173888,3239174143,PL 3239174400,3239174655,RO 3239174656,3239174911,GB 3239174912,3239175167,SI 3239175424,3239175679,BG 3239175680,3239175935,DE 3239176192,3239180287,DE 3239180288,3239181311,CZ 3239181312,3239181567,AT 3239181824,3239182079,DE 3239182336,3239205887,DE 3239205888,3239206143,US 3239206144,3239264255,DE 3239264256,3239264767,NO 3239264768,3239266303,RU 3239266816,3239267327,UA 3239267328,3239267839,FR 3239267840,3239268351,DE 3239268352,3239268863,SE 3239268864,3239269375,RU 3239269376,3239270399,UA 3239270400,3239270911,GB 3239270912,3239271423,SA 3239271424,3239271935,AT 3239271936,3239272447,CH 3239272960,3239273471,GB 3239273472,3239273983,UA 3239273984,3239274495,RU 3239274496,3239275007,PL 3239275520,3239276543,UA 3239276544,3239277055,LU 3239277056,3239277567,DE 3239277568,3239279103,RU 3239279104,3239280127,PL 3239280128,3239280639,RU 3239281664,3239282687,RU 3239282688,3239283711,FI 3239283712,3239284735,PL 3239284736,3239285247,IR 3239285248,3239285503,SE 3239285504,3239285759,BG 3239286784,3239287807,UA 3239287808,3239288831,GB 3239288832,3239289855,DE 3239289856,3239290879,PL 3239290880,3239291903,RU 3239291904,3239292927,BG 3239292928,3239293951,CZ 3239293952,3239294975,DE 3239294976,3239295999,UA 3239296000,3239297023,GB 3239297024,3239298047,RO 3239298048,3239299071,GB 3239301120,3239302143,FR 3239302144,3239303167,PL 3239303168,3239304191,FR 3239304192,3239305215,HR 3239305216,3239306239,NL 3239306240,3239307263,UA 3239307264,3239308287,EG 3239308288,3239309311,DE 3239309312,3239311359,UA 3239312384,3239313407,UA 3239313408,3239445759,DE 3239445760,3239446015,PL 3239446016,3239446271,RU 3239446272,3239446527,FR 3239446528,3239447551,DE 3239448576,3239449599,DE 3239451648,3239451903,PL 3239451904,3239452159,DE 3239452160,3239452415,CY 3239452416,3239452671,HR 3239452672,3239464959,DE 3239465216,3239465471,PL 3239465472,3239465727,AT 3239465728,3239465983,PL 3239465984,3239466239,UA 3239466240,3239466495,AT 3239466752,3239467007,GB 3239467008,3239467263,RU 3239467264,3239467519,GB 3239467520,3239467775,IT 3239467776,3239468031,PL 3239468032,3239468287,FR 3239468288,3239468543,RO 3239468544,3239468799,NO 3239468800,3239469055,RO 3239470080,3239470591,DE 3239470592,3239470847,CH 3239470848,3239471103,BG 3239471872,3239472127,FR 3239472128,3239474943,DE 3239474944,3239475199,ES 3239475200,3239477247,DE 3239480320,3239480575,UA 3239480832,3239481087,CH 3239481088,3239481343,FR 3239485440,3239486719,DE 3239486720,3239486975,ES 3239486976,3239487487,DE 3239487744,3239487999,PL 3239488256,3239488511,CH 3239488512,3239488767,KW 3239488768,3239489023,RO 3239489024,3239489279,DE 3239489280,3239489535,PL 3239489536,3239501823,DE 3239506432,3239506687,RU 3239506688,3239506943,GB 3239507200,3239507455,GB 3239507968,3239508223,BG 3239508224,3239508479,SA 3239508480,3239508735,NO 3239508736,3239508991,DE 3239508992,3239509247,PL 3239509248,3239509503,DE 3239509504,3239509759,CH 3239509760,3239514111,DE 3239518208,3239521791,DE 3239522304,3239522559,PL 3239522560,3239522815,SI 3239523072,3239523327,PL 3239523328,3239523583,BG 3239523584,3239523839,UA 3239523840,3239524095,PL 3239524352,3239524607,DE 3239524608,3239524863,SE 3239524864,3239525119,UA 3239525120,3239525375,LT 3239525632,3239525887,PL 3239525888,3239526143,SI 3239526144,3239526399,PL 3239526400,3239538687,DE 3239538688,3239539199,NL 3239539200,3239539455,IT 3239539456,3239539711,BE 3239539712,3239539967,GB 3239539968,3239540223,SE 3239540480,3239540735,DE 3239540736,3239540991,GB 3239540992,3239541247,FR 3239541248,3239541503,UA 3239541504,3239541759,FR 3239541760,3239542015,GB 3239543808,3239544831,DE 3239544832,3239545087,GB 3239545088,3239545343,SI 3239545344,3239545855,HU 3239545856,3239546111,UA 3239546112,3239546367,GB 3239546368,3239546623,RU 3239546624,3239546879,NL 3239547904,3239549951,DE 3239549952,3239550207,TR 3239550208,3239550463,UA 3239550464,3239550719,FR 3239550720,3239550975,NO 3239550976,3239554047,DE 3239554048,3239554303,SE 3239554560,3239554815,PL 3239554816,3239555071,UA 3239556096,3239556351,SA 3239556352,3239556607,UA 3239556608,3239556863,HR 3239556864,3239557119,UA 3239557120,3239565055,DE 3239565056,3239565311,US 3239565312,3239567359,DE 3239567360,3239567615,GB 3239567616,3239567871,UA 3239567872,3239568127,DE 3239568128,3239568383,FR 3239568384,3239568639,SE 3239568640,3239568895,NO 3239568896,3239573759,DE 3239574272,3239574783,DE 3239575040,3239575295,DE 3239575296,3239575551,DK 3239575552,3239577599,DE 3239578624,3239578879,DE 3239579136,3239579391,PL 3239579392,3239581695,DE 3239581696,3239581951,PL 3239581952,3239582207,UA 3239582208,3239582463,GB 3239582464,3239582719,DE 3239582720,3239582975,GB 3239582976,3239583231,IT 3239583232,3239583487,UA 3239583744,3239585791,DE 3239587840,3239591935,DE 3239591936,3239592447,FI 3239592448,3239592703,US 3239592704,3239593983,FI 3239593984,3239624703,DE 3239624704,3239625727,CH 3239625728,3239626751,RU 3239626752,3239628799,PL 3239628800,3239629823,DE 3239630848,3239631871,DE 3239631872,3239632895,UA 3239632896,3239636991,DE 3239636992,3239638015,BG 3239638016,3239639039,PL 3239639040,3239639551,SI 3239639552,3239639807,CZ 3239639808,3239640063,SI 3239640064,3239641087,DE 3239641088,3239643135,PL 3239643136,3239645183,RU 3239645184,3239653375,DE 3239653376,3239657471,NL 3239657472,3239665663,DE 3239666176,3239666687,AT 3239666688,3239667199,DE 3239667200,3239667711,CH 3239667712,3239670271,RO 3239670272,3239670783,DE 3239670784,3239671295,GB 3239671296,3239671807,DE 3239671808,3239672319,UA 3239672832,3239673343,TR 3239673344,3239673855,SE 3239673856,3239682047,DE 3239682048,3239682559,PL 3239682560,3239683071,BG 3239683072,3239683583,PT 3239683584,3239684095,PL 3239684608,3239686143,DE 3239686144,3239686655,UA 3239686656,3239687167,IT 3239687168,3239687679,UA 3239687680,3239688191,DE 3239688192,3239688703,PL 3239688704,3239689215,GB 3239689728,3239690239,RU 3239690240,3239690495,ES 3239690496,3239690751,PL 3239691008,3239691263,FR 3239691520,3239691775,FR 3239691822,3239691822,GB 3239692032,3239692287,AT 3239692288,3239696383,DE 3239697408,3239697663,HR 3239697664,3239697919,RU 3239697920,3239698175,PL 3239698432,3239704575,DE 3239706112,3239706367,DE 3239706880,3239707135,NL 3239707392,3239707647,UA 3239707648,3239707903,GB 3239707904,3239708159,DE 3239708160,3239708415,SE 3239708416,3239708671,RO 3239708672,3239708927,AT 3239708928,3239709183,NL 3239709184,3239709439,RO 3239709440,3239709695,FR 3239709952,3239710207,UA 3239710464,3239710719,DE 3239710720,3239710975,RU 3239710976,3239711231,SE 3239711232,3239711487,BY 3239711488,3239711743,RU 3239711744,3239711999,UA 3239712512,3239712767,GB 3239712768,3239713023,DE 3239713024,3239713279,PL 3239713280,3239713535,SI 3239713536,3239713791,UA 3239713792,3239714047,DE 3239714048,3239714303,FR 3239714304,3239714559,SE 3239714560,3239714815,HU 3239714816,3239723007,DE 3239723008,3239731199,GB 3239731200,3239735295,DE 3239737344,3239739391,DE 3239739392,3239739647,IT 3239739648,3239739903,RO 3239739904,3239740159,CH 3239740160,3239740415,PL 3239740416,3239740671,DK 3239740928,3239741183,UA 3239741184,3239741439,RU 3239741440,3239744511,DE 3239747584,3239759871,DE 3239760128,3239760383,UA 3239761408,3239761663,RU 3239761920,3239762175,BG 3239762176,3239762431,RU 3239762432,3239762687,DK 3239762944,3239763199,SI 3239763200,3239763455,SE 3239763456,3239763711,GB 3239763968,3239772159,DE 3239772160,3239772415,NL 3239772416,3239772671,IE 3239772672,3239773183,DK 3239773184,3239773439,FR 3239773440,3239773951,PL 3239773952,3239774207,SA 3239774464,3239774719,ES 3239774976,3239775231,PT 3239776768,3239777023,DE 3239777280,3239777535,DE 3239777792,3239778047,DE 3239782400,3239782655,AT 3239782656,3239782911,RU 3239782912,3239783167,GB 3239783168,3239783423,CH 3239783424,3239783679,DK 3239783936,3239784191,DE 3239784192,3239784447,ES 3239784448,3239788543,DE 3239788544,3239788607,GB 3239789056,3239789567,DE 3239789568,3239790079,FR 3239790080,3239790591,RO 3239790592,3239791103,NL 3239791104,3239791615,CH 3239792128,3239792639,FR 3239792640,3239793151,UA 3239793152,3239793663,PL 3239793664,3239794175,RO 3239794176,3239794687,NL 3239794688,3239795199,GB 3239795200,3239795711,PL 3239795712,3239796223,IL 3239796224,3239796735,NO 3239796736,3239821311,DE 3239821312,3239821823,SE 3239821824,3239822335,FR 3239822336,3239822847,UA 3239822848,3239823359,PL 3239823360,3239823871,SE 3239823872,3239824383,IT 3239824384,3239824895,PL 3239824896,3239825407,UZ 3239825408,3239825919,UA 3239825920,3239826431,PL 3239826432,3239826943,GB 3239826944,3239827455,RU 3239827456,3239827967,DK 3239827968,3239828479,CH 3239828480,3239828991,DE 3239828992,3239829503,RU 3239830016,3239830527,CH 3239831040,3239831551,RU 3239832576,3239834111,RU 3239834112,3239834623,UA 3239834624,3239835135,AT 3239836160,3239836671,DK 3239836672,3239837183,DE 3239837184,3239837695,SE 3239837696,3239837951,PL 3239838976,3239839231,DE 3239839232,3239839487,RU 3239839744,3239839999,SK 3239840000,3239840511,SA 3239840512,3239840767,DE 3239840768,3239841023,AT 3239841024,3239841279,NL 3239841536,3239846911,DE 3239847936,3239848447,DE 3239848448,3239848703,CH 3239848960,3239849215,RU 3239849216,3239849471,GB 3239849472,3239849727,RU 3239849728,3239849983,NL 3239849984,3239850751,DE 3239851008,3239859199,DE 3239859200,3239859455,PL 3239859456,3239859711,UA 3239859712,3239859967,HU 3239859968,3239860223,CA 3239860224,3239860479,DE 3239860480,3239860735,FI 3239860736,3239861247,DE 3239861248,3239861503,UA 3239861760,3239862015,SA 3239862016,3239862271,IT 3239862272,3239874559,DE 3239874816,3239875071,DE 3239875072,3239875327,SI 3239875328,3239875583,DK 3239875840,3239876095,DK 3239876096,3239876351,DE 3239876352,3239876607,RO 3239876608,3239876863,NL 3239876864,3239877119,DE 3239877120,3239877375,GB 3239877376,3239877631,IL 3239877632,3239877887,UA 3239877888,3239878143,IT 3239878144,3239878399,PL 3239878400,3239878655,SE 3239878656,3239882751,DE 3239882752,3239883007,GB 3239883008,3239883263,UA 3239883264,3239883519,GB 3239883520,3239883775,CZ 3239883776,3239884031,DE 3239884032,3239884287,RU 3239884544,3239884799,FR 3239884800,3239885055,UA 3239885056,3239885311,CH 3239885312,3239885567,UA 3239885568,3239885823,PL 3239885824,3239886079,CH 3239886080,3239886335,PL 3239886336,3239886591,RU 3239886848,3239888895,DE 3239888896,3239889151,UA 3239889152,3239889407,GB 3239889664,3239889919,FI 3239889920,3239890175,AT 3239890176,3239890431,FR 3239890432,3239890687,NL 3239890688,3239894015,DE 3239895040,3239895295,DK 3239895296,3239895551,TR 3239895552,3239895807,PL 3239895808,3239896063,DK 3239896064,3239896575,DE 3239896576,3239896831,PL 3239896832,3239897087,HU 3239897088,3239897343,GB 3239897344,3239897599,FR 3239897600,3239897855,RU 3239897856,3239898111,FR 3239898112,3239898367,NO 3239898624,3239898879,DE 3239898880,3239899135,RU 3239899136,3239901695,DE 3239901696,3239901951,BG 3239901952,3239902207,DE 3239902720,3239902975,EE 3239903232,3239904255,DE 3239904512,3239904767,DE 3239905536,3239905791,DE 3239907328,3239907583,UA 3239908096,3239908351,RU 3239908864,3239910399,DE 3239912960,3239913215,DE 3239913216,3239913471,LT 3239914240,3239914495,DE 3239915520,3239915775,PL 3239915776,3239916031,HU 3239916032,3239916287,SA 3239916288,3239916543,PL 3239916544,3239916799,FR 3239916800,3239917055,KZ 3239917056,3239917311,DE 3239917312,3239917567,BG 3239919616,3239927807,DE 3239931904,3239938815,DE 3239938816,3239939071,NL 3239939072,3239948543,DE 3239950848,3239951103,DE 3239951104,3239951359,AT 3239951360,3239951615,DE 3239952384,3239954431,DE 3239954432,3239954687,UA 3239954688,3239954943,DK 3239954944,3239955199,ES 3239955200,3239955711,UA 3239955712,3239955967,PL 3239955968,3239956223,CZ 3239956224,3239956479,PL 3239956480,3239959551,DE 3239959552,3239959807,UA 3239959808,3239960063,BE 3239960064,3239960319,FR 3239960320,3239960575,GB 3239961088,3239962111,DE 3239962624,3239966719,DE 3239967232,3239967487,DE 3239967744,3239968255,DE 3239968512,3239968767,PL 3239968768,3239969023,NO 3239969536,3239970047,DE 3239972864,3239974911,DE 3239974912,3239975935,GB 3239975936,3239976191,RO 3239976192,3239976447,DE 3239976448,3239976959,NL 3239977984,3239978751,DE 3239978752,3239979007,RU 3239979264,3239979519,GB 3239979520,3239979775,DE 3239980032,3239993343,DE 3239995392,3239996415,DE 3239996416,3239996671,GB 3239996928,3239997183,BE 3239997184,3239997439,GB 3239997440,3240004863,DE 3240004864,3240005119,FR 3240005120,3240005375,SE 3240005376,3240005631,NL 3240005632,3240009727,DE 3240009728,3240009983,PL 3240009984,3240010239,IL 3240010496,3240010751,AT 3240010752,3240011007,HU 3240011520,3240011775,CH 3240011776,3240026111,DE 3240026112,3240027135,FR 3240027136,3240028159,BG 3240028160,3240029183,GB 3240029184,3240030207,RU 3240030208,3240032255,UA 3240032256,3240033279,RS 3240033280,3240033535,GB 3240033536,3240033791,UA 3240033792,3240034303,GB 3240034304,3240034559,RU 3240034560,3240035327,DE 3240036096,3240037375,DE 3240037888,3240038143,AT 3240038912,3240039423,DE 3240049664,3240050687,DE 3240054784,3240058879,DE 3240067072,3240083455,DE 3240083456,3240085503,RU 3240085504,3240087551,KZ 3240087552,3240097791,DE 3240098816,3240099327,CH 3240100608,3240100863,GB 3240101376,3240101887,GB 3240102144,3240102399,GB 3240102912,3240103935,UA 3240104192,3240104703,GB 3240104704,3240104959,NL 3240104960,3240105215,RU 3240105216,3240105471,UA 3240105472,3240105727,GB 3240105984,3240107007,GB 3240107520,3240109055,GB 3240109056,3240109567,PL 3240109568,3240112639,GB 3240112640,3240112895,PL 3240112896,3240113151,AT 3240113152,3240113407,LV 3240113408,3240113663,TR 3240113664,3240113919,RU 3240113920,3240114175,TR 3240114176,3240114431,CZ 3240114432,3240114687,UA 3240114688,3240114943,RO 3240114944,3240115199,PL 3240115200,3240116223,RU 3240116224,3240116479,DE 3240116480,3240116735,DK 3240116736,3240117247,GB 3240117248,3240117260,RU 3240117261,3240117261,UA 3240117262,3240118271,RU 3240118272,3240120319,ES 3240120320,3240120831,IR 3240120832,3240121343,GB 3240122368,3240123391,GB 3240125440,3240125695,RO 3240125696,3240125951,GB 3240126208,3240132607,GB 3240163328,3240165375,GB 3240165376,3240165887,PL 3240165888,3240166399,ES 3240166400,3240166911,PL 3240167424,3240167935,PL 3240167936,3240168447,RU 3240168448,3240168959,FR 3240168960,3240169471,CZ 3240169472,3240169983,IL 3240169984,3240170495,IT 3240170496,3240171007,DE 3240171008,3240171519,CZ 3240171520,3240172031,RO 3240172032,3240173055,RU 3240173056,3240173567,CH 3240173568,3240174079,RO 3240174080,3240174591,PL 3240174592,3240175103,FR 3240175104,3240175615,RU 3240176128,3240176639,PL 3240176640,3240177151,UA 3240177152,3240177663,FR 3240177664,3240178175,UA 3240178176,3240178687,NL 3240178688,3240179199,BE 3240179200,3240179711,UA 3240179712,3240180223,FR 3240180224,3240180735,PL 3240180736,3240181247,NL 3240181248,3240181759,RU 3240181760,3240182271,UA 3240182784,3240183295,RU 3240183296,3240183807,NL 3240183808,3240184319,GB 3240184320,3240184831,RU 3240184832,3240185343,GB 3240185344,3240185855,FR 3240185856,3240187391,RU 3240187904,3240188415,RU 3240188416,3240188927,RO 3240188928,3240189439,MD 3240189440,3240189951,RO 3240189952,3240190463,DE 3240190464,3240190975,IT 3240190976,3240191487,RU 3240191488,3240191999,AE 3240192000,3240192511,UA 3240193024,3240193535,GB 3240193536,3240194047,PL 3240194560,3240195071,AT 3240195072,3240195583,GB 3240195584,3240196095,RO 3240196096,3240197119,RU 3240197120,3240197631,PL 3240197632,3240198143,CZ 3240198144,3240198655,CH 3240199168,3240199679,RU 3240199680,3240200191,NL 3240200704,3240201215,GB 3240201728,3240202239,CH 3240202240,3240202751,RU 3240202752,3240203263,GB 3240203264,3240203775,DK 3240203776,3240204287,AT 3240204288,3240204799,SE 3240204800,3240205311,RO 3240205312,3240205823,GB 3240205824,3240206335,DE 3240206336,3240206847,RU 3240207872,3240208127,RU 3240208128,3240208895,FR 3240208896,3240209407,GB 3240209408,3240209919,AE 3240209920,3240210943,PL 3240210944,3240211455,GB 3240211456,3240211967,NL 3240211968,3240212479,BE 3240212480,3240212991,RU 3240212992,3240213503,GB 3240213504,3240214015,SE 3240214016,3240214527,DK 3240214528,3240215551,RU 3240215552,3240216063,UA 3240216064,3240216575,GB 3240216576,3240217087,RO 3240217088,3240217599,UA 3240218112,3240218623,UA 3240218624,3240219135,NL 3240219136,3240219647,AT 3240219648,3240220159,UA 3240220160,3240220671,NL 3240220672,3240221183,AT 3240221184,3240221695,SE 3240221696,3240222207,NL 3240222208,3240222719,FR 3240222720,3240223231,KW 3240223232,3240223743,RU 3240223744,3240224255,MT 3240224256,3240225279,RU 3240225280,3240225791,IL 3240225792,3240226303,UA 3240226304,3240226815,CH 3240226816,3240227327,RU 3240227840,3240228351,GB 3240228352,3240228863,SE 3240228864,3240229375,GB 3240229376,3240229887,RO 3240230400,3240230911,GB 3240230912,3240231935,PL 3240231936,3240232959,NL 3240232960,3240235007,RU 3240235008,3240236031,FR 3240236032,3240237055,UA 3240237056,3240239103,DE 3240239104,3240240127,FR 3240240128,3240241151,US 3240241152,3240242175,FI 3240242176,3240243199,PL 3240243200,3240243711,GB 3240243712,3240244223,DE 3240244224,3240245247,PL 3240245248,3240246271,IL 3240246272,3240247295,UA 3240247296,3240248319,RS 3240248320,3240249343,DE 3240249344,3240250367,UA 3240251392,3240252415,IE 3240252416,3240253439,LT 3240253440,3240254463,BE 3240254464,3240256511,UA 3240256512,3240257535,DE 3240257536,3240258559,FO 3240258560,3240259583,RO 3240259584,3240260607,PL 3240260608,3240262655,DE 3240262656,3240263679,RU 3240263680,3240264191,UA 3240264192,3240264703,FR 3240264704,3240265215,TR 3240265216,3240265727,HU 3240265728,3240266239,CH 3240266240,3240266751,PL 3240266752,3240267263,UA 3240267264,3240267775,RS 3240267776,3240268287,DE 3240268288,3240269311,GB 3240269312,3240269823,NL 3240269824,3240270335,SE 3240270336,3240270847,UA 3240270848,3240271359,RO 3240271360,3240271871,PL 3240271872,3240272383,RU 3240272384,3240272895,PL 3240272896,3240273407,RU 3240273408,3240273919,NL 3240273920,3240274431,UA 3240274432,3240274943,GB 3240274944,3240275455,UA 3240275456,3240275967,RO 3240275968,3240276479,GR 3240276480,3240276991,PL 3240276992,3240278015,RO 3240278016,3240278527,RU 3240278528,3240279039,GB 3240279040,3240279551,CH 3240279552,3240280063,RU 3240280064,3240280191,DE 3240280192,3240280319,SE 3240280320,3240280447,PL 3240280832,3240280959,GB 3240280960,3240281215,PL 3240281344,3240281471,PL 3240281472,3240281599,FR 3240281600,3240281727,JO 3240281728,3240281855,PL 3240281856,3240281983,NL 3240281984,3240282111,NO 3240282112,3240282239,DE 3240282240,3240282367,UA 3240282368,3240282495,RO 3240282624,3240282879,SE 3240282880,3240283007,UA 3240283008,3240283391,PL 3240283392,3240283647,TR 3240283648,3240283903,AT 3240283904,3240284159,DE 3240284160,3240285183,RU 3240285184,3240286207,PL 3240286208,3240287231,UA 3240287232,3240288255,PL 3240288256,3240296447,GB 3240296448,3240296703,RO 3240298496,3240300031,GB 3240302848,3240303103,UA 3240304640,3240305663,RU 3240305664,3240305919,PL 3240306176,3240306687,RU 3240306688,3240306943,BG 3240306944,3240307199,PL 3240307200,3240307711,RU 3240307712,3240308223,ES 3240308224,3240308479,BG 3240308480,3240308735,PL 3240308736,3240309759,RU 3240309760,3240310783,NO 3240310784,3240311807,GB 3240311808,3240312063,PL 3240312064,3240312319,RU 3240312320,3240312575,IR 3240312576,3240312831,RU 3240312832,3240316927,GB 3240321024,3240321535,RU 3240321792,3240322047,PL 3240322048,3240322303,RU 3240322560,3240324095,CZ 3240324096,3240324351,RO 3240324352,3240324607,RU 3240324608,3240324863,PL 3240324864,3240325119,SI 3240325120,3240334335,GB 3240336640,3240347647,GB 3240351744,3240352255,GB 3240352768,3240353791,GB 3240355840,3240361983,GB 3240361984,3240362239,TR 3240362240,3240362495,DE 3240362496,3240362751,GB 3240363008,3240370175,GB 3240370176,3240370431,CH 3240370432,3240370687,DE 3240370688,3240370943,GB 3240370944,3240371199,RU 3240371200,3240371455,CH 3240371456,3240371711,RO 3240371712,3240371967,RU 3240371968,3240372223,TR 3240372224,3240372479,SI 3240372480,3240372991,RU 3240372992,3240373247,IE 3240373248,3240373503,RO 3240373504,3240373759,FR 3240373760,3240374015,DE 3240374016,3240374271,GB 3240378368,3240394751,GB 3240396032,3240396287,GB 3240396800,3240398847,GB 3240400896,3240407039,GB 3240407040,3240407295,IL 3240407296,3240407551,NL 3240407552,3240407807,NO 3240408576,3240408831,FR 3240408832,3240409087,PL 3240409088,3240409343,TR 3240409600,3240409855,NL 3240409856,3240410367,DE 3240410368,3240410623,AT 3240410624,3240410879,PT 3240410880,3240411135,NO 3240411136,3240419327,RO 3240419840,3240420095,AT 3240420608,3240420863,NL 3240420864,3240421119,GB 3240423424,3240435711,GB 3240436480,3240436735,GB 3240436736,3240437759,DE 3240443904,3240460287,GB 3240460288,3240461055,IL 3240461056,3240461567,DE 3240461568,3240461823,UA 3240461824,3240462079,RU 3240462080,3240462335,TR 3240462336,3240462591,RO 3240462592,3240462847,RU 3240462848,3240463103,RO 3240463104,3240463615,PL 3240463616,3240463871,UA 3240463872,3240464127,GB 3240464128,3240464383,SA 3240464384,3240464639,AT 3240464640,3240464895,FR 3240464896,3240465151,GB 3240465152,3240465407,CH 3240465408,3240465919,DE 3240465920,3240466175,FR 3240466176,3240466687,DE 3240466688,3240466943,PT 3240466944,3240467199,TR 3240467456,3240467711,UA 3240467712,3240467967,RU 3240467968,3240468223,DE 3240468224,3240468479,CH 3240468480,3240476671,GB 3240485120,3240485375,GB 3240485888,3240486399,GB 3240487936,3240488191,CH 3240488192,3240488447,GB 3240488448,3240488703,BG 3240488704,3240488959,NL 3240488960,3240491007,GB 3240493056,3240501247,SE 3240505344,3240505599,PL 3240505600,3240505855,GB 3240506368,3240506623,GB 3240507392,3240558591,GB 3240559616,3240560127,GB 3240560640,3240561663,GB 3240562688,3240575487,GB 3240575488,3240575743,RO 3240575744,3240575999,GB 3240576000,3240576255,DE 3240576256,3240576511,UA 3240576512,3240576767,FR 3240576768,3240577023,PL 3240577024,3240577279,UA 3240577280,3240577535,RO 3240577536,3240577791,DE 3240577792,3240578559,UA 3240578560,3240578815,RU 3240578816,3240579071,IL 3240579072,3240581119,GB 3240583168,3240587263,GB 3240587264,3240587519,NL 3240587520,3240587775,RU 3240587776,3240588031,UA 3240588032,3240588287,DE 3240588288,3240588543,RU 3240588544,3240588799,RO 3240588800,3240589055,UA 3240589056,3240589311,RO 3240589312,3240593407,SE 3240593408,3240593663,GB 3240594176,3240594431,DK 3240594432,3240594943,GB 3240595456,3240599551,GB 3240602624,3240605695,GB 3240609792,3240611839,DE 3240611840,3240613887,GB 3240615936,3240620031,GB 3240621824,3240622079,GB 3240622080,3240622591,RU 3240622848,3240623103,GB 3240624128,3240689663,EE 3240689664,3240690175,GB 3240690176,3240690687,TR 3240690688,3240691199,UA 3240691200,3240691711,IT 3240691712,3240692735,DE 3240692736,3240693247,DK 3240693248,3240693759,ES 3240693760,3240695807,BE 3240695808,3240697855,ES 3240698112,3240698367,LV 3240698624,3240699135,SI 3240699136,3240699391,DE 3240699904,3240700159,LT 3240700160,3240700415,AT 3240700416,3240700671,BE 3240700672,3240700927,ES 3240700928,3240701183,PL 3240701184,3240701439,LV 3240701440,3240701695,ES 3240701952,3240702975,UA 3240704000,3240705023,GR 3240705024,3240706047,UA 3240706048,3240707071,BG 3240707840,3240709119,FR 3240709120,3240710143,RU 3240710144,3240710399,UA 3240710400,3240710655,LT 3240710912,3240711167,FR 3240711168,3240711679,IT 3240711680,3240711935,RU 3240712192,3240712447,UA 3240712448,3240712703,SI 3240712704,3240712959,CH 3240713472,3240713727,RU 3240713728,3240713983,AT 3240713984,3240714239,FR 3240714240,3240716287,GB 3240716288,3240718335,CH 3240718336,3240718847,PL 3240719360,3240719871,DE 3240719872,3240720383,SE 3240720384,3240720895,DE 3240721408,3240721919,DE 3240721920,3240722431,RO 3240722432,3240723455,UA 3240723456,3240724479,DE 3240724480,3240724991,CH 3240724992,3240725503,AT 3240725504,3240726527,RU 3240726528,3240727039,DE 3240727040,3240727551,DZ 3240727552,3240728063,CH 3240728064,3240728575,GR 3240728576,3240729087,GB 3240729600,3240730111,DK 3240730112,3240730623,BE 3240730624,3240731647,ES 3240731648,3240732671,GB 3240732672,3240733695,SE 3240733696,3240734719,PL 3240734720,3240735743,IT 3240735744,3240736255,FR 3240736256,3240736767,BG 3240736768,3240737791,UA 3240737792,3240738815,BG 3240739072,3240739327,CH 3240739328,3240739583,FR 3240739584,3240739839,LV 3240739840,3240740095,DE 3240740096,3240740351,LT 3240740352,3240740607,IT 3240740864,3240741119,DE 3240741120,3240741375,AT 3240741376,3240741631,IL 3240741632,3240741887,RU 3240742144,3240742399,IT 3240742400,3240742655,RO 3240742656,3240742911,AT 3240742912,3240743423,IL 3240743424,3240743935,PL 3240744448,3240744959,SE 3240744960,3240745471,RO 3240745472,3240745983,UA 3240745984,3240746495,GB 3240746496,3240747007,FR 3240747008,3240747263,SE 3240747264,3240747519,TR 3240747776,3240748031,ES 3240748032,3240748287,AT 3240748288,3240748543,GR 3240748544,3240749055,PL 3240749056,3240749311,AT 3240749312,3240749567,BE 3240749568,3240749823,ES 3240749824,3240750335,IT 3240750592,3240750847,FR 3240750848,3240751103,UA 3240751104,3240752127,ES 3240752128,3240754175,RO 3240754176,3240755199,DE 3240755200,3240759295,IT 3240771584,3240779775,IT 3240788992,3240790015,IT 3240790528,3240791551,IT 3240791552,3240791807,RU 3240791808,3240792063,ES 3240792064,3240792319,GB 3240792320,3240792575,RU 3240792576,3240792831,CH 3240792832,3240793087,PL 3240793088,3240793343,UA 3240793600,3240794111,FR 3240794112,3240794367,GB 3240794368,3240794879,PL 3240794880,3240795135,DE 3240795136,3240795391,UA 3240795392,3240795647,RU 3240795648,3240795903,CH 3240795904,3240796159,SE 3240796160,3240808959,IT 3240809216,3240809471,PL 3240809472,3240809727,NL 3240809728,3240809983,FR 3240810240,3240810495,SE 3240810496,3240810751,TR 3240811008,3240811263,PL 3240811520,3240811775,SA 3240811776,3240812031,DE 3240812032,3240812287,HU 3240812288,3240812543,KW 3240813568,3240814591,PL 3240814592,3240816639,IT 3240818688,3240820735,NL 3240820736,3240820799,FR 3240820800,3240820831,CY 3240820832,3240820863,GB 3240820864,3240820991,PL 3240820992,3240822783,IT 3240823808,3240824319,PL 3240824576,3240825855,IT 3240826880,3240827135,IT 3240827136,3240827391,FR 3240827392,3240827647,BG 3240827648,3240827903,CH 3240828160,3240828415,DE 3240828928,3240837119,IT 3240839424,3240839679,IT 3240840192,3240840447,IT 3240840448,3240840703,PL 3240840704,3240840959,RU 3240841216,3240843263,IT 3240843264,3240843775,NL 3240843776,3240844031,PL 3240844288,3240844543,NL 3240844544,3240844799,CH 3240845056,3240845311,UA 3240845312,3240845823,IT 3240846592,3240846847,IT 3240846848,3240847359,VA 3240847360,3240848895,IT 3240849152,3240852735,IT 3240852736,3240852991,GB 3240853248,3240853503,RU 3240853504,3240854527,VA 3240854528,3240855039,IT 3240855552,3240857599,IT 3240857600,3240857855,PL 3240858624,3240858879,PL 3240859136,3240859391,NL 3240859392,3240859647,SE 3240859648,3240861183,CH 3240861184,3240861439,AT 3240861696,3240866815,IT 3240866816,3240867071,RU 3240867072,3240867327,PL 3240867328,3240867583,RU 3240867584,3240867839,CH 3240867840,3240873983,IT 3240873984,3240874495,RU 3240874496,3240875007,UA 3240875008,3240875519,AT 3240875520,3240876031,FR 3240876032,3240876543,DK 3240876544,3240877055,NL 3240877056,3240877567,DE 3240877568,3240879103,UA 3240879104,3240880127,PL 3240880128,3240881151,RU 3240882176,3240883199,PL 3240883200,3240884223,IL 3240884224,3240886271,UA 3240886272,3240954495,SE 3240954496,3240954623,DE 3240954624,3240955647,SE 3240955648,3240955903,GB 3240955904,3240961151,SE 3240961152,3240961279,GB 3240961280,3241017343,SE 3241017600,3241017855,AT 3241017856,3241018111,RU 3241018112,3241018367,FR 3241018368,3241022463,AT 3241027584,3241029119,AT 3241029120,3241029375,UA 3241029376,3241029631,PL 3241029632,3241031679,AT 3241032192,3241032703,AT 3241032704,3241032959,RU 3241032960,3241033215,GB 3241033216,3241033727,DE 3241033728,3241033983,IL 3241033984,3241034239,RU 3241034240,3241034495,UA 3241034752,3241035007,PL 3241035008,3241035263,DK 3241035264,3241035519,RO 3241035520,3241035775,SI 3241035776,3241036031,GB 3241036032,3241036287,CH 3241036288,3241036543,RU 3241036544,3241036799,SI 3241036800,3241037055,GB 3241037056,3241037311,RU 3241037824,3241038079,NL 3241038080,3241038335,UA 3241038336,3241038591,DE 3241038592,3241039103,LT 3241039104,3241039359,FR 3241039360,3241039615,UA 3241039616,3241039871,GB 3241039872,3241040127,CH 3241040128,3241040383,UA 3241040384,3241040639,GB 3241040640,3241040895,RO 3241040896,3241062399,AT 3241063424,3241063679,IT 3241063680,3241063935,PL 3241063936,3241064191,DE 3241064192,3241064447,GB 3241064448,3241064703,DE 3241064704,3241065471,PL 3241065472,3241066495,AT 3241068800,3241069311,UA 3241069312,3241069567,FR 3241069568,3241070079,GB 3241070080,3241070335,FR 3241070336,3241070847,RU 3241070848,3241071103,AT 3241071104,3241071359,UA 3241071616,3241071871,PL 3241071872,3241072127,RU 3241072384,3241072639,DE 3241073920,3241074175,GB 3241074688,3241076735,AT 3241077248,3241077759,AT 3241077760,3241078015,LV 3241078016,3241078271,PL 3241078272,3241078527,ES 3241078528,3241078783,DE 3241080832,3241082879,AT 3241082880,3241083135,FR 3241083136,3241091071,CH 3241101056,3241101311,DK 3241101312,3241101567,RO 3241101568,3241101823,DE 3241101824,3241102079,BG 3241102336,3241102591,ES 3241102592,3241102847,DE 3241102848,3241103359,NL 3241103360,3241103615,FR 3241103616,3241103871,DK 3241103872,3241104127,DE 3241104128,3241104383,GB 3241104384,3241104639,ES 3241104640,3241104895,UA 3241105152,3241105407,RU 3241105408,3241108223,CH 3241108224,3241108735,DE 3241108736,3241108991,RO 3241108992,3241109247,SA 3241109248,3241117695,CH 3241117696,3241117951,SI 3241117952,3241118207,UA 3241118208,3241118463,AT 3241118464,3241118719,FR 3241118720,3241118975,CH 3241118976,3241119231,FR 3241119232,3241119487,DK 3241119488,3241119743,LT 3241119744,3241119999,RO 3241120000,3241120255,ES 3241120256,3241120511,RU 3241120512,3241120767,GB 3241120768,3241121023,RU 3241121024,3241121279,CH 3241121536,3241121791,PL 3241121792,3241122047,DE 3241122048,3241122303,CH 3241122304,3241122559,RU 3241122560,3241123327,AT 3241123328,3241124095,PL 3241124096,3241124351,DE 3241124352,3241124607,RO 3241124608,3241124863,PL 3241124864,3241125119,GB 3241125120,3241125375,IL 3241125376,3241125631,UA 3241125632,3241125887,SE 3241125888,3241129983,CH 3241129984,3241130239,FR 3241130240,3241130495,PT 3241130496,3241130751,DK 3241130752,3241131007,DE 3241131008,3241131263,NL 3241131264,3241131519,UA 3241131520,3241131775,CH 3241131776,3241132031,DK 3241132032,3241144319,CH 3241145856,3241146111,HR 3241146112,3241146367,PL 3241146368,3241146623,IL 3241146624,3241146879,RO 3241146880,3241147903,CH 3241148160,3241148415,CH 3241148416,3241476095,FR 3241476864,3241477375,BE 3241477632,3241477887,GB 3241478144,3241481727,BE 3241481728,3241481983,PT 3241481984,3241482239,DE 3241482240,3241484799,SE 3241484800,3241485055,BE 3241485312,3241486335,BE 3241486336,3241487615,SE 3241487616,3241496575,BE 3241496576,3241496831,AT 3241497344,3241497599,UA 3241497600,3241497855,SE 3241497856,3241498111,DK 3241498112,3241498367,BE 3241498624,3241498879,NO 3241498880,3241499135,UA 3241499648,3241499903,BE 3241499904,3241500159,DE 3241500160,3241500671,GB 3241501440,3241501440,GB 3241501696,3241501696,GB 3241501952,3241502463,BE 3241503232,3241503487,RS 3241503488,3241508095,BE 3241508096,3241508351,NL 3241508864,3241539839,BE 3241541376,3241541631,PL 3241541632,3241672703,FR 3241673728,3241674751,FR 3241676544,3241676799,FR 3241680896,3241689087,FR 3241693184,3241699327,FR 3241699840,3241700095,SE 3241700352,3241705727,FR 3241707520,3241709567,FR 3241712896,3241713151,FR 3241713664,3241721855,FR 3241722112,3241722367,FR 3241724416,3241724671,RU 3241724672,3241724927,RE 3241725952,3241734143,FR 3241734400,3241735935,FR 3241738240,3241742335,FR 3241743360,3241743615,DE 3241744384,3241745407,FR 3241746432,3241747455,FR 3241750528,3241751039,FR 3241752576,3241752831,FR 3241754624,3241758719,FR 3241759744,3241763071,FR 3241763072,3241763327,DE 3241764864,3241765887,FR 3241766144,3241771007,FR 3241772032,3241773055,FR 3241774336,3241774591,FR 3241775360,3241775615,FR 3241777152,3241778943,FR 3241779200,3241789439,FR 3241789696,3241789951,FR 3241790464,3241790975,FR 3241793536,3241795327,FR 3241795584,3241803775,FR 3241803776,3241803823,CY 3241803832,3241803839,GB 3241803840,3241804031,CY 3241804032,3241820159,BE 3241820160,3241821695,GB 3241821696,3241822207,GR 3241822208,3241824255,CZ 3241824256,3241840639,BE 3241841664,3241842175,BE 3241843456,3241843711,CH 3241843712,3241845759,BE 3241847808,3241848063,BE 3241852928,3241854463,SK 3241854464,3241854975,GB 3241854976,3241855999,DE 3241856000,3241857279,NL 3241857280,3241857535,CH 3241857536,3241859071,AT 3241859072,3241861119,US 3241861120,3241863167,BE 3241863168,3241863423,PL 3241863424,3241863679,FR 3241863680,3241863935,GR 3241863936,3241864191,GB 3241864192,3241864447,TR 3241864704,3241864959,SE 3241864960,3241865215,IT 3241865472,3241865727,NO 3241865728,3241865983,CH 3241865984,3241866239,RO 3241866240,3241866751,DE 3241866752,3241867007,UA 3241867008,3241867263,FR 3241867776,3241868031,NO 3241868032,3241868287,RU 3241868288,3241868543,HR 3241868544,3241868799,DE 3241869056,3241869311,BY 3241869312,3241934847,PL 3241934848,3242196991,GB 3242196992,3242393599,FI 3242393600,3242459135,NL 3242459136,3242467327,BG 3242467328,3242475519,HU 3242475520,3242483711,LV 3242483712,3242524671,BG 3242524672,3242590207,NO 3242590208,3242655743,IT 3242655744,3242721279,NO 3242721280,3242852351,CH 3242852352,3242917887,BE 3242917888,3242950655,NO 3242950656,3242983423,BE 3242983424,3243048959,IT 3243048960,3243114495,SI 3243114496,3243245567,NL 3243245568,3243376639,AT 3243376640,3243442175,GB 3243442176,3243507711,AT 3243507712,3243507967,GB 3243509504,3243509759,CZ 3243509760,3243510015,RU 3243510016,3243510271,NL 3243510272,3243510527,CZ 3243510784,3243511807,CZ 3243512064,3243512319,UA 3243512320,3243512575,FR 3243512832,3243513087,DE 3243513088,3243513343,GR 3243513344,3243513855,UA 3243513856,3243514111,BE 3243514112,3243514367,CH 3243514368,3243514623,IE 3243514624,3243514879,DK 3243514880,3243515135,AT 3243515136,3243515391,PL 3243515648,3243515903,RU 3243515904,3243519999,CZ 3243520512,3243520767,UA 3243520768,3243521023,GB 3243521024,3243521279,AT 3243521280,3243521535,CZ 3243521536,3243521791,DE 3243521792,3243524095,CZ 3243524096,3243524351,RO 3243524352,3243524607,AT 3243524608,3243524863,DE 3243524864,3243525119,NL 3243525120,3243525375,CZ 3243525376,3243525631,RO 3243525888,3243526143,PL 3243526144,3243526399,UA 3243526400,3243526655,FR 3243526912,3243527167,SE 3243527168,3243527423,RU 3243527424,3243527679,UA 3243527936,3243528191,PL 3243528192,3243529215,CZ 3243529216,3243529471,BE 3243529728,3243529983,BG 3243529984,3243530239,GB 3243530496,3243530751,FR 3243531008,3243531263,DE 3243531776,3243532031,AT 3243532032,3243532287,DE 3243532288,3243536383,CZ 3243536384,3243536639,AT 3243537408,3243537919,CZ 3243540480,3243540991,CZ 3243544064,3243544319,GB 3243544320,3243544575,NL 3243544576,3243552767,CZ 3243552768,3243553023,NL 3243553024,3243553279,FR 3243553280,3243553535,DE 3243554048,3243554303,DE 3243554304,3243554559,PL 3243554560,3243554815,MD 3243554816,3243555071,LV 3243555072,3243555327,RO 3243555328,3243555583,CZ 3243556864,3243565055,CZ 3243565056,3243569151,GB 3243570432,3243570687,CZ 3243570688,3243570943,PL 3243571968,3243572223,GR 3243572224,3243572479,CZ 3243572992,3243573247,RU 3243573248,3243704319,CZ 3243704320,3243769855,SK 3243769856,3243900927,DK 3243900928,3243966463,NO 3243966464,3243974655,PL 3243974656,3243975423,LU 3243975424,3243975679,FR 3243975680,3243978751,LU 3243978752,3243982847,NL 3243982848,3243991039,HU 3243991040,3243999231,BE 3243999232,3244031999,NO 3244032000,3244097535,GR 3244097536,3244098559,DE 3244099584,3244100607,FR 3244100608,3244102655,UA 3244102656,3244103679,CH 3244103680,3244104703,BG 3244105728,3244107775,GB 3244107776,3244108799,RO 3244108800,3244109823,GB 3244109824,3244111871,UA 3244111872,3244112895,KZ 3244112896,3244113919,RU 3244113920,3244114943,CH 3244114944,3244115967,PL 3244115968,3244116991,SK 3244116992,3244118015,UA 3244119040,3244120063,GB 3244120064,3244122111,PL 3244123136,3244124159,UA 3244124160,3244125183,PL 3244125184,3244126207,UA 3244126208,3244127231,BE 3244127232,3244128255,UA 3244128256,3244129279,RU 3244129280,3244130303,FR 3244130304,3244131327,NO 3244131328,3244133375,FI 3244133376,3244134399,RO 3244134400,3244135423,PL 3244135424,3244137471,GB 3244137472,3244138495,PL 3244138496,3244139519,UA 3244139520,3244140543,GR 3244140544,3244141567,UA 3244141568,3244142591,NL 3244142592,3244143615,DE 3244143616,3244144639,FR 3244144640,3244146687,UA 3244146688,3244147711,RU 3244147712,3244149759,GB 3244149760,3244150783,PL 3244150784,3244151807,CH 3244151808,3244152831,KZ 3244152832,3244153855,UA 3244153856,3244154879,NO 3244154880,3244155903,GB 3244155904,3244156927,UA 3244157952,3244158975,RU 3244158976,3244159999,DE 3244160000,3244161023,RU 3244161024,3244163071,NO 3244163072,3244228607,FI 3244228608,3244261375,TN 3244261376,3244277759,IE 3244277760,3244294143,SI 3244294144,3244818431,DE 3244818432,3244818687,ES 3244818688,3244818943,AT 3244818944,3244819199,PL 3244819200,3244819455,DE 3244819456,3244819711,GB 3244819712,3244819967,RO 3244819968,3244820223,NL 3244820224,3244820479,UA 3244820480,3244820735,BE 3244820736,3244820991,DE 3244820992,3244821247,SI 3244821248,3244821503,RU 3244821760,3244822015,TR 3244822016,3244822271,RU 3244822272,3244822527,GB 3244822528,3244822783,UA 3244822784,3244823039,CZ 3244823040,3244823295,DE 3244823296,3244823551,FR 3244823552,3244823807,GE 3244823808,3244824063,RO 3244824064,3244824319,IR 3244824320,3244824575,SI 3244824576,3244824831,RU 3244824832,3244825087,GB 3244825088,3244825343,DE 3244825344,3244826111,RU 3244826112,3244826367,RO 3244826368,3244826623,CH 3244826624,3244826879,DE 3244826880,3244827135,MK 3244827136,3244827391,AT 3244827392,3244827647,GB 3244827648,3244827903,FR 3244827904,3244828159,BE 3244828160,3244828415,FI 3244828416,3244828671,FR 3244828672,3244828927,SA 3244828928,3244829183,MD 3244829184,3244829439,CH 3244829440,3244829695,DK 3244829696,3244829951,IL 3244829952,3244830463,PL 3244830464,3244830719,CH 3244830720,3244830975,FR 3244830976,3244831231,DE 3244831232,3244831487,PL 3244831488,3244831743,ES 3244831744,3244831999,PT 3244832000,3244832255,HU 3244832256,3244832511,FR 3244832512,3244832767,AT 3244832768,3244833023,FR 3244833024,3244833279,RU 3244833280,3244833535,UA 3244833536,3244833791,RU 3244833792,3244834047,FR 3244834048,3244834303,CH 3244834304,3244834559,IL 3244834560,3244834815,GB 3244834816,3244835071,RU 3244835072,3244835327,AT 3244835328,3244835583,DE 3244835840,3244836095,RS 3244836096,3244836607,RU 3244836608,3244836863,PL 3244836864,3244837119,FR 3244837120,3244837375,RO 3244837376,3244837887,RU 3244837888,3244838143,CY 3244838144,3244838399,IL 3244838400,3244838655,GB 3244838656,3244838911,BG 3244839168,3244839423,GB 3244839424,3244839679,AT 3244839680,3244839935,DK 3244839936,3244840191,DE 3244840192,3244840447,UA 3244840448,3244840703,IT 3244840704,3244840959,RU 3244840960,3244841215,PL 3244841216,3244841471,GB 3244841472,3244841727,DE 3244841728,3244842239,GB 3244842496,3244842751,RU 3244842752,3244843007,DE 3244843008,3244843263,UA 3244843264,3244843519,RU 3244843520,3244843775,NL 3244843776,3244844031,PL 3244844032,3244844287,SE 3244844288,3244844543,GB 3244844544,3244844799,RU 3244844800,3244845055,GB 3244845056,3244845311,NL 3244845312,3244845567,NO 3244845568,3244845823,RO 3244845824,3244846335,GB 3244846336,3244846591,TR 3244846848,3244847103,NL 3244847104,3244847359,SE 3244847360,3244847615,GB 3244847616,3244847871,DK 3244847872,3244848127,IL 3244848128,3244848383,CH 3244848384,3244848639,IL 3244848640,3244848895,DE 3244848896,3244849151,IL 3244849152,3244849407,AT 3244849408,3244849663,RO 3244849664,3244849919,SE 3244849920,3244850175,RO 3244850176,3244850431,TR 3244850432,3244850687,AT 3244850688,3244850943,GB 3244850944,3244851455,RU 3244851456,3244851711,NL 3244851712,3244851967,TR 3244851968,3244852223,GB 3244852224,3244852479,CH 3244852480,3244852735,UA 3244852736,3244852991,SI 3244852992,3244853247,DK 3244853248,3244853503,IE 3244853504,3244853759,IT 3244853760,3244854015,TR 3244854016,3244854271,RU 3244854272,3244854527,GB 3244854528,3244855295,RU 3244855296,3244855551,GB 3244855552,3244855807,UA 3244855808,3244856063,DE 3244856064,3244856319,IL 3244856320,3244856575,CH 3244856576,3244856831,RU 3244856832,3244857087,RO 3244857088,3244857343,IT 3244857344,3244857599,GB 3244857856,3244858111,PL 3244858112,3244858367,DE 3244858368,3244858623,PL 3244858624,3244858879,RU 3244858880,3244859135,FR 3244859136,3244859391,BE 3244859392,3244859647,SE 3244859648,3244859903,PL 3244859904,3244860159,FR 3244860160,3244860415,PL 3244860416,3244860671,GB 3244860672,3244860927,BG 3244860928,3244861183,PL 3244861184,3244861439,CH 3244861440,3244861951,GB 3244861952,3244862207,RU 3244862208,3244862463,DK 3244862464,3244862719,CZ 3244862720,3244862975,RO 3244862976,3244863231,DE 3244863232,3244863487,GB 3244863744,3244863999,RU 3244864000,3244864255,UA 3244864256,3244864511,GB 3244864512,3244864767,RO 3244864768,3244865023,RU 3244865024,3244865535,UA 3244865536,3244865791,PL 3244865792,3244866047,CH 3244866048,3244866559,NL 3244866560,3244866815,FI 3244866816,3244867071,UA 3244867072,3244867583,RU 3244867584,3244867839,NL 3244867840,3244868095,BE 3244868096,3244868351,DE 3244868352,3244868607,RU 3244868608,3244868863,FI 3244868864,3244869119,RU 3244869376,3244869631,FR 3244869632,3244869887,GR 3244869888,3244870143,TR 3244870144,3244870399,DK 3244870400,3244870655,UA 3244870656,3244870911,SA 3244870912,3244871167,FR 3244871168,3244871423,LT 3244871424,3244871679,RU 3244871680,3244872447,UA 3244872704,3244872959,IR 3244872960,3244873215,UA 3244873216,3244873471,SE 3244873472,3244873727,IE 3244873728,3244873983,DE 3244873984,3244874239,SE 3244874240,3244874495,ES 3244874496,3244874751,FR 3244874752,3244875007,DE 3244875008,3244875263,PL 3244875520,3244875775,IT 3244875776,3244876799,RU 3244876800,3244877055,DK 3244877056,3244877311,JO 3244877312,3244877567,RU 3244877568,3244877823,FR 3244877824,3244878079,AT 3244878080,3244878335,GB 3244878336,3244878591,RU 3244878592,3244878847,PL 3244878848,3244879103,SI 3244879104,3244879359,RU 3244879360,3244879615,CH 3244879616,3244879871,PL 3244879872,3244880127,SI 3244880128,3244880383,RU 3244880384,3244880639,UA 3244880640,3244880895,RU 3244880896,3244881151,PL 3244881152,3244881407,RU 3244881408,3244881663,DK 3244881664,3244881919,RO 3244881920,3244882175,RU 3244882176,3244882431,UA 3244882432,3244882687,IT 3244882688,3244882943,PL 3244883200,3244883455,RU 3244883456,3244883711,CZ 3244883712,3244883967,NL 3244883968,3244884223,DE 3244884224,3244884479,FR 3244884480,3244884735,IR 3244884736,3244884991,NL 3244884992,3244885247,GR 3244885248,3244885503,CH 3244885504,3244885759,IR 3244885760,3244886015,UA 3244886016,3244886271,LB 3244886272,3244886527,CH 3244886528,3244886783,DK 3244886784,3244887039,RU 3244887040,3244887295,NL 3244887296,3244887551,GB 3244887552,3244887807,RU 3244887808,3244888063,BE 3244888064,3244888319,PL 3244888320,3244888575,DE 3244888576,3244888831,FR 3244888832,3244889087,DE 3244889088,3244889343,PL 3244889344,3244889599,US 3244889600,3244889855,SI 3244889856,3244890111,HR 3244890112,3244890367,PL 3244890368,3244890623,NL 3244890624,3244890879,FR 3244890880,3244891135,RU 3244891392,3244891647,PL 3244891648,3244891903,UA 3244892160,3244892415,PL 3244892416,3244892671,NL 3244892672,3244892927,ES 3244892928,3244893183,PL 3244893184,3244893439,BE 3244893440,3244893695,RU 3244893696,3244893951,DE 3244893952,3244894463,RU 3244894464,3244894719,UA 3244894720,3244894975,GR 3244894976,3244895231,FR 3244895232,3244895487,DK 3244895488,3244895743,PL 3244895744,3244895999,DE 3244896000,3244896511,GB 3244896512,3244896767,LT 3244896768,3244897023,NL 3244897024,3244897279,GB 3244897280,3244897535,DE 3244897536,3244897791,RU 3244897792,3244898047,GB 3244898048,3244898303,DE 3244898304,3244898559,UA 3244898560,3244898815,GI 3244898816,3244899071,RO 3244899072,3244899327,RU 3244899328,3244899583,BG 3244899584,3244899839,GB 3244899840,3244900095,UA 3244900096,3244900351,PL 3244900352,3244900607,RO 3244900608,3244900863,RU 3244900864,3244901119,PL 3244901120,3244901375,SI 3244901376,3244901631,DE 3244901632,3244901887,GB 3244901888,3244902143,UA 3244902144,3244902655,RU 3244902656,3244902911,BE 3244902912,3244903167,IM 3244903168,3244903423,PL 3244903424,3244903679,FI 3244903680,3244903935,NO 3244903936,3244904191,RO 3244904192,3244904447,IT 3244904448,3244904703,GR 3244904960,3244905215,BY 3244905216,3244905471,MD 3244905728,3244905983,GR 3244905984,3244906239,AT 3244906240,3244906495,DE 3244906752,3244907007,SA 3244907008,3244907263,FR 3244907264,3244907519,RO 3244907520,3244907775,UA 3244907776,3244908287,RU 3244908800,3244909055,FI 3244909056,3244909311,GB 3244909312,3244909567,IL 3244909568,3244909823,RU 3244909824,3244910079,NL 3244910080,3244910335,CY 3244910336,3244910591,DE 3244910592,3244910847,GB 3244910848,3244911103,DE 3244911104,3244911359,BE 3244911360,3244911615,RU 3244911616,3244911871,GB 3244911872,3244912127,GR 3244912128,3244912383,PL 3244912384,3244912639,NL 3244912640,3244912895,NO 3244912896,3244913151,SE 3244913152,3244913407,RU 3244913408,3244913663,SI 3244913664,3244913919,DK 3244913920,3244914431,RU 3244914432,3244914687,SA 3244914688,3244914943,GB 3244915200,3244915455,PL 3244915456,3244915711,FI 3244915712,3244915967,UA 3244915968,3244916223,PL 3244916224,3244916479,RU 3244916480,3244916735,SI 3244916736,3244916991,FR 3244916992,3244917247,PL 3244917248,3244917503,SE 3244917504,3244917759,AT 3244917760,3244918015,RU 3244918016,3244918271,BE 3244918272,3244918527,SE 3244918528,3244918783,UA 3244918784,3244919039,CH 3244919040,3244919295,DE 3244919296,3244919551,SE 3244919552,3244919807,DE 3244919808,3244920063,RO 3244920320,3244920575,SK 3244920576,3244920831,PL 3244920832,3244921087,NL 3244921088,3244921343,IE 3244921344,3244921599,LT 3244921600,3244921855,DE 3244921856,3244922111,BG 3244922112,3244922367,DK 3244922368,3244922623,GB 3244922880,3244923135,UA 3244923136,3244923391,AT 3244923392,3244923647,RU 3244923648,3244923903,LV 3244923904,3244924159,RU 3244924160,3244924927,CZ 3244924928,3244925183,FI 3244925184,3244925439,CH 3244925696,3244925951,RS 3244925952,3244926207,UA 3244926208,3244926463,NL 3244926464,3244926719,LV 3244926720,3244926975,PL 3244926976,3244927231,DE 3244927232,3244927487,RU 3244927488,3244927743,GB 3244927744,3244927999,US 3244928000,3244928255,GB 3244928256,3244928511,NL 3244928512,3244929023,RU 3244929024,3244929535,RO 3244929536,3244929791,PL 3244929792,3244930047,RU 3244930048,3244930303,PL 3244930304,3244930559,AT 3244930560,3244930815,GB 3244930816,3244931071,NL 3244931328,3244931583,RO 3244931584,3244931839,FR 3244931840,3244932095,NL 3244932096,3244932351,GB 3244932352,3244932607,UA 3244932608,3244932863,DK 3244932864,3244933375,PL 3244933376,3244933631,HR 3244933632,3244933887,GB 3244933888,3244934143,AT 3244934144,3244934399,BG 3244934400,3244934655,FR 3244934656,3244934911,RU 3244934912,3244935167,IL 3244935168,3244935423,NL 3244935424,3244935679,UA 3244935680,3244935935,PL 3244935936,3244936191,IL 3244936192,3244937215,AT 3244937216,3244937471,TR 3244937472,3244937727,GB 3244937728,3244937983,UA 3244937984,3244938239,TR 3244938240,3244938495,GB 3244938496,3244938751,RU 3244938752,3244939007,AT 3244939008,3244939263,NL 3244939264,3244939519,UA 3244939776,3244940031,GB 3244940032,3244940287,UA 3244940288,3244940543,DK 3244940544,3244940799,PL 3244940800,3244941055,RU 3244941056,3244941311,DE 3244941312,3244941567,CY 3244941568,3244941823,FR 3244941824,3244942079,SE 3244942080,3244942335,PL 3244942336,3244942591,IT 3244942592,3244942847,PL 3244942848,3244943103,DE 3244943104,3244943359,GB 3244943360,3244943615,FR 3244943616,3244943871,NL 3244943872,3244944127,TR 3244944128,3244944639,RU 3244944640,3244944895,GE 3244944896,3244945151,FR 3244945152,3244945407,RO 3244945408,3244945663,LV 3244945664,3244945919,NL 3244945920,3244946175,PL 3244946176,3244946431,TR 3244946688,3244946943,RU 3244946944,3244947455,DE 3244947456,3244947711,PL 3244947712,3244947967,UA 3244947968,3244948223,DE 3244948224,3244948479,PL 3244948480,3244948735,FR 3244948736,3244948991,IE 3244948992,3244949247,UA 3244949248,3244951551,RU 3244951552,3244952575,FI 3244952576,3244953599,GB 3244953600,3244954623,DE 3244955648,3244957695,UA 3244957696,3244958719,RU 3244958720,3244959743,FR 3244959744,3244960767,RU 3244960768,3244961791,RO 3244961792,3244962815,KG 3244962816,3244963839,IL 3244963840,3244966911,UA 3244966912,3244968959,RU 3244968960,3244969983,PL 3244969984,3244971007,UA 3244971008,3244972031,PL 3244972032,3244975103,RU 3244975104,3244977151,PL 3244977152,3244978175,RU 3244978176,3244979199,GB 3244979200,3244980223,FR 3244980224,3244981247,DK 3244981248,3244982271,RO 3244982272,3244983295,PL 3244983296,3244984319,RU 3244984320,3244985343,UA 3244985344,3244986367,DE 3244986368,3244987391,UA 3244987392,3244988415,RU 3244988416,3244990463,PL 3244990464,3244991487,RU 3244991488,3244992511,DK 3244992512,3244994559,RU 3244994560,3244995583,ES 3244995584,3244996607,IT 3244996608,3244997631,UA 3244997632,3244998655,RU 3244998656,3244999679,PL 3244999680,3245000703,IQ 3245000704,3245001727,UA 3245001728,3245002751,IL 3245002752,3245003263,PL 3245003264,3245003519,SE 3245003520,3245003775,UA 3245003776,3245004799,RU 3245004800,3245005823,PL 3245005824,3245006847,UA 3245006848,3245007871,DE 3245007872,3245008895,PL 3245008896,3245009919,RU 3245009920,3245010431,UA 3245010432,3245010687,PL 3245010688,3245010943,FR 3245010944,3245011967,RU 3245011968,3245012991,PL 3245012992,3245014015,UA 3245014016,3245015039,GR 3245015040,3245016063,RU 3245016064,3245017087,RS 3245017088,3245018111,PL 3245018112,3245019135,RU 3245019136,3245019462,SC 3245019463,3245019463,RU 3245019464,3245020159,SC 3245020160,3245021183,RU 3245021184,3245022207,UA 3245022208,3245023231,NO 3245023232,3245024255,PL 3245024256,3245025279,BG 3245025280,3245026303,UA 3245026304,3245027327,GB 3245027328,3245029375,RU 3245029376,3245030399,FR 3245030400,3245032447,RU 3245032448,3245033471,BG 3245033472,3245034495,UA 3245035520,3245036543,UA 3245036544,3245037567,IS 3245037568,3245038591,PL 3245038592,3245039615,RU 3245039616,3245040639,MD 3245040640,3245041663,RU 3245041664,3245043711,UA 3245043712,3245044735,RU 3245044736,3245045759,GB 3245045760,3245046783,DE 3245046784,3245047807,FR 3245047808,3245050879,UA 3245050880,3245051903,RU 3245051904,3245052927,DE 3245052928,3245054975,RU 3245054976,3245055999,AT 3245056000,3245057023,CZ 3245057024,3245058047,PL 3245058048,3245061119,UA 3245061120,3245062143,RU 3245063168,3245065215,RU 3245065216,3245066239,PL 3245066240,3245067263,UA 3245067264,3245068287,GB 3245069312,3245070335,PL 3245070336,3245071359,RU 3245071360,3245072383,NL 3245072384,3245073407,UA 3245073408,3245076479,RU 3245076480,3245077503,FR 3245077504,3245078527,UA 3245078528,3245079551,PL 3245079552,3245080575,CZ 3245080576,3245082623,SE 3245082624,3245084927,DE 3245084928,3245085183,BE 3245085184,3245085439,GB 3245085440,3245085695,DE 3245085952,3245086207,FR 3245086208,3245086463,AT 3245086464,3245086719,GH 3245086720,3245086975,BG 3245087488,3245087743,NL 3245087744,3245087999,GH 3245088000,3245088255,LV 3245088256,3245088511,KW 3245088512,3245088767,FR 3245088768,3245089279,BG 3245089280,3245089791,PL 3245089792,3245090303,GB 3245090304,3245090815,UA 3245090816,3245091327,AT 3245091328,3245091839,SE 3245091840,3245092351,UA 3245092864,3245093887,UA 3245093888,3245094911,RO 3245094912,3245095935,UA 3245095936,3245096959,IT 3245096960,3245099007,CZ 3245099008,3245103103,GB 3245105664,3245106175,NL 3245106176,3245106687,AT 3245106688,3245107711,UA 3245107712,3245108735,CZ 3245108736,3245109247,FR 3245110272,3245112319,UA 3245112320,3245113343,PL 3245113344,3245113855,UA 3245113856,3245114367,RU 3245114368,3245114879,SK 3245114880,3245115391,JO 3245115392,3245115903,CH 3245115904,3245116415,AT 3245116416,3245116927,FR 3245116928,3245117439,KW 3245117440,3245118463,LV 3245118464,3245119487,GB 3245120512,3245121535,GB 3245121536,3245122047,GR 3245122048,3245122559,UA 3245122560,3245123071,DE 3245123072,3245123583,FR 3245123584,3245124095,GB 3245124096,3245124607,UA 3245124608,3245125119,DE 3245125120,3245125631,ES 3245125632,3245125887,DE 3245125888,3245126143,PL 3245126400,3245126655,DE 3245126656,3245126911,FR 3245126912,3245127167,DE 3245127168,3245127423,RU 3245127680,3245127935,DE 3245127936,3245128191,LV 3245128192,3245128447,IT 3245128448,3245128703,CH 3245128704,3245129471,DK 3245129472,3245129983,GB 3245129984,3245130239,DE 3245130240,3245130495,PL 3245130496,3245130751,IL 3245130752,3245131007,SE 3245131008,3245131263,FR 3245131520,3245132031,GB 3245132032,3245132287,BE 3245132288,3245132543,PL 3245132544,3245132799,FR 3245132800,3245133311,IT 3245134080,3245134335,UA 3245134336,3245134591,NL 3245134848,3245135103,AT 3245135104,3245135359,TR 3245135360,3245135615,UG 3245135872,3245136127,FR 3245136128,3245136383,DE 3245136384,3245136639,GB 3245136896,3245137151,PL 3245137152,3245137407,GB 3245137408,3245137663,DE 3245137664,3245137919,SE 3245137920,3245138431,DK 3245138432,3245138943,UA 3245138944,3245139455,PL 3245139968,3245140479,CH 3245140992,3245141503,UA 3245141504,3245141759,NL 3245141760,3245142015,SE 3245142016,3245143039,UA 3245143040,3245144063,GB 3245144064,3245145087,UA 3245145088,3245146111,UG 3245146112,3245147135,FR 3245147136,3245148159,DE 3245148160,3245149183,UA 3245150208,3245154303,IS 3245154304,3245158399,IT 3245158400,3245158911,CH 3245158912,3245159423,GB 3245159424,3245159935,CH 3245159936,3245160447,BG 3245160448,3245160959,DK 3245160960,3245161471,PL 3245161472,3245161727,RU 3245161728,3245161983,BG 3245161984,3245162495,BE 3245163008,3245163519,KE 3245163520,3245164543,RU 3245164544,3245165055,BE 3245165056,3245165567,AT 3245165568,3245166079,RU 3245166592,3245166847,UA 3245166848,3245167103,SA 3245167104,3245167359,IL 3245167360,3245167615,GB 3245168128,3245168383,SE 3245168384,3245168639,FR 3245168640,3245168895,AT 3245168896,3245169151,RU 3245169152,3245169407,IT 3245169408,3245169663,PL 3245169920,3245170175,PT 3245170432,3245170687,CH 3245170688,3245171711,DE 3245172736,3245173759,IT 3245174784,3245175039,IT 3245175040,3245175295,DE 3245175296,3245175551,RU 3245175552,3245175807,PL 3245175808,3245176063,GB 3245176064,3245176319,SK 3245176320,3245176575,UA 3245176576,3245176831,FR 3245177088,3245177343,ES 3245177344,3245177599,NL 3245177600,3245177855,PL 3245177856,3245178111,SI 3245178112,3245178623,BE 3245178624,3245178879,PL 3245178880,3245179391,UA 3245179392,3245179903,LU 3245179904,3245180415,DE 3245180416,3245180927,TR 3245181440,3245181951,DE 3245181952,3245182463,AT 3245182464,3245182975,FR 3245182976,3245183999,UA 3245184000,3245187071,AT 3245187072,3245190143,UA 3245190144,3245191167,ES 3245191168,3245193215,CZ 3245193216,3245195263,BE 3245195264,3245197311,GB 3245197312,3245199359,IT 3245199360,3245199615,LU 3245199616,3245199871,SE 3245199872,3245200127,NO 3245200128,3245200383,LV 3245200384,3245200639,PL 3245200896,3245201151,DE 3245201152,3245201407,KW 3245201408,3245201663,UA 3245201920,3245202175,SA 3245202432,3245202687,GB 3245202944,3245203455,DE 3245203712,3245203967,PL 3245204224,3245204479,SI 3245204480,3245204735,BE 3245204736,3245204991,ES 3245205248,3245205503,DE 3245205504,3245205759,AT 3245205760,3245206015,IT 3245206016,3245206271,BE 3245206272,3245206527,LT 3245206528,3245207295,DE 3245207296,3245207551,PL 3245207552,3245208063,UA 3245208064,3245208575,DE 3245208576,3245209087,PL 3245209088,3245209599,RU 3245209600,3245210111,UA 3245210112,3245210623,FR 3245210624,3245211135,HU 3245211136,3245211647,GB 3245212672,3245213183,GB 3245213184,3245213695,DE 3245213696,3245214207,LV 3245214208,3245214719,AT 3245214720,3245215231,SE 3245215232,3245215743,SI 3245215744,3245217791,UA 3245217792,3245218815,DE 3245218816,3245219839,AT 3245219840,3245221887,FI 3245221888,3245223935,DE 3245223936,3245225471,NL 3245225472,3245225727,GB 3245225728,3245225983,NL 3245225984,3245228031,HU 3245228032,3245229055,FI 3245229056,3245230079,DE 3245230080,3245232127,UA 3245232128,3245232383,PL 3245232384,3245232639,BE 3245232896,3245233151,IT 3245233152,3245233407,DK 3245233408,3245233663,CH 3245233664,3245233919,GR 3245233920,3245234175,DK 3245234176,3245234431,GB 3245234432,3245234687,UA 3245234688,3245234943,DE 3245234944,3245235199,RU 3245235200,3245235455,BE 3245235712,3245235967,AT 3245235968,3245236223,CH 3245236224,3245237247,PL 3245237248,3245237759,UA 3245237760,3245238271,DE 3245238272,3245238783,CD 3245238784,3245239295,UA 3245239296,3245240319,FI 3245240320,3245241343,UA 3245241344,3245242367,DE 3245242368,3245243391,PL 3245243392,3245244415,UA 3245244416,3245244671,ES 3245244672,3245244927,AT 3245244928,3245245183,BE 3245245440,3245245695,BG 3245245696,3245245951,DE 3245246720,3245246975,PL 3245246976,3245247231,GB 3245247232,3245247487,DE 3245247488,3245247743,FR 3245248000,3245248255,PL 3245248512,3245248767,UA 3245248768,3245249023,SI 3245249024,3245249535,NL 3245249792,3245250047,GB 3245250048,3245250303,DE 3245250304,3245250559,IT 3245250560,3245250815,FR 3245250816,3245251071,DE 3245251072,3245251327,ES 3245251328,3245251583,MT 3245251584,3245251839,UA 3245251840,3245252095,NL 3245252352,3245252607,BG 3245252608,3245253631,UA 3245253632,3245254143,LV 3245254144,3245254655,DK 3245254656,3245255167,UA 3245255168,3245255679,TR 3245255680,3245257215,UA 3245257216,3245257727,DE 3245257728,3245258239,GB 3245258240,3245258751,AT 3245258752,3245259263,UA 3245259264,3245259775,SK 3245259776,3245260287,UA 3245260288,3245260799,BE 3245260800,3245261823,DE 3245261824,3245262847,DK 3245263872,3245264895,DE 3245264896,3245266943,TR 3245266944,3245268991,BG 3245268992,3245270015,FI 3245270016,3245271039,PL 3245271040,3245272063,NL 3245272064,3245273087,RU 3245273088,3245275135,GB 3245275136,3245277183,BE 3245277184,3245277695,UA 3245277696,3245278207,RU 3245278720,3245279743,UA 3245279744,3245280255,TJ 3245280256,3245280767,BE 3245280768,3245281279,FR 3245281280,3245281791,RO 3245281792,3245282303,ES 3245282304,3245282815,IT 3245282816,3245283327,PL 3245283328,3245283839,GB 3245283840,3245284351,PL 3245284352,3245284863,GB 3245285632,3245285887,GB 3245285888,3245286143,DE 3245286144,3245286399,GB 3245286400,3245287423,PL 3245287424,3245287679,DE 3245287680,3245287935,PL 3245287936,3245288191,PT 3245288192,3245288703,DE 3245288960,3245289215,IT 3245289216,3245289471,AT 3245289472,3245290495,UA 3245291520,3245292543,DE 3245292544,3245293567,UA 3245293568,3245294079,FI 3245294080,3245294591,ES 3245294592,3245295103,RO 3245295104,3245296127,IT 3245296128,3245296639,GB 3245297920,3245298175,NL 3245298176,3245298431,IE 3245298432,3245298687,UA 3245298688,3245298943,GB 3245298944,3245299199,UA 3245299456,3245299711,AT 3245299968,3245300223,BG 3245300736,3245300991,RU 3245300992,3245301247,FI 3245301248,3245301503,NL 3245301504,3245301759,BE 3245301760,3245302783,SK 3245302784,3245303807,DE 3245303808,3245304831,SE 3245304832,3245306367,DE 3245306368,3245306879,UA 3245307392,3245307903,FI 3245307904,3245308415,RO 3245308416,3245308927,ES 3245309440,3245309951,UA 3245309952,3245311999,CZ 3245312000,3245314047,DE 3245314048,3245315071,PL 3245317120,3245318143,UA 3245318400,3245318655,RO 3245318656,3245318911,DK 3245318912,3245319167,DE 3245319168,3245319423,HR 3245319424,3245319679,SE 3245319680,3245319935,PL 3245319936,3245320191,DE 3245320448,3245320703,DE 3245321216,3245321471,NL 3245321472,3245321727,UA 3245321984,3245322239,DE 3245322240,3245323263,RU 3245324288,3245325311,GB 3245325312,3245326335,UA 3245326336,3245326847,SI 3245326848,3245327359,BG 3245327872,3245328383,DE 3245328384,3245328895,GB 3245328896,3245329407,CH 3245329408,3245329919,UA 3245329920,3245333503,DE 3245333504,3245334527,SI 3245334528,3245334783,HU 3245334784,3245335039,BE 3245335296,3245335551,GB 3245335552,3245335807,NL 3245336064,3245336575,GB 3245336576,3245336831,RO 3245337600,3245337855,PL 3245337856,3245338367,DE 3245338368,3245339647,UA 3245339648,3245340671,LV 3245341696,3245342719,RU 3245342720,3245867007,GB 3245867008,3245916159,IE 3245916160,3245917183,GB 3245917184,3245931263,IE 3245931264,3245931519,GB 3245931520,3245932543,IE 3245932544,3245998079,BE 3245998080,3246129151,GB 3246129152,3246163967,RU 3246163968,3246166015,DE 3246166016,3246191615,RU 3246191616,3246192639,DE 3246192640,3246260223,RU 3246260224,3246325759,PT 3246351616,3246352639,ES 3246370816,3246371073,ES 3246371074,3246371074,PT 3246371075,3246374911,ES 3246376960,3246377215,ES 3246378752,3246379007,ES 3246379008,3246381055,GB 3246387200,3246388223,GB 3246391296,3246613503,GB 3246613504,3246614527,HU 3246614528,3246784511,GB 3246784512,3246825983,CH 3246825984,3246826239,US 3246826240,3246915583,CH 3246915584,3247046655,PT 3247046656,3247046911,AT 3247046912,3247047679,SI 3247048192,3247048703,NO 3247048704,3247048959,EE 3247048960,3247049215,SI 3247049216,3247053823,DE 3247054080,3247054335,CH 3247054336,3247054591,LT 3247054592,3247054847,DE 3247054848,3247063039,SI 3247063040,3247063295,FR 3247063296,3247063551,PL 3247063552,3247063807,DE 3247063808,3247064063,BG 3247064064,3247064319,DE 3247064320,3247064575,CH 3247064576,3247064831,RU 3247064832,3247065087,SE 3247065344,3247065599,CH 3247065600,3247065855,SE 3247066112,3247066367,DK 3247066368,3247066623,LV 3247066624,3247066879,CZ 3247066880,3247067135,RU 3247067136,3247067647,DE 3247067648,3247067903,RU 3247067904,3247068159,CH 3247068160,3247068415,UA 3247068672,3247068927,GB 3247068928,3247069183,UA 3247069184,3247069439,DE 3247069440,3247069695,RU 3247069696,3247069951,NL 3247069952,3247070207,DE 3247070208,3247070463,IL 3247070464,3247070719,UA 3247070720,3247070975,AT 3247070976,3247071231,GB 3247071232,3247071487,DE 3247071488,3247072255,RO 3247072256,3247072511,IE 3247072512,3247072767,BE 3247072768,3247073023,SE 3247073024,3247073279,RO 3247073280,3247073535,DE 3247073536,3247073791,AT 3247073792,3247074047,CZ 3247074048,3247074303,GB 3247074304,3247074559,DE 3247074560,3247074815,SE 3247074816,3247075071,PL 3247075328,3247076095,DE 3247076096,3247076351,DK 3247076352,3247076607,TR 3247076608,3247076863,DE 3247076864,3247077119,PL 3247077120,3247077375,DE 3247078144,3247078399,AT 3247078400,3247078655,DK 3247078656,3247078911,HU 3247078912,3247079167,FI 3247079168,3247079423,HU 3247079424,3247080447,RU 3247080448,3247081471,UA 3247081472,3247083519,PL 3247083520,3247084543,UA 3247084544,3247085567,RU 3247085568,3247086591,CZ 3247086592,3247087615,DE 3247087616,3247088639,IT 3247088640,3247089663,DE 3247091712,3247092735,RU 3247092736,3247093759,DE 3247093760,3247094783,UA 3247094784,3247095807,LV 3247095808,3247097855,RO 3247097856,3247098879,FI 3247098880,3247099903,NL 3247099904,3247100927,PL 3247100928,3247101951,CH 3247101952,3247102975,SE 3247102976,3247106047,NL 3247106048,3247107071,RU 3247107072,3247108095,UA 3247108096,3247109119,PL 3247109120,3247110143,UA 3247110144,3247111167,NL 3247112192,3247177727,FR 3247177728,3247243263,TR 3247243264,3247244287,DE 3247244288,3247250175,NL 3247250176,3247250431,DE 3247250432,3247253503,NL 3247253504,3247254527,DE 3247254528,3247267839,NL 3247267840,3247268351,DE 3247268352,3247289855,NL 3247289856,3247290111,DE 3247290112,3247290367,NL 3247290368,3247291391,DE 3247291392,3247292415,NL 3247292416,3247300607,DE 3247300608,3247308799,NL 3247308800,3247309055,BG 3247309056,3247309567,FI 3247309824,3247313407,FI 3247313664,3247313919,AM 3247314688,3247315967,FI 3247316480,3247316735,IR 3247316736,3247316991,RU 3247321600,3247322111,FI 3247322368,3247322623,DE 3247322880,3247323135,FI 3247323136,3247323647,RU 3247324416,3247324671,SE 3247324672,3247324927,CH 3247325184,3247333631,FI 3247333632,3247333887,DE 3247333888,3247334399,FI 3247334400,3247334655,NO 3247334656,3247335167,FI 3247335168,3247335423,DK 3247335424,3247336447,DE 3247336448,3247337215,NO 3247337216,3247337471,CH 3247337472,3247337983,PL 3247337984,3247338239,UA 3247338240,3247338495,PL 3247338496,3247338751,SI 3247339008,3247339519,GB 3247339520,3247340543,FI 3247340544,3247340799,UA 3247340800,3247341055,CH 3247341312,3247341567,DE 3247343616,3247345663,FI 3247345920,3247346175,HU 3247346944,3247347199,SI 3247347200,3247347455,FI 3247347456,3247347711,IL 3247347968,3247348223,HU 3247348992,3247349247,DE 3247349248,3247349503,FR 3247349504,3247349759,UA 3247349760,3247353855,SE 3247353856,3247357951,FI 3247361024,3247361279,FI 3247362048,3247362303,RO 3247362304,3247362559,HU 3247362560,3247362815,PL 3247362816,3247363071,DK 3247363072,3247363327,GB 3247363328,3247363583,UA 3247363584,3247363839,HU 3247363840,3247364095,NL 3247364096,3247364351,GB 3247364352,3247364607,ES 3247364608,3247365119,UA 3247365120,3247365375,GB 3247365376,3247365631,UA 3247365632,3247365887,SA 3247366144,3247370495,FI 3247371008,3247371263,PL 3247371264,3247371519,SE 3247371520,3247371775,GB 3247371776,3247372031,RU 3247372032,3247372287,FI 3247372288,3247372543,RO 3247372800,3247373055,RO 3247373056,3247373567,FI 3247374336,3247374591,RU 3247375360,3247375871,FI 3247376384,3247378431,FI 3247379200,3247379455,FI 3247382528,3247390719,FI 3247392256,3247393791,FI 3247394048,3247394303,PL 3247394560,3247397887,FI 3247397888,3247398143,RU 3247398144,3247398911,FI 3247399424,3247399679,RU 3247399680,3247404799,FI 3247404800,3247405055,RU 3247405056,3247405311,RO 3247405312,3247405567,PL 3247405568,3247405823,DE 3247406080,3247431679,FI 3247431936,3247432191,FI 3247432192,3247432447,TR 3247432704,3247433471,FI 3247433728,3247437823,FI 3247438080,3247438335,IT 3247438848,3247439871,FI 3247439872,3247702015,ES 3247702016,3247702271,RO 3247702528,3247703295,ES 3247703552,3247704063,FR 3247705856,3247706111,RU 3247708160,3247711743,ES 3247711744,3247712255,IT 3247713280,3247713535,RU 3247713536,3247713791,BE 3247713792,3247714047,SK 3247726592,3247742975,ES 3247742976,3247751167,DE 3247751168,3247769599,ES 3247769600,3247771647,DE 3247775744,3247783935,DE 3247783936,3247792127,GB 3247792128,3247800319,FR 3247800320,3247816703,DK 3247818752,3247820799,BE 3247820800,3247821823,CH 3247826944,3247828991,CH 3247828992,3247833087,BE 3247833088,3247833599,RU 3247833600,3247834111,PL 3247834112,3247834623,DE 3247834624,3247835135,UA 3247835136,3247836159,GB 3247836160,3247837183,CZ 3247837184,3247838207,ES 3247838208,3247838463,RU 3247838464,3247838719,PL 3247838720,3247839231,NO 3247839232,3247839743,CZ 3247839744,3247840255,GB 3247840256,3247841279,UA 3247841280,3247841791,RU 3247841792,3247842047,GB 3247842048,3247842303,CZ 3247842304,3247842815,PL 3247842816,3247843327,CZ 3247843328,3247843583,LT 3247843584,3247845375,PL 3247845376,3247845631,CH 3247845632,3247845887,UA 3247845888,3247846399,PL 3247846400,3247847423,RU 3247847424,3247848447,UA 3247848448,3247849471,IT 3247849472,3247849727,DE 3247849728,3247849983,RU 3247849984,3247850239,SE 3247850240,3247850495,BG 3247850496,3247850751,RU 3247850752,3247851007,PL 3247851008,3247851519,RU 3247851520,3247852543,SK 3247852544,3247853567,PL 3247853568,3247854591,RU 3247854592,3247855615,DK 3247855616,3247856127,UA 3247856128,3247856639,ES 3247856640,3247857663,RU 3247857664,3247858175,UA 3247858688,3247859711,RU 3247859712,3247859967,SE 3247859968,3247861759,RU 3247861760,3247862015,IT 3247862016,3247862271,UA 3247862272,3247864063,RU 3247864064,3247864319,NO 3247864320,3247864575,UA 3247864576,3247864831,PL 3247864832,3247865343,RU 3247865344,3247865599,MT 3247865600,3247865855,IL 3247865856,3247871999,GB 3247872000,3247875327,NL 3247875328,3247875583,PL 3247875584,3247876095,DE 3247876352,3247876607,FR 3247877120,3247877631,GR 3247877632,3247879167,AT 3247879168,3247882239,GB 3247882240,3247898623,SE 3247898624,3247899647,RU 3247899648,3247900671,DE 3247900672,3247901695,PL 3247901696,3247902719,UA 3247902720,3247903743,GB 3247903744,3247904767,BG 3247904768,3247905791,RU 3247905792,3247906815,RO 3247906816,3247907839,DE 3247907840,3247908863,PL 3247908864,3247909887,BY 3247909888,3247910911,DE 3247910912,3247912959,PL 3247912960,3247913983,UA 3247913984,3247914495,DE 3247914496,3247915007,AT 3247915008,3247917055,PL 3247917056,3247918079,NL 3247918080,3247919103,PL 3247919104,3247920127,BG 3247920128,3247921151,FR 3247921152,3247922175,UA 3247922176,3247923199,SE 3247923200,3247925247,PL 3247925248,3247926271,UA 3247926272,3247927295,RU 3247927296,3247928319,PL 3247928320,3247929343,HU 3247929344,3247931391,GB 3247931392,3247939583,IR 3247939584,3247947775,UA 3247947776,3247960063,RU 3247960064,3247962111,UA 3247962112,3247963135,DE 3247963136,3247964159,UA 3247964160,3248095231,ES 3248095232,3248160767,AT 3248160768,3248226303,DE 3248226304,3248357375,NO 3248357376,3248488447,DE 3248488448,3248488703,FR 3248488704,3248490495,NO 3248490752,3248491007,NO 3248491520,3248492031,RU 3248493568,3248493823,NO 3248494592,3248496127,NO 3248496896,3248497151,IL 3248497152,3248498431,NO 3248498432,3248498687,DE 3248498688,3248504831,NO 3248513280,3248513535,UA 3248513536,3248514047,AT 3248514816,3248521215,NO 3248521984,3248522239,RU 3248522240,3248522751,NO 3248523264,3248524287,NO 3248526336,3248527359,NO 3248528384,3248528895,NO 3248528896,3248529151,RU 3248529408,3248540671,NO 3248540672,3248541183,RU 3248541184,3248541695,SE 3248545792,3248546815,UA 3248546816,3248547839,RU 3248549632,3248549887,SE 3248551936,3248553215,NO 3248553728,3248553983,RU 3248553984,3248554239,RO 3248557056,3248558079,UA 3248558080,3248575487,NO 3248575488,3248576511,CZ 3248576512,3248586751,NO 3248589312,3248589823,NO 3248590848,3248591871,NO 3248592896,3248599039,NO 3248599040,3248603135,SE 3248603136,3248603391,BG 3248603392,3248603647,RU 3248603648,3248604159,NO 3248606976,3248608255,NO 3248609280,3248610303,NO 3248611328,3248619519,NO 3248619520,3248624383,DK 3248624384,3248624639,US 3248624640,3248626190,DK 3248626191,3248626191,US 3248626192,3248750591,DK 3248750592,3248750847,PT 3248752640,3248752895,DE 3248752896,3248753151,TR 3248753408,3248753663,GB 3248753664,3248753919,FR 3248753920,3248754431,GB 3248754432,3248754687,AT 3248758784,3248774143,SE 3248774144,3248775167,UA 3248775168,3248783615,GB 3248783616,3248783871,PL 3248783872,3248784127,UA 3248784128,3248784895,DE 3248785408,3248785535,SI 3248785536,3248785663,RO 3248785664,3248786943,SI 3248786944,3248787199,PL 3248787200,3248787455,DE 3248787456,3248787711,NL 3248787712,3248787967,CH 3248787968,3248788223,RU 3248788224,3248788479,ES 3248788480,3248789503,FR 3248789760,3248790015,FR 3248790016,3248790271,DE 3248790272,3248790527,DK 3248790528,3248790783,FR 3248790784,3248791039,PL 3248791040,3248791295,BE 3248791296,3248791551,DE 3248791552,3248792063,GB 3248792320,3248792343,GB 3248792352,3248792407,GB 3248792416,3248792439,GB 3248792456,3248792463,GB 3248792480,3248792575,GB 3248796608,3248796863,GB 3248798976,3248799231,GB 3248799736,3248799743,GB 3248799744,3248800255,NL 3248800256,3248800767,RU 3248800768,3248801279,FR 3248801280,3248801791,RO 3248801792,3248802303,RU 3248802304,3248802815,FR 3248802816,3248803327,RU 3248803328,3248803839,GB 3248804352,3248804863,LV 3248804864,3248805375,DE 3248805376,3248805887,RU 3248805888,3248806399,NL 3248806400,3248806911,CZ 3248806912,3248807423,US 3248807936,3248808447,AT 3248808448,3248808959,GR 3248808960,3248810111,FR 3248810144,3248810175,CY 3248810176,3248810207,FR 3248810240,3248810495,CH 3248810496,3248812543,AT 3248812544,3248813055,GB 3248813056,3248813567,CH 3248813568,3248814079,DE 3248815104,3248815615,GB 3248815616,3248816127,PL 3248816128,3248881663,CZ 3248881664,3249012735,FI 3249012736,3249012991,DE 3249012992,3249013503,LU 3249014272,3249014783,DE 3249014784,3249025023,LU 3249025536,3249025791,FR 3249026560,3249026815,PL 3249027072,3249045503,LU 3249045504,3249078271,DE 3249078272,3249078783,RU 3249078784,3249079295,CH 3249079296,3249079807,RU 3249079808,3249080831,RO 3249080832,3249081343,DE 3249081344,3249081855,LV 3249081856,3249082367,GB 3249082368,3249082879,HU 3249082880,3249083391,PL 3249083392,3249083903,RO 3249083904,3249084927,RU 3249085440,3249085951,RU 3249085952,3249086463,GI 3249086464,3249088511,RU 3249088512,3249089023,NL 3249089024,3249089535,NO 3249089536,3249090047,RU 3249090048,3249090559,FR 3249090560,3249091071,SI 3249091072,3249091327,TR 3249091328,3249091583,NL 3249091584,3249092095,RU 3249092096,3249092607,DE 3249092608,3249093119,IT 3249093120,3249093631,GB 3249093632,3249094655,RU 3249094656,3249095679,FR 3249095680,3249096191,NL 3249096192,3249096703,IL 3249096704,3249097215,DE 3249097216,3249097727,DK 3249097728,3249098239,DE 3249098240,3249098751,PL 3249098752,3249099263,UA 3249099264,3249099775,CH 3249099776,3249100287,FI 3249100288,3249100799,UA 3249100800,3249101311,IL 3249101312,3249101823,GB 3249101824,3249102335,RU 3249102336,3249102847,DE 3249102848,3249103359,RU 3249103360,3249103871,DE 3249103872,3249104383,FI 3249104384,3249104895,RU 3249104896,3249105407,IL 3249105920,3249106431,NL 3249106432,3249106943,RU 3249106944,3249108479,PL 3249108480,3249108991,RU 3249108992,3249109503,GB 3249109504,3249110015,RU 3249110016,3249111039,UA 3249111040,3249111551,RU 3249111552,3249112063,KW 3249112064,3249113087,UA 3249113088,3249113599,RO 3249113600,3249114111,NL 3249114112,3249114623,GB 3249114624,3249115647,RO 3249115648,3249116159,UA 3249116160,3249116671,PL 3249116672,3249117183,IT 3249117184,3249117695,CH 3249117696,3249118207,DK 3249118208,3249118719,RO 3249118720,3249119231,LU 3249119232,3249119743,RU 3249119744,3249120255,IT 3249120256,3249120767,SE 3249120768,3249121279,LV 3249121280,3249121791,DE 3249122304,3249124351,RU 3249124352,3249124863,DE 3249124864,3249125375,CZ 3249125376,3249125887,DE 3249125888,3249126399,CH 3249126400,3249126911,UA 3249126912,3249127423,SA 3249127424,3249127935,GB 3249127936,3249128447,LV 3249128448,3249128959,DE 3249128960,3249129471,BG 3249129472,3249130495,RU 3249130496,3249131007,DE 3249131008,3249131519,GB 3249131520,3249132031,DK 3249132032,3249132543,RU 3249132544,3249133055,DE 3249133056,3249133567,UA 3249133568,3249134079,GB 3249134592,3249135615,RU 3249135616,3249136127,GB 3249136128,3249137151,RU 3249137152,3249137663,FR 3249137664,3249138175,PL 3249138176,3249138687,RU 3249138688,3249139199,GB 3249139712,3249140223,UA 3249140224,3249140735,IT 3249140736,3249141247,NL 3249141248,3249141759,IL 3249141760,3249142271,RU 3249142784,3249143295,UA 3249143296,3249143807,GB 3249143808,3249274879,AT 3249274880,3249405951,NL 3249405952,3249521279,DE 3249521280,3249521343,UA 3249521344,3249537023,DE 3249537024,3249537279,PT 3249537792,3249538047,GB 3249538304,3249541119,NL 3249545216,3249547263,NL 3249548288,3249551359,NL 3249551360,3249552639,GB 3249552640,3249552895,NL 3249553152,3249553407,NL 3249561600,3249565695,NL 3249569792,3249574143,NL 3249574144,3249574399,RU 3249574400,3249574655,SE 3249574656,3249574911,RU 3249574912,3249576191,NL 3249577728,3249583103,NL 3249585152,3249590527,NL 3249590528,3249590783,FR 3249592320,3249595135,NL 3249596416,3249598463,NL 3249600256,3249600511,AT 3249600512,3249601535,UA 3249601536,3249601791,RU 3249601792,3249602047,NL 3249602304,3249635327,NL 3249637376,3249644543,NL 3249645056,3249650687,NL 3249651712,3249655807,NL 3249659904,3249668095,NL 3249668096,3249676287,IE 3249676288,3249676543,GB 3249676800,3249677055,UA 3249677056,3249677311,SE 3249678336,3249678847,IE 3249681664,3249681919,IE 3249683456,3249684479,SE 3249684480,3249696767,IE 3249697280,3249697535,IE 3249697792,3249698047,IE 3249698048,3249698303,PL 3249698304,3249698559,RU 3249698560,3249698815,HU 3249701120,3249701631,SE 3249701632,3249701887,RU 3249701888,3249702143,PL 3249702144,3249702399,FI 3249702400,3249702655,FR 3249702656,3249702911,RU 3249702912,3249703167,FR 3249703424,3249703679,FR 3249703936,3249704191,FR 3249704192,3249704447,RO 3249704704,3249704959,PL 3249704960,3249705983,UA 3249705984,3249706495,AT 3249706496,3249707007,LV 3249707008,3249707519,BG 3249707520,3249708031,FR 3249708032,3249708543,CH 3249708544,3249709055,RU 3249709056,3249709311,AT 3249709312,3249709567,PL 3249709568,3249709823,UA 3249709824,3249710079,DE 3249710080,3249710335,PL 3249710336,3249710591,RO 3249710592,3249710847,BG 3249710848,3249711103,PL 3249711104,3249711359,HU 3249711872,3249712127,AT 3249712384,3249712639,GB 3249712896,3249713151,DK 3249713152,3249715199,LV 3249715200,3249715455,AT 3249715456,3249715711,DE 3249715712,3249715967,NL 3249715968,3249716223,UA 3249716224,3249716479,SI 3249716480,3249716735,NL 3249716736,3249717247,UA 3249717248,3249718271,LV 3249719296,3249720319,IR 3249720320,3249721343,IT 3249721344,3249721599,AT 3249721600,3249721855,BE 3249721856,3249722367,FR 3249722624,3249723135,PL 3249723136,3249723391,RU 3249723392,3249723647,IT 3249723648,3249723903,GB 3249724160,3249724415,LU 3249724672,3249724927,RU 3249724928,3249725183,BG 3249725184,3249725439,GB 3249725440,3249725951,RO 3249725952,3249726463,DE 3249726464,3249726975,UA 3249727488,3249727999,LV 3249728000,3249728511,IT 3249728512,3249729023,UA 3249729024,3249729535,GB 3249729536,3249730559,PL 3249730560,3249731583,IT 3249731584,3249732607,UA 3249732608,3249733631,IT 3249733632,3249799167,CZ 3249799168,3249802239,SE 3249802240,3249802751,DE 3249802752,3249828607,SE 3249828608,3249828863,AT 3249828864,3249829375,DE 3249829376,3249829631,AT 3249829632,3249829887,SE 3249829888,3249830143,GB 3249830144,3249830399,SE 3249830400,3249830655,IT 3249830656,3249830911,DK 3249830912,3249844479,SE 3249844480,3249844735,AT 3249844736,3249844991,AU 3249844992,3249845759,SE 3249845760,3249846271,DE 3249846272,3249850623,SE 3249850624,3249850879,GB 3249850880,3249854719,SE 3249854720,3249854975,US 3249854976,3249855487,SE 3249855488,3249856511,NL 3249856512,3249859583,SE 3249859584,3249860095,DE 3249860096,3249861375,SE 3249861376,3249861631,BE 3249861632,3249862143,DE 3249862144,3249862655,SE 3249862656,3249863167,DE 3249863168,3249863423,BE 3249863424,3249863679,SE 3249863680,3249863935,ES 3249863936,3249865471,SE 3249865472,3249865727,GB 3249865728,3249868031,SE 3249868032,3249868287,DK 3249868288,3249868543,SE 3249868544,3249868799,DE 3249868800,3249869823,NL 3249869824,3249871103,SE 3249871104,3249871359,NO 3249871360,3249871615,US 3249871616,3249871871,NO 3249871872,3249872383,SE 3249872384,3249872639,GB 3249872640,3249910271,SE 3249910272,3249910783,NL 3249910784,3249924607,SE 3249924608,3249924863,NO 3249924864,3249926143,SE 3249926144,3249926399,AU 3249926400,3249926655,SE 3249926656,3249926911,BE 3249926912,3249929471,SE 3249929472,3249929983,CA 3249929984,3249930239,NO 3249930240,3249931263,SE 3249931264,3249931775,NL 3249931776,3249932287,SE 3249932288,3249934335,US 3249934336,3249934847,IT 3249934848,3249935871,SE 3249935872,3249936383,DE 3249936384,3249960447,SE 3249960448,3249960959,DE 3249960960,3249961215,CA 3249961216,3249961471,SE 3249961472,3249961727,NL 3249961728,3249967103,SE 3249967104,3249967615,IL 3249967616,3249967871,GB 3249967872,3249968127,SE 3249968128,3249969151,FR 3249969152,3249969663,SE 3249969664,3249970175,DE 3249970176,3249971199,SE 3249971200,3249971455,IT 3249971456,3249971711,SE 3249971712,3249972735,DE 3249972736,3249974527,SE 3249974528,3249974783,ES 3249974784,3249976063,SE 3249976064,3249976319,FR 3249976320,3249976831,SE 3249976832,3249977087,GB 3249977088,3249991679,SE 3249991680,3249991935,US 3249991936,3249993215,SE 3249993216,3249993471,NL 3249993472,3249993727,SE 3249993728,3249994239,DE 3249994240,3249994495,CH 3249994496,3249995263,SE 3249995264,3249995519,GB 3249995520,3249997055,SE 3249997056,3249997311,US 3249997312,3250000127,SE 3250000128,3250000383,GB 3250000384,3250007295,SE 3250007296,3250007551,GB 3250007552,3250010367,SE 3250010368,3250010879,CH 3250010880,3250012159,SE 3250012160,3250013183,DE 3250013184,3250014207,SE 3250014208,3250014719,DE 3250014720,3250015231,SE 3250015232,3250015743,FI 3250015744,3250016767,SE 3250016768,3250017023,NL 3250017024,3250017791,SE 3250017792,3250018303,DE 3250018304,3250020863,SE 3250020864,3250021375,IT 3250021376,3250022399,FR 3250022400,3250023423,SE 3250023424,3250024447,DE 3250024448,3250026495,SE 3250026496,3250027519,FR 3250027520,3250030335,SE 3250030336,3250030591,DK 3250030592,3250031103,DE 3250031104,3250031359,DK 3250031360,3250031615,US 3250031616,3250035455,SE 3250035456,3250035711,US 3250035712,3250038271,SE 3250038272,3250039295,ES 3250039296,3250039807,SE 3250039808,3250040319,GB 3250040320,3250042623,SE 3250042624,3250043135,FR 3250043136,3250061311,SE 3250061312,3250192383,FI 3250192384,3250192639,AT 3250192640,3250192895,RU 3250192896,3250193151,IL 3250193152,3250193407,DE 3250193408,3250193663,PL 3250193664,3250194175,AT 3250194176,3250194431,DE 3250194432,3250194687,FR 3250194688,3250194943,UA 3250194944,3250195199,RO 3250195456,3250195711,DE 3250195712,3250195967,GB 3250196224,3250196479,UA 3250196480,3250200575,AT 3250200576,3250200831,HU 3250200832,3250201087,RO 3250201088,3250201343,RU 3250201344,3250201599,DK 3250201600,3250202111,NL 3250202112,3250202367,BG 3250202368,3250202623,PL 3250202624,3250233343,AT 3250233600,3250233855,AT 3250233856,3250234111,GB 3250234112,3250234367,GR 3250234368,3250241535,AT 3250245632,3250245887,TR 3250245888,3250246143,AT 3250246144,3250246399,GB 3250246656,3250257151,AT 3250257408,3250257663,AT 3250257664,3250257919,PL 3250258432,3250271231,AT 3250271232,3250271743,PL 3250271744,3250271999,LB 3250272000,3250272255,GB 3250272256,3250274303,SK 3250274304,3250276351,PL 3250276352,3250276607,GB 3250276608,3250276863,RU 3250276864,3250277375,IT 3250277376,3250277631,UA 3250277632,3250277887,DE 3250277888,3250278399,UA 3250278400,3250279423,RU 3250279424,3250298879,AT 3250308096,3250323199,AT 3250323200,3250323455,RU 3250323456,3250323711,PL 3250324480,3250324991,GB 3250324992,3250325247,AE 3250325248,3250325503,MA 3250326528,3250327039,BH 3250331648,3250335743,MT 3250335744,3250339839,KW 3250339840,3250348031,JO 3250348032,3250356223,BH 3250356224,3250357247,LB 3250357248,3250357823,GB 3250357824,3250357855,FR 3250357856,3250357871,EE 3250357872,3250357879,CH 3250357880,3250357887,SE 3250357888,3250357895,DK 3250357904,3250357919,FR 3250357920,3250357927,PL 3250357928,3250357959,CY 3250358016,3250358527,LB 3250358528,3250358783,HU 3250359296,3250359807,HU 3250359808,3250362879,KW 3250362880,3250363391,DE 3250363392,3250363903,SE 3250363904,3250364415,DE 3250364416,3250372607,KW 3250372608,3250373631,HU 3250373632,3250374143,DE 3250374144,3250374655,PL 3250374656,3250375679,SE 3250375680,3250376703,GB 3250376704,3250380799,AT 3250380800,3250386943,CH 3250386944,3250387199,SE 3250387200,3250387455,FR 3250387456,3250387711,DE 3250388224,3250388479,PL 3250388480,3250388735,UA 3250388736,3250388991,FR 3250388992,3250405887,NG 3250405888,3250406399,IE 3250406400,3250406911,RU 3250406912,3250407423,RO 3250407424,3250407935,PL 3250407936,3250408447,GB 3250408448,3250408959,PL 3250408960,3250409471,DE 3250409472,3250409983,GB 3250409984,3250410495,DE 3250411008,3250411519,LT 3250411520,3250412031,RU 3250412544,3250413055,DK 3250413056,3250413567,DE 3250413568,3250414079,UA 3250414080,3250414591,RO 3250414592,3250415103,SE 3250415104,3250415359,NL 3250415360,3250415615,PL 3250415616,3250416127,FR 3250416128,3250417663,DE 3250417664,3250418175,IT 3250418176,3250418687,DE 3250418688,3250419199,PL 3250419712,3250420223,RU 3250420224,3250420735,IR 3250420736,3250421247,FR 3250421248,3250421759,UA 3250421760,3250422015,NG 3250422016,3250423295,GB 3250423296,3250423551,NL 3250423552,3250423807,BE 3250423808,3250424063,AT 3250424064,3250424319,SI 3250424320,3250424575,RU 3250424576,3250424831,NL 3250424832,3250425343,GB 3250425344,3250425599,TR 3250425600,3250425855,FR 3250425856,3250426111,LT 3250426368,3250426623,AT 3250426624,3250426879,BE 3250426880,3250427135,JO 3250427136,3250427391,NL 3250427392,3250429951,DE 3250429952,3250438143,SI 3250438144,3250446335,CH 3250446336,3250454527,DE 3250454528,3250585599,BE 3250585600,3250585855,NL 3250586624,3250588671,PT 3250588800,3250588927,CY 3250588928,3250589183,GB 3250589184,3250589439,DE 3250589504,3250589567,HR 3250589696,3250593791,CH 3250593792,3250594815,GB 3250594816,3250595327,UA 3250595328,3250595839,GR 3250595840,3250596351,DE 3250596352,3250597887,RO 3250597888,3250598399,BG 3250598400,3250598911,GB 3250598912,3250599423,RO 3250599424,3250599935,SE 3250599936,3250600447,BG 3250600448,3250601471,DE 3250601472,3250601983,PL 3250601984,3250610175,GB 3250610176,3250618367,TR 3250618368,3250626559,RU 3250626560,3250634751,PL 3250634752,3250642943,GB 3250642944,3250651135,CH 3250651136,3250659327,IT 3250659328,3250660607,GB 3250667520,3250675711,PL 3250675712,3250683903,GB 3250683904,3250692095,CH 3250692352,3250692607,NL 3250693376,3250693631,UA 3250693632,3250694143,DE 3250694144,3250694399,PL 3250694400,3250694655,GB 3250694656,3250694911,SK 3250694912,3250695167,NL 3250695168,3250695679,IT 3250695680,3250697471,DE 3250697472,3250697727,PL 3250697984,3250698239,IT 3250698240,3250698751,GR 3250698752,3250699263,RU 3250699264,3250699775,GB 3250699776,3250700287,DE 3250700288,3250708479,UA 3250708480,3250716671,KZ 3250716672,3250716927,RO 3250716928,3250718207,MA 3250718208,3250720767,DE 3250720768,3250722047,IT 3250722048,3250722303,RO 3250722304,3250724863,GB 3250724864,3250733055,MA 3250733056,3250741247,DZ 3250741248,3250742783,RU 3250742784,3250743551,AT 3250743552,3250743807,CY 3250743808,3250746367,UA 3250746368,3250747391,NL 3250747392,3250747903,SI 3250747904,3250748159,SA 3250748160,3250748415,PL 3250748416,3250749439,UA 3250749440,3250749695,GH 3250749696,3250749951,IT 3250750464,3250751487,FR 3250751488,3250751743,DE 3250752000,3250752511,CH 3250752512,3250753023,BG 3250753536,3250754047,DE 3250754048,3250754303,AT 3250754560,3250755071,DE 3250755584,3250755839,FR 3250755840,3250756351,RU 3250756608,3250756863,BG 3250756864,3250757119,DE 3250757120,3250757375,BE 3250757376,3250757631,HU 3250757632,3250765823,GH 3250765824,3250782207,SE 3250782208,3250847743,GB 3250847744,3250978815,DE 3250978816,3251044351,HR 3251044352,3251109887,FI 3251110656,3251110911,IT 3251110912,3251111167,FR 3251111168,3251111423,CH 3251111424,3251111679,AT 3251111680,3251111935,ES 3251112192,3251112447,SK 3251112448,3251112703,RU 3251112704,3251112959,SE 3251113472,3251113983,BG 3251114496,3251114751,RU 3251114752,3251115007,RO 3251115008,3251115263,PL 3251115264,3251115519,RU 3251115520,3251115775,UA 3251115776,3251116031,BE 3251116288,3251116543,GB 3251117056,3251117311,BG 3251117312,3251117567,FR 3251117568,3251117823,IL 3251117824,3251118079,SE 3251118080,3251118591,UA 3251118592,3251119103,RU 3251119104,3251120127,UA 3251120128,3251120639,KW 3251120640,3251121151,FR 3251121152,3251121663,DK 3251121664,3251122175,PL 3251122176,3251122687,CH 3251122688,3251123199,PL 3251123712,3251124223,RU 3251124736,3251125247,FR 3251125248,3251125759,BE 3251126272,3251126783,UA 3251126784,3251127295,PL 3251127296,3251127807,UA 3251127808,3251128319,NL 3251129344,3251129855,UA 3251129856,3251130367,CH 3251130368,3251130879,GB 3251130880,3251131391,PL 3251131392,3251131903,UA 3251131904,3251132415,SE 3251132416,3251132927,RU 3251132928,3251133439,DK 3251133440,3251133951,NO 3251133952,3251134463,RU 3251134464,3251136511,GB 3251136512,3251137023,DK 3251137024,3251137535,DE 3251137536,3251138047,PL 3251138048,3251138559,FR 3251138560,3251139071,AT 3251139072,3251139583,GB 3251139584,3251140095,FR 3251140096,3251141631,PL 3251141632,3251142143,LT 3251142144,3251142655,RO 3251142656,3251142911,DE 3251142912,3251143167,RU 3251143424,3251143679,LV 3251143680,3251143935,NL 3251143936,3251144191,PL 3251144448,3251144703,BE 3251144704,3251144959,HU 3251144960,3251145471,DE 3251145472,3251145727,FR 3251145728,3251145983,NL 3251145984,3251146239,RO 3251146240,3251146495,AT 3251146496,3251146751,SK 3251146752,3251147007,CH 3251147008,3251147263,GB 3251147264,3251147519,PL 3251147520,3251147775,NL 3251147776,3251148031,SE 3251148544,3251148799,UA 3251149056,3251149311,NL 3251149312,3251149567,DE 3251149568,3251149823,IE 3251149824,3251150079,DE 3251150080,3251150335,CH 3251150336,3251150591,GB 3251150848,3251151103,DE 3251151104,3251151359,UA 3251151360,3251151615,DE 3251151872,3251152127,NL 3251152128,3251152639,RO 3251152896,3251153151,RU 3251153408,3251153663,TR 3251153664,3251153919,FR 3251153920,3251154175,DE 3251154176,3251154431,UA 3251154432,3251154687,NL 3251154688,3251154943,UA 3251154944,3251155455,GB 3251155456,3251155711,NL 3251155712,3251155967,UA 3251155968,3251156223,TR 3251156480,3251156735,FR 3251156736,3251156991,UA 3251156992,3251157247,FR 3251157248,3251157503,BE 3251157504,3251158015,PL 3251158016,3251158271,TR 3251158272,3251158527,RU 3251158528,3251158783,UA 3251158784,3251159295,GB 3251159296,3251159551,DE 3251159808,3251160063,DE 3251160320,3251160575,PL 3251160576,3251160831,NL 3251160832,3251161087,RU 3251161088,3251161343,RO 3251161344,3251161599,LV 3251161600,3251161855,SE 3251161856,3251162111,HR 3251162112,3251162367,DK 3251162368,3251162623,UA 3251162624,3251162879,DE 3251162880,3251163135,SI 3251163136,3251163391,SE 3251163392,3251163647,UA 3251163648,3251163903,DE 3251163904,3251164159,RU 3251164160,3251164415,UA 3251164416,3251164671,IT 3251164672,3251164927,NL 3251164928,3251165439,PL 3251165696,3251165951,DE 3251165952,3251166207,UA 3251166208,3251166463,CH 3251166720,3251166975,FR 3251166976,3251167231,CH 3251167232,3251167487,LV 3251167488,3251167743,DK 3251167744,3251168255,PL 3251168256,3251168511,AT 3251168512,3251168767,UA 3251168768,3251169023,DE 3251169024,3251169279,FR 3251169280,3251170047,PL 3251170048,3251170303,NO 3251170304,3251170559,CH 3251170560,3251170815,BG 3251171072,3251171327,RU 3251171328,3251171839,DE 3251171840,3251172095,RO 3251172096,3251172351,ES 3251172608,3251172863,GB 3251173120,3251173375,SA 3251173376,3251173631,UA 3251173632,3251173887,DE 3251173888,3251174143,DK 3251174656,3251174911,DE 3251174912,3251175167,RO 3251175168,3251175423,UA 3251175424,3251177471,FR 3251177472,3251179519,DE 3251179520,3251180031,SE 3251180032,3251180543,PL 3251180544,3251181055,RO 3251181056,3251181567,GR 3251181568,3251182079,DE 3251182080,3251182591,FR 3251182592,3251183103,IT 3251183104,3251183615,RU 3251183616,3251183871,LT 3251183872,3251184127,CH 3251184128,3251184383,PL 3251184640,3251184895,PL 3251185408,3251185663,DK 3251185664,3251185919,IT 3251185920,3251186175,AT 3251186176,3251186431,GB 3251186432,3251186687,SE 3251186688,3251186943,RO 3251186944,3251187199,SI 3251187456,3251187711,GB 3251187712,3251188735,NL 3251188736,3251189759,DE 3251190784,3251191807,UA 3251191808,3251192319,GB 3251192320,3251192831,LV 3251192832,3251193343,BE 3251193344,3251193855,GB 3251194368,3251194879,NO 3251194880,3251195391,FR 3251195392,3251195903,CZ 3251195904,3251196927,UA 3251196928,3251197951,CH 3251197952,3251198975,RU 3251198976,3251199999,DE 3251200000,3251200511,SE 3251200512,3251200767,UA 3251201024,3251201279,UA 3251201280,3251201535,SI 3251201536,3251201791,AT 3251201792,3251202047,FR 3251202048,3251202303,NL 3251202304,3251202559,UA 3251202560,3251202815,AT 3251202816,3251203327,ES 3251203328,3251203583,SI 3251203584,3251203839,CZ 3251203840,3251204095,RU 3251205120,3251205631,UA 3251205632,3251206143,RU 3251206144,3251206655,GB 3251206656,3251207167,CH 3251207168,3251207679,GB 3251208192,3251209215,CY 3251209216,3251210239,GB 3251210240,3251211263,PL 3251211264,3251212287,BG 3251212288,3251212415,PL 3251212416,3251212671,FI 3251212800,3251212927,FR 3251212928,3251213055,RO 3251213056,3251213119,SE 3251213120,3251213151,NL 3251213152,3251213183,FR 3251213184,3251213215,UA 3251213216,3251213247,CY 3251213280,3251213311,GB 3251213312,3251213375,CY 3251213376,3251213439,DE 3251213504,3251213567,NL 3251213632,3251213695,PL 3251213760,3251213823,CY 3251213824,3251213887,GB 3251213888,3251214015,CY 3251214080,3251214143,CY 3251214272,3251214335,DE 3251214336,3251214463,RU 3251214464,3251214591,UA 3251214592,3251214975,GB 3251214976,3251215103,RO 3251215232,3251215359,IL 3251215360,3251215487,UA 3251215488,3251215615,SE 3251215616,3251215743,CY 3251215872,3251216127,RO 3251216256,3251216383,RU 3251216384,3251216639,GB 3251216640,3251216895,RO 3251216896,3251217151,NL 3251217152,3251217407,GB 3251217408,3251217663,PL 3251217664,3251217919,SI 3251217920,3251218175,GR 3251218176,3251218431,PL 3251218432,3251219199,DE 3251219200,3251219455,IT 3251219456,3251219711,BG 3251219712,3251220223,AT 3251220224,3251220479,UA 3251220480,3251222527,DE 3251222528,3251224575,GB 3251225600,3251226111,GB 3251226112,3251226623,UA 3251226624,3251227135,GB 3251227648,3251228159,GB 3251228160,3251228671,UA 3251229696,3251230719,SI 3251230720,3251231743,UA 3251231744,3251232767,NO 3251232768,3251233791,UA 3251233792,3251234815,RU 3251234816,3251235839,RO 3251235840,3251236863,DE 3251236864,3251237887,BG 3251240960,3251241215,BE 3251241216,3251243007,GB 3251245056,3251245311,DE 3251245312,3251245567,BE 3251245568,3251245823,TR 3251245824,3251246079,DK 3251246080,3251246335,DE 3251246336,3251246591,UA 3251246592,3251246847,RO 3251246848,3251247103,NL 3251247104,3251249151,DE 3251249152,3251251199,NL 3251252736,3251256831,CH 3251256832,3251257343,GB 3251257344,3251259903,BE 3251260416,3251261439,FR 3251264256,3251265535,FR 3251265536,3251267839,NL 3251267840,3251268351,GB 3251268352,3251268607,NL 3251268608,3251268863,BG 3251268864,3251269119,NL 3251269120,3251269375,DK 3251269376,3251269631,FR 3251269888,3251270143,GB 3251270144,3251270399,PL 3251270400,3251270655,NO 3251270656,3251270911,DE 3251270912,3251271167,PL 3251271168,3251271423,UA 3251271424,3251271679,DE 3251271680,3251271935,TR 3251271936,3251272191,FR 3251272192,3251272447,NL 3251272448,3251272703,AT 3251272704,3251272959,DE 3251272960,3251273471,FR 3251273472,3251286015,DE 3251286016,3251288063,US 3251288064,3251290111,SG 3251290112,3251302399,GB 3251302400,3251306495,LI 3251306496,3251307007,AT 3251307776,3251308031,GB 3251308032,3251308543,RS 3251311104,3251311615,RS 3251311616,3251312127,GB 3251312384,3251312639,RS 3251313152,3251313663,RS 3251314688,3251315711,FR 3251315712,3251317759,RU 3251317760,3251318783,PL 3251318784,3251319807,UA 3251320832,3251321855,PL 3251321856,3251322879,RU 3251322880,3251331071,GB 3251331072,3251331321,FR 3251331322,3251331322,GB 3251331323,3251331583,FR 3251331584,3251332095,PL 3251332096,3251333119,RU 3251333120,3251333631,CH 3251333632,3251334143,PT 3251334144,3251334655,FR 3251335168,3251335679,RU 3251335680,3251336191,RO 3251336192,3251336703,GB 3251336704,3251337215,ES 3251337216,3251337727,CH 3251337728,3251338239,DE 3251338240,3251339263,RU 3251339264,3251347455,IE 3251347456,3251355647,DE 3251355648,3251356159,GB 3251356160,3251356671,AT 3251356672,3251357183,EE 3251357184,3251357695,BG 3251357696,3251358207,ES 3251358208,3251358719,RU 3251358720,3251359231,RO 3251359232,3251360255,PL 3251360256,3251360767,GB 3251360768,3251361279,FR 3251361792,3251362303,AT 3251362304,3251362815,UA 3251362816,3251363327,NL 3251363328,3251363839,PL 3251364096,3251364607,NL 3251364608,3251364863,RO 3251364864,3251366911,IT 3251366912,3251367423,UA 3251367424,3251367935,DE 3251367936,3251372031,GB 3251372032,3251376127,IT 3251376128,3251378175,SI 3251378176,3251406847,IT 3251406848,3251407871,SI 3251407872,3251460095,IT 3251460096,3251462143,SI 3251462144,3251470335,IT 3251470336,3251472383,SI 3251472384,3251634175,IT 3251634176,3251896319,FI 3251896320,3252166655,NO 3252166656,3252167679,SE 3252167680,3252176127,NL 3252176128,3252177919,SE 3252177920,3252178943,HR 3252178944,3252179199,SE 3252179200,3252189183,NL 3252189184,3252190719,SE 3252190720,3252190975,NO 3252190976,3252191231,SE 3252191232,3252196351,HR 3252196352,3252197375,SE 3252197376,3252202495,HR 3252202496,3252203007,SE 3252203008,3252205567,HR 3252205568,3252205823,SE 3252205824,3252207615,NO 3252207616,3252211711,NL 3252211712,3252214271,NO 3252214272,3252214783,SE 3252214784,3252220927,NO 3252220928,3252223999,SE 3252224000,3252232320,NL 3252232321,3252233215,SE 3252233216,3252248575,NO 3252248576,3252256767,NL 3252256768,3252277247,NO 3252277248,3252277759,SE 3252277760,3252286463,HR 3252286464,3252287487,SE 3252287488,3252289535,LT 3252289536,3252289791,BG 3252289792,3252291327,GR 3252291584,3252293631,FR 3252293632,3252297727,DE 3252298752,3252299007,GR 3252299776,3252308223,GR 3252308224,3252308479,DE 3252308480,3252310527,GR 3252311040,3252313599,GR 3252313600,3252313855,SI 3252313856,3252314111,DE 3252314112,3252314623,GR 3252314624,3252314879,HU 3252314880,3252315135,GB 3252315136,3252316415,CH 3252316672,3252318463,GR 3252318464,3252318719,TR 3252318720,3252318975,GP 3252318976,3252319231,PL 3252319232,3252319743,AT 3252319744,3252319999,RU 3252320256,3252320511,CZ 3252320768,3252321023,GR 3252321280,3252321791,GR 3252321792,3252322303,PL 3252322304,3252323327,NO 3252323328,3252324351,PL 3252324352,3252326399,RU 3252326400,3252327423,DE 3252327424,3252329471,PL 3252329472,3252330495,UA 3252330496,3252334591,GB 3252334592,3252335615,PL 3252335616,3252336639,RU 3252336640,3252337663,UA 3252337664,3252338687,RU 3252338688,3252340735,BE 3252341248,3252341503,DE 3252342016,3252342079,GB 3252342080,3252342239,CY 3252342240,3252342271,CH 3252342272,3252342527,SE 3252342528,3252342543,NO 3252342544,3252342591,CH 3252342592,3252342607,IE 3252342608,3252342655,CY 3252342656,3252342783,IL 3252342784,3252346367,DE 3252346624,3252355071,GR 3252355072,3252356351,LT 3252357120,3252358911,LT 3252358912,3252359167,DE 3252359168,3252362239,DK 3252362240,3252362495,PL 3252362496,3252362751,IT 3252362752,3252363263,DK 3252363264,3252379647,LT 3252379648,3252379903,ES 3252379904,3252380159,GB 3252380160,3252380415,BE 3252380672,3252380927,SI 3252381184,3252381439,IT 3252381440,3252381695,ES 3252381696,3252381951,RU 3252381952,3252382207,DE 3252382208,3252382463,SI 3252382464,3252382719,PL 3252382720,3252382975,GB 3252382976,3252383231,IT 3252383232,3252383743,GB 3252383744,3252383999,SE 3252384000,3252384511,PL 3252384512,3252384767,GB 3252384768,3252385023,NL 3252385024,3252385279,RO 3252385280,3252385535,GB 3252385536,3252385791,RO 3252385792,3252386047,GB 3252386304,3252386559,GB 3252386560,3252386815,BE 3252386816,3252387071,UA 3252387072,3252387327,RU 3252387328,3252387583,PL 3252387584,3252387839,RU 3252387840,3252404223,LT 3252404224,3252405759,NO 3252405760,3252406271,FR 3252406272,3252407295,NO 3252407296,3252415487,FR 3252415488,3252415743,LT 3252415744,3252420607,FR 3252420608,3252424703,NO 3252424704,3252428321,FR 3252428322,3252428322,AO 3252428323,3252428799,FR 3252428800,3252429823,NO 3252429824,3252448511,FR 3252448512,3252448767,NO 3252448768,3252449791,FR 3252449792,3252450047,DK 3252450048,3252452543,FR 3252452544,3252452551,SS 3252452552,3252461567,FR 3252461568,3252469759,NO 3252469760,3252473855,NL 3252473856,3252475903,NO 3252475904,3252477951,FR 3252477952,3252486143,NO 3252486144,3252490239,BE 3252490240,3252496127,SE 3252496128,3252496383,AU 3252496384,3252500223,SE 3252500224,3252500479,GB 3252500480,3252505343,SE 3252505344,3252505599,US 3252505600,3252507135,SE 3252507136,3252507647,RO 3252507648,3252509951,GB 3252509952,3252510719,CH 3252510720,3252514815,FR 3252514816,3252515071,SI 3252515072,3252515327,GB 3252515328,3252515583,NL 3252515584,3252515839,SI 3252515840,3252516095,CH 3252516096,3252516351,FR 3252516352,3252516607,GB 3252516608,3252516863,SE 3252517376,3252517631,PL 3252517888,3252518143,DK 3252518144,3252518399,NL 3252518400,3252518655,PL 3252518656,3252518911,DE 3252518912,3252527103,NL 3252527104,3252535295,BE 3252541952,3252542207,CI 3252543488,3252551679,BE 3252551680,3252563967,CH 3252563968,3252564479,RU 3252564480,3252564735,GB 3252564736,3252564991,IR 3252564992,3252566015,UA 3252566016,3252566271,DE 3252566272,3252566527,RO 3252566528,3252566783,RU 3252566784,3252567039,CH 3252567296,3252567551,GB 3252567552,3252567807,RU 3252567808,3252568063,RO 3252568064,3252576255,CH 3252578816,3252579327,CH 3252579328,3252579583,FR 3252579584,3252579839,RU 3252579840,3252580095,SE 3252580352,3252584447,LI 3252584448,3252584703,FR 3252584704,3252584959,IL 3252584960,3252585215,CZ 3252585216,3252585471,PL 3252585472,3252585727,NL 3252585728,3252585983,FI 3252585984,3252586239,FR 3252586240,3252586495,PL 3252586496,3252586751,IT 3252586752,3252587007,NL 3252587008,3252587263,CH 3252587264,3252587519,AT 3252587520,3252587775,UA 3252587776,3252588031,SE 3252588544,3252599807,CH 3252600320,3252600575,NL 3252600576,3252600831,RU 3252600832,3252616703,CH 3252616704,3252616959,ES 3252616960,3252617215,CH 3252617216,3252617471,PL 3252617472,3252633599,CH 3252634624,3252634879,RU 3252636672,3252636927,TR 3252636928,3252637183,DE 3252637184,3252637695,GB 3252637696,3252641791,CH 3252642304,3252642559,UA 3252642560,3252642815,DK 3252642816,3252643071,NL 3252643072,3252643327,RO 3252643328,3252643583,CH 3252645120,3252645375,CH 3252645888,3252682751,CH 3252682752,3252813823,HU 3252813824,3252830207,RO 3252830208,3252830719,MD 3252830720,3252862975,RO 3252862976,3252879359,HU 3252879360,3252895743,EG 3252895744,3252903935,IT 3252903936,3252904447,UA 3252904448,3252904703,RU 3252904704,3252904959,DE 3252904960,3252905215,PL 3252905216,3252905471,CH 3252905472,3252905727,LT 3252905984,3252906239,IT 3252906240,3252906495,PL 3252906496,3252906751,GB 3252906752,3252907007,FR 3252907008,3252907263,AT 3252907520,3252907775,RO 3252907776,3252908031,GB 3252908032,3252908287,PL 3252908288,3252908543,AT 3252908800,3252909055,UA 3252909056,3252909311,PL 3252909312,3252909567,DE 3252909568,3252909823,GB 3252909824,3252910335,UA 3252910848,3252911103,PL 3252911104,3252911359,DE 3252911616,3252911871,SE 3252911872,3252912127,SA 3252912128,3252912383,EG 3252912640,3252912895,FR 3252912896,3252913151,PL 3252913152,3252913407,ES 3252913408,3252913663,FR 3252913664,3252913919,RU 3252914176,3252916223,FR 3252916224,3252920319,DE 3252920320,3252928511,LB 3252928512,3252929535,DE 3252929536,3252930559,HU 3252930560,3252931071,GB 3252931072,3252931583,DE 3252931584,3252932095,NO 3252932096,3252933631,UA 3252933632,3252934655,IT 3252934656,3252936703,PL 3252936704,3252937215,CH 3252937216,3252937727,RO 3252937728,3252938239,FR 3252938240,3252938751,UA 3252938752,3252939263,RU 3252939264,3252939775,DE 3252940288,3252940799,PT 3252940800,3252941311,RU 3252941824,3252942847,GB 3252942848,3252943359,FR 3252943360,3252943871,UA 3252943872,3252944383,RU 3252944384,3252944895,DE 3252944896,3252945151,AT 3252945152,3252945407,GB 3252945408,3252945663,UA 3252945920,3252947455,AT 3252948992,3252963327,AT 3252965376,3252977663,AT 3252980992,3252981247,GB 3252981248,3252981503,RU 3252981504,3252981759,SE 3252981760,3252982015,DE 3252982272,3252982527,DE 3252982528,3252982783,FR 3252983040,3252983551,DE 3252983552,3252983807,SI 3252983808,3252984063,BG 3252984064,3252984319,RO 3252984320,3252984575,AT 3252984576,3252984831,GB 3252984832,3252985087,FR 3252985088,3252985343,SE 3252985344,3252985855,RU 3252988416,3252988927,AT 3252989440,3252989695,PL 3252989952,3252994303,AT 3252995072,3252996095,CH 3252996096,3253002239,AT 3253003008,3253003263,AT 3253004288,3253004799,AT 3253004800,3253005055,CZ 3253005056,3253006335,AT 3253006336,3253010431,DE 3253010432,3253075967,FI 3253075968,3253139455,RO 3253139456,3253139711,MD 3253139712,3253207039,RO 3253207040,3253230591,RU 3253230592,3253230847,BY 3253230848,3253270527,RU 3253270528,3253271551,BY 3253271552,3253338111,RU 3253338112,3253338367,PL 3253338368,3253380351,SE 3253380352,3253380607,GB 3253380608,3253380863,SE 3253380864,3253381119,IT 3253381120,3253383935,SE 3253383936,3253384191,NO 3253384192,3253388287,SE 3253388288,3253388799,FR 3253388800,3253389055,SE 3253389056,3253389823,FR 3253389824,3253395199,SE 3253395200,3253395455,GB 3253395456,3253395967,IT 3253395968,3253397503,SE 3253397504,3253397759,GB 3253397760,3253398271,SE 3253398272,3253398783,FR 3253398784,3253399039,SE 3253399040,3253399295,FR 3253399296,3253399551,IT 3253399552,3253400575,SE 3253400576,3253401087,IT 3253401088,3253402111,SE 3253402112,3253402367,IT 3253402368,3253402623,JP 3253402624,3253403647,SE 3253403648,3253403903,PL 3253403904,3253409791,SE 3253409792,3253410047,GB 3253410048,3253411327,SE 3253411328,3253411583,NO 3253411584,3253411839,SE 3253411840,3253412095,US 3253412096,3253412351,SE 3253412352,3253412607,US 3253412608,3253416447,SE 3253416448,3253416703,GB 3253416704,3253419519,SE 3253419520,3253419775,GB 3253419776,3253428223,SE 3253428224,3253428479,DE 3253428480,3253429247,SE 3253429248,3253429759,JP 3253429760,3253430015,ES 3253430016,3253430783,SE 3253430784,3253431039,BE 3253431040,3253433087,SE 3253433088,3253433343,DE 3253433344,3253434111,SE 3253434112,3253434367,GB 3253434368,3253434623,IT 3253434624,3253434879,SE 3253434880,3253435135,IT 3253435136,3253435903,SE 3253435904,3253436159,NL 3253436160,3253436415,NO 3253436416,3253440511,SE 3253440512,3253440767,FR 3253440768,3253441023,SE 3253441024,3253441279,CL 3253441280,3253441535,NL 3253441536,3253443839,SE 3253443840,3253444351,NO 3253444352,3253453311,SE 3253453312,3253453567,NO 3253453568,3253454079,SE 3253454080,3253454335,GB 3253454336,3253454847,SE 3253454848,3253454848,NL 3253454849,3253455615,SE 3253455616,3253455871,US 3253455872,3253456383,SE 3253456384,3253456639,US 3253456640,3253460735,SE 3253460736,3253460991,IT 3253460992,3253461759,SE 3253461760,3253462015,PL 3253462016,3253462527,SE 3253462528,3253463039,US 3253463040,3253464063,GB 3253464064,3253464575,SE 3253464576,3253465087,NL 3253465088,3253469183,SE 3253469184,3253534719,PT 3253534720,3253600255,GB 3253601280,3253602303,FI 3253602304,3253603327,DE 3253603328,3253605375,PL 3253605376,3253606399,UA 3253606400,3253606655,PL 3253606656,3253606911,TR 3253606912,3253607423,DE 3253607424,3253608447,NG 3253608448,3253610495,UA 3253610496,3253611519,PL 3253612544,3253613567,RU 3253613568,3253614591,ES 3253614592,3253615615,RO 3253615616,3253616639,DE 3253616640,3253617663,PL 3253617664,3253618687,GB 3253618688,3253619711,UA 3253619712,3253620735,IT 3253620736,3253622783,GB 3253622784,3253623807,DE 3253623808,3253624831,PL 3253624832,3253625855,UA 3253625856,3253626879,IT 3253626880,3253627903,DE 3253627904,3253628927,UA 3253628928,3253629951,GR 3253629952,3253630975,UA 3253632000,3253633023,DE 3253633024,3253635071,RU 3253635072,3253636095,IT 3253636096,3253637119,CH 3253637120,3253638143,ES 3253638144,3253639167,FR 3253639168,3253640191,UA 3253640192,3253641215,AT 3253641216,3253642239,NL 3253642240,3253643263,GB 3253643264,3253645311,PL 3253645312,3253646335,RU 3253646336,3253647359,PL 3253647360,3253648383,DK 3253648384,3253649407,IL 3253650432,3253651455,DE 3253651456,3253652479,PL 3253652480,3253653503,LI 3253653504,3253654527,IL 3253654528,3253657599,LV 3253657600,3253658623,UA 3253658624,3253659647,DE 3253659648,3253660671,GB 3253661696,3253662719,NL 3253663744,3253664767,NL 3253664768,3253665791,DE 3253665792,3253666815,CZ 3253666816,3253667839,DE 3253667840,3253668863,GB 3253668864,3253669887,ES 3253669888,3253670911,DE 3253670912,3253671935,CH 3253671936,3253672959,UA 3253672960,3253673983,DE 3253675008,3253676031,PL 3253676032,3253677055,AT 3253677056,3253678079,PL 3253678080,3253679103,DK 3253679104,3253680127,IT 3253680128,3253682175,PL 3253682176,3253683199,RO 3253683200,3253685247,UA 3253685248,3253686271,FR 3253686272,3253687295,PL 3253688320,3253690367,NL 3253690368,3253691391,DK 3253691392,3253692415,PL 3253692416,3253693439,DE 3253693440,3253694463,IL 3253694464,3253695487,GB 3253695488,3253696511,NL 3253696512,3253697535,FR 3253697536,3253698559,PL 3253698560,3253699071,UA 3253699072,3253699583,RO 3253699584,3253699839,NL 3253699840,3253700095,RU 3253700096,3253700607,RO 3253700608,3253701119,PL 3253701120,3253702143,RO 3253702144,3253702655,UA 3253702656,3253703167,PL 3253703680,3253704191,HU 3253704704,3253705215,UA 3253705728,3253706239,DE 3253706240,3253706751,RO 3253706752,3253708799,DE 3253708800,3253709311,DK 3253709312,3253709823,UA 3253709824,3253710335,RO 3253710336,3253710847,GB 3253710848,3253711359,DK 3253711872,3253712383,UA 3253712384,3253712895,MD 3253712896,3253713151,PL 3253713152,3253713407,DE 3253713408,3253713919,NL 3253713920,3253714431,AT 3253714944,3253715455,FR 3253715456,3253715967,RO 3253716480,3253716991,FR 3253716992,3253717503,CH 3253717504,3253718015,NL 3253718016,3253719551,PL 3253719552,3253720063,BE 3253720064,3253720575,RO 3253720576,3253721087,GR 3253721088,3253721599,UA 3253721600,3253722111,RO 3253722112,3253722623,CH 3253722624,3253723135,NL 3253723136,3253723647,PL 3253723648,3253724159,AT 3253724160,3253724671,UA 3253724672,3253725183,RO 3253725184,3253725439,SE 3253725440,3253725695,RU 3253725696,3253726207,UA 3253726720,3253727231,UA 3253727232,3253727743,FR 3253727744,3253728255,RU 3253728768,3253729279,RO 3253729280,3253729791,AT 3253729792,3253730303,UA 3253730304,3253730815,RO 3253730816,3253731327,UA 3253731328,3253731583,DE 3253731584,3253735679,GB 3253735680,3253735935,FR 3253735936,3253736959,GB 3253736960,3253737215,FR 3253737216,3253737823,GB 3253737824,3253737831,PL 3253737832,3253737839,AT 3253737840,3253737847,GB 3253737848,3253737855,HU 3253737856,3253738559,GB 3253738560,3253738567,CZ 3253738568,3253738569,BE 3253738570,3253738570,US 3253738571,3253738575,BE 3253738576,3253741567,GB 3253741568,3253741679,SE 3253741680,3253741695,RU 3253741696,3253741816,SE 3253741817,3253741817,GB 3253741818,3253741823,SE 3253741824,3253744415,GB 3253744416,3253744447,CH 3253744448,3253744511,GB 3253744512,3253744512,US 3253744513,3253745983,GB 3253745984,3253745999,SE 3253746000,3253746007,DK 3253746008,3253746015,IE 3253746016,3253746023,AT 3253746024,3253746031,CH 3253746032,3253746039,FI 3253746040,3253746047,GB 3253746048,3253746111,IT 3253746112,3253746175,DE 3253746176,3253760511,GB 3253760512,3253760767,FR 3253760768,3253761407,GB 3253761408,3253761471,ES 3253761472,3253761535,GB 3253761536,3253761791,US 3253761792,3253762303,GB 3253762304,3253762559,DE 3253762560,3253762753,IT 3253762754,3253762754,ES 3253762755,3253762815,IT 3253762816,3253762943,CH 3253762944,3253763071,GB 3253763072,3253763327,SE 3253763328,3253765119,GB 3253765120,3253765183,ES 3253765184,3253765247,FR 3253765248,3253765279,GB 3253765280,3253765295,NL 3253765296,3253765311,BE 3253765312,3253765375,TR 3253765376,3253766463,GB 3253766464,3253766527,NL 3253766528,3253767615,GB 3253767616,3253767675,IE 3253767676,3253767679,DE 3253767680,3253767711,GB 3253767712,3253767743,DE 3253767744,3253768191,GB 3253768192,3253768447,ES 3253768448,3253768565,GB 3253768566,3253768566,DE 3253768567,3253768959,GB 3253768960,3253769215,DE 3253769216,3253770983,GB 3253770984,3253770984,DE 3253770985,3253771199,GB 3253771200,3253771263,IE 3253771264,3253771561,GB 3253771562,3253771562,DE 3253771563,3253772063,GB 3253772064,3253772095,DE 3253772096,3253772519,GB 3253772520,3253772527,DE 3253772528,3253773055,GB 3253773056,3253773311,DE 3253773312,3253774583,GB 3253774584,3253774591,DE 3253774592,3253775183,GB 3253775184,3253775191,FR 3253775192,3253775599,GB 3253775600,3253775607,IT 3253775608,3253775807,GB 3253775808,3253775823,DE 3253775824,3253776159,GB 3253776160,3253776175,DE 3253776176,3253796863,GB 3253796864,3253862399,SE 3253862400,3253862655,GB 3253862656,3253882879,FR 3253882880,3253886975,NL 3253886976,3253887231,GB 3253887232,3253887487,NL 3253887488,3253887743,ES 3253888000,3253888255,PL 3253888256,3253888511,BE 3253888512,3253888767,GB 3253888768,3253889023,SE 3253889024,3253889279,RO 3253889280,3253889535,CH 3253889792,3253890047,DK 3253890048,3253890303,NL 3253890560,3253890815,GB 3253890816,3253891071,IE 3253891072,3253891327,DE 3253891328,3253891583,GB 3253891584,3253891839,UA 3253891840,3253892351,GB 3253892352,3253892607,NL 3253892608,3253892863,AT 3253892864,3253893119,NL 3253893120,3253893375,RO 3253893376,3253893631,DE 3253893632,3253893887,SE 3253893888,3253894143,RU 3253894144,3253894399,PT 3253894400,3253894655,NL 3253894656,3253894911,FI 3253894912,3253896703,RU 3253896704,3253896959,AT 3253896960,3253897215,RU 3253897216,3253898239,PL 3253898240,3253898495,GB 3253898496,3253898751,HR 3253898752,3253899263,PL 3253899264,3253899519,MD 3253899520,3253899775,RU 3253899776,3253900287,PL 3253900288,3253901311,RU 3253901312,3253901567,PL 3253901568,3253901823,RU 3253901824,3253902079,SI 3253902080,3253902335,DK 3253902336,3253904383,UA 3253904384,3253904895,ES 3253904896,3253905151,UA 3253905152,3253905407,RU 3253905408,3253905919,PL 3253905920,3253906431,RU 3253906432,3253906687,PL 3253906688,3253906943,RU 3253906944,3253907455,FR 3253907456,3253908479,RU 3253908480,3253908991,CZ 3253908992,3253909247,SE 3253909248,3253909503,NL 3253909504,3253910527,SE 3253910528,3253911039,ES 3253911040,3253911551,RU 3253911552,3253911807,FR 3253911808,3253912063,RU 3253912064,3253912575,IR 3253912576,3253913599,RO 3253913600,3253915647,RU 3253915648,3253916159,IR 3253916160,3253916671,NL 3253916672,3253917183,PL 3253917184,3253917439,CY 3253917440,3253917695,PL 3253917696,3253918207,RU 3253918208,3253918719,CH 3253918720,3253919743,IL 3253919744,3253923839,GB 3253923840,3253927935,GR 3253927936,3253961727,GB 3253961728,3253962239,MD 3253962752,3253963263,BE 3253963264,3253963775,RU 3253963776,3253964287,SI 3253964288,3253964799,PL 3253964800,3253965311,SE 3253965312,3253966335,PL 3253966848,3253967359,UA 3253967360,3253967871,PL 3253967872,3253968895,UA 3253968896,3253969151,DE 3253969408,3253969919,AT 3253970688,3253970943,UA 3253970944,3253971967,RS 3253971968,3253972991,RU 3253972992,3253974527,GB 3253974784,3253975039,SE 3253975040,3253977087,DE 3253977088,3253985279,TR 3253985280,3253993471,GB 3253993472,3254067711,BE 3254067712,3254067967,CZ 3254067968,3254124543,BE 3254124544,3254255615,CH 3254255616,3254256127,RE 3254256128,3254256639,GP 3254256640,3254257151,YT 3254257152,3254259455,FR 3254259456,3254259967,YT 3254259968,3254260223,GF 3254260224,3254260479,MQ 3254260480,3254260991,FR 3254260992,3254262015,YT 3254262016,3254262527,FR 3254262528,3254263039,YT 3254263040,3254266367,FR 3254266368,3254266623,RE 3254266624,3254277119,FR 3254277120,3254278143,YT 3254278144,3254488431,FR 3254488432,3254488447,MG 3254488448,3254489407,FR 3254489408,3254489439,MR 3254489440,3254489447,FR 3254489448,3254489455,MR 3254489456,3254489487,FR 3254489488,3254489503,MR 3254489504,3254491903,FR 3254491904,3254492031,CM 3254492032,3254493183,FR 3254493184,3254493253,GP 3254493254,3254493311,FR 3254493312,3254493323,GP 3254493324,3254493343,FR 3254493344,3254493354,GP 3254493355,3254493375,FR 3254493376,3254493410,GP 3254493411,3254493695,FR 3254493696,3254493951,GP 3254493952,3254494207,MQ 3254494208,3254494527,GP 3254494528,3254494975,FR 3254494976,3254494983,DJ 3254494984,3254495055,FR 3254495056,3254495063,DJ 3254495064,3254495487,FR 3254495488,3254495743,DZ 3254495744,3254508799,FR 3254508800,3254508831,MQ 3254508832,3254509412,FR 3254509413,3254509413,GQ 3254509414,3254607871,FR 3254607872,3254608895,RE 3254608896,3254609151,FR 3254609152,3254610431,RE 3254610432,3254610687,FR 3254610688,3254611455,RE 3254611456,3254611967,YT 3254611968,3254615551,RE 3254615552,3254616063,YT 3254616064,3254648831,FR 3254648832,3254649855,AL 3254649856,3254650879,SE 3254653440,3254654847,DE 3254654848,3254654975,DK 3254654976,3254655999,IT 3254656256,3254656511,BG 3254656512,3254656767,DE 3254656768,3254657023,GB 3254657024,3254661119,ES 3254661120,3254665215,GB 3254681600,3254697983,DE 3254697984,3254698495,SE 3254698496,3254699007,GB 3254699008,3254699519,UA 3254700032,3254700543,GR 3254700544,3254701055,DE 3254701568,3254702079,IL 3254702080,3254702591,RU 3254702592,3254703103,GB 3254703104,3254703615,DE 3254703616,3254704127,NL 3254704128,3254704639,UA 3254705152,3254705663,UA 3254705664,3254706175,GR 3254706176,3254707199,RU 3254707200,3254707711,TR 3254707712,3254708223,RO 3254708224,3254708735,UA 3254709248,3254709759,DE 3254709760,3254710271,PL 3254710272,3254710783,IT 3254710784,3254711295,RO 3254711808,3254712319,PL 3254712320,3254712831,RU 3254712832,3254713343,KZ 3254713344,3254713855,TR 3254713856,3254714367,NL 3254714368,3254779903,TR 3254779904,3254780159,DE 3254780160,3254780671,GB 3254780672,3254780927,LT 3254780928,3254781183,GR 3254781184,3254781439,NL 3254781440,3254781951,BE 3254781952,3254782207,LV 3254782208,3254782463,FR 3254782464,3254782719,AT 3254782720,3254782975,DE 3254782976,3254783743,CZ 3254783744,3254783999,SA 3254784000,3254784255,IT 3254784256,3254784511,CH 3254784512,3254785279,LT 3254785280,3254785535,KZ 3254785536,3254785791,DK 3254785792,3254786047,LU 3254786048,3254786815,AT 3254786816,3254787071,SM 3254787072,3254788095,NL 3254788096,3254788351,BG 3254788352,3254789119,ES 3254789120,3254789375,FR 3254789376,3254789631,BE 3254789890,3254789890,TK 3254790656,3254790911,LU 3254790912,3254791423,BE 3254791424,3254791679,SK 3254791680,3254792191,DK 3254792192,3254792959,LV 3254792960,3254793215,EE 3254793216,3254794751,UA 3254794752,3254795007,GB 3254795008,3254795263,SE 3254795264,3254795519,KZ 3254795520,3254795775,SE 3254795776,3254796031,PL 3254796032,3254796287,AT 3254796288,3254797311,SE 3254797312,3254798335,RU 3254798336,3254799359,AT 3254799360,3254800383,IE 3254800384,3254801407,FI 3254801408,3254802431,HR 3254802432,3254803455,UA 3254803456,3254804479,DE 3254804480,3254806527,PL 3254807552,3254808575,KZ 3254808576,3254809599,RU 3254810624,3254811647,RU 3254811648,3254812671,RO 3254812672,3254812927,PL 3254812928,3254813183,RO 3254813184,3254813439,TR 3254813440,3254813695,UA 3254813696,3254813951,DK 3254814208,3254814463,SE 3254814464,3254814719,DE 3254814720,3254814975,RU 3254814976,3254815231,CH 3254815232,3254815487,UA 3254815744,3254815999,IT 3254816256,3254816511,TR 3254816512,3254816767,DE 3254816768,3254817279,RU 3254817280,3254817535,CY 3254817536,3254817791,GB 3254817792,3254818047,UA 3254818048,3254818303,DE 3254818304,3254818559,UA 3254818560,3254818815,DE 3254818816,3254819327,FR 3254819328,3254819583,PL 3254819584,3254819839,DK 3254819840,3254820095,GB 3254820096,3254820351,UA 3254820352,3254820607,GB 3254820864,3254821119,LT 3254821120,3254821375,DK 3254821376,3254821631,RU 3254821632,3254821887,DE 3254821888,3254822143,HU 3254822144,3254822399,DE 3254822400,3254822655,FR 3254822656,3254822911,PL 3254823168,3254823423,NO 3254823424,3254823679,NL 3254823680,3254823935,PL 3254823936,3254824191,CH 3254824192,3254824447,RO 3254824448,3254824959,SI 3254824960,3254825215,FR 3254825216,3254825471,RO 3254825472,3254825727,TR 3254825728,3254825983,FR 3254826240,3254826495,PL 3254826496,3254827263,DE 3254827264,3254827519,GR 3254827776,3254828031,UA 3254828544,3254828799,RO 3254828800,3254829055,SI 3254829056,3254829311,NO 3254829568,3254829823,NL 3254829824,3254830079,FR 3254830080,3254830335,IE 3254830336,3254830591,NL 3254830592,3254830847,CH 3254830848,3254831103,PL 3254831104,3254831359,UA 3254831360,3254831615,DE 3254831616,3254831871,TR 3254831872,3254832127,LT 3254832128,3254832383,RO 3254832384,3254832639,BE 3254832640,3254832895,UA 3254833152,3254833407,DE 3254833408,3254833663,RU 3254833664,3254833919,GB 3254833920,3254834175,PL 3254834176,3254834687,CH 3254834688,3254834943,GB 3254834944,3254835199,NL 3254835200,3254835455,DE 3254835456,3254835711,SE 3254835712,3254835967,UA 3254835968,3254836223,RU 3254836224,3254836479,PL 3254836736,3254836991,AT 3254837248,3254837503,HR 3254837504,3254837759,RU 3254837760,3254838015,IE 3254838528,3254838783,CH 3254838784,3254839039,AT 3254839296,3254839551,DE 3254839552,3254839807,PL 3254839808,3254840063,BE 3254840064,3254840319,BG 3254840320,3254840575,DK 3254840576,3254840831,UA 3254840832,3254841343,GB 3254841344,3254841599,PL 3254841600,3254841855,IE 3254841856,3254842111,LV 3254842880,3254843135,SE 3254843136,3254843391,DE 3254843648,3254843903,FR 3254843904,3254844159,NL 3254844160,3254844415,PL 3254844416,3254844671,GB 3254844672,3254844927,RO 3254844928,3254845183,DE 3254845184,3254845439,FR 3254845440,3254882303,SK 3254882304,3254882559,PL 3254882560,3254882815,IL 3254882816,3254883071,PL 3254883072,3254883583,GB 3254883584,3254883839,AL 3254883840,3254884351,GB 3254884352,3254884607,RU 3254884608,3254884863,PL 3254884864,3254885119,SE 3254885120,3254885375,DE 3254885376,3254885631,RU 3254885632,3254885887,SK 3254885888,3254886143,AT 3254886144,3254886399,UA 3254886400,3254886655,IT 3254886656,3254886911,RU 3254886912,3254887423,CH 3254887424,3254888191,GB 3254888192,3254888447,RO 3254888448,3254888703,RU 3254888704,3254888959,RO 3254888960,3254889471,RU 3254889472,3254890495,SK 3254890496,3254890751,DE 3254891008,3254891263,RO 3254891520,3254891775,GB 3254891776,3254892031,DE 3254892032,3254892287,GB 3254892288,3254892543,BE 3254892800,3254893055,SK 3254893568,3254894079,CZ 3254894080,3254894335,CH 3254894336,3254894591,SK 3254894592,3254894847,DK 3254894848,3254895103,UA 3254895104,3254895359,GB 3254895360,3254895615,UA 3254895616,3254895871,PL 3254895872,3254896127,SE 3254896128,3254896383,RU 3254896384,3254896639,PL 3254896640,3254896895,DK 3254896896,3254897151,PL 3254897152,3254897407,RU 3254897408,3254897663,FR 3254897664,3254897919,NL 3254897920,3254898175,BE 3254898176,3254898431,AT 3254898432,3254898687,DE 3254898688,3254898943,IT 3254898944,3254899199,EE 3254899200,3254899455,GB 3254899456,3254899967,SE 3254899968,3254900479,RU 3254900480,3254900991,SK 3254900992,3254901247,PL 3254901504,3254901759,DK 3254901760,3254902271,UA 3254902272,3254904831,SK 3254904832,3254907903,RU 3254908160,3254908415,CH 3254908416,3254908671,PL 3254908672,3254908927,SE 3254908928,3254909951,RU 3254909952,3254910719,PL 3254910720,3254910975,HR 3254910976,3254962380,FR 3254962381,3254962381,NL 3254962382,3254962421,FR 3254962422,3254962422,NL 3254962423,3255015423,FR 3255015424,3255015679,MQ 3255015680,3255052287,FR 3255058432,3255067647,FR 3255068672,3255078911,FR 3255080960,3255081471,FR 3255087104,3255114751,FR 3255115264,3255117823,FR 3255120640,3255120895,DE 3255121664,3255121919,FR 3255123712,3255123967,DE 3255123968,3255124991,FR 3255126016,3255127551,FR 3255128064,3255128575,FR 3255129856,3255130111,HR 3255130112,3255130623,FR 3255132160,3255133183,FR 3255135232,3255140351,FR 3255141376,3255146495,FR 3255148544,3255152639,FR 3255154432,3255155199,FR 3255155712,3255160831,FR 3255166976,3255169023,FR 3255172352,3255172607,DE 3255173120,3255173631,GB 3255173648,3255173711,GB 3255173760,3255173823,GB 3255173840,3255175167,GB 3255175200,3255175231,GB 3255175248,3255175263,GB 3255175280,3255175295,GB 3255175312,3255175327,GB 3255175432,3255175447,GB 3255175456,3255175503,GB 3255175512,3255175535,GB 3255175552,3255175559,GB 3255175592,3255175607,GB 3255175680,3255175935,GB 3255176192,3255177215,GB 3255177472,3255177855,GB 3255177984,3255187199,GB 3255187200,3255187455,DE 3255187456,3255187711,GB 3255188480,3255191807,GB 3255192320,3255193863,GB 3255193888,3255193959,GB 3255193968,3255193975,GB 3255193976,3255193983,GI 3255193984,3255193999,GB 3255194016,3255194039,GB 3255194056,3255194063,GB 3255194072,3255194431,GB 3255194496,3255194559,GB 3255194624,3255194703,GB 3255194720,3255194815,GB 3255194880,3255205887,GB 3255205888,3255214079,FR 3255214080,3255222271,CH 3255222272,3255223295,DE 3255223296,3255224319,RU 3255224320,3255225343,RO 3255225344,3255226367,PL 3255226368,3255227391,DE 3255227392,3255228415,RO 3255228416,3255230463,RU 3255230464,3255230719,MA 3255230720,3255230975,PS 3255230976,3255231231,DE 3255231232,3255231487,BE 3255231488,3255231743,DE 3255231744,3255231999,PT 3255232000,3255232255,RO 3255232256,3255233023,UA 3255233280,3255233535,GB 3255233536,3255233791,SE 3255233792,3255234047,SI 3255234048,3255234303,NO 3255234304,3255234559,DE 3255234560,3255234815,FR 3255234816,3255235071,PL 3255235072,3255235327,SI 3255235328,3255235583,SE 3255235584,3255235839,GB 3255235840,3255236351,PL 3255236608,3255236863,GB 3255236864,3255237119,DE 3255237120,3255237375,AT 3255237888,3255238143,ES 3255238400,3255238655,QA 3255238656,3255292311,BE 3255292312,3255292319,LU 3255292320,3255304191,BE 3255304192,3255304447,DE 3255304448,3255305215,LV 3255305216,3255305471,BG 3255305472,3255307263,LV 3255307776,3255308031,PL 3255308032,3255308287,CH 3255308288,3255311359,LV 3255311616,3255311871,SE 3255311872,3255312127,PT 3255312128,3255312383,SE 3255312384,3255315711,LV 3255315712,3255316223,PL 3255316224,3255316479,RU 3255316736,3255316991,GB 3255316992,3255317247,FR 3255317248,3255317503,UA 3255317504,3255317759,BE 3255317760,3255318015,BG 3255318016,3255318271,GB 3255318272,3255318527,RU 3255318528,3255318783,UA 3255318784,3255319295,DE 3255319552,3255319807,BG 3255319808,3255320063,AT 3255320064,3255320319,BE 3255320320,3255320575,AT 3255320576,3255321087,UA 3255321088,3255322111,PL 3255322112,3255323135,RU 3255323136,3255323647,GB 3255323648,3255324159,IL 3255324160,3255324671,CH 3255324672,3255325695,RO 3255325696,3255326207,RU 3255326720,3255327231,IL 3255327232,3255327743,DE 3255327744,3255328255,GB 3255328256,3255328767,SI 3255328768,3255336959,DE 3255336960,3255341055,RU 3255341056,3255342079,UA 3255342080,3255343103,FR 3255343104,3255344127,RU 3255344128,3255345151,UA 3255345152,3255353343,RU 3255353344,3255361535,DE 3255361536,3255362047,RU 3255362048,3255362559,FI 3255362560,3255364607,RU 3255364608,3255365119,NL 3255365120,3255365631,SK 3255365632,3255366143,UA 3255366144,3255367167,DK 3255367168,3255367679,RU 3255367680,3255368191,UA 3255368192,3255368703,FR 3255368704,3255369215,CZ 3255369216,3255369727,GB 3255370240,3255370751,RU 3255370752,3255371263,DE 3255371264,3255371775,BG 3255372288,3255372799,DE 3255372800,3255373311,MC 3255373312,3255373823,UA 3255373824,3255374335,PL 3255374848,3255375359,CY 3255375360,3255375871,RO 3255375872,3255376383,PL 3255376384,3255376895,UA 3255376896,3255377407,GB 3255377408,3255377919,KZ 3255377920,3255378431,GB 3255378432,3255378943,CH 3255378944,3255379455,UA 3255379456,3255379967,RU 3255379968,3255380479,GB 3255380480,3255380991,NL 3255380992,3255381503,CH 3255381504,3255382015,PL 3255382016,3255382527,NL 3255382528,3255383039,UA 3255383040,3255383551,PL 3255383552,3255384063,CH 3255384576,3255385087,AT 3255385088,3255385599,RO 3255385600,3255386111,FR 3255386112,3255386623,KE 3255386624,3255387391,PL 3255387392,3255387647,RU 3255387648,3255388159,UA 3255388160,3255388671,DE 3255388672,3255389183,SE 3255389184,3255389695,GB 3255389696,3255390207,PL 3255390720,3255391231,KE 3255391232,3255391743,NL 3255391744,3255392767,DE 3255392768,3255393791,RO 3255393792,3255399679,SE 3255399680,3255400447,DE 3255400448,3255401471,CH 3255401472,3255412479,DE 3255412480,3255412735,RO 3255412736,3255413247,DE 3255413248,3255413503,LV 3255413504,3255413759,UZ 3255414528,3255414783,LV 3255415808,3255416319,AT 3255416320,3255416831,DE 3255417856,3255418879,GB 3255418880,3255422975,DE 3255424000,3255425023,LV 3255426048,3255426559,IT 3255426816,3255427071,PL 3255427072,3255431167,RU 3255431168,3255436287,GB 3255451648,3255452671,FR 3255474176,3255476223,GB 3255483392,3255484415,DE 3255485440,3255486463,FR 3255488512,3255489535,AT 3255492608,3255496703,GB 3255498752,3255500799,FR 3255500800,3255504895,CH 3255504896,3255505919,GB 3255506432,3255506687,PL 3255506688,3255506943,PT 3255506944,3255507199,PL 3255507456,3255507711,FR 3255507712,3255507967,AT 3255507968,3255508223,UA 3255508224,3255508479,RU 3255508480,3255522303,CH 3255523328,3255540223,CH 3255540736,3255544319,CH 3255544320,3255544575,DE 3255544576,3255544831,AT 3255544832,3255549951,CH 3255552000,3255555583,CH 3255556096,3255558143,CH 3255558400,3255558655,UA 3255558912,3255559679,CH 3255560192,3255560703,CH 3255561216,3255561983,CH 3255562240,3255563263,CH 3255563776,3255564031,CH 3255564032,3255564287,RU 3255565312,3255565955,DE 3255565956,3255565956,CH 3255565957,3255566079,DE 3255566336,3255570431,GB 3255570432,3255574527,CH 3255574528,3255578623,CZ 3255578624,3255582719,CY 3255582720,3255599103,UA 3255599104,3255615487,CH 3255615488,3255623679,DE 3255623680,3255631871,BG 3255631872,3255649279,NL 3255650304,3255659519,NL 3255660288,3255660543,GR 3255660544,3255663615,NL 3255664640,3255666175,NL 3255666432,3255666687,DE 3255668224,3255697407,NL 3255697408,3255704575,SE 3255704576,3255705087,FR 3255705088,3255710719,SE 3255710720,3255710975,ES 3255710976,3255716351,SE 3255716352,3255716863,CH 3255716864,3255719167,SE 3255719168,3255719423,NO 3255719424,3255719679,SE 3255719680,3255719935,IT 3255719936,3255724543,SE 3255724544,3255725055,US 3255725056,3255725311,ES 3255725312,3255730943,SE 3255730944,3255731199,GB 3255731200,3255743231,SE 3255743232,3255743487,IT 3255743488,3255743743,DE 3255743744,3255743999,US 3255744000,3255745535,SE 3255745536,3255745791,DK 3255745792,3255752959,SE 3255752960,3255753215,LI 3255753216,3255762431,SE 3255762432,3255762943,BE 3255762944,3255771135,DE 3255779328,3255782399,DE 3255783424,3255791615,DE 3255791616,3255792639,UA 3255792640,3255793663,RU 3255793664,3255794943,PL 3255794944,3255795711,RU 3255795712,3255798783,DE 3255799040,3255799295,SE 3255799296,3255800319,DE 3255800576,3255800831,UA 3255800832,3255801855,DE 3255802880,3255811071,DE 3255811584,3255817215,DE 3255817216,3255817471,SE 3255817472,3255817727,ES 3255817728,3255820287,DE 3255821312,3255822335,CH 3255822336,3255826431,DE 3255827456,3255828479,DE 3255828480,3256025087,SE 3256025088,3256057855,NO 3256057856,3256082431,DK 3256082432,3256090623,LV 3256090624,3256221695,IT 3256221696,3256223743,SE 3256223744,3256225791,NL 3256225792,3256229887,SE 3256229888,3256233983,DE 3256233984,3256238079,SE 3256238080,3256246271,NO 3256246272,3256352767,SE 3256352768,3256385535,CH 3256385536,3256393727,AT 3256393728,3256394239,DE 3256394752,3256395263,PL 3256395264,3256395775,GB 3256395776,3256396287,TR 3256396288,3256396799,GR 3256396800,3256397311,DE 3256397312,3256397823,PL 3256398336,3256398847,RO 3256398848,3256399359,PL 3256399360,3256400895,UA 3256400896,3256401407,GB 3256401408,3256401919,UA 3256401920,3256410111,DE 3256410112,3256410623,TR 3256410624,3256411135,GR 3256411136,3256411647,FR 3256411648,3256412159,DE 3256412672,3256413183,RO 3256413184,3256413695,UA 3256413696,3256414207,PL 3256414208,3256414719,RU 3256414720,3256415231,DE 3256415232,3256415743,PL 3256415744,3256416255,UA 3256416256,3256416767,RS 3256417280,3256417791,NO 3256417792,3256418303,GB 3256418304,3256483839,DE 3256483840,3256484095,NL 3256485888,3256489471,NL 3256489472,3256489983,GR 3256489984,3256490239,BE 3256490496,3256490751,CH 3256491008,3256491263,NL 3256492032,3256501503,NL 3256503296,3256509439,NL 3256510464,3256511487,NL 3256512000,3256513023,NL 3256514560,3256521983,NL 3256522752,3256524287,NL 3256524288,3256524799,DE 3256524800,3256525823,NL 3256530944,3256531967,NL 3256532992,3256549375,NL 3256549376,3256614911,TR 3256614912,3256615935,FI 3256615936,3256616959,UA 3256616960,3256617983,GB 3256617984,3256619007,PL 3256619008,3256620031,UA 3256620032,3256621055,RU 3256621056,3256622079,DK 3256622080,3256623103,RU 3256623104,3256624127,PL 3256624128,3256625151,UA 3256625152,3256626175,PL 3256627200,3256628223,PL 3256628224,3256629247,UA 3256629248,3256630271,RU 3256630272,3256633343,UA 3256633344,3256634367,RU 3256634368,3256635391,MD 3256635392,3256636415,PL 3256636416,3256638463,UA 3256638464,3256640511,RU 3256640512,3256641535,UA 3256641536,3256642559,PL 3256642560,3256643583,SI 3256643584,3256644607,NL 3256644608,3256645631,IT 3256645632,3256646655,SE 3256646656,3256647679,GB 3256647680,3256648703,RS 3256648704,3256649727,UA 3256649728,3256650751,GB 3256650752,3256652799,UA 3256652800,3256653823,DE 3256653824,3256654847,RU 3256654848,3256655871,GB 3256655872,3256656895,RU 3256656896,3256657919,GB 3256657920,3256658943,PL 3256658944,3256662015,UA 3256662016,3256663039,RU 3256663040,3256664063,PL 3256664064,3256665087,RU 3256665088,3256666111,UA 3256666112,3256667135,PL 3256667136,3256671231,RU 3256671232,3256672255,PL 3256672256,3256673279,RU 3256673280,3256674303,PL 3256674304,3256675327,LT 3256675328,3256677375,RU 3256677376,3256678399,GB 3256678400,3256680447,DK 3256680448,3256688639,CH 3256688640,3256692735,IL 3256692736,3256693759,GR 3256694784,3256695807,DE 3256695808,3256696831,UA 3256698368,3256698623,NL 3256698624,3256698879,GB 3256699136,3256699391,NL 3256699392,3256699647,GB 3256705536,3256705791,BE 3256710656,3256710911,SE 3256713216,3256727551,PL 3256727552,3256727807,DE 3256727808,3256728063,HU 3256728064,3256728575,RU 3256728576,3256729599,DE 3256729600,3256731647,FI 3256731648,3256732671,NO 3256732672,3256732927,IT 3256732928,3256733183,UA 3256733184,3256733439,FR 3256733440,3256733695,DK 3256733696,3256735743,TR 3256735744,3256737791,GB 3256737792,3256745983,DE 3256745984,3256778751,ES 3256778752,3256786943,CY 3256786944,3256787199,NL 3256787456,3256787711,DE 3256787712,3256787967,UA 3256787968,3256788223,PL 3256788480,3256788735,GB 3256788736,3256788991,DE 3256788992,3256789247,RO 3256789248,3256789503,SE 3256789504,3256789759,UA 3256789760,3256790015,GB 3256790016,3256790271,UA 3256790272,3256790783,DE 3256790784,3256791039,NL 3256791552,3256791807,GR 3256791808,3256792063,PL 3256792064,3256792319,DE 3256792320,3256792575,CH 3256792576,3256792831,NL 3256793088,3256793343,GB 3256793344,3256793599,DE 3256793600,3256793855,GB 3256793856,3256794111,SK 3256794112,3256794367,NL 3256794368,3256794623,GB 3256794624,3256794879,RU 3256794880,3256795135,AT 3256795136,3256811519,GR 3256811520,3256819711,DE 3256819712,3256821503,PL 3256821504,3256821759,NO 3256821760,3256822271,PL 3256822272,3256822527,MD 3256822528,3256822783,PL 3256822784,3256823807,UA 3256823808,3256824319,PL 3256824320,3256824831,GB 3256825856,3256826111,EE 3256826112,3256826367,KW 3256826368,3256826623,IL 3256826624,3256826879,RU 3256826880,3256827135,PL 3256827136,3256827391,IS 3256827392,3256827647,GB 3256827648,3256827903,PL 3256827904,3256844287,DE 3256860672,3256863743,DE 3256864256,3256864511,DE 3256864512,3256864767,CH 3256864768,3256866815,DE 3256868096,3256868351,DE 3256868864,3256870911,DE 3256870912,3256871167,RU 3256871168,3256871935,DE 3256872448,3256872703,DE 3256872960,3256873983,DE 3256874496,3256874751,DE 3256875008,3256875519,UA 3256875520,3256876031,RU 3256876032,3256876287,PL 3256876288,3256876543,RU 3256876544,3256876799,CH 3256877056,3256896511,GB 3256898048,3256898303,GB 3256898560,3256899071,TR 3256899072,3256899583,RU 3256915456,3256915711,RS 3256915712,3256915967,SE 3256918016,3256920063,GB 3256922112,3256934399,GB 3256942592,3256944639,GB 3256945408,3256945663,GB 3256945664,3256945919,SI 3256945920,3256946175,GB 3256946176,3256946431,RO 3256946432,3256946687,UA 3256946944,3256947711,DE 3256948736,3256958975,GB 3256958976,3256959999,RO 3256960000,3256960255,SA 3256960256,3256960511,HU 3256960512,3256961023,SA 3256961024,3256962559,PL 3256962560,3256962815,FR 3256962816,3256963071,RU 3256963072,3256963327,SE 3256963328,3256963839,RU 3256963840,3256964095,PL 3256964096,3256965119,RU 3256966144,3256967167,RU 3256967168,3256967423,NL 3256967424,3256967679,RU 3256967680,3256968191,CH 3256968192,3256969215,RO 3256969216,3256970239,IR 3256970240,3256970495,AT 3256970496,3256970751,GB 3256970752,3256971007,RU 3256971008,3256971263,PL 3256971264,3256971775,NL 3256971776,3256972031,RU 3256972032,3256972287,DE 3256972288,3256973311,PL 3256973312,3256973823,DE 3256973824,3256975359,IR 3256975360,3256981503,GB 3256983552,3256988671,GB 3256988672,3256988927,RU 3256988928,3256989183,UA 3256989440,3256989695,GB 3256989696,3256989951,HU 3256989952,3256990207,PL 3256990208,3256990463,CH 3256990464,3256990719,PL 3256990720,3256991231,UA 3256991232,3256991487,SE 3256991488,3256991743,RU 3256991744,3257011199,GB 3257011200,3257011455,BG 3257011456,3257024511,GB 3257024512,3257032703,AU 3257032704,3257040895,GB 3257043200,3257043711,GB 3257043968,3257047039,GB 3257050112,3257051135,GB 3257052672,3257052927,GB 3257053184,3257057279,GB 3257058816,3257059071,PL 3257059328,3257065471,GB 3257073664,3257085951,GB 3257090048,3257092351,GB 3257092608,3257092863,RO 3257093888,3257094143,GB 3257094656,3257095167,GB 3257097472,3257097983,GB 3257106432,3257120767,GB 3257121280,3257121535,GB 3257122304,3257131007,GB 3257135104,3257137151,GB 3257138176,3257139199,GB 3257139200,3257139455,DK 3257139456,3257143295,GB 3257143296,3257143807,RU 3257143808,3257144063,DE 3257144064,3257144319,RU 3257144320,3257144575,DE 3257144576,3257144831,GB 3257144832,3257145087,FR 3257145088,3257145343,GB 3257151488,3257159679,GB 3257160192,3257160447,GB 3257162752,3257163263,GB 3257167872,3257168895,GB 3257170176,3257170431,GB 3257171968,3257176063,GB 3257178112,3257180159,GB 3257180160,3257180415,TR 3257180416,3257180671,RU 3257180672,3257180927,EE 3257180928,3257181183,GB 3257181184,3257181439,SA 3257181440,3257181695,PL 3257181696,3257181951,FR 3257182208,3257182463,PL 3257192448,3257195775,GB 3257196544,3257200639,LU 3257200640,3257204735,GB 3257204736,3257225215,AT 3257226240,3257227263,DE 3257229312,3257268223,AT 3257268224,3257268479,UA 3257268480,3257268735,SE 3257269248,3257269503,IT 3257269504,3257269759,AT 3257270016,3257270271,DE 3257286656,3257294847,CH 3257294848,3257303039,HU 3257303040,3257311231,PT 3257311232,3257335807,CH 3257335808,3257343999,DE 3257348096,3257355775,DE 3257356288,3257356799,DE 3257357312,3257357567,PT 3257357568,3257357823,SI 3257357824,3257363455,DE 3257364480,3257371903,DE 3257371904,3257372159,BE 3257372416,3257372671,GB 3257372672,3257380863,DE 3257381120,3257381375,DE 3257381888,3257382911,DE 3257382912,3257383167,NL 3257383168,3257383679,DE 3257383936,3257385983,DE 3257390592,3257390847,DE 3257391616,3257395199,DE 3257397248,3257401343,DE 3257401344,3257453567,CH 3257453568,3257454591,RO 3257454592,3257455103,IT 3257455104,3257455359,RO 3257455360,3257455615,SI 3257455616,3257461759,CH 3257464064,3257464319,CH 3257464832,3257465343,CH 3257466880,3257467135,DE 3257467392,3257467903,SE 3257467904,3257468927,IT 3257469184,3257469439,IT 3257469952,3257470975,PL 3257470976,3257471999,FI 3257472000,3257472511,SG 3257472512,3257475071,FI 3257476864,3257477119,DE 3257481472,3257481727,DE 3257482240,3257482751,GB 3257482752,3257483007,NL 3257483008,3257491455,CH 3257491456,3257495551,BE 3257499648,3257532415,CH 3257532416,3257542655,CY 3257542656,3257542911,PL 3257542912,3257543423,IT 3257543424,3257543679,PT 3257543680,3257544191,RO 3257544192,3257544703,DE 3257544704,3257544959,CH 3257544960,3257545215,DK 3257545216,3257546495,GR 3257546496,3257546527,DE 3257546528,3257546655,CY 3257546656,3257546687,SE 3257546688,3257546719,DE 3257546720,3257546751,DK 3257546752,3257548799,IE 3257548800,3257551623,GB 3257551624,3257551647,BE 3257551648,3257551711,GB 3257551712,3257551719,BE 3257551720,3257552732,GB 3257552733,3257552733,SE 3257552734,3257556991,GB 3257557504,3257558015,LU 3257558016,3257559039,RO 3257559552,3257560063,UA 3257560064,3257560575,DE 3257560576,3257561087,PL 3257561088,3257561599,UA 3257561600,3257562111,DE 3257562112,3257563647,PL 3257563648,3257564159,NL 3257564160,3257564671,GB 3257564672,3257565183,RO 3257565184,3257573375,CY 3257573376,3257574015,CH 3257576448,3257577471,AT 3257577472,3257581567,DE 3257581568,3257585663,UA 3257585664,3257586175,BE 3257586176,3257586687,NL 3257586688,3257586943,LU 3257586944,3257587455,ES 3257587456,3257587711,GB 3257587712,3257587967,US 3257587968,3257588223,FR 3257588224,3257588735,BE 3257588736,3257589759,NL 3257589760,3257663487,GB 3257663488,3257729023,UA 3257729024,3257730047,DE 3257730048,3257740799,NL 3257740800,3257741055,FR 3257741056,3257741311,NL 3257741312,3257741567,DE 3257741568,3257742335,NL 3257742336,3257743359,DE 3257743360,3257748479,NL 3257748480,3257749503,DE 3257749504,3257765887,NL 3257765888,3257767935,DE 3257767936,3257782271,NL 3257782272,3257784319,DE 3257784320,3257794559,NL 3257794560,3257843711,GB 3257843712,3257860095,IE 3257860096,3257925631,SE 3257925632,3257925887,AT 3257925888,3257926143,SE 3257926144,3257926399,AT 3257926656,3257970687,AT 3257972736,3257973759,AT 3257974272,3257974527,AT 3257974784,3257977855,AT 3257977856,3257978111,GB 3257978112,3257978367,SE 3257978368,3257978623,BG 3257978624,3257978879,ES 3257978880,3257979135,FR 3257979136,3257979391,UA 3257979392,3257979647,GB 3257979904,3257980159,UA 3257980160,3257980415,SE 3257980416,3257980671,NL 3257980672,3257980927,CH 3257980928,3257981183,PL 3257981184,3257981439,GB 3257981440,3257981695,RU 3257981696,3257981951,PL 3257986048,3257987327,AT 3257987328,3257987583,CZ 3257987840,3257988095,AT 3257990656,3257990911,AT 3257992960,3257995263,DE 3257996032,3257996287,DE 3257996544,3257996799,CH 3257996800,3258003967,DE 3258003968,3258004479,RU 3258004992,3258005247,DE 3258006528,3258015743,DE 3258019328,3258019583,DE 3258019840,3258021887,DE 3258021888,3258022911,RU 3258022912,3258023167,PL 3258023168,3258023423,DE 3258023424,3258023679,TR 3258023680,3258023935,RU 3258023936,3258056703,DE 3258057216,3258057471,CZ 3258058240,3258058495,RU 3258058496,3258058751,RO 3258059008,3258059263,UA 3258059264,3258059519,RU 3258059520,3258059775,RO 3258062848,3258063103,RU 3258063360,3258063871,CZ 3258063872,3258064127,AT 3258064128,3258064383,FR 3258064384,3258065151,GB 3258065152,3258065407,DE 3258065408,3258065663,LI 3258065664,3258065919,SA 3258065920,3258066175,DE 3258066176,3258066431,PL 3258066432,3258066943,FR 3258066944,3258067199,DK 3258067200,3258067455,GB 3258067456,3258067967,GR 3258067968,3258068223,RO 3258068224,3258068479,CH 3258068736,3258068991,DE 3258069248,3258069503,PL 3258069504,3258069759,RO 3258069760,3258070015,UA 3258070272,3258070527,PL 3258070528,3258071295,GB 3258071296,3258071551,DK 3258071552,3258071807,DE 3258072064,3258072319,FR 3258072320,3258072575,PL 3258072576,3258072831,BE 3258072832,3258073087,RO 3258073088,3258074111,CZ 3258074112,3258074879,DE 3258074880,3258075135,IL 3258075904,3258076159,PL 3258076160,3258076415,BG 3258076416,3258076927,FR 3258076928,3258077183,UA 3258077184,3258077439,GB 3258077440,3258077695,UA 3258077952,3258078207,PL 3258078208,3258078463,TR 3258078464,3258078719,UA 3258078720,3258078975,GB 3258078976,3258079231,RU 3258079232,3258079487,GB 3258079488,3258079743,PL 3258079744,3258079999,GB 3258080000,3258080255,BE 3258080512,3258080767,DE 3258081024,3258081279,FR 3258081280,3258081535,NL 3258081536,3258081791,BE 3258081792,3258082047,UA 3258082048,3258082303,NL 3258082304,3258082559,CZ 3258082560,3258082815,HU 3258082816,3258083071,NL 3258083072,3258083583,RU 3258083584,3258083839,LV 3258083840,3258084351,SE 3258084352,3258084607,GB 3258084608,3258084863,AT 3258084864,3258085119,PL 3258085376,3258085631,NL 3258085632,3258085887,DE 3258085888,3258086143,UA 3258086144,3258086399,AT 3258086400,3258086655,RU 3258086656,3258086911,PL 3258086912,3258087167,GB 3258087168,3258087423,UA 3258087424,3258087679,RU 3258087680,3258087935,GB 3258087936,3258088191,BG 3258088192,3258088447,PL 3258088448,3258088703,BE 3258088704,3258088959,UA 3258088960,3258089215,RO 3258089216,3258089471,FR 3258089472,3258090495,RU 3258090496,3258091519,PL 3258091520,3258092287,SI 3258092288,3258092543,RU 3258092544,3258092799,SE 3258092800,3258093567,RU 3258093568,3258094591,UA 3258094592,3258095359,RU 3258095360,3258095615,AT 3258095616,3258095871,RU 3258095872,3258096383,GB 3258096384,3258097663,PL 3258097664,3258097919,DE 3258097920,3258098175,UA 3258098176,3258098431,DE 3258098432,3258098687,NL 3258098688,3258098943,DE 3258098944,3258099199,GB 3258099200,3258099455,SI 3258099456,3258099711,UA 3258099712,3258099967,FI 3258099968,3258100223,UA 3258100736,3258100991,CH 3258100992,3258101247,AT 3258101248,3258101503,RO 3258101504,3258101759,IL 3258101760,3258102015,CH 3258102016,3258102271,BE 3258102272,3258102527,CH 3258102528,3258102783,TR 3258103040,3258103295,SE 3258103296,3258103551,DE 3258103552,3258103807,AE 3258104320,3258104575,PL 3258104576,3258104831,DE 3258105600,3258105855,DE 3258105856,3258109951,CZ 3258109952,3258110207,DK 3258110464,3258110975,CZ 3258111488,3258111743,PL 3258111744,3258118399,CZ 3258118400,3258118655,UA 3258118656,3258118911,CZ 3258120192,3258120703,CZ 3258121216,3258121471,PL 3258121728,3258121983,UA 3258121984,3258122239,RU 3258122240,3258187775,FR 3258187776,3258230783,SE 3258230784,3258232831,NO 3258232832,3258249215,SE 3258249216,3258253311,NO 3258253312,3258253567,DE 3258254080,3258254335,NL 3258255360,3258265599,NL 3258267648,3258269695,NL 3258271744,3258272767,NL 3258272768,3258273791,FR 3258273792,3258275071,NL 3258275840,3258288127,NL 3258294272,3258297343,NL 3258297344,3258297599,BE 3258297600,3258298111,NL 3258298112,3258298367,GB 3258306560,3258308095,NL 3258308608,3258318847,NL 3258318848,3258320895,DE 3258320896,3258321919,GB 3258321920,3258322943,RU 3258322944,3258326015,PL 3258326016,3258327039,SE 3258327040,3258335231,TR 3258335232,3258336255,RU 3258336256,3258337279,NO 3258337280,3258338303,DE 3258339328,3258340351,UA 3258340352,3258341375,PL 3258341376,3258342399,UA 3258342400,3258343423,DE 3258343424,3258351615,NO 3258351616,3258352639,RO 3258352640,3258353663,RU 3258354688,3258355711,BG 3258355712,3258356735,NL 3258356736,3258357759,RU 3258357760,3258360831,UA 3258360832,3258361855,SE 3258361856,3258362879,IL 3258362880,3258362891,IM 3258362892,3258362892,GB 3258362893,3258363903,IM 3258363904,3258364927,RU 3258364928,3258365951,XK 3258365952,3258366975,UA 3258366976,3258367999,PL 3258368000,3258384383,KW 3258384384,3258385407,DE 3258388480,3258395647,DE 3258396672,3258426367,DE 3258427648,3258427903,RO 3258427904,3258428159,DE 3258428416,3258441727,DE 3258443776,3258444287,DE 3258445824,3258449919,DE 3258449920,3258468351,CH 3258474496,3258486783,CH 3258486784,3258487807,LI 3258488832,3258495999,CH 3258501120,3258503935,CH 3258503936,3258504191,PL 3258504704,3258504959,DE 3258504960,3258505215,IL 3258505728,3258506495,CH 3258506496,3258506751,DE 3258507264,3258514431,CH 3258514944,3258515199,CH 3258515456,3258580991,FR 3258580992,3258646527,RU 3258646528,3258653695,DE 3258655232,3258658303,DE 3258658560,3258659839,DE 3258660864,3258681343,DE 3258683136,3258688511,DE 3258689792,3258690047,DE 3258690560,3258691583,DE 3258691840,3258692351,AT 3258692352,3258692607,DE 3258692608,3258692863,FR 3258693120,3258693375,SI 3258693376,3258693631,DE 3258693632,3258693887,RU 3258693888,3258694143,SI 3258694144,3258694399,RU 3258694656,3258694911,GB 3258694912,3258701311,DE 3258703616,3258712063,DE 3258712064,3258728447,GB 3258728448,3258729471,FR 3258729472,3258729727,DE 3258729728,3258729983,UA 3258729984,3258730239,CH 3258730240,3258730495,NL 3258730496,3258730751,RO 3258730752,3258731007,TR 3258731008,3258731263,SI 3258731264,3258731519,NO 3258731776,3258732031,UA 3258732032,3258732287,DE 3258732288,3258732543,PL 3258732544,3258732799,SE 3258732800,3258733055,CH 3258733056,3258733311,RO 3258733312,3258734079,GB 3258735104,3258735359,GB 3258736640,3258745855,GB 3258746880,3258762239,GB 3258764032,3258764287,GB 3258764288,3258764543,DE 3258764800,3258765055,BE 3258765056,3258765311,NL 3258767360,3258767615,GB 3258767616,3258767871,CH 3258767872,3258769919,GB 3258769920,3258770431,PL 3258770432,3258771455,IR 3258771456,3258772479,KZ 3258772480,3258773503,RU 3258773504,3258774015,FR 3258774016,3258774271,UA 3258774272,3258774527,DK 3258774528,3258776063,RU 3258776064,3258776319,GE 3258776320,3258776575,PL 3258776576,3258777599,UA 3258785792,3258789887,GB 3258789888,3258790911,CZ 3258790912,3258792191,RU 3258792192,3258792447,PL 3258792448,3258792703,MK 3258792704,3258792959,NL 3258792960,3258793983,RU 3258793984,3258794495,NL 3258794496,3258794751,PL 3258794752,3258795007,RU 3258795008,3258796031,PL 3258797568,3258798079,GB 3258801152,3258802175,GB 3258802176,3258806271,LU 3258808832,3258809343,GB 3258814464,3258816511,GB 3258818048,3258818303,SE 3258818560,3258834943,GB 3258839040,3258843135,GB 3258843136,3258843391,RU 3258844928,3258847231,GB 3258848256,3258848767,GB 3258848768,3258849023,RO 3258849024,3258849279,DE 3258849280,3258859519,GB 3258859520,3258859775,BY 3258859776,3258860031,GB 3258860544,3258900479,GB 3258902528,3258902783,GB 3258903040,3258903295,FR 3258903296,3258903551,GB 3258903552,3258903807,DE 3258903808,3258904063,AT 3258904064,3258904575,GB 3258908672,3258941439,GB 3258941440,3258943487,PL 3258943488,3258944511,BG 3258944512,3258945535,RU 3258946560,3258947583,CH 3258948608,3258949631,RU 3258949632,3258972159,GR 3258972160,3258974207,NO 3258974208,3259039743,DE 3259039744,3259105279,PT 3259105280,3259170815,GB 3259170816,3259223807,RU 3259223808,3259224831,KZ 3259224832,3259225343,RU 3259225344,3259226111,AZ 3259226112,3259227391,RU 3259227392,3259227647,KZ 3259227648,3259236351,RU 3259236352,3259236863,SE 3259236864,3259237119,CH 3259237120,3259237887,SE 3259237888,3259238143,FR 3259238144,3259243007,SE 3259243008,3259243519,AT 3259243520,3259244543,US 3259244544,3259246591,SE 3259246592,3259247615,IT 3259247616,3259247871,LI 3259247872,3259248127,SE 3259248128,3259248383,GB 3259248384,3259248895,SE 3259248896,3259249151,GB 3259249152,3259258623,SE 3259258624,3259258879,ES 3259258880,3259260927,SE 3259260928,3259261183,DK 3259261184,3259262719,SE 3259262720,3259262975,DK 3259262976,3259265023,SE 3259265024,3259265535,DE 3259265536,3259276287,SE 3259276288,3259276543,ES 3259276544,3259280639,SE 3259280640,3259280895,US 3259280896,3259281407,SE 3259281408,3259282431,US 3259282432,3259283711,SE 3259283712,3259283967,US 3259283968,3259284479,SE 3259284480,3259284735,US 3259284736,3259285759,SE 3259285760,3259286015,GB 3259286016,3259290623,SE 3259290624,3259290879,NO 3259290880,3259291135,US 3259291136,3259293951,SE 3259293952,3259294207,LI 3259294208,3259297535,SE 3259297536,3259297791,GB 3259297792,3259301887,SE 3259301888,3259302143,DE 3259302144,3259302399,AE 3259302400,3259303423,CH 3259303424,3259305983,SE 3259305984,3259310079,NL 3259317248,3259318271,CH 3259318272,3259334655,GB 3259334656,3259338751,DE 3259338752,3259339263,GB 3259339520,3259342847,GB 3259342848,3259344895,CH 3259348992,3259351039,NL 3259351040,3259351551,IT 3259351552,3259352063,FR 3259352064,3259352575,CH 3259352576,3259353087,IE 3259354112,3259354367,NL 3259354368,3259354623,DE 3259354880,3259355135,PL 3259355136,3259359231,NO 3259359232,3259367423,ES 3259367424,3259432959,GB 3259432960,3259435263,SE 3259435264,3259435519,IT 3259435520,3259438079,SE 3259438080,3259438335,ES 3259438336,3259438591,SE 3259438592,3259439103,NO 3259439104,3259457279,SE 3259457280,3259457535,IT 3259457536,3259466239,SE 3259466240,3259466495,LI 3259466496,3259470847,SE 3259470848,3259471871,US 3259471872,3259479807,SE 3259479808,3259480063,DK 3259480064,3259480831,SE 3259480832,3259481087,ES 3259481088,3259484671,SE 3259484672,3259485183,ES 3259485184,3259490303,SE 3259490304,3259490815,IN 3259490816,3259491071,SE 3259491072,3259491327,LI 3259491328,3259495935,SE 3259495936,3259496447,DK 3259496448,3259498495,SE 3259498496,3259541503,GB 3259541504,3259543551,NL 3259543552,3259760639,GB 3259761152,3259767295,DE 3259768064,3259787263,DE 3259787776,3259788287,DE 3259788800,3259789311,DE 3259791872,3259792383,DE 3259796480,3259800063,DE 3259800576,3259807743,DE 3259808512,3259808767,DE 3259809792,3259811839,DE 3259813888,3259814399,DE 3259814400,3259814655,AT 3259814656,3259816447,DE 3259816704,3259816959,DE 3259817472,3259817983,DE 3259819008,3259821055,DE 3259821824,3259822079,AT 3259822592,3259823103,DE 3259823104,3259823615,RO 3259823616,3259823871,NO 3259823872,3259824127,IE 3259825408,3259825663,DE 3259826176,3259891711,DE 3259891712,3259957247,BE 3259957248,3259958271,DE 3259958272,3259959295,RU 3259959296,3259960319,UA 3259960320,3259961343,BG 3259961344,3259962367,FI 3259962368,3259963391,UA 3259963392,3259964415,PL 3259964416,3259964927,GB 3259964928,3259964959,NL 3259964960,3259965439,GB 3259965440,3259966463,RU 3259967488,3259968511,RS 3259968512,3259969535,RU 3259970560,3259971583,CZ 3259971584,3259972607,IT 3259972608,3259973631,UA 3259973632,3259981823,PT 3259981824,3259990015,EG 3259990016,3260006399,FR 3260006400,3260014591,IT 3260014592,3260018687,NL 3260018688,3260019711,GB 3260019712,3260021247,DE 3260021248,3260021759,RU 3260021760,3260022271,GR 3260022272,3260022783,NL 3260022784,3260284927,GB 3260284928,3260415487,RU 3260415488,3260415999,BY 3260416000,3260481535,FI 3260481536,3260547071,RU 3260547072,3260547327,DE 3260547328,3260547583,UA 3260547584,3260547839,NL 3260547840,3260548095,PL 3260548096,3260548351,IE 3260548352,3260548607,DK 3260549120,3260549375,AT 3260549376,3260549631,CH 3260549632,3260549887,DE 3260550656,3260551167,RU 3260551168,3260553983,DE 3260553984,3260554239,GB 3260554240,3260555263,CH 3260555264,3260563455,HU 3260563456,3260571647,GB 3260571648,3260579839,BE 3260579840,3260580351,PL 3260580352,3260580863,HU 3260580864,3260581375,GB 3260581376,3260581887,RO 3260581888,3260582399,IL 3260582400,3260583423,RU 3260583424,3260583935,PT 3260583936,3260584447,NO 3260584448,3260585471,RO 3260585472,3260586495,UA 3260586496,3260587007,PL 3260587008,3260587519,FR 3260587520,3260588031,PL 3260588032,3260596223,DE 3260596224,3260596735,CH 3260596736,3260597247,SK 3260597248,3260597759,CH 3260597760,3260598271,DE 3260598272,3260598783,RU 3260598784,3260599295,RO 3260599296,3260599807,RU 3260599808,3260600319,UA 3260600320,3260601343,RU 3260601344,3260601855,CH 3260601856,3260602367,PL 3260602368,3260602879,DK 3260602880,3260603903,UA 3260603904,3260604415,FR 3260604416,3260604927,PL 3260605440,3260605951,BG 3260605952,3260606463,NL 3260606464,3260607487,SE 3260607488,3260607999,NL 3260608000,3260608511,RO 3260608512,3260609023,IE 3260609024,3260609535,GB 3260609536,3260610047,PL 3260610048,3260610559,FR 3260610560,3260611071,RO 3260611072,3260611583,BG 3260612096,3260612607,SE 3260612608,3260678143,FI 3260678144,3260743679,IL 3260743680,3260809215,IT 3260809216,3260874751,PL 3260893184,3260894207,SE 3260894208,3260895231,AT 3260895232,3260898303,SE 3260898304,3260899327,ES 3260899328,3260900095,CH 3260900096,3260900351,RU 3260900352,3260900607,RO 3260900608,3260901119,NL 3260901120,3260903423,DE 3260903424,3260906239,CH 3260906368,3260906495,DE 3260906496,3260907519,PL 3260907520,3260915711,GB 3260915712,3260923903,UA 3260923904,3260938751,IT 3260938752,3260939007,US 3260939008,3260940287,IT 3260940288,3261071359,DE 3261071360,3261136895,AT 3261136896,3261150143,DE 3261150144,3261150207,US 3261150208,3261202431,DE 3261202432,3261213439,FR 3261213440,3261213695,AF 3261213696,3261267967,FR 3261267968,3261278207,DE 3261280256,3261280767,DE 3261281280,3261282559,DE 3261283328,3261291263,DE 3261291520,3261296639,DE 3261296896,3261297151,DE 3261297664,3261297919,RU 3261297920,3261298175,PL 3261298176,3261333503,DE 3261333504,3261399039,FI 3261399040,3261472767,GB 3261472768,3261530111,RO 3261530112,3261531903,SE 3261531904,3261532159,GB 3261532160,3261532415,SE 3261532416,3261532671,GB 3261532672,3261532927,SE 3261532928,3261533183,GB 3261533184,3261533439,SE 3261533440,3261533695,US 3261533696,3261534207,SE 3261534208,3261534463,NL 3261534464,3261534719,SE 3261534720,3261534975,US 3261534976,3261538559,SE 3261538560,3261538815,GB 3261538816,3261539327,SE 3261539328,3261540351,GB 3261540352,3261554175,SE 3261554176,3261554431,DK 3261554432,3261595647,SE 3261595648,3261599743,NL 3261601792,3261620479,NL 3261620992,3261622271,NL 3261623808,3261624831,NL 3261626368,3261627903,NL 3261628160,3261643775,NL 3261644800,3261661183,NL 3261661184,3261669375,RO 3261669376,3261673471,MT 3261673472,3261675519,IT 3261675520,3261675775,LV 3261675776,3261676031,IT 3261676800,3261677055,IT 3261677568,3261685759,GB 3261685760,3261687807,DE 3261687808,3261689855,RO 3261689856,3261691903,GB 3261691904,3261694463,NL 3261694464,3261694975,RU 3261694976,3261695487,PL 3261695488,3261695999,GB 3261696000,3261696511,UA 3261696512,3261697023,NL 3261697024,3261698047,RO 3261698048,3261698559,UA 3261698560,3261699071,DE 3261699072,3261699327,RU 3261699328,3261699583,GB 3261699584,3261700095,NL 3261700096,3261700607,FR 3261700608,3261701119,GB 3261701120,3261701631,RU 3261702144,3261710335,GB 3261710336,3261718527,RU 3261718528,3261726719,IS 3261726720,3261734911,ES 3261734912,3261743103,GB 3261743104,3261751295,MT 3261751296,3261759487,EE 3261759488,3261767679,IE 3261767680,3261775871,RS 3261775872,3261776383,PL 3261776384,3261777407,RU 3261777408,3261777449,IR 3261777450,3261777451,NL 3261777452,3261777663,IR 3261777664,3261777919,GB 3261777920,3261778431,PL 3261778944,3261779455,RO 3261779456,3261779967,DE 3261779968,3261780479,UA 3261780480,3261780991,PL 3261780992,3261781503,RO 3261781504,3261782015,PL 3261782016,3261783039,UA 3261783040,3261784063,GB 3261784064,3261787647,AT 3261787648,3261788159,FR 3261788160,3261796351,AT 3261796352,3261796607,GB 3261796608,3261796863,RU 3261796864,3261797119,PL 3261797120,3261797375,KR 3261797376,3261797631,AT 3261797632,3261797887,RU 3261797888,3261798143,TR 3261798144,3261798399,RU 3261798400,3261805567,AT 3261805568,3261806591,DE 3261806592,3261810687,AT 3261812736,3261812991,RU 3261812992,3261815807,AT 3261816064,3261816575,AT 3261816576,3261816831,DE 3261816832,3261820927,AT 3261820928,3261821183,RO 3261821184,3261821439,AT 3261821440,3261821695,NL 3261821696,3261821951,UA 3261821952,3261822207,RU 3261822208,3261822463,UA 3261822464,3261822719,GB 3261822720,3261822975,SE 3261822976,3261823231,PL 3261823232,3261823487,NL 3261823488,3261823743,RO 3261823744,3261823999,BE 3261824000,3261824255,RU 3261824512,3261824767,FR 3261824768,3261825023,PT 3261825024,3261827071,AT 3261828096,3261844479,AT 3261845504,3261855743,AT 3261857792,3261923327,CZ 3261923328,3261988863,NL 3261988864,3261989119,SE 3261990400,3261990655,UA 3261993472,3261993727,RU 3261994752,3261995263,FI 3261995264,3261995519,DE 3261995520,3261995775,PL 3261996800,3262001151,FI 3262004736,3262005247,FI 3262005248,3262005759,PL 3262005760,3262006015,RU 3262006016,3262006271,NL 3262006272,3262006527,RO 3262006528,3262006783,FR 3262006784,3262007039,SE 3262007040,3262007295,IT 3262007552,3262007807,GR 3262008064,3262008319,GB 3262008320,3262008575,PT 3262008576,3262008831,PL 3262008832,3262009087,AT 3262009088,3262009343,UA 3262013440,3262017535,SE 3262018560,3262018815,PL 3262021120,3262021375,UA 3262021376,3262021631,PL 3262021632,3262021887,CH 3262021888,3262022143,UA 3262022912,3262023167,DE 3262023680,3262023935,DK 3262025216,3262025471,FI 3262027264,3262027519,TR 3262027520,3262027775,BE 3262027776,3262028287,RU 3262028288,3262028543,FR 3262028544,3262028799,AE 3262028800,3262029823,DE 3262029824,3262030847,NL 3262030848,3262031871,FR 3262033920,3262038015,AX 3262038016,3262038271,FR 3262038528,3262038783,IL 3262038784,3262039039,NO 3262039040,3262039295,DE 3262039296,3262039551,GB 3262039552,3262039807,GR 3262039808,3262040063,SI 3262040320,3262040575,ES 3262040576,3262040831,RU 3262040832,3262041343,GB 3262041344,3262041599,BG 3262041600,3262041855,DK 3262041856,3262042367,FR 3262042368,3262042623,GB 3262042880,3262043135,NL 3262043136,3262043391,RO 3262043392,3262043647,TR 3262043648,3262043903,NL 3262043904,3262044159,GB 3262044160,3262044415,RS 3262044416,3262044671,DE 3262044672,3262044927,GR 3262044928,3262045183,UA 3262045184,3262045439,LT 3262045440,3262045695,NL 3262045696,3262045951,SI 3262045952,3262046207,RU 3262046208,3262049279,FI 3262049280,3262049535,JO 3262049536,3262049791,GB 3262049792,3262050559,PL 3262050560,3262050815,GB 3262050816,3262051071,CH 3262051072,3262051583,GB 3262051584,3262051839,FR 3262052608,3262052863,IL 3262052864,3262053119,GB 3262053120,3262053375,RU 3262053376,3262053631,UA 3262053632,3262053887,RU 3262054144,3262054399,RU 3262054400,3262119935,FI 3262119936,3262122175,AX 3262122176,3262122183,SE 3262122184,3262124031,AX 3262124032,3262128127,DE 3262128128,3262136319,GB 3262137600,3262137855,DE 3262139392,3262140415,GB 3262140416,3262140671,DE 3262141184,3262141439,DE 3262141440,3262142463,ES 3262142464,3262142719,DE 3262143488,3262143743,GB 3262144000,3262144047,DE 3262145024,3262145279,DE 3262145552,3262145567,DE 3262145616,3262145631,DE 3262145664,3262145791,DE 3262145792,3262146047,GB 3262146048,3262146815,DE 3262147584,3262147839,DE 3262148608,3262148863,DE 3262148880,3262148919,DE 3262148928,3262149119,DE 3262149120,3262149151,FR 3262149152,3262149159,DE 3262149168,3262149375,FR 3262149632,3262149887,DE 3262150912,3262151047,DE 3262151072,3262151103,DE 3262151136,3262151151,DE 3262151168,3262151423,DE 3262151936,3262152191,DE 3262152664,3262152671,DE 3262152704,3262185471,AT 3262185472,3262193663,DE 3262193920,3262194175,DE 3262195712,3262196223,DE 3262197760,3262200319,DE 3262200576,3262201087,DE 3262203648,3262203903,DE 3262204928,3262221055,DE 3262221568,3262221823,DE 3262222080,3262222335,DE 3262223360,3262223871,DE 3262224896,3262225151,AT 3262226432,3262227455,DE 3262227712,3262227967,RO 3262228480,3262228735,DE 3262229248,3262229503,NL 3262229760,3262230015,DE 3262230528,3262235135,DE 3262236672,3262243327,DE 3262243840,3262248191,DE 3262248448,3262248959,DE 3262249472,3262283775,DE 3262283776,3262284799,RU 3262284800,3262285823,UA 3262286848,3262287871,SE 3262287872,3262288127,MD 3262288128,3262288383,FR 3262288384,3262288895,IL 3262288896,3262289919,PL 3262289920,3262316543,SE 3262316544,3262382079,DE 3262382080,3262414847,IT 3262414848,3262415359,DE 3262415360,3262416895,PL 3262416896,3262417407,RO 3262417408,3262417919,PL 3262417920,3262418431,RU 3262418432,3262419455,FR 3262419456,3262419967,NL 3262419968,3262420479,FR 3262420480,3262420991,CH 3262420992,3262421503,ES 3262422016,3262422527,SE 3262422528,3262423039,AT 3262423040,3262423551,GB 3262423552,3262424063,UA 3262424064,3262424575,IT 3262424576,3262424831,PL 3262424832,3262425087,GB 3262425088,3262425343,GR 3262425344,3262425599,RU 3262425600,3262426111,UA 3262426624,3262427135,GB 3262427136,3262427647,FR 3262427648,3262428159,DK 3262428160,3262428671,CH 3262428672,3262429183,PL 3262429184,3262429695,ES 3262429696,3262430207,DE 3262430208,3262430719,EE 3262431232,3262431743,PL 3262431744,3262432255,UA 3262432256,3262432767,CH 3262432768,3262433279,GB 3262433280,3262433791,RO 3262433792,3262434303,FR 3262434304,3262434815,SI 3262434816,3262435839,DE 3262435840,3262436351,CH 3262436352,3262436863,SE 3262437888,3262438399,FR 3262438400,3262438911,NL 3262438912,3262439167,DK 3262439168,3262439423,SE 3262439424,3262439935,AT 3262439936,3262440447,IL 3262440960,3262441471,IL 3262441472,3262441983,UA 3262441984,3262442495,DE 3262443008,3262443519,UA 3262443520,3262444031,ES 3262444032,3262444543,AT 3262444544,3262445055,UA 3262445056,3262445567,RO 3262446592,3262447103,PL 3262447104,3262447615,GB 3262447616,3262460415,PT 3262460544,3262460671,RU 3262460672,3262460927,AE 3262460928,3262461055,CY 3262461056,3262461183,DK 3262461312,3262461439,NO 3262461440,3262461567,DE 3262461568,3262461695,GB 3262461824,3262461951,RO 3262461952,3262463999,IQ 3262464000,3262472191,RU 3262472192,3262472735,DE 3262472736,3262472739,IT 3262472740,3262473476,DE 3262473477,3262473477,US 3262473478,3262473596,DE 3262473597,3262473597,US 3262473598,3262473685,DE 3262473686,3262473686,US 3262473687,3262473730,DE 3262473731,3262473731,US 3262473732,3262473732,DE 3262473733,3262473733,US 3262473734,3262473752,DE 3262473753,3262473753,US 3262473754,3262473777,DE 3262473778,3262473778,US 3262473779,3262473781,DE 3262473782,3262473782,US 3262473783,3262473855,DE 3262473856,3262473859,US 3262473860,3262474043,DE 3262474044,3262474044,GB 3262474045,3262474051,DE 3262474052,3262474052,SG 3262474053,3262474060,DE 3262474061,3262474061,SG 3262474062,3262474114,DE 3262474115,3262474115,SG 3262474116,3262474145,DE 3262474146,3262474146,SG 3262474147,3262474156,DE 3262474157,3262474157,SG 3262474158,3262474176,DE 3262474177,3262474177,SG 3262474178,3262474183,DE 3262474184,3262474184,SG 3262474185,3262474204,DE 3262474205,3262474205,SG 3262474206,3262474236,DE 3262474237,3262474237,SG 3262474238,3262474347,DE 3262474348,3262474351,AU 3262474352,3262474435,DE 3262474436,3262474439,AU 3262474440,3262474475,DE 3262474476,3262474479,AU 3262474480,3262475057,DE 3262475058,3262475058,US 3262475059,3262475109,DE 3262475110,3262475110,US 3262475111,3262475205,DE 3262475206,3262475206,US 3262475207,3262475479,DE 3262475480,3262475483,US 3262475484,3262475523,DE 3262475524,3262475527,US 3262475528,3262476235,DE 3262476236,3262476239,US 3262476240,3262476275,DE 3262476276,3262476279,CA 3262476280,3262476471,DE 3262476472,3262476475,CA 3262476476,3262476591,DE 3262476592,3262476595,GB 3262476596,3262477311,DE 3262477312,3262477315,ES 3262477316,3262477367,DE 3262477368,3262477371,US 3262477372,3262477771,DE 3262477772,3262477775,CA 3262477776,3262477859,DE 3262477860,3262477863,US 3262477864,3262478307,DE 3262478308,3262478311,ES 3262478312,3262478319,DE 3262478320,3262478323,GB 3262478324,3262478389,DE 3262478390,3262478390,ES 3262478391,3262478404,DE 3262478405,3262478405,GB 3262478406,3262478493,DE 3262478494,3262478494,FR 3262478495,3262478557,DE 3262478558,3262478558,IT 3262478559,3262478696,DE 3262478697,3262478697,ES 3262478698,3262478998,DE 3262478999,3262478999,AT 3262479000,3262479000,CH 3262479001,3262479184,DE 3262479185,3262479185,IT 3262479186,3262479267,DE 3262479268,3262479268,NL 3262479269,3262479323,DE 3262479324,3262479324,NL 3262479325,3262479427,DE 3262479428,3262479428,FR 3262479429,3262479654,DE 3262479655,3262479655,NL 3262479656,3262480282,DE 3262480283,3262480283,GB 3262480284,3262480317,DE 3262480318,3262480318,IT 3262480319,3262480383,DE 3262480384,3262488575,GB 3262488576,3262496767,SE 3262496768,3262504959,FR 3262505472,3262505983,GB 3262505984,3262506495,PL 3262506496,3262507007,RO 3262507008,3262507519,DK 3262507520,3262508031,VG 3262508032,3262508543,RO 3262509056,3262509567,PL 3262509568,3262510079,RO 3262510080,3262511103,FR 3262511104,3262511615,GB 3262512128,3262512639,UA 3262512640,3262513151,DE 3262513152,3262578687,AT 3262578688,3262611455,FR 3262611456,3262627839,GB 3262627840,3262636031,IT 3262636032,3262644223,BE 3262644224,3262648319,NL 3262648320,3262648575,DE 3262648576,3262650111,NL 3262650112,3262650367,DE 3262650368,3262654463,NL 3262654464,3262654719,DE 3262654720,3262664703,NL 3262664704,3262665736,DE 3262665737,3262665737,CH 3262665738,3262670847,DE 3262670848,3262690815,NL 3262690816,3262691583,DE 3262691584,3262693375,NL 3262693376,3262701567,DE 3262701568,3262722815,NL 3262722816,3262723071,DE 3262723072,3262753791,NL 3262753792,3262754815,DE 3262754816,3262832639,NL 3262832640,3262840319,DE 3262840320,3262906367,NL 3262906368,3262914559,CH 3262922752,3262954495,CH 3262954496,3262955519,LI 3262955520,3262958591,CH 3262959616,3262960127,CH 3262960640,3262960895,CH 3262961920,3262962175,CH 3262963200,3262963967,CH 3262964224,3262964479,CH 3262964992,3262965247,DE 3262965248,3262971903,CH 3262971904,3263029247,IE 3263029248,3263030271,UA 3263031296,3263032319,TR 3263032320,3263033343,RU 3263033344,3263033855,LV 3263033856,3263034367,IT 3263034368,3263034879,UA 3263034880,3263035391,GB 3263036416,3263036927,GR 3263036928,3263037439,RU 3263037440,3263045631,LB 3263045632,3263053823,KW 3263053824,3263062015,GB 3263062016,3263070207,EE 3263070208,3263070719,FR 3263070720,3263070975,NL 3263072256,3263074303,LB 3263074304,3263074815,CH 3263074816,3263075327,RO 3263075328,3263075839,IT 3263075840,3263076351,SE 3263077376,3263077887,FR 3263077888,3263078399,DE 3263079424,3263080447,PL 3263080448,3263081471,RU 3263081472,3263082495,NL 3263083520,3263084543,UA 3263084544,3263085567,RO 3263085568,3263086591,CH 3263086592,3263086847,DK 3263086848,3263087103,NL 3263087360,3263087871,DE 3263087872,3263088127,SI 3263088128,3263088383,DE 3263088384,3263088639,LV 3263088640,3263089151,CH 3263089408,3263089663,RU 3263089664,3263089919,UA 3263089920,3263090175,RO 3263090176,3263090431,DE 3263090432,3263090687,PL 3263090688,3263090943,DE 3263090944,3263091199,GB 3263091200,3263091455,PL 3263091456,3263091711,NO 3263091712,3263091967,FI 3263091968,3263092479,HR 3263092736,3263092991,PL 3263092992,3263093247,FR 3263093248,3263093503,CH 3263093760,3263094015,RO 3263094016,3263094527,PL 3263094528,3263094783,DK 3263094784,3263095039,UA 3263095040,3263095295,ES 3263095296,3263095551,FR 3263095808,3263096063,DE 3263096064,3263096319,PL 3263096320,3263096575,TR 3263096576,3263096831,SA 3263096832,3263097087,PL 3263097344,3263097599,DK 3263097600,3263097855,NL 3263097856,3263098111,FR 3263098112,3263098367,DE 3263098368,3263098623,PL 3263098624,3263098879,DE 3263098880,3263099135,GB 3263099136,3263099391,NL 3263099392,3263099903,DE 3263099904,3263100159,RO 3263100416,3263100671,DE 3263100672,3263100927,GB 3263100928,3263101183,AT 3263101184,3263101439,SE 3263101440,3263101695,DK 3263101952,3263102207,LT 3263102208,3263102463,GB 3263102464,3263102719,PL 3263102720,3263102975,GR 3263102976,3263104030,DE 3263104031,3263104031,FR 3263104032,3263104040,DE 3263104041,3263104041,GB 3263104042,3263127807,DE 3263128576,3263129599,DE 3263130368,3263130623,DE 3263133696,3263137791,DE 3263137792,3263138303,PL 3263138304,3263138559,DE 3263138560,3263138815,AT 3263138816,3263168511,DE 3263168512,3263430655,GB 3263430656,3263433471,SE 3263433472,3263433727,NO 3263433728,3263436543,SE 3263436544,3263436799,ES 3263436800,3263438591,SE 3263438592,3263438847,IT 3263438848,3263443455,SE 3263443456,3263443967,NL 3263443968,3263446271,SE 3263446272,3263446527,CH 3263446528,3263447039,DE 3263447040,3263458047,SE 3263458048,3263458303,DE 3263458304,3263459583,SE 3263459584,3263459839,FR 3263459840,3263460095,SE 3263460096,3263460351,GB 3263460352,3263469567,SE 3263469568,3263469663,SG 3263469664,3263469695,US 3263469696,3263469855,SG 3263469856,3263469887,US 3263469888,3263470591,SG 3263470592,3263475711,SE 3263475712,3263476159,JP 3263476160,3263476191,GB 3263476192,3263476255,JP 3263476256,3263476287,GB 3263476288,3263476415,JP 3263476416,3263476479,GB 3263476480,3263476671,JP 3263476672,3263476703,GB 3263476704,3263476735,JP 3263476736,3263478527,SE 3263478528,3263478783,ES 3263478784,3263480831,SE 3263480832,3263481343,JP 3263481344,3263481359,GB 3263481360,3263481455,JP 3263481456,3263481471,GB 3263481472,3263481487,JP 3263481488,3263481503,GB 3263481504,3263481855,JP 3263481856,3263482879,SE 3263482880,3263483903,GB 3263483904,3263496191,SE 3263496192,3263503103,GB 3263503104,3263503359,DE 3263503360,3263511551,GB 3263511552,3263512063,BE 3263512064,3263512575,GB 3263512576,3263512831,ES 3263512832,3263513855,GB 3263513856,3263514111,RU 3263514112,3263520767,GB 3263520768,3263525887,DE 3263525888,3263526143,ZA 3263526144,3263545343,DE 3263545344,3263561727,US 3263561728,3263627263,NL 3263627264,3263627519,RU 3263627520,3263628031,UA 3263628032,3263631359,RU 3263631360,3263632127,UA 3263632128,3263632383,RU 3263632384,3263632639,UA 3263632640,3263633151,RU 3263633152,3263633663,UA 3263633664,3263635455,RU 3263635456,3263636223,UA 3263636224,3263636479,RU 3263636480,3263636991,UA 3263636992,3263637247,RU 3263637248,3263637503,UA 3263637504,3263638527,RU 3263638528,3263639039,UA 3263639040,3263647743,RU 3263647744,3263651619,LT 3263651620,3263651620,RU 3263651621,3263651839,LT 3263651840,3263660031,RU 3263660032,3263661055,DE 3263661056,3263666175,RU 3263666176,3263676415,AZ 3263676416,3263678463,RU 3263678464,3263680511,DE 3263680512,3263692799,RU 3263692800,3263823871,FI 3263823872,3263826943,DE 3263826944,3263827199,AT 3263827200,3263886079,DE 3263886080,3263886335,SG 3263886336,3263954943,DE 3263954944,3263979519,ES 3263979520,3263987711,DE 3263987712,3264004095,ES 3264004096,3264012287,HU 3264012544,3264012799,FR 3264012800,3264013055,GB 3264013056,3264013311,TR 3264013312,3264013567,UA 3264013824,3264014079,NL 3264014080,3264014335,DE 3264014336,3264014591,PT 3264014592,3264014847,PL 3264014848,3264015103,IE 3264015104,3264015359,RO 3264015360,3264015615,DK 3264015872,3264016127,PT 3264016128,3264016383,UA 3264016384,3264016639,SE 3264016640,3264016895,PL 3264017152,3264017663,SE 3264017664,3264017919,RO 3264017920,3264018175,NL 3264018176,3264018431,FR 3264018432,3264018687,HU 3264018944,3264019199,PL 3264019200,3264019967,GB 3264019968,3264020223,AT 3264020224,3264020479,PL 3264020480,3264086015,BG 3264086016,3264151551,FI 3264151552,3264184319,NO 3264184320,3264184831,MD 3264184832,3264185343,NL 3264185344,3264185855,FR 3264185856,3264186367,DE 3264186368,3264186879,UA 3264186880,3264187391,RU 3264187392,3264187903,IR 3264187904,3264188415,IT 3264188416,3264189439,UA 3264189440,3264190463,RU 3264190464,3264190975,LV 3264190976,3264191487,GB 3264191488,3264191999,DE 3264192000,3264200703,GB 3264200704,3264208895,ES 3264208896,3264217087,HU 3264217088,3264282623,IS 3264282624,3264290815,GB 3264290816,3264296191,FI 3264296192,3264297727,FR 3264297728,3264298751,DE 3264298752,3264299007,BG 3264299008,3264307199,DE 3264307200,3264311295,PL 3264311808,3264312063,DE 3264312064,3264312319,CH 3264312576,3264312831,UA 3264312832,3264313087,DE 3264313088,3264313343,NL 3264313344,3264313599,RO 3264313600,3264313855,PT 3264313856,3264314623,DE 3264314880,3264315135,GB 3264315392,3264317439,IE 3264318464,3264318975,ES 3264319488,3264319743,FR 3264319744,3264319999,SE 3264320000,3264320255,DE 3264320256,3264321023,GB 3264321024,3264321535,DE 3264321792,3264322047,RS 3264322048,3264322303,FR 3264322560,3264322815,HU 3264322816,3264323071,CH 3264323072,3264323327,RU 3264323328,3264323583,RO 3264323584,3264324607,BG 3264324608,3264325631,SE 3264325632,3264326655,RU 3264326656,3264327679,SE 3264327680,3264328703,AT 3264328704,3264329727,CZ 3264329728,3264330751,PL 3264330752,3264331775,GB 3264331776,3264332287,DE 3264332288,3264332799,NL 3264332800,3264333311,GB 3264333312,3264333823,UA 3264333824,3264334335,NL 3264334336,3264334847,UA 3264334848,3264335359,PL 3264335360,3264335871,SK 3264335872,3264336383,BZ 3264337408,3264338431,UA 3264338432,3264338943,DE 3264338944,3264339455,UA 3264339456,3264339967,GB 3264339968,3264340223,DE 3264340224,3264340479,PL 3264340480,3264340735,DE 3264340736,3264340991,UA 3264340992,3264341503,PL 3264341504,3264341759,DE 3264341760,3264342015,IT 3264342016,3264342783,DE 3264342784,3264343039,FR 3264343040,3264343295,DE 3264343296,3264343551,GB 3264343552,3264343807,RO 3264343808,3264344063,DE 3264344064,3264345087,GB 3264345088,3264346111,NL 3264346112,3264347135,SE 3264347136,3264348159,DE 3264352256,3264354303,FR 3264355072,3264355327,FR 3264357632,3264357887,DE 3264359936,3264360191,FR 3264360448,3264369151,FR 3264372736,3264373759,FR 3264374784,3264376063,SE 3264376064,3264376319,HR 3264376320,3264376575,UA 3264376576,3264376831,CH 3264376832,3264377087,UA 3264377088,3264377343,RU 3264377600,3264377855,RU 3264378112,3264378367,SE 3264378368,3264378623,DE 3264378624,3264378879,RU 3264378880,3264379135,PL 3264379136,3264379391,BE 3264379392,3264379647,RU 3264379648,3264379903,PL 3264380160,3264380415,RO 3264380672,3264380927,NL 3264380928,3264381951,PL 3264381952,3264385023,UA 3264385024,3264386047,DE 3264386048,3264387071,IR 3264387072,3264388095,LB 3264389120,3264390143,RU 3264391168,3264392191,SE 3264392192,3264393215,FR 3264393216,3264394239,DE 3264394240,3264395263,UA 3264395264,3264396287,AT 3264396288,3264397311,UA 3264398336,3264399359,UA 3264399360,3264400383,RU 3264401408,3264402431,DE 3264402432,3264403455,CH 3264403456,3264404479,PL 3264405504,3264406527,FR 3264406528,3264407551,UA 3264407552,3264408575,BG 3264408576,3264409599,AE 3264409600,3264410623,RU 3264410624,3264411647,NO 3264411648,3264413695,PL 3264417792,3264419839,CH 3264423424,3264425727,CH 3264425984,3264428031,CH 3264430592,3264430847,CH 3264431104,3264431615,LI 3264431616,3264431871,CH 3264432128,3264438527,CH 3264439808,3264440575,CH 3264441344,3264441599,PL 3264442368,3264442879,CH 3264447488,3264447743,CH 3264447744,3264447999,DE 3264448000,3264448511,CH 3264449792,3264450047,CH 3264450304,3264450559,CH 3264452352,3264452607,CH 3264454656,3264455679,CH 3264456704,3264457215,CH 3264457472,3264457727,AT 3264457984,3264458239,CH 3264458752,3264463871,CH 3264463872,3264466943,LI 3264466944,3264474623,CH 3264475136,3264475391,CH 3264476416,3264476671,CH 3264476672,3264477183,RU 3264477184,3264477439,PL 3264477440,3264477695,RU 3264478720,3264478975,CH 3264479232,3264544767,CH 3264544768,3264556799,HU 3264556800,3264557055,BG 3264557056,3264557823,HU 3264557824,3264558079,BG 3264558080,3264561151,HU 3264561152,3264563199,RU 3264563200,3264564223,ES 3264564224,3264565247,IE 3264565248,3264567295,NL 3264567296,3264567551,PL 3264567808,3264568063,RU 3264568320,3264568575,UA 3264568832,3264569087,FR 3264569088,3264569343,RU 3264569344,3264577535,CZ 3264577536,3264585727,MK 3264585728,3264593919,FR 3264593920,3264602111,ES 3264602112,3264603135,RU 3264603136,3264604159,PL 3264604160,3264604671,IT 3264604672,3264605183,RU 3264605184,3264605695,GR 3264605696,3264606207,DK 3264606208,3264606463,PL 3264606464,3264606719,DE 3264606720,3264606975,RU 3264606976,3264607231,BE 3264607232,3264607487,IT 3264607488,3264610303,DE 3264610304,3264612479,GB 3264612480,3264612575,FR 3264612576,3264613027,GB 3264613028,3264613031,FR 3264613032,3264614911,GB 3264614912,3264615167,SE 3264615168,3264616263,GB 3264616264,3264616271,CH 3264616272,3264617983,GB 3264617984,3264618239,US 3264618240,3264619391,GB 3264619392,3264619519,BE 3264619520,3264624639,GB 3264624640,3264624671,US 3264624672,3264626687,GB 3264626688,3264627711,EE 3264628736,3264629759,UA 3264630784,3264631807,DE 3264631808,3264632831,RO 3264632832,3264633855,RU 3264634880,3264636927,PL 3264636928,3264637951,RU 3264637952,3264639999,DK 3264640000,3264641023,BG 3264641024,3264642047,GB 3264643072,3264651263,RU 3264651264,3264651775,CH 3264651776,3264652287,IT 3264652288,3264652799,RU 3264652800,3264653311,PL 3264653312,3264653823,DE 3264653824,3264654335,PL 3264654336,3264654847,DE 3264654848,3264655359,UA 3264655360,3264655871,GB 3264655872,3264656383,RU 3264656896,3264657407,GB 3264657408,3264657919,PL 3264657920,3264658431,RO 3264658432,3264659455,DE 3264659456,3264659967,UA 3264659968,3264660479,GB 3264660480,3264660991,PL 3264660992,3264661503,CH 3264661504,3264662015,GB 3264662016,3264662527,RU 3264663040,3264663551,PL 3264663552,3264664063,NL 3264664064,3264664575,DE 3264664576,3264665087,NO 3264665600,3264666111,RO 3264666112,3264666623,IL 3264666624,3264667135,UA 3264667136,3264667647,RU 3264667648,3264668159,BE 3264668160,3264669183,DE 3264669184,3264669695,PL 3264669696,3264670207,UA 3264670720,3264671231,FR 3264671232,3264671743,PL 3264671744,3264672255,DE 3264672256,3264672767,RO 3264672768,3264673279,CH 3264673280,3264673791,PL 3264673792,3264674303,CH 3264674304,3264674815,PL 3264674816,3264675327,GB 3264675328,3264675839,RU 3264675840,3264741375,NL 3264741376,3264749567,SI 3264749568,3264750079,LV 3264750080,3264750591,RU 3264750592,3264751103,KG 3264751104,3264751615,DK 3264751616,3264752127,GB 3264752128,3264752639,RO 3264752640,3264753151,AE 3264753152,3264753663,PL 3264753664,3264754175,IT 3264754176,3264754687,PL 3264754688,3264754943,LU 3264754944,3264755199,PL 3264755200,3264755711,DE 3264755712,3264756223,PL 3264756736,3264757247,PL 3264757248,3264757759,RU 3264757760,3264765951,GB 3264765952,3264774143,AT 3264774144,3264782335,HU 3264782336,3264790527,AT 3264790528,3264806911,HR 3264806912,3264815103,GB 3264815104,3264825343,SE 3264825856,3264826111,NL 3264826112,3264826367,GB 3264826880,3264827135,NL 3264827136,3264827391,LV 3264827648,3264828159,GR 3264828160,3264828415,CH 3264828416,3264828671,SE 3264828672,3264828927,MT 3264828928,3264829439,DE 3264829440,3264830207,FR 3264830208,3264830463,SE 3264830464,3264830719,FR 3264830720,3264830975,AT 3264830976,3264831231,CH 3264831232,3264831487,PL 3264831488,3264831743,CH 3264831744,3264831999,FR 3264832000,3264832255,IE 3264832512,3264832767,DE 3264832768,3264833023,IL 3264833536,3264834047,DE 3264834048,3264834303,GB 3264834304,3264834559,PL 3264834560,3264835327,FR 3264835328,3264835583,AT 3264835584,3264835839,RU 3264835840,3264836351,DE 3264836352,3264836607,PL 3264836608,3264836863,DE 3264836864,3264837119,NL 3264837120,3264837375,BG 3264837376,3264837631,PL 3264837632,3264839679,AT 3264839680,3264840191,UA 3264840192,3264840447,DE 3264840448,3264840703,IT 3264840704,3264840959,PT 3264841216,3264841471,PL 3264841472,3264841727,LV 3264841728,3264844031,GB 3264844032,3264844287,BG 3264844288,3264844799,DE 3264844800,3264845311,UA 3264845312,3264845951,DE 3264845952,3264846079,GB 3264846208,3264846335,AE 3264846336,3264846463,GB 3264846464,3264846591,NO 3264846848,3264846911,DK 3264846912,3264847103,CY 3264847232,3264847263,CH 3264847264,3264847295,LI 3264847296,3264847359,CY 3264847488,3264847615,RU 3264847616,3264847679,PL 3264847680,3264847743,FI 3264847872,3264849919,DE 3264849920,3264850431,GB 3264850688,3264850943,LV 3264850944,3264851967,IT 3264851968,3264854015,CH 3264854016,3264854271,GB 3264854528,3264854783,DE 3264854784,3264855039,IT 3264855040,3264855551,CH 3264855552,3264856063,DE 3264856064,3264861695,IT 3264861696,3264862207,FR 3264862208,3264862463,PL 3264862464,3264862719,AT 3264862720,3264862975,GB 3264862976,3264863231,DE 3264863232,3264864255,AT 3264864256,3264872447,RO 3264872448,3264888831,GB 3264888832,3264897023,RU 3264897024,3264905215,GB 3264905216,3264913407,CY 3264913408,3264921599,GB 3264921600,3264929791,LU 3264929792,3264937983,SK 3264937984,3265003519,GB 3265003520,3265005567,DE 3265007616,3265009663,DE 3265009664,3265009919,FR 3265009920,3265010175,DE 3265011712,3265018879,DE 3265018880,3265019903,HK 3265036288,3265037311,DE 3265038080,3265038335,DE 3265040384,3265044479,DE 3265044736,3265044991,DE 3265045760,3265046015,TR 3265046528,3265047807,DE 3265048064,3265048319,DE 3265050624,3265052671,DE 3265053696,3265054207,DE 3265055232,3265055743,FR 3265056256,3265056511,DE 3265056768,3265069055,DE 3265069056,3265134591,FI 3265134592,3265134863,CH 3265134864,3265134879,BE 3265134880,3265135039,CH 3265135040,3265135071,BE 3265135072,3265137983,CH 3265137984,3265138047,NL 3265138048,3265138599,CH 3265138600,3265138607,NL 3265138608,3265139967,CH 3265139968,3265139975,BE 3265139976,3265139999,CH 3265140000,3265140015,BE 3265140016,3265140119,CH 3265140120,3265140127,BE 3265140128,3265141135,CH 3265141136,3265141151,GB 3265141152,3265141551,CH 3265141552,3265141555,IE 3265141556,3265141759,CH 3265141760,3265142015,GB 3265142016,3265142783,CH 3265142784,3265150975,MT 3265150976,3265159167,AD 3265159168,3265167359,FR 3265167360,3265175551,AT 3265175552,3265183743,NL 3265183744,3265191935,BY 3265191936,3265200127,CH 3265200128,3265265663,GB 3265265664,3265331199,SK 3265331200,3265334271,GB 3265336320,3265337343,GB 3265338368,3265340415,GB 3265342464,3265343487,GB 3265345536,3265347583,DE 3265347584,3265348607,FR 3265349632,3265351679,FR 3265360896,3265361919,GB 3265361920,3265363967,IT 3265363968,3265366015,ES 3265368064,3265369087,DK 3265371136,3265376255,DE 3265377280,3265378303,GB 3265378304,3265379327,NL 3265380352,3265382911,GB 3265386496,3265386751,NL 3265387008,3265387263,NL 3265388544,3265392639,GB 3265394688,3265396735,GB 3265396736,3265527807,DE 3265527808,3265593343,GB 3265593344,3265594367,RU 3265594880,3265595391,UA 3265595392,3265595903,PL 3265596416,3265596927,GB 3265596928,3265597439,FR 3265597440,3265597951,MC 3265597952,3265599999,RU 3265600512,3265601023,GB 3265601024,3265601535,RU 3265601536,3265601791,SE 3265601792,3265602047,CH 3265602048,3265602303,NL 3265602560,3265602815,IT 3265602816,3265603071,IE 3265603328,3265603583,MD 3265603584,3265603839,DE 3265603840,3265604095,PL 3265604096,3265604351,GB 3265604352,3265604607,FR 3265604608,3265604863,CH 3265604864,3265605119,RU 3265605120,3265605375,UA 3265605376,3265605631,CZ 3265605632,3265605887,PL 3265605888,3265606143,FR 3265606144,3265606399,RU 3265606400,3265606655,NL 3265606656,3265606911,AT 3265606912,3265607167,RU 3265607168,3265607423,PL 3265607424,3265607679,DK 3265607936,3265608191,CZ 3265608448,3265608703,SE 3265608704,3265608959,GB 3265608960,3265609215,RU 3265609216,3265609727,UA 3265609728,3265617919,NL 3265617920,3265626111,SI 3265626112,3265634303,JO 3265634304,3265642495,IE 3265642496,3265650687,GB 3265650688,3265658879,SE 3265658880,3265724415,AT 3265724416,3265789951,FR 3265789952,3265824767,GB 3265824768,3265825023,US 3265825024,3265867775,GB 3265868288,3265868543,GB 3265868800,3265869055,DE 3265871872,3265875967,GB 3265880064,3265886207,GB 3265887232,3265887487,GB 3265887488,3265887743,PT 3265887744,3265888255,PL 3265888256,3265901567,GB 3265902336,3265902591,FR 3265904384,3265904639,RO 3265904640,3265904895,DE 3265905152,3265905663,GB 3265905920,3265906175,GB 3265906176,3265906431,DE 3265906432,3265906687,CH 3265906688,3265906943,AT 3265906944,3265907199,ES 3265907200,3265907455,DE 3265907456,3265907711,FR 3265907712,3265908735,UA 3265908736,3265908991,NL 3265908992,3265909247,RO 3265909248,3265909503,UA 3265909504,3265909759,DE 3265909760,3265910015,RO 3265910272,3265910527,FR 3265910528,3265910783,PT 3265910784,3265911295,DE 3265911296,3265911551,GB 3265911552,3265911807,CH 3265911808,3265912063,PL 3265912064,3265912319,GB 3265912320,3265912575,DE 3265912832,3265913087,CZ 3265913088,3265913343,SE 3265913344,3265914367,PL 3265914624,3265914879,BG 3265914880,3265915135,GR 3265915136,3265915391,RO 3265915392,3265915647,GB 3265915648,3265915903,RO 3265915904,3265916159,PL 3265916416,3265916671,UA 3265916672,3265916927,DE 3265916928,3265917183,FR 3265917184,3265917439,PL 3265917696,3265917951,SE 3265917952,3265918207,GB 3265918464,3265918719,AT 3265918720,3265918975,RU 3265918976,3265919231,NL 3265919232,3265919487,FR 3265919488,3265919743,RU 3265919744,3265919999,DE 3265920000,3265920255,CZ 3265920512,3265920767,GB 3265920768,3265921023,RU 3265921024,3265986559,AE 3265986560,3266052095,NL 3266052096,3266322431,DE 3266322432,3266330623,LT 3266330624,3266338815,GB 3266338816,3266339071,RU 3266339072,3266339327,UA 3266339840,3266340095,RU 3266340096,3266340607,PL 3266340608,3266340863,FI 3266340864,3266341119,CH 3266341120,3266341375,GB 3266341376,3266341631,DE 3266341888,3266342143,KW 3266342144,3266342399,CH 3266342400,3266342655,BE 3266342656,3266342911,KG 3266342912,3266343167,SI 3266343168,3266343423,GR 3266343424,3266343679,RU 3266343680,3266343935,RO 3266343936,3266344191,CH 3266344448,3266344703,RU 3266344704,3266344959,ES 3266344960,3266345983,DE 3266345984,3266346495,GB 3266346496,3266346751,IT 3266346752,3266347007,FR 3266351360,3266352607,GB 3266352896,3266353567,GB 3266353584,3266353591,GB 3266353664,3266353671,GB 3266353680,3266353687,GB 3266353776,3266353783,US 3266353856,3266353863,GB 3266353880,3266353887,GB 3266353896,3266353903,GB 3266353920,3266354175,GB 3266354688,3266355199,GB 3266355200,3266363391,RO 3266363392,3266371583,GB 3266371584,3266379775,HU 3266379776,3266380799,UA 3266380800,3266381823,PL 3266381824,3266382847,FR 3266382848,3266383871,RU 3266383872,3266384895,IL 3266384896,3266385919,RU 3266385920,3266386943,UA 3266386944,3266387967,PL 3266387968,3266396159,FR 3266396160,3266412543,IT 3266412544,3266420735,AT 3266420736,3266428927,GB 3266428928,3266437119,GR 3266437120,3266445311,GL 3266445312,3266472959,NL 3266472960,3266473215,SE 3266473216,3266510847,NL 3266510848,3266543615,ES 3266543616,3266576383,IT 3266576384,3266577919,DE 3266579456,3266582783,DE 3266583552,3266584575,DE 3266587648,3266588927,DE 3266589696,3266591743,DE 3266592768,3266603007,DE 3266604800,3266605823,DE 3266607104,3266616575,DE 3266617328,3266617343,GB 3266617344,3266619903,DE 3266620416,3266621439,DE 3266625024,3266625279,DE 3266625536,3266633727,DE 3266634392,3266634399,EE 3266635776,3266641919,DE 3266641920,3266707455,PL 3266707456,3266772991,DK 3266772992,3266781183,IT 3266781184,3266789375,PL 3266789376,3266797567,SM 3266797568,3266797823,GB 3266797824,3266798079,ES 3266798080,3266798847,GB 3266798848,3266798879,CZ 3266798880,3266804639,GB 3266804640,3266804643,NL 3266804644,3266805759,GB 3266805760,3266813951,AT 3266813952,3266822143,UA 3266822144,3266830335,FR 3266830336,3266836479,BE 3266836480,3266837503,LU 3266837504,3266838527,BE 3266838528,3266969599,IT 3266969600,3267035135,RU 3267035136,3267039231,NO 3267039232,3267040255,DE 3267040256,3267041279,RO 3267042304,3267043327,UA 3267043328,3267044351,GB 3267045376,3267046399,PL 3267046400,3267047423,NL 3267047424,3267048447,UA 3267048448,3267049471,PL 3267049472,3267050495,GB 3267050496,3267051519,SE 3267051520,3267052543,DE 3267052544,3267053567,LV 3267053568,3267054591,PL 3267054592,3267055615,NL 3267055616,3267056639,PS 3267056640,3267057663,IL 3267057664,3267058687,CH 3267058688,3267059711,AT 3267059712,3267060735,NL 3267060736,3267061759,LV 3267061760,3267063807,UA 3267063808,3267064063,DE 3267064064,3267064576,BE 3267064577,3267064577,DE 3267064578,3267064831,BE 3267064832,3267065855,PL 3267066880,3267067903,IT 3267067904,3267068927,UA 3267068928,3267069951,BG 3267069952,3267070975,RO 3267070976,3267071999,DE 3267072000,3267073023,PL 3267073024,3267075071,UA 3267075072,3267076095,CH 3267076096,3267078143,DE 3267078144,3267079167,FR 3267079168,3267080191,IT 3267080192,3267081215,AT 3267081216,3267082239,PL 3267082240,3267083263,DE 3267084288,3267085311,FR 3267085312,3267086335,RU 3267086336,3267087359,PL 3267087360,3267088383,RU 3267088384,3267089407,UA 3267089408,3267090431,FI 3267090432,3267091455,UA 3267091456,3267092479,DE 3267092480,3267093503,FR 3267093504,3267094527,UA 3267094528,3267095551,FI 3267095552,3267096575,PL 3267096576,3267097599,DE 3267097600,3267098623,KZ 3267098624,3267099391,GB 3267099392,3267099399,BE 3267099400,3267099647,GB 3267099648,3267100671,IT 3267100672,3267166207,FI 3267166208,3267231743,GB 3267231744,3267297279,RU 3267297280,3267362815,CH 3267362816,3267428351,DK 3267428352,3267493887,GB 3267501056,3267504127,GB 3267511296,3267512319,FR 3267513344,3267514367,FR 3267514368,3267515391,DE 3267516416,3267517439,DE 3267520512,3267521535,DE 3267522560,3267523583,DE 3267527680,3267528703,FR 3267529728,3267530751,AT 3267531776,3267532799,FR 3267534848,3267536895,FR 3267537920,3267538943,FR 3267549184,3267550207,DK 3267559424,3267624959,DE 3267627408,3267627411,GB 3267628400,3267628415,FR 3267630080,3267631095,GB 3267631096,3267631103,IT 3267631104,3267631615,GB 3267634176,3267635199,GB 3267648320,3267648335,GB 3267650320,3267650335,AT 3267657576,3267657583,RO 3267657696,3267657703,RO 3267657712,3267657727,RO 3267661904,3267661967,ES 3267662896,3267662911,IE 3267665920,3267666943,GB 3267667456,3267667967,GB 3267670016,3267671039,ZA 3267674208,3267674239,GB 3267681312,3267681327,FR 3267681888,3267681903,FR 3267683936,3267683967,PL 3267684352,3267684863,GB 3267690496,3267691519,FI 3267691520,3267692543,SE 3267692544,3267741759,FI 3267741760,3267741791,SE 3267741792,3267756031,FI 3267756032,3267821567,SE 3267821568,3267845375,FR 3267845376,3267845631,GP 3267845632,3267846655,FR 3267846656,3267846911,MQ 3267846912,3267887103,FR 3267887104,3268149247,GB 3268149248,3268165631,EE 3268165632,3268173823,CH 3268173824,3268182015,MT 3268182016,3268198399,PL 3268198400,3268214783,MA 3268215584,3268215615,GB 3268215648,3268215679,GB 3268215712,3268215743,GB 3268215808,3268216063,GB 3268218112,3268218367,GB 3268219808,3268219823,GB 3268221440,3268221471,GB 3268221504,3268221599,GB 3268221696,3268221951,GB 3268222976,3268223167,GB 3268223200,3268223231,GB 3268224768,3268225023,US 3268226368,3268226399,GB 3268226496,3268226655,GB 3268226688,3268226815,GB 3268227328,3268227391,GB 3268227520,3268227615,GB 3268231168,3268231199,GB 3268231320,3268231359,GB 3268231392,3268231423,GB 3268231648,3268231679,GB 3268231744,3268231807,GB 3268232224,3268232243,GB 3268232352,3268232367,GB 3268232384,3268232415,GB 3268232480,3268232575,GB 3268232960,3268233087,GB 3268233984,3268234047,GB 3268234176,3268234239,GB 3268234560,3268234623,GB 3268235008,3268235263,GB 3268235264,3268235519,DE 3268235520,3268235775,GB 3268235936,3268236031,GB 3268236192,3268236207,GB 3268236544,3268236607,GB 3268236672,3268236799,GB 3268237824,3268237855,GB 3268238336,3268238591,GB 3268238632,3268238783,GB 3268238816,3268238847,GB 3268239584,3268240127,GB 3268240160,3268240191,GB 3268240384,3268240399,GB 3268240480,3268240487,GB 3268240688,3268240695,GB 3268240712,3268240735,GB 3268240744,3268240751,GB 3268240976,3268240991,GB 3268241008,3268241023,GB 3268241544,3268241551,GB 3268241640,3268241655,GB 3268242496,3268242523,GB 3268242880,3268243071,GB 3268243328,3268243391,GB 3268244776,3268244783,GB 3268244792,3268244799,GB 3268245504,3268245759,GB 3268246272,3268246783,GB 3268246976,3268246991,GB 3268248320,3268248447,GB 3268248512,3268248543,GB 3268249600,3268251311,GB 3268251312,3268251327,IE 3268251328,3268251647,GB 3268254464,3268254543,GB 3268254624,3268254639,GB 3268254896,3268254903,GB 3268255824,3268255863,GB 3268255896,3268255919,GB 3268255952,3268255959,GB 3268255968,3268255983,GB 3268256896,3268256959,GB 3268257024,3268257055,GB 3268257088,3268257119,GB 3268257416,3268257419,GB 3268257432,3268257439,IT 3268257464,3268257471,GB 3268257488,3268257527,GB 3268258560,3268258623,GB 3268258688,3268258751,GB 3268259520,3268259527,GB 3268259544,3268259551,GB 3268259560,3268259575,GB 3268259808,3268259815,GB 3268259832,3268260095,GB 3268260352,3268260383,GB 3268260416,3268260447,GB 3268260512,3268260607,GB 3268260640,3268260647,GB 3268261936,3268261951,GB 3268262768,3268262783,GB 3268262880,3268262887,GB 3268263232,3268263263,GB 3268263776,3268263783,GB 3268264736,3268264767,GB 3268265416,3268265431,GB 3268265984,3268266495,GB 3268266984,3268266991,GB 3268267536,3268267551,GB 3268267584,3268267599,GB 3268267616,3268267647,GB 3268267744,3268267775,GB 3268267952,3268267959,GB 3268268032,3268272127,GB 3268272640,3268272671,GB 3268272704,3268272711,GB 3268272728,3268272735,GB 3268273024,3268273151,GB 3268274112,3268274175,GB 3268274456,3268274459,GB 3268274528,3268274543,GB 3268274560,3268274591,GB 3268275984,3268275999,GB 3268276640,3268276655,GB 3268276672,3268276687,GB 3268276864,3268276895,GB 3268277056,3268277119,GB 3268277760,3268278015,GB 3268278464,3268278495,GB 3268280064,3268280319,GB 3268280320,3268345855,FR 3268345856,3268411391,GB 3268411392,3268426751,AT 3268426752,3268427775,CH 3268427776,3268464127,AT 3268464128,3268464383,LI 3268464384,3268476927,AT 3268476928,3268542463,CH 3268542464,3268607999,PT 3268608000,3268673535,FI 3268673536,3268739071,CZ 3268739072,3268739327,DE 3268739328,3268739583,PL 3268739584,3268739839,DE 3268739840,3268740095,GB 3268740096,3268740351,IL 3268740352,3268740607,DE 3268740608,3268740863,RO 3268740864,3268741119,CH 3268741376,3268741631,LV 3268741888,3268742143,AT 3268742144,3268742399,RU 3268742656,3268742911,BE 3268742912,3268743167,NL 3268743168,3268743423,RO 3268743680,3268743935,GB 3268743936,3268744191,ES 3268744448,3268744703,RU 3268744704,3268744959,PL 3268744960,3268745215,UA 3268745472,3268745727,RU 3268745728,3268745983,PL 3268745984,3268746239,DE 3268746240,3268746495,GB 3268746496,3268746751,IE 3268746752,3268747007,FR 3268747008,3268747263,DE 3268747264,3268755455,CZ 3268755456,3268763647,SE 3268763648,3268764159,RU 3268764160,3268764671,DE 3268764672,3268765183,LV 3268765184,3268765695,RU 3268765696,3268766719,UA 3268766720,3268767231,IL 3268767232,3268767487,UA 3268767488,3268767743,RU 3268767744,3268768255,NL 3268768256,3268768767,BE 3268768768,3268769279,RU 3268769280,3268769791,SE 3268769792,3268770303,UA 3268770304,3268770815,RU 3268770816,3268771327,FR 3268771328,3268771839,NL 3268771840,3268788223,NO 3268788224,3268804607,CZ 3268804608,3268869375,FR 3268869376,3268869631,PF 3268869632,3268870143,FR 3268870144,3268935679,FI 3268935680,3269066751,GB 3269066752,3269132287,SE 3269132288,3269197823,GR 3269197824,3269263359,RU 3269264640,3269264895,DE 3269265856,3269265919,DE 3269265920,3269266175,GB 3269266688,3269266943,DE 3269266944,3269267455,GB 3269272576,3269272583,DE 3269272704,3269272831,DE 3269272832,3269272847,GB 3269272848,3269272863,NL 3269272864,3269272887,GB 3269272896,3269273087,NL 3269273088,3269273343,DE 3269273600,3269273855,GB 3269273856,3269275647,DE 3269275904,3269276159,DE 3269276160,3269276415,GB 3269277184,3269277695,FR 3269277696,3269277759,GB 3269277760,3269278719,NL 3269279232,3269279487,NL 3269279672,3269279679,CH 3269279744,3269280255,GB 3269280256,3269280271,DE 3269280272,3269280767,NL 3269280768,3269281023,GB 3269281024,3269281279,DE 3269281280,3269281535,FR 3269282048,3269282303,DE 3269282304,3269282559,GB 3269282560,3269282815,FR 3269283328,3269283583,DE 3269283872,3269283903,DE 3269284096,3269284351,GB 3269284864,3269285079,FR 3269285088,3269285135,DE 3269285136,3269285151,GB 3269285152,3269285215,DE 3269285216,3269285311,FR 3269285312,3269285327,DE 3269285336,3269285343,FR 3269285344,3269285344,GB 3269285346,3269285375,GB 3269285376,3269285631,FR 3269285632,3269285887,DE 3269286400,3269286463,DE 3269288688,3269288959,DE 3269290560,3269290575,DE 3269290592,3269290687,DE 3269290736,3269290743,DE 3269291264,3269291519,DE 3269291520,3269291575,GB 3269291584,3269291647,GB 3269291776,3269292287,ES 3269293120,3269293151,DE 3269293208,3269293215,DE 3269293248,3269293279,DE 3269293376,3269293391,DE 3269293856,3269293887,DE 3269293920,3269293951,DE 3269294080,3269295103,GB 3269296232,3269296235,DE 3269296368,3269296375,DE 3269297152,3269297663,GB 3269298664,3269298671,DE 3269303040,3269303295,DE 3269303296,3269303423,GB 3269303552,3269303679,DE 3269305344,3269305351,DE 3269305856,3269306879,DE 3269307648,3269307903,DE 3269310656,3269310671,DE 3269310976,3269311231,DE 3269311872,3269311999,DE 3269313792,3269314175,DE 3269314192,3269314199,DE 3269315584,3269315591,DE 3269317632,3269317663,GB 3269317664,3269317671,IE 3269317672,3269317887,GB 3269317888,3269318399,DE 3269318400,3269318655,GB 3269318656,3269318983,DE 3269319008,3269319047,DE 3269319056,3269319071,DE 3269319136,3269320447,DE 3269320704,3269321727,GB 3269322240,3269322495,DE 3269322656,3269322671,DE 3269322752,3269323263,DE 3269326848,3269326855,DE 3269326960,3269326971,DE 3269326992,3269326999,DE 3269327024,3269327039,DE 3269327056,3269327103,DE 3269327760,3269327767,DE 3269327864,3269328383,DE 3269328896,3269459967,GB 3269459968,3269525503,ES 3269525504,3269591039,IR 3269591040,3269621759,RU 3269621760,3269623295,BY 3269623296,3269656575,RU 3269656576,3269722111,GB 3269722112,3269787647,CZ 3269787648,3269853183,NL 3269853184,3269918719,CH 3269918720,3269984255,DE 3269984256,3270049791,AT 3270049792,3270115327,DE 3270131712,3270148095,NO 3270148352,3270149887,FI 3270150656,3270151423,FI 3270152704,3270153727,FI 3270166528,3270167551,NO 3270205440,3270207487,ES 3270208512,3270209535,NL 3270234112,3270242303,NL 3270246400,3270377471,SE 3270377472,3270443007,GB 3270443008,3270508543,DK 3270508544,3270639615,FI 3270639616,3270640127,PL 3270640128,3270642175,RU 3270642176,3270642687,NO 3270642688,3270643199,DE 3270643200,3270643711,RU 3270643712,3270644223,AT 3270644224,3270644735,NL 3270644736,3270645247,DE 3270645760,3270646271,IL 3270646272,3270646783,RU 3270647296,3270647807,RU 3270647808,3270648063,TR 3270648064,3270648319,RU 3270648320,3270648575,CH 3270648576,3270648831,AT 3270648832,3270649087,SI 3270649088,3270649343,AT 3270649600,3270649855,PL 3270649856,3270650111,DK 3270650112,3270650367,AT 3270650368,3270650623,DK 3270650624,3270651135,FR 3270651648,3270651903,FR 3270652416,3270652671,DK 3270652672,3270652927,CH 3270652928,3270653183,PL 3270653184,3270653439,UA 3270653440,3270653695,NL 3270653696,3270653951,GB 3270654208,3270654463,RO 3270654464,3270654719,BE 3270654720,3270655231,UA 3270655232,3270655487,IT 3270655488,3270655743,PL 3270655744,3270655999,CH 3270656000,3270664191,NL 3270664192,3270666239,UA 3270666240,3270667263,PL 3270667264,3270668287,SE 3270668288,3270669311,FR 3270669312,3270670335,UA 3270670336,3270672383,RU 3270672384,3270680575,GB 3270680576,3270688767,FR 3270688768,3270836223,IT 3270836224,3270901759,DE 3270901760,3270903807,IT 3270903808,3270905855,SE 3270905856,3270909951,IT 3270911840,3270911871,PL 3270911872,3270911935,DE 3270911968,3270911999,NL 3270913024,3270920703,DE 3270920704,3270921215,UA 3270921216,3270921471,DK 3270921472,3270921727,UA 3270921728,3270922239,GB 3270923264,3270924287,DE 3270926336,3270926591,AT 3270926592,3270926847,CH 3270926848,3270927103,PL 3270927104,3270927359,UA 3270927616,3270927871,FR 3270927872,3270928127,HU 3270928384,3270928895,UA 3270928896,3270929407,PL 3270929408,3270929919,GB 3270929920,3270930431,BG 3270930432,3270931455,RU 3270931456,3270931967,UA 3270931968,3270932479,CH 3270932480,3270932991,UA 3270932992,3270933503,DE 3270933504,3270934015,PL 3270934016,3270934527,IT 3270934528,3270967295,DE 3270967296,3270968319,PL 3270968320,3270968831,DE 3270968832,3270969343,SE 3270969344,3270969855,CH 3270969856,3270970367,AT 3270970368,3270970879,UA 3270970880,3270971391,RU 3270971392,3270972415,UA 3270972416,3270973951,RU 3270973952,3270974463,FR 3270974464,3270974975,IT 3270974976,3270975487,NL 3270975488,3270975999,RU 3270976000,3270976255,FR 3270976256,3270976511,UA 3270976512,3270976767,HU 3270976768,3270977023,UA 3270977024,3270977279,NL 3270977280,3270977535,RS 3270977536,3270977791,RU 3270977792,3270978047,PL 3270978048,3270978303,UA 3270978304,3270979071,FI 3270979072,3270979327,PL 3270979328,3270979583,AT 3270979584,3270979839,NO 3270979840,3270980095,GB 3270980096,3270980351,AM 3270980352,3270980607,RU 3270980608,3270980863,MD 3270980864,3270981631,RU 3270981632,3270981887,IT 3270981888,3270982143,AT 3270982144,3270982399,RU 3270982400,3270982655,TR 3270982656,3270982911,UA 3270982912,3270983167,DK 3270983168,3270983423,PL 3270983424,3270983679,NL 3270983680,3270991871,GB 3270991872,3271000063,NL 3271000064,3271008255,RU 3271008256,3271008767,BE 3271008768,3271009279,SI 3271009280,3271009791,MD 3271009792,3271010303,IL 3271010304,3271010815,RU 3271010816,3271011327,GB 3271011328,3271013375,UA 3271013376,3271013887,FR 3271014400,3271014911,RU 3271015424,3271015935,DK 3271015936,3271016447,RU 3271016448,3271024639,RS 3271024640,3271032831,GB 3271032832,3271098367,NO 3271098368,3271163903,SI 3271163904,3271229439,FR 3271229440,3271280687,FI 3271280688,3271280703,SE 3271280704,3271360511,FI 3271378944,3271380991,GB 3271389184,3271391231,DE 3271395328,3271396351,IT 3271409664,3271417855,BE 3271419904,3271421951,FR 3271426048,3271491583,FR 3271491584,3271557119,DK 3271557120,3271589887,BE 3271589888,3271688191,NO 3271691776,3271692031,US 3271692032,3271692287,GB 3271694080,3271694335,IE 3271694592,3271695103,GB 3271696384,3271698431,GB 3271704576,3271712767,RU 3271712768,3271720959,LV 3271720960,3271729151,GB 3271729152,3271737343,DE 3271737344,3271738367,RU 3271738368,3271738879,RO 3271738880,3271739391,RU 3271739392,3271739903,AT 3271739904,3271740415,IE 3271740416,3271740927,UA 3271740928,3271741439,RU 3271741440,3271741951,PL 3271741952,3271742463,RU 3271742976,3271743999,RU 3271744000,3271744511,RO 3271744512,3271745023,AT 3271745024,3271745535,PL 3271745536,3271746047,GB 3271746048,3271746559,RU 3271746560,3271747071,US 3271747072,3271747583,KZ 3271747584,3271748095,RU 3271748096,3271748607,GR 3271748608,3271749119,UA 3271749120,3271750143,RU 3271750656,3271751167,GB 3271751168,3271751679,RO 3271751680,3271752191,NL 3271752192,3271752703,GB 3271752704,3271753215,RU 3271753216,3271753727,PL 3271753728,3271770111,FR 3271770112,3271786495,AT 3271786496,3271788543,UA 3271789568,3271790591,RU 3271790592,3271791615,LV 3271791616,3271792639,UA 3271792640,3271793663,PL 3271793664,3271794687,UA 3271794688,3271795711,IT 3271795712,3271796735,NL 3271796736,3271797759,SK 3271797760,3271798783,SA 3271798784,3271799807,NL 3271799808,3271800831,RU 3271800832,3271801855,GB 3271801856,3271802879,PS 3271802880,3271803903,DE 3271803904,3271804927,UA 3271804928,3271805951,PL 3271805952,3271806975,UA 3271808000,3271810047,DE 3271810048,3271811071,PL 3271811072,3271812095,UA 3271812096,3271813119,ES 3271813120,3271814143,PL 3271814144,3271815167,UA 3271815168,3271816191,RU 3271816192,3271817215,UA 3271817216,3271818239,DE 3271818240,3271819263,RU 3271819264,3271884799,DE 3271884800,3271901183,UA 3271901184,3271909375,ES 3271909888,3271910399,DE 3271910400,3271910911,DK 3271910912,3271911423,LV 3271911424,3271911935,LI 3271911936,3271912959,UA 3271912960,3271913215,SK 3271913216,3271913471,SE 3271913472,3271913983,NO 3271913984,3271914495,RO 3271914496,3271915007,ES 3271915008,3271915519,SE 3271915520,3271916031,DE 3271916032,3271916543,GB 3271916544,3271917311,UA 3271917312,3271925759,RU 3271925760,3271926015,DK 3271926272,3271926527,RU 3271926528,3271926783,NL 3271926784,3271927295,SI 3271927296,3271927551,NO 3271927552,3271927807,GB 3271928064,3271928319,GB 3271928576,3271928831,CH 3271928832,3271929087,IE 3271929088,3271929343,LB 3271929344,3271929599,NO 3271929600,3271929855,GB 3271930112,3271930367,HU 3271930368,3271930623,RU 3271930624,3271930879,GE 3271930880,3271931135,CH 3271931136,3271931647,PL 3271931648,3271931903,NO 3271931904,3271932159,UA 3271932160,3271932415,SE 3271932416,3271932671,CZ 3271932672,3271932927,DE 3271932928,3271933183,PL 3271933184,3271933439,GB 3271933440,3271933695,SE 3271933696,3271933951,DE 3271933952,3271936767,FR 3271936768,3271937023,US 3271937024,3272015871,FR 3272019968,3272020991,IT 3272020992,3272024063,DK 3272024064,3272032255,IE 3272032256,3272040447,SE 3272040448,3272048639,FR 3272048640,3272056831,NL 3272056832,3272065023,RU 3272065024,3272073727,GB 3272073728,3272073855,IE 3272073856,3272081407,GB 3272081408,3272087551,PT 3272087552,3272088575,MR 3272088576,3272089599,PT 3272089600,3272090111,NO 3272090112,3272091647,RU 3272091648,3272092671,UA 3272092672,3272093183,RU 3272093184,3272093695,RO 3272094208,3272094719,AM 3272094720,3272095231,PL 3272095232,3272095743,FI 3272095744,3272096255,UA 3272096256,3272096767,PT 3272096768,3272097279,FI 3272097280,3272097791,RU 3272097792,3272106239,GB 3272106240,3272106495,PL 3272106496,3272106751,SE 3272106752,3272107007,PL 3272107008,3272107263,GB 3272107264,3272107519,PL 3272107776,3272108031,GB 3272108032,3272108287,DE 3272108288,3272108543,RO 3272108544,3272109055,PL 3272109056,3272109311,CH 3272109312,3272109567,TR 3272109824,3272110079,FR 3272110336,3272110591,CH 3272110848,3272111103,LV 3272111104,3272111615,GB 3272112128,3272112383,RO 3272112384,3272113151,DE 3272113152,3272113407,FR 3272113408,3272113919,GB 3272113920,3272114175,AT 3272114176,3272122367,PL 3272122368,3272131071,GB 3272131072,3272131583,RO 3272131584,3272132095,GB 3272132096,3272132607,CH 3272132608,3272133119,UA 3272133120,3272133631,GB 3272133632,3272134143,EE 3272134144,3272134655,RO 3272134656,3272135167,NL 3272135168,3272135679,CH 3272135680,3272136191,AT 3272136192,3272136703,FR 3272136704,3272137215,PL 3272137216,3272137727,LT 3272137728,3272138239,PL 3272138240,3272138751,BG 3272138752,3272146943,DE 3272146944,3272212479,RU 3272212480,3272212991,GB 3272212992,3272213375,ES 3272213376,3272213391,IT 3272213392,3272213399,GB 3272213400,3272213407,ES 3272213408,3272213415,NL 3272213416,3272213423,ES 3272213424,3272213431,NL 3272213432,3272213439,GB 3272213440,3272213471,ES 3272213472,3272213487,CY 3272213488,3272213495,GB 3272213496,3272213503,ES 3272213504,3272213567,IT 3272213568,3272213575,GB 3272213576,3272213583,IE 3272213584,3272213599,DE 3272213632,3272213639,NL 3272213656,3272213663,IT 3272213672,3272213679,IT 3272213696,3272213735,IT 3272213752,3272213759,IT 3272213760,3272214015,NL 3272214016,3272214271,ES 3272214272,3272214351,GB 3272214352,3272214407,FR 3272214432,3272214463,SE 3272214528,3272215039,FR 3272215040,3272215295,ES 3272215296,3272215551,NL 3272215552,3272215807,CH 3272215808,3272215823,NL 3272215872,3272215879,BE 3272215884,3272215919,CH 3272215920,3272215935,NL 3272215936,3272215999,GB 3272216016,3272216031,DE 3272216040,3272216047,GB 3272216192,3272216207,BE 3272216216,3272216223,FR 3272216224,3272216231,DE 3272216240,3272216255,NL 3272216256,3272216287,CH 3272216304,3272216311,ES 3272216320,3272216351,NL 3272216352,3272216383,DE 3272216384,3272216447,CH 3272216452,3272216455,NL 3272216464,3272216479,FR 3272216480,3272216495,IR 3272216512,3272216575,IT 3272216576,3272216895,GB 3272216896,3272216911,FR 3272216912,3272216927,DE 3272216960,3272217007,GB 3272217088,3272217151,GB 3272217216,3272217279,BE 3272217280,3272217303,DE 3272217304,3272217327,BE 3272217344,3272217599,GB 3272217600,3272217631,CH 3272217856,3272217875,ES 3272217880,3272217895,IT 3272217896,3272217911,ES 3272217920,3272217983,DE 3272217984,3272218079,ES 3272218112,3272218623,GB 3272218688,3272218719,DE 3272218752,3272218879,GB 3272218880,3272219135,BE 3272219136,3272219391,NL 3272219392,3272219647,GB 3272219648,3272219903,FR 3272219904,3272220159,DE 3272220160,3272220415,FR 3272220416,3272221183,GB 3272221184,3272221439,NL 3272221440,3272221447,SE 3272221448,3272221455,NO 3272221456,3272221463,SE 3272221472,3272221495,SE 3272221696,3272221951,NL 3272221952,3272222207,GB 3272222208,3272222463,ES 3272222464,3272222719,NL 3272222720,3272223015,GB 3272223024,3272223039,GB 3272223232,3272223487,NL 3272223488,3272223503,SG 3272223520,3272223551,HK 3272223744,3272224255,GB 3272224768,3272225023,GB 3272225280,3272225535,IT 3272225536,3272225791,GB 3272225856,3272225919,GB 3272225920,3272226047,IT 3272226048,3272226815,FR 3272226816,3272227071,GB 3272227072,3272227327,PT 3272227328,3272227359,US 3272227360,3272227511,GB 3272227520,3272227583,GB 3272227584,3272227839,FR 3272227840,3272228095,ES 3272228096,3272228223,GB 3272228224,3272228351,ES 3272228352,3272228607,FR 3272228608,3272228623,NL 3272228624,3272228631,CY 3272228632,3272228639,NL 3272228640,3272228671,IT 3272228672,3272228703,DE 3272228704,3272228735,FR 3272228736,3272228799,NL 3272228800,3272228863,CH 3272228864,3272237055,LU 3272237056,3272245247,IM 3272245248,3272261631,FI 3272261632,3272261887,MT 3272261888,3272262143,BG 3272262144,3272262399,IL 3272262400,3272262655,DE 3272262656,3272262911,NO 3272262912,3272263167,SA 3272263168,3272263423,RU 3272263424,3272263935,GB 3272263936,3272264191,ES 3272264192,3272264447,NL 3272264448,3272264703,DE 3272264704,3272264959,LV 3272264960,3272265215,RU 3272265216,3272265471,AT 3272265472,3272265727,DK 3272265728,3272265983,DE 3272266240,3272266495,UA 3272266496,3272266751,SE 3272266752,3272267007,NL 3272267008,3272267263,GB 3272267264,3272267519,RU 3272267776,3272268031,LV 3272268032,3272268287,MT 3272268288,3272268543,UA 3272268800,3272269055,IL 3272269056,3272269311,GB 3272269568,3272293631,GB 3272293632,3272293887,AU 3272293888,3272351743,GB 3272351744,3272352767,PL 3272352768,3272353791,UA 3272353792,3272355839,CH 3272355840,3272356863,GB 3272356864,3272357887,RO 3272357888,3272358911,UA 3272358912,3272359935,NL 3272359936,3272368127,RU 3272368128,3272376319,KZ 3272376320,3272384511,SK 3272384512,3272392703,LT 3272392704,3272400895,AT 3272400912,3272400919,GB 3272401216,3272401247,PL 3272401280,3272401407,NL 3272402560,3272402623,GB 3272403072,3272403199,NL 3272403968,3272404991,FR 3272404992,3272406015,DE 3272406016,3272407039,NL 3272409088,3272417279,BE 3272417280,3272418687,FR 3272418816,3272419327,PL 3272419328,3272420351,DE 3272420864,3272420991,PL 3272420992,3272421119,DK 3272421376,3272421887,RO 3272421888,3272422143,RU 3272422144,3272422399,GB 3272422400,3272422911,CH 3272422912,3272423423,SE 3272423424,3272423935,BE 3272423936,3272424447,FR 3272424448,3272424703,GB 3272424704,3272425471,DE 3272425472,3272441855,GB 3272441856,3272474623,LV 3272474624,3272474879,FR 3272474880,3272475135,NL 3272475136,3272475391,RU 3272475392,3272475903,PL 3272475904,3272476159,FR 3272476160,3272476415,RO 3272476672,3272476927,DE 3272476928,3272477183,GR 3272477440,3272477695,PL 3272477696,3272477951,RU 3272477952,3272478207,RO 3272478208,3272478463,DK 3272478464,3272478719,FI 3272478720,3272478975,GB 3272478976,3272479231,UA 3272479232,3272479487,GB 3272479488,3272479743,SA 3272479744,3272480255,SE 3272480256,3272480511,FR 3272480512,3272480767,CH 3272481024,3272481279,SE 3272481792,3272482047,IT 3272482048,3272482303,NL 3272482304,3272482559,PL 3272482560,3272482815,BE 3272482816,3272491007,RU 3272491008,3272499199,GB 3272499200,3272499711,RU 3272499712,3272500223,NL 3272500224,3272500735,RU 3272500736,3272501247,IT 3272501248,3272502783,RU 3272502784,3272503295,KW 3272503808,3272504319,RU 3272504320,3272504831,PL 3272504832,3272505343,RU 3272505344,3272505855,AT 3272505856,3272506879,UA 3272506880,3272507391,CH 3272507392,3272515583,CY 3272515584,3272523775,LT 3272523776,3272540159,DE 3272540160,3272605695,CH 3272605696,3272613887,BE 3272613888,3272622079,RU 3272623104,3272624127,DE 3272624128,3272625151,RU 3272625152,3272626175,UA 3272626176,3272627199,DE 3272627200,3272628223,NL 3272628224,3272629247,CZ 3272629248,3272638463,RU 3272638464,3272646655,ES 3272646656,3272647385,GB 3272647386,3272647386,DE 3272647387,3272654847,GB 3272654848,3272663039,FI 3272663040,3272671231,AT 3272671232,3272736767,SE 3272736768,3272737791,IT 3272737792,3272738815,GB 3272738816,3272739839,IL 3272739840,3272741887,UA 3272741888,3272743935,RU 3272743936,3272744959,UA 3272744960,3272753151,RU 3272753152,3272769535,NL 3272769536,3272802303,NO 3272802304,3272867839,RU 3272867840,3272868863,PL 3272868864,3272869887,UA 3272869888,3272870911,NL 3272870912,3272871935,FR 3272871936,3272872959,FI 3272872960,3272875007,BG 3272875008,3272876031,RU 3272876032,3272884223,NL 3272884224,3272892415,DE 3272892416,3272892927,UA 3272893440,3272893951,SE 3272893952,3272894463,RU 3272894976,3272895487,RO 3272895488,3272895999,GB 3272896000,3272896511,PL 3272896512,3272897535,DE 3272897536,3272898047,FI 3272898048,3272898559,UA 3272898560,3272899327,DE 3272899328,3272899583,PL 3272899584,3272900095,UA 3272900096,3272900607,LV 3272900608,3272900863,RU 3272900864,3272901119,AT 3272901120,3272901375,UA 3272901376,3272901631,PL 3272901632,3272901887,AT 3272901888,3272902143,DE 3272902144,3272902399,PL 3272902400,3272902655,RU 3272902656,3272902911,IR 3272902912,3272903167,RU 3272903168,3272903423,PL 3272903424,3272903679,AT 3272903680,3272903935,RU 3272903936,3272904191,DK 3272904192,3272904447,SI 3272904704,3272904959,NL 3272904960,3272905215,RO 3272905216,3272905727,CH 3272905728,3272905983,UA 3272905984,3272906239,FI 3272906240,3272906495,PL 3272906496,3272906751,EE 3272906752,3272907007,HU 3272907008,3272907263,HR 3272907264,3272907519,UA 3272907520,3272907775,GB 3272907776,3272908031,RO 3272908032,3272908287,CH 3272908288,3272908543,AT 3272908544,3272908799,DE 3272908800,3272916991,SK 3272916992,3272917503,MC 3272917504,3272918527,RU 3272918528,3272919039,FR 3272919040,3272919551,PL 3272919552,3272920063,RO 3272920064,3272920575,NL 3272920576,3272921087,SE 3272921088,3272921599,CH 3272921600,3272922111,DE 3272922112,3272922623,PL 3272922624,3272923135,GB 3272923136,3272923647,ES 3272923648,3272924159,PL 3272924160,3272924671,DE 3272924672,3272925183,GB 3272925184,3272933375,DE 3272933376,3272998911,GB 3272998912,3273007103,PT 3273007104,3273015295,CZ 3273015296,3273023487,SE 3273023488,3273024511,PL 3273024512,3273025535,NL 3273025536,3273026559,RU 3273026560,3273028607,UA 3273028608,3273029631,PL 3273029632,3273029887,CH 3273029888,3273030143,GB 3273030400,3273030655,RU 3273030656,3273031679,PL 3273031680,3273032191,GB 3273032192,3273033215,UA 3273033216,3273033727,GB 3273033728,3273034239,DE 3273034240,3273034751,BE 3273034752,3273035263,UA 3273035264,3273035775,DE 3273035776,3273036287,FR 3273036288,3273036799,BG 3273037312,3273037823,GB 3273038336,3273038847,GR 3273039360,3273039871,GB 3273039872,3273048063,LT 3273048064,3273056255,IT 3273056256,3273064447,MD 3273064448,3273129983,PT 3273129984,3273132287,DK 3273132288,3273132543,GB 3273132544,3273138175,DK 3273138176,3273146367,BG 3273146368,3273148415,RU 3273148416,3273150463,LU 3273150464,3273152511,DZ 3273152512,3273154559,BG 3273154560,3273162751,DE 3273162752,3273170943,UA 3273170944,3273179135,SE 3273179136,3273187327,CM 3273187328,3273187839,SE 3273187840,3273188351,DK 3273188352,3273188863,RU 3273188864,3273189887,GB 3273189888,3273190399,UA 3273190400,3273191935,RO 3273191936,3273192447,UA 3273192448,3273192959,DK 3273192960,3273193471,FR 3273193472,3273193983,PL 3273194496,3273195007,UA 3273195008,3273195519,RU 3273195520,3273207807,FR 3273207808,3273208063,RE 3273208064,3273261055,FR 3273261056,3273261567,NO 3273261568,3273262079,BE 3273262080,3273262591,LU 3273263616,3273264127,SE 3273264128,3273264639,PL 3273264640,3273265151,AT 3273265152,3273266175,UA 3273266176,3273266687,LV 3273266688,3273267455,PL 3273267456,3273267711,CZ 3273267712,3273268223,GB 3273268224,3273268735,SE 3273268736,3273269247,RU 3273269248,3273277439,GB 3273277440,3273278463,UA 3273279488,3273281535,PL 3273281536,3273283583,UA 3273283584,3273284607,GB 3273284608,3273285631,UA 3273285632,3273293823,GB 3273293824,3273302015,MK 3273302016,3273310207,RU 3273310208,3273318399,AT 3273318400,3273326591,GB 3273326592,3273326847,IE 3273326984,3273326987,DE 3273326992,3273327047,DE 3273327104,3273327231,DE 3273327264,3273327287,DE 3273327376,3273327423,IE 3273327424,3273327511,GB 3273327520,3273327551,IE 3273327552,3273327583,GB 3273327584,3273327615,IE 3273328512,3273328639,DE 3273328640,3273329199,GB 3273329200,3273329215,DE 3273329216,3273329279,GB 3273329312,3273329327,GB 3273329408,3273329423,GB 3273329424,3273329439,DE 3273329440,3273330175,GB 3273330176,3273330183,IR 3273330184,3273330199,GB 3273330200,3273330223,IE 3273330224,3273330271,GB 3273330272,3273330431,IE 3273330432,3273331199,GB 3273331712,3273331743,GB 3273331752,3273331791,GB 3273331808,3273331823,GB 3273331828,3273331887,GB 3273331904,3273331967,GB 3273331968,3273332031,DE 3273332032,3273332095,GB 3273332096,3273332223,DE 3273332224,3273332479,GB 3273332544,3273332575,DE 3273332608,3273332671,DE 3273333056,3273333119,DE 3273334272,3273334783,DE 3273334784,3273335039,AE 3273335296,3273335423,GB 3273335432,3273335455,GB 3273335512,3273335535,GB 3273335616,3273335623,GB 3273335936,3273335999,DE 3273336848,3273336863,DE 3273336864,3273336871,GB 3273336872,3273336895,DE 3273336960,3273337087,DE 3273337856,3273338111,DE 3273338624,3273338879,DE 3273339136,3273339391,DE 3273339392,3273340415,GB 3273340928,3273341711,FR 3273342208,3273342231,AE 3273342464,3273342975,DE 3273342976,3273343999,GB 3273344000,3273344767,DE 3273345024,3273345279,DE 3273346560,3273346815,OM 3273346816,3273347071,DE 3273347840,3273348351,DE 3273349120,3273349631,DE 3273350272,3273350287,DE 3273350336,3273350351,DE 3273351424,3273351455,DE 3273351504,3273351519,DE 3273351872,3273351903,DE 3273351936,3273352191,DE 3273352928,3273352959,DE 3273352992,3273353023,DE 3273357312,3273358335,GB 3273359888,3273359903,DE 3273360016,3273360079,DE 3273361472,3273361535,DE 3273361632,3273361663,DE 3273361792,3273361823,DE 3273361856,3273361919,DE 3273362048,3273362175,DE 3273362240,3273362255,DE 3273363208,3273363211,DE 3273363328,3273363391,DE 3273363456,3273364479,GB 3273364608,3273364735,DE 3273364992,3273365247,DE 3273365504,3273365519,NL 3273365520,3273365543,GB 3273365544,3273365759,NL 3273365760,3273365767,GB 3273365888,3273366015,FR 3273366016,3273366527,DE 3273366528,3273367551,GB 3273367552,3273367567,DE 3273368064,3273368575,DE 3273369344,3273369855,DE 3273370624,3273371135,DE 3273371712,3273371743,DE 3273371760,3273371775,DE 3273371808,3273371823,DE 3273371872,3273371875,DE 3273372000,3273372055,DE 3273372672,3273372927,GB 3273372928,3273373183,NL 3273373184,3273373455,GB 3273373456,3273373567,DE 3273373568,3273374719,GB 3273375232,3273375551,DE 3273375744,3273375871,DE 3273376000,3273376255,DE 3273376536,3273376543,DE 3273377792,3273378095,DE 3273378560,3273378815,DE 3273381888,3273382143,DE 3273382144,3273382399,GB 3273382400,3273382463,DE 3273382480,3273382591,DE 3273382640,3273382687,DE 3273384192,3273384703,DE 3273384960,3273385215,DE 3273385280,3273385343,DE 3273385472,3273385727,DE 3273385760,3273385791,DE 3273385856,3273385919,DE 3273387056,3273387071,DE 3273387216,3273387231,DE 3273387264,3273387519,DE 3273387552,3273387583,DE 3273388160,3273388223,DE 3273388544,3273388807,DE 3273388816,3273388863,DE 3273388872,3273388879,DE 3273388904,3273388911,DE 3273388912,3273388927,GB 3273388928,3273389055,DE 3273390080,3273390111,DE 3273390112,3273390143,US 3273390144,3273390207,DE 3273390368,3273390463,DE 3273391104,3273391359,DE 3273391872,3273392127,DE 3273392128,3273392639,PL 3273392640,3273393663,RO 3273394176,3273394687,RO 3273395200,3273395711,DE 3273395712,3273396223,RU 3273396224,3273396735,PL 3273396736,3273397247,RO 3273397248,3273397759,RU 3273397760,3273398271,NL 3273398272,3273398783,RO 3273398784,3273399295,LV 3273399296,3273399807,SE 3273399808,3273400319,UA 3273400320,3273408511,RU 3273408512,3273433087,SK 3273433088,3273433599,LU 3273433600,3273434111,RO 3273434112,3273434623,BE 3273434624,3273435135,IL 3273435648,3273436159,PL 3273436160,3273436671,NO 3273436672,3273437183,DE 3273437184,3273437695,RO 3273438208,3273438719,IL 3273438720,3273439231,GB 3273439232,3273439743,RO 3273439744,3273440255,DE 3273440256,3273440767,RO 3273440768,3273441279,PL 3273441280,3273449471,FR 3273449472,3273457663,CH 3273457664,3273523199,HR 3273523200,3273588735,DE 3273588736,3273687039,IT 3273687040,3273719807,DE 3273719808,3273727079,NL 3273727080,3273727088,GB 3273727089,3273727095,ES 3273727096,3273727103,DE 3273727104,3273727119,NL 3273727120,3273727127,PT 3273727128,3273727135,FI 3273727136,3273727143,NO 3273727144,3273727151,CZ 3273727152,3273727167,IT 3273727168,3273732095,NL 3273732096,3273736191,GB 3273736192,3273744383,FR 3273744384,3273746943,GB 3273746944,3273747199,NL 3273747200,3273752575,GB 3273752576,3273760767,NL 3273760768,3273762303,DE 3273762304,3273762559,NL 3273762560,3273768959,DE 3273768960,3273785343,TR 3273785344,3273792511,RU 3273792512,3273793023,UZ 3273793024,3273801727,RU 3273801728,3273802239,DE 3273802752,3273803263,SA 3273803776,3273804287,CH 3273804288,3273804799,UA 3273804800,3273805311,RO 3273805312,3273805823,GI 3273805824,3273806335,PL 3273806336,3273806847,DE 3273806848,3273807359,SE 3273807360,3273807871,LU 3273807872,3273808383,CH 3273808384,3273808895,UA 3273808896,3273809407,GB 3273809408,3273809919,UA 3273809920,3273818111,BG 3273818112,3273826303,AT 3273826304,3273834495,DE 3273834496,3273835519,RU 3273835520,3273836543,UA 3273837568,3273838591,UA 3273838592,3273839615,PL 3273839616,3273840639,LT 3273840640,3273841663,PL 3273841664,3273842687,AT 3273842688,3273850879,RU 3273850880,3273867263,DE 3273867264,3273867519,BE 3273867520,3273867775,UA 3273867776,3273868031,PT 3273868288,3273869311,RU 3273869312,3273871359,DE 3273871360,3273871615,PL 3273871616,3273871871,LU 3273871872,3273872383,SE 3273872384,3273872639,BG 3273872640,3273872895,PS 3273872896,3273873151,IE 3273873152,3273873919,DE 3273873920,3273874431,GB 3273874432,3273875455,GR 3273875456,3273875711,PT 3273876224,3273876479,IT 3273876480,3273876991,SE 3273877248,3273877503,DE 3273877536,3273877567,AT 3273877568,3273877759,IT 3273877760,3273878015,GR 3273878016,3273878271,FR 3273878272,3273878527,LV 3273878528,3273878783,RU 3273878784,3273879039,NO 3273879040,3273879551,BE 3273879552,3273880063,GB 3273880064,3273880575,NL 3273880576,3273881087,RU 3273881600,3273881855,GB 3273881856,3273882111,CH 3273882112,3273882367,SI 3273882368,3273883135,GB 3273883136,3273883391,GR 3273883392,3273883647,DE 3273883648,3273916415,NL 3273916416,3273932799,IT 3273932800,3273940991,DE 3273940992,3273943039,GB 3273943040,3273949183,DE 3273949184,3273981951,FR 3273981952,3274047487,DE 3274050560,3274051583,PL 3274051584,3274052351,UA 3274052352,3274052607,GB 3274052608,3274052863,DE 3274053120,3274053375,KZ 3274053376,3274053631,RU 3274053632,3274054655,DE 3274054656,3274055167,GB 3274055168,3274055423,MT 3274055424,3274055679,PL 3274055680,3274063871,RU 3274063872,3274072063,GB 3274072064,3274080255,HU 3274080256,3274088447,DE 3274088448,3274096639,KG 3274096640,3274113023,NL 3274113024,3274145791,CZ 3274145792,3274162175,KW 3274162176,3274162687,GB 3274163200,3274163711,UA 3274163712,3274164223,BG 3274164224,3274164735,AT 3274165760,3274166271,RU 3274166272,3274166783,RO 3274166784,3274167295,UA 3274167296,3274167807,BG 3274168320,3274168831,PL 3274168832,3274169343,DZ 3274169856,3274170367,DE 3274170368,3274170879,TR 3274170880,3274171391,DE 3274171392,3274171903,RU 3274171904,3274172415,DE 3274172416,3274172927,UA 3274172928,3274173439,DE 3274173440,3274173951,GR 3274174208,3274174463,CZ 3274174464,3274175487,UA 3274175488,3274175999,BE 3274176512,3274177023,UA 3274178048,3274178559,NL 3274178560,3274244095,GB 3274244096,3274309631,DK 3274309632,3274326015,FR 3274326016,3274334719,RU 3274334720,3274335231,PL 3274335232,3274335743,DE 3274335744,3274336255,NL 3274336256,3274336767,SE 3274336768,3274337279,AT 3274337280,3274337791,DE 3274337792,3274338303,SE 3274338304,3274338815,PL 3274338816,3274339327,DE 3274339328,3274339839,RO 3274339840,3274340351,RU 3274340352,3274340863,DE 3274340864,3274341375,RU 3274341376,3274341887,FR 3274341888,3274342399,UA 3274342400,3274342911,RO 3274342912,3274343423,UA 3274343424,3274343935,US 3274343936,3274344447,NL 3274344448,3274344959,UA 3274344960,3274345471,RO 3274345472,3274345983,PL 3274345984,3274346495,DE 3274346496,3274347007,FR 3274347008,3274347519,RU 3274347520,3274348031,FR 3274348032,3274348543,DK 3274348544,3274349055,PL 3274349056,3274350079,RU 3274350592,3274358783,RU 3274358784,3274366975,SE 3274366976,3274368511,NL 3274368512,3274368767,AT 3274368768,3274369023,FR 3274370048,3274371071,GB 3274373376,3274373631,PL 3274373632,3274374143,FR 3274374144,3274375167,DE 3274375168,3274383359,EG 3274383360,3274384383,RU 3274384384,3274385407,SE 3274385408,3274386431,UA 3274386432,3274388479,GB 3274388480,3274389503,DE 3274389504,3274390527,CH 3274390528,3274391551,NO 3274391552,3274392063,FR 3274392064,3274392575,PL 3274392576,3274393087,RU 3274393088,3274393599,UA 3274393600,3274394111,PL 3274394112,3274394623,AM 3274394624,3274395135,CZ 3274395136,3274395647,DK 3274396160,3274396671,LV 3274396672,3274397183,PL 3274397184,3274397695,EE 3274397696,3274398207,DE 3274398208,3274399743,RU 3274399744,3274407935,LU 3274408192,3274408447,IT 3274408448,3274408703,NL 3274408704,3274408959,SI 3274408960,3274409215,GR 3274409216,3274409471,SI 3274409472,3274409727,CH 3274409728,3274409983,RU 3274409984,3274410239,LT 3274410240,3274410495,SA 3274410496,3274410751,NL 3274410752,3274411007,AT 3274411008,3274411263,CH 3274411264,3274411519,DE 3274411520,3274412031,PL 3274412032,3274412287,RU 3274412288,3274412543,NO 3274412544,3274412799,UA 3274412800,3274413055,RU 3274413056,3274413311,UA 3274413312,3274413567,AT 3274413568,3274413823,FR 3274413824,3274414079,SE 3274414080,3274414335,AT 3274414336,3274414591,CH 3274414592,3274414847,NL 3274414848,3274415103,IE 3274415104,3274415359,PL 3274415360,3274415615,GB 3274415616,3274415871,NL 3274415872,3274416127,SI 3274416128,3274424319,IT 3274424320,3274435711,SE 3274435712,3274435839,US 3274435840,3274440703,SE 3274442752,3274443263,GB 3274443520,3274443647,GB 3274443712,3274443775,GB 3274443808,3274444031,GB 3274446336,3274447871,GB 3274448384,3274448639,GB 3274448896,3274449663,GB 3274449920,3274450231,GB 3274450248,3274450367,GB 3274450376,3274450391,GB 3274450408,3274450415,GB 3274450432,3274450591,GB 3274450656,3274450687,GB 3274451200,3274452255,GB 3274452264,3274452311,GB 3274452320,3274452335,GB 3274452344,3274452367,GB 3274452384,3274452391,GB 3274452400,3274452423,GB 3274452432,3274452439,GB 3274452448,3274452455,GB 3274452464,3274452471,GB 3274452496,3274452543,GB 3274452560,3274452575,GB 3274452656,3274452703,GB 3274452736,3274452927,GB 3274452992,3274453767,GB 3274453784,3274453791,GB 3274453800,3274453847,GB 3274453864,3274453871,GB 3274453888,3274453903,GB 3274453920,3274453935,GB 3274453944,3274453951,GB 3274453960,3274453975,GB 3274453984,3274453991,GB 3274454000,3274454271,GB 3274454656,3274455311,GB 3274455328,3274455335,GB 3274455344,3274455351,GB 3274455360,3274455375,GB 3274455384,3274455391,GB 3274455400,3274455423,GB 3274455432,3274455439,GB 3274455448,3274455503,GB 3274455520,3274455535,GB 3274455744,3274455807,GB 3274455872,3274455935,GB 3274455968,3274456359,GB 3274456368,3274456375,GB 3274456384,3274456391,GB 3274456400,3274456407,GB 3274456416,3274456447,GB 3274456456,3274456511,GB 3274456528,3274456535,GB 3274456544,3274456559,GB 3274456568,3274460223,GB 3274460416,3274462207,GB 3274462464,3274465023,GB 3274465152,3274466351,GB 3274466368,3274466399,GB 3274466416,3274466463,GB 3274466560,3274466735,GB 3274466744,3274466763,GB 3274466768,3274466783,GB 3274466816,3274467099,GB 3274467104,3274467307,GB 3274467328,3274470383,GB 3274470400,3274470535,GB 3274470656,3274471423,GB 3274471536,3274471615,GB 3274471680,3274471935,GB 3274472960,3274483711,GB 3274489600,3274489855,GB 3274490176,3274491199,GB 3274491208,3274491247,GB 3274491256,3274491295,GB 3274491304,3274491319,GB 3274491328,3274491383,GB 3274491392,3274504447,GB 3274505728,3274505791,GB 3274505793,3274505855,GB 3274506240,3274571775,IT 3274571776,3274579967,GR 3274579968,3274580991,UA 3274580992,3274581503,PL 3274581504,3274581759,NL 3274581760,3274582015,RU 3274582016,3274583039,PL 3274583040,3274584063,DE 3274584064,3274585087,GB 3274585088,3274586111,RS 3274586112,3274587135,UA 3274587136,3274588159,GB 3274588160,3274596351,SK 3274596352,3274604543,RU 3274604544,3274612735,TR 3274612736,3274620927,RU 3274620928,3274629119,FR 3274629120,3274637311,LU 3274637312,3274670079,CZ 3274670080,3274686463,DK 3274686464,3274686719,RU 3274686720,3274686975,BG 3274686976,3274687231,RO 3274687232,3274687487,DE 3274687488,3274687743,RU 3274687744,3274687999,SI 3274688000,3274688255,GB 3274688256,3274688511,IT 3274688512,3274688767,PT 3274688768,3274689023,PL 3274689024,3274689279,UA 3274689280,3274689535,PL 3274689536,3274689791,RU 3274689792,3274690047,SE 3274690048,3274690303,ES 3274690304,3274690559,GB 3274690560,3274690815,GR 3274690816,3274691071,ES 3274691328,3274691583,SI 3274691840,3274692095,SI 3274692096,3274692351,RO 3274692352,3274692607,BE 3274692864,3274693119,AT 3274693376,3274693631,UA 3274693632,3274693887,RU 3274693888,3274694143,IT 3274694144,3274694399,DK 3274694400,3274694655,GB 3274694656,3274694911,SI 3274694912,3274695167,GB 3274695168,3274695423,SI 3274695424,3274695679,PL 3274695680,3274695935,SI 3274695936,3274696191,DE 3274696448,3274696703,CH 3274696704,3274696959,IT 3274696960,3274697215,GR 3274697216,3274697471,SA 3274697472,3274697727,CZ 3274697728,3274697983,ES 3274697984,3274698239,GB 3274698240,3274698495,SE 3274698752,3274699007,GB 3274699008,3274699263,FR 3274699520,3274699775,SI 3274699776,3274700031,GB 3274700032,3274700287,CH 3274700288,3274700543,PL 3274700544,3274700799,DK 3274700800,3274701055,UA 3274701056,3274701311,DE 3274701568,3274701823,IT 3274701824,3274702079,IL 3274702080,3274702335,UA 3274702336,3274702591,SE 3274702592,3274702847,KZ 3274702848,3274801151,CH 3274802176,3274803199,FR 3274803200,3274804223,DE 3274804224,3274805247,FR 3274805248,3274806271,GB 3274806272,3274807295,UA 3274807296,3274809343,DE 3274809344,3274810367,SE 3274810368,3274811391,UA 3274811392,3274812415,RU 3274812416,3274813439,SE 3274813440,3274814463,ES 3274814464,3274815487,GB 3274815488,3274816511,RU 3274816512,3274817535,SK 3274817536,3274821631,RU 3274821632,3274823679,KZ 3274823680,3274825727,TR 3274825728,3274827775,DE 3274829824,3274831871,SE 3274831872,3274833919,RO 3274833920,3274842111,BY 3274842112,3274850303,DK 3274850304,3274866687,GB 3274866688,3274883071,DE 3274883072,3274899455,EE 3274903552,3274908671,DE 3274913792,3274914815,DE 3274920960,3274921983,BE 3274923264,3274924031,NL 3274926080,3274928127,FR 3274939392,3274940415,ZA 3274941440,3274942463,DE 3274942464,3274943487,FR 3274944512,3274948607,NL 3274948608,3274951679,DK 3274952704,3274953727,AT 3274958080,3274958207,IE 3274964992,3275030527,DE 3275030528,3275096063,ES 3275096064,3275104767,RU 3275104768,3275105279,DE 3275105280,3275105791,GB 3275105792,3275106303,NL 3275106304,3275106815,RU 3275106816,3275107327,UA 3275107328,3275107839,BG 3275107840,3275108351,PL 3275108352,3275108863,FR 3275108864,3275109375,PL 3275109376,3275109887,UA 3275109888,3275110399,RO 3275110400,3275110911,NL 3275110912,3275111423,GB 3275111424,3275111935,IT 3275111936,3275112447,FR 3275112448,3275120639,DK 3275120640,3275137023,SE 3275137536,3275138047,UA 3275138048,3275138559,DE 3275139072,3275139583,PT 3275140096,3275140607,AT 3275140608,3275141119,NL 3275141120,3275141631,RU 3275141632,3275142143,GE 3275142144,3275142655,KG 3275142656,3275143167,SE 3275143168,3275144703,PL 3275144704,3275145215,HR 3275145216,3275153407,RU 3275153408,3275161599,GB 3275161600,3275227135,ES 3275227136,3275292671,HU 3275292672,3275358207,ES 3275358208,3275374591,RU 3275374592,3275382783,GB 3275382784,3275390975,SE 3275390976,3275399167,GB 3275399168,3275407359,AT 3275407360,3275415551,GB 3275415552,3275423743,UA 3275423744,3275423751,GB 3275423808,3275423839,GB 3275423872,3275424303,GB 3275424320,3275424487,GB 3275424496,3275424719,GB 3275424728,3275424735,GB 3275424752,3275425311,GB 3275425328,3275425343,GB 3275425536,3275426559,GB 3275426576,3275427599,GB 3275427616,3275427715,GB 3275427728,3275428367,GB 3275428376,3275428407,GB 3275428416,3275428447,GB 3275428608,3275428863,GB 3275429888,3275430143,GB 3275430592,3275430631,GB 3275430656,3275430911,GB 3275431936,3275432959,GB 3275433984,3275436543,GB 3275436800,3275438655,GB 3275438672,3275438847,GB 3275439104,3275441407,GB 3275441424,3275441439,GB 3275441472,3275441535,GB 3275441600,3275441823,GB 3275441832,3275441835,GB 3275441840,3275442723,GB 3275443200,3275443727,GB 3275443760,3275443775,GB 3275443840,3275443967,GB 3275444224,3275444735,GB 3275446272,3275446783,GB 3275446800,3275446815,GB 3275446848,3275447039,GB 3275447056,3275447151,GB 3275448320,3275450207,GB 3275450224,3275450879,GB 3275451232,3275451263,GB 3275451392,3275451663,GB 3275451680,3275451711,GB 3275451720,3275451727,GB 3275451744,3275451767,GB 3275451776,3275451779,GB 3275452416,3275455231,GB 3275455248,3275456407,GB 3275456416,3275457279,GB 3275457280,3275457791,FK 3275457792,3275458559,GB 3275458560,3275460095,IE 3275460096,3275460223,GB 3275460224,3275460239,IE 3275460288,3275460295,GB 3275460352,3275460607,IE 3275460608,3275460863,HK 3275460864,3275463423,GB 3275463456,3275463495,GB 3275463504,3275463523,GB 3275463528,3275463635,GB 3275463640,3275468655,GB 3275468656,3275468671,IE 3275468672,3275468735,GB 3275468736,3275468751,IE 3275468752,3275468767,GB 3275468768,3275468799,IE 3275468800,3275474951,GB 3275474960,3275475039,GB 3275475044,3275475711,GB 3275475720,3275475791,GB 3275475800,3275475879,GB 3275475968,3275476223,GB 3275476288,3275476479,GB 3275476608,3275476631,GB 3275476656,3275476687,GB 3275476704,3275476735,GB 3275476920,3275476927,GB 3275476944,3275476959,GB 3275476992,3275477567,GB 3275477760,3275478271,GB 3275478528,3275481087,GB 3275481344,3275481599,GB 3275482112,3275482367,GB 3275483136,3275483647,GB 3275484160,3275484415,GB 3275485184,3275485759,GB 3275485784,3275485791,GB 3275485840,3275485855,GB 3275485936,3275485936,GB 3275486208,3275487231,GB 3275488768,3275489279,CZ 3275489280,3275497471,GB 3275497472,3275505663,DE 3275505664,3275506175,PL 3275506176,3275506687,UA 3275506688,3275507199,SE 3275507200,3275507711,UA 3275507712,3275509759,RO 3275509856,3275509887,PL 3275509888,3275509919,AM 3275509920,3275509951,PL 3275509952,3275509983,GB 3275509984,3275510015,PT 3275510016,3275510079,SE 3275510080,3275510143,ES 3275510144,3275510207,FI 3275510208,3275510335,CY 3275510336,3275510399,IE 3275510400,3275510463,NL 3275510464,3275510527,GB 3275510528,3275510559,PL 3275510592,3275510623,CY 3275510624,3275510655,EE 3275510656,3275510687,FR 3275510688,3275510719,CY 3275510720,3275510751,GB 3275510752,3275510783,NL 3275510784,3275510911,CY 3275511040,3275511167,GB 3275511296,3275511551,GB 3275511552,3275511679,NL 3275511680,3275511807,CY 3275511936,3275512063,FR 3275512064,3275512191,CZ 3275512192,3275512319,IT 3275512320,3275512447,FI 3275512448,3275512575,DK 3275512576,3275512703,BE 3275512832,3275512895,SE 3275512896,3275512959,AT 3275512960,3275513023,PL 3275513024,3275513087,UA 3275513088,3275513151,CY 3275513216,3275513279,CH 3275513280,3275513343,CY 3275513344,3275513471,PL 3275513600,3275513727,CY 3275513728,3275513855,GB 3275513856,3275522047,DE 3275522048,3275530239,IT 3275530240,3275530751,DK 3275530752,3275531263,AT 3275531264,3275531775,GB 3275532288,3275532799,UA 3275532800,3275533311,GB 3275533824,3275534335,UA 3275534848,3275535359,RO 3275535360,3275535871,DE 3275535872,3275536383,SE 3275536384,3275536895,UA 3275536896,3275537407,DE 3275537408,3275537919,FR 3275537920,3275538431,IT 3275538432,3275539455,CH 3275539456,3275540479,GB 3275540480,3275541503,UA 3275542528,3275543551,DE 3275543552,3275544575,NL 3275544576,3275545599,PL 3275545600,3275546623,RU 3275546624,3275548671,UA 3275548672,3275549695,IL 3275549696,3275550719,SY 3275550720,3275551743,PL 3275551744,3275552767,RU 3275552768,3275553791,LV 3275553792,3275554815,FI 3275588448,3275588463,BE 3275612928,3275613183,LU 3275620352,3275622399,RU 3275622400,3275623423,GB 3275623424,3275623935,PL 3275623936,3275624447,UA 3275624448,3275624959,SK 3275624960,3275625471,IL 3275625472,3275625983,DE 3275626496,3275627007,UA 3275627008,3275627519,AT 3275627520,3275628031,GB 3275628032,3275628543,IL 3275628544,3275629311,RU 3275629312,3275629567,TR 3275629568,3275630079,UA 3275630080,3275630591,RU 3275630592,3275631103,PL 3275631104,3275631615,FR 3275631616,3275632127,DE 3275632128,3275633151,RU 3275633152,3275633663,FR 3275633664,3275634687,RU 3275634688,3275635199,RO 3275635200,3275636735,RU 3275636736,3275637247,PL 3275637248,3275637759,SE 3275637760,3275638271,BE 3275638272,3275638783,RU 3275638784,3275639807,FR 3275639808,3275640319,SE 3275640320,3275640831,RU 3275640832,3275641343,DE 3275641344,3275641855,NL 3275641856,3275642367,AT 3275642880,3275643391,RO 3275643392,3275643903,BE 3275643904,3275644415,RU 3275644416,3275644927,RO 3275644928,3275653119,DE 3275653120,3275661311,LV 3275661312,3275669503,IT 3275669504,3275677695,GB 3275677696,3275685887,IT 3275685888,3275751423,DE 3275751424,3275759615,AT 3275759616,3275775999,NL 3275776000,3275784191,DE 3275784704,3275785215,PL 3275785216,3275785727,RO 3275785728,3275786239,CH 3275786240,3275786751,UA 3275786752,3275787263,CH 3275787264,3275787775,RU 3275787776,3275788287,UA 3275788288,3275788799,SE 3275788800,3275789311,AT 3275789312,3275789823,UA 3275789824,3275790335,PL 3275790848,3275791359,UA 3275791360,3275791871,RU 3275791872,3275792383,PL 3275792384,3275792895,BG 3275792896,3275793407,UA 3275793408,3275793919,FR 3275793920,3275794431,UA 3275794432,3275794943,GB 3275794944,3275795455,RS 3275795456,3275795967,GR 3275795968,3275796479,PL 3275796480,3275796991,DE 3275796992,3275797503,RO 3275797504,3275798015,DE 3275798016,3275799039,UA 3275799040,3275799551,ES 3275799552,3275800063,IT 3275800064,3275800575,UA 3275800576,3275808767,RU 3275808768,3275816959,UA 3275816960,3275882495,CH 3275882496,3275884543,DE 3275884544,3275886591,IT 3275886592,3275888639,PL 3275888640,3275890687,GB 3275890688,3275898879,SE 3275898880,3275899135,LV 3275899136,3275899647,UA 3275899648,3275899903,RU 3275899904,3275900159,PL 3275900160,3275900415,SI 3275900416,3275900671,DE 3275900672,3275901183,RU 3275901184,3275901439,PL 3275901440,3275901695,DE 3275901696,3275901951,IE 3275901952,3275902207,DE 3275902208,3275902719,RU 3275902720,3275902975,UA 3275902976,3275903231,FR 3275903232,3275903487,GB 3275903488,3275903743,FR 3275903744,3275903999,DE 3275904000,3275904255,RU 3275904256,3275904511,CH 3275904512,3275904767,PL 3275905024,3275905279,PL 3275905280,3275905535,RU 3275905536,3275905791,NL 3275905792,3275906303,AT 3275906304,3275906559,UA 3275906560,3275907071,SE 3275907072,3275907327,RU 3275907328,3275907583,CH 3275907584,3275907839,PL 3275907840,3275908095,DE 3275908096,3275908351,SA 3275908352,3275908607,SE 3275908608,3275908863,DE 3275908864,3275909119,PL 3275909376,3275909631,UA 3275909632,3275909887,EE 3275909888,3275910143,SI 3275910144,3275910399,RU 3275910400,3275910655,DK 3275910656,3275910911,UA 3275910912,3275911167,DE 3275911168,3275911423,FR 3275911424,3275911679,RO 3275911936,3275912191,BE 3275912192,3275912447,PL 3275912448,3275912703,RU 3275912704,3275912959,IL 3275912960,3275913215,FR 3275913472,3275913983,DE 3275913984,3275914239,CH 3275914240,3275914495,RO 3275914496,3275914751,BG 3275914752,3275915007,RU 3275915008,3275915263,PT 3275915264,3275915775,SA 3275915776,3275916287,SE 3275916288,3275916799,US 3275916800,3275917311,NL 3275917312,3275918847,UA 3275918848,3275919359,RO 3275919360,3275919871,PL 3275919872,3275920383,UA 3275920384,3275920895,GB 3275920896,3275921407,ES 3275921920,3275922431,DE 3275922432,3275922943,UA 3275922944,3275923455,GR 3275923456,3275924991,ME 3275924992,3275925759,RS 3275925760,3275928927,ME 3275928928,3275928943,RS 3275928944,3275931647,ME 3275931648,3275939839,UA 3275939840,3275948031,GB 3275948032,3276013567,SE 3276013568,3276014239,GB 3276014240,3276014247,FR 3276014248,3276014335,GB 3276014336,3276014591,FR 3276014592,3276014799,GB 3276014800,3276014815,FR 3276014816,3276014951,GB 3276014952,3276014959,ES 3276014960,3276020735,GB 3276020736,3276020991,FR 3276020992,3276021503,GB 3276021504,3276021759,FR 3276021760,3276025159,GB 3276025160,3276025167,FR 3276025168,3276028543,GB 3276028544,3276028671,FR 3276028672,3276029375,GB 3276029376,3276029439,FR 3276029440,3276030591,GB 3276030592,3276030607,FR 3276030608,3276031479,GB 3276031480,3276031487,FR 3276031488,3276032311,GB 3276032312,3276032319,FR 3276032320,3276033791,GB 3276033792,3276034047,FR 3276034048,3276036543,GB 3276036544,3276036607,FR 3276036608,3276039263,GB 3276039264,3276039279,FR 3276039280,3276040351,GB 3276040352,3276040367,FR 3276040368,3276042015,GB 3276042016,3276042031,FR 3276042032,3276042079,GB 3276042080,3276042095,FR 3276042096,3276045247,GB 3276045248,3276045255,FR 3276045256,3276046335,GB 3276046336,3276062719,RU 3276062720,3276063231,PL 3276063232,3276063743,FR 3276063744,3276064255,UA 3276064256,3276064767,DE 3276064768,3276065279,BG 3276065280,3276065791,UA 3276065792,3276066303,DE 3276066304,3276066815,GB 3276066816,3276067327,PS 3276067328,3276067839,UA 3276067840,3276068351,AT 3276068352,3276068863,BG 3276068864,3276069887,UA 3276069888,3276070399,GB 3276070400,3276070911,UA 3276071936,3276072447,GB 3276072448,3276072959,SK 3276072960,3276073471,PL 3276073472,3276073983,SK 3276073984,3276074495,DE 3276074496,3276075007,GB 3276075008,3276075519,RU 3276075520,3276076031,DE 3276076032,3276076287,NL 3276076288,3276076543,RU 3276076544,3276077055,DE 3276077568,3276078079,FR 3276078080,3276078591,RU 3276079104,3276095487,NO 3276095488,3276096511,RU 3276096512,3276097535,IT 3276097536,3276098559,NL 3276098560,3276099583,UA 3276099584,3276100607,PL 3276100608,3276101631,UA 3276101632,3276102655,LV 3276102656,3276103679,GB 3276103680,3276104703,SI 3276105728,3276106751,AT 3276106752,3276107775,BG 3276107776,3276108799,DE 3276108800,3276109823,SE 3276109824,3276110847,BG 3276110848,3276111871,PL 3276111872,3276112895,DK 3276112896,3276113919,UA 3276115968,3276116991,NL 3276116992,3276118015,RU 3276118016,3276119039,GB 3276119040,3276120063,RU 3276120064,3276121087,GB 3276121088,3276122111,BG 3276122112,3276123135,RU 3276123136,3276124159,AT 3276124160,3276125183,UA 3276125184,3276126207,AT 3276126208,3276127231,UA 3276127232,3276128255,UZ 3276128256,3276129279,AT 3276129280,3276131327,UA 3276131328,3276132351,RU 3276132352,3276133375,PL 3276133376,3276134399,GB 3276134400,3276135423,RU 3276135424,3276136447,UA 3276136448,3276137471,NL 3276138496,3276139519,NL 3276139520,3276140543,RU 3276140544,3276141567,DE 3276141568,3276143615,UA 3276144640,3276152831,CH 3276152832,3276161023,HU 3276161024,3276169215,GB 3276169216,3276177407,AT 3276177408,3276185599,CZ 3276185600,3276193791,NO 3276193792,3276201983,RU 3276201984,3276210175,AT 3276210176,3276234303,DE 3276234304,3276234367,GB 3276234368,3276275711,DE 3276275712,3276283903,SK 3276283904,3276292095,GB 3276292096,3276300287,BE 3276300288,3276304383,DE 3276304384,3276304639,BG 3276304640,3276305407,GB 3276305408,3276307455,IL 3276307456,3276308479,NL 3276308480,3276309503,GB 3276309504,3276310527,AT 3276310528,3276311551,PT 3276311552,3276312575,RU 3276312576,3276313599,UA 3276313600,3276314623,PL 3276314624,3276315647,FR 3276315648,3276316671,UA 3276316672,3276324863,GB 3276324864,3276333055,IT 3276333056,3276341247,RU 3276341248,3276406783,NL 3276406784,3276414975,FI 3276414976,3276415999,DK 3276416000,3276417023,SE 3276417024,3276419071,DE 3276419072,3276420095,PL 3276420096,3276421119,GB 3276421120,3276422143,PL 3276422144,3276422655,GB 3276422656,3276423167,RU 3276423168,3276423423,PL 3276423424,3276423679,NL 3276423680,3276423935,SE 3276423936,3276424191,UA 3276424192,3276424447,GB 3276424448,3276424703,PL 3276424704,3276424959,DE 3276424960,3276425215,RO 3276425216,3276425471,UA 3276425472,3276425727,DE 3276425728,3276425983,RU 3276425984,3276426239,IT 3276426240,3276426495,CZ 3276426496,3276426751,NO 3276426752,3276427007,RO 3276427008,3276427263,PL 3276427264,3276427519,FR 3276427520,3276427775,IT 3276427776,3276428031,RU 3276428032,3276428287,GB 3276428288,3276428543,RU 3276428544,3276428799,BG 3276428800,3276429055,DE 3276429056,3276429311,NL 3276430080,3276430591,PL 3276430592,3276430847,GB 3276430848,3276431103,DE 3276431104,3276431359,RU 3276431360,3276447743,GB 3276447744,3276451583,DE 3276455936,3276464127,BE 3276464128,3276472319,GR 3276473304,3276473311,AT 3276474880,3276474927,IT 3276477976,3276477983,NL 3276478064,3276478095,CH 3276485632,3276486655,GB 3276490776,3276490776,NL 3276490782,3276490782,AT 3276490783,3276490783,CH 3276499504,3276499567,DE 3276503040,3276505087,DE 3276508928,3276509183,GB 3276509184,3276510207,IT 3276512256,3276513023,ZA 3276518368,3276518383,NL 3276520704,3276520735,SE 3276522496,3276523519,NL 3276524864,3276524895,PT 3276528128,3276528191,GB 3276528352,3276528359,GB 3276530688,3276531711,NL 3276536752,3276536783,HU 3276537344,3276537599,AT 3276537856,3276668927,ES 3276668928,3276677119,MC 3276677120,3276678143,HR 3276678144,3276678655,SE 3276678656,3276679167,UA 3276679168,3276679679,DE 3276679680,3276680191,UA 3276680192,3276680703,SK 3276680704,3276681215,AT 3276681728,3276682239,BE 3276682240,3276682751,AT 3276683776,3276684287,UA 3276684288,3276684799,RU 3276684800,3276685311,DE 3276685312,3276685823,RO 3276685824,3276686335,PL 3276686336,3276686847,UA 3276686848,3276687359,FI 3276687360,3276687871,RU 3276687872,3276688383,KW 3276688384,3276688895,DE 3276688896,3276689407,ES 3276689408,3276690431,GB 3276690432,3276690943,NL 3276690944,3276691455,GR 3276691456,3276691967,RO 3276691968,3276692479,RU 3276692480,3276692991,UA 3276692992,3276693503,GB 3276693504,3276694015,UA 3276694016,3276694527,AT 3276694528,3276695039,UA 3276695040,3276695551,RU 3276695552,3276696063,UA 3276696064,3276696575,RO 3276696576,3276697087,CZ 3276697088,3276697599,GB 3276697600,3276698111,UA 3276698112,3276699647,RU 3276699648,3276700159,NL 3276700160,3276700671,CZ 3276700672,3276701183,RO 3276701184,3276701695,RU 3276701696,3276709887,SE 3276709888,3276718079,DE 3276718080,3276726271,IT 3276726272,3276727295,SE 3276727296,3276728319,ES 3276728320,3276729343,UA 3276729344,3276730367,PL 3276730368,3276731391,DE 3276731392,3276732415,UA 3276732416,3276733439,DE 3276733440,3276734463,UA 3276746752,3276747775,CH 3276758016,3276759039,GB 3276760064,3276761087,DE 3276765184,3276766207,GB 3276775424,3276780543,NL 3276781568,3276782591,BE 3276789280,3276789295,FI 3276794880,3276795903,BE 3276795904,3276797951,AT 3276800000,3276824575,GB 3276824576,3276832767,EE 3276832768,3276834815,PL 3276834816,3276835839,RU 3276835840,3276836351,UA 3276836352,3276836863,RO 3276836864,3276837887,RU 3276837888,3276838911,PL 3276838912,3276840959,FR 3276840960,3276849151,SK 3276849152,3276857343,DE 3276857344,3276857599,RU 3276857600,3276857855,SI 3276857856,3276858111,NL 3276858112,3276858367,KW 3276858368,3276858623,RU 3276858624,3276858879,PL 3276859392,3276859647,UA 3276859648,3276859903,CH 3276859904,3276860159,AT 3276860160,3276860415,CH 3276860416,3276860927,PL 3276860928,3276861183,BE 3276861184,3276861439,DE 3276861440,3276865535,DK 3276865536,3276866303,NL 3276866304,3276870911,GB 3276870912,3276871679,IT 3276871680,3276873759,GB 3276873760,3276873791,ES 3276873792,3276873983,GB 3276873984,3276874239,ES 3276874240,3276874959,GB 3276874960,3276874975,NL 3276874976,3276876383,GB 3276876384,3276876415,NL 3276876416,3276880427,GB 3276880428,3276880431,DK 3276880432,3276881811,GB 3276881812,3276881815,FR 3276881816,3276882047,GB 3276882048,3276882687,IT 3276882688,3276883077,GB 3276883078,3276883078,IT 3276883079,3276883711,GB 3276883712,3276883839,IT 3276883840,3276886363,GB 3276886364,3276886367,DE 3276886368,3276886649,GB 3276886650,3276886650,DE 3276886651,3276890175,GB 3276890176,3276890191,US 3276890192,3276892159,GB 3276892160,3276893183,IT 3276893184,3276893695,GB 3276893696,3276893951,IT 3276893952,3276897727,GB 3276897728,3276897791,BE 3276897792,3276898671,GB 3276898672,3276898687,CH 3276898688,3276901613,GB 3276901614,3276901614,CH 3276901615,3276902141,GB 3276902142,3276902142,CH 3276902143,3276902367,GB 3276902368,3276902399,CH 3276902400,3276902655,GB 3276902656,3276902911,SE 3276902912,3276903423,GB 3276903424,3276903487,SE 3276903488,3276903551,GB 3276903552,3276903679,SE 3276903680,3276907519,GB 3276907520,3276907551,NL 3276907552,3276911167,GB 3276911168,3276911199,IT 3276911200,3276911679,GB 3276911680,3276911711,IT 3276911712,3276912207,GB 3276912208,3276912215,IT 3276912216,3276912287,GB 3276912288,3276912319,IT 3276912320,3276912383,GB 3276912384,3276912639,IT 3276912640,3276912671,GB 3276912672,3276912687,IT 3276912688,3276912879,GB 3276912880,3276912895,IT 3276912896,3276917231,GB 3276917232,3276917247,FR 3276917248,3276917735,GB 3276917736,3276917739,ES 3276917740,3276919061,GB 3276919062,3276919062,DE 3276919063,3276919375,GB 3276919376,3276919391,DE 3276919392,3276919471,GB 3276919472,3276919479,DE 3276919480,3276919487,GB 3276919488,3276919535,DE 3276919536,3276922879,GB 3276922880,3276923135,FR 3276923136,3276925951,GB 3276925952,3276926207,FR 3276926208,3276931071,GB 3276931072,3276939263,KZ 3276939264,3276955647,DE 3276955648,3276963839,GB 3276963840,3276964351,IL 3276964352,3276964863,RO 3276965376,3276966399,RU 3276966400,3276966911,BH 3276966912,3276968959,RU 3276968960,3276969471,RO 3276969472,3276969983,UA 3276969984,3276970495,NL 3276970496,3276971519,RU 3276971520,3276972031,DE 3276972032,3276980223,PL 3276980224,3276988415,DK 3276988416,3276996607,AT 3276996608,3277062143,FR 3277062144,3277127679,SE 3277127680,3277160447,DK 3277160448,3277176831,NL 3277176832,3277177087,SI 3277177088,3277177343,GB 3277177600,3277178111,PL 3277178368,3277178623,UA 3277178624,3277178879,PL 3277178880,3277179135,ES 3277179392,3277179647,DE 3277179648,3277180159,BE 3277180416,3277180671,RU 3277180928,3277181183,UA 3277181184,3277181439,PL 3277181440,3277181695,DE 3277181696,3277181951,RO 3277181952,3277182207,IT 3277182208,3277182463,RU 3277182464,3277182719,UA 3277182720,3277182975,BG 3277183232,3277183487,DE 3277183744,3277183999,UA 3277184000,3277184255,DE 3277184256,3277184511,PT 3277184512,3277184767,DE 3277185024,3277185279,SA 3277185280,3277185535,RU 3277185792,3277186047,PL 3277186048,3277186303,IT 3277186304,3277186559,DE 3277186560,3277186815,PL 3277186816,3277187071,RU 3277187072,3277187327,GB 3277187584,3277188351,RU 3277188352,3277188607,DE 3277188608,3277188863,RU 3277188864,3277189119,RO 3277189120,3277189375,DE 3277189376,3277189631,PL 3277189632,3277189887,TR 3277189888,3277190143,PL 3277190400,3277190655,GB 3277190656,3277190911,BE 3277190912,3277191167,FR 3277191424,3277191679,PL 3277191680,3277191935,UA 3277191936,3277192191,DK 3277192192,3277192447,PL 3277192448,3277192703,DK 3277192704,3277192959,DE 3277192960,3277193215,TR 3277193216,3277258751,NL 3277258752,3277324287,TR 3277324288,3277324799,RU 3277324800,3277325055,KZ 3277325056,3277325311,RU 3277325312,3277326335,IT 3277326336,3277326847,GB 3277326848,3277327359,AT 3277327360,3277327871,RS 3277327872,3277328383,UA 3277328384,3277328895,RU 3277328896,3277329407,NL 3277329408,3277329919,GB 3277329920,3277330431,RU 3277330944,3277331455,UA 3277331456,3277332479,PL 3277332480,3277332991,NL 3277332992,3277333503,AT 3277333504,3277334015,DK 3277334016,3277334527,RO 3277334528,3277335039,RU 3277335040,3277335551,UA 3277335552,3277336063,DE 3277336064,3277336575,HR 3277336576,3277337087,AT 3277337088,3277337599,PL 3277337600,3277338111,UA 3277338112,3277338623,NO 3277339136,3277339647,RU 3277339648,3277340159,DE 3277340160,3277340671,RU 3277340672,3277341183,RO 3277341184,3277341695,AM 3277341696,3277342207,RU 3277342208,3277342719,GB 3277342720,3277343231,UA 3277343232,3277343743,BG 3277343744,3277344767,UA 3277344768,3277345279,RO 3277345280,3277345791,SI 3277345792,3277346303,FR 3277346304,3277346815,GB 3277346816,3277347327,DE 3277347328,3277347839,PL 3277347840,3277348351,RU 3277348352,3277348863,FR 3277348864,3277349887,RO 3277349888,3277350399,GB 3277350400,3277350911,RU 3277351424,3277351935,NO 3277351936,3277352447,DE 3277352448,3277352959,SE 3277352960,3277353471,UA 3277353472,3277353983,PL 3277353984,3277354495,DE 3277354496,3277355007,GB 3277355008,3277355519,RU 3277355520,3277356031,MK 3277356032,3277356543,UA 3277356544,3277357055,RU 3277357056,3277357567,PL 3277357568,3277358079,SE 3277358080,3277359103,RU 3277359104,3277359615,NL 3277359616,3277360127,UA 3277360128,3277360639,BG 3277360640,3277361151,CZ 3277361152,3277361663,PL 3277361664,3277362175,RU 3277362176,3277362687,ES 3277363200,3277363711,ES 3277363712,3277364223,RU 3277364224,3277364735,GB 3277364736,3277365247,UA 3277365248,3277365759,NL 3277365760,3277366271,GR 3277366272,3277366783,CZ 3277366784,3277367295,AT 3277367808,3277368319,RU 3277368320,3277369343,RO 3277369344,3277369855,CY 3277369856,3277370367,RU 3277370368,3277370623,PL 3277370624,3277370879,RU 3277370880,3277371391,RO 3277371392,3277371903,RU 3277371904,3277372415,PL 3277372416,3277372927,IR 3277372928,3277373951,RU 3277373952,3277374463,FR 3277374464,3277375999,RU 3277376000,3277376511,NL 3277377024,3277378047,RU 3277378560,3277379071,HR 3277379072,3277379583,UZ 3277379584,3277380095,RS 3277380608,3277381119,RU 3277381120,3277381631,KW 3277381632,3277382143,RU 3277382656,3277383167,GB 3277383680,3277384191,PL 3277384704,3277385215,GB 3277385216,3277385727,AT 3277385728,3277386239,RU 3277386240,3277386751,UA 3277386752,3277387263,SA 3277387264,3277388287,RU 3277388288,3277388543,RO 3277388544,3277388799,HU 3277388800,3277389311,RU 3277389312,3277389823,AM 3277389824,3277394943,GB 3277394944,3277395455,US 3277395456,3277403135,GB 3277403136,3277403471,FR 3277403472,3277403647,GB 3277403648,3277403903,ES 3277403904,3277404159,GB 3277404160,3277404415,DE 3277404416,3277404655,IT 3277404656,3277404671,GB 3277404672,3277404735,CH 3277404736,3277404927,GB 3277404928,3277405183,NL 3277405184,3277405263,SE 3277405264,3277405439,GB 3277405440,3277405471,DE 3277405472,3277452639,GB 3277452640,3277452647,IE 3277452648,3277452655,DK 3277452656,3277455359,GB 3277455360,3277463551,DE 3277463552,3277471743,US 3277471744,3277474815,NL 3277474816,3277475711,BE 3277475712,3277476607,NL 3277476608,3277477631,BE 3277477632,3277479935,NL 3277479936,3277480447,GB 3277480960,3277481471,DK 3277481472,3277481983,PL 3277481984,3277482495,SE 3277482496,3277483007,PL 3277483008,3277483519,IT 3277483520,3277484031,RO 3277484032,3277484543,CH 3277486080,3277486591,GB 3277487104,3277487615,RO 3277487616,3277488127,PL 3277488128,3277504511,RU 3277504512,3277520895,DE 3277520896,3277553663,SK 3277553664,3277586431,RU 3277586432,3277666815,GB 3277666816,3277667327,US 3277667328,3277676543,DE 3277676544,3277680639,FR 3277680640,3277684735,US 3277684736,3277685247,RU 3277685248,3277685759,DE 3277685760,3277686271,IE 3277686272,3277686783,PL 3277686784,3277687295,RO 3277687296,3277687807,UA 3277687808,3277688319,RO 3277688320,3277688831,PL 3277688832,3277689343,RU 3277689344,3277689855,AT 3277689856,3277690879,RU 3277690880,3277691391,KZ 3277691392,3277691903,UA 3277691904,3277692415,GB 3277692416,3277692927,DE 3277693440,3277693951,PL 3277693952,3277694463,RU 3277694464,3277694975,DE 3277694976,3277695487,IT 3277695488,3277695999,ES 3277696000,3277696511,UA 3277696512,3277697023,AT 3277697536,3277698047,PL 3277698048,3277698559,RU 3277698560,3277699071,DE 3277699584,3277700607,RU 3277700608,3277701119,UA 3277701120,3277701311,SE 3277701312,3277701313,DK 3277701314,3277701375,SE 3277701376,3277701631,DK 3277701632,3277702143,AT 3277702656,3277703679,DE 3277703680,3277704191,PL 3277704192,3277704703,UA 3277704704,3277705215,RU 3277705728,3277706239,ES 3277706240,3277706751,UA 3277707264,3277707775,CZ 3277707776,3277708287,MD 3277708288,3277708799,AT 3277708800,3277709311,PL 3277709312,3277709823,NL 3277709824,3277710335,GB 3277710336,3277710847,RU 3277710848,3277711359,PL 3277711360,3277711871,NO 3277711872,3277712383,IL 3277712384,3277712895,PL 3277712896,3277713407,NL 3277713408,3277713919,RU 3277713920,3277714943,DE 3277714944,3277715967,RU 3277715968,3277716479,PL 3277716480,3277716991,SE 3277716992,3277717503,IT 3277717504,3277725695,YE 3277725696,3277733887,CH 3277733888,3277742079,DE 3277742080,3277745151,FI 3277745152,3277746175,CH 3277746176,3277750271,GB 3277750272,3277766655,IT 3277766656,3277774847,PL 3277774848,3277783039,RU 3277783040,3277815807,BE 3277816064,3277816319,PL 3277816576,3277816831,GB 3277816832,3277817087,CH 3277817088,3277817343,GB 3277817600,3277817855,FR 3277817856,3277818111,BE 3277818112,3277818367,DE 3277818368,3277818623,CY 3277818624,3277818879,UA 3277818880,3277819135,SE 3277819136,3277819391,CH 3277819392,3277819647,IT 3277819648,3277819903,GB 3277819904,3277820159,PL 3277820160,3277820415,RO 3277820416,3277820671,DE 3277820672,3277820927,UA 3277820928,3277821183,CH 3277821184,3277821439,TR 3277821440,3277821695,NL 3277821696,3277821951,UA 3277821952,3277822207,RO 3277822208,3277822463,ES 3277822464,3277822719,PL 3277822976,3277823231,ES 3277823232,3277823487,UA 3277823488,3277823743,SI 3277823744,3277823999,UA 3277824000,3277824255,TR 3277824256,3277824511,SI 3277824512,3277825023,AT 3277825024,3277825279,PL 3277825280,3277825535,UA 3277825536,3277826047,RO 3277826048,3277826303,FR 3277826304,3277826815,PL 3277826816,3277827071,UA 3277827072,3277827327,DK 3277827328,3277827583,SI 3277827584,3277828095,NL 3277828096,3277828351,PL 3277828352,3277828607,NL 3277828608,3277828863,RO 3277828864,3277829119,TR 3277829120,3277829375,RO 3277829376,3277829631,DK 3277829632,3277829887,PL 3277829888,3277830143,IL 3277830144,3277830399,SE 3277830656,3277830911,PL 3277830912,3277831167,GB 3277831168,3277831423,PL 3277831424,3277831679,UA 3277831680,3277832191,IE 3277833216,3277833727,BE 3277833728,3277834239,NL 3277834752,3277835263,UA 3277835264,3277835775,SK 3277835776,3277836287,UA 3277836288,3277836799,FI 3277836800,3277837311,UA 3277837312,3277839103,RU 3277839104,3277839359,AE 3277839360,3277839871,DE 3277839872,3277840383,UA 3277840384,3277840895,FR 3277840896,3277841407,GR 3277841408,3277841919,RO 3277841920,3277842431,IT 3277842432,3277842943,UA 3277842944,3277843455,PL 3277843456,3277843967,PT 3277843968,3277845503,DK 3277845504,3277847039,NL 3277847552,3277848063,RU 3277848064,3277848575,RO 3277848576,3277856767,AT 3277856768,3277864959,DE 3277864960,3277873151,RU 3277873152,3277881343,NL 3277881344,3277886463,IT 3277886464,3277887487,IQ 3277887488,3277889535,IT 3277889536,3277897727,RU 3277897728,3277905919,IT 3277905920,3277914111,BG 3277914112,3277946879,GR 3277946880,3277963263,DK 3277963264,3277979647,GB 3277979648,3277987839,SK 3277987840,3278004223,RU 3278004224,3278012415,FR 3278012416,3278020607,SK 3278020608,3278028799,RU 3278028800,3278036991,DE 3278036992,3278045183,FR 3278045184,3278061567,GB 3278061568,3278065663,NL 3278065664,3278110719,GB 3278110720,3278176255,SE 3278176256,3278241791,FR 3278241792,3278307327,GB 3278307328,3278372863,IT 3278372864,3278635007,GB 3278635008,3278766079,NL 3278767104,3278767615,RO 3278767616,3278768127,UA 3278768128,3278769151,GB 3278769152,3278769663,FR 3278769664,3278770175,DE 3278770176,3278770687,DK 3278770688,3278771711,DE 3278772224,3278772735,BG 3278772736,3278773247,DE 3278773248,3278773759,NO 3278773760,3278774271,GB 3278774272,3278774783,RU 3278774784,3278775295,FR 3278775296,3278775807,GB 3278775808,3278776319,IR 3278776320,3278776831,IL 3278776832,3278777343,DE 3278777344,3278777855,SE 3278777856,3278778367,RU 3278778368,3278779391,PL 3278779392,3278779903,RU 3278779904,3278780415,BE 3278780416,3278780927,UA 3278780928,3278781439,LT 3278781440,3278781951,DE 3278781952,3278782463,RU 3278782464,3278790095,GB 3278790096,3278790111,ES 3278790112,3278790655,GB 3278790656,3278807039,IT 3278807040,3278815231,GB 3278815232,3278823423,AT 3278823424,3278831615,FR 3278831616,3278897151,HU 3278897152,3278913535,GB 3278913536,3278921727,CH 3278921728,3278929919,RU 3278929920,3278938111,TR 3278938112,3278939611,DE 3278939612,3278939615,FR 3278939616,3278939715,DE 3278939716,3278939719,TR 3278939720,3278940055,DE 3278940056,3278940059,SG 3278940060,3278940355,DE 3278940356,3278940359,NL 3278940360,3278940867,DE 3278940868,3278940871,GB 3278940872,3278941251,DE 3278941252,3278941255,US 3278941256,3278941295,DE 3278941296,3278941299,US 3278941300,3278942139,DE 3278942140,3278942143,NL 3278942144,3278942255,DE 3278942256,3278942259,NZ 3278942260,3278942359,DE 3278942360,3278942363,AU 3278942364,3278942523,DE 3278942524,3278942527,IN 3278942528,3278942695,DE 3278942696,3278942699,SG 3278942700,3278943027,DE 3278943028,3278943028,GB 3278943029,3278943310,DE 3278943311,3278943311,BE 3278943312,3278943415,DE 3278943416,3278943416,NL 3278943417,3278943428,DE 3278943429,3278943429,IT 3278943430,3278943666,DE 3278943667,3278943667,IT 3278943668,3278944022,DE 3278944023,3278944023,AT 3278944024,3278944080,DE 3278944081,3278944081,GB 3278944082,3278944098,DE 3278944099,3278944099,GB 3278944100,3278944137,DE 3278944138,3278944138,GB 3278944139,3278944202,DE 3278944203,3278944203,NL 3278944204,3278944286,DE 3278944287,3278944287,CA 3278944288,3278944294,DE 3278944295,3278944295,US 3278944296,3278944305,DE 3278944306,3278944306,US 3278944307,3278944375,DE 3278944376,3278944376,US 3278944377,3278944417,DE 3278944418,3278944418,US 3278944419,3278944612,DE 3278944613,3278944613,US 3278944614,3278944616,DE 3278944617,3278944617,US 3278944618,3278944628,DE 3278944629,3278944629,US 3278944630,3278944643,DE 3278944644,3278944644,US 3278944645,3278944660,DE 3278944661,3278944661,US 3278944662,3278944666,DE 3278944667,3278944667,US 3278944668,3278944677,DE 3278944678,3278944678,CA 3278944679,3278944680,DE 3278944681,3278944681,US 3278944682,3278944696,DE 3278944697,3278944697,CA 3278944698,3278944708,DE 3278944709,3278944709,US 3278944710,3278944714,DE 3278944715,3278944715,CA 3278944716,3278944726,DE 3278944727,3278944727,US 3278944728,3278944732,DE 3278944733,3278944733,US 3278944734,3278944747,DE 3278944748,3278944748,US 3278944749,3278944755,DE 3278944756,3278944756,US 3278944757,3278944983,DE 3278944984,3278944987,CA 3278944988,3278945063,DE 3278945064,3278945067,US 3278945068,3278945287,DE 3278945288,3278945291,US 3278945292,3278945315,DE 3278945316,3278945319,US 3278945320,3278945407,DE 3278945408,3278945411,US 3278945412,3278945527,DE 3278945528,3278945531,US 3278945532,3278945571,DE 3278945572,3278945575,US 3278945576,3278945775,DE 3278945776,3278945779,US 3278945780,3278945805,DE 3278945806,3278945806,FR 3278945807,3278945833,DE 3278945834,3278945834,NL 3278945835,3278946074,DE 3278946075,3278946075,US 3278946076,3278946081,DE 3278946082,3278946082,US 3278946083,3278946093,DE 3278946094,3278946094,US 3278946095,3278946147,DE 3278946148,3278946148,US 3278946149,3278946158,DE 3278946159,3278946159,US 3278946160,3278946167,DE 3278946168,3278946168,US 3278946169,3278946303,DE 3278946304,3278954495,LB 3278954496,3278962687,RU 3278962688,3279028223,CZ 3279028224,3279028735,PL 3279028736,3279029247,RU 3279029760,3279030271,UA 3279030784,3279031295,DE 3279031296,3279031807,NL 3279032320,3279032831,HU 3279032832,3279033343,FR 3279033344,3279033855,RU 3279033856,3279034367,DE 3279034368,3279035391,FR 3279035392,3279035903,PS 3279035904,3279036415,UA 3279036416,3279044607,LV 3279044608,3279052799,FR 3279052800,3279053311,UA 3279053312,3279053823,DE 3279053824,3279054335,NL 3279054336,3279054847,GB 3279054848,3279055359,RU 3279055360,3279055871,SA 3279056896,3279057151,RU 3279057152,3279057407,GB 3279057408,3279057919,FR 3279058944,3279059455,UA 3279059456,3279060479,RU 3279060992,3279069183,UA 3279069184,3279077375,PL 3279077376,3279085567,ES 3279085568,3279089663,NL 3279089664,3279093759,KG 3279093760,3279123455,FR 3279123456,3279123714,RE 3279123715,3279123715,FR 3279123716,3279123967,RE 3279123968,3279159295,FR 3279159296,3279290367,PL 3279292416,3279294463,NL 3279296000,3279296511,ZA 3279298048,3279298559,ZA 3279301632,3279304703,DE 3279310848,3279311871,DE 3279319296,3279319423,AT 3279320064,3279321087,FR 3279327232,3279329279,GB 3279331328,3279332351,GB 3279337472,3279339519,GB 3279343872,3279344127,BE 3279353856,3279354879,DK 3279373312,3279374335,FI 3279374592,3279375359,FI 3279388672,3279396863,GR 3279421440,3279486975,IT 3279486976,3279552511,NL 3279552512,3279559028,LV 3279559029,3279559029,US 3279559030,3279560703,LV 3279560704,3279568895,GB 3279568896,3279577087,IT 3279577088,3279585279,BE 3279585280,3279586815,GB 3279586816,3279587327,DE 3279587328,3279587583,GB 3279587584,3279588095,DE 3279588096,3279590911,GB 3279590912,3279591167,DE 3279591168,3279593407,GB 3279593408,3279593440,DE 3279593441,3279593599,GB 3279593600,3279593727,DE 3279593728,3279596543,GB 3279596544,3279597311,DE 3279597312,3279598591,GB 3279598592,3279599615,DE 3279599616,3279601663,GB 3279601664,3279609855,CZ 3279609856,3279618047,RU 3279618048,3279683583,UA 3279683584,3279946751,DE 3279946752,3279947775,SE 3279947776,3279948799,NL 3279949824,3279950847,UA 3279950848,3279951871,DE 3279952896,3279953919,PL 3279953920,3279955967,TR 3279955968,3279958015,DE 3279958016,3279970303,RU 3279972352,3279974399,AT 3279974400,3279976447,PL 3279976448,3279978495,RU 3279978496,3279978751,SI 3279978752,3279979007,NL 3279979008,3279979263,RO 3279979264,3279979519,SA 3279979520,3279979775,BG 3279979776,3279980031,RU 3279980032,3279980287,BG 3279980288,3279980543,PL 3279980544,3279980799,RO 3279980800,3279981055,RU 3279981056,3279981311,GB 3279981312,3279981567,UA 3279981568,3279981823,PL 3279981824,3279982079,SI 3279982080,3279982335,PL 3279982336,3279982591,FR 3279982592,3279982847,DE 3279982848,3279983103,IL 3279983104,3279983615,FR 3279983616,3279983871,PL 3279983872,3279984127,FR 3279984128,3279984383,AT 3279984384,3279984639,RO 3279984640,3279985151,RU 3279985152,3279985407,PL 3279985408,3279985663,CZ 3279985664,3279985919,DE 3279985920,3279986687,RU 3279986688,3279987199,NL 3279987712,3279988223,RO 3279988224,3279988735,AM 3279988736,3279989247,RO 3279989248,3279989759,AT 3279989760,3279990271,PL 3279990272,3279990783,DK 3279990784,3279991295,IL 3279991808,3279992319,PL 3279992320,3279992831,UA 3279992832,3279993855,NL 3279993856,3279994367,RO 3279994368,3279994879,GB 3279994880,3280003071,CZ 3280003072,3280003583,BG 3280003584,3280004095,GB 3280004096,3280004607,PL 3280004608,3280005119,UA 3280005120,3280005631,HU 3280005632,3280006143,IT 3280006144,3280006655,DK 3280006656,3280007167,GB 3280007680,3280008191,PL 3280008192,3280009215,RU 3280009216,3280009727,UA 3280009728,3280010239,GB 3280010240,3280010751,UA 3280023552,3280024575,IT 3280076800,3280084991,GB 3280084992,3280093183,BA 3280093184,3280109567,GR 3280109568,3280117759,BE 3280117760,3280125951,CH 3280126208,3280126463,IS 3280126464,3280126719,SI 3280126720,3280126975,IT 3280126976,3280127231,CH 3280127232,3280127487,PL 3280127488,3280127743,AT 3280127744,3280127999,NL 3280128000,3280128255,SE 3280128256,3280128511,GB 3280128512,3280129023,HU 3280129280,3280129535,LV 3280129792,3280130047,FR 3280130304,3280130559,RU 3280130560,3280130815,GB 3280130816,3280131071,IS 3280131072,3280131327,PL 3280131328,3280131583,IT 3280131584,3280131839,RU 3280131840,3280132095,RO 3280132096,3280132351,RU 3280132352,3280132607,GB 3280132608,3280132863,CH 3280132864,3280133119,UA 3280133120,3280133375,IT 3280133376,3280133631,DE 3280133632,3280133887,FR 3280133888,3280134143,NL 3280134144,3280142335,IT 3280142336,3280207871,RU 3280207872,3280273407,FR 3280273408,3280338943,RU 3280338944,3280347135,GB 3280347136,3280355327,NO 3280355328,3280371711,GR 3280371712,3280379903,CH 3280379904,3280381951,FR 3280381952,3280383999,NL 3280384000,3280386047,IT 3280386048,3280388095,SA 3280388096,3280396287,GB 3280396288,3280404479,FI 3280404480,3280437247,IT 3280437248,3280453631,DE 3280453632,3280454655,RO 3280454656,3280455679,UA 3280455680,3280456703,IT 3280456704,3280457727,RU 3280457728,3280458751,GB 3280458752,3280459775,RU 3280459776,3280460799,DK 3280460800,3280462847,DE 3280462848,3280463871,PL 3280463872,3280466943,RU 3280467968,3280468991,ES 3280470016,3280535551,PL 3280535552,3280568319,GB 3280568320,3280576511,IT 3280576512,3280576767,BY 3280576768,3280577279,PL 3280577280,3280577535,DE 3280577792,3280578047,NL 3280578048,3280578303,RO 3280578304,3280578559,UA 3280578816,3280579071,NL 3280579072,3280579327,DE 3280579328,3280579583,RU 3280579584,3280579839,CH 3280579840,3280580095,HR 3280580096,3280580351,KW 3280580352,3280580607,CH 3280580608,3280580863,GB 3280580864,3280581119,DE 3280581120,3280581375,DK 3280581376,3280581631,EE 3280581632,3280581887,BY 3280581888,3280582143,FR 3280582144,3280582399,CZ 3280582400,3280582655,DK 3280582656,3280582911,FR 3280582912,3280583167,UA 3280583424,3280583679,RU 3280583936,3280584191,PL 3280584192,3280584447,KW 3280584448,3280584703,DE 3280585216,3280585727,DK 3280585728,3280586239,UA 3280586240,3280586751,DE 3280586752,3280587263,RU 3280587264,3280587775,UA 3280588288,3280588799,UA 3280588800,3280589311,PL 3280589312,3280590335,DE 3280590336,3280590847,NL 3280590848,3280591359,DE 3280591360,3280591871,UA 3280591872,3280592383,US 3280592384,3280592895,TR 3280592896,3280593407,DE 3280593408,3280593919,UA 3280593920,3280594431,LU 3280594432,3280594943,NL 3280594944,3280595455,UA 3280595456,3280595967,DE 3280595968,3280596479,DK 3280596480,3280596991,AT 3280596992,3280597503,UA 3280597504,3280597759,NL 3280597760,3280598015,BE 3280598016,3280598527,UA 3280598528,3280599039,PL 3280599040,3280599551,FR 3280599552,3280600063,UA 3280600064,3280600575,BG 3280600576,3280601087,UA 3280601088,3280609279,PT 3280609280,3280617471,DE 3280617472,3280625663,UA 3280625664,3280633855,MD 3280633856,3280642047,BG 3280642048,3280650239,UA 3280650240,3280650495,RO 3280650496,3280650751,UA 3280650752,3280651263,GB 3280651264,3280651519,SI 3280651520,3280651775,FR 3280651776,3280652031,UA 3280652032,3280652287,NO 3280652288,3280652543,PL 3280652544,3280652799,SI 3280652800,3280653055,FR 3280653056,3280653311,CH 3280653312,3280653823,GB 3280653824,3280654079,RU 3280654080,3280654591,PL 3280654592,3280654847,ES 3280654848,3280655103,RU 3280655104,3280655359,PL 3280655360,3280655615,SE 3280655616,3280655871,FI 3280655872,3280656127,RO 3280656128,3280656639,CH 3280656640,3280657407,UA 3280657664,3280657919,SE 3280657920,3280658175,RO 3280658176,3280658431,DE 3280658432,3280660479,MT 3280660480,3280662527,RU 3280662528,3280664831,DE 3280664832,3280665087,CZ 3280665088,3280666623,DE 3280666624,3280732159,NO 3280732160,3280764927,DE 3280765952,3280766975,DK 3280766976,3280767999,AT 3280768000,3280769023,FR 3280770048,3280771071,FR 3280771072,3280772095,PL 3280772096,3280773119,ES 3280773120,3280774143,UA 3280774144,3280775167,ME 3280775168,3280776191,UA 3280776192,3280777215,SE 3280777216,3280778239,UA 3280778240,3280779263,RU 3280779264,3280780287,DE 3280780288,3280781311,PL 3280781312,3280782335,FI 3280782336,3280783359,TR 3280783360,3280784383,SE 3280784384,3280785407,RU 3280785408,3280787455,DE 3280787456,3280788479,GB 3280788480,3280789503,PL 3280790528,3280791551,UA 3280791552,3280792575,DE 3280792576,3280793599,PL 3280793600,3280794623,NL 3280794624,3280795647,UA 3280795648,3280796671,MZ 3280796672,3280797695,CZ 3280797696,3280816639,CH 3280816640,3280816895,DE 3280816896,3280863231,CH 3280863232,3280928767,TR 3280928768,3280928831,GB 3280928832,3280928847,RU 3280928848,3280928855,GB 3280928856,3280928863,RU 3280928864,3280934927,GB 3280934928,3280934935,DE 3280934936,3280935055,GB 3280935056,3280935063,IT 3280935064,3280935087,GB 3280935088,3280935095,ES 3280935096,3280935119,GB 3280935120,3280935127,FR 3280935128,3280952783,GB 3280952784,3280952799,DE 3280952800,3280955707,GB 3280955708,3280955711,DE 3280955712,3280958919,GB 3280958920,3280958927,DE 3280958928,3280963375,GB 3280963376,3280963383,DE 3280963384,3280991231,GB 3280991232,3280991743,DE 3280991744,3280994559,GB 3280994560,3280994815,RU 3280994816,3280995071,NL 3280995072,3280995327,DE 3280995328,3280995583,SE 3280995584,3280995839,GB 3280995840,3280996095,RU 3280996096,3280996351,CH 3280996352,3280996607,GB 3280996608,3280996863,PL 3280996864,3280997119,NL 3280997120,3280997375,FR 3280997376,3280997631,PL 3280997632,3280997887,SE 3280997888,3280998143,UA 3280998144,3280998399,DE 3280998400,3280998655,GR 3280998656,3280999423,GB 3280999424,3280999679,HU 3280999680,3280999935,UA 3280999936,3281000191,DE 3281000448,3281000703,FR 3281000704,3281000959,UA 3281000960,3281001215,SI 3281001472,3281001727,UA 3281001728,3281001983,RU 3281001984,3281002239,CH 3281002240,3281002495,DE 3281002496,3281010687,CH 3281010688,3281018879,BE 3281018880,3281027071,CZ 3281027080,3281027087,GB 3281027136,3281027151,GB 3281027200,3281027215,GB 3281027280,3281027287,GB 3281027296,3281027311,GB 3281027320,3281027327,GB 3281027584,3281027615,GB 3281027632,3281027679,GB 3281027696,3281027743,GB 3281027776,3281027807,GB 3281027840,3281027903,GB 3281028064,3281028159,GB 3281028992,3281029055,GB 3281030400,3281035263,GB 3281035264,3281043455,CH 3281043456,3281059839,RU 3281059840,3281125375,DE 3281125376,3281133567,SK 3281133568,3281141759,IR 3281141760,3281149951,RU 3281149952,3281158143,CZ 3281158144,3281166335,SK 3281166336,3281174527,GB 3281174528,3281190911,FR 3281190912,3281256447,GB 3281256448,3281321983,FI 3281321984,3281338367,GB 3281338368,3281338623,PL 3281338624,3281338879,SA 3281338880,3281339135,FR 3281339392,3281339647,PL 3281339648,3281339903,GB 3281339904,3281340159,UA 3281340160,3281340415,BG 3281340416,3281340671,RO 3281340928,3281341183,DE 3281341184,3281341439,AT 3281341440,3281341695,DE 3281341696,3281341951,PL 3281341952,3281342207,DK 3281342208,3281343231,DE 3281343232,3281343487,FI 3281343488,3281343743,GB 3281343744,3281343999,TR 3281344000,3281344255,NL 3281344256,3281344511,RU 3281344512,3281344767,UA 3281344768,3281345023,RU 3281345280,3281345535,SA 3281346048,3281346303,SI 3281346304,3281346559,PL 3281346560,3281346815,UA 3281346816,3281347071,DE 3281347072,3281347327,PL 3281347328,3281347583,DE 3281347584,3281347839,PL 3281347840,3281348095,SE 3281348096,3281348351,DE 3281348352,3281348607,GB 3281348608,3281349119,RU 3281349120,3281349375,UA 3281349376,3281349631,NL 3281349632,3281350143,UA 3281350144,3281350655,RU 3281350656,3281350911,UA 3281350912,3281351167,ES 3281351168,3281351423,UA 3281351424,3281351679,AT 3281351680,3281351935,TR 3281351936,3281352191,UA 3281352192,3281352447,PL 3281352704,3281352959,DE 3281352960,3281353215,GB 3281353216,3281353471,DE 3281353472,3281353727,SE 3281353728,3281353983,PL 3281353984,3281354239,UA 3281354240,3281354751,GB 3281354752,3281371135,SE 3281371136,3281372159,RS 3281372160,3281372671,RU 3281372672,3281373183,PL 3281373184,3281375231,RU 3281375232,3281377279,ES 3281377280,3281379327,AT 3281379328,3281383423,PL 3281383424,3281385471,AT 3281385472,3281387519,BG 3281387520,3281453055,PL 3281453056,3281518591,RU 3281518592,3281649663,GB 3281649664,3281710335,FR 3281710336,3281710591,KP 3281710592,3281715199,FR 3281715200,3281780735,TR 3281780736,3281846271,FI 3281846272,3281911807,GB 3281911808,3281919999,UZ 3281920000,3281928191,DE 3281928192,3281944575,MT 3281944576,3281960959,DE 3281960960,3281969151,JO 3281969152,3281969663,RU 3281969664,3281970175,PL 3281970176,3281970687,RU 3281970688,3281971199,CH 3281971200,3281971711,RU 3281971712,3281972223,RO 3281972224,3281972735,DE 3281972736,3281973247,RU 3281973248,3281973759,FR 3281973760,3281974271,DK 3281974784,3281975295,PL 3281975296,3281976319,RU 3281976320,3281976831,DE 3281976832,3281977343,RU 3281977344,3282039039,NO 3282039040,3282039295,SE 3282039296,3282042879,NO 3282042880,3282083839,CH 3282083840,3282084351,DE 3282084352,3282084863,RO 3282084864,3282085375,RU 3282085376,3282085887,BE 3282085888,3282086399,DE 3282086400,3282086911,LV 3282086912,3282087423,DE 3282087424,3282087935,PL 3282087936,3282088447,SE 3282088448,3282089471,PL 3282089472,3282089983,SK 3282089984,3282090495,PL 3282091008,3282091519,FR 3282091520,3282092031,CH 3282092032,3282093055,UA 3282093056,3282095103,DE 3282095104,3282096127,UA 3282096128,3282097151,IT 3282097152,3282098175,GB 3282098176,3282099199,NL 3282099200,3282100223,UA 3282100224,3282101247,ES 3282101248,3282102271,DE 3282102272,3282103295,UA 3282103296,3282104319,GB 3282104320,3282105343,IL 3282105344,3282106367,RU 3282106368,3282107391,DE 3282107392,3282108415,NL 3282108416,3282173951,RU 3282173952,3282174463,UA 3282174464,3282174975,GB 3282174976,3282175487,DE 3282176000,3282177023,RU 3282177024,3282177535,GB 3282177536,3282178047,KZ 3282178048,3282178559,PL 3282178560,3282179071,ES 3282179072,3282179583,GB 3282179584,3282180095,RU 3282180096,3282180607,PL 3282180608,3282181119,KZ 3282181120,3282181631,GB 3282181632,3282182143,DE 3282182144,3282190335,RU 3282190336,3282190847,UA 3282190848,3282191359,IL 3282191360,3282191871,RU 3282191872,3282192383,UA 3282192384,3282192895,BG 3282192896,3282193407,UA 3282193408,3282193919,PL 3282193920,3282194431,RU 3282194432,3282195455,UA 3282195456,3282196479,IE 3282196480,3282197503,UA 3282197504,3282198527,RU 3282198528,3282206719,GB 3282206720,3282223103,CH 3282223104,3282231295,BE 3282231296,3282239487,DE 3282239488,3282305023,SE 3282305024,3282370559,PL 3282370560,3282436095,FI 3282436096,3282477055,GB 3282477056,3282485247,RU 3282485248,3282493439,GI 3282493440,3282501631,NG 3282501632,3282534399,GR 3282534400,3282550783,GB 3282550784,3282554879,FR 3282554880,3282558975,DE 3282558976,3282563071,FR 3282563072,3282567167,GB 3282567168,3282632703,SK 3282632704,3282698239,NL 3282698240,3282706431,GR 3282706432,3282714623,RU 3282714624,3282722815,AT 3282722816,3282731007,DE 3282731008,3282739199,FI 3282739200,3282739455,CH 3282739456,3282739711,RO 3282739712,3282739967,FR 3282739968,3282740223,IR 3282740224,3282740479,FR 3282740736,3282740991,BG 3282741248,3282741503,PT 3282741504,3282741759,GB 3282741760,3282742015,ES 3282742016,3282742527,RO 3282742528,3282742783,GB 3282742784,3282743039,RU 3282743040,3282743295,CH 3282743296,3282743551,CY 3282743552,3282743807,SI 3282743808,3282744063,BG 3282744064,3282744319,UA 3282744320,3282744575,SA 3282744576,3282744831,LT 3282744832,3282745087,PL 3282745088,3282745343,RS 3282745344,3282745599,HU 3282745600,3282745855,DE 3282745856,3282746111,PL 3282746112,3282746367,SE 3282746368,3282746623,PL 3282746624,3282746879,SE 3282747136,3282747391,PL 3282747392,3282763775,RU 3282763776,3282960383,GB 3282960384,3283091455,TR 3283091456,3283111935,CH 3283111936,3283113471,LI 3283113472,3283156991,CH 3283156992,3283173375,DE 3283173376,3283174399,PL 3283174400,3283175423,GB 3283175424,3283176447,UA 3283177472,3283178495,BE 3283178496,3283179519,PL 3283180544,3283181567,UA 3283181568,3283182591,NO 3283182592,3283183615,PL 3283183616,3283184639,RU 3283186688,3283187711,UA 3283187712,3283188735,RU 3283188736,3283189759,UA 3283189760,3283206143,DE 3283206144,3283206655,GB 3283207168,3283207679,PL 3283207680,3283208191,AT 3283208192,3283208703,DE 3283208704,3283209215,NO 3283209216,3283209727,RU 3283209728,3283210239,TR 3283210240,3283210751,UA 3283210752,3283211263,PL 3283211264,3283211775,GB 3283211776,3283212287,NL 3283212288,3283212799,PL 3283212800,3283213311,BG 3283213312,3283213823,ES 3283213824,3283214335,UA 3283214336,3283214847,RO 3283214848,3283215359,RU 3283215360,3283215871,AT 3283216384,3283216895,DE 3283216896,3283217407,CH 3283217408,3283218943,UA 3283218944,3283219455,NL 3283219456,3283219967,GB 3283219968,3283220479,BE 3283220480,3283220991,BG 3283220992,3283221503,AT 3283221504,3283222015,GB 3283222016,3283223039,DE 3283223040,3283223551,RU 3283223552,3283224063,NL 3283224576,3283225087,BG 3283225088,3283225599,UA 3283225600,3283226111,RU 3283226112,3283226623,DK 3283226624,3283227135,RU 3283227136,3283227647,UA 3283227648,3283229183,RU 3283229184,3283229695,PL 3283229696,3283230207,IT 3283230208,3283230719,UA 3283230720,3283238911,RS 3283238912,3283247103,CZ 3283247104,3283247615,LV 3283247616,3283248127,BG 3283248128,3283248639,DE 3283248640,3283249151,RO 3283249152,3283249663,UA 3283249664,3283249919,MD 3283249920,3283250175,RO 3283250176,3283250687,RU 3283251200,3283251711,FR 3283251712,3283252223,PL 3283252224,3283252735,BG 3283252736,3283253247,SI 3283253760,3283254271,PL 3283255296,3283263487,UA 3283263488,3283271679,SE 3283271680,3283279871,RU 3283279872,3283288063,SE 3283288064,3283419135,DE 3283419136,3283484671,DK 3283484672,3283484927,UA 3283484928,3283485183,NL 3283485184,3283485439,DE 3283485440,3283485695,RU 3283485696,3283485951,GB 3283485952,3283486207,SE 3283486208,3283486463,AT 3283486464,3283486719,UA 3283486720,3283486975,RU 3283486976,3283487231,PL 3283487488,3283487743,DE 3283487744,3283487999,CH 3283488000,3283488255,NL 3283488256,3283488511,PL 3283488768,3283489279,FR 3283489280,3283489535,DE 3283489792,3283490047,RU 3283490048,3283490559,UA 3283490560,3283490815,PL 3283491072,3283491327,TR 3283491328,3283491583,AT 3283491840,3283492095,RU 3283492096,3283492351,AT 3283492352,3283492607,ES 3283492608,3283492863,SA 3283492864,3283493119,DK 3283493120,3283493375,IL 3283493376,3283493887,PL 3283493888,3283494143,DK 3283494656,3283494911,DK 3283494912,3283495167,PL 3283495168,3283495423,BG 3283495424,3283495679,TR 3283495680,3283495935,NL 3283495936,3283496191,BG 3283496192,3283496447,DE 3283496448,3283496703,HR 3283496704,3283496959,LV 3283496960,3283497215,DE 3283497216,3283497471,PL 3283497472,3283497727,DE 3283497728,3283498239,PL 3283498240,3283498495,CH 3283498496,3283498751,PL 3283498752,3283499007,AT 3283499008,3283499263,DE 3283499264,3283499519,RU 3283499520,3283499775,DE 3283499776,3283500031,GB 3283500032,3283500287,DE 3283500288,3283500543,SI 3283500544,3283500799,GB 3283500800,3283501055,UA 3283501056,3283509247,LT 3283509248,3283517439,DE 3283517440,3283525631,RU 3283525632,3283533823,GB 3283533824,3283534847,UA 3283534848,3283535359,DE 3283536384,3283536895,UA 3283537408,3283537919,PL 3283537920,3283538431,RO 3283538432,3283538943,IT 3283538944,3283539455,RO 3283539456,3283539967,RS 3283539968,3283540479,DK 3283540480,3283540991,PL 3283540992,3283541503,RO 3283541504,3283542015,CH 3283542016,3283550207,IT 3283561472,3283562495,GB 3283563520,3283564543,GB 3283568640,3283569663,GB 3283576832,3283579903,DE 3283593216,3283595263,IT 3283615744,3283623935,HU 3283623936,3283632127,DK 3283632128,3283632639,NL 3283632640,3283633151,GB 3283633152,3283633663,SE 3283633664,3283634175,UA 3283634688,3283635199,RU 3283635200,3283635711,GB 3283635712,3283636223,RU 3283636224,3283636735,UA 3283636736,3283637759,PL 3283638272,3283638783,PL 3283639296,3283639807,CH 3283639808,3283640319,DE 3283640320,3283648511,DK 3283648512,3283650927,BE 3283650928,3283650943,GB 3283650944,3283650975,BE 3283650976,3283651007,GB 3283651008,3283656703,BE 3283656704,3283664895,HU 3283664896,3283673087,UA 3283673088,3283681279,GB 3283681280,3283746815,DE 3283746816,3283812351,CH 3283812352,3283877887,PL 3283877888,3283943423,GB 3283943424,3283944447,CZ 3283944448,3283945471,AT 3283945472,3283946495,UA 3283946496,3283947519,GB 3283947520,3283948543,RU 3283948544,3283949567,NL 3283949568,3283950591,SE 3283950592,3283951615,KZ 3283951616,3283952639,PL 3283952640,3283953663,UA 3283953664,3283954687,PL 3283954688,3283955326,UA 3283955327,3283955327,CY 3283955328,3283956735,UA 3283956736,3283957759,PL 3283957760,3283958783,GR 3283958784,3283959807,UA 3283959808,3283960831,FR 3283960832,3283961855,KZ 3283961856,3283962879,RU 3283962880,3283963903,PL 3283963904,3283964927,BG 3283964928,3283966975,PL 3283966976,3283967999,DE 3283968000,3283969023,UA 3283969024,3283970047,RU 3283970048,3283971071,UA 3283971072,3283972095,RU 3283972096,3283973119,SE 3283973120,3283974143,NL 3283974144,3283975167,RU 3283975168,3283976191,NL 3283976192,3283976703,IE 3283976704,3283977215,DK 3283977216,3283977727,UA 3283977728,3283978751,RU 3283978752,3283979263,RO 3283979264,3283979775,IL 3283979776,3283980287,NO 3283980288,3283980799,RO 3283980800,3283981823,CH 3283981824,3283982335,RO 3283982848,3283983359,RO 3283983360,3283983871,CY 3283983872,3283984383,GB 3283984384,3283984895,SE 3283984896,3283985407,GR 3283985920,3283986431,AT 3283986944,3283987455,AT 3283987456,3283987967,GB 3283988480,3283988991,RO 3283988992,3283989503,FR 3283989504,3283990015,RU 3283990016,3283990527,SE 3283991040,3283991551,RO 3283991552,3283992063,SE 3283992576,3283993087,IL 3283993088,3283993599,RO 3283993600,3283994111,UA 3283994112,3283994623,AT 3283994624,3283995135,UA 3283995136,3283995647,BE 3283995648,3283996159,CH 3283996160,3283996671,MK 3283996672,3283997183,RO 3283997184,3283997695,PS 3283997696,3283998207,SA 3283998208,3283998719,UA 3283998720,3283999231,NL 3283999232,3283999743,RU 3283999744,3284000255,GB 3284000256,3284000767,RU 3284000768,3284001279,BG 3284001280,3284002303,UA 3284002304,3284002815,PL 3284002816,3284003327,DK 3284003328,3284003839,UA 3284003840,3284004351,DE 3284004352,3284004863,RU 3284004864,3284005375,UA 3284005376,3284005887,PA 3284005888,3284006399,DE 3284006400,3284007423,UA 3284007424,3284007935,RO 3284007936,3284008447,CH 3284008448,3284008959,NO 3284008960,3284009215,NL 3284009216,3284009471,PL 3284009472,3284009727,DE 3284009728,3284009983,FR 3284009984,3284010239,CH 3284010240,3284010751,FR 3284010752,3284011519,DE 3284011520,3284011775,HR 3284011776,3284012031,DE 3284012032,3284012287,RU 3284012288,3284012543,UA 3284012544,3284012799,RU 3284012800,3284013311,AT 3284013312,3284013567,PL 3284013568,3284013823,DK 3284013824,3284014079,IL 3284014080,3284014335,TR 3284014336,3284014591,IT 3284014592,3284014847,GB 3284014848,3284015103,IL 3284015104,3284015359,US 3284015360,3284015615,DK 3284015616,3284015871,AT 3284015872,3284016127,FR 3284016128,3284016383,NL 3284016384,3284016639,CH 3284016640,3284017151,DK 3284017152,3284025343,GR 3284025344,3284028139,GB 3284028140,3284028143,US 3284028144,3284028287,GB 3284028288,3284028319,US 3284028320,3284029183,GB 3284029184,3284029199,US 3284029200,3284030471,GB 3284030472,3284030479,IL 3284030480,3284030495,FR 3284030496,3284030615,GB 3284030616,3284030623,SE 3284030624,3284030775,GB 3284030776,3284030783,SE 3284030784,3284030991,GB 3284030992,3284031007,FR 3284031008,3284033535,GB 3284033536,3284041727,RU 3284041728,3284041983,DK 3284041984,3284042239,SI 3284042496,3284042751,AT 3284042752,3284043007,RU 3284043008,3284043263,TH 3284043264,3284043519,EE 3284043520,3284043775,DE 3284043776,3284044031,HR 3284044032,3284044287,FR 3284044288,3284044543,DE 3284044800,3284045055,CZ 3284045056,3284045311,EE 3284045312,3284045567,DE 3284045568,3284045823,AT 3284046080,3284046335,DE 3284046336,3284046591,NL 3284046592,3284046847,SE 3284046848,3284047103,DE 3284047616,3284047871,NL 3284047872,3284048127,UA 3284048128,3284048383,DK 3284048640,3284049151,FR 3284049408,3284049663,SI 3284049664,3284049919,RO 3284049920,3284058111,CH 3284058112,3284066303,SE 3284066304,3284075007,NL 3284075008,3284075519,DE 3284075520,3284076031,RU 3284076032,3284076543,SA 3284076544,3284077055,PL 3284077056,3284077567,RU 3284077568,3284078079,UA 3284078080,3284078591,DE 3284078592,3284079103,NL 3284079104,3284079615,RU 3284079616,3284080127,DE 3284080640,3284081151,UA 3284081152,3284081663,DE 3284081664,3284082175,IE 3284082176,3284082687,NO 3284082688,3284083199,RU 3284083200,3284083711,BG 3284083712,3284084223,RU 3284084224,3284084735,UA 3284084736,3284085247,RU 3284085248,3284085759,DE 3284085760,3284086783,RO 3284086784,3284087295,CZ 3284087296,3284087807,RU 3284087808,3284088319,IL 3284088832,3284089855,UA 3284089856,3284090367,BG 3284090368,3284090879,PL 3284090880,3284091391,RU 3284091392,3284091903,GB 3284091904,3284092415,DE 3284092416,3284092927,GB 3284092928,3284093439,UA 3284093440,3284093951,IR 3284093952,3284094975,RU 3284094976,3284095487,UA 3284095488,3284095999,RU 3284096000,3284096511,IT 3284096512,3284097023,GB 3284097024,3284097535,RU 3284097536,3284098047,UA 3284098048,3284098559,DE 3284098560,3284099071,BG 3284099072,3284099327,SI 3284099328,3284099583,HU 3284099584,3284100095,GR 3284100096,3284100607,AM 3284101120,3284101631,UA 3284101632,3284102143,GB 3284102144,3284102655,DK 3284102656,3284103167,AT 3284103168,3284103679,NL 3284103680,3284104191,DE 3284104192,3284104703,NO 3284104704,3284105215,TR 3284105216,3284105727,NL 3284105728,3284106239,FI 3284106240,3284106751,RO 3284106752,3284107263,UA 3284107264,3284107775,DE 3284107776,3284108287,RU 3284108288,3284108799,CH 3284108800,3284109311,FR 3284109312,3284109823,RU 3284109824,3284110335,UA 3284110848,3284111359,DK 3284111360,3284111871,SE 3284111872,3284112383,RU 3284112384,3284112895,BG 3284112896,3284113919,NL 3284113920,3284114431,AM 3284114432,3284114943,GB 3284114944,3284115455,RU 3284115456,3284115967,RO 3284115968,3284116479,PL 3284116480,3284116991,NL 3284116992,3284117503,RU 3284117504,3284118015,UA 3284118016,3284118527,PL 3284118528,3284119039,FR 3284119040,3284119551,RU 3284120064,3284120575,UA 3284120576,3284121087,PL 3284121088,3284121599,RU 3284121600,3284122111,PL 3284122112,3284122623,AM 3284122624,3284123135,CH 3284123136,3284124159,RU 3284124160,3284124671,UA 3284124672,3284125183,DE 3284125696,3284126207,UA 3284126208,3284127231,CZ 3284127744,3284128255,RU 3284128256,3284128767,GB 3284128768,3284129279,SE 3284129280,3284129791,UA 3284129792,3284130303,DE 3284130304,3284130815,GB 3284130816,3284131327,RU 3284131328,3284131839,HU 3284131840,3284132351,DE 3284132352,3284132863,UA 3284132864,3284133375,HU 3284133376,3284133887,TM 3284133888,3284134399,PL 3284134400,3284134911,UA 3284134912,3284135935,RU 3284135936,3284136447,CH 3284136448,3284136959,RU 3284136960,3284137471,FR 3284137472,3284137983,UA 3284137984,3284138495,PL 3284138496,3284139007,RU 3284139008,3284140031,AT 3284140032,3284205567,DK 3284205568,3284257535,NL 3284257536,3284257791,GB 3284257792,3284271103,NL 3284271104,3284402175,GB 3284402176,3284467711,SE 3284467712,3284533247,FI 3284533248,3284588287,SE 3284588288,3284588543,DK 3284588544,3284598783,SE 3284598784,3284664319,HU 3284664320,3284672511,GB 3284672512,3284680703,DE 3284680704,3284681215,UA 3284681728,3284682239,FI 3284682240,3284682751,DE 3284682752,3284683263,SE 3284683264,3284683775,KZ 3284683776,3284684287,GB 3284684288,3284684799,FR 3284684800,3284685311,DE 3284685312,3284685823,NL 3284685824,3284686335,DE 3284686336,3284686847,RO 3284686848,3284687359,PL 3284687360,3284687871,UA 3284687872,3284688383,IL 3284688384,3284688895,IT 3284688896,3284697087,FR 3284697088,3284705279,GB 3284705280,3284713471,FR 3284713472,3284713727,DE 3284713728,3284713983,GR 3284713984,3284714239,DE 3284714240,3284714495,FR 3284714496,3284714751,UA 3284714752,3284715007,AT 3284715008,3284715263,GB 3284715264,3284715519,PL 3284715520,3284715775,SI 3284715776,3284716031,BE 3284716032,3284716287,IT 3284716288,3284716543,RU 3284716544,3284716799,GR 3284716800,3284717055,IL 3284717056,3284717311,PL 3284717312,3284717567,DE 3284717568,3284717823,FR 3284717824,3284718079,RU 3284718336,3284718591,GB 3284718592,3284718847,PL 3284718848,3284719103,RU 3284719104,3284719359,PL 3284719616,3284719871,RU 3284719872,3284720127,FR 3284720128,3284720383,CH 3284720384,3284720895,SE 3284721152,3284721407,TR 3284721408,3284721663,NL 3284721664,3284722175,BE 3284722176,3284722687,RU 3284722688,3284723199,FR 3284723200,3284723711,GB 3284723712,3284724223,RU 3284724224,3284724735,PL 3284724736,3284725247,RU 3284725248,3284725759,GR 3284725760,3284726271,LU 3284726272,3284726783,DE 3284726784,3284727295,UA 3284727296,3284727807,MK 3284727808,3284728319,RU 3284728320,3284728831,UA 3284728832,3284729343,PT 3284729344,3284729855,FR 3284729856,3284795391,RU 3284795392,3284803583,FR 3284803584,3284811775,DE 3284811776,3284819967,KE 3284819968,3284828159,GB 3284828160,3284844543,AT 3284844544,3284860927,CH 3284860928,3284926463,DE 3284926464,3284991999,NO 3284992000,3285057535,PL 3285057536,3285065727,IT 3285065728,3285073919,RU 3285073920,3285082111,NL 3285082112,3285084159,AT 3285086208,3285088255,PL 3285088256,3285088511,RO 3285088512,3285088767,DK 3285088768,3285089279,RU 3285089280,3285090303,PL 3285090304,3285098495,DE 3285098496,3285114879,GB 3285114880,3285115903,RU 3285115904,3285116415,SI 3285116928,3285117439,UA 3285117952,3285118463,FR 3285118464,3285118975,UA 3285118976,3285119487,RU 3285119488,3285119999,RO 3285120000,3285120511,RU 3285120512,3285121023,RO 3285121024,3285121535,SE 3285121536,3285122047,CY 3285122048,3285122559,GB 3285122560,3285123071,RU 3285123072,3285188607,BE 3285188608,3285319679,RU 3285319680,3285320191,HU 3285320192,3285320703,RU 3285320704,3285321215,RO 3285321216,3285321727,DE 3285321728,3285322239,RU 3285322240,3285322751,DE 3285322752,3285323263,PL 3285323264,3285323775,CZ 3285323776,3285324287,CH 3285324288,3285324799,DK 3285324800,3285325311,RU 3285325312,3285325823,GB 3285325824,3285326335,PL 3285326336,3285326847,DE 3285326848,3285327359,SK 3285327360,3285328383,RU 3285328384,3285328895,PL 3285328896,3285329407,SE 3285329408,3285329919,GB 3285329920,3285330431,RO 3285330432,3285330943,FR 3285330944,3285331455,RO 3285331456,3285331967,KZ 3285331968,3285332991,DE 3285332992,3285333503,SE 3285333504,3285334015,GB 3285334016,3285334527,NL 3285334528,3285335039,DE 3285335040,3285335551,PL 3285335552,3285336063,SE 3285336064,3285352447,IT 3285352448,3285368831,RU 3285368832,3285385215,SI 3285385216,3285386239,PL 3285386240,3285387263,RU 3285387264,3285388287,PL 3285388288,3285389311,CH 3285389312,3285390335,FI 3285390336,3285393407,RU 3285393408,3285394431,AT 3285394432,3285396479,RU 3285396480,3285397503,IR 3285397504,3285398527,NL 3285398528,3285399551,RU 3285399552,3285400575,NL 3285400576,3285401599,UA 3285401600,3285402623,RU 3285402624,3285403647,IL 3285403648,3285404671,NL 3285404672,3285406719,RU 3285406720,3285407743,UA 3285407744,3285408767,RU 3285408768,3285409791,GB 3285409792,3285412863,RU 3285412864,3285413887,UA 3285413888,3285414911,RU 3285414912,3285415935,UA 3285415936,3285419007,RU 3285419008,3285420031,SE 3285420032,3285425151,UA 3285425152,3285426175,LV 3285426176,3285427199,UA 3285427200,3285428223,GB 3285428224,3285429247,RU 3285429248,3285430271,UA 3285430272,3285431295,DK 3285431296,3285432319,UZ 3285432320,3285434367,UA 3285434368,3285436415,RU 3285436416,3285437439,GR 3285437440,3285438463,RU 3285438464,3285440511,UA 3285440512,3285442559,RU 3285442560,3285443583,IE 3285443584,3285444607,UA 3285444608,3285446655,RU 3285446656,3285447679,UA 3285447680,3285449727,RU 3285449728,3285450751,UA 3285451456,3285451471,GB 3285451608,3285451615,GB 3285452496,3285452511,GB 3285453440,3285453567,GB 3285461184,3285461215,NL 3285461808,3285461839,NL 3285463168,3285463199,LU 3285472256,3285472271,US 3285472272,3285472287,DE 3285472288,3285472511,US 3285477136,3285477151,IT 3285480960,3285481215,CH 3285495296,3285495807,ES 3285501328,3285501359,CZ 3285501744,3285501759,GB 3285510144,3285512191,GB 3285515776,3285515799,GR 3285515816,3285515823,GR 3285516288,3285516687,BE 3285516688,3285516691,NL 3285516692,3285517311,BE 3285517312,3285518335,GB 3285518336,3285524223,BE 3285524224,3285524351,GB 3285524352,3285527455,BE 3285527456,3285527487,IL 3285527488,3285529199,BE 3285529200,3285529215,IL 3285529216,3285529727,BE 3285529728,3285529855,GB 3285529856,3285533503,BE 3285533504,3285533519,GB 3285533520,3285533551,BE 3285533552,3285533567,GB 3285533568,3285536991,BE 3285536992,3285537007,GB 3285537008,3285546687,BE 3285546688,3285546751,GB 3285546752,3285550335,BE 3285550336,3285550463,GB 3285550464,3285552511,BE 3285552512,3285552639,GB 3285552640,3285553663,BE 3285553664,3285553727,DE 3285553728,3285561087,BE 3285561088,3285561103,SE 3285561104,3285567487,BE 3285567488,3285568511,NL 3285568512,3285577983,BE 3285577984,3285578111,IT 3285578112,3285580287,BE 3285580288,3285580415,DE 3285580416,3285581823,BE 3285581824,3285606399,DE 3285606400,3285614591,GB 3285614592,3285630975,TR 3285630976,3285633023,UA 3285633024,3285635071,NO 3285635072,3285637119,UA 3285637120,3285638143,DE 3285638144,3285639167,UA 3285639168,3285641215,FR 3285641216,3285642239,RU 3285642240,3285643263,UA 3285643264,3285645311,FR 3285645312,3285647359,BG 3285647360,3285712895,DK 3285712896,3285721087,GB 3285721088,3285729279,SE 3285729280,3285737471,CH 3285737472,3285745663,PL 3285745664,3285753855,IT 3285753856,3285762047,LV 3285762048,3285762559,FR 3285762560,3285763071,RU 3285763072,3285763583,GB 3285763584,3285764095,DE 3285764096,3285764607,RU 3285765120,3285766143,UA 3285766656,3285767679,UA 3285767680,3285768191,FR 3285768192,3285768703,RU 3285768704,3285768959,RO 3285768960,3285769215,PL 3285769216,3285769727,DE 3285769728,3285770239,RO 3285770240,3285770495,NL 3285770496,3285770751,US 3285770752,3285771007,UA 3285771008,3285771263,CH 3285771264,3285771519,BG 3285771520,3285771775,AT 3285771776,3285772031,RO 3285772032,3285772287,SE 3285772288,3285772543,TR 3285772544,3285772799,LT 3285773056,3285773311,DE 3285773312,3285773567,LV 3285773568,3285773823,KG 3285774080,3285774335,RO 3285774336,3285774591,CZ 3285774592,3285774847,RU 3285774848,3285775103,FR 3285775104,3285775615,RU 3285775872,3285776127,NL 3285776384,3285776639,UA 3285776640,3285776895,FR 3285776896,3285777151,PL 3285777152,3285777407,HU 3285777408,3285777663,IL 3285777664,3285777919,SI 3285777920,3285778175,PL 3285778176,3285778431,DE 3285778432,3285843967,GB 3285843968,3285852159,LU 3285852160,3285860351,GB 3285860352,3285868543,FI 3285868544,3285876735,IE 3285876736,3285909503,RU 3285910336,3285910399,ES 3285911552,3285912575,GB 3285913648,3285913655,IE 3285913656,3285913703,GB 3285913704,3285913711,FI 3285913712,3285913863,GB 3285913872,3285913903,GB 3285913920,3285913951,GB 3285917696,3285918207,GB 3285919744,3285921791,QA 3285922048,3285922303,FR 3285924912,3285924919,CH 3285924920,3285924927,FI 3285924928,3285924943,DE 3285924944,3285924947,IT 3285924948,3285924951,AT 3285924952,3285924955,CH 3285924956,3285924959,PL 3285924960,3285924991,DE 3285924992,3285924995,FR 3285924996,3285924999,CZ 3285925000,3285925007,RU 3285925164,3285925171,CH 3285926432,3285926463,CH 3285926592,3285926623,DE 3285928304,3285928311,GB 3285929216,3285929231,DE 3285931528,3285931551,DE 3285935872,3285936127,GB 3285936136,3285936147,FR 3285939136,3285939175,GB 3285939184,3285939191,GB 3285939744,3285939759,GB 3285939840,3285939967,GB 3285940736,3285940767,IT 3285941248,3285941503,ES 3285949604,3285949607,CH 3285949856,3285949887,ES 3285950208,3285950463,IT 3285951648,3285951679,ES 3285954048,3285954303,AE 3285954560,3285954567,RO 3285954568,3285954575,PL 3285954576,3285954815,GB 3285962752,3285963775,DE 3285964800,3285964935,DE 3285965056,3285965823,DE 3285968896,3285970943,GB 3285975040,3286013695,FR 3286013696,3286013951,RE 3286013952,3286106111,FR 3286106112,3286114303,EE 3286114304,3286122495,BA 3286122496,3286130687,BY 3286130688,3286131711,RS 3286131712,3286132735,PL 3286132736,3286133759,RO 3286133760,3286134783,IE 3286134784,3286135807,PL 3286135808,3286136831,NL 3286136832,3286137855,AT 3286137856,3286138879,UA 3286138880,3286155263,RU 3286155264,3286171647,DE 3286171648,3286237183,IT 3286237184,3286302719,GB 3286302720,3286310911,NO 3286310912,3286311423,CH 3286311424,3286311935,NL 3286311936,3286312447,PL 3286312448,3286312959,RU 3286312960,3286313983,RO 3286313984,3286314495,CH 3286314496,3286315007,IL 3286315008,3286315519,UA 3286315520,3286315775,SI 3286315776,3286316031,BG 3286316032,3286316543,UA 3286316544,3286317055,NL 3286317056,3286317567,RU 3286317568,3286318079,RO 3286318080,3286318591,CH 3286320128,3286321151,PL 3286321152,3286322175,CZ 3286322176,3286323199,PL 3286323200,3286324223,GB 3286324224,3286325247,RO 3286325248,3286326271,DK 3286326272,3286327295,PL 3286327296,3286329343,NL 3286329344,3286330367,DE 3286330368,3286331391,RU 3286331392,3286332415,UA 3286332416,3286333439,CH 3286333440,3286334463,PL 3286334464,3286335487,BG 3286335488,3286336511,RU 3286336512,3286337535,DE 3286337536,3286338559,PL 3286338560,3286339583,RO 3286339584,3286340607,UA 3286340608,3286342655,DE 3286342656,3286343679,UA 3286343680,3286344703,RU 3286344704,3286345727,BE 3286345728,3286346751,IT 3286346752,3286347775,UA 3286347776,3286348799,PA 3286349824,3286350847,SE 3286350848,3286351871,GB 3286351872,3286352895,CH 3286352896,3286353919,DE 3286353920,3286354943,LI 3286354944,3286355967,FR 3286355968,3286356991,DE 3286356992,3286358015,PL 3286358016,3286359039,GB 3286360064,3286361087,IT 3286361088,3286362111,UA 3286362112,3286363135,RU 3286363136,3286364159,AT 3286364160,3286365183,DE 3286365184,3286367231,PL 3286367232,3286368255,BG 3286368256,3286376447,CH 3286376448,3286384639,GB 3286384640,3286401023,DE 3286401024,3286403071,GB 3286403072,3286403327,GG 3286403328,3286404863,GB 3286404864,3286405119,GG 3286405120,3286406655,GB 3286406656,3286406911,GG 3286406912,3286407167,GB 3286407168,3286407423,GG 3286407424,3286407679,GB 3286407680,3286407935,GG 3286407936,3286409215,GB 3286409216,3286417407,DE 3286417408,3286417663,UA 3286417664,3286417919,IT 3286417920,3286418175,DE 3286418176,3286418431,AT 3286418432,3286418687,TR 3286418944,3286419199,PL 3286419200,3286419455,DK 3286419456,3286419711,DE 3286419712,3286419967,GB 3286419968,3286420223,FI 3286420224,3286420735,RU 3286420736,3286420991,NL 3286420992,3286421247,RO 3286421248,3286421503,PL 3286421504,3286421759,KZ 3286421760,3286422015,RU 3286422016,3286422271,MD 3286422272,3286422527,FR 3286422528,3286422783,RO 3286422784,3286423039,UA 3286423040,3286423295,RO 3286423552,3286423807,RU 3286423808,3286424063,CZ 3286424064,3286424319,LV 3286424320,3286424575,FR 3286424576,3286424831,RU 3286424832,3286425087,TR 3286425088,3286425343,RU 3286425344,3286425599,IT 3286425600,3286433791,KW 3286433792,3286499327,DE 3286499328,3286502143,HU 3286502144,3286502399,BG 3286502400,3286510335,HU 3286510336,3286510591,BG 3286510592,3286514431,HU 3286514432,3286514687,RO 3286514688,3286552575,HU 3286552576,3286553087,BG 3286553088,3286564863,HU 3286564864,3286566655,AE 3286566656,3286567423,KW 3286567424,3286630399,AE 3286630400,3286638591,BG 3286638592,3286646783,AT 3286646784,3286654975,RU 3286654976,3286655231,UA 3286655232,3286655487,KZ 3286655488,3286655743,LT 3286655744,3286655999,RU 3286656000,3286656255,CH 3286656256,3286656511,RU 3286656512,3286656767,GR 3286656768,3286657023,UA 3286657024,3286657279,BE 3286657280,3286657535,ES 3286657536,3286657791,HU 3286658048,3286658303,DE 3286658304,3286658559,RU 3286658560,3286658815,NL 3286658816,3286659071,RU 3286659072,3286659327,UA 3286659328,3286659583,PL 3286659584,3286659839,DE 3286659840,3286660095,UA 3286660096,3286660351,DE 3286660352,3286660607,CH 3286660608,3286660863,GB 3286660864,3286661119,UA 3286661120,3286661375,PL 3286661376,3286661631,SI 3286661632,3286661887,GB 3286661888,3286662143,RU 3286662144,3286662399,SK 3286662400,3286662655,UA 3286662656,3286662911,DE 3286662912,3286671359,UA 3286671360,3286679551,AT 3286679552,3286695935,IT 3286695936,3286761471,DK 3286761472,3286773759,GB 3286773760,3286777855,DE 3286777856,3286778111,GB 3286778112,3286781951,FR 3286781952,3286794239,GB 3286794240,3286799103,DE 3286799104,3286799359,IT 3286799360,3286888447,DE 3286888448,3286889471,IE 3286889472,3286892543,DE 3286892544,3286893055,LI 3286893056,3286893567,RU 3286893568,3286894591,UA 3286894592,3286895103,PL 3286895104,3286895615,GB 3286895616,3286896127,DE 3286896128,3286896639,SE 3286896640,3286897151,PL 3286897152,3286897663,AT 3286897664,3286898175,PL 3286898176,3286898687,HR 3286899200,3286899711,IL 3286899712,3286900223,DE 3286900224,3286900735,RO 3286900736,3286900991,BE 3286900992,3286901503,DE 3286901504,3286902015,FR 3286902016,3286902527,CH 3286902528,3286902783,GB 3286902784,3286903039,PL 3286903040,3286903551,FR 3286903552,3286903807,CH 3286903808,3286904063,AT 3286904064,3286904319,BE 3286904320,3286904575,FR 3286904576,3286904831,PT 3286904832,3286905087,GB 3286905088,3286905343,GR 3286905344,3286905599,DE 3286905600,3286905855,MT 3286905856,3286906111,TR 3286906112,3286906367,BE 3286906368,3286906879,RO 3286906880,3286907135,RU 3286907136,3286907391,SE 3286907392,3286907647,AT 3286907648,3286907903,ES 3286907904,3286908159,CH 3286908160,3286908415,ES 3286908928,3286909951,CH 3286909952,3286913023,UA 3286913024,3286913535,GB 3286914048,3286915071,BG 3286915072,3286916095,FR 3286917120,3286918143,RU 3286918144,3286919167,AT 3286919168,3286920191,DE 3286921216,3286922239,UA 3286922240,3286923263,GB 3286923264,3286924287,CM 3286925312,3286925823,DE 3286926080,3286926335,LV 3286926336,3286926591,UA 3286926592,3286926847,DE 3286926848,3286927103,PT 3286927104,3286927359,FI 3286927360,3286927615,DE 3286927616,3286927871,SI 3286927872,3286928127,BG 3286928128,3286928383,DE 3286928640,3286928895,PL 3286928896,3286929151,FI 3286929408,3286929663,LV 3286929664,3286929919,BE 3286929920,3286930175,SE 3286930432,3286930687,UA 3286930688,3286930943,DE 3286930944,3286931199,SE 3286931200,3286931455,AT 3286931456,3286931711,DE 3286931712,3286931967,GB 3286931968,3286932223,FR 3286932224,3286932479,DK 3286932736,3286932991,AT 3286932992,3286933247,IL 3286933504,3286933759,DK 3286934016,3286934271,BE 3286934272,3286934527,CH 3286934528,3286934783,PL 3286934784,3286935039,TR 3286935040,3286935551,ES 3286935552,3286935807,EG 3286936064,3286936319,RU 3286936320,3286936575,IT 3286936576,3286936831,RO 3286936832,3286937087,NL 3286937088,3286937343,UA 3286937344,3286937599,GB 3286937600,3286937855,CH 3286937856,3286938111,RO 3286938112,3286938367,DE 3286938624,3286938879,CH 3286939136,3286939391,RO 3286939392,3286939647,DE 3286939648,3286939903,BE 3286939904,3286940159,EG 3286940160,3286940415,BE 3286940416,3286940671,NL 3286940672,3286940927,RO 3286941184,3286941439,RU 3286941696,3286942719,DE 3286942720,3286943743,FI 3286943744,3286944767,UA 3286944768,3286945791,CZ 3286945792,3286946815,RU 3286946816,3286947839,UA 3286947840,3286948863,DE 3286948864,3286949887,UA 3286949888,3286950911,CH 3286950912,3286951935,DE 3286951936,3286952959,IT 3286952960,3286953983,BG 3286953984,3286955007,GB 3286955008,3286956031,DE 3286956032,3286957055,FR 3286957056,3286958079,EG 3286958080,3287023615,ES 3287023616,3287154687,FI 3287154688,3287162879,BE 3287162880,3287165439,DE 3287165440,3287165695,SA 3287165696,3287165951,DE 3287165952,3287166207,SA 3287166208,3287167487,DE 3287167488,3287167743,SA 3287167744,3287168767,DE 3287168768,3287169279,SA 3287169280,3287169535,DE 3287169536,3287169791,SA 3287169792,3287171071,DE 3287171072,3287171583,LT 3287171584,3287172095,PL 3287172608,3287173119,PL 3287173120,3287173631,RU 3287173632,3287174143,NL 3287174144,3287174655,SE 3287175168,3287176191,RO 3287176192,3287176703,BG 3287176704,3287177215,NL 3287177216,3287178239,RO 3287178240,3287178751,UA 3287179264,3287180287,FR 3287180288,3287181311,RU 3287181312,3287182335,UZ 3287182336,3287185407,UA 3287187456,3287196671,DE 3287196672,3287198719,PL 3287198720,3287199743,GB 3287199744,3287201791,UA 3287201792,3287202815,PL 3287202816,3287203839,UA 3287203840,3287212031,FI 3287212032,3287212543,DE 3287212544,3287212799,FR 3287212800,3287213311,PL 3287213312,3287213567,FR 3287213568,3287213823,RU 3287214080,3287214335,GB 3287214336,3287214591,DE 3287214592,3287214847,NO 3287214848,3287215103,IT 3287215104,3287215359,PL 3287215360,3287215615,GB 3287215616,3287215871,DE 3287215872,3287216127,RU 3287216128,3287216639,GB 3287217152,3287217407,NL 3287217408,3287217663,PL 3287217664,3287217919,RU 3287218432,3287218687,GB 3287218688,3287218943,RU 3287218944,3287219199,FR 3287219456,3287219711,CH 3287219712,3287220223,SE 3287220224,3287285759,RU 3287285760,3287416831,NL 3287416832,3287425023,RU 3287425024,3287433215,SE 3287433216,3287433727,PL 3287433728,3287434239,DE 3287434240,3287434751,PL 3287434752,3287435263,GB 3287435264,3287435775,NL 3287436288,3287436799,RS 3287436800,3287437311,RO 3287437312,3287437823,UA 3287437824,3287438335,RU 3287438336,3287438847,CH 3287438848,3287439359,GB 3287439360,3287439871,RO 3287439872,3287440895,PL 3287440896,3287441407,UA 3287441408,3287442431,NL 3287443456,3287443967,DE 3287443968,3287444479,BG 3287444480,3287444991,PL 3287445504,3287446527,UA 3287446528,3287447039,PL 3287447552,3287448063,DK 3287448064,3287448575,GB 3287448576,3287449087,PL 3287449088,3287449599,BG 3287449600,3287450111,PL 3287450112,3287450623,DK 3287450624,3287451135,SE 3287451136,3287451647,PL 3287451648,3287452159,ES 3287452160,3287452671,PL 3287452672,3287453183,CH 3287453184,3287454207,RU 3287454208,3287454719,SE 3287455232,3287455743,UA 3287455744,3287456255,NL 3287456256,3287457279,GB 3287457280,3287457791,RO 3287457792,3287458047,NL 3287458048,3287458303,UA 3287458304,3287458559,DE 3287458560,3287459327,CH 3287459328,3287459583,AT 3287459584,3287459839,DE 3287459840,3287460095,AT 3287460096,3287460351,ME 3287460352,3287460607,CY 3287460608,3287460863,NL 3287460864,3287461119,BE 3287461120,3287461375,DE 3287461376,3287461631,CH 3287461632,3287461887,AT 3287461888,3287462143,PL 3287462400,3287462655,BE 3287462656,3287462911,UA 3287462912,3287463167,FR 3287463168,3287463423,IT 3287463680,3287463935,PL 3287463936,3287464191,AT 3287464192,3287464447,SK 3287464448,3287464703,PL 3287464960,3287465215,SA 3287465216,3287465471,SE 3287465472,3287465727,DE 3287465728,3287465983,FR 3287465984,3287467007,DK 3287467008,3287468031,SA 3287468032,3287469055,UA 3287469056,3287470079,DE 3287471104,3287472127,GB 3287472128,3287472639,RU 3287472640,3287473151,UA 3287473152,3287474175,GB 3287474176,3287476223,DE 3287476224,3287477247,PL 3287477248,3287478271,GB 3287479296,3287480319,RO 3287480320,3287481343,AT 3287481344,3287482367,PL 3287482368,3287548415,DE 3287548928,3287549439,UA 3287549440,3287549951,SE 3287549952,3287550463,UA 3287550464,3287550975,DE 3287550976,3287551487,LT 3287552000,3287552511,GB 3287553024,3287553535,FR 3287553536,3287554047,IL 3287554048,3287554559,RU 3287554560,3287555071,PL 3287555072,3287555583,GB 3287555584,3287556095,FR 3287556096,3287564287,TR 3287564288,3287572479,FI 3287572480,3287580671,DE 3287580672,3287588863,LV 3287588864,3287597055,BE 3287597056,3287605247,GI 3287605248,3287630335,DE 3287630336,3287631359,PL 3287631360,3287631871,IR 3287631872,3287632383,RU 3287632384,3287632895,SE 3287632896,3287633407,RU 3287633408,3287633919,SK 3287633920,3287634431,UA 3287634432,3287634943,RO 3287634944,3287635455,PL 3287635456,3287635967,DE 3287636480,3287636991,IE 3287636992,3287637503,AT 3287637504,3287638015,PL 3287639040,3287639551,GB 3287640064,3287640575,PL 3287640576,3287641087,SI 3287642112,3287642623,NL 3287642624,3287643135,BE 3287643136,3287643647,IT 3287643648,3287644671,UA 3287644672,3287645183,NL 3287646208,3287662591,PT 3287662592,3287662847,DE 3287662848,3287663103,DK 3287663104,3287663359,LV 3287663616,3287663871,NL 3287663872,3287664127,PT 3287664128,3287664383,PL 3287664384,3287664639,NL 3287664640,3287664895,UA 3287664896,3287665151,GB 3287665152,3287665407,NO 3287665408,3287665919,PL 3287665920,3287666431,RU 3287666688,3287666943,SI 3287666944,3287667199,CZ 3287667200,3287667455,DK 3287667456,3287667711,RU 3287667712,3287667967,ES 3287667968,3287668223,PL 3287668224,3287668479,RU 3287668480,3287668735,UA 3287668736,3287668991,SI 3287668992,3287669247,PL 3287669248,3287669503,LI 3287669504,3287669759,MD 3287669760,3287670015,RO 3287670016,3287670271,UA 3287670272,3287670527,PL 3287670528,3287670783,GB 3287670784,3287671039,PL 3287671040,3287671295,AT 3287671296,3287671551,PL 3287671552,3287671807,TR 3287671808,3287672063,CH 3287672320,3287672575,DE 3287672576,3287672831,NL 3287672832,3287673087,RU 3287673088,3287673343,SK 3287673344,3287673599,PT 3287673600,3287673855,GB 3287673856,3287674111,NL 3287674112,3287674367,CH 3287674880,3287675135,SE 3287675648,3287675903,DE 3287675904,3287676159,BE 3287676160,3287676415,DE 3287676672,3287676927,GB 3287676928,3287677183,ES 3287677184,3287677439,RU 3287677440,3287677695,SI 3287677696,3287677951,RO 3287677952,3287678207,GB 3287678208,3287678463,UA 3287678464,3287678719,DE 3287678720,3287678975,HR 3287678976,3287687167,SI 3287687168,3287695359,EG 3287695360,3287703551,CH 3287703552,3287704063,CZ 3287704064,3287704575,NL 3287704576,3287705087,LU 3287705088,3287705599,TJ 3287705600,3287706111,SA 3287706112,3287706623,RU 3287706624,3287707135,GB 3287707648,3287708159,BE 3287708160,3287709183,NL 3287709184,3287709695,RU 3287709696,3287710207,SE 3287710208,3287710719,RU 3287710720,3287711231,UA 3287711232,3287711743,PL 3287711744,3287719935,GB 3287719936,3287728127,DE 3287728128,3287729407,IT 3287729664,3287729919,DK 3287729920,3287730175,HU 3287732224,3287734271,IT 3287734272,3287734527,PL 3287734528,3287734783,UA 3287734784,3287735039,RU 3287735296,3287736319,IT 3287736320,3287736831,PL 3287736832,3287737343,LV 3287737344,3287737855,GB 3287737856,3287738367,FR 3287738368,3287738879,GB 3287738880,3287739391,DE 3287739392,3287739903,NL 3287739904,3287740415,PT 3287740416,3287740927,BG 3287740928,3287741439,RO 3287741440,3287741951,CH 3287742976,3287743487,RO 3287743488,3287743999,DE 3287744512,3287810047,DE 3287810048,3287818239,FR 3287818240,3287826431,AT 3287826432,3287826687,LV 3287826688,3287826943,RO 3287826944,3287827199,RU 3287827200,3287827455,DE 3287827456,3287827711,SI 3287827712,3287827967,RU 3287827968,3287828223,GB 3287828224,3287828479,DE 3287828480,3287828735,PL 3287828736,3287828991,AT 3287828992,3287829247,DE 3287829248,3287829503,GB 3287829504,3287829759,RO 3287829760,3287830015,NL 3287830016,3287830271,NO 3287830272,3287830527,RO 3287830528,3287830783,IE 3287830784,3287831039,GB 3287831040,3287831295,RU 3287831296,3287831551,CH 3287831808,3287832063,AT 3287832064,3287832319,FI 3287832320,3287832575,NL 3287832576,3287832831,PL 3287832832,3287833087,DE 3287833088,3287833343,GB 3287833344,3287833855,CH 3287833856,3287834111,UA 3287834112,3287834367,RU 3287834368,3287834623,HU 3287834624,3287842815,GB 3287842816,3287851007,DE 3287851008,3287859199,UA 3287859200,3287859455,GB 3287859456,3287859711,FK 3287859968,3287860479,GB 3287861248,3287862015,GB 3287863808,3287864063,GB 3287866384,3287866439,GB 3287866496,3287866591,GB 3287866608,3287866623,GB 3287867392,3287867903,UA 3287867904,3287868415,PL 3287868416,3287868927,RO 3287868928,3287869439,ES 3287869440,3287869951,RU 3287869952,3287870463,UA 3287870464,3287870975,RU 3287870976,3287871487,NL 3287873024,3287873535,PL 3287873536,3287874047,RU 3287874048,3287874559,FR 3287874560,3287875071,DE 3287875072,3287875583,PL 3287875584,3287941119,DK 3287941120,3287949311,IT 3287949312,3287949567,AT 3287949568,3287949823,IL 3287949824,3287950079,IT 3287950080,3287950335,DE 3287950336,3287950591,UA 3287950592,3287951103,PL 3287951104,3287951359,HU 3287951360,3287951615,FR 3287951616,3287951871,CH 3287951872,3287952127,RU 3287952128,3287952383,UA 3287952384,3287953151,CH 3287953152,3287953407,UA 3287953408,3287953663,DE 3287953664,3287953919,GB 3287953920,3287954175,DE 3287954176,3287954431,RU 3287954432,3287954687,CH 3287954688,3287954943,RO 3287954944,3287955199,PL 3287955456,3287955711,RU 3287955712,3287955967,DE 3287955968,3287956223,SI 3287956224,3287956479,RO 3287956480,3287956735,BG 3287956736,3287956991,SE 3287956992,3287957247,UA 3287957504,3287965695,AM 3287965696,3287973887,RS 3287973888,3287982079,CZ 3287982080,3287990271,EE 3287990272,3287996415,SI 3287996416,3287998463,BA 3287998464,3288006655,IT 3288006656,3288072191,GR 3288072192,3288088575,SE 3288088576,3288104959,RS 3288104960,3288236031,DE 3288236032,3288236543,LI 3288236544,3288237055,FR 3288237056,3288238591,RO 3288238592,3288239103,PL 3288239104,3288239615,RO 3288240128,3288240639,CH 3288240640,3288241151,FR 3288241152,3288241663,ES 3288241664,3288242175,UA 3288242176,3288242687,RO 3288243200,3288243711,PL 3288243712,3288244735,FR 3288244736,3288245247,DE 3288245248,3288245759,GB 3288245760,3288246271,RO 3288246272,3288246783,DK 3288246784,3288247295,KW 3288247296,3288247807,NO 3288247808,3288248831,PL 3288248832,3288249855,GB 3288249856,3288250367,RO 3288250368,3288250879,PL 3288251392,3288251903,RU 3288251904,3288252415,AT 3288252416,3288260607,NO 3288260608,3288268799,IT 3288268800,3288334335,FI 3288334336,3288399871,UG 3288399872,3288400127,MU 3288400128,3288400383,IN 3288400384,3288400639,PR 3288400640,3288400895,SA 3288400896,3288401151,KE 3288401152,3288401407,RU 3288401408,3288401663,SA 3288401664,3288401919,MU 3288401920,3288403711,ZA 3288403712,3288403967,AO 3288403968,3288406527,ZA 3288406528,3288407039,KE 3288407040,3288408063,NA 3288408064,3288413183,ZA 3288413184,3288414207,TZ 3288414208,3288416255,ZA 3288416256,3288417279,SA 3288417280,3288417535,IN 3288417536,3288418047,KW 3288418048,3288418303,ZA 3288418304,3288418815,US 3288418816,3288423423,ZA 3288423424,3288425727,SN 3288425728,3288426495,ZA 3288426496,3288427263,IN 3288427264,3288427519,BM 3288427520,3288428543,IN 3288428544,3288428799,CU 3288428800,3288429311,IN 3288429312,3288429567,ZA 3288430080,3288430335,GH 3288430336,3288430591,EG 3288430592,3288432639,SC 3288432640,3288433407,ZA 3288433408,3288433919,KE 3288433920,3288434175,NG 3288434176,3288434431,IN 3288434432,3288434687,CU 3288434688,3288434943,JM 3288434944,3288435199,CD 3288435200,3288435711,JM 3288435712,3288435967,US 3288435968,3288436223,PR 3288436224,3288436479,US 3288436480,3288436735,EG 3288436736,3288440831,ZA 3288440832,3288441343,VC 3288441344,3288442879,BB 3288442880,3288443135,KN 3288443136,3288443647,VC 3288443648,3288444927,BB 3288444928,3288449023,NG 3288449024,3288465407,SD 3288465408,3288465919,JM 3288465920,3288466175,BW 3288466176,3288466431,MU 3288466432,3288467455,SY 3288467456,3288469503,BI 3288469504,3288481791,ZA 3288481792,3288482303,ZW 3288482304,3288485631,ZA 3288485632,3288485887,ZW 3288485888,3288489983,MA 3288489984,3288514559,ZA 3288514560,3288522751,EG 3288522752,3288530943,ZA 3288530944,3288532991,JM 3288532992,3288534527,PR 3288534528,3288535039,EG 3288535040,3288539135,CW 3288539136,3288543743,US 3288543744,3288543996,CH 3288543997,3288543997,US 3288543998,3288543999,CH 3288544000,3288544767,US 3288544768,3288545023,MX 3288545024,3288545279,FR 3288545280,3288545535,AU 3288545536,3288545791,ZA 3288545792,3288546303,KE 3288546304,3288547327,NG 3288547328,3288547583,GH 3288547584,3288547839,IN 3288547840,3288548095,SA 3288548096,3288549375,AE 3288549376,3288549631,PK 3288549632,3288549887,GD 3288549888,3288553983,DO 3288553984,3288554239,CM 3288554240,3288554495,IR 3288554496,3288555007,ZA 3288555008,3288555263,NA 3288555264,3288555519,JM 3288555520,3288557567,MZ 3288557568,3288557823,JM 3288557824,3288558079,ZA 3288558080,3288558335,DO 3288558336,3288558847,ZA 3288558848,3288559103,MU 3288559104,3288564735,ZA 3288564736,3288568831,TT 3288568832,3288569855,ZA 3288569856,3288570111,CU 3288570112,3288570367,JM 3288570368,3288577023,ZA 3288578048,3288580095,JM 3288580096,3288588287,BB 3288588288,3288608255,ZA 3288608256,3288608264,US 3288608265,3288608265,DE 3288608266,3288614655,US 3288614656,3288616959,ZA 3288616960,3288617215,ZW 3288617216,3288661759,ZA 3288661760,3288662015,LS 3288662016,3288753919,ZA 3288753920,3288754175,NG 3288758272,3288758527,EG 3288758528,3288772607,ZA 3288774656,3288774911,ZA 3288774912,3288775167,EG 3288775168,3288777727,NG 3288777728,3288778239,TZ 3288778240,3288778495,ZA 3288778496,3288778751,MU 3288778752,3288779007,EG 3288779008,3288779263,ZA 3288779264,3288779775,KE 3288779776,3288780799,NG 3288780800,3288782591,ZA 3288782592,3288782847,KE 3288782848,3288783359,NG 3288783360,3288784127,KE 3288784128,3288785407,ZA 3288787968,3288788223,EG 3288788224,3288792831,ZA 3288792832,3288793087,AO 3288793088,3289002751,ZA 3289002752,3289003007,AO 3289003008,3289004031,ZA 3289004032,3289005055,NG 3289005056,3289005311,TZ 3289005312,3289014527,ZA 3289014528,3289014783,EG 3289014784,3289015295,ZA 3289015296,3289015551,CM 3289015552,3289020159,ZA 3289020160,3289020415,UG 3289020416,3289020671,EG 3289020672,3289020927,ZA 3289020928,3289021439,CI 3289021440,3289024767,ZA 3289024768,3289025023,GH 3289025024,3289025535,UG 3289025536,3289027327,ZA 3289027328,3289027583,TZ 3289027584,3289027839,MZ 3289027840,3289041407,ZA 3289041408,3289041663,NG 3289041664,3289044735,ZA 3289044736,3289044991,GH 3289044992,3289047039,ML 3289047040,3289048063,ZA 3289048064,3289048319,UG 3289048320,3289048831,ZA 3289048832,3289049087,NG 3289049088,3289053951,ZA 3289053952,3289055231,NG 3289055232,3289071103,ZA 3289071104,3289071359,SO 3289071360,3289074431,ZA 3289074432,3289074687,DZ 3289074688,3289075711,ZA 3289075712,3289077759,MW 3289077760,3289078271,KE 3289078272,3289078527,GH 3289078528,3289081599,ZA 3289081856,3289082111,NG 3289082112,3289086975,ZA 3289086976,3289087231,SZ 3289087232,3289089791,ZA 3289089792,3289090047,MZ 3289090048,3289093631,ZA 3289093632,3289094143,NG 3289096192,3289100031,ZA 3289100032,3289100287,LS 3289102336,3289103359,NG 3289103360,3289103615,ZA 3289103616,3289103871,AO 3289103872,3289104383,KE 3289104384,3289107967,ZA 3289107968,3289108479,GH 3289108480,3289114367,ZA 3289114368,3289114623,NG 3289114624,3289115135,ZA 3289115136,3289115391,AO 3289115392,3289120511,ZA 3289120512,3289120767,TZ 3289120768,3289123327,PR 3289123328,3289123583,NA 3289123584,3289123839,EG 3289123840,3289124863,ZM 3289124864,3289128959,ZA 3289128960,3289137151,IN 3289137152,3289153535,BM 3289153536,3289156607,MU 3289156608,3289158655,RW 3289158656,3289159935,MU 3289159936,3289160191,RW 3289160192,3289161727,MU 3289161728,3289163263,PR 3289163264,3289163519,US 3289163520,3289169919,PR 3289169920,3289186303,MA 3289186304,3289212159,ZA 3289212160,3289212415,MZ 3289212416,3289212927,NG 3289212928,3289213183,ZM 3289213184,3289213439,TZ 3289213440,3289213951,ZA 3289213952,3289214207,MA 3289214208,3289214463,AO 3289214464,3289214719,CD 3289214720,3289215231,NG 3289215232,3289217279,ZA 3289217280,3289217535,KE 3289217536,3289217791,UG 3289217792,3289218047,GH 3289218048,3289218303,ZA 3289218304,3289218559,MU 3289218560,3289220351,ZA 3289220352,3289220607,TZ 3289220608,3289221119,ZA 3289221120,3289221631,KE 3289221632,3289227519,ZA 3289227520,3289227775,NG 3289227776,3289229311,ZA 3289229312,3289229567,SZ 3289229568,3289230591,ZA 3289230592,3289230847,KE 3289230848,3289231359,GH 3289231360,3289233919,ZA 3289233920,3289234175,TZ 3289234176,3289235199,ZA 3289235200,3289235455,KE 3289235456,3289237503,GH 3289237504,3289238015,ZA 3289238528,3289238783,AO 3289238784,3289239039,ZA 3289239040,3289239295,EG 3289239296,3289239551,BF 3289239552,3289239807,SC 3289239808,3289240063,KE 3289240064,3289243391,ZA 3289243392,3289243647,BI 3289243648,3289248255,ZA 3289248256,3289248511,NG 3289248512,3289248767,AO 3289248768,3289249023,EG 3289249024,3289249279,NG 3289249280,3289250815,ZA 3289250816,3289251071,GH 3289251072,3289251327,EG 3289251328,3289251583,ZA 3289251584,3289251839,KE 3289251840,3289321471,ZA 3289321472,3289325567,IN 3289325568,3289333759,SA 3289333760,3289391103,ZA 3289391104,3289440255,SC 3289440256,3289448447,ZA 3289448448,3289645055,SC 3289645056,3289653247,NA 3289653248,3289661439,EG 3289661440,3289677823,DZ 3289677824,3289710591,MU 3289710592,3289777407,ZA 3289777408,3289777663,EG 3289777664,3289777919,NG 3289777920,3289778175,EG 3289778176,3289779199,CD 3289779200,3289780223,GW 3289780224,3289788415,ZA 3289788416,3289792511,MZ 3289792512,3289809407,ZA 3289809408,3289809663,EG 3289809664,3289809919,KE 3289809920,3289812991,ZA 3289812992,3289817087,MU 3289817088,3289907199,ZA 3289907200,3289908223,LS 3289908224,3289923583,ZA 3289923584,3289924607,SZ 3289924608,3290031103,ZA 3290031104,3290031359,LS 3290031360,3290060287,ZA 3290060288,3290060543,SZ 3290060544,3290103807,ZA 3290103808,3290110335,CA 3290110336,3290110367,US 3290110368,3290120191,CA 3290120192,3290128383,MU 3290128384,3290136575,ZW 3290136576,3290169343,NG 3290169344,3290171135,ZA 3290171136,3290171391,SZ 3290171392,3290172159,ZA 3290172160,3290172415,KE 3290172416,3290181631,ZA 3290181632,3290181887,US 3290181888,3290182911,PR 3290182912,3290183167,US 3290183168,3290183423,PR 3290183424,3290183679,US 3290183680,3290184959,PR 3290184960,3290185215,US 3290185216,3290185727,PR 3290185728,3290226687,ZA 3290226688,3290230783,MZ 3290230784,3290234879,BF 3290234880,3290243071,ZA 3290243072,3290245119,ZW 3290245120,3290246143,DZ 3290246144,3290247167,NG 3290247168,3290249215,TZ 3290249216,3290251263,ZA 3290251264,3290259455,TT 3290259456,3290267647,GH 3290267648,3290275839,ZA 3290275840,3290284031,SD 3290284032,3290288127,AO 3290288128,3290292223,NG 3290292224,3290296319,GH 3290296320,3290423295,ZA 3290423296,3290427391,NA 3290427392,3290431487,ZA 3290431488,3290433535,JM 3290433536,3290435583,ZA 3290435584,3290439679,DZ 3290439680,3290447871,TT 3290447872,3290456063,AR 3290456064,3290460159,MZ 3290460160,3290464255,ML 3290464256,3290472447,PR 3290472448,3290480639,ZA 3290480640,3290482687,AO 3290482688,3290484735,CF 3290484736,3290486783,ZA 3290488832,3290489343,NG 3290489344,3290489855,KE 3290489856,3290490367,EG 3290490368,3290492927,ZA 3290492928,3290494975,TZ 3290497024,3290718975,ZA 3290718976,3290719231,SZ 3290719232,3290955775,ZA 3290955776,3290980351,CR 3290980352,3290984447,ZA 3290984448,3290988543,MZ 3290988544,3290992639,KE 3290992640,3290996735,GH 3290996736,3291000831,NG 3291000832,3291004927,ZA 3291004928,3291021311,NG 3291021312,3291029503,ZA 3291029504,3291037695,TZ 3291045888,3291078655,ZA 3291078656,3291086847,DZ 3291086848,3291103231,PR 3291103232,3291123711,ZA 3291123712,3291135999,BG 3291136000,3291140095,ZA 3291140096,3291144191,BG 3291144192,3291148287,ZA 3291148288,3291152383,BG 3291152384,3291168767,ZA 3291168768,3291176959,TZ 3291176960,3291185151,ZW 3291185152,3291201535,UG 3291201536,3291201791,KE 3291201792,3291202047,ZM 3291202048,3291202303,GH 3291202304,3291202559,ZA 3291202560,3291202815,GH 3291202816,3291203071,AO 3291203072,3291203327,EG 3291203328,3291203583,ZW 3291203584,3291203839,ZA 3291203840,3291204095,EG 3291204096,3291204351,KE 3291204352,3291204863,ZA 3291204864,3291205119,KE 3291205120,3291205631,GH 3291205632,3291206143,ZA 3291206144,3291206399,AO 3291206400,3291206911,KE 3291206912,3291207167,ZA 3291207168,3291207423,MG 3291207424,3291207679,NG 3291207680,3291207935,BW 3291207936,3291208447,KE 3291208448,3291208703,EG 3291208704,3291208959,KE 3291208960,3291209215,TZ 3291209216,3291209471,KE 3291209472,3291209727,AO 3291209728,3291209983,NG 3291209984,3291210239,GH 3291210240,3291210495,UG 3291210496,3291210751,ZA 3291210752,3291211007,KE 3291211008,3291211263,SL 3291211264,3291211519,TZ 3291211520,3291211775,ZA 3291211776,3291212287,NG 3291212288,3291212543,MZ 3291212544,3291212799,NG 3291212800,3291213055,MA 3291213056,3291213311,EG 3291213312,3291213567,NG 3291213568,3291213823,KE 3291213824,3291214079,CG 3291214080,3291214335,MZ 3291214336,3291214591,GH 3291214592,3291214847,ZA 3291214848,3291215103,NG 3291215104,3291215615,KE 3291215616,3291215871,BF 3291215872,3291216127,KE 3291216128,3291216383,LS 3291216384,3291216639,ZA 3291216640,3291217151,NG 3291217152,3291217407,ZA 3291217408,3291217919,TZ 3291217920,3291230207,ZA 3291230208,3291234303,GH 3291234304,3291242495,ZA 3291242496,3291250687,GH 3291250688,3291258879,NA 3291258880,3291262975,TZ 3291262976,3291267071,ZW 3291267072,3291279359,ZA 3291279360,3291283455,RW 3291283456,3291287551,NA 3291287552,3291291647,ZA 3291291648,3291295743,TZ 3291295744,3291299839,NG 3291299840,3291313151,ZA 3291313152,3291314175,NG 3291314176,3291315199,ZA 3291315200,3291316223,UG 3291316224,3291324415,TZ 3291324416,3291325439,AO 3291325440,3291326463,BW 3291326464,3291330559,ZA 3291330560,3291331583,TZ 3291331584,3291332607,MW 3291332608,3291348991,ZA 3291348992,3291353087,MZ 3291353088,3291353343,KE 3291353344,3291353599,EG 3291353600,3291354111,ZM 3291354112,3291354367,NG 3291354368,3291354623,AO 3291354624,3291354879,EG 3291354880,3291355135,ZA 3291355136,3291355391,EG 3291355392,3291355647,ZA 3291355648,3291355903,EG 3291355904,3291356159,NG 3291356160,3291356415,NA 3291356416,3291356671,EG 3291356672,3291357183,ZA 3291357184,3291365375,MU 3291365376,3291367423,ZA 3291367424,3291369471,AO 3291369472,3291373567,GH 3291373568,3291377663,TZ 3291377664,3291378687,CD 3291378688,3291379711,ZA 3291379712,3291380735,TZ 3291380736,3291381759,ZM 3291381760,3291383807,TZ 3291383808,3291385855,ZA 3291385856,3291386879,NG 3291386880,3291387903,SC 3291387904,3291388927,BJ 3291388928,3291389951,GA 3291389952,3291397119,ZA 3291397120,3291398143,EG 3291398144,3291406335,ZM 3291406336,3291408383,ZA 3291408384,3291410431,GM 3291410432,3291412479,NG 3291412480,3291414527,DZ 3291414528,3291426815,ZA 3291426816,3291430911,NA 3291430912,3291432703,ZA 3291432704,3291432959,NA 3291432960,3291439103,ZA 3291439104,3291447295,NG 3291447296,3291463679,CI 3291463680,3291480063,ZA 3291480064,3291488255,DE 3291488256,3291496447,SC 3291496448,3291512831,US 3291512832,3291529215,SC 3291529216,3291545599,US 3291545600,3291545855,CI 3291545856,3291546111,GM 3291546112,3291546367,NA 3291546368,3291546623,BI 3291546624,3291546879,SZ 3291546880,3291547135,TZ 3291547136,3291547391,AO 3291547392,3291547647,RW 3291547648,3291547903,BJ 3291547904,3291548159,MU 3291548160,3291548415,DJ 3291548416,3291548671,SC 3291548672,3291548927,TZ 3291548928,3291549183,MG 3291549184,3291549439,GH 3291549440,3291549695,UG 3291549696,3291549951,LR 3291549952,3291550207,GA 3291611136,3291611647,ZA 3291742208,3292004351,US 3292004352,3292266495,SC 3292397568,3292463103,US 3292463104,3292528639,ZA 3296722944,3298820095,EG 3299606528,3299868671,GH 3299868672,3300130815,TN 3300130816,3300392959,CI 3300392960,3300655103,TN 3300655104,3300917247,ET 3300917248,3300921343,MU 3300921344,3300925439,BJ 3300925440,3300929535,MG 3300933632,3300935679,MU 3300937728,3300938751,MU 3300941824,3300950015,MU 3300953088,3300954111,MU 3300954112,3300958207,NG 3300958208,3301113855,ZA 3301113856,3301138431,NG 3301138432,3301140479,ZA 3301140480,3301146623,NG 3301146624,3301171199,ZA 3301171200,3301172223,IN 3301172224,3301175295,ZA 3301175296,3301179391,AF 3301179392,3301181439,SC 3301181440,3301185535,US 3301185536,3301187583,GB 3301187584,3301189631,FR 3301189632,3301191679,US 3301191680,3301193727,CA 3301193728,3301195775,JP 3301195776,3301197823,DE 3301197824,3301199871,GB 3301199872,3301201919,US 3301201920,3301203967,NL 3301203968,3301204991,DK 3301204992,3301205247,SE 3301205248,3301206015,DK 3301206016,3301208063,SC 3301208064,3301214207,US 3301214208,3301216255,SE 3301216256,3301220351,SC 3301220352,3301222399,SE 3301222400,3301224447,BE 3301224448,3301226495,SC 3301226496,3301228543,US 3301228544,3301230591,IE 3301230592,3301232639,FI 3301232640,3301236735,SC 3301236736,3301238783,CA 3301238784,3301240831,US 3301240832,3301242879,SE 3301242880,3301244927,SC 3301244928,3301246975,SE 3301246976,3301311487,SC 3301311488,3301313535,SE 3301313536,3301314559,SC 3301314560,3301315583,SE 3301315584,3301318655,SC 3301318656,3301375999,SE 3301376000,3301441535,SC 3301441536,3301445631,ZA 3301445632,3301453823,KE 3301453824,3301457919,ML 3301457920,3301462015,NG 3301462016,3301466111,ML 3301466112,3301470207,ER 3301470208,3301474303,NG 3301474304,3301490687,MA 3301490688,3301494783,ZA 3301494784,3301498879,ZM 3301502976,3301507071,MA 3301507328,3301507583,MU 3301507584,3301507839,GH 3301507840,3301508095,EG 3301508608,3301509119,ZA 3301510144,3301511167,MW 3301511168,3301512191,ZW 3301512192,3301513215,MU 3301513216,3301515263,EG 3301515264,3301523455,GH 3301523456,3301531647,CI 3301539840,3301544191,KE 3301544192,3301544959,DE 3301544960,3301548031,KE 3301548032,3301556223,GH 3301556224,3301557759,DJ 3301557760,3301558015,US 3301558016,3301560319,DJ 3301560320,3301565695,KE 3301565696,3301566463,MU 3301568512,3301570559,EG 3301570560,3301572607,KE 3301572608,3301605375,EG 3301605376,3301613567,SD 3301613568,3301629951,KE 3301632000,3301634047,CM 3301634048,3301636095,LS 3301636096,3301637119,ZA 3301637120,3301638143,AO 3301638144,3301703679,TN 3301703680,3301834751,EG 3301834752,3301900287,MA 3301900288,3301904383,NG 3301904384,3301908479,KE 3301908480,3301912575,ZA 3301912576,3301916671,MU 3301916672,3301933055,IN 3301933056,3301949439,KE 3301949440,3301965823,SN 3301965824,3302490111,ZA 3302490112,3302490367,KE 3302490368,3302490623,US 3302490624,3302491135,MU 3302491136,3302492159,NG 3302492160,3302494207,MW 3302494208,3302496255,ZA 3302496256,3302498303,EG 3302498304,3302502399,NA 3302502400,3302505471,AO 3302505472,3302506495,NA 3302506496,3302514687,KE 3302514688,3302522879,ZA 3302522880,3302523903,KE 3302523904,3302525951,ZA 3302525952,3302526975,EG 3302526976,3302529023,NG 3302529024,3302530047,ZA 3302530048,3302531071,TN 3302531072,3302531327,CF 3302531328,3302531583,AO 3302531584,3302531839,TZ 3302531840,3302532095,BW 3302532096,3302533119,NA 3302533120,3302533631,MU 3302533632,3302533887,ZA 3302533888,3302534143,MU 3302534144,3302535167,ZA 3302535168,3302536191,UG 3302536192,3302537215,GH 3302537216,3302538239,NG 3302538240,3302539263,GH 3302539264,3302540287,ZA 3302540288,3302540799,UG 3302540800,3302541311,AO 3302541312,3302542335,NG 3302542336,3302542847,ZA 3302542848,3302543103,EG 3302543104,3302543359,NA 3302543360,3302544383,NG 3302544384,3302544639,CM 3302544640,3302544895,MU 3302544896,3302545151,GH 3302545152,3302545407,ZA 3302545408,3302545919,CD 3302545920,3302546431,TZ 3302546432,3302546943,SL 3302546944,3302547455,KE 3302548480,3302548991,GH 3302548992,3302549503,ZA 3302549504,3302550015,KE 3302550016,3302550527,TZ 3302550528,3302551039,ZA 3302551040,3302551551,MU 3302551552,3302552063,EG 3302552064,3302552575,KE 3302552832,3302553087,KE 3302553088,3302553343,EG 3302553344,3302553599,TZ 3302553600,3302554111,AO 3302554112,3302554367,ZA 3302554368,3302554623,NG 3302554624,3302554879,EG 3302554880,3302555135,NG 3302555392,3302555647,NG 3302555648,3302621183,MA 3302621184,3302684671,EG 3302684672,3302686719,JO 3302686720,3302750207,EG 3302750208,3302752255,JO 3302752256,3302760447,NG 3302760448,3302762495,ZA 3302762496,3302766591,US 3302766592,3302768639,ZA 3302768640,3302776831,NG 3302776832,3302785023,ZW 3302785024,3302793215,NG 3302793216,3302801407,ZA 3302801408,3302805503,NG 3302805504,3302809599,MW 3302809600,3302817791,NG 3302817792,3302883327,EG 3302883328,3302948863,NG 3302948864,3302949119,MU 3302949120,3302949375,AO 3302949376,3302949631,ZM 3302949632,3302949887,BI 3302949888,3302950143,CI 3302950144,3302950655,TZ 3302950656,3302950911,EG 3302950912,3302951423,ZA 3302951424,3302951679,SL 3302951680,3302951935,KE 3302951936,3302952191,RW 3302952192,3302952447,AO 3302952448,3302952959,ZA 3302952960,3302953471,EG 3302953472,3302953727,NA 3302953728,3302953983,AO 3302953984,3302954239,SD 3302954240,3302954495,KE 3302954496,3302955007,ZA 3302955008,3302955263,LS 3302955264,3302955519,UG 3302955520,3302955775,ZW 3302955776,3302956031,MW 3302956032,3302956287,CD 3302956544,3302957055,ZA 3302957056,3302957311,CG 3302957312,3302957567,MZ 3302957568,3302957823,GM 3302957824,3302958079,NA 3302958080,3302958335,BI 3302958336,3302958591,SZ 3302958592,3302958847,DJ 3302958848,3302959103,GA 3302959104,3302959359,BJ 3302959360,3302959615,MG 3302959616,3302959871,TD 3302959872,3302960127,SC 3302960128,3302960383,LR 3302985728,3302987775,DJ 3303014400,3304062975,TN 3304062976,3304456191,SC 3304456192,3304521727,NG 3304521728,3304587263,SC 3304587264,3304718335,ZA 3304849408,3305111551,ZA 3305111552,3307208703,TN 3307208704,3309305855,EG 3309305856,3312451583,ZA 3312451584,3312975871,DZ 3312975872,3313500159,EG 3313500160,3313762303,MA 3313762304,3314024447,EG 3314024448,3314286591,KE 3314286592,3314548735,DZ 3314548736,3314750463,MA 3314750464,3314751487,US 3314751488,3314810879,MA 3314810880,3314827263,AO 3314827264,3314829311,ZA 3314829312,3314831359,GM 3314831360,3314833407,NG 3314833408,3314835455,AO 3314835456,3314843647,TG 3314843648,3314860031,MG 3314860032,3314868223,CI 3314868224,3314876415,GH 3314876416,3314892799,MG 3314892800,3314909183,NG 3314909184,3314910207,TD 3314910208,3314911231,NG 3314911232,3314912255,CG 3314912256,3314913279,BI 3314913280,3314914303,ZA 3314914304,3314915327,AO 3314915328,3314916351,MW 3314916352,3314917375,MZ 3314917376,3314918399,ZA 3314918400,3314919423,NG 3314919424,3314920447,GQ 3314920448,3314921471,ZA 3314921472,3314922495,TZ 3314922496,3314923519,ZA 3314923520,3314924543,CD 3314924544,3314925567,NG 3314925568,3314941951,GN 3314941952,3315073023,EG 3315073024,3315138559,TZ 3315138560,3315204095,MA 3315204096,3315269631,ET 3315269632,3315286015,ZA 3315286016,3315287807,MU 3315287808,3315288319,KE 3315288320,3315288413,MU 3315288414,3315288414,KE 3315288415,3315289343,MU 3315289344,3315289599,KE 3315289600,3315291135,MU 3315291136,3315293183,KE 3315293184,3315294207,MU 3315294208,3315302399,ZA 3315302400,3315318783,ML 3315318784,3315322879,LS 3315322880,3315326975,ZA 3315326976,3315331071,ZW 3315331072,3315333119,GH 3315333120,3315351551,ZA 3315351552,3315367935,ET 3315367936,3315384319,KE 3315384320,3315400703,NG 3315400704,3315417087,UG 3315417088,3315425279,ZA 3315425280,3315433471,SC 3315433472,3315449855,RW 3315449856,3315450879,BI 3315450880,3315451903,AO 3315451904,3315452927,LS 3315452928,3315453951,ZW 3315453952,3315454975,CD 3315454976,3315455999,RW 3315456000,3315457023,NG 3315457024,3315458047,ZA 3315458048,3315459071,SL 3315459072,3315460095,KE 3315460096,3315461119,SL 3315461120,3315462143,TZ 3315462144,3315463167,ZA 3315463168,3315464191,SO 3315464192,3315465215,CD 3315465216,3315466239,CG 3315466240,3315482623,MZ 3315482624,3315499007,MG 3315499008,3315515391,ZM 3315515392,3315531775,SC 3315531776,3315539967,CM 3315539968,3315548159,ZA 3315548160,3315552255,NG 3315552256,3315556351,GW 3315556352,3315560447,KE 3315560448,3315564543,TZ 3315564544,3315568639,GH 3315568640,3315572735,MG 3315572736,3315580927,ST 3315580928,3315589119,CI 3315589120,3315597311,CM 3315597312,3316121599,EG 3316121600,3316645887,ZA 3316645888,3317170175,KE 3317170176,3317301247,ZA 3317301248,3317432319,TZ 3317432320,3317497855,NA 3317497856,3317530623,CD 3317530624,3317547007,LS 3317547008,3317563391,ZA 3317563392,3317694463,GH 3317694464,3318218751,EG 3318218752,3318743039,DZ 3318743040,3318874111,SD 3318874112,3318939647,NG 3318939648,3318947839,KE 3318947840,3318956031,NG 3318956032,3318964223,ZA 3318964224,3318972415,MW 3318972416,3318988799,ZA 3318988800,3319005183,ZW 3319005184,3319136255,ZM 3319136256,3319152639,NE 3319152640,3319156735,GQ 3319156736,3319160831,GW 3319160832,3319164927,NG 3319164928,3319166975,ZA 3319166976,3319169023,ZW 3319169024,3319201791,CG 3319201792,3319234559,SL 3319234560,3319242751,LY 3319242752,3319250943,ZA 3319250944,3319255039,MG 3319255040,3319257087,ZA 3319257088,3319258111,LR 3319258112,3319259135,CD 3319259136,3319263231,ZA 3319263232,3319267327,TZ 3319267328,3319398399,AO 3319398400,3319529471,MZ 3319529472,3319537663,ZM 3319537664,3319545855,MW 3319545856,3319554047,SO 3319554048,3319562239,KE 3319562240,3319570431,LS 3319570432,3319578623,GH 3319578624,3319595007,ZM 3319595008,3319611391,ZA 3319611392,3319619583,GH 3319619584,3319627775,ZA 3319627776,3319635967,UG 3319635968,3319644159,ZA 3319644160,3319652351,TZ 3319652352,3319660543,ZW 3319660544,3319791615,EG 3319791616,3320053759,MU 3320053760,3320184831,ZA 3320184832,3320250367,MA 3320250368,3320258559,MR 3320258560,3320266751,LS 3320266752,3320283135,GA 3320283136,3320285183,GM 3320285184,3320287231,GA 3320287232,3320289279,ZA 3320289280,3320291327,LR 3320291328,3320295423,ZA 3320295424,3320297471,KE 3320297472,3320299519,MU 3320299520,3320300543,BW 3320300544,3320301567,ZA 3320301568,3320302591,SO 3320302592,3320303615,GM 3320303616,3320304639,SC 3320304640,3320305663,ZW 3320305664,3320306687,MZ 3320306688,3320307711,LR 3320307712,3320308735,CV 3320308736,3320309759,LY 3320309760,3320310783,ZA 3320310784,3320311807,SS 3320311808,3320312831,BJ 3320312832,3320313855,ZM 3320313856,3320314879,BI 3320314880,3320315903,CD 3320315904,3320381439,KE 3320381440,3320446975,NA 3320446976,3320451071,SC 3320451072,3320455167,ZA 3320455168,3320463359,NG 3320463360,3320479743,NA 3320479744,3320500223,ZA 3320500224,3320502271,BW 3320502272,3320504319,BJ 3320504320,3320505343,TZ 3320505344,3320506367,NG 3320506368,3320507391,ZA 3320507392,3320508415,KE 3320508416,3320509439,ZA 3320509440,3320510463,RW 3320510464,3320511487,LY 3320511488,3320512511,ZA 3320512512,3320578047,MZ 3320578048,3320643583,ZA 3320643584,3320709119,KE 3320709120,3320774655,ZA 3320774656,3320791039,UG 3320791040,3320807423,BF 3320807424,3320823807,ZA 3320823808,3320827903,KE 3320827904,3320831999,MU 3320832000,3320834047,KE 3320834048,3320840191,MU 3320840192,3320905727,NG 3320905728,3320938495,DJ 3320938496,3320971263,AO 3320971264,3320979455,GA 3320979456,3320985599,ZA 3320985600,3320985607,KE 3320985608,3320995839,ZA 3320995840,3321004031,NG 3321004032,3321008127,GM 3321008128,3321012223,ZA 3321012224,3321016319,MZ 3321016320,3321018367,CF 3321018368,3321020415,MU 3321020416,3321022463,TZ 3321022464,3321024511,ZA 3321024512,3321028607,KE 3321028608,3321032703,CI 3321032704,3321036799,NG 3321036800,3321069567,RW 3321069568,3321102335,NA 3321102336,3321167871,NG 3321167872,3321233407,ZA 3321233408,3321298943,EG 3321298944,3321364479,MA 3321364480,3321430015,KE 3321430016,3321495551,MZ 3321495552,3321561087,TZ 3321561088,3321593855,SD 3321593856,3321626623,GH 3321626624,3321692159,SD 3321692160,3321708543,NG 3321708544,3321724927,GH 3321724928,3321757695,MA 3321757696,3321790463,KE 3321790464,3321806847,LS 3321806848,3321823231,SD 3321823232,3321839615,NG 3321839616,3321855999,GH 3321856000,3321860095,CV 3321860096,3321864191,ZA 3321864192,3321868287,NG 3321868288,3321872383,CG 3321872384,3321876479,GM 3321876480,3321880575,NG 3321880576,3321884671,KM 3321884672,3321885695,ZA 3321885696,3321886719,NG 3321886720,3321887743,GA 3321887744,3321888767,NG 3321888768,3321968639,US 3321968640,3321970687,CA 3321970688,3322003455,US 3322003456,3322019839,CA 3322019840,3322023935,US 3322023936,3322028031,CL 3322028032,3322036223,US 3322036224,3322052607,CA 3322052608,3322202111,US 3322202112,3322203135,GB 3322203136,3322339583,US 3322339584,3322339839,GB 3322339840,3322354175,US 3322354176,3322354431,JP 3322354432,3322609663,US 3322609664,3322610687,SA 3322610688,3322683391,US 3322683392,3322691583,AR 3322691584,3322691839,US 3322691840,3322692095,SE 3322692096,3322698383,US 3322698384,3322698391,CA 3322698392,3322773759,US 3322773760,3322774783,CA 3322774784,3322775039,US 3322775040,3322776575,CA 3322776576,3322776831,US 3322776832,3322777599,CA 3322777600,3322777855,US 3322777856,3322778367,CA 3322778368,3322778623,US 3322778624,3322779903,CA 3322779904,3322780159,US 3322780160,3322780415,CA 3322780416,3322780671,US 3322780672,3322781695,CA 3322781696,3322782207,US 3322782208,3322782975,CA 3322782976,3322783231,US 3322783232,3322785791,CA 3322785792,3322786047,US 3322786048,3322787839,CA 3322787840,3322788095,US 3322788096,3322788351,CA 3322788352,3322788607,US 3322788608,3322789375,CA 3322789376,3322789631,US 3322789632,3322791167,CA 3322791168,3322791423,US 3322791424,3322791679,CA 3322791680,3322792191,US 3322792192,3322792703,CA 3322792704,3322793215,US 3322793216,3322793471,CA 3322793472,3322793983,US 3322793984,3322795007,CA 3322795008,3322795263,US 3322795264,3322796031,CA 3322796032,3322796287,US 3322796288,3322796543,CA 3322796544,3322796799,US 3322796800,3322799871,CA 3322799872,3322800127,US 3322800128,3322800895,CA 3322800896,3322801151,US 3322801152,3322801663,CA 3322801664,3322802431,US 3322802432,3322802943,CA 3322802944,3322803199,US 3322803200,3322803711,CA 3322803712,3322803967,US 3322803968,3322804479,CA 3322804480,3322804735,US 3322804736,3322805247,CA 3322805248,3322805503,US 3322805504,3322806015,CA 3322806016,3322875903,US 3322880000,3322888191,AU 3322888192,3322945535,US 3322945536,3322951679,CN 3322951680,3322970111,US 3322970112,3323002879,CA 3323002880,3323003135,US 3323003392,3323004671,US 3323004928,3323013887,US 3323013888,3323014143,CA 3323014144,3323017727,US 3323017728,3323017983,CA 3323017984,3323020799,US 3323020800,3323021055,SG 3323021056,3323022591,US 3323022592,3323022847,GB 3323022848,3323027455,US 3323027456,3323027711,CA 3323027712,3323030015,US 3323030272,3323031807,US 3323032576,3323032831,US 3323032832,3323033087,IT 3323033088,3323033343,JP 3323033344,3323033599,US 3323033600,3323034111,BR 3323034112,3323038719,US 3323038720,3323038975,CA 3323038976,3323048959,US 3323048960,3323049727,NL 3323049728,3323061247,US 3323061504,3323062015,US 3323062016,3323062527,BR 3323062528,3323064319,US 3323064832,3323068415,US 3323199488,3323201535,US 3323201536,3323203583,CA 3323203584,3323207679,US 3323207680,3323215871,CA 3323215872,3323224063,US 3323224064,3323232255,NL 3323232256,3323241727,US 3323241728,3323241983,CA 3323241984,3323244543,US 3323244544,3323244671,CA 3323244672,3323245319,US 3323245320,3323245327,CA 3323245328,3323245463,US 3323245464,3323245471,CA 3323245472,3323270420,US 3323270421,3323270421,CH 3323270422,3323331583,US 3323331584,3323331839,CA 3323331840,3323339263,US 3323339776,3323340031,CA 3323340288,3323342591,US 3323342592,3323342847,AU 3323343616,3323343871,DE 3323343872,3323346175,US 3323346176,3323346431,AU 3323346432,3323354111,US 3323354112,3323354367,GB 3323354368,3323355647,DE 3323355648,3323356671,US 3323356672,3323356927,CA 3323356928,3323378687,US 3323378688,3323378943,CA 3323378944,3323382783,US 3323382784,3323383295,CA 3323383296,3323391231,US 3323391232,3323391487,CA 3323391488,3323394559,US 3323394560,3323395071,CL 3323395072,3323416399,US 3323416400,3323416479,GB 3323416480,3323437823,US 3323437824,3323438079,CA 3323438080,3323461119,US 3323461120,3323461375,GB 3323461376,3323462911,US 3323462912,3323463167,BR 3323463168,3323477983,US 3323477984,3323478015,GB 3323478016,3323659263,US 3323659264,3323660543,NZ 3323660544,3323661311,US 3323661312,3323662335,CA 3323662336,3323674623,US 3323674624,3323678207,CA 3323678208,3323678463,US 3323678464,3323678523,CA 3323678524,3323678527,US 3323678528,3323678583,CA 3323678584,3323678587,US 3323678588,3323680327,CA 3323680328,3323680328,US 3323680329,3323680413,CA 3323680414,3323680414,US 3323680415,3323680511,CA 3323680512,3323681279,US 3323681280,3323682955,CA 3323682956,3323682959,US 3323682960,3323684863,CA 3323684864,3323685375,US 3323685376,3323685551,CA 3323685552,3323685555,BY 3323685556,3323685887,CA 3323685888,3323686399,US 3323686400,3323686911,CA 3323686912,3323687423,US 3323687424,3323687815,CA 3323687816,3323687819,US 3323687820,3323687935,CA 3323687936,3323687999,US 3323688000,3323688959,CA 3323688960,3323689199,US 3323689200,3323689215,CA 3323689216,3323689471,US 3323689472,3323690495,CA 3323690496,3323741439,US 3323741440,3323741695,GB 3323741696,3323747327,US 3323747328,3323747583,GB 3323747584,3323987967,US 3323987968,3323988223,KN 3323988224,3324031999,US 3324032000,3324032255,KN 3324032256,3324035583,US 3324035584,3324035839,KN 3324035840,3324036351,US 3324036352,3324036607,KN 3324036608,3324047359,US 3324047360,3324047615,KN 3324047616,3324051455,US 3324051456,3324182527,CA 3324182528,3324193279,US 3324193280,3324193791,CA 3324193792,3324255231,US 3324255232,3324256255,VI 3324256256,3324260095,SA 3324260096,3324277759,US 3324277760,3324278783,CA 3324278784,3324354559,US 3324354560,3324362751,CA 3324362752,3324379135,US 3324379136,3324380159,CA 3324380160,3324380927,US 3324380928,3324381183,CA 3324381184,3324470271,US 3324470272,3324474367,GB 3324474368,3324522495,US 3324522496,3324522751,CN 3324522752,3324523007,US 3324523008,3324523263,CN 3324523264,3324525311,US 3324525312,3324525567,CN 3324525568,3324526335,US 3324526336,3324526591,CN 3324526592,3324579839,US 3324582912,3324583935,CA 3324583936,3324587775,CL 3324587776,3324636159,US 3324636160,3324637183,NZ 3324637184,3324638207,US 3324638208,3324638719,IN 3324638720,3324642303,US 3324642304,3324642559,CA 3324642560,3324645887,US 3324645888,3324646143,CA 3324646144,3324647679,US 3324647680,3324647935,CA 3324647936,3324650495,US 3324650496,3324650751,CA 3324650752,3324653311,US 3324653312,3324653567,CA 3324653568,3324655871,US 3324655872,3324656127,CA 3324656128,3324659967,US 3324659968,3324660223,CA 3324660224,3324660479,US 3324660480,3324660735,CA 3324660736,3324662015,US 3324662016,3324662271,CA 3324662272,3324662527,US 3324662528,3324662783,CA 3324662784,3324664319,US 3324664320,3324664575,CA 3324664576,3324665855,US 3324665856,3324666367,CA 3324666368,3324668415,US 3324668416,3324668671,CA 3324668672,3324672767,US 3324672768,3324673023,CA 3324673024,3324674815,US 3324674816,3324675327,CA 3324675328,3324676351,US 3324676352,3324676863,CA 3324676864,3324678911,US 3324678912,3324679167,CA 3324679168,3324679423,US 3324679424,3324679935,CA 3324679936,3324681215,US 3324681216,3324681471,CA 3324681472,3324682495,US 3324682496,3324682751,CA 3324682752,3324684799,US 3324684800,3324685055,CA 3324685056,3324686335,US 3324686336,3324686591,CA 3324686592,3324690687,US 3324690688,3324690943,CA 3324690944,3324692991,US 3324692992,3324693247,CA 3324693248,3324693503,US 3324693504,3324693759,CA 3324693760,3324694527,US 3324694528,3324695039,CA 3324695040,3324695551,US 3324695552,3324695807,CA 3324695808,3324696063,US 3324696064,3324696575,CA 3324696576,3324696831,US 3324696832,3324697087,CA 3324697088,3324698623,US 3324698624,3324699135,CA 3324699136,3324699391,US 3324699392,3324699647,CA 3324699648,3324701183,US 3324701184,3324701695,CA 3324701696,3324701951,US 3324701952,3324702207,CA 3324702208,3324703999,US 3324704000,3324704255,CA 3324704256,3324706303,US 3324706304,3324706559,CA 3324706560,3324811047,US 3324811048,3324811055,AU 3324811056,3324943047,US 3324943048,3324943055,CA 3324943056,3324980223,US 3324980224,3324981247,CA 3324981248,3325034495,US 3325034496,3325035519,NZ 3325035520,3325067263,US 3325067264,3325100287,CA 3325100288,3325100543,US 3325101056,3325108223,US 3325110272,3325128703,US 3325128704,3325129215,TH 3325129216,3325131775,US 3325131776,3325132031,AU 3325132032,3325132799,US 3325132800,3325133823,CO 3325133824,3325134335,BR 3325134336,3325136127,US 3325136128,3325136383,CA 3325136384,3325142015,US 3325142016,3325142271,CR 3325142272,3325144831,US 3325144832,3325145087,CA 3325145088,3325169663,US 3325169664,3325171711,AR 3325171712,3325190143,US 3325190144,3325191687,CA 3325191688,3325191695,US 3325191696,3325202047,CA 3325202048,3325202079,US 3325202080,3325204479,CA 3325204480,3325205503,US 3325205504,3325206428,CA 3325206429,3325206429,US 3325206430,3325206639,CA 3325206640,3325206655,US 3325206656,3325207807,CA 3325207808,3325207935,US 3325207936,3325208119,CA 3325208120,3325208123,US 3325208124,3325208403,CA 3325208404,3325208407,US 3325208408,3325211419,CA 3325211420,3325211423,US 3325211424,3325211647,CA 3325211648,3325211775,US 3325211776,3325212647,CA 3325212648,3325212655,US 3325212656,3325213687,CA 3325213688,3325213695,US 3325213696,3325216319,CA 3325216320,3325216327,US 3325216328,3325216527,CA 3325216528,3325216531,US 3325216532,3325217939,CA 3325217940,3325217943,US 3325217944,3325218207,CA 3325218208,3325218239,US 3325218240,3325218307,CA 3325218308,3325218311,ES 3325218312,3325218519,CA 3325218520,3325218523,US 3325218524,3325219807,CA 3325219808,3325219811,US 3325219812,3325220635,CA 3325220636,3325220636,US 3325220637,3325220863,CA 3325220864,3325220879,US 3325220880,3325221451,CA 3325221452,3325221455,US 3325221456,3325221791,CA 3325221792,3325221795,FR 3325221796,3325222203,CA 3325222204,3325222207,BY 3325222208,3325223083,CA 3325223084,3325223087,BY 3325223088,3325223647,CA 3325223648,3325223663,DE 3325223664,3325224671,CA 3325224672,3325224675,US 3325224676,3325225671,CA 3325225672,3325225675,US 3325225676,3325226592,CA 3325226593,3325226593,US 3325226594,3325226751,CA 3325226752,3325227007,US 3325227008,3325227575,CA 3325227576,3325227583,US 3325227584,3325229591,CA 3325229592,3325229599,US 3325229600,3325230319,CA 3325230320,3325230323,US 3325230324,3325230583,CA 3325230584,3325230591,SN 3325230592,3325231103,CA 3325231104,3325232127,US 3325233152,3325234175,US 3325234176,3325234431,SA 3325234432,3325249279,US 3325249280,3325249535,CO 3325249536,3325250303,US 3325250304,3325250559,CA 3325250560,3325256703,US 3325257216,3325257727,US 3325257728,3325258751,CA 3325258752,3325259775,US 3325259776,3325261311,CA 3325261312,3325265919,US 3325265920,3325266943,CA 3325266944,3325267711,US 3325267712,3325268735,SY 3325268736,3325269759,US 3325269760,3325270015,CA 3325270016,3325271039,US 3325271040,3325271295,CA 3325271296,3325278719,US 3325278976,3325281023,US 3325281024,3325281279,NZ 3325281536,3325284863,US 3325284864,3325285119,AU 3325285376,3325296383,US 3325296384,3325296639,CA 3325296640,3325303807,US 3325303808,3325304575,AS 3325304576,3325304703,US 3325304704,3325304767,AS 3325304768,3325304831,US 3325304832,3325307647,CA 3325307648,3325307903,BB 3325307904,3325313023,CA 3325313024,3325337599,US 3325337600,3325338111,GB 3325338112,3325340671,US 3325340672,3325340927,CA 3325340928,3325362175,US 3325362176,3325427711,CA 3325427712,3325427967,US 3325427968,3325430527,ZA 3325430528,3325431551,US 3325431552,3325441023,ZA 3325441024,3325441279,MU 3325441280,3325443583,ZA 3325443584,3325444095,US 3325444096,3325444863,ZA 3325444864,3325445119,MU 3325445120,3325448447,ZA 3325448448,3325448959,US 3325448960,3325449215,MU 3325449216,3325450239,ZA 3325450240,3325451007,US 3325451008,3325451263,ZA 3325451264,3325452799,US 3325452800,3325453311,ZA 3325453312,3325454335,CA 3325454336,3325463807,US 3325463808,3325464063,ZA 3325464064,3325465087,NA 3325465088,3325466623,ZA 3325466624,3325467135,US 3325467136,3325469695,ZA 3325469696,3325469951,US 3325469952,3325470207,ZA 3325470208,3325471231,US 3325471232,3325471487,ZA 3325471488,3325471999,US 3325472000,3325474303,ZA 3325474304,3325474559,US 3325474560,3325478911,ZA 3325478912,3325479423,US 3325479424,3325481727,ZA 3325481728,3325481983,US 3325481984,3325483007,CA 3325483008,3325483775,US 3325483776,3325484287,ZA 3325484288,3325484799,US 3325484800,3325485055,ZA 3325485056,3325485311,US 3325485312,3325486591,ZA 3325486592,3325486847,US 3325486848,3325487359,ZA 3325487360,3325487615,US 3325487616,3325487871,ZA 3325487872,3325490943,US 3325490944,3325492991,ZA 3325492992,3325497343,US 3325497344,3325499903,PR 3325499904,3325505535,US 3325505536,3325509631,CA 3325509632,3325551615,US 3325551616,3325552639,CA 3325552640,3325562879,US 3325565440,3325573119,US 3325573120,3325575167,BB 3325575168,3325630975,US 3325630976,3325631487,CA 3325631488,3325640703,US 3325640704,3325644799,CA 3325644800,3325689855,US 3325689856,3325690367,JM 3325690368,3325691647,US 3325691648,3325691903,CA 3325691904,3325693183,BR 3325693184,3325722623,US 3325722624,3325755391,CA 3325755392,3325886719,US 3325887488,3325888511,US 3325890560,3325956095,US 3325956096,3325960191,CA 3325960192,3325976063,US 3325976064,3325976319,CA 3325976320,3325980671,US 3325980672,3325980927,CA 3325980928,3325992447,US 3325992448,3325992959,CA 3325992960,3325993983,US 3325993984,3325994239,CA 3325994240,3325996799,US 3325996800,3325997055,CA 3325997056,3326349823,US 3326349824,3326350335,EC 3326350336,3326406655,US 3326406656,3326408703,CO 3326408704,3326413823,US 3326413824,3326414335,YE 3326414336,3326420991,US 3326420992,3326423039,PR 3326423040,3326526463,US 3326526464,3326526719,CA 3326526720,3326613503,US 3326613504,3326615551,CA 3326615552,3326619647,US 3326619648,3326623743,CA 3326623744,3326631935,US 3326631936,3326640127,CA 3326640128,3326680831,US 3326680832,3326681087,CA 3326681088,3326681343,US 3326681344,3326682623,CA 3326682624,3326682879,US 3326682880,3326697215,CA 3326697216,3326699519,US 3326699520,3326713343,CA 3326713344,3326714111,US 3326714112,3326716927,CA 3326716928,3326717951,US 3326717952,3326722047,CA 3326722048,3326726143,US 3326726144,3326726399,CA 3326726400,3326726655,US 3326726656,3326728703,CA 3326728960,3326729215,CA 3326729216,3326729471,JP 3326729472,3326729727,CA 3326729728,3326730751,US 3326731264,3326734335,US 3326734336,3326737663,CA 3326737664,3326737919,US 3326737920,3326738175,CA 3326738176,3326740479,US 3326741760,3326742015,US 3326742528,3326746623,US 3326748160,3326748415,US 3326749184,3326952191,US 3326952192,3326952447,AS 3326952448,3326953983,US 3326953984,3326954495,AS 3326954496,3327144959,US 3327144960,3327145983,CA 3327145984,3327162367,US 3327162368,3327162623,GB 3327162624,3327162879,US 3327162880,3327163391,GB 3327163392,3327197183,US 3327197184,3327198207,JP 3327198208,3327199231,US 3327199232,3327200255,BR 3327200256,3327256831,US 3327256832,3327257087,GU 3327257088,3327397375,US 3327397376,3327397887,CA 3327397888,3327426559,US 3327426560,3327459327,CA 3327459328,3327723519,US 3327723520,3327725311,CA 3327725312,3327788543,US 3327788544,3327789055,CA 3327789056,3327806463,US 3327806464,3327811583,CA 3327811584,3327885311,US 3327885312,3327918079,CA 3327918080,3327995903,US 3327995904,3327996927,CW 3327996928,3328028671,US 3328028672,3328030719,CW 3328030720,3328180479,US 3328180480,3328181247,CA 3328181248,3328181759,US 3328181760,3328185855,CA 3328185856,3328186111,US 3328186112,3328187647,CA 3328187648,3328187903,US 3328187904,3328196351,CA 3328196352,3328196607,US 3328196608,3328202751,CA 3328202752,3328204799,US 3328204800,3328214783,CA 3328214784,3328215295,GB 3328215296,3328224255,CA 3328224256,3328224511,US 3328224512,3328235007,CA 3328235008,3328235519,US 3328235520,3328236543,CA 3328236544,3328237311,US 3328237312,3328241663,CA 3328241664,3328242943,US 3328242944,3328243199,GB 3328243200,3328245759,CA 3328245760,3328265471,US 3328265728,3328271871,US 3328272128,3328299775,US 3328299776,3328301055,CA 3328301056,3328306431,US 3328306432,3328306687,CA 3328306688,3328307455,US 3328307968,3328309247,US 3328309504,3328358399,US 3328358400,3328360447,CA 3328360448,3328383999,US 3328384000,3328385023,CA 3328385024,3328393727,US 3328393728,3328393983,GB 3328393984,3328394239,US 3328394240,3328394495,GB 3328394496,3328414719,US 3328414720,3328414975,CH 3328414976,3328420351,US 3328420352,3328420607,CA 3328420608,3328421119,US 3328421120,3328421375,HK 3328421376,3328432639,US 3328432640,3328433663,CA 3328433664,3328433919,CH 3328433920,3328475135,US 3328475136,3328477183,CA 3328477184,3328479231,US 3328479232,3328479623,CA 3328479624,3328479624,US 3328479625,3328481279,CA 3328481280,3328481791,US 3328481792,3328482303,CA 3328482304,3328483071,US 3328483072,3328483327,CA 3328483328,3328515071,US 3328515072,3328516095,DM 3328516096,3328617983,US 3328617984,3328618239,CA 3328618240,3328629631,US 3328629632,3328629695,GB 3328629696,3328630015,US 3328630016,3328630271,CA 3328630272,3328630783,US 3328630784,3328631807,CA 3328631808,3328638975,US 3328638976,3328704511,CA 3328704512,3328774399,US 3328774400,3328775935,CA 3328775936,3328798719,US 3328798720,3328799743,NL 3328799744,3328799999,US 3328800000,3328800255,NL 3328800256,3328800767,IT 3328800768,3328801023,NZ 3328801024,3328801279,SE 3328801280,3328801791,CZ 3328801792,3328802047,US 3328802048,3328802303,DE 3328802304,3328802815,AU 3328802816,3328826813,US 3328826814,3328826814,SG 3328826815,3329230335,US 3329230336,3329230591,JP 3329230592,3329498623,US 3329498624,3329498879,ES 3329498880,3330613247,US 3330613248,3330614783,CA 3330614784,3330617087,US 3330617088,3330617343,CA 3330617344,3330621183,US 3330621184,3330623743,CA 3330623744,3330624255,US 3330624256,3330624511,CA 3330624512,3330625535,US 3330625536,3330627071,GB 3330627072,3330640895,US 3330640896,3330641151,CH 3330641152,3330646527,US 3330646528,3330647295,CA 3330647296,3330649599,US 3330649600,3330649855,CA 3330649856,3330662911,US 3330662912,3330663167,GB 3330663168,3330664191,US 3330664192,3330664447,CA 3330664448,3330677759,US 3330677760,3330678783,CA 3330678784,3330714367,US 3330714368,3330714623,CA 3330714624,3330726655,US 3330726656,3330726911,CA 3330726912,3330754559,US 3330754560,3330754815,CA 3330754816,3330763519,US 3330763520,3330763775,CA 3330763776,3330765823,US 3330765824,3330766335,CA 3330766336,3330771199,US 3330771200,3330771711,CH 3330771712,3330778879,US 3330778880,3330779135,GB 3330779136,3330785279,US 3330785280,3330785791,CA 3330785792,3330791423,US 3330791424,3330791679,CA 3330791680,3330812927,US 3330812928,3330813951,CA 3330813952,3330866943,US 3330866944,3330867199,CA 3330867200,3330883583,US 3330883584,3330884351,NL 3330884352,3330884863,US 3330884864,3330885119,GB 3330885120,3330888191,US 3330888192,3330888703,AU 3330888704,3330888959,US 3330888960,3330889215,CH 3330889216,3330889471,GB 3330889472,3330890239,JP 3330890240,3330890751,BE 3330890752,3330891263,GB 3330891264,3330892287,US 3330892288,3330892543,FR 3330892544,3330893567,US 3330893568,3330893823,NL 3330893824,3330894079,CA 3330894080,3330894591,GB 3330894592,3330894847,DE 3330894848,3330897919,US 3330897920,3330898175,CA 3330898176,3330898431,DE 3330898432,3330898943,FR 3330898944,3330904575,US 3330904576,3330904831,CA 3330904832,3331098111,US 3331098112,3331098367,CA 3331098368,3331102463,US 3331102464,3331102719,CA 3331102720,3331194879,US 3331194880,3331260415,AU 3331260416,3331269375,US 3331269376,3331269631,AU 3331269632,3331356671,US 3331356672,3331357183,BZ 3331357184,3331362815,US 3331362816,3331366911,CA 3331366912,3331523583,US 3331523584,3331523839,GB 3331523840,3331524095,US 3331524096,3331524607,SG 3331524608,3331527167,US 3331527168,3331527679,GB 3331527680,3331560191,US 3331560448,3331563519,US 3331563520,3331563775,IN 3331563776,3331565567,US 3331565568,3331566079,CA 3331566080,3331632639,US 3331632640,3331632895,CA 3331632896,3331633407,US 3331633408,3331633919,CH 3331633920,3331636479,US 3331636480,3331636735,AU 3331636736,3331637247,US 3331637248,3331638271,KR 3331638272,3331638783,AU 3331638784,3331647231,US 3331647232,3331647487,CA 3331647488,3331649279,US 3331649280,3331649535,CA 3331649536,3331798271,US 3331798272,3331798527,AU 3331798528,3331818495,US 3331818496,3331818751,MX 3331818752,3331840111,US 3331840112,3331840115,CA 3331840116,3331935231,US 3331935232,3331936255,CA 3331936256,3331983103,US 3331983104,3331983359,CA 3331983360,3331988479,US 3331988480,3331989503,CA 3331989504,3332028415,US 3332028416,3332030463,CA 3332030464,3332423423,US 3332423424,3332423679,CA 3332423680,3332440319,US 3332440320,3332460543,CA 3332460544,3332460799,US 3332460800,3332461311,CA 3332461312,3332461567,US 3332461568,3332462335,CA 3332462336,3332462591,US 3332462592,3332473855,CA 3332473856,3332477951,US 3332477952,3332482303,CA 3332482304,3332484095,US 3332484096,3332491263,CA 3332491264,3332492031,US 3332492032,3332500735,CA 3332500736,3332500991,US 3332500992,3332501247,CA 3332501248,3332501503,US 3332501504,3332503039,CA 3332503040,3332503551,US 3332503552,3332505343,CA 3332505344,3332505855,US 3332505856,3332508671,CA 3332508672,3332508927,US 3332508928,3332525311,CA 3332525312,3332525823,US 3332525824,3332528127,CA 3332528128,3332529663,US 3332529664,3332554751,CA 3332554752,3332558847,US 3332558848,3332562943,CA 3332562944,3332563455,US 3332563456,3332564479,CA 3332564480,3332564735,US 3332564736,3332570879,CA 3332570880,3332571391,US 3332571392,3332579327,CA 3332579328,3332581375,US 3332581376,3332590079,CA 3332590080,3332590591,US 3332590592,3332594687,CA 3332594688,3332594943,US 3332594944,3332595455,CA 3332595456,3332595711,US 3332595712,3332610559,CA 3332610560,3332611071,US 3332611072,3332611327,CA 3332611328,3332611583,US 3332611584,3332616191,CA 3332616192,3332616959,US 3332616960,3332617727,CA 3332617728,3332624383,US 3332624384,3332625919,CA 3332626688,3332636415,CA 3332636416,3332636671,US 3332636672,3332724735,CA 3332724736,3332726783,PM 3332726784,3332737023,CA 3332737024,3332738047,PM 3332738048,3332744191,CA 3332744192,3332745215,PM 3332745216,3332752127,CA 3332752128,3332752383,PM 3332752384,3332833279,CA 3332833280,3332833535,US 3332833536,3332841471,CA 3332841472,3332841727,US 3332841728,3332866303,CA 3332866304,3332874239,US 3332874240,3332875007,CA 3332875008,3332875263,US 3332875264,3332876287,CA 3332876288,3332882431,US 3332882432,3332890623,KN 3332890624,3332897279,US 3332897280,3332898559,CA 3332898816,3332899071,US 3332899072,3332906495,CA 3332906496,3332909567,US 3332909568,3332909823,CA 3332909824,3332910079,US 3332910080,3332922879,CA 3332922880,3332923391,US 3332923392,3332925695,CA 3332925696,3332927487,US 3332928512,3332929023,US 3332929024,3332930047,CA 3332930560,3332931327,US 3332931328,3332947967,CA 3332947968,3332948223,US 3332948224,3332966143,CA 3332966144,3332966399,US 3332966400,3332979967,CA 3332979968,3332980735,US 3332980736,3332988927,CA 3332988928,3332989951,US 3332989952,3332997119,CA 3332997120,3332997375,US 3332997376,3333008383,CA 3333008384,3333008895,US 3333008896,3333012479,CA 3333012480,3333012991,US 3333012992,3333014015,CA 3333014016,3333014527,US 3333014528,3333017599,CA 3333017600,3333018111,US 3333018112,3333023231,CA 3333023232,3333025279,US 3333025280,3333029631,CA 3333029632,3333385983,US 3333385984,3333386239,JP 3333386240,3333396223,US 3333396224,3333396479,JP 3333396480,3333396689,GB 3333396690,3333396691,US 3333396692,3333396735,GB 3333396736,3333427967,US 3333427968,3333428007,GB 3333428008,3333428008,US 3333428009,3333428223,GB 3333428224,3333480191,US 3333480192,3333481471,DE 3333481472,3333517823,US 3333518336,3333519359,US 3333519360,3333521407,GB 3333521408,3333583871,US 3333583872,3333584895,CA 3333584896,3333593855,US 3333593856,3333594111,CA 3333594112,3333614591,US 3333614592,3333614847,GB 3333614848,3333621247,US 3333621760,3333624319,US 3333624320,3333624575,CA 3333624576,3333675775,US 3333675776,3333676031,CA 3333676032,3333677311,US 3333677312,3333677567,HK 3333677568,3333701887,US 3333701888,3333702143,GB 3333702144,3333702399,US 3333702400,3333702655,CH 3333702656,3333705727,US 3333705728,3333709567,GB 3333709568,3333710591,US 3333710592,3333710847,IT 3333710848,3333711359,GB 3333711360,3333712127,DE 3333712128,3333712383,CH 3333712384,3333712639,DE 3333712640,3333716223,US 3333716224,3333716735,CA 3333716736,3333716991,GB 3333716992,3333717247,AU 3333717248,3333717503,FR 3333717504,3333717759,SG 3333717760,3333718015,NL 3333718016,3333721599,US 3333721600,3333721855,JP 3333721856,3333781503,US 3333781504,3333783551,CA 3333783552,3333801727,US 3333801728,3333801983,CA 3333801984,3333829631,US 3333829632,3333829887,IN 3333829888,3333859839,US 3333859840,3333860095,BM 3333860096,3333871103,US 3333871104,3333871359,CA 3333871360,3333939455,US 3333939456,3333939711,CA 3333939712,3333988607,US 3333988608,3333988863,BR 3333988864,3333997823,US 3333997824,3333998079,CA 3333998080,3334020095,US 3334020096,3334021119,CA 3334021120,3334068479,US 3334068480,3334068735,CA 3334068736,3334117887,US 3334118144,3334138623,US 3334138624,3334138879,BM 3334138880,3334187775,US 3334187776,3334188031,BM 3334188032,3334932223,US 3334932224,3334932479,CA 3334932480,3334934015,US 3334934016,3334934527,CA 3334934528,3334962175,US 3334962176,3334963199,NL 3334963200,3334995967,US 3334995968,3334998527,PH 3334998528,3335004655,US 3335004656,3335004671,CN 3335004672,3335012351,US 3335012352,3335028735,CA 3335028736,3335057919,US 3335057920,3335058175,CA 3335058176,3335160319,US 3335160320,3335160575,CA 3335160576,3335252735,US 3335252736,3335252991,CA 3335252992,3335276287,US 3335276288,3335276799,PR 3335276800,3335354179,US 3335354180,3335354183,CA 3335354184,3335439615,US 3335439616,3335439871,CH 3335439872,3335440383,US 3335440384,3335441151,CH 3335441152,3335456767,US 3335458816,3335460863,BM 3335460864,3335475199,US 3335475200,3335475455,DE 3335475456,3335524351,US 3335524352,3335524607,AU 3335524608,3335527167,US 3335527168,3335527423,DE 3335527424,3335573759,US 3335573760,3335574015,IN 3335574016,3335747071,US 3335747072,3335749631,NL 3335749632,3335784191,US 3335784192,3335784447,CA 3335784448,3335860991,US 3335860992,3335861247,MX 3335861248,3336139775,US 3336139776,3336140799,CA 3336140800,3336854015,US 3336854016,3336854271,CO 3336854272,3336896767,US 3336896768,3336897023,VE 3336897024,3336990719,US 3336990720,3336990975,CA 3336990976,3336991231,US 3336991232,3336991743,CA 3336991744,3336992767,US 3336992768,3336993535,CA 3336993536,3336993791,US 3336993792,3336994047,CA 3336994048,3337030655,US 3337030656,3337030911,GB 3337030912,3337044479,US 3337044480,3337044735,CA 3337044736,3337044991,US 3337044992,3337046015,CA 3337046016,3337046527,US 3337046528,3337047551,CA 3337047552,3337050111,US 3337050112,3337051647,CA 3337051648,3337051903,US 3337051904,3337052159,CA 3337052160,3337053183,US 3337053184,3337053695,CA 3337053696,3337055231,US 3337055232,3337060351,CA 3337060352,3337134079,US 3337134336,3337198703,US 3337198704,3337198707,CA 3337198708,3337289983,US 3337289984,3337297919,CA 3337297920,3337302015,US 3337302016,3337303551,CA 3337303552,3337304063,US 3337304064,3337304319,CA 3337304320,3337305599,US 3337305600,3337322495,CA 3337322496,3337322751,US 3337322752,3337323007,CA 3337323008,3337324543,US 3337324544,3337335295,CA 3337335296,3337335807,US 3337335808,3337341951,CA 3337341952,3337342463,US 3337342464,3337355007,CA 3337355008,3337650175,US 3337650176,3337650431,GB 3337650432,3337650943,US 3337650944,3337651199,HK 3337651200,3337682943,CH 3337682944,3337882111,US 3337882112,3337882623,AU 3337882624,3337892607,US 3337892608,3337892671,HK 3337892672,3337893119,US 3337893120,3337893375,CN 3337893376,3337893631,CA 3337893632,3337895679,US 3337895680,3337895935,CN 3337895936,3337900031,PR 3337900032,3337948671,US 3337948672,3337949183,CA 3337949184,3337957375,US 3337957376,3337958399,CA 3337958400,3337958783,US 3337958784,3337958784,CA 3337958785,3337960447,US 3337960448,3337961471,CA 3337961472,3337961727,US 3337961728,3337961983,CA 3337961984,3337963639,US 3337963640,3337963647,CA 3337963648,3337969663,US 3337969664,3337973759,PR 3337973760,3337977855,CA 3337977856,3337980671,US 3337980672,3337980927,PR 3337980928,3337986047,US 3337986048,3337986303,BB 3337986304,3337990143,US 3337990144,3337990655,CA 3337990656,3338010367,US 3338010368,3338010623,PR 3338010624,3338017791,US 3338017792,3338018815,CA 3338018816,3338021887,US 3338021888,3338022911,CA 3338022912,3338069247,US 3338069248,3338069759,BB 3338069760,3338207487,US 3338207488,3338207743,CA 3338207744,3338208511,US 3338208512,3338208767,CA 3338208768,3338211583,US 3338211584,3338212095,CA 3338212096,3338215423,US 3338215424,3338215935,CA 3338215936,3338216447,US 3338216448,3338216703,CA 3338216704,3338217215,US 3338217216,3338217471,CA 3338217472,3338220543,US 3338220544,3338221055,CA 3338221056,3338222847,US 3338222848,3338223359,CA 3338223360,3338228735,US 3338228736,3338228991,CA 3338228992,3338229759,US 3338229760,3338230015,CA 3338230016,3338230527,US 3338230528,3338230783,CA 3338230784,3338231807,US 3338231808,3338232063,CA 3338232064,3338233599,US 3338233600,3338233855,VG 3338233856,3338235135,US 3338235136,3338235391,CA 3338235392,3338235647,US 3338235648,3338235903,CA 3338235904,3338236671,US 3338236672,3338236927,CA 3338236928,3338238975,US 3338238976,3338239231,CA 3338239232,3338239999,US 3338240000,3338240255,CA 3338240256,3338241535,US 3338241536,3338242047,CA 3338242048,3338246143,US 3338246144,3338246399,CA 3338246400,3338246655,US 3338246656,3338247167,CA 3338247168,3338247423,US 3338247424,3338247679,CA 3338247680,3338247935,US 3338247936,3338249215,CA 3338249216,3338249727,US 3338249728,3338249983,CA 3338249984,3338250751,US 3338250752,3338251775,CA 3338251776,3338252543,US 3338252544,3338252799,CA 3338252800,3338253311,US 3338253312,3338253567,CA 3338253568,3338254079,US 3338254080,3338254335,CA 3338254336,3338255615,US 3338255616,3338255871,CA 3338255872,3338257407,US 3338257408,3338257663,CA 3338257664,3338257919,US 3338257920,3338258175,CA 3338258176,3338258431,US 3338258432,3338258687,CA 3338258688,3338259455,US 3338259456,3338259711,CA 3338259712,3338260735,US 3338260736,3338261759,CA 3338261760,3338262527,US 3338262528,3338263039,CA 3338263040,3338264063,US 3338264064,3338264575,CA 3338264576,3338265855,US 3338265856,3338266623,CA 3338266624,3338267647,US 3338267648,3338268159,CA 3338268160,3338269183,US 3338269184,3338270207,CA 3338270208,3338270719,US 3338270720,3338271231,CA 3338271232,3338271487,US 3338271488,3338271743,CA 3338271744,3338271999,US 3338272000,3338272255,CA 3338272256,3338350591,US 3338350592,3338354687,CA 3338354688,3338359817,US 3338359818,3338359818,GB 3338359819,3338360831,US 3338360832,3338361087,RU 3338361088,3338371071,US 3338371072,3338403839,CA 3338403840,3338424319,US 3338424320,3338428415,CA 3338428416,3338429695,US 3338429696,3338429951,SG 3338429952,3338430719,US 3338430720,3338430975,NL 3338430976,3338431487,US 3338431488,3338431743,CA 3338431744,3338432255,US 3338432256,3338432511,CA 3338432512,3338455039,US 3338455040,3338455295,GB 3338455296,3338567679,US 3338567680,3338600447,CA 3338600448,3338686463,US 3338686464,3338688511,AW 3338688512,3338770431,US 3338770432,3338772479,PR 3338772480,3338825727,US 3338825728,3338827775,AW 3338827776,3338912767,US 3338912768,3338913023,EC 3338913024,3338964991,US 3338964992,3338965247,CA 3338965248,3338976767,US 3338976768,3338977023,CA 3338977024,3338993407,US 3338993408,3338993663,CA 3338993664,3339000575,US 3339000832,3339043327,US 3339043328,3339043583,CA 3339043584,3339075583,US 3339075584,3339076863,GB 3339076864,3339077631,NO 3339077632,3339077887,SG 3339077888,3339079167,US 3339079168,3339079423,DK 3339079424,3339079679,CA 3339079680,3339080703,IT 3339080704,3339080959,FR 3339080960,3339081727,HK 3339081728,3339081983,NL 3339081984,3339082751,FR 3339082752,3339086335,US 3339086336,3339086591,JP 3339086592,3339091967,US 3339091968,3339092991,NL 3339092992,3339093503,US 3339093504,3339094015,NL 3339094016,3339142655,US 3339142656,3339142911,NL 3339142912,3339147007,US 3339147008,3339147775,CA 3339147776,3339148031,MS 3339148032,3339153407,US 3339153408,3339155455,BB 3339155456,3339159551,US 3339159552,3339160575,CA 3339160576,3339164671,US 3339164672,3339165695,CA 3339165696,3339167743,US 3339167744,3339168767,PR 3339168768,3339177983,US 3339177984,3339178495,PR 3339178496,3339178751,DO 3339178752,3339179007,PR 3339179008,3339180031,US 3339180032,3339181055,CA 3339181056,3339184127,US 3339184128,3339186175,CA 3339186176,3339261951,US 3339261952,3339263999,HK 3339264000,3339270399,US 3339270400,3339270655,CA 3339271168,3339327999,US 3339328512,3339329535,CA 3339329536,3339338239,US 3339338240,3339338495,CA 3339338496,3339342847,US 3339342848,3339343103,CA 3339343104,3339373055,US 3339373568,3339655679,US 3339656192,3339667967,US 3339668480,3339669503,US 3339669504,3339671807,CA 3339671808,3339672063,US 3339672576,3339679487,US 3339679488,3339679743,CN 3339679744,3339707391,US 3339707392,3339708415,BM 3339708416,3339728895,US 3339728896,3339729919,AG 3339729920,3339743231,US 3339743232,3339744255,CA 3339744256,3339747327,US 3339747328,3339747583,CA 3339747584,3339747839,FR 3339747840,3339748351,CA 3339748352,3339753471,US 3339753472,3339754495,CA 3339754496,3339760639,US 3339760640,3339761663,CA 3339761664,3339766047,US 3339766048,3339766055,DE 3339766056,3339766183,US 3339766184,3339766191,AU 3339766192,3339767007,US 3339767008,3339767015,DE 3339767016,3339923455,US 3339923456,3339926015,CA 3339926528,3339927551,CA 3339927552,3339934719,US 3339934720,3339935743,CA 3339935744,3339937279,US 3339937280,3339937535,MX 3339937536,3339952127,US 3339952128,3339956223,CA 3339956224,3339965439,US 3339965440,3339968511,CA 3339968512,3339975935,US 3339975936,3339976191,CA 3339976192,3340080127,US 3340080128,3340081151,CA 3340081152,3340084223,US 3340084224,3340085247,KN 3340085248,3340086271,US 3340087296,3340088319,US 3340088320,3340089343,CA 3340089344,3340097535,US 3340097536,3340098559,CA 3340098560,3340107775,US 3340107776,3340369919,CA 3340369920,3340383743,US 3340384256,3340386815,US 3340387328,3340388351,CA 3340388352,3340390399,US 3340390400,3340391423,CA 3340391424,3340418559,US 3340418560,3340419071,CA 3340419072,3340426239,US 3340426752,3340429823,US 3340429824,3340430079,PA 3340430080,3340431871,US 3340432384,3340460031,US 3340460032,3340461055,PR 3340461056,3340461311,US 3340461312,3340462079,PR 3340462080,3340468223,US 3340468224,3340468991,SG 3340468992,3340481535,US 3340481536,3340482559,CA 3340482560,3340490751,US 3340490752,3340492799,CA 3340492800,3340584703,US 3340584704,3340584959,KW 3340584960,3340660735,US 3340660992,3340661247,US 3340661760,3340664831,US 3340664832,3340665855,CA 3340668928,3340677119,US 3340677120,3340679167,CA 3340679168,3340694783,US 3340694784,3340695039,CA 3340695040,3340835327,US 3340835840,3340851455,US 3340851456,3340851711,CA 3340851712,3340852735,US 3340852736,3340853247,CA 3340853248,3340857343,US 3340857344,3340858367,CA 3340858368,3340888063,US 3340888576,3340923391,US 3340923904,3340925567,US 3340925568,3340925575,DE 3340925576,3340925815,US 3340925816,3340925823,AU 3340925824,3340926295,US 3340926296,3340926303,DE 3340926304,3341027839,US 3341028352,3341031935,US 3341032448,3341043711,US 3341045760,3341057023,US 3341058048,3341082623,US 3341082624,3341084671,CA 3341084672,3341163007,US 3341163520,3341180927,US 3341180928,3341182975,CA 3341182976,3341196799,US 3341197312,3341205503,US 3341205504,3341206589,VC 3341206590,3341206590,BB 3341206591,3341207551,VC 3341207552,3341216255,US 3341216256,3341216767,JP 3341216768,3341217791,CA 3341217792,3341218623,US 3341218624,3341218655,CA 3341218656,3341287423,US 3341287424,3341408511,CZ 3341408512,3341408767,US 3341408768,3341418495,CZ 3341418496,3341444863,US 3341444864,3341445631,DE 3341445632,3341464575,US 3341464576,3341464831,GB 3341464832,3341470207,US 3341470208,3341470463,GB 3341470464,3341479935,US 3341479936,3341480447,DE 3341480448,3341484287,US 3341484288,3341485055,CA 3341485056,3341488639,US 3341488640,3341488895,JP 3341488896,3341489151,HK 3341489152,3341495551,US 3341495552,3341495807,HK 3341495808,3341500159,US 3341500160,3341500415,HK 3341500416,3341511679,US 3341511680,3341513215,CA 3341513728,3341517823,CA 3341517824,3341518847,US 3341518848,3341520895,CA 3341520896,3341521663,US 3341521664,3341531135,CA 3341531136,3341533951,US 3341533952,3341534207,CA 3341534720,3341534975,US 3341534976,3341536767,CA 3341536768,3341546239,US 3341546240,3341547007,CA 3341547008,3341547519,CH 3341547520,3341549311,CA 3341549312,3341631999,US 3341632000,3341632767,CA 3341632768,3341634815,US 3341634816,3341635071,CA 3341635072,3341641727,US 3341641728,3341642239,CA 3341642240,3341642495,US 3341642496,3341642751,CA 3341642752,3341643519,US 3341643520,3341643775,CA 3341643776,3341644287,US 3341644288,3341644799,CA 3341644800,3341645055,US 3341645056,3341645567,CA 3341645568,3341646079,US 3341646080,3341646591,CA 3341646592,3341709311,US 3341709312,3341710335,CA 3341710336,3341727999,US 3341728000,3341728255,AU 3341728256,3341755903,US 3341756160,3341758463,US 3341758464,3341759487,CA 3341759488,3341760511,BB 3341760512,3341762559,CA 3341762560,3341777919,US 3341777920,3341778943,CA 3341778944,3341784575,US 3341784576,3341784831,CH 3341784832,3341796607,US 3341796608,3341796863,AU 3341796864,3341797375,JP 3341797376,3341807615,US 3341807616,3341808639,CA 3341808640,3341815295,US 3341815808,3341828095,US 3341828096,3341829119,CA 3341829120,3341837311,US 3341837312,3341838335,CA 3341838336,3341863935,US 3341863936,3341864959,AG 3341864960,3341867007,US 3341867008,3341869055,CA 3341869056,3341881087,US 3341881088,3341881343,SG 3341881344,3341891071,US 3341891072,3341891327,AU 3341891328,3342139391,US 3342139392,3342204927,CH 3342204928,3342470399,US 3342470400,3342470655,CA 3342471168,3342487551,US 3342487552,3342488575,CA 3342488576,3342496767,US 3342496768,3342497791,CA 3342497792,3342499839,GD 3342499840,3342505983,US 3342505984,3342507007,BB 3342507008,3342510079,US 3342510080,3342512127,CA 3342512128,3342516223,US 3342516224,3342517247,CA 3342517248,3342526463,US 3342526464,3342528511,CA 3342528512,3342543359,US 3342543872,3342552063,US 3342552064,3342553087,CA 3342553088,3342565375,US 3342565376,3342567423,CA 3342567424,3342579711,US 3342579712,3342581759,CA 3342581760,3342585599,US 3342585600,3342585855,MU 3342585856,3342595071,US 3342595072,3342595583,CA 3342595584,3342596095,FR 3342596096,3342598143,US 3342598144,3342603263,CA 3342603264,3342604799,US 3342604800,3342605311,CA 3342605312,3342605567,US 3342605568,3342623743,CA 3342624000,3342624255,US 3342624256,3342627839,CA 3342627840,3342628095,US 3342628096,3342629631,CA 3342629632,3342629887,US 3342629888,3342657535,CA 3342657536,3342657791,US 3342657792,3342663423,CA 3342663424,3342831103,US 3342831104,3342831359,IN 3342831360,3342879487,US 3342879488,3342879743,GB 3342879744,3343013887,US 3343013888,3343015935,CA 3343015936,3343055871,US 3343055872,3343056895,CA 3343056896,3343090588,US 3343090589,3343090589,MX 3343090590,3343129087,US 3343129600,3343136255,US 3343136768,3343153151,US 3343153152,3343154943,CA 3343154944,3343167487,US 3343167488,3343169535,CA 3343169536,3343171583,US 3343171584,3343172607,BM 3343172608,3343319295,US 3343319296,3343342847,CA 3343342848,3343343103,PR 3343343104,3343346175,CA 3343346176,3343346687,US 3343346688,3343355391,CA 3343355392,3343355903,US 3343355904,3343359743,CA 3343359744,3343359999,US 3343360000,3343364095,CA 3343364096,3343365631,US 3343365632,3343366655,CA 3343366656,3343366911,US 3343366912,3343372543,CA 3343372544,3343378823,US 3343378824,3343378839,SE 3343378840,3343379079,US 3343379080,3343379087,SE 3343379088,3343380479,US 3343380480,3343384319,CA 3343384576,3343460863,US 3343460864,3343461375,CA 3343461376,3343465471,US 3343465472,3343466495,JM 3343466496,3343649791,US 3343649792,3343650815,VI 3343650816,3343858687,US 3343858688,3343859199,VG 3343859200,3344116223,US 3344116224,3344116735,CA 3344116736,3344126975,US 3344126976,3344127999,CA 3344128000,3344140287,US 3344140288,3344141311,CA 3344141312,3344144383,US 3344144384,3344146431,CA 3344146432,3344154623,US 3344154624,3344156671,GD 3344156672,3344158719,CA 3344158720,3344166911,US 3344166912,3344168959,CA 3344168960,3344171263,US 3344171264,3344195583,CA 3344195584,3344203775,US 3344203776,3344236287,CA 3344236288,3344237055,US 3344237056,3344238335,CA 3344238336,3344238591,US 3344240640,3344242175,CA 3344242176,3344242687,US 3344242688,3344252671,CA 3344252672,3344252927,US 3344252928,3344255999,CA 3344256000,3344261887,US 3344261888,3344266239,CA 3344266240,3344266751,US 3344266752,3344268543,CA 3344268544,3344269311,US 3344269312,3344287743,CA 3344287744,3344287999,US 3344288000,3344288767,CA 3344288768,3344289791,PR 3344289792,3344292863,US 3344292864,3344296447,CA 3344296448,3344296959,US 3344296960,3344297983,GD 3344297984,3344299263,US 3344299264,3344299519,CA 3344299520,3344299775,US 3344299776,3344300543,CA 3344300544,3344300799,US 3344300800,3344301823,CA 3344301824,3344379903,US 3344379904,3344380927,CA 3344380928,3344406527,US 3344406528,3344408575,CA 3344408576,3344409599,US 3344410624,3344429055,US 3344429056,3344431103,CA 3344431104,3344446463,US 3344447488,3344486399,US 3344486400,3344488447,NL 3344488448,3344534271,US 3344534272,3344534527,CA 3344534528,3344633855,US 3344633856,3344637951,CH 3344637952,3344649215,US 3344649216,3344650239,PR 3344650240,3344652287,CA 3344652288,3344654335,US 3344654336,3344656383,VG 3344656384,3344658431,US 3344658432,3344660479,CA 3344660480,3344670719,US 3344670720,3344671743,GP 3344671744,3344676863,US 3344676864,3344677247,CA 3344677248,3344677263,US 3344677264,3344677407,CA 3344677408,3344677423,US 3344677424,3344678911,CA 3344678912,3344681983,US 3344681984,3344685055,CA 3344685056,3344691199,US 3344691200,3344693247,CA 3344693248,3344694271,US 3344694272,3344695295,CA 3344695296,3344937471,US 3344937472,3344937983,EG 3344937984,3344938239,US 3344938240,3344938495,UZ 3344938496,3344955391,US 3344955392,3344955647,GB 3344955648,3344964607,US 3344964608,3344965631,CA 3344965632,3344973823,US 3344973824,3344974847,BM 3344974848,3344979967,US 3344979968,3344982015,CA 3344982016,3345007615,US 3345007616,3345008639,CA 3345008640,3345010687,US 3345010688,3345011711,CA 3345011712,3345295871,US 3345296384,3345299455,US 3345299456,3345301503,CA 3345301504,3345303551,US 3345303552,3345304575,CA 3345304576,3345315071,US 3345315072,3345315327,TW 3345315328,3345315583,US 3345315584,3345315839,TW 3345315840,3345321471,US 3345321472,3345321727,GB 3345321728,3345327103,US 3345327104,3345328127,CA 3345328128,3345332487,US 3345332488,3345332495,RO 3345332496,3345332607,US 3345332608,3345332639,RO 3345332640,3345332655,US 3345332656,3345332663,RO 3345332664,3345333247,US 3345333248,3345333503,GP 3345333504,3345334271,MF 3345334272,3345339391,US 3345339392,3345340415,CA 3345340416,3345369087,US 3345370112,3345375231,US 3345375232,3345377279,CA 3345377280,3345383423,US 3345383424,3345384447,CA 3345384448,3345390591,US 3345390592,3345391615,CA 3345391616,3345398783,US 3345398784,3345399807,BS 3345399808,3345401855,PR 3345401856,3345403903,CA 3345403904,3345418239,US 3345418240,3345419519,NL 3345419520,3345422847,US 3345423360,3345424383,TC 3345424384,3345430527,US 3345430528,3345432575,CA 3345432576,3345433599,GB 3345433600,3345433855,SG 3345433856,3345434879,US 3345434880,3345435135,ES 3345435136,3345435391,LU 3345435392,3345436671,DE 3345436672,3345436927,US 3345436928,3345437183,ES 3345437184,3345437695,GB 3345437696,3345437951,NL 3345437952,3345438207,CA 3345438208,3345438463,GB 3345438464,3345438975,FR 3345438976,3345439743,US 3345439744,3345439999,FR 3345440000,3345440255,DE 3345440256,3345441023,US 3345441024,3345441791,DE 3345442304,3345442559,CL 3345442560,3345442815,JP 3345442816,3345443327,AT 3345443328,3345443583,CH 3345443584,3345443839,DE 3345443840,3345444607,US 3345444608,3345445119,CH 3345445120,3345445375,US 3345445376,3345446399,GB 3345446400,3345446655,US 3345446656,3345446911,IT 3345446912,3345447679,US 3345447680,3345448447,FR 3345448448,3345448703,BE 3345448704,3345448959,DE 3345448960,3346140671,US 3346141184,3346188799,US 3346189312,3346196479,US 3346196480,3346197503,CA 3346197504,3346201599,US 3346201600,3346202623,CA 3346202624,3346209279,US 3346209792,3346210241,US 3346210242,3346210242,CA 3346210243,3346219007,US 3346219008,3346221055,CA 3346221056,3346225151,US 3346225152,3346227199,CA 3346227200,3346234367,US 3346234368,3346235391,CA 3346235392,3346241535,US 3346241536,3346243327,CA 3346243328,3346282495,US 3346282496,3346284543,PR 3346284544,3346319359,US 3346321408,3346322431,US 3346323456,3346325503,CA 3346325504,3346327551,US 3346327552,3346328575,CA 3346328576,3346329599,US 3346329600,3346330623,CA 3346330624,3346399231,US 3346399232,3346464767,FR 3346464768,3346471423,US 3346471936,3346497535,US 3346497536,3346498559,CA 3346498560,3346520063,US 3346520064,3346521087,CA 3346521088,3346523135,US 3346523136,3346523391,BO 3346523392,3346523647,RU 3346523648,3346523903,US 3346523904,3346524159,FR 3346524160,3346525183,CA 3346525184,3346528255,US 3346528256,3346529279,PR 3346529280,3346530303,CA 3346530304,3346545151,US 3346545664,3346568703,US 3346569216,3346591487,US 3346591488,3346591743,CA 3346591744,3346663167,US 3346663168,3346663423,CA 3346663424,3346691071,US 3346691072,3346692095,CA 3346692096,3346730495,US 3346731008,3346793215,US 3346793216,3346793471,CA 3346793472,3346793983,US 3346794496,3346799103,US 3346799616,3346807295,US 3346807808,3346923519,US 3346923520,3346989055,CA 3346989056,3346999807,US 3347000320,3347015647,US 3347015648,3347015663,AE 3347015664,3347016703,US 3347016704,3347017727,CA 3347017728,3347021823,US 3347021824,3347022847,CA 3347022848,3347030527,US 3347030528,3347030783,IN 3347030784,3347033087,US 3347033088,3347034111,CA 3347034112,3347039231,US 3347039232,3347040255,DM 3347040256,3349268479,US 3349268480,3349268991,CA 3349268992,3349273087,US 3349273088,3349273343,CA 3349273344,3349341695,US 3349341696,3349341951,CA 3349341952,3349446911,US 3349446912,3349447167,CA 3349447168,3349463039,US 3349463040,3349463295,CA 3349463296,3349479167,US 3349479168,3349479423,CA 3349479424,3349533695,US 3349533696,3349533951,CA 3349533952,3349545215,US 3349545216,3349545727,CA 3349545728,3349545983,US 3349545984,3349549567,CA 3349550080,3349551103,CA 3349551104,3349553663,US 3349553664,3349554687,IN 3349554688,3349605375,CA 3349605376,3349605631,US 3349605632,3349607423,CA 3349607936,3349608447,CA 3349608448,3349609471,US 3349609472,3349610239,CA 3349610240,3349614591,US 3349614592,3349614655,CA 3349614656,3349614671,US 3349614672,3349614783,CA 3349614784,3349614847,US 3349614848,3349615551,CA 3349615552,3349615615,US 3349615616,3349616127,CA 3349616128,3349616639,US 3349616640,3349617663,CA 3349617664,3349637119,US 3349637120,3349639167,CA 3349639168,3349640191,US 3349640192,3349641215,CA 3349641216,3349643263,US 3349643264,3349644287,CA 3349644288,3349645311,US 3349645312,3349647359,CA 3349647360,3349649407,US 3349649408,3349653503,CA 3349653504,3349678591,US 3349679104,3349682687,US 3349683200,3349686783,US 3349687296,3349731327,US 3349731328,3349733375,CA 3349733376,3349739519,US 3349739520,3349740543,CA 3349740544,3349987327,US 3349987328,3349996543,BM 3349996544,3349997055,KY 3349997056,3350003711,BM 3350003712,3350042879,US 3350042880,3350043135,KW 3350043136,3350134783,US 3350134784,3350146047,CA 3350146048,3350150143,US 3350150144,3350160639,CA 3350160640,3350160895,US 3350160896,3350175743,CA 3350176256,3350181887,CA 3350181888,3350183167,US 3350183168,3350200063,CA 3350200064,3350469119,US 3350469632,3350470655,CA 3350470656,3350475775,US 3350475776,3350476799,CA 3350476800,3350487039,US 3350487040,3350488063,CA 3350488064,3350491647,US 3350491648,3350491903,PL 3350491904,3350501631,US 3350501632,3350501887,MX 3350501888,3350505471,US 3350505472,3350507519,CA 3350507520,3350548735,US 3350548736,3350548991,CA 3350548992,3350574591,US 3350574848,3350575103,CA 3350575104,3350593535,US 3350593536,3350605823,CA 3350605824,3350606847,US 3350606848,3350607871,CA 3350607872,3350618111,US 3350618112,3350619135,CA 3350619136,3350623231,US 3350623232,3350624255,CA 3350624256,3350625279,US 3350626304,3350628351,CA 3350628352,3350642687,US 3350642688,3350643711,TC 3350643712,3350645759,US 3350645760,3350645887,CA 3350645888,3350646015,RU 3350646016,3350646783,CA 3350646784,3350648831,US 3350648832,3350650623,CA 3350650624,3350650631,US 3350650632,3350650879,CA 3350650880,3350756863,US 3350757376,3350790399,US 3350790400,3350814975,CA 3350814976,3350815231,US 3350815232,3350823423,CA 3350823424,3350823935,US 3350823936,3350834687,CA 3350834688,3350835199,US 3350835200,3350836735,CA 3350836736,3350836991,US 3350836992,3350837247,CA 3350837248,3350837759,US 3350837760,3350843391,CA 3350843392,3350843647,US 3350843648,3350855679,CA 3350855680,3350862079,US 3350862080,3350864639,CL 3350864640,3350970367,US 3350970368,3350971391,CA 3350971392,3350978559,US 3350979584,3350980607,CA 3350980608,3350994943,US 3350994944,3350998015,CA 3350998016,3351002111,US 3351002112,3351003135,CA 3351003136,3351004159,US 3351004160,3351005183,CA 3351005184,3351015423,US 3351015424,3351016447,CA 3351016448,3351030783,US 3351030784,3351031807,CA 3351031808,3351034879,US 3351034880,3351035903,CA 3351035904,3351036927,US 3351036928,3351037951,CA 3351037952,3351043071,US 3351043072,3351043583,FR 3351043584,3351044095,CA 3351044096,3351058943,US 3351058944,3351059455,CA 3351059456,3351071743,US 3351071744,3351072767,CA 3351072768,3351074815,US 3351074816,3351076863,CA 3351076864,3351080959,US 3351080960,3351081727,AG 3351081728,3351081983,DM 3351081984,3351086079,US 3351086080,3351087103,CA 3351087104,3351103487,US 3351103488,3351104511,CA 3351104512,3351112703,US 3351112704,3351113727,CA 3351113728,3351196159,US 3351196160,3351196671,VG 3351196672,3351232511,US 3351232512,3351232767,IL 3351232768,3351275519,US 3351275520,3351276543,CA 3351276544,3351293951,US 3351293952,3351294975,CA 3351294976,3351295999,US 3351296000,3351298047,CA 3351298048,3351303167,US 3351303168,3351304191,CA 3351304192,3351306239,US 3351306240,3351307263,VC 3351307264,3351308287,US 3351308288,3351310335,CA 3351310336,3351326719,US 3351326720,3351328767,CA 3351328768,3351336959,US 3351336960,3351339007,CA 3351339008,3351357439,US 3351357440,3351359487,CA 3351359488,3351372799,US 3351372800,3351373823,BM 3351373824,3351376127,US 3351376128,3351376639,PR 3351376640,3351380223,US 3351380224,3351380479,CA 3351380480,3351380735,US 3351380736,3351381759,CA 3351381760,3351382271,US 3351382272,3351382527,CA 3351382528,3351383039,US 3351383040,3351383295,CA 3351383296,3351384319,US 3351384320,3351384575,CA 3351384576,3351385343,US 3351385344,3351385599,CA 3351385600,3351386623,US 3351386624,3351386879,CA 3351386880,3351387135,US 3351387136,3351387391,CA 3351387392,3351387903,US 3351387904,3351388159,CA 3351388160,3351388927,US 3351388928,3351389439,CA 3351389440,3351390463,US 3351390464,3351390975,CA 3351390976,3351394815,US 3351394816,3351395071,CA 3351395072,3351396095,US 3351396096,3351396351,CA 3351396352,3351397375,US 3351397376,3351397631,CA 3351397632,3351397887,US 3351397888,3351398143,CA 3351398144,3351398399,US 3351398400,3351398655,CA 3351398656,3351398911,US 3351398912,3351399167,CA 3351399168,3351399423,US 3351399424,3351399935,CA 3351399936,3351400191,US 3351400192,3351400447,CA 3351400448,3351400959,US 3351400960,3351401215,CA 3351401216,3351401983,US 3351401984,3351402239,CA 3351402240,3351402495,US 3351402496,3351403775,CA 3351403776,3351404031,US 3351404032,3351404287,CA 3351404288,3351405311,US 3351405312,3351405567,CA 3351405568,3351405823,US 3351405824,3351406079,CA 3351406080,3351407103,US 3351407104,3351407359,CA 3351407360,3351407615,US 3351407616,3351407871,CA 3351407872,3351408895,US 3351408896,3351409407,CA 3351409408,3351410687,US 3351410688,3351410943,CA 3351410944,3351411711,US 3351411712,3351411967,CA 3351411968,3351412223,US 3351412224,3351412479,CA 3351412480,3351412735,US 3351412736,3351413247,CA 3351413248,3351413503,US 3351413504,3351413759,CA 3351413760,3351414271,US 3351414272,3351414783,CA 3351414784,3351415039,US 3351415040,3351415551,CA 3351415552,3351415807,US 3351415808,3351416063,CA 3351416064,3351417087,US 3351417088,3351417599,CA 3351417600,3351419647,US 3351419648,3351419903,CA 3351419904,3351423743,US 3351423744,3351423999,PR 3351424000,3351428351,US 3351428352,3351428607,CA 3351428608,3351436031,US 3351436032,3351436287,CA 3351436288,3351436543,US 3351436544,3351436799,PR 3351436800,3351437055,US 3351437056,3351437311,CA 3351437312,3351437567,US 3351437568,3351437823,CA 3351437824,3351438079,US 3351438080,3351438335,CA 3351438336,3351438591,US 3351438592,3351439103,CA 3351439104,3351441151,US 3351441152,3351441407,CA 3351441408,3351441919,US 3351441920,3351442175,CA 3351442176,3351447039,US 3351447552,3351474687,US 3351474688,3351475199,CA 3351475200,3351475711,US 3351475712,3351475967,IS 3351475968,3351483391,US 3351483392,3351484415,CA 3351484416,3351486463,US 3351486464,3351488511,CA 3351488512,3351494911,US 3351494912,3351495679,SG 3351495680,3351495935,US 3351495936,3351495989,SG 3351495990,3351495990,US 3351495991,3351496191,SG 3351496192,3351497727,US 3351497728,3351498751,CA 3351498752,3351501823,US 3351501824,3351502847,JM 3351502848,3351503871,US 3351503872,3351504895,CA 3351504896,3351524095,US 3351524096,3351524351,GB 3351524352,3351642111,US 3351642112,3351695871,CA 3351695872,3351696383,US 3351696384,3351696639,CA 3351696640,3351697407,US 3351697408,3351698431,CA 3351698432,3351699199,US 3351699200,3351699455,CA 3351699456,3351706367,US 3351706368,3351706623,CA 3351706624,3351860223,US 3351860224,3351861247,KY 3351861248,3351869439,US 3351869440,3351871487,CA 3351871488,3351895551,US 3351895552,3351895807,CA 3351895808,3351904255,US 3351904256,3351927551,CA 3351927552,3351927807,US 3351927808,3351933951,CA 3351933952,3351939071,US 3351939072,3351959551,CA 3351959552,3351961599,US 3351961600,3351963647,CA 3351963648,3351969279,US 3351969280,3351969535,CA 3351969536,3351969791,US 3351969792,3352035327,IL 3352035328,3352036351,CA 3352036352,3352046591,US 3352046592,3352049663,CA 3352049664,3352051711,US 3352051712,3352055807,CA 3352055808,3352066047,US 3352066048,3352067071,CA 3352067072,3352068095,US 3352068096,3352069119,CA 3352069120,3352088575,US 3352088576,3352090623,CA 3352090624,3352094719,US 3352094720,3352096767,VG 3352096768,3352559871,US 3352559872,3352563199,CA 3352563200,3352563455,US 3352563456,3352573951,CA 3352573952,3352574463,US 3352574464,3352581631,CA 3352581632,3352582143,US 3352582144,3352583935,CA 3352583936,3352584191,US 3352584192,3352591359,CA 3352591360,3352591615,US 3352591616,3352615423,CA 3352615424,3352616959,US 3352616960,3352887295,CA 3352887296,3352918015,US 3352918016,3352919039,CA 3352919040,3353335335,US 3353335336,3353335337,NL 3353335338,3353653503,US 3353653504,3353653759,GB 3353653760,3353714431,US 3353714432,3353714687,BE 3353714688,3353722367,US 3353722368,3353722623,GB 3353722624,3353726975,US 3353726976,3353727231,IN 3353727232,3353729023,US 3353729024,3353729279,HK 3353729280,3353730047,US 3353730048,3353731071,CA 3353731072,3353732607,US 3353732608,3353732863,DE 3353732864,3353736191,US 3353736192,3353736447,PR 3353736448,3353736703,US 3353736704,3353736959,PR 3353736960,3353737215,US 3353737216,3353737471,GB 3353737472,3353780223,US 3353780224,3353780479,GB 3353780480,3353836799,US 3353836800,3353837311,CA 3353837312,3353855999,US 3353856000,3353858047,CA 3353858048,3353861119,US 3353861120,3353862143,CA 3353862144,3353862719,US 3353862720,3353862751,CA 3353862752,3353864959,US 3353864960,3353865215,CA 3353865216,3353884927,US 3353884928,3353885183,GB 3353885184,3353942527,US 3353942528,3353943039,CA 3353943040,3353958143,US 3353958400,3353960191,US 3353960192,3353960447,CA 3353960448,3353979647,US 3353979648,3353979903,CA 3353979904,3353982719,US 3353982720,3353983231,CA 3353983232,3354066943,US 3354066944,3354132479,CA 3354132480,3354492927,US 3354492928,3354494975,CA 3354494976,3354499071,US 3354499072,3354501119,AU 3354501120,3354503167,CA 3354503168,3354513151,US 3354513152,3354513407,CA 3354513408,3354591231,US 3354591232,3354656767,CA 3354656768,3354676223,US 3354676224,3354677247,CA 3354677248,3354686975,US 3354686976,3354687231,CN 3354687232,3354687487,US 3354687488,3354688511,CA 3354688512,3354707455,US 3354707456,3354707967,CA 3354707968,3354770687,US 3354770688,3354770943,CA 3354770944,3354788095,US 3354788096,3354807551,CA 3354807552,3354810367,US 3354810368,3354814975,CA 3354814976,3354815231,US 3354815232,3354823423,CA 3354823424,3354823679,US 3354823680,3354853119,CA 3354853120,3354853375,US 3354853376,3354918911,CA 3354918912,3354955775,US 3354955776,3354956031,AR 3354956032,3354972159,US 3354972160,3354972415,CA 3354972416,3355012607,US 3355012608,3355017215,CA 3355017216,3355052287,US 3355052288,3355053311,CA 3355053312,3355249151,US 3355249152,3355249663,CA 3355249664,3355260927,US 3355260928,3355262719,CA 3355262720,3355308287,US 3355308288,3355308543,GB 3355308544,3355310591,US 3355310592,3355311103,CA 3355311104,3355319295,US 3355319296,3355320319,CA 3355320320,3355324415,US 3355324416,3355328511,CA 3355328512,3355338751,US 3355338752,3355340799,BB 3355340800,3355351039,US 3355351040,3355351295,CA 3355351296,3355372287,US 3355372288,3355372543,CA 3355372544,3355384831,US 3355384832,3355385855,CA 3355385856,3355389439,US 3355389440,3355389695,GB 3355389696,3355389951,JP 3355389952,3355407359,US 3355407360,3355408383,PR 3355408384,3355412479,US 3355412480,3355412607,BE 3355412608,3355412735,US 3355412736,3355412991,BE 3355412992,3355432959,US 3355432960,3355435007,CA 3355435008,3355443199,US 3355443200,3355443200,JP 3355443201,3355445247,CO 3355445248,3355447295,BR 3355447296,3355447551,CU 3355447552,3355447807,AR 3355447808,3355448063,HT 3355448064,3355448319,AR 3355448320,3355448831,CW 3355448832,3355449343,SX 3355449344,3355450367,CU 3355450368,3355451391,EC 3355451392,3355459327,BR 3355459328,3355459583,EC 3355459584,3355459839,PA 3355459840,3355460095,VE 3355460096,3355460351,CL 3355460352,3355460607,BR 3355460608,3355460863,UY 3355460864,3355461887,BR 3355461888,3355463423,EC 3355463424,3355463935,AR 3355463936,3355464191,BR 3355464192,3355464447,CL 3355464448,3355464959,MX 3355464960,3355465727,BR 3355465728,3355465983,UY 3355465984,3355466239,BR 3355466240,3355466751,MX 3355466752,3355467007,BR 3355467008,3355467263,MX 3355467264,3355467519,US 3355467520,3355467775,MX 3355467776,3355468799,AR 3355468800,3355469567,BR 3355469568,3355470591,MX 3355470592,3355470847,PE 3355470848,3355471103,CL 3355471104,3355471359,MX 3355471360,3355471615,PE 3355471616,3355472383,MX 3355472384,3355472639,BR 3355472640,3355473407,CL 3355473408,3355473919,PE 3355473920,3355475199,CL 3355475200,3355477503,MX 3355477504,3355478015,BR 3355478016,3355478271,PE 3355478272,3355478783,US 3355478784,3355479039,VE 3355479040,3355479551,CL 3355479552,3355479807,PE 3355479808,3355480063,MX 3355480064,3355485183,CL 3355485184,3355487743,PE 3355487744,3355487999,CL 3355488000,3355488255,AR 3355488256,3355488767,GT 3355488768,3355489023,PA 3355489024,3355489279,CR 3355489280,3355489535,SV 3355489536,3355491071,AR 3355491072,3355491327,CO 3355491328,3355494655,AR 3355494656,3355494911,CO 3355494912,3355495423,PA 3355495424,3355496447,UY 3355496448,3355498495,AR 3355498496,3355500543,US 3355500544,3355508735,AR 3355508736,3355510271,VE 3355510272,3355510527,EC 3355510528,3355510783,AR 3355510784,3355512831,VE 3355512832,3355516927,CL 3355516928,3355525119,AR 3355525120,3355535359,CO 3355535360,3355537407,TT 3355537408,3355537663,BR 3355537664,3355537919,AR 3355538176,3355538431,CL 3355538432,3355539199,AR 3355539200,3355539455,VE 3355539456,3355540479,CL 3355540480,3355540735,CO 3355540736,3355540991,BZ 3355540992,3355541503,CO 3355541504,3355545599,CL 3355545600,3355547647,VE 3355547648,3355547903,NI 3355547904,3355548159,GT 3355548160,3355548671,DO 3355548672,3355549695,SR 3355549696,3355549951,BM 3355549952,3355550207,EC 3355550208,3355552767,VE 3355552768,3355553023,EC 3355553024,3355553279,CO 3355553280,3355553535,CL 3355553536,3355553791,CO 3355553792,3355555839,PE 3355555840,3355557887,VE 3355557888,3355559935,CO 3355559936,3355561983,PY 3355561984,3355564031,SR 3355564032,3355566079,BR 3355566080,3355574271,AR 3355574272,3355576319,CL 3355576320,3355578367,VE 3355578368,3355582463,CL 3355582464,3355590655,UY 3355590656,3355592703,CO 3355592704,3355599871,CL 3355599872,3355600895,BR 3355600896,3355604991,CL 3355604992,3355607039,AR 3355607040,3355615231,HT 3355615232,3355623423,SR 3355623424,3355639807,CL 3355639808,3355642367,VE 3355642368,3355642879,PA 3355642880,3355643903,UY 3355643904,3355647999,BR 3355648000,3355668991,AR 3355668992,3355669247,PE 3355669248,3355672575,AR 3355672576,3355677183,CO 3355677184,3355677439,GT 3355677440,3355682815,CO 3355682816,3355684863,AR 3355684864,3355686911,TT 3355686912,3355688959,AR 3355688960,3355689471,CO 3355689472,3355689727,HN 3355689728,3355689983,AR 3355689984,3355693055,PA 3355693056,3355695103,CL 3355695104,3355697151,AR 3355697152,3355701503,HN 3355701504,3355702015,PE 3355702016,3355702271,AR 3355702272,3355703295,CO 3355703296,3355705343,PY 3355705344,3355709439,MX 3355709440,3355713535,CO 3355713536,3355720447,MX 3355720448,3355720703,AR 3355720704,3355722751,MX 3355722752,3355723263,AR 3355723264,3355746303,MX 3355746304,3355754495,HT 3355754496,3355770879,PE 3355770880,3355773183,PR 3355773184,3355773439,BR 3355773440,3355773695,AR 3355773696,3355773951,PR 3355773952,3355774975,CU 3355774976,3355779071,VE 3355779072,3355781119,BR 3355781120,3355783167,VE 3355783168,3355785215,AR 3355785216,3355787263,CR 3355787264,3355803647,AR 3355803648,3355820031,VE 3355820032,3355836415,AR 3355836416,3355841023,EC 3355841024,3355841279,CL 3355841280,3355843327,EC 3355843328,3355843583,VE 3355843584,3355844863,EC 3355844864,3355845119,CL 3355845120,3355845375,EC 3355845376,3355848959,BR 3355849728,3355849983,PA 3355849984,3355850495,CL 3355850496,3355850751,NI 3355850752,3355852799,CW 3355852800,3355856639,CL 3355856640,3355856895,PA 3355856896,3355858943,EC 3355860992,3355869183,CL 3355869184,3355870719,BR 3355870720,3355871231,CR 3355871232,3355873279,BR 3355873280,3355875327,BQ 3355875328,3355877375,MX 3355877376,3355885567,CO 3355885568,3355901951,GT 3355901952,3355902975,BR 3355902976,3355903999,CL 3355904000,3355905535,BR 3355905536,3355905791,PY 3355905792,3355906047,AR 3355906048,3355910143,CL 3355910144,3355918335,SX 3355918336,3355923455,EC 3355923456,3355924479,UY 3355924480,3355926527,TT 3355926528,3355927039,NL 3355927040,3355928063,US 3355928064,3355930623,PA 3355930624,3355934719,BR 3355934720,3355939839,AR 3355939840,3355940863,SR 3355940864,3355942911,AR 3355942912,3355947007,BO 3355947008,3355949055,AR 3355949056,3355951103,CW 3355951104,3355967487,EC 3355967488,3356033023,VE 3356033024,3356033791,BR 3356033792,3356034047,CL 3356034048,3356035071,PY 3356035072,3356037119,MX 3356037120,3356041215,CO 3356041216,3356049407,CR 3356049408,3356049663,CL 3356049664,3356051455,BR 3356051456,3356051711,CO 3356051712,3356051967,CL 3356051968,3356052223,GT 3356052224,3356052479,AR 3356052480,3356053247,BR 3356053248,3356054015,CL 3356054016,3356054527,US 3356054528,3356057087,BR 3356057088,3356057343,CO 3356057344,3356057599,BR 3356057600,3356057855,EC 3356057856,3356059135,CL 3356059136,3356060671,BR 3356060672,3356061695,CL 3356061696,3356062463,BR 3356062464,3356062719,JM 3356062720,3356063743,CR 3356064000,3356064255,BR 3356064256,3356064511,CL 3356064512,3356065791,BR 3356065792,3356066047,CL 3356066048,3356069119,BR 3356069120,3356069631,CL 3356069632,3356070143,BR 3356070144,3356070655,CL 3356070656,3356070911,AR 3356070912,3356071423,BR 3356071424,3356072447,CL 3356073216,3356073471,AR 3356073472,3356075263,BR 3356075264,3356076287,BO 3356076288,3356078079,BR 3356078080,3356078335,EC 3356078336,3356079359,CL 3356079360,3356079615,AR 3356079616,3356080127,MX 3356080128,3356080383,BR 3356080384,3356080639,MX 3356080640,3356080895,BR 3356080896,3356082431,NI 3356082432,3356082687,CL 3356082688,3356082943,AR 3356082944,3356083967,CL 3356083968,3356084479,BR 3356084480,3356084735,CL 3356084736,3356085247,BR 3356085248,3356085759,CL 3356085760,3356086015,BR 3356086272,3356086527,AR 3356086528,3356087295,CR 3356087296,3356087807,AR 3356087808,3356088063,BR 3356088064,3356088319,CL 3356088320,3356089087,TT 3356089088,3356089343,AR 3356089344,3356090623,BR 3356090624,3356090879,CL 3356090880,3356091135,BR 3356091136,3356091391,AR 3356091392,3356091647,CL 3356091648,3356091903,BR 3356091904,3356092927,CL 3356092928,3356093183,BR 3356093184,3356093951,AR 3356093952,3356094975,CL 3356094976,3356096255,AR 3356096256,3356096511,CL 3356096512,3356096767,EC 3356096768,3356097791,BR 3356097792,3356098303,AR 3356098304,3356098559,GT 3356098560,3356099583,CL 3356099584,3356100607,BR 3356100608,3356102399,CL 3356102400,3356102655,PA 3356102656,3356105727,CL 3356105728,3356106751,SV 3356106752,3356107975,BR 3356107976,3356107983,IS 3356107984,3356109119,BR 3356109120,3356109135,FR 3356109136,3356109263,BR 3356109264,3356109271,DE 3356109272,3356109495,BR 3356109496,3356109503,IT 3356109504,3356109687,BR 3356109688,3356109695,CA 3356109696,3356113919,BR 3356113920,3356114943,UY 3356114944,3356123135,PE 3356123136,3356131839,AR 3356131840,3356132351,PE 3356132352,3356134143,BR 3356134144,3356134655,AR 3356134656,3356134911,PY 3356134912,3356135167,DO 3356135168,3356135423,MX 3356135424,3356135679,BR 3356135680,3356135935,CR 3356135936,3356136191,BR 3356136192,3356137471,EC 3356137472,3356137727,JM 3356137728,3356138239,BR 3356138240,3356138495,US 3356138496,3356138751,BR 3356139264,3356139519,BR 3356139520,3356139775,US 3356139776,3356140031,AR 3356140032,3356140287,DO 3356140288,3356140543,BR 3356140544,3356140799,CO 3356140800,3356141311,BM 3356141312,3356142847,CL 3356142848,3356143103,GT 3356143104,3356143615,BR 3356144128,3356145151,BR 3356145152,3356145407,CL 3356145408,3356145663,BR 3356145664,3356145919,CL 3356145920,3356146175,BR 3356146176,3356146431,AR 3356146432,3356146687,BR 3356146688,3356146943,PE 3356146944,3356147199,BR 3356147200,3356147455,CL 3356147456,3356148223,BR 3356148224,3356148479,BZ 3356148480,3356148735,CL 3356148736,3356148991,AR 3356148992,3356149503,MX 3356149504,3356149759,AR 3356149760,3356150015,MX 3356150016,3356150527,AR 3356150528,3356150783,PA 3356150784,3356151039,AR 3356151040,3356151295,NI 3356151552,3356151807,AR 3356151808,3356152063,CL 3356152064,3356152575,BR 3356152576,3356152831,CL 3356152832,3356154623,MX 3356154624,3356154879,AR 3356154880,3356156671,CL 3356156672,3356156927,BR 3356156928,3356157951,PY 3356157952,3356158207,CL 3356158208,3356158463,MX 3356158464,3356158719,CL 3356158976,3356159999,CL 3356160000,3356160255,MX 3356160256,3356160511,GT 3356160512,3356160767,CL 3356160768,3356162559,MX 3356162560,3356162815,PE 3356162816,3356163583,CL 3356163584,3356163839,VE 3356163840,3356164095,CL 3356164096,3356171519,BR 3356171520,3356171775,AR 3356171776,3356172031,NI 3356172032,3356172287,SV 3356172288,3356172543,PE 3356172544,3356172799,AR 3356172800,3356174335,PE 3356174336,3356176383,CO 3356176384,3356180479,PE 3356180480,3356190719,CL 3356190720,3356192767,DO 3356192768,3356194815,AR 3356196864,3356213247,KY 3356213248,3356229631,VE 3356229632,3356233727,BR 3356233728,3356237823,CL 3356237824,3356246015,GT 3356246016,3356262655,MX 3356262656,3356263167,CL 3356263424,3356263679,CL 3356263680,3356265215,AR 3356265216,3356265471,BR 3356265472,3356267007,CL 3356267008,3356267263,PY 3356267264,3356268799,CL 3356268800,3356269055,PA 3356269056,3356269311,AR 3356269312,3356269823,UY 3356270080,3356272383,MX 3356272384,3356272639,CR 3356272640,3356272895,US 3356272896,3356273151,EC 3356273152,3356273407,CO 3356273408,3356273663,CL 3356273664,3356274431,SV 3356274432,3356278783,CO 3356278784,3356279039,AR 3356279040,3356279295,VE 3356279296,3356279807,CL 3356279808,3356280831,EC 3356280832,3356282879,AR 3356282880,3356284927,PA 3356284928,3356286975,AR 3356286976,3356287487,US 3356287488,3356287743,SV 3356287744,3356288255,HN 3356288256,3356288767,SV 3356288768,3356289023,GT 3356289024,3356289791,SV 3356289792,3356290303,US 3356290304,3356290559,SV 3356290560,3356291071,CR 3356291072,3356293119,TT 3356293120,3356295167,BO 3356295168,3356297215,CL 3356297216,3356299263,BR 3356299264,3356305663,MX 3356305664,3356307455,AR 3356307456,3356316415,MX 3356316416,3356316671,AR 3356317696,3356328959,MX 3356328960,3356329983,HN 3356329984,3356332031,GF 3356332032,3356334079,CU 3356334080,3356336127,BO 3356336128,3356336895,SV 3356336896,3356338175,HN 3356338176,3356339967,SV 3356339968,3356341247,HN 3356341248,3356341503,SV 3356341504,3356342271,HN 3356342272,3356343039,SV 3356343040,3356343551,HN 3356343552,3356344319,SV 3356344320,3356360703,CO 3356360704,3356362751,CL 3356362752,3356364799,VE 3356364800,3356368895,MX 3356368896,3356369407,BR 3356369408,3356369663,EC 3356369664,3356369919,BR 3356369920,3356370943,AR 3356370944,3356372991,CO 3356372992,3356375039,CU 3356377088,3356379647,CL 3356379648,3356380159,AR 3356380160,3356380927,CL 3356380928,3356381183,DO 3356381184,3356381439,CL 3356381440,3356381695,PA 3356381696,3356381951,CL 3356381952,3356382207,EC 3356382208,3356389375,CL 3356389376,3356389887,CO 3356389888,3356390399,CL 3356390400,3356390655,AR 3356390656,3356391167,CL 3356391168,3356391423,PA 3356393472,3356413439,CL 3356413440,3356413823,CO 3356413824,3356419839,CL 3356419840,3356419967,CO 3356419968,3356420863,CL 3356420864,3356421375,CO 3356421376,3356421631,CL 3356421632,3356422143,CO 3356422144,3356425471,CL 3356425472,3356425599,CO 3356425600,3356426239,CL 3356426240,3356427263,BR 3356427264,3356491775,US 3356491776,3356493823,PE 3356493824,3356495871,ZA 3356495872,3356499967,AR 3356499968,3356508159,MX 3356508160,3356508671,AR 3356508672,3356509183,CR 3356509184,3356509439,VE 3356509440,3356509503,US 3356509504,3356510207,VE 3356510208,3356511999,AR 3356512000,3356512255,CO 3356512256,3356514303,AR 3356514304,3356514559,US 3356514560,3356514815,AR 3356514816,3356515327,DO 3356515328,3356515839,CW 3356515840,3356516095,EC 3356516096,3356516351,VE 3356516352,3356520447,AR 3356520448,3356521471,CL 3356521472,3356521727,AR 3356521728,3356522495,CO 3356522496,3356557311,AR 3356557312,3356819455,BR 3356819456,3356884991,CO 3356884992,3356950527,CL 3356950528,3356958463,MX 3356958720,3356967167,MX 3356967424,3356967935,MX 3356967936,3356968959,BR 3356968960,3356972031,MX 3356972288,3356979967,MX 3356980480,3356980735,MX 3356981248,3356988415,MX 3356988672,3356989439,MX 3356989952,3356996607,MX 3356996608,3356997631,BR 3356997632,3356998911,MX 3356999168,3357003007,MX 3357003776,3357007871,MX 3357007872,3357011967,BR 3357011968,3357015551,MX 3357016064,3357018623,CO 3357018624,3357019135,BR 3357019136,3357020159,CL 3357020160,3357032447,CO 3357032448,3357040639,BR 3357040640,3357048831,CO 3357048832,3357057023,EC 3357057024,3357065215,PE 3357065216,3357073407,EC 3357073408,3357077503,CL 3357077504,3357081599,AR 3357081600,3357114367,CO 3357114368,3357138943,EC 3357138944,3357147135,CO 3357147136,3357179903,AR 3357179904,3357188095,CO 3357188096,3357190143,VE 3357190144,3357192191,DO 3357192192,3357194239,PY 3357194240,3357196287,AR 3357196288,3357212671,CW 3357212672,3357368319,CL 3357368320,3357376511,CO 3357376512,3357403135,CL 3357403136,3357405183,CO 3357405184,3357407231,EC 3357407232,3357409279,AR 3357409280,3357411327,BR 3357411328,3357412351,VE 3357412352,3357412863,PE 3357412864,3357413119,CA 3357413120,3357413375,FR 3357413376,3357414399,US 3357414400,3357415423,PR 3357415424,3357415679,US 3357415680,3357416447,MX 3357416448,3357417215,VE 3357417216,3357417471,US 3357417472,3357418495,CL 3357418496,3357418751,NI 3357418752,3357419007,PR 3357419008,3357419519,GT 3357419520,3357420031,SZ 3357420032,3357421055,CO 3357421056,3357421311,CL 3357421312,3357421567,CO 3357421568,3357422847,NI 3357422848,3357423103,PR 3357423104,3357423359,CO 3357423360,3357424639,VE 3357424640,3357425663,CL 3357425664,3357442047,CO 3357442048,3357442303,NI 3357442304,3357442319,GT 3357442320,3357442327,HN 3357442328,3357442335,GT 3357442336,3357442343,HN 3357442344,3357442391,GT 3357442392,3357442395,HN 3357442396,3357442559,GT 3357442560,3357442815,NI 3357442816,3357443071,SV 3357443072,3357443327,NI 3357443328,3357443583,GT 3357443584,3357444351,HN 3357444352,3357444479,GT 3357444480,3357444487,HN 3357444488,3357444607,GT 3357444608,3357444863,SV 3357444864,3357448407,GT 3357448408,3357448415,SV 3357448416,3357448447,GT 3357448448,3357448703,SV 3357448704,3357448959,GT 3357448960,3357449487,HN 3357449488,3357449519,GT 3357449520,3357449527,HN 3357449528,3357449695,GT 3357449696,3357449703,HN 3357449704,3357450751,GT 3357450752,3357451007,SV 3357451008,3357451119,GT 3357451120,3357451127,HN 3357451128,3357451143,GT 3357451144,3357451151,HN 3357451152,3357451263,GT 3357451264,3357451519,HN 3357451520,3357451575,GT 3357451576,3357451583,NI 3357451584,3357452287,GT 3357452288,3357452799,HN 3357452800,3357453055,NI 3357453056,3357453071,GT 3357453072,3357453079,SV 3357453080,3357453135,GT 3357453136,3357453151,SV 3357453152,3357453311,GT 3357453312,3357453567,HN 3357453568,3357454591,GT 3357454592,3357454847,NI 3357454848,3357455103,HN 3357455104,3357455359,SV 3357455360,3357455871,GT 3357455872,3357456127,NI 3357456128,3357456639,GT 3357456640,3357456895,HN 3357456896,3357457711,GT 3357457712,3357457727,CR 3357457728,3357457919,GT 3357457920,3357458047,HN 3357458048,3357458431,GT 3357458432,3357474815,CL 3357474816,3357475015,US 3357475016,3357475019,AR 3357475020,3357475071,US 3357475072,3357475887,AR 3357475888,3357475903,VE 3357475904,3357475999,AR 3357476000,3357476015,VE 3357476016,3357476031,AR 3357476032,3357476047,VE 3357476048,3357476071,AR 3357476072,3357476079,VE 3357476080,3357476287,AR 3357476288,3357476351,VE 3357476352,3357476479,AR 3357476480,3357476607,EC 3357476608,3357476687,AR 3357476688,3357476703,US 3357476704,3357476735,AR 3357476736,3357476799,US 3357476800,3357476863,AR 3357476864,3357477375,EC 3357477376,3357477423,AR 3357477424,3357477431,EC 3357477432,3357477543,AR 3357477544,3357477551,EC 3357477552,3357477887,AR 3357477888,3357479167,CO 3357479168,3357479183,AR 3357479184,3357479191,CO 3357479192,3357479215,AR 3357479216,3357479223,CO 3357479224,3357479551,AR 3357479552,3357479679,CO 3357479680,3357479863,AR 3357479864,3357479867,CO 3357479868,3357479871,AR 3357479872,3357479879,CO 3357479880,3357480103,AR 3357480104,3357480111,CO 3357480112,3357480335,AR 3357480336,3357480343,CO 3357480344,3357480359,AR 3357480360,3357480367,CO 3357480368,3357480407,AR 3357480408,3357480415,CO 3357480416,3357480463,AR 3357480464,3357480479,CO 3357480480,3357480511,AR 3357480512,3357480543,CO 3357480544,3357480703,AR 3357480704,3357480959,CO 3357480960,3357483007,EC 3357483008,3357491199,CL 3357491200,3357499391,CO 3357499392,3357507583,PE 3357507584,3357515775,VE 3357515776,3357523967,SV 3357523968,3357532159,CO 3357532160,3357556735,AR 3357556736,3357556991,VE 3357556992,3357557247,AR 3357557248,3357557759,MX 3357557760,3357559295,EC 3357559296,3357559551,CA 3357559552,3357559807,US 3357559808,3357559935,AR 3357559936,3357560063,VE 3357560064,3357560159,AR 3357560160,3357560167,VE 3357560168,3357560175,AR 3357560176,3357560183,VE 3357560184,3357560199,AR 3357560200,3357560207,VE 3357560208,3357560247,AR 3357560248,3357560255,VE 3357560256,3357560263,AR 3357560264,3357560271,VE 3357560272,3357560319,AR 3357560320,3357560575,MX 3357560576,3357560831,US 3357560832,3357561855,CO 3357561856,3357581311,AR 3357581312,3357589503,CL 3357589504,3357605887,BZ 3357605888,3357606911,MX 3357606912,3357607167,AR 3357607168,3357613055,MX 3357613056,3357613311,AR 3357613312,3357618943,MX 3357619200,3357623039,MX 3357623040,3357623295,AR 3357623296,3357626623,MX 3357627392,3357627647,MX 3357627904,3357628415,MX 3357628416,3357630463,BR 3357630720,3357633535,MX 3357633792,3357634815,MX 3357635072,3357635327,MX 3357635584,3357635839,MX 3357636096,3357637887,MX 3357638656,3357640703,BR 3357640704,3357644799,MX 3357644800,3357646847,BR 3357646848,3357647871,MX 3357647872,3357648895,BR 3357648896,3357650431,MX 3357650944,3357657855,MX 3357658112,3357670655,MX 3357670912,3357671423,MX 3357671424,3357671679,CO 3357671680,3357712383,MX 3357712384,3357713407,BR 3357713408,3357715199,MX 3357715200,3357715455,CO 3357715456,3357715711,MX 3357715968,3357723903,MX 3357724160,3357726463,MX 3357726464,3357726719,AR 3357726720,3357727743,BR 3357727744,3357728767,MX 3357728768,3357736959,BR 3357736960,3357745151,VE 3357745152,3357753343,CO 3357753344,3357757487,VE 3357757488,3357757495,BO 3357757496,3357773823,VE 3357773824,3357775871,PA 3357775872,3357776127,US 3357776128,3357776383,UY 3357776384,3357776895,US 3357776896,3357777919,CL 3357777920,3357778415,GT 3357778416,3357778423,SV 3357778424,3357784319,GT 3357784320,3357784335,SV 3357784336,3357786111,GT 3357786112,3357802495,VE 3357802496,3357868031,MX 3357868032,3357933567,PE 3357933568,3358015487,MX 3358015488,3358023679,BR 3358023680,3358064639,MX 3358064640,3358130175,UY 3358130176,3358131199,EC 3358131200,3358131327,AR 3358131328,3358131455,CO 3358131456,3358131839,AR 3358131840,3358131967,CO 3358131968,3358131983,AR 3358131984,3358132031,CO 3358132032,3358132087,AR 3358132088,3358132095,CO 3358132096,3358132127,AR 3358132128,3358132135,CO 3358132136,3358132607,AR 3358132608,3358132735,CO 3358132736,3358132975,AR 3358132976,3358133119,EC 3358133120,3358133247,AR 3358133248,3358133759,VE 3358133760,3358142719,AR 3358142720,3358142975,US 3358142976,3358143231,CO 3358143232,3358143487,VE 3358143488,3358143999,US 3358144000,3358144127,CL 3358144128,3358144255,AR 3358144256,3358144511,CL 3358144512,3358145023,VE 3358145024,3358149695,AR 3358149696,3358149703,CO 3358149704,3358149719,AR 3358149720,3358149727,CO 3358149728,3358150015,AR 3358150016,3358150143,CO 3358150144,3358150423,AR 3358150424,3358150431,CO 3358150432,3358150479,AR 3358150480,3358150655,CO 3358150656,3358150911,EC 3358150912,3358151039,AR 3358151040,3358151167,EC 3358151168,3358151263,AR 3358151264,3358151271,EC 3358151272,3358151423,AR 3358151424,3358151551,EC 3358151552,3358151679,AR 3358151680,3358152703,PE 3358152704,3358152959,US 3358152960,3358153215,EC 3358153216,3358153279,AR 3358153280,3358153311,US 3358153312,3358153343,AR 3358153344,3358153535,US 3358153536,3358153599,AR 3358153600,3358153663,PR 3358153664,3358153703,AR 3358153704,3358153711,PR 3358153712,3358153727,AR 3358153728,3358153983,EC 3358153984,3358154239,US 3358154240,3358154751,CL 3358154752,3358158847,PE 3358158848,3358159159,AR 3358159160,3358159167,US 3358159168,3358159359,AR 3358159360,3358159615,EC 3358159616,3358159871,US 3358159872,3358160895,VE 3358160896,3358236671,AR 3358236672,3358244863,CL 3358244864,3358261247,DO 3358261248,3358264063,AR 3358264064,3358264319,PY 3358264320,3358326783,AR 3358326784,3358392319,VE 3358392320,3358457855,AR 3358457856,3358523391,PA 3358523392,3358523903,VE 3358523904,3358524415,AR 3358524416,3358525951,VE 3358525952,3358526463,AR 3358526464,3358527487,VE 3358527488,3358530303,AR 3358530304,3358530943,VE 3358530944,3358531071,AR 3358531072,3358531583,VE 3358531584,3358531839,AR 3358531840,3358532351,VE 3358532352,3358532863,AR 3358532864,3358534399,VE 3358534400,3358534655,AR 3358534656,3358534911,VE 3358534912,3358535679,AR 3358535680,3358539519,VE 3358539520,3358539775,AR 3358539776,3358543871,VE 3358543872,3358544127,MX 3358544128,3358544383,AR 3358544384,3358545407,VE 3358545408,3358545663,AR 3358545664,3358548223,VE 3358548224,3358548479,AR 3358548480,3358549759,VE 3358549760,3358550015,AR 3358550016,3358552063,VE 3358552064,3358553087,AR 3358553088,3358553599,VE 3358553600,3358553855,AR 3358553856,3358554879,VE 3358554880,3358555135,AR 3358555136,3358556159,VE 3358556160,3358558463,AR 3358558464,3358558591,PY 3358558592,3358559231,AR 3358559232,3358560255,VE 3358560256,3358561791,AR 3358561792,3358562303,VE 3358562304,3358563327,PE 3358563328,3358564095,CO 3358564096,3358564351,MX 3358564352,3358566975,AR 3358566976,3358567103,VE 3358567104,3358567167,AR 3358567168,3358567231,VE 3358567232,3358567263,AR 3358567264,3358567327,VE 3358567328,3358567343,AR 3358567344,3358567375,VE 3358567376,3358567391,AR 3358567392,3358567407,VE 3358567408,3358567423,AR 3358567424,3358568959,CO 3358568960,3358569471,AR 3358569472,3358570495,VE 3358570496,3358570751,MX 3358570752,3358571263,PE 3358571264,3358572543,MX 3358572544,3358577151,AR 3358577152,3358577407,PE 3358577408,3358578431,AR 3358578432,3358578687,VE 3358578688,3358579967,CO 3358579968,3358588927,AR 3358588928,3358654463,PE 3358654464,3358658559,AR 3358658560,3358660607,CL 3358660608,3358662655,AR 3358662656,3358666751,BR 3358666752,3358695423,AR 3358695424,3358703615,GT 3358703616,3358715903,AR 3358715904,3358717951,EC 3358717952,3358719999,US 3358720000,3358728191,PR 3358728192,3358736383,CL 3358736384,3358738175,BB 3358738176,3358738687,GD 3358738688,3358739711,BB 3358739712,3358739967,KN 3358739968,3358744575,BB 3358744576,3358752767,CL 3358752768,3358756863,BB 3358756864,3358760959,CL 3358760960,3358769151,AR 3358769152,3358777343,HT 3358777344,3358779391,CR 3358779392,3358781439,EC 3358781440,3358851071,AR 3358851072,3358855167,MX 3358855168,3358859263,BR 3358859264,3358887935,MX 3358887936,3358892031,HN 3358892032,3358918655,MX 3358918656,3358924799,BR 3358924800,3358965759,MX 3358965760,3358973951,BR 3358973952,3358982143,MX 3358982144,3359047679,CL 3359047680,3359080447,AR 3359080448,3359096831,CU 3359096832,3359105023,CL 3359105024,3359109119,EC 3359109120,3359109375,US 3359109376,3359111167,AR 3359111168,3359113215,EC 3359113216,3359244287,MX 3359244288,3359260671,US 3359260672,3359268863,BO 3359268864,3359277055,AR 3359277056,3359285247,UY 3359285248,3359293439,BO 3359293440,3359305727,CO 3359305728,3359307775,DO 3359309824,3359313919,AR 3359313920,3359315967,CR 3359315968,3359318015,HN 3359318016,3359356927,AR 3359356928,3359358975,VE 3359358976,3359363071,AR 3359363072,3359367167,PA 3359367168,3359375359,AR 3359375360,3359440895,PE 3359440896,3359461951,AR 3359461952,3359462015,HN 3359462016,3359462271,AR 3359462272,3359462335,UY 3359462336,3359463399,AR 3359463400,3359463407,CO 3359463408,3359463679,AR 3359463680,3359463743,HN 3359463744,3359498239,AR 3359498240,3359502335,PY 3359502336,3359505407,AR 3359505408,3359505663,VE 3359505664,3359505919,CW 3359505920,3359506431,AR 3359506432,3359508479,US 3359508480,3359514623,VE 3359514624,3359516671,US 3359516672,3359516927,VG 3359516928,3359517183,US 3359517184,3359517439,VG 3359517440,3359517695,US 3359517696,3359517951,VG 3359517952,3359520255,US 3359520256,3359520767,AR 3359520768,3359522815,US 3359522816,3359539199,NI 3359539200,3359571967,PE 3359571968,3359579647,AR 3359579648,3359579903,US 3359579904,3359582207,AR 3359582208,3359584255,PA 3359584256,3359586303,AR 3359586304,3359588351,CL 3359588352,3359596543,AR 3359596544,3359598591,CL 3359598592,3359599615,EC 3359599616,3359621119,AR 3359621120,3359637503,EC 3359637504,3359789583,MX 3359789584,3359789599,US 3359789600,3359789823,MX 3359789824,3359789887,US 3359789888,3359797247,MX 3359797248,3359801343,BR 3359801344,3359899647,MX 3359899648,3359916031,CL 3359916032,3359932415,AR 3359932416,3359948799,MX 3359948800,3359989247,AR 3359989248,3359989503,US 3359989504,3359989759,AR 3359989760,3359997951,CO 3359997952,3360006143,AR 3360006144,3360014335,EC 3360014336,3360096255,AR 3360096256,3360104447,UY 3360104448,3360116735,CO 3360116736,3360118783,BO 3360118784,3360120831,AR 3360120832,3360124927,CO 3360124928,3360125951,VE 3360125952,3360127999,BR 3360128000,3360128319,HN 3360128320,3360128327,IT 3360128328,3360128543,HN 3360128544,3360128575,US 3360128576,3360129023,HN 3360129024,3360145407,VE 3360145408,3360153599,CL 3360153600,3360157695,AR 3360157696,3360159743,VE 3360159744,3360161791,BQ 3360161792,3360229007,CL 3360229008,3360229012,US 3360229013,3360229013,CL 3360229014,3360229023,US 3360229024,3360231775,CL 3360231776,3360231807,US 3360231808,3360244223,CL 3360244224,3360244479,CO 3360244480,3360244735,CL 3360244736,3360245759,CO 3360245760,3360246783,CL 3360246784,3360247039,AR 3360247040,3360247807,CL 3360247808,3360248063,CO 3360248064,3360248831,CL 3360248832,3360249087,CO 3360249088,3360249343,CL 3360249344,3360250367,CO 3360250368,3360250623,CL 3360250624,3360251135,CO 3360251136,3360251391,CL 3360251392,3360251903,CO 3360251904,3360253951,BO 3360253952,3360255999,SV 3360256000,3360260095,CL 3360260096,3360260351,AR 3360260352,3360260607,US 3360260608,3360276479,AR 3360276480,3360278527,VE 3360278528,3360280575,EC 3360280576,3360282623,CL 3360284672,3360325631,CL 3360325632,3360333823,CO 3360333824,3360342015,CL 3360342016,3360354303,VE 3360354304,3360356351,PA 3360356352,3360358399,CR 3360358400,3360358911,CL 3360358912,3360358919,CO 3360358920,3360366591,CL 3360366592,3360382975,CO 3360382976,3360399359,VE 3360399360,3360403455,BO 3360403456,3360405503,BR 3360405504,3360407551,HN 3360407552,3360423935,PA 3360423936,3360456447,MX 3360456448,3360456703,US 3360456704,3360534527,MX 3360534528,3360536575,BR 3360536576,3360537599,CL 3360537600,3360538623,EC 3360538624,3360667647,MX 3360667648,3360669695,BR 3360669696,3360686079,MX 3360686080,3360687919,CO 3360687920,3360687935,AR 3360687936,3360687983,CO 3360687984,3360688031,AR 3360688032,3360688127,CO 3360688128,3360688639,AR 3360688640,3360689407,CO 3360689408,3360689535,AR 3360689536,3360689919,CO 3360689920,3360690175,AR 3360690176,3360690399,CO 3360690400,3360690415,AR 3360690416,3360690623,CO 3360690624,3360690687,AR 3360690688,3360690703,CO 3360690704,3360690719,AR 3360690720,3360690847,CO 3360690848,3360690863,AR 3360690864,3360691199,CO 3360691200,3360691391,AR 3360691392,3360691455,CO 3360691456,3360691711,AR 3360691712,3360692479,CO 3360692480,3360692607,AR 3360692608,3360692735,CO 3360692736,3360692799,AR 3360692800,3360692863,CO 3360692864,3360693247,AR 3360693248,3360693279,CO 3360693280,3360693343,AR 3360693344,3360693407,CO 3360693408,3360693423,AR 3360693424,3360693503,CO 3360693504,3360693791,AR 3360693792,3360693807,CO 3360693808,3360693823,AR 3360693824,3360694439,CO 3360694440,3360694447,AR 3360694448,3360694463,CO 3360694464,3360694783,AR 3360694784,3360695039,CO 3360695040,3360695079,AR 3360695080,3360695087,CO 3360695088,3360695167,AR 3360695168,3360695199,CO 3360695200,3360695215,AR 3360695216,3360695295,CO 3360695296,3360696447,AR 3360696448,3360696511,CO 3360696512,3360696527,AR 3360696528,3360697343,CO 3360697344,3360697599,AR 3360697600,3360697855,CO 3360697856,3360698111,AR 3360698112,3360700543,CO 3360700544,3360701183,AR 3360701184,3360701695,CO 3360701696,3360701951,AR 3360701952,3360702207,CO 3360702208,3360705535,AR 3360705536,3360705791,US 3360705792,3360707071,AR 3360707072,3360707327,US 3360707328,3360707583,AR 3360707584,3360708095,US 3360708096,3360708223,AR 3360708224,3360708351,US 3360708352,3360708479,AR 3360708480,3360708863,US 3360708864,3360708991,AR 3360708992,3360709247,US 3360709248,3360709631,AR 3360709632,3360709759,US 3360709760,3360710271,AR 3360710272,3360710399,US 3360710400,3360710527,AR 3360710528,3360710655,US 3360710656,3360718847,HT 3360718848,3360763903,AR 3360763904,3360765951,GT 3360765952,3360767999,CO 3360768000,3360772351,AR 3360772352,3360772479,BO 3360772480,3360780303,AR 3360780304,3360780319,BR 3360780320,3360780399,AR 3360780400,3360780415,BR 3360780416,3360780991,AR 3360780992,3360780995,BR 3360780996,3360781791,AR 3360781792,3360781795,MX 3360781796,3360781839,AR 3360781840,3360781847,DO 3360781848,3360781943,AR 3360781944,3360781947,MX 3360781948,3360782167,AR 3360782168,3360782175,MX 3360782176,3360782239,AR 3360782240,3360782247,MX 3360782248,3360788479,AR 3360788480,3360790527,CL 3360790528,3360849919,AR 3360849920,3360882687,VE 3360882688,3360948223,CL 3360948224,3361013759,VE 3361013760,3361021695,SV 3361021696,3361021951,HN 3361021952,3361030143,PY 3361030144,3361034239,VE 3361034240,3361036287,EC 3361036288,3361046527,AR 3361046528,3361052671,BO 3361052672,3361054463,AR 3361054464,3361054719,PE 3361054720,3361058815,NI 3361058816,3361062911,AR 3361062912,3361071103,CL 3361071104,3361079295,CO 3361079296,3361144831,CL 3361144832,3361210367,BO 3361210368,3361275903,DO 3361275904,3361284095,PE 3361284096,3361296383,CL 3361296384,3361298431,SV 3361298432,3361300479,DO 3361300480,3361308671,CO 3361308672,3361325055,AR 3361325056,3361341439,CO 3361341440,3361374207,VE 3361374208,3361378303,PA 3361378304,3361380351,BO 3361380352,3361382399,EC 3361382400,3361415167,CL 3361415168,3361417215,AR 3361417216,3361419263,CL 3361419264,3361423359,AR 3361423360,3361456127,CR 3361456128,3361472511,CO 3361472512,3361538047,MX 3361538048,3361570815,VE 3361570816,3361587199,CO 3361587200,3361599487,EC 3361599488,3361601535,UY 3361601536,3361603583,EC 3361603584,3361665023,MX 3361665024,3361667071,BR 3361667072,3361668095,GT 3361668096,3361669119,BR 3361669120,3361713151,MX 3361713152,3361716223,BR 3361716224,3361717247,CL 3361717248,3361726463,BR 3361726464,3361734655,MX 3361734656,3362258943,BR 3362258944,3362324479,CL 3362324480,3362324735,AR 3362324736,3362324991,US 3362324992,3362326015,AR 3362326016,3362326271,US 3362326272,3362327039,AR 3362327040,3362327551,US 3362327552,3362328063,AR 3362328064,3362328575,US 3362328576,3362337279,AR 3362337280,3362338047,US 3362338048,3362338559,AR 3362338560,3362338815,US 3362338816,3362339327,AR 3362339328,3362339583,US 3362339584,3362342143,AR 3362342144,3362342399,PA 3362342400,3362343423,AR 3362343424,3362343679,US 3362343680,3362344447,AR 3362344448,3362344959,US 3362344960,3362345983,AR 3362345984,3362346495,US 3362346496,3362348799,AR 3362348800,3362349055,US 3362349056,3362351103,CR 3362351104,3362353151,AR 3362353152,3362355199,EC 3362355200,3362357247,AR 3362357248,3362381823,BO 3362381824,3362390015,EC 3362390016,3362422783,PE 3362422784,3362426879,CO 3362426880,3362428927,PA 3362428928,3362430975,CL 3362430976,3362447359,CO 3362447360,3362448895,HN 3362448896,3362449151,SV 3362449152,3362449407,HN 3362449408,3362450431,SV 3362450432,3362451455,HN 3362451456,3362452479,AR 3362452480,3362452991,BO 3362452992,3362453247,HN 3362453248,3362453503,NI 3362453504,3362455551,AR 3362455552,3362471935,EC 3362471936,3362476031,CL 3362476032,3362476287,HN 3362476288,3362476543,AR 3362476544,3362477055,CR 3362477056,3362478079,BQ 3362478080,3362484223,AR 3362486272,3362488319,HN 3362488320,3362504703,PE 3362504704,3362506751,VE 3362506752,3362508799,AR 3362508800,3362510847,HN 3362512896,3362514943,AR 3362514944,3362516991,HN 3362516992,3362519039,BO 3362519040,3362521087,EC 3362521088,3362529279,TT 3362529280,3362537471,PA 3362537472,3362545663,AR 3362545664,3362549759,PE 3362549760,3362551871,AR 3362551872,3362551887,MX 3362551888,3362552143,AR 3362552144,3362552159,PR 3362552160,3362553023,AR 3362553024,3362553039,PR 3362553040,3362553167,AR 3362553168,3362553183,DO 3362553184,3362553247,AR 3362553248,3362553263,CO 3362553264,3362553855,AR 3362553856,3362557951,PY 3362557952,3362562047,AR 3362570240,3362586623,UY 3362586624,3362652159,VE 3362652160,3362664447,PE 3362664448,3362668543,BO 3362668544,3362676735,EC 3362680832,3362684927,EC 3362684928,3362688767,AR 3362688768,3362689279,CO 3362689280,3362689311,AR 3362689312,3362690367,CO 3362690368,3362690431,AR 3362690432,3362690527,CO 3362690528,3362690559,AR 3362690560,3362691071,CO 3362691072,3362692095,PA 3362692096,3362692287,AR 3362692288,3362692351,CO 3362692352,3362692607,MX 3362692608,3362692863,CO 3362692864,3362695167,AR 3362695168,3362697215,CO 3362697216,3362703359,AR 3362705408,3362711551,AR 3362711552,3362713599,EC 3362713600,3362714623,VE 3362714624,3362714879,HN 3362714880,3362716415,VE 3362716416,3362716671,CR 3362716672,3362717695,VE 3362717696,3362815999,CL 3362816000,3362832383,AR 3362832384,3362838527,CO 3362838528,3362840575,EC 3362840576,3362897919,CL 3362897920,3362903551,HT 3362903552,3362904063,MX 3362904064,3362914303,HT 3362914304,3362930687,CO 3362930688,3362934783,CL 3362934784,3362936831,AR 3362936832,3362938879,CL 3362938880,3362942975,AR 3362942976,3362945023,GT 3362945024,3362983935,AR 3362983936,3362984447,PY 3362984448,3362984703,CR 3362984704,3362984959,PA 3362984960,3362985983,PE 3362985984,3362988031,AR 3362988032,3362992127,EC 3362992128,3362996223,AR 3362996224,3363000319,UY 3363000320,3363004415,AR 3363012608,3363013967,PA 3363013968,3363013975,NI 3363013976,3363024895,PA 3363024896,3363025151,HN 3363025152,3363025407,PA 3363025408,3363025663,CO 3363025664,3363025919,CW 3363025920,3363026431,CO 3363026432,3363026943,HT 3363026944,3363027199,CL 3363027200,3363027967,AR 3363027968,3363028991,HN 3363028992,3363045375,AR 3363045376,3363110911,CO 3363110912,3363176447,AR 3363176448,3363274751,CO 3363274752,3363291135,GT 3363291136,3363299327,BO 3363299328,3363373055,CL 3363373056,3363438591,PE 3363438592,3363471359,AR 3363471360,3363487743,CR 3363487744,3363504127,CO 3363504128,3363512319,PE 3363512320,3363554047,AR 3363554048,3363554175,US 3363554176,3363554943,AR 3363554944,3363555071,US 3363555072,3363555839,AR 3363555840,3363556223,US 3363556224,3363556351,AR 3363556352,3363556607,US 3363556608,3363557375,AR 3363557376,3363559423,BZ 3363559424,3363561471,AR 3363565568,3363569663,AR 3363569664,3363577855,PA 3363577856,3363586047,CL 3363594240,3363600383,AR 3363600384,3363600639,PY 3363600640,3363600895,VE 3363600896,3363601407,AR 3363601408,3363601919,CO 3363601920,3363602175,AR 3363602176,3363602431,PA 3363602432,3363610623,CW 3363614720,3363617791,AR 3363617792,3363618815,PE 3363618816,3363627007,UY 3363627008,3363635199,EC 3363635200,3363651583,UY 3363651584,3363667967,AR 3363667968,3363676159,EC 3363676160,3363678207,TT 3363680256,3363682303,GT 3363682304,3363684351,VE 3363684352,3363708927,EC 3363708928,3363713023,CL 3363713024,3363713279,EC 3363713280,3363714047,CL 3363714048,3363717119,PE 3363717120,3363733503,CL 3363733504,3363831807,AR 3363831808,3367723007,BR 3367727104,3367763967,BR 3367763968,3367774207,MX 3367774208,3367776255,BR 3367776256,3367788543,MX 3367788544,3367796735,BR 3367796736,3367804927,MX 3367804928,3367840767,BR 3367840768,3367841023,HN 3367841024,3367841039,CA 3367841040,3367841791,HN 3367841792,3368052991,BR 3368052992,3368053247,PE 3368053760,3368086527,BR 3368086528,3368087551,CR 3368087552,3369594879,BR 3369598976,3370188799,BR 3370188800,3370196991,MX 3370196992,3370214399,BR 3370214400,3370215423,AR 3370215424,3370487807,BR 3370487808,3370488831,CR 3370488832,3370489855,AR 3370489856,3370490879,VE 3370490880,3370506239,BR 3370506240,3370507263,VE 3370507264,3370514943,BR 3370515456,3370516479,AR 3370516480,3370721279,BR 3370723328,3371106303,BR 3371106304,3371122687,MX 3371122688,3375464447,BR 3375468544,3376873471,BR 3376881664,3376922623,BR 3376926720,3377291263,BR 3377295360,3377303551,BR 3377307648,3378511871,BR 3378511872,3380506879,MX 3380506880,3380507135,BR 3380507136,3380744191,MX 3380745216,3380746239,BR 3380746240,3380747263,PE 3380747264,3380748287,BR 3380748288,3380761087,MX 3380761088,3380761599,VE 3380761600,3380764671,BR 3380764672,3380808191,MX 3380808192,3380808703,CR 3380808704,3380811775,MX 3380811776,3380813823,BR 3380813824,3380815103,MX 3380815104,3380815359,CR 3380815360,3380815871,CL 3380815872,3380816127,MX 3380816128,3380816383,BO 3380816384,3380816639,SV 3380816640,3380816895,CW 3380816896,3380817151,MX 3380817152,3380817407,BO 3380817408,3380817663,CO 3380817664,3380817919,AR 3380817920,3380818175,MX 3380818176,3380818431,PA 3380818432,3380818687,DO 3380818688,3380818943,PY 3380818944,3380822527,MX 3380822528,3380822783,NI 3380822784,3380823039,PE 3380823040,3380824063,BR 3380824064,3380824319,MX 3380824320,3380824575,GT 3380824576,3380825087,AR 3380825088,3380825343,MX 3380825344,3380825599,HT 3380825600,3380825855,CO 3380825856,3380826111,AR 3380826112,3380828159,BR 3380828160,3380828671,MX 3380828672,3380829183,CO 3380829184,3380830207,BR 3380830208,3380830463,MX 3380830464,3380830719,CO 3380830720,3380831231,PA 3380831232,3380831743,MX 3380831744,3380831999,AR 3380832000,3380832255,SR 3380832256,3380832767,MX 3380832768,3380833279,DO 3380833280,3380833791,MX 3380833792,3380834303,SV 3380834304,3380834815,MX 3380834816,3380835071,CO 3380835072,3380835327,NI 3380835328,3380835839,MX 3380835840,3380836351,AR 3380836352,3380836607,MX 3380836608,3380836863,PE 3380836864,3380837375,SV 3380837376,3380840447,MX 3380840448,3380843519,BR 3380843520,3380844543,PA 3380844544,3380853759,BR 3380853760,3380854783,CO 3380854784,3380858879,MX 3380858880,3380860927,BR 3380860928,3380861951,CO 3380861952,3380862975,PE 3380862976,3380865023,BR 3380865024,3380867071,MX 3380867072,3380869119,BR 3380869120,3381350399,MX 3381350400,3381351423,AR 3381351424,3381354495,BR 3381354496,3381373951,MX 3381373952,3381374975,BR 3381374976,3381377023,MX 3381377024,3381379071,BR 3381379072,3381385215,MX 3381385216,3381387263,BR 3381387264,3381448703,MX 3381448704,3381452799,BR 3381452800,3381453823,AR 3381453824,3381455871,BR 3381455872,3381456895,CO 3381456896,3381460991,BR 3381460992,3381944319,MX 3381944320,3381946367,BR 3381946368,3381947391,CL 3381947392,3381952511,BR 3381952512,3381960703,MX 3381960704,3381962751,BR 3381962752,3381963775,HN 3381963776,3381968895,BR 3381968896,3381972991,MX 3381972992,3381974015,BR 3381974016,3381975039,CL 3381975040,3381979135,BR 3381979136,3381980159,CR 3381980160,3381985279,BR 3381985280,3382009855,MX 3382009856,3382018047,BR 3382018048,3382053887,MX 3382053888,3382057983,BR 3382057984,3382059007,CL 3382059008,3382063103,MX 3382063104,3382066175,BR 3382066176,3382067199,PE 3382067200,3382071295,MX 3382071296,3382072319,BR 3382072320,3382073343,SV 3382073344,3382075391,BR 3382075392,3382076415,CO 3382076416,3382077439,BR 3382077440,3382078463,HT 3382078464,3382083583,BR 3382083584,3382087679,MX 3382087680,3382091775,BR 3382091776,3382099967,BO 3382099968,3382558719,MX 3382558720,3382575103,BR 3382575104,3382577151,MX 3382577152,3382579199,BR 3382579200,3382580223,MX 3382580224,3382583295,BR 3382583296,3382585343,MX 3382585344,3382587391,BR 3382587392,3382588415,HN 3382588416,3382589439,PE 3382589440,3382591487,BR 3382591488,3382602751,MX 3382602752,3382603775,BR 3382603776,3382605823,MX 3382605824,3382607871,AR 3382607872,3382642687,MX 3382642688,3382644735,AR 3382644736,3382646783,MX 3382646784,3382648831,BR 3382648832,3382651903,MX 3382651904,3382652927,BR 3382652928,3382653951,MX 3382653952,3382654975,BR 3382654976,3382657023,AR 3382657024,3382659071,MX 3382659072,3382661119,BR 3382661120,3382662143,MX 3382662144,3382665215,BR 3382665216,3382669311,MX 3382669312,3382670335,GT 3382670336,3382672383,BR 3382672384,3382677503,MX 3382677504,3382681599,BR 3382681600,3382683647,MX 3382683648,3382685695,CL 3382685696,3382686655,MX 3382686656,3382686719,US 3382686720,3382689791,BR 3382689792,3382695935,MX 3382695936,3382696959,AR 3382696960,3382697983,EC 3382697984,3382704127,MX 3382704128,3382706175,BR 3382706176,3382853631,MX 3382853632,3382870015,BR 3382870016,3383701503,MX 3383701504,3383705599,BR 3383705600,3383754751,MX 3383754752,3384147967,AR 3384147968,3384154879,US 3384154880,3384155135,HN 3384155136,3384156159,US 3384156160,3384160255,PA 3384160256,3384164351,US 3384164352,3384183807,PA 3384183808,3384184831,VE 3384184832,3384213503,PA 3384213504,3384279039,EC 3384279040,3384410111,CO 3384410112,3384672255,CL 3384672256,3384688639,HN 3384688640,3384705023,CO 3384705024,3384707071,US 3384707072,3384721407,PA 3384721408,3384725503,US 3384725504,3384732415,PA 3384732416,3384732671,BR 3384732672,3384737791,PA 3384737792,3385851903,CR 3385851904,3386114047,VE 3386114048,3386245119,AR 3386245120,3386376191,CL 3386376192,3386392575,CO 3386392576,3386408959,CW 3386408960,3386425343,GT 3386425344,3386441727,AR 3386441728,3386458111,PY 3386458112,3386474495,EC 3386474496,3386490879,UY 3386490880,3386499071,CO 3386499072,3386503167,AR 3386503168,3386504191,PE 3386504192,3386505215,AR 3386505216,3386507263,CL 3386507264,3386523647,EC 3386523648,3386540031,PA 3386540032,3386548223,CL 3386548224,3386556415,CR 3386556416,3386562047,PA 3386562048,3386562303,PE 3386562304,3386572799,PA 3386572800,3386589183,EC 3386589184,3386601471,AR 3386601472,3386605567,CO 3386605568,3386613759,CL 3386613760,3386621951,AR 3386621952,3386630143,CO 3386630144,3386632191,UY 3386632192,3386634239,CL 3386634240,3386636287,CO 3386636288,3386637311,BR 3386637312,3386638335,UY 3386638336,3386640895,SX 3386640896,3386641151,US 3386641152,3386642431,SX 3386642432,3386644735,AR 3386644736,3386644991,PY 3386644992,3386645247,CR 3386645248,3386645503,CL 3386645504,3386645759,AR 3386645760,3386646015,CR 3386646016,3386662911,CO 3386662912,3386671103,CL 3386671104,3386675199,HN 3386675200,3386687487,AR 3386687488,3386695679,CU 3386695680,3386703871,CL 3386703872,3386720255,UY 3386720256,3386728447,TT 3386728448,3386732543,AR 3386732544,3386734591,CL 3386734592,3386734847,AR 3386734848,3386735103,CL 3386735104,3386735359,CO 3386735360,3386735615,CL 3386735616,3386736127,CO 3386736128,3386736383,DO 3386736384,3386736639,EC 3386736640,3386753023,CO 3386753024,3386761215,CL 3386761216,3386769407,PA 3386769408,3386773503,VE 3386773504,3386774527,AR 3386774528,3386777599,BR 3386777600,3386781695,CW 3386781696,3386783743,PY 3386783744,3386784767,AR 3386784768,3386785791,GT 3386785792,3386802175,BO 3386802176,3386900479,CL 3386900480,3387162623,PA 3387162624,3387228159,CO 3387228160,3387260927,AW 3387260928,3387293695,DO 3387293696,3387359231,PE 3387359232,3387424767,AR 3387424768,3387555839,CO 3387555840,3387568127,AR 3387568128,3387572223,PE 3387572224,3387576319,CO 3387576320,3387578367,EC 3387578368,3387584511,AR 3387584512,3387588607,PE 3387588608,3387600895,AR 3387600896,3387604991,CO 3387604992,3387613183,EC 3387613184,3387617279,VE 3387617280,3387619327,CO 3387619328,3387686911,AR 3387686912,3387736063,CL 3387736064,3387752447,CO 3387752448,3387817983,CR 3387817984,3387834367,VE 3387834368,3387850751,TT 3387850752,3387867135,EC 3387867136,3387949055,CL 3387949056,3388014591,PE 3388014592,3388080127,CL 3388080128,3388211199,VE 3388211200,3388342271,CO 3388342272,3388407807,CL 3388407808,3388473343,SV 3388473344,3388604415,VE 3388604416,3388997631,AR 3388997632,3389001727,AU 3389001728,3389005823,PH 3389005824,3389014015,NZ 3389014016,3389014271,AU 3389014272,3389014783,JP 3389014784,3389015807,AU 3389015808,3389016063,SG 3389016064,3389016575,JP 3389016576,3389017087,AU 3389017088,3389017343,JP 3389017344,3389017599,HK 3389017600,3389017855,AU 3389017856,3389018111,VN 3389018112,3389018367,PG 3389018368,3389019135,AU 3389019136,3389019391,NZ 3389019392,3389020159,AU 3389020160,3389020671,ID 3389020672,3389020927,AU 3389020928,3389021183,PH 3389021184,3389021695,ID 3389021696,3389021951,BD 3389021952,3389022463,AU 3389022464,3389022719,IN 3389022720,3389023231,AU 3389023232,3389023743,CN 3389023744,3389023999,AU 3389024000,3389024255,IN 3389024256,3389024511,SG 3389024512,3389025023,AU 3389025024,3389025279,ID 3389025280,3389025535,AU 3389025536,3389025791,IN 3389025792,3389026047,PK 3389026048,3389026303,TH 3389026304,3389026559,IN 3389026560,3389027071,AU 3389027072,3389027583,IN 3389027584,3389028607,TH 3389028608,3389028863,NZ 3389028864,3389029375,CN 3389029376,3389029887,NZ 3389029888,3389030399,SG 3389030400,3389034495,HK 3389034496,3389035519,PH 3389035776,3389036031,SG 3389036288,3389036543,NZ 3389037056,3389037567,AU 3389037568,3389038591,NC 3389038592,3389044735,HK 3389044736,3389046783,AU 3389046784,3389063167,US 3389063168,3389063679,AU 3389063680,3389063935,HK 3389063936,3389064191,AU 3389064192,3389064447,IN 3389064448,3389064703,SG 3389064704,3389065215,HK 3389065216,3389067263,NZ 3389067264,3389071359,AU 3389071360,3389079551,PG 3389079552,3389087743,SG 3389087744,3389087999,HK 3389088000,3389092351,SG 3389092352,3389092863,PH 3389092864,3389093887,AU 3389093888,3389095935,IN 3389095936,3389104127,SG 3389104128,3389112319,SB 3389112320,3389116415,MV 3389116416,3389120511,JP 3389122560,3389122815,HK 3389122816,3389123583,AU 3389123584,3389123839,ID 3389123840,3389124351,AU 3389124352,3389124607,SG 3389124608,3389128447,PG 3389128448,3389129727,AU 3389129728,3389132799,NZ 3389132800,3389136895,AU 3389136896,3389142015,HK 3389142016,3389143039,TW 3389143040,3389145087,AU 3389145088,3389151231,HK 3389151232,3389152255,JP 3389152256,3389153023,US 3389153024,3389153279,AU 3389153280,3389161471,TV 3389161472,3389194239,JP 3389194240,3389195775,AU 3389195776,3389196287,HK 3389196288,3389197567,AU 3389197568,3389197823,IN 3389197824,3389198079,ID 3389198080,3389198335,IN 3389198336,3389202431,KR 3389202432,3389210623,AU 3389210624,3389210879,IN 3389210880,3389211135,AU 3389211136,3389211391,IN 3389211392,3389211647,AU 3389211648,3389212671,TH 3389212672,3389213183,IN 3389213184,3389213439,AU 3389213952,3389214207,IN 3389214208,3389214463,SG 3389214464,3389214719,AU 3389214720,3389218815,NZ 3389218816,3389222911,AU 3389222912,3389223935,US 3389223936,3389226239,IN 3389226240,3389226495,AU 3389226496,3389227007,IN 3389227008,3389227519,CN 3389227520,3389228031,PK 3389228032,3389228799,AU 3389228800,3389229055,SG 3389229056,3389229311,JP 3389229312,3389229567,AU 3389229568,3389230079,SG 3389230080,3389235199,JP 3389235200,3389243391,TW 3389243392,3389247487,AU 3389247488,3389251583,ID 3389251584,3389259775,PF 3389259776,3389263871,PH 3389263872,3389266175,NZ 3389266176,3389266431,IN 3389266432,3389266943,HK 3389266944,3389267967,AU 3389267968,3389276159,WS 3389276160,3389284351,AU 3389284352,3389292543,BD 3389292544,3389300735,CN 3389300736,3389301247,ID 3389301248,3389301759,AU 3389301760,3389302015,IN 3389302016,3389302527,AU 3389302528,3389302783,PK 3389302784,3389303039,VN 3389303296,3389303807,ID 3389303808,3389304063,IN 3389304064,3389304319,BD 3389304320,3389304575,PH 3389304576,3389304831,AU 3389304832,3389305087,VN 3389305088,3389305599,IN 3389305600,3389305855,ID 3389305856,3389306111,IN 3389306112,3389306367,AU 3389306368,3389306623,IN 3389306624,3389306879,AU 3389306880,3389307135,SG 3389307136,3389307647,ID 3389307904,3389308159,AU 3389308416,3389308671,AU 3389308672,3389308927,PH 3389308928,3389317119,HK 3389317120,3389322239,AU 3389322240,3389324031,JP 3389324032,3389324287,VU 3389324288,3389325311,CN 3389325312,3389326335,AU 3389326336,3389326847,TW 3389326848,3389327359,AU 3389327360,3389329407,TW 3389329408,3389333503,PH 3389333504,3389341695,BD 3389341696,3389345791,JP 3389345792,3389349887,TH 3389349888,3389358079,AU 3389358080,3389366271,PK 3389366272,3389374463,AU 3389374464,3389378559,MN 3389378560,3389381631,CN 3389381632,3389382655,JP 3389382656,3389390847,TW 3389390848,3389391359,HK 3389391360,3389391615,VN 3389391616,3389392127,AU 3389392128,3389392383,NZ 3389392384,3389392895,CN 3389392896,3389394943,JP 3389394944,3389399039,TH 3389399040,3389407743,AU 3389407744,3389408255,CN 3389408256,3389409279,JP 3389409280,3389409791,CN 3389409792,3389412351,AU 3389412352,3389412607,NZ 3389412608,3389412863,PH 3389412864,3389413119,AU 3389413120,3389413887,CN 3389413888,3389414143,TH 3389414144,3389414399,AU 3389414400,3389414911,CN 3389414912,3389415167,HK 3389415168,3389415423,KR 3389415424,3389415935,VN 3389415936,3389416191,JP 3389416192,3389416447,IN 3389416448,3389416959,TH 3389416960,3389417215,SG 3389417216,3389417471,CN 3389417472,3389417983,TW 3389417984,3389418239,AU 3389418240,3389418495,TH 3389418496,3389418751,CN 3389418752,3389419007,NZ 3389419008,3389419519,CN 3389419520,3389420031,AU 3389420032,3389420287,CN 3389420288,3389420543,AU 3389420544,3389421055,NZ 3389421312,3389421567,JP 3389421568,3389422591,KI 3389422592,3389431807,AU 3389431808,3389435903,SG 3389435904,3389439999,CN 3389440000,3389444095,HK 3389444096,3389452287,ID 3389452288,3389453311,SG 3389453312,3389454335,JP 3389454336,3389455359,AU 3389455360,3389456383,JP 3389456384,3389456895,NZ 3389456896,3389457407,AU 3389457408,3389458431,NZ 3389458432,3389460479,AU 3389460480,3389464575,JP 3389464576,3389469695,NZ 3389469696,3389470719,KH 3389471232,3389471487,IN 3389471744,3389472767,NZ 3389472768,3389480959,AU 3389480960,3389489151,JP 3389489152,3389493247,HK 3389493248,3389521919,AU 3389521920,3389522175,CN 3389522176,3389522431,SG 3389522432,3389523455,CN 3389523456,3389523967,JP 3389523968,3389524991,AU 3389524992,3389525247,CN 3389525248,3389525503,NZ 3389525504,3389526015,TW 3389526016,3389528063,JP 3389528064,3389528319,CN 3389528576,3389529087,JP 3389529088,3389529599,ID 3389529600,3389529855,PH 3389529856,3389530111,HK 3389530112,3389532159,AU 3389532160,3389533183,SG 3389533184,3389534207,NZ 3389534208,3389538303,JP 3389538304,3389538559,AU 3389538560,3389540351,TH 3389540352,3389541375,KH 3389541376,3389541631,AU 3389541632,3389541887,CN 3389541888,3389542399,TH 3389542400,3389543423,JP 3389543424,3389544447,TH 3389544448,3389545471,HK 3389545472,3389545727,AU 3389545728,3389545983,HK 3389545984,3389546495,SG 3389554688,3389562879,CN 3389562880,3389571071,KR 3389571072,3389575167,CN 3389575168,3389579263,JP 3389579264,3389587455,PH 3389587456,3389595647,AU 3389595648,3389595903,CN 3389595904,3389596159,AU 3389596160,3389596671,CN 3389596672,3389597439,SG 3389597440,3389597695,MY 3389597696,3389599743,MN 3389599744,3389600255,CN 3389600256,3389600511,AU 3389600512,3389601791,CN 3389601792,3389602047,AU 3389602048,3389602815,CN 3389602816,3389603839,HK 3389604096,3389604351,AU 3389604352,3389604863,SG 3389605120,3389605375,ID 3389605376,3389605631,AU 3389605632,3389605887,SG 3389605888,3389606399,ID 3389606400,3389606655,AU 3389606656,3389606911,IN 3389606912,3389607423,LA 3389607424,3389607679,AU 3389607680,3389608191,VN 3389608192,3389608447,TH 3389608448,3389608703,HK 3389608704,3389608959,AU 3389608960,3389609215,VN 3389609216,3389609471,ID 3389609472,3389609727,SG 3389609728,3389609983,AU 3389609984,3389610239,NZ 3389610752,3389611519,IN 3389611520,3389612031,AU 3389612032,3389616127,MY 3389616128,3389617151,AU 3389617152,3389618175,NZ 3389618176,3389640703,IN 3389640704,3389644799,JP 3389644800,3389645823,NZ 3389645824,3389661183,AU 3389661184,3389669375,ID 3389669376,3389673471,CN 3389673472,3389677567,AU 3389677568,3389681663,JP 3389681664,3389685759,CN 3389685760,3389718527,AU 3389718528,3389784063,JP 3389784064,3389784319,NZ 3389784320,3389784831,CN 3389784832,3389785087,NZ 3389785088,3389786111,HK 3389786112,3389788159,JP 3389788160,3389788415,IN 3389788416,3389788927,CN 3389788928,3389789695,US 3389789696,3389790719,AU 3389790720,3389790975,BN 3389790976,3389791231,JP 3389791232,3389791743,AU 3389791744,3389791999,JP 3389792000,3389800447,AU 3389800448,3389801471,JP 3389801472,3389801983,AU 3389801984,3389802239,NZ 3389802240,3389802495,AU 3389802496,3389802751,CN 3389802752,3389803263,TH 3389803264,3389803519,ID 3389803520,3389804543,TW 3389804544,3389805567,IN 3389805568,3389806079,CN 3389806080,3389807359,AU 3389807360,3389807615,NZ 3389807616,3389808127,AU 3389808128,3389808639,SG 3389808640,3389808895,CN 3389808896,3389809151,TH 3389809152,3389809663,CN 3389809664,3389809919,AU 3389809920,3389810175,IN 3389810176,3389810431,AU 3389810432,3389810687,IN 3389810688,3389811199,NZ 3389811200,3389811455,CN 3389811456,3389811711,AU 3389811712,3389811967,NZ 3389811968,3389812479,AU 3389812480,3389812735,CN 3389812736,3389813759,AU 3389813760,3389814015,CN 3389814016,3389814527,TH 3389814528,3389815295,AU 3389816064,3389816575,AU 3389816576,3389816831,US 3389816832,3389846527,AU 3389846528,3389847551,JP 3389847552,3389849599,NZ 3389849600,3389915135,JP 3389915136,3389916159,AU 3389916160,3389917183,HK 3389917184,3389919231,SG 3389919232,3389931519,NZ 3389931520,3389932031,CN 3389932032,3389932287,AU 3389932288,3389932799,JP 3389932800,3389933055,CN 3389933056,3389933567,PK 3389933568,3389933823,IN 3389933824,3389934847,CN 3389934848,3389935103,AU 3389935104,3389935615,CN 3389935616,3389935871,HK 3389935872,3389936127,AU 3389936128,3389936895,NZ 3389936896,3389937663,PH 3389937664,3389937919,CN 3389937920,3389938175,AU 3389938176,3389938687,KR 3389938688,3389939199,ID 3389939200,3389939711,AU 3389939712,3389939967,NZ 3389939968,3389940223,CN 3389940224,3389940479,AU 3389940480,3389940991,NZ 3389940992,3389941247,AU 3389941248,3389941503,NZ 3389941504,3389941759,KR 3389941760,3389942271,CN 3389942272,3389942783,NZ 3389942784,3389943295,CN 3389943296,3389943551,AU 3389943552,3389943807,CN 3389943808,3389944319,AU 3389944320,3389944831,CN 3389944832,3389945087,AU 3389945088,3389945343,TH 3389945344,3389945855,CN 3389945856,3389946879,IN 3389946880,3389947391,CN 3389947392,3389947647,AU 3389947648,3389947903,CN 3389947904,3389948159,AU 3389948160,3389948415,CN 3389948416,3389949695,AU 3389949696,3389950207,CN 3389950208,3389950975,AU 3389950976,3389951743,NZ 3389951744,3389953279,AU 3389953280,3389953535,CN 3389953536,3389953791,AU 3389953792,3389954047,CN 3389954048,3389954303,AU 3389954304,3389954815,SG 3389954816,3389955327,AU 3389955328,3389956095,CN 3389956096,3389957119,IN 3389957120,3389957375,TH 3389957376,3389957631,KR 3389957632,3389957887,AU 3389957888,3389958399,NZ 3389958400,3389960447,CN 3389960448,3389962239,AU 3389962240,3389962751,CN 3389962752,3389963007,AU 3389963264,3389966335,AU 3389966336,3389968383,SG 3389968384,3389968895,CN 3389968896,3389969663,AU 3389969664,3389969919,CN 3389969920,3389970431,AU 3389970432,3389971199,NZ 3389971200,3389971711,CN 3389971712,3389971967,AU 3389971968,3389973503,CN 3389973504,3389973759,NZ 3389973760,3389974271,AU 3389974272,3389974527,CN 3389974528,3389975295,AU 3389975296,3389976575,CN 3389976576,3389978111,AU 3389978112,3389978367,CN 3389978368,3389979391,AU 3389979392,3389979647,CN 3389979648,3389980415,NZ 3389980416,3389980671,ID 3389980672,3390308351,JP 3390308352,3390310399,NZ 3390310400,3390316543,AU 3390316544,3390325247,NZ 3390325248,3390325503,CN 3390325504,3390325759,AU 3390326016,3390327807,AU 3390327808,3390328575,NZ 3390328576,3390328831,CN 3390328832,3390329087,NZ 3390329088,3390329343,AU 3390329344,3390330623,KR 3390330624,3390331647,CN 3390331648,3390332415,NZ 3390332416,3390332927,CN 3390332928,3390333439,NZ 3390333440,3390333695,HK 3390333696,3390333951,KR 3390333952,3390334463,HK 3390334464,3390335231,NZ 3390335232,3390335487,TH 3390335488,3390336511,ID 3390336512,3390336767,JP 3390336768,3390337023,HK 3390337024,3390337279,GU 3390337280,3390337535,NZ 3390337536,3390337791,CN 3390337792,3390338303,JP 3390338304,3390338559,CN 3390338560,3390338815,HK 3390338816,3390339071,KR 3390339072,3390339327,CN 3390339328,3390339839,NZ 3390339840,3390340351,JP 3390340352,3390340607,CN 3390340864,3390341119,CN 3390341120,3390375935,KR 3390375936,3390377983,AU 3390377984,3390382079,NZ 3390382080,3390384127,LK 3390384128,3390386175,IN 3390386176,3390390271,CN 3390390272,3390398463,NZ 3390398464,3390406655,MN 3390406656,3390406911,NZ 3390406912,3390407167,SG 3390407168,3390407423,NZ 3390407424,3390407935,CN 3390407936,3390408191,NZ 3390408192,3390408703,IN 3390408704,3390409727,NZ 3390409728,3390409983,TH 3390409984,3390410495,CN 3390410496,3390410751,NZ 3390410752,3390411007,TH 3390411008,3390411519,JP 3390411520,3390412031,CN 3390412032,3390412287,TH 3390412288,3390413567,CN 3390413568,3390413823,NZ 3390413824,3390414079,CN 3390414080,3390414335,NZ 3390414336,3390414847,SG 3390414848,3390418943,JP 3390418944,3390423039,MV 3390423040,3390439423,SG 3390439424,3390441471,NZ 3390441472,3390443519,TH 3390443520,3390447359,NZ 3390447360,3390447615,ID 3390447616,3390455807,KR 3390455808,3390472191,JP 3390472192,3390472703,NC 3390472704,3390472959,FR 3390472960,3390480383,NC 3390480384,3390484479,AU 3390484480,3390488575,GU 3390488576,3390492671,BD 3390492672,3390496767,JP 3390496768,3390500863,NC 3390500864,3390502911,HK 3390502912,3390504959,CN 3390504960,3390767103,JP 3390767104,3390769407,NZ 3390769408,3390769663,IN 3390769664,3390770175,TH 3390770432,3390770687,AU 3390770944,3390771199,AU 3390771200,3390775295,SG 3390775296,3390801919,NZ 3390801920,3390802431,CN 3390802432,3390832639,NZ 3390832640,3390963711,TH 3390963712,3391094783,KR 3391094784,3391356927,JP 3391356928,3391388159,NZ 3391388672,3391435775,NZ 3391436288,3391441407,NZ 3391441408,3391441663,PH 3391441664,3391444479,NZ 3391444480,3391444991,VN 3391444992,3391453183,NZ 3391453184,3391453439,ID 3391453440,3391487999,NZ 3391488000,3391489023,CN 3391489024,3391490047,NP 3391490048,3391492095,CN 3391492096,3391496191,HK 3391496192,3391500287,SG 3391500288,3391523583,CN 3391523584,3391523839,AU 3391523840,3391524863,CN 3391524864,3391525375,AU 3391525376,3391525887,CN 3391525888,3391526143,AU 3391526144,3391528191,CN 3391528192,3391528447,AU 3391528448,3391529471,CN 3391529472,3391529983,AU 3391529984,3391532031,CN 3391532032,3391533055,IN 3391533056,3391533567,CN 3391533568,3391534079,HK 3391534080,3391535103,IN 3391535104,3391553535,CN 3391553536,3391619071,TW 3391619072,3391620095,AU 3391620096,3391620607,CN 3391620608,3391620863,IN 3391620864,3391621119,CN 3391621120,3391622911,HK 3391622912,3391623167,CN 3391623168,3391627263,HK 3391627264,3391651839,IN 3391651840,3391653631,HK 3391653632,3391654143,CN 3391654144,3391654911,HK 3391654912,3391655167,CN 3391655168,3391655679,HK 3391655680,3391656447,CN 3391656448,3391657471,HK 3391657472,3391657727,CN 3391657728,3391658751,HK 3391658752,3391659263,CN 3391659264,3391659519,HK 3391659520,3391660031,CN 3391660032,3391660543,HK 3391660544,3391660799,CN 3391660800,3391662079,AU 3391662080,3391663103,HK 3391663104,3391664127,PH 3391664128,3391668223,BD 3391668224,3391676415,HK 3391676416,3391684607,SG 3391684608,3391686655,IN 3391686656,3391687167,CN 3391687168,3391687423,IN 3391687424,3391688191,CN 3391688192,3391688703,AU 3391688704,3391717375,IN 3391717376,3391717631,CN 3391717632,3391717887,IN 3391717888,3391718399,CN 3391718400,3391718911,IN 3391718912,3391719423,JP 3391719424,3391721471,NZ 3391721472,3391721983,AU 3391721984,3391722239,TW 3391722240,3391722495,PH 3391722496,3391723519,IN 3391723520,3391725567,CN 3391725568,3391733759,TH 3391733760,3391734015,CN 3391734016,3391734783,AU 3391734784,3391736831,CN 3391736832,3391737855,IN 3391737856,3391741951,JP 3391741952,3391746047,IN 3391746048,3391750143,CN 3391750144,3391766783,SG 3391766784,3391767039,JP 3391767040,3391810047,SG 3391810048,3391810303,JP 3391810304,3391815679,SG 3391815680,3391817727,AU 3391817728,3391819775,TO 3391819776,3391823871,JP 3391823872,3391827967,TH 3391827968,3391832063,KR 3391832064,3391832575,ID 3391832576,3391832831,AU 3391832832,3391833087,IN 3391833088,3391834111,JP 3391834112,3391835135,ID 3391835136,3391836159,CN 3391836160,3391836671,AU 3391836672,3391837183,HK 3391837184,3391838207,AU 3391838208,3391838719,ID 3391838720,3391838975,IN 3391839232,3391840255,ID 3391840256,3391841279,JP 3391841280,3391842303,MY 3391842304,3391843327,JP 3391843328,3391844351,VN 3391844352,3391845887,ID 3391845888,3391846399,PK 3391846400,3391847423,IN 3391847424,3391848447,HK 3391848448,3391852543,AU 3391852544,3391856639,CN 3391856640,3391864831,ID 3391864832,3391866879,TW 3391866880,3391868927,US 3391868928,3391870975,SG 3391870976,3391873023,US 3391873024,3391877119,AU 3391877120,3391879167,JP 3391879168,3391881215,ID 3391881216,3391885311,TH 3391885312,3391889407,CN 3391889408,3391893503,TH 3391893504,3391894527,CN 3391894528,3391895551,TH 3391895552,3391896575,IN 3391896576,3391897599,NZ 3391897600,3391898367,TH 3391898368,3391898623,CN 3391898624,3391900159,TH 3391900160,3391900415,CN 3391900416,3391901695,AU 3391901696,3391905791,PK 3391905792,3391906047,TH 3391906304,3391906815,AU 3391906816,3391907839,PH 3391907840,3391909887,BD 3391909888,3391910911,IO 3391910912,3391911935,AU 3391911936,3391913983,HK 3391913984,3391914239,TH 3391914240,3391914495,CN 3391914496,3391915007,TH 3391915008,3391915519,CN 3391915520,3391915775,AU 3391915776,3391916287,TH 3391916288,3391916543,VN 3391916544,3391918591,TH 3391918592,3391919103,CN 3391919104,3391920127,TH 3391920128,3391930367,AU 3391930368,3391946751,TH 3391946752,3391947519,CN 3391947520,3391947775,AU 3391947776,3391948287,HK 3391948288,3391948799,IN 3391948800,3391949311,HK 3391949824,3391950079,JP 3391950080,3391950335,AU 3391950336,3391950591,HK 3391950592,3391954943,CN 3391954944,3391971327,HK 3391971328,3391979519,AU 3391979520,3391979775,HK 3391979776,3391979955,CN 3391979956,3391979957,JP 3391979958,3391980031,CN 3391980032,3391980543,HK 3391980544,3391983615,MY 3391983616,3391984639,NP 3391984640,3391984895,HK 3391984896,3391985151,ID 3391985152,3391986687,AU 3391986688,3391987199,PK 3391987200,3391987455,AU 3391987456,3391987711,BD 3391987712,3391991807,JP 3391991808,3392012287,HK 3392012288,3392016383,ID 3392016384,3392017151,CN 3392017152,3392017407,IN 3392017408,3392017919,CN 3392017920,3392018431,IN 3392018432,3392020479,ID 3392020480,3392028671,CN 3392028672,3392040959,ID 3392040960,3392045055,MY 3392045056,3392045311,CN 3392045312,3392046079,ID 3392046080,3392049151,AU 3392049152,3392053247,ID 3392053248,3392061439,NZ 3392061440,3392069631,IN 3392069632,3392073727,CN 3392073728,3392077823,ID 3392077824,3392079871,AU 3392079872,3392086015,JP 3392086016,3392094207,AU 3392094208,3392098559,ID 3392098560,3392098815,AU 3392098816,3392099327,CN 3392099328,3392100095,AU 3392100096,3392100351,VN 3392100352,3392100607,ID 3392100608,3392100863,SG 3392100864,3392101887,ID 3392101888,3392102143,PK 3392102144,3392102399,AU 3392102400,3392106495,CN 3392106496,3392108543,IN 3392108544,3392109567,AU 3392109824,3392110079,PH 3392110080,3392110335,CN 3392110336,3392110591,IN 3392110592,3392110847,CN 3392110848,3392111103,PH 3392111104,3392111615,CN 3392111616,3392112127,PH 3392112128,3392112639,AU 3392112640,3392113663,JP 3392113664,3392114175,PH 3392114176,3392114431,VN 3392114432,3392114687,KR 3392114688,3392118783,GU 3392118784,3392126975,MY 3392126976,3392130303,ID 3392130304,3392130815,TW 3392130816,3392135167,ID 3392135168,3392143359,TH 3392143360,3392208895,JP 3392208896,3392217343,NZ 3392217600,3392287743,NZ 3392287744,3392288767,NP 3392288768,3392324607,NZ 3392324608,3392325119,AU 3392325120,3392325631,NZ 3392325632,3392326655,ID 3392326656,3392339967,NZ 3392339968,3392340991,NP 3392340992,3392344063,JP 3392344064,3392348159,ID 3392348160,3392354303,JP 3392354304,3392356351,ID 3392356352,3392364543,NP 3392364544,3392372735,ID 3392372736,3392380927,HK 3392380928,3392385023,AU 3392385024,3392389119,BD 3392389120,3392401407,ID 3392401408,3392403455,SG 3392403456,3392404479,IN 3392404480,3392405503,ID 3392405504,3392406015,NP 3392406016,3392406527,IN 3392406528,3392407551,TH 3392407552,3392409599,ID 3392409600,3392413695,JP 3392413696,3392413951,PK 3392414464,3392414719,HK 3392414720,3392415231,AU 3392415232,3392415487,JP 3392415488,3392415743,VN 3392415744,3392415999,IN 3392416000,3392416255,AU 3392416256,3392416767,HK 3392416768,3392417023,IN 3392417024,3392417535,AU 3392417792,3392418559,ID 3392418560,3392418815,SG 3392418816,3392419071,ID 3392419072,3392419327,IN 3392419328,3392419839,PH 3392419840,3392420351,IN 3392420352,3392420863,ID 3392420864,3392421119,AU 3392421120,3392421375,MY 3392421376,3392421887,IN 3392421888,3392438271,SG 3392438272,3392438527,IN 3392438528,3392438783,AU 3392438784,3392439039,IN 3392439040,3392439551,ID 3392439552,3392439807,PG 3392439808,3392440063,IN 3392440064,3392440319,AU 3392440320,3392440575,HK 3392440576,3392440831,ID 3392440832,3392441343,BD 3392441344,3392441855,ID 3392441856,3392442111,AU 3392442624,3392442879,AU 3392442880,3392443391,ID 3392443392,3392443647,IN 3392443648,3392443903,MY 3392443904,3392444159,IN 3392444160,3392444415,JP 3392444416,3392444671,NZ 3392444672,3392444927,IN 3392444928,3392445183,JP 3392445184,3392445439,NZ 3392445440,3392445695,ID 3392445952,3392446463,AU 3392446464,3392450559,PH 3392450560,3392454655,JP 3392454656,3392462847,HK 3392462848,3392472063,NP 3392472064,3392473087,AU 3392473088,3392475135,IN 3392475136,3392479231,JP 3392479232,3392487423,AU 3392487424,3392499711,IN 3392499712,3392503807,JP 3392503808,3392505343,HK 3392506880,3392507903,HK 3392512000,3392516095,BD 3392516096,3392519167,AU 3392519168,3392519679,NZ 3392519680,3392524287,AU 3392524288,3392528383,JP 3392528384,3392536575,ID 3392536576,3392602111,IN 3392602112,3392618495,HK 3392618496,3392626687,SG 3392626688,3392630783,NZ 3392630784,3392634879,JP 3392634880,3392635903,PK 3392635904,3392636927,VN 3392636928,3392637951,JP 3392637952,3392638975,TH 3392638976,3392643071,AU 3392643072,3392647167,ID 3392647168,3392651263,MN 3392651264,3392659455,JP 3392659456,3392667647,TW 3392667648,3392668671,IN 3392668672,3392669695,BD 3392669696,3392671743,HK 3392671744,3392675839,JP 3392675840,3392681983,NZ 3392681984,3392682239,SG 3392682240,3392682495,VN 3392682496,3392683007,IN 3392683008,3392684031,AU 3392684032,3392688127,JP 3392688128,3392692223,MY 3392692224,3392700415,IN 3392700416,3392708607,SG 3392708608,3392712703,ID 3392712704,3392716799,AF 3392716800,3392733183,IN 3392733184,3392741375,ID 3392741376,3392765951,PH 3392765952,3392782335,TH 3392782336,3392786431,CN 3392787456,3392789503,CN 3392789504,3392790527,HK 3392790528,3392794623,JP 3392794624,3392798975,CN 3392798976,3392799231,JP 3392799232,3392799487,PH 3392799488,3392799743,AU 3392799744,3392800767,JP 3392800768,3392802815,SG 3392802816,3392806911,JP 3392806912,3392815103,AU 3392815104,3392819199,ID 3392819200,3392823295,MY 3392823296,3392824319,KH 3392824320,3392824831,AU 3392824832,3392825343,IN 3392825344,3392826367,CN 3392826368,3392827391,BD 3392827392,3392828415,CN 3392828416,3392829439,JP 3392829440,3392830463,IN 3392830464,3392830719,ID 3392830720,3392830975,IN 3392830976,3392831231,TH 3392831232,3392831487,IN 3392831488,3392832511,PG 3392832512,3392833535,IN 3392833536,3392835583,AU 3392835584,3392839679,JP 3392839680,3392845823,ID 3392845824,3392847871,HK 3392847872,3392856063,ID 3392856064,3392857087,AU 3392857088,3392857343,IN 3392857344,3392858111,AU 3392858112,3392858367,IN 3392858624,3392858879,JP 3392858880,3392859135,AU 3392859136,3392859647,PH 3392859648,3392860159,ID 3392860160,3392860671,AU 3392860672,3392861183,ID 3392861184,3392861439,TH 3392861440,3392861695,VN 3392861696,3392862207,AU 3392862208,3392863231,KI 3392863232,3392864255,BD 3392864256,3392864511,CN 3392864768,3392865279,IN 3392865280,3392866303,NU 3392866304,3392880639,AU 3392880640,3392888831,PK 3392888832,3392892927,AU 3392892928,3392897023,JP 3392897024,3392901119,BD 3392901120,3392903167,JP 3392903168,3392905215,HK 3392905216,3392909311,ID 3392909312,3392913407,JP 3392913408,3392917503,ID 3392917504,3392918527,BD 3392918528,3392919551,CN 3392919552,3392921599,KR 3392921600,3392921855,NZ 3392921856,3392922623,AU 3392922624,3392922879,IN 3392922880,3392923135,AU 3392923136,3392923391,BN 3392923392,3392923647,IN 3392923648,3392924159,CN 3392924160,3392924671,JP 3392924672,3392924927,CN 3392924928,3392925183,AU 3392925184,3392925695,VN 3392925952,3392926719,AU 3392926720,3392927231,IN 3392927232,3392927743,AU 3392927744,3392927999,IN 3392928000,3392928255,HK 3392928256,3392928767,TW 3392928768,3392929279,VN 3392929280,3392929535,PK 3392929536,3392929791,ID 3392929792,3392931839,MU 3392931840,3392933887,PH 3392933888,3392942079,JP 3392942080,3392944127,CN 3392944128,3392945151,MY 3392945152,3392946175,IN 3392946176,3392954367,AU 3392954368,3392956415,CN 3392956416,3392958463,VN 3392958464,3392962559,CN 3392962560,3392963583,IN 3392963584,3392970751,CN 3392970752,3392978943,JP 3392978944,3392983039,TH 3392983040,3392987135,IN 3392987136,3392995327,HK 3392995328,3392995583,PG 3392995584,3392995839,JP 3392995840,3392996351,NZ 3392996352,3392997375,AU 3392997376,3392998399,IN 3392998400,3392999423,AU 3392999424,3393003519,JP 3393003520,3393011711,PK 3393019904,3393020159,ID 3393020160,3393020415,MN 3393020416,3393021439,ID 3393021440,3393021695,IN 3393021696,3393021951,HK 3393021952,3393022463,ID 3393022464,3393022975,SG 3393022976,3393023231,PH 3393023232,3393023487,AU 3393023488,3393023743,SG 3393023744,3393023999,IN 3393024000,3393024511,ID 3393024512,3393025023,NZ 3393025024,3393025279,AU 3393025280,3393025535,IN 3393025536,3393025791,PH 3393025792,3393026047,AU 3393026560,3393026815,AU 3393027072,3393028095,ID 3393028096,3393060863,AU 3393060864,3393062911,FJ 3393062912,3393069055,ID 3393069056,3393077247,AU 3393077248,3393085439,IN 3393085440,3393089535,LA 3393089536,3393090559,CN 3393090560,3393091071,IN 3393091072,3393093631,FJ 3393093632,3393101823,AU 3393101824,3393110015,JP 3393110016,3393118207,HK 3393118208,3393122303,IN 3393122304,3393123327,AU 3393123328,3393123583,IN 3393123584,3393123839,NZ 3393123840,3393124351,IN 3393124352,3393125631,CN 3393125632,3393125887,JP 3393125888,3393126143,AU 3393126144,3393126399,CN 3393126400,3393134591,HK 3393134592,3393146879,AU 3393146880,3393150975,CN 3393150976,3393159167,IN 3393159168,3393167359,SG 3393167360,3393175551,CN 3393175552,3393183743,PK 3393183744,3393184255,SG 3393184256,3393184767,PK 3393184768,3393187839,SG 3393187840,3393189887,NP 3393189888,3393190911,CN 3393190912,3393191167,IN 3393191424,3393191935,SB 3393191936,3393257471,HK 3393257472,3393260031,CN 3393260032,3393260543,BD 3393260544,3393265663,AU 3393265664,3393273855,CK 3393273856,3393282047,AU 3393282048,3393286143,CN 3393286144,3393290239,ID 3393290240,3393298431,IN 3393298432,3393300479,NZ 3393300480,3393302527,BD 3393302528,3393306623,PH 3393306624,3393314815,HK 3393314816,3393318911,ID 3393318912,3393320959,SG 3393320960,3393363967,HK 3393372160,3393374975,HK 3393374976,3393375743,SG 3393375744,3393388543,HK 3393388544,3393389567,CN 3393389568,3393390591,IN 3393390592,3393392639,ID 3393392640,3393396735,JP 3393396736,3393400831,ID 3393400832,3393404927,JP 3393404928,3393421311,AU 3393421312,3393470463,HK 3393470464,3393474559,AU 3393474560,3393478655,NZ 3393478656,3393486847,AU 3393486848,3393495039,IN 3393495040,3393499135,AU 3393499136,3393503231,SG 3393503232,3393507327,HK 3393507328,3393511423,SG 3393511424,3393519615,KR 3393519616,3393520639,HK 3393520640,3393521663,CN 3393521664,3393523711,PK 3393523712,3393527807,CN 3393527808,3393535999,PK 3393536000,3393544191,HK 3393544192,3393548287,ID 3393548288,3393552383,JP 3393552384,3393553407,HK 3393553408,3393554431,AU 3393554432,3393556479,TH 3393556480,3393560575,SG 3393560576,3393568767,PH 3393568768,3393572863,LK 3393572864,3393576959,AU 3393576960,3393581055,JP 3393581056,3393585151,HK 3393585152,3393593343,CN 3393593344,3393597439,MN 3393597440,3393601535,ID 3393601536,3393609727,NP 3393609728,3393613823,CN 3393613824,3393617919,AS 3393617920,3393618431,AU 3393618432,3393618687,NZ 3393618688,3393618943,IN 3393618944,3393620223,ID 3393620224,3393620479,AU 3393620480,3393620735,ID 3393620736,3393620991,AU 3393620992,3393621247,JP 3393621248,3393622015,AU 3393622016,3393626111,PK 3393626112,3393630207,HK 3393630208,3393634303,JP 3393634304,3393638399,CN 3393638400,3393650687,JP 3393650688,3393658879,IN 3393658880,3393662975,CN 3393662976,3393675263,JP 3393675264,3393679359,MY 3393679360,3393683455,TH 3393683456,3393691647,IN 3393691648,3393695743,AU 3393695744,3393699839,PH 3393699840,3393724415,HK 3393724416,3393726463,AU 3393726464,3393728511,CN 3393728512,3393736703,JP 3393736704,3393740799,CN 3393740800,3393741567,US 3393741568,3393741823,MG 3393741824,3393742847,US 3393742848,3393743871,TL 3393743872,3393744895,US 3393744896,3393748991,CN 3393748992,3393765375,AU 3393765376,3393773567,ID 3393773568,3393774591,IN 3393774592,3393775615,HK 3393775616,3393777663,BD 3393777664,3393779711,MN 3393779712,3393780735,IN 3393780736,3393782783,HK 3393783808,3393785855,MY 3393785856,3393789951,ID 3393789952,3393798143,SG 3393798144,3393806335,JP 3393806336,3393814527,ID 3393814528,3393815551,CN 3393815552,3393816575,KR 3393816576,3393818623,JP 3393818624,3393822719,AU 3393822720,3393830911,PH 3393830912,3393835007,NZ 3393835008,3393839103,JP 3393839104,3393843199,ID 3393843200,3393847295,CN 3393847296,3393848319,HK 3393848320,3393849343,JP 3393849344,3393851391,CN 3393851392,3393855487,JP 3393855488,3393855743,AU 3393855744,3393855999,NZ 3393856000,3393856255,AU 3393856256,3393856511,HK 3393856768,3393857023,SG 3393857024,3393857535,NZ 3393857536,3393858047,HK 3393858304,3393858559,ID 3393858560,3393858815,AU 3393858816,3393859071,ID 3393859072,3393859327,AU 3393859328,3393859583,JP 3393859584,3393860095,AU 3393860096,3393860607,HK 3393860608,3393861631,IN 3393861632,3393861887,VN 3393861888,3393862143,AU 3393862144,3393862655,VN 3393862656,3393862911,NZ 3393862912,3393863167,AU 3393863168,3393863679,SG 3393863680,3393865727,AU 3393865728,3393867775,ID 3393867776,3393871871,CN 3393871872,3393874943,HK 3393874944,3393875967,AU 3393875968,3393876991,HK 3393876992,3393878015,SG 3393878016,3393879039,IN 3393879040,3393880063,HK 3393880064,3393896447,AU 3393896448,3393906687,NZ 3393906688,3393907711,CN 3393907712,3393908735,ID 3393908736,3393910783,BD 3393910784,3393911807,PH 3393911808,3393912063,AU 3393912064,3393912319,JP 3393912320,3393912831,CN 3393912832,3393913855,HK 3393913856,3393914879,MY 3393914880,3393916927,JP 3393916928,3393921023,ID 3393921024,3393929215,MY 3393929216,3393937407,HK 3393937408,3393941503,ID 3393941504,3393945599,JP 3393945600,3393961983,MY 3393961984,3393966079,IN 3393966080,3393970175,CN 3393970176,3393974271,JP 3393974272,3393976319,SG 3393976320,3393977343,MO 3393977344,3393978367,CN 3393978368,3394011135,HK 3394011136,3394027519,AU 3394027520,3394035711,JP 3394035712,3394039807,MY 3394039808,3394040575,SG 3394040576,3394040831,IN 3394040832,3394041855,SG 3394041856,3394042879,AU 3394042880,3394043903,CN 3394043904,3394060287,HK 3394060288,3394064383,ID 3394064384,3394066431,CN 3394066432,3394067455,AU 3394067456,3394068479,CN 3394068480,3394076671,ID 3394076672,3394078719,HK 3394078720,3394078975,AU 3394078976,3394079231,IN 3394079232,3394079743,PH 3394079744,3394087471,HK 3394087472,3394087487,CN 3394087488,3394111487,HK 3394111488,3394113535,CN 3394113536,3394117631,SG 3394117632,3394121727,AU 3394121728,3394125823,SG 3394125824,3394142207,PH 3394142208,3394150399,NZ 3394150400,3394154495,IN 3394154496,3394158591,JP 3394158592,3394162687,ID 3394162688,3394166783,JP 3394166784,3394168831,VN 3394168832,3394170879,IN 3394170880,3394172927,NZ 3394172928,3394173695,JP 3394173696,3394173951,IN 3394173952,3394174975,HK 3394174976,3394179071,JP 3394179072,3394181119,BD 3394181120,3394183167,KH 3394183168,3394191359,NP 3394191360,3394207743,SG 3394207744,3394215935,JP 3394215936,3394220031,AU 3394220032,3394232319,SG 3394232320,3394234367,CN 3394234368,3394236415,VN 3394236416,3394238463,JP 3394238464,3394239487,CN 3394239488,3394248703,HK 3394248704,3394252799,VU 3394252800,3394256895,IN 3394256896,3394265087,AU 3394265088,3394267135,JP 3394267136,3394269183,TW 3394269184,3394273279,ID 3394273280,3394277375,HK 3394277376,3394279423,AU 3394279424,3394281471,PH 3394281472,3394285567,SG 3394285568,3394289663,AU 3394289664,3394293759,CN 3394293760,3394297855,ID 3394297856,3394306047,TH 3394306048,3394307071,CN 3394307072,3394308095,AU 3394308096,3394310143,JP 3394310144,3394314239,AU 3394314240,3394322431,ID 3394322432,3394326527,AU 3394326528,3394330623,JP 3394330624,3394338815,AU 3394338816,3394347007,IN 3394347008,3394351103,PH 3394351104,3394355199,CN 3394355200,3394359295,IN 3394359296,3394363391,AU 3394363392,3394375839,HK 3394375840,3394375847,CN 3394375848,3394441215,HK 3394441216,3394453503,IN 3394453504,3394461695,AU 3394461696,3394465791,SG 3394465792,3394467839,AU 3394467840,3394468863,ID 3394468864,3394469887,BD 3394469888,3394478079,JP 3394478080,3394482175,PK 3394482176,3394484223,AU 3394484224,3394486271,JP 3394486272,3394494463,HK 3394494464,3394498559,JP 3394498560,3394500607,HK 3394500608,3394501631,SG 3394501632,3394502655,CN 3394502656,3394503679,HK 3394503680,3394507263,CN 3394507264,3394507775,JP 3394508544,3394508799,PH 3394508800,3394510847,CN 3394510848,3394514943,BD 3394514944,3394519039,JP 3394519040,3394521087,BD 3394521088,3394523135,KH 3394523136,3394527231,JP 3394527232,3394535423,PH 3394535424,3394621439,HK 3394621440,3394625535,CN 3394625536,3394629631,HK 3394629632,3394631679,AU 3394631680,3394634751,HK 3394634752,3394635775,AU 3394635776,3394637823,KR 3394637824,3394641919,AF 3394641920,3394648063,AU 3394648064,3394650111,JP 3394650112,3394658303,HK 3394658304,3394662399,NZ 3394662400,3394664447,AU 3394664448,3394666495,JP 3394666496,3394682879,MO 3394682880,3394686975,PH 3394686976,3394689023,AU 3394689024,3394691071,BD 3394691072,3394697215,JP 3394697216,3394697471,SG 3394697472,3394697727,CN 3394697728,3394697983,AU 3394697984,3394698239,IN 3394698240,3394699263,CN 3394699264,3394700287,HK 3394700288,3394707455,AU 3394707456,3394715647,IN 3394715648,3394719743,JP 3394719744,3394723839,CN 3394723840,3394732031,MY 3394732032,3394740223,NC 3394740224,3394744319,AU 3394744320,3394752511,ID 3394752512,3394753535,WS 3394753536,3394754559,VN 3394754560,3394756607,MY 3394756608,3394760703,JP 3394760704,3394764799,ID 3394764800,3394772991,HK 3394772992,3394774015,CN 3394774016,3394775039,HK 3394775040,3394776063,BD 3394776064,3394777087,NZ 3394777088,3394781183,JP 3394781184,3394789375,MP 3394789376,3394797567,HK 3394797568,3394813951,IN 3394813952,3394815999,JP 3394816000,3394818047,HK 3394818048,3394830335,IN 3394830336,3394831359,HK 3394831360,3394832383,NZ 3394832384,3394834431,CN 3394834432,3394834559,HK 3394834560,3394834575,JP 3394834576,3394834591,SG 3394834592,3394834599,JP 3394834600,3394834607,SG 3394834608,3394834687,HK 3394834688,3394834943,JP 3394834944,3394834959,HK 3394834960,3394834975,JP 3394834976,3394834983,HK 3394834984,3394834991,SG 3394834992,3394835055,HK 3394835056,3394835071,SG 3394835072,3394835199,HK 3394835200,3394835455,JP 3394835456,3394835583,SG 3394835584,3394835711,JP 3394835712,3394835967,CN 3394835968,3394836223,HK 3394836224,3394836239,JP 3394836240,3394836247,AS 3394836248,3394836415,JP 3394836416,3394836479,HK 3394836480,3394838527,BT 3394838528,3394846719,NZ 3394846720,3394850815,IN 3394850816,3394854911,JP 3394854912,3394855935,CN 3394855936,3394856959,AU 3394856960,3394857983,IN 3394857984,3394859007,CN 3394859008,3394860031,JP 3394860032,3394860543,ID 3394860544,3394860799,IN 3394861056,3394862079,HK 3394862080,3394863103,KR 3394863104,3394871295,NZ 3394871296,3394879487,AU 3394879488,3394883583,PH 3394883584,3394887679,ID 3394887680,3394889727,JP 3394889728,3394891775,CN 3394891776,3394893823,JP 3394893824,3394894847,KR 3394894848,3394895871,HK 3394895872,3394896895,CN 3394896896,3394897919,TH 3394897920,3394899967,JP 3394899968,3394904063,CN 3394904064,3394904319,AU 3394904320,3394904575,IN 3394904576,3394905087,AU 3394905088,3394905343,BN 3394905600,3394906111,AU 3394906112,3394906367,IN 3394906368,3394906623,AU 3394906624,3394907135,IN 3394907136,3394908159,NZ 3394908160,3394910207,AU 3394910208,3394912255,NZ 3394912256,3394920447,PF 3394920448,3394928639,CN 3394928640,3394936831,PH 3394936832,3394940927,AU 3394940928,3394945023,JP 3394945024,3394945279,IN 3394945536,3394946047,ID 3394946048,3394946303,CN 3394946304,3394946559,AU 3394946560,3394947071,ID 3394947072,3394948095,BD 3394948096,3394948351,IN 3394948608,3394949119,AU 3394949120,3394953215,JP 3394953216,3394957311,CN 3394957312,3394959359,AU 3394959360,3394960383,HK 3394961408,3394962431,CN 3394962432,3394963455,AU 3394963456,3394965503,ID 3394965504,3394967551,TH 3394967552,3394969599,ID 3394969600,3394973695,SG 3394973696,3394977791,JP 3394977792,3394985983,IN 3394985984,3394990079,CN 3394990080,3394994175,JP 3394994176,3394995199,CN 3394995200,3394998271,IN 3394998272,3395002367,JP 3395002368,3395006463,PH 3395006464,3395010559,CN 3395010560,3395014655,AU 3395014656,3395018751,JP 3395018752,3395027967,CN 3395027968,3395028991,VN 3395028992,3395031039,CN 3395031040,3395035135,PK 3395035136,3395039231,AU 3395039232,3395043327,CN 3395043328,3395059711,AU 3395059712,3395067903,PH 3395067904,3395076095,HK 3395076096,3395080191,ID 3395080192,3395084287,AU 3395084288,3395088383,IN 3395088384,3395091455,AU 3395091456,3395093503,CN 3395093504,3395094015,AU 3395094016,3395094527,KR 3395094528,3395096575,KH 3395096576,3395104767,ID 3395104768,3395108863,TH 3395108864,3395117055,JP 3395117056,3395121151,AU 3395121152,3395129343,ID 3395129344,3395131391,JP 3395131392,3395131647,AU 3395131648,3395131903,KH 3395131904,3395132159,IN 3395132160,3395132415,AU 3395132416,3395133439,VN 3395133440,3395141631,AU 3395141632,3395145727,HK 3395145728,3395149823,BN 3395149824,3395155967,ID 3395155968,3395156991,AU 3395156992,3395158015,CN 3395166208,3395170303,AU 3395170304,3395174399,JP 3395174400,3395174911,AU 3395174912,3395175167,NP 3395175168,3395175679,IN 3395175680,3395175935,AU 3395175936,3395176191,SG 3395176192,3395176703,AU 3395176704,3395176959,TH 3395177216,3395177471,HK 3395177472,3395177983,TH 3395177984,3395178495,AU 3395178496,3395178751,ID 3395179008,3395179263,VN 3395179264,3395180031,ID 3395180032,3395180287,JP 3395180288,3395180543,HK 3395180544,3395181055,VN 3395181568,3395182591,CN 3395182592,3395190783,SG 3395190784,3395198975,JP 3395198976,3395203071,MY 3395203072,3395215359,JP 3395215360,3395219455,HK 3395219456,3395223551,TH 3395223552,3395231743,CN 3395231744,3395239935,JP 3395239936,3395254783,SG 3395254784,3395255039,IN 3395255040,3395256319,SG 3395256320,3395264511,ID 3395264512,3395272703,JP 3395272704,3395276799,PG 3395276800,3395280895,JP 3395280896,3395284991,PH 3395284992,3395287039,CN 3395287040,3395287551,JP 3395287552,3395287807,NZ 3395287808,3395288063,IN 3395288064,3396995071,CN 3396995072,3396997119,ID 3396997120,3396999167,IN 3396999168,3397001215,JP 3397001216,3397003263,CN 3397003264,3397005311,TH 3397005312,3397009407,JP 3397009408,3397017599,CN 3397017600,3397021695,HK 3397021696,3397026047,CN 3397026048,3397026303,AU 3397026304,3397026815,TH 3397026816,3397027071,CN 3397027072,3397027327,PH 3397027840,3397029887,JP 3397029888,3397033983,MY 3397033984,3397038079,ID 3397038080,3397058559,JP 3397058560,3397066751,MU 3397066752,3397070847,IN 3397070848,3397074943,PH 3397074944,3397083135,HK 3397083136,3397087231,CN 3397087232,3397088255,JP 3397088256,3397090303,CN 3397090304,3397091327,TW 3397091328,3397093375,GU 3397093376,3397093631,MP 3397093632,3397095679,GU 3397095680,3397095935,MP 3397095936,3397099519,GU 3397099520,3397103615,HK 3397103616,3397105663,LA 3397105664,3397107711,JP 3397107712,3397115903,HK 3397115904,3397119999,ID 3397120000,3397124095,PK 3397124096,3397128191,JP 3397128192,3397131263,CN 3397131264,3397132287,HK 3397132288,3397136383,AU 3397136384,3397140479,JP 3397140480,3397148671,AU 3397148672,3397156863,NZ 3397156864,3397165055,PH 3397165056,3397173247,LK 3397173248,3397173503,AU 3397173504,3397173759,PH 3397173760,3397174015,IN 3397174016,3397174271,AU 3397174272,3397175295,ID 3397175296,3397175807,AU 3397175808,3397176063,IN 3397176064,3397176319,ID 3397176320,3397176575,VN 3397176576,3397176831,ID 3397176832,3397177343,AU 3397177344,3397181439,JP 3397181440,3397185535,PW 3397185536,3397187583,AU 3397187584,3397189631,IN 3397189632,3397201919,AU 3397201920,3397206015,JP 3397206016,3397210111,BD 3397210112,3397211135,ID 3397211136,3397211647,TH 3397211648,3397212159,AU 3397212160,3397212671,ID 3397212672,3397213183,HK 3397213184,3397213439,IN 3397213440,3397213695,AU 3397213696,3397214207,ID 3397214208,3397214719,BD 3397214720,3397215231,AU 3397215232,3397215743,ID 3397215744,3397216255,PH 3397216256,3397216767,AU 3397216768,3397217023,IN 3397217024,3397217279,SG 3397217280,3397217535,AU 3397217792,3397218047,NZ 3397218048,3397218303,AU 3397218304,3397222399,CN 3397222400,3397230591,PK 3397230592,3397234687,AU 3397234688,3397238783,CN 3397238784,3397255167,HK 3397255168,3397263359,JP 3397263360,3397267455,PH 3397267456,3397271551,HK 3397271552,3397275647,TW 3397275648,3397277695,NZ 3397277696,3397279743,MN 3397279744,3397283839,AU 3397283840,3397285887,KR 3397285888,3397287935,BD 3397287936,3397299359,SG 3397299360,3397299375,IN 3397299376,3397304319,SG 3397304320,3397308415,NZ 3397308416,3397312511,HK 3397312512,3397320703,JP 3397320704,3397322751,CN 3397322752,3397323775,NZ 3397323776,3397328895,CN 3397328896,3397330943,ID 3397330944,3397337087,CN 3397337088,3397338375,HK 3397338376,3397338379,JP 3397338380,3397339647,HK 3397339648,3397339687,SG 3397339688,3397340927,HK 3397340928,3397341183,TH 3397341184,3397345279,JP 3397345280,3397349375,ID 3397349376,3397363711,CN 3397363712,3397365759,HK 3397365760,3397369855,JP 3397369856,3397374463,CN 3397374464,3397374975,AU 3397374976,3397386239,CN 3397386240,3397394431,GU 3397394432,3397402623,PH 3397402624,3397410815,GU 3397410816,3397411327,AU 3397411328,3397411583,SG 3397411584,3397411839,HK 3397411840,3397412351,KR 3397412352,3397412863,AU 3397412864,3397413375,HK 3397413376,3397413631,AU 3397413632,3397413887,IN 3397413888,3397414399,NZ 3397414400,3397414911,IN 3397414912,3397419007,AU 3397419008,3397419583,HK 3397419584,3397419599,KR 3397419600,3397419607,HK 3397419608,3397419615,KR 3397419616,3397419647,HK 3397419648,3397419671,KR 3397419672,3397419711,HK 3397419712,3397419719,KR 3397419720,3397427199,HK 3397427200,3397443583,SG 3397443584,3397451775,HK 3397451776,3397468159,TH 3397468160,3397492735,AU 3397492736,3397496831,MY 3397496832,3397498879,JP 3397498880,3397500927,ID 3397500928,3397501951,BD 3397501952,3397503999,IN 3397504000,3397505023,TH 3397505280,3397505535,IN 3397506048,3397506559,IN 3397506560,3397506815,AU 3397506816,3397507071,IN 3397507072,3397507583,ID 3397507584,3397507839,AU 3397507840,3397508095,IN 3397508096,3397509119,PH 3397509120,3397510143,ID 3397510144,3397511167,FJ 3397511168,3397512191,LK 3397512192,3397512447,KH 3397512448,3397512703,AU 3397512704,3397512959,PH 3397512960,3397513727,IN 3397513728,3397514239,SG 3397514240,3397515263,AU 3397515264,3397516287,NP 3397516288,3397516543,AU 3397516544,3397516799,NZ 3397516800,3397517055,JP 3397517056,3397517311,AU 3397517312,3397525503,CN 3397525504,3397526527,AU 3397526528,3397527039,VN 3397527040,3397527295,AU 3397527552,3397528575,IN 3397528576,3397530623,AU 3397530624,3397531647,ID 3397531648,3397532671,SG 3397532672,3397533695,JP 3397533696,3397566463,HK 3397566464,3397574655,AU 3397574656,3397582847,CN 3397582848,3397584895,MN 3397584896,3397586943,JP 3397586944,3397588991,CN 3397588992,3397591039,KR 3397591040,3397595135,HK 3397595136,3397599231,CN 3397599232,3397603327,HK 3397603328,3397605375,KH 3397605376,3397607423,AU 3397607424,3397623807,IN 3397623808,3397631999,GU 3397632000,3397636095,JP 3397636096,3397640191,CN 3397640192,3397648383,MN 3397648384,3397713919,TW 3397713920,3397715967,ID 3397715968,3397718015,HK 3397718016,3397722111,KR 3397722112,3397726207,CN 3397726208,3397730303,IN 3397738496,3397742591,MY 3397742592,3397746687,JP 3397746688,3397763071,TH 3397763072,3397771263,PH 3397771264,3397779455,TW 3397779456,3397781503,ID 3397781504,3397783551,BD 3397783552,3397785599,VN 3397785600,3397787391,TO 3397787392,3397791743,AU 3397791744,3397791999,NZ 3397792000,3397792767,AU 3397792768,3397793023,IN 3397793024,3397793279,NZ 3397793280,3397793535,VN 3397793536,3397793791,HK 3397793792,3397794303,PH 3397794304,3397794559,CN 3397794560,3397794815,IN 3397794816,3397812223,HK 3397812224,3397816319,CN 3397816320,3397832703,IN 3397832704,3397836799,CN 3397836800,3397844991,AU 3397844992,3397854719,JP 3397854720,3397854975,NZ 3397854976,3397869823,JP 3397869824,3397870079,AU 3397870080,3397887999,JP 3397888000,3397889023,IN 3397889024,3397906111,JP 3397906112,3397906175,IN 3397906176,3397910527,JP 3397910528,3397918719,SG 3397918720,3397922815,AU 3397922816,3397926911,CN 3397935104,3397939199,AU 3397939200,3397951487,KR 3397951488,3397959679,SG 3397959680,3397963775,JP 3397963776,3397971967,CN 3397971968,3397974015,LA 3397974016,3397975039,CN 3397975040,3397976063,AU 3397976064,3397984255,ID 3397984256,3397992447,JP 3397992448,3398004735,AU 3398004736,3398008831,PH 3398008832,3398017023,LA 3398017024,3398021119,AU 3398021120,3398023167,FJ 3398023168,3398025215,JP 3398025216,3398029311,AU 3398029312,3398033407,IN 3398033408,3398033663,NZ 3398033664,3398033919,ID 3398033920,3398034943,IN 3398034944,3398035199,ID 3398035200,3398035455,CN 3398035456,3398037503,IN 3398037504,3398039551,NZ 3398039552,3398040575,IN 3398040576,3398041599,MY 3398041600,3398062079,AU 3398062080,3398066175,JP 3398066176,3398074367,IN 3398074368,3398090751,PH 3398090752,3398098943,AU 3398098944,3398107135,ID 3398107136,3398156287,AU 3398156288,3398164479,TH 3398164480,3398172671,AU 3398172672,3398180863,JP 3398180864,3398189055,IN 3398189056,3398205439,HK 3398205440,3398208511,IN 3398208512,3398213631,CN 3398213632,3398221823,TW 3398221824,3398230015,JP 3398230016,3398238207,HK 3398238208,3398279167,IN 3398279168,3398287359,CN 3398287360,3398291455,JP 3398291456,3398295551,AU 3398295552,3398303743,PK 3398303744,3398305791,IN 3398305792,3398307839,JP 3398307840,3398311935,CN 3398311936,3398320127,AU 3398320128,3398336511,IN 3398336512,3398340607,AU 3398340608,3398352895,PK 3398352896,3398361087,TH 3398361088,3398369279,JP 3398369280,3398369791,IN 3398369792,3398370303,JP 3398370304,3398371327,CN 3398371328,3398373375,JP 3398373376,3398381567,CN 3398381568,3398383615,AU 3398383616,3398385663,CN 3398385664,3398393855,JP 3398393856,3398394879,IN 3398394880,3398396927,CN 3398396928,3398397951,VN 3398397952,3398402047,PK 3398402048,3398418431,TH 3398418432,3398434815,JP 3398434816,3398467583,IN 3398467584,3398475775,BT 3398475776,3398481919,AU 3398481920,3398483967,LA 3398483968,3398488063,MY 3398488064,3398492159,TW 3398492160,3398500351,JP 3398500352,3398504447,ID 3398504448,3398508543,JP 3398508544,3398565887,TW 3398565888,3398567423,ID 3398567424,3398569983,AU 3398569984,3398572031,JP 3398572032,3398574079,AU 3398574080,3398582271,ID 3398582272,3398590463,MY 3398590464,3398598655,HK 3398598656,3398606847,ID 3398606848,3398610943,CN 3398610944,3398612991,ID 3398612992,3398613503,PH 3398613760,3398614015,AU 3398614016,3398615039,CN 3398615040,3398616063,IN 3398616064,3398619135,CN 3398619136,3398621183,AU 3398621184,3398623231,HK 3398623232,3398631423,ID 3398631424,3398634439,JP 3398634440,3398634447,KR 3398634448,3398636543,JP 3398636544,3398636575,HK 3398636576,3398637119,JP 3398637120,3398637183,HK 3398637184,3398639903,JP 3398639904,3398639907,MY 3398639908,3398640671,JP 3398640672,3398640695,SG 3398640696,3398642431,JP 3398642432,3398642687,AU 3398642688,3398646783,JP 3398646784,3398647039,AU 3398647040,3398647807,JP 3398647808,3398655999,IN 3398656000,3398668287,AU 3398668288,3398672383,CN 3398672384,3398680575,PK 3398680576,3398684671,ID 3398684672,3398688767,JP 3398688768,3398705151,ID 3398705152,3398709247,CN 3398711296,3398713343,IN 3398713344,3398729727,CN 3398729728,3398737919,AU 3398737920,3398742015,SG 3398742016,3398746111,TH 3398746112,3398750207,IN 3398750208,3398754303,TW 3398754304,3398758399,AU 3398758400,3398768639,JP 3398768640,3398770687,TH 3398770688,3398778879,CN 3398778880,3398787071,ID 3398787072,3398795263,TH 3398795264,3398803455,ID 3398803456,3398811647,CN 3398811648,3398819839,IN 3398819840,3398828031,CN 3398828032,3398829055,KH 3398829056,3398830079,IN 3398830080,3398831103,KH 3398831104,3398831359,JP 3398831360,3398831615,HK 3398831616,3398832127,JP 3398832128,3398840319,CN 3398840320,3398842367,JP 3398842368,3398843391,CN 3398843392,3398844415,AU 3398844416,3398852607,ID 3398852608,3398860799,NZ 3398860800,3398873087,ID 3398873088,3398877183,KR 3398877184,3398881279,CN 3398881280,3398885375,SG 3398885376,3398894591,CN 3398894592,3398895615,TH 3398895616,3398897663,ID 3398897664,3398901759,FJ 3398901760,3398902015,AU 3398902272,3398902783,PH 3398902784,3398903807,AU 3398903808,3398905855,TH 3398905856,3398909951,TW 3398909952,3398918143,GU 3398918144,3398926335,JP 3398926336,3398934527,CN 3398934528,3398938623,VN 3398938624,3398942719,TH 3398942720,3398959103,MY 3398959104,3398975487,ID 3398975488,3398983679,BN 3398983680,3398991871,JP 3398991872,3399004159,ID 3399004160,3399008255,CN 3399008256,3399012351,ID 3399012352,3399016447,JP 3399016448,3399024639,ID 3399024640,3399025663,CN 3399026176,3399026431,SG 3399026688,3399028735,HK 3399028736,3399032831,ID 3399032832,3399036927,IN 3399036928,3399041023,CN 3399041024,3399045119,AU 3399045120,3399047167,MV 3399047168,3399057407,HK 3399057408,3399065599,ID 3399065600,3399077887,TW 3399077888,3399081983,AU 3399081984,3399106559,ID 3399106560,3399122943,AU 3399122944,3399131135,NZ 3399131136,3399135231,IN 3399135232,3399139327,ID 3399139328,3399147519,TW 3399147520,3399155711,PK 3399155712,3399196671,ID 3399196672,3399204863,AU 3399204864,3399221247,HK 3399221248,3399286783,SG 3399286784,3399303167,JP 3399303168,3399311359,IN 3399311360,3399319551,JP 3399319552,3399332351,SG 3399332352,3399332863,AU 3399332864,3399335935,SG 3399335936,3399344127,CN 3399344128,3399352319,JP 3399352320,3399389183,ID 3399389184,3399393279,KR 3399393280,3399401471,CN 3399401472,3399409663,AU 3399409664,3399413759,JP 3399413760,3399414015,SG 3399414016,3399414271,AU 3399414528,3399414783,AU 3399414784,3399415807,VN 3399416832,3399417087,ID 3399417088,3399417855,AU 3399417856,3399450623,ID 3399450624,3399467007,AU 3399467008,3399483391,IN 3399483392,3399495679,BN 3399495680,3399499775,NZ 3399499776,3399507967,TW 3399507968,3399512063,AU 3399512064,3399514111,NZ 3399514112,3399515135,SG 3399515136,3399515647,VN 3399515648,3399516159,AU 3399524352,3399528447,IN 3399528448,3399532543,CN 3399532544,3399548927,SG 3399548928,3399557119,AU 3399557120,3399565311,SG 3399565312,3399581695,AU 3399581696,3399581951,HK 3399581952,3399589887,US 3399589888,3399593983,HK 3399598080,3399614463,JP 3399614464,3399622655,MY 3399622656,3399626751,ID 3399626752,3399630847,IN 3399630848,3399631615,AU 3399631616,3399631871,CN 3399631872,3399632895,SG 3399632896,3399633407,NZ 3399633408,3399633663,AU 3399633664,3399633919,CN 3399633920,3399634943,TH 3399634944,3399639039,JP 3399639040,3399643135,AU 3399643136,3399655423,JP 3399655424,3399659519,PH 3399659520,3399661567,NZ 3399661568,3399662591,HK 3399662592,3399663615,IN 3399663616,3399671807,ID 3399671808,3399679999,IN 3399680000,3399680303,HK 3399680304,3399680319,DE 3399680320,3399688191,HK 3399688192,3399696383,SG 3399696384,3399712767,PK 3399712768,3399720959,KR 3399720960,3399729151,JP 3399729152,3399745535,PH 3399745536,3399749631,CN 3399749632,3399751679,AU 3399751680,3399752191,IN 3399752192,3399752447,AU 3399752448,3399752703,HK 3399752704,3399753727,NZ 3399753728,3399761919,IN 3399761920,3399770111,JP 3399770112,3399778303,CN 3399778304,3399786495,IN 3399786496,3399794687,PH 3399794688,3399798783,AU 3399798784,3399800831,BD 3399800832,3399802879,ID 3399802880,3399811071,JP 3399811072,3399819263,MY 3399819264,3399823359,ID 3399823360,3399825407,JP 3399825408,3399826431,KR 3399826432,3399826943,PH 3399826944,3399827455,IN 3399827456,3399835647,AU 3399835648,3399839743,CN 3399839744,3399841791,JP 3399843840,3399852031,TW 3399852032,3399856127,JP 3399856128,3399860223,CN 3399860224,3399864319,PG 3399864320,3399868415,CN 3399868416,3399872255,PK 3399872256,3399873023,CN 3399873024,3399873279,PK 3399873280,3399873535,CN 3399873536,3399873791,PK 3399873792,3399874047,CN 3399874048,3399875327,PK 3399875328,3399876607,CN 3399876608,3399917567,SG 3399917568,3399921663,PK 3399921664,3399923711,NC 3399923712,3399923967,IN 3399923968,3399924223,JP 3399924224,3399924735,AU 3399924736,3399925759,PH 3399925760,3399933951,NP 3399933952,3399942143,CN 3399942144,3399945983,HK 3399945984,3399946239,AU 3399946240,3399950335,HK 3399950336,3399954943,AU 3399954944,3399974911,US 3399974912,3399979007,HK 3399979008,3399982963,US 3399982964,3399982965,MY 3399982966,3399983744,US 3399983745,3399983745,SG 3399983746,3399991295,US 3399991296,3399995391,IN 3399995392,3399999487,KR 3399999488,3400000255,SG 3400000256,3400000511,AU 3400000512,3400004607,SG 3400004608,3400004863,AU 3400004864,3400007679,SG 3400007680,3400024063,AU 3400024064,3400028159,MY 3400028160,3400029183,CN 3400029184,3400031231,IN 3400031232,3400031743,SG 3400031744,3400031999,IN 3400032000,3400032255,HK 3400032256,3400040447,AU 3400048640,3400056831,CN 3400056832,3400060927,TW 3400060928,3400062975,HK 3400062976,3400065023,JP 3400065024,3400073215,BD 3400073216,3400077311,HK 3400077312,3400079359,AU 3400079360,3400081407,MY 3400081408,3400089599,ID 3400089600,3400097791,JP 3400097792,3400105983,AU 3400105984,3400114175,JP 3400114176,3400118271,TW 3400118272,3400120319,AU 3400120320,3400122367,JP 3400122368,3400130559,NZ 3400130560,3400138751,ID 3400138752,3400146943,HK 3400146944,3400151039,FJ 3400151040,3400155135,MY 3400155136,3400163327,MN 3400163328,3400167423,JP 3400167424,3400171519,TH 3400171520,3400179711,CN 3400179712,3400183807,NZ 3400183808,3400187903,JP 3400187904,3400188927,CA 3400188928,3400189951,AU 3400189952,3400191999,IN 3400192000,3400194047,JP 3400194048,3400204287,CN 3400204288,3400212479,ID 3400212480,3400220671,MY 3400220672,3400224767,NC 3400224768,3400228863,JP 3400228864,3400232959,AU 3400232960,3400245247,JP 3400245248,3400253439,AU 3400253440,3400257535,MY 3400257536,3400259583,HK 3400259584,3400261631,CN 3400261632,3400263679,JP 3400263936,3400264191,ID 3400264192,3400264447,IN 3400264448,3400264703,CN 3400264704,3400265215,ID 3400265216,3400265471,AU 3400265472,3400265727,IN 3400265728,3400267775,PG 3400267776,3400268799,KR 3400268800,3400269823,MO 3400269824,3400270847,CN 3400270848,3400271359,VN 3400271360,3400271615,AU 3400271872,3400273919,AU 3400273920,3400275967,TH 3400275968,3400278015,JP 3400278016,3400286207,SG 3400286208,3400294399,JP 3400294400,3400310783,AU 3400310784,3400335359,SG 3400335360,3400336383,CN 3400336384,3400336639,PH 3400336640,3400336895,JP 3400337152,3400337407,PH 3400337408,3400339455,CN 3400339456,3400341503,ID 3400341504,3400343551,AU 3400343552,3400351743,TW 3400351744,3400359935,ID 3400359936,3400364031,JP 3400364032,3400365055,CN 3400365056,3400366079,US 3400366080,3400367103,CN 3400367104,3400368127,IN 3400368128,3400388607,AU 3400388608,3400392703,TH 3400392704,3400400895,CN 3400400896,3400401919,MO 3400401920,3400402175,TW 3400402176,3400402431,IN 3400402432,3400402943,NZ 3400402944,3400404991,HK 3400404992,3400409087,TW 3400409088,3400413183,AU 3400413184,3400417279,JP 3400417280,3400421375,CN 3400421376,3400423423,AU 3400423424,3400424447,KR 3400424448,3400425471,IN 3400425472,3400429567,AU 3400429568,3400431615,NZ 3400431616,3400431871,IN 3400431872,3400432127,HK 3400432128,3400432639,IN 3400432640,3400433663,CN 3400433664,3400435711,HK 3400435712,3400435967,BD 3400435968,3400441855,HK 3400441856,3400446079,NZ 3400446080,3400446207,AU 3400446208,3400450047,NZ 3400450048,3400458239,JP 3400458240,3400466431,AU 3400466432,3400499199,MO 3400499200,3400503295,NZ 3400503296,3400507391,JP 3400507392,3400515583,MO 3400515584,3400531967,PH 3400531968,3400532991,IN 3400532992,3400534015,MY 3400534016,3400535039,JP 3400535040,3400535551,MY 3400535552,3400536063,AU 3400536064,3400548351,JP 3400548352,3400581119,TH 3400581120,3400589311,SG 3400589312,3400597503,CN 3400597504,3400605695,HK 3400605696,3400607743,JP 3400607744,3400608767,AU 3400608768,3400609791,IN 3400609792,3400630271,JP 3400630272,3400646655,IN 3400646656,3400646911,HK 3400646912,3400647679,SG 3400647680,3400648191,AU 3400648192,3400648677,SG 3400648678,3400648678,HK 3400648679,3400648815,SG 3400648816,3400648831,HK 3400648832,3400650409,SG 3400650410,3400650410,AU 3400650411,3400650751,SG 3400650752,3400654847,AU 3400654848,3400663039,IN 3400663040,3400683519,MY 3400683520,3400691711,JP 3400691712,3400695807,KH 3400695808,3400728575,TW 3400728576,3400736767,MN 3400736768,3400744959,JP 3400744960,3400753151,IN 3400753152,3400761343,MY 3400769536,3400773631,CN 3400773632,3400775679,KR 3400775680,3400777727,ID 3400777728,3400790015,JP 3400790016,3400794111,CN 3400794112,3400802303,ID 3400802304,3400806399,JP 3400806400,3400808447,ID 3400808448,3400810495,JP 3400810496,3400826879,NZ 3400826880,3400835071,CN 3400835072,3400839167,HK 3400839168,3400847359,JP 3400847360,3400849407,CN 3400849408,3400851455,MN 3400851456,3400859647,AU 3400867840,3400884223,AU 3400884224,3400888319,JP 3400888320,3400892415,CN 3400892416,3400925183,HK 3400925184,3400933375,TH 3400933376,3400937471,CN 3400937472,3400941567,ID 3400941568,3400966143,AU 3400966144,3400974335,ID 3400974336,3400982527,CN 3400982528,3400990719,HK 3400990720,3400998911,ID 3400998912,3401003007,PH 3401003008,3401007103,JP 3401007104,3401011199,IN 3401011200,3401015295,JP 3401015296,3401023487,AU 3401023488,3401056255,TH 3401056256,3401383935,MY 3401383936,3401400319,CN 3401400320,3401404415,AU 3401404416,3401408511,CN 3401408512,3401416703,HK 3401416704,3401416959,KR 3401417728,3401420799,SG 3401420800,3401424895,JP 3401424896,3401428991,NZ 3401428992,3401431039,JP 3401431040,3401433087,CN 3401433088,3401441279,JP 3401441280,3401449471,IN 3401449472,3401515007,MY 3401515008,3401515263,CN 3401515264,3401515519,AU 3401515520,3401516031,ID 3401516032,3401519103,AU 3401519104,3401523199,JP 3401523200,3401527295,NZ 3401527296,3401529343,AU 3401529344,3401530367,VN 3401530368,3401531391,AU 3401531392,3401532415,IN 3401532416,3401539583,CN 3401539584,3401543679,AU 3401543680,3401545727,JP 3401545728,3401547775,BD 3401547776,3401580543,IN 3401580544,3402629119,CN 3402629120,3402917631,JP 3402917632,3402917785,US 3402917786,3402917786,JP 3402917787,3402917887,US 3402917888,3405774847,JP 3405774848,3405775871,AU 3405775872,3405776895,CN 3405776896,3405777407,AU 3405777408,3405777919,CN 3405777920,3405779455,AU 3405779456,3405779711,CN 3405779712,3405780991,AU 3405780992,3405781247,CN 3405781248,3405785599,AU 3405785600,3405786111,CN 3405786112,3405786367,AU 3405786368,3405787135,CN 3405787136,3405795583,AU 3405795584,3405796351,CN 3405796352,3405797887,AU 3405797888,3405798399,CN 3405798400,3405799423,AU 3405799424,3405799935,CN 3405799936,3405801471,AU 3405801472,3405803519,CN 3405803520,3405803775,AU 3405804032,3405804543,CN 3405804544,3405806079,AU 3405806080,3405806335,CN 3405806336,3405807615,AU 3405807616,3405807871,CN 3405807872,3405808127,AU 3405808128,3405809663,CN 3405809664,3405809919,AU 3405809920,3405810175,CN 3405810176,3405811199,AU 3405811200,3405811455,CN 3405811456,3405811711,AU 3405811712,3405811967,CN 3405811968,3405812223,AU 3405812224,3405812479,CN 3405812480,3405812735,AU 3405812736,3405812991,CN 3405812992,3405813247,AU 3405813248,3405814015,CN 3405814016,3405820159,AU 3405820160,3405820415,CN 3405820416,3405832191,AU 3405832192,3405832447,CN 3405832448,3405839359,AU 3405839360,3405840383,HK 3405840384,3405841407,AU 3405841408,3405842431,CN 3405842432,3405844991,AU 3405844992,3405845247,CN 3405845248,3405846783,AU 3405846784,3405847039,ID 3405847040,3405847551,CN 3405847552,3405857023,AU 3405857024,3405857791,CN 3405857792,3405858303,AU 3405858304,3405858815,CN 3405858816,3405859839,AU 3405859840,3405860351,CN 3405860352,3405863423,AU 3405863424,3405863679,CN 3405863680,3405865215,AU 3405865216,3405867007,CN 3405867008,3405868031,AU 3405868032,3405868287,CN 3405868288,3405905151,AU 3405905152,3405905663,CN 3405905664,3405922303,AU 3405922304,3405924351,CN 3405924352,3405924607,AU 3405924608,3405924863,CN 3405924864,3405934591,AU 3405934592,3405936639,CN 3405936640,3405938175,AU 3405938176,3405938687,CN 3405938688,3405941759,AU 3405941760,3405942015,CN 3405942016,3405944319,AU 3405944320,3405944575,CN 3405944576,3405944831,AU 3405944832,3405946367,CN 3405946368,3405946879,AU 3405946880,3405948927,CN 3405948928,3405951999,AU 3405952000,3405952511,CN 3405952512,3405956095,AU 3405956096,3405956607,CN 3405956608,3405959423,AU 3405959424,3405959679,CN 3405959680,3405960703,AU 3405960704,3405961215,CN 3405961216,3405963775,AU 3405963776,3405964287,CN 3405964288,3405964543,JP 3405964544,3405964799,CN 3405964800,3405966335,AU 3405966336,3405966847,CN 3405966848,3405988863,AU 3405988864,3405989119,CN 3405989120,3405989887,AU 3405989888,3405990399,CN 3405990400,3405990655,AU 3405990656,3405990911,CN 3405990912,3405991935,AU 3405991936,3405993983,CN 3405993984,3405996031,AU 3405996032,3405997055,CN 3405997056,3405998335,AU 3405998336,3405998591,CN 3405998592,3406000127,AU 3406000128,3406002431,CN 3406002432,3406002943,AU 3406002944,3406003199,CN 3406003200,3406005247,AU 3406005504,3406006015,AU 3406006016,3406006271,CN 3406006272,3406007039,AU 3406007040,3406007295,CN 3406007296,3406008063,AU 3406008064,3406008319,CN 3406008320,3406070783,AU 3406070784,3406071551,CN 3406071552,3406071807,AU 3406071808,3406073855,US 3406073856,3406075647,AU 3406075648,3406076927,CN 3406076928,3406077951,AU 3406077952,3406078207,TH 3406078208,3406081535,AU 3406081536,3406082047,CN 3406082048,3406083071,AU 3406083072,3406083327,CN 3406083328,3406084607,AU 3406084608,3406084863,CN 3406084864,3406089471,AU 3406089472,3406089727,CN 3406089728,3406090239,AU 3406090240,3406091263,CN 3406091264,3406095103,AU 3406095104,3406095359,CN 3406095360,3406095871,AU 3406095872,3406096383,CN 3406096384,3406103551,AU 3406103552,3406104063,CN 3406104064,3406104319,AU 3406104320,3406105087,CN 3406105088,3406105343,AU 3406105344,3406105599,CN 3406105600,3406107903,AU 3406107904,3406108415,CN 3406108416,3406109695,AU 3406109696,3406109951,NZ 3406109952,3406113791,AU 3406113792,3406114047,CN 3406114048,3406114303,AU 3406114304,3406114815,CN 3406114816,3406115839,AU 3406115840,3406117375,CN 3406117376,3406117887,AU 3406117888,3406118399,CN 3406118400,3406131711,AU 3406131712,3406132223,CN 3406132224,3406132735,AU 3406132736,3406132991,CN 3406132992,3406133247,AU 3406133248,3406133503,CN 3406133504,3406146559,AU 3406146560,3406146815,CN 3406146816,3406148607,AU 3406148608,3406149375,CN 3406149376,3406149887,AU 3406149888,3406150399,CN 3406150400,3406150655,AU 3406150656,3406151423,CN 3406151424,3406152447,AU 3406152448,3406152703,CN 3406152704,3406157311,AU 3406157312,3406157823,CN 3406157824,3406158335,AU 3406158336,3406158847,CN 3406158848,3406201599,AU 3406201600,3406201855,CN 3406201856,3406202879,AU 3406202880,3406203135,CN 3406203136,3406203391,AU 3406203392,3406203903,CN 3406203904,3406204415,AU 3406204416,3406204671,CN 3406204672,3406205951,AU 3406205952,3406206463,ID 3406206464,3406206975,CN 3406206976,3406208255,AU 3406208256,3406208511,CN 3406208512,3406208767,AU 3406208768,3406209023,CN 3406209024,3406221311,AU 3406223360,3406225407,AU 3406225408,3406229503,CN 3406229504,3406231039,AU 3406231040,3406231295,NZ 3406231296,3406231551,AU 3406231552,3406232063,CN 3406232064,3406266623,AU 3406266624,3406266879,CN 3406266880,3406268927,AU 3406268928,3406269439,CN 3406269440,3406271231,AU 3406271232,3406271487,CN 3406271488,3406271999,AU 3406272000,3406272511,CN 3406272512,3406274047,AU 3406274048,3406274303,CN 3406274304,3406274559,AU 3406274560,3406276607,HK 3406276608,3406277375,AU 3406277376,3406277631,ID 3406277632,3406282751,AU 3406282752,3406283263,CN 3406283264,3406284799,AU 3406284800,3406285055,CN 3406285056,3406299135,AU 3406299136,3406299391,CN 3406299392,3406301183,AU 3406301184,3406301439,CN 3406301440,3406305023,AU 3406305024,3406305279,CN 3406305280,3406307327,HK 3406307328,3406317055,AU 3406317056,3406317311,CN 3406317312,3406320127,AU 3406320128,3406320383,CN 3406320384,3406321151,AU 3406321152,3406321663,CN 3406321664,3406322431,AU 3406322432,3406322687,CN 3406322688,3406327039,AU 3406327040,3406327295,IN 3406327296,3406327807,CN 3406327808,3406328575,AU 3406328576,3406328831,CN 3406328832,3406329343,IN 3406329344,3406331647,AU 3406331648,3406331903,VN 3406331904,3406341631,AU 3406341632,3406342143,CN 3406342144,3406342399,AU 3406342400,3406342655,CN 3406342656,3406343167,AU 3406343168,3406343423,VN 3406343424,3406343679,CN 3406343680,3406346239,AU 3406346240,3406346495,CN 3406346496,3406346751,AU 3406346752,3406347263,CN 3406347264,3406347775,AU 3406347776,3406348543,CN 3406348544,3406349567,AU 3406349568,3406350335,CN 3406350336,3406350591,AU 3406350592,3406350847,IN 3406350848,3406351103,AU 3406351104,3406351359,CN 3406351360,3406352639,AU 3406352640,3406354431,CN 3406354432,3406354687,AU 3406354688,3406354943,CN 3406354944,3406355455,AU 3406355456,3406355711,CN 3406355712,3406372863,AU 3406372864,3406373119,CN 3406373120,3406373887,AU 3406373888,3406374399,CN 3406374400,3406379263,AU 3406379264,3406379519,CN 3406379520,3406380799,AU 3406380800,3406381055,CN 3406381056,3406381311,AU 3406381312,3406381567,CN 3406381568,3406382591,AU 3406382592,3406383359,CN 3406383360,3406383871,AU 3406383872,3406384639,CN 3406384640,3406385151,SG 3406385152,3406389247,AU 3406389248,3406390783,CN 3406390784,3406392319,AU 3406392320,3406392575,CN 3406392576,3406405119,AU 3406405120,3406405375,CN 3406405376,3406409727,AU 3406409728,3406411775,NZ 3406411776,3406413311,AU 3406413312,3406413823,JP 3406413824,3406434303,AU 3406434304,3406436351,MY 3406436352,3406438911,AU 3406438912,3406439167,CN 3406439168,3406444543,AU 3406444544,3406444799,CN 3406444800,3406445055,AU 3406445056,3406445311,MY 3406445312,3406449151,AU 3406449152,3406449663,CN 3406449664,3406451711,AU 3406451712,3406452991,CN 3406452992,3406454527,AU 3406454528,3406454783,CN 3406454784,3406462207,AU 3406462208,3406462463,CN 3406462464,3406512383,AU 3406512640,3406513663,AU 3406513664,3406513919,CN 3406513920,3406514175,AU 3406514176,3406514431,IN 3406514432,3406514687,AU 3406514688,3406514943,TH 3406514944,3406515199,AU 3406515200,3406516223,CN 3406516224,3406516735,AU 3406516736,3406516991,CN 3406516992,3406517247,AU 3406517248,3406518271,CN 3406518272,3406521343,AU 3406521344,3406522367,CN 3406522368,3406523647,AU 3406523648,3406523903,CN 3406523904,3406525695,AU 3406525696,3406525951,CN 3406525952,3406526975,AU 3406526976,3406527231,CN 3406527232,3406527999,AU 3406528000,3406528255,CN 3406528256,3406528511,AU 3406528512,3406529535,HK 3406529536,3406529791,IL 3406529792,3406530559,HK 3406530560,3406531583,CN 3406531584,3406531839,AU 3406531840,3406532607,CN 3406532608,3406541823,AU 3406541824,3406542847,CN 3406542848,3406548991,AU 3406548992,3406550015,CN 3406550016,3406565375,AU 3406565376,3406565631,CN 3406565632,3406565887,AU 3406565888,3406566143,PH 3406566144,3406566399,CN 3406566400,3406566911,ID 3406566912,3406567423,AU 3406567424,3406567679,CN 3406567680,3406572031,AU 3406572032,3406572287,JP 3406572288,3406575871,AU 3406575872,3406576127,CN 3406576128,3406577919,AU 3406577920,3406578431,CN 3406578432,3406579199,AU 3406579200,3406579711,CN 3406579712,3406583295,AU 3406583552,3406583807,CN 3406583808,3406585855,HK 3406585856,3406586111,AU 3406586112,3406586367,JP 3406586368,3406586879,AU 3406586880,3406587391,CN 3406587392,3406587647,AU 3406587648,3406587903,CN 3406587904,3406590463,AU 3406590464,3406590719,CN 3406590720,3406591487,AU 3406591488,3406591743,CN 3406591744,3406594559,AU 3406594560,3406594815,CN 3406594816,3406596351,AU 3406596352,3406596607,CN 3406596608,3406611455,AU 3406611456,3406612479,CN 3406612480,3406614527,HK 3406614528,3406615295,AU 3406615296,3406615551,CN 3406615552,3406617343,AU 3406617344,3406617599,CN 3406617600,3406617855,MY 3406617856,3406618111,AU 3406618112,3406618623,IN 3406618624,3406619135,AU 3406619136,3406619391,CN 3406619392,3406622719,AU 3406622720,3406623743,CN 3406623744,3406625023,AU 3406625024,3406625279,NF 3406625280,3406631423,AU 3406631424,3406631679,CN 3406631680,3406632959,AU 3406632960,3406633215,CN 3406633216,3406637055,AU 3406637056,3406637311,IN 3406637312,3406638079,AU 3406638080,3406638591,CN 3406638592,3406647295,AU 3406647296,3406649343,HK 3406649344,3406649855,CN 3406649856,3406650367,AU 3406650368,3406651391,CN 3406651392,3406669823,AU 3406669824,3406670847,IN 3406670848,3406671103,AU 3406671104,3406671359,CN 3406671360,3406684159,AU 3406684160,3406684671,CN 3406684672,3406684927,AU 3406684928,3406685183,CN 3406685184,3406685951,AU 3406686208,3406686463,AU 3406686464,3406686719,CN 3406686720,3406696959,AU 3406696960,3406697215,IN 3406697216,3406698495,AU 3406698496,3406699519,CN 3406699520,3406700543,AU 3406700544,3406700799,IN 3406700800,3406701055,CN 3406701056,3406706687,AU 3406706688,3406706943,CN 3406706944,3406707967,AU 3406707968,3406708479,CN 3406708480,3406718975,AU 3406718976,3406719231,CN 3406719232,3406721535,AU 3406721536,3406722047,CN 3406722048,3406722559,AU 3406722560,3406722815,CN 3406722816,3406733823,AU 3406733824,3406734079,CN 3406734080,3406734847,AU 3406734848,3406735103,HK 3406735104,3406737407,AU 3406737408,3406737663,ID 3406737664,3406739199,AU 3406739200,3406739455,ID 3406739456,3406740991,HK 3406740992,3406741503,SG 3406741504,3406741759,CN 3406741760,3406742015,AU 3406742016,3406742527,CN 3406742528,3406746623,AU 3406746624,3406746879,JP 3406746880,3406747135,AU 3406747136,3406747391,CN 3406747392,3406751487,AU 3406751488,3406751743,CN 3406751744,3406755327,AU 3406755328,3406755583,CN 3406755584,3406757887,AU 3406757888,3406761983,CN 3406761984,3406763007,AU 3406763008,3406763775,CN 3406763776,3406775295,AU 3406775296,3406775551,JP 3406775552,3406780159,AU 3406780160,3406780927,CN 3406780928,3406784767,AU 3406784768,3406785023,CN 3406785024,3406786559,AU 3406786560,3406788607,CN 3406788608,3406791167,AU 3406791168,3406791679,CN 3406791680,3406796031,AU 3406796032,3406796287,CN 3406796288,3406796543,AU 3406796544,3406796799,CN 3406796800,3406797823,AU 3406797824,3406798847,CN 3406798848,3406802431,AU 3406802432,3406802687,CN 3406802688,3406815999,AU 3406816000,3406816255,CN 3406816256,3406817279,AU 3406817280,3406819839,CN 3406819840,3406820863,AU 3406820864,3406821119,CN 3406821120,3406825983,AU 3406825984,3406826239,CN 3406826496,3406827007,CN 3406827008,3406827519,AU 3406827520,3406829567,CN 3406829568,3406830335,AU 3406830336,3406830591,CN 3406830592,3406832127,AU 3406832128,3406832383,PK 3406832384,3406833151,AU 3406833152,3406833407,CN 3406833408,3406835967,AU 3406835968,3406836735,CN 3406836736,3406838271,AU 3406838272,3406838527,CN 3406838528,3406857471,AU 3406857472,3406857727,CN 3406857728,3406864639,AU 3406864640,3406865151,CN 3406865152,3406865663,AU 3406865664,3406865919,IN 3406865920,3406869503,AU 3406869504,3406870527,JP 3406870528,3406871039,AU 3406871040,3406871551,CN 3406871552,3406881791,AU 3406881792,3406882047,CN 3406882048,3406884351,AU 3406884352,3406884607,CN 3406884608,3406884863,HK 3406884864,3406885119,CN 3406885120,3406886143,AU 3406886144,3406886399,CN 3406886400,3406889471,AU 3406889472,3406889727,CN 3406889728,3406893567,AU 3406893568,3406893823,CN 3406893824,3406894335,AU 3406894336,3406894591,ID 3406894592,3406896127,AU 3406896128,3406896383,CN 3406896384,3406896895,AU 3406896896,3406897151,IN 3406897152,3406898943,AU 3406898944,3406899199,CN 3406899200,3406903295,AU 3406903296,3406903551,CN 3406903552,3406907903,AU 3406907904,3406908415,CN 3406908416,3406911487,AU 3406911488,3406911999,CN 3406912000,3406923775,AU 3406923776,3406924031,CN 3406924032,3406930431,AU 3406930432,3406930687,JP 3406930688,3406930943,AU 3406930944,3406931199,CN 3406931200,3406936831,AU 3406936832,3406937087,CN 3406937088,3406937343,AU 3406937600,3406938111,CN 3406938112,3406938623,AU 3406938624,3406938879,IN 3406938880,3406946815,AU 3406946816,3406947071,KR 3406947072,3406948095,AU 3406948096,3406948351,CN 3406948352,3406948607,AU 3406948608,3406948863,CN 3406948864,3406950399,AU 3406950400,3406951423,NF 3406951424,3406952447,AU 3406952448,3406952703,CN 3406952960,3406954239,AU 3406954240,3406954495,CN 3406954496,3406955007,AU 3406955008,3406955775,CN 3406955776,3406956287,AU 3406956288,3406956543,CN 3406956544,3406961151,AU 3406961152,3406961407,IN 3406961408,3406962431,AU 3406962432,3406962687,CN 3406962688,3406963967,AU 3406963968,3406964223,CN 3406964224,3406966783,AU 3406966784,3406967295,CN 3406967296,3406967551,HK 3406967552,3406967807,IN 3406967808,3406968063,CN 3406968064,3406972927,AU 3406972928,3406973951,CN 3406973952,3406974975,AU 3406974976,3406975487,CN 3406975488,3406976767,AU 3406976768,3406977023,CN 3406977024,3406980095,AU 3406980096,3406980607,CN 3406980608,3406981375,AU 3406981376,3406981631,CN 3406981632,3406981887,AU 3406981888,3406982143,CN 3406982144,3406982655,AU 3406982656,3406982911,CN 3406983168,3406987519,AU 3406987520,3406987775,CN 3406987776,3406988031,AU 3406988032,3406988799,CN 3406988800,3406989567,AU 3406989568,3406989823,IN 3406989824,3406991359,AU 3406991360,3406991615,CN 3406991616,3406993663,AU 3406993664,3406993919,CN 3406993920,3406994431,AU 3406995456,3407005439,AU 3407005440,3407005695,CN 3407005696,3407007743,AU 3407007744,3407007999,CN 3407008000,3407008511,AU 3407008512,3407008767,CN 3407008768,3407009535,AU 3407009536,3407009791,CN 3407009792,3407020287,AU 3407020544,3407020799,AU 3407020800,3407021055,IN 3407021056,3407021311,ID 3407021312,3407024639,AU 3407024640,3407024895,CN 3407024896,3407026175,AU 3407026176,3407026431,CN 3407026432,3407027711,AU 3407027712,3407027967,CN 3407027968,3407028223,AU 3407028224,3407030271,HK 3407030272,3407030527,AU 3407030528,3407030783,CN 3407030784,3407031295,AU 3407031296,3407032063,CN 3407032064,3407034879,AU 3407034880,3407035135,CN 3407035136,3407035391,AU 3407035392,3407035903,CN 3407035904,3407036415,AU 3407036416,3407036671,CN 3407036672,3407037439,AU 3407037440,3407037695,CN 3407037696,3407038463,AU 3407038464,3407038719,CN 3407038720,3407045887,AU 3407045888,3407046143,CN 3407046144,3407048447,AU 3407048448,3407048703,CN 3407048704,3407053567,AU 3407053568,3407053823,CN 3407053824,3407054079,AU 3407054080,3407054335,CN 3407054336,3407056895,AU 3407056896,3407057151,CN 3407057152,3407057663,AU 3407057920,3407058175,AU 3407058176,3407058431,CN 3407058432,3407059967,AU 3407059968,3407060223,CN 3407060224,3407065087,AU 3407065088,3407065343,CN 3407065344,3407065599,AU 3407065600,3407066111,CN 3407066112,3407073279,AU 3407073280,3407073535,CN 3407073536,3407078399,AU 3407078400,3407079423,CN 3407079424,3407079679,AU 3407079680,3407079935,CN 3407079936,3407081471,AU 3407081728,3407081983,AU 3407081984,3407082239,CN 3407082240,3407083519,AU 3407083520,3407084031,CN 3407084032,3407085311,AU 3407085312,3407085567,CN 3407085568,3407089919,AU 3407089920,3407090175,CN 3407090176,3407095807,AU 3407095808,3407096319,CN 3407096576,3407096831,AU 3407097088,3407097855,AU 3407097856,3407098111,CN 3407098112,3407101183,AU 3407101184,3407101439,CN 3407101440,3407101695,AU 3407101952,3407102207,AU 3407102208,3407102463,CN 3407102464,3407104255,AU 3407104512,3407107071,AU 3407107072,3407107583,CN 3407107584,3407108351,AU 3407108352,3407108607,CN 3407108608,3407112447,AU 3407112448,3407112703,SG 3407112704,3407113215,CN 3407113216,3407115007,AU 3407115008,3407115263,CN 3407115264,3407115519,AU 3407115520,3407116287,CN 3407116288,3407116799,AU 3407116800,3407117055,CN 3407117056,3407117823,AU 3407117824,3407118335,CN 3407118336,3407120127,AU 3407120128,3407120383,CN 3407120384,3407122431,HK 3407122432,3407123967,AU 3407123968,3407124223,CN 3407124224,3407124479,AU 3407124480,3407126527,HK 3407126528,3407144447,AU 3407144448,3407144703,CN 3407144704,3407144959,AU 3407144960,3407145215,CN 3407145216,3407145983,AU 3407145984,3407146239,CN 3407146240,3407147263,AU 3407147264,3407147519,NZ 3407147520,3407151103,AU 3407151104,3407151871,CN 3407151872,3407152895,AU 3407152896,3407153151,IN 3407153152,3407153407,CN 3407153408,3407153663,AU 3407153664,3407153919,CN 3407153920,3407155711,AU 3407155712,3407155967,CN 3407155968,3407159551,AU 3407159552,3407160063,CN 3407160064,3407161599,AU 3407161600,3407161855,CN 3407161856,3407162367,TH 3407162368,3407162623,CN 3407162624,3407168511,AU 3407168512,3407168767,CN 3407168768,3407170047,AU 3407170048,3407170559,ID 3407170560,3407172095,AU 3407172096,3407172351,CN 3407172352,3407175679,AU 3407175680,3407176703,CN 3407176704,3407182847,AU 3407182848,3407183103,CN 3407183104,3407185919,AU 3407185920,3407186431,CN 3407186432,3407188223,AU 3407188224,3407188479,CN 3407188480,3407203839,AU 3407203840,3407204095,CN 3407204096,3407222783,AU 3407222784,3407223039,CN 3407223040,3407223807,AU 3407223808,3407224319,CN 3407224320,3407224575,AU 3407224576,3407224831,CN 3407224832,3407234047,AU 3407234048,3407234303,CN 3407234304,3407236095,AU 3407236096,3407236351,CN 3407236352,3407236607,AU 3407236608,3407236863,CN 3407236864,3407238143,AU 3407238144,3407238399,CN 3407238400,3407238911,AU 3407238912,3407239167,CN 3407239168,3407240191,AU 3407240192,3407241215,CN 3407241216,3407241983,AU 3407241984,3407242239,CN 3407242240,3407243775,AU 3407243776,3407244031,CN 3407244032,3407244287,AU 3407244800,3407247871,AU 3407247872,3407248383,CN 3407248384,3407250175,AU 3407250176,3407250431,CN 3407250432,3407258367,AU 3407258368,3407258623,CN 3407258624,3407259135,AU 3407259136,3407259391,CN 3407259392,3407260159,AU 3407260160,3407260415,CN 3407260416,3407261695,AU 3407261696,3407263743,HK 3407263744,3407266303,AU 3407266304,3407266559,CN 3407266560,3407268863,AU 3407268864,3407269119,US 3407269120,3407278591,AU 3407278592,3407279103,CN 3407279104,3407279359,AU 3407279360,3407279871,CN 3407279872,3407281151,AU 3407281152,3407281663,CN 3407281664,3407282175,AU 3407282176,3407282431,CN 3407282688,3407294207,AU 3407294208,3407294463,CN 3407294464,3407297791,AU 3407297792,3407298559,CN 3407298560,3407300863,AU 3407300864,3407301119,CN 3407301120,3407301887,AU 3407302144,3407303935,AU 3407303936,3407304191,CN 3407304192,3407305727,AU 3407305728,3407306751,CN 3407306752,3407307263,AU 3407307264,3407307519,CN 3407307520,3407309567,AU 3407309568,3407309823,CN 3407309824,3407310847,AU 3407310848,3407311103,CN 3407311104,3407315455,AU 3407315456,3407315711,CN 3407315712,3407318015,AU 3407318016,3407318527,CN 3407318528,3407326207,AU 3407326208,3407326463,CN 3407326464,3407328767,AU 3407328768,3407329023,CN 3407329024,3407329791,AU 3407329792,3407330303,CN 3407330304,3407331327,AU 3407331328,3407331583,CN 3407331584,3407332607,AU 3407332608,3407333119,CN 3407333120,3407334399,AU 3407334400,3407335423,CN 3407335424,3407339519,AU 3407339520,3407339775,CN 3407339776,3407340031,AU 3407340032,3407341567,CN 3407341568,3407345919,AU 3407345920,3407346175,CN 3407346176,3407346431,AU 3407346432,3407346687,CN 3407346688,3407351039,AU 3407351040,3407351295,CN 3407351296,3407352319,AU 3407352320,3407352575,CN 3407352576,3407354623,AU 3407354624,3407354879,CN 3407354880,3407358719,AU 3407358720,3407358975,CN 3407358976,3407360511,AU 3407360512,3407361023,ID 3407361024,3407362047,AU 3407362048,3407362303,CN 3407362304,3407362559,AU 3407362560,3407362815,CN 3407362816,3407364863,AU 3407364864,3407365119,CN 3407365120,3407366655,AU 3407366656,3407366911,CN 3407366912,3407367167,AU 3407367168,3407367679,ID 3407367680,3407367935,AU 3407367936,3407368703,CN 3407368704,3407369215,AU 3407369216,3407369983,CN 3407369984,3407370239,IN 3407370240,3407370751,AU 3407370752,3407371007,CN 3407371008,3407376127,AU 3407376128,3407376639,CN 3407376640,3407377407,AU 3407377408,3407377663,CN 3407377664,3407378943,AU 3407378944,3407379455,CN 3407379456,3407382015,AU 3407382016,3407382271,JP 3407382272,3407384831,AU 3407384832,3407385087,CN 3407385088,3407386623,AU 3407386624,3407387135,CN 3407387136,3407387903,AU 3407387904,3407388159,CN 3407388160,3407388927,AU 3407388928,3407389183,CN 3407389184,3407390463,AU 3407390464,3407390719,CN 3407390720,3407395327,AU 3407395328,3407395839,CN 3407395840,3407398655,AU 3407398656,3407398911,CN 3407398912,3407399423,AU 3407399424,3407399679,CN 3407399680,3407401983,AU 3407401984,3407402495,CN 3407402496,3407403263,AU 3407403264,3407403519,CN 3407403520,3407403775,AU 3407403776,3407404031,CN 3407404032,3407410175,AU 3407410176,3407410431,CN 3407410432,3407418111,AU 3407418112,3407418879,CN 3407418880,3407425023,AU 3407425024,3407425279,CN 3407425280,3407425535,AU 3407425536,3407427583,HK 3407427584,3407429631,AU 3407429632,3407430143,CN 3407430144,3407436543,AU 3407436544,3407436799,CN 3407436800,3407438591,AU 3407438592,3407439103,CN 3407439104,3407440383,AU 3407440384,3407440639,CN 3407440640,3407440895,AU 3407440896,3407441151,IN 3407441152,3407446783,AU 3407446784,3407447039,CN 3407447040,3407447807,AU 3407447808,3407448063,CN 3407448320,3407448575,AU 3407448576,3407448831,CN 3407448832,3407450879,AU 3407450880,3407451135,CN 3407451136,3407452415,AU 3407452416,3407453183,CN 3407453184,3407454463,AU 3407454720,3407455231,AU 3407455232,3407455487,CN 3407455488,3407455743,AU 3407455744,3407455999,CN 3407456000,3407457791,AU 3407457792,3407458303,CN 3407458304,3407459327,AU 3407459328,3407459583,CN 3407459584,3407459839,AU 3407459840,3407460095,CN 3407460096,3407462143,AU 3407462144,3407462399,CN 3407462400,3407464191,AU 3407464192,3407464703,CN 3407464704,3407464959,AU 3407464960,3407465471,CN 3407465472,3407466495,AU 3407466496,3407470591,CN 3407470592,3407471871,AU 3407471872,3407472127,CN 3407472128,3407473407,AU 3407473408,3407473919,CN 3407473920,3407475199,AU 3407475200,3407475455,CN 3407475456,3407480831,AU 3407480832,3407481223,JP 3407481224,3407481231,AU 3407481232,3407481599,JP 3407481600,3407481855,AU 3407481856,3407482111,CN 3407482112,3407487487,AU 3407487488,3407487743,CN 3407487744,3407491327,AU 3407491328,3407491839,CN 3407491840,3407492863,AU 3407492864,3407493631,CN 3407493632,3407494143,AU 3407494144,3407494399,CN 3407494400,3407495423,AU 3407495424,3407495679,CN 3407495680,3407496191,AU 3407496192,3407496447,CN 3407496448,3407498239,AU 3407498240,3407498495,CN 3407498496,3407498751,PK 3407498752,3407499263,AU 3407499264,3407499519,CN 3407499520,3407500287,AU 3407500288,3407500543,CN 3407500544,3407503615,AU 3407503616,3407503871,CN 3407503872,3407504895,AU 3407504896,3407505407,CN 3407505408,3407508223,AU 3407508224,3407508735,CN 3407508736,3407511807,AU 3407511808,3407512063,CN 3407512064,3407515391,AU 3407515392,3407515903,CN 3407515904,3407516671,AU 3407516672,3407517183,CN 3407517184,3407518207,AU 3407518208,3407518463,CN 3407518464,3407519231,AU 3407519232,3407519743,CN 3407519744,3407522303,AU 3407522304,3407522559,CN 3407522560,3407523071,AU 3407523072,3407523327,CN 3407523328,3407523583,AU 3407523584,3407523839,JP 3407523840,3407524095,CN 3407524096,3407526143,AU 3407526144,3407526399,CN 3407526400,3407530495,AU 3407530496,3407531007,CN 3407531008,3407532543,AU 3407532544,3407532799,CN 3407532800,3407533567,AU 3407533568,3407533823,CN 3407533824,3407535615,AU 3407535616,3407535871,CN 3407535872,3407536127,AU 3407536128,3407536383,CN 3407536384,3407537151,AU 3407537152,3407537407,CN 3407537408,3407538175,AU 3407538176,3407538431,CN 3407538432,3407544319,AU 3407544320,3407544575,CN 3407544576,3407545855,AU 3407545856,3407546367,ID 3407546368,3407546879,AU 3407546880,3407547135,CN 3407547136,3407548159,AU 3407548160,3407548671,CN 3407548672,3407549439,AU 3407549440,3407549695,CN 3407549696,3407549951,AU 3407549952,3407550463,CN 3407550464,3407553023,AU 3407553280,3407554559,AU 3407554560,3407554815,CN 3407554816,3407555839,AU 3407555840,3407556095,CN 3407556096,3407557887,AU 3407557888,3407558143,CN 3407558144,3407560959,AU 3407560960,3407561471,CN 3407561472,3407561727,NZ 3407561728,3407561983,AU 3407561984,3407562239,JP 3407562240,3407565055,AU 3407565056,3407565311,CN 3407565312,3407566847,AU 3407566848,3407567103,CN 3407567104,3407570431,AU 3407570432,3407570687,CN 3407570688,3407572223,AU 3407572224,3407572479,CN 3407572480,3407574271,AU 3407574272,3407574527,CN 3407574528,3407575295,AU 3407575296,3407576063,CN 3407576064,3407576319,AU 3407576320,3407576575,CN 3407576576,3407595519,AU 3407595520,3407595775,CN 3407595776,3407596031,AU 3407596032,3407596287,CN 3407596288,3407603967,AU 3407603968,3407604223,CN 3407604224,3407604479,AU 3407604480,3407604735,IN 3407604736,3407606015,AU 3407606016,3407606271,CN 3407606272,3407608319,AU 3407608320,3407608575,CN 3407608576,3407612415,AU 3407612416,3407612671,CN 3407612672,3407612927,AU 3407612928,3407613183,CN 3407613184,3407618303,AU 3407618304,3407619071,CN 3407619072,3407620863,AU 3407620864,3407621375,CN 3407621376,3407623679,AU 3407623680,3407623935,CN 3407623936,3407624191,AU 3407624192,3407624447,CN 3407624448,3407628543,AU 3407628544,3407629055,CN 3407629056,3407629311,AU 3407629312,3407629567,CN 3407629568,3407631871,AU 3407631872,3407632127,CN 3407632128,3407632383,AU 3407632384,3407632639,CN 3407632640,3407638527,AU 3407638528,3407638783,CN 3407638784,3407642623,AU 3407642624,3407643135,TH 3407643136,3407643391,AU 3407643392,3407643647,CN 3407643648,3407644671,AU 3407644672,3407644927,CN 3407644928,3407645695,AU 3407645696,3407645951,CN 3407645952,3407646463,AU 3407646720,3407646975,AU 3407646976,3407647231,CN 3407647232,3407652095,AU 3407652096,3407652351,CN 3407652352,3407653119,AU 3407653120,3407653631,CN 3407653632,3407655423,AU 3407655424,3407655935,CN 3407655936,3407657215,AU 3407657216,3407657471,CN 3407657472,3407657727,AU 3407657728,3407657983,CN 3407657984,3407660031,AU 3407660032,3407660287,CN 3407660288,3407667711,AU 3407667712,3407668223,CN 3407668224,3407671039,AU 3407671040,3407671295,CN 3407671296,3407674367,AU 3407674880,3407675903,AU 3407675904,3407676159,CN 3407676160,3407677439,AU 3407677440,3407677951,CN 3407677952,3407678719,AU 3407678720,3407679231,CN 3407679232,3407682047,AU 3407682048,3407682559,ID 3407682560,3407682815,CN 3407682816,3407687167,AU 3407687168,3407687423,CN 3407687424,3407689983,AU 3407689984,3407690239,CN 3407690240,3407691007,AU 3407691008,3407691263,CN 3407691264,3407691519,AU 3407691520,3407691775,CN 3407691776,3407693055,AU 3407693056,3407693311,CN 3407693312,3407694079,AU 3407694080,3407694335,CN 3407694336,3407696127,AU 3407696128,3407696383,CN 3407696384,3407698431,AU 3407698432,3407698687,CN 3407698688,3407699711,AU 3407699712,3407699967,CN 3407699968,3407700991,AU 3407700992,3407701247,CN 3407701248,3407701759,AU 3407701760,3407702015,CN 3407702016,3407704063,AU 3407704064,3407704319,CN 3407704320,3407706111,AU 3407706112,3407707135,CN 3407707136,3407721983,AU 3407721984,3407722495,CN 3407722496,3407723263,AU 3407723264,3407723519,CN 3407723520,3407723775,AU 3407723776,3407724287,CN 3407724288,3407727871,AU 3407727872,3407728127,CN 3407728128,3407729151,AU 3407729152,3407729407,CN 3407729408,3407730943,AU 3407730944,3407731199,CN 3407731200,3407732223,AU 3407732224,3407732479,HK 3407732480,3407733503,AU 3407733504,3407733759,CN 3407733760,3407734527,AU 3407734528,3407734783,CN 3407734784,3407735039,AU 3407735040,3407735551,CN 3407735552,3407738879,AU 3407738880,3407739135,CN 3407739136,3407740415,AU 3407740416,3407740927,CN 3407740928,3407745023,AU 3407745024,3407745535,CN 3407745536,3407747327,AU 3407747328,3407747583,CN 3407747584,3407747839,AU 3407747840,3407748095,CN 3407748096,3407748351,AU 3407748352,3407748607,CN 3407748608,3407750655,AU 3407750656,3407751167,SG 3407751168,3407753215,AU 3407753216,3407753727,SG 3407753728,3407757823,AU 3407757824,3407758079,CN 3407758080,3407761663,AU 3407761664,3407761919,CN 3407761920,3407763199,AU 3407763200,3407763455,CN 3407763456,3407769343,AU 3407769344,3407769599,CN 3407769600,3407771903,AU 3407771904,3407772159,CN 3407772160,3407772415,AU 3407772416,3407772671,CN 3407772672,3407779839,AU 3407779840,3407780095,CN 3407780096,3407780863,AU 3407780864,3407781119,CN 3407781120,3407782399,AU 3407782400,3407782655,CN 3407782656,3407785215,AU 3407785216,3407785471,CN 3407785472,3407785727,NZ 3407785728,3407785983,CN 3407785984,3407788799,AU 3407788800,3407789055,CN 3407789056,3407790591,AU 3407790592,3407790847,CN 3407790848,3407796479,AU 3407796480,3407796735,CN 3407796736,3407797247,AU 3407797248,3407797503,CN 3407797760,3407798015,CN 3407798016,3407800319,AU 3407800320,3407800831,CN 3407800832,3407801087,AU 3407801088,3407801343,CN 3407801344,3407801855,ID 3407801856,3407802367,AU 3407802368,3407802879,CN 3407802880,3407803903,AU 3407803904,3407804159,CN 3407804160,3407804927,AU 3407804928,3407805439,CN 3407805440,3407805951,AU 3407805952,3407806463,ID 3407806464,3407808511,AU 3407808512,3407809023,IN 3407809024,3407814655,AU 3407814656,3407815167,HK 3407815168,3407817983,AU 3407817984,3407818495,CN 3407818496,3407819007,AU 3407819008,3407819263,CN 3407819264,3407819519,AU 3407819520,3407819775,CN 3407819776,3407820287,AU 3407820288,3407820799,CN 3407820800,3407824127,AU 3407824128,3407824383,CN 3407824384,3407824895,AU 3407824896,3407825151,CN 3407825152,3407826943,AU 3407826944,3407827199,CN 3407827200,3407828223,AU 3407828224,3407828479,CN 3407828480,3407831295,AU 3407831296,3407831551,CN 3407831552,3407833343,AU 3407833344,3407833855,CN 3407833856,3407834111,AU 3407834112,3407834623,CN 3407834624,3407838207,AU 3407838208,3407838463,CN 3407838464,3407847935,AU 3407847936,3407848191,CN 3407848192,3407848447,AU 3407848448,3407848959,ID 3407848960,3407851007,AU 3407851008,3407851263,CN 3407851264,3407851775,AU 3407851776,3407852031,CN 3407852032,3407852799,AU 3407852800,3407853055,CN 3407853056,3407854335,AU 3407854336,3407854591,CN 3407854592,3407854847,AU 3407854848,3407855103,CN 3407855104,3407858687,AU 3407858688,3407858943,CN 3407858944,3407862783,AU 3407862784,3407863039,CN 3407863040,3407863295,AU 3407863296,3407863807,CN 3407863808,3407864063,AU 3407864064,3407864319,CN 3407864320,3407865087,AU 3407865088,3407865343,CN 3407865344,3407866367,AU 3407866368,3407866623,GB 3407866624,3407869951,AU 3407869952,3407870463,CN 3407870464,3407871231,AU 3407871232,3407871487,CN 3407871488,3407873023,AU 3407873024,3407873535,IN 3407873536,3407877119,AU 3407877120,3407877375,CN 3407877376,3407884287,AU 3407884288,3407884799,CN 3407884800,3407886335,AU 3407886336,3407886591,CN 3407886592,3407887359,AU 3407887360,3407887615,CN 3407887616,3407887871,AU 3407887872,3407888127,CN 3407888128,3407889407,AU 3407889408,3407889919,CN 3407889920,3407891455,AU 3407891456,3407891711,CN 3407891712,3407892735,AU 3407892736,3407892991,CN 3407892992,3407893503,AU 3407893504,3407894015,CN 3407894528,3407896319,AU 3407896320,3407896575,CN 3407896576,3407898111,AU 3407898112,3407898367,CN 3407898368,3407898879,AU 3407898880,3407899135,CN 3407899136,3407905279,AU 3407905280,3407905535,CN 3407905536,3407906047,AU 3407906048,3407906303,CN 3407906304,3407907839,AU 3407907840,3407908095,CN 3407908096,3407910911,AU 3407910912,3407911167,CN 3407911168,3407919615,AU 3407919616,3407920127,CN 3407920128,3407921151,AU 3407921152,3407921407,CN 3407921408,3407922175,AU 3407922176,3407922431,CN 3407922432,3407923967,AU 3407923968,3407924735,CN 3407924736,3407926271,AU 3407926272,3407926527,CN 3407926528,3407928575,AU 3407928576,3407928831,IN 3407928832,3407938559,AU 3407938560,3407938815,CN 3407938816,3407939327,AU 3407939328,3407939583,CN 3407939584,3407940607,SG 3407940608,3407941631,HK 3407941632,3407942911,AU 3407942912,3407943167,CN 3407943168,3407944191,AU 3407944192,3407944447,CN 3407944448,3407945727,AU 3407945728,3407945983,CN 3407945984,3407953663,AU 3407953664,3407954175,CN 3407954176,3407954687,AU 3407954688,3407955199,CN 3407955200,3407956223,AU 3407956224,3407956479,CN 3407956480,3407957759,AU 3407957760,3407958015,CN 3407958016,3407963135,AU 3407963136,3407963391,CN 3407963392,3407968767,AU 3407968768,3407969023,CN 3407969024,3407970559,AU 3407970560,3407970815,CN 3407970816,3407971071,AU 3407971072,3407971327,CN 3407971328,3407974655,AU 3407974656,3407974911,CN 3407974912,3407977471,AU 3407977472,3407977727,CN 3407977728,3407977983,AU 3407977984,3407978495,CN 3407978496,3407982079,AU 3407982080,3407982335,CN 3407982336,3407984895,AU 3407984896,3407985151,CN 3407985152,3407985919,AU 3407985920,3407986175,KH 3407986176,3407987711,AU 3407987712,3407987967,PH 3407987968,3407988223,AU 3407988224,3407988735,IN 3407988736,3407988991,CN 3407988992,3407989247,AU 3407989248,3407990015,CN 3407990016,3407990271,AU 3407990272,3407990783,CN 3407990784,3407992319,AU 3407992320,3407992831,CN 3407992832,3407994879,AU 3407994880,3407995647,CN 3407995648,3407997183,AU 3407997184,3407997439,CN 3407997440,3407998975,AU 3407998976,3407999231,TH 3407999232,3407999743,AU 3407999744,3407999999,CN 3408000000,3408001535,AU 3408001536,3408001791,CN 3408001792,3408004095,AU 3408004096,3408004351,CN 3408004352,3408008447,AU 3408008448,3408008703,CN 3408008704,3408009983,AU 3408009984,3408010239,CN 3408010240,3408012543,AU 3408012544,3408012799,MN 3408012800,3408013055,AU 3408013056,3408013311,CN 3408013312,3408015359,AU 3408015360,3408015871,CN 3408015872,3408016895,AU 3408016896,3408017151,CN 3408017152,3408017407,AU 3408017408,3408017919,CN 3408017920,3408020223,AU 3408020224,3408020479,CN 3408020480,3408020735,JP 3408020736,3408020991,CN 3408020992,3408022527,AU 3408022528,3408022783,CN 3408022784,3408023807,AU 3408023808,3408024063,JP 3408024320,3408026623,AU 3408026624,3408026879,CN 3408026880,3408030207,AU 3408030208,3408030463,CN 3408030464,3408031999,AU 3408032000,3408032255,CN 3408032256,3408032767,AU 3408032768,3408033023,LK 3408033024,3408033279,IN 3408033280,3408033791,ID 3408033792,3408035071,AU 3408035328,3408039935,AU 3408039936,3408040191,VN 3408040192,3408040703,AU 3408040704,3408040959,CN 3408040960,3408041471,AU 3408041472,3408041727,CN 3408041728,3408041983,AU 3408041984,3408042495,CN 3408042752,3408044287,AU 3408044288,3408044799,CN 3408044800,3408050943,AU 3408050944,3408051199,CN 3408051200,3408052223,AU 3408052224,3408054271,HK 3408054272,3408055295,AU 3408055296,3408056319,CN 3408056320,3408062463,AU 3408062464,3408062719,CN 3408062720,3408064511,AU 3408064512,3408064767,CN 3408065024,3408065279,CN 3408065280,3408065791,AU 3408065792,3408066047,CN 3408066048,3408066303,PH 3408066304,3408067327,AU 3408067328,3408067583,CN 3408067584,3409379839,AU 3409379840,3409380607,CN 3409380608,3409381887,AU 3409381888,3409382143,CN 3409382144,3409382655,AU 3409382656,3409382911,CN 3409382912,3409384959,AU 3409384960,3409385215,CN 3409385216,3409387007,AU 3409387008,3409387263,CN 3409387264,3409396479,AU 3409396480,3409396735,PH 3409396736,3409403135,AU 3409403136,3409403391,CN 3409403392,3409405183,AU 3409405184,3409405439,CN 3409405440,3409407231,AU 3409407232,3409407743,CN 3409407744,3409409023,AU 3409409024,3409409535,CN 3409409536,3409409791,AU 3409409792,3409410047,CN 3409410048,3409412095,AU 3409412096,3409412607,CN 3409412608,3409416703,AU 3409416704,3409417215,CN 3409417216,3409420287,AU 3409420288,3409420543,IN 3409420544,3409423615,AU 3409423616,3409423871,IN 3409423872,3409428479,AU 3409428480,3409428735,CN 3409428736,3409429503,AU 3409429504,3409429759,CN 3409429760,3409435135,AU 3409435136,3409435647,CN 3409435648,3409435903,AU 3409435904,3409436159,CN 3409436160,3409436671,AU 3409436672,3409436927,CN 3409436928,3409445119,AU 3409445120,3409445375,CN 3409445376,3409445887,AU 3409445888,3409446143,CN 3409446144,3409447935,AU 3409447936,3409448191,CN 3409448192,3409451007,AU 3409451008,3409451263,CN 3409451264,3409453055,AU 3409453056,3409453567,NZ 3409453568,3409454591,AU 3409454592,3409454847,CN 3409454848,3409455103,AU 3409455104,3409455359,CN 3409455360,3409456639,AU 3409456640,3409456895,CN 3409456896,3409457152,AU 3409457153,3409459199,HK 3409459200,3409462271,AU 3409462272,3409462783,CN 3409462784,3409465855,AU 3409465856,3409466879,CN 3409466880,3409467135,AU 3409467136,3409467391,HK 3409467392,3409467903,AU 3409467904,3409468415,HK 3409468416,3409469183,AU 3409469184,3409469439,CN 3409469440,3409473023,AU 3409473024,3409473279,CN 3409473280,3409475839,AU 3409475840,3409476095,CN 3409476096,3409486079,AU 3409486080,3409486335,CN 3409486336,3409488127,AU 3409488128,3409488383,CN 3409488384,3409488895,AU 3409488896,3409489407,CN 3409489408,3409489663,AU 3409489664,3409489919,CN 3409489920,3409491711,AU 3409491712,3409491967,CN 3409491968,3409492223,AU 3409492224,3409492479,CN 3409492480,3409492735,AU 3409492736,3409492991,CN 3409492992,3409494015,AU 3409494016,3409494271,CN 3409494272,3409495551,AU 3409495552,3409495807,CN 3409495808,3409496319,AU 3409496320,3409496575,CN 3409496576,3409498111,AU 3409498112,3409498879,CN 3409498880,3409499647,AU 3409499648,3409499903,CN 3409499904,3409500159,AU 3409500160,3409500415,CN 3409500416,3409502975,AU 3409502976,3409503487,CN 3409503488,3409503999,AU 3409504256,3409504511,CN 3409504512,3409506303,AU 3409506304,3409506559,CN 3409506560,3409506815,PH 3409506816,3409509375,AU 3409509376,3409509631,CN 3409509632,3409509887,HK 3409509888,3409510143,CN 3409510144,3409511679,AU 3409511680,3409512191,CN 3409512192,3409513471,AU 3409513472,3409513983,CN 3409513984,3409516543,AU 3409516544,3409517055,ID 3409517056,3409517567,AU 3409517568,3409517823,CN 3409517824,3409520383,AU 3409520384,3409520639,CN 3409520640,3409522175,AU 3409522176,3409522431,CN 3409522432,3409525247,AU 3409525248,3409525503,CN 3409525504,3409526015,AU 3409526016,3409526271,CN 3409526272,3409527295,AU 3409527296,3409527551,CN 3409527552,3409528063,AU 3409528064,3409528831,CN 3409528832,3409529087,AU 3409529088,3409529343,CN 3409529344,3409533439,AU 3409533440,3409533695,CN 3409533696,3409536255,AU 3409536256,3409536511,CN 3409536512,3409538303,AU 3409538304,3409538559,CN 3409538560,3409541887,AU 3409541888,3409542143,CN 3409542144,3409547519,AU 3409547520,3409547775,NZ 3409547776,3409550591,AU 3409550592,3409550847,CN 3409550848,3409561599,AU 3409561600,3409561855,CN 3409561856,3409562111,AU 3409562112,3409562367,CN 3409562368,3409563135,AU 3409563136,3409563391,CN 3409563392,3409567231,AU 3409567232,3409567487,CN 3409567488,3409567743,AU 3409567744,3409571839,CN 3409571840,3409573375,AU 3409573376,3409573887,CN 3409573888,3409574143,AU 3409574144,3409574399,CN 3409574400,3409575167,AU 3409575168,3409575935,CN 3409575936,3409707007,AU 3409707008,3409772543,HK 3409772544,3409838335,AU 3409838336,3409838591,MY 3409838592,3409838847,CN 3409838848,3409871615,AU 3409871616,3409871871,CN 3409871872,3409873663,AU 3409873664,3409873919,CN 3409873920,3409875967,AU 3409875968,3409876735,JP 3409876736,3409876991,AU 3409876992,3409878015,TH 3409878016,3409879295,AU 3409879296,3409879551,CN 3409879552,3409882111,AU 3409882112,3409883135,IN 3409883136,3409887999,AU 3409888000,3409888255,SG 3409888256,3409888511,AU 3409888512,3409888767,CN 3409888768,3409891327,AU 3409891328,3409891839,GB 3409891840,3409892351,AU 3409892352,3409892863,US 3409892864,3409896447,AU 3409896448,3409897471,CN 3409897472,3409897983,AU 3409897984,3409898239,CN 3409898240,3409901055,AU 3409901056,3409901311,CN 3409901312,3409969151,AU 3409969152,3410755583,TW 3410755584,3410771967,AU 3410771968,3410780159,JP 3410780160,3410788351,BD 3410788352,3410792447,IN 3410792448,3410796543,BD 3410796544,3410797567,CN 3410797568,3410798591,JP 3410798592,3410799615,CN 3410799616,3410800639,SG 3410800640,3410804735,IN 3410804736,3410808831,PH 3410808832,3410811903,CN 3410811904,3410812927,BD 3410821120,3410853887,TW 3410853888,3410862079,HK 3410862080,3410866175,AU 3410866176,3410866431,KR 3410866432,3410866687,IN 3410866688,3410866943,VN 3410866944,3410867199,AU 3410867200,3410868223,CN 3410868224,3410870271,JP 3410870272,3410874367,IN 3410874368,3410886655,ID 3410886656,3410887679,TW 3410887680,3410887935,IN 3410887936,3410888703,HK 3410888704,3410890751,SG 3410890752,3410894847,AU 3410894848,3410898943,HK 3410898944,3410903039,CN 3410903040,3410911231,HK 3410911232,3410915327,TH 3410915328,3410919423,ID 3410923520,3410924543,BD 3410924544,3410925567,SG 3410925568,3410926591,MH 3410926592,3410927615,CN 3410927616,3410931711,NP 3410931712,3410935807,TW 3410935808,3410939903,MY 3410939904,3410943999,IN 3410944000,3410952191,JP 3410952192,3410956287,CN 3410956288,3410958335,AU 3410958336,3410958847,IN 3410958848,3410959359,ID 3410959360,3410959615,VN 3410959616,3410959871,ID 3410959872,3410960383,AU 3410960384,3410964479,GB 3410964480,3410968575,JP 3410968576,3410984959,NZ 3410984960,3411017727,TW 3411017728,3411018751,HK 3411018752,3411019263,CN 3411019264,3411019775,JP 3411019776,3411021823,ID 3411021824,3411023871,MY 3411023872,3411025919,JP 3411025920,3411030015,CN 3411030016,3411032063,NC 3411032064,3411032319,TH 3411032320,3411032575,CN 3411032576,3411033087,AU 3411033088,3411034111,NZ 3411034112,3411050495,HK 3411050496,3411050751,PK 3411051008,3411051263,PK 3411051264,3411051519,SG 3411051520,3411052543,CN 3411052544,3411052544,JP 3411052545,3411054591,HK 3411054592,3411058687,CN 3411058688,3411062783,AU 3411062784,3411064831,HK 3411064832,3411065087,BD 3411065088,3411085311,HK 3411085312,3411086335,KR 3411086336,3411087359,JP 3411087360,3411091455,CN 3411091456,3411099647,SG 3411099648,3411107839,MM 3411107840,3411111935,LK 3411111936,3411116031,JP 3411116032,3411124223,KR 3411124224,3411128319,MM 3411128320,3411130367,HK 3411130368,3411132415,ID 3411132416,3411144703,PK 3411144704,3411145727,IN 3411145728,3411146751,CN 3411146752,3411147775,ID 3411147776,3411148799,HK 3411148800,3411149311,CN 3411149312,3411149823,MV 3411149824,3411150847,IN 3411150848,3411154943,HK 3411154944,3411155967,AU 3411155968,3411156991,HK 3411156992,3411161087,PH 3411161088,3411165183,PK 3411165184,3411173375,MY 3411173376,3411177471,AU 3411177472,3411181567,CN 3411181568,3411189759,JP 3411189760,3411197951,AU 3411197952,3411202047,BD 3411202048,3411204607,AU 3411204608,3411204863,IN 3411204864,3411205631,KR 3411205632,3411206143,HK 3411206144,3411210239,CN 3411210240,3411212287,KR 3411212288,3411213311,IN 3411213312,3411214335,HK 3411214336,3411215359,CN 3411215360,3411216383,AU 3411216384,3411218431,CN 3411218432,3411220479,PG 3411220480,3411226623,ID 3411226624,3411228671,IO 3411228672,3411230719,CN 3411230720,3411247103,HK 3411247104,3411255295,KR 3411255296,3411263487,BD 3411263488,3411269631,AU 3411269632,3411270143,HK 3411270144,3411270399,NZ 3411270400,3411270655,AU 3411270656,3411271679,SG 3411271680,3411275775,CN 3411275776,3411277823,JP 3411277824,3411278335,HK 3411278336,3411278591,SG 3411278592,3411278847,FJ 3411278848,3411296255,HK 3411296256,3411312639,AU 3411312640,3411313151,HK 3411313152,3411313663,TW 3411313664,3411313919,AU 3411313920,3411314175,HK 3411314176,3411314687,NZ 3411314688,3411316735,ID 3411316736,3411318783,TW 3411318784,3411320831,ID 3411320832,3411329023,PH 3411329024,3411337215,HK 3411337216,3411341311,AU 3411341312,3411345407,KR 3411345408,3411354879,HK 3411354880,3411355647,SG 3411355648,3411410943,HK 3411410944,3411443711,CN 3411443712,3411460095,HK 3411460096,3411464191,NZ 3411464192,3411468287,AU 3411468288,3411470335,JP 3411470336,3411472383,HK 3411472384,3411474943,JP 3411475200,3411475455,AU 3411475456,3411475967,HK 3411475968,3411476479,CN 3411476480,3411509247,AU 3411509248,3411542015,PH 3411542016,3411550207,IN 3411550208,3411558399,CN 3411558400,3411566591,HK 3411570688,3411574783,AU 3411574784,3411582975,IN 3411582976,3411587071,HK 3411587072,3411591167,JP 3411591168,3411599359,CN 3411599360,3411607551,AU 3411607552,3411608575,CN 3411608576,3411608831,IN 3411608832,3411609087,AU 3411609088,3411611647,HK 3411611648,3411615743,ID 3411615744,3411623935,JP 3411623936,3411640319,AU 3411640320,3411641343,JP 3411641344,3411642367,IN 3411642368,3411643391,CN 3411643392,3411644415,VN 3411644672,3411644927,AU 3411644928,3411645951,ID 3411645952,3411646207,SG 3411646208,3411647487,IN 3411647488,3411648511,AU 3411648512,3411656703,NZ 3411656704,3411673087,AU 3411673088,3411674111,CN 3411674112,3411674623,IN 3411674624,3411675135,HK 3411675136,3411677183,CN 3411677184,3411679231,JP 3411679232,3411681279,AU 3411681280,3411689471,KR 3411689472,3411705855,IN 3411705856,3411730431,CN 3411730432,3411738623,HK 3411738624,3411746815,TW 3411746816,3411755007,CN 3411755008,3411763199,AU 3411763200,3411767295,CN 3411767296,3411769343,MN 3411769344,3411771391,CN 3411771392,3411779583,HK 3411779584,3411787775,JP 3411787776,3411795967,IN 3411795968,3411804159,AU 3411804160,3411805183,CN 3411805184,3411805695,PK 3411805952,3411806207,AU 3411806208,3411808255,PH 3411808256,3411810303,JP 3411810304,3411810815,NZ 3411810816,3411812351,AU 3411812352,3411820543,IN 3411820544,3411836927,SG 3411836928,3411845119,MY 3411845120,3411853311,CN 3411853312,3411857407,IN 3411857408,3411859249,JP 3411859250,3411859251,AU 3411859252,3411859815,JP 3411859816,3411859816,CN 3411859817,3411861503,JP 3411861504,3411869695,AU 3411869696,3411943423,CN 3411943424,3411951615,NZ 3411951616,3411967999,LK 3411968000,3411984383,AU 3411984384,3412000767,IN 3412000768,3412002815,CN 3412002816,3412004863,GU 3412004864,3412017151,JP 3412017152,3412025343,SG 3412025344,3412049919,CN 3412058112,3412066303,CN 3412066304,3412213759,NZ 3412213760,3412221951,AU 3412221952,3412230143,IN 3412230144,3412246527,HK 3412246528,3412249903,AU 3412249904,3412249919,SG 3412249920,3412253695,AU 3412253696,3412254719,JP 3412254720,3412262911,NR 3412262912,3412264959,JP 3412264960,3412267007,HK 3412267008,3412271103,CN 3412271104,3412273151,NZ 3412273152,3412275199,IN 3412275200,3412279295,PK 3412279296,3412281343,NZ 3412281344,3412283391,JP 3412283392,3412287487,CN 3412287488,3412295679,ID 3412295680,3412296191,NZ 3412296192,3412296703,ID 3412296704,3412297727,NZ 3412297728,3412298751,MY 3412299264,3412299519,AU 3412299520,3412299775,HK 3412299776,3412302847,AU 3412302848,3412303871,WS 3412303872,3412312063,PK 3412312064,3412320255,IN 3412320256,3412322303,JP 3412322304,3412324351,PH 3412324352,3412326399,JP 3412326400,3412327423,VN 3412327424,3412327935,TH 3412327936,3412328191,HK 3412328192,3412328447,WS 3412328448,3412336639,AU 3412336640,3412340735,CN 3412340736,3412342783,HK 3412342784,3412343039,AU 3412343040,3412343295,HK 3412343552,3412343807,AU 3412344064,3412344319,AU 3412344320,3412344575,SG 3412344576,3412344831,CN 3412344832,3412348927,IN 3412348928,3412361215,CN 3412361216,3412369407,HK 3412369408,3412377599,KR 3412377600,3412381695,CN 3412381696,3412385791,NZ 3412385792,3412393983,AU 3412393984,3412426751,IN 3412426752,3412433759,TH 3412433760,3412433775,ID 3412433776,3412433791,TH 3412433792,3412433823,HK 3412433824,3412434943,TH 3412434944,3412443135,PK 3412443136,3412451327,SG 3412451328,3412594687,AU 3412594688,3412596735,IN 3412596736,3412598783,MV 3412598784,3412602879,CN 3412602880,3412606975,NC 3412606976,3412615167,PH 3412615168,3412656127,JP 3412656128,3412672511,HK 3412672512,3412680191,JP 3412680192,3412680447,US 3412680448,3412680703,JP 3412680704,3412697087,CN 3412697088,3412705279,IN 3412705280,3412713471,AU 3412713472,3412721663,TW 3412721664,3412787199,MY 3412787200,3412819967,CN 3412819968,3412852735,TH 3412852736,3412918271,AU 3412918272,3412926463,KR 3412926464,3412934655,MY 3412934656,3412951039,IN 3412951040,3413000191,NZ 3413000192,3413004287,LA 3413004288,3413008383,IN 3413008384,3413016575,JP 3413016576,3413024767,AU 3413024768,3413032959,CN 3413032960,3413037055,AU 3413037056,3413041151,CN 3413041152,3413043199,JP 3413043200,3413043967,CN 3413043968,3413044223,AU 3413044224,3413045247,HK 3413045248,3413047295,IN 3413047296,3413098495,AU 3413098496,3413102591,JP 3413102592,3413106687,TW 3413106688,3413110783,PH 3413110784,3413112831,JP 3413112832,3413113855,IN 3413113856,3413114879,HK 3413114880,3413133311,JP 3413133312,3413135359,BD 3413135360,3413139455,HK 3413139456,3413147647,AU 3413147648,3413155839,IN 3413155840,3413164031,SG 3413164032,3413172223,BD 3413172224,3413180415,MY 3413180416,3413213183,TH 3413213184,3413229567,VN 3413229568,3413245951,AU 3413245952,3413251071,MY 3413251072,3413262335,JP 3413262336,3413263359,PH 3413263360,3413264383,IN 3413264384,3413265407,SG 3413265408,3413266431,AU 3413266432,3413270527,CN 3413270528,3413278719,TH 3413278720,3413295103,NZ 3413295104,3413303295,JP 3413303296,3413304319,ID 3413304320,3413305343,JP 3413305344,3413306367,IN 3413306368,3413307391,PH 3413307392,3413308415,IN 3413308416,3413309439,CN 3413309440,3413310463,JP 3413310464,3413311487,HK 3413311488,3413327871,LK 3413327872,3413344255,IN 3413344256,3413360639,PH 3413360640,3413377023,MY 3413377024,3413524479,SG 3413524480,3413540863,TH 3413540864,3413557247,NZ 3413557248,3413565439,CN 3413565440,3413569535,TW 3413569536,3413569791,SG 3413569792,3413570047,CN 3413570048,3413570303,KH 3413570304,3413570559,AU 3413570560,3413571583,PH 3413571584,3413572607,CN 3413572608,3413573631,JP 3413573632,3413573887,AU 3413573888,3413574143,JP 3413574144,3413574399,HK 3413574400,3413574655,TW 3413574656,3413575679,PH 3413575680,3413576703,VN 3413576704,3413576959,AU 3413576960,3413577215,ID 3413577216,3413577727,AU 3413577728,3413578751,JP 3413578752,3413579007,PK 3413579008,3413579263,AU 3413579264,3413579775,JP 3413579776,3413582847,CN 3413582848,3413583871,VN 3413583872,3413584127,JP 3413584128,3413584383,ID 3413584384,3413584895,AU 3413584896,3413585919,VN 3413585920,3413586175,ID 3413586176,3413586687,IN 3413586688,3413586943,FJ 3413586944,3413587967,ID 3413587968,3413588223,NZ 3413588224,3413588479,MY 3413588480,3413593087,VN 3413593088,3413593599,AU 3413593600,3413593855,SG 3413593856,3413594111,KH 3413594112,3413595135,CN 3413595136,3413595391,AU 3413595392,3413595647,CN 3413595648,3413595903,AU 3413595904,3413596159,HK 3413596160,3413597183,NP 3413597184,3413597695,AU 3413597696,3413597951,TW 3413597952,3413602303,AU 3413602304,3413602559,ID 3413602560,3413604351,CN 3413604352,3413606399,HK 3413606400,3413639167,CN 3413639168,3413704703,SG 3413704704,3413737471,MY 3413737472,3413753855,TH 3413753856,3413762047,AU 3413762048,3413770239,TW 3413770240,3413786623,IN 3413786624,3413835775,AU 3413835776,3413843967,SG 3413843968,3413848063,IN 3413848064,3413850111,SG 3413850880,3413851135,AU 3413851136,3413852159,ID 3413852160,3413868543,AU 3413868544,3413884927,IN 3413884928,3413893119,KR 3413893120,3413901311,ID 3413901312,3413902847,SG 3413902848,3413903359,JP 3413903360,3413905407,HK 3413905408,3413907455,IN 3413907456,3413917695,PK 3413917696,3413925887,JP 3413925888,3413934079,SG 3413934080,3413946367,IN 3413946368,3413950463,AU 3413950464,3413966847,IN 3413966848,3414050303,SG 3414050304,3414050815,US 3414050816,3414155519,SG 3414155520,3414155775,PH 3414155776,3414163455,SG 3414163456,3414171647,PK 3414171648,3414179839,CN 3414179840,3414188031,ID 3414188032,3414196223,CN 3414196224,3414204415,AU 3414204416,3414220799,KR 3414220800,3414222847,HK 3414222848,3414223871,AU 3414223872,3414224895,KR 3414224896,3414226943,VN 3414226944,3414227967,ID 3414227968,3414230015,PK 3414230016,3414230527,PH 3414230528,3414231039,KR 3414231040,3414233087,HK 3414233088,3414245375,AU 3414245376,3414253567,HK 3414253568,3414261759,JP 3414261760,3414269951,AU 3414269952,3414278143,JP 3414278144,3414294527,IN 3414294528,3414302719,PK 3414302720,3414310911,CN 3414310912,3414327295,KR 3414327296,3414335487,TH 3414335488,3414339583,AU 3414339584,3414343679,KR 3414343680,3414360063,ID 3414360064,3414376447,AU 3414376448,3414409215,PH 3414409216,3414413311,JP 3414413312,3414417407,TH 3414417408,3414425599,HK 3414425600,3414433791,AU 3414433792,3414441983,CN 3414441984,3414450175,AU 3414450176,3414458367,JP 3414458368,3414466559,IN 3414466560,3414474751,KR 3414474752,3414478847,HK 3414478848,3414482943,IN 3414482944,3414491135,AU 3414491136,3414523903,TW 3414523904,3414532095,JP 3414532096,3414540287,KR 3414540288,3414555647,JP 3414555648,3414556671,PK 3414556672,3414605823,AU 3414605824,3414616063,IN 3414616064,3414618111,ID 3414618112,3414620159,CN 3414620672,3414621183,IN 3414621184,3414638591,PK 3414638592,3414646783,TW 3414646784,3414654975,CN 3414654976,3414663167,HK 3414663168,3414667263,CN 3414667264,3414669311,ID 3414669312,3414670335,AU 3414670336,3414670591,IN 3414670592,3414670847,SG 3414670848,3414671359,MY 3414671360,3415080959,JP 3415080960,3415082239,MY 3415082240,3415083007,SG 3415083008,3415083519,AU 3415083520,3415088127,SG 3415088128,3415089151,HK 3415089152,3415097343,MY 3415097344,3415103487,ID 3415103488,3415113727,HK 3415113728,3415121919,AU 3415121920,3415130111,KR 3415130112,3415136255,JP 3415136256,3415136767,KR 3415137280,3415137535,IN 3415137536,3415138303,AU 3415138304,3415146495,CN 3415146496,3415162879,LK 3415162880,3415171071,AU 3415171072,3415179263,JP 3415179264,3415187455,SG 3415187456,3415191551,AU 3415191552,3415195647,IN 3415195648,3415199743,NZ 3415199744,3415220223,AU 3415220224,3415224319,NZ 3415224320,3415224831,US 3415224832,3415225087,AU 3415225088,3415228415,US 3415228416,3415236607,KH 3415236608,3415244799,CN 3415244800,3415277567,TH 3415277568,3415285759,CN 3415285760,3415293951,AU 3415293952,3415302143,HK 3415302144,3415306239,JP 3415306240,3415308287,TH 3415308288,3415310335,JP 3415310336,3415326719,IN 3415326720,3415334911,TW 3415334912,3415343103,JP 3415343104,3415425023,TH 3415425024,3415431167,NC 3415431168,3415432191,IN 3415432192,3415435263,AU 3415435264,3415436287,PH 3415436288,3415436799,AU 3415436800,3415437311,HK 3415437312,3415441407,JP 3415441408,3415474175,AU 3415474176,3415495679,CN 3415495680,3415496191,ID 3415496192,3415496703,CN 3415497728,3415497983,TW 3415497984,3415498751,AU 3415498752,3415506943,JP 3415506944,3415556095,TH 3415556096,3415563263,AU 3415563264,3415564287,CN 3415564288,3415568383,JP 3415568384,3415572479,KR 3415572480,3415605247,SG 3415605248,3415752703,TH 3415752704,3415760895,CN 3415760896,3415769087,NZ 3415769088,3415777279,CN 3415777280,3415785471,KR 3415785472,3415793663,JP 3415793664,3415801855,AU 3415801856,3415802879,CN 3415802880,3415803391,HK 3415803392,3415805951,PH 3415805952,3415806975,AU 3415806976,3415810047,ID 3415810048,3415814399,IN 3415814400,3415814655,ID 3415814656,3415815167,TH 3415815168,3415816191,IN 3415816192,3415817215,JP 3415817216,3415818239,MY 3415818240,3415822335,JP 3415822336,3415826431,MY 3415826432,3415834623,ID 3415834624,3415838719,TH 3415838720,3415842815,KR 3415842816,3415851007,TH 3415851008,3415855103,AU 3415855616,3415856127,IN 3415856128,3415858175,ID 3415858176,3415859199,LK 3415859200,3415867391,AU 3415867392,3416047615,TH 3416047616,3416063999,CN 3416064000,3416131583,TH 3416131584,3416133631,PH 3416133632,3416135679,CN 3416135680,3416137727,MY 3416137728,3416145919,AU 3416145920,3416154111,IN 3416154112,3416260607,TH 3416260608,3416261119,VN 3416261120,3416261631,AU 3416261632,3416262655,TH 3416262656,3416264703,AU 3416264704,3416268799,JP 3416268800,3416272895,HK 3416274944,3416276991,ID 3416276992,3416285183,HK 3416285184,3416287231,VN 3416287232,3416289279,HK 3416289280,3416293375,NZ 3416293376,3416293631,ID 3416293632,3416293887,CN 3416293888,3416294399,PH 3416295424,3416295679,IN 3416295680,3416295935,TH 3416295936,3416296447,IN 3416296448,3416297471,KR 3416297472,3416301567,TW 3416301568,3416309759,PH 3416309760,3416317951,CN 3416317952,3416326143,TW 3416326144,3416327167,CN 3416327168,3416328191,HK 3416328192,3416330239,AU 3416330240,3416334335,ID 3416334336,3416342527,SG 3416342528,3416371199,AU 3416371200,3416371711,PH 3416371712,3416371967,VN 3416372224,3416372479,CN 3416372480,3416372735,SG 3416372736,3416372991,AU 3416373760,3416374271,AU 3416374272,3416374527,PH 3416374528,3416374783,IN 3416374784,3416375295,ID 3416375296,3416383487,CN 3416383488,3416391679,HK 3416391680,3416457215,VN 3416457216,3416474583,JP 3416474584,3416474599,AU 3416474600,3416475391,JP 3416475392,3416475647,NZ 3416475648,3416482047,JP 3416482048,3416482055,SG 3416482056,3416489755,JP 3416489756,3416489759,AU 3416489760,3416489983,JP 3416489984,3416506367,VN 3416506368,3416514559,TW 3416514560,3416522751,IN 3416522752,3416588287,AU 3416588288,3416653823,JP 3416653824,3416667135,AU 3416667136,3416667647,US 3416667648,3416667903,AU 3416667904,3416668159,US 3416668160,3416686591,AU 3416686592,3416694783,SG 3416694784,3416702975,CN 3416702976,3416707071,ID 3416707072,3416709119,KR 3416709120,3416709375,AU 3416709376,3416709631,ID 3416709632,3416710143,AU 3416710144,3416711167,HK 3416711168,3416719359,AU 3416719360,3416721407,PH 3416721408,3416723455,VN 3416723456,3416724479,KH 3416724480,3416725503,HK 3416725504,3416726527,AU 3416726528,3416727551,CN 3416727552,3416735743,JP 3416735744,3416752127,PH 3416752128,3416784895,NZ 3416784896,3416793087,CN 3416793088,3416801279,AU 3416801280,3416817663,JP 3416817664,3416850431,HK 3416850432,3416851455,PH 3416851456,3416851967,KR 3416851968,3416852479,SG 3416852480,3416854527,JP 3416854528,3416856575,AU 3416856576,3416858623,BD 3416858624,3416862719,HK 3416862720,3416864767,MN 3416864768,3416864895,JP 3416864896,3416865023,SG 3416865024,3416865151,HK 3416865152,3416865279,SG 3416865280,3416865287,JP 3416865288,3416865295,HK 3416865296,3416865303,AU 3416865304,3416865311,HK 3416865312,3416865327,SG 3416865328,3416865343,HK 3416865344,3416865359,JP 3416865360,3416865407,HK 3416865408,3416865599,JP 3416865600,3416865655,HK 3416865656,3416865791,JP 3416865792,3416865919,SG 3416865920,3416866055,HK 3416866056,3416866071,SG 3416866072,3416866079,HK 3416866080,3416866095,SG 3416866096,3416866559,HK 3416866560,3416883199,SG 3416883200,3416915967,HK 3416915968,3416920063,AU 3416920064,3416921087,TH 3416921088,3416922111,PH 3416922112,3416922367,AU 3416922368,3416922623,IN 3416922624,3416923135,VN 3416923136,3416924159,HK 3416924160,3416928255,JP 3416928256,3416928511,IN 3416928512,3416928767,HK 3416928768,3416929279,TH 3416929280,3416930303,JP 3416930304,3416930559,NZ 3416930560,3416930815,AU 3416930816,3416931327,CN 3416931328,3416932351,IN 3416932352,3416936447,PK 3416936448,3416938495,AU 3416939008,3416939519,HK 3416939520,3416940543,AU 3416940544,3416948735,KR 3416948736,3416981503,TH 3416981504,3416982527,CN 3416982528,3416982783,NZ 3416982784,3416983039,AU 3416983040,3416983551,PH 3416983552,3416985599,JP 3416985600,3416989695,VN 3416989696,3416997887,NZ 3416997888,3417014271,AU 3417014272,3417022463,JP 3417022464,3417030655,KR 3417030656,3417034751,AU 3417034752,3417035775,IN 3417035776,3417036799,JP 3417036800,3417037823,ID 3417037824,3417038079,AU 3417038080,3417038335,ID 3417038336,3417038591,IN 3417038592,3417038847,NZ 3417038848,3417042943,CN 3417042944,3417044991,IN 3417044992,3417047039,AU 3417047040,3417055231,PH 3417055232,3417112575,TH 3417112576,3417128959,AU 3417128960,3417135103,JP 3417135104,3417137151,ID 3417137152,3417145343,KR 3417145344,3417178111,NZ 3417178112,3417179135,PH 3417179136,3417179391,CN 3417179392,3417179647,ID 3417179904,3417180159,CN 3417180160,3417182207,ID 3417182208,3417184767,AU 3417184768,3417185023,MN 3417185024,3417185279,AF 3417185280,3417185791,SG 3417185792,3417186303,NZ 3417186304,3417194495,HK 3417194496,3417198591,JP 3417198592,3417200639,SG 3417200640,3417202687,JP 3417202688,3417210879,CN 3417210880,3417227263,AU 3417227264,3417243647,JP 3417243648,3417244671,PH 3417244672,3417245695,IN 3417247744,3417251839,JP 3417251840,3417260031,KR 3417260032,3417264127,PK 3417264128,3417268223,JP 3417272320,3417274367,NZ 3417274368,3417275391,AU 3417275392,3417276415,PH 3417276416,3417284607,CN 3417284608,3417288703,SG 3417288704,3417289215,IN 3417289216,3417289727,AU 3417289728,3417291263,IN 3417291264,3417291775,AU 3417291776,3417292799,KR 3417292800,3417333759,CN 3417333760,3417337855,AU 3417337856,3417338367,IN 3417338368,3417338879,HK 3417338880,3417339903,PH 3417339904,3417340415,AU 3417340416,3417340927,NZ 3417341952,3417346047,KH 3417346048,3417348095,MY 3417348096,3417348351,AU 3417348352,3417348607,IN 3417348608,3417349119,NZ 3417349120,3417349631,IN 3417349632,3417350143,AU 3417350144,3417352191,VN 3417352192,3417354239,CN 3417354240,3417356287,ID 3417356288,3417357311,AU 3417357312,3417357567,NZ 3417357568,3417357823,AU 3417357824,3417358335,PK 3417358336,3417374719,HK 3417374720,3417440255,PH 3417440256,3417833471,JP 3417833472,3417849855,NZ 3417849856,3417853951,AU 3417853952,3417858047,CN 3417858048,3417866239,JP 3417866240,3417915391,HK 3417915392,3417939967,TH 3417939968,3417946111,PF 3417946112,3417946137,AU 3417946138,3417946138,HK 3417946139,3417947135,AU 3417947648,3417947903,AU 3417947904,3417948159,IN 3417948160,3417964543,AU 3417964544,3418030079,HK 3418030080,3418062847,TW 3418062848,3418071039,US 3418071040,3418079231,CN 3418079232,3418095615,IN 3418095616,3418111999,TH 3418112000,3418128383,HK 3418128384,3418136575,AU 3418136576,3418144767,BD 3418144768,3418148863,TW 3418148864,3418150911,JP 3418150912,3418152959,AU 3418152960,3418155007,IN 3418155008,3418157055,MY 3418157056,3418161151,BD 3418161152,3418161663,CN 3418161664,3418162431,AU 3418162432,3418162687,IN 3418162688,3418163199,CN 3418163200,3418165247,PH 3418165248,3418167295,MY 3418167296,3418167551,IN 3418167552,3418167807,AU 3418167808,3418168319,HK 3418168320,3418169343,VN 3418169344,3418177535,JP 3418177536,3418181631,LK 3418181632,3418183679,AU 3418183680,3418184191,ID 3418184192,3418184959,IN 3418184960,3418185727,AU 3418185728,3418189823,JP 3418189824,3418190847,CN 3418190848,3418191871,TH 3418191872,3418192895,ID 3418192896,3418193919,AU 3418193920,3418202111,KH 3418202112,3418206207,HK 3418206208,3418208255,IN 3418208256,3418210303,LK 3418210304,3418218495,CN 3418218496,3418220543,BD 3418220544,3418223615,CN 3418223616,3418224639,IN 3418226688,3418227711,BD 3418227712,3418228735,KR 3418228736,3418230783,BD 3418230784,3418232831,TW 3418232832,3418233343,AU 3418233344,3418233855,KR 3418233856,3418234879,JP 3418235904,3418236415,ID 3418236416,3418236927,HK 3418236928,3418241023,ID 3418241024,3418243071,JP 3418243072,3418251263,PH 3418251264,3418255359,CN 3418255360,3418257407,ID 3418257408,3418257663,HK 3418257664,3418257919,JP 3418257920,3418259455,HK 3418259456,3418267647,IN 3418267648,3418271743,VN 3418271744,3418273791,SG 3418273792,3418275839,ID 3418275840,3418279935,AU 3418279936,3418281983,NZ 3418282240,3418282495,AU 3418282496,3418283519,PH 3418283520,3418284031,AU 3418284032,3418286079,SG 3418286080,3418287103,AU 3418287104,3418288127,SG 3418288128,3418290175,ID 3418290176,3418290431,IN 3418290432,3418290687,CN 3418290688,3418291199,TH 3418291200,3418291711,AU 3418291712,3418292223,BD 3418292224,3418292735,CN 3418292992,3418293503,HK 3418293760,3418294015,AU 3418294272,3418296319,VN 3418296320,3418297343,HK 3418297344,3418298367,CN 3418298368,3418299391,HK 3418299392,3418300415,CN 3418300416,3418300927,BD 3418300928,3418301439,IN 3418301440,3418302463,AU 3418302464,3418304511,ID 3418304512,3418306559,VN 3418306560,3418308607,IN 3418308608,3418324991,CN 3418324992,3418326015,VU 3418326016,3418326271,AU 3418326528,3418327039,PH 3418327040,3418329087,JP 3418329088,3418333183,CN 3418333184,3418345471,AU 3418345472,3418357759,JP 3418357760,3418365951,CN 3418365952,3418374143,TH 3418374144,3418382335,AU 3418382336,3418391039,JP 3418391040,3418391295,AU 3418391296,3418392575,JP 3418392576,3418392831,AU 3418392832,3418393919,JP 3418393920,3418393927,AU 3418393928,3418394367,JP 3418394368,3418394623,TW 3418394624,3418397695,JP 3418397696,3418397951,HK 3418397952,3418399231,JP 3418399232,3418399247,PH 3418399248,3418400255,JP 3418400256,3418400511,AU 3418400512,3418400861,JP 3418400862,3418400862,SG 3418400863,3418401455,JP 3418401456,3418401459,TW 3418401460,3418405887,JP 3418405888,3418406143,PH 3418406144,3418406911,JP 3418406912,3418423295,IN 3418423296,3418444091,HK 3418444092,3418444095,CN 3418444096,3418456063,HK 3418456064,3418472447,IN 3418472448,3418480639,AU 3418480640,3418488831,CN 3418488832,3418505215,AU 3418505216,3418512319,JP 3418512320,3418512335,AU 3418512336,3418513407,JP 3418513408,3418517503,IN 3418517504,3418519551,MN 3418519552,3418554367,HK 3418554368,3418570751,VN 3418570752,3418578943,CN 3418578944,3418583039,TH 3418583040,3418585087,HK 3418585088,3418586111,SG 3418586112,3418586367,AU 3418586368,3418586879,SG 3418586880,3418587135,AU 3418587136,3418621951,CN 3418621952,3418623999,HK 3418624000,3418626047,JP 3418626048,3418627071,VN 3418627072,3418628095,CN 3418628096,3418636287,AU 3418636288,3418642943,JP 3418642944,3418643199,ID 3418643200,3418643455,JP 3418643456,3418644479,AU 3418644480,3418644735,JP 3418644736,3418644863,AU 3418644864,3418650807,JP 3418650808,3418650808,HK 3418650809,3418650823,JP 3418650824,3418650839,HK 3418650840,3418652671,JP 3418652672,3418750975,IN 3418750976,3418816511,HK 3418816512,3418947583,IN 3418947584,3418955775,AU 3418955776,3418959871,TW 3418959872,3418960383,BD 3418960384,3418960895,ID 3418960896,3418961919,JP 3418961920,3418962943,VN 3418962944,3418963967,IN 3418963968,3418988543,AU 3418988544,3418992639,ID 3418992640,3418993663,SG 3418993664,3418993919,PH 3418994432,3418994687,AU 3418994688,3418995711,MY 3418995712,3418996735,JP 3418996736,3419013119,IN 3419013120,3419062271,AU 3419062272,3419070463,JP 3419070464,3419072511,HK 3419073024,3419073279,SG 3419073280,3419073535,FJ 3419073536,3419074559,CN 3419074560,3419078655,BD 3419078656,3419209727,TW 3419209728,3419226111,VN 3419226112,3419234303,CN 3419234304,3419239423,JP 3419239424,3419239935,US 3419239936,3419242495,JP 3419242496,3419275263,CN 3419275264,3419340799,AU 3419340800,3419344895,TW 3419344896,3419348991,KR 3419348992,3419353087,TW 3419353088,3419354111,JP 3419354112,3419356159,ID 3419356160,3419356671,NZ 3419356672,3419356927,IN 3419357184,3419411455,CN 3419411456,3419411711,HK 3419411712,3419411967,NZ 3419411968,3419412223,PH 3419412224,3419412479,JP 3419412480,3419414527,PH 3419414528,3419422719,CN 3419422720,3419439103,AU 3419439104,3419442463,SG 3419442464,3419442479,HK 3419442480,3419471871,SG 3419471872,3419504639,TH 3419504640,3419508735,HK 3419508736,3419512831,JP 3419512832,3419516927,AU 3419516928,3419517951,JP 3419517952,3419518975,VN 3419518976,3419519999,JP 3419520000,3419520767,ID 3419520768,3419521023,TH 3419521024,3419529215,AU 3419529216,3419537407,CN 3419537408,3419541503,HK 3419541504,3419553791,KR 3419553792,3419557887,AU 3419557888,3419558399,ID 3419558400,3419558655,AU 3419558656,3419559935,ID 3419559936,3419560959,JP 3419560960,3419561983,IN 3419561984,3419570175,AU 3419570176,3419602943,VN 3419602944,3419611135,TW 3419611136,3419617279,JP 3419617280,3419618303,AU 3419618304,3419619327,SG 3419619328,3419635711,NZ 3419635712,3419643903,SG 3419643904,3419668479,JP 3419668480,3419672575,CN 3419672576,3419674623,AU 3419674624,3419675647,IN 3419676672,3419684863,JP 3419684864,3419688959,IN 3419688960,3419693055,CN 3419693056,3419701247,KR 3419701248,3419709439,AU 3419709440,3419717631,KR 3419717632,3419734015,IN 3419734016,3419774975,AU 3419774976,3419783167,JP 3419783168,3419791359,PH 3419791360,3419873279,AU 3419873280,3419877375,AF 3419877376,3419877631,ID 3419877632,3419877887,KH 3419877888,3419878143,ID 3419878144,3419878399,IN 3419878400,3419879423,GU 3419879424,3419880447,JP 3419880448,3419881471,MM 3419881472,3419897855,PH 3419897856,3419899903,JP 3419899904,3419900159,FR 3419900160,3419900415,BE 3419900416,3419901567,AU 3419901568,3419901673,NZ 3419901674,3419901674,AU 3419901675,3419901951,NZ 3419901952,3419902207,AU 3419902208,3419902463,HK 3419902464,3419902719,CN 3419902720,3419902975,HK 3419902976,3419903231,AU 3419903232,3419903487,JP 3419903488,3419906047,AU 3419906048,3419914239,PK 3419914240,3419922431,KR 3419922432,3419924479,JP 3419924480,3419930623,HK 3419930624,3419971583,JP 3419971584,3419979775,KR 3419979776,3419996159,JP 3419996160,3420020735,AU 3420020736,3420028927,TW 3420028928,3420029951,MY 3420029952,3420030975,ID 3420030976,3420031999,IN 3420032000,3420032255,ID 3420032256,3420032511,AU 3420032512,3420033023,NZ 3420033024,3420034047,IN 3420034048,3420035071,AU 3420036096,3420037119,JP 3420037120,3420037631,AU 3420039168,3420040191,KH 3420040192,3420040703,ID 3420040704,3420040959,IN 3420040960,3420041215,HK 3420041216,3420042239,MY 3420042240,3420043263,JP 3420043264,3420044287,SG 3420044288,3420045311,ID 3420045312,3420061695,KR 3420061696,3420127231,HK 3420127232,3420323839,AU 3420323840,3420332031,TW 3420332032,3420337439,AU 3420337440,3420337471,SG 3420337472,3420366959,AU 3420366960,3420366975,KR 3420366976,3420369007,AU 3420369008,3420369023,HK 3420369024,3420370559,AU 3420370560,3420370575,JP 3420370576,3420372991,AU 3420372992,3420374527,HK 3420374528,3420374783,ID 3420374784,3420375551,HK 3420375552,3420375807,ID 3420375808,3420377087,HK 3420377088,3420389375,JP 3420389376,3420393471,US 3420393472,3420395519,HK 3420395520,3420397567,JP 3420397568,3420401663,KH 3420401664,3420411903,JP 3420411904,3420412415,TH 3420412416,3420412927,ID 3420412928,3420413951,BD 3420413952,3420422143,KR 3420422144,3420430335,MY 3420430336,3420434431,PK 3420434432,3420434687,IN 3420434688,3420434943,KR 3420434944,3420435199,HK 3420435200,3420435455,AU 3420435456,3420436479,JP 3420436480,3420437503,AU 3420437504,3420438527,IN 3420438528,3420454911,HK 3420454912,3422552063,KR 3422552064,3422850559,US 3422850560,3422851071,GB 3422851072,3422955519,US 3422955520,3422956799,FR 3422956800,3423076351,US 3423076352,3423077375,CA 3423077376,3423092735,US 3423092736,3423092767,VI 3423092768,3423092783,US 3423092784,3423092831,VI 3423092832,3423092847,US 3423092848,3423093759,VI 3423093760,3423094783,US 3423094784,3423095807,CA 3423095808,3423128575,US 3423129600,3423131647,US 3423131648,3423133695,PL 3423133696,3423143935,US 3423143936,3423145983,CA 3423145984,3423162367,US 3423162368,3423163391,CA 3423163392,3423182847,US 3423182848,3423184895,CA 3423184896,3423204095,US 3423204096,3423204351,CA 3423204352,3423229951,US 3423230976,3423236095,US 3423238144,3423248383,US 3423248384,3423249407,CA 3423249408,3423258623,US 3423258624,3423260671,CA 3423260672,3423264831,US 3423264832,3423264863,NG 3423264864,3423268863,US 3423268864,3423269887,CA 3423269888,3423272959,US 3423273984,3423285247,US 3423285248,3423287295,CA 3423287296,3423288319,VG 3423288320,3423303679,US 3423303680,3423304703,CA 3423304704,3423311871,US 3423311872,3423313151,VI 3423313152,3423313407,US 3423313408,3423313919,VI 3423313920,3423366479,US 3423366480,3423366495,IT 3423366496,3423371263,US 3423371264,3423375359,ZA 3423375360,3423379455,CA 3423379456,3423416319,US 3423416320,3423417343,CA 3423417344,3423430655,US 3423430656,3423431679,TC 3423431680,3423468543,US 3423468544,3423469567,CA 3423469568,3423473663,US 3423473664,3423474687,CA 3423474688,3423478783,US 3423479808,3423487999,US 3423488000,3423490047,CA 3423490048,3423493631,US 3423493632,3423493887,RU 3423493888,3423533055,US 3423533056,3423535103,AI 3423535104,3423543295,US 3423543296,3423545343,CA 3423545344,3423571967,US 3423571968,3423574015,PR 3423574016,3423579135,US 3423579136,3423580159,CA 3423580160,3423582207,US 3423582208,3423586303,CA 3423586304,3423588351,US 3423590400,3423602687,US 3423602688,3423603711,KN 3423603712,3423614975,US 3423616000,3423626239,US 3423626240,3423627263,CA 3423627264,3423629311,US 3423629312,3423630335,AG 3423630336,3423637503,US 3423637504,3423639551,CA 3423639552,3423651839,US 3423651840,3423653887,CA 3423653888,3423705599,US 3423705600,3423705855,CA 3423705856,3423725423,US 3423725424,3423725427,CA 3423725428,3423797503,US 3423797504,3423801087,CA 3423801088,3423801343,US 3423801344,3423823359,CA 3423823360,3423823871,US 3423823872,3423827711,CA 3423827712,3423827967,US 3423827968,3423830271,CA 3423830272,3423830527,US 3423830528,3423838719,CA 3423838720,3423838975,US 3423838976,3423848447,CA 3423848448,3423849471,KN 3423849472,3423849983,US 3423849984,3423850495,CA 3423850496,3423850751,US 3423850752,3423854335,CA 3423854336,3423854591,US 3423854592,3423858175,CA 3423858176,3423858687,US 3423858688,3423858943,CA 3423858944,3423859455,US 3423859456,3423859711,CA 3423859712,3423859967,US 3423859968,3423862527,CA 3423862528,3424334847,US 3424334848,3424335871,CA 3424335872,3424378879,US 3424378880,3424379135,PR 3424379136,3424412415,US 3424412416,3424412671,CA 3424412672,3424493823,US 3424493824,3424494079,CA 3424494080,3424507135,US 3424507136,3424507391,CA 3424507392,3425173503,US 3425173504,3425304575,CA 3425304576,3425471487,US 3425471488,3425472511,CA 3425472512,3425484543,US 3425484544,3425484799,GU 3425484800,3425697791,US 3425697792,3425699839,CA 3425699840,3425714175,US 3425714176,3425722367,CA 3425722368,3425726463,US 3425728512,3425828863,US 3425828864,3425894399,CA 3425894400,3426013183,US 3426013184,3426013439,IL 3426013440,3426306047,US 3426306048,3426306303,IN 3426306304,3426369023,US 3426369024,3426369535,CA 3426369536,3426387967,US 3426387968,3426388991,MX 3426388992,3426400255,US 3426400256,3426400511,CA 3426400512,3426418687,US 3426418688,3426420479,GB 3426420480,3426420735,US 3426420736,3426435071,GB 3426435072,3426439167,SG 3426439168,3426441215,AU 3426441216,3426441727,HK 3426441728,3426445823,US 3426445824,3426446335,DE 3426446336,3426482687,US 3426482688,3426484223,CA 3426484224,3426617855,US 3426617856,3426618367,CA 3426618368,3426666495,US 3426666752,3426717695,US 3426719744,3426729471,US 3426729472,3426729983,CA 3426729984,3426744319,US 3426744320,3426746367,CA 3426746368,3427109887,US 3427110400,3427112447,US 3427112448,3427112703,CN 3427112704,3427117055,US 3427117056,3427117311,CA 3427117312,3427127295,US 3427127296,3427127551,CA 3427127552,3427487743,US 3427487744,3427487999,GB 3427488000,3427503871,US 3427503872,3427504127,SG 3427504128,3427618303,US 3427618304,3427618559,CA 3427618560,3427631103,US 3427632128,3427647999,US 3427648512,3427651071,US 3427651072,3427651327,CA 3427651328,3427729407,US 3427729408,3427729663,CA 3427729664,3427730431,US 3427730432,3427730687,BE 3427730688,3427730943,DE 3427730944,3427731967,US 3427731968,3427732223,DE 3427732224,3427732479,US 3427732480,3427732735,CH 3427732736,3427735039,IE 3427735040,3427735295,US 3427735296,3427736063,HK 3427736064,3427736319,GB 3427736320,3427741951,US 3427741952,3427742207,DE 3427742208,3427742463,US 3427742464,3427742719,AT 3427742720,3427743231,CH 3427743232,3427743487,GB 3427743488,3427743743,DE 3427743744,3427743999,CA 3427744000,3427744255,SE 3427744256,3427745279,DE 3427745280,3427745791,TW 3427745792,3427746047,GB 3427746048,3427746303,DK 3427746304,3427746559,US 3427746560,3427746815,JP 3427746816,3427747071,DE 3427747072,3427747327,US 3427747328,3427747583,DE 3427747584,3427747839,US 3427747840,3427748095,NO 3427748096,3427748351,CH 3427748352,3427748607,JP 3427748608,3427749631,DE 3427749632,3427749887,NL 3427749888,3427750655,DE 3427750656,3427750911,GB 3427750912,3427752703,US 3427752704,3427752959,GB 3427752960,3427753215,US 3427753216,3427753471,JP 3427753472,3427753727,FI 3427753728,3427753983,IT 3427753984,3427754239,CH 3427754240,3427754495,GB 3427754496,3427754751,DE 3427754752,3427755007,CA 3427755008,3427755263,IT 3427755264,3427755519,US 3427755520,3427755775,DE 3427755776,3427756287,BE 3427756288,3427756543,AU 3427756544,3427756799,DE 3427756800,3427757055,US 3427757056,3427757311,GR 3427757312,3427757567,FR 3427757568,3427757823,JP 3427757824,3427758079,DE 3427758080,3427758335,BE 3427758336,3427758591,US 3427758592,3427758847,IT 3427758848,3427759103,US 3427759104,3427759359,BE 3427759360,3427759871,GB 3427759872,3427760127,US 3427760128,3427760895,CA 3427760896,3427761663,US 3427761664,3427761919,JP 3427761920,3427762175,US 3427762176,3427762431,DE 3427762432,3427762687,CA 3427762688,3427763455,IT 3427763456,3427763711,AU 3427763712,3427763967,GB 3427763968,3427764223,US 3427764224,3427764479,FR 3427764480,3427765503,US 3427765504,3427765759,GB 3427765760,3427766271,US 3427766272,3427766783,GB 3427766784,3427767039,SE 3427767040,3427767807,DE 3427767808,3427769599,US 3427769600,3427770111,JP 3427770112,3427770367,NO 3427770368,3427770623,GB 3427770624,3427771391,CH 3427771392,3427771647,US 3427771648,3427771903,CA 3427771904,3427772415,CH 3427772416,3427772671,DE 3427772672,3427772927,HK 3427772928,3427773183,BE 3427773184,3427773439,DE 3427773440,3427773695,US 3427773696,3427773951,FR 3427773952,3427774719,US 3427774720,3427775231,DE 3427775232,3427776511,US 3427776512,3427776767,CZ 3427776768,3427777023,US 3427777024,3427777279,NL 3427777280,3427777535,DE 3427777536,3427777791,US 3427777792,3427778047,HK 3427778048,3427778303,US 3427778304,3427778559,SE 3427778560,3427779071,NO 3427779072,3427779327,GB 3427779328,3427780095,US 3427780096,3427780351,GB 3427780352,3427780863,DE 3427780864,3427781375,US 3427781376,3427781631,GB 3427781632,3427781887,BE 3427781888,3427782399,US 3427782400,3427782655,GB 3427782656,3427783423,FR 3427783424,3427783679,GB 3427783680,3427783935,US 3427783936,3427784703,FR 3427784704,3427785215,US 3427785216,3427785471,JP 3427785472,3427785727,NO 3427785728,3427786751,US 3427786752,3427787263,LU 3427787264,3427787775,US 3427787776,3427788031,FR 3427788032,3427788287,CH 3427788288,3427788799,GB 3427788800,3427789567,NO 3427789568,3427790079,DE 3427790080,3427790847,US 3427790848,3427791103,IT 3427791104,3427791615,DE 3427791616,3427791871,GB 3427791872,3427792383,CA 3427792384,3427792639,NL 3427792640,3427793407,SG 3427793408,3427793919,HK 3427793920,3427794175,US 3427794176,3427794943,NL 3427794944,3427796991,CA 3427796992,3427831551,US 3427831552,3427831807,MX 3427831808,3427860479,US 3427860480,3428025343,CA 3428025344,3428025855,US 3428025856,3428057087,CA 3428057088,3428286719,US 3428286720,3428286975,CA 3428286976,3428296959,US 3428296960,3428297215,CL 3428297216,3428299519,US 3428299520,3428299775,MU 3428299776,3428302079,US 3428302080,3428302335,CA 3428302336,3428306175,US 3428306176,3428306431,PE 3428306432,3428317951,US 3428318208,3428318975,US 3428318976,3428319231,CA 3428319232,3428388863,US 3428390912,3428399359,US 3428399360,3428399615,CA 3428399616,3428433919,US 3428434176,3428434943,US 3428434944,3428435199,CA 3428435200,3428437503,US 3428437504,3428437759,MX 3428437760,3428582143,US 3428582144,3428582399,CA 3428582400,3428582655,US 3428582656,3428582911,CA 3428582912,3428585215,US 3428585216,3428585471,CA 3428585472,3428585983,US 3428585984,3428586495,CA 3428586496,3428587007,US 3428587008,3428587519,CA 3428587520,3428587775,US 3428587776,3428588287,CA 3428588288,3428588543,US 3428588544,3428588799,CA 3428588800,3428589311,US 3428589312,3428589567,CA 3428589568,3428591871,US 3428591872,3428592127,CA 3428592128,3428592383,US 3428592384,3428593919,CA 3428593920,3428594687,US 3428594688,3428595199,CA 3428595200,3428596223,US 3428596224,3428596735,CA 3428596736,3428597247,US 3428597248,3428597503,CA 3428597504,3428598015,US 3428598016,3428598271,CA 3428598272,3428598591,US 3428598592,3428598623,CA 3428598624,3428598783,US 3428598784,3428599039,CA 3428599040,3428599551,US 3428599552,3428600575,CA 3428600576,3428600831,US 3428600832,3428601599,CA 3428601600,3428602111,US 3428602112,3428602367,CA 3428602368,3428603903,US 3428603904,3428605183,CA 3428605184,3428607999,US 3428608000,3428609023,CA 3428609024,3428610047,US 3428610048,3428611071,CA 3428611072,3428612607,US 3428612608,3428613887,CA 3428613888,3428614143,US 3428614144,3428620031,CA 3428620032,3428620287,US 3428620288,3428621823,CA 3428621824,3428622335,US 3428622336,3428623615,CA 3428623616,3428623871,US 3428623872,3428624639,CA 3428624640,3428625407,US 3428625408,3428628223,CA 3428628224,3428630015,US 3428630016,3428634623,CA 3428634624,3428634879,US 3428634880,3428635135,CA 3428635136,3428635391,US 3428635392,3428635647,CA 3428635648,3428635903,US 3428635904,3428636927,CA 3428636928,3428637439,US 3428637440,3428637951,CA 3428637952,3428638719,US 3428638720,3428639487,CA 3428639488,3428640255,US 3428640256,3428640511,CA 3428640512,3428640767,US 3428640768,3428643327,CA 3428643328,3428643583,US 3428643584,3428643839,CA 3428643840,3428644351,US 3428644352,3428645631,CA 3428645632,3428646143,US 3428646144,3428646399,CA 3428646400,3428646655,US 3428646656,3428646911,CA 3428646912,3428660735,US 3428660736,3428661503,CA 3428661504,3428743167,US 3428743168,3428744191,CA 3428744192,3428752383,US 3428752384,3428753407,GH 3428753408,3428958207,US 3428958208,3428962303,CO 3428962304,3429171199,US 3429171200,3429236735,CA 3429236736,3429500927,US 3429500928,3429502975,CA 3429502976,3429775359,US 3429775360,3429777407,TC 3429777408,3429892095,US 3429892096,3429957631,CA 3429957632,3430025471,US 3430025728,3430074111,US 3430074112,3430074367,AU 3430074368,3430328831,US 3430328832,3430329087,GH 3430329088,3430354943,US 3430354944,3430356991,PR 3430356992,3430468607,US 3430468608,3430468863,AQ 3430468864,3430703871,US 3430703872,3430704127,PR 3430704128,3430705151,US 3430705152,3430706175,MX 3430706176,3430722303,US 3430722304,3430722559,CA 3430722560,3430729471,US 3430729472,3430729727,GB 3430729728,3430732543,US 3430732544,3430732799,GB 3430732800,3430747903,US 3430747904,3430748159,CA 3430748160,3430749951,US 3430749952,3430750207,CA 3430750208,3430767615,US 3430767616,3430768127,CA 3430768128,3430768895,US 3430768896,3430769151,CA 3430769152,3430769407,US 3430769408,3430769663,CA 3430769664,3430770943,US 3430770944,3430771199,CA 3430771200,3430771711,US 3430771712,3430772223,CA 3430772224,3430773247,US 3430773248,3430773503,CA 3430773504,3430774271,US 3430774272,3430774527,CA 3430774528,3430777343,US 3430777344,3430777599,CA 3430777600,3430777855,US 3430777856,3430778111,CA 3430778112,3430778623,US 3430778624,3430778879,CA 3430778880,3430779903,US 3430779904,3430780159,CA 3430780160,3430780671,US 3430780672,3430780927,CA 3430780928,3430782463,US 3430782464,3430782719,CA 3430782720,3430795007,US 3430795008,3430795263,CA 3430795264,3430805759,US 3430805760,3430806015,CA 3430806016,3430807295,US 3430807296,3430807551,CA 3430807552,3430809087,US 3430809088,3430809343,CA 3430809344,3430812671,US 3430812672,3430813183,MX 3430813184,3430842367,US 3430842368,3430842879,DO 3430842880,3430845439,US 3430845440,3430845951,MX 3430845952,3430849535,US 3430849536,3430850047,CA 3430850048,3431114495,US 3431114496,3431114751,CA 3431114752,3431468031,US 3431468032,3431469055,CA 3431469056,3431596287,US 3431596288,3431602687,CA 3431602688,3431602943,US 3431602944,3431606271,CA 3431606272,3431609343,US 3431609344,3431613439,CA 3431613440,3431613695,US 3431613696,3431620095,CA 3431620096,3431620351,US 3431620352,3431621375,CA 3431621376,3431622399,US 3431622400,3431622655,CA 3431622656,3431622911,US 3431622912,3431624703,CA 3431624704,3431624959,US 3431624960,3431638783,CA 3431638784,3431639039,US 3431639040,3431641855,CA 3431641856,3431642623,US 3431642624,3431657471,CA 3431657472,3431658751,US 3431658752,3431661311,CA 3431661312,3431745023,US 3431745024,3431745279,BE 3431745280,3431745791,US 3431745792,3431746047,GB 3431746048,3431746559,US 3431746560,3431746815,DE 3431746816,3431747071,US 3431747072,3431747327,LU 3431747328,3431748607,US 3431748608,3431749119,FR 3431749120,3431751423,US 3431751424,3431752703,IT 3431752704,3431753215,US 3431753216,3431753471,SG 3431753472,3431753727,US 3431753728,3431755007,CA 3431755008,3431755775,NL 3431755776,3431759615,CA 3431759616,3431759871,DE 3431759872,3432004607,US 3432004608,3432005631,CA 3432005632,3432009215,US 3432009216,3432009471,PR 3432009472,3432106239,US 3432106240,3432106495,MX 3432106496,3432113407,US 3432113408,3432113663,CA 3432113664,3432133887,US 3432133888,3432134143,GB 3432134144,3432205311,US 3432205312,3432206335,CA 3432206336,3432265983,US 3432265984,3432267263,DE 3432267264,3432280063,US 3432280064,3432280319,GB 3432280320,3432324607,US 3432324608,3432324863,CA 3432324864,3432329215,US 3432329216,3432330239,DE 3432330240,3432361983,US 3432361984,3432366079,DE 3432366080,3432517119,US 3432517120,3432517631,MU 3432517632,3432570879,US 3432570880,3432572927,HK 3432572928,3432585215,US 3432585216,3432585727,MX 3432585728,3432606463,US 3432606464,3432606719,GB 3432606720,3432613631,US 3432613632,3432613887,CA 3432613888,3432634111,US 3432634112,3432634367,CA 3432634368,3432660991,US 3432660992,3432663039,DE 3432663040,3432689151,US 3432689152,3432689663,CA 3432689664,3432695807,US 3432695808,3432697855,CA 3432697856,3432708095,US 3432710144,3432736255,US 3432736256,3432736511,GB 3432736512,3432738303,US 3432738304,3432738559,GB 3432738560,3432807423,US 3432807424,3432808447,CA 3432808448,3433955583,US 3433955584,3433964799,CA 3433964800,3433965055,US 3433965056,3433967359,CA 3433967360,3433967615,US 3433967616,3433981951,CA 3433981952,3433983999,US 3433984000,3434012671,CA 3434012672,3434012927,US 3434012928,3434014719,CA 3434014720,3434015231,US 3434015232,3434020607,CA 3434020608,3434427391,US 3434427392,3434428415,HR 3434428416,3434433279,US 3434433280,3434433535,PR 3434433536,3434553343,US 3434553344,3434553599,ES 3434553600,3434571775,US 3434571776,3434573823,CO 3434573824,3434575359,US 3434575360,3434575615,BR 3434575616,3434583039,US 3434583040,3434584063,NL 3434584064,3434807551,US 3434807552,3434831359,CA 3434831360,3434831615,US 3434831616,3434872575,CA 3434872576,3434913791,US 3434913792,3434914047,AG 3434914048,3434914303,DM 3434914304,3434914559,VG 3434914560,3434914815,AG 3434914816,3434915327,VG 3434915328,3434915583,DM 3434915584,3434915839,KN 3434915840,3434916095,LC 3434916096,3434916351,AG 3434916352,3434916607,DM 3434916608,3434917119,AG 3434917120,3434917375,LC 3434917376,3434917887,AG 3434917888,3435069439,US 3435069440,3435134975,CA 3435134976,3435271423,US 3435271424,3435271679,CA 3435271680,3435507711,US 3435507712,3435511807,CA 3435511808,3436249343,US 3436249344,3436255743,CA 3436255744,3436256255,US 3436256256,3436278271,CA 3436278272,3436278527,US 3436278528,3436282367,CA 3436282368,3436282623,US 3436282624,3436289791,CA 3436289792,3436290047,US 3436290048,3436314367,CA 3436314368,3436476415,US 3436476416,3436478463,AW 3436478464,3436507135,US 3436507136,3436509183,BB 3436509184,3436697087,US 3436697088,3436697343,VE 3436697344,3437232383,US 3437232384,3437232639,CA 3437232640,3437242879,US 3437242880,3437243135,CA 3437243136,3437249279,US 3437249280,3437249535,CA 3437249536,3437259775,US 3437259776,3437260031,CA 3437260032,3437262079,US 3437262080,3437262335,CA 3437262336,3437263615,US 3437263616,3437263871,CA 3437263872,3437266431,US 3437266432,3437266687,CA 3437266688,3437279487,US 3437279488,3437279743,CA 3437279744,3437281279,US 3437281280,3437281535,CA 3437281536,3437292799,US 3437292800,3437293055,CA 3437293056,3437297919,US 3437297920,3437301759,CA 3437301760,3437305855,US 3437305856,3437307391,CA 3437307392,3437307903,US 3437307904,3437308415,CA 3437308416,3437308927,US 3437308928,3437310975,CA 3437310976,3437311487,US 3437311488,3437331711,CA 3437331712,3437331967,US 3437331968,3437332479,CA 3437332480,3437332735,US 3437332736,3437334015,CA 3437334016,3437334271,US 3437334272,3437334783,CA 3437334784,3437335551,US 3437335552,3437336063,CA 3437336064,3437336319,US 3437336320,3437341695,CA 3437341696,3437341951,US 3437342208,3437343231,CA 3437343232,3437343487,US 3437343488,3437350911,CA 3437350912,3437351423,US 3437351424,3437358847,CA 3437358848,3437359103,US 3437359104,3437428735,CA 3437428736,3437691391,US 3437691392,3437691647,HK 3437691648,3437691903,JP 3437691904,3437692415,FR 3437692416,3437692671,US 3437692672,3437693439,CA 3437693440,3437693695,HK 3437693696,3437693951,NO 3437693952,3437694207,ES 3437694208,3437695231,AT 3437695232,3437695999,HK 3437696000,3437696767,NL 3437696768,3437702911,US 3437702912,3437703167,HK 3437703168,3437703423,US 3437703424,3437703679,NL 3437703680,3437703935,ES 3437703936,3437704191,US 3437704192,3437704703,CH 3437704704,3437706495,US 3437706496,3437706751,CH 3437706752,3437707263,US 3437707264,3437707519,DE 3437707520,3437707775,US 3437707776,3437708031,FR 3437708032,3437708287,US 3437708288,3437708799,FI 3437708800,3437710079,US 3437710080,3437710335,GB 3437710336,3437712639,US 3437712640,3437713663,GB 3437713664,3437715199,US 3437715200,3437715455,DE 3437715456,3437715711,JP 3437715712,3437715967,IT 3437715968,3437716991,DE 3437716992,3437717247,US 3437717248,3437718527,BE 3437718528,3437720063,US 3437720064,3437723135,SG 3437723136,3437725183,US 3437725184,3437725695,MN 3437725696,3437726207,DE 3437726208,3437726463,US 3437726464,3437726975,GB 3437726976,3437734399,US 3437734400,3437734655,SG 3437734656,3437736447,US 3437736448,3437737471,CL 3437737472,3437748223,US 3437748224,3437748479,GB 3437748480,3437748991,NL 3437748992,3437749247,US 3437749248,3437749503,DE 3437749504,3437749759,US 3437749760,3437750015,JP 3437750016,3437750271,BE 3437750272,3437750527,GB 3437750528,3437751551,US 3437751552,3437751807,IT 3437751808,3437752063,GB 3437752064,3437752319,ES 3437752320,3437752575,IE 3437752576,3437755135,US 3437755136,3437755647,JP 3437755648,3437755903,GB 3437755904,3437756159,US 3437756160,3437756415,IE 3437756416,3437772799,US 3437772800,3437776895,CA 3437776896,3437789863,US 3437789864,3437789871,AU 3437789872,3437961215,US 3437961216,3437964287,ZA 3437964288,3438006271,US 3438006272,3438010367,CA 3438010368,3438034943,US 3438034944,3438051327,BS 3438051328,3438084095,US 3438084096,3438116863,CA 3438116864,3438215423,US 3438215424,3438215935,CA 3438215936,3438216191,US 3438216192,3438217983,CA 3438217984,3438218239,US 3438218240,3438218751,CA 3438218752,3438219263,US 3438219264,3438219519,CA 3438219520,3438219775,US 3438219776,3438246911,CA 3438246912,3438247167,US 3438247168,3438252543,CA 3438252544,3438252799,US 3438252800,3438261759,CA 3438261760,3438262015,US 3438262016,3438280703,CA 3438280704,3438542847,US 3438542848,3438608383,CA 3438608384,3438813183,US 3438813184,3438814207,GH 3438814208,3438895103,US 3438895104,3438896639,HN 3438896640,3439059711,US 3439059712,3439059967,PR 3439059968,3439071103,US 3439071104,3439071135,MX 3439071136,3448263423,US 3448263424,3448263935,AG 3448263936,3448303615,US 3448303616,3448303871,KY 3448303872,3448369151,US 3448373248,3448377343,US 3448377344,3448377855,AG 3448377856,3448379647,US 3448379648,3448379903,SG 3448379904,3448380415,US 3448380416,3448380671,SG 3448380672,3448380839,US 3448380840,3448380847,SG 3448380848,3448381183,US 3448381184,3448381439,SG 3448381440,3448398335,US 3448398336,3448399103,CA 3448399104,3448399359,US 3448399360,3448399871,CA 3448399872,3448444143,US 3448444144,3448444159,SG 3448444160,3448500479,US 3448500480,3448500735,SG 3448500736,3448559103,US 3448559104,3448559359,GB 3448559360,3448651775,US 3448652800,3448668159,US 3448669184,3448711167,US 3448713216,3448717311,US 3448717312,3448717567,AU 3448717568,3448838143,US 3448838144,3448838399,CA 3448838400,3448987647,US 3448987648,3448989695,IN 3448989696,3448990719,HK 3448990720,3448991743,IN 3448991744,3449098751,US 3449098752,3449099263,DE 3449099264,3449100799,US 3449100800,3449101311,AU 3449101312,3449159679,US 3449159680,3449160703,CA 3449160704,3449161471,US 3449161472,3449163519,CA 3449163520,3449163775,US 3449163776,3449165055,CA 3449165056,3449165311,US 3449165312,3449165567,CA 3449165568,3449166079,US 3449166080,3449168639,CA 3449168640,3449168895,US 3449168896,3449169151,CA 3449169152,3449169663,US 3449169664,3449170431,CA 3449170432,3449170687,US 3449170688,3449171199,CA 3449171200,3449171711,US 3449171712,3449172991,CA 3449172992,3449173247,US 3449173248,3449173503,CA 3449173504,3449173759,US 3449173760,3449174783,CA 3449174784,3449175039,US 3449175040,3449175295,CA 3449175296,3449175551,US 3449175552,3449175807,CA 3449175808,3449176063,US 3449176064,3449178367,CA 3449178368,3449178623,US 3449178624,3449179903,CA 3449179904,3449180671,US 3449180672,3449181951,CA 3449181952,3449182015,US 3449182016,3449182031,CA 3449182032,3449182207,US 3449182208,3449186303,CA 3449186304,3449186559,US 3449186560,3449186815,CA 3449186816,3449187071,US 3449187072,3449187583,CA 3449187584,3449187839,US 3449187840,3449188095,CA 3449188096,3449188351,US 3449188352,3449188607,CA 3449188608,3449188671,US 3449188672,3449188703,CA 3449188704,3449188863,US 3449188864,3449189375,CA 3449189376,3449189887,US 3449189888,3449190655,CA 3449190656,3449190911,US 3449190912,3449191679,CA 3449191680,3449192447,US 3449192448,3449195775,CA 3449195776,3449196031,US 3449196032,3449196287,CA 3449196288,3449198687,US 3449198688,3449198719,CA 3449198720,3449203711,US 3449203712,3449203775,CA 3449203776,3449204223,US 3449204224,3449204479,CA 3449204480,3449204735,US 3449204736,3449205759,CA 3449205760,3449208927,US 3449208928,3449208943,CA 3449208944,3449209343,US 3449209344,3449209599,CA 3449209600,3449210367,US 3449210368,3449212927,CA 3449212928,3449213183,US 3449213184,3449213695,CA 3449213696,3449214975,US 3449214976,3449215487,CA 3449215488,3449215871,US 3449215872,3449215999,CA 3449216000,3449220607,US 3449220608,3449221375,CA 3449221376,3449222655,US 3449222656,3449224959,CA 3449224960,3449225471,US 3449225472,3449254143,CA 3449254144,3449254911,US 3449254912,3449273599,CA 3449273600,3449273855,US 3449273856,3449278975,CA 3449278976,3449279487,US 3449279488,3449290495,CA 3449290496,3449575423,US 3449575424,3449575679,AU 3449575680,3449593855,US 3449593856,3449594111,AU 3449594112,3449599999,US 3449600000,3449600255,CA 3449600256,3449638911,US 3449638912,3449639186,GB 3449639187,3449639187,NL 3449639188,3449639679,GB 3449639680,3449639935,US 3449639936,3449640191,GB 3449640192,3449640447,NL 3449640448,3449640959,GB 3449640960,3449641215,NL 3449641216,3449641471,GB 3449641472,3449769727,US 3449769728,3449769983,MU 3449769984,3449823231,US 3449823232,3449824255,CO 3449824256,3449835519,US 3449835520,3449836543,ES 3449836544,3449843199,US 3449843200,3449843711,YE 3449843712,3449874687,US 3449874688,3449874943,AG 3449874944,3449884415,US 3449884416,3449884671,AS 3449884672,3449923583,US 3449923584,3449923839,ES 3449923840,3449974783,US 3449974784,3449976831,CA 3449976832,3449994239,US 3449994240,3449994495,MX 3449994496,3450086143,US 3450086144,3450086655,CH 3450086656,3450088191,US 3450088192,3450088447,CH 3450088448,3450093055,US 3450093056,3450093311,CH 3450093312,3450217215,US 3450217216,3450217471,LC 3450217472,3450254079,US 3450254080,3450254335,CA 3450254336,3450272511,US 3450272512,3450272767,MX 3450272768,3450275327,US 3450275328,3450275583,GB 3450275584,3450275839,FR 3450275840,3450345279,US 3450345280,3450345287,AT 3450345288,3450345295,DE 3450345296,3450345303,CZ 3450345304,3450345359,US 3450345360,3450345367,DE 3450345368,3450345407,US 3450345408,3450345415,IT 3450345416,3450345423,CZ 3450345424,3450345439,DE 3450345440,3450612479,US 3450612480,3450612735,CA 3450612736,3450632191,US 3450632192,3450634239,CA 3450634240,3450685183,US 3450685184,3450685439,CA 3450685440,3450699007,US 3450699008,3450699263,CA 3450699264,3450731519,US 3450731520,3450732543,CA 3450732544,3450773503,US 3450773504,3450777599,CA 3450777600,3450852351,US 3450852352,3450853375,CA 3450853376,3450974335,US 3450974336,3450974463,GB 3450974464,3450986495,US 3450986496,3450986751,HK 3450986752,3451170303,US 3451170304,3451170559,VE 3451170560,3451187967,US 3451187968,3451188223,AU 3451188224,3451207423,US 3451207424,3451207679,CH 3451207680,3451236351,US 3451236352,3451236607,HU 3451236608,3451371519,US 3451371520,3451371775,GB 3451371776,3451507199,US 3451507200,3451507711,BR 3451507712,3451715839,US 3451715840,3451724543,CA 3451724544,3451725567,US 3451725568,3451726847,CA 3451726848,3451727359,US 3451727360,3451737343,CA 3451737344,3451737599,US 3451737600,3451740927,CA 3451740928,3451741183,US 3451741184,3451741695,CA 3451741696,3451742207,US 3451742208,3451744255,CA 3451744256,3451745535,US 3451745536,3451749887,CA 3451749888,3451750143,US 3451750144,3451766783,CA 3451766784,3451767295,US 3451767296,3451767551,CA 3451767552,3451767807,US 3451767808,3451780863,CA 3451780864,3451783935,US 3451783936,3451784191,CA 3451784192,3451786751,US 3451786752,3451787007,CA 3451787008,3451788031,US 3451788032,3451788287,CA 3451788288,3451798783,US 3451798784,3451799039,CA 3451799040,3451800063,US 3451800064,3451800319,CA 3451800320,3451807231,US 3451807232,3451807487,CA 3451807488,3451808511,US 3451808512,3451808767,CA 3451808768,3451810815,US 3451810816,3451811327,CA 3451811328,3451821567,US 3451821568,3451821823,PR 3451821824,3451824127,US 3451824128,3451824383,CA 3451824384,3451828991,US 3451828992,3451829247,CA 3451829248,3451835903,US 3451835904,3451836159,CA 3451836160,3451836415,US 3451836416,3451836671,CA 3451836672,3451836927,US 3451836928,3451837183,CA 3451837184,3451837695,US 3451837696,3451837951,CA 3451837952,3451840255,US 3451840256,3451840767,CA 3451840768,3451879423,US 3451879424,3451879935,DE 3451879936,3451890431,US 3451890432,3451890687,AU 3451890688,3451896319,US 3451896320,3451896575,DE 3451896576,3451912191,US 3451912192,3452174335,CA 3452174336,3452436479,US 3452436480,3452502015,CA 3452502016,3452658431,US 3452658432,3452658687,HK 3452658688,3452663039,US 3452663040,3452663295,GB 3452663296,3452715007,US 3452715008,3452723199,CA 3452723200,3452730623,US 3452730624,3452730879,HK 3452730880,3452764671,US 3452764672,3452765183,CA 3452765184,3452765439,US 3452765440,3452765951,CA 3452765952,3452766207,US 3452766208,3452766463,CA 3452766464,3452766975,US 3452766976,3452767487,CA 3452767488,3452767743,US 3452767744,3452767999,CA 3452768000,3452768607,US 3452768608,3452768639,CA 3452768640,3452769023,US 3452769024,3452769535,CA 3452769536,3452769791,US 3452769792,3452770047,CA 3452770048,3452770303,US 3452770304,3452770559,CA 3452770560,3452770815,US 3452770816,3452771071,CA 3452771072,3452771839,US 3452771840,3452773119,CA 3452773120,3452773375,US 3452773376,3452773887,CA 3452773888,3452774143,US 3452774144,3452774911,CA 3452774912,3452775167,US 3452775168,3452775935,CA 3452775936,3452776191,US 3452776192,3452776703,CA 3452776704,3452776959,US 3452776960,3452777471,CA 3452777472,3452777727,US 3452777728,3452779007,CA 3452779008,3452779263,US 3452779264,3452779519,CA 3452779520,3452780031,US 3452780032,3452780543,CA 3452780544,3452781055,US 3452781056,3452781567,CA 3452781568,3452781823,US 3452781824,3452782079,CA 3452782080,3452782335,US 3452782336,3452783359,CA 3452783360,3452783871,US 3452783872,3452784639,CA 3452784640,3452784895,US 3452784896,3452785151,CA 3452785152,3452785407,US 3452785408,3452785919,CA 3452785920,3452786175,US 3452786176,3452787455,CA 3452787456,3452787711,US 3452787712,3452789503,CA 3452789504,3452789759,US 3452789760,3452790271,CA 3452790272,3452791551,US 3452791552,3452793087,CA 3452793088,3452793343,US 3452793344,3452793599,CA 3452793600,3452793855,US 3452793856,3452795135,CA 3452795136,3452795391,US 3452795392,3452796159,CA 3452796160,3452796415,US 3452796416,3452797183,CA 3452797184,3452797439,US 3452797440,3452798719,CA 3452798720,3452798975,US 3452798976,3452799487,CA 3452799488,3452799743,US 3452799744,3452801535,CA 3452801536,3452801791,US 3452801792,3452802559,CA 3452802560,3452802815,US 3452802816,3452803327,CA 3452803328,3452803583,US 3452803584,3452806143,CA 3452806144,3452806911,US 3452806912,3452807167,CA 3452807168,3452807423,US 3452807424,3452807679,CA 3452807680,3452807935,US 3452807936,3452808191,CA 3452808192,3452808447,US 3452808448,3452809727,CA 3452809728,3452809983,US 3452809984,3452810239,CA 3452810240,3452811007,US 3452811008,3452811519,CA 3452811520,3452811775,US 3452811776,3452812287,CA 3452812288,3452812543,US 3452812544,3452813311,CA 3452813312,3452813567,US 3452813568,3452814079,CA 3452814080,3452814335,US 3452814336,3452815359,CA 3452815360,3452815615,US 3452815616,3452816127,CA 3452816128,3452816511,US 3452816512,3452816527,CA 3452816528,3452816895,US 3452816896,3452817663,CA 3452817664,3452817919,US 3452817920,3452818431,CA 3452818432,3452818687,US 3452818688,3452818943,CA 3452818944,3452819199,US 3452819200,3452819711,CA 3452819712,3452820479,US 3452820480,3452820735,CA 3452820736,3452820991,US 3452820992,3452821503,CA 3452821504,3452822271,US 3452822272,3452822527,CA 3452822528,3452822783,US 3452822784,3452823551,CA 3452823552,3452823807,US 3452823808,3452824063,CA 3452824064,3452824319,US 3452824320,3452824575,CA 3452824576,3452824831,US 3452824832,3452825599,CA 3452825600,3452825855,US 3452825856,3452828927,CA 3452828928,3452829439,US 3452829440,3452895231,CA 3452895232,3452895487,US 3452895488,3452902399,CA 3452902400,3452902655,US 3452902656,3452912127,CA 3452912128,3452912383,US 3452912384,3452914175,CA 3452914176,3452914431,US 3452914432,3452919551,CA 3452919552,3452919807,US 3452919808,3452920831,CA 3452920832,3452923391,US 3452923392,3452931327,CA 3452931328,3452931583,US 3452931584,3452933119,CA 3452933120,3452933631,US 3452933632,3452934911,CA 3452934912,3452936191,US 3452936192,3452938751,CA 3452938752,3452939023,US 3452939024,3452939039,CA 3452939040,3452939263,US 3452939264,3452942847,CA 3452942848,3452943103,US 3452943104,3452953087,CA 3452953088,3452953343,US 3452953344,3452960511,CA 3452960512,3453026559,US 3453026560,3453028095,CA 3453028096,3453028351,US 3453028352,3453028607,CA 3453028608,3453028863,US 3453028864,3453029375,CA 3453029376,3453092095,US 3453092096,3453096959,CA 3453096960,3453097983,US 3453097984,3453101055,CA 3453101056,3453101311,US 3453101312,3453123839,CA 3453123840,3453124095,US 3453124096,3453128959,CA 3453128960,3453129215,US 3453129216,3453129983,CA 3453129984,3453130239,US 3453130240,3453133823,CA 3453134848,3453139455,CA 3453139456,3453140991,US 3453140992,3453149183,CA 3453149184,3453149439,US 3453149440,3453151743,CA 3453151744,3453151999,US 3453152000,3453155327,CA 3453155328,3453155583,US 3453155584,3453157119,CA 3453157120,3453157631,US 3453157632,3453159423,CA 3453159424,3453159935,BM 3453159936,3453163519,CA 3453163520,3453164031,US 3453164032,3453178623,CA 3453178624,3453178879,US 3453178880,3453180671,CA 3453180672,3453180927,US 3453180928,3453195263,CA 3453195264,3453195519,US 3453195520,3453198335,CA 3453198592,3453206527,CA 3453206528,3453207551,HN 3453207552,3453207807,NI 3453207808,3453208575,HN 3453208576,3453208831,NI 3453208832,3453209599,HN 3453209600,3453209855,US 3453209856,3453210367,HN 3453210368,3453210623,SV 3453210624,3453213183,CR 3453213184,3453214719,HN 3453214720,3453215231,GT 3453215232,3453215999,SV 3453216000,3453217023,CR 3453217024,3453217791,SV 3453217792,3453219327,CR 3453219328,3453219583,US 3453219584,3453219839,SV 3453219840,3453220607,US 3453220608,3453222911,HN 3453222912,3453403135,US 3453403136,3453405951,BB 3453405952,3453406207,KN 3453406208,3453406463,TC 3453406464,3453406975,VC 3453406976,3453407231,GD 3453407232,3453407743,BB 3453407744,3453408255,GD 3453408256,3453409023,BB 3453409024,3453409535,KN 3453409536,3453411327,BB 3453411328,3453552127,US 3453552128,3453552383,GB 3453552384,3453552639,US 3453552640,3453552895,GB 3453552896,3453553151,US 3453553152,3453553407,GB 3453553408,3453554431,US 3453554432,3453554687,GB 3453554688,3453599999,US 3453600000,3453600767,GB 3453600768,3453607935,US 3453607936,3453608959,KN 3453608960,3453609983,LC 3453609984,3453610495,AG 3453610496,3453610751,MS 3453610752,3453611007,AG 3453611008,3453611263,MS 3453611264,3453612543,DM 3453612544,3453613055,KN 3453613056,3453614591,AG 3453614592,3453615103,DM 3453615104,3453615359,AG 3453615360,3453615615,KN 3453615616,3453616127,AG 3453616128,3454003013,US 3454003014,3454003014,ES 3454003015,3454004997,US 3454004998,3454004998,GB 3454004999,3454287871,US 3454287872,3454296063,GB 3454296064,3454436351,US 3454436352,3454436607,GU 3454436608,3454497791,US 3454497792,3454498815,MX 3454498816,3454599423,US 3454599424,3454601215,CA 3454601216,3454603007,US 3454603008,3454603519,CA 3454603520,3454604031,US 3454604032,3454604799,CA 3454604800,3454607359,US 3454607360,3454608127,CA 3454608128,3454608383,US 3454608384,3454609151,CA 3454609152,3454611455,US 3454611456,3454617343,CA 3454617344,3454617599,US 3454617600,3454617855,CA 3454617856,3454618111,US 3454618112,3454618367,CA 3454618368,3454619647,US 3454619648,3454631423,CA 3454631424,3454631935,US 3454631936,3454634751,CA 3454634752,3454636031,US 3454636032,3454636799,CA 3454636800,3454637055,US 3454637056,3454652159,CA 3454652160,3454652415,US 3454652416,3454661631,CA 3454661632,3454662655,US 3454662656,3454664447,CA 3454664448,3454672895,US 3454672896,3454681087,CA 3454681088,3454727935,US 3454727936,3454728191,JP 3454728192,3454730239,US 3454730240,3454732287,EC 3454732288,3454796031,US 3454796032,3454808831,CA 3454808832,3454809087,US 3454809088,3454810111,CA 3454810112,3454810367,US 3454810368,3454813951,CA 3454813952,3454814207,US 3454814208,3454814975,CA 3454814976,3454815231,US 3454815232,3454815743,CA 3454815744,3454816255,US 3454816256,3454816511,CA 3454816512,3454816767,US 3454816768,3454828287,CA 3454828288,3454828543,US 3454828544,3454861055,CA 3454861056,3454861567,US 3454861568,3454867711,CA 3454867712,3454867967,US 3454867968,3454881535,CA 3454881536,3454881791,US 3454881792,3454883839,CA 3454883840,3454915071,US 3454915072,3454926591,CA 3454926592,3455017471,US 3455017472,3455017727,GB 3455017728,3455035391,US 3455035392,3455035903,AU 3455035904,3455096831,US 3455096832,3455097855,EC 3455097856,3455109119,US 3455109120,3455111167,HN 3455111168,3455115263,SR 3455115264,3455126527,US 3455126528,3455126783,MX 3455126784,3455132159,US 3455132160,3455133695,BO 3455133696,3455320063,US 3455320064,3455322111,FR 3455322112,3455328255,US 3455328256,3455329279,DO 3455329280,3455330815,US 3455330816,3455331327,ES 3455331328,3455333887,US 3455333888,3455334399,NL 3455334400,3455357951,US 3455357952,3455358975,BB 3455358976,3455359231,US 3455359232,3455359487,ES 3455359488,3455418367,US 3455418368,3455418879,KY 3455418880,3455421439,US 3455421440,3455421951,BE 3455421952,3455453439,US 3455453440,3455453695,HT 3455453696,3455551999,US 3455552000,3455552255,EC 3455552256,3455566079,US 3455566080,3455566335,EC 3455566336,3455582207,US 3455582208,3455583743,SG 3455583744,3455584255,NL 3455584256,3455584767,GB 3455584768,3455588351,US 3455588352,3455588863,BE 3455588864,3455589119,FR 3455589120,3455589375,US 3455589376,3455589631,BE 3455589632,3455592191,US 3455592192,3455592447,IE 3455592448,3455592703,KR 3455592704,3455594239,US 3455594240,3455594495,DE 3455594496,3455594751,TW 3455594752,3455595519,US 3455595520,3455595775,KR 3455595776,3455596031,FR 3455596032,3455596543,CH 3455596544,3455596799,NL 3455596800,3455597311,US 3455597312,3455597567,FR 3455597568,3455598847,US 3455598848,3455599103,NO 3455599104,3455599359,US 3455599360,3455599615,MX 3455599616,3455600127,TW 3455600128,3455600639,GB 3455600640,3455600895,US 3455600896,3455601151,GB 3455601152,3455601407,US 3455601408,3455601919,GB 3455601920,3455602175,US 3455602176,3455602687,GB 3455602688,3455616511,US 3455616512,3455616767,CA 3455616768,3455617279,US 3455617280,3455619071,GB 3455619072,3455619839,US 3455619840,3455620095,GB 3455620096,3455621631,US 3455621632,3455622143,GB 3455622144,3455624191,US 3455624192,3455624447,FR 3455624448,3455627519,US 3455627520,3455628287,DK 3455628288,3455628543,BE 3455628544,3455628799,CA 3455628800,3455630847,GB 3455630848,3455631103,US 3455631104,3455631359,GB 3455631360,3455632639,ES 3455632640,3455632895,US 3455632896,3455633407,GB 3455633408,3455634431,US 3455634432,3455635455,DE 3455635456,3455635711,US 3455635712,3455635967,FR 3455635968,3455636223,DE 3455636224,3455636479,CA 3455636480,3455637759,US 3455637760,3455638271,GB 3455638272,3455638527,BE 3455638528,3455639551,US 3455639552,3455639807,IT 3455639808,3455640063,US 3455640064,3455640319,CA 3455640320,3455640575,GB 3455640576,3455640831,US 3455640832,3455641087,GB 3455641088,3455641343,NL 3455641344,3455641599,GB 3455641600,3455642879,US 3455642880,3455643135,FR 3455643136,3455644159,US 3455644160,3455644415,HK 3455644416,3455644927,US 3455644928,3455645439,GB 3455645440,3455645695,JP 3455645696,3455645951,BE 3455645952,3455646719,FR 3455646720,3455646975,SE 3455646976,3455647231,GB 3455647232,3455647487,HK 3455647488,3455647743,IT 3455647744,3455713279,US 3455713280,3455778815,CA 3455778816,3455871999,US 3455872000,3455872255,ZM 3455872256,3455903967,US 3455903968,3455903983,HK 3455903984,3456303103,US 3456303104,3456311295,JP 3456311296,3456360447,US 3456360448,3456364543,BG 3456364544,3456892927,US 3456892928,3456958463,CA 3456958464,3457551871,US 3457551872,3457552127,CA 3457552128,3457553407,US 3457553408,3457553663,CA 3457553664,3457554175,US 3457554176,3457554431,CA 3457554432,3457555711,US 3457555712,3457555967,CA 3457555968,3457564927,US 3457564928,3457565183,CA 3457565184,3457575167,US 3457575168,3457575423,CA 3457575424,3457577727,US 3457577728,3457578239,CA 3457578240,3457580543,US 3457580544,3457580799,CA 3457580800,3457582591,US 3457582592,3457582847,CA 3457582848,3457592319,US 3457592320,3457592575,CA 3457592576,3457595391,US 3457595392,3457595903,CA 3457595904,3457596671,US 3457596672,3457597695,CA 3457597696,3457598207,US 3457598208,3457598463,CA 3457598464,3457600511,US 3457600512,3457600767,CA 3457600768,3457683967,US 3457683968,3457684991,CA 3457684992,3457859839,US 3457859840,3457860095,CA 3457860096,3457892351,US 3457892352,3457892607,IN 3457892608,3458039807,US 3458039808,3458043903,CA 3458043904,3458195455,US 3458195456,3458196479,SG 3458196480,3458233343,US 3458233344,3458234367,CA 3458234368,3458813951,US 3458813952,3458818047,CA 3458818048,3458820095,US 3458820096,3458820351,CA 3458820352,3458820863,US 3458820864,3458821119,JM 3458821120,3458821887,US 3458821888,3458822143,CA 3458822144,3459055615,US 3459055616,3459121151,CA 3459121152,3459186687,US 3459186688,3459252223,CA 3459252224,3459256831,US 3459256832,3459257087,CO 3459257088,3459257343,US 3459257344,3459258367,AW 3459258368,3459259391,CL 3459259392,3459264767,US 3459264768,3459265023,VE 3459265024,3459266559,US 3459266560,3459267327,AG 3459267328,3459267583,AI 3459267584,3459267839,AG 3459267840,3459268095,DM 3459268096,3459268607,AG 3459268608,3459273727,US 3459273728,3459274751,CL 3459274752,3459277823,US 3459277824,3459278847,AW 3459278848,3459285503,US 3459285504,3459286271,CL 3459286272,3459287807,US 3459287808,3459288063,CL 3459288064,3459290111,US 3459290112,3459290623,CL 3459290624,3459295231,US 3459295232,3459296255,KR 3459296256,3459310591,US 3459310592,3459310847,KY 3459310848,3459312639,US 3459312640,3459312671,MX 3459312672,3459312767,US 3459312768,3459312895,MX 3459312896,3459325951,US 3459325952,3459326207,VE 3459326208,3459326463,SZ 3459326464,3459327487,CA 3459327488,3459327999,CO 3459328000,3459329023,CL 3459329024,3459330047,VE 3459330048,3459334399,US 3459334400,3459334655,CA 3459334656,3459335423,US 3459335424,3459335679,VE 3459335680,3459335935,DO 3459335936,3459336191,VE 3459336192,3459336447,MX 3459336448,3459336703,US 3459336704,3459336959,LK 3459336960,3459337215,AW 3459337216,3459337471,CO 3459337472,3459337727,VE 3459337728,3459337983,MX 3459337984,3459338239,US 3459338240,3459338495,SV 3459338496,3459339263,PH 3459339264,3459339519,ID 3459339520,3459339775,US 3459339776,3459340031,ID 3459340032,3459340287,VE 3459340288,3459340543,MX 3459340544,3459340799,FM 3459340800,3459341055,SK 3459341056,3459341311,MX 3459341312,3459341567,TW 3459341568,3459341823,US 3459341824,3459342079,IL 3459342080,3459342335,LK 3459342336,3459342591,VE 3459342592,3459342847,BY 3459342848,3459343103,VE 3459343104,3459343359,BR 3459343360,3459343615,CA 3459343616,3459344127,OM 3459344128,3459345663,US 3459345664,3459345919,OM 3459345920,3459346431,US 3459346432,3459346687,LK 3459346688,3459346943,US 3459346944,3459347455,PR 3459347456,3459347711,US 3459347712,3459348223,PR 3459348224,3459348479,AG 3459348480,3459348735,CO 3459348736,3459348991,BW 3459348992,3459349503,IT 3459349504,3459350527,US 3459350528,3459352575,VE 3459352576,3459352831,US 3459352832,3459353087,FM 3459353088,3459353343,US 3459353344,3459354623,CO 3459354624,3459357183,NI 3459357184,3459357439,VE 3459357440,3459357695,HT 3459357696,3459357951,SV 3459357952,3459358207,TG 3459358208,3459358719,PR 3459358720,3459358975,VE 3459358976,3459359999,US 3459360000,3459360511,VE 3459360512,3459362815,US 3459362816,3459364863,CO 3459364864,3459366911,AR 3459366912,3459367167,VE 3459367168,3459367423,US 3459367424,3459368703,VE 3459368704,3459368959,US 3459368960,3459371007,MX 3459371008,3459373055,PE 3459373056,3459373311,US 3459373312,3459375103,CL 3459375104,3459376127,VE 3459376128,3459448831,US 3459448832,3459449087,PR 3459449088,3459450623,CA 3459450624,3459450879,US 3459450880,3459455487,CA 3459455488,3459455743,US 3459455744,3459456511,CA 3459456512,3459456767,US 3459456768,3459457279,CA 3459457280,3459457535,US 3459457536,3459457791,CA 3459457792,3459512319,US 3459512320,3459513855,CA 3459513856,3459592191,US 3459592192,3459596287,CA 3459596288,3459615743,US 3459615744,3459615999,CA 3459616000,3459616255,DM 3459616256,3459616767,US 3459616768,3459617999,CA 3459618000,3459618000,ID 3459618001,3459620863,CA 3459620864,3459624959,US 3459624960,3459629055,BM 3459629056,3459631103,US 3459633152,3459686399,US 3459686400,3459688479,NL 3459688480,3459689215,US 3459689216,3459689471,NL 3459689472,3459731455,US 3459731456,3459735551,CA 3459735552,3459745535,US 3459745536,3459745791,IT 3459745792,3459848959,US 3459848960,3459849215,FR 3459849216,3459874303,US 3459874304,3459874559,GB 3459874560,3460104703,US 3460104704,3460105215,MX 3460105216,3460114431,US 3460114432,3460116479,SR 3460116480,3460161535,US 3460161536,3460165631,PR 3460165632,3460374527,US 3460374528,3460375551,MX 3460375552,3460453631,US 3460453632,3460453887,BS 3460453888,3460507647,US 3460507648,3460507903,MX 3460507904,3460761599,US 3460763648,3460794367,US 3460796416,3460878335,US 3460878336,3460878591,CA 3460878592,3460880383,US 3460882432,3460893439,US 3460893440,3460893695,IT 3460893696,3460894463,US 3460894464,3460894719,JP 3460894720,3460895231,US 3460895232,3460895487,BE 3460895488,3460896255,US 3460896256,3460896511,ZA 3460896512,3460896767,ES 3460896768,3460897023,FR 3460897024,3460897279,GB 3460897280,3460899327,US 3460899328,3460899583,ZA 3460899584,3460901375,US 3460901376,3460901631,SE 3460901632,3460907263,US 3460907264,3460907519,SG 3460907520,3460908287,US 3460908288,3460908543,FI 3460908544,3460908799,US 3460908800,3460910335,IE 3460910336,3460910591,US 3460910592,3460910847,IE 3460910848,3460912127,US 3460912128,3460912383,IT 3460912384,3460912639,FR 3460912640,3460912895,ES 3460912896,3460916223,US 3460916224,3460916479,CH 3460916480,3460916735,GB 3460916736,3460916991,AR 3460916992,3460917759,US 3460917760,3460918015,CA 3460918016,3460918271,US 3460918272,3460918527,NL 3460918528,3460918783,US 3460918784,3460919039,JP 3460919040,3460919295,NL 3460919296,3460920319,US 3460920320,3460920575,IT 3460920576,3460920831,BE 3460920832,3460921343,US 3460921344,3460921599,DE 3460921600,3460921855,AU 3460921856,3460924671,US 3460924672,3460925183,GB 3460925184,3460925695,US 3460925696,3460925951,ES 3460925952,3460926207,US 3460926208,3460926463,GB 3460926464,3460926719,US 3460926720,3460926975,DE 3460926976,3460927231,US 3460927232,3460929023,BE 3460929024,3460929279,US 3460929280,3460929535,DE 3460929536,3460929791,GB 3460929792,3460930047,DK 3460930048,3460931583,US 3460931584,3460931839,SE 3460931840,3460932095,DE 3460932096,3460932351,GB 3460932352,3460932607,FR 3460932608,3460932863,US 3460932864,3460933119,GB 3460933120,3460933887,US 3460933888,3460934143,DE 3460934144,3460934911,US 3460934912,3460935167,SG 3460935168,3460935679,US 3460935680,3460935935,FI 3460935936,3460936191,FR 3460936192,3460936447,US 3460936448,3460936703,GB 3460936704,3460936959,IT 3460936960,3460937215,DE 3460937216,3460937471,FR 3460937472,3460937727,US 3460937728,3460937983,DK 3460937984,3460938239,IE 3460938240,3460938495,DE 3460938496,3460939263,US 3460939264,3460939519,HK 3460939520,3460941567,US 3460941568,3460941823,AU 3460941824,3460942079,US 3460942080,3460942335,GB 3460942336,3460943359,US 3460943360,3460943615,ID 3460943616,3460943871,HK 3460943872,3460944895,US 3460944896,3460945151,DE 3460945152,3460945663,US 3460945664,3460945919,GB 3460945920,3460946687,US 3460946688,3460946943,DE 3460946944,3460947455,US 3460947456,3460947711,DE 3460947712,3460947967,SE 3460947968,3460950271,US 3460950272,3460950527,DE 3460950528,3460951295,US 3460951296,3460951551,GB 3460951552,3460952319,US 3460952320,3460952575,GB 3460952576,3460952831,ES 3460952832,3460953855,US 3460953856,3460954111,GB 3460954112,3460954623,US 3460954624,3460954879,DE 3460954880,3460955135,LU 3460955136,3461021695,US 3461021696,3461031935,CA 3461031936,3461032191,US 3461032192,3461087231,CA 3461087232,3461330943,US 3461330944,3461331199,SG 3461331200,3461331711,US 3461331712,3461331967,SG 3461331968,3461332223,US 3461332224,3461332479,SG 3461332480,3461332735,US 3461332736,3461332991,SG 3461332992,3461356543,US 3461356544,3461357567,AS 3461357568,3461408767,US 3461410816,3461414911,CA 3461414912,3461441535,US 3461443584,3461462015,US 3461462016,3461462271,AU 3461462272,3461462527,NL 3461462528,3461462783,US 3461462784,3461463039,SG 3461463040,3461507071,US 3461509120,3461513727,US 3461513728,3461513983,BF 3461513984,3461514495,US 3461514496,3461514751,QA 3461514752,3461515775,US 3461515776,3461516031,CA 3461516032,3461516287,US 3461516288,3461516543,IL 3461516544,3461548031,US 3461550080,3461556223,US 3461558272,3461580799,US 3461582848,3461808127,US 3461808128,3461873663,CA 3461873664,3461897727,US 3461897728,3461897983,CA 3461897984,3461905407,US 3461905408,3461905663,CA 3461905664,3461940735,US 3461940736,3461940991,CA 3461940992,3461948159,US 3461948160,3461948415,CA 3461948416,3461948927,US 3461948928,3461949183,CA 3461949184,3461949695,US 3461949696,3461950207,CA 3461950208,3461950719,US 3461950720,3461951231,CA 3461951232,3461953535,US 3461953536,3461953791,CA 3461953792,3461968127,US 3461968128,3461968383,CA 3461968384,3461970431,US 3461970432,3461970687,CA 3461970688,3461972223,US 3461972224,3461972479,CA 3461972480,3461977855,US 3461977856,3461978111,CA 3461978112,3461992703,US 3461992704,3461992959,CA 3461992960,3462000895,US 3462000896,3462001151,CA 3462001152,3462001919,US 3462001920,3462002431,CA 3462002432,3462148607,US 3462148608,3462148863,CA 3462148864,3462163967,US 3462163968,3462164223,CA 3462164224,3462168319,US 3462168320,3462168575,CA 3462168576,3462169599,US 3462169600,3462169855,CA 3462169856,3462170623,US 3462170624,3462171135,CA 3462171136,3462171391,US 3462171392,3462171647,CA 3462171648,3462173695,US 3462173696,3462173951,CA 3462173952,3462174463,US 3462174464,3462174719,CA 3462174720,3462179839,US 3462179840,3462180095,CA 3462180096,3462181375,US 3462181376,3462181887,CA 3462181888,3462194175,US 3462194176,3462194431,CA 3462194432,3462231039,US 3462231040,3462231295,CA 3462231296,3462231807,US 3462231808,3462232063,CA 3462232064,3462268415,US 3462268416,3462268671,CA 3462268672,3462290175,US 3462290176,3462290431,CA 3462290432,3462314239,US 3462314240,3462314495,CA 3462314496,3462321407,US 3462321408,3462321663,CA 3462321664,3462321919,US 3462321920,3462322175,CA 3462322176,3462323711,US 3462323712,3462323967,CA 3462323968,3462339071,US 3462339072,3462339583,CA 3462339584,3462340607,US 3462340608,3462340863,CA 3462340864,3462350847,US 3462350848,3462351103,CA 3462351104,3462593791,US 3462593792,3462594559,GN 3462594560,3462633471,US 3462633472,3462633727,SG 3462633728,3462633823,US 3462633824,3462633855,SG 3462633856,3462633983,US 3462633984,3462634239,SG 3462634240,3462634751,US 3462634752,3462635007,SG 3462635008,3462635263,US 3462635264,3462635519,SG 3462635520,3462660295,US 3462660296,3462660303,GB 3462660304,3462661375,US 3462661376,3462661631,SG 3462661632,3463004159,US 3463004160,3463006207,CO 3463006208,3463032319,US 3463032320,3463032831,PR 3463032832,3463043071,US 3463043072,3463044095,ES 3463044096,3463089151,US 3463089152,3463090175,CA 3463090176,3463116799,US 3463116800,3463118847,CO 3463118848,3463156735,US 3463156736,3463157759,BO 3463157760,3463176447,US 3463176448,3463176703,CW 3463176704,3463184383,US 3463184384,3463194623,CA 3463194624,3463198719,US 3463198720,3463213311,CA 3463213312,3463215103,US 3463215104,3463243775,CA 3463243776,3463245055,US 3463245056,3463249663,CA 3463249664,3463518207,US 3463518208,3463520255,NL 3463520256,3463708671,US 3463708672,3463774207,CA 3463774208,3464108031,US 3464108032,3464108287,DE 3464108288,3464127999,US 3464128000,3464128255,DE 3464128256,3464129535,US 3464129536,3464130047,DE 3464130048,3464167679,US 3464167680,3464169215,CA 3464169216,3464169471,US 3464169472,3464171775,CA 3464171776,3464172031,US 3464172032,3464173567,CA 3464173568,3464173823,US 3464173824,3464175103,CA 3464175104,3464175359,US 3464175360,3464180735,CA 3464180736,3464200703,US 3464200704,3464200959,AU 3464200960,3464201215,NZ 3464201216,3464201471,JP 3464201472,3464201727,GR 3464201728,3464201983,EG 3464201984,3464202239,ES 3464202240,3464202495,CA 3464202496,3464202751,FR 3464202752,3464203007,IT 3464203008,3464203263,SE 3464203264,3464203519,DE 3464203520,3464204799,US 3464204800,3464205311,NL 3464205312,3464205567,SE 3464205568,3464205823,VE 3464205824,3464205951,AF 3464205952,3464206079,UZ 3464206080,3464206207,TJ 3464206208,3464206335,KG 3464206336,3464206463,KZ 3464206464,3464206591,TM 3464206592,3464206719,LA 3464206720,3464206847,MN 3464206848,3464206975,LK 3464206976,3464207103,BD 3464207104,3464207231,MM 3464207232,3464207359,PG 3464207360,3464207487,TZ 3464207488,3464207615,MG 3464207616,3464207743,AO 3464207744,3464207871,NE 3464207872,3464207999,MR 3464208000,3464208127,SN 3464208128,3464208255,TN 3464208256,3464208383,DZ 3464208384,3464216575,CA 3464216576,3464243199,US 3464245248,3464340479,US 3464340480,3464341503,CA 3464341504,3464342287,US 3464342288,3464342295,VN 3464342296,3464349695,US 3464349696,3464351743,CA 3464351744,3464384511,US 3464384512,3464388607,CA 3464388608,3464391935,US 3464391936,3464392191,CA 3464392192,3464394751,US 3464394752,3464395007,LC 3464395008,3464395775,VC 3464395776,3464396031,LC 3464396032,3464396799,VC 3464396800,3464421631,US 3464421632,3464421887,CA 3464421888,3464426495,US 3464426496,3464426751,GD 3464426752,3464428543,US 3464428800,3464429311,US 3464429312,3464429567,CA 3464429568,3464548351,US 3464548352,3464548607,AG 3464548608,3464548863,LC 3464548864,3464549119,KN 3464549120,3464549375,VG 3464549376,3464549727,AG 3464549728,3464549759,KN 3464549760,3464550143,AG 3464550144,3464550399,LC 3464550400,3464626175,US 3464626176,3464626687,CA 3464626688,3464627967,US 3464627968,3464628735,CA 3464628736,3464628991,US 3464628992,3464630271,CA 3464630272,3464631295,US 3464631296,3464639487,CA 3464639488,3464639743,US 3464639744,3464642047,CA 3464642048,3464642559,US 3464642560,3464642815,CA 3464642816,3464643071,US 3464643072,3464647935,CA 3464647936,3464648191,US 3464648192,3464648703,CA 3464648704,3464649215,US 3464649216,3464650239,CA 3464650240,3464664319,US 3464664320,3464684543,CA 3464684544,3464684799,BL 3464684800,3464688383,CA 3464688384,3464688639,US 3464688640,3464691711,CA 3464691712,3464740863,US 3464740864,3464744959,PH 3464744960,3464769535,US 3464769536,3464773631,CA 3464773632,3464782079,US 3464782080,3464782335,GB 3464782336,3464785151,US 3464785152,3464785407,AR 3464785408,3464802303,US 3464802304,3464806399,CA 3464806400,3465154559,US 3465154560,3465158655,BS 3465158656,3465177087,US 3465177088,3465179135,PE 3465179136,3465412607,US 3465412608,3465412863,HK 3465412864,3465462783,US 3465462784,3465463039,GB 3465463040,3465466495,US 3465466496,3465466527,GB 3465466528,3465468159,US 3465468160,3465468415,GB 3465468416,3465510911,US 3465510912,3465543679,JP 3465543680,3465962495,US 3465962496,3465962751,CA 3465962752,3466067967,US 3466067968,3466068223,CA 3466068224,3466069055,US 3466069056,3466069087,CA 3466069088,3466069343,US 3466069344,3466069375,CA 3466069376,3466069447,US 3466069448,3466069455,CA 3466069456,3466071807,US 3466071808,3466072063,CA 3466072064,3466072431,US 3466072432,3466072439,CA 3466072440,3466072775,US 3466072776,3466072783,CA 3466072784,3466072831,US 3466072832,3466073087,CA 3466073088,3466158079,US 3466158080,3466166271,PA 3466166272,3466290687,US 3466290688,3466290943,CH 3466290944,3466296575,US 3466296576,3466296831,GB 3466296832,3466313727,US 3466313728,3466317823,CA 3466317824,3466489855,US 3466489856,3466490111,CA 3466490112,3466558207,US 3466558208,3466558463,EC 3466558464,3466560255,US 3466560256,3466560511,GH 3466560512,3466714111,US 3466714112,3466714367,JP 3466714368,3466734847,US 3466734848,3466735103,RU 3466735104,3466756095,US 3466756096,3466772479,CA 3466772480,3466846207,US 3466846208,3466854399,CA 3466854400,3466860799,US 3466860800,3466861311,FR 3466861312,3466901503,US 3466901504,3466903551,DE 3466903552,3466907647,US 3466907648,3466909695,DE 3466909696,3466914303,US 3466914304,3466914559,FR 3466914560,3466929407,US 3466929408,3466929663,IT 3466929664,3466937663,US 3466937664,3466937669,DE 3466937670,3466937670,US 3466937671,3466937727,DE 3466937728,3466938807,US 3466938808,3466938811,GB 3466938812,3466958079,US 3466958080,3466958335,CA 3466958336,3467051007,US 3467051008,3467068927,CA 3467068928,3467069439,US 3467069440,3467116543,CA 3467116544,3467378687,US 3467378688,3467444223,CA 3467444224,3467554815,US 3467554816,3467567103,CA 3467567104,3467706367,US 3467706368,3467902975,CA 3467902976,3467964415,US 3467964416,3467968511,CA 3467968512,3468034047,US 3468034048,3468036095,GB 3468036096,3468036351,BE 3468036352,3468036607,DE 3468036608,3468036863,ES 3468036864,3468037375,DE 3468037376,3468037887,US 3468037888,3468038143,IE 3468038144,3468038655,FR 3468038656,3468038911,NL 3468038912,3468039167,SE 3468039168,3468039423,FR 3468039424,3468041215,US 3468041216,3468041471,FI 3468041472,3468041727,US 3468041728,3468041983,TW 3468041984,3468042495,US 3468042496,3468042751,AT 3468042752,3468045055,US 3468045056,3468045311,DE 3468045312,3468045823,US 3468045824,3468046079,NO 3468046080,3468046335,ZA 3468046336,3468046591,FR 3468046592,3468046847,US 3468046848,3468047103,IT 3468047104,3468047359,US 3468047360,3468047615,DE 3468047616,3468048383,US 3468048384,3468048639,FR 3468048640,3468049407,US 3468049408,3468049663,GB 3468049664,3468049919,US 3468049920,3468050175,IT 3468050176,3468050431,US 3468050432,3468050687,SE 3468050688,3468052479,US 3468052480,3468052735,ES 3468052736,3468052991,GB 3468052992,3468053759,US 3468053760,3468054015,CH 3468054016,3468054271,DE 3468054272,3468055551,US 3468055552,3468055807,IT 3468055808,3468056575,US 3468056576,3468056831,NO 3468056832,3468057599,US 3468057600,3468057855,IL 3468057856,3468058687,US 3468058688,3468058719,ES 3468058720,3468059647,US 3468059648,3468059903,FR 3468059904,3468060159,DE 3468060160,3468060671,FR 3468060672,3468061695,US 3468061696,3468061951,JP 3468061952,3468062463,US 3468062464,3468062719,AT 3468062720,3468063231,NL 3468063232,3468063487,US 3468063488,3468063743,BE 3468063744,3468063999,US 3468064000,3468064255,HK 3468064256,3468064767,US 3468064768,3468065023,DE 3468065024,3468065279,US 3468065280,3468065535,DE 3468065536,3468068095,US 3468068096,3468068351,MC 3468068352,3468068863,US 3468068864,3468069631,CA 3468069632,3468081407,US 3468081408,3468081663,DE 3468081664,3468081919,AT 3468081920,3468082431,US 3468082432,3468082687,NO 3468082688,3468083967,US 3468083968,3468084223,AU 3468084224,3468084735,US 3468084736,3468084991,SG 3468084992,3468085759,US 3468085760,3468086015,ID 3468086016,3468087807,US 3468087808,3468088063,SG 3468088064,3468091391,US 3468091392,3468091647,NL 3468091648,3468093695,US 3468093696,3468093951,DE 3468093952,3468095231,US 3468095232,3468095487,SE 3468095488,3468096511,US 3468096512,3468096767,NO 3468096768,3468099327,US 3468099328,3468099583,FR 3468099584,3468127743,US 3468127744,3468128255,IN 3468128256,3468296191,US 3468296192,3468361727,CA 3468361728,3468443647,US 3468443648,3468460031,CA 3468460032,3468468223,BM 3468468224,3468545791,US 3468545792,3468546047,SG 3468546048,3468598527,US 3468598528,3468598783,SG 3468598784,3468599039,NL 3468599040,3468599295,SG 3468599296,3468619007,US 3468619008,3468619263,CA 3468619264,3468623871,US 3468623872,3468656639,CA 3468656640,3469055743,US 3469055744,3469055999,CA 3469056000,3469070335,US 3469070336,3469070591,CA 3469070592,3469176319,US 3469176320,3469176575,MX 3469176576,3469186303,US 3469186304,3469186559,MX 3469186560,3469859583,US 3469859584,3469859839,CA 3469859840,3469893631,US 3469893632,3469901823,CA 3469901824,3469989887,US 3469989888,3469990399,CA 3469990400,3470131199,US 3470131200,3470135295,AG 3470135296,3470137343,LC 3470137344,3470139391,VG 3470139392,3470151807,US 3470151808,3470151871,CA 3470151872,3470151935,US 3470151936,3470152191,EG 3470152192,3470188111,US 3470188112,3470188115,CA 3470188116,3470192639,US 3470192640,3470194927,CA 3470194928,3470194935,US 3470194936,3470196735,CA 3470196736,3470458879,US 3470458880,3470475263,KR 3470475264,3470509311,US 3470509312,3470509567,CA 3470509568,3470558207,US 3470558208,3470559231,HK 3470559232,3470573567,US 3470573568,3470575615,CA 3470575616,3470610431,US 3470610432,3470614527,AR 3470614528,3470646591,US 3470646592,3470646599,CN 3470646600,3470646831,US 3470646832,3470646847,IL 3470646848,3470651391,US 3470651392,3470655487,CA 3470655488,3470671871,US 3470671872,3470680063,CA 3470680064,3470744063,US 3470744064,3470744575,CA 3470744576,3470745855,US 3470745856,3470746111,CA 3470746112,3470749951,US 3470749952,3470750207,CA 3470750208,3470752767,US 3470752768,3470753023,CO 3470753024,3470754047,US 3470754304,3470754559,PE 3470754560,3470755839,US 3470755840,3470756095,MU 3470756096,3470761983,US 3470761984,3470767871,CA 3470767872,3470768127,IE 3470768128,3470770175,CA 3470770176,3470778367,US 3470786560,3470794751,US 3470794752,3470802943,PA 3470802944,3470884863,US 3470884864,3470885887,HK 3470885888,3471057919,US 3471057920,3471058943,VE 3471058944,3471059455,US 3471059456,3471060223,ES 3471060224,3471060991,US 3471060992,3471061247,NL 3471061248,3471061503,US 3471061504,3471061759,NL 3471061760,3471262719,US 3471262720,3471263743,EC 3471263744,3471265791,CO 3471265792,3471276031,US 3471276032,3471278079,BB 3471278080,3471529215,US 3471529216,3471529983,CA 3471529984,3471558655,US 3471558656,3471560703,CA 3471560704,3471570943,US 3471570944,3471572991,CA 3471572992,3472375807,US 3472375808,3472392191,PR 3472392192,3472408575,CA 3472408576,3472721919,US 3472721920,3472723967,CA 3472723968,3473039359,US 3473039360,3473040639,BM 3473040640,3473040895,US 3473040896,3473041407,BM 3473041408,3473043455,US 3473047552,3473067007,US 3473067008,3473068031,CA 3473068032,3473276927,US 3473276928,3473342463,CA 3473342464,3473755391,US 3473755392,3473755647,HN 3473755648,3473765887,US 3473765888,3473766399,EC 3473766400,3473786111,US 3473786112,3473786127,PR 3473786128,3473901055,US 3473901056,3473901311,EC 3473901312,3473917439,US 3473917440,3473917695,PR 3473917696,3474053119,US 3474053120,3474055167,PE 3474055168,3474193407,US 3474193408,3474193663,PH 3474193664,3474193919,US 3474193920,3474194431,PH 3474194432,3474391039,US 3474391040,3474456575,CA 3474456576,3474463231,US 3474463232,3474463487,GB 3474463488,3474464255,US 3474464256,3474464767,GB 3474464768,3474548223,US 3474548224,3474548479,JP 3474548480,3475112191,US 3475112192,3475113215,CA 3475113216,3475115007,US 3475115008,3475120127,CA 3475120128,3475124223,US 3475124224,3475243007,CA 3475243008,3475310847,US 3475310848,3475311103,DE 3475311104,3475358719,US 3475358720,3475358975,GB 3475358976,3475589887,US 3475589888,3475590143,EC 3475590144,3475670015,US 3475670016,3475670271,AG 3475670272,3475670527,AI 3475670528,3475670783,LC 3475670784,3475670847,DM 3475670848,3475671039,AG 3475671040,3475681279,US 3475681280,3475685375,HN 3475685376,3475879279,US 3475879280,3475879287,TT 3475879288,3475882767,US 3475882768,3475882783,FR 3475882784,3475882799,US 3475882800,3475882815,FR 3475882816,3475885951,US 3475885952,3475885983,CA 3475885984,3475897471,US 3475897472,3475897503,FR 3475897504,3475910847,US 3475910848,3475910879,SG 3475910880,3475912703,US 3475912704,3475912959,SG 3475912960,3475915327,US 3475915328,3475915359,JP 3475915360,3475916543,US 3475916544,3475916799,HK 3475916800,3475918287,US 3475918288,3475918303,HK 3475918304,3475931135,US 3475931136,3475939327,HK 3475939328,3475996671,US 3475996672,3476029439,CA 3476029440,3476111359,US 3476111360,3476111871,CA 3476111872,3476348927,US 3476348928,3476349183,CA 3476349184,3476447231,US 3476447232,3476455423,CA 3476455424,3476881407,US 3476881408,3476946943,CA 3476946944,3477854719,US 3477854720,3477854975,CA 3477854976,3478114303,US 3478114304,3478118399,PE 3478118400,3478192127,US 3478192128,3478257663,CA 3478257664,3478261775,US 3478261776,3478261791,SG 3478261792,3478274823,US 3478274824,3478274831,GB 3478274832,3478275983,US 3478275984,3478275999,GB 3478276000,3478286591,US 3478286592,3478286847,GB 3478286848,3478288607,US 3478288608,3478288615,GB 3478288616,3478288639,US 3478288640,3478288895,GB 3478288896,3478372351,US 3478372352,3478380543,MX 3478380544,3478831103,US 3478847488,3479207935,US 3479207936,3479240703,CA 3479240704,3479568383,US 3479568384,3479633919,CA 3479633920,3479896063,US 3479896064,3479956479,CA 3479956480,3479956735,US 3479956736,3479961599,CA 3479961600,3480223743,US 3480223744,3480256511,CA 3480256512,3480284159,US 3480284160,3480284671,CA 3480284672,3480444927,US 3480444928,3480449023,CA 3480453120,3480551423,US 3480551424,3480551679,JP 3480551680,3480551935,DE 3480551936,3480552191,GB 3480552192,3480552447,US 3480552448,3480552703,CH 3480552704,3480552959,US 3480552960,3480553215,AT 3480553216,3480553471,US 3480553472,3480553727,SG 3480553728,3480553983,HK 3480553984,3480554239,US 3480554240,3480554495,GB 3480554496,3480554751,SG 3480554752,3480555263,US 3480555264,3480555519,NO 3480555520,3480555775,FR 3480555776,3480556287,SG 3480556288,3480556543,HK 3480556544,3480557055,US 3480557056,3480557311,HK 3480557312,3480557567,US 3480557568,3480557823,JP 3480557824,3480558079,CA 3480558080,3480558591,US 3480558592,3480558847,DO 3480558848,3480559359,US 3480559360,3480559615,IT 3480559616,3480560895,US 3480560896,3480561151,BR 3480561152,3480561919,US 3480561920,3480562175,JP 3480562176,3480564735,US 3480564736,3480564991,DE 3480564992,3480567039,US 3480567040,3480567551,GB 3480567552,3480568319,US 3480568320,3480568575,HK 3480568576,3480569599,US 3480569600,3480569855,HK 3480569856,3480570111,US 3480570112,3480570367,FR 3480570368,3480570623,ES 3480570624,3480570879,JP 3480570880,3480571391,CH 3480571392,3480571647,BE 3480571648,3480575231,US 3480575232,3480575487,IL 3480575488,3480575743,US 3480575744,3480577023,IT 3480577024,3480580607,US 3480580608,3480580863,SE 3480580864,3480581119,DK 3480581120,3480581631,US 3480581632,3480581887,CL 3480581888,3480582143,NO 3480582144,3480582399,US 3480582400,3480582655,RU 3480582656,3480583423,MX 3480583424,3480588799,US 3480588800,3480589055,SE 3480589056,3480591103,US 3480591104,3480591359,ZA 3480591360,3480591615,US 3480591616,3480592127,ID 3480592128,3480592383,NO 3480592384,3480592639,CH 3480592640,3480592895,IE 3480592896,3480593151,SG 3480593152,3480593407,DK 3480593408,3480593663,SG 3480593664,3480593919,CN 3480593920,3480594175,ZA 3480594176,3480594431,BE 3480594432,3480595711,US 3480595712,3480595967,TH 3480595968,3480596991,SG 3480596992,3480597247,US 3480597248,3480598271,AU 3480598272,3480598527,FR 3480598528,3480599039,AU 3480599040,3480599295,JP 3480599296,3480599551,CA 3480599552,3480599807,SG 3480599808,3480600575,US 3480600576,3480601087,DE 3480601088,3480601343,BE 3480601344,3480601599,AU 3480601600,3480601855,GB 3480601856,3480602111,FR 3480602112,3480602879,US 3480602880,3480603647,IT 3480603648,3480603903,BE 3480603904,3480604159,HK 3480604160,3480604671,ES 3480604672,3480604927,IL 3480604928,3480605183,GB 3480605184,3480605439,MX 3480605440,3480605695,PH 3480605696,3480605951,MX 3480605952,3480606207,PH 3480606208,3480606463,MX 3480606464,3480606719,BE 3480606720,3480606975,GR 3480606976,3480607231,US 3480607232,3480607487,IT 3480607488,3480610303,US 3480610304,3480610559,ES 3480610560,3480611327,US 3480611328,3480611583,JP 3480611584,3480611839,MX 3480611840,3480612095,BR 3480612096,3480612351,LU 3480612352,3480613631,DE 3480613632,3480839423,US 3480839424,3480839935,GB 3480839936,3480907263,US 3480907264,3480907775,FR 3480907776,3480968191,US 3480968192,3480968447,AU 3480968448,3481169151,US 3481169152,3481169407,NZ 3481169408,3481665535,US 3481665536,3481731071,CA 3481731072,3481812991,US 3481812992,3481829375,CA 3481829376,3481934591,US 3481934592,3481934847,CH 3481934848,3481958271,US 3481958272,3481958399,NL 3481958400,3481959020,US 3481959021,3481959021,GB 3481959022,3481964575,US 3481964576,3481964579,IE 3481964580,3481993791,US 3481993792,3481993799,CA 3481993800,3481994239,US 3481994240,3481994751,CA 3481994752,3481995007,US 3481995008,3481995263,CA 3481995264,3481996031,US 3481996032,3481996287,CA 3481996288,3481996543,US 3481996544,3481997311,CA 3481997312,3481997567,US 3481997568,3481998591,CA 3481998592,3481998847,AG 3481998848,3481999103,US 3481999104,3481999359,CA 3481999360,3481999615,US 3481999616,3482001663,CA 3482001664,3482001919,US 3482001920,3482002175,CA 3482002176,3482002431,US 3482002432,3482003455,CA 3482003456,3482004479,US 3482004480,3482006015,CA 3482006016,3482007551,US 3482007552,3482008063,CA 3482008064,3482008319,US 3482008320,3482011135,CA 3482011136,3482011647,US 3482011648,3482012159,CA 3482012160,3482012927,US 3482012928,3482013951,CA 3482013952,3482014207,US 3482014208,3482014719,CA 3482014720,3482014863,US 3482014864,3482014879,CA 3482014880,3482016255,US 3482016256,3482016767,CA 3482016768,3482017023,US 3482017024,3482017279,CA 3482017280,3482017535,US 3482017536,3482017791,CA 3482017792,3482018047,US 3482018048,3482018303,CA 3482018304,3482019327,US 3482019328,3482019583,CA 3482019584,3482020607,US 3482020608,3482020863,CA 3482020864,3482021119,US 3482021120,3482022143,CA 3482022144,3482022911,US 3482022912,3482024703,CA 3482024704,3482024959,US 3482024960,3482025215,CA 3482025216,3482025471,US 3482025472,3482028543,CA 3482028544,3482028799,US 3482028800,3482029311,CA 3482029312,3482029567,US 3482029568,3482032895,CA 3482032896,3482033151,US 3482033152,3482033663,CA 3482033664,3482033919,US 3482033920,3482034431,CA 3482034432,3482035199,US 3482035200,3482035711,CA 3482035712,3482035967,US 3482035968,3482036223,CA 3482036224,3482036479,US 3482036480,3482036735,CA 3482036736,3482036991,US 3482036992,3482037247,CA 3482037248,3482037759,US 3482037760,3482038015,CA 3482038016,3482038271,US 3482038272,3482038783,CA 3482038784,3482039551,US 3482039552,3482040319,CA 3482040320,3482041087,US 3482041088,3482041343,CA 3482041344,3482041599,US 3482041600,3482041855,CA 3482041856,3482042111,US 3482042112,3482042367,CA 3482042368,3482043903,US 3482043904,3482044927,CA 3482044928,3482045183,US 3482045184,3482045695,CA 3482045696,3482046975,US 3482046976,3482047487,CA 3482047488,3482047743,US 3482047744,3482047999,CA 3482048000,3482048511,US 3482048512,3482048767,CA 3482048768,3482049791,US 3482049792,3482050559,CA 3482050560,3482051327,US 3482051328,3482051583,CA 3482051584,3482051839,US 3482051840,3482052863,CA 3482052864,3482053631,US 3482053632,3482053887,CA 3482053888,3482053999,US 3482054000,3482054015,CA 3482054016,3482054143,US 3482054144,3482054655,CA 3482054656,3482058239,US 3482058240,3482058495,CA 3482058496,3482583039,US 3482583040,3482632191,CA 3482632192,3482775551,US 3482775552,3482779647,PR 3482779648,3482910719,US 3482910720,3482927103,CA 3482927104,3483435007,US 3483435008,3483533311,CA 3483533312,3483631615,US 3483631616,3483697151,CA 3483697152,3483791359,US 3483791360,3483791623,PR 3483791624,3483791631,US 3483791632,3483791815,PR 3483791816,3483791823,US 3483791824,3483793919,PR 3483793920,3483794431,US 3483794432,3483795455,PR 3483795456,3483828223,US 3483828224,3483836415,CA 3483836416,3483877375,US 3483877376,3483893759,CA 3483893760,3484006911,US 3484006912,3484007167,AU 3484007168,3484013055,US 3484013056,3484013567,DE 3484013568,3484320767,US 3484321792,3484322047,PR 3484322048,3484325887,US 3484326912,3484327423,US 3484327424,3484327935,CA 3484327936,3484438527,US 3484438528,3484438783,ZM 3484438784,3484439039,US 3484439040,3484439295,GB 3484439296,3484439551,US 3484439552,3484439807,ZM 3484439808,3484450815,US 3484450816,3484451839,CA 3484451840,3484452095,US 3484452096,3484453631,CA 3484453632,3484453887,US 3484453888,3484455167,CA 3484455168,3484455423,US 3484455424,3484455679,CA 3484455680,3484455935,US 3484455936,3484456191,CA 3484456192,3484456703,US 3484456704,3484457727,CA 3484457728,3484457983,US 3484457984,3484458751,CA 3484458752,3484459007,US 3484459008,3484459775,CA 3484459776,3484460687,US 3484460688,3484460703,CA 3484460704,3484460735,US 3484460736,3484460751,CA 3484460752,3484460799,US 3484460800,3484461055,CA 3484461056,3484461823,US 3484461824,3484462079,CA 3484462080,3484462335,US 3484462336,3484462591,CA 3484462592,3484463359,US 3484463360,3484464127,CA 3484464128,3484464319,US 3484464320,3484464335,CA 3484464336,3484464895,US 3484464896,3484465151,CA 3484465152,3484465663,US 3484465664,3484465919,CA 3484465920,3484466175,US 3484466176,3484466431,CA 3484466432,3484466687,US 3484466688,3484468223,CA 3484468224,3484468479,US 3484468480,3484468991,CA 3484468992,3484469247,US 3484469248,3484469759,CA 3484469760,3484470015,US 3484470016,3484470527,CA 3484470528,3484471807,US 3484471808,3484472063,CA 3484472064,3484472319,US 3484472320,3484472575,CA 3484472576,3484472967,US 3484472968,3484472975,CA 3484472976,3484473343,US 3484473344,3484473599,CA 3484473600,3484473855,US 3484473856,3484474879,CA 3484474880,3484475135,US 3484475136,3484477183,CA 3484477184,3484477695,US 3484477696,3484477951,CA 3484477952,3484478719,US 3484478720,3484478975,CA 3484478976,3484479231,US 3484479232,3484479487,CA 3484479488,3484479743,US 3484479744,3484479999,CA 3484480000,3484480255,US 3484480256,3484481279,CA 3484481280,3484481535,US 3484481536,3484482047,CA 3484482048,3484482559,US 3484482560,3484483583,CA 3484483584,3484647423,US 3484647424,3484663807,CA 3484663808,3484762111,US 3484762112,3484778495,CA 3484778496,3484884991,US 3484884992,3484893183,CA 3484893184,3485220863,US 3485220864,3485229055,CA 3485229056,3485270015,US 3485278208,3485317119,US 3485317120,3485318143,IN 3485318144,3485327359,US 3485327360,3485335551,CA 3485335552,3485442047,US 3485446144,3485462527,US 3485462528,3485465343,VC 3485465344,3485465599,LC 3485465600,3485466623,VC 3485466624,3485597695,US 3485597696,3485695999,CA 3485696000,3485959423,US 3485959424,3485960191,CA 3485960192,3485960703,US 3485960704,3485960959,CA 3485960960,3485970431,US 3485970432,3485970687,CA 3485970688,3486023679,US 3486023680,3486031871,CA 3486031872,3486269439,US 3486269440,3486285823,JM 3486285824,3486302207,PR 3486302208,3486310399,CA 3486310400,3486580735,US 3486580736,3486580991,GB 3486580992,3486581503,DE 3486581504,3486581759,TW 3486581760,3486582015,GB 3486582016,3486582271,NO 3486582272,3486582527,BE 3486582528,3486582783,AU 3486582784,3486583039,DE 3486583040,3486583295,CH 3486583296,3486583807,US 3486583808,3486584063,KR 3486584064,3486584319,US 3486584320,3486584831,CA 3486584832,3486585343,US 3486585344,3486585599,PT 3486585600,3486586367,FR 3486586368,3486586623,NZ 3486586624,3486586879,US 3486586880,3486587135,AU 3486587136,3486587391,FR 3486587392,3486587647,NL 3486587648,3486587903,CL 3486587904,3486588415,GB 3486588416,3486588671,FR 3486588672,3486589951,US 3486589952,3486590207,IT 3486590208,3486590463,US 3486590464,3486591743,GB 3486591744,3486591999,CH 3486592000,3486592255,US 3486592256,3486592511,NL 3486592512,3486593023,NO 3486593024,3486593279,NL 3486593280,3486593791,DE 3486593792,3486594047,FR 3486594048,3486594303,DE 3486594304,3486594559,BE 3486594560,3486595071,US 3486595072,3486595327,DK 3486595328,3486595583,ID 3486595584,3486595839,PR 3486595840,3486596095,DK 3486596096,3486596351,NL 3486596352,3486596607,NO 3486596608,3486596863,US 3486596864,3486597119,GB 3486597120,3486597375,IE 3486597376,3486597631,IT 3486597632,3486597887,GB 3486597888,3486598655,US 3486598656,3486598911,BR 3486598912,3486599167,NO 3486599168,3486599423,SE 3486599424,3486599679,BR 3486599680,3486599935,US 3486599936,3486600447,BR 3486600448,3486601215,US 3486601216,3486601471,BE 3486601472,3486601727,US 3486601728,3486601983,BE 3486601984,3486602239,NZ 3486602240,3486603007,US 3486603008,3486603263,SG 3486603264,3486603519,US 3486603520,3486603775,JP 3486603776,3486604287,US 3486604288,3486604543,BE 3486604544,3486605055,US 3486605056,3486605311,ES 3486605312,3486605567,NL 3486605568,3486606079,US 3486606080,3486606335,MY 3486606336,3486606591,US 3486606592,3486606847,FI 3486606848,3486607359,US 3486607360,3486607615,JP 3486607616,3486607871,US 3486607872,3486608127,PH 3486608128,3486608383,GB 3486608384,3486609151,US 3486609152,3486609663,HK 3486609664,3486609919,AU 3486609920,3486610175,SG 3486610176,3486610431,US 3486610432,3486610687,SE 3486610688,3486610943,NL 3486610944,3486611455,US 3486611456,3486611711,SG 3486611712,3486611967,US 3486611968,3486612223,HK 3486612224,3486612479,SG 3486612480,3486612735,US 3486612736,3486612991,DE 3486612992,3486613247,US 3486613248,3486613759,GB 3486613760,3486614015,ES 3486614016,3486614271,US 3486614272,3486614527,GB 3486614528,3486614783,US 3486614784,3486615039,FR 3486615040,3486615295,BE 3486615296,3486615551,PH 3486615552,3486616319,US 3486616320,3486616831,NO 3486616832,3486617599,US 3486617600,3486617855,CH 3486617856,3486618111,AU 3486618112,3486618367,NO 3486618368,3486618623,ES 3486618624,3486618879,BE 3486618880,3486619135,FR 3486619136,3486619391,SG 3486619392,3486619647,BE 3486619648,3486619903,CA 3486619904,3486620159,US 3486620160,3486620415,SE 3486620416,3486620671,HK 3486620672,3486620927,US 3486620928,3486621183,NL 3486621184,3486621439,US 3486621440,3486621695,NL 3486621696,3486621951,FI 3486621952,3486622207,ES 3486622208,3486622463,ZA 3486622464,3486622719,GB 3486622720,3486622975,MX 3486622976,3486623231,DE 3486623232,3486623487,JP 3486623488,3486623743,DE 3486623744,3486623999,US 3486624000,3486624255,PH 3486624256,3486624511,SG 3486624512,3486624767,SE 3486624768,3486625023,ES 3486625024,3486625279,US 3486625280,3486625535,SE 3486625536,3486625791,NO 3486625792,3486626047,NL 3486626048,3486626303,FI 3486626304,3486626559,IL 3486626560,3486627071,US 3486627072,3486627327,JP 3486627328,3486627583,US 3486627584,3486627839,BE 3486627840,3486628095,BW 3486628096,3486628351,ZA 3486628352,3486628607,US 3486628608,3486628863,NO 3486628864,3486629375,PT 3486629376,3486629631,US 3486629632,3486629887,CL 3486629888,3486630143,SE 3486630144,3486631679,JP 3486631680,3486631935,ID 3486631936,3486632447,JP 3486632448,3486632703,US 3486632704,3486632959,JP 3486632960,3486633215,IT 3486633216,3486633471,GB 3486633472,3486633983,US 3486633984,3486634239,HK 3486634240,3486634495,US 3486634496,3486634751,KR 3486634752,3486635007,CH 3486635008,3486635263,DK 3486635264,3486635519,FR 3486635520,3486635775,ES 3486635776,3486636031,IL 3486636032,3486636287,ES 3486636288,3486636543,NL 3486636544,3486636799,TW 3486636800,3486637055,DE 3486637056,3486637311,US 3486637312,3486637823,BE 3486637824,3486638335,SE 3486638336,3486638591,FR 3486638592,3486638847,US 3486638848,3486639103,DK 3486639104,3486639359,BE 3486639360,3486639615,SG 3486639616,3486640127,US 3486640128,3486640383,BE 3486640384,3486640639,GB 3486640640,3486642175,US 3486642176,3486642431,BR 3486642432,3486642687,PT 3486642688,3486642943,DK 3486642944,3486646271,US 3486646272,3486662655,CA 3486662656,3486688255,US 3486688256,3486688511,GB 3486688512,3486699519,US 3486699520,3486699775,CA 3486699776,3486702591,US 3486702592,3486702847,CA 3486702848,3487039487,US 3487039488,3487105023,CA 3487105024,3487172095,US 3487172096,3487172351,MX 3487172352,3487188991,US 3487188992,3487189247,GB 3487189248,3487189503,DK 3487189504,3487197183,US 3487197184,3487197439,DK 3487197440,3487216383,US 3487216384,3487216639,SE 3487216640,3487236095,US 3487236096,3487301631,CA 3487301632,3487706367,US 3487706368,3487706623,RU 3487706624,3487731199,US 3487731200,3487731455,CN 3487731456,3487766527,US 3487766528,3487768575,CA 3487768576,3487842303,US 3487842304,3487858687,CA 3487858688,3487859199,KY 3487859200,3487861759,BM 3487861760,3487862015,KY 3487862016,3487875071,BM 3487875072,3487891455,US 3487891456,3487907839,CA 3487907840,3487969791,US 3487969792,3487970047,KW 3487970048,3488014335,US 3488014336,3488022527,CA 3488022528,3488049151,US 3488051200,3488071679,US 3488071680,3488072703,CA 3488072704,3488079871,US 3488079872,3488083967,CA 3488083968,3488088063,US 3488088064,3488104447,IL 3488104448,3488112639,US 3488112640,3488120831,CA 3488120832,3488350207,US 3488350208,3488415743,CA 3488415744,3488615935,US 3488615936,3488616191,AU 3488616192,3488901887,US 3488901888,3488902143,CA 3488902144,3488910335,US 3488910336,3488911359,CA 3488911360,3488940031,US 3488940032,3488956415,CA 3488956416,3488989183,US 3488989184,3489005567,CA 3489005568,3489058047,US 3489058048,3489058303,GB 3489058304,3489136639,US 3489136640,3489153535,MX 3489153536,3489154047,HN 3489154048,3489155583,MX 3489155584,3489156607,AR 3489156608,3489157119,MX 3489157632,3489158399,MX 3489158400,3489158655,AR 3489159168,3489160191,MX 3489160192,3489161215,AR 3489161216,3489162495,MX 3489162496,3489162751,GT 3489163264,3489167615,MX 3489167616,3489167871,PE 3489167872,3489168127,MX 3489168128,3489168383,PE 3489168384,3489169407,AR 3489169408,3489185791,MX 3489185792,3489193983,CL 3489193984,3489267711,MX 3489267712,3489341439,US 3489341440,3489345535,CA 3489345536,3489398783,US 3489398784,3489399039,IT 3489399040,3489464319,US 3489464320,3489529855,CA 3489529856,3489562623,US 3489566720,3489575935,US 3489575936,3489576959,CN 3489576960,3489577215,US 3489577216,3489578239,CN 3489578240,3489685503,US 3489685504,3489687551,BB 3489687552,3489717759,US 3489717760,3489718015,PR 3489718016,3489718271,US 3489718272,3489718527,DM 3489718528,3489719039,LC 3489719040,3489719551,AG 3489719552,3489719807,VG 3489719808,3489720063,DM 3489720064,3489720319,LC 3489720320,3489738751,US 3489738752,3489740799,PH 3489740800,3489753151,US 3489753152,3489753167,PR 3489753168,3489775103,US 3489775104,3489775359,BO 3489775360,3489969151,US 3489969152,3489969663,PR 3489969664,3490228735,US 3490228736,3490229247,CO 3490229248,3490263039,US 3490263040,3490265087,CO 3490265088,3490265343,EC 3490265344,3490267135,CO 3490267136,3490488319,US 3490488320,3490489343,PR 3490489344,3490702847,US 3490702848,3490703103,AS 3490703104,3490703615,US 3490703616,3490703871,PR 3490703872,3490786047,US 3490786048,3490786303,PR 3490786304,3490879231,US 3490879232,3490879487,PR 3490879488,3491381247,US 3491381248,3491389439,BM 3491389440,3491476991,US 3491476992,3491478527,VI 3491478528,3491637247,US 3491637248,3491637759,CO 3491637760,3491651583,US 3491651584,3491659775,VI 3491659776,3491743743,US 3491743744,3491745791,CO 3491745792,3491969023,US 3491969024,3491970047,PR 3491970048,3492151295,US 3492151296,3492167679,CA 3492167680,3492669951,US 3492669952,3492671487,PA 3492671488,3492807155,US 3492807156,3492807159,SE 3492807160,3492812759,US 3492812760,3492812763,JP 3492812764,3492845823,US 3492845824,3492846079,CH 3492846080,3492864767,US 3492864768,3492865023,CA 3492865024,3492867327,US 3492867328,3492867583,GB 3492867584,3492877954,US 3492877955,3492877955,CA 3492877956,3492893951,US 3492893952,3492893969,GB 3492893970,3492893971,US 3492893972,3492893983,GB 3492893984,3492894015,US 3492894016,3492894207,GB 3492894208,3492897023,US 3492897024,3492897279,GB 3492897280,3492912127,US 3492912128,3492912383,GB 3492912384,3492921855,US 3492921856,3492922111,VI 3492922112,3492933375,US 3492933376,3492933376,CA 3492933377,3492933377,CH 3492933378,3492933631,CA 3492933632,3492939022,US 3492939023,3492939023,DE 3492939024,3492957695,US 3492957696,3492958207,VI 3492958208,3492960255,US 3492960256,3492960511,ES 3492960512,3492968191,US 3492968192,3492968447,GB 3492968448,3492969471,US 3492969472,3492969727,VI 3492969728,3492998911,US 3492998912,3492999136,GB 3492999137,3492999137,US 3492999138,3492999167,GB 3492999168,3493009151,US 3493009152,3493009205,MX 3493009206,3493009206,US 3493009207,3493009407,MX 3493009408,3493039359,US 3493039360,3493039615,AR 3493039616,3493073151,US 3493073152,3493073407,BO 3493073408,3493073663,US 3493073664,3493073919,BO 3493073920,3493081599,US 3493081600,3493082623,PY 3493082624,3493089023,US 3493089024,3493089279,CM 3493089280,3493140223,US 3493140224,3493140479,DE 3493140480,3493244927,US 3493244928,3493249023,PR 3493249024,3493866495,US 3493866496,3493867519,VG 3493867520,3493881855,US 3493881856,3493882879,CA 3493882880,3493900371,US 3493900372,3493900375,GB 3493900376,3493901023,US 3493901024,3493901031,HK 3493901032,3493901311,US 3493901312,3493901567,AE 3493901568,3493936127,US 3493936128,3493937151,CA 3493937152,3493939199,US 3493939200,3493941247,CA 3493941248,3493980159,US 3493980160,3493981183,CA 3493981184,3493982207,US 3493982208,3493984255,CA 3493984256,3493986303,US 3493986304,3493987327,CA 3493987328,3493990399,US 3493990400,3493991423,CA 3493991424,3493998591,US 3493998592,3494000639,AI 3494000640,3494002687,US 3494003712,3494004735,CA 3494004736,3494009855,US 3494009856,3494010879,CA 3494010880,3494014975,US 3494014976,3494017023,CA 3494017024,3494043647,US 3494043648,3494045695,CA 3494045696,3494049791,US 3494049792,3494051839,CA 3494051840,3494075391,US 3494075392,3494076415,CA 3494076416,3494085887,US 3494086656,3494088703,US 3494088704,3494090751,CA 3494090752,3494094847,US 3494094848,3494095871,CA 3494095872,3494121471,US 3494121472,3494122495,CA 3494122496,3494125567,US 3494125568,3494126591,CA 3494126592,3494135807,US 3494135808,3494136831,CA 3494136832,3494139903,US 3494139904,3494141951,CA 3494141952,3494143999,US 3494144000,3494145023,CA 3494145024,3494163455,US 3494164480,3494168575,US 3494168576,3494170623,CA 3494170624,3494181631,US 3494181632,3494181887,SN 3494181888,3494184959,US 3494184960,3494187007,CA 3494187008,3494192383,US 3494192384,3494192639,JP 3494192640,3494197247,US 3494197248,3494198271,CA 3494198272,3494244351,US 3494244352,3494246399,CA 3494246400,3494247423,US 3494247424,3494251519,CA 3494252544,3494262783,US 3494262784,3494264831,CA 3494264832,3494271999,US 3494272000,3494273023,KN 3494273024,3494275071,US 3494275072,3494277119,CA 3494277120,3494291455,US 3494293504,3494302719,US 3494302720,3494303743,CA 3494303744,3494310911,US 3494310912,3494311935,CA 3494311936,3494316031,US 3494316032,3494317055,CA 3494317056,3494336511,US 3494336512,3494337535,CA 3494337536,3494342655,US 3494342656,3494344703,CA 3494344704,3494359039,US 3494359040,3494360063,CA 3494360064,3494361087,US 3494361088,3494362111,CA 3494362112,3494368255,US 3494368256,3494369279,CN 3494369280,3494380543,US 3494380544,3494381567,CA 3494381568,3494386687,US 3494387712,3494402559,US 3494402560,3494402815,GB 3494402816,3494410239,US 3494410240,3494412287,CA 3494412288,3494422527,US 3494422528,3494425599,CA 3494425600,3494432767,US 3494432768,3494433791,CA 3494433792,3494437887,US 3494437888,3494438143,GP 3494438144,3494438399,DM 3494438400,3494438655,KN 3494438656,3494438911,DM 3494438912,3494455295,US 3494455296,3494456319,CA 3494456320,3494459391,US 3494459392,3494460415,CA 3494460416,3494464511,US 3494464512,3494465535,CA 3494465536,3494510591,US 3494510592,3494512639,CA 3494512640,3494516735,US 3494516736,3494517759,CA 3494517760,3494540031,US 3494540032,3494540287,UG 3494540288,3494563839,US 3494563840,3494565887,CA 3494565888,3494594559,US 3494594560,3494595583,CA 3494595584,3494605823,US 3494605824,3494606847,CA 3494606848,3494610943,US 3494610944,3494611967,CA 3494611968,3494615039,US 3494617088,3494624255,US 3494624256,3494625279,CA 3494625280,3494627327,US 3494627328,3494628351,BM 3494628352,3494646783,US 3494647808,3494651903,US 3494651904,3494652927,CA 3494652928,3494660095,US 3494660096,3494661119,CA 3494661120,3494664191,US 3494665216,3494668287,US 3494668288,3494670335,CA 3494670336,3494700031,US 3494700032,3494701055,CA 3494701056,3494709759,US 3494710272,3494712319,US 3494712320,3494712575,CA 3494712576,3494727679,US 3494727680,3494729727,CA 3494729728,3494730751,US 3494730752,3494731775,CA 3494731776,3494743039,US 3494743040,3494744063,CA 3494744064,3494747135,US 3494747136,3494748159,CA 3494748160,3494749183,US 3494750208,3494757375,US 3494757376,3494758399,CA 3494758400,3494776831,US 3494776832,3494777855,CA 3494777856,3494785023,US 3494785024,3494787071,MF 3494787072,3494787327,CA 3494787328,3494787583,NG 3494787584,3494788095,CA 3494788096,3494788351,NG 3494788352,3494788607,LY 3494788608,3494789119,CA 3494789120,3494812671,US 3494813696,3494852607,US 3494852608,3494854655,CA 3494854656,3494862847,US 3494862848,3494863871,DM 3494863872,3494866943,US 3494866944,3494867967,CA 3494867968,3494874111,US 3494874112,3494874367,ES 3494874368,3494893567,US 3494893568,3494894591,CA 3494894592,3494917119,US 3494917120,3494917631,CA 3494917632,3494928383,US 3494928384,3494930431,CA 3494930432,3494938623,US 3494938624,3494939647,CA 3494940672,3494950655,US 3494950656,3494950911,PH 3494950912,3494964223,US 3494964224,3494965247,PR 3494965248,3494968319,US 3494968320,3494972415,CA 3494972416,3494979583,US 3494979584,3494981631,CA 3494981632,3495000063,US 3495000064,3495001087,CA 3495001088,3495006207,US 3495006208,3495007231,CA 3495007232,3495010303,US 3495010304,3495011327,KN 3495011328,3495012351,US 3495012352,3495014399,PR 3495014400,3495023615,US 3495023616,3495024639,CA 3495024640,3495057407,US 3495057408,3495059455,CA 3495059456,3495065599,US 3495065600,3495066623,CA 3495066624,3495076863,US 3495076864,3495077887,BM 3495077888,3495090175,US 3495090176,3495091199,KY 3495091200,3495098367,US 3495098368,3495100415,CA 3495100416,3495113727,US 3495114752,3495120895,US 3495120896,3495122943,AG 3495122944,3495153663,US 3495153664,3495155711,CA 3495155712,3495187199,US 3495187200,3495187455,IM 3495187456,3495192575,US 3495192576,3495193599,CA 3495193600,3495215103,US 3495215104,3495217151,VI 3495217152,3495219199,VC 3495219200,3495225855,US 3495225856,3495226111,GB 3495226112,3495251967,US 3495251968,3495254015,CA 3495254016,3495260159,US 3495260160,3495261183,CA 3495261184,3495271423,US 3495272192,3495285759,US 3495285760,3495288831,CA 3495288832,3495332863,US 3495332864,3495333887,CA 3495333888,3495349247,US 3495349248,3495350271,CA 3495350272,3495358463,US 3495358464,3495359487,CA 3495359488,3495367679,US 3495367680,3495368703,CA 3495368704,3495370239,US 3495370240,3495370495,RU 3495370496,3495370751,US 3495370752,3495372799,BS 3495372800,3495375871,US 3495375872,3495376895,CA 3495376896,3495399423,US 3495399424,3495400447,KN 3495400448,3495406335,US 3495406336,3495406591,LB 3495406592,3495412735,US 3495412736,3495413759,CA 3495413760,3495429119,US 3495429120,3495430143,CA 3495430144,3495440831,US 3495440832,3495440847,IN 3495440848,3495455743,US 3495455744,3495456767,CA 3495456768,3495463935,US 3495463936,3495464959,CA 3495464960,3495475199,US 3495475200,3495477247,CA 3495477248,3495478271,US 3495478272,3495479295,CA 3495479296,3495505919,US 3495505920,3495507967,CA 3495507968,3495515135,US 3495515136,3495516159,CA 3495516160,3495526399,US 3495526400,3495527423,CA 3495527424,3495544063,US 3495544064,3495544319,NG 3495544320,3495551999,US 3495552000,3495553023,BM 3495553024,3495576575,US 3495576576,3495577599,CA 3495577600,3495579647,US 3495579648,3495581695,CA 3495581696,3495583743,US 3495583744,3495585791,CA 3495585792,3495587839,US 3495587840,3495588863,MS 3495588864,3495618559,US 3495618560,3495619583,CA 3495619584,3495620607,US 3495620608,3495622655,CA 3495622656,3495651327,US 3495653376,3495654143,US 3495654144,3495654399,CA 3495654400,3495673855,US 3495673856,3495674879,MF 3495674880,3495675162,VG 3495675163,3495675163,US 3495675164,3495675391,VG 3495675392,3495688191,US 3495688192,3495689215,CA 3495689216,3495694335,US 3495694336,3495696383,CA 3495696384,3495703551,US 3495703552,3495704575,CA 3495704576,3495718911,US 3495718912,3495723007,CA 3495723008,3495724031,US 3495724032,3495727103,CA 3495727104,3495739391,US 3495739392,3495740415,CA 3495740416,3495749631,US 3495749632,3495749856,CA 3495749857,3495749861,RU 3495749862,3495750655,CA 3495750656,3495780351,US 3495782400,3495811071,US 3495812096,3495815167,US 3495815168,3495817215,CA 3495817216,3495828479,US 3495828480,3495829503,CA 3495829504,3495837695,US 3495837696,3495838463,CA 3495838464,3495847935,US 3495847936,3495849983,CA 3495849984,3495862271,US 3495862272,3495864319,CA 3495864320,3495864831,DM 3495864832,3495865343,MF 3495865344,3495866367,US 3495866368,3495867050,VC 3495867051,3495867051,LC 3495867052,3495867135,VC 3495867136,3495867391,LC 3495867392,3495868415,VC 3495868416,3495871487,US 3495871488,3495872511,CA 3495872512,3495881471,US 3495881472,3495881727,PA 3495881728,3495896063,US 3495896064,3495897087,PR 3495897088,3495930879,US 3495930880,3495931903,CA 3495931904,3495968767,US 3495968768,3495985151,CA 3495985152,3495988223,NI 3495988224,3495989247,GT 3495989248,3496034303,US 3496034304,3496050687,CA 3496050688,3496132607,US 3496132608,3496148991,CA 3496148992,3496181759,US 3496181760,3496189951,CA 3496189952,3496190519,US 3496190520,3496190527,CA 3496190528,3496190719,US 3496190720,3496190975,CA 3496190976,3496296447,US 3496296448,3496312831,CA 3496312832,3496468479,US 3496468480,3496476671,CA 3496476672,3496875263,US 3496875264,3496875519,BD 3496875520,3496878079,US 3496878080,3496882175,CA 3496882176,3496894463,US 3496894464,3496902655,CA 3496902656,3496946175,US 3496946176,3496946431,HK 3496946432,3496947711,US 3496947712,3496949759,JP 3496949760,3496951807,US 3496951808,3496959999,CA 3496960000,3497020415,US 3497020416,3497020671,IL 3497020672,3497066495,US 3497066496,3497082879,CA 3497082880,3497161735,US 3497161736,3497161743,MT 3497161744,3497161759,US 3497161760,3497161767,PT 3497161768,3497161775,MT 3497161776,3497161895,US 3497161896,3497161903,MT 3497161904,3497161935,US 3497161936,3497161943,MT 3497161944,3497162495,US 3497162496,3497162751,GB 3497162752,3497163007,NL 3497163008,3497163167,US 3497163168,3497163175,GB 3497163176,3497164799,US 3497164800,3497181183,CA 3497181184,3497410559,US 3497410560,3497431039,CA 3497431040,3497447423,US 3497447424,3497451519,CA 3497451520,3497664255,US 3497664256,3497664511,NL 3497664512,3497717759,US 3497717760,3497721855,CA 3497721856,3497775103,US 3497775104,3497779199,CA 3497779200,3497820159,US 3497820160,3497852927,CA 3497852928,3498254591,US 3498254592,3498254847,JM 3498254848,3498287103,US 3498287104,3498295295,JM 3498295296,3498509055,US 3498509056,3498509311,PR 3498509312,3498513151,US 3498513152,3498513407,CL 3498513408,3498513919,US 3498513920,3498514431,CL 3498514432,3498587135,US 3498587136,3498588159,NL 3498588160,3498599935,US 3498599936,3498600191,WS 3498600192,3498708991,US 3498708992,3498717183,JM 3498717184,3498760191,US 3498760192,3498761215,PR 3498761216,3498761727,US 3498761728,3498761983,PR 3498761984,3498812415,US 3498812416,3498812671,PF 3498812672,3499299327,US 3499299328,3499299583,WS 3499299584,3499403263,US 3499403264,3499403775,MW 3499403776,3499436031,US 3499436032,3499436287,DE 3499436288,3499450367,US 3499450368,3499451391,IN 3499451392,3499705343,US 3499705344,3499705855,TZ 3499705856,3499706367,MG 3499706368,3499986943,US 3499986944,3499988991,KY 3499988992,3500015615,US 3500015616,3500016383,AG 3500016384,3500016639,KN 3500016640,3500016895,AG 3500016896,3500017151,DM 3500017152,3500018943,AG 3500018944,3500019199,LC 3500019200,3500019455,AG 3500019456,3500019711,LC 3500019712,3500126207,US 3500126208,3500126463,SE 3500126464,3500126719,GB 3500126720,3500351487,US 3500351488,3500359679,JM 3500359680,3500613631,US 3500613632,3500614655,MZ 3500614656,3500689407,US 3500689408,3500689919,CL 3500689920,3500707327,US 3500707328,3500707839,CA 3500707840,3500728319,US 3500728320,3500736511,KY 3500736512,3500752895,US 3500752896,3500761087,KY 3500761088,3500807019,US 3500807020,3500807023,GB 3500807024,3500807195,US 3500807196,3500807199,GB 3500807200,3500807299,US 3500807300,3500807303,GB 3500807304,3500813219,US 3500813220,3500813223,GB 3500813224,3501183487,US 3501183488,3501183743,GB 3501183744,3501368831,US 3501368832,3501369087,NL 3501369088,3501376147,US 3501376148,3501376151,NL 3501376152,3501378047,US 3501378048,3501378303,DE 3501378304,3501522943,US 3501522944,3501588479,CA 3501588480,3502439167,US 3502439168,3502439423,PK 3502439424,3502470143,US 3502470144,3502471167,MX 3502471168,3502518783,US 3502518784,3502519295,LK 3502519296,3502541055,US 3502541056,3502541311,CA 3502541312,3502545663,US 3502545664,3502545919,BS 3502545920,3502683135,US 3502683136,3502683391,MC 3502683392,3502718719,US 3502718720,3502718975,CA 3502718976,3502993407,US 3502993408,3502993919,NL 3502993920,3503206399,US 3503206400,3503206911,CR 3503206912,3503250431,US 3503250432,3503250943,PK 3503250944,3503323135,US 3503323136,3503323647,KE 3503323648,3503386111,US 3503386112,3503386367,CH 3503386368,3503454719,US 3503454720,3503454975,AZ 3503454976,3503478783,US 3503478784,3503479039,DE 3503479040,3503738879,US 3503738880,3503740927,CO 3503740928,3503890431,US 3503890432,3503894527,CO 3503894528,3503990783,US 3503990784,3503992831,AE 3503992832,3504086015,US 3504086016,3504086527,LI 3504086528,3504136191,US 3504136192,3504138239,AZ 3504138240,3504193535,US 3504193536,3504194559,EC 3504194560,3504207871,US 3504207872,3504208127,CA 3504208128,3504223743,US 3504223744,3504223999,RO 3504224000,3504518399,US 3504518400,3504518655,CA 3504518656,3504521215,US 3504521216,3504521727,GU 3504521728,3504889343,US 3504889344,3504889855,PK 3504889856,3504922623,US 3504922624,3504923391,PH 3504923392,3504928687,US 3504928688,3504928695,IT 3504928696,3504932351,US 3504932352,3504932863,BD 3504932864,3505004543,US 3505004544,3505005823,PR 3505005824,3505006079,DO 3505006080,3505012735,PR 3505012736,3505112063,US 3505112064,3505112319,EC 3505112320,3505112575,US 3505112576,3505112831,EC 3505112832,3505119231,US 3505119232,3505119487,PH 3505119488,3505121023,US 3505121024,3505121279,PH 3505121280,3505270271,US 3505270272,3505270527,JM 3505270528,3505270783,HT 3505270784,3505416703,US 3505416704,3505417471,MX 3505417472,3505424383,US 3505424384,3505425407,PK 3505425408,3505474559,US 3505474560,3505474815,GU 3505474816,3505511679,US 3505511680,3505511935,RO 3505511936,3505661951,US 3505661952,3505662463,JM 3505662464,3505818623,US 3505818624,3505819647,BS 3505819648,3505999359,US 3505999360,3506000127,PR 3506000128,3506043135,US 3506043136,3506044927,PA 3506044928,3506231807,US 3506231808,3506232063,IN 3506232064,3506765823,US 3506765824,3506831359,CA 3506831360,3507012607,US 3507012608,3507012639,GR 3507012640,3507025407,US 3507025408,3507025663,IQ 3507025664,3507055103,US 3507055104,3507055359,CN 3507055360,3507060735,US 3507060736,3507060991,CN 3507060992,3507290111,US 3507290112,3507355647,AR 3507355648,3507427583,US 3507427584,3507427839,CA 3507427840,3507470335,US 3507470336,3507486719,CA 3507486720,3507585023,US 3507585024,3507598911,CA 3507598912,3507598943,US 3507598944,3507601407,CA 3507601408,3507748863,US 3507748864,3507749375,CA 3507749376,3507749631,US 3507749632,3507765247,CA 3507765248,3507809279,US 3507809280,3507809535,BG 3507809536,3508111359,US 3508111360,3508111615,CA 3508111616,3508114431,US 3508114432,3508114687,ID 3508114688,3508220927,US 3508220928,3508221951,KY 3508221952,3508222975,US 3508222976,3508223999,KY 3508224000,3508224255,BM 3508224256,3508243967,US 3508243968,3508244223,BM 3508244224,3508273407,US 3508273408,3508273663,MX 3508273664,3508278527,US 3508278528,3508278783,AU 3508278784,3508279039,US 3508279040,3508279295,VE 3508279296,3508279807,US 3508279808,3508280063,JP 3508280064,3508280319,TH 3508280320,3508280575,JP 3508280576,3508280831,TW 3508280832,3508281087,JP 3508281088,3508281343,KR 3508281344,3508281599,PH 3508281600,3508281855,NZ 3508281856,3508282111,US 3508282112,3508282367,HK 3508282368,3508282623,US 3508282624,3508282879,AU 3508282880,3508283135,US 3508283136,3508283391,HK 3508283392,3508283647,US 3508283648,3508283903,AU 3508283904,3508284159,MY 3508284160,3508284415,SG 3508284416,3508284671,AU 3508284672,3508286207,US 3508286208,3508286463,SE 3508286464,3508286719,HK 3508286720,3508288255,US 3508288256,3508288511,JP 3508288512,3508289023,US 3508289024,3508289279,AU 3508289280,3508289535,US 3508289536,3508289791,CA 3508289792,3508291327,US 3508291328,3508292095,GB 3508292096,3508292351,CH 3508292352,3508292863,US 3508292864,3508294143,DE 3508294144,3508295679,US 3508295680,3508295935,GB 3508295936,3508296959,US 3508296960,3508297215,CH 3508297216,3508297471,US 3508297472,3508297727,IT 3508297728,3508298239,US 3508298240,3508298495,DE 3508298496,3508298751,US 3508298752,3508299007,ES 3508299008,3508299263,BE 3508299264,3508299519,GB 3508299520,3508299775,US 3508299776,3508300031,SE 3508300032,3508300287,DE 3508300288,3508300543,US 3508300544,3508300799,FR 3508300800,3508303615,US 3508303616,3508303871,DE 3508303872,3508304383,US 3508304384,3508304639,DE 3508304640,3508306943,US 3508306944,3508307199,CH 3508307200,3508308991,US 3508308992,3508309247,BE 3508309248,3508310527,SE 3508310528,3508310783,DE 3508310784,3508311039,BE 3508311040,3508311295,NL 3508311296,3508311807,IE 3508311808,3508312063,US 3508312064,3508312319,NL 3508312320,3508312575,CH 3508312576,3508312831,US 3508312832,3508313343,DE 3508313344,3508313599,SE 3508313600,3508313855,DK 3508313856,3508314367,GB 3508314368,3508314623,US 3508314624,3508314879,DK 3508314880,3508315135,US 3508315136,3508315391,NO 3508315392,3508315647,US 3508315648,3508315903,FR 3508315904,3508316159,US 3508316160,3508316415,PT 3508316416,3508316671,GB 3508316672,3508316927,US 3508316928,3508317183,SE 3508317184,3508317439,US 3508317440,3508317695,DE 3508317696,3508317951,US 3508317952,3508318463,FI 3508318464,3508318719,LU 3508318720,3508318975,IT 3508318976,3508319487,IL 3508319488,3508319743,RU 3508319744,3508319999,CH 3508320000,3508320255,SE 3508320256,3508320767,US 3508320768,3508321791,BE 3508321792,3508322303,US 3508322304,3508322559,GB 3508322560,3508322815,FI 3508322816,3508323071,NO 3508323072,3508323327,US 3508323328,3508323583,NO 3508323584,3508323839,DE 3508323840,3508324095,FI 3508324096,3508324351,IT 3508324352,3508324607,CH 3508324608,3508324863,NO 3508324864,3508325119,GB 3508325120,3508325375,DE 3508325376,3508325631,US 3508325632,3508325887,ZA 3508325888,3508326399,SE 3508326400,3508326655,GB 3508326656,3508326911,ZA 3508326912,3508327167,IT 3508327168,3508327679,ES 3508327680,3508327935,US 3508327936,3508328447,NE 3508328448,3508328703,BE 3508328704,3508329471,IL 3508329472,3508329727,NL 3508329728,3508329983,US 3508329984,3508330495,SE 3508330496,3508331263,GB 3508331264,3508331519,BE 3508331520,3508332031,US 3508332032,3508332287,GB 3508332288,3508332543,GR 3508332544,3508332799,IE 3508332800,3508333055,NO 3508333056,3508333311,US 3508333312,3508333823,CH 3508333824,3508334591,US 3508334592,3508334847,AU 3508334848,3508335103,SG 3508335104,3508335359,MY 3508335360,3508335615,AU 3508335616,3508336127,JP 3508336128,3508336383,SG 3508336384,3508336639,HK 3508336640,3508336895,AU 3508336896,3508337151,JP 3508337152,3508337663,PH 3508337664,3508337919,KR 3508337920,3508338175,JP 3508338176,3508338431,US 3508338432,3508338687,KR 3508338688,3508404223,CA 3508404224,3508690943,US 3508690944,3508695039,CA 3508695040,3509144575,US 3509144576,3509144831,BR 3509144832,3509157887,US 3509157888,3509166079,CA 3509166080,3509215231,US 3509215232,3509223423,CA 3509223424,3509305599,US 3509305600,3509305615,GB 3509305616,3509346303,US 3509346304,3509350711,CA 3509350712,3509350719,US 3509350720,3509354495,CA 3509354496,3509387263,US 3509387264,3509420031,PE 3509420032,3509518847,US 3509518848,3509519103,CA 3509519104,3509519871,US 3509519872,3509520127,CA 3509520128,3509520895,US 3509520896,3509521151,CA 3509521152,3509521407,US 3509521408,3509521663,CA 3509521664,3509522431,US 3509522432,3509522687,KW 3509522688,3509522943,CA 3509522944,3509524479,US 3509524480,3509524735,CA 3509524736,3509524991,US 3509524992,3509525759,CA 3509525760,3509526527,US 3509526528,3509526783,CA 3509526784,3509527807,US 3509527808,3509528063,CA 3509528064,3509529087,US 3509529088,3509529215,CA 3509529216,3509530623,US 3509530624,3509532671,CA 3509532672,3509532927,US 3509532928,3509533439,CA 3509533440,3509534719,US 3509534720,3509535231,CA 3509535232,3509535487,US 3509535488,3509535999,CA 3509536000,3509536255,US 3509536256,3509536767,CA 3509536768,3509537279,US 3509537280,3509538303,CA 3509538304,3509538559,US 3509538560,3509538815,CA 3509538816,3509539071,US 3509539072,3509539327,CA 3509539328,3509539967,US 3509539968,3509540031,CA 3509540032,3509540607,US 3509540608,3509541503,CA 3509541504,3509541887,US 3509541888,3509542143,CA 3509542144,3509542911,US 3509542912,3509543167,CA 3509543168,3509543423,US 3509543424,3509543935,CA 3509543936,3509544191,US 3509544192,3509544447,CA 3509544448,3509544703,US 3509544704,3509544959,CA 3509544960,3509546095,US 3509546096,3509546111,CA 3509546112,3509546495,US 3509546496,3509547007,CA 3509547008,3509551615,US 3509551616,3509551871,CA 3509551872,3509552127,US 3509552128,3509552639,CA 3509552640,3509554431,US 3509554432,3509554959,CA 3509554960,3509555199,US 3509555200,3509555455,CA 3509555456,3509555711,US 3509555712,3509556735,CA 3509556736,3509557759,US 3509557760,3509558015,CA 3509558016,3509559039,US 3509559040,3509559295,KW 3509559296,3509559807,CA 3509559808,3509560063,US 3509560064,3509560319,CA 3509560320,3509560831,US 3509560832,3509561087,CA 3509561088,3509561343,US 3509561344,3509561599,CA 3509561600,3509561855,US 3509561856,3509562623,CA 3509562624,3509563391,US 3509563392,3509563903,CA 3509563904,3509564415,US 3509564416,3509564671,CA 3509564672,3509565183,US 3509565184,3509566463,CA 3509566464,3509567231,US 3509567232,3509569023,CA 3509569024,3509572351,US 3509572352,3509573375,CA 3509573376,3509573439,US 3509573440,3509573455,CA 3509573456,3509573631,US 3509573632,3509573887,CA 3509573888,3509574143,US 3509574144,3509575679,CA 3509575680,3509575935,US 3509575936,3509576191,CA 3509576192,3509576959,US 3509576960,3509577215,CA 3509577216,3509577983,US 3509577984,3509578239,CA 3509578240,3509579007,US 3509579008,3509579263,CA 3509579264,3509579519,US 3509579520,3509579775,CA 3509579776,3509580031,US 3509580032,3509580287,CA 3509580288,3509582335,US 3509582336,3509582847,CA 3509582848,3509583615,US 3509583616,3509583871,CA 3509583872,3509731327,US 3509731328,3509739519,CA 3509739520,3509828095,US 3509828096,3509828159,CA 3509828160,3509846015,US 3509846016,3509977087,CA 3509977088,3509993471,US 3509993472,3509997567,CA 3509997568,3510005759,US 3510005760,3510009343,CA 3510009344,3510240743,US 3510240744,3510240751,CA 3510240752,3510242303,US 3510242304,3510242559,OM 3510242560,3510245375,US 3510245376,3510245631,BD 3510245632,3510249471,US 3510249472,3510249983,QA 3510249984,3510251519,US 3510251520,3510252799,DO 3510252800,3510253311,US 3510253312,3510253567,NC 3510253568,3510254079,US 3510254080,3510254591,CA 3510254592,3510257663,US 3510257664,3510258175,CA 3510258176,3510261503,US 3510261504,3510261759,ZM 3510261760,3510263295,US 3510263296,3510263551,CA 3510263552,3510264063,US 3510264064,3510264319,UG 3510264320,3510265087,US 3510265088,3510265343,CA 3510265344,3510268415,US 3510268416,3510268671,CA 3510268672,3510268927,SY 3510268928,3510269951,US 3510269952,3510270719,LY 3510270720,3510270975,SY 3510270976,3510284287,US 3510284288,3510286335,SG 3510286336,3510288383,HK 3510288384,3510321151,US 3510321152,3510321663,VG 3510321664,3510321919,AG 3510321920,3510322175,KN 3510322176,3510323199,AG 3510323200,3510324223,KN 3510324224,3510325247,AI 3510325248,3510326271,AG 3510326272,3510327295,VG 3510327296,3510328319,AG 3510328320,3510328575,KN 3510328576,3510328831,MS 3510328832,3510329599,AG 3510329600,3510329855,MS 3510329856,3510331391,AG 3510331392,3510332415,DM 3510332416,3510332927,KN 3510332928,3510333183,LC 3510333184,3510333439,MS 3510333440,3510333951,KN 3510333952,3510334975,AG 3510334976,3510335231,KN 3510335232,3510335743,AI 3510335744,3510335999,VG 3510336000,3510337279,AG 3510337280,3510337535,LC 3510337536,3510470927,US 3510470928,3510470935,IL 3510470936,3510479791,US 3510479792,3510479799,IE 3510479800,3510546431,US 3510546432,3510550527,CA 3510550528,3510788447,US 3510788448,3510788479,GB 3510788480,3510844415,US 3510844416,3510844927,CA 3510844928,3510935551,US 3510935552,3510943743,CA 3510943744,3511140351,US 3511140352,3511156735,CA 3511156736,3511812095,US 3511812096,3511844863,CA 3511844864,3512012095,US 3512012096,3512012159,GB 3512012160,3512017407,US 3512017408,3512017663,BR 3512017664,3512019135,US 3512019136,3512019151,MX 3512019152,3512021503,US 3512021504,3512021759,GB 3512021760,3512024319,US 3512024320,3512024575,AU 3512024576,3512043519,US 3512043520,3512043775,FI 3512043776,3512052735,US 3512052736,3512052991,FI 3512052992,3512139775,US 3512139776,3512156159,CA 3512156160,3512172543,US 3512172544,3512176639,CA 3512176640,3512197119,US 3512197120,3512205311,CA 3512205312,3512205567,US 3512205568,3512205823,CL 3512205824,3512206079,AW 3512206080,3512206335,CL 3512206336,3512207103,HN 3512207104,3512207359,US 3512207360,3512209407,CO 3512209408,3512210943,US 3512210944,3512211199,CL 3512211200,3512211455,AR 3512211456,3512221695,US 3512221696,3512221759,AG 3512221760,3512221791,GP 3512221792,3512221951,AG 3512221952,3512222207,VG 3512222208,3512222271,AG 3512222272,3512222335,KN 3512222336,3512222463,AG 3512222464,3512222975,AI 3512222976,3512223743,AG 3512223744,3512225791,ZA 3512225792,3512227839,PR 3512227840,3512229887,ZW 3512229888,3512230143,VE 3512230144,3512230911,US 3512230912,3512231167,CL 3512231168,3512231423,US 3512231424,3512231679,CL 3512231680,3512231935,VE 3512231936,3512233215,US 3512233216,3512233471,CL 3512233472,3512233727,US 3512233728,3512233983,HN 3512233984,3512236031,ZA 3512236032,3512236287,US 3512236288,3512237311,MR 3512237312,3512237823,US 3512237824,3512238079,HN 3512238080,3512240127,AW 3512240128,3512241663,BS 3512241664,3512242175,CO 3512242176,3512242431,CL 3512242432,3512242687,VE 3512242688,3512244991,EG 3512244992,3512246015,IL 3512246016,3512246783,CL 3512246784,3512247039,US 3512247040,3512247295,NG 3512247296,3512248319,US 3512248320,3512248831,CO 3512248832,3512249087,CL 3512249088,3512249343,CO 3512249344,3512256511,IL 3512256512,3512258559,CL 3512258560,3512260607,US 3512260608,3512261631,GU 3512261632,3512262655,US 3512262656,3512263679,GT 3512263680,3512264703,VE 3512264704,3512267263,US 3512267264,3512268031,TG 3512268032,3512268543,US 3512268544,3512268799,PR 3512268800,3512269055,US 3512269056,3512269311,PR 3512269312,3512269567,US 3512269568,3512269823,HN 3512269824,3512270847,US 3512270848,3512336383,CA 3512336384,3512369151,US 3512369152,3512385535,CA 3512385536,3512397823,US 3512397824,3512401919,CA 3512401920,3512418303,US 3512418304,3512451071,CA 3512451072,3512459519,PR 3512459520,3512459775,US 3512459776,3512460031,PR 3512460032,3512460287,US 3512460288,3512460799,PR 3512460800,3512461055,US 3512461056,3512463103,PR 3512463104,3512463359,US 3512463360,3512464639,PR 3512464640,3512465151,US 3512465152,3512465407,PR 3512465408,3512465663,US 3512465664,3512465919,PR 3512465920,3512466175,US 3512466176,3512466687,PR 3512466688,3512466943,US 3512466944,3512467455,PR 3512467456,3512537599,US 3512537600,3512537855,CA 3512537856,3512551167,US 3512551168,3512551423,DE 3512551424,3512552191,US 3512552192,3512552447,NL 3512552448,3512553983,US 3512553984,3512554751,GB 3512554752,3512555775,US 3512555776,3512556031,IE 3512556032,3512556543,US 3512556544,3512556799,FR 3512556800,3512557055,US 3512557056,3512557311,DE 3512557312,3512557567,GB 3512557568,3512561919,US 3512561920,3512562175,JP 3512562176,3512564223,US 3512564224,3512564479,SG 3512564480,3512565247,US 3512565248,3512565503,PH 3512565504,3512573951,US 3512573952,3512574207,ID 3512574208,3512574719,US 3512574720,3512574975,SG 3512574976,3512576255,US 3512576256,3512576511,HK 3512576512,3512580607,US 3512580608,3512580863,HK 3512580864,3512581375,US 3512581376,3512582143,CN 3512582144,3512583423,US 3512583424,3512583679,BR 3512583680,3512591103,US 3512591104,3512591359,JP 3512591360,3512592383,US 3512592384,3512592895,GB 3512592896,3512593151,PH 3512593152,3512593279,GB 3512593280,3512593663,US 3512593664,3512593791,JP 3512593792,3512594175,US 3512594176,3512594431,MY 3512594432,3512647679,US 3512647680,3512655871,TT 3512655872,3512679511,US 3512679512,3512679515,HK 3512679516,3512680339,US 3512680340,3512680340,SG 3512680341,3512844287,US 3512844288,3512852479,CA 3512852480,3512931583,US 3512931584,3512931839,CA 3512931840,3512983551,US 3512983552,3512987647,AR 3512987648,3513188351,US 3513188352,3513204735,CA 3513204736,3513270271,US 3513270272,3513286655,CA 3513286656,3513294847,US 3513294848,3513303039,CA 3513303040,3513368575,US 3513368576,3513376767,CA 3513376768,3513475071,US 3513475072,3513483263,CA 3513499648,3513501183,US 3513501184,3513501439,PH 3513501440,3513778175,US 3513778176,3513794559,CA 3513794560,3514007551,US 3514007552,3514040319,CA 3514040320,3514367999,US 3514368000,3514433535,CA 3514433536,3514589439,US 3514589440,3514589695,GT 3514589696,3514590207,SV 3514590208,3514590719,NI 3514590720,3514591103,SV 3514591104,3514591487,US 3514591488,3514592255,NI 3514592256,3514593279,SV 3514593280,3514596863,US 3514596864,3514597375,SV 3514597376,3514721301,US 3514721302,3514721303,BZ 3514721304,3514721385,US 3514721386,3514721391,BZ 3514721392,3514723693,US 3514723694,3514723695,BZ 3514723696,3514723696,US 3514723697,3514723697,BZ 3514723698,3514724635,US 3514724636,3514724636,UA 3514724637,3514826751,US 3514826752,3514843135,CA 3514843136,3514993983,US 3514993984,3514993987,FR 3514993988,3514993991,DE 3514993992,3514994007,GB 3514994008,3514994023,DK 3514994024,3515211775,US 3515211776,3515219967,CA 3515219968,3515222271,US 3515222272,3515224831,TR 3515224832,3515301887,US 3515301888,3515318271,CA 3515318272,3515326463,US 3515334656,3515358975,US 3515358976,3515359231,MX 3515359232,3515596799,US 3515596800,3515613183,CA 3515613184,3515711487,US 3515711488,3515731967,CA 3515731968,3515736063,US 3515736064,3515744255,DE 3515744256,3515760639,CA 3515760640,3515844095,US 3515844096,3515844607,GB 3515844608,3515965439,US 3515965440,3515973631,CA 3515973632,3515990015,US 3515990016,3516006399,CA 3516006400,3516039167,US 3516039168,3516071935,CA 3516071936,3516139007,US 3516139008,3516139263,GB 3516139264,3516170239,US 3516170240,3516203007,CA 3516203008,3516334079,US 3516334080,3516342271,CA 3516342272,3516357631,US 3516357632,3516357887,MY 3516357888,3516358143,CA 3516358144,3516366847,US 3516366848,3516370943,CA 3516370944,3516514303,US 3516514304,3516530687,CA 3516530688,3516643083,US 3516643084,3516643087,PR 3516643088,3516899839,US 3516899840,3516900031,NG 3516900032,3516900063,US 3516900064,3516900095,NG 3516900096,3516900351,US 3516900352,3516900607,NG 3516900608,3516900863,US 3516900864,3516901119,NG 3516901120,3516902655,US 3516902656,3516902911,NG 3516902912,3516903167,US 3516903168,3516903423,NG 3516903424,3516907519,CA 3516907520,3517019135,US 3517019136,3517019391,HN 3517019392,3517021439,US 3517021440,3517021695,NI 3517021696,3517038591,US 3517038592,3517054975,CA 3517054976,3517095935,US 3517095936,3517100031,CA 3517100032,3517112319,US 3517112320,3517116159,CA 3517116160,3517116415,US 3517116416,3517120511,CA 3517120512,3517173759,US 3517173760,3517174783,IN 3517174784,3517233151,US 3517233152,3517235199,GU 3517235200,3517382655,US 3517382656,3517383167,CA 3517383168,3517383423,US 3517383424,3517384703,CA 3517384704,3517385407,US 3517385408,3517385439,CA 3517385440,3517385471,US 3517385472,3517385727,CA 3517385728,3517385983,US 3517385984,3517387263,CA 3517387264,3517387519,US 3517387520,3517387775,CA 3517387776,3517388031,US 3517388032,3517388799,CA 3517388800,3517389311,US 3517389312,3517389567,CA 3517389568,3517389823,US 3517389824,3517390335,CA 3517390336,3517390591,US 3517390592,3517391103,CA 3517391104,3517391359,US 3517391360,3517391615,CA 3517391616,3517391871,US 3517391872,3517392127,CA 3517392128,3517392383,US 3517392384,3517393407,CA 3517393408,3517394431,US 3517394432,3517394943,CA 3517394944,3517395199,US 3517395200,3517395455,CA 3517395456,3517396223,US 3517396224,3517396479,CA 3517396480,3517396751,US 3517396752,3517396767,CA 3517396768,3517397247,US 3517397248,3517397503,CA 3517397504,3517397759,US 3517397760,3517398015,CA 3517398016,3517398527,US 3517398528,3517399039,CA 3517399040,3517399807,US 3517399808,3517399871,CA 3517399872,3517400063,US 3517400064,3517400319,CA 3517400320,3517401855,US 3517401856,3517402367,CA 3517402368,3517402623,US 3517402624,3517402879,CA 3517402880,3517403647,US 3517403648,3517403903,CA 3517403904,3517404415,US 3517404416,3517404927,CA 3517404928,3517405183,US 3517405184,3517405439,CA 3517405440,3517405695,US 3517405696,3517406719,CA 3517406720,3517406975,US 3517406976,3517407231,CA 3517407232,3517407743,US 3517407744,3517407999,CA 3517408000,3517408255,US 3517408256,3517408511,CA 3517408512,3517409023,US 3517409024,3517409279,CA 3517409280,3517409791,US 3517409792,3517411071,CA 3517411072,3517411327,US 3517411328,3517412351,CA 3517412352,3517412607,US 3517412608,3517412863,CA 3517412864,3517413119,US 3517413120,3517414399,CA 3517414400,3517415167,US 3517415168,3517415423,CA 3517415424,3517416919,US 3517416920,3517416927,CA 3517416928,3517416959,US 3517416960,3517417471,CA 3517417472,3517418495,US 3517418496,3517419007,CA 3517419008,3517419519,US 3517419520,3517420031,CA 3517420032,3517420375,US 3517420376,3517420383,CA 3517420384,3517420799,US 3517420800,3517421567,CA 3517421568,3517421823,US 3517421824,3517422079,CA 3517422080,3517422847,US 3517422848,3517423359,CA 3517423360,3517423423,US 3517423424,3517423455,CA 3517423456,3517423487,US 3517423488,3517423519,CA 3517423520,3517423871,US 3517423872,3517424127,CA 3517424128,3517424767,US 3517424768,3517424831,CA 3517424832,3517425407,US 3517425408,3517425919,CA 3517425920,3517426751,US 3517426752,3517426815,CA 3517426816,3517426943,US 3517426944,3517427711,CA 3517427712,3517428735,US 3517428736,3517429503,CA 3517429504,3517430271,US 3517430272,3517430527,CA 3517430528,3517430687,US 3517430688,3517430719,CA 3517430720,3517432319,US 3517432320,3517433343,CA 3517433344,3517434111,US 3517434112,3517434367,CA 3517434368,3517435135,US 3517435136,3517435391,CA 3517435392,3517435647,US 3517435648,3517436415,CA 3517436416,3517436671,US 3517436672,3517436927,CA 3517436928,3517437183,US 3517437184,3517437439,CA 3517437440,3517437695,US 3517437696,3517437951,CA 3517437952,3517438207,US 3517438208,3517438463,CA 3517438464,3517438943,US 3517438944,3517439231,CA 3517439232,3517439743,US 3517439744,3517441279,CA 3517441280,3517441535,US 3517441536,3517442047,CA 3517442048,3517442175,US 3517442176,3517442207,CA 3517442208,3517442559,US 3517442560,3517442623,CA 3517442624,3517442815,US 3517442816,3517443583,CA 3517443584,3517444863,US 3517444864,3517445119,CA 3517445120,3517445631,US 3517445632,3517445887,CA 3517445888,3517446143,US 3517446144,3517446655,CA 3517446656,3517447167,US 3517447168,3517447679,CA 3517447680,3517447863,US 3517447864,3517447871,CA 3517447872,3517447935,US 3517447936,3517448191,CA 3517448192,3517546495,US 3517546496,3517562879,CA 3517562880,3517596927,US 3517596928,3517597183,IE 3517597184,3517597695,US 3517597696,3517597951,IE 3517597952,3517598207,US 3517598208,3517598463,IE 3517598464,3517602047,US 3517602048,3517602303,DE 3517602304,3517607935,US 3517607936,3517608191,DE 3517608192,3517608447,US 3517608448,3517608703,GB 3517608704,3517609727,US 3517609728,3517609743,AT 3517609744,3517610495,US 3517610496,3517611263,IE 3517611264,3517644799,US 3517644800,3517710335,CA 3517710336,3517718527,US 3517718528,3517726719,CA 3517726720,3517990911,US 3517990912,3517991423,CA 3517991424,3518056447,US 3518058496,3518062591,US 3518062592,3518066687,CA 3518066688,3518075647,US 3518075648,3518075903,AU 3518075904,3518076671,US 3518076672,3518076927,PA 3518076928,3518381055,US 3518381056,3518381311,IN 3518381312,3518431231,US 3518431232,3518439423,CA 3518439424,3518463999,US 3518464000,3518472191,CA 3518472192,3518762495,US 3518762496,3518762751,GB 3518762752,3518765311,US 3518765312,3518765567,CA 3518765568,3518912511,US 3518912512,3518912767,IN 3518912768,3518918143,US 3518918144,3518918399,IN 3518918400,3518919423,US 3518919424,3518919679,IN 3518919680,3519115263,US 3519119360,3519234047,US 3519234048,3519250431,CA 3519250432,3519340543,US 3519340544,3519344639,CA 3519344640,3519354909,US 3519354910,3519354910,BR 3519354911,3519381503,US 3519381504,3519397887,CA 3519397888,3519475711,US 3519475712,3519476223,BH 3519476224,3519477759,DE 3519477760,3519578367,US 3519578368,3519578623,NA 3519578624,3519578879,US 3519578880,3519579135,CA 3519579136,3519586303,US 3519586304,3519586559,GB 3519586560,3519590655,US 3519590656,3519590911,CA 3519590912,3519676415,US 3519676416,3519709183,CA 3519709184,3519723519,US 3519723520,3519724031,CA 3519724032,3519741951,US 3519741952,3519758335,ZA 3519758336,3519873023,US 3519873024,3519874559,CA 3519874560,3519875071,US 3519875072,3519877119,CA 3519877120,3519877167,US 3519877168,3519877183,CA 3519877184,3519877887,US 3519877888,3519878143,CA 3519878144,3519878271,US 3519878272,3519878303,CA 3519878304,3519878655,US 3519878656,3519878911,CA 3519878912,3519879727,US 3519879728,3519879735,CA 3519879736,3519879935,US 3519879936,3519880447,CA 3519880448,3519881983,US 3519881984,3519882495,CA 3519882496,3519882751,US 3519882752,3519884031,CA 3519884032,3519884287,US 3519884288,3519901695,CA 3519901696,3519930367,US 3519934464,3519938559,CA 3519938560,3520020479,US 3520020480,3520036863,CA 3520036864,3520135167,US 3520167936,3520192511,US 3520200704,3520356351,US 3520356352,3520364543,ZA 3520364544,3520413439,US 3520413440,3520413695,CA 3520413696,3520454655,US 3520454656,3520462847,CA 3520462848,3520626687,US 3520626688,3520634879,CA 3520634880,3520675839,US 3520675840,3520692223,CA 3520692224,3520937983,US 3520937984,3520954367,CA 3520954368,3520994815,US 3520994816,3520995071,GB 3520995072,3520995327,ES 3520995328,3520999423,US 3520999424,3521003519,CA 3521003520,3521028095,US 3521028096,3521032191,CA 3521032192,3521044479,US 3521044480,3521048575,CA 3521048576,3521086207,US 3521086208,3521086463,AU 3521086464,3521196287,US 3521196288,3521196543,AR 3521196544,3521216511,US 3521216512,3521220351,CA 3521220352,3521220607,US 3521220608,3521224959,CA 3521224960,3521225215,US 3521225216,3521232895,CA 3521232896,3521249279,US 3521249280,3521314815,CA 3521314816,3521347583,US 3521347584,3521363967,CA 3521363968,3521366783,US 3521366784,3521367039,CY 3521367040,3521802239,US 3521804544,3521804799,US 3521806336,3521837055,US 3521837056,3521837311,SG 3521837312,3521904639,US 3521904640,3521921023,JM 3521921024,3521965055,US 3521965056,3521966079,DE 3521966080,3522101247,US 3522101248,3522109439,CA 3522109440,3522118143,US 3522118144,3522118655,GB 3522118656,3522118911,US 3522118912,3522119679,GB 3522119680,3522119935,US 3522119936,3522120191,LY 3522120192,3522120447,US 3522120448,3522120703,LY 3522120704,3522120959,AE 3522120960,3522121215,LY 3522121216,3522121471,US 3522121472,3522121727,LY 3522121728,3522121983,AE 3522121984,3522122239,AW 3522122240,3522123519,US 3522123520,3522123775,GB 3522123776,3522125055,US 3522125056,3522125311,GB 3522125312,3522130302,US 3522130303,3522130303,BZ 3522130304,3522130307,US 3522130308,3522130308,BZ 3522130309,3522130309,US 3522130310,3522130310,BZ 3522130311,3522131858,US 3522131859,3522131859,DE 3522131860,3522132395,US 3522132396,3522132396,BR 3522132397,3522133639,US 3522133640,3522133647,DE 3522133648,3522133663,US 3522133664,3522133695,DE 3522133696,3522174975,US 3522174976,3522179071,BM 3522179072,3522195455,US 3522195456,3522199551,CA 3522199552,3522816767,US 3522816768,3522817023,CA 3522817024,3522854911,US 3522854912,3522871295,CA 3522871296,3522893823,US 3522893824,3522894847,CA 3522894848,3522902015,US 3522902016,3522903039,CA 3522903040,3522937855,US 3522937856,3522938111,GB 3522938112,3522940415,US 3522940416,3522940671,HK 3522940672,3523215359,US 3523215360,3523223551,AU 3523223552,3523231743,KR 3523231744,3523248127,AU 3523248128,3523280895,HK 3523280896,3523297279,TH 3523297280,3523317759,PH 3523317760,3523330047,JP 3523330048,3523338239,AU 3523338240,3523340287,MY 3523340288,3523341311,AU 3523341312,3523342335,JP 3523342336,3523346431,BD 3523346432,3523354623,CN 3523354624,3523362815,KR 3523362816,3523379199,VN 3523379200,3523395583,PK 3523395584,3523411967,JP 3523411968,3523477503,HK 3523477504,3523493887,PH 3523493888,3523497983,BD 3523497984,3523500031,AU 3523500032,3523502079,KR 3523502080,3523510271,PH 3523510272,3523518463,TH 3523518464,3523526655,JP 3523526656,3523530751,US 3523530752,3523532799,NZ 3523532800,3523534847,KR 3523534848,3523538943,AU 3523538944,3523543039,JP 3523543040,3523551231,CN 3523551232,3523553279,AU 3523553280,3523555327,MY 3523555328,3523557375,NZ 3523557376,3523559423,CN 3523559424,3523575807,PH 3523575808,3523583999,CN 3523584000,3523596359,HK 3523596360,3523596375,PK 3523596376,3523596783,HK 3523596784,3523596791,PK 3523596792,3523596927,HK 3523596928,3523597055,PK 3523597056,3523597063,HK 3523597064,3523597103,PK 3523597104,3523597119,HK 3523597120,3523597127,PK 3523597128,3523597567,HK 3523597568,3523597823,PK 3523597824,3523601663,HK 3523601664,3523601919,SA 3523601920,3523674111,HK 3523674112,3523682303,FJ 3523682304,3523686399,NZ 3523686400,3523688447,AU 3523688448,3523690495,CN 3523690496,3523698687,IN 3523698688,3523700735,JP 3523700736,3523701759,HK 3523701760,3523707903,JP 3523707904,3523708159,AU 3523708160,3523723263,JP 3523723264,3523725311,US 3523725312,3523739647,JP 3523739648,3524001791,AU 3524001792,3524132863,CN 3524132864,3524145151,PH 3524145152,3524149247,JP 3524149248,3524157439,CN 3524157440,3524161535,AU 3524161536,3524247551,CN 3524247552,3524263935,AU 3524263936,3524274175,PH 3524274176,3524274431,SG 3524274432,3524280319,PH 3524296704,3524313087,CN 3524313088,3524329471,KR 3524329472,3524362239,TW 3524362240,3524395007,HK 3524395008,3524444159,IN 3524444160,3524460543,AU 3524460544,3524526079,MY 3524526080,3524591615,JP 3524591616,3524722687,CN 3524722688,3524730879,SG 3524730880,3524739071,CN 3524739072,3524743167,ID 3524743168,3524745727,MP 3524745728,3524745983,GU 3524745984,3524747263,MP 3524747264,3524755455,PH 3524755456,3524763647,AU 3524763648,3524788223,PH 3524788224,3524853759,SG 3524853760,3526361087,CN 3526361088,3526393855,NZ 3526393856,3526395903,JP 3526395904,3526397951,HK 3526397952,3526402047,MY 3526402048,3526410239,NZ 3526410240,3526414335,MY 3526414336,3526416383,AU 3526416384,3526418431,MY 3526418432,3526426623,JP 3526426624,3526557695,AU 3526557696,3526651135,CN 3526651136,3526651391,KP 3526651392,3526754303,CN 3526754304,3526885375,NZ 3526885376,3526893567,PK 3526893568,3526897663,NZ 3526897664,3526901759,HK 3526901760,3526909951,AU 3526909952,3526918143,IN 3526918144,3526922239,SG 3526922240,3526924287,IN 3526924288,3526926335,AU 3526926336,3526934527,JP 3526934528,3526942719,CN 3526942720,3526950911,AU 3526950912,3527004159,JP 3527004160,3527008255,ID 3527008256,3527016447,KR 3527016448,3527933951,TW 3527933952,3528392703,CN 3528392704,3528396799,JP 3528396800,3528400895,AU 3528400896,3528404991,JP 3528404992,3528407039,NZ 3528407040,3528409087,AU 3528409088,3528425471,CN 3528441856,3528445951,JP 3528445952,3528450047,ID 3528450048,3528458239,CN 3528458240,3528474623,AF 3528474624,3528482815,TW 3528482816,3528491007,KR 3528491008,3528507391,AU 3528507392,3528589311,JP 3528589312,3528720383,CN 3528720384,3528785919,AU 3528785920,3528851455,TW 3528851456,3528884223,NZ 3528884224,3528908799,TH 3528908800,3528912895,VN 3528912896,3528933375,AU 3528949760,3528966143,CN 3528966144,3528974335,KR 3528974336,3528978431,JP 3528978432,3528982527,HK 3528982528,3529056255,JP 3529056256,3529064447,IN 3529064448,3529072639,HK 3529072640,3529080831,JP 3529080832,3529089023,AU 3529089024,3529097215,KR 3529097216,3529113599,JP 3529113600,3531603967,KR 3531603968,3532290815,JP 3532290816,3532291071,GB 3532291072,3534749695,JP 3534749696,3534756351,HK 3534756352,3534756383,CN 3534756384,3534757887,HK 3534757888,3534758143,AU 3534758144,3534758147,JP 3534758148,3534758911,AU 3534758912,3534758927,PH 3534758928,3534758975,AU 3534758976,3534759039,PH 3534759040,3534759167,AU 3534759168,3534759183,JP 3534759184,3534760447,AU 3534760448,3534760959,NZ 3534760960,3534761983,AU 3534761984,3534787327,HK 3534787328,3534787583,TH 3534787584,3534852095,HK 3534852096,3534852351,AU 3534852352,3534863443,HK 3534863444,3534863444,CN 3534863445,3534880767,HK 3534880768,3535273983,KR 3535273984,3535339519,HK 3535339520,3535355903,NZ 3535355904,3535372287,AU 3535372288,3535380479,JP 3535380480,3535388671,PH 3535388672,3535405055,CN 3535405056,3535536127,MY 3535536128,3535798271,JP 3535798272,3535814655,TW 3535814656,3535822847,KR 3535822848,3535831039,CN 3535831040,3535863807,TW 3535863808,3535880191,SG 3535880192,3535896575,JP 3535896576,3535905791,AU 3535905792,3535906047,US 3535906048,3535909887,AU 3535909888,3535910143,US 3535910144,3535929343,AU 3535929344,3535994879,JP 3535994880,3536060415,MY 3536060416,3536322559,JP 3536322560,3536551935,TW 3536551936,3536568319,TH 3536568320,3536584703,JP 3536584704,3536846847,KR 3536846848,3536928767,TW 3536928768,3536945151,HK 3536945152,3536977919,TW 3536977920,3537010687,IN 3537010688,3537027071,ID 3537027072,3537047551,KR 3537047552,3537049599,ID 3537049600,3537051647,HK 3537051648,3537059839,JP 3537059840,3537068031,KR 3537068032,3537076223,VN 3537076224,3537174527,IN 3537174528,3537190911,TH 3537190912,3537240063,PH 3537240064,3537305599,IN 3537305600,3537371135,AU 3537371136,3537895423,KR 3537895424,3538943999,JP 3538944000,3539271679,TW 3539271680,3539304447,VN 3539304448,3539337215,HK 3539337216,3539353599,NZ 3539353600,3539402751,TH 3539402752,3539435519,JP 3539435520,3539464191,AU 3539464192,3539468287,ID 3539468288,3541303295,JP 3541303296,3541565439,TW 3541565440,3541696511,MY 3541696512,3542089727,AU 3542089728,3542847487,KR 3542847488,3542851583,US 3542851584,3544186879,KR 3544186880,3544711167,CN 3544711168,3545235455,TW 3545235456,3546808319,CN 3546808320,3547856895,KR 3547856896,3548208127,JP 3548208128,3548208639,US 3548208640,3548905471,JP 3548905472,3551002623,CN 3551002624,3556769791,KR 3556769792,3556773887,DE 3556786176,3556794367,RU 3556794368,3556802559,ES 3556802560,3556810751,SD 3556810752,3556818943,PT 3556818944,3556827135,MD 3556827136,3556843519,NL 3556843520,3556851711,DE 3556851712,3556868095,UA 3556868096,3556876287,GB 3556876288,3556884479,NL 3556884480,3556886527,IR 3556886528,3556888575,GB 3556888576,3556890623,US 3556890624,3556892671,GB 3556892672,3556900863,RU 3556900864,3556909055,GB 3556909056,3556925439,DE 3556925440,3556933631,PL 3556933632,3556941823,UA 3556941824,3556950015,IE 3556950016,3556958207,TR 3556958208,3556966399,KG 3556966400,3556974591,SE 3556974592,3556982783,ES 3556982784,3556990975,DE 3556990976,3556999167,UA 3556999168,3557007359,RU 3557007360,3557015551,IT 3557015552,3557023743,DE 3557023744,3557027327,GB 3557027328,3557027455,NL 3557027456,3557028415,GB 3557028416,3557028479,BE 3557028480,3557031935,GB 3557031936,3557040127,IT 3557040128,3557048319,NO 3557048320,3557056511,CH 3557056512,3557064703,ES 3557064704,3557072895,CZ 3557072896,3557081087,DE 3557081088,3557089279,NL 3557089280,3557105663,DE 3557105664,3557113855,BG 3557113856,3557130239,RU 3557130240,3557138431,BG 3557138432,3557146623,RU 3557146624,3557154815,SK 3557154816,3557171199,RU 3557171200,3557179391,IT 3557179392,3557228543,DE 3557228544,3557236735,EE 3557236736,3557244927,ES 3557244928,3557253119,IT 3557253120,3557261311,RU 3557261312,3557277695,DE 3557277696,3557279743,NL 3557279744,3557280255,US 3557280256,3557280511,DE 3557280512,3557283839,NL 3557283840,3557285119,PL 3557285120,3557285887,NL 3557285888,3557294079,RU 3557294080,3557302271,DE 3557302272,3557310463,UA 3557310464,3557326847,ES 3557326848,3557335039,DE 3557340288,3557340927,BE 3557343232,3557351423,DE 3557351424,3557359615,RU 3557359616,3557359991,JE 3557359992,3557359999,GB 3557360000,3557360047,JE 3557360048,3557360055,GB 3557360056,3557360127,JE 3557360128,3557360135,GB 3557360136,3557360263,JE 3557360264,3557360271,GB 3557360272,3557364555,JE 3557364556,3557364556,GG 3557364557,3557365791,JE 3557365792,3557365799,GB 3557365800,3557367807,JE 3557367808,3557375999,DE 3557376000,3557384191,ES 3557384192,3557392383,GB 3557392384,3557400575,AT 3557400576,3557408767,DE 3557408768,3557416959,GB 3557416960,3557425151,UA 3557425152,3557490687,DK 3557490688,3557507071,FR 3557507072,3557515263,GB 3557515264,3557523455,CZ 3557523456,3557531647,RU 3557531648,3557539839,SA 3557539840,3557548031,SY 3557548032,3557556223,DE 3557556224,3557564415,RU 3557564416,3557572607,DE 3557572608,3557580799,RU 3557580800,3557588991,DE 3557588992,3557597183,TR 3557597184,3557605375,SA 3557605376,3557613567,LT 3557613568,3557621759,EG 3557621760,3557629951,RU 3557629952,3557638143,PT 3557638144,3557646335,MK 3557646336,3557654527,RU 3557654528,3557670911,KZ 3557670912,3557679103,GB 3557679104,3557687295,SI 3557687296,3557703679,PL 3557703680,3557711871,DE 3557711872,3557720063,ES 3557720064,3557728255,IT 3557728256,3557744639,RU 3557744640,3557752831,PS 3557752832,3557761023,TR 3557761024,3557769215,RU 3557769216,3557777407,GB 3557777408,3557785599,RU 3557785600,3557793791,UA 3557793792,3557801983,HR 3557801984,3557810175,DE 3557810176,3557818367,ES 3557818368,3557826559,RU 3557826560,3557834751,AT 3557834752,3557842943,IR 3557842944,3557851135,FI 3557851136,3557859327,HU 3557859328,3557861983,SE 3557861984,3557862015,FI 3557862016,3557863295,SE 3557863296,3557863327,FI 3557863328,3557864311,SE 3557864312,3557864319,FI 3557864320,3557867519,SE 3557867520,3557875711,RU 3557875712,3557883903,DE 3557883904,3557892095,RU 3557892096,3557900287,IE 3557900288,3557916671,AT 3557916672,3557924863,NO 3557924864,3557925887,AX 3557925888,3557927679,FI 3557927680,3557927935,AX 3557927936,3557929983,FI 3557929984,3557933055,AX 3557933056,3557941247,IT 3557941248,3557957631,DE 3557957632,3557965823,SI 3557965824,3557974015,DE 3557974016,3557982207,CH 3557982208,3557990399,NO 3557990400,3557998591,PT 3557998592,3558006783,DE 3558006784,3558010879,GB 3558010880,3558012927,FR 3558012928,3558014207,GB 3558014208,3558014463,NL 3558014464,3558014464,US 3558014465,3558014719,IL 3558014720,3558014975,NL 3558014976,3558023167,RU 3558023168,3558031359,DE 3558031360,3558039551,GB 3558039552,3558047743,IT 3558047744,3558055935,KZ 3558055936,3558064127,FR 3558064128,3558080511,NL 3558080512,3558096895,RU 3558096896,3558113279,CZ 3558113280,3558129663,DE 3558129664,3558137855,NO 3558137856,3558146047,GB 3558146048,3558154239,RU 3558154240,3558155059,GB 3558155060,3558155063,DE 3558155064,3558157391,GB 3558157392,3558157407,AF 3558157408,3558162431,GB 3558162432,3558170623,DE 3558170624,3558178815,GB 3558178816,3558187007,BG 3558187008,3558195199,DE 3558195200,3558197247,GB 3558197248,3558199295,US 3558199296,3558203391,GB 3558203392,3558211583,ES 3558211584,3558219775,GB 3558219776,3558227967,ES 3558227968,3558228479,RU 3558228480,3558228735,FR 3558228736,3558232063,RU 3558232064,3558232575,LB 3558232576,3558235647,RU 3558235648,3558235903,LB 3558235904,3558236159,RU 3558236160,3558244351,GB 3558244352,3558252543,IT 3558252544,3558260735,KE 3558260736,3558268927,UA 3558268928,3558277119,GI 3558277120,3558285951,GB 3558285952,3558286079,DE 3558286080,3558286591,GB 3558286592,3558286655,FR 3558286656,3558289119,GB 3558289120,3558289151,FR 3558289152,3558289431,GB 3558289432,3558289439,NL 3558289440,3558289975,GB 3558289976,3558289983,CZ 3558289984,3558291071,GB 3558291072,3558291135,DE 3558291136,3558292255,GB 3558292256,3558292271,SE 3558292272,3558293055,GB 3558293056,3558293087,NL 3558293088,3558293199,GB 3558293200,3558293215,NL 3558293216,3558293503,GB 3558293504,3558301695,RU 3558301696,3558318079,DE 3558318080,3558334463,FR 3558334464,3558342655,CH 3558342656,3558350847,IT 3558350848,3558359039,RU 3558359040,3558367231,GB 3558367232,3558375423,AT 3558375424,3558383615,CZ 3558383616,3558391807,HU 3558391808,3558399999,LU 3558400000,3558408191,SA 3558408192,3558416383,CH 3558416384,3558424575,BG 3558424576,3558440959,IL 3558440960,3558449151,SE 3558449152,3558457343,IT 3558457344,3558465535,NL 3558465536,3558473727,GB 3558473728,3558506495,SA 3558506496,3558514687,UA 3558514688,3558522879,SK 3558522880,3558531071,NL 3558531072,3558539263,RU 3558539264,3558547455,DK 3558547456,3558555647,FR 3558555648,3558572031,AT 3558572032,3558580223,DE 3558580224,3558588415,CH 3558588416,3558596607,CZ 3558596608,3558604799,EE 3558604800,3558612991,GB 3558612992,3558621183,DE 3558621184,3558629375,MD 3558629376,3558637567,DE 3558637568,3558645759,CH 3558645760,3558653951,IT 3558653952,3558662143,SE 3558662144,3558670335,LB 3558670336,3558686719,DE 3558686720,3558703103,TR 3558703104,3558711295,IT 3558711296,3558719487,NL 3558719488,3558735871,IL 3558735872,3558744063,GG 3558744064,3558752255,LB 3558752256,3558760447,SI 3558760448,3558768639,FR 3558768640,3558785023,RU 3558785024,3558801407,IS 3558801408,3558809599,TR 3558809600,3558817791,ES 3558817792,3558825983,AT 3558825984,3558834175,CY 3558834176,3558842367,FR 3558842368,3558850559,SE 3558850560,3558851327,GB 3558851328,3558851335,ES 3558851336,3558854367,GB 3558854368,3558854399,ES 3558854400,3558856703,GB 3558856704,3558858751,US 3558858752,3558866943,IT 3558866944,3558899711,GB 3558899712,3558916095,SE 3558916096,3558924287,RU 3558924288,3558932479,NL 3558932480,3558940671,RU 3558940672,3558948863,AT 3558948864,3558957055,PL 3558957056,3558965247,PS 3558965248,3558973439,NO 3558973440,3558981631,SA 3558981632,3558989823,IR 3558989824,3558998015,RU 3558998016,3559006207,JO 3559006208,3559014399,RU 3559014400,3559022591,DE 3559022592,3559030783,RU 3559030784,3559038975,ES 3559038976,3559047167,DE 3559047168,3559055359,IT 3559055360,3559063551,AM 3559063552,3559079935,CH 3559079936,3559088127,JO 3559088128,3559088383,GB 3559088384,3559088639,BE 3559088640,3559089527,GB 3559089528,3559089535,BE 3559089536,3559089935,GB 3559089936,3559089951,BE 3559089952,3559090239,GB 3559090240,3559090303,BE 3559090304,3559092243,GB 3559092244,3559092244,BE 3559092245,3559093311,GB 3559093312,3559093319,BE 3559093320,3559093695,GB 3559093696,3559093703,BE 3559093704,3559094303,GB 3559094304,3559094319,BE 3559094320,3559095455,GB 3559095456,3559095456,BE 3559095457,3559096319,GB 3559096320,3559104511,RO 3559104512,3559112703,RU 3559112704,3559120895,IT 3559120896,3559129087,GB 3559129088,3559137279,BG 3559137280,3559145471,GB 3559145472,3559153663,ES 3559153664,3559178239,GB 3559178240,3559186431,LB 3559186432,3559194623,RU 3559194624,3559197439,SE 3559197440,3559197567,FI 3559197568,3559200255,SE 3559200256,3559200511,FI 3559200512,3559202815,SE 3559202816,3559211007,DE 3559211008,3559219199,SK 3559219200,3559227391,SE 3559227392,3559235583,DK 3559235584,3559243775,DE 3559243776,3559251967,FR 3559251968,3559260159,NO 3559260160,3559268351,DE 3559268352,3559276543,IT 3559276544,3559284735,GB 3559284736,3559292927,RU 3559292928,3559301119,JO 3559301120,3559306576,GB 3559306577,3559306577,AT 3559306578,3559309311,GB 3559309312,3559317503,PL 3559317504,3559325695,FI 3559325696,3559333887,IT 3559333888,3559336447,SE 3559336448,3559336703,US 3559336704,3559342079,SE 3559342080,3559350271,BG 3559350272,3559358463,BA 3559358464,3559366655,FR 3559366656,3559368959,GB 3559368960,3559369215,AO 3559369216,3559374847,GB 3559374848,3559383039,AT 3559383040,3559391231,GB 3559391232,3559399423,CH 3559399424,3559407615,UA 3559407616,3559423999,HU 3559424000,3559432191,LB 3559432192,3559440383,DE 3559440384,3559448575,RU 3559448576,3559456767,ES 3559456768,3559473151,RU 3559473152,3559489535,CH 3559489536,3559491247,GB 3559491248,3559491263,NL 3559491264,3559491759,GB 3559491760,3559491767,NL 3559491768,3559505919,GB 3559505920,3559514111,CH 3559514112,3559522303,AT 3559522304,3559530495,GB 3559530496,3559538687,RU 3559538688,3559546879,UA 3559546880,3559555071,KG 3559555072,3559563263,CH 3559563264,3559571455,GB 3559571456,3559579647,AM 3559579648,3559587839,DE 3559587840,3559596031,KW 3559596032,3559604223,BG 3559604224,3559612415,DE 3559612416,3559620607,IT 3559620608,3559628799,CH 3559628800,3559636991,GB 3559636992,3559653375,FR 3559653376,3559669759,GB 3559669760,3559677951,RU 3559677952,3559686143,SI 3559686144,3559694335,RU 3559694336,3559710719,DE 3559710720,3559718911,FR 3559718912,3559727103,RU 3559727104,3559735295,NL 3559735296,3559743487,BG 3559743488,3559745535,IT 3559745536,3559747583,DE 3559747584,3559751679,DK 3559751680,3559759871,IT 3559759872,3559768063,NO 3559768064,3559776255,CH 3559776256,3559792639,RU 3559792640,3559800831,SA 3559800832,3559809023,IT 3559809024,3559817215,DE 3559817216,3559825407,GB 3559825408,3559833599,IT 3559833600,3559849983,RU 3559849984,3559858175,CZ 3559858176,3559866367,IT 3559866368,3559874559,GB 3559874560,3559882751,LT 3559882752,3559890943,AZ 3559890944,3559899135,CH 3559899136,3559899647,UA 3559899648,3559899967,EE 3559899968,3559900031,UA 3559900032,3559900351,EE 3559900352,3559902719,UA 3559902720,3559902975,EE 3559902976,3559903231,UA 3559903232,3559907327,EE 3559907328,3559915519,FR 3559915520,3559923711,IT 3559923712,3559931903,RU 3559931904,3559940095,GB 3559940096,3559948287,DE 3559948288,3559956479,RU 3559956480,3559964671,IT 3559964672,3559976959,RU 3559976960,3559981055,HU 3559981056,3559989247,EE 3559989248,3559997439,PL 3559997440,3560005631,KE 3560005632,3560013823,RU 3560013824,3560022751,GB 3560022752,3560022767,ES 3560022768,3560023631,GB 3560023632,3560023639,ES 3560023640,3560023791,GB 3560023792,3560023799,ES 3560023800,3560025904,GB 3560025905,3560025905,ES 3560025906,3560030095,GB 3560030096,3560030103,ES 3560030104,3560046591,GB 3560046592,3560054783,BG 3560054784,3560062975,TR 3560062976,3560071167,BG 3560071168,3560079359,CY 3560079360,3560087551,FI 3560087552,3560095743,GB 3560095744,3560103935,FI 3560103936,3560112127,IR 3560112128,3560120319,DE 3560120320,3560128511,ES 3560128512,3560144895,HU 3560144896,3560153087,CH 3560153088,3560161279,FR 3560161280,3560169471,PL 3560169472,3560177663,AT 3560177664,3560185855,NL 3560185856,3560194047,LT 3560194048,3560210431,IT 3560210432,3560218623,BF 3560218624,3560226815,HU 3560226816,3560235007,AT 3560235008,3560243199,DE 3560243200,3560247295,BE 3560247296,3560251391,NL 3560251392,3560259583,RU 3560259584,3560267775,GB 3560267776,3560275967,EE 3560275968,3560308735,DE 3560308736,3560316927,FI 3560316928,3560325119,NL 3560325120,3560333311,DK 3560333312,3560341503,RO 3560341504,3560345855,GB 3560345856,3560348415,US 3560348416,3560357887,GB 3560357888,3560366079,GR 3560366080,3560374271,CH 3560374272,3560382463,ES 3560382464,3560390655,FO 3560390656,3560398847,UA 3560398848,3560407039,RU 3560407040,3560423423,PT 3560423424,3560431615,CH 3560431616,3560439807,SK 3560439808,3560447999,BG 3560448000,3560472575,GB 3560472576,3560480767,MT 3560480768,3560488959,IT 3560488960,3560497151,MD 3560497152,3560501503,LU 3560501504,3560502527,DE 3560502528,3560502783,LU 3560502784,3560503039,DE 3560503040,3560505343,LU 3560505344,3560513535,TR 3560513536,3560515583,SK 3560515584,3560517631,RS 3560517632,3560521727,NL 3560521728,3560529919,PT 3560529920,3560554495,RU 3560554496,3560562687,SA 3560562688,3560570879,GB 3560570880,3560579071,TR 3560579072,3560587263,GB 3560587264,3560595455,DE 3560595456,3560603647,GE 3560603648,3560611839,GB 3560611840,3560620031,UA 3560620032,3560628223,RU 3560628224,3560636415,GB 3560636416,3560644607,LT 3560644608,3560652799,DE 3560652800,3560660991,GB 3560660992,3560669183,RU 3560669184,3560685567,CH 3560685568,3560693759,ES 3560693760,3560701951,PL 3560710144,3560718335,CH 3560718336,3560726527,GM 3560726528,3560734719,DK 3560734720,3560742911,DE 3560742912,3560751103,AT 3560751104,3560767487,DE 3560767488,3560833023,NL 3560833024,3560841215,GB 3560841216,3560849407,RS 3560849408,3560857599,DE 3560857600,3560865791,SA 3560865792,3560882175,FR 3560882176,3560890367,DE 3560890368,3560898559,NO 3560898560,3560906751,FI 3560906752,3560923135,DE 3560923136,3560931327,ES 3560931328,3560941179,DE 3560941180,3560941183,GB 3560941184,3560941339,DE 3560941340,3560941343,GB 3560941344,3560943366,DE 3560943367,3560943367,IT 3560943368,3560943514,DE 3560943515,3560943515,ES 3560943516,3560943612,DE 3560943613,3560943613,ES 3560943614,3560943634,DE 3560943635,3560943635,ES 3560943636,3560943827,DE 3560943828,3560943828,ES 3560943829,3560943842,DE 3560943843,3560943843,GB 3560943844,3560943907,DE 3560943908,3560943911,US 3560943912,3560943983,DE 3560943984,3560943987,US 3560943988,3560944139,DE 3560944140,3560944143,US 3560944144,3560944231,DE 3560944232,3560944235,US 3560944236,3560944391,DE 3560944392,3560944395,US 3560944396,3560944487,DE 3560944488,3560944491,CA 3560944492,3560944567,DE 3560944568,3560944571,US 3560944572,3560944607,DE 3560944608,3560944611,US 3560944612,3560945164,DE 3560945165,3560945165,AU 3560945166,3560945347,DE 3560945348,3560945351,JP 3560945352,3560945426,DE 3560945427,3560945427,CN 3560945428,3560945671,DE 3560945672,3560945675,US 3560945676,3560945695,DE 3560945696,3560945699,US 3560945700,3560945795,DE 3560945796,3560945799,US 3560945800,3560945863,DE 3560945864,3560945867,US 3560945868,3560946208,DE 3560946209,3560946209,CA 3560946210,3560946219,DE 3560946220,3560946220,US 3560946221,3560946224,DE 3560946225,3560946225,US 3560946226,3560946226,DE 3560946227,3560946227,US 3560946228,3560946239,DE 3560946240,3560946240,US 3560946241,3560946248,DE 3560946249,3560946249,US 3560946250,3560946252,DE 3560946253,3560946253,US 3560946254,3560946266,DE 3560946267,3560946267,CA 3560946268,3560946283,DE 3560946284,3560946284,US 3560946285,3560946372,DE 3560946373,3560946373,US 3560946374,3560946751,DE 3560946752,3560946752,US 3560946753,3560947059,DE 3560947060,3560947063,US 3560947064,3560947075,DE 3560947076,3560947079,US 3560947080,3560947159,DE 3560947160,3560947163,PR 3560947164,3560947167,US 3560947168,3560947199,DE 3560947200,3560947203,CA 3560947204,3560947259,DE 3560947260,3560947263,US 3560947264,3560947299,DE 3560947300,3560947303,US 3560947304,3560947515,DE 3560947516,3560947519,JP 3560947520,3560947711,DE 3560947712,3560955903,SE 3560955904,3560964095,BE 3560964096,3560996863,NL 3560996864,3561005055,GB 3561005056,3561013247,ES 3561013248,3561021439,TR 3561021440,3561021695,AT 3561021696,3561022463,DE 3561022464,3561022975,AT 3561022976,3561037823,DE 3561037824,3561046015,BE 3561046016,3561054207,RU 3561054208,3561062399,MT 3561062400,3561070591,TR 3561070592,3561078783,CH 3561078784,3561095167,CZ 3561095168,3561103359,DE 3561103360,3561111551,UA 3561111552,3561119743,LU 3561119744,3561127935,IT 3561127936,3561136127,DE 3561136128,3561144319,ES 3561144320,3561152511,FI 3561152512,3561160703,IT 3561160704,3561168895,RU 3561168896,3561172991,FR 3561172992,3561177087,NO 3561177088,3561185279,CZ 3561185280,3561193471,GB 3561193472,3561201663,PL 3561201664,3561209855,NL 3561209856,3561218047,GB 3561218048,3561226239,AT 3561226240,3561234431,FI 3561234432,3561242623,TR 3561242624,3561259007,DE 3561259008,3561267199,IL 3561267200,3561275391,UA 3561275392,3561291775,BE 3561291776,3561299967,RS 3561299968,3561308159,GB 3561308160,3561316351,PL 3561316352,3561324543,RU 3561324544,3561325567,IT 3561325568,3561326591,CH 3561326592,3561332735,IT 3561332736,3561340927,AT 3561340928,3561357311,GB 3561357312,3561365503,DK 3561365504,3561373695,SA 3561373696,3561381887,GB 3561381888,3561390079,AT 3561390080,3561398271,BG 3561398272,3561406463,LV 3561406464,3561414655,GR 3561414656,3561422847,IT 3561422848,3561431039,BE 3561431040,3561439231,SA 3561439232,3561447423,NO 3561447424,3561455615,CH 3561455616,3561471999,CZ 3561472000,3561480191,DE 3561480192,3561488383,GB 3561488384,3561496575,OM 3561496576,3561502719,GB 3561502720,3561503743,NL 3561503744,3561504767,GB 3561504768,3561512959,DE 3561512960,3561521151,SI 3561521152,3561529343,GE 3561529344,3561537535,DE 3561537536,3561545727,BG 3561545728,3561553919,NL 3561553920,3561562111,SE 3561562112,3561570303,ES 3561570304,3561578495,AM 3561578496,3561586687,RU 3561586688,3561594879,BG 3561594880,3561603071,SE 3561603072,3561604351,GB 3561604352,3561604607,FR 3561604608,3561607391,GB 3561607392,3561607423,FR 3561607424,3561607723,GB 3561607724,3561607724,FR 3561607725,3561609215,GB 3561609216,3561609471,FR 3561609472,3561610495,GB 3561610496,3561610751,FR 3561610752,3561612543,GB 3561612544,3561612799,FR 3561612800,3561615871,GB 3561615872,3561616127,FR 3561616128,3561616639,GB 3561616640,3561616895,FR 3561616896,3561652223,GB 3561652224,3561668607,CH 3561668608,3561684991,RU 3561684992,3561693183,BG 3561693184,3561701375,DE 3561701376,3561709567,SE 3561709568,3561717759,PL 3561717760,3561725951,RU 3561725952,3561734143,ES 3561734144,3561750527,RU 3561750528,3561758719,KZ 3561758720,3561766911,PL 3561766912,3561775103,SA 3561775104,3561783295,IL 3561783296,3561799679,RU 3561799680,3561807871,DE 3561807872,3561816063,BE 3561816064,3561824255,VA 3561824256,3561832447,LI 3561832448,3561840639,IT 3561840640,3561848831,PL 3561848832,3561857023,RU 3561857024,3561865215,DE 3561865216,3561873407,QA 3561873408,3561881599,DE 3561881600,3561889791,IT 3561889792,3561897983,FR 3561897984,3561906175,GB 3561906176,3561914367,DE 3561914368,3561922559,ES 3561922560,3561924863,GB 3561924864,3561925119,NL 3561925120,3561925343,GB 3561925344,3561925375,NL 3561925376,3561929967,GB 3561929968,3561929983,NL 3561929984,3561930751,GB 3561930752,3561938943,NL 3561938944,3561940991,IE 3561940992,3561942015,GB 3561942016,3561947135,IE 3561947136,3561963519,DE 3561963520,3561971711,BE 3561971712,3561975807,CZ 3561975808,3561976831,BG 3561976832,3561979903,UA 3561979904,3561988095,ES 3561988096,3562004479,DE 3562004480,3562012671,NL 3562012672,3562020863,IR 3562020864,3562029055,UA 3562029056,3562037247,CZ 3562037248,3562045439,CH 3562045440,3562056711,ES 3562056712,3562056719,NL 3562056720,3562056911,ES 3562056912,3562056927,FR 3562056928,3562057215,ES 3562057216,3562057247,NL 3562057248,3562057263,BE 3562057264,3562057471,ES 3562057472,3562057727,DE 3562057728,3562057975,ES 3562057976,3562057983,FR 3562057984,3562059327,ES 3562059328,3562059335,CH 3562059336,3562059391,ES 3562059392,3562059519,CH 3562059520,3562061823,ES 3562070016,3562078207,DE 3562078208,3562086399,SK 3562086400,3562087423,SE 3562087424,3562088447,GB 3562088448,3562094591,SE 3562094592,3562106895,GB 3562106896,3562106911,FR 3562106912,3562110975,GB 3562110976,3562143743,ES 3562143744,3562151935,GB 3562151936,3562160127,DE 3562160128,3562169343,GB 3562169344,3562170367,CH 3562170368,3562172415,IE 3562172416,3562173951,CH 3562173952,3562174463,GB 3562174464,3562176511,CH 3562176512,3562184703,FR 3562184704,3562192895,DE 3562192896,3562201087,UA 3562201088,3562209279,DE 3562209280,3562217471,RU 3562217472,3562225663,DE 3562225664,3562233855,NL 3562233856,3562242047,FI 3562242048,3562258431,FR 3562258432,3562283007,NL 3562283008,3562285055,IT 3562285056,3562287103,IE 3562287104,3562289151,IT 3562289152,3562291199,FR 3562291200,3562307583,GB 3562307584,3562315775,NL 3562315776,3562323967,GB 3562323968,3562340351,DE 3562340352,3562348543,GB 3562348544,3562356735,ES 3562356736,3562364927,SE 3562364928,3562373119,PL 3562373120,3562381311,FR 3562381312,3562389503,SI 3562389504,3562397695,GH 3562397696,3562405887,GB 3562405888,3562414079,FI 3562414080,3562422271,DE 3562422272,3562430463,IR 3562430464,3562438655,UA 3562438656,3562463231,DE 3562463232,3562471423,UA 3562471424,3562479615,PL 3562479616,3562487807,DE 3562487808,3562495999,GB 3562496000,3562504191,BE 3562504192,3562512383,DE 3562512384,3562520575,UA 3562528768,3562536959,PL 3562536960,3562545151,AT 3562545152,3562553343,GB 3562553344,3562561535,DK 3562561536,3562569727,UG 3562569728,3562572543,DE 3562572544,3562572799,LU 3562572800,3562577919,DE 3562577920,3562586111,AT 3562586112,3562594303,DE 3562594304,3562602495,BE 3562602496,3562610687,ES 3562610688,3562618879,NO 3562618880,3562627071,GB 3562627072,3562643455,DE 3562643456,3562651647,AT 3562651648,3562659839,DE 3562659840,3562668031,SK 3562668032,3562676223,IT 3562676224,3562684415,UA 3562684416,3562692607,FI 3562700800,3562708991,DE 3562708992,3562717183,UA 3562717184,3562725375,CH 3562725376,3562733567,CZ 3562733568,3562741759,PL 3562741760,3562758143,IT 3562758144,3562766335,HR 3562766336,3562774527,SE 3562774528,3562782719,BG 3562782720,3562790911,RU 3562790912,3562799103,DE 3562799104,3562807295,HU 3562807296,3562815487,ES 3562815488,3562823679,NL 3562823680,3562848255,RU 3562848256,3562856447,HR 3562856448,3562864639,UA 3562864640,3562872831,DE 3562872832,3562881023,DK 3562881024,3562889215,GB 3562889216,3562897407,LV 3562897408,3562905599,RO 3562905600,3562921983,SA 3562921984,3562930175,SI 3562930176,3562938367,RU 3562938368,3562946559,CH 3562946560,3562954751,FI 3562954752,3562962943,RU 3562962944,3562971135,IT 3562971136,3562987519,FR 3562987520,3562995711,DE 3562995712,3563003903,AT 3563003904,3563008255,DE 3563008256,3563008511,PL 3563008512,3563010815,DE 3563010816,3563011071,PL 3563011072,3563012095,DE 3563012096,3563020287,FR 3563020288,3563028479,DE 3563028480,3563036671,IR 3563036672,3563044863,BG 3563044864,3563053055,ES 3563053056,3563061247,GB 3563061248,3563065343,GH 3563065344,3563067391,NG 3563067392,3563068415,MZ 3563068416,3563069439,NG 3563069440,3563077631,HU 3563077632,3563085823,KZ 3563085824,3563094015,RU 3563094016,3563102207,DE 3563102208,3563110399,CZ 3563110400,3563118591,RU 3563118592,3563126783,PL 3563126784,3563134975,KG 3563134976,3563143167,IT 3563143168,3563151359,GB 3563151360,3563159551,DE 3563159552,3563167743,DK 3563167744,3563175935,ES 3563175936,3563192319,DK 3563192320,3563200511,TR 3563200512,3563208703,CH 3563208704,3563225087,DK 3563225088,3563233279,LB 3563233280,3563241471,BY 3563241472,3563257855,TR 3563257856,3563290623,FR 3563290624,3563315199,DE 3563315200,3563323391,DK 3563323648,3563329791,GB 3563331584,3563339775,DE 3563339776,3563347967,NG 3563347968,3563348991,GB 3563348992,3563353087,FI 3563353088,3563356159,GB 3563356160,3563364351,RU 3563364352,3563372543,BE 3563372544,3563380735,SA 3563380736,3563388927,GB 3563388928,3563397119,CH 3563397120,3563405311,DE 3563405312,3563407871,ES 3563407872,3563407903,US 3563407904,3563413503,ES 3563413504,3563421695,TR 3563421696,3563438079,SI 3563438080,3563446271,DE 3563446272,3563454463,LB 3563454464,3563462655,SA 3563462656,3563479039,IT 3563479040,3563487231,GB 3563487232,3563491327,RS 3563491328,3563495423,BG 3563495424,3563503615,DE 3563503616,3563511807,GB 3563511808,3563519999,DE 3563520000,3563528191,FR 3563536384,3563544575,CH 3563544576,3563552767,RU 3563552768,3563560959,SI 3563560960,3563569151,EG 3563569152,3563577343,IT 3563577344,3563585535,GB 3563585536,3563601919,IT 3563601920,3563610111,RU 3563610112,3563618303,BG 3563618304,3563626495,GB 3563626496,3563634687,ES 3563634688,3563651071,NL 3563651072,3563683839,SE 3563683840,3563692031,BE 3563692032,3563700223,GB 3563700224,3563708415,DE 3563708416,3563716607,HU 3563716608,3563724799,PL 3563724800,3563732991,RU 3563732992,3563741183,PS 3563741184,3563749375,GB 3563749376,3563765759,PL 3563765760,3563782143,ES 3563790336,3563798527,EE 3563798528,3563806719,FR 3563806720,3563814911,SA 3563814912,3563823103,SE 3563823104,3563831295,DE 3563831296,3563847679,RU 3563847680,3563848447,NL 3563848448,3563848703,ES 3563848704,3563848847,NL 3563848848,3563848848,ES 3563848849,3563848849,NL 3563848850,3563848855,ES 3563848856,3563855871,NL 3563855872,3563864063,AT 3563864064,3563872255,GB 3563872256,3563880447,RU 3563880448,3563888639,TR 3563888640,3563896831,DE 3563896832,3563913215,HU 3563913216,3563921407,RU 3563921408,3563929599,UA 3563929600,3563937791,CH 3563937792,3563945983,TR 3563945984,3563956223,PL 3563956224,3563958271,RU 3563958272,3563962367,CZ 3563962368,3563970559,RU 3563970560,3563978751,TR 3563978752,3563995135,IT 3563995136,3564003327,MK 3564003328,3564011519,DE 3564011520,3564019711,UA 3564019712,3564023807,GB 3564023808,3564024831,IT 3564024832,3564027903,GB 3564027904,3564044287,DE 3564044288,3564052479,CZ 3564052480,3564060671,GB 3564060672,3564068863,RU 3564068864,3564077055,ES 3564077056,3564093439,GB 3564093440,3564101631,UA 3564101632,3564109823,DE 3564109824,3564126207,SE 3564126208,3564129727,IT 3564129728,3564129743,PH 3564129744,3564134399,IT 3564134400,3564142591,KG 3564142592,3564150783,DK 3564150784,3564154943,SE 3564154944,3564154975,FI 3564154976,3564158831,SE 3564158832,3564158839,FI 3564158840,3564158975,SE 3564158976,3564175359,DE 3564175360,3564183551,GB 3564183552,3564191743,UA 3564191744,3564199935,BE 3564199936,3564208127,RU 3564208128,3564216319,GB 3564216320,3564224511,PT 3564224512,3564232703,GB 3564232704,3564249087,RU 3564249088,3564265471,DE 3564265472,3564273663,NL 3564273664,3564306431,DE 3564306432,3564314623,TR 3564322816,3564331007,IT 3564339200,3564355583,GB 3564355584,3564363775,NL 3564363776,3564371967,UA 3564371968,3564380159,DE 3564380160,3564388351,FI 3564388352,3564396543,SE 3564396544,3564404735,RU 3564404736,3564412927,BG 3564412928,3564421119,IL 3564421120,3564429311,SA 3564429312,3564437503,KZ 3564437504,3564445695,LT 3564445696,3564453887,BG 3564453888,3564462079,DE 3564462080,3564470271,CH 3564470272,3564478463,IL 3564478464,3564478719,AE 3564478720,3564486655,LU 3564486656,3564494847,CH 3564503040,3564511231,JO 3564511232,3564519423,RU 3564519424,3564527615,SI 3564527616,3564543999,SA 3564544000,3564560383,DE 3564560384,3564571695,GB 3564571696,3564571703,DE 3564571704,3564572427,GB 3564572428,3564572431,ES 3564572432,3564572527,GB 3564572528,3564572531,DK 3564572532,3564574847,GB 3564574848,3564574975,NL 3564574976,3564575487,GB 3564575488,3564575615,DE 3564575616,3564576767,GB 3564584960,3564593151,SA 3564593152,3564601343,RU 3564601344,3564609535,EE 3564609536,3564634111,RU 3564634112,3564642303,MK 3564642304,3564650495,CH 3564650496,3564666879,NL 3564666880,3564675071,IE 3564675072,3564683263,RU 3564683264,3564691455,IR 3564691456,3564699647,GI 3564699648,3564716031,GB 3564716032,3564724223,IT 3564724224,3564732415,NL 3564732416,3564733183,GB 3564733184,3564733439,DE 3564733440,3564734457,GB 3564734458,3564734458,DE 3564734459,3564734741,GB 3564734742,3564734742,DE 3564734743,3564734743,GB 3564734744,3564734751,DE 3564734752,3564736535,GB 3564736536,3564736543,DE 3564736544,3564738815,GB 3564738816,3564739071,DE 3564739072,3564739345,GB 3564739346,3564739346,DE 3564739347,3564739367,GB 3564739368,3564739375,DE 3564739376,3564740095,GB 3564740096,3564740351,DE 3564740352,3564740607,GB 3564740608,3564748799,FR 3564748800,3564756991,GB 3564756992,3564765183,ES 3564765184,3564773375,RU 3564773376,3564781567,DE 3564781568,3564787455,LT 3564787456,3564787583,NL 3564787584,3564789759,LT 3564789760,3564797951,ES 3564797952,3564806143,DE 3564806144,3564814335,BG 3564814336,3564822527,PL 3564822528,3564830719,EG 3564830720,3564838911,BE 3564838912,3564847103,DE 3564847104,3564855295,IT 3564855296,3564863487,DE 3564863488,3564879871,NL 3564879872,3564879935,GB 3564879936,3564879999,NL 3564880000,3564880651,GB 3564880652,3564880655,NL 3564880656,3564880945,GB 3564880946,3564880946,NL 3564880947,3564882015,GB 3564882016,3564882031,NL 3564882032,3564883071,GB 3564883072,3564883079,NL 3564883080,3564883199,GB 3564883200,3564883455,NL 3564883456,3564886719,GB 3564886720,3564886751,NL 3564886752,3564888479,GB 3564888480,3564888495,NL 3564888496,3564889633,GB 3564889634,3564889634,NL 3564889635,3564891119,GB 3564891120,3564891135,NL 3564891136,3564892671,GB 3564892672,3564892927,NL 3564892928,3564895231,GB 3564895232,3564895743,NL 3564895744,3564896255,GB 3564896256,3564904447,RU 3564904448,3564912639,DE 3564912640,3564918783,NL 3564918784,3564920831,IT 3564920832,3564922111,DE 3564922112,3564929023,US 3564929024,3564937215,AT 3564937216,3564945407,IT 3564945408,3564953599,GB 3564953600,3564954879,AT 3564954880,3564955903,GB 3564955904,3564956671,AT 3564956672,3564956927,GB 3564956928,3564960959,AT 3564960960,3564960975,GB 3564960976,3564961791,AT 3564961792,3564969983,TR 3564969984,3564978175,DE 3564978176,3564986367,GB 3564986368,3564994559,DE 3564994560,3565002751,NL 3565002752,3565027327,NO 3565027328,3565035519,PL 3565035520,3565036287,IE 3565036288,3565038879,GB 3565038880,3565038895,IE 3565038896,3565039615,GB 3565039616,3565041663,IE 3565041664,3565043711,GB 3565043712,3565051903,AT 3565051904,3565060095,IQ 3565060096,3565068287,GB 3565068288,3565076479,CH 3565076480,3565084671,DE 3565084672,3565092863,IS 3565092864,3565101055,GB 3565101056,3565109247,DE 3565109248,3565117439,PL 3565117440,3565125631,TR 3565125632,3565158399,NL 3565158400,3565223935,ES 3565223936,3565240319,FR 3565240320,3565248511,IE 3565248512,3565256703,RU 3565256704,3565289471,NL 3565289472,3565355007,DK 3565355008,3565420543,IT 3565420544,3565486335,GB 3565486336,3565486975,FR 3565486976,3565487615,NL 3565487616,3565495295,GB 3565495296,3565496319,FR 3565496320,3565502463,GB 3565502464,3565503487,NL 3565503488,3565518847,GB 3565518848,3565551615,TR 3565551616,3565682687,GB 3565682688,3565748223,NL 3565748224,3565752319,GB 3565752448,3565752479,GB 3565752528,3565752543,GB 3565752576,3565752839,GB 3565752856,3565752879,GB 3565752888,3565752983,GB 3565752992,3565752999,GB 3565753016,3565753031,GB 3565753040,3565753071,GB 3565753080,3565753183,GB 3565753248,3565753279,GB 3565753344,3565753791,GB 3565753800,3565753815,GB 3565753824,3565753831,GB 3565753840,3565753847,GB 3565753984,3565754367,GB 3565754496,3565754511,GB 3565754624,3565755263,GB 3565755280,3565755359,GB 3565755376,3565755583,GB 3565755648,3565755695,GB 3565755704,3565755727,GB 3565755736,3565755831,GB 3565755840,3565755847,GB 3565755856,3565755871,GB 3565755880,3565755903,GB 3565756152,3565756159,GB 3565756416,3565761279,GB 3565761344,3565761535,GB 3565761544,3565761599,GB 3565761616,3565761631,GB 3565761640,3565761647,GB 3565761656,3565761687,GB 3565761704,3565761727,GB 3565761752,3565761783,GB 3565761792,3565762047,GB 3565762048,3565762303,ZA 3565762560,3565762815,GB 3565763072,3565763455,GB 3565763488,3565763599,GB 3565763616,3565763671,GB 3565763680,3565763703,GB 3565763720,3565763735,GB 3565763744,3565763751,GB 3565763760,3565763799,GB 3565763808,3565763815,GB 3565763832,3565763839,GB 3565763884,3565763891,GB 3565764096,3565764183,GB 3565764192,3565764207,GB 3565764256,3565766655,GB 3565766912,3565767167,GB 3565767176,3565767255,GB 3565767272,3565767287,GB 3565767296,3565767351,GB 3565767360,3565767399,GB 3565767408,3565767439,GB 3565767456,3565767487,GB 3565767504,3565767599,GB 3565767616,3565767631,GB 3565767680,3565767999,GB 3565768208,3565768223,GB 3565768240,3565768247,GB 3565768448,3565768575,GB 3565768704,3565768983,GB 3565769216,3565769471,GB 3565777920,3565813759,GB 3565813760,3565879295,SA 3565879296,3566010367,GB 3566010368,3566075903,IT 3566075904,3566092287,NL 3566092288,3566108671,LV 3566108672,3566141439,ES 3566141440,3566206975,IL 3566206976,3566272511,DE 3566272512,3566338047,ES 3566338048,3566354431,FI 3566354432,3566370815,RO 3566370816,3566403583,TR 3566403584,3566436351,CH 3566436352,3566469119,IE 3566469120,3566534655,GB 3566534656,3566551039,DE 3566551040,3566600191,FI 3566600192,3566607359,IL 3566607360,3566607615,GN 3566607616,3566665727,IL 3566665728,3566723071,SE 3566723072,3566723327,RU 3566723328,3566739455,SE 3566739456,3566747647,RU 3566747648,3566764031,GR 3566764032,3566796799,AT 3566796800,3566862335,NL 3566862336,3566895103,TR 3566895104,3566927871,KZ 3566927872,3566993407,FR 3566993408,3567058943,TR 3567058944,3567124479,FR 3567124992,3567125023,GB 3567125248,3567125503,GB 3567126688,3567126759,GB 3567127552,3567127807,GB 3567129856,3567129887,GB 3567130016,3567130079,GB 3567131384,3567131647,GB 3567133216,3567133247,GB 3567133368,3567133375,GB 3567134208,3567134335,GB 3567134848,3567134975,GB 3567136000,3567136255,GB 3567136512,3567136575,GB 3567136640,3567136671,GB 3567136768,3567136895,GB 3567137024,3567137279,GB 3567137600,3567137663,GB 3567137988,3567137991,GB 3567138000,3567138003,GB 3567138040,3567138047,GB 3567140096,3567140351,GB 3567140864,3567140927,GB 3567141632,3567141887,GB 3567142272,3567142399,GB 3567143432,3567143439,GB 3567143520,3567143551,GB 3567143680,3567143687,GB 3567143872,3567143935,GB 3567143952,3567143967,GB 3567144172,3567144175,GB 3567144320,3567144447,GB 3567144768,3567144831,GB 3567147528,3567147535,GB 3567147552,3567147559,GB 3567148520,3567148527,GB 3567148800,3567149055,GB 3567149088,3567149119,GB 3567149904,3567149911,GB 3567149920,3567149935,GB 3567151136,3567151199,GB 3567151232,3567151263,GB 3567152000,3567152127,GB 3567152160,3567152191,GB 3567152256,3567152383,GB 3567152400,3567152407,GB 3567152640,3567152647,GB 3567152744,3567152751,GB 3567152832,3567152863,GB 3567152960,3567152991,GB 3567153024,3567153055,GB 3567153600,3567153607,GB 3567153616,3567153623,GB 3567153648,3567153663,GB 3567153688,3567153703,GB 3567153720,3567153727,GB 3567153824,3567153847,GB 3567154304,3567154367,GB 3567155200,3567155967,GB 3567156416,3567156607,GB 3567157248,3567165439,CZ 3567165440,3567169535,RU 3567169536,3567173631,MK 3567173632,3567239167,GB 3567239168,3567241215,NL 3567241472,3567246591,NL 3567246592,3567246847,GB 3567246848,3567255551,NL 3567255552,3567321087,PL 3567321088,3567353855,GB 3567353856,3567386623,CH 3567386624,3567388351,GB 3567388352,3567388383,DE 3567388384,3567388543,GB 3567388544,3567388607,DE 3567388608,3567388927,GB 3567388928,3567389183,DE 3567389184,3567389439,GB 3567389440,3567390975,DE 3567390976,3567391231,GB 3567391232,3567391487,DE 3567391488,3567394815,GB 3567394816,3567395071,IE 3567395072,3567403007,GB 3567403008,3567419391,IT 3567419392,3567427583,SA 3567427584,3567435775,SE 3567435776,3567453695,GB 3567453696,3567453951,ES 3567453952,3567456407,GB 3567456408,3567456415,ES 3567456416,3567456511,GB 3567456512,3567456767,ES 3567456768,3567458305,GB 3567458306,3567458306,ES 3567458307,3567459935,GB 3567459936,3567459943,ES 3567459944,3567465983,GB 3567465984,3567466239,ES 3567466240,3567495679,GB 3567495680,3567495935,ES 3567495936,3567499007,GB 3567499008,3567499135,ES 3567499136,3567503359,GB 3567503360,3567504383,ES 3567504384,3567505151,GB 3567505152,3567505407,ES 3567505408,3567511487,GB 3567511488,3567511495,ES 3567511496,3567516671,GB 3567516672,3567517695,ES 3567517696,3567583231,RU 3567583232,3567583487,AT 3567583744,3567583871,AT 3567583936,3567583999,AT 3567584256,3567584383,AT 3567584400,3567584407,AT 3567584512,3567584639,AT 3567585280,3567585311,TR 3567585792,3567586303,GB 3567586304,3567586815,TR 3567587328,3567591423,GB 3567591424,3567599615,IT 3567599616,3567603199,NL 3567603200,3567603455,DK 3567603456,3567615999,NL 3567616000,3567616767,GB 3567616768,3567617023,US 3567617024,3567618047,GB 3567618048,3567619071,IN 3567619072,3567619583,GB 3567619584,3567619839,NG 3567619840,3567620095,GB 3567620096,3567620351,IN 3567620352,3567627263,GB 3567627264,3567629311,LU 3567629312,3567630335,GB 3567630336,3567634431,LU 3567634432,3567636479,GB 3567636480,3567646719,LU 3567646720,3567648767,GB 3567648768,3567665151,BE 3567665152,3567673343,ES 3567673344,3567681535,AT 3567681536,3567714303,ES 3567714304,3567715327,GB 3567715584,3567715839,GB 3567716352,3567717375,GB 3567718400,3567718655,US 3567718656,3567718911,GB 3567718912,3567719423,US 3567719424,3567719679,GB 3567779840,3567845375,DE 3567845376,3567861759,GB 3567861760,3567878143,NO 3567878144,3567976447,ES 3567976448,3568041983,IT 3568041984,3568107519,DE 3568107520,3568173055,GB 3568173056,3568304127,TR 3568304128,3568369663,RU 3568369664,3568435199,IT 3568435200,3568443391,UA 3568443392,3568476159,NL 3568476160,3568484351,DK 3568484352,3568492543,NL 3568492544,3568500735,RS 3568500736,3568566271,IL 3568566272,3568599039,FR 3568599040,3568631807,PL 3568631808,3568697343,SE 3568697344,3568730111,PL 3568730112,3568746495,NL 3568746496,3568762879,FI 3568762880,3568795647,AT 3568795648,3568803839,GB 3568803840,3568812031,IT 3568812032,3568828415,ES 3568828416,3568904191,DE 3568904192,3568904447,GB 3568904448,3568959487,DE 3568959488,3569025023,AT 3569025024,3569057791,NL 3569057792,3569074687,GB 3569074688,3569074943,IE 3569074944,3569075455,GB 3569075456,3569075711,IE 3569075712,3569090559,GB 3569090560,3569123327,RU 3569123328,3569156095,GB 3569156096,3569188863,NL 3569188864,3569221631,IT 3569221632,3569287167,BE 3569287168,3569352703,PL 3569352704,3569483775,RU 3569483776,3569614847,FR 3569614848,3569680383,GB 3569680384,3569713151,SK 3569713152,3569729535,AT 3569729536,3569811175,FR 3569811176,3569811176,GP 3569811177,3569811455,FR 3569811456,3569876991,IL 3569876992,3569942527,RS 3569942528,3570073599,DE 3570073600,3570081791,NL 3570081792,3570106367,CH 3570106368,3570139135,PL 3570139136,3570171903,DE 3570171904,3570204671,NL 3570204672,3570270207,GR 3570270208,3570335743,NL 3570335744,3570401279,GB 3570401280,3570466815,FR 3570466816,3570532351,SE 3570532352,3570597887,IT 3570597888,3570614271,GB 3570614272,3570617343,DE 3570617344,3570618367,GB 3570618368,3570622207,DE 3570622208,3570630655,GB 3570630656,3570663423,DE 3570663424,3570728959,GB 3570728960,3570729983,FI 3570729984,3570731007,SE 3570731008,3570794495,FI 3570794496,3570860031,SE 3570860032,3570892799,CH 3570892800,3570925567,SA 3570925568,3570991103,IT 3570991104,3571023871,MA 3571023872,3571056639,SE 3571056640,3571122175,DE 3571122176,3571187711,GB 3571187712,3571253247,RU 3571253248,3571286015,BE 3571286016,3571318783,DE 3571318784,3571321055,GB 3571321056,3571321071,DE 3571321072,3571321823,GB 3571321824,3571321855,DE 3571321856,3571384319,GB 3571384320,3571425695,DE 3571425696,3571425727,ES 3571425728,3571474431,DE 3571474432,3571475455,US 3571475456,3571482623,DE 3571482624,3571515391,BE 3571515392,3571548159,GB 3571548160,3571580927,ES 3571580928,3571646463,FI 3571646464,3571688383,DE 3571688384,3571689215,ES 3571689216,3571699711,DE 3571699712,3571700735,GB 3571700736,3571711999,DE 3571712000,3571843071,GB 3571843072,3571974143,ES 3571974144,3571978239,RU 3571978240,3571980287,SK 3571980288,3571982335,AT 3571982336,3572006911,RU 3572006912,3572039679,CH 3572039680,3572047871,BE 3572047872,3572056063,LU 3572056064,3572072447,RU 3572072448,3572105215,BG 3572105216,3572170751,FR 3572170752,3572203519,IL 3572203520,3572236287,SI 3572236288,3572301823,AT 3572301824,3572367359,DK 3572367360,3572432895,NL 3572432896,3572465663,IT 3572465664,3572498431,BE 3572498432,3572563967,GB 3572563968,3572572159,KG 3572572160,3572580351,NL 3572580352,3572596735,AT 3572596736,3572629503,GB 3572629504,3572695039,DK 3572695040,3572760575,CH 3572760576,3572826111,PL 3572826112,3572891647,IT 3572891648,3572957183,FI 3572957184,3573022719,SE 3573022720,3573055487,RU 3573055488,3573088255,GB 3573088256,3573153791,CH 3573153792,3573219327,GB 3573219328,3573252095,GR 3573252096,3573284863,NO 3573284864,3573415935,TR 3573415936,3573481471,CH 3573481472,3573547007,DE 3573547008,3573612543,ES 3573612544,3573743615,GB 3573743616,3573809151,CH 3573809152,3573874687,ES 3573874688,3573878783,PL 3573878784,3573879807,RU 3573879808,3573880831,MD 3573880832,3573882879,RU 3573882880,3573884927,DK 3573884928,3573886975,PL 3573886976,3573889023,RU 3573889024,3573891071,HR 3573891072,3573893119,NL 3573893120,3573897215,RU 3573897216,3573899263,GB 3573899264,3573903359,RU 3573903360,3573905407,SI 3573905408,3573909503,RU 3573909504,3573913599,PL 3573913600,3573915647,CH 3573915648,3573917695,RU 3573917696,3573919743,SA 3573919744,3573921791,GB 3573921792,3573923839,RU 3573923840,3573925887,UA 3573925888,3573929983,PL 3573929984,3573934079,RU 3573936128,3573938175,RU 3573938176,3573940223,PL 3573940224,3574005759,PS 3574005760,3574071295,CY 3574071296,3574136831,IL 3574136832,3574169599,DE 3574169600,3574174839,GB 3574174840,3574174847,ES 3574174848,3574182904,GB 3574182905,3574182905,ES 3574182906,3574186799,GB 3574186800,3574186815,ES 3574186816,3574187007,GB 3574187008,3574188031,ES 3574188032,3574190591,GB 3574190592,3574190847,ES 3574190848,3574191615,GB 3574191616,3574192127,ES 3574192128,3574195199,GB 3574195200,3574196223,ES 3574196224,3574198271,GB 3574198272,3574199295,ES 3574199296,3574199807,GB 3574199808,3574202367,ES 3574202368,3574267903,NL 3574267904,3574333439,FR 3574333440,3574341631,GB 3574348288,3574348543,GB 3574398976,3574464511,PT 3574464512,3574530047,TR 3574530048,3574531631,SE 3574531632,3574531639,GB 3574531640,3574594559,SE 3574594560,3574595583,GB 3574595584,3574596607,FR 3574596608,3574596863,MF 3574596864,3574598143,FR 3574598144,3574598399,MQ 3574598400,3574598655,FR 3574598656,3574598911,MQ 3574598912,3574599423,FR 3574599424,3574599679,MQ 3574599680,3574601215,FR 3574601216,3574601471,GP 3574601472,3574603775,FR 3574603776,3574611967,BG 3574611968,3574628351,HU 3574628352,3574661119,GR 3574661120,3574693887,NL 3574693888,3574726655,PL 3574726656,3574792191,GB 3574792192,3574824959,CZ 3574824960,3574830079,GB 3574830080,3574831103,NL 3574831104,3574842367,GB 3574842368,3574842623,NL 3574842624,3574857727,GB 3574857728,3574923263,DE 3574923264,3574939647,RU 3574939648,3574941375,SE 3574941376,3574941439,NO 3574941440,3574949743,SE 3574949744,3574949759,NO 3574949760,3574956031,SE 3574956032,3574972415,IT 3574972416,3574988799,LV 3574988800,3575054335,PT 3575054336,3575119871,DE 3575119872,3575185407,RU 3575185408,3575250943,PL 3575250944,3575316479,IT 3575316480,3575349247,RU 3575349248,3575382015,ES 3575382016,3575447551,FI 3575447552,3575513087,CZ 3575513088,3575545855,PT 3575545856,3575562239,FR 3575562240,3575578623,DE 3575578624,3575589631,BE 3575589632,3575589887,CY 3575589888,3575640063,BE 3575640064,3575644159,TR 3575644160,3575709695,DK 3575709696,3575742463,AT 3575742464,3575775231,RU 3575775232,3575824383,NL 3575824384,3575832575,KW 3575832576,3575840767,NL 3575840768,3575873535,GB 3575873536,3575906303,EE 3575906304,3575971839,FR 3575971840,3576037375,ES 3576038208,3576038271,GB 3576038336,3576038463,GB 3576038528,3576038591,GB 3576038912,3576038975,GB 3576039168,3576039231,GB 3576039360,3576039383,GB 3576039392,3576039455,GB 3576039520,3576039551,GB 3576039584,3576039647,GB 3576039808,3576039839,GB 3576039904,3576039935,GB 3576040064,3576040127,GB 3576040216,3576040223,GB 3576040272,3576040287,GB 3576040352,3576040383,GB 3576040832,3576040959,GB 3576041472,3576041535,GB 3576041728,3576041791,GB 3576041832,3576041847,GB 3576041864,3576041871,GB 3576041880,3576041887,GB 3576041904,3576041919,GB 3576041936,3576041943,GB 3576041952,3576041975,GB 3576042112,3576042239,GB 3576042496,3576042623,GB 3576042688,3576042695,GB 3576042752,3576042815,GB 3576045584,3576045599,GB 3576045664,3576045679,GB 3576045712,3576045735,GB 3576045800,3576045807,GB 3576045816,3576045823,GB 3576048640,3576048767,GB 3576048960,3576049023,GB 3576049152,3576050047,GB 3576053760,3576054911,GB 3576055104,3576055111,GB 3576055120,3576055127,GB 3576055152,3576055167,GB 3576055184,3576055199,GB 3576055208,3576055215,GB 3576055280,3576055551,GB 3576055808,3576055871,GB 3576055936,3576055999,GB 3576056192,3576056255,GB 3576056320,3576056447,GB 3576056704,3576056767,GB 3576056856,3576056871,GB 3576056880,3576056887,GB 3576056920,3576056927,GB 3576056936,3576056943,GB 3576056952,3576056975,GB 3576056992,3576056999,GB 3576057040,3576057047,GB 3576057632,3576057647,GB 3576057712,3576057743,GB 3576057824,3576057839,GB 3576058880,3576059007,GB 3576059648,3576059679,GB 3576059712,3576059743,GB 3576059776,3576059807,GB 3576060288,3576060351,GB 3576061040,3576061055,GB 3576061120,3576061135,GB 3576061184,3576061247,GB 3576061312,3576061439,GB 3576061584,3576061591,GB 3576061620,3576061631,GB 3576061640,3576061647,GB 3576061688,3576061695,GB 3576062464,3576062479,GB 3576064320,3576064448,GB 3576064544,3576064559,GB 3576065856,3576065887,GB 3576066304,3576066431,GB 3576067072,3576067199,GB 3576068352,3576068479,GB 3576068864,3576068927,GB 3576069056,3576069119,GB 3576069248,3576069279,GB 3576069312,3576069343,GB 3576070696,3576070703,GB 3576070712,3576070719,GB 3576070728,3576070735,GB 3576070776,3576070783,GB 3576071296,3576071423,GB 3576071552,3576071679,GB 3576071936,3576071951,GB 3576072064,3576072079,GB 3576072288,3576072319,GB 3576072416,3576072447,GB 3576073216,3576073279,GB 3576074752,3576074879,GB 3576075264,3576075327,GB 3576075776,3576075903,GB 3576076272,3576076351,GB 3576076568,3576076575,GB 3576076784,3576076791,GB 3576077440,3576077471,GB 3576077568,3576077695,GB 3576077936,3576077967,GB 3576078144,3576078175,GB 3576078464,3576078591,GB 3576080000,3576080127,GB 3576080224,3576080255,GB 3576080776,3576080783,GB 3576080792,3576080799,GB 3576080808,3576080815,GB 3576080824,3576080831,GB 3576082080,3576082111,GB 3576082192,3576082223,GB 3576082688,3576082943,GB 3576084480,3576084543,GB 3576084608,3576084671,GB 3576084704,3576084735,GB 3576084864,3576084927,GB 3576085184,3576085215,GB 3576086016,3576086143,GB 3576086368,3576086399,GB 3576086496,3576086527,GB 3576086568,3576086571,GB 3576086576,3576086591,GB 3576086600,3576086603,GB 3576087808,3576087823,GB 3576087952,3576087967,GB 3576088032,3576088047,GB 3576088224,3576088231,GB 3576088376,3576088383,GB 3576088480,3576088511,GB 3576088960,3576088967,GB 3576089024,3576089039,GB 3576089440,3576089471,GB 3576089776,3576089791,GB 3576091408,3576091423,GB 3576091456,3576091479,GB 3576091904,3576092159,GB 3576092864,3576092895,GB 3576093064,3576093071,GB 3576093184,3576093247,GB 3576095232,3576096767,GB 3576099072,3576100863,GB 3576101376,3576110939,GB 3576110940,3576110943,NL 3576110944,3576116127,GB 3576116128,3576116135,DE 3576116136,3576134653,GB 3576134654,3576134654,CH 3576134655,3576135679,GB 3576135680,3576168447,DE 3576168448,3576233983,GB 3576233984,3576236543,FR 3576236544,3576241991,GB 3576241992,3576241999,FR 3576242000,3576242383,GB 3576242384,3576242391,FR 3576242392,3576250111,GB 3576250112,3576250367,FR 3576250368,3576251711,GB 3576251712,3576251775,FR 3576251776,3576252415,GB 3576252416,3576252671,FR 3576252672,3576253807,GB 3576253808,3576253815,FR 3576253816,3576254511,GB 3576254512,3576254527,FR 3576254528,3576254695,GB 3576254696,3576254703,FR 3576254704,3576254775,GB 3576254776,3576254783,FR 3576254784,3576260607,GB 3576260608,3576260623,FR 3576260624,3576260863,GB 3576260864,3576261119,FR 3576261120,3576263919,GB 3576263920,3576263935,FR 3576263936,3576264255,GB 3576264256,3576264263,FR 3576264264,3576264351,GB 3576264352,3576264359,FR 3576264360,3576264375,GB 3576264376,3576264383,FR 3576264384,3576264679,GB 3576264680,3576264687,FR 3576264688,3576264959,GB 3576264960,3576265215,FR 3576265216,3576266751,GB 3576266752,3576299519,FR 3576299520,3576365055,AE 3576365056,3576430591,TR 3576430592,3576496127,FR 3576496128,3576561663,IT 3576561664,3576622100,NL 3576622101,3576622101,GB 3576622102,3576627199,NL 3576627200,3576692735,AT 3576692736,3576758271,GB 3576758272,3576823807,BE 3576823808,3576889343,SE 3576889344,3576954879,NL 3576954880,3576987647,NO 3576987648,3576999935,GB 3576999936,3577000191,NL 3577000192,3577020415,GB 3577020416,3577085951,NL 3577085952,3577151487,DE 3577151488,3577151743,RE 3577151744,3577153023,FR 3577153024,3577153279,RE 3577153280,3577154303,FR 3577154304,3577154815,RE 3577154816,3577155327,FR 3577155328,3577155839,RE 3577155840,3577156095,FR 3577156096,3577156607,RE 3577156608,3577157375,FR 3577157376,3577157631,RE 3577157632,3577157887,FR 3577157888,3577158143,RE 3577158144,3577158399,FR 3577158400,3577158655,RE 3577158656,3577159423,FR 3577159424,3577159679,RE 3577159680,3577159935,FR 3577159936,3577160447,RE 3577160448,3577161983,FR 3577161984,3577162751,RE 3577162752,3577163007,FR 3577163008,3577163263,RE 3577163264,3577164073,FR 3577164074,3577164074,RE 3577164075,3577166079,FR 3577166080,3577166335,RE 3577166336,3577167871,FR 3577167872,3577184255,ET 3577184256,3577217023,CH 3577217024,3577282559,FR 3577282560,3577348095,IL 3577348096,3577413631,PT 3577413632,3577479167,RU 3577479168,3577544703,ES 3577544704,3577545983,DE 3577545984,3577546111,SE 3577546112,3577610239,DE 3577626176,3577626239,GB 3577628672,3577629695,CH 3577635840,3577636863,DE 3577636864,3577637887,GB 3577641200,3577641215,FR 3577641472,3577641983,FR 3577642496,3577642751,FR 3577650048,3577650063,NL 3577663488,3577664511,SE 3577669632,3577670655,BE 3577675776,3577741311,PT 3577741312,3578003455,SE 3578003456,3578265599,DE 3578265600,3578331135,GB 3578331136,3578339327,PL 3578339328,3578347519,ES 3578347520,3578363903,DE 3578363904,3578396671,NL 3578396672,3578462207,TR 3578462208,3578527743,NL 3578527744,3578658815,PL 3578658816,3578724351,GB 3578724352,3578732543,RU 3578732544,3578740735,IE 3578740736,3578757119,RU 3578757120,3578808575,SE 3578808576,3578808831,FI 3578808832,3578822655,SE 3578822656,3578855423,RU 3578855424,3578888191,GB 3578888192,3578920959,SK 3578920960,3578986495,IT 3578986496,3579002879,DE 3579002880,3579019263,GB 3579019264,3579052031,DK 3579052032,3579117567,NL 3579117568,3579183103,RU 3579183104,3579193607,GB 3579193608,3579193615,NL 3579193616,3579193759,GB 3579193760,3579193775,NL 3579193776,3579197311,GB 3579197312,3579197439,US 3579197440,3579244831,GB 3579244832,3579244879,AT 3579244880,3579248639,GB 3579248640,3579346943,RU 3579346944,3579362055,SE 3579362056,3579362063,NO 3579362064,3579445247,SE 3579445248,3579478015,AT 3579478016,3579527167,FR 3579527168,3579543551,BA 3579543552,3579576319,BG 3579576320,3579609087,IT 3579609088,3579641855,PL 3579641856,3579707391,NL 3579707392,3579723775,ES 3579723776,3579740159,AT 3579740160,3579772927,IE 3579772928,3579838463,DE 3579838464,3580100607,ES 3580100608,3580103679,SE 3580103680,3580106751,LV 3580106752,3580112895,SE 3580112896,3580116991,LV 3580116992,3580131327,SE 3580131328,3580133375,LV 3580133376,3580135423,SE 3580135424,3580135935,EE 3580135936,3580136447,SE 3580136448,3580138495,HR 3580138496,3580150783,SE 3580150784,3580151039,NL 3580151040,3580162047,SE 3580162048,3580164095,EE 3580164096,3580165887,SE 3580165888,3580166143,NL 3580166144,3580199935,SE 3580199936,3580200447,EE 3580200448,3580201983,SE 3580201984,3580203007,LT 3580203008,3580204543,SE 3580204544,3580205055,NL 3580205056,3580206079,SE 3580206080,3580207103,HR 3580207104,3580208127,LV 3580208128,3580209151,EE 3580209152,3580213247,HR 3580213248,3580214271,LV 3580214272,3580215295,SE 3580215296,3580217343,EE 3580217344,3580221439,SE 3580221440,3580221951,LV 3580221952,3580223487,SE 3580223488,3580231679,DE 3580231680,3580232447,SE 3580232448,3580233215,LT 3580233216,3580233727,SE 3580233728,3580235263,LT 3580235264,3580235775,SE 3580235776,3580236799,LT 3580236800,3580237567,LV 3580237568,3580239871,SE 3580239872,3580241919,EE 3580241920,3580243967,SE 3580243968,3580244991,EE 3580244992,3580246015,LT 3580246016,3580248063,LV 3580248064,3580254207,EE 3580254208,3580255231,LV 3580255232,3580258303,DE 3580258304,3580258815,SE 3580258816,3580260351,DE 3580260352,3580265471,AT 3580265472,3580266495,SE 3580266496,3580268543,EE 3580268544,3580272639,LV 3580272640,3580276735,SE 3580276736,3580338175,NL 3580338176,3580338687,SE 3580338688,3580339199,HR 3580339200,3580339711,SE 3580339712,3580340223,EE 3580340224,3580344319,LT 3580344320,3580354559,SE 3580354560,3580362751,LT 3580362752,3580624895,GB 3580624896,3580626943,RU 3580626944,3580628991,PL 3580628992,3580631039,RU 3580631040,3580632063,NL 3580632064,3580632319,PL 3580632320,3580633087,NL 3580633088,3580635135,RU 3580635136,3580637183,UA 3580639232,3580641279,PL 3580641280,3580643327,FR 3580643328,3580645375,UA 3580645376,3580647423,PL 3580647424,3580647679,GB 3580647680,3580647935,DE 3580647936,3580648027,GB 3580648028,3580648028,DE 3580648029,3580648447,GB 3580648448,3580649471,DE 3580649472,3580651519,SE 3580651520,3580653567,NL 3580653568,3580655615,PL 3580655616,3580657663,SK 3580657664,3580663807,RU 3580663808,3580665855,PL 3580665856,3580667903,CZ 3580667904,3580669951,RU 3580669952,3580671999,UA 3580672000,3580674047,RU 3580676096,3580682239,RU 3580682240,3580684287,PL 3580684288,3580686335,FR 3580688384,3580698623,RU 3580698624,3580702719,PL 3580702720,3580710911,RU 3580710912,3580715007,UA 3580715008,3580719103,RU 3580719104,3580723199,NL 3580723200,3580727295,UA 3580727296,3580731391,RU 3580739584,3580743679,RU 3580743680,3580747775,RO 3580747776,3580751871,UA 3580751872,3580755967,IR 3580755968,3580772351,RU 3580772352,3580780543,LV 3580780544,3580805119,UA 3580805120,3580821503,RU 3580821504,3580837887,FR 3580837888,3580887039,UA 3580887040,3581149183,SE 3581157376,3581158399,AT 3581159424,3581161471,IE 3581173760,3581196287,NL 3581198336,3581199359,NL 3581204480,3581214719,SE 3581214720,3581231103,NL 3581239296,3581241343,NL 3581255680,3581258751,FR 3581280256,3581411327,BE 3581411328,3581673471,GB 3581673472,3581922047,NL 3581922048,3581922303,GB 3581922304,3581935615,NL 3581935616,3581943807,RU 3581943808,3581951999,FR 3581952000,3581960191,TR 3581960192,3581976575,DE 3581976576,3581984767,NO 3581984768,3581992959,RU 3581992960,3582001151,GB 3582001152,3582009343,DK 3582009344,3582017535,RU 3582017536,3582025727,GB 3582025728,3582033919,RU 3582033920,3582042111,CZ 3582042112,3582050303,ES 3582050304,3582058495,NL 3582058496,3582066687,AT 3582066688,3582074879,UA 3582074880,3582077439,GB 3582077440,3582077471,DE 3582077472,3582083071,GB 3582083072,3582091263,BG 3582091264,3582099455,QA 3582099456,3582107647,GB 3582107648,3582115839,NL 3582115840,3582115903,EE 3582115904,3582115935,SE 3582115936,3582115967,EE 3582115968,3582116863,SE 3582116864,3582117887,EE 3582117888,3582120959,LT 3582120960,3582121983,EE 3582121984,3582124031,LT 3582124032,3582132223,FI 3582132224,3582140415,RU 3582140416,3582148607,GE 3582148608,3582156799,EG 3582156800,3582164991,GB 3582164992,3582173183,SE 3582173184,3582181375,GB 3582181376,3582190927,DE 3582190928,3582190931,FR 3582190932,3582197759,DE 3582197760,3582205951,DK 3582205952,3582214143,AE 3582214144,3582222335,RU 3582222336,3582225719,SE 3582225720,3582225727,FI 3582225728,3582227391,SE 3582227392,3582227455,FI 3582227456,3582230527,SE 3582230528,3582238719,BE 3582238720,3582251319,NL 3582251320,3582251327,FI 3582251328,3582255103,NL 3582255104,3582263295,KW 3582263296,3582271487,ME 3582271488,3582279679,NL 3582279680,3582287871,GB 3582287872,3582296063,DE 3582296064,3582304255,GB 3582304256,3582312447,UA 3582312448,3582320639,JE 3582320640,3582328831,CH 3582328832,3582337023,HU 3582337024,3582345215,PT 3582345216,3582353407,IT 3582353408,3582361599,SE 3582361600,3582377983,PL 3582377984,3582386175,RU 3582386176,3582394367,NL 3582394368,3582402559,DE 3582402560,3582410751,PL 3582410752,3582435327,RU 3582435328,3582443519,MK 3582443520,3582451711,DE 3582451712,3582459903,LU 3582459904,3582468095,NL 3582468096,3582476287,SE 3582476288,3582484479,DE 3582484480,3582492671,CI 3582492672,3582509055,IT 3582509056,3582517247,SA 3582517248,3582525439,PL 3582525440,3582533631,IM 3582533632,3582541823,IT 3582541824,3582550015,US 3582550016,3582558207,RS 3582558208,3582570911,MC 3582570912,3582570943,FR 3582572416,3582572423,CH 3582574592,3582582783,DE 3582582784,3582590975,RU 3582590976,3582599167,FR 3582599168,3582607359,DE 3582607360,3582615551,RU 3582615552,3582623743,GB 3582623744,3582631935,FI 3582631936,3582640127,NO 3582640128,3582648319,RU 3582648320,3582656511,PT 3582656512,3582664703,ES 3582664704,3582672895,JO 3582672896,3582681087,DE 3582681088,3582689279,FR 3582689280,3582697471,DE 3582697472,3582705663,FI 3582705664,3582722047,TR 3582722048,3582730239,IT 3582730240,3582736383,ES 3582736384,3582737407,DZ 3582737408,3582738431,ES 3582738432,3582746623,DK 3582746624,3582754815,RU 3582754816,3582763007,GR 3582763008,3582771199,FI 3582771200,3582779391,CY 3582779392,3582787583,RU 3582787584,3582795775,PT 3582795776,3582803967,ES 3582803968,3582812159,SE 3582812160,3582820351,FI 3582820352,3582828543,RU 3582828544,3582836735,KZ 3582836736,3582853119,RU 3582853120,3582861311,SE 3582861312,3582869503,RU 3582869504,3582877695,NO 3582877696,3582885887,AT 3582885888,3582894079,TR 3582894080,3582902271,CH 3582902272,3582910463,RU 3582910464,3582916607,SI 3582916608,3582917631,ZA 3582917632,3582918655,LU 3582918656,3582926847,GB 3582926848,3582935039,ES 3582935040,3582943231,SI 3582943232,3582951423,AT 3582951424,3582959615,GB 3582959616,3582967807,FI 3582967808,3582975999,DE 3582976000,3582984191,TR 3582984192,3582992383,DE 3582992384,3583000575,ES 3583000576,3583008767,IT 3583008768,3583016959,TR 3583016960,3583025151,CH 3583025152,3583031807,IT 3583031808,3583032063,GR 3583032064,3583033343,IT 3583033344,3583041535,FR 3583041536,3583049727,NL 3583049728,3583066111,RU 3583066112,3583074303,DE 3583074304,3583082495,BG 3583082496,3583090687,KG 3583090688,3583098879,NO 3583098880,3583107071,FI 3583107072,3583115263,AT 3583115264,3583123455,CH 3583123456,3583131647,PL 3583131648,3583139839,SE 3583139840,3583148031,DE 3583148032,3583157503,GB 3583157504,3583157759,IE 3583157760,3583160319,GB 3583160320,3583161343,DE 3583161344,3583164415,GB 3583164416,3583172607,PT 3583172608,3583188991,DE 3583188992,3583197183,RU 3583197184,3583205375,KE 3583205376,3583213567,HR 3583213568,3583221759,IR 3583221760,3583229951,AT 3583229952,3583238143,RU 3583238144,3583246335,GB 3583246336,3583254527,RU 3583254528,3583262719,GB 3583262720,3583270911,TR 3583270912,3583287295,DE 3583287296,3583295487,RU 3583295488,3583303679,ES 3583303680,3583311871,NL 3583311872,3583320063,RU 3583320064,3583328255,HR 3583328256,3583336447,DE 3583336448,3583337727,ME 3583337728,3583337983,AL 3583337984,3583338143,ME 3583338144,3583338175,RS 3583338176,3583344639,ME 3583344640,3583352831,BG 3583352832,3583361023,CY 3583361024,3583369215,IT 3583369216,3583377407,ES 3583377408,3583385599,AT 3583385600,3583390207,DK 3583390208,3583390463,LV 3583390464,3583393791,DK 3583393792,3583401983,RU 3583401984,3583410175,KE 3583410176,3583418367,SE 3583418368,3583426559,TN 3583426560,3583428607,CV 3583428608,3583430655,CI 3583430656,3583434751,ZA 3583434752,3583442943,AT 3583442944,3583451135,RU 3583451136,3583459327,IL 3583459328,3583467519,CZ 3583467520,3583475711,ES 3583475712,3583483903,NO 3583483904,3583492095,FR 3583492096,3583508479,SK 3583508480,3583516671,FR 3583516672,3583524863,GB 3583524864,3583533055,EG 3583533056,3583541247,DE 3583541248,3583549439,RU 3583549440,3583557631,NL 3583557632,3583565823,IT 3583565824,3583574015,GB 3583574016,3583582207,NO 3583582208,3583590399,AT 3583590400,3583598591,DE 3583598592,3583606783,SE 3583606784,3583639551,TR 3583639552,3583647743,AZ 3583647744,3583655935,EG 3583655936,3583664127,SN 3583664128,3583680511,RO 3583680512,3583688703,RU 3583688704,3583696895,UA 3583696896,3583705087,NL 3583705088,3583713279,UA 3583713280,3583721471,CZ 3583721472,3583729663,DE 3583729664,3583737855,TR 3583740928,3583741183,GB 3583742976,3583743487,PL 3583743616,3583743743,GB 3583743744,3583743999,IE 3583744128,3583744255,PL 3583744320,3583744447,GB 3583744512,3583744767,GB 3583744960,3583744991,GB 3583745216,3583745279,SE 3583745280,3583745535,GB 3583745536,3583745663,CZ 3583746048,3583754239,PL 3583754240,3583762431,RU 3583762432,3583770623,CZ 3583770624,3583778815,NL 3583778816,3583787007,IT 3583787008,3583795199,UA 3583795200,3583803391,PL 3583803392,3583811583,RU 3583811584,3583819775,DE 3583819776,3583827967,RU 3583827968,3583836159,CH 3583836160,3583844351,DE 3583844352,3583852543,KZ 3583852544,3583854783,FI 3583854784,3583854847,GB 3583854848,3583860735,FI 3583860736,3583868927,HU 3583868928,3583877119,AT 3583877120,3583885311,RO 3583885312,3583893503,GE 3583893504,3583901695,SI 3583901696,3583909887,RU 3583909888,3583918079,SE 3583918080,3583926271,IT 3583926272,3583934463,DE 3583934464,3583942655,CH 3583942656,3583950847,EG 3583950848,3583959039,PL 3583959040,3583967231,NO 3583967232,3583975423,NL 3583975424,3583983231,LT 3583983232,3583983359,BR 3583983360,3583983615,LT 3583983616,3583999999,RU 3584000000,3584008191,IE 3584008192,3584016383,SE 3584016384,3584024575,RU 3584024576,3584032767,UA 3584032768,3584040959,DE 3584040960,3584049151,CH 3584049152,3584057343,DE 3584057344,3584065535,GB 3584065536,3584073727,UA 3584073728,3584081919,SK 3584081920,3584082007,NL 3584082008,3584082015,AT 3584082016,3584090111,NL 3584090112,3584096255,NO 3584096256,3584098303,NL 3584098304,3584106495,SI 3584106496,3584114687,FI 3584114688,3584122879,GB 3584122880,3584131071,PL 3584131072,3584139263,TR 3584139264,3584147455,NO 3584147456,3584155647,FR 3584155648,3584163839,NO 3584163840,3584172031,CH 3584172032,3584180223,FR 3584180224,3584188415,AT 3584188416,3584196607,GB 3584196608,3584204799,DE 3584204800,3584212991,NL 3584212992,3584221183,ES 3584221184,3584229375,NO 3584229376,3584245759,HU 3584245760,3584253951,NL 3584253952,3584262143,AL 3584262144,3584270335,SE 3584270336,3584278527,FR 3584278528,3584286719,GB 3584286720,3584303103,AT 3584303104,3584311295,ES 3584311296,3584319487,DE 3584319488,3584327679,LT 3584327680,3584335871,DE 3584335872,3584344063,ES 3584344064,3584352255,SE 3584352256,3584360447,RO 3584360448,3584368639,GB 3584368640,3584376831,SA 3584376832,3584393215,DE 3584393216,3584401407,GB 3584401408,3584409599,MT 3584409600,3584417791,RU 3584417792,3584434175,GB 3584434176,3584442367,LU 3584442368,3584450559,GB 3584458752,3584466943,SA 3584466944,3584475135,NO 3584475136,3584483327,FR 3584483328,3584491519,DE 3584491520,3584499711,BG 3584499712,3584507903,RU 3584507904,3584509231,GB 3584509232,3584509239,AW 3584509240,3584509855,GB 3584509856,3584509871,AW 3584509872,3584516095,GB 3584516096,3584524287,NO 3584524288,3584532479,IS 3584532480,3584540671,DE 3584540672,3584548863,RU 3584548864,3584549887,ES 3584549888,3584550911,FR 3584550912,3584552959,IT 3584552960,3584557055,FR 3584557056,3584565247,EE 3584565248,3584573439,RU 3584573440,3584589823,DE 3584589824,3584598015,RU 3584598016,3584606207,CZ 3584606208,3584614399,DE 3584614400,3584620543,IE 3584620544,3584621567,GB 3584621568,3584622591,IE 3584622592,3584630783,FI 3584630784,3584638975,BG 3584638976,3584647167,UA 3584647168,3584655359,LU 3584655360,3584663551,CY 3584663552,3584671743,FR 3584671744,3584688127,NL 3584688128,3584696319,GB 3584696320,3584701751,ES 3584701752,3584701823,NL 3584701824,3584701991,ES 3584701992,3584702007,CH 3584702008,3584703095,ES 3584703096,3584703103,BE 3584703104,3584704511,ES 3584704512,3584720895,RU 3584720896,3584729087,GB 3584729088,3584737279,DE 3584745472,3584753663,DK 3584753664,3584770047,RU 3584770048,3584778239,NL 3584778240,3584786431,IT 3584786432,3584794623,NL 3584794624,3584802815,IT 3584802816,3584811007,GB 3584811008,3584819199,ES 3584819200,3584827391,RU 3584827392,3584835583,ES 3584835584,3584843775,AZ 3584843776,3584851967,DE 3584851968,3584860159,ZA 3584860160,3584868351,PL 3584868352,3584876543,NO 3584876544,3584884735,SI 3584884736,3584892927,DE 3584901120,3584909311,AT 3584909312,3584917503,IT 3584917504,3584925695,FI 3584925696,3584933887,CH 3584933888,3584937983,NO 3584937984,3584942079,NL 3584942080,3584950271,DK 3584950272,3584958463,UA 3584958464,3584966655,DE 3584966656,3584971263,DK 3584971264,3584972287,FI 3584972288,3584974847,DK 3584974848,3584983039,FR 3584983040,3584991231,US 3584991232,3584999423,IT 3584999424,3585007615,GB 3585007616,3585015807,AT 3585015808,3585023999,IT 3585024000,3585032191,CZ 3585032192,3585048575,LV 3585048576,3585056767,GB 3585056768,3585064959,LB 3585064960,3585081343,GB 3585081344,3585114111,IR 3585114112,3585122303,IS 3585122304,3585130495,ES 3585130496,3585138687,FR 3585138688,3585146879,RU 3585146880,3585155071,RO 3585155072,3585163263,GB 3585163264,3585171455,BE 3585171456,3585179647,RU 3585179648,3585190527,BE 3585190528,3585190655,DZ 3585190656,3585196031,BE 3585196032,3585204223,ES 3585204224,3585212415,GB 3585212416,3585220607,DE 3585220608,3585228799,RU 3585228800,3585236991,DE 3585236992,3585245183,HU 3585245184,3585253375,GB 3585253376,3585261567,DE 3585261568,3585269759,IT 3585269760,3585277951,SY 3585277952,3585286143,SE 3585286144,3585288959,NO 3585288960,3585291007,GB 3585291008,3585292543,NO 3585292544,3585292863,GB 3585292864,3585292895,NO 3585292896,3585293263,GB 3585293264,3585293271,ZA 3585293272,3585294335,GB 3585294336,3585302527,DE 3585302528,3585310719,ES 3585310720,3585318911,DE 3585318912,3585327103,DZ 3585327104,3585335295,NL 3585335296,3585343487,UA 3585343488,3585351679,EE 3585351680,3585359871,CZ 3585359872,3585368063,SE 3585368064,3585376255,LV 3585376256,3585384447,PL 3585384448,3585392639,CH 3585392640,3585400831,RU 3585400832,3585409023,FR 3585409024,3585417215,RU 3585417216,3585425407,BE 3585425408,3585433599,ES 3585433600,3585441791,IS 3585441792,3585449983,SK 3585449984,3585458175,SA 3585458176,3585466367,HU 3585466368,3585474559,EG 3585474560,3585482751,DE 3585482752,3585490943,FR 3585490944,3585499135,IT 3585499136,3585515519,DE 3585515520,3585523711,RU 3585523712,3585531903,LV 3585531904,3585540095,AT 3585540096,3585548287,DE 3585548288,3585556479,RU 3585556480,3585564671,DE 3585564672,3585572863,RU 3585572864,3585581055,IT 3585581056,3585597439,DE 3585597440,3585605631,RU 3585605632,3585613823,PL 3585613824,3585622015,EE 3585630208,3585632255,IL 3585632256,3585632511,GB 3585632512,3585632639,NL 3585632640,3585632767,IL 3585632768,3585633535,GB 3585633536,3585634047,IT 3585634048,3585634303,IL 3585634304,3585634559,IT 3585634560,3585634687,IL 3585634688,3585634815,NL 3585634816,3585635071,IT 3585635072,3585635199,NL 3585635200,3585635455,IL 3585635456,3585635711,NL 3585635712,3585635967,IL 3585635968,3585636095,NL 3585636096,3585637375,IL 3585637376,3585637503,NL 3585637504,3585638399,IL 3585638400,3585646591,RU 3585646592,3585654783,SA 3585654784,3585662975,NO 3585662976,3585671167,BY 3585671168,3585675306,SE 3585675307,3585675307,DK 3585675308,3585679359,SE 3585679360,3585687551,FI 3585687552,3585695743,DE 3585695744,3585703935,GB 3585703936,3585712127,DE 3585712128,3585720319,AT 3585720320,3585728511,GB 3585728512,3585736703,SE 3585736704,3585744895,HR 3585744896,3585753087,FR 3585753088,3585761279,PL 3585761280,3585769471,UA 3585769472,3585777663,TR 3585777664,3585785855,JO 3585785856,3585794047,UA 3585794048,3585802239,FI 3585802240,3585810431,IT 3585810432,3585818623,GB 3585818624,3585826815,DE 3585826816,3585835007,RU 3585835008,3585843199,US 3585843200,3585851391,NO 3585851392,3585859583,SE 3585859584,3585860607,AF 3585860608,3585861631,RU 3585861632,3585863679,EE 3585863680,3585865471,NL 3585865472,3585865727,LB 3585865728,3585865983,UA 3585865984,3585867775,EE 3585867776,3585875967,NO 3585875968,3585884159,CH 3585884160,3585892351,IQ 3585892352,3585900543,DE 3585900544,3585906687,NO 3585906688,3585907711,CZ 3585907712,3585908735,NO 3585908736,3585910015,GP 3585910016,3585910271,MQ 3585910272,3585916671,GP 3585916672,3585916927,MQ 3585916928,3585925119,IT 3585925120,3585933311,CH 3585933312,3585941503,NL 3585941504,3585949695,PL 3585949696,3585957887,KW 3585957888,3585966079,SE 3585966080,3585974271,CH 3585974272,3585982463,BE 3585982464,3585998847,RU 3585998848,3586007039,ES 3586007040,3586015231,LT 3586015232,3586022687,FR 3586022688,3586022688,GB 3586022689,3586022689,TN 3586022690,3586022690,SE 3586022691,3586022691,BE 3586022692,3586022692,DK 3586022693,3586022693,DE 3586022694,3586022694,IT 3586022695,3586023423,FR 3586023424,3586031615,IS 3586031616,3586039807,IE 3586039808,3586047999,GB 3586048000,3586056191,PT 3586056192,3586072575,RU 3586072576,3586088959,DE 3586088960,3586097151,CZ 3586097152,3586105343,HR 3586105344,3586121727,BG 3586121728,3586129919,IE 3586129920,3586146303,CZ 3586146304,3586162687,PL 3586162688,3586179071,FI 3586179072,3586195455,ES 3586195456,3586203647,RU 3586203648,3586204159,KE 3586204160,3586204671,ZM 3586204672,3586205695,KE 3586205696,3586207743,BW 3586207744,3586208767,ZA 3586208768,3586211071,KE 3586211072,3586211327,BW 3586211328,3586211839,KE 3586211840,3586228223,CH 3586228224,3586244607,BE 3586244608,3586246655,NL 3586246656,3586248703,BE 3586248704,3586260991,NL 3586260992,3586277375,GB 3586277376,3586293759,TR 3586293760,3586310143,ES 3586310144,3586326527,CZ 3586326528,3586342911,IR 3586342912,3586359295,ES 3586359296,3586375679,PL 3586375680,3586392063,CZ 3586392064,3586408447,NL 3586408448,3586424831,BA 3586424832,3586441215,CH 3586441216,3586457599,DE 3586457600,3586473983,NL 3586473984,3586490367,HU 3586490368,3586506751,LT 3586506752,3586523135,NL 3586523136,3586544267,DE 3586544268,3586544271,DK 3586544272,3586544383,DE 3586544384,3586544639,DK 3586544640,3586547711,DE 3586547712,3586547967,NL 3586547968,3586555903,DE 3586555904,3586572287,IT 3586572288,3586588671,RS 3586588672,3586596863,IT 3586596864,3586605055,GB 3586605056,3586621439,SE 3586621440,3586621695,GB 3586621696,3586625535,IE 3586625536,3586629631,GB 3586629632,3586634047,IE 3586634048,3586634079,NL 3586634080,3586634239,IE 3586634240,3586634495,NL 3586634496,3586637823,IE 3586637824,3586654207,PL 3586654208,3586662399,GE 3586662400,3586670591,UA 3586670592,3586675967,DE 3586675968,3586676223,FR 3586676224,3586676991,DE 3586676992,3586677434,FR 3586677435,3586677435,DE 3586677436,3586677631,FR 3586677632,3586677639,DE 3586677640,3586677643,GB 3586677644,3586677647,SG 3586677648,3586677655,US 3586677656,3586679599,FR 3586679600,3586679615,IT 3586679616,3586680511,FR 3586680512,3586680519,GB 3586680520,3586681471,FR 3586681472,3586681487,GB 3586681488,3586681527,FR 3586681528,3586681535,GB 3586681536,3586681615,FR 3586681616,3586681631,CZ 3586681632,3586682239,FR 3586682240,3586682367,US 3586682368,3586682415,FR 3586682416,3586682423,DE 3586682424,3586682879,FR 3586682880,3586686975,US 3586686976,3586703359,SE 3586703360,3586719743,CH 3586719744,3586752511,ES 3586752512,3586785279,NL 3586785280,3586793471,OM 3586793472,3586801663,CH 3586801664,3586818047,HR 3586818048,3586834431,IE 3586834432,3586850815,DE 3586850816,3586867199,NO 3586867200,3586883583,FR 3586883584,3586899967,IT 3586899968,3586911007,DE 3586911008,3586911039,BE 3586911040,3586911103,DE 3586911104,3586911167,NL 3586911168,3586916351,DE 3586916352,3586924543,IT 3586924544,3586929663,AX 3586929664,3586931711,FI 3586931712,3586932735,AX 3586932736,3586949119,LB 3586949120,3586965503,SE 3586965504,3586981887,NL 3586981888,3586998271,IT 3586998272,3587006463,PT 3587006464,3587014655,FR 3587014656,3587055615,GB 3587055616,3587063807,UZ 3587063808,3587080191,NL 3587080192,3587088383,GB 3587088384,3587096575,DE 3587096576,3587121151,NL 3587121152,3587129343,AL 3587129344,3587145727,NL 3587145728,3587162111,CY 3587162112,3587178495,IR 3587178496,3587186687,AT 3587186688,3587186943,DE 3587186944,3587187199,GB 3587187200,3587187455,DE 3587187456,3587187711,GB 3587187712,3587188223,DE 3587188224,3587188479,AM 3587188480,3587193087,DE 3587193088,3587193599,GB 3587193600,3587194879,DE 3587194880,3587211263,GB 3587211264,3587219455,AT 3587219456,3587227647,RU 3587227648,3587230719,GB 3587230720,3587230975,NL 3587230976,3587231231,GB 3587231232,3587231263,NL 3587231264,3587233087,GB 3587233088,3587233095,NL 3587233096,3587234191,GB 3587234192,3587234207,NL 3587234208,3587236095,GB 3587236096,3587236351,NL 3587236352,3587237375,GB 3587237376,3587237887,NL 3587237888,3587238487,GB 3587238488,3587238495,NL 3587238496,3587239487,GB 3587239488,3587239495,NL 3587239496,3587239583,GB 3587239584,3587239599,NL 3587239600,3587239679,GB 3587239680,3587240191,NL 3587240192,3587242495,GB 3587242496,3587242751,NL 3587242752,3587244031,GB 3587244032,3587260415,IT 3587260416,3587284991,DE 3587284992,3587291135,IT 3587291136,3587292159,FR 3587292160,3587309567,IT 3587309568,3587325951,GB 3587325952,3587342335,RU 3587342336,3587358719,CZ 3587358720,3587375103,SA 3587375104,3587383295,TR 3587383296,3587391487,CZ 3587391488,3587407871,KZ 3587407872,3587412223,BE 3587412224,3587413759,NL 3587413760,3587414015,BE 3587414016,3587415039,NL 3587415040,3587422719,BE 3587422720,3587423743,NL 3587423744,3587424255,BE 3587424256,3587440639,DE 3587440640,3587445759,SE 3587445760,3587446015,FI 3587446016,3587446071,SE 3587446072,3587446079,FI 3587446080,3587446143,SE 3587446144,3587446271,FI 3587446272,3587457023,SE 3587457024,3587473407,GB 3587473408,3587489791,IT 3587489792,3587506175,EG 3587506176,3587538943,IT 3587538944,3587547135,IS 3587547136,3587555327,CH 3587555328,3587571711,BE 3587571712,3587579903,DE 3587579904,3587588095,BE 3587588096,3587596287,BG 3587596288,3587604479,NL 3587604480,3587620863,FI 3587620864,3587637247,SE 3587637248,3587646975,FR 3587646976,3587647231,MC 3587647232,3587653631,FR 3587653632,3587670015,SK 3587670016,3587702783,IT 3587702784,3587710975,DE 3587710976,3587719167,CZ 3587719168,3587735551,PL 3587735552,3587751935,GB 3587751936,3587768319,FI 3587776512,3587784703,IR 3587784704,3587801087,DE 3587801088,3587817471,IT 3587817472,3587833855,MT 3587833856,3587842047,DE 3587842048,3587850239,IT 3587850240,3587854335,NL 3587854336,3587866623,PL 3587866624,3587874815,FR 3587874816,3587883007,DE 3587883008,3587915775,GB 3587915776,3587932159,EE 3587932160,3587948543,BE 3587948544,3587964927,RU 3587964928,3587981311,ES 3587981312,3587997695,IS 3587997696,3588014079,DE 3588014080,3588030463,CZ 3588030464,3588046847,RU 3588046848,3588063231,DE 3588063232,3588071423,CH 3588071424,3588079615,GB 3588079616,3588095999,CH 3588096000,3588104191,NL 3588104192,3588112383,BG 3588112384,3588128767,RE 3588128768,3588145151,HU 3588145152,3588153343,PL 3588153344,3588161535,RU 3588161536,3588173055,FR 3588173056,3588173567,RE 3588173568,3588227071,FR 3588227072,3588292607,BE 3588292608,3588308991,AT 3588308992,3588325375,NO 3588325376,3588333567,GB 3588333568,3588341759,FR 3588341760,3588358143,IT 3588358144,3588374527,BG 3588390912,3588394239,LT 3588394240,3588394495,LV 3588394496,3588407295,LT 3588407296,3588423679,CZ 3588423680,3588440063,ES 3588440064,3588456447,PL 3588456448,3588464639,NL 3588464640,3588472831,AT 3588472832,3588489215,UA 3588489216,3588505599,FR 3588505600,3588521983,RU 3588521984,3588538367,PT 3588538368,3588554751,GB 3588554752,3588571135,AT 3588571136,3588587519,GB 3588587520,3588588567,ES 3588588568,3588588575,IT 3588588576,3588590591,ES 3588590592,3588590847,FR 3588590848,3588595199,ES 3588595200,3588595455,FR 3588595456,3588603903,ES 3588603904,3588620287,SI 3588620288,3588628479,SA 3588628480,3588636671,CH 3588636672,3588653055,UZ 3588653056,3588661247,IT 3588661248,3588667391,NO 3588667392,3588668415,SG 3588668416,3588669439,HK 3588669440,3588685823,GB 3588685824,3588702207,UA 3588702208,3588718591,ES 3588718592,3588734975,BG 3588734976,3588751359,PL 3588751360,3588767743,TR 3588767744,3588784127,GB 3588784128,3588800511,CH 3588800512,3588816895,RU 3588816896,3588833279,IT 3588833280,3588849663,RO 3588849664,3588857855,IE 3588857856,3588866047,IR 3588866048,3588882431,NL 3588882432,3588890623,RU 3588890624,3588898815,GB 3588898816,3588915199,NO 3588915200,3588931583,IT 3588931584,3588947967,RU 3588947968,3588964351,GB 3588964352,3588997119,CZ 3588997120,3589013503,AT 3589013504,3589021695,ES 3589021696,3589029887,SA 3589029888,3589030143,NL 3589030144,3589031055,GB 3589031056,3589031056,NL 3589031057,3589034239,GB 3589034240,3589034495,NL 3589034496,3589037055,GB 3589037056,3589037311,NL 3589037312,3589046271,GB 3589046272,3589079039,NO 3589079040,3589128191,DK 3589128192,3589144575,GB 3589144576,3589152767,UA 3589152768,3589160959,DE 3589160960,3589177343,PL 3589177344,3589193727,TR 3589193728,3589210111,SE 3589210112,3589226495,NL 3589226496,3589242879,NO 3589242880,3589259263,NL 3589259264,3589275647,DE 3589275648,3589292031,RS 3589292032,3589308415,AT 3589308416,3589324799,DE 3589324800,3589341183,BG 3589341184,3589373951,PL 3589373952,3589390335,DE 3589390336,3589423103,RU 3589423104,3589426175,GB 3589426176,3589426431,IT 3589426432,3589430591,GB 3589430592,3589430655,ES 3589430656,3589432831,GB 3589432832,3589433087,CH 3589433088,3589433855,GB 3589433856,3589434111,IE 3589434112,3589435759,GB 3589435760,3589435763,ES 3589435764,3589439487,GB 3589439488,3589455871,SE 3589455872,3589472255,RU 3589472256,3589488639,TR 3589488640,3589505023,RU 3589505024,3589521407,FI 3589521408,3589537791,IT 3589537792,3589545983,FR 3589545984,3589554175,DE 3589554176,3589570559,PS 3589570560,3589578751,GB 3589578752,3589579007,NL 3589579008,3589580543,GB 3589580544,3589581055,NL 3589581056,3589582975,GB 3589582976,3589583103,NL 3589583104,3589586943,GB 3589586944,3589587199,DE 3589587200,3589587455,NL 3589587456,3589587967,CH 3589587968,3589599231,RS 3589599232,3589601279,SE 3589601280,3589603327,RS 3589603328,3589668863,FR 3589668864,3589677055,RU 3589677056,3589685247,FR 3589685248,3589718015,GB 3589718016,3589722023,BE 3589722024,3589722031,FR 3589722032,3589734399,BE 3589734400,3589738495,ZA 3589738496,3589739519,EG 3589739520,3589742591,ZA 3589742592,3589746175,NL 3589746176,3589746687,US 3589746688,3589767167,NL 3589767168,3589810431,RU 3589810432,3589810687,PL 3589810688,3589816319,RU 3589825792,3589826047,DE 3589827584,3589827647,DE 3589827712,3589827839,DE 3589828736,3589828991,NL 3589828992,3589829119,ES 3589829504,3589829631,DE 3589829632,3589830143,GB 3589832704,3589849087,TR 3589849088,3589865471,GB 3589865472,3589881855,GR 3589881856,3589890047,NL 3589890048,3589931007,GB 3589931008,3589947391,SI 3589947392,3589963775,FI 3589963776,3589980159,ES 3589980160,3589996543,CZ 3589996544,3590012927,GB 3590012928,3590029311,BE 3590029312,3590045695,FR 3590045696,3590062079,RU 3590062080,3590078463,DE 3590078464,3590094847,RU 3590094848,3590111231,DE 3590111232,3590127615,LT 3590127616,3590143999,GB 3590144000,3590156287,SI 3590156288,3590157311,HR 3590157312,3590158335,RS 3590158336,3590158591,SI 3590158592,3590158847,RS 3590158848,3590160383,SI 3590160384,3590176767,GB 3590176768,3590193151,HU 3590193152,3590201343,IT 3590201344,3590209535,DE 3590209536,3590225919,ES 3590225920,3590234111,TR 3590234112,3590242303,GB 3590242304,3590244351,US 3590244352,3590244607,DE 3590244608,3590245263,FR 3590245264,3590245271,GB 3590245272,3590245311,FR 3590245312,3590245439,US 3590245440,3590247048,FR 3590247049,3590247049,IT 3590247050,3590247103,FR 3590247104,3590247119,GB 3590247120,3590247167,FR 3590247168,3590247231,US 3590247232,3590247295,FR 3590247296,3590247423,US 3590247424,3590247487,FR 3590247488,3590247551,US 3590247552,3590247711,FR 3590247712,3590247743,IE 3590247744,3590247759,FR 3590247760,3590247763,IE 3590247764,3590251647,FR 3590251648,3590251775,NL 3590251776,3590255871,FR 3590255872,3590255935,US 3590255936,3590256127,FR 3590256128,3590256383,ES 3590256384,3590256735,FR 3590256736,3590256767,BE 3590256768,3590257151,US 3590257152,3590258559,FR 3590258560,3590258687,US 3590258688,3590291455,IT 3590291456,3590299647,EG 3590299648,3590307839,FI 3590307840,3590308951,GB 3590308952,3590308959,GH 3590308960,3590312935,GB 3590312936,3590312943,UG 3590312944,3590317951,GB 3590317952,3590318015,UA 3590318016,3590324223,GB 3590324224,3623890943,US 3623890944,3623891199,ZA 3623891200,3623891455,US 3623891456,3623891711,ZA 3623891712,3623891967,US 3623891968,3623892479,ZA 3623892480,3624054783,US 3624054784,3624056831,ZA 3624056832,3624181759,US 3624181760,3624182783,ZA 3624182784,3624206335,US 3624206336,3624208383,ZA 3624208384,3624255487,US 3624255488,3624257535,ZA 3624257536,3624271871,US 3624271872,3624272383,SY 3624272384,3624272447,US 3624272448,3624272451,CA 3624272452,3624272639,US 3624272640,3624272895,DZ 3624272896,3624281087,US 3624281088,3624281343,HT 3624281344,3624284671,US 3624284672,3624284927,CA 3624284928,3624287743,US 3624287744,3624287999,CA 3624288000,3624288255,US 3624288256,3624290303,IN 3624290304,3624292351,CA 3624292352,3624292607,MF 3624292608,3624295423,US 3624295424,3624295679,CA 3624295680,3624295935,US 3624295936,3624296191,LY 3624296192,3624296447,US 3624296448,3624296703,CA 3624296704,3624297471,US 3624297472,3624298495,CO 3624298496,3624299519,PH 3624299520,3624300031,US 3624300032,3624300287,LY 3624300288,3624302335,US 3624302336,3624302591,CA 3624302592,3624303871,US 3624303872,3624304127,CA 3624304128,3624321023,US 3624321024,3624325119,CA 3624325120,3624357887,US 3624357888,3624358143,KN 3624358144,3624359679,US 3624359680,3624360703,CW 3624360704,3624374447,US 3624374448,3624374455,ES 3624374456,3624374559,US 3624374560,3624374599,ES 3624374600,3624375871,US 3624375872,3624375879,NL 3624375880,3624376247,US 3624376248,3624376263,ES 3624376264,3624376287,US 3624376288,3624376295,GB 3624376296,3624376335,US 3624376336,3624376343,AU 3624376344,3624376351,US 3624376352,3624376359,PT 3624376360,3624376655,US 3624376656,3624376679,GB 3624376680,3624377863,US 3624377864,3624377871,GB 3624377872,3624377879,US 3624377880,3624377887,GB 3624377888,3624377903,US 3624377904,3624377911,GB 3624377912,3624386559,US 3624386560,3624394751,CA 3624394752,3624402943,US 3624402944,3624411135,JP 3624411136,3624435711,US 3624435712,3624443903,CA 3624443904,3624443919,US 3624443920,3624452095,CA 3624452096,3624480767,US 3624480768,3624484863,CA 3624484864,3624529919,US 3624529920,3624534015,CA 3624534016,3624534271,PA 3624534272,3624587263,US 3624587264,3624591359,JM 3624591360,3624592383,US 3624592384,3624593919,CA 3624593920,3624714239,US 3624714240,3624722431,SG 3624722432,3624730623,US 3624730624,3624796159,CA 3624796160,3624828927,US 3624828928,3624833023,CA 3624833024,3624845311,US 3624845312,3624849407,AU 3624849408,3624984575,US 3624984576,3624992767,CA 3624992768,3625058303,US 3625058304,3625091071,CA 3625091072,3625116927,US 3625116928,3625117183,SE 3625117184,3625140223,US 3625140224,3625148415,CA 3625148416,3625168895,US 3625168896,3625172991,CA 3625172992,3625256959,US 3625256960,3625257983,CA 3625257984,3625261055,US 3625263104,3625287679,US 3625287680,3625295871,CA 3625295872,3625346047,US 3625346048,3625346303,AR 3625346304,3625418751,US 3625418752,3625420031,CA 3625420032,3625420543,US 3625420544,3625422591,CA 3625422592,3625423103,US 3625423104,3625426943,CA 3625426944,3625508863,US 3625508864,3625512959,CA 3625512960,3625631743,US 3625631744,3625639935,CA 3625639936,3625961983,US 3625961984,3625962239,GB 3625962240,3626091519,US 3626091520,3626092031,AR 3626092032,3626270719,US 3626270720,3626287103,CA 3626287104,3626332159,US 3626332160,3626336255,CA 3626336256,3626508287,US 3626508288,3626512383,CA 3626512384,3626515967,US 3626515968,3626516223,GB 3626516224,3626524671,US 3626524672,3626532863,CA 3626532864,3626852351,US 3626852352,3626860543,CA 3626860544,3626893311,US 3626893312,3626905599,CA 3626905600,3626926079,US 3626926080,3626934271,CA 3626934272,3627044863,US 3627044864,3627048959,CA 3627048960,3627065343,US 3627065344,3627069439,CA 3627069440,3627220223,US 3627220224,3627220479,CA 3627220480,3627299071,US 3627299072,3627299327,IN 3627299328,3627507711,US 3627507712,3627511807,CA 3627511808,3627532287,US 3627532288,3627544575,CA 3627544576,3627659263,US 3627659264,3627663359,CA 3627663360,3627667561,US 3627667562,3627667562,CA 3627667563,3627667564,US 3627667565,3627667565,CA 3627667566,3627679743,US 3627679744,3627712511,CA 3627712512,3627753471,US 3627753472,3627753727,AR 3627753728,3627759071,US 3627759072,3627759103,GB 3627759104,3627802623,US 3627802624,3627810815,CA 3627810816,3627842047,US 3627842048,3627842303,IS 3627842304,3628145919,US 3628145920,3628146175,AU 3628146176,3628153087,US 3628153088,3628153343,KW 3628153344,3628155647,US 3628155648,3628155903,CA 3628155904,3628161023,US 3628161024,3628161279,CA 3628161280,3628179455,US 3628179456,3628187647,CA 3628187648,3628225097,US 3628225098,3628225098,AT 3628225099,3628225387,US 3628225388,3628225395,GB 3628225396,3628225779,US 3628225780,3628225783,GB 3628225784,3628236799,US 3628236800,3628257279,CA 3628257280,3628598271,US 3628598272,3628599295,CO 3628599296,3628603391,CL 3628603392,3628604415,US 3628604416,3628605439,GT 3628605440,3628608511,IL 3628608512,3628609023,VE 3628609024,3628613375,US 3628613376,3628613631,HN 3628613632,3628614399,ID 3628614400,3628614911,CO 3628614912,3628615167,US 3628615168,3628615679,IL 3628615680,3628616191,US 3628616192,3628617215,PR 3628617216,3628617471,HN 3628617472,3628617727,US 3628617728,3628618239,CO 3628618240,3628619775,HN 3628619776,3628622847,US 3628622848,3628623871,PR 3628623872,3628625919,NG 3628625920,3628626175,PA 3628626176,3628626943,HN 3628626944,3628627199,CO 3628627200,3628627455,IL 3628627456,3628627711,HN 3628627712,3628628991,SV 3628628992,3628629247,GT 3628629248,3628629503,US 3628629504,3628631807,VE 3628631808,3628634111,CO 3628634112,3628636159,AR 3628636160,3628636671,VE 3628636672,3628636927,US 3628636928,3628637183,VE 3628637184,3628637695,CO 3628637696,3628638207,US 3628638208,3628646399,CL 3628646400,3628646911,US 3628646912,3628647423,HN 3628647424,3628647679,SZ 3628647680,3628648959,CO 3628648960,3628649215,US 3628649216,3628649727,CO 3628649728,3628654079,US 3628654080,3628654591,PA 3628654592,3628654847,US 3628654848,3628655103,CR 3628655104,3628655359,VE 3628655360,3628657663,CO 3628657664,3628657919,VE 3628657920,3628658175,BS 3628658176,3628679167,US 3628679168,3628683263,CA 3628687360,3628834815,US 3628834816,3628843007,CA 3628843008,3628850687,US 3628850688,3628850943,AU 3628850944,3629187071,US 3629187072,3629195263,CA 3629195264,3629199359,US 3629199360,3629201439,CA 3629201440,3629201447,US 3629201448,3629201471,CA 3629201472,3629201475,US 3629201476,3629201495,CA 3629201496,3629201499,US 3629201500,3629201503,CA 3629201504,3629201507,US 3629201508,3629201935,CA 3629201936,3629201939,US 3629201940,3629202103,CA 3629202104,3629202107,US 3629202108,3629203199,CA 3629203200,3629318143,US 3629318144,3629326335,CA 3629326336,3629539327,US 3629539328,3629547519,CA 3629547520,3629662207,US 3629662208,3629662463,GB 3629662464,3629737215,US 3629737216,3629737471,CA 3629737472,3629767935,US 3629767936,3629768191,CA 3629768192,3629789439,US 3629789440,3629789695,CA 3629789696,3629789951,US 3629789952,3629790207,CA 3629790208,3629839103,US 3629839104,3629839359,CA 3629839360,3630040063,US 3630040064,3630040319,CA 3630040320,3630040431,US 3630040432,3630040447,CA 3630040448,3630040575,US 3630040576,3630040831,CA 3630040832,3630041343,US 3630041344,3630041599,CA 3630041600,3630045439,US 3630045440,3630046207,CA 3630046208,3630046719,US 3630046720,3630047487,CA 3630047488,3630047999,US 3630048000,3630048255,CA 3630048256,3630048511,US 3630048512,3630049599,CA 3630049600,3630050047,US 3630050048,3630050303,CA 3630050304,3630050559,US 3630050560,3630050815,CA 3630050816,3630051839,US 3630051840,3630052607,CA 3630052608,3630053887,US 3630053888,3630054143,CA 3630054144,3630054655,US 3630054656,3630055167,CA 3630055168,3630055935,US 3630055936,3630056959,CA 3630056960,3630057407,US 3630057408,3630057471,CA 3630057472,3630057727,US 3630057728,3630057983,CA 3630057984,3630058751,US 3630058752,3630059007,CA 3630059008,3630059263,US 3630059264,3630059519,CA 3630059520,3630061567,US 3630061568,3630062079,CA 3630062080,3630062335,US 3630062336,3630062591,CA 3630062592,3630062847,US 3630062848,3630063871,CA 3630063872,3630063935,US 3630063936,3630063951,CA 3630063952,3630066431,US 3630066432,3630066687,CA 3630066688,3630066943,US 3630066944,3630067711,CA 3630067712,3630068991,US 3630068992,3630069247,CA 3630069248,3630069503,US 3630069504,3630069759,CA 3630069760,3630071295,US 3630071296,3630071551,CA 3630071552,3630072831,US 3630072832,3630073343,CA 3630073344,3630074879,US 3630074880,3630075135,CA 3630075136,3630082303,US 3630082304,3630082559,CA 3630082560,3630082815,US 3630082816,3630083071,CA 3630083072,3630085631,US 3630085632,3630085887,CA 3630085888,3630087679,US 3630087680,3630087935,CA 3630087936,3630088447,US 3630088448,3630088959,CA 3630088960,3630091519,US 3630091520,3630091775,CA 3630091776,3630093567,US 3630093568,3630093823,CA 3630093824,3630096127,US 3630096128,3630096383,CA 3630096384,3630097151,US 3630097152,3630097663,CA 3630097664,3630102783,US 3630102784,3630103807,CA 3630103808,3630104063,US 3630104064,3630104575,CA 3630104576,3630134015,US 3630134016,3630134271,CA 3630134272,3630141951,US 3630141952,3630142207,CA 3630142208,3630148095,US 3630148096,3630148607,CA 3630148608,3630148863,US 3630148864,3630149119,CA 3630149120,3630151679,US 3630151680,3630152191,CA 3630152192,3630152703,US 3630152704,3630152959,CA 3630152960,3630156287,US 3630156288,3630156543,CA 3630156544,3630157311,US 3630157312,3630157567,CA 3630157568,3630158079,US 3630158080,3630158335,CA 3630158336,3630159615,US 3630159616,3630159871,CA 3630159872,3630160127,US 3630160128,3630160383,CA 3630160384,3630161151,US 3630161152,3630161407,CA 3630161408,3630162431,US 3630162432,3630162687,CA 3630162688,3630163199,US 3630163200,3630163455,CA 3630163456,3630164991,US 3630164992,3630165247,CA 3630165248,3630165503,US 3630165504,3630166015,CA 3630166016,3630169855,US 3630169856,3630170111,CA 3630170112,3630309375,US 3630309376,3630317567,CA 3630317568,3630354431,US 3630358528,3630375423,US 3630375424,3630383103,CA 3630383104,3630391295,US 3630391296,3630395391,CA 3630395392,3630718975,US 3630718976,3630727167,CA 3630727168,3630745599,US 3630745600,3630747647,UG 3630747648,3630780415,US 3630780416,3630784511,CA 3630784512,3630850047,US 3630850048,3630854143,CA 3630854144,3630895615,US 3630895616,3630895871,CA 3630895872,3630897407,US 3630897408,3630897919,CA 3630897920,3630956543,US 3630956544,3631005695,CA 3631005696,3631039487,US 3631039488,3631039743,CA 3631039744,3631112191,US 3631112192,3631112703,VC 3631112704,3631116543,BB 3631116544,3631117567,GD 3631117568,3631117823,BB 3631117824,3631118079,GD 3631118080,3631119103,VC 3631119104,3631119615,BB 3631119616,3631120383,GD 3631120384,3631144959,US 3631144960,3631153151,CA 3631153152,3631284223,US 3631284224,3631316991,CA 3631316992,3631333375,US 3631333376,3631341567,CA 3631341568,3631644671,US 3631644672,3631652863,CA 3631652864,3631665151,US 3631665152,3631667199,CA 3631667200,3631667455,US 3631667456,3631668735,CA 3631668736,3631669807,US 3631669808,3631669823,EC 3631669824,3631670527,US 3631670528,3631670783,NG 3631670784,3631671039,EC 3631671040,3631671295,US 3631671296,3631671551,JM 3631671552,3631671807,PY 3631671808,3631672063,US 3631672064,3631672575,PY 3631672576,3631672831,NG 3631672832,3631841279,US 3631841280,3631874047,CA 3631874048,3631939583,US 3631939584,3632005119,CA 3632005120,3632152575,US 3632152576,3632168959,CA 3632168960,3632187391,US 3632187392,3632188415,CA 3632188416,3632197631,US 3632197632,3632201727,CA 3632201728,3632218271,US 3632218272,3632218287,AU 3632218288,3632218295,US 3632218296,3632218303,SG 3632218304,3632244223,US 3632244224,3632244479,CA 3632244480,3632332799,US 3632332800,3632357375,CA 3632357376,3632376319,US 3632376320,3632377343,CA 3632377344,3632381951,US 3632381952,3632390143,CA 3632390144,3632414719,US 3632414720,3632422911,CA 3632422912,3632451583,US 3632451584,3632455679,CA 3632455680,3632495199,US 3632495200,3632495207,ZA 3632495208,3632857087,US 3632857088,3632859229,BS 3632859230,3632859230,US 3632859231,3632861183,BS 3632861184,3632881663,US 3632881664,3632889855,CA 3632889856,3632898047,US 3632898048,3632902143,CA 3632902144,3632971775,US 3632971776,3632988159,CA 3632988160,3633029119,US 3633029120,3633029631,PY 3633029632,3633030143,NI 3633030144,3633030655,US 3633030656,3633030911,SN 3633030912,3633031935,US 3633031936,3633032191,PG 3633032192,3633036031,US 3633036032,3633036287,HT 3633036288,3633036543,TT 3633036544,3633336319,US 3633336320,3633340415,KY 3633340416,3633344511,US 3633344512,3633348607,CA 3633348608,3633405951,US 3633405952,3633410047,CA 3633410048,3633446911,US 3633455104,3633479679,US 3633479680,3633483775,CA 3633483776,3633545215,US 3633545216,3633545727,GA 3633545728,3633546239,US 3633546240,3633546751,GA 3633546752,3633547263,US 3633547264,3633548287,GA 3633548288,3633548543,US 3633548544,3633548799,GA 3633548800,3633549567,US 3633549568,3633549823,GA 3633549824,3633550847,US 3633550848,3633551359,GA 3633551360,3633757439,US 3633757440,3633757695,IN 3633757696,3633757951,US 3633757952,3633758207,PH 3633758208,3633815807,US 3633815808,3633816063,CA 3633816064,3633817087,US 3633817088,3633817343,CA 3633817344,3633818623,US 3633818624,3633819135,CA 3633819136,3633823743,US 3633823744,3633827839,HK 3633827840,3633844223,US 3633848320,3633881087,US 3633881088,3633885183,CW 3633885184,3633889279,US 3633889280,3633893375,CA 3633893376,3633915647,US 3633915648,3633915903,IT 3633915904,3633971199,US 3633971200,3633974527,CA 3633974528,3633975039,US 3633975040,3634020351,CA 3634020352,3634037247,US 3634037248,3634037759,CA 3634037760,3634052863,US 3634052864,3634053119,CA 3634053120,3634061311,CL 3634061312,3634094079,US 3634094080,3634098175,SE 3634098176,3634283263,US 3634283264,3634283519,CA 3634283520,3634286079,US 3634286080,3634286335,CA 3634286336,3634288895,US 3634288896,3634289151,CA 3634289152,3634511871,US 3634511872,3634515967,CA 3634515968,3634552831,US 3634552832,3634556927,CA 3634556928,3634741247,US 3634741248,3634749439,CA 3634749440,3634759679,US 3634759680,3634759935,CA 3634759936,3634880511,US 3634880512,3634888703,CA 3634888704,3634913279,US 3634913280,3634915663,CA 3634915664,3634915679,US 3634915680,3634921471,CA 3634921472,3634925567,US 3634925568,3634929663,CA 3634929664,3635044351,US 3635048448,3635109887,US 3635109888,3635113983,CA 3635113984,3635142655,US 3635142656,3635146751,CA 3635146752,3635159039,US 3635159040,3635163135,CA 3635163136,3635171071,US 3635171072,3635171327,CA 3635171328,3635314687,US 3635314688,3635322879,CA 3635322880,3635466239,US 3635466240,3635470335,CA 3635470336,3635527679,US 3635527680,3635527935,PR 3635527936,3635528959,US 3635528960,3635529215,PR 3635529216,3635529983,US 3635529984,3635530751,PR 3635530752,3635531007,US 3635531008,3635531263,PR 3635531264,3635533535,US 3635533536,3635533551,IN 3635533552,3635643391,US 3635643392,3635644415,JP 3635644416,3635645183,TH 3635645184,3635645439,JP 3635645440,3635645951,HK 3635645952,3635646463,TL 3635646464,3635646975,US 3635646976,3635647487,GB 3635647488,3635647743,US 3635647744,3635647999,CA 3635648000,3635648255,TW 3635648256,3635648511,ML 3635648512,3635648767,US 3635648768,3635649023,JP 3635649024,3635650559,US 3635650560,3635652607,HK 3635652608,3635654655,US 3635654656,3635656447,HK 3635656448,3635656703,US 3635656704,3635657727,JP 3635657728,3635659263,US 3635659264,3635660287,ID 3635660288,3635660799,US 3635660800,3635662847,HK 3635662848,3635670527,US 3635670528,3635671039,TL 3635671040,3635674623,US 3635674624,3635675135,HK 3635675136,3635740671,US 3635740672,3635740927,CA 3635740928,3635741439,US 3635741440,3635741695,CA 3635741696,3635741951,US 3635741952,3635745535,CA 3635745536,3635746047,US 3635746048,3635750143,CA 3635750144,3635750399,US 3635750400,3635751935,CA 3635751936,3635752191,US 3635752192,3635752447,CA 3635752448,3635752703,US 3635752704,3635754239,CA 3635754240,3635754362,US 3635754363,3635754363,CA 3635754364,3635755007,US 3635755008,3635755519,CA 3635755520,3635755775,US 3635755776,3635760895,CA 3635760896,3635761151,US 3635761152,3635762687,CA 3635762688,3635762943,US 3635762944,3635763199,CA 3635763200,3635763455,US 3635763456,3635765759,CA 3635765760,3635768575,US 3635768576,3635771391,CA 3635771392,3635771647,US 3635771648,3635771903,CA 3635771904,3635772415,US 3635772416,3635772671,CA 3635772672,3635772927,US 3635772928,3635773951,CA 3635773952,3635774207,US 3635774208,3635781119,CA 3635781120,3635783167,US 3635783168,3635799551,CA 3635799552,3635800063,US 3635800064,3635804159,CA 3635804160,3635804671,US 3635804672,3635806207,CA 3635806208,3635871743,US 3635871744,3635879935,CA 3635879936,3635892223,US 3635892224,3635896319,CA 3635896320,3635904511,US 3635904512,3635912703,CA 3635912704,3635961855,US 3635961856,3635963903,SV 3635963904,3635964415,US 3635964416,3635965951,SV 3635965952,3635966975,US 3635966976,3635967999,PY 3635968000,3635970047,SV 3635970048,3636019199,US 3636019200,3636027391,CA 3636027392,3636031517,SG 3636031518,3636031518,US 3636031519,3636035583,SG 3636035584,3636064255,US 3636064256,3636068351,CA 3636068352,3636150783,US 3636150784,3636150799,CA 3636150800,3636151807,US 3636151808,3636152063,CA 3636152064,3636152319,US 3636152320,3636152575,CA 3636152576,3636152735,US 3636152736,3636152751,CA 3636152752,3636152783,US 3636152784,3636152791,CA 3636152792,3636152831,US 3636152832,3636152847,CA 3636152848,3636153855,US 3636153856,3636154879,CA 3636154880,3636155135,US 3636155136,3636155391,CA 3636155392,3636155647,US 3636155648,3636156159,CA 3636156160,3636157439,US 3636157440,3636157951,CA 3636157952,3636158063,US 3636158064,3636158071,CA 3636158072,3636158207,US 3636158208,3636158215,CA 3636158216,3636158463,US 3636158464,3636158719,CA 3636158720,3636158871,US 3636158872,3636158879,CA 3636158880,3636158959,US 3636158960,3636159743,CA 3636159744,3636160511,US 3636160512,3636160767,CA 3636160768,3636161983,US 3636161984,3636162015,CA 3636162016,3636162047,US 3636162048,3636162559,CA 3636162560,3636163583,US 3636163584,3636164095,CA 3636164096,3636164255,US 3636164256,3636164271,CA 3636164272,3636164327,US 3636164328,3636164335,CA 3636164336,3636166143,US 3636166144,3636166655,CA 3636166656,3636206079,US 3636206080,3636206335,AU 3636206336,3636396031,US 3636396032,3636461567,CA 3636461568,3636609023,US 3636609024,3636621311,CA 3636621312,3636625407,US 3636625408,3636626431,AR 3636626432,3636626943,BR 3636626944,3636627199,AR 3636627200,3636627455,BR 3636627456,3636628479,MX 3636628480,3636628991,PE 3636628992,3636822015,US 3636822016,3636854783,CA 3636854784,3636887551,US 3636887552,3636895743,CA 3636895744,3636905471,US 3636905472,3636905727,CA 3636905728,3636907775,US 3636907776,3636908031,CA 3636908032,3636909055,US 3636909056,3636909311,CA 3636909312,3636913919,US 3636913920,3636914687,CA 3636914688,3636918015,US 3636918016,3636918271,CA 3636918272,3636918527,US 3636918528,3636919039,CA 3636919040,3637072895,US 3637072896,3637073151,CY 3637073152,3637075967,US 3637075968,3637080063,CA 3637080064,3637469439,US 3637469440,3637469695,GE 3637469696,3637510143,US 3637510144,3637641215,CA 3637641216,3637665791,US 3637665792,3637669887,CA 3637669888,3637706751,US 3637706752,3637739519,CA 3637739520,3637821439,US 3637829632,3638165503,US 3638165504,3638181887,CA 3638181888,3638214399,US 3638214400,3638214655,GR 3638214656,3638224639,US 3638224640,3638224895,GR 3638224896,3638226687,US 3638226688,3638226943,NL 3638226944,3638247935,US 3638247936,3638248703,GB 3638248704,3638249215,US 3638249216,3638249471,GB 3638249472,3638250559,US 3638250560,3638250623,GB 3638250624,3638304767,US 3638304768,3638312959,CA 3638312960,3638370303,US 3638370304,3638386687,CA 3638386688,3638399743,US 3638399744,3638399999,CH 3638400000,3638401087,US 3638401088,3638401119,CA 3638401120,3638500125,US 3638500126,3638500126,CA 3638500127,3638509567,US 3638509568,3638534143,CA 3638534144,3638697983,US 3638697984,3638706175,CA 3638706176,3638874111,US 3638874112,3638878207,CA 3638878208,3638880511,US 3638880512,3638880767,CA 3638880768,3638984703,US 3638984704,3638992895,GT 3638992896,3638996991,US 3639001088,3639052031,US 3639052032,3639052287,ES 3639052288,3639069439,US 3639069440,3639069695,HK 3639069696,3639083007,US 3639083008,3639148543,CA 3639148544,3639222271,US 3639222272,3639230463,CA 3639230464,3639247359,US 3639248128,3639255039,US 3639255040,3639263231,CA 3639263232,3639279615,US 3639279616,3639283711,CA 3639283712,3639390207,US 3639390208,3639394303,ZA 3639394304,3639397119,US 3639397120,3639397375,IN 3639397376,3639397631,US 3639397632,3639397887,NG 3639397888,3639399679,US 3639399680,3639399935,HN 3639399936,3639400447,US 3639400448,3639401471,RS 3639401472,3639402239,US 3639402240,3639402495,GH 3639402496,3639513239,US 3639513240,3639513243,AE 3639513244,3639525375,US 3639529472,3639533567,US 3639533568,3639537663,CA 3639537664,3639550207,US 3639550208,3639550215,AR 3639550216,3639550223,BR 3639550224,3639550239,CA 3639550240,3639550247,MX 3639550248,3639550311,US 3639550312,3639550319,AU 3639550320,3639554559,US 3639554560,3639554748,GB 3639554749,3639554749,US 3639554750,3639554815,GB 3639554816,3639555839,US 3639555840,3639555847,AR 3639555848,3639555855,BR 3639555856,3639555863,CA 3639555864,3639555871,MX 3639555872,3639555999,US 3639556000,3639556007,AU 3639556008,3639556015,CA 3639556016,3639556023,CO 3639556024,3639558143,US 3639558144,3639566335,CA 3639566336,3639566847,US 3639566848,3639567103,HK 3639567104,3639593983,US 3639593984,3639595007,GB 3639595008,3639607295,US 3639607296,3639611391,CA 3639611392,3639656447,US 3639656448,3639660543,CA 3639660544,3639664639,US 3639664640,3639668735,CA 3639668736,3639672831,US 3639672832,3639675007,CL 3639675008,3639675135,CO 3639675136,3639675263,CL 3639675264,3639676159,CO 3639676160,3639676415,CL 3639676416,3639676479,CO 3639676480,3639676607,CL 3639676608,3639676639,CO 3639676640,3639676799,CL 3639676800,3639676959,CO 3639676960,3639676967,CL 3639676968,3639676983,CO 3639676984,3639676999,CL 3639677000,3639677063,CO 3639677064,3639677071,CL 3639677072,3639677223,CO 3639677224,3639677231,CL 3639677232,3639677335,CO 3639677336,3639677343,CL 3639677344,3639677431,CO 3639677432,3639677439,CL 3639677440,3639677503,CO 3639677504,3639677519,CL 3639677520,3639677559,CO 3639677560,3639677567,CL 3639677568,3639677575,CO 3639677576,3639677583,CL 3639677584,3639677631,CO 3639677632,3639677695,CL 3639677696,3639677719,CO 3639677720,3639677727,CL 3639677728,3639677751,CO 3639677752,3639677767,CL 3639677768,3639677823,CO 3639677824,3639677831,CL 3639677832,3639677839,CO 3639677840,3639677847,CL 3639677848,3639677927,CO 3639677928,3639677951,CL 3639677952,3639677975,CO 3639677976,3639677983,CL 3639677984,3639677991,CO 3639677992,3639678007,CL 3639678008,3639678031,CO 3639678032,3639678039,CL 3639678040,3639678175,CO 3639678176,3639678191,CL 3639678192,3639678199,CO 3639678200,3639678207,CL 3639678208,3639678463,CO 3639678464,3639678471,CL 3639678472,3639678487,CO 3639678488,3639678495,CL 3639678496,3639678647,CO 3639678648,3639678655,CL 3639678656,3639678687,CO 3639678688,3639678703,CL 3639678704,3639678735,CO 3639678736,3639678751,CL 3639678752,3639678831,CO 3639678832,3639678839,CL 3639678840,3639678895,CO 3639678896,3639678911,CL 3639678912,3639678927,CO 3639678928,3639678935,CL 3639678936,3639679231,CO 3639679232,3639679247,CL 3639679248,3639679263,CO 3639679264,3639679279,CL 3639679280,3639679359,CO 3639679360,3639679383,CL 3639679384,3639679455,CO 3639679456,3639679463,CL 3639679464,3639680415,CO 3639680416,3639680431,CL 3639680432,3639680511,CO 3639680512,3639680767,CL 3639680768,3639680799,CO 3639680800,3639680831,CL 3639680832,3639680895,CO 3639680896,3639680959,CL 3639680960,3639680991,CO 3639680992,3639681023,CL 3639681024,3639684863,US 3639684864,3639684865,SA 3639684866,3639684866,US 3639684867,3639684897,SA 3639684898,3639684898,US 3639684899,3639684961,SA 3639684962,3639684962,US 3639684963,3639685071,SA 3639685072,3639685087,US 3639685088,3639685119,SA 3639685120,3639692031,US 3639692032,3639692287,GB 3639692288,3639704573,US 3639704574,3639704574,GB 3639704575,3639730175,US 3639730176,3639734271,CA 3639734272,3639736575,US 3639736576,3639736831,HK 3639736832,3639737343,US 3639737344,3639737373,GB 3639737374,3639737374,FR 3639737375,3639737599,GB 3639737600,3639737629,US 3639737630,3639737630,GB 3639737631,3639902207,US 3639902208,3639918591,PE 3639918592,3639934975,AR 3639934976,3640057855,US 3640057856,3640066047,CA 3640066048,3640197119,US 3640197120,3640201215,CA 3640201216,3640205311,US 3640205312,3640209407,BM 3640209408,3640213503,CA 3640213504,3640287231,US 3640291328,3640312319,US 3640312320,3640312575,NI 3640312576,3640312831,US 3640312832,3640313087,TO 3640313088,3640315391,US 3640315392,3640315647,TR 3640315648,3640316927,US 3640316928,3640317183,MX 3640317184,3640318207,US 3640318208,3640318975,NC 3640318976,3640319231,US 3640319232,3640319487,NG 3640319488,3640346879,US 3640346880,3640347134,MX 3640347135,3640360959,US 3640360960,3640369151,CA 3640369152,3640410111,US 3640410112,3640418303,CA 3640418304,3640430591,US 3640430592,3640432639,DE 3640432640,3640433407,US 3640433408,3640433663,DE 3640433664,3640438783,US 3640438784,3640442879,DE 3640442880,3640446975,US 3640446976,3640449023,CA 3640449024,3640450047,DE 3640450048,3640451071,US 3640451072,3640459263,DE 3640459264,3640557567,US 3640557568,3640582143,CA 3640582144,3640647679,US 3640647680,3640651775,JP 3640651776,3640655871,US 3640655872,3641180159,DE 3641180160,3641188351,GB 3641188352,3641192447,TJ 3641192448,3641196543,DE 3641196544,3641200639,SA 3641200640,3641204735,RU 3641204736,3641208831,NL 3641212928,3641221119,NO 3641221120,3641229311,PL 3641229312,3641237503,CH 3641237504,3641241599,RU 3641241600,3641245695,GB 3641245696,3641249791,UA 3641253888,3641262079,DE 3641262080,3641266175,IT 3641266176,3641270271,RU 3641270272,3641278463,DE 3641278464,3641282559,IS 3641282560,3641286655,RU 3641286656,3641294847,PL 3641294848,3641298943,GB 3641298944,3641303039,SE 3641303040,3641307135,BG 3641307136,3641311231,LT 3641311232,3641315327,DE 3641315328,3641319423,DK 3641319424,3641323519,RU 3641323520,3641324543,DE 3641324544,3641324799,AT 3641324800,3641331711,DE 3641331712,3641335807,ES 3641335808,3641343999,SE 3641344000,3641356535,GB 3641356536,3641356543,CM 3641356544,3641357983,GB 3641357984,3641358015,SL 3641358016,3641359615,GB 3641359616,3641359871,US 3641359872,3641360383,GB 3641360384,3641368575,RO 3641368576,3641372671,GB 3641372672,3641376767,BG 3641376768,3641380863,IT 3641380864,3641384959,IR 3641384960,3641389055,CH 3641389056,3641393151,DE 3641393152,3641397247,KZ 3641397248,3641401343,IT 3641401344,3641409535,ES 3641409536,3641413631,PL 3641413632,3641417727,DE 3641417728,3641421823,GE 3641421824,3641425919,TJ 3641425920,3641430015,DE 3641430016,3641434111,CH 3641434112,3641442303,CZ 3641442304,3641446399,GB 3641446400,3641450495,ES 3641450496,3641454591,RU 3641454592,3641458687,SK 3641458688,3641462783,RU 3641462784,3641466879,UZ 3641466880,3641470975,RU 3641470976,3641475071,MD 3641475072,3641479167,IT 3641479168,3641483263,GB 3641483264,3641491455,IT 3641491456,3641493503,UA 3641493504,3641494015,NL 3641494016,3641494527,BG 3641494528,3641495551,UA 3641495552,3641496063,NL 3641496064,3641499647,UA 3641499648,3641503743,SA 3641503744,3641507839,RU 3641507840,3641516031,NO 3641516032,3641520127,HU 3641520128,3641524223,FR 3641524224,3641528319,DE 3641528320,3641532415,ES 3641532416,3641536511,HU 3641536512,3641540607,ES 3641540608,3641548799,GB 3641548800,3641552895,DE 3641552896,3641556991,AT 3641556992,3641561087,DE 3641561088,3641565183,RU 3641565184,3641573375,SE 3641573376,3641577471,NO 3641577472,3641581567,RU 3641581568,3641585663,ES 3641585664,3641589759,RU 3641589760,3641593855,CH 3641593856,3641597951,NG 3641597952,3641602047,AZ 3641602048,3641606143,DE 3641606144,3641610239,GB 3641610240,3641618431,DE 3641618432,3641622527,GB 3641622528,3641626623,RU 3641626624,3641630719,HR 3641630720,3641634815,AT 3641634816,3641638911,RU 3641638912,3641643007,AT 3641643008,3641647103,RU 3641647104,3641651199,ES 3641651200,3641655295,RU 3641655296,3641659391,GB 3641659392,3641663487,FR 3641663488,3641667583,MT 3641667584,3641669119,GB 3641669120,3641670271,ZW 3641670272,3641670911,GB 3641670912,3641671167,LS 3641671168,3641671679,GB 3641671680,3641679871,RU 3641683968,3641688063,KZ 3641688064,3641692159,RU 3641692160,3641696255,IT 3641696256,3641700351,BE 3641700352,3641704447,SE 3641704448,3641708543,FR 3641708544,3641712639,RU 3641712640,3641716735,NL 3641716736,3641720831,GB 3641720832,3641729023,MK 3641729024,3641733119,DK 3641733120,3641737215,AT 3641737216,3641741311,RS 3641741312,3641745407,ES 3641745408,3641749503,DE 3641749504,3641753599,CZ 3641753600,3641757695,SE 3641757696,3641761791,GB 3641761792,3641765887,CY 3641765888,3641769983,ES 3641769984,3641774079,NO 3641774080,3641778175,DE 3641778176,3641782271,PL 3641782272,3641786367,GB 3641786368,3641790463,SE 3641790464,3641794559,LT 3641794560,3641798655,RS 3641798656,3641802751,RU 3641802752,3641806847,NL 3641806848,3641810943,TR 3641810944,3641819135,RU 3641819136,3641823231,DE 3641823232,3641827327,NO 3641827328,3641835519,BH 3641835520,3641839615,IT 3641839616,3641843711,GB 3641843712,3641847807,ES 3641851904,3641855999,NL 3641856000,3641860095,GB 3641860096,3641868287,IT 3641868288,3641876479,RU 3641876480,3641880575,ES 3641880576,3641884671,DE 3641884672,3641888767,NO 3641888768,3641892863,IT 3641892864,3641896959,ES 3641896960,3641901055,BG 3641901056,3641905151,RO 3641905152,3641909247,NL 3641909248,3641913343,AT 3641913344,3641917439,FR 3641917440,3641925631,GR 3641925632,3641933823,RU 3641933824,3641937919,GB 3641937920,3641942015,IT 3641942016,3641950207,DE 3641950208,3641954303,FR 3641954304,3641957119,MD 3641957120,3641957631,GB 3641957632,3641957887,MD 3641957888,3641958143,GB 3641958144,3641958399,MD 3641958400,3641960447,BE 3641960448,3641960703,NL 3641960704,3641961727,BE 3641961728,3641961799,NL 3641961800,3641962495,BE 3641962496,3641966591,GB 3641966592,3641970687,IT 3641970688,3641978879,GB 3641978880,3641982975,DK 3641982976,3641991167,RU 3641991168,3641995263,SE 3641995264,3641999359,DE 3641999360,3642003455,HU 3642003456,3642007551,RU 3642007552,3642015743,UA 3642015744,3642019839,CH 3642019840,3642023935,SY 3642023936,3642028031,EG 3642028032,3642028800,GB 3642028801,3642028863,SO 3642028864,3642032127,GB 3642032128,3642036223,PS 3642036224,3642040319,HU 3642040320,3642048511,BY 3642048512,3642056703,GB 3642056704,3642060799,RU 3642060800,3642064895,KE 3642064896,3642068991,IT 3642068992,3642073087,AL 3642073088,3642077183,LV 3642077184,3642078207,NL 3642078208,3642078463,BE 3642078464,3642085375,NL 3642085376,3642089471,RU 3642089472,3642093567,SE 3642093568,3642097663,NL 3642097664,3642101759,GB 3642101760,3642109951,NO 3642109952,3642114047,BE 3642114048,3642116095,NO 3642116096,3642117119,NL 3642117120,3642118143,NO 3642118144,3642122239,GB 3642122240,3642126335,ES 3642126336,3642130431,IL 3642130432,3642134527,DE 3642134528,3642138623,GB 3642138624,3642142719,RU 3642142720,3642146815,MT 3642146816,3642150911,DE 3642150912,3642163199,IT 3642163200,3642167295,NL 3642167296,3642171391,RU 3642171392,3642175487,JO 3642175488,3642179583,DE 3642179584,3642187775,RU 3642187776,3642191871,DK 3642191872,3642195967,BY 3642195968,3642204159,RU 3642204160,3642208255,GB 3642208256,3642212351,RU 3642212352,3642216447,BA 3642216448,3642220543,HU 3642220544,3642224639,GB 3642224640,3642228735,SK 3642228736,3642232831,DE 3642232832,3642236927,RS 3642236928,3642237263,CH 3642237264,3642237264,DE 3642237265,3642241023,CH 3642241024,3642245119,DE 3642245120,3642249215,LV 3642249216,3642253311,FR 3642253312,3642257407,FI 3642257408,3642261503,RU 3642261504,3642265599,BA 3642265600,3642269695,AE 3642269696,3642273791,UA 3642273792,3642277887,RU 3642277888,3642290175,DE 3642290176,3642294271,AL 3642294272,3642298367,GB 3642298368,3642302463,AZ 3642302464,3642306559,SE 3642306560,3642310655,IR 3642310656,3642314751,DE 3642314752,3642318847,RU 3642318848,3642322943,FI 3642322944,3642327039,AT 3642327040,3642331135,DE 3642331136,3642335231,RU 3642335232,3642339327,DE 3642339328,3642343423,FR 3642343424,3642347519,UA 3642347520,3642355711,RU 3642355712,3642359807,SE 3642359808,3642367999,RU 3642368000,3642376191,CH 3642376192,3642380287,RS 3642380288,3642384383,IT 3642384384,3642392575,NL 3642392576,3642394623,AT 3642394624,3642396671,FR 3642396672,3642404863,MD 3642408960,3642413055,FR 3642413056,3642415103,RS 3642415104,3642417151,GB 3642417152,3642419199,DE 3642419200,3642421247,GB 3642421248,3642429439,DE 3642429440,3642433535,GB 3642433536,3642435583,CY 3642435584,3642436607,RU 3642436608,3642441727,CY 3642441728,3642449919,IT 3642449920,3642454015,CH 3642454016,3642458111,IT 3642458112,3642462207,RU 3642462208,3642466303,UA 3642466304,3642474495,SE 3642474496,3642478591,DE 3642478592,3642482687,HU 3642482688,3642486783,NL 3642486784,3642490879,GB 3642490880,3642494975,IM 3642494976,3642499071,GB 3642499072,3642501119,SE 3642501120,3642503167,LU 3642503168,3642507263,LV 3642507264,3642509311,FR 3642509312,3642511359,RU 3642511360,3642515455,CZ 3642515456,3642519551,DE 3642519552,3642523647,IT 3642523648,3642527743,GB 3642527744,3642531839,PL 3642531840,3642532607,DK 3642532608,3642532863,US 3642532864,3642535935,DK 3642535936,3642540031,IS 3642540032,3642544127,SE 3642544128,3642552319,RU 3642552320,3642553936,UA 3642553937,3642553937,US 3642553938,3642554111,UA 3642554112,3642554367,RU 3642554368,3642554623,LT 3642554624,3642554720,UA 3642554721,3642554721,LV 3642554722,3642556415,UA 3642556416,3642560511,CZ 3642560512,3642564607,KG 3642564608,3642568703,DE 3642568704,3642572799,RU 3642572800,3642576895,IT 3642576896,3642580991,RU 3642580992,3642585087,ES 3642585088,3642589183,UZ 3642589184,3642593279,TZ 3642593280,3642597375,AT 3642597376,3642601471,IT 3642601472,3642605567,RU 3642605568,3642609663,GB 3642609664,3642613759,ZA 3642613760,3642617855,FI 3642617856,3642621951,JO 3642621952,3642626047,IT 3642626048,3642630143,BE 3642630144,3642634239,DK 3642634240,3642638335,DE 3642638336,3642642431,CZ 3642642432,3642646527,DK 3642646528,3642650623,MT 3642650624,3642654719,GB 3642654720,3642662911,PL 3642662912,3642667007,UZ 3642667008,3642671103,FI 3642671104,3642675199,UA 3642675200,3642679295,BG 3642679296,3642683391,DE 3642683392,3642687487,RU 3642687488,3642691583,GB 3642691584,3642695679,DE 3642695680,3642699775,SK 3642699776,3642703871,CZ 3642703872,3642707967,LU 3642707968,3642712063,DE 3642712064,3642716159,NO 3642716160,3642720255,IT 3642720256,3642728447,GB 3642728448,3642736639,SE 3642736640,3642740735,CZ 3642740736,3642744831,DE 3642744832,3642753023,TR 3642753024,3643801599,GB 3643801600,3644063743,DE 3644063744,3644325887,EG 3644325888,3644588031,IT 3644588032,3644719103,DK 3644719104,3644809215,NL 3644809216,3644817407,AM 3644817408,3644850175,NL 3644850176,3644854271,CZ 3644854272,3644858367,AZ 3644858368,3644862463,FI 3644862464,3644866559,FR 3644866560,3644874751,DE 3644874752,3644878847,ML 3644878848,3644882943,GB 3644882944,3644887039,RU 3644887040,3644891135,IR 3644891136,3644895231,DE 3644895232,3644899327,FI 3644899328,3644903423,IT 3644903424,3644907519,TR 3644907520,3644911615,GB 3644911616,3644915711,BE 3644915712,3644919807,RU 3644919808,3644923903,DE 3644923904,3644924927,IL 3644924928,3644925183,US 3644925184,3644925439,IL 3644925440,3644925695,US 3644925696,3644926463,IL 3644926464,3644926719,US 3644926720,3644927999,IL 3644928000,3644932095,GI 3644932096,3644936191,IT 3644936192,3644940287,RU 3644940288,3644948479,HU 3644948480,3644952575,DE 3644952576,3644960767,GB 3644960768,3644964863,TR 3644964864,3644968959,RS 3644968960,3644973055,RU 3644973056,3644977151,NO 3644977152,3644981247,UA 3644981248,3644985343,BE 3644985344,3644989439,RU 3644989440,3644997631,DE 3644997632,3645005823,RU 3645005824,3645009919,UA 3645009920,3645014015,FR 3645014016,3645018111,DE 3645018112,3645022207,RU 3645022208,3645030399,CZ 3645030400,3645038591,IR 3645038592,3645046783,PS 3645046784,3645050879,RU 3645050880,3645054975,SK 3645054976,3645059071,DE 3645059072,3645063167,GB 3645063168,3645067263,UA 3645067264,3645071359,SE 3645071360,3645075455,DE 3645075456,3645079551,RU 3645079552,3645083647,IE 3645083648,3645087743,FR 3645087744,3645091839,ES 3645091840,3645095935,RU 3645095936,3645104127,PL 3645104128,3645112319,NL 3645112320,3645116415,DE 3645116416,3645120511,GB 3645120512,3645124607,SE 3645124608,3645128703,NL 3645128704,3645132799,GB 3645132800,3645136895,HR 3645136896,3645145087,NO 3645145088,3645149183,GB 3645149184,3645161471,DE 3645161472,3645163519,AT 3645163520,3645164031,GB 3645164032,3645165567,AT 3645165568,3645169663,TR 3645169664,3645173759,CH 3645173760,3645177855,GB 3645177856,3645181951,GR 3645181952,3645185759,FR 3645185760,3645185775,GB 3645185776,3645186047,FR 3645186048,3645190143,GB 3645190144,3645194239,FI 3645194240,3645202431,DE 3645202432,3645206527,CZ 3645206528,3645210623,LV 3645210624,3645214719,RU 3645214720,3645218815,SE 3645218816,3645222911,DE 3645222912,3645227007,KW 3645227008,3645235199,RU 3645235200,3645243391,DE 3645243392,3645247487,ES 3645247488,3645251583,RU 3645251584,3645255679,SE 3645255680,3645259775,PL 3645259776,3645263871,PT 3645263872,3645267967,FR 3645267968,3645276159,RU 3645276160,3645280255,DE 3645280256,3645284351,IT 3645284352,3645288447,DE 3645288448,3645288895,FR 3645288896,3645288959,LU 3645288960,3645292543,FR 3645292544,3645296639,DE 3645296640,3645300735,NL 3645300736,3645304831,BE 3645304832,3645308927,ES 3645308928,3645313023,DK 3645313024,3645317119,ES 3645317120,3645321215,EE 3645321216,3645325311,BA 3645325312,3645329407,IT 3645329408,3645333503,CH 3645334272,3645335039,DE 3645335688,3645335691,DE 3645337600,3645341695,FR 3645341696,3645345791,RU 3645345792,3645349887,FI 3645349888,3645353983,RU 3645353984,3645358079,MT 3645358080,3645362175,ES 3645362176,3645364223,FR 3645364224,3645366271,DE 3645366272,3645370367,RU 3645370368,3645374463,CH 3645374464,3645378559,RU 3645378560,3645382655,SE 3645382656,3645386751,IT 3645386752,3645390847,SE 3645390848,3645399039,SI 3645399040,3645403135,IT 3645403136,3645407231,GB 3645407232,3645411327,DE 3645411328,3645415423,RU 3645415424,3645423615,GB 3645423616,3645431807,DE 3645431808,3645435903,BE 3645435904,3645439999,GB 3645440000,3645444095,SE 3645444096,3645448191,SK 3645448192,3645454335,DE 3645454336,3645456383,RU 3645456384,3645460479,GB 3645460480,3645464575,UA 3645464576,3645468671,SE 3645468672,3645472767,RU 3645472768,3645476863,AL 3645476864,3645480959,DE 3645480960,3645485055,RO 3645485056,3645489151,PL 3645489152,3645493247,RU 3645493248,3645501439,IT 3645501440,3645505535,PL 3645505536,3645507583,DE 3645507584,3645509631,AT 3645509632,3645511679,NL 3645511680,3645513727,TR 3645513728,3645517823,RU 3645517824,3645521919,IE 3645521920,3645526015,PL 3645526016,3645530111,SE 3645530112,3645534207,FR 3645534208,3645538303,RU 3645538304,3645546495,DK 3645546496,3645550591,RU 3645550592,3645558783,DE 3645558784,3645562879,DK 3645562880,3645563135,GB 3645563136,3645564671,LS 3645564672,3645565951,GB 3645565952,3645566975,ZW 3645566976,3645571071,RU 3645571072,3645575167,IE 3645575168,3645579263,CH 3645579264,3645583359,NL 3645583360,3645587455,PL 3645587456,3645595647,SK 3645595648,3645603839,SE 3645603840,3645612031,BG 3645612032,3645616127,GB 3645616128,3645620223,AT 3645620224,3645624319,BA 3645624320,3645628415,CZ 3645628416,3645636607,PT 3645636608,3645640703,AM 3645640704,3645644799,NL 3645644800,3645648895,RU 3645648896,3645652991,SE 3645652992,3645657087,KZ 3645657088,3645661183,SE 3645661184,3645665279,DE 3645665280,3645669375,PL 3645669376,3645669599,ES 3645669600,3645669887,PT 3645669888,3645670399,ES 3645670400,3645670427,PT 3645670428,3645670429,ES 3645670430,3645670430,PT 3645670431,3645670433,ES 3645670434,3645670436,PT 3645670437,3645670441,ES 3645670442,3645670456,PT 3645670457,3645670460,ES 3645670461,3645670467,PT 3645670468,3645670483,ES 3645670484,3645670508,PT 3645670509,3645670509,ES 3645670510,3645670527,PT 3645670528,3645670655,ES 3645670656,3645670911,PT 3645670912,3645673471,ES 3645673472,3645673535,PT 3645673536,3645674239,ES 3645674240,3645674271,PT 3645674272,3645675007,ES 3645675008,3645675519,PT 3645675520,3645675759,ES 3645675760,3645675775,PT 3645675776,3645676015,ES 3645676016,3645676031,PT 3645676032,3645676543,ES 3645676544,3645676799,PT 3645676800,3645677567,ES 3645677568,3645681663,AT 3645681664,3645685759,RU 3645685760,3645689855,UA 3645689856,3645693951,IT 3645693952,3645698047,BE 3645698048,3645702143,ES 3645702144,3645706239,GB 3645706240,3645710335,LT 3645710336,3645714431,NO 3645714432,3645718527,RU 3645718528,3645722623,GA 3645722624,3645726719,IT 3645726720,3645734911,RU 3645734912,3645743103,NL 3645743104,3645747199,CZ 3645747200,3645751295,GB 3645751296,3645755391,FI 3645755392,3645759487,UA 3645759488,3645763583,FR 3645763584,3645764014,DE 3645764015,3645764015,GB 3645764016,3645765227,DE 3645765228,3645765231,GB 3645765232,3645767428,DE 3645767429,3645767429,US 3645767430,3645767443,DE 3645767444,3645767444,US 3645767445,3645767679,DE 3645767680,3645771775,IE 3645771776,3645779967,SE 3645779968,3645784063,PS 3645784064,3645788159,DJ 3645788160,3645792255,GB 3645792256,3645796351,TR 3645796352,3645800447,CH 3645800448,3645804543,DE 3645804544,3645808639,GB 3645808640,3645812735,DE 3645812736,3645816831,RU 3645816832,3645825023,FI 3645825024,3645829119,RU 3645829120,3645833215,NL 3645833216,3645841407,RU 3645841408,3645845503,BG 3645845504,3645849599,RU 3645849600,3645857791,BG 3645857792,3645865983,GB 3645865984,3645870079,HU 3645870080,3645874175,PL 3645874176,3645878271,GB 3645878272,3645882367,DE 3645882368,3645886463,CH 3645886464,3645890559,DE 3645890560,3645894655,RU 3645894656,3645898751,NL 3645898752,3646947327,DE 3646947328,3647209471,PL 3647209472,3647602687,NL 3647602688,3647733759,RU 3647733760,3647864831,FR 3647864832,3647880703,DE 3647880704,3647880959,PL 3647880960,3647916799,DE 3647916800,3647917055,SE 3647917056,3647963135,DE 3647963136,3647963391,BE 3647963392,3647964159,DE 3647964160,3647964287,ES 3647964288,3647964439,DE 3647964440,3647964447,ES 3647964448,3647964463,DE 3647964464,3647964471,ES 3647964472,3647964503,DE 3647964504,3647964511,ES 3647964512,3647964519,DE 3647964520,3647964527,ES 3647964528,3647964551,DE 3647964552,3647964567,ES 3647964568,3647964591,DE 3647964592,3647964599,ES 3647964600,3647964607,DE 3647964608,3647964615,ES 3647964616,3647964623,DE 3647964624,3647964639,ES 3647964640,3647965695,DE 3647965696,3647965951,CH 3647965952,3647966207,DE 3647966208,3647967231,GB 3647967232,3647968255,BE 3647968256,3647969279,FR 3647969280,3647969327,DE 3647969328,3647969335,IT 3647969336,3647971327,DE 3647971328,3647972351,GB 3647972352,3647973375,IT 3647973376,3647973399,DE 3647973400,3647973407,IT 3647973408,3647973615,DE 3647973616,3647973623,IT 3647973624,3647973711,DE 3647973712,3647973719,IT 3647973720,3647974007,DE 3647974008,3647974015,IT 3647974016,3647974055,DE 3647974056,3647974063,IT 3647974064,3647975423,DE 3647975424,3647976447,ES 3647976448,3647977471,DE 3647977472,3647978495,GB 3647978496,3647979007,DE 3647979008,3647979071,IT 3647979072,3647980031,DE 3647980032,3647980287,FR 3647980288,3647980383,DE 3647980384,3647980415,FR 3647980416,3647980543,DE 3647980544,3647981567,GB 3647981568,3647982591,BE 3647982592,3647983615,IT 3647983616,3647984031,DE 3647984032,3647984047,NL 3647984048,3647984127,DE 3647984128,3647984383,NL 3647984384,3647986431,DE 3647986432,3647986687,ES 3647986688,3647987647,DE 3647987648,3647987655,ES 3647987656,3647987695,DE 3647987696,3647987711,ES 3647987712,3647988735,IT 3647988736,3647988999,DE 3647989000,3647989007,BE 3647989008,3647989063,DE 3647989064,3647989071,BE 3647989072,3647995903,DE 3647995904,3648004095,RU 3648004096,3648007167,GB 3648007168,3648007679,US 3648007680,3648007935,RU 3648007936,3648008191,GB 3648008192,3648016383,FR 3648016384,3648020479,GB 3648020480,3648024575,IT 3648024576,3648028671,NL 3648028672,3648032767,HU 3648032768,3648036863,IE 3648036864,3648040959,CZ 3648040960,3648045055,BE 3648045056,3648049151,FI 3648049152,3648053247,UA 3648053248,3648057343,FR 3648057344,3648061439,FI 3648061440,3648069631,AM 3648069632,3648073727,DE 3648073728,3648077823,HU 3648077824,3648078527,BE 3648078528,3648078591,BF 3648078592,3648079103,BE 3648079104,3648079359,CG 3648079360,3648080511,BE 3648080512,3648080543,BF 3648080544,3648080639,BE 3648080640,3648080895,GA 3648080896,3648081023,ZM 3648081024,3648081055,GA 3648081056,3648081151,ZM 3648081152,3648081407,BE 3648081408,3648081663,CG 3648081664,3648082239,BE 3648082240,3648082311,NE 3648082312,3648082431,BE 3648082432,3648082479,ZM 3648082480,3648084223,BE 3648084224,3648084479,CD 3648084480,3648084991,BE 3648084992,3648086015,GB 3648086016,3648090111,AT 3648090112,3648094207,RU 3648094208,3648102399,PL 3648102400,3648106495,GB 3648106496,3648110591,DE 3648110592,3648114687,FR 3648114688,3648118783,IT 3648118784,3648122879,PL 3648122880,3648126975,ES 3648126976,3648139263,RU 3648139264,3648143359,GB 3648143360,3648147455,DE 3648147456,3648151551,SE 3648151552,3648155647,NL 3648155648,3648159743,CH 3648159744,3648163839,ES 3648163840,3648167935,RU 3648167936,3648170239,GB 3648170240,3648170495,IE 3648170496,3648171679,GB 3648171680,3648171695,IE 3648171696,3648172031,GB 3648172032,3648176127,RU 3648176128,3648178175,DE 3648178176,3648180223,FR 3648180224,3648184319,DE 3648184320,3648192511,RU 3648192512,3648196607,DE 3648196608,3648200703,IT 3648200704,3648208895,SE 3648208896,3648212991,DE 3648212992,3648217087,RU 3648217088,3648221183,UA 3648221184,3648225279,IE 3648225280,3648233471,DE 3648233472,3648237567,FR 3648237568,3648241663,RU 3648241664,3648245759,NL 3648245760,3648249855,RO 3648249856,3648253951,NL 3648253952,3648258047,CZ 3648258048,3648266239,ES 3648266240,3648270335,HU 3648270336,3648274431,RU 3648274432,3648278527,AT 3648278528,3648282623,NO 3648282624,3648286719,PL 3648286720,3648290815,DE 3648290816,3648299007,RU 3648299008,3648303103,FI 3648303104,3648307199,AT 3648307200,3648311295,TR 3648311296,3648323583,DK 3648323584,3648327679,NG 3648327680,3648331775,LT 3648331776,3648339967,BE 3648339968,3648344063,UA 3648344064,3648348159,RU 3648348160,3648352255,DE 3648352256,3648356351,RU 3648356352,3648360447,PL 3648360448,3648364543,FR 3648364544,3648368639,CH 3648368640,3648372735,RU 3648372736,3648376831,LU 3648376832,3648380927,CZ 3648380928,3648385023,NL 3648385024,3648389119,RU 3648389120,3648393215,IT 3648393216,3648397311,DE 3648397312,3648405503,NO 3648405504,3648413695,RU 3648413696,3648417791,SK 3648417792,3648419903,GB 3648419904,3648419935,BE 3648419936,3648425983,GB 3648425984,3648430079,IT 3648430080,3648434175,NL 3648434176,3648438271,RU 3648438272,3648442367,CH 3648442368,3648446463,SE 3648446464,3648450559,FR 3648450560,3648454655,IT 3648454656,3648458751,NL 3648458752,3648462847,RU 3648462848,3648466943,FI 3648466944,3648471039,DE 3648471040,3648475135,PL 3648475136,3648479231,RU 3648479232,3648483327,CH 3648483328,3648487423,SK 3648487424,3648491519,FR 3648491520,3648495615,CH 3648495616,3648499711,SE 3648499712,3648503807,FR 3648503808,3648511999,DE 3648512000,3648516095,NL 3648516096,3648519167,RS 3648519168,3648520191,MK 3648520192,3648747229,NL 3648747230,3648747230,US 3648747231,3648782335,NL 3648782336,3649044479,ES 3649044480,3649110015,FR 3649110016,3649175551,PT 3649175552,3649241087,ES 3649241088,3649306623,TR 3649306624,3649372159,IL 3649372160,3649437695,IT 3649437696,3649512191,GB 3649512192,3649512447,FR 3649512448,3649568767,GB 3649568768,3649634303,BE 3649634304,3649765375,GB 3649765376,3649830911,EG 3649830912,3649835007,NL 3649835008,3649837055,ES 3649837056,3649839103,NL 3649839104,3649840127,GB 3649840128,3649841151,NL 3649841152,3649843199,GB 3649843200,3649847817,NL 3649847818,3649855487,DE 3649855488,3649857791,GB 3649857792,3649858047,IN 3649858048,3649859071,GB 3649859072,3649859327,US 3649859328,3649859583,GB 3649859584,3649863679,SE 3649863680,3649896447,FI 3649896448,3649961983,IT 3649961984,3650093055,SE 3650093056,3650097151,JO 3650097152,3650101247,SK 3650101248,3650105343,DE 3650105344,3650109439,HU 3650109440,3650113535,NO 3650113536,3650117631,GB 3650117632,3650121727,RU 3650121728,3650125823,FR 3650125824,3650129919,DE 3650129920,3650134015,GB 3650134016,3650142207,RU 3650142208,3650150399,PL 3650150400,3650158591,NO 3650158592,3650162687,MT 3650162688,3650166783,RU 3650166784,3650170879,BE 3650170880,3650174975,DK 3650174976,3650179071,GB 3650179072,3650183167,BG 3650183168,3650187263,DE 3650187264,3650195455,GB 3650195456,3650199551,RU 3650199552,3650203647,BG 3650203648,3650207743,ES 3650207744,3650211839,SK 3650211840,3650215935,LV 3650220032,3650224127,SA 3650224128,3650224383,TH 3650224384,3650224639,ES 3650224640,3650224895,UA 3650224896,3650225151,FR 3650225152,3650225407,HU 3650225408,3650225663,BR 3650225664,3650226175,TR 3650226176,3650226431,RS 3650226432,3650226687,SG 3650226688,3650227455,IN 3650227456,3650227711,PL 3650227712,3650227967,PT 3650227968,3650228223,AR 3650228224,3650228479,HK 3650228480,3650229503,AT 3650229504,3650229759,LU 3650229760,3650230527,DE 3650230528,3650231295,AT 3650231296,3650231551,AR 3650231552,3650231807,GB 3650231808,3650232063,DE 3650232064,3650232319,SE 3650232320,3650236415,RU 3650236416,3650240511,GB 3650240512,3650244607,EE 3650244608,3650256895,GB 3650256896,3650265087,DE 3650265088,3650269183,CH 3650269184,3650273279,GB 3650273280,3650277375,IT 3650277376,3650281471,IR 3650281472,3650285567,FR 3650285568,3650289663,UA 3650289664,3650290687,RU 3650293760,3650297855,RU 3650297856,3650301951,LT 3650301952,3650307103,DE 3650307104,3650307134,GB 3650307135,3650310143,DE 3650310144,3650314239,GB 3650314240,3650318335,DE 3650318336,3650322431,GI 3650322432,3650330623,IT 3650330624,3650334719,UA 3650334720,3650338815,GB 3650338816,3650342911,FR 3650342912,3650347007,CH 3650347008,3650351103,GE 3650351104,3650352264,GB 3650352265,3650352265,DE 3650352266,3650355199,GB 3650355200,3650359295,CH 3650359296,3650363391,NL 3650363392,3650367487,GB 3650367488,3650371583,RU 3650371584,3650375679,ES 3650375680,3650379775,NL 3650379776,3650381823,DE 3650381824,3650387967,IT 3650392064,3650396159,NO 3650396160,3650404351,NL 3650404352,3650412543,RU 3650412544,3650416639,DE 3650416640,3650420735,BE 3650420736,3650424831,ES 3650424832,3650428927,RU 3650428928,3650433023,NL 3650433024,3650437119,FI 3650437120,3650441215,NL 3650441216,3650445311,IT 3650445312,3650449407,GB 3650449408,3650453503,NO 3650453504,3650457599,NL 3650457600,3650461695,ES 3650461696,3650465791,AT 3650465792,3650469887,RU 3650469888,3650478079,NL 3650478080,3650482175,AT 3650482176,3650486271,PL 3650486272,3650502655,RU 3650502656,3650504703,SE 3650504704,3650506751,RU 3650506752,3650508799,LB 3650508800,3650510847,NL 3650510848,3650519039,GB 3650519040,3650523135,HU 3650523136,3650527231,DE 3650527232,3650535423,SE 3650535424,3650539519,RU 3650539520,3650543615,ES 3650543616,3650551807,CH 3650551808,3650555903,FR 3650555904,3650559999,RU 3650560000,3650564095,GB 3650564096,3650568191,SE 3650568192,3650572287,RU 3650572288,3650575103,DE 3650575104,3650575167,AT 3650575168,3650576383,DE 3650576384,3650580479,GB 3650580480,3650584575,CH 3650584576,3650588671,RU 3650588672,3650592767,DE 3650592768,3650600959,IS 3650600960,3650605055,SE 3650605056,3650610175,DE 3650610176,3650611711,RU 3650611712,3650611782,LB 3650611783,3650611783,RU 3650611784,3650611835,LB 3650611836,3650611836,RU 3650611837,3650611866,LB 3650611867,3650611867,RU 3650611868,3650611920,LB 3650611921,3650611921,RU 3650611922,3650611947,LB 3650611948,3650611948,RU 3650611949,3650611967,LB 3650611968,3650613247,RU 3650613248,3650617343,DE 3650617344,3650682879,FI 3650682880,3650748415,PL 3650748416,3650879487,GB 3650879488,3650912255,RO 3650912256,3650916393,GB 3650916394,3650916394,FR 3650916395,3650920703,GB 3650920704,3650920895,LB 3650920896,3650920927,GR 3650920928,3650920959,LB 3650920960,3650920991,GB 3650920992,3650921007,IL 3650921008,3650922799,GB 3650922800,3650922815,FR 3650922816,3650926335,GB 3650926336,3650926591,DE 3650926592,3650929663,ES 3650929664,3650929847,GB 3650929848,3650929855,FR 3650929856,3650929863,DE 3650929864,3650930431,GB 3650930432,3650930687,DE 3650930688,3650932943,GB 3650932944,3650932975,IT 3650932976,3650939607,GB 3650939608,3650939615,TR 3650939616,3650945023,GB 3650945024,3651010559,DK 3651010560,3651076095,GB 3651076096,3651108863,DE 3651108864,3651141631,EE 3651141632,3651152895,DE 3651152896,3651153919,GB 3651153920,3651168255,DE 3651168256,3651169023,ES 3651169024,3651192319,DE 3651192320,3651193343,GB 3651193344,3651207167,DE 3651207168,3651207199,GB 3651207224,3651207295,GB 3651207424,3651207615,GB 3651207648,3651208959,GB 3651209216,3651209231,US 3651209232,3651209239,GB 3651209240,3651209243,DE 3651209472,3651210751,GB 3651211264,3651211775,IR 3651213824,3651214207,US 3651215360,3651215395,GB 3651215616,3651215871,GB 3651217408,3651217535,GI 3651219456,3651219967,US 3651220384,3651220415,GB 3651220432,3651220479,GB 3651221504,3651221695,GB 3651223552,3651223567,GB 3651223584,3651223607,GB 3651223648,3651223663,ES 3651227136,3651227391,GB 3651230720,3651231743,MU 3651232256,3651232287,GB 3651232320,3651232383,GB 3651232448,3651232511,GB 3651237376,3651237631,SC 3651239936,3651272703,GB 3651272704,3651289087,CH 3651289088,3651289599,DE 3651289600,3651338239,CH 3651338240,3651353087,GB 3651353088,3651353343,FR 3651353344,3651403775,GB 3651403776,3651534847,AE 3651534848,3651600383,NL 3651600384,3651665919,FR 3651665920,3651670015,ES 3651670016,3651674111,GB 3651674112,3651682303,CH 3651682304,3651686399,RU 3651686400,3651690495,NO 3651690496,3651694591,FR 3651694592,3651698687,PT 3651698688,3651702783,PL 3651702784,3651706879,GB 3651706880,3651710975,MT 3651710976,3651715071,AZ 3651715072,3651719167,PL 3651719168,3651723263,CZ 3651723264,3651727359,IT 3651727360,3651731455,RU 3651731456,3651747839,GB 3651747840,3651751935,FI 3651751936,3651756031,RU 3651756032,3651764223,IT 3651764224,3651772415,CH 3651772416,3651776511,GB 3651776512,3651780607,CZ 3651780608,3651784703,TR 3651784704,3651788799,RS 3651788800,3651792895,NL 3651792896,3651796991,FR 3651796992,3651813375,NL 3651813376,3651821567,RU 3651821568,3651825663,CZ 3651825664,3651829759,RU 3651829760,3651833855,NO 3651833856,3651837951,ML 3651837952,3651842047,PL 3651842048,3651846143,DE 3651846144,3651850239,NO 3651850240,3651854335,RU 3651854336,3651858431,IT 3651858432,3651862527,IR 3651862528,3651866623,RU 3651866624,3651870719,FR 3651870720,3651874815,IT 3651874816,3651878911,PL 3651878912,3651883007,IT 3651883008,3651884287,CD 3651884288,3651885839,BE 3651885840,3651885843,CD 3651885844,3651887103,BE 3651887104,3651891199,GB 3651891200,3651895295,DE 3651895296,3651899391,GB 3651899392,3651903487,RU 3651903488,3651907583,IT 3651907584,3651911679,DE 3651911680,3651915775,NO 3651915776,3651919871,IS 3651919872,3651921919,NL 3651921920,3651923967,IT 3651923968,3651928063,DE 3651928064,3651932159,IT 3651932160,3651936255,RU 3651936256,3651937023,DE 3651937024,3651938047,FR 3651938048,3651940351,DE 3651940352,3651941119,FR 3651941120,3651944447,DE 3651944448,3651948543,ES 3651948544,3651952639,FO 3651952640,3651953663,IR 3651953664,3651954687,AE 3651954688,3651957759,IR 3651957760,3651958783,AE 3651958784,3651960831,IR 3651960832,3651964927,GB 3651964928,3651969023,SK 3651969024,3651971613,DE 3651971614,3651971614,TR 3651971615,3651977215,DE 3651977216,3651985407,IT 3651985408,3651997695,PL 3651997696,3652001791,RU 3652001792,3652005887,HU 3652005888,3652009983,GB 3652009984,3652014079,RU 3652014080,3652018175,SA 3652018176,3652022271,IE 3652022272,3652026367,ES 3652026368,3652032767,DE 3652032768,3652033791,NL 3652033792,3652034559,DE 3652034560,3652046847,PL 3652046848,3652050943,IE 3652050944,3652055039,LI 3652055040,3652059135,NO 3652059136,3652063231,RU 3652063232,3652067327,IR 3652067328,3652071423,TR 3652071424,3652075519,BG 3652075520,3652083711,SE 3652083712,3652087807,RU 3652087808,3652095999,IT 3652096000,3652100095,BG 3652100096,3652108287,RU 3652108288,3652116479,FR 3652116480,3652120575,TM 3652120576,3652124671,GB 3652124672,3652128767,UA 3652128768,3652136959,RU 3652136960,3652141055,IT 3652141056,3652145151,GB 3652145152,3652149247,UA 3652149248,3652153343,DE 3652153344,3652157439,SE 3652157440,3652165631,RU 3652165632,3652170751,FR 3652170752,3652171007,MQ 3652171008,3652172031,FR 3652172032,3652172287,RE 3652172288,3652173823,FR 3652173824,3652177919,AT 3652177920,3652182015,CY 3652182016,3652190207,DE 3652190208,3652714495,GB 3652714496,3653238783,DE 3653238784,3653369855,CH 3653369856,3653373951,IT 3653373952,3653378047,NL 3653378048,3653378559,DE 3653378560,3653378569,DK 3653378570,3653378570,DE 3653378571,3653378655,DK 3653378656,3653378656,DE 3653378657,3653378674,DK 3653378675,3653378675,DE 3653378676,3653378815,DK 3653378816,3653382143,DE 3653382144,3653386239,CH 3653386240,3653390335,DE 3653390336,3653394431,FR 3653394432,3653402623,NL 3653402624,3653407103,GB 3653407104,3653407111,UG 3653407112,3653408071,GB 3653408072,3653408079,NG 3653408080,3653408231,GB 3653408232,3653408239,KE 3653408240,3653410815,GB 3653410816,3653414911,CZ 3653414912,3653419007,IT 3653419008,3653423103,IL 3653423104,3653427199,GB 3653427200,3653431295,DE 3653431296,3653435391,RU 3653435392,3653439487,DE 3653439488,3653443583,FR 3653443584,3653447679,DE 3653447680,3653451775,LV 3653451776,3653464063,RU 3653464064,3653468159,NL 3653468160,3653472255,GR 3653476352,3653480447,CZ 3653480448,3653484543,DK 3653484544,3653488639,TR 3653488640,3653492735,RU 3653492736,3653500927,NL 3653500928,3653505023,GB 3653505024,3653509119,KZ 3653509120,3653513215,NL 3653513216,3653517311,NO 3653517312,3653525503,AT 3653525504,3653529599,RU 3653529600,3653533695,CZ 3653533696,3653537791,IT 3653537792,3653541887,AT 3653541888,3653545983,UA 3653545984,3653550079,CH 3653550080,3653554175,MK 3653554176,3653558271,CZ 3653558272,3653566463,GB 3653566464,3653570559,RU 3653570560,3653574655,ES 3653574656,3653578751,CZ 3653578752,3653582847,SE 3653582848,3653586943,PL 3653586944,3653591039,DE 3653591040,3653595135,LU 3653595136,3653599231,RU 3653599232,3653601279,CH 3653601280,3653603327,BA 3653603328,3653607423,CZ 3653607424,3653611519,PL 3653611520,3653615615,HU 3653615616,3653619711,RU 3653619712,3653623807,CH 3653623808,3653636095,RU 3653636096,3653640191,NL 3653640192,3653648383,GB 3653648384,3653652479,SE 3653652480,3653656575,RU 3653656576,3653660671,GB 3653660672,3653664767,CZ 3653664768,3653666815,DE 3653666816,3653667839,NL 3653667840,3653668863,DE 3653668864,3653672959,SE 3653672960,3653681151,RU 3653681152,3653685247,ES 3653685248,3653689343,DK 3653689344,3653693439,LV 3653693440,3653697535,DE 3653697536,3653705727,IT 3653705728,3653713919,NO 3653713920,3653718015,DE 3653718016,3653722111,AT 3653722112,3653730303,LV 3653730304,3653734399,BA 3653734400,3653738495,KE 3653738496,3653746687,GB 3653746688,3653750783,DE 3653750784,3653754879,RU 3653754880,3653758975,UA 3653758976,3653763071,RU 3653763072,3654025215,IT 3654025216,3654287359,GB 3654287360,3654607103,SE 3654607104,3654607359,DE 3654607360,3654608404,SE 3654608405,3654608405,NO 3654608406,3654608895,SE 3654608896,3654609919,NO 3654609920,3654610431,SE 3654610432,3654610943,FR 3654610944,3654611199,SE 3654611200,3654611455,NL 3654611456,3654614079,SE 3654614080,3654614271,FI 3654614272,3654614527,NL 3654614528,3654811647,SE 3654811648,3654942719,ES 3654942720,3655073791,IR 3655073792,3655335935,IT 3655335936,3657433087,DE 3657433088,3659415455,CN 3659415456,3659415487,SG 3659415488,3659530239,CN 3659530240,3659595775,TW 3659595776,3659628543,ID 3659628544,3659661311,JP 3659661312,3659792383,TW 3659792384,3660054527,KR 3660054528,3660102143,JP 3660102144,3660102399,US 3660102400,3660578815,JP 3660578816,3661103103,KR 3661103104,3663986687,CN 3663986688,3663987711,AU 3663987712,3663987967,ID 3663987968,3663989247,JP 3663989248,3663989503,VN 3663989504,3663989759,ID 3663989760,3663990271,AU 3663990272,3663990527,VN 3663990528,3663990783,JP 3663990784,3663991295,HK 3663991296,3663991551,MY 3663991552,3663991807,AU 3663992064,3663992319,NZ 3663992320,3663992575,MY 3663992576,3663993599,NZ 3663993600,3663996159,ID 3663996160,3663996415,AU 3663996416,3663996671,TH 3663996672,3663997183,AU 3663997184,3663997439,ID 3663997440,3663997695,JP 3663997696,3663997951,AU 3663997952,3663998207,MY 3663998208,3663998463,JP 3663998464,3663998975,TH 3663998976,3663999487,IN 3663999488,3663999743,AU 3664000000,3664000767,AU 3664000768,3664001023,ID 3664001024,3664001279,NZ 3664001280,3664001535,LK 3664001536,3664001791,MY 3664001792,3664002047,AU 3664002048,3664002303,VN 3664002304,3664002559,LK 3664002560,3664003327,ID 3664003328,3664003583,NZ 3664003584,3664003839,TH 3664003840,3664004095,JP 3664004352,3664004607,MY 3664004864,3664005119,KH 3664005120,3664005887,ID 3664005888,3664006143,MY 3664006144,3664006399,AU 3664006400,3664006655,PF 3664006656,3664006911,AU 3664006912,3664007167,NZ 3664007168,3664008191,AU 3664008192,3664008447,MN 3664008448,3664008703,PK 3664008960,3664010239,AU 3664010240,3664052223,CN 3664052224,3664084991,NZ 3664084992,3664117759,KR 3664117760,3664248831,HK 3664248832,3664642047,CN 3664642048,3664707583,JP 3664707584,3664773119,MY 3664773120,3666870271,JP 3666870272,3667918847,KR 3667918848,3668967423,TW 3668967424,3669491711,JP 3669491712,3669557247,TW 3669557248,3669590015,AU 3669590016,3669606399,JP 3669606400,3669614591,CN 3669614592,3669616639,NZ 3669616640,3669618687,AU 3669618688,3669620735,CN 3669620736,3669622783,IN 3669622784,3669688319,SG 3669688320,3669753855,TW 3669753856,3670015999,HK 3670016000,3671064575,CN 3671064576,3671130111,MY 3671130112,3671195647,KR 3671195648,3671326719,TW 3671326720,3671392255,SG 3671392256,3671457791,HK 3671457792,3671588863,AU 3671588864,3672637439,JP 3672637440,3673161727,KR 3673161728,3673686015,CN 3673686016,3673751551,IN 3673751552,3673817087,CN 3673817088,3673882623,HK 3673882624,3673948159,JP 3673948160,3674210303,HK 3674210304,3678404607,JP 3678404608,3678535679,IN 3678535680,3678666751,JP 3678666752,3678928895,TW 3678928896,3678994431,CN 3678994432,3679027199,HK 3679027200,3679059967,JP 3679059968,3679158271,SG 3679158272,3679191039,JP 3679191040,3679453183,HK 3679453184,3679584255,TW 3679584256,3679649791,CN 3679649792,3679682559,ID 3679682560,3679715327,CN 3679715328,3679977471,TW 3679977472,3680108543,NZ 3680108544,3680124927,TW 3680124928,3680125951,IN 3680125952,3680129023,CN 3680129024,3680133119,PH 3680133120,3680137215,IN 3680137216,3680141311,HK 3680141312,3680174079,AU 3680174080,3680206847,TW 3680206848,3680239615,IN 3680239616,3680403455,MY 3680403456,3680436223,JP 3680436224,3680501759,MY 3680501760,3682598911,JP 3682598912,3684696063,CN 3684696064,3688366079,JP 3688366080,3689938943,CN 3689938944,3690070015,KR 3690070016,3690463231,CN 3690463232,3690987519,KR 3690987520,3695181823,JP 3695181824,3697278975,KR 3697278976,3697573887,JP 3697573888,3697582079,GB 3697582080,3697586175,SG 3697586176,3697606655,JP 3697606656,3697655807,AU 3697655808,3697672191,CN 3697672192,3697737727,JP 3697737728,3697803263,KR 3697803264,3698327551,JP 3698327552,3698589695,CN 3698589696,3699376127,KR 3699376128,3700424703,TW 3700424704,3700752383,JP 3700752384,3700817919,KR 3700817920,3700977663,JP 3700977664,3700979711,AU 3700979712,3700981759,JP 3700981760,3701014527,CN 3701014528,3701080063,JP 3701080064,3701211135,CN 3701211136,3701252095,JP 3701252096,3701256191,NC 3701256192,3701258239,SG 3701258240,3701260287,IN 3701260288,3701293055,JP 3701293056,3701301247,AU 3701301248,3701305343,ID 3701305344,3701309439,TW 3701309440,3701374975,JP 3701374976,3701375999,IN 3701376000,3701377023,HK 3701377024,3701380095,IN 3701380096,3701381119,KH 3701381120,3701390335,IN 3701390336,3701391359,AU 3701391360,3701392383,IN 3701392384,3701393407,HK 3701393408,3701394431,MY 3701394432,3701395455,BD 3701395456,3701396479,HK 3701396480,3701397503,NZ 3701397504,3701398527,JP 3701398528,3701399551,MV 3701399552,3701400575,HK 3701400576,3701401599,TW 3701401600,3701402623,BD 3701402624,3701403647,BT 3701403648,3701404671,CN 3701404672,3701405695,HK 3701405696,3701406719,JP 3701406720,3701407743,HK 3701407744,3701473279,JP 3701473280,3704619007,CN 3704619008,3705667583,JP 3705667584,3705929727,IN 3705929728,3706060799,TW 3706060800,3706126335,KR 3706126336,3706142719,CN 3706142720,3706159103,VN 3706159104,3706191871,CN 3706191872,3706207107,SG 3706207108,3706207108,US 3706207109,3706208255,SG 3706208256,3706224639,CN 3706224640,3706257407,HK 3706257408,3706322943,AU 3706322944,3706388479,CN 3706388480,3706781695,AU 3706781696,3706847231,HK 3706847232,3706978303,CN 3706978304,3707109375,AU 3707109376,3707174911,HK 3707174912,3707207679,JP 3707209728,3707211775,CN 3707211776,3707215871,ID 3707215872,3707217919,BD 3707217920,3707219967,ID 3707219968,3707222015,AU 3707222016,3707224063,JP 3707224064,3707240447,LK 3707240448,3707568127,CN 3707568128,3707633663,AU 3707633664,3707699199,JP 3707699200,3707764735,SG 3707764736,3708600319,CN 3708600320,3708616703,JP 3708616704,3708813311,CN 3708813312,3715629055,JP 3715629056,3715653631,TW 3715653632,3715655679,BD 3715655680,3715657727,IN 3715657728,3715661823,SG 3715661824,3715672063,AU 3715672064,3715674111,JP 3715674112,3715678207,HK 3715678208,3715694591,PK 3715694592,3715710975,VN 3715710976,3715719167,AU 3715719168,3715727359,PH 3715727360,3715729151,AU 3715729152,3715729407,NZ 3715729408,3715735551,AU 3715735552,3715741695,JP 3715741696,3715743743,PH 3715743744,3715760127,JP 3715760128,3715891199,CN 3715891200,3716153343,HK 3716153344,3716169727,SG 3716169728,3716175615,JP 3716175616,3716184575,TH 3716184576,3716186111,JP 3716186112,3716415487,CN 3716415488,3716431871,VN 3716431872,3716440063,KR 3716440064,3716444159,JP 3716444160,3716446207,PK 3716446208,3716464639,JP 3716464640,3716481023,ID 3716481024,3716489215,VN 3716489216,3716493311,MY 3716493312,3716497407,KR 3716497408,3716513791,JP 3716513792,3716530175,KR 3716530176,3716538367,AU 3716538368,3716546559,CN 3716546560,3716677631,IN 3716677632,3716808703,CN 3716808704,3718840319,KR 3718840320,3718905855,TW 3718905856,3719036927,JP 3719036928,3719823359,CN 3719823360,3720347647,JP 3720347648,3720859647,CN 3720859648,3720863743,AU 3720863744,3723493375,CN 3723493376,3725590527,JP 3725590528,3730833407,CN 3730833408,3732602879,KR 3732602880,3732668415,TH 3732668416,3732733951,ID 3732733952,3732799487,CN 3732799488,3732832255,PH 3732832256,3732865023,CN 3732865024,3732930559,PH 3732930560,3733979135,CN 3733979136,3734503423,JP 3734503424,3734765567,NZ 3734765568,3734896639,TW 3734896640,3735027711,JP 3735027712,3735289855,CN 3735289856,3735388159,SG 3735388160,3735404543,LK 3735404544,3735420927,ID 3735420928,3735551999,HK 3735552000,3739222015,CN 3739222016,3739570175,JP 3739570176,3739572223,ID 3739572224,3739574271,AU 3739574272,3739680767,JP 3739680768,3739697151,KR 3739697152,3739746303,JP 3739746304,3740270591,KR 3740270592,3740925951,CN 3740925952,3741024255,TW 3741024256,3741057023,KR 3741057024,3741319167,VN 3741319168,3742367743,CN 3742367744,3742629887,HK 3742629888,3742760959,CN 3742760960,3742892031,TW 3742892032,3742957567,TH 3742957568,3742973951,PH 3742973952,3742982143,SG 3742982144,3742986239,ID 3742986240,3742988287,AU 3742988288,3742990335,VU 3742990336,3743006719,JP 3743006720,3743014911,TH 3743014912,3743016959,AU 3743016960,3743019007,SG 3743019008,3743023103,MY 3743023104,3743027199,TW 3743027200,3743031295,SG 3743031296,3743035391,IN 3743035392,3743039487,HK 3743039488,3743055871,TW 3743055872,3743088639,KR 3743088640,3743093647,AU 3743093648,3743093648,NZ 3743093649,3743096831,AU 3743096832,3743105023,TW 3743105024,3743106047,AU 3743106048,3743109119,JP 3743109120,3743113215,BD 3743113216,3743115263,AU 3743115264,3743117311,VN 3743117312,3743118335,BD 3743118336,3743119359,JP 3743119360,3743120383,IN 3743120384,3743121407,JP 3743121408,3743125503,MY 3743125504,3743129599,ID 3743129600,3743130623,HK 3743130624,3743130879,SG 3743130880,3743131135,HK 3743131136,3743133695,SG 3743133696,3743134719,AU 3743134720,3743135743,JP 3743135744,3743136767,CN 3743136768,3743137791,MY 3743137792,3743154175,TH 3743154176,3743186943,MY 3743186944,3743219711,KR 3743219712,3743252479,JP 3743252480,3743264767,NC 3743264768,3743268863,JP 3743268864,3743272959,IN 3743277056,3743281151,PK 3743281152,3743282175,AU 3743282176,3743283199,JP 3743283200,3743284223,HK 3743284224,3743285247,CN 3743285248,3743416319,IN 3743416320,3745513471,KR 3745513472,3749052415,CN 3749052416,3749183487,HK 3749183488,3749838847,CN 3749838848,3749839871,SG 3749839872,3749840895,IN 3749840896,3749841919,CN 3749841920,3749842943,AU 3749842944,3749843967,PH 3749843968,3749846015,AU 3749846016,3749847039,IN 3749847040,3749855231,HK 3749855232,3749969919,KR 3749969920,3750232063,JP 3750232064,3750756351,TW 3750756352,3752067071,CN 3752067072,3752132607,ID 3752133632,3752134655,ID 3752134656,3752136703,TW 3752136704,3752137727,NZ 3752137728,3752138751,JP 3752138752,3752140799,IN 3752140800,3752148991,JP 3752148992,3752153087,NZ 3752153088,3752157183,JP 3752157184,3752165375,AU 3752165376,3752198143,KR 3752198144,3752329215,CN 3752329216,3752853503,KR 3752853504,3753902079,IN 3753902080,3754033151,CN 3754033152,3754164223,KR 3754164224,3754229759,IN 3754229760,3754295295,HK 3754295296,3754426367,CN 3754426368,3754491903,TW 3754491904,3754688511,CN 3754688512,3754950655,TH 3754950656,3755474943,CN 3755474944,3755737087,JP 3755737088,3755868159,CN 3755868160,3755933695,KR 3755933696,3755966463,JP 3755966464,3755974655,IN 3755974656,3755976703,JP 3755976704,3755978751,KH 3755978752,3755986943,CN 3755986944,3755988991,JP 3755988992,3755990015,HK 3755990016,3755991039,SG 3755991040,3755999231,JP 3755999232,3757047807,IN 3757047808,3757834239,CN 3757834240,3757867007,AU 3757867008,3757875519,CN 3757875520,3757875583,HK 3757875584,3757899775,CN 3757899776,3757965311,KR 3757965312,3758063615,CN 3758063616,3758079999,HK 3758080000,3758088191,KR 3758088192,3758090239,ID 3758090240,3758091263,AU 3758091264,3758092287,CN 3758092288,3758093311,HK 3758093312,3758094335,IN 3758094336,3758095359,HK 3758095360,3758095871,CN 3758095872,3758096127,SG 3758096128,3758096383,AU tor-0.2.7.6/src/config/include.am0000644000175000017500000000062512621363245013416 00000000000000confdir = $(sysconfdir)/tor tordatadir = $(datadir)/tor EXTRA_DIST+= \ src/config/geoip \ src/config/geoip6 \ src/config/torrc.minimal.in \ src/config/torrc.sample.in \ src/config/README conf_DATA = src/config/torrc.sample tordata_DATA = src/config/geoip src/config/geoip6 # fallback_consensus # If we don't have it, fake it. src_config_fallback-consensus: touch src/config/fallback-consensus tor-0.2.7.6/src/config/README0000644000175000017500000000162412621363245012334 00000000000000This directory has configuration files that ship with Tor. They include: geoip geoip6 Geoip files for IPv4 and IPv6 torrc.minimal, torrc.sample: generated from torrc.minimal.in and torrc.sample.in by autoconf. torrc.minimal.in: A very small torrc, suitable for installation by default in /etc/tor/torrc. We try to change torrc.minimal.in as infrequently as possible, since doing so makes the users of many packages have to re-build their torrc files. torrc.minimal.in-staging This is where we stage changes to torrc.minimal.in over time so that when we have a change large enough to warrant a new torrc.minimal.in, we can copy all the other changes over wholesale. torrc.sample.in: A verbose, discursive, batteries-included torrc. Suitable for letting people know how to set up various options, including those most people shouldn't mess with. tor-0.2.7.6/src/config/geoip60000644000175000017500000552247512632311025012600 00000000000000# Last updated based on December 1 2015 Maxmind GeoLite2 Country # wget https://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz # gunzip GeoLite2-Country.mmdb.gz # python mmdb-convert.py GeoLite2-Country.mmdb 2001:200::,2001:200::7fff:ffff:ffff:ffff:ffff,JP 2001:200:120::,2001:200:120:7fff:ffff:ffff:ffff:ffff,JP 2001:200:148::,2001:200:148:7fff:ffff:ffff:ffff:ffff,JP 2001:200:167::,2001:200:167:7fff:ffff:ffff:ffff:ffff,JP 2001:200:180::,2001:200:180:ffff:ffff:ffff:ffff:ffff,JP 2001:200:1c0::,2001:200:1c0:7fff:ffff:ffff:ffff:ffff,JP 2001:200:601::,2001:200:601:7fff:ffff:ffff:ffff:ffff,AU 2001:200:905::,2001:200:905:7fff:ffff:ffff:ffff:ffff,JP 2001:208:3::,2001:208:3:7fff:ffff:ffff:ffff:ffff,SG 2001:208:5::,2001:208:5:7fff:ffff:ffff:ffff:ffff,SG 2001:218::,2001:218:e000:ffff:ffff:ffff:ffff:ffff,JP 2001:218:e001::,2001:218:e001:7fff:ffff:ffff:ffff:ffff,US 2001:218:e001:8000::,2001:218:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:220::,2001:220:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:230::,2001:230:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:238::,2001:238:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:240::,2001:240:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:250::,2001:252:ffff:ffff:ffff:ffff:ffff:ffff,CN 2001:254::,2001:254:ffff:ffff:ffff:ffff:ffff:ffff,CN 2001:256::,2001:256:ffff:ffff:ffff:ffff:ffff:ffff,CN 2001:258::,2001:258:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:260::,2001:260:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:268::,2001:268:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:270::,2001:270:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:278::,2001:278:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:280::,2001:280:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:288::,2001:288:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:290::,2001:290:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:298::,2001:298:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:2a0::,2001:2a0:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:2a8::,2001:2a8:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:2b0::,2001:2b0:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:2b8::,2001:2b8:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:2c0::,2001:2c0:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:2c8::,2001:2c8:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:2d8::,2001:2d8:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:2e0::,2001:2e0:ffff:ffff:ffff:ffff:ffff:ffff,HK 2001:2e8::,2001:2e8:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:2f0::,2001:2f0:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:2f8::,2001:2f8:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:300::,2001:300:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:308::,2001:308:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:310::,2001:310:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:318::,2001:318:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:320::,2001:320:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:330::,2001:330:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:338::,2001:338:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:340::,2001:340:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:348::,2001:348:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:350::,2001:350:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:358::,2001:358:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:360::,2001:360:ffff:ffff:ffff:ffff:ffff:ffff,AU 2001:368::,2001:368:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:370::,2001:370:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:378::,2001:378:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:380::,2001:380:1fb:ffff:ffff:ffff:ffff:ffff,JP 2001:380:1fc::,2001:380:1fc:7fff:ffff:ffff:ffff:ffff,VN 2001:380:1fc:8000::,2001:380:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:388::,2001:388:ffff:ffff:ffff:ffff:ffff:ffff,AU 2001:390::,2001:390:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:398::,2001:398:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:3a0::,2001:3a0:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:3a8::,2001:3a8:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:3b0::,2001:3b0:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:3b8::,2001:3b8:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:3c0::,2001:3c0:1fff:ffff:ffff:ffff:ffff:ffff,JP 2001:3c8::,2001:3c8:ffff:ffff:ffff:ffff:ffff:ffff,TH 2001:3d0::,2001:3d0:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:3d8::,2001:3d8:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:3e0::,2001:3e0:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:3e8::,2001:3e8:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:400::,2001:400:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:408::,2001:408:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:410::,2001:410:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:418::,2001:418:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:420::,2001:420:283f:ffff:ffff:ffff:ffff:ffff,US 2001:420:2840::,2001:420:2840:7fff:ffff:ffff:ffff:ffff,CA 2001:420:2840:8000::,2001:420:284c:12ff:ffff:ffff:ffff:ffff,US 2001:420:284c:1300::,2001:420:284c:13ff:ffff:ffff:ffff:ffff,CA 2001:420:284c:1400::,2001:420:4049:ffff:ffff:ffff:ffff:ffff,US 2001:420:404a::,2001:420:404a:7fff:ffff:ffff:ffff:ffff,GB 2001:420:404a:8000::,2001:420:4081:ffff:ffff:ffff:ffff:ffff,US 2001:420:4082::,2001:420:4082:7fff:ffff:ffff:ffff:ffff,GB 2001:420:4082:8000::,2001:420:4083:ffff:ffff:ffff:ffff:ffff,US 2001:420:4084::,2001:420:4084:7fff:ffff:ffff:ffff:ffff,GB 2001:420:4084:8000::,2001:420:4085:ffff:ffff:ffff:ffff:ffff,US 2001:420:4086::,2001:420:4086:7fff:ffff:ffff:ffff:ffff,GB 2001:420:4086:8000::,2001:420:44d9:ffff:ffff:ffff:ffff:ffff,US 2001:420:44da::,2001:420:44da:7fff:ffff:ffff:ffff:ffff,ES 2001:420:44da:8000::,2001:420:44ef:ffff:ffff:ffff:ffff:ffff,US 2001:420:44f0::,2001:420:44f0:7fff:ffff:ffff:ffff:ffff,FR 2001:420:44f0:8000::,2001:420:4c41:ffff:ffff:ffff:ffff:ffff,US 2001:420:4c42::,2001:420:4c42:7fff:ffff:ffff:ffff:ffff,SA 2001:420:4c42:8000::,2001:420:5040:ffff:ffff:ffff:ffff:ffff,US 2001:420:5041::,2001:420:5041:7fff:ffff:ffff:ffff:ffff,AU 2001:420:5041:8000::,2001:420:5042:ffff:ffff:ffff:ffff:ffff,US 2001:420:5043::,2001:420:5043:7fff:ffff:ffff:ffff:ffff,AU 2001:420:5043:8000::,2001:420:5044:ffff:ffff:ffff:ffff:ffff,US 2001:420:5045::,2001:420:5045:7fff:ffff:ffff:ffff:ffff,AU 2001:420:5045:8000::,2001:420:5046:ffff:ffff:ffff:ffff:ffff,US 2001:420:5047::,2001:420:5047:7fff:ffff:ffff:ffff:ffff,AU 2001:420:5047:8000::,2001:420:5049:ffff:ffff:ffff:ffff:ffff,US 2001:420:504a::,2001:420:504a:7fff:ffff:ffff:ffff:ffff,AU 2001:420:504a:8000::,2001:420:5441:ffff:ffff:ffff:ffff:ffff,US 2001:420:5442::,2001:420:5442:7fff:ffff:ffff:ffff:ffff,IN 2001:420:5442:8000::,2001:420:5442:ffff:ffff:ffff:ffff:ffff,US 2001:420:5443::,2001:420:5443:7fff:ffff:ffff:ffff:ffff,IN 2001:420:5443:8000::,2001:420:5504:ffff:ffff:ffff:ffff:ffff,US 2001:420:5505::,2001:420:5505:7fff:ffff:ffff:ffff:ffff,IN 2001:420:5505:8000::,2001:420:5882:ffff:ffff:ffff:ffff:ffff,US 2001:420:5883::,2001:420:5883:7fff:ffff:ffff:ffff:ffff,CN 2001:420:5883:8000::,2001:420:5894:ffff:ffff:ffff:ffff:ffff,US 2001:420:5895::,2001:420:5895:7fff:ffff:ffff:ffff:ffff,CN 2001:420:5895:8000::,2001:420:5a3f:ffff:ffff:ffff:ffff:ffff,US 2001:420:5a40::,2001:420:5a40:7fff:ffff:ffff:ffff:ffff,CN 2001:420:5a40:8000::,2001:420:5a44:11ff:ffff:ffff:ffff:ffff,US 2001:420:5a44:1200::,2001:420:5a44:12ff:ffff:ffff:ffff:ffff,CN 2001:420:5a44:1300::,2001:420:5c3f:ffff:ffff:ffff:ffff:ffff,US 2001:420:5c40::,2001:420:5c40:7fff:ffff:ffff:ffff:ffff,SG 2001:420:5c40:8000::,2001:420:5c40:ffff:ffff:ffff:ffff:ffff,US 2001:420:5c41::,2001:420:5c41:7fff:ffff:ffff:ffff:ffff,SG 2001:420:5c41:8000::,2001:420:5c41:ffff:ffff:ffff:ffff:ffff,US 2001:420:5c42::,2001:420:5c42:7fff:ffff:ffff:ffff:ffff,SG 2001:420:5c42:8000::,2001:420:5c43:ffff:ffff:ffff:ffff:ffff,US 2001:420:5c44::,2001:420:5c44:7fff:ffff:ffff:ffff:ffff,SG 2001:420:5c44:8000::,2001:420:5c46:ffff:ffff:ffff:ffff:ffff,US 2001:420:5c47::,2001:420:5c47:7fff:ffff:ffff:ffff:ffff,SG 2001:420:5c47:8000::,2001:420:c0c0:ffff:ffff:ffff:ffff:ffff,US 2001:420:c0c1::,2001:420:c0c1:7fff:ffff:ffff:ffff:ffff,CH 2001:420:c0c1:8000::,2001:420:c0cf:ffff:ffff:ffff:ffff:ffff,US 2001:420:c0d0::,2001:420:c0d0:7fff:ffff:ffff:ffff:ffff,AU 2001:420:c0d0:8000::,2001:420:c0d3:ffff:ffff:ffff:ffff:ffff,US 2001:420:c0d4::,2001:420:c0d4:7fff:ffff:ffff:ffff:ffff,SG 2001:420:c0d4:8000::,2001:420:c0d7:ffff:ffff:ffff:ffff:ffff,US 2001:420:c0d8::,2001:420:c0d8:7fff:ffff:ffff:ffff:ffff,CN 2001:420:c0d8:8000::,2001:420:c0db:ffff:ffff:ffff:ffff:ffff,US 2001:420:c0dc::,2001:420:c0dc:7fff:ffff:ffff:ffff:ffff,JP 2001:420:c0dc:8000::,2001:420:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:428::,2001:428:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:430::,2001:430:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:438::,2001:438:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:440::,2001:440:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:448::,2001:448:ffff:ffff:ffff:ffff:ffff:ffff,MX 2001:450::,2001:450:1b:ffff:ffff:ffff:ffff:ffff,US 2001:450:1c::,2001:450:1c:ffff:ffff:ffff:ffff:ffff,CA 2001:450:1d::,2001:450:1d:ffff:ffff:ffff:ffff:ffff,GB 2001:450:1e::,2001:450:1e:ffff:ffff:ffff:ffff:ffff,FR 2001:450:1f::,2001:450:1f:ffff:ffff:ffff:ffff:ffff,CA 2001:450:20::,2001:450:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:458::,2001:458:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:460::,2001:460:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:468::,2001:468:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:470::,2001:470:0:284::,US 2001:470:0:284::1,2001:470:0:284::1,AT 2001:470:0:284::2,2001:470:a:6ff:ffff:ffff:ffff:ffff,US 2001:470:a:700::,2001:470:a:7ff:ffff:ffff:ffff:ffff,CA 2001:470:a:800::,2001:470:18:ffff:ffff:ffff:ffff:ffff,US 2001:470:19::,2001:470:19:7fff:ffff:ffff:ffff:ffff,HK 2001:470:19:8000::,2001:470:1c:ff:ffff:ffff:ffff:ffff,US 2001:470:1c:100::,2001:470:1c:7ff:ffff:ffff:ffff:ffff,CA 2001:470:1c:800::,2001:470:1c:8ff:ffff:ffff:ffff:ffff,US 2001:470:1c:900::,2001:470:1c:bff:ffff:ffff:ffff:ffff,CA 2001:470:1c:c00::,2001:470:1c:ffff:ffff:ffff:ffff:ffff,US 2001:470:1d::,2001:470:1d:7fff:ffff:ffff:ffff:ffff,CA 2001:470:1d:8000::,2001:470:23:ffff:ffff:ffff:ffff:ffff,US 2001:470:24::,2001:470:24:7fff:ffff:ffff:ffff:ffff,TW 2001:470:24:8000::,2001:470:26:b6c:ffff:ffff:ffff:ffff,US 2001:470:26:b6d::,2001:470:26:b6d:ffff:ffff:ffff:ffff,AT 2001:470:26:b6e::,2001:470:27:1a5:ffff:ffff:ffff:ffff,US 2001:470:27:1a6::,2001:470:27:1a6:ffff:ffff:ffff:ffff,RU 2001:470:27:1a7::,2001:470:28:35:ffff:ffff:ffff:ffff,US 2001:470:28:36::,2001:470:28:36:ffff:ffff:ffff:ffff,SE 2001:470:28:37::,2001:470:28:1a5:ffff:ffff:ffff:ffff,US 2001:470:28:1a6::,2001:470:28:1a6:ffff:ffff:ffff:ffff,RU 2001:470:28:1a7::,2001:470:28:9c1:ffff:ffff:ffff:ffff,US 2001:470:28:9c2::,2001:470:28:9c2:ffff:ffff:ffff:ffff,SE 2001:470:28:9c3::,2001:470:28:a2b:ffff:ffff:ffff:ffff,US 2001:470:28:a2c::,2001:470:28:a2c:ffff:ffff:ffff:ffff,SE 2001:470:28:a2d::,2001:470:3c:ffff:ffff:ffff:ffff:ffff,US 2001:470:3d::,2001:470:3d:7fff:ffff:ffff:ffff:ffff,PH 2001:470:3d:8000::,2001:470:6d:ffff:ffff:ffff:ffff:ffff,US 2001:470:6e::,2001:470:6e:7fff:ffff:ffff:ffff:ffff,CZ 2001:470:6e:8000::,2001:470:6f:49e:ffff:ffff:ffff:ffff,US 2001:470:6f:49f::,2001:470:6f:49f:ffff:ffff:ffff:ffff,SK 2001:470:6f:4a0::,2001:470:70:6ff:ffff:ffff:ffff:ffff,US 2001:470:70:700::,2001:470:70:7ff:ffff:ffff:ffff:ffff,RU 2001:470:70:800::,2001:470:71:5ff:ffff:ffff:ffff:ffff,US 2001:470:71:600::,2001:470:71:600:ffff:ffff:ffff:ffff,PL 2001:470:71:601::,2001:470:71:60b:ffff:ffff:ffff:ffff,US 2001:470:71:60c::,2001:470:71:60c:ffff:ffff:ffff:ffff,PL 2001:470:71:60d::,2001:470:d2:ffff:ffff:ffff:ffff:ffff,US 2001:470:d3::,2001:470:d3:7fff:ffff:ffff:ffff:ffff,DE 2001:470:d3:8000::,2001:470:1857:ffff:ffff:ffff:ffff:ffff,US 2001:470:1858::,2001:470:1858:7fff:ffff:ffff:ffff:ffff,GB 2001:470:1858:8000::,2001:470:18c1:7fff:ffff:ffff:ffff:ffff,US 2001:470:18c1:8000::,2001:470:18c1:ffff:ffff:ffff:ffff:ffff,GB 2001:470:18c2::,2001:470:1f08:136:ffff:ffff:ffff:ffff,US 2001:470:1f08:137::,2001:470:1f08:137:ffff:ffff:ffff:ffff,GB 2001:470:1f08:138::,2001:470:1f08:415::1,US 2001:470:1f08:415::2,2001:470:1f08:415::2,GB 2001:470:1f08:415::3,2001:470:1f08:bff:ffff:ffff:ffff:ffff,US 2001:470:1f08:c00::,2001:470:1f08:dff:ffff:ffff:ffff:ffff,GB 2001:470:1f08:e00::,2001:470:1f08:eff:ffff:ffff:ffff:ffff,US 2001:470:1f08:f00::,2001:470:1f08:11ff:ffff:ffff:ffff:ffff,GB 2001:470:1f08:1200::,2001:470:1f08:13ff:ffff:ffff:ffff:ffff,RU 2001:470:1f08:1400::,2001:470:1f09:2b5:ffff:ffff:ffff:ffff,US 2001:470:1f09:2b6::,2001:470:1f09:2b6:ffff:ffff:ffff:ffff,GB 2001:470:1f09:2b7::,2001:470:1f09:414:ffff:ffff:ffff:ffff,US 2001:470:1f09:415::,2001:470:1f09:415:ffff:ffff:ffff:ffff,GB 2001:470:1f09:416::,2001:470:1f0a:1ff:ffff:ffff:ffff:ffff,US 2001:470:1f0a:200::,2001:470:1f0a:3ff:ffff:ffff:ffff:ffff,DE 2001:470:1f0a:400::,2001:470:1f0a:7ff:ffff:ffff:ffff:ffff,US 2001:470:1f0a:800::,2001:470:1f0a:bff:ffff:ffff:ffff:ffff,RU 2001:470:1f0a:c00::,2001:470:1f0b:30e:ffff:ffff:ffff:ffff,US 2001:470:1f0b:30f::,2001:470:1f0b:30f:ffff:ffff:ffff:ffff,DE 2001:470:1f0b:310::,2001:470:1f0b:4b0:ffff:ffff:ffff:ffff,US 2001:470:1f0b:4b1::,2001:470:1f0b:4b1:ffff:ffff:ffff:ffff,UA 2001:470:1f0b:4b2::,2001:470:1f0b:779:ffff:ffff:ffff:ffff,US 2001:470:1f0b:77a::,2001:470:1f0b:77a:ffff:ffff:ffff:ffff,DE 2001:470:1f0b:77b::,2001:470:1f0b:784:ffff:ffff:ffff:ffff,US 2001:470:1f0b:785::,2001:470:1f0b:785:ffff:ffff:ffff:ffff,PL 2001:470:1f0b:786::,2001:470:1f12:bff:ffff:ffff:ffff:ffff,US 2001:470:1f12:c00::,2001:470:1f12:fff:ffff:ffff:ffff:ffff,FR 2001:470:1f12:1000::,2001:470:1f13:7ff:ffff:ffff:ffff:ffff,US 2001:470:1f13:800::,2001:470:1f13:8ff:ffff:ffff:ffff:ffff,FR 2001:470:1f13:900::,2001:470:1f13:9ff:ffff:ffff:ffff:ffff,US 2001:470:1f13:a00::,2001:470:1f13:bff:ffff:ffff:ffff:ffff,FR 2001:470:1f13:c00::,2001:470:1f13:fff:ffff:ffff:ffff:ffff,GB 2001:470:1f13:1000::,2001:470:1f13:11ff:ffff:ffff:ffff:ffff,US 2001:470:1f13:1200::,2001:470:1f13:12ff:ffff:ffff:ffff:ffff,FR 2001:470:1f13:1300::,2001:470:1f15:44f:ffff:ffff:ffff:ffff,US 2001:470:1f15:450::,2001:470:1f15:450:ffff:ffff:ffff:ffff,NL 2001:470:1f15:451::,2001:470:1f15:5ab:ffff:ffff:ffff:ffff,US 2001:470:1f15:5ac::,2001:470:1f15:5ac:ffff:ffff:ffff:ffff,NL 2001:470:1f15:5ad::,2001:470:1f15:9c5:ffff:ffff:ffff:ffff,US 2001:470:1f15:9c6::,2001:470:1f15:9c6:ffff:ffff:ffff:ffff,AT 2001:470:1f15:9c7::,2001:470:1f15:a5f:ffff:ffff:ffff:ffff,US 2001:470:1f15:a60::,2001:470:1f15:a60:ffff:ffff:ffff:ffff,NL 2001:470:1f15:a61::,2001:470:1f15:ffff:ffff:ffff:ffff:ffff,US 2001:470:1f16::,2001:470:1f16:7fff:ffff:ffff:ffff:ffff,CA 2001:470:1f16:8000::,2001:470:1f16:ffff:ffff:ffff:ffff:ffff,US 2001:470:1f17::,2001:470:1f17:7fff:ffff:ffff:ffff:ffff,CA 2001:470:1f17:8000::,2001:470:1f1b:ffff:ffff:ffff:ffff:ffff,US 2001:470:1f1c::,2001:470:1f1c:7fff:ffff:ffff:ffff:ffff,GB 2001:470:1f1c:8000::,2001:470:1f1d:195:ffff:ffff:ffff:ffff,US 2001:470:1f1d:196::,2001:470:1f1d:196:ffff:ffff:ffff:ffff,GB 2001:470:1f1d:197::,2001:470:2050:ffff:ffff:ffff:ffff:ffff,US 2001:470:2051::,2001:470:2051:7fff:ffff:ffff:ffff:ffff,RO 2001:470:2051:8000::,2001:470:207f:ffff:ffff:ffff:ffff:ffff,US 2001:470:2080::,2001:470:2080:7fff:ffff:ffff:ffff:ffff,UA 2001:470:2080:8000::,2001:470:2092:ffff:ffff:ffff:ffff:ffff,US 2001:470:2093::,2001:470:2093:7fff:ffff:ffff:ffff:ffff,SI 2001:470:2093:8000::,2001:470:3028:ffff:ffff:ffff:ffff:ffff,US 2001:470:3029::,2001:470:3029:7fff:ffff:ffff:ffff:ffff,CA 2001:470:3029:8000::,2001:470:302d:ffff:ffff:ffff:ffff:ffff,US 2001:470:302e::,2001:470:302e:7fff:ffff:ffff:ffff:ffff,CA 2001:470:302e:8000::,2001:470:3049:ffff:ffff:ffff:ffff:ffff,US 2001:470:304a::,2001:470:304a:7fff:ffff:ffff:ffff:ffff,MX 2001:470:304a:8000::,2001:470:3051:7fff:ffff:ffff:ffff:ffff,US 2001:470:3051:8000::,2001:470:3051:ffff:ffff:ffff:ffff:ffff,CA 2001:470:3052::,2001:470:48ab:ffff:ffff:ffff:ffff:ffff,US 2001:470:48ac::,2001:470:48ac:7fff:ffff:ffff:ffff:ffff,AU 2001:470:48ac:8000::,2001:470:48d0:ffff:ffff:ffff:ffff:ffff,US 2001:470:48d1::,2001:470:48d1:7fff:ffff:ffff:ffff:ffff,CA 2001:470:48d1:8000::,2001:470:49e5:7fff:ffff:ffff:ffff:ffff,US 2001:470:49e5:8000::,2001:470:49e5:ffff:ffff:ffff:ffff:ffff,CN 2001:470:49e6::,2001:470:507c:ffff:ffff:ffff:ffff:ffff,US 2001:470:507d::,2001:470:507d:7fff:ffff:ffff:ffff:ffff,UA 2001:470:507d:8000::,2001:470:52ba:ffff:ffff:ffff:ffff:ffff,US 2001:470:52bb::,2001:470:52bb:7fff:ffff:ffff:ffff:ffff,UA 2001:470:52bb:8000::,2001:470:52c5:ffff:ffff:ffff:ffff:ffff,US 2001:470:52c6::,2001:470:52c6:7fff:ffff:ffff:ffff:ffff,DE 2001:470:52c6:8000::,2001:470:532d:ffff:ffff:ffff:ffff:ffff,US 2001:470:532e::,2001:470:532e:7fff:ffff:ffff:ffff:ffff,RU 2001:470:532e:8000::,2001:470:5803:7fff:ffff:ffff:ffff:ffff,US 2001:470:5803:8000::,2001:470:5803:ffff:ffff:ffff:ffff:ffff,CZ 2001:470:5804::,2001:470:591a:ffff:ffff:ffff:ffff:ffff,US 2001:470:591b::,2001:470:591b:7fff:ffff:ffff:ffff:ffff,CZ 2001:470:591b:8000::,2001:470:591c:ffff:ffff:ffff:ffff:ffff,US 2001:470:591d::,2001:470:591d:7fff:ffff:ffff:ffff:ffff,CZ 2001:470:591d:8000::,2001:470:5948:ffff:ffff:ffff:ffff:ffff,US 2001:470:5949::,2001:470:5949:7fff:ffff:ffff:ffff:ffff,CZ 2001:470:5949:8000::,2001:470:598f:ffff:ffff:ffff:ffff:ffff,US 2001:470:5990::,2001:470:5990:7fff:ffff:ffff:ffff:ffff,CZ 2001:470:5990:8000::,2001:470:59c0:ffff:ffff:ffff:ffff:ffff,US 2001:470:59c1::,2001:470:59c1:7fff:ffff:ffff:ffff:ffff,CZ 2001:470:59c1:8000::,2001:470:59d7:ffff:ffff:ffff:ffff:ffff,US 2001:470:59d8::,2001:470:59d8:7fff:ffff:ffff:ffff:ffff,CZ 2001:470:59d8:8000::,2001:470:5a34:ffff:ffff:ffff:ffff:ffff,US 2001:470:5a35::,2001:470:5a35:ffff:ffff:ffff:ffff:ffff,CZ 2001:470:5a36::,2001:470:5a39:ffff:ffff:ffff:ffff:ffff,US 2001:470:5a3a::,2001:470:5a3a:ffff:ffff:ffff:ffff:ffff,CZ 2001:470:5a3b::,2001:470:60a2:ffff:ffff:ffff:ffff:ffff,US 2001:470:60a3::,2001:470:60a3:7fff:ffff:ffff:ffff:ffff,BY 2001:470:60a3:8000::,2001:470:60f4:7fff:ffff:ffff:ffff:ffff,US 2001:470:60f4:8000::,2001:470:60f4:ffff:ffff:ffff:ffff:ffff,PL 2001:470:60f5::,2001:470:613f:ffff:ffff:ffff:ffff:ffff,US 2001:470:6140::,2001:470:6140:7fff:ffff:ffff:ffff:ffff,PL 2001:470:6140:8000::,2001:470:618d:ffff:ffff:ffff:ffff:ffff,US 2001:470:618e::,2001:470:618e:7fff:ffff:ffff:ffff:ffff,PL 2001:470:618e:8000::,2001:470:619f:ffff:ffff:ffff:ffff:ffff,US 2001:470:61a0::,2001:470:61a0:7fff:ffff:ffff:ffff:ffff,RU 2001:470:61a0:8000::,2001:470:6228:ffff:ffff:ffff:ffff:ffff,US 2001:470:6229::,2001:470:6229:7fff:ffff:ffff:ffff:ffff,PL 2001:470:6229:8000::,2001:470:6808:7fff:ffff:ffff:ffff:ffff,US 2001:470:6808:8000::,2001:470:6808:ffff:ffff:ffff:ffff:ffff,GB 2001:470:6809::,2001:470:688b:ffff:ffff:ffff:ffff:ffff,US 2001:470:688c::,2001:470:688c:7fff:ffff:ffff:ffff:ffff,GB 2001:470:688c:8000::,2001:470:68a5:ffff:ffff:ffff:ffff:ffff,US 2001:470:68a6::,2001:470:68a6:7fff:ffff:ffff:ffff:ffff,ES 2001:470:68a6:8000::,2001:470:68df:ffff:ffff:ffff:ffff:ffff,US 2001:470:68e0::,2001:470:68e0:7fff:ffff:ffff:ffff:ffff,IL 2001:470:68e0:8000::,2001:470:68e9:ffff:ffff:ffff:ffff:ffff,US 2001:470:68ea::,2001:470:68ea:7fff:ffff:ffff:ffff:ffff,GB 2001:470:68ea:8000::,2001:470:6914:ffff:ffff:ffff:ffff:ffff,US 2001:470:6915::,2001:470:6915:7fff:ffff:ffff:ffff:ffff,ES 2001:470:6915:8000::,2001:470:6924:ffff:ffff:ffff:ffff:ffff,US 2001:470:6925::,2001:470:6925:7fff:ffff:ffff:ffff:ffff,NL 2001:470:6925:8000::,2001:470:6978:ffff:ffff:ffff:ffff:ffff,US 2001:470:6979::,2001:470:6979:7fff:ffff:ffff:ffff:ffff,ES 2001:470:6979:8000::,2001:470:6a20:ffff:ffff:ffff:ffff:ffff,US 2001:470:6a21::,2001:470:6a21:7fff:ffff:ffff:ffff:ffff,GB 2001:470:6a21:8000::,2001:470:6a62:ffff:ffff:ffff:ffff:ffff,US 2001:470:6a63::,2001:470:6a63:7fff:ffff:ffff:ffff:ffff,GB 2001:470:6a63:8000::,2001:470:6af6:ffff:ffff:ffff:ffff:ffff,US 2001:470:6af7::,2001:470:6af7:7fff:ffff:ffff:ffff:ffff,GB 2001:470:6af7:8000::,2001:470:6b28:ffff:ffff:ffff:ffff:ffff,US 2001:470:6b29::,2001:470:6b29:7fff:ffff:ffff:ffff:ffff,GB 2001:470:6b29:8000::,2001:470:6b2e:ffff:ffff:ffff:ffff:ffff,US 2001:470:6b2f::,2001:470:6b2f:7fff:ffff:ffff:ffff:ffff,GB 2001:470:6b2f:8000::,2001:470:6b38:ffff:ffff:ffff:ffff:ffff,US 2001:470:6b39::,2001:470:6b39:7fff:ffff:ffff:ffff:ffff,GB 2001:470:6b39:8000::,2001:470:6b76:ffff:ffff:ffff:ffff:ffff,US 2001:470:6b77::,2001:470:6b77:7fff:ffff:ffff:ffff:ffff,GB 2001:470:6b77:8000::,2001:470:6bba:ffff:ffff:ffff:ffff:ffff,US 2001:470:6bbb::,2001:470:6bbb:7fff:ffff:ffff:ffff:ffff,GB 2001:470:6bbb:8000::,2001:470:6bee:7fff:ffff:ffff:ffff:ffff,US 2001:470:6bee:8000::,2001:470:6bee:ffff:ffff:ffff:ffff:ffff,IN 2001:470:6bef::,2001:470:6c0d:ffff:ffff:ffff:ffff:ffff,US 2001:470:6c0e::,2001:470:6c0e:7fff:ffff:ffff:ffff:ffff,GB 2001:470:6c0e:8000::,2001:470:6c1b:ffff:ffff:ffff:ffff:ffff,US 2001:470:6c1c::,2001:470:6c1c:7fff:ffff:ffff:ffff:ffff,GB 2001:470:6c1c:8000::,2001:470:6c5a:ffff:ffff:ffff:ffff:ffff,US 2001:470:6c5b::,2001:470:6c5b:7fff:ffff:ffff:ffff:ffff,GB 2001:470:6c5b:8000::,2001:470:6c7f:ffff:ffff:ffff:ffff:ffff,US 2001:470:6c80::,2001:470:6c80:7fff:ffff:ffff:ffff:ffff,RU 2001:470:6c80:8000::,2001:470:6c8e:ffff:ffff:ffff:ffff:ffff,US 2001:470:6c8f::,2001:470:6c8f:7fff:ffff:ffff:ffff:ffff,GB 2001:470:6c8f:8000::,2001:470:6c96:ffff:ffff:ffff:ffff:ffff,US 2001:470:6c97::,2001:470:6c97:7fff:ffff:ffff:ffff:ffff,RU 2001:470:6c97:8000::,2001:470:6cee:ffff:ffff:ffff:ffff:ffff,US 2001:470:6cef::,2001:470:6cef:7fff:ffff:ffff:ffff:ffff,ES 2001:470:6cef:8000::,2001:470:6d37:ffff:ffff:ffff:ffff:ffff,US 2001:470:6d38::,2001:470:6d38:7fff:ffff:ffff:ffff:ffff,GB 2001:470:6d38:8000::,2001:470:6d44:ffff:ffff:ffff:ffff:ffff,US 2001:470:6d45::,2001:470:6d45:7fff:ffff:ffff:ffff:ffff,GB 2001:470:6d45:8000::,2001:470:6d54:ffff:ffff:ffff:ffff:ffff,US 2001:470:6d55::,2001:470:6d55:7fff:ffff:ffff:ffff:ffff,GB 2001:470:6d55:8000::,2001:470:6d5b:ffff:ffff:ffff:ffff:ffff,US 2001:470:6d5c::,2001:470:6d5c:7fff:ffff:ffff:ffff:ffff,GB 2001:470:6d5c:8000::,2001:470:7000:ffff:ffff:ffff:ffff:ffff,US 2001:470:7001::,2001:470:7001:7fff:ffff:ffff:ffff:ffff,DE 2001:470:7001:8000::,2001:470:700d:ffff:ffff:ffff:ffff:ffff,US 2001:470:700e::,2001:470:700e:7fff:ffff:ffff:ffff:ffff,DE 2001:470:700e:8000::,2001:470:7069:ffff:ffff:ffff:ffff:ffff,US 2001:470:706a::,2001:470:706a:7fff:ffff:ffff:ffff:ffff,DE 2001:470:706a:8000::,2001:470:7073:7fff:ffff:ffff:ffff:ffff,US 2001:470:7073:8000::,2001:470:7073:ffff:ffff:ffff:ffff:ffff,DE 2001:470:7074::,2001:470:70a1:7fff:ffff:ffff:ffff:ffff,US 2001:470:70a1:8000::,2001:470:70a1:ffff:ffff:ffff:ffff:ffff,RU 2001:470:70a2::,2001:470:70aa:ffff:ffff:ffff:ffff:ffff,US 2001:470:70ab::,2001:470:70ab:7fff:ffff:ffff:ffff:ffff,DE 2001:470:70ab:8000::,2001:470:710f:ffff:ffff:ffff:ffff:ffff,US 2001:470:7110::,2001:470:7110:7fff:ffff:ffff:ffff:ffff,RU 2001:470:7110:8000::,2001:470:7170:ffff:ffff:ffff:ffff:ffff,US 2001:470:7171::,2001:470:7171:ffff:ffff:ffff:ffff:ffff,DE 2001:470:7172::,2001:470:7179:ffff:ffff:ffff:ffff:ffff,US 2001:470:717a::,2001:470:717a:7fff:ffff:ffff:ffff:ffff,DE 2001:470:717a:8000::,2001:470:7192:ffff:ffff:ffff:ffff:ffff,US 2001:470:7193::,2001:470:7193:7fff:ffff:ffff:ffff:ffff,DE 2001:470:7193:8000::,2001:470:71d4:ffff:ffff:ffff:ffff:ffff,US 2001:470:71d5::,2001:470:71d5:7fff:ffff:ffff:ffff:ffff,UA 2001:470:71d5:8000::,2001:470:7280:ffff:ffff:ffff:ffff:ffff,US 2001:470:7281::,2001:470:7281:7fff:ffff:ffff:ffff:ffff,DE 2001:470:7281:8000::,2001:470:7286:ffff:ffff:ffff:ffff:ffff,US 2001:470:7287::,2001:470:7287:ffff:ffff:ffff:ffff:ffff,PL 2001:470:7288::,2001:470:72bd:ffff:ffff:ffff:ffff:ffff,US 2001:470:72be::,2001:470:72be:7fff:ffff:ffff:ffff:ffff,DE 2001:470:72be:8000::,2001:470:7309:ffff:ffff:ffff:ffff:ffff,US 2001:470:730a::,2001:470:730a:7fff:ffff:ffff:ffff:ffff,DE 2001:470:730a:8000::,2001:470:7368:ffff:ffff:ffff:ffff:ffff,US 2001:470:7369::,2001:470:7369:7fff:ffff:ffff:ffff:ffff,TR 2001:470:7369:8000::,2001:470:7383:ffff:ffff:ffff:ffff:ffff,US 2001:470:7384::,2001:470:7384:7fff:ffff:ffff:ffff:ffff,BG 2001:470:7384:8000::,2001:470:73d1:ffff:ffff:ffff:ffff:ffff,US 2001:470:73d2::,2001:470:73d2:7fff:ffff:ffff:ffff:ffff,DE 2001:470:73d2:8000::,2001:470:742b:7fff:ffff:ffff:ffff:ffff,US 2001:470:742b:8000::,2001:470:742b:ffff:ffff:ffff:ffff:ffff,RU 2001:470:742c::,2001:470:7479:ffff:ffff:ffff:ffff:ffff,US 2001:470:747a::,2001:470:747a:7fff:ffff:ffff:ffff:ffff,DE 2001:470:747a:8000::,2001:470:74b8:ffff:ffff:ffff:ffff:ffff,US 2001:470:74b9::,2001:470:74b9:7fff:ffff:ffff:ffff:ffff,RS 2001:470:74b9:8000::,2001:470:74e0:ffff:ffff:ffff:ffff:ffff,US 2001:470:74e1::,2001:470:74e1:7fff:ffff:ffff:ffff:ffff,DE 2001:470:74e1:8000::,2001:470:7552:ffff:ffff:ffff:ffff:ffff,US 2001:470:7553::,2001:470:7553:7fff:ffff:ffff:ffff:ffff,DE 2001:470:7553:8000::,2001:470:7563:7fff:ffff:ffff:ffff:ffff,US 2001:470:7563:8000::,2001:470:7563:ffff:ffff:ffff:ffff:ffff,UA 2001:470:7564::,2001:470:759e:ffff:ffff:ffff:ffff:ffff,US 2001:470:759f::,2001:470:759f:7fff:ffff:ffff:ffff:ffff,DE 2001:470:759f:8000::,2001:470:75bf:ffff:ffff:ffff:ffff:ffff,US 2001:470:75c0::,2001:470:75c0:7fff:ffff:ffff:ffff:ffff,TR 2001:470:75c0:8000::,2001:470:75c1:ffff:ffff:ffff:ffff:ffff,US 2001:470:75c2::,2001:470:75c2:7fff:ffff:ffff:ffff:ffff,DE 2001:470:75c2:8000::,2001:470:75c2:ffff:ffff:ffff:ffff:ffff,US 2001:470:75c3::,2001:470:75c3:7fff:ffff:ffff:ffff:ffff,DE 2001:470:75c3:8000::,2001:470:75c4:ffff:ffff:ffff:ffff:ffff,US 2001:470:75c5::,2001:470:75c5:7fff:ffff:ffff:ffff:ffff,DE 2001:470:75c5:8000::,2001:470:75f0:ffff:ffff:ffff:ffff:ffff,US 2001:470:75f1::,2001:470:75f1:7fff:ffff:ffff:ffff:ffff,DE 2001:470:75f1:8000::,2001:470:7804:ffff:ffff:ffff:ffff:ffff,US 2001:470:7805::,2001:470:7805:7fff:ffff:ffff:ffff:ffff,NL 2001:470:7805:8000::,2001:470:7859:ffff:ffff:ffff:ffff:ffff,US 2001:470:785a::,2001:470:785a:ffff:ffff:ffff:ffff:ffff,AT 2001:470:785b::,2001:470:78ab:ffff:ffff:ffff:ffff:ffff,US 2001:470:78ac::,2001:470:78ac:7fff:ffff:ffff:ffff:ffff,NL 2001:470:78ac:8000::,2001:470:78db:ffff:ffff:ffff:ffff:ffff,US 2001:470:78dc::,2001:470:78dc:7fff:ffff:ffff:ffff:ffff,NL 2001:470:78dc:8000::,2001:470:78e8:ffff:ffff:ffff:ffff:ffff,US 2001:470:78e9::,2001:470:78e9:7fff:ffff:ffff:ffff:ffff,LV 2001:470:78e9:8000::,2001:470:790c:ffff:ffff:ffff:ffff:ffff,US 2001:470:790d::,2001:470:790d:7fff:ffff:ffff:ffff:ffff,NL 2001:470:790d:8000::,2001:470:79ff:ffff:ffff:ffff:ffff:ffff,US 2001:470:7a00::,2001:470:7a00:7fff:ffff:ffff:ffff:ffff,NL 2001:470:7a00:8000::,2001:470:7a91:ffff:ffff:ffff:ffff:ffff,US 2001:470:7a92::,2001:470:7a92:7fff:ffff:ffff:ffff:ffff,DE 2001:470:7a92:8000::,2001:470:7a99:ffff:ffff:ffff:ffff:ffff,US 2001:470:7a9a::,2001:470:7a9a:ffff:ffff:ffff:ffff:ffff,NL 2001:470:7a9b::,2001:470:7ba6:ffff:ffff:ffff:ffff:ffff,US 2001:470:7ba7::,2001:470:7ba7:7fff:ffff:ffff:ffff:ffff,NL 2001:470:7ba7:8000::,2001:470:7baf:ffff:ffff:ffff:ffff:ffff,US 2001:470:7bb0::,2001:470:7bb0:7fff:ffff:ffff:ffff:ffff,BE 2001:470:7bb0:8000::,2001:470:7bbf:ffff:ffff:ffff:ffff:ffff,US 2001:470:7bc0::,2001:470:7bc0:ffff:ffff:ffff:ffff:ffff,NL 2001:470:7bc1::,2001:470:7c01:ffff:ffff:ffff:ffff:ffff,US 2001:470:7c02::,2001:470:7c02:7fff:ffff:ffff:ffff:ffff,NL 2001:470:7c02:8000::,2001:470:7c14:ffff:ffff:ffff:ffff:ffff,US 2001:470:7c15::,2001:470:7c15:7fff:ffff:ffff:ffff:ffff,DE 2001:470:7c15:8000::,2001:470:7c4f:ffff:ffff:ffff:ffff:ffff,US 2001:470:7c50::,2001:470:7c50:7fff:ffff:ffff:ffff:ffff,NL 2001:470:7c50:8000::,2001:470:7d16:ffff:ffff:ffff:ffff:ffff,US 2001:470:7d17::,2001:470:7d17:7fff:ffff:ffff:ffff:ffff,NL 2001:470:7d17:8000::,2001:470:7d59:ffff:ffff:ffff:ffff:ffff,US 2001:470:7d5a::,2001:470:7d5a:7fff:ffff:ffff:ffff:ffff,NL 2001:470:7d5a:8000::,2001:470:8091:ffff:ffff:ffff:ffff:ffff,US 2001:470:8092::,2001:470:8092:7fff:ffff:ffff:ffff:ffff,CN 2001:470:8092:8000::,2001:470:80b6:ffff:ffff:ffff:ffff:ffff,US 2001:470:80b7::,2001:470:80b7:7fff:ffff:ffff:ffff:ffff,CN 2001:470:80b7:8000::,2001:470:80ec:ffff:ffff:ffff:ffff:ffff,US 2001:470:80ed::,2001:470:80ed:7fff:ffff:ffff:ffff:ffff,AU 2001:470:80ed:8000::,2001:470:80f0:ffff:ffff:ffff:ffff:ffff,US 2001:470:80f1::,2001:470:80f1:7fff:ffff:ffff:ffff:ffff,AU 2001:470:80f1:8000::,2001:470:814c:ffff:ffff:ffff:ffff:ffff,US 2001:470:814d::,2001:470:814d:7fff:ffff:ffff:ffff:ffff,AU 2001:470:814d:8000::,2001:470:81ee:ffff:ffff:ffff:ffff:ffff,US 2001:470:81ef::,2001:470:81ef:7fff:ffff:ffff:ffff:ffff,CA 2001:470:81ef:8000::,2001:470:828d:ffff:ffff:ffff:ffff:ffff,US 2001:470:828e::,2001:470:828e:7fff:ffff:ffff:ffff:ffff,CA 2001:470:828e:8000::,2001:470:8327:ffff:ffff:ffff:ffff:ffff,US 2001:470:8328::,2001:470:8328:7fff:ffff:ffff:ffff:ffff,CN 2001:470:8328:8000::,2001:470:83a2:ffff:ffff:ffff:ffff:ffff,US 2001:470:83a3::,2001:470:83a3:7fff:ffff:ffff:ffff:ffff,AU 2001:470:83a3:8000::,2001:470:83bb:ffff:ffff:ffff:ffff:ffff,US 2001:470:83bc::,2001:470:83bc:7fff:ffff:ffff:ffff:ffff,CN 2001:470:83bc:8000::,2001:470:83d0:7fff:ffff:ffff:ffff:ffff,US 2001:470:83d0:8000::,2001:470:83d0:ffff:ffff:ffff:ffff:ffff,CN 2001:470:83d1::,2001:470:83e8:ffff:ffff:ffff:ffff:ffff,US 2001:470:83e9::,2001:470:83e9:7fff:ffff:ffff:ffff:ffff,CN 2001:470:83e9:8000::,2001:470:8551:ffff:ffff:ffff:ffff:ffff,US 2001:470:8552::,2001:470:8552:7fff:ffff:ffff:ffff:ffff,CN 2001:470:8552:8000::,2001:470:8578:ffff:ffff:ffff:ffff:ffff,US 2001:470:8579::,2001:470:8579:7fff:ffff:ffff:ffff:ffff,CN 2001:470:8579:8000::,2001:470:859e:ffff:ffff:ffff:ffff:ffff,US 2001:470:859f::,2001:470:859f:7fff:ffff:ffff:ffff:ffff,AU 2001:470:859f:8000::,2001:470:8c3f:ffff:ffff:ffff:ffff:ffff,US 2001:470:8c40::,2001:470:8c40:7fff:ffff:ffff:ffff:ffff,CA 2001:470:8c40:8000::,2001:470:8c6b:ffff:ffff:ffff:ffff:ffff,US 2001:470:8c6c::,2001:470:8c6c:7fff:ffff:ffff:ffff:ffff,AU 2001:470:8c6c:8000::,2001:470:94f2:7fff:ffff:ffff:ffff:ffff,US 2001:470:94f2:8000::,2001:470:94f2:ffff:ffff:ffff:ffff:ffff,CZ 2001:470:94f3::,2001:470:9616:ffff:ffff:ffff:ffff:ffff,US 2001:470:9617::,2001:470:9617:7fff:ffff:ffff:ffff:ffff,GB 2001:470:9617:8000::,2001:470:974e:ffff:ffff:ffff:ffff:ffff,US 2001:470:974f::,2001:470:974f:7fff:ffff:ffff:ffff:ffff,GB 2001:470:974f:8000::,2001:470:9794:ffff:ffff:ffff:ffff:ffff,US 2001:470:9795::,2001:470:9795:ffff:ffff:ffff:ffff:ffff,GB 2001:470:9796::,2001:470:98e1:ffff:ffff:ffff:ffff:ffff,US 2001:470:98e2::,2001:470:98e2:7fff:ffff:ffff:ffff:ffff,DE 2001:470:98e2:8000::,2001:470:999c:ffff:ffff:ffff:ffff:ffff,US 2001:470:999d::,2001:470:999d:ffff:ffff:ffff:ffff:ffff,DE 2001:470:999e::,2001:470:99b8:ffff:ffff:ffff:ffff:ffff,US 2001:470:99b9::,2001:470:99b9:7fff:ffff:ffff:ffff:ffff,DE 2001:470:99b9:8000::,2001:470:9d38:ffff:ffff:ffff:ffff:ffff,US 2001:470:9d39::,2001:470:9d39:7fff:ffff:ffff:ffff:ffff,DE 2001:470:9d39:8000::,2001:470:9ebf:ffff:ffff:ffff:ffff:ffff,US 2001:470:9ec0::,2001:470:9ec0:7fff:ffff:ffff:ffff:ffff,DE 2001:470:9ec0:8000::,2001:470:9f5e:ffff:ffff:ffff:ffff:ffff,US 2001:470:9f5f::,2001:470:9f5f:7fff:ffff:ffff:ffff:ffff,RU 2001:470:9f5f:8000::,2001:470:b009:ffff:ffff:ffff:ffff:ffff,US 2001:470:b00a::,2001:470:b00a:7fff:ffff:ffff:ffff:ffff,CA 2001:470:b00a:8000::,2001:470:b047:ffff:ffff:ffff:ffff:ffff,US 2001:470:b048::,2001:470:b048:7fff:ffff:ffff:ffff:ffff,CA 2001:470:b048:8000::,2001:470:b083:ffff:ffff:ffff:ffff:ffff,US 2001:470:b084::,2001:470:b084:7fff:ffff:ffff:ffff:ffff,CA 2001:470:b084:8000::,2001:470:b0e1:ffff:ffff:ffff:ffff:ffff,US 2001:470:b0e2::,2001:470:b0e2:ffff:ffff:ffff:ffff:ffff,CA 2001:470:b0e3::,2001:470:b136:7fff:ffff:ffff:ffff:ffff,US 2001:470:b136:8000::,2001:470:b136:ffff:ffff:ffff:ffff:ffff,CA 2001:470:b137::,2001:470:b14d:ffff:ffff:ffff:ffff:ffff,US 2001:470:b14e::,2001:470:b14e:7fff:ffff:ffff:ffff:ffff,CA 2001:470:b14e:8000::,2001:470:b218:ffff:ffff:ffff:ffff:ffff,US 2001:470:b219::,2001:470:b219:7fff:ffff:ffff:ffff:ffff,CA 2001:470:b219:8000::,2001:470:b23e:ffff:ffff:ffff:ffff:ffff,US 2001:470:b23f::,2001:470:b23f:7fff:ffff:ffff:ffff:ffff,CA 2001:470:b23f:8000::,2001:470:b24b:ffff:ffff:ffff:ffff:ffff,US 2001:470:b24c::,2001:470:b24c:7fff:ffff:ffff:ffff:ffff,DO 2001:470:b24c:8000::,2001:470:b27e:ffff:ffff:ffff:ffff:ffff,US 2001:470:b27f::,2001:470:b27f:7fff:ffff:ffff:ffff:ffff,CA 2001:470:b27f:8000::,2001:470:b2d9:ffff:ffff:ffff:ffff:ffff,US 2001:470:b2da::,2001:470:b2da:7fff:ffff:ffff:ffff:ffff,CA 2001:470:b2da:8000::,2001:470:b30c:ffff:ffff:ffff:ffff:ffff,US 2001:470:b30d::,2001:470:b30d:7fff:ffff:ffff:ffff:ffff,CN 2001:470:b30d:8000::,2001:470:b336:7fff:ffff:ffff:ffff:ffff,US 2001:470:b336:8000::,2001:470:b336:ffff:ffff:ffff:ffff:ffff,CA 2001:470:b337::,2001:470:b34f:ffff:ffff:ffff:ffff:ffff,US 2001:470:b350::,2001:470:b350:7fff:ffff:ffff:ffff:ffff,CA 2001:470:b350:8000::,2001:470:b36c:ffff:ffff:ffff:ffff:ffff,US 2001:470:b36d::,2001:470:b36d:7fff:ffff:ffff:ffff:ffff,CA 2001:470:b36d:8000::,2001:470:b398:ffff:ffff:ffff:ffff:ffff,US 2001:470:b399::,2001:470:b399:7fff:ffff:ffff:ffff:ffff,CA 2001:470:b399:8000::,2001:470:b3b5:ffff:ffff:ffff:ffff:ffff,US 2001:470:b3b6::,2001:470:b3b6:7fff:ffff:ffff:ffff:ffff,CA 2001:470:b3b6:8000::,2001:470:b41b:ffff:ffff:ffff:ffff:ffff,US 2001:470:b41c::,2001:470:b41c:7fff:ffff:ffff:ffff:ffff,CH 2001:470:b41c:8000::,2001:470:b431:7fff:ffff:ffff:ffff:ffff,US 2001:470:b431:8000::,2001:470:b431:ffff:ffff:ffff:ffff:ffff,CH 2001:470:b432::,2001:470:b4a4:ffff:ffff:ffff:ffff:ffff,US 2001:470:b4a5::,2001:470:b4a5:7fff:ffff:ffff:ffff:ffff,DE 2001:470:b4a5:8000::,2001:470:b4e9:ffff:ffff:ffff:ffff:ffff,US 2001:470:b4ea::,2001:470:b4ea:ffff:ffff:ffff:ffff:ffff,AT 2001:470:b4eb::,2001:470:b517:ffff:ffff:ffff:ffff:ffff,US 2001:470:b518::,2001:470:b518:7fff:ffff:ffff:ffff:ffff,PL 2001:470:b518:8000::,2001:470:b59e:ffff:ffff:ffff:ffff:ffff,US 2001:470:b59f::,2001:470:b59f:7fff:ffff:ffff:ffff:ffff,CH 2001:470:b59f:8000::,2001:470:b60d:ffff:ffff:ffff:ffff:ffff,US 2001:470:b60e::,2001:470:b60e:7fff:ffff:ffff:ffff:ffff,DE 2001:470:b60e:8000::,2001:470:b625:ffff:ffff:ffff:ffff:ffff,US 2001:470:b626::,2001:470:b626:7fff:ffff:ffff:ffff:ffff,DE 2001:470:b626:8000::,2001:470:b7a4:ffff:ffff:ffff:ffff:ffff,US 2001:470:b7a5::,2001:470:b7a5:7fff:ffff:ffff:ffff:ffff,CH 2001:470:b7a5:8000::,2001:470:b8e6:ffff:ffff:ffff:ffff:ffff,US 2001:470:b8e7::,2001:470:b8e7:7fff:ffff:ffff:ffff:ffff,CR 2001:470:b8e7:8000::,2001:470:c17a:ffff:ffff:ffff:ffff:ffff,US 2001:470:c17b::,2001:470:c17b:7fff:ffff:ffff:ffff:ffff,CA 2001:470:c17b:8000::,2001:470:c322:ffff:ffff:ffff:ffff:ffff,US 2001:470:c323::,2001:470:c323:7fff:ffff:ffff:ffff:ffff,CA 2001:470:c323:8000::,2001:470:c385:ffff:ffff:ffff:ffff:ffff,US 2001:470:c386::,2001:470:c386:7fff:ffff:ffff:ffff:ffff,CA 2001:470:c386:8000::,2001:470:c81c:ffff:ffff:ffff:ffff:ffff,US 2001:470:c81d::,2001:470:c81d:7fff:ffff:ffff:ffff:ffff,TN 2001:470:c81d:8000::,2001:470:c8b7:7fff:ffff:ffff:ffff:ffff,US 2001:470:c8b7:8000::,2001:470:c8b7:ffff:ffff:ffff:ffff:ffff,FR 2001:470:c8b8::,2001:470:c8f1:ffff:ffff:ffff:ffff:ffff,US 2001:470:c8f2::,2001:470:c8f2:7fff:ffff:ffff:ffff:ffff,ES 2001:470:c8f2:8000::,2001:470:c9b2:ffff:ffff:ffff:ffff:ffff,US 2001:470:c9b3::,2001:470:c9b3:7fff:ffff:ffff:ffff:ffff,ES 2001:470:c9b3:8000::,2001:470:cc65:ffff:ffff:ffff:ffff:ffff,US 2001:470:cc66::,2001:470:cc66:7fff:ffff:ffff:ffff:ffff,NL 2001:470:cc66:8000::,2001:470:cd93:7fff:ffff:ffff:ffff:ffff,US 2001:470:cd93:8000::,2001:470:cd93:ffff:ffff:ffff:ffff:ffff,FR 2001:470:cd94::,2001:470:d050:ffff:ffff:ffff:ffff:ffff,US 2001:470:d051::,2001:470:d051:7fff:ffff:ffff:ffff:ffff,NL 2001:470:d051:8000::,2001:470:d17a:ffff:ffff:ffff:ffff:ffff,US 2001:470:d17b::,2001:470:d17b:7fff:ffff:ffff:ffff:ffff,PL 2001:470:d17b:8000::,2001:470:d4ec:ffff:ffff:ffff:ffff:ffff,US 2001:470:d4ed::,2001:470:d4ed:7fff:ffff:ffff:ffff:ffff,FR 2001:470:d4ed:8000::,2001:470:d6b8:ffff:ffff:ffff:ffff:ffff,US 2001:470:d6b9::,2001:470:d6b9:7fff:ffff:ffff:ffff:ffff,RU 2001:470:d6b9:8000::,2001:470:d6e2:ffff:ffff:ffff:ffff:ffff,US 2001:470:d6e3::,2001:470:d6e3:7fff:ffff:ffff:ffff:ffff,NL 2001:470:d6e3:8000::,2001:470:d890:ffff:ffff:ffff:ffff:ffff,US 2001:470:d891::,2001:470:d891:7fff:ffff:ffff:ffff:ffff,BR 2001:470:d891:8000::,2001:470:d9cc:ffff:ffff:ffff:ffff:ffff,US 2001:470:d9cd::,2001:470:d9cd:7fff:ffff:ffff:ffff:ffff,DO 2001:470:d9cd:8000::,2001:470:dc08:ffff:ffff:ffff:ffff:ffff,US 2001:470:dc09::,2001:470:dc09:7fff:ffff:ffff:ffff:ffff,SE 2001:470:dc09:8000::,2001:470:dc24:ffff:ffff:ffff:ffff:ffff,US 2001:470:dc25::,2001:470:dc25:7fff:ffff:ffff:ffff:ffff,RU 2001:470:dc25:8000::,2001:470:dc59:ffff:ffff:ffff:ffff:ffff,US 2001:470:dc5a::,2001:470:dc5a:7fff:ffff:ffff:ffff:ffff,SE 2001:470:dc5a:8000::,2001:470:dcb3:ffff:ffff:ffff:ffff:ffff,US 2001:470:dcb4::,2001:470:dcb4:7fff:ffff:ffff:ffff:ffff,NO 2001:470:dcb4:8000::,2001:470:dcc3:ffff:ffff:ffff:ffff:ffff,US 2001:470:dcc4::,2001:470:dcc4:7fff:ffff:ffff:ffff:ffff,SE 2001:470:dcc4:8000::,2001:470:dcd0:ffff:ffff:ffff:ffff:ffff,US 2001:470:dcd1::,2001:470:dcd1:7fff:ffff:ffff:ffff:ffff,SE 2001:470:dcd1:8000::,2001:470:dd03:ffff:ffff:ffff:ffff:ffff,US 2001:470:dd04::,2001:470:dd04:7fff:ffff:ffff:ffff:ffff,SE 2001:470:dd04:8000::,2001:470:dd3a:ffff:ffff:ffff:ffff:ffff,US 2001:470:dd3b::,2001:470:dd3b:7fff:ffff:ffff:ffff:ffff,FI 2001:470:dd3b:8000::,2001:470:dd94:ffff:ffff:ffff:ffff:ffff,US 2001:470:dd95::,2001:470:dd95:7fff:ffff:ffff:ffff:ffff,UA 2001:470:dd95:8000::,2001:470:dda1:ffff:ffff:ffff:ffff:ffff,US 2001:470:dda2::,2001:470:dda2:7fff:ffff:ffff:ffff:ffff,SE 2001:470:dda2:8000::,2001:470:dde6:ffff:ffff:ffff:ffff:ffff,US 2001:470:dde7::,2001:470:dde7:7fff:ffff:ffff:ffff:ffff,SE 2001:470:dde7:8000::,2001:470:ddf5:ffff:ffff:ffff:ffff:ffff,US 2001:470:ddf6::,2001:470:ddf6:7fff:ffff:ffff:ffff:ffff,SE 2001:470:ddf6:8000::,2001:470:de4a:ffff:ffff:ffff:ffff:ffff,US 2001:470:de4b::,2001:470:de4b:7fff:ffff:ffff:ffff:ffff,SE 2001:470:de4b:8000::,2001:470:de8a:ffff:ffff:ffff:ffff:ffff,US 2001:470:de8b::,2001:470:de8b:7fff:ffff:ffff:ffff:ffff,RU 2001:470:de8b:8000::,2001:470:deb5:7fff:ffff:ffff:ffff:ffff,US 2001:470:deb5:8000::,2001:470:deb5:ffff:ffff:ffff:ffff:ffff,RU 2001:470:deb6::,2001:470:debb:ffff:ffff:ffff:ffff:ffff,US 2001:470:debc::,2001:470:debc:7fff:ffff:ffff:ffff:ffff,SE 2001:470:debc:8000::,2001:470:dec3:ffff:ffff:ffff:ffff:ffff,US 2001:470:dec4::,2001:470:dec4:ffff:ffff:ffff:ffff:ffff,SE 2001:470:dec5::,2001:470:df35:ffff:ffff:ffff:ffff:ffff,US 2001:470:df36::,2001:470:df36:7fff:ffff:ffff:ffff:ffff,RU 2001:470:df36:8000::,2001:470:df6f:ffff:ffff:ffff:ffff:ffff,US 2001:470:df70::,2001:470:df70:7fff:ffff:ffff:ffff:ffff,SE 2001:470:df70:8000::,2001:470:df7c:ffff:ffff:ffff:ffff:ffff,US 2001:470:df7d::,2001:470:df7d:7fff:ffff:ffff:ffff:ffff,SE 2001:470:df7d:8000::,2001:470:dfd5:ffff:ffff:ffff:ffff:ffff,US 2001:470:dfd6::,2001:470:dfd6:7fff:ffff:ffff:ffff:ffff,NO 2001:470:dfd6:8000::,2001:470:e1e4:ffff:ffff:ffff:ffff:ffff,US 2001:470:e1e5::,2001:470:e1e5:7fff:ffff:ffff:ffff:ffff,CA 2001:470:e1e5:8000::,2001:470:e20e:ffff:ffff:ffff:ffff:ffff,US 2001:470:e20f::,2001:470:e20f:7fff:ffff:ffff:ffff:ffff,CA 2001:470:e20f:8000::,2001:470:e939:ffff:ffff:ffff:ffff:ffff,US 2001:470:e93a::,2001:470:e93a:7fff:ffff:ffff:ffff:ffff,CA 2001:470:e93a:8000::,2001:470:e97e:ffff:ffff:ffff:ffff:ffff,US 2001:470:e97f::,2001:470:e97f:7fff:ffff:ffff:ffff:ffff,CA 2001:470:e97f:8000::,2001:470:e9ef:ffff:ffff:ffff:ffff:ffff,US 2001:470:e9f0::,2001:470:e9f0:7fff:ffff:ffff:ffff:ffff,CA 2001:470:e9f0:8000::,2001:470:ea08:ffff:ffff:ffff:ffff:ffff,US 2001:470:ea09::,2001:470:ea09:7fff:ffff:ffff:ffff:ffff,CA 2001:470:ea09:8000::,2001:470:ea76:ffff:ffff:ffff:ffff:ffff,US 2001:470:ea77::,2001:470:ea77:7fff:ffff:ffff:ffff:ffff,AU 2001:470:ea77:8000::,2001:470:ecf5:ffff:ffff:ffff:ffff:ffff,US 2001:470:ecf6::,2001:470:ecf6:7fff:ffff:ffff:ffff:ffff,ID 2001:470:ecf6:8000::,2001:470:ecf6:ffff:ffff:ffff:ffff:ffff,US 2001:470:ecf7::,2001:470:ecf7:7fff:ffff:ffff:ffff:ffff,ID 2001:470:ecf7:8000::,2001:470:ed26:ffff:ffff:ffff:ffff:ffff,US 2001:470:ed27::,2001:470:ed27:7fff:ffff:ffff:ffff:ffff,ID 2001:470:ed27:8000::,2001:470:ed3c:ffff:ffff:ffff:ffff:ffff,US 2001:470:ed3d::,2001:470:ed3d:7fff:ffff:ffff:ffff:ffff,SG 2001:470:ed3d:8000::,2001:470:ed42:ffff:ffff:ffff:ffff:ffff,US 2001:470:ed43::,2001:470:ed43:7fff:ffff:ffff:ffff:ffff,ID 2001:470:ed43:8000::,2001:470:ef84:ffff:ffff:ffff:ffff:ffff,US 2001:470:ef85::,2001:470:ef85:7fff:ffff:ffff:ffff:ffff,CN 2001:470:ef85:8000::,2001:470:f088:ffff:ffff:ffff:ffff:ffff,US 2001:470:f089::,2001:470:f089:7fff:ffff:ffff:ffff:ffff,CN 2001:470:f089:8000::,2001:470:f091:ffff:ffff:ffff:ffff:ffff,US 2001:470:f092::,2001:470:f092:7fff:ffff:ffff:ffff:ffff,CN 2001:470:f092:8000::,2001:470:f1fa:ffff:ffff:ffff:ffff:ffff,US 2001:470:f1fb::,2001:470:f1fb:7fff:ffff:ffff:ffff:ffff,CN 2001:470:f1fb:8000::,2001:470:f270:ffff:ffff:ffff:ffff:ffff,US 2001:470:f271::,2001:470:f271:7fff:ffff:ffff:ffff:ffff,AU 2001:470:f271:8000::,2001:470:f382:ffff:ffff:ffff:ffff:ffff,US 2001:470:f383::,2001:470:f383:7fff:ffff:ffff:ffff:ffff,CN 2001:470:f383:8000::,2001:470:f3bd:ffff:ffff:ffff:ffff:ffff,US 2001:470:f3be::,2001:470:f3be:ffff:ffff:ffff:ffff:ffff,CN 2001:470:f3bf::,2001:470:f4b4:7fff:ffff:ffff:ffff:ffff,US 2001:470:f4b4:8000::,2001:470:f4b4:ffff:ffff:ffff:ffff:ffff,CN 2001:470:f4b5::,2001:470:f4c3:ffff:ffff:ffff:ffff:ffff,US 2001:470:f4c4::,2001:470:f4c4:7fff:ffff:ffff:ffff:ffff,CN 2001:470:f4c4:8000::,2001:470:f818:ffff:ffff:ffff:ffff:ffff,US 2001:470:f819::,2001:470:f819:7fff:ffff:ffff:ffff:ffff,CN 2001:470:f819:8000::,2001:470:f83d:7fff:ffff:ffff:ffff:ffff,US 2001:470:f83d:8000::,2001:470:f83d:ffff:ffff:ffff:ffff:ffff,CN 2001:470:f83e::,2001:470:f891:ffff:ffff:ffff:ffff:ffff,US 2001:470:f892::,2001:470:f892:7fff:ffff:ffff:ffff:ffff,CN 2001:470:f892:8000::,2001:470:f91b:ffff:ffff:ffff:ffff:ffff,US 2001:470:f91c::,2001:470:f91c:7fff:ffff:ffff:ffff:ffff,CN 2001:470:f91c:8000::,2001:470:fa48:ffff:ffff:ffff:ffff:ffff,US 2001:470:fa49::,2001:470:fa49:7fff:ffff:ffff:ffff:ffff,CN 2001:470:fa49:8000::,2001:470:fa6b:ffff:ffff:ffff:ffff:ffff,US 2001:470:fa6c::,2001:470:fa6c:7fff:ffff:ffff:ffff:ffff,HK 2001:470:fa6c:8000::,2001:470:fa87:ffff:ffff:ffff:ffff:ffff,US 2001:470:fa88::,2001:470:fa88:7fff:ffff:ffff:ffff:ffff,HK 2001:470:fa88:8000::,2001:470:fabc:ffff:ffff:ffff:ffff:ffff,US 2001:470:fabd::,2001:470:fabd:7fff:ffff:ffff:ffff:ffff,HK 2001:470:fabd:8000::,2001:470:fb3b:ffff:ffff:ffff:ffff:ffff,US 2001:470:fb3c::,2001:470:fb3c:7fff:ffff:ffff:ffff:ffff,CN 2001:470:fb3c:8000::,2001:470:fc62:ffff:ffff:ffff:ffff:ffff,US 2001:470:fc63::,2001:470:fc63:7fff:ffff:ffff:ffff:ffff,CN 2001:470:fc63:8000::,2001:470:fc78:ffff:ffff:ffff:ffff:ffff,US 2001:470:fc79::,2001:470:fc79:7fff:ffff:ffff:ffff:ffff,JP 2001:470:fc79:8000::,2001:470:fc86:7fff:ffff:ffff:ffff:ffff,US 2001:470:fc86:8000::,2001:470:fc86:ffff:ffff:ffff:ffff:ffff,JP 2001:470:fc87::,2001:470:fdfe:ffff:ffff:ffff:ffff:ffff,US 2001:470:fdff::,2001:470:fdff:7fff:ffff:ffff:ffff:ffff,JP 2001:470:fdff:8000::,2001:470:fe3f:ffff:ffff:ffff:ffff:ffff,US 2001:470:fe40::,2001:470:fe40:7fff:ffff:ffff:ffff:ffff,JP 2001:470:fe40:8000::,2001:470:fe7c:7fff:ffff:ffff:ffff:ffff,US 2001:470:fe7c:8000::,2001:470:fe7c:ffff:ffff:ffff:ffff:ffff,CN 2001:470:fe7d::,2001:470:fecb:ffff:ffff:ffff:ffff:ffff,US 2001:470:fecc::,2001:470:fecc:7fff:ffff:ffff:ffff:ffff,CN 2001:470:fecc:8000::,2001:470:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:478::,2001:478:ffff:ffff:ffff:ffff:ffff:ffff,KN 2001:480::,2001:480:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:490::,2001:490:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4a0::,2001:4a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4b0::,2001:4b0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4b8::,2001:4b8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4c0::,2001:4c0:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:4c8::,2001:4c8:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:4d0::,2001:4d0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4e0::,2001:4e0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4e8::,2001:4e8:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:4f0::,2001:4f0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4f8::,2001:4f8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:500:1::,2001:500:4:ffff:ffff:ffff:ffff:ffff,US 2001:500:6::,2001:500:f:ffff:ffff:ffff:ffff:ffff,CA 2001:500:10::,2001:500:10:ffff:ffff:ffff:ffff:ffff,PR 2001:500:11::,2001:500:15:ffff:ffff:ffff:ffff:ffff,US 2001:500:16::,2001:500:2c:ffff:ffff:ffff:ffff:ffff,CA 2001:500:2d::,2001:500:31:ffff:ffff:ffff:ffff:ffff,US 2001:500:40::,2001:500:56:ffff:ffff:ffff:ffff:ffff,CA 2001:500:60::,2001:500:7d:ffff:ffff:ffff:ffff:ffff,US 2001:500:80::,2001:500:83:ffff:ffff:ffff:ffff:ffff,CA 2001:500:84::,2001:500:89:ffff:ffff:ffff:ffff:ffff,US 2001:500:8c::,2001:500:9f:ffff:ffff:ffff:ffff:ffff,US 2001:500:a0::,2001:500:a7:ffff:ffff:ffff:ffff:ffff,CA 2001:500:a8::,2001:500:a9:ffff:ffff:ffff:ffff:ffff,US 2001:500:c0::,2001:500:ef:ffff:ffff:ffff:ffff:ffff,CA 2001:500:f0::,2001:500:f0:ffff:ffff:ffff:ffff:ffff,US 2001:500:f1::,2001:500:f1:ffff:ffff:ffff:ffff:ffff,CA 2001:500:100::,2001:500:109:ffff:ffff:ffff:ffff:ffff,CA 2001:500:120::,2001:500:13f:ffff:ffff:ffff:ffff:ffff,US 2001:500:3e5::,2001:500:3e5:ffff:ffff:ffff:ffff:ffff,US 2001:500:30ff::,2001:500:30ff:ffff:ffff:ffff:ffff:ffff,US 2001:500:3682::,2001:500:3682:ffff:ffff:ffff:ffff:ffff,US 2001:500:4431::,2001:500:4431:ffff:ffff:ffff:ffff:ffff,US 2001:500:7967::,2001:500:7967:ffff:ffff:ffff:ffff:ffff,US 2001:500:856e::,2001:500:856e:ffff:ffff:ffff:ffff:ffff,US 2001:500:d937::,2001:500:d937:ffff:ffff:ffff:ffff:ffff,US 2001:500:ed30::,2001:500:ed30:ffff:ffff:ffff:ffff:ffff,US 2001:501:8a29::,2001:501:8a29:ffff:ffff:ffff:ffff:ffff,US 2001:501:973c::,2001:501:973c:ffff:ffff:ffff:ffff:ffff,US 2001:501:b1f9::,2001:501:b1f9:ffff:ffff:ffff:ffff:ffff,US 2001:502:8cc::,2001:502:8cc:ffff:ffff:ffff:ffff:ffff,US 2001:502:100e::,2001:502:100e:ffff:ffff:ffff:ffff:ffff,US 2001:502:1ca1::,2001:502:1ca1:ffff:ffff:ffff:ffff:ffff,US 2001:502:2eda::,2001:502:2eda:ffff:ffff:ffff:ffff:ffff,US 2001:502:4612::,2001:502:4612:ffff:ffff:ffff:ffff:ffff,US 2001:502:63bd::,2001:502:63bd:ffff:ffff:ffff:ffff:ffff,US 2001:502:7094::,2001:502:7094:ffff:ffff:ffff:ffff:ffff,US 2001:502:7a71::,2001:502:7a71:ffff:ffff:ffff:ffff:ffff,US 2001:502:8c25::,2001:502:8c25:ffff:ffff:ffff:ffff:ffff,US 2001:502:ad09::,2001:502:ad09:ffff:ffff:ffff:ffff:ffff,US 2001:502:be98::,2001:502:be98:ffff:ffff:ffff:ffff:ffff,US 2001:502:cbe4::,2001:502:cbe4:ffff:ffff:ffff:ffff:ffff,US 2001:502:cfb5::,2001:502:cfb5:ffff:ffff:ffff:ffff:ffff,US 2001:502:d399::,2001:502:d399:ffff:ffff:ffff:ffff:ffff,US 2001:502:f3ff::,2001:502:f3ff:ffff:ffff:ffff:ffff:ffff,US 2001:503:c27::,2001:503:c27:ffff:ffff:ffff:ffff:ffff,US 2001:503:d2d::,2001:503:d2d:ffff:ffff:ffff:ffff:ffff,US 2001:503:231d::,2001:503:231d:ffff:ffff:ffff:ffff:ffff,US 2001:503:3227::,2001:503:3227:ffff:ffff:ffff:ffff:ffff,US 2001:503:39c1::,2001:503:39c1:ffff:ffff:ffff:ffff:ffff,US 2001:503:4872::,2001:503:4872:ffff:ffff:ffff:ffff:ffff,US 2001:503:5419::,2001:503:5419:ffff:ffff:ffff:ffff:ffff,US 2001:503:5ae2::,2001:503:5ae2:ffff:ffff:ffff:ffff:ffff,US 2001:503:6810::,2001:503:6810:ffff:ffff:ffff:ffff:ffff,US 2001:503:7bbb::,2001:503:7bbb:ffff:ffff:ffff:ffff:ffff,US 2001:503:7bbf::,2001:503:7bbf:ffff:ffff:ffff:ffff:ffff,US 2001:503:8028::,2001:503:8028:ffff:ffff:ffff:ffff:ffff,US 2001:503:83eb::,2001:503:83eb:ffff:ffff:ffff:ffff:ffff,US 2001:503:91ef::,2001:503:91ef:ffff:ffff:ffff:ffff:ffff,US 2001:503:a124::,2001:503:a124:ffff:ffff:ffff:ffff:ffff,US 2001:503:a83e::,2001:503:a83e:ffff:ffff:ffff:ffff:ffff,US 2001:503:ba3e::,2001:503:ba3e:ffff:ffff:ffff:ffff:ffff,US 2001:503:bfb0::,2001:503:bfb0:ffff:ffff:ffff:ffff:ffff,US 2001:503:c779::,2001:503:c779:ffff:ffff:ffff:ffff:ffff,US 2001:503:cc2c::,2001:503:cc2c:ffff:ffff:ffff:ffff:ffff,US 2001:503:d1ae::,2001:503:d1ae:ffff:ffff:ffff:ffff:ffff,US 2001:503:d414::,2001:503:d414:ffff:ffff:ffff:ffff:ffff,US 2001:503:e239::,2001:503:e239:ffff:ffff:ffff:ffff:ffff,US 2001:503:e8ef::,2001:503:e8ef:ffff:ffff:ffff:ffff:ffff,US 2001:503:eea3::,2001:503:eea3:ffff:ffff:ffff:ffff:ffff,US 2001:503:f189::,2001:503:f189:ffff:ffff:ffff:ffff:ffff,US 2001:503:f261::,2001:503:f261:ffff:ffff:ffff:ffff:ffff,US 2001:503:f3da::,2001:503:f3da:ffff:ffff:ffff:ffff:ffff,US 2001:503:ff39::,2001:503:ff39:ffff:ffff:ffff:ffff:ffff,US 2001:504::,2001:504:13:ffff:ffff:ffff:ffff:ffff,US 2001:504:15::,2001:504:15:ffff:ffff:ffff:ffff:ffff,CA 2001:504:16::,2001:504:19:ffff:ffff:ffff:ffff:ffff,US 2001:504:1a::,2001:504:1a:ffff:ffff:ffff:ffff:ffff,CA 2001:504:1b::,2001:504:1c:ffff:ffff:ffff:ffff:ffff,US 2001:504:1d::,2001:504:1d:ffff:ffff:ffff:ffff:ffff,PR 2001:504:20::,2001:504:23:ffff:ffff:ffff:ffff:ffff,CA 2001:504:24::,2001:504:24:ffff:ffff:ffff:ffff:ffff,US 2001:504:25::,2001:504:26:ffff:ffff:ffff:ffff:ffff,CA 2001:504:27::,2001:504:29:ffff:ffff:ffff:ffff:ffff,US 2001:504:2c::,2001:504:2d:ffff:ffff:ffff:ffff:ffff,CA 2001:504:2e::,2001:504:2e:ffff:ffff:ffff:ffff:ffff,US 2001:504:2f::,2001:504:2f:ffff:ffff:ffff:ffff:ffff,CA 2001:504:30::,2001:504:34:ffff:ffff:ffff:ffff:ffff,US 2001:504:35::,2001:504:35:ffff:ffff:ffff:ffff:ffff,GD 2001:504:36::,2001:504:36:ffff:ffff:ffff:ffff:ffff,US 2001:504:37::,2001:504:37:ffff:ffff:ffff:ffff:ffff,CA 2001:504:38::,2001:504:38:ffff:ffff:ffff:ffff:ffff,US 2001:504:39::,2001:504:39:ffff:ffff:ffff:ffff:ffff,CA 2001:504:3a::,2001:504:3d:ffff:ffff:ffff:ffff:ffff,US 2001:504:3e::,2001:504:3e:ffff:ffff:ffff:ffff:ffff,JM 2001:504:3f::,2001:504:41:ffff:ffff:ffff:ffff:ffff,US 2001:504:42::,2001:504:42:ffff:ffff:ffff:ffff:ffff,CA 2001:504:43::,2001:504:45:ffff:ffff:ffff:ffff:ffff,US 2001:504:46::,2001:504:46:ffff:ffff:ffff:ffff:ffff,CA 2001:504:47::,2001:504:47:ffff:ffff:ffff:ffff:ffff,US 2001:504:57::,2001:504:57:ffff:ffff:ffff:ffff:ffff,US 2001:506::,2001:506:1:ffff:ffff:ffff:ffff:ffff,US 2001:506:8::,2001:506:8:ffff:ffff:ffff:ffff:ffff,US 2001:506:20::,2001:506:20:ffff:ffff:ffff:ffff:ffff,CA 2001:506:28::,2001:506:28:ffff:ffff:ffff:ffff:ffff,US 2001:506:100::,2001:506:100:ffff:ffff:ffff:ffff:ffff,US 2001:506:1000::,2001:506:2fff:ffff:ffff:ffff:ffff:ffff,US 2001:506:4000::,2001:506:7fff:ffff:ffff:ffff:ffff:ffff,US 2001:508::,2001:508:ffff:ffff:ffff:ffff:ffff:ffff,BM 2001:510::,2001:510:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:518::,2001:518:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:520::,2001:520:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:528::,2001:528:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:530::,2001:530:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:538::,2001:538:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:540::,2001:540:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:548::,2001:548:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:550::,2001:550:0:1000::8275:169,US 2001:550:0:1000::8275:16a,2001:550:0:1000::8275:16a,SI 2001:550:0:1000::8275:16b,2001:550:0:1000::9a19:325,US 2001:550:0:1000::9a19:326,2001:550:0:1000::9a19:326,SI 2001:550:0:1000::9a19:327,2001:550:0:1000::9a36:2631,US 2001:550:0:1000::9a36:2632,2001:550:0:1000::9a36:2632,DE 2001:550:0:1000::9a36:2633,2001:550:7ff:ffff:ffff:ffff:ffff:ffff,US 2001:550:800::,2001:550:800:7fff:ffff:ffff:ffff:ffff,CA 2001:550:800:8000::,2001:550:801:ffff:ffff:ffff:ffff:ffff,US 2001:550:802::,2001:550:802:7fff:ffff:ffff:ffff:ffff,CA 2001:550:802:8000::,2001:550:907:ffff:ffff:ffff:ffff:ffff,US 2001:550:908::,2001:550:908:7fff:ffff:ffff:ffff:ffff,CA 2001:550:908:8000::,2001:550:909:ffff:ffff:ffff:ffff:ffff,US 2001:550:90a::,2001:550:90a:7fff:ffff:ffff:ffff:ffff,CA 2001:550:90a:8000::,2001:550:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:558::,2001:560:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:568::,2001:56f:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:570::,2001:570:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:578::,2001:57b:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:580::,2001:580:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:590::,2001:590:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:598::,2001:598:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:5a0::,2001:5a0:36ff:ffff:ffff:ffff:ffff:ffff,US 2001:5a0:3700::,2001:5a0:3700:ff:ffff:ffff:ffff:ffff,CA 2001:5a0:3700:100::,2001:5a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:5a8::,2001:5a8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:5b0::,2001:5b0:2655:ffff:ffff:ffff:ffff:ffff,US 2001:5b0:2656::,2001:5b0:2656:7fff:ffff:ffff:ffff:ffff,CA 2001:5b0:2656:8000::,2001:5b0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:5b8::,2001:5b8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:5c0:1000::,2001:5c0:10ff:ffff:ffff:ffff:ffff:ffff,CA 2001:5c0:1100::,2001:5c0:1100::,US 2001:5c0:1100::1,2001:5c0:1100:7fff:ffff:ffff:ffff:ffff,CA 2001:5c0:1100:8000::,2001:5c0:1100:bfff:ffff:ffff:ffff:ffff,US 2001:5c0:1100:c000::,2001:5c0:1501:7fff:ffff:ffff:ffff:ffff,CA 2001:5c0:1501:8000::,2001:5c0:1501:ffff:ffff:ffff:ffff:ffff,RU 2001:5c0:1502::,2001:5c0:1505:7fff:ffff:ffff:ffff:ffff,CA 2001:5c0:1505:8000::,2001:5c0:1505:ffff:ffff:ffff:ffff:ffff,RU 2001:5c0:1506::,2001:5c0:1506:ffff:ffff:ffff:ffff:ffff,CA 2001:5c0:1507::,2001:5c0:1507:7fff:ffff:ffff:ffff:ffff,RU 2001:5c0:1507:8000::,2001:5c0:1508:7fff:ffff:ffff:ffff:ffff,CA 2001:5c0:1508:8000::,2001:5c0:1508:ffff:ffff:ffff:ffff:ffff,ES 2001:5c0:1509::,2001:5c0:1fff:ffff:ffff:ffff:ffff:ffff,CA 2001:5c8::,2001:5c8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:5d0::,2001:5d0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:5d8::,2001:5d8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:5e0::,2001:5e0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:5e8::,2001:5e8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:5f0::,2001:5f0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:5f8::,2001:5f8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:608::,2001:608:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:610::,2001:610:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:618::,2001:618:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:620::,2001:627:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:628::,2001:62f:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:630::,2001:630:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:638::,2001:638:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:640::,2001:640:ffff:ffff:ffff:ffff:ffff:ffff,RU 2001:648::,2001:64f:ffff:ffff:ffff:ffff:ffff:ffff,GR 2001:650::,2001:65f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:660::,2001:667:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:668::,2001:668:1e:ffff:ffff:ffff:ffff:ffff,DE 2001:668:1f::,2001:668:1f:3d:ffff:ffff:ffff:ffff,US 2001:668:1f:3e::,2001:668:1f:3e:ffff:ffff:ffff:ffff,GB 2001:668:1f:3f::,2001:668:1f:7fff:ffff:ffff:ffff:ffff,US 2001:668:1f:8000::,2001:66f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:670::,2001:673:ffff:ffff:ffff:ffff:ffff:ffff,FI 2001:678:1::,2001:678:1:ffff:ffff:ffff:ffff:ffff,CZ 2001:678:2::,2001:678:2:ffff:ffff:ffff:ffff:ffff,DE 2001:678:3::,2001:678:3:ffff:ffff:ffff:ffff:ffff,CH 2001:678:4::,2001:678:5:ffff:ffff:ffff:ffff:ffff,GB 2001:678:6::,2001:678:6:ffff:ffff:ffff:ffff:ffff,LT 2001:678:7::,2001:678:7:ffff:ffff:ffff:ffff:ffff,GR 2001:678:8::,2001:678:8:ffff:ffff:ffff:ffff:ffff,NL 2001:678:9::,2001:678:a:ffff:ffff:ffff:ffff:ffff,BE 2001:678:b::,2001:678:b:ffff:ffff:ffff:ffff:ffff,LV 2001:678:c::,2001:678:c:ffff:ffff:ffff:ffff:ffff,FR 2001:678:d::,2001:678:d:ffff:ffff:ffff:ffff:ffff,AT 2001:678:e::,2001:678:e:ffff:ffff:ffff:ffff:ffff,DE 2001:678:f::,2001:678:11:ffff:ffff:ffff:ffff:ffff,CZ 2001:678:12::,2001:678:12:ffff:ffff:ffff:ffff:ffff,IT 2001:678:13::,2001:678:18:ffff:ffff:ffff:ffff:ffff,RU 2001:678:19::,2001:678:19:ffff:ffff:ffff:ffff:ffff,LT 2001:678:1a::,2001:678:1a:ffff:ffff:ffff:ffff:ffff,DK 2001:678:1b::,2001:678:1b:ffff:ffff:ffff:ffff:ffff,LU 2001:678:1c::,2001:678:1c:ffff:ffff:ffff:ffff:ffff,AT 2001:678:20::,2001:678:20:ffff:ffff:ffff:ffff:ffff,AT 2001:678:24::,2001:678:24:ffff:ffff:ffff:ffff:ffff,AT 2001:678:28::,2001:678:28:ffff:ffff:ffff:ffff:ffff,SM 2001:678:2c::,2001:678:2c:ffff:ffff:ffff:ffff:ffff,NL 2001:678:30::,2001:678:30:ffff:ffff:ffff:ffff:ffff,NL 2001:678:34::,2001:678:34:ffff:ffff:ffff:ffff:ffff,NL 2001:678:38::,2001:678:38:ffff:ffff:ffff:ffff:ffff,NL 2001:678:3c::,2001:678:3c:ffff:ffff:ffff:ffff:ffff,BG 2001:678:40::,2001:678:40:ffff:ffff:ffff:ffff:ffff,ES 2001:678:44::,2001:678:44:ffff:ffff:ffff:ffff:ffff,ES 2001:678:48::,2001:678:48:ffff:ffff:ffff:ffff:ffff,ES 2001:678:4c::,2001:678:4c:ffff:ffff:ffff:ffff:ffff,FR 2001:678:60::,2001:678:60:ffff:ffff:ffff:ffff:ffff,LU 2001:678:64::,2001:678:64:ffff:ffff:ffff:ffff:ffff,BE 2001:678:68::,2001:678:68:ffff:ffff:ffff:ffff:ffff,BE 2001:678:6c::,2001:678:6c:ffff:ffff:ffff:ffff:ffff,BE 2001:678:70::,2001:678:70:ffff:ffff:ffff:ffff:ffff,SK 2001:678:74::,2001:678:74:ffff:ffff:ffff:ffff:ffff,DK 2001:678:78::,2001:678:78:ffff:ffff:ffff:ffff:ffff,DK 2001:678:7c::,2001:678:7c:ffff:ffff:ffff:ffff:ffff,LV 2001:678:80::,2001:678:80:ffff:ffff:ffff:ffff:ffff,LV 2001:678:84::,2001:678:84:ffff:ffff:ffff:ffff:ffff,LV 2001:678:88::,2001:678:88:ffff:ffff:ffff:ffff:ffff,LT 2001:678:8c::,2001:678:8c:ffff:ffff:ffff:ffff:ffff,LT 2001:678:90::,2001:678:90:ffff:ffff:ffff:ffff:ffff,SK 2001:678:94::,2001:678:94:ffff:ffff:ffff:ffff:ffff,EE 2001:678:98::,2001:678:98:ffff:ffff:ffff:ffff:ffff,KZ 2001:678:9c::,2001:678:9c:ffff:ffff:ffff:ffff:ffff,SK 2001:678:a0::,2001:678:a0:ffff:ffff:ffff:ffff:ffff,FI 2001:678:a4::,2001:678:a4:ffff:ffff:ffff:ffff:ffff,AT 2001:678:b0::,2001:678:b3:ffff:ffff:ffff:ffff:ffff,IR 2001:67c::,2001:67c::ffff:ffff:ffff:ffff:ffff,IE 2001:67c:4::,2001:67c:4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:8::,2001:67c:8:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:c::,2001:67c:c:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:10::,2001:67c:10:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:14::,2001:67c:14:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:18::,2001:67c:18:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:1c::,2001:67c:1c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:20::,2001:67c:20:ffff:ffff:ffff:ffff:ffff,IE 2001:67c:24::,2001:67c:24:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:28::,2001:67c:28:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2c::,2001:67c:2c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:30::,2001:67c:30:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:34::,2001:67c:34:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:38::,2001:67c:38:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:3c::,2001:67c:3c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:40::,2001:67c:40:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:44::,2001:67c:44:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:48::,2001:67c:48:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:4c::,2001:67c:4c:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:50::,2001:67c:50:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:54::,2001:67c:54:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:58::,2001:67c:58:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:5c::,2001:67c:5c:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:60::,2001:67c:60:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:64::,2001:67c:64:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:68::,2001:67c:68:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:6c::,2001:67c:6c:ffff:ffff:ffff:ffff:ffff,IS 2001:67c:70::,2001:67c:70:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:7c::,2001:67c:7c:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:80::,2001:67c:80:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:84::,2001:67c:84:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:8c::,2001:67c:8c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:90::,2001:67c:90:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:94::,2001:67c:94:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:98::,2001:67c:98:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:9c::,2001:67c:9c:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:a0::,2001:67c:a0:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:a4::,2001:67c:a4:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:a8::,2001:67c:a8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:ac::,2001:67c:ac:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:b0::,2001:67c:b0:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:b4::,2001:67c:b4:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:b8::,2001:67c:b8:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:bc::,2001:67c:bc:ffff:ffff:ffff:ffff:ffff,EE 2001:67c:c0::,2001:67c:c0:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:c4::,2001:67c:c4:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:c8::,2001:67c:c8:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:cc::,2001:67c:cc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:d0::,2001:67c:d0:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:d4::,2001:67c:d4:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:d8::,2001:67c:d8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:dc::,2001:67c:dc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:e0::,2001:67c:e0:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:e4::,2001:67c:e4:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:e8::,2001:67c:e8:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:ec::,2001:67c:ec:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:f0::,2001:67c:f0:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:f4::,2001:67c:f4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:f8::,2001:67c:f8:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:fc::,2001:67c:fc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:100::,2001:67c:100:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:104::,2001:67c:104:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:108::,2001:67c:108:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:10c::,2001:67c:10c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:110::,2001:67c:110:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:114::,2001:67c:114:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:118::,2001:67c:118:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:11c::,2001:67c:11c:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:120::,2001:67c:120:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:124::,2001:67c:124:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:128::,2001:67c:128:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:12c::,2001:67c:12c:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:130::,2001:67c:130:ffff:ffff:ffff:ffff:ffff,SA 2001:67c:134::,2001:67c:134:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:138::,2001:67c:138:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:13c::,2001:67c:13c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:140::,2001:67c:140:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:144::,2001:67c:144:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:148::,2001:67c:148:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:14c::,2001:67c:14d:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:150::,2001:67c:150:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:154::,2001:67c:154:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:158::,2001:67c:158:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:15c::,2001:67c:15c:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:160::,2001:67c:160:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:164::,2001:67c:164:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:168::,2001:67c:168:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:16c::,2001:67c:16c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:170::,2001:67c:170:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:174::,2001:67c:174:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:178::,2001:67c:178:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:17c::,2001:67c:17c:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:180::,2001:67c:180:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:184::,2001:67c:184:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:188::,2001:67c:188:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:18c::,2001:67c:18c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:190::,2001:67c:190:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:194::,2001:67c:194:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:198::,2001:67c:198:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:19c::,2001:67c:19c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1a0::,2001:67c:1a0:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:1a4::,2001:67c:1a4:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:1a8::,2001:67c:1a8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:1ac::,2001:67c:1ac:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1b0::,2001:67c:1b0:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1b4::,2001:67c:1b4:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1b8::,2001:67c:1b8:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1bc::,2001:67c:1bc:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:1c0::,2001:67c:1c0:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1c4::,2001:67c:1c4:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1c8::,2001:67c:1c8:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1cc::,2001:67c:1cc:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:1d0::,2001:67c:1d0:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:1d4::,2001:67c:1d4:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:1d8::,2001:67c:1d8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1dc::,2001:67c:1dc:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1e0::,2001:67c:1e0:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1e4::,2001:67c:1e4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1e8::,2001:67c:1e8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:1ec::,2001:67c:1ec:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:1f0::,2001:67c:1f0:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:1f4::,2001:67c:1f4:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:1f8::,2001:67c:1f8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1fc::,2001:67c:1fc:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:200::,2001:67c:200:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:204::,2001:67c:204:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:208::,2001:67c:208:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:20c::,2001:67c:20c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:210::,2001:67c:210:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:214::,2001:67c:214:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:218::,2001:67c:218:ffff:ffff:ffff:ffff:ffff,LT 2001:67c:21c::,2001:67c:21c:ffff:ffff:ffff:ffff:ffff,AM 2001:67c:220::,2001:67c:220:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:224::,2001:67c:224:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:228::,2001:67c:228:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:22c::,2001:67c:22c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:230::,2001:67c:230:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:234::,2001:67c:234:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:238::,2001:67c:238:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:23c::,2001:67c:23c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:240::,2001:67c:240:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:244::,2001:67c:244:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:248::,2001:67c:248:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:24c::,2001:67c:24c:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:250::,2001:67c:250:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:254::,2001:67c:254:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:258::,2001:67c:258:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:25c::,2001:67c:25c:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:260::,2001:67c:260:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:264::,2001:67c:264:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:268::,2001:67c:268:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:26c::,2001:67c:26c:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:270::,2001:67c:270:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:274::,2001:67c:274:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:278::,2001:67c:278:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:27c::,2001:67c:27c:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:280::,2001:67c:280:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:284::,2001:67c:284:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:288::,2001:67c:288:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:28c::,2001:67c:28c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:290::,2001:67c:290:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:294::,2001:67c:294:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:298::,2001:67c:298:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:29c::,2001:67c:29c:ffff:ffff:ffff:ffff:ffff,IT 2001:67c:2a0::,2001:67c:2a0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2a4::,2001:67c:2a4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2a8::,2001:67c:2a8:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:2ac::,2001:67c:2ac:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2b0::,2001:67c:2b0:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:2b4::,2001:67c:2b4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2b8::,2001:67c:2b8:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2bc::,2001:67c:2bc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2c0::,2001:67c:2c0:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2c4::,2001:67c:2c4:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2c8::,2001:67c:2c8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2cc::,2001:67c:2cc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2d4::,2001:67c:2d4:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2d8::,2001:67c:2d8:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2dc::,2001:67c:2dc:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:2e0::,2001:67c:2e0:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2e4::,2001:67c:2e4:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2e8::,2001:67c:2e8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2ec::,2001:67c:2ec:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2f0::,2001:67c:2f0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2f4::,2001:67c:2f4:ffff:ffff:ffff:ffff:ffff,LU 2001:67c:2f8::,2001:67c:2f8:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2fc::,2001:67c:2fc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:300::,2001:67c:300:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:304::,2001:67c:304:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:308::,2001:67c:308:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:30c::,2001:67c:30c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:310::,2001:67c:310:ffff:ffff:ffff:ffff:ffff,CY 2001:67c:314::,2001:67c:314:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:318::,2001:67c:318:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:31c::,2001:67c:31c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:320::,2001:67c:320:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:324::,2001:67c:324:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:328::,2001:67c:328:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:32c::,2001:67c:32c:ffff:ffff:ffff:ffff:ffff,EE 2001:67c:330::,2001:67c:330:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:334::,2001:67c:334:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:338::,2001:67c:338:ffff:ffff:ffff:ffff:ffff,IE 2001:67c:33c::,2001:67c:33c:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:340::,2001:67c:340:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:344::,2001:67c:344:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:348::,2001:67c:348:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:34c::,2001:67c:34c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:350::,2001:67c:350:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:354::,2001:67c:354:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:358::,2001:67c:358:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:35c::,2001:67c:35c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:360::,2001:67c:360:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:364::,2001:67c:364:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:368::,2001:67c:368:ffff:ffff:ffff:ffff:ffff,LV 2001:67c:36c::,2001:67c:36c:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:370::,2001:67c:370:ffff:ffff:ffff:ffff:ffff,US 2001:67c:374::,2001:67c:374:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:378::,2001:67c:378:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:37c::,2001:67c:37c:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:380::,2001:67c:380:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:384::,2001:67c:384:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:388::,2001:67c:388:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:38c::,2001:67c:38c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:390::,2001:67c:390:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:394::,2001:67c:394:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:398::,2001:67c:398:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:39c::,2001:67c:39c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:3a0::,2001:67c:3a0:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:3a4::,2001:67c:3a4:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:3a8::,2001:67c:3a8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:3ac::,2001:67c:3ac:ffff:ffff:ffff:ffff:ffff,RS 2001:67c:3b0::,2001:67c:3b0:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:3b4::,2001:67c:3b4:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:3b8::,2001:67c:3b8:ffff:ffff:ffff:ffff:ffff,IE 2001:67c:3bc::,2001:67c:3bc:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:3c0::,2001:67c:3c0:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:3c4::,2001:67c:3c4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:3c8::,2001:67c:3c8:ffff:ffff:ffff:ffff:ffff,EE 2001:67c:3cc::,2001:67c:3cc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:3d0::,2001:67c:3d0:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:3d4::,2001:67c:3d4:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:3d8::,2001:67c:3d8:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:3dc::,2001:67c:3dc:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:3e0::,2001:67c:3e0:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:3e4::,2001:67c:3e4:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:3e8::,2001:67c:3e9:ffff:ffff:ffff:ffff:ffff,SA 2001:67c:3f0::,2001:67c:3f0:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:3f4::,2001:67c:3f4:ffff:ffff:ffff:ffff:ffff,HR 2001:67c:3f8::,2001:67c:3f8:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:3fc::,2001:67c:3fc:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:400::,2001:67c:400:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:404::,2001:67c:404:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:408::,2001:67c:408:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:40c::,2001:67c:40c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:410::,2001:67c:410:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:414::,2001:67c:414:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:418::,2001:67c:418:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:41c::,2001:67c:41c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:420::,2001:67c:420:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:424::,2001:67c:424:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:428::,2001:67c:428:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:42c::,2001:67c:42c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:430::,2001:67c:430:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:434::,2001:67c:434:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:438::,2001:67c:438:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:43c::,2001:67c:43c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:440::,2001:67c:440:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:444::,2001:67c:444:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:448::,2001:67c:448:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:44c::,2001:67c:44c:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:450::,2001:67c:450:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:454::,2001:67c:454:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:458::,2001:67c:458:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:45c::,2001:67c:45c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:460::,2001:67c:460:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:464::,2001:67c:464:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:468::,2001:67c:468:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:46c::,2001:67c:46c:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:478::,2001:67c:478:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:47c::,2001:67c:47c:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:480::,2001:67c:480:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:484::,2001:67c:484:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:488::,2001:67c:488:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:48c::,2001:67c:48c:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:490::,2001:67c:490:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:494::,2001:67c:494:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:498::,2001:67c:498:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:49c::,2001:67c:49c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:4a0::,2001:67c:4a0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:4a4::,2001:67c:4a4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:4a8::,2001:67c:4a8:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:4ac::,2001:67c:4ac:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:4b0::,2001:67c:4b0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:4b4::,2001:67c:4b4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:4b8::,2001:67c:4b8:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:4bc::,2001:67c:4bc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:4c0::,2001:67c:4c0:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:4c4::,2001:67c:4c4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:4c8::,2001:67c:4c8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:4cc::,2001:67c:4cc:ffff:ffff:ffff:ffff:ffff,IL 2001:67c:4d0::,2001:67c:4d0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:4d4::,2001:67c:4d4:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:4d8::,2001:67c:4d8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:4dc::,2001:67c:4dc:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:4e0::,2001:67c:4e0:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:4e4::,2001:67c:4e4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:4e8::,2001:67c:4e8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:4ec::,2001:67c:4ec:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:4f0::,2001:67c:4f0:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:4f4::,2001:67c:4f4:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:4f8::,2001:67c:4f8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:4fc::,2001:67c:4fc:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:500::,2001:67c:500:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:504::,2001:67c:504:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:508::,2001:67c:508:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:50c::,2001:67c:50c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:510::,2001:67c:510:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:514::,2001:67c:514:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:518::,2001:67c:518:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:51c::,2001:67c:51c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:520::,2001:67c:520:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:524::,2001:67c:524:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:528::,2001:67c:528:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:52c::,2001:67c:52c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:530::,2001:67c:530:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:534::,2001:67c:534:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:538::,2001:67c:538:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:53c::,2001:67c:53c:ffff:ffff:ffff:ffff:ffff,HR 2001:67c:540::,2001:67c:540:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:544::,2001:67c:544:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:548::,2001:67c:548:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:54c::,2001:67c:54c:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:550::,2001:67c:550:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:558::,2001:67c:558:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:55c::,2001:67c:55c:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:560::,2001:67c:560:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:564::,2001:67c:564:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:568::,2001:67c:568:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:56c::,2001:67c:56c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:570::,2001:67c:570:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:574::,2001:67c:574:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:578::,2001:67c:578:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:57c::,2001:67c:57c:ffff:ffff:ffff:ffff:ffff,BY 2001:67c:580::,2001:67c:580:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:588::,2001:67c:588:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:58c::,2001:67c:58c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:590::,2001:67c:590:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:594::,2001:67c:594:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:598::,2001:67c:598:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:59c::,2001:67c:59c:ffff:ffff:ffff:ffff:ffff,HU 2001:67c:5a0::,2001:67c:5a1:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:5a8::,2001:67c:5a8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:5ac::,2001:67c:5ac:ffff:ffff:ffff:ffff:ffff,BY 2001:67c:5b0::,2001:67c:5b0:ffff:ffff:ffff:ffff:ffff,LV 2001:67c:5b4::,2001:67c:5b4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:5b8::,2001:67c:5b8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:5bc::,2001:67c:5bc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:5c0::,2001:67c:5c0:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:5c4::,2001:67c:5c4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:5c8::,2001:67c:5c8:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:5cc::,2001:67c:5cc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:5d0::,2001:67c:5d0:ffff:ffff:ffff:ffff:ffff,LV 2001:67c:5d4::,2001:67c:5d4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:5d8::,2001:67c:5d8:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:5dc::,2001:67c:5dc:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:5e0::,2001:67c:5e0:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:5e4::,2001:67c:5e4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:5e8::,2001:67c:5e8:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:5ec::,2001:67c:5ec:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:5f0::,2001:67c:5f0:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:5f8::,2001:67c:5f8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:5fc::,2001:67c:5fc:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:600::,2001:67c:600:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:604::,2001:67c:604:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:608::,2001:67c:608:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:60c::,2001:67c:60c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:610::,2001:67c:610:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:618::,2001:67c:618:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:61c::,2001:67c:61c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:620::,2001:67c:620:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:624::,2001:67c:624:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:628::,2001:67c:628:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:62c::,2001:67c:62c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:630::,2001:67c:630:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:634::,2001:67c:634:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:638::,2001:67c:638:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:63c::,2001:67c:63c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:640::,2001:67c:640:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:644::,2001:67c:644:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:648::,2001:67c:648:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:64c::,2001:67c:64c:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:650::,2001:67c:650:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:654::,2001:67c:654:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:658::,2001:67c:658:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:65c::,2001:67c:65c:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:660::,2001:67c:660:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:664::,2001:67c:664:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:668::,2001:67c:668:ffff:ffff:ffff:ffff:ffff,MD 2001:67c:66c::,2001:67c:66c:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:670::,2001:67c:670:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:674::,2001:67c:674:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:678::,2001:67c:678:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:67c::,2001:67c:67c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:680::,2001:67c:680:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:684::,2001:67c:684:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:688::,2001:67c:688:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:68c::,2001:67c:68c:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:690::,2001:67c:690:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:694::,2001:67c:694:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:698::,2001:67c:698:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:69c::,2001:67c:69c:ffff:ffff:ffff:ffff:ffff,RS 2001:67c:6a0::,2001:67c:6a0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:6a4::,2001:67c:6a4:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:6a8::,2001:67c:6a8:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:6ac::,2001:67c:6ac:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:6b0::,2001:67c:6b0:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:6b4::,2001:67c:6b4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:6b8::,2001:67c:6b8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:6bc::,2001:67c:6bc:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:6c0::,2001:67c:6c0:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:6c4::,2001:67c:6c4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:6c8::,2001:67c:6c8:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:6cc::,2001:67c:6cc:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:6d0::,2001:67c:6d0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:6d4::,2001:67c:6d4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:6d8::,2001:67c:6d8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:6dc::,2001:67c:6dc:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:6e0::,2001:67c:6e0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:6e4::,2001:67c:6e4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:6e8::,2001:67c:6e8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:6ec::,2001:67c:6ec:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:6f0::,2001:67c:6f0:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:6f8::,2001:67c:6f8:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:6fc::,2001:67c:6fc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:700::,2001:67c:700:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:704::,2001:67c:704:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:708::,2001:67c:708:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:70c::,2001:67c:70c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:710::,2001:67c:710:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:714::,2001:67c:714:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:718::,2001:67c:718:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:71c::,2001:67c:71c:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:720::,2001:67c:720:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:724::,2001:67c:724:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:728::,2001:67c:728:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:72c::,2001:67c:72c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:730::,2001:67c:730:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:734::,2001:67c:734:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:738::,2001:67c:738:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:73c::,2001:67c:73c:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:740::,2001:67c:740:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:744::,2001:67c:744:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:748::,2001:67c:748:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:74c::,2001:67c:74c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:750::,2001:67c:750:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:754::,2001:67c:754:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:758::,2001:67c:758:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:75c::,2001:67c:75c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:760::,2001:67c:760:ffff:ffff:ffff:ffff:ffff,LV 2001:67c:764::,2001:67c:764:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:768::,2001:67c:768:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:76c::,2001:67c:76c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:778::,2001:67c:778:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:77c::,2001:67c:77c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:780::,2001:67c:780:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:784::,2001:67c:784:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:788::,2001:67c:788:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:78c::,2001:67c:78c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:790::,2001:67c:790:ffff:ffff:ffff:ffff:ffff,IT 2001:67c:794::,2001:67c:794:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:798::,2001:67c:798:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:79c::,2001:67c:79c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:7a0::,2001:67c:7a0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:7a4::,2001:67c:7a4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:7a8::,2001:67c:7a8:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:7ac::,2001:67c:7ac:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:7b0::,2001:67c:7b0:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:7b4::,2001:67c:7b4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:7b8::,2001:67c:7b8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:7bc::,2001:67c:7bc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:7c0::,2001:67c:7c3:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:7d0::,2001:67c:7d0:ffff:ffff:ffff:ffff:ffff,LV 2001:67c:7d4::,2001:67c:7d4:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:7d8::,2001:67c:7d8:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:7dc::,2001:67c:7dc:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:7e0::,2001:67c:7e0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:7e4::,2001:67c:7e4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:7e8::,2001:67c:7e8:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:7ec::,2001:67c:7ec:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:7f0::,2001:67c:7f0:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:7f4::,2001:67c:7f4:ffff:ffff:ffff:ffff:ffff,KW 2001:67c:7f8::,2001:67c:7f8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:7fc::,2001:67c:7fc:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:1000::,2001:67c:1001:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1008::,2001:67c:1009:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1010::,2001:67c:1011:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1018::,2001:67c:1019:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1020::,2001:67c:1021:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:1028::,2001:67c:1029:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:1030::,2001:67c:1030:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:1034::,2001:67c:1034:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1038::,2001:67c:1038:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:103c::,2001:67c:103c:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:1044::,2001:67c:1044:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:1048::,2001:67c:1048:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:104c::,2001:67c:104c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:1054::,2001:67c:1054:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1058::,2001:67c:1058:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:105c::,2001:67c:105c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1060::,2001:67c:1060:ffff:ffff:ffff:ffff:ffff,LU 2001:67c:1064::,2001:67c:1064:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:1068::,2001:67c:1068:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:106c::,2001:67c:106c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1070::,2001:67c:1071:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:1078::,2001:67c:1078:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:107c::,2001:67c:107c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1080::,2001:67c:1080:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:1084::,2001:67c:1084:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1088::,2001:67c:1089:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1090::,2001:67c:1090:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:1094::,2001:67c:1094:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1098::,2001:67c:1098:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:109c::,2001:67c:109c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:10a0::,2001:67c:10a0:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:10a4::,2001:67c:10a4:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:10a8::,2001:67c:10a9:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:10b0::,2001:67c:10b0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:10b4::,2001:67c:10b4:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:10b8::,2001:67c:10b8:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:10bc::,2001:67c:10bc:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:10c0::,2001:67c:10c0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:10c4::,2001:67c:10c4:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:10c8::,2001:67c:10c8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:10cc::,2001:67c:10cc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:10d0::,2001:67c:10d0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:10d4::,2001:67c:10d4:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:10d8::,2001:67c:10d8:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:10dc::,2001:67c:10dc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:10e0::,2001:67c:10e0:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:10e4::,2001:67c:10e4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:10e8::,2001:67c:10e8:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:10ec::,2001:67c:10ec:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:10f0::,2001:67c:10f0:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:10f4::,2001:67c:10f4:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:10f8::,2001:67c:10f8:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:10fc::,2001:67c:10fc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1100::,2001:67c:1100:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1104::,2001:67c:1104:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1108::,2001:67c:1109:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:1110::,2001:67c:1111:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:1118::,2001:67c:1118:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:111c::,2001:67c:111c:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:1120::,2001:67c:1120:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1124::,2001:67c:1124:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:1128::,2001:67c:1128:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:112c::,2001:67c:112c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1130::,2001:67c:1130:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1134::,2001:67c:1134:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:1138::,2001:67c:1138:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:113c::,2001:67c:113c:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:1140::,2001:67c:1140:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1144::,2001:67c:1144:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1148::,2001:67c:1148:ffff:ffff:ffff:ffff:ffff,ES 2001:67c:114c::,2001:67c:114c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1150::,2001:67c:1150:ffff:ffff:ffff:ffff:ffff,IL 2001:67c:1154::,2001:67c:1154:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:1158::,2001:67c:1158:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:115c::,2001:67c:115c:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1160::,2001:67c:1160:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1164::,2001:67c:1164:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:1168::,2001:67c:1168:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:116c::,2001:67c:116c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1170::,2001:67c:1170:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1174::,2001:67c:1174:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1178::,2001:67c:1178:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:117c::,2001:67c:117c:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:1180::,2001:67c:1180:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1184::,2001:67c:1184:ffff:ffff:ffff:ffff:ffff,HR 2001:67c:1188::,2001:67c:1188:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:118c::,2001:67c:118c:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:1190::,2001:67c:1190:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1194::,2001:67c:1194:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1198::,2001:67c:1199:ffff:ffff:ffff:ffff:ffff,SA 2001:67c:11a0::,2001:67c:11a0:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:11a4::,2001:67c:11a4:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:11a8::,2001:67c:11a8:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:11ac::,2001:67c:11ac:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:11b0::,2001:67c:11b0:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:11b4::,2001:67c:11b4:ffff:ffff:ffff:ffff:ffff,ES 2001:67c:11b8::,2001:67c:11b8:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:11bc::,2001:67c:11bc:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:11c0::,2001:67c:11c0:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:11c4::,2001:67c:11c4:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:11c8::,2001:67c:11c8:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:11cc::,2001:67c:11cc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:11d0::,2001:67c:11d0:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:11d4::,2001:67c:11d4:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:11d8::,2001:67c:11d8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:11dc::,2001:67c:11dc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:11e0::,2001:67c:11e0:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:11e4::,2001:67c:11e4:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:11e8::,2001:67c:11e8:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:11ec::,2001:67c:11ec:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:11f0::,2001:67c:11f0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:11f4::,2001:67c:11f4:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:11f8::,2001:67c:11f8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:11fc::,2001:67c:11fc:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1200::,2001:67c:1203:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:1210::,2001:67c:1213:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1220::,2001:67c:1223:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:1230::,2001:67c:1233:ffff:ffff:ffff:ffff:ffff,US 2001:67c:1240::,2001:67c:1240:ffff:ffff:ffff:ffff:ffff,IE 2001:67c:1244::,2001:67c:1244:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1248::,2001:67c:1248:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:124c::,2001:67c:124c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1250::,2001:67c:1250:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:1254::,2001:67c:1254:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:1258::,2001:67c:1258:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:125c::,2001:67c:125c:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:1260::,2001:67c:1260:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:1264::,2001:67c:1264:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1268::,2001:67c:1268:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:126c::,2001:67c:126c:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:1270::,2001:67c:1270:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1274::,2001:67c:1274:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1278::,2001:67c:1278:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:127c::,2001:67c:127c:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:1280::,2001:67c:1280:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:1284::,2001:67c:1284:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:1288::,2001:67c:1288:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:128c::,2001:67c:128c:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:1290::,2001:67c:1290:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1294::,2001:67c:1294:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1298::,2001:67c:1298:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:129c::,2001:67c:129c:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:12a0::,2001:67c:12a0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:12a4::,2001:67c:12a4:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:12a8::,2001:67c:12a8:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:12ac::,2001:67c:12ac:ffff:ffff:ffff:ffff:ffff,LU 2001:67c:12b4::,2001:67c:12b4:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:12b8::,2001:67c:12b8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:12bc::,2001:67c:12bc:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:12c0::,2001:67c:12c1:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:12c8::,2001:67c:12c8:ffff:ffff:ffff:ffff:ffff,LV 2001:67c:12cc::,2001:67c:12cc:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:12d0::,2001:67c:12d0:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:12d4::,2001:67c:12d4:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:12d8::,2001:67c:12d8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:12dc::,2001:67c:12dc:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:12e4::,2001:67c:12e4:ffff:ffff:ffff:ffff:ffff,SA 2001:67c:12e8::,2001:67c:12e9:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:12f0::,2001:67c:12f0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:12f4::,2001:67c:12f4:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:12f8::,2001:67c:12f8:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:12fc::,2001:67c:12fc:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1300::,2001:67c:1300:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:1304::,2001:67c:1304:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1308::,2001:67c:1308:ffff:ffff:ffff:ffff:ffff,MD 2001:67c:130c::,2001:67c:130c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1310::,2001:67c:1310:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1314::,2001:67c:1314:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:1318::,2001:67c:1318:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:131c::,2001:67c:131c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1320::,2001:67c:1320:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1324::,2001:67c:1324:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:1328::,2001:67c:1328:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:132c::,2001:67c:132c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1330::,2001:67c:1330:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1334::,2001:67c:1334:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1338::,2001:67c:1338:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:133c::,2001:67c:133c:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:1340::,2001:67c:1340:ffff:ffff:ffff:ffff:ffff,HR 2001:67c:1344::,2001:67c:1344:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1348::,2001:67c:1348:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:134c::,2001:67c:134c:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:1350::,2001:67c:1350:1fff:ffff:ffff:ffff:ffff,CY 2001:67c:1350:2000::,2001:67c:1350:3fff:ffff:ffff:ffff:ffff,SE 2001:67c:1350:4000::,2001:67c:1350:ffff:ffff:ffff:ffff:ffff,CY 2001:67c:1354::,2001:67c:1354:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1358::,2001:67c:1358:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:135c::,2001:67c:135c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1360::,2001:67c:1360:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1364::,2001:67c:1364:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1368::,2001:67c:1368:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:136c::,2001:67c:136c:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:1370::,2001:67c:1370:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:1374::,2001:67c:1374:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1378::,2001:67c:1378:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:137c::,2001:67c:137c:ffff:ffff:ffff:ffff:ffff,ES 2001:67c:1380::,2001:67c:1380:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1384::,2001:67c:1384:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1388::,2001:67c:1388:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:138c::,2001:67c:138c:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1390::,2001:67c:1390:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1394::,2001:67c:1394:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:1398::,2001:67c:1398:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:139c::,2001:67c:139c:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:13a0::,2001:67c:13a0:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:13a8::,2001:67c:13a8:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:13ac::,2001:67c:13ac:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:13b0::,2001:67c:13b0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:13b4::,2001:67c:13b4:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:13b8::,2001:67c:13b8:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:13bc::,2001:67c:13bc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:13c0::,2001:67c:13c0:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:13c4::,2001:67c:13c4:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:13c8::,2001:67c:13c8:ffff:ffff:ffff:ffff:ffff,LV 2001:67c:13cc::,2001:67c:13cc:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:13d0::,2001:67c:13d0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:13d4::,2001:67c:13d4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:13d8::,2001:67c:13d8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:13dc::,2001:67c:13dc:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:13e0::,2001:67c:13e0:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:13e4::,2001:67c:13e4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:13e8::,2001:67c:13e8:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:13ec::,2001:67c:13ec:ffff:ffff:ffff:ffff:ffff,PT 2001:67c:13f0::,2001:67c:13f0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:13f4::,2001:67c:13f4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:13f8::,2001:67c:13f8:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:13fc::,2001:67c:13fc:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1400::,2001:67c:1407:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1440::,2001:67c:1447:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1460::,2001:67c:1467:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1480::,2001:67c:1480:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:1484::,2001:67c:1484:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1488::,2001:67c:1488:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:148c::,2001:67c:148c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1490::,2001:67c:1490:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1494::,2001:67c:1494:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1498::,2001:67c:1498:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:149c::,2001:67c:149c:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:14a0::,2001:67c:14a0:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:14a4::,2001:67c:14a4:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:14a8::,2001:67c:14a8:ffff:ffff:ffff:ffff:ffff,KZ 2001:67c:14ac::,2001:67c:14ac:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:14b0::,2001:67c:14b0:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:14b4::,2001:67c:14b4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:14b8::,2001:67c:14b8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:14bc::,2001:67c:14bc:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:14c0::,2001:67c:14c0:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:14c4::,2001:67c:14c4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:14c8::,2001:67c:14c9:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:14d0::,2001:67c:14d0:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:14d4::,2001:67c:14d4:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:14d8::,2001:67c:14d8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:14dc::,2001:67c:14dc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:14e0::,2001:67c:14e7:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1500::,2001:67c:1500:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1504::,2001:67c:1504:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1508::,2001:67c:1508:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:150c::,2001:67c:150c:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:1510::,2001:67c:1510:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1514::,2001:67c:1514:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1518::,2001:67c:1518:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:151c::,2001:67c:151c:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:1520::,2001:67c:1520:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1524::,2001:67c:1524:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:1528::,2001:67c:1528:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:152c::,2001:67c:152c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1530::,2001:67c:1530:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1534::,2001:67c:1534:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1538::,2001:67c:1538:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:153c::,2001:67c:153c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1544::,2001:67c:1544:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1548::,2001:67c:1548:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:154c::,2001:67c:154c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1550::,2001:67c:1550:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1554::,2001:67c:1554:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:1558::,2001:67c:1558:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:155c::,2001:67c:155c:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1560::,2001:67c:1563:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1570::,2001:67c:1570:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1574::,2001:67c:1574:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1578::,2001:67c:1578:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:1580::,2001:67c:1580:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:1584::,2001:67c:1584:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:1588::,2001:67c:1588:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:158c::,2001:67c:158c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1590::,2001:67c:1591:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:1598::,2001:67c:1598:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:159c::,2001:67c:159c:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:15a0::,2001:67c:15a3:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:15b0::,2001:67c:15b0:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:15b4::,2001:67c:15b4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:15b8::,2001:67c:15b8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:15bc::,2001:67c:15bc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:15c0::,2001:67c:15c0:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:15c4::,2001:67c:15c4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:15c8::,2001:67c:15c8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:15cc::,2001:67c:15cc:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:15d0::,2001:67c:15d0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:15d4::,2001:67c:15d4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:15d8::,2001:67c:15d8:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:15dc::,2001:67c:15dc:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:15e0::,2001:67c:15e0:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:15e4::,2001:67c:15e4:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:15e8::,2001:67c:15e8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:15ec::,2001:67c:15ec:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:15f0::,2001:67c:15f0:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:15f4::,2001:67c:15f4:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:15f8::,2001:67c:15f8:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:15fc::,2001:67c:15fc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1600::,2001:67c:160f:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1640::,2001:67c:164f:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:1680::,2001:67c:1680:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1684::,2001:67c:1684:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:168c::,2001:67c:168c:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:1690::,2001:67c:1690:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:1694::,2001:67c:1694:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1698::,2001:67c:1698:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:169c::,2001:67c:169c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:16a0::,2001:67c:16a0:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:16a4::,2001:67c:16a4:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:16a8::,2001:67c:16a8:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:16ac::,2001:67c:16ac:ffff:ffff:ffff:ffff:ffff,ES 2001:67c:16b0::,2001:67c:16b0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:16b4::,2001:67c:16b4:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:16b8::,2001:67c:16b8:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:16bc::,2001:67c:16bc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:16c0::,2001:67c:16c0:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:16c4::,2001:67c:16c4:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:16c8::,2001:67c:16c8:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:16cc::,2001:67c:16cc:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:16d0::,2001:67c:16d1:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:16d8::,2001:67c:16d8:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:16dc::,2001:67c:16dc:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:16e4::,2001:67c:16e4:ffff:ffff:ffff:ffff:ffff,HR 2001:67c:16e8::,2001:67c:16e8:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:16ec::,2001:67c:16ec:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:16f0::,2001:67c:16f0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:16f4::,2001:67c:16f4:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:16f8::,2001:67c:16f8:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:16fc::,2001:67c:16fc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1700::,2001:67c:1700:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1704::,2001:67c:1704:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1708::,2001:67c:1708:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:170c::,2001:67c:170c:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:1710::,2001:67c:1710:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1714::,2001:67c:1714:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1718::,2001:67c:1719:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:1720::,2001:67c:1720:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:1724::,2001:67c:1724:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:1728::,2001:67c:1728:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:172c::,2001:67c:172c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1730::,2001:67c:1730:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1734::,2001:67c:1734:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:1738::,2001:67c:1738:7fff:ffff:ffff:ffff:ffff,UA 2001:67c:1738:8000::,2001:67c:1738:ffff:ffff:ffff:ffff:ffff,IL 2001:67c:173c::,2001:67c:173c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1740::,2001:67c:1740:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:1744::,2001:67c:1744:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:1748::,2001:67c:1748:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:174c::,2001:67c:174c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1750::,2001:67c:1750:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:1754::,2001:67c:1754:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1758::,2001:67c:1758:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:175c::,2001:67c:175c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1760::,2001:67c:1760:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:1764::,2001:67c:1764:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1768::,2001:67c:1768:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:176c::,2001:67c:176c:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:1770::,2001:67c:1770:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1774::,2001:67c:1774:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1778::,2001:67c:1778:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:177c::,2001:67c:177c:ffff:ffff:ffff:ffff:ffff,LT 2001:67c:1780::,2001:67c:1780:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:1784::,2001:67c:1784:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:178c::,2001:67c:178c:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1790::,2001:67c:1790:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1794::,2001:67c:1794:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1798::,2001:67c:1798:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:17a0::,2001:67c:17a0:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:17a4::,2001:67c:17a4:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:17a8::,2001:67c:17a8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:17ac::,2001:67c:17ac:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:17b4::,2001:67c:17b4:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:17b8::,2001:67c:17b8:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:17bc::,2001:67c:17bc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:17c0::,2001:67c:17c0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:17c4::,2001:67c:17c4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:17c8::,2001:67c:17c8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:17cc::,2001:67c:17cc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:17d0::,2001:67c:17d0:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:17d4::,2001:67c:17d4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:17d8::,2001:67c:17d8:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:17dc::,2001:67c:17dc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:17e0::,2001:67c:17e0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:17e4::,2001:67c:17e4:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:17e8::,2001:67c:17e8:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:17ec::,2001:67c:17ec:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:17f0::,2001:67c:17f0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:17f4::,2001:67c:17f4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:17f8::,2001:67c:17f8:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:17fc::,2001:67c:17fc:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1800::,2001:67c:1800:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1804::,2001:67c:1804:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1808::,2001:67c:1809:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:1810::,2001:67c:1810:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:1814::,2001:67c:1814:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:181c::,2001:67c:181c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1820::,2001:67c:1820:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1824::,2001:67c:1824:ffff:ffff:ffff:ffff:ffff,IS 2001:67c:1828::,2001:67c:1828:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:182c::,2001:67c:182c:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1830::,2001:67c:1830:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1834::,2001:67c:1834:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:1838::,2001:67c:1838:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:183c::,2001:67c:183c:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:1840::,2001:67c:1840:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1844::,2001:67c:1844:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1848::,2001:67c:1848:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:184c::,2001:67c:184c:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:1850::,2001:67c:1850:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:1854::,2001:67c:1854:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1858::,2001:67c:1858:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:185c::,2001:67c:185c:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:1860::,2001:67c:1860:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1864::,2001:67c:1864:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:1868::,2001:67c:1868:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:186c::,2001:67c:186c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1870::,2001:67c:1870:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:1874::,2001:67c:1874:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:1878::,2001:67c:1878:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:187c::,2001:67c:187c:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1880::,2001:67c:1880:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1884::,2001:67c:1884:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1888::,2001:67c:1888:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:188c::,2001:67c:188c:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1890::,2001:67c:1890:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1894::,2001:67c:1894:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1898::,2001:67c:1898:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:189c::,2001:67c:189c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:18a0::,2001:67c:18a0:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:18a4::,2001:67c:18a4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:18a8::,2001:67c:18a8:ffff:ffff:ffff:ffff:ffff,BY 2001:67c:18ac::,2001:67c:18ac:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:18b0::,2001:67c:18b0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:18b4::,2001:67c:18b4:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:18b8::,2001:67c:18b8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:18bc::,2001:67c:18bc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:18c0::,2001:67c:18c0:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:18c8::,2001:67c:18c9:ffff:ffff:ffff:ffff:ffff,SA 2001:67c:18d0::,2001:67c:18d0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:18d4::,2001:67c:18d4:ffff:ffff:ffff:ffff:ffff,NZ 2001:67c:18d8::,2001:67c:18d8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:18dc::,2001:67c:18dc:ffff:ffff:ffff:ffff:ffff,LI 2001:67c:18e0::,2001:67c:18e0:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:18e4::,2001:67c:18e4:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:18e8::,2001:67c:18e8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:18ec::,2001:67c:18ec:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:18f0::,2001:67c:18f0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:18f4::,2001:67c:18f4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:18f8::,2001:67c:18f8:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:18fc::,2001:67c:18fc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1900::,2001:67c:1903:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:1910::,2001:67c:1910:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1914::,2001:67c:1914:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1918::,2001:67c:1918:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:191c::,2001:67c:191c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1920::,2001:67c:1920:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1924::,2001:67c:1924:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1928::,2001:67c:1928:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:192c::,2001:67c:192c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1930::,2001:67c:1933:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:1940::,2001:67c:1940:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1944::,2001:67c:1944:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1948::,2001:67c:1948:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:194c::,2001:67c:194c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1950::,2001:67c:1950:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1954::,2001:67c:1954:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1958::,2001:67c:1958:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:195c::,2001:67c:195c:ffff:ffff:ffff:ffff:ffff,ES 2001:67c:1960::,2001:67c:1960:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1964::,2001:67c:1964:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:1968::,2001:67c:1968:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:196c::,2001:67c:196c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1970::,2001:67c:1970:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1974::,2001:67c:1974:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:1978::,2001:67c:1978:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:197c::,2001:67c:197c:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:1980::,2001:67c:1980:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:1984::,2001:67c:1984:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:1988::,2001:67c:1988:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:198c::,2001:67c:198c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1990::,2001:67c:1990:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1994::,2001:67c:1994:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1998::,2001:67c:1998:ffff:ffff:ffff:ffff:ffff,LU 2001:67c:199c::,2001:67c:199c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:19a0::,2001:67c:19a0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:19a4::,2001:67c:19a4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:19a8::,2001:67c:19a8:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:19ac::,2001:67c:19ac:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:19b0::,2001:67c:19b3:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:19c0::,2001:67c:19c0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:19c4::,2001:67c:19c4:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:19c8::,2001:67c:19c8:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:19cc::,2001:67c:19cc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:19d0::,2001:67c:19d0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:19d4::,2001:67c:19d4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:19d8::,2001:67c:19d8:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:19dc::,2001:67c:19dc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:19e4::,2001:67c:19e4:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:19e8::,2001:67c:19e8:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:19ec::,2001:67c:19ec:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:19f0::,2001:67c:19f0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:19f4::,2001:67c:19f4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:19f8::,2001:67c:19f8:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:19fc::,2001:67c:19fc:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:1a00::,2001:67c:1a3f:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:1b00::,2001:67c:1b00:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1b04::,2001:67c:1b04:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1b08::,2001:67c:1b08:ffff:ffff:ffff:ffff:ffff,IT 2001:67c:1b0c::,2001:67c:1b0c:ffff:ffff:ffff:ffff:ffff,SA 2001:67c:1b10::,2001:67c:1b10:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1b14::,2001:67c:1b14:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1b18::,2001:67c:1b18:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1b1c::,2001:67c:1b1c:ffff:ffff:ffff:ffff:ffff,LU 2001:67c:1b20::,2001:67c:1b20:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1b24::,2001:67c:1b24:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1b28::,2001:67c:1b28:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1b2c::,2001:67c:1b2c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1b30::,2001:67c:1b30:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1b34::,2001:67c:1b34:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1b38::,2001:67c:1b38:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1b3c::,2001:67c:1b3c:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:1b40::,2001:67c:1b43:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1b50::,2001:67c:1b50:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:1b54::,2001:67c:1b54:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1b58::,2001:67c:1b59:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1b60::,2001:67c:1b60:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1b64::,2001:67c:1b64:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:1b68::,2001:67c:1b68:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1b6c::,2001:67c:1b6c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1b70::,2001:67c:1b70:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:1b74::,2001:67c:1b74:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1b78::,2001:67c:1b78:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1b7c::,2001:67c:1b7c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1b80::,2001:67c:1b80:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1b84::,2001:67c:1b84:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1b88::,2001:67c:1b88:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:1b8c::,2001:67c:1b8c:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1b90::,2001:67c:1b90:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:1b94::,2001:67c:1b94:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1b98::,2001:67c:1b98:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1b9c::,2001:67c:1b9c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:1ba0::,2001:67c:1ba0:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:1ba4::,2001:67c:1ba4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1ba8::,2001:67c:1ba8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1bac::,2001:67c:1bac:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:1bb4::,2001:67c:1bb4:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1bb8::,2001:67c:1bb8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1bbc::,2001:67c:1bbc:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:1bc0::,2001:67c:1bc0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1bc4::,2001:67c:1bc4:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:1bc8::,2001:67c:1bc8:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1bcc::,2001:67c:1bcc:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:1bd0::,2001:67c:1bd0:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:1bd4::,2001:67c:1bd4:ffff:ffff:ffff:ffff:ffff,SK 2001:67c:1bd8::,2001:67c:1bd8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1bdc::,2001:67c:1bdc:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:1be0::,2001:67c:1be0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1be4::,2001:67c:1be4:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:1be8::,2001:67c:1be8:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:1bec::,2001:67c:1bec:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:1bf0::,2001:67c:1bf0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:1bf4::,2001:67c:1bf4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:1bf8::,2001:67c:1bf8:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:1bfc::,2001:67c:1bfc:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:1c00::,2001:67c:1cff:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:2000::,2001:67c:2000:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2004::,2001:67c:2004:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2008::,2001:67c:2008:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:200c::,2001:67c:200c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2010::,2001:67c:2010:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2014::,2001:67c:2014:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2018::,2001:67c:2018:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:201c::,2001:67c:201c:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2020::,2001:67c:2020:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:2024::,2001:67c:2024:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2028::,2001:67c:2028:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:202c::,2001:67c:202c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2030::,2001:67c:2030:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2034::,2001:67c:2034:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2038::,2001:67c:2038:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:203c::,2001:67c:203c:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2040::,2001:67c:2040:ffff:ffff:ffff:ffff:ffff,AE 2001:67c:2044::,2001:67c:2044:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2048::,2001:67c:2048:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:204c::,2001:67c:204c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2050::,2001:67c:2050:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2054::,2001:67c:2054:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2058::,2001:67c:2058:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:205c::,2001:67c:205c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2060::,2001:67c:2060:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2064::,2001:67c:2064:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:2068::,2001:67c:2068:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:206c::,2001:67c:206c:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:2070::,2001:67c:2070:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2074::,2001:67c:2074:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2078::,2001:67c:2078:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:207c::,2001:67c:207c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2080::,2001:67c:2080:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:2084::,2001:67c:2084:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2088::,2001:67c:2088:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:208c::,2001:67c:208c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2090::,2001:67c:2090:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2094::,2001:67c:2094:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2098::,2001:67c:2098:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:209c::,2001:67c:209c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:20a0::,2001:67c:20a1:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:20a8::,2001:67c:20a8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:20ac::,2001:67c:20ac:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:20b0::,2001:67c:20b0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:20b4::,2001:67c:20b4:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:20b8::,2001:67c:20b9:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:20c0::,2001:67c:20c0:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:20c4::,2001:67c:20c4:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:20c8::,2001:67c:20c8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:20cc::,2001:67c:20cc:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:20d0::,2001:67c:20d1:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:20d8::,2001:67c:20d8:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:20dc::,2001:67c:20dc:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:20e0::,2001:67c:20e0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:20e4::,2001:67c:20e4:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:20e8::,2001:67c:20e8:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:20ec::,2001:67c:20ec:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:20f0::,2001:67c:20f0:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:20f4::,2001:67c:20f4:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:20f8::,2001:67c:20f8:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:20fc::,2001:67c:20fc:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2100::,2001:67c:2100:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:2104::,2001:67c:2104:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2108::,2001:67c:2108:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:210c::,2001:67c:210c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2110::,2001:67c:2110:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:2114::,2001:67c:2114:ffff:ffff:ffff:ffff:ffff,IS 2001:67c:2118::,2001:67c:2118:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:211c::,2001:67c:211c:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2120::,2001:67c:2120:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:2124::,2001:67c:2124:ffff:ffff:ffff:ffff:ffff,HU 2001:67c:2128::,2001:67c:2128:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:212c::,2001:67c:212c:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2130::,2001:67c:2130:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2134::,2001:67c:2134:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2138::,2001:67c:2138:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:213c::,2001:67c:213c:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2140::,2001:67c:2140:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2144::,2001:67c:2144:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:2148::,2001:67c:2148:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:214c::,2001:67c:214c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2150::,2001:67c:2150:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2154::,2001:67c:2154:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:2158:8000::,2001:67c:2158:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:215c::,2001:67c:215c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2160::,2001:67c:2160:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:2164::,2001:67c:2164:ffff:ffff:ffff:ffff:ffff,SA 2001:67c:2168::,2001:67c:2168:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:216c::,2001:67c:216c:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:2170::,2001:67c:2170:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:2174::,2001:67c:2174:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2178::,2001:67c:2178:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:217c::,2001:67c:217c:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:2180::,2001:67c:2180:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2184::,2001:67c:2184:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2188::,2001:67c:2188:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:218c::,2001:67c:218c:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2190::,2001:67c:2190:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:2194::,2001:67c:2194:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:2198::,2001:67c:2198:ffff:ffff:ffff:ffff:ffff,LV 2001:67c:219c::,2001:67c:219c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:21a0::,2001:67c:21a0:ffff:ffff:ffff:ffff:ffff,IT 2001:67c:21a4::,2001:67c:21a4:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:21a8::,2001:67c:21a8:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:21ac::,2001:67c:21ac:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:21b0::,2001:67c:21b0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:21b4::,2001:67c:21b4:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:21b8::,2001:67c:21b8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:21bc::,2001:67c:21bc:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:21c0::,2001:67c:21c0:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:21c4::,2001:67c:21c4:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:21c8::,2001:67c:21c8:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:21cc::,2001:67c:21cc:ffff:ffff:ffff:ffff:ffff,ES 2001:67c:21d0::,2001:67c:21d0:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:21d4::,2001:67c:21d4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:21d8::,2001:67c:21d8:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:21dc::,2001:67c:21dc:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:21e0::,2001:67c:21e0:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:21e4::,2001:67c:21e4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:21e8::,2001:67c:21e8:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:21ec::,2001:67c:21ec:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:21f0::,2001:67c:21f0:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:21f4::,2001:67c:21f4:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:21f8::,2001:67c:21f8:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:21fc::,2001:67c:21fc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2200::,2001:67c:2200:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:2204::,2001:67c:2204:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2208::,2001:67c:2208:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:220c::,2001:67c:220c:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:2210::,2001:67c:2210:ffff:ffff:ffff:ffff:ffff,RS 2001:67c:2214::,2001:67c:2214:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2218::,2001:67c:2219:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:2220::,2001:67c:2220:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2224::,2001:67c:2224:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2228::,2001:67c:2228:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:222c::,2001:67c:222c:ffff:ffff:ffff:ffff:ffff,SK 2001:67c:2230::,2001:67c:2230:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:2234::,2001:67c:2234:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2238::,2001:67c:2238:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:223c::,2001:67c:223c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2240::,2001:67c:2240:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2244::,2001:67c:2244:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2248::,2001:67c:2248:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:224c::,2001:67c:224c:ffff:ffff:ffff:ffff:ffff,SK 2001:67c:2250::,2001:67c:2250:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2254::,2001:67c:2254:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2258::,2001:67c:2258:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:225c::,2001:67c:225c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2260::,2001:67c:2260:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2264::,2001:67c:2264:ffff:ffff:ffff:ffff:ffff,KG 2001:67c:2268::,2001:67c:2268:ffff:ffff:ffff:ffff:ffff,BY 2001:67c:226c::,2001:67c:226c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2270::,2001:67c:2270:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2274::,2001:67c:2274:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2278::,2001:67c:2278:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:227c::,2001:67c:227c:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2280::,2001:67c:2280:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2284::,2001:67c:2284:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2288::,2001:67c:2288:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:228c::,2001:67c:228c:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:2290::,2001:67c:2290:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2294::,2001:67c:2294:ffff:ffff:ffff:ffff:ffff,ES 2001:67c:2298::,2001:67c:2298:ffff:ffff:ffff:ffff:ffff,US 2001:67c:229c::,2001:67c:229c:ffff:ffff:ffff:ffff:ffff,GR 2001:67c:22a0::,2001:67c:22a0:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:22a4::,2001:67c:22a4:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:22a8::,2001:67c:22a8:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:22b0::,2001:67c:22b0:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:22b4::,2001:67c:22b4:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:22b8::,2001:67c:22b8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:22bc::,2001:67c:22bc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:22c0::,2001:67c:22c0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:22c4::,2001:67c:22c4:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:22c8::,2001:67c:22c8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:22cc::,2001:67c:22cc:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:22d0::,2001:67c:22d0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:22d8::,2001:67c:22d8:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:22dc::,2001:67c:22dc:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:22e0::,2001:67c:22e0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:22e4::,2001:67c:22e4:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:22e8::,2001:67c:22e8:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:22ec::,2001:67c:22ec:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:22f0::,2001:67c:22f0:ffff:ffff:ffff:ffff:ffff,RS 2001:67c:22f4::,2001:67c:22f4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:22f8::,2001:67c:22f8:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:22fc::,2001:67c:22fc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2300::,2001:67c:2300:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2304::,2001:67c:2304:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2308::,2001:67c:2308:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:230c::,2001:67c:230c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2310::,2001:67c:2310:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2314::,2001:67c:2314:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2318::,2001:67c:2318:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:231c::,2001:67c:231c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2320::,2001:67c:2320:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:2324::,2001:67c:2324:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2328::,2001:67c:2328:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:232c::,2001:67c:232c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2330::,2001:67c:2330:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2334::,2001:67c:2334:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2338::,2001:67c:2338:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:233c::,2001:67c:233c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2340::,2001:67c:2340:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2344::,2001:67c:2344:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2348::,2001:67c:2348:ffff:ffff:ffff:ffff:ffff,AE 2001:67c:234c::,2001:67c:234c:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2350::,2001:67c:2350:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2354::,2001:67c:2354:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2358::,2001:67c:2358:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:235c::,2001:67c:235c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2360::,2001:67c:2360:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2364::,2001:67c:2364:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2368::,2001:67c:2368:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:236c::,2001:67c:236c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2370::,2001:67c:2370:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2374::,2001:67c:2374:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2378::,2001:67c:2378:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:237c::,2001:67c:237c:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2380::,2001:67c:2380:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2384::,2001:67c:2384:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2388::,2001:67c:2388:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:238c::,2001:67c:238c:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2390::,2001:67c:2390:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2394::,2001:67c:2394:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2398::,2001:67c:2398:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:239c::,2001:67c:239c:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:23a0::,2001:67c:23a0:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:23a4::,2001:67c:23a4:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:23a8::,2001:67c:23a8:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:23ac::,2001:67c:23ac:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:23b0::,2001:67c:23b0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:23b4::,2001:67c:23b4:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:23b8::,2001:67c:23b8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:23bc::,2001:67c:23bc:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:23c0::,2001:67c:23c0:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:23c4::,2001:67c:23c4:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:23c8::,2001:67c:23c8:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:23cc::,2001:67c:23cc:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:23d0::,2001:67c:23d0:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:23d4::,2001:67c:23d4:ffff:ffff:ffff:ffff:ffff,EE 2001:67c:23d8::,2001:67c:23d9:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:23e0::,2001:67c:23e0:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:23e4::,2001:67c:23e4:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:23e8::,2001:67c:23e8:ffff:ffff:ffff:ffff:ffff,AE 2001:67c:23ec::,2001:67c:23ec:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:23f0::,2001:67c:23f0:ffff:ffff:ffff:ffff:ffff,AE 2001:67c:23f4::,2001:67c:23f4:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:23f8::,2001:67c:23f8:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:23fc::,2001:67c:23fc:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:2400::,2001:67c:2400:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2404::,2001:67c:2404:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2408::,2001:67c:2408:ffff:ffff:ffff:ffff:ffff,AE 2001:67c:240c::,2001:67c:240c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2410::,2001:67c:2410:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:2414::,2001:67c:2414:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2418::,2001:67c:2418:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:241c::,2001:67c:241c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2420::,2001:67c:2420:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2424::,2001:67c:2424:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2428::,2001:67c:2428:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:242c::,2001:67c:242c:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:2430::,2001:67c:2433:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2440::,2001:67c:2440:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2444::,2001:67c:2444:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2448::,2001:67c:2448:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:244c::,2001:67c:244c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2450::,2001:67c:2450:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2454::,2001:67c:2454:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2458::,2001:67c:2458:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:245c::,2001:67c:245c:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:2460::,2001:67c:2460:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2464::,2001:67c:2464:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2468::,2001:67c:2468:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:246c::,2001:67c:246c:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2470::,2001:67c:2470:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2474::,2001:67c:2474:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2478::,2001:67c:2478:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:247c::,2001:67c:247c:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2480::,2001:67c:2480:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2484::,2001:67c:2484:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2488::,2001:67c:2488:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:248c::,2001:67c:248c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2490::,2001:67c:2490:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2494::,2001:67c:2494:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:2498::,2001:67c:2498:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:249c::,2001:67c:249c:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:24a0::,2001:67c:24a0:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:24a4::,2001:67c:24a4:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:24a8::,2001:67c:24a8:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:24ac::,2001:67c:24ac:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:24b0::,2001:67c:24b0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:24b4::,2001:67c:24b4:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:24b8::,2001:67c:24b8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:24bc::,2001:67c:24bc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:24c0::,2001:67c:24c0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:24c4::,2001:67c:24c4:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:24c8::,2001:67c:24c8:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:24cc::,2001:67c:24cc:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:24d0::,2001:67c:24d0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:24d4::,2001:67c:24d4:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:24d8::,2001:67c:24d8:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:24dc::,2001:67c:24dc:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:24e0::,2001:67c:24e0:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:24e4::,2001:67c:24e4:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:24e8::,2001:67c:24e9:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:24f0::,2001:67c:24f0:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:24f4::,2001:67c:24f4:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:24f8::,2001:67c:24f8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:24fc::,2001:67c:24fc:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:2500::,2001:67c:2507:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2520::,2001:67c:2520:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2524::,2001:67c:2524:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2528::,2001:67c:2528:ffff:ffff:ffff:ffff:ffff,LV 2001:67c:252c::,2001:67c:252c:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2530::,2001:67c:2530:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2534::,2001:67c:2534:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2538::,2001:67c:2538:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:253c::,2001:67c:253c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2540::,2001:67c:2540:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2544::,2001:67c:2544:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2548::,2001:67c:2548:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:254c::,2001:67c:254c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2550::,2001:67c:2550:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2554::,2001:67c:2554:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2558::,2001:67c:2558:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:255c::,2001:67c:255c:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2560::,2001:67c:2560:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2564::,2001:67c:2564:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2568::,2001:67c:2568:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:256c::,2001:67c:256c:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:2570::,2001:67c:2570:ffff:ffff:ffff:ffff:ffff,LI 2001:67c:2574::,2001:67c:2574:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:2578::,2001:67c:2578:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:257c::,2001:67c:257c:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2580::,2001:67c:2580:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:2584::,2001:67c:2584:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:2588::,2001:67c:2588:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:258c::,2001:67c:258c:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2590::,2001:67c:2590:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2594::,2001:67c:2594:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:2598::,2001:67c:2598:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:259c::,2001:67c:259c:ffff:ffff:ffff:ffff:ffff,AE 2001:67c:25a0::,2001:67c:25a0:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:25a4::,2001:67c:25a4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:25a8::,2001:67c:25a8:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:25ac::,2001:67c:25ac:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:25b0::,2001:67c:25b0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:25b4::,2001:67c:25b4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:25b8::,2001:67c:25b8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:25bc::,2001:67c:25bc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:25c0::,2001:67c:25c0:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:25c4::,2001:67c:25c4:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:25c8::,2001:67c:25c8:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:25cc::,2001:67c:25cc:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:25d0::,2001:67c:25d0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:25d4::,2001:67c:25d4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:25d8::,2001:67c:25d8:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:25dc::,2001:67c:25dc:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:25e0::,2001:67c:25e0:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:25e4::,2001:67c:25e4:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:25e8::,2001:67c:25e8:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:25ec::,2001:67c:25ec:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:25f0::,2001:67c:25f0:ffff:ffff:ffff:ffff:ffff,IL 2001:67c:25f4::,2001:67c:25f4:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:25fc::,2001:67c:25fc:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2600::,2001:67c:2600:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2604::,2001:67c:2604:ffff:ffff:ffff:ffff:ffff,SK 2001:67c:260c::,2001:67c:260c:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2610::,2001:67c:2610:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2614::,2001:67c:2614:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2618::,2001:67c:2618:ffff:ffff:ffff:ffff:ffff,EE 2001:67c:261c::,2001:67c:261c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2620::,2001:67c:2620:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:2624::,2001:67c:2624:ffff:ffff:ffff:ffff:ffff,SA 2001:67c:2628::,2001:67c:2628:ffff:ffff:ffff:ffff:ffff,LV 2001:67c:262c::,2001:67c:262c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2630::,2001:67c:2630:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2634::,2001:67c:2634:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2638::,2001:67c:2638:ffff:ffff:ffff:ffff:ffff,SK 2001:67c:263c::,2001:67c:263c:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2640::,2001:67c:2640:ffff:ffff:ffff:ffff:ffff,AE 2001:67c:2644::,2001:67c:2644:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2648::,2001:67c:2648:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:264c::,2001:67c:264c:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2650::,2001:67c:2650:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2654::,2001:67c:2654:ffff:ffff:ffff:ffff:ffff,AE 2001:67c:2658::,2001:67c:2658:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:265c::,2001:67c:265c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2660::,2001:67c:2660:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2664::,2001:67c:2664:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:266c::,2001:67c:266c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2670::,2001:67c:2670:ffff:ffff:ffff:ffff:ffff,SK 2001:67c:2674::,2001:67c:2674:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2678::,2001:67c:2678:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:267c::,2001:67c:267c:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2680::,2001:67c:2680:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2684::,2001:67c:2684:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2688::,2001:67c:2688:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:268c::,2001:67c:268c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2690::,2001:67c:2690:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:2694::,2001:67c:2694:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2698::,2001:67c:2698:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:269c::,2001:67c:269c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:26a0::,2001:67c:26a0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:26a4::,2001:67c:26a4:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:26a8::,2001:67c:26a8:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:26ac::,2001:67c:26ac:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:26b0::,2001:67c:26b0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:26b4::,2001:67c:26b4:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:26b8::,2001:67c:26b8:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:26bc::,2001:67c:26bc:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:26c0::,2001:67c:26c3:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:26d0::,2001:67c:26d0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:26d4::,2001:67c:26d4:ffff:ffff:ffff:ffff:ffff,SK 2001:67c:26d8::,2001:67c:26d8:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:26dc::,2001:67c:26dc:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:26e0::,2001:67c:26e0:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:26e4::,2001:67c:26e4:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:26e8::,2001:67c:26e8:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:26ec::,2001:67c:26ec:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:26f0::,2001:67c:26f0:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:26f4::,2001:67c:26f4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:26f8::,2001:67c:26f8:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:26fc::,2001:67c:26fc:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2700::,2001:67c:2700:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:2704::,2001:67c:2704:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2708::,2001:67c:2708:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:270c::,2001:67c:270c:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2710::,2001:67c:2710:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:2714::,2001:67c:2714:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2718::,2001:67c:2718:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:271c::,2001:67c:271c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2720::,2001:67c:2720:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2724::,2001:67c:2724:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2728::,2001:67c:2728:ffff:ffff:ffff:ffff:ffff,IR 2001:67c:272c::,2001:67c:272c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2730::,2001:67c:2730:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2734::,2001:67c:2734:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2738::,2001:67c:2738:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:273c::,2001:67c:273c:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2740::,2001:67c:2740:ffff:ffff:ffff:ffff:ffff,SK 2001:67c:2744::,2001:67c:2744:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2748::,2001:67c:2748:ffff:ffff:ffff:ffff:ffff,GR 2001:67c:274c::,2001:67c:274c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2750::,2001:67c:2750:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2754::,2001:67c:2754:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2758::,2001:67c:2758:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:275c::,2001:67c:275c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2760::,2001:67c:2760:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2764::,2001:67c:2764:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:2768::,2001:67c:2768:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:276c::,2001:67c:276c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2770::,2001:67c:2770:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2774::,2001:67c:2774:ffff:ffff:ffff:ffff:ffff,AE 2001:67c:2778::,2001:67c:2778:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:277c::,2001:67c:277c:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2780::,2001:67c:2780:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2784::,2001:67c:2784:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:2788::,2001:67c:2788:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:278c::,2001:67c:278c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2790::,2001:67c:2790:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2794::,2001:67c:2794:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2798::,2001:67c:2798:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:279c::,2001:67c:279c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:27a0::,2001:67c:27a0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:27a4::,2001:67c:27a4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:27a8::,2001:67c:27a8:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:27ac::,2001:67c:27ac:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:27b0::,2001:67c:27b0:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:27b4::,2001:67c:27b4:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:27b8::,2001:67c:27b8:ffff:ffff:ffff:ffff:ffff,SA 2001:67c:27bc::,2001:67c:27bc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:27c0::,2001:67c:27c0:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:27c4::,2001:67c:27c4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:27c8::,2001:67c:27c8:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:27cc::,2001:67c:27cc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:27d0::,2001:67c:27d0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:27d4::,2001:67c:27d4:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:27d8::,2001:67c:27d8:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:27dc::,2001:67c:27dc:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:27e0::,2001:67c:27e0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:27e4::,2001:67c:27e4:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:27e8::,2001:67c:27e8:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:27ec::,2001:67c:27ec:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:27f0::,2001:67c:27f0:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:27f4::,2001:67c:27f4:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:27f8::,2001:67c:27f8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:27fc::,2001:67c:27fc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2800::,2001:67c:2800:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2808::,2001:67c:2808:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:280c::,2001:67c:280c:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:2810::,2001:67c:2810:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2818::,2001:67c:2818:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:281c::,2001:67c:281c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2820::,2001:67c:2820:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2824::,2001:67c:2824:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2828::,2001:67c:2828:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:282c::,2001:67c:282c:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:2830::,2001:67c:2830:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2834::,2001:67c:2834:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2838::,2001:67c:2838:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:283c::,2001:67c:283c:ffff:ffff:ffff:ffff:ffff,ES 2001:67c:2840::,2001:67c:2840:ffff:ffff:ffff:ffff:ffff,IL 2001:67c:2844::,2001:67c:2844:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:2848::,2001:67c:2848:ffff:ffff:ffff:ffff:ffff,ES 2001:67c:284c::,2001:67c:284c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2850::,2001:67c:2850:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2854::,2001:67c:2854:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2858::,2001:67c:2858:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:285c::,2001:67c:285c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2860::,2001:67c:2860:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2864::,2001:67c:2864:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2868::,2001:67c:2868:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:286c::,2001:67c:286c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2870::,2001:67c:2870:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2874::,2001:67c:2874:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2878::,2001:67c:2878:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:287c::,2001:67c:287c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2880::,2001:67c:2880:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2884::,2001:67c:2884:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2888::,2001:67c:2889:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2890::,2001:67c:2890:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2894::,2001:67c:2894:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2898::,2001:67c:2898:ffff:ffff:ffff:ffff:ffff,ES 2001:67c:289c::,2001:67c:289c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:28a0::,2001:67c:28a0:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:28a4::,2001:67c:28a4:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:28a8::,2001:67c:28a8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:28ac::,2001:67c:28ac:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:28b0::,2001:67c:28b0:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:28b4::,2001:67c:28b4:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:28b8::,2001:67c:28b8:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:28bc::,2001:67c:28bc:ffff:ffff:ffff:ffff:ffff,HU 2001:67c:28c0::,2001:67c:28c0:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:28c4::,2001:67c:28c4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:28c8::,2001:67c:28c8:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:28cc::,2001:67c:28cc:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:28d0::,2001:67c:28d0:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:28d4::,2001:67c:28d4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:28d8::,2001:67c:28d8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:28dc::,2001:67c:28dc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:28e0::,2001:67c:28e0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:28e4::,2001:67c:28e4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:28e8::,2001:67c:28e8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:28ec::,2001:67c:28ec:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:28f0::,2001:67c:28f0:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:28f4::,2001:67c:28f4:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:28f8::,2001:67c:28f8:ffff:ffff:ffff:ffff:ffff,LT 2001:67c:28fc::,2001:67c:28fc:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2900::,2001:67c:291f:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2980::,2001:67c:2980:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2984::,2001:67c:2984:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2988::,2001:67c:2989:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:2990::,2001:67c:2990:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2994::,2001:67c:2994:ffff:ffff:ffff:ffff:ffff,SA 2001:67c:2998::,2001:67c:2998:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:299c::,2001:67c:299c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:29a0::,2001:67c:29a0:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:29a4::,2001:67c:29a4:ffff:ffff:ffff:ffff:ffff,LT 2001:67c:29a8::,2001:67c:29a8:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:29ac::,2001:67c:29ac:ffff:ffff:ffff:ffff:ffff,CY 2001:67c:29b0::,2001:67c:29b1:ffff:ffff:ffff:ffff:ffff,CY 2001:67c:29b8::,2001:67c:29b8:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:29bc::,2001:67c:29bc:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:29c0::,2001:67c:29c1:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:29c8::,2001:67c:29c8:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:29cc::,2001:67c:29cc:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:29d0::,2001:67c:29d0:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:29d4::,2001:67c:29d4:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:29d8::,2001:67c:29d8:ffff:ffff:ffff:ffff:ffff,AE 2001:67c:29dc::,2001:67c:29dc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:29e0::,2001:67c:29e0:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:29e4::,2001:67c:29e4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:29e8::,2001:67c:29e8:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:29ec::,2001:67c:29ec:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:29f0::,2001:67c:29f0:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:29f4::,2001:67c:29f4:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:29f8::,2001:67c:29f8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:29fc::,2001:67c:29fc:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2a00::,2001:67c:2a00:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:2a04::,2001:67c:2a04:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2a08::,2001:67c:2a08:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:2a0c::,2001:67c:2a0c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2a10::,2001:67c:2a10:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2a14::,2001:67c:2a14:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2a18::,2001:67c:2a18:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2a1c::,2001:67c:2a1c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2a20::,2001:67c:2a20:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:2a24::,2001:67c:2a24:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:2a28::,2001:67c:2a28:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2a2c::,2001:67c:2a2c:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:2a30::,2001:67c:2a30:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2a34::,2001:67c:2a34:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2a38::,2001:67c:2a38:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2a3c::,2001:67c:2a3c:ffff:ffff:ffff:ffff:ffff,ES 2001:67c:2a40::,2001:67c:2a40:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2a44::,2001:67c:2a44:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:2a48::,2001:67c:2a48:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2a4c::,2001:67c:2a4c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2a50::,2001:67c:2a50:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:2a54::,2001:67c:2a54:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2a58::,2001:67c:2a58:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:2a5c::,2001:67c:2a5c:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2a60::,2001:67c:2a60:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2a64::,2001:67c:2a64:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2a68::,2001:67c:2a68:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2a6c::,2001:67c:2a6c:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:2a70::,2001:67c:2a70:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2a74::,2001:67c:2a74:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:2a78::,2001:67c:2a78:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2a7c::,2001:67c:2a7c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2a80::,2001:67c:2a80:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:2a84::,2001:67c:2a84:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2a88::,2001:67c:2a88:ffff:ffff:ffff:ffff:ffff,LV 2001:67c:2a8c::,2001:67c:2a8c:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2a90::,2001:67c:2a90:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:2a94::,2001:67c:2a94:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2a98::,2001:67c:2a98:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2a9c::,2001:67c:2a9c:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2aa0::,2001:67c:2aa0:ffff:ffff:ffff:ffff:ffff,LU 2001:67c:2aa4::,2001:67c:2aa4:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2aa8::,2001:67c:2aa8:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2aac::,2001:67c:2aac:ffff:ffff:ffff:ffff:ffff,IS 2001:67c:2ab0::,2001:67c:2ab0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2ab4::,2001:67c:2ab4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2ab8::,2001:67c:2ab8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2abc::,2001:67c:2abc:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:2ac0::,2001:67c:2ac0:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2ac4::,2001:67c:2ac4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2ac8::,2001:67c:2ac8:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2acc::,2001:67c:2acc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2ad0::,2001:67c:2ad0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2ad4::,2001:67c:2ad4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2ad8::,2001:67c:2ad8:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2adc::,2001:67c:2adc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2ae0::,2001:67c:2ae0:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2ae4::,2001:67c:2ae4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2ae8::,2001:67c:2ae8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2aec::,2001:67c:2aec:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2af0::,2001:67c:2af0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2af4::,2001:67c:2af4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2af8::,2001:67c:2af8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2afc::,2001:67c:2afc:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2b04::,2001:67c:2b04:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2b08::,2001:67c:2b08:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2b0c::,2001:67c:2b0c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2b10::,2001:67c:2b10:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:2b14::,2001:67c:2b14:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2b18::,2001:67c:2b18:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2b1c::,2001:67c:2b1c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2b20::,2001:67c:2b20:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2b24::,2001:67c:2b24:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2b28::,2001:67c:2b28:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2b2c::,2001:67c:2b2c:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:2b30::,2001:67c:2b30:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2b34::,2001:67c:2b34:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2b38::,2001:67c:2b38:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:2b3c::,2001:67c:2b3c:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:2b40::,2001:67c:2b40:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2b44::,2001:67c:2b44:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2b48::,2001:67c:2b48:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2b4c::,2001:67c:2b4c:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:2b50::,2001:67c:2b50:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2b54::,2001:67c:2b54:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2b58::,2001:67c:2b58:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2b5c::,2001:67c:2b5c:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:2b60::,2001:67c:2b60:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2b64::,2001:67c:2b64:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2b68::,2001:67c:2b68:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:2b6c::,2001:67c:2b6c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2b70::,2001:67c:2b70:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2b74::,2001:67c:2b74:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2b78::,2001:67c:2b79:ffff:ffff:ffff:ffff:ffff,GR 2001:67c:2b80::,2001:67c:2b80:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:2b84::,2001:67c:2b84:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2b88::,2001:67c:2b88:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2b8c::,2001:67c:2b8c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2b90::,2001:67c:2b90:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2b94::,2001:67c:2b94:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2b98::,2001:67c:2b98:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2b9c::,2001:67c:2b9c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2ba0::,2001:67c:2ba0:ffff:ffff:ffff:ffff:ffff,TR 2001:67c:2ba4::,2001:67c:2ba4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2ba8::,2001:67c:2ba8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2bac::,2001:67c:2bac:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2bb0::,2001:67c:2bb0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2bb4::,2001:67c:2bb4:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:2bb8::,2001:67c:2bb8:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2bbc::,2001:67c:2bbc:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:2bc0::,2001:67c:2bc0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2bc4::,2001:67c:2bc4:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2bc8::,2001:67c:2bc8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2bcc::,2001:67c:2bcc:ffff:ffff:ffff:ffff:ffff,LV 2001:67c:2bd0::,2001:67c:2bd0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2bd4::,2001:67c:2bd4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2bd8::,2001:67c:2bd8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2bdc::,2001:67c:2bdc:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2be0::,2001:67c:2be0:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2be4::,2001:67c:2be4:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2bec::,2001:67c:2bec:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2bf0::,2001:67c:2bf0:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2bf4::,2001:67c:2bf4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2bf8::,2001:67c:2bf8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2bfc::,2001:67c:2bfc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2c00::,2001:67c:2c00:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2c04::,2001:67c:2c04:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2c08::,2001:67c:2c08:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2c0c::,2001:67c:2c0c:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2c10::,2001:67c:2c10:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2c14::,2001:67c:2c14:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2c18::,2001:67c:2c18:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2c1c::,2001:67c:2c1c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2c20::,2001:67c:2c20:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2c24::,2001:67c:2c24:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2c28::,2001:67c:2c28:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2c2c::,2001:67c:2c2c:ffff:ffff:ffff:ffff:ffff,HU 2001:67c:2c30::,2001:67c:2c30:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2c34::,2001:67c:2c34:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2c38::,2001:67c:2c38:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2c3c::,2001:67c:2c3c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2c40::,2001:67c:2c40:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2c44::,2001:67c:2c44:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2c48::,2001:67c:2c48:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2c4c::,2001:67c:2c4c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2c50::,2001:67c:2c50:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2c54::,2001:67c:2c54:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2c58::,2001:67c:2c58:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2c5c::,2001:67c:2c5c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2c60::,2001:67c:2c60:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:2c64::,2001:67c:2c64:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2c68::,2001:67c:2c68:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2c6c::,2001:67c:2c6c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2c70::,2001:67c:2c70:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2c74::,2001:67c:2c74:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2c78::,2001:67c:2c78:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2c7c::,2001:67c:2c7c:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2c80::,2001:67c:2c80:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2c84::,2001:67c:2c84:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:2c88::,2001:67c:2c89:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:2c90::,2001:67c:2c93:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:2ca0::,2001:67c:2ca7:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:2cc0::,2001:67c:2cc0:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:2cc4::,2001:67c:2cc4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2cc8::,2001:67c:2cc8:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2ccc::,2001:67c:2ccc:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2cd0::,2001:67c:2cd0:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2cd4::,2001:67c:2cd4:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2cd8::,2001:67c:2cd8:ffff:ffff:ffff:ffff:ffff,SK 2001:67c:2cdc::,2001:67c:2cdc:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2ce0::,2001:67c:2ce0:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2ce4::,2001:67c:2ce4:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:2ce8::,2001:67c:2ce8:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:2cec::,2001:67c:2cec:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2cf0::,2001:67c:2cf0:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:2cf4::,2001:67c:2cf4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2cf8::,2001:67c:2cf8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2cfc::,2001:67c:2cfc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2d00::,2001:67c:2d00:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2d04::,2001:67c:2d04:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2d08::,2001:67c:2d08:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2d0c::,2001:67c:2d0c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2d10::,2001:67c:2d10:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2d14::,2001:67c:2d14:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:2d18::,2001:67c:2d19:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2d20::,2001:67c:2d20:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2d24::,2001:67c:2d24:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2d28::,2001:67c:2d28:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2d2c::,2001:67c:2d2c:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:2d30::,2001:67c:2d30:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:2d34::,2001:67c:2d34:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:2d38::,2001:67c:2d38:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:2d3c::,2001:67c:2d3c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2d40::,2001:67c:2d40:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2d44::,2001:67c:2d44:ffff:ffff:ffff:ffff:ffff,PT 2001:67c:2d48::,2001:67c:2d48:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:2d4c::,2001:67c:2d4c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2d50::,2001:67c:2d50:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2d54::,2001:67c:2d54:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2d58::,2001:67c:2d58:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2d60::,2001:67c:2d60:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2d64::,2001:67c:2d64:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:2d68::,2001:67c:2d68:ffff:ffff:ffff:ffff:ffff,NO 2001:67c:2d6c::,2001:67c:2d6c:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:2d70::,2001:67c:2d70:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2d74::,2001:67c:2d74:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:2d78::,2001:67c:2d78:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2d7c::,2001:67c:2d7c:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2d80::,2001:67c:2d80:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2d84::,2001:67c:2d84:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2d88::,2001:67c:2d88:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2d8c::,2001:67c:2d8c:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2d90::,2001:67c:2d90:ffff:ffff:ffff:ffff:ffff,CZ 2001:67c:2d94::,2001:67c:2d94:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2d98::,2001:67c:2d98:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2d9c::,2001:67c:2d9c:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2da0::,2001:67c:2da0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2da4::,2001:67c:2da4:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2da8::,2001:67c:2da8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2dac::,2001:67c:2dac:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2db0::,2001:67c:2db0:ffff:ffff:ffff:ffff:ffff,IT 2001:67c:2db8::,2001:67c:2db8:ffff:ffff:ffff:ffff:ffff,MD 2001:67c:2dbc::,2001:67c:2dbc:ffff:ffff:ffff:ffff:ffff,IL 2001:67c:2dc0::,2001:67c:2dc0:ffff:ffff:ffff:ffff:ffff,LI 2001:67c:2dc4::,2001:67c:2dc4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2dc8::,2001:67c:2dc8:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2dcc::,2001:67c:2dcc:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2dd0::,2001:67c:2dd0:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2dd4::,2001:67c:2dd4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2dd8::,2001:67c:2dd8:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2ddc::,2001:67c:2ddc:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2de0::,2001:67c:2de0:ffff:ffff:ffff:ffff:ffff,SI 2001:67c:2de4::,2001:67c:2de4:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2de8::,2001:67c:2de8:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2dec::,2001:67c:2dec:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2df0::,2001:67c:2df0:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:2df4::,2001:67c:2df4:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2df8::,2001:67c:2df8:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2dfc::,2001:67c:2dfc:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2e00::,2001:67c:2e00:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2e04::,2001:67c:2e04:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2e08::,2001:67c:2e08:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2e0c::,2001:67c:2e0c:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2e10::,2001:67c:2e10:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2e14::,2001:67c:2e14:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2e18::,2001:67c:2e18:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2e1c::,2001:67c:2e1c:ffff:ffff:ffff:ffff:ffff,BE 2001:67c:2e24::,2001:67c:2e24:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2e28::,2001:67c:2e28:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2e2c::,2001:67c:2e2c:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2e30::,2001:67c:2e30:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:2e34::,2001:67c:2e34:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2e38::,2001:67c:2e38:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2e3c::,2001:67c:2e3c:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2e40::,2001:67c:2e40:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2e48::,2001:67c:2e48:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2e4c::,2001:67c:2e4c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2e50::,2001:67c:2e50:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2e54::,2001:67c:2e54:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2e58::,2001:67c:2e58:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2e5c::,2001:67c:2e5c:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2e60::,2001:67c:2e60:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2e64::,2001:67c:2e64:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2e68::,2001:67c:2e69:ffff:ffff:ffff:ffff:ffff,FR 2001:67c:2e74::,2001:67c:2e74:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2e78::,2001:67c:2e78:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2e7c::,2001:67c:2e7c:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2e80::,2001:67c:2e80:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2e84::,2001:67c:2e84:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2e88::,2001:67c:2e88:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2e8c::,2001:67c:2e8c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2e90::,2001:67c:2e90:ffff:ffff:ffff:ffff:ffff,BG 2001:67c:2e94::,2001:67c:2e94:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:2e98::,2001:67c:2e98:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2e9c::,2001:67c:2e9c:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2ea0::,2001:67c:2ea0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2ea4::,2001:67c:2ea4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2ea8::,2001:67c:2ea8:ffff:ffff:ffff:ffff:ffff,LV 2001:67c:2eac::,2001:67c:2eac:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2eb0::,2001:67c:2eb0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2eb4::,2001:67c:2eb4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2eb8::,2001:67c:2eb8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2ebc::,2001:67c:2ebc:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2ec0::,2001:67c:2ec0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2ec4::,2001:67c:2ec4:ffff:ffff:ffff:ffff:ffff,DK 2001:67c:2ec8::,2001:67c:2ec8:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2ecc::,2001:67c:2ecc:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2ed0::,2001:67c:2ed0:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2ed4::,2001:67c:2ed4:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:2ed8::,2001:67c:2ed8:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2edc::,2001:67c:2edc:ffff:ffff:ffff:ffff:ffff,SE 2001:67c:2ee0::,2001:67c:2ee0:ffff:ffff:ffff:ffff:ffff,RU 2001:67c:2ee4::,2001:67c:2ee4:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2ee8::,2001:67c:2ee8:ffff:ffff:ffff:ffff:ffff,PL 2001:67c:2eec::,2001:67c:2eec:ffff:ffff:ffff:ffff:ffff,RO 2001:67c:2ef0::,2001:67c:2ef0:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2ef4::,2001:67c:2ef4:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2ef8::,2001:67c:2ef8:ffff:ffff:ffff:ffff:ffff,FI 2001:67c:2efc::,2001:67c:2efc:ffff:ffff:ffff:ffff:ffff,AT 2001:67c:2f00::,2001:67c:2f00:ffff:ffff:ffff:ffff:ffff,CH 2001:67c:2f04::,2001:67c:2f04:ffff:ffff:ffff:ffff:ffff,NL 2001:67c:2f08::,2001:67c:2f08:ffff:ffff:ffff:ffff:ffff,GB 2001:67c:2f0c::,2001:67c:2f0c:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2f10::,2001:67c:2f10:ffff:ffff:ffff:ffff:ffff,UA 2001:67c:2f14::,2001:67c:2f14:ffff:ffff:ffff:ffff:ffff,DE 2001:67c:2f18::,2001:67c:2f18:ffff:ffff:ffff:ffff:ffff,CZ 2001:680::,2001:680:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:688::,2001:688:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:690::,2001:697:ffff:ffff:ffff:ffff:ffff:ffff,PT 2001:6a0::,2001:6a0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:6a8::,2001:6af:ffff:ffff:ffff:ffff:ffff:ffff,BE 2001:6b0::,2001:6b0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:6b8::,2001:6b8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:6c8::,2001:6cf:ffff:ffff:ffff:ffff:ffff:ffff,DK 2001:6d0::,2001:6d0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2001:6d8::,2001:6df:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:6e0::,2001:6e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:6e8::,2001:6ef:ffff:ffff:ffff:ffff:ffff:ffff,FI 2001:6f0::,2001:6f7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:6f8::,2001:6f8:202:7fff:ffff:ffff:ffff:ffff,GB 2001:6f8:202:8000::,2001:6f8:202:ffff:ffff:ffff:ffff:ffff,BE 2001:6f8:203::,2001:6f8:2ff:ffff:ffff:ffff:ffff:ffff,GB 2001:6f8:300::,2001:6f8:3ff:ffff:ffff:ffff:ffff:ffff,BE 2001:6f8:400::,2001:6f8:8ff:ffff:ffff:ffff:ffff:ffff,GB 2001:6f8:900::,2001:6f8:900:ffff:ffff:ffff:ffff:ffff,DE 2001:6f8:901::,2001:6f8:91c:ffff:ffff:ffff:ffff:ffff,GB 2001:6f8:91d::,2001:6f8:91d:7fff:ffff:ffff:ffff:ffff,DE 2001:6f8:91d:8000::,2001:6f8:1011:ffff:ffff:ffff:ffff:ffff,GB 2001:6f8:1012::,2001:6f8:1012:7fff:ffff:ffff:ffff:ffff,DE 2001:6f8:1012:8000::,2001:6f8:107c:ffff:ffff:ffff:ffff:ffff,GB 2001:6f8:107d::,2001:6f8:107d:7fff:ffff:ffff:ffff:ffff,DE 2001:6f8:107d:8000::,2001:6f8:10f1:ffff:ffff:ffff:ffff:ffff,GB 2001:6f8:10f2::,2001:6f8:10f2:7fff:ffff:ffff:ffff:ffff,DE 2001:6f8:10f2:8000::,2001:6f8:11ab:ffff:ffff:ffff:ffff:ffff,GB 2001:6f8:11ac::,2001:6f8:11ac:7fff:ffff:ffff:ffff:ffff,DE 2001:6f8:11ac:8000::,2001:6f8:11b1:ffff:ffff:ffff:ffff:ffff,GB 2001:6f8:11b2::,2001:6f8:11b2:7fff:ffff:ffff:ffff:ffff,AT 2001:6f8:11b2:8000::,2001:6f8:11cf:ffff:ffff:ffff:ffff:ffff,GB 2001:6f8:11d0::,2001:6f8:11d0:7fff:ffff:ffff:ffff:ffff,DE 2001:6f8:11d0:8000::,2001:6f8:12ca:7fff:ffff:ffff:ffff:ffff,GB 2001:6f8:12ca:8000::,2001:6f8:12ca:ffff:ffff:ffff:ffff:ffff,DE 2001:6f8:12cb::,2001:6f8:12d8:ffff:ffff:ffff:ffff:ffff,GB 2001:6f8:12d9::,2001:6f8:12d9:7fff:ffff:ffff:ffff:ffff,DE 2001:6f8:12d9:8000::,2001:6f8:13e0:ffff:ffff:ffff:ffff:ffff,GB 2001:6f8:13e1::,2001:6f8:13e1:7fff:ffff:ffff:ffff:ffff,DE 2001:6f8:13e1:8000::,2001:6f8:13ff:ffff:ffff:ffff:ffff:ffff,GB 2001:6f8:1400::,2001:6f8:14ff:ffff:ffff:ffff:ffff:ffff,BE 2001:6f8:1500::,2001:6f8:1c8a:ffff:ffff:ffff:ffff:ffff,GB 2001:6f8:1c8b::,2001:6f8:1c8b:7fff:ffff:ffff:ffff:ffff,DE 2001:6f8:1c8b:8000::,2001:6f8:1cba:ffff:ffff:ffff:ffff:ffff,GB 2001:6f8:1cbb::,2001:6f8:1cbb:7fff:ffff:ffff:ffff:ffff,DE 2001:6f8:1cbb:8000::,2001:6f8:1d57:ffff:ffff:ffff:ffff:ffff,GB 2001:6f8:1d58::,2001:6f8:1d58:7fff:ffff:ffff:ffff:ffff,DE 2001:6f8:1d58:8000::,2001:6f8:1d69:ffff:ffff:ffff:ffff:ffff,GB 2001:6f8:1d6a::,2001:6f8:1d6a:7fff:ffff:ffff:ffff:ffff,DE 2001:6f8:1d6a:8000::,2001:6f8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:700::,2001:700:ffff:ffff:ffff:ffff:ffff:ffff,NO 2001:708::,2001:708:ffff:ffff:ffff:ffff:ffff:ffff,FI 2001:710::,2001:710:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:718::,2001:718:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:720::,2001:720:ffff:ffff:ffff:ffff:ffff:ffff,ES 2001:728::,2001:728:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:730::,2001:737:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:738::,2001:738:ffff:ffff:ffff:ffff:ffff:ffff,HU 2001:748::,2001:748:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:750::,2001:750:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:758::,2001:758:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:760::,2001:760:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:768::,2001:768:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:770::,2001:770:ffff:ffff:ffff:ffff:ffff:ffff,IE 2001:778::,2001:77f:ffff:ffff:ffff:ffff:ffff:ffff,LT 2001:780::,2001:787:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:788::,2001:78f:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:790::,2001:790:ffff:ffff:ffff:ffff:ffff:ffff,IR 2001:798::,2001:79f:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:7a0::,2001:7a0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:7a8::,2001:7a8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:7b0::,2001:7b0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:7b8::,2001:7bf:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:7c0::,2001:7c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:7c8::,2001:7c8:ffff:ffff:ffff:ffff:ffff:ffff,IE 2001:7d0::,2001:7d0:ffff:ffff:ffff:ffff:ffff:ffff,EE 2001:7d8::,2001:7d8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:7e0::,2001:7e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:7e8::,2001:7e8:ffff:ffff:ffff:ffff:ffff:ffff,LU 2001:7f8::,2001:7f8::ffff:ffff:ffff:ffff:ffff,DE 2001:7f8:1::,2001:7f8:1:ffff:ffff:ffff:ffff:ffff,NL 2001:7f8:2::,2001:7f8:2:ffff:ffff:ffff:ffff:ffff,IT 2001:7f8:3::,2001:7f8:4:ffff:ffff:ffff:ffff:ffff,GB 2001:7f8:6::,2001:7f8:6:ffff:ffff:ffff:ffff:ffff,BG 2001:7f8:7::,2001:7f8:7:ffff:ffff:ffff:ffff:ffff,FI 2001:7f8:8::,2001:7f8:8:ffff:ffff:ffff:ffff:ffff,DE 2001:7f8:9::,2001:7f8:9:ffff:ffff:ffff:ffff:ffff,GB 2001:7f8:a::,2001:7f8:a:ffff:ffff:ffff:ffff:ffff,PT 2001:7f8:b::,2001:7f8:b:ffff:ffff:ffff:ffff:ffff,IT 2001:7f8:c::,2001:7f8:c:ffff:ffff:ffff:ffff:ffff,CH 2001:7f8:d::,2001:7f8:d:ffff:ffff:ffff:ffff:ffff,SE 2001:7f8:e::,2001:7f8:e:ffff:ffff:ffff:ffff:ffff,NL 2001:7f8:f::,2001:7f8:f:ffff:ffff:ffff:ffff:ffff,ES 2001:7f8:10::,2001:7f8:10:ffff:ffff:ffff:ffff:ffff,IT 2001:7f8:11::,2001:7f8:11:ffff:ffff:ffff:ffff:ffff,AT 2001:7f8:12::,2001:7f8:12:ffff:ffff:ffff:ffff:ffff,NO 2001:7f8:13::,2001:7f8:13:ffff:ffff:ffff:ffff:ffff,NL 2001:7f8:14::,2001:7f8:14:ffff:ffff:ffff:ffff:ffff,CZ 2001:7f8:15::,2001:7f8:15:ffff:ffff:ffff:ffff:ffff,EE 2001:7f8:17::,2001:7f8:17:ffff:ffff:ffff:ffff:ffff,GB 2001:7f8:18::,2001:7f8:18:ffff:ffff:ffff:ffff:ffff,IE 2001:7f8:19::,2001:7f8:19:ffff:ffff:ffff:ffff:ffff,DE 2001:7f8:1a::,2001:7f8:1a:ffff:ffff:ffff:ffff:ffff,NL 2001:7f8:1b::,2001:7f8:1b:ffff:ffff:ffff:ffff:ffff,BE 2001:7f8:1c::,2001:7f8:1c:ffff:ffff:ffff:ffff:ffff,CH 2001:7f8:1d::,2001:7f8:1d:ffff:ffff:ffff:ffff:ffff,FI 2001:7f8:1e::,2001:7f8:1e:ffff:ffff:ffff:ffff:ffff,RS 2001:7f8:1f::,2001:7f8:1f:ffff:ffff:ffff:ffff:ffff,DK 2001:7f8:20::,2001:7f8:20:ffff:ffff:ffff:ffff:ffff,RU 2001:7f8:21::,2001:7f8:21:ffff:ffff:ffff:ffff:ffff,SE 2001:7f8:22::,2001:7f8:22:ffff:ffff:ffff:ffff:ffff,ME 2001:7f8:23::,2001:7f8:23:ffff:ffff:ffff:ffff:ffff,IT 2001:7f8:24::,2001:7f8:24:ffff:ffff:ffff:ffff:ffff,CH 2001:7f8:25::,2001:7f8:25:ffff:ffff:ffff:ffff:ffff,GB 2001:7f8:26::,2001:7f8:26:ffff:ffff:ffff:ffff:ffff,BE 2001:7f8:27::,2001:7f8:27:ffff:ffff:ffff:ffff:ffff,PL 2001:7f8:28::,2001:7f8:28:ffff:ffff:ffff:ffff:ffff,HR 2001:7f8:29::,2001:7f8:29:ffff:ffff:ffff:ffff:ffff,DE 2001:7f8:2a::,2001:7f8:2a:ffff:ffff:ffff:ffff:ffff,ES 2001:7f8:2d::,2001:7f8:2d:ffff:ffff:ffff:ffff:ffff,FR 2001:7f8:2e::,2001:7f8:2e:ffff:ffff:ffff:ffff:ffff,MD 2001:7f8:2f::,2001:7f8:2f:ffff:ffff:ffff:ffff:ffff,SK 2001:7f8:30::,2001:7f8:30:ffff:ffff:ffff:ffff:ffff,AT 2001:7f8:31::,2001:7f8:31:ffff:ffff:ffff:ffff:ffff,NL 2001:7f8:32::,2001:7f8:32:ffff:ffff:ffff:ffff:ffff,IT 2001:7f8:33::,2001:7f8:33:ffff:ffff:ffff:ffff:ffff,DE 2001:7f8:35::,2001:7f8:35:ffff:ffff:ffff:ffff:ffff,HU 2001:7f8:36::,2001:7f8:36:ffff:ffff:ffff:ffff:ffff,FR 2001:7f8:37::,2001:7f8:38:ffff:ffff:ffff:ffff:ffff,SE 2001:7f8:39::,2001:7f8:39:ffff:ffff:ffff:ffff:ffff,EE 2001:7f8:3a::,2001:7f8:3a:ffff:ffff:ffff:ffff:ffff,DE 2001:7f8:3b::,2001:7f8:3b:ffff:ffff:ffff:ffff:ffff,IL 2001:7f8:3d::,2001:7f8:3d:ffff:ffff:ffff:ffff:ffff,DE 2001:7f8:3e::,2001:7f8:3e:ffff:ffff:ffff:ffff:ffff,GB 2001:7f8:3f::,2001:7f8:3f:ffff:ffff:ffff:ffff:ffff,DE 2001:7f8:40::,2001:7f8:40:ffff:ffff:ffff:ffff:ffff,RU 2001:7f8:41::,2001:7f8:41:ffff:ffff:ffff:ffff:ffff,NO 2001:7f8:42::,2001:7f8:42:ffff:ffff:ffff:ffff:ffff,PL 2001:7f8:43::,2001:7f8:43:ffff:ffff:ffff:ffff:ffff,FR 2001:7f8:44::,2001:7f8:44:ffff:ffff:ffff:ffff:ffff,DE 2001:7f8:45::,2001:7f8:45:ffff:ffff:ffff:ffff:ffff,SE 2001:7f8:46::,2001:7f8:46:ffff:ffff:ffff:ffff:ffff,SI 2001:7f8:47::,2001:7f8:47:ffff:ffff:ffff:ffff:ffff,FR 2001:7f8:48::,2001:7f8:48:ffff:ffff:ffff:ffff:ffff,IS 2001:7f8:4a::,2001:7f8:4a:ffff:ffff:ffff:ffff:ffff,AT 2001:7f8:4b::,2001:7f8:4b:ffff:ffff:ffff:ffff:ffff,PL 2001:7f8:4c::,2001:7f8:4c:ffff:ffff:ffff:ffff:ffff,LU 2001:7f8:4d::,2001:7f8:4d:ffff:ffff:ffff:ffff:ffff,IE 2001:7f8:4e::,2001:7f8:4e:ffff:ffff:ffff:ffff:ffff,FR 2001:7f8:4f::,2001:7f8:4f:ffff:ffff:ffff:ffff:ffff,BH 2001:7f8:50::,2001:7f8:50:ffff:ffff:ffff:ffff:ffff,EE 2001:7f8:51::,2001:7f8:51:ffff:ffff:ffff:ffff:ffff,UA 2001:7f8:52::,2001:7f8:52:ffff:ffff:ffff:ffff:ffff,LB 2001:7f8:53::,2001:7f8:53:ffff:ffff:ffff:ffff:ffff,SE 2001:7f8:54::,2001:7f8:54:ffff:ffff:ffff:ffff:ffff,FR 2001:7f8:55::,2001:7f8:55:ffff:ffff:ffff:ffff:ffff,UA 2001:7f8:56::,2001:7f8:56:ffff:ffff:ffff:ffff:ffff,DE 2001:7f8:57::,2001:7f8:57:ffff:ffff:ffff:ffff:ffff,IT 2001:7f8:58::,2001:7f8:58:ffff:ffff:ffff:ffff:ffff,BG 2001:7f8:59::,2001:7f8:59:ffff:ffff:ffff:ffff:ffff,FR 2001:7f8:5a::,2001:7f8:5a:ffff:ffff:ffff:ffff:ffff,BY 2001:7f8:5b::,2001:7f8:5b:ffff:ffff:ffff:ffff:ffff,PL 2001:7f8:5d::,2001:7f8:5d:ffff:ffff:ffff:ffff:ffff,UA 2001:7f8:5e::,2001:7f8:5e:ffff:ffff:ffff:ffff:ffff,CZ 2001:7f8:5f::,2001:7f8:5f:ffff:ffff:ffff:ffff:ffff,IT 2001:7f8:60::,2001:7f8:60:ffff:ffff:ffff:ffff:ffff,PL 2001:7f8:61::,2001:7f8:61:ffff:ffff:ffff:ffff:ffff,NL 2001:7f8:62::,2001:7f8:62:ffff:ffff:ffff:ffff:ffff,RU 2001:7f8:63::,2001:7f8:63:ffff:ffff:ffff:ffff:ffff,UA 2001:7f8:64::,2001:7f8:64:ffff:ffff:ffff:ffff:ffff,RO 2001:7f8:65::,2001:7f8:65:ffff:ffff:ffff:ffff:ffff,UA 2001:7f8:66::,2001:7f8:66:ffff:ffff:ffff:ffff:ffff,AT 2001:7f8:67::,2001:7f8:67:ffff:ffff:ffff:ffff:ffff,GB 2001:7f8:68::,2001:7f8:68:ffff:ffff:ffff:ffff:ffff,FR 2001:7f8:69::,2001:7f8:69:ffff:ffff:ffff:ffff:ffff,PL 2001:7f8:6a::,2001:7f8:6a:ffff:ffff:ffff:ffff:ffff,MD 2001:7f8:6b::,2001:7f8:6b:ffff:ffff:ffff:ffff:ffff,PL 2001:7f8:6c::,2001:7f8:6c:ffff:ffff:ffff:ffff:ffff,UA 2001:7f8:6d::,2001:7f8:6d:ffff:ffff:ffff:ffff:ffff,FR 2001:7f8:6e::,2001:7f8:6e:ffff:ffff:ffff:ffff:ffff,GR 2001:7f8:6f::,2001:7f8:70:ffff:ffff:ffff:ffff:ffff,RU 2001:7f8:71::,2001:7f8:71:ffff:ffff:ffff:ffff:ffff,AT 2001:7f8:72::,2001:7f8:72:ffff:ffff:ffff:ffff:ffff,PS 2001:7f8:73::,2001:7f8:73:ffff:ffff:ffff:ffff:ffff,AE 2001:7f8:74::,2001:7f8:75:ffff:ffff:ffff:ffff:ffff,PL 2001:7f8:76::,2001:7f8:76:ffff:ffff:ffff:ffff:ffff,NO 2001:7f8:77::,2001:7f8:78:ffff:ffff:ffff:ffff:ffff,RU 2001:7f8:79::,2001:7f8:79:ffff:ffff:ffff:ffff:ffff,FR 2001:7f8:7a::,2001:7f8:7a:ffff:ffff:ffff:ffff:ffff,AE 2001:7f8:7b::,2001:7f8:7b:ffff:ffff:ffff:ffff:ffff,UA 2001:7f8:7c::,2001:7f8:7c:ffff:ffff:ffff:ffff:ffff,PL 2001:7f8:7d::,2001:7f8:7d:ffff:ffff:ffff:ffff:ffff,RU 2001:7f8:7e::,2001:7f8:7e:ffff:ffff:ffff:ffff:ffff,ES 2001:7f8:7f::,2001:7f8:7f:ffff:ffff:ffff:ffff:ffff,CZ 2001:7f8:80::,2001:7f8:80:ffff:ffff:ffff:ffff:ffff,UA 2001:7f8:81::,2001:7f8:81:ffff:ffff:ffff:ffff:ffff,FR 2001:7f8:82::,2001:7f8:82:ffff:ffff:ffff:ffff:ffff,RU 2001:7f8:83::,2001:7f8:83:ffff:ffff:ffff:ffff:ffff,PL 2001:7f8:84::,2001:7f8:84:ffff:ffff:ffff:ffff:ffff,RU 2001:7f8:85::,2001:7f8:85:ffff:ffff:ffff:ffff:ffff,HU 2001:7f8:86::,2001:7f8:86:ffff:ffff:ffff:ffff:ffff,NL 2001:7f8:87::,2001:7f8:87:ffff:ffff:ffff:ffff:ffff,CZ 2001:7f8:88::,2001:7f8:89:ffff:ffff:ffff:ffff:ffff,FR 2001:7f8:8a::,2001:7f8:8a:ffff:ffff:ffff:ffff:ffff,PL 2001:7f8:8b::,2001:7f8:8b:ffff:ffff:ffff:ffff:ffff,BY 2001:7f8:8c::,2001:7f8:8c:ffff:ffff:ffff:ffff:ffff,GB 2001:7f8:8d::,2001:7f8:8d:ffff:ffff:ffff:ffff:ffff,AT 2001:7f8:8e::,2001:7f8:8e:ffff:ffff:ffff:ffff:ffff,BG 2001:7f8:8f::,2001:7f8:8f:ffff:ffff:ffff:ffff:ffff,NL 2001:7f8:90::,2001:7f8:90:ffff:ffff:ffff:ffff:ffff,GB 2001:7f8:91::,2001:7f8:91:ffff:ffff:ffff:ffff:ffff,SK 2001:7f8:92::,2001:7f8:92:ffff:ffff:ffff:ffff:ffff,DE 2001:7f8:93::,2001:7f8:93:ffff:ffff:ffff:ffff:ffff,AT 2001:7f8:94::,2001:7f8:94:ffff:ffff:ffff:ffff:ffff,AM 2001:7f8:95::,2001:7f8:95:ffff:ffff:ffff:ffff:ffff,DE 2001:7f8:96::,2001:7f8:96:ffff:ffff:ffff:ffff:ffff,BG 2001:7f8:97::,2001:7f8:97:ffff:ffff:ffff:ffff:ffff,RO 2001:7f8:98::,2001:7f8:98:ffff:ffff:ffff:ffff:ffff,BG 2001:7f8:99::,2001:7f8:99:ffff:ffff:ffff:ffff:ffff,FR 2001:7f8:9a::,2001:7f8:9a:ffff:ffff:ffff:ffff:ffff,RU 2001:7f8:9b::,2001:7f8:9b:ffff:ffff:ffff:ffff:ffff,PL 2001:7f8:9c::,2001:7f8:9c:ffff:ffff:ffff:ffff:ffff,DE 2001:7fa:0:1::,2001:7fa::1:ffff:ffff:ffff:ffff,HK 2001:7fa:0:2::,2001:7fa::2:ffff:ffff:ffff:ffff,KR 2001:7fa:0:3::,2001:7fa::3:ffff:ffff:ffff:ffff,JP 2001:7fa:1::,2001:7fa:1:ffff:ffff:ffff:ffff:ffff,TW 2001:7fa:2::,2001:7fa:2:ffff:ffff:ffff:ffff:ffff,ID 2001:7fa:3::,2001:7fa:4:ffff:ffff:ffff:ffff:ffff,NZ 2001:7fa:5::,2001:7fa:5:ffff:ffff:ffff:ffff:ffff,CN 2001:7fa:6::,2001:7fa:6:ffff:ffff:ffff:ffff:ffff,VN 2001:7fa:7::,2001:7fa:7:ffff:ffff:ffff:ffff:ffff,JP 2001:7fa:8::,2001:7fa:8:ffff:ffff:ffff:ffff:ffff,KR 2001:7fa:9::,2001:7fa:e:ffff:ffff:ffff:ffff:ffff,AU 2001:7fa:f::,2001:7fa:f:ffff:ffff:ffff:ffff:ffff,ID 2001:7fa:10::,2001:7fa:10:ffff:ffff:ffff:ffff:ffff,CN 2001:7fa:11::,2001:7fa:11:ffff:ffff:ffff:ffff:ffff,AU 2001:7fe::,2001:7fe:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:808::,2001:80f:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:810::,2001:810:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:818::,2001:81f:ffff:ffff:ffff:ffff:ffff:ffff,PT 2001:820::,2001:820:ffff:ffff:ffff:ffff:ffff:ffff,NO 2001:828::,2001:828:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:830::,2001:830:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:838::,2001:83f:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:840::,2001:847:ffff:ffff:ffff:ffff:ffff:ffff,NO 2001:848::,2001:848:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:850::,2001:853:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:858::,2001:858:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:860::,2001:867:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:868::,2001:86f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:870::,2001:871:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:878::,2001:87f:ffff:ffff:ffff:ffff:ffff:ffff,DK 2001:880::,2001:880:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:888::,2001:88f:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:890::,2001:891:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:898::,2001:89f:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:8a0::,2001:8a7:ffff:ffff:ffff:ffff:ffff:ffff,PT 2001:8a8::,2001:8a8:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:8b0::,2001:8b0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:8b8::,2001:8bf:ffff:ffff:ffff:ffff:ffff:ffff,FI 2001:8c0::,2001:8c0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2001:8c8::,2001:8c8:ffff:ffff:ffff:ffff:ffff:ffff,RS 2001:8d0::,2001:8d0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:8d8::,2001:8d8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:8e0::,2001:8e8:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:8f0::,2001:8f3:ffff:ffff:ffff:ffff:ffff:ffff,CY 2001:8f8::,2001:8ff:ffff:ffff:ffff:ffff:ffff:ffff,AE 2001:900::,2001:900:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:908::,2001:908:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:910::,2001:917:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:918::,2001:918:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:920::,2001:920:1845:ffff:ffff:ffff:ffff:ffff,GB 2001:920:1846::,2001:920:1846:7fff:ffff:ffff:ffff:ffff,DE 2001:920:1846:8000::,2001:920:186a:ffff:ffff:ffff:ffff:ffff,GB 2001:920:186b::,2001:920:186b:ffff:ffff:ffff:ffff:ffff,DE 2001:920:186c::,2001:920:187f:ffff:ffff:ffff:ffff:ffff,GB 2001:920:1880::,2001:920:1880:7fff:ffff:ffff:ffff:ffff,DE 2001:920:1880:8000::,2001:920:18a0:ffff:ffff:ffff:ffff:ffff,GB 2001:920:18a1::,2001:920:18a1:7fff:ffff:ffff:ffff:ffff,DE 2001:920:18a1:8000::,2001:920:18ad:ffff:ffff:ffff:ffff:ffff,GB 2001:920:18ae::,2001:920:18ae:7fff:ffff:ffff:ffff:ffff,DE 2001:920:18ae:8000::,2001:920:18bf:ffff:ffff:ffff:ffff:ffff,GB 2001:920:18c0::,2001:920:18c0:7fff:ffff:ffff:ffff:ffff,DE 2001:920:18c0:8000::,2001:920:18c0:ffff:ffff:ffff:ffff:ffff,GB 2001:920:18c1::,2001:920:18c1:7fff:ffff:ffff:ffff:ffff,DE 2001:920:18c1:8000::,2001:920:5809:ffff:ffff:ffff:ffff:ffff,GB 2001:920:580a::,2001:920:580a:7fff:ffff:ffff:ffff:ffff,ES 2001:920:580a:8000::,2001:920:5845:ffff:ffff:ffff:ffff:ffff,GB 2001:920:5846::,2001:920:5846:ffff:ffff:ffff:ffff:ffff,ES 2001:920:5847::,2001:927:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:928::,2001:928:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:930::,2001:930:ffff:ffff:ffff:ffff:ffff:ffff,TR 2001:938::,2001:938:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:940::,2001:940:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:948::,2001:948:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:950::,2001:950:ffff:ffff:ffff:ffff:ffff:ffff,HU 2001:958::,2001:958:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:960::,2001:960:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:968::,2001:968:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:978::,2001:978:2:39::5:1,DE 2001:978:2:39::5:2,2001:978:2:39::5:2,SI 2001:978:2:39::5:3,2001:978:1200:ffff:ffff:ffff:ffff:ffff,DE 2001:978:1201::,2001:978:1201:7fff:ffff:ffff:ffff:ffff,ES 2001:978:1201:8000::,2001:978:22ff:ffff:ffff:ffff:ffff:ffff,DE 2001:978:2300::,2001:978:2300:7fff:ffff:ffff:ffff:ffff,GB 2001:978:2300:8000::,2001:978:29ff:ffff:ffff:ffff:ffff:ffff,DE 2001:978:2a00::,2001:978:2a00:ffff:ffff:ffff:ffff:ffff,IE 2001:978:2a01::,2001:978:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:980::,2001:984:645a:ffff:ffff:ffff:ffff:ffff,NL 2001:984:645b::,2001:984:645b:7fff:ffff:ffff:ffff:ffff,US 2001:984:645b:8000::,2001:987:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:988::,2001:988:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:990::,2001:990:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:998::,2001:99b:ffff:ffff:ffff:ffff:ffff:ffff,FI 2001:9a0::,2001:9a0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:9a8::,2001:9a8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:9b0::,2001:9b0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:9c0::,2001:9c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:9c8::,2001:9cf:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:9d0::,2001:9d0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:9d8::,2001:9d8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:9e0::,2001:9e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:9e8::,2001:9e8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:9f0::,2001:9f7:ffff:ffff:ffff:ffff:ffff:ffff,FI 2001:a00::,2001:a00:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:a08::,2001:a08:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:a10::,2001:a10:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:a18::,2001:a1f:ffff:ffff:ffff:ffff:ffff:ffff,LU 2001:a20::,2001:a20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:a30::,2001:a30:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:a38::,2001:a38:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:a40::,2001:a40:ffff:ffff:ffff:ffff:ffff:ffff,PT 2001:a48::,2001:a48:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:a50::,2001:a50:ffff:ffff:ffff:ffff:ffff:ffff,ES 2001:a58::,2001:a58:ffff:ffff:ffff:ffff:ffff:ffff,RU 2001:a60::,2001:a67:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:a68::,2001:a68:ffff:ffff:ffff:ffff:ffff:ffff,FI 2001:a70::,2001:a70:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:a78::,2001:a78:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:a80::,2001:a80:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:a88::,2001:a88:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:a90::,2001:a90:ffff:ffff:ffff:ffff:ffff:ffff,NO 2001:a98::,2001:a98:ffff:ffff:ffff:ffff:ffff:ffff,TR 2001:aa0::,2001:aa0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:aa8::,2001:ab7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:ab8::,2001:ab8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:ac0::,2001:ac7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2001:ac8::,2001:ac8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:ad0::,2001:ad0:ffff:ffff:ffff:ffff:ffff:ffff,EE 2001:ad8::,2001:ae1:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:ae8::,2001:ae8:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:af0::,2001:af0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:af8::,2001:af8:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:b00::,2001:b07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:b08::,2001:b08:ffff:ffff:ffff:ffff:ffff:ffff,RU 2001:b10::,2001:b10:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:b18::,2001:b18:ffff:ffff:ffff:ffff:ffff:ffff,PT 2001:b20::,2001:b20:ffff:ffff:ffff:ffff:ffff:ffff,LU 2001:b28::,2001:b28:ffff:ffff:ffff:ffff:ffff:ffff,RU 2001:b30::,2001:b37:ffff:ffff:ffff:ffff:ffff:ffff,RO 2001:b40::,2001:b40:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:b48::,2001:b4f:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:b50::,2001:b50:ffff:ffff:ffff:ffff:ffff:ffff,DK 2001:b58::,2001:b58:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:b60::,2001:b67:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:b68::,2001:b68:ffff:ffff:ffff:ffff:ffff:ffff,HR 2001:b70::,2001:b70:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:b80::,2001:b87:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:b88::,2001:b88:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:b90::,2001:b90:ffff:ffff:ffff:ffff:ffff:ffff,ES 2001:b98::,2001:b98:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:ba0::,2001:ba0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2001:ba8::,2001:ba8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:bb0::,2001:bb7:ffff:ffff:ffff:ffff:ffff:ffff,IE 2001:bb8::,2001:bb8:ffff:ffff:ffff:ffff:ffff:ffff,EE 2001:bc8::,2001:bc8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:bd0::,2001:bd0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:be0::,2001:be7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:be8::,2001:be8:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:bf0::,2001:bf7:10f:ffff:ffff:ffff:ffff:ffff,DE 2001:bf7:110::,2001:bf7:110:7fff:ffff:ffff:ffff:ffff,NL 2001:bf7:110:8000::,2001:bf7:130f:ffff:ffff:ffff:ffff:ffff,DE 2001:bf7:1310::,2001:bf7:1310:7fff:ffff:ffff:ffff:ffff,NL 2001:bf7:1310:8000::,2001:bf7:131f:ffff:ffff:ffff:ffff:ffff,DE 2001:bf7:1320::,2001:bf7:1320:7fff:ffff:ffff:ffff:ffff,NL 2001:bf7:1320:8000::,2001:bf7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:bf8::,2001:bf8:ffff:ffff:ffff:ffff:ffff:ffff,IL 2001:c00::,2001:c00:ffff:ffff:ffff:ffff:ffff:ffff,TH 2001:c08::,2001:c08:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:c10::,2001:c10:ffff:ffff:ffff:ffff:ffff:ffff,SG 2001:c18::,2001:c18:ffff:ffff:ffff:ffff:ffff:ffff,MY 2001:c20::,2001:c20:ffff:ffff:ffff:ffff:ffff:ffff,SG 2001:c28::,2001:c28:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:c30::,2001:c30:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:c38::,2001:c39:ffff:ffff:ffff:ffff:ffff:ffff,TH 2001:c40::,2001:c40:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:c48::,2001:c48:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:c50::,2001:c50:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:c58::,2001:c58:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:c60::,2001:c60:ffff:ffff:ffff:ffff:ffff:ffff,PG 2001:c68::,2001:c68:ffff:ffff:ffff:ffff:ffff:ffff,CN 2001:c70::,2001:c70:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:c78::,2001:c79:ffff:ffff:ffff:ffff:ffff:ffff,AU 2001:c80::,2001:c80:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:c90::,2001:c90:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:c98::,2001:c98:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:ca0::,2001:ca0:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:ca8::,2001:ca8:ffff:ffff:ffff:ffff:ffff:ffff,IN 2001:cb0::,2001:cb0:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:cb8::,2001:cb8:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:cc0::,2001:cc0:ffff:ffff:ffff:ffff:ffff:ffff,CN 2001:cc8::,2001:cc9:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:cd0::,2001:cd0:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:cd8::,2001:cd8:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:ce0::,2001:ce0:ffff:ffff:ffff:ffff:ffff:ffff,HK 2001:ce8::,2001:ce8:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:cf0::,2001:cf0:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:cf8::,2001:cf8:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:d00::,2001:d00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:d08::,2001:d08:ffff:ffff:ffff:ffff:ffff:ffff,MY 2001:d10::,2001:d10:ffff:ffff:ffff:ffff:ffff:ffff,ID 2001:d18::,2001:d18:ffff:ffff:ffff:ffff:ffff:ffff,PH 2001:d28::,2001:d28:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:d30::,2001:d30:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:d38::,2001:d38:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:d40::,2001:d40:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:d48::,2001:d48:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:d50::,2001:d50:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:d58::,2001:d58:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:d68::,2001:d68:ffff:ffff:ffff:ffff:ffff:ffff,ID 2001:d70::,2001:d73:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:d80::,2001:d80:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:d88::,2001:d88:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:d90::,2001:d90:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:d98::,2001:d98:ffff:ffff:ffff:ffff:ffff:ffff,SG 2001:da0::,2001:da0:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:da8::,2001:daa:ffff:ffff:ffff:ffff:ffff:ffff,CN 2001:db0::,2001:db0:ffff:ffff:ffff:ffff:ffff:ffff,AU 2001:dc0::,2001:dc0:ffff:ffff:ffff:ffff:ffff:ffff,AU 2001:dc1::,2001:dc1:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:dc2::,2001:dc4:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:dc5::,2001:dc5:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:dc6::,2001:dc6:ffff:ffff:ffff:ffff:ffff:ffff,ID 2001:dc7::,2001:dc7:ffff:ffff:ffff:ffff:ffff:ffff,CN 2001:dc8::,2001:dc8:ffff:ffff:ffff:ffff:ffff:ffff,VN 2001:dc9::,2001:dc9:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:dca::,2001:dca:ffff:ffff:ffff:ffff:ffff:ffff,HK 2001:dcc::,2001:dcc:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:dcd::,2001:dcd:ffff:ffff:ffff:ffff:ffff:ffff,AU 2001:dce::,2001:dce:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2001:dd8::,2001:dd8::ffff:ffff:ffff:ffff:ffff,FJ 2001:dd8:1::,2001:dd8:1:ffff:ffff:ffff:ffff:ffff,CN 2001:dd8:2::,2001:dd8:2:ffff:ffff:ffff:ffff:ffff,MY 2001:dd8:3::,2001:dd8:3:ffff:ffff:ffff:ffff:ffff,NZ 2001:dd8:4::,2001:dd8:4:ffff:ffff:ffff:ffff:ffff,SG 2001:dd8:5::,2001:dd8:5:ffff:ffff:ffff:ffff:ffff,CN 2001:dd8:6::,2001:dd8:6:ffff:ffff:ffff:ffff:ffff,AU 2001:dd8:7::,2001:dd8:7:ffff:ffff:ffff:ffff:ffff,NP 2001:dd8:8::,2001:dd8:f:ffff:ffff:ffff:ffff:ffff,AU 2001:dd8:10::,2001:dd8:11:ffff:ffff:ffff:ffff:ffff,NP 2001:dd8:12::,2001:dd8:12:ffff:ffff:ffff:ffff:ffff,AU 2001:dd8:13::,2001:dd8:13:ffff:ffff:ffff:ffff:ffff,NZ 2001:dd8:14::,2001:dd8:14:ffff:ffff:ffff:ffff:ffff,AU 2001:dd8:15::,2001:dd8:15:ffff:ffff:ffff:ffff:ffff,HK 2001:dd8:16::,2001:dd8:16:ffff:ffff:ffff:ffff:ffff,SG 2001:dd8:17::,2001:dd8:17:ffff:ffff:ffff:ffff:ffff,KR 2001:dd8:18::,2001:dd8:18:ffff:ffff:ffff:ffff:ffff,TW 2001:dd8:19::,2001:dd8:19:ffff:ffff:ffff:ffff:ffff,IN 2001:dd8:1a::,2001:dd8:1a:ffff:ffff:ffff:ffff:ffff,CN 2001:dd8:1b::,2001:dd8:1b:ffff:ffff:ffff:ffff:ffff,IN 2001:dd8:1c::,2001:dd8:1c:ffff:ffff:ffff:ffff:ffff,PK 2001:dd8:1d::,2001:dd8:1d:ffff:ffff:ffff:ffff:ffff,BD 2001:dd8:1e::,2001:dd8:1e:ffff:ffff:ffff:ffff:ffff,KH 2001:dd8:1f::,2001:dd8:1f:ffff:ffff:ffff:ffff:ffff,ID 2001:dd8:20::,2001:dd8:21:ffff:ffff:ffff:ffff:ffff,IN 2001:dd8:22::,2001:dd8:22:ffff:ffff:ffff:ffff:ffff,JP 2001:dd8:24::,2001:dd8:25:ffff:ffff:ffff:ffff:ffff,NP 2001:dda::,2001:dda::ffff:ffff:ffff:ffff:ffff,JP 2001:ddc::,2001:ddc::ffff:ffff:ffff:ffff:ffff,MY 2001:ddd::,2001:ddd::ffff:ffff:ffff:ffff:ffff,AU 2001:de1::,2001:de1:3f:ffff:ffff:ffff:ffff:ffff,JP 2001:de8::,2001:de8::ffff:ffff:ffff:ffff:ffff,TH 2001:de8:1::,2001:de8:1:ffff:ffff:ffff:ffff:ffff,IN 2001:de8:2::,2001:de8:2:ffff:ffff:ffff:ffff:ffff,ID 2001:de8:3::,2001:de8:3:ffff:ffff:ffff:ffff:ffff,VN 2001:de8:4::,2001:de8:7:ffff:ffff:ffff:ffff:ffff,SG 2001:de8:8::,2001:de8:8:ffff:ffff:ffff:ffff:ffff,JP 2001:de8:9::,2001:de8:9:ffff:ffff:ffff:ffff:ffff,AU 2001:de8:a::,2001:de8:a:ffff:ffff:ffff:ffff:ffff,VN 2001:de8:b::,2001:de8:b:ffff:ffff:ffff:ffff:ffff,BD 2001:de8:c::,2001:de8:c:ffff:ffff:ffff:ffff:ffff,JP 2001:de8:d::,2001:de8:d:ffff:ffff:ffff:ffff:ffff,SG 2001:de8:e::,2001:de8:e:ffff:ffff:ffff:ffff:ffff,TH 2001:de8:f::,2001:de8:10:ffff:ffff:ffff:ffff:ffff,MY 2001:de8:11::,2001:de8:11:ffff:ffff:ffff:ffff:ffff,ID 2001:de8:12::,2001:de8:12:ffff:ffff:ffff:ffff:ffff,SG 2001:de8:13::,2001:de8:13:ffff:ffff:ffff:ffff:ffff,MY 2001:de8:14::,2001:de8:14:ffff:ffff:ffff:ffff:ffff,AU 2001:de8:15::,2001:de8:15:ffff:ffff:ffff:ffff:ffff,ID 2001:de8:16::,2001:de8:16:ffff:ffff:ffff:ffff:ffff,PF 2001:de8:17::,2001:de8:17:ffff:ffff:ffff:ffff:ffff,AU 2001:de8:19::,2001:de8:19:ffff:ffff:ffff:ffff:ffff,NZ 2001:de8:1a::,2001:de8:1a:ffff:ffff:ffff:ffff:ffff,ID 2001:de8:1d::,2001:de8:1d:ffff:ffff:ffff:ffff:ffff,KH 2001:de8:1e::,2001:de8:1e:ffff:ffff:ffff:ffff:ffff,JP 2001:de8:8000::,2001:de8:8000:ffff:ffff:ffff:ffff:ffff,WS 2001:de9::,2001:de9::ffff:ffff:ffff:ffff:ffff,LK 2001:de9:8000::,2001:de9:8000:ffff:ffff:ffff:ffff:ffff,ID 2001:dea::,2001:dea::ffff:ffff:ffff:ffff:ffff,AU 2001:deb::,2001:deb::ffff:ffff:ffff:ffff:ffff,TH 2001:dec::,2001:dec::ffff:ffff:ffff:ffff:ffff,VU 2001:ded::,2001:ded::ffff:ffff:ffff:ffff:ffff,SG 2001:dee::,2001:dee::ffff:ffff:ffff:ffff:ffff,HK 2001:def::,2001:def::ffff:ffff:ffff:ffff:ffff,HK 2001:df0::,2001:df0:1:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:2::,2001:df0:2:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:4::,2001:df0:4:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:7::,2001:df0:7:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:8::,2001:df0:8:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:9::,2001:df0:a:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:c::,2001:df0:13:ffff:ffff:ffff:ffff:ffff,VN 2001:df0:14::,2001:df0:14:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:15::,2001:df0:15:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:17::,2001:df0:17:ffff:ffff:ffff:ffff:ffff,LK 2001:df0:18::,2001:df0:18:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:19::,2001:df0:1d:ffff:ffff:ffff:ffff:ffff,VN 2001:df0:1e::,2001:df0:1e:ffff:ffff:ffff:ffff:ffff,TH 2001:df0:1f::,2001:df0:1f:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:20::,2001:df0:3f:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:40::,2001:df0:40:ffff:ffff:ffff:ffff:ffff,VN 2001:df0:41::,2001:df0:41:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:42::,2001:df0:42:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:43::,2001:df0:43:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:44::,2001:df0:44:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:45::,2001:df0:46:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:48::,2001:df0:48:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:49::,2001:df0:49:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:4a::,2001:df0:4a:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:4b::,2001:df0:4d:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:4f::,2001:df0:60:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:62::,2001:df0:62:ffff:ffff:ffff:ffff:ffff,TH 2001:df0:63::,2001:df0:63:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:65::,2001:df0:65:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:66::,2001:df0:66:ffff:ffff:ffff:ffff:ffff,VN 2001:df0:68::,2001:df0:68:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:69::,2001:df0:69:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:6a::,2001:df0:6a:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:6b::,2001:df0:6b:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:6f::,2001:df0:6f:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:70::,2001:df0:70:ffff:ffff:ffff:ffff:ffff,PH 2001:df0:71::,2001:df0:71:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:73::,2001:df0:74:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:75::,2001:df0:75:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:76::,2001:df0:76:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:77::,2001:df0:77:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:78::,2001:df0:78:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:7b::,2001:df0:7c:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:7d::,2001:df0:7d:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:7e::,2001:df0:81:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:82::,2001:df0:82:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:83::,2001:df0:83:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:84::,2001:df0:84:ffff:ffff:ffff:ffff:ffff,PK 2001:df0:85::,2001:df0:85:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:86::,2001:df0:87:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:89::,2001:df0:89:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:8b::,2001:df0:8b:ffff:ffff:ffff:ffff:ffff,NP 2001:df0:8c::,2001:df0:8c:ffff:ffff:ffff:ffff:ffff,NU 2001:df0:8e::,2001:df0:90:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:91::,2001:df0:91:ffff:ffff:ffff:ffff:ffff,FJ 2001:df0:92::,2001:df0:92:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:93::,2001:df0:93:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:94::,2001:df0:94:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:95::,2001:df0:95:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:96::,2001:df0:96:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:97::,2001:df0:97:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:98::,2001:df0:9a:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:9c::,2001:df0:9c:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:9d::,2001:df0:9d:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:9e::,2001:df0:9e:ffff:ffff:ffff:ffff:ffff,TH 2001:df0:9f::,2001:df0:9f:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:a0::,2001:df0:a1:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:a2::,2001:df0:a2:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:a3::,2001:df0:a3:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:a4::,2001:df0:a4:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:a5::,2001:df0:a6:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:a7::,2001:df0:ab:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:ad::,2001:df0:ad:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:ae::,2001:df0:ae:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:b0::,2001:df0:b0:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:b1::,2001:df0:b8:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:b9::,2001:df0:b9:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:ba::,2001:df0:bd:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:be::,2001:df0:be:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:bf::,2001:df0:bf:ffff:ffff:ffff:ffff:ffff,LA 2001:df0:c0::,2001:df0:c0:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:c1::,2001:df0:c2:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:c4::,2001:df0:c4:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:c5::,2001:df0:c5:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:c6::,2001:df0:c6:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:c7::,2001:df0:c8:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:c9::,2001:df0:cc:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:cd::,2001:df0:cd:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:ce::,2001:df0:ce:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:cf::,2001:df0:cf:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:d1::,2001:df0:d1:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:d2::,2001:df0:d2:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:d4::,2001:df0:d6:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:d7::,2001:df0:d7:ffff:ffff:ffff:ffff:ffff,KR 2001:df0:d8::,2001:df0:d8:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:d9::,2001:df0:d9:ffff:ffff:ffff:ffff:ffff,TW 2001:df0:da::,2001:df0:da:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:dc::,2001:df0:dc:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:dd::,2001:df0:dd:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:de::,2001:df0:df:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:e1::,2001:df0:e1:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:e2::,2001:df0:e2:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:e3::,2001:df0:e3:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:e4::,2001:df0:e5:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:e6::,2001:df0:e6:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:e7::,2001:df0:e8:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:e9::,2001:df0:e9:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:ea::,2001:df0:ea:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:eb::,2001:df0:eb:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:ed::,2001:df0:ed:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:ee::,2001:df0:ee:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:ef::,2001:df0:f0:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:f1::,2001:df0:f1:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:f2::,2001:df0:f2:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:f3::,2001:df0:f3:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:f4::,2001:df0:f4:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:f6::,2001:df0:f6:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:f7::,2001:df0:f7:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:f8::,2001:df0:fa:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:fb::,2001:df0:fb:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:fc::,2001:df0:fc:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:fd::,2001:df0:fe:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:100::,2001:df0:1ff:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:201::,2001:df0:201:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:202::,2001:df0:202:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:203::,2001:df0:203:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:204::,2001:df0:204:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:205::,2001:df0:205:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:206::,2001:df0:206:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:207::,2001:df0:207:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:208::,2001:df0:208:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:209::,2001:df0:209:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:20a::,2001:df0:20a:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:20b::,2001:df0:20b:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:20c::,2001:df0:20c:ffff:ffff:ffff:ffff:ffff,NF 2001:df0:20d::,2001:df0:20d:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:20e::,2001:df0:20e:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:210::,2001:df0:210:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:211::,2001:df0:211:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:212::,2001:df0:212:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:213::,2001:df0:213:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:214::,2001:df0:214:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:215::,2001:df0:215:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:216::,2001:df0:217:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:218::,2001:df0:219:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:21a::,2001:df0:21a:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:21b::,2001:df0:21b:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:21c::,2001:df0:21c:ffff:ffff:ffff:ffff:ffff,PH 2001:df0:21d::,2001:df0:21d:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:21e::,2001:df0:21e:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:21f::,2001:df0:220:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:221::,2001:df0:221:ffff:ffff:ffff:ffff:ffff,VN 2001:df0:222::,2001:df0:222:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:224::,2001:df0:224:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:226::,2001:df0:228:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:229::,2001:df0:229:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:22b::,2001:df0:22b:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:22c::,2001:df0:22d:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:22e::,2001:df0:22e:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:22f::,2001:df0:22f:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:230::,2001:df0:230:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:231::,2001:df0:231:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:232::,2001:df0:232:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:233::,2001:df0:234:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:235::,2001:df0:235:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:237::,2001:df0:237:ffff:ffff:ffff:ffff:ffff,TH 2001:df0:238::,2001:df0:238:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:239::,2001:df0:239:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:23a::,2001:df0:23a:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:23b::,2001:df0:23b:ffff:ffff:ffff:ffff:ffff,PH 2001:df0:23c::,2001:df0:23d:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:23e::,2001:df0:23e:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:23f::,2001:df0:23f:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:240::,2001:df0:241:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:242::,2001:df0:242:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:243::,2001:df0:243:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:245::,2001:df0:246:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:247::,2001:df0:247:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:248::,2001:df0:248:ffff:ffff:ffff:ffff:ffff,TH 2001:df0:249::,2001:df0:24a:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:24b::,2001:df0:24b:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:24c::,2001:df0:24c:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:24e::,2001:df0:24e:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:24f::,2001:df0:24f:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:250::,2001:df0:250:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:251::,2001:df0:252:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:253::,2001:df0:253:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:254::,2001:df0:254:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:255::,2001:df0:255:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:256::,2001:df0:256:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:257::,2001:df0:257:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:258::,2001:df0:258:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:259::,2001:df0:259:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:25a::,2001:df0:25a:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:25b::,2001:df0:25b:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:25c::,2001:df0:25d:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:25e::,2001:df0:25e:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:260::,2001:df0:260:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:261::,2001:df0:261:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:262::,2001:df0:262:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:263::,2001:df0:263:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:264::,2001:df0:264:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:265::,2001:df0:265:ffff:ffff:ffff:ffff:ffff,TH 2001:df0:266::,2001:df0:266:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:267::,2001:df0:267:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:268::,2001:df0:269:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:26b::,2001:df0:26b:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:26c::,2001:df0:26c:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:26d::,2001:df0:26f:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:270::,2001:df0:270:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:271::,2001:df0:271:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:272::,2001:df0:272:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:273::,2001:df0:273:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:274::,2001:df0:277:ffff:ffff:ffff:ffff:ffff,NP 2001:df0:278::,2001:df0:278:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:279::,2001:df0:279:ffff:ffff:ffff:ffff:ffff,PK 2001:df0:27a::,2001:df0:27a:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:27b::,2001:df0:27b:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:27c::,2001:df0:27c:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:27d::,2001:df0:27d:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:27e::,2001:df0:27e:ffff:ffff:ffff:ffff:ffff,CN 2001:df0:27f::,2001:df0:27f:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:280::,2001:df0:28f:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:290::,2001:df0:290:ffff:ffff:ffff:ffff:ffff,KR 2001:df0:291::,2001:df0:291:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:292::,2001:df0:292:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:293::,2001:df0:293:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:294::,2001:df0:294:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:295::,2001:df0:296:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:298::,2001:df0:298:ffff:ffff:ffff:ffff:ffff,PH 2001:df0:299::,2001:df0:299:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:29a::,2001:df0:29a:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:29b::,2001:df0:29b:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:29c::,2001:df0:29c:ffff:ffff:ffff:ffff:ffff,VN 2001:df0:29d::,2001:df0:29d:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:29f::,2001:df0:29f:ffff:ffff:ffff:ffff:ffff,BD 2001:df0:2a0::,2001:df0:2a0:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:2a1::,2001:df0:2a1:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:2a2::,2001:df0:2a2:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:2a3::,2001:df0:2a3:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:2a4::,2001:df0:2a4:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:2a5::,2001:df0:2a5:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:2a6::,2001:df0:2a6:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:2a7::,2001:df0:2a7:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:2a8::,2001:df0:2a8:ffff:ffff:ffff:ffff:ffff,PH 2001:df0:2a9::,2001:df0:2aa:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:2ab::,2001:df0:2ab:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:2ac::,2001:df0:2ac:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:2ad::,2001:df0:2ad:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:2af::,2001:df0:2af:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:2b0::,2001:df0:2b1:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:2b2::,2001:df0:2b2:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:2b4::,2001:df0:2b4:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:2b5::,2001:df0:2b5:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:2b8::,2001:df0:2b8:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:2b9::,2001:df0:2b9:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:2ba::,2001:df0:2ba:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:2bb::,2001:df0:2bb:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:2bc::,2001:df0:2bc:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:2bd::,2001:df0:2bd:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:2be::,2001:df0:2be:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:2bf::,2001:df0:2bf:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:2c1::,2001:df0:2c1:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:2c2::,2001:df0:2c2:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:2c3::,2001:df0:2c3:ffff:ffff:ffff:ffff:ffff,BD 2001:df0:2c4::,2001:df0:2c4:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:2c5::,2001:df0:2c5:ffff:ffff:ffff:ffff:ffff,BD 2001:df0:2c6::,2001:df0:2c8:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:2c9::,2001:df0:2c9:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:2ca::,2001:df0:2ca:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:2cb::,2001:df0:2cb:ffff:ffff:ffff:ffff:ffff,PK 2001:df0:2cc::,2001:df0:2cc:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:2ce::,2001:df0:2df:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:2e1::,2001:df0:2e1:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:2e2::,2001:df0:2e2:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:2e3::,2001:df0:2e3:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:2e4::,2001:df0:2e4:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:2e5::,2001:df0:2e5:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:2e6::,2001:df0:2e7:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:2e8::,2001:df0:2e8:ffff:ffff:ffff:ffff:ffff,VN 2001:df0:2e9::,2001:df0:2e9:ffff:ffff:ffff:ffff:ffff,CN 2001:df0:2ea::,2001:df0:2ea:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:2ec::,2001:df0:2ec:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:2ed::,2001:df0:2ee:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:2ef::,2001:df0:2ef:ffff:ffff:ffff:ffff:ffff,PH 2001:df0:2f0::,2001:df0:2f3:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:2f4::,2001:df0:2f4:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:2f5::,2001:df0:2f5:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:2f6::,2001:df0:2f6:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:2f9::,2001:df0:2f9:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:2fa::,2001:df0:2fa:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:2fb::,2001:df0:2fb:ffff:ffff:ffff:ffff:ffff,TH 2001:df0:2fc::,2001:df0:2fc:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:2fd::,2001:df0:2fd:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:2fe::,2001:df0:2ff:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:300::,2001:df0:311:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:314::,2001:df0:317:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:400::,2001:df0:400:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:401::,2001:df0:401:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:402::,2001:df0:403:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:404::,2001:df0:404:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:407::,2001:df0:407:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:408::,2001:df0:408:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:409::,2001:df0:409:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:40a::,2001:df0:40a:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:40c::,2001:df0:40c:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:40d::,2001:df0:40d:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:40e::,2001:df0:40f:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:410::,2001:df0:410:ffff:ffff:ffff:ffff:ffff,VU 2001:df0:411::,2001:df0:411:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:412::,2001:df0:412:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:413::,2001:df0:413:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:415::,2001:df0:415:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:417::,2001:df0:417:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:418::,2001:df0:419:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:41a::,2001:df0:41a:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:41b::,2001:df0:41b:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:41c::,2001:df0:41c:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:41d::,2001:df0:41e:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:41f::,2001:df0:41f:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:420::,2001:df0:420:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:421::,2001:df0:421:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:422::,2001:df0:422:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:423::,2001:df0:423:ffff:ffff:ffff:ffff:ffff,CN 2001:df0:425::,2001:df0:425:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:426::,2001:df0:426:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:427::,2001:df0:427:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:430::,2001:df0:43f:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:440::,2001:df0:440:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:441::,2001:df0:441:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:442::,2001:df0:443:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:444::,2001:df0:445:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:446::,2001:df0:446:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:447::,2001:df0:447:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:448::,2001:df0:448:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:449::,2001:df0:449:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:44a::,2001:df0:44a:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:44b::,2001:df0:44b:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:44c::,2001:df0:44d:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:44e::,2001:df0:44e:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:44f::,2001:df0:44f:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:450::,2001:df0:450:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:451::,2001:df0:451:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:452::,2001:df0:452:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:453::,2001:df0:453:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:454::,2001:df0:454:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:455::,2001:df0:455:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:456::,2001:df0:456:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:457::,2001:df0:457:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:458::,2001:df0:458:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:45a::,2001:df0:45a:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:45b::,2001:df0:45b:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:45c::,2001:df0:45d:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:45e::,2001:df0:45e:ffff:ffff:ffff:ffff:ffff,BD 2001:df0:45f::,2001:df0:45f:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:460::,2001:df0:460:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:461::,2001:df0:461:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:462::,2001:df0:462:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:463::,2001:df0:463:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:464::,2001:df0:464:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:465::,2001:df0:465:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:466::,2001:df0:466:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:467::,2001:df0:467:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:468::,2001:df0:469:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:46a::,2001:df0:46a:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:46b::,2001:df0:46b:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:46c::,2001:df0:46c:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:500::,2001:df0:5ff:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:800::,2001:df0:800:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:c00::,2001:df0:c00:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:1000::,2001:df0:1000:ffff:ffff:ffff:ffff:ffff,TH 2001:df0:1400::,2001:df0:1400:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:1800::,2001:df0:1800:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:1c00::,2001:df0:1c00:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:2000::,2001:df0:2000:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:2400::,2001:df0:2400:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:2800::,2001:df0:2800:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:2c00::,2001:df0:2c00:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:3000::,2001:df0:3000:ffff:ffff:ffff:ffff:ffff,PH 2001:df0:3800::,2001:df0:3800:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:3c00::,2001:df0:3c00:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:4000::,2001:df0:4000:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:4400::,2001:df0:4400:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:4800::,2001:df0:4800:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:5000::,2001:df0:5000:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:5400::,2001:df0:5400:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:5800::,2001:df0:5800:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:5c00::,2001:df0:5c00:ffff:ffff:ffff:ffff:ffff,BD 2001:df0:6000::,2001:df0:6000:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:6400::,2001:df0:6400:ffff:ffff:ffff:ffff:ffff,SG 2001:df0:6800::,2001:df0:6800:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:7000::,2001:df0:7000:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:7400::,2001:df0:7400:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:7800::,2001:df0:7800:ffff:ffff:ffff:ffff:ffff,WS 2001:df0:7c00::,2001:df0:7c00:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:8000::,2001:df0:8000:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:8400::,2001:df0:8400:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:8800::,2001:df0:8800:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:8c00::,2001:df0:8c00:ffff:ffff:ffff:ffff:ffff,MY 2001:df0:9400::,2001:df0:9400:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:9800::,2001:df0:9800:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:9c00::,2001:df0:9c00:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:a000::,2001:df0:a000:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:a400::,2001:df0:a400:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:a800::,2001:df0:a800:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:ac00::,2001:df0:ac00:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:b000::,2001:df0:b000:ffff:ffff:ffff:ffff:ffff,NZ 2001:df0:b400::,2001:df0:b400:ffff:ffff:ffff:ffff:ffff,JP 2001:df0:b800::,2001:df0:b800:ffff:ffff:ffff:ffff:ffff,PH 2001:df0:bc00::,2001:df0:bc00:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:c000::,2001:df0:c000:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:c400::,2001:df0:c400:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:c800::,2001:df0:c800:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:cc00::,2001:df0:cc00:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:d000::,2001:df0:d000:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:d400::,2001:df0:d400:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:d800::,2001:df0:d800:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:dc00::,2001:df0:dc00:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:e400::,2001:df0:e400:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:e800::,2001:df0:e800:ffff:ffff:ffff:ffff:ffff,AU 2001:df0:ec00::,2001:df0:ec00:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:f000::,2001:df0:f000:ffff:ffff:ffff:ffff:ffff,HK 2001:df0:f400::,2001:df0:f401:ffff:ffff:ffff:ffff:ffff,IN 2001:df0:f800::,2001:df0:f800:ffff:ffff:ffff:ffff:ffff,ID 2001:df0:fc00::,2001:df0:fc01:ffff:ffff:ffff:ffff:ffff,IN 2001:df1:400::,2001:df1:400:ffff:ffff:ffff:ffff:ffff,BD 2001:df1:800::,2001:df1:801:ffff:ffff:ffff:ffff:ffff,SG 2001:df1:c00::,2001:df1:c00:ffff:ffff:ffff:ffff:ffff,IN 2001:df1:1400::,2001:df1:1400:ffff:ffff:ffff:ffff:ffff,IN 2001:df1:1800::,2001:df1:1800:ffff:ffff:ffff:ffff:ffff,AU 2001:df1:1c00::,2001:df1:1c00:ffff:ffff:ffff:ffff:ffff,IN 2001:df1:2000::,2001:df1:2000:ffff:ffff:ffff:ffff:ffff,AU 2001:df1:2400::,2001:df1:2400:ffff:ffff:ffff:ffff:ffff,PH 2001:df1:2800::,2001:df1:2800:ffff:ffff:ffff:ffff:ffff,SG 2001:df1:2c00::,2001:df1:2c00:ffff:ffff:ffff:ffff:ffff,AU 2001:df1:3000::,2001:df1:3000:ffff:ffff:ffff:ffff:ffff,AU 2001:df1:3400::,2001:df1:3400:ffff:ffff:ffff:ffff:ffff,BD 2001:df1:3800::,2001:df1:3800:ffff:ffff:ffff:ffff:ffff,NZ 2001:df1:3c00::,2001:df1:3c00:ffff:ffff:ffff:ffff:ffff,IN 2001:df1:4000::,2001:df1:4000:ffff:ffff:ffff:ffff:ffff,AU 2001:df1:4400::,2001:df1:4400:ffff:ffff:ffff:ffff:ffff,IN 2001:df1:4800::,2001:df1:4800:ffff:ffff:ffff:ffff:ffff,IN 2001:df1:4c00::,2001:df1:4c00:ffff:ffff:ffff:ffff:ffff,HK 2001:df1:5000::,2001:df1:5000:ffff:ffff:ffff:ffff:ffff,HK 2001:df1:5400::,2001:df1:5400:ffff:ffff:ffff:ffff:ffff,KR 2001:df1:5800::,2001:df1:5800:ffff:ffff:ffff:ffff:ffff,BD 2001:df1:5c00::,2001:df1:5c00:ffff:ffff:ffff:ffff:ffff,ID 2001:df1:6000::,2001:df1:6000:ffff:ffff:ffff:ffff:ffff,SG 2001:df1:6400::,2001:df1:6400:ffff:ffff:ffff:ffff:ffff,TH 2001:df1:6800::,2001:df1:6800:ffff:ffff:ffff:ffff:ffff,AU 2001:df1:6c00::,2001:df1:6c00:ffff:ffff:ffff:ffff:ffff,TH 2001:df1:7000::,2001:df1:7000:ffff:ffff:ffff:ffff:ffff,ID 2001:df1:7400::,2001:df1:7400:ffff:ffff:ffff:ffff:ffff,SG 2001:df1:7800::,2001:df1:7800:ffff:ffff:ffff:ffff:ffff,ID 2001:df1:7c00::,2001:df1:7c00:ffff:ffff:ffff:ffff:ffff,NZ 2001:df1:8000::,2001:df1:8000:ffff:ffff:ffff:ffff:ffff,IN 2001:df1:8400::,2001:df1:8400:ffff:ffff:ffff:ffff:ffff,BD 2001:df1:8800::,2001:df1:8800:ffff:ffff:ffff:ffff:ffff,AU 2001:df1:8c00::,2001:df1:8c00:ffff:ffff:ffff:ffff:ffff,AU 2001:df1:9000::,2001:df1:9000:ffff:ffff:ffff:ffff:ffff,ID 2001:df1:9400::,2001:df1:9400:ffff:ffff:ffff:ffff:ffff,HK 2001:df1:9800::,2001:df1:9800:ffff:ffff:ffff:ffff:ffff,MY 2001:df1:9c00::,2001:df1:9c00:ffff:ffff:ffff:ffff:ffff,SG 2001:df1:a000::,2001:df1:a000:ffff:ffff:ffff:ffff:ffff,IN 2001:df1:a400::,2001:df1:a400:ffff:ffff:ffff:ffff:ffff,BD 2001:df1:a800::,2001:df1:a800:ffff:ffff:ffff:ffff:ffff,SG 2001:df1:ac00::,2001:df1:ac00:ffff:ffff:ffff:ffff:ffff,HK 2001:df1:b000::,2001:df1:b000:ffff:ffff:ffff:ffff:ffff,TH 2001:df1:b400::,2001:df1:b400:ffff:ffff:ffff:ffff:ffff,AU 2001:df1:b800::,2001:df1:b800:ffff:ffff:ffff:ffff:ffff,AU 2001:df1:bc00::,2001:df1:bc00:ffff:ffff:ffff:ffff:ffff,SG 2001:df1:c400::,2001:df1:c400:ffff:ffff:ffff:ffff:ffff,AU 2001:df1:c800::,2001:df1:c800:ffff:ffff:ffff:ffff:ffff,HK 2001:df1:cc00::,2001:df1:cc00:ffff:ffff:ffff:ffff:ffff,AU 2001:df1:d000::,2001:df1:d000:ffff:ffff:ffff:ffff:ffff,AU 2001:df1:d400::,2001:df1:d401:ffff:ffff:ffff:ffff:ffff,HK 2001:df1:d800::,2001:df1:d800:ffff:ffff:ffff:ffff:ffff,AU 2001:df1:e000::,2001:df1:e000:ffff:ffff:ffff:ffff:ffff,ID 2001:df1:e400::,2001:df1:e400:ffff:ffff:ffff:ffff:ffff,ID 2001:df1:e800::,2001:df1:e800:ffff:ffff:ffff:ffff:ffff,AU 2001:df1:ec00::,2001:df1:ec00:ffff:ffff:ffff:ffff:ffff,AU 2001:df1:f000::,2001:df1:f000:ffff:ffff:ffff:ffff:ffff,ID 2001:df1:f400::,2001:df1:f400:ffff:ffff:ffff:ffff:ffff,HK 2001:df1:f800::,2001:df1:f800:ffff:ffff:ffff:ffff:ffff,BN 2001:df1:fc00::,2001:df1:fc00:ffff:ffff:ffff:ffff:ffff,MY 2001:df2::,2001:df2::ffff:ffff:ffff:ffff:ffff,AU 2001:df2:400::,2001:df2:400:ffff:ffff:ffff:ffff:ffff,TH 2001:df2:800::,2001:df2:800:ffff:ffff:ffff:ffff:ffff,AU 2001:df2:c00::,2001:df2:c00:ffff:ffff:ffff:ffff:ffff,JP 2001:df2:1000::,2001:df2:1001:ffff:ffff:ffff:ffff:ffff,IN 2001:df2:1400::,2001:df2:1400:ffff:ffff:ffff:ffff:ffff,NP 2001:df2:1800::,2001:df2:1803:ffff:ffff:ffff:ffff:ffff,IN 2001:df2:1c00::,2001:df2:1c00:ffff:ffff:ffff:ffff:ffff,IN 2001:df2:2000::,2001:df2:2000:ffff:ffff:ffff:ffff:ffff,IN 2001:df2:2400::,2001:df2:2400:ffff:ffff:ffff:ffff:ffff,ID 2001:df2:2800::,2001:df2:2800:ffff:ffff:ffff:ffff:ffff,IN 2001:df2:2c00::,2001:df2:2c00:ffff:ffff:ffff:ffff:ffff,HK 2001:df2:3000::,2001:df2:3000:ffff:ffff:ffff:ffff:ffff,SG 2001:df2:3400::,2001:df2:3400:ffff:ffff:ffff:ffff:ffff,NZ 2001:df2:3800::,2001:df2:3800:ffff:ffff:ffff:ffff:ffff,TH 2001:df2:3c00::,2001:df2:3c07:ffff:ffff:ffff:ffff:ffff,AU 2001:df2:4000::,2001:df2:4000:ffff:ffff:ffff:ffff:ffff,HK 2001:df2:4400::,2001:df2:4400:ffff:ffff:ffff:ffff:ffff,AU 2001:df2:4c00::,2001:df2:4c00:ffff:ffff:ffff:ffff:ffff,ID 2001:df2:5000::,2001:df2:5000:ffff:ffff:ffff:ffff:ffff,IN 2001:df2:5400::,2001:df2:5400:ffff:ffff:ffff:ffff:ffff,IN 2001:df2:5800::,2001:df2:5800:ffff:ffff:ffff:ffff:ffff,HK 2001:df2:5c00::,2001:df2:5c00:ffff:ffff:ffff:ffff:ffff,TH 2001:df2:6000::,2001:df2:6000:ffff:ffff:ffff:ffff:ffff,ID 2001:df2:6400::,2001:df2:6400:ffff:ffff:ffff:ffff:ffff,IN 2001:df2:6800::,2001:df2:6800:ffff:ffff:ffff:ffff:ffff,PH 2001:df2:6c00::,2001:df2:6c00:ffff:ffff:ffff:ffff:ffff,IN 2001:df2:7000::,2001:df2:7000:ffff:ffff:ffff:ffff:ffff,IN 2001:df2:7400::,2001:df2:7400:ffff:ffff:ffff:ffff:ffff,HK 2001:df2:7800::,2001:df2:7800:ffff:ffff:ffff:ffff:ffff,AU 2001:df2:7c00::,2001:df2:7c00:ffff:ffff:ffff:ffff:ffff,NZ 2001:df2:8000::,2001:df2:8000:ffff:ffff:ffff:ffff:ffff,BN 2001:df2:8400::,2001:df2:8401:ffff:ffff:ffff:ffff:ffff,NZ 2001:df2:8800::,2001:df2:8800:ffff:ffff:ffff:ffff:ffff,IN 2001:df2:8c00::,2001:df2:8c00:ffff:ffff:ffff:ffff:ffff,HK 2001:df2:9400::,2001:df2:9400:ffff:ffff:ffff:ffff:ffff,AU 2001:df2:9800::,2001:df2:9803:ffff:ffff:ffff:ffff:ffff,IN 2001:df2:a000::,2001:df2:a000:ffff:ffff:ffff:ffff:ffff,ID 2001:df2:a400::,2001:df2:a400:ffff:ffff:ffff:ffff:ffff,MY 2001:df2:a800::,2001:df2:a800:ffff:ffff:ffff:ffff:ffff,IN 2001:df2:ac00::,2001:df2:ac01:ffff:ffff:ffff:ffff:ffff,TH 2001:df2:b000::,2001:df2:b000:ffff:ffff:ffff:ffff:ffff,IN 2001:df2:b400::,2001:df2:b400:ffff:ffff:ffff:ffff:ffff,IN 2001:df2:bc00::,2001:df2:bc00:ffff:ffff:ffff:ffff:ffff,ID 2001:df2:c000::,2001:df2:c000:ffff:ffff:ffff:ffff:ffff,ID 2001:df2:c400::,2001:df2:c400:ffff:ffff:ffff:ffff:ffff,AU 2001:df2:c800::,2001:df2:c800:ffff:ffff:ffff:ffff:ffff,AU 2001:df2:cc00::,2001:df2:cc00:ffff:ffff:ffff:ffff:ffff,ID 2001:df2:d000::,2001:df2:d000:ffff:ffff:ffff:ffff:ffff,HK 2001:df2:d400::,2001:df2:d400:ffff:ffff:ffff:ffff:ffff,ID 2001:df2:d800::,2001:df2:d800:ffff:ffff:ffff:ffff:ffff,JP 2001:df2:dc00::,2001:df2:dc00:ffff:ffff:ffff:ffff:ffff,TH 2001:df2:e400::,2001:df2:e400:ffff:ffff:ffff:ffff:ffff,PH 2001:df2:e800::,2001:df2:e800:ffff:ffff:ffff:ffff:ffff,IN 2001:df2:ec00::,2001:df2:ec00:ffff:ffff:ffff:ffff:ffff,ID 2001:df2:f000::,2001:df2:f000:ffff:ffff:ffff:ffff:ffff,VN 2001:df2:f400::,2001:df2:f400:ffff:ffff:ffff:ffff:ffff,HK 2001:df2:f800::,2001:df2:f800:ffff:ffff:ffff:ffff:ffff,IN 2001:df2:fc00::,2001:df2:fc00:ffff:ffff:ffff:ffff:ffff,JP 2001:df3::,2001:df3::ffff:ffff:ffff:ffff:ffff,MY 2001:df3:400::,2001:df3:400:ffff:ffff:ffff:ffff:ffff,ID 2001:df3:800::,2001:df3:80f:ffff:ffff:ffff:ffff:ffff,CN 2001:df3:c00::,2001:df3:c00:ffff:ffff:ffff:ffff:ffff,ID 2001:df3:1000::,2001:df3:1000:ffff:ffff:ffff:ffff:ffff,BD 2001:df3:1400::,2001:df3:1400:ffff:ffff:ffff:ffff:ffff,AU 2001:df3:1800::,2001:df3:1800:ffff:ffff:ffff:ffff:ffff,ID 2001:df3:1c00::,2001:df3:1c00:ffff:ffff:ffff:ffff:ffff,AU 2001:df3:2000::,2001:df3:2000:ffff:ffff:ffff:ffff:ffff,ID 2001:df3:2400::,2001:df3:2400:ffff:ffff:ffff:ffff:ffff,TH 2001:df3:2800::,2001:df3:2800:ffff:ffff:ffff:ffff:ffff,IN 2001:df3:2c00::,2001:df3:2c00:ffff:ffff:ffff:ffff:ffff,MY 2001:df3:3000::,2001:df3:3000:ffff:ffff:ffff:ffff:ffff,IN 2001:df3:3400::,2001:df3:3400:ffff:ffff:ffff:ffff:ffff,BD 2001:df3:3800::,2001:df3:3800:ffff:ffff:ffff:ffff:ffff,ID 2001:df3:3c00::,2001:df3:3c00:ffff:ffff:ffff:ffff:ffff,IN 2001:df3:4000::,2001:df3:4000:ffff:ffff:ffff:ffff:ffff,NZ 2001:df3:4400::,2001:df3:4400:ffff:ffff:ffff:ffff:ffff,IN 2001:df3:4800::,2001:df3:4800:ffff:ffff:ffff:ffff:ffff,IN 2001:df3:4c00::,2001:df3:4c00:ffff:ffff:ffff:ffff:ffff,PG 2001:df3:5000::,2001:df3:5000:ffff:ffff:ffff:ffff:ffff,IN 2001:df3:5400::,2001:df3:5400:ffff:ffff:ffff:ffff:ffff,AU 2001:df3:5800::,2001:df3:5800:ffff:ffff:ffff:ffff:ffff,AU 2001:df3:5c00::,2001:df3:5c00:ffff:ffff:ffff:ffff:ffff,VN 2001:df3:6000::,2001:df3:6000:ffff:ffff:ffff:ffff:ffff,SG 2001:df3:6400::,2001:df3:6400:ffff:ffff:ffff:ffff:ffff,NZ 2001:df3:6800::,2001:df3:6800:ffff:ffff:ffff:ffff:ffff,AU 2001:df3:6c00::,2001:df3:6c00:ffff:ffff:ffff:ffff:ffff,IN 2001:df3:7000::,2001:df3:7000:ffff:ffff:ffff:ffff:ffff,ID 2001:df3:7400::,2001:df3:7400:ffff:ffff:ffff:ffff:ffff,SG 2001:df3:7800::,2001:df3:7800:ffff:ffff:ffff:ffff:ffff,SG 2001:df3:7c00::,2001:df3:7c00:ffff:ffff:ffff:ffff:ffff,MY 2001:df3:8000::,2001:df3:8000:ffff:ffff:ffff:ffff:ffff,ID 2001:df3:8400::,2001:df3:8400:ffff:ffff:ffff:ffff:ffff,HK 2001:df3:8800::,2001:df3:8800:ffff:ffff:ffff:ffff:ffff,IN 2001:df3:9400::,2001:df3:9400:ffff:ffff:ffff:ffff:ffff,AU 2001:df3:9c00::,2001:df3:9c00:ffff:ffff:ffff:ffff:ffff,HK 2001:df3:a000::,2001:df3:a003:ffff:ffff:ffff:ffff:ffff,PH 2001:df3:a400::,2001:df3:a400:ffff:ffff:ffff:ffff:ffff,HK 2001:df3:a800::,2001:df3:a800:ffff:ffff:ffff:ffff:ffff,MY 2001:df3:ac00::,2001:df3:ac00:ffff:ffff:ffff:ffff:ffff,TH 2001:df3:b000::,2001:df3:b000:ffff:ffff:ffff:ffff:ffff,TH 2001:df3:b400::,2001:df3:b400:ffff:ffff:ffff:ffff:ffff,AU 2001:df3:b800::,2001:df3:b800:ffff:ffff:ffff:ffff:ffff,IN 2001:df3:bc00::,2001:df3:bc00:ffff:ffff:ffff:ffff:ffff,JP 2001:df3:c000::,2001:df3:c000:ffff:ffff:ffff:ffff:ffff,ID 2001:df3:c400::,2001:df3:c400:ffff:ffff:ffff:ffff:ffff,AU 2001:df3:c800::,2001:df3:c800:ffff:ffff:ffff:ffff:ffff,IN 2001:df3:cc00::,2001:df3:cc00:ffff:ffff:ffff:ffff:ffff,IN 2001:df3:d000::,2001:df3:d000:ffff:ffff:ffff:ffff:ffff,AU 2001:df3:d400::,2001:df3:d400:ffff:ffff:ffff:ffff:ffff,AU 2001:df3:d800::,2001:df3:d800:ffff:ffff:ffff:ffff:ffff,SG 2001:df3:dc00::,2001:df3:dc00:ffff:ffff:ffff:ffff:ffff,ID 2001:df3:e000::,2001:df3:e000:ffff:ffff:ffff:ffff:ffff,NZ 2001:df3:e400::,2001:df3:e400:ffff:ffff:ffff:ffff:ffff,IN 2001:df3:e800::,2001:df3:e800:ffff:ffff:ffff:ffff:ffff,IN 2001:df3:ec00::,2001:df3:ec00:ffff:ffff:ffff:ffff:ffff,IN 2001:df3:f000::,2001:df3:f000:ffff:ffff:ffff:ffff:ffff,ID 2001:df3:f400::,2001:df3:f400:ffff:ffff:ffff:ffff:ffff,IN 2001:df3:f800::,2001:df3:f800:ffff:ffff:ffff:ffff:ffff,IN 2001:df3:fc00::,2001:df3:fc00:ffff:ffff:ffff:ffff:ffff,HK 2001:df4::,2001:df4::ffff:ffff:ffff:ffff:ffff,MY 2001:df4:400::,2001:df4:400:ffff:ffff:ffff:ffff:ffff,ID 2001:df4:800::,2001:df4:800:ffff:ffff:ffff:ffff:ffff,AU 2001:df4:c00::,2001:df4:c00:ffff:ffff:ffff:ffff:ffff,IN 2001:df4:1000::,2001:df4:1000:ffff:ffff:ffff:ffff:ffff,HK 2001:df4:1400::,2001:df4:1400:ffff:ffff:ffff:ffff:ffff,AU 2001:df4:1800::,2001:df4:1800:ffff:ffff:ffff:ffff:ffff,IN 2001:df4:1c00::,2001:df4:1c00:ffff:ffff:ffff:ffff:ffff,AU 2001:df4:2000::,2001:df4:2000:ffff:ffff:ffff:ffff:ffff,TH 2001:df4:2400::,2001:df4:2400:ffff:ffff:ffff:ffff:ffff,AU 2001:df4:2800::,2001:df4:2800:ffff:ffff:ffff:ffff:ffff,HK 2001:df4:2c00::,2001:df4:2c00:ffff:ffff:ffff:ffff:ffff,IN 2001:df4:3000::,2001:df4:3000:ffff:ffff:ffff:ffff:ffff,TH 2001:df4:3400::,2001:df4:3400:ffff:ffff:ffff:ffff:ffff,AU 2001:df4:3800::,2001:df4:3800:ffff:ffff:ffff:ffff:ffff,BD 2001:df4:3c00::,2001:df4:3c00:ffff:ffff:ffff:ffff:ffff,BD 2001:df4:4000::,2001:df4:400f:ffff:ffff:ffff:ffff:ffff,SG 2001:df4:4400::,2001:df4:4400:ffff:ffff:ffff:ffff:ffff,ID 2001:df4:4800::,2001:df4:4800:ffff:ffff:ffff:ffff:ffff,AU 2001:df4:4c00::,2001:df4:4c00:ffff:ffff:ffff:ffff:ffff,MY 2001:df4:5000::,2001:df4:5000:ffff:ffff:ffff:ffff:ffff,ID 2001:df4:5400::,2001:df4:5400:ffff:ffff:ffff:ffff:ffff,ID 2001:df4:5800::,2001:df4:5800:ffff:ffff:ffff:ffff:ffff,AU 2001:df4:5c00::,2001:df4:5c00:ffff:ffff:ffff:ffff:ffff,IN 2001:df4:6000::,2001:df4:6000:ffff:ffff:ffff:ffff:ffff,MY 2001:df4:6400::,2001:df4:6400:ffff:ffff:ffff:ffff:ffff,LA 2001:df4:6800::,2001:df4:6800:ffff:ffff:ffff:ffff:ffff,SG 2001:df4:6c00::,2001:df4:6c00:ffff:ffff:ffff:ffff:ffff,ID 2001:df4:7000::,2001:df4:7000:ffff:ffff:ffff:ffff:ffff,HK 2001:df4:7400::,2001:df4:7400:ffff:ffff:ffff:ffff:ffff,IN 2001:df4:7800::,2001:df4:7800:ffff:ffff:ffff:ffff:ffff,IN 2001:df4:7c00::,2001:df4:7c00:ffff:ffff:ffff:ffff:ffff,AU 2001:df4:8000::,2001:df4:8000:ffff:ffff:ffff:ffff:ffff,MY 2001:df4:8400::,2001:df4:8400:ffff:ffff:ffff:ffff:ffff,IN 2001:df4:8800::,2001:df4:8800:ffff:ffff:ffff:ffff:ffff,HK 2001:df4:8c00::,2001:df4:8c00:ffff:ffff:ffff:ffff:ffff,HK 2001:df4:9000::,2001:df4:9000:ffff:ffff:ffff:ffff:ffff,SG 2001:df4:9400::,2001:df4:9400:ffff:ffff:ffff:ffff:ffff,AU 2001:df4:9800::,2001:df4:9800:ffff:ffff:ffff:ffff:ffff,ID 2001:df4:9c00::,2001:df4:9c00:ffff:ffff:ffff:ffff:ffff,AU 2001:df4:a000::,2001:df4:a000:ffff:ffff:ffff:ffff:ffff,NZ 2001:df4:a400::,2001:df4:a400:ffff:ffff:ffff:ffff:ffff,AU 2001:df4:a800::,2001:df4:a800:ffff:ffff:ffff:ffff:ffff,ID 2001:df4:ac00::,2001:df4:ac00:ffff:ffff:ffff:ffff:ffff,AU 2001:df4:b000::,2001:df4:b000:ffff:ffff:ffff:ffff:ffff,IN 2001:df4:b400::,2001:df4:b400:ffff:ffff:ffff:ffff:ffff,JP 2001:df4:b800::,2001:df4:b800:ffff:ffff:ffff:ffff:ffff,AU 2001:df4:bc00::,2001:df4:bc00:ffff:ffff:ffff:ffff:ffff,IN 2001:df4:c000::,2001:df4:c000:ffff:ffff:ffff:ffff:ffff,ID 2001:df4:c400::,2001:df4:c400:ffff:ffff:ffff:ffff:ffff,VN 2001:df4:c800::,2001:df4:c800:ffff:ffff:ffff:ffff:ffff,SG 2001:df4:cc00::,2001:df4:cc00:ffff:ffff:ffff:ffff:ffff,IN 2001:df4:d000::,2001:df4:d000:ffff:ffff:ffff:ffff:ffff,IN 2001:df4:d400::,2001:df4:d400:ffff:ffff:ffff:ffff:ffff,IN 2001:df4:d800::,2001:df4:d800:ffff:ffff:ffff:ffff:ffff,VN 2001:df4:dc00::,2001:df4:dc00:ffff:ffff:ffff:ffff:ffff,KH 2001:df4:e000::,2001:df4:e000:ffff:ffff:ffff:ffff:ffff,IN 2001:df4:e400::,2001:df4:e400:ffff:ffff:ffff:ffff:ffff,AU 2001:df4:e800::,2001:df4:e800:ffff:ffff:ffff:ffff:ffff,MN 2001:df4:ec00::,2001:df4:ec00:ffff:ffff:ffff:ffff:ffff,AU 2001:df4:f000::,2001:df4:f000:ffff:ffff:ffff:ffff:ffff,IN 2001:df4:f400::,2001:df4:f400:ffff:ffff:ffff:ffff:ffff,BD 2001:df4:f800::,2001:df4:f800:ffff:ffff:ffff:ffff:ffff,AU 2001:df4:fc00::,2001:df4:fc00:ffff:ffff:ffff:ffff:ffff,NZ 2001:df5::,2001:df5::ffff:ffff:ffff:ffff:ffff,AU 2001:df5:400::,2001:df5:400:ffff:ffff:ffff:ffff:ffff,HK 2001:df5:800::,2001:df5:800:ffff:ffff:ffff:ffff:ffff,HK 2001:df5:c00::,2001:df5:c00:ffff:ffff:ffff:ffff:ffff,NZ 2001:df5:1000::,2001:df5:1000:ffff:ffff:ffff:ffff:ffff,NZ 2001:df5:1400::,2001:df5:1400:ffff:ffff:ffff:ffff:ffff,IN 2001:df5:1800::,2001:df5:1800:ffff:ffff:ffff:ffff:ffff,ID 2001:df5:1c00::,2001:df5:1c00:ffff:ffff:ffff:ffff:ffff,ID 2001:df5:2000::,2001:df5:2000:ffff:ffff:ffff:ffff:ffff,NZ 2001:df5:2400::,2001:df5:2400:ffff:ffff:ffff:ffff:ffff,NZ 2001:df5:2800::,2001:df5:2800:ffff:ffff:ffff:ffff:ffff,IN 2001:df5:2c00::,2001:df5:2c00:ffff:ffff:ffff:ffff:ffff,JP 2001:df5:3000::,2001:df5:3000:ffff:ffff:ffff:ffff:ffff,AU 2001:df5:3400::,2001:df5:3400:ffff:ffff:ffff:ffff:ffff,ID 2001:df5:3800::,2001:df5:3800:ffff:ffff:ffff:ffff:ffff,IN 2001:df5:3c00::,2001:df5:3c00:ffff:ffff:ffff:ffff:ffff,AU 2001:df5:4000::,2001:df5:4000:ffff:ffff:ffff:ffff:ffff,ID 2001:df5:4400::,2001:df5:4400:ffff:ffff:ffff:ffff:ffff,PH 2001:df5:4800::,2001:df5:4800:ffff:ffff:ffff:ffff:ffff,BN 2001:df5:4c00::,2001:df5:4c01:ffff:ffff:ffff:ffff:ffff,IN 2001:df5:5800::,2001:df5:5800:ffff:ffff:ffff:ffff:ffff,AU 2001:df5:5c00::,2001:df5:5c00:ffff:ffff:ffff:ffff:ffff,TH 2001:df5:6000::,2001:df5:6000:ffff:ffff:ffff:ffff:ffff,NZ 2001:df5:6400::,2001:df5:6400:ffff:ffff:ffff:ffff:ffff,JP 2001:df5:6800::,2001:df5:6800:ffff:ffff:ffff:ffff:ffff,KR 2001:df5:6c00::,2001:df5:6c00:ffff:ffff:ffff:ffff:ffff,IN 2001:df5:7000::,2001:df5:7000:ffff:ffff:ffff:ffff:ffff,ID 2001:df5:7400::,2001:df5:7400:ffff:ffff:ffff:ffff:ffff,ID 2001:df5:7800::,2001:df5:7800:ffff:ffff:ffff:ffff:ffff,CN 2001:df5:7c00::,2001:df5:7c00:ffff:ffff:ffff:ffff:ffff,IN 2001:df5:8000::,2001:df5:8000:ffff:ffff:ffff:ffff:ffff,SG 2001:df5:8400::,2001:df5:8400:ffff:ffff:ffff:ffff:ffff,SG 2001:df5:8800::,2001:df5:8800:ffff:ffff:ffff:ffff:ffff,IN 2001:df5:8c00::,2001:df5:8c00:ffff:ffff:ffff:ffff:ffff,AU 2001:df5:9000::,2001:df5:9000:ffff:ffff:ffff:ffff:ffff,IN 2001:df5:9400::,2001:df5:9400:ffff:ffff:ffff:ffff:ffff,CN 2001:df5:9800::,2001:df5:9800:ffff:ffff:ffff:ffff:ffff,SG 2001:df5:9c00::,2001:df5:9c00:ffff:ffff:ffff:ffff:ffff,ID 2001:df5:a000::,2001:df5:a000:ffff:ffff:ffff:ffff:ffff,ID 2001:df5:a400::,2001:df5:a400:ffff:ffff:ffff:ffff:ffff,IN 2001:df5:a800::,2001:df5:a800:ffff:ffff:ffff:ffff:ffff,AU 2001:df5:ac00::,2001:df5:ac00:ffff:ffff:ffff:ffff:ffff,IN 2001:df5:b000::,2001:df5:b000:ffff:ffff:ffff:ffff:ffff,NZ 2001:df5:b400::,2001:df5:b400:ffff:ffff:ffff:ffff:ffff,ID 2001:df5:b800::,2001:df5:b800:ffff:ffff:ffff:ffff:ffff,HK 2001:df5:bc00::,2001:df5:bc00:ffff:ffff:ffff:ffff:ffff,AU 2001:df5:c400::,2001:df5:c400:ffff:ffff:ffff:ffff:ffff,TH 2001:df5:c800::,2001:df5:c800:ffff:ffff:ffff:ffff:ffff,AU 2001:df5:cc00::,2001:df5:cc00:ffff:ffff:ffff:ffff:ffff,AU 2001:df5:d000::,2001:df5:d000:ffff:ffff:ffff:ffff:ffff,ID 2001:df5:d400::,2001:df5:d400:ffff:ffff:ffff:ffff:ffff,HK 2001:df5:d401::,2001:df5:d401:ffff:ffff:ffff:ffff:ffff,JP 2001:df5:d800::,2001:df5:d800:ffff:ffff:ffff:ffff:ffff,SG 2001:df5:dc00::,2001:df5:dc00:ffff:ffff:ffff:ffff:ffff,SG 2001:df5:e000::,2001:df5:e000:ffff:ffff:ffff:ffff:ffff,MY 2001:df5:e800::,2001:df5:e800:ffff:ffff:ffff:ffff:ffff,PH 2001:df5:ec00::,2001:df5:ec00:ffff:ffff:ffff:ffff:ffff,ID 2001:df5:f000::,2001:df5:f000:ffff:ffff:ffff:ffff:ffff,ID 2001:df5:f400::,2001:df5:f401:ffff:ffff:ffff:ffff:ffff,AU 2001:df5:f800::,2001:df5:f800:ffff:ffff:ffff:ffff:ffff,SG 2001:df5:fc00::,2001:df5:fc00:ffff:ffff:ffff:ffff:ffff,IN 2001:df6::,2001:df6:1:ffff:ffff:ffff:ffff:ffff,IN 2001:df6:400::,2001:df6:400:ffff:ffff:ffff:ffff:ffff,HK 2001:df6:800::,2001:df6:80f:ffff:ffff:ffff:ffff:ffff,HK 2001:df6:c00::,2001:df6:c00:ffff:ffff:ffff:ffff:ffff,TH 2001:df6:1000::,2001:df6:1000:ffff:ffff:ffff:ffff:ffff,PH 2001:df6:1400::,2001:df6:1400:ffff:ffff:ffff:ffff:ffff,AU 2001:df6:1800::,2001:df6:1800:ffff:ffff:ffff:ffff:ffff,ID 2001:df6:1c00::,2001:df6:1c00:ffff:ffff:ffff:ffff:ffff,CN 2001:df6:2000::,2001:df6:2001:ffff:ffff:ffff:ffff:ffff,HK 2001:df6:2400::,2001:df6:2400:ffff:ffff:ffff:ffff:ffff,AU 2001:df6:2800::,2001:df6:2800:ffff:ffff:ffff:ffff:ffff,IN 2001:df6:2c00::,2001:df6:2c00:ffff:ffff:ffff:ffff:ffff,VN 2001:df6:3000::,2001:df6:3000:ffff:ffff:ffff:ffff:ffff,NZ 2001:df6:3400::,2001:df6:3400:ffff:ffff:ffff:ffff:ffff,VN 2001:df6:3800::,2001:df6:3800:ffff:ffff:ffff:ffff:ffff,NZ 2001:df6:3c00::,2001:df6:3c00:ffff:ffff:ffff:ffff:ffff,PK 2001:df6:4000::,2001:df6:4001:ffff:ffff:ffff:ffff:ffff,AU 2001:df6:4400::,2001:df6:4400:ffff:ffff:ffff:ffff:ffff,IN 2001:df6:4800::,2001:df6:4801:ffff:ffff:ffff:ffff:ffff,NZ 2001:df6:4c00::,2001:df6:4c00:ffff:ffff:ffff:ffff:ffff,IN 2001:df6:5000::,2001:df6:5000:ffff:ffff:ffff:ffff:ffff,AU 2001:df6:5400::,2001:df6:5400:ffff:ffff:ffff:ffff:ffff,TH 2001:df6:5800::,2001:df6:5800:ffff:ffff:ffff:ffff:ffff,IN 2001:df6:5c00::,2001:df6:5c00:ffff:ffff:ffff:ffff:ffff,TH 2001:df6:6000::,2001:df6:6000:ffff:ffff:ffff:ffff:ffff,JP 2001:df6:6400::,2001:df6:6400:ffff:ffff:ffff:ffff:ffff,SG 2001:df6:6800::,2001:df6:6800:ffff:ffff:ffff:ffff:ffff,CN 2001:df6:6c00::,2001:df6:6c00:ffff:ffff:ffff:ffff:ffff,IN 2001:df6:7000::,2001:df6:7000:ffff:ffff:ffff:ffff:ffff,VN 2001:df6:7400::,2001:df6:7400:ffff:ffff:ffff:ffff:ffff,TH 2001:df6:7800::,2001:df6:7800:ffff:ffff:ffff:ffff:ffff,HK 2001:df6:7c00::,2001:df6:7c00:ffff:ffff:ffff:ffff:ffff,AU 2001:df6:8000::,2001:df6:8000:ffff:ffff:ffff:ffff:ffff,JP 2001:df6:8400::,2001:df6:8400:ffff:ffff:ffff:ffff:ffff,AU 2001:df6:8800::,2001:df6:8800:ffff:ffff:ffff:ffff:ffff,AU 2001:df6:8c00::,2001:df6:8c00:ffff:ffff:ffff:ffff:ffff,TH 2001:df6:9000::,2001:df6:9000:ffff:ffff:ffff:ffff:ffff,AU 2001:df6:9400::,2001:df6:9400:ffff:ffff:ffff:ffff:ffff,IN 2001:df6:9800::,2001:df6:9800:ffff:ffff:ffff:ffff:ffff,AU 2001:df6:9c00::,2001:df6:9c00:ffff:ffff:ffff:ffff:ffff,TH 2001:df6:a000::,2001:df6:a000:ffff:ffff:ffff:ffff:ffff,JP 2001:df6:a400::,2001:df6:a400:ffff:ffff:ffff:ffff:ffff,SG 2001:df6:a800::,2001:df6:a800:ffff:ffff:ffff:ffff:ffff,IN 2001:df6:ac00::,2001:df6:ac00:ffff:ffff:ffff:ffff:ffff,ID 2001:df6:b000::,2001:df6:b000:ffff:ffff:ffff:ffff:ffff,TH 2001:df6:b400::,2001:df6:b400:ffff:ffff:ffff:ffff:ffff,MY 2001:df6:b800::,2001:df6:b800:ffff:ffff:ffff:ffff:ffff,SG 2001:df6:bc00::,2001:df6:bc00:ffff:ffff:ffff:ffff:ffff,HK 2001:df6:c400::,2001:df6:c400:ffff:ffff:ffff:ffff:ffff,AU 2001:df6:c800::,2001:df6:c800:ffff:ffff:ffff:ffff:ffff,IN 2001:df6:cc00::,2001:df6:cc00:ffff:ffff:ffff:ffff:ffff,ID 2001:df6:d000::,2001:df6:d000:ffff:ffff:ffff:ffff:ffff,HK 2001:df6:d400::,2001:df6:d400:ffff:ffff:ffff:ffff:ffff,IN 2001:df6:d800::,2001:df6:d800:ffff:ffff:ffff:ffff:ffff,BD 2001:df6:dc00::,2001:df6:dc00:ffff:ffff:ffff:ffff:ffff,ID 2001:df6:e400::,2001:df6:e400:ffff:ffff:ffff:ffff:ffff,IN 2001:df6:e800::,2001:df6:e800:ffff:ffff:ffff:ffff:ffff,IN 2001:df6:ec00::,2001:df6:ec00:ffff:ffff:ffff:ffff:ffff,ID 2001:df6:f000::,2001:df6:f000:ffff:ffff:ffff:ffff:ffff,HK 2001:df6:f400::,2001:df6:f400:ffff:ffff:ffff:ffff:ffff,CN 2001:df6:f800::,2001:df6:f800:ffff:ffff:ffff:ffff:ffff,AU 2001:df6:fc00::,2001:df6:fc00:ffff:ffff:ffff:ffff:ffff,AU 2001:df7::,2001:df7::ffff:ffff:ffff:ffff:ffff,IN 2001:df7:400::,2001:df7:400:ffff:ffff:ffff:ffff:ffff,HK 2001:df7:800::,2001:df7:800:ffff:ffff:ffff:ffff:ffff,IN 2001:df7:c00::,2001:df7:c00:ffff:ffff:ffff:ffff:ffff,TW 2001:df7:1000::,2001:df7:1000:ffff:ffff:ffff:ffff:ffff,IN 2001:df7:1400::,2001:df7:1400:ffff:ffff:ffff:ffff:ffff,AU 2001:df7:1800::,2001:df7:1800:ffff:ffff:ffff:ffff:ffff,AU 2001:df7:1c00::,2001:df7:1c00:ffff:ffff:ffff:ffff:ffff,ID 2001:df7:2000::,2001:df7:2000:ffff:ffff:ffff:ffff:ffff,AU 2001:df7:2400::,2001:df7:2400:ffff:ffff:ffff:ffff:ffff,AU 2001:df7:2800::,2001:df7:2800:ffff:ffff:ffff:ffff:ffff,AU 2001:df7:2c00::,2001:df7:2c00:ffff:ffff:ffff:ffff:ffff,IN 2001:df7:3000::,2001:df7:3001:ffff:ffff:ffff:ffff:ffff,NZ 2001:df7:3400::,2001:df7:3400:ffff:ffff:ffff:ffff:ffff,ID 2001:df7:3800::,2001:df7:3800:ffff:ffff:ffff:ffff:ffff,AU 2001:df7:3c00::,2001:df7:3c00:ffff:ffff:ffff:ffff:ffff,ID 2001:df7:4000::,2001:df7:4000:ffff:ffff:ffff:ffff:ffff,SG 2001:df7:4400::,2001:df7:4400:ffff:ffff:ffff:ffff:ffff,IN 2001:df7:4800::,2001:df7:481f:ffff:ffff:ffff:ffff:ffff,JP 2001:df7:4c00::,2001:df7:4c00:ffff:ffff:ffff:ffff:ffff,IN 2001:df7:5000::,2001:df7:5000:ffff:ffff:ffff:ffff:ffff,IN 2001:df7:5400::,2001:df7:5400:ffff:ffff:ffff:ffff:ffff,ID 2001:df7:5800::,2001:df7:5800:ffff:ffff:ffff:ffff:ffff,AU 2001:df7:5c00::,2001:df7:5c00:ffff:ffff:ffff:ffff:ffff,HK 2001:df7:6000::,2001:df7:6000:ffff:ffff:ffff:ffff:ffff,IN 2001:df7:6400::,2001:df7:6400:ffff:ffff:ffff:ffff:ffff,MY 2001:df7:6800::,2001:df7:6800:ffff:ffff:ffff:ffff:ffff,IN 2001:df7:6c00::,2001:df7:6c00:ffff:ffff:ffff:ffff:ffff,ID 2001:df7:7000::,2001:df7:7000:ffff:ffff:ffff:ffff:ffff,HK 2001:df7:7400::,2001:df7:7400:ffff:ffff:ffff:ffff:ffff,ID 2001:df7:7800::,2001:df7:7800:ffff:ffff:ffff:ffff:ffff,JP 2001:df7:7c00::,2001:df7:7c00:ffff:ffff:ffff:ffff:ffff,TH 2001:df7:8400::,2001:df7:8401:ffff:ffff:ffff:ffff:ffff,IN 2001:df7:8800::,2001:df7:8800:ffff:ffff:ffff:ffff:ffff,ID 2001:df7:8c00::,2001:df7:8c00:ffff:ffff:ffff:ffff:ffff,MM 2001:df7:9400::,2001:df7:9400:ffff:ffff:ffff:ffff:ffff,HK 2001:df7:9800::,2001:df7:9800:ffff:ffff:ffff:ffff:ffff,NZ 2001:df7:9c00::,2001:df7:9c00:ffff:ffff:ffff:ffff:ffff,AU 2001:df7:a000::,2001:df7:a000:ffff:ffff:ffff:ffff:ffff,AU 2001:df7:a400::,2001:df7:a400:ffff:ffff:ffff:ffff:ffff,SG 2001:df7:a800::,2001:df7:a800:ffff:ffff:ffff:ffff:ffff,JP 2001:df7:ac00::,2001:df7:ac00:ffff:ffff:ffff:ffff:ffff,AU 2001:df7:b000::,2001:df7:b000:ffff:ffff:ffff:ffff:ffff,IN 2001:df7:b400::,2001:df7:b400:ffff:ffff:ffff:ffff:ffff,ID 2001:df7:b800::,2001:df7:b800:ffff:ffff:ffff:ffff:ffff,SG 2001:df7:c000::,2001:df7:c003:ffff:ffff:ffff:ffff:ffff,SG 2001:df7:c800::,2001:df7:c800:ffff:ffff:ffff:ffff:ffff,IN 2001:df7:d000::,2001:df7:d000:ffff:ffff:ffff:ffff:ffff,BD 2001:df7:d800::,2001:df7:d800:ffff:ffff:ffff:ffff:ffff,AU 2001:df7:e000::,2001:df7:e000:ffff:ffff:ffff:ffff:ffff,IN 2001:df7:e800::,2001:df7:e800:ffff:ffff:ffff:ffff:ffff,AU 2001:df7:f000::,2001:df7:f000:ffff:ffff:ffff:ffff:ffff,JP 2001:df7:f800::,2001:df7:f800:ffff:ffff:ffff:ffff:ffff,IN 2001:df8::,2001:df8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:df9::,2001:df9:ffff:ffff:ffff:ffff:ffff:ffff,ID 2001:dfa::,2001:dfa:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:e00::,2001:e01:ffff:ffff:ffff:ffff:ffff:ffff,ID 2001:e08::,2001:e08:ffff:ffff:ffff:ffff:ffff:ffff,CN 2001:e10::,2001:e10:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:e18::,2001:e18:ffff:ffff:ffff:ffff:ffff:ffff,CN 2001:e20::,2001:e20:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2001:e28::,2001:e28:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:e30::,2001:e30:ffff:ffff:ffff:ffff:ffff:ffff,IN 2001:e38::,2001:e38:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:e40::,2001:e47:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:e48::,2001:e48:ffff:ffff:ffff:ffff:ffff:ffff,IN 2001:e58::,2001:e58:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:e60::,2001:e60:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:e68::,2001:e68:ffff:ffff:ffff:ffff:ffff:ffff,MY 2001:e70::,2001:e70:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:e78::,2001:e78:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:e80::,2001:e80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2001:e88::,2001:e88:ffff:ffff:ffff:ffff:ffff:ffff,CN 2001:e90::,2001:e90:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:e98::,2001:e98:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:ea0::,2001:ea0:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:ea8::,2001:ea8:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:eb0::,2001:eb0:ffff:ffff:ffff:ffff:ffff:ffff,HK 2001:eb8::,2001:eb8:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:ec0::,2001:ec0:ffff:ffff:ffff:ffff:ffff:ffff,TH 2001:ec8::,2001:ec8:ffff:ffff:ffff:ffff:ffff:ffff,PH 2001:ed0::,2001:ed0:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:ed8::,2001:ed8:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:ee0::,2001:ee0:ffff:ffff:ffff:ffff:ffff:ffff,VN 2001:ee8::,2001:ee8:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:ef0::,2001:ef0:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:ef8::,2001:ef8:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:f00::,2001:f00:ffff:ffff:ffff:ffff:ffff:ffff,TH 2001:f08::,2001:f08:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:f10::,2001:f10:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:f18::,2001:f18:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:f20::,2001:f20:ffff:ffff:ffff:ffff:ffff:ffff,ID 2001:f28::,2001:f28:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:f30::,2001:f30:ffff:ffff:ffff:ffff:ffff:ffff,IN 2001:f38::,2001:f38:ffff:ffff:ffff:ffff:ffff:ffff,CN 2001:f40::,2001:f40:ffff:ffff:ffff:ffff:ffff:ffff,MY 2001:f48::,2001:f48:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:f50::,2001:f50:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2001:f58::,2001:f58:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:f60::,2001:f6f:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:f80::,2001:f80:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:f88::,2001:f88:ffff:ffff:ffff:ffff:ffff:ffff,CN 2001:f90::,2001:f90:ffff:ffff:ffff:ffff:ffff:ffff,MO 2001:f98::,2001:f98:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:fa0::,2001:fa0:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:fa8::,2001:fa8:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:fb0::,2001:fb1:ffff:ffff:ffff:ffff:ffff:ffff,TH 2001:fc0::,2001:fc0:ffff:ffff:ffff:ffff:ffff:ffff,SG 2001:fc8::,2001:fc8:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:fd0::,2001:fd0:ffff:ffff:ffff:ffff:ffff:ffff,IN 2001:fd8::,2001:fd8:ffff:ffff:ffff:ffff:ffff:ffff,PH 2001:fe0::,2001:fe0:ffff:ffff:ffff:ffff:ffff:ffff,PH 2001:fe8::,2001:fe8:ffff:ffff:ffff:ffff:ffff:ffff,PK 2001:ff0::,2001:ff0:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:ff8::,2001:ff8:ffff:ffff:ffff:ffff:ffff:ffff,MO 2001:1200::,2001:1200:ffff:ffff:ffff:ffff:ffff:ffff,MX 2001:1208::,2001:1208:ffff:ffff:ffff:ffff:ffff:ffff,MX 2001:1210::,2001:1210:ffff:ffff:ffff:ffff:ffff:ffff,MX 2001:1218::,2001:1218:ffff:ffff:ffff:ffff:ffff:ffff,MX 2001:1220::,2001:1221::ffff:ffff:ffff:ffff:ffff,MX 2001:1228::,2001:1228:ffff:ffff:ffff:ffff:ffff:ffff,MX 2001:122c::,2001:122c:ffff:ffff:ffff:ffff:ffff:ffff,MX 2001:1230::,2001:1230:ffff:ffff:ffff:ffff:ffff:ffff,MX 2001:1238::,2001:1238:ffff:ffff:ffff:ffff:ffff:ffff,MX 2001:1240::,2001:1240:ffff:ffff:ffff:ffff:ffff:ffff,MX 2001:1248::,2001:1248:ffff:ffff:ffff:ffff:ffff:ffff,MX 2001:1250::,2001:1250:ffff:ffff:ffff:ffff:ffff:ffff,MX 2001:1258::,2001:1258:ffff:ffff:ffff:ffff:ffff:ffff,MX 2001:1260::,2001:1260:ffff:ffff:ffff:ffff:ffff:ffff,MX 2001:1270::,2001:1270:ffff:ffff:ffff:ffff:ffff:ffff,MX 2001:1278::,2001:1278:ffff:ffff:ffff:ffff:ffff:ffff,MX 2001:1280::,2001:1280:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:1284::,2001:1284:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:1288::,2001:1288:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:128c::,2001:128c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:1290::,2001:1291:200:88fc:ffff:ffff:ffff:ffff,BR 2001:1291:200:88fd::,2001:1291:200:88fd:ffff:ffff:ffff:ffff,AR 2001:1291:200:88fe::,2001:1291:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:1294::,2001:1294:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:1298::,2001:1298:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:129c::,2001:129c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:12a0::,2001:12a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:12a4::,2001:12a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:12ac::,2001:12ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:12b0::,2001:12b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:12b4::,2001:12b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:12b8::,2001:12b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:12bc::,2001:12bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:12c0::,2001:12c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:12c4::,2001:12c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:12c8::,2001:12c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:12d0::,2001:12d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:12d8::,2001:12d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:12e0::,2001:12e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:12e8::,2001:12e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:12f0::,2001:12f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:12f8::,2001:12f8:1:ffff:ffff:ffff:ffff:ffff,BR 2001:12f8:4::,2001:12f8:5:ffff:ffff:ffff:ffff:ffff,BR 2001:12fe::,2001:12ff:ffff:ffff:ffff:ffff:ffff:ffff,BR 2001:1300::,2001:1300:ffff:ffff:ffff:ffff:ffff:ffff,PE 2001:1308::,2001:1308:ffff:ffff:ffff:ffff:ffff:ffff,DO 2001:1310::,2001:1310:ffff:ffff:ffff:ffff:ffff:ffff,CL 2001:1318::,2001:1318:ffff:ffff:ffff:ffff:ffff:ffff,AR 2001:1320::,2001:1320:ffff:ffff:ffff:ffff:ffff:ffff,PY 2001:1328::,2001:1328:ffff:ffff:ffff:ffff:ffff:ffff,UY 2001:1330::,2001:1337:ffff:ffff:ffff:ffff:ffff:ffff,CR 2001:1338::,2001:1338:ffff:ffff:ffff:ffff:ffff:ffff,VE 2001:1340::,2001:1340:ffff:ffff:ffff:ffff:ffff:ffff,CU 2001:1348::,2001:1348:ffff:ffff:ffff:ffff:ffff:ffff,UY 2001:1350::,2001:1350:ffff:ffff:ffff:ffff:ffff:ffff,VE 2001:1358::,2001:1358:ffff:ffff:ffff:ffff:ffff:ffff,CU 2001:1360::,2001:1360:ffff:ffff:ffff:ffff:ffff:ffff,GT 2001:1368::,2001:1368:ffff:ffff:ffff:ffff:ffff:ffff,PA 2001:1370::,2001:1370:ffff:ffff:ffff:ffff:ffff:ffff,HT 2001:1378::,2001:1378:ffff:ffff:ffff:ffff:ffff:ffff,BO 2001:1380::,2001:1380:ffff:ffff:ffff:ffff:ffff:ffff,PE 2001:1388::,2001:1388:ffff:ffff:ffff:ffff:ffff:ffff,PE 2001:1398::,2001:1398:ffff:ffff:ffff:ffff:ffff:ffff,CL 2001:13a0::,2001:13a0:ffff:ffff:ffff:ffff:ffff:ffff,PE 2001:13a8::,2001:13a8:ffff:ffff:ffff:ffff:ffff:ffff,MX 2001:13b0::,2001:13b7:ffff:ffff:ffff:ffff:ffff:ffff,AR 2001:13c7:6000::,2001:13c7:6000:ffff:ffff:ffff:ffff:ffff,CO 2001:13c7:6001::,2001:13c7:6001:ffff:ffff:ffff:ffff:ffff,AR 2001:13c7:6002::,2001:13c7:6002:ffff:ffff:ffff:ffff:ffff,SX 2001:13c7:6003::,2001:13c7:6003:ffff:ffff:ffff:ffff:ffff,HT 2001:13c7:6004::,2001:13c7:6005:ffff:ffff:ffff:ffff:ffff,CW 2001:13c7:6006::,2001:13c7:6006:ffff:ffff:ffff:ffff:ffff,EC 2001:13c7:6007::,2001:13c7:600e:ffff:ffff:ffff:ffff:ffff,AR 2001:13c7:6010::,2001:13c7:601f:ffff:ffff:ffff:ffff:ffff,AR 2001:13c7:6f00::,2001:13c7:6fff:ffff:ffff:ffff:ffff:ffff,EC 2001:13c7:7000::,2001:13c7:7000:ffff:ffff:ffff:ffff:ffff,MX 2001:13c7:7001::,2001:13c7:7003:ffff:ffff:ffff:ffff:ffff,UY 2001:13c7:7004::,2001:13c7:7004:ffff:ffff:ffff:ffff:ffff,CR 2001:13c7:7005::,2001:13c7:7009:ffff:ffff:ffff:ffff:ffff,UY 2001:13c7:7010::,2001:13c7:7013:ffff:ffff:ffff:ffff:ffff,UY 2001:13c7:7014::,2001:13c7:7014:ffff:ffff:ffff:ffff:ffff,MX 2001:13c8::,2001:13c8:ffff:ffff:ffff:ffff:ffff:ffff,CU 2001:13d0::,2001:13d7:ffff:ffff:ffff:ffff:ffff:ffff,AR 2001:13d8::,2001:13d8:ffff:ffff:ffff:ffff:ffff:ffff,CR 2001:13e0::,2001:13e0:ffff:ffff:ffff:ffff:ffff:ffff,DO 2001:13e8::,2001:13e8:ffff:ffff:ffff:ffff:ffff:ffff,AR 2001:13f0::,2001:13f0:ffff:ffff:ffff:ffff:ffff:ffff,DO 2001:13f8::,2001:13f8:ffff:ffff:ffff:ffff:ffff:ffff,CO 2001:1400::,2001:1407:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:1408::,2001:1408:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:1410::,2001:1410:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1418::,2001:1418:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:1420::,2001:1420:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:1428::,2001:1428:ffff:ffff:ffff:ffff:ffff:ffff,RU 2001:1430::,2001:1430:ffff:ffff:ffff:ffff:ffff:ffff,FI 2001:1438::,2001:1438:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1440::,2001:1440:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1448::,2001:1448:ffff:ffff:ffff:ffff:ffff:ffff,DK 2001:1450::,2001:1450:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:1458::,2001:1459:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:1460::,2001:1460:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:1468::,2001:1468:7fff:ffff:ffff:ffff:ffff:ffff,CZ 2001:1468:8000::,2001:1468:ffff:ffff:ffff:ffff:ffff:ffff,IE 2001:1469::,2001:1469:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:146a::,2001:146a::7fff:ffff:ffff:ffff:ffff,RU 2001:146a:0:8000::,2001:146a:81:ffff:ffff:ffff:ffff:ffff,CZ 2001:146a:82::,2001:146a:82:7fff:ffff:ffff:ffff:ffff,RU 2001:146a:82:8000::,2001:146a:98:ffff:ffff:ffff:ffff:ffff,CZ 2001:146a:99::,2001:146a:99:7fff:ffff:ffff:ffff:ffff,RU 2001:146a:99:8000::,2001:146f:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:1470::,2001:1477:ffff:ffff:ffff:ffff:ffff:ffff,SI 2001:1478::,2001:1478:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:1488::,2001:1488:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:1490::,2001:1490:ffff:ffff:ffff:ffff:ffff:ffff,SA 2001:1498::,2001:1498:ffff:ffff:ffff:ffff:ffff:ffff,ES 2001:14a0::,2001:14a0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:14a8::,2001:14a8:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:14b0::,2001:14b0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:14b8::,2001:14bf:ffff:ffff:ffff:ffff:ffff:ffff,FI 2001:14c0::,2001:14c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:14c8::,2001:14c8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:14d0::,2001:14d0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2001:14d8::,2001:14d8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:14e0::,2001:14e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:14e8::,2001:14e8:ffff:ffff:ffff:ffff:ffff:ffff,IR 2001:14f0::,2001:14f8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1500::,2001:1500:ffff:ffff:ffff:ffff:ffff:ffff,IR 2001:1508::,2001:1508:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:1510::,2001:1510:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:1520::,2001:1520:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1528::,2001:1528:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:1530::,2001:1530:ffff:ffff:ffff:ffff:ffff:ffff,EE 2001:1538::,2001:1538:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:1540::,2001:1540:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:1548::,2001:1548:ffff:ffff:ffff:ffff:ffff:ffff,GR 2001:1558::,2001:1558:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:1560::,2001:1567:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1568::,2001:1568:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:1578::,2001:157f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1580::,2001:1580:ffff:ffff:ffff:ffff:ffff:ffff,DK 2001:1588::,2001:1588:ffff:ffff:ffff:ffff:ffff:ffff,PT 2001:1590::,2001:1590:ffff:ffff:ffff:ffff:ffff:ffff,SI 2001:1598::,2001:1598:ffff:ffff:ffff:ffff:ffff:ffff,BE 2001:15a8::,2001:15a8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:15b0::,2001:15b0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:15b8::,2001:15b8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:15c0::,2001:15c0:65ff:7fff:ffff:ffff:ffff:ffff,SI 2001:15c0:65ff:8000::,2001:15c0:65ff:ffff:ffff:ffff:ffff:ffff,AT 2001:15c0:6600::,2001:15c0:66a2:ffff:ffff:ffff:ffff:ffff,SI 2001:15c0:66a3::,2001:15c0:66a3:7fff:ffff:ffff:ffff:ffff,RO 2001:15c0:66a3:8000::,2001:15c0:67cc:ffff:ffff:ffff:ffff:ffff,SI 2001:15c0:67cd::,2001:15c0:67cd:7fff:ffff:ffff:ffff:ffff,AT 2001:15c0:67cd:8000::,2001:15c0:67d0:ffff:ffff:ffff:ffff:ffff,SI 2001:15c0:67d1::,2001:15c0:67d1:7fff:ffff:ffff:ffff:ffff,AT 2001:15c0:67d1:8000::,2001:15c7:ffff:ffff:ffff:ffff:ffff:ffff,SI 2001:15c8::,2001:15c8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:15d8::,2001:15df:ffff:ffff:ffff:ffff:ffff:ffff,PT 2001:15e0::,2001:15e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:15e8::,2001:15e8:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:15f0::,2001:15f0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:15f8::,2001:15f8:ffff:ffff:ffff:ffff:ffff:ffff,DK 2001:1600::,2001:1607:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:1608::,2001:1608:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1610::,2001:1610:ffff:ffff:ffff:ffff:ffff:ffff,LU 2001:1618::,2001:1618:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:1620::,2001:1623:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:1630::,2001:1637:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:1638::,2001:1638:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1640::,2001:1640:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1650::,2001:1650:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:1658::,2001:1658:ffff:ffff:ffff:ffff:ffff:ffff,FI 2001:1660::,2001:1660:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:1668::,2001:1668:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:1670::,2001:1670:ffff:ffff:ffff:ffff:ffff:ffff,OM 2001:1678::,2001:1678:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:1680::,2001:1687:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:1688::,2001:168f:ffff:ffff:ffff:ffff:ffff:ffff,SI 2001:1690::,2001:1690:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:1698::,2001:1698:ffff:ffff:ffff:ffff:ffff:ffff,LU 2001:16a0::,2001:16a2:1d14:7fff:ffff:ffff:ffff:ffff,SA 2001:16a2:1d14:8000::,2001:16a2:1d14:ffff:ffff:ffff:ffff:ffff,US 2001:16a2:1d15::,2001:16a2:a5bf:7fff:ffff:ffff:ffff:ffff,SA 2001:16a2:a5bf:8000::,2001:16a2:a5bf:ffff:ffff:ffff:ffff:ffff,GB 2001:16a2:a5c0::,2001:16a7:ffff:ffff:ffff:ffff:ffff:ffff,SA 2001:16a8::,2001:16a8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:16b0::,2001:16b0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:16b8::,2001:16b8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:16c0::,2001:16c0:1233:ffff:ffff:ffff:ffff:ffff,IR 2001:16c0:1234::,2001:16c0:1234:7fff:ffff:ffff:ffff:ffff,AU 2001:16c0:1234:8000::,2001:16c7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2001:16d0::,2001:16d0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:16d8::,2001:16d8:dcff:ffff:ffff:ffff:ffff:ffff,SE 2001:16d8:dd00::,2001:16d8:dd00:ffff:ffff:ffff:ffff:ffff,DK 2001:16d8:dd01::,2001:16d8:dd72:ffff:ffff:ffff:ffff:ffff,SE 2001:16d8:dd73::,2001:16d8:dd73:7fff:ffff:ffff:ffff:ffff,DK 2001:16d8:dd73:8000::,2001:16d8:dda3:ffff:ffff:ffff:ffff:ffff,SE 2001:16d8:dda4::,2001:16d8:dda4:7fff:ffff:ffff:ffff:ffff,DK 2001:16d8:dda4:8000::,2001:16d8:ddc1:ffff:ffff:ffff:ffff:ffff,SE 2001:16d8:ddc2::,2001:16d8:ddc2:7fff:ffff:ffff:ffff:ffff,DK 2001:16d8:ddc2:8000::,2001:16d8:ddd6:ffff:ffff:ffff:ffff:ffff,SE 2001:16d8:ddd7::,2001:16d8:ddd7:7fff:ffff:ffff:ffff:ffff,DK 2001:16d8:ddd7:8000::,2001:16d8:ee00:7fff:ffff:ffff:ffff:ffff,SE 2001:16d8:ee00:8000::,2001:16d8:ee00:ffff:ffff:ffff:ffff:ffff,NO 2001:16d8:ee01::,2001:16d8:ee8f:7fff:ffff:ffff:ffff:ffff,SE 2001:16d8:ee8f:8000::,2001:16d8:ee8f:ffff:ffff:ffff:ffff:ffff,NO 2001:16d8:ee90::,2001:16d8:eeca:ffff:ffff:ffff:ffff:ffff,SE 2001:16d8:eecb::,2001:16d8:eecb:7fff:ffff:ffff:ffff:ffff,NO 2001:16d8:eecb:8000::,2001:16d8:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:16e0::,2001:16e7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:16e8::,2001:16e8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:16f0::,2001:16f7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:16f8::,2001:16f8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:1700::,2001:171f:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:1800::,2001:1800:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1808::,2001:1808:ffff:ffff:ffff:ffff:ffff:ffff,GD 2001:1810::,2001:1810:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1818::,2001:1818:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1820::,2001:1820:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1828::,2001:1828:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1830::,2001:1830:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1838::,2001:1838:6000:ffff:ffff:ffff:ffff:ffff,US 2001:1838:6001::,2001:1838:6001:7fff:ffff:ffff:ffff:ffff,AU 2001:1838:6001:8000::,2001:1838:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1840::,2001:1840:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1848::,2001:1848:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1850::,2001:1850:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1860::,2001:1860:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1868::,2001:1868:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1878::,2001:1878:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1888::,2001:1888:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1890::,2001:1890:e000:3fff:ffff:ffff:ffff:ffff,US 2001:1890:e000:4000::,2001:1890:e000:7fff:ffff:ffff:ffff:ffff,CA 2001:1890:e000:8000::,2001:1898:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:18a0::,2001:18a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:18a8::,2001:18a8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:18b0::,2001:18b0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:18b8::,2001:18b8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:18c0::,2001:18c0:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:18c8::,2001:18c8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:18d8::,2001:18d8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:18e0::,2001:18e0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:18e8::,2001:18e8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:18f0::,2001:18f0:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:18f8::,2001:18f8:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:1900::,2001:1900:5:1::1c5,US 2001:1900:5:1::1c6,2001:1900:5:1::1c6,SI 2001:1900:5:1::1c7,2001:1900:5:2:2::93d,US 2001:1900:5:2:2::93e,2001:1900:5:2:2::93e,SI 2001:1900:5:2:2::93f,2001:1900:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1908::,2001:1908:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1910::,2001:1910:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1920::,2001:1920:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:1928::,2001:1928:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:1930::,2001:1930:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1938::,2001:1938:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1940::,2001:1940:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1948::,2001:1948:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1950::,2001:1950:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1958::,2001:1958:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1960::,2001:1960:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1968::,2001:1968:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1970::,2001:1970:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:1978::,2001:1978:10ff:ffff:ffff:ffff:ffff:ffff,US 2001:1978:1100::,2001:1978:1100:7fff:ffff:ffff:ffff:ffff,CA 2001:1978:1100:8000::,2001:1978:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1980::,2001:1980:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1988::,2001:1988:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1990::,2001:1990:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1998::,2001:1998:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:19a0::,2001:19a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:19a8::,2001:19a8:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:19b0::,2001:19b0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:19b8::,2001:19b8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:19c0::,2001:19c0:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:19c8::,2001:19c8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:19d0::,2001:19d0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:19d8::,2001:19d8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:19e0::,2001:19e0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:19e8::,2001:19e8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:19f0::,2001:19f0:5000:7fff:ffff:ffff:ffff:ffff,US 2001:19f0:5000:8000::,2001:19f0:5000:ffff:ffff:ffff:ffff:ffff,NL 2001:19f0:5001::,2001:19f0:5800:7fff:ffff:ffff:ffff:ffff,US 2001:19f0:5800:8000::,2001:19f0:5800:ffff:ffff:ffff:ffff:ffff,AU 2001:19f0:5801::,2001:19f0:67ff:ffff:ffff:ffff:ffff:ffff,US 2001:19f0:6800::,2001:19f0:6800:87ff:ffff:ffff:ffff:ffff,FR 2001:19f0:6800:8800::,2001:19f0:6c00:7fff:ffff:ffff:ffff:ffff,US 2001:19f0:6c00:8000::,2001:19f0:6c00:ffff:ffff:ffff:ffff:ffff,DE 2001:19f0:6c01::,2001:19f0:7000:9bc8:ffff:ffff:ffff:ffff,US 2001:19f0:7000:9bc9::,2001:19f0:7000:9bc9:ffff:ffff:ffff:ffff,JP 2001:19f0:7000:9bca::,2001:19f0:7400:7fff:ffff:ffff:ffff:ffff,US 2001:19f0:7400:8000::,2001:19f0:7400:ffff:ffff:ffff:ffff:ffff,GB 2001:19f0:7401::,2001:19f0:7401:7fff:ffff:ffff:ffff:ffff,US 2001:19f0:7401:8000::,2001:19f0:7401:ffff:ffff:ffff:ffff:ffff,GB 2001:19f0:7402::,2001:19f0:7800:3fff:ffff:ffff:ffff:ffff,US 2001:19f0:7800:4000::,2001:19f0:7800:4000:ffff:ffff:ffff:ffff,CA 2001:19f0:7800:4001::,2001:19f0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:19f8::,2001:19f8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:1a08::,2001:1a08:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:1a10::,2001:1a10:ffff:ffff:ffff:ffff:ffff:ffff,QA 2001:1a18::,2001:1a18:ffff:ffff:ffff:ffff:ffff:ffff,CY 2001:1a20::,2001:1a20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:1a28::,2001:1a28:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1a30::,2001:1a30:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1a38::,2001:1a38:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:1a40::,2001:1a40:ffff:ffff:ffff:ffff:ffff:ffff,BH 2001:1a48::,2001:1a48:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:1a50::,2001:1a50:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1a58::,2001:1a58:ffff:ffff:ffff:ffff:ffff:ffff,ES 2001:1a60::,2001:1a60:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:1a68::,2001:1a68:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:1a70::,2001:1a70:ffff:ffff:ffff:ffff:ffff:ffff,MT 2001:1a78::,2001:1a87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1a88::,2001:1a8f:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:1a90::,2001:1a90:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:1a98::,2001:1a9f:ffff:ffff:ffff:ffff:ffff:ffff,IS 2001:1aa0::,2001:1aa7:ffff:ffff:ffff:ffff:ffff:ffff,HU 2001:1aa8::,2001:1aa8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:1ab0::,2001:1ab0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:1ab8::,2001:1abb:ffff:ffff:ffff:ffff:ffff:ffff,LT 2001:1ac0::,2001:1ac0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:1ac8::,2001:1ac8:ffff:ffff:ffff:ffff:ffff:ffff,BG 2001:1ad0::,2001:1ad0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:1ad8::,2001:1ad8:ffff:ffff:ffff:ffff:ffff:ffff,NO 2001:1ae0::,2001:1ae0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2001:1ae8::,2001:1aef:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:1af0::,2001:1af7:ffff:ffff:ffff:ffff:ffff:ffff,HR 2001:1af8::,2001:1af8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:1b00::,2001:1b00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2001:1b08::,2001:1b08:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:1b10::,2001:1b10:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1b18::,2001:1b18:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1b20::,2001:1b20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1b28::,2001:1b28:ffff:ffff:ffff:ffff:ffff:ffff,EE 2001:1b30::,2001:1b37:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1b38::,2001:1b38:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:1b40::,2001:1b40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:1b48::,2001:1b48:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:1b50::,2001:1b57:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:1b58::,2001:1b58:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:1b60::,2001:1b67:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1b68::,2001:1b6f:ffff:ffff:ffff:ffff:ffff:ffff,TR 2001:1b70::,2001:1b77:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:1b78::,2001:1b78:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:1b80::,2001:1b80:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:1b88::,2001:1b88:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:1b90::,2001:1b90:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:1b98::,2001:1b98:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:1ba0::,2001:1ba0:ffff:ffff:ffff:ffff:ffff:ffff,SK 2001:1ba8::,2001:1ba8:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:1bb0::,2001:1bb0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2001:1bb8::,2001:1bb8:ffff:ffff:ffff:ffff:ffff:ffff,IE 2001:1bc0::,2001:1bc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:1bc8::,2001:1bcf:ffff:ffff:ffff:ffff:ffff:ffff,FI 2001:1bd0::,2001:1bd0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:1bd8::,2001:1bd8:ffff:ffff:ffff:ffff:ffff:ffff,IE 2001:1be0::,2001:1be0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:1be8::,2001:1be8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:1bf0::,2001:1bf7:ffff:ffff:ffff:ffff:ffff:ffff,EE 2001:1bf8::,2001:1bf8:ffff:ffff:ffff:ffff:ffff:ffff,LV 2001:1c00::,2001:1dff:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:2002:2f8::,2001:2002:2f8:7fff:ffff:ffff:ffff:ffff,SE 2001:2002:2f9:8000::,2001:2002:2f9:ffff:ffff:ffff:ffff:ffff,SE 2001:2002:3e14:8000::,2001:2002:3e14:ffff:ffff:ffff:ffff:ffff,SE 2001:2002:4e42::,2001:2002:4e42:7fff:ffff:ffff:ffff:ffff,SE 2001:2002:4e43:8000::,2001:2002:4e44:7fff:ffff:ffff:ffff:ffff,SE 2001:2002:4e45::,2001:2002:4e45:7fff:ffff:ffff:ffff:ffff,SE 2001:2002:4e46::,2001:2002:4e46:7fff:ffff:ffff:ffff:ffff,SE 2001:2002:4e48::,2001:2002:4e48:afff:ffff:ffff:ffff:ffff,SE 2001:2002:4e49::,2001:2002:4e49:ffff:ffff:ffff:ffff:ffff,SE 2001:2002:51e0:8000::,2001:2002:51e2:7fff:ffff:ffff:ffff:ffff,SE 2001:2002:51e3::,2001:2002:51e5:7fff:ffff:ffff:ffff:ffff,SE 2001:2002:51e6::,2001:2002:51e6:7fff:ffff:ffff:ffff:ffff,SE 2001:2002:51e7::,2001:2002:51e9:7fff:ffff:ffff:ffff:ffff,SE 2001:2002:51eb::,2001:2002:51eb:7fff:ffff:ffff:ffff:ffff,SE 2001:2002:51ec:8000::,2001:2002:51ec:ffff:ffff:ffff:ffff:ffff,SE 2001:2002:51ed:8000::,2001:2002:51ed:ffff:ffff:ffff:ffff:ffff,SE 2001:2002:5ae0:8000::,2001:2002:5ae1:7fff:ffff:ffff:ffff:ffff,SE 2001:2002:5ae2::,2001:2002:5ae3:ffff:ffff:ffff:ffff:ffff,SE 2001:2002:5ae4:8000::,2001:2002:5ae4:ffff:ffff:ffff:ffff:ffff,SE 2001:2002:5ae5:8000::,2001:2002:5ae6:7fff:ffff:ffff:ffff:ffff,SE 2001:2002:5ae7:8000::,2001:2002:5ae7:ffff:ffff:ffff:ffff:ffff,SE 2001:2002:c2ec:8000::,2001:2002:c2ec:ffff:ffff:ffff:ffff:ffff,SE 2001:2002:c343:8000::,2001:2002:c343:ffff:ffff:ffff:ffff:ffff,SE 2001:2002:c3c6::,2001:2002:c3c6:7fff:ffff:ffff:ffff:ffff,SE 2001:2002:c3fc::,2001:2002:c3fc:7fff:ffff:ffff:ffff:ffff,SE 2001:2002:d540::,2001:2002:d540:7fff:ffff:ffff:ffff:ffff,SE 2001:2002:d541::,2001:2002:d541:ffff:ffff:ffff:ffff:ffff,SE 2001:2002:d542:8000::,2001:2002:d543:7fff:ffff:ffff:ffff:ffff,SE 2001:2002:d9d0::,2001:2002:d9d0:ffff:ffff:ffff:ffff:ffff,SE 2001:2002:d9d1:8000::,2001:2002:d9d1:ffff:ffff:ffff:ffff:ffff,SE 2001:2002:d9d2:8000::,2001:2002:d9d3:ffff:ffff:ffff:ffff:ffff,SE 2001:2002:d9d4:8000::,2001:2002:d9d4:ffff:ffff:ffff:ffff:ffff,SE 2001:2002:d9d7::,2001:2002:d9d7:ffff:ffff:ffff:ffff:ffff,SE 2001:2003:50dc::,2001:2003:50df:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:54f8::,2001:2003:54fb:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:58c0::,2001:2003:58c1:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:58c3::,2001:2003:58c3:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f042:8000::,2001:2003:f042:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f05e:8000::,2001:2003:f05e:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f072:8000::,2001:2003:f072:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f0ab::,2001:2003:f0ab:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f0b6::,2001:2003:f0b6:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f0e5:8000::,2001:2003:f0e5:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f19b::,2001:2003:f19b:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f19c:8000::,2001:2003:f19c:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f21a::,2001:2003:f21a:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f22c::,2001:2003:f22c:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f237::,2001:2003:f237:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f250:8000::,2001:2003:f250:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f2c3:8000::,2001:2003:f2c3:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f36f::,2001:2003:f36f:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f386::,2001:2003:f386:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f388::,2001:2003:f388:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f3be:8000::,2001:2003:f3be:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f441::,2001:2003:f441:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f447::,2001:2003:f447:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f44a:8000::,2001:2003:f44a:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f45a::,2001:2003:f45a:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f468:8000::,2001:2003:f468:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f476::,2001:2003:f476:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f48c:8000::,2001:2003:f48c:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f4a6:8000::,2001:2003:f4a6:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f543::,2001:2003:f543:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f5dc::,2001:2003:f5dc:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f639::,2001:2003:f639:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f67c:8000::,2001:2003:f67c:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f6a9:8000::,2001:2003:f6a9:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f6da::,2001:2003:f6da:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f72a::,2001:2003:f72a:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f764::,2001:2003:f764:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f798:8000::,2001:2003:f798:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f7a3:8000::,2001:2003:f7a3:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f802::,2001:2003:f802:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f824::,2001:2003:f824:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f825:8000::,2001:2003:f825:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f839::,2001:2003:f839:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f83c::,2001:2003:f83c:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f882:8000::,2001:2003:f882:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f8d4::,2001:2003:f8d4:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:f8f6:8000::,2001:2003:f8f6:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f969:8000::,2001:2003:f969:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f9e7:8000::,2001:2003:f9e7:ffff:ffff:ffff:ffff:ffff,FI 2001:2003:f9f1::,2001:2003:f9f1:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:fa67::,2001:2003:fa67:7fff:ffff:ffff:ffff:ffff,FI 2001:2003:fa6f:8000::,2001:2003:fa6f:ffff:ffff:ffff:ffff:ffff,FI 2001:2010:d001::,2001:2010:d001:7fff:ffff:ffff:ffff:ffff,DK 2001:2010:d002::,2001:2010:d007:7fff:ffff:ffff:ffff:ffff,DK 2001:2010:d009::,2001:2010:d00a:ffff:ffff:ffff:ffff:ffff,DK 2001:2010:d00b:8000::,2001:2010:d00c:7fff:ffff:ffff:ffff:ffff,DK 2001:2010:d00d::,2001:2010:d00d:7fff:ffff:ffff:ffff:ffff,DK 2001:2010:d00e::,2001:2010:d00e:7fff:ffff:ffff:ffff:ffff,DK 2001:2010:d00f:8000::,2001:2010:d00f:ffff:ffff:ffff:ffff:ffff,DK 2001:2010:d012:8000::,2001:2010:d014:ffff:ffff:ffff:ffff:ffff,DK 2001:2010:d01a:8000::,2001:2010:d01a:ffff:ffff:ffff:ffff:ffff,DK 2001:2010:d01b:8000::,2001:2010:d01c:ffff:ffff:ffff:ffff:ffff,DK 2001:2010:d01f:8000::,2001:2010:d01f:ffff:ffff:ffff:ffff:ffff,DK 2001:2010:d023:8000::,2001:2010:d023:ffff:ffff:ffff:ffff:ffff,DK 2001:2010:d029::,2001:2010:d029:7fff:ffff:ffff:ffff:ffff,DK 2001:2010:d038:8000::,2001:2010:d038:ffff:ffff:ffff:ffff:ffff,DK 2001:2010:d039:8000::,2001:2010:d03a:ffff:ffff:ffff:ffff:ffff,DK 2001:2010:d04e:8000::,2001:2010:d04e:ffff:ffff:ffff:ffff:ffff,DK 2001:2040:4b::,2001:2040:4b:ffff:ffff:ffff:ffff:ffff,SE 2001:4000::,2001:4000:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:4010::,2001:4010:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4018::,2001:4018:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:4020::,2001:4020:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:4028::,2001:4028:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:4030::,2001:4030:ffff:ffff:ffff:ffff:ffff:ffff,ES 2001:4038::,2001:4038:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:4040::,2001:4040:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:4048::,2001:4048:ffff:ffff:ffff:ffff:ffff:ffff,LT 2001:4050::,2001:4050:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:4058::,2001:4058:ffff:ffff:ffff:ffff:ffff:ffff,RU 2001:4060::,2001:4060:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:4068::,2001:4068:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4070::,2001:4070:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:4078::,2001:407f:ffff:ffff:ffff:ffff:ffff:ffff,FI 2001:4080::,2001:4080:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:4088::,2001:4088:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4090::,2001:4090:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:40a0::,2001:40a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:40a8::,2001:40a8:ffff:ffff:ffff:ffff:ffff:ffff,IL 2001:40b0::,2001:40b0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2001:40b8::,2001:40b8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:40c0::,2001:40c0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:40c8::,2001:40cf:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:40d0::,2001:40d0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:40d8::,2001:40d8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:40e0::,2001:40e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:40e8::,2001:40e8:ffff:ffff:ffff:ffff:ffff:ffff,FI 2001:40f0::,2001:40f0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:40f8::,2001:40f8:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:4100::,2001:4100:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:4108::,2001:4108:ffff:ffff:ffff:ffff:ffff:ffff,ES 2001:4118::,2001:4118:ffff:ffff:ffff:ffff:ffff:ffff,SK 2001:4120::,2001:4120:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4128::,2001:4128:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:4130::,2001:4130:ffff:ffff:ffff:ffff:ffff:ffff,UA 2001:4138::,2001:4140:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4150::,2001:4150:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4158::,2001:415f:ffff:ffff:ffff:ffff:ffff:ffff,BE 2001:4160::,2001:4160:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4168::,2001:4168:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:4170::,2001:4170:ffff:ffff:ffff:ffff:ffff:ffff,RS 2001:4178::,2001:4180:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4188::,2001:4188:ffff:ffff:ffff:ffff:ffff:ffff,IR 2001:4190::,2001:4190:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:4198::,2001:4198:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:41a0::,2001:41a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:41a8::,2001:41a8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:41b0::,2001:41b0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:41b8::,2001:41b8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:41c0::,2001:41cf:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:41d0::,2001:41d0:2:4dbd:ffff:ffff:ffff:ffff,FR 2001:41d0:2:4dbe::,2001:41d0:2:4dbe:ffff:ffff:ffff:ffff,CZ 2001:41d0:2:4dbf::,2001:41d0:a:5dff:ffff:ffff:ffff:ffff,FR 2001:41d0:a:5e00::,2001:41d0:a:5fff:ffff:ffff:ffff:ffff,ES 2001:41d0:a:6000::,2001:41d0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:41d8::,2001:41d8:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:41e0::,2001:41e0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:41e8::,2001:41e8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:41f0::,2001:41f0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:41f8::,2001:41f8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4200::,2001:4200:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2001:4210::,2001:4210:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2001:4218::,2001:4218:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2001:4220::,2001:4220:ffff:ffff:ffff:ffff:ffff:ffff,EG 2001:4228::,2001:4228:ffff:ffff:ffff:ffff:ffff:ffff,SD 2001:4238::,2001:4238:ffff:ffff:ffff:ffff:ffff:ffff,MU 2001:4240::,2001:4240:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2001:4248::,2001:4248:ffff:ffff:ffff:ffff:ffff:ffff,MU 2001:4250::,2001:4250:ffff:ffff:ffff:ffff:ffff:ffff,AO 2001:4258::,2001:4258:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2001:4260::,2001:4260:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2001:4268::,2001:4268:ffff:ffff:ffff:ffff:ffff:ffff,CM 2001:4270::,2001:4270:ffff:ffff:ffff:ffff:ffff:ffff,NG 2001:4278::,2001:4278:ffff:ffff:ffff:ffff:ffff:ffff,SN 2001:4288::,2001:4288:ffff:ffff:ffff:ffff:ffff:ffff,MA 2001:4290::,2001:4290:ffff:ffff:ffff:ffff:ffff:ffff,MU 2001:4298::,2001:4298:ffff:ffff:ffff:ffff:ffff:ffff,DJ 2001:42a0::,2001:42a0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2001:42a8::,2001:42a8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2001:42b0::,2001:42b0:ffff:ffff:ffff:ffff:ffff:ffff,ZW 2001:42b8::,2001:42b8:ffff:ffff:ffff:ffff:ffff:ffff,EG 2001:42c0::,2001:42c0:ffff:ffff:ffff:ffff:ffff:ffff,ML 2001:42c8::,2001:42c8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2001:42d0::,2001:42d0:ffff:ffff:ffff:ffff:ffff:ffff,MU 2001:42d8::,2001:42d8:ffff:ffff:ffff:ffff:ffff:ffff,CI 2001:42e0::,2001:42e0:ffff:ffff:ffff:ffff:ffff:ffff,SC 2001:42f0::,2001:42f0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2001:4300::,2001:4300:ffff:ffff:ffff:ffff:ffff:ffff,EG 2001:4308::,2001:4308:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2001:4310::,2001:4310:ffff:ffff:ffff:ffff:ffff:ffff,MA 2001:4318::,2001:4318:ffff:ffff:ffff:ffff:ffff:ffff,CI 2001:4320::,2001:4320:ffff:ffff:ffff:ffff:ffff:ffff,BJ 2001:4328::,2001:4328:ffff:ffff:ffff:ffff:ffff:ffff,MU 2001:4330::,2001:4330:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2001:4338::,2001:4338:ffff:ffff:ffff:ffff:ffff:ffff,SZ 2001:4340::,2001:4340:ffff:ffff:ffff:ffff:ffff:ffff,DZ 2001:4350::,2001:4350:ffff:ffff:ffff:ffff:ffff:ffff,TN 2001:4358::,2001:4358:ffff:ffff:ffff:ffff:ffff:ffff,KE 2001:4368::,2001:4368:ffff:ffff:ffff:ffff:ffff:ffff,KE 2001:4370::,2001:4370:ffff:ffff:ffff:ffff:ffff:ffff,KE 2001:4378::,2001:4378:ffff:ffff:ffff:ffff:ffff:ffff,MZ 2001:4388::,2001:4388:ffff:ffff:ffff:ffff:ffff:ffff,EG 2001:4398::,2001:4398:ffff:ffff:ffff:ffff:ffff:ffff,MG 2001:43a0::,2001:43a0:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2001:43a8::,2001:43a8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2001:43b0::,2001:43b0:ffff:ffff:ffff:ffff:ffff:ffff,NG 2001:43b8::,2001:43b8:ffff:ffff:ffff:ffff:ffff:ffff,MU 2001:43c0::,2001:43c0:ffff:ffff:ffff:ffff:ffff:ffff,GH 2001:43c8::,2001:43c8:ffff:ffff:ffff:ffff:ffff:ffff,EG 2001:43d0::,2001:43d0:ffff:ffff:ffff:ffff:ffff:ffff,KE 2001:43d8::,2001:43d8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2001:43e0::,2001:43e0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2001:43e8::,2001:43e8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f0::,2001:43f0:ffff:ffff:ffff:ffff:ffff:ffff,ZW 2001:43f8::,2001:43f8:2:ffff:ffff:ffff:ffff:ffff,TZ 2001:43f8:10::,2001:43f8:10:ffff:ffff:ffff:ffff:ffff,KE 2001:43f8:20::,2001:43f8:20:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:30::,2001:43f8:30:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:50::,2001:43f8:50:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:60::,2001:43f8:60:ffff:ffff:ffff:ffff:ffff,KE 2001:43f8:70::,2001:43f8:77:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:80::,2001:43f8:80:ffff:ffff:ffff:ffff:ffff,NA 2001:43f8:90::,2001:43f8:90:ffff:ffff:ffff:ffff:ffff,MU 2001:43f8:92::,2001:43f8:92:ffff:ffff:ffff:ffff:ffff,MU 2001:43f8:a0::,2001:43f8:a0:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:b0::,2001:43f8:b0:ffff:ffff:ffff:ffff:ffff,SL 2001:43f8:c0::,2001:43f8:c0:ffff:ffff:ffff:ffff:ffff,KE 2001:43f8:e0::,2001:43f8:e0:ffff:ffff:ffff:ffff:ffff,TZ 2001:43f8:100::,2001:43f8:100:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:110::,2001:43f8:110:ffff:ffff:ffff:ffff:ffff,MU 2001:43f8:120::,2001:43f8:120:ffff:ffff:ffff:ffff:ffff,MU 2001:43f8:130::,2001:43f8:130:ffff:ffff:ffff:ffff:ffff,UG 2001:43f8:140::,2001:43f8:140:ffff:ffff:ffff:ffff:ffff,ZM 2001:43f8:150::,2001:43f8:150:ffff:ffff:ffff:ffff:ffff,RW 2001:43f8:160::,2001:43f8:160:ffff:ffff:ffff:ffff:ffff,NG 2001:43f8:170::,2001:43f8:170:ffff:ffff:ffff:ffff:ffff,KE 2001:43f8:180::,2001:43f8:180:ffff:ffff:ffff:ffff:ffff,NG 2001:43f8:190::,2001:43f8:190:ffff:ffff:ffff:ffff:ffff,NG 2001:43f8:1a0::,2001:43f8:1a0:ffff:ffff:ffff:ffff:ffff,GH 2001:43f8:1b0::,2001:43f8:1b0:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:1c0::,2001:43f8:1c0:ffff:ffff:ffff:ffff:ffff,DZ 2001:43f8:1d0::,2001:43f8:1d0:ffff:ffff:ffff:ffff:ffff,SN 2001:43f8:1e0::,2001:43f8:1e0:ffff:ffff:ffff:ffff:ffff,NG 2001:43f8:1f0::,2001:43f8:1f5:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:200::,2001:43f8:200:ffff:ffff:ffff:ffff:ffff,KE 2001:43f8:210::,2001:43f8:210:ffff:ffff:ffff:ffff:ffff,LS 2001:43f8:220::,2001:43f8:220:ffff:ffff:ffff:ffff:ffff,MU 2001:43f8:230::,2001:43f8:230:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:240::,2001:43f8:241:ffff:ffff:ffff:ffff:ffff,GH 2001:43f8:250::,2001:43f8:250:ffff:ffff:ffff:ffff:ffff,KE 2001:43f8:260::,2001:43f8:260:ffff:ffff:ffff:ffff:ffff,KE 2001:43f8:270::,2001:43f8:271:ffff:ffff:ffff:ffff:ffff,MU 2001:43f8:280::,2001:43f8:280:ffff:ffff:ffff:ffff:ffff,MU 2001:43f8:290::,2001:43f8:290:ffff:ffff:ffff:ffff:ffff,MG 2001:43f8:2a0::,2001:43f8:2a0:ffff:ffff:ffff:ffff:ffff,BW 2001:43f8:2b0::,2001:43f8:2b0:ffff:ffff:ffff:ffff:ffff,BW 2001:43f8:2c0::,2001:43f8:2c0:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:2e0::,2001:43f8:2e0:ffff:ffff:ffff:ffff:ffff,EG 2001:43f8:2f0::,2001:43f8:2f0:ffff:ffff:ffff:ffff:ffff,NG 2001:43f8:310::,2001:43f8:310:ffff:ffff:ffff:ffff:ffff,ZW 2001:43f8:320::,2001:43f8:320:ffff:ffff:ffff:ffff:ffff,TN 2001:43f8:330::,2001:43f8:330:ffff:ffff:ffff:ffff:ffff,TZ 2001:43f8:340::,2001:43f8:340:ffff:ffff:ffff:ffff:ffff,KE 2001:43f8:360::,2001:43f8:360:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:370::,2001:43f8:370:ffff:ffff:ffff:ffff:ffff,NG 2001:43f8:380::,2001:43f8:380:ffff:ffff:ffff:ffff:ffff,MW 2001:43f8:390::,2001:43f8:391:ffff:ffff:ffff:ffff:ffff,AO 2001:43f8:3a0::,2001:43f8:3a0:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:3b0::,2001:43f8:3b0:ffff:ffff:ffff:ffff:ffff,NA 2001:43f8:3c0::,2001:43f8:3c0:ffff:ffff:ffff:ffff:ffff,CD 2001:43f8:3d0::,2001:43f8:3d0:ffff:ffff:ffff:ffff:ffff,BF 2001:43f8:3e0::,2001:43f8:3ef:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:400::,2001:43f8:4ff:ffff:ffff:ffff:ffff:ffff,AO 2001:43f8:600::,2001:43f8:60f:ffff:ffff:ffff:ffff:ffff,NG 2001:43f8:610::,2001:43f8:610:ffff:ffff:ffff:ffff:ffff,TZ 2001:43f8:620::,2001:43f8:620:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:630::,2001:43f8:630:ffff:ffff:ffff:ffff:ffff,MW 2001:43f8:640::,2001:43f8:640:ffff:ffff:ffff:ffff:ffff,MZ 2001:43f8:650::,2001:43f8:650:ffff:ffff:ffff:ffff:ffff,MA 2001:43f8:660::,2001:43f8:660:ffff:ffff:ffff:ffff:ffff,NG 2001:43f8:670::,2001:43f8:670:ffff:ffff:ffff:ffff:ffff,AO 2001:43f8:680::,2001:43f8:680:ffff:ffff:ffff:ffff:ffff,TZ 2001:43f8:6a0::,2001:43f8:6a0:ffff:ffff:ffff:ffff:ffff,CG 2001:43f8:6b0::,2001:43f8:6b3:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:6c0::,2001:43f8:6c0:ffff:ffff:ffff:ffff:ffff,NG 2001:43f8:6d0::,2001:43f8:6d3:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:6e0::,2001:43f8:6e0:ffff:ffff:ffff:ffff:ffff,KE 2001:43f8:700::,2001:43f8:70f:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:720::,2001:43f8:720:ffff:ffff:ffff:ffff:ffff,AO 2001:43f8:750::,2001:43f8:75f:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:760::,2001:43f8:760:ffff:ffff:ffff:ffff:ffff,AO 2001:43f8:770::,2001:43f8:773:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:780::,2001:43f8:780:ffff:ffff:ffff:ffff:ffff,NG 2001:43f8:790::,2001:43f8:790:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:7a0::,2001:43f8:7a0:ffff:ffff:ffff:ffff:ffff,MU 2001:43f8:7b0::,2001:43f8:7b0:ffff:ffff:ffff:ffff:ffff,KE 2001:43f8:7c0::,2001:43f8:7c0:ffff:ffff:ffff:ffff:ffff,AO 2001:43f8:7d0::,2001:43f8:7d0:ffff:ffff:ffff:ffff:ffff,NG 2001:43f8:7e0::,2001:43f8:7e0:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:7f0::,2001:43f8:7f0:ffff:ffff:ffff:ffff:ffff,SD 2001:43f8:800::,2001:43f8:83f:ffff:ffff:ffff:ffff:ffff,GH 2001:43f8:900::,2001:43f8:900:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:910::,2001:43f8:910:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:920::,2001:43f8:920:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:930::,2001:43f8:930:ffff:ffff:ffff:ffff:ffff,MZ 2001:43f8:940::,2001:43f8:940:ffff:ffff:ffff:ffff:ffff,CI 2001:43f8:950::,2001:43f8:950:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:960::,2001:43f8:960:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:970::,2001:43f8:970:ffff:ffff:ffff:ffff:ffff,GM 2001:43f8:980::,2001:43f8:981:ffff:ffff:ffff:ffff:ffff,NA 2001:43f8:990::,2001:43f8:991:ffff:ffff:ffff:ffff:ffff,BI 2001:43f8:9a0::,2001:43f8:9a0:ffff:ffff:ffff:ffff:ffff,BJ 2001:43f8:9b0::,2001:43f8:9b1:ffff:ffff:ffff:ffff:ffff,SZ 2001:43f8:9c0::,2001:43f8:9c1:ffff:ffff:ffff:ffff:ffff,DJ 2001:43f8:9d0::,2001:43f8:9d0:ffff:ffff:ffff:ffff:ffff,AO 2001:43f8:9e0::,2001:43f8:9e0:ffff:ffff:ffff:ffff:ffff,ZW 2001:43f8:9f0::,2001:43f8:9f0:ffff:ffff:ffff:ffff:ffff,NG 2001:43f8:a00::,2001:43f8:a00:ffff:ffff:ffff:ffff:ffff,NG 2001:43f8:a10::,2001:43f8:a11:ffff:ffff:ffff:ffff:ffff,MG 2001:43f8:a20::,2001:43f8:a21:ffff:ffff:ffff:ffff:ffff,SC 2001:43f8:a30::,2001:43f8:a30:ffff:ffff:ffff:ffff:ffff,UG 2001:43f8:a40::,2001:43f8:a40:ffff:ffff:ffff:ffff:ffff,MZ 2001:43f8:a50::,2001:43f8:a50:ffff:ffff:ffff:ffff:ffff,BF 2001:43f8:a60::,2001:43f8:a61:ffff:ffff:ffff:ffff:ffff,LR 2001:43f8:a80::,2001:43f8:a80:ffff:ffff:ffff:ffff:ffff,AO 2001:43f8:a90::,2001:43f8:a90:ffff:ffff:ffff:ffff:ffff,SL 2001:43f8:aa0::,2001:43f8:aa0:ffff:ffff:ffff:ffff:ffff,ZM 2001:43f8:ab0::,2001:43f8:ab0:ffff:ffff:ffff:ffff:ffff,KE 2001:43f8:ac0::,2001:43f8:ac0:ffff:ffff:ffff:ffff:ffff,ZA 2001:43f8:ad0::,2001:43f8:ad0:ffff:ffff:ffff:ffff:ffff,UG 2001:43f8:ae0::,2001:43f8:ae1:ffff:ffff:ffff:ffff:ffff,GH 2001:43f8:af0::,2001:43f8:af1:ffff:ffff:ffff:ffff:ffff,BJ 2001:43f8:b00::,2001:43f8:b00:ffff:ffff:ffff:ffff:ffff,KE 2001:43f8:b10::,2001:43f8:b10:ffff:ffff:ffff:ffff:ffff,NG 2001:43f8:a700::,2001:43f8:a700:ffff:ffff:ffff:ffff:ffff,MU 2001:4400::,2001:4403:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2001:4408::,2001:4408:ffff:ffff:ffff:ffff:ffff:ffff,IN 2001:4410::,2001:4410:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2001:4420::,2001:4420:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:4428::,2001:4428:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2001:4430::,2001:4430:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:4438::,2001:4438:ffff:ffff:ffff:ffff:ffff:ffff,CN 2001:4450::,2001:4450:ffff:ffff:ffff:ffff:ffff:ffff,PH 2001:4458::,2001:4458:ffff:ffff:ffff:ffff:ffff:ffff,MY 2001:4460::,2001:4460:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:4470::,2001:4470:ffff:ffff:ffff:ffff:ffff:ffff,MY 2001:4478::,2001:447b:ffff:ffff:ffff:ffff:ffff:ffff,AU 2001:4480::,2001:4480:ffff:ffff:ffff:ffff:ffff:ffff,HK 2001:4488::,2001:448b:ffff:ffff:ffff:ffff:ffff:ffff,ID 2001:4490::,2001:4493:ffff:ffff:ffff:ffff:ffff:ffff,IN 2001:4498::,2001:4498:ffff:ffff:ffff:ffff:ffff:ffff,MY 2001:44a0::,2001:44a0:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:44a8::,2001:44a8:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:44b0::,2001:44b0:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:44b8::,2001:44b8:ffff:ffff:ffff:ffff:ffff:ffff,AU 2001:44c0::,2001:44c0:ffff:ffff:ffff:ffff:ffff:ffff,IN 2001:44c8::,2001:44c8:ffff:ffff:ffff:ffff:ffff:ffff,TH 2001:44d0::,2001:44df:ffff:ffff:ffff:ffff:ffff:ffff,KR 2001:44f0::,2001:44f0:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:4500::,2001:4500:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:4508::,2001:4508:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:4510::,2001:4517:ffff:ffff:ffff:ffff:ffff:ffff,CN 2001:4528::,2001:452b:ffff:ffff:ffff:ffff:ffff:ffff,IN 2001:4530::,2001:4530:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2001:4538::,2001:4538:ffff:ffff:ffff:ffff:ffff:ffff,PK 2001:4540::,2001:455f:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:4580::,2001:45bf:ffff:ffff:ffff:ffff:ffff:ffff,TW 2001:4600::,2001:46ff:ffff:ffff:ffff:ffff:ffff:ffff,NO 2001:4800::,2001:4808:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4810::,2001:4810:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4818::,2001:4818:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:4828::,2001:4828:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4830::,2001:4830:1100:81ff:ffff:ffff:ffff:ffff,US 2001:4830:1100:8200::,2001:4830:1100:82ff:ffff:ffff:ffff:ffff,CA 2001:4830:1100:8300::,2001:4830:1200:7fff:ffff:ffff:ffff:ffff,US 2001:4830:1200:8000::,2001:4830:1200:ffff:ffff:ffff:ffff:ffff,AU 2001:4830:1201::,2001:4830:1207:ffff:ffff:ffff:ffff:ffff,US 2001:4830:1208::,2001:4830:1208:7fff:ffff:ffff:ffff:ffff,AU 2001:4830:1208:8000::,2001:4830:1212:ffff:ffff:ffff:ffff:ffff,US 2001:4830:1213::,2001:4830:1213:7fff:ffff:ffff:ffff:ffff,AU 2001:4830:1213:8000::,2001:4830:121d:ffff:ffff:ffff:ffff:ffff,US 2001:4830:121e::,2001:4830:121e:ffff:ffff:ffff:ffff:ffff,AU 2001:4830:121f::,2001:4830:1301:ffff:ffff:ffff:ffff:ffff,US 2001:4830:1302::,2001:4830:1302:7fff:ffff:ffff:ffff:ffff,AU 2001:4830:1302:8000::,2001:4830:600f:ffff:ffff:ffff:ffff:ffff,US 2001:4830:6010::,2001:4830:601f:ffff:ffff:ffff:ffff:ffff,GB 2001:4830:6020::,2001:4830:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4838::,2001:4838:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4840::,2001:4840:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4848::,2001:4848:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4850::,2001:4850:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4858::,2001:4858:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4860::,2001:4860:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4868::,2001:4868:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4870::,2001:4871:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4878::,2001:4878:8203:ffff:ffff:ffff:ffff:ffff,US 2001:4878:8204::,2001:4878:8204:7fff:ffff:ffff:ffff:ffff,DE 2001:4878:8204:8000::,2001:4878:8216:ffff:ffff:ffff:ffff:ffff,US 2001:4878:8217::,2001:4878:8217:7fff:ffff:ffff:ffff:ffff,ES 2001:4878:8217:8000::,2001:4878:821f:ffff:ffff:ffff:ffff:ffff,US 2001:4878:8220::,2001:4878:8220:7fff:ffff:ffff:ffff:ffff,SE 2001:4878:8220:8000::,2001:4878:8224:ffff:ffff:ffff:ffff:ffff,US 2001:4878:8225::,2001:4878:8225:7fff:ffff:ffff:ffff:ffff,PL 2001:4878:8225:8000::,2001:4878:8227:ffff:ffff:ffff:ffff:ffff,US 2001:4878:8228::,2001:4878:8228:7fff:ffff:ffff:ffff:ffff,IL 2001:4878:8228:8000::,2001:4878:8233:ffff:ffff:ffff:ffff:ffff,US 2001:4878:8234::,2001:4878:8234:7fff:ffff:ffff:ffff:ffff,GB 2001:4878:8234:8000::,2001:4878:8304:ffff:ffff:ffff:ffff:ffff,US 2001:4878:8305::,2001:4878:8305:7fff:ffff:ffff:ffff:ffff,IN 2001:4878:8305:8000::,2001:4878:8321:ffff:ffff:ffff:ffff:ffff,US 2001:4878:8322::,2001:4878:8322:7fff:ffff:ffff:ffff:ffff,JP 2001:4878:8322:8000::,2001:4878:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4888::,2001:4888:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4890::,2001:4890:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4898::,2001:4898:de07:ffff:ffff:ffff:ffff:ffff,US 2001:4898:de08::,2001:4898:de08:7fff:ffff:ffff:ffff:ffff,BR 2001:4898:de08:8000::,2001:489a:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:48a0::,2001:48a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:48a8::,2001:48a8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:48b0::,2001:48b0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:48b8::,2001:48b8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:48c0::,2001:48c0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:48c8::,2001:48c8:6:ffff:ffff:ffff:ffff:ffff,US 2001:48c8:7::,2001:48c8:7:ffff:ffff:ffff:ffff:ffff,NL 2001:48c8:8::,2001:48c8:f:ffff:ffff:ffff:ffff:ffff,US 2001:48c8:10::,2001:48c8:10:ffff:ffff:ffff:ffff:ffff,SG 2001:48c8:11::,2001:48c8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:48d0::,2001:48d0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:48d8::,2001:48d8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:48e0::,2001:48e0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:48e8::,2001:48e8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:48f8::,2001:48f8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4900::,2001:4900:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:4908::,2001:4908:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4910::,2001:4910:ffff:ffff:ffff:ffff:ffff:ffff,BM 2001:4918::,2001:4918:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4920::,2001:4920:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4928::,2001:4928:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4930::,2001:4930:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4938::,2001:4938:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:4940::,2001:4940:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4948::,2001:4948:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4950::,2001:4950:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4958::,2001:4958:ffff:ffff:ffff:ffff:ffff:ffff,CA 2001:4960::,2001:4960:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4968::,2001:4968:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4970::,2001:4970:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4978::,2001:4978:1e2:ffff:ffff:ffff:ffff:ffff,US 2001:4978:1e3::,2001:4978:1e3:7fff:ffff:ffff:ffff:ffff,CA 2001:4978:1e3:8000::,2001:4978:2d0:ffff:ffff:ffff:ffff:ffff,US 2001:4978:2d1::,2001:4978:2d1:7fff:ffff:ffff:ffff:ffff,CA 2001:4978:2d1:8000::,2001:4978:305:ffff:ffff:ffff:ffff:ffff,US 2001:4978:306::,2001:4978:306:7fff:ffff:ffff:ffff:ffff,CA 2001:4978:306:8000::,2001:4978:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4980::,2001:4980:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4988::,2001:4988:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4990::,2001:4990:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4998::,2001:4998:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:49a0::,2001:49a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:49a8::,2001:49a8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:49b0::,2001:49b0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:49b8::,2001:49b8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:49c0::,2001:49c0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:49c8::,2001:49c8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:49d0::,2001:49d0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:49d8::,2001:49d8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:49e0::,2001:49e0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:49e8::,2001:49e8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:49f0::,2001:49f0:b002:ffff:ffff:ffff:ffff:ffff,US 2001:49f0:b003::,2001:49f0:b003:7fff:ffff:ffff:ffff:ffff,CZ 2001:49f0:b003:8000::,2001:49f0:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:49f8::,2001:49f8:ffff:ffff:ffff:ffff:ffff:ffff,US 2001:4a00::,2001:4a1f:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4b00::,2001:4b07:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:4b08::,2001:4b08:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4b10::,2001:4b10:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4b18::,2001:4b18:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:4b20::,2001:4b28:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:4b30::,2001:4b30:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:4b38::,2001:4b3f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4b40::,2001:4b40:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:4b48::,2001:4b48:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4b50::,2001:4b50:ffff:ffff:ffff:ffff:ffff:ffff,BE 2001:4b58::,2001:4b58:ffff:ffff:ffff:ffff:ffff:ffff,BG 2001:4b60::,2001:4b60:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:4b68::,2001:4b6f:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:4b70::,2001:4b7f:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:4b80::,2001:4b87:ffff:ffff:ffff:ffff:ffff:ffff,NO 2001:4b88::,2001:4b88:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4b90::,2001:4b90:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:4b98::,2001:4b98:ffff:ffff:ffff:ffff:ffff:ffff,FR 2001:4ba0::,2001:4ba0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4ba8::,2001:4baf:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:4bb0::,2001:4bb0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:4bb8::,2001:4bb8:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:4bc0::,2001:4bc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4bc8::,2001:4bc8:ffff:ffff:ffff:ffff:ffff:ffff,AT 2001:4bd0::,2001:4bd0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4bd8::,2001:4bdf:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4be0::,2001:4be0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2001:4be8::,2001:4be8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4bf0::,2001:4bf0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4bf8::,2001:4bf8:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:4c00::,2001:4c07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:4c08::,2001:4c08:2000:ffff:ffff:ffff:ffff:ffff,GB 2001:4c08:2001::,2001:4c08:2001:7fff:ffff:ffff:ffff:ffff,NL 2001:4c08:2001:8000::,2001:4c08:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4c10::,2001:4c10:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:4c20::,2001:4c20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4c28::,2001:4c28::ffff:ffff:ffff:ffff:ffff,NO 2001:4c28:1::,2001:4c28:1:7fff:ffff:ffff:ffff:ffff,RU 2001:4c28:1:8000::,2001:4c28:ffff:ffff:ffff:ffff:ffff:ffff,NO 2001:4c30::,2001:4c30:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:4c38::,2001:4c3f:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:4c40::,2001:4c40:ffff:ffff:ffff:ffff:ffff:ffff,BE 2001:4c48::,2001:4c4f:ffff:ffff:ffff:ffff:ffff:ffff,HU 2001:4c50::,2001:4c57:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4c58::,2001:4c5f:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:4c60::,2001:4c60:ffff:ffff:ffff:ffff:ffff:ffff,ES 2001:4c68::,2001:4c68:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4c70::,2001:4c70:ffff:ffff:ffff:ffff:ffff:ffff,PL 2001:4c78::,2001:4c78:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:4c80::,2001:4c80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4c88::,2001:4c88:ffff:ffff:ffff:ffff:ffff:ffff,IR 2001:4c90::,2001:4c97:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:4c98::,2001:4c98:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4ca0::,2001:4ca0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4ca8::,2001:4ca8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4cb0::,2001:4cb0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4cb8::,2001:4cbf:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:4cc0::,2001:4cc0:ffff:ffff:ffff:ffff:ffff:ffff,PT 2001:4cc8::,2001:4cc8:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:4cd0::,2001:4cd0:ffff:ffff:ffff:ffff:ffff:ffff,IL 2001:4cd8::,2001:4cd8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4ce0::,2001:4ce0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4ce8::,2001:4cf8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4d00::,2001:4d00:ffff:ffff:ffff:ffff:ffff:ffff,AM 2001:4d08::,2001:4d08:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4d10::,2001:4d10:ffff:ffff:ffff:ffff:ffff:ffff,ES 2001:4d18::,2001:4d18:ffff:ffff:ffff:ffff:ffff:ffff,RO 2001:4d20::,2001:4d20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4d30::,2001:4d30:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4d38::,2001:4d38:ffff:ffff:ffff:ffff:ffff:ffff,IT 2001:4d48::,2001:4d48:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4d50::,2001:4d50:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4d58::,2001:4d58:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:4d60::,2001:4d60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:4d68::,2001:4d68:ffff:ffff:ffff:ffff:ffff:ffff,IE 2001:4d70::,2001:4d70:ffff:ffff:ffff:ffff:ffff:ffff,BG 2001:4d78::,2001:4d78:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4d80::,2001:4d80:ffff:ffff:ffff:ffff:ffff:ffff,RO 2001:4d88::,2001:4d88:1010:ffff:ffff:ffff:ffff:ffff,DE 2001:4d88:1011::,2001:4d88:1011:7fff:ffff:ffff:ffff:ffff,ZA 2001:4d88:1011:8000::,2001:4d88:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4d90::,2001:4d90:ffff:ffff:ffff:ffff:ffff:ffff,ES 2001:4d98::,2001:4d98:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:4da0::,2001:4da7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2001:4da8::,2001:4da8:ffff:ffff:ffff:ffff:ffff:ffff,NO 2001:4db0::,2001:4db0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4db8::,2001:4db8:ffff:ffff:ffff:ffff:ffff:ffff,SE 2001:4dc0::,2001:4dc0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2001:4dc8::,2001:4dc8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4dd0::,2001:4dd7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2001:4dd8::,2001:4dd8:ffff:ffff:ffff:ffff:ffff:ffff,NO 2001:4de0::,2001:4de0:2400:ffff:ffff:ffff:ffff:ffff,NL 2001:4de0:2401::,2001:4de0:2401:7fff:ffff:ffff:ffff:ffff,US 2001:4de0:2401:8000::,2001:4de0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2001:4de8::,2001:4de8:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2001:4df0::,2001:4df0:ffff:ffff:ffff:ffff:ffff:ffff,IL 2001:8000::,2001:8fff:ffff:ffff:ffff:ffff:ffff:ffff,AU 2001:a000::,2001:a7ff:ffff:ffff:ffff:ffff:ffff:ffff,JP 2001:b000::,2001:b010:fc7f:ffff:ffff:ffff:ffff:ffff,TW 2001:b010:fc80::,2001:b010:fc80:7fff:ffff:ffff:ffff:ffff,CN 2001:b010:fc80:8000::,2001:b7ff:ffff:ffff:ffff:ffff:ffff:ffff,TW 2003::,2003:45:2d04:7fff:ffff:ffff:ffff:ffff,DE 2003:45:2d04:8000::,2003:45:2d04:ffff:ffff:ffff:ffff:ffff,TR 2003:45:2d05::,2003:45:2d35:7fff:ffff:ffff:ffff:ffff,DE 2003:45:2d35:8000::,2003:45:2d35:ffff:ffff:ffff:ffff:ffff,TR 2003:45:2d36::,2003:45:2d36:7fff:ffff:ffff:ffff:ffff,DE 2003:45:2d36:8000::,2003:45:2d36:ffff:ffff:ffff:ffff:ffff,TR 2003:45:2d37::,2003:4b:ae58:ffff:ffff:ffff:ffff:ffff,DE 2003:4b:ae59::,2003:4b:ae59:7fff:ffff:ffff:ffff:ffff,PL 2003:4b:ae59:8000::,2003:56:ae38:ffff:ffff:ffff:ffff:ffff,DE 2003:56:ae39::,2003:56:ae39:7fff:ffff:ffff:ffff:ffff,PL 2003:56:ae39:8000::,2003:61:ea1b:ffff:ffff:ffff:ffff:ffff,DE 2003:61:ea1c::,2003:61:ea1c:7fff:ffff:ffff:ffff:ffff,GB 2003:61:ea1c:8000::,2003:62:4e56:7fff:ffff:ffff:ffff:ffff,DE 2003:62:4e56:8000::,2003:62:4e56:ffff:ffff:ffff:ffff:ffff,CH 2003:62:4e57::,2003:77:8f34:ffff:ffff:ffff:ffff:ffff,DE 2003:77:8f35::,2003:77:8f35:7fff:ffff:ffff:ffff:ffff,NL 2003:77:8f35:8000::,2003:7a:8943:7fff:ffff:ffff:ffff:ffff,DE 2003:7a:8943:8000::,2003:7a:8943:ffff:ffff:ffff:ffff:ffff,US 2003:7a:8944::,2003:84:ab78:ffff:ffff:ffff:ffff:ffff,DE 2003:84:ab79::,2003:84:ab79:7fff:ffff:ffff:ffff:ffff,RO 2003:84:ab79:8000::,2003:1fff:ffff:ffff:ffff:ffff:ffff:ffff,DE 2067:8e00::,2067:8e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2160:150::,2160:150:7fff:ffff:ffff:ffff:ffff:ffff,US 2400::,2400:fff:ffff:ffff:ffff:ffff:ffff:ffff,KR 2400:1000::,2400:1000:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:1100::,2400:1100:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:1200::,2400:1200:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:1300::,2400:1300:ffff:ffff:ffff:ffff:ffff:ffff,TW 2400:1380::,2400:1380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:1400::,2400:1400:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:1480::,2400:1480:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:1500::,2400:1500:ffff:ffff:ffff:ffff:ffff:ffff,TW 2400:1580::,2400:1580:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:1600::,2400:1600:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:1680::,2400:1680:ffff:ffff:ffff:ffff:ffff:ffff,PK 2400:1700::,2400:1700:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:1780::,2400:1780:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:1800::,2400:1800:ffff:ffff:ffff:ffff:ffff:ffff,KR 2400:1880::,2400:1880:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:1900::,2400:1900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:1980::,2400:1980:ffff:ffff:ffff:ffff:ffff:ffff,AF 2400:1a00::,2400:1a00:ffff:ffff:ffff:ffff:ffff:ffff,NP 2400:1a80::,2400:1a80:ffff:ffff:ffff:ffff:ffff:ffff,PK 2400:1b00::,2400:1b00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:1b80::,2400:1b80:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:1c00::,2400:1c00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:1c80::,2400:1c80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:1d00::,2400:1d00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:1d80::,2400:1d80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:1e00::,2400:1e00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:1e80::,2400:1e80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:1f00::,2400:1f00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:1f80::,2400:1f80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:2000::,2400:3000:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:3080::,2400:3080:ffff:ffff:ffff:ffff:ffff:ffff,AF 2400:3100::,2400:3100:ffff:ffff:ffff:ffff:ffff:ffff,VU 2400:3180::,2400:3180:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:3200::,2400:3200:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:3280::,2400:3280:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:3300::,2400:3300:ffff:ffff:ffff:ffff:ffff:ffff,KR 2400:3380::,2400:3380:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:3400::,2400:3400:ffff:ffff:ffff:ffff:ffff:ffff,VU 2400:3480::,2400:3480:ffff:ffff:ffff:ffff:ffff:ffff,TH 2400:3500::,2400:3500:ffff:ffff:ffff:ffff:ffff:ffff,TV 2400:3580::,2400:3580:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:3600::,2400:3600:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:3680::,2400:3680:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:3800::,2400:3800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:3880::,2400:3880:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:3900::,2400:3900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:3980::,2400:3980:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:3a00::,2400:3a00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:3a80::,2400:3a80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:3b00::,2400:3b00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:3b80::,2400:3b80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:3c00::,2400:3c00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:3c80::,2400:3c80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:3d00::,2400:3d00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:3d80::,2400:3d80:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:3e00::,2400:3e00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:3e80::,2400:3e80:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:3f00::,2400:3f00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:3f80::,2400:3f80:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:4000::,2400:43ff:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:4400::,2400:4400:ffff:ffff:ffff:ffff:ffff:ffff,MY 2400:4480::,2400:4480:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:4500::,2400:4500:ffff:ffff:ffff:ffff:ffff:ffff,TW 2400:4580::,2400:4580:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:4600::,2400:4600:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:4680::,2400:4680:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:4700::,2400:4700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:4780::,2400:4780:ffff:ffff:ffff:ffff:ffff:ffff,KR 2400:4800::,2400:4800:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:4880::,2400:4880:ffff:ffff:ffff:ffff:ffff:ffff,KH 2400:4900::,2400:4900:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:4980::,2400:4980:ffff:ffff:ffff:ffff:ffff:ffff,KR 2400:4a00::,2400:4a00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:4a80::,2400:4a80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:4b00::,2400:4b00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:4b80::,2400:4b80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:4c00::,2400:4c00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:4c80::,2400:4c80:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:4d00::,2400:4d00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:4e00::,2400:4e00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:4e80::,2400:4e80:ffff:ffff:ffff:ffff:ffff:ffff,TW 2400:4f00::,2400:4f00:ffff:ffff:ffff:ffff:ffff:ffff,PK 2400:5000::,2400:5000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:5080::,2400:5080:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:5100::,2400:5100:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:5180::,2400:5180:ffff:ffff:ffff:ffff:ffff:ffff,AF 2400:5200::,2400:5200:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:5280::,2400:5280:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:5300::,2400:5300:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:5380::,2400:5380:ffff:ffff:ffff:ffff:ffff:ffff,MY 2400:5400::,2400:5400:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:5480::,2400:5480:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:5500::,2400:5500:ffff:ffff:ffff:ffff:ffff:ffff,PH 2400:5580::,2400:5580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:5600::,2400:5600:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:5680::,2400:5680:ffff:ffff:ffff:ffff:ffff:ffff,MY 2400:5700::,2400:5700:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:5780::,2400:5780:ffff:ffff:ffff:ffff:ffff:ffff,TH 2400:5800::,2400:5800:ffff:ffff:ffff:ffff:ffff:ffff,BD 2400:5880::,2400:5880:ffff:ffff:ffff:ffff:ffff:ffff,MY 2400:5900::,2400:5900:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:5a00::,2400:5a00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:5a80::,2400:5a80:ffff:ffff:ffff:ffff:ffff:ffff,BD 2400:5b00::,2400:5b00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:5b80::,2400:5b80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:5c80::,2400:5c80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:5d00::,2400:5d00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:5d80::,2400:5d80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:5e00::,2400:5e00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:5e80::,2400:5e80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:5f00::,2400:5f00:ffff:ffff:ffff:ffff:ffff:ffff,PF 2400:5f80::,2400:5f80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:6000::,2400:6000:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:6080::,2400:6080:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:6100::,2400:6100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:6180::,2400:6180:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:6200::,2400:6200:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:6280::,2400:6280:ffff:ffff:ffff:ffff:ffff:ffff,TH 2400:6300::,2400:6300:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:6380::,2400:6380:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:6400::,2400:6400:ffff:ffff:ffff:ffff:ffff:ffff,TO 2400:6480::,2400:6480:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:6500::,2400:6500:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:6580::,2400:6580:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:6600::,2400:6600:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:6680::,2400:6680:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:6700::,2400:6700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:6780::,2400:6780:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:6800::,2400:6800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:6880::,2400:6880:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:6900::,2400:6900:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:6980::,2400:6980:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:6a00::,2400:6a00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:6a80::,2400:6a80:ffff:ffff:ffff:ffff:ffff:ffff,PH 2400:6b00::,2400:6b00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:6b80::,2400:6b80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:6c00::,2400:6c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:6c80::,2400:6c80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:6d00::,2400:6d00:ffff:ffff:ffff:ffff:ffff:ffff,FJ 2400:6d80::,2400:6d80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:6e00::,2400:6e00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:6e80::,2400:6e80:ffff:ffff:ffff:ffff:ffff:ffff,MY 2400:6f00::,2400:6f00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:6f80::,2400:6f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:7000::,2400:7000:ffff:ffff:ffff:ffff:ffff:ffff,TW 2400:7080::,2400:7080:ffff:ffff:ffff:ffff:ffff:ffff,NP 2400:7100::,2400:7100:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:7180::,2400:7180:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:7200::,2400:7200:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:7300::,2400:7300:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:7380::,2400:7380:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:7400::,2400:7400:ffff:ffff:ffff:ffff:ffff:ffff,MY 2400:7480::,2400:7480:ffff:ffff:ffff:ffff:ffff:ffff,MN 2400:7500::,2400:7500:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:7600::,2400:7600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:7680::,2400:7680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:7700::,2400:7700:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:7780::,2400:7780:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:7800::,2400:7800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:7880::,2400:7880:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:7900::,2400:7900:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:7980::,2400:7980:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:7a00::,2400:7a00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:7a80::,2400:7a80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:7b00::,2400:7b00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:7b80::,2400:7b83:ffff:ffff:ffff:ffff:ffff:ffff,TH 2400:7c00::,2400:7c00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2400:7c80::,2400:7c80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:7d00::,2400:7d00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:7d80::,2400:7d80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:7e00::,2400:7e00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:7e80::,2400:7e80:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:7f00::,2400:7f00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:7f80::,2400:7f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:8000::,2400:8000:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:8080::,2400:8080:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:8100::,2400:8100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:8180::,2400:8180:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:8200::,2400:8200:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:8280::,2400:8280:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:8300::,2400:8300:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:8380::,2400:8380:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:8400::,2400:8400:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:8480::,2400:8480:ffff:ffff:ffff:ffff:ffff:ffff,MM 2400:8500::,2400:8500:24ff:ffff:ffff:ffff:ffff:ffff,JP 2400:8500:2500::,2400:8500:2500:7fff:ffff:ffff:ffff:ffff,US 2400:8500:2500:8000::,2400:8500:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:8580::,2400:8580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:8600::,2400:8600:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:8680::,2400:8680:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:8700::,2400:8700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:8780::,2400:8780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:8800::,2400:8800:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:8880::,2400:8880:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:8900::,2400:8900::f03c:91ff:fe70:9ac8,SG 2400:8900::f03c:91ff:fe70:9ac9,2400:8900::f03c:91ff:fe70:9ac9,JP 2400:8900::f03c:91ff:fe70:9aca,2400:8900:e000:ffff:ffff:ffff:ffff:ffff,SG 2400:8900:e001::,2400:8900:e001:29ff:ffff:ffff:ffff:ffff,CN 2400:8900:e001:2a00::,2400:8900:e001:2a00::,SG 2400:8900:e001:2a00::1,2400:8900:e001:7fff:ffff:ffff:ffff:ffff,CN 2400:8900:e001:8000::,2400:8901:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:8980::,2400:8980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:8a00::,2400:8a00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:8a80::,2400:8a80:ffff:ffff:ffff:ffff:ffff:ffff,PH 2400:8b00::,2400:8b00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:8b80::,2400:8b80:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:8c00::,2400:8c00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:8c80::,2400:8c80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:8d00::,2400:8d00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:8d80::,2400:8d80:ffff:ffff:ffff:ffff:ffff:ffff,KH 2400:8e00::,2400:8e00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:8e80::,2400:8e80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:8f00::,2400:8f00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:8f80::,2400:8f80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:9000::,2400:9000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:9080::,2400:9080:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:9100::,2400:9100:ffff:ffff:ffff:ffff:ffff:ffff,VN 2400:9180::,2400:9180:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:9200::,2400:9200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:9280::,2400:9280:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:9300::,2400:9300:ffff:ffff:ffff:ffff:ffff:ffff,PG 2400:9380::,2400:9381:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:9400::,2400:9400:ffff:ffff:ffff:ffff:ffff:ffff,BN 2400:9480::,2400:9480:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:9500::,2400:9500:ffff:ffff:ffff:ffff:ffff:ffff,NP 2400:9580::,2400:9580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:9600::,2400:9600:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:9700::,2400:9700:ffff:ffff:ffff:ffff:ffff:ffff,NP 2400:9780::,2400:9780:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:9800::,2400:9800:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:9880::,2400:9880:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:9900::,2400:9900:ffff:ffff:ffff:ffff:ffff:ffff,NP 2400:9980::,2400:9980:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:9a00::,2400:9a00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:9a80::,2400:9a80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:9b00::,2400:9b00:ffff:ffff:ffff:ffff:ffff:ffff,NP 2400:9b80::,2400:9b80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:9c00::,2400:9c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:9c80::,2400:9c80:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:9d00::,2400:9d00:ffff:ffff:ffff:ffff:ffff:ffff,PH 2400:9d80::,2400:9d80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:9e00::,2400:9e00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:9e80::,2400:9e80:ffff:ffff:ffff:ffff:ffff:ffff,KR 2400:9f80::,2400:9f80:ffff:ffff:ffff:ffff:ffff:ffff,KR 2400:a000::,2400:a000:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:a080::,2400:a080:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:a280::,2400:a280:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:a300::,2400:a300:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:a380::,2400:a380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:a400::,2400:a400:ffff:ffff:ffff:ffff:ffff:ffff,NP 2400:a480::,2400:a480:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:a500::,2400:a500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:a580::,2400:a580:ffff:ffff:ffff:ffff:ffff:ffff,KR 2400:a600::,2400:a600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:a680::,2400:a680:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:a700::,2400:a700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:a780::,2400:a780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:a800::,2400:a800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:a880::,2400:a880:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:a900::,2400:a900:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:a980::,2400:a980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:aa00::,2400:aa00:ffff:ffff:ffff:ffff:ffff:ffff,LA 2400:aa80::,2400:aa80:ffff:ffff:ffff:ffff:ffff:ffff,TW 2400:ab00::,2400:ab00:ffff:ffff:ffff:ffff:ffff:ffff,KR 2400:ab80::,2400:ab80:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:ac00::,2400:ac00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:ac80::,2400:ac80:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:ad00::,2400:ad00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:ad80::,2400:ad80:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:ae00::,2400:ae00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:ae80::,2400:ae80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:af80::,2400:af80:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:b000::,2400:b000:ffff:ffff:ffff:ffff:ffff:ffff,PH 2400:b080::,2400:b080:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:b100::,2400:b100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:b180::,2400:b180:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:b200::,2400:b200:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:b300::,2400:b300:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:b380::,2400:b380:ffff:ffff:ffff:ffff:ffff:ffff,TW 2400:b400::,2400:b400:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:b480::,2400:b480:ffff:ffff:ffff:ffff:ffff:ffff,TW 2400:b500::,2400:b500:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:b580::,2400:b580:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:b600::,2400:b600:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:b680::,2400:b680:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:b700::,2400:b700:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:b780::,2400:b780:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:b800::,2400:b800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:b880::,2400:b880:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:b980::,2400:b980:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:ba00::,2400:ba00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:ba80::,2400:ba80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:bb00::,2400:bb00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:bc00::,2400:bc00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:bc80::,2400:bc80:ffff:ffff:ffff:ffff:ffff:ffff,VN 2400:bd00::,2400:bd00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:bd80::,2400:bd80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:be00::,2400:be00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:be80::,2400:be80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:bf00::,2400:bf00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:bf80::,2400:bf80:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:c000::,2400:c000:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:c080::,2400:c080:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:c100::,2400:c100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:c180::,2400:c180:ffff:ffff:ffff:ffff:ffff:ffff,LA 2400:c200::,2400:c200:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:c300::,2400:c300:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:c380::,2400:c380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:c400::,2400:c400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:c401::,2400:c401:ffff:ffff:ffff:ffff:ffff:ffff,US 2400:c500::,2400:c500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:c580::,2400:c580:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:c600::,2400:c600:ffff:ffff:ffff:ffff:ffff:ffff,BD 2400:c680::,2400:c680:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:c700::,2400:c700:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:c780::,2400:c780:ffff:ffff:ffff:ffff:ffff:ffff,TW 2400:c800::,2400:c807:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:c880::,2400:c880:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:c900::,2400:c900:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:c980::,2400:c980:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:ca00::,2400:ca00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2400:cb00::,2400:cb00:20:ffff:ffff:ffff:ffff:ffff,HK 2400:cb00:21::,2400:cb00:21:7fff:ffff:ffff:ffff:ffff,IT 2400:cb00:21:8000::,2400:cb00:38:ffff:ffff:ffff:ffff:ffff,HK 2400:cb00:39::,2400:cb00:39:7fff:ffff:ffff:ffff:ffff,IT 2400:cb00:39:8000::,2400:cb00:f00c:ffff:ffff:ffff:ffff:ffff,HK 2400:cb00:f00d::,2400:cb00:f00d:7fff:ffff:ffff:ffff:ffff,US 2400:cb00:f00d:8000::,2400:cb00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:cb80::,2400:cb80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:cc00::,2400:cc00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:cc80::,2400:cc80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:cd00::,2400:cd00:ffff:ffff:ffff:ffff:ffff:ffff,TH 2400:cd80::,2400:cd80:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:ce00::,2400:ce00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:ce80::,2400:ce80:ffff:ffff:ffff:ffff:ffff:ffff,BD 2400:cf00::,2400:cf00:ffff:ffff:ffff:ffff:ffff:ffff,KR 2400:cf80::,2400:cf80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:d000::,2400:d000:ffff:ffff:ffff:ffff:ffff:ffff,PH 2400:d100::,2400:d100:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:d180::,2400:d180:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:d200::,2400:d200:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:d280::,2400:d280:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:d300::,2400:d300:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:d380::,2400:d380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:d400::,2400:d400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:d480::,2400:d480:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:d500::,2400:d500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:d580::,2400:d580:ffff:ffff:ffff:ffff:ffff:ffff,TW 2400:d600::,2400:d600:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:d680::,2400:d680:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:d700::,2400:d700:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:d780::,2400:d780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:d800::,2400:d803:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:d880::,2400:d880:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:d900::,2400:d900:ffff:ffff:ffff:ffff:ffff:ffff,LK 2400:d980::,2400:d980:ffff:ffff:ffff:ffff:ffff:ffff,BD 2400:da00::,2400:da00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:da80::,2400:da80:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:db00::,2400:db00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:db80::,2400:db80:ffff:ffff:ffff:ffff:ffff:ffff,MN 2400:dc00::,2400:dc00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:dc80::,2400:dc80:ffff:ffff:ffff:ffff:ffff:ffff,BD 2400:dd00::,2400:dd0f:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:dd80::,2400:dd80:ffff:ffff:ffff:ffff:ffff:ffff,BD 2400:de00::,2400:de00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:de80::,2400:de80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:df00::,2400:df00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:df80::,2400:df80:ffff:ffff:ffff:ffff:ffff:ffff,MY 2400:e000::,2400:e000:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:e100::,2400:e100:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:e180::,2400:e180:ffff:ffff:ffff:ffff:ffff:ffff,KR 2400:e200::,2400:e200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:e300::,2400:e300:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:e400::,2400:e400:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:e480::,2400:e480:ffff:ffff:ffff:ffff:ffff:ffff,TW 2400:e500::,2400:e500:ffff:ffff:ffff:ffff:ffff:ffff,AF 2400:e680::,2400:e680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:e780::,2400:e780:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:e880::,2400:e880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:e900::,2400:e900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:e980::,2400:e980:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:ea00::,2400:ea00:ffff:ffff:ffff:ffff:ffff:ffff,TH 2400:ea80::,2400:ea80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:eb00::,2400:eb00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:eb80::,2400:eb80:ffff:ffff:ffff:ffff:ffff:ffff,BD 2400:ec00::,2400:ec00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:ec80::,2400:ec80:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:ed00::,2400:ed00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:ed80::,2400:ed80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:ee00::,2400:ee00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:ee80::,2400:ee80:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2400:ef00::,2400:ef00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:ef80::,2400:ef80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:f000::,2400:f000:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:f080::,2400:f080:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:f100::,2400:f100:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:f180::,2400:f180:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:f200::,2400:f200:ffff:ffff:ffff:ffff:ffff:ffff,PH 2400:f280::,2400:f280:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:f300::,2400:f300:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:f380::,2400:f380:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:f400::,2400:f400:ffff:ffff:ffff:ffff:ffff:ffff,JP 2400:f480::,2400:f480:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:f580::,2400:f580:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:f600::,2400:f600:ffff:ffff:ffff:ffff:ffff:ffff,PH 2400:f680::,2400:f680:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:f700::,2400:f700:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:f780::,2400:f780:ffff:ffff:ffff:ffff:ffff:ffff,IN 2400:f800::,2400:f800:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:f880::,2400:f880:ffff:ffff:ffff:ffff:ffff:ffff,HK 2400:f900::,2400:f900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:f980::,2400:f980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:fa00::,2400:fa00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:fa80::,2400:fa80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:fb00::,2400:fb00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2400:fb80::,2400:fb80:ffff:ffff:ffff:ffff:ffff:ffff,SG 2400:fc00::,2400:fc00:ffff:ffff:ffff:ffff:ffff:ffff,PK 2400:fc80::,2400:fc80:ffff:ffff:ffff:ffff:ffff:ffff,TW 2400:fd00::,2400:fd00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2400:fd80::,2400:fd80:ffff:ffff:ffff:ffff:ffff:ffff,KR 2400:fe00::,2400:fe00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2400:fe80::,2400:fe80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2400:ff00::,2400:ff00:ffff:ffff:ffff:ffff:ffff:ffff,LK 2400:ff80::,2400:ff80:ffff:ffff:ffff:ffff:ffff:ffff,AF 2401::,2401:1:ffff:ffff:ffff:ffff:ffff:ffff,PK 2401:80::,2401:80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:100::,2401:100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:180::,2401:180:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:200::,2401:200:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:280::,2401:280:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:300::,2401:300:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:380::,2401:380:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:400::,2401:403:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:500::,2401:500:ffff:ffff:ffff:ffff:ffff:ffff,TH 2401:580::,2401:580:ffff:ffff:ffff:ffff:ffff:ffff,BD 2401:600::,2401:600:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:680::,2401:680:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:700::,2401:700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:780::,2401:780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:800::,2401:800:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:880::,2401:880:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:900::,2401:900:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:980::,2401:980:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:a00::,2401:a00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:a80::,2401:a80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:b00::,2401:b00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:b80::,2401:b80:ffff:ffff:ffff:ffff:ffff:ffff,PH 2401:c00::,2401:c00:ffff:ffff:ffff:ffff:ffff:ffff,NC 2401:c80::,2401:c80:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:d00::,2401:d00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:d80::,2401:d80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:e00::,2401:e00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:e80::,2401:e80:ffff:ffff:ffff:ffff:ffff:ffff,TH 2401:f00::,2401:f00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:f80::,2401:f80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:1000::,2401:1000:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:1100::,2401:1100:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:1200::,2401:1200:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:1280::,2401:1280:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:1300::,2401:1300:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:1380::,2401:1380:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:1400::,2401:1400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:1480::,2401:1480:ffff:ffff:ffff:ffff:ffff:ffff,KH 2401:1500::,2401:1500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:1580::,2401:1580:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:1600::,2401:1600:ffff:ffff:ffff:ffff:ffff:ffff,PH 2401:1680::,2401:1680:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:1700::,2401:1700:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:1780::,2401:1780:ffff:ffff:ffff:ffff:ffff:ffff,TW 2401:1800::,2401:1801:7800:ffff:ffff:ffff:ffff:ffff,HK 2401:1801:7801::,2401:1801:7801:7fff:ffff:ffff:ffff:ffff,AU 2401:1801:7801:8000::,2401:1801:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:1880::,2401:1880:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:1900::,2401:1900:ffff:ffff:ffff:ffff:ffff:ffff,BD 2401:1980::,2401:1980:ffff:ffff:ffff:ffff:ffff:ffff,BD 2401:1a00::,2401:1a00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:1a80::,2401:1a80:ffff:ffff:ffff:ffff:ffff:ffff,TH 2401:1b00::,2401:1b00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:1b80::,2401:1b80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:1c00::,2401:1c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:1c80::,2401:1c80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:1d00::,2401:1d00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:1d80::,2401:1d80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:1e00::,2401:1e00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:1e80::,2401:1e80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:1f00::,2401:1f01:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:1f80::,2401:1f80:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:2000::,2401:2000:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:2001::,2401:2001:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:2080::,2401:2080:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:2100::,2401:2100:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:2180::,2401:2180:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:2200::,2401:2200:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:2280::,2401:2280:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:2300::,2401:2300:ffff:ffff:ffff:ffff:ffff:ffff,PH 2401:2380::,2401:2380:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:2400::,2401:2400:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:2480::,2401:2480:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:2500::,2401:2500:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:2580::,2401:2580:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:2600::,2401:2600:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:2680::,2401:2680:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:2700::,2401:2700:ffff:ffff:ffff:ffff:ffff:ffff,KR 2401:2780::,2401:2780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:2800::,2401:2800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:2880::,2401:2880:ffff:ffff:ffff:ffff:ffff:ffff,PH 2401:2900::,2401:2900:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:2980::,2401:2980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:2a00::,2401:2a00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:2a80::,2401:2a80:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:2b00::,2401:2b00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2401:2b80::,2401:2b80:ffff:ffff:ffff:ffff:ffff:ffff,NP 2401:2c00::,2401:2c00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:2c80::,2401:2c80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:2d00::,2401:2d00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:2d80::,2401:2d80:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:2e00::,2401:2e00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:2e80::,2401:2e80:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:2f00::,2401:2f00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:2f80::,2401:2f80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:3000::,2401:3000:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:3080::,2401:3080:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:3100::,2401:3100:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:3180::,2401:3180:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:3200::,2401:3200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:3280::,2401:3280:ffff:ffff:ffff:ffff:ffff:ffff,MO 2401:3300::,2401:3300:ffff:ffff:ffff:ffff:ffff:ffff,BD 2401:3380::,2401:3380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:3400::,2401:3400:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:3480::,2401:3480:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:3580::,2401:3580:ffff:ffff:ffff:ffff:ffff:ffff,BD 2401:3600::,2401:3600:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:3680::,2401:3680:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:3780::,2401:3780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:3800::,2401:3800:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:3880::,2401:3880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:3900::,2401:3900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:3980::,2401:3980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:3a00::,2401:3a00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:3a80::,2401:3a80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:3b00::,2401:3b00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:3b80::,2401:3b80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:3c00::,2401:3c00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:3c80::,2401:3c80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:3d00::,2401:3d0f:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:3d80::,2401:3d80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:3e00::,2401:3e00:ffff:ffff:ffff:ffff:ffff:ffff,KH 2401:3e80::,2401:3e80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:3f00::,2401:3f00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:3f80::,2401:3f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:4000::,2401:4000:ffff:ffff:ffff:ffff:ffff:ffff,KR 2401:4080::,2401:4080:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:4100::,2401:4100:ffff:ffff:ffff:ffff:ffff:ffff,PK 2401:4180::,2401:4180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:4200::,2401:4200:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:4280::,2401:4280:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:4300::,2401:4300:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:4380::,2401:4380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:4400::,2401:4400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:4480::,2401:4480:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:4580::,2401:4580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:4600::,2401:4600:ffff:ffff:ffff:ffff:ffff:ffff,BD 2401:4680::,2401:4680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:4700::,2401:4700:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:4780::,2401:4780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:4800::,2401:4800:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:4880::,2401:4880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:4900::,2401:4900:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:4a00::,2401:4a00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:4a80::,2401:4a80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:4b00::,2401:4b00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:4b80::,2401:4b80:ffff:ffff:ffff:ffff:ffff:ffff,TL 2401:4c00::,2401:4c00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:4c80::,2401:4c80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:4d00::,2401:4d00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:4d80::,2401:4d80:ffff:ffff:ffff:ffff:ffff:ffff,KH 2401:4e00::,2401:4e00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:4e80::,2401:4e80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:4f00::,2401:4f00:ffff:ffff:ffff:ffff:ffff:ffff,TH 2401:4f80::,2401:4f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:5000::,2401:5000:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:5080::,2401:5080:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:5100::,2401:5100:ffff:ffff:ffff:ffff:ffff:ffff,FJ 2401:5180::,2401:5180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:5200::,2401:5200:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:5280::,2401:5280:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:5300::,2401:5300:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:5400::,2401:5400:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:5480::,2401:5480:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:5500::,2401:5500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:5680::,2401:5680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:5700::,2401:5700:ffff:ffff:ffff:ffff:ffff:ffff,TH 2401:5780::,2401:5780:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:5800::,2401:5800:ffff:ffff:ffff:ffff:ffff:ffff,BD 2401:5880::,2401:5880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:5900::,2401:5900:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:5980::,2401:5980:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:5a00::,2401:5a00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:5a80::,2401:5a80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:5b00::,2401:5b00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:5b80::,2401:5b80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:5c00::,2401:5c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:5c80::,2401:5c80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:5d00::,2401:5d00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2401:5e00::,2401:5e00:ffff:ffff:ffff:ffff:ffff:ffff,TW 2401:5e80::,2401:5e80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:5f00::,2401:5f00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:5f80::,2401:5f80:ffff:ffff:ffff:ffff:ffff:ffff,VN 2401:6000::,2401:6fff:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:7000::,2401:7000:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:7080::,2401:7080:ffff:ffff:ffff:ffff:ffff:ffff,TW 2401:7100::,2401:7100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:7180::,2401:7180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:7200::,2401:7200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:7300::,2401:7300:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:7380::,2401:7380:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:7400::,2401:7401:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:7480::,2401:7480:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:7500::,2401:7500:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:7580::,2401:7580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:7600::,2401:7600:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:7680::,2401:7680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:7700::,2401:7700:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:7780::,2401:7780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:7800::,2401:7800:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:7880::,2401:7880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:7900::,2401:7900:ffff:ffff:ffff:ffff:ffff:ffff,LK 2401:7980::,2401:7980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:7a00::,2401:7a00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:7a80::,2401:7a80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:7b00::,2401:7b00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:7b80::,2401:7b80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:7c00::,2401:7c00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:7c80::,2401:7c80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:7d00::,2401:7d00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:7d80::,2401:7d80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:7e00::,2401:7e00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:7e80::,2401:7e80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:7f00::,2401:7f00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:7f80::,2401:7f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:8000::,2401:8000::7fff:ffff:ffff:ffff:ffff,CN 2401:8000:0:8000::,2401:803f:ffff:ffff:ffff:ffff:ffff:ffff,TW 2401:8080::,2401:8080:ffff:ffff:ffff:ffff:ffff:ffff,AF 2401:8100::,2401:8100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:8180::,2401:8180:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:8200::,2401:8200:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:8280::,2401:8280:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:8300::,2401:8300:ffff:ffff:ffff:ffff:ffff:ffff,MV 2401:8380::,2401:8380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:8400::,2401:8400:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:8480::,2401:8480:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:8500::,2401:8500:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:8580::,2401:8580:ffff:ffff:ffff:ffff:ffff:ffff,BD 2401:8600::,2401:8600:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:8680::,2401:8680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:8700::,2401:8700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:8780::,2401:8780:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:8800::,2401:8800:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:8880::,2401:8880:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:8900::,2401:8900:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:8980::,2401:8980:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:8a00::,2401:8a00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:8a80::,2401:8a80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:8b00::,2401:8b00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:8b80::,2401:8b80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:8c00::,2401:8c01:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:8c80::,2401:8c80:ffff:ffff:ffff:ffff:ffff:ffff,BD 2401:8d00::,2401:8d00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:8e00::,2401:8e00:ffff:ffff:ffff:ffff:ffff:ffff,PK 2401:8e80::,2401:8e80:ffff:ffff:ffff:ffff:ffff:ffff,PH 2401:8f00::,2401:8f00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:8f80::,2401:8f80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:9080::,2401:9080:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:9100::,2401:9100:ffff:ffff:ffff:ffff:ffff:ffff,MO 2401:9180::,2401:9180:ffff:ffff:ffff:ffff:ffff:ffff,TW 2401:9200::,2401:9200:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:9280::,2401:9280:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:9300::,2401:9300:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:9380::,2401:9380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:9400::,2401:9400:ffff:ffff:ffff:ffff:ffff:ffff,PH 2401:9480::,2401:9480:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:9500::,2401:9500:ffff:ffff:ffff:ffff:ffff:ffff,PH 2401:9580::,2401:9580:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:9600::,2401:9600:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:9680::,2401:9680:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:9700::,2401:9700:ffff:ffff:ffff:ffff:ffff:ffff,KH 2401:9780::,2401:9780:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:9800::,2401:9800:ffff:ffff:ffff:ffff:ffff:ffff,PH 2401:9880::,2401:9880:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:9980::,2401:9980:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:9a00::,2401:9a00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:9a80::,2401:9a80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:9b00::,2401:9b00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:9b80::,2401:9b80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:9c00::,2401:9c00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2401:9c80::,2401:9c80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:9d00::,2401:9d00:ffff:ffff:ffff:ffff:ffff:ffff,TH 2401:9d80::,2401:9d80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:9e00::,2401:9e00:ffff:ffff:ffff:ffff:ffff:ffff,PK 2401:9e80::,2401:9e80:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:9f00::,2401:9f00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:9f80::,2401:9f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:a000::,2401:a000:ffff:ffff:ffff:ffff:ffff:ffff,KR 2401:a080::,2401:a080:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:a100::,2401:a100:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:a180::,2401:a180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:a280::,2401:a280:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:a300::,2401:a300:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:a380::,2401:a380:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:a400::,2401:a400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:a480::,2401:a480:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:a500::,2401:a500:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:a580::,2401:a580:ffff:ffff:ffff:ffff:ffff:ffff,TH 2401:a600::,2401:a600:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:a680::,2401:a680:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:a700::,2401:a700:ffff:ffff:ffff:ffff:ffff:ffff,KH 2401:a780::,2401:a780:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:a800::,2401:a800:ffff:ffff:ffff:ffff:ffff:ffff,KR 2401:a880::,2401:a880:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:a900::,2401:a900:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:a980::,2401:a980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:aa00::,2401:aa00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:aa80::,2401:aa80:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:ab00::,2401:ab00:ffff:ffff:ffff:ffff:ffff:ffff,TW 2401:ab80::,2401:ab80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:ac00::,2401:ac00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:ac80::,2401:ac80:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:ad00::,2401:ad00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:ad80::,2401:ad80:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:ae00::,2401:ae00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:ae80::,2401:ae80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:af00::,2401:af00:ffff:ffff:ffff:ffff:ffff:ffff,NC 2401:af80::,2401:af80:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:b000::,2401:b000:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:b080::,2401:b080:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:b100::,2401:b100:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:b180::,2401:b180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:b200::,2401:b200:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:b280::,2401:b280:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:b300::,2401:b300:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:b380::,2401:b380:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:b400::,2401:b400:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:b480::,2401:b480:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:b500::,2401:b500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:b580::,2401:b580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:b600::,2401:b600:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:b680::,2401:b680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:b780::,2401:b780:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:b800::,2401:b800:ffff:ffff:ffff:ffff:ffff:ffff,VN 2401:b880::,2401:b880:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:b900::,2401:b900:ffff:ffff:ffff:ffff:ffff:ffff,PH 2401:b980::,2401:b980:ffff:ffff:ffff:ffff:ffff:ffff,TH 2401:ba00::,2401:ba00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:ba80::,2401:ba80:ffff:ffff:ffff:ffff:ffff:ffff,PK 2401:bb00::,2401:bb00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:bb80::,2401:bb80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:bc00::,2401:bc00:ffff:ffff:ffff:ffff:ffff:ffff,PH 2401:bc80::,2401:bc80:ffff:ffff:ffff:ffff:ffff:ffff,MM 2401:bd00::,2401:bd00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:bd80::,2401:bd80:ffff:ffff:ffff:ffff:ffff:ffff,TW 2401:be00::,2401:be00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:be80::,2401:be80:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:bf00::,2401:bf00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:bf80::,2401:bf80:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:c000::,2401:c000:ffff:ffff:ffff:ffff:ffff:ffff,BD 2401:c080::,2401:c080:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:c100::,2401:c100:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:c180::,2401:c180:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:c200::,2401:c200:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:c280::,2401:c280:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:c300::,2401:c300:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:c400::,2401:c400:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:c480::,2401:c480:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:c500::,2401:c500:ffff:ffff:ffff:ffff:ffff:ffff,KR 2401:c580::,2401:c580:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:c600::,2401:c600:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:c680::,2401:c680:ffff:ffff:ffff:ffff:ffff:ffff,BD 2401:c700::,2401:c700:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:c780::,2401:c780:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:c800::,2401:c800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:c880::,2401:c880:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:c900::,2401:c900:1000:ffff:ffff:ffff:ffff:ffff,SG 2401:c900:1001::,2401:c900:1001:ff:ffff:ffff:ffff:ffff,JP 2401:c900:1001:100::,2401:c900:11ff:ffff:ffff:ffff:ffff:ffff,SG 2401:c900:1200::,2401:c900:1201:175:ffff:ffff:ffff:ffff,US 2401:c900:1201:176::,2401:c900:1201:176:ffff:ffff:ffff:ffff,HK 2401:c900:1201:177::,2401:c900:12ff:ffff:ffff:ffff:ffff:ffff,US 2401:c900:1300::,2401:c900:1300:ffff:ffff:ffff:ffff:ffff,SG 2401:c900:1301::,2401:c900:1301:7fff:ffff:ffff:ffff:ffff,AU 2401:c900:1301:8000::,2401:c900:1400:ffff:ffff:ffff:ffff:ffff,SG 2401:c900:1401::,2401:c900:1401:7fff:ffff:ffff:ffff:ffff,AU 2401:c900:1401:8000::,2401:c901:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:c980::,2401:c980:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:ca00::,2401:ca00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:ca80::,2401:ca80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:cb00::,2401:cb00:ffff:ffff:ffff:ffff:ffff:ffff,KH 2401:cb80::,2401:cb80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:cc00::,2401:cc00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:cc80::,2401:cc80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:cd80::,2401:cd81:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:ce00::,2401:ce00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:ce80::,2401:ce80:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:cf00::,2401:cf00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:cf80::,2401:cf80:ffff:ffff:ffff:ffff:ffff:ffff,PH 2401:d000::,2401:d000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:d080::,2401:d080:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:d100::,2401:d100:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:d180::,2401:d180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:d200::,2401:d200:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:d280::,2401:d280:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:d300::,2401:d300:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:d380::,2401:d380:ffff:ffff:ffff:ffff:ffff:ffff,BD 2401:d400::,2401:d400:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:d480::,2401:d480:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:d500::,2401:d500:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:d580::,2401:d580:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:d600::,2401:d600:ffff:ffff:ffff:ffff:ffff:ffff,MN 2401:d680::,2401:d680:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:d700::,2401:d700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:d780::,2401:d780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:d800::,2401:d800:ffff:ffff:ffff:ffff:ffff:ffff,VN 2401:d880::,2401:d880:ffff:ffff:ffff:ffff:ffff:ffff,TH 2401:d900::,2401:d900:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:d980::,2401:d980:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:da00::,2401:da00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:da80::,2401:da80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:db00::,2401:db00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:db80::,2401:db80:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:dc00::,2401:dc00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:dc80::,2401:dc80:ffff:ffff:ffff:ffff:ffff:ffff,PF 2401:dd00::,2401:dd00:ffff:ffff:ffff:ffff:ffff:ffff,LK 2401:dd80::,2401:dd80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:de00::,2401:de00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:de80::,2401:de80:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:df00::,2401:df01:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:df80::,2401:df80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:e000::,2401:e000:ffff:ffff:ffff:ffff:ffff:ffff,TH 2401:e080::,2401:e080:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:e100::,2401:e100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:e180::,2401:e180:ffff:ffff:ffff:ffff:ffff:ffff,TW 2401:e200::,2401:e200:ffff:ffff:ffff:ffff:ffff:ffff,KR 2401:e280::,2401:e280:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:e300::,2401:e300:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:e380::,2401:e380:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:e400::,2401:e400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:e480::,2401:e480:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:e500::,2401:e500:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:e580::,2401:e580:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:e600::,2401:e600:ffff:ffff:ffff:ffff:ffff:ffff,FJ 2401:e680::,2401:e680:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:e700::,2401:e700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:e780::,2401:e780:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:e800::,2401:e800:ffff:ffff:ffff:ffff:ffff:ffff,VN 2401:e880::,2401:e880:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:e900::,2401:e900:ffff:ffff:ffff:ffff:ffff:ffff,BD 2401:e980::,2401:e980:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:ea00::,2401:ea00:ffff:ffff:ffff:ffff:ffff:ffff,PK 2401:ea80::,2401:ea80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:eb00::,2401:eb00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:eb80::,2401:eb80:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:ec00::,2401:ec00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:ec80::,2401:ec80:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:ed00::,2401:ed00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:ed80::,2401:ed80:ffff:ffff:ffff:ffff:ffff:ffff,BD 2401:ee00::,2401:ee00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:ee80::,2401:ee80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:ef00::,2401:ef00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:ef80::,2401:ef80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:f000::,2401:f000:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:f080::,2401:f080:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:f100::,2401:f100:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:f180::,2401:f180:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:f200::,2401:f200:ffff:ffff:ffff:ffff:ffff:ffff,MM 2401:f280::,2401:f280:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:f300::,2401:f300:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:f380::,2401:f380:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:f400::,2401:f400:ffff:ffff:ffff:ffff:ffff:ffff,HK 2401:f480::,2401:f480:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:f500::,2401:f500:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:f580::,2401:f580:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:f680::,2401:f680:ffff:ffff:ffff:ffff:ffff:ffff,PG 2401:f700::,2401:f700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:f780::,2401:f780:ffff:ffff:ffff:ffff:ffff:ffff,NP 2401:f800::,2401:f800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2401:f880::,2401:f880:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:f900::,2401:f900:ffff:ffff:ffff:ffff:ffff:ffff,SG 2401:f980::,2401:f980:ffff:ffff:ffff:ffff:ffff:ffff,ID 2401:fa00::,2401:fa00::ffff:ffff:ffff:ffff:ffff,AU 2401:fa00:1::,2401:fa00:1:ffff:ffff:ffff:ffff:ffff,TW 2401:fa00:2::,2401:fa00:2:ffff:ffff:ffff:ffff:ffff,IN 2401:fa00:3::,2401:fa00:3:ffff:ffff:ffff:ffff:ffff,SG 2401:fa00:4::,2401:fa00:4:ffff:ffff:ffff:ffff:ffff,JP 2401:fa00:5::,2401:fa00:5:7fff:ffff:ffff:ffff:ffff,US 2401:fa00:5:8000::,2401:fa00:6:ffff:ffff:ffff:ffff:ffff,IN 2401:fa00:7::,2401:fa00:7:ffff:ffff:ffff:ffff:ffff,US 2401:fa00:8::,2401:fa00:8:ffff:ffff:ffff:ffff:ffff,IN 2401:fa00:9::,2401:fa00:9:ffff:ffff:ffff:ffff:ffff,AU 2401:fa00:a::,2401:fa00:c:ffff:ffff:ffff:ffff:ffff,IN 2401:fa00:d::,2401:fa00:d:7fff:ffff:ffff:ffff:ffff,KR 2401:fa00:d:8000::,2401:fa00:f:7fff:ffff:ffff:ffff:ffff,IN 2401:fa00:f:8000::,2401:fa00:f:ffff:ffff:ffff:ffff:ffff,SG 2401:fa00:10::,2401:fa00:10:ffff:ffff:ffff:ffff:ffff,IN 2401:fa00:11::,2401:fa00:11:ffff:ffff:ffff:ffff:ffff,AU 2401:fa00:12::,2401:fa00:12:ffff:ffff:ffff:ffff:ffff,NZ 2401:fa00:13::,2401:fa00:13:ffff:ffff:ffff:ffff:ffff,HK 2401:fa00:14::,2401:fa00:14:ffff:ffff:ffff:ffff:ffff,IN 2401:fa00:15::,2401:fa00:15:7fff:ffff:ffff:ffff:ffff,PH 2401:fa00:15:8000::,2401:fa00:17:ffff:ffff:ffff:ffff:ffff,IN 2401:fa00:18::,2401:fa00:18:7fff:ffff:ffff:ffff:ffff,PH 2401:fa00:18:8000::,2401:fa00:18:ffff:ffff:ffff:ffff:ffff,US 2401:fa00:19::,2401:fa00:1e:ffff:ffff:ffff:ffff:ffff,IN 2401:fa00:1f::,2401:fa00:1f:7fff:ffff:ffff:ffff:ffff,US 2401:fa00:1f:8000::,2401:fa00:23:ffff:ffff:ffff:ffff:ffff,IN 2401:fa00:24::,2401:fa00:24:7fff:ffff:ffff:ffff:ffff,US 2401:fa00:24:8000::,2401:fa00:24:ffff:ffff:ffff:ffff:ffff,MY 2401:fa00:25::,2401:fa00:26:7fff:ffff:ffff:ffff:ffff,IN 2401:fa00:26:8000::,2401:fa00:26:ffff:ffff:ffff:ffff:ffff,US 2401:fa00:27::,2401:fa00:3f:ffff:ffff:ffff:ffff:ffff,IN 2401:fa00:40::,2401:fa00:40:7fff:ffff:ffff:ffff:ffff,CN 2401:fa00:40:8000::,2401:fa00:40:ffff:ffff:ffff:ffff:ffff,IN 2401:fa00:41::,2401:fa00:41:7fff:ffff:ffff:ffff:ffff,CN 2401:fa00:41:8000::,2401:fa00:41:ffff:ffff:ffff:ffff:ffff,IN 2401:fa00:42::,2401:fa00:42:7fff:ffff:ffff:ffff:ffff,CN 2401:fa00:42:8000::,2401:fa00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:fa80::,2401:fa80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:fb00::,2401:fb00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2401:fb80::,2401:fb80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:fc00::,2401:fc00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:fc80::,2401:fc80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:fd00::,2401:fd00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2401:fd80::,2401:fd80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:fe00::,2401:fe00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2401:fe80::,2401:fe80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2401:ff00::,2401:ff00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2401:ff80::,2401:ff80:ffff:ffff:ffff:ffff:ffff:ffff,BD 2402::,2402:3ff:ffff:ffff:ffff:ffff:ffff:ffff,KR 2402:400::,2402:400:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:480::,2402:480:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:500::,2402:500:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:580::,2402:580:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:600::,2402:600:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:680::,2402:680:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:700::,2402:700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:780::,2402:780:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:800::,2402:800:ffff:ffff:ffff:ffff:ffff:ffff,VN 2402:880::,2402:880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:900::,2402:900:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:980::,2402:980:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:a00::,2402:a00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:a80::,2402:a80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:b00::,2402:b00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:b80::,2402:b80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:c00::,2402:c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:c80::,2402:c80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:d00::,2402:d00:ffff:ffff:ffff:ffff:ffff:ffff,AF 2402:d80::,2402:d80:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:e00::,2402:e00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:e80::,2402:e80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:f00::,2402:f00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:f80::,2402:f80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:1000::,2402:1000:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:1080::,2402:1080:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:1100::,2402:1100:ffff:ffff:ffff:ffff:ffff:ffff,MY 2402:1180::,2402:1180:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:1200::,2402:1200:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:1280::,2402:1280:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:1300::,2402:1300:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:1380::,2402:1380:ffff:ffff:ffff:ffff:ffff:ffff,BD 2402:1400::,2402:1400:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:1480::,2402:1480:ffff:ffff:ffff:ffff:ffff:ffff,NP 2402:1500::,2402:1500:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:1580::,2402:1580:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:1600::,2402:1600:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:1680::,2402:1680:ffff:ffff:ffff:ffff:ffff:ffff,PK 2402:1700::,2402:1700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:1780::,2402:1780:ffff:ffff:ffff:ffff:ffff:ffff,TW 2402:1800::,2402:1800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:1880::,2402:1883:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:1900::,2402:1900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:1980::,2402:1980:ffff:ffff:ffff:ffff:ffff:ffff,MY 2402:1a00::,2402:1a00:ffff:ffff:ffff:ffff:ffff:ffff,KR 2402:1a80::,2402:1a80:ffff:ffff:ffff:ffff:ffff:ffff,MY 2402:1b00::,2402:1b00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:1b80::,2402:1b80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:1c00::,2402:1c00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:1c80::,2402:1c80:ffff:ffff:ffff:ffff:ffff:ffff,BD 2402:1d00::,2402:1d00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:1d80::,2402:1d80:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:1e00::,2402:1e00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:1e80::,2402:1e80:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:1f00::,2402:1f00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:1f80::,2402:1f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:2000::,2402:2000:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:2080::,2402:2080:ffff:ffff:ffff:ffff:ffff:ffff,TW 2402:2100::,2402:2100:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:2180::,2402:2181:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:2200::,2402:2200:ffff:ffff:ffff:ffff:ffff:ffff,MY 2402:2280::,2402:2280:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:2300::,2402:2300:ffff:ffff:ffff:ffff:ffff:ffff,BD 2402:2380::,2402:2380:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:2400::,2402:2400:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:2480::,2402:2480:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:2500::,2402:2500:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:2580::,2402:2580:ffff:ffff:ffff:ffff:ffff:ffff,TW 2402:2600::,2402:2600:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:2680::,2402:2680:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:2700::,2402:2700:ffff:ffff:ffff:ffff:ffff:ffff,TH 2402:2780::,2402:2780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:2800::,2402:2800:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:2880::,2402:2880:ffff:ffff:ffff:ffff:ffff:ffff,AF 2402:2900::,2402:2900:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:2980::,2402:2980:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:2a00::,2402:2a00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:2a80::,2402:2a80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:2b00::,2402:2b00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:2b80::,2402:2b80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:2c00::,2402:2c00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:2c80::,2402:2c80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:2d00::,2402:2d00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:2d80::,2402:2d80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:2e80::,2402:2e80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:2f00::,2402:2f00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:2f80::,2402:2f80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:3000::,2402:3000:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:3080::,2402:3080:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:3100::,2402:3100:ffff:ffff:ffff:ffff:ffff:ffff,KR 2402:3180::,2402:3180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:3200::,2402:3200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:3280::,2402:3280:ffff:ffff:ffff:ffff:ffff:ffff,BD 2402:3300::,2402:3300:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:3380::,2402:3380:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:3400::,2402:3400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:3480::,2402:3480:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:3500::,2402:3500:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:3580::,2402:3580:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:3600::,2402:3600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:3680::,2402:3680:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:3700::,2402:3700:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:3780::,2402:3780:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:3800::,2402:3800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:3880::,2402:3880:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:3900::,2402:3900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:3980::,2402:3980:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:3a00::,2402:3a00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:3a80::,2402:3a80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:3b00::,2402:3b00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:3b80::,2402:3b80:ffff:ffff:ffff:ffff:ffff:ffff,BD 2402:3c00::,2402:3c00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:3c80::,2402:3c80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:3d00::,2402:3d00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:3d80::,2402:3d80:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:3e00::,2402:3e00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:3e80::,2402:3e80:ffff:ffff:ffff:ffff:ffff:ffff,MY 2402:3f80::,2402:3f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:4000::,2402:4000:ffff:ffff:ffff:ffff:ffff:ffff,LK 2402:4080::,2402:4080:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:4100::,2402:4100:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:4180::,2402:4180:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:4200::,2402:4200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:4280::,2402:4280:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:4300::,2402:4300:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:4380::,2402:4380:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:4400::,2402:4400:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:4480::,2402:4480:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:4500::,2402:4500:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:4580::,2402:4580:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:4600::,2402:4600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:4680::,2402:4680:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:4700::,2402:4700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:4780::,2402:4780:ffff:ffff:ffff:ffff:ffff:ffff,TH 2402:4800::,2402:4800:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:4880::,2402:4880:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:4900::,2402:4900:ffff:ffff:ffff:ffff:ffff:ffff,TW 2402:4980::,2402:4980:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:4a00::,2402:4a00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:4a80::,2402:4a80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:4b00::,2402:4b00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2402:4b80::,2402:4b80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:4c00::,2402:4c01:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:4c80::,2402:4c80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:4d00::,2402:4d00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:4d80::,2402:4d80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:4e00::,2402:4e00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:4e80::,2402:4e80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:4f00::,2402:4f00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:4f80::,2402:4f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:5080::,2402:5080:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:5100::,2402:5100:ffff:ffff:ffff:ffff:ffff:ffff,KH 2402:5180::,2402:5180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:5200::,2402:5200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:5280::,2402:5280:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:5300::,2402:5300:ffff:ffff:ffff:ffff:ffff:ffff,VN 2402:5380::,2402:5380:ffff:ffff:ffff:ffff:ffff:ffff,BD 2402:5400::,2402:5400:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:5480::,2402:5480:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:5500::,2402:5500:ffff:ffff:ffff:ffff:ffff:ffff,PH 2402:5580::,2402:5580:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:5600::,2402:5600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:5680::,2402:5680:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:5700::,2402:5700:ffff:ffff:ffff:ffff:ffff:ffff,MY 2402:5780::,2402:5780:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:5800::,2402:5800:ffff:ffff:ffff:ffff:ffff:ffff,KR 2402:5880::,2402:5880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:5900::,2402:5900:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:5980::,2402:5980:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:5a00::,2402:5a00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:5a80::,2402:5a80:ffff:ffff:ffff:ffff:ffff:ffff,PG 2402:5b00::,2402:5b00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:5b80::,2402:5b80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:5c00::,2402:5c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:5c80::,2402:5c80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:5d00::,2402:5d00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:5d80::,2402:5d80:ffff:ffff:ffff:ffff:ffff:ffff,BD 2402:5e00::,2402:5e00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:5e80::,2402:5e80:ffff:ffff:ffff:ffff:ffff:ffff,BD 2402:5f00::,2402:5f00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:5f80::,2402:5f80:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:6000::,2402:6000:ff:ffff:ffff:ffff:ffff:ffff,AU 2402:6000:100::,2402:6000:100:7fff:ffff:ffff:ffff:ffff,NZ 2402:6000:100:8000::,2402:6000:100:ffff:ffff:ffff:ffff:ffff,AU 2402:6000:101::,2402:6000:101:7fff:ffff:ffff:ffff:ffff,NZ 2402:6000:101:8000::,2402:6000:1ff:7fff:ffff:ffff:ffff:ffff,AU 2402:6000:1ff:8000::,2402:6000:1ff:ffff:ffff:ffff:ffff:ffff,NZ 2402:6000:200::,2402:6000:202:ffff:ffff:ffff:ffff:ffff,AU 2402:6000:203::,2402:6000:203:7fff:ffff:ffff:ffff:ffff,NZ 2402:6000:203:8000::,2402:6000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:6080::,2402:6080:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:6100::,2402:6100:ffff:ffff:ffff:ffff:ffff:ffff,KR 2402:6180::,2402:6180:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:6200::,2402:6200:ffff:ffff:ffff:ffff:ffff:ffff,GU 2402:6280::,2402:6280:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:6400::,2402:6400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:6480::,2402:6480:ffff:ffff:ffff:ffff:ffff:ffff,BD 2402:6500::,2402:6500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:6580::,2402:6580:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:6600::,2402:6600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:6680::,2402:6680:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:6700::,2402:6700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:6780::,2402:6780:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:6800::,2402:6800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:6880::,2402:6880:ffff:ffff:ffff:ffff:ffff:ffff,TH 2402:6900::,2402:6900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:6980::,2402:6980:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:6a00::,2402:6a00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:6a80::,2402:6a80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:6b00::,2402:6b00:4c64:ffff:ffff:ffff:ffff:ffff,JP 2402:6b00:4c65::,2402:6b00:4c65:7fff:ffff:ffff:ffff:ffff,US 2402:6b00:4c65:8000::,2402:6b00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:6b80::,2402:6b80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:6c00::,2402:6c00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2402:6c80::,2402:6c80:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:6d00::,2402:6d00:ffff:ffff:ffff:ffff:ffff:ffff,PF 2402:6d80::,2402:6d80:ffff:ffff:ffff:ffff:ffff:ffff,PH 2402:6e00::,2402:6e00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:6e80::,2402:6e80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:6f00::,2402:6f00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:6f80::,2402:6f80:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:7000::,2402:7000:ffff:ffff:ffff:ffff:ffff:ffff,KR 2402:7080::,2402:7080:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:7100::,2402:7100:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:7180::,2402:7180:ffff:ffff:ffff:ffff:ffff:ffff,BD 2402:7200::,2402:7200:ffff:ffff:ffff:ffff:ffff:ffff,TK 2402:7280::,2402:7280:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:7300::,2402:7300:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:7380::,2402:7380:7ff:ffff:ffff:ffff:ffff:ffff,JP 2402:7380:800::,2402:7380:fff:ffff:ffff:ffff:ffff:ffff,HK 2402:7380:1000::,2402:7380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:7400::,2402:7400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:7480::,2402:7481:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:7500::,2402:7500:ffff:ffff:ffff:ffff:ffff:ffff,TW 2402:7580::,2402:7580:ffff:ffff:ffff:ffff:ffff:ffff,MN 2402:7600::,2402:7600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:7680::,2402:7680:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:7700::,2402:7700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:7780::,2402:7780:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:7800::,2402:7800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:7880::,2402:7880:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:7900::,2402:7900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:7980::,2402:7980:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:7a00::,2402:7a00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:7a80::,2402:7a80:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:7b00::,2402:7b00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:7b80::,2402:7b80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:7c00::,2402:7c00:ffff:ffff:ffff:ffff:ffff:ffff,PK 2402:7c80::,2402:7c80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:7d00::,2402:7d00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:7d80::,2402:7d80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:7e00::,2402:7e00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:7e80::,2402:7e80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:7f00::,2402:7f00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:7f80::,2402:7f80:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:8000::,2402:8000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:8080::,2402:8080:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:8100::,2402:8100:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:8180::,2402:8180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:8200::,2402:8200:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:8280::,2402:8280:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:8300::,2402:8300:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:8380::,2402:8380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:8400::,2402:8400:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:8480::,2402:8480:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:8500::,2402:8500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:8580::,2402:8580:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:8600::,2402:8600:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:8680::,2402:8680:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:8700::,2402:8700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:8780::,2402:8780:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:8800::,2402:8800:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:8880::,2402:8880:ffff:ffff:ffff:ffff:ffff:ffff,MN 2402:8900::,2402:8900:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:8980::,2402:8980:ffff:ffff:ffff:ffff:ffff:ffff,BD 2402:8a00::,2402:8a00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:8a80::,2402:8a80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:8b00::,2402:8b00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:8b80::,2402:8b80:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:8c00::,2402:8c00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:8c80::,2402:8c80:ffff:ffff:ffff:ffff:ffff:ffff,LA 2402:8d00::,2402:8d03:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:8d80::,2402:8d80:ffff:ffff:ffff:ffff:ffff:ffff,LA 2402:8e00::,2402:8e00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:8e80::,2402:8e80:ffff:ffff:ffff:ffff:ffff:ffff,BD 2402:8f00::,2402:8f00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:8f80::,2402:8f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:9080::,2402:9080:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:9100::,2402:9100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:9180::,2402:9180:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:9200::,2402:9200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:9280::,2402:9280:ffff:ffff:ffff:ffff:ffff:ffff,MO 2402:9300::,2402:9300:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:9380::,2402:9380:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:9400::,2402:9400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:9480::,2402:9480:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:9500::,2402:9500:ffff:ffff:ffff:ffff:ffff:ffff,MY 2402:9580::,2402:9580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:9680::,2402:9680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:9780::,2402:9780:ffff:ffff:ffff:ffff:ffff:ffff,BD 2402:9800::,2402:9800:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:9880::,2402:9880:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:9900::,2402:9900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:9980::,2402:9980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:9a00::,2402:9a00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2402:9a80::,2402:9a80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:9b00::,2402:9b00:ffff:ffff:ffff:ffff:ffff:ffff,TH 2402:9b80::,2402:9b80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:9c00::,2402:9c00:ffff:ffff:ffff:ffff:ffff:ffff,TW 2402:9c80::,2402:9c80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:9d00::,2402:9d00:ffff:ffff:ffff:ffff:ffff:ffff,KH 2402:9d80::,2402:9d80:ffff:ffff:ffff:ffff:ffff:ffff,VN 2402:9e00::,2402:9e00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:9e80::,2402:9e80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:9f00::,2402:9f00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:9f80::,2402:9f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:a000::,2402:a000:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:a080::,2402:a080:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:a100::,2402:a100:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:a180::,2402:a180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:a200::,2402:a200:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:a280::,2402:a280:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:a300::,2402:a300:ffff:ffff:ffff:ffff:ffff:ffff,NP 2402:a380::,2402:a380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:a400::,2402:a400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:a480::,2402:a480:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:a500::,2402:a500:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:a580::,2402:a580:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:a600::,2402:a600:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:a680::,2402:a680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:a700::,2402:a700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:a780::,2402:a780:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:a800::,2402:a800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:a880::,2402:a880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:a900::,2402:a900:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:a980::,2402:a980:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:aa80::,2402:aa80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:ab00::,2402:ab00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:ab80::,2402:ab80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:ac00::,2402:ac00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:ac80::,2402:ac80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:ad00::,2402:ad00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:ad80::,2402:ad80:ffff:ffff:ffff:ffff:ffff:ffff,PK 2402:ae00::,2402:ae00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:ae80::,2402:ae80:ffff:ffff:ffff:ffff:ffff:ffff,WS 2402:af00::,2402:af00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:af80::,2402:af80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:b080::,2402:b080:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:b100::,2402:b100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:b180::,2402:b180:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:b200::,2402:b200:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:b280::,2402:b280:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:b300::,2402:b300:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:b380::,2402:b380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:b400::,2402:b400:ffff:ffff:ffff:ffff:ffff:ffff,MY 2402:b480::,2402:b480:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:b500::,2402:b500:ffff:ffff:ffff:ffff:ffff:ffff,BD 2402:b580::,2402:b580:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:b600::,2402:b600:ffff:ffff:ffff:ffff:ffff:ffff,TW 2402:b680::,2402:b680:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:b700::,2402:b700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:b780::,2402:b780:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:b800::,2402:b801:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:b880::,2402:b880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:b900::,2402:b900:ffff:ffff:ffff:ffff:ffff:ffff,MN 2402:b980::,2402:b980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:ba00::,2402:ba00:ffff:ffff:ffff:ffff:ffff:ffff,PH 2402:ba80::,2402:ba80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:bb00::,2402:bb00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:bb80::,2402:bb80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:bc00::,2402:bc07:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:bc80::,2402:bc80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:bd00::,2402:bd00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:bd80::,2402:bd80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:be00::,2402:be00:ffff:ffff:ffff:ffff:ffff:ffff,KR 2402:be80::,2402:be80:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:bf00::,2402:bf00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2402:bf80::,2402:bf80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:c000::,2402:c000:ffff:ffff:ffff:ffff:ffff:ffff,BD 2402:c080::,2402:c081:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:c100::,2402:c100:ffff:ffff:ffff:ffff:ffff:ffff,KH 2402:c180::,2402:c180:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:c200::,2402:c200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:c280::,2402:c280:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:c300::,2402:c300:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:c380::,2402:c380:ffff:ffff:ffff:ffff:ffff:ffff,TH 2402:c400::,2402:c400:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:c480::,2402:c480:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:c500::,2402:c500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:c580::,2402:c580:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:c600::,2402:c600:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:c680::,2402:c680:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:c700::,2402:c700:ffff:ffff:ffff:ffff:ffff:ffff,VN 2402:c780::,2402:c780:ffff:ffff:ffff:ffff:ffff:ffff,MY 2402:c800::,2402:c800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:c880::,2402:c880:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:c900::,2402:c900:ffff:ffff:ffff:ffff:ffff:ffff,MN 2402:c980::,2402:c980:ffff:ffff:ffff:ffff:ffff:ffff,TH 2402:ca00::,2402:ca00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:ca80::,2402:ca80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:cb00::,2402:cb00:ffff:ffff:ffff:ffff:ffff:ffff,LK 2402:cb80::,2402:cb80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:cc00::,2402:cc00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:cc80::,2402:cc80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:cd00::,2402:cd00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:cd80::,2402:cd80:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:ce00::,2402:ce01:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:ce80::,2402:ce80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:cf00::,2402:cf00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:cf80::,2402:cf80:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:d000::,2402:d000:ffff:ffff:ffff:ffff:ffff:ffff,LK 2402:d080::,2402:d080:ffff:ffff:ffff:ffff:ffff:ffff,TL 2402:d100::,2402:d100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:d180::,2402:d180:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:d200::,2402:d200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:d280::,2402:d280:ffff:ffff:ffff:ffff:ffff:ffff,NL 2402:d300::,2402:d300:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:d380::,2402:d380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:d400::,2402:d400:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:d500::,2402:d500:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:d580::,2402:d580:ffff:ffff:ffff:ffff:ffff:ffff,US 2402:d581::,2402:d581:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:d600::,2402:d600:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:d680::,2402:d680:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:d700::,2402:d700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:d780::,2402:d780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:d800::,2402:d800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:d880::,2402:d880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:d900::,2402:d900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:d980::,2402:d980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:da00::,2402:da00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:da80::,2402:da80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:db00::,2402:db00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:db80::,2402:db80:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:dc00::,2402:dc00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:dc80::,2402:dc80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:dd80::,2402:dd80:ffff:ffff:ffff:ffff:ffff:ffff,AF 2402:de00::,2402:de00:ffff:ffff:ffff:ffff:ffff:ffff,KR 2402:de80::,2402:de80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:df00::,2402:df00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:df80::,2402:df80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:e000::,2402:e000:ffff:ffff:ffff:ffff:ffff:ffff,PK 2402:e080::,2402:e080:ffff:ffff:ffff:ffff:ffff:ffff,AF 2402:e100::,2402:e100:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:e180::,2402:e180:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:e200::,2402:e200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:e280::,2402:e280:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:e300::,2402:e300:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:e380::,2402:e380:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:e400::,2402:e400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:e480::,2402:e480:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:e500::,2402:e500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:e580::,2402:e580:ffff:ffff:ffff:ffff:ffff:ffff,US 2402:e600::,2402:e600:ffff:ffff:ffff:ffff:ffff:ffff,SG 2402:e680::,2402:e680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:e780::,2402:e780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:e800::,2402:e800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:e880::,2402:e880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:e900::,2402:e900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:e980::,2402:e980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:ea80::,2402:ea80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:eb00::,2402:eb00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:eb80::,2402:eb80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:ec00::,2402:ec00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:ec80::,2402:ec80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:ed00::,2402:ed00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2402:ed80::,2402:ed80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:ee00::,2402:ee00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:ee80::,2402:ee80:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:ef00::,2402:ef3f:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:ef80::,2402:ef80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:f000::,2402:f000:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:f080::,2402:f080:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:f100::,2402:f100:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:f180::,2402:f180:ffff:ffff:ffff:ffff:ffff:ffff,HK 2402:f200::,2402:f200:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:f280::,2402:f280:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:f300::,2402:f300:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:f380::,2402:f380:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:f400::,2402:f400:ffff:ffff:ffff:ffff:ffff:ffff,KR 2402:f480::,2402:f480:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:f500::,2402:f500:ffff:ffff:ffff:ffff:ffff:ffff,BD 2402:f580::,2402:f580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:f600::,2402:f600:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:f680::,2402:f680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:f700::,2402:f700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:f780::,2402:f780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:f800::,2402:f800:ffff:ffff:ffff:ffff:ffff:ffff,VN 2402:f880::,2402:f880:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:f900::,2402:f900:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:f980::,2402:f980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2402:fa00::,2402:fa00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:fa80::,2402:fa80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2402:fb00::,2402:fb00:ffff:ffff:ffff:ffff:ffff:ffff,US 2402:fb80::,2402:fb80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2402:fc00::,2402:fc00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2402:fc80::,2402:fc80:ffff:ffff:ffff:ffff:ffff:ffff,TH 2402:fd00::,2402:fd00:ffff:ffff:ffff:ffff:ffff:ffff,PK 2402:fd80::,2402:fd80:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:fe00::,2402:fe00:ffff:ffff:ffff:ffff:ffff:ffff,PH 2402:fe80::,2402:fe80:ffff:ffff:ffff:ffff:ffff:ffff,MY 2402:ff00::,2402:ff00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2402:ff80::,2402:ff80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403::,2403:1:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:80::,2403:80:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:100::,2403:100:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:180::,2403:180:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:200::,2403:200:ffff:ffff:ffff:ffff:ffff:ffff,NC 2403:280::,2403:280:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:300::,2403:300:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:380::,2403:380:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:400::,2403:400:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:480::,2403:480:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:500::,2403:500:ffff:ffff:ffff:ffff:ffff:ffff,LA 2403:580::,2403:580:ffff:ffff:ffff:ffff:ffff:ffff,BT 2403:600::,2403:600:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:680::,2403:680:ffff:ffff:ffff:ffff:ffff:ffff,BD 2403:700::,2403:700:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:780::,2403:780:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:800::,2403:801:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:880::,2403:880:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:900::,2403:900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:980::,2403:980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:a00::,2403:a00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:a80::,2403:a80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:b00::,2403:b00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:b80::,2403:b80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:c00::,2403:c00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:c80::,2403:c80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:d00::,2403:d00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:d80::,2403:d80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:e00::,2403:e00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:e80::,2403:e80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:f00::,2403:f00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:f80::,2403:f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:1000::,2403:1000:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:1080::,2403:1080:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:1100::,2403:1100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:1180::,2403:1180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:1280::,2403:1280:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:1300::,2403:1300:ffff:ffff:ffff:ffff:ffff:ffff,MY 2403:1380::,2403:1380:ffff:ffff:ffff:ffff:ffff:ffff,MY 2403:1400::,2403:1400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:1480::,2403:1480:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:1500::,2403:1500:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:1580::,2403:1580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:1600::,2403:1600:ffff:ffff:ffff:ffff:ffff:ffff,KH 2403:1680::,2403:1680:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:1700::,2403:1700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:1780::,2403:1780:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:1800::,2403:1800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:1880::,2403:1880:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:1900::,2403:1900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:1980::,2403:1980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:1a00::,2403:1a00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:1a80::,2403:1a80:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:1b00::,2403:1b00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:1b80::,2403:1b80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:1c00::,2403:1c00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:1c80::,2403:1c80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:1d00::,2403:1d00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:1d80::,2403:1d80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:1e00::,2403:1e00:ffff:ffff:ffff:ffff:ffff:ffff,AS 2403:1e80::,2403:1e80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:1f00::,2403:1f00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:1f80::,2403:1f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:2000::,2403:2000:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:2080::,2403:2080:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:2100::,2403:2100:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:2180::,2403:2180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:2200::,2403:2200:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:2280::,2403:2280:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:2300::,2403:2300:ffff:ffff:ffff:ffff:ffff:ffff,TH 2403:2380::,2403:2380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:2400::,2403:2400:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:2480::,2403:2480:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:2500::,2403:2500:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:2580::,2403:2580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:2600::,2403:2600:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:2680::,2403:2680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:2700::,2403:2700:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:2780::,2403:2780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:2800::,2403:2801:ffff:ffff:ffff:ffff:ffff:ffff,TH 2403:2880::,2403:2880:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:2900::,2403:2900:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:2980::,2403:2980:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:2a00::,2403:2a00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:2a80::,2403:2a80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:2b80::,2403:2b80:ffff:ffff:ffff:ffff:ffff:ffff,MY 2403:2c00::,2403:2c00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:2c80::,2403:2c80::ffff:ffff:ffff:ffff:ffff,HK 2403:2c80:1::,2403:2c80:1:ffff:ffff:ffff:ffff:ffff,JP 2403:2c80:2::,2403:2c80:2:ffff:ffff:ffff:ffff:ffff,SG 2403:2c80:3::,2403:2c80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:2d00::,2403:2d00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:2d80::,2403:2d80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:2e00::,2403:2e00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:2e80::,2403:2e80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:2f00::,2403:2f00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:2f80::,2403:2f80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:3080::,2403:3080:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:3100::,2403:3100:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:3180::,2403:3180:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:3200::,2403:3200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:3280::,2403:3280:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:3300::,2403:3300:ffff:ffff:ffff:ffff:ffff:ffff,NL 2403:3380::,2403:3380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:3400::,2403:3400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:3480::,2403:3480:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:3500::,2403:3500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:3580::,2403:3580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:3600::,2403:3600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:3680::,2403:3680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:3700::,2403:3700:ffff:ffff:ffff:ffff:ffff:ffff,KR 2403:3780::,2403:3780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:3800::,2403:3800:ffff:ffff:ffff:ffff:ffff:ffff,NP 2403:3880::,2403:3880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:3900::,2403:3900:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:3980::,2403:3980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:3a00::,2403:3a00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:3a80::,2403:3a80:ffff:ffff:ffff:ffff:ffff:ffff,MY 2403:3b00::,2403:3b00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:3b80::,2403:3b80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:3c00::,2403:3c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:3c80::,2403:3c80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:3d00::,2403:3d00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:3d80::,2403:3d80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:3e00::,2403:3e00:ffff:ffff:ffff:ffff:ffff:ffff,KR 2403:3e80::,2403:3e80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:3f00::,2403:3f00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2403:3f80::,2403:3f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:4000::,2403:4000:ffff:ffff:ffff:ffff:ffff:ffff,BD 2403:4080::,2403:4080:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:4100::,2403:4100:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:4180::,2403:4180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:4200::,2403:4200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:4280::,2403:4280:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:4300::,2403:4300:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:4380::,2403:4380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:4400::,2403:4400:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:4480::,2403:4480:ffff:ffff:ffff:ffff:ffff:ffff,WS 2403:4500::,2403:4500:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:4580::,2403:4580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:4600::,2403:4600:ffff:ffff:ffff:ffff:ffff:ffff,FJ 2403:4680::,2403:4680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:4700::,2403:4700:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:4780::,2403:4780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:4800::,2403:4800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:4880::,2403:4880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:4900::,2403:4900:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:4980::,2403:4980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:4a00::,2403:4a00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:4a80::,2403:4a80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:4b00::,2403:4b00:ffff:ffff:ffff:ffff:ffff:ffff,NL 2403:4b80::,2403:4b80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:4c00::,2403:4c00:ffff:ffff:ffff:ffff:ffff:ffff,TH 2403:4c80::,2403:4c80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:4d00::,2403:4d00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:4d80::,2403:4d80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:4e00::,2403:4e00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:4e80::,2403:4e80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:4f00::,2403:4f00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:4f80::,2403:4f80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:5000::,2403:5000:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:5080::,2403:5080:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:5100::,2403:5100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:5180::,2403:5180:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:5200::,2403:5200:ffff:ffff:ffff:ffff:ffff:ffff,TW 2403:5280::,2403:5280:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:5300::,2403:5300:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:5380::,2403:5380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:5400::,2403:5400:ffff:ffff:ffff:ffff:ffff:ffff,TH 2403:5480::,2403:5480:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:5500::,2403:5500:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:5580::,2403:5580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:5600::,2403:5600:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:5680::,2403:5680:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:5700::,2403:5700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:5780::,2403:5780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:5800::,2403:5800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:5880::,2403:5880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:5900::,2403:5900:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:5980::,2403:5980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:5a00::,2403:5a00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:5a80::,2403:5a80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:5b00::,2403:5b00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:5b80::,2403:5b80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:5c00::,2403:5c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:5c80::,2403:5c80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:5d80::,2403:5d80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:5e00::,2403:5e00:ffff:ffff:ffff:ffff:ffff:ffff,PH 2403:5e80::,2403:5e80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:5f00::,2403:5f00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:5f80::,2403:5f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:6000::,2403:6000:ffff:ffff:ffff:ffff:ffff:ffff,VN 2403:6080::,2403:6080:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:6100::,2403:6100:ffff:ffff:ffff:ffff:ffff:ffff,TH 2403:6180::,2403:6180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:6200::,2403:6200:ffff:ffff:ffff:ffff:ffff:ffff,TH 2403:6280::,2403:6280:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:6300::,2403:6300:ffff:ffff:ffff:ffff:ffff:ffff,KR 2403:6380::,2403:6380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:6400::,2403:6400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:6480::,2403:6480:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:6500::,2403:6500:ffff:ffff:ffff:ffff:ffff:ffff,KR 2403:6580::,2403:6580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:6600::,2403:6600:ffff:ffff:ffff:ffff:ffff:ffff,KH 2403:6680::,2403:6680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:6700::,2403:6700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:6780::,2403:6780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:6800::,2403:6800:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:6880::,2403:6880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:6900::,2403:6900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:6980::,2403:6980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:6a00::,2403:6a00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:6a80::,2403:6a80:ffff:ffff:ffff:ffff:ffff:ffff,MM 2403:6b00::,2403:6b00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:6b80::,2403:6b80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:6c00::,2403:6c00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:6c80::,2403:6c80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:6d00::,2403:6d00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:6d80::,2403:6d80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:6e00::,2403:6e00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:6e80::,2403:6e80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:6f80::,2403:6f80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:7000::,2403:7000:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:7080::,2403:7080:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:7100::,2403:7100:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:7180::,2403:7180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:7200::,2403:7200:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:7280::,2403:7280:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:7300::,2403:7300:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:7380::,2403:7380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:7400::,2403:7400:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:7480::,2403:7480:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:7500::,2403:7500:ffff:ffff:ffff:ffff:ffff:ffff,KH 2403:7580::,2403:7580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:7600::,2403:7600:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:7680::,2403:7680:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:7700::,2403:7700:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:7780::,2403:7780:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:7800::,2403:7800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:7880::,2403:7880:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:7900::,2403:7900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:7980::,2403:7980:ffff:ffff:ffff:ffff:ffff:ffff,PK 2403:7a00::,2403:7a00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:7a80::,2403:7a80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:7b00::,2403:7b00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:7b80::,2403:7b80:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:7c00::,2403:7c00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:7c80::,2403:7c80:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:7d00::,2403:7d00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:7d80::,2403:7d80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:7e00::,2403:7e00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:7e80::,2403:7e80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:7f00::,2403:7f00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:7f80::,2403:7f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:8000::,2403:8000:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:8080::,2403:8080:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:8100::,2403:8100:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:8180::,2403:8180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:8200::,2403:8200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:8280::,2403:8280:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:8300::,2403:8300:ffff:ffff:ffff:ffff:ffff:ffff,DE 2403:8380::,2403:8380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:8400::,2403:8400:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:8480::,2403:8480:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:8500::,2403:8500:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:8580::,2403:8580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:8600::,2403:8600:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:8680::,2403:8680:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:8700::,2403:8700:ffff:ffff:ffff:ffff:ffff:ffff,BT 2403:8780::,2403:8780:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:8800::,2403:8800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:8880::,2403:8880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:8900::,2403:8900:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:8980::,2403:8980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:8a00::,2403:8a00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:8a80::,2403:8a80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:8b00::,2403:8b00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:8b80::,2403:8b80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:8c00::,2403:8c00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:8c80::,2403:8c80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:8d00::,2403:8d00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:8d80::,2403:8d80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:8e00::,2403:8e00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:8e80::,2403:8e80:ffff:ffff:ffff:ffff:ffff:ffff,MM 2403:8f00::,2403:8f00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:8f80::,2403:8f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:9000::,2403:9000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:9080::,2403:9080:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:9100::,2403:9100:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:9180::,2403:9180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:9200::,2403:9200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:9280::,2403:9280:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:9300::,2403:9300:ffff:ffff:ffff:ffff:ffff:ffff,BD 2403:9380::,2403:9380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:9400::,2403:9400:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:9480::,2403:9480:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:9500::,2403:9500:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:9580::,2403:9580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:9600::,2403:9600:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:9680::,2403:9680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:9700::,2403:9700:ffff:ffff:ffff:ffff:ffff:ffff,MY 2403:9780::,2403:9780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:9800::,2403:9800:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:9880::,2403:9880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:9900::,2403:9a00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:9a80::,2403:9a80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:9b00::,2403:9b00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:9b80::,2403:9b80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:9c00::,2403:9c00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:9c80::,2403:9c80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:9d00::,2403:9d00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:9d80::,2403:9d80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:9e00::,2403:9e00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:9e80::,2403:9e80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:9f00::,2403:9f00:ffff:ffff:ffff:ffff:ffff:ffff,TW 2403:9f80::,2403:9f80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:a000::,2403:a000:ffff:ffff:ffff:ffff:ffff:ffff,PH 2403:a080::,2403:a080:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:a100::,2403:a100:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:a180::,2403:a180:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:a200::,2403:a200:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:a280::,2403:a280:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:a300::,2403:a300:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:a380::,2403:a380:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:a400::,2403:a400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:a480::,2403:a480:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:a500::,2403:a500:ffff:ffff:ffff:ffff:ffff:ffff,PK 2403:a580::,2403:a580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:a600::,2403:a600:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:a680::,2403:a680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:a700::,2403:a700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:a780::,2403:a780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:a800::,2403:a800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:a880::,2403:a880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:a900::,2403:a900:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:a980::,2403:a980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:aa00::,2403:aa00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:aa80::,2403:aa80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:ab80::,2403:ab80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:ac00::,2403:ac00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:ac80::,2403:ac80:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:ad00::,2403:ad00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:ad80::,2403:ad80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:ae00::,2403:ae00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:ae80::,2403:ae80:ffff:ffff:ffff:ffff:ffff:ffff,NR 2403:af00::,2403:af00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:af80::,2403:af80:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:b000::,2403:b000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:b080::,2403:b080:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:b100::,2403:b100:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:b180::,2403:b180:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:b200::,2403:b200:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:b280::,2403:b280:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:b300::,2403:b300:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:b380::,2403:b380:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:b400::,2403:b400:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:b480::,2403:b480:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:b500::,2403:b500:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:b580::,2403:b580:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:b600::,2403:b600:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:b680::,2403:b680:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:b700::,2403:b700:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:b780::,2403:b780:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:b800::,2403:b800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:b880::,2403:b880:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:b900::,2403:b900:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:b980::,2403:b980:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:ba00::,2403:ba00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:ba80::,2403:ba80:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:bb00::,2403:bb00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:bb80::,2403:bb80:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:bc00::,2403:bc00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2403:bc80::,2403:bc80:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:bd00::,2403:bd00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:bd80::,2403:bd80:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:be00::,2403:be00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:be80::,2403:be80:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:bf00::,2403:bf00:ffff:ffff:ffff:ffff:ffff:ffff,TH 2403:bf80::,2403:bf80:ffff:ffff:ffff:ffff:ffff:ffff,BD 2403:c000::,2403:c000:ffff:ffff:ffff:ffff:ffff:ffff,TH 2403:c100::,2403:c100:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:c200::,2403:c200:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:c300::,2403:c300:ffff:ffff:ffff:ffff:ffff:ffff,TW 2403:c400::,2403:c400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:c500::,2403:c500:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:c600::,2403:c600:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:c800::,2403:c800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:c900::,2403:c900:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:ca00::,2403:ca00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:cb00::,2403:cb00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:cc00::,2403:cc00:3fff:ffff:ffff:ffff:ffff:ffff,SG 2403:cc00:4000::,2403:cc00:4000:7fff:ffff:ffff:ffff:ffff,AU 2403:cc00:4000:8000::,2403:cc00:9fff:ffff:ffff:ffff:ffff:ffff,SG 2403:cc00:a000::,2403:cc00:a000:7fff:ffff:ffff:ffff:ffff,ES 2403:cc00:a000:8000::,2403:cc00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:cd00::,2403:cd00:ffff:ffff:ffff:ffff:ffff:ffff,PH 2403:ce00::,2403:ce00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:cf00::,2403:cf00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:d000::,2403:d000:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:d100::,2403:d100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:d200::,2403:d200:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:d300::,2403:d300:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:d400::,2403:d400:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:d500::,2403:d500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:d600::,2403:d600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:d700::,2403:d700:ffff:ffff:ffff:ffff:ffff:ffff,MN 2403:d800::,2403:d800:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:d900::,2403:d900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:da00::,2403:da00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:db00::,2403:db00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:dc00::,2403:dc00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:dd00::,2403:dd00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2403:de00::,2403:de00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:df00::,2403:df00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:e000::,2403:e000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:e100::,2403:e100:ffff:ffff:ffff:ffff:ffff:ffff,BD 2403:e200::,2403:e200:ffff:ffff:ffff:ffff:ffff:ffff,VN 2403:e300::,2403:e300:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:e400::,2403:e400:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:e500::,2403:e500:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:e600::,2403:e600:ffff:ffff:ffff:ffff:ffff:ffff,ID 2403:e700::,2403:e700:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:e800::,2403:e800:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:e900::,2403:e900:ffff:ffff:ffff:ffff:ffff:ffff,SG 2403:ea00::,2403:ea00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:eb00::,2403:eb00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2403:ec00::,2403:ec00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2403:ed00::,2403:ed00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:ee00::,2403:ee00:ffff:ffff:ffff:ffff:ffff:ffff,TW 2403:f000::,2403:f000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:f100::,2403:f100:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:f200::,2403:f200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2403:f300::,2403:f300:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:f500::,2403:f500:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:f600::,2403:f600:ffff:ffff:ffff:ffff:ffff:ffff,NR 2403:f700::,2403:f700:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2403:f800::,2403:f800:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:f900::,2403:f900:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:fa00::,2403:fa00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2403:fb00::,2403:fb00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2403:fc00::,2403:fc00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:fd00::,2403:fd00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2403:fe00::,2403:fe00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2403:ff00::,2403:ff00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404::,2404:3f:ffff:ffff:ffff:ffff:ffff:ffff,TW 2404:80::,2404:8f:ffff:ffff:ffff:ffff:ffff:ffff,TW 2404:a0::,2404:a0:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:a8::,2404:a8:ffff:ffff:ffff:ffff:ffff:ffff,MY 2404:b0::,2404:b1:ffff:ffff:ffff:ffff:ffff:ffff,TH 2404:b8::,2404:b8:ffff:ffff:ffff:ffff:ffff:ffff,MY 2404:c0::,2404:c0:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:c8::,2404:c8:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:d0::,2404:d0:ffff:ffff:ffff:ffff:ffff:ffff,PH 2404:d8::,2404:d8:ffff:ffff:ffff:ffff:ffff:ffff,PH 2404:e0::,2404:ef:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:100::,2404:100:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:130::,2404:130:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:138::,2404:139:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:140::,2404:140:ffff:ffff:ffff:ffff:ffff:ffff,TH 2404:150::,2404:150:ffff:ffff:ffff:ffff:ffff:ffff,BD 2404:158::,2404:158:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:160::,2404:160:ffff:ffff:ffff:ffff:ffff:ffff,MY 2404:168::,2404:168:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:170::,2404:170:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:178::,2404:178:ffff:ffff:ffff:ffff:ffff:ffff,TW 2404:180::,2404:18f:ffff:ffff:ffff:ffff:ffff:ffff,KR 2404:1a0::,2404:1a3:ffff:ffff:ffff:ffff:ffff:ffff,HK 2404:1a8::,2404:1a8:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:1b0::,2404:1b0:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:1b8::,2404:1b8:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:200::,2404:200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:300::,2404:300:ffff:ffff:ffff:ffff:ffff:ffff,KH 2404:400::,2404:400:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:500::,2404:500:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:600::,2404:600:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:700::,2404:700:ffff:ffff:ffff:ffff:ffff:ffff,KH 2404:800::,2404:800:ffff:ffff:ffff:ffff:ffff:ffff,KR 2404:a00::,2404:a00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:b00::,2404:b00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2404:c00::,2404:c00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:d00::,2404:d00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2404:e00::,2404:e00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2404:f00::,2404:f00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:1000::,2404:1000:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:1100::,2404:1100:ffff:ffff:ffff:ffff:ffff:ffff,SG 2404:1200::,2404:1200:ffff:ffff:ffff:ffff:ffff:ffff,SG 2404:1300::,2404:1300:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:1400::,2404:1400:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:1500::,2404:1500:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:1600::,2404:1601:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:1700::,2404:1700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:1800::,2404:1800:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:1900::,2404:1900:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:1a00::,2404:1a00:ffff:ffff:ffff:ffff:ffff:ffff,TH 2404:1b00::,2404:1b00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:1c00::,2404:1c00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:1d00::,2404:1d00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:1e00::,2404:1e00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:1f00::,2404:1f00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:2000::,2404:2000:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:2100::,2404:2100:ffff:ffff:ffff:ffff:ffff:ffff,HK 2404:2200::,2404:2200:ffff:ffff:ffff:ffff:ffff:ffff,NC 2404:2300::,2404:2300:ffff:ffff:ffff:ffff:ffff:ffff,KR 2404:2400::,2404:2400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:2600::,2404:2600:ffff:ffff:ffff:ffff:ffff:ffff,TH 2404:2700::,2404:2700:ffff:ffff:ffff:ffff:ffff:ffff,MN 2404:2800::,2404:2800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:2900::,2404:2900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:2a00::,2404:2a00:ffff:ffff:ffff:ffff:ffff:ffff,NC 2404:2b00::,2404:2b00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:2c00::,2404:2c00:ffff:ffff:ffff:ffff:ffff:ffff,NP 2404:2d00::,2404:2d00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:2e00::,2404:2e00:ffff:ffff:ffff:ffff:ffff:ffff,LA 2404:2f00::,2404:2f00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:3100::,2404:3100:ffff:ffff:ffff:ffff:ffff:ffff,PK 2404:3200::,2404:3200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:3300::,2404:3300:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:3500::,2404:3500:ffff:ffff:ffff:ffff:ffff:ffff,HK 2404:3600::,2404:3601:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:3700::,2404:3700:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:3800::,2404:3800:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:3900::,2404:3900:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:3a00::,2404:3a00:ffff:ffff:ffff:ffff:ffff:ffff,VN 2404:3b00::,2404:3b00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:3c00::,2404:3c00:ffff:ffff:ffff:ffff:ffff:ffff,PH 2404:3d00::,2404:3d00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:3e00::,2404:3e00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:3f00::,2404:3f00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:4100::,2404:4100:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:4200::,2404:4200:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:4300::,2404:4300:ffff:ffff:ffff:ffff:ffff:ffff,MY 2404:4400::,2404:440f:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:4600::,2404:4600:ffff:ffff:ffff:ffff:ffff:ffff,KR 2404:4700::,2404:4700:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:4800::,2404:4800:ffff:ffff:ffff:ffff:ffff:ffff,SG 2404:4900::,2404:4900:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:4a00::,2404:4a00:ffff:ffff:ffff:ffff:ffff:ffff,TH 2404:4c00::,2404:4c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:4d00::,2404:4d00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:4e00::,2404:4e00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2404:4f00::,2404:4f01:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:5000::,2404:5000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:5100::,2404:5100:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:5200::,2404:5200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:5300::,2404:5300:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:5400::,2404:5400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:5500::,2404:5500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:5600::,2404:5600:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:5700::,2404:5700:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:5800::,2404:5800:ffff:ffff:ffff:ffff:ffff:ffff,SG 2404:5900::,2404:5900:ffff:ffff:ffff:ffff:ffff:ffff,TH 2404:5a00::,2404:5a00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:5b00::,2404:5b00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:5c00::,2404:5c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:5d00::,2404:5d00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:5e00::,2404:5e00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:5f00::,2404:5f00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:6000::,2404:6000:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:6100::,2404:6100:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:6200::,2404:6200:ffff:ffff:ffff:ffff:ffff:ffff,TW 2404:6300::,2404:6300:ffff:ffff:ffff:ffff:ffff:ffff,MY 2404:6400::,2404:6400:ffff:ffff:ffff:ffff:ffff:ffff,PG 2404:6500::,2404:6500:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:6600::,2404:6600:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:6700::,2404:6700:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:6800::,2404:6800:4002:ffff:ffff:ffff:ffff:ffff,AU 2404:6800:4003::,2404:6800:4003:ffff:ffff:ffff:ffff:ffff,SG 2404:6800:4004::,2404:6800:4007:ffff:ffff:ffff:ffff:ffff,AU 2404:6800:4008::,2404:6800:4008:ffff:ffff:ffff:ffff:ffff,TW 2404:6800:4009::,2404:6800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:6900::,2404:6900:ffff:ffff:ffff:ffff:ffff:ffff,HK 2404:6a00::,2404:6a00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:6b00::,2404:6b00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:6c00::,2404:6c00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:6d00::,2404:6d00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:6e00::,2404:6e00:ffff:ffff:ffff:ffff:ffff:ffff,PH 2404:6f00::,2404:6f00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2404:7000::,2404:7000:ffff:ffff:ffff:ffff:ffff:ffff,PK 2404:7100::,2404:7100:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:7200::,2404:7200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:7300::,2404:7300:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:7400::,2404:7400:ffff:ffff:ffff:ffff:ffff:ffff,PH 2404:7500::,2404:7500:ffff:ffff:ffff:ffff:ffff:ffff,BD 2404:7600::,2404:7600:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:7700::,2404:7700:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:7800::,2404:7800:ffff:ffff:ffff:ffff:ffff:ffff,PW 2404:7900::,2404:7900:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:7a00::,2404:7a00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:7b00::,2404:7b00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:7c00::,2404:7c00:ffff:ffff:ffff:ffff:ffff:ffff,NP 2404:7d00::,2404:7d00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:7e00::,2404:7e00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2404:7f00::,2404:7f00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:8000::,2404:8000:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:8100::,2404:8100:ffff:ffff:ffff:ffff:ffff:ffff,MY 2404:8200::,2404:8200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:8300::,2404:8300:ffff:ffff:ffff:ffff:ffff:ffff,PK 2404:8500::,2404:8500:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:8600::,2404:8600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:8700::,2404:8700:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:8800::,2404:8800:ffff:ffff:ffff:ffff:ffff:ffff,TH 2404:8900::,2404:8900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:8a00::,2404:8a00:ffff:ffff:ffff:ffff:ffff:ffff,LK 2404:8b00::,2404:8b00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:8c00::,2404:8c00:ffff:ffff:ffff:ffff:ffff:ffff,GU 2404:8d00::,2404:8d00:ffff:ffff:ffff:ffff:ffff:ffff,TH 2404:8e00::,2404:8e01:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:8f00::,2404:8f00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:9000::,2404:9000:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:9100::,2404:9100:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:9200::,2404:9200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:9400::,2404:9400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:9500::,2404:9501:ffff:ffff:ffff:ffff:ffff:ffff,HK 2404:9600::,2404:9601:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:9700::,2404:9700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:9800::,2404:9800:ffff:ffff:ffff:ffff:ffff:ffff,PH 2404:9900::,2404:9900:ffff:ffff:ffff:ffff:ffff:ffff,BD 2404:9a00::,2404:9a00:ffff:ffff:ffff:ffff:ffff:ffff,GU 2404:9b00::,2404:9b00:ffff:ffff:ffff:ffff:ffff:ffff,AF 2404:9c00::,2404:9c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:9d00::,2404:9d00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:9e00::,2404:9e00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:9f00::,2404:9f00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:a000::,2404:a000:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:a100::,2404:a100:ffff:ffff:ffff:ffff:ffff:ffff,SG 2404:a200::,2404:a200:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:a300::,2404:a300:ffff:ffff:ffff:ffff:ffff:ffff,TH 2404:a500::,2404:a500:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:a600::,2404:a600:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:a700::,2404:a700:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:a800::,2404:a800:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:aa00::,2404:aa00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2404:ab00::,2404:ab00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:ac00::,2404:ac00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:ad00::,2404:ad00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:ae00::,2404:ae00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2404:af00::,2404:af00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2404:b000::,2404:b000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:b100::,2404:b100:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:b200::,2404:b200:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:b300::,2404:b300:ffff:ffff:ffff:ffff:ffff:ffff,KH 2404:b400::,2404:b400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:b500::,2404:b500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:b600::,2404:b600:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:b700::,2404:b700:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:b800::,2404:b800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:b900::,2404:b900:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:ba00::,2404:ba00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:bb00::,2404:bb00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2404:bc00::,2404:bc00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:bd00::,2404:bd00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:be00::,2404:be00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2404:bf00::,2404:bf00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:c000::,2404:c000:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:c100::,2404:c100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:c200::,2404:c200:ffff:ffff:ffff:ffff:ffff:ffff,LA 2404:c300::,2404:c300:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:c400::,2404:c400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:c500::,2404:c500:ffff:ffff:ffff:ffff:ffff:ffff,HK 2404:c600::,2404:c600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:c700::,2404:c700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:c800::,2404:c807:ffff:ffff:ffff:ffff:ffff:ffff,HK 2404:c900::,2404:c900:ffff:ffff:ffff:ffff:ffff:ffff,BD 2404:ca00::,2404:ca00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:cb00::,2404:cb00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:cc00::,2404:cc00:ffff:ffff:ffff:ffff:ffff:ffff,KH 2404:cd00::,2404:cd00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:ce00::,2404:ce00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:cf00::,2404:cf00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:d000::,2404:d000:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:d100::,2404:d100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:d200::,2404:d200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:d300::,2404:d300:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:d400::,2404:d400:ffff:ffff:ffff:ffff:ffff:ffff,PK 2404:d500::,2404:d500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:d600::,2404:d600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:d700::,2404:d700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:d800::,2404:d800:ffff:ffff:ffff:ffff:ffff:ffff,PH 2404:d900::,2404:d900:ffff:ffff:ffff:ffff:ffff:ffff,BD 2404:da00::,2404:da00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:db00::,2404:db00:ffff:ffff:ffff:ffff:ffff:ffff,TW 2404:dc00::,2404:dc00:ffff:ffff:ffff:ffff:ffff:ffff,PH 2404:dd00::,2404:dd00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:de00::,2404:de00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:df00::,2404:df00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2404:e000::,2404:e000:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:e100::,2404:e101:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:e200::,2404:e200:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2404:e300::,2404:e300:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:e400::,2404:e400:ffff:ffff:ffff:ffff:ffff:ffff,NC 2404:e500::,2404:e500:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:e600::,2404:e600:ffff:ffff:ffff:ffff:ffff:ffff,SG 2404:e700::,2404:e700:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:e800::,2404:e801:ca9c:7fff:ffff:ffff:ffff:ffff,SG 2404:e801:ca9c:8000::,2404:e801:ca9c:ffff:ffff:ffff:ffff:ffff,US 2404:e801:ca9d::,2404:e801:ffff:ffff:ffff:ffff:ffff:ffff,SG 2404:e900::,2404:e900:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:ea00::,2404:ea00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:eb00::,2404:eb00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:ec00::,2404:ec00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:ed00::,2404:ed00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:ee00::,2404:ee00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2404:ef00::,2404:ef00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:f000::,2404:f000:ffff:ffff:ffff:ffff:ffff:ffff,LK 2404:f100::,2404:f100:ffff:ffff:ffff:ffff:ffff:ffff,IN 2404:f200::,2404:f200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:f300::,2404:f300:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:f400::,2404:f400:ffff:ffff:ffff:ffff:ffff:ffff,PK 2404:f500::,2404:f500:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:f600::,2404:f600:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:f700::,2404:f700:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:f800::,2404:f800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2404:f801::,2404:f801::ffff:ffff:ffff:ffff:ffff,IN 2404:f801:1::,2404:f801:8:1010:ffff:ffff:ffff:ffff,SG 2404:f801:8:1011::,2404:f801:8:1011::,AU 2404:f801:8:1011::1,2404:f801:8:1013:ffff:ffff:ffff:ffff,SG 2404:f801:8:1014::,2404:f801:8:1014::,AU 2404:f801:8:1014::1,2404:f801:2f:ffff:ffff:ffff:ffff:ffff,SG 2404:f801:30::,2404:f801:30::,AU 2404:f801:30::1,2404:f801:802f:ffff:ffff:ffff:ffff:ffff,SG 2404:f801:8030::,2404:f801:8030:7fff:ffff:ffff:ffff:ffff,AU 2404:f801:8030:8000::,2404:f801:8057:ffff:ffff:ffff:ffff:ffff,SG 2404:f801:8058::,2404:f801:8058:ffff:ffff:ffff:ffff:ffff,IN 2404:f801:8059::,2404:f801:ffff:ffff:ffff:ffff:ffff:ffff,SG 2404:f900::,2404:f900:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:fa00::,2404:fa00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:fb00::,2404:fb00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:fc00::,2404:fc00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2404:fd00::,2404:fd00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2404:fe00::,2404:fe00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2404:ff00::,2404:ff00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2405::,2405::ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:100::,2405:100:ffff:ffff:ffff:ffff:ffff:ffff,ID 2405:200::,2405:207:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:400::,2405:400:ffff:ffff:ffff:ffff:ffff:ffff,MH 2405:500::,2405:500:ffff:ffff:ffff:ffff:ffff:ffff,ID 2405:600::,2405:600:ffff:ffff:ffff:ffff:ffff:ffff,MN 2405:700::,2405:700:ffff:ffff:ffff:ffff:ffff:ffff,ID 2405:800::,2405:800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:a00::,2405:a00:ffff:ffff:ffff:ffff:ffff:ffff,TW 2405:b00::,2405:b00:ffff:ffff:ffff:ffff:ffff:ffff,KH 2405:c00::,2405:c00:ffff:ffff:ffff:ffff:ffff:ffff,PK 2405:d00::,2405:d00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2405:e00::,2405:e00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:1000::,2405:1000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:1200::,2405:1200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:1300::,2405:1300:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:1400::,2405:1400:ffff:ffff:ffff:ffff:ffff:ffff,HK 2405:1500::,2405:1500:ffff:ffff:ffff:ffff:ffff:ffff,BD 2405:1600::,2405:1600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:1700::,2405:1700:ffff:ffff:ffff:ffff:ffff:ffff,BN 2405:1800::,2405:1800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:1a00::,2405:1a00:ffff:ffff:ffff:ffff:ffff:ffff,KH 2405:1b00::,2405:1b00:ffff:ffff:ffff:ffff:ffff:ffff,NP 2405:1c00::,2405:1c00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2405:1d00::,2405:1d00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2405:1e00::,2405:1e00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:1f00::,2405:1f00:ffff:ffff:ffff:ffff:ffff:ffff,TL 2405:2000::,2405:2000:200:ffff:ffff:ffff:ffff:ffff,IN 2405:2000:201::,2405:2000:201:ffff:ffff:ffff:ffff:ffff,SG 2405:2000:202::,2405:2000:400:2ff:ffff:ffff:ffff:ffff,IN 2405:2000:400:300::,2405:2000:400:3ff:ffff:ffff:ffff:ffff,HK 2405:2000:400:400::,2405:2000:400:ffff:ffff:ffff:ffff:ffff,IN 2405:2000:401::,2405:2000:401:ffff:ffff:ffff:ffff:ffff,HK 2405:2000:402::,2405:2000:7ff:ffff:ffff:ffff:ffff:ffff,IN 2405:2000:800::,2405:2000:800:ff:ffff:ffff:ffff:ffff,SG 2405:2000:800:100::,2405:2000:8ff:ffff:ffff:ffff:ffff:ffff,IN 2405:2000:900::,2405:2000:900:ff:ffff:ffff:ffff:ffff,JP 2405:2000:900:100::,2405:2000:9ff:ffff:ffff:ffff:ffff:ffff,IN 2405:2000:a00::,2405:2000:a00:ffff:ffff:ffff:ffff:ffff,HK 2405:2000:a01::,2405:2000:aff:ffff:ffff:ffff:ffff:ffff,IN 2405:2000:b00::,2405:2000:b00:ff:ffff:ffff:ffff:ffff,HK 2405:2000:b00:100::,2405:2000:dff:ffff:ffff:ffff:ffff:ffff,IN 2405:2000:e00::,2405:2000:e00:ff:ffff:ffff:ffff:ffff,AU 2405:2000:e00:100::,2405:2000:eff:ffff:ffff:ffff:ffff:ffff,IN 2405:2000:f00::,2405:2000:f00:1ff:ffff:ffff:ffff:ffff,JP 2405:2000:f00:200::,2405:2000:ffc7:ffff:ffff:ffff:ffff:ffff,IN 2405:2000:ffc8::,2405:2000:ffc8:ffff:ffff:ffff:ffff:ffff,SG 2405:2000:ffc9::,2405:2001:2ff:ffff:ffff:ffff:ffff:ffff,IN 2405:2001:300::,2405:2001:300:ff:ffff:ffff:ffff:ffff,MY 2405:2001:300:100::,2405:2001:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:2200::,2405:2200:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2405:2300::,2405:2300:ffff:ffff:ffff:ffff:ffff:ffff,SG 2405:2400::,2405:2400:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:2500::,2405:2500:ffff:ffff:ffff:ffff:ffff:ffff,TH 2405:2600::,2405:2600:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2405:2700::,2405:2700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:2900::,2405:2900:ffff:ffff:ffff:ffff:ffff:ffff,MY 2405:2a00::,2405:2a00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:2b00::,2405:2b00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:2c00::,2405:2c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:2d00::,2405:2d00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:2e00::,2405:2e00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:2f00::,2405:2f00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2405:3000::,2405:3001:ffff:ffff:ffff:ffff:ffff:ffff,HK 2405:3100::,2405:3100:ffff:ffff:ffff:ffff:ffff:ffff,SG 2405:3200::,2405:3200:ffff:ffff:ffff:ffff:ffff:ffff,PH 2405:3300::,2405:3300:ffff:ffff:ffff:ffff:ffff:ffff,TW 2405:3400::,2405:3400:ffff:ffff:ffff:ffff:ffff:ffff,PH 2405:3500::,2405:3500:ffff:ffff:ffff:ffff:ffff:ffff,KR 2405:3600::,2405:3600:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:3700::,2405:3700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:3800::,2405:3800:ffff:ffff:ffff:ffff:ffff:ffff,MY 2405:3900::,2405:3900:ffff:ffff:ffff:ffff:ffff:ffff,KH 2405:3a00::,2405:3a00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2405:3b00::,2405:3b00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:3c00::,2405:3c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:3d00::,2405:3d00:ffff:ffff:ffff:ffff:ffff:ffff,KR 2405:3e00::,2405:3e00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2405:3f00::,2405:3f00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:4000::,2405:4000:ffff:ffff:ffff:ffff:ffff:ffff,TH 2405:4100::,2405:4100:ffff:ffff:ffff:ffff:ffff:ffff,ID 2405:4200::,2405:4200:ffff:ffff:ffff:ffff:ffff:ffff,SG 2405:4300::,2405:4300:ffff:ffff:ffff:ffff:ffff:ffff,KR 2405:4400::,2405:4400:ffff:ffff:ffff:ffff:ffff:ffff,LK 2405:4500::,2405:4500:ffff:ffff:ffff:ffff:ffff:ffff,TW 2405:4600::,2405:4600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:4700::,2405:4700:ffff:ffff:ffff:ffff:ffff:ffff,MY 2405:4800::,2405:4800:ffff:ffff:ffff:ffff:ffff:ffff,VN 2405:4900::,2405:4900:ffff:ffff:ffff:ffff:ffff:ffff,SG 2405:4a00::,2405:4a00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:4b00::,2405:4b00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:4c00::,2405:4c00:ffff:ffff:ffff:ffff:ffff:ffff,PH 2405:4d00::,2405:4d00:ffff:ffff:ffff:ffff:ffff:ffff,TW 2405:4e00::,2405:4e00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:4f00::,2405:4f00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2405:5000::,2405:5000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:5100::,2405:5100:ffff:ffff:ffff:ffff:ffff:ffff,ID 2405:5200::,2405:5200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:5300::,2405:5300:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:5400::,2405:5400:ffff:ffff:ffff:ffff:ffff:ffff,LK 2405:5500::,2405:5500:ffff:ffff:ffff:ffff:ffff:ffff,SG 2405:5600::,2405:5600:ffff:ffff:ffff:ffff:ffff:ffff,TW 2405:5700::,2405:5700:ffff:ffff:ffff:ffff:ffff:ffff,MN 2405:5800::,2405:5800:ffff:ffff:ffff:ffff:ffff:ffff,KR 2405:5900::,2405:5900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:5a00::,2405:5a00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:5b00::,2405:5b00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:5c00::,2405:5c00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2405:5d00::,2405:5d00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2405:5e00::,2405:5e00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2405:5f00::,2405:5f00:ffff:ffff:ffff:ffff:ffff:ffff,KR 2405:6000::,2405:6000:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2405:6100::,2405:6100:ffff:ffff:ffff:ffff:ffff:ffff,TW 2405:6200::,2405:6200:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:6400::,2405:6400:ffff:ffff:ffff:ffff:ffff:ffff,MY 2405:6500::,2405:6500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:6600::,2405:6600:ffff:ffff:ffff:ffff:ffff:ffff,NP 2405:6700::,2405:6700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:6800::,2405:6800:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:6900::,2405:6900:ffff:ffff:ffff:ffff:ffff:ffff,BD 2405:6a00::,2405:6a00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:6b00::,2405:6b00:ffff:ffff:ffff:ffff:ffff:ffff,LK 2405:6c00::,2405:6c00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:6d00::,2405:6d00:ffff:ffff:ffff:ffff:ffff:ffff,TH 2405:6e00::,2405:6e00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:6f00::,2405:6f00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:7000::,2405:7000:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:7100::,2405:7100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:7200::,2405:7200:ffff:ffff:ffff:ffff:ffff:ffff,BD 2405:7400::,2405:7400:ffff:ffff:ffff:ffff:ffff:ffff,GU 2405:7500::,2405:7500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:7600::,2405:7600:ffff:ffff:ffff:ffff:ffff:ffff,BD 2405:7700::,2405:7700:ffff:ffff:ffff:ffff:ffff:ffff,MY 2405:7800::,2405:7800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:7900::,2405:7900:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2405:7b00::,2405:7b00:ffff:ffff:ffff:ffff:ffff:ffff,KR 2405:7c00::,2405:7c00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2405:7d00::,2405:7d00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:7e00::,2405:7e00:ffff:ffff:ffff:ffff:ffff:ffff,TW 2405:7f00::,2405:7f00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:8000::,2405:8000:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:8100::,2405:8100:ffff:ffff:ffff:ffff:ffff:ffff,HK 2405:8200::,2405:8200:ffff:ffff:ffff:ffff:ffff:ffff,BD 2405:8300::,2405:8300:ffff:ffff:ffff:ffff:ffff:ffff,SB 2405:8400::,2405:8400:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2405:8500::,2405:8500:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:8600::,2405:8600:ffff:ffff:ffff:ffff:ffff:ffff,KR 2405:8700::,2405:8700:ffff:ffff:ffff:ffff:ffff:ffff,TW 2405:8800::,2405:8800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:8900::,2405:8900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:8a00::,2405:8a00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:8b00::,2405:8b00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:8c00::,2405:8c00:ffff:ffff:ffff:ffff:ffff:ffff,WS 2405:8d00::,2405:8d00:ffff:ffff:ffff:ffff:ffff:ffff,GU 2405:8e00::,2405:8e00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2405:8f00::,2405:8f00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2405:9000::,2405:9000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:9100::,2405:9100:ffff:ffff:ffff:ffff:ffff:ffff,BD 2405:9200::,2405:9200:ffff:ffff:ffff:ffff:ffff:ffff,TW 2405:9300::,2405:9300:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:9400::,2405:9400:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2405:9500::,2405:9500:ffff:ffff:ffff:ffff:ffff:ffff,KR 2405:9600::,2405:9600:ffff:ffff:ffff:ffff:ffff:ffff,SG 2405:9700::,2405:9700:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:9800::,2405:9800:ffff:ffff:ffff:ffff:ffff:ffff,TH 2405:9900::,2405:9900:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:9a00::,2405:9a00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:9b00::,2405:9b00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:9c00::,2405:9c00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2405:9d00::,2405:9d00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:9e00::,2405:9e00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:9f00::,2405:9f00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2405:a000::,2405:a000:ffff:ffff:ffff:ffff:ffff:ffff,TH 2405:a100::,2405:a100:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:a200::,2405:a200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:a300::,2405:a300:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:a400::,2405:a400:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2405:a500::,2405:a500:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:a600::,2405:a600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:a700::,2405:a700:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:a900::,2405:a900:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:aa00::,2405:aa00:ffff:ffff:ffff:ffff:ffff:ffff,KH 2405:ab00::,2405:ab00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:ac00::,2405:ac00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2405:ad00::,2405:ad00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:ae00::,2405:ae00:ffff:ffff:ffff:ffff:ffff:ffff,MN 2405:af00::,2405:af00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:b000::,2405:b000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:b100::,2405:b100:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:b200::,2405:b200:ffff:ffff:ffff:ffff:ffff:ffff,HK 2405:b300::,2405:b300:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:b400::,2405:b400:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2405:b500::,2405:b500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:b600::,2405:b600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:b800::,2405:b800:ffff:ffff:ffff:ffff:ffff:ffff,PH 2405:b900::,2405:b900:ffff:ffff:ffff:ffff:ffff:ffff,ID 2405:ba00::,2405:ba00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:bb00::,2405:bb00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:bc00::,2405:bc00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:bd00::,2405:bd00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:be00::,2405:be00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:bf00::,2405:bf00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:c000::,2405:c000:ffff:ffff:ffff:ffff:ffff:ffff,KR 2405:c100::,2405:c100:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:c200::,2405:c200:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2405:c300::,2405:c300:ffff:ffff:ffff:ffff:ffff:ffff,HK 2405:c400::,2405:c400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:c500::,2405:c500:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:c600::,2405:c600:ffff:ffff:ffff:ffff:ffff:ffff,TW 2405:c700::,2405:c700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:c800::,2405:c800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:c900::,2405:c900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:ca00::,2405:ca00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2405:cb00::,2405:cb00:ffff:ffff:ffff:ffff:ffff:ffff,VN 2405:cc00::,2405:cc00:ffff:ffff:ffff:ffff:ffff:ffff,PF 2405:cd00::,2405:cd00:ffff:ffff:ffff:ffff:ffff:ffff,VN 2405:ce00::,2405:ce00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:cf00::,2405:cf00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:d000::,2405:d000:ffff:ffff:ffff:ffff:ffff:ffff,BT 2405:d100::,2405:d100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:d200::,2405:d200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:d300::,2405:d300:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:d400::,2405:d400:ffff:ffff:ffff:ffff:ffff:ffff,PH 2405:d600::,2405:d600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:d700::,2405:d700:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:d800::,2405:d800:ffff:ffff:ffff:ffff:ffff:ffff,SG 2405:d900::,2405:d900:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:da00::,2405:da00:ffff:ffff:ffff:ffff:ffff:ffff,KH 2405:db00::,2405:db00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:dc00::,2405:dc00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:e000::,2405:e000:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:e100::,2405:e100:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:e200::,2405:e200:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:e300::,2405:e300:ffff:ffff:ffff:ffff:ffff:ffff,HK 2405:e400::,2405:e400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:e500::,2405:e500:ffff:ffff:ffff:ffff:ffff:ffff,HK 2405:e600::,2405:e600:ffff:ffff:ffff:ffff:ffff:ffff,CN 2405:e700::,2405:e700:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:e800::,2405:e800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:ea00::,2405:ea00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:ec00::,2405:ec00:ffff:ffff:ffff:ffff:ffff:ffff,BT 2405:ed00::,2405:ed00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:ee00::,2405:ee00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2405:ef00::,2405:ef00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2405:f000::,2405:f000:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:f100::,2405:f100:ffff:ffff:ffff:ffff:ffff:ffff,SG 2405:f200::,2405:f200:ffff:ffff:ffff:ffff:ffff:ffff,BD 2405:f300::,2405:f300:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:f400::,2405:f400:ffff:ffff:ffff:ffff:ffff:ffff,PH 2405:f500::,2405:f500:ffff:ffff:ffff:ffff:ffff:ffff,KH 2405:f600::,2405:f600:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:f700::,2405:f700:ffff:ffff:ffff:ffff:ffff:ffff,IN 2405:f800::,2405:f800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2405:f900::,2405:f900:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2405:fa00::,2405:fa00:ffff:ffff:ffff:ffff:ffff:ffff,KH 2405:fb00::,2405:fb00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2405:fc00::,2405:fc00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2405:fe00::,2405:fe00:ffff:ffff:ffff:ffff:ffff:ffff,PH 2405:ff00::,2405:ff00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406::,2406::ffff:ffff:ffff:ffff:ffff:ffff,HK 2406:100::,2406:100:ffff:ffff:ffff:ffff:ffff:ffff,SG 2406:200::,2406:200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:300::,2406:300:ffff:ffff:ffff:ffff:ffff:ffff,TW 2406:400::,2406:400:ffff:ffff:ffff:ffff:ffff:ffff,TH 2406:500::,2406:500:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:600::,2406:600:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:700::,2406:700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:800::,2406:800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:900::,2406:900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:a00::,2406:a00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:b00::,2406:b00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2406:c00::,2406:c00:ffff:ffff:ffff:ffff:ffff:ffff,LK 2406:d00::,2406:d00:ffff:ffff:ffff:ffff:ffff:ffff,PK 2406:e00::,2406:e00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:f00::,2406:f00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:1000::,2406:1000:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:1100::,2406:1100:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:1200::,2406:1200:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:1300::,2406:1300:ffff:ffff:ffff:ffff:ffff:ffff,PK 2406:1400::,2406:1400:ffff:ffff:ffff:ffff:ffff:ffff,BD 2406:1500::,2406:1500:ffff:ffff:ffff:ffff:ffff:ffff,TO 2406:1600::,2406:1600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:1700::,2406:1700:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:1900::,2406:1900:ffff:ffff:ffff:ffff:ffff:ffff,BD 2406:1a00::,2406:1a00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:1b00::,2406:1b00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:1c00::,2406:1c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:1d00::,2406:1d00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:1e00::,2406:1e00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:1f00::,2406:1f00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:2000::,2406:2000:ef95:ffff:ffff:ffff:ffff:ffff,TW 2406:2000:ef96::,2406:2000:ef96:7fff:ffff:ffff:ffff:ffff,HK 2406:2000:ef96:8000::,2406:2000:efa5:ffff:ffff:ffff:ffff:ffff,TW 2406:2000:efa6::,2406:2000:efa6:7fff:ffff:ffff:ffff:ffff,SG 2406:2000:efa6:8000::,2406:2000:efb9:ffff:ffff:ffff:ffff:ffff,TW 2406:2000:efba::,2406:2000:efba:7fff:ffff:ffff:ffff:ffff,HK 2406:2000:efba:8000::,2406:2000:ffff:ffff:ffff:ffff:ffff:ffff,TW 2406:2100::,2406:2100:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:2200::,2406:2200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:2300::,2406:2300:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:2400::,2406:2400:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:2500::,2406:2500:ffff:ffff:ffff:ffff:ffff:ffff,BD 2406:2600::,2406:2600:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:2700::,2406:2700:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:2800::,2406:2800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:2900::,2406:2900:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:2a00::,2406:2a00:ffff:ffff:ffff:ffff:ffff:ffff,PH 2406:2b00::,2406:2b00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:2c00::,2406:2c00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:2d00::,2406:2d00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:2e00::,2406:2e00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:2f00::,2406:2f00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:3000::,2406:3003:ffff:ffff:ffff:ffff:ffff:ffff,SG 2406:3100::,2406:3100:ffff:ffff:ffff:ffff:ffff:ffff,TH 2406:3200::,2406:3200:ffff:ffff:ffff:ffff:ffff:ffff,PH 2406:3300::,2406:3300:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:3400::,2406:3400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:3600::,2406:3600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:3700::,2406:3700:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:3800::,2406:3800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:3a00::,2406:3a00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:3b00::,2406:3b00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:3c00::,2406:3c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:3d00::,2406:3d00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:3e00::,2406:3e00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:3f00::,2406:3f00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:4000::,2406:4000:ffff:ffff:ffff:ffff:ffff:ffff,KR 2406:4100::,2406:4100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:4200::,2406:4200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:4300::,2406:4300:ffff:ffff:ffff:ffff:ffff:ffff,HK 2406:4400::,2406:4400:ffff:ffff:ffff:ffff:ffff:ffff,PH 2406:4500::,2406:4500:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:4600::,2406:4600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:4700::,2406:4700:ffff:ffff:ffff:ffff:ffff:ffff,SG 2406:4800::,2406:4800:ffff:ffff:ffff:ffff:ffff:ffff,SG 2406:4900::,2406:4900:ffff:ffff:ffff:ffff:ffff:ffff,MY 2406:4a00::,2406:4a00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:4b00::,2406:4b00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2406:4c00::,2406:4c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:4d00::,2406:4d00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:4e00::,2406:4e00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:4f00::,2406:4f00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:5000::,2406:5000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:5100::,2406:5100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:5200::,2406:5200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:5300::,2406:5300:ffff:ffff:ffff:ffff:ffff:ffff,SG 2406:5400::,2406:5400:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:5500::,2406:5500:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:5600::,2406:5600:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:5700::,2406:5700:ffff:ffff:ffff:ffff:ffff:ffff,AF 2406:5800::,2406:5800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:5900::,2406:5900:ffff:ffff:ffff:ffff:ffff:ffff,KR 2406:5a00::,2406:5a00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:5b00::,2406:5b00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2406:5c00::,2406:5c00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:5d00::,2406:5d00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:5e00::,2406:5e00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:5f00::,2406:5f00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:6000::,2406:6000:ffff:ffff:ffff:ffff:ffff:ffff,MY 2406:6100::,2406:6100:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:6200::,2406:6200:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:6300::,2406:6300:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:6400::,2406:6400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:6500::,2406:6500:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:6600::,2406:6600:ffff:ffff:ffff:ffff:ffff:ffff,KR 2406:6700::,2406:6700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:6800::,2406:6800:ffff:ffff:ffff:ffff:ffff:ffff,KR 2406:6900::,2406:6900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:6a00::,2406:6a00:ffff:ffff:ffff:ffff:ffff:ffff,KR 2406:6b00::,2406:6b00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:6c00::,2406:6c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:6d00::,2406:6d00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:6e00::,2406:6e00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:7000::,2406:7000:ffff:ffff:ffff:ffff:ffff:ffff,PK 2406:7100::,2406:7100:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:7300::,2406:7300:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:7400::,2406:7400:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:7500::,2406:7500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:7600::,2406:7600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:7700::,2406:7700:ffff:ffff:ffff:ffff:ffff:ffff,MY 2406:7800::,2406:7801:ffff:ffff:ffff:ffff:ffff:ffff,BN 2406:7900::,2406:7900:ffff:ffff:ffff:ffff:ffff:ffff,TH 2406:7a00::,2406:7a00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:7c00::,2406:7c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:7d00::,2406:7d00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:7e00::,2406:7e00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:7f00::,2406:7f00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:8000::,2406:8000:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:8100::,2406:8100:ffff:ffff:ffff:ffff:ffff:ffff,HK 2406:8200::,2406:8200:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:8400::,2406:8400:ffff:ffff:ffff:ffff:ffff:ffff,PK 2406:8500::,2406:8500:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:8600::,2406:8600:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:8700::,2406:8700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:8800::,2406:8800:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:8900::,2406:8901:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:8a00::,2406:8a00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:8b00::,2406:8b00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2406:8c00::,2406:8c00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:8d00::,2406:8d00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:8e00::,2406:8e00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:8f00::,2406:8f00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:9000::,2406:9000:ffff:ffff:ffff:ffff:ffff:ffff,VN 2406:9100::,2406:9100:ffff:ffff:ffff:ffff:ffff:ffff,HK 2406:9200::,2406:9200:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:9300::,2406:9300:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:9400::,2406:9400:ffff:ffff:ffff:ffff:ffff:ffff,HK 2406:9600::,2406:9600:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:9700::,2406:9700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:9900::,2406:9900:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:9a00::,2406:9a01:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:9b00::,2406:9b00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2406:9c00::,2406:9c00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2406:9d00::,2406:9d00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:9e00::,2406:9e00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:9f00::,2406:9f00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:a000::,2406:a000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:a100::,2406:a100:ffff:ffff:ffff:ffff:ffff:ffff,AF 2406:a200::,2406:a200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:a300::,2406:a300:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:a400::,2406:a400:ffff:ffff:ffff:ffff:ffff:ffff,SG 2406:a500::,2406:a500:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:a600::,2406:a600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:a700::,2406:a700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:a800::,2406:a800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:a900::,2406:a900:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:aa00::,2406:aa00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:ab00::,2406:ab00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:ac00::,2406:ac00:ffff:ffff:ffff:ffff:ffff:ffff,PK 2406:ad00::,2406:ad00:ffff:ffff:ffff:ffff:ffff:ffff,KR 2406:ae00::,2406:ae00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:af00::,2406:af00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:b000::,2406:b000:ffff:ffff:ffff:ffff:ffff:ffff,KR 2406:b100::,2406:b100:ffff:ffff:ffff:ffff:ffff:ffff,KH 2406:b200::,2406:b200:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:b300::,2406:b300:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:b400::,2406:b400:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:b500::,2406:b500:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:b600::,2406:b600:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:b700::,2406:b700:ffff:ffff:ffff:ffff:ffff:ffff,NP 2406:b800::,2406:b800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:b900::,2406:b900:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:ba00::,2406:ba00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:bb00::,2406:bb07:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:bc00::,2406:bc00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:bd00::,2406:bd00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:be00::,2406:be00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:bf00::,2406:bf00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:c000::,2406:c000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:c100::,2406:c100:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:c200::,2406:c200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:c300::,2406:c300:ffff:ffff:ffff:ffff:ffff:ffff,SG 2406:c400::,2406:c400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:c500::,2406:c500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:c600::,2406:c600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:c700::,2406:c700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:c800::,2406:c800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:c900::,2406:c900:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:ca00::,2406:ca00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:cb00::,2406:cb00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:cc00::,2406:cc00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2406:cd00::,2406:cd00:ffff:ffff:ffff:ffff:ffff:ffff,KI 2406:ce00::,2406:ce07:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:cf00::,2406:cf00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:d000::,2406:d000:ffff:ffff:ffff:ffff:ffff:ffff,KR 2406:d100::,2406:d100:ffff:ffff:ffff:ffff:ffff:ffff,AF 2406:d200::,2406:d200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:d300::,2406:d300:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:d400::,2406:d400:ffff:ffff:ffff:ffff:ffff:ffff,TW 2406:d500::,2406:d501:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:d600::,2406:d600:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:d700::,2406:d700:ffff:ffff:ffff:ffff:ffff:ffff,KR 2406:d800::,2406:d800:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:da00::,2406:da00:ffff:ffff:ffff:ffff:ffff:ffff,US 2406:da01::,2406:daff:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:db00::,2406:db00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:dc00::,2406:dc00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:dd00::,2406:dd00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:de00::,2406:de00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:df00::,2406:df00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2406:e000::,2406:e007:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:e100::,2406:e100:ffff:ffff:ffff:ffff:ffff:ffff,PH 2406:e200::,2406:e200:ffff:ffff:ffff:ffff:ffff:ffff,HK 2406:e300::,2406:e300:ffff:ffff:ffff:ffff:ffff:ffff,HK 2406:e400::,2406:e400:ffff:ffff:ffff:ffff:ffff:ffff,MV 2406:e500::,2406:e500:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:e600::,2406:e600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:e700::,2406:e700:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:e800::,2406:e800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:e900::,2406:e900:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:ea00::,2406:ea00:ffff:ffff:ffff:ffff:ffff:ffff,MM 2406:eb00::,2406:eb00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2406:ec00::,2406:ec00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:ed00::,2406:ed00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:ee00::,2406:ee00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2406:ef00::,2406:ef00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:f000::,2406:f000:ffff:ffff:ffff:ffff:ffff:ffff,SG 2406:f100::,2406:f100:ffff:ffff:ffff:ffff:ffff:ffff,BD 2406:f200::,2406:f200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:f300::,2406:f300:ffff:ffff:ffff:ffff:ffff:ffff,CN 2406:f400::,2406:f400:ffff:ffff:ffff:ffff:ffff:ffff,SG 2406:f500::,2406:f500:ffff:ffff:ffff:ffff:ffff:ffff,PK 2406:f600::,2406:f600:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:f700::,2406:f700:ffff:ffff:ffff:ffff:ffff:ffff,HK 2406:f800::,2406:f800:ffff:ffff:ffff:ffff:ffff:ffff,FJ 2406:f900::,2406:f900:ffff:ffff:ffff:ffff:ffff:ffff,SG 2406:fa00::,2406:fa00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2406:fb00::,2406:fb00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2406:fc00::,2406:fc00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2406:fd00::,2406:fd00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2406:fe00::,2406:fe00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2406:ff00::,2406:ff00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2407::,2407::ffff:ffff:ffff:ffff:ffff:ffff,ID 2407:100::,2407:100:ffff:ffff:ffff:ffff:ffff:ffff,VN 2407:200::,2407:200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:300::,2407:300:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:400::,2407:400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:500::,2407:500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:600::,2407:600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:700::,2407:700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:800::,2407:800:ffff:ffff:ffff:ffff:ffff:ffff,FJ 2407:900::,2407:900:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:a00::,2407:a00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:b00::,2407:b00:ffff:ffff:ffff:ffff:ffff:ffff,KR 2407:c00::,2407:c00:ffff:ffff:ffff:ffff:ffff:ffff,LK 2407:d00::,2407:d00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2407:e00::,2407:e00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:f00::,2407:f00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2407:1000::,2407:1000:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2407:1100::,2407:1100:ffff:ffff:ffff:ffff:ffff:ffff,MY 2407:1200::,2407:1200:ffff:ffff:ffff:ffff:ffff:ffff,JP 2407:1300::,2407:1300:ffff:ffff:ffff:ffff:ffff:ffff,MY 2407:1400::,2407:1400:ffff:ffff:ffff:ffff:ffff:ffff,NP 2407:1500::,2407:1500:ffff:ffff:ffff:ffff:ffff:ffff,BD 2407:1600::,2407:1600:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:1700::,2407:1700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:1800::,2407:1800:ffff:ffff:ffff:ffff:ffff:ffff,PG 2407:1900::,2407:1900:ffff:ffff:ffff:ffff:ffff:ffff,CN 2407:1b00::,2407:1b00:ffff:ffff:ffff:ffff:ffff:ffff,PK 2407:1c00::,2407:1c00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2407:1d00::,2407:1d00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2407:1e00::,2407:1e00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:2000::,2407:2000:ffff:ffff:ffff:ffff:ffff:ffff,KR 2407:2100::,2407:2100:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:2200::,2407:2200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:2400::,2407:2400:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2407:2500::,2407:2500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:2600::,2407:2600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:2800::,2407:2800:ffff:ffff:ffff:ffff:ffff:ffff,WS 2407:2900::,2407:2900:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:2a00::,2407:2a00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:2b00::,2407:2b00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2407:2d00::,2407:2d00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2407:2e00::,2407:2e01:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:2f00::,2407:2f00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2407:3000::,2407:3000:ffff:ffff:ffff:ffff:ffff:ffff,JP 2407:3100::,2407:3100:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:3300::,2407:3300:ffff:ffff:ffff:ffff:ffff:ffff,JP 2407:3400::,2407:3400:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:3500::,2407:3500:ffff:ffff:ffff:ffff:ffff:ffff,KR 2407:3600::,2407:3600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:3700::,2407:3700:ffff:ffff:ffff:ffff:ffff:ffff,CN 2407:3800::,2407:3800:ffff:ffff:ffff:ffff:ffff:ffff,SB 2407:3900::,2407:3900:ffff:ffff:ffff:ffff:ffff:ffff,CN 2407:3a00::,2407:3a00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:3b00::,2407:3b00:ffff:ffff:ffff:ffff:ffff:ffff,PG 2407:3c00::,2407:3c00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:3d00::,2407:3d00:ffff:ffff:ffff:ffff:ffff:ffff,TW 2407:3e00::,2407:3e00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2407:3f00::,2407:3f00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2407:4000::,2407:4000:ffff:ffff:ffff:ffff:ffff:ffff,MY 2407:4100::,2407:4100:ffff:ffff:ffff:ffff:ffff:ffff,SG 2407:4200::,2407:4200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:4300::,2407:4300:ffff:ffff:ffff:ffff:ffff:ffff,MY 2407:4400::,2407:4400:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2407:4500::,2407:4500:ffff:ffff:ffff:ffff:ffff:ffff,PK 2407:4600::,2407:4600:ffff:ffff:ffff:ffff:ffff:ffff,ID 2407:4700::,2407:4700:ffff:ffff:ffff:ffff:ffff:ffff,TW 2407:4800::,2407:4800:ffff:ffff:ffff:ffff:ffff:ffff,FM 2407:4900::,2407:4900:ffff:ffff:ffff:ffff:ffff:ffff,TW 2407:4a00::,2407:4a00:ffff:ffff:ffff:ffff:ffff:ffff,NC 2407:4b00::,2407:4b00:ffff:ffff:ffff:ffff:ffff:ffff,TW 2407:4c00::,2407:4c00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:4d00::,2407:4d00:ffff:ffff:ffff:ffff:ffff:ffff,TW 2407:4e00::,2407:4e00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2407:4f00::,2407:4f00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2407:5000::,2407:5000:ffff:ffff:ffff:ffff:ffff:ffff,BD 2407:5100::,2407:5100:ffff:ffff:ffff:ffff:ffff:ffff,JP 2407:5200::,2407:5200:ffff:ffff:ffff:ffff:ffff:ffff,NP 2407:5300::,2407:5300:ffff:ffff:ffff:ffff:ffff:ffff,JP 2407:5400::,2407:5400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:5500::,2407:5500:ffff:ffff:ffff:ffff:ffff:ffff,CN 2407:5600::,2407:5600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:5700::,2407:5700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:5800::,2407:5800:ffff:ffff:ffff:ffff:ffff:ffff,CK 2407:5900::,2407:5900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:5a00::,2407:5a00:ffff:ffff:ffff:ffff:ffff:ffff,PH 2407:5b00::,2407:5b00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2407:5c00::,2407:5c00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:5d00::,2407:5d00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2407:5e00::,2407:5e00:ffff:ffff:ffff:ffff:ffff:ffff,KH 2407:5f00::,2407:5f00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2407:6000::,2407:6000:ffff:ffff:ffff:ffff:ffff:ffff,MY 2407:6100::,2407:6100:ffff:ffff:ffff:ffff:ffff:ffff,MM 2407:6200::,2407:6200:ffff:ffff:ffff:ffff:ffff:ffff,NP 2407:6300::,2407:6300:ffff:ffff:ffff:ffff:ffff:ffff,SG 2407:6400::,2407:6400:ffff:ffff:ffff:ffff:ffff:ffff,MN 2407:6500::,2407:6500:ffff:ffff:ffff:ffff:ffff:ffff,KR 2407:6600::,2407:6600:ffff:ffff:ffff:ffff:ffff:ffff,TH 2407:6700::,2407:6700:ffff:ffff:ffff:ffff:ffff:ffff,KR 2407:6800::,2407:6800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:6900::,2407:6900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:6a00::,2407:6a00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:6b00::,2407:6b00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:6c00::,2407:6c00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2407:6d00::,2407:6d00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2407:6e00::,2407:6e00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:6f00::,2407:6f00:ffff:ffff:ffff:ffff:ffff:ffff,BD 2407:7000::,2407:7000:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2407:7100::,2407:7100:ffff:ffff:ffff:ffff:ffff:ffff,TW 2407:7200::,2407:7200:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:7300::,2407:7300:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:7400::,2407:7400:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:7500::,2407:7500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:7600::,2407:7600:ffff:ffff:ffff:ffff:ffff:ffff,ID 2407:7700::,2407:7700:ffff:ffff:ffff:ffff:ffff:ffff,MY 2407:7800::,2407:7800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:7900::,2407:7900:ffff:ffff:ffff:ffff:ffff:ffff,TH 2407:7a00::,2407:7a00:ffff:ffff:ffff:ffff:ffff:ffff,TH 2407:7b00::,2407:7b00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:7c00::,2407:7c00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2407:7d00::,2407:7d00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2407:7f00::,2407:7f00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2407:8000::,2407:8000:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:8100::,2407:8100:ffff:ffff:ffff:ffff:ffff:ffff,SG 2407:8200::,2407:8200:ffff:ffff:ffff:ffff:ffff:ffff,ID 2407:8300::,2407:8300:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2407:8400::,2407:8400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:8500::,2407:8500:ffff:ffff:ffff:ffff:ffff:ffff,SG 2407:8600::,2407:8600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:8700::,2407:8700:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:8800::,2407:8800:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:8900::,2407:8900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:8a00::,2407:8a00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2407:8b00::,2407:8b00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2407:8c00::,2407:8c00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:8e00::,2407:8e00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:8f00::,2407:8f00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2407:9000::,2407:9000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:9100::,2407:9100:ffff:ffff:ffff:ffff:ffff:ffff,KR 2407:9300::,2407:9300:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:9400::,2407:9400:ffff:ffff:ffff:ffff:ffff:ffff,MY 2407:9500::,2407:9500:ffff:ffff:ffff:ffff:ffff:ffff,NP 2407:9800::,2407:9800:ffff:ffff:ffff:ffff:ffff:ffff,PH 2407:9900::,2407:9900:ffff:ffff:ffff:ffff:ffff:ffff,JP 2407:9a00::,2407:9a00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:9c00::,2407:9c00:ffff:ffff:ffff:ffff:ffff:ffff,PK 2407:9d00::,2407:9d00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2407:9e00::,2407:9e00:ffff:ffff:ffff:ffff:ffff:ffff,PK 2407:9f00::,2407:9f00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2407:a000::,2407:a000:ffff:ffff:ffff:ffff:ffff:ffff,FJ 2407:a100::,2407:a100:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:a200::,2407:a200:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:a300::,2407:a300:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:a500::,2407:a500:ffff:ffff:ffff:ffff:ffff:ffff,TH 2407:a600::,2407:a600:ffff:ffff:ffff:ffff:ffff:ffff,ID 2407:a700::,2407:a700:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:a800::,2407:a800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2407:aa00::,2407:aa00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:ab00::,2407:ab00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:ac00::,2407:ac00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2407:ad00::,2407:ad00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2407:ae00::,2407:ae00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:af00::,2407:af00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:b000::,2407:b001:ffff:ffff:ffff:ffff:ffff:ffff,JP 2407:b100::,2407:b100:ffff:ffff:ffff:ffff:ffff:ffff,BD 2407:b200::,2407:b200:ffff:ffff:ffff:ffff:ffff:ffff,KR 2407:b300::,2407:b300:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:b400::,2407:b400:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:b500::,2407:b500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:b600::,2407:b600:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:b700::,2407:b700:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:b800::,2407:b800:ffff:ffff:ffff:ffff:ffff:ffff,KR 2407:b900::,2407:b900:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:ba00::,2407:ba00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2407:bb00::,2407:bb00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:bc00::,2407:bc00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2407:bd00::,2407:bd00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:be00::,2407:be00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:bf00::,2407:bf00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2407:c000::,2407:c000:ffff:ffff:ffff:ffff:ffff:ffff,KR 2407:c100::,2407:c100:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2407:c200::,2407:c200:ffff:ffff:ffff:ffff:ffff:ffff,ID 2407:c300::,2407:c300:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2407:c400::,2407:c400:ffff:ffff:ffff:ffff:ffff:ffff,CN 2407:c500::,2407:c500:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:c600::,2407:c600:ffff:ffff:ffff:ffff:ffff:ffff,MY 2407:c700::,2407:c700:ffff:ffff:ffff:ffff:ffff:ffff,KR 2407:c800::,2407:c800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2407:c900::,2407:c900:ffff:ffff:ffff:ffff:ffff:ffff,CN 2407:ca00::,2407:ca00:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2407:cb00::,2407:cb00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:cc00::,2407:cc00:ffff:ffff:ffff:ffff:ffff:ffff,JP 2407:cd00::,2407:cd00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:ce00::,2407:ce00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:cf00::,2407:cf00:ffff:ffff:ffff:ffff:ffff:ffff,CN 2407:d000::,2407:d000:ffff:ffff:ffff:ffff:ffff:ffff,PK 2407:d100::,2407:d100:ffff:ffff:ffff:ffff:ffff:ffff,KR 2407:d200::,2407:d200:ffff:ffff:ffff:ffff:ffff:ffff,SG 2407:d300::,2407:d300:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:d400::,2407:d400:ffff:ffff:ffff:ffff:ffff:ffff,NP 2407:d500::,2407:d500:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2407:d600::,2407:d600:ffff:ffff:ffff:ffff:ffff:ffff,JP 2407:d700::,2407:d700:ffff:ffff:ffff:ffff:ffff:ffff,BD 2407:d800::,2407:d800:ffff:ffff:ffff:ffff:ffff:ffff,JP 2407:d900::,2407:d900:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:da00::,2407:da00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:db00::,2407:db00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:dc00::,2407:dc00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:dd00::,2407:dd00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:de00::,2407:de00:ffff:ffff:ffff:ffff:ffff:ffff,MY 2407:df00::,2407:df00:ffff:ffff:ffff:ffff:ffff:ffff,ID 2407:e000::,2407:e000:ffff:ffff:ffff:ffff:ffff:ffff,SG 2407:e100::,2407:e100:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:e200::,2407:e200:ffff:ffff:ffff:ffff:ffff:ffff,MY 2407:e300::,2407:e301:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:e400::,2407:e400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:e500::,2407:e501:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:e600::,2407:e600:ffff:ffff:ffff:ffff:ffff:ffff,JP 2407:e700::,2407:e700:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:e800::,2407:e800:ffff:ffff:ffff:ffff:ffff:ffff,CN 2407:e900::,2407:e900:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:ea00::,2407:ea00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:eb00::,2407:eb00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2407:ec00::,2407:ec00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:ed00::,2407:ed00:ffff:ffff:ffff:ffff:ffff:ffff,TH 2407:ee00::,2407:ee00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:ef00::,2407:ef00:ffff:ffff:ffff:ffff:ffff:ffff,SG 2407:f000::,2407:f000:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:f100::,2407:f100:ffff:ffff:ffff:ffff:ffff:ffff,NZ 2407:f200::,2407:f200:ffff:ffff:ffff:ffff:ffff:ffff,ID 2407:f300::,2407:f300:ffff:ffff:ffff:ffff:ffff:ffff,MM 2407:f400::,2407:f400:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:f500::,2407:f500:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:f600::,2407:f600:ffff:ffff:ffff:ffff:ffff:ffff,JP 2407:f700::,2407:f700:ffff:ffff:ffff:ffff:ffff:ffff,IN 2407:f800::,2407:f800:ffff:ffff:ffff:ffff:ffff:ffff,MY 2407:f900::,2407:f900:ffff:ffff:ffff:ffff:ffff:ffff,ID 2407:fa00::,2407:fa00:ffff:ffff:ffff:ffff:ffff:ffff,HK 2407:fd00::,2407:fd00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:fe00::,2407:fe00:ffff:ffff:ffff:ffff:ffff:ffff,AU 2407:ff00::,2407:ff00:ffff:ffff:ffff:ffff:ffff:ffff,IN 2408::,2408:3ff:ffff:ffff:ffff:ffff:ffff:ffff,JP 2408:8000::,2408:8fff:ffff:ffff:ffff:ffff:ffff:ffff,CN 2409:10::,2409:1f:ffff:ffff:ffff:ffff:ffff:ffff,JP 2409:250::,2409:25f:ffff:ffff:ffff:ffff:ffff:ffff,JP 2409:8000::,2409:8fff:ffff:ffff:ffff:ffff:ffff:ffff,CN 240a::,240a:7f:ffff:ffff:ffff:ffff:ffff:ffff,JP 240a:8000::,240a:87ff:ffff:ffff:ffff:ffff:ffff:ffff,CN 240b::,240b:3f:ffff:ffff:ffff:ffff:ffff:ffff,JP 240b:240::,240b:27f:ffff:ffff:ffff:ffff:ffff:ffff,JP 240b:8000::,240b:87ff:ffff:ffff:ffff:ffff:ffff:ffff,CN 240c::,240c:f:ffff:ffff:ffff:ffff:ffff:ffff,CN 240c:8000::,240c:87ff:ffff:ffff:ffff:ffff:ffff:ffff,CN 240d::,240d:1f:ffff:ffff:ffff:ffff:ffff:ffff,JP 240d:8000::,240d:80ff:ffff:ffff:ffff:ffff:ffff:ffff,CN 240e::,240e:fff:ffff:ffff:ffff:ffff:ffff:ffff,CN 240f::,240f:74:c239:ffff:ffff:ffff:ffff:ffff,JP 240f:74:c23a::,240f:74:c23a:7fff:ffff:ffff:ffff:ffff,US 240f:74:c23a:8000::,240f:78:8491:ffff:ffff:ffff:ffff:ffff,JP 240f:78:8492::,240f:78:8492:7fff:ffff:ffff:ffff:ffff,GB 240f:78:8492:8000::,240f:ff:ffff:ffff:ffff:ffff:ffff:ffff,JP 240f:8000::,240f:80ff:ffff:ffff:ffff:ffff:ffff:ffff,CN 2600::,2600:7:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:100::,2600:10f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:200::,2600:20f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:300::,2600:400:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:800::,2600:81f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:900::,2600:90f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:a00::,2600:a01:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:b00::,2600:b0f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:c00::,2600:c14:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:d00::,2600:d0f:ffff:ffff:ffff:ffff:ffff:ffff,CA 2600:f00::,2600:1017:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:1100::,2600:110f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:1200::,2600:130f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:1400::,2600:150f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:1600::,2600:16ff:ffff:ffff:ffff:ffff:ffff:ffff,CA 2600:1700::,2600:170f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:1800::,2600:180f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:1900::,2600:190f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:1a00::,2600:1a0f:ffff:ffff:ffff:ffff:ffff:ffff,GD 2600:1b00::,2600:1bff:ffff:ffff:ffff:ffff:ffff:ffff,JM 2600:1d00::,2600:1d0f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:1e00::,2600:1e0f:ffff:ffff:ffff:ffff:ffff:ffff,VC 2600:1f00::,2600:200f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:2100::,2600:210f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:2200::,2600:220f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:2300::,2600:230f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:2400::,2600:2407:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:2500::,2600:250f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:2600::,2600:260f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:2800::,2600:2803:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:2c00::,2600:2c03:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:3000::,2600:3007:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:3400::,2600:340f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:3800::,2600:380f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:3c00::,2600:3c03:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:4000::,2600:40ff:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:4400::,2600:4407:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:4800::,2600:480f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:4c00::,2600:4c01:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:5000::,2600:500f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:5400::,2600:541f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:5800::,2600:5801:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:5c00::,2600:5c01:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:6000::,2600:6001:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:6400::,2600:640f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:6800::,2600:68ff:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:6c00::,2600:6cff:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:7000::,2600:70ff:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:7400::,2600:740f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:7800::,2600:780f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:7c00::,2600:7c0f:ffff:ffff:ffff:ffff:ffff:ffff,VC 2600:8000::,2600:80ff:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:8400::,2600:840f:ffff:ffff:ffff:ffff:ffff:ffff,BB 2600:8800::,2600:880f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:8c00::,2600:8c0f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:9000::,2600:900f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:a000::,2600:a00f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:a400::,2600:a40f:ffff:ffff:ffff:ffff:ffff:ffff,US 2600:e000::,2600:e00f:ffff:ffff:ffff:ffff:ffff:ffff,CA 2601::,2601:6:117f:ffff:ffff:ffff:ffff:ffff,US 2601:6:1180::,2601:6:1180:ffff:ffff:ffff:ffff:ffff,CA 2601:6:1181::,2601:186:ffff:ffff:ffff:ffff:ffff:ffff,US 2601:187::,2601:187:1:7fff:ffff:ffff:ffff:ffff,CA 2601:187:1:8000::,2601:187:7f:ffff:ffff:ffff:ffff:ffff,US 2601:187:80::,2601:187:80:7fff:ffff:ffff:ffff:ffff,CA 2601:187:80:8000::,2601:fff:ffff:ffff:ffff:ffff:ffff:ffff,US 2602::,2602:10f:ffff:ffff:ffff:ffff:ffff:ffff,US 2602:200::,2602:200:ffff:ffff:ffff:ffff:ffff:ffff,CA 2602:210::,2602:210:ffff:ffff:ffff:ffff:ffff:ffff,CA 2602:220::,2602:220:ffff:ffff:ffff:ffff:ffff:ffff,CA 2602:230::,2602:231:ffff:ffff:ffff:ffff:ffff:ffff,US 2602:240::,2602:25f:ffff:ffff:ffff:ffff:ffff:ffff,US 2602:300::,2602:3ff:ffff:ffff:ffff:ffff:ffff:ffff,US 2602:ff63::,2602:ff63:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff64::,2602:ff64:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff65::,2602:ff65:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff66::,2602:ff66:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ff67::,2602:ff67:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff68::,2602:ff68:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff69::,2602:ff69:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff6a::,2602:ff6a:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff6b::,2602:ff6b:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff6c::,2602:ff6c:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ff6d::,2602:ff6d:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ff6e::,2602:ff6e:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ff6f::,2602:ff6f:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff70::,2602:ff70:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ff71::,2602:ff71:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff72::,2602:ff72:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff73::,2602:ff73:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ff74::,2602:ff74:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ff75::,2602:ff75:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff76::,2602:ff76:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ff77::,2602:ff77:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff78::,2602:ff78:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff79::,2602:ff79:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff7a::,2602:ff7a:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff7b::,2602:ff7b:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff7c::,2602:ff7c:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff7d::,2602:ff7d:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff7e::,2602:ff7e:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff7f::,2602:ff7f:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff80::,2602:ff80:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff81::,2602:ff81:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff82::,2602:ff82:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff83::,2602:ff83:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff84::,2602:ff84:2:ffff:ffff:ffff:ffff:ffff,US 2602:ff84:3::,2602:ff84:3:ffff:ffff:ffff:ffff:ffff,DE 2602:ff84:4::,2602:ff84:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff85::,2602:ff85:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff86::,2602:ff86:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff87::,2602:ff87:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff88::,2602:ff88:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff89::,2602:ff89:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff8a::,2602:ff8a:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff8b::,2602:ff8b:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff8c::,2602:ff8c:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff8d::,2602:ff8d:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff8e::,2602:ff8e:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff8f::,2602:ff8f:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff90::,2602:ff90:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff91::,2602:ff91:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff92::,2602:ff92:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff93::,2602:ff93:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ff94::,2602:ff94:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff95::,2602:ff95:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff96::,2602:ff96:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff97::,2602:ff97:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff98::,2602:ff98:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ff99::,2602:ff99:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff9a::,2602:ff9a:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff9b::,2602:ff9b:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ff9c::,2602:ff9c:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ff9d::,2602:ff9d:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ff9e::,2602:ff9e:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ff9f::,2602:ff9f:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ffa0::,2602:ffa0:1ff:ffff:ffff:ffff:ffff:ffff,VG 2602:ffa0:200::,2602:ffa0:200:7fff:ffff:ffff:ffff:ffff,US 2602:ffa0:200:8000::,2602:ffa0:fff:ffff:ffff:ffff:ffff:ffff,VG 2602:ffa1::,2602:ffa1:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffa2::,2602:ffa2:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffa3::,2602:ffa3:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffa4::,2602:ffa4:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffa5::,2602:ffa5:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffa6::,2602:ffa6:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffa7::,2602:ffa7:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffa8::,2602:ffa8:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffa9::,2602:ffa9:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffaa::,2602:ffaa:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffab::,2602:ffab:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffac::,2602:ffac:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffad::,2602:ffad:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffae::,2602:ffae:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffaf::,2602:ffaf:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffb0::,2602:ffb0:ffff:ffff:ffff:ffff:ffff:ffff,US 2602:ffb1::,2602:ffb1:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ffb2::,2602:ffb2:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffb3::,2602:ffb3:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffb4::,2602:ffb4:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffb5::,2602:ffb5:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffb6::,2602:ffb6:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ffb7::,2602:ffb7:eff:ffff:ffff:ffff:ffff:ffff,US 2602:ffb7:f00::,2602:ffb7:fff:ffff:ffff:ffff:ffff:ffff,DE 2602:ffb8::,2602:ffb8:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffb9::,2602:ffb9:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffba::,2602:ffba:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffbb::,2602:ffbb:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffbc::,2602:ffbc:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffbd::,2602:ffbd:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffbe::,2602:ffbe:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ffbf::,2602:ffbf:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffc0::,2602:ffc0:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffc1::,2602:ffc1:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ffc2::,2602:ffc2:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffc3::,2602:ffc3:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffc4::,2602:ffc4:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffc5::,2602:ffc5:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffc6::,2602:ffc6:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffc7::,2602:ffc7:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffc8::,2602:ffc9:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffca::,2602:ffca:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffcb::,2602:ffcb:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffcc::,2602:ffcc:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffcd::,2602:ffcd:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ffce::,2602:ffce:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ffcf::,2602:ffcf:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffd0::,2602:ffd0:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffd1::,2602:ffd1:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffd3::,2602:ffd3:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffd4::,2602:ffd4:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffd5::,2602:ffd5:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ffd6::,2602:ffd6:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffd7::,2602:ffd7:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffd8::,2602:ffd8:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffd9::,2602:ffd9:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffda::,2602:ffda:aa9:ffff:ffff:ffff:ffff:ffff,US 2602:ffda:aaa::,2602:ffda:aaa:7fff:ffff:ffff:ffff:ffff,NL 2602:ffda:aaa:8000::,2602:ffda:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffdb::,2602:ffdb:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffdc::,2602:ffdc:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffdd::,2602:ffdd:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffde::,2602:ffde:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffdf::,2602:ffdf:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffe0::,2602:ffe0:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffe1::,2602:ffe1:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffe2::,2602:ffe2:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffe3::,2602:ffe3:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffe4::,2602:ffe4:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffe5::,2602:ffe5:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffe6::,2602:ffe6:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffe7::,2602:ffe7:fff:ffff:ffff:ffff:ffff:ffff,PR 2602:ffe8::,2602:ffe8:3ff:ffff:ffff:ffff:ffff:ffff,US 2602:ffe8:400::,2602:ffe8:4ff:ffff:ffff:ffff:ffff:ffff,AU 2602:ffe8:500::,2602:ffe9:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffea::,2602:ffeb:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffec::,2602:ffec:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ffed::,2602:ffed:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffee::,2602:ffee:fff:ffff:ffff:ffff:ffff:ffff,US 2602:ffef::,2602:ffef:fff:ffff:ffff:ffff:ffff:ffff,US 2602:fff0::,2602:fff0:fff:ffff:ffff:ffff:ffff:ffff,US 2602:fff1::,2602:fff1:fff:ffff:ffff:ffff:ffff:ffff,US 2602:fff2::,2602:fff2:fff:ffff:ffff:ffff:ffff:ffff,US 2602:fff3::,2602:fff3:fff:ffff:ffff:ffff:ffff:ffff,US 2602:fff4::,2602:fff4:fff:ffff:ffff:ffff:ffff:ffff,US 2602:fff5::,2602:fff5:fff:ffff:ffff:ffff:ffff:ffff,US 2602:fff6::,2602:fff6:fff:ffff:ffff:ffff:ffff:ffff,US 2602:fff7::,2602:fff7:fff:ffff:ffff:ffff:ffff:ffff,US 2602:fff8::,2602:fff8:fff:ffff:ffff:ffff:ffff:ffff,US 2602:fff9::,2602:fff9:fff:ffff:ffff:ffff:ffff:ffff,US 2602:fffa::,2602:fffa:fff:ffff:ffff:ffff:ffff:ffff,US 2602:fffb::,2602:fffb:fff:ffff:ffff:ffff:ffff:ffff,US 2602:fffc::,2602:fffc:fff:ffff:ffff:ffff:ffff:ffff,US 2602:fffd::,2602:fffd:fff:ffff:ffff:ffff:ffff:ffff,CA 2602:ffff::,2602:ffff:fff:ffff:ffff:ffff:ffff:ffff,US 2603::,2603:10ff:ffff:ffff:ffff:ffff:ffff:ffff,US 2603:2000::,2603:30ff:ffff:ffff:ffff:ffff:ffff:ffff,US 2604::,2604::ffff:ffff:ffff:ffff:ffff:ffff,US 2604:10::,2604:10:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:100::,2604:100:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:180::,2604:180:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:200::,2604:200:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:280::,2604:280:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:300::,2604:300:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:380::,2604:380:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:400::,2604:400:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:480::,2604:480:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:500::,2604:500:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:580::,2604:580:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:600::,2604:600:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:680::,2604:680:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:700::,2604:700:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:780::,2604:780:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:800::,2604:800:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:880::,2604:880:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:900::,2604:900:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:980::,2604:980:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a00::,2604:a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a80::,2604:a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b00::,2604:b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b80::,2604:b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c00::,2604:c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c80::,2604:c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d00::,2604:d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d80::,2604:d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e00::,2604:e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e80::,2604:e80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:f00::,2604:f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:f80::,2604:f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1080::,2604:1080:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1100::,2604:1100:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1180::,2604:1180:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1200::,2604:1200:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1280::,2604:1280:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1300::,2604:1300:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1380::,2604:1380:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1400::,2604:1400:ffff:ffff:ffff:ffff:ffff:ffff,PR 2604:1480::,2604:1480:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1500::,2604:1500:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:1580::,2604:1580:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1600::,2604:1600:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1680::,2604:1680:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:1700::,2604:1700:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:1780::,2604:1780:ffff:ffff:ffff:ffff:ffff:ffff,KY 2604:1800::,2604:1800:ffff:ffff:ffff:ffff:ffff:ffff,GP 2604:1880::,2604:1880:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1900::,2604:1900:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1980::,2604:1980:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1a00::,2604:1a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1a80::,2604:1a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1b00::,2604:1b00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:1b80::,2604:1b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1c00::,2604:1c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1c80::,2604:1c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1d00::,2604:1d00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:1d80::,2604:1d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1e00::,2604:1e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1e80::,2604:1e80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:1f00::,2604:1f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:1f80::,2604:1f80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:2000::,2604:2000:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2080::,2604:2080:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2100::,2604:2100:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2180::,2604:2180:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2200::,2604:2200:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2280::,2604:2280:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2300::,2604:2300:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2380::,2604:2380:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2400::,2604:2400:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2480::,2604:2480:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2500::,2604:2500:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2580::,2604:2580:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:2600::,2604:2600:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2680::,2604:2680:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2700::,2604:2700:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2780::,2604:2780:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2800::,2604:2800:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2880::,2604:2880:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2900::,2604:2900:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2980::,2604:2980:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2a00::,2604:2a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2a80::,2604:2a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2b00::,2604:2b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2b80::,2604:2b80:fff:ffff:ffff:ffff:ffff:ffff,CA 2604:2c00::,2604:2c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2c80::,2604:2c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2d00::,2604:2d00:fff:ffff:ffff:ffff:ffff:ffff,US 2604:2d80::,2604:2d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2e00::,2604:2e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2e80::,2604:2e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2f00::,2604:2f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:2f80::,2604:2f80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:3000::,2604:3000:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3080::,2604:3080:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3100::,2604:3100:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3180::,2604:3180:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3200::,2604:3200:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3280::,2604:3280:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3300::,2604:3300:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3380::,2604:3380:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3400::,2604:3400:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3480::,2604:3480:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3500::,2604:3500:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3580::,2604:3580:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3600::,2604:3600:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3680::,2604:3680:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3700::,2604:3700:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3780::,2604:3780:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3800::,2604:3800:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3880::,2604:3880:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3a00::,2604:3a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3a80::,2604:3a80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:3b00::,2604:3b00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:3b80::,2604:3b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3c00::,2604:3c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3c80::,2604:3c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3d00::,2604:3d00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:3d80::,2604:3d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3e00::,2604:3e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3e80::,2604:3e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3f00::,2604:3f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:3f80::,2604:3f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4000::,2604:4000:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:4080::,2604:4080:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4100::,2604:4100:fff:ffff:ffff:ffff:ffff:ffff,US 2604:4180::,2604:4180:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4200::,2604:4200:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4280::,2604:4280:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:4300::,2604:4300:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4380::,2604:4380:ffff:ffff:ffff:ffff:ffff:ffff,GD 2604:4400::,2604:4400:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4480::,2604:4480:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4500::,2604:4500:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4580::,2604:4580:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4600::,2604:4600:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4680::,2604:4680:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:4700::,2604:4700:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4780::,2604:4780:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4800::,2604:4800:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4880::,2604:4880:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:4900::,2604:4900:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4980::,2604:4980:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4a00::,2604:4a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4a80::,2604:4a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4b00::,2604:4b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4b80::,2604:4b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4c00::,2604:4c00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:4c80::,2604:4c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4d00::,2604:4d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4d80::,2604:4d80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:4e00::,2604:4e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:4e80::,2604:4e80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:4f00::,2604:4f00:fff:ffff:ffff:ffff:ffff:ffff,US 2604:4f80::,2604:4f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5000::,2604:5000:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5080::,2604:5080:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5100::,2604:5100:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5180::,2604:5180:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5200::,2604:5200:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5280::,2604:5280:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:5300::,2604:5300:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5380::,2604:5380:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:5400::,2604:5400:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5480::,2604:5480:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5500::,2604:5500:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5580::,2604:5580:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:5600::,2604:5600:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5680::,2604:5680:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5700::,2604:5700:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5780::,2604:5780:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5800::,2604:5800:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5880::,2604:5880:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:5900::,2604:5900:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5980::,2604:5982:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5a00::,2604:5a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5a80::,2604:5a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5b00::,2604:5b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5b80::,2604:5b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5c00::,2604:5c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5c80::,2604:5c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5d00::,2604:5d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5e00::,2604:5e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5e80::,2604:5e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5f00::,2604:5f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:5f80::,2604:5f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6000::,2604:6000:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6080::,2604:6080:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6100::,2604:6100:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6180::,2604:6180:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6200::,2604:6200:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6280::,2604:6280:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6300::,2604:6300:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6380::,2604:6380:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6400::,2604:6400:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:6480::,2604:6480:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6500::,2604:6500:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:6580::,2604:6580:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:6600::,2604:6600:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6680::,2604:6680:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6700::,2604:6700:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6780::,2604:6780:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6800::,2604:6800:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6880::,2604:6880:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:6900::,2604:6900:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6980::,2604:6980:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6a00::,2604:6a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6a80::,2604:6a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6b00::,2604:6b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6b80::,2604:6b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6c00::,2604:6c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6c80::,2604:6c80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:6d00::,2604:6d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6d80::,2604:6d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6e00::,2604:6e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6e80::,2604:6e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6f00::,2604:6f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:6f80::,2604:6f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7000::,2604:7000:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7080::,2604:7080:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7100::,2604:7100:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7180::,2604:7180:fff:ffff:ffff:ffff:ffff:ffff,US 2604:7200::,2604:7200:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7280::,2604:7280:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7300::,2604:7300:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7400::,2604:7400:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7480::,2604:7480:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:7500::,2604:7500:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7580::,2604:7580:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7600::,2604:7600:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7680::,2604:7680:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7700::,2604:7700:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7780::,2604:7780:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7800::,2604:7800:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7880::,2604:7880:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7900::,2604:7900:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7980::,2604:7980:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:7a00::,2604:7a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7a80::,2604:7a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7b00::,2604:7b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7b80::,2604:7b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7c00::,2604:7c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7c80::,2604:7c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7d00::,2604:7d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7d80::,2604:7d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7e00::,2604:7e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7e80::,2604:7e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:7f00::,2604:7f00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:7f80::,2604:7f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8000::,2604:8000:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8080::,2604:8080:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:8100::,2604:8100:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8180::,2604:8181:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8200::,2604:8200:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8280::,2604:8280:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:8300::,2604:8300:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8380::,2604:8380:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8400::,2604:8400:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:8480::,2604:8480:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8500::,2604:8500:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8580::,2604:8580:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8600::,2604:8600:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:8700::,2604:8700:fff:ffff:ffff:ffff:ffff:ffff,US 2604:8780::,2604:8780:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8800::,2604:8800:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8880::,2604:8880:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:8900::,2604:8900:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8980::,2604:8980:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:8a00::,2604:8a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8a80::,2604:8a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8b00::,2604:8b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8b80::,2604:8b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8c00::,2604:8c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8c80::,2604:8c80:ffff:ffff:ffff:ffff:ffff:ffff,DM 2604:8d00::,2604:8d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8d80::,2604:8d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8e00::,2604:8e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8e80::,2604:8e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8f00::,2604:8f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:8f80::,2604:8f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9000::,2604:9000:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9080::,2604:9080:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9100::,2604:9100:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9180::,2604:9180:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9200::,2604:9200:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9280::,2604:9280:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9300::,2604:9300:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9380::,2604:9380:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:9400::,2604:9400:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9480::,2604:9480:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9500::,2604:9500:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9580::,2604:9580:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9600::,2604:9600:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9700::,2604:9700:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9780::,2604:9780:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9800::,2604:9800:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9880::,2604:9880:fff:ffff:ffff:ffff:ffff:ffff,CA 2604:9900::,2604:9900:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9980::,2604:9980:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9a00::,2604:9a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9a80::,2604:9a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9b00::,2604:9b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9b80::,2604:9b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9c00::,2604:9c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9c80::,2604:9c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9d00::,2604:9d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9d80::,2604:9d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9e00::,2604:9e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9e80::,2604:9e80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:9f00::,2604:9f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:9f80::,2604:9f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a000::,2604:a000:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a080::,2604:a080:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a100::,2604:a100:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a180::,2604:a180:ffff:ffff:ffff:ffff:ffff:ffff,BB 2604:a200::,2604:a200:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a280::,2604:a280:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:a300::,2604:a300:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a400::,2604:a400:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a480::,2604:a480:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a500::,2604:a500:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a580::,2604:a580:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a600::,2604:a600:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a680::,2604:a680:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a700::,2604:a700:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a780::,2604:a780:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a800::,2604:a800:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a880::,2604:a880:cac:ffff:ffff:ffff:ffff:ffff,US 2604:a880:cad::,2604:a880:cad:7fff:ffff:ffff:ffff:ffff,CA 2604:a880:cad:8000::,2604:a880:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a900::,2604:a900:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:a980::,2604:a980:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:aa00::,2604:aa00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:aa80::,2604:aa80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ab00::,2604:ab00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ab80::,2604:ab80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ac00::,2604:ac00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ac80::,2604:ac80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ad00::,2604:ad00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ad80::,2604:ad80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ae00::,2604:ae00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ae80::,2604:ae80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:af00::,2604:af00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:af80::,2604:af80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b000::,2604:b000:ffff:ffff:ffff:ffff:ffff:ffff,PR 2604:b080::,2604:b080:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b100::,2604:b100:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b180::,2604:b180:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b200::,2604:b200:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b280::,2604:b280:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:b300::,2604:b300:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b380::,2604:b380:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b400::,2604:b400:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b480::,2604:b480:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b500::,2604:b500:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b580::,2604:b580:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b600::,2604:b600:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b680::,2604:b680:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b700::,2604:b700:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b800::,2604:b800:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b880::,2604:b880:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b900::,2604:b900:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:b980::,2604:b980:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:ba00::,2604:ba00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ba80::,2604:ba80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:bb00::,2604:bb00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:bb80::,2604:bb80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:bc00::,2604:bc00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:bc80::,2604:bc80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:bd00::,2604:bd00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:bd80::,2604:bd80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:be00::,2604:be00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:be80::,2604:be80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:bf00::,2604:bf00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:bf80::,2604:bf80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c000::,2604:c000:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c080::,2604:c080:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c100::,2604:c100:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c180::,2604:c180:ffff:ffff:ffff:ffff:ffff:ffff,VI 2604:c200::,2604:c200:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c300::,2604:c300:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c380::,2604:c380:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c400::,2604:c400:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c500::,2604:c500:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c580::,2604:c580:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c600::,2604:c600:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c680::,2604:c680:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c700::,2604:c700:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c780::,2604:c780:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c800::,2604:c800:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c880::,2604:c880:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c900::,2604:c900:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:c980::,2604:c980:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ca00::,2604:ca00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ca80::,2604:ca80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:cb00::,2604:cb00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:cb80::,2604:cb80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:cc00::,2604:cc00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:cc80::,2604:cc80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:cd00::,2604:cd00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:cd80::,2604:cd80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ce00::,2604:ce00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ce80::,2604:ce80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:cf00::,2604:cf00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:cf80::,2604:cf80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d000::,2604:d000:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d080::,2604:d080:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d100::,2604:d100:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d180::,2604:d180:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d200::,2604:d200:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d280::,2604:d280:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d300::,2604:d300:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d380::,2604:d380:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d400::,2604:d400:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d480::,2604:d480:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d500::,2604:d500:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d580::,2604:d580:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d600::,2604:d600:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d680::,2604:d680:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d700::,2604:d700:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d780::,2604:d780:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d800::,2604:d801:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d900::,2604:d900:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:d980::,2604:d980:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:da00::,2604:da00:fff:ffff:ffff:ffff:ffff:ffff,US 2604:da80::,2604:da80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:db00::,2604:db00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:dc00::,2604:dc00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:dc80::,2604:dc80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:dd00::,2604:dd00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:dd80::,2604:dd80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:de00::,2604:de00:fff:ffff:ffff:ffff:ffff:ffff,US 2604:de80::,2604:de80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:df00::,2604:df00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e000::,2604:e000:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e080::,2604:e080:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e100::,2604:e100:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:e180::,2604:e180:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e200::,2604:e200:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e280::,2604:e280:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e300::,2604:e300:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e380::,2604:e380:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e400::,2604:e400:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e480::,2604:e480:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e500::,2604:e500:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e580::,2604:e580:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e600::,2604:e600:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e680::,2604:e680:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e700::,2604:e700:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e780::,2604:e780:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e800::,2604:e800:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e880::,2604:e880:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e900::,2604:e900:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:e980::,2604:e980:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ea00::,2604:ea00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ea80::,2604:ea80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:eb00::,2604:eb00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:eb80::,2604:eb80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ec00::,2604:ec00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:ec80::,2604:ec80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ed00::,2604:ed00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ed80::,2604:ed80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ee00::,2604:ee00:fff:ffff:ffff:ffff:ffff:ffff,US 2604:ee80::,2604:ee80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ef00::,2604:ef00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:f000::,2604:f000:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:f080::,2604:f080:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:f100::,2604:f100:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:f180::,2604:f180:ffff:ffff:ffff:ffff:ffff:ffff,PR 2604:f200::,2604:f200:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:f280::,2604:f280:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:f300::,2604:f300:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:f380::,2604:f380:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:f400::,2604:f400:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:f480::,2604:f480:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:f500::,2604:f500:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:f580::,2604:f580:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:f600::,2604:f600:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:f680::,2604:f680:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:f700::,2604:f700:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:f800::,2604:f800:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:f880::,2604:f880:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:f900::,2604:f900:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:f980::,2604:f980:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:fa00::,2604:fa00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:fa80::,2604:fa80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:fb00::,2604:fb00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:fb80::,2604:fb80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2604:fc00::,2604:fc00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:fc80::,2604:fc80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:fd00::,2604:fd00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:fd80::,2604:fd80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:fe00::,2604:fe00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:fe80::,2604:fe80:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ff00::,2604:ff00:ffff:ffff:ffff:ffff:ffff:ffff,US 2604:ff80::,2604:ff80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605::,2605::ffff:ffff:ffff:ffff:ffff:ffff,US 2605:80::,2605:80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:100::,2605:100:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:180::,2605:180:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:200::,2605:200:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:280::,2605:280:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:300::,2605:300:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:380::,2605:380:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:400::,2605:400:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:480::,2605:480:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:500::,2605:500:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:600::,2605:600:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:680::,2605:680:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:700::,2605:700:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:780::,2605:780:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:800::,2605:800:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:880::,2605:880:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:900::,2605:900:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:980::,2605:980:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a00::,2605:a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a80::,2605:a80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:b00::,2605:b00:fff:ffff:ffff:ffff:ffff:ffff,US 2605:b80::,2605:b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:c00::,2605:c00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:d00::,2605:d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:d80::,2605:d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e00::,2605:e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e80::,2605:e80:ffff:ffff:ffff:ffff:ffff:ffff,BM 2605:f00::,2605:f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f80::,2605:f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1000::,2605:1000:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:1080::,2605:1080:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1100::,2605:1100:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:1180::,2605:1180:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1280::,2605:1280:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1300::,2605:1300:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:1380::,2605:1380:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:1400::,2605:1400:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1480::,2605:1480:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1500::,2605:1500:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1580::,2605:1580:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1600::,2605:1600:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1680::,2605:1680:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1700::,2605:1700:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:1780::,2605:1780:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1800::,2605:1800:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1880::,2605:1880:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1900::,2605:1900:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1980::,2605:1980:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1a00::,2605:1a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1a80::,2605:1a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1b00::,2605:1b00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:1b80::,2605:1b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1c00::,2605:1c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1c80::,2605:1c80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:1d00::,2605:1d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1e00::,2605:1e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1e80::,2605:1e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1f00::,2605:1f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:1f80::,2605:1f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2000::,2605:2000:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2080::,2605:2080:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2100::,2605:2100:fff:ffff:ffff:ffff:ffff:ffff,CA 2605:2180::,2605:2180:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2200::,2605:2200:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2280::,2605:2280:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2300::,2605:2300:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2380::,2605:2380:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2400::,2605:2400:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2480::,2605:2480:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2500::,2605:2500:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2580::,2605:2580:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2600::,2605:2600:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:2680::,2605:2680:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2700::,2605:2700:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2800::,2605:2800:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2880::,2605:2880:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2900::,2605:2900:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:2980::,2605:2980:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2a00::,2605:2a00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:2a80::,2605:2a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2b00::,2605:2b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2b80::,2605:2b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2c00::,2605:2c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2c80::,2605:2c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2d80::,2605:2d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2e00::,2605:2e00:fff:ffff:ffff:ffff:ffff:ffff,CA 2605:2e80::,2605:2e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:2f00::,2605:2f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3000::,2605:3000:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3080::,2605:3080:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3100::,2605:3100:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3180::,2605:3180:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3200::,2605:3200:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3280::,2605:3280:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3300::,2605:3300:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3380::,2605:3380:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3400::,2605:3400:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3480::,2605:3480:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3500::,2605:3500:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3580::,2605:3580:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3600::,2605:3600:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3680::,2605:3680:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3700::,2605:3700:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3780::,2605:3780:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3800::,2605:3800:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3880::,2605:3880:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:3900::,2605:3900:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3980::,2605:3980:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3a00::,2605:3a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3b00::,2605:3b00:fff:ffff:ffff:ffff:ffff:ffff,US 2605:3b80::,2605:3b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3c00::,2605:3c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3c80::,2605:3c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3d00::,2605:3d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3d80::,2605:3d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3e00::,2605:3e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3e80::,2605:3e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:3f00::,2605:3f00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:3f80::,2605:3f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4000::,2605:4000:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4080::,2605:4080:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4100::,2605:4100:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4180::,2605:418f:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4200::,2605:4200:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4280::,2605:4280:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4300::,2605:4300:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4380::,2605:4380:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4400::,2605:4400:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4480::,2605:4480:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4500::,2605:4500:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4580::,2605:4580:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4600::,2605:4600:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4680::,2605:4680:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4700::,2605:4700:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4780::,2605:4780:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4800::,2605:4800:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4900::,2605:4900:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4980::,2605:4980:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4a00::,2605:4a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4a80::,2605:4a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4b00::,2605:4b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4b80::,2605:4b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4c00::,2605:4c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4c80::,2605:4c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4d00::,2605:4d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4d80::,2605:4d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4e00::,2605:4e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4e80::,2605:4e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:4f00::,2605:4f00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:4f80::,2605:4f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5000::,2605:5000:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5080::,2605:5080:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:5100::,2605:5100:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5180::,2605:5180:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5200::,2605:5200:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5280::,2605:5280:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5300::,2605:5300:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5380::,2605:5380:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5400::,2605:5400:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5480::,2605:5480:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5500::,2605:5500:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5580::,2605:5580:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5600::,2605:5600:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5680::,2605:5680:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5700::,2605:5700:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5800::,2605:5800:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5880::,2605:5880:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5900::,2605:5900:ffff:ffff:ffff:ffff:ffff:ffff,JM 2605:5980::,2605:5980:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5a00::,2605:5a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5a80::,2605:5a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5b00::,2605:5b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5c00::,2605:5c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5c80::,2605:5c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5d00::,2605:5d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5d80::,2605:5d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5e00::,2605:5e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5e80::,2605:5e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5f00::,2605:5f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:5f80::,2605:5f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6000::,2605:600f:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6080::,2605:6080:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6100::,2605:6100:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6180::,2605:6180:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6200::,2605:6200:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6280::,2605:6280:ffff:ffff:ffff:ffff:ffff:ffff,AI 2605:6300::,2605:6300:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6380::,2605:6380:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6400::,2605:6400:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6480::,2605:6480:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6500::,2605:6500:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6580::,2605:6580:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6600::,2605:6600:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6680::,2605:6680:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6700::,2605:6700:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6780::,2605:6780:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6800::,2605:6800:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6880::,2605:6880:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:6900::,2605:6900:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6980::,2605:6980:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6a00::,2605:6a00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:6a80::,2605:6a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6b00::,2605:6b00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:6b80::,2605:6b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6c00::,2605:6c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6c80::,2605:6c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6d00::,2605:6d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6d80::,2605:6d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6e00::,2605:6e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6e80::,2605:6e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:6f00::,2605:6f00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:6f80::,2605:6f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7000::,2605:7000:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7080::,2605:7080:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7100::,2605:7100:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7180::,2605:7180:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7200::,2605:7200:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:7280::,2605:7280:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7300::,2605:7301:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7380::,2605:7380:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7400::,2605:7400:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:7480::,2605:7480:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:7500::,2605:7500:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7580::,2605:7580:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7600::,2605:7600:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7680::,2605:7680:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7700::,2605:7700:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7780::,2605:7780:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7880::,2605:7880:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7900::,2605:7900:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7980::,2605:7980:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7a00::,2605:7a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7b00::,2605:7b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7b80::,2605:7b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7c00::,2605:7c00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:7c80::,2605:7c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7d00::,2605:7d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7d80::,2605:7d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7e00::,2605:7e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:7e80::,2605:7e80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:7f80::,2605:7f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8000::,2605:8000:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8080::,2605:8080:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8100::,2605:8100:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:8200::,2605:8200:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8280::,2605:8280:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8300::,2605:8300:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8380::,2605:8380:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8400::,2605:8400:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8480::,2605:8480:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8500::,2605:8500:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8580::,2605:8580:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8600::,2605:8600:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8680::,2605:8680:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8700::,2605:8700:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8780::,2605:8780:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:8800::,2605:8800:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8880::,2605:8880:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8900::,2605:8900:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8980::,2605:8980:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8a00::,2605:8a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8a80::,2605:8a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8b00::,2605:8b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8b80::,2605:8b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8c00::,2605:8c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8c80::,2605:8c80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:8d00::,2605:8d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8d80::,2605:8d80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:8e00::,2605:8e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8f00::,2605:8f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:8f80::,2605:8f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9000::,2605:9000:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:9080::,2605:9080:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9100::,2605:9100:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9180::,2605:9180:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9200::,2605:9200:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9280::,2605:9280:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9300::,2605:9300:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:9380::,2605:9380:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9400::,2605:9400:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9480::,2605:9480:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9500::,2605:9500:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9580::,2605:9580:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9600::,2605:9600:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9680::,2605:9680:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:9700::,2605:9700:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9780::,2605:9780:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9800::,2605:9800:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9880::,2605:9880:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9900::,2605:9900:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9980::,2605:9980:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9a00::,2605:9a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9a80::,2605:9a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9b00::,2605:9b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9b80::,2605:9b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9c00::,2605:9c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9c80::,2605:9c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9d00::,2605:9d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9d80::,2605:9d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9e00::,2605:9e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9e80::,2605:9e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9f00::,2605:9f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:9f80::,2605:9f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a000::,2605:a000:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a080::,2605:a080:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a100::,2605:a100:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a180::,2605:a180:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a200::,2605:a200:ffff:ffff:ffff:ffff:ffff:ffff,JM 2605:a280::,2605:a280:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a300::,2605:a300:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a380::,2605:a380:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a400::,2605:a40f:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a480::,2605:a480:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a500::,2605:a500:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a580::,2605:a580:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a600::,2605:a601:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a680::,2605:a680:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:a700::,2605:a700:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a780::,2605:a780:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a800::,2605:a800:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:a880::,2605:a880:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a900::,2605:a900:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:a980::,2605:a980:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:aa00::,2605:aa00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:aa80::,2605:aa80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ab00::,2605:ab00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:ab80::,2605:ab80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ac00::,2605:ac00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:ac80::,2605:ac80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ad00::,2605:ad00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ad80::,2605:ad80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ae00::,2605:ae00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ae80::,2605:ae80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:af00::,2605:af00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:af80::,2605:af80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:b000::,2605:b000:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:b080::,2605:b080:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:b100::,2605:b100:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:b180::,2605:b180:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:b200::,2605:b200:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:b280::,2605:b280:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:b300::,2605:b300:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:b380::,2605:b380:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:b400::,2605:b400:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:b480::,2605:b480:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:b500::,2605:b500:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:b580::,2605:b580:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:b600::,2605:b600:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:b680::,2605:b680:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:b700::,2605:b700:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:b780::,2605:b780:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:b800::,2605:b800:ffff:ffff:ffff:ffff:ffff:ffff,PR 2605:b880::,2605:b880:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:b900::,2605:b900:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:b980::,2605:b980:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ba00::,2605:ba00:ffff:ffff:ffff:ffff:ffff:ffff,PR 2605:ba80::,2605:ba80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:bb00::,2605:bb00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:bb80::,2605:bb80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:bc00::,2605:bc00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:bc80::,2605:bc80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:bd00::,2605:bd00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:bd80::,2605:bd80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:be00::,2605:be00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:be80::,2605:be80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:bf00::,2605:bf00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:bf80::,2605:bf80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:c000::,2605:c000:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:c080::,2605:c080:ffff:ffff:ffff:ffff:ffff:ffff,GD 2605:c100::,2605:c100:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:c180::,2605:c180:fff:ffff:ffff:ffff:ffff:ffff,US 2605:c200::,2605:c200:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:c280::,2605:c280:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:c300::,2605:c300:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:c380::,2605:c380:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:c400::,2605:c400:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:c480::,2605:c480:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:c500::,2605:c500:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:c580::,2605:c580:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:c600::,2605:c600:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:c680::,2605:c680:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:c700::,2605:c700:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:c780::,2605:c780:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:c800::,2605:c800:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:c880::,2605:c880:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:c900::,2605:c900:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:c980::,2605:c980:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:ca00::,2605:ca00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ca80::,2605:ca80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:cb00::,2605:cb00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:cb80::,2605:cb80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:cc00::,2605:cc00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:cc80::,2605:cc80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:cd00::,2605:cd00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:cd80::,2605:cd80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ce00::,2605:ce00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ce80::,2605:ce80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:cf00::,2605:cf00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:cf80::,2605:cf80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:d000::,2605:d000:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:d080::,2605:d080:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:d100::,2605:d100:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:d180::,2605:d180:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:d280::,2605:d280:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:d300::,2605:d300:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:d380::,2605:d380:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:d400::,2605:d400:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:d480::,2605:d480:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:d500::,2605:d500:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:d580::,2605:d580:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:d600::,2605:d600:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:d680::,2605:d680:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:d700::,2605:d700:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:d780::,2605:d780:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:d800::,2605:d800:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:d880::,2605:d880:ffff:ffff:ffff:ffff:ffff:ffff,DM 2605:d900::,2605:d900:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:d980::,2605:d980:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:da00::,2605:da00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:da80::,2605:da80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:db00::,2605:db00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:db80::,2605:db80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:dc00::,2605:dc00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:dc80::,2605:dc80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:dd00::,2605:dd00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:dd80::,2605:dd80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:de00::,2605:de00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:de80::,2605:de80:ffff:ffff:ffff:ffff:ffff:ffff,VI 2605:df00::,2605:df00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:df80::,2605:df80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e000::,2605:e000:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e100::,2605:e100:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e180::,2605:e180:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e200::,2605:e200:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:e280::,2605:e280:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e300::,2605:e300:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e380::,2605:e380:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e400::,2605:e400:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e480::,2605:e480:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e500::,2605:e500:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e580::,2605:e580:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e600::,2605:e600:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e680::,2605:e680:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:e700::,2605:e700:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e780::,2605:e780:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e880::,2605:e880:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e900::,2605:e900:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:e980::,2605:e980:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ea00::,2605:ea00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ea80::,2605:ea80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:eb00::,2605:eb00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:eb80::,2605:eb80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ec00::,2605:ec00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ec80::,2605:ec80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ed00::,2605:ed00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ed80::,2605:ed80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ee00::,2605:ee00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ee80::,2605:ee80:fff:ffff:ffff:ffff:ffff:ffff,US 2605:ef00::,2605:ef00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ef80::,2605:ef80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f000::,2605:f000:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f080::,2605:f080:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f100::,2605:f100:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f180::,2605:f180:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f200::,2605:f200:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f280::,2605:f280:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f300::,2605:f300:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f380::,2605:f380:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f400::,2605:f400:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f480::,2605:f480:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f500::,2605:f500:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f580::,2605:f580:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f600::,2605:f600:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f680::,2605:f680:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f700::,2605:f700:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f780::,2605:f780:fff:ffff:ffff:ffff:ffff:ffff,US 2605:f800::,2605:f800:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f880::,2605:f880:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f900::,2605:f900:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:f980::,2605:f980:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:fa00::,2605:fa00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:fa80::,2605:fa80:fff:ffff:ffff:ffff:ffff:ffff,US 2605:fb00::,2605:fb00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:fb80::,2605:fb80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:fc00:1::,2605:fc00:1:7fff:ffff:ffff:ffff:ffff,US 2605:fc80::,2605:fc80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:fd00::,2605:fd00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2605:fd80::,2605:fd80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:fe00::,2605:fe00:fff:ffff:ffff:ffff:ffff:ffff,US 2605:fe80::,2605:fe80:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ff00::,2605:ff00:ffff:ffff:ffff:ffff:ffff:ffff,US 2605:ff80::,2605:ff80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606::,2606::ffff:ffff:ffff:ffff:ffff:ffff,US 2606:80::,2606:80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:100::,2606:100:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:180::,2606:180:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:200::,2606:200:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:280::,2606:280:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:300::,2606:300:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:380::,2606:380:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:400::,2606:400:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:480::,2606:480:ffff:ffff:ffff:ffff:ffff:ffff,BM 2606:500::,2606:500:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:580::,2606:580:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:600::,2606:600:ffff:ffff:ffff:ffff:ffff:ffff,KY 2606:680::,2606:680:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:700::,2606:700:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:780::,2606:780:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:800::,2606:800:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:880::,2606:880:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:900::,2606:900:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:980::,2606:980:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a00::,2606:a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a80::,2606:a80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:b00::,2606:b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b80::,2606:b80:ffff:ffff:ffff:ffff:ffff:ffff,BM 2606:c00::,2606:c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:d00::,2606:d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:d80::,2606:d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:e00::,2606:e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:e80::,2606:e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:f00::,2606:f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:f80::,2606:f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1000::,2606:1000:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1080::,2606:1080:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1100::,2606:1100:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1180::,2606:1180:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1200::,2606:1200:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1280::,2606:1280:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1300::,2606:1300:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1380::,2606:1380:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1400::,2606:1400:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1480::,2606:1480:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1500::,2606:1500:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1580::,2606:1580:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1600::,2606:1600:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1680::,2606:1680:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1700::,2606:1700:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1780::,2606:1780:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1800::,2606:1800:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1880::,2606:1880:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1900::,2606:1900:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1980::,2606:1980:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1a00::,2606:1a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1a80::,2606:1a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1b00::,2606:1b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1b80::,2606:1b80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:1c00::,2606:1c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1c80::,2606:1c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1d00::,2606:1d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1e00::,2606:1e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1e80::,2606:1e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1f00::,2606:1f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:1f80::,2606:1f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2000::,2606:2000:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2080::,2606:2080:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2100::,2606:2100:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2180::,2606:2180:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2200::,2606:2200:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2280::,2606:2280:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2300::,2606:2300:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2380::,2606:2380:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2400::,2606:2400:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2480::,2606:2480:ffff:ffff:ffff:ffff:ffff:ffff,GP 2606:2500::,2606:2500:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2580::,2606:2580:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:2600::,2606:2600:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2680::,2606:2680:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2700::,2606:2700:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:2780::,2606:2780:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2800::,2606:2800:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2880::,2606:2880:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2900::,2606:2900:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2980::,2606:2980:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2a00::,2606:2a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2a80::,2606:2a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2b00::,2606:2b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2b80::,2606:2b80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:2c00::,2606:2c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2c80::,2606:2c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2d00::,2606:2d00:fff:ffff:ffff:ffff:ffff:ffff,US 2606:2d80::,2606:2d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2e00::,2606:2e00:8001:ffff:ffff:ffff:ffff:ffff,US 2606:2e00:8002::,2606:2e00:8002:7fff:ffff:ffff:ffff:ffff,JP 2606:2e00:8002:8000::,2606:2e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2e80::,2606:2e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2f00::,2606:2f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:2f80::,2606:2f80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:3000::,2606:3000:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:3080::,2606:3080:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3100::,2606:3100:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:3180::,2606:3180:ffff:ffff:ffff:ffff:ffff:ffff,GP 2606:3200::,2606:3200:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3280::,2606:3280:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3300::,2606:3300:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3380::,2606:3380:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3400::,2606:3400:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3480::,2606:3480:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3500::,2606:3500:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3580::,2606:3580:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3600::,2606:3600:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3680::,2606:3680:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3700::,2606:3700:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3780::,2606:3780:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:3800::,2606:3800:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3880::,2606:3880:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3900::,2606:3900:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3980::,2606:3980:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3a00::,2606:3a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3a80::,2606:3a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3b00::,2606:3b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3b80::,2606:3b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3c00::,2606:3c00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:3c80::,2606:3c80:ffff:ffff:ffff:ffff:ffff:ffff,LC 2606:3d00::,2606:3d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3d80::,2606:3d80:ffff:ffff:ffff:ffff:ffff:ffff,PR 2606:3e00::,2606:3e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3e80::,2606:3e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3f00::,2606:3f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:3f80::,2606:3f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4000::,2606:4000:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4080::,2606:4080:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4100::,2606:4100:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4180::,2606:4180:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4200::,2606:4200:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4280::,2606:4280:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:4300::,2606:4300:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4380::,2606:4380:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:4400::,2606:4400:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4480::,2606:4480:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4500::,2606:4500:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4580::,2606:4580:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:4600::,2606:4600:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4680::,2606:4680:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4700::,2606:4700:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4780::,2606:4780:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4800::,2606:4800:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4880::,2606:4880:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4900::,2606:4900:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4980::,2606:4980:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4a00::,2606:4a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4a80::,2606:4a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4b00::,2606:4b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4b80::,2606:4b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4c00::,2606:4c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4c80::,2606:4c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4d00::,2606:4d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4d80::,2606:4d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4e00::,2606:4e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4e80::,2606:4e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4f00::,2606:4f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:4f80::,2606:4f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5000::,2606:5000:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5080::,2606:5080:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5100::,2606:5100:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5180::,2606:5180:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:5200::,2606:5200:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5280::,2606:5280:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5300::,2606:5300:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:5380::,2606:5380:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5400::,2606:5400:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5480::,2606:5480:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:5500::,2606:5500:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5580::,2606:5580:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5600::,2606:5600:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5680::,2606:5680:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5700::,2606:5700:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5780::,2606:5780:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5800::,2606:5800:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5880::,2606:5880:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5900::,2606:5900:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5980::,2606:5980:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5a00::,2606:5a00:ffff:ffff:ffff:ffff:ffff:ffff,VI 2606:5a80::,2606:5a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5b00::,2606:5b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5b80::,2606:5b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5c00::,2606:5c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5c80::,2606:5c80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:5d00::,2606:5d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5d80::,2606:5d80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:5e00::,2606:5e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5e80::,2606:5e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:5f00::,2606:5f00:ffff:ffff:ffff:ffff:ffff:ffff,PR 2606:5f80::,2606:5f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6000::,2606:6000:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6080::,2606:6080:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:6100::,2606:6100:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6180::,2606:6180:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6200::,2606:6200:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:6280::,2606:6280:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:6300::,2606:6300:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:6380::,2606:6380:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6400::,2606:6400:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6480::,2606:6480:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:6500::,2606:650f:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6580::,2606:6580:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6600::,2606:6600:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6680::,2606:6680:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6700::,2606:6700:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6780::,2606:6780:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:6800::,2606:6800:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6880::,2606:6880:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:6900::,2606:6900:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6980::,2606:6980:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6a00::,2606:6a00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:6a80::,2606:6a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6b00::,2606:6b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6b80::,2606:6b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6c00::,2606:6c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6c80::,2606:6c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6d00::,2606:6d00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:6d80::,2606:6d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6e00::,2606:6e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6e80::,2606:6e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6f00::,2606:6f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:6f80::,2606:6f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7000::,2606:7000:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7080::,2606:7080:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:7100::,2606:7100:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7180::,2606:7180:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7200::,2606:7200:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7280::,2606:7280:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7300::,2606:7300:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7380::,2606:7380:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7400::,2606:7400:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7480::,2606:7480:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:7500::,2606:7500:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7580::,2606:7580:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7600::,2606:7600:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7680::,2606:7680:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:7700::,2606:7700:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7780::,2606:7780:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7800::,2606:7800:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7880::,2606:7880:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:7900::,2606:7900:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7980::,2606:7980:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:7a00::,2606:7a00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:7a80::,2606:7a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7b00::,2606:7b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7b80::,2606:7b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7c00::,2606:7c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7c80::,2606:7c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7d00::,2606:7d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7d80::,2606:7d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7e00::,2606:7e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7e80::,2606:7e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7f00::,2606:7f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:7f80::,2606:7f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8000::,2606:8000:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8080::,2606:8080:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8100::,2606:8100:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8180::,2606:8180:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8200::,2606:8200:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8280::,2606:8280:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8300::,2606:830f:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:8380::,2606:8380:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8400::,2606:8400:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8480::,2606:8480:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8500::,2606:8500:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8580::,2606:8580:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8600::,2606:8600:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8680::,2606:8680:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8700::,2606:8700:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8780::,2606:8780:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8800::,2606:8800:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8880::,2606:8880:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8900::,2606:8900:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:8980::,2606:8980:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:8a00::,2606:8a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8a80::,2606:8a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8b00::,2606:8b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8b80::,2606:8b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8c00::,2606:8c00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:8c80::,2606:8c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8d00::,2606:8d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8d80::,2606:8d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8e00::,2606:8e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8e80::,2606:8e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8f00::,2606:8f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:8f80::,2606:8f80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:9000::,2606:9000:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9080::,2606:9080:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9100::,2606:9100:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9180::,2606:9180:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9200::,2606:9200:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9280::,2606:9280:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9300::,2606:9300:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9380::,2606:9380:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9400::,2606:9400:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9480::,2606:9480:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9500::,2606:9500:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9580::,2606:9580:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:9600::,2606:9600:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9680::,2606:9680:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9700::,2606:9700:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9780::,2606:9780:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9800::,2606:9800:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9880::,2606:9880:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9900::,2606:9900:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9980::,2606:9980:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9a00::,2606:9a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9a80::,2606:9a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9b00::,2606:9b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9b80::,2606:9b80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9c00::,2606:9c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9c80::,2606:9c80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9d00::,2606:9d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9d80::,2606:9d80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9e00::,2606:9e00:ffff:ffff:ffff:ffff:ffff:ffff,BM 2606:9e80::,2606:9e80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9f00::,2606:9f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:9f80::,2606:9f80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a000::,2606:a000:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a080::,2606:a080:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a100::,2606:a100:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a180::,2606:a180:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a200::,2606:a200:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a280::,2606:a280:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a300::,2606:a300:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a380::,2606:a380:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a400::,2606:a400:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a480::,2606:a480:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a500::,2606:a500:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a580::,2606:a580:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a600::,2606:a600:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a680::,2606:a680:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a700::,2606:a700:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a780::,2606:a780:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a800::,2606:a800:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a880::,2606:a880:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a900::,2606:a900:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:a980::,2606:a980:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:aa00::,2606:aa00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:aa80::,2606:aa80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:ab00::,2606:ab00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:ab80::,2606:ab80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:ac00::,2606:ac00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:ac80::,2606:ac80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:ad00::,2606:ad00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:ad80::,2606:ad80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:ae00::,2606:ae00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:ae80::,2606:ae80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:af00::,2606:af00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:af80::,2606:af80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b000::,2606:b000:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b080::,2606:b080:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b100::,2606:b100:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b180::,2606:b180:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b200::,2606:b200:ffff:ffff:ffff:ffff:ffff:ffff,KY 2606:b280::,2606:b280:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b300::,2606:b300:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b380::,2606:b380:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b400::,2606:b400:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b480::,2606:b480:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b500::,2606:b500:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b580::,2606:b580:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b600::,2606:b600:fff:ffff:ffff:ffff:ffff:ffff,US 2606:b680::,2606:b680:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b700::,2606:b700:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b780::,2606:b780:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b800::,2606:b800:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:b880::,2606:b880:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b900::,2606:b900:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:b980::,2606:b980:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:ba00::,2606:ba00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:ba80::,2606:ba80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:bb00::,2606:bb00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:bb80::,2606:bb80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:bc00::,2606:bc00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:bc80::,2606:bc80:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:bd00::,2606:bd00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:bd80::,2606:bd80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:be00::,2606:be00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:be80::,2606:be80:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:bf00::,2606:bf00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:c000::,2606:c000:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:c100::,2606:c100:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:c300::,2606:c300:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:c400::,2606:c400:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:c500::,2606:c500:ffff:ffff:ffff:ffff:ffff:ffff,JM 2606:c700::,2606:c700:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:c800::,2606:c800:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:c900::,2606:c900:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:ca00::,2606:ca00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:cb00::,2606:cb00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:cc00::,2606:cc00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:cd00::,2606:cd00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:ce00::,2606:ce00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:cf00::,2606:cf00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:d000::,2606:d000:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:d100::,2606:d100:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:d200::,2606:d200:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:d300::,2606:d300:fff:ffff:ffff:ffff:ffff:ffff,US 2606:d400::,2606:d400:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:d500::,2606:d500:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:d600::,2606:d600:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:d700::,2606:d700:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:d800::,2606:d800:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:d900::,2606:d900:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:da00::,2606:da00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:db00::,2606:db00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:dc00::,2606:dc00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:dd00::,2606:dd00:fff:ffff:ffff:ffff:ffff:ffff,US 2606:de00::,2606:de00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:df00::,2606:df00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:e000::,2606:e000:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:e100::,2606:e100:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:e200::,2606:e200:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:e300::,2606:e300:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:e400::,2606:e400:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:e500::,2606:e500:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:e600::,2606:e600:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:e700::,2606:e700:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:e800::,2606:e800:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:e900::,2606:e900:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:ea00::,2606:ea00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:eb00::,2606:eb00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:ec00::,2606:ec00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:ed00::,2606:ed00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:ee00::,2606:ee00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:ef00::,2606:ef00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:f000::,2606:f000:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:f100::,2606:f100:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:f200::,2606:f200:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:f300::,2606:f300:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:f400::,2606:f40f:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:f500::,2606:f500:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:f600::,2606:f600:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:f700::,2606:f700:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:f800::,2606:f800:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:f900::,2606:f900:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:fa00::,2606:fa00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2606:fc00::,2606:fc00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:fd00::,2606:fd00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:fe00::,2606:fe00:ffff:ffff:ffff:ffff:ffff:ffff,US 2606:ff00::,2606:ff00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607::,2607::ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:100::,2607:100:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:200::,2607:200:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:300::,2607:300:ffff:ffff:ffff:ffff:ffff:ffff,BS 2607:400::,2607:400:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:500::,2607:500:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:600::,2607:600:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:700::,2607:700:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:800::,2607:800:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:900::,2607:900:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:a00::,2607:a00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:b00::,2607:b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:c00::,2607:c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:d00::,2607:d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:e00::,2607:e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f00::,2607:f00:ffff:ffff:ffff:ffff:ffff:ffff,PR 2607:1000::,2607:1000:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:1100::,2607:1100:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:1200::,2607:1200:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:1300::,2607:1300:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:1400::,2607:1400:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:1500::,2607:1500:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:1600::,2607:1600:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:1700::,2607:1700:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:1800::,2607:1800:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:1900::,2607:1900:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:1a00::,2607:1a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:1b00::,2607:1b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:1c00::,2607:1c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:1d00::,2607:1d00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:1e00::,2607:1e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:1f00::,2607:1f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:2000::,2607:2000:ffff:ffff:ffff:ffff:ffff:ffff,PR 2607:2100::,2607:2100:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:2200::,2607:2200:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:2300::,2607:2300:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:2400::,2607:2400:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:2500::,2607:2500:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:2600::,2607:2600:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:2700::,2607:2700:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:2800::,2607:2800:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:2900::,2607:2900:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:2a00::,2607:2a00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:2b00::,2607:2b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:2c00::,2607:2c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:2d00::,2607:2d00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:2e00::,2607:2e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:2f00::,2607:2f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:3000::,2607:3000:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:3100::,2607:3100:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:3200::,2607:3200:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:3300::,2607:3300:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:3400::,2607:3400:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:3500::,2607:3500:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:3600::,2607:3600:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:3700::,2607:3700:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:3800::,2607:3800:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:3900::,2607:3900:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:3a00::,2607:3a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:3b00::,2607:3b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:3c00::,2607:3c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:3d00::,2607:3d0f:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:3e00::,2607:3e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:3f00::,2607:3f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:4000::,2607:4000:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:4100::,2607:4100:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:4200::,2607:4200:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:4300::,2607:4300:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:4400::,2607:4400:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:4500::,2607:4500:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:4600::,2607:4600:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:4700::,2607:4700:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:4800::,2607:4800:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:4900::,2607:4900:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:4a00::,2607:4a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:4b00::,2607:4b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:4c00::,2607:4c00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:4d00::,2607:4d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:4e00::,2607:4e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:4f00::,2607:4f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:5000::,2607:5006:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:5100::,2607:5100:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:5200::,2607:5201:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:5300::,2607:5300:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:5400::,2607:5400:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:5500::,2607:5500:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:5600::,2607:5600:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:5700::,2607:5700:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:5800::,2607:5800:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:5a00::,2607:5a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:5b00::,2607:5b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:5c00::,2607:5c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:5d00::,2607:5d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:5e00::,2607:5e00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:5f00::,2607:5f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:6000::,2607:6000:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:6100::,2607:6100:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:6200::,2607:6200:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:6300::,2607:6300:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:6400::,2607:6400:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:6500::,2607:6500:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:6600::,2607:6600:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:6700::,2607:6700:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:6800::,2607:6800:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:6900::,2607:6900:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:6a00::,2607:6a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:6b00::,2607:6b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:6c00::,2607:6c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:6d00::,2607:6d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:6e00::,2607:6e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:6f00::,2607:6f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:7000::,2607:7000:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:7100::,2607:7100:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:7200::,2607:7200:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:7300::,2607:7300:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:7400::,2607:7400:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:7500::,2607:7500:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:7600::,2607:7600:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:7700::,2607:7700:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:7800::,2607:7800:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:7900::,2607:7900:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:7a00::,2607:7a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:7b00::,2607:7b00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:7c00::,2607:7c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:7d00::,2607:7d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:7e00::,2607:7e00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:7f00::,2607:7f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:8000::,2607:8000:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:8100::,2607:8100:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:8200::,2607:8200:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:8300::,2607:8300:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:8400::,2607:8400:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:8500::,2607:8500:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:8600::,2607:8600:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:8700::,2607:8700:100:ffff:ffff:ffff:ffff:ffff,CA 2607:8700:101::,2607:8700:104:ffff:ffff:ffff:ffff:ffff,US 2607:8700:105::,2607:8700:105:ffff:ffff:ffff:ffff:ffff,NL 2607:8700:106::,2607:8700:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:8800::,2607:8800:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:8900::,2607:8900:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:8a00::,2607:8a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:8b00::,2607:8b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:8c00::,2607:8c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:8d00::,2607:8d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:8e00::,2607:8e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:8f00::,2607:8f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:9000::,2607:9000:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:9100::,2607:9100:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:9200::,2607:9200:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:9400::,2607:9400:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:9500::,2607:9500:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:9600::,2607:9600:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:9700::,2607:9700:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:9800::,2607:9800:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:9900::,2607:9900:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:9a00::,2607:9a00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:9b00::,2607:9b00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:9c00::,2607:9c00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:9d00::,2607:9d00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:9e00::,2607:9e00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:9f00::,2607:9f00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:a000::,2607:a000:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:a100::,2607:a10f:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:a200::,2607:a200:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:a300::,2607:a300:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:a400::,2607:a400:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:a500::,2607:a500:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:a600::,2607:a600:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:a700::,2607:a700:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:a800::,2607:a800:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:a900::,2607:a900:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:aa00::,2607:aa00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ab00::,2607:ab00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ac00::,2607:ac00:ffff:ffff:ffff:ffff:ffff:ffff,PR 2607:ad00::,2607:ad00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ae00::,2607:ae00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:af00::,2607:af00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:b000::,2607:b000:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:b100::,2607:b100:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:b200::,2607:b200:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:b300::,2607:b300:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:b400::,2607:b400:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:b500::,2607:b500:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:b600::,2607:b600:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:b700::,2607:b700:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:b800::,2607:b800:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:b900::,2607:b900:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:ba00::,2607:ba00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:bb00::,2607:bb00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:bc00::,2607:bc00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:bd00::,2607:bd00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:be00::,2607:be00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:bf00::,2607:bf00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:c000::,2607:c000:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:c100::,2607:c100:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:c200::,2607:c200:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:c300::,2607:c300:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:c400::,2607:c400:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:c500::,2607:c500:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:c600::,2607:c600:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:c700::,2607:c700:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:c800::,2607:c800:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:c900::,2607:c900:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ca00::,2607:ca00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:cb00::,2607:cb00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:cc00::,2607:cc00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:cd00::,2607:cd00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ce00::,2607:ce00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:cf00::,2607:cf03:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:d000::,2607:d000:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:d100::,2607:d100:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:d200::,2607:d200:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:d300::,2607:d300:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:d400::,2607:d400:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:d500::,2607:d500:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:d600::,2607:d600:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:d700::,2607:d700:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:d800::,2607:d800:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:d900::,2607:d900:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:da00::,2607:da00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:dc00::,2607:dc00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:dd00::,2607:dd00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:de00::,2607:de00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:df00::,2607:df00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:e000::,2607:e000:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:e100::,2607:e100:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:e200::,2607:e200:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:e300::,2607:e300:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:e400::,2607:e400:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:e500::,2607:e500:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:e600::,2607:e600:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:e700::,2607:e700:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:e800::,2607:e800:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:e900::,2607:e900:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ea00::,2607:ea00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:eb00::,2607:eb00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:ec00::,2607:ec00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ed00::,2607:ed00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:ee00::,2607:ee00:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:ef00::,2607:ef00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f000::,2607:f000:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f008::,2607:f008:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f010::,2607:f010:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f018::,2607:f018:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f020::,2607:f020:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f028::,2607:f028:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f030::,2607:f030:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f038::,2607:f038:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f040::,2607:f040:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f048::,2607:f048:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f050::,2607:f050:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f058::,2607:f058:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f060::,2607:f060:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f068::,2607:f068:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f070::,2607:f070:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f078::,2607:f078:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f080::,2607:f080:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f088::,2607:f088:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f090::,2607:f090:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f098::,2607:f098:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f0a0::,2607:f0a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f0a8::,2607:f0a8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f0b0::,2607:f0b0:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f0c0::,2607:f0c0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f0c8::,2607:f0c8:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f0d0::,2607:f0d0:1c00:ffff:ffff:ffff:ffff:ffff,US 2607:f0d0:1c01::,2607:f0d0:1c01:7fff:ffff:ffff:ffff:ffff,MX 2607:f0d0:1c01:8000::,2607:f0d0:3700:ffff:ffff:ffff:ffff:ffff,US 2607:f0d0:3701::,2607:f0d0:3701:7fff:ffff:ffff:ffff:ffff,CA 2607:f0d0:3701:8000::,2607:f0d1:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f0d8::,2607:f0e0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f0e8::,2607:f0e8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f0f8::,2607:f0f8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f100::,2607:f100:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f108::,2607:f108:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f110::,2607:f110:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f118::,2607:f118:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f128::,2607:f128:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f130::,2607:f130:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f138::,2607:f138:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f140::,2607:f140:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f148::,2607:f148:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f150::,2607:f150:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f158::,2607:f158:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f160::,2607:f160:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f168::,2607:f168:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f170::,2607:f170:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f178::,2607:f178:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f180::,2607:f181:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f188::,2607:f188:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f190::,2607:f190:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f198::,2607:f198:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f1a0::,2607:f1a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f1a8::,2607:f1a8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f1b0::,2607:f1b0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f1b8::,2607:f1b8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f1c0::,2607:f1c0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f1c8::,2607:f1c8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f1d0::,2607:f1d0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f1d8::,2607:f1d8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f1e0::,2607:f1e0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f1e8::,2607:f1e8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f1f0::,2607:f1f0:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f1f8::,2607:f1f8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f200::,2607:f200:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f208::,2607:f208:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f210::,2607:f212:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f218::,2607:f218:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f220::,2607:f220:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f228::,2607:f228:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f230::,2607:f230:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f238::,2607:f238:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f240::,2607:f240:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f248::,2607:f248:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f250::,2607:f250:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f258::,2607:f258:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f260::,2607:f260:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f270::,2607:f270:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f278::,2607:f278:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f280::,2607:f281:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f288::,2607:f288:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f290::,2607:f290:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f298::,2607:f298:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f2a8::,2607:f2a8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f2b0::,2607:f2b1:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f2c0::,2607:f2c0:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f2c8::,2607:f2c8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f2d0::,2607:f2d0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f2d8::,2607:f2d8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f2e0::,2607:f2e0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f2e8::,2607:f2e8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f2f0::,2607:f2f0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f2f8::,2607:f2f8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f300::,2607:f300:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f308::,2607:f308:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f310::,2607:f310:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f318::,2607:f318:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f330::,2607:f330:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f338::,2607:f338:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f340::,2607:f340:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f348::,2607:f348:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f350::,2607:f350:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f358::,2607:f358:20:3ff:ffff:ffff:ffff:ffff,US 2607:f358:20:400::,2607:f358:20:400::,PH 2607:f358:20:400::1,2607:f358:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f360::,2607:f360:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f368::,2607:f368:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f370::,2607:f370:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f378::,2607:f378:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f380::,2607:f380:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f388::,2607:f388:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f390::,2607:f390:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f398::,2607:f398:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f3a0::,2607:f3a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f3b0::,2607:f3b0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f3b8::,2607:f3b8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f3c0::,2607:f3c0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f3c8::,2607:f3c8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f3d0::,2607:f3d0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f3d8::,2607:f3d8:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f3e0::,2607:f3e0:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f3f0::,2607:f3f0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f3f8::,2607:f3f8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f400::,2607:f400:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f408::,2607:f408:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f418::,2607:f418:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f420::,2607:f420:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f428::,2607:f428:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f430::,2607:f430:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f438::,2607:f438:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f440::,2607:f441:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f450::,2607:f450:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f458::,2607:f458:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f460::,2607:f460:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f468::,2607:f468:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f470::,2607:f470:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f478::,2607:f478:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f480::,2607:f480:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f488::,2607:f488:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f490::,2607:f490:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f498::,2607:f498:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f4a0::,2607:f4a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f4a8::,2607:f4a8:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f4b0::,2607:f4b0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f4b8::,2607:f4b8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f4c0::,2607:f4c0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f4c8::,2607:f4c8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f4d0::,2607:f4d0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f4d8::,2607:f4d8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f4e0::,2607:f4e0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f4e8::,2607:f4e8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f4f0::,2607:f4f0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f4f8::,2607:f4f8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f500::,2607:f500:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f508::,2607:f508:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f510::,2607:f510:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f518::,2607:f518:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f520::,2607:f520:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f528::,2607:f528:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f530::,2607:f530:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f538::,2607:f538:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f540::,2607:f540:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f548::,2607:f548:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f550::,2607:f550:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f558::,2607:f558:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f560::,2607:f560:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f568::,2607:f568:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f570::,2607:f570:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f578::,2607:f578:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f588::,2607:f588:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f590::,2607:f590:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f598::,2607:f598:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f5a0::,2607:f5a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f5a8::,2607:f5a8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f5b0::,2607:f5b8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f5c0::,2607:f5c0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f5d0::,2607:f5d0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f5d8::,2607:f5d8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f5e0::,2607:f5e0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f5e8::,2607:f5e8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f5f0::,2607:f5f0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f5f8::,2607:f5f8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f600::,2607:f600:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f608::,2607:f608:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f610::,2607:f610:fff:ffff:ffff:ffff:ffff:ffff,US 2607:f618::,2607:f618:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f620::,2607:f620:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f628::,2607:f628:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f630::,2607:f630:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f638::,2607:f638:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f640::,2607:f640:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f650::,2607:f650:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f660::,2607:f660:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f668::,2607:f668:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f670::,2607:f670:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f678::,2607:f678:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f680::,2607:f680:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f688::,2607:f688:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f690::,2607:f690:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f698::,2607:f699:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f6a0::,2607:f6a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f6a8::,2607:f6a8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f6b0::,2607:f6b0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f6b8::,2607:f6b8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f6c0::,2607:f6c0:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f6c8::,2607:f6c8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f6d0::,2607:f6d0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f6d8::,2607:f6d8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f6e0::,2607:f6e0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f6e8::,2607:f6e8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f6f0::,2607:f6f0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f6f8::,2607:f6f8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f700::,2607:f700:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f708::,2607:f708:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f710::,2607:f710:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f718::,2607:f718:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f720::,2607:f720:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f728::,2607:f728:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f738::,2607:f738:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f740::,2607:f740:6f:ffff:ffff:ffff:ffff:ffff,US 2607:f740:70::,2607:f740:70:7fff:ffff:ffff:ffff:ffff,CA 2607:f740:70:8000::,2607:f740:8f:ffff:ffff:ffff:ffff:ffff,US 2607:f740:90::,2607:f740:90:7fff:ffff:ffff:ffff:ffff,HK 2607:f740:90:8000::,2607:f740:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f748::,2607:f748:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f750::,2607:f750:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f758::,2607:f758:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f760::,2607:f760:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f768::,2607:f768:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f770::,2607:f770:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f778::,2607:f778:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f788::,2607:f788:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f790::,2607:f790:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f798::,2607:f798:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f7a0::,2607:f7a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f7a8::,2607:f7a8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f7b0::,2607:f7b0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f7b8::,2607:f7b8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f7c0::,2607:f7c0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f7c8::,2607:f7c8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f7d0::,2607:f7d0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f7d8::,2607:f7d8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f7e0::,2607:f7e0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f7e8::,2607:f7e8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f7f0::,2607:f7f0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f7f8::,2607:f7f8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f800::,2607:f800:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f808::,2607:f808:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f810::,2607:f810:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f818::,2607:f818:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f820::,2607:f820:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f828::,2607:f828:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f830::,2607:f830:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f838::,2607:f838:ffff:ffff:ffff:ffff:ffff:ffff,VI 2607:f848::,2607:f848:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f850::,2607:f850:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f858::,2607:f858:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f860::,2607:f860:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f868::,2607:f868:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f870::,2607:f870:ffff:ffff:ffff:ffff:ffff:ffff,PR 2607:f878::,2607:f878:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f880::,2607:f880:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f888::,2607:f888:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f890::,2607:f890:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f898::,2607:f898:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f8a0::,2607:f8a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f8a8::,2607:f8a8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f8b0::,2607:f8b0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f8b8::,2607:f8b8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f8c0::,2607:f8c0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f8c8::,2607:f8c8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f8d0::,2607:f8d0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f8d8::,2607:f8d8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f8e0::,2607:f8e0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f8e8::,2607:f8e8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f8f0::,2607:f8f0:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f8f8::,2607:f8f8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f900::,2607:f900:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f908::,2607:f908:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f910::,2607:f910:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f920::,2607:f920:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f928::,2607:f928:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f930::,2607:f930:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f938::,2607:f938:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f940::,2607:f940:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f948::,2607:f948:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f950::,2607:f950:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f960::,2607:f960:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f968::,2607:f968:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f978::,2607:f978:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f980::,2607:f980:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f990::,2607:f990:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:f998::,2607:f998:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f9a0::,2607:f9a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f9a8::,2607:f9a8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f9b0::,2607:f9b0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f9b8::,2607:f9b8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f9c0::,2607:f9c0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f9c8::,2607:f9c8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f9d0::,2607:f9d0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f9d8::,2607:f9d8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f9e0::,2607:f9e0:fff:ffff:ffff:ffff:ffff:ffff,US 2607:f9f0::,2607:f9f1:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:f9f8::,2607:f9f8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fa00::,2607:fa00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fa08::,2607:fa08:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fa10::,2607:fa10:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fa18::,2607:fa18:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fa20::,2607:fa20:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fa28::,2607:fa28:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fa38::,2607:fa38:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fa40::,2607:fa40:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fa48::,2607:fa48:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:fa58::,2607:fa58:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fa60::,2607:fa60:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fa68::,2607:fa68:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fa70::,2607:fa70:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fa78::,2607:fa78:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fa88::,2607:fa88:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fa90::,2607:fa90:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fa98::,2607:fa98:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:faa0::,2607:faa0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:faa8::,2607:faa8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fab0::,2607:fab0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fab8::,2607:fab8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fac0::,2607:fac0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fac8::,2607:fac8:fff:ffff:ffff:ffff:ffff:ffff,US 2607:fad0::,2607:fad0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fad8::,2607:fad8:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:fae0::,2607:fae0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fae8::,2607:fae8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:faf0::,2607:faf0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:faf8::,2607:faf8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb00::,2607:fb00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb08::,2607:fb08:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb10::,2607:fb10:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb18::,2607:fb18:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb20::,2607:fb20:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb28::,2607:fb28:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb30::,2607:fb30:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb38::,2607:fb38:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb40::,2607:fb40:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb48::,2607:fb48:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb50::,2607:fb50:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb58::,2607:fb58:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb60::,2607:fb60:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb70::,2607:fb70:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb78::,2607:fb78:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb80::,2607:fb80:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb88::,2607:fb88:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb90::,2607:fb90:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fb98::,2607:fb98:1b:ffff:ffff:ffff:ffff:ffff,US 2607:fb98:1c::,2607:fb98:1c:ffff:ffff:ffff:ffff:ffff,CA 2607:fb98:1d::,2607:fb98:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fba0::,2607:fba0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fba8::,2607:fba8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fbb0::,2607:fbb0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fbb8::,2607:fbb8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fbc0::,2607:fbc0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fbd0::,2607:fbd0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fbd8::,2607:fbd8:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:fbe0::,2607:fbe0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fbe8::,2607:fbe8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fbf0::,2607:fbf0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fbf8::,2607:fbf8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fc00::,2607:fc00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fc08::,2607:fc08:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fc10::,2607:fc10:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:fc18::,2607:fc18:fff:ffff:ffff:ffff:ffff:ffff,US 2607:fc20::,2607:fc20:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fc28::,2607:fc28:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fc30::,2607:fc30:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fc38::,2607:fc38:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fc40::,2607:fc40:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fc48::,2607:fc48:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fc50::,2607:fc50:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fc58::,2607:fc58:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fc60::,2607:fc60:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fc68::,2607:fc68:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fc70::,2607:fc70:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:fc78::,2607:fc78:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:fc88::,2607:fc88:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fc90::,2607:fc90:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fc98::,2607:fc98:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fca0::,2607:fca0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fca8::,2607:fca8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fcb8::,2607:fcb8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fcc0::,2607:fcc0:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:fcc8::,2607:fcc8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fcd0::,2607:fcd0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fcd8::,2607:fcd8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fce0::,2607:fce0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fce8::,2607:fce8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fcf0::,2607:fcf0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fcf8::,2607:fcf8:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:fd00::,2607:fd00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fd08::,2607:fd08:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fd10::,2607:fd10:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fd28::,2607:fd28:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fd30::,2607:fd30:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fd38::,2607:fd38:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fd40::,2607:fd40:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fd48::,2607:fd48:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fd50::,2607:fd50:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fd60::,2607:fd60:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fd68::,2607:fd68:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fd70::,2607:fd70:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fd78::,2607:fd78:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:fd80::,2607:fd80:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fd88::,2607:fd88:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fd90::,2607:fd90:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fd98::,2607:fd98:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fda0::,2607:fda0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fda8::,2607:fda8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fdb0::,2607:fdb0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fdb8::,2607:fdb8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fdc0::,2607:fdc0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fdc8::,2607:fdc8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fdd0::,2607:fdd0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fdd8::,2607:fdd8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fde0::,2607:fde0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fde8::,2607:fde8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fdf0::,2607:fdf0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fdf8::,2607:fdf8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fe00::,2607:fe00:ffff:ffff:ffff:ffff:ffff:ffff,JM 2607:fe08::,2607:fe08:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fe10::,2607:fe10:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fe18::,2607:fe18:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fe20::,2607:fe20:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fe28::,2607:fe28:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fe30::,2607:fe30:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fe38::,2607:fe38:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fe40::,2607:fe40:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fe48::,2607:fe48:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fe50::,2607:fe50:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fe58::,2607:fe58:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fe60::,2607:fe60:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fe68::,2607:fe68:ffff:ffff:ffff:ffff:ffff:ffff,BS 2607:fe70::,2607:fe70:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fe78::,2607:fe78:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fe80::,2607:fe80:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fe88::,2607:fe88:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:fe90::,2607:fe90:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fe98::,2607:fe98:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fea0::,2607:fea0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fea8::,2607:fea8:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:feb0::,2607:feb0:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:feb8::,2607:feb8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fec0::,2607:fec0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fec8::,2607:fec8:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:fed0::,2607:fed0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fed8::,2607:fed8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fee0::,2607:fee0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fee8::,2607:fee8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fef8::,2607:fef8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ff00::,2607:ff00:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ff08::,2607:ff08:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ff10::,2607:ff10:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ff18::,2607:ff18:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ff28::,2607:ff28:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ff30::,2607:ff30:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ff38::,2607:ff38:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ff40::,2607:ff40:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ff48::,2607:ff48:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ff50::,2607:ff50:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ff58::,2607:ff58:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ff60::,2607:ff60:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ff68::,2607:ff68:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ff70::,2607:ff70:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ff78::,2607:ff78:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:ff80::,2607:ff80:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ff90::,2607:ff90:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ffa0::,2607:ffa0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ffa8::,2607:ffa8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ffb0::,2607:ffb0:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:ffb8::,2607:ffb8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ffc0::,2607:ffc0:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:ffc8::,2607:ffc8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ffd0::,2607:ffd0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ffd8::,2607:ffd8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:ffe0::,2607:ffe0:ffff:ffff:ffff:ffff:ffff:ffff,CA 2607:ffe8::,2607:ffe8:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fff0::,2607:fff0:ffff:ffff:ffff:ffff:ffff:ffff,US 2607:fff8::,2607:fff8:ffff:ffff:ffff:ffff:ffff:ffff,CA 2608::,2608:3ff:ffff:ffff:ffff:ffff:ffff:ffff,US 2608:4000::,2608:43ff:ffff:ffff:ffff:ffff:ffff:ffff,US 2608:8000::,2608:83ff:ffff:ffff:ffff:ffff:ffff:ffff,US 2608:c000::,2608:c3ff:ffff:ffff:ffff:ffff:ffff:ffff,US 2609::,2609:3ff:ffff:ffff:ffff:ffff:ffff:ffff,US 2609:4000::,2609:43ff:ffff:ffff:ffff:ffff:ffff:ffff,US 2609:8000::,2609:83ff:ffff:ffff:ffff:ffff:ffff:ffff,US 2609:a000::,2609:a3ff:ffff:ffff:ffff:ffff:ffff:ffff,US 2609:c000::,2609:c3ff:ffff:ffff:ffff:ffff:ffff:ffff,US 2609:e000::,2609:e3ff:ffff:ffff:ffff:ffff:ffff:ffff,US 260c::,260c:3ff:ffff:ffff:ffff:ffff:ffff:ffff,US 260c:2000::,260c:23ff:ffff:ffff:ffff:ffff:ffff:ffff,US 260c:4000::,260c:43ff:ffff:ffff:ffff:ffff:ffff:ffff,US 260c:6000::,260c:63ff:ffff:ffff:ffff:ffff:ffff:ffff,US 260c:8000::,260c:83ff:ffff:ffff:ffff:ffff:ffff:ffff,US 260c:a000::,260c:a3ff:ffff:ffff:ffff:ffff:ffff:ffff,US 260c:c000::,260c:c3ff:ffff:ffff:ffff:ffff:ffff:ffff,US 260c:d000::,260c:d3ff:ffff:ffff:ffff:ffff:ffff:ffff,US 260c:e000::,260c:e3ff:ffff:ffff:ffff:ffff:ffff:ffff,US 260c:f000::,260c:f3ff:ffff:ffff:ffff:ffff:ffff:ffff,US 260f:d000::,260f:d3ff:ffff:ffff:ffff:ffff:ffff:ffff,US 260f:f000::,260f:f3ff:ffff:ffff:ffff:ffff:ffff:ffff,US 2610::,2610::ffff:ffff:ffff:ffff:ffff:ffff,CA 2610:8::,2610:8:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:10::,2610:10:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:18::,2610:18:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:20::,2610:20:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:28::,2610:28:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:30::,2610:30:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:38::,2610:38:ffff:ffff:ffff:ffff:ffff:ffff,CA 2610:40::,2610:40:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:48::,2610:48:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:50::,2610:50:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:58::,2610:58:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:60::,2610:60:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:68::,2610:68:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:78::,2610:78:ffff:ffff:ffff:ffff:ffff:ffff,CA 2610:80::,2610:88:1:ffff:ffff:ffff:ffff:ffff,US 2610:88:2::,2610:88:2:ffff:ffff:ffff:ffff:ffff,PL 2610:88:3::,2610:88:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:98::,2610:98:ffff:ffff:ffff:ffff:ffff:ffff,CA 2610:a0::,2610:a8:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:b0::,2610:b0:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:b8::,2610:b8:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:c0::,2610:c0:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:c8::,2610:c8:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:d0::,2610:d0:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:e0::,2610:e0:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:e8::,2610:e8:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:f0::,2610:f0:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:f8::,2610:f8:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:100::,2610:100:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:108::,2610:108:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:120::,2610:120:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:128::,2610:128:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:130::,2610:130:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:148::,2610:148:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:150::,2610:150:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:158::,2610:158:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:160::,2610:160:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:168::,2610:168:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:170::,2610:170:ffff:ffff:ffff:ffff:ffff:ffff,CA 2610:178::,2610:178:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:180::,2610:180:ffff:ffff:ffff:ffff:ffff:ffff,BS 2610:188::,2610:188:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:190::,2610:190:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:198::,2610:198:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:1a0::,2610:1a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:1a8::,2610:1a8:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:1b0::,2610:1b0:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:1c0::,2610:1c2:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:1c8::,2610:1c8:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:1d0::,2610:1d0:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:1d8::,2610:1d8:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:1e0::,2610:1e0:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:1e8::,2610:1e8:ffff:ffff:ffff:ffff:ffff:ffff,CA 2610:1f0::,2610:1f0:ffff:ffff:ffff:ffff:ffff:ffff,US 2610:1f8::,2610:1f8:ffff:ffff:ffff:ffff:ffff:ffff,US 2620::,2620::ffff:ffff:ffff:ffff:ffff,US 2620:0:10::,2620::10:ffff:ffff:ffff:ffff:ffff,US 2620:0:20::,2620::20:ffff:ffff:ffff:ffff:ffff,US 2620:0:30::,2620::37:ffff:ffff:ffff:ffff:ffff,US 2620:0:60::,2620::60:ffff:ffff:ffff:ffff:ffff,US 2620:0:70::,2620::70:ffff:ffff:ffff:ffff:ffff,US 2620:0:80::,2620::80:ffff:ffff:ffff:ffff:ffff,US 2620:0:90::,2620::90:ffff:ffff:ffff:ffff:ffff,US 2620:0:a0::,2620::a0:ffff:ffff:ffff:ffff:ffff,US 2620:0:b0::,2620::b0:ffff:ffff:ffff:ffff:ffff,US 2620:0:c0::,2620::c0:ffff:ffff:ffff:ffff:ffff,US 2620:0:f0::,2620::f0:ffff:ffff:ffff:ffff:ffff,CA 2620:0:100::,2620::100:ffff:ffff:ffff:ffff:ffff,US 2620:0:110::,2620::110:ffff:ffff:ffff:ffff:ffff,US 2620:0:140::,2620::140:ffff:ffff:ffff:ffff:ffff,US 2620:0:150::,2620::150:ffff:ffff:ffff:ffff:ffff,US 2620:0:160::,2620::160:ffff:ffff:ffff:ffff:ffff,CA 2620:0:170::,2620::170:ffff:ffff:ffff:ffff:ffff,US 2620:0:180::,2620::180:ffff:ffff:ffff:ffff:ffff,US 2620:0:190::,2620::190:ffff:ffff:ffff:ffff:ffff,US 2620:0:1a0::,2620::1a0:ffff:ffff:ffff:ffff:ffff,US 2620:0:1b0::,2620::1b0:ffff:ffff:ffff:ffff:ffff,US 2620:0:1c0::,2620::1c0:ffff:ffff:ffff:ffff:ffff,US 2620:0:1d0::,2620::1d0:ffff:ffff:ffff:ffff:ffff,US 2620:0:1f0::,2620::1f0:ffff:ffff:ffff:ffff:ffff,US 2620:0:200::,2620::200:ffff:ffff:ffff:ffff:ffff,US 2620:0:210::,2620::210:ffff:ffff:ffff:ffff:ffff,US 2620:0:220::,2620::220:ffff:ffff:ffff:ffff:ffff,US 2620:0:230::,2620::230:ffff:ffff:ffff:ffff:ffff,CA 2620:0:240::,2620::240:ffff:ffff:ffff:ffff:ffff,US 2620:0:250::,2620::250:ffff:ffff:ffff:ffff:ffff,US 2620:0:260::,2620::260:ffff:ffff:ffff:ffff:ffff,US 2620:0:280::,2620::280:ffff:ffff:ffff:ffff:ffff,US 2620:0:290::,2620::290:ffff:ffff:ffff:ffff:ffff,US 2620:0:2b0::,2620::2b0:ffff:ffff:ffff:ffff:ffff,US 2620:0:2c0::,2620::2c0:ffff:ffff:ffff:ffff:ffff,US 2620:0:2d0::,2620::2d0:ffff:ffff:ffff:ffff:ffff,US 2620:0:2f0::,2620::2f0:ffff:ffff:ffff:ffff:ffff,US 2620:0:300::,2620::300:ffff:ffff:ffff:ffff:ffff,US 2620:0:320::,2620::320:ffff:ffff:ffff:ffff:ffff,US 2620:0:350::,2620::353:ffff:ffff:ffff:ffff:ffff,US 2620:0:360::,2620::361:ffff:ffff:ffff:ffff:ffff,US 2620:0:390::,2620::390:ffff:ffff:ffff:ffff:ffff,US 2620:0:3b0::,2620::3b0:ffff:ffff:ffff:ffff:ffff,US 2620:0:3c0::,2620::3c0:ffff:ffff:ffff:ffff:ffff,US 2620:0:3e0::,2620::3e0:ffff:ffff:ffff:ffff:ffff,US 2620:0:3f0::,2620::3f0:ffff:ffff:ffff:ffff:ffff,US 2620:0:400::,2620::57f:ffff:ffff:ffff:ffff:ffff,US 2620:0:600::,2620::600:ffff:ffff:ffff:ffff:ffff,US 2620:0:610::,2620::61f:ffff:ffff:ffff:ffff:ffff,US 2620:0:630::,2620::630:ffff:ffff:ffff:ffff:ffff,US 2620:0:640::,2620::640:ffff:ffff:ffff:ffff:ffff,US 2620:0:650::,2620::650:ffff:ffff:ffff:ffff:ffff,US 2620:0:660::,2620::660:ffff:ffff:ffff:ffff:ffff,US 2620:0:670::,2620::671:ffff:ffff:ffff:ffff:ffff,US 2620:0:680::,2620::680:ffff:ffff:ffff:ffff:ffff,US 2620:0:690::,2620::691:ffff:ffff:ffff:ffff:ffff,US 2620:0:6a0::,2620::6a0:ffff:ffff:ffff:ffff:ffff,US 2620:0:6b0::,2620::6b0:ffff:ffff:ffff:ffff:ffff,US 2620:0:6c0::,2620::6c7:ffff:ffff:ffff:ffff:ffff,US 2620:0:6d0::,2620::6d0:ffff:ffff:ffff:ffff:ffff,US 2620:0:6e0::,2620::6e0:ffff:ffff:ffff:ffff:ffff,US 2620:0:6f0::,2620::6f0:ffff:ffff:ffff:ffff:ffff,US 2620:0:700::,2620::77f:ffff:ffff:ffff:ffff:ffff,US 2620:0:800::,2620::802:ffff:ffff:ffff:ffff:ffff,US 2620:0:810::,2620::810:ffff:ffff:ffff:ffff:ffff,CA 2620:0:840::,2620::840:ffff:ffff:ffff:ffff:ffff,US 2620:0:850::,2620::850:ffff:ffff:ffff:ffff:ffff,US 2620:0:860::,2620::863:ffff:ffff:ffff:ffff:ffff,US 2620:0:870::,2620::877:ffff:ffff:ffff:ffff:ffff,US 2620:0:880::,2620::880:ffff:ffff:ffff:ffff:ffff,US 2620:0:890::,2620::890:ffff:ffff:ffff:ffff:ffff,US 2620:0:8a0::,2620::8a0:ffff:ffff:ffff:ffff:ffff,US 2620:0:8d0::,2620::8d0:ffff:ffff:ffff:ffff:ffff,US 2620:0:8e0::,2620::8e0:ffff:ffff:ffff:ffff:ffff,US 2620:0:8f0::,2620::8f0:ffff:ffff:ffff:ffff:ffff,US 2620:0:900::,2620::900:ffff:ffff:ffff:ffff:ffff,US 2620:0:910::,2620::910:ffff:ffff:ffff:ffff:ffff,US 2620:0:920::,2620::920:ffff:ffff:ffff:ffff:ffff,US 2620:0:930::,2620::930:ffff:ffff:ffff:ffff:ffff,US 2620:0:940::,2620::940:ffff:ffff:ffff:ffff:ffff,US 2620:0:950::,2620::950:ffff:ffff:ffff:ffff:ffff,US 2620:0:960::,2620::960:ffff:ffff:ffff:ffff:ffff,US 2620:0:970::,2620::970:ffff:ffff:ffff:ffff:ffff,US 2620:0:980::,2620::980:ffff:ffff:ffff:ffff:ffff,US 2620:0:990::,2620::990:ffff:ffff:ffff:ffff:ffff,US 2620:0:9a0::,2620::9a0:ffff:ffff:ffff:ffff:ffff,US 2620:0:9b0::,2620::9b0:ffff:ffff:ffff:ffff:ffff,US 2620:0:9c0::,2620::9c0:ffff:ffff:ffff:ffff:ffff,US 2620:0:9e0::,2620::9e0:ffff:ffff:ffff:ffff:ffff,US 2620:0:9f0::,2620::9f0:ffff:ffff:ffff:ffff:ffff,US 2620:0:a00::,2620::a1f:ffff:ffff:ffff:ffff:ffff,US 2620:0:b00::,2620::b00:ffff:ffff:ffff:ffff:ffff,US 2620:0:b10::,2620::b13:ffff:ffff:ffff:ffff:ffff,US 2620:0:b20::,2620::b20:ffff:ffff:ffff:ffff:ffff,US 2620:0:b30::,2620::b30:ffff:ffff:ffff:ffff:ffff,US 2620:0:b40::,2620::b40:ffff:ffff:ffff:ffff:ffff,US 2620:0:b60::,2620::b61:ffff:ffff:ffff:ffff:ffff,US 2620:0:b80::,2620::b80:ffff:ffff:ffff:ffff:ffff,US 2620:0:b90::,2620::b90:ffff:ffff:ffff:ffff:ffff,US 2620:0:ba0::,2620::ba0:ffff:ffff:ffff:ffff:ffff,US 2620:0:bb0::,2620::bb0:ffff:ffff:ffff:ffff:ffff,US 2620:0:bd0::,2620::bd0:ffff:ffff:ffff:ffff:ffff,CA 2620:0:be0::,2620::be0:ffff:ffff:ffff:ffff:ffff,US 2620:0:bf0::,2620::bf0:ffff:ffff:ffff:ffff:ffff,US 2620:0:c10::,2620::c20:ffff:ffff:ffff:ffff:ffff,US 2620:0:c30::,2620::c30:ffff:ffff:ffff:ffff:ffff,US 2620:0:c40::,2620::c40:ffff:ffff:ffff:ffff:ffff,US 2620:0:c60::,2620::c60:ffff:ffff:ffff:ffff:ffff,US 2620:0:c70::,2620::c70:ffff:ffff:ffff:ffff:ffff,US 2620:0:c80::,2620::c80:ffff:ffff:ffff:ffff:ffff,US 2620:0:c90::,2620::ca0:ffff:ffff:ffff:ffff:ffff,US 2620:0:cb0::,2620::cb0:ffff:ffff:ffff:ffff:ffff,US 2620:0:cc0::,2620::cc3:ffff:ffff:ffff:ffff:ffff,US 2620:0:cc4::,2620::cc4:ffff:ffff:ffff:ffff:ffff,NL 2620:0:cc5::,2620::cc6:ffff:ffff:ffff:ffff:ffff,US 2620:0:cc7::,2620::cc7:ffff:ffff:ffff:ffff:ffff,DE 2620:0:cc8::,2620::cc9:ffff:ffff:ffff:ffff:ffff,US 2620:0:cca::,2620::cca:ffff:ffff:ffff:ffff:ffff,SG 2620:0:ccb::,2620::ccd:ffff:ffff:ffff:ffff:ffff,US 2620:0:cce::,2620::cce:ffff:ffff:ffff:ffff:ffff,HK 2620:0:ccf::,2620::ccf:ffff:ffff:ffff:ffff:ffff,AU 2620:0:ce0::,2620::ce0:ffff:ffff:ffff:ffff:ffff,US 2620:0:cf0::,2620::cf0:ffff:ffff:ffff:ffff:ffff,US 2620:0:d20::,2620::d20:ffff:ffff:ffff:ffff:ffff,US 2620:0:d30::,2620::d30:ffff:ffff:ffff:ffff:ffff,US 2620:0:d50::,2620::d50:ffff:ffff:ffff:ffff:ffff,US 2620:0:d60::,2620::d63:ffff:ffff:ffff:ffff:ffff,US 2620:0:d70::,2620::d77:ffff:ffff:ffff:ffff:ffff,US 2620:0:d80::,2620::d80:ffff:ffff:ffff:ffff:ffff,US 2620:0:d90::,2620::d90:ffff:ffff:ffff:ffff:ffff,US 2620:0:dc0::,2620::dc0:ffff:ffff:ffff:ffff:ffff,US 2620:0:dd0::,2620::dd0:ffff:ffff:ffff:ffff:ffff,US 2620:0:de0::,2620::de0:ffff:ffff:ffff:ffff:ffff,US 2620:0:df0::,2620::df0:ffff:ffff:ffff:ffff:ffff,US 2620:0:e00::,2620::e00:ffff:ffff:ffff:ffff:ffff,US 2620:0:e10::,2620::e10:ffff:ffff:ffff:ffff:ffff,US 2620:0:e20::,2620::e23:ffff:ffff:ffff:ffff:ffff,US 2620:0:e30::,2620::e30:ffff:ffff:ffff:ffff:ffff,US 2620:0:e50::,2620::e50:ffff:ffff:ffff:ffff:ffff,US 2620:0:e60::,2620::e60:ffff:ffff:ffff:ffff:ffff,US 2620:0:e80::,2620::e80:ffff:ffff:ffff:ffff:ffff,US 2620:0:e90::,2620::e90:ffff:ffff:ffff:ffff:ffff,US 2620:0:ea0::,2620::eb0:ffff:ffff:ffff:ffff:ffff,US 2620:0:ed0::,2620::ed0:ffff:ffff:ffff:ffff:ffff,US 2620:0:ee0::,2620::ee0:ffff:ffff:ffff:ffff:ffff,US 2620:0:ef0::,2620::ef0:ffff:ffff:ffff:ffff:ffff,US 2620:0:f00::,2620::f7f:ffff:ffff:ffff:ffff:ffff,US 2620:0:1000::,2620::100b:ffff:ffff:ffff:ffff:ffff,US 2620:0:100c::,2620::100c:7fff:ffff:ffff:ffff:ffff,CA 2620:0:100c:8000::,2620::100c:ffff:ffff:ffff:ffff:ffff,US 2620:0:100d::,2620::100d:ffff:ffff:ffff:ffff:ffff,CA 2620:0:100e::,2620::1010:ffff:ffff:ffff:ffff:ffff,US 2620:0:1011::,2620::1011:7fff:ffff:ffff:ffff:ffff,AR 2620:0:1011:8000::,2620::1017:7fff:ffff:ffff:ffff:ffff,US 2620:0:1017:8000::,2620::1017:ffff:ffff:ffff:ffff:ffff,CO 2620:0:1018::,2620::1019:ffff:ffff:ffff:ffff:ffff,US 2620:0:101a::,2620::101a:7fff:ffff:ffff:ffff:ffff,BR 2620:0:101a:8000::,2620::101f:ffff:ffff:ffff:ffff:ffff,US 2620:0:1020::,2620::1020:7fff:ffff:ffff:ffff:ffff,MX 2620:0:1020:8000::,2620::1024:ffff:ffff:ffff:ffff:ffff,US 2620:0:1025::,2620::1025:7fff:ffff:ffff:ffff:ffff,BR 2620:0:1025:8000::,2620::1034:ffff:ffff:ffff:ffff:ffff,US 2620:0:1035::,2620::1035:ffff:ffff:ffff:ffff:ffff,CA 2620:0:1036::,2620::103f:ffff:ffff:ffff:ffff:ffff,US 2620:0:1040::,2620::1040:7fff:ffff:ffff:ffff:ffff,IE 2620:0:1040:8000::,2620::1041:ffff:ffff:ffff:ffff:ffff,US 2620:0:1042::,2620::1042:ffff:ffff:ffff:ffff:ffff,GB 2620:0:1043::,2620::1043:7fff:ffff:ffff:ffff:ffff,SE 2620:0:1043:8000::,2620::1044:ffff:ffff:ffff:ffff:ffff,US 2620:0:1045::,2620::1045:7fff:ffff:ffff:ffff:ffff,IL 2620:0:1045:8000::,2620::1045:ffff:ffff:ffff:ffff:ffff,US 2620:0:1046::,2620::1046:7fff:ffff:ffff:ffff:ffff,DE 2620:0:1046:8000::,2620::1046:ffff:ffff:ffff:ffff:ffff,US 2620:0:1047::,2620::1047:7fff:ffff:ffff:ffff:ffff,FR 2620:0:1047:8000::,2620::1047:ffff:ffff:ffff:ffff:ffff,US 2620:0:1048::,2620::1048:7fff:ffff:ffff:ffff:ffff,IL 2620:0:1048:8000::,2620::1048:ffff:ffff:ffff:ffff:ffff,US 2620:0:1049::,2620::1049:7fff:ffff:ffff:ffff:ffff,DE 2620:0:1049:8000::,2620::1049:ffff:ffff:ffff:ffff:ffff,US 2620:0:104a::,2620::104a:7fff:ffff:ffff:ffff:ffff,AE 2620:0:104a:8000::,2620::104a:ffff:ffff:ffff:ffff:ffff,US 2620:0:104b::,2620::104b:7fff:ffff:ffff:ffff:ffff,NL 2620:0:104b:8000::,2620::104b:ffff:ffff:ffff:ffff:ffff,US 2620:0:104c::,2620::104c:7fff:ffff:ffff:ffff:ffff,CH 2620:0:104c:8000::,2620::104f:ffff:ffff:ffff:ffff:ffff,US 2620:0:1050::,2620::1050:ffff:ffff:ffff:ffff:ffff,GB 2620:0:1051::,2620::1051:7fff:ffff:ffff:ffff:ffff,ES 2620:0:1051:8000::,2620::1051:ffff:ffff:ffff:ffff:ffff,US 2620:0:1052::,2620::1052:7fff:ffff:ffff:ffff:ffff,IE 2620:0:1052:8000::,2620::1052:ffff:ffff:ffff:ffff:ffff,US 2620:0:1053::,2620::1053:7fff:ffff:ffff:ffff:ffff,FR 2620:0:1053:8000::,2620::1055:ffff:ffff:ffff:ffff:ffff,US 2620:0:1056::,2620::1056:7fff:ffff:ffff:ffff:ffff,FR 2620:0:1056:8000::,2620::1056:ffff:ffff:ffff:ffff:ffff,US 2620:0:1057::,2620::1057:7fff:ffff:ffff:ffff:ffff,DE 2620:0:1057:8000::,2620::105a:7fff:ffff:ffff:ffff:ffff,US 2620:0:105a:8000::,2620::105a:ffff:ffff:ffff:ffff:ffff,UG 2620:0:105b::,2620::105e:ffff:ffff:ffff:ffff:ffff,US 2620:0:105f::,2620::105f:ffff:ffff:ffff:ffff:ffff,CH 2620:0:1060::,2620::1060:ffff:ffff:ffff:ffff:ffff,US 2620:0:1061::,2620::1061:7fff:ffff:ffff:ffff:ffff,CH 2620:0:1061:8000::,2620::1068:ffff:ffff:ffff:ffff:ffff,US 2620:0:1069::,2620::1069:7fff:ffff:ffff:ffff:ffff,PL 2620:0:1069:8000::,2620::106a:ffff:ffff:ffff:ffff:ffff,US 2620:0:106b::,2620::106b:7fff:ffff:ffff:ffff:ffff,RU 2620:0:106b:8000::,2620::106d:ffff:ffff:ffff:ffff:ffff,US 2620:0:106e::,2620::106e:7fff:ffff:ffff:ffff:ffff,ZA 2620:0:106e:8000::,2620::1072:ffff:ffff:ffff:ffff:ffff,US 2620:0:1073::,2620::1073:ffff:ffff:ffff:ffff:ffff,GB 2620:0:1074::,2620::1074:7fff:ffff:ffff:ffff:ffff,IE 2620:0:1074:8000::,2620::1076:ffff:ffff:ffff:ffff:ffff,US 2620:0:1077::,2620::1077:7fff:ffff:ffff:ffff:ffff,DE 2620:0:1077:8000::,2620::1078:ffff:ffff:ffff:ffff:ffff,US 2620:0:1079::,2620::1079:7fff:ffff:ffff:ffff:ffff,DK 2620:0:1079:8000::,2620::107a:7fff:ffff:ffff:ffff:ffff,US 2620:0:107a:8000::,2620::107a:ffff:ffff:ffff:ffff:ffff,IE 2620:0:107b::,2620::107b:ffff:ffff:ffff:ffff:ffff,US 2620:0:107c::,2620::107c:7fff:ffff:ffff:ffff:ffff,GR 2620:0:107c:8000::,2620::107e:ffff:ffff:ffff:ffff:ffff,US 2620:0:107f::,2620::107f:7fff:ffff:ffff:ffff:ffff,BE 2620:0:107f:8000::,2620::10e7:ffff:ffff:ffff:ffff:ffff,US 2620:0:10e8::,2620::10e8:7fff:ffff:ffff:ffff:ffff,AR 2620:0:10e8:8000::,2620::10ff:ffff:ffff:ffff:ffff:ffff,US 2620:0:1400::,2620::143f:ffff:ffff:ffff:ffff:ffff,US 2620:0:1500::,2620::157f:ffff:ffff:ffff:ffff:ffff,US 2620:0:1600::,2620::167f:ffff:ffff:ffff:ffff:ffff,US 2620:0:1700::,2620::170f:ffff:ffff:ffff:ffff:ffff,US 2620:0:1800::,2620::181f:ffff:ffff:ffff:ffff:ffff,US 2620:0:1a00::,2620::1a00:ffff:ffff:ffff:ffff:ffff,US 2620:0:1a10::,2620::1a10:ffff:ffff:ffff:ffff:ffff,US 2620:0:1a20::,2620::1a20:ffff:ffff:ffff:ffff:ffff,US 2620:0:1a30::,2620::1a30:ffff:ffff:ffff:ffff:ffff,US 2620:0:1a40::,2620::1a40:ffff:ffff:ffff:ffff:ffff,US 2620:0:1a50::,2620::1a50:ffff:ffff:ffff:ffff:ffff,US 2620:0:1a70::,2620::1a70:ffff:ffff:ffff:ffff:ffff,US 2620:0:1a80::,2620::1a80:ffff:ffff:ffff:ffff:ffff,US 2620:0:1aa0::,2620::1aa0:ffff:ffff:ffff:ffff:ffff,US 2620:0:1ab0::,2620::1ab0:ffff:ffff:ffff:ffff:ffff,US 2620:0:1ac0::,2620::1ac0:ffff:ffff:ffff:ffff:ffff,US 2620:0:1ad0::,2620::1ad7:ffff:ffff:ffff:ffff:ffff,US 2620:0:1ae0::,2620::1ae0:ffff:ffff:ffff:ffff:ffff,US 2620:0:1af0::,2620::1af0:ffff:ffff:ffff:ffff:ffff,CA 2620:0:1b00::,2620::1b07:ffff:ffff:ffff:ffff:ffff,US 2620:0:1c00::,2620::1cff:ffff:ffff:ffff:ffff:ffff,US 2620:0:2000::,2620::203f:ffff:ffff:ffff:ffff:ffff,US 2620:0:2210::,2620::2210:ffff:ffff:ffff:ffff:ffff,US 2620:0:2220::,2620::2220:ffff:ffff:ffff:ffff:ffff,CA 2620:0:2240::,2620::2240:ffff:ffff:ffff:ffff:ffff,US 2620:0:2250::,2620::2250:ffff:ffff:ffff:ffff:ffff,US 2620:0:2260::,2620::2260:ffff:ffff:ffff:ffff:ffff,US 2620:0:2280::,2620::2280:ffff:ffff:ffff:ffff:ffff,US 2620:0:2290::,2620::2290:ffff:ffff:ffff:ffff:ffff,US 2620:0:22a0::,2620::22a0:ffff:ffff:ffff:ffff:ffff,US 2620:0:22b0::,2620::22b0:ffff:ffff:ffff:ffff:ffff,US 2620:0:22c0::,2620::22c0:ffff:ffff:ffff:ffff:ffff,US 2620:0:22d0::,2620::22d0:ffff:ffff:ffff:ffff:ffff,US 2620:0:22e0::,2620::22e0:ffff:ffff:ffff:ffff:ffff,CA 2620:0:22f0::,2620::22f0:ffff:ffff:ffff:ffff:ffff,US 2620:0:2300::,2620::230f:ffff:ffff:ffff:ffff:ffff,US 2620:0:2400::,2620::24ff:ffff:ffff:ffff:ffff:ffff,US 2620:0:2800::,2620::2800:ffff:ffff:ffff:ffff:ffff,US 2620:0:2810::,2620::2810:ffff:ffff:ffff:ffff:ffff,US 2620:0:2820::,2620::2820:ffff:ffff:ffff:ffff:ffff,US 2620:0:2830::,2620::2830:ffff:ffff:ffff:ffff:ffff,US 2620:0:2840::,2620::2840:ffff:ffff:ffff:ffff:ffff,US 2620:0:2850::,2620::2850:ffff:ffff:ffff:ffff:ffff,US 2620:0:2860::,2620::2860:ffff:ffff:ffff:ffff:ffff,US 2620:0:2870::,2620::2870:ffff:ffff:ffff:ffff:ffff,US 2620:0:2880::,2620::2880:ffff:ffff:ffff:ffff:ffff,US 2620:0:28a0::,2620::28a0:ffff:ffff:ffff:ffff:ffff,US 2620:0:28b0::,2620::28b0:ffff:ffff:ffff:ffff:ffff,US 2620:0:28d0::,2620::28d0:ffff:ffff:ffff:ffff:ffff,US 2620:0:28f0::,2620::28f0:ffff:ffff:ffff:ffff:ffff,US 2620:0:2900::,2620::290f:ffff:ffff:ffff:ffff:ffff,US 2620:0:2a00::,2620::2a1f:ffff:ffff:ffff:ffff:ffff,US 2620:0:2b00::,2620::2b00:ffff:ffff:ffff:ffff:ffff,US 2620:0:2b10::,2620::2b20:ffff:ffff:ffff:ffff:ffff,US 2620:0:2b30::,2620::2b40:ffff:ffff:ffff:ffff:ffff,US 2620:0:2b50::,2620::2b50:ffff:ffff:ffff:ffff:ffff,US 2620:0:2b60::,2620::2b60:ffff:ffff:ffff:ffff:ffff,US 2620:0:2b70::,2620::2b8f:ffff:ffff:ffff:ffff:ffff,US 2620:0:2bc0::,2620::2bc3:ffff:ffff:ffff:ffff:ffff,US 2620:0:2be0::,2620::2be0:ffff:ffff:ffff:ffff:ffff,US 2620:0:2d00::,2620::2d7f:ffff:ffff:ffff:ffff:ffff,US 2620:0:2e00::,2620::2e00:ffff:ffff:ffff:ffff:ffff,US 2620:0:2e10::,2620::2e10:ffff:ffff:ffff:ffff:ffff,US 2620:0:2e30::,2620::2e30:ffff:ffff:ffff:ffff:ffff,US 2620:0:2e40::,2620::2e40:ffff:ffff:ffff:ffff:ffff,US 2620:0:2e50::,2620::2e50:ffff:ffff:ffff:ffff:ffff,US 2620:0:2e60::,2620::2e60:ffff:ffff:ffff:ffff:ffff,US 2620:0:2e70::,2620::2e80:ffff:ffff:ffff:ffff:ffff,US 2620:0:2ea0::,2620::2ea0:ffff:ffff:ffff:ffff:ffff,US 2620:0:2eb0::,2620::2eb0:ffff:ffff:ffff:ffff:ffff,US 2620:0:2ed0::,2620::2ed0:ffff:ffff:ffff:ffff:ffff,US 2620:0:2ee0::,2620::2ee0:ffff:ffff:ffff:ffff:ffff,US 2620:0:2f00::,2620::2f7f:ffff:ffff:ffff:ffff:ffff,US 2620:0:5000::,2620::5000:ffff:ffff:ffff:ffff:ffff,US 2620:0:5010::,2620::5010:ffff:ffff:ffff:ffff:ffff,US 2620:0:5030::,2620::5030:ffff:ffff:ffff:ffff:ffff,US 2620:0:5040::,2620::5040:ffff:ffff:ffff:ffff:ffff,US 2620:0:5050::,2620::5050:ffff:ffff:ffff:ffff:ffff,US 2620:0:5060::,2620::5060:ffff:ffff:ffff:ffff:ffff,CA 2620:0:5070::,2620::5070:ffff:ffff:ffff:ffff:ffff,US 2620:0:5080::,2620::5080:ffff:ffff:ffff:ffff:ffff,US 2620:0:5090::,2620::5090:ffff:ffff:ffff:ffff:ffff,US 2620:0:50a0::,2620::50a0:ffff:ffff:ffff:ffff:ffff,US 2620:0:50b0::,2620::50b0:ffff:ffff:ffff:ffff:ffff,US 2620:0:50c0::,2620::50c0:ffff:ffff:ffff:ffff:ffff,US 2620:0:50d0::,2620::50d1:ffff:ffff:ffff:ffff:ffff,US 2620:0:50e0::,2620::50e0:ffff:ffff:ffff:ffff:ffff,US 2620:0:50f0::,2620::50f0:ffff:ffff:ffff:ffff:ffff,US 2620:0:5100::,2620::510f:ffff:ffff:ffff:ffff:ffff,US 2620:0:5200::,2620::5200:ffff:ffff:ffff:ffff:ffff,US 2620:0:5300::,2620::530f:ffff:ffff:ffff:ffff:ffff,US 2620:0:aa00::,2620::aa00:ffff:ffff:ffff:ffff:ffff,US 2620:1::,2620:1::ffff:ffff:ffff:ffff:ffff,US 2620:1:4000::,2620:1:4000:ffff:ffff:ffff:ffff:ffff,US 2620:1:8000::,2620:1:8000:ffff:ffff:ffff:ffff:ffff,US 2620:1:c000::,2620:1:c000:ffff:ffff:ffff:ffff:ffff,US 2620:2::,2620:2::ffff:ffff:ffff:ffff:ffff,US 2620:2:4000::,2620:2:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:2:8000::,2620:2:8000:ffff:ffff:ffff:ffff:ffff,US 2620:2:c000::,2620:2:c000:ffff:ffff:ffff:ffff:ffff,US 2620:3::,2620:3::ffff:ffff:ffff:ffff:ffff,US 2620:3:4000::,2620:3:4000:ffff:ffff:ffff:ffff:ffff,US 2620:3:8000::,2620:3:8000:ffff:ffff:ffff:ffff:ffff,US 2620:3:c000::,2620:3:c000:ffff:ffff:ffff:ffff:ffff,US 2620:4::,2620:4::ffff:ffff:ffff:ffff:ffff,US 2620:4:4000::,2620:4:4000:ffff:ffff:ffff:ffff:ffff,US 2620:4:8000::,2620:4:8000:ffff:ffff:ffff:ffff:ffff,US 2620:4:c000::,2620:4:c000:ffff:ffff:ffff:ffff:ffff,US 2620:5::,2620:5::ffff:ffff:ffff:ffff:ffff,US 2620:5:4000::,2620:5:400f:ffff:ffff:ffff:ffff:ffff,US 2620:5:8000::,2620:5:8000:ffff:ffff:ffff:ffff:ffff,US 2620:5:c000::,2620:5:c000:ffff:ffff:ffff:ffff:ffff,US 2620:6::,2620:6::ffff:ffff:ffff:ffff:ffff,CA 2620:6:4000::,2620:6:4000:ffff:ffff:ffff:ffff:ffff,US 2620:6:8000::,2620:6:8000:ffff:ffff:ffff:ffff:ffff,US 2620:6:c000::,2620:6:c000:ffff:ffff:ffff:ffff:ffff,US 2620:7::,2620:7::ffff:ffff:ffff:ffff:ffff,US 2620:7:4000::,2620:7:4000:ffff:ffff:ffff:ffff:ffff,US 2620:7:8000::,2620:7:8000:ffff:ffff:ffff:ffff:ffff,US 2620:7:c000::,2620:7:c000:ffff:ffff:ffff:ffff:ffff,US 2620:8::,2620:8:7f:ffff:ffff:ffff:ffff:ffff,CA 2620:8:8200::,2620:8:8200:ffff:ffff:ffff:ffff:ffff,US 2620:9::,2620:9::ffff:ffff:ffff:ffff:ffff,US 2620:9:4000::,2620:9:4000:ffff:ffff:ffff:ffff:ffff,US 2620:9:8000::,2620:9:8000:ffff:ffff:ffff:ffff:ffff,US 2620:9:c000::,2620:9:c000:ffff:ffff:ffff:ffff:ffff,US 2620:a::,2620:a:f:ffff:ffff:ffff:ffff:ffff,CA 2620:a:4000::,2620:a:4000:ffff:ffff:ffff:ffff:ffff,US 2620:a:8000::,2620:a:8000:ffff:ffff:ffff:ffff:ffff,US 2620:a:c000::,2620:a:c000:ffff:ffff:ffff:ffff:ffff,US 2620:b::,2620:b::ffff:ffff:ffff:ffff:ffff,US 2620:b:4000::,2620:b:4000:ffff:ffff:ffff:ffff:ffff,US 2620:b:8000::,2620:b:8000:ffff:ffff:ffff:ffff:ffff,US 2620:b:c000::,2620:b:c000:ffff:ffff:ffff:ffff:ffff,US 2620:c::,2620:c:f:ffff:ffff:ffff:ffff:ffff,US 2620:c:4000::,2620:c:4000:ffff:ffff:ffff:ffff:ffff,US 2620:c:8000::,2620:c:8000:ffff:ffff:ffff:ffff:ffff,US 2620:c:c000::,2620:c:c000:ffff:ffff:ffff:ffff:ffff,US 2620:d::,2620:d::ffff:ffff:ffff:ffff:ffff,US 2620:d:4000::,2620:d:4000:ffff:ffff:ffff:ffff:ffff,US 2620:d:8000::,2620:d:8000:ffff:ffff:ffff:ffff:ffff,US 2620:d:c000::,2620:d:c000:ffff:ffff:ffff:ffff:ffff,US 2620:e::,2620:e::ffff:ffff:ffff:ffff:ffff,US 2620:e:4000::,2620:e:4000:ffff:ffff:ffff:ffff:ffff,US 2620:e:8000::,2620:e:8000:ffff:ffff:ffff:ffff:ffff,US 2620:e:c000::,2620:e:c000:ffff:ffff:ffff:ffff:ffff,US 2620:f::,2620:f:f:ffff:ffff:ffff:ffff:ffff,US 2620:f:4000::,2620:f:4000:ffff:ffff:ffff:ffff:ffff,US 2620:f:8000::,2620:f:8000:ffff:ffff:ffff:ffff:ffff,US 2620:f:c000::,2620:f:c000:ffff:ffff:ffff:ffff:ffff,US 2620:10::,2620:10::ffff:ffff:ffff:ffff:ffff,US 2620:10:4000::,2620:10:4000:ffff:ffff:ffff:ffff:ffff,US 2620:10:8000::,2620:10:800f:ffff:ffff:ffff:ffff:ffff,CA 2620:10:c000::,2620:10:c000:ffff:ffff:ffff:ffff:ffff,US 2620:11::,2620:11:ff:ffff:ffff:ffff:ffff:ffff,US 2620:11:4000::,2620:11:4000:ffff:ffff:ffff:ffff:ffff,US 2620:11:8000::,2620:11:8000:ffff:ffff:ffff:ffff:ffff,US 2620:11:c000::,2620:11:c000:ffff:ffff:ffff:ffff:ffff,US 2620:12::,2620:12::ffff:ffff:ffff:ffff:ffff,US 2620:12:4000::,2620:12:4000:ffff:ffff:ffff:ffff:ffff,US 2620:12:8000::,2620:12:8000:ffff:ffff:ffff:ffff:ffff,US 2620:12:c000::,2620:12:c000:ffff:ffff:ffff:ffff:ffff,US 2620:13::,2620:13::ffff:ffff:ffff:ffff:ffff,CA 2620:13:4000::,2620:13:4000:ffff:ffff:ffff:ffff:ffff,US 2620:13:8000::,2620:13:8000:ffff:ffff:ffff:ffff:ffff,US 2620:13:c000::,2620:13:c000:ffff:ffff:ffff:ffff:ffff,US 2620:14::,2620:14::ffff:ffff:ffff:ffff:ffff,US 2620:14:4000::,2620:14:4000:ffff:ffff:ffff:ffff:ffff,US 2620:14:8000::,2620:14:8000:ffff:ffff:ffff:ffff:ffff,US 2620:14:c000::,2620:14:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:15::,2620:15::ffff:ffff:ffff:ffff:ffff,US 2620:15:8000::,2620:15:8000:ffff:ffff:ffff:ffff:ffff,US 2620:15:c000::,2620:15:c000:ffff:ffff:ffff:ffff:ffff,US 2620:16::,2620:16::ffff:ffff:ffff:ffff:ffff,CA 2620:16:4000::,2620:16:4000:ffff:ffff:ffff:ffff:ffff,US 2620:16:8000::,2620:16:8000:ffff:ffff:ffff:ffff:ffff,US 2620:16:c000::,2620:16:c000:ffff:ffff:ffff:ffff:ffff,US 2620:17::,2620:17::ffff:ffff:ffff:ffff:ffff,US 2620:17:4000::,2620:17:4000:ffff:ffff:ffff:ffff:ffff,US 2620:17:8000::,2620:17:800f:ffff:ffff:ffff:ffff:ffff,US 2620:17:c000::,2620:17:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:18::,2620:18::ffff:ffff:ffff:ffff:ffff,US 2620:18:4000::,2620:18:4000:ffff:ffff:ffff:ffff:ffff,US 2620:18:8000::,2620:18:8000:ffff:ffff:ffff:ffff:ffff,US 2620:18:c000::,2620:18:c000:ffff:ffff:ffff:ffff:ffff,KN 2620:19::,2620:19::ffff:ffff:ffff:ffff:ffff,US 2620:19:4000::,2620:19:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:19:8000::,2620:19:8000:ffff:ffff:ffff:ffff:ffff,US 2620:19:c000::,2620:19:c000:ffff:ffff:ffff:ffff:ffff,US 2620:1a::,2620:1a::ffff:ffff:ffff:ffff:ffff,US 2620:1a:4000::,2620:1a:4000:ffff:ffff:ffff:ffff:ffff,US 2620:1a:8000::,2620:1a:8000:ffff:ffff:ffff:ffff:ffff,US 2620:1a:c000::,2620:1a:c000:ffff:ffff:ffff:ffff:ffff,US 2620:1b::,2620:1b:f:ffff:ffff:ffff:ffff:ffff,US 2620:1b:4000::,2620:1b:4000:ffff:ffff:ffff:ffff:ffff,US 2620:1b:8000::,2620:1b:8000:ffff:ffff:ffff:ffff:ffff,US 2620:1b:c000::,2620:1b:c000:ffff:ffff:ffff:ffff:ffff,US 2620:1c::,2620:1c::ffff:ffff:ffff:ffff:ffff,US 2620:1c:4000::,2620:1c:4000:ffff:ffff:ffff:ffff:ffff,US 2620:1c:8000::,2620:1c:8000:ffff:ffff:ffff:ffff:ffff,US 2620:1c:c000::,2620:1c:c000:ffff:ffff:ffff:ffff:ffff,US 2620:1d::,2620:1d:f:ffff:ffff:ffff:ffff:ffff,US 2620:1d:4000::,2620:1d:4000:ffff:ffff:ffff:ffff:ffff,US 2620:1d:8000::,2620:1d:8000:ffff:ffff:ffff:ffff:ffff,US 2620:1d:c000::,2620:1d:c000:ffff:ffff:ffff:ffff:ffff,US 2620:1e::,2620:1e::ffff:ffff:ffff:ffff:ffff,US 2620:1e:4000::,2620:1e:4000:ffff:ffff:ffff:ffff:ffff,US 2620:1e:8000::,2620:1e:8000:ffff:ffff:ffff:ffff:ffff,US 2620:1e:c000::,2620:1e:c000:ffff:ffff:ffff:ffff:ffff,US 2620:1f::,2620:1f::ffff:ffff:ffff:ffff:ffff,US 2620:1f:4000::,2620:1f:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:1f:8000::,2620:1f:800f:ffff:ffff:ffff:ffff:ffff,US 2620:1f:c000::,2620:1f:c000:ffff:ffff:ffff:ffff:ffff,US 2620:20::,2620:20::ffff:ffff:ffff:ffff:ffff,US 2620:20:4000::,2620:20:4000:ffff:ffff:ffff:ffff:ffff,US 2620:20:8000::,2620:20:8000:ffff:ffff:ffff:ffff:ffff,US 2620:20:c000::,2620:20:c000:ffff:ffff:ffff:ffff:ffff,US 2620:21::,2620:21::ffff:ffff:ffff:ffff:ffff,US 2620:21:4000::,2620:21:4000:ffff:ffff:ffff:ffff:ffff,US 2620:21:8000::,2620:21:8000:ffff:ffff:ffff:ffff:ffff,US 2620:21:c000::,2620:21:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:22::,2620:22::ffff:ffff:ffff:ffff:ffff,US 2620:22:4000::,2620:22:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:22:8000::,2620:22:8000:ffff:ffff:ffff:ffff:ffff,US 2620:22:c000::,2620:22:c000:ffff:ffff:ffff:ffff:ffff,US 2620:23::,2620:23::ffff:ffff:ffff:ffff:ffff,US 2620:23:4000::,2620:23:4000:ffff:ffff:ffff:ffff:ffff,US 2620:23:8000::,2620:23:8000:ffff:ffff:ffff:ffff:ffff,US 2620:23:c000::,2620:23:c000:ffff:ffff:ffff:ffff:ffff,US 2620:24::,2620:24:1f:ffff:ffff:ffff:ffff:ffff,US 2620:24:8080::,2620:24:8080:ffff:ffff:ffff:ffff:ffff,US 2620:25::,2620:25::ffff:ffff:ffff:ffff:ffff,US 2620:25:4000::,2620:25:4000:ffff:ffff:ffff:ffff:ffff,US 2620:25:8000::,2620:25:8000:ffff:ffff:ffff:ffff:ffff,US 2620:25:c000::,2620:25:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:26::,2620:26::ffff:ffff:ffff:ffff:ffff,US 2620:26:4000::,2620:26:400f:ffff:ffff:ffff:ffff:ffff,US 2620:26:8000::,2620:26:8000:ffff:ffff:ffff:ffff:ffff,US 2620:26:c000::,2620:26:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:27::,2620:27:f:ffff:ffff:ffff:ffff:ffff,US 2620:27:8080::,2620:27:8080:ffff:ffff:ffff:ffff:ffff,US 2620:28::,2620:28::ffff:ffff:ffff:ffff:ffff,US 2620:28:4000::,2620:28:400f:ffff:ffff:ffff:ffff:ffff,US 2620:28:8000::,2620:28:8000:ffff:ffff:ffff:ffff:ffff,US 2620:28:c000::,2620:28:c000:ffff:ffff:ffff:ffff:ffff,US 2620:29::,2620:29::ffff:ffff:ffff:ffff:ffff,US 2620:29:4000::,2620:29:4000:ffff:ffff:ffff:ffff:ffff,US 2620:29:c000::,2620:29:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:2a::,2620:2a::ffff:ffff:ffff:ffff:ffff,US 2620:2a:4000::,2620:2a:400f:ffff:ffff:ffff:ffff:ffff,US 2620:2a:8000::,2620:2a:8000:ffff:ffff:ffff:ffff:ffff,US 2620:2a:c000::,2620:2a:c000:ffff:ffff:ffff:ffff:ffff,US 2620:2b::,2620:2b::ffff:ffff:ffff:ffff:ffff,US 2620:2b:4000::,2620:2b:400f:ffff:ffff:ffff:ffff:ffff,US 2620:2b:8000::,2620:2b:8000:ffff:ffff:ffff:ffff:ffff,US 2620:2c::,2620:2c:f:ffff:ffff:ffff:ffff:ffff,US 2620:2c:8080::,2620:2c:8080:ffff:ffff:ffff:ffff:ffff,US 2620:2d::,2620:2d::ffff:ffff:ffff:ffff:ffff,US 2620:2d:4000::,2620:2d:400f:ffff:ffff:ffff:ffff:ffff,US 2620:2d:8000::,2620:2d:8000:ffff:ffff:ffff:ffff:ffff,US 2620:2d:c000::,2620:2d:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:2e::,2620:2e:3f:ffff:ffff:ffff:ffff:ffff,US 2620:2e:8080::,2620:2e:8080:ffff:ffff:ffff:ffff:ffff,US 2620:2f::,2620:2f::ffff:ffff:ffff:ffff:ffff,CA 2620:2f:4000::,2620:2f:4000:ffff:ffff:ffff:ffff:ffff,US 2620:2f:8000::,2620:2f:8000:ffff:ffff:ffff:ffff:ffff,US 2620:2f:c000::,2620:2f:c000:ffff:ffff:ffff:ffff:ffff,US 2620:30::,2620:30::ffff:ffff:ffff:ffff:ffff,US 2620:30:4000::,2620:30:4000:ffff:ffff:ffff:ffff:ffff,US 2620:30:8000::,2620:30:8000:ffff:ffff:ffff:ffff:ffff,US 2620:30:c000::,2620:30:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:31::,2620:31::ffff:ffff:ffff:ffff:ffff,US 2620:31:4000::,2620:31:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:31:8000::,2620:31:8000:ffff:ffff:ffff:ffff:ffff,US 2620:31:c000::,2620:31:c000:ffff:ffff:ffff:ffff:ffff,US 2620:32::,2620:32::ffff:ffff:ffff:ffff:ffff,US 2620:32:4000::,2620:32:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:32:8000::,2620:32:8000:ffff:ffff:ffff:ffff:ffff,US 2620:32:c000::,2620:32:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:33::,2620:33::ffff:ffff:ffff:ffff:ffff,US 2620:33:4000::,2620:33:400f:ffff:ffff:ffff:ffff:ffff,US 2620:33:8000::,2620:33:8000:ffff:ffff:ffff:ffff:ffff,US 2620:33:c000::,2620:33:c000:ffff:ffff:ffff:ffff:ffff,US 2620:34::,2620:34::ffff:ffff:ffff:ffff:ffff,US 2620:34:4000::,2620:34:4000:ffff:ffff:ffff:ffff:ffff,US 2620:34:8000::,2620:34:8000:ffff:ffff:ffff:ffff:ffff,US 2620:34:c000::,2620:34:c000:ffff:ffff:ffff:ffff:ffff,US 2620:35:4000::,2620:35:400f:ffff:ffff:ffff:ffff:ffff,CA 2620:35:8000::,2620:35:8000:ffff:ffff:ffff:ffff:ffff,CA 2620:35:c000::,2620:35:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:36::,2620:36::ffff:ffff:ffff:ffff:ffff,US 2620:36:4000::,2620:36:400f:ffff:ffff:ffff:ffff:ffff,CA 2620:36:8000::,2620:36:8000:ffff:ffff:ffff:ffff:ffff,US 2620:36:c000::,2620:36:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:37::,2620:37::ffff:ffff:ffff:ffff:ffff,US 2620:37:4000::,2620:37:400f:ffff:ffff:ffff:ffff:ffff,US 2620:37:8000::,2620:37:8000:ffff:ffff:ffff:ffff:ffff,US 2620:37:c000::,2620:37:c000:ffff:ffff:ffff:ffff:ffff,US 2620:38::,2620:38::ffff:ffff:ffff:ffff:ffff,US 2620:38:4000::,2620:38:400f:ffff:ffff:ffff:ffff:ffff,US 2620:38:8000::,2620:38:8000:ffff:ffff:ffff:ffff:ffff,US 2620:38:c000::,2620:38:c000:ffff:ffff:ffff:ffff:ffff,US 2620:39::,2620:39::ffff:ffff:ffff:ffff:ffff,US 2620:39:4000::,2620:39:4000:ffff:ffff:ffff:ffff:ffff,US 2620:39:8000::,2620:39:8000:ffff:ffff:ffff:ffff:ffff,US 2620:39:c000::,2620:39:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:3a::,2620:3a::ffff:ffff:ffff:ffff:ffff,US 2620:3a:4000::,2620:3a:400f:ffff:ffff:ffff:ffff:ffff,US 2620:3a:8000::,2620:3a:8000:ffff:ffff:ffff:ffff:ffff,US 2620:3a:c000::,2620:3a:c000:ffff:ffff:ffff:ffff:ffff,US 2620:3b::,2620:3b::ffff:ffff:ffff:ffff:ffff,US 2620:3b:4000::,2620:3b:4000:ffff:ffff:ffff:ffff:ffff,US 2620:3b:8000::,2620:3b:8000:ffff:ffff:ffff:ffff:ffff,US 2620:3b:c000::,2620:3b:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:3c::,2620:3c:3f:ffff:ffff:ffff:ffff:ffff,US 2620:3c:8080::,2620:3c:8080:ffff:ffff:ffff:ffff:ffff,US 2620:3d::,2620:3d::ffff:ffff:ffff:ffff:ffff,US 2620:3d:4000::,2620:3d:4000:ffff:ffff:ffff:ffff:ffff,US 2620:3d:8000::,2620:3d:8000:ffff:ffff:ffff:ffff:ffff,US 2620:3d:c000::,2620:3d:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:3e::,2620:3e::ffff:ffff:ffff:ffff:ffff,US 2620:3e:4000::,2620:3e:4000:ffff:ffff:ffff:ffff:ffff,US 2620:3e:8000::,2620:3e:8000:ffff:ffff:ffff:ffff:ffff,US 2620:3e:c000::,2620:3e:c000:ffff:ffff:ffff:ffff:ffff,US 2620:3f::,2620:3f::ffff:ffff:ffff:ffff:ffff,US 2620:3f:4000::,2620:3f:4000:ffff:ffff:ffff:ffff:ffff,US 2620:3f:8000::,2620:3f:8000:ffff:ffff:ffff:ffff:ffff,US 2620:3f:c000::,2620:3f:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:40::,2620:40::ffff:ffff:ffff:ffff:ffff,US 2620:40:4000::,2620:40:4000:ffff:ffff:ffff:ffff:ffff,US 2620:40:8000::,2620:40:8000:ffff:ffff:ffff:ffff:ffff,US 2620:40:c000::,2620:40:c000:ffff:ffff:ffff:ffff:ffff,US 2620:41::,2620:41:1:ffff:ffff:ffff:ffff:ffff,US 2620:41:4000::,2620:41:4000:ffff:ffff:ffff:ffff:ffff,US 2620:41:8000::,2620:41:8000:ffff:ffff:ffff:ffff:ffff,US 2620:42::,2620:42::ffff:ffff:ffff:ffff:ffff,US 2620:42:4000::,2620:42:4000:ffff:ffff:ffff:ffff:ffff,US 2620:42:c000::,2620:42:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:43::,2620:43::ffff:ffff:ffff:ffff:ffff,US 2620:43:4000::,2620:43:4000:ffff:ffff:ffff:ffff:ffff,US 2620:43:8000::,2620:43:8000:ffff:ffff:ffff:ffff:ffff,US 2620:43:c000::,2620:43:c000:ffff:ffff:ffff:ffff:ffff,US 2620:44::,2620:44:1:ffff:ffff:ffff:ffff:ffff,US 2620:44:4000::,2620:44:4000:ffff:ffff:ffff:ffff:ffff,US 2620:44:8000::,2620:44:8000:ffff:ffff:ffff:ffff:ffff,US 2620:45::,2620:45::ffff:ffff:ffff:ffff:ffff,CA 2620:45:4000::,2620:45:4000:ffff:ffff:ffff:ffff:ffff,US 2620:45:8000::,2620:45:8000:ffff:ffff:ffff:ffff:ffff,US 2620:45:c000::,2620:45:c000:ffff:ffff:ffff:ffff:ffff,US 2620:46::,2620:46::ffff:ffff:ffff:ffff:ffff,US 2620:46:4000::,2620:46:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:46:8000::,2620:46:8000:ffff:ffff:ffff:ffff:ffff,US 2620:46:c000::,2620:46:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:47::,2620:47::ffff:ffff:ffff:ffff:ffff,US 2620:47:4000::,2620:47:4000:ffff:ffff:ffff:ffff:ffff,US 2620:47:8000::,2620:47:8000:ffff:ffff:ffff:ffff:ffff,US 2620:47:c000::,2620:47:c000:ffff:ffff:ffff:ffff:ffff,US 2620:48::,2620:48::ffff:ffff:ffff:ffff:ffff,US 2620:48:4000::,2620:48:4000:ffff:ffff:ffff:ffff:ffff,US 2620:48:8000::,2620:48:8000:ffff:ffff:ffff:ffff:ffff,US 2620:48:c000::,2620:48:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:49::,2620:49:f:ffff:ffff:ffff:ffff:ffff,CA 2620:49:8080::,2620:49:8080:ffff:ffff:ffff:ffff:ffff,US 2620:4a::,2620:4a::ffff:ffff:ffff:ffff:ffff,US 2620:4a:4000::,2620:4a:4000:ffff:ffff:ffff:ffff:ffff,US 2620:4a:8000::,2620:4a:8000:ffff:ffff:ffff:ffff:ffff,US 2620:4a:c000::,2620:4a:c000:ffff:ffff:ffff:ffff:ffff,US 2620:4b::,2620:4b::ffff:ffff:ffff:ffff:ffff,CA 2620:4b:4000::,2620:4b:400f:ffff:ffff:ffff:ffff:ffff,US 2620:4b:8000::,2620:4b:800f:ffff:ffff:ffff:ffff:ffff,US 2620:4b:c000::,2620:4b:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:4c::,2620:4c:1:ffff:ffff:ffff:ffff:ffff,US 2620:4c:4000::,2620:4c:400f:ffff:ffff:ffff:ffff:ffff,US 2620:4c:c000::,2620:4c:c000:ffff:ffff:ffff:ffff:ffff,US 2620:4d::,2620:4d::ffff:ffff:ffff:ffff:ffff,US 2620:4d:4000::,2620:4d:400f:ffff:ffff:ffff:ffff:ffff,US 2620:4d:8000::,2620:4d:8000:ffff:ffff:ffff:ffff:ffff,US 2620:4d:c000::,2620:4d:c000:ffff:ffff:ffff:ffff:ffff,US 2620:4e::,2620:4e::ffff:ffff:ffff:ffff:ffff,US 2620:4e:4000::,2620:4e:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:4e:8000::,2620:4e:8000:ffff:ffff:ffff:ffff:ffff,US 2620:4e:c000::,2620:4e:c000:ffff:ffff:ffff:ffff:ffff,US 2620:4f::,2620:4f::ffff:ffff:ffff:ffff:ffff,US 2620:4f:4000::,2620:4f:4000:ffff:ffff:ffff:ffff:ffff,US 2620:4f:8000::,2620:4f:8000:ffff:ffff:ffff:ffff:ffff,US 2620:4f:c000::,2620:4f:c000:ffff:ffff:ffff:ffff:ffff,US 2620:50::,2620:50:f:ffff:ffff:ffff:ffff:ffff,US 2620:50:8080::,2620:50:8080:ffff:ffff:ffff:ffff:ffff,US 2620:51::,2620:51::ffff:ffff:ffff:ffff:ffff,US 2620:51:4000::,2620:51:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:51:8000::,2620:51:8000:ffff:ffff:ffff:ffff:ffff,CA 2620:51:c000::,2620:51:c000:ffff:ffff:ffff:ffff:ffff,US 2620:52::,2620:52:3:ffff:ffff:ffff:ffff:ffff,US 2620:52:4000::,2620:52:4000:ffff:ffff:ffff:ffff:ffff,US 2620:52:8000::,2620:52:800f:ffff:ffff:ffff:ffff:ffff,US 2620:52:c000::,2620:52:c000:ffff:ffff:ffff:ffff:ffff,US 2620:53::,2620:53::ffff:ffff:ffff:ffff:ffff,US 2620:53:4000::,2620:53:400f:ffff:ffff:ffff:ffff:ffff,US 2620:53:8000::,2620:53:8000:ffff:ffff:ffff:ffff:ffff,US 2620:53:c000::,2620:53:c000:ffff:ffff:ffff:ffff:ffff,US 2620:54::,2620:54::ffff:ffff:ffff:ffff:ffff,US 2620:54:4000::,2620:54:4000:ffff:ffff:ffff:ffff:ffff,US 2620:54:8000::,2620:54:8000:ffff:ffff:ffff:ffff:ffff,US 2620:54:c000::,2620:54:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:55::,2620:55::ffff:ffff:ffff:ffff:ffff,US 2620:55:4000::,2620:55:400f:ffff:ffff:ffff:ffff:ffff,US 2620:55:8000::,2620:55:8000:ffff:ffff:ffff:ffff:ffff,US 2620:55:c000::,2620:55:c000:ffff:ffff:ffff:ffff:ffff,US 2620:56::,2620:56::ffff:ffff:ffff:ffff:ffff,US 2620:56:4000::,2620:56:4000:ffff:ffff:ffff:ffff:ffff,US 2620:56:8000::,2620:56:8000:ffff:ffff:ffff:ffff:ffff,US 2620:56:c000::,2620:56:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:57::,2620:57::ffff:ffff:ffff:ffff:ffff,US 2620:57:4000::,2620:57:40ff:ffff:ffff:ffff:ffff:ffff,KY 2620:57:8000::,2620:57:8000:ffff:ffff:ffff:ffff:ffff,US 2620:57:c000::,2620:57:c000:ffff:ffff:ffff:ffff:ffff,US 2620:58::,2620:58:ff:ffff:ffff:ffff:ffff:ffff,US 2620:58:8800::,2620:58:8800:ffff:ffff:ffff:ffff:ffff,US 2620:59::,2620:59::ffff:ffff:ffff:ffff:ffff,US 2620:59:4000::,2620:59:4000:ffff:ffff:ffff:ffff:ffff,US 2620:59:8000::,2620:59:8000:ffff:ffff:ffff:ffff:ffff,US 2620:59:c000::,2620:59:c000:ffff:ffff:ffff:ffff:ffff,US 2620:5a::,2620:5a::ffff:ffff:ffff:ffff:ffff,US 2620:5a:4000::,2620:5a:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:5a:8000::,2620:5a:8000:ffff:ffff:ffff:ffff:ffff,US 2620:5a:c000::,2620:5a:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:5b::,2620:5b::ffff:ffff:ffff:ffff:ffff,US 2620:5b:4000::,2620:5b:4000:ffff:ffff:ffff:ffff:ffff,US 2620:5b:8000::,2620:5b:8000:ffff:ffff:ffff:ffff:ffff,CA 2620:5b:c000::,2620:5b:c00f:ffff:ffff:ffff:ffff:ffff,CA 2620:5c::,2620:5c::ffff:ffff:ffff:ffff:ffff,US 2620:5c:8000::,2620:5c:8000:ffff:ffff:ffff:ffff:ffff,US 2620:5c:c000::,2620:5c:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:5d::,2620:5d::ffff:ffff:ffff:ffff:ffff,US 2620:5d:4000::,2620:5d:4000:ffff:ffff:ffff:ffff:ffff,US 2620:5d:8000::,2620:5d:8000:ffff:ffff:ffff:ffff:ffff,US 2620:5d:c000::,2620:5d:c000:ffff:ffff:ffff:ffff:ffff,US 2620:5e::,2620:5e::ffff:ffff:ffff:ffff:ffff,US 2620:5e:4000::,2620:5e:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:5e:8000::,2620:5e:8000:ffff:ffff:ffff:ffff:ffff,US 2620:5e:c000::,2620:5e:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:5f::,2620:5f::ffff:ffff:ffff:ffff:ffff,US 2620:5f:4000::,2620:5f:4000:ffff:ffff:ffff:ffff:ffff,US 2620:5f:8000::,2620:5f:8000:ffff:ffff:ffff:ffff:ffff,US 2620:5f:c000::,2620:5f:c000:ffff:ffff:ffff:ffff:ffff,US 2620:60::,2620:60::ffff:ffff:ffff:ffff:ffff,US 2620:60:4000::,2620:60:400f:ffff:ffff:ffff:ffff:ffff,US 2620:60:8000::,2620:60:8000:ffff:ffff:ffff:ffff:ffff,CA 2620:61::,2620:61::ffff:ffff:ffff:ffff:ffff,CA 2620:61:4000::,2620:61:400f:ffff:ffff:ffff:ffff:ffff,US 2620:61:8000::,2620:61:8000:ffff:ffff:ffff:ffff:ffff,US 2620:61:c000::,2620:61:c000:ffff:ffff:ffff:ffff:ffff,US 2620:62::,2620:62::ffff:ffff:ffff:ffff:ffff,US 2620:62:4000::,2620:62:400f:ffff:ffff:ffff:ffff:ffff,CA 2620:62:8000::,2620:62:8000:ffff:ffff:ffff:ffff:ffff,US 2620:62:c000::,2620:62:c000:ffff:ffff:ffff:ffff:ffff,US 2620:63::,2620:63::ffff:ffff:ffff:ffff:ffff,US 2620:63:4000::,2620:63:4000:ffff:ffff:ffff:ffff:ffff,US 2620:63:8000::,2620:63:8000:ffff:ffff:ffff:ffff:ffff,US 2620:63:c000::,2620:63:c000:ffff:ffff:ffff:ffff:ffff,US 2620:64::,2620:64::ffff:ffff:ffff:ffff:ffff,US 2620:64:4000::,2620:64:4000:ffff:ffff:ffff:ffff:ffff,US 2620:64:8000::,2620:64:8000:ffff:ffff:ffff:ffff:ffff,TW 2620:64:c000::,2620:64:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:65::,2620:65:ff:ffff:ffff:ffff:ffff:ffff,US 2620:65:8000::,2620:65:800f:ffff:ffff:ffff:ffff:ffff,US 2620:65:c000::,2620:65:c000:ffff:ffff:ffff:ffff:ffff,US 2620:66::,2620:66::ffff:ffff:ffff:ffff:ffff,CA 2620:66:4000::,2620:66:400f:ffff:ffff:ffff:ffff:ffff,US 2620:66:8000::,2620:66:8000:ffff:ffff:ffff:ffff:ffff,US 2620:66:c000::,2620:66:c000:ffff:ffff:ffff:ffff:ffff,US 2620:67::,2620:67::ffff:ffff:ffff:ffff:ffff,US 2620:67:4000::,2620:67:4000:ffff:ffff:ffff:ffff:ffff,US 2620:67:8000::,2620:67:8000:ffff:ffff:ffff:ffff:ffff,US 2620:67:c000::,2620:67:c000:ffff:ffff:ffff:ffff:ffff,US 2620:68::,2620:68::ffff:ffff:ffff:ffff:ffff,US 2620:68:4000::,2620:68:4000:ffff:ffff:ffff:ffff:ffff,US 2620:68:8000::,2620:68:8000:ffff:ffff:ffff:ffff:ffff,CA 2620:68:c000::,2620:68:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:69:4000::,2620:69:4000:ffff:ffff:ffff:ffff:ffff,US 2620:69:8000::,2620:69:8000:ffff:ffff:ffff:ffff:ffff,US 2620:69:c000::,2620:69:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:6a::,2620:6a::ffff:ffff:ffff:ffff:ffff,US 2620:6a:4000::,2620:6a:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:6a:8000::,2620:6a:8000:ffff:ffff:ffff:ffff:ffff,US 2620:6a:c000::,2620:6a:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:6b::,2620:6b::ffff:ffff:ffff:ffff:ffff,US 2620:6b:4000::,2620:6b:4000:ffff:ffff:ffff:ffff:ffff,US 2620:6b:8000::,2620:6b:8000:ffff:ffff:ffff:ffff:ffff,US 2620:6b:c000::,2620:6b:c000:ffff:ffff:ffff:ffff:ffff,US 2620:6c::,2620:6c:3f:ffff:ffff:ffff:ffff:ffff,US 2620:6c:8080::,2620:6c:8080:ffff:ffff:ffff:ffff:ffff,US 2620:6d:40::,2620:6d:40:ffff:ffff:ffff:ffff:ffff,US 2620:6d:8000::,2620:6d:8000:ffff:ffff:ffff:ffff:ffff,US 2620:6d:c000::,2620:6d:c000:ffff:ffff:ffff:ffff:ffff,US 2620:6e::,2620:6e::ffff:ffff:ffff:ffff:ffff,US 2620:6e:4000::,2620:6e:4000:ffff:ffff:ffff:ffff:ffff,US 2620:6e:8000::,2620:6e:800f:ffff:ffff:ffff:ffff:ffff,US 2620:6e:c000::,2620:6e:c000:ffff:ffff:ffff:ffff:ffff,US 2620:6f::,2620:6f::ffff:ffff:ffff:ffff:ffff,US 2620:6f:4000::,2620:6f:4000:ffff:ffff:ffff:ffff:ffff,US 2620:6f:8000::,2620:6f:8000:ffff:ffff:ffff:ffff:ffff,US 2620:6f:c000::,2620:6f:c000:ffff:ffff:ffff:ffff:ffff,US 2620:70::,2620:70::ffff:ffff:ffff:ffff:ffff,US 2620:70:4000::,2620:70:4000:ffff:ffff:ffff:ffff:ffff,US 2620:70:8000::,2620:70:8000:ffff:ffff:ffff:ffff:ffff,US 2620:70:c000::,2620:70:c000:ffff:ffff:ffff:ffff:ffff,US 2620:71::,2620:71::ffff:ffff:ffff:ffff:ffff,US 2620:71:4000::,2620:71:4000:ffff:ffff:ffff:ffff:ffff,US 2620:71:8000::,2620:71:8000:ffff:ffff:ffff:ffff:ffff,US 2620:71:c000::,2620:71:c000:ffff:ffff:ffff:ffff:ffff,US 2620:72::,2620:72::ffff:ffff:ffff:ffff:ffff,US 2620:72:4000::,2620:72:4000:ffff:ffff:ffff:ffff:ffff,US 2620:72:8000::,2620:72:8000:ffff:ffff:ffff:ffff:ffff,US 2620:72:c000::,2620:72:c000:ffff:ffff:ffff:ffff:ffff,US 2620:73::,2620:73::ffff:ffff:ffff:ffff:ffff,US 2620:73:4000::,2620:73:4000:ffff:ffff:ffff:ffff:ffff,US 2620:73:8000::,2620:73:8000:ffff:ffff:ffff:ffff:ffff,US 2620:73:c000::,2620:73:c000:ffff:ffff:ffff:ffff:ffff,US 2620:74::,2620:74:1f:ffff:ffff:ffff:ffff:ffff,US 2620:74:8080::,2620:74:8080:ffff:ffff:ffff:ffff:ffff,US 2620:75::,2620:75::ffff:ffff:ffff:ffff:ffff,US 2620:75:4000::,2620:75:4000:ffff:ffff:ffff:ffff:ffff,US 2620:75:8000::,2620:75:8000:ffff:ffff:ffff:ffff:ffff,US 2620:75:c000::,2620:75:c000:ffff:ffff:ffff:ffff:ffff,US 2620:76::,2620:76::ffff:ffff:ffff:ffff:ffff,US 2620:76:4000::,2620:76:4000:ffff:ffff:ffff:ffff:ffff,US 2620:76:8000::,2620:76:8000:ffff:ffff:ffff:ffff:ffff,US 2620:76:c000::,2620:76:c000:ffff:ffff:ffff:ffff:ffff,US 2620:77::,2620:77::ffff:ffff:ffff:ffff:ffff,US 2620:77:4000::,2620:77:4000:ffff:ffff:ffff:ffff:ffff,US 2620:77:8000::,2620:77:8000:ffff:ffff:ffff:ffff:ffff,US 2620:78::,2620:78::ffff:ffff:ffff:ffff:ffff,US 2620:78:4000::,2620:78:4000:ffff:ffff:ffff:ffff:ffff,US 2620:78:8000::,2620:78:8000:ffff:ffff:ffff:ffff:ffff,US 2620:78:c000::,2620:78:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:79::,2620:79:f:ffff:ffff:ffff:ffff:ffff,US 2620:79:4000::,2620:79:4000:ffff:ffff:ffff:ffff:ffff,US 2620:79:8000::,2620:79:8000:ffff:ffff:ffff:ffff:ffff,US 2620:79:c000::,2620:79:c000:ffff:ffff:ffff:ffff:ffff,US 2620:7a::,2620:7a::ffff:ffff:ffff:ffff:ffff,US 2620:7a:4000::,2620:7a:4000:ffff:ffff:ffff:ffff:ffff,US 2620:7a:8000::,2620:7a:8000:ffff:ffff:ffff:ffff:ffff,US 2620:7a:c000::,2620:7a:c000:ffff:ffff:ffff:ffff:ffff,US 2620:7b::,2620:7b::ffff:ffff:ffff:ffff:ffff,US 2620:7b:4000::,2620:7b:4000:ffff:ffff:ffff:ffff:ffff,US 2620:7b:8000::,2620:7b:800f:ffff:ffff:ffff:ffff:ffff,US 2620:7b:e000::,2620:7b:e000:ffff:ffff:ffff:ffff:ffff,US 2620:7c:4000::,2620:7c:4000:ffff:ffff:ffff:ffff:ffff,US 2620:7c:a000::,2620:7c:a000:ffff:ffff:ffff:ffff:ffff,US 2620:7d::,2620:7d::ffff:ffff:ffff:ffff:ffff,US 2620:7d:4000::,2620:7d:4000:ffff:ffff:ffff:ffff:ffff,US 2620:7d:8000::,2620:7d:8000:ffff:ffff:ffff:ffff:ffff,US 2620:7d:c000::,2620:7d:c000:ffff:ffff:ffff:ffff:ffff,US 2620:7e::,2620:7e:f:ffff:ffff:ffff:ffff:ffff,US 2620:7e:60c0::,2620:7e:60c0:ffff:ffff:ffff:ffff:ffff,US 2620:7e:c080::,2620:7e:c080:ffff:ffff:ffff:ffff:ffff,US 2620:7f:2040::,2620:7f:2040:ffff:ffff:ffff:ffff:ffff,US 2620:7f:8000::,2620:7f:8000:ffff:ffff:ffff:ffff:ffff,CA 2620:7f:c000::,2620:7f:c000:ffff:ffff:ffff:ffff:ffff,US 2620:80:4000::,2620:80:4000:ffff:ffff:ffff:ffff:ffff,US 2620:80:8000::,2620:80:8000:ffff:ffff:ffff:ffff:ffff,CA 2620:80:c000::,2620:80:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:81::,2620:81::ffff:ffff:ffff:ffff:ffff,US 2620:81:4000::,2620:81:4000:ffff:ffff:ffff:ffff:ffff,US 2620:81:8000::,2620:81:8000:ffff:ffff:ffff:ffff:ffff,US 2620:81:c000::,2620:81:c000:ffff:ffff:ffff:ffff:ffff,US 2620:82::,2620:82::ffff:ffff:ffff:ffff:ffff,US 2620:82:4000::,2620:82:4000:ffff:ffff:ffff:ffff:ffff,US 2620:82:8000::,2620:82:8000:ffff:ffff:ffff:ffff:ffff,US 2620:82:c000::,2620:82:c000:ffff:ffff:ffff:ffff:ffff,US 2620:83::,2620:83::ffff:ffff:ffff:ffff:ffff,US 2620:83:4000::,2620:83:4000:ffff:ffff:ffff:ffff:ffff,US 2620:83:8000::,2620:83:800f:ffff:ffff:ffff:ffff:ffff,US 2620:83:c000::,2620:83:c000:ffff:ffff:ffff:ffff:ffff,US 2620:84::,2620:84:1:ffff:ffff:ffff:ffff:ffff,US 2620:84:4000::,2620:84:4000:ffff:ffff:ffff:ffff:ffff,US 2620:84:8000::,2620:84:8000:ffff:ffff:ffff:ffff:ffff,US 2620:84:c000::,2620:84:c000:ffff:ffff:ffff:ffff:ffff,US 2620:85::,2620:85::ffff:ffff:ffff:ffff:ffff,US 2620:85:4000::,2620:85:4000:ffff:ffff:ffff:ffff:ffff,US 2620:85:8000::,2620:85:8000:ffff:ffff:ffff:ffff:ffff,US 2620:85:c000::,2620:85:c000:ffff:ffff:ffff:ffff:ffff,US 2620:86::,2620:86::ffff:ffff:ffff:ffff:ffff,US 2620:86:4000::,2620:86:4000:ffff:ffff:ffff:ffff:ffff,US 2620:86:8000::,2620:86:8000:ffff:ffff:ffff:ffff:ffff,US 2620:86:c000::,2620:86:c000:ffff:ffff:ffff:ffff:ffff,US 2620:87::,2620:87::ffff:ffff:ffff:ffff:ffff,US 2620:87:4000::,2620:87:4000:ffff:ffff:ffff:ffff:ffff,US 2620:87:8000::,2620:87:8000:ffff:ffff:ffff:ffff:ffff,US 2620:87:c000::,2620:87:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:88::,2620:88::ffff:ffff:ffff:ffff:ffff,US 2620:88:4000::,2620:88:4000:ffff:ffff:ffff:ffff:ffff,US 2620:88:8000::,2620:88:800f:ffff:ffff:ffff:ffff:ffff,US 2620:88:c000::,2620:88:c000:ffff:ffff:ffff:ffff:ffff,US 2620:89::,2620:89::ffff:ffff:ffff:ffff:ffff,US 2620:89:4000::,2620:89:4000:ffff:ffff:ffff:ffff:ffff,US 2620:89:8000::,2620:89:8000:ffff:ffff:ffff:ffff:ffff,US 2620:89:c000::,2620:89:c000:ffff:ffff:ffff:ffff:ffff,US 2620:8a::,2620:8a::ffff:ffff:ffff:ffff:ffff,US 2620:8a:4000::,2620:8a:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:8a:8000::,2620:8a:8000:ffff:ffff:ffff:ffff:ffff,US 2620:8a:c000::,2620:8a:c000:ffff:ffff:ffff:ffff:ffff,US 2620:8b::,2620:8b::ffff:ffff:ffff:ffff:ffff,US 2620:8b:4000::,2620:8b:4000:ffff:ffff:ffff:ffff:ffff,US 2620:8b:8000::,2620:8b:8000:ffff:ffff:ffff:ffff:ffff,CA 2620:8b:c000::,2620:8b:c000:ffff:ffff:ffff:ffff:ffff,US 2620:8c:4000::,2620:8c:4000:ffff:ffff:ffff:ffff:ffff,US 2620:8c:8000::,2620:8c:8000:ffff:ffff:ffff:ffff:ffff,US 2620:8c:c000::,2620:8c:c000:ffff:ffff:ffff:ffff:ffff,US 2620:8d::,2620:8d::ffff:ffff:ffff:ffff:ffff,US 2620:8d:4000::,2620:8d:4000:ffff:ffff:ffff:ffff:ffff,US 2620:8d:8000::,2620:8d:8000:ffff:ffff:ffff:ffff:ffff,US 2620:8d:c000::,2620:8d:c000:ffff:ffff:ffff:ffff:ffff,US 2620:8e::,2620:8e::ffff:ffff:ffff:ffff:ffff,US 2620:8e:4000::,2620:8e:4000:ffff:ffff:ffff:ffff:ffff,US 2620:8e:8000::,2620:8e:8000:ffff:ffff:ffff:ffff:ffff,US 2620:8e:c000::,2620:8e:c000:ffff:ffff:ffff:ffff:ffff,US 2620:8f::,2620:8f::ffff:ffff:ffff:ffff:ffff,US 2620:8f:4000::,2620:8f:400f:ffff:ffff:ffff:ffff:ffff,US 2620:8f:8000::,2620:8f:8000:ffff:ffff:ffff:ffff:ffff,US 2620:8f:c000::,2620:8f:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:90::,2620:90::ffff:ffff:ffff:ffff:ffff,CA 2620:90:4000::,2620:90:4000:ffff:ffff:ffff:ffff:ffff,US 2620:90:8000::,2620:90:8000:ffff:ffff:ffff:ffff:ffff,US 2620:90:c000::,2620:90:c000:ffff:ffff:ffff:ffff:ffff,US 2620:91::,2620:91::ffff:ffff:ffff:ffff:ffff,US 2620:91:4000::,2620:91:4000:ffff:ffff:ffff:ffff:ffff,US 2620:91:8000::,2620:91:8000:ffff:ffff:ffff:ffff:ffff,US 2620:91:c000::,2620:91:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:92::,2620:92:f:ffff:ffff:ffff:ffff:ffff,US 2620:92:4000::,2620:92:4000:ffff:ffff:ffff:ffff:ffff,US 2620:92:8000::,2620:92:8000:ffff:ffff:ffff:ffff:ffff,US 2620:92:c000::,2620:92:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:93::,2620:93::ffff:ffff:ffff:ffff:ffff,US 2620:93:4000::,2620:93:4000:ffff:ffff:ffff:ffff:ffff,US 2620:93:8000::,2620:93:8000:ffff:ffff:ffff:ffff:ffff,US 2620:93:c000::,2620:93:c000:ffff:ffff:ffff:ffff:ffff,US 2620:94::,2620:94::ffff:ffff:ffff:ffff:ffff,US 2620:94:4000::,2620:94:4000:ffff:ffff:ffff:ffff:ffff,US 2620:94:8000::,2620:94:8000:ffff:ffff:ffff:ffff:ffff,US 2620:94:c000::,2620:94:c000:ffff:ffff:ffff:ffff:ffff,US 2620:95::,2620:95::ffff:ffff:ffff:ffff:ffff,US 2620:95:4000::,2620:95:400f:ffff:ffff:ffff:ffff:ffff,US 2620:95:8000::,2620:95:8000:ffff:ffff:ffff:ffff:ffff,US 2620:95:c000::,2620:95:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:96::,2620:96::ffff:ffff:ffff:ffff:ffff,US 2620:96:4000::,2620:96:400f:ffff:ffff:ffff:ffff:ffff,CA 2620:96:8000::,2620:96:8000:ffff:ffff:ffff:ffff:ffff,US 2620:96:c000::,2620:96:c000:ffff:ffff:ffff:ffff:ffff,US 2620:97::,2620:97::ffff:ffff:ffff:ffff:ffff,US 2620:97:4000::,2620:97:4000:ffff:ffff:ffff:ffff:ffff,US 2620:97:8000::,2620:97:8000:ffff:ffff:ffff:ffff:ffff,US 2620:97:c000::,2620:97:c000:ffff:ffff:ffff:ffff:ffff,US 2620:98::,2620:98::ffff:ffff:ffff:ffff:ffff,US 2620:98:4000::,2620:98:400f:ffff:ffff:ffff:ffff:ffff,CA 2620:98:8000::,2620:98:8000:ffff:ffff:ffff:ffff:ffff,US 2620:98:c000::,2620:98:c000:ffff:ffff:ffff:ffff:ffff,US 2620:99::,2620:99::ffff:ffff:ffff:ffff:ffff,US 2620:99:4000::,2620:99:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:99:8000::,2620:99:8000:ffff:ffff:ffff:ffff:ffff,US 2620:99:c000::,2620:99:c000:ffff:ffff:ffff:ffff:ffff,US 2620:9a::,2620:9a::ffff:ffff:ffff:ffff:ffff,CA 2620:9a:4000::,2620:9a:4000:ffff:ffff:ffff:ffff:ffff,US 2620:9a:8000::,2620:9a:8000:ffff:ffff:ffff:ffff:ffff,US 2620:9a:c000::,2620:9a:c000:ffff:ffff:ffff:ffff:ffff,US 2620:9b::,2620:9b::ffff:ffff:ffff:ffff:ffff,US 2620:9b:4000::,2620:9b:4000:ffff:ffff:ffff:ffff:ffff,US 2620:9b:8000::,2620:9b:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:9b:c000::,2620:9b:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:9c::,2620:9c::ffff:ffff:ffff:ffff:ffff,US 2620:9c:4000::,2620:9c:400f:ffff:ffff:ffff:ffff:ffff,US 2620:9c:8000::,2620:9c:8000:ffff:ffff:ffff:ffff:ffff,US 2620:9c:c000::,2620:9c:c000:ffff:ffff:ffff:ffff:ffff,US 2620:9d::,2620:9d::ffff:ffff:ffff:ffff:ffff,US 2620:9d:4000::,2620:9d:4000:ffff:ffff:ffff:ffff:ffff,US 2620:9d:c000::,2620:9d:c000:ffff:ffff:ffff:ffff:ffff,US 2620:9e::,2620:9e::ffff:ffff:ffff:ffff:ffff,US 2620:9e:4000::,2620:9e:4000:ffff:ffff:ffff:ffff:ffff,US 2620:9e:8000::,2620:9e:8000:ffff:ffff:ffff:ffff:ffff,US 2620:9e:c000::,2620:9e:c000:ffff:ffff:ffff:ffff:ffff,US 2620:9f::,2620:9f:ff:ffff:ffff:ffff:ffff:ffff,US 2620:9f:8000::,2620:9f:8000:ffff:ffff:ffff:ffff:ffff,US 2620:9f:c000::,2620:9f:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:a0::,2620:a0::ffff:ffff:ffff:ffff:ffff,US 2620:a0:4000::,2620:a0:4000:ffff:ffff:ffff:ffff:ffff,US 2620:a0:8000::,2620:a0:8000:ffff:ffff:ffff:ffff:ffff,US 2620:a0:c000::,2620:a0:c000:ffff:ffff:ffff:ffff:ffff,US 2620:a1::,2620:a1::ffff:ffff:ffff:ffff:ffff,US 2620:a1:4000::,2620:a1:4000:ffff:ffff:ffff:ffff:ffff,US 2620:a1:8000::,2620:a1:8000:ffff:ffff:ffff:ffff:ffff,US 2620:a1:c000::,2620:a1:c000:ffff:ffff:ffff:ffff:ffff,US 2620:a2::,2620:a2::ffff:ffff:ffff:ffff:ffff,US 2620:a2:4000::,2620:a2:4000:ffff:ffff:ffff:ffff:ffff,US 2620:a2:8000::,2620:a2:8000:ffff:ffff:ffff:ffff:ffff,US 2620:a2:c000::,2620:a2:c000:ffff:ffff:ffff:ffff:ffff,US 2620:a3::,2620:a3::ffff:ffff:ffff:ffff:ffff,US 2620:a3:4000::,2620:a3:400f:ffff:ffff:ffff:ffff:ffff,US 2620:a3:8000::,2620:a3:8000:ffff:ffff:ffff:ffff:ffff,US 2620:a3:c020::,2620:a3:c020:ffff:ffff:ffff:ffff:ffff,US 2620:a4:40::,2620:a4:40:ffff:ffff:ffff:ffff:ffff,US 2620:a4:4060::,2620:a4:4060:ffff:ffff:ffff:ffff:ffff,US 2620:a4:8080::,2620:a4:8080:ffff:ffff:ffff:ffff:ffff,US 2620:a5::,2620:a5::ffff:ffff:ffff:ffff:ffff,US 2620:a5:4000::,2620:a5:4000:ffff:ffff:ffff:ffff:ffff,US 2620:a5:8000::,2620:a5:8000:ffff:ffff:ffff:ffff:ffff,US 2620:a5:c000::,2620:a5:c000:ffff:ffff:ffff:ffff:ffff,US 2620:a6::,2620:a6::ffff:ffff:ffff:ffff:ffff,US 2620:a6:4000::,2620:a6:4000:ffff:ffff:ffff:ffff:ffff,US 2620:a6:8000::,2620:a6:8000:ffff:ffff:ffff:ffff:ffff,US 2620:a6:c000::,2620:a6:c000:ffff:ffff:ffff:ffff:ffff,US 2620:a7::,2620:a7::ffff:ffff:ffff:ffff:ffff,US 2620:a7:4000::,2620:a7:4000:ffff:ffff:ffff:ffff:ffff,US 2620:a7:8000::,2620:a7:8000:ffff:ffff:ffff:ffff:ffff,US 2620:a7:c000::,2620:a7:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:a8::,2620:a8::ffff:ffff:ffff:ffff:ffff,US 2620:a8:4000::,2620:a8:4000:ffff:ffff:ffff:ffff:ffff,US 2620:a8:8000::,2620:a8:8000:ffff:ffff:ffff:ffff:ffff,US 2620:a8:c000::,2620:a8:c000:ffff:ffff:ffff:ffff:ffff,US 2620:a9::,2620:a9::ffff:ffff:ffff:ffff:ffff,US 2620:a9:4000::,2620:a9:4000:ffff:ffff:ffff:ffff:ffff,US 2620:a9:8000::,2620:a9:800f:ffff:ffff:ffff:ffff:ffff,US 2620:aa::,2620:aa::ffff:ffff:ffff:ffff:ffff,US 2620:aa:4000::,2620:aa:4000:ffff:ffff:ffff:ffff:ffff,US 2620:aa:8000::,2620:aa:8000:ffff:ffff:ffff:ffff:ffff,US 2620:aa:c000::,2620:aa:c000:ffff:ffff:ffff:ffff:ffff,US 2620:ab::,2620:ab::ffff:ffff:ffff:ffff:ffff,US 2620:ab:4000::,2620:ab:4000:ffff:ffff:ffff:ffff:ffff,US 2620:ab:8000::,2620:ab:8000:ffff:ffff:ffff:ffff:ffff,US 2620:ab:c000::,2620:ab:c000:ffff:ffff:ffff:ffff:ffff,US 2620:ac::,2620:ac::ffff:ffff:ffff:ffff:ffff,US 2620:ac:4000::,2620:ac:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:ac:8000::,2620:ac:8000:ffff:ffff:ffff:ffff:ffff,US 2620:ac:c000::,2620:ac:c000:ffff:ffff:ffff:ffff:ffff,US 2620:ad::,2620:ad::ffff:ffff:ffff:ffff:ffff,US 2620:ad:4000::,2620:ad:4000:ffff:ffff:ffff:ffff:ffff,US 2620:ad:8000::,2620:ad:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:ad:c000::,2620:ad:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:ae::,2620:ae::ffff:ffff:ffff:ffff:ffff,CA 2620:ae:4000::,2620:ae:4000:ffff:ffff:ffff:ffff:ffff,US 2620:ae:8000::,2620:ae:8000:ffff:ffff:ffff:ffff:ffff,US 2620:ae:c000::,2620:ae:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:af::,2620:af::ffff:ffff:ffff:ffff:ffff,US 2620:af:4000::,2620:af:4000:ffff:ffff:ffff:ffff:ffff,US 2620:af:8000::,2620:af:8000:ffff:ffff:ffff:ffff:ffff,US 2620:af:c000::,2620:af:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:b0::,2620:b0::ffff:ffff:ffff:ffff:ffff,CA 2620:b0:4000::,2620:b0:4000:ffff:ffff:ffff:ffff:ffff,US 2620:b0:8000::,2620:b0:8000:ffff:ffff:ffff:ffff:ffff,US 2620:b0:c000::,2620:b0:c000:ffff:ffff:ffff:ffff:ffff,US 2620:b1::,2620:b1::ffff:ffff:ffff:ffff:ffff,US 2620:b1:4000::,2620:b1:4000:ffff:ffff:ffff:ffff:ffff,US 2620:b1:8000::,2620:b1:8000:ffff:ffff:ffff:ffff:ffff,US 2620:b1:c000::,2620:b1:c000:ffff:ffff:ffff:ffff:ffff,US 2620:b2::,2620:b2::ffff:ffff:ffff:ffff:ffff,US 2620:b2:4000::,2620:b2:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:b2:8000::,2620:b2:8000:ffff:ffff:ffff:ffff:ffff,US 2620:b2:c000::,2620:b2:c000:ffff:ffff:ffff:ffff:ffff,US 2620:b3::,2620:b3::ffff:ffff:ffff:ffff:ffff,US 2620:b3:4000::,2620:b3:4000:ffff:ffff:ffff:ffff:ffff,US 2620:b3:8000::,2620:b3:8000:ffff:ffff:ffff:ffff:ffff,US 2620:b3:c000::,2620:b3:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:b4::,2620:b4::ffff:ffff:ffff:ffff:ffff,US 2620:b4:4000::,2620:b4:4000:ffff:ffff:ffff:ffff:ffff,US 2620:b4:8000::,2620:b4:8000:ffff:ffff:ffff:ffff:ffff,CA 2620:b4:c000::,2620:b4:c000:ffff:ffff:ffff:ffff:ffff,US 2620:b5::,2620:b5::ffff:ffff:ffff:ffff:ffff,US 2620:b5:4000::,2620:b5:4000:ffff:ffff:ffff:ffff:ffff,US 2620:b5:8000::,2620:b5:8000:ffff:ffff:ffff:ffff:ffff,US 2620:b5:c000::,2620:b5:c000:ffff:ffff:ffff:ffff:ffff,US 2620:b6:4000::,2620:b6:4000:ffff:ffff:ffff:ffff:ffff,US 2620:b6:8000::,2620:b6:8000:ffff:ffff:ffff:ffff:ffff,US 2620:b6:c000::,2620:b6:c000:ffff:ffff:ffff:ffff:ffff,US 2620:b7::,2620:b7::ffff:ffff:ffff:ffff:ffff,US 2620:b7:4000::,2620:b7:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:b7:8000::,2620:b7:8000:ffff:ffff:ffff:ffff:ffff,CA 2620:b7:c000::,2620:b7:c000:ffff:ffff:ffff:ffff:ffff,US 2620:b8::,2620:b8::ffff:ffff:ffff:ffff:ffff,US 2620:b8:4000::,2620:b8:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:b8:8000::,2620:b8:8000:ffff:ffff:ffff:ffff:ffff,US 2620:b8:c000::,2620:b8:c000:ffff:ffff:ffff:ffff:ffff,US 2620:b9::,2620:b9::ffff:ffff:ffff:ffff:ffff,US 2620:b9:4000::,2620:b9:4000:ffff:ffff:ffff:ffff:ffff,US 2620:b9:8000::,2620:b9:8000:ffff:ffff:ffff:ffff:ffff,US 2620:b9:c000::,2620:b9:c000:ffff:ffff:ffff:ffff:ffff,US 2620:ba::,2620:ba::ffff:ffff:ffff:ffff:ffff,US 2620:ba:4000::,2620:ba:4000:ffff:ffff:ffff:ffff:ffff,US 2620:ba:8000::,2620:ba:8000:ffff:ffff:ffff:ffff:ffff,US 2620:ba:c000::,2620:ba:c000:ffff:ffff:ffff:ffff:ffff,US 2620:bb::,2620:bb::ffff:ffff:ffff:ffff:ffff,US 2620:bb:4000::,2620:bb:4000:ffff:ffff:ffff:ffff:ffff,US 2620:bb:8000::,2620:bb:800f:ffff:ffff:ffff:ffff:ffff,US 2620:bb:c000::,2620:bb:c000:ffff:ffff:ffff:ffff:ffff,US 2620:bc:4000::,2620:bc:4000:ffff:ffff:ffff:ffff:ffff,US 2620:bc:8000::,2620:bc:8000:ffff:ffff:ffff:ffff:ffff,US 2620:bc:c000::,2620:bc:c000:ffff:ffff:ffff:ffff:ffff,US 2620:bd::,2620:bd::ffff:ffff:ffff:ffff:ffff,CA 2620:bd:4000::,2620:bd:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:bd:8000::,2620:bd:8000:ffff:ffff:ffff:ffff:ffff,US 2620:bd:c000::,2620:bd:c000:ffff:ffff:ffff:ffff:ffff,US 2620:be::,2620:be::ffff:ffff:ffff:ffff:ffff,US 2620:be:4000::,2620:be:4000:ffff:ffff:ffff:ffff:ffff,US 2620:be:8000::,2620:be:8000:ffff:ffff:ffff:ffff:ffff,US 2620:be:c000::,2620:be:c000:ffff:ffff:ffff:ffff:ffff,US 2620:bf::,2620:bf::ffff:ffff:ffff:ffff:ffff,US 2620:bf:4000::,2620:bf:4000:ffff:ffff:ffff:ffff:ffff,US 2620:bf:8000::,2620:bf:8000:ffff:ffff:ffff:ffff:ffff,US 2620:bf:c000::,2620:bf:c000:ffff:ffff:ffff:ffff:ffff,US 2620:c0::,2620:c0::ffff:ffff:ffff:ffff:ffff,US 2620:c0:4000::,2620:c0:400f:ffff:ffff:ffff:ffff:ffff,US 2620:c0:8000::,2620:c0:8000:ffff:ffff:ffff:ffff:ffff,US 2620:c0:c000::,2620:c0:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:c1::,2620:c1::ffff:ffff:ffff:ffff:ffff,US 2620:c1:4000::,2620:c1:4000:ffff:ffff:ffff:ffff:ffff,US 2620:c1:8000::,2620:c1:8000:ffff:ffff:ffff:ffff:ffff,US 2620:c1:c000::,2620:c1:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:c2::,2620:c2::ffff:ffff:ffff:ffff:ffff,CA 2620:c2:4000::,2620:c2:4000:ffff:ffff:ffff:ffff:ffff,US 2620:c2:8000::,2620:c2:8000:ffff:ffff:ffff:ffff:ffff,US 2620:c2:c000::,2620:c2:c000:ffff:ffff:ffff:ffff:ffff,US 2620:c3::,2620:c3::ffff:ffff:ffff:ffff:ffff,US 2620:c3:4000::,2620:c3:4000:ffff:ffff:ffff:ffff:ffff,US 2620:c3:8000::,2620:c3:8000:ffff:ffff:ffff:ffff:ffff,US 2620:c3:c000::,2620:c3:c000:ffff:ffff:ffff:ffff:ffff,US 2620:c4::,2620:c4::ffff:ffff:ffff:ffff:ffff,US 2620:c4:4000::,2620:c4:4000:ffff:ffff:ffff:ffff:ffff,US 2620:c4:8000::,2620:c4:8000:ffff:ffff:ffff:ffff:ffff,US 2620:c4:c000::,2620:c4:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:c5::,2620:c5::ffff:ffff:ffff:ffff:ffff,US 2620:c5:4000::,2620:c5:4000:ffff:ffff:ffff:ffff:ffff,US 2620:c5:8000::,2620:c5:8000:ffff:ffff:ffff:ffff:ffff,US 2620:c5:c000::,2620:c5:c000:ffff:ffff:ffff:ffff:ffff,US 2620:c6::,2620:c6::ffff:ffff:ffff:ffff:ffff,US 2620:c6:4000::,2620:c6:4000:ffff:ffff:ffff:ffff:ffff,US 2620:c6:8000::,2620:c6:8000:ffff:ffff:ffff:ffff:ffff,US 2620:c6:c000::,2620:c6:c000:ffff:ffff:ffff:ffff:ffff,US 2620:c7::,2620:c7::ffff:ffff:ffff:ffff:ffff,US 2620:c7:4000::,2620:c7:4000:ffff:ffff:ffff:ffff:ffff,US 2620:c7:8000::,2620:c7:8000:ffff:ffff:ffff:ffff:ffff,US 2620:c7:c000::,2620:c7:c000:ffff:ffff:ffff:ffff:ffff,US 2620:c8::,2620:c8::ffff:ffff:ffff:ffff:ffff,US 2620:c8:4000::,2620:c8:4000:ffff:ffff:ffff:ffff:ffff,US 2620:c8:8000::,2620:c8:8000:ffff:ffff:ffff:ffff:ffff,US 2620:c8:c000::,2620:c8:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:c9::,2620:c9::ffff:ffff:ffff:ffff:ffff,US 2620:c9:4000::,2620:c9:4000:ffff:ffff:ffff:ffff:ffff,US 2620:c9:8000::,2620:c9:8000:ffff:ffff:ffff:ffff:ffff,US 2620:c9:c000::,2620:c9:c000:ffff:ffff:ffff:ffff:ffff,US 2620:ca::,2620:ca::ffff:ffff:ffff:ffff:ffff,US 2620:ca:4000::,2620:ca:4000:ffff:ffff:ffff:ffff:ffff,US 2620:ca:8000::,2620:ca:8000:ffff:ffff:ffff:ffff:ffff,US 2620:ca:c000::,2620:ca:c000:ffff:ffff:ffff:ffff:ffff,US 2620:cb::,2620:cb:f:ffff:ffff:ffff:ffff:ffff,US 2620:cb:4000::,2620:cb:4000:ffff:ffff:ffff:ffff:ffff,US 2620:cb:8000::,2620:cb:8000:ffff:ffff:ffff:ffff:ffff,CA 2620:cb:c000::,2620:cb:c000:ffff:ffff:ffff:ffff:ffff,US 2620:cc::,2620:cc::ffff:ffff:ffff:ffff:ffff,US 2620:cc:4000::,2620:cc:4000:ffff:ffff:ffff:ffff:ffff,US 2620:cc:8000::,2620:cc:8000:ffff:ffff:ffff:ffff:ffff,US 2620:cc:c000::,2620:cc:c000:ffff:ffff:ffff:ffff:ffff,US 2620:cd::,2620:cd::ffff:ffff:ffff:ffff:ffff,US 2620:cd:4000::,2620:cd:4000:ffff:ffff:ffff:ffff:ffff,US 2620:cd:8000::,2620:cd:8000:ffff:ffff:ffff:ffff:ffff,US 2620:cd:c000::,2620:cd:c000:ffff:ffff:ffff:ffff:ffff,US 2620:ce::,2620:ce::ffff:ffff:ffff:ffff:ffff,US 2620:ce:4000::,2620:ce:4000:ffff:ffff:ffff:ffff:ffff,US 2620:ce:8000::,2620:ce:8000:ffff:ffff:ffff:ffff:ffff,US 2620:ce:c000::,2620:ce:c000:ffff:ffff:ffff:ffff:ffff,US 2620:cf:4000::,2620:cf:4000:ffff:ffff:ffff:ffff:ffff,US 2620:cf:8000::,2620:cf:8000:ffff:ffff:ffff:ffff:ffff,US 2620:cf:c000::,2620:cf:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:d0::,2620:d0::ffff:ffff:ffff:ffff:ffff,US 2620:d0:4000::,2620:d0:4000:ffff:ffff:ffff:ffff:ffff,US 2620:d0:8000::,2620:d0:8000:ffff:ffff:ffff:ffff:ffff,US 2620:d0:c000::,2620:d0:c000:ffff:ffff:ffff:ffff:ffff,US 2620:d1::,2620:d1::ffff:ffff:ffff:ffff:ffff,US 2620:d1:4000::,2620:d1:4000:ffff:ffff:ffff:ffff:ffff,US 2620:d1:8000::,2620:d1:8000:ffff:ffff:ffff:ffff:ffff,US 2620:d1:c000::,2620:d1:c000:ffff:ffff:ffff:ffff:ffff,US 2620:d2::,2620:d2::ffff:ffff:ffff:ffff:ffff,US 2620:d2:4000::,2620:d2:4000:ffff:ffff:ffff:ffff:ffff,US 2620:d2:8000::,2620:d2:8000:ffff:ffff:ffff:ffff:ffff,US 2620:d2:c000::,2620:d2:c000:ffff:ffff:ffff:ffff:ffff,CA 2620:d3::,2620:d3::ffff:ffff:ffff:ffff:ffff,US 2620:d3:4000::,2620:d3:4000:ffff:ffff:ffff:ffff:ffff,US 2620:d3:8000::,2620:d3:8000:ffff:ffff:ffff:ffff:ffff,US 2620:d3:c000::,2620:d3:c000:ffff:ffff:ffff:ffff:ffff,US 2620:d4::,2620:d4::ffff:ffff:ffff:ffff:ffff,US 2620:d4:4000::,2620:d4:4000:ffff:ffff:ffff:ffff:ffff,US 2620:d4:8000::,2620:d4:8000:ffff:ffff:ffff:ffff:ffff,US 2620:d4:c000::,2620:d4:c000:ffff:ffff:ffff:ffff:ffff,US 2620:d5::,2620:d5::ffff:ffff:ffff:ffff:ffff,US 2620:d5:4000::,2620:d5:4000:ffff:ffff:ffff:ffff:ffff,US 2620:d5:8000::,2620:d5:8000:ffff:ffff:ffff:ffff:ffff,US 2620:d5:c000::,2620:d5:c000:ffff:ffff:ffff:ffff:ffff,US 2620:d6::,2620:d6::ffff:ffff:ffff:ffff:ffff,US 2620:d6:4000::,2620:d6:4000:ffff:ffff:ffff:ffff:ffff,US 2620:d6:8000::,2620:d6:8000:ffff:ffff:ffff:ffff:ffff,US 2620:d6:c000::,2620:d6:c000:ffff:ffff:ffff:ffff:ffff,US 2620:d7::,2620:d7::ffff:ffff:ffff:ffff:ffff,US 2620:d7:4000::,2620:d7:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:d7:8000::,2620:d7:8000:ffff:ffff:ffff:ffff:ffff,US 2620:d7:c000::,2620:d7:c000:ffff:ffff:ffff:ffff:ffff,US 2620:d8::,2620:d8::ffff:ffff:ffff:ffff:ffff,US 2620:d8:4000::,2620:d8:4000:ffff:ffff:ffff:ffff:ffff,US 2620:d8:8000::,2620:d8:8000:ffff:ffff:ffff:ffff:ffff,US 2620:d8:c000::,2620:d8:c000:ffff:ffff:ffff:ffff:ffff,US 2620:d9::,2620:d9::ffff:ffff:ffff:ffff:ffff,US 2620:d9:4000::,2620:d9:4000:ffff:ffff:ffff:ffff:ffff,US 2620:d9:8000::,2620:d9:8000:ffff:ffff:ffff:ffff:ffff,US 2620:d9:c000::,2620:d9:c000:ffff:ffff:ffff:ffff:ffff,US 2620:da::,2620:da::ffff:ffff:ffff:ffff:ffff,US 2620:da:4000::,2620:da:4000:ffff:ffff:ffff:ffff:ffff,US 2620:da:c000::,2620:da:c000:ffff:ffff:ffff:ffff:ffff,US 2620:db::,2620:db::ffff:ffff:ffff:ffff:ffff,US 2620:db:4000::,2620:db:4000:ffff:ffff:ffff:ffff:ffff,CA 2620:db:8000::,2620:db:8000:ffff:ffff:ffff:ffff:ffff,US 2620:db:c000::,2620:db:c000:ffff:ffff:ffff:ffff:ffff,US 2620:dc::,2620:dc::ffff:ffff:ffff:ffff:ffff,US 2620:dc:8::,2620:dc:8:ffff:ffff:ffff:ffff:ffff,US 2620:dc:4000::,2620:dc:4000:ffff:ffff:ffff:ffff:ffff,US 2620:dc:8000::,2620:dc:8000:ffff:ffff:ffff:ffff:ffff,CA 2620:dc:c000::,2620:dc:c000:ffff:ffff:ffff:ffff:ffff,US 2620:dd::,2620:dd::ffff:ffff:ffff:ffff:ffff,CA 2620:dd:4000::,2620:dd:4000:ffff:ffff:ffff:ffff:ffff,US 2620:dd:8000::,2620:dd:8000:ffff:ffff:ffff:ffff:ffff,US 2620:dd:c000::,2620:dd:c000:ffff:ffff:ffff:ffff:ffff,US 2620:de::,2620:de::ffff:ffff:ffff:ffff:ffff,US 2620:de:4000::,2620:de:4000:ffff:ffff:ffff:ffff:ffff,US 2620:de:8000::,2620:de:8000:ffff:ffff:ffff:ffff:ffff,US 2620:de:c000::,2620:de:c000:ffff:ffff:ffff:ffff:ffff,US 2620:df::,2620:df::ffff:ffff:ffff:ffff:ffff,US 2620:df:4000::,2620:df:400f:ffff:ffff:ffff:ffff:ffff,US 2620:df:8000::,2620:df:8000:ffff:ffff:ffff:ffff:ffff,US 2620:df:c000::,2620:df:c000:ffff:ffff:ffff:ffff:ffff,US 2620:e0::,2620:e0::ffff:ffff:ffff:ffff:ffff,US 2620:e0:4000::,2620:e0:4000:ffff:ffff:ffff:ffff:ffff,US 2620:e0:8000::,2620:e0:8000:ffff:ffff:ffff:ffff:ffff,US 2620:e0:c000::,2620:e0:c000:ffff:ffff:ffff:ffff:ffff,US 2620:e1::,2620:e1::ffff:ffff:ffff:ffff:ffff,US 2620:e1:4000::,2620:e1:4000:ffff:ffff:ffff:ffff:ffff,US 2620:e1:8000::,2620:e1:8000:ffff:ffff:ffff:ffff:ffff,US 2620:e1:c000::,2620:e1:c000:ffff:ffff:ffff:ffff:ffff,VG 2620:e2::,2620:e2::ffff:ffff:ffff:ffff:ffff,US 2620:e2:4000::,2620:e2:4000:ffff:ffff:ffff:ffff:ffff,US 2620:e2:8000::,2620:e2:8000:ffff:ffff:ffff:ffff:ffff,US 2620:e2:c000::,2620:e2:c000:ffff:ffff:ffff:ffff:ffff,US 2620:e3::,2620:e3::ffff:ffff:ffff:ffff:ffff,US 2620:e3:4000::,2620:e3:4000:ffff:ffff:ffff:ffff:ffff,US 2620:e3:8000::,2620:e3:8000:ffff:ffff:ffff:ffff:ffff,US 2620:e3:c000::,2620:e3:c000:ffff:ffff:ffff:ffff:ffff,US 2620:e4::,2620:e4::ffff:ffff:ffff:ffff:ffff,US 2620:e4:4000::,2620:e4:4000:ffff:ffff:ffff:ffff:ffff,US 2620:e4:8000::,2620:e4:8000:ffff:ffff:ffff:ffff:ffff,US 2620:e4:c000::,2620:e4:c000:ffff:ffff:ffff:ffff:ffff,US 2620:e5::,2620:e5::ffff:ffff:ffff:ffff:ffff,US 2620:e5:4000::,2620:e5:4000:ffff:ffff:ffff:ffff:ffff,US 2620:e5:8000::,2620:e5:8000:ffff:ffff:ffff:ffff:ffff,US 2620:e5:c000::,2620:e5:c000:ffff:ffff:ffff:ffff:ffff,US 2620:e6::,2620:e6::ffff:ffff:ffff:ffff:ffff,US 2620:e6:4000::,2620:e6:4000:ffff:ffff:ffff:ffff:ffff,US 2620:e6:8000::,2620:e6:8000:ffff:ffff:ffff:ffff:ffff,US 2620:e6:c000::,2620:e6:c000:ffff:ffff:ffff:ffff:ffff,US 2620:e7::,2620:e7::ffff:ffff:ffff:ffff:ffff,US 2620:e7:4000::,2620:e7:4000:ffff:ffff:ffff:ffff:ffff,US 2620:e7:8000::,2620:e7:8000:ffff:ffff:ffff:ffff:ffff,CA 2620:e7:c000::,2620:e7:c000:ffff:ffff:ffff:ffff:ffff,US 2620:e8::,2620:e8::ffff:ffff:ffff:ffff:ffff,US 2620:e8:4000::,2620:e8:4000:ffff:ffff:ffff:ffff:ffff,US 2620:e8:8000::,2620:e8:8000:ffff:ffff:ffff:ffff:ffff,US 2620:e9::,2620:e9::ffff:ffff:ffff:ffff:ffff,US 2620:e9:8000::,2620:e9:8000:ffff:ffff:ffff:ffff:ffff,US 2620:ea::,2620:ea:f:ffff:ffff:ffff:ffff:ffff,US 2620:ea:8000::,2620:ea:8000:ffff:ffff:ffff:ffff:ffff,US 2620:eb::,2620:eb::ffff:ffff:ffff:ffff:ffff,US 2620:eb:8000::,2620:eb:8000:ffff:ffff:ffff:ffff:ffff,US 2620:ec::,2620:ec::ffff:ffff:ffff:ffff:ffff,US 2620:ec:8000::,2620:ec:8000:ffff:ffff:ffff:ffff:ffff,US 2620:ed::,2620:ed::ffff:ffff:ffff:ffff:ffff,US 2620:ed:8000::,2620:ed:8000:ffff:ffff:ffff:ffff:ffff,US 2620:ee::,2620:ee::ffff:ffff:ffff:ffff:ffff,US 2620:ee:8000::,2620:ee:8000:ffff:ffff:ffff:ffff:ffff,US 2620:ef::,2620:ef::ffff:ffff:ffff:ffff:ffff,US 2620:ef:8000::,2620:ef:8000:ffff:ffff:ffff:ffff:ffff,US 2620:f0::,2620:f0::ffff:ffff:ffff:ffff:ffff,US 2620:f0:8000::,2620:f0:8000:ffff:ffff:ffff:ffff:ffff,US 2620:f1::,2620:f1::ffff:ffff:ffff:ffff:ffff,US 2620:f1:8000::,2620:f1:8000:ffff:ffff:ffff:ffff:ffff,US 2620:f2::,2620:f2::ffff:ffff:ffff:ffff:ffff,CA 2620:f2:8000::,2620:f2:8000:ffff:ffff:ffff:ffff:ffff,US 2620:f3::,2620:f3::ffff:ffff:ffff:ffff:ffff,US 2620:f3:8000::,2620:f3:8000:ffff:ffff:ffff:ffff:ffff,US 2620:f4::,2620:f4::ffff:ffff:ffff:ffff:ffff,US 2620:f4:8000::,2620:f4:8000:ffff:ffff:ffff:ffff:ffff,CA 2620:f5::,2620:f5::ffff:ffff:ffff:ffff:ffff,US 2620:f5:8000::,2620:f5:8000:ffff:ffff:ffff:ffff:ffff,US 2620:f6:8000::,2620:f6:8000:ffff:ffff:ffff:ffff:ffff,US 2620:f7::,2620:f7::ffff:ffff:ffff:ffff:ffff,US 2620:f7:8000::,2620:f7:8000:ffff:ffff:ffff:ffff:ffff,US 2620:f8::,2620:f8::ffff:ffff:ffff:ffff:ffff,US 2620:f8:8000::,2620:f8:8000:ffff:ffff:ffff:ffff:ffff,US 2620:f9::,2620:f9:f:ffff:ffff:ffff:ffff:ffff,US 2620:f9:8000::,2620:f9:8000:ffff:ffff:ffff:ffff:ffff,US 2620:fa::,2620:fa::ffff:ffff:ffff:ffff:ffff,US 2620:fa:8000::,2620:fa:8000:ffff:ffff:ffff:ffff:ffff,CA 2620:fb::,2620:fb::ffff:ffff:ffff:ffff:ffff,US 2620:fb:8000::,2620:fb:8000:ffff:ffff:ffff:ffff:ffff,US 2620:fc::,2620:fc::ffff:ffff:ffff:ffff:ffff,CA 2620:fc:8000::,2620:fc:8000:ffff:ffff:ffff:ffff:ffff,US 2620:fd::,2620:fd::ffff:ffff:ffff:ffff:ffff,CA 2620:fd:8000::,2620:fd:8000:ffff:ffff:ffff:ffff:ffff,US 2620:fe:8000::,2620:fe:8000:ffff:ffff:ffff:ffff:ffff,US 2620:ff::,2620:ff::ffff:ffff:ffff:ffff:ffff,US 2620:ff:8000::,2620:ff:8000:ffff:ffff:ffff:ffff:ffff,US 2620:100::,2620:100:f:ffff:ffff:ffff:ffff:ffff,US 2620:100:3000::,2620:100:3007:ffff:ffff:ffff:ffff:ffff,US 2620:100:4000::,2620:100:403f:ffff:ffff:ffff:ffff:ffff,US 2620:100:5000::,2620:100:5007:ffff:ffff:ffff:ffff:ffff,US 2620:100:6000::,2620:100:60ff:ffff:ffff:ffff:ffff:ffff,US 2620:100:7000::,2620:100:700f:ffff:ffff:ffff:ffff:ffff,US 2620:100:8000::,2620:100:8003:ffff:ffff:ffff:ffff:ffff,US 2620:100:9000::,2620:100:900f:ffff:ffff:ffff:ffff:ffff,US 2620:100:a000::,2620:100:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:100:c000::,2620:100:c03f:ffff:ffff:ffff:ffff:ffff,US 2620:100:d000::,2620:100:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:100:e000::,2620:100:e00f:ffff:ffff:ffff:ffff:ffff,US 2620:100:f000::,2620:100:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:101::,2620:101:3:ffff:ffff:ffff:ffff:ffff,US 2620:101:1000::,2620:101:103f:ffff:ffff:ffff:ffff:ffff,US 2620:101:2000::,2620:101:201f:ffff:ffff:ffff:ffff:ffff,US 2620:101:3000::,2620:101:303f:ffff:ffff:ffff:ffff:ffff,US 2620:101:4000::,2620:101:403f:ffff:ffff:ffff:ffff:ffff,US 2620:101:5000::,2620:101:503f:ffff:ffff:ffff:ffff:ffff,US 2620:101:6000::,2620:101:6001:ffff:ffff:ffff:ffff:ffff,US 2620:101:7000::,2620:101:7001:ffff:ffff:ffff:ffff:ffff,US 2620:101:8000::,2620:101:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:101:9000::,2620:101:9004:ffff:ffff:ffff:ffff:ffff,US 2620:101:9005::,2620:101:9005:7fff:ffff:ffff:ffff:ffff,CA 2620:101:9005:8000::,2620:101:900f:ffff:ffff:ffff:ffff:ffff,US 2620:101:b000::,2620:101:b07f:ffff:ffff:ffff:ffff:ffff,US 2620:101:c000::,2620:101:c0ff:ffff:ffff:ffff:ffff:ffff,CA 2620:101:d000::,2620:101:d007:ffff:ffff:ffff:ffff:ffff,US 2620:101:e000::,2620:101:e00f:ffff:ffff:ffff:ffff:ffff,US 2620:101:f000::,2620:101:f001:ffff:ffff:ffff:ffff:ffff,CA 2620:102::,2620:102:f:ffff:ffff:ffff:ffff:ffff,US 2620:102:2000::,2620:102:200f:ffff:ffff:ffff:ffff:ffff,US 2620:102:3000::,2620:102:300f:ffff:ffff:ffff:ffff:ffff,US 2620:102:4000::,2620:102:403f:ffff:ffff:ffff:ffff:ffff,US 2620:102:5000::,2620:102:501f:ffff:ffff:ffff:ffff:ffff,US 2620:102:6000::,2620:102:6003:ffff:ffff:ffff:ffff:ffff,US 2620:102:7000::,2620:102:700f:ffff:ffff:ffff:ffff:ffff,US 2620:102:8000::,2620:102:800f:ffff:ffff:ffff:ffff:ffff,US 2620:102:9000::,2620:102:90ff:ffff:ffff:ffff:ffff:ffff,US 2620:102:b000::,2620:102:b001:ffff:ffff:ffff:ffff:ffff,US 2620:102:c000::,2620:102:c007:ffff:ffff:ffff:ffff:ffff,US 2620:102:d000::,2620:102:d07f:ffff:ffff:ffff:ffff:ffff,US 2620:102:e000::,2620:102:e00f:ffff:ffff:ffff:ffff:ffff,US 2620:102:f000::,2620:102:f003:ffff:ffff:ffff:ffff:ffff,US 2620:103::,2620:103:7:ffff:ffff:ffff:ffff:ffff,US 2620:103:1000::,2620:103:100f:ffff:ffff:ffff:ffff:ffff,US 2620:103:2000::,2620:103:200f:ffff:ffff:ffff:ffff:ffff,CA 2620:103:3000::,2620:103:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:103:4000::,2620:103:400f:ffff:ffff:ffff:ffff:ffff,US 2620:103:5000::,2620:103:500f:ffff:ffff:ffff:ffff:ffff,US 2620:103:6000::,2620:103:600f:ffff:ffff:ffff:ffff:ffff,US 2620:103:7000::,2620:103:700f:ffff:ffff:ffff:ffff:ffff,US 2620:103:8000::,2620:103:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:103:9000::,2620:103:90ff:ffff:ffff:ffff:ffff:ffff,US 2620:103:a000::,2620:103:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:103:b000::,2620:103:b00f:ffff:ffff:ffff:ffff:ffff,US 2620:103:c000::,2620:103:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:103:d000::,2620:103:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:103:e000::,2620:103:e0ff:ffff:ffff:ffff:ffff:ffff,US 2620:104::,2620:104:ff:ffff:ffff:ffff:ffff:ffff,US 2620:104:1000::,2620:104:100f:ffff:ffff:ffff:ffff:ffff,US 2620:104:2000::,2620:104:20ff:ffff:ffff:ffff:ffff:ffff,US 2620:104:3000::,2620:104:300f:ffff:ffff:ffff:ffff:ffff,US 2620:104:4000::,2620:104:4001:ffff:ffff:ffff:ffff:ffff,GB 2620:104:4002::,2620:104:4003:ffff:ffff:ffff:ffff:ffff,US 2620:104:4004::,2620:104:4007:ffff:ffff:ffff:ffff:ffff,GB 2620:104:4008::,2620:104:400f:ffff:ffff:ffff:ffff:ffff,US 2620:104:5000::,2620:104:500f:ffff:ffff:ffff:ffff:ffff,US 2620:104:6000::,2620:104:600f:ffff:ffff:ffff:ffff:ffff,US 2620:104:7000::,2620:104:70ff:ffff:ffff:ffff:ffff:ffff,US 2620:104:8000::,2620:104:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:104:9000::,2620:104:900f:ffff:ffff:ffff:ffff:ffff,US 2620:104:a000::,2620:104:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:104:b000::,2620:104:b01f:ffff:ffff:ffff:ffff:ffff,US 2620:104:c000::,2620:104:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:104:d000::,2620:104:d0ff:ffff:ffff:ffff:ffff:ffff,US 2620:104:e000::,2620:104:e0ff:ffff:ffff:ffff:ffff:ffff,US 2620:104:f000::,2620:104:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:105::,2620:105:f:ffff:ffff:ffff:ffff:ffff,CA 2620:105:1000::,2620:105:100f:ffff:ffff:ffff:ffff:ffff,US 2620:105:2000::,2620:105:20ff:ffff:ffff:ffff:ffff:ffff,US 2620:105:3000::,2620:105:300f:ffff:ffff:ffff:ffff:ffff,US 2620:105:4000::,2620:105:400f:ffff:ffff:ffff:ffff:ffff,US 2620:105:5000::,2620:105:500f:ffff:ffff:ffff:ffff:ffff,US 2620:105:6000::,2620:105:600f:ffff:ffff:ffff:ffff:ffff,US 2620:105:7000::,2620:105:700f:ffff:ffff:ffff:ffff:ffff,US 2620:105:8000::,2620:105:800f:ffff:ffff:ffff:ffff:ffff,US 2620:105:9000::,2620:105:90ff:ffff:ffff:ffff:ffff:ffff,US 2620:105:a000::,2620:105:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:105:b000::,2620:105:b0ff:ffff:ffff:ffff:ffff:ffff,US 2620:105:c000::,2620:105:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:105:d000::,2620:105:d0ff:ffff:ffff:ffff:ffff:ffff,US 2620:105:e000::,2620:105:e0ff:ffff:ffff:ffff:ffff:ffff,US 2620:105:f000::,2620:105:f0ff:ffff:ffff:ffff:ffff:ffff,US 2620:106::,2620:106:f:ffff:ffff:ffff:ffff:ffff,US 2620:106:1000::,2620:106:10ff:ffff:ffff:ffff:ffff:ffff,US 2620:106:2000::,2620:106:20ff:ffff:ffff:ffff:ffff:ffff,US 2620:106:3000::,2620:106:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:106:4000::,2620:106:400f:ffff:ffff:ffff:ffff:ffff,US 2620:106:5000::,2620:106:50ff:ffff:ffff:ffff:ffff:ffff,US 2620:106:6000::,2620:106:600f:ffff:ffff:ffff:ffff:ffff,US 2620:106:7000::,2620:106:70ff:ffff:ffff:ffff:ffff:ffff,US 2620:106:8000::,2620:106:800f:ffff:ffff:ffff:ffff:ffff,US 2620:106:9000::,2620:106:900f:ffff:ffff:ffff:ffff:ffff,US 2620:106:a000::,2620:106:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:106:b000::,2620:106:b00f:ffff:ffff:ffff:ffff:ffff,US 2620:106:c000::,2620:106:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:106:d000::,2620:106:d0ff:ffff:ffff:ffff:ffff:ffff,US 2620:106:e000::,2620:106:e00f:ffff:ffff:ffff:ffff:ffff,US 2620:106:f000::,2620:106:f00f:ffff:ffff:ffff:ffff:ffff,CA 2620:107::,2620:107:ff:ffff:ffff:ffff:ffff:ffff,US 2620:107:1000::,2620:107:100f:ffff:ffff:ffff:ffff:ffff,US 2620:107:2000::,2620:107:200f:ffff:ffff:ffff:ffff:ffff,US 2620:107:3000::,2620:107:300f:ffff:ffff:ffff:ffff:ffff,US 2620:107:4000::,2620:107:400f:ffff:ffff:ffff:ffff:ffff,US 2620:107:5000::,2620:107:500f:ffff:ffff:ffff:ffff:ffff,US 2620:107:6000::,2620:107:600f:ffff:ffff:ffff:ffff:ffff,US 2620:107:7000::,2620:107:700f:ffff:ffff:ffff:ffff:ffff,US 2620:107:8000::,2620:107:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:107:9000::,2620:107:90ff:ffff:ffff:ffff:ffff:ffff,US 2620:107:a000::,2620:107:a0ff:ffff:ffff:ffff:ffff:ffff,US 2620:107:c000::,2620:107:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:107:d000::,2620:107:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:107:e000::,2620:107:e0ff:ffff:ffff:ffff:ffff:ffff,US 2620:107:f000::,2620:107:f0ff:ffff:ffff:ffff:ffff:ffff,US 2620:108::,2620:108:ff:ffff:ffff:ffff:ffff:ffff,US 2620:108:1000::,2620:108:10ff:ffff:ffff:ffff:ffff:ffff,US 2620:108:2000::,2620:108:200f:ffff:ffff:ffff:ffff:ffff,US 2620:108:3000::,2620:108:300f:ffff:ffff:ffff:ffff:ffff,US 2620:108:4000::,2620:108:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:108:5000::,2620:108:500f:ffff:ffff:ffff:ffff:ffff,US 2620:108:6000::,2620:108:60ff:ffff:ffff:ffff:ffff:ffff,US 2620:108:7000::,2620:108:700f:ffff:ffff:ffff:ffff:ffff,US 2620:108:8000::,2620:108:800f:ffff:ffff:ffff:ffff:ffff,US 2620:108:9000::,2620:108:900f:ffff:ffff:ffff:ffff:ffff,US 2620:108:a000::,2620:108:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:108:b000::,2620:108:b00f:ffff:ffff:ffff:ffff:ffff,US 2620:108:c000::,2620:108:c0ff:ffff:ffff:ffff:ffff:ffff,US 2620:108:d000::,2620:108:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:108:e000::,2620:108:e00f:ffff:ffff:ffff:ffff:ffff,US 2620:108:f000::,2620:108:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:109::,2620:109:ff:ffff:ffff:ffff:ffff:ffff,US 2620:109:1000::,2620:109:10ff:ffff:ffff:ffff:ffff:ffff,US 2620:109:2000::,2620:109:200f:ffff:ffff:ffff:ffff:ffff,US 2620:109:3000::,2620:109:300f:ffff:ffff:ffff:ffff:ffff,US 2620:109:4000::,2620:109:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:109:5000::,2620:109:500f:ffff:ffff:ffff:ffff:ffff,US 2620:109:6000::,2620:109:600f:ffff:ffff:ffff:ffff:ffff,US 2620:109:7000::,2620:109:70ff:ffff:ffff:ffff:ffff:ffff,US 2620:109:8000::,2620:109:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:109:9000::,2620:109:90ff:ffff:ffff:ffff:ffff:ffff,US 2620:109:a000::,2620:109:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:109:b000::,2620:109:b00f:ffff:ffff:ffff:ffff:ffff,US 2620:109:c000::,2620:109:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:109:d000::,2620:109:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:109:e000::,2620:109:e0ff:ffff:ffff:ffff:ffff:ffff,US 2620:109:f000::,2620:109:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:10a::,2620:10a:f:ffff:ffff:ffff:ffff:ffff,US 2620:10a:1000::,2620:10a:100f:ffff:ffff:ffff:ffff:ffff,US 2620:10a:2000::,2620:10a:200f:ffff:ffff:ffff:ffff:ffff,US 2620:10a:3000::,2620:10a:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:10a:4000::,2620:10a:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:10a:5000::,2620:10a:50ff:ffff:ffff:ffff:ffff:ffff,US 2620:10a:6000::,2620:10a:600f:ffff:ffff:ffff:ffff:ffff,US 2620:10a:8000::,2620:10a:80ff:ffff:ffff:ffff:ffff:ffff,CA 2620:10a:9000::,2620:10a:90ff:ffff:ffff:ffff:ffff:ffff,US 2620:10a:a000::,2620:10a:a0ff:ffff:ffff:ffff:ffff:ffff,US 2620:10a:b000::,2620:10a:b0ff:ffff:ffff:ffff:ffff:ffff,US 2620:10a:c000::,2620:10a:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:10a:d000::,2620:10a:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:10a:e000::,2620:10a:e0ff:ffff:ffff:ffff:ffff:ffff,US 2620:10a:f000::,2620:10a:f0ff:ffff:ffff:ffff:ffff:ffff,US 2620:10b::,2620:10b:f:ffff:ffff:ffff:ffff:ffff,US 2620:10b:1000::,2620:10b:10ff:ffff:ffff:ffff:ffff:ffff,US 2620:10b:2000::,2620:10b:200f:ffff:ffff:ffff:ffff:ffff,US 2620:10b:3000::,2620:10b:30ff:ffff:ffff:ffff:ffff:ffff,CA 2620:10b:4000::,2620:10b:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:10b:5000::,2620:10b:500f:ffff:ffff:ffff:ffff:ffff,US 2620:10b:6000::,2620:10b:60ff:ffff:ffff:ffff:ffff:ffff,US 2620:10b:7000::,2620:10b:700f:ffff:ffff:ffff:ffff:ffff,US 2620:10b:8000::,2620:10b:800f:ffff:ffff:ffff:ffff:ffff,US 2620:10b:9000::,2620:10b:900f:ffff:ffff:ffff:ffff:ffff,US 2620:10b:a000::,2620:10b:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:10b:b000::,2620:10b:b00f:ffff:ffff:ffff:ffff:ffff,CA 2620:10b:c000::,2620:10b:c0ff:ffff:ffff:ffff:ffff:ffff,US 2620:10b:d000::,2620:10b:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:10b:e000::,2620:10b:e0ff:ffff:ffff:ffff:ffff:ffff,US 2620:10b:f000::,2620:10b:f0ff:ffff:ffff:ffff:ffff:ffff,US 2620:10c::,2620:10c:f:ffff:ffff:ffff:ffff:ffff,US 2620:10c:1000::,2620:10c:10ff:ffff:ffff:ffff:ffff:ffff,US 2620:10c:2000::,2620:10c:200f:ffff:ffff:ffff:ffff:ffff,US 2620:10c:3000::,2620:10c:300f:ffff:ffff:ffff:ffff:ffff,US 2620:10c:4000::,2620:10c:400f:ffff:ffff:ffff:ffff:ffff,US 2620:10c:5000::,2620:10c:500f:ffff:ffff:ffff:ffff:ffff,US 2620:10c:6000::,2620:10c:600f:ffff:ffff:ffff:ffff:ffff,US 2620:10c:7000::,2620:10c:700f:ffff:ffff:ffff:ffff:ffff,US 2620:10c:9000::,2620:10c:90ff:ffff:ffff:ffff:ffff:ffff,US 2620:10c:a000::,2620:10c:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:10c:b000::,2620:10c:b0ff:ffff:ffff:ffff:ffff:ffff,US 2620:10c:c000::,2620:10c:c0ff:ffff:ffff:ffff:ffff:ffff,US 2620:10c:d000::,2620:10c:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:10c:e000::,2620:10c:e0ff:ffff:ffff:ffff:ffff:ffff,US 2620:10c:f000::,2620:10c:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:10d::,2620:10d:f:ffff:ffff:ffff:ffff:ffff,US 2620:10d:1000::,2620:10d:100f:ffff:ffff:ffff:ffff:ffff,US 2620:10d:2000::,2620:10d:20ff:ffff:ffff:ffff:ffff:ffff,US 2620:10d:3000::,2620:10d:300f:ffff:ffff:ffff:ffff:ffff,US 2620:10d:4000::,2620:10d:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:10d:5000::,2620:10d:50ff:ffff:ffff:ffff:ffff:ffff,US 2620:10d:6000::,2620:10d:600f:ffff:ffff:ffff:ffff:ffff,US 2620:10d:7000::,2620:10d:70ff:ffff:ffff:ffff:ffff:ffff,US 2620:10d:8000::,2620:10d:800f:ffff:ffff:ffff:ffff:ffff,US 2620:10d:9000::,2620:10d:900f:ffff:ffff:ffff:ffff:ffff,US 2620:10d:a000::,2620:10d:a0ff:ffff:ffff:ffff:ffff:ffff,US 2620:10d:b000::,2620:10d:b00f:ffff:ffff:ffff:ffff:ffff,US 2620:10d:c000::,2620:10d:c091:ffff:ffff:ffff:ffff:ffff,US 2620:10d:c092::,2620:10d:c092:7fff:ffff:ffff:ffff:ffff,GB 2620:10d:c092:8000::,2620:10d:c0f0:ffff:ffff:ffff:ffff:ffff,US 2620:10d:c0f1::,2620:10d:c0f1:7fff:ffff:ffff:ffff:ffff,KR 2620:10d:c0f1:8000::,2620:10d:c0ff:ffff:ffff:ffff:ffff:ffff,US 2620:10d:d000::,2620:10d:d00f:ffff:ffff:ffff:ffff:ffff,CA 2620:10d:e000::,2620:10d:e00f:ffff:ffff:ffff:ffff:ffff,CA 2620:10d:f000::,2620:10d:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:10e::,2620:10e:f:ffff:ffff:ffff:ffff:ffff,US 2620:10e:1000::,2620:10e:100f:ffff:ffff:ffff:ffff:ffff,US 2620:10e:2000::,2620:10e:200f:ffff:ffff:ffff:ffff:ffff,US 2620:10e:3000::,2620:10e:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:10e:4000::,2620:10e:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:10e:5000::,2620:10e:500f:ffff:ffff:ffff:ffff:ffff,US 2620:10e:6000::,2620:10e:60ff:ffff:ffff:ffff:ffff:ffff,US 2620:10e:7000::,2620:10e:70ff:ffff:ffff:ffff:ffff:ffff,US 2620:10e:8000::,2620:10e:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:10e:9000::,2620:10e:900f:ffff:ffff:ffff:ffff:ffff,US 2620:10e:a000::,2620:10e:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:10e:b000::,2620:10e:b0ff:ffff:ffff:ffff:ffff:ffff,US 2620:10e:c000::,2620:10e:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:10e:d000::,2620:10e:d00f:ffff:ffff:ffff:ffff:ffff,BL 2620:10e:e000::,2620:10e:e00f:ffff:ffff:ffff:ffff:ffff,US 2620:10e:f000::,2620:10e:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:10f::,2620:10f:f:ffff:ffff:ffff:ffff:ffff,US 2620:10f:1000::,2620:10f:100f:ffff:ffff:ffff:ffff:ffff,US 2620:10f:2000::,2620:10f:200f:ffff:ffff:ffff:ffff:ffff,US 2620:10f:3000::,2620:10f:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:10f:4000::,2620:10f:400f:ffff:ffff:ffff:ffff:ffff,US 2620:10f:5000::,2620:10f:50ff:ffff:ffff:ffff:ffff:ffff,US 2620:10f:6000::,2620:10f:60ff:ffff:ffff:ffff:ffff:ffff,US 2620:10f:7000::,2620:10f:700f:ffff:ffff:ffff:ffff:ffff,US 2620:10f:8000::,2620:10f:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:10f:9000::,2620:10f:900f:ffff:ffff:ffff:ffff:ffff,US 2620:10f:a000::,2620:10f:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:10f:b000::,2620:10f:b0ff:ffff:ffff:ffff:ffff:ffff,US 2620:10f:c000::,2620:10f:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:10f:d000::,2620:10f:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:10f:e000::,2620:10f:e0ff:ffff:ffff:ffff:ffff:ffff,US 2620:10f:f000::,2620:10f:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:110::,2620:110:f:ffff:ffff:ffff:ffff:ffff,US 2620:110:1000::,2620:110:100f:ffff:ffff:ffff:ffff:ffff,US 2620:110:2000::,2620:110:20ff:ffff:ffff:ffff:ffff:ffff,US 2620:110:3000::,2620:110:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:110:4000::,2620:110:400f:ffff:ffff:ffff:ffff:ffff,US 2620:110:5000::,2620:110:500f:ffff:ffff:ffff:ffff:ffff,US 2620:110:6000::,2620:110:600f:ffff:ffff:ffff:ffff:ffff,US 2620:110:7000::,2620:110:700f:ffff:ffff:ffff:ffff:ffff,US 2620:110:8000::,2620:110:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:110:9000::,2620:110:900f:ffff:ffff:ffff:ffff:ffff,US 2620:110:a000::,2620:110:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:110:b000::,2620:110:b00f:ffff:ffff:ffff:ffff:ffff,US 2620:110:d000::,2620:110:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:110:e000::,2620:110:e00f:ffff:ffff:ffff:ffff:ffff,US 2620:110:f000::,2620:110:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:111::,2620:111:ff:ffff:ffff:ffff:ffff:ffff,US 2620:111:1000::,2620:111:100f:ffff:ffff:ffff:ffff:ffff,US 2620:111:2000::,2620:111:200f:ffff:ffff:ffff:ffff:ffff,US 2620:111:3000::,2620:111:300f:ffff:ffff:ffff:ffff:ffff,US 2620:111:4000::,2620:111:400f:ffff:ffff:ffff:ffff:ffff,US 2620:111:5000::,2620:111:500f:ffff:ffff:ffff:ffff:ffff,US 2620:111:6000::,2620:111:600f:ffff:ffff:ffff:ffff:ffff,US 2620:111:7000::,2620:111:700f:ffff:ffff:ffff:ffff:ffff,US 2620:111:8000::,2620:111:800f:ffff:ffff:ffff:ffff:ffff,US 2620:111:9000::,2620:111:900f:ffff:ffff:ffff:ffff:ffff,US 2620:111:a000::,2620:111:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:111:b000::,2620:111:b00f:ffff:ffff:ffff:ffff:ffff,US 2620:111:c000::,2620:111:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:111:d000::,2620:111:d0ff:ffff:ffff:ffff:ffff:ffff,US 2620:111:e000::,2620:111:e00f:ffff:ffff:ffff:ffff:ffff,CA 2620:111:f000::,2620:111:f0ff:ffff:ffff:ffff:ffff:ffff,US 2620:112:1000::,2620:112:107f:ffff:ffff:ffff:ffff:ffff,US 2620:112:2000::,2620:112:200f:ffff:ffff:ffff:ffff:ffff,US 2620:112:3000::,2620:112:300f:ffff:ffff:ffff:ffff:ffff,US 2620:112:4000::,2620:112:400f:ffff:ffff:ffff:ffff:ffff,US 2620:112:5000::,2620:112:500f:ffff:ffff:ffff:ffff:ffff,US 2620:112:6000::,2620:112:600f:ffff:ffff:ffff:ffff:ffff,US 2620:112:8000::,2620:112:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:112:9000::,2620:112:900f:ffff:ffff:ffff:ffff:ffff,CA 2620:112:a000::,2620:112:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:112:b000::,2620:112:b0ff:ffff:ffff:ffff:ffff:ffff,US 2620:112:c000::,2620:112:c0ff:ffff:ffff:ffff:ffff:ffff,US 2620:112:d000::,2620:112:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:112:e000::,2620:112:e00f:ffff:ffff:ffff:ffff:ffff,US 2620:112:f000::,2620:112:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:113::,2620:113:f:ffff:ffff:ffff:ffff:ffff,US 2620:113:1000::,2620:113:100f:ffff:ffff:ffff:ffff:ffff,US 2620:113:2000::,2620:113:200f:ffff:ffff:ffff:ffff:ffff,CA 2620:113:3000::,2620:113:300f:ffff:ffff:ffff:ffff:ffff,US 2620:113:4000::,2620:113:400f:ffff:ffff:ffff:ffff:ffff,US 2620:113:5000::,2620:113:500f:ffff:ffff:ffff:ffff:ffff,US 2620:113:6000::,2620:113:600f:ffff:ffff:ffff:ffff:ffff,US 2620:113:7000::,2620:113:700f:ffff:ffff:ffff:ffff:ffff,US 2620:113:8000::,2620:113:80bf:ffff:ffff:ffff:ffff:ffff,US 2620:113:80c0::,2620:113:80c0:7fff:ffff:ffff:ffff:ffff,DE 2620:113:80c0:8000::,2620:113:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:113:9000::,2620:113:900f:ffff:ffff:ffff:ffff:ffff,US 2620:113:a000::,2620:113:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:113:b000::,2620:113:b00f:ffff:ffff:ffff:ffff:ffff,US 2620:113:c000::,2620:113:c0ff:ffff:ffff:ffff:ffff:ffff,US 2620:113:d000::,2620:113:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:113:e000::,2620:113:e00f:ffff:ffff:ffff:ffff:ffff,US 2620:113:f000::,2620:113:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:114::,2620:114:f:ffff:ffff:ffff:ffff:ffff,US 2620:114:1000::,2620:114:100f:ffff:ffff:ffff:ffff:ffff,US 2620:114:2000::,2620:114:20ff:ffff:ffff:ffff:ffff:ffff,US 2620:114:3000::,2620:114:300f:ffff:ffff:ffff:ffff:ffff,US 2620:114:5000::,2620:114:50ff:ffff:ffff:ffff:ffff:ffff,US 2620:114:6000::,2620:114:600f:ffff:ffff:ffff:ffff:ffff,US 2620:114:8000::,2620:114:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:114:9000::,2620:114:900f:ffff:ffff:ffff:ffff:ffff,US 2620:114:a000::,2620:114:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:114:b000::,2620:114:b0ff:ffff:ffff:ffff:ffff:ffff,US 2620:114:c000::,2620:114:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:114:d000::,2620:114:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:114:e000::,2620:114:e0ff:ffff:ffff:ffff:ffff:ffff,US 2620:114:f000::,2620:114:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:115::,2620:115:f:ffff:ffff:ffff:ffff:ffff,US 2620:115:15::,2620:115:15:7fff:ffff:ffff:ffff:ffff,US 2620:115:1000::,2620:115:100f:ffff:ffff:ffff:ffff:ffff,US 2620:115:2000::,2620:115:200f:ffff:ffff:ffff:ffff:ffff,US 2620:115:3000::,2620:115:300f:ffff:ffff:ffff:ffff:ffff,US 2620:115:4000::,2620:115:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:115:5000::,2620:115:500f:ffff:ffff:ffff:ffff:ffff,US 2620:115:6000::,2620:115:600f:ffff:ffff:ffff:ffff:ffff,US 2620:115:7000::,2620:115:70ff:ffff:ffff:ffff:ffff:ffff,US 2620:115:8000::,2620:115:800f:ffff:ffff:ffff:ffff:ffff,US 2620:115:9000::,2620:115:900f:ffff:ffff:ffff:ffff:ffff,US 2620:115:a000::,2620:115:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:115:a096::,2620:115:a096:7fff:ffff:ffff:ffff:ffff,US 2620:115:b000::,2620:115:b00f:ffff:ffff:ffff:ffff:ffff,US 2620:115:c000::,2620:115:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:115:d000::,2620:115:d0ff:ffff:ffff:ffff:ffff:ffff,US 2620:115:e000::,2620:115:e00f:ffff:ffff:ffff:ffff:ffff,US 2620:115:f000::,2620:115:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:116::,2620:116:f:ffff:ffff:ffff:ffff:ffff,US 2620:116:1000::,2620:116:10ff:ffff:ffff:ffff:ffff:ffff,US 2620:116:2000::,2620:116:200f:ffff:ffff:ffff:ffff:ffff,US 2620:116:3000::,2620:116:300f:ffff:ffff:ffff:ffff:ffff,US 2620:116:4000::,2620:116:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:116:5000::,2620:116:50ff:ffff:ffff:ffff:ffff:ffff,US 2620:116:6000::,2620:116:600f:ffff:ffff:ffff:ffff:ffff,US 2620:116:7000::,2620:116:700f:ffff:ffff:ffff:ffff:ffff,US 2620:116:8000::,2620:116:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:116:9000::,2620:116:90ff:ffff:ffff:ffff:ffff:ffff,CA 2620:116:a000::,2620:116:a0ff:ffff:ffff:ffff:ffff:ffff,US 2620:116:b000::,2620:116:b0ff:ffff:ffff:ffff:ffff:ffff,US 2620:116:c000::,2620:116:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:116:d000::,2620:116:d0ff:ffff:ffff:ffff:ffff:ffff,CA 2620:116:e000::,2620:116:e0ff:ffff:ffff:ffff:ffff:ffff,CA 2620:116:f000::,2620:116:f0ff:ffff:ffff:ffff:ffff:ffff,US 2620:117::,2620:117:ff:ffff:ffff:ffff:ffff:ffff,US 2620:117:1000::,2620:117:10ff:ffff:ffff:ffff:ffff:ffff,US 2620:117:2000::,2620:117:20ff:ffff:ffff:ffff:ffff:ffff,US 2620:117:3000::,2620:117:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:117:4000::,2620:117:400f:ffff:ffff:ffff:ffff:ffff,US 2620:117:5000::,2620:117:50ff:ffff:ffff:ffff:ffff:ffff,US 2620:117:6000::,2620:117:60ff:ffff:ffff:ffff:ffff:ffff,US 2620:117:7000::,2620:117:70ff:ffff:ffff:ffff:ffff:ffff,US 2620:117:8000::,2620:117:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:117:9000::,2620:117:90ff:ffff:ffff:ffff:ffff:ffff,US 2620:117:a000::,2620:117:a0ff:ffff:ffff:ffff:ffff:ffff,US 2620:117:b000::,2620:117:b0ff:ffff:ffff:ffff:ffff:ffff,US 2620:117:c000::,2620:117:c0ff:ffff:ffff:ffff:ffff:ffff,US 2620:117:d000::,2620:117:d0ff:ffff:ffff:ffff:ffff:ffff,CA 2620:117:e000::,2620:117:e0ff:ffff:ffff:ffff:ffff:ffff,US 2620:117:f000::,2620:117:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:118::,2620:118:f:ffff:ffff:ffff:ffff:ffff,US 2620:118:1000::,2620:118:10ff:ffff:ffff:ffff:ffff:ffff,US 2620:118:2000::,2620:118:20ff:ffff:ffff:ffff:ffff:ffff,US 2620:118:3000::,2620:118:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:118:4000::,2620:118:400f:ffff:ffff:ffff:ffff:ffff,US 2620:118:5000::,2620:118:500f:ffff:ffff:ffff:ffff:ffff,US 2620:118:6000::,2620:118:60ff:ffff:ffff:ffff:ffff:ffff,US 2620:118:7000::,2620:118:700f:ffff:ffff:ffff:ffff:ffff,US 2620:118:8000::,2620:118:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:118:9000::,2620:118:900f:ffff:ffff:ffff:ffff:ffff,US 2620:118:a000::,2620:118:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:118:b000::,2620:118:b0ff:ffff:ffff:ffff:ffff:ffff,US 2620:118:c000::,2620:118:c0ff:ffff:ffff:ffff:ffff:ffff,US 2620:118:d000::,2620:118:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:118:e000::,2620:118:e00f:ffff:ffff:ffff:ffff:ffff,US 2620:118:f000::,2620:118:f0ff:ffff:ffff:ffff:ffff:ffff,US 2620:119::,2620:119:f:ffff:ffff:ffff:ffff:ffff,US 2620:119:10::,2620:119:11:ffff:ffff:ffff:ffff:ffff,CA 2620:119:12::,2620:119:ff:ffff:ffff:ffff:ffff:ffff,US 2620:119:1000::,2620:119:10ff:ffff:ffff:ffff:ffff:ffff,US 2620:119:2000::,2620:119:200f:ffff:ffff:ffff:ffff:ffff,US 2620:119:3000::,2620:119:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:119:4000::,2620:119:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:119:5000::,2620:119:50ff:ffff:ffff:ffff:ffff:ffff,US 2620:119:6000::,2620:119:600f:ffff:ffff:ffff:ffff:ffff,US 2620:119:7000::,2620:119:70ff:ffff:ffff:ffff:ffff:ffff,US 2620:119:8000::,2620:119:800f:ffff:ffff:ffff:ffff:ffff,US 2620:119:9000::,2620:119:90ff:ffff:ffff:ffff:ffff:ffff,US 2620:119:a000::,2620:119:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:119:b000::,2620:119:b00f:ffff:ffff:ffff:ffff:ffff,US 2620:119:c000::,2620:119:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:119:d000::,2620:119:d0ff:ffff:ffff:ffff:ffff:ffff,US 2620:119:e000::,2620:119:e0ff:ffff:ffff:ffff:ffff:ffff,US 2620:119:f000::,2620:119:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:11a::,2620:11a:ff:ffff:ffff:ffff:ffff:ffff,US 2620:11a:1000::,2620:11a:100f:ffff:ffff:ffff:ffff:ffff,CA 2620:11a:3000::,2620:11a:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:11a:4000::,2620:11a:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:11a:5000::,2620:11a:500f:ffff:ffff:ffff:ffff:ffff,US 2620:11a:6000::,2620:11a:600f:ffff:ffff:ffff:ffff:ffff,US 2620:11a:7000::,2620:11a:700f:ffff:ffff:ffff:ffff:ffff,US 2620:11a:8000::,2620:11a:800f:ffff:ffff:ffff:ffff:ffff,US 2620:11a:9000::,2620:11a:900f:ffff:ffff:ffff:ffff:ffff,US 2620:11a:a000::,2620:11a:a0ff:ffff:ffff:ffff:ffff:ffff,US 2620:11a:b000::,2620:11a:b00f:ffff:ffff:ffff:ffff:ffff,US 2620:11a:c000::,2620:11a:c0ff:ffff:ffff:ffff:ffff:ffff,US 2620:11a:d000::,2620:11a:d0ff:ffff:ffff:ffff:ffff:ffff,US 2620:11a:e000::,2620:11a:e00f:ffff:ffff:ffff:ffff:ffff,US 2620:11a:f000::,2620:11a:f0ff:ffff:ffff:ffff:ffff:ffff,US 2620:11b::,2620:11b:ff:ffff:ffff:ffff:ffff:ffff,US 2620:11b:1000::,2620:11b:10ff:ffff:ffff:ffff:ffff:ffff,US 2620:11b:2000::,2620:11b:20ff:ffff:ffff:ffff:ffff:ffff,US 2620:11b:3000::,2620:11b:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:11b:4000::,2620:11b:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:11b:5000::,2620:11b:500f:ffff:ffff:ffff:ffff:ffff,US 2620:11b:6000::,2620:11b:600f:ffff:ffff:ffff:ffff:ffff,US 2620:11b:7000::,2620:11b:700f:ffff:ffff:ffff:ffff:ffff,US 2620:11b:8000::,2620:11b:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:11b:9000::,2620:11b:900f:ffff:ffff:ffff:ffff:ffff,US 2620:11b:a000::,2620:11b:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:11b:b000::,2620:11b:b00f:ffff:ffff:ffff:ffff:ffff,US 2620:11b:c000::,2620:11b:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:11b:d000::,2620:11b:d0ff:ffff:ffff:ffff:ffff:ffff,US 2620:11b:e000::,2620:11b:e0ff:ffff:ffff:ffff:ffff:ffff,US 2620:11b:f000::,2620:11b:f0ff:ffff:ffff:ffff:ffff:ffff,US 2620:11c::,2620:11c:f:ffff:ffff:ffff:ffff:ffff,US 2620:11c:1000::,2620:11c:10ff:ffff:ffff:ffff:ffff:ffff,BB 2620:11c:2000::,2620:11c:20ff:ffff:ffff:ffff:ffff:ffff,CA 2620:11c:3000::,2620:11c:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:11c:4000::,2620:11c:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:11c:5000::,2620:11c:500f:ffff:ffff:ffff:ffff:ffff,US 2620:11c:6000::,2620:11c:600f:ffff:ffff:ffff:ffff:ffff,US 2620:11c:7000::,2620:11c:700f:ffff:ffff:ffff:ffff:ffff,US 2620:11c:8000::,2620:11c:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:11c:9000::,2620:11c:900f:ffff:ffff:ffff:ffff:ffff,US 2620:11c:a000::,2620:11c:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:11c:b000::,2620:11c:b00f:ffff:ffff:ffff:ffff:ffff,US 2620:11c:c000::,2620:11c:c00f:ffff:ffff:ffff:ffff:ffff,CA 2620:11c:d000::,2620:11c:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:11c:e000::,2620:11c:e00f:ffff:ffff:ffff:ffff:ffff,US 2620:11c:f000::,2620:11c:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:11d::,2620:11d:f:ffff:ffff:ffff:ffff:ffff,US 2620:11d:1000::,2620:11d:100f:ffff:ffff:ffff:ffff:ffff,US 2620:11d:2000::,2620:11d:20ff:ffff:ffff:ffff:ffff:ffff,US 2620:11d:3000::,2620:11d:300f:ffff:ffff:ffff:ffff:ffff,US 2620:11d:4000::,2620:11d:400f:ffff:ffff:ffff:ffff:ffff,US 2620:11d:5000::,2620:11d:500f:ffff:ffff:ffff:ffff:ffff,US 2620:11d:6000::,2620:11d:60ff:ffff:ffff:ffff:ffff:ffff,US 2620:11d:7000::,2620:11d:700f:ffff:ffff:ffff:ffff:ffff,US 2620:11d:8000::,2620:11d:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:11d:9000::,2620:11d:900f:ffff:ffff:ffff:ffff:ffff,US 2620:11d:a000::,2620:11d:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:11d:b000::,2620:11d:b0ff:ffff:ffff:ffff:ffff:ffff,US 2620:11d:c000::,2620:11d:c00f:ffff:ffff:ffff:ffff:ffff,US 2620:11d:d000::,2620:11d:d0ff:ffff:ffff:ffff:ffff:ffff,US 2620:11d:e000::,2620:11d:e0ff:ffff:ffff:ffff:ffff:ffff,US 2620:11d:f000::,2620:11d:f0ff:ffff:ffff:ffff:ffff:ffff,CA 2620:11e::,2620:11e:ff:ffff:ffff:ffff:ffff:ffff,US 2620:11e:1000::,2620:11e:100f:ffff:ffff:ffff:ffff:ffff,US 2620:11e:2000::,2620:11e:20ff:ffff:ffff:ffff:ffff:ffff,US 2620:11e:3000::,2620:11e:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:11e:4000::,2620:11e:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:11e:5000::,2620:11e:50ff:ffff:ffff:ffff:ffff:ffff,US 2620:11e:6000::,2620:11e:600f:ffff:ffff:ffff:ffff:ffff,US 2620:11e:7000::,2620:11e:70ff:ffff:ffff:ffff:ffff:ffff,US 2620:11e:8000::,2620:11e:80ff:ffff:ffff:ffff:ffff:ffff,US 2620:11e:9000::,2620:11e:900f:ffff:ffff:ffff:ffff:ffff,US 2620:11e:a000::,2620:11e:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:11e:b000::,2620:11e:b0ff:ffff:ffff:ffff:ffff:ffff,US 2620:11e:c000::,2620:11e:c0ff:ffff:ffff:ffff:ffff:ffff,US 2620:11e:d000::,2620:11e:d00f:ffff:ffff:ffff:ffff:ffff,CA 2620:11e:e000::,2620:11e:e00f:ffff:ffff:ffff:ffff:ffff,US 2620:11e:f000::,2620:11e:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:11f::,2620:11f:f:ffff:ffff:ffff:ffff:ffff,US 2620:11f:1000::,2620:11f:100f:ffff:ffff:ffff:ffff:ffff,US 2620:11f:2000::,2620:11f:200f:ffff:ffff:ffff:ffff:ffff,US 2620:11f:3000::,2620:11f:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:11f:4000::,2620:11f:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:11f:5000::,2620:11f:50ff:ffff:ffff:ffff:ffff:ffff,US 2620:11f:6000::,2620:11f:60ff:ffff:ffff:ffff:ffff:ffff,US 2620:11f:7000::,2620:11f:700f:ffff:ffff:ffff:ffff:ffff,US 2620:11f:8000::,2620:11f:80ff:ffff:ffff:ffff:ffff:ffff,CA 2620:11f:9000::,2620:11f:900f:ffff:ffff:ffff:ffff:ffff,US 2620:11f:a000::,2620:11f:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:11f:b000::,2620:11f:b00f:ffff:ffff:ffff:ffff:ffff,US 2620:11f:c000::,2620:11f:c0ff:ffff:ffff:ffff:ffff:ffff,US 2620:11f:d000::,2620:11f:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:11f:e000::,2620:11f:e0ff:ffff:ffff:ffff:ffff:ffff,US 2620:11f:f000::,2620:11f:f0ff:ffff:ffff:ffff:ffff:ffff,US 2620:120::,2620:120:ff:ffff:ffff:ffff:ffff:ffff,US 2620:120:1000::,2620:120:10ff:ffff:ffff:ffff:ffff:ffff,US 2620:120:2000::,2620:120:20ff:ffff:ffff:ffff:ffff:ffff,US 2620:120:3000::,2620:120:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:120:4000::,2620:120:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:120:5000::,2620:120:50ff:ffff:ffff:ffff:ffff:ffff,US 2620:120:6000::,2620:120:60ff:ffff:ffff:ffff:ffff:ffff,US 2620:120:7000::,2620:120:70ff:ffff:ffff:ffff:ffff:ffff,US 2620:120:8000::,2620:120:800f:ffff:ffff:ffff:ffff:ffff,CA 2620:120:9000::,2620:120:900f:ffff:ffff:ffff:ffff:ffff,CA 2620:120:a000::,2620:120:a0ff:ffff:ffff:ffff:ffff:ffff,US 2620:120:b000::,2620:120:b0ff:ffff:ffff:ffff:ffff:ffff,US 2620:120:c000::,2620:120:c0ff:ffff:ffff:ffff:ffff:ffff,US 2620:120:d000::,2620:120:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:120:e000::,2620:120:e0ff:ffff:ffff:ffff:ffff:ffff,US 2620:120:f000::,2620:120:f0ff:ffff:ffff:ffff:ffff:ffff,US 2620:121::,2620:121:f:ffff:ffff:ffff:ffff:ffff,US 2620:121:1000::,2620:121:100f:ffff:ffff:ffff:ffff:ffff,US 2620:121:2000::,2620:121:200f:ffff:ffff:ffff:ffff:ffff,US 2620:121:3000::,2620:121:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:121:4000::,2620:121:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:121:5000::,2620:121:500f:ffff:ffff:ffff:ffff:ffff,US 2620:121:6000::,2620:121:600f:ffff:ffff:ffff:ffff:ffff,US 2620:121:7000::,2620:121:700f:ffff:ffff:ffff:ffff:ffff,US 2620:121:8000::,2620:121:800f:ffff:ffff:ffff:ffff:ffff,US 2620:121:9000::,2620:121:900f:ffff:ffff:ffff:ffff:ffff,US 2620:121:a000::,2620:121:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:121:b000::,2620:121:b0ff:ffff:ffff:ffff:ffff:ffff,US 2620:121:c000::,2620:121:c0ff:ffff:ffff:ffff:ffff:ffff,US 2620:121:d000::,2620:121:d00f:ffff:ffff:ffff:ffff:ffff,US 2620:121:e000::,2620:121:e00f:ffff:ffff:ffff:ffff:ffff,US 2620:121:f000::,2620:121:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:122::,2620:122:f:ffff:ffff:ffff:ffff:ffff,US 2620:122:1000::,2620:122:10ff:ffff:ffff:ffff:ffff:ffff,US 2620:122:2000::,2620:122:20ff:ffff:ffff:ffff:ffff:ffff,US 2620:122:3000::,2620:122:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:122:4000::,2620:122:400f:ffff:ffff:ffff:ffff:ffff,US 2620:122:5000::,2620:122:500f:ffff:ffff:ffff:ffff:ffff,US 2620:122:6000::,2620:122:600f:ffff:ffff:ffff:ffff:ffff,US 2620:122:7000::,2620:122:70ff:ffff:ffff:ffff:ffff:ffff,US 2620:122:8000::,2620:122:800f:ffff:ffff:ffff:ffff:ffff,US 2620:122:9000::,2620:122:900f:ffff:ffff:ffff:ffff:ffff,US 2620:122:a000::,2620:122:a0ff:ffff:ffff:ffff:ffff:ffff,BL 2620:122:b000::,2620:122:b00f:ffff:ffff:ffff:ffff:ffff,US 2620:122:c000::,2620:122:c0ff:ffff:ffff:ffff:ffff:ffff,US 2620:122:d000::,2620:122:d0ff:ffff:ffff:ffff:ffff:ffff,US 2620:122:e000::,2620:122:e00f:ffff:ffff:ffff:ffff:ffff,US 2620:122:f000::,2620:122:f00f:ffff:ffff:ffff:ffff:ffff,US 2620:123::,2620:123:f:ffff:ffff:ffff:ffff:ffff,US 2620:123:1000::,2620:123:10ff:ffff:ffff:ffff:ffff:ffff,US 2620:123:2000::,2620:123:200f:ffff:ffff:ffff:ffff:ffff,US 2620:123:3000::,2620:123:30ff:ffff:ffff:ffff:ffff:ffff,US 2620:123:4000::,2620:123:40ff:ffff:ffff:ffff:ffff:ffff,US 2620:123:5000::,2620:123:50ff:ffff:ffff:ffff:ffff:ffff,US 2620:123:6000::,2620:123:600f:ffff:ffff:ffff:ffff:ffff,CA 2620:123:7000::,2620:123:700f:ffff:ffff:ffff:ffff:ffff,CA 2620:123:8000::,2620:123:800f:ffff:ffff:ffff:ffff:ffff,US 2620:123:9000::,2620:123:900f:ffff:ffff:ffff:ffff:ffff,US 2620:123:a000::,2620:123:a00f:ffff:ffff:ffff:ffff:ffff,US 2620:123:b000::,2620:123:b00f:ffff:ffff:ffff:ffff:ffff,US 2620:123:c000::,2620:123:c0ff:ffff:ffff:ffff:ffff:ffff,US 2620:123:d000::,2620:123:d0ff:ffff:ffff:ffff:ffff:ffff,US 2620:140::,2620:140:3ff:ffff:ffff:ffff:ffff:ffff,US 2620:141::,2620:141:fff:ffff:ffff:ffff:ffff:ffff,US 2620:143::,2620:143:7ff:ffff:ffff:ffff:ffff:ffff,US 2620:144::,2620:145:fff:ffff:ffff:ffff:ffff:ffff,US 2620:146::,2620:146:fff:ffff:ffff:ffff:ffff:ffff,US 2620:147::,2620:147:fff:ffff:ffff:ffff:ffff:ffff,US 2620:148::,2620:148:fff:ffff:ffff:ffff:ffff:ffff,US 2620:149::,2620:149:fff:ffff:ffff:ffff:ffff:ffff,US 2620:14a::,2620:14a:fff:ffff:ffff:ffff:ffff:ffff,US 2620:14b::,2620:14b:fff:ffff:ffff:ffff:ffff:ffff,US 2620:14c::,2620:14c:fff:ffff:ffff:ffff:ffff:ffff,US 2620:14d::,2620:14d:fff:ffff:ffff:ffff:ffff:ffff,US 2620:14e::,2620:14e:fff:ffff:ffff:ffff:ffff:ffff,US 2620:14f::,2620:14f:fff:ffff:ffff:ffff:ffff:ffff,US 2620:150::,2620:150:fff:ffff:ffff:ffff:ffff:ffff,US 2620:151::,2620:151:fff:ffff:ffff:ffff:ffff:ffff,US 2620:152::,2620:152:fff:ffff:ffff:ffff:ffff:ffff,US 2620:153::,2620:153:fff:ffff:ffff:ffff:ffff:ffff,US 2620:154::,2620:154:fff:ffff:ffff:ffff:ffff:ffff,US 2620:155::,2620:155:fff:ffff:ffff:ffff:ffff:ffff,US 2620:156::,2620:156:fff:ffff:ffff:ffff:ffff:ffff,US 2620:157::,2620:157:fff:ffff:ffff:ffff:ffff:ffff,US 2620:158::,2620:158:fff:ffff:ffff:ffff:ffff:ffff,US 2620:159::,2620:159:fff:ffff:ffff:ffff:ffff:ffff,US 2620:15a::,2620:15a:fff:ffff:ffff:ffff:ffff:ffff,US 2620:15b::,2620:15b:fff:ffff:ffff:ffff:ffff:ffff,US 2620:15c::,2620:15c:4:ffff:ffff:ffff:ffff:ffff,US 2620:15c:5::,2620:15c:5:ffff:ffff:ffff:ffff:ffff,BR 2620:15c:6::,2620:15c:fff:ffff:ffff:ffff:ffff:ffff,US 2620:15d::,2620:15e:fff:ffff:ffff:ffff:ffff:ffff,US 2620:15f::,2620:15f:fff:ffff:ffff:ffff:ffff:ffff,US 2620:160::,2620:160:ffff:ffff:ffff:ffff:ffff:ffff,US 2620:162::,2620:162:fff:ffff:ffff:ffff:ffff:ffff,US 2620:163::,2620:163:fff:ffff:ffff:ffff:ffff:ffff,US 2620:164::,2620:164:fff:ffff:ffff:ffff:ffff:ffff,US 2620:165::,2620:165:fff:ffff:ffff:ffff:ffff:ffff,US 2620:166::,2620:166:fff:ffff:ffff:ffff:ffff:ffff,US 2620:167::,2620:167:fff:ffff:ffff:ffff:ffff:ffff,US 2620:168::,2620:169:fff:ffff:ffff:ffff:ffff:ffff,US 2620:16a::,2620:16a:fff:ffff:ffff:ffff:ffff:ffff,US 2620:16b::,2620:16c:fff:ffff:ffff:ffff:ffff:ffff,US 2620:16d::,2620:16f:fff:ffff:ffff:ffff:ffff:ffff,US 2620:170::,2620:170:fff:ffff:ffff:ffff:ffff:ffff,US 2620:171::,2620:171:fff:ffff:ffff:ffff:ffff:ffff,US 2620:172::,2620:172:fff:ffff:ffff:ffff:ffff:ffff,US 2620:173::,2620:173:fff:ffff:ffff:ffff:ffff:ffff,US 2620:174::,2620:174:fff:ffff:ffff:ffff:ffff:ffff,US 2620:175::,2620:175:fff:ffff:ffff:ffff:ffff:ffff,CA 2620:176::,2620:177:fff:ffff:ffff:ffff:ffff:ffff,US 2620:178::,2620:178:fff:ffff:ffff:ffff:ffff:ffff,US 2620:179::,2620:179:fff:ffff:ffff:ffff:ffff:ffff,US 2620:17a::,2620:17a:fff:ffff:ffff:ffff:ffff:ffff,US 2620:17b::,2620:17b:fff:ffff:ffff:ffff:ffff:ffff,US 2620:17c::,2620:17c:fff:ffff:ffff:ffff:ffff:ffff,US 2620:17e::,2620:17e:fff:ffff:ffff:ffff:ffff:ffff,US 2620:17f::,2620:180:ffff:ffff:ffff:ffff:ffff:ffff,US 2620:190::,2620:190:ffff:ffff:ffff:ffff:ffff:ffff,US 2620:1a0::,2620:1a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2620:1b0::,2620:1b0:ffff:ffff:ffff:ffff:ffff:ffff,US 2620:1c0::,2620:1c0:ffff:ffff:ffff:ffff:ffff:ffff,US 2620:1d0::,2620:1d1:ffff:ffff:ffff:ffff:ffff:ffff,US 2620:1d2::,2620:1d2:ffff:ffff:ffff:ffff:ffff:ffff,CA 2620:1d3::,2620:1d3:ffff:ffff:ffff:ffff:ffff:ffff,US 2620:1e0::,2620:1e1:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1e2::,2620:1e2:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1e3::,2620:1e3:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1e4::,2620:1e4:ffff:ffff:ffff:ffff:ffff:ffff,CA 2620:1e5::,2620:1e5:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1e6::,2620:1e6:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1e7::,2620:1e7:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1e8::,2620:1e8:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1e9::,2620:1e9:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1ea::,2620:1ea:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1eb::,2620:1eb:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1ec::,2620:1ec:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1ed::,2620:1ed:fff:ffff:ffff:ffff:ffff:ffff,CA 2620:1ee::,2620:1ee:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1ef::,2620:1ef:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1f0::,2620:1f1:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1f2::,2620:1f4:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1f5::,2620:1f5:fff:ffff:ffff:ffff:ffff:ffff,CA 2620:1f6::,2620:1f6:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1f7::,2620:1f9:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1fa::,2620:1fb:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1fc::,2620:1fc:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1fd::,2620:1fd:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1fe::,2620:1fe:fff:ffff:ffff:ffff:ffff:ffff,US 2620:1ff::,2620:1ff:fff:ffff:ffff:ffff:ffff:ffff,US 2800:8::,2800:8:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:10::,2800:10:ffff:ffff:ffff:ffff:ffff:ffff,NI 2800:18::,2800:18:ffff:ffff:ffff:ffff:ffff:ffff,PE 2800:20::,2800:30:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:38::,2800:38:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:40::,2800:40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:48::,2800:48:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:68::,2800:68:ffff:ffff:ffff:ffff:ffff:ffff,EC 2800:70::,2800:70:ffff:ffff:ffff:ffff:ffff:ffff,TT 2800:80::,2800:80:ffff:ffff:ffff:ffff:ffff:ffff,CW 2800:88::,2800:88:ffff:ffff:ffff:ffff:ffff:ffff,BO 2800:90::,2800:90:ffff:ffff:ffff:ffff:ffff:ffff,SV 2800:98::,2800:98:ffff:ffff:ffff:ffff:ffff:ffff,GT 2800:a0::,2800:af:ffff:ffff:ffff:ffff:ffff:ffff,UY 2800:e0::,2800:ef:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:f0::,2800:f0:ffff:ffff:ffff:ffff:ffff:ffff,CR 2800:100::,2800:100:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:110::,2800:110:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:120::,2800:120:ffff:ffff:ffff:ffff:ffff:ffff,PE 2800:130::,2800:130:ffff:ffff:ffff:ffff:ffff:ffff,EC 2800:140::,2800:140:ffff:ffff:ffff:ffff:ffff:ffff,PA 2800:150::,2800:150:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:160::,2800:160:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:170::,2800:170:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:180::,2800:180:ffff:ffff:ffff:ffff:ffff:ffff,TT 2800:190::,2800:190:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:1a0::,2800:1a0:ffff:ffff:ffff:ffff:ffff:ffff,GT 2800:1b0::,2800:1b0:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:1c0::,2800:1c0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:1d0::,2800:1d0:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:1e0::,2800:1e0:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:1f0::,2800:1f0:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:200::,2800:200:ffff:ffff:ffff:ffff:ffff:ffff,PE 2800:220::,2800:220:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:230::,2800:230:ffff:ffff:ffff:ffff:ffff:ffff,CU 2800:240::,2800:240:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:250::,2800:250:ffff:ffff:ffff:ffff:ffff:ffff,UY 2800:260::,2800:26f:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:270::,2800:270:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:280::,2800:280:ffff:ffff:ffff:ffff:ffff:ffff,SX 2800:290::,2800:290:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:2a0::,2800:2a0:ffff:ffff:ffff:ffff:ffff:ffff,EC 2800:2b0::,2800:2b0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:2d0::,2800:2d0:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:2e0::,2800:2e0:ffff:ffff:ffff:ffff:ffff:ffff,CW 2800:2f0::,2800:2f0:ffff:ffff:ffff:ffff:ffff:ffff,EC 2800:300::,2800:300:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:310::,2800:310:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:320::,2800:320:ffff:ffff:ffff:ffff:ffff:ffff,BO 2800:330::,2800:330:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:340::,2800:340:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:350::,2800:350:ffff:ffff:ffff:ffff:ffff:ffff,PA 2800:360::,2800:360:ffff:ffff:ffff:ffff:ffff:ffff,CU 2800:370::,2800:370:ffff:ffff:ffff:ffff:ffff:ffff,EC 2800:380::,2800:381:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:390::,2800:390:ffff:ffff:ffff:ffff:ffff:ffff,BO 2800:3a0::,2800:3a0:ffff:ffff:ffff:ffff:ffff:ffff,PY 2800:3b0::,2800:3b0:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:3c0::,2800:3c0:ffff:ffff:ffff:ffff:ffff:ffff,GY 2800:3d0::,2800:3d0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:3e0::,2800:3e0:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:3f0::,2800:3f0:4002:ffff:ffff:ffff:ffff:ffff,AR 2800:3f0:4003::,2800:3f0:4003:ffff:ffff:ffff:ffff:ffff,CL 2800:3f0:4004::,2800:3f0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:400::,2800:400:ffff:ffff:ffff:ffff:ffff:ffff,EC 2800:410::,2800:410:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2800:420::,2800:423:ffff:ffff:ffff:ffff:ffff:ffff,TT 2800:430::,2800:430:ffff:ffff:ffff:ffff:ffff:ffff,EC 2800:440::,2800:440:ffff:ffff:ffff:ffff:ffff:ffff,EC 2800:450::,2800:450:ffff:ffff:ffff:ffff:ffff:ffff,CR 2800:460::,2800:460:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:470::,2800:470:ffff:ffff:ffff:ffff:ffff:ffff,SX 2800:480::,2800:480:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:490::,2800:490:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:4b0::,2800:4b0:ffff:ffff:ffff:ffff:ffff:ffff,PE 2800:4c0::,2800:4c0:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:4d0::,2800:4d0:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:4e0::,2800:4e0:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:4f0::,2800:4f0:ffff:ffff:ffff:ffff:ffff:ffff,EC 2800:500::,2800:500:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:510::,2800:510:ffff:ffff:ffff:ffff:ffff:ffff,CR 2800:530::,2800:530:ffff:ffff:ffff:ffff:ffff:ffff,CW 2800:540::,2800:540:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:550::,2800:550:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:560::,2800:560:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:570::,2800:570:ffff:ffff:ffff:ffff:ffff:ffff,HT 2800:580::,2800:580:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:590::,2800:590:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:5a0::,2800:5a0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:5b0::,2800:5b0:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:5c0::,2800:5c0:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:5d0::,2800:5d0:ffff:ffff:ffff:ffff:ffff:ffff,PA 2800:5e0::,2800:5e0:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:5f0::,2800:5f0:ffff:ffff:ffff:ffff:ffff:ffff,EC 2800:600::,2800:600:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:610::,2800:610:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:620::,2800:620:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:630::,2800:630:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:640::,2800:640:ffff:ffff:ffff:ffff:ffff:ffff,CR 2800:650::,2800:650:ffff:ffff:ffff:ffff:ffff:ffff,PE 2800:660::,2800:661:ffff:ffff:ffff:ffff:ffff:ffff,EC 2800:670::,2800:670:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:680::,2800:680:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:690::,2800:690:ffff:ffff:ffff:ffff:ffff:ffff,PE 2800:6a0::,2800:6a0:ffff:ffff:ffff:ffff:ffff:ffff,HN 2800:6b0::,2800:6bf:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:6c0::,2800:6c0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:6d0::,2800:6d0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:6e0::,2800:6e0:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:6f0::,2800:6f0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:700::,2800:700:ffff:ffff:ffff:ffff:ffff:ffff,UY 2800:800::,2800:800:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:810::,2800:820:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:830::,2800:831:ffff:ffff:ffff:ffff:ffff:ffff,EC 2800:840::,2800:840:ffff:ffff:ffff:ffff:ffff:ffff,UY 2800:850::,2800:850:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:860::,2800:860:ffff:ffff:ffff:ffff:ffff:ffff,CR 2800:870::,2800:870:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:880::,2800:883:ffff:ffff:ffff:ffff:ffff:ffff,SV 2800:890::,2800:890:ffff:ffff:ffff:ffff:ffff:ffff,GT 2800:8a0::,2800:8a0:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:8b0::,2800:8b0:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:8c0::,2800:8c0:ffff:ffff:ffff:ffff:ffff:ffff,NI 2800:8d0::,2800:8d0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:8e0::,2800:8e0:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:8f0::,2800:8f0:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:900::,2800:900:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:910::,2800:910:ffff:ffff:ffff:ffff:ffff:ffff,CU 2800:920::,2800:920:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:930::,2800:937:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:940::,2800:940:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:950::,2800:950:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:960::,2800:960:ffff:ffff:ffff:ffff:ffff:ffff,PY 2800:970::,2800:970:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:980::,2800:980:ffff:ffff:ffff:ffff:ffff:ffff,PA 2800:990::,2800:990:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:9a0::,2800:9a7:ffff:ffff:ffff:ffff:ffff:ffff,EC 2800:9b0::,2800:9b0:ffff:ffff:ffff:ffff:ffff:ffff,CR 2800:9c0::,2800:9c0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:9d0::,2800:9d0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:9e0::,2800:9e0:ffff:ffff:ffff:ffff:ffff:ffff,CW 2800:9f0::,2800:9f0:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:a00::,2800:a00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:a10::,2800:a10:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:a20::,2800:a20:ffff:ffff:ffff:ffff:ffff:ffff,CW 2800:a30::,2800:a30:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:a40::,2800:a40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:a50::,2800:a50:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:a60::,2800:a60:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:a70::,2800:a70:ffff:ffff:ffff:ffff:ffff:ffff,CR 2800:a80::,2800:a80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:a90::,2800:a90:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:aa0::,2800:aa0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:ab0::,2800:ab0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:ac0::,2800:ac0:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:ad0::,2800:ad0:ffff:ffff:ffff:ffff:ffff:ffff,AW 2800:ae0::,2800:ae0:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:af0::,2800:af0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:b00::,2800:b00:ffff:ffff:ffff:ffff:ffff:ffff,BQ 2800:b10::,2800:b10:ffff:ffff:ffff:ffff:ffff:ffff,HN 2800:b20::,2800:b23:ffff:ffff:ffff:ffff:ffff:ffff,SV 2800:b30::,2800:b31:ffff:ffff:ffff:ffff:ffff:ffff,EC 2800:b40::,2800:b40:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:b60::,2800:b60:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:b70::,2800:b70:ffff:ffff:ffff:ffff:ffff:ffff,CO 2800:b80::,2800:b80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:b90::,2800:b90:ffff:ffff:ffff:ffff:ffff:ffff,CR 2800:ba0::,2800:ba0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:bb0::,2800:bbf:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:bc0::,2800:bc0:ffff:ffff:ffff:ffff:ffff:ffff,US 2800:bd0::,2800:bd0:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:be0::,2800:be0:ffff:ffff:ffff:ffff:ffff:ffff,CL 2800:bf0::,2800:bf0:ffff:ffff:ffff:ffff:ffff:ffff,EC 2800:c00::,2800:c00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:c10::,2800:c10:ffff:ffff:ffff:ffff:ffff:ffff,EC 2800:c20::,2800:c20:ffff:ffff:ffff:ffff:ffff:ffff,CR 2800:c30::,2800:c30:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:c40::,2800:c40:ffff:ffff:ffff:ffff:ffff:ffff,EC 2800:c50::,2800:c50:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:c70::,2800:c70:ffff:ffff:ffff:ffff:ffff:ffff,PY 2800:c80::,2800:c80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:c90::,2800:c90:ffff:ffff:ffff:ffff:ffff:ffff,DO 2800:ca0::,2800:ca0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:cb0::,2800:cb0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:cc0::,2800:cc0:ffff:ffff:ffff:ffff:ffff:ffff,PE 2800:cd0::,2800:cd0:ffff:ffff:ffff:ffff:ffff:ffff,BO 2800:ce0::,2800:ce0:ffff:ffff:ffff:ffff:ffff:ffff,PA 2800:cf0::,2800:cf0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:d00::,2800:d00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:d10::,2800:d10:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:d20::,2800:d20:ffff:ffff:ffff:ffff:ffff:ffff,DO 2800:e00::,2800:eff:ffff:ffff:ffff:ffff:ffff:ffff,TT 2800:1000::,2800:10ff:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:2000::,2800:2fff:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:a000::,2800:a000:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:a008::,2800:a008:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:a010::,2800:a010:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:a018::,2800:a018:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:a020::,2800:a020:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:a028::,2800:a028:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:a030::,2800:a030:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:a038::,2800:a038:ffff:ffff:ffff:ffff:ffff:ffff,VE 2800:b000::,2800:b000:ffff:ffff:ffff:ffff:ffff:ffff,AR 2800:d300::,2800:d307:ffff:ffff:ffff:ffff:ffff:ffff,CR 2801::,2801::ffff:ffff:ffff:ffff:ffff,UY 2801:0:10::,2801::10:ffff:ffff:ffff:ffff:ffff,CL 2801:0:20::,2801::20:ffff:ffff:ffff:ffff:ffff,EC 2801:0:30::,2801::30:ffff:ffff:ffff:ffff:ffff,HN 2801:0:40::,2801::40:ffff:ffff:ffff:ffff:ffff,TT 2801:0:50::,2801::50:ffff:ffff:ffff:ffff:ffff,CL 2801:0:60::,2801::63:ffff:ffff:ffff:ffff:ffff,EC 2801:0:70::,2801::70:ffff:ffff:ffff:ffff:ffff,CO 2801:0:80::,2801::80:ffff:ffff:ffff:ffff:ffff,DO 2801:0:90::,2801::90:ffff:ffff:ffff:ffff:ffff,AR 2801:0:b0::,2801::b7:ffff:ffff:ffff:ffff:ffff,CL 2801:0:c0::,2801::df:ffff:ffff:ffff:ffff:ffff,CR 2801:0:100::,2801::100:ffff:ffff:ffff:ffff:ffff,CO 2801:0:110::,2801::110:ffff:ffff:ffff:ffff:ffff,GT 2801:0:120::,2801::120:ffff:ffff:ffff:ffff:ffff,CL 2801:0:130::,2801::130:ffff:ffff:ffff:ffff:ffff,PY 2801:0:140::,2801::140:ffff:ffff:ffff:ffff:ffff,AR 2801:0:150::,2801::150:ffff:ffff:ffff:ffff:ffff,CL 2801:0:160::,2801::160:ffff:ffff:ffff:ffff:ffff,AR 2801:0:170::,2801::170:ffff:ffff:ffff:ffff:ffff,BO 2801:0:180::,2801::180:ffff:ffff:ffff:ffff:ffff,CO 2801:0:190::,2801::190:ffff:ffff:ffff:ffff:ffff,AR 2801:0:1a0::,2801::1a0:ffff:ffff:ffff:ffff:ffff,HN 2801:0:1b0::,2801::1b0:ffff:ffff:ffff:ffff:ffff,AR 2801:0:1c0::,2801::1c7:ffff:ffff:ffff:ffff:ffff,CO 2801:0:1d0::,2801::1d7:ffff:ffff:ffff:ffff:ffff,AR 2801:0:1e0::,2801::1e0:ffff:ffff:ffff:ffff:ffff,CO 2801:0:1f0::,2801::1f0:ffff:ffff:ffff:ffff:ffff,PY 2801:0:200::,2801::200:ffff:ffff:ffff:ffff:ffff,VE 2801:0:210::,2801::210:ffff:ffff:ffff:ffff:ffff,CO 2801:0:220::,2801::22f:ffff:ffff:ffff:ffff:ffff,AR 2801:0:240::,2801::240:ffff:ffff:ffff:ffff:ffff,PA 2801:0:250::,2801::250:ffff:ffff:ffff:ffff:ffff,AR 2801:0:260::,2801::260:ffff:ffff:ffff:ffff:ffff,AR 2801:0:270::,2801::270:ffff:ffff:ffff:ffff:ffff,EC 2801:0:280::,2801::280:ffff:ffff:ffff:ffff:ffff,CO 2801:0:290::,2801::290:ffff:ffff:ffff:ffff:ffff,AR 2801:0:2a0::,2801::2a0:ffff:ffff:ffff:ffff:ffff,CR 2801:0:2b0::,2801::2b0:ffff:ffff:ffff:ffff:ffff,PA 2801:0:2c0::,2801::2c0:ffff:ffff:ffff:ffff:ffff,HN 2801:0:2d0::,2801::2d0:ffff:ffff:ffff:ffff:ffff,PA 2801:0:2e0::,2801::2e0:ffff:ffff:ffff:ffff:ffff,CO 2801:0:2f0::,2801::2f0:ffff:ffff:ffff:ffff:ffff,AR 2801:0:300::,2801::300:ffff:ffff:ffff:ffff:ffff,CO 2801:0:310::,2801::310:ffff:ffff:ffff:ffff:ffff,CW 2801:0:320::,2801::320:ffff:ffff:ffff:ffff:ffff,CO 2801:0:330::,2801::330:ffff:ffff:ffff:ffff:ffff,HT 2801:0:340::,2801::340:ffff:ffff:ffff:ffff:ffff,CO 2801:0:350::,2801::350:ffff:ffff:ffff:ffff:ffff,AR 2801:0:360::,2801::360:ffff:ffff:ffff:ffff:ffff,CO 2801:0:370::,2801::370:ffff:ffff:ffff:ffff:ffff,CO 2801:0:380::,2801::380:ffff:ffff:ffff:ffff:ffff,CL 2801:0:390::,2801::390:ffff:ffff:ffff:ffff:ffff,CO 2801:0:3b0::,2801::3b0:ffff:ffff:ffff:ffff:ffff,CO 2801:0:3c0::,2801::3c0:ffff:ffff:ffff:ffff:ffff,CO 2801:0:3d0::,2801::3d0:ffff:ffff:ffff:ffff:ffff,CO 2801:0:3e0::,2801::3e0:ffff:ffff:ffff:ffff:ffff,AR 2801:0:3f0::,2801::3f0:ffff:ffff:ffff:ffff:ffff,AR 2801:0:400::,2801::400:ffff:ffff:ffff:ffff:ffff,CL 2801:0:410::,2801::410:ffff:ffff:ffff:ffff:ffff,EC 2801:0:420::,2801::420:ffff:ffff:ffff:ffff:ffff,EC 2801:0:440::,2801::440:ffff:ffff:ffff:ffff:ffff,AR 2801:0:480::,2801::480:ffff:ffff:ffff:ffff:ffff,CO 2801:0:490::,2801::490:ffff:ffff:ffff:ffff:ffff,PA 2801:0:4a0::,2801::4a0:ffff:ffff:ffff:ffff:ffff,CR 2801:0:4c0::,2801::4c0:ffff:ffff:ffff:ffff:ffff,CO 2801:0:4d0::,2801::4d0:ffff:ffff:ffff:ffff:ffff,EC 2801:0:4e0::,2801::4e0:ffff:ffff:ffff:ffff:ffff,CL 2801:0:4f0::,2801::4f0:ffff:ffff:ffff:ffff:ffff,CO 2801:0:2000::,2801::2fff:ffff:ffff:ffff:ffff:ffff,UY 2801:1::,2801:1:ffff:ffff:ffff:ffff:ffff:ffff,CR 2801:2::,2801:2:ffff:ffff:ffff:ffff:ffff:ffff,CL 2801:10::,2801:10:7:ffff:ffff:ffff:ffff:ffff,AR 2801:10:1000::,2801:10:1000:ffff:ffff:ffff:ffff:ffff,AR 2801:10:2000::,2801:10:2000:ffff:ffff:ffff:ffff:ffff,AR 2801:10:4000::,2801:10:4000:ffff:ffff:ffff:ffff:ffff,AR 2801:10:6000::,2801:10:6000:ffff:ffff:ffff:ffff:ffff,HN 2801:10:8000::,2801:10:8000:ffff:ffff:ffff:ffff:ffff,AR 2801:10:a000::,2801:10:a000:ffff:ffff:ffff:ffff:ffff,AR 2801:10:c000::,2801:10:c000:ffff:ffff:ffff:ffff:ffff,CO 2801:10:e000::,2801:10:e000:ffff:ffff:ffff:ffff:ffff,AR 2801:11::,2801:11::ffff:ffff:ffff:ffff:ffff,AR 2801:11:1000::,2801:11:1000:ffff:ffff:ffff:ffff:ffff,PY 2801:11:2000::,2801:11:2000:ffff:ffff:ffff:ffff:ffff,AR 2801:11:4000::,2801:11:4000:ffff:ffff:ffff:ffff:ffff,CO 2801:11:6000::,2801:11:6000:ffff:ffff:ffff:ffff:ffff,AR 2801:11:8000::,2801:11:8000:ffff:ffff:ffff:ffff:ffff,CO 2801:11:a000::,2801:11:a000:ffff:ffff:ffff:ffff:ffff,VE 2801:11:c000::,2801:11:c000:ffff:ffff:ffff:ffff:ffff,AR 2801:11:e000::,2801:11:e000:ffff:ffff:ffff:ffff:ffff,CO 2801:12::,2801:12::ffff:ffff:ffff:ffff:ffff,PY 2801:12:1000::,2801:12:1000:ffff:ffff:ffff:ffff:ffff,BO 2801:12:2000::,2801:12:2000:ffff:ffff:ffff:ffff:ffff,HN 2801:12:4000::,2801:12:4000:ffff:ffff:ffff:ffff:ffff,CO 2801:12:6000::,2801:12:6000:ffff:ffff:ffff:ffff:ffff,SV 2801:12:8000::,2801:12:8000:ffff:ffff:ffff:ffff:ffff,AR 2801:12:c000::,2801:12:c000:ffff:ffff:ffff:ffff:ffff,AR 2801:12:e000::,2801:12:e000:ffff:ffff:ffff:ffff:ffff,PA 2801:13::,2801:13::ffff:ffff:ffff:ffff:ffff,VE 2801:13:2000::,2801:13:2000:ffff:ffff:ffff:ffff:ffff,AR 2801:13:4000::,2801:13:4000:ffff:ffff:ffff:ffff:ffff,CL 2801:13:6000::,2801:13:6000:ffff:ffff:ffff:ffff:ffff,GT 2801:13:8000::,2801:13:8000:ffff:ffff:ffff:ffff:ffff,SV 2801:13:a000::,2801:13:a000:ffff:ffff:ffff:ffff:ffff,CO 2801:13:c000::,2801:13:c000:ffff:ffff:ffff:ffff:ffff,TT 2801:13:e000::,2801:13:e000:ffff:ffff:ffff:ffff:ffff,CO 2801:14::,2801:14::ffff:ffff:ffff:ffff:ffff,CO 2801:14:1000::,2801:14:1000:ffff:ffff:ffff:ffff:ffff,CL 2801:14:2000::,2801:14:2000:ffff:ffff:ffff:ffff:ffff,AR 2801:14:4000::,2801:14:4000:ffff:ffff:ffff:ffff:ffff,CO 2801:14:6000::,2801:14:6000:ffff:ffff:ffff:ffff:ffff,BO 2801:14:8000::,2801:14:8000:ffff:ffff:ffff:ffff:ffff,CO 2801:14:a000::,2801:14:a001:ffff:ffff:ffff:ffff:ffff,UY 2801:14:c000::,2801:14:c000:ffff:ffff:ffff:ffff:ffff,BO 2801:14:e000::,2801:14:e000:ffff:ffff:ffff:ffff:ffff,PY 2801:15::,2801:15::ffff:ffff:ffff:ffff:ffff,EC 2801:15:2000::,2801:15:2000:ffff:ffff:ffff:ffff:ffff,CR 2801:15:4000::,2801:15:4000:ffff:ffff:ffff:ffff:ffff,CO 2801:15:6000::,2801:15:6000:ffff:ffff:ffff:ffff:ffff,SV 2801:15:8000::,2801:15:8000:ffff:ffff:ffff:ffff:ffff,CR 2801:15:a000::,2801:15:a000:ffff:ffff:ffff:ffff:ffff,DO 2801:15:c000::,2801:15:c000:ffff:ffff:ffff:ffff:ffff,GT 2801:15:e000::,2801:15:e000:ffff:ffff:ffff:ffff:ffff,DO 2801:16::,2801:16::ffff:ffff:ffff:ffff:ffff,CW 2801:16:e0::,2801:16:e0:ffff:ffff:ffff:ffff:ffff,GY 2801:16:1000::,2801:16:1000:ffff:ffff:ffff:ffff:ffff,AR 2801:16:2000::,2801:16:2000:ffff:ffff:ffff:ffff:ffff,HN 2801:16:4000::,2801:16:4000:ffff:ffff:ffff:ffff:ffff,AR 2801:16:6000::,2801:16:6000:ffff:ffff:ffff:ffff:ffff,AR 2801:16:8000::,2801:16:8000:ffff:ffff:ffff:ffff:ffff,CO 2801:16:a000::,2801:16:a000:ffff:ffff:ffff:ffff:ffff,CR 2801:16:c000::,2801:16:c000:ffff:ffff:ffff:ffff:ffff,AR 2801:17::,2801:17::ffff:ffff:ffff:ffff:ffff,CL 2801:17:2000::,2801:17:2000:ffff:ffff:ffff:ffff:ffff,PY 2801:17:4000::,2801:17:4000:ffff:ffff:ffff:ffff:ffff,CO 2801:17:6000::,2801:17:6000:ffff:ffff:ffff:ffff:ffff,AR 2801:17:8000::,2801:17:8000:ffff:ffff:ffff:ffff:ffff,CR 2801:17:a000::,2801:17:a000:ffff:ffff:ffff:ffff:ffff,HT 2801:17:c000::,2801:17:c000:ffff:ffff:ffff:ffff:ffff,PA 2801:17:e000::,2801:17:e000:ffff:ffff:ffff:ffff:ffff,AR 2801:18::,2801:18::ffff:ffff:ffff:ffff:ffff,CR 2801:18:1000::,2801:18:1000:ffff:ffff:ffff:ffff:ffff,PA 2801:18:2000::,2801:18:2000:ffff:ffff:ffff:ffff:ffff,CO 2801:18:4000::,2801:18:4000:ffff:ffff:ffff:ffff:ffff,CO 2801:18:6000::,2801:18:6000:ffff:ffff:ffff:ffff:ffff,AR 2801:18:8000::,2801:18:8000:ffff:ffff:ffff:ffff:ffff,AR 2801:18:a000::,2801:18:a000:ffff:ffff:ffff:ffff:ffff,BO 2801:18:c000::,2801:18:c000:ffff:ffff:ffff:ffff:ffff,AR 2801:18:e000::,2801:18:e000:ffff:ffff:ffff:ffff:ffff,DO 2801:19::,2801:19::ffff:ffff:ffff:ffff:ffff,AR 2801:19:1000::,2801:19:1000:ffff:ffff:ffff:ffff:ffff,PA 2801:19:2000::,2801:19:2000:ffff:ffff:ffff:ffff:ffff,CL 2801:19:4000::,2801:19:4000:ffff:ffff:ffff:ffff:ffff,PY 2801:19:6000::,2801:19:6000:ffff:ffff:ffff:ffff:ffff,CW 2801:19:8000::,2801:19:8000:ffff:ffff:ffff:ffff:ffff,EC 2801:19:a000::,2801:19:a000:ffff:ffff:ffff:ffff:ffff,BO 2801:19:c000::,2801:19:c000:ffff:ffff:ffff:ffff:ffff,AR 2801:19:e000::,2801:19:e000:ffff:ffff:ffff:ffff:ffff,CO 2801:1a::,2801:1a::ffff:ffff:ffff:ffff:ffff,CO 2801:1a:1000::,2801:1a:1000:ffff:ffff:ffff:ffff:ffff,CL 2801:1a:2000::,2801:1a:2000:ffff:ffff:ffff:ffff:ffff,SR 2801:1a:4000::,2801:1a:4000:ffff:ffff:ffff:ffff:ffff,CO 2801:1a:6000::,2801:1a:6000:ffff:ffff:ffff:ffff:ffff,CR 2801:1a:8000::,2801:1a:8000:ffff:ffff:ffff:ffff:ffff,CL 2801:1a:a000::,2801:1a:a000:ffff:ffff:ffff:ffff:ffff,AR 2801:1a:c000::,2801:1a:c000:ffff:ffff:ffff:ffff:ffff,CO 2801:1a:e000::,2801:1a:e000:ffff:ffff:ffff:ffff:ffff,DO 2801:1b::,2801:1b::ffff:ffff:ffff:ffff:ffff,CR 2801:1b:2000::,2801:1b:2000:ffff:ffff:ffff:ffff:ffff,UY 2801:1b:4000::,2801:1b:4000:ffff:ffff:ffff:ffff:ffff,CL 2801:1b:6000::,2801:1b:6000:ffff:ffff:ffff:ffff:ffff,CL 2801:1b:8000::,2801:1b:8000:ffff:ffff:ffff:ffff:ffff,CL 2801:1b:a000::,2801:1b:a000:ffff:ffff:ffff:ffff:ffff,AR 2801:1b:c000::,2801:1b:c000:ffff:ffff:ffff:ffff:ffff,PA 2801:1b:e000::,2801:1b:e000:ffff:ffff:ffff:ffff:ffff,NI 2801:1c::,2801:1c::ffff:ffff:ffff:ffff:ffff,PY 2801:1c:1000::,2801:1c:1000:ffff:ffff:ffff:ffff:ffff,PE 2801:1c:2000::,2801:1c:2000:ffff:ffff:ffff:ffff:ffff,PE 2801:1c:4000::,2801:1c:4000:ffff:ffff:ffff:ffff:ffff,CO 2801:1c:6000::,2801:1c:6000:ffff:ffff:ffff:ffff:ffff,PA 2801:1c:8000::,2801:1c:8000:ffff:ffff:ffff:ffff:ffff,EC 2801:1c:a000::,2801:1c:a000:ffff:ffff:ffff:ffff:ffff,CO 2801:1c:c000::,2801:1c:c000:ffff:ffff:ffff:ffff:ffff,HN 2801:1c:e000::,2801:1c:e000:ffff:ffff:ffff:ffff:ffff,CO 2801:1d::,2801:1d::ffff:ffff:ffff:ffff:ffff,PY 2801:1d:2000::,2801:1d:2000:ffff:ffff:ffff:ffff:ffff,GT 2801:1d:4000::,2801:1d:4000:ffff:ffff:ffff:ffff:ffff,TT 2801:1d:6000::,2801:1d:6000:ffff:ffff:ffff:ffff:ffff,NI 2801:1d:8000::,2801:1d:8000:ffff:ffff:ffff:ffff:ffff,AR 2801:1d:a000::,2801:1d:a000:ffff:ffff:ffff:ffff:ffff,CR 2801:1d:c000::,2801:1d:c000:ffff:ffff:ffff:ffff:ffff,AR 2801:1d:e000::,2801:1d:e000:ffff:ffff:ffff:ffff:ffff,CO 2801:1e::,2801:1e::ffff:ffff:ffff:ffff:ffff,EC 2801:1e:1000::,2801:1e:1000:ffff:ffff:ffff:ffff:ffff,AR 2801:1e:2000::,2801:1e:2000:ffff:ffff:ffff:ffff:ffff,AR 2801:1e:4000::,2801:1e:4007:ffff:ffff:ffff:ffff:ffff,AR 2801:1e:6000::,2801:1e:6000:ffff:ffff:ffff:ffff:ffff,CO 2801:1e:8000::,2801:1e:8000:ffff:ffff:ffff:ffff:ffff,CR 2801:1e:a000::,2801:1e:a000:ffff:ffff:ffff:ffff:ffff,AR 2801:1e:e000::,2801:1e:e000:ffff:ffff:ffff:ffff:ffff,SV 2801:1f::,2801:1f::ffff:ffff:ffff:ffff:ffff,AR 2801:1f:2000::,2801:1f:2000:ffff:ffff:ffff:ffff:ffff,CR 2801:1f:4000::,2801:1f:4000:ffff:ffff:ffff:ffff:ffff,CR 2801:1f:6000::,2801:1f:6000:ffff:ffff:ffff:ffff:ffff,AR 2801:1f:8000::,2801:1f:8000:ffff:ffff:ffff:ffff:ffff,AR 2801:1f:a000::,2801:1f:a000:ffff:ffff:ffff:ffff:ffff,CL 2801:1f:c000::,2801:1f:c000:ffff:ffff:ffff:ffff:ffff,CR 2801:1f:e000::,2801:1f:e000:ffff:ffff:ffff:ffff:ffff,AR 2801:80::,2801:80::ffff:ffff:ffff:ffff:ffff,BR 2801:80:10::,2801:80:10:ffff:ffff:ffff:ffff:ffff,BR 2801:80:20::,2801:80:30:ffff:ffff:ffff:ffff:ffff,BR 2801:80:40::,2801:80:40:ffff:ffff:ffff:ffff:ffff,BR 2801:80:50::,2801:80:50:ffff:ffff:ffff:ffff:ffff,BR 2801:80:60::,2801:80:60:ffff:ffff:ffff:ffff:ffff,BR 2801:80:70::,2801:80:70:ffff:ffff:ffff:ffff:ffff,BR 2801:80:80::,2801:80:80:ffff:ffff:ffff:ffff:ffff,BR 2801:80:90::,2801:80:90:ffff:ffff:ffff:ffff:ffff,BR 2801:80:a0::,2801:80:a0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:b0::,2801:80:b0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:c0::,2801:80:c0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:d0::,2801:80:d0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:e0::,2801:80:e0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:f0::,2801:80:f0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:100::,2801:80:100:ffff:ffff:ffff:ffff:ffff,BR 2801:80:110::,2801:80:110:ffff:ffff:ffff:ffff:ffff,BR 2801:80:120::,2801:80:120:ffff:ffff:ffff:ffff:ffff,BR 2801:80:130::,2801:80:130:ffff:ffff:ffff:ffff:ffff,BR 2801:80:140::,2801:80:140:ffff:ffff:ffff:ffff:ffff,BR 2801:80:150::,2801:80:150:ffff:ffff:ffff:ffff:ffff,BR 2801:80:160::,2801:80:160:ffff:ffff:ffff:ffff:ffff,BR 2801:80:170::,2801:80:170:ffff:ffff:ffff:ffff:ffff,BR 2801:80:180::,2801:80:180:ffff:ffff:ffff:ffff:ffff,BR 2801:80:190::,2801:80:190:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1a0::,2801:80:1a0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1b0::,2801:80:1b0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1c0::,2801:80:1c0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1d0::,2801:80:1d0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1e0::,2801:80:1e0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1f0::,2801:80:1f0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:200::,2801:80:200:ffff:ffff:ffff:ffff:ffff,BR 2801:80:210::,2801:80:210:ffff:ffff:ffff:ffff:ffff,BR 2801:80:220::,2801:80:220:ffff:ffff:ffff:ffff:ffff,BR 2801:80:230::,2801:80:230:ffff:ffff:ffff:ffff:ffff,BR 2801:80:240::,2801:80:240:ffff:ffff:ffff:ffff:ffff,BR 2801:80:250::,2801:80:250:ffff:ffff:ffff:ffff:ffff,BR 2801:80:260::,2801:80:260:ffff:ffff:ffff:ffff:ffff,BR 2801:80:270::,2801:80:270:ffff:ffff:ffff:ffff:ffff,BR 2801:80:280::,2801:80:280:ffff:ffff:ffff:ffff:ffff,BR 2801:80:290::,2801:80:290:ffff:ffff:ffff:ffff:ffff,BR 2801:80:2a0::,2801:80:2a0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:2b0::,2801:80:2b0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:2c0::,2801:80:2c0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:2d0::,2801:80:2d0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:2e0::,2801:80:2e0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:2f0::,2801:80:2f0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:300::,2801:80:300:ffff:ffff:ffff:ffff:ffff,BR 2801:80:320::,2801:80:320:ffff:ffff:ffff:ffff:ffff,BR 2801:80:330::,2801:80:330:ffff:ffff:ffff:ffff:ffff,BR 2801:80:340::,2801:80:340:ffff:ffff:ffff:ffff:ffff,BR 2801:80:350::,2801:80:350:ffff:ffff:ffff:ffff:ffff,BR 2801:80:360::,2801:80:360:ffff:ffff:ffff:ffff:ffff,BR 2801:80:370::,2801:80:370:ffff:ffff:ffff:ffff:ffff,BR 2801:80:380::,2801:80:380:ffff:ffff:ffff:ffff:ffff,BR 2801:80:390::,2801:80:390:ffff:ffff:ffff:ffff:ffff,BR 2801:80:3a0::,2801:80:3a0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:3b0::,2801:80:3b0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:3c0::,2801:80:3c0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:3d0::,2801:80:3d0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:3e0::,2801:80:3e0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:3f0::,2801:80:3f0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:400::,2801:80:400:ffff:ffff:ffff:ffff:ffff,BR 2801:80:410::,2801:80:410:ffff:ffff:ffff:ffff:ffff,BR 2801:80:420::,2801:80:420:ffff:ffff:ffff:ffff:ffff,BR 2801:80:430::,2801:80:430:ffff:ffff:ffff:ffff:ffff,BR 2801:80:440::,2801:80:440:ffff:ffff:ffff:ffff:ffff,BR 2801:80:450::,2801:80:450:ffff:ffff:ffff:ffff:ffff,BR 2801:80:460::,2801:80:460:ffff:ffff:ffff:ffff:ffff,BR 2801:80:470::,2801:80:470:ffff:ffff:ffff:ffff:ffff,BR 2801:80:480::,2801:80:480:ffff:ffff:ffff:ffff:ffff,BR 2801:80:490::,2801:80:490:ffff:ffff:ffff:ffff:ffff,BR 2801:80:4a0::,2801:80:4a0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:4b0::,2801:80:4b0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:4c0::,2801:80:4c0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:4d0::,2801:80:4d0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:4e0::,2801:80:4e0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:4f0::,2801:80:4f0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:500::,2801:80:500:ffff:ffff:ffff:ffff:ffff,BR 2801:80:510::,2801:80:510:ffff:ffff:ffff:ffff:ffff,BR 2801:80:520::,2801:80:520:ffff:ffff:ffff:ffff:ffff,BR 2801:80:530::,2801:80:530:ffff:ffff:ffff:ffff:ffff,BR 2801:80:540::,2801:80:540:ffff:ffff:ffff:ffff:ffff,BR 2801:80:550::,2801:80:550:ffff:ffff:ffff:ffff:ffff,BR 2801:80:560::,2801:80:560:ffff:ffff:ffff:ffff:ffff,BR 2801:80:570::,2801:80:570:ffff:ffff:ffff:ffff:ffff,BR 2801:80:580::,2801:80:581:ffff:ffff:ffff:ffff:ffff,BR 2801:80:590::,2801:80:590:ffff:ffff:ffff:ffff:ffff,BR 2801:80:5a0::,2801:80:5a0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:5b0::,2801:80:5b0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:5c0::,2801:80:5c0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:5d0::,2801:80:5d0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:5e0::,2801:80:5e0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:5f0::,2801:80:5f0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:600::,2801:80:600:ffff:ffff:ffff:ffff:ffff,BR 2801:80:610::,2801:80:610:ffff:ffff:ffff:ffff:ffff,BR 2801:80:620::,2801:80:620:ffff:ffff:ffff:ffff:ffff,BR 2801:80:630::,2801:80:630:ffff:ffff:ffff:ffff:ffff,BR 2801:80:640::,2801:80:640:ffff:ffff:ffff:ffff:ffff,BR 2801:80:650::,2801:80:651:ffff:ffff:ffff:ffff:ffff,BR 2801:80:660::,2801:80:660:ffff:ffff:ffff:ffff:ffff,BR 2801:80:670::,2801:80:670:ffff:ffff:ffff:ffff:ffff,BR 2801:80:680::,2801:80:680:ffff:ffff:ffff:ffff:ffff,BR 2801:80:690::,2801:80:690:ffff:ffff:ffff:ffff:ffff,BR 2801:80:6a0::,2801:80:6a0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:6b0::,2801:80:6b0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:6c0::,2801:80:6c0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:6d0::,2801:80:6d0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:6e0::,2801:80:6ef:ffff:ffff:ffff:ffff:ffff,BR 2801:80:710::,2801:80:710:ffff:ffff:ffff:ffff:ffff,BR 2801:80:720::,2801:80:720:ffff:ffff:ffff:ffff:ffff,BR 2801:80:730::,2801:80:730:ffff:ffff:ffff:ffff:ffff,BR 2801:80:740::,2801:80:740:ffff:ffff:ffff:ffff:ffff,BR 2801:80:750::,2801:80:750:ffff:ffff:ffff:ffff:ffff,BR 2801:80:760::,2801:80:760:ffff:ffff:ffff:ffff:ffff,BR 2801:80:770::,2801:80:770:ffff:ffff:ffff:ffff:ffff,BR 2801:80:780::,2801:80:780:ffff:ffff:ffff:ffff:ffff,BR 2801:80:790::,2801:80:790:ffff:ffff:ffff:ffff:ffff,BR 2801:80:7a0::,2801:80:7a0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:7b0::,2801:80:7b0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:7c0::,2801:80:7c3:ffff:ffff:ffff:ffff:ffff,BR 2801:80:7d0::,2801:80:7d0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:7e0::,2801:80:7e0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:7f0::,2801:80:7f0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:800::,2801:80:800:ffff:ffff:ffff:ffff:ffff,BR 2801:80:810::,2801:80:810:ffff:ffff:ffff:ffff:ffff,BR 2801:80:820::,2801:80:820:ffff:ffff:ffff:ffff:ffff,BR 2801:80:830::,2801:80:830:ffff:ffff:ffff:ffff:ffff,BR 2801:80:840::,2801:80:840:ffff:ffff:ffff:ffff:ffff,BR 2801:80:850::,2801:80:850:ffff:ffff:ffff:ffff:ffff,BR 2801:80:860::,2801:80:860:ffff:ffff:ffff:ffff:ffff,BR 2801:80:870::,2801:80:870:ffff:ffff:ffff:ffff:ffff,BR 2801:80:880::,2801:80:880:ffff:ffff:ffff:ffff:ffff,BR 2801:80:890::,2801:80:890:ffff:ffff:ffff:ffff:ffff,BR 2801:80:8a0::,2801:80:8a0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:8b0::,2801:80:8b0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:8c0::,2801:80:8c1:ffff:ffff:ffff:ffff:ffff,BR 2801:80:8d0::,2801:80:8d0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:8e0::,2801:80:8e0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:8f0::,2801:80:8f0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:900::,2801:80:900:ffff:ffff:ffff:ffff:ffff,BR 2801:80:910::,2801:80:910:ffff:ffff:ffff:ffff:ffff,BR 2801:80:920::,2801:80:920:ffff:ffff:ffff:ffff:ffff,BR 2801:80:930::,2801:80:930:ffff:ffff:ffff:ffff:ffff,BR 2801:80:940::,2801:80:940:ffff:ffff:ffff:ffff:ffff,BR 2801:80:950::,2801:80:950:ffff:ffff:ffff:ffff:ffff,BR 2801:80:960::,2801:80:960:ffff:ffff:ffff:ffff:ffff,BR 2801:80:970::,2801:80:970:ffff:ffff:ffff:ffff:ffff,BR 2801:80:980::,2801:80:980:ffff:ffff:ffff:ffff:ffff,BR 2801:80:990::,2801:80:990:ffff:ffff:ffff:ffff:ffff,BR 2801:80:9a0::,2801:80:9a0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:9b0::,2801:80:9b0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:9c0::,2801:80:9c0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:9d0::,2801:80:9d0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:9e0::,2801:80:9e0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:9f0::,2801:80:9f0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:a00::,2801:80:a00:ffff:ffff:ffff:ffff:ffff,BR 2801:80:a10::,2801:80:a10:ffff:ffff:ffff:ffff:ffff,BR 2801:80:a20::,2801:80:a20:ffff:ffff:ffff:ffff:ffff,BR 2801:80:a30::,2801:80:a30:ffff:ffff:ffff:ffff:ffff,BR 2801:80:a40::,2801:80:a40:ffff:ffff:ffff:ffff:ffff,BR 2801:80:a50::,2801:80:a50:ffff:ffff:ffff:ffff:ffff,BR 2801:80:a60::,2801:80:a61:ffff:ffff:ffff:ffff:ffff,BR 2801:80:a70::,2801:80:a70:ffff:ffff:ffff:ffff:ffff,BR 2801:80:a80::,2801:80:a8f:ffff:ffff:ffff:ffff:ffff,BR 2801:80:aa0::,2801:80:aa0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:ab0::,2801:80:ab0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:ac0::,2801:80:ac0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:ad0::,2801:80:ad0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:ae0::,2801:80:ae0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:af0::,2801:80:af0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:b00::,2801:80:b00:ffff:ffff:ffff:ffff:ffff,BR 2801:80:b10::,2801:80:b10:ffff:ffff:ffff:ffff:ffff,BR 2801:80:b20::,2801:80:b20:ffff:ffff:ffff:ffff:ffff,BR 2801:80:b30::,2801:80:b30:ffff:ffff:ffff:ffff:ffff,BR 2801:80:b50::,2801:80:b50:ffff:ffff:ffff:ffff:ffff,BR 2801:80:b60::,2801:80:b60:ffff:ffff:ffff:ffff:ffff,BR 2801:80:b70::,2801:80:b70:ffff:ffff:ffff:ffff:ffff,BR 2801:80:b80::,2801:80:b80:ffff:ffff:ffff:ffff:ffff,BR 2801:80:b90::,2801:80:b90:ffff:ffff:ffff:ffff:ffff,BR 2801:80:ba0::,2801:80:baf:ffff:ffff:ffff:ffff:ffff,BR 2801:80:bc0::,2801:80:bcf:ffff:ffff:ffff:ffff:ffff,BR 2801:80:be0::,2801:80:be0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:bf0::,2801:80:bf0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:c00::,2801:80:c00:ffff:ffff:ffff:ffff:ffff,BR 2801:80:c10::,2801:80:c10:ffff:ffff:ffff:ffff:ffff,BR 2801:80:c20::,2801:80:c20:ffff:ffff:ffff:ffff:ffff,BR 2801:80:c30::,2801:80:c30:ffff:ffff:ffff:ffff:ffff,BR 2801:80:c40::,2801:80:c40:ffff:ffff:ffff:ffff:ffff,BR 2801:80:c50::,2801:80:c50:ffff:ffff:ffff:ffff:ffff,BR 2801:80:c60::,2801:80:c60:ffff:ffff:ffff:ffff:ffff,BR 2801:80:c70::,2801:80:c70:ffff:ffff:ffff:ffff:ffff,BR 2801:80:c80::,2801:80:c80:ffff:ffff:ffff:ffff:ffff,BR 2801:80:c90::,2801:80:c90:ffff:ffff:ffff:ffff:ffff,BR 2801:80:ca0::,2801:80:ca0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:cb0::,2801:80:cb0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:cc0::,2801:80:cc0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:cd0::,2801:80:cd0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:ce0::,2801:80:ce0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:cf0::,2801:80:cf0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:d00::,2801:80:d00:ffff:ffff:ffff:ffff:ffff,BR 2801:80:d10::,2801:80:d10:ffff:ffff:ffff:ffff:ffff,BR 2801:80:d20::,2801:80:d2f:ffff:ffff:ffff:ffff:ffff,BR 2801:80:d40::,2801:80:d40:ffff:ffff:ffff:ffff:ffff,BR 2801:80:d50::,2801:80:d50:ffff:ffff:ffff:ffff:ffff,BR 2801:80:d60::,2801:80:d6f:ffff:ffff:ffff:ffff:ffff,BR 2801:80:d80::,2801:80:d80:ffff:ffff:ffff:ffff:ffff,BR 2801:80:d90::,2801:80:d90:ffff:ffff:ffff:ffff:ffff,BR 2801:80:da0::,2801:80:daf:ffff:ffff:ffff:ffff:ffff,BR 2801:80:dc0::,2801:80:dcf:ffff:ffff:ffff:ffff:ffff,BR 2801:80:de0::,2801:80:de0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:df0::,2801:80:df0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:e00::,2801:80:e00:ffff:ffff:ffff:ffff:ffff,BR 2801:80:e10::,2801:80:e10:ffff:ffff:ffff:ffff:ffff,BR 2801:80:e20::,2801:80:e20:ffff:ffff:ffff:ffff:ffff,BR 2801:80:e30::,2801:80:e30:ffff:ffff:ffff:ffff:ffff,BR 2801:80:e40::,2801:80:e40:ffff:ffff:ffff:ffff:ffff,BR 2801:80:e50::,2801:80:e50:ffff:ffff:ffff:ffff:ffff,BR 2801:80:e60::,2801:80:e60:ffff:ffff:ffff:ffff:ffff,BR 2801:80:e70::,2801:80:e70:ffff:ffff:ffff:ffff:ffff,BR 2801:80:e80::,2801:80:e80:ffff:ffff:ffff:ffff:ffff,BR 2801:80:e90::,2801:80:e90:ffff:ffff:ffff:ffff:ffff,BR 2801:80:ea0::,2801:80:ea0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:eb0::,2801:80:eb0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:ec0::,2801:80:ec0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:ed0::,2801:80:ed0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:ee0::,2801:80:ee0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:ef0::,2801:80:ef0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:f00::,2801:80:f00:ffff:ffff:ffff:ffff:ffff,BR 2801:80:f10::,2801:80:f10:ffff:ffff:ffff:ffff:ffff,BR 2801:80:f20::,2801:80:f20:ffff:ffff:ffff:ffff:ffff,BR 2801:80:f30::,2801:80:f30:ffff:ffff:ffff:ffff:ffff,BR 2801:80:f40::,2801:80:f4f:ffff:ffff:ffff:ffff:ffff,BR 2801:80:f60::,2801:80:f60:ffff:ffff:ffff:ffff:ffff,BR 2801:80:f70::,2801:80:f70:ffff:ffff:ffff:ffff:ffff,BR 2801:80:f80::,2801:80:f8f:ffff:ffff:ffff:ffff:ffff,BR 2801:80:fa0::,2801:80:faf:ffff:ffff:ffff:ffff:ffff,BR 2801:80:fc0::,2801:80:fc0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:fd0::,2801:80:fd0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:fe0::,2801:80:fe0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:ff0::,2801:80:ff0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1000::,2801:80:10ff:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1200::,2801:80:1200:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1210::,2801:80:1210:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1220::,2801:80:1220:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1230::,2801:80:1230:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1240::,2801:80:1240:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1250::,2801:80:1250:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1260::,2801:80:126f:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1280::,2801:80:1280:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1290::,2801:80:1290:ffff:ffff:ffff:ffff:ffff,BR 2801:80:12a0::,2801:80:12a0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:12b0::,2801:80:12b0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:12c0::,2801:80:12c0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:12d0::,2801:80:12d0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:12e0::,2801:80:12e0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:12f0::,2801:80:12f0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1300::,2801:80:1300:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1310::,2801:80:1310:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1320::,2801:80:1320:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1330::,2801:80:1330:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1340::,2801:80:1340:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1350::,2801:80:1350:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1360::,2801:80:1360:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1370::,2801:80:1370:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1380::,2801:80:1380:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1390::,2801:80:1390:ffff:ffff:ffff:ffff:ffff,BR 2801:80:13a0::,2801:80:13a0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:13b0::,2801:80:13b0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:13c0::,2801:80:13c0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:13d0::,2801:80:13d0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:13e0::,2801:80:13e0:ffff:ffff:ffff:ffff:ffff,BR 2801:80:1400::,2801:80:14ff:ffff:ffff:ffff:ffff:ffff,BR 2801:82::,2801:82:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:84::,2801:84:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:86::,2801:86:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:88::,2801:88:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:8a::,2801:8a:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:8c::,2801:8c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:8e::,2801:8e:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:90::,2801:90:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:92::,2801:92:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:94::,2801:94:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:96::,2801:96:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:98::,2801:98:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:9a::,2801:9a:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:9c::,2801:9c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:9e::,2801:9e:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:a0::,2801:a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:a2::,2801:a2:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:a4::,2801:a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:a6::,2801:a6:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:a8::,2801:a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:aa::,2801:aa:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:ac::,2801:ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:ae::,2801:ae:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:b0::,2801:b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:b2::,2801:b2:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:b4::,2801:b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:b6::,2801:b6:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:b8::,2801:b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:ba::,2801:ba:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:bc::,2801:bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:be::,2801:be:ffff:ffff:ffff:ffff:ffff:ffff,BR 2801:c0::,2801:c0:ffff:ffff:ffff:ffff:ffff:ffff,MX 2801:c4::,2801:c4::ffff:ffff:ffff:ffff:ffff,MX 2801:c4:10::,2801:c4:10:ffff:ffff:ffff:ffff:ffff,MX 2801:c4:20::,2801:c4:20:ffff:ffff:ffff:ffff:ffff,MX 2801:c4:30::,2801:c4:30:ffff:ffff:ffff:ffff:ffff,MX 2801:c4:40::,2801:c4:40:ffff:ffff:ffff:ffff:ffff,MX 2801:c4:50::,2801:c4:50:ffff:ffff:ffff:ffff:ffff,MX 2801:c4:60::,2801:c4:60:ffff:ffff:ffff:ffff:ffff,MX 2801:c4:80::,2801:c4:80:ffff:ffff:ffff:ffff:ffff,MX 2801:c4:90::,2801:c4:90:ffff:ffff:ffff:ffff:ffff,MX 2801:c4:a0::,2801:c4:a0:ffff:ffff:ffff:ffff:ffff,MX 2801:c4:b0::,2801:c4:b4:ffff:ffff:ffff:ffff:ffff,MX 2801:c5::,2801:c5:ffff:ffff:ffff:ffff:ffff:ffff,MX 2801:d0::,2801:d0:ffff:ffff:ffff:ffff:ffff:ffff,MX 2801:f0::,2801:f0::ffff:ffff:ffff:ffff:ffff,MX 2801:f0:16::,2801:f0:16:ffff:ffff:ffff:ffff:ffff,MX 2801:f0:20::,2801:f0:20:ffff:ffff:ffff:ffff:ffff,MX 2801:f0:28::,2801:f0:28:ffff:ffff:ffff:ffff:ffff,MX 2801:100::,2801:100:ff:ffff:ffff:ffff:ffff:ffff,AR 2801:108::,2801:108:f:ffff:ffff:ffff:ffff:ffff,CO 2801:110::,2801:110:1fff:ffff:ffff:ffff:ffff:ffff,CO 2801:118::,2801:118:ff:ffff:ffff:ffff:ffff:ffff,AR 2801:120::,2801:120:ffff:ffff:ffff:ffff:ffff:ffff,AR 2801:128::,2801:128:fff:ffff:ffff:ffff:ffff:ffff,UY 2801:130::,2801:130:fff:ffff:ffff:ffff:ffff:ffff,CO 2801:140::,2801:140:ffff:ffff:ffff:ffff:ffff:ffff,AR 2801:148::,2801:148:ff:ffff:ffff:ffff:ffff:ffff,AR 2801:150::,2801:150:ffff:ffff:ffff:ffff:ffff:ffff,PE 2801:160::,2801:160:ff:ffff:ffff:ffff:ffff:ffff,CO 2801:168::,2801:168:ff:ffff:ffff:ffff:ffff:ffff,AR 2801:170::,2801:170:fff:ffff:ffff:ffff:ffff:ffff,CO 2801:180::,2801:180:f:ffff:ffff:ffff:ffff:ffff,PA 2801:188::,2801:188:ff:ffff:ffff:ffff:ffff:ffff,AR 2801:190::,2801:190:fff:ffff:ffff:ffff:ffff:ffff,CO 2801:198::,2801:198:ffff:ffff:ffff:ffff:ffff:ffff,CL 2801:1a0::,2801:1a0:3f:ffff:ffff:ffff:ffff:ffff,CO 2801:1a8::,2801:1a8:ff:ffff:ffff:ffff:ffff:ffff,AR 2801:1b0::,2801:1b0:ff:ffff:ffff:ffff:ffff:ffff,CO 2801:1c0::,2801:1c0:1ff:ffff:ffff:ffff:ffff:ffff,AR 2801:1c8::,2801:1c8:fff:ffff:ffff:ffff:ffff:ffff,CO 2801:1d0::,2801:1d0:f:ffff:ffff:ffff:ffff:ffff,CO 2801:1e0::,2801:1e0:7f:ffff:ffff:ffff:ffff:ffff,AR 2801:1e8::,2801:1e8:ff:ffff:ffff:ffff:ffff:ffff,AR 2801:1f0::,2801:1f0:ffff:ffff:ffff:ffff:ffff:ffff,AR 2802::,2802:3:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803::,2803::ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:80::,2803:80:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:b4::,2803:b4:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:100::,2803:100:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:140::,2803:140:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:180::,2803:180:ffff:ffff:ffff:ffff:ffff:ffff,NI 2803:200::,2803:200:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:240::,2803:240:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:280::,2803:280:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:300::,2803:300:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:380::,2803:380:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:400::,2803:400:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:440::,2803:440:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:480::,2803:480:ffff:ffff:ffff:ffff:ffff:ffff,EC 2803:500::,2803:500:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:580::,2803:580:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:600::,2803:600:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:640::,2803:640:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:680::,2803:680:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:700::,2803:700:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:780::,2803:780:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:800::,2803:800:ffff:ffff:ffff:ffff:ffff:ffff,NI 2803:840::,2803:840:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:880::,2803:880:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:900::,2803:900:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:940::,2803:940:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:980::,2803:980:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:a00::,2803:a00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:a40::,2803:a40:ffff:ffff:ffff:ffff:ffff:ffff,NI 2803:a80::,2803:a80:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:b00::,2803:b00:ffff:ffff:ffff:ffff:ffff:ffff,EC 2803:b80::,2803:b80:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:c00::,2803:c00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:c40::,2803:c40:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:c80::,2803:c80:ffff:ffff:ffff:ffff:ffff:ffff,PY 2803:d00::,2803:d00:ffff:ffff:ffff:ffff:ffff:ffff,GY 2803:d80::,2803:d8f:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:e00::,2803:e00:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:e40::,2803:e40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:e80::,2803:e80:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:f00::,2803:f00:48a:ffff:ffff:ffff:ffff:ffff,PE 2803:f00:48b::,2803:f00:48e:ffff:ffff:ffff:ffff:ffff,CO 2803:f00:48f::,2803:f00:4a6:ffff:ffff:ffff:ffff:ffff,PE 2803:f00:4a7::,2803:f00:4a9:bfff:ffff:ffff:ffff:ffff,CL 2803:f00:4a9:c000::,2803:f00:4a9:ffff:ffff:ffff:ffff:ffff,PE 2803:f00:4aa::,2803:f00:4aa:ffff:ffff:ffff:ffff:ffff,CL 2803:f00:4ab::,2803:f00:68d:7fff:ffff:ffff:ffff:ffff,PE 2803:f00:68d:8000::,2803:f00:68d:ffff:ffff:ffff:ffff:ffff,CO 2803:f00:68e::,2803:f00:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:f80::,2803:f80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:1000::,2803:1000:ffff:ffff:ffff:ffff:ffff:ffff,SV 2803:1040::,2803:1040:ffff:ffff:ffff:ffff:ffff:ffff,NI 2803:1080::,2803:1080:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:1100::,2803:1100:ffff:ffff:ffff:ffff:ffff:ffff,CW 2803:1140::,2803:1140:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:1180::,2803:1180:ffff:ffff:ffff:ffff:ffff:ffff,BO 2803:1200::,2803:1200:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:1240::,2803:1240:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:1280::,2803:1280:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:1300::,2803:1300:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:1380::,2803:1380:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:1400::,2803:1400:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:1440::,2803:1440:ffff:ffff:ffff:ffff:ffff:ffff,GT 2803:1500::,2803:1500:ffff:ffff:ffff:ffff:ffff:ffff,TT 2803:1580::,2803:1580:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:1600::,2803:1600:ffff:ffff:ffff:ffff:ffff:ffff,BQ 2803:1640::,2803:1640:ffff:ffff:ffff:ffff:ffff:ffff,NI 2803:1680::,2803:1680:ffff:ffff:ffff:ffff:ffff:ffff,GF 2803:1700::,2803:1700:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:1780::,2803:1780:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:1800::,2803:1800:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:1840::,2803:1840:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:1880::,2803:1880:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:1900::,2803:1900:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:1980::,2803:1980:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:1a00::,2803:1a00:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:1a40::,2803:1a40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:1a80::,2803:1a80:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:1b00::,2803:1b00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:1b80::,2803:1b80:ffff:ffff:ffff:ffff:ffff:ffff,TT 2803:1c40::,2803:1c40:ffff:ffff:ffff:ffff:ffff:ffff,NI 2803:1c80::,2803:1c80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:1d00::,2803:1d00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:1d80::,2803:1d80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:1e00::,2803:1e00:ffff:ffff:ffff:ffff:ffff:ffff,NI 2803:1e40::,2803:1e40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:1e80::,2803:1e80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:1f00::,2803:1f00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:1f80::,2803:1f80:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:2000::,2803:2000:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:2040::,2803:2040:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:2080::,2803:2080:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:2100::,2803:2100:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:2140::,2803:2140:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:2180::,2803:2180:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:2200::,2803:2200:ffff:ffff:ffff:ffff:ffff:ffff,EC 2803:2240::,2803:2240:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:2280::,2803:2280:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:2300::,2803:2300:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:2380::,2803:2380:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:2400::,2803:2400:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:2440::,2803:2440:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:2480::,2803:2480:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:2500::,2803:2500:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:2580::,2803:2580:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:2600::,2803:2600:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:2640::,2803:2640:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:2680::,2803:2680:ffff:ffff:ffff:ffff:ffff:ffff,UY 2803:2700::,2803:2700:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:2780::,2803:2780:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:2800::,2803:2800:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:2840::,2803:2840:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:2880::,2803:2880:ffff:ffff:ffff:ffff:ffff:ffff,BO 2803:2900::,2803:2900:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:2940::,2803:2940:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:2980::,2803:2980:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:2a00::,2803:2a00:ffff:ffff:ffff:ffff:ffff:ffff,PY 2803:2a40::,2803:2a40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:2a80::,2803:2a80:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:2b00::,2803:2b00:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:2b80::,2803:2b80:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:2c00::,2803:2c00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:2c40::,2803:2c40:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:2c80::,2803:2c80:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:2d00::,2803:2d00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:2d80::,2803:2d80:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:2e00::,2803:2e00:ffff:ffff:ffff:ffff:ffff:ffff,EC 2803:2e40::,2803:2e40:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:2e80::,2803:2e80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:2f00::,2803:2f00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:2f80::,2803:2f80:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:3000::,2803:3000:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:3040::,2803:3040:ffff:ffff:ffff:ffff:ffff:ffff,CW 2803:3100::,2803:3100:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:3140::,2803:3140:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:3180::,2803:3180:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:3200::,2803:3200:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:3240::,2803:3240:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:3280::,2803:3280:ffff:ffff:ffff:ffff:ffff:ffff,GT 2803:3300::,2803:3300:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:3380::,2803:3380:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:3400::,2803:3400:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:3440::,2803:3440:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:3480::,2803:3480:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:3500::,2803:3500:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:3580::,2803:3580:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:3600::,2803:3600:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:3640::,2803:3640:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:3680::,2803:3680:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:3700::,2803:3700:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:3780::,2803:3780:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:3800::,2803:3800:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:3840::,2803:3840:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:3880::,2803:3880:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:3900::,2803:3900:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:3980::,2803:3980:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:3a00::,2803:3a00:ffff:ffff:ffff:ffff:ffff:ffff,GT 2803:3a40::,2803:3a40:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:3a80::,2803:3a80:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:3b00::,2803:3b00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:3b80::,2803:3b80:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:3c00::,2803:3c00:ffff:ffff:ffff:ffff:ffff:ffff,EC 2803:3c40::,2803:3c40:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:3c80::,2803:3c80:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:3d00::,2803:3d00:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:3d80::,2803:3d80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:3e00::,2803:3e00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:3e40::,2803:3e40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:3e80::,2803:3e80:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:3f00::,2803:3f00:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:3f80::,2803:3f80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4000::,2803:4000:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4040::,2803:4040:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4080::,2803:4080:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4100::,2803:4100:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4140::,2803:4140:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4180::,2803:4180:ffff:ffff:ffff:ffff:ffff:ffff,EC 2803:4200::,2803:4200:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:4240::,2803:4240:ffff:ffff:ffff:ffff:ffff:ffff,PY 2803:4280::,2803:4280:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4300::,2803:4300:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:4380::,2803:4380:ffff:ffff:ffff:ffff:ffff:ffff,BO 2803:4400::,2803:4400:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4440::,2803:4440:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4480::,2803:4480:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:4500::,2803:4500:ffff:ffff:ffff:ffff:ffff:ffff,CW 2803:4580::,2803:4580:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:4600::,2803:4600:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:4640::,2803:4640:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:4680::,2803:4680:ffff:ffff:ffff:ffff:ffff:ffff,TT 2803:4700::,2803:4700:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4780::,2803:4780:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:4800::,2803:4800:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:4840::,2803:4840:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4880::,2803:4880:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4900::,2803:4900:ffff:ffff:ffff:ffff:ffff:ffff,BQ 2803:4940::,2803:4940:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4980::,2803:4980:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4a40::,2803:4a40:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:4a80::,2803:4a80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4b00::,2803:4b00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4b80::,2803:4b80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4c00::,2803:4c00:ffff:ffff:ffff:ffff:ffff:ffff,EC 2803:4c40::,2803:4c40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4c80::,2803:4c80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4d00::,2803:4d00:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:4d80::,2803:4d80:ffff:ffff:ffff:ffff:ffff:ffff,CW 2803:4e00::,2803:4e00:ffff:ffff:ffff:ffff:ffff:ffff,UY 2803:4e40::,2803:4e40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:4e80::,2803:4e80:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:4f00::,2803:4f00:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:4f80::,2803:4f80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:5000::,2803:5000:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:5040::,2803:5040:ffff:ffff:ffff:ffff:ffff:ffff,SV 2803:5080::,2803:5080:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:5100::,2803:5100:ffff:ffff:ffff:ffff:ffff:ffff,GT 2803:5140::,2803:5140:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:5180::,2803:5180:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:5200::,2803:5200:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:5240::,2803:5240:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:5280::,2803:5280:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:5300::,2803:5300:ffff:ffff:ffff:ffff:ffff:ffff,GT 2803:5380::,2803:5380:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:5400::,2803:5400:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:5440::,2803:5440:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:5480::,2803:5480:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:5500::,2803:5500:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:5580::,2803:5580:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:5600::,2803:5600:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:5640::,2803:5640:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:5680::,2803:5680:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:5700::,2803:5700:ffff:ffff:ffff:ffff:ffff:ffff,BO 2803:5780::,2803:5780:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:5840::,2803:5840:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:5880::,2803:5880:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:5900::,2803:5900:ffff:ffff:ffff:ffff:ffff:ffff,GF 2803:5980::,2803:5980:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:5a00::,2803:5a00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:5a40::,2803:5a40:ffff:ffff:ffff:ffff:ffff:ffff,PY 2803:5a80::,2803:5a80:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:5b00::,2803:5b00:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:5b80::,2803:5b80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:5c00::,2803:5c00:ffff:ffff:ffff:ffff:ffff:ffff,BO 2803:5c40::,2803:5c40:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:5c80::,2803:5c80:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:5d00::,2803:5d00:ffff:ffff:ffff:ffff:ffff:ffff,SV 2803:5d80::,2803:5d80:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:5e00::,2803:5e00:ffff:ffff:ffff:ffff:ffff:ffff,BO 2803:5e40::,2803:5e40:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:5e80::,2803:5e80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:5f80::,2803:5f80:ffff:ffff:ffff:ffff:ffff:ffff,EC 2803:6000::,2803:6000:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:6040::,2803:6040:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:6080::,2803:6087:ffff:ffff:ffff:ffff:ffff:ffff,US 2803:6100::,2803:6100:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:6140::,2803:6140:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:6180::,2803:6180:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:6200::,2803:6200:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:6240::,2803:6240:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:6280::,2803:6280:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:6300::,2803:6300:ffff:ffff:ffff:ffff:ffff:ffff,GT 2803:6380::,2803:6380:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:6400::,2803:6400:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:6440::,2803:6440:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:6480::,2803:6480:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:6500::,2803:6500:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:6580::,2803:6580:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:6600::,2803:6600:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:6640::,2803:6640:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:6680::,2803:6680:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:6700::,2803:6700:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:6780::,2803:6780:ffff:ffff:ffff:ffff:ffff:ffff,SV 2803:6800::,2803:6800:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:6840::,2803:6840:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:6880::,2803:6880:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:6900::,2803:6900:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:6980::,2803:6980:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:6a00::,2803:6a00:ffff:ffff:ffff:ffff:ffff:ffff,EC 2803:6a40::,2803:6a40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:6a80::,2803:6a80:ffff:ffff:ffff:ffff:ffff:ffff,NI 2803:6b00::,2803:6b00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:6b80::,2803:6b80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:6c00::,2803:6c00:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:6c40::,2803:6c40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:6c80::,2803:6c80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:6d00::,2803:6d00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:6d80::,2803:6d80:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:6e00::,2803:6e00:ffff:ffff:ffff:ffff:ffff:ffff,SR 2803:6e40::,2803:6e40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:6e80::,2803:6e80:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:6f00::,2803:6f00:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:6f80::,2803:6f80:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:7000::,2803:7000:ffff:ffff:ffff:ffff:ffff:ffff,GT 2803:7040::,2803:7040:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7080::,2803:7080:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7100::,2803:7100:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7140::,2803:7140:ffff:ffff:ffff:ffff:ffff:ffff,GT 2803:7180::,2803:7180:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:7200::,2803:7200:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:7240::,2803:7240:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7280::,2803:7280:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:7300::,2803:7300:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7380::,2803:7380:ffff:ffff:ffff:ffff:ffff:ffff,SX 2803:7400::,2803:7400:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7440::,2803:7440:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7480::,2803:7480:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7500::,2803:7500:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:7580::,2803:7580:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7600::,2803:7600:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7640::,2803:7640:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:7680::,2803:7680:ffff:ffff:ffff:ffff:ffff:ffff,BO 2803:7700::,2803:7700:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7780::,2803:7780:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:7800::,2803:7800:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:7840::,2803:7840:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7880::,2803:7880:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7900::,2803:7900:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:7980::,2803:7980:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:7a00::,2803:7a00:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:7a40::,2803:7a40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7a80::,2803:7a80:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:7b00::,2803:7b00:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:7b80::,2803:7b80:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:7c00::,2803:7c00:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:7c40::,2803:7c40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7c80::,2803:7c80:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:7d00::,2803:7d00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7d80::,2803:7d80:ffff:ffff:ffff:ffff:ffff:ffff,PY 2803:7e00::,2803:7e00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7e40::,2803:7e40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7e80::,2803:7e80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:7f00::,2803:7f00:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:7f80::,2803:7f80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:8000::,2803:8000:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:8040::,2803:8040:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:8080::,2803:8080:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:8100::,2803:8100:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:8140::,2803:8140:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:8180::,2803:8180:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:8200::,2803:8200:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:8240::,2803:8240:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:8280::,2803:8280:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:8300::,2803:8300:ffff:ffff:ffff:ffff:ffff:ffff,EC 2803:8380::,2803:8380:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:8400::,2803:8400:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:8440::,2803:8440:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:8480::,2803:8480:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:8500::,2803:8500:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:8580::,2803:8580:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:8600::,2803:8600:ffff:ffff:ffff:ffff:ffff:ffff,HT 2803:8640::,2803:8640:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:8680::,2803:8680:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:8700::,2803:8700:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:8780::,2803:8780:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:8800::,2803:8800:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:8840::,2803:8840:ffff:ffff:ffff:ffff:ffff:ffff,SV 2803:8880::,2803:8880:ffff:ffff:ffff:ffff:ffff:ffff,NI 2803:8900::,2803:8900:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:8940::,2803:8940:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:8980::,2803:8980:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:8a40::,2803:8a40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:8a80::,2803:8a80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:8b00::,2803:8b00:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:8b80::,2803:8b80:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:8c00::,2803:8c00:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:8c40::,2803:8c40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:8c80::,2803:8c80:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:8d00::,2803:8d00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:8d80::,2803:8d80:ffff:ffff:ffff:ffff:ffff:ffff,UY 2803:8e00::,2803:8e00:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:8e40::,2803:8e40:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:8e80::,2803:8e80:ffff:ffff:ffff:ffff:ffff:ffff,PY 2803:8f00::,2803:8f00:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:8f80::,2803:8f80:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:9000::,2803:9000:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9040::,2803:9040:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:9080::,2803:9080:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:9100::,2803:9100:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9140::,2803:9140:ffff:ffff:ffff:ffff:ffff:ffff,NI 2803:9180::,2803:9180:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:9200::,2803:9200:ffff:ffff:ffff:ffff:ffff:ffff,SV 2803:9240::,2803:9240:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9280::,2803:9280:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9300::,2803:9300:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9380::,2803:9380:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:9400::,2803:9400:ffff:ffff:ffff:ffff:ffff:ffff,BO 2803:9440::,2803:9440:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9480::,2803:9480:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9500::,2803:9500:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9580::,2803:9580:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9600::,2803:9600:ffff:ffff:ffff:ffff:ffff:ffff,CW 2803:9640::,2803:9640:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:9680::,2803:9680:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9700::,2803:9700:ffff:ffff:ffff:ffff:ffff:ffff,EC 2803:9780::,2803:9780:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9800::,2803:9800:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9840::,2803:9840:ffff:ffff:ffff:ffff:ffff:ffff,NI 2803:9880::,2803:9880:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:9900::,2803:9900:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:9980::,2803:9980:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:9a00::,2803:9a00:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:9a40::,2803:9a40:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:9a80::,2803:9a80:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:9b00::,2803:9b00:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:9b80::,2803:9b80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9c00::,2803:9c00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9c40::,2803:9c40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9c80::,2803:9c80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9d00::,2803:9d00:ffff:ffff:ffff:ffff:ffff:ffff,SV 2803:9d80::,2803:9d80:ffff:ffff:ffff:ffff:ffff:ffff,SV 2803:9e00::,2803:9e00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9e40::,2803:9e40:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:9e80::,2803:9e80:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:9f00::,2803:9f00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:9f80::,2803:9f80:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:a000::,2803:a000:ffff:ffff:ffff:ffff:ffff:ffff,BQ 2803:a040::,2803:a040:ffff:ffff:ffff:ffff:ffff:ffff,PY 2803:a080::,2803:a080:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:a100::,2803:a100:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:a140::,2803:a140:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:a180::,2803:a180:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:a200::,2803:a200:ffff:ffff:ffff:ffff:ffff:ffff,SR 2803:a240::,2803:a240:ffff:ffff:ffff:ffff:ffff:ffff,EC 2803:a280::,2803:a280:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:a380::,2803:a380:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:a400::,2803:a400:ffff:ffff:ffff:ffff:ffff:ffff,EC 2803:a440::,2803:a440:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:a480::,2803:a480:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:a500::,2803:a500:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:a580::,2803:a580:ffff:ffff:ffff:ffff:ffff:ffff,HT 2803:a600::,2803:a600:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:a640::,2803:a640:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:a680::,2803:a680:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:a700::,2803:a700:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:a780::,2803:a780:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:a800::,2803:a800:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:a840::,2803:a840:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:a880::,2803:a880:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:a900::,2803:a900:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:a940::,2803:a940:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:a980::,2803:a980:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:aa00::,2803:aa00:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:aa40::,2803:aa40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:aa80::,2803:aa80:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:ab00::,2803:ab00:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:ab80::,2803:ab80:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:ac00::,2803:ac00:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:ac40::,2803:ac40:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:ac80::,2803:ac80:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:ad00::,2803:ad00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:ad80::,2803:ad80:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:ae00::,2803:ae00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:ae40::,2803:ae40:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:ae80::,2803:ae80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:af00::,2803:af00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:af80::,2803:af80:ffff:ffff:ffff:ffff:ffff:ffff,PY 2803:b000::,2803:b000:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:b080::,2803:b080:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:b100::,2803:b100:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:b140::,2803:b140:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:b180::,2803:b180:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:b200::,2803:b200:ffff:ffff:ffff:ffff:ffff:ffff,UY 2803:b240::,2803:b240:ffff:ffff:ffff:ffff:ffff:ffff,PY 2803:b280::,2803:b280:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:b300::,2803:b300:ffff:ffff:ffff:ffff:ffff:ffff,PY 2803:b380::,2803:b380:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:b400::,2803:b400:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:b440::,2803:b440:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:b480::,2803:b480:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:b500::,2803:b500:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:b580::,2803:b580:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:b600::,2803:b600:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:b640::,2803:b640:ffff:ffff:ffff:ffff:ffff:ffff,AW 2803:b680::,2803:b680:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:b700::,2803:b700:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:b780::,2803:b780:ffff:ffff:ffff:ffff:ffff:ffff,NI 2803:b800::,2803:b800:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:b840::,2803:b840:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:b880::,2803:b880:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:b900::,2803:b900:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:ba00::,2803:ba00:ffff:ffff:ffff:ffff:ffff:ffff,GT 2803:ba40::,2803:ba40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:ba80::,2803:ba80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:bb00::,2803:bb00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:bb80::,2803:bb80:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:bc00::,2803:bc00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:bc40::,2803:bc40:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:bc80::,2803:bc80:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:bd00::,2803:bd00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:bd80::,2803:bd80:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:be00::,2803:be00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:be40::,2803:be40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:be80::,2803:be80:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:bf00::,2803:bf00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:bf80::,2803:bf80:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:c000::,2803:c000:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:c040::,2803:c040:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:c080::,2803:c080:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:c100::,2803:c100:ffff:ffff:ffff:ffff:ffff:ffff,PY 2803:c140::,2803:c140:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:c180::,2803:c180:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:c200::,2803:c200:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:c240::,2803:c240:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:c280::,2803:c280:ffff:ffff:ffff:ffff:ffff:ffff,EC 2803:c300::,2803:c300:ffff:ffff:ffff:ffff:ffff:ffff,GT 2803:c380::,2803:c380:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:c400::,2803:c400:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:c440::,2803:c440:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:c480::,2803:c480:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:c500::,2803:c500:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:c580::,2803:c580:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:c600::,2803:c600:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:c640::,2803:c640:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:c680::,2803:c680:ffff:ffff:ffff:ffff:ffff:ffff,HT 2803:c700::,2803:c700:ffff:ffff:ffff:ffff:ffff:ffff,GF 2803:c780::,2803:c780:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:c800::,2803:c800:ffff:ffff:ffff:ffff:ffff:ffff,GT 2803:c840::,2803:c840:ffff:ffff:ffff:ffff:ffff:ffff,GT 2803:c880::,2803:c880:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:c900::,2803:c900:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:c940::,2803:c940:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:c980::,2803:c980:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:ca00::,2803:ca00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:ca40::,2803:ca40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:ca80::,2803:ca80:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:cb00::,2803:cb00:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:cb80::,2803:cb80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:cc00::,2803:cc00:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:cc40::,2803:cc40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:cc80::,2803:cc80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:cd00::,2803:cd00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:cd80::,2803:cd80:ffff:ffff:ffff:ffff:ffff:ffff,TT 2803:ce00::,2803:ce00:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:ce40::,2803:ce40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:ce80::,2803:ce80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:cf00::,2803:cf00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:cf80::,2803:cf80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:d000::,2803:d000:fffd:ffff:ffff:ffff:ffff:ffff,BZ 2803:d000:fffe::,2803:d000:fffe:ffff:ffff:ffff:ffff:ffff,US 2803:d000:ffff::,2803:d000:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:d040::,2803:d040:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:d080::,2803:d080:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:d100::,2803:d100:ffff:ffff:ffff:ffff:ffff:ffff,GT 2803:d140::,2803:d140:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:d180::,2803:d180:ffff:ffff:ffff:ffff:ffff:ffff,EC 2803:d200::,2803:d200:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:d240::,2803:d240:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:d280::,2803:d280:ffff:ffff:ffff:ffff:ffff:ffff,PY 2803:d300::,2803:d300:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:d380::,2803:d380:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:d400::,2803:d400:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:d440::,2803:d440:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:d480::,2803:d480:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:d500::,2803:d500:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:d580::,2803:d580:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:d600::,2803:d600:ffff:ffff:ffff:ffff:ffff:ffff,UY 2803:d640::,2803:d640:ffff:ffff:ffff:ffff:ffff:ffff,SV 2803:d680::,2803:d680:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:d700::,2803:d700:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:d780::,2803:d780:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:d800::,2803:d800:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:d840::,2803:d840:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:d880::,2803:d880:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:d900::,2803:d900:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:d980::,2803:d980:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:da00::,2803:da00:ffff:ffff:ffff:ffff:ffff:ffff,GY 2803:da40::,2803:da40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:da80::,2803:da80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:db00::,2803:db00:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:db80::,2803:db80:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:dc00::,2803:dc00:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:dc40::,2803:dc40:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:dc80::,2803:dc80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:dd00::,2803:dd00:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:dd80::,2803:dd80:ffff:ffff:ffff:ffff:ffff:ffff,VE 2803:de00::,2803:de00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:de40::,2803:de40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:de80::,2803:de80:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:df00::,2803:df00:ffff:ffff:ffff:ffff:ffff:ffff,SV 2803:df80::,2803:df80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:e000::,2803:e000:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:e040::,2803:e040:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:e080::,2803:e080:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:e100::,2803:e100:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:e140::,2803:e140:ffff:ffff:ffff:ffff:ffff:ffff,PY 2803:e180::,2803:e180:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:e200::,2803:e200:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:e240::,2803:e240:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:e280::,2803:e280:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:e300::,2803:e300:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:e380::,2803:e380:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:e400::,2803:e400:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:e440::,2803:e440:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:e480::,2803:e480:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:e500::,2803:e500:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:e580::,2803:e580:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:e600::,2803:e600:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:e640::,2803:e640:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:e680::,2803:e680:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:e700::,2803:e700:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:e780::,2803:e780:ffff:ffff:ffff:ffff:ffff:ffff,PY 2803:e800::,2803:e800:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:e840::,2803:e840:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:e880::,2803:e880:ffff:ffff:ffff:ffff:ffff:ffff,GT 2803:e900::,2803:e900:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:e980::,2803:e980:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:ea00::,2803:ea00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:ea40::,2803:ea40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:ea80::,2803:ea80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:eb00::,2803:eb00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:eb80::,2803:eb80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:ec00::,2803:ec00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:ec40::,2803:ec40:ffff:ffff:ffff:ffff:ffff:ffff,EC 2803:ec80::,2803:ec80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:ed00::,2803:ed00:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:ed80::,2803:ed80:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:ee00::,2803:ee00:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:ee40::,2803:ee40:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:ee80::,2803:ee80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:ef00::,2803:ef00:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:ef80::,2803:ef80:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:f000::,2803:f000:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:f040::,2803:f040:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:f080::,2803:f080:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:f100::,2803:f100:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:f140::,2803:f140:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:f180::,2803:f180:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:f200::,2803:f200:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:f240::,2803:f240:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:f280::,2803:f280:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:f300::,2803:f300:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:f380::,2803:f380:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:f400::,2803:f400:ffff:ffff:ffff:ffff:ffff:ffff,HN 2803:f440::,2803:f440:ffff:ffff:ffff:ffff:ffff:ffff,PY 2803:f480::,2803:f480:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:f500::,2803:f500:ffff:ffff:ffff:ffff:ffff:ffff,CW 2803:f580::,2803:f580:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:f600::,2803:f600:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:f640::,2803:f640:ffff:ffff:ffff:ffff:ffff:ffff,BQ 2803:f680::,2803:f680:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:f700::,2803:f700:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:f780::,2803:f780:ffff:ffff:ffff:ffff:ffff:ffff,DO 2803:f800::,2803:f800:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:f840::,2803:f840:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:f900::,2803:f900:ffff:ffff:ffff:ffff:ffff:ffff,BZ 2803:f980::,2803:f980:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:fa00::,2803:fa00:ffff:ffff:ffff:ffff:ffff:ffff,BO 2803:fa40::,2803:fa40:ffff:ffff:ffff:ffff:ffff:ffff,SV 2803:fa80::,2803:fa80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:fb00::,2803:fb00:ffff:ffff:ffff:ffff:ffff:ffff,PA 2803:fb80::,2803:fb80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:fc00::,2803:fc00:ffff:ffff:ffff:ffff:ffff:ffff,PY 2803:fc40::,2803:fc40:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:fc80::,2803:fc80:ffff:ffff:ffff:ffff:ffff:ffff,AR 2803:fd00::,2803:fd00:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:fd80::,2803:fd80:ffff:ffff:ffff:ffff:ffff:ffff,CL 2803:fe00::,2803:fe00:ffff:ffff:ffff:ffff:ffff:ffff,CO 2803:fe40::,2803:fe40:ffff:ffff:ffff:ffff:ffff:ffff,CR 2803:fe80::,2803:fe80:ffff:ffff:ffff:ffff:ffff:ffff,PE 2803:ff80::,2803:ff80:ffff:ffff:ffff:ffff:ffff:ffff,CO 2804::,2804::ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4::,2804:4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8::,2804:c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10::,2804:10:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14::,2804:14:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18::,2804:18:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c::,2804:1c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20::,2804:20:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24::,2804:24:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28::,2804:28:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2c::,2804:2c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:30::,2804:30:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:34::,2804:34:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:38::,2804:38:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3c::,2804:3c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:40::,2804:40:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:44::,2804:44:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:48::,2804:48:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4c::,2804:4c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:50::,2804:50:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:54::,2804:54:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:58::,2804:58:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5c::,2804:5c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:60::,2804:60:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:64::,2804:64:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:68::,2804:68:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6c::,2804:6c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:70::,2804:70:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:74::,2804:74:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:78::,2804:78:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7c::,2804:7c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:80::,2804:80:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:84::,2804:84:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:88::,2804:88:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8c::,2804:8c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:90::,2804:90:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:94::,2804:94:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:98::,2804:98:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9c::,2804:9c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a0::,2804:a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a4::,2804:a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a8::,2804:a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ac::,2804:ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b0::,2804:b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b4::,2804:b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b8::,2804:b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c0::,2804:c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c4::,2804:c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c8::,2804:c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cc::,2804:cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d0::,2804:d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d4::,2804:d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d8::,2804:d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:dc::,2804:dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e0::,2804:e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e4::,2804:e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e8::,2804:e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ec::,2804:ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f0::,2804:f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f4::,2804:f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f8::,2804:f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fc::,2804:fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:100::,2804:100:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:104::,2804:104:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10c::,2804:10c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:110::,2804:110:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:114::,2804:114:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:118::,2804:118:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11c::,2804:11c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:120::,2804:120:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:124::,2804:124:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:128::,2804:128:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12c::,2804:12c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:130::,2804:130:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:134::,2804:134:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:138::,2804:138:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13c::,2804:13c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:140::,2804:140:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:144::,2804:144:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:148::,2804:148:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14c::,2804:14d:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:150::,2804:154:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:158::,2804:158:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15c::,2804:15c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:160::,2804:160:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:164::,2804:164:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:168::,2804:168:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16c::,2804:16c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:170::,2804:170:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:174::,2804:174:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:178::,2804:178:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17c::,2804:17c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:180::,2804:180:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:184::,2804:184:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:188::,2804:188:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18c::,2804:18c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:190::,2804:190:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:194::,2804:194:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:198::,2804:198:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19c::,2804:19c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a0::,2804:1a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a4::,2804:1a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a8::,2804:1a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ac::,2804:1ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b0::,2804:1b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bc::,2804:1bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c0::,2804:1c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c4::,2804:1c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c8::,2804:1c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cc::,2804:1cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d0::,2804:1d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d4::,2804:1d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d8::,2804:1d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1dc::,2804:1dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e0::,2804:1e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e8::,2804:1e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ec::,2804:1ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1f0::,2804:1f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1f4::,2804:1f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1f8::,2804:1f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:200::,2804:200:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:204::,2804:204:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:208::,2804:208:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20c::,2804:20c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:210::,2804:210:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:214::,2804:214:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:218::,2804:218:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:220::,2804:220:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:224::,2804:224:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:228::,2804:228:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22c::,2804:22c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:230::,2804:230:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:234::,2804:234:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:238::,2804:238:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23c::,2804:23c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:240::,2804:240:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:244::,2804:244:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:248::,2804:248:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24c::,2804:24c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:250::,2804:250:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:254::,2804:254:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:258::,2804:258:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25c::,2804:25c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:260::,2804:260:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:268::,2804:268:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26c::,2804:26c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:270::,2804:270:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:274::,2804:274:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27c::,2804:27c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:280::,2804:280:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:284::,2804:284:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:288::,2804:288:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28c::,2804:28c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:290::,2804:290:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:294::,2804:294:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:298::,2804:298:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a0::,2804:2a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a4::,2804:2a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a8::,2804:2a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2ac::,2804:2ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b0::,2804:2b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b4::,2804:2b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b8::,2804:2b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2bc::,2804:2bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2c0::,2804:2c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2c8::,2804:2c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2cc::,2804:2cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2d0::,2804:2d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2d4::,2804:2d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2d8::,2804:2d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2dc::,2804:2dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2e0::,2804:2e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2e4::,2804:2e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2e8::,2804:2e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2ec::,2804:2ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2f0::,2804:2f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2f4::,2804:2f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2f8::,2804:2f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2fc::,2804:2fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:300::,2804:303:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:308::,2804:308:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:30c::,2804:30c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:310::,2804:310:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:314::,2804:314:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:318::,2804:318:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:31c::,2804:31c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:320::,2804:320:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:324::,2804:324:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:328::,2804:328:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:330::,2804:330:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:334::,2804:334:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:338::,2804:338:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:33c::,2804:33c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:340::,2804:340:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:344::,2804:344:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:348::,2804:348:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:350::,2804:350:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:354::,2804:354:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:358::,2804:358:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:35c::,2804:35c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:360::,2804:360:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:364::,2804:364:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:368::,2804:368:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:36c::,2804:36c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:370::,2804:370:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:374::,2804:374:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:378::,2804:378:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:37c::,2804:37c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:380::,2804:380:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:384::,2804:384:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:388::,2804:38b:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:390::,2804:390:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:394::,2804:394:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:39c::,2804:39c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3a0::,2804:3a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3a4::,2804:3a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3a8::,2804:3a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3ac::,2804:3ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3b0::,2804:3b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3b4::,2804:3b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3b8::,2804:3b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3bc::,2804:3bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3c0::,2804:3c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3c4::,2804:3c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3c8::,2804:3c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3cc::,2804:3cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3d0::,2804:3d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3d4::,2804:3d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3d8::,2804:3d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3dc::,2804:3dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3e0::,2804:3e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3e4::,2804:3e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3e8::,2804:3e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3ec::,2804:3ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3f0::,2804:3f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3f4::,2804:3f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3f8::,2804:3f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:3fc::,2804:3fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:400::,2804:400:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:404::,2804:404:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:40c::,2804:40c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:414::,2804:414:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:418::,2804:418:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:41c::,2804:41c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:420::,2804:420:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:424::,2804:424:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:428::,2804:428:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:430::,2804:431:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:438::,2804:438:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:43c::,2804:43c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:440::,2804:440:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:444::,2804:444:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:448::,2804:448:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:44c::,2804:44c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:450::,2804:450:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:454::,2804:454:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:458::,2804:458:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:45c::,2804:45c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:460::,2804:460:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:464::,2804:464:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:468::,2804:468:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:46c::,2804:46c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:470::,2804:470:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:474::,2804:474:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:478::,2804:478:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:47c::,2804:47c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:480::,2804:480:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:484::,2804:484:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:488::,2804:488:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:48c::,2804:48c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:490::,2804:490:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:494::,2804:494:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:498::,2804:498:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:49c::,2804:49c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4a0::,2804:4a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4a4::,2804:4a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4a8::,2804:4a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4ac::,2804:4ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4b0::,2804:4b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4b4::,2804:4b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4b8::,2804:4b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4bc::,2804:4bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4c0::,2804:4c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4c4::,2804:4c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4c8::,2804:4c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4cc::,2804:4cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4d4::,2804:4d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4d8::,2804:4d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4dc::,2804:4dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4e0::,2804:4e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4e4::,2804:4e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4e8::,2804:4e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4ec::,2804:4ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4f0::,2804:4f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4f4::,2804:4f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4f8::,2804:4f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:4fc::,2804:4fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:500::,2804:500:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:504::,2804:504:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:508::,2804:508:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:50c::,2804:50c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:510::,2804:510:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:514::,2804:514:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:518::,2804:518:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:51c::,2804:51c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:520::,2804:520:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:528::,2804:528:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:52c::,2804:52c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:530::,2804:530:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:534::,2804:534:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:538::,2804:538:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:53c::,2804:53c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:540::,2804:540:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:544::,2804:544:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:548::,2804:548:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:54c::,2804:54c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:550::,2804:550:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:554::,2804:554:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:558::,2804:558:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:55c::,2804:55c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:560::,2804:560:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:564::,2804:564:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:568::,2804:568:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:56c::,2804:56c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:574::,2804:574:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:578::,2804:578:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:57c::,2804:57c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:580::,2804:580:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:584::,2804:584:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:588::,2804:588:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:58c::,2804:58c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:590::,2804:590:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:594::,2804:594:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:598::,2804:598:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:59c::,2804:59c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5a4::,2804:5a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5a8::,2804:5a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5ac::,2804:5ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5b0::,2804:5b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5b4::,2804:5b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5b8::,2804:5b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5bc::,2804:5bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5c0::,2804:5c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5c4::,2804:5c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5c8::,2804:5c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5cc::,2804:5cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5d0::,2804:5d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5d4::,2804:5d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5d8::,2804:5d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5dc::,2804:5dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5e0::,2804:5e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5e4::,2804:5e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5e8::,2804:5e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5ec::,2804:5ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5f0::,2804:5f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5f4::,2804:5f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5f8::,2804:5f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:5fc::,2804:5fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:600::,2804:600:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:604::,2804:604:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:608::,2804:608:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:60c::,2804:60c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:610::,2804:610:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:614::,2804:614:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:618::,2804:618:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:61c::,2804:61c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:620::,2804:620:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:624::,2804:624:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:628::,2804:628:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:62c::,2804:62c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:630::,2804:630:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:634::,2804:634:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:638::,2804:638:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:63c::,2804:63c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:640::,2804:640:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:644::,2804:644:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:648::,2804:648:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:64c::,2804:64c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:650::,2804:650:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:654::,2804:654:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:658::,2804:658:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:65c::,2804:65c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:660::,2804:660:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:664::,2804:664:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:668::,2804:668:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:66c::,2804:66c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:670::,2804:670:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:674::,2804:674:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:678::,2804:678:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:680::,2804:680:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:684::,2804:684:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:688::,2804:688:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:68c::,2804:68c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:690::,2804:690:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:694::,2804:694:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:698::,2804:698:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:69c::,2804:69c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6a0::,2804:6a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6a4::,2804:6a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6a8::,2804:6a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6ac::,2804:6ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6b0::,2804:6b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6b4::,2804:6b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6b8::,2804:6b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6bc::,2804:6bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6c0::,2804:6c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6c4::,2804:6c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6c8::,2804:6c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6cc::,2804:6cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6d0::,2804:6d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6d4::,2804:6d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6d8::,2804:6d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6dc::,2804:6dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6e0::,2804:6e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6e4::,2804:6e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6e8::,2804:6e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6ec::,2804:6ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6f0::,2804:6f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6f4::,2804:6f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6f8::,2804:6f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:6fc::,2804:6fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:700::,2804:700:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:704::,2804:704:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:70c::,2804:70c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:710::,2804:710:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:714::,2804:714:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:718::,2804:718:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:71c::,2804:71c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:720::,2804:720:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:724::,2804:724:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:728::,2804:728:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:72c::,2804:72c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:730::,2804:730:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:734::,2804:734:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:738::,2804:738:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:73c::,2804:73c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:740::,2804:740:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:744::,2804:744:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:748::,2804:748:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:74c::,2804:74c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:750::,2804:750:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:754::,2804:754:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:758::,2804:758:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:75c::,2804:75c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:760::,2804:760:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:764::,2804:764:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:768::,2804:768:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:76c::,2804:76c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:770::,2804:770:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:774::,2804:774:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:778::,2804:778:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:77c::,2804:77c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:780::,2804:780:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:784::,2804:784:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:788::,2804:788:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:78c::,2804:78c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:790::,2804:790:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:794::,2804:794:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:798::,2804:798:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:79c::,2804:79c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7a0::,2804:7a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7a4::,2804:7a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7a8::,2804:7a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7ac::,2804:7ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7b0::,2804:7b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7b4::,2804:7b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7b8::,2804:7b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7bc::,2804:7bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7c0::,2804:7c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7c4::,2804:7c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7c8::,2804:7c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7cc::,2804:7cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7d0::,2804:7d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7d4::,2804:7d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7dc::,2804:7dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7e0::,2804:7e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7e4::,2804:7e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7e8::,2804:7e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7ec::,2804:7ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:7f0::,2804:7f7:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:800::,2804:800:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:804::,2804:804:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:808::,2804:808:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:80c::,2804:80c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:810::,2804:810:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:814::,2804:814:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:818::,2804:818:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:81c::,2804:81c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:820::,2804:820:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:824::,2804:824:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:828::,2804:828:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:82c::,2804:82c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:830::,2804:830:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:834::,2804:834:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:838::,2804:838:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:840::,2804:840:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:844::,2804:844:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:848::,2804:848:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:84c::,2804:84c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:850::,2804:850:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:854::,2804:854:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:858::,2804:858:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:85c::,2804:85c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:860::,2804:860:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:864::,2804:864:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:868::,2804:868:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:86c::,2804:86c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:870::,2804:870:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:874::,2804:874:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:878::,2804:878:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:87c::,2804:87c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:880::,2804:880:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:884::,2804:884:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:888::,2804:888:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:88c::,2804:88c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:890::,2804:890:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:894::,2804:894:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:898::,2804:898:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:89c::,2804:89c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8a0::,2804:8a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8a8::,2804:8a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8ac::,2804:8ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8b0::,2804:8b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8b4::,2804:8b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8bc::,2804:8bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8c0::,2804:8c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8c4::,2804:8c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8c8::,2804:8c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8cc::,2804:8cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8d0::,2804:8d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8d4::,2804:8d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8d8::,2804:8d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8dc::,2804:8dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8e0::,2804:8e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8e4::,2804:8e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8e8::,2804:8e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8ec::,2804:8ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8f0::,2804:8f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8f4::,2804:8f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8f8::,2804:8f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:8fc::,2804:8fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:904::,2804:904:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:908::,2804:908:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:90c::,2804:90c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:910::,2804:910:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:914::,2804:914:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:918::,2804:918:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:91c::,2804:91c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:920::,2804:920:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:924::,2804:924:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:928::,2804:928:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:92c::,2804:92c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:930::,2804:930:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:934::,2804:934:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:938::,2804:938:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:93c::,2804:93c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:940::,2804:940:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:944::,2804:944:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:948::,2804:948:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:94c::,2804:94c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:950::,2804:950:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:954::,2804:954:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:958::,2804:958:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:95c::,2804:95c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:960::,2804:960:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:964::,2804:964:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:968::,2804:968:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:96c::,2804:96c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:970::,2804:970:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:978::,2804:978:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:97c::,2804:97c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:980::,2804:980:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:984::,2804:984:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:988::,2804:988:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:98c::,2804:98c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:990::,2804:990:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:994::,2804:994:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:998::,2804:998:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:99c::,2804:99c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9a0::,2804:9a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9a4::,2804:9a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9a8::,2804:9a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9ac::,2804:9ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9b0::,2804:9b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9b4::,2804:9b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9b8::,2804:9b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9bc::,2804:9bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9c0::,2804:9c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9c4::,2804:9c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9c8::,2804:9c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9cc::,2804:9cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9d0::,2804:9d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9d4::,2804:9d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9d8::,2804:9d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9dc::,2804:9dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9e0::,2804:9e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9e4::,2804:9e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9e8::,2804:9e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9ec::,2804:9ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9f0::,2804:9f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9f4::,2804:9f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9f8::,2804:9f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:9fc::,2804:9fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a00::,2804:a00:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a08::,2804:a08:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a0c::,2804:a0c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a10::,2804:a10:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a14::,2804:a14:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a18::,2804:a18:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a1c::,2804:a1c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a20::,2804:a20:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a24::,2804:a24:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a28::,2804:a28:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a2c::,2804:a2c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a30::,2804:a30:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a34::,2804:a34:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a38::,2804:a38:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a3c::,2804:a3c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a40::,2804:a40:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a44::,2804:a44:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a48::,2804:a48:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a4c::,2804:a4c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a50::,2804:a50:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a54::,2804:a54:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a58::,2804:a58:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a5c::,2804:a5c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a60::,2804:a60:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a64::,2804:a64:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a68::,2804:a68:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a6c::,2804:a6c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a70::,2804:a70:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a74::,2804:a74:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a78::,2804:a78:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a80::,2804:a80:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a84::,2804:a84:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a88::,2804:a88:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a8c::,2804:a8c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a90::,2804:a90:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a94::,2804:a94:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a98::,2804:a98:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:a9c::,2804:a9c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:aa0::,2804:aa0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:aa4::,2804:aa4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:aa8::,2804:aa8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:aac::,2804:aac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ab0::,2804:ab0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ab4::,2804:ab4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ab8::,2804:ab8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:abc::,2804:abc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ac0::,2804:ac0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ac4::,2804:ac4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ac8::,2804:ac8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:acc::,2804:acc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ad0::,2804:ad0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ad4::,2804:ad4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ad8::,2804:ad8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:adc::,2804:adc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ae0::,2804:ae0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ae4::,2804:ae4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ae8::,2804:ae8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:aec::,2804:aec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:af4::,2804:af4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:af8::,2804:af8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:afc::,2804:afc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b00::,2804:b00:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b04::,2804:b04:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b08::,2804:b08:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b0c::,2804:b0c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b10::,2804:b10:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b14::,2804:b14:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b18::,2804:b18:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b1c::,2804:b1c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b24::,2804:b24:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b28::,2804:b28:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b2c::,2804:b2c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b30::,2804:b30:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b34::,2804:b34:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b38::,2804:b38:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b3c::,2804:b3c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b40::,2804:b40:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b44::,2804:b44:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b48::,2804:b48:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b4c::,2804:b4c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b50::,2804:b50:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b54::,2804:b54:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b58::,2804:b58:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b5c::,2804:b5c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b60::,2804:b60:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b64::,2804:b64:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b68::,2804:b68:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b6c::,2804:b6c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b70::,2804:b70:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b74::,2804:b74:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b78::,2804:b78:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b7c::,2804:b7c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b80::,2804:b80:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b84::,2804:b84:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b88::,2804:b88:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b8c::,2804:b8c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b90::,2804:b90:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b94::,2804:b94:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b98::,2804:b98:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:b9c::,2804:b9c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ba0::,2804:ba0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ba4::,2804:ba5:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ba8::,2804:ba8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:bac::,2804:bac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:bb0::,2804:bb0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:bb4::,2804:bb4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:bb8::,2804:bb8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:bbc::,2804:bbc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:bc4::,2804:bc4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:bc8::,2804:bc8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:bcc::,2804:bcc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:bd0::,2804:bd0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:bd4::,2804:bd4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:bd8::,2804:bd8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:bdc::,2804:bdc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:be0::,2804:be0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:be4::,2804:be4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:be8::,2804:be8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:bec::,2804:bec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:bf0::,2804:bf0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:bf4::,2804:bf4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:bf8::,2804:bf8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:bfc::,2804:bfc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c00::,2804:c00:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c04::,2804:c04:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c08::,2804:c08:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c0c::,2804:c0c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c10::,2804:c10:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c14::,2804:c14:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c18::,2804:c18:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c1c::,2804:c1c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c20::,2804:c20:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c24::,2804:c24:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c28::,2804:c28:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c2c::,2804:c2c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c30::,2804:c30:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c34::,2804:c34:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c38::,2804:c38:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c3c::,2804:c3c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c40::,2804:c40:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c44::,2804:c44:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c48::,2804:c48:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c4c::,2804:c4c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c50::,2804:c50:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c54::,2804:c54:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c58::,2804:c58:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c5c::,2804:c5c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c60::,2804:c60:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c64::,2804:c64:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c68::,2804:c68:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c6c::,2804:c6c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c70::,2804:c70:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c74::,2804:c74:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c78::,2804:c78:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c7c::,2804:c7c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c80::,2804:c80:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c84::,2804:c84:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c88::,2804:c88:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c90::,2804:c90:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c94::,2804:c94:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c98::,2804:c98:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:c9c::,2804:c9c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ca0::,2804:ca0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ca4::,2804:ca4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ca8::,2804:ca8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cac::,2804:cac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cb0::,2804:cb0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cb4::,2804:cb4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cb8::,2804:cb8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cbc::,2804:cbc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cc0::,2804:cc0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cc4::,2804:cc4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cc8::,2804:cc8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ccc::,2804:ccc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cd0::,2804:cd0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cd4::,2804:cd4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cd8::,2804:cd8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cdc::,2804:cdc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ce0::,2804:ce0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ce4::,2804:ce4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ce8::,2804:ce8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cec::,2804:cec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cf0::,2804:cf0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cf4::,2804:cf4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cf8::,2804:cf8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:cfc::,2804:cfc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d00::,2804:d00:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d04::,2804:d04:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d08::,2804:d08:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d0c::,2804:d0c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d10::,2804:d10:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d14::,2804:d14:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d18::,2804:d18:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d1c::,2804:d1c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d20::,2804:d20:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d24::,2804:d24:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d28::,2804:d28:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d2c::,2804:d2c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d30::,2804:d30:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d34::,2804:d34:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d38::,2804:d38:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d3c::,2804:d3c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d40::,2804:d41:514:7fff:ffff:ffff:ffff:ffff,BR 2804:d41:514:8000::,2804:d41:514:ffff:ffff:ffff:ffff:ffff,US 2804:d41:515::,2804:d60:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d64::,2804:d64:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d68::,2804:d68:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d6c::,2804:d6c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d70::,2804:d70:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d74::,2804:d74:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d78::,2804:d78:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d7c::,2804:d7c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d80::,2804:d80:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d84::,2804:d84:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d88::,2804:d88:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d8c::,2804:d8c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d90::,2804:d90:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d94::,2804:d94:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d98::,2804:d98:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:d9c::,2804:d9c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:da0::,2804:da0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:da4::,2804:da4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:da8::,2804:da8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:dac::,2804:dac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:db0::,2804:db0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:db4::,2804:db4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:db8::,2804:db8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:dbc::,2804:dbc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:dc0::,2804:dc0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:dc8::,2804:dc8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:dcc::,2804:dcc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:dd0::,2804:dd0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:dd4::,2804:dd4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:dd8::,2804:dd8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ddc::,2804:ddc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:de0::,2804:de0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:de4::,2804:de4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:de8::,2804:de8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:dec::,2804:dec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:df0::,2804:df0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:df4::,2804:df4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:df8::,2804:df8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:dfc::,2804:dfc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e00::,2804:e00:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e04::,2804:e04:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e08::,2804:e08:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e0c::,2804:e0c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e10::,2804:e10:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e14::,2804:e14:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e18::,2804:e18:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e1c::,2804:e1c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e20::,2804:e20:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e24::,2804:e24:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e28::,2804:e28:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e2c::,2804:e2c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e30::,2804:e30:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e34::,2804:e34:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e38::,2804:e38:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e3c::,2804:e3c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e40::,2804:e40:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e44::,2804:e44:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e48::,2804:e48:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e4c::,2804:e4c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e50::,2804:e50:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e54::,2804:e54:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e58::,2804:e58:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e5c::,2804:e5c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e60::,2804:e60:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e64::,2804:e64:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e68::,2804:e68:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e6c::,2804:e6c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e70::,2804:e70:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e74::,2804:e74:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e78::,2804:e78:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e7c::,2804:e7c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e80::,2804:e80:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e84::,2804:e84:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e88::,2804:e88:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e8c::,2804:e8c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e90::,2804:e90:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e94::,2804:e94:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e98::,2804:e98:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:e9c::,2804:e9c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ea0::,2804:ea0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ea4::,2804:ea4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ea8::,2804:ea8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:eac::,2804:eac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:eb0::,2804:eb0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:eb4::,2804:eb4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:eb8::,2804:eb8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ebc::,2804:ebc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ec0::,2804:ec0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ec4::,2804:ec4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ec8::,2804:ec8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ecc::,2804:ecc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ed0::,2804:ed0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ed4::,2804:ed4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ed8::,2804:ed8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:edc::,2804:edc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ee0::,2804:ee0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ee4::,2804:ee4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ee8::,2804:ee8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:eec::,2804:eec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ef0::,2804:ef0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ef4::,2804:ef4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ef8::,2804:ef8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:efc::,2804:efc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f00::,2804:f00:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f04::,2804:f04:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f08::,2804:f08:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f0c::,2804:f0c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f10::,2804:f10:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f14::,2804:f14:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f18::,2804:f18:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f1c::,2804:f1c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f20::,2804:f20:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f24::,2804:f24:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f28::,2804:f28:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f2c::,2804:f2c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f30::,2804:f30:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f34::,2804:f34:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f38::,2804:f38:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f3c::,2804:f3c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f40::,2804:f40:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f44::,2804:f44:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f48::,2804:f48:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f4c::,2804:f4c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f50::,2804:f50:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f54::,2804:f54:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f58::,2804:f58:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f5c::,2804:f5c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f60::,2804:f60:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f64::,2804:f64:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f68::,2804:f68:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f6c::,2804:f6c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f70::,2804:f70:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f74::,2804:f74:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f78::,2804:f78:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f7c::,2804:f7c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f80::,2804:f80:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f84::,2804:f84:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f88::,2804:f88:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f8c::,2804:f8c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f90::,2804:f90:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f94::,2804:f94:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f98::,2804:f98:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:f9c::,2804:f9c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fa0::,2804:fa0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fa4::,2804:fa4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fa8::,2804:fa8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fac::,2804:fac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fb0::,2804:fb0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fb4::,2804:fb4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fb8::,2804:fb8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fbc::,2804:fbc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fc0::,2804:fc0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fc4::,2804:fc4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fc8::,2804:fc8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fcc::,2804:fcc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fd0::,2804:fd0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fd4::,2804:fd4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fd8::,2804:fd8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fdc::,2804:fdc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fe0::,2804:fe0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fe4::,2804:fe4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fe8::,2804:fe8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:fec::,2804:fec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ff0::,2804:ff0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ff4::,2804:ff4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ff8::,2804:ff8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:ffc::,2804:ffc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1000::,2804:1000:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1004::,2804:1004:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1008::,2804:1008:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:100c::,2804:100c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1010::,2804:1010:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1014::,2804:1014:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1018::,2804:1018:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:101c::,2804:101c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1020::,2804:1020:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1024::,2804:1024:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1028::,2804:1028:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:102c::,2804:102c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1030::,2804:1030:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1034::,2804:1034:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1038::,2804:1038:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:103c::,2804:103c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1040::,2804:1040:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1044::,2804:1044:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1048::,2804:1048:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:104c::,2804:104c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1050::,2804:1050:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1054::,2804:1054:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1058::,2804:1058:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:105c::,2804:105c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1060::,2804:1060:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1064::,2804:1064:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1068::,2804:1068:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:106c::,2804:106c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1070::,2804:1070:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1074::,2804:1074:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1078::,2804:1078:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:107c::,2804:107c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1080::,2804:1080:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1084::,2804:1084:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1088::,2804:1088:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:108c::,2804:108c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1090::,2804:1090:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1094::,2804:1094:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1098::,2804:1098:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:109c::,2804:109c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10a0::,2804:10a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10a4::,2804:10a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10a8::,2804:10a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10ac::,2804:10ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10b0::,2804:10b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10b4::,2804:10b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10b8::,2804:10b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10bc::,2804:10bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10c0::,2804:10c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10c4::,2804:10c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10c8::,2804:10c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10cc::,2804:10cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10d0::,2804:10d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10d4::,2804:10d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10d8::,2804:10d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10dc::,2804:10dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10e0::,2804:10e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10e4::,2804:10e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10e8::,2804:10e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10ec::,2804:10ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10f0::,2804:10f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10f4::,2804:10f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10f8::,2804:10f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:10fc::,2804:10fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1100::,2804:1100:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1104::,2804:1104:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1108::,2804:1108:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:110c::,2804:110c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1110::,2804:1110:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1114::,2804:1114:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1118::,2804:1118:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:111c::,2804:111c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1120::,2804:1120:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1124::,2804:1124:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1128::,2804:1128:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:112c::,2804:112c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1130::,2804:1130:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1134::,2804:1134:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1138::,2804:1138:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:113c::,2804:113c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1140::,2804:1140:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1144::,2804:1144:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1148::,2804:1148:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:114c::,2804:114c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1150::,2804:1150:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1154::,2804:1154:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1158::,2804:1158:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:115c::,2804:115c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1160::,2804:1160:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1164::,2804:1164:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1168::,2804:1168:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:116c::,2804:116c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1170::,2804:1170:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1174::,2804:1174:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1178::,2804:1178:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:117c::,2804:117c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1180::,2804:1180:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1184::,2804:1184:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1188::,2804:1188:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:118c::,2804:118c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1190::,2804:1190:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1194::,2804:1194:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1198::,2804:1198:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:119c::,2804:119c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11a0::,2804:11a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11a4::,2804:11a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11a8::,2804:11a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11ac::,2804:11ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11b0::,2804:11b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11b4::,2804:11b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11b8::,2804:11b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11bc::,2804:11bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11c0::,2804:11c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11c4::,2804:11c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11c8::,2804:11c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11cc::,2804:11cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11d0::,2804:11d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11d4::,2804:11d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11d8::,2804:11d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11dc::,2804:11dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11e0::,2804:11e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11e4::,2804:11e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11e8::,2804:11e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11ec::,2804:11ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11f0::,2804:11f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11f4::,2804:11f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11f8::,2804:11f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:11fc::,2804:11fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1200::,2804:1200:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1204::,2804:1204:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1208::,2804:1208:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:120c::,2804:120c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1210::,2804:1210:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1214::,2804:1214:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1218::,2804:1218:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:121c::,2804:121c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1220::,2804:1220:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1224::,2804:1224:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1228::,2804:1228:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:122c::,2804:122c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1230::,2804:1230:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1234::,2804:1234:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1238::,2804:1238:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:123c::,2804:123c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1240::,2804:1240:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1244::,2804:1244:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1248::,2804:1248:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:124c::,2804:124c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1250::,2804:1250:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1254::,2804:1254:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1258::,2804:1258:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:125c::,2804:125c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1260::,2804:1260:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1264::,2804:1264:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1268::,2804:1268:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:126c::,2804:126c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1270::,2804:1270:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1274::,2804:1274:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1278::,2804:1278:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:127c::,2804:127c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1280::,2804:1280:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1284::,2804:1284:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1288::,2804:1288:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:128c::,2804:128c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1290::,2804:1290:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1294::,2804:1294:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1298::,2804:1298:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:129c::,2804:129c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12a0::,2804:12a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12a4::,2804:12a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12a8::,2804:12a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12ac::,2804:12ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12b0::,2804:12b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12b4::,2804:12b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12b8::,2804:12b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12bc::,2804:12bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12c0::,2804:12c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12c4::,2804:12c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12c8::,2804:12c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12cc::,2804:12cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12d0::,2804:12d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12d4::,2804:12d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12d8::,2804:12d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12dc::,2804:12dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12e0::,2804:12e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12e4::,2804:12e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12e8::,2804:12e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12ec::,2804:12ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12f0::,2804:12f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12f4::,2804:12f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12f8::,2804:12f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:12fc::,2804:12fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1300::,2804:1300:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1304::,2804:1304:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1308::,2804:1308:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:130c::,2804:130c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1310::,2804:1310:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1314::,2804:1314:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1318::,2804:1318:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:131c::,2804:131c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1320::,2804:1320:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1324::,2804:1324:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1328::,2804:1328:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:132c::,2804:132c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1330::,2804:1330:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1334::,2804:1334:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1338::,2804:1338:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:133c::,2804:133c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1340::,2804:1340:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1344::,2804:1344:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1348::,2804:1348:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:134c::,2804:134c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1350::,2804:1350:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1354::,2804:1354:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1358::,2804:1358:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:135c::,2804:135c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1360::,2804:1360:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1364::,2804:1364:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1368::,2804:1368:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:136c::,2804:136c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1370::,2804:1370:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1374::,2804:1374:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1378::,2804:1378:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:137c::,2804:137c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1380::,2804:1380:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1384::,2804:1384:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1388::,2804:138b:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1390::,2804:1390:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1394::,2804:1394:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1398::,2804:1398:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:139c::,2804:139c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13a0::,2804:13a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13a4::,2804:13a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13a8::,2804:13a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13ac::,2804:13ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13b0::,2804:13b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13b4::,2804:13b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13b8::,2804:13b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13bc::,2804:13bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13c0::,2804:13c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13c4::,2804:13c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13c8::,2804:13c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13cc::,2804:13cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13d0::,2804:13d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13d4::,2804:13d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13d8::,2804:13d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13dc::,2804:13dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13e0::,2804:13e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13e4::,2804:13e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13e8::,2804:13e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13ec::,2804:13ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13f0::,2804:13f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13f4::,2804:13f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13f8::,2804:13f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:13fc::,2804:13fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1400::,2804:1400:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1404::,2804:1404:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1408::,2804:1408:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:140c::,2804:140c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1410::,2804:1410:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1414::,2804:1414:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1418::,2804:1418:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:141c::,2804:141c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1420::,2804:1420:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1424::,2804:1424:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1428::,2804:1428:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:142c::,2804:142c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1430::,2804:1430:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1434::,2804:1434:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1438::,2804:1438:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:143c::,2804:143c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1440::,2804:1440:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1444::,2804:1444:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1448::,2804:1448:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:144c::,2804:144c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1450::,2804:1450:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1454::,2804:1454:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1458::,2804:1458:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:145c::,2804:145c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1460::,2804:1460:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1464::,2804:1464:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1468::,2804:1468:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:146c::,2804:146c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1470::,2804:1470:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1474::,2804:1474:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1478::,2804:1478:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:147c::,2804:147c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1480::,2804:1480:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1484::,2804:1484:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1488::,2804:1488:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:148c::,2804:148c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1490::,2804:1490:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1494::,2804:1494:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1498::,2804:1498:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:149c::,2804:149c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14a0::,2804:14a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14a4::,2804:14a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14a8::,2804:14a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14ac::,2804:14ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14b0::,2804:14b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14b4::,2804:14b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14b8::,2804:14b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14bc::,2804:14bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14c0::,2804:14c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14c4::,2804:14c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14c8::,2804:14c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14cc::,2804:14cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14d0::,2804:14d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14d4::,2804:14d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14d8::,2804:14d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14dc::,2804:14dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14e0::,2804:14e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14e4::,2804:14e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14e8::,2804:14e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14ec::,2804:14ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14f0::,2804:14f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14f4::,2804:14f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14f8::,2804:14f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:14fc::,2804:14fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1500::,2804:1500:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1504::,2804:1504:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1508::,2804:1508:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:150c::,2804:150c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1510::,2804:1510:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1514::,2804:1514:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1518::,2804:1518:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:151c::,2804:151c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1520::,2804:1520:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1524::,2804:1524:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1528::,2804:1528:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:152c::,2804:152c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1530::,2804:1530:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1534::,2804:1534:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1538::,2804:1538:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:153c::,2804:153c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1540::,2804:1540:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1544::,2804:1544:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1548::,2804:1548:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:154c::,2804:154c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1550::,2804:1550:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1554::,2804:1554:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1558::,2804:1558:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:155c::,2804:155c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1560::,2804:1560:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1564::,2804:1564:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1568::,2804:1568:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:156c::,2804:156c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1570::,2804:1570:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1574::,2804:1574:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1578::,2804:1578:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:157c::,2804:157c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1580::,2804:1580:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1584::,2804:1584:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1588::,2804:1588:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:158c::,2804:158c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1590::,2804:1590:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1594::,2804:1594:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1598::,2804:1598:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:159c::,2804:159c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15a0::,2804:15a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15a4::,2804:15a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15a8::,2804:15a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15ac::,2804:15ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15b0::,2804:15b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15b4::,2804:15b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15b8::,2804:15b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15bc::,2804:15bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15c0::,2804:15c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15c4::,2804:15c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15c8::,2804:15c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15cc::,2804:15cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15d0::,2804:15d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15d4::,2804:15d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15d8::,2804:15d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15dc::,2804:15dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15e0::,2804:15e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15e4::,2804:15e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15e8::,2804:15e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15ec::,2804:15ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15f0::,2804:15f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15f4::,2804:15f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15f8::,2804:15f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:15fc::,2804:15fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1600::,2804:1600:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1604::,2804:1604:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1608::,2804:1608:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:160c::,2804:160c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1610::,2804:1610:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1614::,2804:1614:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1618::,2804:1618:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:161c::,2804:161c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1620::,2804:1620:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1624::,2804:1624:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1628::,2804:1628:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:162c::,2804:162c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1630::,2804:1630:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1634::,2804:1634:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1638::,2804:1638:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:163c::,2804:163c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1644::,2804:1644:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1648::,2804:1648:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:164c::,2804:164c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1650::,2804:1650:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1654::,2804:1654:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1658::,2804:1658:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:165c::,2804:165c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1660::,2804:1660:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1664::,2804:1664:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1668::,2804:1668:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:166c::,2804:166c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1670::,2804:1670:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1674::,2804:1674:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1678::,2804:1678:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:167c::,2804:167c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1680::,2804:1680:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1684::,2804:1684:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1688::,2804:1688:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:168c::,2804:168c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1690::,2804:1690:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1694::,2804:1694:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1698::,2804:1698:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:169c::,2804:169c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16a0::,2804:16a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16a4::,2804:16a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16a8::,2804:16a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16ac::,2804:16ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16b0::,2804:16b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16b4::,2804:16b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16b8::,2804:16b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16bc::,2804:16bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16c0::,2804:16c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16c4::,2804:16c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16c8::,2804:16c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16cc::,2804:16cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16d0::,2804:16d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16d4::,2804:16d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16d8::,2804:16d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16dc::,2804:16dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16e0::,2804:16e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16e4::,2804:16e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16e8::,2804:16e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16ec::,2804:16ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16f0::,2804:16f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16f4::,2804:16f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16f8::,2804:16f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:16fc::,2804:16fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1700::,2804:1700:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1704::,2804:1704:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1708::,2804:1708:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:170c::,2804:170c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1710::,2804:1710:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1714::,2804:1714:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1718::,2804:1718:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:171c::,2804:171c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1720::,2804:1720:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1724::,2804:1724:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1728::,2804:1728:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:172c::,2804:172c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1730::,2804:1730:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1734::,2804:1734:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1738::,2804:1738:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:173c::,2804:173c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1740::,2804:1740:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1744::,2804:1744:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1748::,2804:1748:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:174c::,2804:174c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1750::,2804:1750:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1754::,2804:1754:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1758::,2804:1758:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:175c::,2804:175c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1760::,2804:1760:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1764::,2804:1764:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1768::,2804:1768:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:176c::,2804:176c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1770::,2804:1770:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1774::,2804:1774:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1778::,2804:1778:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:177c::,2804:177c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1780::,2804:1780:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1784::,2804:1784:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1788::,2804:1788:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:178c::,2804:178c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1790::,2804:1790:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1794::,2804:1794:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1798::,2804:1798:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:179c::,2804:179c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17a0::,2804:17a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17a4::,2804:17a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17a8::,2804:17a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17ac::,2804:17ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17b0::,2804:17b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17b4::,2804:17b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17b8::,2804:17b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17bc::,2804:17bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17c0::,2804:17c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17c4::,2804:17c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17c8::,2804:17c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17cc::,2804:17cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17d0::,2804:17d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17d4::,2804:17d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17d8::,2804:17d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17dc::,2804:17dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17e0::,2804:17e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17e4::,2804:17e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17e8::,2804:17e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17ec::,2804:17ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17f0::,2804:17f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17f4::,2804:17f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17f8::,2804:17f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:17fc::,2804:17fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1800::,2804:1800:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1804::,2804:1804:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1808::,2804:1808:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:180c::,2804:180c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1810::,2804:1810:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1814::,2804:1814:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1818::,2804:1818:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:181c::,2804:181c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1820::,2804:1820:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1824::,2804:1824:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1828::,2804:1828:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:182c::,2804:182c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1830::,2804:1830:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1834::,2804:1834:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1838::,2804:1838:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:183c::,2804:183c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1840::,2804:1840:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1844::,2804:1844:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1848::,2804:1848:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:184c::,2804:184c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1850::,2804:1850:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1854::,2804:1854:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1858::,2804:1858:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:185c::,2804:185c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1860::,2804:1860:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1864::,2804:1864:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1868::,2804:1868:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:186c::,2804:186c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1870::,2804:1870:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1874::,2804:1874:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1878::,2804:1878:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:187c::,2804:187c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1880::,2804:1880:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1884::,2804:1884:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1888::,2804:1888:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:188c::,2804:188c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1890::,2804:1890:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1894::,2804:1894:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1898::,2804:1898:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:189c::,2804:189c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18a0::,2804:18a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18a4::,2804:18a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18a8::,2804:18a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18ac::,2804:18ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18b0::,2804:18b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18b4::,2804:18b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18b8::,2804:18b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18bc::,2804:18bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18c0::,2804:18c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18c4::,2804:18c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18c8::,2804:18c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18cc::,2804:18cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18d0::,2804:18d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18d4::,2804:18d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18d8::,2804:18d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18dc::,2804:18dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18e0::,2804:18e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18e4::,2804:18e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18e8::,2804:18e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18ec::,2804:18ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18f0::,2804:18f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18f4::,2804:18f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18f8::,2804:18f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:18fc::,2804:18fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1900::,2804:1900:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1904::,2804:1904:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1908::,2804:1908:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:190c::,2804:190c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1910::,2804:1910:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1914::,2804:1914:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1918::,2804:1918:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:191c::,2804:191c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1920::,2804:1920:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1924::,2804:1924:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1928::,2804:1928:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:192c::,2804:192c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1930::,2804:1930:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1934::,2804:1934:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1938::,2804:1938:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:193c::,2804:193c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1940::,2804:1940:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1944::,2804:1944:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1948::,2804:1948:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:194c::,2804:194c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1950::,2804:1950:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1954::,2804:1954:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1958::,2804:1958:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:195c::,2804:195c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1960::,2804:1960:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1964::,2804:1964:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1968::,2804:1968:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:196c::,2804:196c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1970::,2804:1970:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1974::,2804:1974:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1978::,2804:1978:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:197c::,2804:197c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1980::,2804:1980:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1984::,2804:1984:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1988::,2804:1988:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:198c::,2804:198c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1990::,2804:1990:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1994::,2804:1994:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1998::,2804:1998:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:199c::,2804:199c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19a0::,2804:19a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19a4::,2804:19a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19a8::,2804:19a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19ac::,2804:19ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19b0::,2804:19b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19b4::,2804:19b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19b8::,2804:19b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19bc::,2804:19bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19c0::,2804:19c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19c4::,2804:19c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19c8::,2804:19c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19cc::,2804:19cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19d0::,2804:19d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19d4::,2804:19d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19d8::,2804:19d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19dc::,2804:19dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19e0::,2804:19e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19e4::,2804:19e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19e8::,2804:19e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19ec::,2804:19ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19f0::,2804:19f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19f4::,2804:19f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19f8::,2804:19f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:19fc::,2804:19fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a00::,2804:1a00:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a04::,2804:1a04:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a08::,2804:1a08:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a0c::,2804:1a0c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a10::,2804:1a10:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a14::,2804:1a14:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a18::,2804:1a18:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a1c::,2804:1a1c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a20::,2804:1a20:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a24::,2804:1a24:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a28::,2804:1a28:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a2c::,2804:1a2c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a30::,2804:1a30:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a34::,2804:1a34:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a38::,2804:1a38:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a3c::,2804:1a3c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a40::,2804:1a40:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a44::,2804:1a44:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a48::,2804:1a48:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a4c::,2804:1a4c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a50::,2804:1a50:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a54::,2804:1a54:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a58::,2804:1a58:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a5c::,2804:1a5c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a60::,2804:1a60:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a64::,2804:1a64:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a68::,2804:1a68:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a6c::,2804:1a6c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a70::,2804:1a70:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a74::,2804:1a74:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a78::,2804:1a78:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a7c::,2804:1a7c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a80::,2804:1a80:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a84::,2804:1a84:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a88::,2804:1a88:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a8c::,2804:1a8c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a90::,2804:1a90:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a94::,2804:1a94:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a98::,2804:1a98:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1a9c::,2804:1a9c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1aa0::,2804:1aa0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1aa4::,2804:1aa4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1aa8::,2804:1aa8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1aac::,2804:1aac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ab0::,2804:1ab0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ab4::,2804:1ab4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ab8::,2804:1ab8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1abc::,2804:1abc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ac0::,2804:1ac0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ac4::,2804:1ac4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ac8::,2804:1ac8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1acc::,2804:1acc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ad0::,2804:1ad0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ad4::,2804:1ad4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ad8::,2804:1ad8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1adc::,2804:1adc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ae0::,2804:1ae0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ae4::,2804:1ae4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ae8::,2804:1ae8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1aec::,2804:1aec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1af0::,2804:1af0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1af4::,2804:1af4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1af8::,2804:1af8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1afc::,2804:1afc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b00::,2804:1b00:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b04::,2804:1b04:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b08::,2804:1b08:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b0c::,2804:1b0c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b10::,2804:1b10:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b14::,2804:1b14:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b18::,2804:1b18:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b1c::,2804:1b1c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b20::,2804:1b20:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b24::,2804:1b24:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b28::,2804:1b28:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b2c::,2804:1b2c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b30::,2804:1b30:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b34::,2804:1b34:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b38::,2804:1b38:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b3c::,2804:1b3c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b40::,2804:1b40:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b44::,2804:1b44:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b48::,2804:1b48:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b4c::,2804:1b4c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b50::,2804:1b50:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b54::,2804:1b54:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b58::,2804:1b58:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b5c::,2804:1b5c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b60::,2804:1b60:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b64::,2804:1b64:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b68::,2804:1b68:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b6c::,2804:1b6c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b70::,2804:1b70:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b74::,2804:1b74:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b78::,2804:1b78:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b7c::,2804:1b7c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b80::,2804:1b80:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b84::,2804:1b84:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b88::,2804:1b88:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b8c::,2804:1b8c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b90::,2804:1b90:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b94::,2804:1b94:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b98::,2804:1b98:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1b9c::,2804:1b9c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ba0::,2804:1ba0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ba4::,2804:1ba4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ba8::,2804:1ba8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bac::,2804:1bac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bb0::,2804:1bb0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bb4::,2804:1bb4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bb8::,2804:1bb8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bbc::,2804:1bbc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bc0::,2804:1bc0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bc4::,2804:1bc4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bc8::,2804:1bc8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bcc::,2804:1bcc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bd0::,2804:1bd0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bd4::,2804:1bd4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bd8::,2804:1bd8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bdc::,2804:1bdc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1be0::,2804:1be0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1be4::,2804:1be4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1be8::,2804:1be8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bec::,2804:1bec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bf0::,2804:1bf0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bf4::,2804:1bf4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bf8::,2804:1bf8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1bfc::,2804:1bfc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c00::,2804:1c00:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c04::,2804:1c04:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c08::,2804:1c08:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c0c::,2804:1c0c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c10::,2804:1c10:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c14::,2804:1c14:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c18::,2804:1c18:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c1c::,2804:1c1c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c20::,2804:1c20:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c24::,2804:1c24:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c28::,2804:1c28:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c2c::,2804:1c2c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c30::,2804:1c30:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c34::,2804:1c34:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c38::,2804:1c38:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c3c::,2804:1c3c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c40::,2804:1c40:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c44::,2804:1c44:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c48::,2804:1c48:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c4c::,2804:1c4c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c50::,2804:1c50:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c54::,2804:1c54:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c58::,2804:1c58:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c5c::,2804:1c5c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c60::,2804:1c60:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c64::,2804:1c64:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c68::,2804:1c68:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c6c::,2804:1c6c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c70::,2804:1c70:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c74::,2804:1c74:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c78::,2804:1c78:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c7c::,2804:1c7c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c80::,2804:1c80:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c84::,2804:1c84:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c88::,2804:1c88:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c8c::,2804:1c8c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c90::,2804:1c90:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c94::,2804:1c94:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c98::,2804:1c98:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1c9c::,2804:1c9c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ca0::,2804:1ca0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ca4::,2804:1ca4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ca8::,2804:1ca8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cac::,2804:1cac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cb0::,2804:1cb0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cb4::,2804:1cb4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cb8::,2804:1cb8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cbc::,2804:1cbc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cc0::,2804:1cc0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cc4::,2804:1cc4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cc8::,2804:1cc8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ccc::,2804:1ccc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cd0::,2804:1cd0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cd4::,2804:1cd4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cd8::,2804:1cd8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cdc::,2804:1cdc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ce0::,2804:1ce0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ce4::,2804:1ce4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ce8::,2804:1ce8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cec::,2804:1cec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cf0::,2804:1cf0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cf4::,2804:1cf4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cf8::,2804:1cf8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1cfc::,2804:1cfc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d00::,2804:1d00:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d04::,2804:1d04:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d08::,2804:1d08:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d0c::,2804:1d0c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d10::,2804:1d10:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d14::,2804:1d14:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d18::,2804:1d18:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d1c::,2804:1d1c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d20::,2804:1d20:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d24::,2804:1d24:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d28::,2804:1d28:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d2c::,2804:1d2c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d30::,2804:1d30:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d34::,2804:1d34:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d38::,2804:1d38:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d3c::,2804:1d3c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d40::,2804:1d40:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d44::,2804:1d44:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d48::,2804:1d48:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d4c::,2804:1d4c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d50::,2804:1d50:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d54::,2804:1d54:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d58::,2804:1d58:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d5c::,2804:1d5c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d60::,2804:1d60:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d64::,2804:1d64:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d68::,2804:1d68:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d6c::,2804:1d6c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d70::,2804:1d70:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d74::,2804:1d74:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d78::,2804:1d78:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d7c::,2804:1d7c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d80::,2804:1d80:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d84::,2804:1d84:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d88::,2804:1d88:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d8c::,2804:1d8c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d90::,2804:1d90:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d94::,2804:1d94:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d98::,2804:1d98:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1d9c::,2804:1d9c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1da0::,2804:1da0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1da4::,2804:1da4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1da8::,2804:1da8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1dac::,2804:1dac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1db0::,2804:1db0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1db4::,2804:1db4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1db8::,2804:1db8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1dbc::,2804:1dbc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1dc0::,2804:1dc0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1dc4::,2804:1dc4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1dc8::,2804:1dc8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1dcc::,2804:1dcc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1dd0::,2804:1dd0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1dd4::,2804:1dd4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1dd8::,2804:1dd8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ddc::,2804:1ddc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1de0::,2804:1de0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1de4::,2804:1de4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1de8::,2804:1de8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1dec::,2804:1dec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1df0::,2804:1df0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1df4::,2804:1df4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1df8::,2804:1df8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1dfc::,2804:1dfc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e00::,2804:1e00:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e04::,2804:1e04:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e08::,2804:1e08:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e0c::,2804:1e0c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e10::,2804:1e10:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e14::,2804:1e14:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e18::,2804:1e18:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e1c::,2804:1e1c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e20::,2804:1e20:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e24::,2804:1e24:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e28::,2804:1e28:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e2c::,2804:1e2c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e30::,2804:1e30:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e34::,2804:1e34:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e38::,2804:1e38:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e3c::,2804:1e3c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e40::,2804:1e40:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e44::,2804:1e44:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e48::,2804:1e48:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e4c::,2804:1e4c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e50::,2804:1e50:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e54::,2804:1e54:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e58::,2804:1e58:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e5c::,2804:1e5c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e60::,2804:1e60:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e64::,2804:1e64:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e68::,2804:1e68:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e6c::,2804:1e6c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e70::,2804:1e70:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e74::,2804:1e74:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e78::,2804:1e78:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e7c::,2804:1e7c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e80::,2804:1e80:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e84::,2804:1e84:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e88::,2804:1e88:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e8c::,2804:1e8c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e90::,2804:1e90:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e94::,2804:1e94:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e98::,2804:1e98:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1e9c::,2804:1e9c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ea0::,2804:1ea0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ea4::,2804:1ea4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ea8::,2804:1ea8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1eac::,2804:1eac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1eb0::,2804:1eb0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1eb4::,2804:1eb4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1eb8::,2804:1eb8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ebc::,2804:1ebc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ec0::,2804:1ec0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ec4::,2804:1ec4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ec8::,2804:1ec8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ecc::,2804:1ecc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ed0::,2804:1ed0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ed4::,2804:1ed4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ed8::,2804:1ed8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1edc::,2804:1edc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ee0::,2804:1ee0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ee4::,2804:1ee4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ee8::,2804:1ee8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1eec::,2804:1eec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ef0::,2804:1ef0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ef4::,2804:1ef4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1ef8::,2804:1ef8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1efc::,2804:1efc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1f00::,2804:1f00:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1f02::,2804:1f02:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1f04::,2804:1f04:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1f06::,2804:1f06:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1f08::,2804:1f08:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1f0a::,2804:1f0a:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1f0c::,2804:1f0c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1f0e::,2804:1f0e:1fff:ffff:ffff:ffff:ffff:ffff,BR 2804:1f10::,2804:1f10:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1f12::,2804:1f12:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:1f14::,2804:1f14:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2000::,2804:2000:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2004::,2804:2004:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2008::,2804:2008:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:200c::,2804:200c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2010::,2804:2010:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2014::,2804:2014:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2018::,2804:2018:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:201c::,2804:201c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2020::,2804:2020:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2024::,2804:2024:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2028::,2804:2028:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:202c::,2804:202c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2030::,2804:2030:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2034::,2804:2034:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2038::,2804:2038:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:203c::,2804:203c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2040::,2804:2040:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2044::,2804:2044:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2048::,2804:2048:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:204c::,2804:204c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2050::,2804:2050:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2054::,2804:2054:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2058::,2804:2058:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:205c::,2804:205c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2060::,2804:2060:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2064::,2804:2064:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2068::,2804:2068:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:206c::,2804:206c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2070::,2804:2070:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2074::,2804:2074:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2078::,2804:2078:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:207c::,2804:207c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2080::,2804:2080:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2084::,2804:2084:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2088::,2804:2088:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:208c::,2804:208c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2090::,2804:2090:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2094::,2804:2094:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2098::,2804:2098:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:209c::,2804:209c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20a0::,2804:20a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20a4::,2804:20a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20a8::,2804:20a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20ac::,2804:20ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20b0::,2804:20b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20b4::,2804:20b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20b8::,2804:20b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20bc::,2804:20bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20c0::,2804:20c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20c4::,2804:20c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20c8::,2804:20c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20cc::,2804:20cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20d0::,2804:20d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20d4::,2804:20d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20d8::,2804:20d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20dc::,2804:20dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20e0::,2804:20e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20e4::,2804:20e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20e8::,2804:20e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20ec::,2804:20ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20f0::,2804:20f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20f4::,2804:20f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20f8::,2804:20f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:20fc::,2804:20fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2100::,2804:2100:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2104::,2804:2104:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2108::,2804:2108:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:210c::,2804:210c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2110::,2804:2110:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2114::,2804:2114:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2118::,2804:2118:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:211c::,2804:211c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2120::,2804:2120:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2124::,2804:2124:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2128::,2804:2128:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:212c::,2804:212c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2130::,2804:2130:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2134::,2804:2134:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2138::,2804:2138:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:213c::,2804:213c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2140::,2804:2140:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2144::,2804:2144:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2148::,2804:2148:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:214c::,2804:214c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2150::,2804:2150:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2154::,2804:2154:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2158::,2804:2158:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:215c::,2804:215c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2160::,2804:2160:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2164::,2804:2164:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2168::,2804:2168:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:216c::,2804:216c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2170::,2804:2170:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2174::,2804:2174:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2178::,2804:2178:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:217c::,2804:217c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2180::,2804:2180:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2184::,2804:2184:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2188::,2804:2188:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:218c::,2804:218c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2190::,2804:2190:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2194::,2804:2194:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2198::,2804:2198:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:219c::,2804:219c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21a0::,2804:21a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21a4::,2804:21a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21a8::,2804:21a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21ac::,2804:21ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21b0::,2804:21b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21b4::,2804:21b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21b8::,2804:21b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21bc::,2804:21bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21c0::,2804:21c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21c4::,2804:21c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21c8::,2804:21c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21cc::,2804:21cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21d0::,2804:21d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21d4::,2804:21d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21d8::,2804:21d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21dc::,2804:21dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21e0::,2804:21e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21e4::,2804:21e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21e8::,2804:21e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21ec::,2804:21ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21f0::,2804:21f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21f4::,2804:21f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21f8::,2804:21f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:21fc::,2804:21fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2200::,2804:2200:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2204::,2804:2204:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2208::,2804:2208:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:220c::,2804:220c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2210::,2804:2210:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2214::,2804:2214:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2218::,2804:2218:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:221c::,2804:221c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2220::,2804:2220:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2224::,2804:2224:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2228::,2804:2228:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:222c::,2804:222c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2230::,2804:2230:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2234::,2804:2234:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2238::,2804:2238:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:223c::,2804:223c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2240::,2804:2240:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2244::,2804:2244:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2248::,2804:2248:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:224c::,2804:224c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2250::,2804:2250:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2254::,2804:2254:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2258::,2804:2258:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:225c::,2804:225c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2260::,2804:2260:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2264::,2804:2264:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2268::,2804:2268:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:226c::,2804:226c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2270::,2804:2270:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2274::,2804:2274:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2278::,2804:2278:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:227c::,2804:227c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2280::,2804:2280:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2284::,2804:2284:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2288::,2804:2288:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:228c::,2804:228c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2290::,2804:2290:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2294::,2804:2294:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2298::,2804:2298:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:229c::,2804:229c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22a0::,2804:22a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22a4::,2804:22a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22a8::,2804:22a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22ac::,2804:22ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22b0::,2804:22b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22b4::,2804:22b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22b8::,2804:22b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22bc::,2804:22bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22c0::,2804:22c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22c4::,2804:22c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22c8::,2804:22c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22cc::,2804:22cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22d0::,2804:22d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22d4::,2804:22d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22d8::,2804:22d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22dc::,2804:22dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22e0::,2804:22e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22e4::,2804:22e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22e8::,2804:22e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22ec::,2804:22ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22f0::,2804:22f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22f4::,2804:22f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22f8::,2804:22f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:22fc::,2804:22fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2300::,2804:2300:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2304::,2804:2304:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2308::,2804:2308:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:230c::,2804:230c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2310::,2804:2310:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2314::,2804:2314:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2318::,2804:2318:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:231c::,2804:231c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2320::,2804:2320:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2324::,2804:2324:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2328::,2804:2328:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:232c::,2804:232c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2330::,2804:2330:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2334::,2804:2334:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2338::,2804:2338:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:233c::,2804:233c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2340::,2804:2340:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2344::,2804:2344:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2348::,2804:2348:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:234c::,2804:234c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2350::,2804:2350:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2354::,2804:2354:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2358::,2804:2358:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:235c::,2804:235c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2360::,2804:2360:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2364::,2804:2364:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2368::,2804:2368:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:236c::,2804:236c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2370::,2804:2370:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2374::,2804:2374:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2378::,2804:2378:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:237c::,2804:237c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2380::,2804:2380:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2384::,2804:2384:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2388::,2804:2388:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:238c::,2804:238c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2390::,2804:2390:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2394::,2804:2394:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2398::,2804:2398:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:239c::,2804:239c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23a0::,2804:23a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23a4::,2804:23a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23a8::,2804:23a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23ac::,2804:23ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23b0::,2804:23b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23b4::,2804:23b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23b8::,2804:23b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23bc::,2804:23bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23c0::,2804:23c1:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23c4::,2804:23c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23c8::,2804:23c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23cc::,2804:23cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23d0::,2804:23d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23d4::,2804:23d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23d8::,2804:23d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23dc::,2804:23dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23e0::,2804:23e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23e4::,2804:23e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23e8::,2804:23e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23ec::,2804:23ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23f0::,2804:23f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23f4::,2804:23f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23f8::,2804:23f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:23fc::,2804:23fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2400::,2804:2400:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2404::,2804:2404:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2408::,2804:2408:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:240c::,2804:240c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2410::,2804:2410:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2414::,2804:2414:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2418::,2804:2418:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:241c::,2804:241c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2420::,2804:2420:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2424::,2804:2424:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2428::,2804:2428:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:242c::,2804:242c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2430::,2804:2430:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2434::,2804:2434:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2438::,2804:2438:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:243c::,2804:243c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2440::,2804:2440:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2444::,2804:2444:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2448::,2804:2448:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:244c::,2804:244c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2450::,2804:2450:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2454::,2804:2454:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2458::,2804:2458:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:245c::,2804:245c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2460::,2804:2460:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2464::,2804:2464:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2468::,2804:2468:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:246c::,2804:246c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2470::,2804:2470:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2474::,2804:2474:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2478::,2804:2478:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:247c::,2804:247c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2480::,2804:2480:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2484::,2804:2484:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2488::,2804:2488:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:248c::,2804:248c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2490::,2804:2490:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2494::,2804:2494:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2498::,2804:2498:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:249c::,2804:249c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24a0::,2804:24a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24a4::,2804:24a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24a8::,2804:24a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24ac::,2804:24ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24b0::,2804:24b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24b4::,2804:24b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24b8::,2804:24b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24bc::,2804:24bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24c0::,2804:24c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24c4::,2804:24c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24c8::,2804:24c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24cc::,2804:24cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24d0::,2804:24d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24d4::,2804:24d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24d8::,2804:24d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24dc::,2804:24dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24e0::,2804:24e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24e4::,2804:24e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24e8::,2804:24e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24ec::,2804:24ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24f0::,2804:24f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24f4::,2804:24f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24f8::,2804:24f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:24fc::,2804:24fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2500::,2804:2500:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2504::,2804:2504:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2508::,2804:2508:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:250c::,2804:250c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2510::,2804:2510:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2514::,2804:2514:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2518::,2804:2518:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:251c::,2804:251c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2520::,2804:2520:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2524::,2804:2524:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2528::,2804:2528:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:252c::,2804:252c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2530::,2804:2530:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2534::,2804:2534:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2538::,2804:2538:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:253c::,2804:253c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2540::,2804:2540:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2544::,2804:2544:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2548::,2804:2548:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:254c::,2804:254c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2550::,2804:2550:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2554::,2804:2554:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2558::,2804:2558:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:255c::,2804:255c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2560::,2804:2560:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2564::,2804:2564:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2568::,2804:2568:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:256c::,2804:256c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2570::,2804:2570:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2574::,2804:2574:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2578::,2804:2578:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:257c::,2804:257c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2580::,2804:2580:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2584::,2804:2584:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2588::,2804:2588:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:258c::,2804:258c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2590::,2804:2590:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2594::,2804:2594:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2598::,2804:2598:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:259c::,2804:259c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25a0::,2804:25a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25a4::,2804:25a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25a8::,2804:25a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25ac::,2804:25ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25b0::,2804:25b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25b4::,2804:25b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25b8::,2804:25b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25bc::,2804:25bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25c0::,2804:25c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25c4::,2804:25c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25c8::,2804:25c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25cc::,2804:25cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25d0::,2804:25d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25d4::,2804:25d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25d8::,2804:25d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25dc::,2804:25dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25e0::,2804:25e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25e4::,2804:25e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25e8::,2804:25e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25ec::,2804:25ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25f0::,2804:25f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25f4::,2804:25f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25f8::,2804:25f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:25fc::,2804:25fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2600::,2804:2600:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2604::,2804:2604:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2608::,2804:2608:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:260c::,2804:260c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2610::,2804:2610:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2614::,2804:2614:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2618::,2804:2618:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:261c::,2804:261c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2620::,2804:2620:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2624::,2804:2624:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2628::,2804:2628:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:262c::,2804:262c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2630::,2804:2630:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2634::,2804:2634:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2638::,2804:2638:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:263c::,2804:263c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2640::,2804:2640:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2644::,2804:2644:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2648::,2804:2648:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:264c::,2804:264c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2650::,2804:2650:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2654::,2804:2654:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2658::,2804:2658:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:265c::,2804:265c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2660::,2804:2660:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2664::,2804:2664:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2668::,2804:2668:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:266c::,2804:266c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2670::,2804:2670:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2674::,2804:2674:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2678::,2804:2678:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:267c::,2804:267c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2680::,2804:2680:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2684::,2804:2684:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2688::,2804:2688:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:268c::,2804:268c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2690::,2804:2690:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2694::,2804:2694:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2698::,2804:2698:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:269c::,2804:269c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26a0::,2804:26a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26a4::,2804:26a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26a8::,2804:26a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26ac::,2804:26ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26b0::,2804:26b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26b4::,2804:26b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26b8::,2804:26b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26bc::,2804:26bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26c0::,2804:26c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26c4::,2804:26c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26c8::,2804:26c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26cc::,2804:26cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26d0::,2804:26d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26d4::,2804:26d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26d8::,2804:26d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26dc::,2804:26dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26e0::,2804:26e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26e4::,2804:26e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26e8::,2804:26e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26ec::,2804:26ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26f0::,2804:26f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26f4::,2804:26f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26f8::,2804:26f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:26fc::,2804:26fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2700::,2804:2700:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2704::,2804:2704:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:270c::,2804:270c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2710::,2804:2710:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2714::,2804:2714:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2718::,2804:2718:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:271c::,2804:271c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2720::,2804:2720:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2724::,2804:2724:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2728::,2804:2728:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:272c::,2804:272c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2730::,2804:2730:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2734::,2804:2734:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2738::,2804:2738:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:273c::,2804:273c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2740::,2804:2740:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2744::,2804:2744:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2748::,2804:2748:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:274c::,2804:274c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2750::,2804:2750:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2754::,2804:2754:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2758::,2804:2758:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:275c::,2804:275c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2760::,2804:2760:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2764::,2804:2764:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2768::,2804:2768:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:276c::,2804:276c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2770::,2804:2770:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2774::,2804:2774:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2778::,2804:2778:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:277c::,2804:277c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2780::,2804:2780:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2784::,2804:2784:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2788::,2804:2788:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:278c::,2804:278c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2790::,2804:2790:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2794::,2804:2794:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2798::,2804:2798:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:279c::,2804:279c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27a0::,2804:27a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27a4::,2804:27a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27a8::,2804:27a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27ac::,2804:27ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27b0::,2804:27b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27b4::,2804:27b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27b8::,2804:27b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27bc::,2804:27bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27c0::,2804:27c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27c4::,2804:27c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27c8::,2804:27c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27cc::,2804:27cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27d0::,2804:27d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27d4::,2804:27d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27d8::,2804:27d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27dc::,2804:27dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27e0::,2804:27e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27e4::,2804:27e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27e8::,2804:27e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27ec::,2804:27ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27f0::,2804:27f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27f4::,2804:27f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27f8::,2804:27f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:27fc::,2804:27fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2800::,2804:2800:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2804::,2804:2804:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2808::,2804:2808:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:280c::,2804:280c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2810::,2804:2810:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2814::,2804:2814:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2818::,2804:2818:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:281c::,2804:281c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2820::,2804:2820:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2824::,2804:2824:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2828::,2804:2828:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:282c::,2804:282c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2830::,2804:2830:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2834::,2804:2834:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2838::,2804:2838:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:283c::,2804:283c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2840::,2804:2840:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2844::,2804:2844:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2848::,2804:2848:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:284c::,2804:284c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2850::,2804:2850:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2854::,2804:2854:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2858::,2804:2858:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:285c::,2804:285c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2860::,2804:2860:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2864::,2804:2864:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2868::,2804:2868:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:286c::,2804:286c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2870::,2804:2870:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2874::,2804:2874:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2878::,2804:2878:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:287c::,2804:287c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2880::,2804:2880:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2884::,2804:2884:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2888::,2804:2888:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:288c::,2804:288c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2890::,2804:2890:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2894::,2804:2894:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2898::,2804:2898:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:289c::,2804:289c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28a0::,2804:28a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28a4::,2804:28a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28a8::,2804:28a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28ac::,2804:28ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28b0::,2804:28b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28b4::,2804:28b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28b8::,2804:28b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28bc::,2804:28bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28c0::,2804:28c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28c4::,2804:28c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28c8::,2804:28c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28cc::,2804:28cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28d0::,2804:28d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28d4::,2804:28d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28d8::,2804:28d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28dc::,2804:28dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28e0::,2804:28e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28e4::,2804:28e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28e8::,2804:28e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28ec::,2804:28ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28f0::,2804:28f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28f4::,2804:28f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28f8::,2804:28f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:28fc::,2804:28fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2900::,2804:2900:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2904::,2804:2904:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2908::,2804:2908:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:290c::,2804:290c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2910::,2804:2910:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2914::,2804:2914:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2918::,2804:2918:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:291c::,2804:291c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2920::,2804:2920:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2924::,2804:2924:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2928::,2804:2928:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:292c::,2804:292c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2930::,2804:2930:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2934::,2804:2934:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2938::,2804:2938:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:293c::,2804:293c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2940::,2804:2940:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2944::,2804:2944:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2948::,2804:2948:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:294c::,2804:294c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2950::,2804:2950:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2954::,2804:2954:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2958::,2804:2958:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:295c::,2804:295c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2960::,2804:2960:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2964::,2804:2964:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2968::,2804:2968:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:296c::,2804:296c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2970::,2804:2970:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2974::,2804:2974:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2978::,2804:2978:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:297c::,2804:297c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2980::,2804:2980:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2984::,2804:2984:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2988::,2804:2988:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:298c::,2804:298c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2990::,2804:2990:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2994::,2804:2994:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2998::,2804:2998:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:299c::,2804:299c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29a0::,2804:29a0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29a4::,2804:29a4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29a8::,2804:29a8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29ac::,2804:29ac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29b0::,2804:29b0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29b4::,2804:29b4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29b8::,2804:29b8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29bc::,2804:29bc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29c0::,2804:29c0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29c4::,2804:29c4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29c8::,2804:29c8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29cc::,2804:29cc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29d0::,2804:29d0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29d4::,2804:29d4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29d8::,2804:29d8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29dc::,2804:29dc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29e0::,2804:29e0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29e4::,2804:29e4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29e8::,2804:29e8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29ec::,2804:29ec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29f0::,2804:29f0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29f4::,2804:29f4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29f8::,2804:29f8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:29fc::,2804:29fc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a00::,2804:2a00:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a04::,2804:2a04:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a08::,2804:2a08:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a0c::,2804:2a0c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a10::,2804:2a10:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a14::,2804:2a14:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a18::,2804:2a18:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a1c::,2804:2a1c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a20::,2804:2a20:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a24::,2804:2a24:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a28::,2804:2a28:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a2c::,2804:2a2c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a30::,2804:2a30:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a34::,2804:2a34:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a38::,2804:2a38:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a3c::,2804:2a3c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a40::,2804:2a40:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a44::,2804:2a44:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a48::,2804:2a48:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a4c::,2804:2a4c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a50::,2804:2a50:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a54::,2804:2a54:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a58::,2804:2a58:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a5c::,2804:2a5c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a60::,2804:2a60:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a64::,2804:2a64:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a68::,2804:2a68:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a6c::,2804:2a6c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a70::,2804:2a70:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a74::,2804:2a74:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a78::,2804:2a78:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a7c::,2804:2a7c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a80::,2804:2a80:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a84::,2804:2a84:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a88::,2804:2a88:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a8c::,2804:2a8c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a90::,2804:2a90:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a94::,2804:2a94:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a98::,2804:2a98:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2a9c::,2804:2a9c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2aa0::,2804:2aa0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2aa4::,2804:2aa4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2aa8::,2804:2aa8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2aac::,2804:2aac:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2ab0::,2804:2ab0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2ab4::,2804:2ab4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2ab8::,2804:2ab8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2abc::,2804:2abc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2ac0::,2804:2ac0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2ac4::,2804:2ac4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2ac8::,2804:2ac8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2acc::,2804:2acc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2ad0::,2804:2ad0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2ad4::,2804:2ad4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2ad8::,2804:2ad8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2adc::,2804:2adc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2ae0::,2804:2ae0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2ae4::,2804:2ae4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2ae8::,2804:2ae8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2aec::,2804:2aec:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2af0::,2804:2af0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2af4::,2804:2af4:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2af8::,2804:2af8:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2afc::,2804:2afc:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b00::,2804:2b00:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b04::,2804:2b04:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b08::,2804:2b08:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b0c::,2804:2b0c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b10::,2804:2b10:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b14::,2804:2b14:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b18::,2804:2b18:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b1c::,2804:2b1c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b20::,2804:2b20:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b24::,2804:2b24:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b28::,2804:2b28:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b2c::,2804:2b2c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b30::,2804:2b30:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b34::,2804:2b34:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b38::,2804:2b38:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b3c::,2804:2b3c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b40::,2804:2b40:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b44::,2804:2b44:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b48::,2804:2b48:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b4c::,2804:2b4c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b50::,2804:2b50:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b54::,2804:2b54:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b58::,2804:2b58:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b5c::,2804:2b5c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b60::,2804:2b60:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b64::,2804:2b64:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b68::,2804:2b68:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b6c::,2804:2b6c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b70::,2804:2b70:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b74::,2804:2b74:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b78::,2804:2b78:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b7c::,2804:2b7c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b80::,2804:2b80:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b84::,2804:2b84:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b88::,2804:2b88:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b8c::,2804:2b8c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b90::,2804:2b90:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b94::,2804:2b94:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b98::,2804:2b98:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2b9c::,2804:2b9c:ffff:ffff:ffff:ffff:ffff:ffff,BR 2804:2ba0::,2804:2ba0:ffff:ffff:ffff:ffff:ffff:ffff,BR 2806::,2806:f:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:200::,2806:20b:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:210::,2806:216::ffff:ffff:ffff:ffff:ffff,MX 2806:217::,2806:21d:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:220::,2806:220:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:230::,2806:230:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:238::,2806:238::ffff:ffff:ffff:ffff:ffff,MX 2806:238:10::,2806:238:10:ffff:ffff:ffff:ffff:ffff,MX 2806:239::,2806:239:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:240::,2806:240:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:250::,2806:250:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:260::,2806:260:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:270::,2806:270:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:280::,2806:280:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:290::,2806:290:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:2a0::,2806:2a0:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:2b0::,2806:2b0:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:2c0::,2806:2c0:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:2d0::,2806:2d0:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:2e0::,2806:2e0:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:2f0::,2806:2f0:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:300::,2806:300:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:310::,2806:310:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:320::,2806:320:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:330::,2806:330:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:340::,2806:340:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:350::,2806:350:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:360::,2806:360:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:370::,2806:370:ffff:ffff:ffff:ffff:ffff:ffff,MX 2806:1000::,2806:10ff:ffff:ffff:ffff:ffff:ffff:ffff,MX 2a00::,2a00:3ff:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:800::,2a00:87f:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:c00::,2a00:c00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:c08::,2a00:c08:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:c10::,2a00:c10:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:c18::,2a00:c18:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:c20::,2a00:c20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:c28::,2a00:c28:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:c30::,2a00:c37:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a00:c38::,2a00:c38:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:c40::,2a00:c40:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:c50::,2a00:c50:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:c58::,2a00:c58:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:c60::,2a00:c60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:c68::,2a00:c68:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a00:c70::,2a00:c70:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:c78::,2a00:c78:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:c80::,2a00:c80:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:c88::,2a00:c88:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a00:c90::,2a00:c90:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:c98::,2a00:c98:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:ca0::,2a00:ca0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:ca8::,2a00:ca8:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:cb0::,2a00:cb0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:cb8::,2a00:cb8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:cc0::,2a00:cc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:cc8::,2a00:cc8:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:cd0::,2a00:cd0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:cd8::,2a00:cd8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:ce0::,2a00:ce0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:ce8::,2a00:ce8:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:cf8::,2a00:cf8:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:d00::,2a00:d07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:d08::,2a00:d08:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:d10::,2a00:d10:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:d18::,2a00:d18:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:d20::,2a00:d20:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:d28::,2a00:d28:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:d30::,2a00:d30:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a00:d40::,2a00:d40:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:d50::,2a00:d50:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:d58::,2a00:d58:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:d60::,2a00:d60:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:d68::,2a00:d68:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:d70::,2a00:d70:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:d78::,2a00:d78:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:d80::,2a00:d80:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:d88::,2a00:d8f:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:d90::,2a00:d90:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:d98::,2a00:d98:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:da8::,2a00:da9:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:db0::,2a00:db0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:db8::,2a00:db8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:dc0::,2a00:dc0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:dc8::,2a00:dc8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:dd0::,2a00:dd0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:dd8::,2a00:dd8:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a00:de8::,2a00:de8:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:df0::,2a00:df0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:df8::,2a00:df8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:e00::,2a00:e00:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:e08::,2a00:e0f:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:e10::,2a00:e10:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:e18::,2a00:e18:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:e20::,2a00:e20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:e30::,2a00:e30:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:e38::,2a00:e38:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:e40::,2a00:e40:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a00:e48::,2a00:e48:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:e50::,2a00:e58:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:e60::,2a00:e68:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:e70::,2a00:e70:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:e78::,2a00:e7b:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:e80::,2a00:e80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:e88::,2a00:e88:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:e90::,2a00:e90:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a00:e98::,2a00:e98:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:ea0::,2a00:ea7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:ea8::,2a00:eaf:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:eb0::,2a00:eb0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:eb8::,2a00:eb8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:ec0::,2a00:ec0:ffff:ffff:ffff:ffff:ffff:ffff,LI 2a00:ec8::,2a00:ec8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:ed0::,2a00:ed0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:ed8::,2a00:ed8:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:ee0::,2a00:ee7:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a00:ee8::,2a00:ee8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:ef0::,2a00:ef0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:ef8::,2a00:ef8:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:f00::,2a00:f00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:f08::,2a00:f08:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:f10::,2a00:f17:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:f18::,2a00:f18:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:f20::,2a00:f20:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:f28::,2a00:f2f:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a00:f30::,2a00:f30:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:f38::,2a00:f38:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a00:f40::,2a00:f47:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:f48::,2a00:f4f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:f50::,2a00:f50:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:f58::,2a00:f58:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:f60::,2a00:f60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:f68::,2a00:f68:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:f70::,2a00:f70:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:f78::,2a00:f78:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:f80::,2a00:f80:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:f88::,2a00:f88:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:f90::,2a00:f90:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:f98::,2a00:f98:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:fa0::,2a00:fa7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:fa8::,2a00:fa8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:fb8::,2a00:fb8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:fc0::,2a00:fc0:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a00:fc8::,2a00:fc8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:fd0::,2a00:fd0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:fd8::,2a00:fd8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:fe0::,2a00:fe0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:fe8::,2a00:fe8:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a00:ff0::,2a00:ff0:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a00:ff8::,2a00:fff:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:1000::,2a00:1000:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1008::,2a00:1008:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:1010::,2a00:1010:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1018::,2a00:1018:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1020::,2a00:1020:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1028::,2a00:1028:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:1030::,2a00:1030:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1040::,2a00:1040:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:1048::,2a00:1048:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1050::,2a00:1050:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1058::,2a00:1058:111:ffff:ffff:ffff:ffff:ffff,FR 2a00:1058:112::,2a00:1058:112:7fff:ffff:ffff:ffff:ffff,GB 2a00:1058:112:8000::,2a00:1058:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1060::,2a00:1060:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a00:1068::,2a00:1068:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1070::,2a00:1070:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1078::,2a00:1078:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1080::,2a00:1080:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1088::,2a00:1088:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:1098::,2a00:1098:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:10a0::,2a00:10a0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:10a8::,2a00:10a8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:10b0::,2a00:10b7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:10b8::,2a00:10b8:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:10c0::,2a00:10c0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:10c8::,2a00:10c8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:10d0::,2a00:10d0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:10d8::,2a00:10d8:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a00:10e0::,2a00:10e0:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a00:10e8::,2a00:10f0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:10f8::,2a00:10f8:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a00:1100::,2a00:1107:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1108::,2a00:1108:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a00:1110::,2a00:1117:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:1118::,2a00:1118:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:1120::,2a00:1120:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1128::,2a00:1128:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:1130::,2a00:1130:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:1138::,2a00:1138:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1140::,2a00:1140:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:1148::,2a00:1148:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1150::,2a00:1150:ffff:ffff:ffff:ffff:ffff:ffff,BH 2a00:1158::,2a00:1158:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1160::,2a00:1167:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1168::,2a00:116f:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1170::,2a00:1170:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:1178::,2a00:1178::ffff:ffff:ffff:ffff:ffff,NL 2a00:1178:1::,2a00:1178:1:7fff:ffff:ffff:ffff:ffff,US 2a00:1178:1:8000::,2a00:1178:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1180::,2a00:1180:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1188::,2a00:1188:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1190::,2a00:1190:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:1198::,2a00:1198:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:11a8::,2a00:11a8:ffff:ffff:ffff:ffff:ffff:ffff,OM 2a00:11b0::,2a00:11b0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:11b8::,2a00:11b8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:11c0::,2a00:11c0:4:ffff:ffff:ffff:ffff:ffff,AT 2a00:11c0:5::,2a00:11c0:5:7fff:ffff:ffff:ffff:ffff,CH 2a00:11c0:5:8000::,2a00:11c0:7:ffff:ffff:ffff:ffff:ffff,AT 2a00:11c0:8::,2a00:11c0:8:ffff:ffff:ffff:ffff:ffff,GB 2a00:11c0:9::,2a00:11c0:62:ffff:ffff:ffff:ffff:ffff,AT 2a00:11c0:63::,2a00:11c0:63:ffff:ffff:ffff:ffff:ffff,NL 2a00:11c0:64::,2a00:11c0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:11c8::,2a00:11c8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:11d0::,2a00:11d0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:11d8::,2a00:11d8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:11e0::,2a00:11e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:11e8::,2a00:11ef:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:11f0::,2a00:11f0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:11f8::,2a00:11f8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1200::,2a00:1200:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1208::,2a00:1208:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:1210::,2a00:1210:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:1218::,2a00:1218:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a00:1220::,2a00:1220:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1228::,2a00:1228:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:1230::,2a00:1237:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1238::,2a00:1238:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:1240::,2a00:1240:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:1248::,2a00:1248:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1258::,2a00:1258:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:1260::,2a00:1260:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1268::,2a00:1268:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:1278::,2a00:1278:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1280::,2a00:1280:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1288::,2a00:1288:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1290::,2a00:1290:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1298::,2a00:1298:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a00:12a0::,2a00:12a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:12a8::,2a00:12a8:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a00:12b0::,2a00:12b0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:12c0::,2a00:12c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:12c8::,2a00:12c8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:12d0::,2a00:12df:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:12e0::,2a00:12e0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:12e8::,2a00:12e8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:12f0::,2a00:12f0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:12f8::,2a00:12f8:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a00:1300::,2a00:1300:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:1308::,2a00:1308:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:1318::,2a00:1318:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1320::,2a00:1327:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1328::,2a00:1328:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1338::,2a00:1338:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1340::,2a00:1340:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1348::,2a00:1348:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1350::,2a00:1350:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1358::,2a00:135b:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a00:1360::,2a00:1360:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:1368::,2a00:1368:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a00:1370::,2a00:1370:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1378::,2a00:1378:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1380::,2a00:1380:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:1388::,2a00:1388:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1390::,2a00:1390:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1398::,2a00:1398:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:13a0::,2a00:13a0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:13a8::,2a00:13a8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:13b0::,2a00:13b0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:13b8::,2a00:13b8:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a00:13c0::,2a00:13c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:13c8::,2a00:13c8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:13d0::,2a00:13d0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:13d8::,2a00:13df:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a00:13e0::,2a00:13e0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:13e8::,2a00:13e8:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:13f0::,2a00:13f0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:13f8::,2a00:13f8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1400::,2a00:1400:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:1408::,2a00:1408:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1410::,2a00:1410:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1418::,2a00:1418:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1420::,2a00:1420:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a00:1428::,2a00:1428:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a00:1430::,2a00:1430:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1440::,2a00:1440:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1448::,2a00:144f:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a00:1450::,2a00:1450:400b:ffff:ffff:ffff:ffff:ffff,IE 2a00:1450:400c::,2a00:1450:400c:ffff:ffff:ffff:ffff:ffff,BE 2a00:1450:400d::,2a00:1450:400f:ffff:ffff:ffff:ffff:ffff,IE 2a00:1450:4010::,2a00:1450:4010:ffff:ffff:ffff:ffff:ffff,FI 2a00:1450:4011::,2a00:1450:4012:ffff:ffff:ffff:ffff:ffff,IE 2a00:1450:4013::,2a00:1450:4013:ffff:ffff:ffff:ffff:ffff,NL 2a00:1450:4014::,2a00:1457:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:1458::,2a00:1458:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:1460::,2a00:1460:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1468::,2a00:1468:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1470::,2a00:1470:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1478::,2a00:1478:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1480::,2a00:1480:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a00:1488::,2a00:1488:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:1490::,2a00:1490:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1498::,2a00:1498:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:14a0::,2a00:14a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:14a8::,2a00:14a8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:14b0::,2a00:14b0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:14b8::,2a00:14b8:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:14c0::,2a00:14c0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:14c8::,2a00:14c8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:14d0::,2a00:14d0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:14d8::,2a00:14d8:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:14e0::,2a00:14e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:14e8::,2a00:14ef:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:14f0::,2a00:14f0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:14f8::,2a00:14f8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:1500::,2a00:1507:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a00:1508::,2a00:1508:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:1510::,2a00:1510:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:1518::,2a00:1518:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1520::,2a00:1520:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:1528::,2a00:1528:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:1530::,2a00:1531:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:1538::,2a00:1538:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1540::,2a00:1540:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1548::,2a00:1548:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:1550::,2a00:1550:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:1558::,2a00:1558:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1560::,2a00:1560:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a00:1568::,2a00:1568:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:1570::,2a00:1570:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:1578::,2a00:1578:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:1580::,2a00:1580:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a00:1588::,2a00:1588:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:1590::,2a00:1590:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a00:1598::,2a00:159f:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:15a0::,2a00:15a0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:15a8::,2a00:15a8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:15b0::,2a00:15b0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:15b8::,2a00:15b8:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:15c0::,2a00:15c0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:15c8::,2a00:15c8:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:15d0::,2a00:15d0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:15e0::,2a00:15e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:15e8::,2a00:15e8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:15f0::,2a00:15f0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:15f8::,2a00:15f8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1600::,2a00:1607:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a00:1610::,2a00:1618:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:1620::,2a00:1620:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:1628::,2a00:1628:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:1630::,2a00:1637:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1638::,2a00:1638:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:1640::,2a00:1640:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1648::,2a00:1648:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1650::,2a00:1650:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a00:1660::,2a00:1660:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:1668::,2a00:1668:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1670::,2a00:1670:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1678::,2a00:1678:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1680::,2a00:1680:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:1688::,2a00:1688:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:1690::,2a00:1690:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:1698::,2a00:1698:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a00:16a0::,2a00:16a0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:16a8::,2a00:16a8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:16b0::,2a00:16b0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:16c8::,2a00:16c8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:16d0::,2a00:16d0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:16d8::,2a00:16d8:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:16e0::,2a00:16e0:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a00:16e8::,2a00:16e8:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a00:16f8::,2a00:16f8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1700::,2a00:1700:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1708::,2a00:1708:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1710::,2a00:1710:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a00:1718::,2a00:1718:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:1720::,2a00:1720:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1728::,2a00:1728:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a00:1730::,2a00:1730:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1748::,2a00:1748:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1750::,2a00:1750:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1758::,2a00:1758:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:1760::,2a00:1760:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a00:1768::,2a00:176f:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1778::,2a00:1778:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:1780::,2a00:1780:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a00:1788::,2a00:1788:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1790::,2a00:1790:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:1798::,2a00:1798:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:17a0::,2a00:17a0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:17a8::,2a00:17a8:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:17b0::,2a00:17b0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:17b8::,2a00:17b8:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:17c0::,2a00:17c0:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a00:17c8::,2a00:17d0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:17d8::,2a00:17d8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:17e0::,2a00:17e0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:17e8::,2a00:17e8:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:17f0::,2a00:17f0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:17f8::,2a00:17f8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1800::,2a00:1800:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:1808::,2a00:1808:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:1810::,2a00:1810:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a00:1818::,2a00:1818:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1828::,2a00:1828:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1830::,2a00:1830:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1838::,2a00:1838:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1840::,2a00:1840:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:1848::,2a00:1848:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1850::,2a00:1850:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a00:1858::,2a00:1858:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a00:1860::,2a00:1860:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:1868::,2a00:1868:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:1878::,2a00:1878:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:1880::,2a00:1880:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:1888::,2a00:1888:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1890::,2a00:1897:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1898::,2a00:1898:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:18a0::,2a00:18a0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:18a8::,2a00:18a8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:18b0::,2a00:18b0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:18b8::,2a00:18b8:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:18c0::,2a00:18c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:18c8::,2a00:18c8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:18d0::,2a00:18d0:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a00:18d8::,2a00:18d8:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a00:18e0::,2a00:18e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:18e8::,2a00:18e8:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a00:18f0::,2a00:18f0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:18f8::,2a00:18f8:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a00:1900::,2a00:1900:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1908::,2a00:190f:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:1910::,2a00:1917:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1918::,2a00:191f:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a00:1920::,2a00:1920:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1928::,2a00:1928:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1930::,2a00:1930:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1938::,2a00:1938:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1940::,2a00:1940:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1948::,2a00:1948:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1950::,2a00:1950:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1958::,2a00:1958:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1960::,2a00:1960:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1968::,2a00:1968:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:1970::,2a00:1970:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1978::,2a00:1978:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1980::,2a00:1980:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:1988::,2a00:1988:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:1990::,2a00:1990:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1998::,2a00:1998:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:19a0::,2a00:19a0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:19a8::,2a00:19a8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:19b0::,2a00:19b0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:19b8::,2a00:19b8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:19c0::,2a00:19c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:19c8::,2a00:19c8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:19d0::,2a00:19d7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:19d8::,2a00:19d8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:19e0::,2a00:19e7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:19e8::,2a00:19e8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:19f0::,2a00:19f0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:19f8::,2a00:19f8:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:1a00::,2a00:1a00:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1a08::,2a00:1a08:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a00:1a10::,2a00:1a10:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1a18::,2a00:1a18:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1a20::,2a00:1a20:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a00:1a28::,2a00:1a28:1162:ffff:ffff:ffff:ffff:ffff,SE 2a00:1a28:1163::,2a00:1a28:1163:7fff:ffff:ffff:ffff:ffff,GB 2a00:1a28:1163:8000::,2a00:1a28:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:1a30::,2a00:1a30:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1a38::,2a00:1a38:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1a40::,2a00:1a40:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:1a48::,2a00:1a48:7803:107:65bb:ffff:ffff:ffff,GB 2a00:1a48:7803:107:65bc::,2a00:1a48:7803:107:65bc:ffff:ffff:ffff,DE 2a00:1a48:7803:107:65bd::,2a00:1a48:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1a50::,2a00:1a50:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:1a58::,2a00:1a58:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:1a60::,2a00:1a60:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1a68::,2a00:1a68:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:1a70::,2a00:1a70:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1a78::,2a00:1a78:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:1a80::,2a00:1a80:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1a88::,2a00:1a88:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:1a90::,2a00:1a90:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1a98::,2a00:1a98:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a00:1aa0::,2a00:1aa0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1aa8::,2a00:1aaf:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:1ab0::,2a00:1ab0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1ab8::,2a00:1ab8:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:1ac0::,2a00:1ac0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1ac8::,2a00:1ac8:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:1ad0::,2a00:1ad0:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a00:1ad8::,2a00:1ad8:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:1ae0::,2a00:1ae0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:1ae8::,2a00:1ae8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1af0::,2a00:1af7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:1af8::,2a00:1af8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1b00::,2a00:1b00:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a00:1b08::,2a00:1b08:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1b10::,2a00:1b17:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1b18::,2a00:1b18:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:1b20::,2a00:1b20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1b28::,2a00:1b28:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1b30::,2a00:1b30:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1b38::,2a00:1b38:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:1b40::,2a00:1b40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1b48::,2a00:1b48:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1b50::,2a00:1b50:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:1b58::,2a00:1b58:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1b60::,2a00:1b60:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:1b68::,2a00:1b68:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1b70::,2a00:1b70:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:1b78::,2a00:1b78:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1b80::,2a00:1b80:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a00:1b88::,2a00:1b88:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1b90::,2a00:1b90:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:1b98::,2a00:1b98:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1ba0::,2a00:1ba0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:1ba8::,2a00:1ba8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1bb0::,2a00:1bb0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1bb8::,2a00:1bb8:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a00:1bc0::,2a00:1bc0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:1bc8::,2a00:1bc8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1bd0::,2a00:1bd0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1bd8::,2a00:1bd8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1be0::,2a00:1be0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:1be8::,2a00:1be8:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:1bf0::,2a00:1bf0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1bf8::,2a00:1bf8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1c00::,2a00:1c00:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:1c08::,2a00:1c08:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1c10::,2a00:1c10:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1c18::,2a00:1c1f:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1c20::,2a00:1c20:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:1c28::,2a00:1c28:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1c30::,2a00:1c30:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:1c38::,2a00:1c3f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1c40::,2a00:1c40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1c48::,2a00:1c49:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1c50::,2a00:1c50:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:1c58::,2a00:1c58:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1c60::,2a00:1c60:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a00:1c68::,2a00:1c68:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:1c70::,2a00:1c70:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1c78::,2a00:1c78:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1c80::,2a00:1c87:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a00:1c88::,2a00:1c88:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1c90::,2a00:1c90:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:1c98::,2a00:1c98:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:1ca0::,2a00:1ca0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1ca8::,2a00:1ca8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1cb0::,2a00:1cb0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:1cb8::,2a00:1cb8:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a00:1cc0::,2a00:1cc0:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a00:1cc8::,2a00:1cc8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:1cd0::,2a00:1cd0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1cd8::,2a00:1cd8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1ce0::,2a00:1ce0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:1ce8::,2a00:1ce8:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:1cf0::,2a00:1cf0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:1cf8::,2a00:1cff:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:1d00::,2a00:1d00:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:1d08::,2a00:1d08:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1d10::,2a00:1d10:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a00:1d18::,2a00:1d18:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:1d20::,2a00:1d27:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1d28::,2a00:1d28:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:1d30::,2a00:1d37:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:1d38::,2a00:1d38:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1d40::,2a00:1d40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1d48::,2a00:1d48:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1d50::,2a00:1d50:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:1d58::,2a00:1d58:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:1d60::,2a00:1d60:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:1d68::,2a00:1d68:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:1d70::,2a00:1d70:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:1d78::,2a00:1d78:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1d80::,2a00:1d80:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:1d88::,2a00:1d88:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:1d90::,2a00:1d90:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1da0::,2a00:1da0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1da8::,2a00:1da8:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a00:1db0::,2a00:1db0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:1db8::,2a00:1db8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1dc0::,2a00:1dc7:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a00:1dc8::,2a00:1dc8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1dd0::,2a00:1dd0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:1dd8::,2a00:1ddf:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a00:1de0::,2a00:1de0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1de8::,2a00:1de8:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:1df0::,2a00:1df0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1df8::,2a00:1df8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:1e00::,2a00:1e00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1e08::,2a00:1e08:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:1e10::,2a00:1e10:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1e18::,2a00:1e1f:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:1e20::,2a00:1e20:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:1e28::,2a00:1e28:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1e30::,2a00:1e30:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1e38::,2a00:1e38:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:1e40::,2a00:1e40:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a00:1e48::,2a00:1e48:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1e50::,2a00:1e50:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1e58::,2a00:1e58:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:1e60::,2a00:1e60:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:1e68::,2a00:1e68:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1e70::,2a00:1e70:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1e78::,2a00:1e78:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1e80::,2a00:1e80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1e88::,2a00:1e88:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1e90::,2a00:1e90:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:1e98::,2a00:1e98:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:1ea0::,2a00:1ea0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:1ea8::,2a00:1ea8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1eb0::,2a00:1eb0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:1eb8::,2a00:1eb8:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a00:1ec0::,2a00:1ec0:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a00:1ec8::,2a00:1ecf:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1ed0::,2a00:1ed0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:1ed8::,2a00:1edf:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:1ee0::,2a00:1ee0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1ee8::,2a00:1ee8:ffff:ffff:ffff:ffff:ffff:ffff,SY 2a00:1ef0::,2a00:1ef0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a00:1ef8::,2a00:1eff:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a00:1f00::,2a00:1f00:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1f08::,2a00:1f08:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1f10::,2a00:1f10:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1f18::,2a00:1f1f:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:1f20::,2a00:1f20:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a00:1f28::,2a00:1f28:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a00:1f30::,2a00:1f30:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:1f38::,2a00:1f38:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1f40::,2a00:1f47:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:1f48::,2a00:1f48:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:1f50::,2a00:1f50:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:1f58::,2a00:1f5f:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:1f60::,2a00:1f60:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1f68::,2a00:1f68:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a00:1f70::,2a00:1f70:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1f78::,2a00:1f7f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1f80::,2a00:1f80:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:1f88::,2a00:1f88:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:1f90::,2a00:1f90:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:1f98::,2a00:1f98:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:1fa0::,2a00:1fa0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1fa8::,2a00:1fa8:ffff:ffff:ffff:ffff:ffff:ffff,GL 2a00:1fb0::,2a00:1fb0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1fb8::,2a00:1fb8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:1fc0::,2a00:1fc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:1fd0::,2a00:1fd0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:1fd8::,2a00:1fd8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1fe0::,2a00:1fe0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:1fe8::,2a00:1fe8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:1ff0::,2a00:1ff0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:1ff8::,2a00:1ff8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:2000::,2a00:23ff:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:4000::,2a00:4000:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:4020::,2a00:4020:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:4040::,2a00:4040:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:4060::,2a00:4060:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:4080::,2a00:4087:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a00:40a0::,2a00:40a0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:40c0::,2a00:40c0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:40e0::,2a00:40e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:4100::,2a00:4100:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:4120::,2a00:4120:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:4140::,2a00:4140:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:4160::,2a00:4160:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:4180::,2a00:4180:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a00:41a0::,2a00:41a0:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a00:41c0::,2a00:41c0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:41e0::,2a00:41e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:4200::,2a00:4200:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:4220::,2a00:4220:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:4240::,2a00:4240:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:4260::,2a00:4260:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:4280::,2a00:4280:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:42a0::,2a00:42a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:42c0::,2a00:42c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:4300::,2a00:4300:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:4320::,2a00:4320:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:4340::,2a00:4340:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:4360::,2a00:4360:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a00:4380::,2a00:4387:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:43a0::,2a00:43a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:43c0::,2a00:43c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:43e0::,2a00:43e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:4400::,2a00:4400:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:4420::,2a00:4420:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:4440::,2a00:4440:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a00:4460::,2a00:4460:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:4480::,2a00:4480:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:44a0::,2a00:44a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:44c0::,2a00:44c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:44e0::,2a00:44e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:4500::,2a00:4500:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:4520::,2a00:4520:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a00:4540::,2a00:4540:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:4560::,2a00:4560:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:4580::,2a00:4580:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:45a0::,2a00:45a0:ffff:ffff:ffff:ffff:ffff:ffff,SY 2a00:45c0::,2a00:45c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:45e0::,2a00:45e0:ffff:ffff:ffff:ffff:ffff:ffff,IM 2a00:4600::,2a00:4600:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:4620::,2a00:4620:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a00:4640::,2a00:4640:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:4660::,2a00:4660:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:4680::,2a00:4680:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:46a0::,2a00:46a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:46c0::,2a00:46c0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:46e0::,2a00:46e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:4700::,2a00:4700:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:4720::,2a00:4720:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:4740::,2a00:4740:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:4760::,2a00:4760:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:4780::,2a00:4780:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:47a0::,2a00:47a0:ffff:ffff:ffff:ffff:ffff:ffff,KG 2a00:47c0::,2a00:47c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:4800::,2a00:4807:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a00:4820::,2a00:4820:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:4840::,2a00:4847:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:4860::,2a00:4860:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:4880::,2a00:4880:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:48a0::,2a00:48a0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:48c0::,2a00:48c0:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a00:48e0::,2a00:48e0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:4900::,2a00:4900:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:4920::,2a00:4920:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:4940::,2a00:4940:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a00:4960::,2a00:4960:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:4980::,2a00:4987:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:49c0::,2a00:49c0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:49e0::,2a00:49e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:4a00::,2a00:4a00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:4a20::,2a00:4a20:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:4a40::,2a00:4a40:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:4a60::,2a00:4a60:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a00:4a80::,2a00:4a80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:4aa0::,2a00:4aa0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:4ac0::,2a00:4ac0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:4ae0::,2a00:4ae7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:4b00::,2a00:4b00:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:4b20::,2a00:4b20:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:4b40::,2a00:4b40:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a00:4b60::,2a00:4b60:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a00:4b80::,2a00:4b80:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:4ba0::,2a00:4ba0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:4bc0::,2a00:4bc0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:4be0::,2a00:4be0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:4c00::,2a00:4c00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:4c20::,2a00:4c20:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a00:4c40::,2a00:4c40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:4c60::,2a00:4c60:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:4c80::,2a00:4c87:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a00:4ca0::,2a00:4ca0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:4cc0::,2a00:4cc7:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:4ce0::,2a00:4ce0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:4d00::,2a00:4d00:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:4d20::,2a00:4d20:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:4d40::,2a00:4d40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:4d60::,2a00:4d60:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a00:4d80::,2a00:4d80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:4da0::,2a00:4da0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:4dc0::,2a00:4dc0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:4de0::,2a00:4de0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:4e00::,2a00:4e00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:4e20::,2a00:4e20:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:4e40::,2a00:4e40:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:4e60::,2a00:4e60:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a00:4e80::,2a00:4e80:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a00:4ea0::,2a00:4ea0:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a00:4ec0::,2a00:4ec0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:4ee0::,2a00:4ee0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:4f00::,2a00:4f00:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:4f20::,2a00:4f20:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:4f40::,2a00:4f40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:4f60::,2a00:4f60:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:4f80::,2a00:4f80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:4fa0::,2a00:4fa7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:4fc0::,2a00:4fc0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:4fe0::,2a00:4fe0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:5000::,2a00:5000:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a00:5020::,2a00:5020:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:5040::,2a00:5040:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:5060::,2a00:5060:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:5080::,2a00:5080:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:50a0::,2a00:50a0:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a00:50c0::,2a00:50c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:50e0::,2a00:50e7:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a00:5100::,2a00:5100:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:5120::,2a00:5120:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:5140::,2a00:5140:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:5160::,2a00:5160:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:5180::,2a00:5180:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:51a0::,2a00:51a0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a00:51c0::,2a00:51c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:51e0::,2a00:51e0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:5200::,2a00:5200:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:5220::,2a00:5220:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:5240::,2a00:5240:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:5260::,2a00:5260:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:5280::,2a00:5280:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:52a0::,2a00:52a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:52c0::,2a00:52c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:52e0::,2a00:52e0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:5300::,2a00:5300:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:5320::,2a00:5320:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:5340::,2a00:5340:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:5360::,2a00:5360:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:5380::,2a00:5380:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a00:53a0::,2a00:53a0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:53c0::,2a00:53c0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:53e0::,2a00:53e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:5400::,2a00:5400:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a00:5420::,2a00:5420:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:5440::,2a00:5440:ffff:ffff:ffff:ffff:ffff:ffff,US 2a00:5480::,2a00:5487:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:54a0::,2a00:54a0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:54c0::,2a00:54c0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:54e0::,2a00:54e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:5500::,2a00:5500::7fff:ffff:ffff:ffff:ffff,AX 2a00:5500:0:8000::,2a00:5500:1fff:ffff:ffff:ffff:ffff:ffff,FI 2a00:5500:2000::,2a00:5500:2000:7fff:ffff:ffff:ffff:ffff,SE 2a00:5500:2000:8000::,2a00:5500:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:5520::,2a00:5520:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:5540::,2a00:5540:385:ffff:ffff:ffff:ffff:ffff,GB 2a00:5540:386::,2a00:5540:387:ffff:ffff:ffff:ffff:ffff,SI 2a00:5540:388::,2a00:5540:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:5560::,2a00:5560:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:5580::,2a00:5580:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:55a0::,2a00:55a0:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a00:55c0::,2a00:55c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:55e0::,2a00:55e0:ffff:ffff:ffff:ffff:ffff:ffff,SM 2a00:5600::,2a00:5600:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:5620::,2a00:5620:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:5640::,2a00:5647:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:5680::,2a00:5680:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:56a0::,2a00:56a0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:56c0::,2a00:56c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:56e0::,2a00:56e0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:5700::,2a00:5700:ffff:ffff:ffff:ffff:ffff:ffff,KG 2a00:5720::,2a00:5720:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:5740::,2a00:5740:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:5760::,2a00:5760:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:5780::,2a00:5780:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:57a0::,2a00:57a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:57c0::,2a00:57c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:57e0::,2a00:57e0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:5800::,2a00:5800:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:5820::,2a00:5820:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:5840::,2a00:5840:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:5860::,2a00:5860:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:5880::,2a00:5887:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:58c0::,2a00:58c0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:58e0::,2a00:58e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:5900::,2a00:5900:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:5920::,2a00:5920:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:5940::,2a00:5940:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:5960::,2a00:5960:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:5980::,2a00:5980:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a00:59a0::,2a00:59a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:59c0::,2a00:59c0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:59e0::,2a00:59e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:5a00::,2a00:5a00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:5a20::,2a00:5a20:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:5a40::,2a00:5a40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:5a60::,2a00:5a60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:5a80::,2a00:5a80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:5aa0::,2a00:5aa0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:5ac0::,2a00:5ac0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:5ae0::,2a00:5ae0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:5b00::,2a00:5b07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:5b20::,2a00:5b20:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:5b40::,2a00:5b40:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:5b60::,2a00:5b60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:5b80::,2a00:5b87:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:5ba0::,2a00:5ba7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:5bc0::,2a00:5bc0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:5be0::,2a00:5be0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:5c00::,2a00:5c00:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:5c20::,2a00:5c20:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:5c40::,2a00:5c47:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a00:5c60::,2a00:5c60:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:5c80::,2a00:5c80:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:5ca0::,2a00:5ca0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:5cc0::,2a00:5cc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:5ce0::,2a00:5ce0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:5d00::,2a00:5d00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:5d20::,2a00:5d20:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:5d40::,2a00:5d40:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:5d60::,2a00:5d60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:5d80::,2a00:5d80:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:5da0::,2a00:5da0:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a00:5dc0::,2a00:5dc0:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a00:5de0::,2a00:5de0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:5e00::,2a00:5e00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:5e20::,2a00:5e20:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:5e40::,2a00:5e40:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:5e60::,2a00:5e60:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a00:5e80::,2a00:5e80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:5ea0::,2a00:5ea7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:5ec0::,2a00:5ec0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:5ee0::,2a00:5ee0:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a00:5f00::,2a00:5f00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:5f20::,2a00:5f20:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:5f40::,2a00:5f47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:5f80::,2a00:5f80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:5fa0::,2a00:5fa0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:5fc0::,2a00:5fc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:5fe0::,2a00:5fe0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:6000::,2a00:6000:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:6020::,2a00:6020:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:6040::,2a00:6040:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:6060::,2a00:6060:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:6080::,2a00:6080:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:60a0::,2a00:60a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:60c0::,2a00:60c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:60e0::,2a00:60e0:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:6100::,2a00:6100:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:6120::,2a00:6120:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:6140::,2a00:6140:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:6160::,2a00:6160:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:6180::,2a00:6180:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:61a0::,2a00:61a7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:61c0::,2a00:61c7:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a00:61e0::,2a00:61e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:6200::,2a00:6207:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:6220::,2a00:6220:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:6240::,2a00:6240:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:6260::,2a00:6260:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:6280::,2a00:6280:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:62a0::,2a00:62a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:62c0::,2a00:62c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:62e0::,2a00:62e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:6300::,2a00:6300:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:6320::,2a00:6320:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:6340::,2a00:6340:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:6360::,2a00:6360:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:6380::,2a00:6380:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:63a0::,2a00:63a0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:63c0::,2a00:63c7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:63e0::,2a00:63e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:6400::,2a00:6400:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:6420::,2a00:6420:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:6440::,2a00:6440:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a00:6460::,2a00:6460:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:6480::,2a00:6480:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:64a0::,2a00:64a0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:64c0::,2a00:64c0:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a00:64e0::,2a00:64e0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:6500::,2a00:6507:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:6520::,2a00:6520:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:6540::,2a00:6540:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:6560::,2a00:6560:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:6580::,2a00:6580:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a00:65a0::,2a00:65a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:65c0::,2a00:65c0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:65e0::,2a00:65e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:6600::,2a00:6600:ffff:ffff:ffff:ffff:ffff:ffff,BH 2a00:6620::,2a00:6620:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a00:6640::,2a00:6647:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:6660::,2a00:6660:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:66a0::,2a00:66a0:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a00:66c0::,2a00:66c0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:66e0::,2a00:66e0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:6720::,2a00:6720:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:6740::,2a00:6740:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:6760::,2a00:6760:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:6780::,2a00:6780:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:67a0::,2a00:67a7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:67c0::,2a00:67c0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:67e0::,2a00:67e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:6800::,2a00:6800:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:6820::,2a00:6820:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:6840::,2a00:6840:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a00:6860::,2a00:6867:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:6880::,2a00:6880:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a00:68a0::,2a00:68a0:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a00:68c0::,2a00:68c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:6900::,2a00:6900:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:6920::,2a00:6920:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a00:6940::,2a00:6940:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:6960::,2a00:6960:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:6980::,2a00:6980:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:69a0::,2a00:69a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:69c0::,2a00:69c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:69e0::,2a00:69e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:6a00::,2a00:6a00:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a00:6a20::,2a00:6a20:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:6a40::,2a00:6a40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:6a60::,2a00:6a60:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:6a80::,2a00:6a87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:6ac0::,2a00:6ac0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:6ae0::,2a00:6ae0:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a00:6b00::,2a00:6b00:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:6b20::,2a00:6b20:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a00:6b40::,2a00:6b40:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:6b60::,2a00:6b60:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:6b80::,2a00:6b80:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a00:6ba0::,2a00:6ba0:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a00:6bc0::,2a00:6bc0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:6be0::,2a00:6be0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:6c00::,2a00:6c00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:6c20::,2a00:6c20:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:6c40::,2a00:6c40:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:6c60::,2a00:6c60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:6c80::,2a00:6c80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:6ca0::,2a00:6ca0:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a00:6cc0::,2a00:6cc0:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a00:6ce0::,2a00:6ce0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:6d00::,2a00:6d00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:6d20::,2a00:6d20:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a00:6d40::,2a00:6d47:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:6d60::,2a00:6d60:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:6d80::,2a00:6d80:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:6da0::,2a00:6da0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:6dc0::,2a00:6dc0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:6de0::,2a00:6de0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:6e00::,2a00:6e00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:6e20::,2a00:6e20:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a00:6e40::,2a00:6e40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:6e60::,2a00:6e60:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:6e80::,2a00:6e80:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:6ea0::,2a00:6ea0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:6ec0::,2a00:6ec0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:6ee0::,2a00:6ee0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:6f00::,2a00:6f00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:6f20::,2a00:6f20:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:6f40::,2a00:6f40:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a00:6f60::,2a00:6f60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:6f80::,2a00:6f80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:6fa0::,2a00:6fa0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:6fc0::,2a00:6fc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:6fe0::,2a00:6fe0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:7000::,2a00:7000:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:7020::,2a00:7020:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:7040::,2a00:7040:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:7060::,2a00:7060:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:7080::,2a00:7080:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:70a0::,2a00:70a0:ffff:ffff:ffff:ffff:ffff:ffff,SY 2a00:70c0::,2a00:70c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:70e0::,2a00:70e0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:7100::,2a00:7100:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:7120::,2a00:7120:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:7140::,2a00:7147:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:7160::,2a00:7160:ffff:ffff:ffff:ffff:ffff:ffff,KG 2a00:7180::,2a00:7180:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:71a0::,2a00:71a0:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a00:71c0::,2a00:71c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:71e0::,2a00:71e0:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a00:7200::,2a00:7200:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:7220::,2a00:7220:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:7240::,2a00:7243:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:7260::,2a00:7267:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:7280::,2a00:7280:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:72a0::,2a00:72a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:72c0::,2a00:72c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:72e0::,2a00:72e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:7300::,2a00:7300:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:7320::,2a00:7327:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:7340::,2a00:7340:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:7360::,2a00:7360:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a00:7380::,2a00:7380:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:73a0::,2a00:73a0:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a00:73c0::,2a00:73c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:73e0::,2a00:73e0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:7400::,2a00:7400:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:7420::,2a00:7420:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:7440::,2a00:7447:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:7460::,2a00:7460:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:7480::,2a00:7480:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:74a0::,2a00:74a0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:74c0::,2a00:74c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:74e0::,2a00:74e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:7500::,2a00:7500:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:7520::,2a00:7520:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:7540::,2a00:7540:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:7560::,2a00:7560:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:7580::,2a00:7580:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:75a0::,2a00:75a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:75c0::,2a00:75c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:75e0::,2a00:75e0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:7600::,2a00:7600:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a00:7620::,2a00:7620:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a00:7640::,2a00:7640:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:7660::,2a00:7667:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:7680::,2a00:7680:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a00:76a0::,2a00:76a0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:76c0::,2a00:76c7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:76e0::,2a00:76e0:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a00:7700::,2a00:7700:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:7720::,2a00:7720:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:7740::,2a00:7740:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:7760::,2a00:7767:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:7780::,2a00:7780:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a00:77a0::,2a00:77a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:77c0::,2a00:77c0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:77e0::,2a00:77e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:7800::,2a00:7800:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:7820::,2a00:7820:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:7840::,2a00:7840:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a00:7860::,2a00:7860:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:7880::,2a00:7880:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a00:78a0::,2a00:78a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:78c0::,2a00:78c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:78e0::,2a00:78e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:7900::,2a00:7900:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:7920::,2a00:7920:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:7940::,2a00:7940:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:7960::,2a00:7960:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:7980::,2a00:7980:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:79a0::,2a00:79a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:79c0::,2a00:79c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:79e0::,2a00:79e0::ffff:ffff:ffff:ffff:ffff,CH 2a00:79e0:1::,2a00:79e0:1:7fff:ffff:ffff:ffff:ffff,CZ 2a00:79e0:1:8000::,2a00:79e0:1:ffff:ffff:ffff:ffff:ffff,CH 2a00:79e0:2::,2a00:79e0:2:7fff:ffff:ffff:ffff:ffff,PL 2a00:79e0:2:8000::,2a00:79e0:2:ffff:ffff:ffff:ffff:ffff,CH 2a00:79e0:3::,2a00:79e0:3:7fff:ffff:ffff:ffff:ffff,IE 2a00:79e0:3:8000::,2a00:79e0:4:7fff:ffff:ffff:ffff:ffff,CH 2a00:79e0:4:8000::,2a00:79e0:4:ffff:ffff:ffff:ffff:ffff,FI 2a00:79e0:5::,2a00:79e0:5:ffff:ffff:ffff:ffff:ffff,CH 2a00:79e0:6::,2a00:79e0:6:ffff:ffff:ffff:ffff:ffff,GB 2a00:79e0:7::,2a00:79e0:a:7fff:ffff:ffff:ffff:ffff,CH 2a00:79e0:a:8000::,2a00:79e0:a:ffff:ffff:ffff:ffff:ffff,GB 2a00:79e0:b::,2a00:79e0:b:ffff:ffff:ffff:ffff:ffff,IT 2a00:79e0:c::,2a00:79e0:c:ffff:ffff:ffff:ffff:ffff,GB 2a00:79e0:d::,2a00:79e0:13:ffff:ffff:ffff:ffff:ffff,CH 2a00:79e0:14::,2a00:79e0:14:ffff:ffff:ffff:ffff:ffff,ZA 2a00:79e0:15::,2a00:79e0:15:ffff:ffff:ffff:ffff:ffff,DE 2a00:79e0:16::,2a00:79e0:22:ffff:ffff:ffff:ffff:ffff,CH 2a00:79e0:23::,2a00:79e0:23:ffff:ffff:ffff:ffff:ffff,GB 2a00:79e0:24::,2a00:79e1:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:7a00::,2a00:7a00:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:7a20::,2a00:7a20:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:7a40::,2a00:7a40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:7a60::,2a00:7a60:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:7a80::,2a00:7a80:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:7aa0::,2a00:7aa0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:7ac0::,2a00:7ac0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:7ae0::,2a00:7ae0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:7b00::,2a00:7b07:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:7b40::,2a00:7b40:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:7b60::,2a00:7b60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:7b80::,2a00:7b80:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:7ba0::,2a00:7ba0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:7bc0::,2a00:7bc0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:7be0::,2a00:7be0:ffff:ffff:ffff:ffff:ffff:ffff,QA 2a00:7c00::,2a00:7c00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:7c20::,2a00:7c20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:7c60::,2a00:7c60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:7c80::,2a00:7c87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:7ca0::,2a00:7ca0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:7cc0::,2a00:7cc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:7ce0::,2a00:7ce0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:7d00::,2a00:7d00:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:7d20::,2a00:7d20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:7d40::,2a00:7d40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:7d60::,2a00:7d60:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:7d80::,2a00:7d80:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:7da0::,2a00:7da0:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a00:7dc0::,2a00:7dc0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:7de0::,2a00:7de0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:7e00::,2a00:7e00:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:7e20::,2a00:7e20:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a00:7e40::,2a00:7e40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:7e60::,2a00:7e60:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:7e80::,2a00:7e80:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:7ea0::,2a00:7ea0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:7ec0::,2a00:7ec0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:7ee0::,2a00:7ee0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:7f00::,2a00:7f00:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:7f20::,2a00:7f20:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a00:7f40::,2a00:7f40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:7f60::,2a00:7f60:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a00:7f80::,2a00:7f87:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:7fc0::,2a00:7fc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:7fe0::,2a00:7fe0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:8000::,2a00:8000:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:8020::,2a00:8020:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:8040::,2a00:8040:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:8060::,2a00:8060:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:8080::,2a00:8080:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:80a0::,2a00:80a0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:80c0::,2a00:80c0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:80e0::,2a00:80e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:8100::,2a00:8100:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a00:8120::,2a00:8120:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:8140::,2a00:8140:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:8160::,2a00:8160:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:8180::,2a00:8180:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:81a0::,2a00:81a0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:81c0::,2a00:81c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:81e0::,2a00:81e0:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a00:8200::,2a00:8200:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:8220::,2a00:8220:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:8240::,2a00:8247:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:8260::,2a00:8260:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:8280::,2a00:8280:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:82a0::,2a00:82a0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a00:82c0::,2a00:82c0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:82e0::,2a00:82e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:8300::,2a00:8300:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:8320::,2a00:8320:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a00:8340::,2a00:8340:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:8360::,2a00:8360:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:8380::,2a00:8380:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:83a0::,2a00:83a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:83c0::,2a00:83c0:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a00:83e0::,2a00:83e0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:8400::,2a00:8400:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:8420::,2a00:8420:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:8440::,2a00:8440:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:8460::,2a00:8460:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:8480::,2a00:8480:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a00:84a0::,2a00:84a0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:84c0::,2a00:84c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:84e0::,2a00:84e0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:8500::,2a00:8500:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:8520::,2a00:8520:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a00:8540::,2a00:8540:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:8560::,2a00:8560:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:8580::,2a00:8580:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:85a0::,2a00:85a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:85c0::,2a00:85c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:85e0::,2a00:85e0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:8600::,2a00:8600:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:8620::,2a00:8620:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a00:8640::,2a00:8647:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:8660::,2a00:8660:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:8680::,2a00:8680:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:86a0::,2a00:86a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:86c0::,2a00:86c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:86e0::,2a00:86e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:8700::,2a00:8700:ffff:ffff:ffff:ffff:ffff:ffff,ME 2a00:8720::,2a00:8720:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a00:8740::,2a00:8740:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:8760::,2a00:8760:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:8780::,2a00:8780:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:87a0::,2a00:87a0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:87c0::,2a00:87c0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a00:87e0::,2a00:87e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:8800::,2a00:8800:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:8820::,2a00:8820:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a00:8840::,2a00:8840:ffff:ffff:ffff:ffff:ffff:ffff,UZ 2a00:8860:8001::,2a00:8860:8001:7fff:ffff:ffff:ffff:ffff,US 2a00:8880::,2a00:8880:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:88a0::,2a00:88a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:88c0::,2a00:88c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:88e0::,2a00:88e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:8900::,2a00:8900:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:8920::,2a00:8920:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:8940::,2a00:8940:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:8960::,2a00:8960:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:8980::,2a00:8980:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:89a0::,2a00:89a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:89c0::,2a00:89c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:89e0::,2a00:89e0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:8a00::,2a00:8a00:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:8a20::,2a00:8a20:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:8a40::,2a00:8a40:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:8a60::,2a00:8a60:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:8a80::,2a00:8a87:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:8aa0::,2a00:8aa0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:8ac0::,2a00:8ac0:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a00:8ae0::,2a00:8ae0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:8b00::,2a00:8b00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:8b20::,2a00:8b20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:8b40::,2a00:8b40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:8b60::,2a00:8b60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:8b80::,2a00:8b80:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:8ba0::,2a00:8ba0:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a00:8bc0::,2a00:8bc0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:8be0::,2a00:8be7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:8c00::,2a00:8c00:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a00:8c20::,2a00:8c20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:8c40::,2a00:8c40:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:8c60::,2a00:8c60:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:8c80::,2a00:8c80:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:8ca0::,2a00:8ca0:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a00:8cc0::,2a00:8cc0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:8ce0::,2a00:8ce0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:8d00::,2a00:8d00:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:8d20::,2a00:8d20:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a00:8d40::,2a00:8d40:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a00:8d60::,2a00:8d60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:8d80::,2a00:8d80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:8da0::,2a00:8da0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:8dc0::,2a00:8dc0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:8de0::,2a00:8de0:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a00:8e00::,2a00:8e00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:8e20::,2a00:8e20:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:8e40::,2a00:8e40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:8e60::,2a00:8e60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:8e80::,2a00:8e80:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:8ea0::,2a00:8ea0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:8ec0::,2a00:8ec0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:8ee0::,2a00:8ee7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:8f00::,2a00:8f00:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:8f20::,2a00:8f20:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:8f40::,2a00:8f40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:8f60::,2a00:8f60:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:8f80::,2a00:8f80:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a00:8fa0::,2a00:8fa0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:8fc0::,2a00:8fc0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:8fe0::,2a00:8fe0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:9000::,2a00:9000:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a00:9020::,2a00:9020:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:9040::,2a00:9040:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9060::,2a00:9060:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a00:9080::,2a00:9080:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:90a0::,2a00:90a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:90c0::,2a00:90c7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:9100::,2a00:9100:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a00:9120::,2a00:9120:ffff:ffff:ffff:ffff:ffff:ffff,OM 2a00:9140::,2a00:9140:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a00:9160::,2a00:9160:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a00:9180::,2a00:9180:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:91a0::,2a00:91a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:91c0::,2a00:91c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9200::,2a00:9200:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:9220::,2a00:9220:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:9240::,2a00:9240:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a00:9260::,2a00:9260:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a00:9280::,2a00:9280:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a00:92a0::,2a00:92a7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:92c0::,2a00:92c0:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a00:92e0::,2a00:92e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9300::,2a00:9300:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:9320::,2a00:9320:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:9340::,2a00:9347:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:9360::,2a00:9360:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:9380::,2a00:9380:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:93a0::,2a00:93a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:93c0::,2a00:93c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:93e0::,2a00:93e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:9400::,2a00:9400:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9420::,2a00:9420:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:9440::,2a00:9440:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:9460::,2a00:9467:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9480::,2a00:9480:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:94a0::,2a00:94a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:94c0::,2a00:94c0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:94e0::,2a00:94e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9500::,2a00:9500:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a00:9520::,2a00:9520:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:9540::,2a00:9540:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:9560::,2a00:9560:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:9580::,2a00:9580:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:95a0::,2a00:95a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:95c0::,2a00:95c0:ffff:ffff:ffff:ffff:ffff:ffff,US 2a00:95e0::,2a00:95e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9600::,2a00:9600:83ff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9600:8400::,2a00:9600:8400:ffff:ffff:ffff:ffff:ffff,US 2a00:9600:8401::,2a00:9600:840f:ffff:ffff:ffff:ffff:ffff,GB 2a00:9600:8410::,2a00:9600:8410:ffff:ffff:ffff:ffff:ffff,US 2a00:9600:8411::,2a00:9600:860f:ffff:ffff:ffff:ffff:ffff,GB 2a00:9600:8610::,2a00:9600:8610:ffff:ffff:ffff:ffff:ffff,DE 2a00:9600:8611::,2a00:9600:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9620::,2a00:9620:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:9640::,2a00:9640:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a00:9660::,2a00:9660:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:9680::,2a00:9680:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:96a0::,2a00:96a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:96c0::,2a00:96c0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:96e0::,2a00:96e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:9700::,2a00:9700:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:9720::,2a00:9720:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:9740::,2a00:9740:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:9760::,2a00:9760:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:9780::,2a00:9780:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:97a0::,2a00:97a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:97c0::,2a00:97c0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:97e0::,2a00:97e0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:9800::,2a00:9801:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:9820::,2a00:9820:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:9840::,2a00:9840:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:9860::,2a00:9860:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a00:9880::,2a00:9880:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:98a0::,2a00:98a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:98c0::,2a00:98c0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:98e0::,2a00:98e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:9900::,2a00:9900:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a00:9920::,2a00:9920:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a00:9960::,2a00:9960:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a00:9980::,2a00:9980:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:99a0::,2a00:99a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:99c0::,2a00:99c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:99e0::,2a00:99e7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:9a00::,2a00:9a00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:9a20::,2a00:9a20:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:9a40::,2a00:9a40:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:9a60::,2a00:9a60:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:9a80::,2a00:9a80:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9aa0::,2a00:9aa0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9ac0::,2a00:9ac0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:9ae0::,2a00:9ae0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:9b00::,2a00:9b00:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:9b20::,2a00:9b20:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:9b40::,2a00:9b40:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a00:9b60::,2a00:9b60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:9b80::,2a00:9b80:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:9ba0::,2a00:9ba0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9bc0::,2a00:9bc0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:9be0::,2a00:9be0:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a00:9c00::,2a00:9c00:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:9c20::,2a00:9c20:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:9c40::,2a00:9c40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:9c60::,2a00:9c60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9c80::,2a00:9c80:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:9ca0::,2a00:9ca0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:9cc0::,2a00:9cc0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:9ce0::,2a00:9ce0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9d00::,2a00:9d00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9d20::,2a00:9d20:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:9d40::,2a00:9d40:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:9d60::,2a00:9d60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9d80::,2a00:9d87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:9da0::,2a00:9da0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9dc0::,2a00:9dc0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:9de0::,2a00:9de0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9e00::,2a00:9e07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:9e20::,2a00:9e20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:9e40::,2a00:9e40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:9e60::,2a00:9e60:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:9e80::,2a00:9e80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:9ea0::,2a00:9ea0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:9ec0::,2a00:9ec0:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a00:9ee0::,2a00:9ee0:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a00:9f00::,2a00:9f00:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:9f20::,2a00:9f20:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:9f40::,2a00:9f40:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a00:9f60::,2a00:9f60:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a00:9f80::,2a00:9f80:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:9fa0::,2a00:9fa0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:9fc0::,2a00:9fc0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:9fe0::,2a00:9fe7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:a000::,2a00:a000:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:a020::,2a00:a020:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:a040::,2a00:a040:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a00:a060::,2a00:a060:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:a080::,2a00:a080:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:a0a0::,2a00:a0a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:a0c0::,2a00:a0c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:a0e0::,2a00:a0e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:a100::,2a00:a100:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:a120::,2a00:a120:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:a140::,2a00:a140:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:a160::,2a00:a160:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:a180::,2a00:a180:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:a1a0::,2a00:a1a0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:a1c0::,2a00:a1c0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:a1e0::,2a00:a1e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:a200::,2a00:a200:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:a220::,2a00:a220:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:a240::,2a00:a240:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:a260::,2a00:a260:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a00:a280::,2a00:a280:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:a2a0::,2a00:a2a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:a2c0::,2a00:a2c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:a2e0::,2a00:a2e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:a300::,2a00:a300:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:a320::,2a00:a320:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:a340::,2a00:a340:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:a360::,2a00:a361:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a00:a380::,2a00:a380:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:a3a0::,2a00:a3a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:a3c0::,2a00:a3c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:a3e0::,2a00:a3e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:a400::,2a00:a400:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:a420::,2a00:a420:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:a440::,2a00:a440:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:a460::,2a00:a460:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:a480::,2a00:a480:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:a4a0::,2a00:a4a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:a4c0::,2a00:a4c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:a4e0::,2a00:a4e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:a500::,2a00:a500:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:a520::,2a00:a520:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:a540::,2a00:a540:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:a560::,2a00:a560:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:a580::,2a00:a580:10a4:ffff:ffff:ffff:ffff:ffff,FR 2a00:a580:10a5::,2a00:a580:10a5:7fff:ffff:ffff:ffff:ffff,DE 2a00:a580:10a5:8000::,2a00:a580:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:a5a0::,2a00:a5a0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:a5c0::,2a00:a5c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:a5e0::,2a00:a5e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:a600::,2a00:a607:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:a620::,2a00:a620:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:a640::,2a00:a640:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:a660::,2a00:a660:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:a680::,2a00:a680:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:a6a0::,2a00:a6a0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:a6c0::,2a00:a6c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:a6e0::,2a00:a6e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:a700::,2a00:a700:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:a720::,2a00:a720:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:a740::,2a00:a740:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:a760::,2a00:a760:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:a780::,2a00:a780:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:a7a0::,2a00:a7a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:a7c0::,2a00:a7c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:a7e0::,2a00:a7e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:a800::,2a00:a800:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:a820::,2a00:a820:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:a840::,2a00:a840:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:a860::,2a00:a860:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:a880::,2a00:a880:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a00:a8a0::,2a00:a8a0:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a00:a8c0::,2a00:a8c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:a8e0::,2a00:a8e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:a900::,2a00:a900:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:a920::,2a00:a920:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:a940::,2a00:a940:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:a960::,2a00:a960:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:a980::,2a00:a987:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:a9a0::,2a00:a9a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:a9c0::,2a00:a9c0:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a00:a9e0::,2a00:a9e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:aa00::,2a00:aa00:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:aa20::,2a00:aa20:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:aa40::,2a00:aa40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:aa60::,2a00:aa60:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:aa80::,2a00:aa80:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a00:aaa0::,2a00:aaa0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:aac0::,2a00:aac0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:aae0::,2a00:aae0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:ab00::,2a00:ab00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:ab20::,2a00:ab20:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:ab40::,2a00:ab40:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a00:ab60::,2a00:ab60:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:ab80::,2a00:ab80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:aba0::,2a00:aba0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:abc0::,2a00:abc0:ffff:ffff:ffff:ffff:ffff:ffff,LI 2a00:abe0::,2a00:abe0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:ac00::,2a00:ac00:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:ac20::,2a00:ac20:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:ac40::,2a00:ac40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:ac60::,2a00:ac60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:ac80::,2a00:ac80:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:aca0::,2a00:aca0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:acc0::,2a00:acc0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:ace0::,2a00:ace0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:ad00::,2a00:ad00:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a00:ad20::,2a00:ad20:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:ad40::,2a00:ad47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:ad60::,2a00:ad60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:ad80::,2a00:ad87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:adc0::,2a00:adc0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:ade0::,2a00:ade0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:ae00::,2a00:ae00:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:ae20::,2a00:ae20:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:ae40::,2a00:ae40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:ae60::,2a00:ae60:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:ae80::,2a00:ae80:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:aea0::,2a00:aea0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:aec0::,2a00:aec0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:aee0::,2a00:aee7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:af00::,2a00:af00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:af20::,2a00:af20:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:af40::,2a00:af40:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:af60::,2a00:af60:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a00:af80::,2a00:af80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:afa0::,2a00:afa0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:afc0::,2a00:afc0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:afe0::,2a00:afe0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:b000::,2a00:b000:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a00:b020::,2a00:b020:ffff:ffff:ffff:ffff:ffff:ffff,KG 2a00:b040::,2a00:b040:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:b060::,2a00:b060:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:b080::,2a00:b080:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:b0c0::,2a00:b0c0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:b0e0::,2a00:b0e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:b100::,2a00:b100:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:b120::,2a00:b120:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:b140::,2a00:b140:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:b160::,2a00:b160:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:b180::,2a00:b180:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:b1a0::,2a00:b1a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:b1c0::,2a00:b1c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:b1e0::,2a00:b1e0:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a00:b200::,2a00:b200:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:b220::,2a00:b220:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:b240::,2a00:b240:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:b260::,2a00:b260:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:b280::,2a00:b280:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:b2a0::,2a00:b2a0:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a00:b2c0::,2a00:b2c0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:b2e0::,2a00:b2e0:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a00:b300::,2a00:b300:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:b320::,2a00:b320:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:b340::,2a00:b340:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:b360::,2a00:b360:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:b380::,2a00:b380:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:b3a0::,2a00:b3a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:b3c0::,2a00:b3c0:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a00:b3e0::,2a00:b3e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:b400::,2a00:b407:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:b420::,2a00:b420:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:b440::,2a00:b440:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:b460::,2a00:b460:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:b480::,2a00:b480:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:b4a0::,2a00:b4a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:b4c0::,2a00:b4c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:b500::,2a00:b500:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:b520::,2a00:b520:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:b540::,2a00:b540:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:b560::,2a00:b560:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:b580::,2a00:b580:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:b5a0::,2a00:b5a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:b5c0::,2a00:b5c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:b5e0::,2a00:b5e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:b600::,2a00:b607:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:b640::,2a00:b640:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:b660::,2a00:b660:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:b680::,2a00:b680:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:b6a0::,2a00:b6a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:b6c0::,2a00:b6c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:b6e0::,2a00:b6e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:b700::,2a00:b700:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:b720::,2a00:b720:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a00:b740::,2a00:b740:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:b760::,2a00:b760:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:b780::,2a00:b780:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:b7a0::,2a00:b7a0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:b7c0::,2a00:b7c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:b7e0::,2a00:b7e0:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a00:b800::,2a00:b800:ffff:ffff:ffff:ffff:ffff:ffff,SY 2a00:b820::,2a00:b820:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:b840::,2a00:b840:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:b860::,2a00:b860:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a00:b880::,2a00:b880:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:b8a0::,2a00:b8a0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:b8c0::,2a00:b8c0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:b8e0::,2a00:b8e0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:b900::,2a00:b900:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:b920::,2a00:b920:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:b940::,2a00:b940:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:b960::,2a00:b960:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:b980::,2a00:b981:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:b9a0::,2a00:b9a0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:b9c0::,2a00:b9c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:b9e0::,2a00:b9e0:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a00:ba00::,2a00:ba00:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a00:ba20::,2a00:ba20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:ba40::,2a00:ba40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:ba60::,2a00:ba60:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:ba80::,2a00:ba80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:baa0::,2a00:baa0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:bac0::,2a00:bac0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:bae0::,2a00:bae0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:bb00::,2a00:bb00:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:bb20::,2a00:bb20:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:bb40::,2a00:bb40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:bb60::,2a00:bb60:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:bb80::,2a00:bb80:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:bba0::,2a00:bba0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:bbc0::,2a00:bbc0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:bbe0::,2a00:bbe0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:bc00::,2a00:bc00:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:bc20::,2a00:bc20:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a00:bc40::,2a00:bc40:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:bc60::,2a00:bc60:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:bc80::,2a00:bc80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:bca0::,2a00:bca0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:bcc0::,2a00:bcc0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:bce0::,2a00:bce0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:bd00::,2a00:bd00:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:bd20::,2a00:bd20:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:bd40::,2a00:bd40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:bd60::,2a00:bd60:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:bd80::,2a00:bd80:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:bda0::,2a00:bda0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:bdc0::,2a00:bdc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:bde0::,2a00:bde0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:be00::,2a00:be00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:be20::,2a00:be20:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:be40::,2a00:be47:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:be60::,2a00:be67:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:be80::,2a00:be80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:bea0::,2a00:bea0:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a00:bec0::,2a00:bec7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:bf00::,2a00:bf00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:bf20::,2a00:bf20:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:bf40::,2a00:bf40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:bf60::,2a00:bf60:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:bf80::,2a00:bf80:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:bfa0::,2a00:bfa0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:bfc0::,2a00:bfc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:bfe0::,2a00:bfe0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:c000::,2a00:c000:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:c020::,2a00:c020:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:c040::,2a00:c040:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:c060::,2a00:c060:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:c080::,2a00:c080:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:c0a0::,2a00:c0a0:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a00:c0c0::,2a00:c0c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:c0e0::,2a00:c0e0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:c100::,2a00:c100:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:c120::,2a00:c120:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:c140::,2a00:c140:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:c160::,2a00:c160:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a00:c180::,2a00:c180:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:c1a0::,2a00:c1a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:c1c0::,2a00:c1c0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:c1e0::,2a00:c1e7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:c200::,2a00:c200:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:c220::,2a00:c220:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:c240::,2a00:c240:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:c260::,2a00:c260:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:c280::,2a00:c280:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a00:c2a0::,2a00:c2a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:c2c0::,2a00:c2c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:c2e0::,2a00:c2e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:c300::,2a00:c300:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:c320::,2a00:c320:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:c340::,2a00:c340:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:c360::,2a00:c360:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:c380::,2a00:c380:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:c3a0::,2a00:c3a0:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a00:c3c0::,2a00:c3c0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:c3e0::,2a00:c3e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:c400::,2a00:c400:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:c420::,2a00:c420:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:c440::,2a00:c447:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:c460::,2a00:c460:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:c480::,2a00:c480:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:c4a0::,2a00:c4a0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:c4c0::,2a00:c4c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:c4e0::,2a00:c4e0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:c500::,2a00:c500:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:c520::,2a00:c520:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:c540::,2a00:c540:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:c560::,2a00:c567:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a00:c580::,2a00:c580:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:c5a0::,2a00:c5a0:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a00:c5c0::,2a00:c5c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:c5e0::,2a00:c5e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:c600::,2a00:c600:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:c620::,2a00:c620:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:c640::,2a00:c640:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:c660::,2a00:c660:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:c680::,2a00:c680:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:c6a0::,2a00:c6a0:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a00:c6c0::,2a00:c6c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:c6e0::,2a00:c6e0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:c700::,2a00:c700:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a00:c720::,2a00:c720:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:c740::,2a00:c740:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:c760::,2a00:c760:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:c780::,2a00:c780:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:c7a0::,2a00:c7a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:c7c0::,2a00:c7c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:c7e0::,2a00:c7e0:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a00:c800::,2a00:c800:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:c820::,2a00:c820:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a00:c840::,2a00:c840:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:c860::,2a00:c860:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a00:c880::,2a00:c880:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:c8a0::,2a00:c8a7:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a00:c8c0::,2a00:c8c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:c8e0::,2a00:c8e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:c900::,2a00:c907:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:c920::,2a00:c920:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:c940::,2a00:c940:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:c960::,2a00:c960:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a00:c980::,2a00:c987:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:c9a0::,2a00:c9a0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:c9c0::,2a00:c9c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:c9e0::,2a00:c9e0:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a00:ca00::,2a00:ca07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:ca20::,2a00:ca20:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:ca40::,2a00:ca40:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:ca60::,2a00:ca67:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a00:ca80::,2a00:ca80:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:caa0::,2a00:caa0:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a00:cac0::,2a00:cac0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:cae0::,2a00:cae0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:cb00::,2a00:cb00:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a00:cb20::,2a00:cb20:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:cb40::,2a00:cb40:1:ffff:ffff:ffff:ffff:ffff,NL 2a00:cb40:2::,2a00:cb40:2:ffff:ffff:ffff:ffff:ffff,CZ 2a00:cb40:3::,2a00:cb40:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:cb60::,2a00:cb60:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:cb80::,2a00:cb80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:cba0::,2a00:cba0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:cbc0::,2a00:cbc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:cbe0::,2a00:cbe0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:cc00::,2a00:cc00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:cc20::,2a00:cc20:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:cc40::,2a00:cc40:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a00:cc60::,2a00:cc60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:cc80::,2a00:cc80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:cca0::,2a00:cca0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:ccc0::,2a00:ccc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:cce0::,2a00:cce0:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a00:cd00::,2a00:cd00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:cd20::,2a00:cd20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:cd40::,2a00:cd40:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:cd60::,2a00:cd60:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:cd80::,2a00:cd80:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:cda0::,2a00:cda0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:cdc0::,2a00:cdc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:cde0::,2a00:cde0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:ce00::,2a00:ce00:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:ce20::,2a00:ce27:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:ce40::,2a00:ce40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:ce60::,2a00:ce60:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:ce80::,2a00:ce80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:cea0::,2a00:cea0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:cec0::,2a00:cec0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:cee0::,2a00:cee7:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a00:cf00::,2a00:cf00:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a00:cf20::,2a00:cf20:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a00:cf40::,2a00:cf40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:cf60::,2a00:cf60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:cf80::,2a00:cf80:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:cfa0::,2a00:cfa0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:cfc0::,2a00:cfc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:cfe0::,2a00:cfe0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:d000::,2a00:d000:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:d020::,2a00:d020:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:d040::,2a00:d040:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:d060::,2a00:d060:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:d080::,2a00:d080:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:d0a0::,2a00:d0a0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:d0c0::,2a00:d0c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:d0e0::,2a00:d0e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:d100::,2a00:d100:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:d120::,2a00:d120:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:d140::,2a00:d140:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a00:d160::,2a00:d160:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:d180::,2a00:d180:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a00:d1a0::,2a00:d1a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:d1c0::,2a00:d1c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:d1e0::,2a00:d1e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:d200::,2a00:d200:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:d220::,2a00:d220:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:d240::,2a00:d240:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:d260::,2a00:d267:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:d280::,2a00:d280:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:d2a0::,2a00:d2a7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:d2c0::,2a00:d2c0:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a00:d2e0::,2a00:d2e7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:d300::,2a00:d300:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:d320::,2a00:d327:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:d340::,2a00:d340:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:d360::,2a00:d367:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:d380::,2a00:d380:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:d3a0::,2a00:d3a7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:d3c0::,2a00:d3c0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:d3e0::,2a00:d3e7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:d400::,2a00:d400:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:d420::,2a00:d427:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:d440::,2a00:d447:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a00:d480::,2a00:d480:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:d4a0::,2a00:d4a7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:d4c0::,2a00:d4c0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:d4e0::,2a00:d4e7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:d500::,2a00:d500:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a00:d520::,2a00:d527:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:d540::,2a00:d540:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:d560::,2a00:d567:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:d580::,2a00:d580:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:d5a0::,2a00:d5a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:d5c0::,2a00:d5c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:d5e0::,2a00:d5e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:d600::,2a00:d600:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:d620::,2a00:d620:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a00:d640::,2a00:d640:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:d660::,2a00:d660:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:d680::,2a00:d680:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:d6a0::,2a00:d6a0:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:d6c0::,2a00:d6c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:d6e0::,2a00:d6e0:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a00:d700::,2a00:d700:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:d720::,2a00:d727:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:d740::,2a00:d747:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:d780::,2a00:d780:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:d7a0::,2a00:d7a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:d7c0::,2a00:d7c0:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a00:d7e0::,2a00:d7e0:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:d800::,2a00:d800:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a00:d820::,2a00:d820:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:d840::,2a00:d840:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a00:d860::,2a00:d860:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:d880::,2a00:d880:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:d8a0::,2a00:d8a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:d8c0::,2a00:d8c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:d8e0::,2a00:d8e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:d900::,2a00:d900:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:d920::,2a00:d920:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:d940::,2a00:d940:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:d960::,2a00:d967:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:d980::,2a00:d980:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:d9a0::,2a00:d9a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:d9c0::,2a00:d9c0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:d9e0::,2a00:d9e0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:da00::,2a00:da00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:da20::,2a00:da20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:da40::,2a00:da40:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:da60::,2a00:da60:ffff:ffff:ffff:ffff:ffff:ffff,LI 2a00:da80::,2a00:da80:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:daa0::,2a00:daa0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:dac0::,2a00:dac0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:dae0::,2a00:dae0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:db00::,2a00:db00:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:db20::,2a00:db20:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:db40::,2a00:db40:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:db60::,2a00:db60:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:db80::,2a00:db80:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:dba0::,2a00:dba0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:dbc0::,2a00:dbc0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:dbe0::,2a00:dbe0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:dc00::,2a00:dc00:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:dc20::,2a00:dc20:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a00:dc40::,2a00:dc40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:dc60::,2a00:dc60:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:dc80::,2a00:dc80:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:dca0::,2a00:dca7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:dcc0::,2a00:dcc7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:dd00::,2a00:dd00:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a00:dd20::,2a00:dd20:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:dd40::,2a00:dd40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:dd60::,2a00:dd60:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:dda0::,2a00:dda0:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a00:ddc0::,2a00:ddc0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:dde0::,2a00:dde0:ffff:ffff:ffff:ffff:ffff:ffff,BH 2a00:de00::,2a00:de00:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:de20::,2a00:de20:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:de40::,2a00:de40:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:de60::,2a00:de60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:de80::,2a00:de80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:dea0::,2a00:dea0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:dec0::,2a00:dec0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:dee0::,2a00:dee0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:df00::,2a00:df00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:df20::,2a00:df20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:df40::,2a00:df40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:df60::,2a00:df60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:df80::,2a00:df80:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:dfa0::,2a00:dfa0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:dfc0::,2a00:dfc0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:dfe0::,2a00:dfe7:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:e000::,2a00:e000:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:e020::,2a00:e020:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:e040::,2a00:e040:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:e060::,2a00:e060:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:e080::,2a00:e080:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:e0a0::,2a00:e0a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2a00:e0c0::,2a00:e0c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:e100::,2a00:e100:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:e120::,2a00:e120:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:e140::,2a00:e140:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:e160::,2a00:e160:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:e180::,2a00:e180:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:e1a0::,2a00:e1a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:e1c0::,2a00:e1c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:e1e0::,2a00:e1e0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:e200::,2a00:e200:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a00:e220::,2a00:e220:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:e240::,2a00:e240:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:e260::,2a00:e260:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:e280::,2a00:e280:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:e2a0::,2a00:e2a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:e2c0::,2a00:e2c0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:e2e0::,2a00:e2e0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:e300::,2a00:e300:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:e320::,2a00:e320:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:e340::,2a00:e347:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:e360::,2a00:e360:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:e380::,2a00:e380:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a00:e3a0::,2a00:e3a0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:e3c0::,2a00:e3c0:ffff:ffff:ffff:ffff:ffff:ffff,US 2a00:e3e0::,2a00:e3e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:e400::,2a00:e407:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:e440::,2a00:e440:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:e460::,2a00:e460:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:e480::,2a00:e480:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:e4a0::,2a00:e4a0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:e4c0::,2a00:e4c0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:e4e0::,2a00:e4e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:e500::,2a00:e500:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:e520::,2a00:e520:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:e540::,2a00:e540:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:e560::,2a00:e560:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:e580::,2a00:e580:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:e5a0::,2a00:e5a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:e5c0::,2a00:e5c0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:e5e0::,2a00:e5e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:e600::,2a00:e600:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:e620::,2a00:e620:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:e640::,2a00:e647:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:e660::,2a00:e660:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:e680::,2a00:e680:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:e6a0::,2a00:e6a0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a00:e6c0::,2a00:e6c0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:e6e0::,2a00:e6e0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:e700::,2a00:e700:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:e720::,2a00:e720:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:e740::,2a00:e740:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:e760::,2a00:e760:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:e780::,2a00:e780:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:e7a0::,2a00:e7a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:e7c0::,2a00:e7c0::7fff:ffff:ffff:ffff:ffff,LT 2a00:e7c0:0:8000::,2a00:e7c0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:e7e0::,2a00:e7e0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:e800::,2a00:e807:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:e840::,2a00:e840:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:e860::,2a00:e860:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a00:e880::,2a00:e880:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:e8c0::,2a00:e8c0:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a00:e8e0::,2a00:e8e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:e900::,2a00:e907:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:e920::,2a00:e920:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:e940::,2a00:e940:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:e960::,2a00:e960:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:e980::,2a00:e980:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:e9a0::,2a00:e9a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:e9c0::,2a00:e9c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:e9e0::,2a00:e9e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:ea00::,2a00:ea00:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:ea20::,2a00:ea20:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:ea40::,2a00:ea40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:ea60::,2a00:ea60:ff:ffff:ffff:ffff:ffff:ffff,LT 2a00:ea60:100::,2a00:ea60:1ff:ffff:ffff:ffff:ffff:ffff,GB 2a00:ea60:200::,2a00:ea60:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a00:ea80::,2a00:ea80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:eaa0::,2a00:eaa0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:eac0::,2a00:eac0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:eae0::,2a00:eae0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:eb00::,2a00:eb00:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:eb20::,2a00:eb20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:eb40::,2a00:eb40:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:eb60::,2a00:eb60:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:eb80::,2a00:eb80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:ebc0::,2a00:ebc0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:ebe0::,2a00:ebe0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:ec00::,2a00:ec00:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:ec20::,2a00:ec23:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:ec40::,2a00:ec47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:ec80::,2a00:ec80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:eca0::,2a00:eca0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:ecc0::,2a00:ecc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:ece0::,2a00:ece7:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a00:ed00::,2a00:ed00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:ed20::,2a00:ed20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:ed40::,2a00:ed40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:ed60::,2a00:ed60:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a00:ed80::,2a00:ed80:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:eda0::,2a00:eda0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:edc0::,2a00:edc0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:ede0::,2a00:ede0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:ee00::,2a00:ee00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:ee20::,2a00:ee20:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:ee40::,2a00:ee40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:ee60::,2a00:ee60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:ee80::,2a00:ee80:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a00:eea0::,2a00:eea0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:eec0::,2a00:eec0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:eee0::,2a00:eee0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:ef20::,2a00:ef20:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:ef40::,2a00:ef40:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:ef60::,2a00:ef67:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:ef80::,2a00:ef80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:efa0::,2a00:efa0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:efc0::,2a00:efc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:efe0::,2a00:efe0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:f000::,2a00:f000:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a00:f020::,2a00:f020:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:f040::,2a00:f040:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:f060::,2a00:f060:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:f080::,2a00:f080:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:f0a0::,2a00:f0a7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:f0c0::,2a00:f0c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:f0e0::,2a00:f0e0:ffff:ffff:ffff:ffff:ffff:ffff,QA 2a00:f100::,2a00:f100:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:f120::,2a00:f120:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:f140::,2a00:f140:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:f160::,2a00:f160:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:f180::,2a00:f180:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:f1a0::,2a00:f1a0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:f1c0::,2a00:f1c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:f200::,2a00:f200:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:f220::,2a00:f220:ffff:ffff:ffff:ffff:ffff:ffff,ME 2a00:f240::,2a00:f240:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:f260::,2a00:f260:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a00:f280::,2a00:f280:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:f2a0::,2a00:f2a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:f2c0::,2a00:f2c0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:f2e0::,2a00:f2e0:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a00:f300::,2a00:f300:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:f320::,2a00:f320:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:f340::,2a00:f340:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:f360::,2a00:f360:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:f380::,2a00:f380:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:f3a0::,2a00:f3a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:f3c0::,2a00:f3c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:f3e0::,2a00:f3e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:f400::,2a00:f400:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:f420::,2a00:f420:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:f440::,2a00:f440:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:f460::,2a00:f460:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:f480::,2a00:f480:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:f4a0::,2a00:f4a0:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a00:f4c0::,2a00:f4c0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:f4e0::,2a00:f4e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:f500::,2a00:f507:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a00:f520::,2a00:f520:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:f540::,2a00:f540:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:f560::,2a00:f560:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:f580::,2a00:f580:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a00:f5a0::,2a00:f5a0:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a00:f5c0::,2a00:f5c0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:f5e0::,2a00:f5e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:f600::,2a00:f600:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:f620::,2a00:f620:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a00:f640::,2a00:f640:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:f660::,2a00:f660:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:f680::,2a00:f680:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:f6a0::,2a00:f6a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:f6c0::,2a00:f6c0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:f6e0::,2a00:f6e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:f700::,2a00:f707:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:f720::,2a00:f720:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a00:f740::,2a00:f740:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:f760::,2a00:f760:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:f780::,2a00:f780:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:f7a0::,2a00:f7a0:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a00:f7c0::,2a00:f7c7:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a00:f800::,2a00:f800:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:f820::,2a00:f827:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:f840::,2a00:f840:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:f860::,2a00:f860:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:f880::,2a00:f880:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:f8a0::,2a00:f8a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:f8c0::,2a00:f8c0:ffff:ffff:ffff:ffff:ffff:ffff,LI 2a00:f8e0::,2a00:f8e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:f900::,2a00:f900:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a00:f920::,2a00:f920:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:f940::,2a00:f940:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:f960::,2a00:f960:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a00:f980::,2a00:f987:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a00:f9a0::,2a00:f9a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:f9c0::,2a00:f9c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:f9e0::,2a00:f9e0:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a00:fa00::,2a00:fa00:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a00:fa20::,2a00:fa20:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:fa40::,2a00:fa40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:fa60::,2a00:fa60:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:fa80::,2a00:fa80:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:faa0::,2a00:faa0:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a00:fac0::,2a00:fac0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:fae0::,2a00:fae0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:fb00::,2a00:fb00:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:fb20::,2a00:fb20:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:fb40::,2a00:fb40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a00:fb60::,2a00:fb60:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a00:fb80::,2a00:fb80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:fba0::,2a00:fba0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:fbc0::,2a00:fbc0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:fbe0::,2a00:fbe0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:fc00::,2a00:fc00:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:fc20::,2a00:fc20:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:fc40::,2a00:fc40:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a00:fc60::,2a00:fc60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:fc80::,2a00:fc80:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:fca0::,2a00:fca0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a00:fcc0::,2a00:fcc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:fce0::,2a00:fce0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:fd00::,2a00:fd00:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a00:fd20::,2a00:fd20:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a00:fd40::,2a00:fd40:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:fd60::,2a00:fd60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:fd80::,2a00:fd80:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:fda0::,2a00:fda0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:fdc0::,2a00:fdc0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:fde0::,2a00:fde0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:fe00::,2a00:fe00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:fe20::,2a00:fe20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a00:fe40::,2a00:fe40:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a00:fe60::,2a00:fe60:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a00:fe80::,2a00:fe80:ffff:ffff:ffff:ffff:ffff:ffff,ME 2a00:fea0::,2a00:fea7:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a00:fec0::,2a00:fec0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a00:fee0::,2a00:fee0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:ff00::,2a00:ff00:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a00:ff20::,2a00:ff20:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a00:ff40::,2a00:ff40:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a00:ff60::,2a00:ff60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a00:ff80::,2a00:ff80:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a00:ffa0::,2a00:ffa0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a00:ffc0::,2a00:ffc0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a00:ffe0::,2a00:ffe0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01::,2a01::ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:8::,2a01:8:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a01:10::,2a01:10:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a01:18::,2a01:18:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a01:20::,2a01:20:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:28::,2a01:28:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:30::,2a01:30:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:38::,2a01:38:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:40::,2a01:40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:48::,2a01:48:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:50::,2a01:50:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:58::,2a01:58:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:68::,2a01:68:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:70::,2a01:70:fffe:ffff:ffff:ffff:ffff:ffff,GB 2a01:70:ffff::,2a01:70:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:78::,2a01:7f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:80::,2a01:80:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a01:88::,2a01:88:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:90::,2a01:90:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:98::,2a01:98:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:a0::,2a01:a0:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a01:a8::,2a01:a8:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:b0::,2a01:b1:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:b8::,2a01:b8:ffff:ffff:ffff:ffff:ffff:ffff,VA 2a01:c0::,2a01:c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:c8::,2a01:c8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:d0::,2a01:d0:896c:7fff:ffff:ffff:ffff:ffff,UA 2a01:d0:896c:8000::,2a01:d0:896c:ffff:ffff:ffff:ffff:ffff,RU 2a01:d0:896d::,2a01:d0:8de4:ffff:ffff:ffff:ffff:ffff,UA 2a01:d0:8de5::,2a01:d0:8de5:7fff:ffff:ffff:ffff:ffff,RU 2a01:d0:8de5:8000::,2a01:d0:9008:ffff:ffff:ffff:ffff:ffff,UA 2a01:d0:9009::,2a01:d0:9009:7fff:ffff:ffff:ffff:ffff,RU 2a01:d0:9009:8000::,2a01:d0:92ea:ffff:ffff:ffff:ffff:ffff,UA 2a01:d0:92eb::,2a01:d0:92eb:7fff:ffff:ffff:ffff:ffff,RU 2a01:d0:92eb:8000::,2a01:d0:93ff:ffff:ffff:ffff:ffff:ffff,UA 2a01:d0:9400::,2a01:d0:9400:7fff:ffff:ffff:ffff:ffff,RU 2a01:d0:9400:8000::,2a01:d0:95d7:ffff:ffff:ffff:ffff:ffff,UA 2a01:d0:95d8::,2a01:d0:95d8:7fff:ffff:ffff:ffff:ffff,RU 2a01:d0:95d8:8000::,2a01:d0:b2f5:ffff:ffff:ffff:ffff:ffff,UA 2a01:d0:b2f6::,2a01:d0:b2f6:7fff:ffff:ffff:ffff:ffff,RU 2a01:d0:b2f6:8000::,2a01:d0:bf61:ffff:ffff:ffff:ffff:ffff,UA 2a01:d0:bf62::,2a01:d0:bf62:7fff:ffff:ffff:ffff:ffff,RU 2a01:d0:bf62:8000::,2a01:d0:bfcf:ffff:ffff:ffff:ffff:ffff,UA 2a01:d0:bfd0::,2a01:d0:bfd0:7fff:ffff:ffff:ffff:ffff,RU 2a01:d0:bfd0:8000::,2a01:d0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:d8::,2a01:d8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:e0::,2a01:e0:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a01:e8::,2a01:e8:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:f0::,2a01:f0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:f8::,2a01:f8:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a01:100::,2a01:100:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a01:108::,2a01:108:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a01:110::,2a01:111:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:120::,2a01:120:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:130::,2a01:138:a01c:ffff:ffff:ffff:ffff:ffff,DE 2a01:138:a01d::,2a01:138:a01d:ffff:ffff:ffff:ffff:ffff,CH 2a01:138:a01e::,2a01:13f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:140::,2a01:147:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:148::,2a01:148:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:150::,2a01:150:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:158::,2a01:158:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a01:160::,2a01:160:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:168::,2a01:168:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:170::,2a01:170:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:178::,2a01:178:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:180::,2a01:187:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a01:188::,2a01:188:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:190::,2a01:197:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a01:198::,2a01:198:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:1a0::,2a01:1a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:1a8::,2a01:1a8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:1b0::,2a01:1b0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:1b8::,2a01:1b8:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a01:1c0::,2a01:1c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:1c8::,2a01:1cf:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:1d0::,2a01:1d0:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a01:1d8::,2a01:1df:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:1e0::,2a01:1e0:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:1e8::,2a01:1e8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:1f0::,2a01:1f0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:1f8::,2a01:1f8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:200::,2a01:200:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:208::,2a01:208:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:210::,2a01:210:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:220::,2a01:220:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:228::,2a01:228:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:230::,2a01:230:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:238::,2a01:238:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:240::,2a01:240:feda:ffff:ffff:ffff:ffff:ffff,FR 2a01:240:fedb::,2a01:240:fedb:7fff:ffff:ffff:ffff:ffff,PT 2a01:240:fedb:8000::,2a01:240:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:248::,2a01:248:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:250::,2a01:250:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:258::,2a01:258:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:260::,2a01:260:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a01:268::,2a01:268:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:270::,2a01:270:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:278::,2a01:27f:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:280::,2a01:287:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:288::,2a01:288:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a01:290::,2a01:290:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:298::,2a01:29f:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:2a0::,2a01:2a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:2a8::,2a01:2af:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:2b0::,2a01:2b0:2000:112:ffff:ffff:ffff:ffff,SE 2a01:2b0:2000:113::,2a01:2b0:2000:113:ffff:ffff:ffff:ffff,FI 2a01:2b0:2000:114::,2a01:2b7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:2b8::,2a01:2b8:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a01:2c0::,2a01:2c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:2c8::,2a01:2c8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:2d0::,2a01:2d0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:2d8::,2a01:2df:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:2e0::,2a01:2ef:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:300:22::,2a01:300:22:7fff:ffff:ffff:ffff:ffff,GB 2a01:308::,2a01:308:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:310::,2a01:310:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:320::,2a01:320:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a01:328::,2a01:328:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a01:330::,2a01:330:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:338::,2a01:338:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:348::,2a01:348:338:ffff:ffff:ffff:ffff:ffff,GB 2a01:348:339::,2a01:348:339:7fff:ffff:ffff:ffff:ffff,NL 2a01:348:339:8000::,2a01:348:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:350::,2a01:350:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:358::,2a01:35f:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:360::,2a01:367:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:368::,2a01:36f:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:378::,2a01:378:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:380::,2a01:380:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:388::,2a01:388:24e:ffff:ffff:ffff:ffff:ffff,GB 2a01:388:24f::,2a01:388:24f:7fff:ffff:ffff:ffff:ffff,NL 2a01:388:24f:8000::,2a01:388:250:ffff:ffff:ffff:ffff:ffff,GB 2a01:388:251::,2a01:388:251:7fff:ffff:ffff:ffff:ffff,NL 2a01:388:251:8000::,2a01:38f:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:390::,2a01:390:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a01:398::,2a01:398:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:3a0::,2a01:3a7:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:3a8::,2a01:3a8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:3b0:1::,2a01:3b0:1:7fff:ffff:ffff:ffff:ffff,DE 2a01:3b0:c08::,2a01:3b0:c08:7fff:ffff:ffff:ffff:ffff,DE 2a01:3b8::,2a01:3b8:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:3c8::,2a01:3c8:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a01:3d8::,2a01:3d8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:3e0:402::,2a01:3e0:403:ffff:ffff:ffff:ffff:ffff,FR 2a01:3e0:d01::,2a01:3e0:d02:ffff:ffff:ffff:ffff:ffff,GB 2a01:3e0:1101::,2a01:3e0:1101:ffff:ffff:ffff:ffff:ffff,NL 2a01:3e0:1200::,2a01:3e0:1200:1ff:ffff:ffff:ffff:ffff,FR 2a01:3e0:1300::,2a01:3e0:1300:ff:ffff:ffff:ffff:ffff,GB 2a01:3e0:1400::,2a01:3e0:1400:ff:ffff:ffff:ffff:ffff,NL 2a01:3e0:1500::,2a01:3e0:1500:ff:ffff:ffff:ffff:ffff,GB 2a01:3e0:1600::,2a01:3e0:1600:ffff:ffff:ffff:ffff:ffff,GB 2a01:3e0:1601::,2a01:3e0:1601:ffff:ffff:ffff:ffff:ffff,FI 2a01:3e0:1700::,2a01:3e0:1701:ff:ffff:ffff:ffff:ffff,GB 2a01:3e0:1b00::,2a01:3e0:1b00:ffff:ffff:ffff:ffff:ffff,FI 2a01:3e0:ff24::,2a01:3e0:ff24:ffff:ffff:ffff:ffff:ffff,DE 2a01:3e8::,2a01:3e8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:3f0::,2a01:3f0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:3f8::,2a01:3f8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:400::,2a01:400:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:408::,2a01:408:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:410::,2a01:410:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:418::,2a01:418:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:420::,2a01:420:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:428::,2a01:428:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:430::,2a01:430:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:438::,2a01:438:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:440::,2a01:447:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:448::,2a01:448:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:450::,2a01:450:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:458::,2a01:458:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a01:460::,2a01:460:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:468::,2a01:46f:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a01:470::,2a01:477:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:478::,2a01:47f:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a01:480::,2a01:480:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:488::,2a01:488:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:490::,2a01:490:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:498::,2a01:498:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:4a0::,2a01:4af:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:4b0::,2a01:4b0:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:4c0::,2a01:4c0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:4c8::,2a01:4cf:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:4d0::,2a01:4d0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:4d8::,2a01:4d8:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:4e0::,2a01:4e7:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a01:4e8::,2a01:4e8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:4f0::,2a01:4f0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:4f8::,2a01:4f8:201:7fff:ffff:ffff:ffff:ffff,DE 2a01:4f8:201:8000::,2a01:4f8:201:ffff:ffff:ffff:ffff:ffff,RU 2a01:4f8:202::,2a01:4ff:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:500::,2a01:500:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:508::,2a01:508:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:510::,2a01:510:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:518::,2a01:518:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:520::,2a01:520:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:528::,2a01:528:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a01:530::,2a01:530:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:538::,2a01:538:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:540::,2a01:540:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:548::,2a01:548:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:550::,2a01:550:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:558::,2a01:558:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:560::,2a01:567:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:568::,2a01:570:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:578::,2a01:578:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:580::,2a01:580:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:590::,2a01:590:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:598::,2a01:59f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:5a0::,2a01:5a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:5a8::,2a01:5a8:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a01:5b0::,2a01:5b0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:5b8::,2a01:5bf:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a01:5c0::,2a01:5c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:5c8::,2a01:5c8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:5d0::,2a01:5d0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:5d8::,2a01:5df:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:5e0::,2a01:5e0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:5f0::,2a01:5f0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:5f8::,2a01:5f8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:600::,2a01:600:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:608::,2a01:608:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a01:610::,2a01:610:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:618::,2a01:618:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:620::,2a01:620:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:628::,2a01:628:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:630::,2a01:630:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:640::,2a01:647:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a01:648::,2a01:648:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:650::,2a01:650:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:658::,2a01:658:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:660::,2a01:667:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:668::,2a01:668:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:670::,2a01:670:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:678::,2a01:67f:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:680::,2a01:680:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:688::,2a01:688:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:690::,2a01:697:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:698::,2a01:698:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:6a0::,2a01:6a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:6a8::,2a01:6a8:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:6b0::,2a01:6b0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:6c0::,2a01:6c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:6c8::,2a01:6c8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:6d0::,2a01:6d0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:6d8::,2a01:6d8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:6e0::,2a01:6e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:6e8::,2a01:6e8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:6f0::,2a01:6f0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:6f8::,2a01:6f8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:700::,2a01:700:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:710::,2a01:710:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:718::,2a01:718:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:720::,2a01:720:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:728::,2a01:72f:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:730::,2a01:730:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:738::,2a01:738:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:740::,2a01:740:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:748::,2a01:748:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:750::,2a01:750:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:758::,2a01:758:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:760::,2a01:760:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:768::,2a01:768:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:770::,2a01:770:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:778::,2a01:778:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a01:780::,2a01:780:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:788::,2a01:788:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:790::,2a01:790:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:798::,2a01:79f:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:7a0::,2a01:7a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7a8::,2a01:7a8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:7b0::,2a01:7b0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:7b8::,2a01:7b8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:7c0::,2a01:7c0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:7c8::,2a01:7c8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:7d0::,2a01:7d0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:7d8::,2a01:7d8:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a01:7e0::,2a01:7e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7e8::,2a01:7e8:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:7f0::,2a01:7f0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7f8::,2a01:7f8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:800::,2a01:838:fffe:ffff:ffff:ffff:ffff:ffff,DE 2a01:838:ffff::,2a01:838:ffff:7fff:ffff:ffff:ffff:ffff,MT 2a01:838:ffff:8000::,2a01:8ff:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:c00::,2a01:c3f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:e00::,2a01:e3f:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:1000::,2a01:17ff:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:2000::,2a01:2fff:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:4000::,2a01:4000:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a01:4020::,2a01:4020:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:4040::,2a01:4040:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:4060::,2a01:4060:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:4080::,2a01:4080:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:40a0::,2a01:40a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:40c0::,2a01:40c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:40e0::,2a01:40e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:4100::,2a01:4100:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:4120::,2a01:4120:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a01:4140::,2a01:4140:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:4160::,2a01:4160:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a01:4180::,2a01:4180:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:41a0::,2a01:41a0:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a01:41c0::,2a01:41c0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:41e0::,2a01:41e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:4200::,2a01:4207:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:4240::,2a01:4240:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:4260::,2a01:4260:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:4280::,2a01:4280:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a01:42a0::,2a01:42a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:42c0::,2a01:42c0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:42e0::,2a01:42e0:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a01:4300::,2a01:4300:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:4320::,2a01:4320:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:4340::,2a01:4340:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:4360::,2a01:4360:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:4380::,2a01:4380:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:43a0::,2a01:43a0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:43c0::,2a01:43c0:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a01:4400::,2a01:4400:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:4420::,2a01:4420:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:4440::,2a01:4440:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:4460::,2a01:4460:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:4480::,2a01:4480:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:44a0::,2a01:44a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:44c0::,2a01:44c0:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a01:44e0::,2a01:44e0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:4500::,2a01:4500:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a01:4520::,2a01:4520:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:4540::,2a01:4547:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:4580::,2a01:4587:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:45c0::,2a01:45c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:45e0::,2a01:45e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:4600::,2a01:4600:ffff:ffff:ffff:ffff:ffff:ffff,BH 2a01:4620::,2a01:4620:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:4640::,2a01:4640:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:4660::,2a01:4660:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:4680::,2a01:4680:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a01:46a0::,2a01:46a0:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a01:46c0::,2a01:46c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:46e0::,2a01:46e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:4700::,2a01:4700:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a01:4720::,2a01:4720:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:4740::,2a01:4740:ffff:ffff:ffff:ffff:ffff:ffff,US 2a01:4760::,2a01:4760:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:4780::,2a01:4780:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a01:47a0::,2a01:47a0:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a01:47c0::,2a01:47c0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:47e0::,2a01:47e0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:4800::,2a01:4800:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:4820::,2a01:4820:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:4840::,2a01:4840:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:4860::,2a01:4860:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a01:4880::,2a01:4880:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:48a0::,2a01:48a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:48c0::,2a01:48c0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:48e0::,2a01:48e0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:4900::,2a01:4900:ffff:ffff:ffff:ffff:ffff:ffff,BH 2a01:4920::,2a01:4920:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:4940::,2a01:4940:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:4960::,2a01:4960:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:4980::,2a01:4980:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:49a0::,2a01:49a0:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a01:49c0::,2a01:49c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:49e0::,2a01:49e0:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a01:4a00::,2a01:4a00:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a01:4a20::,2a01:4a20:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:4a40::,2a01:4a40:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a01:4a60::,2a01:4a60:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:4a80::,2a01:4a80:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:4aa0::,2a01:4aa0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:4ac0::,2a01:4ac0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a01:4ae0::,2a01:4ae0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:4b00::,2a01:4b00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:4b20::,2a01:4b20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:4b40::,2a01:4b40:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a01:4b60::,2a01:4b60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:4b80::,2a01:4b80:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:4ba0::,2a01:4ba0:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a01:4bc0::,2a01:4bc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:4be0::,2a01:4be0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:4c00::,2a01:4c00:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:4c20::,2a01:4c20:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:4c40::,2a01:4c40:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:4c60::,2a01:4c60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:4c80::,2a01:4c80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:4ca0::,2a01:4ca0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:4cc0::,2a01:4cc0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:4ce0::,2a01:4ce0:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a01:4d00::,2a01:4d00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:4d20::,2a01:4d20:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:4d40::,2a01:4d40:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a01:4d60::,2a01:4d60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:4d80::,2a01:4d80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:4da0::,2a01:4da0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:4dc0::,2a01:4dc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:4de0::,2a01:4de0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:4e00::,2a01:4e00:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:4e20::,2a01:4e20:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:4e40::,2a01:4e40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:4e60::,2a01:4e60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:4e80::,2a01:4e80:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:4ea0::,2a01:4ea0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:4ec0::,2a01:4ec0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:4ee0::,2a01:4ee0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:4f00::,2a01:4f00:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a01:4f20::,2a01:4f20:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:4f40::,2a01:4f40:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:4f60::,2a01:4f60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:4f80::,2a01:4f80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:4fa0::,2a01:4fa0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:4fc0::,2a01:4fc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:4fe0::,2a01:4fe0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:5000::,2a01:5000:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:5020::,2a01:5020:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:5040::,2a01:5047:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:5080::,2a01:5080:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:50a0::,2a01:50a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:50c0::,2a01:50c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:50e0::,2a01:50e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:5100::,2a01:5100:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:5120::,2a01:5120:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a01:5140::,2a01:5140:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:5160::,2a01:5160:ffff:ffff:ffff:ffff:ffff:ffff,ME 2a01:5180::,2a01:5180:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:51a0::,2a01:51a0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a01:51c0::,2a01:51c7:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a01:5200::,2a01:5200:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a01:5220::,2a01:5220:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:5240::,2a01:5240:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:5260::,2a01:5260:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:5280::,2a01:5280:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:52a0::,2a01:52a0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:52c0::,2a01:52c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:52e0::,2a01:52e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:5300::,2a01:5300:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:5320::,2a01:5320:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:5340::,2a01:5340:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:5360::,2a01:5360:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:5380::,2a01:5380:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:53a0::,2a01:53a0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:53c0::,2a01:53c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:53e0::,2a01:53e0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:5400::,2a01:5400:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:5420::,2a01:5420:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:5440::,2a01:5440:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:5460::,2a01:5460:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:5480::,2a01:5480:ffff:ffff:ffff:ffff:ffff:ffff,GG 2a01:54a0::,2a01:54a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:54c0::,2a01:54c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:54e0::,2a01:54e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:5500::,2a01:5507:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a01:5540::,2a01:5540:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:5560::,2a01:5560:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:5580::,2a01:5580:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:55a0::,2a01:55a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:55c0::,2a01:55c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:55e0::,2a01:55e7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:5600::,2a01:5600:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:5620::,2a01:5620:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:5640::,2a01:5640:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:5660::,2a01:5660:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:5680::,2a01:5687:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:56a0::,2a01:56a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:56c0::,2a01:56c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:56e0::,2a01:56e0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:5700::,2a01:5700:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:5720::,2a01:5720:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:5740::,2a01:5741:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a01:5760::,2a01:5760:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:5780::,2a01:5780:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:57a0::,2a01:57a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:57c0::,2a01:57c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:57e0::,2a01:57e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:5800::,2a01:5800:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:5820::,2a01:5820:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:5840::,2a01:5840:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a01:5860::,2a01:5860:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:5880::,2a01:5880:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:58a0::,2a01:58a0:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a01:58c0::,2a01:58c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:58e0::,2a01:58e0:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a01:5900::,2a01:5900:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:5920::,2a01:5920:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:5940::,2a01:5940:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:5960::,2a01:5960:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:5980::,2a01:5980:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:59a0::,2a01:59a7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:59c0::,2a01:59c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:59e0::,2a01:59e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:5a00::,2a01:5a00:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:5a20::,2a01:5a20:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:5a40::,2a01:5a40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:5a60::,2a01:5a60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:5a80::,2a01:5a80:ffff:ffff:ffff:ffff:ffff:ffff,US 2a01:5aa0::,2a01:5aa0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:5ac0::,2a01:5ac0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:5ae0::,2a01:5ae0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:5b20::,2a01:5b20:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:5b40::,2a01:5b40:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:5b60::,2a01:5b60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:5b80::,2a01:5b80:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:5ba0::,2a01:5ba0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:5bc0::,2a01:5bc0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:5be0::,2a01:5be0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:5c00::,2a01:5c00:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:5c20::,2a01:5c20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:5c40::,2a01:5c40:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:5c60::,2a01:5c60:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:5c80::,2a01:5c80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:5ca0::,2a01:5ca0:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a01:5cc0::,2a01:5cc0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:5ce0::,2a01:5ce0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:5d00::,2a01:5d00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:5d20::,2a01:5d20:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:5d40::,2a01:5d40:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:5d60::,2a01:5d67:ffff:ffff:ffff:ffff:ffff:ffff,TJ 2a01:5d80::,2a01:5d80:ffff:ffff:ffff:ffff:ffff:ffff,BH 2a01:5da0::,2a01:5da0:ffff:ffff:ffff:ffff:ffff:ffff,ME 2a01:5dc0::,2a01:5dc0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:5de0::,2a01:5de0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:5e00::,2a01:5e00:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:5e20::,2a01:5e20:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a01:5e40::,2a01:5e40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:5e60::,2a01:5e60:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a01:5e80::,2a01:5e80:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:5ea0::,2a01:5ea0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:5ec0::,2a01:5ec0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a01:5ee0::,2a01:5ee0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:5f00::,2a01:5f00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:5f20::,2a01:5f20:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:5f40::,2a01:5f40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:5f60::,2a01:5f60:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:5f80::,2a01:5f80:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:5fa0::,2a01:5fa0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:5fc0::,2a01:5fc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:5fe0::,2a01:5fe0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:6000::,2a01:6000:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:6020::,2a01:6020:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:6040::,2a01:6040:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:6060::,2a01:6060:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:6080::,2a01:6080:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:60a0::,2a01:60a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:60c0::,2a01:60c0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a01:60e0::,2a01:60e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:6100::,2a01:6100:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:6120::,2a01:6120:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:6140::,2a01:6140:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a01:6160::,2a01:6160:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:6180::,2a01:6180:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a01:61a0::,2a01:61a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:61c0::,2a01:61c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:61e0::,2a01:61e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:6200::,2a01:6200:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:6220::,2a01:6220:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:6240::,2a01:6240:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:6260::,2a01:6260:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:6280::,2a01:6280:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:62a0::,2a01:62a0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:62c0::,2a01:62c0:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a01:6300::,2a01:6300:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:6320::,2a01:6320:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a01:6340::,2a01:6347:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:6360::,2a01:6360:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:6380::,2a01:6380:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:63a0::,2a01:63a0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:63c0::,2a01:63c0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:63e0::,2a01:63e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:6400::,2a01:6400:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:6420::,2a01:6420:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:6440::,2a01:6447:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a01:6460::,2a01:6460:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:6480::,2a01:6480:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a01:64a0::,2a01:64a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:64c0::,2a01:64c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:64e0::,2a01:64e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:6500::,2a01:6500:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a01:6520::,2a01:6520:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:6540::,2a01:6540:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:6560::,2a01:6560:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:6580::,2a01:6580:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:65a0::,2a01:65a0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:65c0::,2a01:65c0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:65e0::,2a01:65e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:6600::,2a01:6600:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:6620::,2a01:6620:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:6640::,2a01:6647:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:6680::,2a01:6680:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:66a0::,2a01:66a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:66c0::,2a01:66c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:66e0::,2a01:66e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:6700::,2a01:6700:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a01:6720::,2a01:6720:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a01:6740::,2a01:6740:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:6760::,2a01:6760:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:6780::,2a01:6780:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:67a0::,2a01:67a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:67c0::,2a01:67c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:67e0::,2a01:67e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:6800::,2a01:6800:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:6820::,2a01:6820:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:6840::,2a01:6840:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:6860::,2a01:6860:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:6880::,2a01:6880:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:68a0::,2a01:68a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:68c0::,2a01:68c0:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a01:68e0::,2a01:68e0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:6900::,2a01:6900:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:6920::,2a01:6920:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:6940::,2a01:6940:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:6960::,2a01:6960:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:6980::,2a01:6980:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:69a0::,2a01:69a0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:69c0::,2a01:69c0:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:69e0::,2a01:69e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:6a00::,2a01:6a07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:6a20::,2a01:6a20:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:6a40::,2a01:6a40:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:6a60::,2a01:6a60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:6a80::,2a01:6a80:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:6aa0::,2a01:6aa0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:6ac0::,2a01:6ac0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:6ae0::,2a01:6ae7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:6b00::,2a01:6b00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:6b20::,2a01:6b20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:6b40::,2a01:6b40:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:6b60::,2a01:6b60:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:6b80::,2a01:6b80:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a01:6ba0::,2a01:6ba0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:6bc0::,2a01:6bc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:6be0::,2a01:6be0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:6c00::,2a01:6c00:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:6c20::,2a01:6c20:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:6c40::,2a01:6c40:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:6c60::,2a01:6c60:2:ffff:ffff:ffff:ffff:ffff,GB 2a01:6c60:3::,2a01:6c60:3:ffff:ffff:ffff:ffff:ffff,ZA 2a01:6c60:4::,2a01:6c60:4:ffff:ffff:ffff:ffff:ffff,NZ 2a01:6c60:5::,2a01:6c60:11:ffff:ffff:ffff:ffff:ffff,GB 2a01:6c60:12::,2a01:6c60:12:ffff:ffff:ffff:ffff:ffff,ES 2a01:6c60:13::,2a01:6c60:fff:ffff:ffff:ffff:ffff:ffff,GB 2a01:6c60:1000::,2a01:6c60:1fff:ffff:ffff:ffff:ffff:ffff,US 2a01:6c60:2000::,2a01:6c60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:6c80::,2a01:6c80:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:6ca0::,2a01:6ca0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:6cc0::,2a01:6cc0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:6ce0::,2a01:6ce0:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:6d00::,2a01:6d00:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:6d20::,2a01:6d20:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a01:6d40::,2a01:6d40:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:6d60::,2a01:6d60:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:6d80::,2a01:6d80:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:6da0::,2a01:6da0:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a01:6dc0::,2a01:6dc0:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a01:6de0::,2a01:6de0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:6e00::,2a01:6e00:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:6e20::,2a01:6e20:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:6e40::,2a01:6e40:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a01:6e60::,2a01:6e60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:6e80::,2a01:6e80:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:6ea0::,2a01:6ea0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:6ec0::,2a01:6ec0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:6ee0::,2a01:6ee0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:6f00::,2a01:6f07:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a01:6f20::,2a01:6f20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:6f40::,2a01:6f40:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:6f60::,2a01:6f60:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:6f80::,2a01:6f80:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:6fa0::,2a01:6fa0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:6fc0::,2a01:6fc0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a01:6fe0::,2a01:6fe0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:7000::,2a01:7000:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:7020::,2a01:7020:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:7040::,2a01:7040:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:7060::,2a01:7060:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:7080::,2a01:7080:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:70a0::,2a01:70a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:70c0::,2a01:70c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:70e0::,2a01:70e0:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a01:7100::,2a01:7100:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:7120::,2a01:7120:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:7140::,2a01:7140:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:7160::,2a01:7160:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:7180::,2a01:7180:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:71a0::,2a01:71a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:71c0::,2a01:71c1:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:71e0::,2a01:71e0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:7200::,2a01:7200:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:7220::,2a01:7220:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a01:7240::,2a01:7240:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:7260::,2a01:7267:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a01:7280::,2a01:7280:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:72a0::,2a01:72a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:72c0::,2a01:72c0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:72e0::,2a01:72e0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:7300::,2a01:7300:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:7320::,2a01:7320:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a01:7340::,2a01:7340:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:7360::,2a01:7360:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a01:7380::,2a01:7380:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:73a0::,2a01:73a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:73c0::,2a01:73c0:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a01:73e0::,2a01:73e0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a01:7400::,2a01:7400:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:7420::,2a01:7420:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7440::,2a01:7440:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:7460::,2a01:7460:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:7480::,2a01:7480:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:74a0::,2a01:74a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:74c0::,2a01:74c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:74e0::,2a01:74e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:7500::,2a01:7500:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:7520::,2a01:7520:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:7540::,2a01:7540:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:7560::,2a01:7560:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a01:7580::,2a01:7580:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:75a0::,2a01:75a0:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a01:75c0::,2a01:75c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7600::,2a01:7600:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:7620::,2a01:7620:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:7640::,2a01:7640:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a01:7660::,2a01:7660:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7680::,2a01:7680:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:76a0::,2a01:76a0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:76c0::,2a01:76c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:76e0::,2a01:76e0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:7700::,2a01:7700:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7720::,2a01:7720:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:7740::,2a01:7740:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:7760::,2a01:7760:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7780::,2a01:7780:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a01:77a0::,2a01:77a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:77c0::,2a01:77c0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:77e0::,2a01:77e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:7800::,2a01:7800:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:7820::,2a01:7820:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7840::,2a01:7840:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7860::,2a01:7860:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:7880::,2a01:7880:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:78a0::,2a01:78a0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:78c0::,2a01:78c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:78e0::,2a01:78e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:7900::,2a01:7900:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:7920::,2a01:7927:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:7940::,2a01:7940:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:7960::,2a01:7960:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7980::,2a01:7980:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:79a0::,2a01:79a0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:79c0::,2a01:79c0:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a01:79e0::,2a01:79e0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:7a00::,2a01:7a07:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:7a20::,2a01:7a20:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:7a40::,2a01:7a40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7a60::,2a01:7a60:ffff:ffff:ffff:ffff:ffff:ffff,SM 2a01:7a80::,2a01:7a87:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:7ac0::,2a01:7ac0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:7ae0::,2a01:7ae0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:7b00::,2a01:7b00:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a01:7b20::,2a01:7b20:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:7b40::,2a01:7b40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7b60::,2a01:7b60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:7b80::,2a01:7b80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:7ba0::,2a01:7ba0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:7bc0::,2a01:7bc0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a01:7be0::,2a01:7be0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7c00::,2a01:7c00:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:7c20::,2a01:7c20:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a01:7c40::,2a01:7c40:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a01:7c60::,2a01:7c60:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:7c80::,2a01:7c80:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a01:7ca0::,2a01:7ca0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:7cc0::,2a01:7cc0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:7ce0::,2a01:7ce0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:7d00::,2a01:7d00:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:7d40::,2a01:7d40:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a01:7d60::,2a01:7d60:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:7d80::,2a01:7d80:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:7da0::,2a01:7da0:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:7dc0::,2a01:7dc0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:7de0::,2a01:7de0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7e00::,2a01:7e00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:7e01::,2a01:7e01:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7e20::,2a01:7e27:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:7e40::,2a01:7e40:ffff:ffff:ffff:ffff:ffff:ffff,BH 2a01:7e60::,2a01:7e60:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a01:7e80::,2a01:7e80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7ea0::,2a01:7ea0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:7ec0::,2a01:7ec0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:7ee0::,2a01:7ee0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:7f00::,2a01:7f00:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:7f20::,2a01:7f20:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:7f40::,2a01:7f40:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a01:7f60::,2a01:7f60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:7f80::,2a01:7f80:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a01:7fa0::,2a01:7fa0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:7fc0::,2a01:7fc0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:7fe0::,2a01:7fe0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:8000::,2a01:8000:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:8020::,2a01:8020:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a01:8040::,2a01:8040:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:8060::,2a01:8060:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a01:8080::,2a01:8080:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a01:80a0::,2a01:80a0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a01:80c0::,2a01:80c0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:80e0::,2a01:80e0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:8100::,2a01:8100:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:8120::,2a01:8120:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:8140::,2a01:8140:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:8160::,2a01:8160:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:8180::,2a01:8180:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:81a0::,2a01:81a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:81c0::,2a01:81c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:81e0::,2a01:81e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:8200::,2a01:8200:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:8220::,2a01:8220:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:8240::,2a01:8240:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:8260::,2a01:8260:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:8280::,2a01:8280:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a01:82a0::,2a01:82a0:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a01:82c0::,2a01:82c0:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a01:82e0::,2a01:82e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:8300::,2a01:8300:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:8320::,2a01:8320:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:8340::,2a01:8340:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:8360::,2a01:8360:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:8380::,2a01:8380:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:83a0::,2a01:83a0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:83c0::,2a01:83c0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:83e0::,2a01:83e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:8400::,2a01:8400:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:8420::,2a01:8420:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:8440::,2a01:8440:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:8460::,2a01:8460:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:8480::,2a01:8480:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:84a0::,2a01:84a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:84c0::,2a01:84c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:84e0::,2a01:84e0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:8500::,2a01:8500:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:8520::,2a01:8520:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:8540::,2a01:8540:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:8560::,2a01:8560:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:8580::,2a01:8580:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:85a0::,2a01:85a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:85c0::,2a01:85c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:85e0::,2a01:85e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:8600::,2a01:8600:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:8620::,2a01:8620:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:8640::,2a01:8640:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:8660::,2a01:8660:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:8680::,2a01:8680:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:86a0::,2a01:86a0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:86c0::,2a01:86c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:86e0::,2a01:86e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:8700::,2a01:8700:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a01:8720::,2a01:8720:ffff:ffff:ffff:ffff:ffff:ffff,US 2a01:8740::,2a01:8740:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a01:8760::,2a01:8760:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:8780::,2a01:8787:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:87c0::,2a01:87c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:87e0::,2a01:87e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:8800::,2a01:8807:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:8820::,2a01:8820:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:8840::,2a01:8840:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:8860::,2a01:8860:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:8880::,2a01:8880:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a01:88a0::,2a01:88a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:88c0::,2a01:88c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:88e0::,2a01:88e0:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a01:8900::,2a01:8900:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:8920::,2a01:8920:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:8940::,2a01:8940:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:8960::,2a01:8960:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:8980::,2a01:8980:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:89a0::,2a01:89a0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:89c0::,2a01:89c0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:89e0::,2a01:89e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:8a00::,2a01:8a00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:8a20::,2a01:8a20:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:8a40::,2a01:8a40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:8a60::,2a01:8a60:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:8a80::,2a01:8a80:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a01:8aa0::,2a01:8aa0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:8ac0::,2a01:8ac0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:8ae0::,2a01:8ae0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:8b00::,2a01:8b00:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:8b20::,2a01:8b20:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a01:8b40::,2a01:8b40:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:8b60::,2a01:8b60:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:8b80::,2a01:8b80:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:8ba0::,2a01:8ba7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:8bc0::,2a01:8bc0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:8be0::,2a01:8be0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:8c00::,2a01:8c00:feff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:8c00:ff00::,2a01:8c00:ff00:7fff:ffff:ffff:ffff:ffff,SK 2a01:8c00:ff00:8000::,2a01:8c00:ff00:82b0:ffff:ffff:ffff:ffff,CZ 2a01:8c00:ff00:82b1::,2a01:8c00:ff00:82b1:ffff:ffff:ffff:ffff,US 2a01:8c00:ff00:82b2::,2a01:8c00:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:8c20::,2a01:8c20:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:8c40::,2a01:8c40:ffff:ffff:ffff:ffff:ffff:ffff,GI 2a01:8c60::,2a01:8c60:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a01:8c80::,2a01:8c80:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:8ca0::,2a01:8ca0:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a01:8cc0::,2a01:8cc0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a01:8ce0::,2a01:8ce0:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a01:8d00::,2a01:8d03:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:8d20::,2a01:8d20:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:8d40::,2a01:8d47:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:8d80::,2a01:8d80:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:8da0::,2a01:8da0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:8dc0::,2a01:8dc0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:8de0::,2a01:8de0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:8e00::,2a01:8e07:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:8e20::,2a01:8e20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:8e40::,2a01:8e40:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a01:8e60::,2a01:8e60:ffff:ffff:ffff:ffff:ffff:ffff,US 2a01:8e80::,2a01:8e87:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:8ec0::,2a01:8ec7:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:8ee0::,2a01:8ee0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:8f00::,2a01:8f00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:8f20::,2a01:8f20:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:8f40::,2a01:8f40:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:8f60::,2a01:8f67:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:8f80::,2a01:8f80:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:8fa0::,2a01:8fa0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:8fc0::,2a01:8fc0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:8fe0::,2a01:8fe0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:9000::,2a01:9000:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:9020::,2a01:9020:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:9040::,2a01:9040:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a01:9060::,2a01:9060:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:9080::,2a01:9080:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:90a0::,2a01:90a0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:90c0::,2a01:90c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:90e0::,2a01:90e0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a01:9100::,2a01:9107:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:9120::,2a01:9120:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:9140::,2a01:9140:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:9160::,2a01:9160:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:9180::,2a01:9180:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a01:91a0::,2a01:91a0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a01:91c0::,2a01:91c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:91e0::,2a01:91e0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:9200::,2a01:9200:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:9220::,2a01:9220:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:9240::,2a01:9240:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a01:9260::,2a01:9260:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:9280::,2a01:9280:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:92a0::,2a01:92a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:92c0::,2a01:92c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:92e0::,2a01:92e0:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a01:9300::,2a01:9300:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:9320::,2a01:9320:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:9340::,2a01:9340:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:9360::,2a01:9360:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:9380::,2a01:9380:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:93a0::,2a01:93a0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a01:93c0::,2a01:93c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:93e0::,2a01:93e0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:9400::,2a01:9400:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:9420::,2a01:9420:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:9440::,2a01:9440:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:9460::,2a01:9460:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a01:9480::,2a01:9480:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:94a0::,2a01:94a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:94c0::,2a01:94c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:94e0::,2a01:94e0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:9500::,2a01:9500:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:9520::,2a01:9520:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:9540::,2a01:9540:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:9560::,2a01:9560:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:9580::,2a01:9580:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:95a0::,2a01:95a0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:95c0::,2a01:95c0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:95e0::,2a01:95e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:9600::,2a01:9600:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:9620::,2a01:9627:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a01:9640::,2a01:9640:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:9660::,2a01:9660:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:9680::,2a01:9680:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:96a0::,2a01:96a0:ffff:ffff:ffff:ffff:ffff:ffff,KG 2a01:96c0::,2a01:96c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:96e0::,2a01:96e0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:9700::,2a01:9700:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a01:9720::,2a01:9720:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:9740::,2a01:9740:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:9760::,2a01:9760:ffff:ffff:ffff:ffff:ffff:ffff,KY 2a01:9780::,2a01:9780:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:97a0::,2a01:97a0:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a01:97c0::,2a01:97c0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:97e0::,2a01:97e0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:9800::,2a01:9800:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a01:9820::,2a01:9820:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:9840::,2a01:9840:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:9860::,2a01:9860:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:9880::,2a01:9880:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:98a0::,2a01:98a0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:98c0::,2a01:98c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:98e0::,2a01:98e0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:9900::,2a01:9900:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:9920::,2a01:9920:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:9940::,2a01:9940:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:9960::,2a01:9960:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:9980::,2a01:9980:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:99a0::,2a01:99a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:99c0::,2a01:99c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:99e0::,2a01:99e0:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a01:9a00::,2a01:9a00:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:9a20::,2a01:9a20:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:9a40::,2a01:9a40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:9a60::,2a01:9a60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:9a80::,2a01:9a80:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:9aa0::,2a01:9aa0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:9ac0::,2a01:9ac0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:9ae0::,2a01:9ae0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:9b00::,2a01:9b00:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:9b20::,2a01:9b20:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a01:9b40::,2a01:9b40:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:9b60::,2a01:9b60:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:9b80::,2a01:9b80:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:9ba0::,2a01:9ba0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:9bc0::,2a01:9bc7:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:9be0::,2a01:9be0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:9c00::,2a01:9c00:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:9c20::,2a01:9c20:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:9c40::,2a01:9c41:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:9c60::,2a01:9c60:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:9c80::,2a01:9c80:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a01:9ca0::,2a01:9ca0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:9cc0::,2a01:9cc0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:9ce0::,2a01:9ce0:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a01:9d00::,2a01:9d00:ffff:ffff:ffff:ffff:ffff:ffff,KG 2a01:9d20::,2a01:9d27:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a01:9d40::,2a01:9d40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:9d60::,2a01:9d60:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:9d80::,2a01:9d80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:9da0::,2a01:9da0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:9dc0::,2a01:9dc0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:9de0::,2a01:9de0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:9e00::,2a01:9e07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:9e20::,2a01:9e20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:9e40::,2a01:9e40:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a01:9e60::,2a01:9e60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:9e80::,2a01:9e80:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:9ea0::,2a01:9ea0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a01:9ec0::,2a01:9ec7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:9f00::,2a01:9f00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:9f20::,2a01:9f20:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:9f40::,2a01:9f40:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:9f60::,2a01:9f60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:9f80::,2a01:9f80:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a01:9fa0::,2a01:9fa0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:9fc0::,2a01:9fc0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:9fe0::,2a01:9fe0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:a000::,2a01:a000:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:a020::,2a01:a020:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:a040::,2a01:a040:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:a060::,2a01:a060:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:a080::,2a01:a080:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:a0a0::,2a01:a0a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:a0c0::,2a01:a0c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:a0e0::,2a01:a0e0:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a01:a100::,2a01:a100:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:a120::,2a01:a120:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a01:a140::,2a01:a140:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:a160::,2a01:a160:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:a180::,2a01:a180:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a01:a1a0::,2a01:a1a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:a1c0::,2a01:a1c0:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a01:a1e0::,2a01:a1e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:a200::,2a01:a200:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:a220::,2a01:a220:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:a240::,2a01:a240:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:a260::,2a01:a260:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:a280::,2a01:a280:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:a2a0::,2a01:a2a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:a2c0::,2a01:a2c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:a2e0::,2a01:a2e0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:a300::,2a01:a300:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:a320::,2a01:a320:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a01:a340::,2a01:a340:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:a360::,2a01:a360:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:a380::,2a01:a380:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:a3a0::,2a01:a3a0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:a3c0::,2a01:a3c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:a3e0::,2a01:a3e0:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a01:a400::,2a01:a400:ffff:ffff:ffff:ffff:ffff:ffff,JE 2a01:a420::,2a01:a420:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:a440::,2a01:a440:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:a460::,2a01:a460:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:a480::,2a01:a480:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:a4a0::,2a01:a4a0:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a01:a4c0::,2a01:a4c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:a4e0::,2a01:a4e0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:a500::,2a01:a500:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:a520::,2a01:a520:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:a540::,2a01:a540:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a01:a580::,2a01:a580:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:a5a0::,2a01:a5a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:a5c0::,2a01:a5c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:a5e0::,2a01:a5e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:a600::,2a01:a600:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:a620::,2a01:a620:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:a640::,2a01:a640:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:a660::,2a01:a660:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:a680::,2a01:a687:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:a6a0::,2a01:a6a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:a6c0::,2a01:a6c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:a6e0::,2a01:a6e0:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a01:a700::,2a01:a707:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:a740::,2a01:a740:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:a760::,2a01:a760:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a01:a780::,2a01:a780:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:a7a0::,2a01:a7a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:a7c0::,2a01:a7c0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:a7e0::,2a01:a7e0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a01:a800::,2a01:a800:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a01:a820::,2a01:a820:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:a840::,2a01:a840:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:a860::,2a01:a860:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:a880::,2a01:a880:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a01:a8a0::,2a01:a8a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:a8c0::,2a01:a8c0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:a8e0::,2a01:a8e0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:a900::,2a01:a900:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:a920::,2a01:a920:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:a940::,2a01:a940:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:a960::,2a01:a960:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a01:a980::,2a01:a987:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:a9a0::,2a01:a9a0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:a9c0::,2a01:a9c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:a9e0::,2a01:a9e0:ffff:ffff:ffff:ffff:ffff:ffff,US 2a01:aa00::,2a01:aa00:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a01:aa20::,2a01:aa20:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a01:aa40::,2a01:aa40:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:aa60::,2a01:aa60:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:aa80::,2a01:aa80:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:aaa0::,2a01:aaa0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:aac0::,2a01:aac0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:aae0::,2a01:aae0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:ab00::,2a01:ab00:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:ab40::,2a01:ab40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:ab60::,2a01:ab60:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:ab80::,2a01:ab80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:aba0::,2a01:aba0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:abc0::,2a01:abc0:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a01:abe0::,2a01:abe0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:ac00::,2a01:ac00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:ac20::,2a01:ac20:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:ac40::,2a01:ac40:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:ac60::,2a01:ac60:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:ac80::,2a01:ac80:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a01:aca0::,2a01:aca0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:acc0::,2a01:acc0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:ace0::,2a01:ace0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:ad00::,2a01:ad00:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:ad20::,2a01:ad20:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:ad40::,2a01:ad40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:ad60::,2a01:ad60:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a01:ad80::,2a01:ad80:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:ada0::,2a01:ada0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:adc0::,2a01:adc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:ade0::,2a01:ade0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:ae00::,2a01:ae00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:ae20::,2a01:ae20:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:ae40::,2a01:ae40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:ae60::,2a01:ae60:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:ae80::,2a01:ae80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:aea0::,2a01:aea0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a01:aec0::,2a01:aec0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:aee0::,2a01:aee0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a01:af00::,2a01:af00:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a01:af20::,2a01:af20:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:af40::,2a01:af40:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:af60::,2a01:af60:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:af80::,2a01:af80:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a01:afa0::,2a01:afa0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a01:afc0::,2a01:afc0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:afe0::,2a01:afe0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:b000::,2a01:b000:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:b020::,2a01:b020:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a01:b040::,2a01:b040:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:b060::,2a01:b060:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:b080::,2a01:b080:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:b0a0::,2a01:b0a0:ffff:ffff:ffff:ffff:ffff:ffff,US 2a01:b0c0::,2a01:b0c0:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a01:b0e0::,2a01:b0e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:b100::,2a01:b100:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:b120::,2a01:b120:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:b140::,2a01:b140:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:b160::,2a01:b160:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:b180::,2a01:b180:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:b1a0::,2a01:b1a0:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:b1c0::,2a01:b1c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:b200::,2a01:b200:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a01:b220::,2a01:b220:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:b240::,2a01:b240:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:b260::,2a01:b260:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:b280::,2a01:b287:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:b2a0::,2a01:b2a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:b2c0::,2a01:b2c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:b2e0::,2a01:b2e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:b300::,2a01:b307:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:b340::,2a01:b340:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:b360::,2a01:b360:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:b380::,2a01:b380:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:b3a0::,2a01:b3a0:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a01:b3c0::,2a01:b3c0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:b3e0::,2a01:b3e0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:b400::,2a01:b400:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:b420::,2a01:b420:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:b440::,2a01:b440:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a01:b460::,2a01:b460:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:b480::,2a01:b480:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:b4a0::,2a01:b4a0:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a01:b4c0::,2a01:b4c0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:b4e0::,2a01:b4e0:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a01:b500::,2a01:b500:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a01:b520::,2a01:b520:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:b540::,2a01:b547:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:b580::,2a01:b580:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:b5a0::,2a01:b5a0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a01:b5c0::,2a01:b5c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:b5e0::,2a01:b5e0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:b600::,2a01:b600:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:b620::,2a01:b620:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a01:b640::,2a01:b640:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:b660::,2a01:b660:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:b680::,2a01:b680:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:b6a0::,2a01:b6a0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a01:b6c0::,2a01:b6c7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:b700::,2a01:b700:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:b720::,2a01:b720:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:b740::,2a01:b740:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:b760::,2a01:b760:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a01:b780::,2a01:b780:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a01:b7a0::,2a01:b7a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:b7c0::,2a01:b7c0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:b7e0::,2a01:b7e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:b800::,2a01:b800:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a01:b820::,2a01:b820:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:b840::,2a01:b840:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:b860::,2a01:b860:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:b880::,2a01:b880:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a01:b8a0::,2a01:b8a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:b8c0::,2a01:b8c0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:b8e0::,2a01:b8e0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:b900::,2a01:b900:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:b920::,2a01:b920:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:b940::,2a01:b940:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:b960::,2a01:b960:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:b980::,2a01:b980:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:b9a0::,2a01:b9a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:b9c0::,2a01:b9c0:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a01:b9e0::,2a01:b9e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:ba00::,2a01:ba00:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a01:ba20::,2a01:ba20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:ba40::,2a01:ba40:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:ba60::,2a01:ba60:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a01:ba80::,2a01:ba80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:baa0::,2a01:baa0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:bac0::,2a01:bac0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:bae0::,2a01:bae0:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a01:bb00::,2a01:bb00:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:bb20::,2a01:bb20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:bb40::,2a01:bb40:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:bb60::,2a01:bb60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a01:bb80::,2a01:bb80:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a01:bba0::,2a01:bba0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a01:bbc0::,2a01:bbc0:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a01:bbe0::,2a01:bbe0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:bc00::,2a01:bc07:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:bc40::,2a01:bc40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:bc60::,2a01:bc60:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:bca0::,2a01:bca0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:bcc0::,2a01:bcc0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:bce0::,2a01:bce0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:bd00::,2a01:bd00:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:bd20::,2a01:bd20:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:bd40::,2a01:bd47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:bd60::,2a01:bd60:ffff:ffff:ffff:ffff:ffff:ffff,SY 2a01:bd80::,2a01:bd80:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a01:bda0::,2a01:bda0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a01:bdc0::,2a01:bdc0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a01:bde0::,2a01:bde0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:be00::,2a01:be00:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a01:be20::,2a01:be20:ffff:ffff:ffff:ffff:ffff:ffff,SY 2a01:be40::,2a01:be40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:be60::,2a01:be60:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a01:be80::,2a01:be80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a01:bea0::,2a01:bea0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a01:bec0::,2a01:bec0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:bee0::,2a01:bee0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:bf00::,2a01:bf00:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a01:bf20::,2a01:bf20:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a01:bf40::,2a01:bf40:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a01:bf60::,2a01:bf60:ffff:ffff:ffff:ffff:ffff:ffff,US 2a01:bf80::,2a01:bf80:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a01:bfa0::,2a01:bfa0:ffff:ffff:ffff:ffff:ffff:ffff,KG 2a01:bfc0::,2a01:bfc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a01:bfe0::,2a01:bfe0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a01:c000::,2a01:dfff:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02::,2a02::ffff:ffff:ffff:ffff:ffff:ffff,LU 2a02:10::,2a02:17:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:18::,2a02:18:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:20::,2a02:20:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:28::,2a02:28:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:30::,2a02:30:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:38::,2a02:38:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:40::,2a02:40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:48::,2a02:48:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a02:50::,2a02:50:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:58::,2a02:58:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:60::,2a02:67:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:68::,2a02:68:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:70::,2a02:70:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:78::,2a02:78:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:80::,2a02:87:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:88::,2a02:88:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a02:90::,2a02:97:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:98::,2a02:98:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:a0::,2a02:a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:a8::,2a02:a8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:b0::,2a02:b0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:b8::,2a02:b8::ffff:ffff:ffff:ffff:ffff,LU 2a02:b8:1::,2a02:b8:1:7fff:ffff:ffff:ffff:ffff,FR 2a02:b8:1:8000::,2a02:b8:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a02:c0::,2a02:c0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:c8::,2a02:c8:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:d0::,2a02:d0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:d8::,2a02:d8:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:e0::,2a02:e0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:e8::,2a02:e8:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a02:f0::,2a02:f0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:f8::,2a02:f8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:100::,2a02:100:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:108::,2a02:10f:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:110::,2a02:110:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:118::,2a02:118:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a02:120::,2a02:120:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:128::,2a02:128:3:ffff:ffff:ffff:ffff:ffff,CZ 2a02:128:4::,2a02:128:4:ffff:ffff:ffff:ffff:ffff,NL 2a02:128:5::,2a02:128:5:ffff:ffff:ffff:ffff:ffff,CZ 2a02:128:6::,2a02:128:6:ffff:ffff:ffff:ffff:ffff,RU 2a02:128:7::,2a02:128:7:ffff:ffff:ffff:ffff:ffff,CZ 2a02:128:8::,2a02:128:8:7fff:ffff:ffff:ffff:ffff,RU 2a02:128:8:8000::,2a02:128:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:130::,2a02:130:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a02:138::,2a02:138:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a02:140::,2a02:140:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:148::,2a02:14f:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a02:150::,2a02:150:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:158::,2a02:158:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:160::,2a02:160:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:168::,2a02:16b:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:170::,2a02:170:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:178::,2a02:178:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:180::,2a02:180:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:188::,2a02:18f:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:190::,2a02:190:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:198::,2a02:198:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:1a8::,2a02:1a8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:1b8::,2a02:1b8:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:1c0::,2a02:1c7:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a02:1c8::,2a02:1c8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:1d0::,2a02:1d0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:1d8::,2a02:1d8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:1e0::,2a02:1e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:1e8::,2a02:1e8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:1f0::,2a02:1f0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:1f8::,2a02:1f8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:200::,2a02:200:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:208::,2a02:208:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:210::,2a02:210:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:218::,2a02:21f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:220::,2a02:220:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:228::,2a02:22f:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:230::,2a02:230:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:238::,2a02:238:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:240::,2a02:240:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:248::,2a02:248:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:250::,2a02:250:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:258::,2a02:25f:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:260::,2a02:260:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:268::,2a02:268:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:270::,2a02:270:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:278::,2a02:278:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:280::,2a02:280:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:288::,2a02:290:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:298::,2a02:298:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2a0::,2a02:2a0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:2a8::,2a02:2a8:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:2b0::,2a02:2b0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2b8::,2a02:2b8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2c0::,2a02:2c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2c8::,2a02:2c8:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:2d8::,2a02:2d8::7fff:ffff:ffff:ffff:ffff,RU 2a02:2d8:0:8000::,2a02:2d8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2e0::,2a02:2e7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2e8::,2a02:2e8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:2f0::,2a02:2f7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2f8::,2a02:2f8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:300::,2a02:300:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:308::,2a02:308:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:310::,2a02:310:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:318::,2a02:318:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:320::,2a02:320:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:328::,2a02:328:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:330::,2a02:330:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:338::,2a02:338:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:340::,2a02:340:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:348::,2a02:348:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:350::,2a02:350:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:358::,2a02:358:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:360::,2a02:360:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:368::,2a02:368:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:370::,2a02:370:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:380::,2a02:381:ffff:ffff:ffff:ffff:ffff:ffff,LI 2a02:388::,2a02:388:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:390::,2a02:390:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:398::,2a02:398:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:3a0::,2a02:3a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:3a8::,2a02:3a8:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a02:3b0::,2a02:3b0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:3b8::,2a02:3b8:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:3c0::,2a02:3c0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:3c8::,2a02:3c8:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a02:3d0::,2a02:3d0:ffff:ffff:ffff:ffff:ffff:ffff,US 2a02:3d8::,2a02:3d8:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:3e0::,2a02:3e0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:3e8::,2a02:3e8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:3f0::,2a02:3f0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:3f8::,2a02:3f8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:400::,2a02:400:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:408::,2a02:408:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:410::,2a02:410:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:418::,2a02:41f:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:420::,2a02:427:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:428::,2a02:428:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:430::,2a02:430:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:438::,2a02:438:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:440::,2a02:440:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:448::,2a02:44f:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:450::,2a02:450:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:458::,2a02:458:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:460::,2a02:460:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:468::,2a02:46f:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:470::,2a02:470:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:478::,2a02:478:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:480::,2a02:480:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:488::,2a02:488:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:490::,2a02:490:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:498::,2a02:498:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:4a0::,2a02:4a0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:4a8::,2a02:4a8:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:4b0::,2a02:4b0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:4b8::,2a02:4bf:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:4c8::,2a02:4c8:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a02:4d0::,2a02:4d0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:4d8::,2a02:4d8:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a02:4e0::,2a02:4e0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:4e8::,2a02:4e8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:4f0::,2a02:4f0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:4f8::,2a02:4f8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:500::,2a02:500:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a02:508::,2a02:508:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:518::,2a02:518:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:520::,2a02:520:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:530::,2a02:530:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:538::,2a02:538:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:540::,2a02:540:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a02:548::,2a02:548:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:550::,2a02:550:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:558::,2a02:558:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a02:560::,2a02:560:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:568::,2a02:568:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:570::,2a02:570:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:578::,2a02:578:5002:7fff:ffff:ffff:ffff:ffff,BE 2a02:578:5002:8000::,2a02:578:5002:ffff:ffff:ffff:ffff:ffff,RU 2a02:578:5003::,2a02:578:5411:ffff:ffff:ffff:ffff:ffff,BE 2a02:578:5412::,2a02:578:5412:7fff:ffff:ffff:ffff:ffff,RU 2a02:578:5412:8000::,2a02:578:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:580::,2a02:580:d3ab:ffff:ffff:ffff:ffff:ffff,GR 2a02:580:d3ac::,2a02:580:d3ac:7fff:ffff:ffff:ffff:ffff,FR 2a02:580:d3ac:8000::,2a02:587:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a02:588::,2a02:588:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:590::,2a02:597:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:598::,2a02:598:1:ffff:ffff:ffff:ffff:ffff,CZ 2a02:598:2::,2a02:598:2:7fff:ffff:ffff:ffff:ffff,GB 2a02:598:2:8000::,2a02:598:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:5a0::,2a02:5a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:5b0::,2a02:5b0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:5b8::,2a02:5b8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:5c0::,2a02:5c0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:5c8::,2a02:5c8:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a02:5d0::,2a02:5d0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:5d8::,2a02:5d8:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:5e0::,2a02:5e7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:5f0::,2a02:5f0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:600::,2a02:600:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:608::,2a02:608:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:610::,2a02:610:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a02:618::,2a02:618:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:620::,2a02:620:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:630::,2a02:630:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:638::,2a02:638:ffff:ffff:ffff:ffff:ffff:ffff,GI 2a02:640::,2a02:647:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a02:648::,2a02:648:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:650::,2a02:650:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:658::,2a02:658:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:660::,2a02:660:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a02:668::,2a02:668:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:670::,2a02:670:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:678::,2a02:678:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a02:680::,2a02:680:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:688::,2a02:688:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:690::,2a02:690:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:698::,2a02:698:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6a0::,2a02:6a0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:6a8::,2a02:6a8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:6b0::,2a02:6b0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6b8::,2a02:6b8::29ff:ffff:ffff:ffff:ffff,RU 2a02:6b8:0:2a00::,2a02:6b8::2bff:ffff:ffff:ffff:ffff,TR 2a02:6b8:0:2c00::,2a02:6b8::2fff:ffff:ffff:ffff:ffff,UA 2a02:6b8:0:3000::,2a02:6b8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6c0::,2a02:6c0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:6c8::,2a02:6c8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:6d0::,2a02:6d0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:6d8::,2a02:6d8:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:6e0::,2a02:6e0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:6e8::,2a02:6e8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:6f0::,2a02:6f0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:6f8::,2a02:6f8:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:700::,2a02:700:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:708::,2a02:708:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:710::,2a02:710:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:718::,2a02:718:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:720::,2a02:720:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:728::,2a02:728:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:730::,2a02:730:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a02:738::,2a02:738:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a02:740::,2a02:740:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a02:748::,2a02:748:afff:ffff:ffff:ffff:ffff:ffff,PL 2a02:748:b000::,2a02:748:b000:7fff:ffff:ffff:ffff:ffff,US 2a02:748:b000:8000::,2a02:748:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:750::,2a02:757:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:758::,2a02:758:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:760::,2a02:760:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:768::,2a02:768:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:770::,2a02:770:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a02:778::,2a02:778:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:780::,2a02:787:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a02:788::,2a02:790:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:798::,2a02:798:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:7a0::,2a02:7a7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:7a8::,2a02:7a8:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a02:7b0::,2a02:7b0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:7b8::,2a02:7b8:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:7c0::,2a02:7c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:7c8::,2a02:7c8:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:7d0::,2a02:7d0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:7d8::,2a02:7d8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:7e0::,2a02:7e0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:7e8::,2a02:7e8:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:7f0::,2a02:7f0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:800::,2a02:807:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a02:808::,2a02:808:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a02:810::,2a02:810:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:818::,2a02:81f:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a02:820::,2a02:820:ffff:ffff:ffff:ffff:ffff:ffff,KG 2a02:828::,2a02:828:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:830::,2a02:830:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:838::,2a02:838:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:840::,2a02:840:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a02:848::,2a02:848:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:850::,2a02:850:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:858::,2a02:85f:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a02:860::,2a02:860:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:868::,2a02:86f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:870::,2a02:877:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a02:878::,2a02:878:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:880::,2a02:880:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:888::,2a02:888:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a02:890::,2a02:890:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:898::,2a02:898:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:8a0::,2a02:8a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:8a8::,2a02:8a8:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:8b0::,2a02:8b0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:8b8::,2a02:8b8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:8c0::,2a02:8c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:8c8::,2a02:8c8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:8d0::,2a02:8d1:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:8d8::,2a02:8d8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:8e0::,2a02:8e0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:8e8::,2a02:8e8:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:8f0::,2a02:8f0:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a02:8f8::,2a02:8f8:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:900::,2a02:900:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a02:908::,2a02:908:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:910::,2a02:910:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:918::,2a02:918:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:920::,2a02:920:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:928::,2a02:928:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:930::,2a02:930:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:938::,2a02:93f:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:940::,2a02:947:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:950::,2a02:957:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:958::,2a02:958:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:960::,2a02:960:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:968::,2a02:968:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:970::,2a02:970:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:978::,2a02:978:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:980::,2a02:980:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:988::,2a02:988:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:990::,2a02:990:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:998::,2a02:998:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:9a0::,2a02:9a0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:9a8::,2a02:9a8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:9b0::,2a02:9b0:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a02:9b8::,2a02:9b9:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:9c0::,2a02:9c0:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a02:9c8::,2a02:9c8:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:9d0::,2a02:9d0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:9d8::,2a02:9d8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:9e0::,2a02:9e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:9e8::,2a02:9e8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:9f0::,2a02:9f0:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a02:9f8::,2a02:9f8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:a00::,2a02:a00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:a08::,2a02:a08:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:a10::,2a02:a10:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:a18::,2a02:a18:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:a20::,2a02:a20:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:a28::,2a02:a28:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:a30::,2a02:a30:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a02:a38::,2a02:a38:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:a40::,2a02:a40:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:a48::,2a02:a48:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:a50::,2a02:a50:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a02:a58::,2a02:a58:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a02:a60::,2a02:a60:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:a68::,2a02:a68:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a02:a70::,2a02:a70:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:a78::,2a02:a78:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:a80::,2a02:a80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:a88::,2a02:a88:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a02:a90::,2a02:a90:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:a98::,2a02:a98:ffff:ffff:ffff:ffff:ffff:ffff,UZ 2a02:aa0::,2a02:aa0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:aa8::,2a02:aaf:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:ab0::,2a02:ab0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:ab8::,2a02:abf:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:ac0::,2a02:ac0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:ac8::,2a02:ac8:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a02:ad0::,2a02:ad7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:ad8::,2a02:ad8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:ae0::,2a02:ae0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:ae8::,2a02:aef:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:af0::,2a02:af0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:af8::,2a02:af8:dad9:ffff:ffff:ffff:ffff:ffff,GB 2a02:af8:dada::,2a02:af8:dada:7fff:ffff:ffff:ffff:ffff,IT 2a02:af8:dada:8000::,2a02:af8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:b00::,2a02:b00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:b08::,2a02:b0f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:b10::,2a02:b10:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:b18::,2a02:b18:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:b20::,2a02:b20:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:b28::,2a02:b28:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:b30::,2a02:b30:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:b48::,2a02:b48:ff:ffff:ffff:ffff:ffff:ffff,US 2a02:b48:100::,2a02:b4f:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:b50::,2a02:b50:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:b58::,2a02:b58:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a02:b60::,2a02:b60:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a02:b70::,2a02:b70:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:b78::,2a02:b78:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:b80::,2a02:b87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:b88::,2a02:b88:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:b90::,2a02:b90:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:b98::,2a02:b98:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:ba0::,2a02:ba0:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a02:ba8::,2a02:ba8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:bb0::,2a02:bb0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:bb8::,2a02:bb8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:bc0::,2a02:bc0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:bc8::,2a02:bc8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:bd0::,2a02:bd0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:bd8::,2a02:bd8:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:be0::,2a02:be0:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a02:be8::,2a02:be8:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:bf0::,2a02:bf0:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a02:bf8::,2a02:bf8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:c00::,2a02:c00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:c08::,2a02:c08:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a02:c10::,2a02:c10:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:c18::,2a02:c18:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:c20::,2a02:c20:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:c28::,2a02:c2f:ffff:ffff:ffff:ffff:ffff:ffff,JE 2a02:c38::,2a02:c38:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:c40::,2a02:c47:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:c48::,2a02:c48:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:c50::,2a02:c50:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:c58::,2a02:c58:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:c60::,2a02:c60:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:c68::,2a02:c68:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:c70::,2a02:c70:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:c78::,2a02:c7f:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:c80::,2a02:c80:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a02:c88::,2a02:c88:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:c90::,2a02:c90:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:c98::,2a02:c98:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:ca0::,2a02:ca0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:ca8::,2a02:ca8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:cb0::,2a02:cb0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:cc0::,2a02:cc9:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:cd0::,2a02:cd0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:cd8::,2a02:cd8:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:ce0::,2a02:ce0:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a02:ce8::,2a02:ce8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:cf0::,2a02:cf0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:d00::,2a02:d00:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:d08::,2a02:d0f:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:d10::,2a02:d10:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a02:d18::,2a02:d18:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a02:d20::,2a02:d20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:d28::,2a02:d28:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:d30::,2a02:d30:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:d38::,2a02:d3f:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:d40::,2a02:d40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:d48::,2a02:d48:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:d50::,2a02:d50:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:d58::,2a02:d5f:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:d60::,2a02:d60:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:d68::,2a02:d6f:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a02:d70::,2a02:d70:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a02:d78::,2a02:d78:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:d80::,2a02:d80:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a02:d88::,2a02:d88:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:d90::,2a02:d90:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a02:d98::,2a02:d98:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:da8::,2a02:da8:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:db0::,2a02:db0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:db8::,2a02:db8:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:dc0::,2a02:dc0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:dc8::,2a02:dcf:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:dd0::,2a02:dd0:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a02:dd8::,2a02:ddf:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a02:de0::,2a02:de0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:de8::,2a02:de8:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a02:df0::,2a02:df0:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a02:df8::,2a02:dff:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:e00::,2a02:e00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:e08::,2a02:e08:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:e10::,2a02:e10:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:e20::,2a02:e27:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a02:e28::,2a02:e28:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:e30::,2a02:e30:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:e38::,2a02:e38:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:e40::,2a02:e40:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a02:e48::,2a02:e48:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a02:e50::,2a02:e50:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:e58::,2a02:e5f:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:e60::,2a02:e60:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:e68::,2a02:e68:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:e70::,2a02:e70:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:e80::,2a02:e80:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a02:e88::,2a02:e88:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:e90::,2a02:e90:ffff:ffff:ffff:ffff:ffff:ffff,FO 2a02:e98::,2a02:e98:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:ea0::,2a02:ea7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:ea8::,2a02:ea8:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:eb0::,2a02:eb0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:eb8::,2a02:ebf:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:ec0::,2a02:ec0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:ec8::,2a02:ec8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:ed0::,2a02:ed0:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a02:ed8::,2a02:ed8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:ee0::,2a02:ee0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:ef0::,2a02:ef0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:ef8::,2a02:ef8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:f00::,2a02:f00:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:f08::,2a02:f08:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:f10::,2a02:f10:ffff:ffff:ffff:ffff:ffff:ffff,UZ 2a02:f18::,2a02:f18:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:f20::,2a02:f20:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:f28::,2a02:f28:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:f30::,2a02:f30:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:f38::,2a02:f38:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:f40::,2a02:f40:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:f48::,2a02:f48:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a02:f50::,2a02:f50:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a02:f58::,2a02:f58:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:f60::,2a02:f60:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:f68::,2a02:f6f:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:f70::,2a02:f70:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:f78::,2a02:f7f:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:f80::,2a02:f80:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:f88::,2a02:f88:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a02:f90::,2a02:f90:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:f98::,2a02:f98:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:fa0::,2a02:fa0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:fa8::,2a02:fa8:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:fb0::,2a02:fb0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:fb8::,2a02:fb8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:fc0::,2a02:fc7:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a02:fc8::,2a02:fc8:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:fd0::,2a02:fd0:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a02:fd8::,2a02:fd8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:fe0::,2a02:fe7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:fe8::,2a02:fe9:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:ff0::,2a02:ff0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:1000::,2a02:103f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:1200::,2a02:121f:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:1300::,2a02:1300:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a02:1308::,2a02:1308:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:1310::,2a02:1310:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:1318::,2a02:1318:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:1320::,2a02:1320:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:1328::,2a02:1328:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:1330::,2a02:1330:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:1338::,2a02:1338:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a02:1340::,2a02:1340:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:1348::,2a02:1348:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:1350::,2a02:1350:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:1358::,2a02:1358:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:1360::,2a02:1360:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:1368::,2a02:1368:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:1370::,2a02:1370:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:1378::,2a02:1378:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:1380::,2a02:1380:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:1388::,2a02:138f:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a02:1390::,2a02:1390:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:1398::,2a02:1398:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:13a0::,2a02:13a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:13a8::,2a02:13a8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:13b0::,2a02:13b0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:13b8::,2a02:13b8:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:13c0::,2a02:13c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:13c8::,2a02:13c8:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:13d0::,2a02:13d0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:13d8::,2a02:13d8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:13e0::,2a02:13e0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:13e8::,2a02:13e8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:13f0::,2a02:13f0:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a02:13f8::,2a02:13f8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:1400::,2a02:143f:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:1600::,2a02:1600:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:1608::,2a02:1608:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:1610::,2a02:1610:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:1618::,2a02:1618:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a02:1620::,2a02:1620:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:1628::,2a02:1628:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:1630::,2a02:1630:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:1638::,2a02:1638:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:1648::,2a02:1648:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:1650::,2a02:1650:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a02:1658::,2a02:1658:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:1660::,2a02:1660:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:1668::,2a02:166f:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:1670::,2a02:1670:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:1678::,2a02:1678:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:1680::,2a02:1680:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:1688::,2a02:1688:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:1698::,2a02:1698:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:16a0::,2a02:16a0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:16a8::,2a02:16a8:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:16b0::,2a02:16b0:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a02:16b8::,2a02:16b8:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:16c0::,2a02:16c7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:16c8::,2a02:16c8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:16d0::,2a02:16d0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:16d8::,2a02:16d8:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a02:16e0::,2a02:16e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:16e8::,2a02:16e8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:16f0::,2a02:16f0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:16f8::,2a02:16f8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:1700::,2a02:1700:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:1710::,2a02:1710:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:1718::,2a02:1718:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a02:1720::,2a02:1720:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:1730::,2a02:1730:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:1738::,2a02:1738:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:1740::,2a02:1740:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:1748::,2a02:1748:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:1750::,2a02:1750:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:1758::,2a02:1758:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:1760::,2a02:1760:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:1768::,2a02:1768:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:1770::,2a02:1770:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:1778::,2a02:1778:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:1780::,2a02:1780:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:1788::,2a02:1788:4ff:7fff:ffff:ffff:ffff:ffff,GB 2a02:1788:4ff:8000::,2a02:1788:4ff:ffff:ffff:ffff:ffff:ffff,US 2a02:1788:500::,2a02:1788:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:1790::,2a02:1790:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:1798::,2a02:179f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:17a0::,2a02:17a0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:17a8::,2a02:17a8:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a02:17b0::,2a02:17b0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:17b8::,2a02:17b8:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:17c0::,2a02:17c0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:17c8::,2a02:17c8:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:17d0::,2a02:17d0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:17d8::,2a02:17d8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:17e0::,2a02:17e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:17e8::,2a02:17e8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:17f0::,2a02:17f0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:17f8::,2a02:17f8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:1800::,2a02:18ff:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:2000::,2a02:2000:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:2008::,2a02:2008:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2010::,2a02:2017:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:2018::,2a02:2018:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2020::,2a02:2020:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:2028::,2a02:2028:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2030::,2a02:2030:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a02:2038::,2a02:2038:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2040::,2a02:2040:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:2048::,2a02:2048:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:2050::,2a02:2050:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2058::,2a02:2058:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:2060::,2a02:2060:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2068::,2a02:206f:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:2070::,2a02:2070:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2078::,2a02:2078:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:2080::,2a02:2080:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2088::,2a02:2088:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:2090::,2a02:2090:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2098::,2a02:209f:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:20a0::,2a02:20a0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:20a8::,2a02:20a8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:20b0::,2a02:20b0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:20b8::,2a02:20b8:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a02:20c0::,2a02:20c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:20c8::,2a02:20c8:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:20d0::,2a02:20d0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:20d8::,2a02:20d8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:20e0::,2a02:20e7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:20f0::,2a02:20f0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:20f8::,2a02:20f8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2100::,2a02:2100:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2108::,2a02:2108:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:2110::,2a02:2110:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2118::,2a02:211f:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:2120::,2a02:2123:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:2140::,2a02:2147:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2148::,2a02:214f:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a02:2150::,2a02:2150:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:2158::,2a02:2158:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:2160::,2a02:2160:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a02:2168::,2a02:216f:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2170::,2a02:2170:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2178::,2a02:217f:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2180::,2a02:2180:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:2188::,2a02:2188:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:2190::,2a02:2190:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:2198::,2a02:2198:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:21a0::,2a02:21a0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:21a8::,2a02:21a8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:21b0::,2a02:21b7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:21b8::,2a02:21b8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:21c0::,2a02:21c0:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a02:21c8::,2a02:21c8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:21d0::,2a02:21d0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:21d8::,2a02:21d8:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:21e0::,2a02:21e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:21e8::,2a02:21e8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:21f0::,2a02:21f0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:21f8::,2a02:21f8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2200::,2a02:2200:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:2208::,2a02:2208:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a02:2210::,2a02:2210:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2218::,2a02:2218:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2220::,2a02:2220:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:2228::,2a02:2228:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2230::,2a02:2230:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a02:2240::,2a02:2240:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2248::,2a02:2248:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a02:2250::,2a02:2250:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2258::,2a02:2258:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2260::,2a02:2260:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2268::,2a02:2268:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2270::,2a02:2270:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:2278::,2a02:2278:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:2280::,2a02:2280:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:2288::,2a02:2288:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2290::,2a02:2297:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a02:2298::,2a02:2298:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a02:22a0::,2a02:22a0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:22a8::,2a02:22a8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:22b0::,2a02:22b0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:22b8::,2a02:22b8:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:22c0::,2a02:22c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:22c8::,2a02:22c8:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:22d0::,2a02:22d0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:22d8::,2a02:22d8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:22e0::,2a02:22e0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:22e8::,2a02:22e8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:22f0::,2a02:22f0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2300::,2a02:2300:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2308::,2a02:2308:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2310::,2a02:2310:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:2318::,2a02:2318::7fff:ffff:ffff:ffff:ffff,IM 2a02:2318:0:8000::,2a02:2318:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2320::,2a02:2320:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:2328::,2a02:2328:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2330::,2a02:2337:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a02:2338::,2a02:233f:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:2340::,2a02:2340:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:2348::,2a02:2348:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:2350::,2a02:2350:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:2358::,2a02:2358:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2360::,2a02:2360:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2368::,2a02:2368:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:2378::,2a02:2378:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:2380::,2a02:2380:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:2388::,2a02:2388:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2390::,2a02:2390:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a02:2398::,2a02:239f:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:23a0::,2a02:23a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:23a8::,2a02:23a8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:23b0::,2a02:23b0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:23b8::,2a02:23b8:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a02:23c0::,2a02:23c0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:23c8::,2a02:23c8:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:23d0::,2a02:23d0:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a02:23d8::,2a02:23d8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:23e0::,2a02:23e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:23e8::,2a02:23e8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:23f0::,2a02:23f0:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a02:23f8::,2a02:23f8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2400::,2a02:2400:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2408::,2a02:2408:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:2410::,2a02:2410:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:2420::,2a02:2420:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:2428::,2a02:2428:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:2430::,2a02:2430:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:2438::,2a02:2438:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2440::,2a02:2440:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2448::,2a02:2448:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:2450::,2a02:2457:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2458::,2a02:2458:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2460::,2a02:2460:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:2468::,2a02:2468:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2470::,2a02:2477:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:2478::,2a02:2480:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2488::,2a02:2488:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2490::,2a02:2490:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:2498::,2a02:2498:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:24a0::,2a02:24a0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:24a8::,2a02:24a8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:24b0::,2a02:24b0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:24b8::,2a02:24bf:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:24c0::,2a02:24c0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:24c8::,2a02:24c8:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a02:24d0::,2a02:24d7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:24d8::,2a02:24d8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:24e0::,2a02:24e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:24e8::,2a02:24e8:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:24f0::,2a02:24f0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:24f8::,2a02:24f8:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:2500::,2a02:2500:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2510::,2a02:2510:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2518::,2a02:2518:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2520::,2a02:2520:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:2528::,2a02:252f:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:2530::,2a02:2530:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:2538::,2a02:2538:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:2540::,2a02:2540:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:2548::,2a02:2548:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2550::,2a02:2550:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2558::,2a02:2558:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a02:2560::,2a02:2560:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2568::,2a02:2568:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2578::,2a02:2578:ffff:ffff:ffff:ffff:ffff:ffff,BH 2a02:2580::,2a02:2587:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:2588::,2a02:2588:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:2590::,2a02:2590:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a02:25a0::,2a02:25a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:25a8::,2a02:25af:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:25b0::,2a02:25b0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:25b8::,2a02:25b8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:25c0::,2a02:25c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:25c8::,2a02:25c8:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:25d0::,2a02:25d0:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a02:25d8::,2a02:25d8:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a02:25e0::,2a02:25e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:25e8::,2a02:25e8:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:25f0::,2a02:25f0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:25f8::,2a02:25f8:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a02:2600::,2a02:2600:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:2608::,2a02:2608:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a02:2610::,2a02:2610:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:2618::,2a02:2618:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2620::,2a02:2620:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2628::,2a02:2628:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:2630::,2a02:2630:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a02:2638::,2a02:2638:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2640::,2a02:2647:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:2648::,2a02:2648:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2650::,2a02:2650:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2658::,2a02:2658:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2660::,2a02:2660:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a02:2668::,2a02:2668:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2670::,2a02:2670:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2678::,2a02:2678:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2680::,2a02:2680:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:2688::,2a02:2688:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2690::,2a02:2690:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:2698::,2a02:2698:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:26a0::,2a02:26a7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:26a8::,2a02:26a8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:26b0::,2a02:26b0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:26b8::,2a02:26b8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:26c0::,2a02:26c0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:26c8::,2a02:26c8:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a02:26d0::,2a02:26d0:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a02:26e0::,2a02:26e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:26e8::,2a02:26e8:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:26f8::,2a02:26ff:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2700::,2a02:2700:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a02:2708::,2a02:2708:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2710::,2a02:2710:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:2718::,2a02:271f:ffff:ffff:ffff:ffff:ffff:ffff,YE 2a02:2720::,2a02:2720:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a02:2728::,2a02:2728:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:2730::,2a02:2730:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:2738::,2a02:2738:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2740::,2a02:2740:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:2748::,2a02:2748:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2750::,2a02:2750:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:2760::,2a02:2760:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2768::,2a02:2768:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2770::,2a02:2770:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2778::,2a02:2778:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2780::,2a02:2780:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:2788::,2a02:2788:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:2790::,2a02:2790:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:2798::,2a02:2798:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:27a0::,2a02:27a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:27a8::,2a02:27af:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:27b0::,2a02:27b0:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a02:27b8::,2a02:27b8:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:27c0::,2a02:27c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:27c8::,2a02:27c8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:27d0::,2a02:27d0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:27d8::,2a02:27d8:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:27e0::,2a02:27e0:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a02:27e8::,2a02:27e8:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:27f0::,2a02:27f0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:27f8::,2a02:27f8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2800::,2a02:2800:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2808::,2a02:2808:1005:ffff:ffff:ffff:ffff:ffff,CZ 2a02:2808:1006::,2a02:2808:1006:ffff:ffff:ffff:ffff:ffff,RU 2a02:2808:1007::,2a02:2808:2800:ffff:ffff:ffff:ffff:ffff,CZ 2a02:2808:2801::,2a02:2808:2801:7fff:ffff:ffff:ffff:ffff,RU 2a02:2808:2801:8000::,2a02:2808:3000:ffff:ffff:ffff:ffff:ffff,CZ 2a02:2808:3001::,2a02:2808:3001:ffff:ffff:ffff:ffff:ffff,RU 2a02:2808:3002::,2a02:2808:5300:ffff:ffff:ffff:ffff:ffff,CZ 2a02:2808:5301::,2a02:2808:5301:ffff:ffff:ffff:ffff:ffff,RU 2a02:2808:5302::,2a02:2808:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:2810::,2a02:2810:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:2818::,2a02:2818:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:2820::,2a02:2820:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:2828::,2a02:2828:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:2830::,2a02:2830:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2838::,2a02:2838:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:2840::,2a02:2840:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2848::,2a02:2848:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2850::,2a02:2850:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2858::,2a02:2858:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2860::,2a02:2867:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:2868::,2a02:2868:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a02:2870::,2a02:2870:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2878::,2a02:2878:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2880::,2a02:2880:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a02:2888::,2a02:2888:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:2890::,2a02:2890:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:2898::,2a02:2898:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:28a0::,2a02:28a0:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a02:28a8::,2a02:28a8:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:28b0::,2a02:28b7:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a02:28b8::,2a02:28bf:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a02:28c0::,2a02:28c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:28c8::,2a02:28c8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:28d0::,2a02:28d0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:28d8::,2a02:28d8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:28e0::,2a02:28e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:28e8::,2a02:28e8:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:28f0::,2a02:28f0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:28f8::,2a02:28f8:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2900::,2a02:2900:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:2908::,2a02:2908:ffff:ffff:ffff:ffff:ffff:ffff,OM 2a02:2910::,2a02:2910:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2918::,2a02:2920:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2928::,2a02:2928:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:2930::,2a02:2930:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:2938::,2a02:2938:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2940::,2a02:2940:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2948::,2a02:2948:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2950::,2a02:2950:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a02:2958::,2a02:2958:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2960::,2a02:2960:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:2968::,2a02:2968:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2970::,2a02:2977:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2978::,2a02:2978:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:2980::,2a02:2980:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2988::,2a02:2988:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2990::,2a02:2990:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2998::,2a02:2998:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:29a0::,2a02:29a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:29a8::,2a02:29b0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:29b8::,2a02:29b8:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:29c0::,2a02:29c0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:29c8::,2a02:29c8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:29d0::,2a02:29d0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:29d8::,2a02:29d8:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:29e0::,2a02:29e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:29e8::,2a02:29ef:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a02:29f0::,2a02:29f0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:29f8::,2a02:29f8:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a02:2a00::,2a02:2a00:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a02:2a08::,2a02:2a08:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:2a10::,2a02:2a10:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2a18::,2a02:2a18:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2a20::,2a02:2a20:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:2a28::,2a02:2a28:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2a30::,2a02:2a37:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:2a38::,2a02:2a38:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2a40::,2a02:2a40:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:2a48::,2a02:2a48:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:2a50::,2a02:2a50:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a02:2a58::,2a02:2a58:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:2a60::,2a02:2a60:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a02:2a68::,2a02:2a68:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:2a70::,2a02:2a70:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a02:2a78::,2a02:2a78:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2a80::,2a02:2a80:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2a88::,2a02:2a88:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:2a90::,2a02:2a90:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:2a98::,2a02:2a98:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a02:2aa0::,2a02:2aa0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:2aa8::,2a02:2aa8:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2ab0::,2a02:2ab0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2ab8::,2a02:2ab8:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2ac0::,2a02:2ac0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:2ac8::,2a02:2ac8:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:2ad0::,2a02:2ad0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2ad8::,2a02:2ad8:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:2ae0::,2a02:2ae0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:2ae8::,2a02:2ae8:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:2af0::,2a02:2af0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:2af8::,2a02:2af8:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:2b00::,2a02:2b00:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:2b08::,2a02:2b08:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2b10::,2a02:2b10:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:2b18::,2a02:2b18:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:2b20::,2a02:2b20:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:2b28::,2a02:2b28:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:2b30::,2a02:2b30:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:2b38::,2a02:2b38:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2b40::,2a02:2b47:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a02:2b48::,2a02:2b4f:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:2b50::,2a02:2b50:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:2b58::,2a02:2b58:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:2b60::,2a02:2b60:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:2b80::,2a02:2b80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2b88::,2a02:2b88:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:2b90::,2a02:2b97:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2b98::,2a02:2b98:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:2ba0::,2a02:2ba0:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a02:2ba8::,2a02:2ba8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2bb0::,2a02:2bb0:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:2bb8::,2a02:2bb8:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2bc0::,2a02:2bc0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2be0::,2a02:2be0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2c00::,2a02:2c07:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:2c40::,2a02:2c40:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:2c60::,2a02:2c60:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2c80::,2a02:2c80:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:2cc0::,2a02:2cc0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:2ce0::,2a02:2ce0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:2d00::,2a02:2d00:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:2d20::,2a02:2d20:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:2d40::,2a02:2d40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2d60::,2a02:2d60:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:2d80::,2a02:2d80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2da0::,2a02:2da0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:2dc0::,2a02:2dc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2de0::,2a02:2de0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:2e00::,2a02:2e1f:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:2f00::,2a02:2f0b:804d:3fff:ffff:ffff:ffff:ffff,RO 2a02:2f0b:804d:4000::,2a02:2f0b:804d:7fff:ffff:ffff:ffff:ffff,FR 2a02:2f0b:804d:8000::,2a02:2f0f:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a02:2f80::,2a02:2f80:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:2fc0::,2a02:2fc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:2fe0::,2a02:2fe0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:3000::,2a02:31ff:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:4000::,2a02:4000:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:4020::,2a02:4020:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:4040::,2a02:4040:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:4060::,2a02:4067:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:4080::,2a02:4080:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a02:40a0::,2a02:40a0:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a02:40c0::,2a02:40c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:40e0::,2a02:40e0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:4100::,2a02:4100:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:4120::,2a02:4120:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:4140::,2a02:4140:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:4160::,2a02:4160:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:4180::,2a02:4180:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a02:41a0::,2a02:41a7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:41c0::,2a02:41c0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:41e0::,2a02:41e0:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a02:4200::,2a02:4200:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:4220::,2a02:4220:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:4240::,2a02:4240:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:4260::,2a02:4260:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:4280::,2a02:4280:ffff:ffff:ffff:ffff:ffff:ffff,ME 2a02:42a0::,2a02:42a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:42c0::,2a02:42c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:42e0::,2a02:42e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:4300::,2a02:4300:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:4320::,2a02:4320:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a02:4340::,2a02:4340:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:4360::,2a02:4360:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:4380::,2a02:4380:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a02:43a0::,2a02:43a0:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a02:43e0::,2a02:43e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:4400::,2a02:4400:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a02:4420::,2a02:4420:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:4440::,2a02:4440:ffff:ffff:ffff:ffff:ffff:ffff,QA 2a02:4460::,2a02:4460:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:4480::,2a02:4480:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:44a0::,2a02:44a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:44c0::,2a02:44c0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:44e0::,2a02:44e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:4500::,2a02:4500:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:4520::,2a02:4520:ffff:ffff:ffff:ffff:ffff:ffff,SY 2a02:4540::,2a02:4540:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:4560::,2a02:4560:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:4580::,2a02:4580:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:45a0::,2a02:45a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:45c0::,2a02:45c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:45e0::,2a02:45e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:4600::,2a02:4600:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:4620::,2a02:4620:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:4640::,2a02:4640:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:4660::,2a02:4660:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:4680::,2a02:4680:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:46a0::,2a02:46a0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:46c0::,2a02:46c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:46e0::,2a02:46e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:4700::,2a02:4700:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:4720::,2a02:4720:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:4740::,2a02:4740:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:4760::,2a02:4760:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:4780::,2a02:4780:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a02:47a0::,2a02:47a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:47c0::,2a02:47c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:47e0::,2a02:47e7:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:4800::,2a02:4800:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a02:4820::,2a02:4820:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:4840::,2a02:4840:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a02:4860::,2a02:4860:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:4880::,2a02:4880:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:48a0::,2a02:48a0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:48e0::,2a02:48e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:4900::,2a02:4907:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a02:4940::,2a02:4940:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:4960::,2a02:4960:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:4980::,2a02:4980:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:49a0::,2a02:49a0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:49c0::,2a02:49c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:49e0::,2a02:49e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:4a00::,2a02:4a00:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:4a20::,2a02:4a20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:4a40::,2a02:4a40:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:4a60::,2a02:4a60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:4a80::,2a02:4a80:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:4aa0::,2a02:4aa0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:4ac0::,2a02:4ac0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:4ae0::,2a02:4ae0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:4b00::,2a02:4b07:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:4b40::,2a02:4b40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:4b60::,2a02:4b60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:4b80::,2a02:4b80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:4ba0::,2a02:4ba0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a02:4bc0::,2a02:4bc0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:4be0::,2a02:4be0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:4c00::,2a02:4c00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:4c20::,2a02:4c20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:4c40::,2a02:4c47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:4c80::,2a02:4c80:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:4ca0::,2a02:4ca0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:4cc0::,2a02:4cc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:4ce0::,2a02:4ce0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:4d00::,2a02:4d00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:4d20::,2a02:4d20:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:4d40::,2a02:4d40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:4d60::,2a02:4d60:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a02:4d80::,2a02:4d80:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:4da0::,2a02:4da0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:4dc0::,2a02:4dc0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a02:4de0::,2a02:4de0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:4e00::,2a02:4e00:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a02:4e20::,2a02:4e20:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:4e40::,2a02:4e40:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:4e60::,2a02:4e60:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:4e80::,2a02:4e80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:4ea0::,2a02:4ea0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:4ec0::,2a02:4ec0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:4ee0::,2a02:4ee0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:4f00::,2a02:4f00:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:4f20::,2a02:4f20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:4f40::,2a02:4f40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:4f60::,2a02:4f67:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:4fa0::,2a02:4fa0:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a02:4fc0::,2a02:4fc0:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a02:4fe0::,2a02:4fe0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:5000::,2a02:5000:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:5020::,2a02:5020:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:5040::,2a02:5040:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a02:5060::,2a02:5060:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:5080::,2a02:5080:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a02:50a0::,2a02:50a0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:50c0::,2a02:50c7:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a02:50e0::,2a02:50e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:5100::,2a02:5100:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:5120::,2a02:5120:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:5140::,2a02:5140:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:5160::,2a02:5160:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:5180::,2a02:5180:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:51a0::,2a02:51a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:51c0::,2a02:51c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:51e0::,2a02:51e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:5200::,2a02:5200:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:5220::,2a02:5220:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a02:5240::,2a02:5240:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:5260::,2a02:5260:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:5280::,2a02:5280:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:52a0::,2a02:52a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:52c0::,2a02:52c0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:52e0::,2a02:52e0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:5300::,2a02:5300:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:5320::,2a02:5320:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a02:5340::,2a02:5340:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:5360::,2a02:5360:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:5380::,2a02:5380:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:53a0::,2a02:53a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:53c0::,2a02:53c0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:53e0::,2a02:53e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:5400::,2a02:5400:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:5420::,2a02:5420:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:5440::,2a02:5440:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a02:5460::,2a02:5460:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:5480::,2a02:5480:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:54a0::,2a02:54a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:54c0::,2a02:54c0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:54e0::,2a02:54e0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:5500::,2a02:5500:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:5520::,2a02:5520:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:5540::,2a02:5540:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:5560::,2a02:5560:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:5580::,2a02:5580:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a02:55a0::,2a02:55a0:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a02:55c0::,2a02:55c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:55e0::,2a02:55e0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:5600::,2a02:5600:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:5620::,2a02:5620:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:5640::,2a02:5640:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:5660::,2a02:5660:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:5680::,2a02:5680:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:56a0::,2a02:56a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:56c0::,2a02:56c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:56e0::,2a02:56e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:5700::,2a02:5700:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a02:5720::,2a02:5720:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a02:5740::,2a02:5740:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a02:5760::,2a02:5760:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:5780::,2a02:5780:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:57a0::,2a02:57a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:57c0::,2a02:57c0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:57e0::,2a02:57e0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:5800::,2a02:5800:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:5820::,2a02:5820:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:5840::,2a02:5840:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:5860::,2a02:5860:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:5880::,2a02:5880:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:58a0::,2a02:58a0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:58c0::,2a02:58c0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:58e0::,2a02:58e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:5900::,2a02:5900:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:5920::,2a02:5920:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:5940::,2a02:5940:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:5960::,2a02:5960:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a02:5980::,2a02:5980:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:59a0::,2a02:59a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:59c0::,2a02:59c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:59e0::,2a02:59e0:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a02:5a00::,2a02:5a00:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:5a20::,2a02:5a20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:5a40::,2a02:5a40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:5a60::,2a02:5a60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:5a80::,2a02:5a87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:5aa0::,2a02:5aa0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:5ac0::,2a02:5ac0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:5ae0::,2a02:5ae0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:5b00::,2a02:5b00:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:5b20::,2a02:5b20:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:5b40::,2a02:5b40:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:5b60::,2a02:5b60:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a02:5b80::,2a02:5b80:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a02:5ba0::,2a02:5ba0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:5bc0::,2a02:5bc0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:5be0::,2a02:5be0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:5c00::,2a02:5c00:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:5c20::,2a02:5c27:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:5c40::,2a02:5c40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:5c60::,2a02:5c60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:5c80::,2a02:5c80:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:5ca0::,2a02:5ca0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:5cc0::,2a02:5cc0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:5ce0::,2a02:5ce0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:5d00::,2a02:5d01:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:5d20::,2a02:5d20:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:5d40::,2a02:5d47:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:5d60::,2a02:5d60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:5d80::,2a02:5d87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:5da0::,2a02:5da0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:5dc0::,2a02:5dc0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:5de0::,2a02:5de0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:5e00::,2a02:5e00:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:5e20::,2a02:5e20:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:5e40::,2a02:5e40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:5e60::,2a02:5e60:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:5e80::,2a02:5e80:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:5ea0::,2a02:5ea0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:5ec0::,2a02:5ec0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:5ee0::,2a02:5ee0:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a02:5f00::,2a02:5f00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:5f20::,2a02:5f20:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:5f40::,2a02:5f40:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a02:5f60::,2a02:5f60:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:5f80::,2a02:5f80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:5fa0::,2a02:5fa0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:5fc0::,2a02:5fc0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:5fe0::,2a02:5fe0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6000::,2a02:6000:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:6020::,2a02:6027:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a02:6040::,2a02:6040:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:6060::,2a02:6060:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:6080::,2a02:6080:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a02:60a0::,2a02:60a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:60c0::,2a02:60c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:60e0::,2a02:60e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:6100::,2a02:6100:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:6120::,2a02:6120:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:6140::,2a02:6140:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6160::,2a02:6160:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6180::,2a02:6180:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:61a0::,2a02:61a0:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a02:61c0::,2a02:61c0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:61e0::,2a02:61e0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:6200::,2a02:6207:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:6240::,2a02:6240:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:6260::,2a02:6260:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:6280::,2a02:6280:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:62a0::,2a02:62a0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:62c0::,2a02:62c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:62e0::,2a02:62e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:6300::,2a02:6300:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a02:6320::,2a02:6320:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a02:6340::,2a02:6340:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:6360::,2a02:6360:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:6380::,2a02:6380:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a02:63a0::,2a02:63a0:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a02:63c0::,2a02:63c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:63e0::,2a02:63e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:6400::,2a02:6400:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:6420::,2a02:6420:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:6440::,2a02:6440:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:6460::,2a02:6460:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:6480::,2a02:6480:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:64a0::,2a02:64a0:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a02:64c0::,2a02:64c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:64e0::,2a02:64e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6500::,2a02:6500:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:6520::,2a02:6520:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:6540::,2a02:6540:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:6560::,2a02:6560:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:6580::,2a02:6580:ffff:ffff:ffff:ffff:ffff:ffff,US 2a02:65a0::,2a02:65a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:65c0::,2a02:65c0:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a02:65e0::,2a02:65e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:6600::,2a02:6600:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:6620::,2a02:6620:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6640::,2a02:6640:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:6660::,2a02:6660:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6680::,2a02:6680:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a02:66a0::,2a02:66a0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:66c0::,2a02:66c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:66e0::,2a02:66e0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:6700::,2a02:6700:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:6720::,2a02:6720:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a02:6740::,2a02:6740:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:6760::,2a02:6760:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:6780::,2a02:6780:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:67a0::,2a02:67a0:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a02:67c0::,2a02:67c0:ffff:ffff:ffff:ffff:ffff:ffff,SY 2a02:67e0::,2a02:67e0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:6800::,2a02:6800:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a02:6820::,2a02:6820:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a02:6840::,2a02:6840:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:6860::,2a02:6860:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6880::,2a02:6880:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:68a0::,2a02:68a0:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a02:68c0::,2a02:68c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:68e0::,2a02:68e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:6900::,2a02:6900:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:6920::,2a02:6920:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6940::,2a02:6940:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:6960::,2a02:6960:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:6980::,2a02:6980:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:69a0::,2a02:69a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:69c0::,2a02:69c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:69e0::,2a02:69e7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:6a00::,2a02:6a00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:6a20::,2a02:6a20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:6a40::,2a02:6a40:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:6a60::,2a02:6a60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:6a80::,2a02:6a80:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a02:6aa0::,2a02:6aa0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:6ac0::,2a02:6ac0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:6ae0::,2a02:6ae0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:6b00::,2a02:6b00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:6b20::,2a02:6b20:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:6b40::,2a02:6b40:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:6b60::,2a02:6b60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:6b80::,2a02:6b80:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a02:6ba0::,2a02:6ba0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6bc0::,2a02:6bc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6be0::,2a02:6be0:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a02:6c00::,2a02:6c00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:6c20::,2a02:6c20:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:6c40::,2a02:6c40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:6c60::,2a02:6c60:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:6c80::,2a02:6c80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6ca0::,2a02:6ca7:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a02:6cc0::,2a02:6cc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6ce0::,2a02:6ce0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:6d00::,2a02:6d00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6d20::,2a02:6d20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:6d40::,2a02:6d40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:6d60::,2a02:6d60:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a02:6d80::,2a02:6d80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6da0::,2a02:6da0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:6dc0::,2a02:6dc0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:6de0::,2a02:6de0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:6e00:1::,2a02:6e00:1:7fff:ffff:ffff:ffff:ffff,RO 2a02:6e20::,2a02:6e20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:6e40::,2a02:6e40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:6e60::,2a02:6e60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:6ea0::,2a02:6ea0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:6ec0::,2a02:6ec0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:6ee0::,2a02:6ee0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:6f00::,2a02:6f00:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a02:6f20::,2a02:6f20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:6f40::,2a02:6f40:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a02:6f60::,2a02:6f60:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:6f80::,2a02:6f80:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:6fa0::,2a02:6fa0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:6fc0::,2a02:6fc0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:6fe0::,2a02:6fe0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:7000::,2a02:7007:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a02:7040::,2a02:7040:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:7060::,2a02:7060:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:7080::,2a02:7080:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:70a0::,2a02:70a0:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a02:70c0::,2a02:70c0:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a02:70e0::,2a02:70e0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:7100::,2a02:7100:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:7120::,2a02:7120:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:7140::,2a02:7140:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:7160::,2a02:7160:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:7180::,2a02:7180:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:71a0::,2a02:71a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:71c0::,2a02:71c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:71e0::,2a02:71e0:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a02:7200::,2a02:7200:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:7220::,2a02:7220:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:7240::,2a02:7240:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:7260::,2a02:7260:ffff:ffff:ffff:ffff:ffff:ffff,IM 2a02:7280::,2a02:7280:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:72a0::,2a02:72a7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:72c0::,2a02:72c0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:72e0::,2a02:72e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:7300::,2a02:7300:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a02:7320::,2a02:7320:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:7340::,2a02:7340:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:7360::,2a02:7360:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:7380::,2a02:7380:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:73a0::,2a02:73a0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:73c0::,2a02:73c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:73e0::,2a02:73e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:7400::,2a02:7400:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:7420::,2a02:7420:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:7440::,2a02:7440:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:7460::,2a02:7460:ffff:ffff:ffff:ffff:ffff:ffff,MQ 2a02:7480::,2a02:7480:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:74a0::,2a02:74a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:74c0::,2a02:74c0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:74e0::,2a02:74e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:7500::,2a02:7500:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a02:7520::,2a02:7520:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:7540::,2a02:7540:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:7560::,2a02:7560:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:7580::,2a02:7580:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:75a0::,2a02:75a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:75c0::,2a02:75c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:75e0::,2a02:75e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:7600::,2a02:7600:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:7620::,2a02:7620:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:7640::,2a02:7640:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:7660::,2a02:7660:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:7680::,2a02:7680:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:76a0::,2a02:76a0:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a02:76c0::,2a02:76c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:76e0::,2a02:76e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:7700::,2a02:7700:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:7720::,2a02:7720:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:7740::,2a02:7740:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a02:7760::,2a02:7760:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:7780::,2a02:7780:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a02:77a0::,2a02:77a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:77c0::,2a02:77c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:77e0::,2a02:77e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:7800::,2a02:7800:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:7820::,2a02:7820:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:7840::,2a02:7840:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:7860::,2a02:7867:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:7880::,2a02:7880:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:78a0::,2a02:78a7:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:78c0::,2a02:78c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:78e0::,2a02:78e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:7900::,2a02:7900:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a02:7920::,2a02:7920:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:7940::,2a02:7940:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:7960::,2a02:7960:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:7980::,2a02:7980:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a02:79a0::,2a02:79a0:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a02:79c0::,2a02:79c0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:79e0::,2a02:79e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:7a00::,2a02:7a00:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:7a20::,2a02:7a20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:7a40::,2a02:7a40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:7a60::,2a02:7a60:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:7a80::,2a02:7a80:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:7aa0::,2a02:7aa0:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a02:7ac0::,2a02:7ac0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:7ae0::,2a02:7ae0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:7b00::,2a02:7b07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:7b20::,2a02:7b20:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:7b40::,2a02:7b40:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a02:7b60::,2a02:7b60:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a02:7b80::,2a02:7b80:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:7ba0::,2a02:7ba0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:7bc0::,2a02:7bc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:7be0::,2a02:7be0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:7c00::,2a02:7c00:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:7c20::,2a02:7c20:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:7c40::,2a02:7c40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:7c60::,2a02:7c60:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:7c80::,2a02:7c80:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:7ca0::,2a02:7ca0:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a02:7ce0::,2a02:7ce0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:7d00::,2a02:7d00:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:7d20::,2a02:7d20:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:7d40::,2a02:7d40:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:7d60::,2a02:7d60:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:7d80::,2a02:7d80:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:7da0::,2a02:7da0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:7dc0::,2a02:7dc0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:7de0::,2a02:7de0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:7e00::,2a02:7e00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:7e20::,2a02:7e20:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:7e40::,2a02:7e40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:7e60::,2a02:7e60:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:7e80::,2a02:7e80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:7ea0::,2a02:7ea0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:7ee0::,2a02:7ee0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:7f00::,2a02:7f00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:7f20::,2a02:7f20:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:7f40::,2a02:7f40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:7f60::,2a02:7f60:ffff:ffff:ffff:ffff:ffff:ffff,SM 2a02:7f80::,2a02:7f80:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:7fa0::,2a02:7fa0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:7fc0::,2a02:7fc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:7fe0::,2a02:7fe0:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a02:8000::,2a02:8001:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:8010::,2a02:8017:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:8020::,2a02:8023:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:8040::,2a02:8043:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:8060::,2a02:8061:ffff:ffff:ffff:ffff:ffff:ffff,AD 2a02:8070::,2a02:8070:e289:ffff:ffff:ffff:ffff:ffff,DE 2a02:8070:e28a::,2a02:8070:e28a:7fff:ffff:ffff:ffff:ffff,AT 2a02:8070:e28a:8000::,2a02:8071:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:8080::,2a02:8087:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:80c0::,2a02:80c3:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:80e0::,2a02:80e3:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a02:8100::,2a02:811f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:8200::,2a02:821f:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:8300::,2a02:830f:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:8380::,2a02:838f:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:8400::,2a02:8434:2543:ffff:ffff:ffff:ffff:ffff,FR 2a02:8434:2544::,2a02:8434:2544:7fff:ffff:ffff:ffff:ffff,ES 2a02:8434:2544:8000::,2a02:847f:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:8800::,2a02:88ff:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:9000::,2a02:91ff:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:a000::,2a02:a03f:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:a200::,2a02:a21f:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:a300::,2a02:a31f:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:a400::,2a02:a44f:7982:ffff:ffff:ffff:ffff:ffff,NL 2a02:a44f:7983::,2a02:a44f:7983:7fff:ffff:ffff:ffff:ffff,DE 2a02:a44f:7983:8000::,2a02:a47f:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:a800::,2a02:a83f:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:aa00::,2a02:aa1f:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:ab00::,2a02:ab07:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a02:ab40::,2a02:ab47:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:ab80::,2a02:ab8f:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a02:ac00::,2a02:ac07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:ac40::,2a02:ac47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:ac80::,2a02:ac87:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:acc0::,2a02:acc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:ad00::,2a02:ad07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:ad40::,2a02:ad47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:ad80::,2a02:ad87:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:adc0::,2a02:adc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:ae00::,2a02:ae07:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a02:ae40::,2a02:ae47:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a02:ae80::,2a02:ae87:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:aec0::,2a02:aec7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:af00::,2a02:af07:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:af40::,2a02:af47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:af80::,2a02:af87:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:afc0::,2a02:afc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:b000::,2a02:b1ff:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:c000::,2a02:c007:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:c040::,2a02:c047:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a02:c080::,2a02:c087:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:c0c0::,2a02:c0c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:c100::,2a02:c107:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:c140::,2a02:c147:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:c180::,2a02:c187:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:c1c0::,2a02:c1c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:c200::,2a02:c207:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:c280::,2a02:c287:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:c2c0::,2a02:c2c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:c300::,2a02:c307:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:c340::,2a02:c347:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:c380::,2a02:c383:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:c390::,2a02:c397:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:c3a0::,2a02:c3a3:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:c3c0::,2a02:c3c7:ffff:ffff:ffff:ffff:ffff:ffff,BH 2a02:c400::,2a02:c407:ffff:ffff:ffff:ffff:ffff:ffff,BH 2a02:c440::,2a02:c447:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:c480::,2a02:c487:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:c4c0::,2a02:c4c7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:c500::,2a02:c507:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a02:c540::,2a02:c547:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:c580::,2a02:c587:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:c5c0::,2a02:c5c7:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:c600::,2a02:c600:ff:ffff:ffff:ffff:ffff:ffff,CH 2a02:c600:100::,2a02:c600:100:7fff:ffff:ffff:ffff:ffff,CZ 2a02:c600:100:8000::,2a02:c600:100:ffff:ffff:ffff:ffff:ffff,CH 2a02:c600:101::,2a02:c600:101:7fff:ffff:ffff:ffff:ffff,CZ 2a02:c600:101:8000::,2a02:c607:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:c640::,2a02:c647:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a02:c680::,2a02:c681:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:c690::,2a02:c691:ffff:ffff:ffff:ffff:ffff:ffff,AD 2a02:c6a0::,2a02:c6a3:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:c6c0::,2a02:c6c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:c700::,2a02:c707:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:c740::,2a02:c747:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:c780::,2a02:c787:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a02:c7c0::,2a02:c7c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:c800::,2a02:c807:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:c840::,2a02:c847:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:c880::,2a02:c887:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:c8c0::,2a02:c8c7:ffff:ffff:ffff:ffff:ffff:ffff,UZ 2a02:c900::,2a02:c907:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:c940::,2a02:c947:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:c980::,2a02:c987:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:c9c0::,2a02:c9c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:ca00::,2a02:ca07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:ca40::,2a02:ca47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:ca80::,2a02:ca87:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:cac0::,2a02:cac7:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:cb00::,2a02:cb07:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:cb40::,2a02:cb47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:cb80::,2a02:cb87:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a02:cbc0::,2a02:cbc3:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a02:cbe0::,2a02:cbe1:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:cbf0::,2a02:cbf1:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:cc00::,2a02:cc07:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a02:cc40::,2a02:cc47:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:cc80::,2a02:cc87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:ccc0::,2a02:ccc7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:cd00::,2a02:cd07:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:cd40::,2a02:cd47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:cd80::,2a02:cd87:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:cdc0::,2a02:cdc7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:ce00::,2a02:ce07:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a02:ce40::,2a02:ce47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:ce80::,2a02:ce87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:cec0::,2a02:cec3:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:cee0::,2a02:cee3:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:cf00::,2a02:cf07:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:cf40::,2a02:cf47:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:cf80::,2a02:cf87:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a02:cfc0::,2a02:cfc7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:d000::,2a02:d007:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:d040::,2a02:d047:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:d080::,2a02:d087:ffff:ffff:ffff:ffff:ffff:ffff,BH 2a02:d0c0::,2a02:d0c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:d100::,2a02:d107:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:d140::,2a02:d147:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:d180::,2a02:d187:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:d1c0::,2a02:d1c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:d200::,2a02:d207:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:d240::,2a02:d247:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a02:d280::,2a02:d287:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:d2c0::,2a02:d2c7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:d300::,2a02:d307:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:d340::,2a02:d347:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:d380::,2a02:d387:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:d3c0::,2a02:d3c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:d400::,2a02:d407:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a02:d440::,2a02:d447:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:d480::,2a02:d487:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:d4c0::,2a02:d4c3:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a02:d4e0::,2a02:d4e3:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:d500::,2a02:d507:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:d540::,2a02:d547:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:d580::,2a02:d587:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:d5c0::,2a02:d5c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:d600::,2a02:d607:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:d640::,2a02:d647:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:d680::,2a02:d683:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:d6a0::,2a02:d6a3:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:d6c0::,2a02:d6c7:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a02:d700::,2a02:d707:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:d740::,2a02:d747:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:d780::,2a02:d787:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:d7c0::,2a02:d7c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:d800::,2a02:d807:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a02:d840::,2a02:d847:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:d8c0::,2a02:d8c7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:d900::,2a02:d907:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:d940::,2a02:d947:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a02:d980::,2a02:d987:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:d9c0::,2a02:d9c7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:da00::,2a02:da07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:da40::,2a02:da47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:da80::,2a02:da87:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:dac0::,2a02:dac7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:db00::,2a02:db07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:db40::,2a02:db47:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a02:db80::,2a02:db87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:dbc0::,2a02:dbc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:dc00::,2a02:dc07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:dc40::,2a02:dc47:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:dc80::,2a02:dc87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:dcc0::,2a02:dcc7:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:dd00::,2a02:dd07:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a02:dd40::,2a02:dd47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:dd80::,2a02:dd87:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:ddc0::,2a02:ddc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:de00::,2a02:de07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:de40::,2a02:de47:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a02:de80::,2a02:de87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:dec0::,2a02:dec7:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a02:df00::,2a02:df07:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:df40::,2a02:df47:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:df80::,2a02:df87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:dfc0::,2a02:dfc7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:e000::,2a02:e007:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:e040::,2a02:e047:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:e080::,2a02:e087:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a02:e0c0::,2a02:e0c7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a02:e100::,2a02:e107:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:e140::,2a02:e147:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:e180::,2a02:e187:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:e1c0::,2a02:e1c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:e200::,2a02:e203:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:e220::,2a02:e223:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a02:e240::,2a02:e247:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:e280::,2a02:e287:ffff:ffff:ffff:ffff:ffff:ffff,YE 2a02:e2c0::,2a02:e2c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:e300::,2a02:e307:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a02:e340::,2a02:e347:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:e380::,2a02:e387:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:e3c0::,2a02:e3c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:e400::,2a02:e407:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:e440::,2a02:e447:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:e480::,2a02:e487:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:e4c0::,2a02:e4c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:e500::,2a02:e507:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:e540::,2a02:e547:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a02:e580::,2a02:e587:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:e5c0::,2a02:e5c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:e600::,2a02:e603:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:e620::,2a02:e623:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:e640::,2a02:e647:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:e680::,2a02:e687:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a02:e6c0::,2a02:e6c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:e700::,2a02:e707:ffff:ffff:ffff:ffff:ffff:ffff,LY 2a02:e740::,2a02:e747:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:e780::,2a02:e787:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:e7c0::,2a02:e7c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:e800::,2a02:e807:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:e840::,2a02:e847:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:e880::,2a02:e887:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:e8c0::,2a02:e8c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:e900::,2a02:e907:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a02:e940::,2a02:e947:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:e980::,2a02:e987:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a02:e9c0::,2a02:e9c7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:ea00::,2a02:ea07:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a02:ea40::,2a02:ea47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:ea80::,2a02:ea87:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:eac0::,2a02:eac7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:eb00::,2a02:eb07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:eb40::,2a02:eb47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:eb80::,2a02:eb87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:ebc0::,2a02:ebc7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:ec00::,2a02:ec07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:ec40::,2a02:ec47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:ec80::,2a02:ec87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:ecc0::,2a02:ecc7:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a02:ed00::,2a02:ed07:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:ed40::,2a02:ed47:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:ed80::,2a02:ed87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:edc0::,2a02:edc7:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a02:ee00::,2a02:ee07:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:ee40::,2a02:ee47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:ee80::,2a02:ee87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:eec0::,2a02:eec7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:ef00::,2a02:ef07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:ef40::,2a02:ef47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:ef80::,2a02:ef87:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:efc0::,2a02:efc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:f000::,2a02:f007:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a02:f040::,2a02:f047:ffff:ffff:ffff:ffff:ffff:ffff,BH 2a02:f080::,2a02:f083:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:f0a0::,2a02:f0a3:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:f0c0::,2a02:f0c7:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a02:f100::,2a02:f107:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:f140::,2a02:f147:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:f180::,2a02:f181:2fff:ffff:ffff:ffff:ffff:ffff,FR 2a02:f181:3000::,2a02:f181:3000:7fff:ffff:ffff:ffff:ffff,RO 2a02:f181:3000:8000::,2a02:f187:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:f1c0::,2a02:f1c7:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a02:f200::,2a02:f207:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:f240::,2a02:f247:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:f280::,2a02:f287:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a02:f2c0::,2a02:f2c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:f300::,2a02:f307:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:f340::,2a02:f347:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:f380::,2a02:f387:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:f3c0::,2a02:f3c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:f400::,2a02:f407:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a02:f440::,2a02:f447:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:f480::,2a02:f487:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:f4c0::,2a02:f4c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a02:f500::,2a02:f507:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:f540::,2a02:f543:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:f560::,2a02:f563:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:f580::,2a02:f587:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a02:f5c0::,2a02:f5c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:f600::,2a02:f607:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:f640::,2a02:f647:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:f680::,2a02:f687:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:f6c0::,2a02:f6c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:f700::,2a02:f707:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a02:f740::,2a02:f747:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:f780::,2a02:f787:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:f7c0::,2a02:f7c7:ffff:ffff:ffff:ffff:ffff:ffff,UZ 2a02:f800::,2a02:f807:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a02:f840::,2a02:f847:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:f880::,2a02:f887:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:f8c0::,2a02:f8c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:f900::,2a02:f907:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a02:f940::,2a02:f947:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a02:f980::,2a02:f987:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:f9c0::,2a02:f9c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:fa00::,2a02:fa07:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a02:fa40::,2a02:fa47:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a02:fb00::,2a02:fb07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:fb40::,2a02:fb47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:fb80::,2a02:fb87:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:fbc0::,2a02:fbc7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a02:fc00::,2a02:fc07:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a02:fc40::,2a02:fc47:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:fc80::,2a02:fc87:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a02:fcc0::,2a02:fcc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:fd00::,2a02:fd07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:fd40::,2a02:fd47:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:fd80::,2a02:fd87:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a02:fdc0::,2a02:fdc7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a02:fe00::,2a02:fe07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a02:fe40::,2a02:fe47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:fe80::,2a02:fe87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:fec0::,2a02:fec7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a02:ff00::,2a02:ff07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a02:ff40::,2a02:ff47:ffff:ffff:ffff:ffff:ffff:ffff,IM 2a02:ff80::,2a02:ff87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a02:ffc0::,2a02:ffc7:ffff:ffff:ffff:ffff:ffff:ffff,GI 2a03::,2a03::ffff:ffff:ffff:ffff:ffff:ffff,PT 2a03:20::,2a03:20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:40::,2a03:40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:60::,2a03:60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:80::,2a03:80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:a0::,2a03:a0:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a03:c0::,2a03:c0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:e0::,2a03:e0:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a03:100::,2a03:100:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:120::,2a03:120:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:140::,2a03:140:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:160::,2a03:160:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:180::,2a03:180:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a03:1a0::,2a03:1a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:1c0::,2a03:1c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:1e0::,2a03:1e0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:200::,2a03:200:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:220::,2a03:220:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:240::,2a03:247:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:280::,2a03:280:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a03:2a0::,2a03:2a0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:2c0::,2a03:2c0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a03:2e0::,2a03:2e0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:300::,2a03:300:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:320::,2a03:320:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a03:340::,2a03:340:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:360::,2a03:360:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:380::,2a03:380:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:3a0::,2a03:3a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:3c0::,2a03:3c0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:3e0::,2a03:3e0:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a03:400::,2a03:407:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:420::,2a03:420:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:440::,2a03:440:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:460::,2a03:460:ffff:ffff:ffff:ffff:ffff:ffff,US 2a03:480::,2a03:480:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:4a0::,2a03:4a0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:4c0::,2a03:4c0:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a03:4e0::,2a03:4e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:500::,2a03:500:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:520::,2a03:527:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:540::,2a03:540:ffff:ffff:ffff:ffff:ffff:ffff,UZ 2a03:560::,2a03:560:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:580::,2a03:580:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:5a0::,2a03:5a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:5c0::,2a03:5c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:5e0::,2a03:5e0:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a03:600::,2a03:600:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:620::,2a03:620:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a03:640::,2a03:640:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:660::,2a03:660:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:680::,2a03:680:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:6a0::,2a03:6a0:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a03:6c0::,2a03:6c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:6e0::,2a03:6e0:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a03:700::,2a03:700:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:720::,2a03:720:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:740::,2a03:740:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:760::,2a03:760:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:780::,2a03:780:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:7a0::,2a03:7a0:ffff:ffff:ffff:ffff:ffff:ffff,ME 2a03:7c0::,2a03:7c0:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a03:7e0::,2a03:7e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:800::,2a03:807:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:820::,2a03:820:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:840::,2a03:840:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:860::,2a03:860:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:880::,2a03:880:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:8a0::,2a03:8a0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:8c0::,2a03:8c0:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a03:8e0::,2a03:8e0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:900::,2a03:900:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:920::,2a03:920:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:940::,2a03:940:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:960::,2a03:960:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:980::,2a03:980:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a03:9a0::,2a03:9a0:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a03:9c0::,2a03:9c0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:9e0::,2a03:9e0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a03:a00::,2a03:a00:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:a20::,2a03:a20:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:a40::,2a03:a40:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:a60::,2a03:a60:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:a80::,2a03:a80:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a03:aa0::,2a03:aa0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:ac0::,2a03:ac0:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a03:ae0::,2a03:ae0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:b00::,2a03:b00:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:b40::,2a03:b40:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:b60::,2a03:b60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:b80::,2a03:b80:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:ba0::,2a03:ba0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:bc0::,2a03:bc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:c00::,2a03:c00:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:c20::,2a03:c20:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:c40::,2a03:c40:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a03:c60::,2a03:c60:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:c80::,2a03:c80:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:ca0::,2a03:ca0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:cc0::,2a03:cc0:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a03:ce0::,2a03:ce0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:d00::,2a03:d00:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:d20::,2a03:d20:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:d40::,2a03:d40:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:d60::,2a03:d60:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:d80::,2a03:d80:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:da0::,2a03:da0:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a03:dc0::,2a03:dc0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:de0::,2a03:de0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:e00::,2a03:e00:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:e20::,2a03:e20:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:e40::,2a03:e40:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a03:e60::,2a03:e60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:e80::,2a03:e80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:ea0::,2a03:ea0:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a03:ec0::,2a03:ec0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:ee0::,2a03:ee0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:f00::,2a03:f07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:f40::,2a03:f40:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:f60::,2a03:f60:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:f80::,2a03:f80:43:ffff:ffff:ffff:ffff:ffff,AT 2a03:f80:44::,2a03:f80:44:ffff:ffff:ffff:ffff:ffff,IM 2a03:f80:45::,2a03:f80:47:ffff:ffff:ffff:ffff:ffff,AT 2a03:f80:48::,2a03:f80:48:7fff:ffff:ffff:ffff:ffff,PL 2a03:f80:48:8000::,2a03:f80:55:ffff:ffff:ffff:ffff:ffff,AT 2a03:f80:56::,2a03:f80:56:ffff:ffff:ffff:ffff:ffff,CL 2a03:f80:57::,2a03:f80:353:ffff:ffff:ffff:ffff:ffff,AT 2a03:f80:354::,2a03:f80:354:ffff:ffff:ffff:ffff:ffff,IS 2a03:f80:355::,2a03:f80:851:ffff:ffff:ffff:ffff:ffff,AT 2a03:f80:852::,2a03:f80:852:7fff:ffff:ffff:ffff:ffff,HK 2a03:f80:852:8000::,2a03:f87:7:ffff:ffff:ffff:ffff:ffff,AT 2a03:f87:8::,2a03:f87:8:7fff:ffff:ffff:ffff:ffff,SG 2a03:f87:8:8000::,2a03:f87:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:fc0::,2a03:fc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:fe0::,2a03:fe0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a03:1000::,2a03:1000:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:1020::,2a03:1020:ffff:ffff:ffff:ffff:ffff:ffff,UZ 2a03:1040::,2a03:1040:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:1060::,2a03:1060:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:1080::,2a03:1080:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a03:10a0::,2a03:10a0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:10c0::,2a03:10c3:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:10e0::,2a03:10e0:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a03:1100::,2a03:1100:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:1120::,2a03:1120:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:1140::,2a03:1140:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:1160::,2a03:1160:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:1180::,2a03:1180:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:11a0::,2a03:11a0:ffff:ffff:ffff:ffff:ffff:ffff,OM 2a03:11c0::,2a03:11c0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:11e0::,2a03:11e0:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a03:1200::,2a03:1200:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:1220::,2a03:1220:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:1240::,2a03:1240:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:1260::,2a03:1260:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:1280::,2a03:1280:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:12a0::,2a03:12a0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:12c0::,2a03:12c0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:12e0::,2a03:12e0:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a03:1300::,2a03:1300:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a03:1320::,2a03:1320:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:1340::,2a03:1340:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:1360::,2a03:1360:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:1380::,2a03:1380:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:13a0::,2a03:13a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:13c0::,2a03:13c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:13e0::,2a03:13e0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:1400::,2a03:1400:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:1420::,2a03:1420:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:1440::,2a03:1440:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:1460::,2a03:1460:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:1480::,2a03:1480:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:14a0::,2a03:14a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:14c0::,2a03:14c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:14e0::,2a03:14e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:1500::,2a03:1500:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:1520::,2a03:1520:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:1540::,2a03:1540:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:1560::,2a03:1560:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a03:1580::,2a03:1580:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:15a0::,2a03:15a0:ffff:ffff:ffff:ffff:ffff:ffff,HK 2a03:15c0::,2a03:15c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:15e0::,2a03:15e0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:1600::,2a03:1600:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:1620::,2a03:1620:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:1640::,2a03:1640:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:1660::,2a03:1660:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a03:1680::,2a03:1680:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:16a0::,2a03:16a0:ffff:ffff:ffff:ffff:ffff:ffff,ME 2a03:16c0::,2a03:16c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:16e0::,2a03:16e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:1700::,2a03:1707:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:1740::,2a03:1740:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:1760::,2a03:1760:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:1780::,2a03:1780:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:17a0::,2a03:17a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:17c0::,2a03:17c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:17e0::,2a03:17e0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:1800::,2a03:1800:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:1820::,2a03:1820:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:1840::,2a03:1840:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:1860::,2a03:1860:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:1880::,2a03:1880:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:18a0::,2a03:18a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:18c0::,2a03:18c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:18e0::,2a03:18e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:1900::,2a03:1900:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a03:1920::,2a03:1920:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:1940::,2a03:1940:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:1960::,2a03:1960:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a03:1980::,2a03:1987:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:19a0::,2a03:19a0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:19c0::,2a03:19c0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:19e0::,2a03:19e0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:1a00::,2a03:1a00:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:1a20::,2a03:1a20:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:1a40::,2a03:1a40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:1a60::,2a03:1a60:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:1a80::,2a03:1a80:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:1aa0::,2a03:1aa0:ffff:ffff:ffff:ffff:ffff:ffff,CA 2a03:1ac0::,2a03:1ac0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:1ae0::,2a03:1ae0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:1b00::,2a03:1b00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:1b20::,2a03:1b20:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:1b40::,2a03:1b40:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a03:1b60::,2a03:1b60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:1b80::,2a03:1b87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:1ba0::,2a03:1ba0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:1bc0::,2a03:1bc0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:1be0::,2a03:1be0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:1c00::,2a03:1c00:ffff:ffff:ffff:ffff:ffff:ffff,BH 2a03:1c20::,2a03:1c20:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:1c40::,2a03:1c40:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:1c60::,2a03:1c60:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:1c80::,2a03:1c80:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:1ca0::,2a03:1ca0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:1cc0::,2a03:1cc0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:1ce0::,2a03:1ce0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:1d00::,2a03:1d00:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:1d20::,2a03:1d20:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:1d40::,2a03:1d40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:1d60::,2a03:1d60:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:1d80::,2a03:1d80:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a03:1da0::,2a03:1da0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:1dc0::,2a03:1dc0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:1de0::,2a03:1de0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:1e00::,2a03:1e03:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:1e20::,2a03:1e20:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:1e40::,2a03:1e40:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:1e60::,2a03:1e60:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:1e80::,2a03:1e87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:1ea0::,2a03:1ea0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:1ec0::,2a03:1ec0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a03:1ee0::,2a03:1ee0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:1f00::,2a03:1f00:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:1f20::,2a03:1f20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:1f40::,2a03:1f40:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a03:1f60::,2a03:1f60:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:1f80::,2a03:1f80:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:1fa0::,2a03:1fa0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:1fc0::,2a03:1fc0:ffff:ffff:ffff:ffff:ffff:ffff,US 2a03:1fe0::,2a03:1fe0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:2000::,2a03:2000:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:2020::,2a03:2020:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:2040::,2a03:2047:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:2060::,2a03:2060:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:2080::,2a03:2080:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:20a0::,2a03:20a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:20c0::,2a03:20c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:20e0::,2a03:20e0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:2100::,2a03:2100:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:2120::,2a03:2120:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:2140::,2a03:2140:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:2160::,2a03:2160:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:2180::,2a03:2180:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:21a0::,2a03:21a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:21c0::,2a03:21c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:21e0::,2a03:21e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:2200::,2a03:2200:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:2220::,2a03:2220:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:2240::,2a03:2240:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a03:2260::,2a03:2267:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:2280::,2a03:2280:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:22a0::,2a03:22a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:22c0::,2a03:22c0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:22e0::,2a03:22e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:2300::,2a03:2307:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a03:2320::,2a03:2320:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:2340::,2a03:2340:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:2360::,2a03:2360:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:2380::,2a03:2380:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:23a0::,2a03:23a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:23c0::,2a03:23c0:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a03:23e0::,2a03:23e0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:2400::,2a03:2400:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:2420::,2a03:2420:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:2440::,2a03:2440:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:2460::,2a03:2460:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:2480::,2a03:2480:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:24a0::,2a03:24a0:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a03:24c0::,2a03:24c0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:24e0::,2a03:24e0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:2500::,2a03:2500:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:2520::,2a03:2520:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:2540::,2a03:2540:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:2560::,2a03:2560:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a03:2580::,2a03:2580:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:25a0::,2a03:25a0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:25e0::,2a03:25e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:2600::,2a03:2600:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:2620::,2a03:2620:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:2640::,2a03:2640:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:2660::,2a03:2660:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a03:2680::,2a03:2680:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:26a0::,2a03:26a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:26e0::,2a03:26e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:2700::,2a03:2700:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:2720::,2a03:2720:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:2740::,2a03:2740:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:2760::,2a03:2760:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a03:2780::,2a03:2780:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:27a0::,2a03:27a0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:27c0::,2a03:27c0:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a03:27e0::,2a03:27e0:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a03:2800::,2a03:2800:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:2820::,2a03:2820:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a03:2840::,2a03:2840:ffff:ffff:ffff:ffff:ffff:ffff,US 2a03:2860::,2a03:2860:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:2880::,2a03:2880:10:ffff:ffff:ffff:ffff:ffff,IE 2a03:2880:11::,2a03:2880:11:ffff:ffff:ffff:ffff:ffff,US 2a03:2880:12::,2a03:2880:1f:ffff:ffff:ffff:ffff:ffff,IE 2a03:2880:20::,2a03:2880:20:ffff:ffff:ffff:ffff:ffff,US 2a03:2880:21::,2a03:2880:100f:ffff:ffff:ffff:ffff:ffff,IE 2a03:2880:1010::,2a03:2880:1010:7fff:ffff:ffff:ffff:ffff,US 2a03:2880:1010:8000::,2a03:2880:201f:ffff:ffff:ffff:ffff:ffff,IE 2a03:2880:2020::,2a03:2880:2020:ffff:ffff:ffff:ffff:ffff,US 2a03:2880:2021::,2a03:2880:202f:ffff:ffff:ffff:ffff:ffff,IE 2a03:2880:2030::,2a03:2880:2030:7fff:ffff:ffff:ffff:ffff,US 2a03:2880:2030:8000::,2a03:2880:204f:ffff:ffff:ffff:ffff:ffff,IE 2a03:2880:2050::,2a03:2880:2050:7fff:ffff:ffff:ffff:ffff,GB 2a03:2880:2050:8000::,2a03:2880:300f:ffff:ffff:ffff:ffff:ffff,IE 2a03:2880:3010::,2a03:2880:3010:ffff:ffff:ffff:ffff:ffff,GB 2a03:2880:3011::,2a03:2887:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a03:28a0::,2a03:28a0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:28c0::,2a03:28c0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:28e0::,2a03:28e0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:2900::,2a03:2907:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:2920::,2a03:2920:ffff:ffff:ffff:ffff:ffff:ffff,ME 2a03:2940::,2a03:2940:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a03:2960::,2a03:2960:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:2980::,2a03:2980:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:29a0::,2a03:29a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:29c0::,2a03:29c0:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a03:29e0::,2a03:29e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:2a00::,2a03:2a00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:2a20::,2a03:2a20:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:2a40::,2a03:2a40:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a03:2a60::,2a03:2a60:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:2a80::,2a03:2a80:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:2aa0::,2a03:2aa0:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a03:2ac0::,2a03:2ac0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:2b00::,2a03:2b00:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:2b20::,2a03:2b20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:2b40::,2a03:2b40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:2b60::,2a03:2b60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:2b80::,2a03:2b80:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:2ba0::,2a03:2ba0:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a03:2bc0::,2a03:2bc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:2be0::,2a03:2be0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:2c00::,2a03:2c00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:2c20::,2a03:2c20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:2c40::,2a03:2c40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:2c60::,2a03:2c60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:2c80::,2a03:2c80:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:2ca0::,2a03:2ca0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:2cc0::,2a03:2cc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:2ce0::,2a03:2ce0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:2d00::,2a03:2d00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:2d20::,2a03:2d20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:2d40::,2a03:2d40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:2d60::,2a03:2d60:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:2d80::,2a03:2d80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:2da0::,2a03:2da0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:2dc0::,2a03:2dc0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:2de0::,2a03:2de0:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a03:2e00::,2a03:2e00:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:2e20::,2a03:2e20:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a03:2e40::,2a03:2e40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:2e60::,2a03:2e60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:2e80::,2a03:2e80:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:2ea0::,2a03:2ea0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:2ec0::,2a03:2ec0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:2ee0::,2a03:2ee0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:2f00::,2a03:2f00:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a03:2f20::,2a03:2f20:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:2f40::,2a03:2f40:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:2f60::,2a03:2f60:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a03:2f80::,2a03:2f80:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:2fa0::,2a03:2fa0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:2fc0::,2a03:2fc0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:2fe0::,2a03:2fe0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:3000::,2a03:3000:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a03:3020::,2a03:3020:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:3040::,2a03:3040:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:3060::,2a03:3060:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:3080::,2a03:3080:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:30a0::,2a03:30a0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:30c0::,2a03:30c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:30e0::,2a03:30e0:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a03:3100::,2a03:3100:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:3120::,2a03:3120:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:3140::,2a03:3140:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:3160::,2a03:3160:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:3180::,2a03:3180:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:31a0::,2a03:31a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:31c0::,2a03:31c0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:31e0::,2a03:31e0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:3200::,2a03:3200:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:3220::,2a03:3220:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:3240::,2a03:3240:ffff:ffff:ffff:ffff:ffff:ffff,UZ 2a03:3260::,2a03:3260:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:3280::,2a03:3280:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:32a0::,2a03:32a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:32c0::,2a03:32c0:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a03:32e0::,2a03:32e0:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a03:3300::,2a03:3300:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:3320::,2a03:3320:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a03:3340::,2a03:3340:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:3360::,2a03:3360:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:3380::,2a03:3380:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a03:33a0::,2a03:33a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:33c0::,2a03:33c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:33e0::,2a03:33e0:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a03:3400::,2a03:3400:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:3420::,2a03:3420:ffff:ffff:ffff:ffff:ffff:ffff,LI 2a03:3440::,2a03:3440:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a03:3460::,2a03:3460:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:3480::,2a03:3480:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:34a0::,2a03:34a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:34c0::,2a03:34c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:34e0::,2a03:34e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:3500::,2a03:3500:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:3520::,2a03:3520:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:3540::,2a03:3547:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:3580::,2a03:3580:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a03:35a0::,2a03:35a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:35c0::,2a03:35c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:35e0::,2a03:35e0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:3600::,2a03:3600:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:3620::,2a03:3620:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:3640::,2a03:3640:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:3660::,2a03:3660:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:3680::,2a03:3687:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:36a0::,2a03:36a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:36c0::,2a03:36c0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:36e0::,2a03:36e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:3700::,2a03:3700:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:3720::,2a03:3720:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a03:3740::,2a03:3740:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:3760::,2a03:3760:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:3780::,2a03:3780:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:37a0::,2a03:37a0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:37c0::,2a03:37c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:37e0::,2a03:37e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:3800::,2a03:3800:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:3820::,2a03:3820:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:3840::,2a03:3847:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:3880::,2a03:3880:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:38a0::,2a03:38a0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:38c0::,2a03:38c0:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a03:38e0::,2a03:38e0:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a03:3900::,2a03:3900:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:3920::,2a03:3920:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:3940::,2a03:3940:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:3960::,2a03:3960:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:3980::,2a03:3980:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a03:39a0::,2a03:39a0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:39c0::,2a03:39c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:39e0::,2a03:39e0:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a03:3a00::,2a03:3a00:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:3a20::,2a03:3a20:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a03:3a40::,2a03:3a40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:3a60::,2a03:3a60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:3a80::,2a03:3a80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:3aa0::,2a03:3aa0:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a03:3ac0::,2a03:3ac0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:3ae0::,2a03:3ae0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:3b00::,2a03:3b00:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:3b20::,2a03:3b20:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a03:3b40::,2a03:3b40:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:3b60::,2a03:3b60:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:3b80::,2a03:3b80:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:3ba0::,2a03:3ba0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:3bc0::,2a03:3bc0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:3be0::,2a03:3be0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:3c00::,2a03:3c00:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:3c20::,2a03:3c20:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:3c40::,2a03:3c40:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:3c60::,2a03:3c60:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:3c80::,2a03:3c80:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:3ca0::,2a03:3ca0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:3cc0::,2a03:3cc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:3d00::,2a03:3d00:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a03:3d20::,2a03:3d20:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:3d40::,2a03:3d40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:3d60::,2a03:3d60:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:3d80::,2a03:3d80:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:3da0::,2a03:3da0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a03:3dc0::,2a03:3dc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:3de0::,2a03:3de0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:3e00::,2a03:3e07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:3e40::,2a03:3e40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:3e60::,2a03:3e60:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:3e80::,2a03:3e80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:3ea0::,2a03:3ea0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:3ec0::,2a03:3ec0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:3ee0::,2a03:3ee0:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a03:3f00::,2a03:3f00:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:3f20::,2a03:3f20:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:3f40::,2a03:3f40:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:3f60::,2a03:3f60:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a03:3f80::,2a03:3f80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:3fa0::,2a03:3fa0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:3fc0::,2a03:3fc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:3fe0::,2a03:3fe0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:4000::,2a03:4007:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:4020::,2a03:4020:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:4040::,2a03:4040:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:4060::,2a03:4060:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:4080::,2a03:4080:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:40a0::,2a03:40a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:40c0::,2a03:40c0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:40e0::,2a03:40e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:4100::,2a03:4107:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a03:4140::,2a03:4140:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:4160::,2a03:4160:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:4180::,2a03:4180:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:41a0::,2a03:41a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:41c0::,2a03:41c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:41e0::,2a03:41e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:4200::,2a03:4200:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:4220::,2a03:4220:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:4240::,2a03:4240:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:4260::,2a03:4260:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:4280::,2a03:4280:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a03:42a0::,2a03:42a0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:42c0::,2a03:42c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:42e0::,2a03:42e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:4300::,2a03:4307:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:4340::,2a03:4340:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:4360::,2a03:4360:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a03:4380::,2a03:4380:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:43a0::,2a03:43a0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:43c0::,2a03:43c0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:43e0::,2a03:43e0:ffff:ffff:ffff:ffff:ffff:ffff,LI 2a03:4400::,2a03:4400:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:4420::,2a03:4420:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:4440::,2a03:4440:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:4460::,2a03:4460:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:4480::,2a03:4480:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a03:44a0::,2a03:44a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:44c0::,2a03:44c0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a03:44e0::,2a03:44e0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:4500::,2a03:4500:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:4520::,2a03:4520:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a03:4540::,2a03:4540:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:4560::,2a03:4560:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:4580::,2a03:4580:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:45a0::,2a03:45a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:45c0::,2a03:45c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:45e0::,2a03:45e0:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a03:4600::,2a03:4600:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:4620::,2a03:4620:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:4640::,2a03:4640:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:4660::,2a03:4660:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:4680::,2a03:4687:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:46a0::,2a03:46a0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a03:46c0::,2a03:46c0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:46e0::,2a03:46e0:ffff:ffff:ffff:ffff:ffff:ffff,UZ 2a03:4700::,2a03:4700:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:4720::,2a03:4720:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:4740::,2a03:4740:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:4760::,2a03:4760:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:4780::,2a03:4780:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a03:47a0::,2a03:47a0:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a03:47c0::,2a03:47c7:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a03:4800::,2a03:4800:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:4820::,2a03:4820:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a03:4840::,2a03:4847:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a03:4880::,2a03:4880:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:48a0::,2a03:48a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:48c0::,2a03:48c0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:48e0::,2a03:48e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:4900::,2a03:4900::ffff:ffff:ffff:ffff:ffff,RU 2a03:4900:1::,2a03:4900:1:7fff:ffff:ffff:ffff:ffff,UA 2a03:4900:1:8000::,2a03:4900:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:4920::,2a03:4920:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:4940::,2a03:4940:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:4960::,2a03:4960:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a03:4980::,2a03:4980:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:49a0::,2a03:49a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:49c0::,2a03:49c0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:49e0::,2a03:49e0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:4a00::,2a03:4a00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:4a20::,2a03:4a20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:4a40::,2a03:4a40:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:4a60::,2a03:4a60:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a03:4a80::,2a03:4a80::ffff:ffff:ffff:ffff,NL 2a03:4a80:0:1::,2a03:4a80::1:ffff:ffff:ffff:ffff,GB 2a03:4a80:0:2::,2a03:4a80::2:ffff:ffff:ffff:ffff,CA 2a03:4a80:0:3::,2a03:4a80::3:ffff:ffff:ffff:ffff,CZ 2a03:4a80:0:4::,2a03:4a80::4:ffff:ffff:ffff:ffff,NL 2a03:4a80:0:5::,2a03:4a80::5:ffff:ffff:ffff:ffff,FR 2a03:4a80:0:6::,2a03:4a80::6:ffff:ffff:ffff:ffff,DK 2a03:4a80:0:7::,2a03:4a80::7:ffff:ffff:ffff:ffff,RU 2a03:4a80:0:8::,2a03:4a80::8:ffff:ffff:ffff:ffff,TR 2a03:4a80:0:9::,2a03:4a80::9:ffff:ffff:ffff:ffff,UA 2a03:4a80:0:a::,2a03:4a80::a:ffff:ffff:ffff:ffff,MX 2a03:4a80:0:b::,2a03:4a80::ffff:ffff:ffff:ffff:ffff,NL 2a03:4a80:1::,2a03:4a80:1:ffff:ffff:ffff:ffff:ffff,GB 2a03:4a80:2::,2a03:4a80:2:ffff:ffff:ffff:ffff:ffff,CA 2a03:4a80:3::,2a03:4a80:3:ffff:ffff:ffff:ffff:ffff,CZ 2a03:4a80:4::,2a03:4a80:4:ffff:ffff:ffff:ffff:ffff,DE 2a03:4a80:5::,2a03:4a80:5:ffff:ffff:ffff:ffff:ffff,FR 2a03:4a80:6::,2a03:4a80:6:ffff:ffff:ffff:ffff:ffff,DK 2a03:4a80:7::,2a03:4a80:7:ffff:ffff:ffff:ffff:ffff,RU 2a03:4a80:8::,2a03:4a80:8:ffff:ffff:ffff:ffff:ffff,TR 2a03:4a80:9::,2a03:4a80:9:ffff:ffff:ffff:ffff:ffff,UA 2a03:4a80:a::,2a03:4a80:a:ffff:ffff:ffff:ffff:ffff,MX 2a03:4a80:b::,2a03:4a80:fffe:ffff:ffff:ffff:ffff:ffff,NL 2a03:4a80:ffff::,2a03:4a80:ffff:7fff:ffff:ffff:ffff:ffff,US 2a03:4a80:ffff:8000::,2a03:4a80:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:4aa0::,2a03:4aa0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:4ac0::,2a03:4ac0:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a03:4ae0::,2a03:4ae0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:4b00::,2a03:4b00:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:4b20::,2a03:4b20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:4b40::,2a03:4b40:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a03:4b60::,2a03:4b60:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a03:4b80::,2a03:4b80:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a03:4ba0::,2a03:4ba0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a03:4bc0::,2a03:4bc0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:4be0::,2a03:4be0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:4c00::,2a03:4c07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:4c40::,2a03:4c40:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:4c60::,2a03:4c60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:4c80::,2a03:4c80:ffff:ffff:ffff:ffff:ffff:ffff,LI 2a03:4ca0::,2a03:4ca0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a03:4cc0::,2a03:4cc0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:4ce0::,2a03:4ce0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:4d00::,2a03:4d00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:4d20::,2a03:4d27:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:4d40::,2a03:4d40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:4d60::,2a03:4d60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:4d80::,2a03:4d80:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:4da0::,2a03:4da0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:4dc0::,2a03:4dc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:4de0::,2a03:4de0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:4e00::,2a03:4e00:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:4e20::,2a03:4e20:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:4e40::,2a03:4e40:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:4e60::,2a03:4e60:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:4e80::,2a03:4e80:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a03:4ea0::,2a03:4ea0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:4ec0::,2a03:4ec0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:4ee0::,2a03:4ee0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:4f00::,2a03:4f00:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:4f20::,2a03:4f20:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:4f40::,2a03:4f40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:4f60::,2a03:4f60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:4f80::,2a03:4f80:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:4fa0::,2a03:4fa0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:4fc0::,2a03:4fc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:4fe0::,2a03:4fe0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:5000::,2a03:5000:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:5020::,2a03:5020:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:5040::,2a03:5040:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:5060::,2a03:5060:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:5080::,2a03:5080:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:50a0::,2a03:50a0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:50c0::,2a03:50c0:ffff:ffff:ffff:ffff:ffff:ffff,GI 2a03:50e0::,2a03:50e0:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a03:5100::,2a03:5100:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:5120::,2a03:5120:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:5140::,2a03:5140:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:5160::,2a03:5160:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:5180::,2a03:5180:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a03:51a0::,2a03:51a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:51c0::,2a03:51c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:51e0::,2a03:51e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:5200::,2a03:5200:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:5220::,2a03:5220:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a03:5240::,2a03:5240:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:5260::,2a03:5260:ffff:ffff:ffff:ffff:ffff:ffff,LI 2a03:5280::,2a03:5280:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:52a0::,2a03:52a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:52c0::,2a03:52c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:52e0::,2a03:52e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:5300::,2a03:5307:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:5340::,2a03:5340:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:5360::,2a03:5360:ffff:ffff:ffff:ffff:ffff:ffff,LI 2a03:5380::,2a03:5380:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:53a0::,2a03:53a0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:53c0::,2a03:53c0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:53e0::,2a03:53e0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:5400::,2a03:5400:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:5420::,2a03:5420:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:5440::,2a03:5440:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:5460::,2a03:5460:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:5480::,2a03:5480:ffff:ffff:ffff:ffff:ffff:ffff,LI 2a03:54a0::,2a03:54a0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:54c0::,2a03:54c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:54e0::,2a03:54e0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:5500::,2a03:5501:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:5520::,2a03:5520:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:5540::,2a03:5540:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:5560::,2a03:5560:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:5580::,2a03:5587:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:55c0::,2a03:55c0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:55e0::,2a03:55e0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:5600::,2a03:5600:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:5620::,2a03:5620:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a03:5640::,2a03:5640:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a03:5660::,2a03:5660:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:5680::,2a03:5680:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:56a0::,2a03:56a0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:56c0::,2a03:56c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:56e0::,2a03:56e0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a03:5700::,2a03:5700:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:5720::,2a03:5720:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:5740::,2a03:5740:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:5760::,2a03:5760:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:5780::,2a03:5780:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a03:57a0::,2a03:57a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:57c0::,2a03:57c0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:57e0::,2a03:57e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:5800::,2a03:5800:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:5820::,2a03:5820:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a03:5840::,2a03:5840:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:5860::,2a03:5860:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:5880::,2a03:5880:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a03:58a0::,2a03:58a0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:58c0::,2a03:58c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:58e0::,2a03:58e0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:5900::,2a03:5907:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a03:5940::,2a03:5940:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:5960::,2a03:5960:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:5980::,2a03:5980:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:59a0::,2a03:59a0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:59c0::,2a03:59c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:59e0::,2a03:59e0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:5a00::,2a03:5a07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:5a40::,2a03:5a40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:5a60::,2a03:5a60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:5a80::,2a03:5a80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:5aa0::,2a03:5aa0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:5ac0::,2a03:5ac0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:5ae0::,2a03:5ae0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a03:5b00::,2a03:5b00:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:5b20::,2a03:5b20:ffff:ffff:ffff:ffff:ffff:ffff,RE 2a03:5b40::,2a03:5b40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:5b60::,2a03:5b60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:5b80::,2a03:5b80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:5ba0::,2a03:5ba0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:5bc0::,2a03:5bc0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:5be0::,2a03:5be0:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a03:5c00::,2a03:5c00:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:5c20::,2a03:5c20:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:5c40::,2a03:5c40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:5c60::,2a03:5c60:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:5c80::,2a03:5c80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:5ca0::,2a03:5ca0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:5cc0::,2a03:5cc0:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a03:5ce0::,2a03:5ce0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a03:5d00::,2a03:5d07:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:5d40::,2a03:5d40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:5d60::,2a03:5d60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:5d80::,2a03:5d80:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:5da0::,2a03:5da0:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a03:5dc0::,2a03:5dc0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:5de0::,2a03:5de0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:5e00::,2a03:5e00:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:5e20::,2a03:5e20:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:5e40::,2a03:5e40:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:5e60::,2a03:5e60:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:5e80::,2a03:5e80:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a03:5ea0::,2a03:5ea0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:5ec0::,2a03:5ec0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:5ee0::,2a03:5ee0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:5f00::,2a03:5f00:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a03:5f20::,2a03:5f20:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:5f60::,2a03:5f60:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a03:5f80::,2a03:5f80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:5fa0::,2a03:5fa0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:5fc0::,2a03:5fc0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:5fe0::,2a03:5fe0:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a03:6000::,2a03:6000:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:6020::,2a03:6020:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a03:6040::,2a03:6040:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:6060::,2a03:6060:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:6080::,2a03:6087:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:60c0::,2a03:60c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:60e0::,2a03:60e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:6100::,2a03:6100:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a03:6120::,2a03:6120:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:6140::,2a03:6140:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:6160::,2a03:6160:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a03:6180::,2a03:6180:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:61a0::,2a03:61a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:61c0::,2a03:61c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:61e0::,2a03:61e0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:6200::,2a03:6200:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:6220::,2a03:6220:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a03:6240::,2a03:6240:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:6260::,2a03:6260:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:6280::,2a03:6280:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:62a0::,2a03:62a0:3500:ffff:ffff:ffff:ffff:ffff,AU 2a03:62a0:3501::,2a03:62a0:3501:7fff:ffff:ffff:ffff:ffff,FI 2a03:62a0:3501:8000::,2a03:62a0:ffff:ffff:ffff:ffff:ffff:ffff,AU 2a03:62c0::,2a03:62c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:62e0::,2a03:62e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:6300::,2a03:6300:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:6320::,2a03:6320:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:6340::,2a03:6340:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a03:6360::,2a03:6360:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:6380::,2a03:6380:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a03:63a0::,2a03:63a7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:63c0::,2a03:63c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:63e0::,2a03:63e0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:6400::,2a03:6400:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:6420::,2a03:6420:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a03:6440::,2a03:6440:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:6460::,2a03:6460:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:6480::,2a03:6480:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:64a0::,2a03:64a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:64c0::,2a03:64c0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:64e0::,2a03:64e0:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a03:6500::,2a03:6500:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:6520::,2a03:6520:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:6540::,2a03:6540:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:6560::,2a03:6560:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:6580::,2a03:6580:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:65a0::,2a03:65a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:65c0::,2a03:65c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:65e0::,2a03:65e0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:6600::,2a03:6607:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:6620::,2a03:6620:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:6640::,2a03:6640:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:6660::,2a03:6660:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:6680::,2a03:6680:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:66a0::,2a03:66a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:66c0::,2a03:66c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:66e0::,2a03:66e0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:6700::,2a03:6707:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a03:6740::,2a03:6740:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a03:6760::,2a03:6760:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:6780::,2a03:6780:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:67a0::,2a03:67a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:67c0::,2a03:67c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:67e0::,2a03:67e0:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a03:6800::,2a03:6800:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:6820::,2a03:6820:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:6840::,2a03:6840:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:6860::,2a03:6860:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:6880::,2a03:6880:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:68a0::,2a03:68a0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:68c0::,2a03:68c0:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a03:68e0::,2a03:68e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:6900::,2a03:6900:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a03:6920::,2a03:6927:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:6940::,2a03:6940:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:6960::,2a03:6960:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:6980::,2a03:6980:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:69a0::,2a03:69a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:69c0::,2a03:69c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:69e0::,2a03:69e0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:6a00::,2a03:6a07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:6a40::,2a03:6a40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:6a60::,2a03:6a60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:6a80::,2a03:6a80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:6aa0::,2a03:6aa0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:6ac0::,2a03:6ac0:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a03:6ae0::,2a03:6ae0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:6b00::,2a03:6b07:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a03:6b20::,2a03:6b20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:6b40::,2a03:6b40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:6b60::,2a03:6b60:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:6b80::,2a03:6b80:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:6ba0::,2a03:6ba0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:6bc0::,2a03:6bc0:ffff:ffff:ffff:ffff:ffff:ffff,RE 2a03:6be0::,2a03:6be0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:6c00::,2a03:6c00:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:6c20::,2a03:6c20:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:6c40::,2a03:6c40:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:6c60::,2a03:6c60:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:6c80::,2a03:6c80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:6ca0::,2a03:6ca0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:6cc0::,2a03:6cc0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:6ce0::,2a03:6ce0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:6d00::,2a03:6d00:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a03:6d20::,2a03:6d20:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:6d40::,2a03:6d40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:6d60::,2a03:6d60:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:6d80::,2a03:6d80:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:6da0::,2a03:6da0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:6dc0::,2a03:6dc0:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a03:6de0::,2a03:6de0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:6e00::,2a03:6e00:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:6e20::,2a03:6e20:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:6e40::,2a03:6e40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:6e60::,2a03:6e60:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a03:6e80::,2a03:6e80:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:6ea0::,2a03:6ea0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:6ec0::,2a03:6ec0:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a03:6ee0::,2a03:6ee0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:6f00::,2a03:6f00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:6f20::,2a03:6f27:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:6f40::,2a03:6f40:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:6f60::,2a03:6f60:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:6f80::,2a03:6f87:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:6fc0::,2a03:6fc0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:6fe0::,2a03:6fe0:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a03:7000::,2a03:7000:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:7020::,2a03:7020:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a03:7040::,2a03:7040:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:7060::,2a03:7060:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a03:7080::,2a03:7080:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:70a0::,2a03:70a0:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:70c0::,2a03:70c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:70e0::,2a03:70e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:7100::,2a03:7100:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a03:7120::,2a03:7120:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:7140::,2a03:7140:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:7160::,2a03:7160:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a03:7180::,2a03:7180:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a03:71a0::,2a03:71a0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:71c0::,2a03:71c0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:71e0::,2a03:71e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:7200::,2a03:7200:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:7220::,2a03:7220:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:7240::,2a03:7240:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:7260::,2a03:7260:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:7280::,2a03:7280:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:72a0::,2a03:72a0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:72c0::,2a03:72c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:72e0::,2a03:72e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:7300::,2a03:7300:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:7320::,2a03:7320:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:7340::,2a03:7340:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:7360::,2a03:7367:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:7380::,2a03:7380:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:73c0::,2a03:73c0:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a03:73e0::,2a03:73e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:7400::,2a03:7400:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:7420::,2a03:7420:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a03:7440::,2a03:7440:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:7460::,2a03:7460:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:7480::,2a03:7480:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:74a0::,2a03:74a0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:74c0::,2a03:74c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:74e0::,2a03:74e0:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a03:7500::,2a03:7500:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:7520::,2a03:7520:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:7540::,2a03:7540:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:7560::,2a03:7560:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a03:7580::,2a03:7580:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:75a0::,2a03:75a0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:75c0::,2a03:75c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:75e0::,2a03:75e0:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a03:7600::,2a03:7600:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:7620::,2a03:7620:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:7640::,2a03:7640:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:7660::,2a03:7660:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:7680::,2a03:7680:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:76a0::,2a03:76a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:76c0::,2a03:76c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:76e0::,2a03:76e0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:7700::,2a03:7700:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:7720::,2a03:7720:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:7740::,2a03:7740:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a03:7760::,2a03:7760:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:7780::,2a03:7780:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:77a0::,2a03:77a0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:77c0::,2a03:77c0:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a03:77e0::,2a03:77e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:7800::,2a03:7800:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:7820::,2a03:7820:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a03:7840::,2a03:7840:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:7860::,2a03:7860:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:7880::,2a03:7880:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:78a0::,2a03:78a0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:78c0::,2a03:78c0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:78e0::,2a03:78e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:7900::,2a03:7900:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:7920::,2a03:7920:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a03:7940::,2a03:7940:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:7960::,2a03:7960:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:7980::,2a03:7980:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:79a0::,2a03:79a0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:79c0::,2a03:79c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:79e0::,2a03:79e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:7a00::,2a03:7a00:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:7a20::,2a03:7a20:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:7a40::,2a03:7a40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:7a60::,2a03:7a60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:7a80::,2a03:7a80:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a03:7aa0::,2a03:7aa0:ffff:ffff:ffff:ffff:ffff:ffff,IM 2a03:7ac0::,2a03:7ac0:ffff:ffff:ffff:ffff:ffff:ffff,AD 2a03:7ae0::,2a03:7ae0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:7b00::,2a03:7b00:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:7b20::,2a03:7b20:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a03:7b40::,2a03:7b40:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:7b60::,2a03:7b60:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a03:7b80::,2a03:7b80:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:7ba0::,2a03:7ba0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:7bc0::,2a03:7bc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:7be0::,2a03:7be0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:7c00::,2a03:7c00:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:7c20::,2a03:7c20:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:7c40::,2a03:7c40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:7c60::,2a03:7c60:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a03:7c80::,2a03:7c80:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:7ca0::,2a03:7ca0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:7cc0::,2a03:7cc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:7ce0::,2a03:7ce0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:7d00::,2a03:7d00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:7d20::,2a03:7d20:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:7d40::,2a03:7d40:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a03:7d60::,2a03:7d60:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a03:7d80::,2a03:7d80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:7da0::,2a03:7da0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:7dc0::,2a03:7dc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:7de0::,2a03:7de0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:7e00::,2a03:7e00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:7e20::,2a03:7e20:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:7e40::,2a03:7e40:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:7e60::,2a03:7e60:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a03:7e80::,2a03:7e80:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:7ea0::,2a03:7ea0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:7ec0::,2a03:7ec0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:7ee0::,2a03:7ee0:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:7f00::,2a03:7f00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:7f20::,2a03:7f20:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:7f40::,2a03:7f40:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a03:7f60::,2a03:7f60:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:7f80::,2a03:7f80:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:7fa0::,2a03:7fa0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:7fc0::,2a03:7fc0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:7fe0::,2a03:7fe0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:8000::,2a03:8000:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:8020::,2a03:8020:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:8040::,2a03:8040:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:8060::,2a03:8060:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:8080::,2a03:8080:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:80a0::,2a03:80a0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:80c0::,2a03:80c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:80e0::,2a03:80e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:8100::,2a03:8100:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:8120::,2a03:8120:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:8140::,2a03:8140:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:8160::,2a03:8160:ffff:ffff:ffff:ffff:ffff:ffff,US 2a03:8180::,2a03:8180:1100:ffff:ffff:ffff:ffff:ffff,NL 2a03:8180:1101::,2a03:8180:1101:7fff:ffff:ffff:ffff:ffff,GB 2a03:8180:1101:8000::,2a03:8180:1300:ffff:ffff:ffff:ffff:ffff,NL 2a03:8180:1301::,2a03:8180:1301:7fff:ffff:ffff:ffff:ffff,FR 2a03:8180:1301:8000::,2a03:8180:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:81a0::,2a03:81a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:81c0::,2a03:81c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:81e0::,2a03:81e0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:8200::,2a03:8200:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:8220::,2a03:8220:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:8240::,2a03:8240:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:8260::,2a03:8260:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a03:8280::,2a03:8280:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:82a0::,2a03:82a0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:82c0::,2a03:82c0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a03:82e0::,2a03:82e0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:8300::,2a03:8300:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:8320::,2a03:8320:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:8340::,2a03:8340:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a03:8360::,2a03:8360:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:8380::,2a03:8380:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:83a0::,2a03:83a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:83c0::,2a03:83c0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a03:83e0::,2a03:83e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:8400::,2a03:8400:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:8420::,2a03:8420:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:8440::,2a03:8440:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:8460::,2a03:8460:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:8480::,2a03:8480:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a03:84a0::,2a03:84a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:84c0::,2a03:84c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:84e0::,2a03:84e0:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a03:8500::,2a03:8500:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:8520::,2a03:8520:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:8540::,2a03:8540:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:8560::,2a03:8560:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:8580::,2a03:8580:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:85a0::,2a03:85a0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:85c0::,2a03:85c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:85e0::,2a03:85e0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:8600::,2a03:8600:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:8620::,2a03:8620:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:8640::,2a03:8640:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:8660::,2a03:8660:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:8680::,2a03:8680:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:86a0::,2a03:86a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:86c0::,2a03:86c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:86e0::,2a03:86e0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:8700::,2a03:8700:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:8720::,2a03:8720:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:8740::,2a03:8740:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:8760::,2a03:8760:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a03:8780::,2a03:8780:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:87a0::,2a03:87a0:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a03:87c0::,2a03:87c0:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a03:87e0::,2a03:87e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:8800::,2a03:8800:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a03:8820::,2a03:8820:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a03:8840::,2a03:8840:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:8860::,2a03:8860:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:8880::,2a03:8880:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:88a0::,2a03:88a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:88c0::,2a03:88c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:88e0::,2a03:88e0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:8900::,2a03:8900:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a03:8920::,2a03:8920:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:8940::,2a03:8940:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:8960::,2a03:8960:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a03:8980::,2a03:8980:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:89a0::,2a03:89a0:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a03:89c0::,2a03:89c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:89e0::,2a03:89e0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:8a00::,2a03:8a00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:8a20::,2a03:8a20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:8a40::,2a03:8a40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:8a60::,2a03:8a60:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:8a80::,2a03:8a80:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:8aa0::,2a03:8aa0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:8ac0::,2a03:8ac0:24f:ffff:ffff:ffff:ffff:ffff,US 2a03:8ac0:250::,2a03:8ac0:250:ffff:ffff:ffff:ffff:ffff,SG 2a03:8ac0:251::,2a03:8ac0:ffff:ffff:ffff:ffff:ffff:ffff,US 2a03:8ae0::,2a03:8ae0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:8b00::,2a03:8b00:ffff:ffff:ffff:ffff:ffff:ffff,SM 2a03:8b20::,2a03:8b20:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:8b40::,2a03:8b40:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:8b60::,2a03:8b60:ffff:ffff:ffff:ffff:ffff:ffff,SY 2a03:8b80::,2a03:8b80:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:8ba0::,2a03:8ba0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:8bc0::,2a03:8bc0:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a03:8be0::,2a03:8be0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:8c00::,2a03:8c00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:8c20::,2a03:8c20:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:8c40::,2a03:8c40:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:8c60::,2a03:8c60:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a03:8c80::,2a03:8c87:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:8cc0::,2a03:8cc0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:8ce0::,2a03:8ce0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:8d00::,2a03:8d00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:8d20::,2a03:8d20:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:8d40::,2a03:8d40:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:8d60::,2a03:8d60:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a03:8d80::,2a03:8d80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:8da0::,2a03:8da0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:8dc0::,2a03:8dc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:8de0::,2a03:8de0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:8e00::,2a03:8e00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:8e20::,2a03:8e20:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:8e40::,2a03:8e40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:8e60::,2a03:8e60:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:8e80::,2a03:8e80:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:8ea0::,2a03:8ea0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:8ec0::,2a03:8ec0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:8ee0::,2a03:8ee0:ffff:ffff:ffff:ffff:ffff:ffff,UZ 2a03:8f00::,2a03:8f07:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:8f40::,2a03:8f40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:8f60::,2a03:8f60:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a03:8f80::,2a03:8f80:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a03:8fa0::,2a03:8fa0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:8fc0::,2a03:8fc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:8fe0::,2a03:8fe0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:9000::,2a03:9000:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:9020::,2a03:9020:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:9040::,2a03:9040:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:9060::,2a03:9060:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:9080::,2a03:9080:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:90a0::,2a03:90a0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:90c0::,2a03:90c0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:90e0::,2a03:90e0:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a03:9100::,2a03:9100:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:9120::,2a03:9120:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a03:9140::,2a03:9140:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:9160::,2a03:9160:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:9180::,2a03:9180:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:91a0::,2a03:91a0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:91c0::,2a03:91c0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:91e0::,2a03:91e0:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:9200::,2a03:9200:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:9220::,2a03:9220:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:9240::,2a03:9240:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a03:9260::,2a03:9260:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:9280::,2a03:9280:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:92a0::,2a03:92a0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:92c0::,2a03:92c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:92e0::,2a03:92e0:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a03:9300::,2a03:9300:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:9320::,2a03:9320:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:9340::,2a03:9340:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:9360::,2a03:9360:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a03:9380::,2a03:9380:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:93a0::,2a03:93a0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:93c0::,2a03:93c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:93e0::,2a03:93e0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:9400::,2a03:9400:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:9420::,2a03:9420:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a03:9440::,2a03:9440:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:9460::,2a03:9460:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:9480::,2a03:9480:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:94a0::,2a03:94a0:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a03:94c0::,2a03:94c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:94e0::,2a03:94e0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:9500::,2a03:9500:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:9520::,2a03:9520:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:9540::,2a03:9540:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:9560::,2a03:9567:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:9580::,2a03:9580:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:95a0::,2a03:95a0:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:95c0::,2a03:95c0:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a03:95e0::,2a03:95e0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:9600::,2a03:9600:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:9620::,2a03:9620:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:9640::,2a03:9640:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a03:9660::,2a03:9660:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:9680::,2a03:9680:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:96a0::,2a03:96a0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:96c0::,2a03:96c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:96e0::,2a03:96e0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:9700::,2a03:9700:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:9720::,2a03:9720:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:9740::,2a03:9740:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:9760::,2a03:9760:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a03:9780::,2a03:9780:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:97a0::,2a03:97a0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:97c0::,2a03:97c1:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a03:97e0::,2a03:97e0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:9800::,2a03:9807:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:9840::,2a03:9840:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:9860::,2a03:9860:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:9880::,2a03:9880:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:98a0::,2a03:98a0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:98c0::,2a03:98c7:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a03:9900::,2a03:9900:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a03:9920::,2a03:9920:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:9940::,2a03:9940:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:9960::,2a03:9960:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:9980::,2a03:9980:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:99a0::,2a03:99a0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:99c0::,2a03:99c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:99e0::,2a03:99e0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:9a00::,2a03:9a07:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:9a40::,2a03:9a40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:9a60::,2a03:9a60:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:9a80::,2a03:9a80:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:9aa0::,2a03:9aa0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:9ac0::,2a03:9ac0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:9ae0::,2a03:9ae0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:9b00::,2a03:9b00:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:9b20::,2a03:9b20:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:9b40::,2a03:9b40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:9b60::,2a03:9b60:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a03:9b80::,2a03:9b80:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:9ba0::,2a03:9ba0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:9bc0::,2a03:9bc0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:9c00::,2a03:9c00:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a03:9c40::,2a03:9c40:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a03:9c80::,2a03:9c80:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a03:9cc0::,2a03:9cc7:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:9d00::,2a03:9d00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:9d40::,2a03:9d40:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:9d80::,2a03:9d80:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a03:9dc0::,2a03:9dc0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:9e00::,2a03:9e00:ffff:ffff:ffff:ffff:ffff:ffff,IM 2a03:9e40::,2a03:9e47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:9e80::,2a03:9e80:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:9ec0::,2a03:9ec0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:9f00::,2a03:9f00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:9f40::,2a03:9f40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:9f80::,2a03:9f80:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:9fc0::,2a03:9fc0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:a000::,2a03:a000:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:a040::,2a03:a040:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:a080::,2a03:a080:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:a0c0::,2a03:a0c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:a100::,2a03:a100:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a03:a140::,2a03:a140:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:a180::,2a03:a180:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:a1c0::,2a03:a1c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:a200::,2a03:a200:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a03:a240::,2a03:a240:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:a280::,2a03:a280:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:a2c0::,2a03:a2c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:a300::,2a03:a300:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a03:a380::,2a03:a380:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:a3c0::,2a03:a3c0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:a400::,2a03:a400:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:a440::,2a03:a440:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:a480::,2a03:a480:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:a4c0::,2a03:a4c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:a500::,2a03:a500:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:a540::,2a03:a540:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:a580::,2a03:a580:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:a5c0::,2a03:a5c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:a600::,2a03:a600:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:a640::,2a03:a640:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:a680::,2a03:a680:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:a6c0::,2a03:a6c0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:a700::,2a03:a700:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:a740::,2a03:a740:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:a780::,2a03:a780:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:a7c0::,2a03:a7c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:a800::,2a03:a800:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:a840::,2a03:a840:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:a880::,2a03:a880:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:a8c0::,2a03:a8c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:a900::,2a03:a900:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:a940::,2a03:a940:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:a980::,2a03:a980:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:a9c0::,2a03:a9c0:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a03:aa00::,2a03:aa00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:aa40::,2a03:aa40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:aa80::,2a03:aa80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:aac0::,2a03:aac0:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a03:ab00::,2a03:ab00:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:ab40::,2a03:ab40:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:ab80::,2a03:ab80:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:ac00::,2a03:ac00:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:ac40::,2a03:ac40:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:ac80::,2a03:ac80:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:acc0::,2a03:acc0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:ad00::,2a03:ad00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:ad40::,2a03:ad40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:ad80::,2a03:ad80:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:adc0::,2a03:adc0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:ae40::,2a03:ae40:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:ae80::,2a03:ae80:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:aec0::,2a03:aec0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:af00::,2a03:af00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:af40::,2a03:af40:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a03:af80::,2a03:af80:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:afc0::,2a03:afc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:b000::,2a03:b000:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:b040::,2a03:b040:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:b080::,2a03:b080:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a03:b0c0::,2a03:b0c0::ffff:ffff:ffff:ffff:ffff,NL 2a03:b0c0:1::,2a03:b0c0:1:ffff:ffff:ffff:ffff:ffff,GB 2a03:b0c0:2::,2a03:b0c0:2:ffff:ffff:ffff:ffff:ffff,NL 2a03:b0c0:3::,2a03:b0c0:3:7fff:ffff:ffff:ffff:ffff,DE 2a03:b0c0:3:8000::,2a03:b0c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:b100::,2a03:b100:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:b140::,2a03:b140:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:b180::,2a03:b180:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a03:b1c0::,2a03:b1c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:b200::,2a03:b207:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:b240::,2a03:b240:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:b280::,2a03:b280:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:b2c0::,2a03:b2c0:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:b300::,2a03:b300:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:b340::,2a03:b340:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:b380::,2a03:b380:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:b3c0::,2a03:b3c0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:b400::,2a03:b400:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:b440::,2a03:b440:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:b480::,2a03:b480:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:b4c0::,2a03:b4c0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:b500::,2a03:b500:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a03:b540::,2a03:b540:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a03:b580::,2a03:b580:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:b5c0::,2a03:b5c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:b600::,2a03:b600:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:b640::,2a03:b640:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a03:b680::,2a03:b680:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:b6c0::,2a03:b6c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:b700::,2a03:b700:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:b740::,2a03:b740:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:b780::,2a03:b780:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:b7c0::,2a03:b7c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:b800::,2a03:b800:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:b840::,2a03:b840:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:b880::,2a03:b887:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:b8c0::,2a03:b8c0:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a03:b900::,2a03:b900:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:b940::,2a03:b940:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:b980::,2a03:b980:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:b9c0::,2a03:b9c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:ba00::,2a03:ba07:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:ba40::,2a03:ba40:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a03:ba80::,2a03:ba80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:bac0::,2a03:bac0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:bb00::,2a03:bb00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:bb40::,2a03:bb40:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a03:bb80::,2a03:bb80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:bbc0::,2a03:bbc0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:bc00::,2a03:bc00:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:bc40::,2a03:bc40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:bc80::,2a03:bc80:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:bcc0::,2a03:bcc0:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a03:bd00::,2a03:bd00:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:bd40::,2a03:bd47:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a03:bd80::,2a03:bd80:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:bdc0::,2a03:bdc0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:be00::,2a03:be00:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:be40::,2a03:be40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:be80::,2a03:be80:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:bec0::,2a03:bec0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:bf00::,2a03:bf00:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a03:bf40::,2a03:bf40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:bf80::,2a03:bf80:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:bfc0::,2a03:bfc0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:c000::,2a03:c007:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:c040::,2a03:c040:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:c080::,2a03:c080:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a03:c0c0::,2a03:c0c0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:c100::,2a03:c100:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:c140::,2a03:c140:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a03:c180::,2a03:c180:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:c1c0::,2a03:c1c0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:c200::,2a03:c200:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:c240::,2a03:c240:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a03:c280::,2a03:c280:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:c2c0::,2a03:c2c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:c300::,2a03:c300:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:c340::,2a03:c340:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a03:c380::,2a03:c380:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:c3c0::,2a03:c3c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:c400::,2a03:c400:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:c440::,2a03:c440:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:c480::,2a03:c480:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a03:c4c0::,2a03:c4c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:c500::,2a03:c500:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:c540::,2a03:c540:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:c580::,2a03:c580:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:c5c0::,2a03:c5c0:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a03:c600::,2a03:c600:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:c640::,2a03:c640:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:c680::,2a03:c680:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:c6c0::,2a03:c6c0:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:c700::,2a03:c700:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:c740::,2a03:c740:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a03:c780::,2a03:c780:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:c7c0::,2a03:c7c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:c800::,2a03:c800:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a03:c840::,2a03:c840:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a03:c880::,2a03:c880:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:c8c0::,2a03:c8c0:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:c900::,2a03:c900:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:c940::,2a03:c940:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:c980::,2a03:c980:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:c9c0::,2a03:c9c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:ca00::,2a03:ca00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:ca40::,2a03:ca40:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:ca80::,2a03:ca87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:cac0::,2a03:cac0:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a03:cb00::,2a03:cb00:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a03:cb40::,2a03:cb40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:cb80::,2a03:cb87:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a03:cbc0::,2a03:cbc7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:cc00::,2a03:cc00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:cc40::,2a03:cc40:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:cc80::,2a03:cc87:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a03:ccc0::,2a03:ccc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:cd00::,2a03:cd00:ffff:ffff:ffff:ffff:ffff:ffff,US 2a03:cd40::,2a03:cd40:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:cd80::,2a03:cd80:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a03:cdc0::,2a03:cdc0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:ce00::,2a03:ce00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:ce40::,2a03:ce47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:ce80::,2a03:ce80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:cec0::,2a03:cec0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:cf00::,2a03:cf00:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:cf40::,2a03:cf40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:cf80::,2a03:cf80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:cfc0::,2a03:cfc0:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:d000::,2a03:d007:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:d040::,2a03:d040:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:d080::,2a03:d080:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:d0c0::,2a03:d0c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:d100::,2a03:d100:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:d140::,2a03:d140:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:d180::,2a03:d180:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a03:d1c0::,2a03:d1c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:d200::,2a03:d200:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:d240::,2a03:d240:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a03:d280::,2a03:d280:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:d2c0::,2a03:d2c0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:d300::,2a03:d300:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:d340::,2a03:d340:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:d380::,2a03:d380:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:d3c0::,2a03:d3c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:d400::,2a03:d400:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:d440::,2a03:d440:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a03:d480::,2a03:d480::ffff:ffff:ffff:ffff:ffff,GB 2a03:d480:1::,2a03:d480:1:7fff:ffff:ffff:ffff:ffff,IM 2a03:d480:1:8000::,2a03:d480:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:d4c0::,2a03:d4c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:d500::,2a03:d500:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:d540::,2a03:d540:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:d580::,2a03:d587:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:d5c0::,2a03:d5c0:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a03:d600::,2a03:d607:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:d640::,2a03:d640:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:d680::,2a03:d680:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:d6c0::,2a03:d6c0:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a03:d700::,2a03:d700:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:d740::,2a03:d740:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:d780::,2a03:d780:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:d7c0::,2a03:d7c7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:d800::,2a03:d800:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:d840::,2a03:d840:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:d880::,2a03:d887:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:d8c0::,2a03:d8c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:d900::,2a03:d900:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:d940::,2a03:d940:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:d980::,2a03:d980:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:da00::,2a03:da00:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a03:da40::,2a03:da40:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:da80::,2a03:da80:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:dac0::,2a03:dac0:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a03:db00::,2a03:db07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:db40::,2a03:db47:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a03:db80::,2a03:db80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:dbc0::,2a03:dbc0:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:dc00::,2a03:dc00:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:dc40::,2a03:dc40:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a03:dc80::,2a03:dc80:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:dcc0::,2a03:dcc0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:dd00::,2a03:dd00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:dd40::,2a03:dd40:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:dd80::,2a03:dd87:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a03:ddc0::,2a03:ddc0:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:de00::,2a03:de00:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:de40::,2a03:de40:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:de80::,2a03:de80:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:dec0::,2a03:dec0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:df00::,2a03:df00:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a03:df40::,2a03:df40:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a03:df80::,2a03:df80:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a03:dfc0::,2a03:dfc0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:e000::,2a03:e000:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:e040::,2a03:e040:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:e080::,2a03:e080:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:e0c0::,2a03:e0c0:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:e100::,2a03:e100:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:e140::,2a03:e140:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:e180::,2a03:e180:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a03:e1c0::,2a03:e1c0:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:e200::,2a03:e200:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:e240::,2a03:e240:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:e280::,2a03:e280:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:e2c0::,2a03:e2c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:e300::,2a03:e300:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:e340::,2a03:e340:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:e380::,2a03:e380:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a03:e3c0::,2a03:e3c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:e400::,2a03:e401:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:e440::,2a03:e440:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:e480::,2a03:e480:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:e4c0::,2a03:e4c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:e500::,2a03:e500:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a03:e540::,2a03:e540:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:e580::,2a03:e587:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:e5c0::,2a03:e5c0:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:e600::,2a03:e600:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:e640::,2a03:e640:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:e680::,2a03:e680:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:e6c0::,2a03:e6c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:e700::,2a03:e700:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:e740::,2a03:e740:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:e780::,2a03:e780:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:e7c0::,2a03:e7c0:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a03:e800::,2a03:e800:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:e840::,2a03:e840:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:e880::,2a03:e880:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:e8c0::,2a03:e8c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:e900::,2a03:e900:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:e940::,2a03:e940:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a03:e9c0::,2a03:e9c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:ea00::,2a03:ea00:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:ea40::,2a03:ea40:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:ea80::,2a03:ea80:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:eac0::,2a03:eac0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:eb00::,2a03:eb00:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a03:eb40::,2a03:eb40:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:eb80::,2a03:eb80:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a03:ebc0::,2a03:ebc0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:ec00::,2a03:ec00:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a03:ec40::,2a03:ec40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:ec80::,2a03:ec80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:ecc0::,2a03:ecc0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:ed00::,2a03:ed00:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:ed40::,2a03:ed40:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:ed80::,2a03:ed80:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:edc0::,2a03:edc0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:ee00::,2a03:ee00:ffff:ffff:ffff:ffff:ffff:ffff,FO 2a03:ee40::,2a03:ee40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:ee80::,2a03:ee80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:eec0::,2a03:eec0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:ef00::,2a03:ef00:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:ef40::,2a03:ef40:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a03:ef80::,2a03:ef80:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a03:f000::,2a03:f000:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a03:f040::,2a03:f040:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a03:f080::,2a03:f080:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:f0c0::,2a03:f0c0:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:f100::,2a03:f100:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:f140::,2a03:f140:ffff:ffff:ffff:ffff:ffff:ffff,NC 2a03:f180::,2a03:f180:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a03:f1c0::,2a03:f1c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:f200::,2a03:f200:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:f240::,2a03:f240:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:f280::,2a03:f280:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:f2c0::,2a03:f2c0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:f300::,2a03:f300:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a03:f340::,2a03:f340:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a03:f380::,2a03:f380:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:f3c0::,2a03:f3c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:f400::,2a03:f400:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a03:f440::,2a03:f440:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:f480::,2a03:f480:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a03:f4c0::,2a03:f4c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:f500::,2a03:f500:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:f540::,2a03:f540:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:f580::,2a03:f580:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:f5c0::,2a03:f5c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:f600::,2a03:f600:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a03:f640::,2a03:f640:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:f680::,2a03:f680:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a03:f6c0::,2a03:f6c0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a03:f700::,2a03:f700:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:f740::,2a03:f740:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a03:f780::,2a03:f780:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a03:f7c0::,2a03:f7c0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:f800::,2a03:f800:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a03:f840::,2a03:f840:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:f880::,2a03:f880:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:f8c0::,2a03:f8c0:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a03:f900::,2a03:f907:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:f940::,2a03:f940:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a03:f980::,2a03:f980:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a03:f9c0::,2a03:f9c0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:fa00::,2a03:fa00:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:fa40::,2a03:fa40:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a03:fa80::,2a03:fa80:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a03:fac0::,2a03:fac7:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a03:fb00::,2a03:fb00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:fb40::,2a03:fb40:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:fb80::,2a03:fb80:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a03:fbc0::,2a03:fbc0:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:fc00::,2a03:fc07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a03:fc40::,2a03:fc40:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a03:fc80::,2a03:fc80:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:fcc0::,2a03:fcc0:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:fd00::,2a03:fd00:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a03:fd40::,2a03:fd40:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a03:fd80::,2a03:fd80:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a03:fdc0::,2a03:fdc0:ffff:ffff:ffff:ffff:ffff:ffff,GL 2a03:fe00::,2a03:fe00:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:fe40::,2a03:fe40:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:fe80::,2a03:fe80:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a03:fec0::,2a03:fec0:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a03:ff00::,2a03:ff00:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a03:ff40::,2a03:ff40:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a03:ffc0::,2a03:ffc0:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a04::,2a04:7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:40::,2a04:47:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:80::,2a04:87:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:c0::,2a04:c7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:100::,2a04:107:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:140::,2a04:147:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:180::,2a04:187:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:1c0::,2a04:1c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:200::,2a04:207:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:240::,2a04:247:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a04:280::,2a04:287:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:2c0::,2a04:2c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:300::,2a04:307:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:340::,2a04:347:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a04:380::,2a04:387:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:3c0::,2a04:3c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:400::,2a04:407:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:440::,2a04:447:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:480::,2a04:487:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:4c0::,2a04:4c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:500::,2a04:507:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:540::,2a04:547:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:580::,2a04:587:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:5c0::,2a04:5c3:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:5e0::,2a04:5e3:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:600::,2a04:607:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:640::,2a04:647:ffff:ffff:ffff:ffff:ffff:ffff,VA 2a04:680::,2a04:687:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a04:6c0::,2a04:6c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:700::,2a04:707:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:740::,2a04:747:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:780::,2a04:787:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:7c0::,2a04:7c7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:800::,2a04:807:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:840::,2a04:847:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:880::,2a04:887:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:8c0::,2a04:8c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:900::,2a04:907:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a04:940::,2a04:947:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a04:980::,2a04:987:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:9c0::,2a04:9c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:a00::,2a04:a07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:a40::,2a04:a47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:a80::,2a04:a87:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:b00::,2a04:b07:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a04:b40::,2a04:b47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:b80::,2a04:b87:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a04:bc0::,2a04:bc7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:c00::,2a04:c07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:c40::,2a04:c47:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:c80::,2a04:c87:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:cc0::,2a04:cc7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:d00::,2a04:d07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:d40::,2a04:d47:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:d80::,2a04:d87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:dc0::,2a04:dc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:e00::,2a04:e07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:e40::,2a04:e47:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:e80::,2a04:e87:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:ec0::,2a04:ec7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:f00::,2a04:f07:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:f40::,2a04:f47:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:f80::,2a04:f87:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:fc0::,2a04:fc7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:1000::,2a04:1007:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:1040::,2a04:1047:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:1080::,2a04:1087:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:10c0::,2a04:10c7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:1100::,2a04:1103:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:1120::,2a04:1123:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:1140::,2a04:1143:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:1160::,2a04:1161:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a04:1170::,2a04:1171:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:1180::,2a04:1187:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:11c0::,2a04:11c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:1200::,2a04:1207:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:1240::,2a04:1247:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:1280::,2a04:1287:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:12c0::,2a04:12c7:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a04:1300::,2a04:1307:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:1340::,2a04:1347:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:1380::,2a04:1387:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:13c0::,2a04:13c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:1400::,2a04:1407:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:1440::,2a04:1447:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:1480::,2a04:1487:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a04:14c0::,2a04:14c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:1500::,2a04:1507:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:1540::,2a04:1547:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:1580::,2a04:1587:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a04:15c0::,2a04:15c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:1600::,2a04:1607:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:1640::,2a04:1647:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:1680::,2a04:1687:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:16c0::,2a04:16c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:1700::,2a04:1707:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:1740::,2a04:1747:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:1780::,2a04:1787:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:17c0::,2a04:17c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:1800::,2a04:1807:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:1840::,2a04:1847:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:1880::,2a04:1887:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:18c0::,2a04:18c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:1900::,2a04:1907:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:1940::,2a04:1947:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:1980::,2a04:1987:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:19c0::,2a04:19c7:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a04:1a00::,2a04:1a07:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:1a40::,2a04:1a47:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:1a80::,2a04:1a87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:1ac0::,2a04:1ac7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:1b00::,2a04:1b07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:1b40::,2a04:1b47:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:1b80::,2a04:1b87:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:1bc0::,2a04:1bc7:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a04:1c00::,2a04:1c07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:1c40::,2a04:1c47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:1c80::,2a04:1c87:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:1cc0::,2a04:1cc7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:1d00::,2a04:1d07:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:1d40::,2a04:1d47:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:1d80::,2a04:1d87:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:1dc0::,2a04:1dc7:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a04:1e00::,2a04:1e07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:1e40::,2a04:1e47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:1e80::,2a04:1e87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:1ec0::,2a04:1ec7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:1f00::,2a04:1f03:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:1f20::,2a04:1f23:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:1f40::,2a04:1f47:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:1f80::,2a04:1f87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:1fc0::,2a04:1fc7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:2000::,2a04:2007:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:2040::,2a04:2047:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a04:2080::,2a04:2087:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:20c0::,2a04:20c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:2100::,2a04:2107:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:2140::,2a04:2147:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:2180::,2a04:2187:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a04:21c0::,2a04:21c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:2200::,2a04:2207:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:2240::,2a04:2247:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:2280::,2a04:2287:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:22c0::,2a04:22c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:2300::,2a04:2307:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:2340::,2a04:2347:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:2380::,2a04:2387:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a04:23c0::,2a04:23c7:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a04:2400::,2a04:241f:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a04:2500::,2a04:2507:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:2540::,2a04:2547:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:2580::,2a04:2587:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:25c0::,2a04:25c7:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a04:2600::,2a04:2607:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a04:2640::,2a04:2647:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:2680::,2a04:2687:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:26c0::,2a04:26c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:2700::,2a04:2707:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:2740::,2a04:2747:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:2780::,2a04:2787:ffff:ffff:ffff:ffff:ffff:ffff,TJ 2a04:27c0::,2a04:27c7:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a04:2800::,2a04:2807:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:2840::,2a04:2847:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:2880::,2a04:2883:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:28a0::,2a04:28a0:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a04:28b0::,2a04:28b1:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:28c0::,2a04:28c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:2900::,2a04:2907:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:2940::,2a04:2947:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:2980::,2a04:2987:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a04:29c0::,2a04:29c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:2a00::,2a04:2a07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:2a40::,2a04:2a47:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:2a80::,2a04:2a87:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:2ac0::,2a04:2ac7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:2b00::,2a04:2b07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:2b40::,2a04:2b47:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:2b80::,2a04:2b87:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a04:2bc0::,2a04:2bc7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:2c00::,2a04:2c07:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:2c40:7::,2a04:2c40:7:7fff:ffff:ffff:ffff:ffff,FR 2a04:2c80::,2a04:2c87:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:2cc0::,2a04:2cc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:2d00::,2a04:2d07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:2d40::,2a04:2d47:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:2d80::,2a04:2d87:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:2dc0::,2a04:2dc7:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a04:2e00::,2a04:2e07:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a04:2e40::,2a04:2e47:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a04:2e80::,2a04:2e87:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a04:2ec0::,2a04:2ec7:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a04:2f00::,2a04:2f07:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:2f40::,2a04:2f47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:2f80::,2a04:2f87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:2fc0::,2a04:2fc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:3000::,2a04:3007:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:3040::,2a04:3047:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a04:3080::,2a04:3087:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a04:30c0::,2a04:30c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:3100::,2a04:3107:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a04:3140::,2a04:3147:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:3180::,2a04:3187:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:31c0::,2a04:31c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:3200::,2a04:3207:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:3240::,2a04:3247:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:3280::,2a04:3287:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:32c0::,2a04:32c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:3300::,2a04:3307:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:3340::,2a04:3347:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a04:3380::,2a04:3387:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:33c0::,2a04:33c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:3400::,2a04:3407:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a04:3440::,2a04:3447:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:3480::,2a04:3487:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:34c0::,2a04:34c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:3500::,2a04:3507:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a04:3540::,2a04:3547:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a04:3580::,2a04:3587:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a04:35c0::,2a04:35c7:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a04:3600::,2a04:3607:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:3640::,2a04:3647:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:3680::,2a04:3687:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:36c0::,2a04:36c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:3700::,2a04:3707:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a04:3740::,2a04:3747:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:3780::,2a04:3787:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:3800::,2a04:3807:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:3840::,2a04:3847:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:3880::,2a04:3883:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:38a0::,2a04:38a3:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:38c0::,2a04:38c7:ffff:ffff:ffff:ffff:ffff:ffff,JE 2a04:3900::,2a04:3907:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:3940::,2a04:3947:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:3980::,2a04:3987:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:39c0::,2a04:39c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:3a00::,2a04:3a07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:3a40::,2a04:3a40:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:3a50::,2a04:3a51:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:3a60::,2a04:3a63:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:3a80::,2a04:3a87:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a04:3ac0::,2a04:3ac7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:3b00::,2a04:3b07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:3b40::,2a04:3b47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:3b80::,2a04:3b87:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:3bc0::,2a04:3bc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:3c00::,2a04:3c07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:3c40::,2a04:3c47:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a04:3c80::,2a04:3c87:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:3cc0::,2a04:3cc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:3d00::,2a04:3d07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:3d40::,2a04:3d47:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:3d80::,2a04:3d87:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:3dc0::,2a04:3dc7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:3e00::,2a04:3e07:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a04:3e40::,2a04:3e47:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:3e80::,2a04:3e87:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a04:3ec0::,2a04:3ec7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:3f00::,2a04:3f07:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:3f40::,2a04:3f47:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:3f80::,2a04:3f87:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a04:3fc0::,2a04:3fc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:4000::,2a04:4007:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:4040::,2a04:4047:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:4080::,2a04:4087:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:40c0::,2a04:40c7:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a04:4100::,2a04:4107:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:4140::,2a04:4147:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:4180::,2a04:4187:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:41c0::,2a04:41c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:4200::,2a04:4207:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:4240::,2a04:4247:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:4280::,2a04:4287:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:42c0::,2a04:42c7:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:4300::,2a04:4307:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:4340::,2a04:4347:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:4380::,2a04:4387:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:43c0::,2a04:43c7:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a04:4400::,2a04:4407:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:4440::,2a04:4447:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:4480::,2a04:4487:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:44c0::,2a04:44c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:4500::,2a04:4507:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:4540::,2a04:4547:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:4580::,2a04:4587:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:45c0::,2a04:45c7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:4600::,2a04:4607:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:4640::,2a04:4647:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:4680::,2a04:4687:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:46c0::,2a04:46c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:4700::,2a04:4703:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:4720::,2a04:4723:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a04:4740::,2a04:4747:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:4780::,2a04:4787:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a04:47c0::,2a04:47c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:4800::,2a04:4807:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:4840::,2a04:4847:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:4880::,2a04:4887:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a04:48c0::,2a04:48c7:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a04:4900::,2a04:4907:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:4940::,2a04:4947:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:4980::,2a04:4987:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:49c0::,2a04:49c7:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a04:4a00::,2a04:4a07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:4a40::,2a04:4a47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:4a80::,2a04:4a87:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a04:4ac0::,2a04:4ac7:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a04:4b00::,2a04:4b07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:4b40::,2a04:4b47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:4b80::,2a04:4b87:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a04:4bc0::,2a04:4bc7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:4c00::,2a04:4c07:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a04:4c40::,2a04:4c47:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:4c80::,2a04:4c87:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:4cc0::,2a04:4cc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:4d00::,2a04:4d07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:4d40::,2a04:4d47:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a04:4d80::,2a04:4d87:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:4dc0::,2a04:4dc7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:4e00::,2a04:4e07:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a04:4e80::,2a04:4e87:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:4ec0::,2a04:4ec7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:4f00::,2a04:4f07:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:4f40::,2a04:4f47:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a04:4f80::,2a04:4f87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:4fc0::,2a04:4fc3:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:4fe0::,2a04:4fe3:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:5000::,2a04:5007:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:5040::,2a04:5047:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:5080::,2a04:5087:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:50c0::,2a04:50c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:5100::,2a04:5107:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:5140::,2a04:5147:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:5180::,2a04:5187:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:51c0::,2a04:51c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:5200::,2a04:5207:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:5240::,2a04:5247:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:5280::,2a04:5287:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a04:52c0::,2a04:52c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:5300::,2a04:5307:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:5340::,2a04:5347:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:5380::,2a04:5387:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:53c0::,2a04:53c7:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a04:5400::,2a04:5407:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a04:5480::,2a04:5487:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:54c0::,2a04:54c7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:5500::,2a04:5507:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:5540::,2a04:5547:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:5580::,2a04:5587:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:55c0::,2a04:55c7:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a04:5600::,2a04:5607:ffff:ffff:ffff:ffff:ffff:ffff,KG 2a04:5640::,2a04:5647:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:5680::,2a04:5687:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:56c0::,2a04:56c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:5700::,2a04:5707:ffff:ffff:ffff:ffff:ffff:ffff,LI 2a04:5740::,2a04:5747:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:5780::,2a04:5787:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:57c0::,2a04:57c7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:5800::,2a04:5807:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:5880::,2a04:5887:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:58c0::,2a04:58c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:5900::,2a04:5907:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a04:5940::,2a04:5947:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:5980::,2a04:5987:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a04:59c0::,2a04:59c7:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a04:5a00::,2a04:5a07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:5a40::,2a04:5a47:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:5a80::,2a04:5a87:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a04:5ac0::,2a04:5ac7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:5b00::,2a04:5b07:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a04:5b40::,2a04:5b47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:5b80::,2a04:5b87:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:5bc0::,2a04:5bc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:5c00::,2a04:5c07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:5c40::,2a04:5c47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:5c80::,2a04:5c87:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:5cc0::,2a04:5cc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:5d00::,2a04:5d07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:5d40::,2a04:5d47:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:5d80::,2a04:5d87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:5dc0::,2a04:5dc7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:5e00::,2a04:5e07:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a04:5e40::,2a04:5e47:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a04:5e80::,2a04:5e87:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:5ec0::,2a04:5ec7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:5f00::,2a04:5f07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:5f40::,2a04:5f47:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a04:5f80::,2a04:5f87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:5fc0::,2a04:5fc7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:6000::,2a04:6007:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:6040::,2a04:6047:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:6080::,2a04:6087:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:60c0::,2a04:60c7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:6100::,2a04:6107:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:6140::,2a04:6147:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:6180::,2a04:6187:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a04:61c0::,2a04:61c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:6200::,2a04:6207:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a04:6240::,2a04:6247:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:6280::,2a04:6287:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:62c0::,2a04:62c7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:6300::,2a04:6307:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:6340::,2a04:6347:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:6380::,2a04:6387:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:63c0::,2a04:63c7:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a04:6440::,2a04:6447:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:6480::,2a04:6487:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a04:64c0::,2a04:64c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:6500::,2a04:6507:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a04:6540::,2a04:6547:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:6580::,2a04:6587:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:65c0::,2a04:65c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:6600::,2a04:6607:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:6640::,2a04:6647:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:6650::,2a04:6651:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:6680::,2a04:6687:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:66c0::,2a04:66c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:6700::,2a04:6707:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a04:6740::,2a04:6747:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:6780::,2a04:6787:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:67c0::,2a04:67c7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:6800::,2a04:6807:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a04:6840::,2a04:6847:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:6880::,2a04:6887:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:68c0::,2a04:68c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:6900::,2a04:6907:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:6940::,2a04:6947:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:6980::,2a04:6987:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a04:69c0::,2a04:69c7:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a04:6a00::,2a04:6a07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:6a40::,2a04:6a47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:6a80::,2a04:6a87:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:6ac0::,2a04:6ac7:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:6b00::,2a04:6b07:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a04:6b40::,2a04:6b47:ffff:ffff:ffff:ffff:ffff:ffff,GG 2a04:6b80::,2a04:6b87:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:6bc0::,2a04:6bc7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:6c00::,2a04:6c07:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:6c40::,2a04:6c47:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a04:6c80::,2a04:6c87:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a04:6cc0::,2a04:6cc7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:6d00::,2a04:6d07:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:6d40::,2a04:6d47:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:6d80::,2a04:6d87:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a04:6dc0::,2a04:6dc7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:6e00::,2a04:6e07:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:6e40::,2a04:6e47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:6e80::,2a04:6e87:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a04:6ec0::,2a04:6ec7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:6f00::,2a04:6f07:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:6f40::,2a04:6f47:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:6f80::,2a04:6f83:ffff:ffff:ffff:ffff:ffff:ffff,QA 2a04:6fa0::,2a04:6fa1:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:6fb0::,2a04:6fb1:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:6fc0::,2a04:6fc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:7000::,2a04:7007:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a04:7040::,2a04:7047:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:7080::,2a04:7087:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a04:70c0::,2a04:70c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:7100::,2a04:7107:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:7140::,2a04:7147:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:7180::,2a04:7187:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:71c0::,2a04:71c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:7200::,2a04:7207:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:7240::,2a04:7247:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:7280::,2a04:7287:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:72c0::,2a04:72c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:7300::,2a04:7307:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:7340::,2a04:7347:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:7380::,2a04:7387:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:7400::,2a04:7407:ffff:ffff:ffff:ffff:ffff:ffff,ME 2a04:7440::,2a04:7447:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:7480::,2a04:7487:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:74c0::,2a04:74c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:7500::,2a04:7507:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:7540::,2a04:7547:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:7580::,2a04:7587:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a04:75c0::,2a04:75c7:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:7600::,2a04:7607:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:7640::,2a04:7647:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:7680::,2a04:7687:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:76c0::,2a04:76c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:7700::,2a04:7707:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:7740::,2a04:7747:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a04:7780::,2a04:7787:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:77c0::,2a04:77c7:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a04:7800::,2a04:7807:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a04:7840::,2a04:7847:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:7880::,2a04:7887:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:78c0::,2a04:78c3:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:78e0::,2a04:78e3:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:7900::,2a04:7907:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:7940::,2a04:7947:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:7980::,2a04:7987:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a04:79c0::,2a04:79c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:7a00::,2a04:7a07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:7a40::,2a04:7a47:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:7a80::,2a04:7a87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:7ac0::,2a04:7ac7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:7b00::,2a04:7b07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:7b40::,2a04:7b47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:7bc0::,2a04:7bc7:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a04:7c00::,2a04:7c07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:7c40::,2a04:7c47:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:7c80::,2a04:7c87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:7cc0::,2a04:7cc7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:7d00::,2a04:7d07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:7d40::,2a04:7d47:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:7d80::,2a04:7d87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:7dc0::,2a04:7dc7:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:7e00::,2a04:7e07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:7e40::,2a04:7e47:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:7e80::,2a04:7e87:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a04:7ec0::,2a04:7ec7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:7f00::,2a04:7f07:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a04:7f40::,2a04:7f47:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:7fc0::,2a04:7fc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:8000::,2a04:8007:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:8040::,2a04:8047:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:8080::,2a04:8087:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:80c0::,2a04:80c7:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a04:8100::,2a04:8107:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:8140::,2a04:8147:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:8180::,2a04:8181:ffff:ffff:ffff:ffff:ffff:ffff,SY 2a04:8190::,2a04:8191:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:81a0::,2a04:81a7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:81c0::,2a04:81c7:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a04:8200::,2a04:8207:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:8240::,2a04:8247:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:8280::,2a04:8287:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:82c0::,2a04:82c7:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a04:8300::,2a04:8307:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a04:8340::,2a04:8347:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:8380::,2a04:8387:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a04:83c0::,2a04:83c7:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a04:8400::,2a04:8407:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:8440::,2a04:8447:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:8480::,2a04:8487:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:84c0::,2a04:84c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:8500::,2a04:8507:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:8540::,2a04:8547:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:8580::,2a04:8587:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:85c0::,2a04:85c7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:8600::,2a04:8607:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:8640::,2a04:8647:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:8680::,2a04:8687:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:86c0::,2a04:86c7:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a04:8700::,2a04:8707:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a04:8740::,2a04:8747:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:8780::,2a04:8787:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:87c0::,2a04:87c7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:8800::,2a04:8807:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:8840::,2a04:8847:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:8880::,2a04:8887:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:88c0::,2a04:88c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:8900::,2a04:8907:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:8940::,2a04:8947:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a04:8980::,2a04:8987:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:89c0::,2a04:89c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:8a00::,2a04:8a07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:8a40::,2a04:8a47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:8a80::,2a04:8a87:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a04:8ac0::,2a04:8ac7:ffff:ffff:ffff:ffff:ffff:ffff,BH 2a04:8b00::,2a04:8b07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:8b40::,2a04:8b47:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:8b80::,2a04:8b87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:8bc0::,2a04:8bc7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:8c00::,2a04:8c07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:8c40::,2a04:8c47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:8c80::,2a04:8c87:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a04:8cc0::,2a04:8cc7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:8d00::,2a04:8d07:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a04:8d40::,2a04:8d47:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:8d80::,2a04:8d87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:8dc0::,2a04:8dc7:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a04:8e40::,2a04:8e47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:8e80::,2a04:8e81:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:8e90::,2a04:8e91:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:8ea0::,2a04:8ea3:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:8f00::,2a04:8f07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:8f40::,2a04:8f47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:8f80::,2a04:8f87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:8fc0::,2a04:8fc7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:9000::,2a04:9007:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:9040::,2a04:9047:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:9080::,2a04:9087:ffff:ffff:ffff:ffff:ffff:ffff,SY 2a04:90c0::,2a04:90c7:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a04:9100::,2a04:9107:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a04:9140::,2a04:9147:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:9180::,2a04:9187:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a04:91c0::,2a04:91c7:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a04:9240::,2a04:9247:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:9280::,2a04:9287:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:92c0::,2a04:92c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:9300::,2a04:9307:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:9340::,2a04:9347:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:9380::,2a04:9387:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:93c0::,2a04:93c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:9400::,2a04:9407:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:9440::,2a04:9447:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:9480::,2a04:9487:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:94e0::,2a04:94e3:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:9500::,2a04:9507:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:9540::,2a04:9547:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:9580::,2a04:9587:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:95c0::,2a04:95c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:9600::,2a04:9607:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:9640::,2a04:9647:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a04:9680::,2a04:9687:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:96c0::,2a04:96c7:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a04:9700::,2a04:9707:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:9740::,2a04:9747:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:9780::,2a04:9787:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:97c0::,2a04:97c7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:9800::,2a04:9807:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:9840::,2a04:9847:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a04:9880::,2a04:9887:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:98c0::,2a04:98c7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:9900::,2a04:9907:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:9940::,2a04:9947:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a04:9980::,2a04:9987:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:99c0::,2a04:99c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:9a00::,2a04:9a07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:9a40::,2a04:9a47:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:9a80::,2a04:9a87:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:9ac0::,2a04:9ac7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:9b00::,2a04:9b07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:9b40::,2a04:9b47:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a04:9b80::,2a04:9b87:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:9bc0::,2a04:9bc7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:9c00::,2a04:9c07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:9c40::,2a04:9c47:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:9c80::,2a04:9c87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:9cc0::,2a04:9cc7:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a04:9d00::,2a04:9d07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:9d40::,2a04:9d47:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a04:9d80::,2a04:9d87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:9dc0::,2a04:9dc7:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a04:9e00::,2a04:9e07:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:9e40::,2a04:9e47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:9e80::,2a04:9e87:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:9ec0::,2a04:9ec7:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a04:9f00::,2a04:9f07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:9f40::,2a04:9f47:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:9f80::,2a04:9f87:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a04:9fc0::,2a04:9fc7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:a000::,2a04:a007:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:a040::,2a04:a047:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a04:a080::,2a04:a087:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:a0c0::,2a04:a0c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:a100::,2a04:a107:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:a140::,2a04:a147:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:a180::,2a04:a187:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:a1c0::,2a04:a1c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:a200::,2a04:a207:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:a240::,2a04:a247:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:a280::,2a04:a287:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:a2c0::,2a04:a2c7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:a300::,2a04:a307:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:a340::,2a04:a347:ffff:ffff:ffff:ffff:ffff:ffff,SM 2a04:a380::,2a04:a387:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a04:a3c0::,2a04:a3c7:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a04:a400::,2a04:a407:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:a440::,2a04:a440:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:a450::,2a04:a451:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:a460::,2a04:a461:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:a470::,2a04:a471:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a04:a480::,2a04:a487:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:a4c0::,2a04:a4c7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:a500::,2a04:a507:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:a540::,2a04:a547:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:a580::,2a04:a587:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:a5c0::,2a04:a5c7:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a04:a600::,2a04:a607:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a04:a640::,2a04:a647:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:a680::,2a04:a687:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:a6c0::,2a04:a6c7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:a700::,2a04:a707:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:a740::,2a04:a747:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:a780::,2a04:a787:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:a7c0::,2a04:a7c7:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a04:a800::,2a04:a807:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a04:a840::,2a04:a847:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:a880::,2a04:a887:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a04:a8c0::,2a04:a8c7:ffff:ffff:ffff:ffff:ffff:ffff,US 2a04:a900::,2a04:a907:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:a940::,2a04:a947:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:a980::,2a04:a987:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:a9c0::,2a04:a9c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:aa00::,2a04:aa07:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:aa40::,2a04:aa47:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:aa80::,2a04:aa87:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a04:aac0::,2a04:aac7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:ab00::,2a04:ab07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:ab40::,2a04:ab47:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:ab80::,2a04:ab87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:abc0::,2a04:abc7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:ac00::,2a04:ac07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:ac80::,2a04:ac87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:acc0::,2a04:acc7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:ad00::,2a04:ad07:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a04:ad40::,2a04:ad47:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a04:ad80::,2a04:ad80::7fff:ffff:ffff:ffff:ffff,NL 2a04:ad80:0:8000::,2a04:ad87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:adc0::,2a04:adc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:ae00::,2a04:ae3f:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:b000::,2a04:b007:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:b040::,2a04:b047:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:b080::,2a04:b087:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a04:b0c0::,2a04:b0c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:b100::,2a04:b107:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:b140::,2a04:b147:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:b180::,2a04:b187:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:b1c0::,2a04:b1c7:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a04:b200::,2a04:b207:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:b240::,2a04:b247:ffff:ffff:ffff:ffff:ffff:ffff,IM 2a04:b280::,2a04:b287:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:b2c0::,2a04:b2c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:b300::,2a04:b307:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:b340::,2a04:b347:ffff:ffff:ffff:ffff:ffff:ffff,KG 2a04:b380::,2a04:b387:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:b3c0::,2a04:b3c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:b400::,2a04:b407:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:b440::,2a04:b447:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:b480::,2a04:b487:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a04:b4c0::,2a04:b4c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:b500::,2a04:b507:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:b540::,2a04:b547:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a04:b580::,2a04:b587:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:b5c0::,2a04:b5c7:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a04:b640::,2a04:b647:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:b680::,2a04:b687:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:b6c0::,2a04:b6c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:b700::,2a04:b707:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:b740::,2a04:b747:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:b780::,2a04:b787:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:b7c0::,2a04:b7c7:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a04:b800::,2a04:b807:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:b840::,2a04:b847:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:b880::,2a04:b887:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:b8c0::,2a04:b8c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:b900::,2a04:b907:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:b940::,2a04:b947:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:b980::,2a04:b987:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a04:b9c0::,2a04:b9c7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:ba00::,2a04:ba07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:ba40::,2a04:ba47:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:ba80::,2a04:ba87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:bac0::,2a04:bac7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:bb00::,2a04:bb07:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:bb40::,2a04:bb47:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:bb80::,2a04:bb87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:bbc0::,2a04:bbc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:bc00::,2a04:bc07:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a04:bc40::,2a04:bc47:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:bc80::,2a04:bc87:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a04:bcc0::,2a04:bcc7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:bd00::,2a04:bd07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:bd40::,2a04:bd47:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:bd80::,2a04:bd87:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a04:bdc0::,2a04:bdc7:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a04:be00::,2a04:be03:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:be20::,2a04:be23:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:be40::,2a04:be47:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:be80::,2a04:be87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:bec0::,2a04:bec7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:bf00::,2a04:bf07:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:bf40::,2a04:bf47:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a04:bfc0::,2a04:bfc7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:c000::,2a04:c007:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:c040::,2a04:c047:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:c080::,2a04:c087:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:c0c0::,2a04:c0c7:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a04:c100::,2a04:c107:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:c140::,2a04:c147:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:c180::,2a04:c187:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a04:c1c0::,2a04:c1c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:c200::,2a04:c207:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a04:c240::,2a04:c247:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:c280::,2a04:c287:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a04:c2c0::,2a04:c2c7:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a04:c300::,2a04:c307:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:c340::,2a04:c347:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:c380::,2a04:c387:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:c3c0::,2a04:c3c7:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a04:c400::,2a04:c407:ffff:ffff:ffff:ffff:ffff:ffff,OM 2a04:c440::,2a04:c447:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:c480::,2a04:c487:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:c4c0::,2a04:c4c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:c500::,2a04:c507:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:c540::,2a04:c547:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:c580::,2a04:c587:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:c5c0::,2a04:c5c7:ffff:ffff:ffff:ffff:ffff:ffff,US 2a04:c600::,2a04:c607:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:c640::,2a04:c647:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:c680::,2a04:c687:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:c700::,2a04:c707:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:c740::,2a04:c747:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a04:c780::,2a04:c787:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:c7c0::,2a04:c7c7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:c800::,2a04:c807:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:c840::,2a04:c847:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a04:c880::,2a04:c887:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:c8c0::,2a04:c8c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:c900::,2a04:c907:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:c940::,2a04:c947:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:c980::,2a04:c987:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:c9c0::,2a04:c9c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:ca00::,2a04:ca07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:ca40::,2a04:ca47:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:ca80::,2a04:ca87:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:cac0::,2a04:cac7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:cb00::,2a04:cb07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:cb40::,2a04:cb47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:cb80::,2a04:cb87:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a04:cbc0::,2a04:cbc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:cc00::,2a04:cc07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:cc40::,2a04:cc47:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a04:cc80::,2a04:cc87:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a04:ccc0::,2a04:ccc7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:cd00::,2a04:cd07:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:cd40::,2a04:cd47:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:cd80::,2a04:cd87:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:cdc0::,2a04:cdc7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:ce00::,2a04:ce07:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a04:ce40::,2a04:ce47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:ce80::,2a04:ce87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:cec0::,2a04:cec7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:cf00::,2a04:cf07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:cf40::,2a04:cf47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:cf80::,2a04:cf87:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a04:cfc0::,2a04:cfc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:d000::,2a04:d007:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:d040::,2a04:d047:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a04:d080::,2a04:d087:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a04:d0c0::,2a04:d0c7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:d100::,2a04:d107:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a04:d140::,2a04:d147:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:d180::,2a04:d187:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:d1c0::,2a04:d1c7:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a04:d200::,2a04:d207:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:d240::,2a04:d247:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:d280::,2a04:d287:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:d2c0::,2a04:d2c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:d300::,2a04:d307:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:d340::,2a04:d347:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:d380::,2a04:d387:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a04:d3c0::,2a04:d3c7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:d400::,2a04:d407:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a04:d440::,2a04:d447:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:d480::,2a04:d487:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:d4c0::,2a04:d4c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:d500::,2a04:d507:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a04:d540::,2a04:d547:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:d5c0::,2a04:d5c7:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a04:d600::,2a04:d607:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:d640::,2a04:d647:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a04:d680::,2a04:d687:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:d6c0::,2a04:d6c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:d700::,2a04:d707:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:d740::,2a04:d747:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:d780::,2a04:d787:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:d7c0::,2a04:d7c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:d800::,2a04:d807:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:d840::,2a04:d847:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:d880::,2a04:d887:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:d8c0::,2a04:d8c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:d900::,2a04:d907:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:d940::,2a04:d947:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:d980::,2a04:d987:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a04:d9c0::,2a04:d9c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:da00::,2a04:da07:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a04:da40::,2a04:da47:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:da80::,2a04:da87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:dac0::,2a04:dac7:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a04:db00::,2a04:db07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:db40::,2a04:db47:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a04:db80::,2a04:db87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:dbc0::,2a04:dbc3:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:dbe0::,2a04:dbe3:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a04:dc00::,2a04:dc07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:dc40::,2a04:dc47:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:dc80::,2a04:dc87:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a04:dcc0::,2a04:dcc7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:dd00::,2a04:dd07:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a04:dd40::,2a04:dd47:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a04:dd80::,2a04:dd87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:ddc0::,2a04:ddc7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:de00::,2a04:de07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:de40::,2a04:de47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:de80::,2a04:de87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:dec0::,2a04:dec7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:df00::,2a04:df07:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a04:df40::,2a04:df47:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a04:df80::,2a04:df87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:dfc0::,2a04:dfc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:e040::,2a04:e047:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a04:e080::,2a04:e087:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:e0c0::,2a04:e0c7:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a04:e100::,2a04:e107:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:e140::,2a04:e147:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:e180::,2a04:e187:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:e1c0::,2a04:e1c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:e200::,2a04:e207:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a04:e240::,2a04:e247:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:e280::,2a04:e287:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:e2c0::,2a04:e2c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:e300::,2a04:e307:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:e340::,2a04:e347:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a04:e380::,2a04:e387:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:e3c0::,2a04:e3c7:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a04:e480::,2a04:e487:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:e4c0:10::,2a04:e4c0:10:ffff:ffff:ffff:ffff:ffff,GB 2a04:e4c0:11::,2a04:e4c0:11:ffff:ffff:ffff:ffff:ffff,DE 2a04:e4c0:12::,2a04:e4c0:12:ffff:ffff:ffff:ffff:ffff,FR 2a04:e4c0:13::,2a04:e4c0:13:ffff:ffff:ffff:ffff:ffff,DK 2a04:e4c0:14::,2a04:e4c0:14:ffff:ffff:ffff:ffff:ffff,RO 2a04:e4c0:15::,2a04:e4c0:15:ffff:ffff:ffff:ffff:ffff,CZ 2a04:e4c0:16::,2a04:e4c0:16:ffff:ffff:ffff:ffff:ffff,PL 2a04:e4c0:20::,2a04:e4c0:20:ffff:ffff:ffff:ffff:ffff,JP 2a04:e4c0:30::,2a04:e4c0:30:ffff:ffff:ffff:ffff:ffff,ZA 2a04:e500::,2a04:e507:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:e540::,2a04:e547:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:e580::,2a04:e587:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:e5c0::,2a04:e5c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:e600::,2a04:e607:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:e640::,2a04:e647:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:e680::,2a04:e687:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:e6c0::,2a04:e6c7:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a04:e700::,2a04:e707:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:e740::,2a04:e747:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:e780::,2a04:e787:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:e7c0::,2a04:e7c7:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a04:e800::,2a04:e807:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:e840::,2a04:e847:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:e880::,2a04:e887:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:e8c0::,2a04:e8c7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:e900::,2a04:e907:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:e940::,2a04:e947:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:e980::,2a04:e987:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a04:e9c0::,2a04:e9c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:ea00::,2a04:ea07:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a04:ea40::,2a04:ea47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:ea80::,2a04:ea87:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a04:eac0::,2a04:eac7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:eb00::,2a04:eb07:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a04:eb40::,2a04:eb47:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a04:ebc0::,2a04:ebc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:ec00::,2a04:ec01:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:ec10::,2a04:ec11:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:ec20::,2a04:ec23:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a04:ec40::,2a04:ec47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:ec80::,2a04:ec87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:ecc0::,2a04:ecc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:ed00::,2a04:ed07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:ed40::,2a04:ed47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:ed80::,2a04:ed87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:edc0::,2a04:edc7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:ee00::,2a04:ee07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:ee40::,2a04:ee47:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:ee80::,2a04:ee87:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:eec0::,2a04:eec7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:ef00::,2a04:ef07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:ef40::,2a04:ef47:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:ef80::,2a04:ef87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:efc0::,2a04:efc7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:f000::,2a04:f007:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:f040::,2a04:f047:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a04:f080::,2a04:f087:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:f0c0::,2a04:f0c7:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a04:f100::,2a04:f107:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:f140::,2a04:f147:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a04:f180::,2a04:f187:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a04:f1c0::,2a04:f1c7:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a04:f200::,2a04:f207:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:f240::,2a04:f247:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:f280::,2a04:f287:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a04:f2c0::,2a04:f2c7:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a04:f300::,2a04:f300:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:f310::,2a04:f311:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a04:f320::,2a04:f323:ffff:ffff:ffff:ffff:ffff:ffff,SY 2a04:f340::,2a04:f347:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a04:f380::,2a04:f387:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:f3c0::,2a04:f3c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:f440::,2a04:f447:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a04:f480::,2a04:f487:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a04:f4c0::,2a04:f4c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:f500::,2a04:f507:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:f540::,2a04:f547:ffff:ffff:ffff:ffff:ffff:ffff,US 2a04:f580::,2a04:f587:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:f5c0::,2a04:f5c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:f600::,2a04:f607:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a04:f680::,2a04:f687:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:f740::,2a04:f747:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:f780::,2a04:f787:ffff:ffff:ffff:ffff:ffff:ffff,IN 2a04:f7c0::,2a04:f7c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:f800::,2a04:f807:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:f840::,2a04:f847:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:f880::,2a04:f887:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:f8c0::,2a04:f8c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:f900::,2a04:f907:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a04:f940::,2a04:f947:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a04:f980::,2a04:f987:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a04:f9c0::,2a04:f9c7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:fa00::,2a04:fa07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:fa40::,2a04:fa47:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:fa80::,2a04:fa87:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a04:fac0::,2a04:fac7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:fb00::,2a04:fb07:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a04:fb40::,2a04:fb47:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a04:fb80::,2a04:fb87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:fbc0::,2a04:fbc7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a04:fc00::,2a04:fc07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a04:fc40::,2a04:fc47:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a04:fc80::,2a04:fc87:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a04:fcc0::,2a04:fcc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:fd00::,2a04:fd07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:fd40::,2a04:fd47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a04:fd80::,2a04:fd87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:fdc0::,2a04:fdc7:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a04:fe00::,2a04:fe07:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:fe40::,2a04:fe47:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a04:fe80::,2a04:fe87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a04:fec0::,2a04:fec0:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a04:fee0::,2a04:fee3:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a04:ff00::,2a04:ff07:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a04:ff40::,2a04:ff47:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a04:ff80::,2a04:ff87:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a04:ffc0::,2a04:ffc7:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a05::,2a05:7:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:80::,2a05:87:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:c0::,2a05:c7:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a05:100::,2a05:107:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:140::,2a05:147:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:1c0::,2a05:1c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:200::,2a05:207:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:240::,2a05:247:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:280::,2a05:287:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:2c0::,2a05:2c7:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:300::,2a05:307:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:340::,2a05:347:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:380::,2a05:387:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:3c0::,2a05:3c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:400::,2a05:407:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:440::,2a05:447:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:480::,2a05:487:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a05:4c0::,2a05:4c7:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a05:500::,2a05:507:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a05:540::,2a05:547:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:580::,2a05:587:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a05:5c0::,2a05:5c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:600::,2a05:607:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:640::,2a05:647:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:680::,2a05:687:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:700::,2a05:707:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a05:740::,2a05:747:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:780::,2a05:787:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:7c0::,2a05:7c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:800::,2a05:807:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:840::,2a05:843:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:860::,2a05:863:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:880::,2a05:887:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:8c0::,2a05:8c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:900::,2a05:907:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:940::,2a05:947:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:980::,2a05:987:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a05:9c0::,2a05:9c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:a00::,2a05:a07:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:a40::,2a05:a47:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:a80::,2a05:a87:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:ac0::,2a05:ac7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:b00::,2a05:b07:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a05:b40::,2a05:b47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:b80::,2a05:b87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:bc0::,2a05:bc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:c00::,2a05:c07:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:c80::,2a05:c87:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:cc0::,2a05:cc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:d40::,2a05:d47:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:dc0::,2a05:dc7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:e00::,2a05:e07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:e40::,2a05:e47:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:e80::,2a05:e87:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:ec0::,2a05:ec7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:f00::,2a05:f07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:f40::,2a05:f47:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:f80::,2a05:f87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:1000::,2a05:1007:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:1040::,2a05:1047:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:1080::,2a05:1087:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:10c0::,2a05:10c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:1100::,2a05:1107:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:1140::,2a05:1147:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:1180::,2a05:1187:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:11c0::,2a05:11c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:1200::,2a05:1203:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:1220::,2a05:1223:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:1240::,2a05:1247:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:1280::,2a05:1287:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:12c0::,2a05:12c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:1300::,2a05:1307:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:1340::,2a05:1347:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:1380::,2a05:1387:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:13c0::,2a05:13c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:1400::,2a05:1407:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:1440::,2a05:1447:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:1480::,2a05:1487:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:14c0::,2a05:14c7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:1500::,2a05:1507:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:1540::,2a05:1547:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:1580::,2a05:1587:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a05:15c0::,2a05:15c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:1600::,2a05:1607:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a05:1640::,2a05:1647:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:1680::,2a05:1687:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:16c0::,2a05:16c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:1700::,2a05:1707:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:1740::,2a05:1747:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:1780::,2a05:1787:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:17c0::,2a05:17c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:1800::,2a05:1807:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:1840::,2a05:1847:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a05:1880::,2a05:1887:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:18c0::,2a05:18c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:1900::,2a05:1907:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:1980::,2a05:1987:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:19c0::,2a05:19c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:1a00::,2a05:1a3f:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:1c00::,2a05:1c07:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a05:1c40::,2a05:1c47:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:1c80::,2a05:1c87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:1cc0::,2a05:1cc7:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a05:1d00::,2a05:1d07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:1d40::,2a05:1d43:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:1d60::,2a05:1d63:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:1d80::,2a05:1d87:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:1dc0::,2a05:1dc7:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a05:1e00::,2a05:1e07:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:1ec0::,2a05:1ec7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:1f00::,2a05:1f07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:1f40::,2a05:1f47:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a05:1f80::,2a05:1f87:ffff:ffff:ffff:ffff:ffff:ffff,BA 2a05:1fc0::,2a05:1fc7:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a05:2000::,2a05:2007:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:2080::,2a05:2087:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:20c0::,2a05:20c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:2100::,2a05:2107:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:2140::,2a05:2147:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a05:2180::,2a05:2187:ffff:ffff:ffff:ffff:ffff:ffff,TM 2a05:21c0::,2a05:21c7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:2200::,2a05:2207:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:2240::,2a05:2242:436:ffff:ffff:ffff:ffff:ffff,SE 2a05:2242:437::,2a05:2242:437:7fff:ffff:ffff:ffff:ffff,NO 2a05:2242:437:8000::,2a05:2242:437:ffff:ffff:ffff:ffff:ffff,SE 2a05:2242:438::,2a05:2242:438:7fff:ffff:ffff:ffff:ffff,NO 2a05:2242:438:8000::,2a05:2247:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:2280::,2a05:2287:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a05:22c0::,2a05:22c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:2300::,2a05:2307:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:2340::,2a05:2347:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:2380::,2a05:2387:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:23c0::,2a05:23c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:2400::,2a05:2407:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:2480::,2a05:2487:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a05:24c0::,2a05:24c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:2500::,2a05:2507:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:2540::,2a05:2547:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a05:2580::,2a05:2587:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a05:2600::,2a05:2607:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:2640::,2a05:2647:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:2680::,2a05:2687:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:26c0::,2a05:26c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:2700::,2a05:2707:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:2740::,2a05:2747:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:27c0::,2a05:27c7:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a05:2800::,2a05:2807:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a05:2840::,2a05:2847:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:2880::,2a05:2887:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:28c0::,2a05:28c7:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a05:2900::,2a05:2907:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:2980::,2a05:2987:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:29c0::,2a05:29c7:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a05:2a00::,2a05:2a07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:2a40::,2a05:2a47:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:2a80::,2a05:2a87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:2ac0::,2a05:2ac7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:2b00::,2a05:2b07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:2b40::,2a05:2b47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:2b80::,2a05:2b87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:2bc0::,2a05:2bc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:2c00::,2a05:2c03:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:2c20::,2a05:2c23:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:2c40::,2a05:2c47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:2c80::,2a05:2c87:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a05:2cc0::,2a05:2cc7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:2d00::,2a05:2d07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:2d40::,2a05:2d47:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:2d80::,2a05:2d87:ffff:ffff:ffff:ffff:ffff:ffff,US 2a05:2dc0::,2a05:2dc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:2e00::,2a05:2e07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:2e40::,2a05:2e47:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a05:2e80::,2a05:2e87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:2ec0::,2a05:2ec7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:2f00::,2a05:2f07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:2f40::,2a05:2f47:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a05:2f80::,2a05:2f87:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:2fc0::,2a05:2fc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:3000::,2a05:3007:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:3040::,2a05:3047:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:3080::,2a05:3087:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a05:30c0::,2a05:30c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:3100::,2a05:3107:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a05:3140::,2a05:3147:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:3180::,2a05:3187:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:31c0::,2a05:31c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:3200::,2a05:3207:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:3240::,2a05:3247:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:3280::,2a05:3287:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a05:3300::,2a05:3307:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:3340::,2a05:3347:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:3380::,2a05:3387:ffff:ffff:ffff:ffff:ffff:ffff,YE 2a05:33c0::,2a05:33c7:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a05:3400::,2a05:3407:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:3440::,2a05:3447:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:3480::,2a05:3487:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:34c0::,2a05:34c7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:3500::,2a05:3507:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a05:3540::,2a05:3547:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:3580::,2a05:3587:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:35c0::,2a05:35c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:3600::,2a05:3607:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:3640::,2a05:3647:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:3680::,2a05:3687:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:36c0::,2a05:36c7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:3700::,2a05:3707:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:3740::,2a05:3747:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:3780::,2a05:3787:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:3800::,2a05:3807:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:3840::,2a05:3847:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a05:3880::,2a05:3887:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:38c0::,2a05:38c7:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a05:3900::,2a05:3907:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:3940::,2a05:3941:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:3950::,2a05:3951:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a05:3960::,2a05:3963:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:3980::,2a05:3987:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:39c0::,2a05:39c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:3a00::,2a05:3a07:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:3a40::,2a05:3a47:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a05:3a80::,2a05:3a87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:3ac0::,2a05:3ac7:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a05:3b00::,2a05:3b07:ffff:ffff:ffff:ffff:ffff:ffff,US 2a05:3b40::,2a05:3b47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:3b80::,2a05:3b87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:3bc0::,2a05:3bc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:3c00::,2a05:3c07:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a05:3c40::,2a05:3c47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:3c80::,2a05:3c87:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:3cc0::,2a05:3cc7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:3d00::,2a05:3d07:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:3d40::,2a05:3d47:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:3d80::,2a05:3d87:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:3dc0::,2a05:3dc7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:3e00::,2a05:3e07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:3e40::,2a05:3e47:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:3e80::,2a05:3e87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:3ec0::,2a05:3ec7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:3f00::,2a05:3f07:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:3f40::,2a05:3f47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:3f80::,2a05:3f87:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a05:3fc0::,2a05:3fc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:4000::,2a05:4007:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:4040::,2a05:4047:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:4080::,2a05:4087:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a05:40c0::,2a05:40c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:4100::,2a05:4107:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:4140::,2a05:4147:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:4180::,2a05:4187:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:41c0::,2a05:41c7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:4200::,2a05:4207:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:4240::,2a05:4247:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:4280::,2a05:4287:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a05:42c0::,2a05:42c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:4300::,2a05:4307:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:4340::,2a05:4347:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:4380::,2a05:4387:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:43c0::,2a05:43c7:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:4400::,2a05:4407:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a05:4440::,2a05:4447:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:4480::,2a05:4487:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:44c0::,2a05:44c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:4500::,2a05:4507:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:4540::,2a05:4547:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:45c0::,2a05:45c7:ffff:ffff:ffff:ffff:ffff:ffff,UZ 2a05:4600::,2a05:4607:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a05:4640::,2a05:4647:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:4680::,2a05:4687:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:46c0::,2a05:46c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:4700::,2a05:4707:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:4740::,2a05:4747:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:4780::,2a05:4787:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:47c0::,2a05:47c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:4800::,2a05:4807:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:4840::,2a05:4847:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:4880::,2a05:4887:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:48c0::,2a05:48c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:4900::,2a05:4907:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:4940::,2a05:4947:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a05:4980::,2a05:4987:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a05:49c0::,2a05:49c7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:4a00::,2a05:4a07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:4ac0::,2a05:4ac7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:4b00::,2a05:4b07:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a05:4b40::,2a05:4b47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:4b80::,2a05:4b87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:4bc0::,2a05:4bc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:4c00::,2a05:4c07:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a05:4c40::,2a05:4c47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:4c80::,2a05:4c87:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a05:4cc0::,2a05:4cc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:4d00::,2a05:4d07:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:4d40::,2a05:4d47:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:4d80::,2a05:4d87:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:4dc0::,2a05:4dc7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:4e00::,2a05:4e07:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:4e40::,2a05:4e47:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:4e80::,2a05:4e87:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:4ec0::,2a05:4ec7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:4f00::,2a05:4f07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:4f40::,2a05:4f47:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a05:4f80::,2a05:4f87:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a05:4fc0::,2a05:4fc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:5000::,2a05:5007:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:5040::,2a05:5047:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:5080::,2a05:5080:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:50a0::,2a05:50a3:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a05:50c0::,2a05:50c7:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a05:5100::,2a05:5107:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:5140::,2a05:5147:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:5180::,2a05:5187:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:51c0::,2a05:51c7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:5200::,2a05:5207:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:5240::,2a05:5247:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:5280::,2a05:5283:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:52a0::,2a05:52a3:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:52c0::,2a05:52c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:5300::,2a05:5307:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a05:5340::,2a05:5347:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:5380::,2a05:5387:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:53c0::,2a05:53c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:5400::,2a05:5407:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:5440::,2a05:5447:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:5480::,2a05:5487:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:54c0::,2a05:54c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:5500::,2a05:5507:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:5540::,2a05:5547:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a05:5580::,2a05:5587:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:55c0::,2a05:55c7:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a05:5600::,2a05:5607:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:5640::,2a05:5647:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:5680::,2a05:5687:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a05:56c0::,2a05:56c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:5700::,2a05:5707:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a05:5740::,2a05:5747:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a05:5780::,2a05:5787:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:5800::,2a05:5807:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:5840::,2a05:5847:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:5880::,2a05:5887:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:58c0::,2a05:58c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:5900::,2a05:5907:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:5940::,2a05:5947:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:5980::,2a05:5987:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:59c0::,2a05:59c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:5a00::,2a05:5a07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:5a40::,2a05:5a47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:5a80::,2a05:5a87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:5ac0::,2a05:5ac7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:5b00::,2a05:5b07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:5b40::,2a05:5b47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:5b80::,2a05:5b87:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a05:5bc0::,2a05:5bc7:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a05:5c00::,2a05:5c07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:5c40::,2a05:5c47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:5c80::,2a05:5c87:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:5cc0::,2a05:5cc7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:5d00::,2a05:5d07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:5d80::,2a05:5d87:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a05:5dc0::,2a05:5dc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:5e00::,2a05:5e07:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a05:5e40::,2a05:5e47:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a05:5e80::,2a05:5e87:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a05:5ec0::,2a05:5ec7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:5f00::,2a05:5f07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:5f40::,2a05:5f47:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:5f80::,2a05:5f87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:5fc0::,2a05:5fc7:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:6000::,2a05:6007:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a05:6040::,2a05:6047:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:6080::,2a05:6087:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:60c0::,2a05:60c7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:6100::,2a05:6107:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:6140::,2a05:6147:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:6180::,2a05:6187:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:61c0::,2a05:61c7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:6200::,2a05:6207:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:6240::,2a05:6247:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:6280::,2a05:6287:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a05:62c0::,2a05:62c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:6300::,2a05:6307:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a05:6340::,2a05:6347:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:6380::,2a05:6387:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:63c0::,2a05:63c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:6400::,2a05:6407:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:6440::,2a05:6447:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:6480::,2a05:6487:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:64c0::,2a05:64c7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:6500::,2a05:6507:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:6540::,2a05:6547:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:6580::,2a05:6587:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:65c0::,2a05:65c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:6600::,2a05:6607:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:6640::,2a05:6647:ffff:ffff:ffff:ffff:ffff:ffff,VA 2a05:6680::,2a05:6687:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:66c0::,2a05:66c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:6700::,2a05:6707:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a05:6740::,2a05:6747:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:6780::,2a05:6787:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:67c0::,2a05:67c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:6800::,2a05:6807:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:6840::,2a05:6847:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:6880::,2a05:6887:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:68c0::,2a05:68c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:6900::,2a05:6907:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:6940::,2a05:6947:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:6980::,2a05:6987:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:69c0::,2a05:69c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:6a00::,2a05:6a07:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:6a40::,2a05:6a47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:6a80::,2a05:6a87:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:6ac0::,2a05:6ac7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:6b00::,2a05:6b07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:6b40::,2a05:6b47:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:6b80::,2a05:6b87:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:6bc0::,2a05:6bc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:6c00::,2a05:6c07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:6c40::,2a05:6c47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:6c80::,2a05:6c87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:6cc0::,2a05:6cc7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:6d00::,2a05:6d07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:6d40::,2a05:6d47:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:6d80::,2a05:6d87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:6dc0::,2a05:6dc7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:6e00::,2a05:6e07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:6e40::,2a05:6e47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:6e80::,2a05:6e87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:6ec0::,2a05:6ec7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:6f00::,2a05:6f07:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a05:6f40::,2a05:6f47:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a05:6f80::,2a05:6f87:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:6fc0::,2a05:6fc7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:7000::,2a05:7007:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:7040::,2a05:7047:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:7080::,2a05:7087:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:7100::,2a05:7107:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:7140::,2a05:7147:ffff:ffff:ffff:ffff:ffff:ffff,MD 2a05:7180::,2a05:7187:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:71c0::,2a05:71c7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:7200::,2a05:7207:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:7240::,2a05:7247:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:7280::,2a05:7287:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:72c0::,2a05:72c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:7300::,2a05:7307:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:7340::,2a05:7347:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a05:7380::,2a05:7387:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:73c0::,2a05:73c7:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a05:7400::,2a05:7407:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:7440::,2a05:7447:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:7480::,2a05:7487:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:74c0::,2a05:74c7:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a05:7500::,2a05:7507:ffff:ffff:ffff:ffff:ffff:ffff,JO 2a05:7540::,2a05:7547:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a05:7580::,2a05:7587:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:75c0::,2a05:75c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:7600::,2a05:7607:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:7640::,2a05:7647:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:7680::,2a05:7687:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:76c0::,2a05:76c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:7700::,2a05:7707:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:7740::,2a05:7747:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a05:7780::,2a05:7787:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:77c0::,2a05:77c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:7800::,2a05:7807:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a05:7840::,2a05:7847:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a05:7880::,2a05:7887:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:78c0::,2a05:78c7:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a05:7900::,2a05:7907:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:7940::,2a05:7947:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:7980::,2a05:7987:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:79c0::,2a05:79c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:7a00::,2a05:7a07:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a05:7a40::,2a05:7a47:ffff:ffff:ffff:ffff:ffff:ffff,YE 2a05:7a80::,2a05:7a87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:7ac0::,2a05:7ac7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:7b00::,2a05:7b07:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:7b40::,2a05:7b47:ffff:ffff:ffff:ffff:ffff:ffff,ME 2a05:7b80::,2a05:7b87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:7bc0::,2a05:7bc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:7c00::,2a05:7c07:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a05:7c40::,2a05:7c47:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a05:7c80::,2a05:7c87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:7cc0::,2a05:7cc7:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a05:7d00::,2a05:7d07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:7d40::,2a05:7d47:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:7d80::,2a05:7d87:ffff:ffff:ffff:ffff:ffff:ffff,YE 2a05:7dc0::,2a05:7dc1:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:7de0::,2a05:7de3:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:7e00::,2a05:7e07:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:7e40::,2a05:7e47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:7e80::,2a05:7e87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:7ec0::,2a05:7ec7:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:7f00::,2a05:7f07:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:7f40::,2a05:7f47:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:7f80::,2a05:7f87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:7fc0::,2a05:7fc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:8000::,2a05:8007:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:8040::,2a05:8047:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:8080::,2a05:8087:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a05:80c0::,2a05:80c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:8100::,2a05:8107:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:8140::,2a05:8147:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:8180::,2a05:8187:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:81c0::,2a05:81c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:8200::,2a05:8207:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a05:8240::,2a05:8247:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:8280::,2a05:8287:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:82c0::,2a05:82c7:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a05:8300::,2a05:8307:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a05:8340::,2a05:8347:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a05:8380::,2a05:8387:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:83c0::,2a05:83c7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:8400::,2a05:8407:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:8440::,2a05:8447:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:8480::,2a05:8487:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a05:84c0::,2a05:84c7:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a05:8500::,2a05:8507:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a05:8540::,2a05:8547:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:8580::,2a05:8587:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a05:85c0::,2a05:85c7:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a05:8600::,2a05:8607:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:8640::,2a05:8647:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:8680::,2a05:8687:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:86c0::,2a05:86c7:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a05:8700::,2a05:8707:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a05:8740::,2a05:8747:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:8780::,2a05:8787:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:87c0::,2a05:87c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:8800::,2a05:8807:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a05:8840::,2a05:8847:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a05:8880::,2a05:8883:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a05:88a0::,2a05:88a3:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:88c0::,2a05:88c7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:8900::,2a05:8907:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:8940::,2a05:8947:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:8980::,2a05:8987:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:89c0::,2a05:89c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:8a00::,2a05:8a07:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:8a40::,2a05:8a47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:8a80::,2a05:8a87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:8ac0::,2a05:8ac7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:8b00::,2a05:8b07:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a05:8b40::,2a05:8b47:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a05:8b80::,2a05:8b87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:8bc0::,2a05:8bc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:8c00::,2a05:8c07:ffff:ffff:ffff:ffff:ffff:ffff,GI 2a05:8c40::,2a05:8c47:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a05:8c80::,2a05:8c87:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a05:8cc0::,2a05:8cc7:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a05:8d00::,2a05:8d07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:8d40::,2a05:8d47:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a05:8d80::,2a05:8d87:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a05:8dc0::,2a05:8dc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:8e00::,2a05:8e07:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:8e40::,2a05:8e47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:8ec0::,2a05:8ec7:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a05:8f00::,2a05:8f07:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:8f40::,2a05:8f47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:8f80::,2a05:8f87:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:8fc0::,2a05:8fc7:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a05:9000::,2a05:9007:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a05:9040::,2a05:9047:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:9080::,2a05:9087:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:90c0::,2a05:90c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:9100::,2a05:9107:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a05:9140::,2a05:9147:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:91c0::,2a05:91c7:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a05:9200::,2a05:9207:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:9240::,2a05:9247:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:9280::,2a05:9287:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:92c0::,2a05:92c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:9300::,2a05:9307:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:9340::,2a05:9347:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:9380::,2a05:9387:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:93c0::,2a05:93c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:9400::,2a05:9407:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a05:9440::,2a05:9447:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:9480::,2a05:9487:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a05:94c0::,2a05:94c7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:9500::,2a05:9507:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:9540::,2a05:9547:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:9580::,2a05:9587:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a05:95c0::,2a05:95c7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:9600::,2a05:9607:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a05:9640::,2a05:9647:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:9680::,2a05:9687:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:96c0::,2a05:96c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:9700::,2a05:9707:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:9740::,2a05:9747:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a05:9780::,2a05:9787:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:97c0::,2a05:97c7:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a05:9800::,2a05:9807:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:9840::,2a05:9847:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:9880::,2a05:9887:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:98c0::,2a05:98c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:9900::,2a05:9907:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a05:9940::,2a05:9947:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:9980::,2a05:9987:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:99c0::,2a05:99c7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:9a00::,2a05:9a07:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:9a40::,2a05:9a47:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:9a80::,2a05:9a87:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:9ac0::,2a05:9ac7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:9b00::,2a05:9b07:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:9b40::,2a05:9b47:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a05:9b80::,2a05:9b87:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:9bc0::,2a05:9bc7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:9c00::,2a05:9c07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:9c40::,2a05:9c47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:9c80::,2a05:9c87:ffff:ffff:ffff:ffff:ffff:ffff,US 2a05:9cc0::,2a05:9cc7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:9d00::,2a05:9d07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:9d40::,2a05:9d47:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:9d80::,2a05:9d87:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:9dc0::,2a05:9dc7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:9e00::,2a05:9e07:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a05:9e40::,2a05:9e47:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:9e80::,2a05:9e87:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a05:9ec0::,2a05:9ec7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:9f00::,2a05:9f07:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a05:9f80::,2a05:9f87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:9fc0::,2a05:9fc7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:a000::,2a05:a007:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:a040::,2a05:a047:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a05:a080::,2a05:a087:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:a0c0::,2a05:a0c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:a100::,2a05:a107:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a05:a140::,2a05:a147:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:a180::,2a05:a187:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:a1c0::,2a05:a1c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:a200::,2a05:a207:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:a240::,2a05:a247:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:a280::,2a05:a287:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:a2c0::,2a05:a2c7:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a05:a300::,2a05:a307:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:a340::,2a05:a347:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:a380::,2a05:a387:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:a3c0::,2a05:a3c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:a400::,2a05:a407:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:a440::,2a05:a447:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:a480::,2a05:a487:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:a4c0::,2a05:a4c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:a500::,2a05:a507:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:a540::,2a05:a547:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:a580::,2a05:a587:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:a5c0::,2a05:a5c7:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a05:a600::,2a05:a607:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a05:a640::,2a05:a647:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:a680::,2a05:a687:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:a6c0::,2a05:a6c7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:a700::,2a05:a707:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:a740::,2a05:a747:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:a780::,2a05:a787:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:a7c0::,2a05:a7c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:a800::,2a05:a807:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:a840::,2a05:a847:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:a880::,2a05:a887:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:a8c0::,2a05:a8c7:ffff:ffff:ffff:ffff:ffff:ffff,SY 2a05:a900::,2a05:a907:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a05:a940::,2a05:a947:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:a980::,2a05:a987:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a05:a9c0::,2a05:a9c7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:aa00::,2a05:aa07:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a05:aa40::,2a05:aa47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:aa80::,2a05:aa87:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a05:aac0::,2a05:aac7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:ab00::,2a05:ab07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:ab40::,2a05:ab47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:ab80::,2a05:ab87:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:abc0::,2a05:abc7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:ac00::,2a05:ac07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:ac40::,2a05:ac47:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:ac80::,2a05:ac87:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:acc0::,2a05:acc7:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a05:ad00::,2a05:ad07:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:ad40::,2a05:ad47:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:ad80::,2a05:ad87:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:adc0::,2a05:adc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:ae00::,2a05:ae07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:ae40::,2a05:ae47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:ae80::,2a05:ae87:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:aec0::,2a05:aec7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:af00::,2a05:af07:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:af40::,2a05:af47:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:af80::,2a05:af87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:afc0::,2a05:afc7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:b000::,2a05:b007:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:b040::,2a05:b047:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:b080::,2a05:b087:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a05:b0c0::,2a05:b0c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:b100::,2a05:b107:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:b140::,2a05:b147:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:b180::,2a05:b187:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a05:b1c0::,2a05:b1c7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:b200::,2a05:b207:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:b240::,2a05:b247:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:b280::,2a05:b287:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:b2c0::,2a05:b2c7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:b300::,2a05:b307:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:b340::,2a05:b347:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a05:b380::,2a05:b387:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:b3c0::,2a05:b3c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:b400::,2a05:b407:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:b440::,2a05:b447:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:b480::,2a05:b487:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:b4c0::,2a05:b4c7:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a05:b500::,2a05:b507:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:b540::,2a05:b547:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:b580::,2a05:b587:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:b5c0::,2a05:b5c7:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a05:b600::,2a05:b607:ffff:ffff:ffff:ffff:ffff:ffff,SM 2a05:b640::,2a05:b647:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:b680::,2a05:b687:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a05:b6c0::,2a05:b6c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:b700::,2a05:b707:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:b740::,2a05:b747:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:b780::,2a05:b787:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:b7c0::,2a05:b7c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:b800::,2a05:b807:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:b840::,2a05:b847:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:b880::,2a05:b887:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:b8c0::,2a05:b8c7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:b900::,2a05:b907:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:b940::,2a05:b947:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:b980::,2a05:b987:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a05:b9c0::,2a05:b9c7:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a05:ba00::,2a05:ba07:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:ba40::,2a05:ba47:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:ba80::,2a05:ba87:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:bac0::,2a05:bac7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:bb00::,2a05:bb07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:bb40::,2a05:bb47:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:bb80::,2a05:bb87:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a05:bbc0::,2a05:bbc7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:bc00::,2a05:bc07:ffff:ffff:ffff:ffff:ffff:ffff,MT 2a05:bc40::,2a05:bc47:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:bc80::,2a05:bc87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:bcc0::,2a05:bcc7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:bd00::,2a05:bd07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:bd40::,2a05:bd47:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:bd80::,2a05:bd87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:bdc0::,2a05:bdc7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:be00::,2a05:be07:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:be40::,2a05:be47:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:be80::,2a05:be87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:bec0::,2a05:bec7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:bf00::,2a05:bf07:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:bf40::,2a05:bf47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:bf80::,2a05:bf87:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:bfc0::,2a05:bfc7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:c000::,2a05:c007:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:c040::,2a05:c047:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:c080::,2a05:c087:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:c100::,2a05:c107:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:c140::,2a05:c147:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:c180::,2a05:c187:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:c1c0::,2a05:c1c7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:c200::,2a05:c207:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:c240::,2a05:c247:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:c280::,2a05:c287:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:c2c0::,2a05:c2c7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:c300::,2a05:c307:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a05:c340::,2a05:c347:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:c380::,2a05:c387:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:c3c0::,2a05:c3c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:c400::,2a05:c407:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:c440::,2a05:c447:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:c480::,2a05:c487:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:c4c0::,2a05:c4c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:c500::,2a05:c507:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:c540::,2a05:c547:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:c580::,2a05:c587:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:c5c0::,2a05:c5c7:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a05:c600::,2a05:c607:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:c640::,2a05:c647:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:c680::,2a05:c687:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:c6c0::,2a05:c6c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:c700::,2a05:c707:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:c740::,2a05:c747:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:c780::,2a05:c787:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:c7c0::,2a05:c7c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:c800::,2a05:c807:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a05:c840::,2a05:c847:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a05:c880::,2a05:c887:ffff:ffff:ffff:ffff:ffff:ffff,KG 2a05:c8c0::,2a05:c8c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:c900::,2a05:c907:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:c940::,2a05:c947:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:c980::,2a05:c987:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:c9c0::,2a05:c9c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:ca00::,2a05:ca07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:ca40::,2a05:ca47:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:ca80::,2a05:ca87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:cac0::,2a05:cac7:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:cb00::,2a05:cb07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:cb40::,2a05:cb47:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a05:cb80::,2a05:cb87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:cbc0::,2a05:cbc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:cc00::,2a05:cc07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:cc40::,2a05:cc47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:cc80::,2a05:cc87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:ccc0::,2a05:ccc7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:cd00::,2a05:cd07:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:cd40::,2a05:cd47:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:cd80::,2a05:cd87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:cdc0::,2a05:cdc7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:ce00::,2a05:ce07:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:ce40::,2a05:ce47:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a05:ce80::,2a05:ce87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:cec0::,2a05:cec7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:cf00::,2a05:cf07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:cf80::,2a05:cf87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:cfc0::,2a05:cfc7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:d000::,2a05:d07f:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a05:d400::,2a05:d407:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:d440::,2a05:d447:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:d480::,2a05:d487:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:d4c0::,2a05:d4c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:d500::,2a05:d507:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:d540::,2a05:d547:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:d580::,2a05:d587:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:d5c0::,2a05:d5c7:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a05:d600::,2a05:d607:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a05:d640::,2a05:d647:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a05:d680::,2a05:d687:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:d6c0::,2a05:d6c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:d700::,2a05:d707:ffff:ffff:ffff:ffff:ffff:ffff,US 2a05:d740::,2a05:d747:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:d780::,2a05:d787:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a05:d7c0::,2a05:d7c7:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a05:d800::,2a05:d807:ffff:ffff:ffff:ffff:ffff:ffff,MK 2a05:d840::,2a05:d847:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:d880::,2a05:d887:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:d900::,2a05:d907:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:d940::,2a05:d947:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:d980::,2a05:d987:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:d9c0::,2a05:d9c7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:da00::,2a05:da07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:da40::,2a05:da47:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:da80::,2a05:da87:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a05:dac0::,2a05:dac7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:db00::,2a05:db07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:db40::,2a05:db47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:db80::,2a05:db87:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:dbc0::,2a05:dbc7:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a05:dc00::,2a05:dc07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:dc40::,2a05:dc47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:dc80::,2a05:dc87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:dcc0::,2a05:dcc7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:dd00::,2a05:dd07:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:dd40::,2a05:dd47:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:dd80::,2a05:dd87:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:ddc0::,2a05:ddc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:de00::,2a05:de07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:de40::,2a05:de47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:de80::,2a05:de87:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:dec0::,2a05:dec7:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a05:df00::,2a05:df07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:df40::,2a05:df47:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a05:df80::,2a05:df87:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a05:dfc0::,2a05:dfc0:1ee3:ffff:ffff:ffff:ffff:ffff,GB 2a05:dfc0:1ee4::,2a05:dfc0:1ee4:ffff:ffff:ffff:ffff:ffff,CA 2a05:dfc0:1ee5::,2a05:dfc0:6938:ffff:ffff:ffff:ffff:ffff,GB 2a05:dfc0:6939::,2a05:dfc0:6939:ffff:ffff:ffff:ffff:ffff,NL 2a05:dfc0:693a::,2a05:dfc7:7:ffff:ffff:ffff:ffff:ffff,GB 2a05:dfc7:8::,2a05:dfc7:8:7fff:ffff:ffff:ffff:ffff,SG 2a05:dfc7:8:8000::,2a05:dfc7:8:ffff:ffff:ffff:ffff:ffff,GB 2a05:dfc7:9::,2a05:dfc7:9:7fff:ffff:ffff:ffff:ffff,SG 2a05:dfc7:9:8000::,2a05:dfc7:f:ffff:ffff:ffff:ffff:ffff,GB 2a05:dfc7:10::,2a05:dfc7:10:ffff:ffff:ffff:ffff:ffff,NL 2a05:dfc7:11::,2a05:dfc7:19:ffff:ffff:ffff:ffff:ffff,CH 2a05:dfc7:1a::,2a05:dfc7:1a::,AT 2a05:dfc7:1a::1,2a05:dfc7:1f:ffff:ffff:ffff:ffff:ffff,CH 2a05:dfc7:20::,2a05:dfc7:3f:ffff:ffff:ffff:ffff:ffff,GB 2a05:dfc7:40::,2a05:dfc7:40:ffff:ffff:ffff:ffff:ffff,BY 2a05:dfc7:41::,2a05:dfc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:e000::,2a05:e007:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a05:e040::,2a05:e047:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a05:e080::,2a05:e087:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a05:e0c0::,2a05:e0c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:e100::,2a05:e107:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:e140::,2a05:e147:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:e180::,2a05:e187:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:e1c0::,2a05:e1c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:e200::,2a05:e207:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:e240::,2a05:e247:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:e280::,2a05:e287:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:e2c0::,2a05:e2c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:e300::,2a05:e307:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a05:e340::,2a05:e347:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:e380::,2a05:e387:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a05:e3c0::,2a05:e3c7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:e400::,2a05:e407:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:e440::,2a05:e447:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:e480::,2a05:e487:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:e4c0::,2a05:e4c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:e500::,2a05:e507:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a05:e540::,2a05:e547:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:e580::,2a05:e587:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:e5c0::,2a05:e5c7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:e600::,2a05:e607:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a05:e640::,2a05:e647:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:e680::,2a05:e687:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:e6c0::,2a05:e6c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:e700::,2a05:e707:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:e740::,2a05:e747:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:e780::,2a05:e787:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:e800::,2a05:e807:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a05:e840::,2a05:e847:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:e880::,2a05:e887:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:e8c0::,2a05:e8c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:e900::,2a05:e907:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a05:e940::,2a05:e947:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:e980::,2a05:e987:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:e9c0::,2a05:e9c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:ea00::,2a05:ea07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:ea40::,2a05:ea47:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:ea80::,2a05:ea87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:eac0::,2a05:eac7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:eb00::,2a05:eb01:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:eb20::,2a05:eb23:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:eb40::,2a05:eb47:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:eb80::,2a05:eb87:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:ebc0::,2a05:ebc7:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:ec00::,2a05:ec07:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a05:ec40::,2a05:ec47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:ec80::,2a05:ec87:ffff:ffff:ffff:ffff:ffff:ffff,AE 2a05:ecc0::,2a05:ecc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:ed00::,2a05:ed07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:ed40::,2a05:ed47:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:ed80::,2a05:ed87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:edc0::,2a05:edc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:ee00::,2a05:ee07:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a05:ee40::,2a05:ee47:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:ee80::,2a05:ee87:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:eec0::,2a05:eec7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a05:ef00::,2a05:ef07:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:ef40::,2a05:ef47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:ef80::,2a05:ef87:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:efc0::,2a05:efc7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a05:f000::,2a05:f007:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:f040::,2a05:f047:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a05:f080::,2a05:f087:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:f0c0::,2a05:f0c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:f100::,2a05:f107:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:f140::,2a05:f147:ffff:ffff:ffff:ffff:ffff:ffff,AM 2a05:f180::,2a05:f187:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:f1c0::,2a05:f1c7:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a05:f200::,2a05:f207:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a05:f240::,2a05:f247:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:f280::,2a05:f287:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:f2c0::,2a05:f2c7:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a05:f300::,2a05:f307:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:f340::,2a05:f347:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:f380::,2a05:f387:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:f3c0::,2a05:f3c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:f400::,2a05:f407:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:f440::,2a05:f447:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:f480::,2a05:f487:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:f4c0::,2a05:f4c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:f500::,2a05:f507:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:f540::,2a05:f547:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:f580::,2a05:f587:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:f5c0::,2a05:f5c7:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a05:f600::,2a05:f607:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:f640::,2a05:f647:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:f680::,2a05:f687:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:f6c0::,2a05:f6c7:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a05:f700::,2a05:f707:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a05:f740::,2a05:f747:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:f780::,2a05:f787:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:f7c0::,2a05:f7c7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:f800::,2a05:f807:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:f840::,2a05:f847:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a05:f880::,2a05:f887:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a05:f8c0::,2a05:f8c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:f900::,2a05:f907:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a05:f940::,2a05:f947:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:f980::,2a05:f987:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:f9c0::,2a05:f9c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:fa00::,2a05:fa07:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a05:fa40::,2a05:fa47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:fa80::,2a05:fa87:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a05:fac0::,2a05:fac7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a05:fb00::,2a05:fb07:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:fb40::,2a05:fb47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:fb80::,2a05:fb87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:fbc0::,2a05:fbc3:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:fc00::,2a05:fc07:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a05:fc40::,2a05:fc47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:fc80::,2a05:fc87:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:fcc0::,2a05:fcc7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:fd00::,2a05:fd07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a05:fd40::,2a05:fd47:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a05:fd80::,2a05:fd87:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a05:fdc0::,2a05:fdc7:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a05:fe00::,2a05:fe07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a05:fe40::,2a05:fe47:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:fec0::,2a05:fec7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a05:ff00::,2a05:ff07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a05:ff40::,2a05:ff47:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a05:ff80::,2a05:ff87:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a05:ffc0::,2a05:ffc7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06::,2a06:7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:40::,2a06:47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:80::,2a06:87:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a06:c0::,2a06:c7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a06:100::,2a06:107:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:140::,2a06:147:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:180::,2a06:187:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a06:1c0::,2a06:1c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:200::,2a06:207:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:240::,2a06:247:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a06:280::,2a06:287:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a06:2c0::,2a06:2c7:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a06:300::,2a06:307:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:340::,2a06:347:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:380::,2a06:387:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:3c0::,2a06:3c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:400::,2a06:407:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a06:440::,2a06:447:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a06:480::,2a06:487:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:4c0::,2a06:4c7:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a06:500::,2a06:507:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:540::,2a06:547:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:580::,2a06:587:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a06:5c0::,2a06:5c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:600::,2a06:607:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a06:640::,2a06:647:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a06:680::,2a06:687:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:6c0::,2a06:6c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:700::,2a06:707:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:740::,2a06:747:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:780::,2a06:787:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a06:7c0::,2a06:7c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:800::,2a06:807:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:840::,2a06:847:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:880::,2a06:887:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:8c0::,2a06:8c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:900::,2a06:907:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:940::,2a06:947:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a06:980::,2a06:987:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:9c0::,2a06:9c7:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a06:a00::,2a06:a07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:a40::,2a06:a47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:a80::,2a06:a87:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:ac0::,2a06:ac7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:b00::,2a06:b07:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a06:b40::,2a06:b47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:b80::,2a06:b87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:bc0::,2a06:bc7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:c00::,2a06:c07:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:c40::,2a06:c47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:c80::,2a06:c87:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a06:cc0::,2a06:cc7:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a06:d00::,2a06:d07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:d40::,2a06:d47:ffff:ffff:ffff:ffff:ffff:ffff,US 2a06:d80::,2a06:d86:1fe:ffff:ffff:ffff:ffff:ffff,GB 2a06:d86:1ff::,2a06:d86:1ff:7fff:ffff:ffff:ffff:ffff,US 2a06:d86:1ff:8000::,2a06:d87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:dc0::,2a06:dc7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:e00::,2a06:e07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:e40::,2a06:e47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:e80::,2a06:e87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:ec0::,2a06:ec7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:f00::,2a06:f07:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:f40::,2a06:f47:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:f80::,2a06:f87:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:fc0::,2a06:fc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:1000::,2a06:1007:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a06:1040::,2a06:1047:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:1080::,2a06:1087:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:10c0::,2a06:10c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:1100::,2a06:1107:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a06:1140::,2a06:1147:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:1180::,2a06:1187:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:11c0::,2a06:11c7:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:1200::,2a06:1207:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:1240::,2a06:1247:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a06:1280::,2a06:1280:bee0:ffff:ffff:ffff:ffff:ffff,BY 2a06:1280:bee1::,2a06:1280:bee1:ffff:ffff:ffff:ffff:ffff,NZ 2a06:1280:bee2::,2a06:1287:1f:ffff:ffff:ffff:ffff:ffff,BY 2a06:1287:20::,2a06:1287:2f:ffff:ffff:ffff:ffff:ffff,AT 2a06:1287:30::,2a06:1287:ffff:ffff:ffff:ffff:ffff:ffff,BY 2a06:12c0::,2a06:12c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:1300::,2a06:1307:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a06:1340::,2a06:1347:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:1380::,2a06:1387:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:13c0::,2a06:13c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:1400::,2a06:1407:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a06:1440::,2a06:1447:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:1480::,2a06:1487:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:14c0::,2a06:14c7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:1500::,2a06:1507:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:1540::,2a06:1547:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:1580::,2a06:1587:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a06:15c0::,2a06:15c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:1600::,2a06:1607:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:1680::,2a06:1687:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:16c0::,2a06:16c7:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a06:1700::,2a06:1707:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:1740::,2a06:1747:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:1780::,2a06:1787:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a06:17c0::,2a06:17c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:1800::,2a06:1807:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:1840::,2a06:1847:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:1880::,2a06:1887:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:18c0::,2a06:18c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:1900::,2a06:1907:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a06:1940::,2a06:1947:ffff:ffff:ffff:ffff:ffff:ffff,LI 2a06:1980::,2a06:1987:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:19c0::,2a06:19c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:1a00::,2a06:1a07:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a06:1a40::,2a06:1a47:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:1a80::,2a06:1a87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:1ac0::,2a06:1ac7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:1b00::,2a06:1b07:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:1b40::,2a06:1b47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:1b80::,2a06:1b87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:1bc0::,2a06:1bc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:1c00::,2a06:1c07:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a06:1c40::,2a06:1c47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:1c80::,2a06:1c87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:1cc0::,2a06:1cc7:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a06:1d00::,2a06:1d07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:1d40::,2a06:1d47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:1d80::,2a06:1d87:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:1dc0::,2a06:1dc7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:1e00::,2a06:1e07:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:1e40::,2a06:1e47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:1e80::,2a06:1e87:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a06:1ec0::,2a06:1ec7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:1f00::,2a06:1f07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:1f40::,2a06:1f47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:1f80::,2a06:1f87:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:1fc0::,2a06:1fc7:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:2000::,2a06:2007:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a06:2040::,2a06:2047:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:2080::,2a06:2087:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:20c0::,2a06:20c7:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a06:2100::,2a06:2107:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:2140::,2a06:2147:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a06:2180::,2a06:2187:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a06:2200::,2a06:2207:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:2240::,2a06:2247:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:2280::,2a06:2287:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a06:22c0::,2a06:22c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:2300::,2a06:2307:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:2340::,2a06:2347:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:2380::,2a06:2387:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:23c0::,2a06:23c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:2400::,2a06:2407:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:2440::,2a06:2447:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:2480::,2a06:2487:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:24c0::,2a06:24c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:2500::,2a06:2507:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:2540::,2a06:2547:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:2580::,2a06:2587:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a06:25c0::,2a06:25c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:2600::,2a06:2607:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:2640::,2a06:2647:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:2680::,2a06:2687:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:26c0::,2a06:26c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:2700::,2a06:2707:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:2740::,2a06:2747:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:2780::,2a06:2787:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:27c0::,2a06:27c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:2800::,2a06:2807:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:2840::,2a06:2847:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:2880::,2a06:2887:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:28c0::,2a06:28c7:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a06:2900::,2a06:2907:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:2940::,2a06:2947:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:2980::,2a06:2987:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a06:29c0::,2a06:29c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:2a00::,2a06:2a07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:2a40::,2a06:2a47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:2a80::,2a06:2a87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:2ac0::,2a06:2ac7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:2b00::,2a06:2b07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:2b40::,2a06:2b47:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a06:2b80::,2a06:2b87:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:2bc0::,2a06:2bc7:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a06:2c00::,2a06:2c07:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:2c40::,2a06:2c47:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a06:2c80::,2a06:2c87:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:2d00::,2a06:2d07:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:2d40::,2a06:2d47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:2d80::,2a06:2d87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:2dc0::,2a06:2dc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:2e00::,2a06:2e05:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:2e06::,2a06:2e06:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a06:2e07::,2a06:2e07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:2e40::,2a06:2e47:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:2e80::,2a06:2e87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:2ec0::,2a06:2ec7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:2f00::,2a06:2f07:ffff:ffff:ffff:ffff:ffff:ffff,QA 2a06:2f80::,2a06:2f87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:2fc0::,2a06:2fc7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:3000::,2a06:3007:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:3040::,2a06:3047:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a06:3080::,2a06:3087:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:30c0::,2a06:30c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:3100::,2a06:3107:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:3200::,2a06:3207:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:3240::,2a06:3247:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:3300::,2a06:3307:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:3340::,2a06:3347:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:3380::,2a06:3387:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:33c0::,2a06:33c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:3400::,2a06:3407:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:3440::,2a06:3447:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a06:3480::,2a06:3487:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a06:34c0::,2a06:34c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:3500::,2a06:3507:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a06:3540::,2a06:3547:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:3580::,2a06:3587:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a06:35c0::,2a06:35c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:3600::,2a06:3607:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:3640::,2a06:3647:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a06:3680::,2a06:3687:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:36c0::,2a06:36c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:3700::,2a06:3707:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:3740::,2a06:3747:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a06:3780::,2a06:3787:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:3800::,2a06:3807:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:3840::,2a06:3847:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a06:3880::,2a06:3887:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:38c0::,2a06:38c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:3900::,2a06:3907:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a06:3940::,2a06:3947:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:3980::,2a06:3987:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a06:39c0::,2a06:39c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:3a00::,2a06:3a07:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a06:3a40::,2a06:3a47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:3a80::,2a06:3a87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:3ac0::,2a06:3ac7:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a06:3b00::,2a06:3b07:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:3b40::,2a06:3b47:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a06:3b80::,2a06:3b87:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a06:3bc0::,2a06:3bc7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:3c00::,2a06:3c07:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:3c40::,2a06:3c47:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a06:3c80::,2a06:3c87:ffff:ffff:ffff:ffff:ffff:ffff,CY 2a06:3cc0::,2a06:3cc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:3d00::,2a06:3d07:ffff:ffff:ffff:ffff:ffff:ffff,GR 2a06:3d40::,2a06:3d47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:3d80::,2a06:3d87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:3dc0::,2a06:3dc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:3e00::,2a06:3e07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:3e40::,2a06:3e47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:3e80::,2a06:3e87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:3ec0::,2a06:3ec7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:3f00::,2a06:3f07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:3f80::,2a06:3f87:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:3fc0::,2a06:3fc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:4000::,2a06:4007:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a06:4040::,2a06:4047:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a06:4080::,2a06:4087:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:40c0::,2a06:40c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:4100::,2a06:4107:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:4140::,2a06:4147:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:4180::,2a06:4187:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:41c0::,2a06:41c7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:4200::,2a06:4207:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a06:4240::,2a06:4247:ffff:ffff:ffff:ffff:ffff:ffff,QA 2a06:4280::,2a06:4287:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:42c0::,2a06:42c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:4300::,2a06:4307:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:4340::,2a06:4347:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a06:4380::,2a06:4387:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:43c0::,2a06:43c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:4400::,2a06:4407:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a06:4440::,2a06:4447:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:4480::,2a06:4487:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:44c0::,2a06:44c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:4500::,2a06:4507:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:4540::,2a06:4547:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:4580::,2a06:4587:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:45c0::,2a06:45c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:4600::,2a06:4607:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:4640::,2a06:4647:ffff:ffff:ffff:ffff:ffff:ffff,KW 2a06:4680::,2a06:4687:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:46c0::,2a06:46c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:4700::,2a06:4707:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:4740::,2a06:4747:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:4780::,2a06:4787:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:47c0::,2a06:47c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:4800::,2a06:4807:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:4840::,2a06:4847:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a06:4880::,2a06:4887:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:48c0::,2a06:48c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:4900::,2a06:4907:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:4940::,2a06:4947:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a06:4980::,2a06:4987:ffff:ffff:ffff:ffff:ffff:ffff,LV 2a06:4a00::,2a06:4a07:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a06:4a40::,2a06:4a47:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:4a80::,2a06:4a87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:4ac0::,2a06:4ac7:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a06:4b00::,2a06:4b07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:4b40::,2a06:4b47:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:4b80::,2a06:4b87:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:4bc0::,2a06:4bc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:4c00::,2a06:4c07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:4c40::,2a06:4c47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:4c80::,2a06:4c87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:4cc0::,2a06:4cc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:4d00::,2a06:4d07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:4d40::,2a06:4d47:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a06:4d80::,2a06:4d87:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a06:4dc0::,2a06:4dc7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:4e00::,2a06:4e07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:4e40::,2a06:4e47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:4e80::,2a06:4e87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:4ec0::,2a06:4ec7:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a06:4f00::,2a06:4f07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:4f40::,2a06:4f47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:4f80::,2a06:4f87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:4fc0::,2a06:4fc7:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a06:5000::,2a06:5007:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:5040::,2a06:5047:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:5080::,2a06:5087:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a06:50c0::,2a06:50c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:5100::,2a06:5107:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:5140::,2a06:5147:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:5200::,2a06:5207:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a06:5240::,2a06:5247:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:5280::,2a06:5287:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:52c0::,2a06:52c7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:5300::,2a06:5307:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:5340::,2a06:5347:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:5380::,2a06:5387:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:53c0::,2a06:53c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:5400::,2a06:5407:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:5440::,2a06:5447:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:5480::,2a06:5487:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:5500::,2a06:5507:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a06:5540::,2a06:5547:ffff:ffff:ffff:ffff:ffff:ffff,PS 2a06:5580::,2a06:5587:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a06:55c0::,2a06:55c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:5600::,2a06:5607:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a06:5640::,2a06:5647:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:5680::,2a06:5687:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a06:56c0::,2a06:56c7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:5700::,2a06:5707:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:5740::,2a06:5747:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a06:5780::,2a06:5787:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:57c0::,2a06:57c7:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:5800::,2a06:5807:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:5840::,2a06:5847:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:5880::,2a06:5887:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:58c0::,2a06:58c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:5900::,2a06:5907:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:5940::,2a06:5947:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:5980::,2a06:5987:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:59c0::,2a06:59c7:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a06:5a00::,2a06:5a07:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:5a40::,2a06:5a47:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:5a80::,2a06:5a87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:5ac0::,2a06:5ac7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:5b00::,2a06:5b07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:5b40::,2a06:5b47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:5b80::,2a06:5b87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:5bc0::,2a06:5bc7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:5c00::,2a06:5c07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:5c40::,2a06:5c47:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a06:5c80::,2a06:5c87:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a06:5cc0::,2a06:5cc7:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a06:5d00::,2a06:5d07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:5d40::,2a06:5d47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:5d80::,2a06:5d87:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a06:5dc0::,2a06:5dc7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:5e00::,2a06:5e07:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:5e40::,2a06:5e47:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a06:5e80::,2a06:5e87:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:5ec0::,2a06:5ec7:ffff:ffff:ffff:ffff:ffff:ffff,HR 2a06:5f00::,2a06:5f07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:5f40::,2a06:5f47:ffff:ffff:ffff:ffff:ffff:ffff,LT 2a06:5f80::,2a06:5f87:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a06:5fc0::,2a06:5fc7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:6000::,2a06:6007:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:6040::,2a06:6047:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:6080::,2a06:6087:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:60c0::,2a06:60c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:6100::,2a06:6107:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:6140::,2a06:6147:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:6180::,2a06:6187:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a06:61c0::,2a06:61c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:6200::,2a06:6207:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a06:6240::,2a06:6247:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a06:6280::,2a06:6287:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:62c0::,2a06:62c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:6300::,2a06:6307:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:6340::,2a06:6347:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:6380::,2a06:6387:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:63c0::,2a06:63c7:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a06:6400::,2a06:6407:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:6440::,2a06:6447:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:6480::,2a06:6487:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:64c0::,2a06:64c7:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a06:6500::,2a06:6507:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a06:6540::,2a06:6547:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:6580::,2a06:6587:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:65c0::,2a06:65c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:6600::,2a06:6607:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:6640::,2a06:6647:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:6680::,2a06:6687:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:66c0::,2a06:66c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:6700::,2a06:6707:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:6740::,2a06:6747:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:6780::,2a06:6787:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a06:67c0::,2a06:67c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:6800::,2a06:6807:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:6840::,2a06:6847:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:6880::,2a06:6887:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:68c0::,2a06:68c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:6900::,2a06:6907:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:6940::,2a06:6947:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:6980::,2a06:6987:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a06:69c0::,2a06:69c7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:6a00::,2a06:6a07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:6a40::,2a06:6a47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:6a80::,2a06:6a87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:6ac0::,2a06:6ac7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:6b00::,2a06:6b07:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:6b40::,2a06:6b47:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:6b80::,2a06:6b87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:6bc0::,2a06:6bc7:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a06:6c00::,2a06:6c07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:6c40::,2a06:6c47:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:6c80::,2a06:6c87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:6cc0::,2a06:6cc7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:6d00::,2a06:6d07:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:6d40::,2a06:6d47:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:6d80::,2a06:6d87:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:6dc0::,2a06:6dc7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:6e00::,2a06:6e07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:6e40::,2a06:6e47:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a06:6e80::,2a06:6e87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:6ec0::,2a06:6ec7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:6f00::,2a06:6f07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:6f40::,2a06:6f47:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:6f80::,2a06:6f87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:6fc0::,2a06:6fc7:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a06:7000::,2a06:7007:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:7040::,2a06:7047:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a06:7080::,2a06:7087:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a06:70c0::,2a06:70c7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:7100::,2a06:7107:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:7140::,2a06:7147:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:7180::,2a06:7187:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:71c0::,2a06:71c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:7200::,2a06:7207:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:7240::,2a06:7247:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a06:7280::,2a06:7287:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:72c0::,2a06:72c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:7300::,2a06:7307:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a06:7340::,2a06:7347:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:7380::,2a06:7387:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:73c0::,2a06:73c7:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a06:7400::,2a06:7407:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:7440::,2a06:7447:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:7480::,2a06:7487:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:74c0::,2a06:74c7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:7500::,2a06:7507:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:7540::,2a06:7547:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:7580::,2a06:7587:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:75c0::,2a06:75c7:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:7600::,2a06:7607:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:7640::,2a06:7647:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:7680::,2a06:7687:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:76c0::,2a06:76c7:ffff:ffff:ffff:ffff:ffff:ffff,GE 2a06:7700::,2a06:7707:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:7740::,2a06:7747:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:7780::,2a06:7787:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:77c0::,2a06:77c7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a06:7800::,2a06:7807:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a06:7840::,2a06:7847:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:7880::,2a06:7887:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:78c0::,2a06:78c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:7900::,2a06:7907:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:7940::,2a06:7947:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:7980::,2a06:7987:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:79c0::,2a06:79c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:7a00::,2a06:7a07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:7a40::,2a06:7a47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:7a80::,2a06:7a87:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a06:7ac0::,2a06:7ac7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:7b00::,2a06:7b07:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a06:7b40::,2a06:7b47:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a06:7b80::,2a06:7b87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:7bc0::,2a06:7bc7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:7c00::,2a06:7c07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:7c40::,2a06:7c47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:7c80::,2a06:7c87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:7cc0::,2a06:7cc7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:7d00::,2a06:7d07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:7d40::,2a06:7d47:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a06:7d80::,2a06:7d87:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:7dc0::,2a06:7dc7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:7e00::,2a06:7e07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:7e40::,2a06:7e47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:7e80::,2a06:7e87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:7ec0::,2a06:7ec7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:7f00::,2a06:7f07:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a06:7f40::,2a06:7f47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:7f80::,2a06:7f87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:7fc0::,2a06:7fc7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:8000::,2a06:8007:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:8040::,2a06:8047:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:8080::,2a06:8087:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a06:80c0::,2a06:80c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:8100::,2a06:8107:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:8140::,2a06:8147:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:8180::,2a06:8181:9f:ffff:ffff:ffff:ffff:ffff,GB 2a06:8181:a0::,2a06:8181:af:ffff:ffff:ffff:ffff:ffff,NL 2a06:8181:b0::,2a06:8181:fef:ffff:ffff:ffff:ffff:ffff,GB 2a06:8181:ff0::,2a06:8181:fff:ffff:ffff:ffff:ffff:ffff,AT 2a06:8181:1000::,2a06:8184:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:8185::,2a06:8185:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:8186::,2a06:8187:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:81c0::,2a06:81c7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:8200::,2a06:8207:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:8240::,2a06:8247:ffff:ffff:ffff:ffff:ffff:ffff,MY 2a06:8280::,2a06:8280:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:8281::,2a06:8281:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:8282::,2a06:8287:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:82c0::,2a06:82c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:8340::,2a06:8347:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:8380::,2a06:8387:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:83c0::,2a06:83c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:8400::,2a06:8407:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a06:8440::,2a06:8447:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:8480::,2a06:8487:ffff:ffff:ffff:ffff:ffff:ffff,SA 2a06:84c0::,2a06:84c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:8500::,2a06:8507:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:8540::,2a06:8547:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:8580::,2a06:8587:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:85c0::,2a06:85c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:8600::,2a06:8607:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:8640::,2a06:8647:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:8680::,2a06:8687:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a06:86c0::,2a06:86c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:8700::,2a06:8707:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:8740::,2a06:8747:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:8780::,2a06:8787:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:87c0::,2a06:87c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:8800::,2a06:8807:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a06:8840::,2a06:8847:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:8880::,2a06:8887:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a06:88c0::,2a06:88c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:8900::,2a06:8907:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a06:8940::,2a06:8947:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:8980::,2a06:8987:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:89c0::,2a06:89c7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:8a00::,2a06:8a07:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:8a40::,2a06:8a47:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:8a80::,2a06:8a87:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a06:8ac0::,2a06:8ac7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:8b00::,2a06:8b07:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:8b40::,2a06:8b47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:8b80::,2a06:8b87:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:8bc0::,2a06:8bc7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:8c00::,2a06:8c07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:8c40::,2a06:8c47:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:8c80::,2a06:8c87:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a06:8cc0::,2a06:8cc7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:8d00::,2a06:8d07:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:8d40::,2a06:8d47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:8d80::,2a06:8d87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:8dc0::,2a06:8dc7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:8e00::,2a06:8e07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:8e40::,2a06:8e47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:8e80::,2a06:8e87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:8ec0::,2a06:8ec0:1:ffff:ffff:ffff:ffff:ffff,GB 2a06:8ec0:2::,2a06:8ec0:2:ffff:ffff:ffff:ffff:ffff,CH 2a06:8ec0:3::,2a06:8ec0:3:ffff:ffff:ffff:ffff:ffff,GB 2a06:8ec0:4::,2a06:8ec0:4:ffff:ffff:ffff:ffff:ffff,NL 2a06:8ec0:5::,2a06:8ec7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:8f00::,2a06:8f07:ffff:ffff:ffff:ffff:ffff:ffff,AL 2a06:8f40::,2a06:8f47:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:8f80::,2a06:8f87:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a06:8fc0::,2a06:8fc7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:9000::,2a06:9007:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a06:9040::,2a06:9047:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:9080::,2a06:9087:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:90c0::,2a06:90c7:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:9100::,2a06:9107:ffff:ffff:ffff:ffff:ffff:ffff,IQ 2a06:9140::,2a06:9147:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:9180::,2a06:9187:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a06:91c0::,2a06:91c7:ffff:ffff:ffff:ffff:ffff:ffff,AZ 2a06:9200::,2a06:9207:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:9240::,2a06:9247:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:9280::,2a06:9287:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a06:92c0::,2a06:92c7:ffff:ffff:ffff:ffff:ffff:ffff,US 2a06:9300::,2a06:9307:ffff:ffff:ffff:ffff:ffff:ffff,US 2a06:9340::,2a06:9347:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a06:9380::,2a06:9387:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:93c0::,2a06:93c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:9400::,2a06:9407:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a06:9440::,2a06:9447:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:9480::,2a06:9487:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:94c0::,2a06:94c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:9500::,2a06:9507:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:9540::,2a06:9547:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a06:9580::,2a06:9587:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:95c0::,2a06:95c7:ffff:ffff:ffff:ffff:ffff:ffff,LU 2a06:9600::,2a06:9607:ffff:ffff:ffff:ffff:ffff:ffff,IE 2a06:9640::,2a06:9647:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:9680::,2a06:9687:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a06:96c0::,2a06:96c7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a06:9700::,2a06:9707:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:9740::,2a06:9747:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:9780::,2a06:9787:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a06:97c0::,2a06:97c7:ffff:ffff:ffff:ffff:ffff:ffff,RS 2a06:9800::,2a06:9807:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:9840::,2a06:9847:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:98c0::,2a06:98c0:fff:ffff:ffff:ffff:ffff:ffff,GB 2a06:98c0:1000::,2a06:98c0:1000:7fff:ffff:ffff:ffff:ffff,US 2a06:98c0:1000:8000::,2a06:98c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:9900::,2a06:9907:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:9940::,2a06:9947:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:9980::,2a06:9987:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:99c0::,2a06:99c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:9a00::,2a06:9a07:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:9a40::,2a06:9a47:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a06:9a80::,2a06:9a87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:9ac0::,2a06:9ac7:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:9b00::,2a06:9b07:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:9b40::,2a06:9b47:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:9b80::,2a06:9b87:ffff:ffff:ffff:ffff:ffff:ffff,BE 2a06:9bc0::,2a06:9bc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:9c00::,2a06:9c07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:9c40::,2a06:9c47:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a06:9c80::,2a06:9c87:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:9cc0::,2a06:9cc7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a06:9d00::,2a06:9d07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:9d40::,2a06:9d47:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:9d80::,2a06:9d87:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a06:9dc0::,2a06:9dc7:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a06:9e00::,2a06:9e07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:9e40::,2a06:9e47:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a06:9e80::,2a06:9e87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:9ec0::,2a06:9ec7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:9f00::,2a06:9f07:ffff:ffff:ffff:ffff:ffff:ffff,BG 2a06:9f40::,2a06:9f47:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:9f80::,2a06:9f87:ffff:ffff:ffff:ffff:ffff:ffff,VA 2a06:9fc0::,2a06:9fc7:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a06:a000::,2a06:a007:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a06:a040::,2a06:a047:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:a080::,2a06:a087:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:a0c0::,2a06:a0c7:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a06:a100::,2a06:a107:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a06:a140::,2a06:a147:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:a180::,2a06:a187:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:a1c0::,2a06:a1c7:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a06:a200::,2a06:a207:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:a240::,2a06:a247:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:a280::,2a06:a287:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a06:a2c0::,2a06:a2c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:a300::,2a06:a307:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:a340::,2a06:a347:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:a380::,2a06:a387:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:a3c0::,2a06:a3c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:a400::,2a06:a407:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:a440::,2a06:a447:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:a480::,2a06:a487:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:a4c0::,2a06:a4c7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:a500::,2a06:a507:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:a540::,2a06:a547:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:a580::,2a06:a587:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:a5c0::,2a06:a5c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:a600::,2a06:a607:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:a640::,2a06:a647:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:a680::,2a06:a687:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:a6c0::,2a06:a6c7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:a700::,2a06:a707:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:a740::,2a06:a747:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:a780::,2a06:a787:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a06:a7c0::,2a06:a7c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:a800::,2a06:a807:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:a840::,2a06:a847:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:a880::,2a06:a887:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:a8c0::,2a06:a8c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:a900::,2a06:a907:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:a940::,2a06:a947:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:a980::,2a06:a987:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:a9c0::,2a06:a9c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:aa00::,2a06:aa07:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:aa40::,2a06:aa47:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:aa80::,2a06:aa87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:aac0::,2a06:aac7:ffff:ffff:ffff:ffff:ffff:ffff,EE 2a06:ab00::,2a06:ab07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:ab40::,2a06:ab47:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:ab80::,2a06:ab87:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:abc0::,2a06:abc7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:ac00::,2a06:ac07:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:ac40::,2a06:ac47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:ac80::,2a06:ac87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:acc0::,2a06:acc7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:ad00::,2a06:ad07:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:ad40::,2a06:ad47:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:ad80::,2a06:ad87:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:adc0::,2a06:adc7:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:ae00::,2a06:ae07:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a06:ae40::,2a06:ae47:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a06:ae80::,2a06:ae87:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:aec0::,2a06:aec7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:af00::,2a06:af07:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:af40::,2a06:af47:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a06:af80::,2a06:af87:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:afc0::,2a06:afc7:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:b000::,2a06:b007:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:b040::,2a06:b047:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:b080::,2a06:b087:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:b0c0::,2a06:b0c7:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:b100::,2a06:b107:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a06:b140::,2a06:b147:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:b180::,2a06:b187:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:b1c0::,2a06:b1c7:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:b200::,2a06:b207:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:b240::,2a06:b247:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:b280::,2a06:b287:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a06:b2c0::,2a06:b2c7:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a06:b300::,2a06:b307:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:b340::,2a06:b347:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a06:b380::,2a06:b387:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:b3c0::,2a06:b3c7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:b400::,2a06:b407:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:b440::,2a06:b447:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:b480::,2a06:b487:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:b4c0::,2a06:b4c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:b500::,2a06:b507:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:b540::,2a06:b547:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a06:b580::,2a06:b587:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:b5c0::,2a06:b5c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:b600::,2a06:b607:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:b640::,2a06:b647:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:b680::,2a06:b687:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:b6c0::,2a06:b6c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:b700::,2a06:b707:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a06:b740::,2a06:b747:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a06:b780::,2a06:b787:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:b7c0::,2a06:b7c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:b800::,2a06:b807:ffff:ffff:ffff:ffff:ffff:ffff,KZ 2a06:b840::,2a06:b847:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:b880::,2a06:b887:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a06:b8c0::,2a06:b8c7:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a06:b900::,2a06:b907:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a06:b940::,2a06:b947:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a06:b980::,2a06:b987:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:b9c0::,2a06:b9c7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:ba00::,2a06:ba07:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a06:ba40::,2a06:ba47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:ba80::,2a06:ba87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:bac0::,2a06:bac7:ffff:ffff:ffff:ffff:ffff:ffff,CZ 2a06:bb00::,2a06:bb07:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:bb40::,2a06:bb47:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:bb80::,2a06:bb87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:bbc0::,2a06:bbc7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:bc00::,2a06:bc07:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:bc40::,2a06:bc47:ffff:ffff:ffff:ffff:ffff:ffff,US 2a06:bc80::,2a06:bc87:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:bcc0::,2a06:bcc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:bd00::,2a06:bd07:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:bd40::,2a06:bd47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:bd80::,2a06:bd87:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a06:bdc0::,2a06:bdc7:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:be00::,2a06:be07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:be40::,2a06:be47:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:be80::,2a06:be87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:bec0::,2a06:bec7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:bf00::,2a06:bf07:ffff:ffff:ffff:ffff:ffff:ffff,IS 2a06:bf40::,2a06:bf47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:bf80::,2a06:bf87:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:bfc0::,2a06:bfc7:ffff:ffff:ffff:ffff:ffff:ffff,SK 2a06:c000::,2a06:c007:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:c040::,2a06:c047:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:c080::,2a06:c087:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a06:c0c0::,2a06:c0c7:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a06:c100::,2a06:c107:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:c140::,2a06:c147:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a06:c180::,2a06:c187:ffff:ffff:ffff:ffff:ffff:ffff,SI 2a06:c1c0::,2a06:c1c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:c200::,2a06:c207:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:c240::,2a06:c247:ffff:ffff:ffff:ffff:ffff:ffff,SE 2a06:c280::,2a06:c287:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:c2c0::,2a06:c2c7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:c300::,2a06:c307:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a06:c340::,2a06:c347:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:c380::,2a06:c387:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:c3c0::,2a06:c3c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:c400::,2a06:c407:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:c440::,2a06:c447:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:c480::,2a06:c487:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:c4c0::,2a06:c4c7:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a06:c500::,2a06:c507:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a06:c540::,2a06:c547:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:c580::,2a06:c587:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:c5c0::,2a06:c5c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:c600::,2a06:c607:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:c640::,2a06:c647:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:c680::,2a06:c687:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:c6c0::,2a06:c6c7:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:c700::,2a06:c707:ffff:ffff:ffff:ffff:ffff:ffff,IL 2a06:c740::,2a06:c747:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:c780::,2a06:c787:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a06:c7c0::,2a06:c7c7:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a06:c800::,2a06:c807:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:c840::,2a06:c847:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a06:c880::,2a06:c887:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:c8c0::,2a06:c8c7:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:c900::,2a06:c907:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:c940::,2a06:c947:ffff:ffff:ffff:ffff:ffff:ffff,PL 2a06:c980::,2a06:c987:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:c9c0::,2a06:c9c7:ffff:ffff:ffff:ffff:ffff:ffff,DK 2a06:ca00::,2a06:ca07:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:ca40::,2a06:ca47:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:ca80::,2a06:ca87:ffff:ffff:ffff:ffff:ffff:ffff,RU 2a06:cac0::,2a06:cac7:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:cb00::,2a06:cb07:ffff:ffff:ffff:ffff:ffff:ffff,LB 2a06:cb40::,2a06:cb47:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:cb80::,2a06:cb87:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:cbc0::,2a06:cbc7:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:cc00::,2a06:cc07:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:cc40::,2a06:cc47:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:cc80::,2a06:cc87:ffff:ffff:ffff:ffff:ffff:ffff,NO 2a06:ccc0::,2a06:ccc7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:cd00::,2a06:cd07:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:cd40::,2a06:cd47:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:cd80::,2a06:cd87:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:cdc0::,2a06:cdc7:ffff:ffff:ffff:ffff:ffff:ffff,PT 2a06:ce00::,2a06:ce07:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:ce40::,2a06:ce47:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:ce80::,2a06:ce87:ffff:ffff:ffff:ffff:ffff:ffff,NL 2a06:cec0::,2a06:cec7:ffff:ffff:ffff:ffff:ffff:ffff,RO 2a06:cf00::,2a06:cf07:ffff:ffff:ffff:ffff:ffff:ffff,DE 2a06:cf40::,2a06:cf47:ffff:ffff:ffff:ffff:ffff:ffff,TR 2a06:cf80::,2a06:cf87:ffff:ffff:ffff:ffff:ffff:ffff,FI 2a06:cfc0::,2a06:cfc7:ffff:ffff:ffff:ffff:ffff:ffff,IT 2a06:d000::,2a06:d007:ffff:ffff:ffff:ffff:ffff:ffff,UA 2a06:d040::,2a06:d047:ffff:ffff:ffff:ffff:ffff:ffff,CH 2a06:d080::,2a06:d087:ffff:ffff:ffff:ffff:ffff:ffff,ES 2a06:d0c0::,2a06:d0c7:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:d100::,2a06:d107:ffff:ffff:ffff:ffff:ffff:ffff,FR 2a06:d140::,2a06:d147:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:d180::,2a06:d187:ffff:ffff:ffff:ffff:ffff:ffff,AT 2a06:d1c0::,2a06:d1c7:ffff:ffff:ffff:ffff:ffff:ffff,GB 2a06:d200::,2a06:d207:ffff:ffff:ffff:ffff:ffff:ffff,IR 2a06:d240::,2a06:d247:ffff:ffff:ffff:ffff:ffff:ffff,HU 2a06:d280::,2a06:d287:ffff:ffff:ffff:ffff:ffff:ffff,UA 2c0e::,2c0e:fff:ffff:ffff:ffff:ffff:ffff:ffff,EG 2c0e:2000::,2c0e:2fff:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0e:4000::,2c0e:40ff:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f400::,2c0f:f400:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f408::,2c0f:f408:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:f410::,2c0f:f410:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:f418::,2c0f:f418:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:f420::,2c0f:f420:ffff:ffff:ffff:ffff:ffff:ffff,CV 2c0f:f428::,2c0f:f428:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:f430::,2c0f:f430:ffff:ffff:ffff:ffff:ffff:ffff,GH 2c0f:f438::,2c0f:f438:ffff:ffff:ffff:ffff:ffff:ffff,CV 2c0f:f440::,2c0f:f440:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f448::,2c0f:f448:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f450::,2c0f:f450:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f458::,2c0f:f458:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:f460::,2c0f:f460:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f468::,2c0f:f468:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:f470::,2c0f:f470:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f478::,2c0f:f478:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f480::,2c0f:f480:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f488::,2c0f:f488:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f490::,2c0f:f490:ffff:ffff:ffff:ffff:ffff:ffff,GH 2c0f:f498::,2c0f:f498:ffff:ffff:ffff:ffff:ffff:ffff,CV 2c0f:f4a0::,2c0f:f4a0:ffff:ffff:ffff:ffff:ffff:ffff,ZW 2c0f:f4a8::,2c0f:f4a8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f4b0::,2c0f:f4b0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f4b8::,2c0f:f4b8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f4c0::,2c0f:f4c0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f4c8::,2c0f:f4c8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f4d0::,2c0f:f4d0:ffff:ffff:ffff:ffff:ffff:ffff,CI 2c0f:f4d8::,2c0f:f4d8:ffff:ffff:ffff:ffff:ffff:ffff,CM 2c0f:f4e0::,2c0f:f4e0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f4e8::,2c0f:f4e8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f4f0::,2c0f:f4f0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f4f8::,2c0f:f4f8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f500::,2c0f:f500:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f508::,2c0f:f508:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f510::,2c0f:f510:ffff:ffff:ffff:ffff:ffff:ffff,MW 2c0f:f518::,2c0f:f518:ffff:ffff:ffff:ffff:ffff:ffff,LY 2c0f:f520::,2c0f:f520:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:f528::,2c0f:f528:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f530::,2c0f:f530:ffff:ffff:ffff:ffff:ffff:ffff,SC 2c0f:f538::,2c0f:f538:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:f540::,2c0f:f540:ffff:ffff:ffff:ffff:ffff:ffff,MZ 2c0f:f548::,2c0f:f548:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:f550::,2c0f:f550:ffff:ffff:ffff:ffff:ffff:ffff,MU 2c0f:f558::,2c0f:f558:ffff:ffff:ffff:ffff:ffff:ffff,CD 2c0f:f600::,2c0f:f600:ffff:ffff:ffff:ffff:ffff:ffff,GN 2c0f:f608::,2c0f:f608:ffff:ffff:ffff:ffff:ffff:ffff,RE 2c0f:f610::,2c0f:f610:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f618::,2c0f:f618:ffff:ffff:ffff:ffff:ffff:ffff,GH 2c0f:f620::,2c0f:f620:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:f628::,2c0f:f628:ffff:ffff:ffff:ffff:ffff:ffff,RW 2c0f:f630::,2c0f:f630:ffff:ffff:ffff:ffff:ffff:ffff,BJ 2c0f:f638::,2c0f:f638:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:f640::,2c0f:f640:ffff:ffff:ffff:ffff:ffff:ffff,GA 2c0f:f648::,2c0f:f648:ffff:ffff:ffff:ffff:ffff:ffff,TD 2c0f:f650::,2c0f:f650:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f658::,2c0f:f658:ffff:ffff:ffff:ffff:ffff:ffff,UG 2c0f:f660::,2c0f:f660:ffff:ffff:ffff:ffff:ffff:ffff,CM 2c0f:f668::,2c0f:f668:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f670::,2c0f:f670:ffff:ffff:ffff:ffff:ffff:ffff,ZM 2c0f:f678::,2c0f:f678:ffff:ffff:ffff:ffff:ffff:ffff,BW 2c0f:f680::,2c0f:f680:ffff:ffff:ffff:ffff:ffff:ffff,SC 2c0f:f688::,2c0f:f688:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:f690::,2c0f:f690:ffff:ffff:ffff:ffff:ffff:ffff,SS 2c0f:f698::,2c0f:f698:ffff:ffff:ffff:ffff:ffff:ffff,TN 2c0f:f6a0::,2c0f:f6a0:ffff:ffff:ffff:ffff:ffff:ffff,CM 2c0f:f6a8::,2c0f:f6a8:ffff:ffff:ffff:ffff:ffff:ffff,BI 2c0f:f6b0::,2c0f:f6b0:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:f6b8::,2c0f:f6b8:ffff:ffff:ffff:ffff:ffff:ffff,SO 2c0f:f6c0::,2c0f:f6c0:ffff:ffff:ffff:ffff:ffff:ffff,CG 2c0f:f6c8::,2c0f:f6c8:ffff:ffff:ffff:ffff:ffff:ffff,CM 2c0f:f6d0::,2c0f:f6d0:ffff:ffff:ffff:ffff:ffff:ffff,UG 2c0f:f6d8::,2c0f:f6d8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f6e0::,2c0f:f6e0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f6e8::,2c0f:f6e8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f6f0::,2c0f:f6f0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f6f8::,2c0f:f6f8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f700::,2c0f:f700:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f708::,2c0f:f708:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f710::,2c0f:f710:ffff:ffff:ffff:ffff:ffff:ffff,SO 2c0f:f718::,2c0f:f718:ffff:ffff:ffff:ffff:ffff:ffff,BW 2c0f:f720::,2c0f:f720:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f728::,2c0f:f728:ffff:ffff:ffff:ffff:ffff:ffff,BW 2c0f:f730::,2c0f:f730:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:f738::,2c0f:f738:ffff:ffff:ffff:ffff:ffff:ffff,MU 2c0f:f740::,2c0f:f740:ffff:ffff:ffff:ffff:ffff:ffff,AO 2c0f:f748::,2c0f:f748:ffff:ffff:ffff:ffff:ffff:ffff,MU 2c0f:f750::,2c0f:f750:ffff:ffff:ffff:ffff:ffff:ffff,UG 2c0f:f758::,2c0f:f758:ffff:ffff:ffff:ffff:ffff:ffff,ZW 2c0f:f760::,2c0f:f760:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f768::,2c0f:f768:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:f770::,2c0f:f770:ffff:ffff:ffff:ffff:ffff:ffff,BJ 2c0f:f778::,2c0f:f778:ffff:ffff:ffff:ffff:ffff:ffff,NA 2c0f:f780::,2c0f:f780:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f788::,2c0f:f788:ffff:ffff:ffff:ffff:ffff:ffff,BI 2c0f:f798::,2c0f:f798:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f7a0::,2c0f:f7a0:ffff:ffff:ffff:ffff:ffff:ffff,ZW 2c0f:f7a8::,2c0f:f7af:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f7b0::,2c0f:f7b0:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:f7b8::,2c0f:f7b8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f7c0::,2c0f:f7c0:ffff:ffff:ffff:ffff:ffff:ffff,GH 2c0f:f7c8::,2c0f:f7c8:ffff:ffff:ffff:ffff:ffff:ffff,TN 2c0f:f7d0::,2c0f:f7d0:ffff:ffff:ffff:ffff:ffff:ffff,CM 2c0f:f7d8::,2c0f:f7d8:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:f7e0::,2c0f:f7e0:ffff:ffff:ffff:ffff:ffff:ffff,TN 2c0f:f7e8::,2c0f:f7e8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f7f0::,2c0f:f7f0:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:f7f8::,2c0f:f7f8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f800::,2c0f:f80f:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f810::,2c0f:f810:ffff:ffff:ffff:ffff:ffff:ffff,AO 2c0f:f818::,2c0f:f818:ffff:ffff:ffff:ffff:ffff:ffff,BJ 2c0f:f820::,2c0f:f820:ffff:ffff:ffff:ffff:ffff:ffff,GH 2c0f:f828::,2c0f:f828:ffff:ffff:ffff:ffff:ffff:ffff,AO 2c0f:f830::,2c0f:f830:ffff:ffff:ffff:ffff:ffff:ffff,MU 2c0f:f838::,2c0f:f838:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f840::,2c0f:f840:ffff:ffff:ffff:ffff:ffff:ffff,GQ 2c0f:f848::,2c0f:f848:ffff:ffff:ffff:ffff:ffff:ffff,GH 2c0f:f850::,2c0f:f850:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f858::,2c0f:f858:ffff:ffff:ffff:ffff:ffff:ffff,DZ 2c0f:f860::,2c0f:f860:ffff:ffff:ffff:ffff:ffff:ffff,RW 2c0f:f878::,2c0f:f878:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:f880::,2c0f:f880:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:f888::,2c0f:f888:ffff:ffff:ffff:ffff:ffff:ffff,AO 2c0f:f890::,2c0f:f890:ffff:ffff:ffff:ffff:ffff:ffff,GM 2c0f:f898::,2c0f:f898:ffff:ffff:ffff:ffff:ffff:ffff,MU 2c0f:f8a0::,2c0f:f8a0:ffff:ffff:ffff:ffff:ffff:ffff,UG 2c0f:f8b0::,2c0f:f8b0:ffff:ffff:ffff:ffff:ffff:ffff,BF 2c0f:f8b8::,2c0f:f8b8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f8c0::,2c0f:f8c0:ffff:ffff:ffff:ffff:ffff:ffff,GQ 2c0f:f8c8::,2c0f:f8c8:ffff:ffff:ffff:ffff:ffff:ffff,NE 2c0f:f8d0::,2c0f:f8d0:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:f8d8::,2c0f:f8d8:ffff:ffff:ffff:ffff:ffff:ffff,BW 2c0f:f8e0::,2c0f:f8e0:ffff:ffff:ffff:ffff:ffff:ffff,MU 2c0f:f8e8::,2c0f:f8e8:ffff:ffff:ffff:ffff:ffff:ffff,GH 2c0f:f8f0::,2c0f:f8f0:ffff:ffff:ffff:ffff:ffff:ffff,MU 2c0f:f8f8::,2c0f:f8f8:ffff:ffff:ffff:ffff:ffff:ffff,SO 2c0f:f900::,2c0f:f900:ffff:ffff:ffff:ffff:ffff:ffff,ML 2c0f:f908::,2c0f:f908:ffff:ffff:ffff:ffff:ffff:ffff,BI 2c0f:f918::,2c0f:f918:ffff:ffff:ffff:ffff:ffff:ffff,RE 2c0f:f920::,2c0f:f920:ffff:ffff:ffff:ffff:ffff:ffff,CG 2c0f:f928::,2c0f:f928:ffff:ffff:ffff:ffff:ffff:ffff,GW 2c0f:f930::,2c0f:f930:ffff:ffff:ffff:ffff:ffff:ffff,LR 2c0f:f938::,2c0f:f938:ffff:ffff:ffff:ffff:ffff:ffff,ZM 2c0f:f940::,2c0f:f940:ffff:ffff:ffff:ffff:ffff:ffff,DZ 2c0f:f948::,2c0f:f948:ffff:ffff:ffff:ffff:ffff:ffff,GA 2c0f:f950::,2c0f:f950:ffff:ffff:ffff:ffff:ffff:ffff,SS 2c0f:f958::,2c0f:f958:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f960::,2c0f:f960:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:f968::,2c0f:f968:ffff:ffff:ffff:ffff:ffff:ffff,MZ 2c0f:f970::,2c0f:f970:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f978::,2c0f:f978:ffff:ffff:ffff:ffff:ffff:ffff,CD 2c0f:f980::,2c0f:f980:ffff:ffff:ffff:ffff:ffff:ffff,NA 2c0f:f988::,2c0f:f988:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f990::,2c0f:f990:ffff:ffff:ffff:ffff:ffff:ffff,GN 2c0f:f998::,2c0f:f998:ffff:ffff:ffff:ffff:ffff:ffff,MR 2c0f:f9a0::,2c0f:f9a0:ffff:ffff:ffff:ffff:ffff:ffff,MW 2c0f:f9a8::,2c0f:f9a8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f9b0::,2c0f:f9b0:ffff:ffff:ffff:ffff:ffff:ffff,GA 2c0f:f9b8::,2c0f:f9b8:ffff:ffff:ffff:ffff:ffff:ffff,MU 2c0f:f9c0::,2c0f:f9c0:ffff:ffff:ffff:ffff:ffff:ffff,BW 2c0f:f9c8::,2c0f:f9c8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f9d0::,2c0f:f9d0:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:f9d8::,2c0f:f9d8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f9e0::,2c0f:f9e0:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:f9e8::,2c0f:f9e8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:f9f0::,2c0f:f9f0:ffff:ffff:ffff:ffff:ffff:ffff,MG 2c0f:f9f8::,2c0f:f9f8:ffff:ffff:ffff:ffff:ffff:ffff,BJ 2c0f:fa00::,2c0f:fa00:ffff:ffff:ffff:ffff:ffff:ffff,GH 2c0f:fa08::,2c0f:fa08:ffff:ffff:ffff:ffff:ffff:ffff,CD 2c0f:fa10::,2c0f:fa10:ffff:ffff:ffff:ffff:ffff:ffff,MU 2c0f:fa18::,2c0f:fa18:ffff:ffff:ffff:ffff:ffff:ffff,MA 2c0f:fa20::,2c0f:fa20:ffff:ffff:ffff:ffff:ffff:ffff,SS 2c0f:fa28::,2c0f:fa28:ffff:ffff:ffff:ffff:ffff:ffff,MG 2c0f:fa38::,2c0f:fa38:ffff:ffff:ffff:ffff:ffff:ffff,AO 2c0f:fa40::,2c0f:fa40:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fa48::,2c0f:fa48:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fa58::,2c0f:fa58:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fa60::,2c0f:fa60:ffff:ffff:ffff:ffff:ffff:ffff,AO 2c0f:fa68::,2c0f:fa68:ffff:ffff:ffff:ffff:ffff:ffff,GH 2c0f:fa70::,2c0f:fa70:ffff:ffff:ffff:ffff:ffff:ffff,AO 2c0f:fa78::,2c0f:fa78:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fa80::,2c0f:fa80:ffff:ffff:ffff:ffff:ffff:ffff,AO 2c0f:fa88::,2c0f:fa88:ffff:ffff:ffff:ffff:ffff:ffff,ST 2c0f:fa90::,2c0f:fa90:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fa98::,2c0f:fa98:ffff:ffff:ffff:ffff:ffff:ffff,ZW 2c0f:faa0::,2c0f:faa7:ffff:ffff:ffff:ffff:ffff:ffff,SD 2c0f:fab0::,2c0f:fabf:ffff:ffff:ffff:ffff:ffff:ffff,TN 2c0f:fac0::,2c0f:fac0:ffff:ffff:ffff:ffff:ffff:ffff,MW 2c0f:fac8::,2c0f:fac8:ffff:ffff:ffff:ffff:ffff:ffff,BW 2c0f:fad8::,2c0f:fad8:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:fae0::,2c0f:fae0:ffff:ffff:ffff:ffff:ffff:ffff,CM 2c0f:fae8::,2c0f:fae8:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:faf0::,2c0f:faf0:ffff:ffff:ffff:ffff:ffff:ffff,AO 2c0f:faf8::,2c0f:faf8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fb00::,2c0f:fb00:ffff:ffff:ffff:ffff:ffff:ffff,UG 2c0f:fb08::,2c0f:fb08:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fb10::,2c0f:fb10:ffff:ffff:ffff:ffff:ffff:ffff,LY 2c0f:fb18::,2c0f:fb18:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fb20::,2c0f:fb20:ffff:ffff:ffff:ffff:ffff:ffff,MA 2c0f:fb30::,2c0f:fb30:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fb38::,2c0f:fb38:ffff:ffff:ffff:ffff:ffff:ffff,SO 2c0f:fb40::,2c0f:fb40:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fb48::,2c0f:fb48:ffff:ffff:ffff:ffff:ffff:ffff,MZ 2c0f:fb50::,2c0f:fb50:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:fb58::,2c0f:fb58:ffff:ffff:ffff:ffff:ffff:ffff,AO 2c0f:fb60::,2c0f:fb60:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:fb68::,2c0f:fb68:ffff:ffff:ffff:ffff:ffff:ffff,LS 2c0f:fb70::,2c0f:fb70:ffff:ffff:ffff:ffff:ffff:ffff,AO 2c0f:fb78::,2c0f:fb78:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:fb80::,2c0f:fb80:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fb88::,2c0f:fb88:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:fb90::,2c0f:fb90:ffff:ffff:ffff:ffff:ffff:ffff,MZ 2c0f:fb98::,2c0f:fb98:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:fba0::,2c0f:fba0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fba8::,2c0f:fba8:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:fbb0::,2c0f:fbb0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fbb8::,2c0f:fbb8:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:fbc0::,2c0f:fbc0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fbc8::,2c0f:fbc8:ffff:ffff:ffff:ffff:ffff:ffff,UG 2c0f:fbd0::,2c0f:fbd0:ffff:ffff:ffff:ffff:ffff:ffff,GN 2c0f:fbd8::,2c0f:fbd8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fbe0::,2c0f:fc1f:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fc40::,2c0f:fc40:ffff:ffff:ffff:ffff:ffff:ffff,EG 2c0f:fc48::,2c0f:fc48:ffff:ffff:ffff:ffff:ffff:ffff,MW 2c0f:fc58::,2c0f:fc58:ffff:ffff:ffff:ffff:ffff:ffff,MW 2c0f:fc60::,2c0f:fc61:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:fc68::,2c0f:fc68:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fc70::,2c0f:fc70:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:fc78::,2c0f:fc78:ffff:ffff:ffff:ffff:ffff:ffff,ZW 2c0f:fc80::,2c0f:fc80:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:fc88::,2c0f:fc89:ffff:ffff:ffff:ffff:ffff:ffff,EG 2c0f:fc90::,2c0f:fc90:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:fc98::,2c0f:fc98:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:fca0::,2c0f:fca0:ffff:ffff:ffff:ffff:ffff:ffff,GH 2c0f:fca8::,2c0f:fca8:ffff:ffff:ffff:ffff:ffff:ffff,GH 2c0f:fcb0::,2c0f:fcb0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fcb8::,2c0f:fcb8:ffff:ffff:ffff:ffff:ffff:ffff,GM 2c0f:fcc8::,2c0f:fcc8:ffff:ffff:ffff:ffff:ffff:ffff,ZM 2c0f:fcd0::,2c0f:fcd0:ffff:ffff:ffff:ffff:ffff:ffff,ZM 2c0f:fcd8::,2c0f:fcd8:ffff:ffff:ffff:ffff:ffff:ffff,SO 2c0f:fce0::,2c0f:fce0:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:fce8::,2c0f:fce8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fcf0::,2c0f:fcf0:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:fcf8::,2c0f:fcf8:ffff:ffff:ffff:ffff:ffff:ffff,GH 2c0f:fd00::,2c0f:fd00:ffff:ffff:ffff:ffff:ffff:ffff,LS 2c0f:fd08::,2c0f:fd08:ffff:ffff:ffff:ffff:ffff:ffff,GM 2c0f:fd10::,2c0f:fd10:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:fd18::,2c0f:fd18:ffff:ffff:ffff:ffff:ffff:ffff,SC 2c0f:fd20::,2c0f:fd20:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:fd28::,2c0f:fd28:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:fd30::,2c0f:fd30:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:fd38::,2c0f:fd38:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:fd40::,2c0f:fd40:ffff:ffff:ffff:ffff:ffff:ffff,ZM 2c0f:fd48::,2c0f:fd48:ffff:ffff:ffff:ffff:ffff:ffff,ZW 2c0f:fd50::,2c0f:fd50:ffff:ffff:ffff:ffff:ffff:ffff,MW 2c0f:fd58::,2c0f:fd58:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fd60::,2c0f:fd60:ffff:ffff:ffff:ffff:ffff:ffff,UG 2c0f:fd68::,2c0f:fd68:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fd78::,2c0f:fd78:ffff:ffff:ffff:ffff:ffff:ffff,BI 2c0f:fd80::,2c0f:fd80:ffff:ffff:ffff:ffff:ffff:ffff,BF 2c0f:fd88::,2c0f:fd88:ffff:ffff:ffff:ffff:ffff:ffff,GH 2c0f:fd90::,2c0f:fd90:ffff:ffff:ffff:ffff:ffff:ffff,ZM 2c0f:fd98::,2c0f:fd98:ffff:ffff:ffff:ffff:ffff:ffff,ZM 2c0f:fda0::,2c0f:fda0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fda8::,2c0f:fda8:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:fdb0::,2c0f:fdb0:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:fdb8::,2c0f:fdb8:ffff:ffff:ffff:ffff:ffff:ffff,UG 2c0f:fdc0::,2c0f:fdc0:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:fdc8::,2c0f:fdc8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fdd0::,2c0f:fdd0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fdd8::,2c0f:fdd8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fde8::,2c0f:fde8:ffff:ffff:ffff:ffff:ffff:ffff,MW 2c0f:fdf0::,2c0f:fdf0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fdf8::,2c0f:fdf8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fe08::,2c0f:fe08:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:fe10::,2c0f:fe10:ffff:ffff:ffff:ffff:ffff:ffff,UG 2c0f:fe18::,2c0f:fe18:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fe20::,2c0f:fe20:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fe28::,2c0f:fe28:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fe30::,2c0f:fe30:ffff:ffff:ffff:ffff:ffff:ffff,MU 2c0f:fe38::,2c0f:fe38:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:fe40::,2c0f:fe40:8001:f:ffff:ffff:ffff:ffff,MU 2c0f:fe40:8001:10::,2c0f:fe40:8001:10:ffff:ffff:ffff:ffff,KE 2c0f:fe40:8001:11::,2c0f:fe40:ffff:ffff:ffff:ffff:ffff:ffff,MU 2c0f:fe48::,2c0f:fe48:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fe50::,2c0f:fe50:ffff:ffff:ffff:ffff:ffff:ffff,DZ 2c0f:fe58::,2c0f:fe58:ffff:ffff:ffff:ffff:ffff:ffff,LS 2c0f:fe60::,2c0f:fe60:ffff:ffff:ffff:ffff:ffff:ffff,RW 2c0f:fe68::,2c0f:fe68:ffff:ffff:ffff:ffff:ffff:ffff,MU 2c0f:fe70::,2c0f:fe70:ffff:ffff:ffff:ffff:ffff:ffff,UG 2c0f:fe78::,2c0f:fe78:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fe80::,2c0f:fe80:ffff:ffff:ffff:ffff:ffff:ffff,ZM 2c0f:fe88::,2c0f:fe88:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:fe90::,2c0f:fe90:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fe98::,2c0f:fe98:ffff:ffff:ffff:ffff:ffff:ffff,TZ 2c0f:fea0::,2c0f:fea0:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:fea8::,2c0f:fea8:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:feb0::,2c0f:feb0:16:ffff:ffff:ffff:ffff:ffff,MU 2c0f:feb0:17::,2c0f:feb0:17:7fff:ffff:ffff:ffff:ffff,KE 2c0f:feb0:17:8000::,2c0f:feb0:1c:ffff:ffff:ffff:ffff:ffff,MU 2c0f:feb0:1d::,2c0f:feb0:1d:7fff:ffff:ffff:ffff:ffff,MZ 2c0f:feb0:1d:8000::,2c0f:feb0:1e:ffff:ffff:ffff:ffff:ffff,MU 2c0f:feb0:1f::,2c0f:feb0:1f:7fff:ffff:ffff:ffff:ffff,ZA 2c0f:feb0:1f:8000::,2c0f:feb1:ffff:ffff:ffff:ffff:ffff:ffff,MU 2c0f:feb8::,2c0f:feb8:ffff:ffff:ffff:ffff:ffff:ffff,ZM 2c0f:fec0::,2c0f:fec0:ffff:ffff:ffff:ffff:ffff:ffff,UG 2c0f:fec8::,2c0f:fec8:ffff:ffff:ffff:ffff:ffff:ffff,SD 2c0f:fed8::,2c0f:fed8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:fee0::,2c0f:fee0:ffff:ffff:ffff:ffff:ffff:ffff,EG 2c0f:fef0::,2c0f:fef0:ffff:ffff:ffff:ffff:ffff:ffff,SC 2c0f:fef8::,2c0f:fef8:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:ff00::,2c0f:ff00:ffff:ffff:ffff:ffff:ffff:ffff,BW 2c0f:ff08::,2c0f:ff08:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:ff10::,2c0f:ff10:ffff:ffff:ffff:ffff:ffff:ffff,CD 2c0f:ff18::,2c0f:ff18:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:ff20::,2c0f:ff20:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:ff28::,2c0f:ff28:ffff:ffff:ffff:ffff:ffff:ffff,SD 2c0f:ff30::,2c0f:ff30:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:ff40::,2c0f:ff80:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:ff88::,2c0f:ff88:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:ff90::,2c0f:ff90:ffff:ffff:ffff:ffff:ffff:ffff,KE 2c0f:ff98::,2c0f:ff98:ffff:ffff:ffff:ffff:ffff:ffff,UG 2c0f:ffa0::,2c0f:ffa0:ffff:ffff:ffff:ffff:ffff:ffff,UG 2c0f:ffa8::,2c0f:ffa8:ffff:ffff:ffff:ffff:ffff:ffff,LS 2c0f:ffb0::,2c0f:ffb0:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:ffb8::,2c0f:ffb8:ffff:ffff:ffff:ffff:ffff:ffff,SD 2c0f:ffc0::,2c0f:ffc0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:ffc8::,2c0f:ffc8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:ffd0::,2c0f:ffd0:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:ffd8::,2c0f:ffd8:ffff:ffff:ffff:ffff:ffff:ffff,ZA 2c0f:ffe8::,2c0f:ffe8:ffff:ffff:ffff:ffff:ffff:ffff,NG 2c0f:fff0::,2c0f:fff0:ffff:ffff:ffff:ffff:ffff:ffff,NG tor-0.2.7.6/src/config/torrc.minimal.in0000644000175000017500000002140612621363245014562 00000000000000## Configuration file for a typical Tor user ## Last updated 9 October 2013 for Tor 0.2.5.2-alpha. ## (may or may not work for much older or much newer versions of Tor.) ## ## Lines that begin with "## " try to explain what's going on. Lines ## that begin with just "#" are disabled commands: you can enable them ## by removing the "#" symbol. ## ## See 'man tor', or https://www.torproject.org/docs/tor-manual.html, ## for more options you can use in this file. ## ## Tor will look for this file in various places based on your platform: ## https://www.torproject.org/docs/faq#torrc ## Tor opens a socks proxy on port 9050 by default -- even if you don't ## configure one below. Set "SocksPort 0" if you plan to run Tor only ## as a relay, and not make any local application connections yourself. #SocksPort 9050 # Default: Bind to localhost:9050 for local connections. #SocksPort 192.168.0.1:9100 # Bind to this address:port too. ## Entry policies to allow/deny SOCKS requests based on IP address. ## First entry that matches wins. If no SocksPolicy is set, we accept ## all (and only) requests that reach a SocksPort. Untrusted users who ## can access your SocksPort may be able to learn about the connections ## you make. #SocksPolicy accept 192.168.0.0/16 #SocksPolicy reject * ## Logs go to stdout at level "notice" unless redirected by something ## else, like one of the below lines. You can have as many Log lines as ## you want. ## ## We advise using "notice" in most cases, since anything more verbose ## may provide sensitive information to an attacker who obtains the logs. ## ## Send all messages of level 'notice' or higher to @LOCALSTATEDIR@/log/tor/notices.log #Log notice file @LOCALSTATEDIR@/log/tor/notices.log ## Send every possible message to @LOCALSTATEDIR@/log/tor/debug.log #Log debug file @LOCALSTATEDIR@/log/tor/debug.log ## Use the system log instead of Tor's logfiles #Log notice syslog ## To send all messages to stderr: #Log debug stderr ## Uncomment this to start the process in the background... or use ## --runasdaemon 1 on the command line. This is ignored on Windows; ## see the FAQ entry if you want Tor to run as an NT service. #RunAsDaemon 1 ## The directory for keeping all the keys/etc. By default, we store ## things in $HOME/.tor on Unix, and in Application Data\tor on Windows. #DataDirectory @LOCALSTATEDIR@/lib/tor ## The port on which Tor will listen for local connections from Tor ## controller applications, as documented in control-spec.txt. #ControlPort 9051 ## If you enable the controlport, be sure to enable one of these ## authentication methods, to prevent attackers from accessing it. #HashedControlPassword 16:872860B76453A77D60CA2BB8C1A7042072093276A3D701AD684053EC4C #CookieAuthentication 1 ############### This section is just for location-hidden services ### ## Once you have configured a hidden service, you can look at the ## contents of the file ".../hidden_service/hostname" for the address ## to tell people. ## ## HiddenServicePort x y:z says to redirect requests on port x to the ## address y:z. #HiddenServiceDir @LOCALSTATEDIR@/lib/tor/hidden_service/ #HiddenServicePort 80 127.0.0.1:80 #HiddenServiceDir @LOCALSTATEDIR@/lib/tor/other_hidden_service/ #HiddenServicePort 80 127.0.0.1:80 #HiddenServicePort 22 127.0.0.1:22 ################ This section is just for relays ##################### # ## See https://www.torproject.org/docs/tor-doc-relay for details. ## Required: what port to advertise for incoming Tor connections. #ORPort 9001 ## If you want to listen on a port other than the one advertised in ## ORPort (e.g. to advertise 443 but bind to 9090), you can do it as ## follows. You'll need to do ipchains or other port forwarding ## yourself to make this work. #ORPort 443 NoListen #ORPort 127.0.0.1:9090 NoAdvertise ## The IP address or full DNS name for incoming connections to your ## relay. Leave commented out and Tor will guess. #Address noname.example.com ## If you have multiple network interfaces, you can specify one for ## outgoing traffic to use. # OutboundBindAddress 10.0.0.5 ## A handle for your relay, so people don't have to refer to it by key. #Nickname ididnteditheconfig ## Define these to limit how much relayed traffic you will allow. Your ## own traffic is still unthrottled. Note that RelayBandwidthRate must ## be at least 20 KB. ## Note that units for these config options are bytes per second, not bits ## per second, and that prefixes are binary prefixes, i.e. 2^10, 2^20, etc. #RelayBandwidthRate 100 KB # Throttle traffic to 100KB/s (800Kbps) #RelayBandwidthBurst 200 KB # But allow bursts up to 200KB/s (1600Kbps) ## Use these to restrict the maximum traffic per day, week, or month. ## Note that this threshold applies separately to sent and received bytes, ## not to their sum: setting "4 GB" may allow up to 8 GB total before ## hibernating. ## ## Set a maximum of 4 gigabytes each way per period. #AccountingMax 4 GB ## Each period starts daily at midnight (AccountingMax is per day) #AccountingStart day 00:00 ## Each period starts on the 3rd of the month at 15:00 (AccountingMax ## is per month) #AccountingStart month 3 15:00 ## Administrative contact information for this relay or bridge. This line ## can be used to contact you if your relay or bridge is misconfigured or ## something else goes wrong. Note that we archive and publish all ## descriptors containing these lines and that Google indexes them, so ## spammers might also collect them. You may want to obscure the fact that ## it's an email address and/or generate a new address for this purpose. #ContactInfo Random Person ## You might also include your PGP or GPG fingerprint if you have one: #ContactInfo 0xFFFFFFFF Random Person ## Uncomment this to mirror directory information for others. Please do ## if you have enough bandwidth. #DirPort 9030 # what port to advertise for directory connections ## If you want to listen on a port other than the one advertised in ## DirPort (e.g. to advertise 80 but bind to 9091), you can do it as ## follows. below too. You'll need to do ipchains or other port ## forwarding yourself to make this work. #DirPort 80 NoListen #DirPort 127.0.0.1:9091 NoAdvertise ## Uncomment to return an arbitrary blob of html on your DirPort. Now you ## can explain what Tor is if anybody wonders why your IP address is ## contacting them. See contrib/tor-exit-notice.html in Tor's source ## distribution for a sample. #DirPortFrontPage @CONFDIR@/tor-exit-notice.html ## Uncomment this if you run more than one Tor relay, and add the identity ## key fingerprint of each Tor relay you control, even if they're on ## different networks. You declare it here so Tor clients can avoid ## using more than one of your relays in a single circuit. See ## https://www.torproject.org/docs/faq#MultipleRelays ## However, you should never include a bridge's fingerprint here, as it would ## break its concealability and potentionally reveal its IP/TCP address. #MyFamily $keyid,$keyid,... ## A comma-separated list of exit policies. They're considered first ## to last, and the first match wins. If you want to _replace_ ## the default exit policy, end this with either a reject *:* or an ## accept *:*. Otherwise, you're _augmenting_ (prepending to) the ## default exit policy. Leave commented to just use the default, which is ## described in the man page or at ## https://www.torproject.org/documentation.html ## ## Look at https://www.torproject.org/faq-abuse.html#TypicalAbuses ## for issues you might encounter if you use the default exit policy. ## ## If certain IPs and ports are blocked externally, e.g. by your firewall, ## you should update your exit policy to reflect this -- otherwise Tor ## users will be told that those destinations are down. ## ## For security, by default Tor rejects connections to private (local) ## networks, including to your public IP address. See the man page entry ## for ExitPolicyRejectPrivate if you want to allow "exit enclaving". ## #ExitPolicy accept *:6660-6667,reject *:* # allow irc ports but no more #ExitPolicy accept *:119 # accept nntp as well as default exit policy #ExitPolicy reject *:* # no exits allowed ## Bridge relays (or "bridges") are Tor relays that aren't listed in the ## main directory. Since there is no complete public list of them, even an ## ISP that filters connections to all the known Tor relays probably ## won't be able to block all the bridges. Also, websites won't treat you ## differently because they won't know you're running Tor. If you can ## be a real relay, please do; but if not, be a bridge! #BridgeRelay 1 ## By default, Tor will advertise your bridge to users through various ## mechanisms like https://bridges.torproject.org/. If you want to run ## a private bridge, for example because you'll give out your bridge ## address manually to your friends, uncomment this line: #PublishServerDescriptor 0 tor-0.2.7.6/src/common/0000755000175000017500000000000012632347251011555 500000000000000tor-0.2.7.6/src/common/testsupport.h0000644000175000017500000000420012621363245014255 00000000000000/* Copyright (c) 2013-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef TOR_TESTSUPPORT_H #define TOR_TESTSUPPORT_H #ifdef TOR_UNIT_TESTS #define STATIC #else #define STATIC static #endif /** Quick and dirty macros to implement test mocking. * * To use them, suppose that you have a function you'd like to mock * with the signature "void writebuf(size_t n, char *buf)". You can then * declare the function as: * * MOCK_DECL(void, writebuf, (size_t n, char *buf)); * * and implement it as: * * MOCK_IMPL(void, * writebuf,(size_t n, char *buf)) * { * ... * } * * For the non-testing build, this will expand simply into: * * void writebuf(size_t n, char *buf); * void * writebuf(size_t n, char *buf) * { * ... * } * * But for the testing case, it will expand into: * * void writebuf__real(size_t n, char *buf); * extern void (*writebuf)(size_t n, char *buf); * * void (*writebuf)(size_t n, char *buf) = writebuf__real; * void * writebuf__real(size_t n, char *buf) * { * ... * } * * This is not a great mocking system! It is deliberately "the simplest * thing that could work", and pays for its simplicity in its lack of * features, and in its uglification of the Tor code. Replacing it with * something clever would be a fine thing. * * @{ */ #ifdef TOR_UNIT_TESTS #define MOCK_DECL(rv, funcname, arglist) \ rv funcname ##__real arglist; \ extern rv(*funcname) arglist #define MOCK_IMPL(rv, funcname, arglist) \ rv(*funcname) arglist = funcname ##__real; \ rv funcname ##__real arglist #define MOCK(func, replacement) \ do { \ (func) = (replacement); \ } while (0) #define UNMOCK(func) \ do { \ func = func ##__real; \ } while (0) #else #define MOCK_DECL(rv, funcname, arglist) \ rv funcname arglist #define MOCK_IMPL(rv, funcname, arglist) \ rv funcname arglist #endif /** @} */ #endif tor-0.2.7.6/src/common/address.c0000644000175000017500000016423012631612325013270 00000000000000/* Copyright (c) 2003-2004, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file address.c * \brief Functions to use and manipulate the tor_addr_t structure. **/ #define ADDRESS_PRIVATE #include "orconfig.h" #ifdef _WIN32 /* For access to structs needed by GetAdaptersAddresses */ #ifndef WIN32_LEAN_AND_MEAN #error "orconfig.h didn't define WIN32_LEAN_AND_MEAN" #endif #ifndef WINVER #error "orconfig.h didn't define WINVER" #endif #ifndef _WIN32_WINNT #error "orconfig.h didn't define _WIN32_WINNT" #endif #if WINVER < 0x0501 #error "winver too low" #endif #if _WIN32_WINNT < 0x0501 #error "winver too low" #endif #include #include #include #include #endif #include "compat.h" #include "util.h" #include "util_format.h" #include "address.h" #include "torlog.h" #include "container.h" #include "sandbox.h" #ifdef HAVE_SYS_TIME_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_ERRNO_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif #ifdef HAVE_ARPA_INET_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef HAVE_NETDB_H #include #endif #ifdef HAVE_SYS_PARAM_H #include /* FreeBSD needs this to know what version it is */ #endif #ifdef HAVE_SYS_UN_H #include #endif #ifdef HAVE_IFADDRS_H #include #endif #ifdef HAVE_SYS_IOCTL_H #include #endif #ifdef HAVE_NET_IF_H #include #endif #include #include #include #include #include /* tor_addr_is_null() and maybe other functions rely on AF_UNSPEC being 0 to * work correctly. Bail out here if we've found a platform where AF_UNSPEC * isn't 0. */ #if AF_UNSPEC != 0 #error We rely on AF_UNSPEC being 0. Let us know about your platform, please! #endif /** Convert the tor_addr_t in a, with port in port, into a * sockaddr object in *sa_out of object size len. If not enough * room is available in sa_out, or on error, return 0. On success, return * the length of the sockaddr. * * Interface note: ordinarily, we return -1 for error. We can't do that here, * since socklen_t is unsigned on some platforms. **/ socklen_t tor_addr_to_sockaddr(const tor_addr_t *a, uint16_t port, struct sockaddr *sa_out, socklen_t len) { memset(sa_out, 0, len); sa_family_t family = tor_addr_family(a); if (family == AF_INET) { struct sockaddr_in *sin; if (len < (int)sizeof(struct sockaddr_in)) return 0; sin = (struct sockaddr_in *)sa_out; #ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN sin->sin_len = sizeof(struct sockaddr_in); #endif sin->sin_family = AF_INET; sin->sin_port = htons(port); sin->sin_addr.s_addr = tor_addr_to_ipv4n(a); return sizeof(struct sockaddr_in); } else if (family == AF_INET6) { struct sockaddr_in6 *sin6; if (len < (int)sizeof(struct sockaddr_in6)) return 0; sin6 = (struct sockaddr_in6 *)sa_out; #ifdef HAVE_STRUCT_SOCKADDR_IN6_SIN6_LEN sin6->sin6_len = sizeof(struct sockaddr_in6); #endif sin6->sin6_family = AF_INET6; sin6->sin6_port = htons(port); memcpy(&sin6->sin6_addr, tor_addr_to_in6(a), sizeof(struct in6_addr)); return sizeof(struct sockaddr_in6); } else { return 0; } } /** Set address a to zero. This address belongs to * the AF_UNIX family. */ static void tor_addr_make_af_unix(tor_addr_t *a) { memset(a, 0, sizeof(*a)); a->family = AF_UNIX; } /** Set the tor_addr_t in a to contain the socket address contained in * sa. Return 0 on success and -1 on failure. */ int tor_addr_from_sockaddr(tor_addr_t *a, const struct sockaddr *sa, uint16_t *port_out) { tor_assert(a); tor_assert(sa); memset(a, 0, sizeof(*a)); if (sa->sa_family == AF_INET) { struct sockaddr_in *sin = (struct sockaddr_in *) sa; tor_addr_from_ipv4n(a, sin->sin_addr.s_addr); if (port_out) *port_out = ntohs(sin->sin_port); } else if (sa->sa_family == AF_INET6) { struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa; tor_addr_from_in6(a, &sin6->sin6_addr); if (port_out) *port_out = ntohs(sin6->sin6_port); } else if (sa->sa_family == AF_UNIX) { tor_addr_make_af_unix(a); return 0; } else { tor_addr_make_unspec(a); return -1; } return 0; } /** Return a newly allocated string holding the address described in * sa. AF_UNIX, AF_UNSPEC, AF_INET, and AF_INET6 are supported. */ char * tor_sockaddr_to_str(const struct sockaddr *sa) { char address[TOR_ADDR_BUF_LEN]; char *result; tor_addr_t addr; uint16_t port; #ifdef HAVE_SYS_UN_H if (sa->sa_family == AF_UNIX) { struct sockaddr_un *s_un = (struct sockaddr_un *)sa; tor_asprintf(&result, "unix:%s", s_un->sun_path); return result; } #endif if (sa->sa_family == AF_UNSPEC) return tor_strdup("unspec"); if (tor_addr_from_sockaddr(&addr, sa, &port) < 0) return NULL; if (! tor_addr_to_str(address, &addr, sizeof(address), 1)) return NULL; tor_asprintf(&result, "%s:%d", address, (int)port); return result; } /** Set address a to the unspecified address. This address belongs to * no family. */ void tor_addr_make_unspec(tor_addr_t *a) { memset(a, 0, sizeof(*a)); a->family = AF_UNSPEC; } /** Set address a to the null address in address family family. * The null address for AF_INET is 0.0.0.0. The null address for AF_INET6 is * [::]. AF_UNSPEC is all null. */ void tor_addr_make_null(tor_addr_t *a, sa_family_t family) { memset(a, 0, sizeof(*a)); a->family = family; } /** Similar behavior to Unix gethostbyname: resolve name, and set * *addr to the proper IP address and family. The family * argument (which must be AF_INET, AF_INET6, or AF_UNSPEC) declares a * preferred family, though another one may be returned if only one * family is implemented for this address. * * Return 0 on success, -1 on failure; 1 on transient failure. */ int tor_addr_lookup(const char *name, uint16_t family, tor_addr_t *addr) { /* Perhaps eventually this should be replaced by a tor_getaddrinfo or * something. */ struct in_addr iaddr; struct in6_addr iaddr6; tor_assert(name); tor_assert(addr); tor_assert(family == AF_INET || family == AF_INET6 || family == AF_UNSPEC); if (!*name) { /* Empty address is an error. */ return -1; } else if (tor_inet_pton(AF_INET, name, &iaddr)) { /* It's an IPv4 IP. */ if (family == AF_INET6) return -1; tor_addr_from_in(addr, &iaddr); return 0; } else if (tor_inet_pton(AF_INET6, name, &iaddr6)) { if (family == AF_INET) return -1; tor_addr_from_in6(addr, &iaddr6); return 0; } else { #ifdef HAVE_GETADDRINFO int err; struct addrinfo *res=NULL, *res_p; struct addrinfo *best=NULL; struct addrinfo hints; int result = -1; memset(&hints, 0, sizeof(hints)); hints.ai_family = family; hints.ai_socktype = SOCK_STREAM; err = sandbox_getaddrinfo(name, NULL, &hints, &res); /* The check for 'res' here shouldn't be necessary, but it makes static * analysis tools happy. */ if (!err && res) { best = NULL; for (res_p = res; res_p; res_p = res_p->ai_next) { if (family == AF_UNSPEC) { if (res_p->ai_family == AF_INET) { best = res_p; break; } else if (res_p->ai_family == AF_INET6 && !best) { best = res_p; } } else if (family == res_p->ai_family) { best = res_p; break; } } if (!best) best = res; if (best->ai_family == AF_INET) { tor_addr_from_in(addr, &((struct sockaddr_in*)best->ai_addr)->sin_addr); result = 0; } else if (best->ai_family == AF_INET6) { tor_addr_from_in6(addr, &((struct sockaddr_in6*)best->ai_addr)->sin6_addr); result = 0; } sandbox_freeaddrinfo(res); return result; } return (err == EAI_AGAIN) ? 1 : -1; #else struct hostent *ent; int err; #ifdef HAVE_GETHOSTBYNAME_R_6_ARG char buf[2048]; struct hostent hostent; int r; r = gethostbyname_r(name, &hostent, buf, sizeof(buf), &ent, &err); #elif defined(HAVE_GETHOSTBYNAME_R_5_ARG) char buf[2048]; struct hostent hostent; ent = gethostbyname_r(name, &hostent, buf, sizeof(buf), &err); #elif defined(HAVE_GETHOSTBYNAME_R_3_ARG) struct hostent_data data; struct hostent hent; memset(&data, 0, sizeof(data)); err = gethostbyname_r(name, &hent, &data); ent = err ? NULL : &hent; #else ent = gethostbyname(name); #ifdef _WIN32 err = WSAGetLastError(); #else err = h_errno; #endif #endif /* endif HAVE_GETHOSTBYNAME_R_6_ARG. */ if (ent) { if (ent->h_addrtype == AF_INET) { tor_addr_from_in(addr, (struct in_addr*) ent->h_addr); } else if (ent->h_addrtype == AF_INET6) { tor_addr_from_in6(addr, (struct in6_addr*) ent->h_addr); } else { tor_assert(0); /* gethostbyname() returned a bizarre addrtype */ } return 0; } #ifdef _WIN32 return (err == WSATRY_AGAIN) ? 1 : -1; #else return (err == TRY_AGAIN) ? 1 : -1; #endif #endif } } /** Return true iff ip is an IP reserved to localhost or local networks * in RFC1918 or RFC4193 or RFC4291. (fec0::/10, deprecated by RFC3879, is * also treated as internal for now.) */ int tor_addr_is_internal_(const tor_addr_t *addr, int for_listening, const char *filename, int lineno) { uint32_t iph4 = 0; uint32_t iph6[4]; tor_assert(addr); sa_family_t v_family = tor_addr_family(addr); if (v_family == AF_INET) { iph4 = tor_addr_to_ipv4h(addr); } else if (v_family == AF_INET6) { if (tor_addr_is_v4(addr)) { /* v4-mapped */ uint32_t *addr32 = NULL; v_family = AF_INET; // Work around an incorrect NULL pointer dereference warning in // "clang --analyze" due to limited analysis depth addr32 = tor_addr_to_in6_addr32(addr); // To improve performance, wrap this assertion in: // #if !defined(__clang_analyzer__) || PARANOIA tor_assert(addr32); iph4 = ntohl(addr32[3]); } } if (v_family == AF_INET6) { const uint32_t *a32 = tor_addr_to_in6_addr32(addr); iph6[0] = ntohl(a32[0]); iph6[1] = ntohl(a32[1]); iph6[2] = ntohl(a32[2]); iph6[3] = ntohl(a32[3]); if (for_listening && !iph6[0] && !iph6[1] && !iph6[2] && !iph6[3]) /* :: */ return 0; if (((iph6[0] & 0xfe000000) == 0xfc000000) || /* fc00/7 - RFC4193 */ ((iph6[0] & 0xffc00000) == 0xfe800000) || /* fe80/10 - RFC4291 */ ((iph6[0] & 0xffc00000) == 0xfec00000)) /* fec0/10 D- RFC3879 */ return 1; if (!iph6[0] && !iph6[1] && !iph6[2] && ((iph6[3] & 0xfffffffe) == 0x00000000)) /* ::/127 */ return 1; return 0; } else if (v_family == AF_INET) { if (for_listening && !iph4) /* special case for binding to 0.0.0.0 */ return 0; if (((iph4 & 0xff000000) == 0x0a000000) || /* 10/8 */ ((iph4 & 0xff000000) == 0x00000000) || /* 0/8 */ ((iph4 & 0xff000000) == 0x7f000000) || /* 127/8 */ ((iph4 & 0xffff0000) == 0xa9fe0000) || /* 169.254/16 */ ((iph4 & 0xfff00000) == 0xac100000) || /* 172.16/12 */ ((iph4 & 0xffff0000) == 0xc0a80000)) /* 192.168/16 */ return 1; return 0; } /* unknown address family... assume it's not safe for external use */ /* rather than tor_assert(0) */ log_warn(LD_BUG, "tor_addr_is_internal() called from %s:%d with a " "non-IP address of type %d", filename, lineno, (int)v_family); tor_fragile_assert(); return 1; } /** Convert a tor_addr_t addr into a string, and store it in * dest of size len. Returns a pointer to dest on success, * or NULL on failure. If decorate, surround IPv6 addresses with * brackets. */ const char * tor_addr_to_str(char *dest, const tor_addr_t *addr, size_t len, int decorate) { const char *ptr; tor_assert(addr && dest); switch (tor_addr_family(addr)) { case AF_INET: /* Shortest addr x.x.x.x + \0 */ if (len < 8) return NULL; ptr = tor_inet_ntop(AF_INET, &addr->addr.in_addr, dest, len); break; case AF_INET6: /* Shortest addr [ :: ] + \0 */ if (len < (3 + (decorate ? 2 : 0))) return NULL; if (decorate) ptr = tor_inet_ntop(AF_INET6, &addr->addr.in6_addr, dest+1, len-2); else ptr = tor_inet_ntop(AF_INET6, &addr->addr.in6_addr, dest, len); if (ptr && decorate) { *dest = '['; memcpy(dest+strlen(dest), "]", 2); tor_assert(ptr == dest+1); ptr = dest; } break; case AF_UNIX: tor_snprintf(dest, len, "AF_UNIX"); ptr = dest; break; default: return NULL; } return ptr; } /** Parse an .in-addr.arpa or .ip6.arpa address from address. Return 0 * if this is not an .in-addr.arpa address or an .ip6.arpa address. Return -1 * if this is an ill-formed .in-addr.arpa address or an .ip6.arpa address. * Also return -1 if family is not AF_UNSPEC, and the parsed address * family does not match family. On success, return 1, and store the * result, if any, into result, if provided. * * If accept_regular is set and the address is in neither recognized * reverse lookup hostname format, try parsing the address as a regular * IPv4 or IPv6 address too. */ int tor_addr_parse_PTR_name(tor_addr_t *result, const char *address, int family, int accept_regular) { if (!strcasecmpend(address, ".in-addr.arpa")) { /* We have an in-addr.arpa address. */ char buf[INET_NTOA_BUF_LEN]; size_t len; struct in_addr inaddr; if (family == AF_INET6) return -1; len = strlen(address) - strlen(".in-addr.arpa"); if (len >= INET_NTOA_BUF_LEN) return -1; /* Too long. */ memcpy(buf, address, len); buf[len] = '\0'; if (tor_inet_aton(buf, &inaddr) == 0) return -1; /* malformed. */ /* reverse the bytes */ inaddr.s_addr = (uint32_t) (((inaddr.s_addr & 0x000000ff) << 24) |((inaddr.s_addr & 0x0000ff00) << 8) |((inaddr.s_addr & 0x00ff0000) >> 8) |((inaddr.s_addr & 0xff000000) >> 24)); if (result) { tor_addr_from_in(result, &inaddr); } return 1; } if (!strcasecmpend(address, ".ip6.arpa")) { const char *cp; int n0, n1; struct in6_addr in6; if (family == AF_INET) return -1; cp = address; for (int i = 0; i < 16; ++i) { n0 = hex_decode_digit(*cp++); /* The low-order nybble appears first. */ if (*cp++ != '.') return -1; /* Then a dot. */ n1 = hex_decode_digit(*cp++); /* The high-order nybble appears first. */ if (*cp++ != '.') return -1; /* Then another dot. */ if (n0<0 || n1 < 0) /* Both nybbles must be hex. */ return -1; /* We don't check the length of the string in here. But that's okay, * since we already know that the string ends with ".ip6.arpa", and * there is no way to frameshift .ip6.arpa so it fits into the pattern * of hexdigit, period, hexdigit, period that we enforce above. */ /* Assign from low-byte to high-byte. */ in6.s6_addr[15-i] = n0 | (n1 << 4); } if (strcasecmp(cp, "ip6.arpa")) return -1; if (result) { tor_addr_from_in6(result, &in6); } return 1; } if (accept_regular) { tor_addr_t tmp; int r = tor_addr_parse(&tmp, address); if (r < 0) return 0; if (r != family && family != AF_UNSPEC) return -1; if (result) memcpy(result, &tmp, sizeof(tor_addr_t)); return 1; } return 0; } /** Convert addr to an in-addr.arpa name or a .ip6.arpa name, * and store the result in the outlen-byte buffer at * out. Return the number of chars written to out, not * including the trailing \0, on success. Returns -1 on failure. */ int tor_addr_to_PTR_name(char *out, size_t outlen, const tor_addr_t *addr) { tor_assert(out); tor_assert(addr); if (addr->family == AF_INET) { uint32_t a = tor_addr_to_ipv4h(addr); return tor_snprintf(out, outlen, "%d.%d.%d.%d.in-addr.arpa", (int)(uint8_t)((a )&0xff), (int)(uint8_t)((a>>8 )&0xff), (int)(uint8_t)((a>>16)&0xff), (int)(uint8_t)((a>>24)&0xff)); } else if (addr->family == AF_INET6) { int i; char *cp = out; const uint8_t *bytes = tor_addr_to_in6_addr8(addr); if (outlen < REVERSE_LOOKUP_NAME_BUF_LEN) return -1; for (i = 15; i >= 0; --i) { uint8_t byte = bytes[i]; *cp++ = "0123456789abcdef"[byte & 0x0f]; *cp++ = '.'; *cp++ = "0123456789abcdef"[byte >> 4]; *cp++ = '.'; } memcpy(cp, "ip6.arpa", 9); /* 8 characters plus NUL */ return 32 * 2 + 8; } return -1; } /** Parse a string s containing an IPv4/IPv6 address, and possibly * a mask and port or port range. Store the parsed address in * addr_out, a mask (if any) in mask_out, and port(s) (if any) * in port_min_out and port_max_out. * * The syntax is: * Address OptMask OptPortRange * Address ::= IPv4Address / "[" IPv6Address "]" / "*" * OptMask ::= "/" Integer / * OptPortRange ::= ":*" / ":" Integer / ":" Integer "-" Integer / * * - If mask, minport, or maxport are NULL, we do not want these * options to be set; treat them as an error if present. * - If the string has no mask, the mask is set to /32 (IPv4) or /128 (IPv6). * - If the string has one port, it is placed in both min and max port * variables. * - If the string has no port(s), port_(min|max)_out are set to 1 and 65535. * * Return an address family on success, or -1 if an invalid address string is * provided. * * If 'flags & TAPMP_EXTENDED_STAR' is false, then the wildcard address '*' * yield an IPv4 wildcard. * * If 'flags & TAPMP_EXTENDED_STAR' is true, then the wildcard address '*' * yields an AF_UNSPEC wildcard address, which expands to corresponding * wildcard IPv4 and IPv6 rules, and the following change is made * in the grammar above: * Address ::= IPv4Address / "[" IPv6Address "]" / "*" / "*4" / "*6" * with the new "*4" and "*6" productions creating a wildcard to match * IPv4 or IPv6 addresses. * * If 'flags & TAPMP_EXTENDED_STAR' and 'flags & TAPMP_STAR_IPV4_ONLY' are * both true, then the wildcard address '*' yields an IPv4 wildcard. * * If 'flags & TAPMP_EXTENDED_STAR' and 'flags & TAPMP_STAR_IPV6_ONLY' are * both true, then the wildcard address '*' yields an IPv6 wildcard. * * TAPMP_STAR_IPV4_ONLY and TAPMP_STAR_IPV6_ONLY are mutually exclusive. */ int tor_addr_parse_mask_ports(const char *s, unsigned flags, tor_addr_t *addr_out, maskbits_t *maskbits_out, uint16_t *port_min_out, uint16_t *port_max_out) { char *base = NULL, *address, *mask = NULL, *port = NULL, *rbracket = NULL; char *endptr; int any_flag=0, v4map=0; sa_family_t family; struct in6_addr in6_tmp; struct in_addr in_tmp = { .s_addr = 0 }; tor_assert(s); tor_assert(addr_out); /* We can either only want an IPv4 address or only want an IPv6 address, * but we can't only want IPv4 & IPv6 at the same time. */ tor_assert(!((flags & TAPMP_STAR_IPV4_ONLY) && (flags & TAPMP_STAR_IPV6_ONLY))); /** Longest possible length for an address, mask, and port-range combination. * Includes IP, [], /mask, :, ports */ #define MAX_ADDRESS_LENGTH (TOR_ADDR_BUF_LEN+2+(1+INET_NTOA_BUF_LEN)+12+1) if (strlen(s) > MAX_ADDRESS_LENGTH) { log_warn(LD_GENERAL, "Impossibly long IP %s; rejecting", escaped(s)); goto err; } base = tor_strdup(s); /* Break 'base' into separate strings. */ address = base; if (*address == '[') { /* Probably IPv6 */ address++; rbracket = strchr(address, ']'); if (!rbracket) { log_warn(LD_GENERAL, "No closing IPv6 bracket in address pattern; rejecting."); goto err; } } mask = strchr((rbracket?rbracket:address),'/'); port = strchr((mask?mask:(rbracket?rbracket:address)), ':'); if (port) *port++ = '\0'; if (mask) *mask++ = '\0'; if (rbracket) *rbracket = '\0'; if (port && mask) tor_assert(port > mask); if (mask && rbracket) tor_assert(mask > rbracket); /* Now "address" is the a.b.c.d|'*'|abcd::1 part... * "mask" is the Mask|Maskbits part... * and "port" is the *|port|min-max part. */ /* Process the address portion */ memset(addr_out, 0, sizeof(tor_addr_t)); if (!strcmp(address, "*")) { if (flags & TAPMP_EXTENDED_STAR) { if (flags & TAPMP_STAR_IPV4_ONLY) { family = AF_INET; tor_addr_from_ipv4h(addr_out, 0); } else if (flags & TAPMP_STAR_IPV6_ONLY) { static char nil_bytes[16] = { [0]=0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0 }; family = AF_INET6; tor_addr_from_ipv6_bytes(addr_out, nil_bytes); } else { family = AF_UNSPEC; tor_addr_make_unspec(addr_out); log_info(LD_GENERAL, "'%s' expands into rules which apply to all IPv4 and IPv6 " "addresses. (Use accept/reject *4:* for IPv4 or " "accept[6]/reject[6] *6:* for IPv6.)", s); } } else { family = AF_INET; tor_addr_from_ipv4h(addr_out, 0); } any_flag = 1; } else if (!strcmp(address, "*4") && (flags & TAPMP_EXTENDED_STAR)) { family = AF_INET; tor_addr_from_ipv4h(addr_out, 0); any_flag = 1; } else if (!strcmp(address, "*6") && (flags & TAPMP_EXTENDED_STAR)) { static char nil_bytes[16] = { [0]=0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0 }; family = AF_INET6; tor_addr_from_ipv6_bytes(addr_out, nil_bytes); any_flag = 1; } else if (tor_inet_pton(AF_INET6, address, &in6_tmp) > 0) { family = AF_INET6; tor_addr_from_in6(addr_out, &in6_tmp); } else if (tor_inet_pton(AF_INET, address, &in_tmp) > 0) { family = AF_INET; tor_addr_from_in(addr_out, &in_tmp); } else { log_warn(LD_GENERAL, "Malformed IP %s in address pattern; rejecting.", escaped(address)); goto err; } v4map = tor_addr_is_v4(addr_out); /* Parse mask */ if (maskbits_out) { int bits = 0; struct in_addr v4mask; if (mask) { /* the caller (tried to) specify a mask */ bits = (int) strtol(mask, &endptr, 10); if (!*endptr) { /* strtol converted everything, so it was an integer */ if ((bits<0 || bits>128) || (family == AF_INET && bits > 32)) { log_warn(LD_GENERAL, "Bad number of mask bits (%d) on address range; rejecting.", bits); goto err; } } else { /* mask might still be an address-style mask */ if (tor_inet_pton(AF_INET, mask, &v4mask) > 0) { bits = addr_mask_get_bits(ntohl(v4mask.s_addr)); if (bits < 0) { log_warn(LD_GENERAL, "IPv4-style mask %s is not a prefix address; rejecting.", escaped(mask)); goto err; } } else { /* Not IPv4; we don't do address-style IPv6 masks. */ log_warn(LD_GENERAL, "Malformed mask on address range %s; rejecting.", escaped(s)); goto err; } } if (family == AF_INET6 && v4map) { if (bits > 32 && bits < 96) { /* Crazy */ log_warn(LD_GENERAL, "Bad mask bits %d for V4-mapped V6 address; rejecting.", bits); goto err; } /* XXXX_IP6 is this really what we want? */ bits = 96 + bits%32; /* map v4-mapped masks onto 96-128 bits */ } if (any_flag) { log_warn(LD_GENERAL, "Found bit prefix with wildcard address; rejecting"); goto err; } } else { /* pick an appropriate mask, as none was given */ if (any_flag) bits = 0; /* This is okay whether it's V6 or V4 (FIX V4-mapped V6!) */ else if (tor_addr_family(addr_out) == AF_INET) bits = 32; else if (tor_addr_family(addr_out) == AF_INET6) bits = 128; } *maskbits_out = (maskbits_t) bits; } else { if (mask) { log_warn(LD_GENERAL, "Unexpected mask in address %s; rejecting", escaped(s)); goto err; } } /* Parse port(s) */ if (port_min_out) { uint16_t port2; if (!port_max_out) /* caller specified one port; fake the second one */ port_max_out = &port2; if (parse_port_range(port, port_min_out, port_max_out) < 0) { goto err; } else if ((*port_min_out != *port_max_out) && port_max_out == &port2) { log_warn(LD_GENERAL, "Wanted one port from address range, but there are two."); port_max_out = NULL; /* caller specified one port, so set this back */ goto err; } } else { if (port) { log_warn(LD_GENERAL, "Unexpected ports in address %s; rejecting", escaped(s)); goto err; } } tor_free(base); return tor_addr_family(addr_out); err: tor_free(base); return -1; } /** Determine whether an address is IPv4, either native or IPv4-mapped IPv6. * Note that this is about representation only, as any decent stack will * reject IPv4-mapped addresses received on the wire (and won't use them * on the wire either). */ int tor_addr_is_v4(const tor_addr_t *addr) { tor_assert(addr); if (tor_addr_family(addr) == AF_INET) return 1; if (tor_addr_family(addr) == AF_INET6) { /* First two don't need to be ordered */ uint32_t *a32 = tor_addr_to_in6_addr32(addr); if (a32[0] == 0 && a32[1] == 0 && ntohl(a32[2]) == 0x0000ffffu) return 1; } return 0; /* Not IPv4 - unknown family or a full-blood IPv6 address */ } /** Determine whether an address addr is null, either all zeroes or * belonging to family AF_UNSPEC. */ int tor_addr_is_null(const tor_addr_t *addr) { tor_assert(addr); switch (tor_addr_family(addr)) { case AF_INET6: { uint32_t *a32 = tor_addr_to_in6_addr32(addr); return (a32[0] == 0) && (a32[1] == 0) && (a32[2] == 0) && (a32[3] == 0); } case AF_INET: return (tor_addr_to_ipv4n(addr) == 0); case AF_UNIX: return 1; case AF_UNSPEC: return 1; default: log_warn(LD_BUG, "Called with unknown address family %d", (int)tor_addr_family(addr)); return 0; } //return 1; } /** Return true iff addr is a loopback address */ int tor_addr_is_loopback(const tor_addr_t *addr) { tor_assert(addr); switch (tor_addr_family(addr)) { case AF_INET6: { /* ::1 */ uint32_t *a32 = tor_addr_to_in6_addr32(addr); return (a32[0] == 0) && (a32[1] == 0) && (a32[2] == 0) && (ntohl(a32[3]) == 1); } case AF_INET: /* 127.0.0.1 */ return (tor_addr_to_ipv4h(addr) & 0xff000000) == 0x7f000000; case AF_UNSPEC: return 0; default: tor_fragile_assert(); return 0; } } /** Set dest to equal the IPv4 address in v4addr (given in * network order). */ void tor_addr_from_ipv4n(tor_addr_t *dest, uint32_t v4addr) { tor_assert(dest); memset(dest, 0, sizeof(tor_addr_t)); dest->family = AF_INET; dest->addr.in_addr.s_addr = v4addr; } /** Set dest to equal the IPv6 address in the 16 bytes at * ipv6_bytes. */ void tor_addr_from_ipv6_bytes(tor_addr_t *dest, const char *ipv6_bytes) { tor_assert(dest); tor_assert(ipv6_bytes); memset(dest, 0, sizeof(tor_addr_t)); dest->family = AF_INET6; memcpy(dest->addr.in6_addr.s6_addr, ipv6_bytes, 16); } /** Set dest equal to the IPv6 address in the in6_addr in6. */ void tor_addr_from_in6(tor_addr_t *dest, const struct in6_addr *in6) { tor_addr_from_ipv6_bytes(dest, (const char*)in6->s6_addr); } /** Copy a tor_addr_t from src to dest. */ void tor_addr_copy(tor_addr_t *dest, const tor_addr_t *src) { if (src == dest) return; tor_assert(src); tor_assert(dest); memcpy(dest, src, sizeof(tor_addr_t)); } /** Copy a tor_addr_t from src to dest, taking extra care to * copy only the well-defined portions. Used for computing hashes of * addresses. */ void tor_addr_copy_tight(tor_addr_t *dest, const tor_addr_t *src) { tor_assert(src != dest); tor_assert(src); tor_assert(dest); memset(dest, 0, sizeof(tor_addr_t)); dest->family = src->family; switch (tor_addr_family(src)) { case AF_INET: dest->addr.in_addr.s_addr = src->addr.in_addr.s_addr; break; case AF_INET6: memcpy(dest->addr.in6_addr.s6_addr, src->addr.in6_addr.s6_addr, 16); case AF_UNSPEC: break; default: tor_fragile_assert(); } } /** Given two addresses addr1 and addr2, return 0 if the two * addresses are equivalent under the mask mbits, less than 0 if addr1 * precedes addr2, and greater than 0 otherwise. * * Different address families (IPv4 vs IPv6) are always considered unequal if * how is CMP_EXACT; otherwise, IPv6-mapped IPv4 addresses are * considered equivalent to their IPv4 equivalents. */ int tor_addr_compare(const tor_addr_t *addr1, const tor_addr_t *addr2, tor_addr_comparison_t how) { return tor_addr_compare_masked(addr1, addr2, 128, how); } /** As tor_addr_compare(), but only looks at the first mask bits of * the address. * * Reduce over-specific masks (>128 for ipv6, >32 for ipv4) to 128 or 32. * * The mask is interpreted relative to addr1, so that if a is * \::ffff:1.2.3.4, and b is 3.4.5.6, * tor_addr_compare_masked(a,b,100,CMP_SEMANTIC) is the same as * -tor_addr_compare_masked(b,a,4,CMP_SEMANTIC). * * We guarantee that the ordering from tor_addr_compare_masked is a total * order on addresses, but not that it is any particular order, or that it * will be the same from one version to the next. */ int tor_addr_compare_masked(const tor_addr_t *addr1, const tor_addr_t *addr2, maskbits_t mbits, tor_addr_comparison_t how) { /** Helper: Evaluates to -1 if a is less than b, 0 if a equals b, or 1 if a * is greater than b. May evaluate a and b more than once. */ #define TRISTATE(a,b) (((a)<(b))?-1: (((a)==(b))?0:1)) sa_family_t family1, family2, v_family1, v_family2; tor_assert(addr1 && addr2); v_family1 = family1 = tor_addr_family(addr1); v_family2 = family2 = tor_addr_family(addr2); if (family1==family2) { /* When the families are the same, there's only one way to do the * comparison: exactly. */ int r; switch (family1) { case AF_UNSPEC: return 0; /* All unspecified addresses are equal */ case AF_INET: { uint32_t a1 = tor_addr_to_ipv4h(addr1); uint32_t a2 = tor_addr_to_ipv4h(addr2); if (mbits <= 0) return 0; if (mbits > 32) mbits = 32; a1 >>= (32-mbits); a2 >>= (32-mbits); r = TRISTATE(a1, a2); return r; } case AF_INET6: { const uint8_t *a1 = tor_addr_to_in6_addr8(addr1); const uint8_t *a2 = tor_addr_to_in6_addr8(addr2); const int bytes = mbits >> 3; const int leftover_bits = mbits & 7; if (bytes && (r = tor_memcmp(a1, a2, bytes))) { return r; } else if (leftover_bits) { uint8_t b1 = a1[bytes] >> (8-leftover_bits); uint8_t b2 = a2[bytes] >> (8-leftover_bits); return TRISTATE(b1, b2); } else { return 0; } } default: tor_fragile_assert(); return 0; } } else if (how == CMP_EXACT) { /* Unequal families and an exact comparison? Stop now! */ return TRISTATE(family1, family2); } if (mbits == 0) return 0; if (family1 == AF_INET6 && tor_addr_is_v4(addr1)) v_family1 = AF_INET; if (family2 == AF_INET6 && tor_addr_is_v4(addr2)) v_family2 = AF_INET; if (v_family1 == v_family2) { /* One or both addresses are a mapped ipv4 address. */ uint32_t a1, a2; if (family1 == AF_INET6) { a1 = tor_addr_to_mapped_ipv4h(addr1); if (mbits <= 96) return 0; mbits -= 96; /* We just decided that the first 96 bits of a1 "match". */ } else { a1 = tor_addr_to_ipv4h(addr1); } if (family2 == AF_INET6) { a2 = tor_addr_to_mapped_ipv4h(addr2); } else { a2 = tor_addr_to_ipv4h(addr2); } if (mbits > 32) mbits = 32; a1 >>= (32-mbits); a2 >>= (32-mbits); return TRISTATE(a1, a2); } else { /* Unequal families, and semantic comparison, and no semantic family * matches. */ return TRISTATE(family1, family2); } } /** Return a hash code based on the address addr. DOCDOC extra */ uint64_t tor_addr_hash(const tor_addr_t *addr) { switch (tor_addr_family(addr)) { case AF_INET: return siphash24g(&addr->addr.in_addr.s_addr, 4); case AF_UNSPEC: return 0x4e4d5342; case AF_INET6: return siphash24g(&addr->addr.in6_addr.s6_addr, 16); default: tor_fragile_assert(); return 0; } } /** Return a newly allocated string with a representation of addr. */ char * tor_dup_addr(const tor_addr_t *addr) { char buf[TOR_ADDR_BUF_LEN]; if (tor_addr_to_str(buf, addr, sizeof(buf), 0)) { return tor_strdup(buf); } else { return tor_strdup(""); } } /** Return a string representing the address addr. This string * is statically allocated, and must not be freed. Each call to * fmt_addr_impl invalidates the last result of the function. * This function is not thread-safe. If decorate is set, add * brackets to IPv6 addresses. * * It's better to use the wrapper macros of this function: * fmt_addr() and fmt_and_decorate_addr(). */ const char * fmt_addr_impl(const tor_addr_t *addr, int decorate) { static char buf[TOR_ADDR_BUF_LEN]; if (!addr) return ""; if (tor_addr_to_str(buf, addr, sizeof(buf), decorate)) return buf; else return "???"; } /** Return a string representing the pair addr and port. * This calls fmt_and_decorate_addr internally, so IPv6 addresses will * have brackets, and the caveats of fmt_addr_impl apply. */ const char * fmt_addrport(const tor_addr_t *addr, uint16_t port) { /* Add space for a colon and up to 5 digits. */ static char buf[TOR_ADDR_BUF_LEN + 6]; tor_snprintf(buf, sizeof(buf), "%s:%u", fmt_and_decorate_addr(addr), port); return buf; } /** Like fmt_addr(), but takes addr as a host-order IPv4 * addresses. Also not thread-safe, also clobbers its return buffer on * repeated calls. */ const char * fmt_addr32(uint32_t addr) { static char buf[INET_NTOA_BUF_LEN]; struct in_addr in; in.s_addr = htonl(addr); tor_inet_ntoa(&in, buf, sizeof(buf)); return buf; } /** Convert the string in src to a tor_addr_t addr. The string * may be an IPv4 address, an IPv6 address, or an IPv6 address surrounded by * square brackets. * * Return an address family on success, or -1 if an invalid address string is * provided. */ int tor_addr_parse(tor_addr_t *addr, const char *src) { /* Holds substring of IPv6 address after removing square brackets */ char *tmp = NULL; int result; struct in_addr in_tmp; struct in6_addr in6_tmp; tor_assert(addr && src); if (src[0] == '[' && src[1]) src = tmp = tor_strndup(src+1, strlen(src)-2); if (tor_inet_pton(AF_INET6, src, &in6_tmp) > 0) { result = AF_INET6; tor_addr_from_in6(addr, &in6_tmp); } else if (tor_inet_pton(AF_INET, src, &in_tmp) > 0) { result = AF_INET; tor_addr_from_in(addr, &in_tmp); } else { result = -1; } tor_free(tmp); return result; } /** Parse an address or address-port combination from s, resolve the * address as needed, and put the result in addr_out and (optionally) * port_out. Return 0 on success, negative on failure. */ int tor_addr_port_lookup(const char *s, tor_addr_t *addr_out, uint16_t *port_out) { const char *port; tor_addr_t addr; uint16_t portval; char *tmp = NULL; tor_assert(s); tor_assert(addr_out); s = eat_whitespace(s); if (*s == '[') { port = strstr(s, "]"); if (!port) goto err; tmp = tor_strndup(s+1, port-(s+1)); port = port+1; if (*port == ':') port++; else port = NULL; } else { port = strchr(s, ':'); if (port) tmp = tor_strndup(s, port-s); else tmp = tor_strdup(s); if (port) ++port; } if (tor_addr_lookup(tmp, AF_UNSPEC, &addr) != 0) goto err; tor_free(tmp); if (port) { portval = (int) tor_parse_long(port, 10, 1, 65535, NULL, NULL); if (!portval) goto err; } else { portval = 0; } if (port_out) *port_out = portval; tor_addr_copy(addr_out, &addr); return 0; err: tor_free(tmp); return -1; } #ifdef _WIN32 typedef ULONG (WINAPI *GetAdaptersAddresses_fn_t)( ULONG, ULONG, PVOID, PIP_ADAPTER_ADDRESSES, PULONG); #endif #ifdef HAVE_IFADDRS_TO_SMARTLIST /* * Convert a linked list consisting of ifaddrs structures * into smartlist of tor_addr_t structures. */ STATIC smartlist_t * ifaddrs_to_smartlist(const struct ifaddrs *ifa) { smartlist_t *result = smartlist_new(); const struct ifaddrs *i; for (i = ifa; i; i = i->ifa_next) { tor_addr_t tmp; if ((i->ifa_flags & (IFF_UP | IFF_RUNNING)) != (IFF_UP | IFF_RUNNING)) continue; if (!i->ifa_addr) continue; if (i->ifa_addr->sa_family != AF_INET && i->ifa_addr->sa_family != AF_INET6) continue; if (tor_addr_from_sockaddr(&tmp, i->ifa_addr, NULL) < 0) continue; smartlist_add(result, tor_memdup(&tmp, sizeof(tmp))); } return result; } /** Use getiffaddrs() function to get list of current machine * network interface addresses. Represent the result by smartlist of * tor_addr_t structures. */ STATIC smartlist_t * get_interface_addresses_ifaddrs(int severity) { /* Most free Unixy systems provide getifaddrs, which gives us a linked list * of struct ifaddrs. */ struct ifaddrs *ifa = NULL; smartlist_t *result; if (getifaddrs(&ifa) < 0) { log_fn(severity, LD_NET, "Unable to call getifaddrs(): %s", strerror(errno)); return NULL; } result = ifaddrs_to_smartlist(ifa); freeifaddrs(ifa); return result; } #endif #ifdef HAVE_IP_ADAPTER_TO_SMARTLIST /** Convert a Windows-specific addresses linked list into smartlist * of tor_addr_t structures. */ STATIC smartlist_t * ip_adapter_addresses_to_smartlist(const IP_ADAPTER_ADDRESSES *addresses) { smartlist_t *result = smartlist_new(); const IP_ADAPTER_ADDRESSES *address; for (address = addresses; address; address = address->Next) { const IP_ADAPTER_UNICAST_ADDRESS *a; for (a = address->FirstUnicastAddress; a; a = a->Next) { /* Yes, it's a linked list inside a linked list */ const struct sockaddr *sa = a->Address.lpSockaddr; tor_addr_t tmp; if (sa->sa_family != AF_INET && sa->sa_family != AF_INET6) continue; if (tor_addr_from_sockaddr(&tmp, sa, NULL) < 0) continue; smartlist_add(result, tor_memdup(&tmp, sizeof(tmp))); } } return result; } /** Windows only: use GetAdaptersInfo() function to retrieve network interface * addresses of current machine and return them to caller as smartlist of * tor_addr_t structures. */ STATIC smartlist_t * get_interface_addresses_win32(int severity) { /* Windows XP began to provide GetAdaptersAddresses. Windows 2000 had a "GetAdaptersInfo", but that's deprecated; let's just try GetAdaptersAddresses and fall back to connect+getsockname. */ HANDLE lib = load_windows_system_library(TEXT("iphlpapi.dll")); smartlist_t *result = NULL; GetAdaptersAddresses_fn_t fn; ULONG size, res; IP_ADAPTER_ADDRESSES *addresses = NULL; (void) severity; #define FLAGS (GAA_FLAG_SKIP_ANYCAST | \ GAA_FLAG_SKIP_MULTICAST | \ GAA_FLAG_SKIP_DNS_SERVER) if (!lib) { log_fn(severity, LD_NET, "Unable to load iphlpapi.dll"); goto done; } if (!(fn = (GetAdaptersAddresses_fn_t) GetProcAddress(lib, "GetAdaptersAddresses"))) { log_fn(severity, LD_NET, "Unable to obtain pointer to " "GetAdaptersAddresses"); goto done; } /* Guess how much space we need. */ size = 15*1024; addresses = tor_malloc(size); res = fn(AF_UNSPEC, FLAGS, NULL, addresses, &size); if (res == ERROR_BUFFER_OVERFLOW) { /* we didn't guess that we needed enough space; try again */ tor_free(addresses); addresses = tor_malloc(size); res = fn(AF_UNSPEC, FLAGS, NULL, addresses, &size); } if (res != NO_ERROR) { log_fn(severity, LD_NET, "GetAdaptersAddresses failed (result: %lu)", res); goto done; } result = ip_adapter_addresses_to_smartlist(addresses); done: if (lib) FreeLibrary(lib); tor_free(addresses); return result; } #endif #ifdef HAVE_IFCONF_TO_SMARTLIST /* Guess how much space we need. There shouldn't be any struct ifreqs * larger than this, even on OS X where the struct's size is dynamic. */ #define IFREQ_SIZE 4096 /* This is defined on Mac OS X */ #ifndef _SIZEOF_ADDR_IFREQ #define _SIZEOF_ADDR_IFREQ sizeof #endif /** Convert *buf, an ifreq structure array of size buflen, * into smartlist of tor_addr_t structures. */ STATIC smartlist_t * ifreq_to_smartlist(char *buf, size_t buflen) { smartlist_t *result = smartlist_new(); char *end = buf + buflen; /* These acrobatics are due to alignment issues which trigger * undefined behaviour traps on OSX. */ struct ifreq *r = tor_malloc(IFREQ_SIZE); while (buf < end) { /* Copy up to IFREQ_SIZE bytes into the struct ifreq, but don't overrun * buf. */ memcpy(r, buf, end - buf < IFREQ_SIZE ? end - buf : IFREQ_SIZE); const struct sockaddr *sa = &r->ifr_addr; tor_addr_t tmp; int valid_sa_family = (sa->sa_family == AF_INET || sa->sa_family == AF_INET6); int conversion_success = (tor_addr_from_sockaddr(&tmp, sa, NULL) == 0); if (valid_sa_family && conversion_success) smartlist_add(result, tor_memdup(&tmp, sizeof(tmp))); buf += _SIZEOF_ADDR_IFREQ(*r); } tor_free(r); return result; } /** Use ioctl(.,SIOCGIFCONF,.) to get a list of current machine * network interface addresses. Represent the result by smartlist of * tor_addr_t structures. */ STATIC smartlist_t * get_interface_addresses_ioctl(int severity) { /* Some older unixy systems make us use ioctl(SIOCGIFCONF) */ struct ifconf ifc; int fd; smartlist_t *result = NULL; /* This interface, AFAICT, only supports AF_INET addresses */ fd = socket(AF_INET, SOCK_DGRAM, 0); if (fd < 0) { tor_log(severity, LD_NET, "socket failed: %s", strerror(errno)); goto done; } int mult = 1; ifc.ifc_buf = NULL; do { mult *= 2; ifc.ifc_len = mult * IFREQ_SIZE; ifc.ifc_buf = tor_realloc(ifc.ifc_buf, ifc.ifc_len); tor_assert(ifc.ifc_buf); if (ioctl(fd, SIOCGIFCONF, &ifc) < 0) { tor_log(severity, LD_NET, "ioctl failed: %s", strerror(errno)); goto done; } /* Ensure we have least IFREQ_SIZE bytes unused at the end. Otherwise, we * don't know if we got everything during ioctl. */ } while (mult * IFREQ_SIZE - ifc.ifc_len <= IFREQ_SIZE); result = ifreq_to_smartlist(ifc.ifc_buf, ifc.ifc_len); done: if (fd >= 0) close(fd); tor_free(ifc.ifc_buf); return result; } #endif /** Try to ask our network interfaces what addresses they are bound to. * Return a new smartlist of tor_addr_t on success, and NULL on failure. * (An empty smartlist indicates that we successfully learned that we have no * addresses.) Log failure messages at severity. */ MOCK_IMPL(smartlist_t *, get_interface_addresses_raw,(int severity)) { smartlist_t *result = NULL; #if defined(HAVE_IFADDRS_TO_SMARTLIST) if ((result = get_interface_addresses_ifaddrs(severity))) return result; #endif #if defined(HAVE_IP_ADAPTER_TO_SMARTLIST) if ((result = get_interface_addresses_win32(severity))) return result; #endif #if defined(HAVE_IFCONF_TO_SMARTLIST) if ((result = get_interface_addresses_ioctl(severity))) return result; #endif (void) severity; return NULL; } /** Return true iff a is a multicast address. */ STATIC int tor_addr_is_multicast(const tor_addr_t *a) { sa_family_t family = tor_addr_family(a); if (family == AF_INET) { uint32_t ipv4h = tor_addr_to_ipv4h(a); if ((ipv4h >> 24) == 0xe0) return 1; /* Multicast */ } else if (family == AF_INET6) { const uint8_t *a32 = tor_addr_to_in6_addr8(a); if (a32[0] == 0xff) return 1; } return 0; } /** Attempt to retrieve IP address of current host by utilizing some * UDP socket trickery. Only look for address of given family. * Set result to *addr. Return 0 on success, -1 on failure. */ MOCK_IMPL(int, get_interface_address6_via_udp_socket_hack,(int severity, sa_family_t family, tor_addr_t *addr)) { struct sockaddr_storage my_addr, target_addr; int sock=-1, r=-1; socklen_t addr_len; memset(addr, 0, sizeof(tor_addr_t)); memset(&target_addr, 0, sizeof(target_addr)); /* Don't worry: no packets are sent. We just need to use a real address * on the actual Internet. */ if (family == AF_INET6) { struct sockaddr_in6 *sin6 = (struct sockaddr_in6*)&target_addr; /* Use the "discard" service port */ sin6->sin6_port = htons(9); sock = tor_open_socket(PF_INET6,SOCK_DGRAM,IPPROTO_UDP); addr_len = (socklen_t)sizeof(struct sockaddr_in6); sin6->sin6_family = AF_INET6; S6_ADDR16(sin6->sin6_addr)[0] = htons(0x2002); /* 2002:: */ } else if (family == AF_INET) { struct sockaddr_in *sin = (struct sockaddr_in*)&target_addr; /* Use the "discard" service port */ sin->sin_port = htons(9); sock = tor_open_socket(PF_INET,SOCK_DGRAM,IPPROTO_UDP); addr_len = (socklen_t)sizeof(struct sockaddr_in); sin->sin_family = AF_INET; sin->sin_addr.s_addr = htonl(0x12000001); /* 18.0.0.1 */ } else { return -1; } if (sock < 0) { int e = tor_socket_errno(-1); log_fn(severity, LD_NET, "unable to create socket: %s", tor_socket_strerror(e)); goto err; } if (tor_connect_socket(sock,(struct sockaddr *)&target_addr, addr_len) < 0) { int e = tor_socket_errno(sock); log_fn(severity, LD_NET, "connect() failed: %s", tor_socket_strerror(e)); goto err; } if (tor_getsockname(sock,(struct sockaddr*)&my_addr, &addr_len)) { int e = tor_socket_errno(sock); log_fn(severity, LD_NET, "getsockname() to determine interface failed: %s", tor_socket_strerror(e)); goto err; } if (tor_addr_from_sockaddr(addr, (struct sockaddr*)&my_addr, NULL) == 0) { if (tor_addr_is_loopback(addr) || tor_addr_is_multicast(addr)) { log_fn(severity, LD_NET, "Address that we determined via UDP socket" " magic is unsuitable for public comms."); } else { r=0; } } err: if (sock >= 0) tor_close_socket(sock); if (r == -1) memset(addr, 0, sizeof(tor_addr_t)); return r; } /** Set *addr to an arbitrary IP address (if any) of an interface that * connects to the Internet. Prefer public IP addresses to internal IP * addresses. This address should only be used in checking whether our * address has changed, as it may be an internal IP address. Return 0 on * success, -1 on failure. * Prefer get_interface_address6_list for a list of all addresses on all * interfaces which connect to the Internet. */ MOCK_IMPL(int, get_interface_address6,(int severity, sa_family_t family, tor_addr_t *addr)) { smartlist_t *addrs; int rv = -1; tor_assert(addr); memset(addr, 0, sizeof(tor_addr_t)); /* Get a list of public or internal IPs in arbitrary order */ addrs = get_interface_address6_list(severity, family, 1); /* Find the first non-internal address, or the last internal address * Ideally, we want the default route, see #12377 for details */ SMARTLIST_FOREACH_BEGIN(addrs, tor_addr_t *, a) { tor_addr_copy(addr, a); rv = 0; /* If we found a non-internal address, declare success. Otherwise, * keep looking. */ if (!tor_addr_is_internal(a, 0)) break; } SMARTLIST_FOREACH_END(a); free_interface_address6_list(addrs); return rv; } /** Free a smartlist of IP addresses returned by get_interface_address6_list. */ void free_interface_address6_list(smartlist_t *addrs) { if (addrs != NULL) { SMARTLIST_FOREACH(addrs, tor_addr_t *, a, tor_free(a)); smartlist_free(addrs); } } /** Return a smartlist of the IP addresses of type family from all interfaces * on the server. Excludes loopback and multicast addresses. Only includes * internal addresses if include_internal is true. (Note that a relay behind * NAT may use an internal address to connect to the Internet.) * An empty smartlist means that there are no addresses of the selected type * matching these criteria. * Returns NULL on failure. * Use free_interface_address6_list to free the returned list. */ MOCK_IMPL(smartlist_t *,get_interface_address6_list,(int severity, sa_family_t family, int include_internal)) { smartlist_t *addrs; tor_addr_t addr; /* Try to do this the smart way if possible. */ if ((addrs = get_interface_addresses_raw(severity))) { SMARTLIST_FOREACH_BEGIN(addrs, tor_addr_t *, a) { if (family != AF_UNSPEC && family != tor_addr_family(a)) { SMARTLIST_DEL_CURRENT(addrs, a); tor_free(a); continue; } if (tor_addr_is_loopback(a) || tor_addr_is_multicast(a)) { SMARTLIST_DEL_CURRENT(addrs, a); tor_free(a); continue; } if (!include_internal && tor_addr_is_internal(a, 0)) { SMARTLIST_DEL_CURRENT(addrs, a); tor_free(a); continue; } } SMARTLIST_FOREACH_END(a); } if (addrs && smartlist_len(addrs) > 0) { return addrs; } /* if we removed all entries as unsuitable */ if (addrs) { smartlist_free(addrs); } /* Okay, the smart way is out. */ if (get_interface_address6_via_udp_socket_hack(severity,family,&addr)) return smartlist_new(); if (!include_internal && tor_addr_is_internal(&addr, 0)) { return smartlist_new(); } else { addrs = smartlist_new(); smartlist_add(addrs, tor_dup_addr(&addr)); return addrs; } } /* ====== * IPv4 helpers * XXXX024 IPv6 deprecate some of these. */ /** Given an address of the form "ip:port", try to divide it into its * ip and port portions, setting *address_out to a newly * allocated string holding the address portion and *port_out * to the port. * * Don't do DNS lookups and don't allow domain names in the "ip" field. * * If default_port is less than 0, don't accept addrport of the * form "ip" or "ip:0". Otherwise, accept those forms, and set * *port_out to default_port. * * Return 0 on success, -1 on failure. */ int tor_addr_port_parse(int severity, const char *addrport, tor_addr_t *address_out, uint16_t *port_out, int default_port) { int retval = -1; int r; char *addr_tmp = NULL; tor_assert(addrport); tor_assert(address_out); tor_assert(port_out); r = tor_addr_port_split(severity, addrport, &addr_tmp, port_out); if (r < 0) goto done; if (!*port_out) { if (default_port >= 0) *port_out = default_port; else goto done; } /* make sure that address_out is an IP address */ if (tor_addr_parse(address_out, addr_tmp) < 0) goto done; retval = 0; done: tor_free(addr_tmp); return retval; } /** Given an address of the form "host[:port]", try to divide it into its host * ane port portions, setting *address_out to a newly allocated string * holding the address portion and *port_out to the port (or 0 if no * port is given). Return 0 on success, -1 on failure. */ int tor_addr_port_split(int severity, const char *addrport, char **address_out, uint16_t *port_out) { tor_addr_t a_tmp; tor_assert(addrport); tor_assert(address_out); tor_assert(port_out); /* We need to check for IPv6 manually because addr_port_lookup() doesn't * do a good job on IPv6 addresses that lack a port. */ if (tor_addr_parse(&a_tmp, addrport) == AF_INET6) { *port_out = 0; *address_out = tor_strdup(addrport); return 0; } return addr_port_lookup(severity, addrport, address_out, NULL, port_out); } /** Parse a string of the form "host[:port]" from addrport. If * address is provided, set *address to a copy of the * host portion of the string. If addr is provided, try to * resolve the host portion of the string and store it into * *addr (in host byte order). If port_out is provided, * store the port number into *port_out, or 0 if no port is given. * If port_out is NULL, then there must be no port number in * addrport. * Return 0 on success, -1 on failure. */ int addr_port_lookup(int severity, const char *addrport, char **address, uint32_t *addr, uint16_t *port_out) { const char *colon; char *address_ = NULL; int port_; int ok = 1; tor_assert(addrport); colon = strrchr(addrport, ':'); if (colon) { address_ = tor_strndup(addrport, colon-addrport); port_ = (int) tor_parse_long(colon+1,10,1,65535,NULL,NULL); if (!port_) { log_fn(severity, LD_GENERAL, "Port %s out of range", escaped(colon+1)); ok = 0; } if (!port_out) { char *esc_addrport = esc_for_log(addrport); log_fn(severity, LD_GENERAL, "Port %s given on %s when not required", escaped(colon+1), esc_addrport); tor_free(esc_addrport); ok = 0; } } else { address_ = tor_strdup(addrport); port_ = 0; } if (addr) { /* There's an addr pointer, so we need to resolve the hostname. */ if (tor_lookup_hostname(address_,addr)) { log_fn(severity, LD_NET, "Couldn't look up %s", escaped(address_)); ok = 0; *addr = 0; } } if (address && ok) { *address = address_; } else { if (address) *address = NULL; tor_free(address_); } if (port_out) *port_out = ok ? ((uint16_t) port_) : 0; return ok ? 0 : -1; } /** If mask is an address mask for a bit-prefix, return the number of * bits. Otherwise, return -1. */ int addr_mask_get_bits(uint32_t mask) { int i; if (mask == 0) return 0; if (mask == 0xFFFFFFFFu) return 32; for (i=1; i<=32; ++i) { if (mask == (uint32_t) ~((1u<<(32-i))-1)) { return i; } } return -1; } /** Parse a string s in the format of (*|port(-maxport)?)?, setting the * various *out pointers as appropriate. Return 0 on success, -1 on failure. */ int parse_port_range(const char *port, uint16_t *port_min_out, uint16_t *port_max_out) { int port_min, port_max, ok; tor_assert(port_min_out); tor_assert(port_max_out); if (!port || *port == '\0' || strcmp(port, "*") == 0) { port_min = 1; port_max = 65535; } else { char *endptr = NULL; port_min = (int)tor_parse_long(port, 10, 0, 65535, &ok, &endptr); if (!ok) { log_warn(LD_GENERAL, "Malformed port %s on address range; rejecting.", escaped(port)); return -1; } else if (endptr && *endptr == '-') { port = endptr+1; endptr = NULL; port_max = (int)tor_parse_long(port, 10, 1, 65535, &ok, &endptr); if (!ok) { log_warn(LD_GENERAL, "Malformed port %s on address range; rejecting.", escaped(port)); return -1; } } else { port_max = port_min; } if (port_min > port_max) { log_warn(LD_GENERAL, "Insane port range on address policy; rejecting."); return -1; } } if (port_min < 1) port_min = 1; if (port_max > 65535) port_max = 65535; *port_min_out = (uint16_t) port_min; *port_max_out = (uint16_t) port_max; return 0; } /** Given an IPv4 in_addr struct *in (in network order, as usual), * write it as a string into the buf_len-byte buffer in * buf. */ int tor_inet_ntoa(const struct in_addr *in, char *buf, size_t buf_len) { uint32_t a = ntohl(in->s_addr); return tor_snprintf(buf, buf_len, "%d.%d.%d.%d", (int)(uint8_t)((a>>24)&0xff), (int)(uint8_t)((a>>16)&0xff), (int)(uint8_t)((a>>8 )&0xff), (int)(uint8_t)((a )&0xff)); } /** Given a host-order addr, call tor_inet_ntop() on it * and return a strdup of the resulting address. */ char * tor_dup_ip(uint32_t addr) { char buf[TOR_ADDR_BUF_LEN]; struct in_addr in; in.s_addr = htonl(addr); tor_inet_ntop(AF_INET, &in, buf, sizeof(buf)); return tor_strdup(buf); } /** * Set *addr to a host-order IPv4 address (if any) of an * interface that connects to the Internet. Prefer public IP addresses to * internal IP addresses. This address should only be used in checking * whether our address has changed, as it may be an internal IPv4 address. * Return 0 on success, -1 on failure. * Prefer get_interface_address_list6 for a list of all IPv4 and IPv6 * addresses on all interfaces which connect to the Internet. */ MOCK_IMPL(int, get_interface_address,(int severity, uint32_t *addr)) { tor_addr_t local_addr; int r; memset(addr, 0, sizeof(uint32_t)); r = get_interface_address6(severity, AF_INET, &local_addr); if (r>=0) *addr = tor_addr_to_ipv4h(&local_addr); return r; } /** Return true if we can tell that name is a canonical name for the * loopback address. */ int tor_addr_hostname_is_local(const char *name) { return !strcasecmp(name, "localhost") || !strcasecmp(name, "local") || !strcasecmpend(name, ".local"); } /** Return a newly allocated tor_addr_port_t with addr and port filled in. */ tor_addr_port_t * tor_addr_port_new(const tor_addr_t *addr, uint16_t port) { tor_addr_port_t *ap = tor_malloc_zero(sizeof(tor_addr_port_t)); if (addr) tor_addr_copy(&ap->addr, addr); ap->port = port; return ap; } tor-0.2.7.6/src/common/util_format.c0000644000175000017500000003546412621363245014201 00000000000000/* Copyright (c) 2001, Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #include "torlog.h" #include "util.h" #include "util_format.h" #include "torint.h" #include #include #include /** Implements base32 encoding as in RFC 4648. Limitation: Requires * that srclen*8 is a multiple of 5. */ void base32_encode(char *dest, size_t destlen, const char *src, size_t srclen) { unsigned int i, v, u; size_t nbits = srclen * 8, bit; tor_assert(srclen < SIZE_T_CEILING/8); tor_assert((nbits%5) == 0); /* We need an even multiple of 5 bits. */ tor_assert((nbits/5)+1 <= destlen); /* We need enough space. */ tor_assert(destlen < SIZE_T_CEILING); for (i=0,bit=0; bit < nbits; ++i, bit+=5) { /* set v to the 16-bit value starting at src[bits/8], 0-padded. */ v = ((uint8_t)src[bit/8]) << 8; if (bit+5> (11-(bit%8))) & 0x1F; dest[i] = BASE32_CHARS[u]; } dest[i] = '\0'; } /** Implements base32 decoding as in RFC 4648. Limitation: Requires * that srclen*5 is a multiple of 8. Returns 0 if successful, -1 otherwise. */ int base32_decode(char *dest, size_t destlen, const char *src, size_t srclen) { /* XXXX we might want to rewrite this along the lines of base64_decode, if * it ever shows up in the profile. */ unsigned int i; size_t nbits, j, bit; char *tmp; nbits = srclen * 5; tor_assert(srclen < SIZE_T_CEILING / 5); tor_assert((nbits%8) == 0); /* We need an even multiple of 8 bits. */ tor_assert((nbits/8) <= destlen); /* We need enough space. */ tor_assert(destlen < SIZE_T_CEILING); memset(dest, 0, destlen); /* Convert base32 encoded chars to the 5-bit values that they represent. */ tmp = tor_malloc_zero(srclen); for (j = 0; j < srclen; ++j) { if (src[j] > 0x60 && src[j] < 0x7B) tmp[j] = src[j] - 0x61; else if (src[j] > 0x31 && src[j] < 0x38) tmp[j] = src[j] - 0x18; else if (src[j] > 0x40 && src[j] < 0x5B) tmp[j] = src[j] - 0x41; else { log_warn(LD_BUG, "illegal character in base32 encoded string"); tor_free(tmp); return -1; } } /* Assemble result byte-wise by applying five possible cases. */ for (i = 0, bit = 0; bit < nbits; ++i, bit += 8) { switch (bit % 40) { case 0: dest[i] = (((uint8_t)tmp[(bit/5)]) << 3) + (((uint8_t)tmp[(bit/5)+1]) >> 2); break; case 8: dest[i] = (((uint8_t)tmp[(bit/5)]) << 6) + (((uint8_t)tmp[(bit/5)+1]) << 1) + (((uint8_t)tmp[(bit/5)+2]) >> 4); break; case 16: dest[i] = (((uint8_t)tmp[(bit/5)]) << 4) + (((uint8_t)tmp[(bit/5)+1]) >> 1); break; case 24: dest[i] = (((uint8_t)tmp[(bit/5)]) << 7) + (((uint8_t)tmp[(bit/5)+1]) << 2) + (((uint8_t)tmp[(bit/5)+2]) >> 3); break; case 32: dest[i] = (((uint8_t)tmp[(bit/5)]) << 5) + ((uint8_t)tmp[(bit/5)+1]); break; } } memset(tmp, 0, srclen); /* on the heap, this should be safe */ tor_free(tmp); tmp = NULL; return 0; } #define BASE64_OPENSSL_LINELEN 64 /** Return the Base64 encoded size of srclen bytes of data in * bytes. * * If flags&BASE64_ENCODE_MULTILINE is true, return the size * of the encoded output as multiline output (64 character, `\n' terminated * lines). */ size_t base64_encode_size(size_t srclen, int flags) { size_t enclen; tor_assert(srclen < INT_MAX); if (srclen == 0) return 0; enclen = ((srclen - 1) / 3) * 4 + 4; if (flags & BASE64_ENCODE_MULTILINE) { size_t remainder = enclen % BASE64_OPENSSL_LINELEN; enclen += enclen / BASE64_OPENSSL_LINELEN; if (remainder) enclen++; } tor_assert(enclen < INT_MAX && enclen > srclen); return enclen; } /** Internal table mapping 6 bit values to the Base64 alphabet. */ static const char base64_encode_table[64] = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/' }; /** Base64 encode srclen bytes of data from src. Write * the result into dest, if it will fit within destlen * bytes. Return the number of bytes written on success; -1 if * destlen is too short, or other failure. * * If flags&BASE64_ENCODE_MULTILINE is true, return encoded * output in multiline format (64 character, `\n' terminated lines). */ int base64_encode(char *dest, size_t destlen, const char *src, size_t srclen, int flags) { const unsigned char *usrc = (unsigned char *)src; const unsigned char *eous = usrc + srclen; char *d = dest; uint32_t n = 0; size_t linelen = 0; size_t enclen; int n_idx = 0; if (!src || !dest) return -1; /* Ensure that there is sufficient space, including the NUL. */ enclen = base64_encode_size(srclen, flags); if (destlen < enclen + 1) return -1; if (destlen > SIZE_T_CEILING) return -1; if (enclen > INT_MAX) return -1; memset(dest, 0, enclen); /* XXX/Yawning: If this ends up being too slow, this can be sped up * by separating the multiline format case and the normal case, and * processing 48 bytes of input at a time when newlines are desired. */ #define ENCODE_CHAR(ch) \ STMT_BEGIN \ *d++ = ch; \ if (flags & BASE64_ENCODE_MULTILINE) { \ if (++linelen % BASE64_OPENSSL_LINELEN == 0) { \ linelen = 0; \ *d++ = '\n'; \ } \ } \ STMT_END #define ENCODE_N(idx) \ ENCODE_CHAR(base64_encode_table[(n >> ((3 - idx) * 6)) & 0x3f]) #define ENCODE_PAD() ENCODE_CHAR('=') /* Iterate over all the bytes in src. Each one will add 8 bits to the * value we're encoding. Accumulate bits in n, and whenever we * have 24 bits, batch them into 4 bytes and flush those bytes to dest. */ for ( ; usrc < eous; ++usrc) { n = (n << 8) | *usrc; if ((++n_idx) == 3) { ENCODE_N(0); ENCODE_N(1); ENCODE_N(2); ENCODE_N(3); n_idx = 0; n = 0; } } switch (n_idx) { case 0: /* 0 leftover bits, no pading to add. */ break; case 1: /* 8 leftover bits, pad to 12 bits, write the 2 6-bit values followed * by 2 padding characters. */ n <<= 4; ENCODE_N(2); ENCODE_N(3); ENCODE_PAD(); ENCODE_PAD(); break; case 2: /* 16 leftover bits, pad to 18 bits, write the 3 6-bit values followed * by 1 padding character. */ n <<= 2; ENCODE_N(1); ENCODE_N(2); ENCODE_N(3); ENCODE_PAD(); break; default: /* Something went catastrophically wrong. */ tor_fragile_assert(); return -1; } #undef ENCODE_N #undef ENCODE_PAD #undef ENCODE_CHAR /* Multiline output always includes at least one newline. */ if (flags & BASE64_ENCODE_MULTILINE && linelen != 0) *d++ = '\n'; tor_assert(d - dest == (ptrdiff_t)enclen); *d++ = '\0'; /* NUL terminate the output. */ return (int) enclen; } /** As base64_encode, but do not add any internal spaces or external padding * to the output stream. */ int base64_encode_nopad(char *dest, size_t destlen, const uint8_t *src, size_t srclen) { int n = base64_encode(dest, destlen, (const char*) src, srclen, 0); if (n <= 0) return n; tor_assert((size_t)n < destlen && dest[n] == 0); char *in, *out; in = out = dest; while (*in) { if (*in == '=' || *in == '\n') { ++in; } else { *out++ = *in++; } } *out = 0; tor_assert(out - dest <= INT_MAX); return (int)(out - dest); } /** As base64_decode, but do not require any padding on the input */ int base64_decode_nopad(uint8_t *dest, size_t destlen, const char *src, size_t srclen) { if (srclen > SIZE_T_CEILING - 4) return -1; char *buf = tor_malloc(srclen + 4); memcpy(buf, src, srclen+1); size_t buflen; switch (srclen % 4) { case 0: default: buflen = srclen; break; case 1: tor_free(buf); return -1; case 2: memcpy(buf+srclen, "==", 3); buflen = srclen + 2; break; case 3: memcpy(buf+srclen, "=", 2); buflen = srclen + 1; break; } int n = base64_decode((char*)dest, destlen, buf, buflen); tor_free(buf); return n; } #undef BASE64_OPENSSL_LINELEN /** @{ */ /** Special values used for the base64_decode_table */ #define X 255 #define SP 64 #define PAD 65 /** @} */ /** Internal table mapping byte values to what they represent in base64. * Numbers 0..63 are 6-bit integers. SPs are spaces, and should be * skipped. Xs are invalid and must not appear in base64. PAD indicates * end-of-string. */ static const uint8_t base64_decode_table[256] = { X, X, X, X, X, X, X, X, X, SP, SP, SP, X, SP, X, X, /* */ X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, SP, X, X, X, X, X, X, X, X, X, X, 62, X, X, X, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, X, X, X, PAD, X, X, X, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, X, X, X, X, X, X, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, X, }; /** Base64 decode srclen bytes of data from src. Write * the result into dest, if it will fit within destlen * bytes. Return the number of bytes written on success; -1 if * destlen is too short, or other failure. * * NOTE 1: destlen is checked conservatively, as though srclen contained no * spaces or padding. * * NOTE 2: This implementation does not check for the correct number of * padding "=" characters at the end of the string, and does not check * for internal padding characters. */ int base64_decode(char *dest, size_t destlen, const char *src, size_t srclen) { const char *eos = src+srclen; uint32_t n=0; int n_idx=0; char *dest_orig = dest; /* Max number of bits == srclen*6. * Number of bytes required to hold all bits == (srclen*6)/8. * Yes, we want to round down: anything that hangs over the end of a * byte is padding. */ if (destlen < (srclen*3)/4) return -1; if (destlen > SIZE_T_CEILING) return -1; memset(dest, 0, destlen); /* Iterate over all the bytes in src. Each one will add 0 or 6 bits to the * value we're decoding. Accumulate bits in n, and whenever we have * 24 bits, batch them into 3 bytes and flush those bytes to dest. */ for ( ; src < eos; ++src) { unsigned char c = (unsigned char) *src; uint8_t v = base64_decode_table[c]; switch (v) { case X: /* This character isn't allowed in base64. */ return -1; case SP: /* This character is whitespace, and has no effect. */ continue; case PAD: /* We've hit an = character: the data is over. */ goto end_of_loop; default: /* We have an actual 6-bit value. Append it to the bits in n. */ n = (n<<6) | v; if ((++n_idx) == 4) { /* We've accumulated 24 bits in n. Flush them. */ *dest++ = (n>>16); *dest++ = (n>>8) & 0xff; *dest++ = (n) & 0xff; n_idx = 0; n = 0; } } } end_of_loop: /* If we have leftover bits, we need to cope. */ switch (n_idx) { case 0: default: /* No leftover bits. We win. */ break; case 1: /* 6 leftover bits. That's invalid; we can't form a byte out of that. */ return -1; case 2: /* 12 leftover bits: The last 4 are padding and the first 8 are data. */ *dest++ = n >> 4; break; case 3: /* 18 leftover bits: The last 2 are padding and the first 16 are data. */ *dest++ = n >> 10; *dest++ = n >> 2; } tor_assert((dest-dest_orig) <= (ssize_t)destlen); tor_assert((dest-dest_orig) <= INT_MAX); return (int)(dest-dest_orig); } #undef X #undef SP #undef PAD /** Encode the srclen bytes at src in a NUL-terminated, * uppercase hexadecimal string; store it in the destlen-byte buffer * dest. */ void base16_encode(char *dest, size_t destlen, const char *src, size_t srclen) { const char *end; char *cp; tor_assert(destlen >= srclen*2+1); tor_assert(destlen < SIZE_T_CEILING); cp = dest; end = src+srclen; while (src> 4 ]; *cp++ = "0123456789ABCDEF"[ (*(const uint8_t*)src) & 0xf ]; ++src; } *cp = '\0'; } /** Helper: given a hex digit, return its value, or -1 if it isn't hex. */ static INLINE int hex_decode_digit_(char c) { switch (c) { case '0': return 0; case '1': return 1; case '2': return 2; case '3': return 3; case '4': return 4; case '5': return 5; case '6': return 6; case '7': return 7; case '8': return 8; case '9': return 9; case 'A': case 'a': return 10; case 'B': case 'b': return 11; case 'C': case 'c': return 12; case 'D': case 'd': return 13; case 'E': case 'e': return 14; case 'F': case 'f': return 15; default: return -1; } } /** Helper: given a hex digit, return its value, or -1 if it isn't hex. */ int hex_decode_digit(char c) { return hex_decode_digit_(c); } /** Given a hexadecimal string of srclen bytes in src, decode it * and store the result in the destlen-byte buffer at dest. * Return 0 on success, -1 on failure. */ int base16_decode(char *dest, size_t destlen, const char *src, size_t srclen) { const char *end; int v1,v2; if ((srclen % 2) != 0) return -1; if (destlen < srclen/2 || destlen > SIZE_T_CEILING) return -1; memset(dest, 0, destlen); end = src+srclen; while (srcsz bytes at * a with the sz bytes at b, and return less than 0 if * the bytes at a lexically precede those at b, 0 if the byte * ranges are equal, and greater than zero if the bytes at a lexically * follow those at b. * * This implementation differs from memcmp in that its timing behavior is not * data-dependent: it should return in the same amount of time regardless of * the contents of a and b. */ int tor_memcmp(const void *a, const void *b, size_t len) { const uint8_t *x = a; const uint8_t *y = b; size_t i = len; int retval = 0; /* This loop goes from the end of the arrays to the start. At the * start of every iteration, before we decrement i, we have set * "retval" equal to the result of memcmp(a+i,b+i,len-i). During the * loop, we update retval by leaving it unchanged if x[i]==y[i] and * setting it to x[i]-y[i] if x[i]!= y[i]. * * The following assumes we are on a system with two's-complement * arithmetic. We check for this at configure-time with the check * that sets USING_TWOS_COMPLEMENT. If we aren't two's complement, then * torint.h will stop compilation with an error. */ while (i--) { int v1 = x[i]; int v2 = y[i]; int equal_p = v1 ^ v2; /* The following sets bits 8 and above of equal_p to 'equal_p == * 0', and thus to v1 == v2. (To see this, note that if v1 == * v2, then v1^v2 == equal_p == 0, so equal_p-1 == -1, which is the * same as ~0 on a two's-complement machine. Then note that if * v1 != v2, then 0 < v1 ^ v2 < 256, so 0 <= equal_p - 1 < 255.) */ --equal_p; equal_p >>= 8; /* Thanks to (sign-preserving) arithmetic shift, equal_p is now * equal to -(v1 == v2), which is exactly what we need below. * (Since we're assuming two's-complement arithmetic, -1 is the * same as ~0 (all bits set).) * * (The result of an arithmetic shift on a negative value is * actually implementation-defined in standard C. So how do we * get away with assuming it? Easy. We check.) */ #if ((-60 >> 8) != -1) #error "According to cpp, right-shift doesn't perform sign-extension." #endif #ifndef RSHIFT_DOES_SIGN_EXTEND #error "According to configure, right-shift doesn't perform sign-extension." #endif /* If v1 == v2, equal_p is ~0, so this will leave retval * unchanged; otherwise, equal_p is 0, so this will zero it. */ retval &= equal_p; /* If v1 == v2, then this adds 0, and leaves retval unchanged. * Otherwise, we just zeroed retval, so this sets it to v1 - v2. */ retval += (v1 - v2); /* There. Now retval is equal to its previous value if v1 == v2, and * equal to v1 - v2 if v1 != v2. */ } return retval; } /** * Timing-safe memory comparison. Return true if the sz bytes at * a are the same as the sz bytes at b, and 0 otherwise. * * This implementation differs from !memcmp(a,b,sz) in that its timing * behavior is not data-dependent: it should return in the same amount of time * regardless of the contents of a and b. It differs from * !tor_memcmp(a,b,sz) by being faster. */ int tor_memeq(const void *a, const void *b, size_t sz) { /* Treat a and b as byte ranges. */ const uint8_t *ba = a, *bb = b; uint32_t any_difference = 0; while (sz--) { /* Set byte_diff to all of those bits that are different in *ba and *bb, * and advance both ba and bb. */ const uint8_t byte_diff = *ba++ ^ *bb++; /* Set bits in any_difference if they are set in byte_diff. */ any_difference |= byte_diff; } /* Now any_difference is 0 if there are no bits different between * a and b, and is nonzero if there are bits different between a * and b. Now for paranoia's sake, let's convert it to 0 or 1. * * (If we say "!any_difference", the compiler might get smart enough * to optimize-out our data-independence stuff above.) * * To unpack: * * If any_difference == 0: * any_difference - 1 == ~0 * (any_difference - 1) >> 8 == 0x00ffffff * 1 & ((any_difference - 1) >> 8) == 1 * * If any_difference != 0: * 0 < any_difference < 256, so * 0 <= any_difference - 1 < 255 * (any_difference - 1) >> 8 == 0 * 1 & ((any_difference - 1) >> 8) == 0 */ /*coverity[overflow]*/ return 1 & ((any_difference - 1) >> 8); } /* Implement di_digest256_map_t as a linked list of entries. */ struct di_digest256_map_t { struct di_digest256_map_t *next; uint8_t key[32]; void *val; }; /** Release all storage held in map, calling free_fn on each value * as we go. */ void dimap_free(di_digest256_map_t *map, dimap_free_fn free_fn) { while (map) { di_digest256_map_t *victim = map; map = map->next; if (free_fn) free_fn(victim->val); tor_free(victim); } } /** Adjust the map at *map, adding an entry for key -> * val, where key is a DIGEST256_LEN-byte key. * * The caller MUST NOT add a key that already appears in the map. */ void dimap_add_entry(di_digest256_map_t **map, const uint8_t *key, void *val) { di_digest256_map_t *new_ent; { void *old_val = dimap_search(*map, key, NULL); tor_assert(! old_val); tor_assert(val); } new_ent = tor_malloc_zero(sizeof(di_digest256_map_t)); new_ent->next = *map; memcpy(new_ent->key, key, 32); new_ent->val = val; *map = new_ent; } /** Search the map at map for an entry whose key is key (a * DIGEST256_LEN-byte key) returning the corresponding value if we found one, * and returning dflt_val if the key wasn't found. * * This operation takes an amount of time dependent only on the length of * map, not on the position or presence of key within map. */ void * dimap_search(const di_digest256_map_t *map, const uint8_t *key, void *dflt_val) { uintptr_t result = (uintptr_t)dflt_val; while (map) { uintptr_t r = (uintptr_t) tor_memeq(map->key, key, 32); r -= 1; /* Now r is (uintptr_t)-1 if memeq returned false, and * 0 if memeq returned true. */ result &= r; result |= ((uintptr_t)(map->val)) & ~r; map = map->next; } return (void *)result; } /** * Return true iff the sz bytes at mem are all zero. Runs in * time independent of the contents of mem. */ int safe_mem_is_zero(const void *mem, size_t sz) { uint32_t total = 0; const uint8_t *ptr = mem; while (sz--) { total |= *ptr++; } /*coverity[overflow]*/ return 1 & ((total - 1) >> 8); } tor-0.2.7.6/src/common/crypto_curve25519.c0000644000175000017500000002240512632034724014774 00000000000000/* Copyright (c) 2012-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /* Wrapper code for a curve25519 implementation. */ #define CRYPTO_CURVE25519_PRIVATE #include "orconfig.h" #ifdef HAVE_SYS_STAT_H #include #endif #include "container.h" #include "crypto.h" #include "crypto_curve25519.h" #include "crypto_format.h" #include "util.h" #include "torlog.h" #include "ed25519/donna/ed25519_donna_tor.h" /* ============================== Part 1: wrap a suitable curve25519 implementation as curve25519_impl ============================== */ #ifdef USE_CURVE25519_DONNA int curve25519_donna(uint8_t *mypublic, const uint8_t *secret, const uint8_t *basepoint); #endif #ifdef USE_CURVE25519_NACL #ifdef HAVE_CRYPTO_SCALARMULT_CURVE25519_H #include #elif defined(HAVE_NACL_CRYPTO_SCALARMULT_CURVE25519_H) #include #endif #endif static void pick_curve25519_basepoint_impl(void); static int curve25519_use_ed = -1; STATIC int curve25519_impl(uint8_t *output, const uint8_t *secret, const uint8_t *basepoint) { uint8_t bp[CURVE25519_PUBKEY_LEN]; int r; memcpy(bp, basepoint, CURVE25519_PUBKEY_LEN); /* Clear the high bit, in case our backend foolishly looks at it. */ bp[31] &= 0x7f; #ifdef USE_CURVE25519_DONNA r = curve25519_donna(output, secret, bp); #elif defined(USE_CURVE25519_NACL) r = crypto_scalarmult_curve25519(output, secret, bp); #else #error "No implementation of curve25519 is available." #endif memwipe(bp, 0, sizeof(bp)); return r; } STATIC int curve25519_basepoint_impl(uint8_t *output, const uint8_t *secret) { int r = 0; if (PREDICT_UNLIKELY(curve25519_use_ed == -1)) { pick_curve25519_basepoint_impl(); } /* TODO: Someone should benchmark curved25519_scalarmult_basepoint versus * an optimized NaCl build to see which should be used when compiled with * NaCl available. I suspected that the ed25519 optimization always wins. */ if (PREDICT_LIKELY(curve25519_use_ed == 1)) { curved25519_scalarmult_basepoint_donna(output, secret); r = 0; } else { static const uint8_t basepoint[32] = {9}; r = curve25519_impl(output, secret, basepoint); } return r; } void curve25519_set_impl_params(int use_ed) { curve25519_use_ed = use_ed; } /* ============================== Part 2: Wrap curve25519_impl with some convenience types and functions. ============================== */ /** * Return true iff a curve25519_public_key_t seems valid. (It's not necessary * to see if the point is on the curve, since the twist is also secure, but we * do need to make sure that it isn't the point at infinity.) */ int curve25519_public_key_is_ok(const curve25519_public_key_t *key) { return !safe_mem_is_zero(key->public_key, CURVE25519_PUBKEY_LEN); } /** * Generate CURVE25519_SECKEY_LEN random bytes in out. If * extra_strong is true, this key is possibly going to get used more * than once, so use a better-than-usual RNG. Return 0 on success, -1 on * failure. * * This function does not adjust the output of the RNG at all; the will caller * will need to clear or set the appropriate bits to make curve25519 work. */ int curve25519_rand_seckey_bytes(uint8_t *out, int extra_strong) { uint8_t k_tmp[CURVE25519_SECKEY_LEN]; if (crypto_rand((char*)out, CURVE25519_SECKEY_LEN) < 0) return -1; if (extra_strong && !crypto_strongest_rand(k_tmp, CURVE25519_SECKEY_LEN)) { /* If they asked for extra-strong entropy and we have some, use it as an * HMAC key to improve not-so-good entropy rather than using it directly, * just in case the extra-strong entropy is less amazing than we hoped. */ crypto_hmac_sha256((char*) out, (const char *)k_tmp, sizeof(k_tmp), (const char *)out, CURVE25519_SECKEY_LEN); } memwipe(k_tmp, 0, sizeof(k_tmp)); return 0; } /** Generate a new keypair and return the secret key. If extra_strong * is true, this key is possibly going to get used more than once, so * use a better-than-usual RNG. Return 0 on success, -1 on failure. */ int curve25519_secret_key_generate(curve25519_secret_key_t *key_out, int extra_strong) { if (curve25519_rand_seckey_bytes(key_out->secret_key, extra_strong) < 0) return -1; key_out->secret_key[0] &= 248; key_out->secret_key[31] &= 127; key_out->secret_key[31] |= 64; return 0; } void curve25519_public_key_generate(curve25519_public_key_t *key_out, const curve25519_secret_key_t *seckey) { curve25519_basepoint_impl(key_out->public_key, seckey->secret_key); } int curve25519_keypair_generate(curve25519_keypair_t *keypair_out, int extra_strong) { if (curve25519_secret_key_generate(&keypair_out->seckey, extra_strong) < 0) return -1; curve25519_public_key_generate(&keypair_out->pubkey, &keypair_out->seckey); return 0; } /** DOCDOC */ int curve25519_keypair_write_to_file(const curve25519_keypair_t *keypair, const char *fname, const char *tag) { uint8_t contents[CURVE25519_SECKEY_LEN + CURVE25519_PUBKEY_LEN]; int r; memcpy(contents, keypair->seckey.secret_key, CURVE25519_SECKEY_LEN); memcpy(contents+CURVE25519_SECKEY_LEN, keypair->pubkey.public_key, CURVE25519_PUBKEY_LEN); r = crypto_write_tagged_contents_to_file(fname, "c25519v1", tag, contents, sizeof(contents)); memwipe(contents, 0, sizeof(contents)); return r; } /** DOCDOC */ int curve25519_keypair_read_from_file(curve25519_keypair_t *keypair_out, char **tag_out, const char *fname) { uint8_t content[CURVE25519_SECKEY_LEN + CURVE25519_PUBKEY_LEN]; ssize_t len; int r = -1; len = crypto_read_tagged_contents_from_file(fname, "c25519v1", tag_out, content, sizeof(content)); if (len != sizeof(content)) goto end; memcpy(keypair_out->seckey.secret_key, content, CURVE25519_SECKEY_LEN); curve25519_public_key_generate(&keypair_out->pubkey, &keypair_out->seckey); if (tor_memneq(keypair_out->pubkey.public_key, content + CURVE25519_SECKEY_LEN, CURVE25519_PUBKEY_LEN)) goto end; r = 0; end: memwipe(content, 0, sizeof(content)); if (r != 0) { memset(keypair_out, 0, sizeof(*keypair_out)); tor_free(*tag_out); } return r; } /** Perform the curve25519 ECDH handshake with skey and pkey, * writing CURVE25519_OUTPUT_LEN bytes of output into output. */ void curve25519_handshake(uint8_t *output, const curve25519_secret_key_t *skey, const curve25519_public_key_t *pkey) { curve25519_impl(output, skey->secret_key, pkey->public_key); } /** Check whether the ed25519-based curve25519 basepoint optimization seems to * be working. If so, return 0; otherwise return -1. */ static int curve25519_basepoint_spot_check(void) { static const uint8_t alicesk[32] = { 0x77,0x07,0x6d,0x0a,0x73,0x18,0xa5,0x7d, 0x3c,0x16,0xc1,0x72,0x51,0xb2,0x66,0x45, 0xdf,0x4c,0x2f,0x87,0xeb,0xc0,0x99,0x2a, 0xb1,0x77,0xfb,0xa5,0x1d,0xb9,0x2c,0x2a }; static const uint8_t alicepk[32] = { 0x85,0x20,0xf0,0x09,0x89,0x30,0xa7,0x54, 0x74,0x8b,0x7d,0xdc,0xb4,0x3e,0xf7,0x5a, 0x0d,0xbf,0x3a,0x0d,0x26,0x38,0x1a,0xf4, 0xeb,0xa4,0xa9,0x8e,0xaa,0x9b,0x4e,0x6a }; const int loop_max=200; int save_use_ed = curve25519_use_ed; unsigned char e1[32] = { 5 }; unsigned char e2[32] = { 5 }; unsigned char x[32],y[32]; int i; int r=0; /* Check the most basic possible sanity via the test secret/public key pair * used in "Cryptography in NaCl - 2. Secret keys and public keys". This * may catch catastrophic failures on systems where Curve25519 is expensive, * without requiring a ton of key generation. */ curve25519_use_ed = 1; r |= curve25519_basepoint_impl(x, alicesk); if (fast_memneq(x, alicepk, 32)) goto fail; /* Ok, the optimization appears to produce passable results, try a few more * values, maybe there's something subtle wrong. */ for (i = 0; i < loop_max; ++i) { curve25519_use_ed = 0; r |= curve25519_basepoint_impl(x, e1); curve25519_use_ed = 1; r |= curve25519_basepoint_impl(y, e2); if (fast_memneq(x,y,32)) goto fail; memcpy(e1, x, 32); memcpy(e2, x, 32); } goto end; fail: r = -1; end: curve25519_use_ed = save_use_ed; return r; } /** Choose whether to use the ed25519-based curve25519-basepoint * implementation. */ static void pick_curve25519_basepoint_impl(void) { curve25519_use_ed = 1; if (curve25519_basepoint_spot_check() == 0) return; log_warn(LD_CRYPTO, "The ed25519-based curve25519 basepoint " "multiplication seems broken; using the curve25519 " "implementation."); curve25519_use_ed = 0; } /** Initialize the curve25519 implementations. This is necessary if you're * going to use them in a multithreaded setting, and not otherwise. */ void curve25519_init(void) { pick_curve25519_basepoint_impl(); } tor-0.2.7.6/src/common/crypto.c0000644000175000017500000022554512632034724013174 00000000000000/* Copyright (c) 2001, Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file crypto.c * \brief Wrapper functions to present a consistent interface to * public-key and symmetric cryptography operations from OpenSSL. **/ #include "orconfig.h" #ifdef _WIN32 #include #include #include /* Windows defines this; so does OpenSSL 0.9.8h and later. We don't actually * use either definition. */ #undef OCSP_RESPONSE #endif #include #define CRYPTO_PRIVATE #include "crypto.h" #include "crypto_curve25519.h" #include "crypto_ed25519.h" #include "crypto_format.h" #if OPENSSL_VERSION_NUMBER < OPENSSL_V_SERIES(1,0,0) #error "We require OpenSSL >= 1.0.0" #endif #include #include #include #include #include #include #include #include #include #include #ifdef HAVE_CTYPE_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_FCNTL_H #include #endif #ifdef HAVE_SYS_FCNTL_H #include #endif #include "torlog.h" #include "aes.h" #include "util.h" #include "container.h" #include "compat.h" #include "sandbox.h" #include "util_format.h" #ifdef ANDROID /* Android's OpenSSL seems to have removed all of its Engine support. */ #define DISABLE_ENGINES #endif /** Longest recognized */ #define MAX_DNS_LABEL_SIZE 63 /** Macro: is k a valid RSA public or private key? */ #define PUBLIC_KEY_OK(k) ((k) && (k)->key && (k)->key->n) /** Macro: is k a valid RSA private key? */ #define PRIVATE_KEY_OK(k) ((k) && (k)->key && (k)->key->p) /** A number of preallocated mutexes for use by OpenSSL. */ static tor_mutex_t **openssl_mutexes_ = NULL; /** How many mutexes have we allocated for use by OpenSSL? */ static int n_openssl_mutexes_ = 0; /** A public key, or a public/private key-pair. */ struct crypto_pk_t { int refs; /**< reference count, so we don't have to copy keys */ RSA *key; /**< The key itself */ }; /** Key and stream information for a stream cipher. */ struct crypto_cipher_t { char key[CIPHER_KEY_LEN]; /**< The raw key. */ char iv[CIPHER_IV_LEN]; /**< The initial IV. */ aes_cnt_cipher_t *cipher; /**< The key in format usable for counter-mode AES * encryption */ }; /** A structure to hold the first half (x, g^x) of a Diffie-Hellman handshake * while we're waiting for the second.*/ struct crypto_dh_t { DH *dh; /**< The openssl DH object */ }; static int setup_openssl_threading(void); static int tor_check_dh_key(int severity, BIGNUM *bn); /** Return the number of bytes added by padding method padding. */ static INLINE int crypto_get_rsa_padding_overhead(int padding) { switch (padding) { case RSA_PKCS1_OAEP_PADDING: return PKCS1_OAEP_PADDING_OVERHEAD; default: tor_assert(0); return -1; } } /** Given a padding method padding, return the correct OpenSSL constant. */ static INLINE int crypto_get_rsa_padding(int padding) { switch (padding) { case PK_PKCS1_OAEP_PADDING: return RSA_PKCS1_OAEP_PADDING; default: tor_assert(0); return -1; } } /** Boolean: has OpenSSL's crypto been initialized? */ static int crypto_early_initialized_ = 0; /** Boolean: has OpenSSL's crypto been initialized? */ static int crypto_global_initialized_ = 0; /** Log all pending crypto errors at level severity. Use * doing to describe our current activities. */ static void crypto_log_errors(int severity, const char *doing) { unsigned long err; const char *msg, *lib, *func; while ((err = ERR_get_error()) != 0) { msg = (const char*)ERR_reason_error_string(err); lib = (const char*)ERR_lib_error_string(err); func = (const char*)ERR_func_error_string(err); if (!msg) msg = "(null)"; if (!lib) lib = "(null)"; if (!func) func = "(null)"; if (doing) { tor_log(severity, LD_CRYPTO, "crypto error while %s: %s (in %s:%s)", doing, msg, lib, func); } else { tor_log(severity, LD_CRYPTO, "crypto error: %s (in %s:%s)", msg, lib, func); } } } #ifndef DISABLE_ENGINES /** Log any OpenSSL engines we're using at NOTICE. */ static void log_engine(const char *fn, ENGINE *e) { if (e) { const char *name, *id; name = ENGINE_get_name(e); id = ENGINE_get_id(e); log_notice(LD_CRYPTO, "Default OpenSSL engine for %s is %s [%s]", fn, name?name:"?", id?id:"?"); } else { log_info(LD_CRYPTO, "Using default implementation for %s", fn); } } #endif #ifndef DISABLE_ENGINES /** Try to load an engine in a shared library via fully qualified path. */ static ENGINE * try_load_engine(const char *path, const char *engine) { ENGINE *e = ENGINE_by_id("dynamic"); if (e) { if (!ENGINE_ctrl_cmd_string(e, "ID", engine, 0) || !ENGINE_ctrl_cmd_string(e, "DIR_LOAD", "2", 0) || !ENGINE_ctrl_cmd_string(e, "DIR_ADD", path, 0) || !ENGINE_ctrl_cmd_string(e, "LOAD", NULL, 0)) { ENGINE_free(e); e = NULL; } } return e; } #endif /* Returns a trimmed and human-readable version of an openssl version string * raw_version. They are usually in the form of 'OpenSSL 1.0.0b 10 * May 2012' and this will parse them into a form similar to '1.0.0b' */ static char * parse_openssl_version_str(const char *raw_version) { const char *end_of_version = NULL; /* The output should be something like "OpenSSL 1.0.0b 10 May 2012. Let's trim that down. */ if (!strcmpstart(raw_version, "OpenSSL ")) { raw_version += strlen("OpenSSL "); end_of_version = strchr(raw_version, ' '); } if (end_of_version) return tor_strndup(raw_version, end_of_version-raw_version); else return tor_strdup(raw_version); } static char *crypto_openssl_version_str = NULL; /* Return a human-readable version of the run-time openssl version number. */ const char * crypto_openssl_get_version_str(void) { if (crypto_openssl_version_str == NULL) { const char *raw_version = SSLeay_version(SSLEAY_VERSION); crypto_openssl_version_str = parse_openssl_version_str(raw_version); } return crypto_openssl_version_str; } static char *crypto_openssl_header_version_str = NULL; /* Return a human-readable version of the compile-time openssl version * number. */ const char * crypto_openssl_get_header_version_str(void) { if (crypto_openssl_header_version_str == NULL) { crypto_openssl_header_version_str = parse_openssl_version_str(OPENSSL_VERSION_TEXT); } return crypto_openssl_header_version_str; } /** Make sure that openssl is using its default PRNG. Return 1 if we had to * adjust it; 0 otherwise. */ static int crypto_force_rand_ssleay(void) { if (RAND_get_rand_method() != RAND_SSLeay()) { log_notice(LD_CRYPTO, "It appears that one of our engines has provided " "a replacement the OpenSSL RNG. Resetting it to the default " "implementation."); RAND_set_rand_method(RAND_SSLeay()); return 1; } return 0; } /** Set up the siphash key if we haven't already done so. */ int crypto_init_siphash_key(void) { static int have_seeded_siphash = 0; struct sipkey key; if (have_seeded_siphash) return 0; if (crypto_rand((char*) &key, sizeof(key)) < 0) return -1; siphash_set_global_key(&key); have_seeded_siphash = 1; return 0; } /** Initialize the crypto library. Return 0 on success, -1 on failure. */ int crypto_early_init(void) { if (!crypto_early_initialized_) { crypto_early_initialized_ = 1; ERR_load_crypto_strings(); OpenSSL_add_all_algorithms(); setup_openssl_threading(); if (SSLeay() == OPENSSL_VERSION_NUMBER && !strcmp(SSLeay_version(SSLEAY_VERSION), OPENSSL_VERSION_TEXT)) { log_info(LD_CRYPTO, "OpenSSL version matches version from headers " "(%lx: %s).", SSLeay(), SSLeay_version(SSLEAY_VERSION)); } else { log_warn(LD_CRYPTO, "OpenSSL version from headers does not match the " "version we're running with. If you get weird crashes, that " "might be why. (Compiled with %lx: %s; running with %lx: %s).", (unsigned long)OPENSSL_VERSION_NUMBER, OPENSSL_VERSION_TEXT, SSLeay(), SSLeay_version(SSLEAY_VERSION)); } crypto_force_rand_ssleay(); if (crypto_seed_rng() < 0) return -1; if (crypto_init_siphash_key() < 0) return -1; curve25519_init(); ed25519_init(); } return 0; } /** Initialize the crypto library. Return 0 on success, -1 on failure. */ int crypto_global_init(int useAccel, const char *accelName, const char *accelDir) { if (!crypto_global_initialized_) { crypto_early_init(); crypto_global_initialized_ = 1; if (useAccel > 0) { #ifdef DISABLE_ENGINES (void)accelName; (void)accelDir; log_warn(LD_CRYPTO, "No OpenSSL hardware acceleration support enabled."); #else ENGINE *e = NULL; log_info(LD_CRYPTO, "Initializing OpenSSL engine support."); ENGINE_load_builtin_engines(); ENGINE_register_all_complete(); if (accelName) { if (accelDir) { log_info(LD_CRYPTO, "Trying to load dynamic OpenSSL engine \"%s\"" " via path \"%s\".", accelName, accelDir); e = try_load_engine(accelName, accelDir); } else { log_info(LD_CRYPTO, "Initializing dynamic OpenSSL engine \"%s\"" " acceleration support.", accelName); e = ENGINE_by_id(accelName); } if (!e) { log_warn(LD_CRYPTO, "Unable to load dynamic OpenSSL engine \"%s\".", accelName); } else { log_info(LD_CRYPTO, "Loaded dynamic OpenSSL engine \"%s\".", accelName); } } if (e) { log_info(LD_CRYPTO, "Loaded OpenSSL hardware acceleration engine," " setting default ciphers."); ENGINE_set_default(e, ENGINE_METHOD_ALL); } /* Log, if available, the intersection of the set of algorithms used by Tor and the set of algorithms available in the engine */ log_engine("RSA", ENGINE_get_default_RSA()); log_engine("DH", ENGINE_get_default_DH()); log_engine("ECDH", ENGINE_get_default_ECDH()); log_engine("ECDSA", ENGINE_get_default_ECDSA()); log_engine("RAND", ENGINE_get_default_RAND()); log_engine("RAND (which we will not use)", ENGINE_get_default_RAND()); log_engine("SHA1", ENGINE_get_digest_engine(NID_sha1)); log_engine("3DES-CBC", ENGINE_get_cipher_engine(NID_des_ede3_cbc)); log_engine("AES-128-ECB", ENGINE_get_cipher_engine(NID_aes_128_ecb)); log_engine("AES-128-CBC", ENGINE_get_cipher_engine(NID_aes_128_cbc)); #ifdef NID_aes_128_ctr log_engine("AES-128-CTR", ENGINE_get_cipher_engine(NID_aes_128_ctr)); #endif #ifdef NID_aes_128_gcm log_engine("AES-128-GCM", ENGINE_get_cipher_engine(NID_aes_128_gcm)); #endif log_engine("AES-256-CBC", ENGINE_get_cipher_engine(NID_aes_256_cbc)); #ifdef NID_aes_256_gcm log_engine("AES-256-GCM", ENGINE_get_cipher_engine(NID_aes_256_gcm)); #endif #endif } else { log_info(LD_CRYPTO, "NOT using OpenSSL engine support."); } if (crypto_force_rand_ssleay()) { if (crypto_seed_rng() < 0) return -1; } evaluate_evp_for_aes(-1); evaluate_ctr_for_aes(); } return 0; } /** Free crypto resources held by this thread. */ void crypto_thread_cleanup(void) { #if OPENSSL_VERSION_NUMBER >= OPENSSL_V_SERIES(1,1,0) ERR_remove_thread_state(NULL); #else ERR_remove_state(0); #endif } /** used by tortls.c: wrap an RSA* in a crypto_pk_t. */ crypto_pk_t * crypto_new_pk_from_rsa_(RSA *rsa) { crypto_pk_t *env; tor_assert(rsa); env = tor_malloc(sizeof(crypto_pk_t)); env->refs = 1; env->key = rsa; return env; } /** Helper, used by tor-checkkey.c and tor-gencert.c. Return the RSA from a * crypto_pk_t. */ RSA * crypto_pk_get_rsa_(crypto_pk_t *env) { return env->key; } /** used by tortls.c: get an equivalent EVP_PKEY* for a crypto_pk_t. Iff * private is set, include the private-key portion of the key. */ EVP_PKEY * crypto_pk_get_evp_pkey_(crypto_pk_t *env, int private) { RSA *key = NULL; EVP_PKEY *pkey = NULL; tor_assert(env->key); if (private) { if (!(key = RSAPrivateKey_dup(env->key))) goto error; } else { if (!(key = RSAPublicKey_dup(env->key))) goto error; } if (!(pkey = EVP_PKEY_new())) goto error; if (!(EVP_PKEY_assign_RSA(pkey, key))) goto error; return pkey; error: if (pkey) EVP_PKEY_free(pkey); if (key) RSA_free(key); return NULL; } /** Used by tortls.c: Get the DH* from a crypto_dh_t. */ DH * crypto_dh_get_dh_(crypto_dh_t *dh) { return dh->dh; } /** Allocate and return storage for a public key. The key itself will not yet * be set. */ crypto_pk_t * crypto_pk_new(void) { RSA *rsa; rsa = RSA_new(); tor_assert(rsa); return crypto_new_pk_from_rsa_(rsa); } /** Release a reference to an asymmetric key; when all the references * are released, free the key. */ void crypto_pk_free(crypto_pk_t *env) { if (!env) return; if (--env->refs > 0) return; tor_assert(env->refs == 0); if (env->key) RSA_free(env->key); tor_free(env); } /** Allocate and return a new symmetric cipher using the provided key and iv. * The key is CIPHER_KEY_LEN bytes; the IV is CIPHER_IV_LEN bytes. If you * provide NULL in place of either one, it is generated at random. */ crypto_cipher_t * crypto_cipher_new_with_iv(const char *key, const char *iv) { crypto_cipher_t *env; env = tor_malloc_zero(sizeof(crypto_cipher_t)); if (key == NULL) crypto_rand(env->key, CIPHER_KEY_LEN); else memcpy(env->key, key, CIPHER_KEY_LEN); if (iv == NULL) crypto_rand(env->iv, CIPHER_IV_LEN); else memcpy(env->iv, iv, CIPHER_IV_LEN); env->cipher = aes_new_cipher(env->key, env->iv); return env; } /** Return a new crypto_cipher_t with the provided key and an IV of all * zero bytes. */ crypto_cipher_t * crypto_cipher_new(const char *key) { char zeroiv[CIPHER_IV_LEN]; memset(zeroiv, 0, sizeof(zeroiv)); return crypto_cipher_new_with_iv(key, zeroiv); } /** Free a symmetric cipher. */ void crypto_cipher_free(crypto_cipher_t *env) { if (!env) return; tor_assert(env->cipher); aes_cipher_free(env->cipher); memwipe(env, 0, sizeof(crypto_cipher_t)); tor_free(env); } /* public key crypto */ /** Generate a bits-bit new public/private keypair in env. * Return 0 on success, -1 on failure. */ int crypto_pk_generate_key_with_bits(crypto_pk_t *env, int bits) { tor_assert(env); if (env->key) RSA_free(env->key); { BIGNUM *e = BN_new(); RSA *r = NULL; if (!e) goto done; if (! BN_set_word(e, 65537)) goto done; r = RSA_new(); if (!r) goto done; if (RSA_generate_key_ex(r, bits, e, NULL) == -1) goto done; env->key = r; r = NULL; done: if (e) BN_clear_free(e); if (r) RSA_free(r); } if (!env->key) { crypto_log_errors(LOG_WARN, "generating RSA key"); return -1; } return 0; } /** Read a PEM-encoded private key from the len-byte string s * into env. Return 0 on success, -1 on failure. If len is -1, * the string is nul-terminated. */ /* Used here, and used for testing. */ int crypto_pk_read_private_key_from_string(crypto_pk_t *env, const char *s, ssize_t len) { BIO *b; tor_assert(env); tor_assert(s); tor_assert(len < INT_MAX && len < SSIZE_T_CEILING); /* Create a read-only memory BIO, backed by the string 's' */ b = BIO_new_mem_buf((char*)s, (int)len); if (!b) return -1; if (env->key) RSA_free(env->key); env->key = PEM_read_bio_RSAPrivateKey(b,NULL,NULL,NULL); BIO_free(b); if (!env->key) { crypto_log_errors(LOG_WARN, "Error parsing private key"); return -1; } return 0; } /** Read a PEM-encoded private key from the file named by * keyfile into env. Return 0 on success, -1 on failure. */ int crypto_pk_read_private_key_from_filename(crypto_pk_t *env, const char *keyfile) { char *contents; int r; /* Read the file into a string. */ contents = read_file_to_str(keyfile, 0, NULL); if (!contents) { log_warn(LD_CRYPTO, "Error reading private key from \"%s\"", keyfile); return -1; } /* Try to parse it. */ r = crypto_pk_read_private_key_from_string(env, contents, -1); memwipe(contents, 0, strlen(contents)); tor_free(contents); if (r) return -1; /* read_private_key_from_string already warned, so we don't.*/ /* Make sure it's valid. */ if (crypto_pk_check_key(env) <= 0) return -1; return 0; } /** Helper function to implement crypto_pk_write_*_key_to_string. */ static int crypto_pk_write_key_to_string_impl(crypto_pk_t *env, char **dest, size_t *len, int is_public) { BUF_MEM *buf; BIO *b; int r; tor_assert(env); tor_assert(env->key); tor_assert(dest); b = BIO_new(BIO_s_mem()); /* Create a memory BIO */ if (!b) return -1; /* Now you can treat b as if it were a file. Just use the * PEM_*_bio_* functions instead of the non-bio variants. */ if (is_public) r = PEM_write_bio_RSAPublicKey(b, env->key); else r = PEM_write_bio_RSAPrivateKey(b, env->key, NULL,NULL,0,NULL,NULL); if (!r) { crypto_log_errors(LOG_WARN, "writing RSA key to string"); BIO_free(b); return -1; } BIO_get_mem_ptr(b, &buf); (void)BIO_set_close(b, BIO_NOCLOSE); /* so BIO_free doesn't free buf */ BIO_free(b); *dest = tor_malloc(buf->length+1); memcpy(*dest, buf->data, buf->length); (*dest)[buf->length] = 0; /* nul terminate it */ *len = buf->length; BUF_MEM_free(buf); return 0; } /** PEM-encode the public key portion of env and write it to a * newly allocated string. On success, set *dest to the new * string, *len to the string's length, and return 0. On * failure, return -1. */ int crypto_pk_write_public_key_to_string(crypto_pk_t *env, char **dest, size_t *len) { return crypto_pk_write_key_to_string_impl(env, dest, len, 1); } /** PEM-encode the private key portion of env and write it to a * newly allocated string. On success, set *dest to the new * string, *len to the string's length, and return 0. On * failure, return -1. */ int crypto_pk_write_private_key_to_string(crypto_pk_t *env, char **dest, size_t *len) { return crypto_pk_write_key_to_string_impl(env, dest, len, 0); } /** Read a PEM-encoded public key from the first len characters of * src, and store the result in env. Return 0 on success, -1 on * failure. */ int crypto_pk_read_public_key_from_string(crypto_pk_t *env, const char *src, size_t len) { BIO *b; tor_assert(env); tor_assert(src); tor_assert(lenkey) RSA_free(env->key); env->key = PEM_read_bio_RSAPublicKey(b, NULL, NULL, NULL); BIO_free(b); if (!env->key) { crypto_log_errors(LOG_WARN, "reading public key from string"); return -1; } return 0; } /** Write the private key from env into the file named by fname, * PEM-encoded. Return 0 on success, -1 on failure. */ int crypto_pk_write_private_key_to_filename(crypto_pk_t *env, const char *fname) { BIO *bio; char *cp; long len; char *s; int r; tor_assert(PRIVATE_KEY_OK(env)); if (!(bio = BIO_new(BIO_s_mem()))) return -1; if (PEM_write_bio_RSAPrivateKey(bio, env->key, NULL,NULL,0,NULL,NULL) == 0) { crypto_log_errors(LOG_WARN, "writing private key"); BIO_free(bio); return -1; } len = BIO_get_mem_data(bio, &cp); tor_assert(len >= 0); s = tor_malloc(len+1); memcpy(s, cp, len); s[len]='\0'; r = write_str_to_file(fname, s, 0); BIO_free(bio); memwipe(s, 0, strlen(s)); tor_free(s); return r; } /** Return true iff env has a valid key. */ int crypto_pk_check_key(crypto_pk_t *env) { int r; tor_assert(env); r = RSA_check_key(env->key); if (r <= 0) crypto_log_errors(LOG_WARN,"checking RSA key"); return r; } /** Return true iff key contains the private-key portion of the RSA * key. */ int crypto_pk_key_is_private(const crypto_pk_t *key) { tor_assert(key); return PRIVATE_KEY_OK(key); } /** Return true iff env contains a public key whose public exponent * equals 65537. */ int crypto_pk_public_exponent_ok(crypto_pk_t *env) { tor_assert(env); tor_assert(env->key); return BN_is_word(env->key->e, 65537); } /** Compare the public-key components of a and b. Return less than 0 * if a\b. A NULL key is * considered to be less than all non-NULL keys, and equal to itself. * * Note that this may leak information about the keys through timing. */ int crypto_pk_cmp_keys(const crypto_pk_t *a, const crypto_pk_t *b) { int result; char a_is_non_null = (a != NULL) && (a->key != NULL); char b_is_non_null = (b != NULL) && (b->key != NULL); char an_argument_is_null = !a_is_non_null | !b_is_non_null; result = tor_memcmp(&a_is_non_null, &b_is_non_null, sizeof(a_is_non_null)); if (an_argument_is_null) return result; tor_assert(PUBLIC_KEY_OK(a)); tor_assert(PUBLIC_KEY_OK(b)); result = BN_cmp((a->key)->n, (b->key)->n); if (result) return result; return BN_cmp((a->key)->e, (b->key)->e); } /** Compare the public-key components of a and b. Return non-zero iff * a==b. A NULL key is considered to be distinct from all non-NULL * keys, and equal to itself. * * Note that this may leak information about the keys through timing. */ int crypto_pk_eq_keys(const crypto_pk_t *a, const crypto_pk_t *b) { return (crypto_pk_cmp_keys(a, b) == 0); } /** Return the size of the public key modulus in env, in bytes. */ size_t crypto_pk_keysize(const crypto_pk_t *env) { tor_assert(env); tor_assert(env->key); return (size_t) RSA_size((RSA*)env->key); } /** Return the size of the public key modulus of env, in bits. */ int crypto_pk_num_bits(crypto_pk_t *env) { tor_assert(env); tor_assert(env->key); tor_assert(env->key->n); return BN_num_bits(env->key->n); } /** Increase the reference count of env, and return it. */ crypto_pk_t * crypto_pk_dup_key(crypto_pk_t *env) { tor_assert(env); tor_assert(env->key); env->refs++; return env; } /** Make a real honest-to-goodness copy of env, and return it. */ crypto_pk_t * crypto_pk_copy_full(crypto_pk_t *env) { RSA *new_key; int privatekey = 0; tor_assert(env); tor_assert(env->key); if (PRIVATE_KEY_OK(env)) { new_key = RSAPrivateKey_dup(env->key); privatekey = 1; } else { new_key = RSAPublicKey_dup(env->key); } if (!new_key) { log_err(LD_CRYPTO, "Unable to duplicate a %s key: openssl failed.", privatekey?"private":"public"); crypto_log_errors(LOG_ERR, privatekey ? "Duplicating a private key" : "Duplicating a public key"); tor_fragile_assert(); return NULL; } return crypto_new_pk_from_rsa_(new_key); } /** Encrypt fromlen bytes from from with the public key * in env, using the padding method padding. On success, * write the result to to, and return the number of bytes * written. On failure, return -1. * * tolen is the number of writable bytes in to, and must be * at least the length of the modulus of env. */ int crypto_pk_public_encrypt(crypto_pk_t *env, char *to, size_t tolen, const char *from, size_t fromlen, int padding) { int r; tor_assert(env); tor_assert(from); tor_assert(to); tor_assert(fromlen= crypto_pk_keysize(env)); r = RSA_public_encrypt((int)fromlen, (unsigned char*)from, (unsigned char*)to, env->key, crypto_get_rsa_padding(padding)); if (r<0) { crypto_log_errors(LOG_WARN, "performing RSA encryption"); return -1; } return r; } /** Decrypt fromlen bytes from from with the private key * in env, using the padding method padding. On success, * write the result to to, and return the number of bytes * written. On failure, return -1. * * tolen is the number of writable bytes in to, and must be * at least the length of the modulus of env. */ int crypto_pk_private_decrypt(crypto_pk_t *env, char *to, size_t tolen, const char *from, size_t fromlen, int padding, int warnOnFailure) { int r; tor_assert(env); tor_assert(from); tor_assert(to); tor_assert(env->key); tor_assert(fromlen= crypto_pk_keysize(env)); if (!env->key->p) /* Not a private key */ return -1; r = RSA_private_decrypt((int)fromlen, (unsigned char*)from, (unsigned char*)to, env->key, crypto_get_rsa_padding(padding)); if (r<0) { crypto_log_errors(warnOnFailure?LOG_WARN:LOG_DEBUG, "performing RSA decryption"); return -1; } return r; } /** Check the signature in from (fromlen bytes long) with the * public key in env, using PKCS1 padding. On success, write the * signed data to to, and return the number of bytes written. * On failure, return -1. * * tolen is the number of writable bytes in to, and must be * at least the length of the modulus of env. */ int crypto_pk_public_checksig(const crypto_pk_t *env, char *to, size_t tolen, const char *from, size_t fromlen) { int r; tor_assert(env); tor_assert(from); tor_assert(to); tor_assert(fromlen < INT_MAX); tor_assert(tolen >= crypto_pk_keysize(env)); r = RSA_public_decrypt((int)fromlen, (unsigned char*)from, (unsigned char*)to, env->key, RSA_PKCS1_PADDING); if (r<0) { crypto_log_errors(LOG_INFO, "checking RSA signature"); return -1; } return r; } /** Check a siglen-byte long signature at sig against * datalen bytes of data at data, using the public key * in env. Return 0 if sig is a correct signature for * SHA1(data). Else return -1. */ int crypto_pk_public_checksig_digest(crypto_pk_t *env, const char *data, size_t datalen, const char *sig, size_t siglen) { char digest[DIGEST_LEN]; char *buf; size_t buflen; int r; tor_assert(env); tor_assert(data); tor_assert(sig); tor_assert(datalen < SIZE_T_CEILING); tor_assert(siglen < SIZE_T_CEILING); if (crypto_digest(digest,data,datalen)<0) { log_warn(LD_BUG, "couldn't compute digest"); return -1; } buflen = crypto_pk_keysize(env); buf = tor_malloc(buflen); r = crypto_pk_public_checksig(env,buf,buflen,sig,siglen); if (r != DIGEST_LEN) { log_warn(LD_CRYPTO, "Invalid signature"); tor_free(buf); return -1; } if (tor_memneq(buf, digest, DIGEST_LEN)) { log_warn(LD_CRYPTO, "Signature mismatched with digest."); tor_free(buf); return -1; } tor_free(buf); return 0; } /** Sign fromlen bytes of data from from with the private key in * env, using PKCS1 padding. On success, write the signature to * to, and return the number of bytes written. On failure, return * -1. * * tolen is the number of writable bytes in to, and must be * at least the length of the modulus of env. */ int crypto_pk_private_sign(const crypto_pk_t *env, char *to, size_t tolen, const char *from, size_t fromlen) { int r; tor_assert(env); tor_assert(from); tor_assert(to); tor_assert(fromlen < INT_MAX); tor_assert(tolen >= crypto_pk_keysize(env)); if (!env->key->p) /* Not a private key */ return -1; r = RSA_private_encrypt((int)fromlen, (unsigned char*)from, (unsigned char*)to, (RSA*)env->key, RSA_PKCS1_PADDING); if (r<0) { crypto_log_errors(LOG_WARN, "generating RSA signature"); return -1; } return r; } /** Compute a SHA1 digest of fromlen bytes of data stored at * from; sign the data with the private key in env, and * store it in to. Return the number of bytes written on * success, and -1 on failure. * * tolen is the number of writable bytes in to, and must be * at least the length of the modulus of env. */ int crypto_pk_private_sign_digest(crypto_pk_t *env, char *to, size_t tolen, const char *from, size_t fromlen) { int r; char digest[DIGEST_LEN]; if (crypto_digest(digest,from,fromlen)<0) return -1; r = crypto_pk_private_sign(env,to,tolen,digest,DIGEST_LEN); memwipe(digest, 0, sizeof(digest)); return r; } /** Perform a hybrid (public/secret) encryption on fromlen * bytes of data from from, with padding type 'padding', * storing the results on to. * * Returns the number of bytes written on success, -1 on failure. * * The encrypted data consists of: * - The source data, padded and encrypted with the public key, if the * padded source data is no longer than the public key, and force * is false, OR * - The beginning of the source data prefixed with a 16-byte symmetric key, * padded and encrypted with the public key; followed by the rest of * the source data encrypted in AES-CTR mode with the symmetric key. */ int crypto_pk_public_hybrid_encrypt(crypto_pk_t *env, char *to, size_t tolen, const char *from, size_t fromlen, int padding, int force) { int overhead, outlen, r; size_t pkeylen, symlen; crypto_cipher_t *cipher = NULL; char *buf = NULL; tor_assert(env); tor_assert(from); tor_assert(to); tor_assert(fromlen < SIZE_T_CEILING); overhead = crypto_get_rsa_padding_overhead(crypto_get_rsa_padding(padding)); pkeylen = crypto_pk_keysize(env); if (!force && fromlen+overhead <= pkeylen) { /* It all fits in a single encrypt. */ return crypto_pk_public_encrypt(env,to, tolen, from,fromlen,padding); } tor_assert(tolen >= fromlen + overhead + CIPHER_KEY_LEN); tor_assert(tolen >= pkeylen); cipher = crypto_cipher_new(NULL); /* generate a new key. */ buf = tor_malloc(pkeylen+1); memcpy(buf, cipher->key, CIPHER_KEY_LEN); memcpy(buf+CIPHER_KEY_LEN, from, pkeylen-overhead-CIPHER_KEY_LEN); /* Length of symmetrically encrypted data. */ symlen = fromlen-(pkeylen-overhead-CIPHER_KEY_LEN); outlen = crypto_pk_public_encrypt(env,to,tolen,buf,pkeylen-overhead,padding); if (outlen!=(int)pkeylen) { goto err; } r = crypto_cipher_encrypt(cipher, to+outlen, from+pkeylen-overhead-CIPHER_KEY_LEN, symlen); if (r<0) goto err; memwipe(buf, 0, pkeylen); tor_free(buf); crypto_cipher_free(cipher); tor_assert(outlen+symlen < INT_MAX); return (int)(outlen + symlen); err: memwipe(buf, 0, pkeylen); tor_free(buf); crypto_cipher_free(cipher); return -1; } /** Invert crypto_pk_public_hybrid_encrypt. */ int crypto_pk_private_hybrid_decrypt(crypto_pk_t *env, char *to, size_t tolen, const char *from, size_t fromlen, int padding, int warnOnFailure) { int outlen, r; size_t pkeylen; crypto_cipher_t *cipher = NULL; char *buf = NULL; tor_assert(fromlen < SIZE_T_CEILING); pkeylen = crypto_pk_keysize(env); if (fromlen <= pkeylen) { return crypto_pk_private_decrypt(env,to,tolen,from,fromlen,padding, warnOnFailure); } buf = tor_malloc(pkeylen); outlen = crypto_pk_private_decrypt(env,buf,pkeylen,from,pkeylen,padding, warnOnFailure); if (outlen<0) { log_fn(warnOnFailure?LOG_WARN:LOG_DEBUG, LD_CRYPTO, "Error decrypting public-key data"); goto err; } if (outlen < CIPHER_KEY_LEN) { log_fn(warnOnFailure?LOG_WARN:LOG_INFO, LD_CRYPTO, "No room for a symmetric key"); goto err; } cipher = crypto_cipher_new(buf); if (!cipher) { goto err; } memcpy(to,buf+CIPHER_KEY_LEN,outlen-CIPHER_KEY_LEN); outlen -= CIPHER_KEY_LEN; tor_assert(tolen - outlen >= fromlen - pkeylen); r = crypto_cipher_decrypt(cipher, to+outlen, from+pkeylen, fromlen-pkeylen); if (r<0) goto err; memwipe(buf,0,pkeylen); tor_free(buf); crypto_cipher_free(cipher); tor_assert(outlen + fromlen < INT_MAX); return (int)(outlen + (fromlen-pkeylen)); err: memwipe(buf,0,pkeylen); tor_free(buf); crypto_cipher_free(cipher); return -1; } /** ASN.1-encode the public portion of pk into dest. * Return -1 on error, or the number of characters used on success. */ int crypto_pk_asn1_encode(crypto_pk_t *pk, char *dest, size_t dest_len) { int len; unsigned char *buf = NULL; len = i2d_RSAPublicKey(pk->key, &buf); if (len < 0 || buf == NULL) return -1; if ((size_t)len > dest_len || dest_len > SIZE_T_CEILING) { OPENSSL_free(buf); return -1; } /* We don't encode directly into 'dest', because that would be illegal * type-punning. (C99 is smarter than me, C99 is smarter than me...) */ memcpy(dest,buf,len); OPENSSL_free(buf); return len; } /** Decode an ASN.1-encoded public key from str; return the result on * success and NULL on failure. */ crypto_pk_t * crypto_pk_asn1_decode(const char *str, size_t len) { RSA *rsa; unsigned char *buf; const unsigned char *cp; cp = buf = tor_malloc(len); memcpy(buf,str,len); rsa = d2i_RSAPublicKey(NULL, &cp, len); tor_free(buf); if (!rsa) { crypto_log_errors(LOG_WARN,"decoding public key"); return NULL; } return crypto_new_pk_from_rsa_(rsa); } /** Given a private or public key pk, put a SHA1 hash of the * public key into digest_out (must have DIGEST_LEN bytes of space). * Return 0 on success, -1 on failure. */ int crypto_pk_get_digest(const crypto_pk_t *pk, char *digest_out) { unsigned char *buf = NULL; int len; len = i2d_RSAPublicKey((RSA*)pk->key, &buf); if (len < 0 || buf == NULL) return -1; if (crypto_digest(digest_out, (char*)buf, len) < 0) { OPENSSL_free(buf); return -1; } OPENSSL_free(buf); return 0; } /** Compute all digests of the DER encoding of pk, and store them * in digests_out. Return 0 on success, -1 on failure. */ int crypto_pk_get_all_digests(crypto_pk_t *pk, digests_t *digests_out) { unsigned char *buf = NULL; int len; len = i2d_RSAPublicKey(pk->key, &buf); if (len < 0 || buf == NULL) return -1; if (crypto_digest_all(digests_out, (char*)buf, len) < 0) { OPENSSL_free(buf); return -1; } OPENSSL_free(buf); return 0; } /** Copy in to the outlen-byte buffer out, adding spaces * every four spaces. */ void crypto_add_spaces_to_fp(char *out, size_t outlen, const char *in) { int n = 0; char *end = out+outlen; tor_assert(outlen < SIZE_T_CEILING); while (*in && outpk, put a fingerprint of the * public key into fp_out (must have at least FINGERPRINT_LEN+1 bytes of * space). Return 0 on success, -1 on failure. * * Fingerprints are computed as the SHA1 digest of the ASN.1 encoding * of the public key, converted to hexadecimal, in upper case, with a * space after every four digits. * * If add_space is false, omit the spaces. */ int crypto_pk_get_fingerprint(crypto_pk_t *pk, char *fp_out, int add_space) { char digest[DIGEST_LEN]; char hexdigest[HEX_DIGEST_LEN+1]; if (crypto_pk_get_digest(pk, digest)) { return -1; } base16_encode(hexdigest,sizeof(hexdigest),digest,DIGEST_LEN); if (add_space) { crypto_add_spaces_to_fp(fp_out, FINGERPRINT_LEN+1, hexdigest); } else { strncpy(fp_out, hexdigest, HEX_DIGEST_LEN+1); } return 0; } /** Given a private or public key pk, put a hashed fingerprint of * the public key into fp_out (must have at least FINGERPRINT_LEN+1 * bytes of space). Return 0 on success, -1 on failure. * * Hashed fingerprints are computed as the SHA1 digest of the SHA1 digest * of the ASN.1 encoding of the public key, converted to hexadecimal, in * upper case. */ int crypto_pk_get_hashed_fingerprint(crypto_pk_t *pk, char *fp_out) { char digest[DIGEST_LEN], hashed_digest[DIGEST_LEN]; if (crypto_pk_get_digest(pk, digest)) { return -1; } if (crypto_digest(hashed_digest, digest, DIGEST_LEN)) { return -1; } base16_encode(fp_out, FINGERPRINT_LEN + 1, hashed_digest, DIGEST_LEN); return 0; } /** Given a crypto_pk_t pk, allocate a new buffer containing the * Base64 encoding of the DER representation of the private key as a NUL * terminated string, and return it via priv_out. Return 0 on * sucess, -1 on failure. * * It is the caller's responsibility to sanitize and free the resulting buffer. */ int crypto_pk_base64_encode(const crypto_pk_t *pk, char **priv_out) { unsigned char *der = NULL; int der_len; int ret = -1; *priv_out = NULL; der_len = i2d_RSAPrivateKey(pk->key, &der); if (der_len < 0 || der == NULL) return ret; size_t priv_len = base64_encode_size(der_len, 0) + 1; char *priv = tor_malloc_zero(priv_len); if (base64_encode(priv, priv_len, (char *)der, der_len, 0) >= 0) { *priv_out = priv; ret = 0; } else { tor_free(priv); } memwipe(der, 0, der_len); OPENSSL_free(der); return ret; } /** Given a string containing the Base64 encoded DER representation of the * private key str, decode and return the result on success, or NULL * on failure. */ crypto_pk_t * crypto_pk_base64_decode(const char *str, size_t len) { crypto_pk_t *pk = NULL; char *der = tor_malloc_zero(len + 1); int der_len = base64_decode(der, len, str, len); if (der_len <= 0) { log_warn(LD_CRYPTO, "Stored RSA private key seems corrupted (base64)."); goto out; } const unsigned char *dp = (unsigned char*)der; /* Shut the compiler up. */ RSA *rsa = d2i_RSAPrivateKey(NULL, &dp, der_len); if (!rsa) { crypto_log_errors(LOG_WARN, "decoding private key"); goto out; } pk = crypto_new_pk_from_rsa_(rsa); /* Make sure it's valid. */ if (crypto_pk_check_key(pk) <= 0) { crypto_pk_free(pk); pk = NULL; goto out; } out: memwipe(der, 0, len + 1); tor_free(der); return pk; } /* symmetric crypto */ /** Return a pointer to the key set for the cipher in env. */ const char * crypto_cipher_get_key(crypto_cipher_t *env) { return env->key; } /** Encrypt fromlen bytes from from using the cipher * env; on success, store the result to to and return 0. * On failure, return -1. */ int crypto_cipher_encrypt(crypto_cipher_t *env, char *to, const char *from, size_t fromlen) { tor_assert(env); tor_assert(env->cipher); tor_assert(from); tor_assert(fromlen); tor_assert(to); tor_assert(fromlen < SIZE_T_CEILING); aes_crypt(env->cipher, from, fromlen, to); return 0; } /** Decrypt fromlen bytes from from using the cipher * env; on success, store the result to to and return 0. * On failure, return -1. */ int crypto_cipher_decrypt(crypto_cipher_t *env, char *to, const char *from, size_t fromlen) { tor_assert(env); tor_assert(from); tor_assert(to); tor_assert(fromlen < SIZE_T_CEILING); aes_crypt(env->cipher, from, fromlen, to); return 0; } /** Encrypt len bytes on from using the cipher in env; * on success, return 0. On failure, return -1. */ int crypto_cipher_crypt_inplace(crypto_cipher_t *env, char *buf, size_t len) { tor_assert(len < SIZE_T_CEILING); aes_crypt_inplace(env->cipher, buf, len); return 0; } /** Encrypt fromlen bytes (at least 1) from from with the key in * key to the buffer in to of length * tolen. tolen must be at least fromlen plus * CIPHER_IV_LEN bytes for the initialization vector. On success, return the * number of bytes written, on failure, return -1. */ int crypto_cipher_encrypt_with_iv(const char *key, char *to, size_t tolen, const char *from, size_t fromlen) { crypto_cipher_t *cipher; tor_assert(from); tor_assert(to); tor_assert(fromlen < INT_MAX); if (fromlen < 1) return -1; if (tolen < fromlen + CIPHER_IV_LEN) return -1; cipher = crypto_cipher_new_with_iv(key, NULL); memcpy(to, cipher->iv, CIPHER_IV_LEN); crypto_cipher_encrypt(cipher, to+CIPHER_IV_LEN, from, fromlen); crypto_cipher_free(cipher); return (int)(fromlen + CIPHER_IV_LEN); } /** Decrypt fromlen bytes (at least 1+CIPHER_IV_LEN) from from * with the key in key to the buffer in to of length * tolen. tolen must be at least fromlen minus * CIPHER_IV_LEN bytes for the initialization vector. On success, return the * number of bytes written, on failure, return -1. */ int crypto_cipher_decrypt_with_iv(const char *key, char *to, size_t tolen, const char *from, size_t fromlen) { crypto_cipher_t *cipher; tor_assert(key); tor_assert(from); tor_assert(to); tor_assert(fromlen < INT_MAX); if (fromlen <= CIPHER_IV_LEN) return -1; if (tolen < fromlen - CIPHER_IV_LEN) return -1; cipher = crypto_cipher_new_with_iv(key, from); crypto_cipher_encrypt(cipher, to, from+CIPHER_IV_LEN, fromlen-CIPHER_IV_LEN); crypto_cipher_free(cipher); return (int)(fromlen - CIPHER_IV_LEN); } /* SHA-1 */ /** Compute the SHA1 digest of the len bytes on data stored in * m. Write the DIGEST_LEN byte result into digest. * Return 0 on success, -1 on failure. */ int crypto_digest(char *digest, const char *m, size_t len) { tor_assert(m); tor_assert(digest); return (SHA1((const unsigned char*)m,len,(unsigned char*)digest) == NULL); } /** Compute a 256-bit digest of len bytes in data stored in m, * using the algorithm algorithm. Write the DIGEST_LEN256-byte result * into digest. Return 0 on success, -1 on failure. */ int crypto_digest256(char *digest, const char *m, size_t len, digest_algorithm_t algorithm) { tor_assert(m); tor_assert(digest); tor_assert(algorithm == DIGEST_SHA256); return (SHA256((const unsigned char*)m,len,(unsigned char*)digest) == NULL); } /** Set the digests_t in ds_out to contain every digest on the * len bytes in m that we know how to compute. Return 0 on * success, -1 on failure. */ int crypto_digest_all(digests_t *ds_out, const char *m, size_t len) { int i; tor_assert(ds_out); memset(ds_out, 0, sizeof(*ds_out)); if (crypto_digest(ds_out->d[DIGEST_SHA1], m, len) < 0) return -1; for (i = DIGEST_SHA256; i < N_DIGEST_ALGORITHMS; ++i) { if (crypto_digest256(ds_out->d[i], m, len, i) < 0) return -1; } return 0; } /** Return the name of an algorithm, as used in directory documents. */ const char * crypto_digest_algorithm_get_name(digest_algorithm_t alg) { switch (alg) { case DIGEST_SHA1: return "sha1"; case DIGEST_SHA256: return "sha256"; default: tor_fragile_assert(); return "??unknown_digest??"; } } /** Given the name of a digest algorithm, return its integer value, or -1 if * the name is not recognized. */ int crypto_digest_algorithm_parse_name(const char *name) { if (!strcmp(name, "sha1")) return DIGEST_SHA1; else if (!strcmp(name, "sha256")) return DIGEST_SHA256; else return -1; } /** Intermediate information about the digest of a stream of data. */ struct crypto_digest_t { union { SHA_CTX sha1; /**< state for SHA1 */ SHA256_CTX sha2; /**< state for SHA256 */ } d; /**< State for the digest we're using. Only one member of the * union is usable, depending on the value of algorithm. */ digest_algorithm_bitfield_t algorithm : 8; /**< Which algorithm is in use? */ }; /** Allocate and return a new digest object to compute SHA1 digests. */ crypto_digest_t * crypto_digest_new(void) { crypto_digest_t *r; r = tor_malloc(sizeof(crypto_digest_t)); SHA1_Init(&r->d.sha1); r->algorithm = DIGEST_SHA1; return r; } /** Allocate and return a new digest object to compute 256-bit digests * using algorithm. */ crypto_digest_t * crypto_digest256_new(digest_algorithm_t algorithm) { crypto_digest_t *r; tor_assert(algorithm == DIGEST_SHA256); r = tor_malloc(sizeof(crypto_digest_t)); SHA256_Init(&r->d.sha2); r->algorithm = algorithm; return r; } /** Deallocate a digest object. */ void crypto_digest_free(crypto_digest_t *digest) { if (!digest) return; memwipe(digest, 0, sizeof(crypto_digest_t)); tor_free(digest); } /** Add len bytes from data to the digest object. */ void crypto_digest_add_bytes(crypto_digest_t *digest, const char *data, size_t len) { tor_assert(digest); tor_assert(data); /* Using the SHA*_*() calls directly means we don't support doing * SHA in hardware. But so far the delay of getting the question * to the hardware, and hearing the answer, is likely higher than * just doing it ourselves. Hashes are fast. */ switch (digest->algorithm) { case DIGEST_SHA1: SHA1_Update(&digest->d.sha1, (void*)data, len); break; case DIGEST_SHA256: SHA256_Update(&digest->d.sha2, (void*)data, len); break; default: tor_fragile_assert(); break; } } /** Compute the hash of the data that has been passed to the digest * object; write the first out_len bytes of the result to out. * out_len must be \<= DIGEST256_LEN. */ void crypto_digest_get_digest(crypto_digest_t *digest, char *out, size_t out_len) { unsigned char r[DIGEST256_LEN]; crypto_digest_t tmpenv; tor_assert(digest); tor_assert(out); /* memcpy into a temporary ctx, since SHA*_Final clears the context */ memcpy(&tmpenv, digest, sizeof(crypto_digest_t)); switch (digest->algorithm) { case DIGEST_SHA1: tor_assert(out_len <= DIGEST_LEN); SHA1_Final(r, &tmpenv.d.sha1); break; case DIGEST_SHA256: tor_assert(out_len <= DIGEST256_LEN); SHA256_Final(r, &tmpenv.d.sha2); break; default: log_warn(LD_BUG, "Called with unknown algorithm %d", digest->algorithm); /* If fragile_assert is not enabled, then we should at least not * leak anything. */ memwipe(r, 0xff, sizeof(r)); tor_fragile_assert(); break; } memcpy(out, r, out_len); memwipe(r, 0, sizeof(r)); } /** Allocate and return a new digest object with the same state as * digest */ crypto_digest_t * crypto_digest_dup(const crypto_digest_t *digest) { crypto_digest_t *r; tor_assert(digest); r = tor_malloc(sizeof(crypto_digest_t)); memcpy(r,digest,sizeof(crypto_digest_t)); return r; } /** Replace the state of the digest object into with the state * of the digest object from. */ void crypto_digest_assign(crypto_digest_t *into, const crypto_digest_t *from) { tor_assert(into); tor_assert(from); memcpy(into,from,sizeof(crypto_digest_t)); } /** Given a list of strings in lst, set the len_out-byte digest * at digest_out to the hash of the concatenation of those strings, * plus the optional string append, computed with the algorithm * alg. * out_len must be \<= DIGEST256_LEN. */ void crypto_digest_smartlist(char *digest_out, size_t len_out, const smartlist_t *lst, const char *append, digest_algorithm_t alg) { crypto_digest_smartlist_prefix(digest_out, len_out, NULL, lst, append, alg); } /** Given a list of strings in lst, set the len_out-byte digest * at digest_out to the hash of the concatenation of: the * optional string prepend, those strings, * and the optional string append, computed with the algorithm * alg. * out_len must be \<= DIGEST256_LEN. */ void crypto_digest_smartlist_prefix(char *digest_out, size_t len_out, const char *prepend, const smartlist_t *lst, const char *append, digest_algorithm_t alg) { crypto_digest_t *d; if (alg == DIGEST_SHA1) d = crypto_digest_new(); else d = crypto_digest256_new(alg); if (prepend) crypto_digest_add_bytes(d, prepend, strlen(prepend)); SMARTLIST_FOREACH(lst, const char *, cp, crypto_digest_add_bytes(d, cp, strlen(cp))); if (append) crypto_digest_add_bytes(d, append, strlen(append)); crypto_digest_get_digest(d, digest_out, len_out); crypto_digest_free(d); } /** Compute the HMAC-SHA-256 of the msg_len bytes in msg, using * the key of length key_len. Store the DIGEST256_LEN-byte * result in hmac_out. */ void crypto_hmac_sha256(char *hmac_out, const char *key, size_t key_len, const char *msg, size_t msg_len) { /* If we've got OpenSSL >=0.9.8 we can use its hmac implementation. */ tor_assert(key_len < INT_MAX); tor_assert(msg_len < INT_MAX); HMAC(EVP_sha256(), key, (int)key_len, (unsigned char*)msg, (int)msg_len, (unsigned char*)hmac_out, NULL); } /* DH */ /** Our DH 'g' parameter */ #define DH_GENERATOR 2 /** Shared P parameter for our circuit-crypto DH key exchanges. */ static BIGNUM *dh_param_p = NULL; /** Shared P parameter for our TLS DH key exchanges. */ static BIGNUM *dh_param_p_tls = NULL; /** Shared G parameter for our DH key exchanges. */ static BIGNUM *dh_param_g = NULL; /** Set the global TLS Diffie-Hellman modulus. Use the Apache mod_ssl DH * modulus. */ void crypto_set_tls_dh_prime(void) { BIGNUM *tls_prime = NULL; int r; /* If the space is occupied, free the previous TLS DH prime */ if (dh_param_p_tls) { BN_clear_free(dh_param_p_tls); dh_param_p_tls = NULL; } tls_prime = BN_new(); tor_assert(tls_prime); /* This is the 1024-bit safe prime that Apache uses for its DH stuff; see * modules/ssl/ssl_engine_dh.c; Apache also uses a generator of 2 with this * prime. */ r = BN_hex2bn(&tls_prime, "D67DE440CBBBDC1936D693D34AFD0AD50C84D239A45F520BB88174CB98" "BCE951849F912E639C72FB13B4B4D7177E16D55AC179BA420B2A29FE324A" "467A635E81FF5901377BEDDCFD33168A461AAD3B72DAE8860078045B07A7" "DBCA7874087D1510EA9FCC9DDD330507DD62DB88AEAA747DE0F4D6E2BD68" "B0E7393E0F24218EB3"); tor_assert(r); tor_assert(tls_prime); dh_param_p_tls = tls_prime; } /** Initialize dh_param_p and dh_param_g if they are not already * set. */ static void init_dh_param(void) { BIGNUM *circuit_dh_prime, *generator; int r; if (dh_param_p && dh_param_g) return; circuit_dh_prime = BN_new(); generator = BN_new(); tor_assert(circuit_dh_prime && generator); /* Set our generator for all DH parameters */ r = BN_set_word(generator, DH_GENERATOR); tor_assert(r); /* This is from rfc2409, section 6.2. It's a safe prime, and supposedly it equals: 2^1024 - 2^960 - 1 + 2^64 * { [2^894 pi] + 129093 }. */ r = BN_hex2bn(&circuit_dh_prime, "FFFFFFFFFFFFFFFFC90FDAA22168C234C4C6628B80DC1CD129024E08" "8A67CC74020BBEA63B139B22514A08798E3404DDEF9519B3CD3A431B" "302B0A6DF25F14374FE1356D6D51C245E485B576625E7EC6F44C42E9" "A637ED6B0BFF5CB6F406B7EDEE386BFB5A899FA5AE9F24117C4B1FE6" "49286651ECE65381FFFFFFFFFFFFFFFF"); tor_assert(r); /* Set the new values as the global DH parameters. */ dh_param_p = circuit_dh_prime; dh_param_g = generator; if (!dh_param_p_tls) { crypto_set_tls_dh_prime(); } } /** Number of bits to use when choosing the x or y value in a Diffie-Hellman * handshake. Since we exponentiate by this value, choosing a smaller one * lets our handhake go faster. */ #define DH_PRIVATE_KEY_BITS 320 /** Allocate and return a new DH object for a key exchange. */ crypto_dh_t * crypto_dh_new(int dh_type) { crypto_dh_t *res = tor_malloc_zero(sizeof(crypto_dh_t)); tor_assert(dh_type == DH_TYPE_CIRCUIT || dh_type == DH_TYPE_TLS || dh_type == DH_TYPE_REND); if (!dh_param_p) init_dh_param(); if (!(res->dh = DH_new())) goto err; if (dh_type == DH_TYPE_TLS) { if (!(res->dh->p = BN_dup(dh_param_p_tls))) goto err; } else { if (!(res->dh->p = BN_dup(dh_param_p))) goto err; } if (!(res->dh->g = BN_dup(dh_param_g))) goto err; res->dh->length = DH_PRIVATE_KEY_BITS; return res; err: crypto_log_errors(LOG_WARN, "creating DH object"); if (res->dh) DH_free(res->dh); /* frees p and g too */ tor_free(res); return NULL; } /** Return a copy of dh, sharing its internal state. */ crypto_dh_t * crypto_dh_dup(const crypto_dh_t *dh) { crypto_dh_t *dh_new = tor_malloc_zero(sizeof(crypto_dh_t)); tor_assert(dh); tor_assert(dh->dh); dh_new->dh = dh->dh; DH_up_ref(dh->dh); return dh_new; } /** Return the length of the DH key in dh, in bytes. */ int crypto_dh_get_bytes(crypto_dh_t *dh) { tor_assert(dh); return DH_size(dh->dh); } /** Generate \ for our part of the key exchange. Return 0 on * success, -1 on failure. */ int crypto_dh_generate_public(crypto_dh_t *dh) { again: if (!DH_generate_key(dh->dh)) { crypto_log_errors(LOG_WARN, "generating DH key"); return -1; } if (tor_check_dh_key(LOG_WARN, dh->dh->pub_key)<0) { log_warn(LD_CRYPTO, "Weird! Our own DH key was invalid. I guess once-in-" "the-universe chances really do happen. Trying again."); /* Free and clear the keys, so OpenSSL will actually try again. */ BN_clear_free(dh->dh->pub_key); BN_clear_free(dh->dh->priv_key); dh->dh->pub_key = dh->dh->priv_key = NULL; goto again; } return 0; } /** Generate g^x as necessary, and write the g^x for the key exchange * as a pubkey_len-byte value into pubkey. Return 0 on * success, -1 on failure. pubkey_len must be \>= DH_BYTES. */ int crypto_dh_get_public(crypto_dh_t *dh, char *pubkey, size_t pubkey_len) { int bytes; tor_assert(dh); if (!dh->dh->pub_key) { if (crypto_dh_generate_public(dh)<0) return -1; } tor_assert(dh->dh->pub_key); bytes = BN_num_bytes(dh->dh->pub_key); tor_assert(bytes >= 0); if (pubkey_len < (size_t)bytes) { log_warn(LD_CRYPTO, "Weird! pubkey_len (%d) was smaller than DH_BYTES (%d)", (int) pubkey_len, bytes); return -1; } memset(pubkey, 0, pubkey_len); BN_bn2bin(dh->dh->pub_key, (unsigned char*)(pubkey+(pubkey_len-bytes))); return 0; } /** Check for bad Diffie-Hellman public keys (g^x). Return 0 if the key is * okay (in the subgroup [2,p-2]), or -1 if it's bad. * See http://www.cl.cam.ac.uk/ftp/users/rja14/psandqs.ps.gz for some tips. */ static int tor_check_dh_key(int severity, BIGNUM *bn) { BIGNUM *x; char *s; tor_assert(bn); x = BN_new(); tor_assert(x); if (!dh_param_p) init_dh_param(); BN_set_word(x, 1); if (BN_cmp(bn,x)<=0) { log_fn(severity, LD_CRYPTO, "DH key must be at least 2."); goto err; } BN_copy(x,dh_param_p); BN_sub_word(x, 1); if (BN_cmp(bn,x)>=0) { log_fn(severity, LD_CRYPTO, "DH key must be at most p-2."); goto err; } BN_clear_free(x); return 0; err: BN_clear_free(x); s = BN_bn2hex(bn); log_fn(severity, LD_CRYPTO, "Rejecting insecure DH key [%s]", s); OPENSSL_free(s); return -1; } #undef MIN #define MIN(a,b) ((a)<(b)?(a):(b)) /** Given a DH key exchange object, and our peer's value of g^y (as a * pubkey_len-byte value in pubkey) generate * secret_bytes_out bytes of shared key material and write them * to secret_out. Return the number of bytes generated on success, * or -1 on failure. * * (We generate key material by computing * SHA1( g^xy || "\x00" ) || SHA1( g^xy || "\x01" ) || ... * where || is concatenation.) */ ssize_t crypto_dh_compute_secret(int severity, crypto_dh_t *dh, const char *pubkey, size_t pubkey_len, char *secret_out, size_t secret_bytes_out) { char *secret_tmp = NULL; BIGNUM *pubkey_bn = NULL; size_t secret_len=0, secret_tmp_len=0; int result=0; tor_assert(dh); tor_assert(secret_bytes_out/DIGEST_LEN <= 255); tor_assert(pubkey_len < INT_MAX); if (!(pubkey_bn = BN_bin2bn((const unsigned char*)pubkey, (int)pubkey_len, NULL))) goto error; if (tor_check_dh_key(severity, pubkey_bn)<0) { /* Check for invalid public keys. */ log_fn(severity, LD_CRYPTO,"Rejected invalid g^x"); goto error; } secret_tmp_len = crypto_dh_get_bytes(dh); secret_tmp = tor_malloc(secret_tmp_len); result = DH_compute_key((unsigned char*)secret_tmp, pubkey_bn, dh->dh); if (result < 0) { log_warn(LD_CRYPTO,"DH_compute_key() failed."); goto error; } secret_len = result; if (crypto_expand_key_material_TAP((uint8_t*)secret_tmp, secret_len, (uint8_t*)secret_out, secret_bytes_out)<0) goto error; secret_len = secret_bytes_out; goto done; error: result = -1; done: crypto_log_errors(LOG_WARN, "completing DH handshake"); if (pubkey_bn) BN_clear_free(pubkey_bn); if (secret_tmp) { memwipe(secret_tmp, 0, secret_tmp_len); tor_free(secret_tmp); } if (result < 0) return result; else return secret_len; } /** Given key_in_len bytes of negotiated randomness in key_in * ("K"), expand it into key_out_len bytes of negotiated key material in * key_out by taking the first key_out_len bytes of * H(K | [00]) | H(K | [01]) | .... * * This is the key expansion algorithm used in the "TAP" circuit extension * mechanism; it shouldn't be used for new protocols. * * Return 0 on success, -1 on failure. */ int crypto_expand_key_material_TAP(const uint8_t *key_in, size_t key_in_len, uint8_t *key_out, size_t key_out_len) { int i; uint8_t *cp, *tmp = tor_malloc(key_in_len+1); uint8_t digest[DIGEST_LEN]; /* If we try to get more than this amount of key data, we'll repeat blocks.*/ tor_assert(key_out_len <= DIGEST_LEN*256); memcpy(tmp, key_in, key_in_len); for (cp = key_out, i=0; cp < key_out+key_out_len; ++i, cp += DIGEST_LEN) { tmp[key_in_len] = i; if (crypto_digest((char*)digest, (const char *)tmp, key_in_len+1)) goto err; memcpy(cp, digest, MIN(DIGEST_LEN, key_out_len-(cp-key_out))); } memwipe(tmp, 0, key_in_len+1); tor_free(tmp); memwipe(digest, 0, sizeof(digest)); return 0; err: memwipe(tmp, 0, key_in_len+1); tor_free(tmp); memwipe(digest, 0, sizeof(digest)); return -1; } /** Expand some secret key material according to RFC5869, using SHA256 as the * underlying hash. The key_in_len bytes at key_in are the * secret key material; the salt_in_len bytes at salt_in and the * info_in_len bytes in info_in_len are the algorithm's "salt" * and "info" parameters respectively. On success, write key_out_len * bytes to key_out and return 0. On failure, return -1. */ int crypto_expand_key_material_rfc5869_sha256( const uint8_t *key_in, size_t key_in_len, const uint8_t *salt_in, size_t salt_in_len, const uint8_t *info_in, size_t info_in_len, uint8_t *key_out, size_t key_out_len) { uint8_t prk[DIGEST256_LEN]; uint8_t tmp[DIGEST256_LEN + 128 + 1]; uint8_t mac[DIGEST256_LEN]; int i; uint8_t *outp; size_t tmp_len; crypto_hmac_sha256((char*)prk, (const char*)salt_in, salt_in_len, (const char*)key_in, key_in_len); /* If we try to get more than this amount of key data, we'll repeat blocks.*/ tor_assert(key_out_len <= DIGEST256_LEN * 256); tor_assert(info_in_len <= 128); memset(tmp, 0, sizeof(tmp)); outp = key_out; i = 1; while (key_out_len) { size_t n; if (i > 1) { memcpy(tmp, mac, DIGEST256_LEN); memcpy(tmp+DIGEST256_LEN, info_in, info_in_len); tmp[DIGEST256_LEN+info_in_len] = i; tmp_len = DIGEST256_LEN + info_in_len + 1; } else { memcpy(tmp, info_in, info_in_len); tmp[info_in_len] = i; tmp_len = info_in_len + 1; } crypto_hmac_sha256((char*)mac, (const char*)prk, DIGEST256_LEN, (const char*)tmp, tmp_len); n = key_out_len < DIGEST256_LEN ? key_out_len : DIGEST256_LEN; memcpy(outp, mac, n); key_out_len -= n; outp += n; ++i; } memwipe(tmp, 0, sizeof(tmp)); memwipe(mac, 0, sizeof(mac)); return 0; } /** Free a DH key exchange object. */ void crypto_dh_free(crypto_dh_t *dh) { if (!dh) return; tor_assert(dh->dh); DH_free(dh->dh); tor_free(dh); } /* random numbers */ /** How many bytes of entropy we add at once. * * This is how much entropy OpenSSL likes to add right now, so maybe it will * work for us too. */ #define ADD_ENTROPY 32 /** Set the seed of the weak RNG to a random value. */ void crypto_seed_weak_rng(tor_weak_rng_t *rng) { unsigned seed; crypto_rand((void*)&seed, sizeof(seed)); tor_init_weak_random(rng, seed); } /** Try to get out_len bytes of the strongest entropy we can generate, * storing it into out. */ int crypto_strongest_rand(uint8_t *out, size_t out_len) { #ifdef _WIN32 static int provider_set = 0; static HCRYPTPROV provider; #else static const char *filenames[] = { "/dev/srandom", "/dev/urandom", "/dev/random", NULL }; int fd, i; size_t n; #endif #ifdef _WIN32 if (!provider_set) { if (!CryptAcquireContext(&provider, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT)) { log_warn(LD_CRYPTO, "Can't get CryptoAPI provider [1]"); return -1; } provider_set = 1; } if (!CryptGenRandom(provider, out_len, out)) { log_warn(LD_CRYPTO, "Can't get entropy from CryptoAPI."); return -1; } return 0; #else for (i = 0; filenames[i]; ++i) { log_debug(LD_FS, "Opening %s for entropy", filenames[i]); fd = open(sandbox_intern_string(filenames[i]), O_RDONLY, 0); if (fd<0) continue; log_info(LD_CRYPTO, "Reading entropy from \"%s\"", filenames[i]); n = read_all(fd, (char*)out, out_len, 0); close(fd); if (n != out_len) { log_warn(LD_CRYPTO, "Error reading from entropy source (read only %lu bytes).", (unsigned long)n); return -1; } return 0; } log_warn(LD_CRYPTO, "Cannot get strong entropy: no entropy source found."); return -1; #endif } /** Seed OpenSSL's random number generator with bytes from the operating * system. startup should be true iff we have just started Tor and * have not yet allocated a bunch of fds. Return 0 on success, -1 on failure. */ int crypto_seed_rng(void) { int rand_poll_ok = 0, load_entropy_ok = 0; uint8_t buf[ADD_ENTROPY]; /* OpenSSL has a RAND_poll function that knows about more kinds of * entropy than we do. We'll try calling that, *and* calling our own entropy * functions. If one succeeds, we'll accept the RNG as seeded. */ rand_poll_ok = RAND_poll(); if (rand_poll_ok == 0) log_warn(LD_CRYPTO, "RAND_poll() failed."); load_entropy_ok = !crypto_strongest_rand(buf, sizeof(buf)); if (load_entropy_ok) { RAND_seed(buf, sizeof(buf)); } memwipe(buf, 0, sizeof(buf)); if (rand_poll_ok || load_entropy_ok) return 0; else return -1; } /** Write n bytes of strong random data to to. Return 0 on * success, -1 on failure, with support for mocking for unit tests. */ MOCK_IMPL(int, crypto_rand, (char *to, size_t n)) { return crypto_rand_unmocked(to, n); } /** Write n bytes of strong random data to to. Return 0 on * success, -1 on failure. Most callers will want crypto_rand instead. */ int crypto_rand_unmocked(char *to, size_t n) { int r; tor_assert(n < INT_MAX); tor_assert(to); r = RAND_bytes((unsigned char*)to, (int)n); if (r == 0) crypto_log_errors(LOG_WARN, "generating random data"); return (r == 1) ? 0 : -1; } /** Return a pseudorandom integer, chosen uniformly from the values * between 0 and max-1 inclusive. max must be between 1 and * INT_MAX+1, inclusive. */ int crypto_rand_int(unsigned int max) { unsigned int val; unsigned int cutoff; tor_assert(max <= ((unsigned int)INT_MAX)+1); tor_assert(max > 0); /* don't div by 0 */ /* We ignore any values that are >= 'cutoff,' to avoid biasing the * distribution with clipping at the upper end of unsigned int's * range. */ cutoff = UINT_MAX - (UINT_MAX%max); while (1) { crypto_rand((char*)&val, sizeof(val)); if (val < cutoff) return val % max; } } /** Return a pseudorandom integer, chosen uniformly from the values i * such that min <= i < max. * * min MUST be in range [0, max). * max MUST be in range (min, INT_MAX]. */ int crypto_rand_int_range(unsigned int min, unsigned int max) { tor_assert(min < max); tor_assert(max <= INT_MAX); /* The overflow is avoided here because crypto_rand_int() returns a value * between 0 and (max - min) inclusive. */ return min + crypto_rand_int(max - min); } /** As crypto_rand_int_range, but supports uint64_t. */ uint64_t crypto_rand_uint64_range(uint64_t min, uint64_t max) { tor_assert(min < max); return min + crypto_rand_uint64(max - min); } /** As crypto_rand_int_range, but supports time_t. */ time_t crypto_rand_time_range(time_t min, time_t max) { tor_assert(min < max); return min + (time_t)crypto_rand_uint64(max - min); } /** Return a pseudorandom 64-bit integer, chosen uniformly from the values * between 0 and max-1 inclusive. */ uint64_t crypto_rand_uint64(uint64_t max) { uint64_t val; uint64_t cutoff; tor_assert(max < UINT64_MAX); tor_assert(max > 0); /* don't div by 0 */ /* We ignore any values that are >= 'cutoff,' to avoid biasing the * distribution with clipping at the upper end of unsigned int's * range. */ cutoff = UINT64_MAX - (UINT64_MAX%max); while (1) { crypto_rand((char*)&val, sizeof(val)); if (val < cutoff) return val % max; } } /** Return a pseudorandom double d, chosen uniformly from the range * 0.0 <= d < 1.0. */ double crypto_rand_double(void) { /* We just use an unsigned int here; we don't really care about getting * more than 32 bits of resolution */ unsigned int uint; crypto_rand((char*)&uint, sizeof(uint)); #if SIZEOF_INT == 4 #define UINT_MAX_AS_DOUBLE 4294967296.0 #elif SIZEOF_INT == 8 #define UINT_MAX_AS_DOUBLE 1.8446744073709552e+19 #else #error SIZEOF_INT is neither 4 nor 8 #endif return ((double)uint) / UINT_MAX_AS_DOUBLE; } /** Generate and return a new random hostname starting with prefix, * ending with suffix, and containing no fewer than * min_rand_len and no more than max_rand_len random base32 * characters between. * * Clip max_rand_len to MAX_DNS_LABEL_SIZE. **/ char * crypto_random_hostname(int min_rand_len, int max_rand_len, const char *prefix, const char *suffix) { char *result, *rand_bytes; int randlen, rand_bytes_len; size_t resultlen, prefixlen; if (max_rand_len > MAX_DNS_LABEL_SIZE) max_rand_len = MAX_DNS_LABEL_SIZE; if (min_rand_len > max_rand_len) min_rand_len = max_rand_len; randlen = crypto_rand_int_range(min_rand_len, max_rand_len+1); prefixlen = strlen(prefix); resultlen = prefixlen + strlen(suffix) + randlen + 16; rand_bytes_len = ((randlen*5)+7)/8; if (rand_bytes_len % 5) rand_bytes_len += 5 - (rand_bytes_len%5); rand_bytes = tor_malloc(rand_bytes_len); crypto_rand(rand_bytes, rand_bytes_len); result = tor_malloc(resultlen); memcpy(result, prefix, prefixlen); base32_encode(result+prefixlen, resultlen-prefixlen, rand_bytes, rand_bytes_len); tor_free(rand_bytes); strlcpy(result+prefixlen+randlen, suffix, resultlen-(prefixlen+randlen)); return result; } /** Return a randomly chosen element of sl; or NULL if sl * is empty. */ void * smartlist_choose(const smartlist_t *sl) { int len = smartlist_len(sl); if (len) return smartlist_get(sl,crypto_rand_int(len)); return NULL; /* no elements to choose from */ } /** Scramble the elements of sl into a random order. */ void smartlist_shuffle(smartlist_t *sl) { int i; /* From the end of the list to the front, choose at random from the positions we haven't looked at yet, and swap that position into the current position. Remember to give "no swap" the same probability as any other swap. */ for (i = smartlist_len(sl)-1; i > 0; --i) { int j = crypto_rand_int(i+1); smartlist_swap(sl, i, j); } } /** * Destroy the sz bytes of data stored at mem, setting them to * the value byte. * * This function is preferable to memset, since many compilers will happily * optimize out memset() when they can convince themselves that the data being * cleared will never be read. * * Right now, our convention is to use this function when we are wiping data * that's about to become inaccessible, such as stack buffers that are about * to go out of scope or structures that are about to get freed. (In * practice, it appears that the compilers we're currently using will optimize * out the memset()s for stack-allocated buffers, but not those for * about-to-be-freed structures. That could change, though, so we're being * wary.) If there are live reads for the data, then you can just use * memset(). */ void memwipe(void *mem, uint8_t byte, size_t sz) { /* Because whole-program-optimization exists, we may not be able to just * have this function call "memset". A smart compiler could inline it, then * eliminate dead memsets, and declare itself to be clever. */ /* This is a slow and ugly function from OpenSSL that fills 'mem' with junk * based on the pointer value, then uses that junk to update a global * variable. It's an elaborate ruse to trick the compiler into not * optimizing out the "wipe this memory" code. Read it if you like zany * programming tricks! In later versions of Tor, we should look for better * not-optimized-out memory wiping stuff. */ OPENSSL_cleanse(mem, sz); /* Just in case some caller of memwipe() is relying on getting a buffer * filled with a particular value, fill the buffer. * * If this function gets inlined, this memset might get eliminated, but * that's okay: We only care about this particular memset in the case where * the caller should have been using memset(), and the memset() wouldn't get * eliminated. In other words, this is here so that we won't break anything * if somebody accidentally calls memwipe() instead of memset(). **/ memset(mem, byte, sz); } #ifndef OPENSSL_THREADS #error OpenSSL has been built without thread support. Tor requires an \ OpenSSL library with thread support enabled. #endif /** Helper: OpenSSL uses this callback to manipulate mutexes. */ static void openssl_locking_cb_(int mode, int n, const char *file, int line) { (void)file; (void)line; if (!openssl_mutexes_) /* This is not a really good fix for the * "release-freed-lock-from-separate-thread-on-shutdown" problem, but * it can't hurt. */ return; if (mode & CRYPTO_LOCK) tor_mutex_acquire(openssl_mutexes_[n]); else tor_mutex_release(openssl_mutexes_[n]); } /** OpenSSL helper type: wraps a Tor mutex so that OpenSSL can use it * as a lock. */ struct CRYPTO_dynlock_value { tor_mutex_t *lock; }; /** OpenSSL callback function to allocate a lock: see CRYPTO_set_dynlock_* * documentation in OpenSSL's docs for more info. */ static struct CRYPTO_dynlock_value * openssl_dynlock_create_cb_(const char *file, int line) { struct CRYPTO_dynlock_value *v; (void)file; (void)line; v = tor_malloc(sizeof(struct CRYPTO_dynlock_value)); v->lock = tor_mutex_new(); return v; } /** OpenSSL callback function to acquire or release a lock: see * CRYPTO_set_dynlock_* documentation in OpenSSL's docs for more info. */ static void openssl_dynlock_lock_cb_(int mode, struct CRYPTO_dynlock_value *v, const char *file, int line) { (void)file; (void)line; if (mode & CRYPTO_LOCK) tor_mutex_acquire(v->lock); else tor_mutex_release(v->lock); } /** OpenSSL callback function to free a lock: see CRYPTO_set_dynlock_* * documentation in OpenSSL's docs for more info. */ static void openssl_dynlock_destroy_cb_(struct CRYPTO_dynlock_value *v, const char *file, int line) { (void)file; (void)line; tor_mutex_free(v->lock); tor_free(v); } static void tor_set_openssl_thread_id(CRYPTO_THREADID *threadid) { CRYPTO_THREADID_set_numeric(threadid, tor_get_thread_id()); } /** @{ */ /** Helper: Construct mutexes, and set callbacks to help OpenSSL handle being * multithreaded. */ static int setup_openssl_threading(void) { int i; int n = CRYPTO_num_locks(); n_openssl_mutexes_ = n; openssl_mutexes_ = tor_calloc(n, sizeof(tor_mutex_t *)); for (i=0; i < n; ++i) openssl_mutexes_[i] = tor_mutex_new(); CRYPTO_set_locking_callback(openssl_locking_cb_); CRYPTO_THREADID_set_callback(tor_set_openssl_thread_id); CRYPTO_set_dynlock_create_callback(openssl_dynlock_create_cb_); CRYPTO_set_dynlock_lock_callback(openssl_dynlock_lock_cb_); CRYPTO_set_dynlock_destroy_callback(openssl_dynlock_destroy_cb_); return 0; } /** Uninitialize the crypto library. Return 0 on success, -1 on failure. */ int crypto_global_cleanup(void) { EVP_cleanup(); #if OPENSSL_VERSION_NUMBER >= OPENSSL_V_SERIES(1,1,0) ERR_remove_thread_state(NULL); #else ERR_remove_state(0); #endif ERR_free_strings(); if (dh_param_p) BN_clear_free(dh_param_p); if (dh_param_p_tls) BN_clear_free(dh_param_p_tls); if (dh_param_g) BN_clear_free(dh_param_g); #ifndef DISABLE_ENGINES ENGINE_cleanup(); #endif CONF_modules_unload(1); CRYPTO_cleanup_all_ex_data(); if (n_openssl_mutexes_) { int n = n_openssl_mutexes_; tor_mutex_t **ms = openssl_mutexes_; int i; openssl_mutexes_ = NULL; n_openssl_mutexes_ = 0; for (i=0;i #include #endif #include "torint.h" #include "testsupport.h" #ifdef HAVE_SYS_PARAM_H #include #endif #ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_TIME_H #include #endif #ifdef HAVE_TIME_H #include #endif #ifdef HAVE_STRING_H #include #endif #include #ifdef HAVE_SYS_RESOURCE_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif #ifdef HAVE_NETINET6_IN6_H #include #endif #include #include #ifndef NULL_REP_IS_ZERO_BYTES #error "It seems your platform does not represent NULL as zero. We can't cope." #endif #ifndef DOUBLE_0_REP_IS_ZERO_BYTES #error "It seems your platform does not represent 0.0 as zeros. We can't cope." #endif #if 'a'!=97 || 'z'!=122 || 'A'!=65 || ' '!=32 #error "It seems that you encode characters in something other than ASCII." #endif /* ===== Compiler compatibility */ /* GCC can check printf and scanf types on arbitrary functions. */ #ifdef __GNUC__ #define CHECK_PRINTF(formatIdx, firstArg) \ __attribute__ ((format(printf, formatIdx, firstArg))) #else #define CHECK_PRINTF(formatIdx, firstArg) #endif #ifdef __GNUC__ #define CHECK_SCANF(formatIdx, firstArg) \ __attribute__ ((format(scanf, formatIdx, firstArg))) #else #define CHECK_SCANF(formatIdx, firstArg) #endif /* inline is __inline on windows. */ #ifdef _WIN32 #define INLINE __inline #else #define INLINE inline #endif /* Try to get a reasonable __func__ substitute in place. */ #if defined(_MSC_VER) #define __func__ __FUNCTION__ #else /* For platforms where autoconf works, make sure __func__ is defined * sanely. */ #ifndef HAVE_MACRO__func__ #ifdef HAVE_MACRO__FUNCTION__ #define __func__ __FUNCTION__ #elif HAVE_MACRO__FUNC__ #define __func__ __FUNC__ #else #define __func__ "???" #endif #endif /* ifndef MAVE_MACRO__func__ */ #endif /* if not windows */ #define U64_TO_DBL(x) ((double) (x)) #define DBL_TO_U64(x) ((uint64_t) (x)) #ifdef ENUM_VALS_ARE_SIGNED #define ENUM_BF(t) unsigned #else /** Wrapper for having a bitfield of an enumerated type. Where possible, we * just use the enumerated type (so the compiler can help us and notice * problems), but if enumerated types are unsigned, we must use unsigned, * so that the loss of precision doesn't make large values negative. */ #define ENUM_BF(t) t #endif /* GCC has several useful attributes. */ #if defined(__GNUC__) && __GNUC__ >= 3 #define ATTR_NORETURN __attribute__((noreturn)) #define ATTR_CONST __attribute__((const)) #define ATTR_MALLOC __attribute__((malloc)) #define ATTR_NORETURN __attribute__((noreturn)) /* Alas, nonnull is not at present a good idea for us. We'd like to get * warnings when we pass NULL where we shouldn't (which nonnull does, albeit * spottily), but we don't want to tell the compiler to make optimizations * with the assumption that the argument can't be NULL (since this would make * many of our checks go away, and make our code less robust against * programming errors). Unfortunately, nonnull currently does both of these * things, and there's no good way to split them up. * * #define ATTR_NONNULL(x) __attribute__((nonnull x)) */ #define ATTR_NONNULL(x) #define ATTR_UNUSED __attribute__ ((unused)) /** Macro: Evaluates to exp and hints the compiler that the value * of exp will probably be true. * * In other words, "if (PREDICT_LIKELY(foo))" is the same as "if (foo)", * except that it tells the compiler that the branch will be taken most of the * time. This can generate slightly better code with some CPUs. */ #define PREDICT_LIKELY(exp) __builtin_expect(!!(exp), 1) /** Macro: Evaluates to exp and hints the compiler that the value * of exp will probably be false. * * In other words, "if (PREDICT_UNLIKELY(foo))" is the same as "if (foo)", * except that it tells the compiler that the branch will usually not be * taken. This can generate slightly better code with some CPUs. */ #define PREDICT_UNLIKELY(exp) __builtin_expect(!!(exp), 0) #else #define ATTR_NORETURN #define ATTR_CONST #define ATTR_MALLOC #define ATTR_NORETURN #define ATTR_NONNULL(x) #define ATTR_UNUSED #define PREDICT_LIKELY(exp) (exp) #define PREDICT_UNLIKELY(exp) (exp) #endif /** Expands to a syntactically valid empty statement. */ #define STMT_NIL (void)0 /** Expands to a syntactically valid empty statement, explicitly (void)ing its * argument. */ #define STMT_VOID(a) while (0) { (void)(a); } #ifdef __GNUC__ /** STMT_BEGIN and STMT_END are used to wrap blocks inside macros so that * the macro can be used as if it were a single C statement. */ #define STMT_BEGIN (void) ({ #define STMT_END }) #elif defined(sun) || defined(__sun__) #define STMT_BEGIN if (1) { #define STMT_END } else STMT_NIL #else #define STMT_BEGIN do { #define STMT_END } while (0) #endif /* Some tools (like coccinelle) don't like to see operators as macro * arguments. */ #define OP_LT < #define OP_GT > #define OP_GE >= #define OP_LE <= #define OP_EQ == #define OP_NE != /* ===== String compatibility */ #ifdef _WIN32 /* Windows names string functions differently from most other platforms. */ #define strncasecmp _strnicmp #define strcasecmp _stricmp #endif #if defined __APPLE__ /* On OSX 10.9 and later, the overlap-checking code for strlcat would * appear to have a severe bug that can sometimes cause aborts in Tor. * Instead, use the non-checking variants. This is sad. * * See https://trac.torproject.org/projects/tor/ticket/15205 */ #undef strlcat #undef strlcpy #endif #ifndef HAVE_STRLCAT size_t strlcat(char *dst, const char *src, size_t siz) ATTR_NONNULL((1,2)); #endif #ifndef HAVE_STRLCPY size_t strlcpy(char *dst, const char *src, size_t siz) ATTR_NONNULL((1,2)); #endif #ifdef _MSC_VER /** Casts the uint64_t value in a to the right type for an argument * to printf. */ #define U64_PRINTF_ARG(a) (a) /** Casts the uint64_t* value in a to the right type for an argument * to scanf. */ #define U64_SCANF_ARG(a) (a) /** Expands to a literal uint64_t-typed constant for the value n. */ #define U64_LITERAL(n) (n ## ui64) #define I64_PRINTF_ARG(a) (a) #define I64_SCANF_ARG(a) (a) #define I64_LITERAL(n) (n ## i64) #else #define U64_PRINTF_ARG(a) ((long long unsigned int)(a)) #define U64_SCANF_ARG(a) ((long long unsigned int*)(a)) #define U64_LITERAL(n) (n ## llu) #define I64_PRINTF_ARG(a) ((long long signed int)(a)) #define I64_SCANF_ARG(a) ((long long signed int*)(a)) #define I64_LITERAL(n) (n ## ll) #endif #if defined(_MSC_VER) || defined(__MINGW32__) || defined(__MINGW64__) /** The formatting string used to put a uint64_t value in a printf() or * scanf() function. See also U64_PRINTF_ARG and U64_SCANF_ARG. */ #define U64_FORMAT "%I64u" #define I64_FORMAT "%I64d" #else #define U64_FORMAT "%llu" #define I64_FORMAT "%lld" #endif #if (SIZEOF_INTPTR_T == SIZEOF_INT) #define INTPTR_T_FORMAT "%d" #define INTPTR_PRINTF_ARG(x) ((int)(x)) #elif (SIZEOF_INTPTR_T == SIZEOF_LONG) #define INTPTR_T_FORMAT "%ld" #define INTPTR_PRINTF_ARG(x) ((long)(x)) #elif (SIZEOF_INTPTR_T == 8) #define INTPTR_T_FORMAT I64_FORMAT #define INTPTR_PRINTF_ARG(x) I64_PRINTF_ARG(x) #else #error Unknown: SIZEOF_INTPTR_T #endif /** Represents an mmaped file. Allocated via tor_mmap_file; freed with * tor_munmap_file. */ typedef struct tor_mmap_t { const char *data; /**< Mapping of the file's contents. */ size_t size; /**< Size of the file. */ /* None of the fields below should be accessed from outside compat.c */ #ifdef HAVE_SYS_MMAN_H size_t mapping_size; /**< Size of the actual mapping. (This is this file * size, rounded up to the nearest page.) */ #elif defined _WIN32 HANDLE mmap_handle; #endif } tor_mmap_t; tor_mmap_t *tor_mmap_file(const char *filename) ATTR_NONNULL((1)); int tor_munmap_file(tor_mmap_t *handle) ATTR_NONNULL((1)); int tor_snprintf(char *str, size_t size, const char *format, ...) CHECK_PRINTF(3,4) ATTR_NONNULL((1,3)); int tor_vsnprintf(char *str, size_t size, const char *format, va_list args) CHECK_PRINTF(3,0) ATTR_NONNULL((1,3)); int tor_asprintf(char **strp, const char *fmt, ...) CHECK_PRINTF(2,3); int tor_vasprintf(char **strp, const char *fmt, va_list args) CHECK_PRINTF(2,0); const void *tor_memmem(const void *haystack, size_t hlen, const void *needle, size_t nlen) ATTR_NONNULL((1,3)); static const void *tor_memstr(const void *haystack, size_t hlen, const char *needle) ATTR_NONNULL((1,3)); static INLINE const void * tor_memstr(const void *haystack, size_t hlen, const char *needle) { return tor_memmem(haystack, hlen, needle, strlen(needle)); } /* Much of the time when we're checking ctypes, we're doing spec compliance, * which all assumes we're doing ASCII. */ #define DECLARE_CTYPE_FN(name) \ static int TOR_##name(char c); \ extern const uint32_t TOR_##name##_TABLE[]; \ static INLINE int TOR_##name(char c) { \ uint8_t u = c; \ return !!(TOR_##name##_TABLE[(u >> 5) & 7] & (1u << (u & 31))); \ } DECLARE_CTYPE_FN(ISALPHA) DECLARE_CTYPE_FN(ISALNUM) DECLARE_CTYPE_FN(ISSPACE) DECLARE_CTYPE_FN(ISDIGIT) DECLARE_CTYPE_FN(ISXDIGIT) DECLARE_CTYPE_FN(ISPRINT) DECLARE_CTYPE_FN(ISLOWER) DECLARE_CTYPE_FN(ISUPPER) extern const char TOR_TOUPPER_TABLE[]; extern const char TOR_TOLOWER_TABLE[]; #define TOR_TOLOWER(c) (TOR_TOLOWER_TABLE[(uint8_t)c]) #define TOR_TOUPPER(c) (TOR_TOUPPER_TABLE[(uint8_t)c]) char *tor_strtok_r_impl(char *str, const char *sep, char **lasts); #ifdef HAVE_STRTOK_R #define tor_strtok_r(str, sep, lasts) strtok_r(str, sep, lasts) #else #define tor_strtok_r(str, sep, lasts) tor_strtok_r_impl(str, sep, lasts) #endif #ifdef _WIN32 #define SHORT_FILE__ (tor_fix_source_file(__FILE__)) const char *tor_fix_source_file(const char *fname); #else #define SHORT_FILE__ (__FILE__) #define tor_fix_source_file(s) (s) #endif /* ===== Time compatibility */ #if !defined(HAVE_GETTIMEOFDAY) && !defined(HAVE_STRUCT_TIMEVAL_TV_SEC) /** Implementation of timeval for platforms that don't have it. */ struct timeval { time_t tv_sec; unsigned int tv_usec; }; #endif void tor_gettimeofday(struct timeval *timeval); struct tm *tor_localtime_r(const time_t *timep, struct tm *result); struct tm *tor_gmtime_r(const time_t *timep, struct tm *result); #ifndef timeradd /** Replacement for timeradd on platforms that do not have it: sets tvout to * the sum of tv1 and tv2. */ #define timeradd(tv1,tv2,tvout) \ do { \ (tvout)->tv_sec = (tv1)->tv_sec + (tv2)->tv_sec; \ (tvout)->tv_usec = (tv1)->tv_usec + (tv2)->tv_usec; \ if ((tvout)->tv_usec >= 1000000) { \ (tvout)->tv_usec -= 1000000; \ (tvout)->tv_sec++; \ } \ } while (0) #endif #ifndef timersub /** Replacement for timersub on platforms that do not have it: sets tvout to * tv1 minus tv2. */ #define timersub(tv1,tv2,tvout) \ do { \ (tvout)->tv_sec = (tv1)->tv_sec - (tv2)->tv_sec; \ (tvout)->tv_usec = (tv1)->tv_usec - (tv2)->tv_usec; \ if ((tvout)->tv_usec < 0) { \ (tvout)->tv_usec += 1000000; \ (tvout)->tv_sec--; \ } \ } while (0) #endif #ifndef timercmp /** Replacement for timersub on platforms that do not have it: returns true * iff the relational operator "op" makes the expression tv1 op tv2 true. * * Note that while this definition should work for all boolean opeators, some * platforms' native timercmp definitions do not support >=, <=, or ==. So * don't use those. */ #define timercmp(tv1,tv2,op) \ (((tv1)->tv_sec == (tv2)->tv_sec) ? \ ((tv1)->tv_usec op (tv2)->tv_usec) : \ ((tv1)->tv_sec op (tv2)->tv_sec)) #endif /* ===== File compatibility */ int tor_open_cloexec(const char *path, int flags, unsigned mode); FILE *tor_fopen_cloexec(const char *path, const char *mode); int tor_rename(const char *path_old, const char *path_new); int replace_file(const char *from, const char *to); int touch_file(const char *fname); typedef struct tor_lockfile_t tor_lockfile_t; tor_lockfile_t *tor_lockfile_lock(const char *filename, int blocking, int *locked_out); void tor_lockfile_unlock(tor_lockfile_t *lockfile); off_t tor_fd_getpos(int fd); int tor_fd_setpos(int fd, off_t pos); int tor_fd_seekend(int fd); int tor_ftruncate(int fd); int64_t tor_get_avail_disk_space(const char *path); #ifdef _WIN32 #define PATH_SEPARATOR "\\" #else #define PATH_SEPARATOR "/" #endif /* ===== Net compatibility */ #if (SIZEOF_SOCKLEN_T == 0) typedef int socklen_t; #endif #ifdef _WIN32 /* XXX Actually, this should arguably be SOCKET; we use intptr_t here so that * any inadvertant checks for the socket being <= 0 or > 0 will probably * still work. */ #define tor_socket_t intptr_t #define TOR_SOCKET_T_FORMAT INTPTR_T_FORMAT #define SOCKET_OK(s) ((SOCKET)(s) != INVALID_SOCKET) #define TOR_INVALID_SOCKET INVALID_SOCKET #else /** Type used for a network socket. */ #define tor_socket_t int #define TOR_SOCKET_T_FORMAT "%d" /** Macro: true iff 's' is a possible value for a valid initialized socket. */ #define SOCKET_OK(s) ((s) >= 0) /** Error/uninitialized value for a tor_socket_t. */ #define TOR_INVALID_SOCKET (-1) #endif int tor_close_socket_simple(tor_socket_t s); int tor_close_socket(tor_socket_t s); tor_socket_t tor_open_socket_with_extensions( int domain, int type, int protocol, int cloexec, int nonblock); MOCK_DECL(tor_socket_t, tor_open_socket,(int domain, int type, int protocol)); tor_socket_t tor_open_socket_nonblocking(int domain, int type, int protocol); tor_socket_t tor_accept_socket(tor_socket_t sockfd, struct sockaddr *addr, socklen_t *len); tor_socket_t tor_accept_socket_nonblocking(tor_socket_t sockfd, struct sockaddr *addr, socklen_t *len); tor_socket_t tor_accept_socket_with_extensions(tor_socket_t sockfd, struct sockaddr *addr, socklen_t *len, int cloexec, int nonblock); MOCK_DECL(tor_socket_t, tor_connect_socket,(tor_socket_t socket,const struct sockaddr *address, socklen_t address_len)); int get_n_open_sockets(void); MOCK_DECL(int, tor_getsockname,(tor_socket_t socket, struct sockaddr *address, socklen_t *address_len)); #define tor_socket_send(s, buf, len, flags) send(s, buf, len, flags) #define tor_socket_recv(s, buf, len, flags) recv(s, buf, len, flags) /** Implementation of struct in6_addr for platforms that do not have it. * Generally, these platforms are ones without IPv6 support, but we want to * have a working in6_addr there anyway, so we can use it to parse IPv6 * addresses. */ #if !defined(HAVE_STRUCT_IN6_ADDR) struct in6_addr { union { uint8_t u6_addr8[16]; uint16_t u6_addr16[8]; uint32_t u6_addr32[4]; } in6_u; #define s6_addr in6_u.u6_addr8 #define s6_addr16 in6_u.u6_addr16 #define s6_addr32 in6_u.u6_addr32 }; #endif /** @{ */ /** Many BSD variants seem not to define these. */ #if defined(__APPLE__) || defined(__darwin__) || defined(__FreeBSD__) \ || defined(__NetBSD__) || defined(__OpenBSD__) #ifndef s6_addr16 #define s6_addr16 __u6_addr.__u6_addr16 #endif #ifndef s6_addr32 #define s6_addr32 __u6_addr.__u6_addr32 #endif #endif /** @} */ #ifndef HAVE_SA_FAMILY_T typedef uint16_t sa_family_t; #endif /** @{ */ /** Apparently, MS and Solaris don't define s6_addr16 or s6_addr32; these * macros get you a pointer to s6_addr32 or local equivalent. */ #ifdef HAVE_STRUCT_IN6_ADDR_S6_ADDR32 #define S6_ADDR32(x) ((uint32_t*)(x).s6_addr32) #else #define S6_ADDR32(x) ((uint32_t*)((char*)&(x).s6_addr)) #endif #ifdef HAVE_STRUCT_IN6_ADDR_S6_ADDR16 #define S6_ADDR16(x) ((uint16_t*)(x).s6_addr16) #else #define S6_ADDR16(x) ((uint16_t*)((char*)&(x).s6_addr)) #endif /** @} */ /** Implementation of struct sockaddr_in6 on platforms that do not have * it. See notes on struct in6_addr. */ #if !defined(HAVE_STRUCT_SOCKADDR_IN6) struct sockaddr_in6 { sa_family_t sin6_family; uint16_t sin6_port; // uint32_t sin6_flowinfo; struct in6_addr sin6_addr; // uint32_t sin6_scope_id; }; #endif MOCK_DECL(int,tor_gethostname,(char *name, size_t namelen)); int tor_inet_aton(const char *cp, struct in_addr *addr) ATTR_NONNULL((1,2)); const char *tor_inet_ntop(int af, const void *src, char *dst, size_t len); int tor_inet_pton(int af, const char *src, void *dst); MOCK_DECL(int,tor_lookup_hostname,(const char *name, uint32_t *addr)); int set_socket_nonblocking(tor_socket_t socket); int tor_socketpair(int family, int type, int protocol, tor_socket_t fd[2]); int network_init(void); /* For stupid historical reasons, windows sockets have an independent * set of errnos, and an independent way to get them. Also, you can't * always believe WSAEWOULDBLOCK. Use the macros below to compare * errnos against expected values, and use tor_socket_errno to find * the actual errno after a socket operation fails. */ #if defined(_WIN32) /** Expands to WSAe on Windows, and to e elsewhere. */ #define SOCK_ERRNO(e) WSA##e /** Return true if e is EAGAIN or the local equivalent. */ #define ERRNO_IS_EAGAIN(e) ((e) == EAGAIN || (e) == WSAEWOULDBLOCK) /** Return true if e is EINPROGRESS or the local equivalent. */ #define ERRNO_IS_EINPROGRESS(e) ((e) == WSAEINPROGRESS) /** Return true if e is EINPROGRESS or the local equivalent as returned by * a call to connect(). */ #define ERRNO_IS_CONN_EINPROGRESS(e) \ ((e) == WSAEINPROGRESS || (e)== WSAEINVAL || (e) == WSAEWOULDBLOCK) /** Return true if e is EAGAIN or another error indicating that a call to * accept() has no pending connections to return. */ #define ERRNO_IS_ACCEPT_EAGAIN(e) ERRNO_IS_EAGAIN(e) /** Return true if e is EMFILE or another error indicating that a call to * accept() has failed because we're out of fds or something. */ #define ERRNO_IS_RESOURCE_LIMIT(e) \ ((e) == WSAEMFILE || (e) == WSAENOBUFS) /** Return true if e is EADDRINUSE or the local equivalent. */ #define ERRNO_IS_EADDRINUSE(e) ((e) == WSAEADDRINUSE) /** Return true if e is EINTR or the local equivalent */ #define ERRNO_IS_EINTR(e) ((e) == WSAEINTR || 0) int tor_socket_errno(tor_socket_t sock); const char *tor_socket_strerror(int e); #else #define SOCK_ERRNO(e) e #if EAGAIN == EWOULDBLOCK /* || 0 is for -Wparentheses-equality (-Wall?) appeasement under clang */ #define ERRNO_IS_EAGAIN(e) ((e) == EAGAIN || 0) #else #define ERRNO_IS_EAGAIN(e) ((e) == EAGAIN || (e) == EWOULDBLOCK) #endif #define ERRNO_IS_EINTR(e) ((e) == EINTR || 0) #define ERRNO_IS_EINPROGRESS(e) ((e) == EINPROGRESS || 0) #define ERRNO_IS_CONN_EINPROGRESS(e) ((e) == EINPROGRESS || 0) #define ERRNO_IS_ACCEPT_EAGAIN(e) \ (ERRNO_IS_EAGAIN(e) || (e) == ECONNABORTED) #define ERRNO_IS_RESOURCE_LIMIT(e) \ ((e) == EMFILE || (e) == ENFILE || (e) == ENOBUFS || (e) == ENOMEM) #define ERRNO_IS_EADDRINUSE(e) (((e) == EADDRINUSE) || 0) #define tor_socket_errno(sock) (errno) #define tor_socket_strerror(e) strerror(e) #endif /** Specified SOCKS5 status codes. */ typedef enum { SOCKS5_SUCCEEDED = 0x00, SOCKS5_GENERAL_ERROR = 0x01, SOCKS5_NOT_ALLOWED = 0x02, SOCKS5_NET_UNREACHABLE = 0x03, SOCKS5_HOST_UNREACHABLE = 0x04, SOCKS5_CONNECTION_REFUSED = 0x05, SOCKS5_TTL_EXPIRED = 0x06, SOCKS5_COMMAND_NOT_SUPPORTED = 0x07, SOCKS5_ADDRESS_TYPE_NOT_SUPPORTED = 0x08, } socks5_reply_status_t; /* ===== OS compatibility */ const char *get_uname(void); uint16_t get_uint16(const void *cp) ATTR_NONNULL((1)); uint32_t get_uint32(const void *cp) ATTR_NONNULL((1)); uint64_t get_uint64(const void *cp) ATTR_NONNULL((1)); void set_uint16(void *cp, uint16_t v) ATTR_NONNULL((1)); void set_uint32(void *cp, uint32_t v) ATTR_NONNULL((1)); void set_uint64(void *cp, uint64_t v) ATTR_NONNULL((1)); /* These uint8 variants are defined to make the code more uniform. */ #define get_uint8(cp) (*(const uint8_t*)(cp)) static void set_uint8(void *cp, uint8_t v); static INLINE void set_uint8(void *cp, uint8_t v) { *(uint8_t*)cp = v; } #if !defined(HAVE_RLIM_T) typedef unsigned long rlim_t; #endif int get_max_sockets(void); int set_max_file_descriptors(rlim_t limit, int *max); int tor_disable_debugger_attach(void); int switch_id(const char *user); #ifdef HAVE_PWD_H char *get_user_homedir(const char *username); #endif #ifndef _WIN32 const struct passwd *tor_getpwnam(const char *username); const struct passwd *tor_getpwuid(uid_t uid); #endif int get_parent_directory(char *fname); char *make_path_absolute(char *fname); char **get_environment(void); int get_total_system_memory(size_t *mem_out); int compute_num_cpus(void); int tor_mlockall(void); /** Macros for MIN/MAX. Never use these when the arguments could have * side-effects. * {With GCC extensions we could probably define a safer MIN/MAX. But * depending on that safety would be dangerous, since not every platform * has it.} **/ #ifndef MAX #define MAX(a,b) ( ((a)<(b)) ? (b) : (a) ) #endif #ifndef MIN #define MIN(a,b) ( ((a)>(b)) ? (b) : (a) ) #endif /* Platform-specific helpers. */ #ifdef _WIN32 char *format_win32_error(DWORD err); #endif /*for some reason my compiler doesn't have these version flags defined a nice homework assignment for someone one day is to define the rest*/ //these are the values as given on MSDN #ifdef _WIN32 #ifndef VER_SUITE_EMBEDDEDNT #define VER_SUITE_EMBEDDEDNT 0x00000040 #endif #ifndef VER_SUITE_SINGLEUSERTS #define VER_SUITE_SINGLEUSERTS 0x00000100 #endif #endif #ifdef TOR_UNIT_TESTS void tor_sleep_msec(int msec); #endif #ifdef COMPAT_PRIVATE #if !defined(HAVE_SOCKETPAIR) || defined(_WIN32) || defined(TOR_UNIT_TESTS) #define NEED_ERSATZ_SOCKETPAIR STATIC int tor_ersatz_socketpair(int family, int type, int protocol, tor_socket_t fd[2]); #endif #endif ssize_t tor_getpass(const char *prompt, char *output, size_t buflen); /* This needs some of the declarations above so we include it here. */ #include "compat_threads.h" #endif tor-0.2.7.6/src/common/memarea.h0000644000175000017500000000152012621363245013252 00000000000000/* Copyright (c) 2008-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /* Tor dependencies */ #ifndef TOR_MEMAREA_H #define TOR_MEMAREA_H typedef struct memarea_t memarea_t; memarea_t *memarea_new(void); void memarea_drop_all(memarea_t *area); void memarea_clear(memarea_t *area); int memarea_owns_ptr(const memarea_t *area, const void *ptr); void *memarea_alloc(memarea_t *area, size_t sz); void *memarea_alloc_zero(memarea_t *area, size_t sz); void *memarea_memdup(memarea_t *area, const void *s, size_t n); char *memarea_strdup(memarea_t *area, const char *s); char *memarea_strndup(memarea_t *area, const char *s, size_t n); void memarea_get_stats(memarea_t *area, size_t *allocated_out, size_t *used_out); void memarea_clear_freelist(void); void memarea_assert_ok(memarea_t *area); #endif tor-0.2.7.6/src/common/Makefile.nmake0000644000175000017500000000162412621363245014231 00000000000000all: libor.lib libor-crypto.lib libor-event.lib CFLAGS = /O2 /MT /I ..\win32 /I ..\..\..\build-alpha\include /I ..\common \ /I ..\ext LIBOR_OBJECTS = address.obj backtrace.obj compat.obj container.obj di_ops.obj \ log.obj memarea.obj mempool.obj procmon.obj sandbox.obj util.obj \ util_codedigest.obj LIBOR_CRYPTO_OBJECTS = aes.obj crypto.obj crypto_format.obj torgzip.obj tortls.obj \ crypto_curve25519.obj curve25519-donna.obj LIBOR_EVENT_OBJECTS = compat_libevent.obj curve25519-donna.obj: ..\ext\curve25519_donna\curve25519-donna.c $(CC) $(CFLAGS) /D inline=_inline /c ..\ext\curve25519_donna\curve25519-donna.c libor.lib: $(LIBOR_OBJECTS) lib $(LIBOR_OBJECTS) /out:libor.lib libor-crypto.lib: $(LIBOR_CRYPTO_OBJECTS) lib $(LIBOR_CRYPTO_OBJECTS) /out:libor-crypto.lib libor-event.lib: $(LIBOR_EVENT_OBJECTS) lib $(LIBOR_EVENT_OBJECTS) /out:libor-event.lib clean: del *.obj *.lib libor*.lib tor-0.2.7.6/src/common/procmon.c0000644000175000017500000002610012631612325013311 00000000000000/* Copyright (c) 2011-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file procmon.c * \brief Process-termination monitor functions **/ #include "procmon.h" #include "util.h" #ifdef HAVE_EVENT2_EVENT_H #include #else #include #endif #ifdef HAVE_SIGNAL_H #include #endif #ifdef HAVE_ERRNO_H #include #endif #ifdef _WIN32 #include #endif #if (0 == SIZEOF_PID_T) && defined(_WIN32) /* Windows does not define pid_t sometimes, but _getpid() returns an int. * Everybody else needs to have a pid_t. */ typedef int pid_t; #define PID_T_FORMAT "%d" #elif (SIZEOF_PID_T == SIZEOF_INT) || (SIZEOF_PID_T == SIZEOF_SHORT) #define PID_T_FORMAT "%d" #elif (SIZEOF_PID_T == SIZEOF_LONG) #define PID_T_FORMAT "%ld" #elif (SIZEOF_PID_T == SIZEOF_INT64_T) #define PID_T_FORMAT I64_FORMAT #else #error Unknown: SIZEOF_PID_T #endif /* Define to 1 if process-termination monitors on this OS and Libevent version must poll for process termination themselves. */ #define PROCMON_POLLS 1 /* Currently we need to poll in some way on all systems. */ #ifdef PROCMON_POLLS static void tor_process_monitor_poll_cb(evutil_socket_t unused1, short unused2, void *procmon_); #endif /* This struct may contain pointers into the original process * specifier string, but it should *never* contain anything which * needs to be freed. */ /* DOCDOC parsed_process_specifier_t */ struct parsed_process_specifier_t { pid_t pid; }; /** Parse the process specifier given in process_spec into * *ppspec. Return 0 on success; return -1 and store an error * message into *msg on failure. The caller must not free the * returned error message. */ static int parse_process_specifier(const char *process_spec, struct parsed_process_specifier_t *ppspec, const char **msg) { long pid_l; int pid_ok = 0; char *pspec_next; /* If we're lucky, long will turn out to be large enough to hold a * PID everywhere that Tor runs. */ pid_l = tor_parse_long(process_spec, 0, 1, LONG_MAX, &pid_ok, &pspec_next); /* Reserve room in the ‘process specifier’ for additional * (platform-specific) identifying information beyond the PID, to * make our process-existence checks a bit less racy in a future * version. */ if ((*pspec_next != 0) && (*pspec_next != ' ') && (*pspec_next != ':')) { pid_ok = 0; } ppspec->pid = (pid_t)(pid_l); if (!pid_ok || (pid_l != (long)(ppspec->pid))) { *msg = "invalid PID"; goto err; } return 0; err: return -1; } /* DOCDOC tor_process_monitor_t */ struct tor_process_monitor_t { /** Log domain for warning messages. */ log_domain_mask_t log_domain; /** All systems: The best we can do in general is poll for the * process's existence by PID periodically, and hope that the kernel * doesn't reassign the same PID to another process between our * polls. */ pid_t pid; #ifdef _WIN32 /** Windows-only: Should we poll hproc? If false, poll pid * instead. */ int poll_hproc; /** Windows-only: Get a handle to the process (if possible) and * periodically check whether the process we have a handle to has * ended. */ HANDLE hproc; /* XXX023 We can and should have Libevent watch hproc for us, * if/when some version of Libevent 2.x can be told to do so. */ #endif /* XXX023 On Linux, we can and should receive the 22nd * (space-delimited) field (‘starttime’) of /proc/$PID/stat from the * owning controller and store it, and poll once in a while to see * whether it has changed -- if so, the kernel has *definitely* * reassigned the owning controller's PID and we should exit. On * FreeBSD, we can do the same trick using either the 8th * space-delimited field of /proc/$PID/status on the seven FBSD * systems whose admins have mounted procfs, or the start-time field * of the process-information structure returned by kvmgetprocs() on * any system. The latter is ickier. */ /* XXX023 On FreeBSD (and possibly other kqueue systems), we can and * should arrange to receive EVFILT_PROC NOTE_EXIT notifications for * pid, so we don't have to do such a heavyweight poll operation in * order to avoid the PID-reassignment race condition. (We would * still need to poll our own kqueue periodically until some version * of Libevent 2.x learns to receive these events for us.) */ /** A Libevent event structure, to either poll for the process's * existence or receive a notification when the process ends. */ struct event *e; /** A callback to be called when the process ends. */ tor_procmon_callback_t cb; void *cb_arg; /**< A user-specified pointer to be passed to cb. */ }; /** Verify that the process specifier given in process_spec is * syntactically valid. Return 0 on success; return -1 and store an * error message into *msg on failure. The caller must not * free the returned error message. */ int tor_validate_process_specifier(const char *process_spec, const char **msg) { struct parsed_process_specifier_t ppspec; tor_assert(msg != NULL); *msg = NULL; return parse_process_specifier(process_spec, &ppspec, msg); } /* XXXX we should use periodic_timer_new() for this stuff */ #ifdef HAVE_EVENT2_EVENT_H #define PERIODIC_TIMER_FLAGS EV_PERSIST #else #define PERIODIC_TIMER_FLAGS (0) #endif /* DOCDOC poll_interval_tv */ static struct timeval poll_interval_tv = {15, 0}; /* Note: If you port this file to plain Libevent 2, you can make * poll_interval_tv const. It has to be non-const here because in * libevent 1.x, event_add expects a pointer to a non-const struct * timeval. */ /** Create a process-termination monitor for the process specifier * given in process_spec. Return a newly allocated * tor_process_monitor_t on success; return NULL and store an error * message into *msg on failure. The caller must not free * the returned error message. * * When the monitored process terminates, call * cb(cb_arg). */ tor_process_monitor_t * tor_process_monitor_new(struct event_base *base, const char *process_spec, log_domain_mask_t log_domain, tor_procmon_callback_t cb, void *cb_arg, const char **msg) { tor_process_monitor_t *procmon = tor_malloc(sizeof(tor_process_monitor_t)); struct parsed_process_specifier_t ppspec; tor_assert(msg != NULL); *msg = NULL; if (procmon == NULL) { *msg = "out of memory"; goto err; } procmon->log_domain = log_domain; if (parse_process_specifier(process_spec, &ppspec, msg)) goto err; procmon->pid = ppspec.pid; #ifdef _WIN32 procmon->hproc = OpenProcess(PROCESS_QUERY_INFORMATION | SYNCHRONIZE, FALSE, procmon->pid); if (procmon->hproc != NULL) { procmon->poll_hproc = 1; log_info(procmon->log_domain, "Successfully opened handle to process " PID_T_FORMAT"; " "monitoring it.", procmon->pid); } else { /* If we couldn't get a handle to the process, we'll try again the * first time we poll. */ log_info(procmon->log_domain, "Failed to open handle to process " PID_T_FORMAT"; will " "try again later.", procmon->pid); } #endif procmon->cb = cb; procmon->cb_arg = cb_arg; #ifdef PROCMON_POLLS procmon->e = tor_event_new(base, -1 /* no FD */, PERIODIC_TIMER_FLAGS, tor_process_monitor_poll_cb, procmon); /* Note: If you port this file to plain Libevent 2, check that * procmon->e is non-NULL. We don't need to here because * tor_evtimer_new never returns NULL. */ evtimer_add(procmon->e, &poll_interval_tv); #else #error OOPS? #endif return procmon; err: tor_process_monitor_free(procmon); return NULL; } #ifdef PROCMON_POLLS /** Libevent callback to poll for the existence of the process * monitored by procmon_. */ static void tor_process_monitor_poll_cb(evutil_socket_t unused1, short unused2, void *procmon_) { tor_process_monitor_t *procmon = (tor_process_monitor_t *)(procmon_); int its_dead_jim; (void)unused1; (void)unused2; tor_assert(procmon != NULL); #ifdef _WIN32 if (procmon->poll_hproc) { DWORD exit_code; if (!GetExitCodeProcess(procmon->hproc, &exit_code)) { char *errmsg = format_win32_error(GetLastError()); log_warn(procmon->log_domain, "Error \"%s\" occurred while polling " "handle for monitored process "PID_T_FORMAT"; assuming " "it's dead.", errmsg, procmon->pid); tor_free(errmsg); its_dead_jim = 1; } else { its_dead_jim = (exit_code != STILL_ACTIVE); } } else { /* All we can do is try to open the process, and look at the error * code if it fails again. */ procmon->hproc = OpenProcess(PROCESS_QUERY_INFORMATION | SYNCHRONIZE, FALSE, procmon->pid); if (procmon->hproc != NULL) { log_info(procmon->log_domain, "Successfully opened handle to monitored " "process "PID_T_FORMAT".", procmon->pid); its_dead_jim = 0; procmon->poll_hproc = 1; } else { DWORD err_code = GetLastError(); char *errmsg = format_win32_error(err_code); /* When I tested OpenProcess's error codes on Windows 7, I * received error code 5 (ERROR_ACCESS_DENIED) for PIDs of * existing processes that I could not open and error code 87 * (ERROR_INVALID_PARAMETER) for PIDs that were not in use. * Since the nonexistent-process error code is sane, I'm going * to assume that all errors other than ERROR_INVALID_PARAMETER * mean that the process we are monitoring is still alive. */ its_dead_jim = (err_code == ERROR_INVALID_PARAMETER); if (!its_dead_jim) log_info(procmon->log_domain, "Failed to open handle to monitored " "process "PID_T_FORMAT", and error code %lu (%s) is not " "'invalid parameter' -- assuming the process is still alive.", procmon->pid, err_code, errmsg); tor_free(errmsg); } } #else /* Unix makes this part easy, if a bit racy. */ its_dead_jim = kill(procmon->pid, 0); its_dead_jim = its_dead_jim && (errno == ESRCH); #endif tor_log(its_dead_jim ? LOG_NOTICE : LOG_INFO, procmon->log_domain, "Monitored process "PID_T_FORMAT" is %s.", procmon->pid, its_dead_jim ? "dead" : "still alive"); if (its_dead_jim) { procmon->cb(procmon->cb_arg); #ifndef HAVE_EVENT2_EVENT_H } else { evtimer_add(procmon->e, &poll_interval_tv); #endif } } #endif /** Free the process-termination monitor procmon. */ void tor_process_monitor_free(tor_process_monitor_t *procmon) { if (procmon == NULL) return; #ifdef _WIN32 if (procmon->hproc != NULL) CloseHandle(procmon->hproc); #endif if (procmon->e != NULL) tor_event_free(procmon->e); tor_free(procmon); } tor-0.2.7.6/src/common/crypto_ed25519.h0000644000175000017500000001037612621363245014252 00000000000000/* Copyright (c) 2012-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef TOR_CRYPTO_ED25519_H #define TOR_CRYPTO_ED25519_H #include "testsupport.h" #include "torint.h" #include "crypto_curve25519.h" #define ED25519_PUBKEY_LEN 32 #define ED25519_SECKEY_LEN 64 #define ED25519_SECKEY_SEED_LEN 32 #define ED25519_SIG_LEN 64 /** An Ed25519 signature. */ typedef struct { uint8_t sig[ED25519_SIG_LEN]; } ed25519_signature_t; /** An Ed25519 public key */ typedef struct { uint8_t pubkey[ED25519_PUBKEY_LEN]; } ed25519_public_key_t; /** An Ed25519 secret key */ typedef struct { /** Note that we store secret keys in an expanded format that doesn't match * the format from standard ed25519. Ed25519 stores a 32-byte value k and * expands it into a 64-byte H(k), using the first 32 bytes for a multiplier * of the base point, and second 32 bytes as an input to a hash function * for deriving r. But because we implement key blinding, we need to store * keys in the 64-byte expanded form. */ uint8_t seckey[ED25519_SECKEY_LEN]; } ed25519_secret_key_t; /** An Ed25519 keypair. */ typedef struct { ed25519_public_key_t pubkey; ed25519_secret_key_t seckey; } ed25519_keypair_t; int ed25519_secret_key_generate(ed25519_secret_key_t *seckey_out, int extra_strong); int ed25519_secret_key_from_seed(ed25519_secret_key_t *seckey_out, const uint8_t *seed); int ed25519_public_key_generate(ed25519_public_key_t *pubkey_out, const ed25519_secret_key_t *seckey); int ed25519_keypair_generate(ed25519_keypair_t *keypair_out, int extra_strong); int ed25519_sign(ed25519_signature_t *signature_out, const uint8_t *msg, size_t len, const ed25519_keypair_t *key); int ed25519_checksig(const ed25519_signature_t *signature, const uint8_t *msg, size_t len, const ed25519_public_key_t *pubkey); /** * A collection of information necessary to check an Ed25519 signature. Used * for batch verification. */ typedef struct { /** The public key that supposedly generated the signature. */ const ed25519_public_key_t *pubkey; /** The signature to check. */ ed25519_signature_t signature; /** The message that the signature is supposed to have been applied to. */ const uint8_t *msg; /** The length of the message. */ size_t len; } ed25519_checkable_t; int ed25519_checksig_batch(int *okay_out, const ed25519_checkable_t *checkable, int n_checkable); int ed25519_keypair_from_curve25519_keypair(ed25519_keypair_t *out, int *signbit_out, const curve25519_keypair_t *inp); int ed25519_public_key_from_curve25519_public_key(ed25519_public_key_t *pubkey, const curve25519_public_key_t *pubkey_in, int signbit); int ed25519_keypair_blind(ed25519_keypair_t *out, const ed25519_keypair_t *inp, const uint8_t *param); int ed25519_public_blind(ed25519_public_key_t *out, const ed25519_public_key_t *inp, const uint8_t *param); /* XXXX read encrypted, write encrypted. */ int ed25519_seckey_write_to_file(const ed25519_secret_key_t *seckey, const char *filename, const char *tag); int ed25519_seckey_read_from_file(ed25519_secret_key_t *seckey_out, char **tag_out, const char *filename); int ed25519_pubkey_write_to_file(const ed25519_public_key_t *pubkey, const char *filename, const char *tag); int ed25519_pubkey_read_from_file(ed25519_public_key_t *pubkey_out, char **tag_out, const char *filename); void ed25519_keypair_free(ed25519_keypair_t *kp); int ed25519_pubkey_eq(const ed25519_public_key_t *key1, const ed25519_public_key_t *key2); void ed25519_set_impl_params(int use_donna); void ed25519_init(void); #endif tor-0.2.7.6/src/common/sandbox.h0000644000175000017500000001142712621364222013304 00000000000000/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file sandbox.h * \brief Header file for sandbox.c. **/ #ifndef SANDBOX_H_ #define SANDBOX_H_ #include "orconfig.h" #include "torint.h" #ifndef SYS_SECCOMP /** * Used by SIGSYS signal handler to check if the signal was issued due to a * seccomp2 filter violation. */ #define SYS_SECCOMP 1 #endif #if defined(HAVE_SECCOMP_H) && defined(__linux__) #define USE_LIBSECCOMP #endif struct sandbox_cfg_elem; /** Typedef to structure used to manage a sandbox configuration. */ typedef struct sandbox_cfg_elem sandbox_cfg_t; /** * Linux definitions */ #ifdef USE_LIBSECCOMP #ifndef __USE_GNU #define __USE_GNU #endif #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif #include #include #include #define PARAM_PTR 0 #define PARAM_NUM 1 /** * Enum used to manage the type of the implementation for general purpose. */ typedef enum { /** Libseccomp implementation based on seccomp2*/ LIBSECCOMP2 = 0 } SB_IMPL; /** * Configuration parameter structure associated with the LIBSECCOMP2 * implementation. */ typedef struct smp_param { /** syscall associated with parameter. */ int syscall; /** parameter value. */ char *value; /** parameter value, second argument. */ char *value2; /** parameter flag (0 = not protected, 1 = protected). */ int prot; } smp_param_t; /** * Structure used to manage a sandbox configuration. * * It is implemented as a linked list of parameters. Currently only controls * parameters for open, openat, execve, stat64. */ struct sandbox_cfg_elem { /** Sandbox implementation which dictates the parameter type. */ SB_IMPL implem; /** Configuration parameter. */ smp_param_t *param; /** Next element of the configuration*/ struct sandbox_cfg_elem *next; }; /** Function pointer defining the prototype of a filter function.*/ typedef int (*sandbox_filter_func_t)(scmp_filter_ctx ctx, sandbox_cfg_t *filter); /** Type that will be used in step 3 in order to manage multiple sandboxes.*/ typedef struct { /** function pointers associated with the filter */ sandbox_filter_func_t *filter_func; /** filter function pointer parameters */ sandbox_cfg_t *filter_dynamic; } sandbox_t; #endif // USE_LIBSECCOMP #ifdef USE_LIBSECCOMP /** Pre-calls getaddrinfo in order to pre-record result. */ int sandbox_add_addrinfo(const char *addr); struct addrinfo; /** Replacement for getaddrinfo(), using pre-recorded results. */ int sandbox_getaddrinfo(const char *name, const char *servname, const struct addrinfo *hints, struct addrinfo **res); void sandbox_freeaddrinfo(struct addrinfo *addrinfo); void sandbox_free_getaddrinfo_cache(void); #else #define sandbox_getaddrinfo(name, servname, hints, res) \ getaddrinfo((name),(servname), (hints),(res)) #define sandbox_add_addrinfo(name) \ ((void)(name)) #define sandbox_freeaddrinfo(addrinfo) \ freeaddrinfo((addrinfo)) #define sandbox_free_getaddrinfo_cache() #endif #ifdef USE_LIBSECCOMP /** Returns a registered protected string used with the sandbox, given that * it matches the parameter. */ const char* sandbox_intern_string(const char *param); #else #define sandbox_intern_string(s) (s) #endif /** Creates an empty sandbox configuration file.*/ sandbox_cfg_t * sandbox_cfg_new(void); /** * Function used to add a open allowed filename to a supplied configuration. * The (char*) specifies the path to the allowed file; we take ownership * of the pointer. */ int sandbox_cfg_allow_open_filename(sandbox_cfg_t **cfg, char *file); /**DOCDOC*/ int sandbox_cfg_allow_rename(sandbox_cfg_t **cfg, char *file1, char *file2); /** * Function used to add a openat allowed filename to a supplied configuration. * The (char*) specifies the path to the allowed file; we steal the pointer to * that file. */ int sandbox_cfg_allow_openat_filename(sandbox_cfg_t **cfg, char *file); #if 0 /** * Function used to add a execve allowed filename to a supplied configuration. * The (char*) specifies the path to the allowed file; that pointer is stolen. */ int sandbox_cfg_allow_execve(sandbox_cfg_t **cfg, const char *com); #endif /** * Function used to add a stat/stat64 allowed filename to a configuration. * The (char*) specifies the path to the allowed file; that pointer is stolen. */ int sandbox_cfg_allow_stat_filename(sandbox_cfg_t **cfg, char *file); /** Function used to initialise a sandbox configuration.*/ int sandbox_init(sandbox_cfg_t* cfg); /** Return true iff the sandbox is turned on. */ int sandbox_is_active(void); void sandbox_disable_getaddrinfo_cache(void); #endif /* SANDBOX_H_ */ tor-0.2.7.6/src/common/crypto_s2k.h0000644000175000017500000000553712621363245013756 00000000000000/* Copyright (c) 2001, Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef TOR_CRYPTO_S2K_H_INCLUDED #define TOR_CRYPTO_S2K_H_INCLUDED #include #include "torint.h" /** Length of RFC2440-style S2K specifier: the first 8 bytes are a salt, the * 9th describes how much iteration to do. */ #define S2K_RFC2440_SPECIFIER_LEN 9 void secret_to_key_rfc2440( char *key_out, size_t key_out_len, const char *secret, size_t secret_len, const char *s2k_specifier); /** Flag for secret-to-key function: do not use scrypt. */ #define S2K_FLAG_NO_SCRYPT (1u<<0) /** Flag for secret-to-key functions: if using a memory-tuned s2k function, * assume that we have limited memory. */ #define S2K_FLAG_LOW_MEM (1u<<1) /** Flag for secret-to-key functions: force use of pbkdf2. Without this, we * default to scrypt, then RFC2440. */ #define S2K_FLAG_USE_PBKDF2 (1u<<2) /** Maximum possible output length from secret_to_key_new. */ #define S2K_MAXLEN 64 /** Error code from secret-to-key functions: all is well */ #define S2K_OKAY 0 /** Error code from secret-to-key functions: generic failure */ #define S2K_FAILED -1 /** Error code from secret-to-key functions: provided secret didn't match */ #define S2K_BAD_SECRET -2 /** Error code from secret-to-key functions: didn't recognize the algorithm */ #define S2K_BAD_ALGORITHM -3 /** Error code from secret-to-key functions: specifier wasn't valid */ #define S2K_BAD_PARAMS -4 /** Error code from secret-to-key functions: compiled without scrypt */ #define S2K_NO_SCRYPT_SUPPORT -5 /** Error code from secret-to-key functions: not enough space to write output. */ #define S2K_TRUNCATED -6 /** Error code from secret-to-key functions: Wrong length for specifier. */ #define S2K_BAD_LEN -7 int secret_to_key_new(uint8_t *buf, size_t buf_len, size_t *len_out, const char *secret, size_t secret_len, unsigned flags); int secret_to_key_make_specifier(uint8_t *buf, size_t buf_len, unsigned flags); int secret_to_key_check(const uint8_t *spec_and_key, size_t spec_and_key_len, const char *secret, size_t secret_len); int secret_to_key_derivekey(uint8_t *key_out, size_t key_out_len, const uint8_t *spec, size_t spec_len, const char *secret, size_t secret_len); #ifdef CRYPTO_S2K_PRIVATE STATIC int secret_to_key_compute_key(uint8_t *key_out, size_t key_out_len, const uint8_t *spec, size_t spec_len, const char *secret, size_t secret_len, int type); #endif #endif tor-0.2.7.6/src/common/util.h0000644000175000017500000005300212631612325012617 00000000000000/* Copyright (c) 2003-2004, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file util.h * \brief Headers for util.c **/ #ifndef TOR_UTIL_H #define TOR_UTIL_H #include "orconfig.h" #include "torint.h" #include "compat.h" #include "di_ops.h" #include "testsupport.h" #include #include #ifdef _WIN32 /* for the correct alias to struct stat */ #include #endif #ifndef O_BINARY #define O_BINARY 0 #endif #ifndef O_TEXT #define O_TEXT 0 #endif /* Replace assert() with a variant that sends failures to the log before * calling assert() normally. */ #ifdef NDEBUG /* Nobody should ever want to build with NDEBUG set. 99% of our asserts will * be outside the critical path anyway, so it's silly to disable bug-checking * throughout the entire program just because a few asserts are slowing you * down. Profile, optimize the critical path, and keep debugging on. * * And I'm not just saying that because some of our asserts check * security-critical properties. */ #error "Sorry; we don't support building with NDEBUG." #endif /* Don't use assertions during coverage. It leads to tons of unreached * branches which in reality are only assertions we didn't hit. */ #ifdef TOR_COVERAGE #define tor_assert(a) STMT_BEGIN \ (void)(a); \ STMT_END #else /** Like assert(3), but send assertion failures to the log as well as to * stderr. */ #define tor_assert(expr) STMT_BEGIN \ if (PREDICT_UNLIKELY(!(expr))) { \ tor_assertion_failed_(SHORT_FILE__, __LINE__, __func__, #expr); \ abort(); \ } STMT_END #endif void tor_assertion_failed_(const char *fname, unsigned int line, const char *func, const char *expr); /* If we're building with dmalloc, we want all of our memory allocation * functions to take an extra file/line pair of arguments. If not, not. * We define DMALLOC_PARAMS to the extra parameters to insert in the * function prototypes, and DMALLOC_ARGS to the extra arguments to add * to calls. */ #ifdef USE_DMALLOC #define DMALLOC_PARAMS , const char *file, const int line #define DMALLOC_ARGS , SHORT_FILE__, __LINE__ #else #define DMALLOC_PARAMS #define DMALLOC_ARGS #endif /** Define this if you want Tor to crash when any problem comes up, * so you can get a coredump and track things down. */ // #define tor_fragile_assert() tor_assert(0) #define tor_fragile_assert() /* Memory management */ void *tor_malloc_(size_t size DMALLOC_PARAMS) ATTR_MALLOC; void *tor_malloc_zero_(size_t size DMALLOC_PARAMS) ATTR_MALLOC; void *tor_calloc_(size_t nmemb, size_t size DMALLOC_PARAMS) ATTR_MALLOC; void *tor_realloc_(void *ptr, size_t size DMALLOC_PARAMS); void *tor_reallocarray_(void *ptr, size_t size1, size_t size2 DMALLOC_PARAMS); char *tor_strdup_(const char *s DMALLOC_PARAMS) ATTR_MALLOC ATTR_NONNULL((1)); char *tor_strndup_(const char *s, size_t n DMALLOC_PARAMS) ATTR_MALLOC ATTR_NONNULL((1)); void *tor_memdup_(const void *mem, size_t len DMALLOC_PARAMS) ATTR_MALLOC ATTR_NONNULL((1)); void *tor_memdup_nulterm_(const void *mem, size_t len DMALLOC_PARAMS) ATTR_MALLOC ATTR_NONNULL((1)); void tor_free_(void *mem); #ifdef USE_DMALLOC extern int dmalloc_free(const char *file, const int line, void *pnt, const int func_id); #define tor_free(p) STMT_BEGIN \ if (PREDICT_LIKELY((p)!=NULL)) { \ dmalloc_free(SHORT_FILE__, __LINE__, (p), 0); \ (p)=NULL; \ } \ STMT_END #else /** Release memory allocated by tor_malloc, tor_realloc, tor_strdup, etc. * Unlike the free() function, tor_free() will still work on NULL pointers, * and it sets the pointer value to NULL after freeing it. * * This is a macro. If you need a function pointer to release memory from * tor_malloc(), use tor_free_(). */ #define tor_free(p) STMT_BEGIN \ if (PREDICT_LIKELY((p)!=NULL)) { \ free(p); \ (p)=NULL; \ } \ STMT_END #endif #define tor_malloc(size) tor_malloc_(size DMALLOC_ARGS) #define tor_malloc_zero(size) tor_malloc_zero_(size DMALLOC_ARGS) #define tor_calloc(nmemb,size) tor_calloc_(nmemb, size DMALLOC_ARGS) #define tor_realloc(ptr, size) tor_realloc_(ptr, size DMALLOC_ARGS) #define tor_reallocarray(ptr, sz1, sz2) \ tor_reallocarray_((ptr), (sz1), (sz2) DMALLOC_ARGS) #define tor_strdup(s) tor_strdup_(s DMALLOC_ARGS) #define tor_strndup(s, n) tor_strndup_(s, n DMALLOC_ARGS) #define tor_memdup(s, n) tor_memdup_(s, n DMALLOC_ARGS) #define tor_memdup_nulterm(s, n) tor_memdup_nulterm_(s, n DMALLOC_ARGS) void tor_log_mallinfo(int severity); /** Return the offset of member within the type tp, in bytes */ #if defined(__GNUC__) && __GNUC__ > 3 #define STRUCT_OFFSET(tp, member) __builtin_offsetof(tp, member) #else #define STRUCT_OFFSET(tp, member) \ ((off_t) (((char*)&((tp*)0)->member)-(char*)0)) #endif /** Macro: yield a pointer to the field at position off within the * structure st. Example: *
 *   struct a { int foo; int bar; } x;
 *   off_t bar_offset = STRUCT_OFFSET(struct a, bar);
 *   int *bar_p = STRUCT_VAR_P(&x, bar_offset);
 *   *bar_p = 3;
 * 
*/ #define STRUCT_VAR_P(st, off) ((void*) ( ((char*)(st)) + (off) ) ) /** Macro: yield a pointer to an enclosing structure given a pointer to * a substructure at offset off. Example: *
 *   struct base { ... };
 *   struct subtype { int x; struct base b; } x;
 *   struct base *bp = &x.base;
 *   struct *sp = SUBTYPE_P(bp, struct subtype, b);
 * 
*/ #define SUBTYPE_P(p, subtype, basemember) \ ((void*) ( ((char*)(p)) - STRUCT_OFFSET(subtype, basemember) )) /* Logic */ /** Macro: true if two values have the same boolean value. */ #define bool_eq(a,b) (!(a)==!(b)) /** Macro: true if two values have different boolean values. */ #define bool_neq(a,b) (!(a)!=!(b)) /* Math functions */ double tor_mathlog(double d) ATTR_CONST; long tor_lround(double d) ATTR_CONST; int64_t tor_llround(double d) ATTR_CONST; int tor_log2(uint64_t u64) ATTR_CONST; uint64_t round_to_power_of_2(uint64_t u64); unsigned round_to_next_multiple_of(unsigned number, unsigned divisor); uint32_t round_uint32_to_next_multiple_of(uint32_t number, uint32_t divisor); uint64_t round_uint64_to_next_multiple_of(uint64_t number, uint64_t divisor); int64_t round_int64_to_next_multiple_of(int64_t number, int64_t divisor); int64_t sample_laplace_distribution(double mu, double b, double p); int64_t add_laplace_noise(int64_t signal, double random, double delta_f, double epsilon); int n_bits_set_u8(uint8_t v); /* Compute the CEIL of a divided by b, for nonnegative a * and positive b. Works on integer types only. Not defined if a+b can * overflow. */ #define CEIL_DIV(a,b) (((a)+(b)-1)/(b)) /* Return v if it's between min and max. Otherwise * return min if v is smaller than min, or max if * b is larger than max. * * Requires that min is no more than max. May evaluate any of * its arguments more than once! */ #define CLAMP(min,v,max) \ ( ((v) < (min)) ? (min) : \ ((v) > (max)) ? (max) : \ (v) ) /* String manipulation */ /** Allowable characters in a hexadecimal string. */ #define HEX_CHARACTERS "0123456789ABCDEFabcdef" void tor_strlower(char *s) ATTR_NONNULL((1)); void tor_strupper(char *s) ATTR_NONNULL((1)); int tor_strisprint(const char *s) ATTR_NONNULL((1)); int tor_strisnonupper(const char *s) ATTR_NONNULL((1)); int strcmp_opt(const char *s1, const char *s2); int strcmpstart(const char *s1, const char *s2) ATTR_NONNULL((1,2)); int strcmp_len(const char *s1, const char *s2, size_t len) ATTR_NONNULL((1,2)); int strcasecmpstart(const char *s1, const char *s2) ATTR_NONNULL((1,2)); int strcmpend(const char *s1, const char *s2) ATTR_NONNULL((1,2)); int strcasecmpend(const char *s1, const char *s2) ATTR_NONNULL((1,2)); int fast_memcmpstart(const void *mem, size_t memlen, const char *prefix); void tor_strstrip(char *s, const char *strip) ATTR_NONNULL((1,2)); long tor_parse_long(const char *s, int base, long min, long max, int *ok, char **next); unsigned long tor_parse_ulong(const char *s, int base, unsigned long min, unsigned long max, int *ok, char **next); double tor_parse_double(const char *s, double min, double max, int *ok, char **next); uint64_t tor_parse_uint64(const char *s, int base, uint64_t min, uint64_t max, int *ok, char **next); const char *hex_str(const char *from, size_t fromlen) ATTR_NONNULL((1)); const char *eat_whitespace(const char *s); const char *eat_whitespace_eos(const char *s, const char *eos); const char *eat_whitespace_no_nl(const char *s); const char *eat_whitespace_eos_no_nl(const char *s, const char *eos); const char *find_whitespace(const char *s); const char *find_whitespace_eos(const char *s, const char *eos); const char *find_str_at_start_of_line(const char *haystack, const char *needle); int string_is_C_identifier(const char *string); int string_is_key_value(int severity, const char *string); int string_is_valid_hostname(const char *string); int string_is_valid_ipv4_address(const char *string); int string_is_valid_ipv6_address(const char *string); int tor_mem_is_zero(const char *mem, size_t len); int tor_digest_is_zero(const char *digest); int tor_digest256_is_zero(const char *digest); char *esc_for_log(const char *string) ATTR_MALLOC; char *esc_for_log_len(const char *chars, size_t n) ATTR_MALLOC; const char *escaped(const char *string); char *tor_escape_str_for_pt_args(const char *string, const char *chars_to_escape); struct smartlist_t; int tor_vsscanf(const char *buf, const char *pattern, va_list ap) \ CHECK_SCANF(2, 0); int tor_sscanf(const char *buf, const char *pattern, ...) CHECK_SCANF(2, 3); void smartlist_add_asprintf(struct smartlist_t *sl, const char *pattern, ...) CHECK_PRINTF(2, 3); void smartlist_add_vasprintf(struct smartlist_t *sl, const char *pattern, va_list args) CHECK_PRINTF(2, 0); /* Time helpers */ long tv_udiff(const struct timeval *start, const struct timeval *end); long tv_mdiff(const struct timeval *start, const struct timeval *end); int64_t tv_to_msec(const struct timeval *tv); int tor_timegm(const struct tm *tm, time_t *time_out); #define RFC1123_TIME_LEN 29 void format_rfc1123_time(char *buf, time_t t); int parse_rfc1123_time(const char *buf, time_t *t); #define ISO_TIME_LEN 19 #define ISO_TIME_USEC_LEN (ISO_TIME_LEN+7) void format_local_iso_time(char *buf, time_t t); void format_iso_time(char *buf, time_t t); void format_iso_time_nospace(char *buf, time_t t); void format_iso_time_nospace_usec(char *buf, const struct timeval *tv); int parse_iso_time_(const char *cp, time_t *t, int strict); int parse_iso_time(const char *buf, time_t *t); int parse_http_time(const char *buf, struct tm *tm); int format_time_interval(char *out, size_t out_len, long interval); /* Cached time */ #ifdef TIME_IS_FAST #define approx_time() time(NULL) #define update_approx_time(t) STMT_NIL #else time_t approx_time(void); void update_approx_time(time_t now); #endif /* Rate-limiter */ /** A ratelim_t remembers how often an event is occurring, and how often * it's allowed to occur. Typical usage is something like: *
    if (possibly_very_frequent_event()) {
      const int INTERVAL = 300;
      static ratelim_t warning_limit = RATELIM_INIT(INTERVAL);
      char *m;
      if ((m = rate_limit_log(&warning_limit, approx_time()))) {
        log_warn(LD_GENERAL, "The event occurred!%s", m);
        tor_free(m);
      }
    }
   
As a convenience wrapper for logging, you can replace the above with:
   if (possibly_very_frequent_event()) {
     static ratelim_t warning_limit = RATELIM_INIT(300);
     log_fn_ratelim(&warning_limit, LOG_WARN, LD_GENERAL,
                    "The event occurred!");
   }
   
*/ typedef struct ratelim_t { int rate; time_t last_allowed; int n_calls_since_last_time; } ratelim_t; #define RATELIM_INIT(r) { (r), 0, 0 } char *rate_limit_log(ratelim_t *lim, time_t now); /* File helpers */ ssize_t write_all(tor_socket_t fd, const char *buf, size_t count,int isSocket); ssize_t read_all(tor_socket_t fd, char *buf, size_t count, int isSocket); /** Status of an I/O stream. */ enum stream_status { IO_STREAM_OKAY, IO_STREAM_EAGAIN, IO_STREAM_TERM, IO_STREAM_CLOSED }; const char *stream_status_to_string(enum stream_status stream_status); enum stream_status get_string_from_pipe(FILE *stream, char *buf, size_t count); /** Return values from file_status(); see that function's documentation * for details. */ typedef enum { FN_ERROR, FN_NOENT, FN_FILE, FN_DIR, FN_EMPTY } file_status_t; file_status_t file_status(const char *filename); /** Possible behaviors for check_private_dir() on encountering a nonexistent * directory; see that function's documentation for details. */ typedef unsigned int cpd_check_t; #define CPD_NONE 0 #define CPD_CREATE 1 #define CPD_CHECK 2 #define CPD_GROUP_OK 4 #define CPD_GROUP_READ 8 #define CPD_CHECK_MODE_ONLY 16 int check_private_dir(const char *dirname, cpd_check_t check, const char *effective_user); #define OPEN_FLAGS_REPLACE (O_WRONLY|O_CREAT|O_TRUNC) #define OPEN_FLAGS_APPEND (O_WRONLY|O_CREAT|O_APPEND) #define OPEN_FLAGS_DONT_REPLACE (O_CREAT|O_EXCL|O_APPEND|O_WRONLY) typedef struct open_file_t open_file_t; int start_writing_to_file(const char *fname, int open_flags, int mode, open_file_t **data_out); FILE *start_writing_to_stdio_file(const char *fname, int open_flags, int mode, open_file_t **data_out); FILE *fdopen_file(open_file_t *file_data); int finish_writing_to_file(open_file_t *file_data); int abort_writing_to_file(open_file_t *file_data); int write_str_to_file(const char *fname, const char *str, int bin); MOCK_DECL(int, write_bytes_to_file,(const char *fname, const char *str, size_t len, int bin)); /** An ad-hoc type to hold a string of characters and a count; used by * write_chunks_to_file. */ typedef struct sized_chunk_t { const char *bytes; size_t len; } sized_chunk_t; int write_chunks_to_file(const char *fname, const struct smartlist_t *chunks, int bin, int no_tempfile); int append_bytes_to_file(const char *fname, const char *str, size_t len, int bin); int write_bytes_to_new_file(const char *fname, const char *str, size_t len, int bin); /** Flag for read_file_to_str: open the file in binary mode. */ #define RFTS_BIN 1 /** Flag for read_file_to_str: it's okay if the file doesn't exist. */ #define RFTS_IGNORE_MISSING 2 #ifndef _WIN32 struct stat; #endif char *read_file_to_str(const char *filename, int flags, struct stat *stat_out) ATTR_MALLOC; char *read_file_to_str_until_eof(int fd, size_t max_bytes_to_read, size_t *sz_out) ATTR_MALLOC; const char *parse_config_line_from_str_verbose(const char *line, char **key_out, char **value_out, const char **err_out); #define parse_config_line_from_str(line,key_out,value_out) \ parse_config_line_from_str_verbose((line),(key_out),(value_out),NULL) char *expand_filename(const char *filename); struct smartlist_t *tor_listdir(const char *dirname); int path_is_relative(const char *filename); /* Process helpers */ void start_daemon(void); void finish_daemon(const char *desired_cwd); void write_pidfile(const char *filename); /* Port forwarding */ void tor_check_port_forwarding(const char *filename, struct smartlist_t *ports_to_forward, time_t now); typedef struct process_handle_t process_handle_t; typedef struct process_environment_t process_environment_t; int tor_spawn_background(const char *const filename, const char **argv, process_environment_t *env, process_handle_t **process_handle_out); #define SPAWN_ERROR_MESSAGE "ERR: Failed to spawn background process - code " #ifdef _WIN32 HANDLE load_windows_system_library(const TCHAR *library_name); #endif int environment_variable_names_equal(const char *s1, const char *s2); /* DOCDOC process_environment_t */ struct process_environment_t { /** A pointer to a sorted empty-string-terminated sequence of * NUL-terminated strings of the form "NAME=VALUE". */ char *windows_environment_block; /** A pointer to a NULL-terminated array of pointers to * NUL-terminated strings of the form "NAME=VALUE". */ char **unixoid_environment_block; }; process_environment_t *process_environment_make(struct smartlist_t *env_vars); void process_environment_free(process_environment_t *env); struct smartlist_t *get_current_process_environment_variables(void); void set_environment_variable_in_smartlist(struct smartlist_t *env_vars, const char *new_var, void (*free_old)(void*), int free_p); /* Values of process_handle_t.status. PROCESS_STATUS_NOTRUNNING must be * 0 because tor_check_port_forwarding depends on this being the initial * statue of the static instance of process_handle_t */ #define PROCESS_STATUS_NOTRUNNING 0 #define PROCESS_STATUS_RUNNING 1 #define PROCESS_STATUS_ERROR -1 #ifdef UTIL_PRIVATE struct waitpid_callback_t; /** Structure to represent the state of a process with which Tor is * communicating. The contents of this structure are private to util.c */ struct process_handle_t { /** One of the PROCESS_STATUS_* values */ int status; #ifdef _WIN32 HANDLE stdin_pipe; HANDLE stdout_pipe; HANDLE stderr_pipe; PROCESS_INFORMATION pid; #else int stdin_pipe; int stdout_pipe; int stderr_pipe; FILE *stdin_handle; FILE *stdout_handle; FILE *stderr_handle; pid_t pid; /** If the process has not given us a SIGCHLD yet, this has the * waitpid_callback_t that gets invoked once it has. Otherwise this * contains NULL. */ struct waitpid_callback_t *waitpid_cb; /** The exit status reported by waitpid. */ int waitpid_exit_status; #endif // _WIN32 }; #endif /* Return values of tor_get_exit_code() */ #define PROCESS_EXIT_RUNNING 1 #define PROCESS_EXIT_EXITED 0 #define PROCESS_EXIT_ERROR -1 int tor_get_exit_code(process_handle_t *process_handle, int block, int *exit_code); int tor_split_lines(struct smartlist_t *sl, char *buf, int len); #ifdef _WIN32 ssize_t tor_read_all_handle(HANDLE h, char *buf, size_t count, const process_handle_t *process); #else ssize_t tor_read_all_handle(FILE *h, char *buf, size_t count, const process_handle_t *process, int *eof); #endif ssize_t tor_read_all_from_process_stdout( const process_handle_t *process_handle, char *buf, size_t count); ssize_t tor_read_all_from_process_stderr( const process_handle_t *process_handle, char *buf, size_t count); char *tor_join_win_cmdline(const char *argv[]); int tor_process_get_pid(process_handle_t *process_handle); #ifdef _WIN32 HANDLE tor_process_get_stdout_pipe(process_handle_t *process_handle); #else FILE *tor_process_get_stdout_pipe(process_handle_t *process_handle); #endif #ifdef _WIN32 MOCK_DECL(struct smartlist_t *, tor_get_lines_from_handle,(HANDLE *handle, enum stream_status *stream_status)); #else MOCK_DECL(struct smartlist_t *, tor_get_lines_from_handle,(FILE *handle, enum stream_status *stream_status)); #endif int tor_terminate_process(process_handle_t *process_handle); MOCK_DECL(void, tor_process_handle_destroy,(process_handle_t *process_handle, int also_terminate_process)); /* ===== Insecure rng */ typedef struct tor_weak_rng_t { uint32_t state; } tor_weak_rng_t; #define TOR_WEAK_RNG_INIT {383745623} #define TOR_WEAK_RANDOM_MAX (INT_MAX) void tor_init_weak_random(tor_weak_rng_t *weak_rng, unsigned seed); int32_t tor_weak_random(tor_weak_rng_t *weak_rng); int32_t tor_weak_random_range(tor_weak_rng_t *rng, int32_t top); /** Randomly return true according to rng with probability 1 in * n */ #define tor_weak_random_one_in_n(rng, n) (0==tor_weak_random_range((rng),(n))) int format_hex_number_sigsafe(unsigned long x, char *buf, int max_len); int format_dec_number_sigsafe(unsigned long x, char *buf, int max_len); #ifdef UTIL_PRIVATE /* Prototypes for private functions only used by util.c (and unit tests) */ #ifndef _WIN32 STATIC int format_helper_exit_status(unsigned char child_state, int saved_errno, char *hex_errno); /* Space for hex values of child state, a slash, saved_errno (with leading minus) and newline (no null) */ #define HEX_ERRNO_SIZE (sizeof(char) * 2 + 1 + \ 1 + sizeof(int) * 2 + 1) #endif #endif #define ARRAY_LENGTH(x) ((sizeof(x)) / sizeof(x[0])) #endif tor-0.2.7.6/src/common/crypto_ed25519.c0000644000175000017500000004250412632034724014242 00000000000000/* Copyright (c) 2013-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /* Wrapper code for an ed25519 implementation. */ #include "orconfig.h" #ifdef HAVE_SYS_STAT_H #include #endif #include "crypto.h" #include "crypto_curve25519.h" #include "crypto_ed25519.h" #include "crypto_format.h" #include "torlog.h" #include "util.h" #include "ed25519/ref10/ed25519_ref10.h" #include "ed25519/donna/ed25519_donna_tor.h" #include static void pick_ed25519_impl(void); static int ed25519_impl_spot_check(void); /** An Ed25519 implementation */ typedef struct { int (*selftest)(void); int (*seckey)(unsigned char *); int (*seckey_expand)(unsigned char *, const unsigned char *); int (*pubkey)(unsigned char *, const unsigned char *); int (*keygen)(unsigned char *, unsigned char *); int (*open)(const unsigned char *, const unsigned char *, size_t, const unsigned char *); int (*sign)(unsigned char *, const unsigned char *, size_t, const unsigned char *, const unsigned char *); int (*open_batch)(const unsigned char **, size_t *, const unsigned char **, const unsigned char **, size_t, int *); int (*blind_secret_key)(unsigned char *, const unsigned char *, const unsigned char *); int (*blind_public_key)(unsigned char *, const unsigned char *, const unsigned char *); int (*pubkey_from_curve25519_pubkey)(unsigned char *, const unsigned char *, int); } ed25519_impl_t; static const ed25519_impl_t impl_ref10 = { NULL, ed25519_ref10_seckey, ed25519_ref10_seckey_expand, ed25519_ref10_pubkey, ed25519_ref10_keygen, ed25519_ref10_open, ed25519_ref10_sign, NULL, ed25519_ref10_blind_secret_key, ed25519_ref10_blind_public_key, ed25519_ref10_pubkey_from_curve25519_pubkey, }; static const ed25519_impl_t impl_donna = { ed25519_donna_selftest, ed25519_donna_seckey, ed25519_donna_seckey_expand, ed25519_donna_pubkey, ed25519_donna_keygen, ed25519_donna_open, ed25519_donna_sign, ed25519_sign_open_batch_donna, ed25519_donna_blind_secret_key, ed25519_donna_blind_public_key, ed25519_donna_pubkey_from_curve25519_pubkey, }; static const ed25519_impl_t *ed25519_impl = NULL; static inline const ed25519_impl_t * get_ed_impl(void) { if (PREDICT_UNLIKELY(ed25519_impl == NULL)) { pick_ed25519_impl(); } return ed25519_impl; } /** * Initialize a new ed25519 secret key in seckey_out. If * extra_strong, take the RNG inputs directly from the operating * system. Return 0 on success, -1 on failure. */ int ed25519_secret_key_generate(ed25519_secret_key_t *seckey_out, int extra_strong) { int r; uint8_t seed[32]; if (! extra_strong || crypto_strongest_rand(seed, sizeof(seed)) < 0) crypto_rand((char*)seed, sizeof(seed)); r = get_ed_impl()->seckey_expand(seckey_out->seckey, seed); memwipe(seed, 0, sizeof(seed)); return r < 0 ? -1 : 0; } /** * Given a 32-byte random seed in seed, expand it into an ed25519 * secret key in seckey_out. Return 0 on success, -1 on failure. */ int ed25519_secret_key_from_seed(ed25519_secret_key_t *seckey_out, const uint8_t *seed) { if (get_ed_impl()->seckey_expand(seckey_out->seckey, seed) < 0) return -1; return 0; } /** * Given a secret key in seckey, expand it into an * ed25519 public key. Return 0 on success, -1 on failure. */ int ed25519_public_key_generate(ed25519_public_key_t *pubkey_out, const ed25519_secret_key_t *seckey) { if (get_ed_impl()->pubkey(pubkey_out->pubkey, seckey->seckey) < 0) return -1; return 0; } /** Generate a new ed25519 keypair in keypair_out. If * extra_strong is set, try to mix some system entropy into the key * generation process. Return 0 on success, -1 on failure. */ int ed25519_keypair_generate(ed25519_keypair_t *keypair_out, int extra_strong) { if (ed25519_secret_key_generate(&keypair_out->seckey, extra_strong) < 0) return -1; if (ed25519_public_key_generate(&keypair_out->pubkey, &keypair_out->seckey)<0) return -1; return 0; } /** * Set signature_out to a signature of the len-byte message * msg, using the secret and public key in keypair. */ int ed25519_sign(ed25519_signature_t *signature_out, const uint8_t *msg, size_t len, const ed25519_keypair_t *keypair) { if (get_ed_impl()->sign(signature_out->sig, msg, len, keypair->seckey.seckey, keypair->pubkey.pubkey) < 0) { return -1; } return 0; } /** * Check whether if signature is a valid signature for the * len-byte message in msg made with the key pubkey. * * Return 0 if the signature is valid; -1 if it isn't. */ int ed25519_checksig(const ed25519_signature_t *signature, const uint8_t *msg, size_t len, const ed25519_public_key_t *pubkey) { return get_ed_impl()->open(signature->sig, msg, len, pubkey->pubkey) < 0 ? -1 : 0; } /** Validate every signature among those in checkable, which contains * exactly n_checkable elements. If okay_out is non-NULL, set * the i'th element of okay_out to 1 if the i'th element of * checkable is valid, and to 0 otherwise. Return 0 if every signature * was valid. Otherwise return -N, where N is the number of invalid * signatures. */ int ed25519_checksig_batch(int *okay_out, const ed25519_checkable_t *checkable, int n_checkable) { int i, res; const ed25519_impl_t *impl = get_ed_impl(); if (impl->open_batch == NULL) { /* No batch verification implementation available, fake it by checking the * each signature individually. */ res = 0; for (i = 0; i < n_checkable; ++i) { const ed25519_checkable_t *ch = &checkable[i]; int r = ed25519_checksig(&ch->signature, ch->msg, ch->len, ch->pubkey); if (r < 0) --res; if (okay_out) okay_out[i] = (r == 0); } } else { /* ed25519-donna style batch verification available. * * Theoretically, this should only be called if n_checkable >= 3, since * that's the threshold where the batch verification actually kicks in, * but the only difference is a few mallocs/frees. */ const uint8_t **ms; size_t *lens; const uint8_t **pks; const uint8_t **sigs; int *oks; int all_ok; ms = tor_malloc(sizeof(uint8_t*)*n_checkable); lens = tor_malloc(sizeof(size_t)*n_checkable); pks = tor_malloc(sizeof(uint8_t*)*n_checkable); sigs = tor_malloc(sizeof(uint8_t*)*n_checkable); oks = okay_out ? okay_out : tor_malloc(sizeof(int)*n_checkable); for (i = 0; i < n_checkable; ++i) { ms[i] = checkable[i].msg; lens[i] = checkable[i].len; pks[i] = checkable[i].pubkey->pubkey; sigs[i] = checkable[i].signature.sig; oks[i] = 0; } res = 0; all_ok = impl->open_batch(ms, lens, pks, sigs, n_checkable, oks); for (i = 0; i < n_checkable; ++i) { if (!oks[i]) --res; } /* XXX: For now sanity check oks with the return value. Once we have * more confidence in the code, if `all_ok == 0` we can skip iterating * over oks since all the signatures were found to be valid. */ tor_assert(((res == 0) && !all_ok) || ((res < 0) && all_ok)); tor_free(ms); tor_free(lens); tor_free(pks); tor_free(sigs); if (! okay_out) tor_free(oks); } return res; } /** * Given a curve25519 keypair in inp, generate a corresponding * ed25519 keypair in out, and set signbit_out to the * sign bit of the X coordinate of the ed25519 key. * * NOTE THAT IT IS PROBABLY NOT SAFE TO USE THE GENERATED KEY FOR ANYTHING * OUTSIDE OF WHAT'S PRESENTED IN PROPOSAL 228. In particular, it's probably * not a great idea to use it to sign attacker-supplied anything. */ int ed25519_keypair_from_curve25519_keypair(ed25519_keypair_t *out, int *signbit_out, const curve25519_keypair_t *inp) { const char string[] = "Derive high part of ed25519 key from curve25519 key"; ed25519_public_key_t pubkey_check; SHA512_CTX ctx; uint8_t sha512_output[64]; memcpy(out->seckey.seckey, inp->seckey.secret_key, 32); SHA512_Init(&ctx); SHA512_Update(&ctx, out->seckey.seckey, 32); SHA512_Update(&ctx, string, sizeof(string)); SHA512_Final(sha512_output, &ctx); memcpy(out->seckey.seckey + 32, sha512_output, 32); ed25519_public_key_generate(&out->pubkey, &out->seckey); *signbit_out = out->pubkey.pubkey[31] >> 7; ed25519_public_key_from_curve25519_public_key(&pubkey_check, &inp->pubkey, *signbit_out); tor_assert(fast_memeq(pubkey_check.pubkey, out->pubkey.pubkey, 32)); memwipe(&pubkey_check, 0, sizeof(pubkey_check)); memwipe(&ctx, 0, sizeof(ctx)); memwipe(sha512_output, 0, sizeof(sha512_output)); return 0; } /** * Given a curve25519 public key and sign bit of X coordinate of the ed25519 * public key, generate the corresponding ed25519 public key. */ int ed25519_public_key_from_curve25519_public_key(ed25519_public_key_t *pubkey, const curve25519_public_key_t *pubkey_in, int signbit) { return get_ed_impl()->pubkey_from_curve25519_pubkey(pubkey->pubkey, pubkey_in->public_key, signbit); } /** * Given an ed25519 keypair in inp, generate a corresponding * ed25519 keypair in out, blinded by the corresponding 32-byte input * in 'param'. * * Tor uses key blinding for the "next-generation" hidden services design: * service descriptors are encrypted with a key derived from the service's * long-term public key, and then signed with (and stored at a position * indexed by) a short-term key derived by blinding the long-term keys. */ int ed25519_keypair_blind(ed25519_keypair_t *out, const ed25519_keypair_t *inp, const uint8_t *param) { ed25519_public_key_t pubkey_check; get_ed_impl()->blind_secret_key(out->seckey.seckey, inp->seckey.seckey, param); ed25519_public_blind(&pubkey_check, &inp->pubkey, param); ed25519_public_key_generate(&out->pubkey, &out->seckey); tor_assert(fast_memeq(pubkey_check.pubkey, out->pubkey.pubkey, 32)); memwipe(&pubkey_check, 0, sizeof(pubkey_check)); return 0; } /** * Given an ed25519 public key in inp, generate a corresponding blinded * public key in out, blinded with the 32-byte parameter in * param. Return 0 on sucess, -1 on railure. */ int ed25519_public_blind(ed25519_public_key_t *out, const ed25519_public_key_t *inp, const uint8_t *param) { get_ed_impl()->blind_public_key(out->pubkey, inp->pubkey, param); return 0; } /** * Store seckey unencrypted to filename, marking it with tag. * Return 0 on success, -1 on failure. */ int ed25519_seckey_write_to_file(const ed25519_secret_key_t *seckey, const char *filename, const char *tag) { return crypto_write_tagged_contents_to_file(filename, "ed25519v1-secret", tag, seckey->seckey, sizeof(seckey->seckey)); } /** * Read seckey unencrypted from filename, storing it into * seckey_out. Set *tag_out to the tag it was marked with. * Return 0 on success, -1 on failure. */ int ed25519_seckey_read_from_file(ed25519_secret_key_t *seckey_out, char **tag_out, const char *filename) { ssize_t len; len = crypto_read_tagged_contents_from_file(filename, "ed25519v1-secret", tag_out, seckey_out->seckey, sizeof(seckey_out->seckey)); if (len == sizeof(seckey_out->seckey)) { return 0; } else if (len >= 0) { errno = EINVAL; } return -1; } /** * Store pubkey unencrypted to filename, marking it with tag. * Return 0 on success, -1 on failure. */ int ed25519_pubkey_write_to_file(const ed25519_public_key_t *pubkey, const char *filename, const char *tag) { return crypto_write_tagged_contents_to_file(filename, "ed25519v1-public", tag, pubkey->pubkey, sizeof(pubkey->pubkey)); } /** * Store pubkey unencrypted to filename, marking it with tag. * Return 0 on success, -1 on failure. */ int ed25519_pubkey_read_from_file(ed25519_public_key_t *pubkey_out, char **tag_out, const char *filename) { ssize_t len; len = crypto_read_tagged_contents_from_file(filename, "ed25519v1-public", tag_out, pubkey_out->pubkey, sizeof(pubkey_out->pubkey)); if (len == sizeof(pubkey_out->pubkey)) { return 0; } else if (len >= 0) { errno = EINVAL; } return -1; } /** Release all storage held for kp. */ void ed25519_keypair_free(ed25519_keypair_t *kp) { if (! kp) return; memwipe(kp, 0, sizeof(*kp)); tor_free(kp); } /** Return true iff key1 and key2 are the same public key. */ int ed25519_pubkey_eq(const ed25519_public_key_t *key1, const ed25519_public_key_t *key2) { tor_assert(key1); tor_assert(key2); return tor_memeq(key1->pubkey, key2->pubkey, ED25519_PUBKEY_LEN); } /** Check whether the given Ed25519 implementation seems to be working. * If so, return 0; otherwise return -1. */ static int ed25519_impl_spot_check(void) { static const uint8_t alicesk[32] = { 0xc5,0xaa,0x8d,0xf4,0x3f,0x9f,0x83,0x7b, 0xed,0xb7,0x44,0x2f,0x31,0xdc,0xb7,0xb1, 0x66,0xd3,0x85,0x35,0x07,0x6f,0x09,0x4b, 0x85,0xce,0x3a,0x2e,0x0b,0x44,0x58,0xf7 }; static const uint8_t alicepk[32] = { 0xfc,0x51,0xcd,0x8e,0x62,0x18,0xa1,0xa3, 0x8d,0xa4,0x7e,0xd0,0x02,0x30,0xf0,0x58, 0x08,0x16,0xed,0x13,0xba,0x33,0x03,0xac, 0x5d,0xeb,0x91,0x15,0x48,0x90,0x80,0x25 }; static const uint8_t alicemsg[2] = { 0xaf, 0x82 }; static const uint8_t alicesig[64] = { 0x62,0x91,0xd6,0x57,0xde,0xec,0x24,0x02, 0x48,0x27,0xe6,0x9c,0x3a,0xbe,0x01,0xa3, 0x0c,0xe5,0x48,0xa2,0x84,0x74,0x3a,0x44, 0x5e,0x36,0x80,0xd7,0xdb,0x5a,0xc3,0xac, 0x18,0xff,0x9b,0x53,0x8d,0x16,0xf2,0x90, 0xae,0x67,0xf7,0x60,0x98,0x4d,0xc6,0x59, 0x4a,0x7c,0x15,0xe9,0x71,0x6e,0xd2,0x8d, 0xc0,0x27,0xbe,0xce,0xea,0x1e,0xc4,0x0a }; const ed25519_impl_t *impl = get_ed_impl(); uint8_t sk[ED25519_SECKEY_LEN]; uint8_t pk[ED25519_PUBKEY_LEN]; uint8_t sig[ED25519_SIG_LEN]; int r = 0; /* Some implementations (eg: The modified Ed25519-donna) have handy self-test * code that sanity-checks the internals. If present, use that to screen out * catastrophic errors like massive compiler failure. */ if (impl->selftest && impl->selftest() != 0) goto fail; /* Validate results versus known answer tests. People really should be * running "make test" instead of relying on this, but it's better than * nothing. * * Test vectors taken from "EdDSA & Ed25519 - 6. Test Vectors for Ed25519 * (TEST3)" (draft-josefsson-eddsa-ed25519-03). */ /* Key expansion, public key derivation. */ if (impl->seckey_expand(sk, alicesk) < 0) goto fail; if (impl->pubkey(pk, sk) < 0) goto fail; if (fast_memneq(pk, alicepk, ED25519_PUBKEY_LEN)) goto fail; /* Signing, verification. */ if (impl->sign(sig, alicemsg, sizeof(alicemsg), sk, pk) < 0) return -1; if (fast_memneq(sig, alicesig, ED25519_SIG_LEN)) return -1; if (impl->open(sig, alicemsg, sizeof(alicemsg), pk) < 0) return -1; /* XXX/yawning: Someone that's more paranoid than I am, can write "Assume * ref0 is cannonical, and fuzz impl against it" if they want, but I doubt * that will catch anything that the known answer tests won't. */ goto end; fail: r = -1; end: return r; } /** Force the Ed25519 implementation to a given one, without sanity checking * the output. Used for testing. */ void ed25519_set_impl_params(int use_donna) { if (use_donna) ed25519_impl = &impl_donna; else ed25519_impl = &impl_ref10; } /** Choose whether to use the Ed25519-donna implementation. */ static void pick_ed25519_impl(void) { ed25519_impl = &impl_donna; if (ed25519_impl_spot_check() == 0) return; log_warn(LD_CRYPTO, "The Ed25519-donna implementation seems broken; using " "the ref10 implementation."); ed25519_impl = &impl_ref10; } /* Initialize the Ed25519 implementation. This is neccessary if you're * going to use them in a multithreaded setting, and not otherwise. */ void ed25519_init(void) { pick_ed25519_impl(); } tor-0.2.7.6/src/common/crypto_curve25519.h0000644000175000017500000000542612621363245015006 00000000000000/* Copyright (c) 2012-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef TOR_CRYPTO_CURVE25519_H #define TOR_CRYPTO_CURVE25519_H #include "testsupport.h" #include "torint.h" /** Length of a curve25519 public key when encoded. */ #define CURVE25519_PUBKEY_LEN 32 /** Length of a curve25519 secret key when encoded. */ #define CURVE25519_SECKEY_LEN 32 /** Length of the result of a curve25519 handshake. */ #define CURVE25519_OUTPUT_LEN 32 /** Wrapper type for a curve25519 public key */ typedef struct curve25519_public_key_t { uint8_t public_key[CURVE25519_PUBKEY_LEN]; } curve25519_public_key_t; /** Wrapper type for a curve25519 secret key */ typedef struct curve25519_secret_key_t { uint8_t secret_key[CURVE25519_SECKEY_LEN]; } curve25519_secret_key_t; /** A paired public and private key for curve25519. **/ typedef struct curve25519_keypair_t { curve25519_public_key_t pubkey; curve25519_secret_key_t seckey; } curve25519_keypair_t; /* These functions require that we actually know how to use curve25519 keys. * The other data structures and functions in this header let us parse them, * store them, and move them around. */ int curve25519_public_key_is_ok(const curve25519_public_key_t *); int curve25519_secret_key_generate(curve25519_secret_key_t *key_out, int extra_strong); void curve25519_public_key_generate(curve25519_public_key_t *key_out, const curve25519_secret_key_t *seckey); int curve25519_keypair_generate(curve25519_keypair_t *keypair_out, int extra_strong); void curve25519_handshake(uint8_t *output, const curve25519_secret_key_t *, const curve25519_public_key_t *); int curve25519_keypair_write_to_file(const curve25519_keypair_t *keypair, const char *fname, const char *tag); int curve25519_keypair_read_from_file(curve25519_keypair_t *keypair_out, char **tag_out, const char *fname); int curve25519_rand_seckey_bytes(uint8_t *out, int extra_strong); #ifdef CRYPTO_CURVE25519_PRIVATE STATIC int curve25519_impl(uint8_t *output, const uint8_t *secret, const uint8_t *basepoint); STATIC int curve25519_basepoint_impl(uint8_t *output, const uint8_t *secret); #endif #define CURVE25519_BASE64_PADDED_LEN 44 int curve25519_public_from_base64(curve25519_public_key_t *pkey, const char *input); int curve25519_public_to_base64(char *output, const curve25519_public_key_t *pkey); void curve25519_set_impl_params(int use_ed); void curve25519_init(void); #endif tor-0.2.7.6/src/common/compat_threads.c0000644000175000017500000001643112621363245014642 00000000000000/* Copyright (c) 2003-2004, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define _GNU_SOURCE #include "orconfig.h" #include #include "compat.h" #include "compat_threads.h" #include "util.h" #include "torlog.h" #ifdef HAVE_SYS_EVENTFD_H #include #endif #ifdef HAVE_FCNTL_H #include #endif #ifdef HAVE_UNISTD_H #include #endif /** Return a newly allocated, ready-for-use mutex. */ tor_mutex_t * tor_mutex_new(void) { tor_mutex_t *m = tor_malloc_zero(sizeof(tor_mutex_t)); tor_mutex_init(m); return m; } /** Return a newly allocated, ready-for-use mutex. This one might be * non-recursive, if that's faster. */ tor_mutex_t * tor_mutex_new_nonrecursive(void) { tor_mutex_t *m = tor_malloc_zero(sizeof(tor_mutex_t)); tor_mutex_init_nonrecursive(m); return m; } /** Release all storage and system resources held by m. */ void tor_mutex_free(tor_mutex_t *m) { if (!m) return; tor_mutex_uninit(m); tor_free(m); } /** Allocate and return a new condition variable. */ tor_cond_t * tor_cond_new(void) { tor_cond_t *cond = tor_malloc(sizeof(tor_cond_t)); if (tor_cond_init(cond)<0) tor_free(cond); return cond; } /** Free all storage held in c. */ void tor_cond_free(tor_cond_t *c) { if (!c) return; tor_cond_uninit(c); tor_free(c); } /** Identity of the "main" thread */ static unsigned long main_thread_id = -1; /** Start considering the current thread to be the 'main thread'. This has * no effect on anything besides in_main_thread(). */ void set_main_thread(void) { main_thread_id = tor_get_thread_id(); } /** Return true iff called from the main thread. */ int in_main_thread(void) { return main_thread_id == tor_get_thread_id(); } #if defined(HAVE_EVENTFD) || defined(HAVE_PIPE) /* As write(), but retry on EINTR */ static int write_ni(int fd, const void *buf, size_t n) { int r; again: r = (int) write(fd, buf, n); if (r < 0 && errno == EINTR) goto again; return r; } /* As read(), but retry on EINTR */ static int read_ni(int fd, void *buf, size_t n) { int r; again: r = (int) read(fd, buf, n); if (r < 0 && errno == EINTR) goto again; return r; } #endif /** As send(), but retry on EINTR. */ static int send_ni(int fd, const void *buf, size_t n, int flags) { int r; again: r = (int) send(fd, buf, n, flags); if (r < 0 && ERRNO_IS_EINTR(tor_socket_errno(fd))) goto again; return r; } /** As recv(), but retry on EINTR. */ static int recv_ni(int fd, void *buf, size_t n, int flags) { int r; again: r = (int) recv(fd, buf, n, flags); if (r < 0 && ERRNO_IS_EINTR(tor_socket_errno(fd))) goto again; return r; } #ifdef HAVE_EVENTFD /* Increment the event count on an eventfd fd */ static int eventfd_alert(int fd) { uint64_t u = 1; int r = write_ni(fd, (void*)&u, sizeof(u)); if (r < 0 && errno != EAGAIN) return -1; return 0; } /* Drain all events from an eventfd fd. */ static int eventfd_drain(int fd) { uint64_t u = 0; int r = read_ni(fd, (void*)&u, sizeof(u)); if (r < 0 && errno != EAGAIN) return -1; return 0; } #endif #ifdef HAVE_PIPE /** Send a byte over a pipe. Return 0 on success or EAGAIN; -1 on error */ static int pipe_alert(int fd) { ssize_t r = write_ni(fd, "x", 1); if (r < 0 && errno != EAGAIN) return -1; return 0; } /** Drain all input from a pipe fd and ignore it. Return 0 on * success, -1 on error. */ static int pipe_drain(int fd) { char buf[32]; ssize_t r; do { r = read_ni(fd, buf, sizeof(buf)); } while (r > 0); if (r < 0 && errno != EAGAIN) return -1; /* A value of r = 0 means EOF on the fd so successfully drained. */ return 0; } #endif /** Send a byte on socket fdt. Return 0 on success or EAGAIN, * -1 on error. */ static int sock_alert(tor_socket_t fd) { ssize_t r = send_ni(fd, "x", 1, 0); if (r < 0 && !ERRNO_IS_EAGAIN(tor_socket_errno(fd))) return -1; return 0; } /** Drain all the input from a socket fd, and ignore it. Return 0 on * success, -1 on error. */ static int sock_drain(tor_socket_t fd) { char buf[32]; ssize_t r; do { r = recv_ni(fd, buf, sizeof(buf), 0); } while (r > 0); if (r < 0 && !ERRNO_IS_EAGAIN(tor_socket_errno(fd))) return -1; /* A value of r = 0 means EOF on the fd so successfully drained. */ return 0; } /** Allocate a new set of alert sockets, and set the appropriate function * pointers, in socks_out. */ int alert_sockets_create(alert_sockets_t *socks_out, uint32_t flags) { tor_socket_t socks[2] = { TOR_INVALID_SOCKET, TOR_INVALID_SOCKET }; #ifdef HAVE_EVENTFD /* First, we try the Linux eventfd() syscall. This gives a 64-bit counter * associated with a single file descriptor. */ #if defined(EFD_CLOEXEC) && defined(EFD_NONBLOCK) if (!(flags & ASOCKS_NOEVENTFD2)) socks[0] = eventfd(0, EFD_CLOEXEC|EFD_NONBLOCK); #endif if (socks[0] < 0 && !(flags & ASOCKS_NOEVENTFD)) { socks[0] = eventfd(0,0); if (socks[0] >= 0) { if (fcntl(socks[0], F_SETFD, FD_CLOEXEC) < 0 || set_socket_nonblocking(socks[0]) < 0) { close(socks[0]); return -1; } } } if (socks[0] >= 0) { socks_out->read_fd = socks_out->write_fd = socks[0]; socks_out->alert_fn = eventfd_alert; socks_out->drain_fn = eventfd_drain; return 0; } #endif #ifdef HAVE_PIPE2 /* Now we're going to try pipes. First type the pipe2() syscall, if we * have it, so we can save some calls... */ if (!(flags & ASOCKS_NOPIPE2) && pipe2(socks, O_NONBLOCK|O_CLOEXEC) == 0) { socks_out->read_fd = socks[0]; socks_out->write_fd = socks[1]; socks_out->alert_fn = pipe_alert; socks_out->drain_fn = pipe_drain; return 0; } #endif #ifdef HAVE_PIPE /* Now try the regular pipe() syscall. Pipes have a bit lower overhead than * socketpairs, fwict. */ if (!(flags & ASOCKS_NOPIPE) && pipe(socks) == 0) { if (fcntl(socks[0], F_SETFD, FD_CLOEXEC) < 0 || fcntl(socks[1], F_SETFD, FD_CLOEXEC) < 0 || set_socket_nonblocking(socks[0]) < 0 || set_socket_nonblocking(socks[1]) < 0) { close(socks[0]); close(socks[1]); return -1; } socks_out->read_fd = socks[0]; socks_out->write_fd = socks[1]; socks_out->alert_fn = pipe_alert; socks_out->drain_fn = pipe_drain; return 0; } #endif /* If nothing else worked, fall back on socketpair(). */ if (!(flags & ASOCKS_NOSOCKETPAIR) && tor_socketpair(AF_UNIX, SOCK_STREAM, 0, socks) == 0) { if (set_socket_nonblocking(socks[0]) < 0 || set_socket_nonblocking(socks[1])) { tor_close_socket(socks[0]); tor_close_socket(socks[1]); return -1; } socks_out->read_fd = socks[0]; socks_out->write_fd = socks[1]; socks_out->alert_fn = sock_alert; socks_out->drain_fn = sock_drain; return 0; } return -1; } /** Close the sockets in socks. */ void alert_sockets_close(alert_sockets_t *socks) { if (socks->alert_fn == sock_alert) { /* they are sockets. */ tor_close_socket(socks->read_fd); tor_close_socket(socks->write_fd); } else { close(socks->read_fd); if (socks->write_fd != socks->read_fd) close(socks->write_fd); } socks->read_fd = socks->write_fd = -1; } tor-0.2.7.6/src/common/crypto_format.c0000644000175000017500000002003012621363245014523 00000000000000/* Copyright (c) 2001, Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /* Formatting and parsing code for crypto-related data structures. */ #include "orconfig.h" #ifdef HAVE_SYS_STAT_H #include #endif #include "container.h" #include "crypto.h" #include "crypto_curve25519.h" #include "crypto_ed25519.h" #include "crypto_format.h" #include "util.h" #include "util_format.h" #include "torlog.h" /** Write the datalen bytes from data to the file named * fname in the tagged-data format. This format contains a * 32-byte header, followed by the data itself. The header is the * NUL-padded string "== typestring: tag ==". The length * of typestring and tag must therefore be no more than * 24. **/ int crypto_write_tagged_contents_to_file(const char *fname, const char *typestring, const char *tag, const uint8_t *data, size_t datalen) { char header[32]; smartlist_t *chunks = smartlist_new(); sized_chunk_t ch0, ch1; int r = -1; memset(header, 0, sizeof(header)); if (tor_snprintf(header, sizeof(header), "== %s: %s ==", typestring, tag) < 0) goto end; ch0.bytes = header; ch0.len = 32; ch1.bytes = (const char*) data; ch1.len = datalen; smartlist_add(chunks, &ch0); smartlist_add(chunks, &ch1); r = write_chunks_to_file(fname, chunks, 1, 0); end: smartlist_free(chunks); return r; } /** Read a tagged-data file from fname into the * data_out_len-byte buffer in data_out. Check that the * typestring matches typestring; store the tag into a newly allocated * string in tag_out. Return -1 on failure, and the number of bytes of * data on success. Preserves the errno from reading the file. */ ssize_t crypto_read_tagged_contents_from_file(const char *fname, const char *typestring, char **tag_out, uint8_t *data_out, ssize_t data_out_len) { char prefix[33]; char *content = NULL; struct stat st; ssize_t r = -1; size_t st_size = 0; int saved_errno = 0; *tag_out = NULL; st.st_size = 0; content = read_file_to_str(fname, RFTS_BIN|RFTS_IGNORE_MISSING, &st); if (! content) { saved_errno = errno; goto end; } if (st.st_size < 32 || st.st_size > 32 + data_out_len) { saved_errno = EINVAL; goto end; } st_size = (size_t)st.st_size; memcpy(prefix, content, 32); prefix[32] = 0; /* Check type, extract tag. */ if (strcmpstart(prefix, "== ") || strcmpend(prefix, " ==") || ! tor_mem_is_zero(prefix+strlen(prefix), 32-strlen(prefix))) { saved_errno = EINVAL; goto end; } if (strcmpstart(prefix+3, typestring) || 3+strlen(typestring) >= 32 || strcmpstart(prefix+3+strlen(typestring), ": ")) { saved_errno = EINVAL; goto end; } *tag_out = tor_strndup(prefix+5+strlen(typestring), strlen(prefix)-8-strlen(typestring)); memcpy(data_out, content+32, st_size-32); r = st_size - 32; end: if (content) memwipe(content, 0, st_size); tor_free(content); if (saved_errno) errno = saved_errno; return r; } int curve25519_public_to_base64(char *output, const curve25519_public_key_t *pkey) { char buf[128]; base64_encode(buf, sizeof(buf), (const char*)pkey->public_key, CURVE25519_PUBKEY_LEN, 0); buf[CURVE25519_BASE64_PADDED_LEN] = '\0'; memcpy(output, buf, CURVE25519_BASE64_PADDED_LEN+1); return 0; } int curve25519_public_from_base64(curve25519_public_key_t *pkey, const char *input) { size_t len = strlen(input); if (len == CURVE25519_BASE64_PADDED_LEN - 1) { /* not padded */ return digest256_from_base64((char*)pkey->public_key, input); } else if (len == CURVE25519_BASE64_PADDED_LEN) { char buf[128]; if (base64_decode(buf, sizeof(buf), input, len) != CURVE25519_PUBKEY_LEN) return -1; memcpy(pkey->public_key, buf, CURVE25519_PUBKEY_LEN); return 0; } else { return -1; } } /** Try to decode the string input into an ed25519 public key. On * success, store the value in pkey and return 0. Otherwise return * -1. */ int ed25519_public_from_base64(ed25519_public_key_t *pkey, const char *input) { return digest256_from_base64((char*)pkey->pubkey, input); } /** Encode the public key pkey into the buffer at output, * which must have space for ED25519_BASE64_LEN bytes of encoded key, * plus one byte for a terminating NUL. Return 0 on success, -1 on failure. */ int ed25519_public_to_base64(char *output, const ed25519_public_key_t *pkey) { return digest256_to_base64(output, (const char *)pkey->pubkey); } /** Encode the signature sig into the buffer at output, * which must have space for ED25519_SIG_BASE64_LEN bytes of encoded signature, * plus one byte for a terminating NUL. Return 0 on success, -1 on failure. */ int ed25519_signature_to_base64(char *output, const ed25519_signature_t *sig) { char buf[256]; int n = base64_encode_nopad(buf, sizeof(buf), sig->sig, ED25519_SIG_LEN); tor_assert(n == ED25519_SIG_BASE64_LEN); memcpy(output, buf, ED25519_SIG_BASE64_LEN+1); return 0; } /** Try to decode the string input into an ed25519 signature. On * success, store the value in sig and return 0. Otherwise return * -1. */ int ed25519_signature_from_base64(ed25519_signature_t *sig, const char *input) { if (strlen(input) != ED25519_SIG_BASE64_LEN) return -1; char buf[ED25519_SIG_BASE64_LEN+3]; memcpy(buf, input, ED25519_SIG_BASE64_LEN); buf[ED25519_SIG_BASE64_LEN+0] = '='; buf[ED25519_SIG_BASE64_LEN+1] = '='; buf[ED25519_SIG_BASE64_LEN+2] = 0; char decoded[128]; int n = base64_decode(decoded, sizeof(decoded), buf, strlen(buf)); if (n < 0 || n != ED25519_SIG_LEN) return -1; memcpy(sig->sig, decoded, ED25519_SIG_LEN); return 0; } /** Base64 encode DIGEST_LINE bytes from digest, remove the trailing = * characters, and store the nul-terminated result in the first * BASE64_DIGEST_LEN+1 bytes of d64. */ /* XXXX unify with crypto_format.c code */ int digest_to_base64(char *d64, const char *digest) { char buf[256]; base64_encode(buf, sizeof(buf), digest, DIGEST_LEN, 0); buf[BASE64_DIGEST_LEN] = '\0'; memcpy(d64, buf, BASE64_DIGEST_LEN+1); return 0; } /** Given a base64 encoded, nul-terminated digest in d64 (without * trailing newline or = characters), decode it and store the result in the * first DIGEST_LEN bytes at digest. */ /* XXXX unify with crypto_format.c code */ int digest_from_base64(char *digest, const char *d64) { if (base64_decode(digest, DIGEST_LEN, d64, strlen(d64)) == DIGEST_LEN) return 0; else return -1; } /** Base64 encode DIGEST256_LINE bytes from digest, remove the * trailing = characters, and store the nul-terminated result in the first * BASE64_DIGEST256_LEN+1 bytes of d64. */ /* XXXX unify with crypto_format.c code */ int digest256_to_base64(char *d64, const char *digest) { char buf[256]; base64_encode(buf, sizeof(buf), digest, DIGEST256_LEN, 0); buf[BASE64_DIGEST256_LEN] = '\0'; memcpy(d64, buf, BASE64_DIGEST256_LEN+1); return 0; } /** Given a base64 encoded, nul-terminated digest in d64 (without * trailing newline or = characters), decode it and store the result in the * first DIGEST256_LEN bytes at digest. */ /* XXXX unify with crypto_format.c code */ int digest256_from_base64(char *digest, const char *d64) { if (base64_decode(digest, DIGEST256_LEN, d64, strlen(d64)) == DIGEST256_LEN) return 0; else return -1; } tor-0.2.7.6/src/common/crypto.h0000644000175000017500000003127112632034724013170 00000000000000/* Copyright (c) 2001, Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file crypto.h * * \brief Headers for crypto.c **/ #ifndef TOR_CRYPTO_H #define TOR_CRYPTO_H #include #include "torint.h" #include "testsupport.h" /* Macro to create an arbitrary OpenSSL version number as used by OPENSSL_VERSION_NUMBER or SSLeay(), since the actual numbers are a bit hard to read. Don't use this directly, instead use one of the other OPENSSL_V macros below. The format is: 4 bits major, 8 bits minor, 8 bits fix, 8 bits patch, 4 bit status. */ #define OPENSSL_VER(a,b,c,d,e) \ (((a)<<28) | \ ((b)<<20) | \ ((c)<<12) | \ ((d)<< 4) | \ (e)) /** An openssl release number. For example, OPENSSL_V(0,9,8,'j') is the * version for the released version of 0.9.8j */ #define OPENSSL_V(a,b,c,d) \ OPENSSL_VER((a),(b),(c),(d)-'a'+1,0xf) /** An openssl release number for the first release in the series. For * example, OPENSSL_V_NOPATCH(1,0,0) is the first released version of OpenSSL * 1.0.0. */ #define OPENSSL_V_NOPATCH(a,b,c) \ OPENSSL_VER((a),(b),(c),0,0xf) /** The first version that would occur for any alpha or beta in an openssl * series. For example, OPENSSL_V_SERIES(0,9,8) is greater than any released * 0.9.7, and less than any released 0.9.8. */ #define OPENSSL_V_SERIES(a,b,c) \ OPENSSL_VER((a),(b),(c),0,0) /** Length of the output of our message digest. */ #define DIGEST_LEN 20 /** Length of the output of our second (improved) message digests. (For now * this is just sha256, but it could be any other 256-bit digest.) */ #define DIGEST256_LEN 32 /** Length of our symmetric cipher's keys. */ #define CIPHER_KEY_LEN 16 /** Length of our symmetric cipher's IV. */ #define CIPHER_IV_LEN 16 /** Length of our public keys. */ #define PK_BYTES (1024/8) /** Length of our DH keys. */ #define DH_BYTES (1024/8) /** Length of a sha1 message digest when encoded in base64 with trailing = * signs removed. */ #define BASE64_DIGEST_LEN 27 /** Length of a sha256 message digest when encoded in base64 with trailing = * signs removed. */ #define BASE64_DIGEST256_LEN 43 /** Constant used to indicate OAEP padding for public-key encryption */ #define PK_PKCS1_OAEP_PADDING 60002 /** Number of bytes added for PKCS1-OAEP padding. */ #define PKCS1_OAEP_PADDING_OVERHEAD 42 /** Length of encoded public key fingerprints, including space; but not * including terminating NUL. */ #define FINGERPRINT_LEN 49 /** Length of hex encoding of SHA1 digest, not including final NUL. */ #define HEX_DIGEST_LEN 40 /** Length of hex encoding of SHA256 digest, not including final NUL. */ #define HEX_DIGEST256_LEN 64 typedef enum { DIGEST_SHA1 = 0, DIGEST_SHA256 = 1, } digest_algorithm_t; #define N_DIGEST_ALGORITHMS (DIGEST_SHA256+1) #define digest_algorithm_bitfield_t ENUM_BF(digest_algorithm_t) /** A set of all the digests we know how to compute, taken on a single * string. Any digests that are shorter than 256 bits are right-padded * with 0 bits. * * Note that this representation wastes 12 bytes for the SHA1 case, so * don't use it for anything where we need to allocate a whole bunch at * once. **/ typedef struct { char d[N_DIGEST_ALGORITHMS][DIGEST256_LEN]; } digests_t; typedef struct crypto_pk_t crypto_pk_t; typedef struct crypto_cipher_t crypto_cipher_t; typedef struct crypto_digest_t crypto_digest_t; typedef struct crypto_dh_t crypto_dh_t; /* global state */ const char * crypto_openssl_get_version_str(void); const char * crypto_openssl_get_header_version_str(void); int crypto_early_init(void); int crypto_global_init(int hardwareAccel, const char *accelName, const char *accelPath); void crypto_thread_cleanup(void); int crypto_global_cleanup(void); /* environment setup */ crypto_pk_t *crypto_pk_new(void); void crypto_pk_free(crypto_pk_t *env); void crypto_set_tls_dh_prime(void); crypto_cipher_t *crypto_cipher_new(const char *key); crypto_cipher_t *crypto_cipher_new_with_iv(const char *key, const char *iv); void crypto_cipher_free(crypto_cipher_t *env); /* public key crypto */ int crypto_pk_generate_key_with_bits(crypto_pk_t *env, int bits); #define crypto_pk_generate_key(env) \ crypto_pk_generate_key_with_bits((env), (PK_BYTES*8)) int crypto_pk_read_private_key_from_filename(crypto_pk_t *env, const char *keyfile); int crypto_pk_write_public_key_to_string(crypto_pk_t *env, char **dest, size_t *len); int crypto_pk_write_private_key_to_string(crypto_pk_t *env, char **dest, size_t *len); int crypto_pk_read_public_key_from_string(crypto_pk_t *env, const char *src, size_t len); int crypto_pk_read_private_key_from_string(crypto_pk_t *env, const char *s, ssize_t len); int crypto_pk_write_private_key_to_filename(crypto_pk_t *env, const char *fname); int crypto_pk_check_key(crypto_pk_t *env); int crypto_pk_cmp_keys(const crypto_pk_t *a, const crypto_pk_t *b); int crypto_pk_eq_keys(const crypto_pk_t *a, const crypto_pk_t *b); size_t crypto_pk_keysize(const crypto_pk_t *env); int crypto_pk_num_bits(crypto_pk_t *env); crypto_pk_t *crypto_pk_dup_key(crypto_pk_t *orig); crypto_pk_t *crypto_pk_copy_full(crypto_pk_t *orig); int crypto_pk_key_is_private(const crypto_pk_t *key); int crypto_pk_public_exponent_ok(crypto_pk_t *env); int crypto_pk_public_encrypt(crypto_pk_t *env, char *to, size_t tolen, const char *from, size_t fromlen, int padding); int crypto_pk_private_decrypt(crypto_pk_t *env, char *to, size_t tolen, const char *from, size_t fromlen, int padding, int warnOnFailure); int crypto_pk_public_checksig(const crypto_pk_t *env, char *to, size_t tolen, const char *from, size_t fromlen); int crypto_pk_public_checksig_digest(crypto_pk_t *env, const char *data, size_t datalen, const char *sig, size_t siglen); int crypto_pk_private_sign(const crypto_pk_t *env, char *to, size_t tolen, const char *from, size_t fromlen); int crypto_pk_private_sign_digest(crypto_pk_t *env, char *to, size_t tolen, const char *from, size_t fromlen); int crypto_pk_public_hybrid_encrypt(crypto_pk_t *env, char *to, size_t tolen, const char *from, size_t fromlen, int padding, int force); int crypto_pk_private_hybrid_decrypt(crypto_pk_t *env, char *to, size_t tolen, const char *from, size_t fromlen, int padding, int warnOnFailure); int crypto_pk_asn1_encode(crypto_pk_t *pk, char *dest, size_t dest_len); crypto_pk_t *crypto_pk_asn1_decode(const char *str, size_t len); int crypto_pk_get_digest(const crypto_pk_t *pk, char *digest_out); int crypto_pk_get_all_digests(crypto_pk_t *pk, digests_t *digests_out); int crypto_pk_get_fingerprint(crypto_pk_t *pk, char *fp_out,int add_space); int crypto_pk_get_hashed_fingerprint(crypto_pk_t *pk, char *fp_out); int crypto_pk_base64_encode(const crypto_pk_t *pk, char **priv_out); crypto_pk_t *crypto_pk_base64_decode(const char *str, size_t len); /* symmetric crypto */ const char *crypto_cipher_get_key(crypto_cipher_t *env); int crypto_cipher_encrypt(crypto_cipher_t *env, char *to, const char *from, size_t fromlen); int crypto_cipher_decrypt(crypto_cipher_t *env, char *to, const char *from, size_t fromlen); int crypto_cipher_crypt_inplace(crypto_cipher_t *env, char *d, size_t len); int crypto_cipher_encrypt_with_iv(const char *key, char *to, size_t tolen, const char *from, size_t fromlen); int crypto_cipher_decrypt_with_iv(const char *key, char *to, size_t tolen, const char *from, size_t fromlen); /* SHA-1 and other digests. */ int crypto_digest(char *digest, const char *m, size_t len); int crypto_digest256(char *digest, const char *m, size_t len, digest_algorithm_t algorithm); int crypto_digest_all(digests_t *ds_out, const char *m, size_t len); struct smartlist_t; void crypto_digest_smartlist_prefix(char *digest_out, size_t len_out, const char *prepend, const struct smartlist_t *lst, const char *append, digest_algorithm_t alg); void crypto_digest_smartlist(char *digest_out, size_t len_out, const struct smartlist_t *lst, const char *append, digest_algorithm_t alg); const char *crypto_digest_algorithm_get_name(digest_algorithm_t alg); int crypto_digest_algorithm_parse_name(const char *name); crypto_digest_t *crypto_digest_new(void); crypto_digest_t *crypto_digest256_new(digest_algorithm_t algorithm); void crypto_digest_free(crypto_digest_t *digest); void crypto_digest_add_bytes(crypto_digest_t *digest, const char *data, size_t len); void crypto_digest_get_digest(crypto_digest_t *digest, char *out, size_t out_len); crypto_digest_t *crypto_digest_dup(const crypto_digest_t *digest); void crypto_digest_assign(crypto_digest_t *into, const crypto_digest_t *from); void crypto_hmac_sha256(char *hmac_out, const char *key, size_t key_len, const char *msg, size_t msg_len); /* Key negotiation */ #define DH_TYPE_CIRCUIT 1 #define DH_TYPE_REND 2 #define DH_TYPE_TLS 3 crypto_dh_t *crypto_dh_new(int dh_type); crypto_dh_t *crypto_dh_dup(const crypto_dh_t *dh); int crypto_dh_get_bytes(crypto_dh_t *dh); int crypto_dh_generate_public(crypto_dh_t *dh); int crypto_dh_get_public(crypto_dh_t *dh, char *pubkey_out, size_t pubkey_out_len); ssize_t crypto_dh_compute_secret(int severity, crypto_dh_t *dh, const char *pubkey, size_t pubkey_len, char *secret_out, size_t secret_out_len); void crypto_dh_free(crypto_dh_t *dh); int crypto_expand_key_material_TAP(const uint8_t *key_in, size_t key_in_len, uint8_t *key_out, size_t key_out_len); int crypto_expand_key_material_rfc5869_sha256( const uint8_t *key_in, size_t key_in_len, const uint8_t *salt_in, size_t salt_in_len, const uint8_t *info_in, size_t info_in_len, uint8_t *key_out, size_t key_out_len); /* random numbers */ int crypto_seed_rng(void); MOCK_DECL(int,crypto_rand,(char *to, size_t n)); int crypto_rand_unmocked(char *to, size_t n); int crypto_strongest_rand(uint8_t *out, size_t out_len); int crypto_rand_int(unsigned int max); int crypto_rand_int_range(unsigned int min, unsigned int max); uint64_t crypto_rand_uint64_range(uint64_t min, uint64_t max); time_t crypto_rand_time_range(time_t min, time_t max); uint64_t crypto_rand_uint64(uint64_t max); double crypto_rand_double(void); struct tor_weak_rng_t; void crypto_seed_weak_rng(struct tor_weak_rng_t *rng); int crypto_init_siphash_key(void); char *crypto_random_hostname(int min_rand_len, int max_rand_len, const char *prefix, const char *suffix); struct smartlist_t; void *smartlist_choose(const struct smartlist_t *sl); void smartlist_shuffle(struct smartlist_t *sl); /** OpenSSL-based utility functions. */ void memwipe(void *mem, uint8_t byte, size_t sz); /* Prototypes for private functions only used by tortls.c, crypto.c, and the * unit tests. */ struct rsa_st; struct evp_pkey_st; struct dh_st; struct rsa_st *crypto_pk_get_rsa_(crypto_pk_t *env); crypto_pk_t *crypto_new_pk_from_rsa_(struct rsa_st *rsa); struct evp_pkey_st *crypto_pk_get_evp_pkey_(crypto_pk_t *env, int private); struct dh_st *crypto_dh_get_dh_(crypto_dh_t *dh); void crypto_add_spaces_to_fp(char *out, size_t outlen, const char *in); #endif tor-0.2.7.6/src/common/util_process.h0000644000175000017500000000147112621363245014363 00000000000000/* Copyright (c) 2011-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file util_process.h * \brief Headers for util_process.c **/ #ifndef TOR_UTIL_PROCESS_H #define TOR_UTIL_PROCESS_H #ifndef _WIN32 /** A callback structure waiting for us to get a SIGCHLD informing us that a * PID has been closed. Created by set_waitpid_callback. Cancelled or cleaned- * up from clear_waitpid_callback(). Do not access outside of the main thread; * do not access from inside a signal handler. */ typedef struct waitpid_callback_t waitpid_callback_t; waitpid_callback_t *set_waitpid_callback(pid_t pid, void (*fn)(int, void *), void *arg); void clear_waitpid_callback(waitpid_callback_t *ent); void notify_pending_waitpid_callbacks(void); #endif #endif tor-0.2.7.6/src/common/include.am0000644000175000017500000000775712631612325013453 00000000000000 noinst_LIBRARIES += \ src/common/libor.a \ src/common/libor-crypto.a \ src/common/libor-event.a if UNITTESTS_ENABLED noinst_LIBRARIES += \ src/common/libor-testing.a \ src/common/libor-crypto-testing.a \ src/common/libor-event-testing.a endif EXTRA_DIST += src/common/Makefile.nmake #CFLAGS = -Wall -Wpointer-arith -O2 AM_CPPFLAGS += -I$(srcdir)/src/common -Isrc/common -I$(srcdir)/src/ext/trunnel -I$(srcdir)/src/trunnel if USE_OPENBSD_MALLOC libor_extra_source=src/ext/OpenBSD_malloc_Linux.c else libor_extra_source= endif src_common_libcurve25519_donna_a_CFLAGS= if BUILD_CURVE25519_DONNA src_common_libcurve25519_donna_a_SOURCES=\ src/ext/curve25519_donna/curve25519-donna.c src_common_libcurve25519_donna_a_CFLAGS+=\ @F_OMIT_FRAME_POINTER@ noinst_LIBRARIES+=src/common/libcurve25519_donna.a LIBDONNA=src/common/libcurve25519_donna.a else if BUILD_CURVE25519_DONNA_C64 src_common_libcurve25519_donna_a_SOURCES=\ src/ext/curve25519_donna/curve25519-donna-c64.c noinst_LIBRARIES+=src/common/libcurve25519_donna.a LIBDONNA=src/common/libcurve25519_donna.a else LIBDONNA= endif endif LIBDONNA += $(LIBED25519_REF10) LIBDONNA += $(LIBED25519_DONNA) if THREADS_PTHREADS threads_impl_source=src/common/compat_pthreads.c endif if THREADS_WIN32 threads_impl_source=src/common/compat_winthreads.c endif if BUILD_READPASSPHRASE_C readpassphrase_source=src/ext/readpassphrase.c else readpassphrase_source= endif LIBOR_A_SOURCES = \ src/common/address.c \ src/common/backtrace.c \ src/common/compat.c \ src/common/compat_threads.c \ src/common/container.c \ src/common/di_ops.c \ src/common/log.c \ src/common/memarea.c \ src/common/util.c \ src/common/util_format.c \ src/common/util_process.c \ src/common/sandbox.c \ src/common/workqueue.c \ src/ext/csiphash.c \ src/ext/trunnel/trunnel.c \ $(libor_extra_source) \ $(threads_impl_source) \ $(readpassphrase_source) src/common/log.o: micro-revision.i LIBOR_CRYPTO_A_SOURCES = \ src/common/aes.c \ src/common/crypto.c \ src/common/crypto_pwbox.c \ src/common/crypto_s2k.c \ src/common/crypto_format.c \ src/common/torgzip.c \ src/common/tortls.c \ src/trunnel/pwbox.c \ src/common/crypto_curve25519.c \ src/common/crypto_ed25519.c LIBOR_EVENT_A_SOURCES = \ src/common/compat_libevent.c \ src/common/procmon.c src_common_libor_a_SOURCES = $(LIBOR_A_SOURCES) src_common_libor_crypto_a_SOURCES = $(LIBOR_CRYPTO_A_SOURCES) src_common_libor_event_a_SOURCES = $(LIBOR_EVENT_A_SOURCES) src_common_libor_testing_a_SOURCES = $(LIBOR_A_SOURCES) src_common_libor_crypto_testing_a_SOURCES = $(LIBOR_CRYPTO_A_SOURCES) src_common_libor_event_testing_a_SOURCES = $(LIBOR_EVENT_A_SOURCES) src_common_libor_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS) src_common_libor_crypto_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS) src_common_libor_event_testing_a_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS) src_common_libor_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) src_common_libor_crypto_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) src_common_libor_event_testing_a_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) COMMONHEADERS = \ src/common/address.h \ src/common/backtrace.h \ src/common/aes.h \ src/common/ciphers.inc \ src/common/compat.h \ src/common/compat_libevent.h \ src/common/compat_threads.h \ src/common/container.h \ src/common/crypto.h \ src/common/crypto_curve25519.h \ src/common/crypto_ed25519.h \ src/common/crypto_format.h \ src/common/crypto_pwbox.h \ src/common/crypto_s2k.h \ src/common/di_ops.h \ src/common/memarea.h \ src/common/linux_syscalls.inc \ src/common/procmon.h \ src/common/sandbox.h \ src/common/testsupport.h \ src/common/torgzip.h \ src/common/torint.h \ src/common/torlog.h \ src/common/tortls.h \ src/common/util.h \ src/common/util_format.h \ src/common/util_process.h \ src/common/workqueue.h noinst_HEADERS+= $(COMMONHEADERS) tor-0.2.7.6/src/common/workqueue.h0000644000175000017500000000367012621363245013702 00000000000000/* Copyright (c) 2013, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef TOR_WORKQUEUE_H #define TOR_WORKQUEUE_H #include "compat.h" /** A replyqueue is used to tell the main thread about the outcome of * work that we queued for the the workers. */ typedef struct replyqueue_s replyqueue_t; /** A thread-pool manages starting threads and passing work to them. */ typedef struct threadpool_s threadpool_t; /** A workqueue entry represents a request that has been passed to a thread * pool. */ typedef struct workqueue_entry_s workqueue_entry_t; /** Possible return value from a work function: */ typedef enum { WQ_RPL_REPLY = 0, /** indicates success */ WQ_RPL_ERROR = 1, /** indicates fatal error */ WQ_RPL_SHUTDOWN = 2, /** indicates thread is shutting down */ } workqueue_reply_t; workqueue_entry_t *threadpool_queue_work(threadpool_t *pool, workqueue_reply_t (*fn)(void *, void *), void (*reply_fn)(void *), void *arg); int threadpool_queue_update(threadpool_t *pool, void *(*dup_fn)(void *), workqueue_reply_t (*fn)(void *, void *), void (*free_fn)(void *), void *arg); void *workqueue_entry_cancel(workqueue_entry_t *pending_work); threadpool_t *threadpool_new(int n_threads, replyqueue_t *replyqueue, void *(*new_thread_state_fn)(void*), void (*free_thread_state_fn)(void*), void *arg); replyqueue_t *threadpool_get_replyqueue(threadpool_t *tp); replyqueue_t *replyqueue_new(uint32_t alertsocks_flags); tor_socket_t replyqueue_get_socket(replyqueue_t *rq); void replyqueue_process(replyqueue_t *queue); #endif tor-0.2.7.6/src/common/di_ops.h0000644000175000017500000000305612621363245013126 00000000000000/* Copyright (c) 2003-2004, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file di_ops.h * \brief Headers for di_ops.c **/ #ifndef TOR_DI_OPS_H #define TOR_DI_OPS_H #include "orconfig.h" #include "torint.h" int tor_memcmp(const void *a, const void *b, size_t sz); int tor_memeq(const void *a, const void *b, size_t sz); #define tor_memneq(a,b,sz) (!tor_memeq((a),(b),(sz))) /** Alias for the platform's memcmp() function. This function is * not data-independent: we define this alias so that we can * mark cases where we are deliberately using a data-dependent memcmp() * implementation. */ #define fast_memcmp(a,b,c) (memcmp((a),(b),(c))) #define fast_memeq(a,b,c) (0==memcmp((a),(b),(c))) #define fast_memneq(a,b,c) (0!=memcmp((a),(b),(c))) int safe_mem_is_zero(const void *mem, size_t sz); /** A type for a map from DIGEST256_LEN-byte blobs to void*, such that * data lookups take an amount of time proportional only to the size * of the map, and not to the position or presence of the item in the map. * * Not efficient for large maps! */ typedef struct di_digest256_map_t di_digest256_map_t; typedef void (*dimap_free_fn)(void *); void dimap_free(di_digest256_map_t *map, dimap_free_fn free_fn); void dimap_add_entry(di_digest256_map_t **map, const uint8_t *key, void *val); void *dimap_search(const di_digest256_map_t *map, const uint8_t *key, void *dflt_val); #endif tor-0.2.7.6/src/common/tortls.h0000644000175000017500000001364212631612325013177 00000000000000/* Copyright (c) 2003, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef TOR_TORTLS_H #define TOR_TORTLS_H /** * \file tortls.h * \brief Headers for tortls.c **/ #include "crypto.h" #include "compat.h" #include "testsupport.h" /* Opaque structure to hold a TLS connection. */ typedef struct tor_tls_t tor_tls_t; /* Opaque structure to hold an X509 certificate. */ typedef struct tor_x509_cert_t tor_x509_cert_t; /* Possible return values for most tor_tls_* functions. */ #define MIN_TOR_TLS_ERROR_VAL_ -9 #define TOR_TLS_ERROR_MISC -9 /* Rename to unexpected close or something. XXXX */ #define TOR_TLS_ERROR_IO -8 #define TOR_TLS_ERROR_CONNREFUSED -7 #define TOR_TLS_ERROR_CONNRESET -6 #define TOR_TLS_ERROR_NO_ROUTE -5 #define TOR_TLS_ERROR_TIMEOUT -4 #define TOR_TLS_CLOSE -3 #define TOR_TLS_WANTREAD -2 #define TOR_TLS_WANTWRITE -1 #define TOR_TLS_DONE 0 /** Collection of case statements for all TLS errors that are not due to * underlying IO failure. */ #define CASE_TOR_TLS_ERROR_ANY_NONIO \ case TOR_TLS_ERROR_MISC: \ case TOR_TLS_ERROR_CONNREFUSED: \ case TOR_TLS_ERROR_CONNRESET: \ case TOR_TLS_ERROR_NO_ROUTE: \ case TOR_TLS_ERROR_TIMEOUT /** Use this macro in a switch statement to catch _any_ TLS error. That way, * if more errors are added, your switches will still work. */ #define CASE_TOR_TLS_ERROR_ANY \ CASE_TOR_TLS_ERROR_ANY_NONIO: \ case TOR_TLS_ERROR_IO #define TOR_TLS_IS_ERROR(rv) ((rv) < TOR_TLS_CLOSE) const char *tor_tls_err_to_string(int err); void tor_tls_get_state_description(tor_tls_t *tls, char *buf, size_t sz); void tor_tls_free_all(void); #define TOR_TLS_CTX_IS_PUBLIC_SERVER (1u<<0) #define TOR_TLS_CTX_USE_ECDHE_P256 (1u<<1) #define TOR_TLS_CTX_USE_ECDHE_P224 (1u<<2) int tor_tls_context_init(unsigned flags, crypto_pk_t *client_identity, crypto_pk_t *server_identity, unsigned int key_lifetime); tor_tls_t *tor_tls_new(int sock, int is_server); void tor_tls_set_logged_address(tor_tls_t *tls, const char *address); void tor_tls_set_renegotiate_callback(tor_tls_t *tls, void (*cb)(tor_tls_t *, void *arg), void *arg); int tor_tls_is_server(tor_tls_t *tls); void tor_tls_free(tor_tls_t *tls); int tor_tls_peer_has_cert(tor_tls_t *tls); MOCK_DECL(tor_x509_cert_t *,tor_tls_get_peer_cert,(tor_tls_t *tls)); int tor_tls_verify(int severity, tor_tls_t *tls, crypto_pk_t **identity); int tor_tls_check_lifetime(int severity, tor_tls_t *tls, int past_tolerance, int future_tolerance); MOCK_DECL(int, tor_tls_read, (tor_tls_t *tls, char *cp, size_t len)); int tor_tls_write(tor_tls_t *tls, const char *cp, size_t n); int tor_tls_handshake(tor_tls_t *tls); int tor_tls_finish_handshake(tor_tls_t *tls); int tor_tls_renegotiate(tor_tls_t *tls); void tor_tls_unblock_renegotiation(tor_tls_t *tls); void tor_tls_block_renegotiation(tor_tls_t *tls); void tor_tls_assert_renegotiation_unblocked(tor_tls_t *tls); int tor_tls_shutdown(tor_tls_t *tls); int tor_tls_get_pending_bytes(tor_tls_t *tls); size_t tor_tls_get_forced_write_size(tor_tls_t *tls); void tor_tls_get_n_raw_bytes(tor_tls_t *tls, size_t *n_read, size_t *n_written); int tor_tls_get_buffer_sizes(tor_tls_t *tls, size_t *rbuf_capacity, size_t *rbuf_bytes, size_t *wbuf_capacity, size_t *wbuf_bytes); MOCK_DECL(double, tls_get_write_overhead_ratio, (void)); int tor_tls_used_v1_handshake(tor_tls_t *tls); int tor_tls_received_v3_certificate(tor_tls_t *tls); int tor_tls_get_num_server_handshakes(tor_tls_t *tls); int tor_tls_server_got_renegotiate(tor_tls_t *tls); MOCK_DECL(int,tor_tls_get_tlssecrets,(tor_tls_t *tls, uint8_t *secrets_out)); /* Log and abort if there are unhandled TLS errors in OpenSSL's error stack. */ #define check_no_tls_errors() check_no_tls_errors_(__FILE__,__LINE__) void check_no_tls_errors_(const char *fname, int line); void tor_tls_log_one_error(tor_tls_t *tls, unsigned long err, int severity, int domain, const char *doing); #ifdef USE_BUFFEREVENTS int tor_tls_start_renegotiating(tor_tls_t *tls); struct bufferevent *tor_tls_init_bufferevent(tor_tls_t *tls, struct bufferevent *bufev_in, evutil_socket_t socket, int receiving, int filter); #endif void tor_x509_cert_free(tor_x509_cert_t *cert); tor_x509_cert_t *tor_x509_cert_decode(const uint8_t *certificate, size_t certificate_len); void tor_x509_cert_get_der(const tor_x509_cert_t *cert, const uint8_t **encoded_out, size_t *size_out); const digests_t *tor_x509_cert_get_id_digests(const tor_x509_cert_t *cert); const digests_t *tor_x509_cert_get_cert_digests(const tor_x509_cert_t *cert); int tor_tls_get_my_certs(int server, const tor_x509_cert_t **link_cert_out, const tor_x509_cert_t **id_cert_out); crypto_pk_t *tor_tls_get_my_client_auth_key(void); crypto_pk_t *tor_tls_cert_get_key(tor_x509_cert_t *cert); MOCK_DECL(int,tor_tls_cert_matches_key,(const tor_tls_t *tls, const tor_x509_cert_t *cert)); int tor_tls_cert_is_valid(int severity, const tor_x509_cert_t *cert, const tor_x509_cert_t *signing_cert, int check_rsa_1024); const char *tor_tls_get_ciphersuite_name(tor_tls_t *tls); int evaluate_ecgroup_for_tls(const char *ecgroup); #endif tor-0.2.7.6/src/common/workqueue.c0000644000175000017500000003535212621363245013677 00000000000000/* copyright (c) 2013-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #include "compat.h" #include "compat_threads.h" #include "util.h" #include "workqueue.h" #include "tor_queue.h" #include "torlog.h" struct threadpool_s { /** An array of pointers to workerthread_t: one for each running worker * thread. */ struct workerthread_s **threads; /** Condition variable that we wait on when we have no work, and which * gets signaled when our queue becomes nonempty. */ tor_cond_t condition; /** Queue of pending work that we have to do. */ TOR_TAILQ_HEAD(, workqueue_entry_s) work; /** The current 'update generation' of the threadpool. Any thread that is * at an earlier generation needs to run the update function. */ unsigned generation; /** Function that should be run for updates on each thread. */ workqueue_reply_t (*update_fn)(void *, void *); /** Function to free update arguments if they can't be run. */ void (*free_update_arg_fn)(void *); /** Array of n_threads update arguments. */ void **update_args; /** Number of elements in threads. */ int n_threads; /** Mutex to protect all the above fields. */ tor_mutex_t lock; /** A reply queue to use when constructing new threads. */ replyqueue_t *reply_queue; /** Functions used to allocate and free thread state. */ void *(*new_thread_state_fn)(void*); void (*free_thread_state_fn)(void*); void *new_thread_state_arg; }; struct workqueue_entry_s { /** The next workqueue_entry_t that's pending on the same thread or * reply queue. */ TOR_TAILQ_ENTRY(workqueue_entry_s) next_work; /** The threadpool to which this workqueue_entry_t was assigned. This field * is set when the workqueue_entry_t is created, and won't be cleared until * after it's handled in the main thread. */ struct threadpool_s *on_pool; /** True iff this entry is waiting for a worker to start processing it. */ uint8_t pending; /** Function to run in the worker thread. */ workqueue_reply_t (*fn)(void *state, void *arg); /** Function to run while processing the reply queue. */ void (*reply_fn)(void *arg); /** Argument for the above functions. */ void *arg; }; struct replyqueue_s { /** Mutex to protect the answers field */ tor_mutex_t lock; /** Doubly-linked list of answers that the reply queue needs to handle. */ TOR_TAILQ_HEAD(, workqueue_entry_s) answers; /** Mechanism to wake up the main thread when it is receiving answers. */ alert_sockets_t alert; }; /** A worker thread represents a single thread in a thread pool. To avoid * contention, each gets its own queue. This breaks the guarantee that that * queued work will get executed strictly in order. */ typedef struct workerthread_s { /** Which thread it this? In range 0..in_pool->n_threads-1 */ int index; /** The pool this thread is a part of. */ struct threadpool_s *in_pool; /** User-supplied state field that we pass to the worker functions of each * work item. */ void *state; /** Reply queue to which we pass our results. */ replyqueue_t *reply_queue; /** The current update generation of this thread */ unsigned generation; } workerthread_t; static void queue_reply(replyqueue_t *queue, workqueue_entry_t *work); /** Allocate and return a new workqueue_entry_t, set up to run the function * fn in the worker thread, and reply_fn in the main * thread. See threadpool_queue_work() for full documentation. */ static workqueue_entry_t * workqueue_entry_new(workqueue_reply_t (*fn)(void*, void*), void (*reply_fn)(void*), void *arg) { workqueue_entry_t *ent = tor_malloc_zero(sizeof(workqueue_entry_t)); ent->fn = fn; ent->reply_fn = reply_fn; ent->arg = arg; return ent; } /** * Release all storage held in ent. Call only when ent is not on * any queue. */ static void workqueue_entry_free(workqueue_entry_t *ent) { if (!ent) return; memset(ent, 0xf0, sizeof(*ent)); tor_free(ent); } /** * Cancel a workqueue_entry_t that has been returned from * threadpool_queue_work. * * You must not call this function on any work whose reply function has been * executed in the main thread; that will cause undefined behavior (probably, * a crash). * * If the work is cancelled, this function return the argument passed to the * work function. It is the caller's responsibility to free this storage. * * This function will have no effect if the worker thread has already executed * or begun to execute the work item. In that case, it will return NULL. */ void * workqueue_entry_cancel(workqueue_entry_t *ent) { int cancelled = 0; void *result = NULL; tor_mutex_acquire(&ent->on_pool->lock); if (ent->pending) { TOR_TAILQ_REMOVE(&ent->on_pool->work, ent, next_work); cancelled = 1; result = ent->arg; } tor_mutex_release(&ent->on_pool->lock); if (cancelled) { workqueue_entry_free(ent); } return result; } /**DOCDOC must hold lock */ static int worker_thread_has_work(workerthread_t *thread) { return !TOR_TAILQ_EMPTY(&thread->in_pool->work) || thread->generation != thread->in_pool->generation; } /** * Main function for the worker thread. */ static void worker_thread_main(void *thread_) { workerthread_t *thread = thread_; threadpool_t *pool = thread->in_pool; workqueue_entry_t *work; workqueue_reply_t result; tor_mutex_acquire(&pool->lock); while (1) { /* lock must be held at this point. */ while (worker_thread_has_work(thread)) { /* lock must be held at this point. */ if (thread->in_pool->generation != thread->generation) { void *arg = thread->in_pool->update_args[thread->index]; thread->in_pool->update_args[thread->index] = NULL; workqueue_reply_t (*update_fn)(void*,void*) = thread->in_pool->update_fn; thread->generation = thread->in_pool->generation; tor_mutex_release(&pool->lock); workqueue_reply_t r = update_fn(thread->state, arg); if (r != WQ_RPL_REPLY) { return; } tor_mutex_acquire(&pool->lock); continue; } work = TOR_TAILQ_FIRST(&pool->work); TOR_TAILQ_REMOVE(&pool->work, work, next_work); work->pending = 0; tor_mutex_release(&pool->lock); /* We run the work function without holding the thread lock. This * is the main thread's first opportunity to give us more work. */ result = work->fn(thread->state, work->arg); /* Queue the reply for the main thread. */ queue_reply(thread->reply_queue, work); /* We may need to exit the thread. */ if (result != WQ_RPL_REPLY) { return; } tor_mutex_acquire(&pool->lock); } /* At this point the lock is held, and there is no work in this thread's * queue. */ /* TODO: support an idle-function */ /* Okay. Now, wait till somebody has work for us. */ if (tor_cond_wait(&pool->condition, &pool->lock, NULL) < 0) { log_warn(LD_GENERAL, "Fail tor_cond_wait."); } } } /** Put a reply on the reply queue. The reply must not currently be on * any thread's work queue. */ static void queue_reply(replyqueue_t *queue, workqueue_entry_t *work) { int was_empty; tor_mutex_acquire(&queue->lock); was_empty = TOR_TAILQ_EMPTY(&queue->answers); TOR_TAILQ_INSERT_TAIL(&queue->answers, work, next_work); tor_mutex_release(&queue->lock); if (was_empty) { if (queue->alert.alert_fn(queue->alert.write_fd) < 0) { /* XXXX complain! */ } } } /** Allocate and start a new worker thread to use state object state, * and send responses to replyqueue. */ static workerthread_t * workerthread_new(void *state, threadpool_t *pool, replyqueue_t *replyqueue) { workerthread_t *thr = tor_malloc_zero(sizeof(workerthread_t)); thr->state = state; thr->reply_queue = replyqueue; thr->in_pool = pool; if (spawn_func(worker_thread_main, thr) < 0) { log_err(LD_GENERAL, "Can't launch worker thread."); tor_free(thr); return NULL; } return thr; } /** * Queue an item of work for a thread in a thread pool. The function * fn will be run in a worker thread, and will receive as arguments the * thread's state object, and the provided object arg. It must return * one of WQ_RPL_REPLY, WQ_RPL_ERROR, or WQ_RPL_SHUTDOWN. * * Regardless of its return value, the function reply_fn will later be * run in the main thread when it invokes replyqueue_process(), and will * receive as its argument the same arg object. It's the reply * function's responsibility to free the work object. * * On success, return a workqueue_entry_t object that can be passed to * workqueue_entry_cancel(). On failure, return NULL. * * Note that because each thread has its own work queue, work items may not * be executed strictly in order. */ workqueue_entry_t * threadpool_queue_work(threadpool_t *pool, workqueue_reply_t (*fn)(void *, void *), void (*reply_fn)(void *), void *arg) { workqueue_entry_t *ent = workqueue_entry_new(fn, reply_fn, arg); ent->on_pool = pool; ent->pending = 1; tor_mutex_acquire(&pool->lock); TOR_TAILQ_INSERT_TAIL(&pool->work, ent, next_work); tor_cond_signal_one(&pool->condition); tor_mutex_release(&pool->lock); return ent; } /** * Queue a copy of a work item for every thread in a pool. This can be used, * for example, to tell the threads to update some parameter in their states. * * Arguments are as for threadpool_queue_work, except that the * arg value is passed to dup_fn once per each thread to * make a copy of it. * * UPDATE FUNCTIONS MUST BE IDEMPOTENT. We do not guarantee that every update * will be run. If a new update is scheduled before the old update finishes * running, then the new will replace the old in any threads that haven't run * it yet. * * Return 0 on success, -1 on failure. */ int threadpool_queue_update(threadpool_t *pool, void *(*dup_fn)(void *), workqueue_reply_t (*fn)(void *, void *), void (*free_fn)(void *), void *arg) { int i, n_threads; void (*old_args_free_fn)(void *arg); void **old_args; void **new_args; tor_mutex_acquire(&pool->lock); n_threads = pool->n_threads; old_args = pool->update_args; old_args_free_fn = pool->free_update_arg_fn; new_args = tor_calloc(n_threads, sizeof(void*)); for (i = 0; i < n_threads; ++i) { if (dup_fn) new_args[i] = dup_fn(arg); else new_args[i] = arg; } pool->update_args = new_args; pool->free_update_arg_fn = free_fn; pool->update_fn = fn; ++pool->generation; tor_cond_signal_all(&pool->condition); tor_mutex_release(&pool->lock); if (old_args) { for (i = 0; i < n_threads; ++i) { if (old_args[i] && old_args_free_fn) old_args_free_fn(old_args[i]); } tor_free(old_args); } return 0; } /** Don't have more than this many threads per pool. */ #define MAX_THREADS 1024 /** Launch threads until we have n. */ static int threadpool_start_threads(threadpool_t *pool, int n) { if (n < 0) return -1; if (n > MAX_THREADS) n = MAX_THREADS; tor_mutex_acquire(&pool->lock); if (pool->n_threads < n) pool->threads = tor_reallocarray(pool->threads, sizeof(workerthread_t*), n); while (pool->n_threads < n) { void *state = pool->new_thread_state_fn(pool->new_thread_state_arg); workerthread_t *thr = workerthread_new(state, pool, pool->reply_queue); if (!thr) { pool->free_thread_state_fn(state); tor_mutex_release(&pool->lock); return -1; } thr->index = pool->n_threads; pool->threads[pool->n_threads++] = thr; } tor_mutex_release(&pool->lock); return 0; } /** * Construct a new thread pool with n worker threads, configured to * send their output to replyqueue. The threads' states will be * constructed with the new_thread_state_fn call, receiving arg * as its argument. When the threads close, they will call * free_thread_state_fn on their states. */ threadpool_t * threadpool_new(int n_threads, replyqueue_t *replyqueue, void *(*new_thread_state_fn)(void*), void (*free_thread_state_fn)(void*), void *arg) { threadpool_t *pool; pool = tor_malloc_zero(sizeof(threadpool_t)); tor_mutex_init_nonrecursive(&pool->lock); tor_cond_init(&pool->condition); TOR_TAILQ_INIT(&pool->work); pool->new_thread_state_fn = new_thread_state_fn; pool->new_thread_state_arg = arg; pool->free_thread_state_fn = free_thread_state_fn; pool->reply_queue = replyqueue; if (threadpool_start_threads(pool, n_threads) < 0) { tor_cond_uninit(&pool->condition); tor_mutex_uninit(&pool->lock); tor_free(pool); return NULL; } return pool; } /** Return the reply queue associated with a given thread pool. */ replyqueue_t * threadpool_get_replyqueue(threadpool_t *tp) { return tp->reply_queue; } /** Allocate a new reply queue. Reply queues are used to pass results from * worker threads to the main thread. Since the main thread is running an * IO-centric event loop, it needs to get woken up with means other than a * condition variable. */ replyqueue_t * replyqueue_new(uint32_t alertsocks_flags) { replyqueue_t *rq; rq = tor_malloc_zero(sizeof(replyqueue_t)); if (alert_sockets_create(&rq->alert, alertsocks_flags) < 0) { tor_free(rq); return NULL; } tor_mutex_init(&rq->lock); TOR_TAILQ_INIT(&rq->answers); return rq; } /** * Return the "read socket" for a given reply queue. The main thread should * listen for read events on this socket, and call replyqueue_process() every * time it triggers. */ tor_socket_t replyqueue_get_socket(replyqueue_t *rq) { return rq->alert.read_fd; } /** * Process all pending replies on a reply queue. The main thread should call * this function every time the socket returned by replyqueue_get_socket() is * readable. */ void replyqueue_process(replyqueue_t *queue) { if (queue->alert.drain_fn(queue->alert.read_fd) < 0) { static ratelim_t warn_limit = RATELIM_INIT(7200); log_fn_ratelim(&warn_limit, LOG_WARN, LD_GENERAL, "Failure from drain_fd: %s", tor_socket_strerror(tor_socket_errno(queue->alert.read_fd))); } tor_mutex_acquire(&queue->lock); while (!TOR_TAILQ_EMPTY(&queue->answers)) { /* lock must be held at this point.*/ workqueue_entry_t *work = TOR_TAILQ_FIRST(&queue->answers); TOR_TAILQ_REMOVE(&queue->answers, work, next_work); tor_mutex_release(&queue->lock); work->on_pool = NULL; work->reply_fn(work->arg); workqueue_entry_free(work); tor_mutex_acquire(&queue->lock); } tor_mutex_release(&queue->lock); } tor-0.2.7.6/src/common/linux_syscalls.inc0000644000175000017500000005702112621363245015250 00000000000000/* Automatically generated with gen_linux_syscalls.pl /usr/include/asm/unistd*.h Do not edit. */ static const struct { int syscall_num; const char *syscall_name; } SYSCALLS_BY_NUMBER[] = { #ifdef __NR__llseek { __NR__llseek, "_llseek" }, #endif #ifdef __NR__newselect { __NR__newselect, "_newselect" }, #endif #ifdef __NR__sysctl { __NR__sysctl, "_sysctl" }, #endif #ifdef __NR_accept { __NR_accept, "accept" }, #endif #ifdef __NR_accept4 { __NR_accept4, "accept4" }, #endif #ifdef __NR_access { __NR_access, "access" }, #endif #ifdef __NR_acct { __NR_acct, "acct" }, #endif #ifdef __NR_add_key { __NR_add_key, "add_key" }, #endif #ifdef __NR_adjtimex { __NR_adjtimex, "adjtimex" }, #endif #ifdef __NR_afs_syscall { __NR_afs_syscall, "afs_syscall" }, #endif #ifdef __NR_alarm { __NR_alarm, "alarm" }, #endif #ifdef __NR_arch_prctl { __NR_arch_prctl, "arch_prctl" }, #endif #ifdef __NR_bdflush { __NR_bdflush, "bdflush" }, #endif #ifdef __NR_bind { __NR_bind, "bind" }, #endif #ifdef __NR_break { __NR_break, "break" }, #endif #ifdef __NR_brk { __NR_brk, "brk" }, #endif #ifdef __NR_capget { __NR_capget, "capget" }, #endif #ifdef __NR_capset { __NR_capset, "capset" }, #endif #ifdef __NR_chdir { __NR_chdir, "chdir" }, #endif #ifdef __NR_chmod { __NR_chmod, "chmod" }, #endif #ifdef __NR_chown { __NR_chown, "chown" }, #endif #ifdef __NR_chown32 { __NR_chown32, "chown32" }, #endif #ifdef __NR_chroot { __NR_chroot, "chroot" }, #endif #ifdef __NR_clock_adjtime { __NR_clock_adjtime, "clock_adjtime" }, #endif #ifdef __NR_clock_getres { __NR_clock_getres, "clock_getres" }, #endif #ifdef __NR_clock_gettime { __NR_clock_gettime, "clock_gettime" }, #endif #ifdef __NR_clock_nanosleep { __NR_clock_nanosleep, "clock_nanosleep" }, #endif #ifdef __NR_clock_settime { __NR_clock_settime, "clock_settime" }, #endif #ifdef __NR_clone { __NR_clone, "clone" }, #endif #ifdef __NR_close { __NR_close, "close" }, #endif #ifdef __NR_connect { __NR_connect, "connect" }, #endif #ifdef __NR_creat { __NR_creat, "creat" }, #endif #ifdef __NR_create_module { __NR_create_module, "create_module" }, #endif #ifdef __NR_delete_module { __NR_delete_module, "delete_module" }, #endif #ifdef __NR_dup { __NR_dup, "dup" }, #endif #ifdef __NR_dup2 { __NR_dup2, "dup2" }, #endif #ifdef __NR_dup3 { __NR_dup3, "dup3" }, #endif #ifdef __NR_epoll_create { __NR_epoll_create, "epoll_create" }, #endif #ifdef __NR_epoll_create1 { __NR_epoll_create1, "epoll_create1" }, #endif #ifdef __NR_epoll_ctl { __NR_epoll_ctl, "epoll_ctl" }, #endif #ifdef __NR_epoll_ctl_old { __NR_epoll_ctl_old, "epoll_ctl_old" }, #endif #ifdef __NR_epoll_pwait { __NR_epoll_pwait, "epoll_pwait" }, #endif #ifdef __NR_epoll_wait { __NR_epoll_wait, "epoll_wait" }, #endif #ifdef __NR_epoll_wait_old { __NR_epoll_wait_old, "epoll_wait_old" }, #endif #ifdef __NR_eventfd { __NR_eventfd, "eventfd" }, #endif #ifdef __NR_eventfd2 { __NR_eventfd2, "eventfd2" }, #endif #ifdef __NR_execve { __NR_execve, "execve" }, #endif #ifdef __NR_exit { __NR_exit, "exit" }, #endif #ifdef __NR_exit_group { __NR_exit_group, "exit_group" }, #endif #ifdef __NR_faccessat { __NR_faccessat, "faccessat" }, #endif #ifdef __NR_fadvise64 { __NR_fadvise64, "fadvise64" }, #endif #ifdef __NR_fadvise64_64 { __NR_fadvise64_64, "fadvise64_64" }, #endif #ifdef __NR_fallocate { __NR_fallocate, "fallocate" }, #endif #ifdef __NR_fanotify_init { __NR_fanotify_init, "fanotify_init" }, #endif #ifdef __NR_fanotify_mark { __NR_fanotify_mark, "fanotify_mark" }, #endif #ifdef __NR_fchdir { __NR_fchdir, "fchdir" }, #endif #ifdef __NR_fchmod { __NR_fchmod, "fchmod" }, #endif #ifdef __NR_fchmodat { __NR_fchmodat, "fchmodat" }, #endif #ifdef __NR_fchown { __NR_fchown, "fchown" }, #endif #ifdef __NR_fchown32 { __NR_fchown32, "fchown32" }, #endif #ifdef __NR_fchownat { __NR_fchownat, "fchownat" }, #endif #ifdef __NR_fcntl { __NR_fcntl, "fcntl" }, #endif #ifdef __NR_fcntl64 { __NR_fcntl64, "fcntl64" }, #endif #ifdef __NR_fdatasync { __NR_fdatasync, "fdatasync" }, #endif #ifdef __NR_fgetxattr { __NR_fgetxattr, "fgetxattr" }, #endif #ifdef __NR_finit_module { __NR_finit_module, "finit_module" }, #endif #ifdef __NR_flistxattr { __NR_flistxattr, "flistxattr" }, #endif #ifdef __NR_flock { __NR_flock, "flock" }, #endif #ifdef __NR_fork { __NR_fork, "fork" }, #endif #ifdef __NR_fremovexattr { __NR_fremovexattr, "fremovexattr" }, #endif #ifdef __NR_fsetxattr { __NR_fsetxattr, "fsetxattr" }, #endif #ifdef __NR_fstat { __NR_fstat, "fstat" }, #endif #ifdef __NR_fstat64 { __NR_fstat64, "fstat64" }, #endif #ifdef __NR_fstatat64 { __NR_fstatat64, "fstatat64" }, #endif #ifdef __NR_fstatfs { __NR_fstatfs, "fstatfs" }, #endif #ifdef __NR_fstatfs64 { __NR_fstatfs64, "fstatfs64" }, #endif #ifdef __NR_fsync { __NR_fsync, "fsync" }, #endif #ifdef __NR_ftime { __NR_ftime, "ftime" }, #endif #ifdef __NR_ftruncate { __NR_ftruncate, "ftruncate" }, #endif #ifdef __NR_ftruncate64 { __NR_ftruncate64, "ftruncate64" }, #endif #ifdef __NR_futex { __NR_futex, "futex" }, #endif #ifdef __NR_futimesat { __NR_futimesat, "futimesat" }, #endif #ifdef __NR_get_kernel_syms { __NR_get_kernel_syms, "get_kernel_syms" }, #endif #ifdef __NR_get_mempolicy { __NR_get_mempolicy, "get_mempolicy" }, #endif #ifdef __NR_get_robust_list { __NR_get_robust_list, "get_robust_list" }, #endif #ifdef __NR_get_thread_area { __NR_get_thread_area, "get_thread_area" }, #endif #ifdef __NR_getcpu { __NR_getcpu, "getcpu" }, #endif #ifdef __NR_getcwd { __NR_getcwd, "getcwd" }, #endif #ifdef __NR_getdents { __NR_getdents, "getdents" }, #endif #ifdef __NR_getdents64 { __NR_getdents64, "getdents64" }, #endif #ifdef __NR_getegid { __NR_getegid, "getegid" }, #endif #ifdef __NR_getegid32 { __NR_getegid32, "getegid32" }, #endif #ifdef __NR_geteuid { __NR_geteuid, "geteuid" }, #endif #ifdef __NR_geteuid32 { __NR_geteuid32, "geteuid32" }, #endif #ifdef __NR_getgid { __NR_getgid, "getgid" }, #endif #ifdef __NR_getgid32 { __NR_getgid32, "getgid32" }, #endif #ifdef __NR_getgroups { __NR_getgroups, "getgroups" }, #endif #ifdef __NR_getgroups32 { __NR_getgroups32, "getgroups32" }, #endif #ifdef __NR_getitimer { __NR_getitimer, "getitimer" }, #endif #ifdef __NR_getpeername { __NR_getpeername, "getpeername" }, #endif #ifdef __NR_getpgid { __NR_getpgid, "getpgid" }, #endif #ifdef __NR_getpgrp { __NR_getpgrp, "getpgrp" }, #endif #ifdef __NR_getpid { __NR_getpid, "getpid" }, #endif #ifdef __NR_getpmsg { __NR_getpmsg, "getpmsg" }, #endif #ifdef __NR_getppid { __NR_getppid, "getppid" }, #endif #ifdef __NR_getpriority { __NR_getpriority, "getpriority" }, #endif #ifdef __NR_getresgid { __NR_getresgid, "getresgid" }, #endif #ifdef __NR_getresgid32 { __NR_getresgid32, "getresgid32" }, #endif #ifdef __NR_getresuid { __NR_getresuid, "getresuid" }, #endif #ifdef __NR_getresuid32 { __NR_getresuid32, "getresuid32" }, #endif #ifdef __NR_getrlimit { __NR_getrlimit, "getrlimit" }, #endif #ifdef __NR_getrusage { __NR_getrusage, "getrusage" }, #endif #ifdef __NR_getsid { __NR_getsid, "getsid" }, #endif #ifdef __NR_getsockname { __NR_getsockname, "getsockname" }, #endif #ifdef __NR_getsockopt { __NR_getsockopt, "getsockopt" }, #endif #ifdef __NR_gettid { __NR_gettid, "gettid" }, #endif #ifdef __NR_gettimeofday { __NR_gettimeofday, "gettimeofday" }, #endif #ifdef __NR_getuid { __NR_getuid, "getuid" }, #endif #ifdef __NR_getuid32 { __NR_getuid32, "getuid32" }, #endif #ifdef __NR_getxattr { __NR_getxattr, "getxattr" }, #endif #ifdef __NR_gtty { __NR_gtty, "gtty" }, #endif #ifdef __NR_idle { __NR_idle, "idle" }, #endif #ifdef __NR_init_module { __NR_init_module, "init_module" }, #endif #ifdef __NR_inotify_add_watch { __NR_inotify_add_watch, "inotify_add_watch" }, #endif #ifdef __NR_inotify_init { __NR_inotify_init, "inotify_init" }, #endif #ifdef __NR_inotify_init1 { __NR_inotify_init1, "inotify_init1" }, #endif #ifdef __NR_inotify_rm_watch { __NR_inotify_rm_watch, "inotify_rm_watch" }, #endif #ifdef __NR_io_cancel { __NR_io_cancel, "io_cancel" }, #endif #ifdef __NR_io_destroy { __NR_io_destroy, "io_destroy" }, #endif #ifdef __NR_io_getevents { __NR_io_getevents, "io_getevents" }, #endif #ifdef __NR_io_setup { __NR_io_setup, "io_setup" }, #endif #ifdef __NR_io_submit { __NR_io_submit, "io_submit" }, #endif #ifdef __NR_ioctl { __NR_ioctl, "ioctl" }, #endif #ifdef __NR_ioperm { __NR_ioperm, "ioperm" }, #endif #ifdef __NR_iopl { __NR_iopl, "iopl" }, #endif #ifdef __NR_ioprio_get { __NR_ioprio_get, "ioprio_get" }, #endif #ifdef __NR_ioprio_set { __NR_ioprio_set, "ioprio_set" }, #endif #ifdef __NR_ipc { __NR_ipc, "ipc" }, #endif #ifdef __NR_kcmp { __NR_kcmp, "kcmp" }, #endif #ifdef __NR_kexec_load { __NR_kexec_load, "kexec_load" }, #endif #ifdef __NR_keyctl { __NR_keyctl, "keyctl" }, #endif #ifdef __NR_kill { __NR_kill, "kill" }, #endif #ifdef __NR_lchown { __NR_lchown, "lchown" }, #endif #ifdef __NR_lchown32 { __NR_lchown32, "lchown32" }, #endif #ifdef __NR_lgetxattr { __NR_lgetxattr, "lgetxattr" }, #endif #ifdef __NR_link { __NR_link, "link" }, #endif #ifdef __NR_linkat { __NR_linkat, "linkat" }, #endif #ifdef __NR_listen { __NR_listen, "listen" }, #endif #ifdef __NR_listxattr { __NR_listxattr, "listxattr" }, #endif #ifdef __NR_llistxattr { __NR_llistxattr, "llistxattr" }, #endif #ifdef __NR_lock { __NR_lock, "lock" }, #endif #ifdef __NR_lookup_dcookie { __NR_lookup_dcookie, "lookup_dcookie" }, #endif #ifdef __NR_lremovexattr { __NR_lremovexattr, "lremovexattr" }, #endif #ifdef __NR_lseek { __NR_lseek, "lseek" }, #endif #ifdef __NR_lsetxattr { __NR_lsetxattr, "lsetxattr" }, #endif #ifdef __NR_lstat { __NR_lstat, "lstat" }, #endif #ifdef __NR_lstat64 { __NR_lstat64, "lstat64" }, #endif #ifdef __NR_madvise { __NR_madvise, "madvise" }, #endif #ifdef __NR_mbind { __NR_mbind, "mbind" }, #endif #ifdef __NR_migrate_pages { __NR_migrate_pages, "migrate_pages" }, #endif #ifdef __NR_mincore { __NR_mincore, "mincore" }, #endif #ifdef __NR_mkdir { __NR_mkdir, "mkdir" }, #endif #ifdef __NR_mkdirat { __NR_mkdirat, "mkdirat" }, #endif #ifdef __NR_mknod { __NR_mknod, "mknod" }, #endif #ifdef __NR_mknodat { __NR_mknodat, "mknodat" }, #endif #ifdef __NR_mlock { __NR_mlock, "mlock" }, #endif #ifdef __NR_mlockall { __NR_mlockall, "mlockall" }, #endif #ifdef __NR_mmap { __NR_mmap, "mmap" }, #endif #ifdef __NR_mmap2 { __NR_mmap2, "mmap2" }, #endif #ifdef __NR_modify_ldt { __NR_modify_ldt, "modify_ldt" }, #endif #ifdef __NR_mount { __NR_mount, "mount" }, #endif #ifdef __NR_move_pages { __NR_move_pages, "move_pages" }, #endif #ifdef __NR_mprotect { __NR_mprotect, "mprotect" }, #endif #ifdef __NR_mpx { __NR_mpx, "mpx" }, #endif #ifdef __NR_mq_getsetattr { __NR_mq_getsetattr, "mq_getsetattr" }, #endif #ifdef __NR_mq_notify { __NR_mq_notify, "mq_notify" }, #endif #ifdef __NR_mq_open { __NR_mq_open, "mq_open" }, #endif #ifdef __NR_mq_timedreceive { __NR_mq_timedreceive, "mq_timedreceive" }, #endif #ifdef __NR_mq_timedsend { __NR_mq_timedsend, "mq_timedsend" }, #endif #ifdef __NR_mq_unlink { __NR_mq_unlink, "mq_unlink" }, #endif #ifdef __NR_mremap { __NR_mremap, "mremap" }, #endif #ifdef __NR_msgctl { __NR_msgctl, "msgctl" }, #endif #ifdef __NR_msgget { __NR_msgget, "msgget" }, #endif #ifdef __NR_msgrcv { __NR_msgrcv, "msgrcv" }, #endif #ifdef __NR_msgsnd { __NR_msgsnd, "msgsnd" }, #endif #ifdef __NR_msync { __NR_msync, "msync" }, #endif #ifdef __NR_munlock { __NR_munlock, "munlock" }, #endif #ifdef __NR_munlockall { __NR_munlockall, "munlockall" }, #endif #ifdef __NR_munmap { __NR_munmap, "munmap" }, #endif #ifdef __NR_name_to_handle_at { __NR_name_to_handle_at, "name_to_handle_at" }, #endif #ifdef __NR_nanosleep { __NR_nanosleep, "nanosleep" }, #endif #ifdef __NR_newfstatat { __NR_newfstatat, "newfstatat" }, #endif #ifdef __NR_nfsservctl { __NR_nfsservctl, "nfsservctl" }, #endif #ifdef __NR_nice { __NR_nice, "nice" }, #endif #ifdef __NR_oldfstat { __NR_oldfstat, "oldfstat" }, #endif #ifdef __NR_oldlstat { __NR_oldlstat, "oldlstat" }, #endif #ifdef __NR_oldolduname { __NR_oldolduname, "oldolduname" }, #endif #ifdef __NR_oldstat { __NR_oldstat, "oldstat" }, #endif #ifdef __NR_olduname { __NR_olduname, "olduname" }, #endif #ifdef __NR_open { __NR_open, "open" }, #endif #ifdef __NR_open_by_handle_at { __NR_open_by_handle_at, "open_by_handle_at" }, #endif #ifdef __NR_openat { __NR_openat, "openat" }, #endif #ifdef __NR_pause { __NR_pause, "pause" }, #endif #ifdef __NR_perf_event_open { __NR_perf_event_open, "perf_event_open" }, #endif #ifdef __NR_personality { __NR_personality, "personality" }, #endif #ifdef __NR_pipe { __NR_pipe, "pipe" }, #endif #ifdef __NR_pipe2 { __NR_pipe2, "pipe2" }, #endif #ifdef __NR_pivot_root { __NR_pivot_root, "pivot_root" }, #endif #ifdef __NR_poll { __NR_poll, "poll" }, #endif #ifdef __NR_ppoll { __NR_ppoll, "ppoll" }, #endif #ifdef __NR_prctl { __NR_prctl, "prctl" }, #endif #ifdef __NR_pread64 { __NR_pread64, "pread64" }, #endif #ifdef __NR_preadv { __NR_preadv, "preadv" }, #endif #ifdef __NR_prlimit64 { __NR_prlimit64, "prlimit64" }, #endif #ifdef __NR_process_vm_readv { __NR_process_vm_readv, "process_vm_readv" }, #endif #ifdef __NR_process_vm_writev { __NR_process_vm_writev, "process_vm_writev" }, #endif #ifdef __NR_prof { __NR_prof, "prof" }, #endif #ifdef __NR_profil { __NR_profil, "profil" }, #endif #ifdef __NR_pselect6 { __NR_pselect6, "pselect6" }, #endif #ifdef __NR_ptrace { __NR_ptrace, "ptrace" }, #endif #ifdef __NR_putpmsg { __NR_putpmsg, "putpmsg" }, #endif #ifdef __NR_pwrite64 { __NR_pwrite64, "pwrite64" }, #endif #ifdef __NR_pwritev { __NR_pwritev, "pwritev" }, #endif #ifdef __NR_query_module { __NR_query_module, "query_module" }, #endif #ifdef __NR_quotactl { __NR_quotactl, "quotactl" }, #endif #ifdef __NR_read { __NR_read, "read" }, #endif #ifdef __NR_readahead { __NR_readahead, "readahead" }, #endif #ifdef __NR_readdir { __NR_readdir, "readdir" }, #endif #ifdef __NR_readlink { __NR_readlink, "readlink" }, #endif #ifdef __NR_readlinkat { __NR_readlinkat, "readlinkat" }, #endif #ifdef __NR_readv { __NR_readv, "readv" }, #endif #ifdef __NR_reboot { __NR_reboot, "reboot" }, #endif #ifdef __NR_recvfrom { __NR_recvfrom, "recvfrom" }, #endif #ifdef __NR_recvmmsg { __NR_recvmmsg, "recvmmsg" }, #endif #ifdef __NR_recvmsg { __NR_recvmsg, "recvmsg" }, #endif #ifdef __NR_remap_file_pages { __NR_remap_file_pages, "remap_file_pages" }, #endif #ifdef __NR_removexattr { __NR_removexattr, "removexattr" }, #endif #ifdef __NR_rename { __NR_rename, "rename" }, #endif #ifdef __NR_renameat { __NR_renameat, "renameat" }, #endif #ifdef __NR_request_key { __NR_request_key, "request_key" }, #endif #ifdef __NR_restart_syscall { __NR_restart_syscall, "restart_syscall" }, #endif #ifdef __NR_rmdir { __NR_rmdir, "rmdir" }, #endif #ifdef __NR_rt_sigaction { __NR_rt_sigaction, "rt_sigaction" }, #endif #ifdef __NR_rt_sigpending { __NR_rt_sigpending, "rt_sigpending" }, #endif #ifdef __NR_rt_sigprocmask { __NR_rt_sigprocmask, "rt_sigprocmask" }, #endif #ifdef __NR_rt_sigqueueinfo { __NR_rt_sigqueueinfo, "rt_sigqueueinfo" }, #endif #ifdef __NR_rt_sigreturn { __NR_rt_sigreturn, "rt_sigreturn" }, #endif #ifdef __NR_rt_sigsuspend { __NR_rt_sigsuspend, "rt_sigsuspend" }, #endif #ifdef __NR_rt_sigtimedwait { __NR_rt_sigtimedwait, "rt_sigtimedwait" }, #endif #ifdef __NR_rt_tgsigqueueinfo { __NR_rt_tgsigqueueinfo, "rt_tgsigqueueinfo" }, #endif #ifdef __NR_sched_get_priority_max { __NR_sched_get_priority_max, "sched_get_priority_max" }, #endif #ifdef __NR_sched_get_priority_min { __NR_sched_get_priority_min, "sched_get_priority_min" }, #endif #ifdef __NR_sched_getaffinity { __NR_sched_getaffinity, "sched_getaffinity" }, #endif #ifdef __NR_sched_getparam { __NR_sched_getparam, "sched_getparam" }, #endif #ifdef __NR_sched_getscheduler { __NR_sched_getscheduler, "sched_getscheduler" }, #endif #ifdef __NR_sched_rr_get_interval { __NR_sched_rr_get_interval, "sched_rr_get_interval" }, #endif #ifdef __NR_sched_setaffinity { __NR_sched_setaffinity, "sched_setaffinity" }, #endif #ifdef __NR_sched_setparam { __NR_sched_setparam, "sched_setparam" }, #endif #ifdef __NR_sched_setscheduler { __NR_sched_setscheduler, "sched_setscheduler" }, #endif #ifdef __NR_sched_yield { __NR_sched_yield, "sched_yield" }, #endif #ifdef __NR_security { __NR_security, "security" }, #endif #ifdef __NR_select { __NR_select, "select" }, #endif #ifdef __NR_semctl { __NR_semctl, "semctl" }, #endif #ifdef __NR_semget { __NR_semget, "semget" }, #endif #ifdef __NR_semop { __NR_semop, "semop" }, #endif #ifdef __NR_semtimedop { __NR_semtimedop, "semtimedop" }, #endif #ifdef __NR_sendfile { __NR_sendfile, "sendfile" }, #endif #ifdef __NR_sendfile64 { __NR_sendfile64, "sendfile64" }, #endif #ifdef __NR_sendmmsg { __NR_sendmmsg, "sendmmsg" }, #endif #ifdef __NR_sendmsg { __NR_sendmsg, "sendmsg" }, #endif #ifdef __NR_sendto { __NR_sendto, "sendto" }, #endif #ifdef __NR_set_mempolicy { __NR_set_mempolicy, "set_mempolicy" }, #endif #ifdef __NR_set_robust_list { __NR_set_robust_list, "set_robust_list" }, #endif #ifdef __NR_set_thread_area { __NR_set_thread_area, "set_thread_area" }, #endif #ifdef __NR_set_tid_address { __NR_set_tid_address, "set_tid_address" }, #endif #ifdef __NR_setdomainname { __NR_setdomainname, "setdomainname" }, #endif #ifdef __NR_setfsgid { __NR_setfsgid, "setfsgid" }, #endif #ifdef __NR_setfsgid32 { __NR_setfsgid32, "setfsgid32" }, #endif #ifdef __NR_setfsuid { __NR_setfsuid, "setfsuid" }, #endif #ifdef __NR_setfsuid32 { __NR_setfsuid32, "setfsuid32" }, #endif #ifdef __NR_setgid { __NR_setgid, "setgid" }, #endif #ifdef __NR_setgid32 { __NR_setgid32, "setgid32" }, #endif #ifdef __NR_setgroups { __NR_setgroups, "setgroups" }, #endif #ifdef __NR_setgroups32 { __NR_setgroups32, "setgroups32" }, #endif #ifdef __NR_sethostname { __NR_sethostname, "sethostname" }, #endif #ifdef __NR_setitimer { __NR_setitimer, "setitimer" }, #endif #ifdef __NR_setns { __NR_setns, "setns" }, #endif #ifdef __NR_setpgid { __NR_setpgid, "setpgid" }, #endif #ifdef __NR_setpriority { __NR_setpriority, "setpriority" }, #endif #ifdef __NR_setregid { __NR_setregid, "setregid" }, #endif #ifdef __NR_setregid32 { __NR_setregid32, "setregid32" }, #endif #ifdef __NR_setresgid { __NR_setresgid, "setresgid" }, #endif #ifdef __NR_setresgid32 { __NR_setresgid32, "setresgid32" }, #endif #ifdef __NR_setresuid { __NR_setresuid, "setresuid" }, #endif #ifdef __NR_setresuid32 { __NR_setresuid32, "setresuid32" }, #endif #ifdef __NR_setreuid { __NR_setreuid, "setreuid" }, #endif #ifdef __NR_setreuid32 { __NR_setreuid32, "setreuid32" }, #endif #ifdef __NR_setrlimit { __NR_setrlimit, "setrlimit" }, #endif #ifdef __NR_setsid { __NR_setsid, "setsid" }, #endif #ifdef __NR_setsockopt { __NR_setsockopt, "setsockopt" }, #endif #ifdef __NR_settimeofday { __NR_settimeofday, "settimeofday" }, #endif #ifdef __NR_setuid { __NR_setuid, "setuid" }, #endif #ifdef __NR_setuid32 { __NR_setuid32, "setuid32" }, #endif #ifdef __NR_setxattr { __NR_setxattr, "setxattr" }, #endif #ifdef __NR_sgetmask { __NR_sgetmask, "sgetmask" }, #endif #ifdef __NR_shmat { __NR_shmat, "shmat" }, #endif #ifdef __NR_shmctl { __NR_shmctl, "shmctl" }, #endif #ifdef __NR_shmdt { __NR_shmdt, "shmdt" }, #endif #ifdef __NR_shmget { __NR_shmget, "shmget" }, #endif #ifdef __NR_shutdown { __NR_shutdown, "shutdown" }, #endif #ifdef __NR_sigaction { __NR_sigaction, "sigaction" }, #endif #ifdef __NR_sigaltstack { __NR_sigaltstack, "sigaltstack" }, #endif #ifdef __NR_signal { __NR_signal, "signal" }, #endif #ifdef __NR_signalfd { __NR_signalfd, "signalfd" }, #endif #ifdef __NR_signalfd4 { __NR_signalfd4, "signalfd4" }, #endif #ifdef __NR_sigpending { __NR_sigpending, "sigpending" }, #endif #ifdef __NR_sigprocmask { __NR_sigprocmask, "sigprocmask" }, #endif #ifdef __NR_sigreturn { __NR_sigreturn, "sigreturn" }, #endif #ifdef __NR_sigsuspend { __NR_sigsuspend, "sigsuspend" }, #endif #ifdef __NR_socket { __NR_socket, "socket" }, #endif #ifdef __NR_socketcall { __NR_socketcall, "socketcall" }, #endif #ifdef __NR_socketpair { __NR_socketpair, "socketpair" }, #endif #ifdef __NR_splice { __NR_splice, "splice" }, #endif #ifdef __NR_ssetmask { __NR_ssetmask, "ssetmask" }, #endif #ifdef __NR_stat { __NR_stat, "stat" }, #endif #ifdef __NR_stat64 { __NR_stat64, "stat64" }, #endif #ifdef __NR_statfs { __NR_statfs, "statfs" }, #endif #ifdef __NR_statfs64 { __NR_statfs64, "statfs64" }, #endif #ifdef __NR_stime { __NR_stime, "stime" }, #endif #ifdef __NR_stty { __NR_stty, "stty" }, #endif #ifdef __NR_swapoff { __NR_swapoff, "swapoff" }, #endif #ifdef __NR_swapon { __NR_swapon, "swapon" }, #endif #ifdef __NR_symlink { __NR_symlink, "symlink" }, #endif #ifdef __NR_symlinkat { __NR_symlinkat, "symlinkat" }, #endif #ifdef __NR_sync { __NR_sync, "sync" }, #endif #ifdef __NR_sync_file_range { __NR_sync_file_range, "sync_file_range" }, #endif #ifdef __NR_syncfs { __NR_syncfs, "syncfs" }, #endif #ifdef __NR_sysfs { __NR_sysfs, "sysfs" }, #endif #ifdef __NR_sysinfo { __NR_sysinfo, "sysinfo" }, #endif #ifdef __NR_syslog { __NR_syslog, "syslog" }, #endif #ifdef __NR_tee { __NR_tee, "tee" }, #endif #ifdef __NR_tgkill { __NR_tgkill, "tgkill" }, #endif #ifdef __NR_time { __NR_time, "time" }, #endif #ifdef __NR_timer_create { __NR_timer_create, "timer_create" }, #endif #ifdef __NR_timer_delete { __NR_timer_delete, "timer_delete" }, #endif #ifdef __NR_timer_getoverrun { __NR_timer_getoverrun, "timer_getoverrun" }, #endif #ifdef __NR_timer_gettime { __NR_timer_gettime, "timer_gettime" }, #endif #ifdef __NR_timer_settime { __NR_timer_settime, "timer_settime" }, #endif #ifdef __NR_timerfd_create { __NR_timerfd_create, "timerfd_create" }, #endif #ifdef __NR_timerfd_gettime { __NR_timerfd_gettime, "timerfd_gettime" }, #endif #ifdef __NR_timerfd_settime { __NR_timerfd_settime, "timerfd_settime" }, #endif #ifdef __NR_times { __NR_times, "times" }, #endif #ifdef __NR_tkill { __NR_tkill, "tkill" }, #endif #ifdef __NR_truncate { __NR_truncate, "truncate" }, #endif #ifdef __NR_truncate64 { __NR_truncate64, "truncate64" }, #endif #ifdef __NR_tuxcall { __NR_tuxcall, "tuxcall" }, #endif #ifdef __NR_ugetrlimit { __NR_ugetrlimit, "ugetrlimit" }, #endif #ifdef __NR_ulimit { __NR_ulimit, "ulimit" }, #endif #ifdef __NR_umask { __NR_umask, "umask" }, #endif #ifdef __NR_umount { __NR_umount, "umount" }, #endif #ifdef __NR_umount2 { __NR_umount2, "umount2" }, #endif #ifdef __NR_uname { __NR_uname, "uname" }, #endif #ifdef __NR_unlink { __NR_unlink, "unlink" }, #endif #ifdef __NR_unlinkat { __NR_unlinkat, "unlinkat" }, #endif #ifdef __NR_unshare { __NR_unshare, "unshare" }, #endif #ifdef __NR_uselib { __NR_uselib, "uselib" }, #endif #ifdef __NR_ustat { __NR_ustat, "ustat" }, #endif #ifdef __NR_utime { __NR_utime, "utime" }, #endif #ifdef __NR_utimensat { __NR_utimensat, "utimensat" }, #endif #ifdef __NR_utimes { __NR_utimes, "utimes" }, #endif #ifdef __NR_vfork { __NR_vfork, "vfork" }, #endif #ifdef __NR_vhangup { __NR_vhangup, "vhangup" }, #endif #ifdef __NR_vm86 { __NR_vm86, "vm86" }, #endif #ifdef __NR_vm86old { __NR_vm86old, "vm86old" }, #endif #ifdef __NR_vmsplice { __NR_vmsplice, "vmsplice" }, #endif #ifdef __NR_vserver { __NR_vserver, "vserver" }, #endif #ifdef __NR_wait4 { __NR_wait4, "wait4" }, #endif #ifdef __NR_waitid { __NR_waitid, "waitid" }, #endif #ifdef __NR_waitpid { __NR_waitpid, "waitpid" }, #endif #ifdef __NR_write { __NR_write, "write" }, #endif #ifdef __NR_writev { __NR_writev, "writev" }, #endif {0, NULL} }; tor-0.2.7.6/src/common/torgzip.h0000644000175000017500000000452112621363245013345 00000000000000/* Copyright (c) 2003, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file torgzip.h * \brief Headers for torgzip.h **/ #ifndef TOR_TORGZIP_H #define TOR_TORGZIP_H /** Enumeration of what kind of compression to use. Only ZLIB_METHOD is * guaranteed to be supported by the compress/uncompress functions here; * GZIP_METHOD may be supported if we built against zlib version 1.2 or later * and is_gzip_supported() returns true. */ typedef enum { NO_METHOD=0, GZIP_METHOD=1, ZLIB_METHOD=2, UNKNOWN_METHOD=3 } compress_method_t; /** * Enumeration to define tradeoffs between memory usage and compression level. * HIGH_COMPRESSION saves the most bandwidth; LOW_COMPRESSION saves the most * memory. **/ typedef enum { HIGH_COMPRESSION, MEDIUM_COMPRESSION, LOW_COMPRESSION } zlib_compression_level_t; int tor_gzip_compress(char **out, size_t *out_len, const char *in, size_t in_len, compress_method_t method); int tor_gzip_uncompress(char **out, size_t *out_len, const char *in, size_t in_len, compress_method_t method, int complete_only, int protocol_warn_level); int is_gzip_supported(void); const char * tor_zlib_get_version_str(void); const char * tor_zlib_get_header_version_str(void); compress_method_t detect_compression_method(const char *in, size_t in_len); /** Return values from tor_zlib_process; see that function's documentation for * details. */ typedef enum { TOR_ZLIB_OK, TOR_ZLIB_DONE, TOR_ZLIB_BUF_FULL, TOR_ZLIB_ERR } tor_zlib_output_t; /** Internal state for an incremental zlib compression/decompression. */ typedef struct tor_zlib_state_t tor_zlib_state_t; tor_zlib_state_t *tor_zlib_new(int compress, compress_method_t method, zlib_compression_level_t level); tor_zlib_output_t tor_zlib_process(tor_zlib_state_t *state, char **out, size_t *out_len, const char **in, size_t *in_len, int finish); void tor_zlib_free(tor_zlib_state_t *state); size_t tor_zlib_state_size(const tor_zlib_state_t *state); size_t tor_zlib_get_total_allocation(void); #endif tor-0.2.7.6/src/common/compat_threads.h0000644000175000017500000001126612621363245014650 00000000000000/* Copyright (c) 2003-2004, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef TOR_COMPAT_THREADS_H #define TOR_COMPAT_THREADS_H #include "orconfig.h" #include "torint.h" #include "testsupport.h" #if defined(HAVE_PTHREAD_H) && !defined(_WIN32) #include #endif #if defined(_WIN32) #define USE_WIN32_THREADS #elif defined(HAVE_PTHREAD_H) && defined(HAVE_PTHREAD_CREATE) #define USE_PTHREADS #else #error "No threading system was found" #endif int spawn_func(void (*func)(void *), void *data); void spawn_exit(void) ATTR_NORETURN; /* Because we use threads instead of processes on most platforms (Windows, * Linux, etc), we need locking for them. On platforms with poor thread * support or broken gethostbyname_r, these functions are no-ops. */ /** A generic lock structure for multithreaded builds. */ typedef struct tor_mutex_t { #if defined(USE_WIN32_THREADS) /** Windows-only: on windows, we implement locks with CRITICAL_SECTIONS. */ CRITICAL_SECTION mutex; #elif defined(USE_PTHREADS) /** Pthreads-only: with pthreads, we implement locks with * pthread_mutex_t. */ pthread_mutex_t mutex; #else /** No-threads only: Dummy variable so that tor_mutex_t takes up space. */ int _unused; #endif } tor_mutex_t; tor_mutex_t *tor_mutex_new(void); tor_mutex_t *tor_mutex_new_nonrecursive(void); void tor_mutex_init(tor_mutex_t *m); void tor_mutex_init_nonrecursive(tor_mutex_t *m); void tor_mutex_acquire(tor_mutex_t *m); void tor_mutex_release(tor_mutex_t *m); void tor_mutex_free(tor_mutex_t *m); void tor_mutex_uninit(tor_mutex_t *m); unsigned long tor_get_thread_id(void); void tor_threads_init(void); /** Conditions need nonrecursive mutexes with pthreads. */ #define tor_mutex_init_for_cond(m) tor_mutex_init_nonrecursive(m) void set_main_thread(void); int in_main_thread(void); typedef struct tor_cond_t { #ifdef USE_PTHREADS pthread_cond_t cond; #elif defined(USE_WIN32_THREADS) HANDLE event; CRITICAL_SECTION lock; int n_waiting; int n_to_wake; int generation; #else #error no known condition implementation. #endif } tor_cond_t; tor_cond_t *tor_cond_new(void); void tor_cond_free(tor_cond_t *cond); int tor_cond_init(tor_cond_t *cond); void tor_cond_uninit(tor_cond_t *cond); int tor_cond_wait(tor_cond_t *cond, tor_mutex_t *mutex, const struct timeval *tv); void tor_cond_signal_one(tor_cond_t *cond); void tor_cond_signal_all(tor_cond_t *cond); /** Helper type used to manage waking up the main thread while it's in * the libevent main loop. Used by the work queue code. */ typedef struct alert_sockets_s { /* XXXX This structure needs a better name. */ /** Socket that the main thread should listen for EV_READ events on. * Note that this socket may be a regular fd on a non-Windows platform. */ tor_socket_t read_fd; /** Socket to use when alerting the main thread. */ tor_socket_t write_fd; /** Function to alert the main thread */ int (*alert_fn)(tor_socket_t write_fd); /** Function to make the main thread no longer alerted. */ int (*drain_fn)(tor_socket_t read_fd); } alert_sockets_t; /* Flags to disable one or more alert_sockets backends. */ #define ASOCKS_NOEVENTFD2 (1u<<0) #define ASOCKS_NOEVENTFD (1u<<1) #define ASOCKS_NOPIPE2 (1u<<2) #define ASOCKS_NOPIPE (1u<<3) #define ASOCKS_NOSOCKETPAIR (1u<<4) int alert_sockets_create(alert_sockets_t *socks_out, uint32_t flags); void alert_sockets_close(alert_sockets_t *socks); typedef struct tor_threadlocal_s { #ifdef _WIN32 DWORD index; #else pthread_key_t key; #endif } tor_threadlocal_t; /** Initialize a thread-local variable. * * After you call this function on a tor_threadlocal_t, you can call * tor_threadlocal_set to change the current value of this variable for the * current thread, and tor_threadlocal_get to retrieve the current value for * the current thread. Each thread has its own value. **/ int tor_threadlocal_init(tor_threadlocal_t *threadlocal); /** * Release all resource associated with a thread-local variable. */ void tor_threadlocal_destroy(tor_threadlocal_t *threadlocal); /** * Return the current value of a thread-local variable for this thread. * * It's undefined behavior to use this function if the threadlocal hasn't * been initialized, or has been destroyed. */ void *tor_threadlocal_get(tor_threadlocal_t *threadlocal); /** * Change the current value of a thread-local variable for this thread to * value. * * It's undefined behavior to use this function if the threadlocal hasn't * been initialized, or has been destroyed. */ void tor_threadlocal_set(tor_threadlocal_t *threadlocal, void *value); #endif tor-0.2.7.6/src/common/crypto_pwbox.c0000644000175000017500000001301712621363245014401 00000000000000 #include "crypto.h" #include "crypto_s2k.h" #include "crypto_pwbox.h" #include "di_ops.h" #include "util.h" #include "pwbox.h" /* 8 bytes "TORBOX00" 1 byte: header len (H) H bytes: header, denoting secret key algorithm. 16 bytes: IV Round up to multiple of 128 bytes, then encrypt: 4 bytes: data len data zeros 32 bytes: HMAC-SHA256 of all previous bytes. */ #define MAX_OVERHEAD (S2K_MAXLEN + 8 + 1 + 32 + CIPHER_IV_LEN) /** * Make an authenticated passphrase-encrypted blob to encode the * input_len bytes in input using the passphrase * secret of secret_len bytes. Allocate a new chunk of memory * to hold the encrypted data, and store a pointer to that memory in * *out, and its size in outlen_out. Use s2k_flags as an * argument to the passphrase-hashing function. */ int crypto_pwbox(uint8_t **out, size_t *outlen_out, const uint8_t *input, size_t input_len, const char *secret, size_t secret_len, unsigned s2k_flags) { uint8_t *result = NULL, *encrypted_portion; size_t encrypted_len = 128 * CEIL_DIV(input_len+4, 128); ssize_t result_len; int spec_len; uint8_t keys[CIPHER_KEY_LEN + DIGEST256_LEN]; pwbox_encoded_t *enc = NULL; ssize_t enc_len; crypto_cipher_t *cipher; int rv; enc = pwbox_encoded_new(); pwbox_encoded_setlen_skey_header(enc, S2K_MAXLEN); spec_len = secret_to_key_make_specifier( pwbox_encoded_getarray_skey_header(enc), S2K_MAXLEN, s2k_flags); if (spec_len < 0 || spec_len > S2K_MAXLEN) goto err; pwbox_encoded_setlen_skey_header(enc, spec_len); enc->header_len = spec_len; crypto_rand((char*)enc->iv, sizeof(enc->iv)); pwbox_encoded_setlen_data(enc, encrypted_len); encrypted_portion = pwbox_encoded_getarray_data(enc); set_uint32(encrypted_portion, htonl((uint32_t)input_len)); memcpy(encrypted_portion+4, input, input_len); /* Now that all the data is in position, derive some keys, encrypt, and * digest */ if (secret_to_key_derivekey(keys, sizeof(keys), pwbox_encoded_getarray_skey_header(enc), spec_len, secret, secret_len) < 0) goto err; cipher = crypto_cipher_new_with_iv((char*)keys, (char*)enc->iv); crypto_cipher_crypt_inplace(cipher, (char*)encrypted_portion, encrypted_len); crypto_cipher_free(cipher); result_len = pwbox_encoded_encoded_len(enc); if (result_len < 0) goto err; result = tor_malloc(result_len); enc_len = pwbox_encoded_encode(result, result_len, enc); if (enc_len < 0) goto err; tor_assert(enc_len == result_len); crypto_hmac_sha256((char*) result + result_len - 32, (const char*)keys + CIPHER_KEY_LEN, DIGEST256_LEN, (const char*)result, result_len - 32); *out = result; *outlen_out = result_len; rv = 0; goto out; err: tor_free(result); rv = -1; out: pwbox_encoded_free(enc); memwipe(keys, 0, sizeof(keys)); return rv; } /** * Try to decrypt the passphrase-encrypted blob of input_len bytes in * input using the passphrase secret of secret_len bytes. * On success, return 0 and allocate a new chunk of memory to hold the * decrypted data, and store a pointer to that memory in *out, and its * size in outlen_out. On failure, return UNPWBOX_BAD_SECRET if * the passphrase might have been wrong, and UNPWBOX_CORRUPT if the object is * definitely corrupt. */ int crypto_unpwbox(uint8_t **out, size_t *outlen_out, const uint8_t *inp, size_t input_len, const char *secret, size_t secret_len) { uint8_t *result = NULL; const uint8_t *encrypted; uint8_t keys[CIPHER_KEY_LEN + DIGEST256_LEN]; uint8_t hmac[DIGEST256_LEN]; uint32_t result_len; size_t encrypted_len; crypto_cipher_t *cipher = NULL; int rv = UNPWBOX_CORRUPTED; ssize_t got_len; pwbox_encoded_t *enc = NULL; got_len = pwbox_encoded_parse(&enc, inp, input_len); if (got_len < 0 || (size_t)got_len != input_len) goto err; /* Now derive the keys and check the hmac. */ if (secret_to_key_derivekey(keys, sizeof(keys), pwbox_encoded_getarray_skey_header(enc), pwbox_encoded_getlen_skey_header(enc), secret, secret_len) < 0) goto err; crypto_hmac_sha256((char *)hmac, (const char*)keys + CIPHER_KEY_LEN, DIGEST256_LEN, (const char*)inp, input_len - DIGEST256_LEN); if (tor_memneq(hmac, enc->hmac, DIGEST256_LEN)) { rv = UNPWBOX_BAD_SECRET; goto err; } /* How long is the plaintext? */ encrypted = pwbox_encoded_getarray_data(enc); encrypted_len = pwbox_encoded_getlen_data(enc); if (encrypted_len < 4) goto err; cipher = crypto_cipher_new_with_iv((char*)keys, (char*)enc->iv); crypto_cipher_decrypt(cipher, (char*)&result_len, (char*)encrypted, 4); result_len = ntohl(result_len); if (encrypted_len < result_len + 4) goto err; /* Allocate a buffer and decrypt */ result = tor_malloc_zero(result_len); crypto_cipher_decrypt(cipher, (char*)result, (char*)encrypted+4, result_len); *out = result; *outlen_out = result_len; rv = UNPWBOX_OKAY; goto out; err: tor_free(result); out: crypto_cipher_free(cipher); pwbox_encoded_free(enc); memwipe(keys, 0, sizeof(keys)); return rv; } tor-0.2.7.6/src/common/sandbox.c0000644000175000017500000012414312631612325013300 00000000000000/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file sandbox.c * \brief Code to enable sandboxing. **/ #include "orconfig.h" #ifndef _LARGEFILE64_SOURCE /** * Temporarily required for O_LARGEFILE flag. Needs to be removed * with the libevent fix. */ #define _LARGEFILE64_SOURCE #endif /** Malloc mprotect limit in bytes. */ #define MALLOC_MP_LIM 1048576 #include #include #include #include "sandbox.h" #include "container.h" #include "torlog.h" #include "torint.h" #include "util.h" #include "tor_queue.h" #include "ht.h" #define DEBUGGING_CLOSE #if defined(USE_LIBSECCOMP) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef HAVE_LINUX_NETFILTER_IPV4_H #include #endif #ifdef HAVE_LINUX_IF_H #include #endif #ifdef HAVE_LINUX_NETFILTER_IPV6_IP6_TABLES_H #include #endif #if defined(HAVE_EXECINFO_H) && defined(HAVE_BACKTRACE) && \ defined(HAVE_BACKTRACE_SYMBOLS_FD) && defined(HAVE_SIGACTION) #define USE_BACKTRACE #define EXPOSE_CLEAN_BACKTRACE #include "backtrace.h" #endif #ifdef USE_BACKTRACE #include #endif /** * Linux 32 bit definitions */ #if defined(__i386__) #define REG_SYSCALL REG_EAX #define M_SYSCALL gregs[REG_SYSCALL] /** * Linux 64 bit definitions */ #elif defined(__x86_64__) #define REG_SYSCALL REG_RAX #define M_SYSCALL gregs[REG_SYSCALL] #elif defined(__arm__) #define M_SYSCALL arm_r7 #endif /**Determines if at least one sandbox is active.*/ static int sandbox_active = 0; /** Holds the parameter list configuration for the sandbox.*/ static sandbox_cfg_t *filter_dynamic = NULL; #undef SCMP_CMP #define SCMP_CMP(a,b,c) ((struct scmp_arg_cmp){(a),(b),(c),0}) #define SCMP_CMP_STR(a,b,c) \ ((struct scmp_arg_cmp) {(a),(b),(intptr_t)(void*)(c),0}) #define SCMP_CMP4(a,b,c,d) ((struct scmp_arg_cmp){(a),(b),(c),(d)}) /* We use a wrapper here because these masked comparisons seem to be pretty * verbose. Also, it's important to cast to scmp_datum_t before negating the * mask, since otherwise the negation might get applied to a 32 bit value, and * the high bits of the value might get masked out improperly. */ #define SCMP_CMP_MASKED(a,b,c) \ SCMP_CMP4((a), SCMP_CMP_MASKED_EQ, ~(scmp_datum_t)(b), (c)) /** Variable used for storing all syscall numbers that will be allowed with the * stage 1 general Tor sandbox. */ static int filter_nopar_gen[] = { SCMP_SYS(access), SCMP_SYS(brk), SCMP_SYS(clock_gettime), SCMP_SYS(close), SCMP_SYS(clone), SCMP_SYS(epoll_create), SCMP_SYS(epoll_wait), #ifdef HAVE_EVENTFD SCMP_SYS(eventfd2), #endif #ifdef HAVE_PIPE2 SCMP_SYS(pipe2), #endif #ifdef HAVE_PIPE SCMP_SYS(pipe), #endif SCMP_SYS(fcntl), SCMP_SYS(fstat), #ifdef __NR_fstat64 SCMP_SYS(fstat64), #endif SCMP_SYS(futex), SCMP_SYS(getdents64), SCMP_SYS(getegid), #ifdef __NR_getegid32 SCMP_SYS(getegid32), #endif SCMP_SYS(geteuid), #ifdef __NR_geteuid32 SCMP_SYS(geteuid32), #endif SCMP_SYS(getgid), #ifdef __NR_getgid32 SCMP_SYS(getgid32), #endif #ifdef __NR_getrlimit SCMP_SYS(getrlimit), #endif SCMP_SYS(gettimeofday), SCMP_SYS(gettid), SCMP_SYS(getuid), #ifdef __NR_getuid32 SCMP_SYS(getuid32), #endif SCMP_SYS(lseek), #ifdef __NR__llseek SCMP_SYS(_llseek), #endif SCMP_SYS(mkdir), SCMP_SYS(mlockall), #ifdef __NR_mmap /* XXXX restrict this in the same ways as mmap2 */ SCMP_SYS(mmap), #endif SCMP_SYS(munmap), SCMP_SYS(read), SCMP_SYS(rt_sigreturn), SCMP_SYS(sched_getaffinity), SCMP_SYS(sendmsg), SCMP_SYS(set_robust_list), #ifdef __NR_sigreturn SCMP_SYS(sigreturn), #endif SCMP_SYS(stat), SCMP_SYS(uname), SCMP_SYS(wait4), SCMP_SYS(write), SCMP_SYS(writev), SCMP_SYS(exit_group), SCMP_SYS(exit), SCMP_SYS(madvise), #ifdef __NR_stat64 // getaddrinfo uses this.. SCMP_SYS(stat64), #endif /* * These socket syscalls are not required on x86_64 and not supported with * some libseccomp versions (eg: 1.0.1) */ #if defined(__i386) SCMP_SYS(recv), SCMP_SYS(send), #endif // socket syscalls SCMP_SYS(bind), SCMP_SYS(listen), SCMP_SYS(connect), SCMP_SYS(getsockname), SCMP_SYS(recvmsg), SCMP_SYS(recvfrom), SCMP_SYS(sendto), SCMP_SYS(unlink) }; /* These macros help avoid the error where the number of filters we add on a * single rule don't match the arg_cnt param. */ #define seccomp_rule_add_0(ctx,act,call) \ seccomp_rule_add((ctx),(act),(call),0) #define seccomp_rule_add_1(ctx,act,call,f1) \ seccomp_rule_add((ctx),(act),(call),1,(f1)) #define seccomp_rule_add_2(ctx,act,call,f1,f2) \ seccomp_rule_add((ctx),(act),(call),2,(f1),(f2)) #define seccomp_rule_add_3(ctx,act,call,f1,f2,f3) \ seccomp_rule_add((ctx),(act),(call),3,(f1),(f2),(f3)) #define seccomp_rule_add_4(ctx,act,call,f1,f2,f3,f4) \ seccomp_rule_add((ctx),(act),(call),4,(f1),(f2),(f3),(f4)) /** * Function responsible for setting up the rt_sigaction syscall for * the seccomp filter sandbox. */ static int sb_rt_sigaction(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { unsigned i; int rc; int param[] = { SIGINT, SIGTERM, SIGPIPE, SIGUSR1, SIGUSR2, SIGHUP, SIGCHLD, #ifdef SIGXFSZ SIGXFSZ #endif }; (void) filter; for (i = 0; i < ARRAY_LENGTH(param); i++) { rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(rt_sigaction), SCMP_CMP(0, SCMP_CMP_EQ, param[i])); if (rc) break; } return rc; } #if 0 /** * Function responsible for setting up the execve syscall for * the seccomp filter sandbox. */ static int sb_execve(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc; sandbox_cfg_t *elem = NULL; // for each dynamic parameter filters for (elem = filter; elem != NULL; elem = elem->next) { smp_param_t *param = elem->param; if (param != NULL && param->prot == 1 && param->syscall == SCMP_SYS(execve)) { rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(execve), SCMP_CMP_STR(0, SCMP_CMP_EQ, param->value)); if (rc != 0) { log_err(LD_BUG,"(Sandbox) failed to add execve syscall, received " "libseccomp error %d", rc); return rc; } } } return 0; } #endif /** * Function responsible for setting up the time syscall for * the seccomp filter sandbox. */ static int sb_time(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { (void) filter; #ifdef __NR_time return seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(time), SCMP_CMP(0, SCMP_CMP_EQ, 0)); #else return 0; #endif } /** * Function responsible for setting up the accept4 syscall for * the seccomp filter sandbox. */ static int sb_accept4(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc = 0; (void)filter; #ifdef __i386__ rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socketcall), SCMP_CMP(0, SCMP_CMP_EQ, 18)); if (rc) { return rc; } #endif rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(accept4), SCMP_CMP_MASKED(3, SOCK_CLOEXEC|SOCK_NONBLOCK, 0)); if (rc) { return rc; } return 0; } #ifdef __NR_mmap2 /** * Function responsible for setting up the mmap2 syscall for * the seccomp filter sandbox. */ static int sb_mmap2(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc = 0; (void)filter; rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mmap2), SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ), SCMP_CMP(3, SCMP_CMP_EQ, MAP_PRIVATE)); if (rc) { return rc; } rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mmap2), SCMP_CMP(2, SCMP_CMP_EQ, PROT_NONE), SCMP_CMP(3, SCMP_CMP_EQ, MAP_PRIVATE|MAP_ANONYMOUS|MAP_NORESERVE)); if (rc) { return rc; } rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mmap2), SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ|PROT_WRITE), SCMP_CMP(3, SCMP_CMP_EQ, MAP_PRIVATE|MAP_ANONYMOUS)); if (rc) { return rc; } rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mmap2), SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ|PROT_WRITE), SCMP_CMP(3, SCMP_CMP_EQ,MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK)); if (rc) { return rc; } rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mmap2), SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ|PROT_WRITE), SCMP_CMP(3, SCMP_CMP_EQ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE)); if (rc) { return rc; } rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mmap2), SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ|PROT_WRITE), SCMP_CMP(3, SCMP_CMP_EQ, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS)); if (rc) { return rc; } rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mmap2), SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ|PROT_EXEC), SCMP_CMP(3, SCMP_CMP_EQ, MAP_PRIVATE|MAP_DENYWRITE)); if (rc) { return rc; } return 0; } #endif /** * Function responsible for setting up the open syscall for * the seccomp filter sandbox. */ static int sb_open(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc; sandbox_cfg_t *elem = NULL; // for each dynamic parameter filters for (elem = filter; elem != NULL; elem = elem->next) { smp_param_t *param = elem->param; if (param != NULL && param->prot == 1 && param->syscall == SCMP_SYS(open)) { rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(open), SCMP_CMP_STR(0, SCMP_CMP_EQ, param->value)); if (rc != 0) { log_err(LD_BUG,"(Sandbox) failed to add open syscall, received " "libseccomp error %d", rc); return rc; } } } rc = seccomp_rule_add_1(ctx, SCMP_ACT_ERRNO(EACCES), SCMP_SYS(open), SCMP_CMP_MASKED(1, O_CLOEXEC|O_NONBLOCK|O_NOCTTY, O_RDONLY)); if (rc != 0) { log_err(LD_BUG,"(Sandbox) failed to add open syscall, received libseccomp " "error %d", rc); return rc; } return 0; } static int sb__sysctl(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc; (void) filter; (void) ctx; rc = seccomp_rule_add_0(ctx, SCMP_ACT_ERRNO(EPERM), SCMP_SYS(_sysctl)); if (rc != 0) { log_err(LD_BUG,"(Sandbox) failed to add _sysctl syscall, " "received libseccomp error %d", rc); return rc; } return 0; } /** * Function responsible for setting up the rename syscall for * the seccomp filter sandbox. */ static int sb_rename(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc; sandbox_cfg_t *elem = NULL; // for each dynamic parameter filters for (elem = filter; elem != NULL; elem = elem->next) { smp_param_t *param = elem->param; if (param != NULL && param->prot == 1 && param->syscall == SCMP_SYS(rename)) { rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(rename), SCMP_CMP_STR(0, SCMP_CMP_EQ, param->value), SCMP_CMP_STR(1, SCMP_CMP_EQ, param->value2)); if (rc != 0) { log_err(LD_BUG,"(Sandbox) failed to add rename syscall, received " "libseccomp error %d", rc); return rc; } } } return 0; } /** * Function responsible for setting up the openat syscall for * the seccomp filter sandbox. */ static int sb_openat(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc; sandbox_cfg_t *elem = NULL; // for each dynamic parameter filters for (elem = filter; elem != NULL; elem = elem->next) { smp_param_t *param = elem->param; if (param != NULL && param->prot == 1 && param->syscall == SCMP_SYS(openat)) { rc = seccomp_rule_add_3(ctx, SCMP_ACT_ALLOW, SCMP_SYS(openat), SCMP_CMP(0, SCMP_CMP_EQ, AT_FDCWD), SCMP_CMP_STR(1, SCMP_CMP_EQ, param->value), SCMP_CMP(2, SCMP_CMP_EQ, O_RDONLY|O_NONBLOCK|O_LARGEFILE|O_DIRECTORY| O_CLOEXEC)); if (rc != 0) { log_err(LD_BUG,"(Sandbox) failed to add openat syscall, received " "libseccomp error %d", rc); return rc; } } } return 0; } /** * Function responsible for setting up the socket syscall for * the seccomp filter sandbox. */ static int sb_socket(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc = 0; int i; (void) filter; #ifdef __i386__ rc = seccomp_rule_add_0(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socket)); if (rc) return rc; #endif rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socket), SCMP_CMP(0, SCMP_CMP_EQ, PF_FILE), SCMP_CMP_MASKED(1, SOCK_CLOEXEC|SOCK_NONBLOCK, SOCK_STREAM)); if (rc) return rc; for (i = 0; i < 2; ++i) { const int pf = i ? PF_INET : PF_INET6; rc = seccomp_rule_add_3(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socket), SCMP_CMP(0, SCMP_CMP_EQ, pf), SCMP_CMP_MASKED(1, SOCK_CLOEXEC|SOCK_NONBLOCK, SOCK_STREAM), SCMP_CMP(2, SCMP_CMP_EQ, IPPROTO_TCP)); if (rc) return rc; rc = seccomp_rule_add_3(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socket), SCMP_CMP(0, SCMP_CMP_EQ, pf), SCMP_CMP_MASKED(1, SOCK_CLOEXEC|SOCK_NONBLOCK, SOCK_DGRAM), SCMP_CMP(2, SCMP_CMP_EQ, IPPROTO_IP)); if (rc) return rc; } rc = seccomp_rule_add_3(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socket), SCMP_CMP(0, SCMP_CMP_EQ, PF_UNIX), SCMP_CMP_MASKED(1, SOCK_CLOEXEC|SOCK_NONBLOCK, SOCK_STREAM), SCMP_CMP(2, SCMP_CMP_EQ, 0)); if (rc) return rc; rc = seccomp_rule_add_3(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socket), SCMP_CMP(0, SCMP_CMP_EQ, PF_UNIX), SCMP_CMP_MASKED(1, SOCK_CLOEXEC|SOCK_NONBLOCK, SOCK_DGRAM), SCMP_CMP(2, SCMP_CMP_EQ, 0)); if (rc) return rc; rc = seccomp_rule_add_3(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socket), SCMP_CMP(0, SCMP_CMP_EQ, PF_NETLINK), SCMP_CMP(1, SCMP_CMP_EQ, SOCK_RAW), SCMP_CMP(2, SCMP_CMP_EQ, 0)); if (rc) return rc; return 0; } /** * Function responsible for setting up the socketpair syscall for * the seccomp filter sandbox. */ static int sb_socketpair(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc = 0; (void) filter; #ifdef __i386__ rc = seccomp_rule_add_0(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socketpair)); if (rc) return rc; #endif rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(socketpair), SCMP_CMP(0, SCMP_CMP_EQ, PF_FILE), SCMP_CMP(1, SCMP_CMP_EQ, SOCK_STREAM|SOCK_CLOEXEC)); if (rc) return rc; return 0; } /** * Function responsible for setting up the setsockopt syscall for * the seccomp filter sandbox. */ static int sb_setsockopt(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc = 0; (void) filter; #ifdef __i386__ rc = seccomp_rule_add_0(ctx, SCMP_ACT_ALLOW, SCMP_SYS(setsockopt)); if (rc) return rc; #endif rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(setsockopt), SCMP_CMP(1, SCMP_CMP_EQ, SOL_SOCKET), SCMP_CMP(2, SCMP_CMP_EQ, SO_REUSEADDR)); if (rc) return rc; rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(setsockopt), SCMP_CMP(1, SCMP_CMP_EQ, SOL_SOCKET), SCMP_CMP(2, SCMP_CMP_EQ, SO_SNDBUF)); if (rc) return rc; rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(setsockopt), SCMP_CMP(1, SCMP_CMP_EQ, SOL_SOCKET), SCMP_CMP(2, SCMP_CMP_EQ, SO_RCVBUF)); if (rc) return rc; #ifdef IP_TRANSPARENT rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(setsockopt), SCMP_CMP(1, SCMP_CMP_EQ, SOL_IP), SCMP_CMP(2, SCMP_CMP_EQ, IP_TRANSPARENT)); if (rc) return rc; #endif return 0; } /** * Function responsible for setting up the getsockopt syscall for * the seccomp filter sandbox. */ static int sb_getsockopt(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc = 0; (void) filter; #ifdef __i386__ rc = seccomp_rule_add_0(ctx, SCMP_ACT_ALLOW, SCMP_SYS(getsockopt)); if (rc) return rc; #endif rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(getsockopt), SCMP_CMP(1, SCMP_CMP_EQ, SOL_SOCKET), SCMP_CMP(2, SCMP_CMP_EQ, SO_ERROR)); if (rc) return rc; #ifdef HAVE_LINUX_NETFILTER_IPV4_H rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(getsockopt), SCMP_CMP(1, SCMP_CMP_EQ, SOL_IP), SCMP_CMP(2, SCMP_CMP_EQ, SO_ORIGINAL_DST)); if (rc) return rc; #endif #ifdef HAVE_LINUX_NETFILTER_IPV6_IP6_TABLES_H rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(getsockopt), SCMP_CMP(1, SCMP_CMP_EQ, SOL_IPV6), SCMP_CMP(2, SCMP_CMP_EQ, IP6T_SO_ORIGINAL_DST)); if (rc) return rc; #endif return 0; } #ifdef __NR_fcntl64 /** * Function responsible for setting up the fcntl64 syscall for * the seccomp filter sandbox. */ static int sb_fcntl64(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc = 0; (void) filter; rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(fcntl64), SCMP_CMP(1, SCMP_CMP_EQ, F_GETFL)); if (rc) return rc; rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(fcntl64), SCMP_CMP(1, SCMP_CMP_EQ, F_SETFL), SCMP_CMP(2, SCMP_CMP_EQ, O_RDWR|O_NONBLOCK)); if (rc) return rc; rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(fcntl64), SCMP_CMP(1, SCMP_CMP_EQ, F_GETFD)); if (rc) return rc; rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(fcntl64), SCMP_CMP(1, SCMP_CMP_EQ, F_SETFD), SCMP_CMP(2, SCMP_CMP_EQ, FD_CLOEXEC)); if (rc) return rc; return 0; } #endif /** * Function responsible for setting up the epoll_ctl syscall for * the seccomp filter sandbox. * * Note: basically allows everything but will keep for now.. */ static int sb_epoll_ctl(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc = 0; (void) filter; rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(epoll_ctl), SCMP_CMP(1, SCMP_CMP_EQ, EPOLL_CTL_ADD)); if (rc) return rc; rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(epoll_ctl), SCMP_CMP(1, SCMP_CMP_EQ, EPOLL_CTL_MOD)); if (rc) return rc; rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(epoll_ctl), SCMP_CMP(1, SCMP_CMP_EQ, EPOLL_CTL_DEL)); if (rc) return rc; return 0; } /** * Function responsible for setting up the fcntl64 syscall for * the seccomp filter sandbox. * * NOTE: if multiple filters need to be added, the PR_SECCOMP parameter needs * to be whitelisted in this function. */ static int sb_prctl(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc = 0; (void) filter; rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(prctl), SCMP_CMP(0, SCMP_CMP_EQ, PR_SET_DUMPABLE)); if (rc) return rc; return 0; } /** * Function responsible for setting up the fcntl64 syscall for * the seccomp filter sandbox. * * NOTE: does not NEED to be here.. currently only occurs before filter; will * keep just in case for the future. */ static int sb_mprotect(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc = 0; (void) filter; rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mprotect), SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ)); if (rc) return rc; rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mprotect), SCMP_CMP(2, SCMP_CMP_EQ, PROT_NONE)); if (rc) return rc; return 0; } /** * Function responsible for setting up the rt_sigprocmask syscall for * the seccomp filter sandbox. */ static int sb_rt_sigprocmask(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc = 0; (void) filter; rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(rt_sigprocmask), SCMP_CMP(0, SCMP_CMP_EQ, SIG_UNBLOCK)); if (rc) return rc; rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(rt_sigprocmask), SCMP_CMP(0, SCMP_CMP_EQ, SIG_SETMASK)); if (rc) return rc; return 0; } /** * Function responsible for setting up the flock syscall for * the seccomp filter sandbox. * * NOTE: does not need to be here, occurs before filter is applied. */ static int sb_flock(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc = 0; (void) filter; rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(flock), SCMP_CMP(1, SCMP_CMP_EQ, LOCK_EX|LOCK_NB)); if (rc) return rc; rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(flock), SCMP_CMP(1, SCMP_CMP_EQ, LOCK_UN)); if (rc) return rc; return 0; } /** * Function responsible for setting up the futex syscall for * the seccomp filter sandbox. */ static int sb_futex(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc = 0; (void) filter; // can remove rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(futex), SCMP_CMP(1, SCMP_CMP_EQ, FUTEX_WAIT_BITSET_PRIVATE|FUTEX_CLOCK_REALTIME)); if (rc) return rc; rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(futex), SCMP_CMP(1, SCMP_CMP_EQ, FUTEX_WAKE_PRIVATE)); if (rc) return rc; rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(futex), SCMP_CMP(1, SCMP_CMP_EQ, FUTEX_WAIT_PRIVATE)); if (rc) return rc; return 0; } /** * Function responsible for setting up the mremap syscall for * the seccomp filter sandbox. * * NOTE: so far only occurs before filter is applied. */ static int sb_mremap(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc = 0; (void) filter; rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mremap), SCMP_CMP(3, SCMP_CMP_EQ, MREMAP_MAYMOVE)); if (rc) return rc; return 0; } /** * Function responsible for setting up the poll syscall for * the seccomp filter sandbox. */ static int sb_poll(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc = 0; (void) filter; rc = seccomp_rule_add_2(ctx, SCMP_ACT_ALLOW, SCMP_SYS(poll), SCMP_CMP(1, SCMP_CMP_EQ, 1), SCMP_CMP(2, SCMP_CMP_EQ, 10)); if (rc) return rc; return 0; } #ifdef __NR_stat64 /** * Function responsible for setting up the stat64 syscall for * the seccomp filter sandbox. */ static int sb_stat64(scmp_filter_ctx ctx, sandbox_cfg_t *filter) { int rc = 0; sandbox_cfg_t *elem = NULL; // for each dynamic parameter filters for (elem = filter; elem != NULL; elem = elem->next) { smp_param_t *param = elem->param; if (param != NULL && param->prot == 1 && (param->syscall == SCMP_SYS(open) || param->syscall == SCMP_SYS(stat64))) { rc = seccomp_rule_add_1(ctx, SCMP_ACT_ALLOW, SCMP_SYS(stat64), SCMP_CMP_STR(0, SCMP_CMP_EQ, param->value)); if (rc != 0) { log_err(LD_BUG,"(Sandbox) failed to add open syscall, received " "libseccomp error %d", rc); return rc; } } } return 0; } #endif /** * Array of function pointers responsible for filtering different syscalls at * a parameter level. */ static sandbox_filter_func_t filter_func[] = { sb_rt_sigaction, sb_rt_sigprocmask, #if 0 sb_execve, #endif sb_time, sb_accept4, #ifdef __NR_mmap2 sb_mmap2, #endif sb_open, sb_openat, sb__sysctl, sb_rename, #ifdef __NR_fcntl64 sb_fcntl64, #endif sb_epoll_ctl, sb_prctl, sb_mprotect, sb_flock, sb_futex, sb_mremap, sb_poll, #ifdef __NR_stat64 sb_stat64, #endif sb_socket, sb_setsockopt, sb_getsockopt, sb_socketpair }; const char * sandbox_intern_string(const char *str) { sandbox_cfg_t *elem; if (str == NULL) return NULL; for (elem = filter_dynamic; elem != NULL; elem = elem->next) { smp_param_t *param = elem->param; if (param->prot) { if (!strcmp(str, (char*)(param->value))) { return (char*)param->value; } if (param->value2 && !strcmp(str, (char*)param->value2)) { return (char*)param->value2; } } } if (sandbox_active) log_warn(LD_BUG, "No interned sandbox parameter found for %s", str); return str; } /** DOCDOC */ static int prot_strings_helper(strmap_t *locations, char **pr_mem_next_p, size_t *pr_mem_left_p, char **value_p) { char *param_val; size_t param_size; void *location; if (*value_p == 0) return 0; param_val = (char*) *value_p; param_size = strlen(param_val) + 1; location = strmap_get(locations, param_val); if (location) { // We already interned this string. tor_free(param_val); *value_p = location; return 0; } else if (*pr_mem_left_p >= param_size) { // copy to protected location = *pr_mem_next_p; memcpy(location, param_val, param_size); // re-point el parameter to protected tor_free(param_val); *value_p = location; strmap_set(locations, location, location); /* good real estate advice */ // move next available protected memory *pr_mem_next_p += param_size; *pr_mem_left_p -= param_size; return 0; } else { log_err(LD_BUG,"(Sandbox) insufficient protected memory!"); return -1; } } /** * Protects all the strings in the sandbox's parameter list configuration. It * works by calculating the total amount of memory required by the parameter * list, allocating the memory using mmap, and protecting it from writes with * mprotect(). */ static int prot_strings(scmp_filter_ctx ctx, sandbox_cfg_t* cfg) { int ret = 0; size_t pr_mem_size = 0, pr_mem_left = 0; char *pr_mem_next = NULL, *pr_mem_base; sandbox_cfg_t *el = NULL; strmap_t *locations = NULL; // get total number of bytes required to mmap. (Overestimate.) for (el = cfg; el != NULL; el = el->next) { pr_mem_size += strlen((char*) el->param->value) + 1; if (el->param->value2) pr_mem_size += strlen((char*) el->param->value2) + 1; } // allocate protected memory with MALLOC_MP_LIM canary pr_mem_base = (char*) mmap(NULL, MALLOC_MP_LIM + pr_mem_size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, -1, 0); if (pr_mem_base == MAP_FAILED) { log_err(LD_BUG,"(Sandbox) failed allocate protected memory! mmap: %s", strerror(errno)); ret = -1; goto out; } pr_mem_next = pr_mem_base + MALLOC_MP_LIM; pr_mem_left = pr_mem_size; locations = strmap_new(); // change el value pointer to protected for (el = cfg; el != NULL; el = el->next) { if (prot_strings_helper(locations, &pr_mem_next, &pr_mem_left, &el->param->value) < 0) { ret = -2; goto out; } if (prot_strings_helper(locations, &pr_mem_next, &pr_mem_left, &el->param->value2) < 0) { ret = -2; goto out; } el->param->prot = 1; } // protecting from writes if (mprotect(pr_mem_base, MALLOC_MP_LIM + pr_mem_size, PROT_READ)) { log_err(LD_BUG,"(Sandbox) failed to protect memory! mprotect: %s", strerror(errno)); ret = -3; goto out; } /* * Setting sandbox restrictions so the string memory cannot be tampered with */ // no mremap of the protected base address ret = seccomp_rule_add_1(ctx, SCMP_ACT_KILL, SCMP_SYS(mremap), SCMP_CMP(0, SCMP_CMP_EQ, (intptr_t) pr_mem_base)); if (ret) { log_err(LD_BUG,"(Sandbox) mremap protected memory filter fail!"); goto out; } // no munmap of the protected base address ret = seccomp_rule_add_1(ctx, SCMP_ACT_KILL, SCMP_SYS(munmap), SCMP_CMP(0, SCMP_CMP_EQ, (intptr_t) pr_mem_base)); if (ret) { log_err(LD_BUG,"(Sandbox) munmap protected memory filter fail!"); goto out; } /* * Allow mprotect with PROT_READ|PROT_WRITE because openssl uses it, but * never over the memory region used by the protected strings. * * PROT_READ|PROT_WRITE was originally fully allowed in sb_mprotect(), but * had to be removed due to limitation of libseccomp regarding intervals. * * There is a restriction on how much you can mprotect with R|W up to the * size of the canary. */ ret = seccomp_rule_add_3(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mprotect), SCMP_CMP(0, SCMP_CMP_LT, (intptr_t) pr_mem_base), SCMP_CMP(1, SCMP_CMP_LE, MALLOC_MP_LIM), SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ|PROT_WRITE)); if (ret) { log_err(LD_BUG,"(Sandbox) mprotect protected memory filter fail (LT)!"); goto out; } ret = seccomp_rule_add_3(ctx, SCMP_ACT_ALLOW, SCMP_SYS(mprotect), SCMP_CMP(0, SCMP_CMP_GT, (intptr_t) pr_mem_base + pr_mem_size + MALLOC_MP_LIM), SCMP_CMP(1, SCMP_CMP_LE, MALLOC_MP_LIM), SCMP_CMP(2, SCMP_CMP_EQ, PROT_READ|PROT_WRITE)); if (ret) { log_err(LD_BUG,"(Sandbox) mprotect protected memory filter fail (GT)!"); goto out; } out: strmap_free(locations, NULL); return ret; } /** * Auxiliary function used in order to allocate a sandbox_cfg_t element and set * it's values according the the parameter list. All elements are initialised * with the 'prot' field set to false, as the pointer is not protected at this * point. */ static sandbox_cfg_t* new_element2(int syscall, char *value, char *value2) { smp_param_t *param = NULL; sandbox_cfg_t *elem = tor_malloc_zero(sizeof(sandbox_cfg_t)); param = elem->param = tor_malloc_zero(sizeof(smp_param_t)); param->syscall = syscall; param->value = value; param->value2 = value2; param->prot = 0; return elem; } static sandbox_cfg_t* new_element(int syscall, char *value) { return new_element2(syscall, value, NULL); } #ifdef __NR_stat64 #define SCMP_stat SCMP_SYS(stat64) #else #define SCMP_stat SCMP_SYS(stat) #endif int sandbox_cfg_allow_stat_filename(sandbox_cfg_t **cfg, char *file) { sandbox_cfg_t *elem = NULL; elem = new_element(SCMP_stat, file); if (!elem) { log_err(LD_BUG,"(Sandbox) failed to register parameter!"); return -1; } elem->next = *cfg; *cfg = elem; return 0; } int sandbox_cfg_allow_open_filename(sandbox_cfg_t **cfg, char *file) { sandbox_cfg_t *elem = NULL; elem = new_element(SCMP_SYS(open), file); if (!elem) { log_err(LD_BUG,"(Sandbox) failed to register parameter!"); return -1; } elem->next = *cfg; *cfg = elem; return 0; } int sandbox_cfg_allow_rename(sandbox_cfg_t **cfg, char *file1, char *file2) { sandbox_cfg_t *elem = NULL; elem = new_element2(SCMP_SYS(rename), file1, file2); if (!elem) { log_err(LD_BUG,"(Sandbox) failed to register parameter!"); return -1; } elem->next = *cfg; *cfg = elem; return 0; } int sandbox_cfg_allow_openat_filename(sandbox_cfg_t **cfg, char *file) { sandbox_cfg_t *elem = NULL; elem = new_element(SCMP_SYS(openat), file); if (!elem) { log_err(LD_BUG,"(Sandbox) failed to register parameter!"); return -1; } elem->next = *cfg; *cfg = elem; return 0; } #if 0 int sandbox_cfg_allow_execve(sandbox_cfg_t **cfg, const char *com) { sandbox_cfg_t *elem = NULL; elem = new_element(SCMP_SYS(execve), com); if (!elem) { log_err(LD_BUG,"(Sandbox) failed to register parameter!"); return -1; } elem->next = *cfg; *cfg = elem; return 0; } #endif /** Cache entry for getaddrinfo results; used when sandboxing is implemented * so that we can consult the cache when the sandbox prevents us from doing * getaddrinfo. * * We support only a limited range of getaddrinfo calls, where servname is null * and hints contains only socktype=SOCK_STREAM, family in INET,INET6,UNSPEC. */ typedef struct cached_getaddrinfo_item_t { HT_ENTRY(cached_getaddrinfo_item_t) node; char *name; int family; /** set if no error; otherwise NULL */ struct addrinfo *res; /** 0 for no error; otherwise an EAI_* value */ int err; } cached_getaddrinfo_item_t; static unsigned cached_getaddrinfo_item_hash(const cached_getaddrinfo_item_t *item) { return (unsigned)siphash24g(item->name, strlen(item->name)) + item->family; } static unsigned cached_getaddrinfo_items_eq(const cached_getaddrinfo_item_t *a, const cached_getaddrinfo_item_t *b) { return (a->family == b->family) && 0 == strcmp(a->name, b->name); } static void cached_getaddrinfo_item_free(cached_getaddrinfo_item_t *item) { if (item == NULL) return; tor_free(item->name); if (item->res) freeaddrinfo(item->res); tor_free(item); } static HT_HEAD(getaddrinfo_cache, cached_getaddrinfo_item_t) getaddrinfo_cache = HT_INITIALIZER(); HT_PROTOTYPE(getaddrinfo_cache, cached_getaddrinfo_item_t, node, cached_getaddrinfo_item_hash, cached_getaddrinfo_items_eq); HT_GENERATE2(getaddrinfo_cache, cached_getaddrinfo_item_t, node, cached_getaddrinfo_item_hash, cached_getaddrinfo_items_eq, 0.6, tor_reallocarray_, tor_free_) /** If true, don't try to cache getaddrinfo results. */ static int sandbox_getaddrinfo_cache_disabled = 0; /** Tell the sandbox layer not to try to cache getaddrinfo results. Used as in * tor-resolve, when we have no intention of initializing crypto or of * installing the sandbox.*/ void sandbox_disable_getaddrinfo_cache(void) { sandbox_getaddrinfo_cache_disabled = 1; } void sandbox_freeaddrinfo(struct addrinfo *ai) { if (sandbox_getaddrinfo_cache_disabled) freeaddrinfo(ai); } int sandbox_getaddrinfo(const char *name, const char *servname, const struct addrinfo *hints, struct addrinfo **res) { int err; struct cached_getaddrinfo_item_t search, *item; if (sandbox_getaddrinfo_cache_disabled) { return getaddrinfo(name, NULL, hints, res); } if (servname != NULL) { log_warn(LD_BUG, "called with non-NULL servname"); return EAI_NONAME; } if (name == NULL) { log_warn(LD_BUG, "called with NULL name"); return EAI_NONAME; } *res = NULL; memset(&search, 0, sizeof(search)); search.name = (char *) name; search.family = hints ? hints->ai_family : AF_UNSPEC; item = HT_FIND(getaddrinfo_cache, &getaddrinfo_cache, &search); if (! sandbox_is_active()) { /* If the sandbox is not turned on yet, then getaddrinfo and store the result. */ err = getaddrinfo(name, NULL, hints, res); log_info(LD_NET,"(Sandbox) getaddrinfo %s.", err ? "failed" : "succeeded"); if (! item) { item = tor_malloc_zero(sizeof(*item)); item->name = tor_strdup(name); item->family = hints ? hints->ai_family : AF_UNSPEC; HT_INSERT(getaddrinfo_cache, &getaddrinfo_cache, item); } if (item->res) { freeaddrinfo(item->res); item->res = NULL; } item->res = *res; item->err = err; return err; } /* Otherwise, the sanbox is on. If we have an item, yield its cached result. */ if (item) { *res = item->res; return item->err; } /* getting here means something went wrong */ log_err(LD_BUG,"(Sandbox) failed to get address %s!", name); return EAI_NONAME; } int sandbox_add_addrinfo(const char *name) { struct addrinfo *res; struct addrinfo hints; int i; static const int families[] = { AF_INET, AF_INET6, AF_UNSPEC }; memset(&hints, 0, sizeof(hints)); hints.ai_socktype = SOCK_STREAM; for (i = 0; i < 3; ++i) { hints.ai_family = families[i]; res = NULL; (void) sandbox_getaddrinfo(name, NULL, &hints, &res); if (res) sandbox_freeaddrinfo(res); } return 0; } void sandbox_free_getaddrinfo_cache(void) { cached_getaddrinfo_item_t **next, **item; for (item = HT_START(getaddrinfo_cache, &getaddrinfo_cache); item; item = next) { next = HT_NEXT_RMV(getaddrinfo_cache, &getaddrinfo_cache, item); cached_getaddrinfo_item_free(*item); } HT_CLEAR(getaddrinfo_cache, &getaddrinfo_cache); } /** * Function responsible for going through the parameter syscall filters and * call each function pointer in the list. */ static int add_param_filter(scmp_filter_ctx ctx, sandbox_cfg_t* cfg) { unsigned i; int rc = 0; // function pointer for (i = 0; i < ARRAY_LENGTH(filter_func); i++) { if ((filter_func[i])(ctx, cfg)) { log_err(LD_BUG,"(Sandbox) failed to add syscall %d, received libseccomp " "error %d", i, rc); return rc; } } return 0; } /** * Function responsible of loading the libseccomp syscall filters which do not * have parameter filtering. */ static int add_noparam_filter(scmp_filter_ctx ctx) { unsigned i; int rc = 0; // add general filters for (i = 0; i < ARRAY_LENGTH(filter_nopar_gen); i++) { rc = seccomp_rule_add_0(ctx, SCMP_ACT_ALLOW, filter_nopar_gen[i]); if (rc != 0) { log_err(LD_BUG,"(Sandbox) failed to add syscall index %d (NR=%d), " "received libseccomp error %d", i, filter_nopar_gen[i], rc); return rc; } } return 0; } /** * Function responsible for setting up and enabling a global syscall filter. * The function is a prototype developed for stage 1 of sandboxing Tor. * Returns 0 on success. */ static int install_syscall_filter(sandbox_cfg_t* cfg) { int rc = 0; scmp_filter_ctx ctx; ctx = seccomp_init(SCMP_ACT_TRAP); if (ctx == NULL) { log_err(LD_BUG,"(Sandbox) failed to initialise libseccomp context"); rc = -1; goto end; } // protectign sandbox parameter strings if ((rc = prot_strings(ctx, cfg))) { goto end; } // add parameter filters if ((rc = add_param_filter(ctx, cfg))) { log_err(LD_BUG, "(Sandbox) failed to add param filters!"); goto end; } // adding filters with no parameters if ((rc = add_noparam_filter(ctx))) { log_err(LD_BUG, "(Sandbox) failed to add param filters!"); goto end; } // loading the seccomp2 filter if ((rc = seccomp_load(ctx))) { log_err(LD_BUG, "(Sandbox) failed to load: %d (%s)!", rc, strerror(-rc)); goto end; } // marking the sandbox as active sandbox_active = 1; end: seccomp_release(ctx); return (rc < 0 ? -rc : rc); } #include "linux_syscalls.inc" static const char * get_syscall_name(int syscall_num) { int i; for (i = 0; SYSCALLS_BY_NUMBER[i].syscall_name; ++i) { if (SYSCALLS_BY_NUMBER[i].syscall_num == syscall_num) return SYSCALLS_BY_NUMBER[i].syscall_name; } { static char syscall_name_buf[64]; format_dec_number_sigsafe(syscall_num, syscall_name_buf, sizeof(syscall_name_buf)); return syscall_name_buf; } } #ifdef USE_BACKTRACE #define MAX_DEPTH 256 static void *syscall_cb_buf[MAX_DEPTH]; #endif /** * Function called when a SIGSYS is caught by the application. It notifies the * user that an error has occurred and either terminates or allows the * application to continue execution, based on the DEBUGGING_CLOSE symbol. */ static void sigsys_debugging(int nr, siginfo_t *info, void *void_context) { ucontext_t *ctx = (ucontext_t *) (void_context); const char *syscall_name; int syscall; #ifdef USE_BACKTRACE int depth; int n_fds, i; const int *fds = NULL; #endif (void) nr; if (info->si_code != SYS_SECCOMP) return; if (!ctx) return; syscall = (int) ctx->uc_mcontext.M_SYSCALL; #ifdef USE_BACKTRACE depth = backtrace(syscall_cb_buf, MAX_DEPTH); /* Clean up the top stack frame so we get the real function * name for the most recently failing function. */ clean_backtrace(syscall_cb_buf, depth, ctx); #endif syscall_name = get_syscall_name(syscall); tor_log_err_sigsafe("(Sandbox) Caught a bad syscall attempt (syscall ", syscall_name, ")\n", NULL); #ifdef USE_BACKTRACE n_fds = tor_log_get_sigsafe_err_fds(&fds); for (i=0; i < n_fds; ++i) backtrace_symbols_fd(syscall_cb_buf, depth, fds[i]); #endif #if defined(DEBUGGING_CLOSE) _exit(1); #endif // DEBUGGING_CLOSE } /** * Function that adds a handler for SIGSYS, which is the signal thrown * when the application is issuing a syscall which is not allowed. The * main purpose of this function is to help with debugging by identifying * filtered syscalls. */ static int install_sigsys_debugging(void) { struct sigaction act; sigset_t mask; memset(&act, 0, sizeof(act)); sigemptyset(&mask); sigaddset(&mask, SIGSYS); act.sa_sigaction = &sigsys_debugging; act.sa_flags = SA_SIGINFO; if (sigaction(SIGSYS, &act, NULL) < 0) { log_err(LD_BUG,"(Sandbox) Failed to register SIGSYS signal handler"); return -1; } if (sigprocmask(SIG_UNBLOCK, &mask, NULL)) { log_err(LD_BUG,"(Sandbox) Failed call to sigprocmask()"); return -2; } return 0; } /** * Function responsible of registering the sandbox_cfg_t list of parameter * syscall filters to the existing parameter list. This is used for incipient * multiple-sandbox support. */ static int register_cfg(sandbox_cfg_t* cfg) { sandbox_cfg_t *elem = NULL; if (filter_dynamic == NULL) { filter_dynamic = cfg; return 0; } for (elem = filter_dynamic; elem->next != NULL; elem = elem->next) ; elem->next = cfg; return 0; } #endif // USE_LIBSECCOMP #ifdef USE_LIBSECCOMP /** * Initialises the syscall sandbox filter for any linux architecture, taking * into account various available features for different linux flavours. */ static int initialise_libseccomp_sandbox(sandbox_cfg_t* cfg) { /* Prevent glibc from trying to open /dev/tty on fatal error */ setenv("LIBC_FATAL_STDERR_", "1", 1); if (install_sigsys_debugging()) return -1; if (install_syscall_filter(cfg)) return -2; if (register_cfg(cfg)) return -3; return 0; } int sandbox_is_active(void) { return sandbox_active != 0; } #endif // USE_LIBSECCOMP sandbox_cfg_t* sandbox_cfg_new(void) { return NULL; } int sandbox_init(sandbox_cfg_t *cfg) { #if defined(USE_LIBSECCOMP) return initialise_libseccomp_sandbox(cfg); #elif defined(__linux__) (void)cfg; log_warn(LD_GENERAL, "This version of Tor was built without support for sandboxing. To " "build with support for sandboxing on Linux, you must have " "libseccomp and its necessary header files (e.g. seccomp.h)."); return 0; #else (void)cfg; log_warn(LD_GENERAL, "Currently, sandboxing is only implemented on Linux. The feature " "is disabled on your platform."); return 0; #endif } #ifndef USE_LIBSECCOMP int sandbox_cfg_allow_open_filename(sandbox_cfg_t **cfg, char *file) { (void)cfg; (void)file; return 0; } int sandbox_cfg_allow_openat_filename(sandbox_cfg_t **cfg, char *file) { (void)cfg; (void)file; return 0; } #if 0 int sandbox_cfg_allow_execve(sandbox_cfg_t **cfg, const char *com) { (void)cfg; (void)com; return 0; } #endif int sandbox_cfg_allow_stat_filename(sandbox_cfg_t **cfg, char *file) { (void)cfg; (void)file; return 0; } int sandbox_cfg_allow_rename(sandbox_cfg_t **cfg, char *file1, char *file2) { (void)cfg; (void)file1; (void)file2; return 0; } int sandbox_is_active(void) { return 0; } void sandbox_disable_getaddrinfo_cache(void) { } #endif tor-0.2.7.6/src/common/container.c0000644000175000017500000014611512631612325013627 00000000000000/* Copyright (c) 2003-2004, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file container.c * \brief Implements a smartlist (a resizable array) along * with helper functions to use smartlists. Also includes * hash table implementations of a string-to-void* map, and of * a digest-to-void* map. **/ #include "compat.h" #include "util.h" #include "torlog.h" #include "container.h" #include "crypto.h" #include #include #include #include "ht.h" /** All newly allocated smartlists have this capacity. */ #define SMARTLIST_DEFAULT_CAPACITY 16 /** Allocate and return an empty smartlist. */ MOCK_IMPL(smartlist_t *, smartlist_new,(void)) { smartlist_t *sl = tor_malloc(sizeof(smartlist_t)); sl->num_used = 0; sl->capacity = SMARTLIST_DEFAULT_CAPACITY; sl->list = tor_calloc(sizeof(void *), sl->capacity); return sl; } /** Deallocate a smartlist. Does not release storage associated with the * list's elements. */ MOCK_IMPL(void, smartlist_free,(smartlist_t *sl)) { if (!sl) return; tor_free(sl->list); tor_free(sl); } /** Remove all elements from the list. */ void smartlist_clear(smartlist_t *sl) { sl->num_used = 0; } /** Make sure that sl can hold at least size entries. */ static INLINE void smartlist_ensure_capacity(smartlist_t *sl, int size) { #if SIZEOF_SIZE_T > SIZEOF_INT #define MAX_CAPACITY (INT_MAX) #else #define MAX_CAPACITY (int)((SIZE_MAX / (sizeof(void*)))) #define ASSERT_CAPACITY #endif if (size > sl->capacity) { int higher = sl->capacity; if (PREDICT_UNLIKELY(size > MAX_CAPACITY/2)) { #ifdef ASSERT_CAPACITY /* We don't include this assertion when MAX_CAPACITY == INT_MAX, * since int size; (size <= INT_MAX) makes analysis tools think we're * doing something stupid. */ tor_assert(size <= MAX_CAPACITY); #endif higher = MAX_CAPACITY; } else { while (size > higher) higher *= 2; } sl->capacity = higher; sl->list = tor_reallocarray(sl->list, sizeof(void *), ((size_t)sl->capacity)); } #undef ASSERT_CAPACITY #undef MAX_CAPACITY } /** Append element to the end of the list. */ void smartlist_add(smartlist_t *sl, void *element) { smartlist_ensure_capacity(sl, sl->num_used+1); sl->list[sl->num_used++] = element; } /** Append each element from S2 to the end of S1. */ void smartlist_add_all(smartlist_t *s1, const smartlist_t *s2) { int new_size = s1->num_used + s2->num_used; tor_assert(new_size >= s1->num_used); /* check for overflow. */ smartlist_ensure_capacity(s1, new_size); memcpy(s1->list + s1->num_used, s2->list, s2->num_used*sizeof(void*)); s1->num_used = new_size; } /** Remove all elements E from sl such that E==element. Preserve * the order of any elements before E, but elements after E can be * rearranged. */ void smartlist_remove(smartlist_t *sl, const void *element) { int i; if (element == NULL) return; for (i=0; i < sl->num_used; i++) if (sl->list[i] == element) { sl->list[i] = sl->list[--sl->num_used]; /* swap with the end */ i--; /* so we process the new i'th element */ } } /** If sl is nonempty, remove and return the final element. Otherwise, * return NULL. */ void * smartlist_pop_last(smartlist_t *sl) { tor_assert(sl); if (sl->num_used) return sl->list[--sl->num_used]; else return NULL; } /** Reverse the order of the items in sl. */ void smartlist_reverse(smartlist_t *sl) { int i, j; void *tmp; tor_assert(sl); for (i = 0, j = sl->num_used-1; i < j; ++i, --j) { tmp = sl->list[i]; sl->list[i] = sl->list[j]; sl->list[j] = tmp; } } /** If there are any strings in sl equal to element, remove and free them. * Does not preserve order. */ void smartlist_string_remove(smartlist_t *sl, const char *element) { int i; tor_assert(sl); tor_assert(element); for (i = 0; i < sl->num_used; ++i) { if (!strcmp(element, sl->list[i])) { tor_free(sl->list[i]); sl->list[i] = sl->list[--sl->num_used]; /* swap with the end */ i--; /* so we process the new i'th element */ } } } /** Return true iff some element E of sl has E==element. */ int smartlist_contains(const smartlist_t *sl, const void *element) { int i; for (i=0; i < sl->num_used; i++) if (sl->list[i] == element) return 1; return 0; } /** Return true iff sl has some element E such that * !strcmp(E,element) */ int smartlist_contains_string(const smartlist_t *sl, const char *element) { int i; if (!sl) return 0; for (i=0; i < sl->num_used; i++) if (strcmp((const char*)sl->list[i],element)==0) return 1; return 0; } /** If element is equal to an element of sl, return that * element's index. Otherwise, return -1. */ int smartlist_string_pos(const smartlist_t *sl, const char *element) { int i; if (!sl) return -1; for (i=0; i < sl->num_used; i++) if (strcmp((const char*)sl->list[i],element)==0) return i; return -1; } /** If element is the same pointer as an element of sl, return * that element's index. Otherwise, return -1. */ int smartlist_pos(const smartlist_t *sl, const void *element) { int i; if (!sl) return -1; for (i=0; i < sl->num_used; i++) if (element == sl->list[i]) return i; return -1; } /** Return true iff sl has some element E such that * !strcasecmp(E,element) */ int smartlist_contains_string_case(const smartlist_t *sl, const char *element) { int i; if (!sl) return 0; for (i=0; i < sl->num_used; i++) if (strcasecmp((const char*)sl->list[i],element)==0) return 1; return 0; } /** Return true iff sl has some element E such that E is equal * to the decimal encoding of num. */ int smartlist_contains_int_as_string(const smartlist_t *sl, int num) { char buf[32]; /* long enough for 64-bit int, and then some. */ tor_snprintf(buf,sizeof(buf),"%d", num); return smartlist_contains_string(sl, buf); } /** Return true iff the two lists contain the same strings in the same * order, or if they are both NULL. */ int smartlist_strings_eq(const smartlist_t *sl1, const smartlist_t *sl2) { if (sl1 == NULL) return sl2 == NULL; if (sl2 == NULL) return 0; if (smartlist_len(sl1) != smartlist_len(sl2)) return 0; SMARTLIST_FOREACH(sl1, const char *, cp1, { const char *cp2 = smartlist_get(sl2, cp1_sl_idx); if (strcmp(cp1, cp2)) return 0; }); return 1; } /** Return true iff the two lists contain the same int pointer values in * the same order, or if they are both NULL. */ int smartlist_ints_eq(const smartlist_t *sl1, const smartlist_t *sl2) { if (sl1 == NULL) return sl2 == NULL; if (sl2 == NULL) return 0; if (smartlist_len(sl1) != smartlist_len(sl2)) return 0; SMARTLIST_FOREACH(sl1, int *, cp1, { int *cp2 = smartlist_get(sl2, cp1_sl_idx); if (*cp1 != *cp2) return 0; }); return 1; } /** Return true iff sl has some element E such that * tor_memeq(E,element,DIGEST_LEN) */ int smartlist_contains_digest(const smartlist_t *sl, const char *element) { int i; if (!sl) return 0; for (i=0; i < sl->num_used; i++) if (tor_memeq((const char*)sl->list[i],element,DIGEST_LEN)) return 1; return 0; } /** Return true iff some element E of sl2 has smartlist_contains(sl1,E). */ int smartlist_overlap(const smartlist_t *sl1, const smartlist_t *sl2) { int i; for (i=0; i < sl2->num_used; i++) if (smartlist_contains(sl1, sl2->list[i])) return 1; return 0; } /** Remove every element E of sl1 such that !smartlist_contains(sl2,E). * Does not preserve the order of sl1. */ void smartlist_intersect(smartlist_t *sl1, const smartlist_t *sl2) { int i; for (i=0; i < sl1->num_used; i++) if (!smartlist_contains(sl2, sl1->list[i])) { sl1->list[i] = sl1->list[--sl1->num_used]; /* swap with the end */ i--; /* so we process the new i'th element */ } } /** Remove every element E of sl1 such that smartlist_contains(sl2,E). * Does not preserve the order of sl1. */ void smartlist_subtract(smartlist_t *sl1, const smartlist_t *sl2) { int i; for (i=0; i < sl2->num_used; i++) smartlist_remove(sl1, sl2->list[i]); } /** Remove the idxth element of sl; if idx is not the last * element, swap the last element of sl into the idxth space. */ void smartlist_del(smartlist_t *sl, int idx) { tor_assert(sl); tor_assert(idx>=0); tor_assert(idx < sl->num_used); sl->list[idx] = sl->list[--sl->num_used]; } /** Remove the idxth element of sl; if idx is not the last element, * moving all subsequent elements back one space. Return the old value * of the idxth element. */ void smartlist_del_keeporder(smartlist_t *sl, int idx) { tor_assert(sl); tor_assert(idx>=0); tor_assert(idx < sl->num_used); --sl->num_used; if (idx < sl->num_used) memmove(sl->list+idx, sl->list+idx+1, sizeof(void*)*(sl->num_used-idx)); } /** Insert the value val as the new idxth element of * sl, moving all items previously at idx or later * forward one space. */ void smartlist_insert(smartlist_t *sl, int idx, void *val) { tor_assert(sl); tor_assert(idx>=0); tor_assert(idx <= sl->num_used); if (idx == sl->num_used) { smartlist_add(sl, val); } else { smartlist_ensure_capacity(sl, sl->num_used+1); /* Move other elements away */ if (idx < sl->num_used) memmove(sl->list + idx + 1, sl->list + idx, sizeof(void*)*(sl->num_used-idx)); sl->num_used++; sl->list[idx] = val; } } /** * Split a string str along all occurrences of sep, * appending the (newly allocated) split strings, in order, to * sl. Return the number of strings added to sl. * * If flags&SPLIT_SKIP_SPACE is true, remove initial and * trailing space from each entry. * If flags&SPLIT_IGNORE_BLANK is true, remove any entries * of length 0. * If flags&SPLIT_STRIP_SPACE is true, strip spaces from each * split string. * * If max\>0, divide the string into no more than max pieces. If * sep is NULL, split on any sequence of horizontal space. */ int smartlist_split_string(smartlist_t *sl, const char *str, const char *sep, int flags, int max) { const char *cp, *end, *next; int n = 0; tor_assert(sl); tor_assert(str); cp = str; while (1) { if (flags&SPLIT_SKIP_SPACE) { while (TOR_ISSPACE(*cp)) ++cp; } if (max>0 && n == max-1) { end = strchr(cp,'\0'); } else if (sep) { end = strstr(cp,sep); if (!end) end = strchr(cp,'\0'); } else { for (end = cp; *end && *end != '\t' && *end != ' '; ++end) ; } tor_assert(end); if (!*end) { next = NULL; } else if (sep) { next = end+strlen(sep); } else { next = end+1; while (*next == '\t' || *next == ' ') ++next; } if (flags&SPLIT_SKIP_SPACE) { while (end > cp && TOR_ISSPACE(*(end-1))) --end; } if (end != cp || !(flags&SPLIT_IGNORE_BLANK)) { char *string = tor_strndup(cp, end-cp); if (flags&SPLIT_STRIP_SPACE) tor_strstrip(string, " "); smartlist_add(sl, string); ++n; } if (!next) break; cp = next; } return n; } /** Allocate and return a new string containing the concatenation of * the elements of sl, in order, separated by join. If * terminate is true, also terminate the string with join. * If len_out is not NULL, set len_out to the length of * the returned string. Requires that every element of sl is * NUL-terminated string. */ char * smartlist_join_strings(smartlist_t *sl, const char *join, int terminate, size_t *len_out) { return smartlist_join_strings2(sl,join,strlen(join),terminate,len_out); } /** As smartlist_join_strings, but instead of separating/terminated with a * NUL-terminated string join, uses the join_len-byte sequence * at join. (Useful for generating a sequence of NUL-terminated * strings.) */ char * smartlist_join_strings2(smartlist_t *sl, const char *join, size_t join_len, int terminate, size_t *len_out) { int i; size_t n = 0; char *r = NULL, *dst, *src; tor_assert(sl); tor_assert(join); if (terminate) n = join_len; for (i = 0; i < sl->num_used; ++i) { n += strlen(sl->list[i]); if (i+1 < sl->num_used) /* avoid double-counting the last one */ n += join_len; } dst = r = tor_malloc(n+1); for (i = 0; i < sl->num_used; ) { for (src = sl->list[i]; *src; ) *dst++ = *src++; if (++i < sl->num_used) { memcpy(dst, join, join_len); dst += join_len; } } if (terminate) { memcpy(dst, join, join_len); dst += join_len; } *dst = '\0'; if (len_out) *len_out = dst-r; return r; } /** Sort the members of sl into an order defined by * the ordering function compare, which returns less then 0 if a * precedes b, greater than 0 if b precedes a, and 0 if a 'equals' b. */ void smartlist_sort(smartlist_t *sl, int (*compare)(const void **a, const void **b)) { if (!sl->num_used) return; qsort(sl->list, sl->num_used, sizeof(void*), (int (*)(const void *,const void*))compare); } /** Given a smartlist sl sorted with the function compare, * return the most frequent member in the list. Break ties in favor of * later elements. If the list is empty, return NULL. If count_out is * non-null, set it to the most frequent member. */ void * smartlist_get_most_frequent_(const smartlist_t *sl, int (*compare)(const void **a, const void **b), int *count_out) { const void *most_frequent = NULL; int most_frequent_count = 0; const void *cur = NULL; int i, count=0; if (!sl->num_used) { if (count_out) *count_out = 0; return NULL; } for (i = 0; i < sl->num_used; ++i) { const void *item = sl->list[i]; if (cur && 0 == compare(&cur, &item)) { ++count; } else { if (cur && count >= most_frequent_count) { most_frequent = cur; most_frequent_count = count; } cur = item; count = 1; } } if (cur && count >= most_frequent_count) { most_frequent = cur; most_frequent_count = count; } if (count_out) *count_out = most_frequent_count; return (void*)most_frequent; } /** Given a sorted smartlist sl and the comparison function used to * sort it, remove all duplicate members. If free_fn is provided, calls * free_fn on each duplicate. Otherwise, just removes them. Preserves order. */ void smartlist_uniq(smartlist_t *sl, int (*compare)(const void **a, const void **b), void (*free_fn)(void *a)) { int i; for (i=1; i < sl->num_used; ++i) { if (compare((const void **)&(sl->list[i-1]), (const void **)&(sl->list[i])) == 0) { if (free_fn) free_fn(sl->list[i]); smartlist_del_keeporder(sl, i--); } } } /** Assuming the members of sl are in order, return a pointer to the * member that matches key. Ordering and matching are defined by a * compare function that returns 0 on a match; less than 0 if key is * less than member, and greater than 0 if key is greater then member. */ void * smartlist_bsearch(smartlist_t *sl, const void *key, int (*compare)(const void *key, const void **member)) { int found, idx; idx = smartlist_bsearch_idx(sl, key, compare, &found); return found ? smartlist_get(sl, idx) : NULL; } /** Assuming the members of sl are in order, return the index of the * member that matches key. If no member matches, return the index of * the first member greater than key, or smartlist_len(sl) if no member * is greater than key. Set found_out to true on a match, to * false otherwise. Ordering and matching are defined by a compare * function that returns 0 on a match; less than 0 if key is less than member, * and greater than 0 if key is greater then member. */ int smartlist_bsearch_idx(const smartlist_t *sl, const void *key, int (*compare)(const void *key, const void **member), int *found_out) { int hi, lo, cmp, mid, len, diff; tor_assert(sl); tor_assert(compare); tor_assert(found_out); len = smartlist_len(sl); /* Check for the trivial case of a zero-length list */ if (len == 0) { *found_out = 0; /* We already know smartlist_len(sl) is 0 in this case */ return 0; } /* Okay, we have a real search to do */ tor_assert(len > 0); lo = 0; hi = len - 1; /* * These invariants are always true: * * For all i such that 0 <= i < lo, sl[i] < key * For all i such that hi < i <= len, sl[i] > key */ while (lo <= hi) { diff = hi - lo; /* * We want mid = (lo + hi) / 2, but that could lead to overflow, so * instead diff = hi - lo (non-negative because of loop condition), and * then hi = lo + diff, mid = (lo + lo + diff) / 2 = lo + (diff / 2). */ mid = lo + (diff / 2); cmp = compare(key, (const void**) &(sl->list[mid])); if (cmp == 0) { /* sl[mid] == key; we found it */ *found_out = 1; return mid; } else if (cmp > 0) { /* * key > sl[mid] and an index i such that sl[i] == key must * have i > mid if it exists. */ /* * Since lo <= mid <= hi, hi can only decrease on each iteration (by * being set to mid - 1) and hi is initially len - 1, mid < len should * always hold, and this is not symmetric with the left end of list * mid > 0 test below. A key greater than the right end of the list * should eventually lead to lo == hi == mid == len - 1, and then * we set lo to len below and fall out to the same exit we hit for * a key in the middle of the list but not matching. Thus, we just * assert for consistency here rather than handle a mid == len case. */ tor_assert(mid < len); /* Move lo to the element immediately after sl[mid] */ lo = mid + 1; } else { /* This should always be true in this case */ tor_assert(cmp < 0); /* * key < sl[mid] and an index i such that sl[i] == key must * have i < mid if it exists. */ if (mid > 0) { /* Normal case, move hi to the element immediately before sl[mid] */ hi = mid - 1; } else { /* These should always be true in this case */ tor_assert(mid == lo); tor_assert(mid == 0); /* * We were at the beginning of the list and concluded that every * element e compares e > key. */ *found_out = 0; return 0; } } } /* * lo > hi; we have no element matching key but we have elements falling * on both sides of it. The lo index points to the first element > key. */ tor_assert(lo == hi + 1); /* All other cases should have been handled */ tor_assert(lo >= 0); tor_assert(lo <= len); tor_assert(hi >= 0); tor_assert(hi <= len); if (lo < len) { cmp = compare(key, (const void **) &(sl->list[lo])); tor_assert(cmp < 0); } else { cmp = compare(key, (const void **) &(sl->list[len-1])); tor_assert(cmp > 0); } *found_out = 0; return lo; } /** Helper: compare two const char **s. */ static int compare_string_ptrs_(const void **_a, const void **_b) { return strcmp((const char*)*_a, (const char*)*_b); } /** Sort a smartlist sl containing strings into lexically ascending * order. */ void smartlist_sort_strings(smartlist_t *sl) { smartlist_sort(sl, compare_string_ptrs_); } /** Return the most frequent string in the sorted list sl */ const char * smartlist_get_most_frequent_string(smartlist_t *sl) { return smartlist_get_most_frequent(sl, compare_string_ptrs_); } /** Return the most frequent string in the sorted list sl. * If count_out is provided, set count_out to the * number of times that string appears. */ const char * smartlist_get_most_frequent_string_(smartlist_t *sl, int *count_out) { return smartlist_get_most_frequent_(sl, compare_string_ptrs_, count_out); } /** Remove duplicate strings from a sorted list, and free them with tor_free(). */ void smartlist_uniq_strings(smartlist_t *sl) { smartlist_uniq(sl, compare_string_ptrs_, tor_free_); } /** Helper: compare two pointers. */ static int compare_ptrs_(const void **_a, const void **_b) { const void *a = *_a, *b = *_b; if (asl in ascending order of the pointers it contains. */ void smartlist_sort_pointers(smartlist_t *sl) { smartlist_sort(sl, compare_ptrs_); } /* Heap-based priority queue implementation for O(lg N) insert and remove. * Recall that the heap property is that, for every index I, h[I] < * H[LEFT_CHILD[I]] and h[I] < H[RIGHT_CHILD[I]]. * * For us to remove items other than the topmost item, each item must store * its own index within the heap. When calling the pqueue functions, tell * them about the offset of the field that stores the index within the item. * * Example: * * typedef struct timer_t { * struct timeval tv; * int heap_index; * } timer_t; * * static int compare(const void *p1, const void *p2) { * const timer_t *t1 = p1, *t2 = p2; * if (t1->tv.tv_sec < t2->tv.tv_sec) { * return -1; * } else if (t1->tv.tv_sec > t2->tv.tv_sec) { * return 1; * } else { * return t1->tv.tv_usec - t2->tv_usec; * } * } * * void timer_heap_insert(smartlist_t *heap, timer_t *timer) { * smartlist_pqueue_add(heap, compare, STRUCT_OFFSET(timer_t, heap_index), * timer); * } * * void timer_heap_pop(smartlist_t *heap) { * return smartlist_pqueue_pop(heap, compare, * STRUCT_OFFSET(timer_t, heap_index)); * } */ /** @{ */ /** Functions to manipulate heap indices to find a node's parent and children. * * For a 1-indexed array, we would use LEFT_CHILD[x] = 2*x and RIGHT_CHILD[x] * = 2*x + 1. But this is C, so we have to adjust a little. */ //#define LEFT_CHILD(i) ( ((i)+1)*2 - 1) //#define RIGHT_CHILD(i) ( ((i)+1)*2 ) //#define PARENT(i) ( ((i)+1)/2 - 1) #define LEFT_CHILD(i) ( 2*(i) + 1 ) #define RIGHT_CHILD(i) ( 2*(i) + 2 ) #define PARENT(i) ( ((i)-1) / 2 ) /** }@ */ /** @{ */ /** Helper macros for heaps: Given a local variable idx_field_offset * set to the offset of an integer index within the heap element structure, * IDX_OF_ITEM(p) gives you the index of p, and IDXP(p) gives you a pointer to * where p's index is stored. Given additionally a local smartlist sl, * UPDATE_IDX(i) sets the index of the element at i to the correct * value (that is, to i). */ #define IDXP(p) ((int*)STRUCT_VAR_P(p, idx_field_offset)) #define UPDATE_IDX(i) do { \ void *updated = sl->list[i]; \ *IDXP(updated) = i; \ } while (0) #define IDX_OF_ITEM(p) (*IDXP(p)) /** @} */ /** Helper. sl may have at most one violation of the heap property: * the item at idx may be greater than one or both of its children. * Restore the heap property. */ static INLINE void smartlist_heapify(smartlist_t *sl, int (*compare)(const void *a, const void *b), int idx_field_offset, int idx) { while (1) { int left_idx = LEFT_CHILD(idx); int best_idx; if (left_idx >= sl->num_used) return; if (compare(sl->list[idx],sl->list[left_idx]) < 0) best_idx = idx; else best_idx = left_idx; if (left_idx+1 < sl->num_used && compare(sl->list[left_idx+1],sl->list[best_idx]) < 0) best_idx = left_idx + 1; if (best_idx == idx) { return; } else { void *tmp = sl->list[idx]; sl->list[idx] = sl->list[best_idx]; sl->list[best_idx] = tmp; UPDATE_IDX(idx); UPDATE_IDX(best_idx); idx = best_idx; } } } /** Insert item into the heap stored in sl, where order is * determined by compare and the offset of the item in the heap is * stored in an int-typed field at position idx_field_offset within * item. */ void smartlist_pqueue_add(smartlist_t *sl, int (*compare)(const void *a, const void *b), int idx_field_offset, void *item) { int idx; smartlist_add(sl,item); UPDATE_IDX(sl->num_used-1); for (idx = sl->num_used - 1; idx; ) { int parent = PARENT(idx); if (compare(sl->list[idx], sl->list[parent]) < 0) { void *tmp = sl->list[parent]; sl->list[parent] = sl->list[idx]; sl->list[idx] = tmp; UPDATE_IDX(parent); UPDATE_IDX(idx); idx = parent; } else { return; } } } /** Remove and return the top-priority item from the heap stored in sl, * where order is determined by compare and the item's position is * stored at position idx_field_offset within the item. sl must * not be empty. */ void * smartlist_pqueue_pop(smartlist_t *sl, int (*compare)(const void *a, const void *b), int idx_field_offset) { void *top; tor_assert(sl->num_used); top = sl->list[0]; *IDXP(top)=-1; if (--sl->num_used) { sl->list[0] = sl->list[sl->num_used]; UPDATE_IDX(0); smartlist_heapify(sl, compare, idx_field_offset, 0); } return top; } /** Remove the item item from the heap stored in sl, * where order is determined by compare and the item's position is * stored at position idx_field_offset within the item. sl must * not be empty. */ void smartlist_pqueue_remove(smartlist_t *sl, int (*compare)(const void *a, const void *b), int idx_field_offset, void *item) { int idx = IDX_OF_ITEM(item); tor_assert(idx >= 0); tor_assert(sl->list[idx] == item); --sl->num_used; *IDXP(item) = -1; if (idx == sl->num_used) { return; } else { sl->list[idx] = sl->list[sl->num_used]; UPDATE_IDX(idx); smartlist_heapify(sl, compare, idx_field_offset, idx); } } /** Assert that the heap property is correctly maintained by the heap stored * in sl, where order is determined by compare. */ void smartlist_pqueue_assert_ok(smartlist_t *sl, int (*compare)(const void *a, const void *b), int idx_field_offset) { int i; for (i = sl->num_used - 1; i >= 0; --i) { if (i>0) tor_assert(compare(sl->list[PARENT(i)], sl->list[i]) <= 0); tor_assert(IDX_OF_ITEM(sl->list[i]) == i); } } /** Helper: compare two DIGEST_LEN digests. */ static int compare_digests_(const void **_a, const void **_b) { return tor_memcmp((const char*)*_a, (const char*)*_b, DIGEST_LEN); } /** Sort the list of DIGEST_LEN-byte digests into ascending order. */ void smartlist_sort_digests(smartlist_t *sl) { smartlist_sort(sl, compare_digests_); } /** Remove duplicate digests from a sorted list, and free them with tor_free(). */ void smartlist_uniq_digests(smartlist_t *sl) { smartlist_uniq(sl, compare_digests_, tor_free_); } /** Helper: compare two DIGEST256_LEN digests. */ static int compare_digests256_(const void **_a, const void **_b) { return tor_memcmp((const char*)*_a, (const char*)*_b, DIGEST256_LEN); } /** Sort the list of DIGEST256_LEN-byte digests into ascending order. */ void smartlist_sort_digests256(smartlist_t *sl) { smartlist_sort(sl, compare_digests256_); } /** Return the most frequent member of the sorted list of DIGEST256_LEN * digests in sl */ const uint8_t * smartlist_get_most_frequent_digest256(smartlist_t *sl) { return smartlist_get_most_frequent(sl, compare_digests256_); } /** Remove duplicate 256-bit digests from a sorted list, and free them with * tor_free(). */ void smartlist_uniq_digests256(smartlist_t *sl) { smartlist_uniq(sl, compare_digests256_, tor_free_); } /** Helper: Declare an entry type and a map type to implement a mapping using * ht.h. The map type will be called maptype. The key part of each * entry is declared using the C declaration keydecl. All functions * and types associated with the map get prefixed with prefix */ #define DEFINE_MAP_STRUCTS(maptype, keydecl, prefix) \ typedef struct prefix ## entry_t { \ HT_ENTRY(prefix ## entry_t) node; \ void *val; \ keydecl; \ } prefix ## entry_t; \ struct maptype { \ HT_HEAD(prefix ## impl, prefix ## entry_t) head; \ } DEFINE_MAP_STRUCTS(strmap_t, char *key, strmap_); DEFINE_MAP_STRUCTS(digestmap_t, char key[DIGEST_LEN], digestmap_); DEFINE_MAP_STRUCTS(digest256map_t, uint8_t key[DIGEST256_LEN], digest256map_); /** Helper: compare strmap_entry_t objects by key value. */ static INLINE int strmap_entries_eq(const strmap_entry_t *a, const strmap_entry_t *b) { return !strcmp(a->key, b->key); } /** Helper: return a hash value for a strmap_entry_t. */ static INLINE unsigned int strmap_entry_hash(const strmap_entry_t *a) { return (unsigned) siphash24g(a->key, strlen(a->key)); } /** Helper: compare digestmap_entry_t objects by key value. */ static INLINE int digestmap_entries_eq(const digestmap_entry_t *a, const digestmap_entry_t *b) { return tor_memeq(a->key, b->key, DIGEST_LEN); } /** Helper: return a hash value for a digest_map_t. */ static INLINE unsigned int digestmap_entry_hash(const digestmap_entry_t *a) { return (unsigned) siphash24g(a->key, DIGEST_LEN); } /** Helper: compare digestmap_entry_t objects by key value. */ static INLINE int digest256map_entries_eq(const digest256map_entry_t *a, const digest256map_entry_t *b) { return tor_memeq(a->key, b->key, DIGEST256_LEN); } /** Helper: return a hash value for a digest_map_t. */ static INLINE unsigned int digest256map_entry_hash(const digest256map_entry_t *a) { return (unsigned) siphash24g(a->key, DIGEST256_LEN); } HT_PROTOTYPE(strmap_impl, strmap_entry_t, node, strmap_entry_hash, strmap_entries_eq) HT_GENERATE2(strmap_impl, strmap_entry_t, node, strmap_entry_hash, strmap_entries_eq, 0.6, tor_reallocarray_, tor_free_) HT_PROTOTYPE(digestmap_impl, digestmap_entry_t, node, digestmap_entry_hash, digestmap_entries_eq) HT_GENERATE2(digestmap_impl, digestmap_entry_t, node, digestmap_entry_hash, digestmap_entries_eq, 0.6, tor_reallocarray_, tor_free_) HT_PROTOTYPE(digest256map_impl, digest256map_entry_t, node, digest256map_entry_hash, digest256map_entries_eq) HT_GENERATE2(digest256map_impl, digest256map_entry_t, node, digest256map_entry_hash, digest256map_entries_eq, 0.6, tor_reallocarray_, tor_free_) static INLINE void strmap_entry_free(strmap_entry_t *ent) { tor_free(ent->key); tor_free(ent); } static INLINE void digestmap_entry_free(digestmap_entry_t *ent) { tor_free(ent); } static INLINE void digest256map_entry_free(digest256map_entry_t *ent) { tor_free(ent); } static INLINE void strmap_assign_tmp_key(strmap_entry_t *ent, const char *key) { ent->key = (char*)key; } static INLINE void digestmap_assign_tmp_key(digestmap_entry_t *ent, const char *key) { memcpy(ent->key, key, DIGEST_LEN); } static INLINE void digest256map_assign_tmp_key(digest256map_entry_t *ent, const uint8_t *key) { memcpy(ent->key, key, DIGEST256_LEN); } static INLINE void strmap_assign_key(strmap_entry_t *ent, const char *key) { ent->key = tor_strdup(key); } static INLINE void digestmap_assign_key(digestmap_entry_t *ent, const char *key) { memcpy(ent->key, key, DIGEST_LEN); } static INLINE void digest256map_assign_key(digest256map_entry_t *ent, const uint8_t *key) { memcpy(ent->key, key, DIGEST256_LEN); } /** * Macro: implement all the functions for a map that are declared in * container.h by the DECLARE_MAP_FNS() macro. You must additionally define a * prefix_entry_free_() function to free entries (and their keys), a * prefix_assign_tmp_key() function to temporarily set a stack-allocated * entry to hold a key, and a prefix_assign_key() function to set a * heap-allocated entry to hold a key. */ #define IMPLEMENT_MAP_FNS(maptype, keytype, prefix) \ /** Create and return a new empty map. */ \ MOCK_IMPL(maptype *, \ prefix##_new,(void)) \ { \ maptype *result; \ result = tor_malloc(sizeof(maptype)); \ HT_INIT(prefix##_impl, &result->head); \ return result; \ } \ \ /** Return the item from map whose key matches key, or \ * NULL if no such value exists. */ \ void * \ prefix##_get(const maptype *map, const keytype key) \ { \ prefix ##_entry_t *resolve; \ prefix ##_entry_t search; \ tor_assert(map); \ tor_assert(key); \ prefix ##_assign_tmp_key(&search, key); \ resolve = HT_FIND(prefix ##_impl, &map->head, &search); \ if (resolve) { \ return resolve->val; \ } else { \ return NULL; \ } \ } \ \ /** Add an entry to map mapping key to val; \ * return the previous value, or NULL if no such value existed. */ \ void * \ prefix##_set(maptype *map, const keytype key, void *val) \ { \ prefix##_entry_t search; \ void *oldval; \ tor_assert(map); \ tor_assert(key); \ tor_assert(val); \ prefix##_assign_tmp_key(&search, key); \ /* We a lot of our time in this function, so the code below is */ \ /* meant to optimize the check/alloc/set cycle by avoiding the two */\ /* trips to the hash table that we would do in the unoptimized */ \ /* version of this code. (Each of HT_INSERT and HT_FIND calls */ \ /* HT_SET_HASH and HT_FIND_P.) */ \ HT_FIND_OR_INSERT_(prefix##_impl, node, prefix##_entry_hash, \ &(map->head), \ prefix##_entry_t, &search, ptr, \ { \ /* we found an entry. */ \ oldval = (*ptr)->val; \ (*ptr)->val = val; \ return oldval; \ }, \ { \ /* We didn't find the entry. */ \ prefix##_entry_t *newent = \ tor_malloc_zero(sizeof(prefix##_entry_t)); \ prefix##_assign_key(newent, key); \ newent->val = val; \ HT_FOI_INSERT_(node, &(map->head), \ &search, newent, ptr); \ return NULL; \ }); \ } \ \ /** Remove the value currently associated with key from the map. \ * Return the value if one was set, or NULL if there was no entry for \ * key. \ * \ * Note: you must free any storage associated with the returned value. \ */ \ void * \ prefix##_remove(maptype *map, const keytype key) \ { \ prefix##_entry_t *resolve; \ prefix##_entry_t search; \ void *oldval; \ tor_assert(map); \ tor_assert(key); \ prefix##_assign_tmp_key(&search, key); \ resolve = HT_REMOVE(prefix##_impl, &map->head, &search); \ if (resolve) { \ oldval = resolve->val; \ prefix##_entry_free(resolve); \ return oldval; \ } else { \ return NULL; \ } \ } \ \ /** Return the number of elements in map. */ \ int \ prefix##_size(const maptype *map) \ { \ return HT_SIZE(&map->head); \ } \ \ /** Return true iff map has no entries. */ \ int \ prefix##_isempty(const maptype *map) \ { \ return HT_EMPTY(&map->head); \ } \ \ /** Assert that map is not corrupt. */ \ void \ prefix##_assert_ok(const maptype *map) \ { \ tor_assert(!prefix##_impl_HT_REP_IS_BAD_(&map->head)); \ } \ \ /** Remove all entries from map, and deallocate storage for \ * those entries. If free_val is provided, invoked it every value in \ * map. */ \ MOCK_IMPL(void, \ prefix##_free, (maptype *map, void (*free_val)(void*))) \ { \ prefix##_entry_t **ent, **next, *this; \ if (!map) \ return; \ for (ent = HT_START(prefix##_impl, &map->head); ent != NULL; \ ent = next) { \ this = *ent; \ next = HT_NEXT_RMV(prefix##_impl, &map->head, ent); \ if (free_val) \ free_val(this->val); \ prefix##_entry_free(this); \ } \ tor_assert(HT_EMPTY(&map->head)); \ HT_CLEAR(prefix##_impl, &map->head); \ tor_free(map); \ } \ \ /** return an iterator pointer to the front of a map. \ * \ * Iterator example: \ * \ * \code \ * // uppercase values in "map", removing empty values. \ * \ * strmap_iter_t *iter; \ * const char *key; \ * void *val; \ * char *cp; \ * \ * for (iter = strmap_iter_init(map); !strmap_iter_done(iter); ) { \ * strmap_iter_get(iter, &key, &val); \ * cp = (char*)val; \ * if (!*cp) { \ * iter = strmap_iter_next_rmv(map,iter); \ * free(val); \ * } else { \ * for (;*cp;cp++) *cp = TOR_TOUPPER(*cp); \ */ \ prefix##_iter_t * \ prefix##_iter_init(maptype *map) \ { \ tor_assert(map); \ return HT_START(prefix##_impl, &map->head); \ } \ \ /** Advance iter a single step to the next entry, and return \ * its new value. */ \ prefix##_iter_t * \ prefix##_iter_next(maptype *map, prefix##_iter_t *iter) \ { \ tor_assert(map); \ tor_assert(iter); \ return HT_NEXT(prefix##_impl, &map->head, iter); \ } \ /** Advance iter a single step to the next entry, removing the \ * current entry, and return its new value. */ \ prefix##_iter_t * \ prefix##_iter_next_rmv(maptype *map, prefix##_iter_t *iter) \ { \ prefix##_entry_t *rmv; \ tor_assert(map); \ tor_assert(iter); \ tor_assert(*iter); \ rmv = *iter; \ iter = HT_NEXT_RMV(prefix##_impl, &map->head, iter); \ prefix##_entry_free(rmv); \ return iter; \ } \ /** Set *keyp and *valp to the current entry pointed \ * to by iter. */ \ void \ prefix##_iter_get(prefix##_iter_t *iter, const keytype *keyp, \ void **valp) \ { \ tor_assert(iter); \ tor_assert(*iter); \ tor_assert(keyp); \ tor_assert(valp); \ *keyp = (*iter)->key; \ *valp = (*iter)->val; \ } \ /** Return true iff iter has advanced past the last entry of \ * map. */ \ int \ prefix##_iter_done(prefix##_iter_t *iter) \ { \ return iter == NULL; \ } IMPLEMENT_MAP_FNS(strmap_t, char *, strmap) IMPLEMENT_MAP_FNS(digestmap_t, char *, digestmap) IMPLEMENT_MAP_FNS(digest256map_t, uint8_t *, digest256map) /** Same as strmap_set, but first converts key to lowercase. */ void * strmap_set_lc(strmap_t *map, const char *key, void *val) { /* We could be a little faster by using strcasecmp instead, and a separate * type, but I don't think it matters. */ void *v; char *lc_key = tor_strdup(key); tor_strlower(lc_key); v = strmap_set(map,lc_key,val); tor_free(lc_key); return v; } /** Same as strmap_get, but first converts key to lowercase. */ void * strmap_get_lc(const strmap_t *map, const char *key) { void *v; char *lc_key = tor_strdup(key); tor_strlower(lc_key); v = strmap_get(map,lc_key); tor_free(lc_key); return v; } /** Same as strmap_remove, but first converts key to lowercase */ void * strmap_remove_lc(strmap_t *map, const char *key) { void *v; char *lc_key = tor_strdup(key); tor_strlower(lc_key); v = strmap_remove(map,lc_key); tor_free(lc_key); return v; } /** Declare a function called funcname that acts as a find_nth_FOO * function for an array of type elt_t*. * * NOTE: The implementation kind of sucks: It's O(n log n), whereas finding * the kth element of an n-element list can be done in O(n). Then again, this * implementation is not in critical path, and it is obviously correct. */ #define IMPLEMENT_ORDER_FUNC(funcname, elt_t) \ static int \ _cmp_ ## elt_t(const void *_a, const void *_b) \ { \ const elt_t *a = _a, *b = _b; \ if (*a<*b) \ return -1; \ else if (*a>*b) \ return 1; \ else \ return 0; \ } \ elt_t \ funcname(elt_t *array, int n_elements, int nth) \ { \ tor_assert(nth >= 0); \ tor_assert(nth < n_elements); \ qsort(array, n_elements, sizeof(elt_t), _cmp_ ##elt_t); \ return array[nth]; \ } IMPLEMENT_ORDER_FUNC(find_nth_int, int) IMPLEMENT_ORDER_FUNC(find_nth_time, time_t) IMPLEMENT_ORDER_FUNC(find_nth_double, double) IMPLEMENT_ORDER_FUNC(find_nth_uint32, uint32_t) IMPLEMENT_ORDER_FUNC(find_nth_int32, int32_t) IMPLEMENT_ORDER_FUNC(find_nth_long, long) /** Return a newly allocated digestset_t, optimized to hold a total of * max_elements digests with a reasonably low false positive weight. */ digestset_t * digestset_new(int max_elements) { /* The probability of false positives is about P=(1 - exp(-kn/m))^k, where k * is the number of hash functions per entry, m is the bits in the array, * and n is the number of elements inserted. For us, k==4, n<=max_elements, * and m==n_bits= approximately max_elements*32. This gives * P<(1-exp(-4*n/(32*n)))^4 == (1-exp(1/-8))^4 == .00019 * * It would be more optimal in space vs false positives to get this false * positive rate by going for k==13, and m==18.5n, but we also want to * conserve CPU, and k==13 is pretty big. */ int n_bits = 1u << (tor_log2(max_elements)+5); digestset_t *r = tor_malloc(sizeof(digestset_t)); r->mask = n_bits - 1; r->ba = bitarray_init_zero(n_bits); return r; } /** Free all storage held in set. */ void digestset_free(digestset_t *set) { if (!set) return; bitarray_free(set->ba); tor_free(set); } tor-0.2.7.6/src/common/util_process.c0000644000175000017500000001013112621363245014347 00000000000000/* Copyright (c) 2003-2004, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file util_process.c * \brief utility functions for launching processes and checking their * status. These functions are kept separately from procmon so that they * won't require linking against libevent. **/ #include "orconfig.h" #ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_WAIT_H #include #endif #include "compat.h" #include "util.h" #include "torlog.h" #include "util_process.h" #include "ht.h" /* ================================================== */ /* Convenience structures for handlers for waitpid(). * * The tor_process_monitor*() code above doesn't use them, since it is for * monitoring a non-child process. */ #ifndef _WIN32 /** Mapping from a PID to a userfn/userdata pair. */ struct waitpid_callback_t { HT_ENTRY(waitpid_callback_t) node; pid_t pid; void (*userfn)(int, void *userdata); void *userdata; unsigned running; }; static INLINE unsigned int process_map_entry_hash_(const waitpid_callback_t *ent) { return (unsigned) ent->pid; } static INLINE unsigned int process_map_entries_eq_(const waitpid_callback_t *a, const waitpid_callback_t *b) { return a->pid == b->pid; } static HT_HEAD(process_map, waitpid_callback_t) process_map = HT_INITIALIZER(); HT_PROTOTYPE(process_map, waitpid_callback_t, node, process_map_entry_hash_, process_map_entries_eq_); HT_GENERATE2(process_map, waitpid_callback_t, node, process_map_entry_hash_, process_map_entries_eq_, 0.6, tor_reallocarray_, tor_free_); /** * Begin monitoring the child pid pid to see if we get a SIGCHLD for * it. If we eventually do, call fn, passing it the exit status (as * yielded by waitpid) and the pointer arg. * * To cancel this, or clean up after it has triggered, call * clear_waitpid_callback(). */ waitpid_callback_t * set_waitpid_callback(pid_t pid, void (*fn)(int, void *), void *arg) { waitpid_callback_t *old_ent; waitpid_callback_t *ent = tor_malloc_zero(sizeof(waitpid_callback_t)); ent->pid = pid; ent->userfn = fn; ent->userdata = arg; ent->running = 1; old_ent = HT_REPLACE(process_map, &process_map, ent); if (old_ent) { log_warn(LD_BUG, "Replaced a waitpid monitor on pid %u. That should be " "impossible.", (unsigned) pid); old_ent->running = 0; } return ent; } /** * Cancel a waitpid_callback_t, or clean up after one has triggered. Releases * all storage held by ent. */ void clear_waitpid_callback(waitpid_callback_t *ent) { waitpid_callback_t *old_ent; if (ent == NULL) return; if (ent->running) { old_ent = HT_REMOVE(process_map, &process_map, ent); if (old_ent != ent) { log_warn(LD_BUG, "Couldn't remove waitpid monitor for pid %u.", (unsigned) ent->pid); return; } } tor_free(ent); } /** Helper: find the callack for pid; if there is one, run it, * reporting the exit status as status. */ static void notify_waitpid_callback_by_pid(pid_t pid, int status) { waitpid_callback_t search, *ent; search.pid = pid; ent = HT_REMOVE(process_map, &process_map, &search); if (!ent || !ent->running) { log_info(LD_GENERAL, "Child process %u has exited; no callback was " "registered", (unsigned)pid); return; } log_info(LD_GENERAL, "Child process %u has exited; running callback.", (unsigned)pid); ent->running = 0; ent->userfn(status, ent->userdata); } /** Use waitpid() to wait for all children that have exited, and invoke any * callbacks registered for them. */ void notify_pending_waitpid_callbacks(void) { /* I was going to call this function reap_zombie_children(), but * that makes it sound way more exciting than it really is. */ pid_t child; int status = 0; while ((child = waitpid(-1, &status, WNOHANG)) > 0) { notify_waitpid_callback_by_pid(child, status); status = 0; /* should be needless */ } } #endif tor-0.2.7.6/src/common/torgzip.c0000644000175000017500000004440112621363245013341 00000000000000/* Copyright (c) 2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file torgzip.c * \brief A simple in-memory gzip implementation. **/ #include "orconfig.h" #include #include #include #include #include "torint.h" #ifdef HAVE_NETINET_IN_H #include #endif #include "util.h" #include "torlog.h" #include "torgzip.h" /* zlib 1.2.4 and 1.2.5 do some "clever" things with macros. Instead of saying "(defined(FOO) ? FOO : 0)" they like to say "FOO-0", on the theory that nobody will care if the compile outputs a no-such-identifier warning. Sorry, but we like -Werror over here, so I guess we need to define these. I hope that zlib 1.2.6 doesn't break these too. */ #ifndef _LARGEFILE64_SOURCE #define _LARGEFILE64_SOURCE 0 #endif #ifndef _LFS64_LARGEFILE #define _LFS64_LARGEFILE 0 #endif #ifndef _FILE_OFFSET_BITS #define _FILE_OFFSET_BITS 0 #endif #ifndef off64_t #define off64_t int64_t #endif #include static size_t tor_zlib_state_size_precalc(int inflate, int windowbits, int memlevel); /** Total number of bytes allocated for zlib state */ static size_t total_zlib_allocation = 0; /** Set to 1 if zlib is a version that supports gzip; set to 0 if it doesn't; * set to -1 if we haven't checked yet. */ static int gzip_is_supported = -1; /** Return true iff we support gzip-based compression. Otherwise, we need to * use zlib. */ int is_gzip_supported(void) { if (gzip_is_supported >= 0) return gzip_is_supported; if (!strcmpstart(ZLIB_VERSION, "0.") || !strcmpstart(ZLIB_VERSION, "1.0") || !strcmpstart(ZLIB_VERSION, "1.1")) gzip_is_supported = 0; else gzip_is_supported = 1; return gzip_is_supported; } /** Return a string representation of the version of the currently running * version of zlib. */ const char * tor_zlib_get_version_str(void) { return zlibVersion(); } /** Return a string representation of the version of the version of zlib * used at compilation. */ const char * tor_zlib_get_header_version_str(void) { return ZLIB_VERSION; } /** Return the 'bits' value to tell zlib to use method.*/ static INLINE int method_bits(compress_method_t method, zlib_compression_level_t level) { /* Bits+16 means "use gzip" in zlib >= 1.2 */ const int flag = method == GZIP_METHOD ? 16 : 0; switch (level) { default: case HIGH_COMPRESSION: return flag + 15; case MEDIUM_COMPRESSION: return flag + 13; case LOW_COMPRESSION: return flag + 11; } } static INLINE int get_memlevel(zlib_compression_level_t level) { switch (level) { default: case HIGH_COMPRESSION: return 8; case MEDIUM_COMPRESSION: return 7; case LOW_COMPRESSION: return 6; } } /** @{ */ /* These macros define the maximum allowable compression factor. Anything of * size greater than CHECK_FOR_COMPRESSION_BOMB_AFTER is not allowed to * have an uncompression factor (uncompressed size:compressed size ratio) of * any greater than MAX_UNCOMPRESSION_FACTOR. * * Picking a value for MAX_UNCOMPRESSION_FACTOR is a trade-off: we want it to * be small to limit the attack multiplier, but we also want it to be large * enough so that no legitimate document --even ones we might invent in the * future -- ever compresses by a factor of greater than * MAX_UNCOMPRESSION_FACTOR. Within those parameters, there's a reasonably * large range of possible values. IMO, anything over 8 is probably safe; IMO * anything under 50 is probably sufficient. */ #define MAX_UNCOMPRESSION_FACTOR 25 #define CHECK_FOR_COMPRESSION_BOMB_AFTER (1024*64) /** @} */ /** Return true if uncompressing an input of size in_size to an input * of size at least size_out looks like a compression bomb. */ static int is_compression_bomb(size_t size_in, size_t size_out) { if (size_in == 0 || size_out < CHECK_FOR_COMPRESSION_BOMB_AFTER) return 0; return (size_out / size_in > MAX_UNCOMPRESSION_FACTOR); } /** Given in_len bytes at in, compress them into a newly * allocated buffer, using the method described in method. Store the * compressed string in *out, and its length in *out_len. * Return 0 on success, -1 on failure. */ int tor_gzip_compress(char **out, size_t *out_len, const char *in, size_t in_len, compress_method_t method) { struct z_stream_s *stream = NULL; size_t out_size, old_size; off_t offset; tor_assert(out); tor_assert(out_len); tor_assert(in); tor_assert(in_len < UINT_MAX); *out = NULL; if (method == GZIP_METHOD && !is_gzip_supported()) { /* Old zlib version don't support gzip in deflateInit2 */ log_warn(LD_BUG, "Gzip not supported with zlib %s", ZLIB_VERSION); goto err; } stream = tor_malloc_zero(sizeof(struct z_stream_s)); stream->zalloc = Z_NULL; stream->zfree = Z_NULL; stream->opaque = NULL; stream->next_in = (unsigned char*) in; stream->avail_in = (unsigned int)in_len; if (deflateInit2(stream, Z_BEST_COMPRESSION, Z_DEFLATED, method_bits(method, HIGH_COMPRESSION), get_memlevel(HIGH_COMPRESSION), Z_DEFAULT_STRATEGY) != Z_OK) { log_warn(LD_GENERAL, "Error from deflateInit2: %s", stream->msg?stream->msg:""); goto err; } /* Guess 50% compression. */ out_size = in_len / 2; if (out_size < 1024) out_size = 1024; *out = tor_malloc(out_size); stream->next_out = (unsigned char*)*out; stream->avail_out = (unsigned int)out_size; while (1) { switch (deflate(stream, Z_FINISH)) { case Z_STREAM_END: goto done; case Z_OK: /* In case zlib doesn't work as I think .... */ if (stream->avail_out >= stream->avail_in+16) break; case Z_BUF_ERROR: offset = stream->next_out - ((unsigned char*)*out); old_size = out_size; out_size *= 2; if (out_size < old_size) { log_warn(LD_GENERAL, "Size overflow in compression."); goto err; } *out = tor_realloc(*out, out_size); stream->next_out = (unsigned char*)(*out + offset); if (out_size - offset > UINT_MAX) { log_warn(LD_BUG, "Ran over unsigned int limit of zlib while " "uncompressing."); goto err; } stream->avail_out = (unsigned int)(out_size - offset); break; default: log_warn(LD_GENERAL, "Gzip compression didn't finish: %s", stream->msg ? stream->msg : ""); goto err; } } done: *out_len = stream->total_out; #ifdef OPENBSD /* "Hey Rocky! Watch me change an unsigned field to a signed field in a * third-party API!" * "Oh, that trick will just make people do unsafe casts to the unsigned * type in their cross-platform code!" * "Don't be foolish. I'm _sure_ they'll have the good sense to make sure * the newly unsigned field isn't negative." */ tor_assert(stream->total_out >= 0); #endif if (((size_t)stream->total_out) > out_size + 4097) { /* If we're wasting more than 4k, don't. */ *out = tor_realloc(*out, stream->total_out + 1); } if (deflateEnd(stream)!=Z_OK) { log_warn(LD_BUG, "Error freeing gzip structures"); goto err; } tor_free(stream); if (is_compression_bomb(*out_len, in_len)) { log_warn(LD_BUG, "We compressed something and got an insanely high " "compression factor; other Tors would think this was a zlib bomb."); goto err; } return 0; err: if (stream) { deflateEnd(stream); tor_free(stream); } tor_free(*out); return -1; } /** Given zero or more zlib-compressed or gzip-compressed strings of * total length * in_len bytes at in, uncompress them into a newly allocated * buffer, using the method described in method. Store the uncompressed * string in *out, and its length in *out_len. Return 0 on * success, -1 on failure. * * If complete_only is true, we consider a truncated input as a * failure; otherwise we decompress as much as we can. Warn about truncated * or corrupt inputs at protocol_warn_level. */ int tor_gzip_uncompress(char **out, size_t *out_len, const char *in, size_t in_len, compress_method_t method, int complete_only, int protocol_warn_level) { struct z_stream_s *stream = NULL; size_t out_size, old_size; off_t offset; int r; tor_assert(out); tor_assert(out_len); tor_assert(in); tor_assert(in_len < UINT_MAX); if (method == GZIP_METHOD && !is_gzip_supported()) { /* Old zlib version don't support gzip in inflateInit2 */ log_warn(LD_BUG, "Gzip not supported with zlib %s", ZLIB_VERSION); return -1; } *out = NULL; stream = tor_malloc_zero(sizeof(struct z_stream_s)); stream->zalloc = Z_NULL; stream->zfree = Z_NULL; stream->opaque = NULL; stream->next_in = (unsigned char*) in; stream->avail_in = (unsigned int)in_len; if (inflateInit2(stream, method_bits(method, HIGH_COMPRESSION)) != Z_OK) { log_warn(LD_GENERAL, "Error from inflateInit2: %s", stream->msg?stream->msg:""); goto err; } out_size = in_len * 2; /* guess 50% compression. */ if (out_size < 1024) out_size = 1024; if (out_size >= SIZE_T_CEILING || out_size > UINT_MAX) goto err; *out = tor_malloc(out_size); stream->next_out = (unsigned char*)*out; stream->avail_out = (unsigned int)out_size; while (1) { switch (inflate(stream, complete_only ? Z_FINISH : Z_SYNC_FLUSH)) { case Z_STREAM_END: if (stream->avail_in == 0) goto done; /* There may be more compressed data here. */ if ((r = inflateEnd(stream)) != Z_OK) { log_warn(LD_BUG, "Error freeing gzip structures"); goto err; } if (inflateInit2(stream, method_bits(method,HIGH_COMPRESSION)) != Z_OK) { log_warn(LD_GENERAL, "Error from second inflateInit2: %s", stream->msg?stream->msg:""); goto err; } break; case Z_OK: if (!complete_only && stream->avail_in == 0) goto done; /* In case zlib doesn't work as I think.... */ if (stream->avail_out >= stream->avail_in+16) break; case Z_BUF_ERROR: if (stream->avail_out > 0) { log_fn(protocol_warn_level, LD_PROTOCOL, "possible truncated or corrupt zlib data"); goto err; } offset = stream->next_out - (unsigned char*)*out; old_size = out_size; out_size *= 2; if (out_size < old_size) { log_warn(LD_GENERAL, "Size overflow in uncompression."); goto err; } if (is_compression_bomb(in_len, out_size)) { log_warn(LD_GENERAL, "Input looks like a possible zlib bomb; " "not proceeding."); goto err; } if (out_size >= SIZE_T_CEILING) { log_warn(LD_BUG, "Hit SIZE_T_CEILING limit while uncompressing."); goto err; } *out = tor_realloc(*out, out_size); stream->next_out = (unsigned char*)(*out + offset); if (out_size - offset > UINT_MAX) { log_warn(LD_BUG, "Ran over unsigned int limit of zlib while " "uncompressing."); goto err; } stream->avail_out = (unsigned int)(out_size - offset); break; default: log_warn(LD_GENERAL, "Gzip decompression returned an error: %s", stream->msg ? stream->msg : ""); goto err; } } done: *out_len = stream->next_out - (unsigned char*)*out; r = inflateEnd(stream); tor_free(stream); if (r != Z_OK) { log_warn(LD_BUG, "Error freeing gzip structures"); goto err; } /* NUL-terminate output. */ if (out_size == *out_len) *out = tor_realloc(*out, out_size + 1); (*out)[*out_len] = '\0'; return 0; err: if (stream) { inflateEnd(stream); tor_free(stream); } if (*out) { tor_free(*out); } return -1; } /** Try to tell whether the in_len-byte string in in is likely * to be compressed or not. If it is, return the likeliest compression method. * Otherwise, return UNKNOWN_METHOD. */ compress_method_t detect_compression_method(const char *in, size_t in_len) { if (in_len > 2 && fast_memeq(in, "\x1f\x8b", 2)) { return GZIP_METHOD; } else if (in_len > 2 && (in[0] & 0x0f) == 8 && (ntohs(get_uint16(in)) % 31) == 0) { return ZLIB_METHOD; } else { return UNKNOWN_METHOD; } } /** Internal state for an incremental zlib compression/decompression. The * body of this struct is not exposed. */ struct tor_zlib_state_t { struct z_stream_s stream; /**< The zlib stream */ int compress; /**< True if we are compressing; false if we are inflating */ /** Number of bytes read so far. Used to detect zlib bombs. */ size_t input_so_far; /** Number of bytes written so far. Used to detect zlib bombs. */ size_t output_so_far; /** Approximate number of bytes allocated for this object. */ size_t allocation; }; /** Construct and return a tor_zlib_state_t object using method. If * compress, it's for compression; otherwise it's for * decompression. */ tor_zlib_state_t * tor_zlib_new(int compress, compress_method_t method, zlib_compression_level_t compression_level) { tor_zlib_state_t *out; int bits, memlevel; if (method == GZIP_METHOD && !is_gzip_supported()) { /* Old zlib version don't support gzip in inflateInit2 */ log_warn(LD_BUG, "Gzip not supported with zlib %s", ZLIB_VERSION); return NULL; } if (! compress) { /* use this setting for decompression, since we might have the * max number of window bits */ compression_level = HIGH_COMPRESSION; } out = tor_malloc_zero(sizeof(tor_zlib_state_t)); out->stream.zalloc = Z_NULL; out->stream.zfree = Z_NULL; out->stream.opaque = NULL; out->compress = compress; bits = method_bits(method, compression_level); memlevel = get_memlevel(compression_level); if (compress) { if (deflateInit2(&out->stream, Z_BEST_COMPRESSION, Z_DEFLATED, bits, memlevel, Z_DEFAULT_STRATEGY) != Z_OK) goto err; } else { if (inflateInit2(&out->stream, bits) != Z_OK) goto err; } out->allocation = tor_zlib_state_size_precalc(!compress, bits, memlevel); total_zlib_allocation += out->allocation; return out; err: tor_free(out); return NULL; } /** Compress/decompress some bytes using state. Read up to * *in_len bytes from *in, and write up to *out_len bytes * to *out, adjusting the values as we go. If finish is true, * we've reached the end of the input. * * Return TOR_ZLIB_DONE if we've finished the entire compression/decompression. * Return TOR_ZLIB_OK if we're processed everything from the input. * Return TOR_ZLIB_BUF_FULL if we're out of space on out. * Return TOR_ZLIB_ERR if the stream is corrupt. */ tor_zlib_output_t tor_zlib_process(tor_zlib_state_t *state, char **out, size_t *out_len, const char **in, size_t *in_len, int finish) { int err; tor_assert(*in_len <= UINT_MAX); tor_assert(*out_len <= UINT_MAX); state->stream.next_in = (unsigned char*) *in; state->stream.avail_in = (unsigned int)*in_len; state->stream.next_out = (unsigned char*) *out; state->stream.avail_out = (unsigned int)*out_len; if (state->compress) { err = deflate(&state->stream, finish ? Z_FINISH : Z_NO_FLUSH); } else { err = inflate(&state->stream, finish ? Z_FINISH : Z_SYNC_FLUSH); } state->input_so_far += state->stream.next_in - ((unsigned char*)*in); state->output_so_far += state->stream.next_out - ((unsigned char*)*out); *out = (char*) state->stream.next_out; *out_len = state->stream.avail_out; *in = (const char *) state->stream.next_in; *in_len = state->stream.avail_in; if (! state->compress && is_compression_bomb(state->input_so_far, state->output_so_far)) { log_warn(LD_DIR, "Possible zlib bomb; abandoning stream."); return TOR_ZLIB_ERR; } switch (err) { case Z_STREAM_END: return TOR_ZLIB_DONE; case Z_BUF_ERROR: if (state->stream.avail_in == 0 && !finish) return TOR_ZLIB_OK; return TOR_ZLIB_BUF_FULL; case Z_OK: if (state->stream.avail_out == 0 || finish) return TOR_ZLIB_BUF_FULL; return TOR_ZLIB_OK; default: log_warn(LD_GENERAL, "Gzip returned an error: %s", state->stream.msg ? state->stream.msg : ""); return TOR_ZLIB_ERR; } } /** Deallocate state. */ void tor_zlib_free(tor_zlib_state_t *state) { if (!state) return; total_zlib_allocation -= state->allocation; if (state->compress) deflateEnd(&state->stream); else inflateEnd(&state->stream); tor_free(state); } /** Return an approximate number of bytes used in RAM to hold a state with * window bits windowBits and compression level 'memlevel' */ static size_t tor_zlib_state_size_precalc(int inflate, int windowbits, int memlevel) { windowbits &= 15; #define A_FEW_KILOBYTES 2048 if (inflate) { /* From zconf.h: "The memory requirements for inflate are (in bytes) 1 << windowBits that is, 32K for windowBits=15 (default value) plus a few kilobytes for small objects." */ return sizeof(tor_zlib_state_t) + sizeof(struct z_stream_s) + (1 << 15) + A_FEW_KILOBYTES; } else { /* Also from zconf.h: "The memory requirements for deflate are (in bytes): (1 << (windowBits+2)) + (1 << (memLevel+9)) ... plus a few kilobytes for small objects." */ return sizeof(tor_zlib_state_t) + sizeof(struct z_stream_s) + (1 << (windowbits + 2)) + (1 << (memlevel + 9)) + A_FEW_KILOBYTES; } #undef A_FEW_KILOBYTES } /** Return the approximate number of bytes allocated for state. */ size_t tor_zlib_state_size(const tor_zlib_state_t *state) { return state->allocation; } /** Return the approximate number of bytes allocated for all zlib states. */ size_t tor_zlib_get_total_allocation(void) { return total_zlib_allocation; } tor-0.2.7.6/src/common/crypto_s2k.c0000644000175000017500000003137512621363245013750 00000000000000/* Copyright (c) 2001, Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define CRYPTO_S2K_PRIVATE #include "crypto.h" #include "util.h" #include "compat.h" #include "crypto_s2k.h" #include #ifdef HAVE_LIBSCRYPT_H #define HAVE_SCRYPT #include #endif /* Encoded secrets take the form: u8 type; u8 salt_and_parameters[depends on type]; u8 key[depends on type]; As a special case, if the encoded secret is exactly 29 bytes long, type 0 is understood. Recognized types are: 00 -- RFC2440. salt_and_parameters is 9 bytes. key is 20 bytes. salt_and_parameters is 8 bytes random salt, 1 byte iteration info. 01 -- PKBDF2_SHA1. salt_and_parameters is 17 bytes. key is 20 bytes. salt_and_parameters is 16 bytes random salt, 1 byte iteration info. 02 -- SCRYPT_SALSA208_SHA256. salt_and_parameters is 18 bytes. key is 32 bytes. salt_and_parameters is 18 bytes random salt, 2 bytes iteration info. */ #define S2K_TYPE_RFC2440 0 #define S2K_TYPE_PBKDF2 1 #define S2K_TYPE_SCRYPT 2 #define PBKDF2_SPEC_LEN 17 #define PBKDF2_KEY_LEN 20 #define SCRYPT_SPEC_LEN 18 #define SCRYPT_KEY_LEN 32 /** Given an algorithm ID (one of S2K_TYPE_*), return the length of the * specifier part of it, without the prefix type byte. */ static int secret_to_key_spec_len(uint8_t type) { switch (type) { case S2K_TYPE_RFC2440: return S2K_RFC2440_SPECIFIER_LEN; case S2K_TYPE_PBKDF2: return PBKDF2_SPEC_LEN; case S2K_TYPE_SCRYPT: return SCRYPT_SPEC_LEN; default: return -1; } } /** Given an algorithm ID (one of S2K_TYPE_*), return the length of the * its preferred output. */ static int secret_to_key_key_len(uint8_t type) { switch (type) { case S2K_TYPE_RFC2440: return DIGEST_LEN; case S2K_TYPE_PBKDF2: return DIGEST_LEN; case S2K_TYPE_SCRYPT: return DIGEST256_LEN; default: return -1; } } /** Given a specifier in spec_and_key of length * spec_and_key_len, along with its prefix algorithm ID byte, and along * with a key if key_included is true, check whether the whole * specifier-and-key is of valid length, and return the algorithm type if it * is. Set *legacy_out to 1 iff this is a legacy password hash or * legacy specifier. Return an error code on failure. */ static int secret_to_key_get_type(const uint8_t *spec_and_key, size_t spec_and_key_len, int key_included, int *legacy_out) { size_t legacy_len = S2K_RFC2440_SPECIFIER_LEN; uint8_t type; int total_len; if (key_included) legacy_len += DIGEST_LEN; if (spec_and_key_len == legacy_len) { *legacy_out = 1; return S2K_TYPE_RFC2440; } *legacy_out = 0; if (spec_and_key_len == 0) return S2K_BAD_LEN; type = spec_and_key[0]; total_len = secret_to_key_spec_len(type); if (total_len < 0) return S2K_BAD_ALGORITHM; if (key_included) { int keylen = secret_to_key_key_len(type); if (keylen < 0) return S2K_BAD_ALGORITHM; total_len += keylen; } if ((size_t)total_len + 1 == spec_and_key_len) return type; else return S2K_BAD_LEN; } /** * Write a new random s2k specifier of type type, without prefixing * type byte, to spec_out, which must have enough room. May adjust * parameter choice based on flags. */ static int make_specifier(uint8_t *spec_out, uint8_t type, unsigned flags) { int speclen = secret_to_key_spec_len(type); if (speclen < 0) return S2K_BAD_ALGORITHM; crypto_rand((char*)spec_out, speclen); switch (type) { case S2K_TYPE_RFC2440: /* Hash 64 k of data. */ spec_out[S2K_RFC2440_SPECIFIER_LEN-1] = 96; break; case S2K_TYPE_PBKDF2: /* 131 K iterations */ spec_out[PBKDF2_SPEC_LEN-1] = 17; break; case S2K_TYPE_SCRYPT: if (flags & S2K_FLAG_LOW_MEM) { /* N = 1<<12 */ spec_out[SCRYPT_SPEC_LEN-2] = 12; } else { /* N = 1<<15 */ spec_out[SCRYPT_SPEC_LEN-2] = 15; } /* r = 8; p = 2. */ spec_out[SCRYPT_SPEC_LEN-1] = (3u << 4) | (1u << 0); break; default: tor_fragile_assert(); return S2K_BAD_ALGORITHM; } return speclen; } /** Implement RFC2440-style iterated-salted S2K conversion: convert the * secret_len-byte secret into a key_out_len byte * key_out. As in RFC2440, the first 8 bytes of s2k_specifier * are a salt; the 9th byte describes how much iteration to do. * If key_out_len > DIGEST_LEN, use HDKF to expand the result. */ void secret_to_key_rfc2440(char *key_out, size_t key_out_len, const char *secret, size_t secret_len, const char *s2k_specifier) { crypto_digest_t *d; uint8_t c; size_t count, tmplen; char *tmp; uint8_t buf[DIGEST_LEN]; tor_assert(key_out_len < SIZE_T_CEILING); #define EXPBIAS 6 c = s2k_specifier[8]; count = ((uint32_t)16 + (c & 15)) << ((c >> 4) + EXPBIAS); #undef EXPBIAS d = crypto_digest_new(); tmplen = 8+secret_len; tmp = tor_malloc(tmplen); memcpy(tmp,s2k_specifier,8); memcpy(tmp+8,secret,secret_len); secret_len += 8; while (count) { if (count >= secret_len) { crypto_digest_add_bytes(d, tmp, secret_len); count -= secret_len; } else { crypto_digest_add_bytes(d, tmp, count); count = 0; } } crypto_digest_get_digest(d, (char*)buf, sizeof(buf)); if (key_out_len <= sizeof(buf)) { memcpy(key_out, buf, key_out_len); } else { crypto_expand_key_material_rfc5869_sha256(buf, DIGEST_LEN, (const uint8_t*)s2k_specifier, 8, (const uint8_t*)"EXPAND", 6, (uint8_t*)key_out, key_out_len); } memwipe(tmp, 0, tmplen); memwipe(buf, 0, sizeof(buf)); tor_free(tmp); crypto_digest_free(d); } /** * Helper: given a valid specifier without prefix type byte in spec, * whose length must be correct, and given a secret passphrase secret * of length secret_len, compute the key and store it into * key_out, which must have enough room for secret_to_key_key_len(type) * bytes. Return the number of bytes written on success and an error code * on failure. */ STATIC int secret_to_key_compute_key(uint8_t *key_out, size_t key_out_len, const uint8_t *spec, size_t spec_len, const char *secret, size_t secret_len, int type) { int rv; if (key_out_len > INT_MAX) return S2K_BAD_LEN; switch (type) { case S2K_TYPE_RFC2440: secret_to_key_rfc2440((char*)key_out, key_out_len, secret, secret_len, (const char*)spec); return (int)key_out_len; case S2K_TYPE_PBKDF2: { uint8_t log_iters; if (spec_len < 1 || secret_len > INT_MAX || spec_len > INT_MAX) return S2K_BAD_LEN; log_iters = spec[spec_len-1]; if (log_iters > 31) return S2K_BAD_PARAMS; rv = PKCS5_PBKDF2_HMAC_SHA1(secret, (int)secret_len, spec, (int)spec_len-1, (1<> 4; log_p = (spec[spec_len-1]) & 15; if (log_N > 63) return S2K_BAD_PARAMS; N = ((uint64_t)1) << log_N; r = 1u << log_r; p = 1u << log_p; rv = libscrypt_scrypt((const uint8_t*)secret, secret_len, spec, spec_len-2, N, r, p, key_out, key_out_len); if (rv != 0) return S2K_FAILED; return (int)key_out_len; #else return S2K_NO_SCRYPT_SUPPORT; #endif } default: return S2K_BAD_ALGORITHM; } } /** * Given a specifier previously constructed with secret_to_key_make_specifier * in spec of length spec_len, and a secret password in * secret of length secret_len, generate key_out_len * bytes of cryptographic material in key_out. The native output of * the secret-to-key function will be truncated if key_out_len is short, and * expanded with HKDF if key_out_len is long. Returns S2K_OKAY on success, * and an error code on failure. */ int secret_to_key_derivekey(uint8_t *key_out, size_t key_out_len, const uint8_t *spec, size_t spec_len, const char *secret, size_t secret_len) { int legacy_format = 0; int type = secret_to_key_get_type(spec, spec_len, 0, &legacy_format); int r; if (type < 0) return type; #ifndef HAVE_SCRYPT if (type == S2K_TYPE_SCRYPT) return S2K_NO_SCRYPT_SUPPORT; #endif if (! legacy_format) { ++spec; --spec_len; } r = secret_to_key_compute_key(key_out, key_out_len, spec, spec_len, secret, secret_len, type); if (r < 0) return r; else return S2K_OKAY; } /** * Construct a new s2k algorithm specifier and salt in buf, according * to the bitwise-or of some S2K_FLAG_* options in flags. Up to * buf_len bytes of storage may be used in buf. Return the * number of bytes used on success and an error code on failure. */ int secret_to_key_make_specifier(uint8_t *buf, size_t buf_len, unsigned flags) { int rv; int spec_len; #ifdef HAVE_SCRYPT uint8_t type = S2K_TYPE_SCRYPT; #else uint8_t type = S2K_TYPE_RFC2440; #endif if (flags & S2K_FLAG_NO_SCRYPT) type = S2K_TYPE_RFC2440; if (flags & S2K_FLAG_USE_PBKDF2) type = S2K_TYPE_PBKDF2; spec_len = secret_to_key_spec_len(type); if ((int)buf_len < spec_len + 1) return S2K_TRUNCATED; buf[0] = type; rv = make_specifier(buf+1, type, flags); if (rv < 0) return rv; else return rv + 1; } /** * Hash a passphrase from secret of length secret_len, according * to the bitwise-or of some S2K_FLAG_* options in flags, and store the * hash along with salt and hashing parameters into buf. Up to * buf_len bytes of storage may be used in buf. Set * *len_out to the number of bytes used and return S2K_OKAY on success; * and return an error code on failure. */ int secret_to_key_new(uint8_t *buf, size_t buf_len, size_t *len_out, const char *secret, size_t secret_len, unsigned flags) { int key_len; int spec_len; int type; int rv; spec_len = secret_to_key_make_specifier(buf, buf_len, flags); if (spec_len < 0) return spec_len; type = buf[0]; key_len = secret_to_key_key_len(type); if (key_len < 0) return key_len; if ((int)buf_len < key_len + spec_len) return S2K_TRUNCATED; rv = secret_to_key_compute_key(buf + spec_len, key_len, buf + 1, spec_len-1, secret, secret_len, type); if (rv < 0) return rv; *len_out = spec_len + key_len; return S2K_OKAY; } /** * Given a hashed passphrase in spec_and_key of length * spec_and_key_len as generated by secret_to_key_new(), verify whether * it is a hash of the passphrase secret of length secret_len. * Return S2K_OKAY on a match, S2K_BAD_SECRET on a well-formed hash that * doesn't match this secret, and another error code on other errors. */ int secret_to_key_check(const uint8_t *spec_and_key, size_t spec_and_key_len, const char *secret, size_t secret_len) { int is_legacy = 0; int type = secret_to_key_get_type(spec_and_key, spec_and_key_len, 1, &is_legacy); uint8_t buf[32]; int spec_len; int key_len; int rv; if (type < 0) return type; if (! is_legacy) { spec_and_key++; spec_and_key_len--; } spec_len = secret_to_key_spec_len(type); key_len = secret_to_key_key_len(type); tor_assert(spec_len > 0); tor_assert(key_len > 0); tor_assert(key_len <= (int) sizeof(buf)); tor_assert((int)spec_and_key_len == spec_len + key_len); rv = secret_to_key_compute_key(buf, key_len, spec_and_key, spec_len, secret, secret_len, type); if (rv < 0) goto done; if (tor_memeq(buf, spec_and_key + spec_len, key_len)) rv = S2K_OKAY; else rv = S2K_BAD_SECRET; done: memwipe(buf, 0, sizeof(buf)); return rv; } tor-0.2.7.6/src/common/procmon.h0000644000175000017500000000200712621363245013321 00000000000000/* Copyright (c) 2011-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file procmon.h * \brief Headers for procmon.c **/ #ifndef TOR_PROCMON_H #define TOR_PROCMON_H #include "compat.h" #include "compat_libevent.h" #include "torlog.h" typedef struct tor_process_monitor_t tor_process_monitor_t; /* DOCDOC tor_procmon_callback_t */ typedef void (*tor_procmon_callback_t)(void *); int tor_validate_process_specifier(const char *process_spec, const char **msg); tor_process_monitor_t *tor_process_monitor_new(struct event_base *base, const char *process_spec, log_domain_mask_t log_domain, tor_procmon_callback_t cb, void *cb_arg, const char **msg); void tor_process_monitor_free(tor_process_monitor_t *procmon); #endif tor-0.2.7.6/src/common/aes.c0000644000175000017500000003417712621363245012424 00000000000000/* Copyright (c) 2001, Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file aes.c * \brief Implements a counter-mode stream cipher on top of AES. **/ #include "orconfig.h" #ifdef _WIN32 /*wrkard for dtls1.h >= 0.9.8m of "#include "*/ #include #include #endif #include #include "crypto.h" #if OPENSSL_VERSION_NUMBER < OPENSSL_V_SERIES(1,0,0) #error "We require OpenSSL >= 1.0.0" #endif #include #include #include #include #include #include #include #include "compat.h" #include "aes.h" #include "util.h" #include "torlog.h" #include "di_ops.h" #ifdef ANDROID /* Android's OpenSSL seems to have removed all of its Engine support. */ #define DISABLE_ENGINES #endif /* We have five strategies for implementing AES counter mode. * * Best with x86 and x86_64: Use EVP_aes_ctr128() and EVP_EncryptUpdate(). * This is possible with OpenSSL 1.0.1, where the counter-mode implementation * can use bit-sliced or vectorized AES or AESNI as appropriate. * * Otherwise: Pick the best possible AES block implementation that OpenSSL * gives us, and the best possible counter-mode implementation, and combine * them. */ #if OPENSSL_VERSION_NUMBER >= OPENSSL_V_NOPATCH(1,0,1) && \ (defined(__i386) || defined(__i386__) || defined(_M_IX86) || \ defined(__x86_64) || defined(__x86_64__) || \ defined(_M_AMD64) || defined(_M_X64) || defined(__INTEL__)) \ #define USE_EVP_AES_CTR #endif /* We have 2 strategies for getting the AES block cipher: Via OpenSSL's * AES_encrypt function, or via OpenSSL's EVP_EncryptUpdate function. * * If there's any hardware acceleration in play, we want to be using EVP_* so * we can get it. Otherwise, we'll want AES_*, which seems to be about 5% * faster than indirecting through the EVP layer. */ /* We have 2 strategies for getting a plug-in counter mode: use our own, or * use OpenSSL's. * * Here we have a counter mode that's faster than the one shipping with * OpenSSL pre-1.0 (by about 10%!). But OpenSSL 1.0.0 added a counter mode * implementation faster than the one here (by about 7%). So we pick which * one to used based on the Openssl version above. (OpenSSL 1.0.0a fixed a * critical bug in that counter mode implementation, so we need to test to * make sure that we have a fixed version.) */ #ifdef USE_EVP_AES_CTR struct aes_cnt_cipher { EVP_CIPHER_CTX evp; }; aes_cnt_cipher_t * aes_new_cipher(const char *key, const char *iv) { aes_cnt_cipher_t *cipher; cipher = tor_malloc_zero(sizeof(aes_cnt_cipher_t)); EVP_EncryptInit(&cipher->evp, EVP_aes_128_ctr(), (const unsigned char*)key, (const unsigned char *)iv); return cipher; } void aes_cipher_free(aes_cnt_cipher_t *cipher) { if (!cipher) return; EVP_CIPHER_CTX_cleanup(&cipher->evp); memwipe(cipher, 0, sizeof(aes_cnt_cipher_t)); tor_free(cipher); } void aes_crypt(aes_cnt_cipher_t *cipher, const char *input, size_t len, char *output) { int outl; tor_assert(len < INT_MAX); EVP_EncryptUpdate(&cipher->evp, (unsigned char*)output, &outl, (const unsigned char *)input, (int)len); } void aes_crypt_inplace(aes_cnt_cipher_t *cipher, char *data, size_t len) { int outl; tor_assert(len < INT_MAX); EVP_EncryptUpdate(&cipher->evp, (unsigned char*)data, &outl, (unsigned char*)data, (int)len); } int evaluate_evp_for_aes(int force_val) { (void) force_val; log_info(LD_CRYPTO, "This version of OpenSSL has a known-good EVP " "counter-mode implementation. Using it."); return 0; } int evaluate_ctr_for_aes(void) { return 0; } #else /*======================================================================*/ /* Interface to AES code, and counter implementation */ /** Implements an AES counter-mode cipher. */ struct aes_cnt_cipher { /** This next element (however it's defined) is the AES key. */ union { EVP_CIPHER_CTX evp; AES_KEY aes; } key; #if !defined(WORDS_BIGENDIAN) #define USING_COUNTER_VARS /** These four values, together, implement a 128-bit counter, with * counter0 as the low-order word and counter3 as the high-order word. */ uint32_t counter3; uint32_t counter2; uint32_t counter1; uint32_t counter0; #endif union { /** The counter, in big-endian order, as bytes. */ uint8_t buf[16]; /** The counter, in big-endian order, as big-endian words. Note that * on big-endian platforms, this is redundant with counter3...0, * so we just use these values instead. */ uint32_t buf32[4]; } ctr_buf; /** The encrypted value of ctr_buf. */ uint8_t buf[16]; /** Our current stream position within buf. */ unsigned int pos; /** True iff we're using the evp implementation of this cipher. */ uint8_t using_evp; }; /** True iff we should prefer the EVP implementation for AES, either because * we're testing it or because we have hardware acceleration configured */ static int should_use_EVP = 0; /** True iff we have tested the counter-mode implementation and found that it * doesn't have the counter-mode bug from OpenSSL 1.0.0. */ static int should_use_openssl_CTR = 0; /** Check whether we should use the EVP interface for AES. If force_val * is nonnegative, we use use EVP iff it is true. Otherwise, we use EVP * if there is an engine enabled for aes-ecb. */ int evaluate_evp_for_aes(int force_val) { ENGINE *e; if (force_val >= 0) { should_use_EVP = force_val; return 0; } #ifdef DISABLE_ENGINES should_use_EVP = 0; #else e = ENGINE_get_cipher_engine(NID_aes_128_ecb); if (e) { log_info(LD_CRYPTO, "AES engine \"%s\" found; using EVP_* functions.", ENGINE_get_name(e)); should_use_EVP = 1; } else { log_info(LD_CRYPTO, "No AES engine found; using AES_* functions."); should_use_EVP = 0; } #endif return 0; } /** Test the OpenSSL counter mode implementation to see whether it has the * counter-mode bug from OpenSSL 1.0.0. If the implementation works, then * we will use it for future encryption/decryption operations. * * We can't just look at the OpenSSL version, since some distributions update * their OpenSSL packages without changing the version number. **/ int evaluate_ctr_for_aes(void) { /* Result of encrypting an all-zero block with an all-zero 128-bit AES key. * This should be the same as encrypting an all-zero block with an all-zero * 128-bit AES key in counter mode, starting at position 0 of the stream. */ static const unsigned char encrypt_zero[] = "\x66\xe9\x4b\xd4\xef\x8a\x2c\x3b\x88\x4c\xfa\x59\xca\x34\x2b\x2e"; unsigned char zero[16]; unsigned char output[16]; unsigned char ivec[16]; unsigned char ivec_tmp[16]; unsigned int pos, i; AES_KEY key; memset(zero, 0, sizeof(zero)); memset(ivec, 0, sizeof(ivec)); AES_set_encrypt_key(zero, 128, &key); pos = 0; /* Encrypting a block one byte at a time should make the error manifest * itself for known bogus openssl versions. */ for (i=0; i<16; ++i) AES_ctr128_encrypt(&zero[i], &output[i], 1, &key, ivec, ivec_tmp, &pos); if (fast_memneq(output, encrypt_zero, 16)) { /* Counter mode is buggy */ log_notice(LD_CRYPTO, "This OpenSSL has a buggy version of counter mode; " "not using it."); } else { /* Counter mode is okay */ log_info(LD_CRYPTO, "This OpenSSL has a good implementation of counter " "mode; using it."); should_use_openssl_CTR = 1; } return 0; } #if !defined(USING_COUNTER_VARS) #define COUNTER(c, n) ((c)->ctr_buf.buf32[3-(n)]) #else #define COUNTER(c, n) ((c)->counter ## n) #endif /** * Helper function: set cipher's internal buffer to the encrypted * value of the current counter. */ static INLINE void aes_fill_buf_(aes_cnt_cipher_t *cipher) { /* We don't currently use OpenSSL's counter mode implementation because: * 1) some versions have known bugs * 2) its attitude towards IVs is not our own * 3) changing the counter position was not trivial, last time I looked. * None of these issues are insurmountable in principle. */ if (cipher->using_evp) { int outl=16, inl=16; EVP_EncryptUpdate(&cipher->key.evp, cipher->buf, &outl, cipher->ctr_buf.buf, inl); } else { AES_encrypt(cipher->ctr_buf.buf, cipher->buf, &cipher->key.aes); } } static void aes_set_key(aes_cnt_cipher_t *cipher, const char *key, int key_bits); static void aes_set_iv(aes_cnt_cipher_t *cipher, const char *iv); /** * Return a newly allocated counter-mode AES128 cipher implementation, * using the 128-bit key key and the 128-bit IV iv. */ aes_cnt_cipher_t* aes_new_cipher(const char *key, const char *iv) { aes_cnt_cipher_t* result = tor_malloc_zero(sizeof(aes_cnt_cipher_t)); aes_set_key(result, key, 128); aes_set_iv(result, iv); return result; } /** Set the key of cipher to key, which is * key_bits bits long (must be 128, 192, or 256). Also resets * the counter to 0. */ static void aes_set_key(aes_cnt_cipher_t *cipher, const char *key, int key_bits) { if (should_use_EVP) { const EVP_CIPHER *c = 0; switch (key_bits) { case 128: c = EVP_aes_128_ecb(); break; case 192: c = EVP_aes_192_ecb(); break; case 256: c = EVP_aes_256_ecb(); break; default: tor_assert(0); } EVP_EncryptInit(&cipher->key.evp, c, (const unsigned char*)key, NULL); cipher->using_evp = 1; } else { AES_set_encrypt_key((const unsigned char *)key, key_bits,&cipher->key.aes); cipher->using_evp = 0; } #ifdef USING_COUNTER_VARS cipher->counter0 = 0; cipher->counter1 = 0; cipher->counter2 = 0; cipher->counter3 = 0; #endif memset(cipher->ctr_buf.buf, 0, sizeof(cipher->ctr_buf.buf)); cipher->pos = 0; if (should_use_openssl_CTR) memset(cipher->buf, 0, sizeof(cipher->buf)); else aes_fill_buf_(cipher); } /** Release storage held by cipher */ void aes_cipher_free(aes_cnt_cipher_t *cipher) { if (!cipher) return; if (cipher->using_evp) { EVP_CIPHER_CTX_cleanup(&cipher->key.evp); } memwipe(cipher, 0, sizeof(aes_cnt_cipher_t)); tor_free(cipher); } #if defined(USING_COUNTER_VARS) #define UPDATE_CTR_BUF(c, n) STMT_BEGIN \ (c)->ctr_buf.buf32[3-(n)] = htonl((c)->counter ## n); \ STMT_END #else #define UPDATE_CTR_BUF(c, n) #endif /* Helper function to use EVP with openssl's counter-mode wrapper. */ static void evp_block128_fn(const uint8_t in[16], uint8_t out[16], const void *key) { EVP_CIPHER_CTX *ctx = (void*)key; int inl=16, outl=16; EVP_EncryptUpdate(ctx, out, &outl, in, inl); } /** Encrypt len bytes from input, storing the result in * output. Uses the key in cipher, and advances the counter * by len bytes as it encrypts. */ void aes_crypt(aes_cnt_cipher_t *cipher, const char *input, size_t len, char *output) { if (should_use_openssl_CTR) { if (cipher->using_evp) { /* In openssl 1.0.0, there's an if'd out EVP_aes_128_ctr in evp.h. If * it weren't disabled, it might be better just to use that. */ CRYPTO_ctr128_encrypt((const unsigned char *)input, (unsigned char *)output, len, &cipher->key.evp, cipher->ctr_buf.buf, cipher->buf, &cipher->pos, evp_block128_fn); } else { AES_ctr128_encrypt((const unsigned char *)input, (unsigned char *)output, len, &cipher->key.aes, cipher->ctr_buf.buf, cipher->buf, &cipher->pos); } return; } else { int c = cipher->pos; if (PREDICT_UNLIKELY(!len)) return; while (1) { do { if (len-- == 0) { cipher->pos = c; return; } *(output++) = *(input++) ^ cipher->buf[c]; } while (++c != 16); cipher->pos = c = 0; if (PREDICT_UNLIKELY(! ++COUNTER(cipher, 0))) { if (PREDICT_UNLIKELY(! ++COUNTER(cipher, 1))) { if (PREDICT_UNLIKELY(! ++COUNTER(cipher, 2))) { ++COUNTER(cipher, 3); UPDATE_CTR_BUF(cipher, 3); } UPDATE_CTR_BUF(cipher, 2); } UPDATE_CTR_BUF(cipher, 1); } UPDATE_CTR_BUF(cipher, 0); aes_fill_buf_(cipher); } } } /** Encrypt len bytes from input, storing the results in place. * Uses the key in cipher, and advances the counter by len bytes * as it encrypts. */ void aes_crypt_inplace(aes_cnt_cipher_t *cipher, char *data, size_t len) { if (should_use_openssl_CTR) { aes_crypt(cipher, data, len, data); return; } else { int c = cipher->pos; if (PREDICT_UNLIKELY(!len)) return; while (1) { do { if (len-- == 0) { cipher->pos = c; return; } *(data++) ^= cipher->buf[c]; } while (++c != 16); cipher->pos = c = 0; if (PREDICT_UNLIKELY(! ++COUNTER(cipher, 0))) { if (PREDICT_UNLIKELY(! ++COUNTER(cipher, 1))) { if (PREDICT_UNLIKELY(! ++COUNTER(cipher, 2))) { ++COUNTER(cipher, 3); UPDATE_CTR_BUF(cipher, 3); } UPDATE_CTR_BUF(cipher, 2); } UPDATE_CTR_BUF(cipher, 1); } UPDATE_CTR_BUF(cipher, 0); aes_fill_buf_(cipher); } } } /** Reset the 128-bit counter of cipher to the 16-bit big-endian value * in iv. */ static void aes_set_iv(aes_cnt_cipher_t *cipher, const char *iv) { #ifdef USING_COUNTER_VARS cipher->counter3 = ntohl(get_uint32(iv)); cipher->counter2 = ntohl(get_uint32(iv+4)); cipher->counter1 = ntohl(get_uint32(iv+8)); cipher->counter0 = ntohl(get_uint32(iv+12)); #endif cipher->pos = 0; memcpy(cipher->ctr_buf.buf, iv, 16); if (!should_use_openssl_CTR) aes_fill_buf_(cipher); } #endif tor-0.2.7.6/src/common/ciphers.inc0000644000175000017500000001005712621363245013627 00000000000000/* This is an include file used to define the list of ciphers clients should * advertise. Before including it, you should define the CIPHER and XCIPHER * macros. * * This file was automatically generated by get_mozilla_ciphers.py. */ #ifdef TLS1_TXT_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 CIPHER(0xc02b, TLS1_TXT_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256) #else XCIPHER(0xc02b, TLS1_TXT_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256) #endif #ifdef TLS1_TXT_ECDHE_RSA_WITH_AES_128_GCM_SHA256 CIPHER(0xc02f, TLS1_TXT_ECDHE_RSA_WITH_AES_128_GCM_SHA256) #else XCIPHER(0xc02f, TLS1_TXT_ECDHE_RSA_WITH_AES_128_GCM_SHA256) #endif #ifdef TLS1_TXT_ECDHE_ECDSA_WITH_AES_256_CBC_SHA CIPHER(0xc00a, TLS1_TXT_ECDHE_ECDSA_WITH_AES_256_CBC_SHA) #else XCIPHER(0xc00a, TLS1_TXT_ECDHE_ECDSA_WITH_AES_256_CBC_SHA) #endif #ifdef TLS1_TXT_ECDHE_ECDSA_WITH_AES_128_CBC_SHA CIPHER(0xc009, TLS1_TXT_ECDHE_ECDSA_WITH_AES_128_CBC_SHA) #else XCIPHER(0xc009, TLS1_TXT_ECDHE_ECDSA_WITH_AES_128_CBC_SHA) #endif #ifdef TLS1_TXT_ECDHE_RSA_WITH_AES_128_CBC_SHA CIPHER(0xc013, TLS1_TXT_ECDHE_RSA_WITH_AES_128_CBC_SHA) #else XCIPHER(0xc013, TLS1_TXT_ECDHE_RSA_WITH_AES_128_CBC_SHA) #endif #ifdef TLS1_TXT_ECDHE_RSA_WITH_AES_256_CBC_SHA CIPHER(0xc014, TLS1_TXT_ECDHE_RSA_WITH_AES_256_CBC_SHA) #else XCIPHER(0xc014, TLS1_TXT_ECDHE_RSA_WITH_AES_256_CBC_SHA) #endif #ifdef TLS1_TXT_ECDHE_RSA_WITH_DES_192_CBC3_SHA CIPHER(0xc012, TLS1_TXT_ECDHE_RSA_WITH_DES_192_CBC3_SHA) #else XCIPHER(0xc012, TLS1_TXT_ECDHE_RSA_WITH_DES_192_CBC3_SHA) #endif #ifdef TLS1_TXT_ECDHE_ECDSA_WITH_RC4_128_SHA CIPHER(0xc007, TLS1_TXT_ECDHE_ECDSA_WITH_RC4_128_SHA) #else XCIPHER(0xc007, TLS1_TXT_ECDHE_ECDSA_WITH_RC4_128_SHA) #endif #ifdef TLS1_TXT_ECDHE_RSA_WITH_RC4_128_SHA CIPHER(0xc011, TLS1_TXT_ECDHE_RSA_WITH_RC4_128_SHA) #else XCIPHER(0xc011, TLS1_TXT_ECDHE_RSA_WITH_RC4_128_SHA) #endif #ifdef TLS1_TXT_DHE_RSA_WITH_AES_128_SHA CIPHER(0x0033, TLS1_TXT_DHE_RSA_WITH_AES_128_SHA) #else XCIPHER(0x0033, TLS1_TXT_DHE_RSA_WITH_AES_128_SHA) #endif #ifdef TLS1_TXT_DHE_DSS_WITH_AES_128_SHA CIPHER(0x0032, TLS1_TXT_DHE_DSS_WITH_AES_128_SHA) #else XCIPHER(0x0032, TLS1_TXT_DHE_DSS_WITH_AES_128_SHA) #endif #ifdef TLS1_TXT_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA CIPHER(0x0045, TLS1_TXT_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA) #else XCIPHER(0x0045, TLS1_TXT_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA) #endif #ifdef TLS1_TXT_DHE_RSA_WITH_AES_256_SHA CIPHER(0x0039, TLS1_TXT_DHE_RSA_WITH_AES_256_SHA) #else XCIPHER(0x0039, TLS1_TXT_DHE_RSA_WITH_AES_256_SHA) #endif #ifdef TLS1_TXT_DHE_DSS_WITH_AES_256_SHA CIPHER(0x0038, TLS1_TXT_DHE_DSS_WITH_AES_256_SHA) #else XCIPHER(0x0038, TLS1_TXT_DHE_DSS_WITH_AES_256_SHA) #endif #ifdef TLS1_TXT_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA CIPHER(0x0088, TLS1_TXT_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA) #else XCIPHER(0x0088, TLS1_TXT_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA) #endif #ifdef SSL3_TXT_EDH_RSA_DES_192_CBC3_SHA CIPHER(0x0016, SSL3_TXT_EDH_RSA_DES_192_CBC3_SHA) #else XCIPHER(0x0016, SSL3_TXT_EDH_RSA_DES_192_CBC3_SHA) #endif #ifdef TLS1_TXT_RSA_WITH_AES_128_SHA CIPHER(0x002f, TLS1_TXT_RSA_WITH_AES_128_SHA) #else XCIPHER(0x002f, TLS1_TXT_RSA_WITH_AES_128_SHA) #endif #ifdef TLS1_TXT_RSA_WITH_CAMELLIA_128_CBC_SHA CIPHER(0x0041, TLS1_TXT_RSA_WITH_CAMELLIA_128_CBC_SHA) #else XCIPHER(0x0041, TLS1_TXT_RSA_WITH_CAMELLIA_128_CBC_SHA) #endif #ifdef TLS1_TXT_RSA_WITH_AES_256_SHA CIPHER(0x0035, TLS1_TXT_RSA_WITH_AES_256_SHA) #else XCIPHER(0x0035, TLS1_TXT_RSA_WITH_AES_256_SHA) #endif #ifdef TLS1_TXT_RSA_WITH_CAMELLIA_256_CBC_SHA CIPHER(0x0084, TLS1_TXT_RSA_WITH_CAMELLIA_256_CBC_SHA) #else XCIPHER(0x0084, TLS1_TXT_RSA_WITH_CAMELLIA_256_CBC_SHA) #endif #ifdef SSL3_TXT_RSA_DES_192_CBC3_SHA CIPHER(0x000a, SSL3_TXT_RSA_DES_192_CBC3_SHA) #else XCIPHER(0x000a, SSL3_TXT_RSA_DES_192_CBC3_SHA) #endif #ifdef SSL3_TXT_RSA_RC4_128_SHA CIPHER(0x0005, SSL3_TXT_RSA_RC4_128_SHA) #else XCIPHER(0x0005, SSL3_TXT_RSA_RC4_128_SHA) #endif #ifdef SSL3_TXT_RSA_RC4_128_MD5 CIPHER(0x0004, SSL3_TXT_RSA_RC4_128_MD5) #else XCIPHER(0x0004, SSL3_TXT_RSA_RC4_128_MD5) #endif tor-0.2.7.6/src/common/log.c0000644000175000017500000011412312631612325012420 00000000000000/* Copyright (c) 2001, Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file log.c * \brief Functions to send messages to log files or the console. **/ #include "orconfig.h" #include #include // #include #include #include #ifdef HAVE_SYS_TIME_H #include #endif #ifdef HAVE_TIME_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_FCNTL_H #include #endif #include "compat.h" #include "util.h" #define LOG_PRIVATE #include "torlog.h" #include "container.h" /** Given a severity, yields an index into log_severity_list_t.masks to use * for that severity. */ #define SEVERITY_MASK_IDX(sev) ((sev) - LOG_ERR) /** @{ */ /** The string we stick at the end of a log message when it is too long, * and its length. */ #define TRUNCATED_STR "[...truncated]" #define TRUNCATED_STR_LEN 14 /** @} */ /** Information for a single logfile; only used in log.c */ typedef struct logfile_t { struct logfile_t *next; /**< Next logfile_t in the linked list. */ char *filename; /**< Filename to open. */ int fd; /**< fd to receive log messages, or -1 for none. */ int seems_dead; /**< Boolean: true if the stream seems to be kaput. */ int needs_close; /**< Boolean: true if the stream gets closed on shutdown. */ int is_temporary; /**< Boolean: close after initializing logging subsystem.*/ int is_syslog; /**< Boolean: send messages to syslog. */ log_callback callback; /**< If not NULL, send messages to this function. */ log_severity_list_t *severities; /**< Which severity of messages should we * log for each log domain? */ } logfile_t; static void log_free(logfile_t *victim); /** Helper: map a log severity to descriptive string. */ static INLINE const char * sev_to_string(int severity) { switch (severity) { case LOG_DEBUG: return "debug"; case LOG_INFO: return "info"; case LOG_NOTICE: return "notice"; case LOG_WARN: return "warn"; case LOG_ERR: return "err"; default: /* Call assert, not tor_assert, since tor_assert * calls log on failure. */ assert(0); return "UNKNOWN"; } } /** Helper: decide whether to include the function name in the log message. */ static INLINE int should_log_function_name(log_domain_mask_t domain, int severity) { switch (severity) { case LOG_DEBUG: case LOG_INFO: /* All debugging messages occur in interesting places. */ return (domain & LD_NOFUNCNAME) == 0; case LOG_NOTICE: case LOG_WARN: case LOG_ERR: /* We care about places where bugs occur. */ return (domain & (LD_BUG|LD_NOFUNCNAME)) == LD_BUG; default: /* Call assert, not tor_assert, since tor_assert calls log on failure. */ assert(0); return 0; } } /** A mutex to guard changes to logfiles and logging. */ static tor_mutex_t log_mutex; /** True iff we have initialized log_mutex */ static int log_mutex_initialized = 0; /** Linked list of logfile_t. */ static logfile_t *logfiles = NULL; /** Boolean: do we report logging domains? */ static int log_domains_are_logged = 0; #ifdef HAVE_SYSLOG_H /** The number of open syslog log handlers that we have. When this reaches 0, * we can close our connection to the syslog facility. */ static int syslog_count = 0; #endif /** Represents a log message that we are going to send to callback-driven * loggers once we can do so in a non-reentrant way. */ typedef struct pending_log_message_t { int severity; /**< The severity of the message */ log_domain_mask_t domain; /**< The domain of the message */ char *fullmsg; /**< The message, with all decorations */ char *msg; /**< The content of the message */ } pending_log_message_t; /** Log messages waiting to be replayed onto callback-based logs */ static smartlist_t *pending_cb_messages = NULL; /** Log messages waiting to be replayed once the logging system is initialized. */ static smartlist_t *pending_startup_messages = NULL; /** Number of bytes of messages queued in pending_startup_messages. (This is * the length of the messages, not the number of bytes used to store * them.) */ static size_t pending_startup_messages_len; /** True iff we should store messages while waiting for the logs to get * configured. */ static int queue_startup_messages = 1; /** True iff __PRETTY_FUNCTION__ includes parenthesized arguments. */ static int pretty_fn_has_parens = 0; /** Don't store more than this many bytes of messages while waiting for the * logs to get configured. */ #define MAX_STARTUP_MSG_LEN (1<<16) /** Lock the log_mutex to prevent others from changing the logfile_t list */ #define LOCK_LOGS() STMT_BEGIN \ tor_mutex_acquire(&log_mutex); \ STMT_END /** Unlock the log_mutex */ #define UNLOCK_LOGS() STMT_BEGIN tor_mutex_release(&log_mutex); STMT_END /** What's the lowest log level anybody cares about? Checking this lets us * bail out early from log_debug if we aren't debugging. */ int log_global_min_severity_ = LOG_NOTICE; static void delete_log(logfile_t *victim); static void close_log(logfile_t *victim); static char *domain_to_string(log_domain_mask_t domain, char *buf, size_t buflen); static INLINE char *format_msg(char *buf, size_t buf_len, log_domain_mask_t domain, int severity, const char *funcname, const char *suffix, const char *format, va_list ap, size_t *msg_len_out) CHECK_PRINTF(7,0); /** Name of the application: used to generate the message we write at the * start of each new log. */ static char *appname = NULL; /** Set the "application name" for the logs to name: we'll use this * name in the message we write when starting up, and at the start of each new * log. * * Tor uses this string to write the version number to the log file. */ void log_set_application_name(const char *name) { tor_free(appname); appname = name ? tor_strdup(name) : NULL; } /** Log time granularity in milliseconds. */ static int log_time_granularity = 1; /** Define log time granularity for all logs to be granularity_msec * milliseconds. */ void set_log_time_granularity(int granularity_msec) { log_time_granularity = granularity_msec; } /** Helper: Write the standard prefix for log lines to a * buf_len character buffer in buf. */ static INLINE size_t log_prefix_(char *buf, size_t buf_len, int severity) { time_t t; struct timeval now; struct tm tm; size_t n; int r, ms; tor_gettimeofday(&now); t = (time_t)now.tv_sec; ms = (int)now.tv_usec / 1000; if (log_time_granularity >= 1000) { t -= t % (log_time_granularity / 1000); ms = 0; } else { ms -= ((int)now.tv_usec / 1000) % log_time_granularity; } n = strftime(buf, buf_len, "%b %d %H:%M:%S", tor_localtime_r(&t, &tm)); r = tor_snprintf(buf+n, buf_len-n, ".%.3i [%s] ", ms, sev_to_string(severity)); if (r<0) return buf_len-1; else return n+r; } /** If lf refers to an actual file that we have just opened, and the file * contains no data, log an "opening new logfile" message at the top. * * Return -1 if the log is broken and needs to be deleted, else return 0. */ static int log_tor_version(logfile_t *lf, int reset) { char buf[256]; size_t n; int is_new; if (!lf->needs_close) /* If it doesn't get closed, it isn't really a file. */ return 0; if (lf->is_temporary) /* If it's temporary, it isn't really a file. */ return 0; is_new = lf->fd >= 0 && tor_fd_getpos(lf->fd) == 0; if (reset && !is_new) /* We are resetting, but we aren't at the start of the file; no * need to log again. */ return 0; n = log_prefix_(buf, sizeof(buf), LOG_NOTICE); if (appname) { tor_snprintf(buf+n, sizeof(buf)-n, "%s opening %slog file.\n", appname, is_new?"new ":""); } else { tor_snprintf(buf+n, sizeof(buf)-n, "Tor %s opening %slog file.\n", VERSION, is_new?"new ":""); } if (write_all(lf->fd, buf, strlen(buf), 0) < 0) /* error */ return -1; /* failed */ return 0; } const char bug_suffix[] = " (on Tor " VERSION #ifndef _MSC_VER " " #include "micro-revision.i" #endif ")"; /** Helper: Format a log message into a fixed-sized buffer. (This is * factored out of logv so that we never format a message more * than once.) Return a pointer to the first character of the message * portion of the formatted string. */ static INLINE char * format_msg(char *buf, size_t buf_len, log_domain_mask_t domain, int severity, const char *funcname, const char *suffix, const char *format, va_list ap, size_t *msg_len_out) { size_t n; int r; char *end_of_prefix; char *buf_end; assert(buf_len >= 16); /* prevent integer underflow and general stupidity */ buf_len -= 2; /* subtract 2 characters so we have room for \n\0 */ buf_end = buf+buf_len; /* point *after* the last char we can write to */ n = log_prefix_(buf, buf_len, severity); end_of_prefix = buf+n; if (log_domains_are_logged) { char *cp = buf+n; if (cp == buf_end) goto format_msg_no_room_for_domains; *cp++ = '{'; if (cp == buf_end) goto format_msg_no_room_for_domains; cp = domain_to_string(domain, cp, (buf+buf_len-cp)); if (cp == buf_end) goto format_msg_no_room_for_domains; *cp++ = '}'; if (cp == buf_end) goto format_msg_no_room_for_domains; *cp++ = ' '; if (cp == buf_end) goto format_msg_no_room_for_domains; end_of_prefix = cp; n = cp-buf; format_msg_no_room_for_domains: /* This will leave end_of_prefix and n unchanged, and thus cause * whatever log domain string we had written to be clobbered. */ ; } if (funcname && should_log_function_name(domain, severity)) { r = tor_snprintf(buf+n, buf_len-n, pretty_fn_has_parens ? "%s: " : "%s(): ", funcname); if (r<0) n = strlen(buf); else n += r; } if (domain == LD_BUG && buf_len-n > 6) { memcpy(buf+n, "Bug: ", 6); n += 5; } r = tor_vsnprintf(buf+n,buf_len-n,format,ap); if (r < 0) { /* The message was too long; overwrite the end of the buffer with * "[...truncated]" */ if (buf_len >= TRUNCATED_STR_LEN) { size_t offset = buf_len-TRUNCATED_STR_LEN; /* We have an extra 2 characters after buf_len to hold the \n\0, * so it's safe to add 1 to the size here. */ strlcpy(buf+offset, TRUNCATED_STR, buf_len-offset+1); } /* Set 'n' to the end of the buffer, where we'll be writing \n\0. * Since we already subtracted 2 from buf_len, this is safe.*/ n = buf_len; } else { n += r; if (suffix) { size_t suffix_len = strlen(suffix); if (buf_len-n >= suffix_len) { memcpy(buf+n, suffix, suffix_len); n += suffix_len; } } } if (domain == LD_BUG && buf_len - n > strlen(bug_suffix)+1) { memcpy(buf+n, bug_suffix, strlen(bug_suffix)); n += strlen(bug_suffix); } buf[n]='\n'; buf[n+1]='\0'; *msg_len_out = n+1; return end_of_prefix; } /* Create a new pending_log_message_t with appropriate values */ static pending_log_message_t * pending_log_message_new(int severity, log_domain_mask_t domain, const char *fullmsg, const char *shortmsg) { pending_log_message_t *m = tor_malloc(sizeof(pending_log_message_t)); m->severity = severity; m->domain = domain; m->fullmsg = fullmsg ? tor_strdup(fullmsg) : NULL; m->msg = tor_strdup(shortmsg); return m; } /** Release all storage held by msg. */ static void pending_log_message_free(pending_log_message_t *msg) { if (!msg) return; tor_free(msg->msg); tor_free(msg->fullmsg); tor_free(msg); } /** Return true iff lf would like to receive a message with the * specified severity in the specified domain. */ static INLINE int logfile_wants_message(const logfile_t *lf, int severity, log_domain_mask_t domain) { if (! (lf->severities->masks[SEVERITY_MASK_IDX(severity)] & domain)) { return 0; } if (! (lf->fd >= 0 || lf->is_syslog || lf->callback)) { return 0; } if (lf->seems_dead) { return 0; } return 1; } /** Send a message to lf. The full message, with time prefix and * severity, is in buf. The message itself is in * msg_after_prefix. If callbacks_deferred points to true, then * we already deferred this message for pending callbacks and don't need to do * it again. Otherwise, if we need to do it, do it, and set * callbacks_deferred to 1. */ static INLINE void logfile_deliver(logfile_t *lf, const char *buf, size_t msg_len, const char *msg_after_prefix, log_domain_mask_t domain, int severity, int *callbacks_deferred) { if (lf->is_syslog) { #ifdef HAVE_SYSLOG_H #ifdef MAXLINE /* Some syslog implementations have limits on the length of what you can * pass them, and some very old ones do not detect overflow so well. * Regrettably, they call their maximum line length MAXLINE. */ #if MAXLINE < 64 #warn "MAXLINE is a very low number; it might not be from syslog.h after all" #endif char *m = msg_after_prefix; if (msg_len >= MAXLINE) m = tor_strndup(msg_after_prefix, MAXLINE-1); syslog(severity, "%s", m); if (m != msg_after_prefix) { tor_free(m); } #else /* We have syslog but not MAXLINE. That's promising! */ syslog(severity, "%s", msg_after_prefix); #endif #endif } else if (lf->callback) { if (domain & LD_NOCB) { if (!*callbacks_deferred && pending_cb_messages) { smartlist_add(pending_cb_messages, pending_log_message_new(severity,domain,NULL,msg_after_prefix)); *callbacks_deferred = 1; } } else { lf->callback(severity, domain, msg_after_prefix); } } else { if (write_all(lf->fd, buf, msg_len, 0) < 0) { /* error */ /* don't log the error! mark this log entry to be blown away, and * continue. */ lf->seems_dead = 1; } } } /** Helper: sends a message to the appropriate logfiles, at loglevel * severity. If provided, funcname is prepended to the * message. The actual message is derived as from tor_snprintf(format,ap). */ MOCK_IMPL(STATIC void, logv,(int severity, log_domain_mask_t domain, const char *funcname, const char *suffix, const char *format, va_list ap)) { char buf[10240]; size_t msg_len = 0; int formatted = 0; logfile_t *lf; char *end_of_prefix=NULL; int callbacks_deferred = 0; /* Call assert, not tor_assert, since tor_assert calls log on failure. */ assert(format); /* check that severity is sane. Overrunning the masks array leads to * interesting and hard to diagnose effects */ assert(severity >= LOG_ERR && severity <= LOG_DEBUG); LOCK_LOGS(); if ((! (domain & LD_NOCB)) && smartlist_len(pending_cb_messages)) flush_pending_log_callbacks(); if (queue_startup_messages && pending_startup_messages_len < MAX_STARTUP_MSG_LEN) { end_of_prefix = format_msg(buf, sizeof(buf), domain, severity, funcname, suffix, format, ap, &msg_len); formatted = 1; smartlist_add(pending_startup_messages, pending_log_message_new(severity,domain,buf,end_of_prefix)); pending_startup_messages_len += msg_len; } for (lf = logfiles; lf; lf = lf->next) { if (! logfile_wants_message(lf, severity, domain)) continue; if (!formatted) { end_of_prefix = format_msg(buf, sizeof(buf), domain, severity, funcname, suffix, format, ap, &msg_len); formatted = 1; } logfile_deliver(lf, buf, msg_len, end_of_prefix, domain, severity, &callbacks_deferred); } UNLOCK_LOGS(); } /** Output a message to the log. It gets logged to all logfiles that * care about messages with severity in domain. The content * is formatted printf-style based on format and extra arguments. * */ void tor_log(int severity, log_domain_mask_t domain, const char *format, ...) { va_list ap; if (severity > log_global_min_severity_) return; va_start(ap,format); logv(severity, domain, NULL, NULL, format, ap); va_end(ap); } /** Maximum number of fds that will get notifications if we crash */ #define MAX_SIGSAFE_FDS 8 /** Array of fds to log crash-style warnings to. */ static int sigsafe_log_fds[MAX_SIGSAFE_FDS] = { STDERR_FILENO }; /** The number of elements used in sigsafe_log_fds */ static int n_sigsafe_log_fds = 1; /** Write s to each element of sigsafe_log_fds. Return 0 on success, -1 * on failure. */ static int tor_log_err_sigsafe_write(const char *s) { int i; ssize_t r; size_t len = strlen(s); int err = 0; for (i=0; i < n_sigsafe_log_fds; ++i) { r = write(sigsafe_log_fds[i], s, len); err += (r != (ssize_t)len); } return err ? -1 : 0; } /** Given a list of string arguments ending with a NULL, writes them * to our logs and to stderr (if possible). This function is safe to call * from within a signal handler. */ void tor_log_err_sigsafe(const char *m, ...) { va_list ap; const char *x; char timebuf[33]; time_t now = time(NULL); if (!m) return; if (log_time_granularity >= 2000) { int g = log_time_granularity / 1000; now -= now % g; } timebuf[0] = now < 0 ? '-' : ' '; if (now < 0) now = -now; timebuf[1] = '\0'; format_dec_number_sigsafe(now, timebuf+1, sizeof(timebuf)-1); tor_log_err_sigsafe_write("\n==========================================" "================== T="); tor_log_err_sigsafe_write(timebuf); tor_log_err_sigsafe_write("\n"); tor_log_err_sigsafe_write(m); va_start(ap, m); while ((x = va_arg(ap, const char*))) { tor_log_err_sigsafe_write(x); } va_end(ap); } /** Set *out to a pointer to an array of the fds to log errors to from * inside a signal handler. Return the number of elements in the array. */ int tor_log_get_sigsafe_err_fds(const int **out) { *out = sigsafe_log_fds; return n_sigsafe_log_fds; } /** Helper function; return true iff the n-element array array * contains item. */ static int int_array_contains(const int *array, int n, int item) { int j; for (j = 0; j < n; ++j) { if (array[j] == item) return 1; } return 0; } /** Function to call whenever the list of logs changes to get ready to log * from signal handlers. */ void tor_log_update_sigsafe_err_fds(void) { const logfile_t *lf; int found_real_stderr = 0; LOCK_LOGS(); /* Reserve the first one for stderr. This is safe because when we daemonize, * we dup2 /dev/null to stderr, */ sigsafe_log_fds[0] = STDERR_FILENO; n_sigsafe_log_fds = 1; for (lf = logfiles; lf; lf = lf->next) { /* Don't try callback to the control port, or syslogs: We can't * do them from a signal handler. Don't try stdout: we always do stderr. */ if (lf->is_temporary || lf->is_syslog || lf->callback || lf->seems_dead || lf->fd < 0) continue; if (lf->severities->masks[SEVERITY_MASK_IDX(LOG_ERR)] & (LD_BUG|LD_GENERAL)) { if (lf->fd == STDERR_FILENO) found_real_stderr = 1; /* Avoid duplicates */ if (int_array_contains(sigsafe_log_fds, n_sigsafe_log_fds, lf->fd)) continue; sigsafe_log_fds[n_sigsafe_log_fds++] = lf->fd; if (n_sigsafe_log_fds == MAX_SIGSAFE_FDS) break; } } if (!found_real_stderr && int_array_contains(sigsafe_log_fds, n_sigsafe_log_fds, STDOUT_FILENO)) { /* Don't use a virtual stderr when we're also logging to stdout. */ assert(n_sigsafe_log_fds >= 2); /* Don't use assert inside log functions*/ sigsafe_log_fds[0] = sigsafe_log_fds[--n_sigsafe_log_fds]; } UNLOCK_LOGS(); } /** Add to out a copy of every currently configured log file name. Used * to enable access to these filenames with the sandbox code. */ void tor_log_get_logfile_names(smartlist_t *out) { logfile_t *lf; tor_assert(out); LOCK_LOGS(); for (lf = logfiles; lf; lf = lf->next) { if (lf->is_temporary || lf->is_syslog || lf->callback) continue; if (lf->filename == NULL) continue; smartlist_add(out, tor_strdup(lf->filename)); } UNLOCK_LOGS(); } /** Implementation of the log_fn backend, used when we have * variadic macros. All arguments are as for log_fn, except for * fn, which is the name of the calling functions. */ void log_fn_(int severity, log_domain_mask_t domain, const char *fn, const char *format, ...) { va_list ap; if (severity > log_global_min_severity_) return; va_start(ap,format); logv(severity, domain, fn, NULL, format, ap); va_end(ap); } void log_fn_ratelim_(ratelim_t *ratelim, int severity, log_domain_mask_t domain, const char *fn, const char *format, ...) { va_list ap; char *m; if (severity > log_global_min_severity_) return; m = rate_limit_log(ratelim, approx_time()); if (m == NULL) return; va_start(ap, format); logv(severity, domain, fn, m, format, ap); va_end(ap); tor_free(m); } /** Free all storage held by victim. */ static void log_free(logfile_t *victim) { if (!victim) return; tor_free(victim->severities); tor_free(victim->filename); tor_free(victim); } /** Close all open log files, and free other static memory. */ void logs_free_all(void) { logfile_t *victim, *next; smartlist_t *messages, *messages2; LOCK_LOGS(); next = logfiles; logfiles = NULL; messages = pending_cb_messages; pending_cb_messages = NULL; messages2 = pending_startup_messages; pending_startup_messages = NULL; UNLOCK_LOGS(); while (next) { victim = next; next = next->next; close_log(victim); log_free(victim); } tor_free(appname); SMARTLIST_FOREACH(messages, pending_log_message_t *, msg, { pending_log_message_free(msg); }); smartlist_free(messages); if (messages2) { SMARTLIST_FOREACH(messages2, pending_log_message_t *, msg, { pending_log_message_free(msg); }); smartlist_free(messages2); } /* We _could_ destroy the log mutex here, but that would screw up any logs * that happened between here and the end of execution. */ } /** Remove and free the log entry victim from the linked-list * logfiles (it is probably present, but it might not be due to thread * racing issues). After this function is called, the caller shouldn't * refer to victim anymore. * * Long-term, we need to do something about races in the log subsystem * in general. See bug 222 for more details. */ static void delete_log(logfile_t *victim) { logfile_t *tmpl; if (victim == logfiles) logfiles = victim->next; else { for (tmpl = logfiles; tmpl && tmpl->next != victim; tmpl=tmpl->next) ; // tor_assert(tmpl); // tor_assert(tmpl->next == victim); if (!tmpl) return; tmpl->next = victim->next; } log_free(victim); } /** Helper: release system resources (but not memory) held by a single * logfile_t. */ static void close_log(logfile_t *victim) { if (victim->needs_close && victim->fd >= 0) { close(victim->fd); victim->fd = -1; } else if (victim->is_syslog) { #ifdef HAVE_SYSLOG_H if (--syslog_count == 0) { /* There are no other syslogs; close the logging facility. */ closelog(); } #endif } } /** Adjust a log severity configuration in severity_out to contain * every domain between loglevelMin and loglevelMax, inclusive. */ void set_log_severity_config(int loglevelMin, int loglevelMax, log_severity_list_t *severity_out) { int i; tor_assert(loglevelMin >= loglevelMax); tor_assert(loglevelMin >= LOG_ERR && loglevelMin <= LOG_DEBUG); tor_assert(loglevelMax >= LOG_ERR && loglevelMax <= LOG_DEBUG); memset(severity_out, 0, sizeof(log_severity_list_t)); for (i = loglevelMin; i >= loglevelMax; --i) { severity_out->masks[SEVERITY_MASK_IDX(i)] = ~0u; } } /** Add a log handler named name to send all messages in severity * to fd. Copies severity. Helper: does no locking. */ static void add_stream_log_impl(const log_severity_list_t *severity, const char *name, int fd) { logfile_t *lf; lf = tor_malloc_zero(sizeof(logfile_t)); lf->fd = fd; lf->filename = tor_strdup(name); lf->severities = tor_memdup(severity, sizeof(log_severity_list_t)); lf->next = logfiles; logfiles = lf; log_global_min_severity_ = get_min_log_level(); } /** Add a log handler named name to send all messages in severity * to fd. Steals a reference to severity; the caller must * not use it after calling this function. */ void add_stream_log(const log_severity_list_t *severity, const char *name, int fd) { LOCK_LOGS(); add_stream_log_impl(severity, name, fd); UNLOCK_LOGS(); } /** Initialize the global logging facility */ void init_logging(int disable_startup_queue) { if (!log_mutex_initialized) { tor_mutex_init(&log_mutex); log_mutex_initialized = 1; } #ifdef __GNUC__ if (strchr(__PRETTY_FUNCTION__, '(')) { pretty_fn_has_parens = 1; } #endif if (pending_cb_messages == NULL) pending_cb_messages = smartlist_new(); if (disable_startup_queue) queue_startup_messages = 0; if (pending_startup_messages == NULL && queue_startup_messages) { pending_startup_messages = smartlist_new(); } } /** Set whether we report logging domains as a part of our log messages. */ void logs_set_domain_logging(int enabled) { LOCK_LOGS(); log_domains_are_logged = enabled; UNLOCK_LOGS(); } /** Add a log handler to receive messages during startup (before the real * logs are initialized). */ void add_temp_log(int min_severity) { log_severity_list_t *s = tor_malloc_zero(sizeof(log_severity_list_t)); set_log_severity_config(min_severity, LOG_ERR, s); LOCK_LOGS(); add_stream_log_impl(s, "", fileno(stdout)); tor_free(s); logfiles->is_temporary = 1; UNLOCK_LOGS(); } /** * Add a log handler to send messages in severity * to the function cb. */ int add_callback_log(const log_severity_list_t *severity, log_callback cb) { logfile_t *lf; lf = tor_malloc_zero(sizeof(logfile_t)); lf->fd = -1; lf->severities = tor_memdup(severity, sizeof(log_severity_list_t)); lf->filename = tor_strdup(""); lf->callback = cb; lf->next = logfiles; LOCK_LOGS(); logfiles = lf; log_global_min_severity_ = get_min_log_level(); UNLOCK_LOGS(); return 0; } /** Adjust the configured severity of any logs whose callback function is * cb. */ void change_callback_log_severity(int loglevelMin, int loglevelMax, log_callback cb) { logfile_t *lf; log_severity_list_t severities; set_log_severity_config(loglevelMin, loglevelMax, &severities); LOCK_LOGS(); for (lf = logfiles; lf; lf = lf->next) { if (lf->callback == cb) { memcpy(lf->severities, &severities, sizeof(severities)); } } log_global_min_severity_ = get_min_log_level(); UNLOCK_LOGS(); } /** If there are any log messages that were generated with LD_NOCB waiting to * be sent to callback-based loggers, send them now. */ void flush_pending_log_callbacks(void) { logfile_t *lf; smartlist_t *messages, *messages_tmp; LOCK_LOGS(); if (0 == smartlist_len(pending_cb_messages)) { UNLOCK_LOGS(); return; } messages = pending_cb_messages; pending_cb_messages = smartlist_new(); do { SMARTLIST_FOREACH_BEGIN(messages, pending_log_message_t *, msg) { const int severity = msg->severity; const int domain = msg->domain; for (lf = logfiles; lf; lf = lf->next) { if (! lf->callback || lf->seems_dead || ! (lf->severities->masks[SEVERITY_MASK_IDX(severity)] & domain)) { continue; } lf->callback(severity, domain, msg->msg); } pending_log_message_free(msg); } SMARTLIST_FOREACH_END(msg); smartlist_clear(messages); messages_tmp = pending_cb_messages; pending_cb_messages = messages; messages = messages_tmp; } while (smartlist_len(messages)); smartlist_free(messages); UNLOCK_LOGS(); } /** Flush all the messages we stored from startup while waiting for log * initialization. */ void flush_log_messages_from_startup(void) { logfile_t *lf; LOCK_LOGS(); queue_startup_messages = 0; pending_startup_messages_len = 0; if (! pending_startup_messages) goto out; SMARTLIST_FOREACH_BEGIN(pending_startup_messages, pending_log_message_t *, msg) { int callbacks_deferred = 0; for (lf = logfiles; lf; lf = lf->next) { if (! logfile_wants_message(lf, msg->severity, msg->domain)) continue; /* We configure a temporary startup log that goes to stdout, so we * shouldn't replay to stdout/stderr*/ if (lf->fd == STDOUT_FILENO || lf->fd == STDERR_FILENO) { continue; } logfile_deliver(lf, msg->fullmsg, strlen(msg->fullmsg), msg->msg, msg->domain, msg->severity, &callbacks_deferred); } pending_log_message_free(msg); } SMARTLIST_FOREACH_END(msg); smartlist_free(pending_startup_messages); pending_startup_messages = NULL; out: UNLOCK_LOGS(); } /** Close any log handlers added by add_temp_log() or marked by * mark_logs_temp(). */ void close_temp_logs(void) { logfile_t *lf, **p; LOCK_LOGS(); for (p = &logfiles; *p; ) { if ((*p)->is_temporary) { lf = *p; /* we use *p here to handle the edge case of the head of the list */ *p = (*p)->next; close_log(lf); log_free(lf); } else { p = &((*p)->next); } } log_global_min_severity_ = get_min_log_level(); UNLOCK_LOGS(); } /** Make all currently temporary logs (set to be closed by close_temp_logs) * live again, and close all non-temporary logs. */ void rollback_log_changes(void) { logfile_t *lf; LOCK_LOGS(); for (lf = logfiles; lf; lf = lf->next) lf->is_temporary = ! lf->is_temporary; UNLOCK_LOGS(); close_temp_logs(); } /** Configure all log handles to be closed by close_temp_logs(). */ void mark_logs_temp(void) { logfile_t *lf; LOCK_LOGS(); for (lf = logfiles; lf; lf = lf->next) lf->is_temporary = 1; UNLOCK_LOGS(); } /** * Add a log handler to send messages to filename. If opening the * logfile fails, -1 is returned and errno is set appropriately (by open(2)). */ int add_file_log(const log_severity_list_t *severity, const char *filename, const int truncate) { int fd; logfile_t *lf; int open_flags = O_WRONLY|O_CREAT; open_flags |= truncate ? O_TRUNC : O_APPEND; fd = tor_open_cloexec(filename, open_flags, 0644); if (fd<0) return -1; if (tor_fd_seekend(fd)<0) { close(fd); return -1; } LOCK_LOGS(); add_stream_log_impl(severity, filename, fd); logfiles->needs_close = 1; lf = logfiles; log_global_min_severity_ = get_min_log_level(); if (log_tor_version(lf, 0) < 0) { delete_log(lf); } UNLOCK_LOGS(); return 0; } #ifdef HAVE_SYSLOG_H /** * Add a log handler to send messages to they system log facility. */ int add_syslog_log(const log_severity_list_t *severity) { logfile_t *lf; if (syslog_count++ == 0) /* This is the first syslog. */ openlog("Tor", LOG_PID | LOG_NDELAY, LOGFACILITY); lf = tor_malloc_zero(sizeof(logfile_t)); lf->fd = -1; lf->severities = tor_memdup(severity, sizeof(log_severity_list_t)); lf->filename = tor_strdup(""); lf->is_syslog = 1; LOCK_LOGS(); lf->next = logfiles; logfiles = lf; log_global_min_severity_ = get_min_log_level(); UNLOCK_LOGS(); return 0; } #endif /** If level is a valid log severity, return the corresponding * numeric value. Otherwise, return -1. */ int parse_log_level(const char *level) { if (!strcasecmp(level, "err")) return LOG_ERR; if (!strcasecmp(level, "warn")) return LOG_WARN; if (!strcasecmp(level, "notice")) return LOG_NOTICE; if (!strcasecmp(level, "info")) return LOG_INFO; if (!strcasecmp(level, "debug")) return LOG_DEBUG; return -1; } /** Return the string equivalent of a given log level. */ const char * log_level_to_string(int level) { return sev_to_string(level); } /** NULL-terminated array of names for log domains such that domain_list[dom] * is a description of dom. */ static const char *domain_list[] = { "GENERAL", "CRYPTO", "NET", "CONFIG", "FS", "PROTOCOL", "MM", "HTTP", "APP", "CONTROL", "CIRC", "REND", "BUG", "DIR", "DIRSERV", "OR", "EDGE", "ACCT", "HIST", "HANDSHAKE", "HEARTBEAT", "CHANNEL", "SCHED", NULL }; /** Return a bitmask for the log domain for which domain is the name, * or 0 if there is no such name. */ static log_domain_mask_t parse_log_domain(const char *domain) { int i; for (i=0; domain_list[i]; ++i) { if (!strcasecmp(domain, domain_list[i])) return (1u<= ARRAY_LENGTH(domain_list)-1 || bit >= N_LOGGING_DOMAINS) { tor_snprintf(buf, buflen, "", (long)domain); return buf+strlen(buf); } d = domain_list[bit]; n = strlcpy(cp, d, eos-cp); if (n >= buflen) { tor_snprintf(buf, buflen, "", (long)domain); return buf+strlen(buf); } cp += n; domain &= ~(1<cfg_ptr. Advance cfg_ptr after * the end of the severityPattern. Set the value of severity_out to * the parsed pattern. Return 0 on success, -1 on failure. * * The syntax for a SeverityPattern is: *
 *   SeverityPattern = *(DomainSeverity SP)* DomainSeverity
 *   DomainSeverity = (DomainList SP)? SeverityRange
 *   SeverityRange = MinSeverity ("-" MaxSeverity )?
 *   DomainList = "[" (SP? DomainSpec SP? ",") SP? DomainSpec "]"
 *   DomainSpec = "*" | Domain | "~" Domain
 * 
* A missing MaxSeverity defaults to ERR. Severities and domains are * case-insensitive. "~" indicates negation for a domain; negation happens * last inside a DomainList. Only one SeverityRange without a DomainList is * allowed per line. */ int parse_log_severity_config(const char **cfg_ptr, log_severity_list_t *severity_out) { const char *cfg = *cfg_ptr; int got_anything = 0; int got_an_unqualified_range = 0; memset(severity_out, 0, sizeof(*severity_out)); cfg = eat_whitespace(cfg); while (*cfg) { const char *dash, *space; char *sev_lo, *sev_hi; int low, high, i; log_domain_mask_t domains = ~0u; if (*cfg == '[') { int err = 0; char *domains_str; smartlist_t *domains_list; log_domain_mask_t neg_domains = 0; const char *closebracket = strchr(cfg, ']'); if (!closebracket) return -1; domains = 0; domains_str = tor_strndup(cfg+1, closebracket-cfg-1); domains_list = smartlist_new(); smartlist_split_string(domains_list, domains_str, ",", SPLIT_SKIP_SPACE, -1); tor_free(domains_str); SMARTLIST_FOREACH_BEGIN(domains_list, const char *, domain) { if (!strcmp(domain, "*")) { domains = ~0u; } else { int d; int negate=0; if (*domain == '~') { negate = 1; ++domain; } d = parse_log_domain(domain); if (!d) { log_warn(LD_CONFIG, "No such logging domain as %s", domain); err = 1; } else { if (negate) neg_domains |= d; else domains |= d; } } } SMARTLIST_FOREACH_END(domain); SMARTLIST_FOREACH(domains_list, char *, d, tor_free(d)); smartlist_free(domains_list); if (err) return -1; if (domains == 0 && neg_domains) domains = ~neg_domains; else domains &= ~neg_domains; cfg = eat_whitespace(closebracket+1); } else { ++got_an_unqualified_range; } if (!strcasecmpstart(cfg, "file") || !strcasecmpstart(cfg, "stderr") || !strcasecmpstart(cfg, "stdout") || !strcasecmpstart(cfg, "syslog")) { goto done; } if (got_an_unqualified_range > 1) return -1; space = strchr(cfg, ' '); dash = strchr(cfg, '-'); if (!space) space = strchr(cfg, '\0'); if (dash && dash < space) { sev_lo = tor_strndup(cfg, dash-cfg); sev_hi = tor_strndup(dash+1, space-(dash+1)); } else { sev_lo = tor_strndup(cfg, space-cfg); sev_hi = tor_strdup("ERR"); } low = parse_log_level(sev_lo); high = parse_log_level(sev_hi); tor_free(sev_lo); tor_free(sev_hi); if (low == -1) return -1; if (high == -1) return -1; got_anything = 1; for (i=low; i >= high; --i) severity_out->masks[SEVERITY_MASK_IDX(i)] |= domains; cfg = eat_whitespace(space); } done: *cfg_ptr = cfg; return got_anything ? 0 : -1; } /** Return the least severe log level that any current log is interested in. */ int get_min_log_level(void) { logfile_t *lf; int i; int min = LOG_ERR; for (lf = logfiles; lf; lf = lf->next) { for (i = LOG_DEBUG; i > min; --i) if (lf->severities->masks[SEVERITY_MASK_IDX(i)]) min = i; } return min; } /** Switch all logs to output at most verbose level. */ void switch_logs_debug(void) { logfile_t *lf; int i; LOCK_LOGS(); for (lf = logfiles; lf; lf=lf->next) { for (i = LOG_DEBUG; i >= LOG_ERR; --i) lf->severities->masks[SEVERITY_MASK_IDX(i)] = ~0u; } log_global_min_severity_ = get_min_log_level(); UNLOCK_LOGS(); } /** Truncate all the log files. */ void truncate_logs(void) { logfile_t *lf; for (lf = logfiles; lf; lf = lf->next) { if (lf->fd >= 0) { tor_ftruncate(lf->fd); } } } tor-0.2.7.6/src/common/compat_winthreads.c0000644000175000017500000001255112621363245015357 00000000000000/* Copyright (c) 2003-2004, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifdef _WIN32 #include "compat.h" #include #include #include "util.h" #include "container.h" #include "torlog.h" #include /* This value is more or less total cargo-cult */ #define SPIN_COUNT 2000 /** Minimalist interface to run a void function in the background. On * Unix calls fork, on win32 calls beginthread. Returns -1 on failure. * func should not return, but rather should call spawn_exit. * * NOTE: if data is used, it should not be allocated on the stack, * since in a multithreaded environment, there is no way to be sure that * the caller's stack will still be around when the called function is * running. */ int spawn_func(void (*func)(void *), void *data) { int rv; rv = (int)_beginthread(func, 0, data); if (rv == (int)-1) return -1; return 0; } /** End the current thread/process. */ void spawn_exit(void) { _endthread(); //we should never get here. my compiler thinks that _endthread returns, this //is an attempt to fool it. tor_assert(0); _exit(0); } void tor_mutex_init(tor_mutex_t *m) { InitializeCriticalSection(&m->mutex); } void tor_mutex_init_nonrecursive(tor_mutex_t *m) { InitializeCriticalSection(&m->mutex); } void tor_mutex_uninit(tor_mutex_t *m) { DeleteCriticalSection(&m->mutex); } void tor_mutex_acquire(tor_mutex_t *m) { tor_assert(m); EnterCriticalSection(&m->mutex); } void tor_mutex_release(tor_mutex_t *m) { LeaveCriticalSection(&m->mutex); } unsigned long tor_get_thread_id(void) { return (unsigned long)GetCurrentThreadId(); } int tor_cond_init(tor_cond_t *cond) { memset(cond, 0, sizeof(tor_cond_t)); if (InitializeCriticalSectionAndSpinCount(&cond->lock, SPIN_COUNT)==0) { return -1; } if ((cond->event = CreateEvent(NULL,TRUE,FALSE,NULL)) == NULL) { DeleteCriticalSection(&cond->lock); return -1; } cond->n_waiting = cond->n_to_wake = cond->generation = 0; return 0; } void tor_cond_uninit(tor_cond_t *cond) { DeleteCriticalSection(&cond->lock); CloseHandle(cond->event); } static void tor_cond_signal_impl(tor_cond_t *cond, int broadcast) { EnterCriticalSection(&cond->lock); if (broadcast) cond->n_to_wake = cond->n_waiting; else ++cond->n_to_wake; cond->generation++; SetEvent(cond->event); LeaveCriticalSection(&cond->lock); } void tor_cond_signal_one(tor_cond_t *cond) { tor_cond_signal_impl(cond, 0); } void tor_cond_signal_all(tor_cond_t *cond) { tor_cond_signal_impl(cond, 1); } int tor_threadlocal_init(tor_threadlocal_t *threadlocal) { threadlocal->index = TlsAlloc(); return (threadlocal->index == TLS_OUT_OF_INDEXES) ? -1 : 0; } void tor_threadlocal_destroy(tor_threadlocal_t *threadlocal) { TlsFree(threadlocal->index); memset(threadlocal, 0, sizeof(tor_threadlocal_t)); } void * tor_threadlocal_get(tor_threadlocal_t *threadlocal) { void *value = TlsGetValue(threadlocal->index); if (value == NULL) { DWORD err = GetLastError(); if (err != ERROR_SUCCESS) { char *msg = format_win32_error(err); log_err(LD_GENERAL, "Error retrieving thread-local value: %s", msg); tor_free(msg); tor_assert(err == ERROR_SUCCESS); } } return value; } void tor_threadlocal_set(tor_threadlocal_t *threadlocal, void *value) { BOOL ok = TlsSetValue(threadlocal->index, value); if (!ok) { DWORD err = GetLastError(); char *msg = format_win32_error(err); log_err(LD_GENERAL, "Error adjusting thread-local value: %s", msg); tor_free(msg); tor_assert(ok); } } int tor_cond_wait(tor_cond_t *cond, tor_mutex_t *lock_, const struct timeval *tv) { CRITICAL_SECTION *lock = &lock_->mutex; int generation_at_start; int waiting = 1; int result = -1; DWORD ms = INFINITE, ms_orig = INFINITE, startTime, endTime; if (tv) ms_orig = ms = tv->tv_sec*1000 + (tv->tv_usec+999)/1000; EnterCriticalSection(&cond->lock); ++cond->n_waiting; generation_at_start = cond->generation; LeaveCriticalSection(&cond->lock); LeaveCriticalSection(lock); startTime = GetTickCount(); do { DWORD res; res = WaitForSingleObject(cond->event, ms); EnterCriticalSection(&cond->lock); if (cond->n_to_wake && cond->generation != generation_at_start) { --cond->n_to_wake; --cond->n_waiting; result = 0; waiting = 0; goto out; } else if (res != WAIT_OBJECT_0) { result = (res==WAIT_TIMEOUT) ? 1 : -1; --cond->n_waiting; waiting = 0; goto out; } else if (ms != INFINITE) { endTime = GetTickCount(); if (startTime + ms_orig <= endTime) { result = 1; /* Timeout */ --cond->n_waiting; waiting = 0; goto out; } else { ms = startTime + ms_orig - endTime; } } /* If we make it here, we are still waiting. */ if (cond->n_to_wake == 0) { /* There is nobody else who should wake up; reset * the event. */ ResetEvent(cond->event); } out: LeaveCriticalSection(&cond->lock); } while (waiting); EnterCriticalSection(lock); EnterCriticalSection(&cond->lock); if (!cond->n_waiting) ResetEvent(cond->event); LeaveCriticalSection(&cond->lock); return result; } void tor_threads_init(void) { set_main_thread(); } #endif tor-0.2.7.6/src/common/compat.c0000644000175000017500000027660212631612325013135 00000000000000/* Copyright (c) 2003-2004, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file compat.c * \brief Wrappers to make calls more portable. This code defines * functions such as tor_malloc, tor_snprintf, get/set various data types, * renaming, setting socket options, switching user IDs. It is basically * where the non-portable items are conditionally included depending on * the platform. **/ /* This is required on rh7 to make strptime not complain. * We also need it to make memmem get defined (where available) */ /* XXXX024 We should just use AC_USE_SYSTEM_EXTENSIONS in our autoconf, * and get this (and other important stuff!) automatically. Once we do that, * make sure to also change the extern char **environ detection in * configure.ac, because whether that is declared or not depends on whether * we have _GNU_SOURCE defined! Maybe that means that once we take this out, * we can also take out the configure check. */ #define _GNU_SOURCE #define COMPAT_PRIVATE #include "compat.h" #ifdef _WIN32 #include #include #include #endif #ifdef HAVE_UNAME #include #endif #ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_SYS_SYSCTL_H #include #endif #ifdef HAVE_SYS_STAT_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_SYS_FCNTL_H #include #endif #ifdef HAVE_PWD_H #include #endif #ifdef HAVE_GRP_H #include #endif #ifdef HAVE_FCNTL_H #include #endif #ifdef HAVE_ERRNO_H #include #endif #ifdef HAVE_ARPA_INET_H #include #endif #ifdef HAVE_CRT_EXTERNS_H #include #endif #ifdef HAVE_SYS_STATVFS_H #include #endif #ifdef _WIN32 #include #include /* Some mingw headers lack these. :p */ #if defined(HAVE_DECL__GETWCH) && !HAVE_DECL__GETWCH wint_t _getwch(void); #endif #ifndef WEOF #define WEOF (wchar_t)(0xFFFF) #endif #if defined(HAVE_DECL_SECUREZEROMEMORY) && !HAVE_DECL_SECUREZEROMEMORY static inline void SecureZeroMemory(PVOID ptr, SIZE_T cnt) { volatile char *vcptr = (volatile char*)ptr; while (cnt--) *vcptr++ = 0; } #endif #elif defined(HAVE_READPASSPHRASE_H) #include #else #include "tor_readpassphrase.h" #endif #ifndef HAVE_GETTIMEOFDAY #ifdef HAVE_FTIME #include #endif #endif /* Includes for the process attaching prevention */ #if defined(HAVE_SYS_PRCTL_H) && defined(__linux__) /* Only use the linux prctl; the IRIX prctl is totally different */ #include #elif defined(__APPLE__) #include #include #endif #ifdef HAVE_NETDB_H #include #endif #ifdef HAVE_SYS_PARAM_H #include /* FreeBSD needs this to know what version it is */ #endif #include #include #include #ifdef HAVE_SIGNAL_H #include #endif #ifdef HAVE_UTIME_H #include #endif #ifdef HAVE_SYS_UTIME_H #include #endif #ifdef HAVE_SYS_MMAN_H #include #endif #ifdef HAVE_SYS_SYSLIMITS_H #include #endif #ifdef HAVE_SYS_FILE_H #include #endif #ifdef TOR_UNIT_TESTS #if !defined(HAVE_USLEEP) && defined(HAVE_SYS_SELECT_H) /* as fallback implementation for tor_sleep_msec */ #include #endif #endif #include "torlog.h" #include "util.h" #include "container.h" #include "address.h" #include "sandbox.h" /* Inline the strl functions if the platform doesn't have them. */ #ifndef HAVE_STRLCPY #include "strlcpy.c" #endif #ifndef HAVE_STRLCAT #include "strlcat.c" #endif /* When set_max_file_descriptors() is called, update this with the max file * descriptor value so we can use it to check the limit when opening a new * socket. Default value is what Debian sets as the default hard limit. */ static int max_sockets = 1024; /** As open(path, flags, mode), but return an fd with the close-on-exec mode * set. */ int tor_open_cloexec(const char *path, int flags, unsigned mode) { int fd; const char *p = sandbox_intern_string(path); #ifdef O_CLOEXEC fd = open(p, flags|O_CLOEXEC, mode); if (fd >= 0) return fd; /* If we got an error, see if it is EINVAL. EINVAL might indicate that, * even though we were built on a system with O_CLOEXEC support, we * are running on one without. */ if (errno != EINVAL) return -1; #endif log_debug(LD_FS, "Opening %s with flags %x", p, flags); fd = open(p, flags, mode); #ifdef FD_CLOEXEC if (fd >= 0) { if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1) { log_warn(LD_FS,"Couldn't set FD_CLOEXEC: %s", strerror(errno)); close(fd); return -1; } } #endif return fd; } /** As fopen(path,mode), but ensures that the O_CLOEXEC bit is set on the * underlying file handle. */ FILE * tor_fopen_cloexec(const char *path, const char *mode) { FILE *result = fopen(path, mode); #ifdef FD_CLOEXEC if (result != NULL) { if (fcntl(fileno(result), F_SETFD, FD_CLOEXEC) == -1) { log_warn(LD_FS,"Couldn't set FD_CLOEXEC: %s", strerror(errno)); fclose(result); return NULL; } } #endif return result; } /** As rename(), but work correctly with the sandbox. */ int tor_rename(const char *path_old, const char *path_new) { log_debug(LD_FS, "Renaming %s to %s", path_old, path_new); return rename(sandbox_intern_string(path_old), sandbox_intern_string(path_new)); } #if defined(HAVE_SYS_MMAN_H) || defined(RUNNING_DOXYGEN) /** Try to create a memory mapping for filename and return it. On * failure, return NULL. Sets errno properly, using ERANGE to mean * "empty file". */ tor_mmap_t * tor_mmap_file(const char *filename) { int fd; /* router file */ char *string; int page_size, result; tor_mmap_t *res; size_t size, filesize; struct stat st; tor_assert(filename); fd = tor_open_cloexec(filename, O_RDONLY, 0); if (fd<0) { int save_errno = errno; int severity = (errno == ENOENT) ? LOG_INFO : LOG_WARN; log_fn(severity, LD_FS,"Could not open \"%s\" for mmap(): %s",filename, strerror(errno)); errno = save_errno; return NULL; } /* Get the size of the file */ result = fstat(fd, &st); if (result != 0) { int save_errno = errno; log_warn(LD_FS, "Couldn't fstat opened descriptor for \"%s\" during mmap: %s", filename, strerror(errno)); close(fd); errno = save_errno; return NULL; } size = filesize = (size_t)(st.st_size); /* * Should we check for weird crap like mmapping a named pipe here, * or just wait for if (!size) below to fail? */ /* ensure page alignment */ page_size = getpagesize(); size += (size%page_size) ? page_size-(size%page_size) : 0; if (!size) { /* Zero-length file. If we call mmap on it, it will succeed but * return NULL, and bad things will happen. So just fail. */ log_info(LD_FS,"File \"%s\" is empty. Ignoring.",filename); errno = ERANGE; close(fd); return NULL; } string = mmap(0, size, PROT_READ, MAP_PRIVATE, fd, 0); close(fd); if (string == MAP_FAILED) { int save_errno = errno; log_warn(LD_FS,"Could not mmap file \"%s\": %s", filename, strerror(errno)); errno = save_errno; return NULL; } res = tor_malloc_zero(sizeof(tor_mmap_t)); res->data = string; res->size = filesize; res->mapping_size = size; return res; } /** Release storage held for a memory mapping; returns 0 on success, * or -1 on failure (and logs a warning). */ int tor_munmap_file(tor_mmap_t *handle) { int res; if (handle == NULL) return 0; res = munmap((char*)handle->data, handle->mapping_size); if (res == 0) { /* munmap() succeeded */ tor_free(handle); } else { log_warn(LD_FS, "Failed to munmap() in tor_munmap_file(): %s", strerror(errno)); res = -1; } return res; } #elif defined(_WIN32) tor_mmap_t * tor_mmap_file(const char *filename) { TCHAR tfilename[MAX_PATH]= {0}; tor_mmap_t *res = tor_malloc_zero(sizeof(tor_mmap_t)); int empty = 0; HANDLE file_handle = INVALID_HANDLE_VALUE; DWORD size_low, size_high; uint64_t real_size; res->mmap_handle = NULL; #ifdef UNICODE mbstowcs(tfilename,filename,MAX_PATH); #else strlcpy(tfilename,filename,MAX_PATH); #endif file_handle = CreateFile(tfilename, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0); if (file_handle == INVALID_HANDLE_VALUE) goto win_err; size_low = GetFileSize(file_handle, &size_high); if (size_low == INVALID_FILE_SIZE && GetLastError() != NO_ERROR) { log_warn(LD_FS,"Error getting size of \"%s\".",filename); goto win_err; } if (size_low == 0 && size_high == 0) { log_info(LD_FS,"File \"%s\" is empty. Ignoring.",filename); empty = 1; goto err; } real_size = (((uint64_t)size_high)<<32) | size_low; if (real_size > SIZE_MAX) { log_warn(LD_FS,"File \"%s\" is too big to map; not trying.",filename); goto err; } res->size = real_size; res->mmap_handle = CreateFileMapping(file_handle, NULL, PAGE_READONLY, size_high, size_low, NULL); if (res->mmap_handle == NULL) goto win_err; res->data = (char*) MapViewOfFile(res->mmap_handle, FILE_MAP_READ, 0, 0, 0); if (!res->data) goto win_err; CloseHandle(file_handle); return res; win_err: { DWORD e = GetLastError(); int severity = (e == ERROR_FILE_NOT_FOUND || e == ERROR_PATH_NOT_FOUND) ? LOG_INFO : LOG_WARN; char *msg = format_win32_error(e); log_fn(severity, LD_FS, "Couldn't mmap file \"%s\": %s", filename, msg); tor_free(msg); if (e == ERROR_FILE_NOT_FOUND || e == ERROR_PATH_NOT_FOUND) errno = ENOENT; else errno = EINVAL; } err: if (empty) errno = ERANGE; if (file_handle != INVALID_HANDLE_VALUE) CloseHandle(file_handle); tor_munmap_file(res); return NULL; } /* Unmap the file, and return 0 for success or -1 for failure */ int tor_munmap_file(tor_mmap_t *handle) { if (handle == NULL) return 0; if (handle->data) { /* This is an ugly cast, but without it, "data" in struct tor_mmap_t would have to be redefined as non-const. */ BOOL ok = UnmapViewOfFile( (LPVOID) handle->data); if (!ok) { log_warn(LD_FS, "Failed to UnmapViewOfFile() in tor_munmap_file(): %d", (int)GetLastError()); } } if (handle->mmap_handle != NULL) CloseHandle(handle->mmap_handle); tor_free(handle); return 0; } #else tor_mmap_t * tor_mmap_file(const char *filename) { struct stat st; char *res = read_file_to_str(filename, RFTS_BIN|RFTS_IGNORE_MISSING, &st); tor_mmap_t *handle; if (! res) return NULL; handle = tor_malloc_zero(sizeof(tor_mmap_t)); handle->data = res; handle->size = st.st_size; return handle; } /** Unmap the file mapped with tor_mmap_file(), and return 0 for success * or -1 for failure. */ int tor_munmap_file(tor_mmap_t *handle) { char *d = NULL; if (handle == NULL) return 0; d = (char*)handle->data; tor_free(d); memwipe(handle, 0, sizeof(tor_mmap_t)); tor_free(handle); /* Can't fail in this mmap()/munmap()-free case */ return 0; } #endif /** Replacement for snprintf. Differs from platform snprintf in two * ways: First, always NUL-terminates its output. Second, always * returns -1 if the result is truncated. (Note that this return * behavior does not conform to C99; it just happens to be * easier to emulate "return -1" with conformant implementations than * it is to emulate "return number that would be written" with * non-conformant implementations.) */ int tor_snprintf(char *str, size_t size, const char *format, ...) { va_list ap; int r; va_start(ap,format); r = tor_vsnprintf(str,size,format,ap); va_end(ap); return r; } /** Replacement for vsnprintf; behavior differs as tor_snprintf differs from * snprintf. */ int tor_vsnprintf(char *str, size_t size, const char *format, va_list args) { int r; if (size == 0) return -1; /* no place for the NUL */ if (size > SIZE_T_CEILING) return -1; #ifdef _WIN32 r = _vsnprintf(str, size, format, args); #else r = vsnprintf(str, size, format, args); #endif str[size-1] = '\0'; if (r < 0 || r >= (ssize_t)size) return -1; return r; } /** * Portable asprintf implementation. Does a printf() into a newly malloc'd * string. Sets *strp to this string, and returns its length (not * including the terminating NUL character). * * You can treat this function as if its implementation were something like
     char buf[_INFINITY_];
     tor_snprintf(buf, sizeof(buf), fmt, args);
     *strp = tor_strdup(buf);
     return strlen(*strp):
   
* Where _INFINITY_ is an imaginary constant so big that any string can fit * into it. */ int tor_asprintf(char **strp, const char *fmt, ...) { int r; va_list args; va_start(args, fmt); r = tor_vasprintf(strp, fmt, args); va_end(args); if (!*strp || r < 0) { log_err(LD_BUG, "Internal error in asprintf"); tor_assert(0); } return r; } /** * Portable vasprintf implementation. Does a printf() into a newly malloc'd * string. Differs from regular vasprintf in the same ways that * tor_asprintf() differs from regular asprintf. */ int tor_vasprintf(char **strp, const char *fmt, va_list args) { /* use a temporary variable in case *strp is in args. */ char *strp_tmp=NULL; #ifdef HAVE_VASPRINTF /* If the platform gives us one, use it. */ int r = vasprintf(&strp_tmp, fmt, args); if (r < 0) *strp = NULL; else *strp = strp_tmp; return r; #elif defined(HAVE__VSCPRINTF) /* On Windows, _vsnprintf won't tell us the length of the string if it * overflows, so we need to use _vcsprintf to tell how much to allocate */ int len, r; len = _vscprintf(fmt, args); if (len < 0) { *strp = NULL; return -1; } strp_tmp = tor_malloc(len + 1); r = _vsnprintf(strp_tmp, len+1, fmt, args); if (r != len) { tor_free(strp_tmp); *strp = NULL; return -1; } *strp = strp_tmp; return len; #else /* Everywhere else, we have a decent vsnprintf that tells us how many * characters we need. We give it a try on a short buffer first, since * it might be nice to avoid the second vsnprintf call. */ char buf[128]; int len, r; va_list tmp_args; va_copy(tmp_args, args); len = vsnprintf(buf, sizeof(buf), fmt, tmp_args); va_end(tmp_args); if (len < (int)sizeof(buf)) { *strp = tor_strdup(buf); return len; } strp_tmp = tor_malloc(len+1); r = vsnprintf(strp_tmp, len+1, fmt, args); if (r != len) { tor_free(strp_tmp); *strp = NULL; return -1; } *strp = strp_tmp; return len; #endif } /** Given hlen bytes at haystack and nlen bytes at * needle, return a pointer to the first occurrence of the needle * within the haystack, or NULL if there is no such occurrence. * * This function is not timing-safe. * * Requires that nlen be greater than zero. */ const void * tor_memmem(const void *_haystack, size_t hlen, const void *_needle, size_t nlen) { #if defined(HAVE_MEMMEM) && (!defined(__GNUC__) || __GNUC__ >= 2) tor_assert(nlen); return memmem(_haystack, hlen, _needle, nlen); #else /* This isn't as fast as the GLIBC implementation, but it doesn't need to * be. */ const char *p, *last_possible_start; const char *haystack = (const char*)_haystack; const char *needle = (const char*)_needle; char first; tor_assert(nlen); if (nlen > hlen) return NULL; p = haystack; /* Last position at which the needle could start. */ last_possible_start = haystack + hlen - nlen; first = *(const char*)needle; while ((p = memchr(p, first, last_possible_start + 1 - p))) { if (fast_memeq(p, needle, nlen)) return p; if (++p > last_possible_start) { /* This comparison shouldn't be necessary, since if p was previously * equal to last_possible_start, the next memchr call would be * "memchr(p, first, 0)", which will return NULL. But it clarifies the * logic. */ return NULL; } } return NULL; #endif } /** * Tables to implement ctypes-replacement TOR_IS*() functions. Each table * has 256 bits to look up whether a character is in some set or not. This * fails on non-ASCII platforms, but it is hard to find a platform whose * character set is not a superset of ASCII nowadays. */ /**@{*/ const uint32_t TOR_ISALPHA_TABLE[8] = { 0, 0, 0x7fffffe, 0x7fffffe, 0, 0, 0, 0 }; const uint32_t TOR_ISALNUM_TABLE[8] = { 0, 0x3ff0000, 0x7fffffe, 0x7fffffe, 0, 0, 0, 0 }; const uint32_t TOR_ISSPACE_TABLE[8] = { 0x3e00, 0x1, 0, 0, 0, 0, 0, 0 }; const uint32_t TOR_ISXDIGIT_TABLE[8] = { 0, 0x3ff0000, 0x7e, 0x7e, 0, 0, 0, 0 }; const uint32_t TOR_ISDIGIT_TABLE[8] = { 0, 0x3ff0000, 0, 0, 0, 0, 0, 0 }; const uint32_t TOR_ISPRINT_TABLE[8] = { 0, 0xffffffff, 0xffffffff, 0x7fffffff, 0, 0, 0, 0x0 }; const uint32_t TOR_ISUPPER_TABLE[8] = { 0, 0, 0x7fffffe, 0, 0, 0, 0, 0 }; const uint32_t TOR_ISLOWER_TABLE[8] = { 0, 0, 0, 0x7fffffe, 0, 0, 0, 0 }; /** Upper-casing and lowercasing tables to map characters to upper/lowercase * equivalents. Used by tor_toupper() and tor_tolower(). */ /**@{*/ const char TOR_TOUPPER_TABLE[256] = { 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15, 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31, 32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47, 48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63, 64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79, 80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95, 96,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79, 80,81,82,83,84,85,86,87,88,89,90,123,124,125,126,127, 128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143, 144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159, 160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175, 176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191, 192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207, 208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223, 224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239, 240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255, }; const char TOR_TOLOWER_TABLE[256] = { 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15, 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31, 32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47, 48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63, 64,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111, 112,113,114,115,116,117,118,119,120,121,122,91,92,93,94,95, 96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111, 112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127, 128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143, 144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159, 160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175, 176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191, 192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207, 208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223, 224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239, 240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255, }; /**@}*/ /** Helper for tor_strtok_r_impl: Advances cp past all characters in * sep, and returns its new value. */ static char * strtok_helper(char *cp, const char *sep) { if (sep[1]) { while (*cp && strchr(sep, *cp)) ++cp; } else { while (*cp && *cp == *sep) ++cp; } return cp; } /** Implementation of strtok_r for platforms whose coders haven't figured out * how to write one. Hey guys! You can use this code here for free! */ char * tor_strtok_r_impl(char *str, const char *sep, char **lasts) { char *cp, *start; tor_assert(*sep); if (str) { str = strtok_helper(str, sep); if (!*str) return NULL; start = cp = *lasts = str; } else if (!*lasts || !**lasts) { return NULL; } else { start = cp = *lasts; } if (sep[1]) { while (*cp && !strchr(sep, *cp)) ++cp; } else { cp = strchr(cp, *sep); } if (!cp || !*cp) { *lasts = NULL; } else { *cp++ = '\0'; *lasts = strtok_helper(cp, sep); } return start; } #ifdef _WIN32 /** Take a filename and return a pointer to its final element. This * function is called on __FILE__ to fix a MSVC nit where __FILE__ * contains the full path to the file. This is bad, because it * confuses users to find the home directory of the person who * compiled the binary in their warning messages. */ const char * tor_fix_source_file(const char *fname) { const char *cp1, *cp2, *r; cp1 = strrchr(fname, '/'); cp2 = strrchr(fname, '\\'); if (cp1 && cp2) { r = (cp1cp. Equivalent to * *(uint16_t*)(cp), but will not cause segfaults on platforms that forbid * unaligned memory access. */ uint16_t get_uint16(const void *cp) { uint16_t v; memcpy(&v,cp,2); return v; } /** * Read a 32-bit value beginning at cp. Equivalent to * *(uint32_t*)(cp), but will not cause segfaults on platforms that forbid * unaligned memory access. */ uint32_t get_uint32(const void *cp) { uint32_t v; memcpy(&v,cp,4); return v; } /** * Read a 64-bit value beginning at cp. Equivalent to * *(uint64_t*)(cp), but will not cause segfaults on platforms that forbid * unaligned memory access. */ uint64_t get_uint64(const void *cp) { uint64_t v; memcpy(&v,cp,8); return v; } /** * Set a 16-bit value beginning at cp to v. Equivalent to * *(uint16_t*)(cp) = v, but will not cause segfaults on platforms that forbid * unaligned memory access. */ void set_uint16(void *cp, uint16_t v) { memcpy(cp,&v,2); } /** * Set a 32-bit value beginning at cp to v. Equivalent to * *(uint32_t*)(cp) = v, but will not cause segfaults on platforms that forbid * unaligned memory access. */ void set_uint32(void *cp, uint32_t v) { memcpy(cp,&v,4); } /** * Set a 64-bit value beginning at cp to v. Equivalent to * *(uint64_t*)(cp) = v, but will not cause segfaults on platforms that forbid * unaligned memory access. */ void set_uint64(void *cp, uint64_t v) { memcpy(cp,&v,8); } /** * Rename the file from to the file to. On Unix, this is * the same as rename(2). On windows, this removes to first if * it already exists. * Returns 0 on success. Returns -1 and sets errno on failure. */ int replace_file(const char *from, const char *to) { #ifndef _WIN32 return tor_rename(from, to); #else switch (file_status(to)) { case FN_NOENT: break; case FN_FILE: case FN_EMPTY: if (unlink(to)) return -1; break; case FN_ERROR: return -1; case FN_DIR: errno = EISDIR; return -1; } return tor_rename(from,to); #endif } /** Change fname's modification time to now. */ int touch_file(const char *fname) { if (utime(fname, NULL)!=0) return -1; return 0; } /** Represents a lockfile on which we hold the lock. */ struct tor_lockfile_t { /** Name of the file */ char *filename; /** File descriptor used to hold the file open */ int fd; }; /** Try to get a lock on the lockfile filename, creating it as * necessary. If someone else has the lock and blocking is true, * wait until the lock is available. Otherwise return immediately whether * we succeeded or not. * * Set *locked_out to true if somebody else had the lock, and to false * otherwise. * * Return a tor_lockfile_t on success, NULL on failure. * * (Implementation note: because we need to fall back to fcntl on some * platforms, these locks are per-process, not per-thread. If you want * to do in-process locking, use tor_mutex_t like a normal person. * On Windows, when blocking is true, the maximum time that * is actually waited is 10 seconds, after which NULL is returned * and locked_out is set to 1.) */ tor_lockfile_t * tor_lockfile_lock(const char *filename, int blocking, int *locked_out) { tor_lockfile_t *result; int fd; *locked_out = 0; log_info(LD_FS, "Locking \"%s\"", filename); fd = tor_open_cloexec(filename, O_RDWR|O_CREAT|O_TRUNC, 0600); if (fd < 0) { log_warn(LD_FS,"Couldn't open \"%s\" for locking: %s", filename, strerror(errno)); return NULL; } #ifdef _WIN32 _lseek(fd, 0, SEEK_SET); if (_locking(fd, blocking ? _LK_LOCK : _LK_NBLCK, 1) < 0) { if (errno != EACCES && errno != EDEADLOCK) log_warn(LD_FS,"Couldn't lock \"%s\": %s", filename, strerror(errno)); else *locked_out = 1; close(fd); return NULL; } #elif defined(HAVE_FLOCK) if (flock(fd, LOCK_EX|(blocking ? 0 : LOCK_NB)) < 0) { if (errno != EWOULDBLOCK) log_warn(LD_FS,"Couldn't lock \"%s\": %s", filename, strerror(errno)); else *locked_out = 1; close(fd); return NULL; } #else { struct flock lock; memset(&lock, 0, sizeof(lock)); lock.l_type = F_WRLCK; lock.l_whence = SEEK_SET; if (fcntl(fd, blocking ? F_SETLKW : F_SETLK, &lock) < 0) { if (errno != EACCES && errno != EAGAIN) log_warn(LD_FS, "Couldn't lock \"%s\": %s", filename, strerror(errno)); else *locked_out = 1; close(fd); return NULL; } } #endif result = tor_malloc(sizeof(tor_lockfile_t)); result->filename = tor_strdup(filename); result->fd = fd; return result; } /** Release the lock held as lockfile. */ void tor_lockfile_unlock(tor_lockfile_t *lockfile) { tor_assert(lockfile); log_info(LD_FS, "Unlocking \"%s\"", lockfile->filename); #ifdef _WIN32 _lseek(lockfile->fd, 0, SEEK_SET); if (_locking(lockfile->fd, _LK_UNLCK, 1) < 0) { log_warn(LD_FS,"Error unlocking \"%s\": %s", lockfile->filename, strerror(errno)); } #elif defined(HAVE_FLOCK) if (flock(lockfile->fd, LOCK_UN) < 0) { log_warn(LD_FS, "Error unlocking \"%s\": %s", lockfile->filename, strerror(errno)); } #else /* Closing the lockfile is sufficient. */ #endif close(lockfile->fd); lockfile->fd = -1; tor_free(lockfile->filename); tor_free(lockfile); } /** @{ */ /** Some old versions of Unix didn't define constants for these values, * and instead expect you to say 0, 1, or 2. */ #ifndef SEEK_SET #define SEEK_SET 0 #endif #ifndef SEEK_CUR #define SEEK_CUR 1 #endif #ifndef SEEK_END #define SEEK_END 2 #endif /** @} */ /** Return the position of fd with respect to the start of the file. */ off_t tor_fd_getpos(int fd) { #ifdef _WIN32 return (off_t) _lseek(fd, 0, SEEK_CUR); #else return (off_t) lseek(fd, 0, SEEK_CUR); #endif } /** Move fd to the end of the file. Return -1 on error, 0 on success. * If the file is a pipe, do nothing and succeed. **/ int tor_fd_seekend(int fd) { #ifdef _WIN32 return _lseek(fd, 0, SEEK_END) < 0 ? -1 : 0; #else off_t rc = lseek(fd, 0, SEEK_END) < 0 ? -1 : 0; #ifdef ESPIPE /* If we get an error and ESPIPE, then it's a pipe or a socket of a fifo: * no need to worry. */ if (rc < 0 && errno == ESPIPE) rc = 0; #endif return (rc < 0) ? -1 : 0; #endif } /** Move fd to position pos in the file. Return -1 on error, 0 * on success. */ int tor_fd_setpos(int fd, off_t pos) { #ifdef _WIN32 return _lseek(fd, pos, SEEK_SET) < 0 ? -1 : 0; #else return lseek(fd, pos, SEEK_SET) < 0 ? -1 : 0; #endif } /** Replacement for ftruncate(fd, 0): move to the front of the file and remove * all the rest of the file. Return -1 on error, 0 on success. */ int tor_ftruncate(int fd) { /* Rumor has it that some versions of ftruncate do not move the file pointer. */ if (tor_fd_setpos(fd, 0) < 0) return -1; #ifdef _WIN32 return _chsize(fd, 0); #else return ftruncate(fd, 0); #endif } #undef DEBUG_SOCKET_COUNTING #ifdef DEBUG_SOCKET_COUNTING /** A bitarray of all fds that should be passed to tor_socket_close(). Only * used if DEBUG_SOCKET_COUNTING is defined. */ static bitarray_t *open_sockets = NULL; /** The size of open_sockets, in bits. */ static int max_socket = -1; #endif /** Count of number of sockets currently open. (Undercounts sockets opened by * eventdns and libevent.) */ static int n_sockets_open = 0; /** Mutex to protect open_sockets, max_socket, and n_sockets_open. */ static tor_mutex_t *socket_accounting_mutex = NULL; /** Helper: acquire the socket accounting lock. */ static INLINE void socket_accounting_lock(void) { if (PREDICT_UNLIKELY(!socket_accounting_mutex)) socket_accounting_mutex = tor_mutex_new(); tor_mutex_acquire(socket_accounting_mutex); } /** Helper: release the socket accounting lock. */ static INLINE void socket_accounting_unlock(void) { tor_mutex_release(socket_accounting_mutex); } /** As close(), but guaranteed to work for sockets across platforms (including * Windows, where close()ing a socket doesn't work. Returns 0 on success and * the socket error code on failure. */ int tor_close_socket_simple(tor_socket_t s) { int r = 0; /* On Windows, you have to call close() on fds returned by open(), * and closesocket() on fds returned by socket(). On Unix, everything * gets close()'d. We abstract this difference by always using * tor_close_socket to close sockets, and always using close() on * files. */ #if defined(_WIN32) r = closesocket(s); #else r = close(s); #endif if (r != 0) { int err = tor_socket_errno(-1); log_info(LD_NET, "Close returned an error: %s", tor_socket_strerror(err)); return err; } return r; } /** As tor_close_socket_simple(), but keeps track of the number * of open sockets. Returns 0 on success, -1 on failure. */ int tor_close_socket(tor_socket_t s) { int r = tor_close_socket_simple(s); socket_accounting_lock(); #ifdef DEBUG_SOCKET_COUNTING if (s > max_socket || ! bitarray_is_set(open_sockets, s)) { log_warn(LD_BUG, "Closing a socket (%d) that wasn't returned by tor_open_" "socket(), or that was already closed or something.", s); } else { tor_assert(open_sockets && s <= max_socket); bitarray_clear(open_sockets, s); } #endif if (r == 0) { --n_sockets_open; } else { #ifdef _WIN32 if (r != WSAENOTSOCK) --n_sockets_open; #else if (r != EBADF) --n_sockets_open; #endif r = -1; } if (n_sockets_open < 0) log_warn(LD_BUG, "Our socket count is below zero: %d. Please submit a " "bug report.", n_sockets_open); socket_accounting_unlock(); return r; } /** @{ */ #ifdef DEBUG_SOCKET_COUNTING /** Helper: if DEBUG_SOCKET_COUNTING is enabled, remember that s is * now an open socket. */ static INLINE void mark_socket_open(tor_socket_t s) { /* XXXX This bitarray business will NOT work on windows: sockets aren't small ints there. */ if (s > max_socket) { if (max_socket == -1) { open_sockets = bitarray_init_zero(s+128); max_socket = s+128; } else { open_sockets = bitarray_expand(open_sockets, max_socket, s+128); max_socket = s+128; } } if (bitarray_is_set(open_sockets, s)) { log_warn(LD_BUG, "I thought that %d was already open, but socket() just " "gave it to me!", s); } bitarray_set(open_sockets, s); } #else #define mark_socket_open(s) STMT_NIL #endif /** @} */ /** As socket(), but counts the number of open sockets. */ MOCK_IMPL(tor_socket_t, tor_open_socket,(int domain, int type, int protocol)) { return tor_open_socket_with_extensions(domain, type, protocol, 1, 0); } /** Mockable wrapper for connect(). */ MOCK_IMPL(tor_socket_t, tor_connect_socket,(tor_socket_t socket,const struct sockaddr *address, socklen_t address_len)) { return connect(socket,address,address_len); } /** As socket(), but creates a nonblocking socket and * counts the number of open sockets. */ tor_socket_t tor_open_socket_nonblocking(int domain, int type, int protocol) { return tor_open_socket_with_extensions(domain, type, protocol, 1, 1); } /** As socket(), but counts the number of open sockets and handles * socket creation with either of SOCK_CLOEXEC and SOCK_NONBLOCK specified. * cloexec and nonblock should be either 0 or 1 to indicate * if the corresponding extension should be used.*/ tor_socket_t tor_open_socket_with_extensions(int domain, int type, int protocol, int cloexec, int nonblock) { tor_socket_t s; /* We are about to create a new file descriptor so make sure we have * enough of them. */ if (get_n_open_sockets() >= max_sockets - 1) { #ifdef _WIN32 WSASetLastError(WSAEMFILE); #else errno = EMFILE; #endif return TOR_INVALID_SOCKET; } #if defined(SOCK_CLOEXEC) && defined(SOCK_NONBLOCK) int ext_flags = (cloexec ? SOCK_CLOEXEC : 0) | (nonblock ? SOCK_NONBLOCK : 0); s = socket(domain, type|ext_flags, protocol); if (SOCKET_OK(s)) goto socket_ok; /* If we got an error, see if it is EINVAL. EINVAL might indicate that, * even though we were built on a system with SOCK_CLOEXEC and SOCK_NONBLOCK * support, we are running on one without. */ if (errno != EINVAL) return s; #endif /* SOCK_CLOEXEC && SOCK_NONBLOCK */ s = socket(domain, type, protocol); if (! SOCKET_OK(s)) return s; #if defined(FD_CLOEXEC) if (cloexec) { if (fcntl(s, F_SETFD, FD_CLOEXEC) == -1) { log_warn(LD_FS,"Couldn't set FD_CLOEXEC: %s", strerror(errno)); tor_close_socket_simple(s); return TOR_INVALID_SOCKET; } } #else (void)cloexec; #endif if (nonblock) { if (set_socket_nonblocking(s) == -1) { tor_close_socket_simple(s); return TOR_INVALID_SOCKET; } } goto socket_ok; /* So that socket_ok will not be unused. */ socket_ok: socket_accounting_lock(); ++n_sockets_open; mark_socket_open(s); socket_accounting_unlock(); return s; } /** As accept(), but counts the number of open sockets. */ tor_socket_t tor_accept_socket(tor_socket_t sockfd, struct sockaddr *addr, socklen_t *len) { return tor_accept_socket_with_extensions(sockfd, addr, len, 1, 0); } /** As accept(), but returns a nonblocking socket and * counts the number of open sockets. */ tor_socket_t tor_accept_socket_nonblocking(tor_socket_t sockfd, struct sockaddr *addr, socklen_t *len) { return tor_accept_socket_with_extensions(sockfd, addr, len, 1, 1); } /** As accept(), but counts the number of open sockets and handles * socket creation with either of SOCK_CLOEXEC and SOCK_NONBLOCK specified. * cloexec and nonblock should be either 0 or 1 to indicate * if the corresponding extension should be used.*/ tor_socket_t tor_accept_socket_with_extensions(tor_socket_t sockfd, struct sockaddr *addr, socklen_t *len, int cloexec, int nonblock) { tor_socket_t s; /* We are about to create a new file descriptor so make sure we have * enough of them. */ if (get_n_open_sockets() >= max_sockets - 1) { #ifdef _WIN32 WSASetLastError(WSAEMFILE); #else errno = EMFILE; #endif return TOR_INVALID_SOCKET; } #if defined(HAVE_ACCEPT4) && defined(SOCK_CLOEXEC) && defined(SOCK_NONBLOCK) int ext_flags = (cloexec ? SOCK_CLOEXEC : 0) | (nonblock ? SOCK_NONBLOCK : 0); s = accept4(sockfd, addr, len, ext_flags); if (SOCKET_OK(s)) goto socket_ok; /* If we got an error, see if it is ENOSYS. ENOSYS indicates that, * even though we were built on a system with accept4 support, we * are running on one without. Also, check for EINVAL, which indicates that * we are missing SOCK_CLOEXEC/SOCK_NONBLOCK support. */ if (errno != EINVAL && errno != ENOSYS) return s; #endif s = accept(sockfd, addr, len); if (!SOCKET_OK(s)) return s; #if defined(FD_CLOEXEC) if (cloexec) { if (fcntl(s, F_SETFD, FD_CLOEXEC) == -1) { log_warn(LD_NET, "Couldn't set FD_CLOEXEC: %s", strerror(errno)); tor_close_socket_simple(s); return TOR_INVALID_SOCKET; } } #else (void)cloexec; #endif if (nonblock) { if (set_socket_nonblocking(s) == -1) { tor_close_socket_simple(s); return TOR_INVALID_SOCKET; } } goto socket_ok; /* So that socket_ok will not be unused. */ socket_ok: socket_accounting_lock(); ++n_sockets_open; mark_socket_open(s); socket_accounting_unlock(); return s; } /** Return the number of sockets we currently have opened. */ int get_n_open_sockets(void) { int n; socket_accounting_lock(); n = n_sockets_open; socket_accounting_unlock(); return n; } /** Mockable wrapper for getsockname(). */ MOCK_IMPL(int, tor_getsockname,(tor_socket_t socket, struct sockaddr *address, socklen_t *address_len)) { return getsockname(socket, address, address_len); } /** Turn socket into a nonblocking socket. Return 0 on success, -1 * on failure. */ int set_socket_nonblocking(tor_socket_t socket) { #if defined(_WIN32) unsigned long nonblocking = 1; ioctlsocket(socket, FIONBIO, (unsigned long*) &nonblocking); #else int flags; flags = fcntl(socket, F_GETFL, 0); if (flags == -1) { log_warn(LD_NET, "Couldn't get file status flags: %s", strerror(errno)); return -1; } flags |= O_NONBLOCK; if (fcntl(socket, F_SETFL, flags) == -1) { log_warn(LD_NET, "Couldn't set file status flags: %s", strerror(errno)); return -1; } #endif return 0; } /** * Allocate a pair of connected sockets. (Like socketpair(family, * type,protocol,fd), but works on systems that don't have * socketpair.) * * Currently, only (AF_UNIX, SOCK_STREAM, 0) sockets are supported. * * Note that on systems without socketpair, this call will fail if * localhost is inaccessible (for example, if the networking * stack is down). And even if it succeeds, the socket pair will not * be able to read while localhost is down later (the socket pair may * even close, depending on OS-specific timeouts). * * Returns 0 on success and -errno on failure; do not rely on the value * of errno or WSAGetLastError(). **/ /* It would be nicer just to set errno, but that won't work for windows. */ int tor_socketpair(int family, int type, int protocol, tor_socket_t fd[2]) { //don't use win32 socketpairs (they are always bad) #if defined(HAVE_SOCKETPAIR) && !defined(_WIN32) int r; #ifdef SOCK_CLOEXEC r = socketpair(family, type|SOCK_CLOEXEC, protocol, fd); if (r == 0) goto sockets_ok; /* If we got an error, see if it is EINVAL. EINVAL might indicate that, * even though we were built on a system with SOCK_CLOEXEC support, we * are running on one without. */ if (errno != EINVAL) return -errno; #endif r = socketpair(family, type, protocol, fd); if (r < 0) return -errno; #if defined(FD_CLOEXEC) if (SOCKET_OK(fd[0])) { r = fcntl(fd[0], F_SETFD, FD_CLOEXEC); if (r == -1) { close(fd[0]); close(fd[1]); return -errno; } } if (SOCKET_OK(fd[1])) { r = fcntl(fd[1], F_SETFD, FD_CLOEXEC); if (r == -1) { close(fd[0]); close(fd[1]); return -errno; } } #endif goto sockets_ok; /* So that sockets_ok will not be unused. */ sockets_ok: socket_accounting_lock(); if (SOCKET_OK(fd[0])) { ++n_sockets_open; mark_socket_open(fd[0]); } if (SOCKET_OK(fd[1])) { ++n_sockets_open; mark_socket_open(fd[1]); } socket_accounting_unlock(); return 0; #else return tor_ersatz_socketpair(family, type, protocol, fd); #endif } #ifdef NEED_ERSATZ_SOCKETPAIR /** * Helper used to implement socketpair on systems that lack it, by * making a direct connection to localhost. */ STATIC int tor_ersatz_socketpair(int family, int type, int protocol, tor_socket_t fd[2]) { /* This socketpair does not work when localhost is down. So * it's really not the same thing at all. But it's close enough * for now, and really, when localhost is down sometimes, we * have other problems too. */ tor_socket_t listener = TOR_INVALID_SOCKET; tor_socket_t connector = TOR_INVALID_SOCKET; tor_socket_t acceptor = TOR_INVALID_SOCKET; struct sockaddr_in listen_addr; struct sockaddr_in connect_addr; socklen_t size; int saved_errno = -1; memset(&connect_addr, 0, sizeof(connect_addr)); memset(&listen_addr, 0, sizeof(listen_addr)); if (protocol #ifdef AF_UNIX || family != AF_UNIX #endif ) { #ifdef _WIN32 return -WSAEAFNOSUPPORT; #else return -EAFNOSUPPORT; #endif } if (!fd) { return -EINVAL; } listener = tor_open_socket(AF_INET, type, 0); if (!SOCKET_OK(listener)) return -tor_socket_errno(-1); memset(&listen_addr, 0, sizeof(listen_addr)); listen_addr.sin_family = AF_INET; listen_addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK); listen_addr.sin_port = 0; /* kernel chooses port. */ if (bind(listener, (struct sockaddr *) &listen_addr, sizeof (listen_addr)) == -1) goto tidy_up_and_fail; if (listen(listener, 1) == -1) goto tidy_up_and_fail; connector = tor_open_socket(AF_INET, type, 0); if (!SOCKET_OK(connector)) goto tidy_up_and_fail; /* We want to find out the port number to connect to. */ size = sizeof(connect_addr); if (getsockname(listener, (struct sockaddr *) &connect_addr, &size) == -1) goto tidy_up_and_fail; if (size != sizeof (connect_addr)) goto abort_tidy_up_and_fail; if (connect(connector, (struct sockaddr *) &connect_addr, sizeof(connect_addr)) == -1) goto tidy_up_and_fail; size = sizeof(listen_addr); acceptor = tor_accept_socket(listener, (struct sockaddr *) &listen_addr, &size); if (!SOCKET_OK(acceptor)) goto tidy_up_and_fail; if (size != sizeof(listen_addr)) goto abort_tidy_up_and_fail; /* Now check we are talking to ourself by matching port and host on the two sockets. */ if (getsockname(connector, (struct sockaddr *) &connect_addr, &size) == -1) goto tidy_up_and_fail; if (size != sizeof (connect_addr) || listen_addr.sin_family != connect_addr.sin_family || listen_addr.sin_addr.s_addr != connect_addr.sin_addr.s_addr || listen_addr.sin_port != connect_addr.sin_port) { goto abort_tidy_up_and_fail; } tor_close_socket(listener); fd[0] = connector; fd[1] = acceptor; return 0; abort_tidy_up_and_fail: #ifdef _WIN32 saved_errno = WSAECONNABORTED; #else saved_errno = ECONNABORTED; /* I hope this is portable and appropriate. */ #endif tidy_up_and_fail: if (saved_errno < 0) saved_errno = errno; if (SOCKET_OK(listener)) tor_close_socket(listener); if (SOCKET_OK(connector)) tor_close_socket(connector); if (SOCKET_OK(acceptor)) tor_close_socket(acceptor); return -saved_errno; } #endif /* Return the maximum number of allowed sockets. */ int get_max_sockets(void) { return max_sockets; } /** Number of extra file descriptors to keep in reserve beyond those that we * tell Tor it's allowed to use. */ #define ULIMIT_BUFFER 32 /* keep 32 extra fd's beyond ConnLimit_ */ /** Learn the maximum allowed number of file descriptors, and tell the * system we want to use up to that number. (Some systems have a low soft * limit, and let us set it higher.) We compute this by finding the largest * number that we can use. * * If the limit is below the reserved file descriptor value (ULIMIT_BUFFER), * return -1 and max_out is untouched. * * If we can't find a number greater than or equal to limit, then we * fail by returning -1 and max_out is untouched. * * If we are unable to set the limit value because of setrlimit() failing, * return -1 and max_out is set to the current maximum value returned * by getrlimit(). * * Otherwise, return 0 and store the maximum we found inside max_out * and set max_sockets with that value as well.*/ int set_max_file_descriptors(rlim_t limit, int *max_out) { if (limit < ULIMIT_BUFFER) { log_warn(LD_CONFIG, "ConnLimit must be at least %d. Failing.", ULIMIT_BUFFER); return -1; } /* Define some maximum connections values for systems where we cannot * automatically determine a limit. Re Cygwin, see * http://archives.seul.org/or/talk/Aug-2006/msg00210.html * For an iPhone, 9999 should work. For Windows and all other unknown * systems we use 15000 as the default. */ #ifndef HAVE_GETRLIMIT #if defined(CYGWIN) || defined(__CYGWIN__) const char *platform = "Cygwin"; const unsigned long MAX_CONNECTIONS = 3200; #elif defined(_WIN32) const char *platform = "Windows"; const unsigned long MAX_CONNECTIONS = 15000; #else const char *platform = "unknown platforms with no getrlimit()"; const unsigned long MAX_CONNECTIONS = 15000; #endif log_fn(LOG_INFO, LD_NET, "This platform is missing getrlimit(). Proceeding."); if (limit > MAX_CONNECTIONS) { log_warn(LD_CONFIG, "We do not support more than %lu file descriptors " "on %s. Tried to raise to %lu.", (unsigned long)MAX_CONNECTIONS, platform, (unsigned long)limit); return -1; } limit = MAX_CONNECTIONS; #else /* HAVE_GETRLIMIT */ struct rlimit rlim; if (getrlimit(RLIMIT_NOFILE, &rlim) != 0) { log_warn(LD_NET, "Could not get maximum number of file descriptors: %s", strerror(errno)); return -1; } if (rlim.rlim_max < limit) { log_warn(LD_CONFIG,"We need %lu file descriptors available, and we're " "limited to %lu. Please change your ulimit -n.", (unsigned long)limit, (unsigned long)rlim.rlim_max); return -1; } if (rlim.rlim_max > rlim.rlim_cur) { log_info(LD_NET,"Raising max file descriptors from %lu to %lu.", (unsigned long)rlim.rlim_cur, (unsigned long)rlim.rlim_max); } /* Set the current limit value so if the attempt to set the limit to the * max fails at least we'll have a valid value of maximum sockets. */ *max_out = max_sockets = (int)rlim.rlim_cur - ULIMIT_BUFFER; rlim.rlim_cur = rlim.rlim_max; if (setrlimit(RLIMIT_NOFILE, &rlim) != 0) { int bad = 1; #ifdef OPEN_MAX if (errno == EINVAL && OPEN_MAX < rlim.rlim_cur) { /* On some platforms, OPEN_MAX is the real limit, and getrlimit() is * full of nasty lies. I'm looking at you, OSX 10.5.... */ rlim.rlim_cur = OPEN_MAX; if (setrlimit(RLIMIT_NOFILE, &rlim) == 0) { if (rlim.rlim_cur < (rlim_t)limit) { log_warn(LD_CONFIG, "We are limited to %lu file descriptors by " "OPEN_MAX, and ConnLimit is %lu. Changing ConnLimit; sorry.", (unsigned long)OPEN_MAX, (unsigned long)limit); } else { log_info(LD_CONFIG, "Dropped connection limit to OPEN_MAX (%lu); " "Apparently, %lu was too high and rlimit lied to us.", (unsigned long)OPEN_MAX, (unsigned long)rlim.rlim_max); } bad = 0; } } #endif /* OPEN_MAX */ if (bad) { log_warn(LD_CONFIG,"Couldn't set maximum number of file descriptors: %s", strerror(errno)); return -1; } } /* leave some overhead for logs, etc, */ limit = rlim.rlim_cur; #endif /* HAVE_GETRLIMIT */ if (limit > INT_MAX) limit = INT_MAX; tor_assert(max_out); *max_out = max_sockets = (int)limit - ULIMIT_BUFFER; return 0; } #ifndef _WIN32 /** Log details of current user and group credentials. Return 0 on * success. Logs and return -1 on failure. */ static int log_credential_status(void) { /** Log level to use when describing non-error UID/GID status. */ #define CREDENTIAL_LOG_LEVEL LOG_INFO /* Real, effective and saved UIDs */ uid_t ruid, euid, suid; /* Read, effective and saved GIDs */ gid_t rgid, egid, sgid; /* Supplementary groups */ gid_t *sup_gids = NULL; int sup_gids_size; /* Number of supplementary groups */ int ngids; /* log UIDs */ #ifdef HAVE_GETRESUID if (getresuid(&ruid, &euid, &suid) != 0 ) { log_warn(LD_GENERAL, "Error getting changed UIDs: %s", strerror(errno)); return -1; } else { log_fn(CREDENTIAL_LOG_LEVEL, LD_GENERAL, "UID is %u (real), %u (effective), %u (saved)", (unsigned)ruid, (unsigned)euid, (unsigned)suid); } #else /* getresuid is not present on MacOS X, so we can't get the saved (E)UID */ ruid = getuid(); euid = geteuid(); (void)suid; log_fn(CREDENTIAL_LOG_LEVEL, LD_GENERAL, "UID is %u (real), %u (effective), unknown (saved)", (unsigned)ruid, (unsigned)euid); #endif /* log GIDs */ #ifdef HAVE_GETRESGID if (getresgid(&rgid, &egid, &sgid) != 0 ) { log_warn(LD_GENERAL, "Error getting changed GIDs: %s", strerror(errno)); return -1; } else { log_fn(CREDENTIAL_LOG_LEVEL, LD_GENERAL, "GID is %u (real), %u (effective), %u (saved)", (unsigned)rgid, (unsigned)egid, (unsigned)sgid); } #else /* getresgid is not present on MacOS X, so we can't get the saved (E)GID */ rgid = getgid(); egid = getegid(); (void)sgid; log_fn(CREDENTIAL_LOG_LEVEL, LD_GENERAL, "GID is %u (real), %u (effective), unknown (saved)", (unsigned)rgid, (unsigned)egid); #endif /* log supplementary groups */ sup_gids_size = 64; sup_gids = tor_calloc(64, sizeof(gid_t)); while ((ngids = getgroups(sup_gids_size, sup_gids)) < 0 && errno == EINVAL && sup_gids_size < NGROUPS_MAX) { sup_gids_size *= 2; sup_gids = tor_reallocarray(sup_gids, sizeof(gid_t), sup_gids_size); } if (ngids < 0) { log_warn(LD_GENERAL, "Error getting supplementary GIDs: %s", strerror(errno)); tor_free(sup_gids); return -1; } else { int i, retval = 0; char *s = NULL; smartlist_t *elts = smartlist_new(); for (i = 0; ipw_name) new_pw->pw_name = tor_strdup(pw->pw_name); if (pw->pw_dir) new_pw->pw_dir = tor_strdup(pw->pw_dir); new_pw->pw_uid = pw->pw_uid; new_pw->pw_gid = pw->pw_gid; return new_pw; } /** Helper: free one of our cached 'struct passwd' values. */ static void tor_passwd_free(struct passwd *pw) { if (!pw) return; tor_free(pw->pw_name); tor_free(pw->pw_dir); tor_free(pw); } /** Wrapper around getpwnam() that caches result. Used so that we don't need * to give the sandbox access to /etc/passwd. * * The following fields alone will definitely be copied in the output: pw_uid, * pw_gid, pw_name, pw_dir. Other fields are not present in cached values. * * When called with a NULL argument, this function clears storage associated * with static variables it uses. **/ const struct passwd * tor_getpwnam(const char *username) { struct passwd *pw; if (username == NULL) { tor_passwd_free(passwd_cached); passwd_cached = NULL; return NULL; } if ((pw = getpwnam(username))) { tor_passwd_free(passwd_cached); passwd_cached = tor_passwd_dup(pw); log_info(LD_GENERAL, "Caching new entry %s for %s", passwd_cached->pw_name, username); return pw; } /* Lookup failed */ if (! passwd_cached || ! passwd_cached->pw_name) return NULL; if (! strcmp(username, passwd_cached->pw_name)) return passwd_cached; return NULL; } /** Wrapper around getpwnam() that can use cached result from * tor_getpwnam(). Used so that we don't need to give the sandbox access to * /etc/passwd. * * The following fields alone will definitely be copied in the output: pw_uid, * pw_gid, pw_name, pw_dir. Other fields are not present in cached values. */ const struct passwd * tor_getpwuid(uid_t uid) { struct passwd *pw; if ((pw = getpwuid(uid))) { return pw; } /* Lookup failed */ if (! passwd_cached) return NULL; if (uid == passwd_cached->pw_uid) return passwd_cached; return NULL; } #endif /** Call setuid and setgid to run as user and switch to their * primary group. Return 0 on success. On failure, log and return -1. */ int switch_id(const char *user) { #ifndef _WIN32 const struct passwd *pw = NULL; uid_t old_uid; gid_t old_gid; static int have_already_switched_id = 0; tor_assert(user); if (have_already_switched_id) return 0; /* Log the initial credential state */ if (log_credential_status()) return -1; log_fn(CREDENTIAL_LOG_LEVEL, LD_GENERAL, "Changing user and groups"); /* Get old UID/GID to check if we changed correctly */ old_uid = getuid(); old_gid = getgid(); /* Lookup the user and group information, if we have a problem, bail out. */ pw = tor_getpwnam(user); if (pw == NULL) { log_warn(LD_CONFIG, "Error setting configured user: %s not found", user); return -1; } /* Properly switch egid,gid,euid,uid here or bail out */ if (setgroups(1, &pw->pw_gid)) { log_warn(LD_GENERAL, "Error setting groups to gid %d: \"%s\".", (int)pw->pw_gid, strerror(errno)); if (old_uid == pw->pw_uid) { log_warn(LD_GENERAL, "Tor is already running as %s. You do not need " "the \"User\" option if you are already running as the user " "you want to be. (If you did not set the User option in your " "torrc, check whether it was specified on the command line " "by a startup script.)", user); } else { log_warn(LD_GENERAL, "If you set the \"User\" option, you must start Tor" " as root."); } return -1; } if (setegid(pw->pw_gid)) { log_warn(LD_GENERAL, "Error setting egid to %d: %s", (int)pw->pw_gid, strerror(errno)); return -1; } if (setgid(pw->pw_gid)) { log_warn(LD_GENERAL, "Error setting gid to %d: %s", (int)pw->pw_gid, strerror(errno)); return -1; } if (setuid(pw->pw_uid)) { log_warn(LD_GENERAL, "Error setting configured uid to %s (%d): %s", user, (int)pw->pw_uid, strerror(errno)); return -1; } if (seteuid(pw->pw_uid)) { log_warn(LD_GENERAL, "Error setting configured euid to %s (%d): %s", user, (int)pw->pw_uid, strerror(errno)); return -1; } /* This is how OpenBSD rolls: if (setgroups(1, &pw->pw_gid) || setegid(pw->pw_gid) || setgid(pw->pw_gid) || setuid(pw->pw_uid) || seteuid(pw->pw_uid)) { setgid(pw->pw_gid) || seteuid(pw->pw_uid) || setuid(pw->pw_uid)) { log_warn(LD_GENERAL, "Error setting configured UID/GID: %s", strerror(errno)); return -1; } */ /* We've properly switched egid, gid, euid, uid, and supplementary groups if * we're here. */ #if !defined(CYGWIN) && !defined(__CYGWIN__) /* If we tried to drop privilege to a group/user other than root, attempt to * restore root (E)(U|G)ID, and abort if the operation succeeds */ /* Only check for privilege dropping if we were asked to be non-root */ if (pw->pw_uid) { /* Try changing GID/EGID */ if (pw->pw_gid != old_gid && (setgid(old_gid) != -1 || setegid(old_gid) != -1)) { log_warn(LD_GENERAL, "Was able to restore group credentials even after " "switching GID: this means that the setgid code didn't work."); return -1; } /* Try changing UID/EUID */ if (pw->pw_uid != old_uid && (setuid(old_uid) != -1 || seteuid(old_uid) != -1)) { log_warn(LD_GENERAL, "Was able to restore user credentials even after " "switching UID: this means that the setuid code didn't work."); return -1; } } #endif /* Check what really happened */ if (log_credential_status()) { return -1; } have_already_switched_id = 1; /* mark success so we never try again */ #if defined(__linux__) && defined(HAVE_SYS_PRCTL_H) && defined(HAVE_PRCTL) #ifdef PR_SET_DUMPABLE if (pw->pw_uid) { /* Re-enable core dumps if we're not running as root. */ log_info(LD_CONFIG, "Re-enabling coredumps"); if (prctl(PR_SET_DUMPABLE, 1)) { log_warn(LD_CONFIG, "Unable to re-enable coredumps: %s",strerror(errno)); } } #endif #endif return 0; #else (void)user; log_warn(LD_CONFIG, "User specified but switching users is unsupported on your OS."); return -1; #endif } /* We only use the linux prctl for now. There is no Win32 support; this may * also work on various BSD systems and Mac OS X - send testing feedback! * * On recent Gnu/Linux kernels it is possible to create a system-wide policy * that will prevent non-root processes from attaching to other processes * unless they are the parent process; thus gdb can attach to programs that * they execute but they cannot attach to other processes running as the same * user. The system wide policy may be set with the sysctl * kernel.yama.ptrace_scope or by inspecting * /proc/sys/kernel/yama/ptrace_scope and it is 1 by default on Ubuntu 11.04. * * This ptrace scope will be ignored on Gnu/Linux for users with * CAP_SYS_PTRACE and so it is very likely that root will still be able to * attach to the Tor process. */ /** Attempt to disable debugger attachment: return 1 on success, -1 on * failure, and 0 if we don't know how to try on this platform. */ int tor_disable_debugger_attach(void) { int r, attempted; r = -1; attempted = 0; log_debug(LD_CONFIG, "Attemping to disable debugger attachment to Tor for " "unprivileged users."); #if defined(__linux__) && defined(HAVE_SYS_PRCTL_H) && defined(HAVE_PRCTL) #ifdef PR_SET_DUMPABLE attempted = 1; r = prctl(PR_SET_DUMPABLE, 0); #endif #endif #if defined(__APPLE__) && defined(PT_DENY_ATTACH) if (r < 0) { attempted = 1; r = ptrace(PT_DENY_ATTACH, 0, 0, 0); } #endif // XXX: TODO - Mac OS X has dtrace and this may be disabled. // XXX: TODO - Windows probably has something similar if (r == 0 && attempted) { log_debug(LD_CONFIG,"Debugger attachment disabled for " "unprivileged users."); return 1; } else if (attempted) { log_warn(LD_CONFIG, "Unable to disable debugger attaching: %s", strerror(errno)); } return r; } #ifdef HAVE_PWD_H /** Allocate and return a string containing the home directory for the * user username. Only works on posix-like systems. */ char * get_user_homedir(const char *username) { const struct passwd *pw; tor_assert(username); if (!(pw = tor_getpwnam(username))) { log_err(LD_CONFIG,"User \"%s\" not found.", username); return NULL; } return tor_strdup(pw->pw_dir); } #endif /** Modify fname to contain the name of its parent directory. Doesn't * actually examine the filesystem; does a purely syntactic modification. * * The parent of the root director is considered to be iteself. * * Path separators are the forward slash (/) everywhere and additionally * the backslash (\) on Win32. * * Cuts off any number of trailing path separators but otherwise ignores * them for purposes of finding the parent directory. * * Returns 0 if a parent directory was successfully found, -1 otherwise (fname * did not have any path separators or only had them at the end). * */ int get_parent_directory(char *fname) { char *cp; int at_end = 1; tor_assert(fname); #ifdef _WIN32 /* If we start with, say, c:, then don't consider that the start of the path */ if (fname[0] && fname[1] == ':') { fname += 2; } #endif /* Now we want to remove all path-separators at the end of the string, * and to remove the end of the string starting with the path separator * before the last non-path-separator. In perl, this would be * s#[/]*$##; s#/[^/]*$##; * on a unixy platform. */ cp = fname + strlen(fname); at_end = 1; while (--cp >= fname) { int is_sep = (*cp == '/' #ifdef _WIN32 || *cp == '\\' #endif ); if (is_sep) { if (cp == fname) { /* This is the first separator in the file name; don't remove it! */ cp[1] = '\0'; return 0; } *cp = '\0'; if (! at_end) return 0; } else { at_end = 0; } } return -1; } #ifndef _WIN32 /** Return a newly allocated string containing the output of getcwd(). Return * NULL on failure. (We can't just use getcwd() into a PATH_MAX buffer, since * Hurd hasn't got a PATH_MAX.) */ static char * alloc_getcwd(void) { int saved_errno = errno; /* We use this as a starting path length. Not too large seems sane. */ #define START_PATH_LENGTH 128 /* Nobody has a maxpath longer than this, as far as I know. And if they * do, they shouldn't. */ #define MAX_SANE_PATH_LENGTH 4096 size_t path_length = START_PATH_LENGTH; char *path = tor_malloc(path_length); errno = 0; while (getcwd(path, path_length) == NULL) { if (errno == ERANGE && path_length < MAX_SANE_PATH_LENGTH) { path_length*=2; path = tor_realloc(path, path_length); } else { tor_free(path); path = NULL; break; } } errno = saved_errno; return path; } #endif /** Expand possibly relative path fname to an absolute path. * Return a newly allocated string, possibly equal to fname. */ char * make_path_absolute(char *fname) { #ifdef _WIN32 char *absfname_malloced = _fullpath(NULL, fname, 1); /* We don't want to assume that tor_free can free a string allocated * with malloc. On failure, return fname (it's better than nothing). */ char *absfname = tor_strdup(absfname_malloced ? absfname_malloced : fname); if (absfname_malloced) free(absfname_malloced); return absfname; #else char *absfname = NULL, *path = NULL; tor_assert(fname); if (fname[0] == '/') { absfname = tor_strdup(fname); } else { path = alloc_getcwd(); if (path) { tor_asprintf(&absfname, "%s/%s", path, fname); tor_free(path); } else { /* If getcwd failed, the best we can do here is keep using the * relative path. (Perhaps / isn't readable by this UID/GID.) */ log_warn(LD_GENERAL, "Unable to find current working directory: %s", strerror(errno)); absfname = tor_strdup(fname); } } return absfname; #endif } #ifndef HAVE__NSGETENVIRON #ifndef HAVE_EXTERN_ENVIRON_DECLARED /* Some platforms declare environ under some circumstances, others don't. */ #ifndef RUNNING_DOXYGEN extern char **environ; #endif #endif #endif /** Return the current environment. This is a portable replacement for * 'environ'. */ char ** get_environment(void) { #ifdef HAVE__NSGETENVIRON /* This is for compatibility between OSX versions. Otherwise (for example) * when we do a mostly-static build on OSX 10.7, the resulting binary won't * work on OSX 10.6. */ return *_NSGetEnviron(); #else return environ; #endif } /** Get name of current host and write it to name array, whose * length is specified by namelen argument. Return 0 upon * successfull completion; otherwise return return -1. (Currently, * this function is merely a mockable wrapper for POSIX gethostname().) */ MOCK_IMPL(int, tor_gethostname,(char *name, size_t namelen)) { return gethostname(name,namelen); } /** Set *addr to the IP address (in dotted-quad notation) stored in *str. * Return 1 on success, 0 if *str is badly formatted. * (Like inet_aton(str,addr), but works on Windows and Solaris.) */ int tor_inet_aton(const char *str, struct in_addr* addr) { unsigned a,b,c,d; char more; if (tor_sscanf(str, "%3u.%3u.%3u.%3u%c", &a,&b,&c,&d,&more) != 4) return 0; if (a > 255) return 0; if (b > 255) return 0; if (c > 255) return 0; if (d > 255) return 0; addr->s_addr = htonl((a<<24) | (b<<16) | (c<<8) | d); return 1; } /** Given af==AF_INET and src a struct in_addr, or * af==AF_INET6 and src a struct in6_addr, try to format the * address and store it in the len-byte buffer dst. Returns * dst on success, NULL on failure. * * (Like inet_ntop(af,src,dst,len), but works on platforms that don't have it: * Tor sometimes needs to format ipv6 addresses even on platforms without ipv6 * support.) */ const char * tor_inet_ntop(int af, const void *src, char *dst, size_t len) { if (af == AF_INET) { if (tor_inet_ntoa(src, dst, len) < 0) return NULL; else return dst; } else if (af == AF_INET6) { const struct in6_addr *addr = src; char buf[64], *cp; int longestGapLen = 0, longestGapPos = -1, i, curGapPos = -1, curGapLen = 0; uint16_t words[8]; for (i = 0; i < 8; ++i) { words[i] = (((uint16_t)addr->s6_addr[2*i])<<8) + addr->s6_addr[2*i+1]; } if (words[0] == 0 && words[1] == 0 && words[2] == 0 && words[3] == 0 && words[4] == 0 && ((words[5] == 0 && words[6] && words[7]) || (words[5] == 0xffff))) { /* This is an IPv4 address. */ if (words[5] == 0) { tor_snprintf(buf, sizeof(buf), "::%d.%d.%d.%d", addr->s6_addr[12], addr->s6_addr[13], addr->s6_addr[14], addr->s6_addr[15]); } else { tor_snprintf(buf, sizeof(buf), "::%x:%d.%d.%d.%d", words[5], addr->s6_addr[12], addr->s6_addr[13], addr->s6_addr[14], addr->s6_addr[15]); } if ((strlen(buf) + 1) > len) /* +1 for \0 */ return NULL; strlcpy(dst, buf, len); return dst; } i = 0; while (i < 8) { if (words[i] == 0) { curGapPos = i++; curGapLen = 1; while (i<8 && words[i] == 0) { ++i; ++curGapLen; } if (curGapLen > longestGapLen) { longestGapPos = curGapPos; longestGapLen = curGapLen; } } else { ++i; } } if (longestGapLen<=1) longestGapPos = -1; cp = buf; for (i = 0; i < 8; ++i) { if (words[i] == 0 && longestGapPos == i) { if (i == 0) *cp++ = ':'; *cp++ = ':'; while (i < 8 && words[i] == 0) ++i; --i; /* to compensate for loop increment. */ } else { tor_snprintf(cp, sizeof(buf)-(cp-buf), "%x", (unsigned)words[i]); cp += strlen(cp); if (i != 7) *cp++ = ':'; } } *cp = '\0'; if ((strlen(buf) + 1) > len) /* +1 for \0 */ return NULL; strlcpy(dst, buf, len); return dst; } else { return NULL; } } /** Given af==AF_INET or af==AF_INET6, and a string src * encoding an IPv4 address or IPv6 address correspondingly, try to parse the * address and store the result in dst (which must have space for a * struct in_addr or a struct in6_addr, as appropriate). Return 1 on success, * 0 on a bad parse, and -1 on a bad af. * * (Like inet_pton(af,src,dst) but works on platforms that don't have it: Tor * sometimes needs to format ipv6 addresses even on platforms without ipv6 * support.) */ int tor_inet_pton(int af, const char *src, void *dst) { if (af == AF_INET) { return tor_inet_aton(src, dst); } else if (af == AF_INET6) { struct in6_addr *out = dst; uint16_t words[8]; int gapPos = -1, i, setWords=0; const char *dot = strchr(src, '.'); const char *eow; /* end of words. */ if (dot == src) return 0; else if (!dot) eow = src+strlen(src); else { unsigned byte1,byte2,byte3,byte4; char more; for (eow = dot-1; eow > src && TOR_ISDIGIT(*eow); --eow) ; if (*eow != ':') return 0; ++eow; /* We use "scanf" because some platform inet_aton()s are too lax * about IPv4 addresses of the form "1.2.3" */ if (tor_sscanf(eow, "%3u.%3u.%3u.%3u%c", &byte1,&byte2,&byte3,&byte4,&more) != 4) return 0; if (byte1 > 255 || byte2 > 255 || byte3 > 255 || byte4 > 255) return 0; words[6] = (byte1<<8) | byte2; words[7] = (byte3<<8) | byte4; setWords += 2; } i = 0; while (src < eow) { if (i > 7) return 0; if (TOR_ISXDIGIT(*src)) { char *next; ssize_t len; long r = strtol(src, &next, 16); tor_assert(next != NULL); tor_assert(next != src); len = *next == '\0' ? eow - src : next - src; if (len > 4) return 0; if (len > 1 && !TOR_ISXDIGIT(src[1])) return 0; /* 0x is not valid */ tor_assert(r >= 0); tor_assert(r < 65536); words[i++] = (uint16_t)r; setWords++; src = next; if (*src != ':' && src != eow) return 0; ++src; } else if (*src == ':' && i > 0 && gapPos == -1) { gapPos = i; ++src; } else if (*src == ':' && i == 0 && src+1 < eow && src[1] == ':' && gapPos == -1) { gapPos = i; src += 2; } else { return 0; } } if (setWords > 8 || (setWords == 8 && gapPos != -1) || (setWords < 8 && gapPos == -1)) return 0; if (gapPos >= 0) { int nToMove = setWords - (dot ? 2 : 0) - gapPos; int gapLen = 8 - setWords; tor_assert(nToMove >= 0); memmove(&words[gapPos+gapLen], &words[gapPos], sizeof(uint16_t)*nToMove); memset(&words[gapPos], 0, sizeof(uint16_t)*gapLen); } for (i = 0; i < 8; ++i) { out->s6_addr[2*i ] = words[i] >> 8; out->s6_addr[2*i+1] = words[i] & 0xff; } return 1; } else { return -1; } } /** Similar behavior to Unix gethostbyname: resolve name, and set * *addr to the proper IP address, in host byte order. Returns 0 * on success, -1 on failure; 1 on transient failure. * * (This function exists because standard windows gethostbyname * doesn't treat raw IP addresses properly.) */ MOCK_IMPL(int, tor_lookup_hostname,(const char *name, uint32_t *addr)) { tor_addr_t myaddr; int ret; if ((ret = tor_addr_lookup(name, AF_INET, &myaddr))) return ret; if (tor_addr_family(&myaddr) == AF_INET) { *addr = tor_addr_to_ipv4h(&myaddr); return ret; } return -1; } /** Hold the result of our call to uname. */ static char uname_result[256]; /** True iff uname_result is set. */ static int uname_result_is_set = 0; /** Return a pointer to a description of our platform. */ const char * get_uname(void) { #ifdef HAVE_UNAME struct utsname u; #endif if (!uname_result_is_set) { #ifdef HAVE_UNAME if (uname(&u) != -1) { /* (Linux says 0 is success, Solaris says 1 is success) */ strlcpy(uname_result, u.sysname, sizeof(uname_result)); } else #endif { #ifdef _WIN32 OSVERSIONINFOEX info; int i; const char *plat = NULL; static struct { unsigned major; unsigned minor; const char *version; } win_version_table[] = { { 6, 2, "Windows 8" }, { 6, 1, "Windows 7" }, { 6, 0, "Windows Vista" }, { 5, 2, "Windows Server 2003" }, { 5, 1, "Windows XP" }, { 5, 0, "Windows 2000" }, /* { 4, 0, "Windows NT 4.0" }, */ { 4, 90, "Windows Me" }, { 4, 10, "Windows 98" }, /* { 4, 0, "Windows 95" } */ { 3, 51, "Windows NT 3.51" }, { 0, 0, NULL } }; memset(&info, 0, sizeof(info)); info.dwOSVersionInfoSize = sizeof(info); if (! GetVersionEx((LPOSVERSIONINFO)&info)) { strlcpy(uname_result, "Bizarre version of Windows where GetVersionEx" " doesn't work.", sizeof(uname_result)); uname_result_is_set = 1; return uname_result; } if (info.dwMajorVersion == 4 && info.dwMinorVersion == 0) { if (info.dwPlatformId == VER_PLATFORM_WIN32_NT) plat = "Windows NT 4.0"; else plat = "Windows 95"; } else { for (i=0; win_version_table[i].major>0; ++i) { if (win_version_table[i].major == info.dwMajorVersion && win_version_table[i].minor == info.dwMinorVersion) { plat = win_version_table[i].version; break; } } } if (plat) { strlcpy(uname_result, plat, sizeof(uname_result)); } else { if (info.dwMajorVersion > 6 || (info.dwMajorVersion==6 && info.dwMinorVersion>2)) tor_snprintf(uname_result, sizeof(uname_result), "Very recent version of Windows [major=%d,minor=%d]", (int)info.dwMajorVersion,(int)info.dwMinorVersion); else tor_snprintf(uname_result, sizeof(uname_result), "Unrecognized version of Windows [major=%d,minor=%d]", (int)info.dwMajorVersion,(int)info.dwMinorVersion); } #ifdef VER_NT_SERVER if (info.wProductType == VER_NT_SERVER || info.wProductType == VER_NT_DOMAIN_CONTROLLER) { strlcat(uname_result, " [server]", sizeof(uname_result)); } #endif #else strlcpy(uname_result, "Unknown platform", sizeof(uname_result)); #endif } uname_result_is_set = 1; } return uname_result; } /* * Process control */ /** Implementation logic for compute_num_cpus(). */ static int compute_num_cpus_impl(void) { #ifdef _WIN32 SYSTEM_INFO info; memset(&info, 0, sizeof(info)); GetSystemInfo(&info); if (info.dwNumberOfProcessors >= 1 && info.dwNumberOfProcessors < INT_MAX) return (int)info.dwNumberOfProcessors; else return -1; #elif defined(HAVE_SYSCONF) #ifdef _SC_NPROCESSORS_CONF long cpus_conf = sysconf(_SC_NPROCESSORS_CONF); #else long cpus_conf = -1; #endif #ifdef _SC_NPROCESSORS_ONLN long cpus_onln = sysconf(_SC_NPROCESSORS_ONLN); #else long cpus_onln = -1; #endif long cpus = -1; if (cpus_conf > 0 && cpus_onln < 0) { cpus = cpus_conf; } else if (cpus_onln > 0 && cpus_conf < 0) { cpus = cpus_onln; } else if (cpus_onln > 0 && cpus_conf > 0) { if (cpus_onln < cpus_conf) { log_notice(LD_GENERAL, "I think we have %ld CPUS, but only %ld of them " "are available. Telling Tor to only use %ld. You can over" "ride this with the NumCPUs option", cpus_conf, cpus_onln, cpus_onln); } cpus = cpus_onln; } if (cpus >= 1 && cpus < INT_MAX) return (int)cpus; else return -1; #else return -1; #endif } #define MAX_DETECTABLE_CPUS 16 /** Return how many CPUs we are running with. We assume that nobody is * using hot-swappable CPUs, so we don't recompute this after the first * time. Return -1 if we don't know how to tell the number of CPUs on this * system. */ int compute_num_cpus(void) { static int num_cpus = -2; if (num_cpus == -2) { num_cpus = compute_num_cpus_impl(); tor_assert(num_cpus != -2); if (num_cpus > MAX_DETECTABLE_CPUS) log_notice(LD_GENERAL, "Wow! I detected that you have %d CPUs. I " "will not autodetect any more than %d, though. If you " "want to configure more, set NumCPUs in your torrc", num_cpus, MAX_DETECTABLE_CPUS); } return num_cpus; } /** Set *timeval to the current time of day. On error, log and terminate. * (Same as gettimeofday(timeval,NULL), but never returns -1.) */ void tor_gettimeofday(struct timeval *timeval) { #ifdef _WIN32 /* Epoch bias copied from perl: number of units between windows epoch and * Unix epoch. */ #define EPOCH_BIAS U64_LITERAL(116444736000000000) #define UNITS_PER_SEC U64_LITERAL(10000000) #define USEC_PER_SEC U64_LITERAL(1000000) #define UNITS_PER_USEC U64_LITERAL(10) union { uint64_t ft_64; FILETIME ft_ft; } ft; /* number of 100-nsec units since Jan 1, 1601 */ GetSystemTimeAsFileTime(&ft.ft_ft); if (ft.ft_64 < EPOCH_BIAS) { log_err(LD_GENERAL,"System time is before 1970; failing."); exit(1); } ft.ft_64 -= EPOCH_BIAS; timeval->tv_sec = (unsigned) (ft.ft_64 / UNITS_PER_SEC); timeval->tv_usec = (unsigned) ((ft.ft_64 / UNITS_PER_USEC) % USEC_PER_SEC); #elif defined(HAVE_GETTIMEOFDAY) if (gettimeofday(timeval, NULL)) { log_err(LD_GENERAL,"gettimeofday failed."); /* If gettimeofday dies, we have either given a bad timezone (we didn't), or segfaulted.*/ exit(1); } #elif defined(HAVE_FTIME) struct timeb tb; ftime(&tb); timeval->tv_sec = tb.time; timeval->tv_usec = tb.millitm * 1000; #else #error "No way to get time." #endif return; } #if !defined(_WIN32) /** Defined iff we need to add locks when defining fake versions of reentrant * versions of time-related functions. */ #define TIME_FNS_NEED_LOCKS #endif /** Helper: Deal with confused or out-of-bounds values from localtime_r and * friends. (On some platforms, they can give out-of-bounds values or can * return NULL.) If islocal, this is a localtime result; otherwise * it's from gmtime. The function returned r, when given timep * as its input. If we need to store new results, store them in * resultbuf. */ static struct tm * correct_tm(int islocal, const time_t *timep, struct tm *resultbuf, struct tm *r) { const char *outcome; if (PREDICT_LIKELY(r)) { /* We can't strftime dates after 9999 CE, and we want to avoid dates * before 1 CE (avoiding the year 0 issue and negative years). */ if (r->tm_year > 8099) { r->tm_year = 8099; r->tm_mon = 11; r->tm_mday = 31; r->tm_yday = 364; r->tm_hour = 23; r->tm_min = 59; r->tm_sec = 59; } else if (r->tm_year < (1-1900)) { r->tm_year = (1-1900); r->tm_mon = 0; r->tm_mday = 1; r->tm_yday = 0; r->tm_hour = 0; r->tm_min = 0; r->tm_sec = 0; } return r; } /* If we get here, gmtime or localtime returned NULL. It might have done * this because of overrun or underrun, or it might have done it because of * some other weird issue. */ if (timep) { if (*timep < 0) { r = resultbuf; r->tm_year = 70; /* 1970 CE */ r->tm_mon = 0; r->tm_mday = 1; r->tm_yday = 0; r->tm_hour = 0; r->tm_min = 0 ; r->tm_sec = 0; outcome = "Rounding up to 1970"; goto done; } else if (*timep >= INT32_MAX) { /* Rounding down to INT32_MAX isn't so great, but keep in mind that we * only do it if gmtime/localtime tells us NULL. */ r = resultbuf; r->tm_year = 137; /* 2037 CE */ r->tm_mon = 11; r->tm_mday = 31; r->tm_yday = 364; r->tm_hour = 23; r->tm_min = 59; r->tm_sec = 59; outcome = "Rounding down to 2037"; goto done; } } /* If we get here, then gmtime/localtime failed without getting an extreme * value for *timep */ tor_fragile_assert(); r = resultbuf; memset(resultbuf, 0, sizeof(struct tm)); outcome="can't recover"; done: log_warn(LD_BUG, "%s("I64_FORMAT") failed with error %s: %s", islocal?"localtime":"gmtime", timep?I64_PRINTF_ARG(*timep):0, strerror(errno), outcome); return r; } /** @{ */ /** As localtime_r, but defined for platforms that don't have it: * * Convert *timep to a struct tm in local time, and store the value in * *result. Return the result on success, or NULL on failure. */ #ifdef HAVE_LOCALTIME_R struct tm * tor_localtime_r(const time_t *timep, struct tm *result) { struct tm *r; r = localtime_r(timep, result); return correct_tm(1, timep, result, r); } #elif defined(TIME_FNS_NEED_LOCKS) struct tm * tor_localtime_r(const time_t *timep, struct tm *result) { struct tm *r; static tor_mutex_t *m=NULL; if (!m) { m=tor_mutex_new(); } tor_assert(result); tor_mutex_acquire(m); r = localtime(timep); if (r) memcpy(result, r, sizeof(struct tm)); tor_mutex_release(m); return correct_tm(1, timep, result, r); } #else struct tm * tor_localtime_r(const time_t *timep, struct tm *result) { struct tm *r; tor_assert(result); r = localtime(timep); if (r) memcpy(result, r, sizeof(struct tm)); return correct_tm(1, timep, result, r); } #endif /** @} */ /** @{ */ /** As gmtime_r, but defined for platforms that don't have it: * * Convert *timep to a struct tm in UTC, and store the value in * *result. Return the result on success, or NULL on failure. */ #ifdef HAVE_GMTIME_R struct tm * tor_gmtime_r(const time_t *timep, struct tm *result) { struct tm *r; r = gmtime_r(timep, result); return correct_tm(0, timep, result, r); } #elif defined(TIME_FNS_NEED_LOCKS) struct tm * tor_gmtime_r(const time_t *timep, struct tm *result) { struct tm *r; static tor_mutex_t *m=NULL; if (!m) { m=tor_mutex_new(); } tor_assert(result); tor_mutex_acquire(m); r = gmtime(timep); if (r) memcpy(result, r, sizeof(struct tm)); tor_mutex_release(m); return correct_tm(0, timep, result, r); } #else struct tm * tor_gmtime_r(const time_t *timep, struct tm *result) { struct tm *r; tor_assert(result); r = gmtime(timep); if (r) memcpy(result, r, sizeof(struct tm)); return correct_tm(0, timep, result, r); } #endif #if defined(HAVE_MLOCKALL) && HAVE_DECL_MLOCKALL && defined(RLIMIT_MEMLOCK) /** Attempt to raise the current and max rlimit to infinity for our process. * This only needs to be done once and can probably only be done when we have * not already dropped privileges. */ static int tor_set_max_memlock(void) { /* Future consideration for Windows is probably SetProcessWorkingSetSize * This is similar to setting the memory rlimit of RLIMIT_MEMLOCK * http://msdn.microsoft.com/en-us/library/ms686234(VS.85).aspx */ struct rlimit limit; /* RLIM_INFINITY is -1 on some platforms. */ limit.rlim_cur = RLIM_INFINITY; limit.rlim_max = RLIM_INFINITY; if (setrlimit(RLIMIT_MEMLOCK, &limit) == -1) { if (errno == EPERM) { log_warn(LD_GENERAL, "You appear to lack permissions to change memory " "limits. Are you root?"); } log_warn(LD_GENERAL, "Unable to raise RLIMIT_MEMLOCK: %s", strerror(errno)); return -1; } return 0; } #endif /** Attempt to lock all current and all future memory pages. * This should only be called once and while we're privileged. * Like mlockall() we return 0 when we're successful and -1 when we're not. * Unlike mlockall() we return 1 if we've already attempted to lock memory. */ int tor_mlockall(void) { static int memory_lock_attempted = 0; if (memory_lock_attempted) { return 1; } memory_lock_attempted = 1; /* * Future consideration for Windows may be VirtualLock * VirtualLock appears to implement mlock() but not mlockall() * * http://msdn.microsoft.com/en-us/library/aa366895(VS.85).aspx */ #if defined(HAVE_MLOCKALL) && HAVE_DECL_MLOCKALL && defined(RLIMIT_MEMLOCK) if (tor_set_max_memlock() == 0) { log_debug(LD_GENERAL, "RLIMIT_MEMLOCK is now set to RLIM_INFINITY."); } if (mlockall(MCL_CURRENT|MCL_FUTURE) == 0) { log_info(LD_GENERAL, "Insecure OS paging is effectively disabled."); return 0; } else { if (errno == ENOSYS) { /* Apple - it's 2009! I'm looking at you. Grrr. */ log_notice(LD_GENERAL, "It appears that mlockall() is not available on " "your platform."); } else if (errno == EPERM) { log_notice(LD_GENERAL, "It appears that you lack the permissions to " "lock memory. Are you root?"); } log_notice(LD_GENERAL, "Unable to lock all current and future memory " "pages: %s", strerror(errno)); return -1; } #else log_warn(LD_GENERAL, "Unable to lock memory pages. mlockall() unsupported?"); return -1; #endif } /** * On Windows, WSAEWOULDBLOCK is not always correct: when you see it, * you need to ask the socket for its actual errno. Also, you need to * get your errors from WSAGetLastError, not errno. (If you supply a * socket of -1, we check WSAGetLastError, but don't correct * WSAEWOULDBLOCKs.) * * The upshot of all of this is that when a socket call fails, you * should call tor_socket_errno at most once on the failing * socket to get the error. */ #if defined(_WIN32) int tor_socket_errno(tor_socket_t sock) { int optval, optvallen=sizeof(optval); int err = WSAGetLastError(); if (err == WSAEWOULDBLOCK && SOCKET_OK(sock)) { if (getsockopt(sock, SOL_SOCKET, SO_ERROR, (void*)&optval, &optvallen)) return err; if (optval) return optval; } return err; } #endif #if defined(_WIN32) #define E(code, s) { code, (s " [" #code " ]") } struct { int code; const char *msg; } windows_socket_errors[] = { E(WSAEINTR, "Interrupted function call"), E(WSAEACCES, "Permission denied"), E(WSAEFAULT, "Bad address"), E(WSAEINVAL, "Invalid argument"), E(WSAEMFILE, "Too many open files"), E(WSAEWOULDBLOCK, "Resource temporarily unavailable"), E(WSAEINPROGRESS, "Operation now in progress"), E(WSAEALREADY, "Operation already in progress"), E(WSAENOTSOCK, "Socket operation on nonsocket"), E(WSAEDESTADDRREQ, "Destination address required"), E(WSAEMSGSIZE, "Message too long"), E(WSAEPROTOTYPE, "Protocol wrong for socket"), E(WSAENOPROTOOPT, "Bad protocol option"), E(WSAEPROTONOSUPPORT, "Protocol not supported"), E(WSAESOCKTNOSUPPORT, "Socket type not supported"), /* What's the difference between NOTSUPP and NOSUPPORT? :) */ E(WSAEOPNOTSUPP, "Operation not supported"), E(WSAEPFNOSUPPORT, "Protocol family not supported"), E(WSAEAFNOSUPPORT, "Address family not supported by protocol family"), E(WSAEADDRINUSE, "Address already in use"), E(WSAEADDRNOTAVAIL, "Cannot assign requested address"), E(WSAENETDOWN, "Network is down"), E(WSAENETUNREACH, "Network is unreachable"), E(WSAENETRESET, "Network dropped connection on reset"), E(WSAECONNABORTED, "Software caused connection abort"), E(WSAECONNRESET, "Connection reset by peer"), E(WSAENOBUFS, "No buffer space available"), E(WSAEISCONN, "Socket is already connected"), E(WSAENOTCONN, "Socket is not connected"), E(WSAESHUTDOWN, "Cannot send after socket shutdown"), E(WSAETIMEDOUT, "Connection timed out"), E(WSAECONNREFUSED, "Connection refused"), E(WSAEHOSTDOWN, "Host is down"), E(WSAEHOSTUNREACH, "No route to host"), E(WSAEPROCLIM, "Too many processes"), /* Yes, some of these start with WSA, not WSAE. No, I don't know why. */ E(WSASYSNOTREADY, "Network subsystem is unavailable"), E(WSAVERNOTSUPPORTED, "Winsock.dll out of range"), E(WSANOTINITIALISED, "Successful WSAStartup not yet performed"), E(WSAEDISCON, "Graceful shutdown now in progress"), #ifdef WSATYPE_NOT_FOUND E(WSATYPE_NOT_FOUND, "Class type not found"), #endif E(WSAHOST_NOT_FOUND, "Host not found"), E(WSATRY_AGAIN, "Nonauthoritative host not found"), E(WSANO_RECOVERY, "This is a nonrecoverable error"), E(WSANO_DATA, "Valid name, no data record of requested type)"), /* There are some more error codes whose numeric values are marked * OS dependent. They start with WSA_, apparently for the same * reason that practitioners of some craft traditions deliberately * introduce imperfections into their baskets and rugs "to allow the * evil spirits to escape." If we catch them, then our binaries * might not report consistent results across versions of Windows. * Thus, I'm going to let them all fall through. */ { -1, NULL }, }; /** There does not seem to be a strerror equivalent for Winsock errors. * Naturally, we have to roll our own. */ const char * tor_socket_strerror(int e) { int i; for (i=0; windows_socket_errors[i].code >= 0; ++i) { if (e == windows_socket_errors[i].code) return windows_socket_errors[i].msg; } return strerror(e); } #endif /** Called before we make any calls to network-related functions. * (Some operating systems require their network libraries to be * initialized.) */ int network_init(void) { #ifdef _WIN32 /* This silly exercise is necessary before windows will allow * gethostbyname to work. */ WSADATA WSAData; int r; r = WSAStartup(0x101,&WSAData); if (r) { log_warn(LD_NET,"Error initializing windows network layer: code was %d",r); return -1; } if (sizeof(SOCKET) != sizeof(tor_socket_t)) { log_warn(LD_BUG,"The tor_socket_t type does not match SOCKET in size; Tor " "might not work. (Sizes are %d and %d respectively.)", (int)sizeof(tor_socket_t), (int)sizeof(SOCKET)); } /* WSAData.iMaxSockets might show the max sockets we're allowed to use. * We might use it to complain if we're trying to be a server but have * too few sockets available. */ #endif return 0; } #ifdef _WIN32 /** Return a newly allocated string describing the windows system error code * err. Note that error codes are different from errno. Error codes * come from GetLastError() when a winapi call fails. errno is set only when * ANSI functions fail. Whee. */ char * format_win32_error(DWORD err) { TCHAR *str = NULL; char *result; DWORD n; /* Somebody once decided that this interface was better than strerror(). */ n = FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, err, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPVOID)&str, 0, NULL); if (str && n) { #ifdef UNICODE size_t len; if (n > 128*1024) len = (128 * 1024) * 2 + 1; /* This shouldn't be possible, but let's * make sure. */ else len = n * 2 + 1; result = tor_malloc(len); wcstombs(result,str,len); result[len-1] = '\0'; #else result = tor_strdup(str); #endif } else { result = tor_strdup(""); } if (str) { LocalFree(str); /* LocalFree != free() */ } return result; } #endif #if defined(HW_PHYSMEM64) /* This appears to be an OpenBSD thing */ #define INT64_HW_MEM HW_PHYSMEM64 #elif defined(HW_MEMSIZE) /* OSX defines this one */ #define INT64_HW_MEM HW_MEMSIZE #endif /** * Helper: try to detect the total system memory, and return it. On failure, * return 0. */ static uint64_t get_total_system_memory_impl(void) { #if defined(__linux__) /* On linux, sysctl is deprecated. Because proc is so awesome that you * shouldn't _want_ to write portable code, I guess? */ unsigned long long result=0; int fd = -1; char *s = NULL; const char *cp; size_t file_size=0; if (-1 == (fd = tor_open_cloexec("/proc/meminfo",O_RDONLY,0))) return 0; s = read_file_to_str_until_eof(fd, 65536, &file_size); if (!s) goto err; cp = strstr(s, "MemTotal:"); if (!cp) goto err; /* Use the system sscanf so that space will match a wider number of space */ if (sscanf(cp, "MemTotal: %llu kB\n", &result) != 1) goto err; close(fd); tor_free(s); return result * 1024; err: tor_free(s); close(fd); return 0; #elif defined (_WIN32) /* Windows has MEMORYSTATUSEX; pretty straightforward. */ MEMORYSTATUSEX ms; memset(&ms, 0, sizeof(ms)); ms.dwLength = sizeof(ms); if (! GlobalMemoryStatusEx(&ms)) return 0; return ms.ullTotalPhys; #elif defined(HAVE_SYSCTL) && defined(INT64_HW_MEM) /* On many systems, HW_PYHSMEM is clipped to 32 bits; let's use a better * variant if we know about it. */ uint64_t memsize = 0; size_t len = sizeof(memsize); int mib[2] = {CTL_HW, INT64_HW_MEM}; if (sysctl(mib,2,&memsize,&len,NULL,0)) return 0; return memsize; #elif defined(HAVE_SYSCTL) && defined(HW_PHYSMEM) /* On some systems (like FreeBSD I hope) you can use a size_t with * HW_PHYSMEM. */ size_t memsize=0; size_t len = sizeof(memsize); int mib[2] = {CTL_HW, HW_USERMEM}; if (sysctl(mib,2,&memsize,&len,NULL,0)) return 0; return memsize; #else /* I have no clue. */ return 0; #endif } /** * Try to find out how much physical memory the system has. On success, * return 0 and set *mem_out to that value. On failure, return -1. */ int get_total_system_memory(size_t *mem_out) { static size_t mem_cached=0; uint64_t m = get_total_system_memory_impl(); if (0 == m) { /* We couldn't find our memory total */ if (0 == mem_cached) { /* We have no cached value either */ *mem_out = 0; return -1; } *mem_out = mem_cached; return 0; } #if SIZE_MAX != UINT64_MAX if (m > SIZE_MAX) { /* I think this could happen if we're a 32-bit Tor running on a 64-bit * system: we could have more system memory than would fit in a * size_t. */ m = SIZE_MAX; } #endif *mem_out = mem_cached = (size_t) m; return 0; } #ifdef TOR_UNIT_TESTS /** Delay for msec milliseconds. Only used in tests. */ void tor_sleep_msec(int msec) { #ifdef _WIN32 Sleep(msec); #elif defined(HAVE_USLEEP) sleep(msec / 1000); /* Some usleep()s hate sleeping more than 1 sec */ usleep((msec % 1000) * 1000); #elif defined(HAVE_SYS_SELECT_H) struct timeval tv = { msec / 1000, (msec % 1000) * 1000}; select(0, NULL, NULL, NULL, &tv); #else sleep(CEIL_DIV(msec, 1000)); #endif } #endif /** Emit the password prompt prompt, then read up to buflen * bytes of passphrase into output. Return the number of bytes in * the passphrase, excluding terminating NUL. */ ssize_t tor_getpass(const char *prompt, char *output, size_t buflen) { tor_assert(buflen <= SSIZE_MAX); tor_assert(buflen >= 1); #if defined(HAVE_READPASSPHRASE) char *pwd = readpassphrase(prompt, output, buflen, RPP_ECHO_OFF); if (pwd == NULL) return -1; return strlen(pwd); #elif defined(_WIN32) int r = -1; while (*prompt) { _putch(*prompt++); } tor_assert(buflen <= INT_MAX); wchar_t *buf = tor_calloc(buflen, sizeof(wchar_t)); wchar_t *ptr = buf, *lastch = buf + buflen - 1; while (ptr < lastch) { wint_t ch = _getwch(); switch (ch) { case '\r': case '\n': case WEOF: goto done_reading; case 3: goto done; /* Can't actually read ctrl-c this way. */ case '\b': if (ptr > buf) --ptr; continue; case 0: case 0xe0: ch = _getwch(); /* Ignore; this is a function or arrow key */ break; default: *ptr++ = ch; break; } } done_reading: ; #ifndef WC_ERR_INVALID_CHARS #define WC_ERR_INVALID_CHARS 0x80 #endif /* Now convert it to UTF-8 */ r = WideCharToMultiByte(CP_UTF8, WC_NO_BEST_FIT_CHARS|WC_ERR_INVALID_CHARS, buf, (int)(ptr-buf), output, (int)(buflen-1), NULL, NULL); if (r <= 0) { r = -1; goto done; } tor_assert(r < (int)buflen); output[r] = 0; done: SecureZeroMemory(buf, sizeof(wchar_t)*buflen); tor_free(buf); return r; #else #error "No implementation for tor_getpass found!" #endif } /** Return the amount of free disk space we have permission to use, in * bytes. Return -1 if the amount of free space can't be determined. */ int64_t tor_get_avail_disk_space(const char *path) { #ifdef HAVE_STATVFS struct statvfs st; int r; memset(&st, 0, sizeof(st)); r = statvfs(path, &st); if (r < 0) return -1; int64_t result = st.f_bavail; if (st.f_frsize) { result *= st.f_frsize; } else if (st.f_bsize) { result *= st.f_bsize; } else { return -1; } return result; #elif defined(_WIN32) ULARGE_INTEGER freeBytesAvail; BOOL ok; ok = GetDiskFreeSpaceEx(path, &freeBytesAvail, NULL, NULL); if (!ok) { return -1; } return (int64_t)freeBytesAvail.QuadPart; #else (void)path; errno = ENOSYS; return -1; #endif } tor-0.2.7.6/src/common/torlog.h0000644000175000017500000002210012631612325013143 00000000000000/* Copyright (c) 2001, Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file torlog.h * * \brief Headers for log.c **/ #ifndef TOR_TORLOG_H #include "compat.h" #include "testsupport.h" #ifdef HAVE_SYSLOG_H #include #define LOG_WARN LOG_WARNING #if LOG_DEBUG < LOG_ERR #error "Your syslog.h thinks high numbers are more important. " \ "We aren't prepared to deal with that." #endif #else /* Note: Syslog's logging code refers to priorities, with 0 being the most * important. Thus, all our comparisons needed to be reversed when we added * syslog support. * * The upshot of this is that comments about log levels may be messed up: for * "maximum severity" read "most severe" and "numerically *lowest* severity". */ /** Debug-level severity: for hyper-verbose messages of no interest to * anybody but developers. */ #define LOG_DEBUG 7 /** Info-level severity: for messages that appear frequently during normal * operation. */ #define LOG_INFO 6 /** Notice-level severity: for messages that appear infrequently * during normal operation; that the user will probably care about; * and that are not errors. */ #define LOG_NOTICE 5 /** Warn-level severity: for messages that only appear when something has gone * wrong. */ #define LOG_WARN 4 /** Error-level severity: for messages that only appear when something has gone * very wrong, and the Tor process can no longer proceed. */ #define LOG_ERR 3 #endif /* Logging domains */ /** Catch-all for miscellaneous events and fatal errors. */ #define LD_GENERAL (1u<<0) /** The cryptography subsystem. */ #define LD_CRYPTO (1u<<1) /** Networking. */ #define LD_NET (1u<<2) /** Parsing and acting on our configuration. */ #define LD_CONFIG (1u<<3) /** Reading and writing from the filesystem. */ #define LD_FS (1u<<4) /** Other servers' (non)compliance with the Tor protocol. */ #define LD_PROTOCOL (1u<<5) /** Memory management. */ #define LD_MM (1u<<6) /** HTTP implementation. */ #define LD_HTTP (1u<<7) /** Application (socks) requests. */ #define LD_APP (1u<<8) /** Communication via the controller protocol. */ #define LD_CONTROL (1u<<9) /** Building, using, and managing circuits. */ #define LD_CIRC (1u<<10) /** Hidden services. */ #define LD_REND (1u<<11) /** Internal errors in this Tor process. */ #define LD_BUG (1u<<12) /** Learning and using information about Tor servers. */ #define LD_DIR (1u<<13) /** Learning and using information about Tor servers. */ #define LD_DIRSERV (1u<<14) /** Onion routing protocol. */ #define LD_OR (1u<<15) /** Generic edge-connection functionality. */ #define LD_EDGE (1u<<16) #define LD_EXIT LD_EDGE /** Bandwidth accounting. */ #define LD_ACCT (1u<<17) /** Router history */ #define LD_HIST (1u<<18) /** OR handshaking */ #define LD_HANDSHAKE (1u<<19) /** Heartbeat messages */ #define LD_HEARTBEAT (1u<<20) /** Abstract channel_t code */ #define LD_CHANNEL (1u<<21) /** Scheduler */ #define LD_SCHED (1u<<22) /** Number of logging domains in the code. */ #define N_LOGGING_DOMAINS 23 /** This log message is not safe to send to a callback-based logger * immediately. Used as a flag, not a log domain. */ #define LD_NOCB (1u<<31) /** This log message should not include a function name, even if it otherwise * would. Used as a flag, not a log domain. */ #define LD_NOFUNCNAME (1u<<30) /** Mask of zero or more log domains, OR'd together. */ typedef uint32_t log_domain_mask_t; /** Configures which severities are logged for each logging domain for a given * log target. */ typedef struct log_severity_list_t { /** For each log severity, a bitmask of which domains a given logger is * logging. */ log_domain_mask_t masks[LOG_DEBUG-LOG_ERR+1]; } log_severity_list_t; /** Callback type used for add_callback_log. */ typedef void (*log_callback)(int severity, uint32_t domain, const char *msg); void init_logging(int disable_startup_queue); int parse_log_level(const char *level); const char *log_level_to_string(int level); int parse_log_severity_config(const char **cfg, log_severity_list_t *severity_out); void set_log_severity_config(int minSeverity, int maxSeverity, log_severity_list_t *severity_out); void add_stream_log(const log_severity_list_t *severity, const char *name, int fd); int add_file_log(const log_severity_list_t *severity, const char *filename, const int truncate); #ifdef HAVE_SYSLOG_H int add_syslog_log(const log_severity_list_t *severity); #endif int add_callback_log(const log_severity_list_t *severity, log_callback cb); void logs_set_domain_logging(int enabled); int get_min_log_level(void); void switch_logs_debug(void); void logs_free_all(void); void add_temp_log(int min_severity); void close_temp_logs(void); void rollback_log_changes(void); void mark_logs_temp(void); void change_callback_log_severity(int loglevelMin, int loglevelMax, log_callback cb); void flush_pending_log_callbacks(void); void flush_log_messages_from_startup(void); void log_set_application_name(const char *name); void set_log_time_granularity(int granularity_msec); void truncate_logs(void); void tor_log(int severity, log_domain_mask_t domain, const char *format, ...) CHECK_PRINTF(3,4); void tor_log_err_sigsafe(const char *m, ...); int tor_log_get_sigsafe_err_fds(const int **out); void tor_log_update_sigsafe_err_fds(void); struct smartlist_t; void tor_log_get_logfile_names(struct smartlist_t *out); extern int log_global_min_severity_; void log_fn_(int severity, log_domain_mask_t domain, const char *funcname, const char *format, ...) CHECK_PRINTF(4,5); struct ratelim_t; void log_fn_ratelim_(struct ratelim_t *ratelim, int severity, log_domain_mask_t domain, const char *funcname, const char *format, ...) CHECK_PRINTF(5,6); #if defined(__GNUC__) /* These are the GCC varidaic macros, so that older versions of GCC don't * break. */ /** Log a message at level severity, using a pretty-printed version * of the current function name. */ #define log_fn(severity, domain, args...) \ log_fn_(severity, domain, __PRETTY_FUNCTION__, args) /** As log_fn, but use ratelim (an instance of ratelim_t) to control * the frequency at which messages can appear. */ #define log_fn_ratelim(ratelim, severity, domain, args...) \ log_fn_ratelim_(ratelim, severity, domain, __PRETTY_FUNCTION__, args) #define log_debug(domain, args...) \ STMT_BEGIN \ if (PREDICT_UNLIKELY(log_global_min_severity_ == LOG_DEBUG)) \ log_fn_(LOG_DEBUG, domain, __PRETTY_FUNCTION__, args); \ STMT_END #define log_info(domain, args...) \ log_fn_(LOG_INFO, domain, __PRETTY_FUNCTION__, args) #define log_notice(domain, args...) \ log_fn_(LOG_NOTICE, domain, __PRETTY_FUNCTION__, args) #define log_warn(domain, args...) \ log_fn_(LOG_WARN, domain, __PRETTY_FUNCTION__, args) #define log_err(domain, args...) \ log_fn_(LOG_ERR, domain, __PRETTY_FUNCTION__, args) #else /* ! defined(__GNUC__) */ /* Here are the c99 variadic macros, to work with non-GCC compilers */ #define log_debug(domain, args, ...) \ STMT_BEGIN \ if (PREDICT_UNLIKELY(log_global_min_severity_ == LOG_DEBUG)) \ log_fn_(LOG_DEBUG, domain, __FUNCTION__, args, ##__VA_ARGS__); \ STMT_END #define log_info(domain, args,...) \ log_fn_(LOG_INFO, domain, __FUNCTION__, args, ##__VA_ARGS__) #define log_notice(domain, args,...) \ log_fn_(LOG_NOTICE, domain, __FUNCTION__, args, ##__VA_ARGS__) #define log_warn(domain, args,...) \ log_fn_(LOG_WARN, domain, __FUNCTION__, args, ##__VA_ARGS__) #define log_err(domain, args,...) \ log_fn_(LOG_ERR, domain, __FUNCTION__, args, ##__VA_ARGS__) /** Log a message at level severity, using a pretty-printed version * of the current function name. */ #define log_fn(severity, domain, args,...) \ log_fn_(severity, domain, __FUNCTION__, args, ##__VA_ARGS__) /** As log_fn, but use ratelim (an instance of ratelim_t) to control * the frequency at which messages can appear. */ #define log_fn_ratelim(ratelim, severity, domain, args,...) \ log_fn_ratelim_(ratelim, severity, domain, __FUNCTION__, \ args, ##__VA_ARGS__) #endif #ifdef LOG_PRIVATE MOCK_DECL(STATIC void, logv, (int severity, log_domain_mask_t domain, const char *funcname, const char *suffix, const char *format, va_list ap) CHECK_PRINTF(5,0)); #endif # define TOR_TORLOG_H #endif tor-0.2.7.6/src/common/tortls.c0000644000175000017500000025610512632034724013177 00000000000000/* Copyright (c) 2003, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file tortls.c * \brief Wrapper functions to present a consistent interface to * TLS, SSL, and X.509 functions from OpenSSL. **/ /* (Unlike other tor functions, these * are prefixed with tor_ in order to avoid conflicting with OpenSSL * functions and variables.) */ #include "orconfig.h" #include #ifdef _WIN32 /*wrkard for dtls1.h >= 0.9.8m of "#include "*/ #include #include #endif #ifdef __GNUC__ #define GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__) #endif #if __GNUC__ && GCC_VERSION >= 402 #if GCC_VERSION >= 406 #pragma GCC diagnostic push #endif /* Some versions of OpenSSL declare SSL_get_selected_srtp_profile twice in * srtp.h. Suppress the GCC warning so we can build with -Wredundant-decl. */ #pragma GCC diagnostic ignored "-Wredundant-decls" #endif #include #include "crypto.h" #if OPENSSL_VERSION_NUMBER < OPENSSL_V_SERIES(1,0,0) #error "We require OpenSSL >= 1.0.0" #endif #ifdef OPENSSL_NO_EC #error "We require OpenSSL with ECC support" #endif #include #include #include #include #include #include #include #include #if __GNUC__ && GCC_VERSION >= 402 #if GCC_VERSION >= 406 #pragma GCC diagnostic pop #else #pragma GCC diagnostic warning "-Wredundant-decls" #endif #endif #ifdef USE_BUFFEREVENTS #include #include #include #include "compat_libevent.h" #endif #include "tortls.h" #include "util.h" #include "torlog.h" #include "container.h" #include #define X509_get_notBefore_const(cert) \ ((const ASN1_TIME*) X509_get_notBefore((X509 *)cert)) #define X509_get_notAfter_const(cert) \ ((const ASN1_TIME*) X509_get_notAfter((X509 *)cert)) /* Enable the "v2" TLS handshake. */ #define V2_HANDSHAKE_SERVER #define V2_HANDSHAKE_CLIENT /* Copied from or.h */ #define LEGAL_NICKNAME_CHARACTERS \ "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" /** How long do identity certificates live? (sec) */ #define IDENTITY_CERT_LIFETIME (365*24*60*60) #define ADDR(tls) (((tls) && (tls)->address) ? tls->address : "peer") #if OPENSSL_VERSION_NUMBER < OPENSSL_V(1,0,0,'f') /* This is a version of OpenSSL before 1.0.0f. It does not have * the CVE-2011-4576 fix, and as such it can't use RELEASE_BUFFERS and * SSL3 safely at the same time. */ #define DISABLE_SSL3_HANDSHAKE #endif /* We redefine these so that we can run correctly even if the vendor gives us * a version of OpenSSL that does not match its header files. (Apple: I am * looking at you.) */ #ifndef SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION #define SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION 0x00040000L #endif #ifndef SSL3_FLAGS_ALLOW_UNSAFE_LEGACY_RENEGOTIATION #define SSL3_FLAGS_ALLOW_UNSAFE_LEGACY_RENEGOTIATION 0x0010 #endif /** Structure that we use for a single certificate. */ struct tor_x509_cert_t { X509 *cert; uint8_t *encoded; size_t encoded_len; unsigned pkey_digests_set : 1; digests_t cert_digests; digests_t pkey_digests; }; /** Holds a SSL_CTX object and related state used to configure TLS * connections. */ typedef struct tor_tls_context_t { int refcnt; SSL_CTX *ctx; tor_x509_cert_t *my_link_cert; tor_x509_cert_t *my_id_cert; tor_x509_cert_t *my_auth_cert; crypto_pk_t *link_key; crypto_pk_t *auth_key; } tor_tls_context_t; /** Return values for tor_tls_classify_client_ciphers. * * @{ */ /** An error occurred when examining the client ciphers */ #define CIPHERS_ERR -1 /** The client cipher list indicates that a v1 handshake was in use. */ #define CIPHERS_V1 1 /** The client cipher list indicates that the client is using the v2 or the * v3 handshake, but that it is (probably!) lying about what ciphers it * supports */ #define CIPHERS_V2 2 /** The client cipher list indicates that the client is using the v2 or the * v3 handshake, and that it is telling the truth about what ciphers it * supports */ #define CIPHERS_UNRESTRICTED 3 /** @} */ #define TOR_TLS_MAGIC 0x71571571 typedef enum { TOR_TLS_ST_HANDSHAKE, TOR_TLS_ST_OPEN, TOR_TLS_ST_GOTCLOSE, TOR_TLS_ST_SENTCLOSE, TOR_TLS_ST_CLOSED, TOR_TLS_ST_RENEGOTIATE, TOR_TLS_ST_BUFFEREVENT } tor_tls_state_t; #define tor_tls_state_bitfield_t ENUM_BF(tor_tls_state_t) /** Holds a SSL object and its associated data. Members are only * accessed from within tortls.c. */ struct tor_tls_t { uint32_t magic; tor_tls_context_t *context; /** A link to the context object for this tls. */ SSL *ssl; /**< An OpenSSL SSL object. */ int socket; /**< The underlying file descriptor for this TLS connection. */ char *address; /**< An address to log when describing this connection. */ tor_tls_state_bitfield_t state : 3; /**< The current SSL state, * depending on which operations * have completed successfully. */ unsigned int isServer:1; /**< True iff this is a server-side connection */ unsigned int wasV2Handshake:1; /**< True iff the original handshake for * this connection used the updated version * of the connection protocol (client sends * different cipher list, server sends only * one certificate). */ /** True iff we should call negotiated_callback when we're done reading. */ unsigned int got_renegotiate:1; /** Return value from tor_tls_classify_client_ciphers, or 0 if we haven't * called that function yet. */ int8_t client_cipher_list_type; /** Incremented every time we start the server side of a handshake. */ uint8_t server_handshake_count; size_t wantwrite_n; /**< 0 normally, >0 if we returned wantwrite last * time. */ /** Last values retrieved from BIO_number_read()/write(); see * tor_tls_get_n_raw_bytes() for usage. */ unsigned long last_write_count; unsigned long last_read_count; /** If set, a callback to invoke whenever the client tries to renegotiate * the handshake. */ void (*negotiated_callback)(tor_tls_t *tls, void *arg); /** Argument to pass to negotiated_callback. */ void *callback_arg; }; /** The ex_data index in which we store a pointer to an SSL object's * corresponding tor_tls_t object. */ static int tor_tls_object_ex_data_index = -1; /** Helper: Allocate tor_tls_object_ex_data_index. */ static void tor_tls_allocate_tor_tls_object_ex_data_index(void) { if (tor_tls_object_ex_data_index == -1) { tor_tls_object_ex_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL); tor_assert(tor_tls_object_ex_data_index != -1); } } /** Helper: given a SSL* pointer, return the tor_tls_t object using that * pointer. */ static INLINE tor_tls_t * tor_tls_get_by_ssl(const SSL *ssl) { tor_tls_t *result = SSL_get_ex_data(ssl, tor_tls_object_ex_data_index); if (result) tor_assert(result->magic == TOR_TLS_MAGIC); return result; } static void tor_tls_context_decref(tor_tls_context_t *ctx); static void tor_tls_context_incref(tor_tls_context_t *ctx); static X509* tor_tls_create_certificate(crypto_pk_t *rsa, crypto_pk_t *rsa_sign, const char *cname, const char *cname_sign, unsigned int cert_lifetime); static int tor_tls_context_init_one(tor_tls_context_t **ppcontext, crypto_pk_t *identity, unsigned int key_lifetime, unsigned int flags, int is_client); static tor_tls_context_t *tor_tls_context_new(crypto_pk_t *identity, unsigned int key_lifetime, unsigned int flags, int is_client); static int check_cert_lifetime_internal(int severity, const X509 *cert, int past_tolerance, int future_tolerance); /** Global TLS contexts. We keep them here because nobody else needs * to touch them. * * @{ */ static tor_tls_context_t *server_tls_context = NULL; static tor_tls_context_t *client_tls_context = NULL; /**@}*/ /** True iff tor_tls_init() has been called. */ static int tls_library_is_initialized = 0; /* Module-internal error codes. */ #define TOR_TLS_SYSCALL_ (MIN_TOR_TLS_ERROR_VAL_ - 2) #define TOR_TLS_ZERORETURN_ (MIN_TOR_TLS_ERROR_VAL_ - 1) /** Write a description of the current state of tls into the * sz-byte buffer at buf. */ void tor_tls_get_state_description(tor_tls_t *tls, char *buf, size_t sz) { const char *ssl_state; const char *tortls_state; if (PREDICT_UNLIKELY(!tls || !tls->ssl)) { strlcpy(buf, "(No SSL object)", sz); return; } ssl_state = SSL_state_string_long(tls->ssl); switch (tls->state) { #define CASE(st) case TOR_TLS_ST_##st: tortls_state = " in "#st ; break CASE(HANDSHAKE); CASE(OPEN); CASE(GOTCLOSE); CASE(SENTCLOSE); CASE(CLOSED); CASE(RENEGOTIATE); #undef CASE case TOR_TLS_ST_BUFFEREVENT: tortls_state = ""; break; default: tortls_state = " in unknown TLS state"; break; } tor_snprintf(buf, sz, "%s%s", ssl_state, tortls_state); } /** Log a single error err as returned by ERR_get_error(), which was * received while performing an operation doing on tls. Log * the message at severity, in log domain domain. */ void tor_tls_log_one_error(tor_tls_t *tls, unsigned long err, int severity, int domain, const char *doing) { const char *state = NULL, *addr; const char *msg, *lib, *func; state = (tls && tls->ssl)?SSL_state_string_long(tls->ssl):"---"; addr = tls ? tls->address : NULL; /* Some errors are known-benign, meaning they are the fault of the other * side of the connection. The caller doesn't know this, so override the * priority for those cases. */ switch (ERR_GET_REASON(err)) { case SSL_R_HTTP_REQUEST: case SSL_R_HTTPS_PROXY_REQUEST: case SSL_R_RECORD_LENGTH_MISMATCH: case SSL_R_RECORD_TOO_LARGE: case SSL_R_UNKNOWN_PROTOCOL: case SSL_R_UNSUPPORTED_PROTOCOL: severity = LOG_INFO; break; default: break; } msg = (const char*)ERR_reason_error_string(err); lib = (const char*)ERR_lib_error_string(err); func = (const char*)ERR_func_error_string(err); if (!msg) msg = "(null)"; if (!lib) lib = "(null)"; if (!func) func = "(null)"; if (doing) { tor_log(severity, domain, "TLS error while %s%s%s: %s (in %s:%s:%s)", doing, addr?" with ":"", addr?addr:"", msg, lib, func, state); } else { tor_log(severity, domain, "TLS error%s%s: %s (in %s:%s:%s)", addr?" with ":"", addr?addr:"", msg, lib, func, state); } } /** Log all pending tls errors at level severity in log domain * domain. Use doing to describe our current activities. */ static void tls_log_errors(tor_tls_t *tls, int severity, int domain, const char *doing) { unsigned long err; while ((err = ERR_get_error()) != 0) { tor_tls_log_one_error(tls, err, severity, domain, doing); } } /** Convert an errno (or a WSAerrno on windows) into a TOR_TLS_* error * code. */ static int tor_errno_to_tls_error(int e) { switch (e) { case SOCK_ERRNO(ECONNRESET): // most common return TOR_TLS_ERROR_CONNRESET; case SOCK_ERRNO(ETIMEDOUT): return TOR_TLS_ERROR_TIMEOUT; case SOCK_ERRNO(EHOSTUNREACH): case SOCK_ERRNO(ENETUNREACH): return TOR_TLS_ERROR_NO_ROUTE; case SOCK_ERRNO(ECONNREFUSED): return TOR_TLS_ERROR_CONNREFUSED; // least common default: return TOR_TLS_ERROR_MISC; } } /** Given a TOR_TLS_* error code, return a string equivalent. */ const char * tor_tls_err_to_string(int err) { if (err >= 0) return "[Not an error.]"; switch (err) { case TOR_TLS_ERROR_MISC: return "misc error"; case TOR_TLS_ERROR_IO: return "unexpected close"; case TOR_TLS_ERROR_CONNREFUSED: return "connection refused"; case TOR_TLS_ERROR_CONNRESET: return "connection reset"; case TOR_TLS_ERROR_NO_ROUTE: return "host unreachable"; case TOR_TLS_ERROR_TIMEOUT: return "connection timed out"; case TOR_TLS_CLOSE: return "closed"; case TOR_TLS_WANTREAD: return "want to read"; case TOR_TLS_WANTWRITE: return "want to write"; default: return "(unknown error code)"; } } #define CATCH_SYSCALL 1 #define CATCH_ZERO 2 /** Given a TLS object and the result of an SSL_* call, use * SSL_get_error to determine whether an error has occurred, and if so * which one. Return one of TOR_TLS_{DONE|WANTREAD|WANTWRITE|ERROR}. * If extra&CATCH_SYSCALL is true, return TOR_TLS_SYSCALL_ instead of * reporting syscall errors. If extra&CATCH_ZERO is true, return * TOR_TLS_ZERORETURN_ instead of reporting zero-return errors. * * If an error has occurred, log it at level severity and describe the * current action as doing. */ static int tor_tls_get_error(tor_tls_t *tls, int r, int extra, const char *doing, int severity, int domain) { int err = SSL_get_error(tls->ssl, r); int tor_error = TOR_TLS_ERROR_MISC; switch (err) { case SSL_ERROR_NONE: return TOR_TLS_DONE; case SSL_ERROR_WANT_READ: return TOR_TLS_WANTREAD; case SSL_ERROR_WANT_WRITE: return TOR_TLS_WANTWRITE; case SSL_ERROR_SYSCALL: if (extra&CATCH_SYSCALL) return TOR_TLS_SYSCALL_; if (r == 0) { tor_log(severity, LD_NET, "TLS error: unexpected close while %s (%s)", doing, SSL_state_string_long(tls->ssl)); tor_error = TOR_TLS_ERROR_IO; } else { int e = tor_socket_errno(tls->socket); tor_log(severity, LD_NET, "TLS error: (errno=%d: %s; state=%s)", doing, e, tor_socket_strerror(e), SSL_state_string_long(tls->ssl)); tor_error = tor_errno_to_tls_error(e); } tls_log_errors(tls, severity, domain, doing); return tor_error; case SSL_ERROR_ZERO_RETURN: if (extra&CATCH_ZERO) return TOR_TLS_ZERORETURN_; tor_log(severity, LD_NET, "TLS connection closed while %s in state %s", doing, SSL_state_string_long(tls->ssl)); tls_log_errors(tls, severity, domain, doing); return TOR_TLS_CLOSE; default: tls_log_errors(tls, severity, domain, doing); return TOR_TLS_ERROR_MISC; } } /** Initialize OpenSSL, unless it has already been initialized. */ static void tor_tls_init(void) { check_no_tls_errors(); if (!tls_library_is_initialized) { SSL_library_init(); SSL_load_error_strings(); #if (SIZEOF_VOID_P >= 8 && \ OPENSSL_VERSION_NUMBER >= OPENSSL_V_SERIES(1,0,1)) long version = SSLeay(); if (version >= OPENSSL_V_SERIES(1,0,1)) { /* Warn if we could *almost* be running with much faster ECDH. If we're built for a 64-bit target, using OpenSSL 1.0.1, but we don't have one of the built-in __uint128-based speedups, we are just one build operation away from an accelerated handshake. (We could be looking at OPENSSL_NO_EC_NISTP_64_GCC_128 instead of doing this test, but that gives compile-time options, not runtime behavior.) */ EC_KEY *key = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1); const EC_GROUP *g = key ? EC_KEY_get0_group(key) : NULL; const EC_METHOD *m = g ? EC_GROUP_method_of(g) : NULL; const int warn = (m == EC_GFp_simple_method() || m == EC_GFp_mont_method() || m == EC_GFp_nist_method()); EC_KEY_free(key); if (warn) log_notice(LD_GENERAL, "We were built to run on a 64-bit CPU, with " "OpenSSL 1.0.1 or later, but with a version of OpenSSL " "that apparently lacks accelerated support for the NIST " "P-224 and P-256 groups. Building openssl with such " "support (using the enable-ec_nistp_64_gcc_128 option " "when configuring it) would make ECDH much faster."); } #endif tor_tls_allocate_tor_tls_object_ex_data_index(); tls_library_is_initialized = 1; } } /** Free all global TLS structures. */ void tor_tls_free_all(void) { check_no_tls_errors(); if (server_tls_context) { tor_tls_context_t *ctx = server_tls_context; server_tls_context = NULL; tor_tls_context_decref(ctx); } if (client_tls_context) { tor_tls_context_t *ctx = client_tls_context; client_tls_context = NULL; tor_tls_context_decref(ctx); } } /** We need to give OpenSSL a callback to verify certificates. This is * it: We always accept peer certs and complete the handshake. We * don't validate them until later. */ static int always_accept_verify_cb(int preverify_ok, X509_STORE_CTX *x509_ctx) { (void) preverify_ok; (void) x509_ctx; return 1; } /** Return a newly allocated X509 name with commonName cname. */ static X509_NAME * tor_x509_name_new(const char *cname) { int nid; X509_NAME *name; if (!(name = X509_NAME_new())) return NULL; if ((nid = OBJ_txt2nid("commonName")) == NID_undef) goto error; if (!(X509_NAME_add_entry_by_NID(name, nid, MBSTRING_ASC, (unsigned char*)cname, -1, -1, 0))) goto error; return name; error: X509_NAME_free(name); return NULL; } /** Generate and sign an X509 certificate with the public key rsa, * signed by the private key rsa_sign. The commonName of the * certificate will be cname; the commonName of the issuer will be * cname_sign. The cert will be valid for cert_lifetime * seconds, starting from some time in the past. * * Return a certificate on success, NULL on failure. */ static X509 * tor_tls_create_certificate(crypto_pk_t *rsa, crypto_pk_t *rsa_sign, const char *cname, const char *cname_sign, unsigned int cert_lifetime) { /* OpenSSL generates self-signed certificates with random 64-bit serial * numbers, so let's do that too. */ #define SERIAL_NUMBER_SIZE 8 time_t start_time, end_time; BIGNUM *serial_number = NULL; unsigned char serial_tmp[SERIAL_NUMBER_SIZE]; EVP_PKEY *sign_pkey = NULL, *pkey=NULL; X509 *x509 = NULL; X509_NAME *name = NULL, *name_issuer=NULL; tor_tls_init(); /* Make sure we're part-way through the certificate lifetime, rather * than having it start right now. Don't choose quite uniformly, since * then we might pick a time where we're about to expire. Lastly, be * sure to start on a day boundary. */ time_t now = time(NULL); start_time = crypto_rand_time_range(now - cert_lifetime, now) + 2*24*3600; start_time -= start_time % (24*3600); tor_assert(rsa); tor_assert(cname); tor_assert(rsa_sign); tor_assert(cname_sign); if (!(sign_pkey = crypto_pk_get_evp_pkey_(rsa_sign,1))) goto error; if (!(pkey = crypto_pk_get_evp_pkey_(rsa,0))) goto error; if (!(x509 = X509_new())) goto error; if (!(X509_set_version(x509, 2))) goto error; { /* our serial number is 8 random bytes. */ if (crypto_rand((char *)serial_tmp, sizeof(serial_tmp)) < 0) goto error; if (!(serial_number = BN_bin2bn(serial_tmp, sizeof(serial_tmp), NULL))) goto error; if (!(BN_to_ASN1_INTEGER(serial_number, X509_get_serialNumber(x509)))) goto error; } if (!(name = tor_x509_name_new(cname))) goto error; if (!(X509_set_subject_name(x509, name))) goto error; if (!(name_issuer = tor_x509_name_new(cname_sign))) goto error; if (!(X509_set_issuer_name(x509, name_issuer))) goto error; if (!X509_time_adj(X509_get_notBefore(x509),0,&start_time)) goto error; end_time = start_time + cert_lifetime; if (!X509_time_adj(X509_get_notAfter(x509),0,&end_time)) goto error; if (!X509_set_pubkey(x509, pkey)) goto error; if (!X509_sign(x509, sign_pkey, EVP_sha1())) goto error; goto done; error: if (x509) { X509_free(x509); x509 = NULL; } done: tls_log_errors(NULL, LOG_WARN, LD_NET, "generating certificate"); if (sign_pkey) EVP_PKEY_free(sign_pkey); if (pkey) EVP_PKEY_free(pkey); if (serial_number) BN_clear_free(serial_number); if (name) X509_NAME_free(name); if (name_issuer) X509_NAME_free(name_issuer); return x509; #undef SERIAL_NUMBER_SIZE } /** List of ciphers that servers should select from when the client might be * claiming extra unsupported ciphers in order to avoid fingerprinting. */ #define SERVER_CIPHER_LIST \ (TLS1_TXT_DHE_RSA_WITH_AES_256_SHA ":" \ TLS1_TXT_DHE_RSA_WITH_AES_128_SHA ":" \ SSL3_TXT_EDH_RSA_DES_192_CBC3_SHA) /** List of ciphers that servers should select from when we actually have * our choice of what cipher to use. */ const char UNRESTRICTED_SERVER_CIPHER_LIST[] = /* This list is autogenerated with the gen_server_ciphers.py script; * don't hand-edit it. */ #ifdef TLS1_TXT_ECDHE_RSA_WITH_AES_256_GCM_SHA384 TLS1_TXT_ECDHE_RSA_WITH_AES_256_GCM_SHA384 ":" #endif #ifdef TLS1_TXT_ECDHE_RSA_WITH_AES_128_GCM_SHA256 TLS1_TXT_ECDHE_RSA_WITH_AES_128_GCM_SHA256 ":" #endif #ifdef TLS1_TXT_ECDHE_RSA_WITH_AES_256_SHA384 TLS1_TXT_ECDHE_RSA_WITH_AES_256_SHA384 ":" #endif #ifdef TLS1_TXT_ECDHE_RSA_WITH_AES_128_SHA256 TLS1_TXT_ECDHE_RSA_WITH_AES_128_SHA256 ":" #endif #ifdef TLS1_TXT_ECDHE_RSA_WITH_AES_256_CBC_SHA TLS1_TXT_ECDHE_RSA_WITH_AES_256_CBC_SHA ":" #endif #ifdef TLS1_TXT_ECDHE_RSA_WITH_AES_128_CBC_SHA TLS1_TXT_ECDHE_RSA_WITH_AES_128_CBC_SHA ":" #endif #ifdef TLS1_TXT_DHE_RSA_WITH_AES_256_GCM_SHA384 TLS1_TXT_DHE_RSA_WITH_AES_256_GCM_SHA384 ":" #endif #ifdef TLS1_TXT_DHE_RSA_WITH_AES_128_GCM_SHA256 TLS1_TXT_DHE_RSA_WITH_AES_128_GCM_SHA256 ":" #endif #ifdef TLS1_TXT_DHE_RSA_WITH_AES_256_SHA256 TLS1_TXT_DHE_RSA_WITH_AES_256_SHA256 ":" #endif #ifdef TLS1_TXT_DHE_RSA_WITH_AES_128_SHA256 TLS1_TXT_DHE_RSA_WITH_AES_128_SHA256 ":" #endif /* Required */ TLS1_TXT_DHE_RSA_WITH_AES_256_SHA ":" /* Required */ TLS1_TXT_DHE_RSA_WITH_AES_128_SHA ":" #ifdef TLS1_TXT_ECDHE_RSA_WITH_DES_192_CBC3_SHA TLS1_TXT_ECDHE_RSA_WITH_DES_192_CBC3_SHA ":" #endif /* Required */ SSL3_TXT_EDH_RSA_DES_192_CBC3_SHA; /* Note: to set up your own private testing network with link crypto * disabled, set your Tors' cipher list to * (SSL3_TXT_RSA_NULL_SHA). If you do this, you won't be able to communicate * with any of the "real" Tors, though. */ #define CIPHER(id, name) name ":" #define XCIPHER(id, name) /** List of ciphers that clients should advertise, omitting items that * our OpenSSL doesn't know about. */ static const char CLIENT_CIPHER_LIST[] = #include "ciphers.inc" /* Tell it not to use SSLv2 ciphers, so that it can select an SSLv3 version * of any cipher we say. */ "!SSLv2" ; #undef CIPHER #undef XCIPHER /** Free all storage held in cert */ void tor_x509_cert_free(tor_x509_cert_t *cert) { if (! cert) return; if (cert->cert) X509_free(cert->cert); tor_free(cert->encoded); memwipe(cert, 0x03, sizeof(*cert)); tor_free(cert); } /** * Allocate a new tor_x509_cert_t to hold the certificate "x509_cert". * * Steals a reference to x509_cert. */ static tor_x509_cert_t * tor_x509_cert_new(X509 *x509_cert) { tor_x509_cert_t *cert; EVP_PKEY *pkey; RSA *rsa; int length; unsigned char *buf = NULL; if (!x509_cert) return NULL; length = i2d_X509(x509_cert, &buf); cert = tor_malloc_zero(sizeof(tor_x509_cert_t)); if (length <= 0 || buf == NULL) { tor_free(cert); log_err(LD_CRYPTO, "Couldn't get length of encoded x509 certificate"); X509_free(x509_cert); return NULL; } cert->encoded_len = (size_t) length; cert->encoded = tor_malloc(length); memcpy(cert->encoded, buf, length); OPENSSL_free(buf); cert->cert = x509_cert; crypto_digest_all(&cert->cert_digests, (char*)cert->encoded, cert->encoded_len); if ((pkey = X509_get_pubkey(x509_cert)) && (rsa = EVP_PKEY_get1_RSA(pkey))) { crypto_pk_t *pk = crypto_new_pk_from_rsa_(rsa); crypto_pk_get_all_digests(pk, &cert->pkey_digests); cert->pkey_digests_set = 1; crypto_pk_free(pk); EVP_PKEY_free(pkey); } return cert; } /** Read a DER-encoded X509 cert, of length exactly certificate_len, * from a certificate. Return a newly allocated tor_x509_cert_t on * success and NULL on failure. */ tor_x509_cert_t * tor_x509_cert_decode(const uint8_t *certificate, size_t certificate_len) { X509 *x509; const unsigned char *cp = (const unsigned char *)certificate; tor_x509_cert_t *newcert; tor_assert(certificate); check_no_tls_errors(); if (certificate_len > INT_MAX) goto err; x509 = d2i_X509(NULL, &cp, (int)certificate_len); if (!x509) goto err; /* Couldn't decode */ if (cp - certificate != (int)certificate_len) { X509_free(x509); goto err; /* Didn't use all the bytes */ } newcert = tor_x509_cert_new(x509); if (!newcert) { goto err; } if (newcert->encoded_len != certificate_len || fast_memneq(newcert->encoded, certificate, certificate_len)) { /* Cert wasn't in DER */ tor_x509_cert_free(newcert); goto err; } return newcert; err: tls_log_errors(NULL, LOG_INFO, LD_CRYPTO, "decoding a certificate"); return NULL; } /** Set *encoded_out and *size_out to cert's encoded DER * representation and length, respectively. */ void tor_x509_cert_get_der(const tor_x509_cert_t *cert, const uint8_t **encoded_out, size_t *size_out) { tor_assert(cert); tor_assert(encoded_out); tor_assert(size_out); *encoded_out = cert->encoded; *size_out = cert->encoded_len; } /** Return a set of digests for the public key in cert, or NULL if this * cert's public key is not one we know how to take the digest of. */ const digests_t * tor_x509_cert_get_id_digests(const tor_x509_cert_t *cert) { if (cert->pkey_digests_set) return &cert->pkey_digests; else return NULL; } /** Return a set of digests for the public key in cert. */ const digests_t * tor_x509_cert_get_cert_digests(const tor_x509_cert_t *cert) { return &cert->cert_digests; } /** Remove a reference to ctx, and free it if it has no more * references. */ static void tor_tls_context_decref(tor_tls_context_t *ctx) { tor_assert(ctx); if (--ctx->refcnt == 0) { SSL_CTX_free(ctx->ctx); tor_x509_cert_free(ctx->my_link_cert); tor_x509_cert_free(ctx->my_id_cert); tor_x509_cert_free(ctx->my_auth_cert); crypto_pk_free(ctx->link_key); crypto_pk_free(ctx->auth_key); tor_free(ctx); } } /** Set *link_cert_out and *id_cert_out to the link certificate * and ID certificate that we're currently using for our V3 in-protocol * handshake's certificate chain. If server is true, provide the certs * that we use in server mode; otherwise, provide the certs that we use in * client mode. */ int tor_tls_get_my_certs(int server, const tor_x509_cert_t **link_cert_out, const tor_x509_cert_t **id_cert_out) { tor_tls_context_t *ctx = server ? server_tls_context : client_tls_context; if (! ctx) return -1; if (link_cert_out) *link_cert_out = server ? ctx->my_link_cert : ctx->my_auth_cert; if (id_cert_out) *id_cert_out = ctx->my_id_cert; return 0; } /** * Return the authentication key that we use to authenticate ourselves as a * client in the V3 in-protocol handshake. */ crypto_pk_t * tor_tls_get_my_client_auth_key(void) { if (! client_tls_context) return NULL; return client_tls_context->auth_key; } /** * Return a newly allocated copy of the public key that a certificate * certifies. Return NULL if the cert's key is not RSA. */ crypto_pk_t * tor_tls_cert_get_key(tor_x509_cert_t *cert) { crypto_pk_t *result = NULL; EVP_PKEY *pkey = X509_get_pubkey(cert->cert); RSA *rsa; if (!pkey) return NULL; rsa = EVP_PKEY_get1_RSA(pkey); if (!rsa) { EVP_PKEY_free(pkey); return NULL; } result = crypto_new_pk_from_rsa_(rsa); EVP_PKEY_free(pkey); return result; } /** Return true iff the other side of tls has authenticated to us, and * the key certified in cert is the same as the key they used to do it. */ MOCK_IMPL(int, tor_tls_cert_matches_key,(const tor_tls_t *tls, const tor_x509_cert_t *cert)) { X509 *peercert = SSL_get_peer_certificate(tls->ssl); EVP_PKEY *link_key = NULL, *cert_key = NULL; int result; if (!peercert) return 0; link_key = X509_get_pubkey(peercert); cert_key = X509_get_pubkey(cert->cert); result = link_key && cert_key && EVP_PKEY_cmp(cert_key, link_key) == 1; X509_free(peercert); if (link_key) EVP_PKEY_free(link_key); if (cert_key) EVP_PKEY_free(cert_key); return result; } /** Check whether cert is well-formed, currently live, and correctly * signed by the public key in signing_cert. If check_rsa_1024, * make sure that it has an RSA key with 1024 bits; otherwise, just check that * the key is long enough. Return 1 if the cert is good, and 0 if it's bad or * we couldn't check it. */ int tor_tls_cert_is_valid(int severity, const tor_x509_cert_t *cert, const tor_x509_cert_t *signing_cert, int check_rsa_1024) { check_no_tls_errors(); EVP_PKEY *cert_key; EVP_PKEY *signing_key = X509_get_pubkey(signing_cert->cert); int r, key_ok = 0; if (!signing_key) goto bad; r = X509_verify(cert->cert, signing_key); EVP_PKEY_free(signing_key); if (r <= 0) goto bad; /* okay, the signature checked out right. Now let's check the check the * lifetime. */ if (check_cert_lifetime_internal(severity, cert->cert, 48*60*60, 30*24*60*60) < 0) goto bad; cert_key = X509_get_pubkey(cert->cert); if (check_rsa_1024 && cert_key) { RSA *rsa = EVP_PKEY_get1_RSA(cert_key); if (rsa && BN_num_bits(rsa->n) == 1024) key_ok = 1; if (rsa) RSA_free(rsa); } else if (cert_key) { int min_bits = 1024; #ifdef EVP_PKEY_EC if (EVP_PKEY_type(cert_key->type) == EVP_PKEY_EC) min_bits = 128; #endif if (EVP_PKEY_bits(cert_key) >= min_bits) key_ok = 1; } EVP_PKEY_free(cert_key); if (!key_ok) goto bad; /* XXXX compare DNs or anything? */ return 1; bad: tls_log_errors(NULL, LOG_INFO, LD_CRYPTO, "checking a certificate"); return 0; } /** Increase the reference count of ctx. */ static void tor_tls_context_incref(tor_tls_context_t *ctx) { ++ctx->refcnt; } /** Create new global client and server TLS contexts. * * If server_identity is NULL, this will not generate a server * TLS context. If TOR_TLS_CTX_IS_PUBLIC_SERVER is set in flags, use * the same TLS context for incoming and outgoing connections, and * ignore client_identity. If one of TOR_TLS_CTX_USE_ECDHE_P{224,256} * is set in flags, use that ECDHE group if possible; otherwise use * the default ECDHE group. */ int tor_tls_context_init(unsigned flags, crypto_pk_t *client_identity, crypto_pk_t *server_identity, unsigned int key_lifetime) { int rv1 = 0; int rv2 = 0; const int is_public_server = flags & TOR_TLS_CTX_IS_PUBLIC_SERVER; check_no_tls_errors(); if (is_public_server) { tor_tls_context_t *new_ctx; tor_tls_context_t *old_ctx; tor_assert(server_identity != NULL); rv1 = tor_tls_context_init_one(&server_tls_context, server_identity, key_lifetime, flags, 0); if (rv1 >= 0) { new_ctx = server_tls_context; tor_tls_context_incref(new_ctx); old_ctx = client_tls_context; client_tls_context = new_ctx; if (old_ctx != NULL) { tor_tls_context_decref(old_ctx); } } } else { if (server_identity != NULL) { rv1 = tor_tls_context_init_one(&server_tls_context, server_identity, key_lifetime, flags, 0); } else { tor_tls_context_t *old_ctx = server_tls_context; server_tls_context = NULL; if (old_ctx != NULL) { tor_tls_context_decref(old_ctx); } } rv2 = tor_tls_context_init_one(&client_tls_context, client_identity, key_lifetime, flags, 1); } tls_log_errors(NULL, LOG_WARN, LD_CRYPTO, "constructing a TLS context"); return MIN(rv1, rv2); } /** Create a new global TLS context. * * You can call this function multiple times. Each time you call it, * it generates new certificates; all new connections will use * the new SSL context. */ static int tor_tls_context_init_one(tor_tls_context_t **ppcontext, crypto_pk_t *identity, unsigned int key_lifetime, unsigned int flags, int is_client) { tor_tls_context_t *new_ctx = tor_tls_context_new(identity, key_lifetime, flags, is_client); tor_tls_context_t *old_ctx = *ppcontext; if (new_ctx != NULL) { *ppcontext = new_ctx; /* Free the old context if one existed. */ if (old_ctx != NULL) { /* This is safe even if there are open connections: we reference- * count tor_tls_context_t objects. */ tor_tls_context_decref(old_ctx); } } return ((new_ctx != NULL) ? 0 : -1); } /** The group we should use for ecdhe when none was selected. */ #define NID_tor_default_ecdhe_group NID_X9_62_prime256v1 /** Create a new TLS context for use with Tor TLS handshakes. * identity should be set to the identity key used to sign the * certificate. */ static tor_tls_context_t * tor_tls_context_new(crypto_pk_t *identity, unsigned int key_lifetime, unsigned flags, int is_client) { crypto_pk_t *rsa = NULL, *rsa_auth = NULL; EVP_PKEY *pkey = NULL; tor_tls_context_t *result = NULL; X509 *cert = NULL, *idcert = NULL, *authcert = NULL; char *nickname = NULL, *nn2 = NULL; tor_tls_init(); nickname = crypto_random_hostname(8, 20, "www.", ".net"); #ifdef DISABLE_V3_LINKPROTO_SERVERSIDE nn2 = crypto_random_hostname(8, 20, "www.", ".net"); #else nn2 = crypto_random_hostname(8, 20, "www.", ".com"); #endif /* Generate short-term RSA key for use with TLS. */ if (!(rsa = crypto_pk_new())) goto error; if (crypto_pk_generate_key(rsa)<0) goto error; if (!is_client) { /* Generate short-term RSA key for use in the in-protocol ("v3") * authentication handshake. */ if (!(rsa_auth = crypto_pk_new())) goto error; if (crypto_pk_generate_key(rsa_auth)<0) goto error; /* Create a link certificate signed by identity key. */ cert = tor_tls_create_certificate(rsa, identity, nickname, nn2, key_lifetime); /* Create self-signed certificate for identity key. */ idcert = tor_tls_create_certificate(identity, identity, nn2, nn2, IDENTITY_CERT_LIFETIME); /* Create an authentication certificate signed by identity key. */ authcert = tor_tls_create_certificate(rsa_auth, identity, nickname, nn2, key_lifetime); if (!cert || !idcert || !authcert) { log_warn(LD_CRYPTO, "Error creating certificate"); goto error; } } result = tor_malloc_zero(sizeof(tor_tls_context_t)); result->refcnt = 1; if (!is_client) { result->my_link_cert = tor_x509_cert_new(X509_dup(cert)); result->my_id_cert = tor_x509_cert_new(X509_dup(idcert)); result->my_auth_cert = tor_x509_cert_new(X509_dup(authcert)); if (!result->my_link_cert || !result->my_id_cert || !result->my_auth_cert) goto error; result->link_key = crypto_pk_dup_key(rsa); result->auth_key = crypto_pk_dup_key(rsa_auth); } #if 0 /* Tell OpenSSL to only use TLS1. This may have subtly different results * from SSLv23_method() with SSLv2 and SSLv3 disabled, so we need to do some * investigation before we consider adjusting it. It should be compatible * with existing Tors. */ if (!(result->ctx = SSL_CTX_new(TLSv1_method()))) goto error; #endif /* Tell OpenSSL to use TLS 1.0 or later but not SSL2 or SSL3. */ #ifdef HAVE_TLS_METHOD if (!(result->ctx = SSL_CTX_new(TLS_method()))) goto error; #else if (!(result->ctx = SSL_CTX_new(SSLv23_method()))) goto error; #endif SSL_CTX_set_options(result->ctx, SSL_OP_NO_SSLv2); SSL_CTX_set_options(result->ctx, SSL_OP_NO_SSLv3); /* Prefer the server's ordering of ciphers: the client's ordering has * historically been chosen for fingerprinting resistance. */ SSL_CTX_set_options(result->ctx, SSL_OP_CIPHER_SERVER_PREFERENCE); /* Disable TLS1.1 and TLS1.2 if they exist. We need to do this to * workaround a bug present in all OpenSSL 1.0.1 versions (as of 1 * June 2012), wherein renegotiating while using one of these TLS * protocols will cause the client to send a TLS 1.0 ServerHello * rather than a ServerHello written with the appropriate protocol * version. Once some version of OpenSSL does TLS1.1 and TLS1.2 * renegotiation properly, we can turn them back on when built with * that version. */ #if OPENSSL_VERSION_NUMBER < OPENSSL_V(1,0,1,'e') #ifdef SSL_OP_NO_TLSv1_2 SSL_CTX_set_options(result->ctx, SSL_OP_NO_TLSv1_2); #endif #ifdef SSL_OP_NO_TLSv1_1 SSL_CTX_set_options(result->ctx, SSL_OP_NO_TLSv1_1); #endif #endif /* Disable TLS tickets if they're supported. We never want to use them; * using them can make our perfect forward secrecy a little worse, *and* * create an opportunity to fingerprint us (since it's unusual to use them * with TLS sessions turned off). * * In 0.2.4, clients advertise support for them though, to avoid a TLS * distinguishability vector. This can give us worse PFS, though, if we * get a server that doesn't set SSL_OP_NO_TICKET. With luck, there will * be few such servers by the time 0.2.4 is more stable. */ #ifdef SSL_OP_NO_TICKET if (! is_client) { SSL_CTX_set_options(result->ctx, SSL_OP_NO_TICKET); } #endif SSL_CTX_set_options(result->ctx, SSL_OP_SINGLE_DH_USE); SSL_CTX_set_options(result->ctx, SSL_OP_SINGLE_ECDH_USE); #ifdef SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION SSL_CTX_set_options(result->ctx, SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION); #endif /* Yes, we know what we are doing here. No, we do not treat a renegotiation * as authenticating any earlier-received data. */ { SSL_CTX_set_options(result->ctx, SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION); } #ifdef SSL_OP_NO_COMPRESSION SSL_CTX_set_options(result->ctx, SSL_OP_NO_COMPRESSION); #endif #if OPENSSL_VERSION_NUMBER < OPENSSL_V_SERIES(1,1,0) #ifndef OPENSSL_NO_COMP /* Don't actually allow compression; it uses ram and time, but the data * we transmit is all encrypted anyway. */ if (result->ctx->comp_methods) result->ctx->comp_methods = NULL; #endif #endif #ifdef SSL_MODE_RELEASE_BUFFERS SSL_CTX_set_mode(result->ctx, SSL_MODE_RELEASE_BUFFERS); #endif if (! is_client) { if (cert && !SSL_CTX_use_certificate(result->ctx,cert)) goto error; X509_free(cert); /* We just added a reference to cert. */ cert=NULL; if (idcert) { X509_STORE *s = SSL_CTX_get_cert_store(result->ctx); tor_assert(s); X509_STORE_add_cert(s, idcert); X509_free(idcert); /* The context now owns the reference to idcert */ idcert = NULL; } } SSL_CTX_set_session_cache_mode(result->ctx, SSL_SESS_CACHE_OFF); if (!is_client) { tor_assert(rsa); if (!(pkey = crypto_pk_get_evp_pkey_(rsa,1))) goto error; if (!SSL_CTX_use_PrivateKey(result->ctx, pkey)) goto error; EVP_PKEY_free(pkey); pkey = NULL; if (!SSL_CTX_check_private_key(result->ctx)) goto error; } { crypto_dh_t *dh = crypto_dh_new(DH_TYPE_TLS); tor_assert(dh); SSL_CTX_set_tmp_dh(result->ctx, crypto_dh_get_dh_(dh)); crypto_dh_free(dh); } if (! is_client) { int nid; EC_KEY *ec_key; if (flags & TOR_TLS_CTX_USE_ECDHE_P224) nid = NID_secp224r1; else if (flags & TOR_TLS_CTX_USE_ECDHE_P256) nid = NID_X9_62_prime256v1; else nid = NID_tor_default_ecdhe_group; /* Use P-256 for ECDHE. */ ec_key = EC_KEY_new_by_curve_name(nid); if (ec_key != NULL) /*XXXX Handle errors? */ SSL_CTX_set_tmp_ecdh(result->ctx, ec_key); EC_KEY_free(ec_key); } SSL_CTX_set_verify(result->ctx, SSL_VERIFY_PEER, always_accept_verify_cb); /* let us realloc bufs that we're writing from */ SSL_CTX_set_mode(result->ctx, SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER); if (rsa) crypto_pk_free(rsa); if (rsa_auth) crypto_pk_free(rsa_auth); X509_free(authcert); tor_free(nickname); tor_free(nn2); return result; error: tls_log_errors(NULL, LOG_WARN, LD_NET, "creating TLS context"); tor_free(nickname); tor_free(nn2); if (pkey) EVP_PKEY_free(pkey); if (rsa) crypto_pk_free(rsa); if (rsa_auth) crypto_pk_free(rsa_auth); if (result) tor_tls_context_decref(result); if (cert) X509_free(cert); if (idcert) X509_free(idcert); if (authcert) X509_free(authcert); return NULL; } /** Invoked when a TLS state changes: log the change at severity 'debug' */ static void tor_tls_debug_state_callback(const SSL *ssl, int type, int val) { log_debug(LD_HANDSHAKE, "SSL %p is now in state %s [type=%d,val=%d].", ssl, SSL_state_string_long(ssl), type, val); } /* Return the name of the negotiated ciphersuite in use on tls */ const char * tor_tls_get_ciphersuite_name(tor_tls_t *tls) { return SSL_get_cipher(tls->ssl); } #ifdef V2_HANDSHAKE_SERVER /* Here's the old V2 cipher list we sent from 0.2.1.1-alpha up to * 0.2.3.17-beta. If a client is using this list, we can't believe the ciphers * that it claims to support. We'll prune this list to remove the ciphers * *we* don't recognize. */ static uint16_t v2_cipher_list[] = { 0xc00a, /* TLS1_TXT_ECDHE_ECDSA_WITH_AES_256_CBC_SHA */ 0xc014, /* TLS1_TXT_ECDHE_RSA_WITH_AES_256_CBC_SHA */ 0x0039, /* TLS1_TXT_DHE_RSA_WITH_AES_256_SHA */ 0x0038, /* TLS1_TXT_DHE_DSS_WITH_AES_256_SHA */ 0xc00f, /* TLS1_TXT_ECDH_RSA_WITH_AES_256_CBC_SHA */ 0xc005, /* TLS1_TXT_ECDH_ECDSA_WITH_AES_256_CBC_SHA */ 0x0035, /* TLS1_TXT_RSA_WITH_AES_256_SHA */ 0xc007, /* TLS1_TXT_ECDHE_ECDSA_WITH_RC4_128_SHA */ 0xc009, /* TLS1_TXT_ECDHE_ECDSA_WITH_AES_128_CBC_SHA */ 0xc011, /* TLS1_TXT_ECDHE_RSA_WITH_RC4_128_SHA */ 0xc013, /* TLS1_TXT_ECDHE_RSA_WITH_AES_128_CBC_SHA */ 0x0033, /* TLS1_TXT_DHE_RSA_WITH_AES_128_SHA */ 0x0032, /* TLS1_TXT_DHE_DSS_WITH_AES_128_SHA */ 0xc00c, /* TLS1_TXT_ECDH_RSA_WITH_RC4_128_SHA */ 0xc00e, /* TLS1_TXT_ECDH_RSA_WITH_AES_128_CBC_SHA */ 0xc002, /* TLS1_TXT_ECDH_ECDSA_WITH_RC4_128_SHA */ 0xc004, /* TLS1_TXT_ECDH_ECDSA_WITH_AES_128_CBC_SHA */ 0x0004, /* SSL3_TXT_RSA_RC4_128_MD5 */ 0x0005, /* SSL3_TXT_RSA_RC4_128_SHA */ 0x002f, /* TLS1_TXT_RSA_WITH_AES_128_SHA */ 0xc008, /* TLS1_TXT_ECDHE_ECDSA_WITH_DES_192_CBC3_SHA */ 0xc012, /* TLS1_TXT_ECDHE_RSA_WITH_DES_192_CBC3_SHA */ 0x0016, /* SSL3_TXT_EDH_RSA_DES_192_CBC3_SHA */ 0x0013, /* SSL3_TXT_EDH_DSS_DES_192_CBC3_SHA */ 0xc00d, /* TLS1_TXT_ECDH_RSA_WITH_DES_192_CBC3_SHA */ 0xc003, /* TLS1_TXT_ECDH_ECDSA_WITH_DES_192_CBC3_SHA */ 0xfeff, /* SSL3_TXT_RSA_FIPS_WITH_3DES_EDE_CBC_SHA */ 0x000a, /* SSL3_TXT_RSA_DES_192_CBC3_SHA */ 0 }; /** Have we removed the unrecognized ciphers from v2_cipher_list yet? */ static int v2_cipher_list_pruned = 0; /** Return 0 if m does not support the cipher with ID cipher; * return 1 if it does support it, or if we have no way to tell. */ static int find_cipher_by_id(const SSL *ssl, const SSL_METHOD *m, uint16_t cipher) { const SSL_CIPHER *c; #ifdef HAVE_SSL_CIPHER_FIND { unsigned char cipherid[3]; tor_assert(ssl); set_uint16(cipherid, htons(cipher)); cipherid[2] = 0; /* If ssl23_get_cipher_by_char finds no cipher starting * with a two-byte 'cipherid', it may look for a v2 * cipher with the appropriate 3 bytes. */ c = SSL_CIPHER_find((SSL*)ssl, cipherid); if (c) tor_assert((SSL_CIPHER_get_id(c) & 0xffff) == cipher); return c != NULL; } #elif defined(HAVE_STRUCT_SSL_METHOD_ST_GET_CIPHER_BY_CHAR) if (m && m->get_cipher_by_char) { unsigned char cipherid[3]; set_uint16(cipherid, htons(cipher)); cipherid[2] = 0; /* If ssl23_get_cipher_by_char finds no cipher starting * with a two-byte 'cipherid', it may look for a v2 * cipher with the appropriate 3 bytes. */ c = m->get_cipher_by_char(cipherid); if (c) tor_assert((c->id & 0xffff) == cipher); return c != NULL; } else #endif #if OPENSSL_VERSION_NUMBER < OPENSSL_V_SERIES(1,1,0) if (m && m->get_cipher && m->num_ciphers) { /* It would seem that some of the "let's-clean-up-openssl" forks have * removed the get_cipher_by_char function. Okay, so now you get a * quadratic search. */ int i; for (i = 0; i < m->num_ciphers(); ++i) { c = m->get_cipher(i); if (c && (c->id & 0xffff) == cipher) { return 1; } } return 0; } #endif (void) ssl; (void) m; (void) cipher; return 1; /* No way to search */ } /** Remove from v2_cipher_list every cipher that we don't support, so that * comparing v2_cipher_list to a client's cipher list will give a sensible * result. */ static void prune_v2_cipher_list(const SSL *ssl) { uint16_t *inp, *outp; #ifdef HAVE_TLS_METHOD const SSL_METHOD *m = TLS_method(); #else const SSL_METHOD *m = SSLv23_method(); #endif inp = outp = v2_cipher_list; while (*inp) { if (find_cipher_by_id(ssl, m, *inp)) { *outp++ = *inp++; } else { inp++; } } *outp = 0; v2_cipher_list_pruned = 1; } /** Examine the client cipher list in ssl, and determine what kind of * client it is. Return one of CIPHERS_ERR, CIPHERS_V1, CIPHERS_V2, * CIPHERS_UNRESTRICTED. **/ static int tor_tls_classify_client_ciphers(const SSL *ssl, STACK_OF(SSL_CIPHER) *peer_ciphers) { int i, res; tor_tls_t *tor_tls; if (PREDICT_UNLIKELY(!v2_cipher_list_pruned)) prune_v2_cipher_list(ssl); tor_tls = tor_tls_get_by_ssl(ssl); if (tor_tls && tor_tls->client_cipher_list_type) return tor_tls->client_cipher_list_type; /* If we reached this point, we just got a client hello. See if there is * a cipher list. */ if (!peer_ciphers) { log_info(LD_NET, "No ciphers on session"); res = CIPHERS_ERR; goto done; } /* Now we need to see if there are any ciphers whose presence means we're * dealing with an updated Tor. */ for (i = 0; i < sk_SSL_CIPHER_num(peer_ciphers); ++i) { SSL_CIPHER *cipher = sk_SSL_CIPHER_value(peer_ciphers, i); const char *ciphername = SSL_CIPHER_get_name(cipher); if (strcmp(ciphername, TLS1_TXT_DHE_RSA_WITH_AES_128_SHA) && strcmp(ciphername, TLS1_TXT_DHE_RSA_WITH_AES_256_SHA) && strcmp(ciphername, SSL3_TXT_EDH_RSA_DES_192_CBC3_SHA) && strcmp(ciphername, "(NONE)")) { log_debug(LD_NET, "Got a non-version-1 cipher called '%s'", ciphername); // return 1; goto v2_or_higher; } } res = CIPHERS_V1; goto done; v2_or_higher: { const uint16_t *v2_cipher = v2_cipher_list; for (i = 0; i < sk_SSL_CIPHER_num(peer_ciphers); ++i) { SSL_CIPHER *cipher = sk_SSL_CIPHER_value(peer_ciphers, i); uint16_t id = SSL_CIPHER_get_id(cipher) & 0xffff; if (id == 0x00ff) /* extended renegotiation indicator. */ continue; if (!id || id != *v2_cipher) { res = CIPHERS_UNRESTRICTED; goto dump_ciphers; } ++v2_cipher; } if (*v2_cipher != 0) { res = CIPHERS_UNRESTRICTED; goto dump_ciphers; } res = CIPHERS_V2; } dump_ciphers: { smartlist_t *elts = smartlist_new(); char *s; for (i = 0; i < sk_SSL_CIPHER_num(peer_ciphers); ++i) { SSL_CIPHER *cipher = sk_SSL_CIPHER_value(peer_ciphers, i); const char *ciphername = SSL_CIPHER_get_name(cipher); smartlist_add(elts, (char*)ciphername); } s = smartlist_join_strings(elts, ":", 0, NULL); log_debug(LD_NET, "Got a %s V2/V3 cipher list from %s. It is: '%s'", (res == CIPHERS_V2) ? "fictitious" : "real", ADDR(tor_tls), s); tor_free(s); smartlist_free(elts); } done: if (tor_tls) return tor_tls->client_cipher_list_type = res; return res; } /** Return true iff the cipher list suggested by the client for ssl is * a list that indicates that the client knows how to do the v2 TLS connection * handshake. */ static int tor_tls_client_is_using_v2_ciphers(const SSL *ssl) { STACK_OF(SSL_CIPHER) *ciphers; #ifdef HAVE_SSL_GET_CLIENT_CIPHERS ciphers = SSL_get_client_ciphers(ssl); #else SSL_SESSION *session; if (!(session = SSL_get_session((SSL *)ssl))) { log_info(LD_NET, "No session on TLS?"); return CIPHERS_ERR; } ciphers = session->ciphers; #endif return tor_tls_classify_client_ciphers(ssl, ciphers) >= CIPHERS_V2; } /** Invoked when we're accepting a connection on ssl, and the connection * changes state. We use this: *
  • To alter the state of the handshake partway through, so we * do not send or request extra certificates in v2 handshakes.
  • *
  • To detect renegotiation
*/ static void tor_tls_server_info_callback(const SSL *ssl, int type, int val) { tor_tls_t *tls; int ssl_state; (void) val; tor_tls_debug_state_callback(ssl, type, val); if (type != SSL_CB_ACCEPT_LOOP) return; ssl_state = SSL_state(ssl); if ((ssl_state != SSL3_ST_SW_SRVR_HELLO_A) && (ssl_state != SSL3_ST_SW_SRVR_HELLO_B)) return; tls = tor_tls_get_by_ssl(ssl); if (tls) { /* Check whether we're watching for renegotiates. If so, this is one! */ if (tls->negotiated_callback) tls->got_renegotiate = 1; if (tls->server_handshake_count < 127) /*avoid any overflow possibility*/ ++tls->server_handshake_count; } else { log_warn(LD_BUG, "Couldn't look up the tls for an SSL*. How odd!"); return; } /* Now check the cipher list. */ if (tor_tls_client_is_using_v2_ciphers(ssl)) { if (tls->wasV2Handshake) return; /* We already turned this stuff off for the first handshake; * This is a renegotiation. */ /* Yes, we're casting away the const from ssl. This is very naughty of us. * Let's hope openssl doesn't notice! */ /* Set SSL_MODE_NO_AUTO_CHAIN to keep from sending back any extra certs. */ SSL_set_mode((SSL*) ssl, SSL_MODE_NO_AUTO_CHAIN); /* Don't send a hello request. */ SSL_set_verify((SSL*) ssl, SSL_VERIFY_NONE, NULL); if (tls) { tls->wasV2Handshake = 1; } else { log_warn(LD_BUG, "Couldn't look up the tls for an SSL*. How odd!"); } } } #endif /** Callback to get invoked on a server after we've read the list of ciphers * the client supports, but before we pick our own ciphersuite. * * We can't abuse an info_cb for this, since by the time one of the * client_hello info_cbs is called, we've already picked which ciphersuite to * use. * * Technically, this function is an abuse of this callback, since the point of * a session_secret_cb is to try to set up and/or verify a shared-secret for * authentication on the fly. But as long as we return 0, we won't actually be * setting up a shared secret, and all will be fine. */ static int tor_tls_session_secret_cb(SSL *ssl, void *secret, int *secret_len, STACK_OF(SSL_CIPHER) *peer_ciphers, SSL_CIPHER **cipher, void *arg) { (void) secret; (void) secret_len; (void) peer_ciphers; (void) cipher; (void) arg; if (tor_tls_classify_client_ciphers(ssl, peer_ciphers) == CIPHERS_UNRESTRICTED) { SSL_set_cipher_list(ssl, UNRESTRICTED_SERVER_CIPHER_LIST); } SSL_set_session_secret_cb(ssl, NULL, NULL); return 0; } static void tor_tls_setup_session_secret_cb(tor_tls_t *tls) { SSL_set_session_secret_cb(tls->ssl, tor_tls_session_secret_cb, NULL); } /** Create a new TLS object from a file descriptor, and a flag to * determine whether it is functioning as a server. */ tor_tls_t * tor_tls_new(int sock, int isServer) { BIO *bio = NULL; tor_tls_t *result = tor_malloc_zero(sizeof(tor_tls_t)); tor_tls_context_t *context = isServer ? server_tls_context : client_tls_context; result->magic = TOR_TLS_MAGIC; check_no_tls_errors(); tor_assert(context); /* make sure somebody made it first */ if (!(result->ssl = SSL_new(context->ctx))) { tls_log_errors(NULL, LOG_WARN, LD_NET, "creating SSL object"); tor_free(result); goto err; } #ifdef SSL_set_tlsext_host_name /* Browsers use the TLS hostname extension, so we should too. */ if (!isServer) { char *fake_hostname = crypto_random_hostname(4,25, "www.",".com"); SSL_set_tlsext_host_name(result->ssl, fake_hostname); tor_free(fake_hostname); } #endif if (!SSL_set_cipher_list(result->ssl, isServer ? SERVER_CIPHER_LIST : CLIENT_CIPHER_LIST)) { tls_log_errors(NULL, LOG_WARN, LD_NET, "setting ciphers"); #ifdef SSL_set_tlsext_host_name SSL_set_tlsext_host_name(result->ssl, NULL); #endif SSL_free(result->ssl); tor_free(result); goto err; } result->socket = sock; bio = BIO_new_socket(sock, BIO_NOCLOSE); if (! bio) { tls_log_errors(NULL, LOG_WARN, LD_NET, "opening BIO"); #ifdef SSL_set_tlsext_host_name SSL_set_tlsext_host_name(result->ssl, NULL); #endif SSL_free(result->ssl); tor_free(result); goto err; } { int set_worked = SSL_set_ex_data(result->ssl, tor_tls_object_ex_data_index, result); if (!set_worked) { log_warn(LD_BUG, "Couldn't set the tls for an SSL*; connection will fail"); } } SSL_set_bio(result->ssl, bio, bio); tor_tls_context_incref(context); result->context = context; result->state = TOR_TLS_ST_HANDSHAKE; result->isServer = isServer; result->wantwrite_n = 0; result->last_write_count = BIO_number_written(bio); result->last_read_count = BIO_number_read(bio); if (result->last_write_count || result->last_read_count) { log_warn(LD_NET, "Newly created BIO has read count %lu, write count %lu", result->last_read_count, result->last_write_count); } #ifdef V2_HANDSHAKE_SERVER if (isServer) { SSL_set_info_callback(result->ssl, tor_tls_server_info_callback); } else #endif { SSL_set_info_callback(result->ssl, tor_tls_debug_state_callback); } if (isServer) tor_tls_setup_session_secret_cb(result); goto done; err: result = NULL; done: /* Not expected to get called. */ tls_log_errors(NULL, LOG_WARN, LD_NET, "creating tor_tls_t object"); return result; } /** Make future log messages about tls display the address * address. */ void tor_tls_set_logged_address(tor_tls_t *tls, const char *address) { tor_assert(tls); tor_free(tls->address); tls->address = tor_strdup(address); } /** Set cb to be called with argument arg whenever tls * next gets a client-side renegotiate in the middle of a read. Do not * invoke this function until after initial handshaking is done! */ void tor_tls_set_renegotiate_callback(tor_tls_t *tls, void (*cb)(tor_tls_t *, void *arg), void *arg) { tls->negotiated_callback = cb; tls->callback_arg = arg; tls->got_renegotiate = 0; #ifdef V2_HANDSHAKE_SERVER if (cb) { SSL_set_info_callback(tls->ssl, tor_tls_server_info_callback); } else { SSL_set_info_callback(tls->ssl, tor_tls_debug_state_callback); } #endif } /** If this version of openssl requires it, turn on renegotiation on * tls. */ void tor_tls_unblock_renegotiation(tor_tls_t *tls) { /* Yes, we know what we are doing here. No, we do not treat a renegotiation * as authenticating any earlier-received data. */ SSL_set_options(tls->ssl, SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION); } /** If this version of openssl supports it, turn off renegotiation on * tls. (Our protocol never requires this for security, but it's nice * to use belt-and-suspenders here.) */ void tor_tls_block_renegotiation(tor_tls_t *tls) { #ifdef SUPPORT_UNSAFE_RENEGOTIATION_FLAG tls->ssl->s3->flags &= ~SSL3_FLAGS_ALLOW_UNSAFE_LEGACY_RENEGOTIATION; #else (void) tls; #endif } /** Assert that the flags that allow legacy renegotiation are still set */ void tor_tls_assert_renegotiation_unblocked(tor_tls_t *tls) { long options = SSL_get_options(tls->ssl); tor_assert(0 != (options & SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION)); } /** Return whether this tls initiated the connect (client) or * received it (server). */ int tor_tls_is_server(tor_tls_t *tls) { tor_assert(tls); return tls->isServer; } /** Release resources associated with a TLS object. Does not close the * underlying file descriptor. */ void tor_tls_free(tor_tls_t *tls) { if (!tls) return; tor_assert(tls->ssl); { size_t r,w; tor_tls_get_n_raw_bytes(tls,&r,&w); /* ensure written_by_tls is updated */ } #ifdef SSL_set_tlsext_host_name SSL_set_tlsext_host_name(tls->ssl, NULL); #endif SSL_free(tls->ssl); tls->ssl = NULL; tls->negotiated_callback = NULL; if (tls->context) tor_tls_context_decref(tls->context); tor_free(tls->address); tls->magic = 0x99999999; tor_free(tls); } /** Underlying function for TLS reading. Reads up to len * characters from tls into cp. On success, returns the * number of characters read. On failure, returns TOR_TLS_ERROR, * TOR_TLS_CLOSE, TOR_TLS_WANTREAD, or TOR_TLS_WANTWRITE. */ MOCK_IMPL(int, tor_tls_read,(tor_tls_t *tls, char *cp, size_t len)) { int r, err; tor_assert(tls); tor_assert(tls->ssl); tor_assert(tls->state == TOR_TLS_ST_OPEN); tor_assert(lenssl, cp, (int)len); if (r > 0) { #ifdef V2_HANDSHAKE_SERVER if (tls->got_renegotiate) { /* Renegotiation happened! */ log_info(LD_NET, "Got a TLS renegotiation from %s", ADDR(tls)); if (tls->negotiated_callback) tls->negotiated_callback(tls, tls->callback_arg); tls->got_renegotiate = 0; } #endif return r; } err = tor_tls_get_error(tls, r, CATCH_ZERO, "reading", LOG_DEBUG, LD_NET); if (err == TOR_TLS_ZERORETURN_ || err == TOR_TLS_CLOSE) { log_debug(LD_NET,"read returned r=%d; TLS is closed",r); tls->state = TOR_TLS_ST_CLOSED; return TOR_TLS_CLOSE; } else { tor_assert(err != TOR_TLS_DONE); log_debug(LD_NET,"read returned r=%d, err=%d",r,err); return err; } } /** Total number of bytes that we've used TLS to send. Used to track TLS * overhead. */ static uint64_t total_bytes_written_over_tls = 0; /** Total number of bytes that TLS has put on the network for us. Used to * track TLS overhead. */ static uint64_t total_bytes_written_by_tls = 0; /** Underlying function for TLS writing. Write up to n * characters from cp onto tls. On success, returns the * number of characters written. On failure, returns TOR_TLS_ERROR, * TOR_TLS_WANTREAD, or TOR_TLS_WANTWRITE. */ int tor_tls_write(tor_tls_t *tls, const char *cp, size_t n) { int r, err; tor_assert(tls); tor_assert(tls->ssl); tor_assert(tls->state == TOR_TLS_ST_OPEN); tor_assert(n < INT_MAX); if (n == 0) return 0; if (tls->wantwrite_n) { /* if WANTWRITE last time, we must use the _same_ n as before */ tor_assert(n >= tls->wantwrite_n); log_debug(LD_NET,"resuming pending-write, (%d to flush, reusing %d)", (int)n, (int)tls->wantwrite_n); n = tls->wantwrite_n; tls->wantwrite_n = 0; } r = SSL_write(tls->ssl, cp, (int)n); err = tor_tls_get_error(tls, r, 0, "writing", LOG_INFO, LD_NET); if (err == TOR_TLS_DONE) { total_bytes_written_over_tls += r; return r; } if (err == TOR_TLS_WANTWRITE || err == TOR_TLS_WANTREAD) { tls->wantwrite_n = n; } return err; } /** Perform initial handshake on tls. When finished, returns * TOR_TLS_DONE. On failure, returns TOR_TLS_ERROR, TOR_TLS_WANTREAD, * or TOR_TLS_WANTWRITE. */ int tor_tls_handshake(tor_tls_t *tls) { int r; int oldstate; tor_assert(tls); tor_assert(tls->ssl); tor_assert(tls->state == TOR_TLS_ST_HANDSHAKE); check_no_tls_errors(); oldstate = SSL_state(tls->ssl); if (tls->isServer) { log_debug(LD_HANDSHAKE, "About to call SSL_accept on %p (%s)", tls, SSL_state_string_long(tls->ssl)); r = SSL_accept(tls->ssl); } else { log_debug(LD_HANDSHAKE, "About to call SSL_connect on %p (%s)", tls, SSL_state_string_long(tls->ssl)); r = SSL_connect(tls->ssl); } if (oldstate != SSL_state(tls->ssl)) log_debug(LD_HANDSHAKE, "After call, %p was in state %s", tls, SSL_state_string_long(tls->ssl)); /* We need to call this here and not earlier, since OpenSSL has a penchant * for clearing its flags when you say accept or connect. */ tor_tls_unblock_renegotiation(tls); r = tor_tls_get_error(tls,r,0, "handshaking", LOG_INFO, LD_HANDSHAKE); if (ERR_peek_error() != 0) { tls_log_errors(tls, tls->isServer ? LOG_INFO : LOG_WARN, LD_HANDSHAKE, "handshaking"); return TOR_TLS_ERROR_MISC; } if (r == TOR_TLS_DONE) { tls->state = TOR_TLS_ST_OPEN; return tor_tls_finish_handshake(tls); } return r; } /** Perform the final part of the intial TLS handshake on tls. This * should be called for the first handshake only: it determines whether the v1 * or the v2 handshake was used, and adjusts things for the renegotiation * handshake as appropriate. * * tor_tls_handshake() calls this on its own; you only need to call this if * bufferevent is doing the handshake for you. */ int tor_tls_finish_handshake(tor_tls_t *tls) { int r = TOR_TLS_DONE; check_no_tls_errors(); if (tls->isServer) { SSL_set_info_callback(tls->ssl, NULL); SSL_set_verify(tls->ssl, SSL_VERIFY_PEER, always_accept_verify_cb); SSL_clear_mode(tls->ssl, SSL_MODE_NO_AUTO_CHAIN); #ifdef V2_HANDSHAKE_SERVER if (tor_tls_client_is_using_v2_ciphers(tls->ssl)) { /* This check is redundant, but back when we did it in the callback, * we might have not been able to look up the tor_tls_t if the code * was buggy. Fixing that. */ if (!tls->wasV2Handshake) { log_warn(LD_BUG, "For some reason, wasV2Handshake didn't" " get set. Fixing that."); } tls->wasV2Handshake = 1; log_debug(LD_HANDSHAKE, "Completed V2 TLS handshake with client; waiting" " for renegotiation."); } else { tls->wasV2Handshake = 0; } #endif } else { #ifdef V2_HANDSHAKE_CLIENT /* If we got no ID cert, we're a v2 handshake. */ X509 *cert = SSL_get_peer_certificate(tls->ssl); STACK_OF(X509) *chain = SSL_get_peer_cert_chain(tls->ssl); int n_certs = sk_X509_num(chain); if (n_certs > 1 || (n_certs == 1 && cert != sk_X509_value(chain, 0))) { log_debug(LD_HANDSHAKE, "Server sent back multiple certificates; it " "looks like a v1 handshake on %p", tls); tls->wasV2Handshake = 0; } else { log_debug(LD_HANDSHAKE, "Server sent back a single certificate; looks like " "a v2 handshake on %p.", tls); tls->wasV2Handshake = 1; } if (cert) X509_free(cert); #endif if (SSL_set_cipher_list(tls->ssl, SERVER_CIPHER_LIST) == 0) { tls_log_errors(NULL, LOG_WARN, LD_HANDSHAKE, "re-setting ciphers"); r = TOR_TLS_ERROR_MISC; } } tls_log_errors(NULL, LOG_WARN, LD_NET, "finishing the handshake"); return r; } #ifdef USE_BUFFEREVENTS /** Put tls, which must be a client connection, into renegotiation * mode. */ int tor_tls_start_renegotiating(tor_tls_t *tls) { int r = SSL_renegotiate(tls->ssl); if (r <= 0) { return tor_tls_get_error(tls, r, 0, "renegotiating", LOG_WARN, LD_HANDSHAKE); } return 0; } #endif /** Client only: Renegotiate a TLS session. When finished, returns * TOR_TLS_DONE. On failure, returns TOR_TLS_ERROR, TOR_TLS_WANTREAD, or * TOR_TLS_WANTWRITE. */ int tor_tls_renegotiate(tor_tls_t *tls) { int r; tor_assert(tls); /* We could do server-initiated renegotiation too, but that would be tricky. * Instead of "SSL_renegotiate, then SSL_do_handshake until done" */ tor_assert(!tls->isServer); check_no_tls_errors(); if (tls->state != TOR_TLS_ST_RENEGOTIATE) { int r = SSL_renegotiate(tls->ssl); if (r <= 0) { return tor_tls_get_error(tls, r, 0, "renegotiating", LOG_WARN, LD_HANDSHAKE); } tls->state = TOR_TLS_ST_RENEGOTIATE; } r = SSL_do_handshake(tls->ssl); if (r == 1) { tls->state = TOR_TLS_ST_OPEN; return TOR_TLS_DONE; } else return tor_tls_get_error(tls, r, 0, "renegotiating handshake", LOG_INFO, LD_HANDSHAKE); } /** Shut down an open tls connection tls. When finished, returns * TOR_TLS_DONE. On failure, returns TOR_TLS_ERROR, TOR_TLS_WANTREAD, * or TOR_TLS_WANTWRITE. */ int tor_tls_shutdown(tor_tls_t *tls) { int r, err; char buf[128]; tor_assert(tls); tor_assert(tls->ssl); check_no_tls_errors(); while (1) { if (tls->state == TOR_TLS_ST_SENTCLOSE) { /* If we've already called shutdown once to send a close message, * we read until the other side has closed too. */ do { r = SSL_read(tls->ssl, buf, 128); } while (r>0); err = tor_tls_get_error(tls, r, CATCH_ZERO, "reading to shut down", LOG_INFO, LD_NET); if (err == TOR_TLS_ZERORETURN_) { tls->state = TOR_TLS_ST_GOTCLOSE; /* fall through... */ } else { return err; } } r = SSL_shutdown(tls->ssl); if (r == 1) { /* If shutdown returns 1, the connection is entirely closed. */ tls->state = TOR_TLS_ST_CLOSED; return TOR_TLS_DONE; } err = tor_tls_get_error(tls, r, CATCH_SYSCALL|CATCH_ZERO, "shutting down", LOG_INFO, LD_NET); if (err == TOR_TLS_SYSCALL_) { /* The underlying TCP connection closed while we were shutting down. */ tls->state = TOR_TLS_ST_CLOSED; return TOR_TLS_DONE; } else if (err == TOR_TLS_ZERORETURN_) { /* The TLS connection says that it sent a shutdown record, but * isn't done shutting down yet. Make sure that this hasn't * happened before, then go back to the start of the function * and try to read. */ if (tls->state == TOR_TLS_ST_GOTCLOSE || tls->state == TOR_TLS_ST_SENTCLOSE) { log_warn(LD_NET, "TLS returned \"half-closed\" value while already half-closed"); return TOR_TLS_ERROR_MISC; } tls->state = TOR_TLS_ST_SENTCLOSE; /* fall through ... */ } else { return err; } } /* end loop */ } /** Return true iff this TLS connection is authenticated. */ int tor_tls_peer_has_cert(tor_tls_t *tls) { X509 *cert; cert = SSL_get_peer_certificate(tls->ssl); tls_log_errors(tls, LOG_WARN, LD_HANDSHAKE, "getting peer certificate"); if (!cert) return 0; X509_free(cert); return 1; } /** Return the peer certificate, or NULL if there isn't one. */ MOCK_IMPL(tor_x509_cert_t *, tor_tls_get_peer_cert,(tor_tls_t *tls)) { X509 *cert; cert = SSL_get_peer_certificate(tls->ssl); tls_log_errors(tls, LOG_WARN, LD_HANDSHAKE, "getting peer certificate"); if (!cert) return NULL; return tor_x509_cert_new(cert); } /** Warn that a certificate lifetime extends through a certain range. */ static void log_cert_lifetime(int severity, const X509 *cert, const char *problem) { BIO *bio = NULL; BUF_MEM *buf; char *s1=NULL, *s2=NULL; char mytime[33]; time_t now = time(NULL); struct tm tm; size_t n; if (problem) tor_log(severity, LD_GENERAL, "Certificate %s. Either their clock is set wrong, or your clock " "is wrong.", problem); if (!(bio = BIO_new(BIO_s_mem()))) { log_warn(LD_GENERAL, "Couldn't allocate BIO!"); goto end; } if (!(ASN1_TIME_print(bio, X509_get_notBefore_const(cert)))) { tls_log_errors(NULL, LOG_WARN, LD_NET, "printing certificate lifetime"); goto end; } BIO_get_mem_ptr(bio, &buf); s1 = tor_strndup(buf->data, buf->length); (void)BIO_reset(bio); if (!(ASN1_TIME_print(bio, X509_get_notAfter_const(cert)))) { tls_log_errors(NULL, LOG_WARN, LD_NET, "printing certificate lifetime"); goto end; } BIO_get_mem_ptr(bio, &buf); s2 = tor_strndup(buf->data, buf->length); n = strftime(mytime, 32, "%b %d %H:%M:%S %Y UTC", tor_gmtime_r(&now, &tm)); if (n > 0) { tor_log(severity, LD_GENERAL, "(certificate lifetime runs from %s through %s. Your time is %s.)", s1,s2,mytime); } else { tor_log(severity, LD_GENERAL, "(certificate lifetime runs from %s through %s. " "Couldn't get your time.)", s1, s2); } end: /* Not expected to get invoked */ tls_log_errors(NULL, LOG_WARN, LD_NET, "getting certificate lifetime"); if (bio) BIO_free(bio); tor_free(s1); tor_free(s2); } /** Helper function: try to extract a link certificate and an identity * certificate from tls, and store them in *cert_out and * *id_cert_out respectively. Log all messages at level * severity. * * Note that a reference is added to cert_out, so it needs to be * freed. id_cert_out doesn't. */ static void try_to_extract_certs_from_tls(int severity, tor_tls_t *tls, X509 **cert_out, X509 **id_cert_out) { X509 *cert = NULL, *id_cert = NULL; STACK_OF(X509) *chain = NULL; int num_in_chain, i; *cert_out = *id_cert_out = NULL; if (!(cert = SSL_get_peer_certificate(tls->ssl))) return; *cert_out = cert; if (!(chain = SSL_get_peer_cert_chain(tls->ssl))) return; num_in_chain = sk_X509_num(chain); /* 1 means we're receiving (server-side), and it's just the id_cert. * 2 means we're connecting (client-side), and it's both the link * cert and the id_cert. */ if (num_in_chain < 1) { log_fn(severity,LD_PROTOCOL, "Unexpected number of certificates in chain (%d)", num_in_chain); return; } for (i=0; iidentity_key to the identity certificate's key and return * 0. Else, return -1 and log complaints with log-level severity. */ int tor_tls_verify(int severity, tor_tls_t *tls, crypto_pk_t **identity_key) { X509 *cert = NULL, *id_cert = NULL; EVP_PKEY *id_pkey = NULL; RSA *rsa; int r = -1; check_no_tls_errors(); *identity_key = NULL; try_to_extract_certs_from_tls(severity, tls, &cert, &id_cert); if (!cert) goto done; if (!id_cert) { log_fn(severity,LD_PROTOCOL,"No distinct identity certificate found"); goto done; } tls_log_errors(tls, severity, LD_HANDSHAKE, "before verifying certificate"); if (!(id_pkey = X509_get_pubkey(id_cert)) || X509_verify(cert, id_pkey) <= 0) { log_fn(severity,LD_PROTOCOL,"X509_verify on cert and pkey returned <= 0"); tls_log_errors(tls, severity, LD_HANDSHAKE, "verifying certificate"); goto done; } rsa = EVP_PKEY_get1_RSA(id_pkey); if (!rsa) goto done; *identity_key = crypto_new_pk_from_rsa_(rsa); r = 0; done: if (cert) X509_free(cert); if (id_pkey) EVP_PKEY_free(id_pkey); /* This should never get invoked, but let's make sure in case OpenSSL * acts unexpectedly. */ tls_log_errors(tls, LOG_WARN, LD_HANDSHAKE, "finishing tor_tls_verify"); return r; } /** Check whether the certificate set on the connection tls is expired * give or take past_tolerance seconds, or not-yet-valid give or take * future_tolerance seconds. Return 0 for valid, -1 for failure. * * NOTE: you should call tor_tls_verify before tor_tls_check_lifetime. */ int tor_tls_check_lifetime(int severity, tor_tls_t *tls, int past_tolerance, int future_tolerance) { X509 *cert; int r = -1; if (!(cert = SSL_get_peer_certificate(tls->ssl))) goto done; if (check_cert_lifetime_internal(severity, cert, past_tolerance, future_tolerance) < 0) goto done; r = 0; done: if (cert) X509_free(cert); /* Not expected to get invoked */ tls_log_errors(tls, LOG_WARN, LD_NET, "checking certificate lifetime"); return r; } /** Helper: check whether cert is expired give or take * past_tolerance seconds, or not-yet-valid give or take * future_tolerance seconds. If it is live, return 0. If it is not * live, log a message and return -1. */ static int check_cert_lifetime_internal(int severity, const X509 *cert, int past_tolerance, int future_tolerance) { time_t now, t; now = time(NULL); t = now + future_tolerance; if (X509_cmp_time(X509_get_notBefore_const(cert), &t) > 0) { log_cert_lifetime(severity, cert, "not yet valid"); return -1; } t = now - past_tolerance; if (X509_cmp_time(X509_get_notAfter_const(cert), &t) < 0) { log_cert_lifetime(severity, cert, "already expired"); return -1; } return 0; } /** Return the number of bytes available for reading from tls. */ int tor_tls_get_pending_bytes(tor_tls_t *tls) { tor_assert(tls); return SSL_pending(tls->ssl); } /** If tls requires that the next write be of a particular size, * return that size. Otherwise, return 0. */ size_t tor_tls_get_forced_write_size(tor_tls_t *tls) { return tls->wantwrite_n; } /** Sets n_read and n_written to the number of bytes read and written, * respectively, on the raw socket used by tls since the last time this * function was called on tls. */ void tor_tls_get_n_raw_bytes(tor_tls_t *tls, size_t *n_read, size_t *n_written) { BIO *wbio, *tmpbio; unsigned long r, w; r = BIO_number_read(SSL_get_rbio(tls->ssl)); /* We want the number of bytes actually for real written. Unfortunately, * sometimes OpenSSL replaces the wbio on tls->ssl with a buffering bio, * which makes the answer turn out wrong. Let's cope with that. Note * that this approach will fail if we ever replace tls->ssl's BIOs with * buffering bios for reasons of our own. As an alternative, we could * save the original BIO for tls->ssl in the tor_tls_t structure, but * that would be tempting fate. */ wbio = SSL_get_wbio(tls->ssl); if (wbio->method == BIO_f_buffer() && (tmpbio = BIO_next(wbio)) != NULL) wbio = tmpbio; w = BIO_number_written(wbio); /* We are ok with letting these unsigned ints go "negative" here: * If we wrapped around, this should still give us the right answer, unless * we wrapped around by more than ULONG_MAX since the last time we called * this function. */ *n_read = (size_t)(r - tls->last_read_count); *n_written = (size_t)(w - tls->last_write_count); if (*n_read > INT_MAX || *n_written > INT_MAX) { log_warn(LD_BUG, "Preposterously large value in tor_tls_get_n_raw_bytes. " "r=%lu, last_read=%lu, w=%lu, last_written=%lu", r, tls->last_read_count, w, tls->last_write_count); } total_bytes_written_by_tls += *n_written; tls->last_read_count = r; tls->last_write_count = w; } /** Return a ratio of the bytes that TLS has sent to the bytes that we've told * it to send. Used to track whether our TLS records are getting too tiny. */ MOCK_IMPL(double, tls_get_write_overhead_ratio,(void)) { if (total_bytes_written_over_tls == 0) return 1.0; return U64_TO_DBL(total_bytes_written_by_tls) / U64_TO_DBL(total_bytes_written_over_tls); } /** Implement check_no_tls_errors: If there are any pending OpenSSL * errors, log an error message. */ void check_no_tls_errors_(const char *fname, int line) { if (ERR_peek_error() == 0) return; log_warn(LD_CRYPTO, "Unhandled OpenSSL errors found at %s:%d: ", tor_fix_source_file(fname), line); tls_log_errors(NULL, LOG_WARN, LD_NET, NULL); } /** Return true iff the initial TLS connection at tls did not use a v2 * TLS handshake. Output is undefined if the handshake isn't finished. */ int tor_tls_used_v1_handshake(tor_tls_t *tls) { #if defined(V2_HANDSHAKE_SERVER) && defined(V2_HANDSHAKE_CLIENT) return ! tls->wasV2Handshake; #else if (tls->isServer) { # ifdef V2_HANDSHAKE_SERVER return ! tls->wasV2Handshake; # endif } else { # ifdef V2_HANDSHAKE_CLIENT return ! tls->wasV2Handshake; # endif } return 1; #endif } /** Return true iff name is a DN of a kind that could only * occur in a v3-handshake-indicating certificate */ static int dn_indicates_v3_cert(X509_NAME *name) { #ifdef DISABLE_V3_LINKPROTO_CLIENTSIDE (void)name; return 0; #else X509_NAME_ENTRY *entry; int n_entries; ASN1_OBJECT *obj; ASN1_STRING *str; unsigned char *s; int len, r; n_entries = X509_NAME_entry_count(name); if (n_entries != 1) return 1; /* More than one entry in the DN. */ entry = X509_NAME_get_entry(name, 0); obj = X509_NAME_ENTRY_get_object(entry); if (OBJ_obj2nid(obj) != OBJ_txt2nid("commonName")) return 1; /* The entry isn't a commonName. */ str = X509_NAME_ENTRY_get_data(entry); len = ASN1_STRING_to_UTF8(&s, str); if (len < 0) return 0; if (len < 4) { OPENSSL_free(s); return 1; } r = fast_memneq(s + len - 4, ".net", 4); OPENSSL_free(s); return r; #endif } /** Return true iff the peer certificate we're received on tls * indicates that this connection should use the v3 (in-protocol) * authentication handshake. * * Only the connection initiator should use this, and only once the initial * handshake is done; the responder detects a v1 handshake by cipher types, * and a v3/v2 handshake by Versions cell vs renegotiation. */ int tor_tls_received_v3_certificate(tor_tls_t *tls) { check_no_tls_errors(); X509 *cert = SSL_get_peer_certificate(tls->ssl); EVP_PKEY *key = NULL; X509_NAME *issuer_name, *subject_name; int is_v3 = 0; if (!cert) { log_warn(LD_BUG, "Called on a connection with no peer certificate"); goto done; } subject_name = X509_get_subject_name(cert); issuer_name = X509_get_issuer_name(cert); if (X509_name_cmp(subject_name, issuer_name) == 0) { is_v3 = 1; /* purportedly self signed */ goto done; } if (dn_indicates_v3_cert(subject_name) || dn_indicates_v3_cert(issuer_name)) { is_v3 = 1; /* DN is fancy */ goto done; } key = X509_get_pubkey(cert); if (EVP_PKEY_bits(key) != 1024 || EVP_PKEY_type(key->type) != EVP_PKEY_RSA) { is_v3 = 1; /* Key is fancy */ goto done; } done: tls_log_errors(tls, LOG_WARN, LD_NET, "checking for a v3 cert"); if (key) EVP_PKEY_free(key); if (cert) X509_free(cert); return is_v3; } /** Return the number of server handshakes that we've noticed doing on * tls. */ int tor_tls_get_num_server_handshakes(tor_tls_t *tls) { return tls->server_handshake_count; } /** Return true iff the server TLS connection tls got the renegotiation * request it was waiting for. */ int tor_tls_server_got_renegotiate(tor_tls_t *tls) { return tls->got_renegotiate; } #ifndef HAVE_SSL_GET_CLIENT_RANDOM static size_t SSL_get_client_random(SSL *s, uint8_t *out, size_t len) { if (len == 0) return SSL3_RANDOM_SIZE; tor_assert(len == SSL3_RANDOM_SIZE); tor_assert(s->s3); memcpy(out, s->s3->client_random, len); return len; } #endif #ifndef HAVE_SSL_GET_SERVER_RANDOM static size_t SSL_get_server_random(SSL *s, uint8_t *out, size_t len) { if (len == 0) return SSL3_RANDOM_SIZE; tor_assert(len == SSL3_RANDOM_SIZE); tor_assert(s->s3); memcpy(out, s->s3->server_random, len); return len; } #endif #ifndef HAVE_SSL_SESSION_GET_MASTER_KEY static size_t SSL_SESSION_get_master_key(SSL_SESSION *s, uint8_t *out, size_t len) { tor_assert(s); if (len == 0) return s->master_key_length; tor_assert(len == (size_t)s->master_key_length); tor_assert(out); memcpy(out, s->master_key, len); return len; } #endif /** Set the DIGEST256_LEN buffer at secrets_out to the value used in * the v3 handshake to prove that the client knows the TLS secrets for the * connection tls. Return 0 on success, -1 on failure. */ MOCK_IMPL(int, tor_tls_get_tlssecrets,(tor_tls_t *tls, uint8_t *secrets_out)) { #define TLSSECRET_MAGIC "Tor V3 handshake TLS cross-certification" uint8_t buf[128]; size_t len; tor_assert(tls); SSL *const ssl = tls->ssl; SSL_SESSION *const session = SSL_get_session(ssl); tor_assert(ssl); tor_assert(session); const size_t server_random_len = SSL_get_server_random(ssl, NULL, 0); const size_t client_random_len = SSL_get_client_random(ssl, NULL, 0); const size_t master_key_len = SSL_SESSION_get_master_key(session, NULL, 0); tor_assert(server_random_len); tor_assert(client_random_len); tor_assert(master_key_len); len = client_random_len + server_random_len + strlen(TLSSECRET_MAGIC) + 1; tor_assert(len <= sizeof(buf)); { size_t r = SSL_get_client_random(ssl, buf, client_random_len); tor_assert(r == client_random_len); } { size_t r = SSL_get_server_random(ssl, buf+client_random_len, server_random_len); tor_assert(r == server_random_len); } uint8_t *master_key = tor_malloc_zero(master_key_len); { size_t r = SSL_SESSION_get_master_key(session, master_key, master_key_len); tor_assert(r == master_key_len); } uint8_t *nextbuf = buf + client_random_len + server_random_len; memcpy(nextbuf, TLSSECRET_MAGIC, strlen(TLSSECRET_MAGIC) + 1); /* The value is an HMAC, using the TLS master key as the HMAC key, of client_random | server_random | TLSSECRET_MAGIC */ crypto_hmac_sha256((char*)secrets_out, (char*)master_key, master_key_len, (char*)buf, len); memwipe(buf, 0, sizeof(buf)); memwipe(master_key, 0, master_key_len); tor_free(master_key); return 0; } /** Examine the amount of memory used and available for buffers in tls. * Set *rbuf_capacity to the amount of storage allocated for the read * buffer and *rbuf_bytes to the amount actually used. * Set *wbuf_capacity to the amount of storage allocated for the write * buffer and *wbuf_bytes to the amount actually used. * * Return 0 on success, -1 on failure.*/ int tor_tls_get_buffer_sizes(tor_tls_t *tls, size_t *rbuf_capacity, size_t *rbuf_bytes, size_t *wbuf_capacity, size_t *wbuf_bytes) { #if OPENSSL_VERSION_NUMBER >= OPENSSL_V_SERIES(1,1,0) (void)tls; (void)rbuf_capacity; (void)rbuf_bytes; (void)wbuf_capacity; (void)wbuf_bytes; return -1; #else if (tls->ssl->s3->rbuf.buf) *rbuf_capacity = tls->ssl->s3->rbuf.len; else *rbuf_capacity = 0; if (tls->ssl->s3->wbuf.buf) *wbuf_capacity = tls->ssl->s3->wbuf.len; else *wbuf_capacity = 0; *rbuf_bytes = tls->ssl->s3->rbuf.left; *wbuf_bytes = tls->ssl->s3->wbuf.left; return 0; #endif } #ifdef USE_BUFFEREVENTS /** Construct and return an TLS-encrypting bufferevent to send data over * socket, which must match the socket of the underlying bufferevent * bufev_in. The TLS object tls is used for encryption. * * This function will either create a filtering bufferevent that wraps around * bufev_in, or it will free bufev_in and return a new bufferevent that * uses the tls to talk to the network directly. Do not use * bufev_in after calling this function. * * The connection will start out doing a server handshake if receiving * is strue, and a client handshake otherwise. * * Returns NULL on failure. */ struct bufferevent * tor_tls_init_bufferevent(tor_tls_t *tls, struct bufferevent *bufev_in, evutil_socket_t socket, int receiving, int filter) { struct bufferevent *out; const enum bufferevent_ssl_state state = receiving ? BUFFEREVENT_SSL_ACCEPTING : BUFFEREVENT_SSL_CONNECTING; if (filter || tor_libevent_using_iocp_bufferevents()) { /* Grab an extra reference to the SSL, since BEV_OPT_CLOSE_ON_FREE means that the SSL will get freed too. This increment makes our SSL usage not-threadsafe, BTW. We should see if we're allowed to use CRYPTO_add from outside openssl. */ tls->ssl->references += 1; out = bufferevent_openssl_filter_new(tor_libevent_get_base(), bufev_in, tls->ssl, state, BEV_OPT_DEFER_CALLBACKS| BEV_OPT_CLOSE_ON_FREE); /* Tell the underlying bufferevent when to accept more data from the SSL filter (only when it's got less than 32K to write), and when to notify the SSL filter that it could write more (when it drops under 24K). */ bufferevent_setwatermark(bufev_in, EV_WRITE, 24*1024, 32*1024); } else { if (bufev_in) { evutil_socket_t s = bufferevent_getfd(bufev_in); tor_assert(s == -1 || s == socket); tor_assert(evbuffer_get_length(bufferevent_get_input(bufev_in)) == 0); tor_assert(evbuffer_get_length(bufferevent_get_output(bufev_in)) == 0); tor_assert(BIO_number_read(SSL_get_rbio(tls->ssl)) == 0); tor_assert(BIO_number_written(SSL_get_rbio(tls->ssl)) == 0); bufferevent_free(bufev_in); } /* Current versions (as of 2.0.x) of Libevent need to defer * bufferevent_openssl callbacks, or else our callback functions will * get called reentrantly, which is bad for us. */ out = bufferevent_openssl_socket_new(tor_libevent_get_base(), socket, tls->ssl, state, BEV_OPT_DEFER_CALLBACKS); } tls->state = TOR_TLS_ST_BUFFEREVENT; /* Unblock _after_ creating the bufferevent, since accept/connect tend to * clear flags. */ tor_tls_unblock_renegotiation(tls); return out; } #endif /** Check whether the ECC group requested is supported by the current OpenSSL * library instance. Return 1 if the group is supported, and 0 if not. */ int evaluate_ecgroup_for_tls(const char *ecgroup) { EC_KEY *ec_key; int nid; int ret; if (!ecgroup) nid = NID_tor_default_ecdhe_group; else if (!strcasecmp(ecgroup, "P256")) nid = NID_X9_62_prime256v1; else if (!strcasecmp(ecgroup, "P224")) nid = NID_secp224r1; else return 0; ec_key = EC_KEY_new_by_curve_name(nid); ret = (ec_key != NULL); EC_KEY_free(ec_key); return ret; } tor-0.2.7.6/src/common/crypto_format.h0000644000175000017500000000340012621363245014532 00000000000000/* Copyright (c) 2001, Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef TOR_CRYPTO_FORMAT_H #define TOR_CRYPTO_FORMAT_H #include "testsupport.h" #include "torint.h" #include "crypto_ed25519.h" int crypto_write_tagged_contents_to_file(const char *fname, const char *typestring, const char *tag, const uint8_t *data, size_t datalen); ssize_t crypto_read_tagged_contents_from_file(const char *fname, const char *typestring, char **tag_out, uint8_t *data_out, ssize_t data_out_len); #define ED25519_BASE64_LEN 43 int ed25519_public_from_base64(ed25519_public_key_t *pkey, const char *input); int ed25519_public_to_base64(char *output, const ed25519_public_key_t *pkey); /* XXXX move these to crypto_format.h */ #define ED25519_SIG_BASE64_LEN 86 int ed25519_signature_from_base64(ed25519_signature_t *sig, const char *input); int ed25519_signature_to_base64(char *output, const ed25519_signature_t *sig); int digest_to_base64(char *d64, const char *digest); int digest_from_base64(char *digest, const char *d64); int digest256_to_base64(char *d64, const char *digest); int digest256_from_base64(char *digest, const char *d64); #endif tor-0.2.7.6/src/common/compat_libevent.c0000644000175000017500000004555512631612325015026 00000000000000/* Copyright (c) 2009-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file compat_libevent.c * \brief Wrappers to handle porting between different versions of libevent. * * In an ideal world, we'd just use Libevent 2.0 from now on. But as of June * 2012, Libevent 1.4 is still all over, and some poor souls are stuck on * Libevent 1.3e. */ #include "orconfig.h" #include "compat.h" #include "compat_libevent.h" #include "crypto.h" #include "util.h" #include "torlog.h" #ifdef HAVE_EVENT2_EVENT_H #include #include #ifdef USE_BUFFEREVENTS #include #endif #else #include #endif /** A number representing a version of Libevent. This is a 4-byte number, with the first three bytes representing the major, minor, and patchlevel respectively of the library. The fourth byte is unused. This is equivalent to the format of LIBEVENT_VERSION_NUMBER on Libevent 2.0.1 or later. For versions of Libevent before 1.4.0, which followed the format of "1.0, 1.0a, 1.0b", we define 1.0 to be equivalent to 1.0.0, 1.0a to be equivalent to 1.0.1, and so on. */ typedef uint32_t le_version_t; /** @{ */ /** Macros: returns the number of a libevent version as a le_version_t */ #define V(major, minor, patch) \ (((major) << 24) | ((minor) << 16) | ((patch) << 8)) #define V_OLD(major, minor, patch) \ V((major), (minor), (patch)-'a'+1) /** @} */ /** Represetns a version of libevent so old we can't figure out what version * it is. */ #define LE_OLD V(0,0,0) /** Represents a version of libevent so weird we can't figure out what version * it is. */ #define LE_OTHER V(0,0,99) /** A string which, if it appears in a libevent log, should be ignored. */ static const char *suppress_msg = NULL; /** Callback function passed to event_set_log() so we can intercept * log messages from libevent. */ static void libevent_logging_callback(int severity, const char *msg) { char buf[1024]; size_t n; if (suppress_msg && strstr(msg, suppress_msg)) return; n = strlcpy(buf, msg, sizeof(buf)); if (n && n < sizeof(buf) && buf[n-1] == '\n') { buf[n-1] = '\0'; } switch (severity) { case _EVENT_LOG_DEBUG: log_debug(LD_NOCB|LD_NET, "Message from libevent: %s", buf); break; case _EVENT_LOG_MSG: log_info(LD_NOCB|LD_NET, "Message from libevent: %s", buf); break; case _EVENT_LOG_WARN: log_warn(LD_NOCB|LD_GENERAL, "Warning from libevent: %s", buf); break; case _EVENT_LOG_ERR: log_err(LD_NOCB|LD_GENERAL, "Error from libevent: %s", buf); break; default: log_warn(LD_NOCB|LD_GENERAL, "Message [%d] from libevent: %s", severity, buf); break; } } /** Set hook to intercept log messages from libevent. */ void configure_libevent_logging(void) { event_set_log_callback(libevent_logging_callback); } /** Ignore any libevent log message that contains msg. */ void suppress_libevent_log_msg(const char *msg) { suppress_msg = msg; } #ifndef HAVE_EVENT2_EVENT_H /** Work-alike replacement for event_new() on pre-Libevent-2.0 systems. */ struct event * tor_event_new(struct event_base *base, int sock, short what, void (*cb)(int, short, void *), void *arg) { struct event *e = tor_malloc_zero(sizeof(struct event)); event_set(e, sock, what, cb, arg); if (! base) base = tor_libevent_get_base(); event_base_set(base, e); return e; } /** Work-alike replacement for evtimer_new() on pre-Libevent-2.0 systems. */ struct event * tor_evtimer_new(struct event_base *base, void (*cb)(int, short, void *), void *arg) { return tor_event_new(base, -1, 0, cb, arg); } /** Work-alike replacement for evsignal_new() on pre-Libevent-2.0 systems. */ struct event * tor_evsignal_new(struct event_base * base, int sig, void (*cb)(int, short, void *), void *arg) { return tor_event_new(base, sig, EV_SIGNAL|EV_PERSIST, cb, arg); } /** Work-alike replacement for event_free() on pre-Libevent-2.0 systems, * except tolerate tor_event_free(NULL). */ void tor_event_free(struct event *ev) { if (ev == NULL) return; event_del(ev); tor_free(ev); } #else /* Wrapper for event_free() that tolerates tor_event_free(NULL) */ void tor_event_free(struct event *ev) { if (ev == NULL) return; event_free(ev); } #endif /** Global event base for use by the main thread. */ struct event_base *the_event_base = NULL; /* This is what passes for version detection on OSX. We set * MACOSX_KQUEUE_IS_BROKEN to true iff we're on a version of OSX before * 10.4.0 (aka 1040). */ #ifdef __APPLE__ #ifdef __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ #define MACOSX_KQUEUE_IS_BROKEN \ (__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1040) #else #define MACOSX_KQUEUE_IS_BROKEN 0 #endif #endif #ifdef USE_BUFFEREVENTS static int using_iocp_bufferevents = 0; static void tor_libevent_set_tick_timeout(int msec_per_tick); int tor_libevent_using_iocp_bufferevents(void) { return using_iocp_bufferevents; } #endif /** Initialize the Libevent library and set up the event base. */ void tor_libevent_initialize(tor_libevent_cfg *torcfg) { tor_assert(the_event_base == NULL); /* some paths below don't use torcfg, so avoid unused variable warnings */ (void)torcfg; #ifdef HAVE_EVENT2_EVENT_H { int attempts = 0; int using_threads; struct event_config *cfg; retry: ++attempts; using_threads = 0; cfg = event_config_new(); tor_assert(cfg); #if defined(_WIN32) && defined(USE_BUFFEREVENTS) if (! torcfg->disable_iocp) { evthread_use_windows_threads(); event_config_set_flag(cfg, EVENT_BASE_FLAG_STARTUP_IOCP); using_iocp_bufferevents = 1; using_threads = 1; } else { using_iocp_bufferevents = 0; } #elif defined(__COVERITY__) /* Avoid a 'dead code' warning below. */ using_threads = ! torcfg->disable_iocp; #endif if (!using_threads) { /* Telling Libevent not to try to turn locking on can avoid a needless * socketpair() attempt. */ event_config_set_flag(cfg, EVENT_BASE_FLAG_NOLOCK); } #if defined(LIBEVENT_VERSION_NUMBER) && LIBEVENT_VERSION_NUMBER >= V(2,0,7) if (torcfg->num_cpus > 0) event_config_set_num_cpus_hint(cfg, torcfg->num_cpus); #endif #if LIBEVENT_VERSION_NUMBER >= V(2,0,9) /* We can enable changelist support with epoll, since we don't give * Libevent any dup'd fds. This lets us avoid some syscalls. */ event_config_set_flag(cfg, EVENT_BASE_FLAG_EPOLL_USE_CHANGELIST); #endif the_event_base = event_base_new_with_config(cfg); event_config_free(cfg); if (using_threads && the_event_base == NULL && attempts < 2) { /* This could be a socketpair() failure, which can happen sometimes on * windows boxes with obnoxious firewall rules. Downgrade and try * again. */ #if defined(_WIN32) && defined(USE_BUFFEREVENTS) if (torcfg->disable_iocp == 0) { log_warn(LD_GENERAL, "Unable to initialize Libevent. Trying again " "with IOCP disabled."); } else #endif { log_warn(LD_GENERAL, "Unable to initialize Libevent. Trying again."); } torcfg->disable_iocp = 1; goto retry; } } #else the_event_base = event_init(); #endif if (!the_event_base) { log_err(LD_GENERAL, "Unable to initialize Libevent: cannot continue."); exit(1); } /* Making this a NOTICE for now so we can link bugs to a libevent versions * or methods better. */ log_info(LD_GENERAL, "Initialized libevent version %s using method %s. Good.", event_get_version(), tor_libevent_get_method()); #ifdef USE_BUFFEREVENTS tor_libevent_set_tick_timeout(torcfg->msec_per_tick); #endif } /** Return the current Libevent event base that we're set up to use. */ MOCK_IMPL(struct event_base *, tor_libevent_get_base, (void)) { return the_event_base; } /** Return the name of the Libevent backend we're using. */ const char * tor_libevent_get_method(void) { #ifdef HAVE_EVENT2_EVENT_H return event_base_get_method(the_event_base); #else return event_get_method(); #endif } /** Return the le_version_t for the version of libevent specified in the * string v. If the version is very new or uses an unrecognized * version, format, return LE_OTHER. */ static le_version_t tor_decode_libevent_version(const char *v) { unsigned major, minor, patchlevel; char c, e, extra; int fields; /* Try the new preferred "1.4.11-stable" format. * Also accept "1.4.14b-stable". */ fields = tor_sscanf(v, "%u.%u.%u%c%c", &major, &minor, &patchlevel, &c, &e); if (fields == 3 || ((fields == 4 || fields == 5 ) && (c == '-' || c == '_')) || (fields == 5 && TOR_ISALPHA(c) && (e == '-' || e == '_'))) { return V(major,minor,patchlevel); } /* Try the old "1.3e" format. */ fields = tor_sscanf(v, "%u.%u%c%c", &major, &minor, &c, &extra); if (fields == 3 && TOR_ISALPHA(c)) { return V_OLD(major, minor, c); } else if (fields == 2) { return V(major, minor, 0); } return LE_OTHER; } /** Return an integer representing the binary interface of a Libevent library. * Two different versions with different numbers are sure not to be binary * compatible. Two different versions with the same numbers have a decent * chance of binary compatibility.*/ static int le_versions_compatibility(le_version_t v) { if (v == LE_OTHER) return 0; if (v < V_OLD(1,0,'c')) return 1; else if (v < V(1,4,0)) return 2; else if (v < V(1,4,99)) return 3; else if (v < V(2,0,1)) return 4; else /* Everything 2.0 and later should be compatible. */ return 5; } /** Return a string representation of the version of the currently running * version of Libevent. */ const char * tor_libevent_get_version_str(void) { return event_get_version(); } #if defined(LIBEVENT_VERSION) #define HEADER_VERSION LIBEVENT_VERSION #elif defined(_EVENT_VERSION) #define HEADER_VERSION _EVENT_VERSION #endif /** Return a string representation of the version of Libevent that was used * at compilation time. */ const char * tor_libevent_get_header_version_str(void) { return HEADER_VERSION; } /** See whether the headers we were built against differ from the library we * linked against so much that we're likely to crash. If so, warn the * user. */ void tor_check_libevent_header_compatibility(void) { (void) le_versions_compatibility; (void) tor_decode_libevent_version; /* In libevent versions before 2.0, it's hard to keep binary compatibility * between upgrades, and unpleasant to detect when the version we compiled * against is unlike the version we have linked against. Here's how. */ #if defined(HEADER_VERSION) /* We have a header-file version and a function-call version. Easy. */ if (strcmp(HEADER_VERSION, event_get_version())) { le_version_t v1, v2; int compat1 = -1, compat2 = -1; int verybad; v1 = tor_decode_libevent_version(HEADER_VERSION); v2 = tor_decode_libevent_version(event_get_version()); compat1 = le_versions_compatibility(v1); compat2 = le_versions_compatibility(v2); verybad = compat1 != compat2; tor_log(verybad ? LOG_WARN : LOG_NOTICE, LD_GENERAL, "We were compiled with headers from version %s " "of Libevent, but we're using a Libevent library that says it's " "version %s.", HEADER_VERSION, event_get_version()); if (verybad) log_warn(LD_GENERAL, "This will almost certainly make Tor crash."); else log_info(LD_GENERAL, "I think these versions are binary-compatible."); } #else /* event_get_version but no _EVENT_VERSION. We might be in 1.4.0-beta or earlier, where that's normal. To see whether we were compiled with an earlier version, let's see whether the struct event defines MIN_HEAP_IDX. */ #ifdef HAVE_STRUCT_EVENT_MIN_HEAP_IDX /* The header files are 1.4.0-beta or later. If the version is not * 1.4.0-beta, we are incompatible. */ { if (strcmp(event_get_version(), "1.4.0-beta")) { log_warn(LD_GENERAL, "It's a little hard to tell, but you seem to have " "Libevent 1.4.0-beta header files, whereas you have linked " "against Libevent %s. This will probably make Tor crash.", event_get_version()); } } #else /* Our headers are 1.3e or earlier. If the library version is not 1.4.x or later, we're probably fine. */ { const char *v = event_get_version(); if ((v[0] == '1' && v[2] == '.' && v[3] > '3') || v[0] > '1') { log_warn(LD_GENERAL, "It's a little hard to tell, but you seem to have " "Libevent header file from 1.3e or earlier, whereas you have " "linked against Libevent %s. This will probably make Tor " "crash.", event_get_version()); } } #endif /* Your libevent is ancient. */ #endif } /* If possible, we're going to try to use Libevent's periodic timer support, since it does a pretty good job of making sure that periodic events get called exactly M seconds apart, rather than starting each one exactly M seconds after the time that the last one was run. */ #ifdef HAVE_EVENT2_EVENT_H #define HAVE_PERIODIC #define PERIODIC_FLAGS EV_PERSIST #else #define PERIODIC_FLAGS 0 #endif /** Represents a timer that's run every N microseconds by Libevent. */ struct periodic_timer_t { /** Underlying event used to implement this periodic event. */ struct event *ev; /** The callback we'll be invoking whenever the event triggers */ void (*cb)(struct periodic_timer_t *, void *); /** User-supplied data for the callback */ void *data; #ifndef HAVE_PERIODIC /** If Libevent doesn't know how to invoke events every N microseconds, * we'll need to remember the timeout interval here. */ struct timeval tv; #endif }; /** Libevent callback to implement a periodic event. */ static void periodic_timer_cb(evutil_socket_t fd, short what, void *arg) { periodic_timer_t *timer = arg; (void) what; (void) fd; #ifndef HAVE_PERIODIC /** reschedule the event as needed. */ event_add(timer->ev, &timer->tv); #endif timer->cb(timer, timer->data); } /** Create and schedule a new timer that will run every tv in * the event loop of base. When the timer fires, it will * run the timer in cb with the user-supplied data in data. */ periodic_timer_t * periodic_timer_new(struct event_base *base, const struct timeval *tv, void (*cb)(periodic_timer_t *timer, void *data), void *data) { periodic_timer_t *timer; tor_assert(base); tor_assert(tv); tor_assert(cb); timer = tor_malloc_zero(sizeof(periodic_timer_t)); if (!(timer->ev = tor_event_new(base, -1, PERIODIC_FLAGS, periodic_timer_cb, timer))) { tor_free(timer); return NULL; } timer->cb = cb; timer->data = data; #ifndef HAVE_PERIODIC memcpy(&timer->tv, tv, sizeof(struct timeval)); #endif event_add(timer->ev, (struct timeval *)tv); /*drop const for old libevent*/ return timer; } /** Stop and free a periodic timer */ void periodic_timer_free(periodic_timer_t *timer) { if (!timer) return; tor_event_free(timer->ev); tor_free(timer); } #ifdef USE_BUFFEREVENTS static const struct timeval *one_tick = NULL; /** * Return a special timeout to be passed whenever libevent's O(1) timeout * implementation should be used. Only use this when the timer is supposed * to fire after msec_per_tick ticks have elapsed. */ const struct timeval * tor_libevent_get_one_tick_timeout(void) { tor_assert(one_tick); return one_tick; } /** Initialize the common timeout that we'll use to refill the buckets every * time a tick elapses. */ static void tor_libevent_set_tick_timeout(int msec_per_tick) { struct event_base *base = tor_libevent_get_base(); struct timeval tv; tor_assert(! one_tick); tv.tv_sec = msec_per_tick / 1000; tv.tv_usec = (msec_per_tick % 1000) * 1000; one_tick = event_base_init_common_timeout(base, &tv); } static struct bufferevent * tor_get_root_bufferevent(struct bufferevent *bev) { struct bufferevent *u; while ((u = bufferevent_get_underlying(bev)) != NULL) bev = u; return bev; } int tor_set_bufferevent_rate_limit(struct bufferevent *bev, struct ev_token_bucket_cfg *cfg) { return bufferevent_set_rate_limit(tor_get_root_bufferevent(bev), cfg); } int tor_add_bufferevent_to_rate_limit_group(struct bufferevent *bev, struct bufferevent_rate_limit_group *g) { return bufferevent_add_to_rate_limit_group(tor_get_root_bufferevent(bev), g); } #endif int tor_init_libevent_rng(void) { int rv = 0; #ifdef HAVE_EVUTIL_SECURE_RNG_INIT char buf[256]; if (evutil_secure_rng_init() < 0) { rv = -1; } /* Older libevent -- manually initialize the RNG */ crypto_rand(buf, 32); evutil_secure_rng_add_bytes(buf, 32); evutil_secure_rng_get_bytes(buf, sizeof(buf)); #endif return rv; } #if defined(LIBEVENT_VERSION_NUMBER) && LIBEVENT_VERSION_NUMBER >= V(2,1,1) \ && !defined(TOR_UNIT_TESTS) void tor_gettimeofday_cached(struct timeval *tv) { event_base_gettimeofday_cached(the_event_base, tv); } void tor_gettimeofday_cache_clear(void) { event_base_update_cache_time(the_event_base); } #else /** Cache the current hi-res time; the cache gets reset when libevent * calls us. */ static struct timeval cached_time_hires = {0, 0}; /** Return a fairly recent view of the current time. */ void tor_gettimeofday_cached(struct timeval *tv) { if (cached_time_hires.tv_sec == 0) { tor_gettimeofday(&cached_time_hires); } *tv = cached_time_hires; } /** Reset the cached view of the current time, so that the next time we try * to learn it, we will get an up-to-date value. */ void tor_gettimeofday_cache_clear(void) { cached_time_hires.tv_sec = 0; } #ifdef TOR_UNIT_TESTS /** For testing: force-update the cached time to a given value. */ void tor_gettimeofday_cache_set(const struct timeval *tv) { tor_assert(tv); memcpy(&cached_time_hires, tv, sizeof(*tv)); } #endif #endif /** * As tor_gettimeofday_cached, but can never move backwards in time. * * The returned value may diverge from wall-clock time, since wall-clock time * can trivially be adjusted backwards, and this can't. Don't mix wall-clock * time with these values in the same calculation. * * Depending on implementation, this function may or may not "smooth out" huge * jumps forward in wall-clock time. It may or may not keep its results * advancing forward (as opposed to stalling) if the wall-clock time goes * backwards. The current implementation does neither of of these. * * This function is not thread-safe; do not call it outside the main thread. * * In future versions of Tor, this may return a time does not have its * origin at the Unix epoch. */ void tor_gettimeofday_cached_monotonic(struct timeval *tv) { struct timeval last_tv = { 0, 0 }; tor_gettimeofday_cached(tv); if (timercmp(tv, &last_tv, OP_LT)) { memcpy(tv, &last_tv, sizeof(struct timeval)); } else { memcpy(&last_tv, tv, sizeof(struct timeval)); } } tor-0.2.7.6/src/common/memarea.c0000644000175000017500000002370412621363245013255 00000000000000/* Copyright (c) 2008-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** \file memarea.c * \brief Implementation for memarea_t, an allocator for allocating lots of * small objects that will be freed all at once. */ #include "orconfig.h" #include #include "memarea.h" #include "util.h" #include "compat.h" #include "torlog.h" /** If true, we try to detect any attempts to write beyond the length of a * memarea. */ #define USE_SENTINELS /** All returned pointers should be aligned to the nearest multiple of this * value. */ #define MEMAREA_ALIGN SIZEOF_VOID_P #if MEMAREA_ALIGN == 4 #define MEMAREA_ALIGN_MASK 3lu #elif MEMAREA_ALIGN == 8 #define MEMAREA_ALIGN_MASK 7lu #else #error "void* is neither 4 nor 8 bytes long. I don't know how to align stuff." #endif #if defined(__GNUC__) && defined(FLEXIBLE_ARRAY_MEMBER) #define USE_ALIGNED_ATTRIBUTE #define U_MEM mem #else #define U_MEM u.mem #endif #ifdef USE_SENTINELS /** Magic value that we stick at the end of a memarea so we can make sure * there are no run-off-the-end bugs. */ #define SENTINEL_VAL 0x90806622u /** How many bytes per area do we devote to the sentinel? */ #define SENTINEL_LEN sizeof(uint32_t) /** Given a mem_area_chunk_t with SENTINEL_LEN extra bytes allocated at the * end, set those bytes. */ #define SET_SENTINEL(chunk) \ STMT_BEGIN \ set_uint32( &(chunk)->U_MEM[chunk->mem_size], SENTINEL_VAL ); \ STMT_END /** Assert that the sentinel on a memarea is set correctly. */ #define CHECK_SENTINEL(chunk) \ STMT_BEGIN \ uint32_t sent_val = get_uint32(&(chunk)->U_MEM[chunk->mem_size]); \ tor_assert(sent_val == SENTINEL_VAL); \ STMT_END #else #define SENTINEL_LEN 0 #define SET_SENTINEL(chunk) STMT_NIL #define CHECK_SENTINEL(chunk) STMT_NIL #endif /** Increment ptr until it is aligned to MEMAREA_ALIGN. */ static INLINE void * realign_pointer(void *ptr) { uintptr_t x = (uintptr_t)ptr; x = (x+MEMAREA_ALIGN_MASK) & ~MEMAREA_ALIGN_MASK; /* Reinstate this if bug 930 ever reappears tor_assert(((void*)x) >= ptr); */ return (void*)x; } /** Implements part of a memarea. New memory is carved off from chunk->mem in * increasing order until a request is too big, at which point a new chunk is * allocated. */ typedef struct memarea_chunk_t { /** Next chunk in this area. Only kept around so we can free it. */ struct memarea_chunk_t *next_chunk; size_t mem_size; /**< How much RAM is available in mem, total? */ char *next_mem; /**< Next position in mem to allocate data at. If it's * greater than or equal to mem+mem_size, this chunk is * full. */ #ifdef USE_ALIGNED_ATTRIBUTE char mem[FLEXIBLE_ARRAY_MEMBER] __attribute__((aligned(MEMAREA_ALIGN))); #else union { char mem[1]; /**< Memory space in this chunk. */ void *void_for_alignment_; /**< Dummy; used to make sure mem is aligned. */ } u; #endif } memarea_chunk_t; /** How many bytes are needed for overhead before we get to the memory part * of a chunk? */ #define CHUNK_HEADER_SIZE STRUCT_OFFSET(memarea_chunk_t, U_MEM) /** What's the smallest that we'll allocate a chunk? */ #define CHUNK_SIZE 4096 /** A memarea_t is an allocation region for a set of small memory requests * that will all be freed at once. */ struct memarea_t { memarea_chunk_t *first; /**< Top of the chunk stack: never NULL. */ }; /** How many chunks will we put into the freelist before freeing them? */ #define MAX_FREELIST_LEN 4 /** The number of memarea chunks currently in our freelist. */ static int freelist_len=0; /** A linked list of unused memory area chunks. Used to prevent us from * spinning in malloc/free loops. */ static memarea_chunk_t *freelist = NULL; /** Helper: allocate a new memarea chunk of around chunk_size bytes. */ static memarea_chunk_t * alloc_chunk(size_t sz, int freelist_ok) { tor_assert(sz < SIZE_T_CEILING); if (freelist && freelist_ok) { memarea_chunk_t *res = freelist; freelist = res->next_chunk; res->next_chunk = NULL; --freelist_len; CHECK_SENTINEL(res); return res; } else { size_t chunk_size = freelist_ok ? CHUNK_SIZE : sz; memarea_chunk_t *res; chunk_size += SENTINEL_LEN; res = tor_malloc(chunk_size); res->next_chunk = NULL; res->mem_size = chunk_size - CHUNK_HEADER_SIZE - SENTINEL_LEN; res->next_mem = res->U_MEM; tor_assert(res->next_mem+res->mem_size+SENTINEL_LEN == ((char*)res)+chunk_size); tor_assert(realign_pointer(res->next_mem) == res->next_mem); SET_SENTINEL(res); return res; } } /** Release chunk from a memarea, either by adding it to the freelist * or by freeing it if the freelist is already too big. */ static void chunk_free_unchecked(memarea_chunk_t *chunk) { CHECK_SENTINEL(chunk); if (freelist_len < MAX_FREELIST_LEN) { ++freelist_len; chunk->next_chunk = freelist; freelist = chunk; chunk->next_mem = chunk->U_MEM; } else { tor_free(chunk); } } /** Allocate and return new memarea. */ memarea_t * memarea_new(void) { memarea_t *head = tor_malloc(sizeof(memarea_t)); head->first = alloc_chunk(CHUNK_SIZE, 1); return head; } /** Free area, invalidating all pointers returned from memarea_alloc() * and friends for this area */ void memarea_drop_all(memarea_t *area) { memarea_chunk_t *chunk, *next; for (chunk = area->first; chunk; chunk = next) { next = chunk->next_chunk; chunk_free_unchecked(chunk); } area->first = NULL; /*fail fast on */ tor_free(area); } /** Forget about having allocated anything in area, and free some of * the backing storage associated with it, as appropriate. Invalidates all * pointers returned from memarea_alloc() for this area. */ void memarea_clear(memarea_t *area) { memarea_chunk_t *chunk, *next; if (area->first->next_chunk) { for (chunk = area->first->next_chunk; chunk; chunk = next) { next = chunk->next_chunk; chunk_free_unchecked(chunk); } area->first->next_chunk = NULL; } area->first->next_mem = area->first->U_MEM; } /** Remove all unused memarea chunks from the internal freelist. */ void memarea_clear_freelist(void) { memarea_chunk_t *chunk, *next; freelist_len = 0; for (chunk = freelist; chunk; chunk = next) { next = chunk->next_chunk; tor_free(chunk); } freelist = NULL; } /** Return true iff p is in a range that has been returned by an * allocation from area. */ int memarea_owns_ptr(const memarea_t *area, const void *p) { memarea_chunk_t *chunk; const char *ptr = p; for (chunk = area->first; chunk; chunk = chunk->next_chunk) { if (ptr >= chunk->U_MEM && ptr < chunk->next_mem) return 1; } return 0; } /** Return a pointer to a chunk of memory in area of at least sz * bytes. sz should be significantly smaller than the area's chunk * size, though we can deal if it isn't. */ void * memarea_alloc(memarea_t *area, size_t sz) { memarea_chunk_t *chunk = area->first; char *result; tor_assert(chunk); CHECK_SENTINEL(chunk); tor_assert(sz < SIZE_T_CEILING); if (sz == 0) sz = 1; if (chunk->next_mem+sz > chunk->U_MEM+chunk->mem_size) { if (sz+CHUNK_HEADER_SIZE >= CHUNK_SIZE) { /* This allocation is too big. Stick it in a special chunk, and put * that chunk second in the list. */ memarea_chunk_t *new_chunk = alloc_chunk(sz+CHUNK_HEADER_SIZE, 0); new_chunk->next_chunk = chunk->next_chunk; chunk->next_chunk = new_chunk; chunk = new_chunk; } else { memarea_chunk_t *new_chunk = alloc_chunk(CHUNK_SIZE, 1); new_chunk->next_chunk = chunk; area->first = chunk = new_chunk; } tor_assert(chunk->mem_size >= sz); } result = chunk->next_mem; chunk->next_mem = chunk->next_mem + sz; /* Reinstate these if bug 930 ever comes back tor_assert(chunk->next_mem >= chunk->U_MEM); tor_assert(chunk->next_mem <= chunk->U_MEM+chunk->mem_size); */ chunk->next_mem = realign_pointer(chunk->next_mem); return result; } /** As memarea_alloc(), but clears the memory it returns. */ void * memarea_alloc_zero(memarea_t *area, size_t sz) { void *result = memarea_alloc(area, sz); memset(result, 0, sz); return result; } /** As memdup, but returns the memory from area. */ void * memarea_memdup(memarea_t *area, const void *s, size_t n) { char *result = memarea_alloc(area, n); memcpy(result, s, n); return result; } /** As strdup, but returns the memory from area. */ char * memarea_strdup(memarea_t *area, const char *s) { return memarea_memdup(area, s, strlen(s)+1); } /** As strndup, but returns the memory from area. */ char * memarea_strndup(memarea_t *area, const char *s, size_t n) { size_t ln = 0; char *result; tor_assert(n < SIZE_T_CEILING); for (ln = 0; ln < n && s[ln]; ++ln) ; result = memarea_alloc(area, ln+1); memcpy(result, s, ln); result[ln]='\0'; return result; } /** Set allocated_out to the number of bytes allocated in area, * and used_out to the number of bytes currently used. */ void memarea_get_stats(memarea_t *area, size_t *allocated_out, size_t *used_out) { size_t a = 0, u = 0; memarea_chunk_t *chunk; for (chunk = area->first; chunk; chunk = chunk->next_chunk) { CHECK_SENTINEL(chunk); a += CHUNK_HEADER_SIZE + chunk->mem_size; tor_assert(chunk->next_mem >= chunk->U_MEM); u += CHUNK_HEADER_SIZE + (chunk->next_mem - chunk->U_MEM); } *allocated_out = a; *used_out = u; } /** Assert that area is okay. */ void memarea_assert_ok(memarea_t *area) { memarea_chunk_t *chunk; tor_assert(area->first); for (chunk = area->first; chunk; chunk = chunk->next_chunk) { CHECK_SENTINEL(chunk); tor_assert(chunk->next_mem >= chunk->U_MEM); tor_assert(chunk->next_mem <= (char*) realign_pointer(chunk->U_MEM+chunk->mem_size)); } } tor-0.2.7.6/src/common/container.h0000644000175000017500000007634112621363245013642 00000000000000/* Copyright (c) 2003-2004, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef TOR_CONTAINER_H #define TOR_CONTAINER_H #include "util.h" #include "siphash.h" /** A resizeable list of pointers, with associated helpful functionality. * * The members of this struct are exposed only so that macros and inlines can * use them; all access to smartlist internals should go through the functions * and macros defined here. **/ typedef struct smartlist_t { /** @{ */ /** list has enough capacity to store exactly capacity elements * before it needs to be resized. Only the first num_used (\<= * capacity) elements point to valid data. */ void **list; int num_used; int capacity; /** @} */ } smartlist_t; MOCK_DECL(smartlist_t *, smartlist_new, (void)); MOCK_DECL(void, smartlist_free, (smartlist_t *sl)); void smartlist_clear(smartlist_t *sl); void smartlist_add(smartlist_t *sl, void *element); void smartlist_add_all(smartlist_t *sl, const smartlist_t *s2); void smartlist_remove(smartlist_t *sl, const void *element); void *smartlist_pop_last(smartlist_t *sl); void smartlist_reverse(smartlist_t *sl); void smartlist_string_remove(smartlist_t *sl, const char *element); int smartlist_contains(const smartlist_t *sl, const void *element); int smartlist_contains_string(const smartlist_t *sl, const char *element); int smartlist_pos(const smartlist_t *sl, const void *element); int smartlist_string_pos(const smartlist_t *, const char *elt); int smartlist_contains_string_case(const smartlist_t *sl, const char *element); int smartlist_contains_int_as_string(const smartlist_t *sl, int num); int smartlist_strings_eq(const smartlist_t *sl1, const smartlist_t *sl2); int smartlist_contains_digest(const smartlist_t *sl, const char *element); int smartlist_ints_eq(const smartlist_t *sl1, const smartlist_t *sl2); int smartlist_overlap(const smartlist_t *sl1, const smartlist_t *sl2); void smartlist_intersect(smartlist_t *sl1, const smartlist_t *sl2); void smartlist_subtract(smartlist_t *sl1, const smartlist_t *sl2); /* smartlist_choose() is defined in crypto.[ch] */ #ifdef DEBUG_SMARTLIST /** Return the number of items in sl. */ static INLINE int smartlist_len(const smartlist_t *sl); static INLINE int smartlist_len(const smartlist_t *sl) { tor_assert(sl); return (sl)->num_used; } /** Return the idxth element of sl. */ static INLINE void *smartlist_get(const smartlist_t *sl, int idx); static INLINE void *smartlist_get(const smartlist_t *sl, int idx) { tor_assert(sl); tor_assert(idx>=0); tor_assert(sl->num_used > idx); return sl->list[idx]; } static INLINE void smartlist_set(smartlist_t *sl, int idx, void *val) { tor_assert(sl); tor_assert(idx>=0); tor_assert(sl->num_used > idx); sl->list[idx] = val; } #else #define smartlist_len(sl) ((sl)->num_used) #define smartlist_get(sl, idx) ((sl)->list[idx]) #define smartlist_set(sl, idx, val) ((sl)->list[idx] = (val)) #endif /** Exchange the elements at indices idx1 and idx2 of the * smartlist sl. */ static INLINE void smartlist_swap(smartlist_t *sl, int idx1, int idx2) { if (idx1 != idx2) { void *elt = smartlist_get(sl, idx1); smartlist_set(sl, idx1, smartlist_get(sl, idx2)); smartlist_set(sl, idx2, elt); } } void smartlist_del(smartlist_t *sl, int idx); void smartlist_del_keeporder(smartlist_t *sl, int idx); void smartlist_insert(smartlist_t *sl, int idx, void *val); void smartlist_sort(smartlist_t *sl, int (*compare)(const void **a, const void **b)); void *smartlist_get_most_frequent_(const smartlist_t *sl, int (*compare)(const void **a, const void **b), int *count_out); #define smartlist_get_most_frequent(sl, compare) \ smartlist_get_most_frequent_((sl), (compare), NULL) void smartlist_uniq(smartlist_t *sl, int (*compare)(const void **a, const void **b), void (*free_fn)(void *elt)); void smartlist_sort_strings(smartlist_t *sl); void smartlist_sort_digests(smartlist_t *sl); void smartlist_sort_digests256(smartlist_t *sl); void smartlist_sort_pointers(smartlist_t *sl); const char *smartlist_get_most_frequent_string(smartlist_t *sl); const char *smartlist_get_most_frequent_string_(smartlist_t *sl, int *count_out); const uint8_t *smartlist_get_most_frequent_digest256(smartlist_t *sl); void smartlist_uniq_strings(smartlist_t *sl); void smartlist_uniq_digests(smartlist_t *sl); void smartlist_uniq_digests256(smartlist_t *sl); void *smartlist_bsearch(smartlist_t *sl, const void *key, int (*compare)(const void *key, const void **member)); int smartlist_bsearch_idx(const smartlist_t *sl, const void *key, int (*compare)(const void *key, const void **member), int *found_out); void smartlist_pqueue_add(smartlist_t *sl, int (*compare)(const void *a, const void *b), int idx_field_offset, void *item); void *smartlist_pqueue_pop(smartlist_t *sl, int (*compare)(const void *a, const void *b), int idx_field_offset); void smartlist_pqueue_remove(smartlist_t *sl, int (*compare)(const void *a, const void *b), int idx_field_offset, void *item); void smartlist_pqueue_assert_ok(smartlist_t *sl, int (*compare)(const void *a, const void *b), int idx_field_offset); #define SPLIT_SKIP_SPACE 0x01 #define SPLIT_IGNORE_BLANK 0x02 #define SPLIT_STRIP_SPACE 0x04 int smartlist_split_string(smartlist_t *sl, const char *str, const char *sep, int flags, int max); char *smartlist_join_strings(smartlist_t *sl, const char *join, int terminate, size_t *len_out) ATTR_MALLOC; char *smartlist_join_strings2(smartlist_t *sl, const char *join, size_t join_len, int terminate, size_t *len_out) ATTR_MALLOC; /** Iterate over the items in a smartlist sl, in order. For each item, * assign it to a new local variable of type type named var, and * execute the statements inside the loop body. Inside the loop, the loop * index can be accessed as var_sl_idx and the length of the list can * be accessed as var_sl_len. * * NOTE: Do not change the length of the list while the loop is in progress, * unless you adjust the _sl_len variable correspondingly. See second example * below. * * Example use: *
 *   smartlist_t *list = smartlist_split("A:B:C", ":", 0, 0);
 *   SMARTLIST_FOREACH_BEGIN(list, char *, cp) {
 *     printf("%d: %s\n", cp_sl_idx, cp);
 *     tor_free(cp);
 *   } SMARTLIST_FOREACH_END(cp);
 *   smartlist_free(list);
 * 
* * Example use (advanced): *
 *   SMARTLIST_FOREACH_BEGIN(list, char *, cp) {
 *     if (!strcmp(cp, "junk")) {
 *       tor_free(cp);
 *       SMARTLIST_DEL_CURRENT(list, cp);
 *     }
 *   } SMARTLIST_FOREACH_END(cp);
 * 
*/ /* Note: these macros use token pasting, and reach into smartlist internals. * This can make them a little daunting. Here's the approximate unpacking of * the above examples, for entertainment value: * *
 * smartlist_t *list = smartlist_split("A:B:C", ":", 0, 0);
 * {
 *   int cp_sl_idx, cp_sl_len = smartlist_len(list);
 *   char *cp;
 *   for (cp_sl_idx = 0; cp_sl_idx < cp_sl_len; ++cp_sl_idx) {
 *     cp = smartlist_get(list, cp_sl_idx);
 *     printf("%d: %s\n", cp_sl_idx, cp);
 *     tor_free(cp);
 *   }
 * }
 * smartlist_free(list);
 * 
* *
 * {
 *   int cp_sl_idx, cp_sl_len = smartlist_len(list);
 *   char *cp;
 *   for (cp_sl_idx = 0; cp_sl_idx < cp_sl_len; ++cp_sl_idx) {
 *     cp = smartlist_get(list, cp_sl_idx);
 *     if (!strcmp(cp, "junk")) {
 *       tor_free(cp);
 *       smartlist_del(list, cp_sl_idx);
 *       --cp_sl_idx;
 *       --cp_sl_len;
 *     }
 *   }
 * }
 * 
*/ #define SMARTLIST_FOREACH_BEGIN(sl, type, var) \ STMT_BEGIN \ int var ## _sl_idx, var ## _sl_len=(sl)->num_used; \ type var; \ for (var ## _sl_idx = 0; var ## _sl_idx < var ## _sl_len; \ ++var ## _sl_idx) { \ var = (sl)->list[var ## _sl_idx]; #define SMARTLIST_FOREACH_END(var) \ var = NULL; \ } STMT_END /** * An alias for SMARTLIST_FOREACH_BEGIN and SMARTLIST_FOREACH_END, using * cmd as the loop body. This wrapper is here for convenience with * very short loops. * * By convention, we do not use this for loops which nest, or for loops over * 10 lines or so. Use SMARTLIST_FOREACH_{BEGIN,END} for those. */ #define SMARTLIST_FOREACH(sl, type, var, cmd) \ SMARTLIST_FOREACH_BEGIN(sl,type,var) { \ cmd; \ } SMARTLIST_FOREACH_END(var) /** Helper: While in a SMARTLIST_FOREACH loop over the list sl indexed * with the variable var, remove the current element in a way that * won't confuse the loop. */ #define SMARTLIST_DEL_CURRENT(sl, var) \ STMT_BEGIN \ smartlist_del(sl, var ## _sl_idx); \ --var ## _sl_idx; \ --var ## _sl_len; \ STMT_END /** Helper: While in a SMARTLIST_FOREACH loop over the list sl indexed * with the variable var, remove the current element in a way that * won't confuse the loop. */ #define SMARTLIST_DEL_CURRENT_KEEPORDER(sl, var) \ STMT_BEGIN \ smartlist_del_keeporder(sl, var ## _sl_idx); \ --var ## _sl_idx; \ --var ## _sl_len; \ STMT_END /** Helper: While in a SMARTLIST_FOREACH loop over the list sl indexed * with the variable var, replace the current element with val. * Does not deallocate the current value of var. */ #define SMARTLIST_REPLACE_CURRENT(sl, var, val) \ STMT_BEGIN \ smartlist_set(sl, var ## _sl_idx, val); \ STMT_END /* Helper: Given two lists of items, possibly of different types, such that * both lists are sorted on some common field (as determined by a comparison * expression cmpexpr), and such that one list (sl1) has no * duplicates on the common field, loop through the lists in lockstep, and * execute unmatched_var2 on items in var2 that do not appear in * var1. * * WARNING: It isn't safe to add remove elements from either list while the * loop is in progress. * * Example use: * SMARTLIST_FOREACH_JOIN(routerstatus_list, routerstatus_t *, rs, * routerinfo_list, routerinfo_t *, ri, * tor_memcmp(rs->identity_digest, ri->identity_digest, 20), * log_info(LD_GENERAL,"No match for %s", ri->nickname)) { * log_info(LD_GENERAL, "%s matches routerstatus %p", ri->nickname, rs); * } SMARTLIST_FOREACH_JOIN_END(rs, ri); **/ /* The example above unpacks (approximately) to: * int rs_sl_idx = 0, rs_sl_len = smartlist_len(routerstatus_list); * int ri_sl_idx, ri_sl_len = smartlist_len(routerinfo_list); * int rs_ri_cmp; * routerstatus_t *rs; * routerinfo_t *ri; * for (; ri_sl_idx < ri_sl_len; ++ri_sl_idx) { * ri = smartlist_get(routerinfo_list, ri_sl_idx); * while (rs_sl_idx < rs_sl_len) { * rs = smartlist_get(routerstatus_list, rs_sl_idx); * rs_ri_cmp = tor_memcmp(rs->identity_digest, ri->identity_digest, 20); * if (rs_ri_cmp > 0) { * break; * } else if (rs_ri_cmp == 0) { * goto matched_ri; * } else { * ++rs_sl_idx; * } * } * log_info(LD_GENERAL,"No match for %s", ri->nickname); * continue; * matched_ri: { * log_info(LD_GENERAL,"%s matches with routerstatus %p",ri->nickname,rs); * } * } */ #define SMARTLIST_FOREACH_JOIN(sl1, type1, var1, sl2, type2, var2, \ cmpexpr, unmatched_var2) \ STMT_BEGIN \ int var1 ## _sl_idx = 0, var1 ## _sl_len=(sl1)->num_used; \ int var2 ## _sl_idx = 0, var2 ## _sl_len=(sl2)->num_used; \ int var1 ## _ ## var2 ## _cmp; \ type1 var1; \ type2 var2; \ for (; var2##_sl_idx < var2##_sl_len; ++var2##_sl_idx) { \ var2 = (sl2)->list[var2##_sl_idx]; \ while (var1##_sl_idx < var1##_sl_len) { \ var1 = (sl1)->list[var1##_sl_idx]; \ var1##_##var2##_cmp = (cmpexpr); \ if (var1##_##var2##_cmp > 0) { \ break; \ } else if (var1##_##var2##_cmp == 0) { \ goto matched_##var2; \ } else { \ ++var1##_sl_idx; \ } \ } \ /* Ran out of v1, or no match for var2. */ \ unmatched_var2; \ continue; \ matched_##var2: ; \ #define SMARTLIST_FOREACH_JOIN_END(var1, var2) \ } \ STMT_END #define DECLARE_MAP_FNS(maptype, keytype, prefix) \ typedef struct maptype maptype; \ typedef struct prefix##entry_t *prefix##iter_t; \ MOCK_DECL(maptype*, prefix##new, (void)); \ void* prefix##set(maptype *map, keytype key, void *val); \ void* prefix##get(const maptype *map, keytype key); \ void* prefix##remove(maptype *map, keytype key); \ MOCK_DECL(void, prefix##free, (maptype *map, void (*free_val)(void*))); \ int prefix##isempty(const maptype *map); \ int prefix##size(const maptype *map); \ prefix##iter_t *prefix##iter_init(maptype *map); \ prefix##iter_t *prefix##iter_next(maptype *map, prefix##iter_t *iter); \ prefix##iter_t *prefix##iter_next_rmv(maptype *map, prefix##iter_t *iter); \ void prefix##iter_get(prefix##iter_t *iter, keytype *keyp, void **valp); \ int prefix##iter_done(prefix##iter_t *iter); \ void prefix##assert_ok(const maptype *map) /* Map from const char * to void *. Implemented with a hash table. */ DECLARE_MAP_FNS(strmap_t, const char *, strmap_); /* Map from const char[DIGEST_LEN] to void *. Implemented with a hash table. */ DECLARE_MAP_FNS(digestmap_t, const char *, digestmap_); /* Map from const uint8_t[DIGEST256_LEN] to void *. Implemented with a hash * table. */ DECLARE_MAP_FNS(digest256map_t, const uint8_t *, digest256map_); #undef DECLARE_MAP_FNS /** Iterates over the key-value pairs in a map map in order. * prefix is as for DECLARE_MAP_FNS (i.e., strmap_ or digestmap_). * The map's keys and values are of type keytype and valtype respectively; * each iteration assigns them to keyvar and valvar. * * Example use: * MAP_FOREACH(digestmap_, m, const char *, k, routerinfo_t *, r) { * // use k and r * } MAP_FOREACH_END. */ /* Unpacks to, approximately: * { * digestmap_iter_t *k_iter; * for (k_iter = digestmap_iter_init(m); !digestmap_iter_done(k_iter); * k_iter = digestmap_iter_next(m, k_iter)) { * const char *k; * void *r_voidp; * routerinfo_t *r; * digestmap_iter_get(k_iter, &k, &r_voidp); * r = r_voidp; * // use k and r * } * } */ #define MAP_FOREACH(prefix, map, keytype, keyvar, valtype, valvar) \ STMT_BEGIN \ prefix##iter_t *keyvar##_iter; \ for (keyvar##_iter = prefix##iter_init(map); \ !prefix##iter_done(keyvar##_iter); \ keyvar##_iter = prefix##iter_next(map, keyvar##_iter)) { \ keytype keyvar; \ void *valvar##_voidp; \ valtype valvar; \ prefix##iter_get(keyvar##_iter, &keyvar, &valvar##_voidp); \ valvar = valvar##_voidp; /** As MAP_FOREACH, except allows members to be removed from the map * during the iteration via MAP_DEL_CURRENT. Example use: * * Example use: * MAP_FOREACH(digestmap_, m, const char *, k, routerinfo_t *, r) { * if (is_very_old(r)) * MAP_DEL_CURRENT(k); * } MAP_FOREACH_END. **/ /* Unpacks to, approximately: * { * digestmap_iter_t *k_iter; * int k_del=0; * for (k_iter = digestmap_iter_init(m); !digestmap_iter_done(k_iter); * k_iter = k_del ? digestmap_iter_next(m, k_iter) * : digestmap_iter_next_rmv(m, k_iter)) { * const char *k; * void *r_voidp; * routerinfo_t *r; * k_del=0; * digestmap_iter_get(k_iter, &k, &r_voidp); * r = r_voidp; * if (is_very_old(r)) { * k_del = 1; * } * } * } */ #define MAP_FOREACH_MODIFY(prefix, map, keytype, keyvar, valtype, valvar) \ STMT_BEGIN \ prefix##iter_t *keyvar##_iter; \ int keyvar##_del=0; \ for (keyvar##_iter = prefix##iter_init(map); \ !prefix##iter_done(keyvar##_iter); \ keyvar##_iter = keyvar##_del ? \ prefix##iter_next_rmv(map, keyvar##_iter) : \ prefix##iter_next(map, keyvar##_iter)) { \ keytype keyvar; \ void *valvar##_voidp; \ valtype valvar; \ keyvar##_del=0; \ prefix##iter_get(keyvar##_iter, &keyvar, &valvar##_voidp); \ valvar = valvar##_voidp; /** Used with MAP_FOREACH_MODIFY to remove the currently-iterated-upon * member of the map. */ #define MAP_DEL_CURRENT(keyvar) \ STMT_BEGIN \ keyvar##_del = 1; \ STMT_END /** Used to end a MAP_FOREACH() block. */ #define MAP_FOREACH_END } STMT_END ; /** As MAP_FOREACH, but does not require declaration of prefix or keytype. * Example use: * DIGESTMAP_FOREACH(m, k, routerinfo_t *, r) { * // use k and r * } DIGESTMAP_FOREACH_END. */ #define DIGESTMAP_FOREACH(map, keyvar, valtype, valvar) \ MAP_FOREACH(digestmap_, map, const char *, keyvar, valtype, valvar) /** As MAP_FOREACH_MODIFY, but does not require declaration of prefix or * keytype. * Example use: * DIGESTMAP_FOREACH_MODIFY(m, k, routerinfo_t *, r) { * if (is_very_old(r)) * MAP_DEL_CURRENT(k); * } DIGESTMAP_FOREACH_END. */ #define DIGESTMAP_FOREACH_MODIFY(map, keyvar, valtype, valvar) \ MAP_FOREACH_MODIFY(digestmap_, map, const char *, keyvar, valtype, valvar) /** Used to end a DIGESTMAP_FOREACH() block. */ #define DIGESTMAP_FOREACH_END MAP_FOREACH_END #define DIGEST256MAP_FOREACH(map, keyvar, valtype, valvar) \ MAP_FOREACH(digest256map_, map, const uint8_t *, keyvar, valtype, valvar) #define DIGEST256MAP_FOREACH_MODIFY(map, keyvar, valtype, valvar) \ MAP_FOREACH_MODIFY(digest256map_, map, const uint8_t *, \ keyvar, valtype, valvar) #define DIGEST256MAP_FOREACH_END MAP_FOREACH_END #define STRMAP_FOREACH(map, keyvar, valtype, valvar) \ MAP_FOREACH(strmap_, map, const char *, keyvar, valtype, valvar) #define STRMAP_FOREACH_MODIFY(map, keyvar, valtype, valvar) \ MAP_FOREACH_MODIFY(strmap_, map, const char *, keyvar, valtype, valvar) #define STRMAP_FOREACH_END MAP_FOREACH_END void* strmap_set_lc(strmap_t *map, const char *key, void *val); void* strmap_get_lc(const strmap_t *map, const char *key); void* strmap_remove_lc(strmap_t *map, const char *key); #define DECLARE_TYPED_DIGESTMAP_FNS(prefix, maptype, valtype) \ typedef struct maptype maptype; \ typedef struct prefix##iter_t *prefix##iter_t; \ ATTR_UNUSED static INLINE maptype* \ prefix##new(void) \ { \ return (maptype*)digestmap_new(); \ } \ ATTR_UNUSED static INLINE digestmap_t* \ prefix##to_digestmap(maptype *map) \ { \ return (digestmap_t*)map; \ } \ ATTR_UNUSED static INLINE valtype* \ prefix##get(maptype *map, const char *key) \ { \ return (valtype*)digestmap_get((digestmap_t*)map, key); \ } \ ATTR_UNUSED static INLINE valtype* \ prefix##set(maptype *map, const char *key, valtype *val) \ { \ return (valtype*)digestmap_set((digestmap_t*)map, key, val); \ } \ ATTR_UNUSED static INLINE valtype* \ prefix##remove(maptype *map, const char *key) \ { \ return (valtype*)digestmap_remove((digestmap_t*)map, key); \ } \ ATTR_UNUSED static INLINE void \ prefix##free(maptype *map, void (*free_val)(void*)) \ { \ digestmap_free((digestmap_t*)map, free_val); \ } \ ATTR_UNUSED static INLINE int \ prefix##isempty(maptype *map) \ { \ return digestmap_isempty((digestmap_t*)map); \ } \ ATTR_UNUSED static INLINE int \ prefix##size(maptype *map) \ { \ return digestmap_size((digestmap_t*)map); \ } \ ATTR_UNUSED static INLINE \ prefix##iter_t *prefix##iter_init(maptype *map) \ { \ return (prefix##iter_t*) digestmap_iter_init((digestmap_t*)map); \ } \ ATTR_UNUSED static INLINE \ prefix##iter_t *prefix##iter_next(maptype *map, prefix##iter_t *iter) \ { \ return (prefix##iter_t*) digestmap_iter_next( \ (digestmap_t*)map, (digestmap_iter_t*)iter); \ } \ ATTR_UNUSED static INLINE prefix##iter_t* \ prefix##iter_next_rmv(maptype *map, prefix##iter_t *iter) \ { \ return (prefix##iter_t*) digestmap_iter_next_rmv( \ (digestmap_t*)map, (digestmap_iter_t*)iter); \ } \ ATTR_UNUSED static INLINE void \ prefix##iter_get(prefix##iter_t *iter, \ const char **keyp, \ valtype **valp) \ { \ void *v; \ digestmap_iter_get((digestmap_iter_t*) iter, keyp, &v); \ *valp = v; \ } \ ATTR_UNUSED static INLINE int \ prefix##iter_done(prefix##iter_t *iter) \ { \ return digestmap_iter_done((digestmap_iter_t*)iter); \ } #if SIZEOF_INT == 4 #define BITARRAY_SHIFT 5 #elif SIZEOF_INT == 8 #define BITARRAY_SHIFT 6 #else #error "int is neither 4 nor 8 bytes. I can't deal with that." #endif #define BITARRAY_MASK ((1u<n_bits bits. */ static INLINE bitarray_t * bitarray_init_zero(unsigned int n_bits) { /* round up to the next int. */ size_t sz = (n_bits+BITARRAY_MASK) >> BITARRAY_SHIFT; return tor_calloc(sz, sizeof(unsigned int)); } /** Expand ba from holding n_bits_old to n_bits_new, * clearing all new bits. Returns a possibly changed pointer to the * bitarray. */ static INLINE bitarray_t * bitarray_expand(bitarray_t *ba, unsigned int n_bits_old, unsigned int n_bits_new) { size_t sz_old = (n_bits_old+BITARRAY_MASK) >> BITARRAY_SHIFT; size_t sz_new = (n_bits_new+BITARRAY_MASK) >> BITARRAY_SHIFT; char *ptr; if (sz_new <= sz_old) return ba; ptr = tor_reallocarray(ba, sz_new, sizeof(unsigned int)); /* This memset does nothing to the older excess bytes. But they were * already set to 0 by bitarry_init_zero. */ memset(ptr+sz_old*sizeof(unsigned int), 0, (sz_new-sz_old)*sizeof(unsigned int)); return (bitarray_t*) ptr; } /** Free the bit array ba. */ static INLINE void bitarray_free(bitarray_t *ba) { tor_free(ba); } /** Set the bitth bit in b to 1. */ static INLINE void bitarray_set(bitarray_t *b, int bit) { b[bit >> BITARRAY_SHIFT] |= (1u << (bit & BITARRAY_MASK)); } /** Set the bitth bit in b to 0. */ static INLINE void bitarray_clear(bitarray_t *b, int bit) { b[bit >> BITARRAY_SHIFT] &= ~ (1u << (bit & BITARRAY_MASK)); } /** Return true iff bitth bit in b is nonzero. NOTE: does * not necessarily return 1 on true. */ static INLINE unsigned int bitarray_is_set(bitarray_t *b, int bit) { return b[bit >> BITARRAY_SHIFT] & (1u << (bit & BITARRAY_MASK)); } /** A set of digests, implemented as a Bloom filter. */ typedef struct { int mask; /**< One less than the number of bits in ba; always one less * than a power of two. */ bitarray_t *ba; /**< A bit array to implement the Bloom filter. */ } digestset_t; #define BIT(n) ((n) & set->mask) /** Add the digest digest to set. */ static INLINE void digestset_add(digestset_t *set, const char *digest) { const uint64_t x = siphash24g(digest, 20); const uint32_t d1 = (uint32_t) x; const uint32_t d2 = (uint32_t)( (x>>16) + x); const uint32_t d3 = (uint32_t)( (x>>32) + x); const uint32_t d4 = (uint32_t)( (x>>48) + x); bitarray_set(set->ba, BIT(d1)); bitarray_set(set->ba, BIT(d2)); bitarray_set(set->ba, BIT(d3)); bitarray_set(set->ba, BIT(d4)); } /** If digest is in set, return nonzero. Otherwise, * probably return zero. */ static INLINE int digestset_contains(const digestset_t *set, const char *digest) { const uint64_t x = siphash24g(digest, 20); const uint32_t d1 = (uint32_t) x; const uint32_t d2 = (uint32_t)( (x>>16) + x); const uint32_t d3 = (uint32_t)( (x>>32) + x); const uint32_t d4 = (uint32_t)( (x>>48) + x); return bitarray_is_set(set->ba, BIT(d1)) && bitarray_is_set(set->ba, BIT(d2)) && bitarray_is_set(set->ba, BIT(d3)) && bitarray_is_set(set->ba, BIT(d4)); } #undef BIT digestset_t *digestset_new(int max_elements); void digestset_free(digestset_t* set); /* These functions, given an array of n_elements, return the * nth lowest element. nth=0 gives the lowest element; * n_elements-1 gives the highest; and (n_elements-1) / 2 gives * the median. As a side effect, the elements of array are sorted. */ int find_nth_int(int *array, int n_elements, int nth); time_t find_nth_time(time_t *array, int n_elements, int nth); double find_nth_double(double *array, int n_elements, int nth); int32_t find_nth_int32(int32_t *array, int n_elements, int nth); uint32_t find_nth_uint32(uint32_t *array, int n_elements, int nth); long find_nth_long(long *array, int n_elements, int nth); static INLINE int median_int(int *array, int n_elements) { return find_nth_int(array, n_elements, (n_elements-1)/2); } static INLINE time_t median_time(time_t *array, int n_elements) { return find_nth_time(array, n_elements, (n_elements-1)/2); } static INLINE double median_double(double *array, int n_elements) { return find_nth_double(array, n_elements, (n_elements-1)/2); } static INLINE uint32_t median_uint32(uint32_t *array, int n_elements) { return find_nth_uint32(array, n_elements, (n_elements-1)/2); } static INLINE int32_t median_int32(int32_t *array, int n_elements) { return find_nth_int32(array, n_elements, (n_elements-1)/2); } static INLINE uint32_t third_quartile_uint32(uint32_t *array, int n_elements) { return find_nth_uint32(array, n_elements, (n_elements*3)/4); } #endif tor-0.2.7.6/src/common/util_format.h0000644000175000017500000000246512621363245014201 00000000000000/* Copyright (c) 2001, Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef TOR_UTIL_FORMAT_H #define TOR_UTIL_FORMAT_H #include "testsupport.h" #include "torint.h" #define BASE64_ENCODE_MULTILINE 1 size_t base64_encode_size(size_t srclen, int flags); int base64_encode(char *dest, size_t destlen, const char *src, size_t srclen, int flags); int base64_decode(char *dest, size_t destlen, const char *src, size_t srclen); int base64_encode_nopad(char *dest, size_t destlen, const uint8_t *src, size_t srclen); int base64_decode_nopad(uint8_t *dest, size_t destlen, const char *src, size_t srclen); /** Characters that can appear (case-insensitively) in a base32 encoding. */ #define BASE32_CHARS "abcdefghijklmnopqrstuvwxyz234567" void base32_encode(char *dest, size_t destlen, const char *src, size_t srclen); int base32_decode(char *dest, size_t destlen, const char *src, size_t srclen); int hex_decode_digit(char c); void base16_encode(char *dest, size_t destlen, const char *src, size_t srclen); int base16_decode(char *dest, size_t destlen, const char *src, size_t srclen); #endif tor-0.2.7.6/src/common/aes.h0000644000175000017500000000143412621363245012417 00000000000000/* Copyright (c) 2003, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /* Implements a minimal interface to counter-mode AES. */ #ifndef TOR_AES_H #define TOR_AES_H /** * \file aes.h * \brief Headers for aes.c */ struct aes_cnt_cipher; typedef struct aes_cnt_cipher aes_cnt_cipher_t; aes_cnt_cipher_t* aes_new_cipher(const char *key, const char *iv); void aes_cipher_free(aes_cnt_cipher_t *cipher); void aes_crypt(aes_cnt_cipher_t *cipher, const char *input, size_t len, char *output); void aes_crypt_inplace(aes_cnt_cipher_t *cipher, char *data, size_t len); int evaluate_evp_for_aes(int force_value); int evaluate_ctr_for_aes(void); #endif tor-0.2.7.6/src/common/address.h0000644000175000017500000003051612621364222013273 00000000000000/* Copyright (c) 2003-2004, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file address.h * \brief Headers for address.h **/ #ifndef TOR_ADDRESS_H #define TOR_ADDRESS_H //#include #include "orconfig.h" #include "torint.h" #include "compat.h" #include "container.h" #ifdef ADDRESS_PRIVATE #if defined(HAVE_SYS_IOCTL_H) #include #endif #ifdef HAVE_GETIFADDRS #define HAVE_IFADDRS_TO_SMARTLIST #endif #ifdef _WIN32 #define HAVE_IP_ADAPTER_TO_SMARTLIST #endif #if defined(SIOCGIFCONF) && defined(HAVE_IOCTL) #define HAVE_IFCONF_TO_SMARTLIST #endif #if defined(HAVE_NET_IF_H) #include // for struct ifconf #endif #if defined(HAVE_IFADDRS_TO_SMARTLIST) #include #endif // TODO win32 specific includes #endif // ADDRESS_PRIVATE /** The number of bits from an address to consider while doing a masked * comparison. */ typedef uint8_t maskbits_t; struct in_addr; /** Holds an IPv4 or IPv6 address. (Uses less memory than struct * sockaddr_storage.) */ typedef struct tor_addr_t { sa_family_t family; union { uint32_t dummy_; /* This field is here so we have something to initialize * with a reliable cross-platform type. */ struct in_addr in_addr; struct in6_addr in6_addr; } addr; } tor_addr_t; /** Holds an IP address and a TCP/UDP port. */ typedef struct tor_addr_port_t { tor_addr_t addr; uint16_t port; } tor_addr_port_t; #define TOR_ADDR_NULL {AF_UNSPEC, {0}} static INLINE const struct in6_addr *tor_addr_to_in6(const tor_addr_t *a); static INLINE uint32_t tor_addr_to_ipv4n(const tor_addr_t *a); static INLINE uint32_t tor_addr_to_ipv4h(const tor_addr_t *a); static INLINE uint32_t tor_addr_to_mapped_ipv4h(const tor_addr_t *a); static INLINE sa_family_t tor_addr_family(const tor_addr_t *a); static INLINE const struct in_addr *tor_addr_to_in(const tor_addr_t *a); static INLINE int tor_addr_eq_ipv4h(const tor_addr_t *a, uint32_t u); socklen_t tor_addr_to_sockaddr(const tor_addr_t *a, uint16_t port, struct sockaddr *sa_out, socklen_t len); int tor_addr_from_sockaddr(tor_addr_t *a, const struct sockaddr *sa, uint16_t *port_out); void tor_addr_make_unspec(tor_addr_t *a); void tor_addr_make_null(tor_addr_t *a, sa_family_t family); char *tor_sockaddr_to_str(const struct sockaddr *sa); /** Return an in6_addr* equivalent to a, or NULL if a is not * an IPv6 address. */ static INLINE const struct in6_addr * tor_addr_to_in6(const tor_addr_t *a) { return a->family == AF_INET6 ? &a->addr.in6_addr : NULL; } /** Given an IPv6 address x, yield it as an array of uint8_t. * * Requires that x is actually an IPv6 address. */ #define tor_addr_to_in6_addr8(x) tor_addr_to_in6(x)->s6_addr /** Given an IPv6 address x, yield it as an array of uint16_t. * * Requires that x is actually an IPv6 address. */ #define tor_addr_to_in6_addr16(x) S6_ADDR16(*tor_addr_to_in6(x)) /** Given an IPv6 address x, yield it as an array of uint32_t. * * Requires that x is actually an IPv6 address. */ #define tor_addr_to_in6_addr32(x) S6_ADDR32(*tor_addr_to_in6(x)) /** Return an IPv4 address in network order for a, or 0 if * a is not an IPv4 address. */ static INLINE uint32_t tor_addr_to_ipv4n(const tor_addr_t *a) { return a->family == AF_INET ? a->addr.in_addr.s_addr : 0; } /** Return an IPv4 address in host order for a, or 0 if * a is not an IPv4 address. */ static INLINE uint32_t tor_addr_to_ipv4h(const tor_addr_t *a) { return ntohl(tor_addr_to_ipv4n(a)); } /** Given an IPv6 address, return its mapped IPv4 address in host order, or * 0 if a is not an IPv6 address. * * (Does not check whether the address is really a mapped address */ static INLINE uint32_t tor_addr_to_mapped_ipv4h(const tor_addr_t *a) { if (a->family == AF_INET6) { uint32_t *addr32 = NULL; // Work around an incorrect NULL pointer dereference warning in // "clang --analyze" due to limited analysis depth addr32 = tor_addr_to_in6_addr32(a); // To improve performance, wrap this assertion in: // #if !defined(__clang_analyzer__) || PARANOIA tor_assert(addr32); return ntohl(addr32[3]); } else { return 0; } } /** Return the address family of a. Possible values are: * AF_INET6, AF_INET, AF_UNSPEC. */ static INLINE sa_family_t tor_addr_family(const tor_addr_t *a) { return a->family; } /** Return an in_addr* equivalent to a, or NULL if a is not * an IPv4 address. */ static INLINE const struct in_addr * tor_addr_to_in(const tor_addr_t *a) { return a->family == AF_INET ? &a->addr.in_addr : NULL; } /** Return true iff a is an IPv4 address equal to the host-ordered * address in u. */ static INLINE int tor_addr_eq_ipv4h(const tor_addr_t *a, uint32_t u) { return a->family == AF_INET ? (tor_addr_to_ipv4h(a) == u) : 0; } /** Length of a buffer that you need to allocate to be sure you can encode * any tor_addr_t. * * This allows enough space for * "[ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255]", * plus a terminating NUL. */ #define TOR_ADDR_BUF_LEN 48 int tor_addr_lookup(const char *name, uint16_t family, tor_addr_t *addr_out); char *tor_dup_addr(const tor_addr_t *addr) ATTR_MALLOC; /** Wrapper function of fmt_addr_impl(). It does not decorate IPv6 * addresses. */ #define fmt_addr(a) fmt_addr_impl((a), 0) /** Wrapper function of fmt_addr_impl(). It decorates IPv6 * addresses. */ #define fmt_and_decorate_addr(a) fmt_addr_impl((a), 1) const char *fmt_addr_impl(const tor_addr_t *addr, int decorate); const char *fmt_addrport(const tor_addr_t *addr, uint16_t port); const char * fmt_addr32(uint32_t addr); MOCK_DECL(int,get_interface_address6,(int severity, sa_family_t family, tor_addr_t *addr)); void free_interface_address6_list(smartlist_t * addrs); MOCK_DECL(smartlist_t *,get_interface_address6_list,(int severity, sa_family_t family, int include_internal)); /** Flag to specify how to do a comparison between addresses. In an "exact" * comparison, addresses are equivalent only if they are in the same family * with the same value. In a "semantic" comparison, IPv4 addresses match all * IPv6 encodings of those addresses. */ typedef enum { CMP_EXACT, CMP_SEMANTIC, } tor_addr_comparison_t; int tor_addr_compare(const tor_addr_t *addr1, const tor_addr_t *addr2, tor_addr_comparison_t how); int tor_addr_compare_masked(const tor_addr_t *addr1, const tor_addr_t *addr2, maskbits_t mask, tor_addr_comparison_t how); /** Return true iff a and b are the same address. The comparison is done * "exactly". */ #define tor_addr_eq(a,b) (0==tor_addr_compare((a),(b),CMP_EXACT)) uint64_t tor_addr_hash(const tor_addr_t *addr); int tor_addr_is_v4(const tor_addr_t *addr); int tor_addr_is_internal_(const tor_addr_t *ip, int for_listening, const char *filename, int lineno); #define tor_addr_is_internal(addr, for_listening) \ tor_addr_is_internal_((addr), (for_listening), SHORT_FILE__, __LINE__) /** Longest length that can be required for a reverse lookup name. */ /* 32 nybbles, 32 dots, 8 characters of "ip6.arpa", 1 NUL: 73 characters. */ #define REVERSE_LOOKUP_NAME_BUF_LEN 73 int tor_addr_to_PTR_name(char *out, size_t outlen, const tor_addr_t *addr); int tor_addr_parse_PTR_name(tor_addr_t *result, const char *address, int family, int accept_regular); int tor_addr_port_lookup(const char *s, tor_addr_t *addr_out, uint16_t *port_out); /* Does the address * yield an AF_UNSPEC wildcard address (1), * which expands to corresponding wildcard IPv4 and IPv6 rules, and do we * allow *4 and *6 for IPv4 and IPv6 wildcards, respectively; * or does the address * yield IPv4 wildcard address (0). */ #define TAPMP_EXTENDED_STAR 1 /* Does the address * yield an IPv4 wildcard address rule (1); * or does it yield wildcard IPv4 and IPv6 rules (0) */ #define TAPMP_STAR_IPV4_ONLY (1 << 1) /* Does the address * yield an IPv6 wildcard address rule (1); * or does it yield wildcard IPv4 and IPv6 rules (0) */ #define TAPMP_STAR_IPV6_ONLY (1 << 2) /* TAPMP_STAR_IPV4_ONLY and TAPMP_STAR_IPV6_ONLY are mutually exclusive. */ int tor_addr_parse_mask_ports(const char *s, unsigned flags, tor_addr_t *addr_out, maskbits_t *mask_out, uint16_t *port_min_out, uint16_t *port_max_out); const char * tor_addr_to_str(char *dest, const tor_addr_t *addr, size_t len, int decorate); int tor_addr_parse(tor_addr_t *addr, const char *src); void tor_addr_copy(tor_addr_t *dest, const tor_addr_t *src); void tor_addr_copy_tight(tor_addr_t *dest, const tor_addr_t *src); void tor_addr_from_ipv4n(tor_addr_t *dest, uint32_t v4addr); /** Set dest to the IPv4 address encoded in v4addr in host * order. */ #define tor_addr_from_ipv4h(dest, v4addr) \ tor_addr_from_ipv4n((dest), htonl(v4addr)) void tor_addr_from_ipv6_bytes(tor_addr_t *dest, const char *bytes); /** Set dest to the IPv4 address incoded in in. */ #define tor_addr_from_in(dest, in) \ tor_addr_from_ipv4n((dest), (in)->s_addr); void tor_addr_from_in6(tor_addr_t *dest, const struct in6_addr *in6); int tor_addr_is_null(const tor_addr_t *addr); int tor_addr_is_loopback(const tor_addr_t *addr); int tor_addr_port_split(int severity, const char *addrport, char **address_out, uint16_t *port_out); int tor_addr_port_parse(int severity, const char *addrport, tor_addr_t *address_out, uint16_t *port_out, int default_port); int tor_addr_hostname_is_local(const char *name); /* IPv4 helpers */ int addr_port_lookup(int severity, const char *addrport, char **address, uint32_t *addr, uint16_t *port_out); int parse_port_range(const char *port, uint16_t *port_min_out, uint16_t *port_max_out); int addr_mask_get_bits(uint32_t mask); /** Length of a buffer to allocate to hold the results of tor_inet_ntoa.*/ #define INET_NTOA_BUF_LEN 16 int tor_inet_ntoa(const struct in_addr *in, char *buf, size_t buf_len); char *tor_dup_ip(uint32_t addr) ATTR_MALLOC; MOCK_DECL(int,get_interface_address,(int severity, uint32_t *addr)); /** Free a smartlist of IP addresses returned by get_interface_address_list. */ static INLINE void free_interface_address_list(smartlist_t *addrs) { free_interface_address6_list(addrs); } /** Return a smartlist of the IPv4 addresses of all interfaces on the server. * Excludes loopback and multicast addresses. Only includes internal addresses * if include_internal is true. (Note that a relay behind NAT may use an * internal address to connect to the Internet.) * An empty smartlist means that there are no IPv4 addresses. * Returns NULL on failure. * Use free_interface_address_list to free the returned list. */ static INLINE smartlist_t * get_interface_address_list(int severity, int include_internal) { return get_interface_address6_list(severity, AF_INET, include_internal); } tor_addr_port_t *tor_addr_port_new(const tor_addr_t *addr, uint16_t port); #ifdef ADDRESS_PRIVATE MOCK_DECL(smartlist_t *,get_interface_addresses_raw,(int severity)); STATIC int tor_addr_is_multicast(const tor_addr_t *a); MOCK_DECL(int,get_interface_address6_via_udp_socket_hack,(int severity, sa_family_t family, tor_addr_t *addr)); #ifdef HAVE_IFADDRS_TO_SMARTLIST STATIC smartlist_t *ifaddrs_to_smartlist(const struct ifaddrs *ifa); STATIC smartlist_t *get_interface_addresses_ifaddrs(int severity); #endif #ifdef HAVE_IP_ADAPTER_TO_SMARTLIST STATIC smartlist_t *ip_adapter_addresses_to_smartlist( const IP_ADAPTER_ADDRESSES *addresses); STATIC smartlist_t *get_interface_addresses_win32(int severity); #endif #ifdef HAVE_IFCONF_TO_SMARTLIST STATIC smartlist_t *ifreq_to_smartlist(char *ifr, size_t buflen); STATIC smartlist_t *get_interface_addresses_ioctl(int severity); #endif #endif // ADDRESS_PRIVATE #endif tor-0.2.7.6/src/common/torint.h0000644000175000017500000001651612621363245013175 00000000000000/* Copyright (c) 2003, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file torint.h * \brief Header file to define uint32_t and friends **/ #ifndef TOR_TORINT_H #define TOR_TORINT_H #include "orconfig.h" #ifdef HAVE_STDINT_H #include #endif #ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_LIMITS_H #include #endif #ifdef HAVE_SYS_LIMITS_H #include #endif #ifdef HAVE_MACHINE_LIMITS_H #if !defined(__FreeBSD__) && !defined(__FreeBSD_kernel__) /* FreeBSD has a bug where it complains that this file is obsolete, and I should migrate to using sys/limits. It complains even when I include both. __FreeBSD_kernel__ is defined by Debian GNU/kFreeBSD which does the same thing (but doesn't defined __FreeBSD__). */ #include #endif #endif #ifdef HAVE_INTTYPES_H #include #endif #if (SIZEOF_INT8_T != 0) #define HAVE_INT8_T #endif #if (SIZEOF_INT16_T != 0) #define HAVE_INT16_T #endif #if (SIZEOF_INT32_T != 0) #define HAVE_INT32_T #endif #if (SIZEOF_INT64_T != 0) #define HAVE_INT64_T #endif #if (SIZEOF_UINT8_T != 0) #define HAVE_UINT8_T #endif #if (SIZEOF_UINT16_T != 0) #define HAVE_UINT16_T #endif #if (SIZEOF_UINT32_T != 0) #define HAVE_UINT32_T #endif #if (SIZEOF_UINT64_T != 0) #define HAVE_UINT64_T #endif #if (SIZEOF_INTPTR_T != 0) #define HAVE_INTPTR_T #endif #if (SIZEOF_UINTPTR_T != 0) #define HAVE_UINTPTR_T #endif #if (SIZEOF_CHAR == 1) #ifndef HAVE_INT8_T typedef signed char int8_t; #define HAVE_INT8_T #endif #ifndef HAVE_UINT8_T typedef unsigned char uint8_t; #define HAVE_UINT8_T #endif #endif #if (SIZEOF_SHORT == 2) #ifndef HAVE_INT16_T typedef signed short int16_t; #define HAVE_INT16_T #endif #ifndef HAVE_UINT16_T typedef unsigned short uint16_t; #define HAVE_UINT16_T #endif #endif #if (SIZEOF_INT == 2) #ifndef HAVE_INT16_T typedef signed int int16_t; #define HAVE_INT16_T #endif #ifndef HAVE_UINT16_T typedef unsigned int uint16_t; #define HAVE_UINT16_T #endif #elif (SIZEOF_INT == 4) #ifndef HAVE_INT32_T typedef signed int int32_t; #define HAVE_INT32_T #endif #ifndef HAVE_UINT32_T typedef unsigned int uint32_t; #define HAVE_UINT32_T #endif #ifndef UINT16_MAX #define UINT16_MAX 0xffffu #endif #ifndef INT16_MAX #define INT16_MAX 0x7fff #endif #ifndef INT16_MIN #define INT16_MIN (-INT16_MAX-1) #endif #ifndef UINT32_MAX #define UINT32_MAX 0xffffffffu #endif #ifndef INT32_MAX #define INT32_MAX 0x7fffffff #endif #ifndef INT32_MIN #define INT32_MIN (-2147483647-1) #endif #endif #if (SIZEOF_LONG == 4) #ifndef HAVE_INT32_T typedef signed long int32_t; #define HAVE_INT32_T #endif #ifndef HAVE_UINT32_T typedef unsigned long uint32_t; #define HAVE_UINT32_T #ifndef UINT32_MAX #define UINT32_MAX 0xfffffffful #endif #endif #elif (SIZEOF_LONG == 8) #ifndef HAVE_INT64_T typedef signed long int64_t; #define HAVE_INT64_T #endif #ifndef HAVE_UINT32_T typedef unsigned long uint64_t; #define HAVE_UINT32_T #endif #ifndef UINT64_MAX #define UINT64_MAX 0xfffffffffffffffful #endif #endif #if (SIZEOF_LONG_LONG == 8) #ifndef HAVE_INT64_T typedef signed long long int64_t; #define HAVE_INT64_T #endif #ifndef HAVE_UINT64_T typedef unsigned long long uint64_t; #define HAVE_UINT64_T #endif #ifndef UINT64_MAX #define UINT64_MAX 0xffffffffffffffffull #endif #ifndef INT64_MAX #define INT64_MAX 0x7fffffffffffffffll #endif #endif #if (SIZEOF___INT64 == 8) #ifndef HAVE_INT64_T typedef signed __int64 int64_t; #define HAVE_INT64_T #endif #ifndef HAVE_UINT64_T typedef unsigned __int64 uint64_t; #define HAVE_UINT64_T #endif #ifndef UINT64_MAX #define UINT64_MAX 0xffffffffffffffffui64 #endif #ifndef INT64_MAX #define INT64_MAX 0x7fffffffffffffffi64 #endif #endif #ifndef INT64_MIN #define INT64_MIN ((- INT64_MAX) - 1) #endif #ifndef SIZE_MAX #if SIZEOF_SIZE_T == 8 #define SIZE_MAX UINT64_MAX #elif SIZEOF_SIZE_T == 4 #define SIZE_MAX UINT32_MAX #else #error "Can't define SIZE_MAX" #endif #endif #ifndef HAVE_SSIZE_T #if SIZEOF_SIZE_T == 8 typedef int64_t ssize_t; #elif SIZEOF_SIZE_T == 4 typedef int32_t ssize_t; #else #error "Can't define ssize_t." #endif #endif #if (SIZEOF_VOID_P > 4 && SIZEOF_VOID_P <= 8) #ifndef HAVE_INTPTR_T typedef int64_t intptr_t; #define SIZEOF_INTPTR_T 8 #endif #ifndef HAVE_UINTPTR_T typedef uint64_t uintptr_t; #define SIZEOF_UINTPTR_T 8 #endif #elif (SIZEOF_VOID_P > 2 && SIZEOF_VOID_P <= 4) #ifndef HAVE_INTPTR_T typedef int32_t intptr_t; #define SIZEOF_INTPTR_T 4 #endif #ifndef HAVE_UINTPTR_T typedef uint32_t uintptr_t; #define SIZEOF_UINTPTR_T 4 #endif #else #error "void * is either >8 bytes or <= 2. In either case, I am confused." #endif #ifndef HAVE_INT8_T #error "Missing type int8_t" #endif #ifndef HAVE_UINT8_T #error "Missing type uint8_t" #endif #ifndef HAVE_INT16_T #error "Missing type int16_t" #endif #ifndef HAVE_UINT16_T #error "Missing type uint16_t" #endif #ifndef HAVE_INT32_T #error "Missing type int32_t" #endif #ifndef HAVE_UINT32_T #error "Missing type uint32_t" #endif #ifndef HAVE_INT64_T #error "Missing type int64_t" #endif #ifndef HAVE_UINT64_T #error "Missing type uint64_t" #endif /* This assumes a sane (2's-complement) representation. But if you * aren't 2's complement, and you don't define LONG_MAX, then you're so * bizarre that I want nothing to do with you. */ #ifndef USING_TWOS_COMPLEMENT #error "Seems that your platform doesn't use 2's complement arithmetic. Argh." #endif #ifndef LONG_MAX #if (SIZEOF_LONG == 4) #define LONG_MAX 0x7fffffffL #elif (SIZEOF_LONG == 8) #define LONG_MAX 0x7fffffffffffffffL #else #error "Can't define LONG_MAX" #endif #endif #ifndef INT_MAX #if (SIZEOF_INT == 4) #define INT_MAX 0x7fffffffL #elif (SIZEOF_INT == 8) #define INT_MAX 0x7fffffffffffffffL #else #error "Can't define INT_MAX" #endif #endif #ifndef UINT_MAX #if (SIZEOF_INT == 2) #define UINT_MAX 0xffffu #elif (SIZEOF_INT == 4) #define UINT_MAX 0xffffffffu #elif (SIZEOF_INT == 8) #define UINT_MAX 0xffffffffffffffffu #else #error "Can't define UINT_MAX" #endif #endif #ifndef SHORT_MAX #if (SIZEOF_SHORT == 2) #define SHORT_MAX 0x7fff #elif (SIZEOF_SHORT == 4) #define SHORT_MAX 0x7fffffff #else #error "Can't define SHORT_MAX" #endif #endif #ifndef TIME_MAX #ifdef TIME_T_IS_SIGNED #if (SIZEOF_TIME_T == SIZEOF_INT) #define TIME_MAX ((time_t)INT_MAX) #elif (SIZEOF_TIME_T == SIZEOF_LONG) #define TIME_MAX ((time_t)LONG_MAX) #elif (SIZEOF_TIME_T == 8) #define TIME_MAX ((time_t)INT64_MAX) #else #error "Can't define (signed) TIME_MAX" #endif #else /* Unsigned case */ #if (SIZEOF_TIME_T == 4) #define TIME_MAX ((time_t)UINT32_MAX) #elif (SIZEOF_TIME_T == 8) #define TIME_MAX ((time_t)UINT64_MAX) #else #error "Can't define (unsigned) TIME_MAX" #endif #endif /* time_t_is_signed */ #endif /* ifndef(TIME_MAX) */ #ifndef SIZE_MAX #if (SIZEOF_SIZE_T == 4) #define SIZE_MAX UINT32_MAX #elif (SIZEOF_SIZE_T == 8) #define SIZE_MAX UINT64_MAX #else #error "Can't define SIZE_MAX" #endif #endif #ifndef SSIZE_MAX #if (SIZEOF_SIZE_T == 4) #define SSIZE_MAX INT32_MAX #elif (SIZEOF_SIZE_T == 8) #define SSIZE_MAX INT64_MAX #else #error "Can't define SSIZE_MAX" #endif #endif /** Any ssize_t larger than this amount is likely to be an underflow. */ #define SSIZE_T_CEILING ((ssize_t)(SSIZE_MAX-16)) /** Any size_t larger than this amount is likely to be an underflow. */ #define SIZE_T_CEILING ((size_t)(SSIZE_MAX-16)) #endif /* __TORINT_H */ tor-0.2.7.6/src/common/compat_pthreads.c0000644000175000017500000002066412621363245015025 00000000000000/* Copyright (c) 2003-2004, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define _GNU_SOURCE #include "orconfig.h" #include #include #include #include "compat.h" #include "torlog.h" #include "util.h" /** Wraps a void (*)(void*) function and its argument so we can * invoke them in a way pthreads would expect. */ typedef struct tor_pthread_data_t { void (*func)(void *); void *data; } tor_pthread_data_t; /** Given a tor_pthread_data_t _data, call _data->func(d->data) * and free _data. Used to make sure we can call functions the way pthread * expects. */ static void * tor_pthread_helper_fn(void *_data) { tor_pthread_data_t *data = _data; void (*func)(void*); void *arg; /* mask signals to worker threads to avoid SIGPIPE, etc */ sigset_t sigs; /* We're in a subthread; don't handle any signals here. */ sigfillset(&sigs); pthread_sigmask(SIG_SETMASK, &sigs, NULL); func = data->func; arg = data->data; tor_free(_data); func(arg); return NULL; } /** * A pthread attribute to make threads start detached. */ static pthread_attr_t attr_detached; /** True iff we've called tor_threads_init() */ static int threads_initialized = 0; /** Minimalist interface to run a void function in the background. On * Unix calls pthread_create, on win32 calls beginthread. Returns -1 on * failure. * func should not return, but rather should call spawn_exit. * * NOTE: if data is used, it should not be allocated on the stack, * since in a multithreaded environment, there is no way to be sure that * the caller's stack will still be around when the called function is * running. */ int spawn_func(void (*func)(void *), void *data) { pthread_t thread; tor_pthread_data_t *d; if (PREDICT_UNLIKELY(!threads_initialized)) { tor_threads_init(); } d = tor_malloc(sizeof(tor_pthread_data_t)); d->data = data; d->func = func; if (pthread_create(&thread, &attr_detached, tor_pthread_helper_fn, d)) { tor_free(d); return -1; } return 0; } /** End the current thread/process. */ void spawn_exit(void) { pthread_exit(NULL); } /** A mutex attribute that we're going to use to tell pthreads that we want * "recursive" mutexes (i.e., once we can re-lock if we're already holding * them.) */ static pthread_mutexattr_t attr_recursive; /** Initialize mutex so it can be locked. Every mutex must be set * up with tor_mutex_init() or tor_mutex_new(); not both. */ void tor_mutex_init(tor_mutex_t *mutex) { if (PREDICT_UNLIKELY(!threads_initialized)) tor_threads_init(); const int err = pthread_mutex_init(&mutex->mutex, &attr_recursive); if (PREDICT_UNLIKELY(err)) { log_err(LD_GENERAL, "Error %d creating a mutex.", err); tor_fragile_assert(); } } /** As tor_mutex_init, but initialize a mutex suitable that may be * non-recursive, if the OS supports that. */ void tor_mutex_init_nonrecursive(tor_mutex_t *mutex) { int err; if (PREDICT_UNLIKELY(!threads_initialized)) tor_threads_init(); err = pthread_mutex_init(&mutex->mutex, NULL); if (PREDICT_UNLIKELY(err)) { log_err(LD_GENERAL, "Error %d creating a mutex.", err); tor_fragile_assert(); } } /** Wait until m is free, then acquire it. */ void tor_mutex_acquire(tor_mutex_t *m) { int err; tor_assert(m); err = pthread_mutex_lock(&m->mutex); if (PREDICT_UNLIKELY(err)) { log_err(LD_GENERAL, "Error %d locking a mutex.", err); tor_fragile_assert(); } } /** Release the lock m so another thread can have it. */ void tor_mutex_release(tor_mutex_t *m) { int err; tor_assert(m); err = pthread_mutex_unlock(&m->mutex); if (PREDICT_UNLIKELY(err)) { log_err(LD_GENERAL, "Error %d unlocking a mutex.", err); tor_fragile_assert(); } } /** Clean up the mutex m so that it no longer uses any system * resources. Does not free m. This function must only be called on * mutexes from tor_mutex_init(). */ void tor_mutex_uninit(tor_mutex_t *m) { int err; tor_assert(m); err = pthread_mutex_destroy(&m->mutex); if (PREDICT_UNLIKELY(err)) { log_err(LD_GENERAL, "Error %d destroying a mutex.", err); tor_fragile_assert(); } } /** Return an integer representing this thread. */ unsigned long tor_get_thread_id(void) { union { pthread_t thr; unsigned long id; } r; r.thr = pthread_self(); return r.id; } /* Conditions. */ /** Initialize an already-allocated condition variable. */ int tor_cond_init(tor_cond_t *cond) { pthread_condattr_t condattr; memset(cond, 0, sizeof(tor_cond_t)); /* Default condition attribute. Might be used if clock monotonic is * available else this won't affect anything. */ if (pthread_condattr_init(&condattr)) { return -1; } #if defined(HAVE_CLOCK_GETTIME) && defined(CLOCK_MONOTONIC) /* Use monotonic time so when we timedwait() on it, any clock adjustment * won't affect the timeout value. */ if (pthread_condattr_setclock(&condattr, CLOCK_MONOTONIC)) { return -1; } #endif if (pthread_cond_init(&cond->cond, &condattr)) { return -1; } return 0; } /** Release all resources held by cond, but do not free cond * itself. */ void tor_cond_uninit(tor_cond_t *cond) { if (pthread_cond_destroy(&cond->cond)) { log_warn(LD_GENERAL,"Error freeing condition: %s", strerror(errno)); return; } } /** Wait until one of the tor_cond_signal functions is called on cond. * (If tv is set, and that amount of time passes with no signal to * cond, return anyway. All waiters on the condition must wait holding * the same mutex. All signallers should hold that mutex. The mutex * needs to have been allocated with tor_mutex_init_for_cond(). * * Returns 0 on success, -1 on failure, 1 on timeout. */ int tor_cond_wait(tor_cond_t *cond, tor_mutex_t *mutex, const struct timeval *tv) { int r; if (tv == NULL) { while (1) { r = pthread_cond_wait(&cond->cond, &mutex->mutex); if (r == EINTR) { /* EINTR should be impossible according to POSIX, but POSIX, like the * Pirate's Code, is apparently treated "more like what you'd call * guidelines than actual rules." */ continue; } return r ? -1 : 0; } } else { struct timeval tvnow, tvsum; struct timespec ts; while (1) { #if defined(HAVE_CLOCK_GETTIME) && defined(CLOCK_MONOTONIC) if (clock_gettime(CLOCK_MONOTONIC, &ts) < 0) { return -1; } tvnow.tv_sec = ts.tv_sec; tvnow.tv_usec = ts.tv_nsec / 1000; timeradd(tv, &tvnow, &tvsum); #else if (gettimeofday(&tvnow, NULL) < 0) return -1; timeradd(tv, &tvnow, &tvsum); #endif /* HAVE_CLOCK_GETTIME, CLOCK_MONOTONIC */ ts.tv_sec = tvsum.tv_sec; ts.tv_nsec = tvsum.tv_usec * 1000; r = pthread_cond_timedwait(&cond->cond, &mutex->mutex, &ts); if (r == 0) return 0; else if (r == ETIMEDOUT) return 1; else if (r == EINTR) continue; else return -1; } } } /** Wake up one of the waiters on cond. */ void tor_cond_signal_one(tor_cond_t *cond) { pthread_cond_signal(&cond->cond); } /** Wake up all of the waiters on cond. */ void tor_cond_signal_all(tor_cond_t *cond) { pthread_cond_broadcast(&cond->cond); } int tor_threadlocal_init(tor_threadlocal_t *threadlocal) { int err = pthread_key_create(&threadlocal->key, NULL); return err ? -1 : 0; } void tor_threadlocal_destroy(tor_threadlocal_t *threadlocal) { pthread_key_delete(threadlocal->key); memset(threadlocal, 0, sizeof(tor_threadlocal_t)); } void * tor_threadlocal_get(tor_threadlocal_t *threadlocal) { return pthread_getspecific(threadlocal->key); } void tor_threadlocal_set(tor_threadlocal_t *threadlocal, void *value) { int err = pthread_setspecific(threadlocal->key, value); tor_assert(err == 0); } /** Set up common structures for use by threading. */ void tor_threads_init(void) { if (!threads_initialized) { pthread_mutexattr_init(&attr_recursive); pthread_mutexattr_settype(&attr_recursive, PTHREAD_MUTEX_RECURSIVE); const int ret1 = pthread_attr_init(&attr_detached); tor_assert(ret1 == 0); #ifndef PTHREAD_CREATE_DETACHED #define PTHREAD_CREATE_DETACHED 1 #endif const int ret2 = pthread_attr_setdetachstate(&attr_detached, PTHREAD_CREATE_DETACHED); tor_assert(ret2 == 0); threads_initialized = 1; set_main_thread(); } } tor-0.2.7.6/src/common/compat_libevent.h0000644000175000017500000000632712631612325015025 00000000000000/* Copyright (c) 2009-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef TOR_COMPAT_LIBEVENT_H #define TOR_COMPAT_LIBEVENT_H #include "orconfig.h" #include "testsupport.h" struct event; struct event_base; #ifdef USE_BUFFEREVENTS struct bufferevent; struct ev_token_bucket_cfg; struct bufferevent_rate_limit_group; #endif #ifdef HAVE_EVENT2_EVENT_H #include #elif !defined(EVUTIL_SOCKET_DEFINED) #define EVUTIL_SOCKET_DEFINED #define evutil_socket_t int #endif void configure_libevent_logging(void); void suppress_libevent_log_msg(const char *msg); #ifdef HAVE_EVENT2_EVENT_H #define tor_event_new event_new #define tor_evtimer_new evtimer_new #define tor_evsignal_new evsignal_new #define tor_evdns_add_server_port(sock, tcp, cb, data) \ evdns_add_server_port_with_base(tor_libevent_get_base(), \ (sock),(tcp),(cb),(data)); #else struct event *tor_event_new(struct event_base * base, evutil_socket_t sock, short what, void (*cb)(evutil_socket_t, short, void *), void *arg); struct event *tor_evtimer_new(struct event_base * base, void (*cb)(evutil_socket_t, short, void *), void *arg); struct event *tor_evsignal_new(struct event_base * base, int sig, void (*cb)(evutil_socket_t, short, void *), void *arg); #define tor_evdns_add_server_port evdns_add_server_port #endif void tor_event_free(struct event *ev); typedef struct periodic_timer_t periodic_timer_t; periodic_timer_t *periodic_timer_new(struct event_base *base, const struct timeval *tv, void (*cb)(periodic_timer_t *timer, void *data), void *data); void periodic_timer_free(periodic_timer_t *); #define tor_event_base_loopexit event_base_loopexit /** Defines a configuration for using libevent with Tor: passed as an argument * to tor_libevent_initialize() to describe how we want to set up. */ typedef struct tor_libevent_cfg { /** Flag: if true, disable IOCP (assuming that it could be enabled). */ int disable_iocp; /** How many CPUs should we use (relevant only with IOCP). */ int num_cpus; /** How many milliseconds should we allow between updating bandwidth limits? * (relevant only with bufferevents). */ int msec_per_tick; } tor_libevent_cfg; void tor_libevent_initialize(tor_libevent_cfg *cfg); MOCK_DECL(struct event_base *, tor_libevent_get_base, (void)); const char *tor_libevent_get_method(void); void tor_check_libevent_header_compatibility(void); const char *tor_libevent_get_version_str(void); const char *tor_libevent_get_header_version_str(void); #ifdef USE_BUFFEREVENTS const struct timeval *tor_libevent_get_one_tick_timeout(void); int tor_libevent_using_iocp_bufferevents(void); int tor_set_bufferevent_rate_limit(struct bufferevent *bev, struct ev_token_bucket_cfg *cfg); int tor_add_bufferevent_to_rate_limit_group(struct bufferevent *bev, struct bufferevent_rate_limit_group *g); #endif int tor_init_libevent_rng(void); void tor_gettimeofday_cached(struct timeval *tv); void tor_gettimeofday_cache_clear(void); #ifdef TOR_UNIT_TESTS void tor_gettimeofday_cache_set(const struct timeval *tv); #endif void tor_gettimeofday_cached_monotonic(struct timeval *tv); #endif tor-0.2.7.6/src/common/util.c0000644000175000017500000045330112631612325012620 00000000000000/* Copyright (c) 2003, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file util.c * \brief Common functions for strings, IO, network, data structures, * process control. **/ /* This is required on rh7 to make strptime not complain. */ #define _GNU_SOURCE #include "orconfig.h" #ifdef HAVE_FCNTL_H #include #endif #define UTIL_PRIVATE #include "util.h" #include "torlog.h" #include "crypto.h" #include "torint.h" #include "container.h" #include "address.h" #include "sandbox.h" #include "backtrace.h" #include "util_process.h" #include "util_format.h" #ifdef _WIN32 #include #include #include #include #include #else #include #include #include #endif /* math.h needs this on Linux */ #ifndef _USE_ISOC99_ #define _USE_ISOC99_ 1 #endif #include #include #include #include #include #include #ifdef HAVE_NETINET_IN_H #include #endif #ifdef HAVE_ARPA_INET_H #include #endif #ifdef HAVE_ERRNO_H #include #endif #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef HAVE_SYS_TIME_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_SYS_STAT_H #include #endif #ifdef HAVE_SYS_FCNTL_H #include #endif #ifdef HAVE_TIME_H #include #endif #ifdef HAVE_MALLOC_MALLOC_H #include #endif #ifdef HAVE_MALLOC_H #if !defined(OPENBSD) && !defined(__FreeBSD__) /* OpenBSD has a malloc.h, but for our purposes, it only exists in order to * scold us for being so stupid as to autodetect its presence. To be fair, * they've done this since 1996, when autoconf was only 5 years old. */ #include #endif #endif #ifdef HAVE_MALLOC_NP_H #include #endif #ifdef HAVE_SYS_WAIT_H #include #endif #if defined(HAVE_SYS_PRCTL_H) && defined(__linux__) #include #endif #ifdef __clang_analyzer__ #undef MALLOC_ZERO_WORKS #endif /* ===== * Assertion helper. * ===== */ /** Helper for tor_assert: report the assertion failure. */ void tor_assertion_failed_(const char *fname, unsigned int line, const char *func, const char *expr) { char buf[256]; log_err(LD_BUG, "%s:%u: %s: Assertion %s failed; aborting.", fname, line, func, expr); tor_snprintf(buf, sizeof(buf), "Assertion %s failed in %s at %s:%u", expr, func, fname, line); log_backtrace(LOG_ERR, LD_BUG, buf); } /* ===== * Memory management * ===== */ #ifdef USE_DMALLOC #undef strndup #include /* Macro to pass the extra dmalloc args to another function. */ #define DMALLOC_FN_ARGS , file, line #if defined(HAVE_DMALLOC_STRDUP) /* the dmalloc_strdup should be fine as defined */ #elif defined(HAVE_DMALLOC_STRNDUP) #define dmalloc_strdup(file, line, string, xalloc_b) \ dmalloc_strndup(file, line, (string), -1, xalloc_b) #else #error "No dmalloc_strdup or equivalent" #endif #else /* not using dmalloc */ #define DMALLOC_FN_ARGS #endif /** Allocate a chunk of size bytes of memory, and return a pointer to * result. On error, log and terminate the process. (Same as malloc(size), * but never returns NULL.) * * file and line are used if dmalloc is enabled, and * ignored otherwise. */ void * tor_malloc_(size_t size DMALLOC_PARAMS) { void *result; tor_assert(size < SIZE_T_CEILING); #ifndef MALLOC_ZERO_WORKS /* Some libc mallocs don't work when size==0. Override them. */ if (size==0) { size=1; } #endif #ifdef USE_DMALLOC result = dmalloc_malloc(file, line, size, DMALLOC_FUNC_MALLOC, 0, 0); #else result = malloc(size); #endif if (PREDICT_UNLIKELY(result == NULL)) { log_err(LD_MM,"Out of memory on malloc(). Dying."); /* If these functions die within a worker process, they won't call * spawn_exit, but that's ok, since the parent will run out of memory soon * anyway. */ exit(1); } return result; } /** Allocate a chunk of size bytes of memory, fill the memory with * zero bytes, and return a pointer to the result. Log and terminate * the process on error. (Same as calloc(size,1), but never returns NULL.) */ void * tor_malloc_zero_(size_t size DMALLOC_PARAMS) { /* You may ask yourself, "wouldn't it be smart to use calloc instead of * malloc+memset? Perhaps libc's calloc knows some nifty optimization trick * we don't!" Indeed it does, but its optimizations are only a big win when * we're allocating something very big (it knows if it just got the memory * from the OS in a pre-zeroed state). We don't want to use tor_malloc_zero * for big stuff, so we don't bother with calloc. */ void *result = tor_malloc_(size DMALLOC_FN_ARGS); memset(result, 0, size); return result; } /* The square root of SIZE_MAX + 1. If a is less than this, and b is less * than this, then a*b is less than SIZE_MAX. (For example, if size_t is * 32 bits, then SIZE_MAX is 0xffffffff and this value is 0x10000. If a and * b are less than this, then their product is at most (65535*65535) == * 0xfffe0001. */ #define SQRT_SIZE_MAX_P1 (((size_t)1) << (sizeof(size_t)*4)) /** Return non-zero if and only if the product of the arguments is exact. */ static INLINE int size_mul_check(const size_t x, const size_t y) { /* This first check is equivalent to (x < SQRT_SIZE_MAX_P1 && y < SQRT_SIZE_MAX_P1) Rationale: if either one of x or y is >= SQRT_SIZE_MAX_P1, then it will have some bit set in its most significant half. */ return ((x|y) < SQRT_SIZE_MAX_P1 || y == 0 || x <= SIZE_MAX / y); } /** Allocate a chunk of nmemb*size bytes of memory, fill * the memory with zero bytes, and return a pointer to the result. * Log and terminate the process on error. (Same as * calloc(nmemb,size), but never returns NULL.) * The second argument (size) should preferably be non-zero * and a compile-time constant. */ void * tor_calloc_(size_t nmemb, size_t size DMALLOC_PARAMS) { tor_assert(size_mul_check(nmemb, size)); return tor_malloc_zero_((nmemb * size) DMALLOC_FN_ARGS); } /** Change the size of the memory block pointed to by ptr to size * bytes long; return the new memory block. On error, log and * terminate. (Like realloc(ptr,size), but never returns NULL.) */ void * tor_realloc_(void *ptr, size_t size DMALLOC_PARAMS) { void *result; tor_assert(size < SIZE_T_CEILING); #ifndef MALLOC_ZERO_WORKS /* Some libc mallocs don't work when size==0. Override them. */ if (size==0) { size=1; } #endif #ifdef USE_DMALLOC result = dmalloc_realloc(file, line, ptr, size, DMALLOC_FUNC_REALLOC, 0); #else result = realloc(ptr, size); #endif if (PREDICT_UNLIKELY(result == NULL)) { log_err(LD_MM,"Out of memory on realloc(). Dying."); exit(1); } return result; } /** * Try to realloc ptr so that it takes up sz1 * sz2 bytes. Check for * overflow. Unlike other allocation functions, return NULL on overflow. */ void * tor_reallocarray_(void *ptr, size_t sz1, size_t sz2 DMALLOC_PARAMS) { /* XXXX we can make this return 0, but we would need to check all the * reallocarray users. */ tor_assert(size_mul_check(sz1, sz2)); return tor_realloc(ptr, (sz1 * sz2) DMALLOC_FN_ARGS); } /** Return a newly allocated copy of the NUL-terminated string s. On * error, log and terminate. (Like strdup(s), but never returns * NULL.) */ char * tor_strdup_(const char *s DMALLOC_PARAMS) { char *dup; tor_assert(s); #ifdef USE_DMALLOC dup = dmalloc_strdup(file, line, s, 0); #else dup = strdup(s); #endif if (PREDICT_UNLIKELY(dup == NULL)) { log_err(LD_MM,"Out of memory on strdup(). Dying."); exit(1); } return dup; } /** Allocate and return a new string containing the first n * characters of s. If s is longer than n * characters, only the first n are copied. The result is * always NUL-terminated. (Like strndup(s,n), but never returns * NULL.) */ char * tor_strndup_(const char *s, size_t n DMALLOC_PARAMS) { char *dup; tor_assert(s); tor_assert(n < SIZE_T_CEILING); dup = tor_malloc_((n+1) DMALLOC_FN_ARGS); /* Performance note: Ordinarily we prefer strlcpy to strncpy. But * this function gets called a whole lot, and platform strncpy is * much faster than strlcpy when strlen(s) is much longer than n. */ strncpy(dup, s, n); dup[n]='\0'; return dup; } /** Allocate a chunk of len bytes, with the same contents as the * len bytes starting at mem. */ void * tor_memdup_(const void *mem, size_t len DMALLOC_PARAMS) { char *dup; tor_assert(len < SIZE_T_CEILING); tor_assert(mem); dup = tor_malloc_(len DMALLOC_FN_ARGS); memcpy(dup, mem, len); return dup; } /** As tor_memdup(), but add an extra 0 byte at the end of the resulting * memory. */ void * tor_memdup_nulterm_(const void *mem, size_t len DMALLOC_PARAMS) { char *dup; tor_assert(len < SIZE_T_CEILING+1); tor_assert(mem); dup = tor_malloc_(len+1 DMALLOC_FN_ARGS); memcpy(dup, mem, len); dup[len] = '\0'; return dup; } /** Helper for places that need to take a function pointer to the right * spelling of "free()". */ void tor_free_(void *mem) { tor_free(mem); } /** Call the platform malloc info function, and dump the results to the log at * level severity. If no such function exists, do nothing. */ void tor_log_mallinfo(int severity) { #ifdef HAVE_MALLINFO struct mallinfo mi; memset(&mi, 0, sizeof(mi)); mi = mallinfo(); tor_log(severity, LD_MM, "mallinfo() said: arena=%d, ordblks=%d, smblks=%d, hblks=%d, " "hblkhd=%d, usmblks=%d, fsmblks=%d, uordblks=%d, fordblks=%d, " "keepcost=%d", mi.arena, mi.ordblks, mi.smblks, mi.hblks, mi.hblkhd, mi.usmblks, mi.fsmblks, mi.uordblks, mi.fordblks, mi.keepcost); #else (void)severity; #endif #ifdef USE_DMALLOC dmalloc_log_changed(0, /* Since the program started. */ 1, /* Log info about non-freed pointers. */ 0, /* Do not log info about freed pointers. */ 0 /* Do not log individual pointers. */ ); #endif } /* ===== * Math * ===== */ /** * Returns the natural logarithm of d base e. We defined this wrapper here so * to avoid conflicts with old versions of tor_log(), which were named log(). */ double tor_mathlog(double d) { return log(d); } /** Return the long integer closest to d. We define this wrapper * here so that not all users of math.h need to use the right incantations * to get the c99 functions. */ long tor_lround(double d) { #if defined(HAVE_LROUND) return lround(d); #elif defined(HAVE_RINT) return (long)rint(d); #else return (long)(d > 0 ? d + 0.5 : ceil(d - 0.5)); #endif } /** Return the 64-bit integer closest to d. We define this wrapper here so * that not all users of math.h need to use the right incantations to get the * c99 functions. */ int64_t tor_llround(double d) { #if defined(HAVE_LLROUND) return (int64_t)llround(d); #elif defined(HAVE_RINT) return (int64_t)rint(d); #else return (int64_t)(d > 0 ? d + 0.5 : ceil(d - 0.5)); #endif } /** Returns floor(log2(u64)). If u64 is 0, (incorrectly) returns 0. */ int tor_log2(uint64_t u64) { int r = 0; if (u64 >= (U64_LITERAL(1)<<32)) { u64 >>= 32; r = 32; } if (u64 >= (U64_LITERAL(1)<<16)) { u64 >>= 16; r += 16; } if (u64 >= (U64_LITERAL(1)<<8)) { u64 >>= 8; r += 8; } if (u64 >= (U64_LITERAL(1)<<4)) { u64 >>= 4; r += 4; } if (u64 >= (U64_LITERAL(1)<<2)) { u64 >>= 2; r += 2; } if (u64 >= (U64_LITERAL(1)<<1)) { u64 >>= 1; r += 1; } return r; } /** Return the power of 2 in range [1,UINT64_MAX] closest to u64. If * there are two powers of 2 equally close, round down. */ uint64_t round_to_power_of_2(uint64_t u64) { int lg2; uint64_t low; uint64_t high; if (u64 == 0) return 1; lg2 = tor_log2(u64); low = U64_LITERAL(1) << lg2; if (lg2 == 63) return low; high = U64_LITERAL(1) << (lg2+1); if (high - u64 < u64 - low) return high; else return low; } /** Return the lowest x such that x is at least number, and x modulo * divisor == 0. */ unsigned round_to_next_multiple_of(unsigned number, unsigned divisor) { number += divisor - 1; number -= number % divisor; return number; } /** Return the lowest x such that x is at least number, and x modulo * divisor == 0. */ uint32_t round_uint32_to_next_multiple_of(uint32_t number, uint32_t divisor) { number += divisor - 1; number -= number % divisor; return number; } /** Return the lowest x such that x is at least number, and x modulo * divisor == 0. */ uint64_t round_uint64_to_next_multiple_of(uint64_t number, uint64_t divisor) { number += divisor - 1; number -= number % divisor; return number; } /** Return the lowest x in [INT64_MIN, INT64_MAX] such that x is at least * number, and x modulo divisor == 0. */ int64_t round_int64_to_next_multiple_of(int64_t number, int64_t divisor) { tor_assert(divisor > 0); if (number >= 0 && INT64_MAX - divisor + 1 >= number) number += divisor - 1; number -= number % divisor; return number; } /** Transform a random value p from the uniform distribution in * [0.0, 1.0[ into a Laplace distributed value with location parameter * mu and scale parameter b. Truncate the final result * to be an integer in [INT64_MIN, INT64_MAX]. */ int64_t sample_laplace_distribution(double mu, double b, double p) { double result; tor_assert(p >= 0.0 && p < 1.0); /* This is the "inverse cumulative distribution function" from: * http://en.wikipedia.org/wiki/Laplace_distribution */ result = mu - b * (p > 0.5 ? 1.0 : -1.0) * tor_mathlog(1.0 - 2.0 * fabs(p - 0.5)); if (result >= INT64_MAX) return INT64_MAX; else if (result <= INT64_MIN) return INT64_MIN; else return (int64_t) result; } /** Add random noise between INT64_MIN and INT64_MAX coming from a * Laplace distribution with mu = 0 and b = delta_f/epsilon * to signal based on the provided random value in * [0.0, 1.0[. */ int64_t add_laplace_noise(int64_t signal, double random, double delta_f, double epsilon) { int64_t noise = sample_laplace_distribution( 0.0, /* just add noise, no further signal */ delta_f / epsilon, random); if (noise > 0 && INT64_MAX - noise < signal) return INT64_MAX; else if (noise < 0 && INT64_MIN - noise > signal) return INT64_MIN; else return signal + noise; } /** Return the number of bits set in v. */ int n_bits_set_u8(uint8_t v) { static const int nybble_table[] = { 0, /* 0000 */ 1, /* 0001 */ 1, /* 0010 */ 2, /* 0011 */ 1, /* 0100 */ 2, /* 0101 */ 2, /* 0110 */ 3, /* 0111 */ 1, /* 1000 */ 2, /* 1001 */ 2, /* 1010 */ 3, /* 1011 */ 2, /* 1100 */ 3, /* 1101 */ 3, /* 1110 */ 4, /* 1111 */ }; return nybble_table[v & 15] + nybble_table[v>>4]; } /* ===== * String manipulation * ===== */ /** Remove from the string s every character which appears in * strip. */ void tor_strstrip(char *s, const char *strip) { char *read = s; while (*read) { if (strchr(strip, *read)) { ++read; } else { *s++ = *read++; } } *s = '\0'; } /** Return a pointer to a NUL-terminated hexadecimal string encoding * the first fromlen bytes of from. (fromlen must be \<= 32.) The * result does not need to be deallocated, but repeated calls to * hex_str will trash old results. */ const char * hex_str(const char *from, size_t fromlen) { static char buf[65]; if (fromlen>(sizeof(buf)-1)/2) fromlen = (sizeof(buf)-1)/2; base16_encode(buf,sizeof(buf),from,fromlen); return buf; } /** Convert all alphabetic characters in the nul-terminated string s to * lowercase. */ void tor_strlower(char *s) { while (*s) { *s = TOR_TOLOWER(*s); ++s; } } /** Convert all alphabetic characters in the nul-terminated string s to * lowercase. */ void tor_strupper(char *s) { while (*s) { *s = TOR_TOUPPER(*s); ++s; } } /** Return 1 if every character in s is printable, else return 0. */ int tor_strisprint(const char *s) { while (*s) { if (!TOR_ISPRINT(*s)) return 0; s++; } return 1; } /** Return 1 if no character in s is uppercase, else return 0. */ int tor_strisnonupper(const char *s) { while (*s) { if (TOR_ISUPPER(*s)) return 0; s++; } return 1; } /** As strcmp, except that either string may be NULL. The NULL string is * considered to be before any non-NULL string. */ int strcmp_opt(const char *s1, const char *s2) { if (!s1) { if (!s2) return 0; else return -1; } else if (!s2) { return 1; } else { return strcmp(s1, s2); } } /** Compares the first strlen(s2) characters of s1 with s2. Returns as for * strcmp. */ int strcmpstart(const char *s1, const char *s2) { size_t n = strlen(s2); return strncmp(s1, s2, n); } /** Compare the s1_len-byte string s1 with s2, * without depending on a terminating nul in s1. Sorting order is first by * length, then lexically; return values are as for strcmp. */ int strcmp_len(const char *s1, const char *s2, size_t s1_len) { size_t s2_len = strlen(s2); if (s1_len < s2_len) return -1; if (s1_len > s2_len) return 1; return fast_memcmp(s1, s2, s2_len); } /** Compares the first strlen(s2) characters of s1 with s2. Returns as for * strcasecmp. */ int strcasecmpstart(const char *s1, const char *s2) { size_t n = strlen(s2); return strncasecmp(s1, s2, n); } /** Compares the last strlen(s2) characters of s1 with s2. Returns as for * strcmp. */ int strcmpend(const char *s1, const char *s2) { size_t n1 = strlen(s1), n2 = strlen(s2); if (n2>n1) return strcmp(s1,s2); else return strncmp(s1+(n1-n2), s2, n2); } /** Compares the last strlen(s2) characters of s1 with s2. Returns as for * strcasecmp. */ int strcasecmpend(const char *s1, const char *s2) { size_t n1 = strlen(s1), n2 = strlen(s2); if (n2>n1) /* then they can't be the same; figure out which is bigger */ return strcasecmp(s1,s2); else return strncasecmp(s1+(n1-n2), s2, n2); } /** Compare the value of the string prefix with the start of the * memlen-byte memory chunk at mem. Return as for strcmp. * * [As fast_memcmp(mem, prefix, strlen(prefix)) but returns -1 if memlen is * less than strlen(prefix).] */ int fast_memcmpstart(const void *mem, size_t memlen, const char *prefix) { size_t plen = strlen(prefix); if (memlen < plen) return -1; return fast_memcmp(mem, prefix, plen); } /** Return a pointer to the first char of s that is not whitespace and * not a comment, or to the terminating NUL if no such character exists. */ const char * eat_whitespace(const char *s) { tor_assert(s); while (1) { switch (*s) { case '\0': default: return s; case ' ': case '\t': case '\n': case '\r': ++s; break; case '#': ++s; while (*s && *s != '\n') ++s; } } } /** Return a pointer to the first char of s that is not whitespace and * not a comment, or to the terminating NUL if no such character exists. */ const char * eat_whitespace_eos(const char *s, const char *eos) { tor_assert(s); tor_assert(eos && s <= eos); while (s < eos) { switch (*s) { case '\0': default: return s; case ' ': case '\t': case '\n': case '\r': ++s; break; case '#': ++s; while (s < eos && *s && *s != '\n') ++s; } } return s; } /** Return a pointer to the first char of s that is not a space or a tab * or a \\r, or to the terminating NUL if no such character exists. */ const char * eat_whitespace_no_nl(const char *s) { while (*s == ' ' || *s == '\t' || *s == '\r') ++s; return s; } /** As eat_whitespace_no_nl, but stop at eos whether we have * found a non-whitespace character or not. */ const char * eat_whitespace_eos_no_nl(const char *s, const char *eos) { while (s < eos && (*s == ' ' || *s == '\t' || *s == '\r')) ++s; return s; } /** Return a pointer to the first char of s that is whitespace or #, * or to the terminating NUL if no such character exists. */ const char * find_whitespace(const char *s) { /* tor_assert(s); */ while (1) { switch (*s) { case '\0': case '#': case ' ': case '\r': case '\n': case '\t': return s; default: ++s; } } } /** As find_whitespace, but stop at eos whether we have found a * whitespace or not. */ const char * find_whitespace_eos(const char *s, const char *eos) { /* tor_assert(s); */ while (s < eos) { switch (*s) { case '\0': case '#': case ' ': case '\r': case '\n': case '\t': return s; default: ++s; } } return s; } /** Return the first occurrence of needle in haystack that * occurs at the start of a line (that is, at the beginning of haystack * or immediately after a newline). Return NULL if no such string is found. */ const char * find_str_at_start_of_line(const char *haystack, const char *needle) { size_t needle_len = strlen(needle); do { if (!strncmp(haystack, needle, needle_len)) return haystack; haystack = strchr(haystack, '\n'); if (!haystack) return NULL; else ++haystack; } while (*haystack); return NULL; } /** Returns true if string could be a C identifier. A C identifier must begin with a letter or an underscore and the rest of its characters can be letters, numbers or underscores. No length limit is imposed. */ int string_is_C_identifier(const char *string) { size_t iter; size_t length = strlen(string); if (!length) return 0; for (iter = 0; iter < length ; iter++) { if (iter == 0) { if (!(TOR_ISALPHA(string[iter]) || string[iter] == '_')) return 0; } else { if (!(TOR_ISALPHA(string[iter]) || TOR_ISDIGIT(string[iter]) || string[iter] == '_')) return 0; } } return 1; } /** Return true iff the 'len' bytes at 'mem' are all zero. */ int tor_mem_is_zero(const char *mem, size_t len) { static const char ZERO[] = { 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, }; while (len >= sizeof(ZERO)) { /* It's safe to use fast_memcmp here, since the very worst thing an * attacker could learn is how many initial bytes of a secret were zero */ if (fast_memcmp(mem, ZERO, sizeof(ZERO))) return 0; len -= sizeof(ZERO); mem += sizeof(ZERO); } /* Deal with leftover bytes. */ if (len) return fast_memeq(mem, ZERO, len); return 1; } /** Return true iff the DIGEST_LEN bytes in digest are all zero. */ int tor_digest_is_zero(const char *digest) { static const uint8_t ZERO_DIGEST[] = { 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0 }; return tor_memeq(digest, ZERO_DIGEST, DIGEST_LEN); } /** Return true if string is a valid 'key=[value]' string. * "value" is optional, to indicate the empty string. Log at logging * severity if something ugly happens. */ int string_is_key_value(int severity, const char *string) { /* position of equal sign in string */ const char *equal_sign_pos = NULL; tor_assert(string); if (strlen(string) < 2) { /* "x=" is shortest args string */ tor_log(severity, LD_GENERAL, "'%s' is too short to be a k=v value.", escaped(string)); return 0; } equal_sign_pos = strchr(string, '='); if (!equal_sign_pos) { tor_log(severity, LD_GENERAL, "'%s' is not a k=v value.", escaped(string)); return 0; } /* validate that the '=' is not in the beginning of the string. */ if (equal_sign_pos == string) { tor_log(severity, LD_GENERAL, "'%s' is not a valid k=v value.", escaped(string)); return 0; } return 1; } /** Return true if string represents a valid IPv4 adddress in * 'a.b.c.d' form. */ int string_is_valid_ipv4_address(const char *string) { struct in_addr addr; return (tor_inet_pton(AF_INET,string,&addr) == 1); } /** Return true if string represents a valid IPv6 address in * a form that inet_pton() can parse. */ int string_is_valid_ipv6_address(const char *string) { struct in6_addr addr; return (tor_inet_pton(AF_INET6,string,&addr) == 1); } /** Return true iff string matches a pattern of DNS names * that we allow Tor clients to connect to. * * Note: This allows certain technically invalid characters ('_') to cope * with misconfigured zones that have been encountered in the wild. */ int string_is_valid_hostname(const char *string) { int result = 1; smartlist_t *components; components = smartlist_new(); smartlist_split_string(components,string,".",0,0); SMARTLIST_FOREACH_BEGIN(components, char *, c) { if ((c[0] == '-') || (*c == '_')) { result = 0; break; } /* Allow a single terminating '.' used rarely to indicate domains * are FQDNs rather than relative. */ if ((c_sl_idx > 0) && (c_sl_idx + 1 == c_sl_len) && !*c) { continue; } do { if ((*c >= 'a' && *c <= 'z') || (*c >= 'A' && *c <= 'Z') || (*c >= '0' && *c <= '9') || (*c == '-') || (*c == '_')) c++; else result = 0; } while (result && *c); } SMARTLIST_FOREACH_END(c); SMARTLIST_FOREACH_BEGIN(components, char *, c) { tor_free(c); } SMARTLIST_FOREACH_END(c); smartlist_free(components); return result; } /** Return true iff the DIGEST256_LEN bytes in digest are all zero. */ int tor_digest256_is_zero(const char *digest) { return tor_mem_is_zero(digest, DIGEST256_LEN); } /* Helper: common code to check whether the result of a strtol or strtoul or * strtoll is correct. */ #define CHECK_STRTOX_RESULT() \ /* Did an overflow occur? */ \ if (errno == ERANGE) \ goto err; \ /* Was at least one character converted? */ \ if (endptr == s) \ goto err; \ /* Were there unexpected unconverted characters? */ \ if (!next && *endptr) \ goto err; \ /* Is r within limits? */ \ if (r < min || r > max) \ goto err; \ if (ok) *ok = 1; \ if (next) *next = endptr; \ return r; \ err: \ if (ok) *ok = 0; \ if (next) *next = endptr; \ return 0 /** Extract a long from the start of s, in the given numeric * base. If base is 0, s is parsed as a decimal, * octal, or hex number in the syntax of a C integer literal. If * there is unconverted data and next is provided, set * *next to the first unconverted character. An error has * occurred if no characters are converted; or if there are * unconverted characters and next is NULL; or if the parsed * value is not between min and max. When no error * occurs, return the parsed value and set *ok (if provided) to * 1. When an error occurs, return 0 and set *ok (if provided) * to 0. */ long tor_parse_long(const char *s, int base, long min, long max, int *ok, char **next) { char *endptr; long r; if (base < 0) { if (ok) *ok = 0; return 0; } errno = 0; r = strtol(s, &endptr, base); CHECK_STRTOX_RESULT(); } /** As tor_parse_long(), but return an unsigned long. */ unsigned long tor_parse_ulong(const char *s, int base, unsigned long min, unsigned long max, int *ok, char **next) { char *endptr; unsigned long r; if (base < 0) { if (ok) *ok = 0; return 0; } errno = 0; r = strtoul(s, &endptr, base); CHECK_STRTOX_RESULT(); } /** As tor_parse_long(), but return a double. */ double tor_parse_double(const char *s, double min, double max, int *ok, char **next) { char *endptr; double r; errno = 0; r = strtod(s, &endptr); CHECK_STRTOX_RESULT(); } /** As tor_parse_long, but return a uint64_t. Only base 10 is guaranteed to * work for now. */ uint64_t tor_parse_uint64(const char *s, int base, uint64_t min, uint64_t max, int *ok, char **next) { char *endptr; uint64_t r; if (base < 0) { if (ok) *ok = 0; return 0; } errno = 0; #ifdef HAVE_STRTOULL r = (uint64_t)strtoull(s, &endptr, base); #elif defined(_WIN32) #if defined(_MSC_VER) && _MSC_VER < 1300 tor_assert(base <= 10); r = (uint64_t)_atoi64(s); endptr = (char*)s; while (TOR_ISSPACE(*endptr)) endptr++; while (TOR_ISDIGIT(*endptr)) endptr++; #else r = (uint64_t)_strtoui64(s, &endptr, base); #endif #elif SIZEOF_LONG == 8 r = (uint64_t)strtoul(s, &endptr, base); #else #error "I don't know how to parse 64-bit numbers." #endif CHECK_STRTOX_RESULT(); } /** Allocate and return a new string representing the contents of s, * surrounded by quotes and using standard C escapes. * * Generally, we use this for logging values that come in over the network to * keep them from tricking users, and for sending certain values to the * controller. * * We trust values from the resolver, OS, configuration file, and command line * to not be maliciously ill-formed. We validate incoming routerdescs and * SOCKS requests and addresses from BEGIN cells as they're parsed; * afterwards, we trust them as non-malicious. */ char * esc_for_log(const char *s) { const char *cp; char *result, *outp; size_t len = 3; if (!s) { return tor_strdup("(null)"); } for (cp = s; *cp; ++cp) { switch (*cp) { case '\\': case '\"': case '\'': case '\r': case '\n': case '\t': len += 2; break; default: if (TOR_ISPRINT(*cp) && ((uint8_t)*cp)<127) ++len; else len += 4; break; } } tor_assert(len <= SSIZE_MAX); result = outp = tor_malloc(len); *outp++ = '\"'; for (cp = s; *cp; ++cp) { /* This assertion should always succeed, since we will write at least * one char here, and two chars for closing quote and nul later */ tor_assert((outp-result) < (ssize_t)len-2); switch (*cp) { case '\\': case '\"': case '\'': *outp++ = '\\'; *outp++ = *cp; break; case '\n': *outp++ = '\\'; *outp++ = 'n'; break; case '\t': *outp++ = '\\'; *outp++ = 't'; break; case '\r': *outp++ = '\\'; *outp++ = 'r'; break; default: if (TOR_ISPRINT(*cp) && ((uint8_t)*cp)<127) { *outp++ = *cp; } else { tor_assert((outp-result) < (ssize_t)len-4); tor_snprintf(outp, 5, "\\%03o", (int)(uint8_t) *cp); outp += 4; } break; } } tor_assert((outp-result) <= (ssize_t)len-2); *outp++ = '\"'; *outp++ = 0; return result; } /** Similar to esc_for_log. Allocate and return a new string representing * the first n characters in chars, surround by quotes and using * standard C escapes. If a NUL character is encountered in chars, * the resulting string will be terminated there. */ char * esc_for_log_len(const char *chars, size_t n) { char *string = tor_strndup(chars, n); char *string_escaped = esc_for_log(string); tor_free(string); return string_escaped; } /** Allocate and return a new string representing the contents of s, * surrounded by quotes and using standard C escapes. * * THIS FUNCTION IS NOT REENTRANT. Don't call it from outside the main * thread. Also, each call invalidates the last-returned value, so don't * try log_warn(LD_GENERAL, "%s %s", escaped(a), escaped(b)); */ const char * escaped(const char *s) { static char *escaped_val_ = NULL; tor_free(escaped_val_); if (s) escaped_val_ = esc_for_log(s); else escaped_val_ = NULL; return escaped_val_; } /** Return a newly allocated string equal to string, except that every * character in chars_to_escape is preceded by a backslash. */ char * tor_escape_str_for_pt_args(const char *string, const char *chars_to_escape) { char *new_string = NULL; char *new_cp = NULL; size_t length, new_length; tor_assert(string); length = strlen(string); if (!length) /* If we were given the empty string, return the same. */ return tor_strdup(""); /* (new_length > SIZE_MAX) => ((length * 2) + 1 > SIZE_MAX) => (length*2 > SIZE_MAX - 1) => (length > (SIZE_MAX - 1)/2) */ if (length > (SIZE_MAX - 1)/2) /* check for overflow */ return NULL; /* this should be enough even if all characters must be escaped */ new_length = (length * 2) + 1; new_string = new_cp = tor_malloc(new_length); while (*string) { if (strchr(chars_to_escape, *string)) *new_cp++ = '\\'; *new_cp++ = *string++; } *new_cp = '\0'; /* NUL-terminate the new string */ return new_string; } /* ===== * Time * ===== */ /** Return the number of microseconds elapsed between *start and *end. */ long tv_udiff(const struct timeval *start, const struct timeval *end) { long udiff; long secdiff = end->tv_sec - start->tv_sec; if (labs(secdiff+1) > LONG_MAX/1000000) { log_warn(LD_GENERAL, "comparing times on microsecond detail too far " "apart: %ld seconds", secdiff); return LONG_MAX; } udiff = secdiff*1000000L + (end->tv_usec - start->tv_usec); return udiff; } /** Return the number of milliseconds elapsed between *start and *end. */ long tv_mdiff(const struct timeval *start, const struct timeval *end) { long mdiff; long secdiff = end->tv_sec - start->tv_sec; if (labs(secdiff+1) > LONG_MAX/1000) { log_warn(LD_GENERAL, "comparing times on millisecond detail too far " "apart: %ld seconds", secdiff); return LONG_MAX; } /* Subtract and round */ mdiff = secdiff*1000L + ((long)end->tv_usec - (long)start->tv_usec + 500L) / 1000L; return mdiff; } /** * Converts timeval to milliseconds. */ int64_t tv_to_msec(const struct timeval *tv) { int64_t conv = ((int64_t)tv->tv_sec)*1000L; /* Round ghetto-style */ conv += ((int64_t)tv->tv_usec+500)/1000L; return conv; } /** Yield true iff y is a leap-year. */ #define IS_LEAPYEAR(y) (!(y % 4) && ((y % 100) || !(y % 400))) /** Helper: Return the number of leap-days between Jan 1, y1 and Jan 1, y2. */ static int n_leapdays(int y1, int y2) { --y1; --y2; return (y2/4 - y1/4) - (y2/100 - y1/100) + (y2/400 - y1/400); } /** Number of days per month in non-leap year; used by tor_timegm and * parse_rfc1123_time. */ static const int days_per_month[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; /** Compute a time_t given a struct tm. The result is given in UTC, and * does not account for leap seconds. Return 0 on success, -1 on failure. */ int tor_timegm(const struct tm *tm, time_t *time_out) { /* This is a pretty ironclad timegm implementation, snarfed from Python2.2. * It's way more brute-force than fiddling with tzset(). */ time_t year, days, hours, minutes, seconds; int i, invalid_year, dpm; /* avoid int overflow on addition */ if (tm->tm_year < INT32_MAX-1900) { year = tm->tm_year + 1900; } else { /* clamp year */ year = INT32_MAX; } invalid_year = (year < 1970 || tm->tm_year >= INT32_MAX-1900); if (tm->tm_mon >= 0 && tm->tm_mon <= 11) { dpm = days_per_month[tm->tm_mon]; if (tm->tm_mon == 1 && !invalid_year && IS_LEAPYEAR(tm->tm_year)) { dpm = 29; } } else { /* invalid month - default to 0 days per month */ dpm = 0; } if (invalid_year || tm->tm_mon < 0 || tm->tm_mon > 11 || tm->tm_mday < 1 || tm->tm_mday > dpm || tm->tm_hour < 0 || tm->tm_hour > 23 || tm->tm_min < 0 || tm->tm_min > 59 || tm->tm_sec < 0 || tm->tm_sec > 60) { log_warn(LD_BUG, "Out-of-range argument to tor_timegm"); return -1; } days = 365 * (year-1970) + n_leapdays(1970,(int)year); for (i = 0; i < tm->tm_mon; ++i) days += days_per_month[i]; if (tm->tm_mon > 1 && IS_LEAPYEAR(year)) ++days; days += tm->tm_mday - 1; hours = days*24 + tm->tm_hour; minutes = hours*60 + tm->tm_min; seconds = minutes*60 + tm->tm_sec; *time_out = seconds; return 0; } /* strftime is locale-specific, so we need to replace those parts */ /** A c-locale array of 3-letter names of weekdays, starting with Sun. */ static const char *WEEKDAY_NAMES[] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" }; /** A c-locale array of 3-letter names of months, starting with Jan. */ static const char *MONTH_NAMES[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; /** Set buf to the RFC1123 encoding of the UTC value of t. * The buffer must be at least RFC1123_TIME_LEN+1 bytes long. * * (RFC1123 format is "Fri, 29 Sep 2006 15:54:20 GMT". Note the "GMT" * rather than "UTC".) */ void format_rfc1123_time(char *buf, time_t t) { struct tm tm; tor_gmtime_r(&t, &tm); strftime(buf, RFC1123_TIME_LEN+1, "___, %d ___ %Y %H:%M:%S GMT", &tm); tor_assert(tm.tm_wday >= 0); tor_assert(tm.tm_wday <= 6); memcpy(buf, WEEKDAY_NAMES[tm.tm_wday], 3); tor_assert(tm.tm_mon >= 0); tor_assert(tm.tm_mon <= 11); memcpy(buf+8, MONTH_NAMES[tm.tm_mon], 3); } /** Parse the (a subset of) the RFC1123 encoding of some time (in UTC) from * buf, and store the result in *t. * * Note that we only accept the subset generated by format_rfc1123_time above, * not the full range of formats suggested by RFC 1123. * * Return 0 on success, -1 on failure. */ int parse_rfc1123_time(const char *buf, time_t *t) { struct tm tm; char month[4]; char weekday[4]; int i, m, invalid_year; unsigned tm_mday, tm_year, tm_hour, tm_min, tm_sec; unsigned dpm; if (strlen(buf) != RFC1123_TIME_LEN) return -1; memset(&tm, 0, sizeof(tm)); if (tor_sscanf(buf, "%3s, %2u %3s %u %2u:%2u:%2u GMT", weekday, &tm_mday, month, &tm_year, &tm_hour, &tm_min, &tm_sec) < 7) { char *esc = esc_for_log(buf); log_warn(LD_GENERAL, "Got invalid RFC1123 time %s", esc); tor_free(esc); return -1; } m = -1; for (i = 0; i < 12; ++i) { if (!strcmp(month, MONTH_NAMES[i])) { m = i; break; } } if (m<0) { char *esc = esc_for_log(buf); log_warn(LD_GENERAL, "Got invalid RFC1123 time %s: No such month", esc); tor_free(esc); return -1; } tm.tm_mon = m; invalid_year = (tm_year >= INT32_MAX || tm_year < 1970); tor_assert(m >= 0 && m <= 11); dpm = days_per_month[m]; if (m == 1 && !invalid_year && IS_LEAPYEAR(tm_year)) { dpm = 29; } if (invalid_year || tm_mday < 1 || tm_mday > dpm || tm_hour > 23 || tm_min > 59 || tm_sec > 60) { char *esc = esc_for_log(buf); log_warn(LD_GENERAL, "Got invalid RFC1123 time %s", esc); tor_free(esc); return -1; } tm.tm_mday = (int)tm_mday; tm.tm_year = (int)tm_year; tm.tm_hour = (int)tm_hour; tm.tm_min = (int)tm_min; tm.tm_sec = (int)tm_sec; if (tm.tm_year < 1970) { char *esc = esc_for_log(buf); log_warn(LD_GENERAL, "Got invalid RFC1123 time %s. (Before 1970)", esc); tor_free(esc); return -1; } tm.tm_year -= 1900; return tor_timegm(&tm, t); } /** Set buf to the ISO8601 encoding of the local value of t. * The buffer must be at least ISO_TIME_LEN+1 bytes long. * * (ISO8601 format is 2006-10-29 10:57:20) */ void format_local_iso_time(char *buf, time_t t) { struct tm tm; strftime(buf, ISO_TIME_LEN+1, "%Y-%m-%d %H:%M:%S", tor_localtime_r(&t, &tm)); } /** Set buf to the ISO8601 encoding of the GMT value of t. * The buffer must be at least ISO_TIME_LEN+1 bytes long. */ void format_iso_time(char *buf, time_t t) { struct tm tm; strftime(buf, ISO_TIME_LEN+1, "%Y-%m-%d %H:%M:%S", tor_gmtime_r(&t, &tm)); } /** As format_iso_time, but use the yyyy-mm-ddThh:mm:ss format to avoid * embedding an internal space. */ void format_iso_time_nospace(char *buf, time_t t) { format_iso_time(buf, t); buf[10] = 'T'; } /** As format_iso_time_nospace, but include microseconds in decimal * fixed-point format. Requires that buf be at least ISO_TIME_USEC_LEN+1 * bytes long. */ void format_iso_time_nospace_usec(char *buf, const struct timeval *tv) { tor_assert(tv); format_iso_time_nospace(buf, (time_t)tv->tv_sec); tor_snprintf(buf+ISO_TIME_LEN, 8, ".%06d", (int)tv->tv_usec); } /** Given an ISO-formatted UTC time value (after the epoch) in cp, * parse it and store its value in *t. Return 0 on success, -1 on * failure. Ignore extraneous stuff in cp after the end of the time * string, unless strict is set. */ int parse_iso_time_(const char *cp, time_t *t, int strict) { struct tm st_tm; unsigned int year=0, month=0, day=0, hour=0, minute=0, second=0; int n_fields; char extra_char; n_fields = tor_sscanf(cp, "%u-%2u-%2u %2u:%2u:%2u%c", &year, &month, &day, &hour, &minute, &second, &extra_char); if (strict ? (n_fields != 6) : (n_fields < 6)) { char *esc = esc_for_log(cp); log_warn(LD_GENERAL, "ISO time %s was unparseable", esc); tor_free(esc); return -1; } if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 || hour > 23 || minute > 59 || second > 60 || year >= INT32_MAX) { char *esc = esc_for_log(cp); log_warn(LD_GENERAL, "ISO time %s was nonsensical", esc); tor_free(esc); return -1; } st_tm.tm_year = (int)year-1900; st_tm.tm_mon = month-1; st_tm.tm_mday = day; st_tm.tm_hour = hour; st_tm.tm_min = minute; st_tm.tm_sec = second; if (st_tm.tm_year < 70) { char *esc = esc_for_log(cp); log_warn(LD_GENERAL, "Got invalid ISO time %s. (Before 1970)", esc); tor_free(esc); return -1; } return tor_timegm(&st_tm, t); } /** Given an ISO-formatted UTC time value (after the epoch) in cp, * parse it and store its value in *t. Return 0 on success, -1 on * failure. Reject the string if any characters are present after the time. */ int parse_iso_time(const char *cp, time_t *t) { return parse_iso_time_(cp, t, 1); } /** Given a date in one of the three formats allowed by HTTP (ugh), * parse it into tm. Return 0 on success, negative on failure. */ int parse_http_time(const char *date, struct tm *tm) { const char *cp; char month[4]; char wkday[4]; int i; unsigned tm_mday, tm_year, tm_hour, tm_min, tm_sec; tor_assert(tm); memset(tm, 0, sizeof(*tm)); /* First, try RFC1123 or RFC850 format: skip the weekday. */ if ((cp = strchr(date, ','))) { ++cp; if (*cp != ' ') return -1; ++cp; if (tor_sscanf(cp, "%2u %3s %4u %2u:%2u:%2u GMT", &tm_mday, month, &tm_year, &tm_hour, &tm_min, &tm_sec) == 6) { /* rfc1123-date */ tm_year -= 1900; } else if (tor_sscanf(cp, "%2u-%3s-%2u %2u:%2u:%2u GMT", &tm_mday, month, &tm_year, &tm_hour, &tm_min, &tm_sec) == 6) { /* rfc850-date */ } else { return -1; } } else { /* No comma; possibly asctime() format. */ if (tor_sscanf(date, "%3s %3s %2u %2u:%2u:%2u %4u", wkday, month, &tm_mday, &tm_hour, &tm_min, &tm_sec, &tm_year) == 7) { tm_year -= 1900; } else { return -1; } } tm->tm_mday = (int)tm_mday; tm->tm_year = (int)tm_year; tm->tm_hour = (int)tm_hour; tm->tm_min = (int)tm_min; tm->tm_sec = (int)tm_sec; month[3] = '\0'; /* Okay, now decode the month. */ /* set tm->tm_mon to dummy value so the check below fails. */ tm->tm_mon = -1; for (i = 0; i < 12; ++i) { if (!strcasecmp(MONTH_NAMES[i], month)) { tm->tm_mon = i; } } if (tm->tm_year < 0 || tm->tm_mon < 0 || tm->tm_mon > 11 || tm->tm_mday < 1 || tm->tm_mday > 31 || tm->tm_hour < 0 || tm->tm_hour > 23 || tm->tm_min < 0 || tm->tm_min > 59 || tm->tm_sec < 0 || tm->tm_sec > 60) return -1; /* Out of range, or bad month. */ return 0; } /** Given an interval in seconds, try to write it to the * out_len-byte buffer in out in a human-readable form. * Return 0 on success, -1 on failure. */ int format_time_interval(char *out, size_t out_len, long interval) { /* We only report seconds if there's no hours. */ long sec = 0, min = 0, hour = 0, day = 0; /* -LONG_MIN is LONG_MAX + 1, which causes signed overflow */ if (interval < -LONG_MAX) interval = LONG_MAX; else if (interval < 0) interval = -interval; if (interval >= 86400) { day = interval / 86400; interval %= 86400; } if (interval >= 3600) { hour = interval / 3600; interval %= 3600; } if (interval >= 60) { min = interval / 60; interval %= 60; } sec = interval; if (day) { return tor_snprintf(out, out_len, "%ld days, %ld hours, %ld minutes", day, hour, min); } else if (hour) { return tor_snprintf(out, out_len, "%ld hours, %ld minutes", hour, min); } else if (min) { return tor_snprintf(out, out_len, "%ld minutes, %ld seconds", min, sec); } else { return tor_snprintf(out, out_len, "%ld seconds", sec); } } /* ===== * Cached time * ===== */ #ifndef TIME_IS_FAST /** Cached estimate of the current time. Updated around once per second; * may be a few seconds off if we are really busy. This is a hack to avoid * calling time(NULL) (which not everybody has optimized) on critical paths. */ static time_t cached_approx_time = 0; /** Return a cached estimate of the current time from when * update_approx_time() was last called. This is a hack to avoid calling * time(NULL) on critical paths: please do not even think of calling it * anywhere else. */ time_t approx_time(void) { return cached_approx_time; } /** Update the cached estimate of the current time. This function SHOULD be * called once per second, and MUST be called before the first call to * get_approx_time. */ void update_approx_time(time_t now) { cached_approx_time = now; } #endif /* ===== * Rate limiting * ===== */ /** If the rate-limiter lim is ready at now, return the number * of calls to rate_limit_is_ready (including this one!) since the last time * rate_limit_is_ready returned nonzero. Otherwise return 0. */ static int rate_limit_is_ready(ratelim_t *lim, time_t now) { if (lim->rate + lim->last_allowed <= now) { int res = lim->n_calls_since_last_time + 1; lim->last_allowed = now; lim->n_calls_since_last_time = 0; return res; } else { ++lim->n_calls_since_last_time; return 0; } } /** If the rate-limiter lim is ready at now, return a newly * allocated string indicating how many messages were suppressed, suitable to * append to a log message. Otherwise return NULL. */ char * rate_limit_log(ratelim_t *lim, time_t now) { int n; if ((n = rate_limit_is_ready(lim, now))) { if (n == 1) { return tor_strdup(""); } else { char *cp=NULL; tor_asprintf(&cp, " [%d similar message(s) suppressed in last %d seconds]", n-1, lim->rate); return cp; } } else { return NULL; } } /* ===== * File helpers * ===== */ /** Write count bytes from buf to fd. isSocket * must be 1 if fd was returned by socket() or accept(), and 0 if fd * was returned by open(). Return the number of bytes written, or -1 * on error. Only use if fd is a blocking fd. */ ssize_t write_all(tor_socket_t fd, const char *buf, size_t count, int isSocket) { size_t written = 0; ssize_t result; tor_assert(count < SSIZE_MAX); while (written != count) { if (isSocket) result = tor_socket_send(fd, buf+written, count-written, 0); else result = write((int)fd, buf+written, count-written); if (result<0) return -1; written += result; } return (ssize_t)count; } /** Read from fd to buf, until we get count bytes * or reach the end of the file. isSocket must be 1 if fd * was returned by socket() or accept(), and 0 if fd was returned by * open(). Return the number of bytes read, or -1 on error. Only use * if fd is a blocking fd. */ ssize_t read_all(tor_socket_t fd, char *buf, size_t count, int isSocket) { size_t numread = 0; ssize_t result; if (count > SIZE_T_CEILING || count > SSIZE_MAX) { errno = EINVAL; return -1; } while (numread != count) { if (isSocket) result = tor_socket_recv(fd, buf+numread, count-numread, 0); else result = read((int)fd, buf+numread, count-numread); if (result<0) return -1; else if (result == 0) break; numread += result; } return (ssize_t)numread; } /* * Filesystem operations. */ /** Clean up name so that we can use it in a call to "stat". On Unix, * we do nothing. On Windows, we remove a trailing slash, unless the path is * the root of a disk. */ static void clean_name_for_stat(char *name) { #ifdef _WIN32 size_t len = strlen(name); if (!len) return; if (name[len-1]=='\\' || name[len-1]=='/') { if (len == 1 || (len==3 && name[1]==':')) return; name[len-1]='\0'; } #else (void)name; #endif } /** Return: * FN_ERROR if filename can't be read, is NULL, or is zero-length, * FN_NOENT if it doesn't exist, * FN_FILE if it is a non-empty regular file, or a FIFO on unix-like systems, * FN_EMPTY for zero-byte regular files, * FN_DIR if it's a directory, and * FN_ERROR for any other file type. * On FN_ERROR and FN_NOENT, sets errno. (errno is not set when FN_ERROR * is returned due to an unhandled file type.) */ file_status_t file_status(const char *fname) { struct stat st; char *f; int r; if (!fname || strlen(fname) == 0) { return FN_ERROR; } f = tor_strdup(fname); clean_name_for_stat(f); log_debug(LD_FS, "stat()ing %s", f); r = stat(sandbox_intern_string(f), &st); tor_free(f); if (r) { if (errno == ENOENT) { return FN_NOENT; } return FN_ERROR; } if (st.st_mode & S_IFDIR) { return FN_DIR; } else if (st.st_mode & S_IFREG) { if (st.st_size > 0) { return FN_FILE; } else if (st.st_size == 0) { return FN_EMPTY; } else { return FN_ERROR; } #ifndef _WIN32 } else if (st.st_mode & S_IFIFO) { return FN_FILE; #endif } else { return FN_ERROR; } } /** Check whether dirname exists and is private. If yes return 0. If * it does not exist, and check&CPD_CREATE is set, try to create it * and return 0 on success. If it does not exist, and * check&CPD_CHECK, and we think we can create it, return 0. Else * return -1. If CPD_GROUP_OK is set, then it's okay if the directory * is group-readable, but in all cases we create the directory mode 0700. * If CPD_GROUP_READ is set, existing directory behaves as CPD_GROUP_OK and * if the directory is created it will use mode 0750 with group read * permission. Group read privileges also assume execute permission * as norm for directories. If CPD_CHECK_MODE_ONLY is set, then we don't * alter the directory permissions if they are too permissive: * we just return -1. * When effective_user is not NULL, check permissions against the given user * and its primary group. */ int check_private_dir(const char *dirname, cpd_check_t check, const char *effective_user) { int r; struct stat st; char *f; #ifndef _WIN32 unsigned unwanted_bits = 0; const struct passwd *pw = NULL; uid_t running_uid; gid_t running_gid; #else (void)effective_user; #endif tor_assert(dirname); f = tor_strdup(dirname); clean_name_for_stat(f); log_debug(LD_FS, "stat()ing %s", f); r = stat(sandbox_intern_string(f), &st); tor_free(f); if (r) { if (errno != ENOENT) { log_warn(LD_FS, "Directory %s cannot be read: %s", dirname, strerror(errno)); return -1; } if (check & CPD_CREATE) { log_info(LD_GENERAL, "Creating directory %s", dirname); #if defined (_WIN32) r = mkdir(dirname); #else if (check & CPD_GROUP_READ) { r = mkdir(dirname, 0750); } else { r = mkdir(dirname, 0700); } #endif if (r) { log_warn(LD_FS, "Error creating directory %s: %s", dirname, strerror(errno)); return -1; } } else if (!(check & CPD_CHECK)) { log_warn(LD_FS, "Directory %s does not exist.", dirname); return -1; } /* XXXX In the case where check==CPD_CHECK, we should look at the * parent directory a little harder. */ return 0; } if (!(st.st_mode & S_IFDIR)) { log_warn(LD_FS, "%s is not a directory", dirname); return -1; } #ifndef _WIN32 if (effective_user) { /* Look up the user and group information. * If we have a problem, bail out. */ pw = tor_getpwnam(effective_user); if (pw == NULL) { log_warn(LD_CONFIG, "Error setting configured user: %s not found", effective_user); return -1; } running_uid = pw->pw_uid; running_gid = pw->pw_gid; } else { running_uid = getuid(); running_gid = getgid(); } if (st.st_uid != running_uid) { const struct passwd *pw = NULL; char *process_ownername = NULL; pw = tor_getpwuid(running_uid); process_ownername = pw ? tor_strdup(pw->pw_name) : tor_strdup(""); pw = tor_getpwuid(st.st_uid); log_warn(LD_FS, "%s is not owned by this user (%s, %d) but by " "%s (%d). Perhaps you are running Tor as the wrong user?", dirname, process_ownername, (int)running_uid, pw ? pw->pw_name : "", (int)st.st_uid); tor_free(process_ownername); return -1; } if ( (check & (CPD_GROUP_OK|CPD_GROUP_READ)) && (st.st_gid != running_gid) ) { struct group *gr; char *process_groupname = NULL; gr = getgrgid(running_gid); process_groupname = gr ? tor_strdup(gr->gr_name) : tor_strdup(""); gr = getgrgid(st.st_gid); log_warn(LD_FS, "%s is not owned by this group (%s, %d) but by group " "%s (%d). Are you running Tor as the wrong user?", dirname, process_groupname, (int)running_gid, gr ? gr->gr_name : "", (int)st.st_gid); tor_free(process_groupname); return -1; } if (check & (CPD_GROUP_OK|CPD_GROUP_READ)) { unwanted_bits = 0027; } else { unwanted_bits = 0077; } if ((st.st_mode & unwanted_bits) != 0) { unsigned new_mode; if (check & CPD_CHECK_MODE_ONLY) { log_warn(LD_FS, "Permissions on directory %s are too permissive.", dirname); return -1; } log_warn(LD_FS, "Fixing permissions on directory %s", dirname); new_mode = st.st_mode; new_mode |= 0700; /* Owner should have rwx */ if (check & CPD_GROUP_READ) { new_mode |= 0050; /* Group should have rx */ } new_mode &= ~unwanted_bits; /* Clear the bits that we didn't want set...*/ if (chmod(dirname, new_mode)) { log_warn(LD_FS, "Could not chmod directory %s: %s", dirname, strerror(errno)); return -1; } else { return 0; } } #endif return 0; } /** Create a file named fname with the contents str. Overwrite * the previous fname if possible. Return 0 on success, -1 on failure. * * This function replaces the old file atomically, if possible. This * function, and all other functions in util.c that create files, create them * with mode 0600. */ int write_str_to_file(const char *fname, const char *str, int bin) { #ifdef _WIN32 if (!bin && strchr(str, '\r')) { log_warn(LD_BUG, "We're writing a text string that already contains a CR to %s", escaped(fname)); } #endif return write_bytes_to_file(fname, str, strlen(str), bin); } /** Represents a file that we're writing to, with support for atomic commit: * we can write into a temporary file, and either remove the file on * failure, or replace the original file on success. */ struct open_file_t { char *tempname; /**< Name of the temporary file. */ char *filename; /**< Name of the original file. */ unsigned rename_on_close:1; /**< Are we using the temporary file or not? */ unsigned binary:1; /**< Did we open in binary mode? */ int fd; /**< fd for the open file. */ FILE *stdio_file; /**< stdio wrapper for fd. */ }; /** Try to start writing to the file in fname, passing the flags * open_flags to the open() syscall, creating the file (if needed) with * access value mode. If the O_APPEND flag is set, we append to the * original file. Otherwise, we open a new temporary file in the same * directory, and either replace the original or remove the temporary file * when we're done. * * Return the fd for the newly opened file, and store working data in * *data_out. The caller should not close the fd manually: * instead, call finish_writing_to_file() or abort_writing_to_file(). * Returns -1 on failure. * * NOTE: When not appending, the flags O_CREAT and O_TRUNC are treated * as true and the flag O_EXCL is treated as false. * * NOTE: Ordinarily, O_APPEND means "seek to the end of the file before each * write()". We don't do that. */ int start_writing_to_file(const char *fname, int open_flags, int mode, open_file_t **data_out) { open_file_t *new_file = tor_malloc_zero(sizeof(open_file_t)); const char *open_name; int append = 0; tor_assert(fname); tor_assert(data_out); #if (O_BINARY != 0 && O_TEXT != 0) tor_assert((open_flags & (O_BINARY|O_TEXT)) != 0); #endif new_file->fd = -1; new_file->filename = tor_strdup(fname); if (open_flags & O_APPEND) { open_name = fname; new_file->rename_on_close = 0; append = 1; open_flags &= ~O_APPEND; } else { tor_asprintf(&new_file->tempname, "%s.tmp", fname); open_name = new_file->tempname; /* We always replace an existing temporary file if there is one. */ open_flags |= O_CREAT|O_TRUNC; open_flags &= ~O_EXCL; new_file->rename_on_close = 1; } #if O_BINARY != 0 if (open_flags & O_BINARY) new_file->binary = 1; #endif new_file->fd = tor_open_cloexec(open_name, open_flags, mode); if (new_file->fd < 0) { log_warn(LD_FS, "Couldn't open \"%s\" (%s) for writing: %s", open_name, fname, strerror(errno)); goto err; } if (append) { if (tor_fd_seekend(new_file->fd) < 0) { log_warn(LD_FS, "Couldn't seek to end of file \"%s\": %s", open_name, strerror(errno)); goto err; } } *data_out = new_file; return new_file->fd; err: if (new_file->fd >= 0) close(new_file->fd); *data_out = NULL; tor_free(new_file->filename); tor_free(new_file->tempname); tor_free(new_file); return -1; } /** Given file_data from start_writing_to_file(), return a stdio FILE* * that can be used to write to the same file. The caller should not mix * stdio calls with non-stdio calls. */ FILE * fdopen_file(open_file_t *file_data) { tor_assert(file_data); if (file_data->stdio_file) return file_data->stdio_file; tor_assert(file_data->fd >= 0); if (!(file_data->stdio_file = fdopen(file_data->fd, file_data->binary?"ab":"a"))) { log_warn(LD_FS, "Couldn't fdopen \"%s\" [%d]: %s", file_data->filename, file_data->fd, strerror(errno)); } return file_data->stdio_file; } /** Combines start_writing_to_file with fdopen_file(): arguments are as * for start_writing_to_file, but */ FILE * start_writing_to_stdio_file(const char *fname, int open_flags, int mode, open_file_t **data_out) { FILE *res; if (start_writing_to_file(fname, open_flags, mode, data_out)<0) return NULL; if (!(res = fdopen_file(*data_out))) { abort_writing_to_file(*data_out); *data_out = NULL; } return res; } /** Helper function: close and free the underlying file and memory in * file_data. If we were writing into a temporary file, then delete * that file (if abort_write is true) or replaces the target file with * the temporary file (if abort_write is false). */ static int finish_writing_to_file_impl(open_file_t *file_data, int abort_write) { int r = 0; tor_assert(file_data && file_data->filename); if (file_data->stdio_file) { if (fclose(file_data->stdio_file)) { log_warn(LD_FS, "Error closing \"%s\": %s", file_data->filename, strerror(errno)); abort_write = r = -1; } } else if (file_data->fd >= 0 && close(file_data->fd) < 0) { log_warn(LD_FS, "Error flushing \"%s\": %s", file_data->filename, strerror(errno)); abort_write = r = -1; } if (file_data->rename_on_close) { tor_assert(file_data->tempname && file_data->filename); if (abort_write) { int res = unlink(file_data->tempname); if (res != 0) { /* We couldn't unlink and we'll leave a mess behind */ log_warn(LD_FS, "Failed to unlink %s: %s", file_data->tempname, strerror(errno)); r = -1; } } else { tor_assert(strcmp(file_data->filename, file_data->tempname)); if (replace_file(file_data->tempname, file_data->filename)) { log_warn(LD_FS, "Error replacing \"%s\": %s", file_data->filename, strerror(errno)); r = -1; } } } tor_free(file_data->filename); tor_free(file_data->tempname); tor_free(file_data); return r; } /** Finish writing to file_data: close the file handle, free memory as * needed, and if using a temporary file, replace the original file with * the temporary file. */ int finish_writing_to_file(open_file_t *file_data) { return finish_writing_to_file_impl(file_data, 0); } /** Finish writing to file_data: close the file handle, free memory as * needed, and if using a temporary file, delete it. */ int abort_writing_to_file(open_file_t *file_data) { return finish_writing_to_file_impl(file_data, 1); } /** Helper: given a set of flags as passed to open(2), open the file * fname and write all the sized_chunk_t structs in chunks to * the file. Do so as atomically as possible e.g. by opening temp files and * renaming. */ static int write_chunks_to_file_impl(const char *fname, const smartlist_t *chunks, int open_flags) { open_file_t *file = NULL; int fd; ssize_t result; fd = start_writing_to_file(fname, open_flags, 0600, &file); if (fd<0) return -1; SMARTLIST_FOREACH(chunks, sized_chunk_t *, chunk, { result = write_all(fd, chunk->bytes, chunk->len, 0); if (result < 0) { log_warn(LD_FS, "Error writing to \"%s\": %s", fname, strerror(errno)); goto err; } tor_assert((size_t)result == chunk->len); }); return finish_writing_to_file(file); err: abort_writing_to_file(file); return -1; } /** Given a smartlist of sized_chunk_t, write them to a file * fname, overwriting or creating the file as necessary. * If no_tempfile is 0 then the file will be written * atomically. */ int write_chunks_to_file(const char *fname, const smartlist_t *chunks, int bin, int no_tempfile) { int flags = OPEN_FLAGS_REPLACE|(bin?O_BINARY:O_TEXT); if (no_tempfile) { /* O_APPEND stops write_chunks_to_file from using tempfiles */ flags |= O_APPEND; } return write_chunks_to_file_impl(fname, chunks, flags); } /** Write len bytes, starting at str, to fname using the open() flags passed in flags. */ static int write_bytes_to_file_impl(const char *fname, const char *str, size_t len, int flags) { int r; sized_chunk_t c = { str, len }; smartlist_t *chunks = smartlist_new(); smartlist_add(chunks, &c); r = write_chunks_to_file_impl(fname, chunks, flags); smartlist_free(chunks); return r; } /** As write_str_to_file, but does not assume a NUL-terminated * string. Instead, we write len bytes, starting at str. */ MOCK_IMPL(int, write_bytes_to_file,(const char *fname, const char *str, size_t len, int bin)) { return write_bytes_to_file_impl(fname, str, len, OPEN_FLAGS_REPLACE|(bin?O_BINARY:O_TEXT)); } /** As write_bytes_to_file, but if the file already exists, append the bytes * to the end of the file instead of overwriting it. */ int append_bytes_to_file(const char *fname, const char *str, size_t len, int bin) { return write_bytes_to_file_impl(fname, str, len, OPEN_FLAGS_APPEND|(bin?O_BINARY:O_TEXT)); } /** Like write_str_to_file(), but also return -1 if there was a file already residing in fname. */ int write_bytes_to_new_file(const char *fname, const char *str, size_t len, int bin) { return write_bytes_to_file_impl(fname, str, len, OPEN_FLAGS_DONT_REPLACE| (bin?O_BINARY:O_TEXT)); } /** * Read the contents of the open file fd presuming it is a FIFO * (or similar) file descriptor for which the size of the file isn't * known ahead of time. Return NULL on failure, and a NUL-terminated * string on success. On success, set sz_out to the number of * bytes read. */ char * read_file_to_str_until_eof(int fd, size_t max_bytes_to_read, size_t *sz_out) { ssize_t r; size_t pos = 0; char *string = NULL; size_t string_max = 0; if (max_bytes_to_read+1 >= SIZE_T_CEILING) { errno = EINVAL; return NULL; } do { /* XXXX This "add 1K" approach is a little goofy; if we care about * performance here, we should be doubling. But in practice we shouldn't * be using this function on big files anyway. */ string_max = pos + 1024; if (string_max > max_bytes_to_read) string_max = max_bytes_to_read + 1; string = tor_realloc(string, string_max); r = read(fd, string + pos, string_max - pos - 1); if (r < 0) { int save_errno = errno; tor_free(string); errno = save_errno; return NULL; } pos += r; } while (r > 0 && pos < max_bytes_to_read); tor_assert(pos < string_max); *sz_out = pos; string[pos] = '\0'; return string; } /** Read the contents of filename into a newly allocated * string; return the string on success or NULL on failure. * * If stat_out is provided, store the result of stat()ing the * file into stat_out. * * If flags & RFTS_BIN, open the file in binary mode. * If flags & RFTS_IGNORE_MISSING, don't warn if the file * doesn't exist. */ /* * This function may return an erroneous result if the file * is modified while it is running, but must not crash or overflow. * Right now, the error case occurs when the file length grows between * the call to stat and the call to read_all: the resulting string will * be truncated. */ char * read_file_to_str(const char *filename, int flags, struct stat *stat_out) { int fd; /* router file */ struct stat statbuf; char *string; ssize_t r; int bin = flags & RFTS_BIN; tor_assert(filename); fd = tor_open_cloexec(filename,O_RDONLY|(bin?O_BINARY:O_TEXT),0); if (fd<0) { int severity = LOG_WARN; int save_errno = errno; if (errno == ENOENT && (flags & RFTS_IGNORE_MISSING)) severity = LOG_INFO; log_fn(severity, LD_FS,"Could not open \"%s\": %s",filename, strerror(errno)); errno = save_errno; return NULL; } if (fstat(fd, &statbuf)<0) { int save_errno = errno; close(fd); log_warn(LD_FS,"Could not fstat \"%s\".",filename); errno = save_errno; return NULL; } #ifndef _WIN32 /** When we detect that we're reading from a FIFO, don't read more than * this many bytes. It's insane overkill for most uses. */ #define FIFO_READ_MAX (1024*1024) if (S_ISFIFO(statbuf.st_mode)) { size_t sz = 0; string = read_file_to_str_until_eof(fd, FIFO_READ_MAX, &sz); int save_errno = errno; if (string && stat_out) { statbuf.st_size = sz; memcpy(stat_out, &statbuf, sizeof(struct stat)); } close(fd); if (!string) errno = save_errno; return string; } #endif if ((uint64_t)(statbuf.st_size)+1 >= SIZE_T_CEILING) { close(fd); errno = EINVAL; return NULL; } string = tor_malloc((size_t)(statbuf.st_size+1)); r = read_all(fd,string,(size_t)statbuf.st_size,0); if (r<0) { int save_errno = errno; log_warn(LD_FS,"Error reading from file \"%s\": %s", filename, strerror(errno)); tor_free(string); close(fd); errno = save_errno; return NULL; } string[r] = '\0'; /* NUL-terminate the result. */ #if defined(_WIN32) || defined(__CYGWIN__) if (!bin && strchr(string, '\r')) { log_debug(LD_FS, "We didn't convert CRLF to LF as well as we hoped " "when reading %s. Coping.", filename); tor_strstrip(string, "\r"); r = strlen(string); } if (!bin) { statbuf.st_size = (size_t) r; } else #endif if (r != statbuf.st_size) { /* Unless we're using text mode on win32, we'd better have an exact * match for size. */ int save_errno = errno; log_warn(LD_FS,"Could read only %d of %ld bytes of file \"%s\".", (int)r, (long)statbuf.st_size,filename); tor_free(string); close(fd); errno = save_errno; return NULL; } close(fd); if (stat_out) { memcpy(stat_out, &statbuf, sizeof(struct stat)); } return string; } #define TOR_ISODIGIT(c) ('0' <= (c) && (c) <= '7') /** Given a c-style double-quoted escaped string in s, extract and * decode its contents into a newly allocated string. On success, assign this * string to *result, assign its length to size_out (if * provided), and return a pointer to the position in s immediately * after the string. On failure, return NULL. */ static const char * unescape_string(const char *s, char **result, size_t *size_out) { const char *cp; char *out; if (s[0] != '\"') return NULL; cp = s+1; while (1) { switch (*cp) { case '\0': case '\n': return NULL; case '\"': goto end_of_loop; case '\\': if (cp[1] == 'x' || cp[1] == 'X') { if (!(TOR_ISXDIGIT(cp[2]) && TOR_ISXDIGIT(cp[3]))) return NULL; cp += 4; } else if (TOR_ISODIGIT(cp[1])) { cp += 2; if (TOR_ISODIGIT(*cp)) ++cp; if (TOR_ISODIGIT(*cp)) ++cp; } else if (cp[1] == 'n' || cp[1] == 'r' || cp[1] == 't' || cp[1] == '"' || cp[1] == '\\' || cp[1] == '\'') { cp += 2; } else { return NULL; } break; default: ++cp; break; } } end_of_loop: out = *result = tor_malloc(cp-s + 1); cp = s+1; while (1) { switch (*cp) { case '\"': *out = '\0'; if (size_out) *size_out = out - *result; return cp+1; case '\0': tor_fragile_assert(); tor_free(*result); return NULL; case '\\': switch (cp[1]) { case 'n': *out++ = '\n'; cp += 2; break; case 'r': *out++ = '\r'; cp += 2; break; case 't': *out++ = '\t'; cp += 2; break; case 'x': case 'X': { int x1, x2; x1 = hex_decode_digit(cp[2]); x2 = hex_decode_digit(cp[3]); if (x1 == -1 || x2 == -1) { tor_free(*result); return NULL; } *out++ = ((x1<<4) + x2); cp += 4; } break; case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': { int n = cp[1]-'0'; cp += 2; if (TOR_ISODIGIT(*cp)) { n = n*8 + *cp-'0'; cp++; } if (TOR_ISODIGIT(*cp)) { n = n*8 + *cp-'0'; cp++; } if (n > 255) { tor_free(*result); return NULL; } *out++ = (char)n; } break; case '\'': case '\"': case '\\': case '\?': *out++ = cp[1]; cp += 2; break; default: tor_free(*result); return NULL; } break; default: *out++ = *cp++; } } } /** Given a string containing part of a configuration file or similar format, * advance past comments and whitespace and try to parse a single line. If we * parse a line successfully, set *key_out to a new string holding the * key portion and *value_out to a new string holding the value portion * of the line, and return a pointer to the start of the next line. If we run * out of data, return a pointer to the end of the string. If we encounter an * error, return NULL and set *err_out (if provided) to an error * message. */ const char * parse_config_line_from_str_verbose(const char *line, char **key_out, char **value_out, const char **err_out) { /* See torrc_format.txt for a description of the (silly) format this parses. */ const char *key, *val, *cp; int continuation = 0; tor_assert(key_out); tor_assert(value_out); *key_out = *value_out = NULL; key = val = NULL; /* Skip until the first keyword. */ while (1) { while (TOR_ISSPACE(*line)) ++line; if (*line == '#') { while (*line && *line != '\n') ++line; } else { break; } } if (!*line) { /* End of string? */ *key_out = *value_out = NULL; return line; } /* Skip until the next space or \ followed by newline. */ key = line; while (*line && !TOR_ISSPACE(*line) && *line != '#' && ! (line[0] == '\\' && line[1] == '\n')) ++line; *key_out = tor_strndup(key, line-key); /* Skip until the value. */ while (*line == ' ' || *line == '\t') ++line; val = line; /* Find the end of the line. */ if (*line == '\"') { // XXX No continuation handling is done here if (!(line = unescape_string(line, value_out, NULL))) { if (err_out) *err_out = "Invalid escape sequence in quoted string"; return NULL; } while (*line == ' ' || *line == '\t') ++line; if (*line && *line != '#' && *line != '\n') { if (err_out) *err_out = "Excess data after quoted string"; return NULL; } } else { /* Look for the end of the line. */ while (*line && *line != '\n' && (*line != '#' || continuation)) { if (*line == '\\' && line[1] == '\n') { continuation = 1; line += 2; } else if (*line == '#') { do { ++line; } while (*line && *line != '\n'); if (*line == '\n') ++line; } else { ++line; } } if (*line == '\n') { cp = line++; } else { cp = line; } /* Now back cp up to be the last nonspace character */ while (cp>val && TOR_ISSPACE(*(cp-1))) --cp; tor_assert(cp >= val); /* Now copy out and decode the value. */ *value_out = tor_strndup(val, cp-val); if (continuation) { char *v_out, *v_in; v_out = v_in = *value_out; while (*v_in) { if (*v_in == '#') { do { ++v_in; } while (*v_in && *v_in != '\n'); if (*v_in == '\n') ++v_in; } else if (v_in[0] == '\\' && v_in[1] == '\n') { v_in += 2; } else { *v_out++ = *v_in++; } } *v_out = '\0'; } } if (*line == '#') { do { ++line; } while (*line && *line != '\n'); } while (TOR_ISSPACE(*line)) ++line; return line; } /** Expand any homedir prefix on filename; return a newly allocated * string. */ char * expand_filename(const char *filename) { tor_assert(filename); #ifdef _WIN32 return tor_strdup(filename); #else if (*filename == '~') { char *home, *result=NULL; const char *rest; if (filename[1] == '/' || filename[1] == '\0') { home = getenv("HOME"); if (!home) { log_warn(LD_CONFIG, "Couldn't find $HOME environment variable while " "expanding \"%s\"; defaulting to \"\".", filename); home = tor_strdup(""); } else { home = tor_strdup(home); } rest = strlen(filename)>=2?(filename+2):""; } else { #ifdef HAVE_PWD_H char *username, *slash; slash = strchr(filename, '/'); if (slash) username = tor_strndup(filename+1,slash-filename-1); else username = tor_strdup(filename+1); if (!(home = get_user_homedir(username))) { log_warn(LD_CONFIG,"Couldn't get homedir for \"%s\"",username); tor_free(username); return NULL; } tor_free(username); rest = slash ? (slash+1) : ""; #else log_warn(LD_CONFIG, "Couldn't expand homedir on system without pwd.h"); return tor_strdup(filename); #endif } tor_assert(home); /* Remove trailing slash. */ if (strlen(home)>1 && !strcmpend(home,PATH_SEPARATOR)) { home[strlen(home)-1] = '\0'; } tor_asprintf(&result,"%s"PATH_SEPARATOR"%s",home,rest); tor_free(home); return result; } else { return tor_strdup(filename); } #endif } #define MAX_SCANF_WIDTH 9999 /** Helper: given an ASCII-encoded decimal digit, return its numeric value. * NOTE: requires that its input be in-bounds. */ static int digit_to_num(char d) { int num = ((int)d) - (int)'0'; tor_assert(num <= 9 && num >= 0); return num; } /** Helper: Read an unsigned int from *bufp of up to width * characters. (Handle arbitrary width if width is less than 0.) On * success, store the result in out, advance bufp to the next * character, and return 0. On failure, return -1. */ static int scan_unsigned(const char **bufp, unsigned long *out, int width, int base) { unsigned long result = 0; int scanned_so_far = 0; const int hex = base==16; tor_assert(base == 10 || base == 16); if (!bufp || !*bufp || !out) return -1; if (width<0) width=MAX_SCANF_WIDTH; while (**bufp && (hex?TOR_ISXDIGIT(**bufp):TOR_ISDIGIT(**bufp)) && scanned_so_far < width) { int digit = hex?hex_decode_digit(*(*bufp)++):digit_to_num(*(*bufp)++); // Check for overflow beforehand, without actually causing any overflow // This preserves functionality on compilers that don't wrap overflow // (i.e. that trap or optimise away overflow) // result * base + digit > ULONG_MAX // result * base > ULONG_MAX - digit if (result > (ULONG_MAX - digit)/base) return -1; /* Processing this digit would overflow */ result = result * base + digit; ++scanned_so_far; } if (!scanned_so_far) /* No actual digits scanned */ return -1; *out = result; return 0; } /** Helper: Read an signed int from *bufp of up to width * characters. (Handle arbitrary width if width is less than 0.) On * success, store the result in out, advance bufp to the next * character, and return 0. On failure, return -1. */ static int scan_signed(const char **bufp, long *out, int width) { int neg = 0; unsigned long result = 0; if (!bufp || !*bufp || !out) return -1; if (width<0) width=MAX_SCANF_WIDTH; if (**bufp == '-') { neg = 1; ++*bufp; --width; } if (scan_unsigned(bufp, &result, width, 10) < 0) return -1; if (neg && result > 0) { if (result > ((unsigned long)LONG_MAX) + 1) return -1; /* Underflow */ // Avoid overflow on the cast to signed long when result is LONG_MIN // by subtracting 1 from the unsigned long positive value, // then, after it has been cast to signed and negated, // subtracting the original 1 (the double-subtraction is intentional). // Otherwise, the cast to signed could cause a temporary long // to equal LONG_MAX + 1, which is undefined. // We avoid underflow on the subtraction by treating -0 as positive. *out = (-(long)(result - 1)) - 1; } else { if (result > LONG_MAX) return -1; /* Overflow */ *out = (long)result; } return 0; } /** Helper: Read a decimal-formatted double from *bufp of up to * width characters. (Handle arbitrary width if width is less * than 0.) On success, store the result in out, advance bufp to the * next character, and return 0. On failure, return -1. */ static int scan_double(const char **bufp, double *out, int width) { int neg = 0; double result = 0; int scanned_so_far = 0; if (!bufp || !*bufp || !out) return -1; if (width<0) width=MAX_SCANF_WIDTH; if (**bufp == '-') { neg = 1; ++*bufp; } while (**bufp && TOR_ISDIGIT(**bufp) && scanned_so_far < width) { const int digit = digit_to_num(*(*bufp)++); result = result * 10 + digit; ++scanned_so_far; } if (**bufp == '.') { double fracval = 0, denominator = 1; ++*bufp; ++scanned_so_far; while (**bufp && TOR_ISDIGIT(**bufp) && scanned_so_far < width) { const int digit = digit_to_num(*(*bufp)++); fracval = fracval * 10 + digit; denominator *= 10; ++scanned_so_far; } result += fracval / denominator; } if (!scanned_so_far) /* No actual digits scanned */ return -1; *out = neg ? -result : result; return 0; } /** Helper: copy up to width non-space characters from bufp to * out. Make sure out is nul-terminated. Advance bufp * to the next non-space character or the EOS. */ static int scan_string(const char **bufp, char *out, int width) { int scanned_so_far = 0; if (!bufp || !out || width < 0) return -1; while (**bufp && ! TOR_ISSPACE(**bufp) && scanned_so_far < width) { *out++ = *(*bufp)++; ++scanned_so_far; } *out = '\0'; return 0; } /** Locale-independent, minimal, no-surprises scanf variant, accepting only a * restricted pattern format. For more info on what it supports, see * tor_sscanf() documentation. */ int tor_vsscanf(const char *buf, const char *pattern, va_list ap) { int n_matched = 0; while (*pattern) { if (*pattern != '%') { if (*buf == *pattern) { ++buf; ++pattern; continue; } else { return n_matched; } } else { int width = -1; int longmod = 0; ++pattern; if (TOR_ISDIGIT(*pattern)) { width = digit_to_num(*pattern++); while (TOR_ISDIGIT(*pattern)) { width *= 10; width += digit_to_num(*pattern++); if (width > MAX_SCANF_WIDTH) return -1; } if (!width) /* No zero-width things. */ return -1; } if (*pattern == 'l') { longmod = 1; ++pattern; } if (*pattern == 'u' || *pattern == 'x') { unsigned long u; const int base = (*pattern == 'u') ? 10 : 16; if (!*buf) return n_matched; if (scan_unsigned(&buf, &u, width, base)<0) return n_matched; if (longmod) { unsigned long *out = va_arg(ap, unsigned long *); *out = u; } else { unsigned *out = va_arg(ap, unsigned *); if (u > UINT_MAX) return n_matched; *out = (unsigned) u; } ++pattern; ++n_matched; } else if (*pattern == 'f') { double *d = va_arg(ap, double *); if (!longmod) return -1; /* float not supported */ if (!*buf) return n_matched; if (scan_double(&buf, d, width)<0) return n_matched; ++pattern; ++n_matched; } else if (*pattern == 'd') { long lng=0; if (scan_signed(&buf, &lng, width)<0) return n_matched; if (longmod) { long *out = va_arg(ap, long *); *out = lng; } else { int *out = va_arg(ap, int *); if (lng < INT_MIN || lng > INT_MAX) return n_matched; *out = (int)lng; } ++pattern; ++n_matched; } else if (*pattern == 's') { char *s = va_arg(ap, char *); if (longmod) return -1; if (width < 0) return -1; if (scan_string(&buf, s, width)<0) return n_matched; ++pattern; ++n_matched; } else if (*pattern == 'c') { char *ch = va_arg(ap, char *); if (longmod) return -1; if (width != -1) return -1; if (!*buf) return n_matched; *ch = *buf++; ++pattern; ++n_matched; } else if (*pattern == '%') { if (*buf != '%') return n_matched; if (longmod) return -1; ++buf; ++pattern; } else { return -1; /* Unrecognized pattern component. */ } } } return n_matched; } /** Minimal sscanf replacement: parse buf according to pattern * and store the results in the corresponding argument fields. Differs from * sscanf in that: *
  • It only handles %u, %lu, %x, %lx, %[NUM]s, %d, %ld, %lf, and %c. *
  • It only handles decimal inputs for %lf. (12.3, not 1.23e1) *
  • It does not handle arbitrarily long widths. *
  • Numbers do not consume any space characters. *
  • It is locale-independent. *
  • %u and %x do not consume any space. *
  • It returns -1 on malformed patterns.
* * (As with other locale-independent functions, we need this to parse data that * is in ASCII without worrying that the C library's locale-handling will make * miscellaneous characters look like numbers, spaces, and so on.) */ int tor_sscanf(const char *buf, const char *pattern, ...) { int r; va_list ap; va_start(ap, pattern); r = tor_vsscanf(buf, pattern, ap); va_end(ap); return r; } /** Append the string produced by tor_asprintf(pattern, ...) * to sl. */ void smartlist_add_asprintf(struct smartlist_t *sl, const char *pattern, ...) { va_list ap; va_start(ap, pattern); smartlist_add_vasprintf(sl, pattern, ap); va_end(ap); } /** va_list-based backend of smartlist_add_asprintf. */ void smartlist_add_vasprintf(struct smartlist_t *sl, const char *pattern, va_list args) { char *str = NULL; tor_vasprintf(&str, pattern, args); tor_assert(str != NULL); smartlist_add(sl, str); } /** Return a new list containing the filenames in the directory dirname. * Return NULL on error or if dirname is not a directory. */ smartlist_t * tor_listdir(const char *dirname) { smartlist_t *result; #ifdef _WIN32 char *pattern=NULL; TCHAR tpattern[MAX_PATH] = {0}; char name[MAX_PATH*2+1] = {0}; HANDLE handle; WIN32_FIND_DATA findData; tor_asprintf(&pattern, "%s\\*", dirname); #ifdef UNICODE mbstowcs(tpattern,pattern,MAX_PATH); #else strlcpy(tpattern, pattern, MAX_PATH); #endif if (INVALID_HANDLE_VALUE == (handle = FindFirstFile(tpattern, &findData))) { tor_free(pattern); return NULL; } result = smartlist_new(); while (1) { #ifdef UNICODE wcstombs(name,findData.cFileName,MAX_PATH); name[sizeof(name)-1] = '\0'; #else strlcpy(name,findData.cFileName,sizeof(name)); #endif if (strcmp(name, ".") && strcmp(name, "..")) { smartlist_add(result, tor_strdup(name)); } if (!FindNextFile(handle, &findData)) { DWORD err; if ((err = GetLastError()) != ERROR_NO_MORE_FILES) { char *errstr = format_win32_error(err); log_warn(LD_FS, "Error reading directory '%s': %s", dirname, errstr); tor_free(errstr); } break; } } FindClose(handle); tor_free(pattern); #else const char *prot_dname = sandbox_intern_string(dirname); DIR *d; struct dirent *de; if (!(d = opendir(prot_dname))) return NULL; result = smartlist_new(); while ((de = readdir(d))) { if (!strcmp(de->d_name, ".") || !strcmp(de->d_name, "..")) continue; smartlist_add(result, tor_strdup(de->d_name)); } closedir(d); #endif return result; } /** Return true iff filename is a relative path. */ int path_is_relative(const char *filename) { if (filename && filename[0] == '/') return 0; #ifdef _WIN32 else if (filename && filename[0] == '\\') return 0; else if (filename && strlen(filename)>3 && TOR_ISALPHA(filename[0]) && filename[1] == ':' && filename[2] == '\\') return 0; #endif else return 1; } /* ===== * Process helpers * ===== */ #ifndef _WIN32 /* Based on code contributed by christian grothoff */ /** True iff we've called start_daemon(). */ static int start_daemon_called = 0; /** True iff we've called finish_daemon(). */ static int finish_daemon_called = 0; /** Socketpair used to communicate between parent and child process while * daemonizing. */ static int daemon_filedes[2]; /** Start putting the process into daemon mode: fork and drop all resources * except standard fds. The parent process never returns, but stays around * until finish_daemon is called. (Note: it's safe to call this more * than once: calls after the first are ignored.) */ void start_daemon(void) { pid_t pid; if (start_daemon_called) return; start_daemon_called = 1; if (pipe(daemon_filedes)) { log_err(LD_GENERAL,"pipe failed; exiting. Error was %s", strerror(errno)); exit(1); } pid = fork(); if (pid < 0) { log_err(LD_GENERAL,"fork failed. Exiting."); exit(1); } if (pid) { /* Parent */ int ok; char c; close(daemon_filedes[1]); /* we only read */ ok = -1; while (0 < read(daemon_filedes[0], &c, sizeof(char))) { if (c == '.') ok = 1; } fflush(stdout); if (ok == 1) exit(0); else exit(1); /* child reported error */ } else { /* Child */ close(daemon_filedes[0]); /* we only write */ pid = setsid(); /* Detach from controlling terminal */ /* * Fork one more time, so the parent (the session group leader) can exit. * This means that we, as a non-session group leader, can never regain a * controlling terminal. This part is recommended by Stevens's * _Advanced Programming in the Unix Environment_. */ if (fork() != 0) { exit(0); } set_main_thread(); /* We are now the main thread. */ return; } } /** Finish putting the process into daemon mode: drop standard fds, and tell * the parent process to exit. (Note: it's safe to call this more than once: * calls after the first are ignored. Calls start_daemon first if it hasn't * been called already.) */ void finish_daemon(const char *desired_cwd) { int nullfd; char c = '.'; if (finish_daemon_called) return; if (!start_daemon_called) start_daemon(); finish_daemon_called = 1; if (!desired_cwd) desired_cwd = "/"; /* Don't hold the wrong FS mounted */ if (chdir(desired_cwd) < 0) { log_err(LD_GENERAL,"chdir to \"%s\" failed. Exiting.",desired_cwd); exit(1); } nullfd = tor_open_cloexec("/dev/null", O_RDWR, 0); if (nullfd < 0) { log_err(LD_GENERAL,"/dev/null can't be opened. Exiting."); exit(1); } /* close fds linking to invoking terminal, but * close usual incoming fds, but redirect them somewhere * useful so the fds don't get reallocated elsewhere. */ if (dup2(nullfd,0) < 0 || dup2(nullfd,1) < 0 || dup2(nullfd,2) < 0) { log_err(LD_GENERAL,"dup2 failed. Exiting."); exit(1); } if (nullfd > 2) close(nullfd); /* signal success */ if (write(daemon_filedes[1], &c, sizeof(char)) != sizeof(char)) { log_err(LD_GENERAL,"write failed. Exiting."); } close(daemon_filedes[1]); } #else /* defined(_WIN32) */ void start_daemon(void) { } void finish_daemon(const char *cp) { (void)cp; } #endif /** Write the current process ID, followed by NL, into filename. */ void write_pidfile(const char *filename) { FILE *pidfile; if ((pidfile = fopen(filename, "w")) == NULL) { log_warn(LD_FS, "Unable to open \"%s\" for writing: %s", filename, strerror(errno)); } else { #ifdef _WIN32 fprintf(pidfile, "%d\n", (int)_getpid()); #else fprintf(pidfile, "%d\n", (int)getpid()); #endif fclose(pidfile); } } #ifdef _WIN32 HANDLE load_windows_system_library(const TCHAR *library_name) { TCHAR path[MAX_PATH]; unsigned n; n = GetSystemDirectory(path, MAX_PATH); if (n == 0 || n + _tcslen(library_name) + 2 >= MAX_PATH) return 0; _tcscat(path, TEXT("\\")); _tcscat(path, library_name); return LoadLibrary(path); } #endif /** Format a single argument for being put on a Windows command line. * Returns a newly allocated string */ static char * format_win_cmdline_argument(const char *arg) { char *formatted_arg; char need_quotes; const char *c; int i; int bs_counter = 0; /* Backslash we can point to when one is inserted into the string */ const char backslash = '\\'; /* Smartlist of *char */ smartlist_t *arg_chars; arg_chars = smartlist_new(); /* Quote string if it contains whitespace or is empty */ need_quotes = (strchr(arg, ' ') || strchr(arg, '\t') || '\0' == arg[0]); /* Build up smartlist of *chars */ for (c=arg; *c != '\0'; c++) { if ('"' == *c) { /* Double up backslashes preceding a quote */ for (i=0; i<(bs_counter*2); i++) smartlist_add(arg_chars, (void*)&backslash); bs_counter = 0; /* Escape the quote */ smartlist_add(arg_chars, (void*)&backslash); smartlist_add(arg_chars, (void*)c); } else if ('\\' == *c) { /* Count backslashes until we know whether to double up */ bs_counter++; } else { /* Don't double up slashes preceding a non-quote */ for (i=0; iradix argument * in range 2..16 inclusive. */ static int format_number_sigsafe(unsigned long x, char *buf, int buf_len, unsigned int radix) { unsigned long tmp; int len; char *cp; /* NOT tor_assert. This needs to be safe to run from within a signal handler, * and from within the 'tor_assert() has failed' code. */ if (radix < 2 || radix > 16) return 0; /* Count how many digits we need. */ tmp = x; len = 1; while (tmp >= radix) { tmp /= radix; ++len; } /* Not long enough */ if (!buf || len >= buf_len) return 0; cp = buf + len; *cp = '\0'; do { unsigned digit = (unsigned) (x % radix); tor_assert(cp > buf); --cp; *cp = "0123456789ABCDEF"[digit]; x /= radix; } while (x); /* NOT tor_assert; see above. */ if (cp != buf) { abort(); } return len; } /** * Helper function to output hex numbers from within a signal handler. * * Writes the nul-terminated hexadecimal digits of x into a buffer * buf of size buf_len, and return the actual number of digits * written, not counting the terminal NUL. * * If there is insufficient space, write nothing and return 0. * * This accepts an unsigned int because format_helper_exit_status() needs to * call it with a signed int and an unsigned char, and since the C standard * does not guarantee that an int is wider than a char (an int must be at * least 16 bits but it is permitted for a char to be that wide as well), we * can't assume a signed int is sufficient to accomodate an unsigned char. * Thus, format_helper_exit_status() will still need to emit any require '-' * on its own. * * For most purposes, you'd want to use tor_snprintf("%x") instead of this * function; it's designed to be used in code paths where you can't call * arbitrary C functions. */ int format_hex_number_sigsafe(unsigned long x, char *buf, int buf_len) { return format_number_sigsafe(x, buf, buf_len, 16); } /** As format_hex_number_sigsafe, but format the number in base 10. */ int format_dec_number_sigsafe(unsigned long x, char *buf, int buf_len) { return format_number_sigsafe(x, buf, buf_len, 10); } #ifndef _WIN32 /** Format child_state and saved_errno as a hex string placed in * hex_errno. Called between fork and _exit, so must be signal-handler * safe. * * hex_errno must have at least HEX_ERRNO_SIZE+1 bytes available. * * The format of hex_errno is: "CHILD_STATE/ERRNO\n", left-padded * with spaces. CHILD_STATE indicates where * in the processs of starting the child process did the failure occur (see * CHILD_STATE_* macros for definition), and SAVED_ERRNO is the value of * errno when the failure occurred. * * On success return the number of characters added to hex_errno, not counting * the terminating NUL; return -1 on error. */ STATIC int format_helper_exit_status(unsigned char child_state, int saved_errno, char *hex_errno) { unsigned int unsigned_errno; int written, left; char *cur; size_t i; int res = -1; /* Fill hex_errno with spaces, and a trailing newline (memset may not be signal handler safe, so we can't use it) */ for (i = 0; i < (HEX_ERRNO_SIZE - 1); i++) hex_errno[i] = ' '; hex_errno[HEX_ERRNO_SIZE - 1] = '\n'; /* Convert errno to be unsigned for hex conversion */ if (saved_errno < 0) { // Avoid overflow on the cast to unsigned int when result is INT_MIN // by adding 1 to the signed int negative value, // then, after it has been negated and cast to unsigned, // adding the original 1 back (the double-addition is intentional). // Otherwise, the cast to signed could cause a temporary int // to equal INT_MAX + 1, which is undefined. unsigned_errno = ((unsigned int) -(saved_errno + 1)) + 1; } else { unsigned_errno = (unsigned int) saved_errno; } /* * Count how many chars of space we have left, and keep a pointer into the * current point in the buffer. */ left = HEX_ERRNO_SIZE+1; cur = hex_errno; /* Emit child_state */ written = format_hex_number_sigsafe(child_state, cur, left); if (written <= 0) goto err; /* Adjust left and cur */ left -= written; cur += written; if (left <= 0) goto err; /* Now the '/' */ *cur = '/'; /* Adjust left and cur */ ++cur; --left; if (left <= 0) goto err; /* Need minus? */ if (saved_errno < 0) { *cur = '-'; ++cur; --left; if (left <= 0) goto err; } /* Emit unsigned_errno */ written = format_hex_number_sigsafe(unsigned_errno, cur, left); if (written <= 0) goto err; /* Adjust left and cur */ left -= written; cur += written; /* Check that we have enough space left for a newline and a NUL */ if (left <= 1) goto err; /* Emit the newline and NUL */ *cur++ = '\n'; *cur++ = '\0'; res = (int)(cur - hex_errno - 1); goto done; err: /* * In error exit, just write a '\0' in the first char so whatever called * this at least won't fall off the end. */ *hex_errno = '\0'; done: return res; } #endif /* Maximum number of file descriptors, if we cannot get it via sysconf() */ #define DEFAULT_MAX_FD 256 /** Terminate the process of process_handle. * Code borrowed from Python's os.kill. */ int tor_terminate_process(process_handle_t *process_handle) { #ifdef _WIN32 if (tor_get_exit_code(process_handle, 0, NULL) == PROCESS_EXIT_RUNNING) { HANDLE handle = process_handle->pid.hProcess; if (!TerminateProcess(handle, 0)) return -1; else return 0; } #else /* Unix */ if (process_handle->waitpid_cb) { /* We haven't got a waitpid yet, so we can just kill off the process. */ return kill(process_handle->pid, SIGTERM); } #endif return -1; } /** Return the Process ID of process_handle. */ int tor_process_get_pid(process_handle_t *process_handle) { #ifdef _WIN32 return (int) process_handle->pid.dwProcessId; #else return (int) process_handle->pid; #endif } #ifdef _WIN32 HANDLE tor_process_get_stdout_pipe(process_handle_t *process_handle) { return process_handle->stdout_pipe; } #else /* DOCDOC tor_process_get_stdout_pipe */ FILE * tor_process_get_stdout_pipe(process_handle_t *process_handle) { return process_handle->stdout_handle; } #endif /* DOCDOC process_handle_new */ static process_handle_t * process_handle_new(void) { process_handle_t *out = tor_malloc_zero(sizeof(process_handle_t)); #ifdef _WIN32 out->stdin_pipe = INVALID_HANDLE_VALUE; out->stdout_pipe = INVALID_HANDLE_VALUE; out->stderr_pipe = INVALID_HANDLE_VALUE; #else out->stdin_pipe = -1; out->stdout_pipe = -1; out->stderr_pipe = -1; #endif return out; } #ifndef _WIN32 /** Invoked when a process that we've launched via tor_spawn_background() has * been found to have terminated. */ static void process_handle_waitpid_cb(int status, void *arg) { process_handle_t *process_handle = arg; process_handle->waitpid_exit_status = status; clear_waitpid_callback(process_handle->waitpid_cb); if (process_handle->status == PROCESS_STATUS_RUNNING) process_handle->status = PROCESS_STATUS_NOTRUNNING; process_handle->waitpid_cb = 0; } #endif /** * @name child-process states * * Each of these values represents a possible state that a child process can * be in. They're used to determine what to say when telling the parent how * far along we were before failure. * * @{ */ #define CHILD_STATE_INIT 0 #define CHILD_STATE_PIPE 1 #define CHILD_STATE_MAXFD 2 #define CHILD_STATE_FORK 3 #define CHILD_STATE_DUPOUT 4 #define CHILD_STATE_DUPERR 5 #define CHILD_STATE_DUPIN 6 #define CHILD_STATE_CLOSEFD 7 #define CHILD_STATE_EXEC 8 #define CHILD_STATE_FAILEXEC 9 /** @} */ /** Start a program in the background. If filename contains a '/', then * it will be treated as an absolute or relative path. Otherwise, on * non-Windows systems, the system path will be searched for filename. * On Windows, only the current directory will be searched. Here, to search the * system path (as well as the application directory, current working * directory, and system directories), set filename to NULL. * * The strings in argv will be passed as the command line arguments of * the child program (following convention, argv[0] should normally be the * filename of the executable, and this must be the case if filename is * NULL). The last element of argv must be NULL. A handle to the child process * will be returned in process_handle (which must be non-NULL). Read * process_handle.status to find out if the process was successfully launched. * For convenience, process_handle.status is returned by this function. * * Some parts of this code are based on the POSIX subprocess module from * Python, and example code from * http://msdn.microsoft.com/en-us/library/ms682499%28v=vs.85%29.aspx. */ int tor_spawn_background(const char *const filename, const char **argv, process_environment_t *env, process_handle_t **process_handle_out) { #ifdef _WIN32 HANDLE stdout_pipe_read = NULL; HANDLE stdout_pipe_write = NULL; HANDLE stderr_pipe_read = NULL; HANDLE stderr_pipe_write = NULL; HANDLE stdin_pipe_read = NULL; HANDLE stdin_pipe_write = NULL; process_handle_t *process_handle; int status; STARTUPINFOA siStartInfo; BOOL retval = FALSE; SECURITY_ATTRIBUTES saAttr; char *joined_argv; saAttr.nLength = sizeof(SECURITY_ATTRIBUTES); saAttr.bInheritHandle = TRUE; /* TODO: should we set explicit security attributes? (#2046, comment 5) */ saAttr.lpSecurityDescriptor = NULL; /* Assume failure to start process */ status = PROCESS_STATUS_ERROR; /* Set up pipe for stdout */ if (!CreatePipe(&stdout_pipe_read, &stdout_pipe_write, &saAttr, 0)) { log_warn(LD_GENERAL, "Failed to create pipe for stdout communication with child process: %s", format_win32_error(GetLastError())); return status; } if (!SetHandleInformation(stdout_pipe_read, HANDLE_FLAG_INHERIT, 0)) { log_warn(LD_GENERAL, "Failed to configure pipe for stdout communication with child " "process: %s", format_win32_error(GetLastError())); return status; } /* Set up pipe for stderr */ if (!CreatePipe(&stderr_pipe_read, &stderr_pipe_write, &saAttr, 0)) { log_warn(LD_GENERAL, "Failed to create pipe for stderr communication with child process: %s", format_win32_error(GetLastError())); return status; } if (!SetHandleInformation(stderr_pipe_read, HANDLE_FLAG_INHERIT, 0)) { log_warn(LD_GENERAL, "Failed to configure pipe for stderr communication with child " "process: %s", format_win32_error(GetLastError())); return status; } /* Set up pipe for stdin */ if (!CreatePipe(&stdin_pipe_read, &stdin_pipe_write, &saAttr, 0)) { log_warn(LD_GENERAL, "Failed to create pipe for stdin communication with child process: %s", format_win32_error(GetLastError())); return status; } if (!SetHandleInformation(stdin_pipe_write, HANDLE_FLAG_INHERIT, 0)) { log_warn(LD_GENERAL, "Failed to configure pipe for stdin communication with child " "process: %s", format_win32_error(GetLastError())); return status; } /* Create the child process */ /* Windows expects argv to be a whitespace delimited string, so join argv up */ joined_argv = tor_join_win_cmdline(argv); process_handle = process_handle_new(); process_handle->status = status; ZeroMemory(&(process_handle->pid), sizeof(PROCESS_INFORMATION)); ZeroMemory(&siStartInfo, sizeof(STARTUPINFO)); siStartInfo.cb = sizeof(STARTUPINFO); siStartInfo.hStdError = stderr_pipe_write; siStartInfo.hStdOutput = stdout_pipe_write; siStartInfo.hStdInput = stdin_pipe_read; siStartInfo.dwFlags |= STARTF_USESTDHANDLES; /* Create the child process */ retval = CreateProcessA(filename, // module name joined_argv, // command line /* TODO: should we set explicit security attributes? (#2046, comment 5) */ NULL, // process security attributes NULL, // primary thread security attributes TRUE, // handles are inherited /*(TODO: set CREATE_NEW CONSOLE/PROCESS_GROUP to make GetExitCodeProcess() * work?) */ CREATE_NO_WINDOW, // creation flags (env==NULL) ? NULL : env->windows_environment_block, NULL, // use parent's current directory &siStartInfo, // STARTUPINFO pointer &(process_handle->pid)); // receives PROCESS_INFORMATION tor_free(joined_argv); if (!retval) { log_warn(LD_GENERAL, "Failed to create child process %s: %s", filename?filename:argv[0], format_win32_error(GetLastError())); tor_free(process_handle); } else { /* TODO: Close hProcess and hThread in process_handle->pid? */ process_handle->stdout_pipe = stdout_pipe_read; process_handle->stderr_pipe = stderr_pipe_read; process_handle->stdin_pipe = stdin_pipe_write; status = process_handle->status = PROCESS_STATUS_RUNNING; } /* TODO: Close pipes on exit */ *process_handle_out = process_handle; return status; #else // _WIN32 pid_t pid; int stdout_pipe[2]; int stderr_pipe[2]; int stdin_pipe[2]; int fd, retval; ssize_t nbytes; process_handle_t *process_handle; int status; const char *error_message = SPAWN_ERROR_MESSAGE; size_t error_message_length; /* Represents where in the process of spawning the program is; this is used for printing out the error message */ unsigned char child_state = CHILD_STATE_INIT; char hex_errno[HEX_ERRNO_SIZE + 2]; /* + 1 should be sufficient actually */ static int max_fd = -1; status = PROCESS_STATUS_ERROR; /* We do the strlen here because strlen() is not signal handler safe, and we are not allowed to use unsafe functions between fork and exec */ error_message_length = strlen(error_message); child_state = CHILD_STATE_PIPE; /* Set up pipe for redirecting stdout, stderr, and stdin of child */ retval = pipe(stdout_pipe); if (-1 == retval) { log_warn(LD_GENERAL, "Failed to set up pipe for stdout communication with child process: %s", strerror(errno)); return status; } retval = pipe(stderr_pipe); if (-1 == retval) { log_warn(LD_GENERAL, "Failed to set up pipe for stderr communication with child process: %s", strerror(errno)); close(stdout_pipe[0]); close(stdout_pipe[1]); return status; } retval = pipe(stdin_pipe); if (-1 == retval) { log_warn(LD_GENERAL, "Failed to set up pipe for stdin communication with child process: %s", strerror(errno)); close(stdout_pipe[0]); close(stdout_pipe[1]); close(stderr_pipe[0]); close(stderr_pipe[1]); return status; } child_state = CHILD_STATE_MAXFD; #ifdef _SC_OPEN_MAX if (-1 == max_fd) { max_fd = (int) sysconf(_SC_OPEN_MAX); if (max_fd == -1) { max_fd = DEFAULT_MAX_FD; log_warn(LD_GENERAL, "Cannot find maximum file descriptor, assuming %d", max_fd); } } #else max_fd = DEFAULT_MAX_FD; #endif child_state = CHILD_STATE_FORK; pid = fork(); if (0 == pid) { /* In child */ #if defined(HAVE_SYS_PRCTL_H) && defined(__linux__) /* Attempt to have the kernel issue a SIGTERM if the parent * goes away. Certain attributes of the binary being execve()ed * will clear this during the execve() call, but it's better * than nothing. */ prctl(PR_SET_PDEATHSIG, SIGTERM); #endif child_state = CHILD_STATE_DUPOUT; /* Link child stdout to the write end of the pipe */ retval = dup2(stdout_pipe[1], STDOUT_FILENO); if (-1 == retval) goto error; child_state = CHILD_STATE_DUPERR; /* Link child stderr to the write end of the pipe */ retval = dup2(stderr_pipe[1], STDERR_FILENO); if (-1 == retval) goto error; child_state = CHILD_STATE_DUPIN; /* Link child stdin to the read end of the pipe */ retval = dup2(stdin_pipe[0], STDIN_FILENO); if (-1 == retval) goto error; child_state = CHILD_STATE_CLOSEFD; close(stderr_pipe[0]); close(stderr_pipe[1]); close(stdout_pipe[0]); close(stdout_pipe[1]); close(stdin_pipe[0]); close(stdin_pipe[1]); /* Close all other fds, including the read end of the pipe */ /* XXX: We should now be doing enough FD_CLOEXEC setting to make * this needless. */ for (fd = STDERR_FILENO + 1; fd < max_fd; fd++) { close(fd); } child_state = CHILD_STATE_EXEC; /* Call the requested program. We need the cast because execvp doesn't define argv as const, even though it does not modify the arguments */ if (env) execve(filename, (char *const *) argv, env->unixoid_environment_block); else { static char *new_env[] = { NULL }; execve(filename, (char *const *) argv, new_env); } /* If we got here, the exec or open(/dev/null) failed */ child_state = CHILD_STATE_FAILEXEC; error: { /* XXX: are we leaking fds from the pipe? */ int n; n = format_helper_exit_status(child_state, errno, hex_errno); if (n >= 0) { /* Write the error message. GCC requires that we check the return value, but there is nothing we can do if it fails */ /* TODO: Don't use STDOUT, use a pipe set up just for this purpose */ nbytes = write(STDOUT_FILENO, error_message, error_message_length); nbytes = write(STDOUT_FILENO, hex_errno, n); } } (void) nbytes; _exit(255); /* Never reached, but avoids compiler warning */ return status; } /* In parent */ if (-1 == pid) { log_warn(LD_GENERAL, "Failed to fork child process: %s", strerror(errno)); close(stdin_pipe[0]); close(stdin_pipe[1]); close(stdout_pipe[0]); close(stdout_pipe[1]); close(stderr_pipe[0]); close(stderr_pipe[1]); return status; } process_handle = process_handle_new(); process_handle->status = status; process_handle->pid = pid; /* TODO: If the child process forked but failed to exec, waitpid it */ /* Return read end of the pipes to caller, and close write end */ process_handle->stdout_pipe = stdout_pipe[0]; retval = close(stdout_pipe[1]); if (-1 == retval) { log_warn(LD_GENERAL, "Failed to close write end of stdout pipe in parent process: %s", strerror(errno)); } process_handle->waitpid_cb = set_waitpid_callback(pid, process_handle_waitpid_cb, process_handle); process_handle->stderr_pipe = stderr_pipe[0]; retval = close(stderr_pipe[1]); if (-1 == retval) { log_warn(LD_GENERAL, "Failed to close write end of stderr pipe in parent process: %s", strerror(errno)); } /* Return write end of the stdin pipe to caller, and close the read end */ process_handle->stdin_pipe = stdin_pipe[1]; retval = close(stdin_pipe[0]); if (-1 == retval) { log_warn(LD_GENERAL, "Failed to close read end of stdin pipe in parent process: %s", strerror(errno)); } status = process_handle->status = PROCESS_STATUS_RUNNING; /* Set stdin/stdout/stderr pipes to be non-blocking */ if (fcntl(process_handle->stdout_pipe, F_SETFL, O_NONBLOCK) < 0 || fcntl(process_handle->stderr_pipe, F_SETFL, O_NONBLOCK) < 0 || fcntl(process_handle->stdin_pipe, F_SETFL, O_NONBLOCK) < 0) { log_warn(LD_GENERAL, "Failed to set stderror/stdout/stdin pipes " "nonblocking in parent process: %s", strerror(errno)); } /* Open the buffered IO streams */ process_handle->stdout_handle = fdopen(process_handle->stdout_pipe, "r"); process_handle->stderr_handle = fdopen(process_handle->stderr_pipe, "r"); process_handle->stdin_handle = fdopen(process_handle->stdin_pipe, "r"); *process_handle_out = process_handle; return process_handle->status; #endif // _WIN32 } /** Destroy all resources allocated by the process handle in * process_handle. * If also_terminate_process is true, also terminate the * process of the process handle. */ MOCK_IMPL(void, tor_process_handle_destroy,(process_handle_t *process_handle, int also_terminate_process)) { if (!process_handle) return; if (also_terminate_process) { if (tor_terminate_process(process_handle) < 0) { const char *errstr = #ifdef _WIN32 format_win32_error(GetLastError()); #else strerror(errno); #endif log_notice(LD_GENERAL, "Failed to terminate process with " "PID '%d' ('%s').", tor_process_get_pid(process_handle), errstr); } else { log_info(LD_GENERAL, "Terminated process with PID '%d'.", tor_process_get_pid(process_handle)); } } process_handle->status = PROCESS_STATUS_NOTRUNNING; #ifdef _WIN32 if (process_handle->stdout_pipe) CloseHandle(process_handle->stdout_pipe); if (process_handle->stderr_pipe) CloseHandle(process_handle->stderr_pipe); if (process_handle->stdin_pipe) CloseHandle(process_handle->stdin_pipe); #else if (process_handle->stdout_handle) fclose(process_handle->stdout_handle); if (process_handle->stderr_handle) fclose(process_handle->stderr_handle); if (process_handle->stdin_handle) fclose(process_handle->stdin_handle); clear_waitpid_callback(process_handle->waitpid_cb); #endif memset(process_handle, 0x0f, sizeof(process_handle_t)); tor_free(process_handle); } /** Get the exit code of a process specified by process_handle and store * it in exit_code, if set to a non-NULL value. If block is set * to true, the call will block until the process has exited. Otherwise if * the process is still running, the function will return * PROCESS_EXIT_RUNNING, and exit_code will be left unchanged. Returns * PROCESS_EXIT_EXITED if the process did exit. If there is a failure, * PROCESS_EXIT_ERROR will be returned and the contents of exit_code (if * non-NULL) will be undefined. N.B. Under *nix operating systems, this will * probably not work in Tor, because waitpid() is called in main.c to reap any * terminated child processes.*/ int tor_get_exit_code(process_handle_t *process_handle, int block, int *exit_code) { #ifdef _WIN32 DWORD retval; BOOL success; if (block) { /* Wait for the process to exit */ retval = WaitForSingleObject(process_handle->pid.hProcess, INFINITE); if (retval != WAIT_OBJECT_0) { log_warn(LD_GENERAL, "WaitForSingleObject() failed (%d): %s", (int)retval, format_win32_error(GetLastError())); return PROCESS_EXIT_ERROR; } } else { retval = WaitForSingleObject(process_handle->pid.hProcess, 0); if (WAIT_TIMEOUT == retval) { /* Process has not exited */ return PROCESS_EXIT_RUNNING; } else if (retval != WAIT_OBJECT_0) { log_warn(LD_GENERAL, "WaitForSingleObject() failed (%d): %s", (int)retval, format_win32_error(GetLastError())); return PROCESS_EXIT_ERROR; } } if (exit_code != NULL) { success = GetExitCodeProcess(process_handle->pid.hProcess, (PDWORD)exit_code); if (!success) { log_warn(LD_GENERAL, "GetExitCodeProcess() failed: %s", format_win32_error(GetLastError())); return PROCESS_EXIT_ERROR; } } #else int stat_loc; int retval; if (process_handle->waitpid_cb) { /* We haven't processed a SIGCHLD yet. */ retval = waitpid(process_handle->pid, &stat_loc, block?0:WNOHANG); if (retval == process_handle->pid) { clear_waitpid_callback(process_handle->waitpid_cb); process_handle->waitpid_cb = NULL; process_handle->waitpid_exit_status = stat_loc; } } else { /* We already got a SIGCHLD for this process, and handled it. */ retval = process_handle->pid; stat_loc = process_handle->waitpid_exit_status; } if (!block && 0 == retval) { /* Process has not exited */ return PROCESS_EXIT_RUNNING; } else if (retval != process_handle->pid) { log_warn(LD_GENERAL, "waitpid() failed for PID %d: %s", process_handle->pid, strerror(errno)); return PROCESS_EXIT_ERROR; } if (!WIFEXITED(stat_loc)) { log_warn(LD_GENERAL, "Process %d did not exit normally", process_handle->pid); return PROCESS_EXIT_ERROR; } if (exit_code != NULL) *exit_code = WEXITSTATUS(stat_loc); #endif // _WIN32 return PROCESS_EXIT_EXITED; } /** Helper: return the number of characters in s preceding the first * occurrence of ch. If ch does not occur in s, return * the length of s. Should be equivalent to strspn(s, "ch"). */ static INLINE size_t str_num_before(const char *s, char ch) { const char *cp = strchr(s, ch); if (cp) return cp - s; else return strlen(s); } /** Return non-zero iff getenv would consider s1 and s2 * to have the same name as strings in a process's environment. */ int environment_variable_names_equal(const char *s1, const char *s2) { size_t s1_name_len = str_num_before(s1, '='); size_t s2_name_len = str_num_before(s2, '='); return (s1_name_len == s2_name_len && tor_memeq(s1, s2, s1_name_len)); } /** Free env (assuming it was produced by * process_environment_make). */ void process_environment_free(process_environment_t *env) { if (env == NULL) return; /* As both an optimization hack to reduce consing on Unixoid systems * and a nice way to ensure that some otherwise-Windows-specific * code will always get tested before changes to it get merged, the * strings which env->unixoid_environment_block points to are packed * into env->windows_environment_block. */ tor_free(env->unixoid_environment_block); tor_free(env->windows_environment_block); tor_free(env); } /** Make a process_environment_t containing the environment variables * specified in env_vars (as C strings of the form * "NAME=VALUE"). */ process_environment_t * process_environment_make(struct smartlist_t *env_vars) { process_environment_t *env = tor_malloc_zero(sizeof(process_environment_t)); size_t n_env_vars = smartlist_len(env_vars); size_t i; size_t total_env_length; smartlist_t *env_vars_sorted; tor_assert(n_env_vars + 1 != 0); env->unixoid_environment_block = tor_calloc(n_env_vars + 1, sizeof(char *)); /* env->unixoid_environment_block is already NULL-terminated, * because we assume that NULL == 0 (and check that during compilation). */ total_env_length = 1; /* terminating NUL of terminating empty string */ for (i = 0; i < n_env_vars; ++i) { const char *s = smartlist_get(env_vars, i); size_t slen = strlen(s); tor_assert(slen + 1 != 0); tor_assert(slen + 1 < SIZE_MAX - total_env_length); total_env_length += slen + 1; } env->windows_environment_block = tor_malloc_zero(total_env_length); /* env->windows_environment_block is already * (NUL-terminated-empty-string)-terminated. */ /* Some versions of Windows supposedly require that environment * blocks be sorted. Or maybe some Windows programs (or their * runtime libraries) fail to look up strings in non-sorted * environment blocks. * * Also, sorting strings makes it easy to find duplicate environment * variables and environment-variable strings without an '=' on all * OSes, and they can cause badness. Let's complain about those. */ env_vars_sorted = smartlist_new(); smartlist_add_all(env_vars_sorted, env_vars); smartlist_sort_strings(env_vars_sorted); /* Now copy the strings into the environment blocks. */ { char *cp = env->windows_environment_block; const char *prev_env_var = NULL; for (i = 0; i < n_env_vars; ++i) { const char *s = smartlist_get(env_vars_sorted, i); size_t slen = strlen(s); size_t s_name_len = str_num_before(s, '='); if (s_name_len == slen) { log_warn(LD_GENERAL, "Preparing an environment containing a variable " "without a value: %s", s); } if (prev_env_var != NULL && environment_variable_names_equal(s, prev_env_var)) { log_warn(LD_GENERAL, "Preparing an environment containing two variables " "with the same name: %s and %s", prev_env_var, s); } prev_env_var = s; /* Actually copy the string into the environment. */ memcpy(cp, s, slen+1); env->unixoid_environment_block[i] = cp; cp += slen+1; } tor_assert(cp == env->windows_environment_block + total_env_length - 1); } smartlist_free(env_vars_sorted); return env; } /** Return a newly allocated smartlist containing every variable in * this process's environment, as a NUL-terminated string of the form * "NAME=VALUE". Note that on some/many/most/all OSes, the parent * process can put strings not of that form in our environment; * callers should try to not get crashed by that. * * The returned strings are heap-allocated, and must be freed by the * caller. */ struct smartlist_t * get_current_process_environment_variables(void) { smartlist_t *sl = smartlist_new(); char **environ_tmp; /* Not const char ** ? Really? */ for (environ_tmp = get_environment(); *environ_tmp; ++environ_tmp) { smartlist_add(sl, tor_strdup(*environ_tmp)); } return sl; } /** For each string s in env_vars such that * environment_variable_names_equal(s, new_var), remove it; if * free_p is non-zero, call free_old(s). If * new_var contains '=', insert it into env_vars. */ void set_environment_variable_in_smartlist(struct smartlist_t *env_vars, const char *new_var, void (*free_old)(void*), int free_p) { SMARTLIST_FOREACH_BEGIN(env_vars, const char *, s) { if (environment_variable_names_equal(s, new_var)) { SMARTLIST_DEL_CURRENT(env_vars, s); if (free_p) { free_old((void *)s); } } } SMARTLIST_FOREACH_END(s); if (strchr(new_var, '=') != NULL) { smartlist_add(env_vars, (void *)new_var); } } #ifdef _WIN32 /** Read from a handle h into buf, up to count bytes. If * hProcess is NULL, the function will return immediately if there is * nothing more to read. Otherwise hProcess should be set to the handle * to the process owning the h. In this case, the function will exit * only once the process has exited, or count bytes are read. Returns * the number of bytes read, or -1 on error. */ ssize_t tor_read_all_handle(HANDLE h, char *buf, size_t count, const process_handle_t *process) { size_t numread = 0; BOOL retval; DWORD byte_count; BOOL process_exited = FALSE; if (count > SIZE_T_CEILING || count > SSIZE_MAX) return -1; while (numread != count) { /* Check if there is anything to read */ retval = PeekNamedPipe(h, NULL, 0, NULL, &byte_count, NULL); if (!retval) { log_warn(LD_GENERAL, "Failed to peek from handle: %s", format_win32_error(GetLastError())); return -1; } else if (0 == byte_count) { /* Nothing available: process exited or it is busy */ /* Exit if we don't know whether the process is running */ if (NULL == process) break; /* The process exited and there's nothing left to read from it */ if (process_exited) break; /* If process is not running, check for output one more time in case it wrote something after the peek was performed. Otherwise keep on waiting for output */ tor_assert(process != NULL); byte_count = WaitForSingleObject(process->pid.hProcess, 0); if (WAIT_TIMEOUT != byte_count) process_exited = TRUE; continue; } /* There is data to read; read it */ retval = ReadFile(h, buf+numread, count-numread, &byte_count, NULL); tor_assert(byte_count + numread <= count); if (!retval) { log_warn(LD_GENERAL, "Failed to read from handle: %s", format_win32_error(GetLastError())); return -1; } else if (0 == byte_count) { /* End of file */ break; } numread += byte_count; } return (ssize_t)numread; } #else /** Read from a handle h into buf, up to count bytes. If * process is NULL, the function will return immediately if there is * nothing more to read. Otherwise data will be read until end of file, or * count bytes are read. Returns the number of bytes read, or -1 on * error. Sets eof to true if eof is not NULL and the end of the * file has been reached. */ ssize_t tor_read_all_handle(FILE *h, char *buf, size_t count, const process_handle_t *process, int *eof) { size_t numread = 0; char *retval; if (eof) *eof = 0; if (count > SIZE_T_CEILING || count > SSIZE_MAX) return -1; while (numread != count) { /* Use fgets because that is what we use in log_from_pipe() */ retval = fgets(buf+numread, (int)(count-numread), h); if (NULL == retval) { if (feof(h)) { log_debug(LD_GENERAL, "fgets() reached end of file"); if (eof) *eof = 1; break; } else { if (EAGAIN == errno) { if (process) continue; else break; } else { log_warn(LD_GENERAL, "fgets() from handle failed: %s", strerror(errno)); return -1; } } } tor_assert(retval != NULL); tor_assert(strlen(retval) + numread <= count); numread += strlen(retval); } log_debug(LD_GENERAL, "fgets() read %d bytes from handle", (int)numread); return (ssize_t)numread; } #endif /** Read from stdout of a process until the process exits. */ ssize_t tor_read_all_from_process_stdout(const process_handle_t *process_handle, char *buf, size_t count) { #ifdef _WIN32 return tor_read_all_handle(process_handle->stdout_pipe, buf, count, process_handle); #else return tor_read_all_handle(process_handle->stdout_handle, buf, count, process_handle, NULL); #endif } /** Read from stdout of a process until the process exits. */ ssize_t tor_read_all_from_process_stderr(const process_handle_t *process_handle, char *buf, size_t count) { #ifdef _WIN32 return tor_read_all_handle(process_handle->stderr_pipe, buf, count, process_handle); #else return tor_read_all_handle(process_handle->stderr_handle, buf, count, process_handle, NULL); #endif } /** Split buf into lines, and add to smartlist. The buffer buf will be * modified. The resulting smartlist will consist of pointers to buf, so there * is no need to free the contents of sl. buf must be a NUL-terminated * string. len should be set to the length of the buffer excluding the * NUL. Non-printable characters (including NUL) will be replaced with "." */ int tor_split_lines(smartlist_t *sl, char *buf, int len) { /* Index in buf of the start of the current line */ int start = 0; /* Index in buf of the current character being processed */ int cur = 0; /* Are we currently in a line */ char in_line = 0; /* Loop over string */ while (cur < len) { /* Loop until end of line or end of string */ for (; cur < len; cur++) { if (in_line) { if ('\r' == buf[cur] || '\n' == buf[cur]) { /* End of line */ buf[cur] = '\0'; /* Point cur to the next line */ cur++; /* Line starts at start and ends with a nul */ break; } else { if (!TOR_ISPRINT(buf[cur])) buf[cur] = '.'; } } else { if ('\r' == buf[cur] || '\n' == buf[cur]) { /* Skip leading vertical space */ ; } else { in_line = 1; start = cur; if (!TOR_ISPRINT(buf[cur])) buf[cur] = '.'; } } } /* We are at the end of the line or end of string. If in_line is true there * is a line which starts at buf+start and ends at a NUL. cur points to * the character after the NUL. */ if (in_line) smartlist_add(sl, (void *)(buf+start)); in_line = 0; } return smartlist_len(sl); } /** Return a string corresponding to stream_status. */ const char * stream_status_to_string(enum stream_status stream_status) { switch (stream_status) { case IO_STREAM_OKAY: return "okay"; case IO_STREAM_EAGAIN: return "temporarily unavailable"; case IO_STREAM_TERM: return "terminated"; case IO_STREAM_CLOSED: return "closed"; default: tor_fragile_assert(); return "unknown"; } } /* DOCDOC */ static void log_portfw_spawn_error_message(const char *buf, const char *executable, int *child_status) { /* Parse error message */ int retval, child_state, saved_errno; retval = tor_sscanf(buf, SPAWN_ERROR_MESSAGE "%x/%x", &child_state, &saved_errno); if (retval == 2) { log_warn(LD_GENERAL, "Failed to start child process \"%s\" in state %d: %s", executable, child_state, strerror(saved_errno)); if (child_status) *child_status = 1; } else { /* Failed to parse message from child process, log it as a warning */ log_warn(LD_GENERAL, "Unexpected message from port forwarding helper \"%s\": %s", executable, buf); } } #ifdef _WIN32 /** Return a smartlist containing lines outputted from * handle. Return NULL on error, and set * stream_status_out appropriately. */ MOCK_IMPL(smartlist_t *, tor_get_lines_from_handle, (HANDLE *handle, enum stream_status *stream_status_out)) { int pos; char stdout_buf[600] = {0}; smartlist_t *lines = NULL; tor_assert(stream_status_out); *stream_status_out = IO_STREAM_TERM; pos = tor_read_all_handle(handle, stdout_buf, sizeof(stdout_buf) - 1, NULL); if (pos < 0) { *stream_status_out = IO_STREAM_TERM; return NULL; } if (pos == 0) { *stream_status_out = IO_STREAM_EAGAIN; return NULL; } /* End with a null even if there isn't a \r\n at the end */ /* TODO: What if this is a partial line? */ stdout_buf[pos] = '\0'; /* Split up the buffer */ lines = smartlist_new(); tor_split_lines(lines, stdout_buf, pos); /* Currently 'lines' is populated with strings residing on the stack. Replace them with their exact copies on the heap: */ SMARTLIST_FOREACH(lines, char *, line, SMARTLIST_REPLACE_CURRENT(lines, line, tor_strdup(line))); *stream_status_out = IO_STREAM_OKAY; return lines; } /** Read from stream, and send lines to log at the specified log level. * Returns -1 if there is a error reading, and 0 otherwise. * If the generated stream is flushed more often than on new lines, or * a read exceeds 256 bytes, lines will be truncated. This should be fixed, * along with the corresponding problem on *nix (see bug #2045). */ static int log_from_handle(HANDLE *pipe, int severity) { char buf[256]; int pos; smartlist_t *lines; pos = tor_read_all_handle(pipe, buf, sizeof(buf) - 1, NULL); if (pos < 0) { /* Error */ log_warn(LD_GENERAL, "Failed to read data from subprocess"); return -1; } if (0 == pos) { /* There's nothing to read (process is busy or has exited) */ log_debug(LD_GENERAL, "Subprocess had nothing to say"); return 0; } /* End with a null even if there isn't a \r\n at the end */ /* TODO: What if this is a partial line? */ buf[pos] = '\0'; log_debug(LD_GENERAL, "Subprocess had %d bytes to say", pos); /* Split up the buffer */ lines = smartlist_new(); tor_split_lines(lines, buf, pos); /* Log each line */ SMARTLIST_FOREACH(lines, char *, line, { log_fn(severity, LD_GENERAL, "Port forwarding helper says: %s", line); }); smartlist_free(lines); return 0; } #else /** Return a smartlist containing lines outputted from * handle. Return NULL on error, and set * stream_status_out appropriately. */ MOCK_IMPL(smartlist_t *, tor_get_lines_from_handle, (FILE *handle, enum stream_status *stream_status_out)) { enum stream_status stream_status; char stdout_buf[400]; smartlist_t *lines = NULL; while (1) { memset(stdout_buf, 0, sizeof(stdout_buf)); stream_status = get_string_from_pipe(handle, stdout_buf, sizeof(stdout_buf) - 1); if (stream_status != IO_STREAM_OKAY) goto done; if (!lines) lines = smartlist_new(); smartlist_add(lines, tor_strdup(stdout_buf)); } done: *stream_status_out = stream_status; return lines; } /** Read from stream, and send lines to log at the specified log level. * Returns 1 if stream is closed normally, -1 if there is a error reading, and * 0 otherwise. Handles lines from tor-fw-helper and * tor_spawn_background() specially. */ static int log_from_pipe(FILE *stream, int severity, const char *executable, int *child_status) { char buf[256]; enum stream_status r; for (;;) { r = get_string_from_pipe(stream, buf, sizeof(buf) - 1); if (r == IO_STREAM_CLOSED) { return 1; } else if (r == IO_STREAM_EAGAIN) { return 0; } else if (r == IO_STREAM_TERM) { return -1; } tor_assert(r == IO_STREAM_OKAY); /* Check if buf starts with SPAWN_ERROR_MESSAGE */ if (strcmpstart(buf, SPAWN_ERROR_MESSAGE) == 0) { log_portfw_spawn_error_message(buf, executable, child_status); } else { log_fn(severity, LD_GENERAL, "Port forwarding helper says: %s", buf); } } /* We should never get here */ return -1; } #endif /** Reads from stream and stores input in buf_out making * sure it's below count bytes. * If the string has a trailing newline, we strip it off. * * This function is specifically created to handle input from managed * proxies, according to the pluggable transports spec. Make sure it * fits your needs before using it. * * Returns: * IO_STREAM_CLOSED: If the stream is closed. * IO_STREAM_EAGAIN: If there is nothing to read and we should check back * later. * IO_STREAM_TERM: If something is wrong with the stream. * IO_STREAM_OKAY: If everything went okay and we got a string * in buf_out. */ enum stream_status get_string_from_pipe(FILE *stream, char *buf_out, size_t count) { char *retval; size_t len; tor_assert(count <= INT_MAX); retval = fgets(buf_out, (int)count, stream); if (!retval) { if (feof(stream)) { /* Program has closed stream (probably it exited) */ /* TODO: check error */ return IO_STREAM_CLOSED; } else { if (EAGAIN == errno) { /* Nothing more to read, try again next time */ return IO_STREAM_EAGAIN; } else { /* There was a problem, abandon this child process */ return IO_STREAM_TERM; } } } else { len = strlen(buf_out); if (len == 0) { /* this probably means we got a NUL at the start of the string. */ return IO_STREAM_EAGAIN; } if (buf_out[len - 1] == '\n') { /* Remove the trailing newline */ buf_out[len - 1] = '\0'; } else { /* No newline; check whether we overflowed the buffer */ if (!feof(stream)) log_info(LD_GENERAL, "Line from stream was truncated: %s", buf_out); /* TODO: What to do with this error? */ } return IO_STREAM_OKAY; } /* We should never get here */ return IO_STREAM_TERM; } /** Parse a line from tor-fw-helper and issue an appropriate * log message to our user. */ static void handle_fw_helper_line(const char *executable, const char *line) { smartlist_t *tokens = smartlist_new(); char *message = NULL; char *message_for_log = NULL; const char *external_port = NULL; const char *internal_port = NULL; const char *result = NULL; int port = 0; int success = 0; if (strcmpstart(line, SPAWN_ERROR_MESSAGE) == 0) { /* We need to check for SPAWN_ERROR_MESSAGE again here, since it's * possible that it got sent after we tried to read it in log_from_pipe. * * XXX Ideally, we should be using one of stdout/stderr for the real * output, and one for the output of the startup code. We used to do that * before cd05f35d2c. */ int child_status; log_portfw_spawn_error_message(line, executable, &child_status); goto done; } smartlist_split_string(tokens, line, NULL, SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, -1); if (smartlist_len(tokens) < 5) goto err; if (strcmp(smartlist_get(tokens, 0), "tor-fw-helper") || strcmp(smartlist_get(tokens, 1), "tcp-forward")) goto err; external_port = smartlist_get(tokens, 2); internal_port = smartlist_get(tokens, 3); result = smartlist_get(tokens, 4); if (smartlist_len(tokens) > 5) { /* If there are more than 5 tokens, they are part of []. Let's use a second smartlist to form the whole message; strncat loops suck. */ int i; int message_words_n = smartlist_len(tokens) - 5; smartlist_t *message_sl = smartlist_new(); for (i = 0; i < message_words_n; i++) smartlist_add(message_sl, smartlist_get(tokens, 5+i)); tor_assert(smartlist_len(message_sl) > 0); message = smartlist_join_strings(message_sl, " ", 0, NULL); /* wrap the message in log-friendly wrapping */ tor_asprintf(&message_for_log, " ('%s')", message); smartlist_free(message_sl); } port = atoi(external_port); if (port < 1 || port > 65535) goto err; port = atoi(internal_port); if (port < 1 || port > 65535) goto err; if (!strcmp(result, "SUCCESS")) success = 1; else if (!strcmp(result, "FAIL")) success = 0; else goto err; if (!success) { log_warn(LD_GENERAL, "Tor was unable to forward TCP port '%s' to '%s'%s. " "Please make sure that your router supports port " "forwarding protocols (like NAT-PMP). Note that if '%s' is " "your ORPort, your relay will be unable to receive inbound " "traffic.", external_port, internal_port, message_for_log ? message_for_log : "", internal_port); } else { log_info(LD_GENERAL, "Tor successfully forwarded TCP port '%s' to '%s'%s.", external_port, internal_port, message_for_log ? message_for_log : ""); } goto done; err: log_warn(LD_GENERAL, "tor-fw-helper sent us a string we could not " "parse (%s).", line); done: SMARTLIST_FOREACH(tokens, char *, cp, tor_free(cp)); smartlist_free(tokens); tor_free(message); tor_free(message_for_log); } /** Read what tor-fw-helper has to say in its stdout and handle it * appropriately */ static int handle_fw_helper_output(const char *executable, process_handle_t *process_handle) { smartlist_t *fw_helper_output = NULL; enum stream_status stream_status = 0; fw_helper_output = tor_get_lines_from_handle(tor_process_get_stdout_pipe(process_handle), &stream_status); if (!fw_helper_output) { /* didn't get any output from tor-fw-helper */ /* if EAGAIN we should retry in the future */ return (stream_status == IO_STREAM_EAGAIN) ? 0 : -1; } /* Handle the lines we got: */ SMARTLIST_FOREACH_BEGIN(fw_helper_output, char *, line) { handle_fw_helper_line(executable, line); tor_free(line); } SMARTLIST_FOREACH_END(line); smartlist_free(fw_helper_output); return 0; } /** Spawn tor-fw-helper and ask it to forward the ports in * ports_to_forward. ports_to_forward contains strings * of the form ":", which is the format * that tor-fw-helper expects. */ void tor_check_port_forwarding(const char *filename, smartlist_t *ports_to_forward, time_t now) { /* When fw-helper succeeds, how long do we wait until running it again */ #define TIME_TO_EXEC_FWHELPER_SUCCESS 300 /* When fw-helper failed to start, how long do we wait until running it again */ #define TIME_TO_EXEC_FWHELPER_FAIL 60 /* Static variables are initialized to zero, so child_handle.status=0 * which corresponds to it not running on startup */ static process_handle_t *child_handle=NULL; static time_t time_to_run_helper = 0; int stderr_status, retval; int stdout_status = 0; tor_assert(filename); /* Start the child, if it is not already running */ if ((!child_handle || child_handle->status != PROCESS_STATUS_RUNNING) && time_to_run_helper < now) { /*tor-fw-helper cli looks like this: tor_fw_helper -p :5555 -p 4555:1111 */ const char **argv; /* cli arguments */ int args_n, status; int argv_index = 0; /* index inside 'argv' */ tor_assert(smartlist_len(ports_to_forward) > 0); /* check for overflow during 'argv' allocation: (len(ports_to_forward)*2 + 2)*sizeof(char*) > SIZE_MAX == len(ports_to_forward) > (((SIZE_MAX/sizeof(char*)) - 2)/2) */ if ((size_t) smartlist_len(ports_to_forward) > (((SIZE_MAX/sizeof(char*)) - 2)/2)) { log_warn(LD_GENERAL, "Overflow during argv allocation. This shouldn't happen."); return; } /* check for overflow during 'argv_index' increase: ((len(ports_to_forward)*2 + 2) > INT_MAX) == len(ports_to_forward) > (INT_MAX - 2)/2 */ if (smartlist_len(ports_to_forward) > (INT_MAX - 2)/2) { log_warn(LD_GENERAL, "Overflow during argv_index increase. This shouldn't happen."); return; } /* Calculate number of cli arguments: one for the filename, two for each smartlist element (one for "-p" and one for the ports), and one for the final NULL. */ args_n = 1 + 2*smartlist_len(ports_to_forward) + 1; argv = tor_calloc(args_n, sizeof(char *)); argv[argv_index++] = filename; SMARTLIST_FOREACH_BEGIN(ports_to_forward, const char *, port) { argv[argv_index++] = "-p"; argv[argv_index++] = port; } SMARTLIST_FOREACH_END(port); argv[argv_index] = NULL; /* Assume tor-fw-helper will succeed, start it later*/ time_to_run_helper = now + TIME_TO_EXEC_FWHELPER_SUCCESS; if (child_handle) { tor_process_handle_destroy(child_handle, 1); child_handle = NULL; } #ifdef _WIN32 /* Passing NULL as lpApplicationName makes Windows search for the .exe */ status = tor_spawn_background(NULL, argv, NULL, &child_handle); #else status = tor_spawn_background(filename, argv, NULL, &child_handle); #endif tor_free_((void*)argv); argv=NULL; if (PROCESS_STATUS_ERROR == status) { log_warn(LD_GENERAL, "Failed to start port forwarding helper %s", filename); time_to_run_helper = now + TIME_TO_EXEC_FWHELPER_FAIL; return; } log_info(LD_GENERAL, "Started port forwarding helper (%s) with pid '%d'", filename, tor_process_get_pid(child_handle)); } /* If child is running, read from its stdout and stderr) */ if (child_handle && PROCESS_STATUS_RUNNING == child_handle->status) { /* Read from stdout/stderr and log result */ retval = 0; #ifdef _WIN32 stderr_status = log_from_handle(child_handle->stderr_pipe, LOG_INFO); #else stderr_status = log_from_pipe(child_handle->stderr_handle, LOG_INFO, filename, &retval); #endif if (handle_fw_helper_output(filename, child_handle) < 0) { log_warn(LD_GENERAL, "Failed to handle fw helper output."); stdout_status = -1; retval = -1; } if (retval) { /* There was a problem in the child process */ time_to_run_helper = now + TIME_TO_EXEC_FWHELPER_FAIL; } /* Combine the two statuses in order of severity */ if (-1 == stdout_status || -1 == stderr_status) /* There was a failure */ retval = -1; #ifdef _WIN32 else if (!child_handle || tor_get_exit_code(child_handle, 0, NULL) != PROCESS_EXIT_RUNNING) { /* process has exited or there was an error */ /* TODO: Do something with the process return value */ /* TODO: What if the process output something since * between log_from_handle and tor_get_exit_code? */ retval = 1; } #else else if (1 == stdout_status || 1 == stderr_status) /* stdout or stderr was closed, the process probably * exited. It will be reaped by waitpid() in main.c */ /* TODO: Do something with the process return value */ retval = 1; #endif else /* Both are fine */ retval = 0; /* If either pipe indicates a failure, act on it */ if (0 != retval) { if (1 == retval) { log_info(LD_GENERAL, "Port forwarding helper terminated"); child_handle->status = PROCESS_STATUS_NOTRUNNING; } else { log_warn(LD_GENERAL, "Failed to read from port forwarding helper"); child_handle->status = PROCESS_STATUS_ERROR; } /* TODO: The child might not actually be finished (maybe it failed or closed stdout/stderr), so maybe we shouldn't start another? */ } } } /** Initialize the insecure RNG rng from a seed value seed. */ void tor_init_weak_random(tor_weak_rng_t *rng, unsigned seed) { rng->state = (uint32_t)(seed & 0x7fffffff); } /** Return a randomly chosen value in the range 0..TOR_WEAK_RANDOM_MAX based * on the RNG state of rng. This entropy will not be cryptographically * strong; do not rely on it for anything an adversary should not be able to * predict. */ int32_t tor_weak_random(tor_weak_rng_t *rng) { /* Here's a linear congruential generator. OpenBSD and glibc use these * parameters; they aren't too bad, and should have maximal period over the * range 0..INT32_MAX. We don't want to use the platform rand() or random(), * since some platforms have bad weak RNGs that only return values in the * range 0..INT16_MAX, which just isn't enough. */ rng->state = (rng->state * 1103515245 + 12345) & 0x7fffffff; return (int32_t) rng->state; } /** Return a random number in the range [0 , top). {That is, the range * of integers i such that 0 <= i < top.} Chooses uniformly. Requires that * top is greater than 0. This randomness is not cryptographically strong; do * not rely on it for anything an adversary should not be able to predict. */ int32_t tor_weak_random_range(tor_weak_rng_t *rng, int32_t top) { /* We don't want to just do tor_weak_random() % top, since random() is often * implemented with an LCG whose modulus is a power of 2, and those are * cyclic in their low-order bits. */ int divisor, result; tor_assert(top > 0); divisor = TOR_WEAK_RANDOM_MAX / top; do { result = (int32_t)(tor_weak_random(rng) / divisor); } while (result >= top); return result; } tor-0.2.7.6/src/common/backtrace.c0000644000175000017500000001251312621363245013561 00000000000000/* Copyright (c) 2013-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define __USE_GNU #define _GNU_SOURCE 1 #include "orconfig.h" #include "compat.h" #include "util.h" #include "torlog.h" #ifdef HAVE_EXECINFO_H #include #endif #ifdef HAVE_FCNTL_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_SIGNAL_H #include #endif #ifdef HAVE_CYGWIN_SIGNAL_H #include #elif defined(HAVE_SYS_UCONTEXT_H) #include #elif defined(HAVE_UCONTEXT_H) #include #endif #define EXPOSE_CLEAN_BACKTRACE #include "backtrace.h" #if defined(HAVE_EXECINFO_H) && defined(HAVE_BACKTRACE) && \ defined(HAVE_BACKTRACE_SYMBOLS_FD) && defined(HAVE_SIGACTION) #define USE_BACKTRACE #endif #if !defined(USE_BACKTRACE) #define NO_BACKTRACE_IMPL #endif /** Version of Tor to report in backtrace messages. */ static char *bt_version = NULL; #ifdef USE_BACKTRACE /** Largest stack depth to try to dump. */ #define MAX_DEPTH 256 /** Static allocation of stack to dump. This is static so we avoid stack * pressure. */ static void *cb_buf[MAX_DEPTH]; /** Protects cb_buf from concurrent access */ static tor_mutex_t cb_buf_mutex; /** Change a stacktrace in stack of depth depth so that it will * log the correct function from which a signal was received with context * ctx. (When we get a signal, the current function will not have * called any other function, and will therefore have not pushed its address * onto the stack. Fortunately, we usually have the program counter in the * ucontext_t structure. */ void clean_backtrace(void **stack, int depth, const ucontext_t *ctx) { #ifdef PC_FROM_UCONTEXT #if defined(__linux__) const int n = 1; #elif defined(__darwin__) || defined(__APPLE__) || defined(__OpenBSD__) \ || defined(__FreeBSD__) const int n = 2; #else const int n = 1; #endif if (depth <= n) return; stack[n] = (void*) ctx->PC_FROM_UCONTEXT; #else (void) depth; (void) ctx; (void) stack; #endif } /** Log a message msg at severity in domain, and follow * that with a backtrace log. */ void log_backtrace(int severity, int domain, const char *msg) { int depth; char **symbols; int i; tor_mutex_acquire(&cb_buf_mutex); depth = backtrace(cb_buf, MAX_DEPTH); symbols = backtrace_symbols(cb_buf, depth); tor_log(severity, domain, "%s. Stack trace:", msg); if (!symbols) { tor_log(severity, domain, " Unable to generate backtrace."); goto done; } for (i=0; i < depth; ++i) { tor_log(severity, domain, " %s", symbols[i]); } free(symbols); done: tor_mutex_release(&cb_buf_mutex); } static void crash_handler(int sig, siginfo_t *si, void *ctx_) __attribute__((noreturn)); /** Signal handler: write a crash message with a stack trace, and die. */ static void crash_handler(int sig, siginfo_t *si, void *ctx_) { char buf[40]; int depth; ucontext_t *ctx = (ucontext_t *) ctx_; int n_fds, i; const int *fds = NULL; (void) si; depth = backtrace(cb_buf, MAX_DEPTH); /* Clean up the top stack frame so we get the real function * name for the most recently failing function. */ clean_backtrace(cb_buf, depth, ctx); format_dec_number_sigsafe((unsigned)sig, buf, sizeof(buf)); tor_log_err_sigsafe(bt_version, " died: Caught signal ", buf, "\n", NULL); n_fds = tor_log_get_sigsafe_err_fds(&fds); for (i=0; i < n_fds; ++i) backtrace_symbols_fd(cb_buf, depth, fds[i]); abort(); } /** Install signal handlers as needed so that when we crash, we produce a * useful stack trace. Return 0 on success, -1 on failure. */ static int install_bt_handler(void) { int trap_signals[] = { SIGSEGV, SIGILL, SIGFPE, SIGBUS, SIGSYS, SIGIO, -1 }; int i, rv=0; struct sigaction sa; tor_mutex_init(&cb_buf_mutex); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = crash_handler; sa.sa_flags = SA_SIGINFO; sigfillset(&sa.sa_mask); for (i = 0; trap_signals[i] >= 0; ++i) { if (sigaction(trap_signals[i], &sa, NULL) == -1) { log_warn(LD_BUG, "Sigaction failed: %s", strerror(errno)); rv = -1; } } { /* Now, generate (but do not log) a backtrace. This ensures that * libc has pre-loaded the symbols we need to dump things, so that later * reads won't be denied by the sandbox code */ char **symbols; int depth = backtrace(cb_buf, MAX_DEPTH); symbols = backtrace_symbols(cb_buf, depth); if (symbols) free(symbols); } return rv; } /** Uninstall crash handlers. */ static void remove_bt_handler(void) { tor_mutex_uninit(&cb_buf_mutex); } #endif #ifdef NO_BACKTRACE_IMPL void log_backtrace(int severity, int domain, const char *msg) { tor_log(severity, domain, "%s. (Stack trace not available)", msg); } static int install_bt_handler(void) { return 0; } static void remove_bt_handler(void) { } #endif /** Set up code to handle generating error messages on crashes. */ int configure_backtrace_handler(const char *tor_version) { tor_free(bt_version); if (!tor_version) tor_version = ""; tor_asprintf(&bt_version, "Tor %s", tor_version); return install_bt_handler(); } /** Perform end-of-process cleanup for code that generates error messages on * crashes. */ void clean_up_backtrace_handler(void) { remove_bt_handler(); tor_free(bt_version); } tor-0.2.7.6/src/ext/0000755000175000017500000000000012632347251011065 500000000000000tor-0.2.7.6/src/ext/trunnel/0000755000175000017500000000000012632347251012554 500000000000000tor-0.2.7.6/src/ext/trunnel/trunnel-impl.h0000644000175000017500000002437312621363246015304 00000000000000/* trunnel-impl.h -- copied from Trunnel v1.4.3 * https://gitweb.torproject.org/trunnel.git * You probably shouldn't edit this file. */ /* trunnel-impl.h -- Implementation helpers for trunnel, included by * generated trunnel files * * Copyright 2014-2015, The Tor Project, Inc. * See license at the end of this file for copying information. */ #ifndef TRUNNEL_IMPL_H_INCLUDED_ #define TRUNNEL_IMPL_H_INCLUDED_ #include "trunnel.h" #include #include #ifdef TRUNNEL_LOCAL_H #include "trunnel-local.h" #endif #if defined(_MSC_VER) && (_MSC_VER < 1600) #define uint8_t unsigned char #define uint16_t unsigned short #define uint32_t unsigned int #define uint64_t unsigned __int64 #define inline __inline #else #include #endif #ifdef _WIN32 uint32_t trunnel_htonl(uint32_t a); uint32_t trunnel_ntohl(uint32_t a); uint16_t trunnel_htons(uint16_t a); uint16_t trunnel_ntohs(uint16_t a); #else #include #define trunnel_htonl(x) htonl(x) #define trunnel_htons(x) htons(x) #define trunnel_ntohl(x) ntohl(x) #define trunnel_ntohs(x) ntohs(x) #endif uint64_t trunnel_htonll(uint64_t a); uint64_t trunnel_ntohll(uint64_t a); #ifndef trunnel_assert #define trunnel_assert(x) assert(x) #endif static inline void trunnel_set_uint64(void *p, uint64_t v) { memcpy(p, &v, 8); } static inline void trunnel_set_uint32(void *p, uint32_t v) { memcpy(p, &v, 4); } static inline void trunnel_set_uint16(void *p, uint16_t v) { memcpy(p, &v, 2); } static inline void trunnel_set_uint8(void *p, uint8_t v) { memcpy(p, &v, 1); } static inline uint64_t trunnel_get_uint64(const void *p) { uint64_t x; memcpy(&x, p, 8); return x; } static inline uint32_t trunnel_get_uint32(const void *p) { uint32_t x; memcpy(&x, p, 4); return x; } static inline uint16_t trunnel_get_uint16(const void *p) { uint16_t x; memcpy(&x, p, 2); return x; } static inline uint8_t trunnel_get_uint8(const void *p) { return *(const uint8_t*)p; } #ifdef TRUNNEL_DEBUG_FAILING_ALLOC extern int trunnel_provoke_alloc_failure; static inline void * trunnel_malloc(size_t n) { if (trunnel_provoke_alloc_failure) { if (--trunnel_provoke_alloc_failure == 0) return NULL; } return malloc(n); } static inline void * trunnel_calloc(size_t a, size_t b) { if (trunnel_provoke_alloc_failure) { if (--trunnel_provoke_alloc_failure == 0) return NULL; } return calloc(a,b); } static inline char * trunnel_strdup(const char *s) { if (trunnel_provoke_alloc_failure) { if (--trunnel_provoke_alloc_failure == 0) return NULL; } return strdup(s); } #else #ifndef trunnel_malloc #define trunnel_malloc(x) (malloc((x))) #endif #ifndef trunnel_calloc #define trunnel_calloc(a,b) (calloc((a),(b))) #endif #ifndef trunnel_strdup #define trunnel_strdup(s) (strdup((s))) #endif #endif #ifndef trunnel_realloc #define trunnel_realloc(a,b) realloc((a),(b)) #endif #ifndef trunnel_free_ #define trunnel_free_(x) (free(x)) #endif #define trunnel_free(x) ((x) ? (trunnel_free_(x),0) : (0)) #ifndef trunnel_abort #define trunnel_abort() abort() #endif #ifndef trunnel_memwipe #define trunnel_memwipe(mem, len) ((void)0) #define trunnel_wipestr(s) ((void)0) #else #define trunnel_wipestr(s) do { \ if (s) \ trunnel_memwipe(s, strlen(s)); \ } while (0) #endif /* ====== dynamic arrays ======== */ #ifdef NDEBUG #define TRUNNEL_DYNARRAY_GET(da, n) \ ((da)->elts_[(n)]) #else /** Return the 'n'th element of 'da'. */ #define TRUNNEL_DYNARRAY_GET(da, n) \ (((n) >= (da)->n_ ? (trunnel_abort(),0) : 0), (da)->elts_[(n)]) #endif /** Change the 'n'th element of 'da' to 'v'. */ #define TRUNNEL_DYNARRAY_SET(da, n, v) do { \ trunnel_assert((n) < (da)->n_); \ (da)->elts_[(n)] = (v); \ } while (0) /** Expand the dynamic array 'da' of 'elttype' so that it can hold at least * 'howmanymore' elements than its current capacity. Always tries to increase * the length of the array. On failure, run the code in 'on_fail' and goto * trunnel_alloc_failed. */ #define TRUNNEL_DYNARRAY_EXPAND(elttype, da, howmanymore, on_fail) do { \ elttype *newarray; \ newarray = trunnel_dynarray_expand(&(da)->allocated_, \ (da)->elts_, (howmanymore), \ sizeof(elttype)); \ if (newarray == NULL) { \ on_fail; \ goto trunnel_alloc_failed; \ } \ (da)->elts_ = newarray; \ } while (0) /** Add 'v' to the end of the dynamic array 'da' of 'elttype', expanding it if * necessary. code in 'on_fail' and goto trunnel_alloc_failed. */ #define TRUNNEL_DYNARRAY_ADD(elttype, da, v, on_fail) do { \ if ((da)->n_ == (da)->allocated_) { \ TRUNNEL_DYNARRAY_EXPAND(elttype, da, 1, on_fail); \ } \ (da)->elts_[(da)->n_++] = (v); \ } while (0) /** Return the number of elements in 'da'. */ #define TRUNNEL_DYNARRAY_LEN(da) ((da)->n_) /** Remove all storage held by 'da' and set it to be empty. Does not free * storage held by the elements themselves. */ #define TRUNNEL_DYNARRAY_CLEAR(da) do { \ trunnel_free((da)->elts_); \ (da)->elts_ = NULL; \ (da)->n_ = (da)->allocated_ = 0; \ } while (0) /** Remove all storage held by 'da' and set it to be empty. Does not free * storage held by the elements themselves. */ #define TRUNNEL_DYNARRAY_WIPE(da) do { \ trunnel_memwipe((da)->elts_, (da)->allocated_ * sizeof((da)->elts_[0])); \ } while (0) /** Helper: wraps or implements an OpenBSD-style reallocarray. Behaves * as realloc(a, x*y), but verifies that no overflow will occur in the * multiplication. Returns NULL on failure. */ #ifndef trunnel_reallocarray void *trunnel_reallocarray(void *a, size_t x, size_t y); #endif /** Helper to expand a dynamic array. Behaves as TRUNNEL_DYNARRAY_EXPAND(), * taking the array of elements in 'ptr', a pointer to thethe current number * of allocated elements in allocated_p, the minimum numbeer of elements to * add in 'howmanymore', and the size of a single element in 'eltsize'. * * On success, adjust *allocated_p, and return the new value for the array of * elements. On failure, adjust nothing and return NULL. */ void *trunnel_dynarray_expand(size_t *allocated_p, void *ptr, size_t howmanymore, size_t eltsize); /** Type for a function to free members of a dynarray of pointers. */ typedef void (*trunnel_free_fn_t)(void *); /** * Helper to change the length of a dynamic array. Takes pointers to the * current allocated and n fields of the array in 'allocated_p' and 'len_p', * and the current array of elements in 'ptr'; takes the length of a single * element in 'eltsize'. Changes the length to 'newlen'. If 'newlen' is * greater than the current length, pads the new elements with 0. If newlen * is less than the current length, and free_fn is non-NULL, treat the * array as an array of void *, and invoke free_fn() on each removed element. * * On success, adjust *allocated_p and *len_p, and return the new value for * the array of elements. On failure, adjust nothing, set *errcode_ptr to 1, * and return NULL. */ void *trunnel_dynarray_setlen(size_t *allocated_p, size_t *len_p, void *ptr, size_t newlen, size_t eltsize, trunnel_free_fn_t free_fn, uint8_t *errcode_ptr); /** * Helper: return a pointer to the value of 'str' as a NUL-terminated string. * Might have to reallocate the storage for 'str' in order to fit in the final * NUL character. On allocation failure, return NULL. */ const char *trunnel_string_getstr(trunnel_string_t *str); /** * Helper: change the contents of 'str' to hold the 'len'-byte string in * 'inp'. Adjusts the storage to have a terminating NUL that doesn't count * towards the length of the string. On success, return 0. On failure, set * *errcode_ptr to 1 and return -1. */ int trunnel_string_setstr0(trunnel_string_t *str, const char *inp, size_t len, uint8_t *errcode_ptr); /** * As trunnel_dynarray_setlen, but adjusts a string rather than a dynamic * array, and ensures that the new string is NUL-terminated. */ int trunnel_string_setlen(trunnel_string_t *str, size_t newlen, uint8_t *errcode_ptr); #endif /* Copyright 2014 The Tor Project, Inc. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the names of the copyright owners nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ tor-0.2.7.6/src/ext/trunnel/trunnel.h0000644000175000017500000000502512621363246014336 00000000000000/* trunnel.h -- copied from Trunnel v1.4.3 * https://gitweb.torproject.org/trunnel.git * You probably shouldn't edit this file. */ /* trunnel.h -- Public declarations for trunnel, to be included * in trunnel header files. * Copyright 2014-2015, The Tor Project, Inc. * See license at the end of this file for copying information. */ #ifndef TRUNNEL_H_INCLUDED_ #define TRUNNEL_H_INCLUDED_ #include /** Macro to declare a variable-length dynamically allocated array. Trunnel * uses these to store all variable-length arrays. */ #define TRUNNEL_DYNARRAY_HEAD(name, elttype) \ struct name { \ size_t n_; \ size_t allocated_; \ elttype *elts_; \ } /** Initializer for a dynamic array of a given element type. */ #define TRUNNEL_DYNARRAY_INIT(elttype) { 0, 0, (elttype*)NULL } /** Typedef used for storing variable-length arrays of char. */ typedef TRUNNEL_DYNARRAY_HEAD(trunnel_string_st, char) trunnel_string_t; #endif /* Copyright 2014 The Tor Project, Inc. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the names of the copyright owners nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ tor-0.2.7.6/src/ext/trunnel/trunnel.c0000644000175000017500000001464712621363246014343 00000000000000/* trunnel.c -- copied from Trunnel v1.4.3 * https://gitweb.torproject.org/trunnel.git * You probably shouldn't edit this file. */ /* trunnel.c -- Helper functions to implement trunnel. * * Copyright 2014-2015, The Tor Project, Inc. * See license at the end of this file for copying information. * * See trunnel-impl.h for documentation of these functions. */ #include #include #include "trunnel-impl.h" #if defined(__BYTE_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) && \ __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ # define IS_LITTLE_ENDIAN 1 #elif defined(BYTE_ORDER) && defined(ORDER_LITTLE_ENDIAN) && \ BYTE_ORDER == __ORDER_LITTLE_ENDIAN # define IS_LITTLE_ENDIAN 1 #elif defined(_WIN32) # define IS_LITTLE_ENDIAN 1 #elif defined(__APPLE__) # include # define BSWAP64(x) OSSwapLittleToHostInt64(x) #elif defined(sun) || defined(__sun) # include # ifndef _BIG_ENDIAN # define IS_LITTLE_ENDIAN # endif #else # if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) # include # else # include # endif # if defined(__BYTE_ORDER) && defined(__LITTLE_ENDIAN) && \ __BYTE_ORDER == __LITTLE_ENDIAN # define IS_LITTLE_ENDIAN # endif #endif #ifdef _WIN32 uint16_t trunnel_htons(uint16_t s) { return (s << 8) | (s >> 8); } uint16_t trunnel_ntohs(uint16_t s) { return (s << 8) | (s >> 8); } uint32_t trunnel_htonl(uint32_t s) { return (s << 24) | ((s << 8)&0xff0000) | ((s >> 8)&0xff00) | (s >> 24); } uint32_t trunnel_ntohl(uint32_t s) { return (s << 24) | ((s << 8)&0xff0000) | ((s >> 8)&0xff00) | (s >> 24); } #endif uint64_t trunnel_htonll(uint64_t a) { #ifdef IS_LITTLE_ENDIAN return trunnel_htonl((uint32_t)(a>>32)) | (((uint64_t)trunnel_htonl((uint32_t)a))<<32); #else return a; #endif } uint64_t trunnel_ntohll(uint64_t a) { return trunnel_htonll(a); } #ifdef TRUNNEL_DEBUG_FAILING_ALLOC /** Used for debugging and running tricky test cases: Makes the nth * memoryation allocation call from now fail. */ int trunnel_provoke_alloc_failure = 0; #endif void * trunnel_dynarray_expand(size_t *allocated_p, void *ptr, size_t howmanymore, size_t eltsize) { size_t newsize = howmanymore + *allocated_p; void *newarray = NULL; if (newsize < 8) newsize = 8; if (newsize < *allocated_p * 2) newsize = *allocated_p * 2; if (newsize <= *allocated_p || newsize < howmanymore) return NULL; newarray = trunnel_reallocarray(ptr, newsize, eltsize); if (newarray == NULL) return NULL; *allocated_p = newsize; return newarray; } #ifndef trunnel_reallocarray void * trunnel_reallocarray(void *a, size_t x, size_t y) { #ifdef TRUNNEL_DEBUG_FAILING_ALLOC if (trunnel_provoke_alloc_failure) { if (--trunnel_provoke_alloc_failure == 0) return NULL; } #endif if (x > SIZE_MAX / y) return NULL; return trunnel_realloc(a, x * y); } #endif const char * trunnel_string_getstr(trunnel_string_t *str) { trunnel_assert(str->allocated_ >= str->n_); if (str->allocated_ == str->n_) { TRUNNEL_DYNARRAY_EXPAND(char, str, 1, {}); } str->elts_[str->n_] = 0; return str->elts_; trunnel_alloc_failed: return NULL; } int trunnel_string_setstr0(trunnel_string_t *str, const char *val, size_t len, uint8_t *errcode_ptr) { if (len == SIZE_MAX) goto trunnel_alloc_failed; if (str->allocated_ <= len) { TRUNNEL_DYNARRAY_EXPAND(char, str, len + 1 - str->allocated_, {}); } memcpy(str->elts_, val, len); str->n_ = len; str->elts_[len] = 0; return 0; trunnel_alloc_failed: *errcode_ptr = 1; return -1; } int trunnel_string_setlen(trunnel_string_t *str, size_t newlen, uint8_t *errcode_ptr) { if (newlen == SIZE_MAX) goto trunnel_alloc_failed; if (str->allocated_ < newlen + 1) { TRUNNEL_DYNARRAY_EXPAND(char, str, newlen + 1 - str->allocated_, {}); } if (str->n_ < newlen) { memset(& (str->elts_[str->n_]), 0, (newlen - str->n_)); } str->n_ = newlen; str->elts_[newlen] = 0; return 0; trunnel_alloc_failed: *errcode_ptr = 1; return -1; } void * trunnel_dynarray_setlen(size_t *allocated_p, size_t *len_p, void *ptr, size_t newlen, size_t eltsize, trunnel_free_fn_t free_fn, uint8_t *errcode_ptr) { if (*allocated_p < newlen) { void *newptr = trunnel_dynarray_expand(allocated_p, ptr, newlen - *allocated_p, eltsize); if (newptr == NULL) goto trunnel_alloc_failed; ptr = newptr; } if (free_fn && *len_p > newlen) { size_t i; void **elts = (void **) ptr; for (i = newlen; i < *len_p; ++i) { free_fn(elts[i]); elts[i] = NULL; } } if (*len_p < newlen) { memset( ((char*)ptr) + (eltsize * *len_p), 0, (newlen - *len_p) * eltsize); } *len_p = newlen; return ptr; trunnel_alloc_failed: *errcode_ptr = 1; return NULL; } /* Copyright 2014 The Tor Project, Inc. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the names of the copyright owners nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ tor-0.2.7.6/src/ext/eventdns.h0000644000175000017500000003271412621363246013013 00000000000000 /* * The original DNS code is due to Adam Langley with heavy * modifications by Nick Mathewson. Adam put his DNS software in the * public domain. You can find his original copyright below. Please, * aware that the code as part of libevent is governed by the 3-clause * BSD license above. * * This software is Public Domain. To view a copy of the public domain dedication, * visit http://creativecommons.org/licenses/publicdomain/ or send a letter to * Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. * * I ask and expect, but do not require, that all derivative works contain an * attribution similar to: * Parts developed by Adam Langley * * You may wish to replace the word "Parts" with something else depending on * the amount of original code. * * (Derivative works does not include programs which link against, run or include * the source verbatim in their source distributions) */ /* * Welcome, gentle reader * * Async DNS lookups are really a whole lot harder than they should be, * mostly stemming from the fact that the libc resolver has never been * very good at them. Before you use this library you should see if libc * can do the job for you with the modern async call getaddrinfo_a * (see http://www.imperialviolet.org/page25.html#e498). Otherwise, * please continue. * * This code is based on libevent and you must call event_init before * any of the APIs in this file. You must also seed the OpenSSL random * source if you are using OpenSSL for ids (see below). * * This library is designed to be included and shipped with your source * code. You statically link with it. You should also test for the * existence of strtok_r and define HAVE_STRTOK_R if you have it. * * The DNS protocol requires a good source of id numbers and these * numbers should be unpredictable for spoofing reasons. There are * three methods for generating them here and you must define exactly * one of them. In increasing order of preference: * * DNS_USE_GETTIMEOFDAY_FOR_ID: * Using the bottom 16 bits of the usec result from gettimeofday. This * is a pretty poor solution but should work anywhere. * DNS_USE_CPU_CLOCK_FOR_ID: * Using the bottom 16 bits of the nsec result from the CPU's time * counter. This is better, but may not work everywhere. Requires * POSIX realtime support and you'll need to link against -lrt on * glibc systems at least. * DNS_USE_OPENSSL_FOR_ID: * Uses the OpenSSL RAND_bytes call to generate the data. You must * have seeded the pool before making any calls to this library. * * The library keeps track of the state of nameservers and will avoid * them when they go down. Otherwise it will round robin between them. * * Quick start guide: * #include "evdns.h" * void callback(int result, char type, int count, int ttl, * void *addresses, void *arg); * evdns_resolv_conf_parse(DNS_OPTIONS_ALL, "/etc/resolv.conf"); * evdns_resolve("www.hostname.com", 0, callback, NULL); * * When the lookup is complete the callback function is called. The * first argument will be one of the DNS_ERR_* defines in evdns.h. * Hopefully it will be DNS_ERR_NONE, in which case type will be * DNS_IPv4_A, count will be the number of IP addresses, ttl is the time * which the data can be cached for (in seconds), addresses will point * to an array of uint32_t's and arg will be whatever you passed to * evdns_resolve. * * Searching: * * In order for this library to be a good replacement for glibc's resolver it * supports searching. This involves setting a list of default domains, in * which names will be queried for. The number of dots in the query name * determines the order in which this list is used. * * Searching appears to be a single lookup from the point of view of the API, * although many DNS queries may be generated from a single call to * evdns_resolve. Searching can also drastically slow down the resolution * of names. * * To disable searching: * 1. Never set it up. If you never call evdns_resolv_conf_parse or * evdns_search_add then no searching will occur. * * 2. If you do call evdns_resolv_conf_parse then don't pass * DNS_OPTION_SEARCH (or DNS_OPTIONS_ALL, which implies it). * * 3. When calling evdns_resolve, pass the DNS_QUERY_NO_SEARCH flag. * * The order of searches depends on the number of dots in the name. If the * number is greater than the ndots setting then the names is first tried * globally. Otherwise each search domain is appended in turn. * * The ndots setting can either be set from a resolv.conf, or by calling * evdns_search_ndots_set. * * For example, with ndots set to 1 (the default) and a search domain list of * ["myhome.net"]: * Query: www * Order: www.myhome.net, www. * * Query: www.abc * Order: www.abc., www.abc.myhome.net * * API reference: * * int evdns_nameserver_add(uint32_t address) * Add a nameserver. The address should be an IP address in * network byte order. The type of address is chosen so that * it matches in_addr.s_addr. * Returns non-zero on error. * * int evdns_nameserver_ip_add(const char *ip_as_string) * This wraps the above function by parsing a string as an IP * address and adds it as a nameserver. * Returns non-zero on error * * int evdns_resolve(const char *name, int flags, * evdns_callback_type callback, * void *ptr) * Resolve a name. The name parameter should be a DNS name. * The flags parameter should be 0, or DNS_QUERY_NO_SEARCH * which disables searching for this query. (see defn of * searching above). * * The callback argument is a function which is called when * this query completes and ptr is an argument which is passed * to that callback function. * * Returns non-zero on error * * void evdns_search_clear() * Clears the list of search domains * * void evdns_search_add(const char *domain) * Add a domain to the list of search domains * * void evdns_search_ndots_set(int ndots) * Set the number of dots which, when found in a name, causes * the first query to be without any search domain. * * int evdns_count_nameservers(void) * Return the number of configured nameservers (not necessarily the * number of running nameservers). This is useful for double-checking * whether our calls to the various nameserver configuration functions * have been successful. * * int evdns_clear_nameservers_and_suspend(void) * Remove all currently configured nameservers, and suspend all pending * resolves. Resolves will not necessarily be re-attempted until * evdns_resume() is called. * * int evdns_resume(void) * Re-attempt resolves left in limbo after an earlier call to * evdns_clear_nameservers_and_suspend(). * * int evdns_config_windows_nameservers(void) * Attempt to configure a set of nameservers based on platform settings on * a win32 host. Preferentially tries to use GetNetworkParams; if that fails, * looks in the registry. Returns 0 on success, nonzero on failure. * * int evdns_resolv_conf_parse(int flags, const char *filename) * Parse a resolv.conf like file from the given filename. * * See the man page for resolv.conf for the format of this file. * The flags argument determines what information is parsed from * this file: * DNS_OPTION_SEARCH - domain, search and ndots options * DNS_OPTION_NAMESERVERS - nameserver lines * DNS_OPTION_MISC - timeout and attempts options * DNS_OPTIONS_ALL - all of the above * The following directives are not parsed from the file: * sortlist, rotate, no-check-names, inet6, debug * * Returns non-zero on error: * 0 no errors * 1 failed to open file * 2 failed to stat file * 3 file too large * 4 out of memory * 5 short read from file * 6 no nameservers in file * * Internals: * * Requests are kept in two queues. The first is the inflight queue. In * this queue requests have an allocated transaction id and nameserver. * They will soon be transmitted if they haven't already been. * * The second is the waiting queue. The size of the inflight ring is * limited and all other requests wait in waiting queue for space. This * bounds the number of concurrent requests so that we don't flood the * nameserver. Several algorithms require a full walk of the inflight * queue and so bounding its size keeps thing going nicely under huge * (many thousands of requests) loads. * * If a nameserver loses too many requests it is considered down and we * try not to use it. After a while we send a probe to that nameserver * (a lookup for google.com) and, if it replies, we consider it working * again. If the nameserver fails a probe we wait longer to try again * with the next probe. */ #ifndef TOR_EVENTDNS_H #define TOR_EVENTDNS_H /* Error codes 0-5 are as described in RFC 1035. */ #define DNS_ERR_NONE 0 /* The name server was unable to interpret the query */ #define DNS_ERR_FORMAT 1 /* The name server was unable to process this query due to a problem with the * name server */ #define DNS_ERR_SERVERFAILED 2 /* The domain name does not exist */ #define DNS_ERR_NOTEXIST 3 /* The name server does not support the requested kind of query */ #define DNS_ERR_NOTIMPL 4 /* The name server refuses to reform the specified operation for policy * reasons */ #define DNS_ERR_REFUSED 5 /* The reply was truncated or ill-formated */ #define DNS_ERR_TRUNCATED 65 /* An unknown error occurred */ #define DNS_ERR_UNKNOWN 66 /* Communication with the server timed out */ #define DNS_ERR_TIMEOUT 67 /* The request was canceled because the DNS subsystem was shut down. */ #define DNS_ERR_SHUTDOWN 68 #define DNS_IPv4_A 1 #define DNS_PTR 2 #define DNS_IPv6_AAAA 3 #define DNS_QUERY_NO_SEARCH 1 #define DNS_OPTION_SEARCH 1 #define DNS_OPTION_NAMESERVERS 2 #define DNS_OPTION_MISC 4 #define DNS_OPTIONS_ALL 7 /* * The callback that contains the results from a lookup. * - type is either DNS_IPv4_A or DNS_IPv6_AAAA or DNS_PTR * - count contains the number of addresses of form type * - ttl is the number of seconds the resolution may be cached for. * - addresses needs to be cast according to type */ typedef void (*evdns_callback_type) (int result, char type, int count, int ttl, void *addresses, void *arg); int evdns_init(void); void evdns_shutdown(int fail_requests); const char *evdns_err_to_string(int err); int evdns_nameserver_add(uint32_t address); int evdns_count_nameservers(void); int evdns_clear_nameservers_and_suspend(void); int evdns_resume(void); int evdns_nameserver_ip_add(const char *ip_as_string); int evdns_nameserver_sockaddr_add(const struct sockaddr *sa, socklen_t len); void evdns_set_default_outgoing_bind_address(const struct sockaddr *addr, socklen_t addrlen); int evdns_resolve_ipv4(const char *name, int flags, evdns_callback_type callback, void *ptr); int evdns_resolve_ipv6(const char *name, int flags, evdns_callback_type callback, void *ptr); struct in_addr; struct in6_addr; int evdns_resolve_reverse(const struct in_addr *in, int flags, evdns_callback_type callback, void *ptr); int evdns_resolve_reverse_ipv6(const struct in6_addr *in, int flags, evdns_callback_type callback, void *ptr); int evdns_set_option(const char *option, const char *val, int flags); int evdns_resolv_conf_parse(int flags, const char *); #ifdef _WIN32 int evdns_config_windows_nameservers(void); #endif void evdns_search_clear(void); void evdns_search_add(const char *domain); void evdns_search_ndots_set(const int ndots); typedef void (*evdns_debug_log_fn_type)(int is_warning, const char *msg); void evdns_set_log_fn(evdns_debug_log_fn_type fn); void evdns_set_transaction_id_fn(uint16_t (*fn)(void)); void evdns_set_random_bytes_fn(void (*fn)(char *, size_t)); #define DNS_NO_SEARCH 1 /* Structures and functions used to implement a DNS server. */ struct evdns_server_request { int flags; int nquestions; struct evdns_server_question **questions; }; struct evdns_server_question { int type; int dns_question_class; char name[1]; }; typedef void (*evdns_request_callback_fn_type)(struct evdns_server_request *, void *); #define EVDNS_ANSWER_SECTION 0 #define EVDNS_AUTHORITY_SECTION 1 #define EVDNS_ADDITIONAL_SECTION 2 #define EVDNS_TYPE_A 1 #define EVDNS_TYPE_NS 2 #define EVDNS_TYPE_CNAME 5 #define EVDNS_TYPE_SOA 6 #define EVDNS_TYPE_PTR 12 #define EVDNS_TYPE_MX 15 #define EVDNS_TYPE_TXT 16 #define EVDNS_TYPE_AAAA 28 #define EVDNS_QTYPE_AXFR 252 #define EVDNS_QTYPE_ALL 255 #define EVDNS_CLASS_INET 1 struct evdns_server_port *evdns_add_server_port(tor_socket_t socket, int is_tcp, evdns_request_callback_fn_type callback, void *user_data); void evdns_close_server_port(struct evdns_server_port *port); int evdns_server_request_add_reply(struct evdns_server_request *req, int section, const char *name, int type, int class, int ttl, int datalen, int is_name, const char *data); int evdns_server_request_add_a_reply(struct evdns_server_request *req, const char *name, int n, const void *addrs, int ttl); int evdns_server_request_add_aaaa_reply(struct evdns_server_request *req, const char *name, int n, const void *addrs, int ttl); int evdns_server_request_add_ptr_reply(struct evdns_server_request *req, struct in_addr *in, const char *inaddr_name, const char *hostname, int ttl); int evdns_server_request_add_cname_reply(struct evdns_server_request *req, const char *name, const char *cname, int ttl); struct sockaddr; int evdns_server_request_get_requesting_addr(struct evdns_server_request *req, struct sockaddr *sa, int addr_len); int evdns_server_request_respond(struct evdns_server_request *req, int err); int evdns_server_request_drop(struct evdns_server_request *req); #endif // !EVENTDNS_H tor-0.2.7.6/src/ext/eventdns.c0000644000175000017500000027412312621363246013010 00000000000000/* READ THIS COMMENT BEFORE HACKING THIS FILE. * * This eventdns.c copy has diverged a bit from Libevent's version, and it's * no longer easy to resynchronize them. Once Tor requires Libevent 2.0, we * will just dump this file and use Libevent's evdns code. * * Therefore, you probably shouldn't make any change here without making it to * Libevent as well: it's not good for the implementation to diverge even * more. Also, we can't shouldn't wantonly the API here (since Libevent APIs * can't change in ways that break user behavior). Also, we shouldn't bother * with cosmetic changes: the whole module is slated for demolition, so * there's no point dusting the linebreaks or re-painting the parser. * * (We can't just drop the Libevent 2.0 evdns implementation in here instead, * since it depends pretty heavily on parts of Libevent 2.0.) */ /* Async DNS Library * Adam Langley * Public Domain code * * This software is Public Domain. To view a copy of the public domain dedication, * visit http://creativecommons.org/licenses/publicdomain/ or send a letter to * Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA. * * I ask and expect, but do not require, that all derivative works contain an * attribution similar to: * Parts developed by Adam Langley * * You may wish to replace the word "Parts" with something else depending on * the amount of original code. * * (Derivative works does not include programs which link against, run or include * the source verbatim in their source distributions) * * Version: 0.1b */ #include "eventdns_tor.h" #include "util.h" #include /* #define NDEBUG */ #ifndef DNS_USE_CPU_CLOCK_FOR_ID #ifndef DNS_USE_GETTIMEOFDAY_FOR_ID #ifndef DNS_USE_OPENSSL_FOR_ID #error Must configure at least one id generation method. #error Please see the documentation. #endif #endif #endif /* #define _POSIX_C_SOURCE 200507 */ #define _GNU_SOURCE #ifdef DNS_USE_CPU_CLOCK_FOR_ID #ifdef DNS_USE_OPENSSL_FOR_ID #error Multiple id options selected #endif #ifdef DNS_USE_GETTIMEOFDAY_FOR_ID #error Multiple id options selected #endif #include #endif #ifdef DNS_USE_OPENSSL_FOR_ID #ifdef DNS_USE_GETTIMEOFDAY_FOR_ID #error Multiple id options selected #endif #include #endif #include #ifdef HAVE_FCNTL_H #include #endif #ifdef HAVE_SYS_TIME_H #include #endif #ifdef HAVE_STDINT_H #include #endif #include #include #include #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_LIMITS_H #include #endif #include #include #include #include #include "eventdns.h" #ifdef _WIN32 #include #include #include #else #include #include #include #endif #ifdef HAVE_NETINET_IN6_H #include #endif #ifdef _WIN32 typedef int socklen_t; #endif #define EVDNS_LOG_DEBUG 0 #define EVDNS_LOG_WARN 1 #ifndef HOST_NAME_MAX #define HOST_NAME_MAX 255 #endif #ifndef NDEBUG #include #endif /* for debugging possible memory leaks. */ #define mm_malloc(x) tor_malloc(x) #define mm_realloc(x,y) tor_realloc((x),(y)) #define mm_free(x) tor_free(x) #define mm_strdup(x) tor_strdup(x) #define _mm_free(x) tor_free_(x) #undef MIN #define MIN(a,b) ((a)<(b)?(a):(b)) #if 0 #ifdef __USE_ISOC99B /* libevent doesn't work without this */ typedef uint8_t u_char; typedef unsigned int uint; #endif #endif #include #define u64 uint64_t #define u32 uint32_t #define u16 uint16_t #define u8 uint8_t #define MAX_ADDRS 4 /* maximum number of addresses from a single packet */ /* which we bother recording */ #define TYPE_A EVDNS_TYPE_A #define TYPE_CNAME 5 #define TYPE_PTR EVDNS_TYPE_PTR #define TYPE_AAAA EVDNS_TYPE_AAAA #define CLASS_INET EVDNS_CLASS_INET #define CLEAR(x) do { memset((x), 0xF0, sizeof(*(x))); } while(0) struct evdns_request { u8 *request; /* the dns packet data */ unsigned int request_len; int reissue_count; int tx_count; /* the number of times that this packet has been sent */ unsigned int request_type; /* TYPE_PTR or TYPE_A */ void *user_pointer; /* the pointer given to us for this request */ evdns_callback_type user_callback; struct nameserver *ns; /* the server which we last sent it */ /* elements used by the searching code */ int search_index; struct search_state *search_state; char *search_origname; /* needs to be mm_free()ed */ int search_flags; /* these objects are kept in a circular list */ struct evdns_request *next, *prev; struct event timeout_event; u16 trans_id; /* the transaction id */ char request_appended; /* true if the request pointer is data which follows this struct */ char transmit_me; /* needs to be transmitted */ }; #ifndef HAVE_STRUCT_IN6_ADDR struct in6_addr { u8 s6_addr[16]; }; #endif struct reply { unsigned int type; unsigned int have_answer; union { struct { u32 addrcount; u32 addresses[MAX_ADDRS]; } a; struct { u32 addrcount; struct in6_addr addresses[MAX_ADDRS]; } aaaa; struct { char name[HOST_NAME_MAX]; } ptr; } data; }; struct nameserver { int socket; /* a connected UDP socket */ struct sockaddr_storage address; int failed_times; /* number of times which we have given this server a chance */ int timedout; /* number of times in a row a request has timed out */ struct event event; /* these objects are kept in a circular list */ struct nameserver *next, *prev; struct event timeout_event; /* used to keep the timeout for */ /* when we next probe this server. */ /* Valid if state == 0 */ char state; /* zero if we think that this server is down */ char choked; /* true if we have an EAGAIN from this server's socket */ char write_waiting; /* true if we are waiting for EV_WRITE events */ }; static struct evdns_request *req_head = NULL, *req_waiting_head = NULL; static struct nameserver *server_head = NULL; /* Represents a local port where we're listening for DNS requests. Right now, */ /* only UDP is supported. */ struct evdns_server_port { int socket; /* socket we use to read queries and write replies. */ int refcnt; /* reference count. */ char choked; /* Are we currently blocked from writing? */ char closing; /* Are we trying to close this port, pending writes? */ evdns_request_callback_fn_type user_callback; /* Fn to handle requests */ void *user_data; /* Opaque pointer passed to user_callback */ struct event event; /* Read/write event */ /* circular list of replies that we want to write. */ struct server_request *pending_replies; }; /* Represents part of a reply being built. (That is, a single RR.) */ struct server_reply_item { struct server_reply_item *next; /* next item in sequence. */ char *name; /* name part of the RR */ u16 type : 16; /* The RR type */ u16 class : 16; /* The RR class (usually CLASS_INET) */ u32 ttl; /* The RR TTL */ char is_name; /* True iff data is a label */ u16 datalen; /* Length of data; -1 if data is a label */ void *data; /* The contents of the RR */ }; /* Represents a request that we've received as a DNS server, and holds */ /* the components of the reply as we're constructing it. */ struct server_request { /* Pointers to the next and previous entries on the list of replies */ /* that we're waiting to write. Only set if we have tried to respond */ /* and gotten EAGAIN. */ struct server_request *next_pending; struct server_request *prev_pending; u16 trans_id; /* Transaction id. */ struct evdns_server_port *port; /* Which port received this request on? */ struct sockaddr_storage addr; /* Where to send the response */ socklen_t addrlen; /* length of addr */ int n_answer; /* how many answer RRs have been set? */ int n_authority; /* how many authority RRs have been set? */ int n_additional; /* how many additional RRs have been set? */ struct server_reply_item *answer; /* linked list of answer RRs */ struct server_reply_item *authority; /* linked list of authority RRs */ struct server_reply_item *additional; /* linked list of additional RRs */ /* Constructed response. Only set once we're ready to send a reply. */ /* Once this is set, the RR fields are cleared, and no more should be set. */ char *response; size_t response_len; /* Caller-visible fields: flags, questions. */ struct evdns_server_request base; }; /* helper macro */ #define OFFSET_OF(st, member) ((off_t) (((char*)&((st*)0)->member)-(char*)0)) /* Given a pointer to an evdns_server_request, get the corresponding */ /* server_request. */ #define TO_SERVER_REQUEST(base_ptr) \ ((struct server_request*) \ (((char*)(base_ptr) - OFFSET_OF(struct server_request, base)))) /* The number of good nameservers that we have */ static int global_good_nameservers = 0; /* inflight requests are contained in the req_head list */ /* and are actually going out across the network */ static int global_requests_inflight = 0; /* requests which aren't inflight are in the waiting list */ /* and are counted here */ static int global_requests_waiting = 0; static int global_max_requests_inflight = 64; static struct timeval global_timeout = {5, 0}; /* 5 seconds */ static int global_max_reissues = 1; /* a reissue occurs when we get some errors from the server */ static int global_max_retransmits = 3; /* number of times we'll retransmit a request which timed out */ /* number of timeouts in a row before we consider this server to be down */ static int global_max_nameserver_timeout = 3; /* true iff we should use the 0x20 hack. */ static int global_randomize_case = 1; /* These are the timeout values for nameservers. If we find a nameserver is down */ /* we try to probe it at intervals as given below. Values are in seconds. */ static const struct timeval global_nameserver_timeouts[] = {{10, 0}, {60, 0}, {300, 0}, {900, 0}, {3600, 0}}; static const int global_nameserver_timeouts_length = (int)(sizeof(global_nameserver_timeouts)/sizeof(struct timeval)); static struct nameserver *nameserver_pick(void); static void evdns_request_insert(struct evdns_request *req, struct evdns_request **head); static void nameserver_ready_callback(int fd, short events, void *arg); static int evdns_transmit(void); static int evdns_request_transmit(struct evdns_request *req); static void nameserver_send_probe(struct nameserver *const ns); static void search_request_finished(struct evdns_request *const); static int search_try_next(struct evdns_request *const req); static int search_request_new(int type, const char *const name, int flags, evdns_callback_type user_callback, void *user_arg); static void evdns_requests_pump_waiting_queue(void); static u16 transaction_id_pick(void); static struct evdns_request *request_new(int type, const char *name, int flags, evdns_callback_type callback, void *ptr); static void request_submit(struct evdns_request *req); static int server_request_free(struct server_request *req); static void server_request_free_answers(struct server_request *req); static void server_port_free(struct evdns_server_port *port); static void server_port_ready_callback(int fd, short events, void *arg); static int strtoint(const char *const str); #ifdef _WIN32 static int last_error(int sock) { int optval, optvallen=sizeof(optval); int err = WSAGetLastError(); if (err == WSAEWOULDBLOCK && sock >= 0) { if (getsockopt(sock, SOL_SOCKET, SO_ERROR, (void*)&optval, &optvallen)) return err; if (optval) return optval; } return err; } static int error_is_eagain(int err) { return err == EAGAIN || err == WSAEWOULDBLOCK; } #define inet_aton(c, addr) tor_inet_aton((c), (addr)) #define CLOSE_SOCKET(x) closesocket(x) #else #define last_error(sock) (errno) #if EAGAIN != EWOULDBLOCK #define error_is_eagain(err) ((err) == EAGAIN || (err) == EWOULDBLOCK) #else #define error_is_eagain(err) ((err) == EAGAIN) #endif #define CLOSE_SOCKET(x) close(x) #endif #define ISSPACE(c) TOR_ISSPACE(c) #define ISDIGIT(c) TOR_ISDIGIT(c) #define ISALPHA(c) TOR_ISALPHA(c) #define TOLOWER(c) TOR_TOLOWER(c) #define TOUPPER(c) TOR_TOUPPER(c) #ifndef NDEBUG static const char * debug_ntoa(u32 address) { static char buf[32]; u32 a = ntohl(address); snprintf(buf, sizeof(buf), "%d.%d.%d.%d", (int)(u8)((a>>24)&0xff), (int)(u8)((a>>16)&0xff), (int)(u8)((a>>8 )&0xff), (int)(u8)((a )&0xff)); return buf; } static const char * debug_ntop(const struct sockaddr *sa) { if (sa->sa_family == AF_INET) { struct sockaddr_in *sin = (struct sockaddr_in *) sa; return debug_ntoa(sin->sin_addr.s_addr); } if (sa->sa_family == AF_INET6) { /* Tor-specific. In libevent, add more check code. */ static char buf[128]; struct sockaddr_in6 *sin = (struct sockaddr_in6 *) sa; tor_inet_ntop(AF_INET6, &sin->sin6_addr, buf, sizeof(buf)); return buf; } return ""; } #endif static evdns_debug_log_fn_type evdns_log_fn = NULL; void evdns_set_log_fn(evdns_debug_log_fn_type fn) { evdns_log_fn = fn; } #ifdef __GNUC__ #define EVDNS_LOG_CHECK __attribute__ ((format(printf, 2, 3))) #else #define EVDNS_LOG_CHECK #endif static void evdns_log(int warn, const char *fmt, ...) EVDNS_LOG_CHECK; static void evdns_log(int warn, const char *fmt, ...) { va_list args; static char buf[512]; if (!evdns_log_fn) return; va_start(args,fmt); #ifdef _WIN32 _vsnprintf(buf, sizeof(buf), fmt, args); #else vsnprintf(buf, sizeof(buf), fmt, args); #endif buf[sizeof(buf)-1] = '\0'; evdns_log_fn(warn, buf); va_end(args); } static int sockaddr_eq(const struct sockaddr *sa1, const struct sockaddr *sa2, int include_port) { if (sa1->sa_family != sa2->sa_family) return 0; if (sa1->sa_family == AF_INET) { const struct sockaddr_in *sin1, *sin2; sin1 = (const struct sockaddr_in *)sa1; sin2 = (const struct sockaddr_in *)sa2; if (sin1->sin_addr.s_addr != sin2->sin_addr.s_addr) return 0; else if (include_port && sin1->sin_port != sin2->sin_port) return 0; else return 1; } #ifdef AF_INET6 if (sa1->sa_family == AF_INET6) { const struct sockaddr_in6 *sin1, *sin2; sin1 = (const struct sockaddr_in6 *)sa1; sin2 = (const struct sockaddr_in6 *)sa2; if (tor_memneq(sin1->sin6_addr.s6_addr, sin2->sin6_addr.s6_addr, 16)) return 0; else if (include_port && sin1->sin6_port != sin2->sin6_port) return 0; else return 1; } #endif return 1; } #define add_timeout_event(s, to) \ (event_add(&(s)->timeout_event, (to))) #define del_timeout_event(s) \ (event_del(&(s)->timeout_event)) /* This walks the list of inflight requests to find the */ /* one with a matching transaction id. Returns NULL on */ /* failure */ static struct evdns_request * request_find_from_trans_id(u16 trans_id) { struct evdns_request *req = req_head, *const started_at = req_head; if (req) { do { if (req->trans_id == trans_id) return req; req = req->next; } while (req != started_at); } return NULL; } /* a libevent callback function which is called when a nameserver */ /* has gone down and we want to test if it has came back to life yet */ static void nameserver_prod_callback(int fd, short events, void *arg) { struct nameserver *const ns = (struct nameserver *) arg; (void)fd; (void)events; nameserver_send_probe(ns); } /* a libevent callback which is called when a nameserver probe (to see if */ /* it has come back to life) times out. We increment the count of failed_times */ /* and wait longer to send the next probe packet. */ static void nameserver_probe_failed(struct nameserver *const ns) { const struct timeval * timeout; del_timeout_event(ns); if (ns->state == 1) { /* This can happen if the nameserver acts in a way which makes us mark */ /* it as bad and then starts sending good replies. */ return; } timeout = &global_nameserver_timeouts[MIN(ns->failed_times, global_nameserver_timeouts_length - 1)]; ns->failed_times++; if (add_timeout_event(ns, (struct timeval *) timeout) < 0) { evdns_log(EVDNS_LOG_WARN, "Error from libevent when adding timer event for %s", debug_ntop((struct sockaddr *)&ns->address)); /* ???? Do more? */ } } /* called when a nameserver has been deemed to have failed. For example, too */ /* many packets have timed out etc */ static void nameserver_failed(struct nameserver *const ns, const char *msg) { struct evdns_request *req, *started_at; /* if this nameserver has already been marked as failed */ /* then don't do anything */ if (!ns->state) return; evdns_log(EVDNS_LOG_WARN, "Nameserver %s has failed: %s", debug_ntop((struct sockaddr *)&ns->address), msg); global_good_nameservers--; assert(global_good_nameservers >= 0); if (global_good_nameservers == 0) { evdns_log(EVDNS_LOG_WARN, "All nameservers have failed"); } ns->state = 0; ns->failed_times = 1; if (add_timeout_event(ns, (struct timeval *) &global_nameserver_timeouts[0]) < 0) { evdns_log(EVDNS_LOG_WARN, "Error from libevent when adding timer event for %s", debug_ntop((struct sockaddr *)&ns->address)); /* ???? Do more? */ } /* walk the list of inflight requests to see if any can be reassigned to */ /* a different server. Requests in the waiting queue don't have a */ /* nameserver assigned yet */ /* if we don't have *any* good nameservers then there's no point */ /* trying to reassign requests to one */ if (!global_good_nameservers) return; req = req_head; started_at = req_head; if (req) { do { if (req->tx_count == 0 && req->ns == ns) { /* still waiting to go out, can be moved */ /* to another server */ req->ns = nameserver_pick(); } req = req->next; } while (req != started_at); } } static void nameserver_up(struct nameserver *const ns) { if (ns->state) return; evdns_log(EVDNS_LOG_WARN, "Nameserver %s is back up", debug_ntop((struct sockaddr *)&ns->address)); del_timeout_event(ns); ns->state = 1; ns->failed_times = 0; ns->timedout = 0; global_good_nameservers++; } static void request_trans_id_set(struct evdns_request *const req, const u16 trans_id) { req->trans_id = trans_id; *((u16 *) req->request) = htons(trans_id); } /* Called to remove a request from a list and dealloc it. */ /* head is a pointer to the head of the list it should be */ /* removed from or NULL if the request isn't in a list. */ static void request_finished(struct evdns_request *const req, struct evdns_request **head) { if (head) { if (req->next == req) { /* only item in the list */ *head = NULL; } else { req->next->prev = req->prev; req->prev->next = req->next; if (*head == req) *head = req->next; } } evdns_log(EVDNS_LOG_DEBUG, "Removing timeout for request %lx", (unsigned long) req); del_timeout_event(req); search_request_finished(req); global_requests_inflight--; if (!req->request_appended) { /* need to free the request data on it's own */ mm_free(req->request); } else { /* the request data is appended onto the header */ /* so everything gets mm_free()ed when we: */ } CLEAR(req); _mm_free(req); evdns_requests_pump_waiting_queue(); } /* This is called when a server returns a funny error code. */ /* We try the request again with another server. */ /* */ /* return: */ /* 0 ok */ /* 1 failed/reissue is pointless */ static int request_reissue(struct evdns_request *req) { const struct nameserver *const last_ns = req->ns; /* the last nameserver should have been marked as failing */ /* by the caller of this function, therefore pick will try */ /* not to return it */ req->ns = nameserver_pick(); if (req->ns == last_ns) { /* ... but pick did return it */ /* not a lot of point in trying again with the */ /* same server */ return 1; } req->reissue_count++; req->tx_count = 0; req->transmit_me = 1; return 0; } /* this function looks for space on the inflight queue and promotes */ /* requests from the waiting queue if it can. */ static void evdns_requests_pump_waiting_queue(void) { while (global_requests_inflight < global_max_requests_inflight && global_requests_waiting) { struct evdns_request *req; /* move a request from the waiting queue to the inflight queue */ assert(req_waiting_head); if (req_waiting_head->next == req_waiting_head) { /* only one item in the queue */ req = req_waiting_head; req_waiting_head = NULL; } else { req = req_waiting_head; req->next->prev = req->prev; req->prev->next = req->next; req_waiting_head = req->next; } global_requests_waiting--; global_requests_inflight++; req->ns = nameserver_pick(); request_trans_id_set(req, transaction_id_pick()); evdns_request_insert(req, &req_head); evdns_request_transmit(req); evdns_transmit(); } } static void reply_callback(struct evdns_request *const req, u32 ttl, u32 err, struct reply *reply) { switch (req->request_type) { case TYPE_A: if (reply) req->user_callback(DNS_ERR_NONE, DNS_IPv4_A, reply->data.a.addrcount, ttl, reply->data.a.addresses, req->user_pointer); else req->user_callback(err, 0, 0, 0, NULL, req->user_pointer); return; case TYPE_PTR: if (reply) { char *name = reply->data.ptr.name; req->user_callback(DNS_ERR_NONE, DNS_PTR, 1, ttl, &name, req->user_pointer); } else { req->user_callback(err, 0, 0, 0, NULL, req->user_pointer); } return; case TYPE_AAAA: if (reply) req->user_callback(DNS_ERR_NONE, DNS_IPv6_AAAA, reply->data.aaaa.addrcount, ttl, reply->data.aaaa.addresses, req->user_pointer); else req->user_callback(err, 0, 0, 0, NULL, req->user_pointer); return; } assert(0); } /* this processes a parsed reply packet */ static void reply_handle(struct evdns_request *const req, u16 flags, u32 ttl, struct reply *reply) { int error; static const int error_codes[] = {DNS_ERR_FORMAT, DNS_ERR_SERVERFAILED, DNS_ERR_NOTEXIST, DNS_ERR_NOTIMPL, DNS_ERR_REFUSED}; if (flags & 0x020f || !reply || !reply->have_answer) { /* there was an error */ if (flags & 0x0200) { error = DNS_ERR_TRUNCATED; } else { u16 error_code = (flags & 0x000f) - 1; if (error_code > 4) { error = DNS_ERR_UNKNOWN; } else { error = error_codes[error_code]; } } switch(error) { case DNS_ERR_NOTIMPL: case DNS_ERR_REFUSED: /* we regard these errors as marking a bad nameserver */ if (req->reissue_count < global_max_reissues) { char msg[64]; snprintf(msg, sizeof(msg), "Bad response %d (%s)", error, evdns_err_to_string(error)); nameserver_failed(req->ns, msg); if (!request_reissue(req)) return; } break; case DNS_ERR_SERVERFAILED: /* rcode 2 (servfailed) sometimes means "we are broken" and * sometimes (with some binds) means "that request was very * confusing." Treat this as a timeout, not a failure. */ /*XXXX refactor the parts of */ evdns_log(EVDNS_LOG_DEBUG, "Got a SERVERFAILED from nameserver %s; " "will allow the request to time out.", debug_ntop((struct sockaddr *)&req->ns->address)); break; default: /* we got a good reply from the nameserver */ nameserver_up(req->ns); } if (req->search_state && req->request_type != TYPE_PTR) { /* if we have a list of domains to search in, try the next one */ if (!search_try_next(req)) { /* a new request was issued so this request is finished and */ /* the user callback will be made when that request (or a */ /* child of it) finishes. */ request_finished(req, &req_head); return; } } /* all else failed. Pass the failure up */ reply_callback(req, 0, error, NULL); request_finished(req, &req_head); } else { /* all ok, tell the user */ reply_callback(req, ttl, 0, reply); nameserver_up(req->ns); request_finished(req, &req_head); } } static INLINE int name_parse(u8 *packet, int length, int *idx, char *name_out, size_t name_out_len) { int name_end = -1; int j = *idx; int ptr_count = 0; #define GET32(x) do { if (j + 4 > length) goto err; memcpy(&_t32, packet + j, 4); j += 4; x = ntohl(_t32); } while(0) #define GET16(x) do { if (j + 2 > length) goto err; memcpy(&_t, packet + j, 2); j += 2; x = ntohs(_t); } while(0) #define GET8(x) do { if (j >= length) goto err; x = packet[j++]; } while(0) char *cp = name_out; const char *const end = name_out + name_out_len; /* Normally, names are a series of length prefixed strings terminated */ /* with a length of 0 (the lengths are u8's < 63). */ /* However, the length can start with a pair of 1 bits and that */ /* means that the next 14 bits are a pointer within the current */ /* packet. */ for(;;) { u8 label_len; if (j >= length) return -1; GET8(label_len); if (!label_len) break; if (label_len & 0xc0) { u8 ptr_low; GET8(ptr_low); if (name_end < 0) name_end = j; j = (((int)label_len & 0x3f) << 8) + ptr_low; /* Make sure that the target offset is in-bounds. */ if (j < 0 || j >= length) return -1; /* If we've jumped more times than there are characters in the * message, we must have a loop. */ if (++ptr_count > length) return -1; continue; } if (label_len > 63) return -1; if (cp != name_out) { if (cp >= name_out + name_out_len - 1) return -1; *cp++ = '.'; } if (label_len > name_out_len || cp >= name_out + name_out_len - label_len) return -1; memcpy(cp, packet + j, label_len); cp += label_len; j += label_len; } if (cp >= end) return -1; *cp = '\0'; if (name_end < 0) *idx = j; else *idx = name_end; return 0; err: return -1; } /* parses a raw reply from a nameserver. */ static int reply_parse(u8 *packet, int length) { int j = 0; /* index into packet */ int k; u16 _t; /* used by the macros */ u32 _t32; /* used by the macros */ char tmp_name[256], cmp_name[256]; /* used by the macros */ u16 trans_id, questions, answers, authority, additional, datalength; u16 flags = 0; u32 ttl, ttl_r = 0xffffffff; struct reply reply; struct evdns_request *req = NULL; unsigned int i; int name_matches = 0; GET16(trans_id); GET16(flags); GET16(questions); GET16(answers); GET16(authority); GET16(additional); (void) authority; /* suppress "unused variable" warnings. */ (void) additional; /* suppress "unused variable" warnings. */ req = request_find_from_trans_id(trans_id); /* if no request, can't do anything. */ if (!req) return -1; memset(&reply, 0, sizeof(reply)); /* If it's not an answer, it doesn't go with any of our requests. */ if (!(flags & 0x8000)) return -1; /* must be an answer */ if (flags & 0x020f) { /* there was an error */ goto err; } /* if (!answers) return; */ /* must have an answer of some form */ /* This macro skips a name in the DNS reply. */ #define GET_NAME \ do { tmp_name[0] = '\0'; \ if (name_parse(packet, length, &j, tmp_name, sizeof(tmp_name))<0)\ goto err; \ } while(0) #define TEST_NAME \ do { tmp_name[0] = '\0'; \ cmp_name[0] = '\0'; \ k = j; \ if (name_parse(packet, length, &j, tmp_name, sizeof(tmp_name))<0)\ goto err; \ if (name_parse(req->request, req->request_len, &k, cmp_name, sizeof(cmp_name))<0) \ goto err; \ if (global_randomize_case) { \ if (strcmp(tmp_name, cmp_name) == 0) \ name_matches = 1; /* we ignore mismatching names */ \ } else { \ if (strcasecmp(tmp_name, cmp_name) == 0) \ name_matches = 1; \ } \ } while(0) reply.type = req->request_type; /* skip over each question in the reply */ for (i = 0; i < questions; ++i) { /* the question looks like * */ TEST_NAME; j += 4; if (j >= length) goto err; } if (!name_matches) goto err; /* now we have the answer section which looks like * */ for (i = 0; i < answers; ++i) { u16 type, class; GET_NAME; GET16(type); GET16(class); GET32(ttl); GET16(datalength); if (type == TYPE_A && class == CLASS_INET) { int addrcount, addrtocopy; if (req->request_type != TYPE_A) { j += datalength; continue; } if ((datalength & 3) != 0) /* not an even number of As. */ goto err; addrcount = datalength >> 2; addrtocopy = MIN(MAX_ADDRS - reply.data.a.addrcount, (unsigned)addrcount); ttl_r = MIN(ttl_r, ttl); /* we only bother with the first four addresses. */ if (j + 4*addrtocopy > length) goto err; memcpy(&reply.data.a.addresses[reply.data.a.addrcount], packet + j, 4*addrtocopy); reply.data.a.addrcount += addrtocopy; reply.have_answer = 1; if (reply.data.a.addrcount == MAX_ADDRS) break; j += 4*addrtocopy; } else if (type == TYPE_PTR && class == CLASS_INET) { if (req->request_type != TYPE_PTR) { j += datalength; continue; } GET_NAME; strlcpy(reply.data.ptr.name, tmp_name, sizeof(reply.data.ptr.name)); ttl_r = MIN(ttl_r, ttl); reply.have_answer = 1; break; } else if (type == TYPE_AAAA && class == CLASS_INET) { int addrcount, addrtocopy; if (req->request_type != TYPE_AAAA) { j += datalength; continue; } if ((datalength & 15) != 0) /* not an even number of AAAAs. */ goto err; addrcount = datalength >> 4; /* each address is 16 bytes long */ addrtocopy = MIN(MAX_ADDRS - reply.data.aaaa.addrcount, (unsigned)addrcount); ttl_r = MIN(ttl_r, ttl); /* we only bother with the first four addresses. */ if (j + 16*addrtocopy > length) goto err; memcpy(&reply.data.aaaa.addresses[reply.data.aaaa.addrcount], packet + j, 16*addrtocopy); reply.data.aaaa.addrcount += addrtocopy; reply.have_answer = 1; if (reply.data.aaaa.addrcount == MAX_ADDRS) break; j += 16*addrtocopy; } else { /* skip over any other type of resource */ j += datalength; } } reply_handle(req, flags, ttl_r, &reply); return 0; err: if (req) reply_handle(req, flags, 0, NULL); return -1; } /* Parse a raw request (packet,length) sent to a nameserver port (port) from */ /* a DNS client (addr,addrlen), and if it's well-formed, call the corresponding */ /* callback. */ static int request_parse(u8 *packet, ssize_t length, struct evdns_server_port *port, struct sockaddr *addr, socklen_t addrlen) { int j = 0; /* index into packet */ u16 _t; /* used by the macros */ char tmp_name[256]; /* used by the macros */ int i; u16 trans_id, flags, questions, answers, authority, additional; struct server_request *server_req = NULL; /* Get the header fields */ GET16(trans_id); GET16(flags); GET16(questions); GET16(answers); GET16(authority); GET16(additional); (void)additional; (void)authority; (void)answers; if (flags & 0x8000) return -1; /* Must not be an answer. */ flags &= 0x0110; /* Only RD and CD get preserved. */ if (length > INT_MAX) return -1; server_req = mm_malloc(sizeof(struct server_request)); if (server_req == NULL) return -1; memset(server_req, 0, sizeof(struct server_request)); server_req->trans_id = trans_id; memcpy(&server_req->addr, addr, addrlen); server_req->addrlen = addrlen; server_req->base.flags = flags; server_req->base.nquestions = 0; server_req->base.questions = mm_malloc(sizeof(struct evdns_server_question *) * questions); if (server_req->base.questions == NULL) goto err; for (i = 0; i < questions; ++i) { u16 type, class; struct evdns_server_question *q; size_t namelen; if (name_parse(packet, (int)length, &j, tmp_name, sizeof(tmp_name))<0) goto err; GET16(type); GET16(class); namelen = strlen(tmp_name); q = mm_malloc(sizeof(struct evdns_server_question) + namelen); if (!q) goto err; q->type = type; q->dns_question_class = class; memcpy(q->name, tmp_name, namelen+1); server_req->base.questions[server_req->base.nquestions++] = q; } /* Ignore answers, authority, and additional. */ server_req->port = port; port->refcnt++; /* Only standard queries are supported. */ if (flags & 0x7800) { evdns_server_request_respond(&(server_req->base), DNS_ERR_NOTIMPL); return -1; } port->user_callback(&(server_req->base), port->user_data); return 0; err: if (server_req) { if (server_req->base.questions) { for (i = 0; i < server_req->base.nquestions; ++i) mm_free(server_req->base.questions[i]); mm_free(server_req->base.questions); } CLEAR(server_req); mm_free(server_req); } return -1; #undef SKIP_NAME #undef GET32 #undef GET16 #undef GET8 } static uint16_t default_transaction_id_fn(void) { u16 trans_id; #ifdef DNS_USE_CPU_CLOCK_FOR_ID struct timespec ts; #ifdef CLOCK_MONOTONIC if (clock_gettime(CLOCK_MONOTONIC, &ts) == -1) #else if (clock_gettime(CLOCK_REALTIME, &ts) == -1) #endif event_err(1, "clock_gettime"); trans_id = ts.tv_nsec & 0xffff; #endif #ifdef DNS_USE_GETTIMEOFDAY_FOR_ID struct timeval tv; gettimeofday(&tv, NULL); trans_id = tv.tv_usec & 0xffff; #endif #ifdef DNS_USE_OPENSSL_FOR_ID if (RAND_pseudo_bytes((u8 *) &trans_id, 2) == -1) { /* in the case that the RAND call fails we back */ /* down to using gettimeofday. */ /* struct timeval tv; gettimeofday(&tv, NULL); trans_id = tv.tv_usec & 0xffff; */ abort(); } #endif return (unsigned short) trans_id; } static uint16_t (*trans_id_function)(void) = default_transaction_id_fn; static void default_random_bytes_fn(char *buf, size_t n) { unsigned i; for (i = 0; i < n; i += 2) { u16 tid = trans_id_function(); buf[i] = (tid >> 8) & 0xff; if (i+1trans_id == trans_id) break; req = req->next; } while (req != started_at); } /* we didn't find it, so this is a good id */ if (req == started_at) return trans_id; } } /* choose a namesever to use. This function will try to ignore */ /* nameservers which we think are down and load balance across the rest */ /* by updating the server_head global each time. */ static struct nameserver * nameserver_pick(void) { struct nameserver *started_at = server_head, *picked; if (!server_head) return NULL; /* if we don't have any good nameservers then there's no */ /* point in trying to find one. */ if (!global_good_nameservers) { server_head = server_head->next; return server_head; } /* remember that nameservers are in a circular list */ for (;;) { if (server_head->state) { /* we think this server is currently good */ picked = server_head; server_head = server_head->next; return picked; } server_head = server_head->next; if (server_head == started_at) { /* all the nameservers seem to be down */ /* so we just return this one and hope for the */ /* best */ assert(global_good_nameservers == 0); picked = server_head; server_head = server_head->next; return picked; } } } /* this is called when a namesever socket is ready for reading */ static void nameserver_read(struct nameserver *ns) { struct sockaddr_storage ss; struct sockaddr *sa = (struct sockaddr *) &ss; socklen_t addrlen = sizeof(ss); u8 packet[1500]; for (;;) { const int r = (int)recvfrom(ns->socket, (void*)packet, (socklen_t)sizeof(packet), 0, sa, &addrlen); if (r < 0) { int err = last_error(ns->socket); if (error_is_eagain(err)) return; nameserver_failed(ns, tor_socket_strerror(err)); return; } /* XXX Match port too? */ if (!sockaddr_eq(sa, (struct sockaddr*)&ns->address, 0)) { evdns_log(EVDNS_LOG_WARN, "Address mismatch on received DNS packet. Address was %s", debug_ntop(sa)); return; } ns->timedout = 0; reply_parse(packet, r); } } /* Read a packet from a DNS client on a server port s, parse it, and */ /* act accordingly. */ static void server_port_read(struct evdns_server_port *s) { u8 packet[1500]; struct sockaddr_storage addr; socklen_t addrlen; ssize_t r; for (;;) { addrlen = (socklen_t)sizeof(struct sockaddr_storage); r = recvfrom(s->socket, (void*)packet, sizeof(packet), 0, (struct sockaddr*) &addr, &addrlen); if (r < 0) { int err = last_error(s->socket); if (error_is_eagain(err)) return; evdns_log(EVDNS_LOG_WARN, "Error %s (%d) while reading request.", tor_socket_strerror(err), err); return; } request_parse(packet, r, s, (struct sockaddr*) &addr, addrlen); } } /* Try to write all pending replies on a given DNS server port. */ static void server_port_flush(struct evdns_server_port *port) { struct server_request *req = port->pending_replies; while (req) { ssize_t r = sendto(port->socket, req->response, req->response_len, 0, (struct sockaddr*) &req->addr, (socklen_t)req->addrlen); if (r < 0) { int err = last_error(port->socket); if (error_is_eagain(err)) return; evdns_log(EVDNS_LOG_WARN, "Error %s (%d) while writing response to port; dropping", tor_socket_strerror(err), err); } if (server_request_free(req)) { /* we released the last reference to req->port. */ return; } else { assert(port->pending_replies != req); req = port->pending_replies; } } /* We have no more pending requests; stop listening for 'writeable' events. */ (void) event_del(&port->event); CLEAR(&port->event); event_set(&port->event, port->socket, EV_READ | EV_PERSIST, server_port_ready_callback, port); if (event_add(&port->event, NULL) < 0) { evdns_log(EVDNS_LOG_WARN, "Error from libevent when adding event for DNS server."); /* ???? Do more? */ } } /* set if we are waiting for the ability to write to this server. */ /* if waiting is true then we ask libevent for EV_WRITE events, otherwise */ /* we stop these events. */ static void nameserver_write_waiting(struct nameserver *ns, char waiting) { if (ns->write_waiting == waiting) return; ns->write_waiting = waiting; (void) event_del(&ns->event); CLEAR(&ns->event); event_set(&ns->event, ns->socket, EV_READ | (waiting ? EV_WRITE : 0) | EV_PERSIST, nameserver_ready_callback, ns); if (event_add(&ns->event, NULL) < 0) { evdns_log(EVDNS_LOG_WARN, "Error from libevent when adding event for %s", debug_ntop((struct sockaddr *)&ns->address)); /* ???? Do more? */ } } /* a callback function. Called by libevent when the kernel says that */ /* a nameserver socket is ready for writing or reading */ static void nameserver_ready_callback(int fd, short events, void *arg) { struct nameserver *ns = (struct nameserver *) arg; (void)fd; if (events & EV_WRITE) { ns->choked = 0; if (!evdns_transmit()) { nameserver_write_waiting(ns, 0); } } if (events & EV_READ) { nameserver_read(ns); } } /* a callback function. Called by libevent when the kernel says that */ /* a server socket is ready for writing or reading. */ static void server_port_ready_callback(int fd, short events, void *arg) { struct evdns_server_port *port = (struct evdns_server_port *) arg; (void) fd; if (events & EV_WRITE) { port->choked = 0; server_port_flush(port); } if (events & EV_READ) { server_port_read(port); } } /* This is an inefficient representation; only use it via the dnslabel_table_* * functions, so that is can be safely replaced with something smarter later. */ #define MAX_LABELS 128 /* Structures used to implement name compression */ struct dnslabel_entry { char *v; off_t pos; }; struct dnslabel_table { int n_labels; /* number of current entries */ /* map from name to position in message */ struct dnslabel_entry labels[MAX_LABELS]; }; /* Initialize dnslabel_table. */ static void dnslabel_table_init(struct dnslabel_table *table) { table->n_labels = 0; } /* Free all storage held by table, but not the table itself. */ static void dnslabel_clear(struct dnslabel_table *table) { int i; for (i = 0; i < table->n_labels; ++i) mm_free(table->labels[i].v); table->n_labels = 0; } /* return the position of the label in the current message, or -1 if the label */ /* hasn't been used yet. */ static int dnslabel_table_get_pos(const struct dnslabel_table *table, const char *label) { int i; for (i = 0; i < table->n_labels; ++i) { if (!strcmp(label, table->labels[i].v)) { off_t pos = table->labels[i].pos; if (pos > 65535) return -1; return (int)pos; } } return -1; } /* remember that we've used the label at position pos */ static int dnslabel_table_add(struct dnslabel_table *table, const char *label, off_t pos) { char *v; int p; if (table->n_labels == MAX_LABELS) return (-1); v = mm_strdup(label); if (v == NULL) return (-1); p = table->n_labels++; table->labels[p].v = v; table->labels[p].pos = pos; return (0); } /* Converts a string to a length-prefixed set of DNS labels, starting */ /* at buf[j]. name and buf must not overlap. name_len should be the length */ /* of name. table is optional, and is used for compression. */ /* */ /* Input: abc.def */ /* Output: <3>abc<3>def<0> */ /* */ /* Returns the first index after the encoded name, or negative on error. */ /* -1 label was > 63 bytes */ /* -2 name too long to fit in buffer. */ /* */ static off_t dnsname_to_labels(u8 *const buf, size_t buf_len, off_t j, const char *name, const size_t name_len, struct dnslabel_table *table) { const char *end = name + name_len; int ref = 0; u16 _t; #define APPEND16(x) do { \ if (j + 2 > (off_t)buf_len) \ goto overflow; \ _t = htons(x); \ memcpy(buf + j, &_t, 2); \ j += 2; \ } while (0) #define APPEND32(x) do { \ if (j + 4 > (off_t)buf_len) \ goto overflow; \ _t32 = htonl(x); \ memcpy(buf + j, &_t32, 4); \ j += 4; \ } while (0) if (name_len > 255) return -2; for (;;) { const char *const start = name; if (table && (ref = dnslabel_table_get_pos(table, name)) >= 0) { APPEND16(ref | 0xc000); return j; } name = strchr(name, '.'); if (!name) { const size_t label_len = end - start; if (label_len > 63) return -1; if ((size_t)(j+label_len+1) > buf_len) return -2; if (table) dnslabel_table_add(table, start, j); buf[j++] = (uint8_t)label_len; memcpy(buf + j, start, label_len); j += end - start; break; } else { /* append length of the label. */ const size_t label_len = name - start; if (label_len > 63) return -1; if ((size_t)(j+label_len+1) > buf_len) return -2; if (table) dnslabel_table_add(table, start, j); buf[j++] = (uint8_t)label_len; memcpy(buf + j, start, name - start); j += name - start; /* hop over the '.' */ name++; } } /* the labels must be terminated by a 0. */ /* It's possible that the name ended in a . */ /* in which case the zero is already there */ if (!j || buf[j-1]) buf[j++] = 0; return j; overflow: return (-2); } /* Finds the length of a dns request for a DNS name of the given */ /* length. The actual request may be smaller than the value returned */ /* here */ static size_t evdns_request_len(const size_t name_len) { return 96 + /* length of the DNS standard header */ name_len + 2 + 4; /* space for the resource type */ } /* build a dns request packet into buf. buf should be at least as long */ /* as evdns_request_len told you it should be. */ /* */ /* Returns the amount of space used. Negative on error. */ static int evdns_request_data_build(const char *const name, const size_t name_len, const u16 trans_id, const u16 type, const u16 class, u8 *const buf, size_t buf_len) { off_t j = 0; /* current offset into buf */ u16 _t; /* used by the macros */ APPEND16(trans_id); APPEND16(0x0100); /* standard query, recusion needed */ APPEND16(1); /* one question */ APPEND16(0); /* no answers */ APPEND16(0); /* no authority */ APPEND16(0); /* no additional */ j = dnsname_to_labels(buf, buf_len, j, name, name_len, NULL); if (j < 0) { return (int)j; } APPEND16(type); APPEND16(class); return (int)j; overflow: return (-1); } /* exported function */ struct evdns_server_port * evdns_add_server_port(tor_socket_t socket, int is_tcp, evdns_request_callback_fn_type cb, void *user_data) { struct evdns_server_port *port; if (!(port = mm_malloc(sizeof(struct evdns_server_port)))) return NULL; memset(port, 0, sizeof(struct evdns_server_port)); assert(!is_tcp); /* TCP sockets not yet implemented */ port->socket = socket; port->refcnt = 1; port->choked = 0; port->closing = 0; port->user_callback = cb; port->user_data = user_data; port->pending_replies = NULL; event_set(&port->event, port->socket, EV_READ | EV_PERSIST, server_port_ready_callback, port); if (event_add(&port->event, NULL)<0) { mm_free(port); return NULL; } return port; } /* exported function */ void evdns_close_server_port(struct evdns_server_port *port) { port->closing = 1; if (--port->refcnt == 0) server_port_free(port); } /* exported function */ int evdns_server_request_add_reply(struct evdns_server_request *_req, int section, const char *name, int type, int class, int ttl, int datalen, int is_name, const char *data) { struct server_request *req = TO_SERVER_REQUEST(_req); struct server_reply_item **itemp, *item; int *countp; if (req->response) /* have we already answered? */ return (-1); switch (section) { case EVDNS_ANSWER_SECTION: itemp = &req->answer; countp = &req->n_answer; break; case EVDNS_AUTHORITY_SECTION: itemp = &req->authority; countp = &req->n_authority; break; case EVDNS_ADDITIONAL_SECTION: itemp = &req->additional; countp = &req->n_additional; break; default: return (-1); } while (*itemp) { itemp = &((*itemp)->next); } item = mm_malloc(sizeof(struct server_reply_item)); if (!item) return -1; CLEAR(item); item->next = NULL; if (!(item->name = mm_strdup(name))) { CLEAR(item); mm_free(item); return -1; } item->type = type; item->class = class; item->ttl = ttl; item->is_name = is_name != 0; item->datalen = 0; item->data = NULL; if (data) { if (item->is_name) { if (!(item->data = mm_strdup(data))) { mm_free(item->name); CLEAR(item); mm_free(item); return -1; } item->datalen = (u16)-1; } else { if (!(item->data = mm_malloc(datalen))) { mm_free(item->name); CLEAR(item); mm_free(item); return -1; } item->datalen = datalen; memcpy(item->data, data, datalen); } } *itemp = item; ++(*countp); return 0; } /* exported function */ int evdns_server_request_add_a_reply(struct evdns_server_request *req, const char *name, int n, const void *addrs, int ttl) { return evdns_server_request_add_reply( req, EVDNS_ANSWER_SECTION, name, TYPE_A, CLASS_INET, ttl, n*4, 0, addrs); } /* exported function */ int evdns_server_request_add_aaaa_reply(struct evdns_server_request *req, const char *name, int n, const void *addrs, int ttl) { return evdns_server_request_add_reply( req, EVDNS_ANSWER_SECTION, name, TYPE_AAAA, CLASS_INET, ttl, n*16, 0, addrs); } /* exported function */ int evdns_server_request_add_ptr_reply(struct evdns_server_request *req, struct in_addr *in, const char *inaddr_name, const char *hostname, int ttl) { u32 a; char buf[32]; assert(in || inaddr_name); assert(!(in && inaddr_name)); if (in) { a = ntohl(in->s_addr); snprintf(buf, sizeof(buf), "%d.%d.%d.%d.in-addr.arpa", (int)(u8)((a )&0xff), (int)(u8)((a>>8 )&0xff), (int)(u8)((a>>16)&0xff), (int)(u8)((a>>24)&0xff)); inaddr_name = buf; } return evdns_server_request_add_reply( req, EVDNS_ANSWER_SECTION, inaddr_name, TYPE_PTR, CLASS_INET, ttl, -1, 1, hostname); } /* exported function */ int evdns_server_request_add_cname_reply(struct evdns_server_request *req, const char *name, const char *cname, int ttl) { return evdns_server_request_add_reply( req, EVDNS_ANSWER_SECTION, name, TYPE_CNAME, CLASS_INET, ttl, -1, 1, cname); } static int evdns_server_request_format_response(struct server_request *req, int err) { unsigned char buf[1500]; size_t buf_len = sizeof(buf); off_t j = 0, r; u16 _t; u32 _t32; int i; u16 flags; struct dnslabel_table table; if (err < 0 || err > 15) return -1; /* Set response bit and error code; copy OPCODE and RD fields from * question; copy RA and AA if set by caller. */ flags = req->base.flags; flags |= (0x8000 | err); dnslabel_table_init(&table); APPEND16(req->trans_id); APPEND16(flags); APPEND16(req->base.nquestions); APPEND16(req->n_answer); APPEND16(req->n_authority); APPEND16(req->n_additional); /* Add questions. */ for (i=0; i < req->base.nquestions; ++i) { const char *s = req->base.questions[i]->name; j = dnsname_to_labels(buf, buf_len, j, s, strlen(s), &table); if (j < 0) { dnslabel_clear(&table); return (int) j; } APPEND16(req->base.questions[i]->type); APPEND16(req->base.questions[i]->dns_question_class); } /* Add answer, authority, and additional sections. */ for (i=0; i<3; ++i) { struct server_reply_item *item; if (i==0) item = req->answer; else if (i==1) item = req->authority; else item = req->additional; while (item) { r = dnsname_to_labels(buf, buf_len, j, item->name, strlen(item->name), &table); if (r < 0) goto overflow; j = r; APPEND16(item->type); APPEND16(item->class); APPEND32(item->ttl); if (item->is_name) { off_t len_idx = j, name_start; j += 2; name_start = j; r = dnsname_to_labels(buf, buf_len, j, item->data, strlen(item->data), &table); if (r < 0) goto overflow; j = r; _t = htons( (j-name_start) ); memcpy(buf+len_idx, &_t, 2); } else { APPEND16(item->datalen); if (j+item->datalen > (off_t)buf_len) goto overflow; memcpy(buf+j, item->data, item->datalen); j += item->datalen; } item = item->next; } } if (j > 512) { overflow: j = 512; buf[2] |= 0x02; /* set the truncated bit. */ } req->response_len = (size_t)j; if (!(req->response = mm_malloc(req->response_len))) { server_request_free_answers(req); dnslabel_clear(&table); return (-1); } memcpy(req->response, buf, req->response_len); server_request_free_answers(req); dnslabel_clear(&table); return (0); } /* exported function */ int evdns_server_request_respond(struct evdns_server_request *_req, int err) { struct server_request *req = TO_SERVER_REQUEST(_req); struct evdns_server_port *port = req->port; ssize_t r; if (!req->response) { if ((r = evdns_server_request_format_response(req, err))<0) return (int)r; } r = sendto(port->socket, req->response, req->response_len, 0, (struct sockaddr*) &req->addr, req->addrlen); if (r<0) { int error = last_error(port->socket); if (! error_is_eagain(error)) return -1; if (port->pending_replies) { req->prev_pending = port->pending_replies->prev_pending; req->next_pending = port->pending_replies; req->prev_pending->next_pending = req->next_pending->prev_pending = req; } else { req->prev_pending = req->next_pending = req; port->pending_replies = req; port->choked = 1; (void) event_del(&port->event); CLEAR(&port->event); event_set(&port->event, port->socket, (port->closing?0:EV_READ) | EV_WRITE | EV_PERSIST, server_port_ready_callback, port); if (event_add(&port->event, NULL) < 0) { evdns_log(EVDNS_LOG_WARN, "Error from libevent when adding event for DNS server"); } } return 1; } if (server_request_free(req)) return 0; if (port->pending_replies) server_port_flush(port); return 0; } /* Free all storage held by RRs in req. */ static void server_request_free_answers(struct server_request *req) { struct server_reply_item *victim, *next, **list; int i; for (i = 0; i < 3; ++i) { if (i==0) list = &req->answer; else if (i==1) list = &req->authority; else list = &req->additional; victim = *list; while (victim) { next = victim->next; mm_free(victim->name); if (victim->data) mm_free(victim->data); mm_free(victim); victim = next; } *list = NULL; } } /* Free all storage held by req, and remove links to it. */ /* return true iff we just wound up freeing the server_port. */ static int server_request_free(struct server_request *req) { int i, rc=1; if (req->base.questions) { for (i = 0; i < req->base.nquestions; ++i) mm_free(req->base.questions[i]); mm_free(req->base.questions); } if (req->port) { if (req->port->pending_replies == req) { if (req->next_pending && req->next_pending != req) req->port->pending_replies = req->next_pending; else req->port->pending_replies = NULL; } rc = --req->port->refcnt; } if (req->response) { mm_free(req->response); } server_request_free_answers(req); if (req->next_pending && req->next_pending != req) { req->next_pending->prev_pending = req->prev_pending; req->prev_pending->next_pending = req->next_pending; } if (rc == 0) { server_port_free(req->port); CLEAR(req); mm_free(req); return (1); } CLEAR(req); mm_free(req); return (0); } /* Free all storage held by an evdns_server_port. Only called when the * reference count is down to 0. */ static void server_port_free(struct evdns_server_port *port) { assert(port); assert(!port->refcnt); assert(!port->pending_replies); if (port->socket > 0) { CLOSE_SOCKET(port->socket); port->socket = -1; } (void) event_del(&port->event); CLEAR(&port->event); CLEAR(port); mm_free(port); } /* exported function */ int evdns_server_request_drop(struct evdns_server_request *_req) { struct server_request *req = TO_SERVER_REQUEST(_req); server_request_free(req); return 0; } /* exported function */ int evdns_server_request_get_requesting_addr(struct evdns_server_request *_req, struct sockaddr *sa, int addr_len) { struct server_request *req = TO_SERVER_REQUEST(_req); if (addr_len < (int)req->addrlen) return -1; memcpy(sa, &(req->addr), req->addrlen); return req->addrlen; } #undef APPEND16 #undef APPEND32 /* this is a libevent callback function which is called when a request */ /* has timed out. */ static void evdns_request_timeout_callback(int fd, short events, void *arg) { struct evdns_request *const req = (struct evdns_request *) arg; (void) fd; (void) events; evdns_log(EVDNS_LOG_DEBUG, "Request %lx timed out", (unsigned long) arg); req->ns->timedout++; if (req->ns->timedout > global_max_nameserver_timeout) { req->ns->timedout = 0; nameserver_failed(req->ns, "request timed out."); } if (req->tx_count >= global_max_retransmits) { /* this request has failed */ reply_callback(req, 0, DNS_ERR_TIMEOUT, NULL); request_finished(req, &req_head); } else { /* retransmit it */ /* Stop waiting for the timeout. No need to do this in * request_finished; that one already deletes the timeout event. * XXXX023 port this change to libevent. */ del_timeout_event(req); evdns_request_transmit(req); } } /* try to send a request to a given server. */ /* */ /* return: */ /* 0 ok */ /* 1 temporary failure */ /* 2 other failure */ static int evdns_request_transmit_to(struct evdns_request *req, struct nameserver *server) { const ssize_t r = send(server->socket, (void*)req->request, req->request_len, 0); if (r < 0) { int err = last_error(server->socket); if (error_is_eagain(err)) return 1; nameserver_failed(req->ns, tor_socket_strerror(err)); return 2; } else if (r != (ssize_t)req->request_len) { return 1; /* short write */ } else { return 0; } } /* try to send a request, updating the fields of the request */ /* as needed */ /* */ /* return: */ /* 0 ok */ /* 1 failed */ static int evdns_request_transmit(struct evdns_request *req) { int retcode = 0, r; /* if we fail to send this packet then this flag marks it */ /* for evdns_transmit */ req->transmit_me = 1; if (req->trans_id == 0xffff) abort(); if (req->ns->choked) { /* don't bother trying to write to a socket */ /* which we have had EAGAIN from */ return 1; } r = evdns_request_transmit_to(req, req->ns); switch (r) { case 1: /* temp failure */ req->ns->choked = 1; nameserver_write_waiting(req->ns, 1); return 1; case 2: /* failed to transmit the request entirely. */ retcode = 1; /* fall through: we'll set a timeout, which will time out, * and make us retransmit the request anyway. */ default: /* transmitted; we need to check for timeout. */ evdns_log(EVDNS_LOG_DEBUG, "Setting timeout for request %lx", (unsigned long) req); if (add_timeout_event(req, &global_timeout) < 0) { evdns_log(EVDNS_LOG_WARN, "Error from libevent when adding timer for request %lx", (unsigned long) req); /* ???? Do more? */ } req->tx_count++; req->transmit_me = 0; return retcode; } } static void nameserver_probe_callback(int result, char type, int count, int ttl, void *addresses, void *arg) { struct sockaddr *addr = arg; struct nameserver *server; (void) type; (void) count; (void) ttl; (void) addresses; for (server = server_head; server; server = server->next) { if (sockaddr_eq(addr, (struct sockaddr*) &server->address, 1)) { if (result == DNS_ERR_NONE || result == DNS_ERR_NOTEXIST) { /* this is a good reply */ nameserver_up(server); } else { nameserver_probe_failed(server); } } if (server->next == server_head) break; } mm_free(addr); } static void nameserver_send_probe(struct nameserver *const ns) { struct evdns_request *req; struct sockaddr_storage *addr; /* here we need to send a probe to a given nameserver */ /* in the hope that it is up now. */ /* We identify the nameserver by its address, in case it is removed before * our probe comes back. */ addr = mm_malloc(sizeof(struct sockaddr_storage)); memcpy(addr, &ns->address, sizeof(struct sockaddr_storage)); evdns_log(EVDNS_LOG_DEBUG, "Sending probe to %s", debug_ntop((struct sockaddr *)&ns->address)); req = request_new(TYPE_A, "www.google.com", DNS_QUERY_NO_SEARCH, nameserver_probe_callback, addr); if (!req) { mm_free(addr); return; } /* we force this into the inflight queue no matter what */ request_trans_id_set(req, transaction_id_pick()); req->ns = ns; request_submit(req); } /* returns: */ /* 0 didn't try to transmit anything */ /* 1 tried to transmit something */ static int evdns_transmit(void) { char did_try_to_transmit = 0; if (req_head) { struct evdns_request *const started_at = req_head, *req = req_head; /* first transmit all the requests which are currently waiting */ do { if (req->transmit_me) { did_try_to_transmit = 1; evdns_request_transmit(req); } req = req->next; } while (req != started_at); } return did_try_to_transmit; } /* exported function */ int evdns_count_nameservers(void) { const struct nameserver *server = server_head; int n = 0; if (!server) return 0; do { ++n; server = server->next; } while (server != server_head); return n; } /* exported function */ int evdns_clear_nameservers_and_suspend(void) { struct nameserver *server = server_head, *started_at = server_head; struct evdns_request *req = req_head, *req_started_at = req_head; if (!server) return 0; while (1) { struct nameserver *next = server->next; (void) event_del(&server->event); CLEAR(&server->event); del_timeout_event(server); if (server->socket >= 0) CLOSE_SOCKET(server->socket); CLEAR(server); mm_free(server); if (next == started_at) break; server = next; } server_head = NULL; global_good_nameservers = 0; while (req) { struct evdns_request *next = req->next; req->tx_count = req->reissue_count = 0; req->ns = NULL; /* ???? What to do about searches? */ del_timeout_event(req); req->trans_id = 0; req->transmit_me = 0; global_requests_waiting++; evdns_request_insert(req, &req_waiting_head); /* We want to insert these suspended elements at the front of * the waiting queue, since they were pending before any of * the waiting entries were added. This is a circular list, * so we can just shift the start back by one.*/ req_waiting_head = req_waiting_head->prev; if (next == req_started_at) break; req = next; } req_head = NULL; global_requests_inflight = 0; return 0; } static struct sockaddr_storage global_bind_address; static socklen_t global_bind_addrlen = 0; static int global_bind_addr_is_set = 0; void evdns_set_default_outgoing_bind_address(const struct sockaddr *addr, socklen_t addrlen) { memset(&global_bind_address, 0, sizeof(global_bind_address)); if (addr) { assert(addrlen <= (socklen_t)sizeof(global_bind_address)); memcpy(&global_bind_address, addr, addrlen); global_bind_addrlen = addrlen; global_bind_addr_is_set = 1; } else { global_bind_addr_is_set = 0; } } /* exported function */ int evdns_resume(void) { evdns_requests_pump_waiting_queue(); return 0; } static int sockaddr_is_loopback(const struct sockaddr *addr) { static const char LOOPBACK_S6[16] = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\1"; if (addr->sa_family == AF_INET) { struct sockaddr_in *sin = (struct sockaddr_in *)addr; return (ntohl(sin->sin_addr.s_addr) & 0xff000000) == 0x7f000000; } else if (addr->sa_family == AF_INET6) { struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)addr; return fast_memeq(sin6->sin6_addr.s6_addr, LOOPBACK_S6, 16); } return 0; } static int _evdns_nameserver_add_impl(const struct sockaddr *address, socklen_t addrlen) { /* first check to see if we already have this nameserver */ const struct nameserver *server = server_head, *const started_at = server_head; struct nameserver *ns; int err = 0; if (server) { do { if (sockaddr_eq(address, (struct sockaddr *)&server->address, 1)) { evdns_log(EVDNS_LOG_DEBUG, "Duplicate nameserver."); return 3; } server = server->next; } while (server != started_at); } if (addrlen > (int)sizeof(ns->address)) { evdns_log(EVDNS_LOG_DEBUG, "Addrlen %d too long.", (int)addrlen); return 2; } ns = (struct nameserver *) mm_malloc(sizeof(struct nameserver)); if (!ns) return -1; memset(ns, 0, sizeof(struct nameserver)); evtimer_set(&ns->timeout_event, nameserver_prod_callback, ns); #if 1 ns->socket = tor_open_socket_nonblocking(address->sa_family, SOCK_DGRAM, 0); if (!SOCKET_OK(ns->socket)) { err = 1; goto out1; } #else ns->socket = tor_open_socket(address->sa_family, SOCK_DGRAM, 0); if (ns->socket < 0) { err = 1; goto out1; } #ifdef _WIN32 { u_long nonblocking = 1; ioctlsocket(ns->socket, FIONBIO, &nonblocking); } #else if (fcntl(ns->socket, F_SETFL, O_NONBLOCK) == -1) { evdns_log(EVDNS_LOG_WARN, "Error %s (%d) while settings file status flags.", tor_socket_strerror(errno), errno); err = 2; goto out2; } #endif #endif /* 1 */ if (global_bind_addr_is_set && !sockaddr_is_loopback((struct sockaddr*)&global_bind_address)) { if (bind(ns->socket, (struct sockaddr *)&global_bind_address, global_bind_addrlen) < 0) { evdns_log(EVDNS_LOG_DEBUG, "Couldn't bind to outgoing address."); err = 2; goto out2; } } if (connect(ns->socket, address, addrlen) != 0) { evdns_log(EVDNS_LOG_DEBUG, "Couldn't open socket to nameserver."); err = 2; goto out2; } memcpy(&ns->address, address, addrlen); ns->state = 1; event_set(&ns->event, ns->socket, EV_READ | EV_PERSIST, nameserver_ready_callback, ns); if (event_add(&ns->event, NULL) < 0) { evdns_log(EVDNS_LOG_DEBUG, "Couldn't add event for nameserver."); err = 2; goto out2; } evdns_log(EVDNS_LOG_DEBUG, "Added nameserver %s", debug_ntop(address)); /* insert this nameserver into the list of them */ if (!server_head) { ns->next = ns->prev = ns; server_head = ns; } else { ns->next = server_head->next; ns->prev = server_head; server_head->next = ns; if (server_head->prev == server_head) { server_head->prev = ns; } } global_good_nameservers++; return 0; out2: CLOSE_SOCKET(ns->socket); out1: CLEAR(ns); mm_free(ns); evdns_log(EVDNS_LOG_WARN, "Unable to add nameserver %s: error %d", debug_ntop(address), err); return err; } /* exported function */ int evdns_nameserver_add(uint32_t address) { struct sockaddr_in sin; memset(&sin, 0, sizeof(sin)); sin.sin_family = AF_INET; #ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN sin.sin_len = sizeof(sin); #endif sin.sin_addr.s_addr = htonl(address); sin.sin_port = 53; return _evdns_nameserver_add_impl((struct sockaddr*) &sin, sizeof(sin)); } /* exported function */ int evdns_nameserver_ip_add(const char *ip_as_string) { int port; char buf[128]; const char *cp, *addr_part, *port_part; int is_ipv6; /* recognized formats are: * [ipv6]:port * ipv6 * [ipv6] * ipv4:port * ipv4 */ evdns_log(EVDNS_LOG_DEBUG, "Trying to add nameserver <%s>", ip_as_string); cp = strchr(ip_as_string, ':'); if (*ip_as_string == '[') { size_t len; if (!(cp = strchr(ip_as_string, ']'))) { evdns_log(EVDNS_LOG_DEBUG, "Nameserver missing closing ]"); return 4; } len = cp-(ip_as_string + 1); if (len > sizeof(buf)-1) { evdns_log(EVDNS_LOG_DEBUG, "[Nameserver] does not fit in buffer."); return 4; } memcpy(buf, ip_as_string+1, len); buf[len] = '\0'; addr_part = buf; if (cp[1] == ':') port_part = cp+2; else port_part = NULL; is_ipv6 = 1; } else if (cp && strchr(cp+1, ':')) { is_ipv6 = 1; addr_part = ip_as_string; port_part = NULL; } else if (cp) { is_ipv6 = 0; if (cp - ip_as_string > (int)sizeof(buf)-1) { evdns_log(EVDNS_LOG_DEBUG, "Nameserver does not fit in buffer."); return 4; } memcpy(buf, ip_as_string, cp-ip_as_string); buf[cp-ip_as_string] = '\0'; addr_part = buf; port_part = cp+1; } else { addr_part = ip_as_string; port_part = NULL; is_ipv6 = 0; } if (port_part == NULL) { port = 53; } else { port = strtoint(port_part); if (port <= 0 || port > 65535) { evdns_log(EVDNS_LOG_DEBUG, "Nameserver port <%s> out of range", port_part); return 4; } } /* Tor-only. needs a more general fix. */ assert(addr_part); if (is_ipv6) { struct sockaddr_in6 sin6; memset(&sin6, 0, sizeof(sin6)); #ifdef HAVE_STRUCT_SOCKADDR_IN6_SIN6_LEN sin6.sin6_len = sizeof(sin6); #endif sin6.sin6_family = AF_INET6; sin6.sin6_port = htons(port); if (1 != tor_inet_pton(AF_INET6, addr_part, &sin6.sin6_addr)) { evdns_log(EVDNS_LOG_DEBUG, "inet_pton(%s) failed", addr_part); return 4; } return _evdns_nameserver_add_impl((struct sockaddr*)&sin6, sizeof(sin6)); } else { struct sockaddr_in sin; memset(&sin, 0, sizeof(sin)); #ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN sin.sin_len = sizeof(sin); #endif sin.sin_family = AF_INET; sin.sin_port = htons(port); if (!inet_aton(addr_part, &sin.sin_addr)) { evdns_log(EVDNS_LOG_DEBUG, "inet_pton(%s) failed", addr_part); return 4; } return _evdns_nameserver_add_impl((struct sockaddr*)&sin, sizeof(sin)); } } int evdns_nameserver_sockaddr_add(const struct sockaddr *sa, socklen_t len) { return _evdns_nameserver_add_impl(sa, len); } /* insert into the tail of the queue */ static void evdns_request_insert(struct evdns_request *req, struct evdns_request **head) { if (!*head) { *head = req; req->next = req->prev = req; return; } req->prev = (*head)->prev; req->prev->next = req; req->next = *head; (*head)->prev = req; } static int string_num_dots(const char *s) { int count = 0; while ((s = strchr(s, '.'))) { s++; count++; } return count; } static struct evdns_request * request_new(int type, const char *name, int flags, evdns_callback_type callback, void *user_ptr) { const char issuing_now = (global_requests_inflight < global_max_requests_inflight) ? 1 : 0; const size_t name_len = strlen(name); const size_t request_max_len = evdns_request_len(name_len); const u16 trans_id = issuing_now ? transaction_id_pick() : 0xffff; /* the request data is alloced in a single block with the header */ struct evdns_request *const req = (struct evdns_request *) mm_malloc(sizeof(struct evdns_request) + request_max_len); char namebuf[256]; int rlen; (void) flags; if (!req) return NULL; if (name_len >= sizeof(namebuf)) { _mm_free(req); return NULL; } memset(req, 0, sizeof(struct evdns_request)); evtimer_set(&req->timeout_event, evdns_request_timeout_callback, req); if (global_randomize_case) { unsigned i; char randbits[32]; strlcpy(namebuf, name, sizeof(namebuf)); rand_bytes_function(randbits, (name_len+7)/8); for (i = 0; i < name_len; ++i) { if (ISALPHA(namebuf[i])) { if ((randbits[i >> 3] & (1<<(i%7)))) namebuf[i] = TOLOWER(namebuf[i]); else namebuf[i] = TOUPPER(namebuf[i]); } } name = namebuf; } /* request data lives just after the header */ req->request = ((u8 *) req) + sizeof(struct evdns_request); /* denotes that the request data shouldn't be mm_free()ed */ req->request_appended = 1; rlen = evdns_request_data_build(name, name_len, trans_id, type, CLASS_INET, req->request, request_max_len); if (rlen < 0) goto err1; req->request_len = rlen; req->trans_id = trans_id; req->tx_count = 0; req->request_type = type; req->user_pointer = user_ptr; req->user_callback = callback; req->ns = issuing_now ? nameserver_pick() : NULL; req->next = req->prev = NULL; return req; err1: CLEAR(req); _mm_free(req); return NULL; } static void request_submit(struct evdns_request *const req) { if (req->ns) { /* if it has a nameserver assigned then this is going */ /* straight into the inflight queue */ evdns_request_insert(req, &req_head); global_requests_inflight++; evdns_request_transmit(req); } else { evdns_request_insert(req, &req_waiting_head); global_requests_waiting++; } } /* exported function */ int evdns_resolve_ipv4(const char *name, int flags, evdns_callback_type callback, void *ptr) { evdns_log(EVDNS_LOG_DEBUG, "Resolve requested for %s", name); if (flags & DNS_QUERY_NO_SEARCH) { struct evdns_request *const req = request_new(TYPE_A, name, flags, callback, ptr); if (req == NULL) return (1); request_submit(req); return (0); } else { return (search_request_new(TYPE_A, name, flags, callback, ptr)); } } /* exported function */ int evdns_resolve_ipv6(const char *name, int flags, evdns_callback_type callback, void *ptr) { evdns_log(EVDNS_LOG_DEBUG, "Resolve requested for %s", name); if (flags & DNS_QUERY_NO_SEARCH) { struct evdns_request *const req = request_new(TYPE_AAAA, name, flags, callback, ptr); if (req == NULL) return (1); request_submit(req); return (0); } else { return (search_request_new(TYPE_AAAA, name, flags, callback, ptr)); } } int evdns_resolve_reverse(const struct in_addr *in, int flags, evdns_callback_type callback, void *ptr) { char buf[32]; struct evdns_request *req; u32 a; assert(in); a = ntohl(in->s_addr); snprintf(buf, sizeof(buf), "%d.%d.%d.%d.in-addr.arpa", (int)(u8)((a )&0xff), (int)(u8)((a>>8 )&0xff), (int)(u8)((a>>16)&0xff), (int)(u8)((a>>24)&0xff)); evdns_log(EVDNS_LOG_DEBUG, "Resolve requested for %s (reverse)", buf); req = request_new(TYPE_PTR, buf, flags, callback, ptr); if (!req) return 1; request_submit(req); return 0; } int evdns_resolve_reverse_ipv6(const struct in6_addr *in, int flags, evdns_callback_type callback, void *ptr) { /* 32 nybbles, 32 periods, "ip6.arpa", NUL. */ char buf[73]; char *cp; struct evdns_request *req; int i; assert(in); cp = buf; for (i=15; i >= 0; --i) { u8 byte = in->s6_addr[i]; *cp++ = "0123456789abcdef"[byte & 0x0f]; *cp++ = '.'; *cp++ = "0123456789abcdef"[byte >> 4]; *cp++ = '.'; } assert(cp + strlen("ip6.arpa") < buf+sizeof(buf)); memcpy(cp, "ip6.arpa", strlen("ip6.arpa")+1); evdns_log(EVDNS_LOG_DEBUG, "Resolve requested for %s (reverse)", buf); req = request_new(TYPE_PTR, buf, flags, callback, ptr); if (!req) return 1; request_submit(req); return 0; } /*/////////////////////////////////////////////////////////////////// */ /* Search support */ /* */ /* the libc resolver has support for searching a number of domains */ /* to find a name. If nothing else then it takes the single domain */ /* from the gethostname() call. */ /* */ /* It can also be configured via the domain and search options in a */ /* resolv.conf. */ /* */ /* The ndots option controls how many dots it takes for the resolver */ /* to decide that a name is non-local and so try a raw lookup first. */ struct search_domain { size_t len; struct search_domain *next; /* the text string is appended to this structure */ }; struct search_state { int refcount; int ndots; int num_domains; struct search_domain *head; }; static struct search_state *global_search_state = NULL; static void search_state_decref(struct search_state *const state) { if (!state) return; state->refcount--; if (!state->refcount) { struct search_domain *next, *dom; for (dom = state->head; dom; dom = next) { next = dom->next; CLEAR(dom); _mm_free(dom); } CLEAR(state); _mm_free(state); } } static struct search_state * search_state_new(void) { struct search_state *state = (struct search_state *) mm_malloc(sizeof(struct search_state)); if (!state) return NULL; memset(state, 0, sizeof(struct search_state)); state->refcount = 1; state->ndots = 1; return state; } static void search_postfix_clear(void) { search_state_decref(global_search_state); global_search_state = search_state_new(); } /* exported function */ void evdns_search_clear(void) { search_postfix_clear(); } static void search_postfix_add(const char *domain) { size_t domain_len; struct search_domain *sdomain; while (domain[0] == '.') domain++; domain_len = strlen(domain); if (!global_search_state) global_search_state = search_state_new(); if (!global_search_state) return; global_search_state->num_domains++; sdomain = (struct search_domain *) mm_malloc(sizeof(struct search_domain) + domain_len); if (!sdomain) return; memcpy( ((u8 *) sdomain) + sizeof(struct search_domain), domain, domain_len); sdomain->next = global_search_state->head; sdomain->len = domain_len; global_search_state->head = sdomain; } /* reverse the order of members in the postfix list. This is needed because, */ /* when parsing resolv.conf we push elements in the wrong order */ static void search_reverse(void) { struct search_domain *cur, *prev = NULL, *next; cur = global_search_state->head; while (cur) { next = cur->next; cur->next = prev; prev = cur; cur = next; } global_search_state->head = prev; } /* exported function */ void evdns_search_add(const char *domain) { search_postfix_add(domain); } /* exported function */ void evdns_search_ndots_set(const int ndots) { if (!global_search_state) global_search_state = search_state_new(); if (!global_search_state) return; global_search_state->ndots = ndots; } static void search_set_from_hostname(void) { char hostname[HOST_NAME_MAX + 1], *domainname; search_postfix_clear(); if (gethostname(hostname, sizeof(hostname))) return; domainname = strchr(hostname, '.'); if (!domainname) return; search_postfix_add(domainname); } /* warning: returns malloced string */ static char * search_make_new(const struct search_state *const state, int n, const char *const base_name) { const size_t base_len = strlen(base_name); const char need_to_append_dot = base_name[base_len - 1] == '.' ? 0 : 1; struct search_domain *dom; for (dom = state->head; dom; dom = dom->next) { if (!n--) { /* this is the postfix we want */ /* the actual postfix string is kept at the end of the structure */ const u8 *const postfix = ((u8 *) dom) + sizeof(struct search_domain); const size_t postfix_len = dom->len; char *const newname = (char *) mm_malloc(base_len + need_to_append_dot + postfix_len + 1); if (!newname) return NULL; memcpy(newname, base_name, base_len); if (need_to_append_dot) newname[base_len] = '.'; memcpy(newname + base_len + need_to_append_dot, postfix, postfix_len); newname[base_len + need_to_append_dot + postfix_len] = 0; return newname; } } /* we ran off the end of the list and still didn't find the requested string */ abort(); return NULL; /* unreachable; stops warnings in some compilers. */ } static int search_request_new(int type, const char *const name, int flags, evdns_callback_type user_callback, void *user_arg) { assert(type == TYPE_A || type == TYPE_AAAA); if ( ((flags & DNS_QUERY_NO_SEARCH) == 0) && global_search_state && global_search_state->num_domains) { /* we have some domains to search */ struct evdns_request *req; if (string_num_dots(name) >= global_search_state->ndots) { req = request_new(type, name, flags, user_callback, user_arg); if (!req) return 1; req->search_index = -1; } else { char *const new_name = search_make_new(global_search_state, 0, name); if (!new_name) return 1; req = request_new(type, new_name, flags, user_callback, user_arg); _mm_free(new_name); if (!req) return 1; req->search_index = 0; } req->search_origname = mm_strdup(name); req->search_state = global_search_state; req->search_flags = flags; global_search_state->refcount++; request_submit(req); return 0; } else { struct evdns_request *const req = request_new(type, name, flags, user_callback, user_arg); if (!req) return 1; request_submit(req); return 0; } } /* this is called when a request has failed to find a name. We need to check */ /* if it is part of a search and, if so, try the next name in the list */ /* returns: */ /* 0 another request has been submitted */ /* 1 no more requests needed */ static int search_try_next(struct evdns_request *const req) { if (req->search_state) { /* it is part of a search */ char *new_name; struct evdns_request *newreq; req->search_index++; if (req->search_index >= req->search_state->num_domains) { /* no more postfixes to try, however we may need to try */ /* this name without a postfix */ if (string_num_dots(req->search_origname) < req->search_state->ndots) { /* yep, we need to try it raw */ struct evdns_request *const newreq = request_new(req->request_type, req->search_origname, req->search_flags, req->user_callback, req->user_pointer); evdns_log(EVDNS_LOG_DEBUG, "Search: trying raw query %s", req->search_origname); if (newreq) { request_submit(newreq); return 0; } } return 1; } new_name = search_make_new(req->search_state, req->search_index, req->search_origname); if (!new_name) return 1; evdns_log(EVDNS_LOG_DEBUG, "Search: now trying %s (%d)", new_name, req->search_index); newreq = request_new(req->request_type, new_name, req->search_flags, req->user_callback, req->user_pointer); mm_free(new_name); if (!newreq) return 1; newreq->search_origname = req->search_origname; req->search_origname = NULL; newreq->search_state = req->search_state; newreq->search_flags = req->search_flags; newreq->search_index = req->search_index; newreq->search_state->refcount++; request_submit(newreq); return 0; } return 1; } static void search_request_finished(struct evdns_request *const req) { if (req->search_state) { search_state_decref(req->search_state); req->search_state = NULL; } if (req->search_origname) { mm_free(req->search_origname); req->search_origname = NULL; } } /*/////////////////////////////////////////////////////////////////// */ /* Parsing resolv.conf files */ static void evdns_resolv_set_defaults(int flags) { /* if the file isn't found then we assume a local resolver */ if (flags & DNS_OPTION_SEARCH) search_set_from_hostname(); if (flags & DNS_OPTION_NAMESERVERS) evdns_nameserver_ip_add("127.0.0.1"); } /* helper version of atoi which returns -1 on error */ static int strtoint(const char *const str) { char *endptr; const long r = strtol(str, &endptr, 10); if (*endptr || r > INT_MAX) return -1; return (int)r; } /* helper version of atoi that returns -1 on error and clips to bounds. */ static int strtoint_clipped(const char *const str, int min, int max) { int r = strtoint(str); if (r == -1) return r; else if (rmax) return max; else return r; } /* exported function */ int evdns_set_option(const char *option, const char *val, int flags) { if (!strncmp(option, "ndots:", 6)) { const int ndots = strtoint(val); if (ndots == -1) return -1; if (!(flags & DNS_OPTION_SEARCH)) return 0; evdns_log(EVDNS_LOG_DEBUG, "Setting ndots to %d", ndots); if (!global_search_state) global_search_state = search_state_new(); if (!global_search_state) return -1; global_search_state->ndots = ndots; } else if (!strncmp(option, "timeout:", 8)) { const int timeout = strtoint(val); if (timeout == -1) return -1; if (!(flags & DNS_OPTION_MISC)) return 0; evdns_log(EVDNS_LOG_DEBUG, "Setting timeout to %d", timeout); global_timeout.tv_sec = timeout; } else if (!strncmp(option, "max-timeouts:", 12)) { const int maxtimeout = strtoint_clipped(val, 1, 255); if (maxtimeout == -1) return -1; if (!(flags & DNS_OPTION_MISC)) return 0; evdns_log(EVDNS_LOG_DEBUG, "Setting maximum allowed timeouts to %d", maxtimeout); global_max_nameserver_timeout = maxtimeout; } else if (!strncmp(option, "max-inflight:", 13)) { const int maxinflight = strtoint_clipped(val, 1, 65000); if (maxinflight == -1) return -1; if (!(flags & DNS_OPTION_MISC)) return 0; evdns_log(EVDNS_LOG_DEBUG, "Setting maximum inflight requests to %d", maxinflight); global_max_requests_inflight = maxinflight; } else if (!strncmp(option, "attempts:", 9)) { int retries = strtoint(val); if (retries == -1) return -1; if (retries > 255) retries = 255; if (!(flags & DNS_OPTION_MISC)) return 0; evdns_log(EVDNS_LOG_DEBUG, "Setting retries to %d", retries); global_max_retransmits = retries; } else if (!strncmp(option, "randomize-case:", 15)) { int randcase = strtoint(val); if (!(flags & DNS_OPTION_MISC)) return 0; evdns_log(EVDNS_LOG_DEBUG, "Setting randomize_case to %d", randcase); global_randomize_case = randcase; } return 0; } static void resolv_conf_parse_line(char *const start, int flags) { char *strtok_state; static const char *const delims = " \t"; #define NEXT_TOKEN tor_strtok_r(NULL, delims, &strtok_state) char *const first_token = tor_strtok_r(start, delims, &strtok_state); if (!first_token) return; if (!strcmp(first_token, "nameserver") && (flags & DNS_OPTION_NAMESERVERS)) { const char *const nameserver = NEXT_TOKEN; if (nameserver) evdns_nameserver_ip_add(nameserver); } else if (!strcmp(first_token, "domain") && (flags & DNS_OPTION_SEARCH)) { const char *const domain = NEXT_TOKEN; if (domain) { search_postfix_clear(); search_postfix_add(domain); } } else if (!strcmp(first_token, "search") && (flags & DNS_OPTION_SEARCH)) { const char *domain; search_postfix_clear(); while ((domain = NEXT_TOKEN)) { search_postfix_add(domain); } search_reverse(); } else if (!strcmp(first_token, "options")) { const char *option; while ((option = NEXT_TOKEN)) { const char *val = strchr(option, ':'); evdns_set_option(option, val ? val+1 : "", flags); } } #undef NEXT_TOKEN } /* exported function */ /* returns: */ /* 0 no errors */ /* 1 failed to open file */ /* 2 failed to stat file */ /* 3 file too large */ /* 4 out of memory */ /* 5 short read from file */ int evdns_resolv_conf_parse(int flags, const char *const filename) { struct stat st; int fd, n, r; u8 *resolv; char *start; int err = 0; evdns_log(EVDNS_LOG_DEBUG, "Parsing resolv.conf file %s", filename); fd = tor_open_cloexec(filename, O_RDONLY, 0); if (fd < 0) { evdns_resolv_set_defaults(flags); return 1; } if (fstat(fd, &st)) { err = 2; goto out1; } if (!st.st_size) { evdns_resolv_set_defaults(flags); err = (flags & DNS_OPTION_NAMESERVERS) ? 6 : 0; goto out1; } if (st.st_size > 65535) { err = 3; goto out1; } /* no resolv.conf should be any bigger */ resolv = (u8 *) mm_malloc((size_t)st.st_size + 1); if (!resolv) { err = 4; goto out1; } n = 0; while ((r = (int)read(fd, resolv+n, (size_t)st.st_size-n)) > 0) { n += r; if (n == st.st_size) break; assert(n < st.st_size); } if (r < 0) { err = 5; goto out2; } resolv[n] = 0; /* we malloced an extra byte; this should be fine. */ start = (char *) resolv; for (;;) { char *const newline = strchr(start, '\n'); if (!newline) { resolv_conf_parse_line(start, flags); break; } else { *newline = 0; resolv_conf_parse_line(start, flags); start = newline + 1; } } if (!server_head && (flags & DNS_OPTION_NAMESERVERS)) { /* no nameservers were configured. */ evdns_nameserver_ip_add("127.0.0.1"); err = 6; } if (flags & DNS_OPTION_SEARCH && (!global_search_state || global_search_state->num_domains == 0)) { search_set_from_hostname(); } out2: mm_free(resolv); out1: close(fd); return err; } #ifdef _WIN32 /* Add multiple nameservers from a space-or-comma-separated list. */ static int evdns_nameserver_ip_add_line(const char *ips) { const char *addr; char *buf; int r; while (*ips) { while (ISSPACE(*ips) || *ips == ',' || *ips == '\t') ++ips; addr = ips; while (ISDIGIT(*ips) || *ips == '.' || *ips == ':' || *ips == '[' || *ips == ']') ++ips; buf = mm_malloc(ips-addr+1); if (!buf) return 4; memcpy(buf, addr, ips-addr); buf[ips-addr] = '\0'; r = evdns_nameserver_ip_add(buf); mm_free(buf); if (r) return r; } return 0; } typedef DWORD(WINAPI *GetNetworkParams_fn_t)(FIXED_INFO *, DWORD*); /* Use the windows GetNetworkParams interface in iphlpapi.dll to */ /* figure out what our nameservers are. */ static int load_nameservers_with_getnetworkparams(void) { /* Based on MSDN examples and inspection of c-ares code. */ FIXED_INFO *fixed; HMODULE handle = 0; ULONG size = sizeof(FIXED_INFO); void *buf = NULL; int status = 0, r, added_any; IP_ADDR_STRING *ns; GetNetworkParams_fn_t fn; if (!(handle = load_windows_system_library(TEXT("iphlpapi.dll")))) { evdns_log(EVDNS_LOG_WARN, "Could not open iphlpapi.dll"); /* right now status = 0, doesn't that mean "good" - mikec */ status = -1; goto done; } if (!(fn = (GetNetworkParams_fn_t) GetProcAddress(handle, TEXT("GetNetworkParams")))) { evdns_log(EVDNS_LOG_WARN, "Could not get address of function."); /* same as above */ status = -1; goto done; } buf = mm_malloc(size); if (!buf) { status = 4; goto done; } fixed = buf; r = fn(fixed, &size); if (r != ERROR_SUCCESS && r != ERROR_BUFFER_OVERFLOW) { status = -1; goto done; } if (r != ERROR_SUCCESS) { mm_free(buf); buf = mm_malloc(size); if (!buf) { status = 4; goto done; } fixed = buf; r = fn(fixed, &size); if (r != ERROR_SUCCESS) { evdns_log(EVDNS_LOG_DEBUG, "fn() failed."); status = -1; goto done; } } assert(fixed); added_any = 0; ns = &(fixed->DnsServerList); while (ns) { r = evdns_nameserver_ip_add_line(ns->IpAddress.String); if (r) { evdns_log(EVDNS_LOG_DEBUG,"Could not add nameserver %s to list, " "error: %d; status: %d", (ns->IpAddress.String),(int)GetLastError(), r); status = r; } else { evdns_log(EVDNS_LOG_DEBUG,"Successfully added %s as nameserver",ns->IpAddress.String); added_any++; } ns = ns->Next; } if (!added_any) { evdns_log(EVDNS_LOG_DEBUG, "No nameservers added."); if (status == 0) status = -1; } else { status = 0; } done: if (buf) mm_free(buf); if (handle) FreeLibrary(handle); return status; } static int config_nameserver_from_reg_key(HKEY key, const TCHAR *subkey) { char *buf; char ansibuf[MAX_PATH] = {0}; DWORD bufsz = 0, type = 0; int status = 0; if (RegQueryValueEx(key, subkey, 0, &type, NULL, &bufsz) != ERROR_MORE_DATA) return -1; if (!(buf = mm_malloc(bufsz))) return -1; if (RegQueryValueEx(key, subkey, 0, &type, (LPBYTE)buf, &bufsz) == ERROR_SUCCESS && bufsz > 1) { wcstombs(ansibuf,(wchar_t*)buf,MAX_PATH);/*XXXX UNICODE */ abuf[MAX_PATH-1] = '\0'; status = evdns_nameserver_ip_add_line(ansibuf); } mm_free(buf); return status; } #define SERVICES_KEY TEXT("System\\CurrentControlSet\\Services\\") #define WIN_NS_9X_KEY SERVICES_KEY TEXT("VxD\\MSTCP") #define WIN_NS_NT_KEY SERVICES_KEY TEXT("Tcpip\\Parameters") static int load_nameservers_from_registry(void) { int found = 0; int r; OSVERSIONINFO info; memset(&info, 0, sizeof(info)); info.dwOSVersionInfoSize = sizeof (info); GetVersionEx(&info); #define TRY(k, name) \ if (!found && config_nameserver_from_reg_key(k,TEXT(name)) == 0) { \ evdns_log(EVDNS_LOG_DEBUG,"Found nameservers in %s/%s",#k,name); \ found = 1; \ } else if (!found) { \ evdns_log(EVDNS_LOG_DEBUG,"Didn't find nameservers in %s/%s", \ #k,#name); \ } if (info.dwMajorVersion >= 5) { /* NT */ HKEY nt_key = 0, interfaces_key = 0; if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, WIN_NS_NT_KEY, 0, KEY_READ, &nt_key) != ERROR_SUCCESS) { evdns_log(EVDNS_LOG_DEBUG,"Couldn't open nt key, %d",(int)GetLastError()); return -1; } r = RegOpenKeyEx(nt_key, TEXT("Interfaces"), 0, KEY_QUERY_VALUE|KEY_ENUMERATE_SUB_KEYS, &interfaces_key); if (r != ERROR_SUCCESS) { evdns_log(EVDNS_LOG_DEBUG,"Couldn't open interfaces key, %d",(int)GetLastError()); return -1; } TRY(nt_key, "NameServer"); TRY(nt_key, "DhcpNameServer"); TRY(interfaces_key, "NameServer"); TRY(interfaces_key, "DhcpNameServer"); RegCloseKey(interfaces_key); RegCloseKey(nt_key); } else { HKEY win_key = 0; if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, WIN_NS_9X_KEY, 0, KEY_READ, &win_key) != ERROR_SUCCESS) { evdns_log(EVDNS_LOG_DEBUG, "Couldn't open registry key, %d", (int)GetLastError()); return -1; } TRY(win_key, "NameServer"); RegCloseKey(win_key); } if (found == 0) { evdns_log(EVDNS_LOG_WARN,"Didn't find any nameservers."); } return found ? 0 : -1; #undef TRY } int evdns_config_windows_nameservers(void) { if (load_nameservers_with_getnetworkparams() == 0) return 0; return load_nameservers_from_registry(); } #endif int evdns_init(void) { int res = 0; #ifdef _WIN32 evdns_config_windows_nameservers(); #else res = evdns_resolv_conf_parse(DNS_OPTIONS_ALL, "/etc/resolv.conf"); #endif return (res); } const char * evdns_err_to_string(int err) { switch (err) { case DNS_ERR_NONE: return "no error"; case DNS_ERR_FORMAT: return "misformatted query"; case DNS_ERR_SERVERFAILED: return "server failed"; case DNS_ERR_NOTEXIST: return "name does not exist"; case DNS_ERR_NOTIMPL: return "query not implemented"; case DNS_ERR_REFUSED: return "refused"; case DNS_ERR_TRUNCATED: return "reply truncated or ill-formed"; case DNS_ERR_UNKNOWN: return "unknown"; case DNS_ERR_TIMEOUT: return "request timed out"; case DNS_ERR_SHUTDOWN: return "dns subsystem shut down"; default: return "[Unknown error code]"; } } void evdns_shutdown(int fail_requests) { struct nameserver *server, *server_next; struct search_domain *dom, *dom_next; while (req_head) { if (fail_requests) reply_callback(req_head, 0, DNS_ERR_SHUTDOWN, NULL); request_finished(req_head, &req_head); } while (req_waiting_head) { if (fail_requests) reply_callback(req_waiting_head, 0, DNS_ERR_SHUTDOWN, NULL); request_finished(req_waiting_head, &req_waiting_head); } global_requests_inflight = global_requests_waiting = 0; for (server = server_head; server; server = server_next) { server_next = server->next; if (server->socket >= 0) CLOSE_SOCKET(server->socket); (void) event_del(&server->event); del_timeout_event(server); CLEAR(server); mm_free(server); if (server_next == server_head) break; } server_head = NULL; global_good_nameservers = 0; if (global_search_state) { for (dom = global_search_state->head; dom; dom = dom_next) { dom_next = dom->next; CLEAR(dom); mm_free(dom); } CLEAR(global_search_state); mm_free(global_search_state); global_search_state = NULL; } evdns_log_fn = NULL; } #ifdef EVDNS_MAIN void main_callback(int result, char type, int count, int ttl, void *addrs, void *orig) { char *n = (char*)orig; int i; for (i = 0; i < count; ++i) { if (type == DNS_IPv4_A) { printf("%s: %s\n", n, debug_ntoa(((u32*)addrs)[i])); } else if (type == DNS_PTR) { printf("%s: %s\n", n, ((char**)addrs)[i]); } } if (!count) { printf("%s: No answer (%d)\n", n, result); } fflush(stdout); } void evdns_server_callback(struct evdns_server_request *req, void *data) { int i, r; (void)data; /* dummy; give 192.168.11.11 as an answer for all A questions, * give foo.bar.example.com as an answer for all PTR questions. */ for (i = 0; i < req->nquestions; ++i) { u32 ans = htonl(0xc0a80b0bUL); if (req->questions[i]->type == EVDNS_TYPE_A && req->questions[i]->dns_question_class == EVDNS_CLASS_INET) { printf(" -- replying for %s (A)\n", req->questions[i]->name); r = evdns_server_request_add_a_reply(req, req->questions[i]->name, 1, &ans, 10); if (r<0) printf("eeep, didn't work.\n"); } else if (req->questions[i]->type == EVDNS_TYPE_PTR && req->questions[i]->dns_question_class == EVDNS_CLASS_INET) { printf(" -- replying for %s (PTR)\n", req->questions[i]->name); r = evdns_server_request_add_ptr_reply(req, NULL, req->questions[i]->name, "foo.bar.example.com", 10); } else { printf(" -- skipping %s [%d %d]\n", req->questions[i]->name, req->questions[i]->type, req->questions[i]->dns_question_class); } } r = evdns_server_request_respond(req, 0); if (r<0) printf("eeek, couldn't send reply.\n"); } void logfn(int is_warn, const char *msg) { (void) is_warn; fprintf(stderr, "%s\n", msg); } int main(int c, char **v) { int idx; int reverse = 0, verbose = 1, servertest = 0; if (c<2) { fprintf(stderr, "syntax: %s [-x] [-v] hostname\n", v[0]); fprintf(stderr, "syntax: %s [-servertest]\n", v[0]); return 1; } idx = 1; while (idx < c && v[idx][0] == '-') { if (!strcmp(v[idx], "-x")) reverse = 1; else if (!strcmp(v[idx], "-v")) verbose = 1; else if (!strcmp(v[idx], "-servertest")) servertest = 1; else fprintf(stderr, "Unknown option %s\n", v[idx]); ++idx; } event_init(); if (verbose) evdns_set_log_fn(logfn); evdns_resolv_conf_parse(DNS_OPTION_NAMESERVERS, "/etc/resolv.conf"); if (servertest) { int sock; struct sockaddr_in my_addr; #if 1 sock = tor_open_socket_nonblocking(PF_INET, SOCK_DGRAM, 0) #else sock = tor_open_socket(PF_INET, SOCK_DGRAM, 0); fcntl(sock, F_SETFL, O_NONBLOCK); #endif my_addr.sin_family = AF_INET; my_addr.sin_port = htons(10053); my_addr.sin_addr.s_addr = INADDR_ANY; if (bind(sock, (struct sockaddr*)&my_addr, sizeof(my_addr))<0) { perror("bind"); exit(1); } evdns_add_server_port(sock, 0, evdns_server_callback, NULL); } for (; idx < c; ++idx) { if (reverse) { struct in_addr addr; if (!inet_aton(v[idx], &addr)) { fprintf(stderr, "Skipping non-IP %s\n", v[idx]); continue; } fprintf(stderr, "resolving %s...\n",v[idx]); evdns_resolve_reverse(&addr, 0, main_callback, v[idx]); } else { fprintf(stderr, "resolving (fwd) %s...\n",v[idx]); evdns_resolve_ipv4(v[idx], 0, main_callback, v[idx]); } } fflush(stdout); event_dispatch(); return 0; } #endif /* Local Variables: */ /* tab-width: 4 */ /* c-basic-offset: 4 */ /* indent-tabs-mode: t */ /* End: */ tor-0.2.7.6/src/ext/tor_queue.h0000644000175000017500000005023212621363246013170 00000000000000/* $OpenBSD: queue.h,v 1.36 2012/04/11 13:29:14 naddy Exp $ */ /* $NetBSD: queue.h,v 1.11 1996/05/16 05:17:14 mycroft Exp $ */ /* * Copyright (c) 1991, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * @(#)queue.h 8.5 (Berkeley) 8/20/94 */ #ifndef TOR_QUEUE_H_ #define TOR_QUEUE_H_ /* * This file defines five types of data structures: singly-linked lists, * lists, simple queues, tail queues, and circular queues. * * * A singly-linked list is headed by a single forward pointer. The elements * are singly linked for minimum space and pointer manipulation overhead at * the expense of O(n) removal for arbitrary elements. New elements can be * added to the list after an existing element or at the head of the list. * Elements being removed from the head of the list should use the explicit * macro for this purpose for optimum efficiency. A singly-linked list may * only be traversed in the forward direction. Singly-linked lists are ideal * for applications with large datasets and few or no removals or for * implementing a LIFO queue. * * A list is headed by a single forward pointer (or an array of forward * pointers for a hash table header). The elements are doubly linked * so that an arbitrary element can be removed without a need to * traverse the list. New elements can be added to the list before * or after an existing element or at the head of the list. A list * may only be traversed in the forward direction. * * A simple queue is headed by a pair of pointers, one the head of the * list and the other to the tail of the list. The elements are singly * linked to save space, so elements can only be removed from the * head of the list. New elements can be added to the list before or after * an existing element, at the head of the list, or at the end of the * list. A simple queue may only be traversed in the forward direction. * * A tail queue is headed by a pair of pointers, one to the head of the * list and the other to the tail of the list. The elements are doubly * linked so that an arbitrary element can be removed without a need to * traverse the list. New elements can be added to the list before or * after an existing element, at the head of the list, or at the end of * the list. A tail queue may be traversed in either direction. * * A circle queue is headed by a pair of pointers, one to the head of the * list and the other to the tail of the list. The elements are doubly * linked so that an arbitrary element can be removed without a need to * traverse the list. New elements can be added to the list before or after * an existing element, at the head of the list, or at the end of the list. * A circle queue may be traversed in either direction, but has a more * complex end of list detection. * * For details on the use of these macros, see the queue(3) manual page. */ #if defined(QUEUE_MACRO_DEBUG) || (defined(_KERNEL) && defined(DIAGNOSTIC)) #define TOR_Q_INVALIDATE_(a) (a) = ((void *)-1) #else #define TOR_Q_INVALIDATE_(a) #endif /* * Singly-linked List definitions. */ #define TOR_SLIST_HEAD(name, type) \ struct name { \ struct type *slh_first; /* first element */ \ } #define TOR_SLIST_HEAD_INITIALIZER(head) \ { NULL } #define TOR_SLIST_ENTRY(type) \ struct { \ struct type *sle_next; /* next element */ \ } /* * Singly-linked List access methods. */ #define TOR_SLIST_FIRST(head) ((head)->slh_first) #define TOR_SLIST_END(head) NULL /* || 0 is for -Wparentheses-equality (-Wall?) appeasement under clang */ #define TOR_SLIST_EMPTY(head) ((SLIST_FIRST(head) == TOR_SLIST_END(head)) || 0) #define TOR_SLIST_NEXT(elm, field) ((elm)->field.sle_next) #define TOR_SLIST_FOREACH(var, head, field) \ for((var) = TOR_SLIST_FIRST(head); \ (var) != TOR_SLIST_END(head); \ (var) = TOR_SLIST_NEXT(var, field)) #define TOR_SLIST_FOREACH_SAFE(var, head, field, tvar) \ for ((var) = TOR_SLIST_FIRST(head); \ (var) && ((tvar) = TOR_SLIST_NEXT(var, field), 1); \ (var) = (tvar)) /* * Singly-linked List functions. */ #define TOR_SLIST_INIT(head) { \ TOR_SLIST_FIRST(head) = TOR_SLIST_END(head); \ } #define TOR_SLIST_INSERT_AFTER(slistelm, elm, field) do { \ (elm)->field.sle_next = (slistelm)->field.sle_next; \ (slistelm)->field.sle_next = (elm); \ } while (0) #define TOR_SLIST_INSERT_HEAD(head, elm, field) do { \ (elm)->field.sle_next = (head)->slh_first; \ (head)->slh_first = (elm); \ } while (0) #define TOR_SLIST_REMOVE_AFTER(elm, field) do { \ (elm)->field.sle_next = (elm)->field.sle_next->field.sle_next; \ } while (0) #define TOR_SLIST_REMOVE_HEAD(head, field) do { \ (head)->slh_first = (head)->slh_first->field.sle_next; \ } while (0) #define TOR_SLIST_REMOVE(head, elm, type, field) do { \ if ((head)->slh_first == (elm)) { \ TOR_SLIST_REMOVE_HEAD((head), field); \ } else { \ struct type *curelm = (head)->slh_first; \ \ while (curelm->field.sle_next != (elm)) \ curelm = curelm->field.sle_next; \ curelm->field.sle_next = \ curelm->field.sle_next->field.sle_next; \ TOR_Q_INVALIDATE_((elm)->field.sle_next); \ } \ } while (0) /* * List definitions. */ #define TOR_LIST_HEAD(name, type) \ struct name { \ struct type *lh_first; /* first element */ \ } #define TOR_LIST_HEAD_INITIALIZER(head) \ { NULL } #define TOR_LIST_ENTRY(type) \ struct { \ struct type *le_next; /* next element */ \ struct type **le_prev; /* address of previous next element */ \ } /* * List access methods */ #define TOR_LIST_FIRST(head) ((head)->lh_first) #define TOR_LIST_END(head) NULL /* || 0 is for -Wparentheses-equality (-Wall?) appeasement under clang */ #define TOR_LIST_EMPTY(head) \ ((TOR_LIST_FIRST(head) == TOR_LIST_END(head)) || 0) #define TOR_LIST_NEXT(elm, field) ((elm)->field.le_next) #define TOR_LIST_FOREACH(var, head, field) \ for((var) = TOR_LIST_FIRST(head); \ (var)!= TOR_LIST_END(head); \ (var) = TOR_LIST_NEXT(var, field)) #define TOR_LIST_FOREACH_SAFE(var, head, field, tvar) \ for ((var) = TOR_LIST_FIRST(head); \ (var) && ((tvar) = TOR_LIST_NEXT(var, field), 1); \ (var) = (tvar)) /* * List functions. */ #define TOR_LIST_INIT(head) do { \ TOR_LIST_FIRST(head) = TOR_LIST_END(head); \ } while (0) #define TOR_LIST_INSERT_AFTER(listelm, elm, field) do { \ if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \ (listelm)->field.le_next->field.le_prev = \ &(elm)->field.le_next; \ (listelm)->field.le_next = (elm); \ (elm)->field.le_prev = &(listelm)->field.le_next; \ } while (0) #define TOR_LIST_INSERT_BEFORE(listelm, elm, field) do { \ (elm)->field.le_prev = (listelm)->field.le_prev; \ (elm)->field.le_next = (listelm); \ *(listelm)->field.le_prev = (elm); \ (listelm)->field.le_prev = &(elm)->field.le_next; \ } while (0) #define TOR_LIST_INSERT_HEAD(head, elm, field) do { \ if (((elm)->field.le_next = (head)->lh_first) != NULL) \ (head)->lh_first->field.le_prev = &(elm)->field.le_next;\ (head)->lh_first = (elm); \ (elm)->field.le_prev = &(head)->lh_first; \ } while (0) #define TOR_LIST_REMOVE(elm, field) do { \ if ((elm)->field.le_next != NULL) \ (elm)->field.le_next->field.le_prev = \ (elm)->field.le_prev; \ *(elm)->field.le_prev = (elm)->field.le_next; \ TOR_Q_INVALIDATE_((elm)->field.le_prev); \ TOR_Q_INVALIDATE_((elm)->field.le_next); \ } while (0) #define TOR_LIST_REPLACE(elm, elm2, field) do { \ if (((elm2)->field.le_next = (elm)->field.le_next) != NULL) \ (elm2)->field.le_next->field.le_prev = \ &(elm2)->field.le_next; \ (elm2)->field.le_prev = (elm)->field.le_prev; \ *(elm2)->field.le_prev = (elm2); \ TOR_Q_INVALIDATE_((elm)->field.le_prev); \ TOR_Q_INVALIDATE_((elm)->field.le_next); \ } while (0) /* * Simple queue definitions. */ #define TOR_SIMPLEQ_HEAD(name, type) \ struct name { \ struct type *sqh_first; /* first element */ \ struct type **sqh_last; /* addr of last next element */ \ } #define TOR_SIMPLEQ_HEAD_INITIALIZER(head) \ { NULL, &(head).sqh_first } #define TOR_SIMPLEQ_ENTRY(type) \ struct { \ struct type *sqe_next; /* next element */ \ } /* * Simple queue access methods. */ #define TOR_SIMPLEQ_FIRST(head) ((head)->sqh_first) #define TOR_SIMPLEQ_END(head) NULL /* || 0 is for -Wparentheses-equality (-Wall?) appeasement under clang */ #define TOR_SIMPLEQ_EMPTY(head) \ ((TOR_SIMPLEQ_FIRST(head) == TOR_SIMPLEQ_END(head)) || 0) #define TOR_SIMPLEQ_NEXT(elm, field) ((elm)->field.sqe_next) #define TOR_SIMPLEQ_FOREACH(var, head, field) \ for((var) = TOR_SIMPLEQ_FIRST(head); \ (var) != TOR_SIMPLEQ_END(head); \ (var) = TOR_SIMPLEQ_NEXT(var, field)) #define TOR_SIMPLEQ_FOREACH_SAFE(var, head, field, tvar) \ for ((var) = TOR_SIMPLEQ_FIRST(head); \ (var) && ((tvar) = TOR_SIMPLEQ_NEXT(var, field), 1); \ (var) = (tvar)) /* * Simple queue functions. */ #define TOR_SIMPLEQ_INIT(head) do { \ (head)->sqh_first = NULL; \ (head)->sqh_last = &(head)->sqh_first; \ } while (0) #define TOR_SIMPLEQ_INSERT_HEAD(head, elm, field) do { \ if (((elm)->field.sqe_next = (head)->sqh_first) == NULL) \ (head)->sqh_last = &(elm)->field.sqe_next; \ (head)->sqh_first = (elm); \ } while (0) #define TOR_SIMPLEQ_INSERT_TAIL(head, elm, field) do { \ (elm)->field.sqe_next = NULL; \ *(head)->sqh_last = (elm); \ (head)->sqh_last = &(elm)->field.sqe_next; \ } while (0) #define TOR_SIMPLEQ_INSERT_AFTER(head, listelm, elm, field) do { \ if (((elm)->field.sqe_next = (listelm)->field.sqe_next) == NULL)\ (head)->sqh_last = &(elm)->field.sqe_next; \ (listelm)->field.sqe_next = (elm); \ } while (0) #define TOR_SIMPLEQ_REMOVE_HEAD(head, field) do { \ if (((head)->sqh_first = (head)->sqh_first->field.sqe_next) == NULL) \ (head)->sqh_last = &(head)->sqh_first; \ } while (0) #define TOR_SIMPLEQ_REMOVE_AFTER(head, elm, field) do { \ if (((elm)->field.sqe_next = (elm)->field.sqe_next->field.sqe_next) \ == NULL) \ (head)->sqh_last = &(elm)->field.sqe_next; \ } while (0) /* * Tail queue definitions. */ #define TOR_TAILQ_HEAD(name, type) \ struct name { \ struct type *tqh_first; /* first element */ \ struct type **tqh_last; /* addr of last next element */ \ } #define TOR_TAILQ_HEAD_INITIALIZER(head) \ { NULL, &(head).tqh_first } #define TOR_TAILQ_ENTRY(type) \ struct { \ struct type *tqe_next; /* next element */ \ struct type **tqe_prev; /* address of previous next element */ \ } /* * tail queue access methods */ #define TOR_TAILQ_FIRST(head) ((head)->tqh_first) #define TOR_TAILQ_END(head) NULL #define TOR_TAILQ_NEXT(elm, field) ((elm)->field.tqe_next) #define TOR_TAILQ_LAST(head, headname) \ (*(((struct headname *)((head)->tqh_last))->tqh_last)) /* XXX */ #define TOR_TAILQ_PREV(elm, headname, field) \ (*(((struct headname *)((elm)->field.tqe_prev))->tqh_last)) /* || 0 is for -Wparentheses-equality (-Wall?) appeasement under clang */ #define TOR_TAILQ_EMPTY(head) \ ((TOR_TAILQ_FIRST(head) == TOR_TAILQ_END(head)) || 0) #define TOR_TAILQ_FOREACH(var, head, field) \ for((var) = TOR_TAILQ_FIRST(head); \ (var) != TOR_TAILQ_END(head); \ (var) = TOR_TAILQ_NEXT(var, field)) #define TOR_TAILQ_FOREACH_SAFE(var, head, field, tvar) \ for ((var) = TOR_TAILQ_FIRST(head); \ (var) != TOR_TAILQ_END(head) && \ ((tvar) = TOR_TAILQ_NEXT(var, field), 1); \ (var) = (tvar)) #define TOR_TAILQ_FOREACH_REVERSE(var, head, headname, field) \ for((var) = TOR_TAILQ_LAST(head, headname); \ (var) != TOR_TAILQ_END(head); \ (var) = TOR_TAILQ_PREV(var, headname, field)) #define TOR_TAILQ_FOREACH_REVERSE_SAFE(var, head, headname, field, tvar) \ for ((var) = TOR_TAILQ_LAST(head, headname); \ (var) != TOR_TAILQ_END(head) && \ ((tvar) = TOR_TAILQ_PREV(var, headname, field), 1); \ (var) = (tvar)) /* * Tail queue functions. */ #define TOR_TAILQ_INIT(head) do { \ (head)->tqh_first = NULL; \ (head)->tqh_last = &(head)->tqh_first; \ } while (0) #define TOR_TAILQ_INSERT_HEAD(head, elm, field) do { \ if (((elm)->field.tqe_next = (head)->tqh_first) != NULL) \ (head)->tqh_first->field.tqe_prev = \ &(elm)->field.tqe_next; \ else \ (head)->tqh_last = &(elm)->field.tqe_next; \ (head)->tqh_first = (elm); \ (elm)->field.tqe_prev = &(head)->tqh_first; \ } while (0) #define TOR_TAILQ_INSERT_TAIL(head, elm, field) do { \ (elm)->field.tqe_next = NULL; \ (elm)->field.tqe_prev = (head)->tqh_last; \ *(head)->tqh_last = (elm); \ (head)->tqh_last = &(elm)->field.tqe_next; \ } while (0) #define TOR_TAILQ_INSERT_AFTER(head, listelm, elm, field) do { \ if (((elm)->field.tqe_next = (listelm)->field.tqe_next) != NULL)\ (elm)->field.tqe_next->field.tqe_prev = \ &(elm)->field.tqe_next; \ else \ (head)->tqh_last = &(elm)->field.tqe_next; \ (listelm)->field.tqe_next = (elm); \ (elm)->field.tqe_prev = &(listelm)->field.tqe_next; \ } while (0) #define TOR_TAILQ_INSERT_BEFORE(listelm, elm, field) do { \ (elm)->field.tqe_prev = (listelm)->field.tqe_prev; \ (elm)->field.tqe_next = (listelm); \ *(listelm)->field.tqe_prev = (elm); \ (listelm)->field.tqe_prev = &(elm)->field.tqe_next; \ } while (0) #define TOR_TAILQ_REMOVE(head, elm, field) do { \ if (((elm)->field.tqe_next) != NULL) \ (elm)->field.tqe_next->field.tqe_prev = \ (elm)->field.tqe_prev; \ else \ (head)->tqh_last = (elm)->field.tqe_prev; \ *(elm)->field.tqe_prev = (elm)->field.tqe_next; \ TOR_Q_INVALIDATE_((elm)->field.tqe_prev); \ TOR_Q_INVALIDATE_((elm)->field.tqe_next); \ } while (0) #define TOR_TAILQ_REPLACE(head, elm, elm2, field) do { \ if (((elm2)->field.tqe_next = (elm)->field.tqe_next) != NULL) \ (elm2)->field.tqe_next->field.tqe_prev = \ &(elm2)->field.tqe_next; \ else \ (head)->tqh_last = &(elm2)->field.tqe_next; \ (elm2)->field.tqe_prev = (elm)->field.tqe_prev; \ *(elm2)->field.tqe_prev = (elm2); \ TOR_Q_INVALIDATE_((elm)->field.tqe_prev); \ TOR_Q_INVALIDATE_((elm)->field.tqe_next); \ } while (0) /* * Circular queue definitions. */ #define TOR_CIRCLEQ_HEAD(name, type) \ struct name { \ struct type *cqh_first; /* first element */ \ struct type *cqh_last; /* last element */ \ } #define TOR_CIRCLEQ_HEAD_INITIALIZER(head) \ { TOR_CIRCLEQ_END(&head), TOR_CIRCLEQ_END(&head) } #define TOR_CIRCLEQ_ENTRY(type) \ struct { \ struct type *cqe_next; /* next element */ \ struct type *cqe_prev; /* previous element */ \ } /* * Circular queue access methods */ #define TOR_CIRCLEQ_FIRST(head) ((head)->cqh_first) #define TOR_CIRCLEQ_LAST(head) ((head)->cqh_last) #define TOR_CIRCLEQ_END(head) ((void *)(head)) #define TOR_CIRCLEQ_NEXT(elm, field) ((elm)->field.cqe_next) #define TOR_CIRCLEQ_PREV(elm, field) ((elm)->field.cqe_prev) /* || 0 is for -Wparentheses-equality (-Wall?) appeasement under clang */ #define TOR_CIRCLEQ_EMPTY(head) \ ((TOR_CIRCLEQ_FIRST(head) == TOR_CIRCLEQ_END(head)) || 0) #define TOR_CIRCLEQ_FOREACH(var, head, field) \ for((var) = TOR_CIRCLEQ_FIRST(head); \ (var) != TOR_CIRCLEQ_END(head); \ (var) = TOR_CIRCLEQ_NEXT(var, field)) #define TOR_CIRCLEQ_FOREACH_SAFE(var, head, field, tvar) \ for ((var) = TOR_CIRCLEQ_FIRST(head); \ (var) != TOR_CIRCLEQ_END(head) && \ ((tvar) = TOR_CIRCLEQ_NEXT(var, field), 1); \ (var) = (tvar)) #define TOR_CIRCLEQ_FOREACH_REVERSE(var, head, field) \ for((var) = TOR_CIRCLEQ_LAST(head); \ (var) != TOR_CIRCLEQ_END(head); \ (var) = TOR_CIRCLEQ_PREV(var, field)) #define TOR_CIRCLEQ_FOREACH_REVERSE_SAFE(var, head, headname, field, tvar) \ for ((var) = TOR_CIRCLEQ_LAST(head, headname); \ (var) != TOR_CIRCLEQ_END(head) && \ ((tvar) = TOR_CIRCLEQ_PREV(var, headname, field), 1); \ (var) = (tvar)) /* * Circular queue functions. */ #define TOR_CIRCLEQ_INIT(head) do { \ (head)->cqh_first = TOR_CIRCLEQ_END(head); \ (head)->cqh_last = TOR_CIRCLEQ_END(head); \ } while (0) #define TOR_CIRCLEQ_INSERT_AFTER(head, listelm, elm, field) do { \ (elm)->field.cqe_next = (listelm)->field.cqe_next; \ (elm)->field.cqe_prev = (listelm); \ if ((listelm)->field.cqe_next == TOR_CIRCLEQ_END(head)) \ (head)->cqh_last = (elm); \ else \ (listelm)->field.cqe_next->field.cqe_prev = (elm); \ (listelm)->field.cqe_next = (elm); \ } while (0) #define TOR_CIRCLEQ_INSERT_BEFORE(head, listelm, elm, field) do { \ (elm)->field.cqe_next = (listelm); \ (elm)->field.cqe_prev = (listelm)->field.cqe_prev; \ if ((listelm)->field.cqe_prev == TOR_CIRCLEQ_END(head)) \ (head)->cqh_first = (elm); \ else \ (listelm)->field.cqe_prev->field.cqe_next = (elm); \ (listelm)->field.cqe_prev = (elm); \ } while (0) #define TOR_CIRCLEQ_INSERT_HEAD(head, elm, field) do { \ (elm)->field.cqe_next = (head)->cqh_first; \ (elm)->field.cqe_prev = TOR_CIRCLEQ_END(head); \ if ((head)->cqh_last == TOR_CIRCLEQ_END(head)) \ (head)->cqh_last = (elm); \ else \ (head)->cqh_first->field.cqe_prev = (elm); \ (head)->cqh_first = (elm); \ } while (0) #define TOR_CIRCLEQ_INSERT_TAIL(head, elm, field) do { \ (elm)->field.cqe_next = TOR_CIRCLEQ_END(head); \ (elm)->field.cqe_prev = (head)->cqh_last; \ if ((head)->cqh_first == TOR_CIRCLEQ_END(head)) \ (head)->cqh_first = (elm); \ else \ (head)->cqh_last->field.cqe_next = (elm); \ (head)->cqh_last = (elm); \ } while (0) #define TOR_CIRCLEQ_REMOVE(head, elm, field) do { \ if ((elm)->field.cqe_next == TOR_CIRCLEQ_END(head)) \ (head)->cqh_last = (elm)->field.cqe_prev; \ else \ (elm)->field.cqe_next->field.cqe_prev = \ (elm)->field.cqe_prev; \ if ((elm)->field.cqe_prev == TOR_CIRCLEQ_END(head)) \ (head)->cqh_first = (elm)->field.cqe_next; \ else \ (elm)->field.cqe_prev->field.cqe_next = \ (elm)->field.cqe_next; \ TOR_Q_INVALIDATE_((elm)->field.cqe_prev); \ TOR_Q_INVALIDATE_((elm)->field.cqe_next); \ } while (0) #define TOR_CIRCLEQ_REPLACE(head, elm, elm2, field) do { \ if (((elm2)->field.cqe_next = (elm)->field.cqe_next) == \ TOR_CIRCLEQ_END(head)) \ (head).cqh_last = (elm2); \ else \ (elm2)->field.cqe_next->field.cqe_prev = (elm2); \ if (((elm2)->field.cqe_prev = (elm)->field.cqe_prev) == \ TOR_CIRCLEQ_END(head)) \ (head).cqh_first = (elm2); \ else \ (elm2)->field.cqe_prev->field.cqe_next = (elm2); \ TOR_Q_INVALIDATE_((elm)->field.cqe_prev); \ TOR_Q_INVALIDATE_((elm)->field.cqe_next); \ } while (0) #endif /* !_SYS_QUEUE_H_ */ tor-0.2.7.6/src/ext/tinytest.c0000644000175000017500000003055212621363246013041 00000000000000/* tinytest.c -- Copyright 2009-2012 Nick Mathewson * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifdef TINYTEST_LOCAL #include "tinytest_local.h" #endif #include #include #include #include #ifndef NO_FORKING #ifdef _WIN32 #include #else #include #include #include #endif #if defined(__APPLE__) && defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) #if (__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= 1060 && \ __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1070) /* Workaround for a stupid bug in OSX 10.6 */ #define FORK_BREAKS_GCOV #include #endif #endif #endif /* !NO_FORKING */ #ifndef __GNUC__ #define __attribute__(x) #endif #include "tinytest.h" #include "tinytest_macros.h" #define LONGEST_TEST_NAME 16384 static int in_tinytest_main = 0; /**< true if we're in tinytest_main().*/ static int n_ok = 0; /**< Number of tests that have passed */ static int n_bad = 0; /**< Number of tests that have failed. */ static int n_skipped = 0; /**< Number of tests that have been skipped. */ static int opt_forked = 0; /**< True iff we're called from inside a win32 fork*/ static int opt_nofork = 0; /**< Suppress calls to fork() for debugging. */ static int opt_verbosity = 1; /**< -==quiet,0==terse,1==normal,2==verbose */ const char *verbosity_flag = ""; const struct testlist_alias_t *cfg_aliases=NULL; enum outcome { SKIP=2, OK=1, FAIL=0 }; static enum outcome cur_test_outcome = 0; const char *cur_test_prefix = NULL; /**< prefix of the current test group */ /** Name of the current test, if we haven't logged is yet. Used for --quiet */ const char *cur_test_name = NULL; #ifdef _WIN32 /* Copy of argv[0] for win32. */ static char commandname[MAX_PATH+1]; #endif static void usage(struct testgroup_t *groups, int list_groups) __attribute__((noreturn)); static int process_test_option(struct testgroup_t *groups, const char *test); static enum outcome testcase_run_bare_(const struct testcase_t *testcase) { void *env = NULL; int outcome; if (testcase->setup) { env = testcase->setup->setup_fn(testcase); if (!env) return FAIL; else if (env == (void*)TT_SKIP) return SKIP; } cur_test_outcome = OK; testcase->fn(env); outcome = cur_test_outcome; if (testcase->setup) { if (testcase->setup->cleanup_fn(testcase, env) == 0) outcome = FAIL; } return outcome; } #define MAGIC_EXITCODE 42 #ifndef NO_FORKING static enum outcome testcase_run_forked_(const struct testgroup_t *group, const struct testcase_t *testcase) { #ifdef _WIN32 /* Fork? On Win32? How primitive! We'll do what the smart kids do: we'll invoke our own exe (whose name we recall from the command line) with a command line that tells it to run just the test we want, and this time without forking. (No, threads aren't an option. The whole point of forking is to share no state between tests.) */ int ok; char buffer[LONGEST_TEST_NAME+256]; STARTUPINFOA si; PROCESS_INFORMATION info; DWORD exitcode; if (!in_tinytest_main) { printf("\nERROR. On Windows, testcase_run_forked_ must be" " called from within tinytest_main.\n"); abort(); } if (opt_verbosity>0) printf("[forking] "); snprintf(buffer, sizeof(buffer), "%s --RUNNING-FORKED %s %s%s", commandname, verbosity_flag, group->prefix, testcase->name); memset(&si, 0, sizeof(si)); memset(&info, 0, sizeof(info)); si.cb = sizeof(si); ok = CreateProcessA(commandname, buffer, NULL, NULL, 0, 0, NULL, NULL, &si, &info); if (!ok) { printf("CreateProcess failed!\n"); return 0; } WaitForSingleObject(info.hProcess, INFINITE); GetExitCodeProcess(info.hProcess, &exitcode); CloseHandle(info.hProcess); CloseHandle(info.hThread); if (exitcode == 0) return OK; else if (exitcode == MAGIC_EXITCODE) return SKIP; else return FAIL; #else int outcome_pipe[2]; pid_t pid; (void)group; if (pipe(outcome_pipe)) perror("opening pipe"); if (opt_verbosity>0) printf("[forking] "); pid = fork(); #ifdef FORK_BREAKS_GCOV vproc_transaction_begin(0); #endif if (!pid) { /* child. */ int test_r, write_r; char b[1]; close(outcome_pipe[0]); test_r = testcase_run_bare_(testcase); assert(0<=(int)test_r && (int)test_r<=2); b[0] = "NYS"[test_r]; write_r = (int)write(outcome_pipe[1], b, 1); if (write_r != 1) { perror("write outcome to pipe"); exit(1); } exit(0); return FAIL; /* unreachable */ } else { /* parent */ int status, r; char b[1]; /* Close this now, so that if the other side closes it, * our read fails. */ close(outcome_pipe[1]); r = (int)read(outcome_pipe[0], b, 1); if (r == 0) { printf("[Lost connection!] "); return 0; } else if (r != 1) { perror("read outcome from pipe"); } waitpid(pid, &status, 0); close(outcome_pipe[0]); return b[0]=='Y' ? OK : (b[0]=='S' ? SKIP : FAIL); } #endif } #endif /* !NO_FORKING */ int testcase_run_one(const struct testgroup_t *group, const struct testcase_t *testcase) { enum outcome outcome; if (testcase->flags & (TT_SKIP|TT_OFF_BY_DEFAULT)) { if (opt_verbosity>0) printf("%s%s: %s\n", group->prefix, testcase->name, (testcase->flags & TT_SKIP) ? "SKIPPED" : "DISABLED"); ++n_skipped; return SKIP; } if (opt_verbosity>0 && !opt_forked) { printf("%s%s: ", group->prefix, testcase->name); } else { if (opt_verbosity==0) printf("."); cur_test_prefix = group->prefix; cur_test_name = testcase->name; } #ifndef NO_FORKING if ((testcase->flags & TT_FORK) && !(opt_forked||opt_nofork)) { outcome = testcase_run_forked_(group, testcase); } else { #else { #endif outcome = testcase_run_bare_(testcase); } if (outcome == OK) { ++n_ok; if (opt_verbosity>0 && !opt_forked) puts(opt_verbosity==1?"OK":""); } else if (outcome == SKIP) { ++n_skipped; if (opt_verbosity>0 && !opt_forked) puts("SKIPPED"); } else { ++n_bad; if (!opt_forked) printf("\n [%s FAILED]\n", testcase->name); } if (opt_forked) { exit(outcome==OK ? 0 : (outcome==SKIP?MAGIC_EXITCODE : 1)); return 1; /* unreachable */ } else { return (int)outcome; } } int tinytest_set_flag_(struct testgroup_t *groups, const char *arg, int set, unsigned long flag) { int i, j; size_t length = LONGEST_TEST_NAME; char fullname[LONGEST_TEST_NAME]; int found=0; if (strstr(arg, "..")) length = strstr(arg,"..")-arg; for (i=0; groups[i].prefix; ++i) { for (j=0; groups[i].cases[j].name; ++j) { struct testcase_t *testcase = &groups[i].cases[j]; snprintf(fullname, sizeof(fullname), "%s%s", groups[i].prefix, testcase->name); if (!flag) { /* Hack! */ printf(" %s", fullname); if (testcase->flags & TT_OFF_BY_DEFAULT) puts(" (Off by default)"); else if (testcase->flags & TT_SKIP) puts(" (DISABLED)"); else puts(""); } if (!strncmp(fullname, arg, length)) { if (set) testcase->flags |= flag; else testcase->flags &= ~flag; ++found; } } } return found; } static void usage(struct testgroup_t *groups, int list_groups) { puts("Options are: [--verbose|--quiet|--terse] [--no-fork]"); puts(" Specify tests by name, or using a prefix ending with '..'"); puts(" To skip a test, prefix its name with a colon."); puts(" To enable a disabled test, prefix its name with a plus."); puts(" Use --list-tests for a list of tests."); if (list_groups) { puts("Known tests are:"); tinytest_set_flag_(groups, "..", 1, 0); } exit(0); } static int process_test_alias(struct testgroup_t *groups, const char *test) { int i, j, n, r; for (i=0; cfg_aliases && cfg_aliases[i].name; ++i) { if (!strcmp(cfg_aliases[i].name, test)) { n = 0; for (j = 0; cfg_aliases[i].tests[j]; ++j) { r = process_test_option(groups, cfg_aliases[i].tests[j]); if (r<0) return -1; n += r; } return n; } } printf("No such test alias as @%s!",test); return -1; } static int process_test_option(struct testgroup_t *groups, const char *test) { int flag = TT_ENABLED_; int n = 0; if (test[0] == '@') { return process_test_alias(groups, test + 1); } else if (test[0] == ':') { ++test; flag = TT_SKIP; } else if (test[0] == '+') { ++test; ++n; if (!tinytest_set_flag_(groups, test, 0, TT_OFF_BY_DEFAULT)) { printf("No such test as %s!\n", test); return -1; } } else { ++n; } if (!tinytest_set_flag_(groups, test, 1, flag)) { printf("No such test as %s!\n", test); return -1; } return n; } void tinytest_set_aliases(const struct testlist_alias_t *aliases) { cfg_aliases = aliases; } int tinytest_main(int c, const char **v, struct testgroup_t *groups) { int i, j, n=0; #ifdef _WIN32 const char *sp = strrchr(v[0], '.'); const char *extension = ""; if (!sp || stricmp(sp, ".exe")) extension = ".exe"; /* Add an exe so CreateProcess will work */ snprintf(commandname, sizeof(commandname), "%s%s", v[0], extension); commandname[MAX_PATH]='\0'; #endif for (i=1; i= 1) printf("%d tests ok. (%d skipped)\n", n_ok, n_skipped); return (n_bad == 0) ? 0 : 1; } int tinytest_get_verbosity_(void) { return opt_verbosity; } void tinytest_set_test_failed_(void) { if (opt_verbosity <= 0 && cur_test_name) { if (opt_verbosity==0) puts(""); printf("%s%s: ", cur_test_prefix, cur_test_name); cur_test_name = NULL; } cur_test_outcome = 0; } void tinytest_set_test_skipped_(void) { if (cur_test_outcome==OK) cur_test_outcome = SKIP; } char * tinytest_format_hex_(const void *val_, unsigned long len) { const unsigned char *val = val_; char *result, *cp; size_t i; int ellipses = 0; if (!val) return strdup("null"); if (len > 1024) { ellipses = 3; len = 1024; } if (!(result = malloc(len*2+4))) return strdup(""); cp = result; for (i=0;i> 4)&0x0f]; *cp++ = "0123456789ABCDEF"[val[i] & 0x0f]; } while (ellipses--) *cp++ = '.'; *cp = 0; return result; } tor-0.2.7.6/src/ext/tor_readpassphrase.h0000644000175000017500000000344012621363246015050 00000000000000/* $OpenBSD: readpassphrase.h,v 1.5 2003/06/17 21:56:23 millert Exp $ */ /* * Copyright (c) 2000, 2002 Todd C. Miller * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * * Sponsored in part by the Defense Advanced Research Projects * Agency (DARPA) and Air Force Research Laboratory, Air Force * Materiel Command, USAF, under agreement number F39502-99-1-0512. */ /* OPENBSD ORIGINAL: include/readpassphrase.h */ #ifndef _READPASSPHRASE_H_ #define _READPASSPHRASE_H_ #include "orconfig.h" #ifndef HAVE_READPASSPHRASE #define RPP_ECHO_OFF 0x00 /* Turn off echo (default). */ #define RPP_ECHO_ON 0x01 /* Leave echo on. */ #define RPP_REQUIRE_TTY 0x02 /* Fail if there is no tty. */ #define RPP_FORCELOWER 0x04 /* Force input to lower case. */ #define RPP_FORCEUPPER 0x08 /* Force input to upper case. */ #define RPP_SEVENBIT 0x10 /* Strip the high bit from input. */ #define RPP_STDIN 0x20 /* Read from stdin, not /dev/tty */ char * readpassphrase(const char *, char *, size_t, int); #define HAVE_READPASSPHRASE #endif /* HAVE_READPASSPHRASE */ #endif /* !_READPASSPHRASE_H_ */ tor-0.2.7.6/src/ext/ed25519/0000755000175000017500000000000012632347250012062 500000000000000tor-0.2.7.6/src/ext/ed25519/donna/0000755000175000017500000000000012632347251013162 500000000000000tor-0.2.7.6/src/ext/ed25519/donna/ed25519-randombytes-custom.h0000644000175000017500000000064112621363245020106 00000000000000/* a custom randombytes must implement: void ED25519_FN(ed25519_randombytes_unsafe) (void *p, size_t len); ed25519_randombytes_unsafe is used by the batch verification function to create random scalars */ /* Tor: Instead of calling OpenSSL's CSPRNG directly, call the wrapper. */ #include "crypto.h" static void ED25519_FN(ed25519_randombytes_unsafe) (void *p, size_t len) { crypto_rand_unmocked(p, len); } tor-0.2.7.6/src/ext/ed25519/donna/ed25519-randombytes.h0000644000175000017500000000346712621363245016607 00000000000000#if defined(ED25519_TEST) /* ISAAC+ "variant", the paper is not clear on operator precedence and other things. This is the "first in, first out" option! Not threadsafe or securely initialized, only for deterministic testing */ typedef struct isaacp_state_t { uint32_t state[256]; unsigned char buffer[1024]; uint32_t a, b, c; size_t left; } isaacp_state; #define isaacp_step(offset, mix) \ x = mm[i + offset]; \ a = (a ^ (mix)) + (mm[(i + offset + 128) & 0xff]); \ y = (a ^ b) + mm[(x >> 2) & 0xff]; \ mm[i + offset] = y; \ b = (x + a) ^ mm[(y >> 10) & 0xff]; \ U32TO8_LE(out + (i + offset) * 4, b); static void isaacp_mix(isaacp_state *st) { uint32_t i, x, y; uint32_t a = st->a, b = st->b, c = st->c; uint32_t *mm = st->state; unsigned char *out = st->buffer; c = c + 1; b = b + c; for (i = 0; i < 256; i += 4) { isaacp_step(0, ROTL32(a,13)) isaacp_step(1, ROTR32(a, 6)) isaacp_step(2, ROTL32(a, 2)) isaacp_step(3, ROTR32(a,16)) } st->a = a; st->b = b; st->c = c; st->left = 1024; } static void isaacp_random(isaacp_state *st, void *p, size_t len) { size_t use; unsigned char *c = (unsigned char *)p; while (len) { use = (len > st->left) ? st->left : len; memcpy(c, st->buffer + (sizeof(st->buffer) - st->left), use); st->left -= use; c += use; len -= use; if (!st->left) isaacp_mix(st); } } void ED25519_FN(ed25519_randombytes_unsafe) (void *p, size_t len) { static int initialized = 0; static isaacp_state rng; if (!initialized) { memset(&rng, 0, sizeof(rng)); isaacp_mix(&rng); isaacp_mix(&rng); initialized = 1; } isaacp_random(&rng, p, len); } #elif defined(ED25519_CUSTOMRANDOM) #include "ed25519-randombytes-custom.h" #else #include void ED25519_FN(ed25519_randombytes_unsafe) (void *p, size_t len) { RAND_bytes(p, (int) len); } #endif tor-0.2.7.6/src/ext/ed25519/donna/test-ticks.h0000644000175000017500000000244112621363246015346 00000000000000#include "ed25519-donna-portable-identify.h" /* ticks - not tested on anything other than x86 */ static uint64_t get_ticks(void) { #if defined(CPU_X86) || defined(CPU_X86_64) #if defined(COMPILER_INTEL) return _rdtsc(); #elif defined(COMPILER_MSVC) return __rdtsc(); #elif defined(COMPILER_GCC) uint32_t lo, hi; __asm__ __volatile__("rdtsc" : "=a" (lo), "=d" (hi)); return ((uint64_t)lo | ((uint64_t)hi << 32)); #else need rdtsc for this compiler #endif #elif defined(OS_SOLARIS) return (uint64_t)gethrtime(); #elif defined(CPU_SPARC) && !defined(OS_OPENBSD) uint64_t t; __asm__ __volatile__("rd %%tick, %0" : "=r" (t)); return t; #elif defined(CPU_PPC) uint32_t lo = 0, hi = 0; __asm__ __volatile__("mftbu %0; mftb %1" : "=r" (hi), "=r" (lo)); return ((uint64_t)lo | ((uint64_t)hi << 32)); #elif defined(CPU_IA64) uint64_t t; __asm__ __volatile__("mov %0=ar.itc" : "=r" (t)); return t; #elif defined(OS_NIX) timeval t2; gettimeofday(&t2, NULL); t = ((uint64_t)t2.tv_usec << 32) | (uint64_t)t2.tv_sec; return t; #else need ticks for this platform #endif } #define timeit(x,minvar) \ ticks = get_ticks(); \ x; \ ticks = get_ticks() - ticks; \ if (ticks < minvar) \ minvar = ticks; #define maxticks 0xffffffffffffffffull tor-0.2.7.6/src/ext/ed25519/donna/curve25519-donna-helpers.h0000644000175000017500000000542412621363245017546 00000000000000/* Public domain by Andrew M. See: https://github.com/floodyberry/curve25519-donna Curve25519 implementation agnostic helpers */ #ifdef __GNUC__ #define ED_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__) #endif #if __GNUC__ && ED_GCC_VERSION >= 401 #if ED_GCC_VERSION >= 406 #pragma GCC diagnostic push #endif /* Some versions of GCC (particularly on arm) give us bogus warnings here. * Suppress the GCC warning so we can build Tor with -Wstack-protector. */ #pragma GCC diagnostic ignored "-Wstack-protector" #endif /* * In: b = 2^5 - 2^0 * Out: b = 2^250 - 2^0 */ static void curve25519_pow_two5mtwo0_two250mtwo0(bignum25519 b) { bignum25519 ALIGN(16) t0,c; /* 2^5 - 2^0 */ /* b */ /* 2^10 - 2^5 */ curve25519_square_times(t0, b, 5); /* 2^10 - 2^0 */ curve25519_mul_noinline(b, t0, b); /* 2^20 - 2^10 */ curve25519_square_times(t0, b, 10); /* 2^20 - 2^0 */ curve25519_mul_noinline(c, t0, b); /* 2^40 - 2^20 */ curve25519_square_times(t0, c, 20); /* 2^40 - 2^0 */ curve25519_mul_noinline(t0, t0, c); /* 2^50 - 2^10 */ curve25519_square_times(t0, t0, 10); /* 2^50 - 2^0 */ curve25519_mul_noinline(b, t0, b); /* 2^100 - 2^50 */ curve25519_square_times(t0, b, 50); /* 2^100 - 2^0 */ curve25519_mul_noinline(c, t0, b); /* 2^200 - 2^100 */ curve25519_square_times(t0, c, 100); /* 2^200 - 2^0 */ curve25519_mul_noinline(t0, t0, c); /* 2^250 - 2^50 */ curve25519_square_times(t0, t0, 50); /* 2^250 - 2^0 */ curve25519_mul_noinline(b, t0, b); } /* * z^(p - 2) = z(2^255 - 21) */ static void curve25519_recip(bignum25519 out, const bignum25519 z) { bignum25519 ALIGN(16) a,t0,b; /* 2 */ curve25519_square_times(a, z, 1); /* a = 2 */ /* 8 */ curve25519_square_times(t0, a, 2); /* 9 */ curve25519_mul_noinline(b, t0, z); /* b = 9 */ /* 11 */ curve25519_mul_noinline(a, b, a); /* a = 11 */ /* 22 */ curve25519_square_times(t0, a, 1); /* 2^5 - 2^0 = 31 */ curve25519_mul_noinline(b, t0, b); /* 2^250 - 2^0 */ curve25519_pow_two5mtwo0_two250mtwo0(b); /* 2^255 - 2^5 */ curve25519_square_times(b, b, 5); /* 2^255 - 21 */ curve25519_mul_noinline(out, b, a); } /* * z^((p-5)/8) = z^(2^252 - 3) */ static void curve25519_pow_two252m3(bignum25519 two252m3, const bignum25519 z) { bignum25519 ALIGN(16) b,c,t0; /* 2 */ curve25519_square_times(c, z, 1); /* c = 2 */ /* 8 */ curve25519_square_times(t0, c, 2); /* t0 = 8 */ /* 9 */ curve25519_mul_noinline(b, t0, z); /* b = 9 */ /* 11 */ curve25519_mul_noinline(c, b, c); /* c = 11 */ /* 22 */ curve25519_square_times(t0, c, 1); /* 2^5 - 2^0 = 31 */ curve25519_mul_noinline(b, t0, b); /* 2^250 - 2^0 */ curve25519_pow_two5mtwo0_two250mtwo0(b); /* 2^252 - 2^2 */ curve25519_square_times(b, b, 2); /* 2^252 - 3 */ curve25519_mul_noinline(two252m3, b, z); } #if __GNUC__ && ED_GCC_VERSION >= 406 #pragma GCC diagnostic pop #endif tor-0.2.7.6/src/ext/ed25519/donna/ed25519_tor.c0000644000175000017500000002051612632034724015132 00000000000000/* Public domain by Andrew M. Ed25519 reference implementation using Ed25519-donna */ /* Tor specific notes: This file is used by Tor instead of `ed25519.c` as the number of changes/additions is non-trivial. Tor modifications to `ed25519.c`: * 'Tab` -> ' '. * Include `ed25519_donna_tor.h` instead of `ed25519.h`. * The external interface has been reworked to match that provided by Tor's copy of the SUPERCOP `ref10` code. * The secret (aka private) key is now stored/used in expanded form. * The internal math tests from `test-internals.c` have been wrapped in a function and the entire file is included to allow for runtime validation. */ /* define ED25519_SUFFIX to have it appended to the end of each public function */ #if !defined(ED25519_SUFFIX) #define ED25519_SUFFIX #endif #define ED25519_FN3(fn,suffix) fn##suffix #define ED25519_FN2(fn,suffix) ED25519_FN3(fn,suffix) #define ED25519_FN(fn) ED25519_FN2(fn,ED25519_SUFFIX) #include "ed25519-donna.h" #include "ed25519_donna_tor.h" #include "ed25519-randombytes.h" #include "ed25519-hash.h" typedef unsigned char ed25519_signature[64]; typedef unsigned char ed25519_public_key[32]; typedef unsigned char ed25519_secret_key[32]; static void gettweak(unsigned char *out, const unsigned char *param); static int ED25519_FN(ed25519_sign_open) (const unsigned char *m, size_t mlen, const ed25519_public_key pk, const ed25519_signature RS); /* Generates a (extsk[0..31]) and aExt (extsk[32..63]) */ DONNA_INLINE static void ed25519_extsk(hash_512bits extsk, const ed25519_secret_key sk) { ed25519_hash(extsk, sk, 32); extsk[0] &= 248; extsk[31] &= 127; extsk[31] |= 64; } static void ed25519_hram(hash_512bits hram, const ed25519_signature RS, const ed25519_public_key pk, const unsigned char *m, size_t mlen) { ed25519_hash_context ctx; ed25519_hash_init(&ctx); ed25519_hash_update(&ctx, RS, 32); ed25519_hash_update(&ctx, pk, 32); ed25519_hash_update(&ctx, m, mlen); ed25519_hash_final(&ctx, hram); } static int ED25519_FN(ed25519_sign_open) (const unsigned char *m, size_t mlen, const ed25519_public_key pk, const ed25519_signature RS) { ge25519 ALIGN(16) R, A; hash_512bits hash; bignum256modm hram, S; unsigned char checkR[32]; if ((RS[63] & 224) || !ge25519_unpack_negative_vartime(&A, pk)) return -1; /* hram = H(R,A,m) */ ed25519_hram(hash, RS, pk, m, mlen); expand256_modm(hram, hash, 64); /* S */ expand256_modm(S, RS + 32, 32); /* SB - H(R,A,m)A */ ge25519_double_scalarmult_vartime(&R, &A, hram, S); ge25519_pack(checkR, &R); /* check that R = SB - H(R,A,m)A */ return ed25519_verify(RS, checkR, 32) ? 0 : -1; } #include "ed25519-donna-batchverify.h" /* Fast Curve25519 basepoint scalar multiplication */ void ED25519_FN(curved25519_scalarmult_basepoint) (curved25519_key pk, const curved25519_key e) { curved25519_key ec; bignum256modm s; bignum25519 ALIGN(16) yplusz, zminusy; ge25519 ALIGN(16) p; size_t i; /* clamp */ for (i = 0; i < 32; i++) ec[i] = e[i]; ec[0] &= 248; ec[31] &= 127; ec[31] |= 64; expand_raw256_modm(s, ec); /* scalar * basepoint */ ge25519_scalarmult_base_niels(&p, ge25519_niels_base_multiples, s); /* u = (y + z) / (z - y) */ curve25519_add(yplusz, p.y, p.z); curve25519_sub(zminusy, p.z, p.y); curve25519_recip(zminusy, zminusy); curve25519_mul(yplusz, yplusz, zminusy); curve25519_contract(pk, yplusz); } /* Tor has a specific idea of how an Ed25519 implementaion should behave. Implement such a beast using the ed25519-donna primitives/internals. * Private key generation using Tor's CSPRNG. * Routines that deal with the private key now use the expanded form. * Support for multiplicative key blinding has been added. * Support for converting a Curve25519 key to an Ed25519 key has been added. */ int ed25519_donna_seckey(unsigned char *sk) { ed25519_secret_key seed; if (crypto_strongest_rand(seed, 32)) return -1; ed25519_extsk(sk, seed); memwipe(seed, 0, sizeof(seed)); return 0; } int ed25519_donna_seckey_expand(unsigned char *sk, const unsigned char *skseed) { ed25519_extsk(sk, skseed); return 0; } int ed25519_donna_pubkey(unsigned char *pk, const unsigned char *sk) { bignum256modm a; ge25519 ALIGN(16) A; /* A = aB */ expand256_modm(a, sk, 32); ge25519_scalarmult_base_niels(&A, ge25519_niels_base_multiples, a); ge25519_pack(pk, &A); return 0; } int ed25519_donna_keygen(unsigned char *pk, unsigned char *sk) { int ok; ok = ed25519_donna_seckey(sk); ed25519_donna_pubkey(pk, sk); return ok; } int ed25519_donna_open(const unsigned char *signature, const unsigned char *m, size_t mlen, const unsigned char *pk) { /* Wrap the ed25519-donna routine, since it is also used by the batch * verification code. */ return ED25519_FN(ed25519_sign_open)(m, mlen, pk, signature); } int ed25519_donna_sign(unsigned char *sig, const unsigned char *m, size_t mlen, const unsigned char *sk, const unsigned char *pk) { ed25519_hash_context ctx; bignum256modm r, S, a; ge25519 ALIGN(16) R; hash_512bits hashr, hram; /* This is equivalent to the removed `ED25519_FN(ed25519_sign)` routine, * except that the key expansion step is omitted as sk already is in expanded * form. */ /* r = H(aExt[32..64], m) */ ed25519_hash_init(&ctx); ed25519_hash_update(&ctx, sk + 32, 32); ed25519_hash_update(&ctx, m, mlen); ed25519_hash_final(&ctx, hashr); expand256_modm(r, hashr, 64); /* R = rB */ ge25519_scalarmult_base_niels(&R, ge25519_niels_base_multiples, r); ge25519_pack(sig, &R); /* S = H(R,A,m).. */ ed25519_hram(hram, sig, pk, m, mlen); expand256_modm(S, hram, 64); /* S = H(R,A,m)a */ expand256_modm(a, sk, 32); mul256_modm(S, S, a); /* S = (r + H(R,A,m)a) */ add256_modm(S, S, r); /* S = (r + H(R,A,m)a) mod L */ contract256_modm(sig + 32, S); return 0; } static void gettweak(unsigned char *out, const unsigned char *param) { static const char str[] = "Derive temporary signing key"; ed25519_hash_context ctx; ed25519_hash_init(&ctx); ed25519_hash_update(&ctx, (const unsigned char*)str, strlen(str)); ed25519_hash_update(&ctx, param, 32); ed25519_hash_final(&ctx, out); out[0] &= 248; /* Is this necessary ? */ out[31] &= 63; out[31] |= 64; } int ed25519_donna_blind_secret_key(unsigned char *out, const unsigned char *inp, const unsigned char *param) { static const char str[] = "Derive temporary signing key hash input"; unsigned char tweak[64]; ed25519_hash_context ctx; bignum256modm ALIGN(16) sk, t; gettweak(tweak, param); expand256_modm(t, tweak, 32); expand256_modm(sk, inp, 32); mul256_modm(sk, sk, t); contract256_modm(out, sk); ed25519_hash_init(&ctx); ed25519_hash_update(&ctx, (const unsigned char*)str, strlen(str)); ed25519_hash_update(&ctx, inp + 32, 32); ed25519_hash_final(&ctx, tweak); memcpy(out + 32, tweak, 32); memwipe(sk, 0, sizeof(sk)); memwipe(t, 0, sizeof(t)); memwipe(tweak, 0, sizeof(tweak)); return 0; } int ed25519_donna_blind_public_key(unsigned char *out, const unsigned char *inp, const unsigned char *param) { static const bignum256modm zero = { 0 }; unsigned char tweak[64]; unsigned char pkcopy[32]; ge25519 ALIGN(16) A, Aprime; bignum256modm ALIGN(16) t; gettweak(tweak, param); expand256_modm(t, tweak, 32); /* No "ge25519_unpack", negate the public key. */ memcpy(pkcopy, inp, 32); pkcopy[31] ^= (1<<7); ge25519_unpack_negative_vartime(&A, pkcopy); /* A' = [tweak] * A + [0] * basepoint. */ ge25519_double_scalarmult_vartime(&Aprime, &A, t, zero); ge25519_pack(out, &Aprime); memwipe(tweak, 0, sizeof(tweak)); memwipe(pkcopy, 0, sizeof(pkcopy)); memwipe(&A, 0, sizeof(A)); memwipe(&Aprime, 0, sizeof(Aprime)); memwipe(t, 0, sizeof(t)); return 0; } int ed25519_donna_pubkey_from_curve25519_pubkey(unsigned char *out, const unsigned char *inp, int signbit) { static const bignum25519 ALIGN(16) one = { 1 }; bignum25519 ALIGN(16) u, uminus1, uplus1, inv_uplus1, y; /* Prop228: y = (u-1)/(u+1) */ curve25519_expand(u, inp); curve25519_sub(uminus1, u, one); curve25519_add(uplus1, u, one); curve25519_recip(inv_uplus1, uplus1); curve25519_mul(y, uminus1, inv_uplus1); curve25519_contract(out, y); /* Propagate sign. */ out[31] |= (!!signbit) << 7; return 0; } #include "test-internals.c" tor-0.2.7.6/src/ext/ed25519/donna/ed25519.h0000644000175000017500000000170012621363246014247 00000000000000#ifndef ED25519_H #define ED25519_H #include #if defined(__cplusplus) extern "C" { #endif typedef unsigned char ed25519_signature[64]; typedef unsigned char ed25519_public_key[32]; typedef unsigned char ed25519_secret_key[32]; typedef unsigned char curved25519_key[32]; void ed25519_publickey(const ed25519_secret_key sk, ed25519_public_key pk); int ed25519_sign_open(const unsigned char *m, size_t mlen, const ed25519_public_key pk, const ed25519_signature RS); void ed25519_sign(const unsigned char *m, size_t mlen, const ed25519_secret_key sk, const ed25519_public_key pk, ed25519_signature RS); int ed25519_sign_open_batch(const unsigned char **m, size_t *mlen, const unsigned char **pk, const unsigned char **RS, size_t num, int *valid); void ed25519_randombytes_unsafe(void *out, size_t count); void curved25519_scalarmult_basepoint(curved25519_key pk, const curved25519_key e); #if defined(__cplusplus) } #endif #endif // ED25519_H tor-0.2.7.6/src/ext/ed25519/donna/ed25519-donna-portable.h0000644000175000017500000001376712621363245017171 00000000000000#include "ed25519-donna-portable-identify.h" #define mul32x32_64(a,b) (((uint64_t)(a))*(b)) /* platform */ #if defined(COMPILER_MSVC) #include #if !defined(_DEBUG) #undef mul32x32_64 #define mul32x32_64(a,b) __emulu(a,b) #endif #undef inline #define inline __forceinline #define DONNA_INLINE __forceinline #define DONNA_NOINLINE __declspec(noinline) #define ALIGN(x) __declspec(align(x)) #define ROTL32(a,b) _rotl(a,b) #define ROTR32(a,b) _rotr(a,b) #else #include #define DONNA_INLINE inline __attribute__((always_inline)) #define DONNA_NOINLINE __attribute__((noinline)) /* Tor: OSX pollutes the global namespace with an ALIGN macro. */ #undef ALIGN #define ALIGN(x) __attribute__((aligned(x))) #define ROTL32(a,b) (((a) << (b)) | ((a) >> (32 - b))) #define ROTR32(a,b) (((a) >> (b)) | ((a) << (32 - b))) #endif /* uint128_t */ #if defined(CPU_64BITS) && !defined(ED25519_FORCE_32BIT) #if defined(COMPILER_CLANG) && (COMPILER_CLANG >= 30100) #define HAVE_NATIVE_UINT128 typedef unsigned __int128 uint128_t; #elif defined(COMPILER_MSVC) #define HAVE_UINT128 typedef struct uint128_t { uint64_t lo, hi; } uint128_t; #define mul64x64_128(out,a,b) out.lo = _umul128(a,b,&out.hi); #define shr128_pair(out,hi,lo,shift) out = __shiftright128(lo, hi, shift); #define shl128_pair(out,hi,lo,shift) out = __shiftleft128(lo, hi, shift); #define shr128(out,in,shift) shr128_pair(out, in.hi, in.lo, shift) #define shl128(out,in,shift) shl128_pair(out, in.hi, in.lo, shift) #define add128(a,b) { uint64_t p = a.lo; a.lo += b.lo; a.hi += b.hi + (a.lo < p); } #define add128_64(a,b) { uint64_t p = a.lo; a.lo += b; a.hi += (a.lo < p); } #define lo128(a) (a.lo) #define hi128(a) (a.hi) #elif defined(COMPILER_GCC) && !defined(HAVE_NATIVE_UINT128) #if defined(__SIZEOF_INT128__) #define HAVE_NATIVE_UINT128 typedef unsigned __int128 uint128_t; #elif (COMPILER_GCC >= 40400) #define HAVE_NATIVE_UINT128 typedef unsigned uint128_t __attribute__((mode(TI))); #elif defined(CPU_X86_64) #define HAVE_UINT128 typedef struct uint128_t { uint64_t lo, hi; } uint128_t; #define mul64x64_128(out,a,b) __asm__ ("mulq %3" : "=a" (out.lo), "=d" (out.hi) : "a" (a), "rm" (b)); #define shr128_pair(out,hi,lo,shift) __asm__ ("shrdq %2,%1,%0" : "+r" (lo) : "r" (hi), "J" (shift)); out = lo; #define shl128_pair(out,hi,lo,shift) __asm__ ("shldq %2,%1,%0" : "+r" (hi) : "r" (lo), "J" (shift)); out = hi; #define shr128(out,in,shift) shr128_pair(out,in.hi, in.lo, shift) #define shl128(out,in,shift) shl128_pair(out,in.hi, in.lo, shift) #define add128(a,b) __asm__ ("addq %4,%2; adcq %5,%3" : "=r" (a.hi), "=r" (a.lo) : "1" (a.lo), "0" (a.hi), "rm" (b.lo), "rm" (b.hi) : "cc"); #define add128_64(a,b) __asm__ ("addq %4,%2; adcq $0,%3" : "=r" (a.hi), "=r" (a.lo) : "1" (a.lo), "0" (a.hi), "rm" (b) : "cc"); #define lo128(a) (a.lo) #define hi128(a) (a.hi) #endif #endif #if defined(HAVE_NATIVE_UINT128) #define HAVE_UINT128 #define mul64x64_128(out,a,b) out = (uint128_t)a * b; #define shr128_pair(out,hi,lo,shift) out = (uint64_t)((((uint128_t)hi << 64) | lo) >> (shift)); #define shl128_pair(out,hi,lo,shift) out = (uint64_t)(((((uint128_t)hi << 64) | lo) << (shift)) >> 64); #define shr128(out,in,shift) out = (uint64_t)(in >> (shift)); #define shl128(out,in,shift) out = (uint64_t)((in << shift) >> 64); #define add128(a,b) a += b; #define add128_64(a,b) a += (uint64_t)b; #define lo128(a) ((uint64_t)a) #define hi128(a) ((uint64_t)(a >> 64)) #endif #if !defined(HAVE_UINT128) #error Need a uint128_t implementation! #endif #endif /* endian */ #if !defined(ED25519_OPENSSLRNG) static inline void U32TO8_LE(unsigned char *p, const uint32_t v) { p[0] = (unsigned char)(v ); p[1] = (unsigned char)(v >> 8); p[2] = (unsigned char)(v >> 16); p[3] = (unsigned char)(v >> 24); } #endif #if !defined(HAVE_UINT128) static inline uint32_t U8TO32_LE(const unsigned char *p) { return (((uint32_t)(p[0]) ) | ((uint32_t)(p[1]) << 8) | ((uint32_t)(p[2]) << 16) | ((uint32_t)(p[3]) << 24)); } #else static inline uint64_t U8TO64_LE(const unsigned char *p) { return (((uint64_t)(p[0]) ) | ((uint64_t)(p[1]) << 8) | ((uint64_t)(p[2]) << 16) | ((uint64_t)(p[3]) << 24) | ((uint64_t)(p[4]) << 32) | ((uint64_t)(p[5]) << 40) | ((uint64_t)(p[6]) << 48) | ((uint64_t)(p[7]) << 56)); } static inline void U64TO8_LE(unsigned char *p, const uint64_t v) { p[0] = (unsigned char)(v ); p[1] = (unsigned char)(v >> 8); p[2] = (unsigned char)(v >> 16); p[3] = (unsigned char)(v >> 24); p[4] = (unsigned char)(v >> 32); p[5] = (unsigned char)(v >> 40); p[6] = (unsigned char)(v >> 48); p[7] = (unsigned char)(v >> 56); } #endif /* Tor: Detect and disable inline assembly when clang's AddressSanitizer * is present, due to compilation failing because it runs out of registers. * * The alternative is to annotate `ge25519_scalarmult_base_choose_niels` * and selectively disable AddressSanitizer insturmentation, however doing * things this way results in a "more sanitized" binary. */ #if defined(__has_feature) #if __has_feature(address_sanitizer) #define ED25519_NO_INLINE_ASM #endif #endif /* Tor: Force enable SSE2 on 32 bit x86 systems if the compile target * architecture supports it. This is not done on x86-64 as the non-SSE2 * code benchmarks better, at least on Haswell. */ #if defined(__SSE2__) && !defined(CPU_X86_64) /* undef in case it's manually specified... */ #undef ED25519_SSE2 #define ED25519_SSE2 #endif /* Tor: GCC's Stack Protector freaks out and produces variable length * buffer warnings when alignment is requested that is greater than * STACK_BOUNDARY (x86 has special code to deal with this for SSE2). * * Since the only reason things are 16 byte aligned in the first place * is for SSE2, only request variable alignment for SSE2 builds. * * See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59674 */ #if !defined(ED25519_SSE2) #undef ALIGN #define ALIGN(x) #endif #include #include tor-0.2.7.6/src/ext/ed25519/donna/curve25519-donna-64bit.h0000644000175000017500000003502512621363245017034 00000000000000/* Public domain by Adam Langley & Andrew M. See: https://github.com/floodyberry/curve25519-donna 64bit integer curve25519 implementation */ typedef uint64_t bignum25519[5]; static const uint64_t reduce_mask_40 = ((uint64_t)1 << 40) - 1; static const uint64_t reduce_mask_51 = ((uint64_t)1 << 51) - 1; static const uint64_t reduce_mask_56 = ((uint64_t)1 << 56) - 1; /* out = in */ DONNA_INLINE static void curve25519_copy(bignum25519 out, const bignum25519 in) { out[0] = in[0]; out[1] = in[1]; out[2] = in[2]; out[3] = in[3]; out[4] = in[4]; } /* out = a + b */ DONNA_INLINE static void curve25519_add(bignum25519 out, const bignum25519 a, const bignum25519 b) { out[0] = a[0] + b[0]; out[1] = a[1] + b[1]; out[2] = a[2] + b[2]; out[3] = a[3] + b[3]; out[4] = a[4] + b[4]; } /* out = a + b, where a and/or b are the result of a basic op (add,sub) */ DONNA_INLINE static void curve25519_add_after_basic(bignum25519 out, const bignum25519 a, const bignum25519 b) { out[0] = a[0] + b[0]; out[1] = a[1] + b[1]; out[2] = a[2] + b[2]; out[3] = a[3] + b[3]; out[4] = a[4] + b[4]; } DONNA_INLINE static void curve25519_add_reduce(bignum25519 out, const bignum25519 a, const bignum25519 b) { uint64_t c; out[0] = a[0] + b[0] ; c = (out[0] >> 51); out[0] &= reduce_mask_51; out[1] = a[1] + b[1] + c; c = (out[1] >> 51); out[1] &= reduce_mask_51; out[2] = a[2] + b[2] + c; c = (out[2] >> 51); out[2] &= reduce_mask_51; out[3] = a[3] + b[3] + c; c = (out[3] >> 51); out[3] &= reduce_mask_51; out[4] = a[4] + b[4] + c; c = (out[4] >> 51); out[4] &= reduce_mask_51; out[0] += c * 19; } /* multiples of p */ static const uint64_t twoP0 = 0x0fffffffffffda; static const uint64_t twoP1234 = 0x0ffffffffffffe; static const uint64_t fourP0 = 0x1fffffffffffb4; static const uint64_t fourP1234 = 0x1ffffffffffffc; /* out = a - b */ DONNA_INLINE static void curve25519_sub(bignum25519 out, const bignum25519 a, const bignum25519 b) { out[0] = a[0] + twoP0 - b[0]; out[1] = a[1] + twoP1234 - b[1]; out[2] = a[2] + twoP1234 - b[2]; out[3] = a[3] + twoP1234 - b[3]; out[4] = a[4] + twoP1234 - b[4]; } /* out = a - b, where a and/or b are the result of a basic op (add,sub) */ DONNA_INLINE static void curve25519_sub_after_basic(bignum25519 out, const bignum25519 a, const bignum25519 b) { out[0] = a[0] + fourP0 - b[0]; out[1] = a[1] + fourP1234 - b[1]; out[2] = a[2] + fourP1234 - b[2]; out[3] = a[3] + fourP1234 - b[3]; out[4] = a[4] + fourP1234 - b[4]; } DONNA_INLINE static void curve25519_sub_reduce(bignum25519 out, const bignum25519 a, const bignum25519 b) { uint64_t c; out[0] = a[0] + fourP0 - b[0] ; c = (out[0] >> 51); out[0] &= reduce_mask_51; out[1] = a[1] + fourP1234 - b[1] + c; c = (out[1] >> 51); out[1] &= reduce_mask_51; out[2] = a[2] + fourP1234 - b[2] + c; c = (out[2] >> 51); out[2] &= reduce_mask_51; out[3] = a[3] + fourP1234 - b[3] + c; c = (out[3] >> 51); out[3] &= reduce_mask_51; out[4] = a[4] + fourP1234 - b[4] + c; c = (out[4] >> 51); out[4] &= reduce_mask_51; out[0] += c * 19; } /* out = -a */ DONNA_INLINE static void curve25519_neg(bignum25519 out, const bignum25519 a) { uint64_t c; out[0] = twoP0 - a[0] ; c = (out[0] >> 51); out[0] &= reduce_mask_51; out[1] = twoP1234 - a[1] + c; c = (out[1] >> 51); out[1] &= reduce_mask_51; out[2] = twoP1234 - a[2] + c; c = (out[2] >> 51); out[2] &= reduce_mask_51; out[3] = twoP1234 - a[3] + c; c = (out[3] >> 51); out[3] &= reduce_mask_51; out[4] = twoP1234 - a[4] + c; c = (out[4] >> 51); out[4] &= reduce_mask_51; out[0] += c * 19; } /* out = a * b */ DONNA_INLINE static void curve25519_mul(bignum25519 out, const bignum25519 in2, const bignum25519 in) { #if !defined(HAVE_NATIVE_UINT128) uint128_t mul; #endif uint128_t t[5]; uint64_t r0,r1,r2,r3,r4,s0,s1,s2,s3,s4,c; r0 = in[0]; r1 = in[1]; r2 = in[2]; r3 = in[3]; r4 = in[4]; s0 = in2[0]; s1 = in2[1]; s2 = in2[2]; s3 = in2[3]; s4 = in2[4]; #if defined(HAVE_NATIVE_UINT128) t[0] = ((uint128_t) r0) * s0; t[1] = ((uint128_t) r0) * s1 + ((uint128_t) r1) * s0; t[2] = ((uint128_t) r0) * s2 + ((uint128_t) r2) * s0 + ((uint128_t) r1) * s1; t[3] = ((uint128_t) r0) * s3 + ((uint128_t) r3) * s0 + ((uint128_t) r1) * s2 + ((uint128_t) r2) * s1; t[4] = ((uint128_t) r0) * s4 + ((uint128_t) r4) * s0 + ((uint128_t) r3) * s1 + ((uint128_t) r1) * s3 + ((uint128_t) r2) * s2; #else mul64x64_128(t[0], r0, s0) mul64x64_128(t[1], r0, s1) mul64x64_128(mul, r1, s0) add128(t[1], mul) mul64x64_128(t[2], r0, s2) mul64x64_128(mul, r2, s0) add128(t[2], mul) mul64x64_128(mul, r1, s1) add128(t[2], mul) mul64x64_128(t[3], r0, s3) mul64x64_128(mul, r3, s0) add128(t[3], mul) mul64x64_128(mul, r1, s2) add128(t[3], mul) mul64x64_128(mul, r2, s1) add128(t[3], mul) mul64x64_128(t[4], r0, s4) mul64x64_128(mul, r4, s0) add128(t[4], mul) mul64x64_128(mul, r3, s1) add128(t[4], mul) mul64x64_128(mul, r1, s3) add128(t[4], mul) mul64x64_128(mul, r2, s2) add128(t[4], mul) #endif r1 *= 19; r2 *= 19; r3 *= 19; r4 *= 19; #if defined(HAVE_NATIVE_UINT128) t[0] += ((uint128_t) r4) * s1 + ((uint128_t) r1) * s4 + ((uint128_t) r2) * s3 + ((uint128_t) r3) * s2; t[1] += ((uint128_t) r4) * s2 + ((uint128_t) r2) * s4 + ((uint128_t) r3) * s3; t[2] += ((uint128_t) r4) * s3 + ((uint128_t) r3) * s4; t[3] += ((uint128_t) r4) * s4; #else mul64x64_128(mul, r4, s1) add128(t[0], mul) mul64x64_128(mul, r1, s4) add128(t[0], mul) mul64x64_128(mul, r2, s3) add128(t[0], mul) mul64x64_128(mul, r3, s2) add128(t[0], mul) mul64x64_128(mul, r4, s2) add128(t[1], mul) mul64x64_128(mul, r2, s4) add128(t[1], mul) mul64x64_128(mul, r3, s3) add128(t[1], mul) mul64x64_128(mul, r4, s3) add128(t[2], mul) mul64x64_128(mul, r3, s4) add128(t[2], mul) mul64x64_128(mul, r4, s4) add128(t[3], mul) #endif r0 = lo128(t[0]) & reduce_mask_51; shr128(c, t[0], 51); add128_64(t[1], c) r1 = lo128(t[1]) & reduce_mask_51; shr128(c, t[1], 51); add128_64(t[2], c) r2 = lo128(t[2]) & reduce_mask_51; shr128(c, t[2], 51); add128_64(t[3], c) r3 = lo128(t[3]) & reduce_mask_51; shr128(c, t[3], 51); add128_64(t[4], c) r4 = lo128(t[4]) & reduce_mask_51; shr128(c, t[4], 51); r0 += c * 19; c = r0 >> 51; r0 = r0 & reduce_mask_51; r1 += c; out[0] = r0; out[1] = r1; out[2] = r2; out[3] = r3; out[4] = r4; } DONNA_NOINLINE static void curve25519_mul_noinline(bignum25519 out, const bignum25519 in2, const bignum25519 in) { curve25519_mul(out, in2, in); } /* out = in^(2 * count) */ DONNA_NOINLINE static void curve25519_square_times(bignum25519 out, const bignum25519 in, uint64_t count) { #if !defined(HAVE_NATIVE_UINT128) uint128_t mul; #endif uint128_t t[5]; uint64_t r0,r1,r2,r3,r4,c; uint64_t d0,d1,d2,d4,d419; r0 = in[0]; r1 = in[1]; r2 = in[2]; r3 = in[3]; r4 = in[4]; do { d0 = r0 * 2; d1 = r1 * 2; d2 = r2 * 2 * 19; d419 = r4 * 19; d4 = d419 * 2; #if defined(HAVE_NATIVE_UINT128) t[0] = ((uint128_t) r0) * r0 + ((uint128_t) d4) * r1 + (((uint128_t) d2) * (r3 )); t[1] = ((uint128_t) d0) * r1 + ((uint128_t) d4) * r2 + (((uint128_t) r3) * (r3 * 19)); t[2] = ((uint128_t) d0) * r2 + ((uint128_t) r1) * r1 + (((uint128_t) d4) * (r3 )); t[3] = ((uint128_t) d0) * r3 + ((uint128_t) d1) * r2 + (((uint128_t) r4) * (d419 )); t[4] = ((uint128_t) d0) * r4 + ((uint128_t) d1) * r3 + (((uint128_t) r2) * (r2 )); #else mul64x64_128(t[0], r0, r0) mul64x64_128(mul, d4, r1) add128(t[0], mul) mul64x64_128(mul, d2, r3) add128(t[0], mul) mul64x64_128(t[1], d0, r1) mul64x64_128(mul, d4, r2) add128(t[1], mul) mul64x64_128(mul, r3, r3 * 19) add128(t[1], mul) mul64x64_128(t[2], d0, r2) mul64x64_128(mul, r1, r1) add128(t[2], mul) mul64x64_128(mul, d4, r3) add128(t[2], mul) mul64x64_128(t[3], d0, r3) mul64x64_128(mul, d1, r2) add128(t[3], mul) mul64x64_128(mul, r4, d419) add128(t[3], mul) mul64x64_128(t[4], d0, r4) mul64x64_128(mul, d1, r3) add128(t[4], mul) mul64x64_128(mul, r2, r2) add128(t[4], mul) #endif r0 = lo128(t[0]) & reduce_mask_51; r1 = lo128(t[1]) & reduce_mask_51; shl128(c, t[0], 13); r1 += c; r2 = lo128(t[2]) & reduce_mask_51; shl128(c, t[1], 13); r2 += c; r3 = lo128(t[3]) & reduce_mask_51; shl128(c, t[2], 13); r3 += c; r4 = lo128(t[4]) & reduce_mask_51; shl128(c, t[3], 13); r4 += c; shl128(c, t[4], 13); r0 += c * 19; c = r0 >> 51; r0 &= reduce_mask_51; r1 += c ; c = r1 >> 51; r1 &= reduce_mask_51; r2 += c ; c = r2 >> 51; r2 &= reduce_mask_51; r3 += c ; c = r3 >> 51; r3 &= reduce_mask_51; r4 += c ; c = r4 >> 51; r4 &= reduce_mask_51; r0 += c * 19; } while(--count); out[0] = r0; out[1] = r1; out[2] = r2; out[3] = r3; out[4] = r4; } DONNA_INLINE static void curve25519_square(bignum25519 out, const bignum25519 in) { #if !defined(HAVE_NATIVE_UINT128) uint128_t mul; #endif uint128_t t[5]; uint64_t r0,r1,r2,r3,r4,c; uint64_t d0,d1,d2,d4,d419; r0 = in[0]; r1 = in[1]; r2 = in[2]; r3 = in[3]; r4 = in[4]; d0 = r0 * 2; d1 = r1 * 2; d2 = r2 * 2 * 19; d419 = r4 * 19; d4 = d419 * 2; #if defined(HAVE_NATIVE_UINT128) t[0] = ((uint128_t) r0) * r0 + ((uint128_t) d4) * r1 + (((uint128_t) d2) * (r3 )); t[1] = ((uint128_t) d0) * r1 + ((uint128_t) d4) * r2 + (((uint128_t) r3) * (r3 * 19)); t[2] = ((uint128_t) d0) * r2 + ((uint128_t) r1) * r1 + (((uint128_t) d4) * (r3 )); t[3] = ((uint128_t) d0) * r3 + ((uint128_t) d1) * r2 + (((uint128_t) r4) * (d419 )); t[4] = ((uint128_t) d0) * r4 + ((uint128_t) d1) * r3 + (((uint128_t) r2) * (r2 )); #else mul64x64_128(t[0], r0, r0) mul64x64_128(mul, d4, r1) add128(t[0], mul) mul64x64_128(mul, d2, r3) add128(t[0], mul) mul64x64_128(t[1], d0, r1) mul64x64_128(mul, d4, r2) add128(t[1], mul) mul64x64_128(mul, r3, r3 * 19) add128(t[1], mul) mul64x64_128(t[2], d0, r2) mul64x64_128(mul, r1, r1) add128(t[2], mul) mul64x64_128(mul, d4, r3) add128(t[2], mul) mul64x64_128(t[3], d0, r3) mul64x64_128(mul, d1, r2) add128(t[3], mul) mul64x64_128(mul, r4, d419) add128(t[3], mul) mul64x64_128(t[4], d0, r4) mul64x64_128(mul, d1, r3) add128(t[4], mul) mul64x64_128(mul, r2, r2) add128(t[4], mul) #endif r0 = lo128(t[0]) & reduce_mask_51; shr128(c, t[0], 51); add128_64(t[1], c) r1 = lo128(t[1]) & reduce_mask_51; shr128(c, t[1], 51); add128_64(t[2], c) r2 = lo128(t[2]) & reduce_mask_51; shr128(c, t[2], 51); add128_64(t[3], c) r3 = lo128(t[3]) & reduce_mask_51; shr128(c, t[3], 51); add128_64(t[4], c) r4 = lo128(t[4]) & reduce_mask_51; shr128(c, t[4], 51); r0 += c * 19; c = r0 >> 51; r0 = r0 & reduce_mask_51; r1 += c; out[0] = r0; out[1] = r1; out[2] = r2; out[3] = r3; out[4] = r4; } /* Take a little-endian, 32-byte number and expand it into polynomial form */ DONNA_INLINE static void curve25519_expand(bignum25519 out, const unsigned char *in) { static const union { uint8_t b[2]; uint16_t s; } endian_check = {{1,0}}; uint64_t x0,x1,x2,x3; if (endian_check.s == 1) { x0 = *(uint64_t *)(in + 0); x1 = *(uint64_t *)(in + 8); x2 = *(uint64_t *)(in + 16); x3 = *(uint64_t *)(in + 24); } else { #define F(s) \ ((((uint64_t)in[s + 0]) ) | \ (((uint64_t)in[s + 1]) << 8) | \ (((uint64_t)in[s + 2]) << 16) | \ (((uint64_t)in[s + 3]) << 24) | \ (((uint64_t)in[s + 4]) << 32) | \ (((uint64_t)in[s + 5]) << 40) | \ (((uint64_t)in[s + 6]) << 48) | \ (((uint64_t)in[s + 7]) << 56)) x0 = F(0); x1 = F(8); x2 = F(16); x3 = F(24); } out[0] = x0 & reduce_mask_51; x0 = (x0 >> 51) | (x1 << 13); out[1] = x0 & reduce_mask_51; x1 = (x1 >> 38) | (x2 << 26); out[2] = x1 & reduce_mask_51; x2 = (x2 >> 25) | (x3 << 39); out[3] = x2 & reduce_mask_51; x3 = (x3 >> 12); out[4] = x3 & reduce_mask_51; } /* Take a fully reduced polynomial form number and contract it into a * little-endian, 32-byte array */ DONNA_INLINE static void curve25519_contract(unsigned char *out, const bignum25519 input) { uint64_t t[5]; uint64_t f, i; t[0] = input[0]; t[1] = input[1]; t[2] = input[2]; t[3] = input[3]; t[4] = input[4]; #define curve25519_contract_carry() \ t[1] += t[0] >> 51; t[0] &= reduce_mask_51; \ t[2] += t[1] >> 51; t[1] &= reduce_mask_51; \ t[3] += t[2] >> 51; t[2] &= reduce_mask_51; \ t[4] += t[3] >> 51; t[3] &= reduce_mask_51; #define curve25519_contract_carry_full() curve25519_contract_carry() \ t[0] += 19 * (t[4] >> 51); t[4] &= reduce_mask_51; #define curve25519_contract_carry_final() curve25519_contract_carry() \ t[4] &= reduce_mask_51; curve25519_contract_carry_full() curve25519_contract_carry_full() /* now t is between 0 and 2^255-1, properly carried. */ /* case 1: between 0 and 2^255-20. case 2: between 2^255-19 and 2^255-1. */ t[0] += 19; curve25519_contract_carry_full() /* now between 19 and 2^255-1 in both cases, and offset by 19. */ t[0] += (reduce_mask_51 + 1) - 19; t[1] += (reduce_mask_51 + 1) - 1; t[2] += (reduce_mask_51 + 1) - 1; t[3] += (reduce_mask_51 + 1) - 1; t[4] += (reduce_mask_51 + 1) - 1; /* now between 2^255 and 2^256-20, and offset by 2^255. */ curve25519_contract_carry_final() #define write51full(n,shift) \ f = ((t[n] >> shift) | (t[n+1] << (51 - shift))); \ for (i = 0; i < 8; i++, f >>= 8) *out++ = (unsigned char)f; #define write51(n) write51full(n,13*n) write51(0) write51(1) write51(2) write51(3) } #if !defined(ED25519_GCC_64BIT_CHOOSE) /* out = (flag) ? in : out */ DONNA_INLINE static void curve25519_move_conditional_bytes(uint8_t out[96], const uint8_t in[96], uint64_t flag) { const uint64_t nb = flag - 1, b = ~nb; const uint64_t *inq = (const uint64_t *)in; uint64_t *outq = (uint64_t *)out; outq[0] = (outq[0] & nb) | (inq[0] & b); outq[1] = (outq[1] & nb) | (inq[1] & b); outq[2] = (outq[2] & nb) | (inq[2] & b); outq[3] = (outq[3] & nb) | (inq[3] & b); outq[4] = (outq[4] & nb) | (inq[4] & b); outq[5] = (outq[5] & nb) | (inq[5] & b); outq[6] = (outq[6] & nb) | (inq[6] & b); outq[7] = (outq[7] & nb) | (inq[7] & b); outq[8] = (outq[8] & nb) | (inq[8] & b); outq[9] = (outq[9] & nb) | (inq[9] & b); outq[10] = (outq[10] & nb) | (inq[10] & b); outq[11] = (outq[11] & nb) | (inq[11] & b); } /* if (iswap) swap(a, b) */ DONNA_INLINE static void curve25519_swap_conditional(bignum25519 a, bignum25519 b, uint64_t iswap) { const uint64_t swap = (uint64_t)(-(int64_t)iswap); uint64_t x0,x1,x2,x3,x4; x0 = swap & (a[0] ^ b[0]); a[0] ^= x0; b[0] ^= x0; x1 = swap & (a[1] ^ b[1]); a[1] ^= x1; b[1] ^= x1; x2 = swap & (a[2] ^ b[2]); a[2] ^= x2; b[2] ^= x2; x3 = swap & (a[3] ^ b[3]); a[3] ^= x3; b[3] ^= x3; x4 = swap & (a[4] ^ b[4]); a[4] ^= x4; b[4] ^= x4; } #endif /* ED25519_GCC_64BIT_CHOOSE */ #define ED25519_64BIT_TABLES tor-0.2.7.6/src/ext/ed25519/donna/ed25519-donna-64bit-x86.h0000644000175000017500000003124212621363245016720 00000000000000#if defined(ED25519_GCC_64BIT_X86_CHOOSE) #define HAVE_GE25519_SCALARMULT_BASE_CHOOSE_NIELS DONNA_NOINLINE static void ge25519_scalarmult_base_choose_niels(ge25519_niels *t, const uint8_t table[256][96], uint32_t pos, signed char b) { int64_t breg = (int64_t)b; uint64_t sign = (uint64_t)breg >> 63; uint64_t mask = ~(sign - 1); uint64_t u = (breg + mask) ^ mask; __asm__ __volatile__ ( /* ysubx+xaddy+t2d */ "movq %0, %%rax ;\n" "movd %%rax, %%xmm14 ;\n" "pshufd $0x00, %%xmm14, %%xmm14 ;\n" "pxor %%xmm0, %%xmm0 ;\n" "pxor %%xmm1, %%xmm1 ;\n" "pxor %%xmm2, %%xmm2 ;\n" "pxor %%xmm3, %%xmm3 ;\n" "pxor %%xmm4, %%xmm4 ;\n" "pxor %%xmm5, %%xmm5 ;\n" /* 0 */ "movq $0, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movq $1, %%rax ;\n" "movd %%rax, %%xmm6 ;\n" "pxor %%xmm7, %%xmm7 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm6, %%xmm2 ;\n" "por %%xmm7, %%xmm3 ;\n" /* 1 */ "movq $1, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 0(%1), %%xmm6 ;\n" "movdqa 16(%1), %%xmm7 ;\n" "movdqa 32(%1), %%xmm8 ;\n" "movdqa 48(%1), %%xmm9 ;\n" "movdqa 64(%1), %%xmm10 ;\n" "movdqa 80(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 2 */ "movq $2, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 96(%1), %%xmm6 ;\n" "movdqa 112(%1), %%xmm7 ;\n" "movdqa 128(%1), %%xmm8 ;\n" "movdqa 144(%1), %%xmm9 ;\n" "movdqa 160(%1), %%xmm10 ;\n" "movdqa 176(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 3 */ "movq $3, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 192(%1), %%xmm6 ;\n" "movdqa 208(%1), %%xmm7 ;\n" "movdqa 224(%1), %%xmm8 ;\n" "movdqa 240(%1), %%xmm9 ;\n" "movdqa 256(%1), %%xmm10 ;\n" "movdqa 272(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 4 */ "movq $4, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 288(%1), %%xmm6 ;\n" "movdqa 304(%1), %%xmm7 ;\n" "movdqa 320(%1), %%xmm8 ;\n" "movdqa 336(%1), %%xmm9 ;\n" "movdqa 352(%1), %%xmm10 ;\n" "movdqa 368(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 5 */ "movq $5, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 384(%1), %%xmm6 ;\n" "movdqa 400(%1), %%xmm7 ;\n" "movdqa 416(%1), %%xmm8 ;\n" "movdqa 432(%1), %%xmm9 ;\n" "movdqa 448(%1), %%xmm10 ;\n" "movdqa 464(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 6 */ "movq $6, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 480(%1), %%xmm6 ;\n" "movdqa 496(%1), %%xmm7 ;\n" "movdqa 512(%1), %%xmm8 ;\n" "movdqa 528(%1), %%xmm9 ;\n" "movdqa 544(%1), %%xmm10 ;\n" "movdqa 560(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 7 */ "movq $7, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 576(%1), %%xmm6 ;\n" "movdqa 592(%1), %%xmm7 ;\n" "movdqa 608(%1), %%xmm8 ;\n" "movdqa 624(%1), %%xmm9 ;\n" "movdqa 640(%1), %%xmm10 ;\n" "movdqa 656(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 8 */ "movq $8, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 672(%1), %%xmm6 ;\n" "movdqa 688(%1), %%xmm7 ;\n" "movdqa 704(%1), %%xmm8 ;\n" "movdqa 720(%1), %%xmm9 ;\n" "movdqa 736(%1), %%xmm10 ;\n" "movdqa 752(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* conditionally swap ysubx and xaddy */ "movq %3, %%rax ;\n" "xorq $1, %%rax ;\n" "movd %%rax, %%xmm14 ;\n" "pxor %%xmm15, %%xmm15 ;\n" "pshufd $0x00, %%xmm14, %%xmm14 ;\n" "pxor %%xmm0, %%xmm2 ;\n" "pxor %%xmm1, %%xmm3 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa %%xmm2, %%xmm6 ;\n" "movdqa %%xmm3, %%xmm7 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pxor %%xmm6, %%xmm0 ;\n" "pxor %%xmm7, %%xmm1 ;\n" "pxor %%xmm0, %%xmm2 ;\n" "pxor %%xmm1, %%xmm3 ;\n" /* store ysubx */ "movq $0x7ffffffffffff, %%rax ;\n" "movd %%xmm0, %%rcx ;\n" "movd %%xmm0, %%r8 ;\n" "movd %%xmm1, %%rsi ;\n" "pshufd $0xee, %%xmm0, %%xmm0 ;\n" "pshufd $0xee, %%xmm1, %%xmm1 ;\n" "movd %%xmm0, %%rdx ;\n" "movd %%xmm1, %%rdi ;\n" "shrdq $51, %%rdx, %%r8 ;\n" "shrdq $38, %%rsi, %%rdx ;\n" "shrdq $25, %%rdi, %%rsi ;\n" "shrq $12, %%rdi ;\n" "andq %%rax, %%rcx ;\n" "andq %%rax, %%r8 ;\n" "andq %%rax, %%rdx ;\n" "andq %%rax, %%rsi ;\n" "andq %%rax, %%rdi ;\n" "movq %%rcx, 0(%2) ;\n" "movq %%r8, 8(%2) ;\n" "movq %%rdx, 16(%2) ;\n" "movq %%rsi, 24(%2) ;\n" "movq %%rdi, 32(%2) ;\n" /* store xaddy */ "movq $0x7ffffffffffff, %%rax ;\n" "movd %%xmm2, %%rcx ;\n" "movd %%xmm2, %%r8 ;\n" "movd %%xmm3, %%rsi ;\n" "pshufd $0xee, %%xmm2, %%xmm2 ;\n" "pshufd $0xee, %%xmm3, %%xmm3 ;\n" "movd %%xmm2, %%rdx ;\n" "movd %%xmm3, %%rdi ;\n" "shrdq $51, %%rdx, %%r8 ;\n" "shrdq $38, %%rsi, %%rdx ;\n" "shrdq $25, %%rdi, %%rsi ;\n" "shrq $12, %%rdi ;\n" "andq %%rax, %%rcx ;\n" "andq %%rax, %%r8 ;\n" "andq %%rax, %%rdx ;\n" "andq %%rax, %%rsi ;\n" "andq %%rax, %%rdi ;\n" "movq %%rcx, 40(%2) ;\n" "movq %%r8, 48(%2) ;\n" "movq %%rdx, 56(%2) ;\n" "movq %%rsi, 64(%2) ;\n" "movq %%rdi, 72(%2) ;\n" /* extract t2d */ "movq $0x7ffffffffffff, %%rax ;\n" "movd %%xmm4, %%rcx ;\n" "movd %%xmm4, %%r8 ;\n" "movd %%xmm5, %%rsi ;\n" "pshufd $0xee, %%xmm4, %%xmm4 ;\n" "pshufd $0xee, %%xmm5, %%xmm5 ;\n" "movd %%xmm4, %%rdx ;\n" "movd %%xmm5, %%rdi ;\n" "shrdq $51, %%rdx, %%r8 ;\n" "shrdq $38, %%rsi, %%rdx ;\n" "shrdq $25, %%rdi, %%rsi ;\n" "shrq $12, %%rdi ;\n" "andq %%rax, %%rcx ;\n" "andq %%rax, %%r8 ;\n" "andq %%rax, %%rdx ;\n" "andq %%rax, %%rsi ;\n" "andq %%rax, %%rdi ;\n" /* conditionally negate t2d */ "movq %3, %%rax ;\n" "movq $0xfffffffffffda, %%r9 ;\n" "movq $0xffffffffffffe, %%r10 ;\n" "movq %%r10, %%r11 ;\n" "movq %%r10, %%r12 ;\n" "movq %%r10, %%r13 ;\n" "subq %%rcx, %%r9 ;\n" "subq %%r8, %%r10 ;\n" "subq %%rdx, %%r11 ;\n" "subq %%rsi, %%r12 ;\n" "subq %%rdi, %%r13 ;\n" "cmpq $1, %%rax ;\n" "cmove %%r9, %%rcx ;\n" "cmove %%r10, %%r8 ;\n" "cmove %%r11, %%rdx ;\n" "cmove %%r12, %%rsi ;\n" "cmove %%r13, %%rdi ;\n" /* store t2d */ "movq %%rcx, 80(%2) ;\n" "movq %%r8, 88(%2) ;\n" "movq %%rdx, 96(%2) ;\n" "movq %%rsi, 104(%2) ;\n" "movq %%rdi, 112(%2) ;\n" : : "m"(u), "r"(&table[pos * 8]), "r"(t), "m"(sign) /* %0 = u, %1 = table, %2 = t, %3 = sign */ : "%rax", "%rcx", "%rdx", "%rdi", "%rsi", "%r8", "%r9", "%r10", "%r11", "%r12", "%r13", "%xmm0", "%xmm1", "%xmm2", "%xmm3", "%xmm4", "%xmm5", "%xmm6", "%xmm7", "%xmm8", "%xmm9", "%xmm10", "%xmm11", "%xmm14", "%xmm14", "cc", "memory" ); } #endif /* defined(ED25519_GCC_64BIT_X86_CHOOSE) */ tor-0.2.7.6/src/ext/ed25519/donna/ed25519_donna_tor.h0000644000175000017500000000252712621363246016322 00000000000000/* Added for Tor. */ #ifndef SRC_EXT_ED25519_DONNA_H_INCLUDED_ #define SRC_EXT_ED25519_DONNA_H_INCLUDED_ #include typedef unsigned char curved25519_key[32]; int ed25519_sign_open_batch_donna(const unsigned char **m, size_t *mlen, const unsigned char **pk, const unsigned char **RS, size_t num, int *valid); void curved25519_scalarmult_basepoint_donna(curved25519_key pk, const curved25519_key e); /* Tor specific interface to match the `ref10` glue code. */ int ed25519_donna_selftest(void); int ed25519_donna_seckey(unsigned char *sk); int ed25519_donna_seckey_expand(unsigned char *sk, const unsigned char *sk_seed); int ed25519_donna_pubkey(unsigned char *pk, const unsigned char *sk); int ed25519_donna_keygen(unsigned char *pk, unsigned char *sk); int ed25519_donna_open(const unsigned char *signature, const unsigned char *m, size_t mlen, const unsigned char *pk); int ed25519_donna_sign(unsigned char *sig, const unsigned char *m, size_t mlen, const unsigned char *sk, const unsigned char *pk); int ed25519_donna_blind_secret_key(unsigned char *out, const unsigned char *inp, const unsigned char *param); int ed25519_donna_blind_public_key(unsigned char *out, const unsigned char *inp, const unsigned char *param); int ed25519_donna_pubkey_from_curve25519_pubkey(unsigned char *out, const unsigned char *inp, int signbit); #endif tor-0.2.7.6/src/ext/ed25519/donna/ed25519-donna.h0000644000175000017500000000535112621363245015351 00000000000000/* Public domain by Andrew M. Modified from the amd64-51-30k implementation by Daniel J. Bernstein Niels Duif Tanja Lange Peter Schwabe Bo-Yin Yang */ #include "ed25519-donna-portable.h" #if defined(ED25519_SSE2) #else #if defined(HAVE_UINT128) && !defined(ED25519_FORCE_32BIT) #define ED25519_64BIT #else #define ED25519_32BIT #endif #endif #if !defined(ED25519_NO_INLINE_ASM) /* detect extra features first so un-needed functions can be disabled throughout */ #if defined(ED25519_SSE2) #if defined(COMPILER_GCC) && defined(CPU_X86) #define ED25519_GCC_32BIT_SSE_CHOOSE #elif defined(COMPILER_GCC) && defined(CPU_X86_64) #define ED25519_GCC_64BIT_SSE_CHOOSE #endif #else #if defined(CPU_X86_64) #if defined(COMPILER_GCC) #if defined(ED25519_64BIT) #define ED25519_GCC_64BIT_X86_CHOOSE #else #define ED25519_GCC_64BIT_32BIT_CHOOSE #endif #endif #endif #endif #endif #if defined(ED25519_SSE2) #include "curve25519-donna-sse2.h" #elif defined(ED25519_64BIT) #include "curve25519-donna-64bit.h" #else #include "curve25519-donna-32bit.h" #endif #include "curve25519-donna-helpers.h" /* separate uint128 check for 64 bit sse2 */ #if defined(HAVE_UINT128) && !defined(ED25519_FORCE_32BIT) #include "modm-donna-64bit.h" #else #include "modm-donna-32bit.h" #endif typedef unsigned char hash_512bits[64]; /* Timing safe memory compare */ static int ed25519_verify(const unsigned char *x, const unsigned char *y, size_t len) { size_t differentbits = 0; while (len--) differentbits |= (*x++ ^ *y++); /*coverity[overflow]*/ return (int) (1 & ((differentbits - 1) >> 8)); } /* * Arithmetic on the twisted Edwards curve -x^2 + y^2 = 1 + dx^2y^2 * with d = -(121665/121666) = 37095705934669439343138083508754565189542113879843219016388785533085940283555 * Base point: (15112221349535400772501151409588531511454012693041857206046113283949847762202,46316835694926478169428394003475163141307993866256225615783033603165251855960); */ typedef struct ge25519_t { bignum25519 x, y, z, t; } ge25519; typedef struct ge25519_p1p1_t { bignum25519 x, y, z, t; } ge25519_p1p1; typedef struct ge25519_niels_t { bignum25519 ysubx, xaddy, t2d; } ge25519_niels; typedef struct ge25519_pniels_t { bignum25519 ysubx, xaddy, z, t2d; } ge25519_pniels; #include "ed25519-donna-basepoint-table.h" #if defined(ED25519_64BIT) #include "ed25519-donna-64bit-tables.h" #include "ed25519-donna-64bit-x86.h" #else #include "ed25519-donna-32bit-tables.h" #include "ed25519-donna-64bit-x86-32bit.h" #endif #if defined(ED25519_SSE2) #include "ed25519-donna-32bit-sse2.h" #include "ed25519-donna-64bit-sse2.h" #include "ed25519-donna-impl-sse2.h" #else #include "ed25519-donna-impl-base.h" #endif tor-0.2.7.6/src/ext/ed25519/donna/ed25519-hash-custom.h0000644000175000017500000000056212621363245016504 00000000000000/* a custom hash must have a 512bit digest and implement: struct ed25519_hash_context; void ed25519_hash_init(ed25519_hash_context *ctx); void ed25519_hash_update(ed25519_hash_context *ctx, const uint8_t *in, size_t inlen); void ed25519_hash_final(ed25519_hash_context *ctx, uint8_t *hash); void ed25519_hash(uint8_t *hash, const uint8_t *in, size_t inlen); */ tor-0.2.7.6/src/ext/ed25519/donna/curve25519-donna-sse2.h0000644000175000017500000016240212621363245016760 00000000000000/* Public domain by Andrew M. See: https://github.com/floodyberry/curve25519-donna SSE2 curve25519 implementation */ #include typedef __m128i xmmi; typedef union packedelem8_t { unsigned char u[16]; xmmi v; } packedelem8; typedef union packedelem32_t { uint32_t u[4]; xmmi v; } packedelem32; typedef union packedelem64_t { uint64_t u[2]; xmmi v; } packedelem64; /* 10 elements + an extra 2 to fit in 3 xmm registers */ typedef uint32_t bignum25519[12]; typedef packedelem32 packed32bignum25519[5]; typedef packedelem64 packed64bignum25519[10]; static const packedelem32 bot32bitmask = {{0xffffffff, 0x00000000, 0xffffffff, 0x00000000}}; static const packedelem32 top32bitmask = {{0x00000000, 0xffffffff, 0x00000000, 0xffffffff}}; static const packedelem32 top64bitmask = {{0x00000000, 0x00000000, 0xffffffff, 0xffffffff}}; static const packedelem32 bot64bitmask = {{0xffffffff, 0xffffffff, 0x00000000, 0x00000000}}; /* reduction masks */ static const packedelem64 packedmask26 = {{0x03ffffff, 0x03ffffff}}; static const packedelem64 packedmask25 = {{0x01ffffff, 0x01ffffff}}; static const packedelem32 packedmask2625 = {{0x3ffffff,0,0x1ffffff,0}}; static const packedelem32 packedmask26262626 = {{0x03ffffff, 0x03ffffff, 0x03ffffff, 0x03ffffff}}; static const packedelem32 packedmask25252525 = {{0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff}}; /* multipliers */ static const packedelem64 packednineteen = {{19, 19}}; static const packedelem64 packednineteenone = {{19, 1}}; static const packedelem64 packedthirtyeight = {{38, 38}}; static const packedelem64 packed3819 = {{19*2,19}}; static const packedelem64 packed9638 = {{19*4,19*2}}; /* 121666,121665 */ static const packedelem64 packed121666121665 = {{121666, 121665}}; /* 2*(2^255 - 19) = 0 mod p */ static const packedelem32 packed2p0 = {{0x7ffffda,0x3fffffe,0x7fffffe,0x3fffffe}}; static const packedelem32 packed2p1 = {{0x7fffffe,0x3fffffe,0x7fffffe,0x3fffffe}}; static const packedelem32 packed2p2 = {{0x7fffffe,0x3fffffe,0x0000000,0x0000000}}; static const packedelem32 packed32packed2p0 = {{0x7ffffda,0x7ffffda,0x3fffffe,0x3fffffe}}; static const packedelem32 packed32packed2p1 = {{0x7fffffe,0x7fffffe,0x3fffffe,0x3fffffe}}; /* 4*(2^255 - 19) = 0 mod p */ static const packedelem32 packed4p0 = {{0xfffffb4,0x7fffffc,0xffffffc,0x7fffffc}}; static const packedelem32 packed4p1 = {{0xffffffc,0x7fffffc,0xffffffc,0x7fffffc}}; static const packedelem32 packed4p2 = {{0xffffffc,0x7fffffc,0x0000000,0x0000000}}; static const packedelem32 packed32packed4p0 = {{0xfffffb4,0xfffffb4,0x7fffffc,0x7fffffc}}; static const packedelem32 packed32packed4p1 = {{0xffffffc,0xffffffc,0x7fffffc,0x7fffffc}}; /* out = in */ DONNA_INLINE static void curve25519_copy(bignum25519 out, const bignum25519 in) { xmmi x0,x1,x2; x0 = _mm_load_si128((xmmi*)in + 0); x1 = _mm_load_si128((xmmi*)in + 1); x2 = _mm_load_si128((xmmi*)in + 2); _mm_store_si128((xmmi*)out + 0, x0); _mm_store_si128((xmmi*)out + 1, x1); _mm_store_si128((xmmi*)out + 2, x2); } /* out = a + b */ DONNA_INLINE static void curve25519_add(bignum25519 out, const bignum25519 a, const bignum25519 b) { xmmi a0,a1,a2,b0,b1,b2; a0 = _mm_load_si128((xmmi*)a + 0); a1 = _mm_load_si128((xmmi*)a + 1); a2 = _mm_load_si128((xmmi*)a + 2); b0 = _mm_load_si128((xmmi*)b + 0); b1 = _mm_load_si128((xmmi*)b + 1); b2 = _mm_load_si128((xmmi*)b + 2); a0 = _mm_add_epi32(a0, b0); a1 = _mm_add_epi32(a1, b1); a2 = _mm_add_epi32(a2, b2); _mm_store_si128((xmmi*)out + 0, a0); _mm_store_si128((xmmi*)out + 1, a1); _mm_store_si128((xmmi*)out + 2, a2); } #define curve25519_add_after_basic curve25519_add_reduce DONNA_INLINE static void curve25519_add_reduce(bignum25519 out, const bignum25519 a, const bignum25519 b) { xmmi a0,a1,a2,b0,b1,b2; xmmi c1,c2,c3; xmmi r0,r1,r2,r3,r4,r5; a0 = _mm_load_si128((xmmi*)a + 0); a1 = _mm_load_si128((xmmi*)a + 1); a2 = _mm_load_si128((xmmi*)a + 2); b0 = _mm_load_si128((xmmi*)b + 0); b1 = _mm_load_si128((xmmi*)b + 1); b2 = _mm_load_si128((xmmi*)b + 2); a0 = _mm_add_epi32(a0, b0); a1 = _mm_add_epi32(a1, b1); a2 = _mm_add_epi32(a2, b2); r0 = _mm_and_si128(_mm_unpacklo_epi64(a0, a1), bot32bitmask.v); r1 = _mm_srli_epi64(_mm_unpacklo_epi64(a0, a1), 32); r2 = _mm_and_si128(_mm_unpackhi_epi64(a0, a1), bot32bitmask.v); r3 = _mm_srli_epi64(_mm_unpackhi_epi64(a0, a1), 32); r4 = _mm_and_si128(_mm_unpacklo_epi64(_mm_setzero_si128(), a2), bot32bitmask.v); r5 = _mm_srli_epi64(_mm_unpacklo_epi64(_mm_setzero_si128(), a2), 32); c1 = _mm_srli_epi64(r0, 26); c2 = _mm_srli_epi64(r2, 26); r0 = _mm_and_si128(r0, packedmask26.v); r2 = _mm_and_si128(r2, packedmask26.v); r1 = _mm_add_epi64(r1, c1); r3 = _mm_add_epi64(r3, c2); c1 = _mm_srli_epi64(r1, 25); c2 = _mm_srli_epi64(r3, 25); r1 = _mm_and_si128(r1, packedmask25.v); r3 = _mm_and_si128(r3, packedmask25.v); r2 = _mm_add_epi64(r2, c1); r4 = _mm_add_epi64(r4, c2); c3 = _mm_slli_si128(c2, 8); c1 = _mm_srli_epi64(r4, 26); r4 = _mm_and_si128(r4, packedmask26.v); r5 = _mm_add_epi64(r5, c1); c1 = _mm_srli_epi64(r5, 25); r5 = _mm_and_si128(r5, packedmask25.v); r0 = _mm_add_epi64(r0, _mm_unpackhi_epi64(_mm_mul_epu32(c1, packednineteen.v), c3)); c1 = _mm_srli_epi64(r0, 26); c2 = _mm_srli_epi64(r2, 26); r0 = _mm_and_si128(r0, packedmask26.v); r2 = _mm_and_si128(r2, packedmask26.v); r1 = _mm_add_epi64(r1, c1); r3 = _mm_add_epi64(r3, c2); _mm_store_si128((xmmi*)out + 0, _mm_unpacklo_epi64(_mm_unpacklo_epi32(r0, r1), _mm_unpacklo_epi32(r2, r3))); _mm_store_si128((xmmi*)out + 1, _mm_unpacklo_epi64(_mm_unpackhi_epi32(r0, r1), _mm_unpackhi_epi32(r2, r3))); _mm_store_si128((xmmi*)out + 2, _mm_unpackhi_epi32(r4, r5)); } DONNA_INLINE static void curve25519_sub(bignum25519 out, const bignum25519 a, const bignum25519 b) { xmmi a0,a1,a2,b0,b1,b2; xmmi c1,c2; xmmi r0,r1; a0 = _mm_load_si128((xmmi*)a + 0); a1 = _mm_load_si128((xmmi*)a + 1); a2 = _mm_load_si128((xmmi*)a + 2); a0 = _mm_add_epi32(a0, packed2p0.v); a1 = _mm_add_epi32(a1, packed2p1.v); a2 = _mm_add_epi32(a2, packed2p2.v); b0 = _mm_load_si128((xmmi*)b + 0); b1 = _mm_load_si128((xmmi*)b + 1); b2 = _mm_load_si128((xmmi*)b + 2); a0 = _mm_sub_epi32(a0, b0); a1 = _mm_sub_epi32(a1, b1); a2 = _mm_sub_epi32(a2, b2); r0 = _mm_and_si128(_mm_shuffle_epi32(a0, _MM_SHUFFLE(2,2,0,0)), bot32bitmask.v); r1 = _mm_and_si128(_mm_shuffle_epi32(a0, _MM_SHUFFLE(3,3,1,1)), bot32bitmask.v); c1 = _mm_srli_epi32(r0, 26); c2 = _mm_srli_epi32(r1, 25); r0 = _mm_and_si128(r0, packedmask26.v); r1 = _mm_and_si128(r1, packedmask25.v); r0 = _mm_add_epi32(r0, _mm_slli_si128(c2, 8)); r1 = _mm_add_epi32(r1, c1); a0 = _mm_unpacklo_epi64(_mm_unpacklo_epi32(r0, r1), _mm_unpackhi_epi32(r0, r1)); a1 = _mm_add_epi32(a1, _mm_srli_si128(c2, 8)); _mm_store_si128((xmmi*)out + 0, a0); _mm_store_si128((xmmi*)out + 1, a1); _mm_store_si128((xmmi*)out + 2, a2); } DONNA_INLINE static void curve25519_sub_after_basic(bignum25519 out, const bignum25519 a, const bignum25519 b) { xmmi a0,a1,a2,b0,b1,b2; xmmi c1,c2,c3; xmmi r0,r1,r2,r3,r4,r5; a0 = _mm_load_si128((xmmi*)a + 0); a1 = _mm_load_si128((xmmi*)a + 1); a2 = _mm_load_si128((xmmi*)a + 2); a0 = _mm_add_epi32(a0, packed4p0.v); a1 = _mm_add_epi32(a1, packed4p1.v); a2 = _mm_add_epi32(a2, packed4p2.v); b0 = _mm_load_si128((xmmi*)b + 0); b1 = _mm_load_si128((xmmi*)b + 1); b2 = _mm_load_si128((xmmi*)b + 2); a0 = _mm_sub_epi32(a0, b0); a1 = _mm_sub_epi32(a1, b1); a2 = _mm_sub_epi32(a2, b2); r0 = _mm_and_si128(_mm_unpacklo_epi64(a0, a1), bot32bitmask.v); r1 = _mm_srli_epi64(_mm_unpacklo_epi64(a0, a1), 32); r2 = _mm_and_si128(_mm_unpackhi_epi64(a0, a1), bot32bitmask.v); r3 = _mm_srli_epi64(_mm_unpackhi_epi64(a0, a1), 32); r4 = _mm_and_si128(_mm_unpacklo_epi64(_mm_setzero_si128(), a2), bot32bitmask.v); r5 = _mm_srli_epi64(_mm_unpacklo_epi64(_mm_setzero_si128(), a2), 32); c1 = _mm_srli_epi64(r0, 26); c2 = _mm_srli_epi64(r2, 26); r0 = _mm_and_si128(r0, packedmask26.v); r2 = _mm_and_si128(r2, packedmask26.v); r1 = _mm_add_epi64(r1, c1); r3 = _mm_add_epi64(r3, c2); c1 = _mm_srli_epi64(r1, 25); c2 = _mm_srli_epi64(r3, 25); r1 = _mm_and_si128(r1, packedmask25.v); r3 = _mm_and_si128(r3, packedmask25.v); r2 = _mm_add_epi64(r2, c1); r4 = _mm_add_epi64(r4, c2); c3 = _mm_slli_si128(c2, 8); c1 = _mm_srli_epi64(r4, 26); r4 = _mm_and_si128(r4, packedmask26.v); r5 = _mm_add_epi64(r5, c1); c1 = _mm_srli_epi64(r5, 25); r5 = _mm_and_si128(r5, packedmask25.v); r0 = _mm_add_epi64(r0, _mm_unpackhi_epi64(_mm_mul_epu32(c1, packednineteen.v), c3)); c1 = _mm_srli_epi64(r0, 26); c2 = _mm_srli_epi64(r2, 26); r0 = _mm_and_si128(r0, packedmask26.v); r2 = _mm_and_si128(r2, packedmask26.v); r1 = _mm_add_epi64(r1, c1); r3 = _mm_add_epi64(r3, c2); _mm_store_si128((xmmi*)out + 0, _mm_unpacklo_epi64(_mm_unpacklo_epi32(r0, r1), _mm_unpacklo_epi32(r2, r3))); _mm_store_si128((xmmi*)out + 1, _mm_unpacklo_epi64(_mm_unpackhi_epi32(r0, r1), _mm_unpackhi_epi32(r2, r3))); _mm_store_si128((xmmi*)out + 2, _mm_unpackhi_epi32(r4, r5)); } DONNA_INLINE static void curve25519_sub_reduce(bignum25519 out, const bignum25519 a, const bignum25519 b) { xmmi a0,a1,a2,b0,b1,b2; xmmi c1,c2,c3; xmmi r0,r1,r2,r3,r4,r5; a0 = _mm_load_si128((xmmi*)a + 0); a1 = _mm_load_si128((xmmi*)a + 1); a2 = _mm_load_si128((xmmi*)a + 2); a0 = _mm_add_epi32(a0, packed2p0.v); a1 = _mm_add_epi32(a1, packed2p1.v); a2 = _mm_add_epi32(a2, packed2p2.v); b0 = _mm_load_si128((xmmi*)b + 0); b1 = _mm_load_si128((xmmi*)b + 1); b2 = _mm_load_si128((xmmi*)b + 2); a0 = _mm_sub_epi32(a0, b0); a1 = _mm_sub_epi32(a1, b1); a2 = _mm_sub_epi32(a2, b2); r0 = _mm_and_si128(_mm_unpacklo_epi64(a0, a1), bot32bitmask.v); r1 = _mm_srli_epi64(_mm_unpacklo_epi64(a0, a1), 32); r2 = _mm_and_si128(_mm_unpackhi_epi64(a0, a1), bot32bitmask.v); r3 = _mm_srli_epi64(_mm_unpackhi_epi64(a0, a1), 32); r4 = _mm_and_si128(_mm_unpacklo_epi64(_mm_setzero_si128(), a2), bot32bitmask.v); r5 = _mm_srli_epi64(_mm_unpacklo_epi64(_mm_setzero_si128(), a2), 32); c1 = _mm_srli_epi64(r0, 26); c2 = _mm_srli_epi64(r2, 26); r0 = _mm_and_si128(r0, packedmask26.v); r2 = _mm_and_si128(r2, packedmask26.v); r1 = _mm_add_epi64(r1, c1); r3 = _mm_add_epi64(r3, c2); c1 = _mm_srli_epi64(r1, 25); c2 = _mm_srli_epi64(r3, 25); r1 = _mm_and_si128(r1, packedmask25.v); r3 = _mm_and_si128(r3, packedmask25.v); r2 = _mm_add_epi64(r2, c1); r4 = _mm_add_epi64(r4, c2); c3 = _mm_slli_si128(c2, 8); c1 = _mm_srli_epi64(r4, 26); r4 = _mm_and_si128(r4, packedmask26.v); r5 = _mm_add_epi64(r5, c1); c1 = _mm_srli_epi64(r5, 25); r5 = _mm_and_si128(r5, packedmask25.v); r0 = _mm_add_epi64(r0, _mm_unpackhi_epi64(_mm_mul_epu32(c1, packednineteen.v), c3)); c1 = _mm_srli_epi64(r0, 26); c2 = _mm_srli_epi64(r2, 26); r0 = _mm_and_si128(r0, packedmask26.v); r2 = _mm_and_si128(r2, packedmask26.v); r1 = _mm_add_epi64(r1, c1); r3 = _mm_add_epi64(r3, c2); _mm_store_si128((xmmi*)out + 0, _mm_unpacklo_epi64(_mm_unpacklo_epi32(r0, r1), _mm_unpacklo_epi32(r2, r3))); _mm_store_si128((xmmi*)out + 1, _mm_unpacklo_epi64(_mm_unpackhi_epi32(r0, r1), _mm_unpackhi_epi32(r2, r3))); _mm_store_si128((xmmi*)out + 2, _mm_unpackhi_epi32(r4, r5)); } DONNA_INLINE static void curve25519_neg(bignum25519 out, const bignum25519 b) { xmmi a0,a1,a2,b0,b1,b2; xmmi c1,c2,c3; xmmi r0,r1,r2,r3,r4,r5; a0 = packed2p0.v; a1 = packed2p1.v; a2 = packed2p2.v; b0 = _mm_load_si128((xmmi*)b + 0); b1 = _mm_load_si128((xmmi*)b + 1); b2 = _mm_load_si128((xmmi*)b + 2); a0 = _mm_sub_epi32(a0, b0); a1 = _mm_sub_epi32(a1, b1); a2 = _mm_sub_epi32(a2, b2); r0 = _mm_and_si128(_mm_unpacklo_epi64(a0, a1), bot32bitmask.v); r1 = _mm_srli_epi64(_mm_unpacklo_epi64(a0, a1), 32); r2 = _mm_and_si128(_mm_unpackhi_epi64(a0, a1), bot32bitmask.v); r3 = _mm_srli_epi64(_mm_unpackhi_epi64(a0, a1), 32); r4 = _mm_and_si128(_mm_unpacklo_epi64(_mm_setzero_si128(), a2), bot32bitmask.v); r5 = _mm_srli_epi64(_mm_unpacklo_epi64(_mm_setzero_si128(), a2), 32); c1 = _mm_srli_epi64(r0, 26); c2 = _mm_srli_epi64(r2, 26); r0 = _mm_and_si128(r0, packedmask26.v); r2 = _mm_and_si128(r2, packedmask26.v); r1 = _mm_add_epi64(r1, c1); r3 = _mm_add_epi64(r3, c2); c1 = _mm_srli_epi64(r1, 25); c2 = _mm_srli_epi64(r3, 25); r1 = _mm_and_si128(r1, packedmask25.v); r3 = _mm_and_si128(r3, packedmask25.v); r2 = _mm_add_epi64(r2, c1); r4 = _mm_add_epi64(r4, c2); c3 = _mm_slli_si128(c2, 8); c1 = _mm_srli_epi64(r4, 26); r4 = _mm_and_si128(r4, packedmask26.v); r5 = _mm_add_epi64(r5, c1); c1 = _mm_srli_epi64(r5, 25); r5 = _mm_and_si128(r5, packedmask25.v); r0 = _mm_add_epi64(r0, _mm_unpackhi_epi64(_mm_mul_epu32(c1, packednineteen.v), c3)); c1 = _mm_srli_epi64(r0, 26); c2 = _mm_srli_epi64(r2, 26); r0 = _mm_and_si128(r0, packedmask26.v); r2 = _mm_and_si128(r2, packedmask26.v); r1 = _mm_add_epi64(r1, c1); r3 = _mm_add_epi64(r3, c2); _mm_store_si128((xmmi*)out + 0, _mm_unpacklo_epi64(_mm_unpacklo_epi32(r0, r1), _mm_unpacklo_epi32(r2, r3))); _mm_store_si128((xmmi*)out + 1, _mm_unpacklo_epi64(_mm_unpackhi_epi32(r0, r1), _mm_unpackhi_epi32(r2, r3))); _mm_store_si128((xmmi*)out + 2, _mm_unpackhi_epi32(r4, r5)); } /* Multiply two numbers: out = in2 * in */ static void curve25519_mul(bignum25519 out, const bignum25519 r, const bignum25519 s) { xmmi m01,m23,m45,m67,m89; xmmi m0123,m4567; xmmi s0123,s4567; xmmi s01,s23,s45,s67,s89; xmmi s12,s34,s56,s78,s9; xmmi r0,r2,r4,r6,r8; xmmi r1,r3,r5,r7,r9; xmmi r119,r219,r319,r419,r519,r619,r719,r819,r919; xmmi c1,c2,c3; s0123 = _mm_load_si128((xmmi*)s + 0); s01 = _mm_shuffle_epi32(s0123,_MM_SHUFFLE(3,1,2,0)); s12 = _mm_shuffle_epi32(s0123, _MM_SHUFFLE(2,2,1,1)); s23 = _mm_shuffle_epi32(s0123,_MM_SHUFFLE(3,3,2,2)); s4567 = _mm_load_si128((xmmi*)s + 1); s34 = _mm_unpacklo_epi64(_mm_srli_si128(s0123,12),s4567); s45 = _mm_shuffle_epi32(s4567,_MM_SHUFFLE(3,1,2,0)); s56 = _mm_shuffle_epi32(s4567, _MM_SHUFFLE(2,2,1,1)); s67 = _mm_shuffle_epi32(s4567,_MM_SHUFFLE(3,3,2,2)); s89 = _mm_load_si128((xmmi*)s + 2); s78 = _mm_unpacklo_epi64(_mm_srli_si128(s4567,12),s89); s89 = _mm_shuffle_epi32(s89,_MM_SHUFFLE(3,1,2,0)); s9 = _mm_shuffle_epi32(s89, _MM_SHUFFLE(3,3,2,2)); r0 = _mm_load_si128((xmmi*)r + 0); r1 = _mm_shuffle_epi32(r0, _MM_SHUFFLE(1,1,1,1)); r1 = _mm_add_epi64(r1, _mm_and_si128(r1, top64bitmask.v)); r2 = _mm_shuffle_epi32(r0, _MM_SHUFFLE(2,2,2,2)); r3 = _mm_shuffle_epi32(r0, _MM_SHUFFLE(3,3,3,3)); r3 = _mm_add_epi64(r3, _mm_and_si128(r3, top64bitmask.v)); r0 = _mm_shuffle_epi32(r0, _MM_SHUFFLE(0,0,0,0)); r4 = _mm_load_si128((xmmi*)r + 1); r5 = _mm_shuffle_epi32(r4, _MM_SHUFFLE(1,1,1,1)); r5 = _mm_add_epi64(r5, _mm_and_si128(r5, top64bitmask.v)); r6 = _mm_shuffle_epi32(r4, _MM_SHUFFLE(2,2,2,2)); r7 = _mm_shuffle_epi32(r4, _MM_SHUFFLE(3,3,3,3)); r7 = _mm_add_epi64(r7, _mm_and_si128(r7, top64bitmask.v)); r4 = _mm_shuffle_epi32(r4, _MM_SHUFFLE(0,0,0,0)); r8 = _mm_load_si128((xmmi*)r + 2); r9 = _mm_shuffle_epi32(r8, _MM_SHUFFLE(3,1,3,1)); r9 = _mm_add_epi64(r9, _mm_and_si128(r9, top64bitmask.v)); r8 = _mm_shuffle_epi32(r8, _MM_SHUFFLE(3,0,3,0)); m01 = _mm_mul_epu32(r1,s01); m23 = _mm_mul_epu32(r1,s23); m45 = _mm_mul_epu32(r1,s45); m67 = _mm_mul_epu32(r1,s67); m23 = _mm_add_epi64(m23,_mm_mul_epu32(r3,s01)); m45 = _mm_add_epi64(m45,_mm_mul_epu32(r3,s23)); m67 = _mm_add_epi64(m67,_mm_mul_epu32(r3,s45)); m89 = _mm_mul_epu32(r1,s89); m45 = _mm_add_epi64(m45,_mm_mul_epu32(r5,s01)); m67 = _mm_add_epi64(m67,_mm_mul_epu32(r5,s23)); m89 = _mm_add_epi64(m89,_mm_mul_epu32(r3,s67)); m67 = _mm_add_epi64(m67,_mm_mul_epu32(r7,s01)); m89 = _mm_add_epi64(m89,_mm_mul_epu32(r5,s45)); m89 = _mm_add_epi64(m89,_mm_mul_epu32(r7,s23)); m89 = _mm_add_epi64(m89,_mm_mul_epu32(r9,s01)); /* shift up */ m89 = _mm_unpackhi_epi64(m67,_mm_slli_si128(m89,8)); m67 = _mm_unpackhi_epi64(m45,_mm_slli_si128(m67,8)); m45 = _mm_unpackhi_epi64(m23,_mm_slli_si128(m45,8)); m23 = _mm_unpackhi_epi64(m01,_mm_slli_si128(m23,8)); m01 = _mm_unpackhi_epi64(_mm_setzero_si128(),_mm_slli_si128(m01,8)); m01 = _mm_add_epi64(m01,_mm_mul_epu32(r0,s01)); m23 = _mm_add_epi64(m23,_mm_mul_epu32(r0,s23)); m45 = _mm_add_epi64(m45,_mm_mul_epu32(r0,s45)); m67 = _mm_add_epi64(m67,_mm_mul_epu32(r0,s67)); m23 = _mm_add_epi64(m23,_mm_mul_epu32(r2,s01)); m45 = _mm_add_epi64(m45,_mm_mul_epu32(r2,s23)); m67 = _mm_add_epi64(m67,_mm_mul_epu32(r4,s23)); m89 = _mm_add_epi64(m89,_mm_mul_epu32(r0,s89)); m45 = _mm_add_epi64(m45,_mm_mul_epu32(r4,s01)); m67 = _mm_add_epi64(m67,_mm_mul_epu32(r2,s45)); m89 = _mm_add_epi64(m89,_mm_mul_epu32(r2,s67)); m67 = _mm_add_epi64(m67,_mm_mul_epu32(r6,s01)); m89 = _mm_add_epi64(m89,_mm_mul_epu32(r4,s45)); m89 = _mm_add_epi64(m89,_mm_mul_epu32(r6,s23)); m89 = _mm_add_epi64(m89,_mm_mul_epu32(r8,s01)); r219 = _mm_mul_epu32(r2, packednineteen.v); r419 = _mm_mul_epu32(r4, packednineteen.v); r619 = _mm_mul_epu32(r6, packednineteen.v); r819 = _mm_mul_epu32(r8, packednineteen.v); r119 = _mm_shuffle_epi32(r1,_MM_SHUFFLE(0,0,2,2)); r119 = _mm_mul_epu32(r119, packednineteen.v); r319 = _mm_shuffle_epi32(r3,_MM_SHUFFLE(0,0,2,2)); r319 = _mm_mul_epu32(r319, packednineteen.v); r519 = _mm_shuffle_epi32(r5,_MM_SHUFFLE(0,0,2,2)); r519 = _mm_mul_epu32(r519, packednineteen.v); r719 = _mm_shuffle_epi32(r7,_MM_SHUFFLE(0,0,2,2)); r719 = _mm_mul_epu32(r719, packednineteen.v); r919 = _mm_shuffle_epi32(r9,_MM_SHUFFLE(0,0,2,2)); r919 = _mm_mul_epu32(r919, packednineteen.v); m01 = _mm_add_epi64(m01,_mm_mul_epu32(r919,s12)); m23 = _mm_add_epi64(m23,_mm_mul_epu32(r919,s34)); m45 = _mm_add_epi64(m45,_mm_mul_epu32(r919,s56)); m67 = _mm_add_epi64(m67,_mm_mul_epu32(r919,s78)); m01 = _mm_add_epi64(m01,_mm_mul_epu32(r719,s34)); m23 = _mm_add_epi64(m23,_mm_mul_epu32(r719,s56)); m45 = _mm_add_epi64(m45,_mm_mul_epu32(r719,s78)); m67 = _mm_add_epi64(m67,_mm_mul_epu32(r719,s9)); m01 = _mm_add_epi64(m01,_mm_mul_epu32(r519,s56)); m23 = _mm_add_epi64(m23,_mm_mul_epu32(r519,s78)); m45 = _mm_add_epi64(m45,_mm_mul_epu32(r519,s9)); m67 = _mm_add_epi64(m67,_mm_mul_epu32(r819,s89)); m01 = _mm_add_epi64(m01,_mm_mul_epu32(r319,s78)); m23 = _mm_add_epi64(m23,_mm_mul_epu32(r319,s9)); m45 = _mm_add_epi64(m45,_mm_mul_epu32(r619,s89)); m89 = _mm_add_epi64(m89,_mm_mul_epu32(r919,s9)); m01 = _mm_add_epi64(m01,_mm_mul_epu32(r819,s23)); m23 = _mm_add_epi64(m23,_mm_mul_epu32(r819,s45)); m45 = _mm_add_epi64(m45,_mm_mul_epu32(r819,s67)); m01 = _mm_add_epi64(m01,_mm_mul_epu32(r619,s45)); m23 = _mm_add_epi64(m23,_mm_mul_epu32(r619,s67)); m01 = _mm_add_epi64(m01,_mm_mul_epu32(r419,s67)); m23 = _mm_add_epi64(m23,_mm_mul_epu32(r419,s89)); m01 = _mm_add_epi64(m01,_mm_mul_epu32(r219,s89)); m01 = _mm_add_epi64(m01,_mm_mul_epu32(r119,s9)); r0 = _mm_unpacklo_epi64(m01, m45); r1 = _mm_unpackhi_epi64(m01, m45); r2 = _mm_unpacklo_epi64(m23, m67); r3 = _mm_unpackhi_epi64(m23, m67); r4 = _mm_unpacklo_epi64(m89, m89); r5 = _mm_unpackhi_epi64(m89, m89); c1 = _mm_srli_epi64(r0, 26); c2 = _mm_srli_epi64(r2, 26); r0 = _mm_and_si128(r0, packedmask26.v); r2 = _mm_and_si128(r2, packedmask26.v); r1 = _mm_add_epi64(r1, c1); r3 = _mm_add_epi64(r3, c2); c1 = _mm_srli_epi64(r1, 25); c2 = _mm_srli_epi64(r3, 25); r1 = _mm_and_si128(r1, packedmask25.v); r3 = _mm_and_si128(r3, packedmask25.v); r2 = _mm_add_epi64(r2, c1); r4 = _mm_add_epi64(r4, c2); c3 = _mm_slli_si128(c2, 8); c1 = _mm_srli_epi64(r4, 26); r4 = _mm_and_si128(r4, packedmask26.v); r5 = _mm_add_epi64(r5, c1); c1 = _mm_srli_epi64(r5, 25); r5 = _mm_and_si128(r5, packedmask25.v); r0 = _mm_add_epi64(r0, _mm_unpackhi_epi64(_mm_mul_epu32(c1, packednineteen.v), c3)); c1 = _mm_srli_epi64(r0, 26); c2 = _mm_srli_epi64(r2, 26); r0 = _mm_and_si128(r0, packedmask26.v); r2 = _mm_and_si128(r2, packedmask26.v); r1 = _mm_add_epi64(r1, c1); r3 = _mm_add_epi64(r3, c2); m0123 = _mm_unpacklo_epi32(r0, r1); m4567 = _mm_unpackhi_epi32(r0, r1); m0123 = _mm_unpacklo_epi64(m0123, _mm_unpacklo_epi32(r2, r3)); m4567 = _mm_unpacklo_epi64(m4567, _mm_unpackhi_epi32(r2, r3)); m89 = _mm_unpackhi_epi32(r4, r5); _mm_store_si128((xmmi*)out + 0, m0123); _mm_store_si128((xmmi*)out + 1, m4567); _mm_store_si128((xmmi*)out + 2, m89); } DONNA_NOINLINE static void curve25519_mul_noinline(bignum25519 out, const bignum25519 r, const bignum25519 s) { curve25519_mul(out, r, s); } #define curve25519_square(r, n) curve25519_square_times(r, n, 1) static void curve25519_square_times(bignum25519 r, const bignum25519 in, int count) { xmmi m01,m23,m45,m67,m89; xmmi r0,r1,r2,r3,r4,r5,r6,r7,r8,r9; xmmi r0a,r1a,r2a,r3a,r7a,r9a; xmmi r0123,r4567; xmmi r01,r23,r45,r67,r6x,r89,r8x; xmmi r12,r34,r56,r78,r9x; xmmi r5619; xmmi c1,c2,c3; r0123 = _mm_load_si128((xmmi*)in + 0); r01 = _mm_shuffle_epi32(r0123,_MM_SHUFFLE(3,1,2,0)); r23 = _mm_shuffle_epi32(r0123,_MM_SHUFFLE(3,3,2,2)); r4567 = _mm_load_si128((xmmi*)in + 1); r45 = _mm_shuffle_epi32(r4567,_MM_SHUFFLE(3,1,2,0)); r67 = _mm_shuffle_epi32(r4567,_MM_SHUFFLE(3,3,2,2)); r89 = _mm_load_si128((xmmi*)in + 2); r89 = _mm_shuffle_epi32(r89,_MM_SHUFFLE(3,1,2,0)); do { r12 = _mm_unpackhi_epi64(r01, _mm_slli_si128(r23, 8)); r0 = _mm_shuffle_epi32(r01, _MM_SHUFFLE(0,0,0,0)); r0 = _mm_add_epi64(r0, _mm_and_si128(r0, top64bitmask.v)); r0a = _mm_shuffle_epi32(r0,_MM_SHUFFLE(3,2,1,2)); r1 = _mm_shuffle_epi32(r01, _MM_SHUFFLE(2,2,2,2)); r2 = _mm_shuffle_epi32(r23, _MM_SHUFFLE(0,0,0,0)); r2 = _mm_add_epi64(r2, _mm_and_si128(r2, top64bitmask.v)); r2a = _mm_shuffle_epi32(r2,_MM_SHUFFLE(3,2,1,2)); r3 = _mm_shuffle_epi32(r23, _MM_SHUFFLE(2,2,2,2)); r34 = _mm_unpackhi_epi64(r23, _mm_slli_si128(r45, 8)); r4 = _mm_shuffle_epi32(r45, _MM_SHUFFLE(0,0,0,0)); r4 = _mm_add_epi64(r4, _mm_and_si128(r4, top64bitmask.v)); r56 = _mm_unpackhi_epi64(r45, _mm_slli_si128(r67, 8)); r5619 = _mm_mul_epu32(r56, packednineteen.v); r5 = _mm_shuffle_epi32(r5619, _MM_SHUFFLE(1,1,1,0)); r6 = _mm_shuffle_epi32(r5619, _MM_SHUFFLE(3,2,3,2)); r78 = _mm_unpackhi_epi64(r67, _mm_slli_si128(r89, 8)); r6x = _mm_unpacklo_epi64(r67, _mm_setzero_si128()); r7 = _mm_shuffle_epi32(r67, _MM_SHUFFLE(2,2,2,2)); r7 = _mm_mul_epu32(r7, packed3819.v); r7a = _mm_shuffle_epi32(r7, _MM_SHUFFLE(3,3,3,2)); r8x = _mm_unpacklo_epi64(r89, _mm_setzero_si128()); r8 = _mm_shuffle_epi32(r89, _MM_SHUFFLE(0,0,0,0)); r8 = _mm_mul_epu32(r8, packednineteen.v); r9 = _mm_shuffle_epi32(r89, _MM_SHUFFLE(2,2,2,2)); r9x = _mm_slli_epi32(_mm_shuffle_epi32(r89, _MM_SHUFFLE(3,3,3,2)), 1); r9 = _mm_mul_epu32(r9, packed3819.v); r9a = _mm_shuffle_epi32(r9, _MM_SHUFFLE(2,2,2,2)); m01 = _mm_mul_epu32(r01, r0); m23 = _mm_mul_epu32(r23, r0a); m45 = _mm_mul_epu32(r45, r0a); m45 = _mm_add_epi64(m45, _mm_mul_epu32(r23, r2)); r23 = _mm_slli_epi32(r23, 1); m67 = _mm_mul_epu32(r67, r0a); m67 = _mm_add_epi64(m67, _mm_mul_epu32(r45, r2a)); m89 = _mm_mul_epu32(r89, r0a); m89 = _mm_add_epi64(m89, _mm_mul_epu32(r67, r2a)); r67 = _mm_slli_epi32(r67, 1); m89 = _mm_add_epi64(m89, _mm_mul_epu32(r45, r4)); r45 = _mm_slli_epi32(r45, 1); r1 = _mm_slli_epi32(r1, 1); r3 = _mm_slli_epi32(r3, 1); r1a = _mm_add_epi64(r1, _mm_and_si128(r1, bot64bitmask.v)); r3a = _mm_add_epi64(r3, _mm_and_si128(r3, bot64bitmask.v)); m23 = _mm_add_epi64(m23, _mm_mul_epu32(r12, r1)); m45 = _mm_add_epi64(m45, _mm_mul_epu32(r34, r1a)); m67 = _mm_add_epi64(m67, _mm_mul_epu32(r56, r1a)); m67 = _mm_add_epi64(m67, _mm_mul_epu32(r34, r3)); r34 = _mm_slli_epi32(r34, 1); m89 = _mm_add_epi64(m89, _mm_mul_epu32(r78, r1a)); r78 = _mm_slli_epi32(r78, 1); m89 = _mm_add_epi64(m89, _mm_mul_epu32(r56, r3a)); r56 = _mm_slli_epi32(r56, 1); m01 = _mm_add_epi64(m01, _mm_mul_epu32(_mm_slli_epi32(r12, 1), r9)); m01 = _mm_add_epi64(m01, _mm_mul_epu32(r34, r7)); m23 = _mm_add_epi64(m23, _mm_mul_epu32(r34, r9)); m01 = _mm_add_epi64(m01, _mm_mul_epu32(r56, r5)); m23 = _mm_add_epi64(m23, _mm_mul_epu32(r56, r7)); m45 = _mm_add_epi64(m45, _mm_mul_epu32(r56, r9)); m01 = _mm_add_epi64(m01, _mm_mul_epu32(r23, r8)); m01 = _mm_add_epi64(m01, _mm_mul_epu32(r45, r6)); m23 = _mm_add_epi64(m23, _mm_mul_epu32(r45, r8)); m23 = _mm_add_epi64(m23, _mm_mul_epu32(r6x, r6)); m45 = _mm_add_epi64(m45, _mm_mul_epu32(r78, r7a)); m67 = _mm_add_epi64(m67, _mm_mul_epu32(r78, r9)); m45 = _mm_add_epi64(m45, _mm_mul_epu32(r67, r8)); m67 = _mm_add_epi64(m67, _mm_mul_epu32(r8x, r8)); m89 = _mm_add_epi64(m89, _mm_mul_epu32(r9x, r9a)); r0 = _mm_unpacklo_epi64(m01, m45); r1 = _mm_unpackhi_epi64(m01, m45); r2 = _mm_unpacklo_epi64(m23, m67); r3 = _mm_unpackhi_epi64(m23, m67); r4 = _mm_unpacklo_epi64(m89, m89); r5 = _mm_unpackhi_epi64(m89, m89); c1 = _mm_srli_epi64(r0, 26); c2 = _mm_srli_epi64(r2, 26); r0 = _mm_and_si128(r0, packedmask26.v); r2 = _mm_and_si128(r2, packedmask26.v); r1 = _mm_add_epi64(r1, c1); r3 = _mm_add_epi64(r3, c2); c1 = _mm_srli_epi64(r1, 25); c2 = _mm_srli_epi64(r3, 25); r1 = _mm_and_si128(r1, packedmask25.v); r3 = _mm_and_si128(r3, packedmask25.v); r2 = _mm_add_epi64(r2, c1); r4 = _mm_add_epi64(r4, c2); c3 = _mm_slli_si128(c2, 8); c1 = _mm_srli_epi64(r4, 26); r4 = _mm_and_si128(r4, packedmask26.v); r5 = _mm_add_epi64(r5, c1); c1 = _mm_srli_epi64(r5, 25); r5 = _mm_and_si128(r5, packedmask25.v); r0 = _mm_add_epi64(r0, _mm_unpackhi_epi64(_mm_mul_epu32(c1, packednineteen.v), c3)); c1 = _mm_srli_epi64(r0, 26); c2 = _mm_srli_epi64(r2, 26); r0 = _mm_and_si128(r0, packedmask26.v); r2 = _mm_and_si128(r2, packedmask26.v); r1 = _mm_add_epi64(r1, c1); r3 = _mm_add_epi64(r3, c2); r01 = _mm_unpacklo_epi64(r0, r1); r45 = _mm_unpackhi_epi64(r0, r1); r23 = _mm_unpacklo_epi64(r2, r3); r67 = _mm_unpackhi_epi64(r2, r3); r89 = _mm_unpackhi_epi64(r4, r5); } while (--count); r0123 = _mm_shuffle_epi32(r23, _MM_SHUFFLE(2,0,3,3)); r4567 = _mm_shuffle_epi32(r67, _MM_SHUFFLE(2,0,3,3)); r0123 = _mm_or_si128(r0123, _mm_shuffle_epi32(r01, _MM_SHUFFLE(3,3,2,0))); r4567 = _mm_or_si128(r4567, _mm_shuffle_epi32(r45, _MM_SHUFFLE(3,3,2,0))); r89 = _mm_shuffle_epi32(r89, _MM_SHUFFLE(3,3,2,0)); _mm_store_si128((xmmi*)r + 0, r0123); _mm_store_si128((xmmi*)r + 1, r4567); _mm_store_si128((xmmi*)r + 2, r89); } DONNA_INLINE static void curve25519_tangle32(packedelem32 *out, const bignum25519 x, const bignum25519 z) { xmmi x0,x1,x2,z0,z1,z2; x0 = _mm_load_si128((xmmi *)(x + 0)); x1 = _mm_load_si128((xmmi *)(x + 4)); x2 = _mm_load_si128((xmmi *)(x + 8)); z0 = _mm_load_si128((xmmi *)(z + 0)); z1 = _mm_load_si128((xmmi *)(z + 4)); z2 = _mm_load_si128((xmmi *)(z + 8)); out[0].v = _mm_unpacklo_epi32(x0, z0); out[1].v = _mm_unpackhi_epi32(x0, z0); out[2].v = _mm_unpacklo_epi32(x1, z1); out[3].v = _mm_unpackhi_epi32(x1, z1); out[4].v = _mm_unpacklo_epi32(x2, z2); } DONNA_INLINE static void curve25519_untangle32(bignum25519 x, bignum25519 z, const packedelem32 *in) { xmmi t0,t1,t2,t3,t4,zero; t0 = _mm_shuffle_epi32(in[0].v, _MM_SHUFFLE(3,1,2,0)); t1 = _mm_shuffle_epi32(in[1].v, _MM_SHUFFLE(3,1,2,0)); t2 = _mm_shuffle_epi32(in[2].v, _MM_SHUFFLE(3,1,2,0)); t3 = _mm_shuffle_epi32(in[3].v, _MM_SHUFFLE(3,1,2,0)); t4 = _mm_shuffle_epi32(in[4].v, _MM_SHUFFLE(3,1,2,0)); zero = _mm_setzero_si128(); _mm_store_si128((xmmi *)x + 0, _mm_unpacklo_epi64(t0, t1)); _mm_store_si128((xmmi *)x + 1, _mm_unpacklo_epi64(t2, t3)); _mm_store_si128((xmmi *)x + 2, _mm_unpacklo_epi64(t4, zero)); _mm_store_si128((xmmi *)z + 0, _mm_unpackhi_epi64(t0, t1)); _mm_store_si128((xmmi *)z + 1, _mm_unpackhi_epi64(t2, t3)); _mm_store_si128((xmmi *)z + 2, _mm_unpackhi_epi64(t4, zero)); } DONNA_INLINE static void curve25519_add_reduce_packed32(packedelem32 *out, const packedelem32 *r, const packedelem32 *s) { xmmi r0,r1,r2,r3,r4; xmmi s0,s1,s2,s3,s4,s5; xmmi c1,c2; r0 = _mm_add_epi32(r[0].v, s[0].v); r1 = _mm_add_epi32(r[1].v, s[1].v); r2 = _mm_add_epi32(r[2].v, s[2].v); r3 = _mm_add_epi32(r[3].v, s[3].v); r4 = _mm_add_epi32(r[4].v, s[4].v); s0 = _mm_unpacklo_epi64(r0, r2); /* 00 44 */ s1 = _mm_unpackhi_epi64(r0, r2); /* 11 55 */ s2 = _mm_unpacklo_epi64(r1, r3); /* 22 66 */ s3 = _mm_unpackhi_epi64(r1, r3); /* 33 77 */ s4 = _mm_unpacklo_epi64(_mm_setzero_si128(), r4); /* 00 88 */ s5 = _mm_unpackhi_epi64(_mm_setzero_si128(), r4); /* 00 99 */ c1 = _mm_srli_epi32(s0, 26); c2 = _mm_srli_epi32(s2, 26); s0 = _mm_and_si128(s0, packedmask26262626.v); s2 = _mm_and_si128(s2, packedmask26262626.v); s1 = _mm_add_epi32(s1, c1); s3 = _mm_add_epi32(s3, c2); c1 = _mm_srli_epi32(s1, 25); c2 = _mm_srli_epi32(s3, 25); s1 = _mm_and_si128(s1, packedmask25252525.v); s3 = _mm_and_si128(s3, packedmask25252525.v); s2 = _mm_add_epi32(s2, c1); s4 = _mm_add_epi32(s4, _mm_unpackhi_epi64(_mm_setzero_si128(), c2)); s0 = _mm_add_epi32(s0, _mm_unpacklo_epi64(_mm_setzero_si128(), c2)); c1 = _mm_srli_epi32(s2, 26); c2 = _mm_srli_epi32(s4, 26); s2 = _mm_and_si128(s2, packedmask26262626.v); s4 = _mm_and_si128(s4, packedmask26262626.v); s3 = _mm_add_epi32(s3, c1); s5 = _mm_add_epi32(s5, c2); c1 = _mm_srli_epi32(s3, 25); c2 = _mm_srli_epi32(s5, 25); s3 = _mm_and_si128(s3, packedmask25252525.v); s5 = _mm_and_si128(s5, packedmask25252525.v); s4 = _mm_add_epi32(s4, c1); s0 = _mm_add_epi32(s0, _mm_or_si128(_mm_slli_si128(c1, 8), _mm_srli_si128(_mm_add_epi32(_mm_add_epi32(_mm_slli_epi32(c2, 4), _mm_slli_epi32(c2, 1)), c2), 8))); c1 = _mm_srli_epi32(s0, 26); c2 = _mm_srli_epi32(s2, 26); s0 = _mm_and_si128(s0, packedmask26262626.v); s2 = _mm_and_si128(s2, packedmask26262626.v); s1 = _mm_add_epi32(s1, c1); s3 = _mm_add_epi32(s3, c2); out[0].v = _mm_unpacklo_epi64(s0, s1); /* 00 11 */ out[1].v = _mm_unpacklo_epi64(s2, s3); /* 22 33 */ out[2].v = _mm_unpackhi_epi64(s0, s1); /* 44 55 */ out[3].v = _mm_unpackhi_epi64(s2, s3); /* 66 77 */ out[4].v = _mm_unpackhi_epi64(s4, s5); /* 88 99 */ } DONNA_INLINE static void curve25519_add_packed32(packedelem32 *out, const packedelem32 *r, const packedelem32 *s) { out[0].v = _mm_add_epi32(r[0].v, s[0].v); out[1].v = _mm_add_epi32(r[1].v, s[1].v); out[2].v = _mm_add_epi32(r[2].v, s[2].v); out[3].v = _mm_add_epi32(r[3].v, s[3].v); out[4].v = _mm_add_epi32(r[4].v, s[4].v); } DONNA_INLINE static void curve25519_sub_packed32(packedelem32 *out, const packedelem32 *r, const packedelem32 *s) { xmmi r0,r1,r2,r3,r4; xmmi s0,s1,s2,s3; xmmi c1,c2; r0 = _mm_add_epi32(r[0].v, packed32packed2p0.v); r1 = _mm_add_epi32(r[1].v, packed32packed2p1.v); r2 = _mm_add_epi32(r[2].v, packed32packed2p1.v); r3 = _mm_add_epi32(r[3].v, packed32packed2p1.v); r4 = _mm_add_epi32(r[4].v, packed32packed2p1.v); r0 = _mm_sub_epi32(r0, s[0].v); /* 00 11 */ r1 = _mm_sub_epi32(r1, s[1].v); /* 22 33 */ r2 = _mm_sub_epi32(r2, s[2].v); /* 44 55 */ r3 = _mm_sub_epi32(r3, s[3].v); /* 66 77 */ r4 = _mm_sub_epi32(r4, s[4].v); /* 88 99 */ s0 = _mm_unpacklo_epi64(r0, r2); /* 00 44 */ s1 = _mm_unpackhi_epi64(r0, r2); /* 11 55 */ s2 = _mm_unpacklo_epi64(r1, r3); /* 22 66 */ s3 = _mm_unpackhi_epi64(r1, r3); /* 33 77 */ c1 = _mm_srli_epi32(s0, 26); c2 = _mm_srli_epi32(s2, 26); s0 = _mm_and_si128(s0, packedmask26262626.v); s2 = _mm_and_si128(s2, packedmask26262626.v); s1 = _mm_add_epi32(s1, c1); s3 = _mm_add_epi32(s3, c2); c1 = _mm_srli_epi32(s1, 25); c2 = _mm_srli_epi32(s3, 25); s1 = _mm_and_si128(s1, packedmask25252525.v); s3 = _mm_and_si128(s3, packedmask25252525.v); s2 = _mm_add_epi32(s2, c1); r4 = _mm_add_epi32(r4, _mm_srli_si128(c2, 8)); s0 = _mm_add_epi32(s0, _mm_slli_si128(c2, 8)); out[0].v = _mm_unpacklo_epi64(s0, s1); /* 00 11 */ out[1].v = _mm_unpacklo_epi64(s2, s3); /* 22 33 */ out[2].v = _mm_unpackhi_epi64(s0, s1); /* 44 55 */ out[3].v = _mm_unpackhi_epi64(s2, s3); /* 66 77 */ out[4].v = r4; } DONNA_INLINE static void curve25519_sub_after_basic_packed32(packedelem32 *out, const packedelem32 *r, const packedelem32 *s) { xmmi r0,r1,r2,r3,r4; xmmi s0,s1,s2,s3,s4,s5; xmmi c1,c2; r0 = _mm_add_epi32(r[0].v, packed32packed4p0.v); r1 = _mm_add_epi32(r[1].v, packed32packed4p1.v); r2 = _mm_add_epi32(r[2].v, packed32packed4p1.v); r3 = _mm_add_epi32(r[3].v, packed32packed4p1.v); r4 = _mm_add_epi32(r[4].v, packed32packed4p1.v); r0 = _mm_sub_epi32(r0, s[0].v); /* 00 11 */ r1 = _mm_sub_epi32(r1, s[1].v); /* 22 33 */ r2 = _mm_sub_epi32(r2, s[2].v); /* 44 55 */ r3 = _mm_sub_epi32(r3, s[3].v); /* 66 77 */ r4 = _mm_sub_epi32(r4, s[4].v); /* 88 99 */ s0 = _mm_unpacklo_epi64(r0, r2); /* 00 44 */ s1 = _mm_unpackhi_epi64(r0, r2); /* 11 55 */ s2 = _mm_unpacklo_epi64(r1, r3); /* 22 66 */ s3 = _mm_unpackhi_epi64(r1, r3); /* 33 77 */ s4 = _mm_unpacklo_epi64(_mm_setzero_si128(), r4); /* 00 88 */ s5 = _mm_unpackhi_epi64(_mm_setzero_si128(), r4); /* 00 99 */ c1 = _mm_srli_epi32(s0, 26); c2 = _mm_srli_epi32(s2, 26); s0 = _mm_and_si128(s0, packedmask26262626.v); s2 = _mm_and_si128(s2, packedmask26262626.v); s1 = _mm_add_epi32(s1, c1); s3 = _mm_add_epi32(s3, c2); c1 = _mm_srli_epi32(s1, 25); c2 = _mm_srli_epi32(s3, 25); s1 = _mm_and_si128(s1, packedmask25252525.v); s3 = _mm_and_si128(s3, packedmask25252525.v); s2 = _mm_add_epi32(s2, c1); s4 = _mm_add_epi32(s4, _mm_unpackhi_epi64(_mm_setzero_si128(), c2)); s0 = _mm_add_epi32(s0, _mm_unpacklo_epi64(_mm_setzero_si128(), c2)); c1 = _mm_srli_epi32(s2, 26); c2 = _mm_srli_epi32(s4, 26); s2 = _mm_and_si128(s2, packedmask26262626.v); s4 = _mm_and_si128(s4, packedmask26262626.v); s3 = _mm_add_epi32(s3, c1); s5 = _mm_add_epi32(s5, c2); c1 = _mm_srli_epi32(s3, 25); c2 = _mm_srli_epi32(s5, 25); s3 = _mm_and_si128(s3, packedmask25252525.v); s5 = _mm_and_si128(s5, packedmask25252525.v); s4 = _mm_add_epi32(s4, c1); s0 = _mm_add_epi32(s0, _mm_or_si128(_mm_slli_si128(c1, 8), _mm_srli_si128(_mm_add_epi32(_mm_add_epi32(_mm_slli_epi32(c2, 4), _mm_slli_epi32(c2, 1)), c2), 8))); c1 = _mm_srli_epi32(s0, 26); c2 = _mm_srli_epi32(s2, 26); s0 = _mm_and_si128(s0, packedmask26262626.v); s2 = _mm_and_si128(s2, packedmask26262626.v); s1 = _mm_add_epi32(s1, c1); s3 = _mm_add_epi32(s3, c2); out[0].v = _mm_unpacklo_epi64(s0, s1); /* 00 11 */ out[1].v = _mm_unpacklo_epi64(s2, s3); /* 22 33 */ out[2].v = _mm_unpackhi_epi64(s0, s1); /* 44 55 */ out[3].v = _mm_unpackhi_epi64(s2, s3); /* 66 77 */ out[4].v = _mm_unpackhi_epi64(s4, s5); /* 88 99 */ } DONNA_INLINE static void curve25519_tangle64_from32(packedelem64 *a, packedelem64 *b, const packedelem32 *c, const packedelem32 *d) { xmmi c0,c1,c2,c3,c4,c5,t; xmmi d0,d1,d2,d3,d4,d5; xmmi t0,t1,t2,t3,t4,zero; t0 = _mm_shuffle_epi32(c[0].v, _MM_SHUFFLE(3,1,2,0)); t1 = _mm_shuffle_epi32(c[1].v, _MM_SHUFFLE(3,1,2,0)); t2 = _mm_shuffle_epi32(d[0].v, _MM_SHUFFLE(3,1,2,0)); t3 = _mm_shuffle_epi32(d[1].v, _MM_SHUFFLE(3,1,2,0)); c0 = _mm_unpacklo_epi64(t0, t1); c3 = _mm_unpackhi_epi64(t0, t1); d0 = _mm_unpacklo_epi64(t2, t3); d3 = _mm_unpackhi_epi64(t2, t3); t = _mm_unpacklo_epi64(c0, d0); a[0].v = t; a[1].v = _mm_srli_epi64(t, 32); t = _mm_unpackhi_epi64(c0, d0); a[2].v = t; a[3].v = _mm_srli_epi64(t, 32); t = _mm_unpacklo_epi64(c3, d3); b[0].v = t; b[1].v = _mm_srli_epi64(t, 32); t = _mm_unpackhi_epi64(c3, d3); b[2].v = t; b[3].v = _mm_srli_epi64(t, 32); t0 = _mm_shuffle_epi32(c[2].v, _MM_SHUFFLE(3,1,2,0)); t1 = _mm_shuffle_epi32(c[3].v, _MM_SHUFFLE(3,1,2,0)); t2 = _mm_shuffle_epi32(d[2].v, _MM_SHUFFLE(3,1,2,0)); t3 = _mm_shuffle_epi32(d[3].v, _MM_SHUFFLE(3,1,2,0)); c1 = _mm_unpacklo_epi64(t0, t1); c4 = _mm_unpackhi_epi64(t0, t1); d1 = _mm_unpacklo_epi64(t2, t3); d4 = _mm_unpackhi_epi64(t2, t3); t = _mm_unpacklo_epi64(c1, d1); a[4].v = t; a[5].v = _mm_srli_epi64(t, 32); t = _mm_unpackhi_epi64(c1, d1); a[6].v = t; a[7].v = _mm_srli_epi64(t, 32); t = _mm_unpacklo_epi64(c4, d4); b[4].v = t; b[5].v = _mm_srli_epi64(t, 32); t = _mm_unpackhi_epi64(c4, d4); b[6].v = t; b[7].v = _mm_srli_epi64(t, 32); t4 = _mm_shuffle_epi32(c[4].v, _MM_SHUFFLE(3,1,2,0)); zero = _mm_setzero_si128(); c2 = _mm_unpacklo_epi64(t4, zero); c5 = _mm_unpackhi_epi64(t4, zero); t4 = _mm_shuffle_epi32(d[4].v, _MM_SHUFFLE(3,1,2,0)); d2 = _mm_unpacklo_epi64(t4, zero); d5 = _mm_unpackhi_epi64(t4, zero); t = _mm_unpacklo_epi64(c2, d2); a[8].v = t; a[9].v = _mm_srli_epi64(t, 32); t = _mm_unpacklo_epi64(c5, d5); b[8].v = t; b[9].v = _mm_srli_epi64(t, 32); } DONNA_INLINE static void curve25519_tangle64(packedelem64 *out, const bignum25519 x, const bignum25519 z) { xmmi x0,x1,x2,z0,z1,z2,t; x0 = _mm_load_si128((xmmi *)x + 0); x1 = _mm_load_si128((xmmi *)x + 1); x2 = _mm_load_si128((xmmi *)x + 2); z0 = _mm_load_si128((xmmi *)z + 0); z1 = _mm_load_si128((xmmi *)z + 1); z2 = _mm_load_si128((xmmi *)z + 2); t = _mm_unpacklo_epi64(x0, z0); out[0].v = t; out[1].v = _mm_srli_epi64(t, 32); t = _mm_unpackhi_epi64(x0, z0); out[2].v = t; out[3].v = _mm_srli_epi64(t, 32); t = _mm_unpacklo_epi64(x1, z1); out[4].v = t; out[5].v = _mm_srli_epi64(t, 32); t = _mm_unpackhi_epi64(x1, z1); out[6].v = t; out[7].v = _mm_srli_epi64(t, 32); t = _mm_unpacklo_epi64(x2, z2); out[8].v = t; out[9].v = _mm_srli_epi64(t, 32); } DONNA_INLINE static void curve25519_tangleone64(packedelem64 *out, const bignum25519 x) { xmmi x0,x1,x2; x0 = _mm_load_si128((xmmi *)(x + 0)); x1 = _mm_load_si128((xmmi *)(x + 4)); x2 = _mm_load_si128((xmmi *)(x + 8)); out[0].v = _mm_shuffle_epi32(x0, _MM_SHUFFLE(0,0,0,0)); out[1].v = _mm_shuffle_epi32(x0, _MM_SHUFFLE(1,1,1,1)); out[2].v = _mm_shuffle_epi32(x0, _MM_SHUFFLE(2,2,2,2)); out[3].v = _mm_shuffle_epi32(x0, _MM_SHUFFLE(3,3,3,3)); out[4].v = _mm_shuffle_epi32(x1, _MM_SHUFFLE(0,0,0,0)); out[5].v = _mm_shuffle_epi32(x1, _MM_SHUFFLE(1,1,1,1)); out[6].v = _mm_shuffle_epi32(x1, _MM_SHUFFLE(2,2,2,2)); out[7].v = _mm_shuffle_epi32(x1, _MM_SHUFFLE(3,3,3,3)); out[8].v = _mm_shuffle_epi32(x2, _MM_SHUFFLE(0,0,0,0)); out[9].v = _mm_shuffle_epi32(x2, _MM_SHUFFLE(1,1,1,1)); } DONNA_INLINE static void curve25519_swap64(packedelem64 *out) { out[0].v = _mm_shuffle_epi32(out[0].v, _MM_SHUFFLE(1,0,3,2)); out[1].v = _mm_shuffle_epi32(out[1].v, _MM_SHUFFLE(1,0,3,2)); out[2].v = _mm_shuffle_epi32(out[2].v, _MM_SHUFFLE(1,0,3,2)); out[3].v = _mm_shuffle_epi32(out[3].v, _MM_SHUFFLE(1,0,3,2)); out[4].v = _mm_shuffle_epi32(out[4].v, _MM_SHUFFLE(1,0,3,2)); out[5].v = _mm_shuffle_epi32(out[5].v, _MM_SHUFFLE(1,0,3,2)); out[6].v = _mm_shuffle_epi32(out[6].v, _MM_SHUFFLE(1,0,3,2)); out[7].v = _mm_shuffle_epi32(out[7].v, _MM_SHUFFLE(1,0,3,2)); out[8].v = _mm_shuffle_epi32(out[8].v, _MM_SHUFFLE(1,0,3,2)); out[9].v = _mm_shuffle_epi32(out[9].v, _MM_SHUFFLE(1,0,3,2)); } DONNA_INLINE static void curve25519_untangle64(bignum25519 x, bignum25519 z, const packedelem64 *in) { _mm_store_si128((xmmi *)(x + 0), _mm_unpacklo_epi64(_mm_unpacklo_epi32(in[0].v, in[1].v), _mm_unpacklo_epi32(in[2].v, in[3].v))); _mm_store_si128((xmmi *)(x + 4), _mm_unpacklo_epi64(_mm_unpacklo_epi32(in[4].v, in[5].v), _mm_unpacklo_epi32(in[6].v, in[7].v))); _mm_store_si128((xmmi *)(x + 8), _mm_unpacklo_epi32(in[8].v, in[9].v) ); _mm_store_si128((xmmi *)(z + 0), _mm_unpacklo_epi64(_mm_unpackhi_epi32(in[0].v, in[1].v), _mm_unpackhi_epi32(in[2].v, in[3].v))); _mm_store_si128((xmmi *)(z + 4), _mm_unpacklo_epi64(_mm_unpackhi_epi32(in[4].v, in[5].v), _mm_unpackhi_epi32(in[6].v, in[7].v))); _mm_store_si128((xmmi *)(z + 8), _mm_unpackhi_epi32(in[8].v, in[9].v) ); } DONNA_INLINE static void curve25519_mul_packed64(packedelem64 *out, const packedelem64 *r, const packedelem64 *s) { xmmi r1,r2,r3,r4,r5,r6,r7,r8,r9; xmmi r1_2,r3_2,r5_2,r7_2,r9_2; xmmi c1,c2; out[0].v = _mm_mul_epu32(r[0].v, s[0].v); out[1].v = _mm_add_epi64(_mm_mul_epu32(r[0].v, s[1].v), _mm_mul_epu32(r[1].v, s[0].v)); r1_2 = _mm_slli_epi32(r[1].v, 1); out[2].v = _mm_add_epi64(_mm_mul_epu32(r[0].v, s[2].v), _mm_add_epi64(_mm_mul_epu32(r1_2 , s[1].v), _mm_mul_epu32(r[2].v, s[0].v))); out[3].v = _mm_add_epi64(_mm_mul_epu32(r[0].v, s[3].v), _mm_add_epi64(_mm_mul_epu32(r[1].v, s[2].v), _mm_add_epi64(_mm_mul_epu32(r[2].v, s[1].v), _mm_mul_epu32(r[3].v, s[0].v)))); r3_2 = _mm_slli_epi32(r[3].v, 1); out[4].v = _mm_add_epi64(_mm_mul_epu32(r[0].v, s[4].v), _mm_add_epi64(_mm_mul_epu32(r1_2 , s[3].v), _mm_add_epi64(_mm_mul_epu32(r[2].v, s[2].v), _mm_add_epi64(_mm_mul_epu32(r3_2 , s[1].v), _mm_mul_epu32(r[4].v, s[0].v))))); out[5].v = _mm_add_epi64(_mm_mul_epu32(r[0].v, s[5].v), _mm_add_epi64(_mm_mul_epu32(r[1].v, s[4].v), _mm_add_epi64(_mm_mul_epu32(r[2].v, s[3].v), _mm_add_epi64(_mm_mul_epu32(r[3].v, s[2].v), _mm_add_epi64(_mm_mul_epu32(r[4].v, s[1].v), _mm_mul_epu32(r[5].v, s[0].v)))))); r5_2 = _mm_slli_epi32(r[5].v, 1); out[6].v = _mm_add_epi64(_mm_mul_epu32(r[0].v, s[6].v), _mm_add_epi64(_mm_mul_epu32(r1_2 , s[5].v), _mm_add_epi64(_mm_mul_epu32(r[2].v, s[4].v), _mm_add_epi64(_mm_mul_epu32(r3_2 , s[3].v), _mm_add_epi64(_mm_mul_epu32(r[4].v, s[2].v), _mm_add_epi64(_mm_mul_epu32(r5_2 , s[1].v), _mm_mul_epu32(r[6].v, s[0].v))))))); out[7].v = _mm_add_epi64(_mm_mul_epu32(r[0].v, s[7].v), _mm_add_epi64(_mm_mul_epu32(r[1].v, s[6].v), _mm_add_epi64(_mm_mul_epu32(r[2].v, s[5].v), _mm_add_epi64(_mm_mul_epu32(r[3].v, s[4].v), _mm_add_epi64(_mm_mul_epu32(r[4].v, s[3].v), _mm_add_epi64(_mm_mul_epu32(r[5].v, s[2].v), _mm_add_epi64(_mm_mul_epu32(r[6].v, s[1].v), _mm_mul_epu32(r[7].v , s[0].v)))))))); r7_2 = _mm_slli_epi32(r[7].v, 1); out[8].v = _mm_add_epi64(_mm_mul_epu32(r[0].v, s[8].v), _mm_add_epi64(_mm_mul_epu32(r1_2 , s[7].v), _mm_add_epi64(_mm_mul_epu32(r[2].v, s[6].v), _mm_add_epi64(_mm_mul_epu32(r3_2 , s[5].v), _mm_add_epi64(_mm_mul_epu32(r[4].v, s[4].v), _mm_add_epi64(_mm_mul_epu32(r5_2 , s[3].v), _mm_add_epi64(_mm_mul_epu32(r[6].v, s[2].v), _mm_add_epi64(_mm_mul_epu32(r7_2 , s[1].v), _mm_mul_epu32(r[8].v, s[0].v))))))))); out[9].v = _mm_add_epi64(_mm_mul_epu32(r[0].v, s[9].v), _mm_add_epi64(_mm_mul_epu32(r[1].v, s[8].v), _mm_add_epi64(_mm_mul_epu32(r[2].v, s[7].v), _mm_add_epi64(_mm_mul_epu32(r[3].v, s[6].v), _mm_add_epi64(_mm_mul_epu32(r[4].v, s[5].v), _mm_add_epi64(_mm_mul_epu32(r[5].v, s[4].v), _mm_add_epi64(_mm_mul_epu32(r[6].v, s[3].v), _mm_add_epi64(_mm_mul_epu32(r[7].v, s[2].v), _mm_add_epi64(_mm_mul_epu32(r[8].v, s[1].v), _mm_mul_epu32(r[9].v, s[0].v)))))))))); r1 = _mm_mul_epu32(r[1].v, packednineteen.v); r2 = _mm_mul_epu32(r[2].v, packednineteen.v); r1_2 = _mm_slli_epi32(r1, 1); r3 = _mm_mul_epu32(r[3].v, packednineteen.v); r4 = _mm_mul_epu32(r[4].v, packednineteen.v); r3_2 = _mm_slli_epi32(r3, 1); r5 = _mm_mul_epu32(r[5].v, packednineteen.v); r6 = _mm_mul_epu32(r[6].v, packednineteen.v); r5_2 = _mm_slli_epi32(r5, 1); r7 = _mm_mul_epu32(r[7].v, packednineteen.v); r8 = _mm_mul_epu32(r[8].v, packednineteen.v); r7_2 = _mm_slli_epi32(r7, 1); r9 = _mm_mul_epu32(r[9].v, packednineteen.v); r9_2 = _mm_slli_epi32(r9, 1); out[0].v = _mm_add_epi64(out[0].v, _mm_add_epi64(_mm_mul_epu32(r9_2, s[1].v), _mm_add_epi64(_mm_mul_epu32(r8, s[2].v), _mm_add_epi64(_mm_mul_epu32(r7_2, s[3].v), _mm_add_epi64(_mm_mul_epu32(r6, s[4].v), _mm_add_epi64(_mm_mul_epu32(r5_2, s[5].v), _mm_add_epi64(_mm_mul_epu32(r4, s[6].v), _mm_add_epi64(_mm_mul_epu32(r3_2, s[7].v), _mm_add_epi64(_mm_mul_epu32(r2, s[8].v), _mm_mul_epu32(r1_2, s[9].v)))))))))); out[1].v = _mm_add_epi64(out[1].v, _mm_add_epi64(_mm_mul_epu32(r9 , s[2].v), _mm_add_epi64(_mm_mul_epu32(r8, s[3].v), _mm_add_epi64(_mm_mul_epu32(r7 , s[4].v), _mm_add_epi64(_mm_mul_epu32(r6, s[5].v), _mm_add_epi64(_mm_mul_epu32(r5 , s[6].v), _mm_add_epi64(_mm_mul_epu32(r4, s[7].v), _mm_add_epi64(_mm_mul_epu32(r3 , s[8].v), _mm_mul_epu32(r2, s[9].v))))))))); out[2].v = _mm_add_epi64(out[2].v, _mm_add_epi64(_mm_mul_epu32(r9_2, s[3].v), _mm_add_epi64(_mm_mul_epu32(r8, s[4].v), _mm_add_epi64(_mm_mul_epu32(r7_2, s[5].v), _mm_add_epi64(_mm_mul_epu32(r6, s[6].v), _mm_add_epi64(_mm_mul_epu32(r5_2, s[7].v), _mm_add_epi64(_mm_mul_epu32(r4, s[8].v), _mm_mul_epu32(r3_2, s[9].v)))))))); out[3].v = _mm_add_epi64(out[3].v, _mm_add_epi64(_mm_mul_epu32(r9 , s[4].v), _mm_add_epi64(_mm_mul_epu32(r8, s[5].v), _mm_add_epi64(_mm_mul_epu32(r7 , s[6].v), _mm_add_epi64(_mm_mul_epu32(r6, s[7].v), _mm_add_epi64(_mm_mul_epu32(r5 , s[8].v), _mm_mul_epu32(r4, s[9].v))))))); out[4].v = _mm_add_epi64(out[4].v, _mm_add_epi64(_mm_mul_epu32(r9_2, s[5].v), _mm_add_epi64(_mm_mul_epu32(r8, s[6].v), _mm_add_epi64(_mm_mul_epu32(r7_2, s[7].v), _mm_add_epi64(_mm_mul_epu32(r6, s[8].v), _mm_mul_epu32(r5_2, s[9].v)))))); out[5].v = _mm_add_epi64(out[5].v, _mm_add_epi64(_mm_mul_epu32(r9 , s[6].v), _mm_add_epi64(_mm_mul_epu32(r8, s[7].v), _mm_add_epi64(_mm_mul_epu32(r7 , s[8].v), _mm_mul_epu32(r6, s[9].v))))); out[6].v = _mm_add_epi64(out[6].v, _mm_add_epi64(_mm_mul_epu32(r9_2, s[7].v), _mm_add_epi64(_mm_mul_epu32(r8, s[8].v), _mm_mul_epu32(r7_2, s[9].v)))); out[7].v = _mm_add_epi64(out[7].v, _mm_add_epi64(_mm_mul_epu32(r9 , s[8].v), _mm_mul_epu32(r8, s[9].v))); out[8].v = _mm_add_epi64(out[8].v, _mm_mul_epu32(r9_2, s[9].v)); c1 = _mm_srli_epi64(out[0].v, 26); c2 = _mm_srli_epi64(out[4].v, 26); out[0].v = _mm_and_si128(out[0].v, packedmask26.v); out[4].v = _mm_and_si128(out[4].v, packedmask26.v); out[1].v = _mm_add_epi64(out[1].v, c1); out[5].v = _mm_add_epi64(out[5].v, c2); c1 = _mm_srli_epi64(out[1].v, 25); c2 = _mm_srli_epi64(out[5].v, 25); out[1].v = _mm_and_si128(out[1].v, packedmask25.v); out[5].v = _mm_and_si128(out[5].v, packedmask25.v); out[2].v = _mm_add_epi64(out[2].v, c1); out[6].v = _mm_add_epi64(out[6].v, c2); c1 = _mm_srli_epi64(out[2].v, 26); c2 = _mm_srli_epi64(out[6].v, 26); out[2].v = _mm_and_si128(out[2].v, packedmask26.v); out[6].v = _mm_and_si128(out[6].v, packedmask26.v); out[3].v = _mm_add_epi64(out[3].v, c1); out[7].v = _mm_add_epi64(out[7].v, c2); c1 = _mm_srli_epi64(out[3].v, 25); c2 = _mm_srli_epi64(out[7].v, 25); out[3].v = _mm_and_si128(out[3].v, packedmask25.v); out[7].v = _mm_and_si128(out[7].v, packedmask25.v); out[4].v = _mm_add_epi64(out[4].v, c1); out[8].v = _mm_add_epi64(out[8].v, c2); c2 = _mm_srli_epi64(out[8].v, 26); out[8].v = _mm_and_si128(out[8].v, packedmask26.v); out[9].v = _mm_add_epi64(out[9].v, c2); c2 = _mm_srli_epi64(out[9].v, 25); out[9].v = _mm_and_si128(out[9].v, packedmask25.v); out[0].v = _mm_add_epi64(out[0].v, _mm_mul_epu32(c2, packednineteen.v)); c1 = _mm_srli_epi64(out[0].v, 26); c2 = _mm_srli_epi64(out[4].v, 26); out[0].v = _mm_and_si128(out[0].v, packedmask26.v); out[4].v = _mm_and_si128(out[4].v, packedmask26.v); out[1].v = _mm_add_epi64(out[1].v, c1); out[5].v = _mm_add_epi64(out[5].v, c2); } DONNA_INLINE static void curve25519_square_packed64(packedelem64 *out, const packedelem64 *r) { xmmi r0,r1,r2,r3; xmmi r1_2,r3_2,r4_2,r5_2,r6_2,r7_2; xmmi d5,d6,d7,d8,d9; xmmi c1,c2; r0 = r[0].v; r1 = r[1].v; r2 = r[2].v; r3 = r[3].v; out[0].v = _mm_mul_epu32(r0, r0); r0 = _mm_slli_epi32(r0, 1); out[1].v = _mm_mul_epu32(r0, r1); r1_2 = _mm_slli_epi32(r1, 1); out[2].v = _mm_add_epi64(_mm_mul_epu32(r0, r2 ), _mm_mul_epu32(r1, r1_2)); r1 = r1_2; out[3].v = _mm_add_epi64(_mm_mul_epu32(r0, r3 ), _mm_mul_epu32(r1, r2 )); r3_2 = _mm_slli_epi32(r3, 1); out[4].v = _mm_add_epi64(_mm_mul_epu32(r0, r[4].v), _mm_add_epi64(_mm_mul_epu32(r1, r3_2 ), _mm_mul_epu32(r2, r2))); r2 = _mm_slli_epi32(r2, 1); out[5].v = _mm_add_epi64(_mm_mul_epu32(r0, r[5].v), _mm_add_epi64(_mm_mul_epu32(r1, r[4].v), _mm_mul_epu32(r2, r3))); r5_2 = _mm_slli_epi32(r[5].v, 1); out[6].v = _mm_add_epi64(_mm_mul_epu32(r0, r[6].v), _mm_add_epi64(_mm_mul_epu32(r1, r5_2 ), _mm_add_epi64(_mm_mul_epu32(r2, r[4].v), _mm_mul_epu32(r3, r3_2 )))); r3 = r3_2; out[7].v = _mm_add_epi64(_mm_mul_epu32(r0, r[7].v), _mm_add_epi64(_mm_mul_epu32(r1, r[6].v), _mm_add_epi64(_mm_mul_epu32(r2, r[5].v), _mm_mul_epu32(r3, r[4].v)))); r7_2 = _mm_slli_epi32(r[7].v, 1); out[8].v = _mm_add_epi64(_mm_mul_epu32(r0, r[8].v), _mm_add_epi64(_mm_mul_epu32(r1, r7_2 ), _mm_add_epi64(_mm_mul_epu32(r2, r[6].v), _mm_add_epi64(_mm_mul_epu32(r3, r5_2 ), _mm_mul_epu32(r[4].v, r[4].v))))); out[9].v = _mm_add_epi64(_mm_mul_epu32(r0, r[9].v), _mm_add_epi64(_mm_mul_epu32(r1, r[8].v), _mm_add_epi64(_mm_mul_epu32(r2, r[7].v), _mm_add_epi64(_mm_mul_epu32(r3, r[6].v), _mm_mul_epu32(r[4].v, r5_2 ))))); d5 = _mm_mul_epu32(r[5].v, packedthirtyeight.v); d6 = _mm_mul_epu32(r[6].v, packednineteen.v); d7 = _mm_mul_epu32(r[7].v, packedthirtyeight.v); d8 = _mm_mul_epu32(r[8].v, packednineteen.v); d9 = _mm_mul_epu32(r[9].v, packedthirtyeight.v); r4_2 = _mm_slli_epi32(r[4].v, 1); r6_2 = _mm_slli_epi32(r[6].v, 1); out[0].v = _mm_add_epi64(out[0].v, _mm_add_epi64(_mm_mul_epu32(d9, r1 ), _mm_add_epi64(_mm_mul_epu32(d8, r2 ), _mm_add_epi64(_mm_mul_epu32(d7, r3 ), _mm_add_epi64(_mm_mul_epu32(d6, r4_2), _mm_mul_epu32(d5, r[5].v)))))); out[1].v = _mm_add_epi64(out[1].v, _mm_add_epi64(_mm_mul_epu32(d9, _mm_srli_epi32(r2, 1)), _mm_add_epi64(_mm_mul_epu32(d8, r3 ), _mm_add_epi64(_mm_mul_epu32(d7, r[4].v), _mm_mul_epu32(d6, r5_2 ))))); out[2].v = _mm_add_epi64(out[2].v, _mm_add_epi64(_mm_mul_epu32(d9, r3 ), _mm_add_epi64(_mm_mul_epu32(d8, r4_2), _mm_add_epi64(_mm_mul_epu32(d7, r5_2 ), _mm_mul_epu32(d6, r[6].v))))); out[3].v = _mm_add_epi64(out[3].v, _mm_add_epi64(_mm_mul_epu32(d9, r[4].v ), _mm_add_epi64(_mm_mul_epu32(d8, r5_2), _mm_mul_epu32(d7, r[6].v)))); out[4].v = _mm_add_epi64(out[4].v, _mm_add_epi64(_mm_mul_epu32(d9, r5_2 ), _mm_add_epi64(_mm_mul_epu32(d8, r6_2), _mm_mul_epu32(d7, r[7].v)))); out[5].v = _mm_add_epi64(out[5].v, _mm_add_epi64(_mm_mul_epu32(d9, r[6].v ), _mm_mul_epu32(d8, r7_2 ))); out[6].v = _mm_add_epi64(out[6].v, _mm_add_epi64(_mm_mul_epu32(d9, r7_2 ), _mm_mul_epu32(d8, r[8].v))); out[7].v = _mm_add_epi64(out[7].v, _mm_mul_epu32(d9, r[8].v)); out[8].v = _mm_add_epi64(out[8].v, _mm_mul_epu32(d9, r[9].v)); c1 = _mm_srli_epi64(out[0].v, 26); c2 = _mm_srli_epi64(out[4].v, 26); out[0].v = _mm_and_si128(out[0].v, packedmask26.v); out[4].v = _mm_and_si128(out[4].v, packedmask26.v); out[1].v = _mm_add_epi64(out[1].v, c1); out[5].v = _mm_add_epi64(out[5].v, c2); c1 = _mm_srli_epi64(out[1].v, 25); c2 = _mm_srli_epi64(out[5].v, 25); out[1].v = _mm_and_si128(out[1].v, packedmask25.v); out[5].v = _mm_and_si128(out[5].v, packedmask25.v); out[2].v = _mm_add_epi64(out[2].v, c1); out[6].v = _mm_add_epi64(out[6].v, c2); c1 = _mm_srli_epi64(out[2].v, 26); c2 = _mm_srli_epi64(out[6].v, 26); out[2].v = _mm_and_si128(out[2].v, packedmask26.v); out[6].v = _mm_and_si128(out[6].v, packedmask26.v); out[3].v = _mm_add_epi64(out[3].v, c1); out[7].v = _mm_add_epi64(out[7].v, c2); c1 = _mm_srli_epi64(out[3].v, 25); c2 = _mm_srli_epi64(out[7].v, 25); out[3].v = _mm_and_si128(out[3].v, packedmask25.v); out[7].v = _mm_and_si128(out[7].v, packedmask25.v); out[4].v = _mm_add_epi64(out[4].v, c1); out[8].v = _mm_add_epi64(out[8].v, c2); c2 = _mm_srli_epi64(out[8].v, 26); out[8].v = _mm_and_si128(out[8].v, packedmask26.v); out[9].v = _mm_add_epi64(out[9].v, c2); c2 = _mm_srli_epi64(out[9].v, 25); out[9].v = _mm_and_si128(out[9].v, packedmask25.v); out[0].v = _mm_add_epi64(out[0].v, _mm_mul_epu32(c2, packednineteen.v)); c1 = _mm_srli_epi64(out[0].v, 26); c2 = _mm_srli_epi64(out[4].v, 26); out[0].v = _mm_and_si128(out[0].v, packedmask26.v); out[4].v = _mm_and_si128(out[4].v, packedmask26.v); out[1].v = _mm_add_epi64(out[1].v, c1); out[5].v = _mm_add_epi64(out[5].v, c2); } /* Take a little-endian, 32-byte number and expand it into polynomial form */ static void curve25519_expand(bignum25519 out, const unsigned char in[32]) { uint32_t x0,x1,x2,x3,x4,x5,x6,x7; x0 = *(uint32_t *)(in + 0); x1 = *(uint32_t *)(in + 4); x2 = *(uint32_t *)(in + 8); x3 = *(uint32_t *)(in + 12); x4 = *(uint32_t *)(in + 16); x5 = *(uint32_t *)(in + 20); x6 = *(uint32_t *)(in + 24); x7 = *(uint32_t *)(in + 28); out[0] = ( x0 ) & 0x3ffffff; out[1] = ((((uint64_t)x1 << 32) | x0) >> 26) & 0x1ffffff; out[2] = ((((uint64_t)x2 << 32) | x1) >> 19) & 0x3ffffff; out[3] = ((((uint64_t)x3 << 32) | x2) >> 13) & 0x1ffffff; out[4] = (( x3) >> 6) & 0x3ffffff; out[5] = ( x4 ) & 0x1ffffff; out[6] = ((((uint64_t)x5 << 32) | x4) >> 25) & 0x3ffffff; out[7] = ((((uint64_t)x6 << 32) | x5) >> 19) & 0x1ffffff; out[8] = ((((uint64_t)x7 << 32) | x6) >> 12) & 0x3ffffff; out[9] = (( x7) >> 6) & 0x1ffffff; out[10] = 0; out[11] = 0; } /* Take a fully reduced polynomial form number and contract it into a * little-endian, 32-byte array */ static void curve25519_contract(unsigned char out[32], const bignum25519 in) { bignum25519 ALIGN(16) f; curve25519_copy(f, in); #define carry_pass() \ f[1] += f[0] >> 26; f[0] &= 0x3ffffff; \ f[2] += f[1] >> 25; f[1] &= 0x1ffffff; \ f[3] += f[2] >> 26; f[2] &= 0x3ffffff; \ f[4] += f[3] >> 25; f[3] &= 0x1ffffff; \ f[5] += f[4] >> 26; f[4] &= 0x3ffffff; \ f[6] += f[5] >> 25; f[5] &= 0x1ffffff; \ f[7] += f[6] >> 26; f[6] &= 0x3ffffff; \ f[8] += f[7] >> 25; f[7] &= 0x1ffffff; \ f[9] += f[8] >> 26; f[8] &= 0x3ffffff; #define carry_pass_full() \ carry_pass() \ f[0] += 19 * (f[9] >> 25); f[9] &= 0x1ffffff; #define carry_pass_final() \ carry_pass() \ f[9] &= 0x1ffffff; carry_pass_full() carry_pass_full() /* now t is between 0 and 2^255-1, properly carried. */ /* case 1: between 0 and 2^255-20. case 2: between 2^255-19 and 2^255-1. */ f[0] += 19; carry_pass_full() /* now between 19 and 2^255-1 in both cases, and offset by 19. */ f[0] += (1 << 26) - 19; f[1] += (1 << 25) - 1; f[2] += (1 << 26) - 1; f[3] += (1 << 25) - 1; f[4] += (1 << 26) - 1; f[5] += (1 << 25) - 1; f[6] += (1 << 26) - 1; f[7] += (1 << 25) - 1; f[8] += (1 << 26) - 1; f[9] += (1 << 25) - 1; /* now between 2^255 and 2^256-20, and offset by 2^255. */ carry_pass_final() #undef carry_pass #undef carry_full #undef carry_final f[1] <<= 2; f[2] <<= 3; f[3] <<= 5; f[4] <<= 6; f[6] <<= 1; f[7] <<= 3; f[8] <<= 4; f[9] <<= 6; #define F(i, s) \ out[s+0] |= (unsigned char )(f[i] & 0xff); \ out[s+1] = (unsigned char )((f[i] >> 8) & 0xff); \ out[s+2] = (unsigned char )((f[i] >> 16) & 0xff); \ out[s+3] = (unsigned char )((f[i] >> 24) & 0xff); out[0] = 0; out[16] = 0; F(0,0); F(1,3); F(2,6); F(3,9); F(4,12); F(5,16); F(6,19); F(7,22); F(8,25); F(9,28); #undef F } /* if (iswap) swap(a, b) */ DONNA_INLINE static void curve25519_swap_conditional(bignum25519 a, bignum25519 b, uint32_t iswap) { const uint32_t swap = (uint32_t)(-(int32_t)iswap); xmmi a0,a1,a2,b0,b1,b2,x0,x1,x2; xmmi mask = _mm_cvtsi32_si128(swap); mask = _mm_shuffle_epi32(mask, 0); a0 = _mm_load_si128((xmmi *)a + 0); a1 = _mm_load_si128((xmmi *)a + 1); b0 = _mm_load_si128((xmmi *)b + 0); b1 = _mm_load_si128((xmmi *)b + 1); b0 = _mm_xor_si128(a0, b0); b1 = _mm_xor_si128(a1, b1); x0 = _mm_and_si128(b0, mask); x1 = _mm_and_si128(b1, mask); x0 = _mm_xor_si128(x0, a0); x1 = _mm_xor_si128(x1, a1); a0 = _mm_xor_si128(x0, b0); a1 = _mm_xor_si128(x1, b1); _mm_store_si128((xmmi *)a + 0, x0); _mm_store_si128((xmmi *)a + 1, x1); _mm_store_si128((xmmi *)b + 0, a0); _mm_store_si128((xmmi *)b + 1, a1); a2 = _mm_load_si128((xmmi *)a + 2); b2 = _mm_load_si128((xmmi *)b + 2); b2 = _mm_xor_si128(a2, b2); x2 = _mm_and_si128(b2, mask); x2 = _mm_xor_si128(x2, a2); a2 = _mm_xor_si128(x2, b2); _mm_store_si128((xmmi *)b + 2, a2); _mm_store_si128((xmmi *)a + 2, x2); } /* out = (flag) ? out : in */ DONNA_INLINE static void curve25519_move_conditional_bytes(uint8_t out[96], const uint8_t in[96], uint32_t flag) { xmmi a0,a1,a2,a3,a4,a5,b0,b1,b2,b3,b4,b5; const uint32_t nb = flag - 1; xmmi masknb = _mm_shuffle_epi32(_mm_cvtsi32_si128(nb),0); a0 = _mm_load_si128((xmmi *)in + 0); a1 = _mm_load_si128((xmmi *)in + 1); a2 = _mm_load_si128((xmmi *)in + 2); b0 = _mm_load_si128((xmmi *)out + 0); b1 = _mm_load_si128((xmmi *)out + 1); b2 = _mm_load_si128((xmmi *)out + 2); a0 = _mm_andnot_si128(masknb, a0); a1 = _mm_andnot_si128(masknb, a1); a2 = _mm_andnot_si128(masknb, a2); b0 = _mm_and_si128(masknb, b0); b1 = _mm_and_si128(masknb, b1); b2 = _mm_and_si128(masknb, b2); a0 = _mm_or_si128(a0, b0); a1 = _mm_or_si128(a1, b1); a2 = _mm_or_si128(a2, b2); _mm_store_si128((xmmi*)out + 0, a0); _mm_store_si128((xmmi*)out + 1, a1); _mm_store_si128((xmmi*)out + 2, a2); a3 = _mm_load_si128((xmmi *)in + 3); a4 = _mm_load_si128((xmmi *)in + 4); a5 = _mm_load_si128((xmmi *)in + 5); b3 = _mm_load_si128((xmmi *)out + 3); b4 = _mm_load_si128((xmmi *)out + 4); b5 = _mm_load_si128((xmmi *)out + 5); a3 = _mm_andnot_si128(masknb, a3); a4 = _mm_andnot_si128(masknb, a4); a5 = _mm_andnot_si128(masknb, a5); b3 = _mm_and_si128(masknb, b3); b4 = _mm_and_si128(masknb, b4); b5 = _mm_and_si128(masknb, b5); a3 = _mm_or_si128(a3, b3); a4 = _mm_or_si128(a4, b4); a5 = _mm_or_si128(a5, b5); _mm_store_si128((xmmi*)out + 3, a3); _mm_store_si128((xmmi*)out + 4, a4); _mm_store_si128((xmmi*)out + 5, a5); } tor-0.2.7.6/src/ext/ed25519/donna/curve25519-donna-32bit.h0000644000175000017500000005412612621363245017032 00000000000000/* Public domain by Andrew M. See: https://github.com/floodyberry/curve25519-donna 32 bit integer curve25519 implementation */ typedef uint32_t bignum25519[10]; typedef uint32_t bignum25519align16[12]; static const uint32_t reduce_mask_25 = (1 << 25) - 1; static const uint32_t reduce_mask_26 = (1 << 26) - 1; /* out = in */ DONNA_INLINE static void curve25519_copy(bignum25519 out, const bignum25519 in) { out[0] = in[0]; out[1] = in[1]; out[2] = in[2]; out[3] = in[3]; out[4] = in[4]; out[5] = in[5]; out[6] = in[6]; out[7] = in[7]; out[8] = in[8]; out[9] = in[9]; } /* out = a + b */ DONNA_INLINE static void curve25519_add(bignum25519 out, const bignum25519 a, const bignum25519 b) { out[0] = a[0] + b[0]; out[1] = a[1] + b[1]; out[2] = a[2] + b[2]; out[3] = a[3] + b[3]; out[4] = a[4] + b[4]; out[5] = a[5] + b[5]; out[6] = a[6] + b[6]; out[7] = a[7] + b[7]; out[8] = a[8] + b[8]; out[9] = a[9] + b[9]; } DONNA_INLINE static void curve25519_add_after_basic(bignum25519 out, const bignum25519 a, const bignum25519 b) { uint32_t c; out[0] = a[0] + b[0] ; c = (out[0] >> 26); out[0] &= reduce_mask_26; out[1] = a[1] + b[1] + c; c = (out[1] >> 25); out[1] &= reduce_mask_25; out[2] = a[2] + b[2] + c; c = (out[2] >> 26); out[2] &= reduce_mask_26; out[3] = a[3] + b[3] + c; c = (out[3] >> 25); out[3] &= reduce_mask_25; out[4] = a[4] + b[4] + c; c = (out[4] >> 26); out[4] &= reduce_mask_26; out[5] = a[5] + b[5] + c; c = (out[5] >> 25); out[5] &= reduce_mask_25; out[6] = a[6] + b[6] + c; c = (out[6] >> 26); out[6] &= reduce_mask_26; out[7] = a[7] + b[7] + c; c = (out[7] >> 25); out[7] &= reduce_mask_25; out[8] = a[8] + b[8] + c; c = (out[8] >> 26); out[8] &= reduce_mask_26; out[9] = a[9] + b[9] + c; c = (out[9] >> 25); out[9] &= reduce_mask_25; out[0] += 19 * c; } DONNA_INLINE static void curve25519_add_reduce(bignum25519 out, const bignum25519 a, const bignum25519 b) { uint32_t c; out[0] = a[0] + b[0] ; c = (out[0] >> 26); out[0] &= reduce_mask_26; out[1] = a[1] + b[1] + c; c = (out[1] >> 25); out[1] &= reduce_mask_25; out[2] = a[2] + b[2] + c; c = (out[2] >> 26); out[2] &= reduce_mask_26; out[3] = a[3] + b[3] + c; c = (out[3] >> 25); out[3] &= reduce_mask_25; out[4] = a[4] + b[4] + c; c = (out[4] >> 26); out[4] &= reduce_mask_26; out[5] = a[5] + b[5] + c; c = (out[5] >> 25); out[5] &= reduce_mask_25; out[6] = a[6] + b[6] + c; c = (out[6] >> 26); out[6] &= reduce_mask_26; out[7] = a[7] + b[7] + c; c = (out[7] >> 25); out[7] &= reduce_mask_25; out[8] = a[8] + b[8] + c; c = (out[8] >> 26); out[8] &= reduce_mask_26; out[9] = a[9] + b[9] + c; c = (out[9] >> 25); out[9] &= reduce_mask_25; out[0] += 19 * c; } /* multiples of p */ static const uint32_t twoP0 = 0x07ffffda; static const uint32_t twoP13579 = 0x03fffffe; static const uint32_t twoP2468 = 0x07fffffe; static const uint32_t fourP0 = 0x0fffffb4; static const uint32_t fourP13579 = 0x07fffffc; static const uint32_t fourP2468 = 0x0ffffffc; /* out = a - b */ DONNA_INLINE static void curve25519_sub(bignum25519 out, const bignum25519 a, const bignum25519 b) { uint32_t c; out[0] = twoP0 + a[0] - b[0] ; c = (out[0] >> 26); out[0] &= reduce_mask_26; out[1] = twoP13579 + a[1] - b[1] + c; c = (out[1] >> 25); out[1] &= reduce_mask_25; out[2] = twoP2468 + a[2] - b[2] + c; c = (out[2] >> 26); out[2] &= reduce_mask_26; out[3] = twoP13579 + a[3] - b[3] + c; c = (out[3] >> 25); out[3] &= reduce_mask_25; out[4] = twoP2468 + a[4] - b[4] + c; out[5] = twoP13579 + a[5] - b[5] ; out[6] = twoP2468 + a[6] - b[6] ; out[7] = twoP13579 + a[7] - b[7] ; out[8] = twoP2468 + a[8] - b[8] ; out[9] = twoP13579 + a[9] - b[9] ; } /* out = a - b, where a is the result of a basic op (add,sub) */ DONNA_INLINE static void curve25519_sub_after_basic(bignum25519 out, const bignum25519 a, const bignum25519 b) { uint32_t c; out[0] = fourP0 + a[0] - b[0] ; c = (out[0] >> 26); out[0] &= reduce_mask_26; out[1] = fourP13579 + a[1] - b[1] + c; c = (out[1] >> 25); out[1] &= reduce_mask_25; out[2] = fourP2468 + a[2] - b[2] + c; c = (out[2] >> 26); out[2] &= reduce_mask_26; out[3] = fourP13579 + a[3] - b[3] + c; c = (out[3] >> 25); out[3] &= reduce_mask_25; out[4] = fourP2468 + a[4] - b[4] + c; c = (out[4] >> 26); out[4] &= reduce_mask_26; out[5] = fourP13579 + a[5] - b[5] + c; c = (out[5] >> 25); out[5] &= reduce_mask_25; out[6] = fourP2468 + a[6] - b[6] + c; c = (out[6] >> 26); out[6] &= reduce_mask_26; out[7] = fourP13579 + a[7] - b[7] + c; c = (out[7] >> 25); out[7] &= reduce_mask_25; out[8] = fourP2468 + a[8] - b[8] + c; c = (out[8] >> 26); out[8] &= reduce_mask_26; out[9] = fourP13579 + a[9] - b[9] + c; c = (out[9] >> 25); out[9] &= reduce_mask_25; out[0] += 19 * c; } DONNA_INLINE static void curve25519_sub_reduce(bignum25519 out, const bignum25519 a, const bignum25519 b) { uint32_t c; out[0] = fourP0 + a[0] - b[0] ; c = (out[0] >> 26); out[0] &= reduce_mask_26; out[1] = fourP13579 + a[1] - b[1] + c; c = (out[1] >> 25); out[1] &= reduce_mask_25; out[2] = fourP2468 + a[2] - b[2] + c; c = (out[2] >> 26); out[2] &= reduce_mask_26; out[3] = fourP13579 + a[3] - b[3] + c; c = (out[3] >> 25); out[3] &= reduce_mask_25; out[4] = fourP2468 + a[4] - b[4] + c; c = (out[4] >> 26); out[4] &= reduce_mask_26; out[5] = fourP13579 + a[5] - b[5] + c; c = (out[5] >> 25); out[5] &= reduce_mask_25; out[6] = fourP2468 + a[6] - b[6] + c; c = (out[6] >> 26); out[6] &= reduce_mask_26; out[7] = fourP13579 + a[7] - b[7] + c; c = (out[7] >> 25); out[7] &= reduce_mask_25; out[8] = fourP2468 + a[8] - b[8] + c; c = (out[8] >> 26); out[8] &= reduce_mask_26; out[9] = fourP13579 + a[9] - b[9] + c; c = (out[9] >> 25); out[9] &= reduce_mask_25; out[0] += 19 * c; } /* out = -a */ DONNA_INLINE static void curve25519_neg(bignum25519 out, const bignum25519 a) { uint32_t c; out[0] = twoP0 - a[0] ; c = (out[0] >> 26); out[0] &= reduce_mask_26; out[1] = twoP13579 - a[1] + c; c = (out[1] >> 25); out[1] &= reduce_mask_25; out[2] = twoP2468 - a[2] + c; c = (out[2] >> 26); out[2] &= reduce_mask_26; out[3] = twoP13579 - a[3] + c; c = (out[3] >> 25); out[3] &= reduce_mask_25; out[4] = twoP2468 - a[4] + c; c = (out[4] >> 26); out[4] &= reduce_mask_26; out[5] = twoP13579 - a[5] + c; c = (out[5] >> 25); out[5] &= reduce_mask_25; out[6] = twoP2468 - a[6] + c; c = (out[6] >> 26); out[6] &= reduce_mask_26; out[7] = twoP13579 - a[7] + c; c = (out[7] >> 25); out[7] &= reduce_mask_25; out[8] = twoP2468 - a[8] + c; c = (out[8] >> 26); out[8] &= reduce_mask_26; out[9] = twoP13579 - a[9] + c; c = (out[9] >> 25); out[9] &= reduce_mask_25; out[0] += 19 * c; } /* out = a * b */ #define curve25519_mul_noinline curve25519_mul static void curve25519_mul(bignum25519 out, const bignum25519 a, const bignum25519 b) { uint32_t r0,r1,r2,r3,r4,r5,r6,r7,r8,r9; uint32_t s0,s1,s2,s3,s4,s5,s6,s7,s8,s9; uint64_t m0,m1,m2,m3,m4,m5,m6,m7,m8,m9,c; uint32_t p; r0 = b[0]; r1 = b[1]; r2 = b[2]; r3 = b[3]; r4 = b[4]; r5 = b[5]; r6 = b[6]; r7 = b[7]; r8 = b[8]; r9 = b[9]; s0 = a[0]; s1 = a[1]; s2 = a[2]; s3 = a[3]; s4 = a[4]; s5 = a[5]; s6 = a[6]; s7 = a[7]; s8 = a[8]; s9 = a[9]; m1 = mul32x32_64(r0, s1) + mul32x32_64(r1, s0); m3 = mul32x32_64(r0, s3) + mul32x32_64(r1, s2) + mul32x32_64(r2, s1) + mul32x32_64(r3, s0); m5 = mul32x32_64(r0, s5) + mul32x32_64(r1, s4) + mul32x32_64(r2, s3) + mul32x32_64(r3, s2) + mul32x32_64(r4, s1) + mul32x32_64(r5, s0); m7 = mul32x32_64(r0, s7) + mul32x32_64(r1, s6) + mul32x32_64(r2, s5) + mul32x32_64(r3, s4) + mul32x32_64(r4, s3) + mul32x32_64(r5, s2) + mul32x32_64(r6, s1) + mul32x32_64(r7, s0); m9 = mul32x32_64(r0, s9) + mul32x32_64(r1, s8) + mul32x32_64(r2, s7) + mul32x32_64(r3, s6) + mul32x32_64(r4, s5) + mul32x32_64(r5, s4) + mul32x32_64(r6, s3) + mul32x32_64(r7, s2) + mul32x32_64(r8, s1) + mul32x32_64(r9, s0); r1 *= 2; r3 *= 2; r5 *= 2; r7 *= 2; m0 = mul32x32_64(r0, s0); m2 = mul32x32_64(r0, s2) + mul32x32_64(r1, s1) + mul32x32_64(r2, s0); m4 = mul32x32_64(r0, s4) + mul32x32_64(r1, s3) + mul32x32_64(r2, s2) + mul32x32_64(r3, s1) + mul32x32_64(r4, s0); m6 = mul32x32_64(r0, s6) + mul32x32_64(r1, s5) + mul32x32_64(r2, s4) + mul32x32_64(r3, s3) + mul32x32_64(r4, s2) + mul32x32_64(r5, s1) + mul32x32_64(r6, s0); m8 = mul32x32_64(r0, s8) + mul32x32_64(r1, s7) + mul32x32_64(r2, s6) + mul32x32_64(r3, s5) + mul32x32_64(r4, s4) + mul32x32_64(r5, s3) + mul32x32_64(r6, s2) + mul32x32_64(r7, s1) + mul32x32_64(r8, s0); r1 *= 19; r2 *= 19; r3 = (r3 / 2) * 19; r4 *= 19; r5 = (r5 / 2) * 19; r6 *= 19; r7 = (r7 / 2) * 19; r8 *= 19; r9 *= 19; m1 += (mul32x32_64(r9, s2) + mul32x32_64(r8, s3) + mul32x32_64(r7, s4) + mul32x32_64(r6, s5) + mul32x32_64(r5, s6) + mul32x32_64(r4, s7) + mul32x32_64(r3, s8) + mul32x32_64(r2, s9)); m3 += (mul32x32_64(r9, s4) + mul32x32_64(r8, s5) + mul32x32_64(r7, s6) + mul32x32_64(r6, s7) + mul32x32_64(r5, s8) + mul32x32_64(r4, s9)); m5 += (mul32x32_64(r9, s6) + mul32x32_64(r8, s7) + mul32x32_64(r7, s8) + mul32x32_64(r6, s9)); m7 += (mul32x32_64(r9, s8) + mul32x32_64(r8, s9)); r3 *= 2; r5 *= 2; r7 *= 2; r9 *= 2; m0 += (mul32x32_64(r9, s1) + mul32x32_64(r8, s2) + mul32x32_64(r7, s3) + mul32x32_64(r6, s4) + mul32x32_64(r5, s5) + mul32x32_64(r4, s6) + mul32x32_64(r3, s7) + mul32x32_64(r2, s8) + mul32x32_64(r1, s9)); m2 += (mul32x32_64(r9, s3) + mul32x32_64(r8, s4) + mul32x32_64(r7, s5) + mul32x32_64(r6, s6) + mul32x32_64(r5, s7) + mul32x32_64(r4, s8) + mul32x32_64(r3, s9)); m4 += (mul32x32_64(r9, s5) + mul32x32_64(r8, s6) + mul32x32_64(r7, s7) + mul32x32_64(r6, s8) + mul32x32_64(r5, s9)); m6 += (mul32x32_64(r9, s7) + mul32x32_64(r8, s8) + mul32x32_64(r7, s9)); m8 += (mul32x32_64(r9, s9)); r0 = (uint32_t)m0 & reduce_mask_26; c = (m0 >> 26); m1 += c; r1 = (uint32_t)m1 & reduce_mask_25; c = (m1 >> 25); m2 += c; r2 = (uint32_t)m2 & reduce_mask_26; c = (m2 >> 26); m3 += c; r3 = (uint32_t)m3 & reduce_mask_25; c = (m3 >> 25); m4 += c; r4 = (uint32_t)m4 & reduce_mask_26; c = (m4 >> 26); m5 += c; r5 = (uint32_t)m5 & reduce_mask_25; c = (m5 >> 25); m6 += c; r6 = (uint32_t)m6 & reduce_mask_26; c = (m6 >> 26); m7 += c; r7 = (uint32_t)m7 & reduce_mask_25; c = (m7 >> 25); m8 += c; r8 = (uint32_t)m8 & reduce_mask_26; c = (m8 >> 26); m9 += c; r9 = (uint32_t)m9 & reduce_mask_25; p = (uint32_t)(m9 >> 25); m0 = r0 + mul32x32_64(p,19); r0 = (uint32_t)m0 & reduce_mask_26; p = (uint32_t)(m0 >> 26); r1 += p; out[0] = r0; out[1] = r1; out[2] = r2; out[3] = r3; out[4] = r4; out[5] = r5; out[6] = r6; out[7] = r7; out[8] = r8; out[9] = r9; } /* out = in*in */ static void curve25519_square(bignum25519 out, const bignum25519 in) { uint32_t r0,r1,r2,r3,r4,r5,r6,r7,r8,r9; uint32_t d6,d7,d8,d9; uint64_t m0,m1,m2,m3,m4,m5,m6,m7,m8,m9,c; uint32_t p; r0 = in[0]; r1 = in[1]; r2 = in[2]; r3 = in[3]; r4 = in[4]; r5 = in[5]; r6 = in[6]; r7 = in[7]; r8 = in[8]; r9 = in[9]; m0 = mul32x32_64(r0, r0); r0 *= 2; m1 = mul32x32_64(r0, r1); m2 = mul32x32_64(r0, r2) + mul32x32_64(r1, r1 * 2); r1 *= 2; m3 = mul32x32_64(r0, r3) + mul32x32_64(r1, r2 ); m4 = mul32x32_64(r0, r4) + mul32x32_64(r1, r3 * 2) + mul32x32_64(r2, r2); r2 *= 2; m5 = mul32x32_64(r0, r5) + mul32x32_64(r1, r4 ) + mul32x32_64(r2, r3); m6 = mul32x32_64(r0, r6) + mul32x32_64(r1, r5 * 2) + mul32x32_64(r2, r4) + mul32x32_64(r3, r3 * 2); r3 *= 2; m7 = mul32x32_64(r0, r7) + mul32x32_64(r1, r6 ) + mul32x32_64(r2, r5) + mul32x32_64(r3, r4 ); m8 = mul32x32_64(r0, r8) + mul32x32_64(r1, r7 * 2) + mul32x32_64(r2, r6) + mul32x32_64(r3, r5 * 2) + mul32x32_64(r4, r4 ); m9 = mul32x32_64(r0, r9) + mul32x32_64(r1, r8 ) + mul32x32_64(r2, r7) + mul32x32_64(r3, r6 ) + mul32x32_64(r4, r5 * 2); d6 = r6 * 19; d7 = r7 * 2 * 19; d8 = r8 * 19; d9 = r9 * 2 * 19; m0 += (mul32x32_64(d9, r1 ) + mul32x32_64(d8, r2 ) + mul32x32_64(d7, r3 ) + mul32x32_64(d6, r4 * 2) + mul32x32_64(r5, r5 * 2 * 19)); m1 += (mul32x32_64(d9, r2 / 2) + mul32x32_64(d8, r3 ) + mul32x32_64(d7, r4 ) + mul32x32_64(d6, r5 * 2)); m2 += (mul32x32_64(d9, r3 ) + mul32x32_64(d8, r4 * 2) + mul32x32_64(d7, r5 * 2) + mul32x32_64(d6, r6 )); m3 += (mul32x32_64(d9, r4 ) + mul32x32_64(d8, r5 * 2) + mul32x32_64(d7, r6 )); m4 += (mul32x32_64(d9, r5 * 2) + mul32x32_64(d8, r6 * 2) + mul32x32_64(d7, r7 )); m5 += (mul32x32_64(d9, r6 ) + mul32x32_64(d8, r7 * 2)); m6 += (mul32x32_64(d9, r7 * 2) + mul32x32_64(d8, r8 )); m7 += (mul32x32_64(d9, r8 )); m8 += (mul32x32_64(d9, r9 )); r0 = (uint32_t)m0 & reduce_mask_26; c = (m0 >> 26); m1 += c; r1 = (uint32_t)m1 & reduce_mask_25; c = (m1 >> 25); m2 += c; r2 = (uint32_t)m2 & reduce_mask_26; c = (m2 >> 26); m3 += c; r3 = (uint32_t)m3 & reduce_mask_25; c = (m3 >> 25); m4 += c; r4 = (uint32_t)m4 & reduce_mask_26; c = (m4 >> 26); m5 += c; r5 = (uint32_t)m5 & reduce_mask_25; c = (m5 >> 25); m6 += c; r6 = (uint32_t)m6 & reduce_mask_26; c = (m6 >> 26); m7 += c; r7 = (uint32_t)m7 & reduce_mask_25; c = (m7 >> 25); m8 += c; r8 = (uint32_t)m8 & reduce_mask_26; c = (m8 >> 26); m9 += c; r9 = (uint32_t)m9 & reduce_mask_25; p = (uint32_t)(m9 >> 25); m0 = r0 + mul32x32_64(p,19); r0 = (uint32_t)m0 & reduce_mask_26; p = (uint32_t)(m0 >> 26); r1 += p; out[0] = r0; out[1] = r1; out[2] = r2; out[3] = r3; out[4] = r4; out[5] = r5; out[6] = r6; out[7] = r7; out[8] = r8; out[9] = r9; } /* out = in ^ (2 * count) */ static void curve25519_square_times(bignum25519 out, const bignum25519 in, int count) { uint32_t r0,r1,r2,r3,r4,r5,r6,r7,r8,r9; uint32_t d6,d7,d8,d9; uint64_t m0,m1,m2,m3,m4,m5,m6,m7,m8,m9,c; uint32_t p; r0 = in[0]; r1 = in[1]; r2 = in[2]; r3 = in[3]; r4 = in[4]; r5 = in[5]; r6 = in[6]; r7 = in[7]; r8 = in[8]; r9 = in[9]; do { m0 = mul32x32_64(r0, r0); r0 *= 2; m1 = mul32x32_64(r0, r1); m2 = mul32x32_64(r0, r2) + mul32x32_64(r1, r1 * 2); r1 *= 2; m3 = mul32x32_64(r0, r3) + mul32x32_64(r1, r2 ); m4 = mul32x32_64(r0, r4) + mul32x32_64(r1, r3 * 2) + mul32x32_64(r2, r2); r2 *= 2; m5 = mul32x32_64(r0, r5) + mul32x32_64(r1, r4 ) + mul32x32_64(r2, r3); m6 = mul32x32_64(r0, r6) + mul32x32_64(r1, r5 * 2) + mul32x32_64(r2, r4) + mul32x32_64(r3, r3 * 2); r3 *= 2; m7 = mul32x32_64(r0, r7) + mul32x32_64(r1, r6 ) + mul32x32_64(r2, r5) + mul32x32_64(r3, r4 ); m8 = mul32x32_64(r0, r8) + mul32x32_64(r1, r7 * 2) + mul32x32_64(r2, r6) + mul32x32_64(r3, r5 * 2) + mul32x32_64(r4, r4 ); m9 = mul32x32_64(r0, r9) + mul32x32_64(r1, r8 ) + mul32x32_64(r2, r7) + mul32x32_64(r3, r6 ) + mul32x32_64(r4, r5 * 2); d6 = r6 * 19; d7 = r7 * 2 * 19; d8 = r8 * 19; d9 = r9 * 2 * 19; m0 += (mul32x32_64(d9, r1 ) + mul32x32_64(d8, r2 ) + mul32x32_64(d7, r3 ) + mul32x32_64(d6, r4 * 2) + mul32x32_64(r5, r5 * 2 * 19)); m1 += (mul32x32_64(d9, r2 / 2) + mul32x32_64(d8, r3 ) + mul32x32_64(d7, r4 ) + mul32x32_64(d6, r5 * 2)); m2 += (mul32x32_64(d9, r3 ) + mul32x32_64(d8, r4 * 2) + mul32x32_64(d7, r5 * 2) + mul32x32_64(d6, r6 )); m3 += (mul32x32_64(d9, r4 ) + mul32x32_64(d8, r5 * 2) + mul32x32_64(d7, r6 )); m4 += (mul32x32_64(d9, r5 * 2) + mul32x32_64(d8, r6 * 2) + mul32x32_64(d7, r7 )); m5 += (mul32x32_64(d9, r6 ) + mul32x32_64(d8, r7 * 2)); m6 += (mul32x32_64(d9, r7 * 2) + mul32x32_64(d8, r8 )); m7 += (mul32x32_64(d9, r8 )); m8 += (mul32x32_64(d9, r9 )); r0 = (uint32_t)m0 & reduce_mask_26; c = (m0 >> 26); m1 += c; r1 = (uint32_t)m1 & reduce_mask_25; c = (m1 >> 25); m2 += c; r2 = (uint32_t)m2 & reduce_mask_26; c = (m2 >> 26); m3 += c; r3 = (uint32_t)m3 & reduce_mask_25; c = (m3 >> 25); m4 += c; r4 = (uint32_t)m4 & reduce_mask_26; c = (m4 >> 26); m5 += c; r5 = (uint32_t)m5 & reduce_mask_25; c = (m5 >> 25); m6 += c; r6 = (uint32_t)m6 & reduce_mask_26; c = (m6 >> 26); m7 += c; r7 = (uint32_t)m7 & reduce_mask_25; c = (m7 >> 25); m8 += c; r8 = (uint32_t)m8 & reduce_mask_26; c = (m8 >> 26); m9 += c; r9 = (uint32_t)m9 & reduce_mask_25; p = (uint32_t)(m9 >> 25); m0 = r0 + mul32x32_64(p,19); r0 = (uint32_t)m0 & reduce_mask_26; p = (uint32_t)(m0 >> 26); r1 += p; } while (--count); out[0] = r0; out[1] = r1; out[2] = r2; out[3] = r3; out[4] = r4; out[5] = r5; out[6] = r6; out[7] = r7; out[8] = r8; out[9] = r9; } /* Take a little-endian, 32-byte number and expand it into polynomial form */ static void curve25519_expand(bignum25519 out, const unsigned char in[32]) { static const union { uint8_t b[2]; uint16_t s; } endian_check = {{1,0}}; uint32_t x0,x1,x2,x3,x4,x5,x6,x7; if (endian_check.s == 1) { x0 = *(uint32_t *)(in + 0); x1 = *(uint32_t *)(in + 4); x2 = *(uint32_t *)(in + 8); x3 = *(uint32_t *)(in + 12); x4 = *(uint32_t *)(in + 16); x5 = *(uint32_t *)(in + 20); x6 = *(uint32_t *)(in + 24); x7 = *(uint32_t *)(in + 28); } else { #define F(s) \ ((((uint32_t)in[s + 0]) ) | \ (((uint32_t)in[s + 1]) << 8) | \ (((uint32_t)in[s + 2]) << 16) | \ (((uint32_t)in[s + 3]) << 24)) x0 = F(0); x1 = F(4); x2 = F(8); x3 = F(12); x4 = F(16); x5 = F(20); x6 = F(24); x7 = F(28); #undef F } out[0] = ( x0 ) & 0x3ffffff; out[1] = ((((uint64_t)x1 << 32) | x0) >> 26) & 0x1ffffff; out[2] = ((((uint64_t)x2 << 32) | x1) >> 19) & 0x3ffffff; out[3] = ((((uint64_t)x3 << 32) | x2) >> 13) & 0x1ffffff; out[4] = (( x3) >> 6) & 0x3ffffff; out[5] = ( x4 ) & 0x1ffffff; out[6] = ((((uint64_t)x5 << 32) | x4) >> 25) & 0x3ffffff; out[7] = ((((uint64_t)x6 << 32) | x5) >> 19) & 0x1ffffff; out[8] = ((((uint64_t)x7 << 32) | x6) >> 12) & 0x3ffffff; out[9] = (( x7) >> 6) & 0x1ffffff; } /* Take a fully reduced polynomial form number and contract it into a * little-endian, 32-byte array */ static void curve25519_contract(unsigned char out[32], const bignum25519 in) { bignum25519 f; curve25519_copy(f, in); #define carry_pass() \ f[1] += f[0] >> 26; f[0] &= reduce_mask_26; \ f[2] += f[1] >> 25; f[1] &= reduce_mask_25; \ f[3] += f[2] >> 26; f[2] &= reduce_mask_26; \ f[4] += f[3] >> 25; f[3] &= reduce_mask_25; \ f[5] += f[4] >> 26; f[4] &= reduce_mask_26; \ f[6] += f[5] >> 25; f[5] &= reduce_mask_25; \ f[7] += f[6] >> 26; f[6] &= reduce_mask_26; \ f[8] += f[7] >> 25; f[7] &= reduce_mask_25; \ f[9] += f[8] >> 26; f[8] &= reduce_mask_26; #define carry_pass_full() \ carry_pass() \ f[0] += 19 * (f[9] >> 25); f[9] &= reduce_mask_25; #define carry_pass_final() \ carry_pass() \ f[9] &= reduce_mask_25; carry_pass_full() carry_pass_full() /* now t is between 0 and 2^255-1, properly carried. */ /* case 1: between 0 and 2^255-20. case 2: between 2^255-19 and 2^255-1. */ f[0] += 19; carry_pass_full() /* now between 19 and 2^255-1 in both cases, and offset by 19. */ f[0] += (reduce_mask_26 + 1) - 19; f[1] += (reduce_mask_25 + 1) - 1; f[2] += (reduce_mask_26 + 1) - 1; f[3] += (reduce_mask_25 + 1) - 1; f[4] += (reduce_mask_26 + 1) - 1; f[5] += (reduce_mask_25 + 1) - 1; f[6] += (reduce_mask_26 + 1) - 1; f[7] += (reduce_mask_25 + 1) - 1; f[8] += (reduce_mask_26 + 1) - 1; f[9] += (reduce_mask_25 + 1) - 1; /* now between 2^255 and 2^256-20, and offset by 2^255. */ carry_pass_final() #undef carry_pass #undef carry_full #undef carry_final f[1] <<= 2; f[2] <<= 3; f[3] <<= 5; f[4] <<= 6; f[6] <<= 1; f[7] <<= 3; f[8] <<= 4; f[9] <<= 6; #define F(i, s) \ out[s+0] |= (unsigned char )(f[i] & 0xff); \ out[s+1] = (unsigned char )((f[i] >> 8) & 0xff); \ out[s+2] = (unsigned char )((f[i] >> 16) & 0xff); \ out[s+3] = (unsigned char )((f[i] >> 24) & 0xff); out[0] = 0; out[16] = 0; F(0,0); F(1,3); F(2,6); F(3,9); F(4,12); F(5,16); F(6,19); F(7,22); F(8,25); F(9,28); #undef F } /* out = (flag) ? in : out */ DONNA_INLINE static void curve25519_move_conditional_bytes(uint8_t out[96], const uint8_t in[96], uint32_t flag) { const uint32_t nb = flag - 1, b = ~nb; const uint32_t *inl = (const uint32_t *)in; uint32_t *outl = (uint32_t *)out; outl[0] = (outl[0] & nb) | (inl[0] & b); outl[1] = (outl[1] & nb) | (inl[1] & b); outl[2] = (outl[2] & nb) | (inl[2] & b); outl[3] = (outl[3] & nb) | (inl[3] & b); outl[4] = (outl[4] & nb) | (inl[4] & b); outl[5] = (outl[5] & nb) | (inl[5] & b); outl[6] = (outl[6] & nb) | (inl[6] & b); outl[7] = (outl[7] & nb) | (inl[7] & b); outl[8] = (outl[8] & nb) | (inl[8] & b); outl[9] = (outl[9] & nb) | (inl[9] & b); outl[10] = (outl[10] & nb) | (inl[10] & b); outl[11] = (outl[11] & nb) | (inl[11] & b); outl[12] = (outl[12] & nb) | (inl[12] & b); outl[13] = (outl[13] & nb) | (inl[13] & b); outl[14] = (outl[14] & nb) | (inl[14] & b); outl[15] = (outl[15] & nb) | (inl[15] & b); outl[16] = (outl[16] & nb) | (inl[16] & b); outl[17] = (outl[17] & nb) | (inl[17] & b); outl[18] = (outl[18] & nb) | (inl[18] & b); outl[19] = (outl[19] & nb) | (inl[19] & b); outl[20] = (outl[20] & nb) | (inl[20] & b); outl[21] = (outl[21] & nb) | (inl[21] & b); outl[22] = (outl[22] & nb) | (inl[22] & b); outl[23] = (outl[23] & nb) | (inl[23] & b); } /* if (iswap) swap(a, b) */ DONNA_INLINE static void curve25519_swap_conditional(bignum25519 a, bignum25519 b, uint32_t iswap) { const uint32_t swap = (uint32_t)(-(int32_t)iswap); uint32_t x0,x1,x2,x3,x4,x5,x6,x7,x8,x9; x0 = swap & (a[0] ^ b[0]); a[0] ^= x0; b[0] ^= x0; x1 = swap & (a[1] ^ b[1]); a[1] ^= x1; b[1] ^= x1; x2 = swap & (a[2] ^ b[2]); a[2] ^= x2; b[2] ^= x2; x3 = swap & (a[3] ^ b[3]); a[3] ^= x3; b[3] ^= x3; x4 = swap & (a[4] ^ b[4]); a[4] ^= x4; b[4] ^= x4; x5 = swap & (a[5] ^ b[5]); a[5] ^= x5; b[5] ^= x5; x6 = swap & (a[6] ^ b[6]); a[6] ^= x6; b[6] ^= x6; x7 = swap & (a[7] ^ b[7]); a[7] ^= x7; b[7] ^= x7; x8 = swap & (a[8] ^ b[8]); a[8] ^= x8; b[8] ^= x8; x9 = swap & (a[9] ^ b[9]); a[9] ^= x9; b[9] ^= x9; } tor-0.2.7.6/src/ext/ed25519/donna/modm-donna-64bit.h0000644000175000017500000003240212621363246016233 00000000000000/* Public domain by Andrew M. */ /* Arithmetic modulo the group order n = 2^252 + 27742317777372353535851937790883648493 = 7237005577332262213973186563042994240857116359379907606001950938285454250989 k = 32 b = 1 << 8 = 256 m = 2^252 + 27742317777372353535851937790883648493 = 0x1000000000000000000000000000000014def9dea2f79cd65812631a5cf5d3ed mu = floor( b^(k*2) / m ) = 0xfffffffffffffffffffffffffffffffeb2106215d086329a7ed9ce5a30a2c131b */ #define bignum256modm_bits_per_limb 56 #define bignum256modm_limb_size 5 typedef uint64_t bignum256modm_element_t; typedef bignum256modm_element_t bignum256modm[5]; static const bignum256modm modm_m = { 0x12631a5cf5d3ed, 0xf9dea2f79cd658, 0x000000000014de, 0x00000000000000, 0x00000010000000 }; static const bignum256modm modm_mu = { 0x9ce5a30a2c131b, 0x215d086329a7ed, 0xffffffffeb2106, 0xffffffffffffff, 0x00000fffffffff }; static bignum256modm_element_t lt_modm(bignum256modm_element_t a, bignum256modm_element_t b) { return (a - b) >> 63; } static void reduce256_modm(bignum256modm r) { bignum256modm t; bignum256modm_element_t b = 0, pb, mask; /* t = r - m */ pb = 0; pb += modm_m[0]; b = lt_modm(r[0], pb); t[0] = (r[0] - pb + (b << 56)); pb = b; pb += modm_m[1]; b = lt_modm(r[1], pb); t[1] = (r[1] - pb + (b << 56)); pb = b; pb += modm_m[2]; b = lt_modm(r[2], pb); t[2] = (r[2] - pb + (b << 56)); pb = b; pb += modm_m[3]; b = lt_modm(r[3], pb); t[3] = (r[3] - pb + (b << 56)); pb = b; pb += modm_m[4]; b = lt_modm(r[4], pb); t[4] = (r[4] - pb + (b << 32)); /* keep r if r was smaller than m */ mask = b - 1; r[0] ^= mask & (r[0] ^ t[0]); r[1] ^= mask & (r[1] ^ t[1]); r[2] ^= mask & (r[2] ^ t[2]); r[3] ^= mask & (r[3] ^ t[3]); r[4] ^= mask & (r[4] ^ t[4]); } static void barrett_reduce256_modm(bignum256modm r, const bignum256modm q1, const bignum256modm r1) { bignum256modm q3, r2; uint128_t c, mul; bignum256modm_element_t f, b, pb; /* q1 = x >> 248 = 264 bits = 5 56 bit elements q2 = mu * q1 q3 = (q2 / 256(32+1)) = q2 / (2^8)^(32+1) = q2 >> 264 */ mul64x64_128(c, modm_mu[0], q1[3]) mul64x64_128(mul, modm_mu[3], q1[0]) add128(c, mul) mul64x64_128(mul, modm_mu[1], q1[2]) add128(c, mul) mul64x64_128(mul, modm_mu[2], q1[1]) add128(c, mul) shr128(f, c, 56); mul64x64_128(c, modm_mu[0], q1[4]) add128_64(c, f) mul64x64_128(mul, modm_mu[4], q1[0]) add128(c, mul) mul64x64_128(mul, modm_mu[3], q1[1]) add128(c, mul) mul64x64_128(mul, modm_mu[1], q1[3]) add128(c, mul) mul64x64_128(mul, modm_mu[2], q1[2]) add128(c, mul) f = lo128(c); q3[0] = (f >> 40) & 0xffff; shr128(f, c, 56); mul64x64_128(c, modm_mu[4], q1[1]) add128_64(c, f) mul64x64_128(mul, modm_mu[1], q1[4]) add128(c, mul) mul64x64_128(mul, modm_mu[2], q1[3]) add128(c, mul) mul64x64_128(mul, modm_mu[3], q1[2]) add128(c, mul) f = lo128(c); q3[0] |= (f << 16) & 0xffffffffffffff; q3[1] = (f >> 40) & 0xffff; shr128(f, c, 56); mul64x64_128(c, modm_mu[4], q1[2]) add128_64(c, f) mul64x64_128(mul, modm_mu[2], q1[4]) add128(c, mul) mul64x64_128(mul, modm_mu[3], q1[3]) add128(c, mul) f = lo128(c); q3[1] |= (f << 16) & 0xffffffffffffff; q3[2] = (f >> 40) & 0xffff; shr128(f, c, 56); mul64x64_128(c, modm_mu[4], q1[3]) add128_64(c, f) mul64x64_128(mul, modm_mu[3], q1[4]) add128(c, mul) f = lo128(c); q3[2] |= (f << 16) & 0xffffffffffffff; q3[3] = (f >> 40) & 0xffff; shr128(f, c, 56); mul64x64_128(c, modm_mu[4], q1[4]) add128_64(c, f) f = lo128(c); q3[3] |= (f << 16) & 0xffffffffffffff; q3[4] = (f >> 40) & 0xffff; shr128(f, c, 56); q3[4] |= (f << 16); mul64x64_128(c, modm_m[0], q3[0]) r2[0] = lo128(c) & 0xffffffffffffff; shr128(f, c, 56); mul64x64_128(c, modm_m[0], q3[1]) add128_64(c, f) mul64x64_128(mul, modm_m[1], q3[0]) add128(c, mul) r2[1] = lo128(c) & 0xffffffffffffff; shr128(f, c, 56); mul64x64_128(c, modm_m[0], q3[2]) add128_64(c, f) mul64x64_128(mul, modm_m[2], q3[0]) add128(c, mul) mul64x64_128(mul, modm_m[1], q3[1]) add128(c, mul) r2[2] = lo128(c) & 0xffffffffffffff; shr128(f, c, 56); mul64x64_128(c, modm_m[0], q3[3]) add128_64(c, f) mul64x64_128(mul, modm_m[3], q3[0]) add128(c, mul) mul64x64_128(mul, modm_m[1], q3[2]) add128(c, mul) mul64x64_128(mul, modm_m[2], q3[1]) add128(c, mul) r2[3] = lo128(c) & 0xffffffffffffff; shr128(f, c, 56); mul64x64_128(c, modm_m[0], q3[4]) add128_64(c, f) mul64x64_128(mul, modm_m[4], q3[0]) add128(c, mul) mul64x64_128(mul, modm_m[3], q3[1]) add128(c, mul) mul64x64_128(mul, modm_m[1], q3[3]) add128(c, mul) mul64x64_128(mul, modm_m[2], q3[2]) add128(c, mul) r2[4] = lo128(c) & 0x0000ffffffffff; pb = 0; pb += r2[0]; b = lt_modm(r1[0], pb); r[0] = (r1[0] - pb + (b << 56)); pb = b; pb += r2[1]; b = lt_modm(r1[1], pb); r[1] = (r1[1] - pb + (b << 56)); pb = b; pb += r2[2]; b = lt_modm(r1[2], pb); r[2] = (r1[2] - pb + (b << 56)); pb = b; pb += r2[3]; b = lt_modm(r1[3], pb); r[3] = (r1[3] - pb + (b << 56)); pb = b; pb += r2[4]; b = lt_modm(r1[4], pb); r[4] = (r1[4] - pb + (b << 40)); reduce256_modm(r); reduce256_modm(r); } static void add256_modm(bignum256modm r, const bignum256modm x, const bignum256modm y) { bignum256modm_element_t c; c = x[0] + y[0]; r[0] = c & 0xffffffffffffff; c >>= 56; c += x[1] + y[1]; r[1] = c & 0xffffffffffffff; c >>= 56; c += x[2] + y[2]; r[2] = c & 0xffffffffffffff; c >>= 56; c += x[3] + y[3]; r[3] = c & 0xffffffffffffff; c >>= 56; c += x[4] + y[4]; r[4] = c; reduce256_modm(r); } static void mul256_modm(bignum256modm r, const bignum256modm x, const bignum256modm y) { bignum256modm q1, r1; uint128_t c, mul; bignum256modm_element_t f; mul64x64_128(c, x[0], y[0]) f = lo128(c); r1[0] = f & 0xffffffffffffff; shr128(f, c, 56); mul64x64_128(c, x[0], y[1]) add128_64(c, f) mul64x64_128(mul, x[1], y[0]) add128(c, mul) f = lo128(c); r1[1] = f & 0xffffffffffffff; shr128(f, c, 56); mul64x64_128(c, x[0], y[2]) add128_64(c, f) mul64x64_128(mul, x[2], y[0]) add128(c, mul) mul64x64_128(mul, x[1], y[1]) add128(c, mul) f = lo128(c); r1[2] = f & 0xffffffffffffff; shr128(f, c, 56); mul64x64_128(c, x[0], y[3]) add128_64(c, f) mul64x64_128(mul, x[3], y[0]) add128(c, mul) mul64x64_128(mul, x[1], y[2]) add128(c, mul) mul64x64_128(mul, x[2], y[1]) add128(c, mul) f = lo128(c); r1[3] = f & 0xffffffffffffff; shr128(f, c, 56); mul64x64_128(c, x[0], y[4]) add128_64(c, f) mul64x64_128(mul, x[4], y[0]) add128(c, mul) mul64x64_128(mul, x[3], y[1]) add128(c, mul) mul64x64_128(mul, x[1], y[3]) add128(c, mul) mul64x64_128(mul, x[2], y[2]) add128(c, mul) f = lo128(c); r1[4] = f & 0x0000ffffffffff; q1[0] = (f >> 24) & 0xffffffff; shr128(f, c, 56); mul64x64_128(c, x[4], y[1]) add128_64(c, f) mul64x64_128(mul, x[1], y[4]) add128(c, mul) mul64x64_128(mul, x[2], y[3]) add128(c, mul) mul64x64_128(mul, x[3], y[2]) add128(c, mul) f = lo128(c); q1[0] |= (f << 32) & 0xffffffffffffff; q1[1] = (f >> 24) & 0xffffffff; shr128(f, c, 56); mul64x64_128(c, x[4], y[2]) add128_64(c, f) mul64x64_128(mul, x[2], y[4]) add128(c, mul) mul64x64_128(mul, x[3], y[3]) add128(c, mul) f = lo128(c); q1[1] |= (f << 32) & 0xffffffffffffff; q1[2] = (f >> 24) & 0xffffffff; shr128(f, c, 56); mul64x64_128(c, x[4], y[3]) add128_64(c, f) mul64x64_128(mul, x[3], y[4]) add128(c, mul) f = lo128(c); q1[2] |= (f << 32) & 0xffffffffffffff; q1[3] = (f >> 24) & 0xffffffff; shr128(f, c, 56); mul64x64_128(c, x[4], y[4]) add128_64(c, f) f = lo128(c); q1[3] |= (f << 32) & 0xffffffffffffff; q1[4] = (f >> 24) & 0xffffffff; shr128(f, c, 56); q1[4] |= (f << 32); barrett_reduce256_modm(r, q1, r1); } static void expand256_modm(bignum256modm out, const unsigned char *in, size_t len) { unsigned char work[64] = {0}; bignum256modm_element_t x[16]; bignum256modm q1; memcpy(work, in, len); x[0] = U8TO64_LE(work + 0); x[1] = U8TO64_LE(work + 8); x[2] = U8TO64_LE(work + 16); x[3] = U8TO64_LE(work + 24); x[4] = U8TO64_LE(work + 32); x[5] = U8TO64_LE(work + 40); x[6] = U8TO64_LE(work + 48); x[7] = U8TO64_LE(work + 56); /* r1 = (x mod 256^(32+1)) = x mod (2^8)(31+1) = x & ((1 << 264) - 1) */ out[0] = ( x[0]) & 0xffffffffffffff; out[1] = ((x[ 0] >> 56) | (x[ 1] << 8)) & 0xffffffffffffff; out[2] = ((x[ 1] >> 48) | (x[ 2] << 16)) & 0xffffffffffffff; out[3] = ((x[ 2] >> 40) | (x[ 3] << 24)) & 0xffffffffffffff; out[4] = ((x[ 3] >> 32) | (x[ 4] << 32)) & 0x0000ffffffffff; /* under 252 bits, no need to reduce */ if (len < 32) return; /* q1 = x >> 248 = 264 bits */ q1[0] = ((x[ 3] >> 56) | (x[ 4] << 8)) & 0xffffffffffffff; q1[1] = ((x[ 4] >> 48) | (x[ 5] << 16)) & 0xffffffffffffff; q1[2] = ((x[ 5] >> 40) | (x[ 6] << 24)) & 0xffffffffffffff; q1[3] = ((x[ 6] >> 32) | (x[ 7] << 32)) & 0xffffffffffffff; q1[4] = ((x[ 7] >> 24) ); barrett_reduce256_modm(out, q1, out); } static void expand_raw256_modm(bignum256modm out, const unsigned char in[32]) { bignum256modm_element_t x[4]; x[0] = U8TO64_LE(in + 0); x[1] = U8TO64_LE(in + 8); x[2] = U8TO64_LE(in + 16); x[3] = U8TO64_LE(in + 24); out[0] = ( x[0]) & 0xffffffffffffff; out[1] = ((x[ 0] >> 56) | (x[ 1] << 8)) & 0xffffffffffffff; out[2] = ((x[ 1] >> 48) | (x[ 2] << 16)) & 0xffffffffffffff; out[3] = ((x[ 2] >> 40) | (x[ 3] << 24)) & 0xffffffffffffff; out[4] = ((x[ 3] >> 32) ) & 0x000000ffffffff; } static void contract256_modm(unsigned char out[32], const bignum256modm in) { U64TO8_LE(out + 0, (in[0] ) | (in[1] << 56)); U64TO8_LE(out + 8, (in[1] >> 8) | (in[2] << 48)); U64TO8_LE(out + 16, (in[2] >> 16) | (in[3] << 40)); U64TO8_LE(out + 24, (in[3] >> 24) | (in[4] << 32)); } static void contract256_window4_modm(signed char r[64], const bignum256modm in) { char carry; signed char *quads = r; bignum256modm_element_t i, j, v, m; for (i = 0; i < 5; i++) { v = in[i]; m = (i == 4) ? 8 : 14; for (j = 0; j < m; j++) { *quads++ = (v & 15); v >>= 4; } } /* making it signed */ carry = 0; for(i = 0; i < 63; i++) { r[i] += carry; r[i+1] += (r[i] >> 4); r[i] &= 15; carry = (r[i] >> 3); r[i] -= (carry << 4); } r[63] += carry; } static void contract256_slidingwindow_modm(signed char r[256], const bignum256modm s, int windowsize) { int i,j,k,b; int m = (1 << (windowsize - 1)) - 1; const int soplen = 256; signed char *bits = r; bignum256modm_element_t v; /* first put the binary expansion into r */ for (i = 0; i < 4; i++) { v = s[i]; for (j = 0; j < 56; j++, v >>= 1) *bits++ = (v & 1); } v = s[4]; for (j = 0; j < 32; j++, v >>= 1) *bits++ = (v & 1); /* Making it sliding window */ for (j = 0; j < soplen; j++) { if (!r[j]) continue; for (b = 1; (b < (soplen - j)) && (b <= 6); b++) { /* XXX Tor: coverity scan says that r[j+b] can * overflow, but that's not possible: b < (soplen-j) * guarantees that b + j < soplen, so b+j < 256, * so the index doesn't overflow. */ if ((r[j] + (r[j + b] << b)) <= m) { r[j] += r[j + b] << b; r[j + b] = 0; } else if ((r[j] - (r[j + b] << b)) >= -m) { r[j] -= r[j + b] << b; for (k = j + b; k < soplen; k++) { if (!r[k]) { r[k] = 1; break; } r[k] = 0; } } else if (r[j + b]) { break; } } } } /* helpers for batch verifcation, are allowed to be vartime */ /* out = a - b, a must be larger than b */ static void sub256_modm_batch(bignum256modm out, const bignum256modm a, const bignum256modm b, size_t limbsize) { size_t i = 0; bignum256modm_element_t carry = 0; switch (limbsize) { case 4: out[i] = (a[i] - b[i]) ; carry = (out[i] >> 63); out[i] &= 0xffffffffffffff; i++; case 3: out[i] = (a[i] - b[i]) - carry; carry = (out[i] >> 63); out[i] &= 0xffffffffffffff; i++; case 2: out[i] = (a[i] - b[i]) - carry; carry = (out[i] >> 63); out[i] &= 0xffffffffffffff; i++; case 1: out[i] = (a[i] - b[i]) - carry; carry = (out[i] >> 63); out[i] &= 0xffffffffffffff; i++; case 0: default: out[i] = (a[i] - b[i]) - carry; } } /* is a < b */ static int lt256_modm_batch(const bignum256modm a, const bignum256modm b, size_t limbsize) { size_t i = 0; bignum256modm_element_t t, carry = 0; switch (limbsize) { case 4: t = (a[i] - b[i]) ; carry = (t >> 63); i++; case 3: t = (a[i] - b[i]) - carry; carry = (t >> 63); i++; case 2: t = (a[i] - b[i]) - carry; carry = (t >> 63); i++; case 1: t = (a[i] - b[i]) - carry; carry = (t >> 63); i++; case 0: t = (a[i] - b[i]) - carry; carry = (t >> 63); } return (int)carry; } /* is a <= b */ static int lte256_modm_batch(const bignum256modm a, const bignum256modm b, size_t limbsize) { size_t i = 0; bignum256modm_element_t t, carry = 0; switch (limbsize) { case 4: t = (b[i] - a[i]) ; carry = (t >> 63); i++; case 3: t = (b[i] - a[i]) - carry; carry = (t >> 63); i++; case 2: t = (b[i] - a[i]) - carry; carry = (t >> 63); i++; case 1: t = (b[i] - a[i]) - carry; carry = (t >> 63); i++; case 0: t = (b[i] - a[i]) - carry; carry = (t >> 63); } return (int)!carry; } /* is a == 0 */ static int iszero256_modm_batch(const bignum256modm a) { size_t i; for (i = 0; i < 5; i++) if (a[i]) return 0; return 1; } /* is a == 1 */ static int isone256_modm_batch(const bignum256modm a) { size_t i; for (i = 0; i < 5; i++) if (a[i] != ((i) ? 0 : 1)) return 0; return 1; } /* can a fit in to (at most) 128 bits */ static int isatmost128bits256_modm_batch(const bignum256modm a) { uint64_t mask = ((a[4] ) | /* 32 */ (a[3] ) | /* 88 */ (a[2] & 0xffffffffff0000)); return (mask == 0); } tor-0.2.7.6/src/ext/ed25519/donna/test-internals.c0000644000175000017500000001436312621363246016231 00000000000000/* Tor: Removed, file is inclued in ed25519.c instead. */ /* #include */ /* #include "ed25519-donna.h" */ static int test_adds(void) { #if defined(HAVE_UINT128) && !defined(ED25519_SSE2) /* largest result for each limb from a mult or square: all elements except r1 reduced, r1 overflowed as far as possible */ static const bignum25519 max_bignum = { 0x7ffffffffffff,0x8000000001230,0x7ffffffffffff,0x7ffffffffffff,0x7ffffffffffff }; #if 0 /* what max_bignum should fully reduce to */ static const unsigned char max_bignum_raw[32] = { 0x12,0x00,0x00,0x00,0x00,0x00,0x88,0x91,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }; #endif /* (max_bignum + max_bignum)^2 */ static const unsigned char max_bignum2_squared_raw[32] = { 0x10,0x05,0x00,0x00,0x00,0x00,0x80,0xdc,0x51,0x00,0x00,0x00,0x00,0x61,0xed,0x4a, 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, }; /* ((max_bignum + max_bignum) + max_bignum)^2 */ static const unsigned char max_bignum3_squared_raw[32] = { 0x64,0x0b,0x00,0x00,0x00,0x00,0x20,0x30,0xb8,0x00,0x00,0x00,0x40,0x1a,0x96,0xe8, 0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, }; #else /* largest result for each limb from a mult or square: all elements except r1 reduced, r1 overflowed as far as possible */ static const bignum25519 ALIGN(16) max_bignum = { 0x3ffffff,0x2000300,0x3ffffff,0x1ffffff,0x3ffffff, 0x1ffffff,0x3ffffff,0x1ffffff,0x3ffffff,0x1ffffff }; /* what max_bignum should fully reduce to */ static const unsigned char max_bignum2_squared_raw[32] = { 0x10,0x05,0x00,0x40,0xc2,0x06,0x40,0x80,0x41,0x02,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, }; /* (max_bignum * max_bignum) */ static const unsigned char max_bignum3_squared_raw[32] = { 0x64,0x0b,0x00,0x10,0x35,0x0f,0x90,0x60,0x13,0x05,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, }; #endif unsigned char result[32]; /* static const bignum25519 ALIGN(16) zero = {0}; */ bignum25519 ALIGN(16) a, b /* , c */; /* size_t i; */ /* a = (max_bignum + max_bignum) */ curve25519_add(a, max_bignum, max_bignum); /* b = ((max_bignum + max_bignum) * (max_bignum + max_bignum)) */ curve25519_mul(b, a, a); curve25519_contract(result, b); if (memcmp(result, max_bignum2_squared_raw, 32) != 0) return -1; curve25519_square(b, a); curve25519_contract(result, b); if (memcmp(result, max_bignum2_squared_raw, 32) != 0) return -1; /* b = (max_bignum + max_bignum + max_bignum) */ curve25519_add_after_basic(b, a, max_bignum); /* a = ((max_bignum + max_bignum + max_bignum) * (max_bignum + max_bignum + max_bignum)) */ curve25519_mul(a, b, b); curve25519_contract(result, a); if (memcmp(result, max_bignum3_squared_raw, 32) != 0) return -1; curve25519_square(a, b); curve25519_contract(result, a); if (memcmp(result, max_bignum3_squared_raw, 32) != 0) return -1; return 0; } static int test_subs(void) { #if defined(HAVE_UINT128) && !defined(ED25519_SSE2) /* largest result for each limb from a mult or square: all elements except r1 reduced, r1 overflowed as far as possible */ static const bignum25519 max_bignum = { 0x7ffffffffffff,0x8000000001230,0x7ffffffffffff,0x7ffffffffffff,0x7ffffffffffff }; /* what max_bignum should fully reduce to */ static const unsigned char max_bignum_raw[32] = { 0x12,0x00,0x00,0x00,0x00,0x00,0x88,0x91,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }; /* (max_bignum * max_bignum) */ static const unsigned char max_bignum_squared_raw[32] = { 0x44,0x01,0x00,0x00,0x00,0x00,0x20,0x77,0x14,0x00,0x00,0x00,0x40,0x58,0xbb,0x52, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00 }; #else /* largest result for each limb from a mult or square: all elements except r1 reduced, r1 overflowed as far as possible */ static const bignum25519 ALIGN(16) max_bignum = { 0x3ffffff,0x2000300,0x3ffffff,0x1ffffff,0x3ffffff, 0x1ffffff,0x3ffffff,0x1ffffff,0x3ffffff,0x1ffffff }; /* what max_bignum should fully reduce to */ static const unsigned char max_bignum_raw[32] = { 0x12,0x00,0x00,0x04,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, }; /* (max_bignum * max_bignum) */ static const unsigned char max_bignum_squared_raw[32] = { 0x44,0x01,0x00,0x90,0xb0,0x01,0x10,0x60,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, }; #endif unsigned char result[32]; static const bignum25519 ALIGN(16) zero = {0}; bignum25519 ALIGN(16) a, b /* , c */; /* size_t i; */ /* a = max_bignum - 0, which expands to 2p + max_bignum - 0 */ curve25519_sub(a, max_bignum, zero); curve25519_contract(result, a); if (memcmp(result, max_bignum_raw, 32) != 0) return -1; /* b = (max_bignum * max_bignum) */ curve25519_mul(b, a, a); curve25519_contract(result, b); if (memcmp(result, max_bignum_squared_raw, 32) != 0) return -1; curve25519_square(b, a); curve25519_contract(result, b); if (memcmp(result, max_bignum_squared_raw, 32) != 0) return -1; /* b = ((a - 0) - 0) */ curve25519_sub_after_basic(b, a, zero); curve25519_contract(result, b); if (memcmp(result, max_bignum_raw, 32) != 0) return -1; /* a = (max_bignum * max_bignum) */ curve25519_mul(a, b, b); curve25519_contract(result, a); if (memcmp(result, max_bignum_squared_raw, 32) != 0) return -1; curve25519_square(a, b); curve25519_contract(result, a); if (memcmp(result, max_bignum_squared_raw, 32) != 0) return -1; return 0; } /* Tor: Removed, tests are invoked as a function instead. */ #if 0 int main() { int ret = 0; int single; single = test_adds(); if (single) printf("test_adds: FAILED\n"); ret |= single; single = test_subs(); if (single) printf("test_subs: FAILED\n"); ret |= single; if (!ret) printf("success\n"); return ret; } #endif /* Tor: Added for initialization self-testing. */ int ed25519_donna_selftest(void) { int ret = 0; ret |= test_adds(); ret |= test_subs(); return (ret == 0) ? 0 : -1; } tor-0.2.7.6/src/ext/ed25519/donna/ed25519-donna-32bit-tables.h0000644000175000017500000002734212621363245017546 00000000000000static const ge25519 ALIGN(16) ge25519_basepoint = { {0x0325d51a,0x018b5823,0x00f6592a,0x0104a92d,0x01a4b31d,0x01d6dc5c,0x027118fe,0x007fd814,0x013cd6e5,0x0085a4db}, {0x02666658,0x01999999,0x00cccccc,0x01333333,0x01999999,0x00666666,0x03333333,0x00cccccc,0x02666666,0x01999999}, {0x00000001,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000,0x00000000}, {0x01b7dda3,0x01a2ace9,0x025eadbb,0x0003ba8a,0x0083c27e,0x00abe37d,0x01274732,0x00ccacdd,0x00fd78b7,0x019e1d7c} }; /* d */ static const bignum25519 ALIGN(16) ge25519_ecd = { 0x035978a3,0x00d37284,0x03156ebd,0x006a0a0e,0x0001c029,0x0179e898,0x03a03cbb,0x01ce7198,0x02e2b6ff,0x01480db3 }; static const bignum25519 ALIGN(16) ge25519_ec2d = { 0x02b2f159,0x01a6e509,0x022add7a,0x00d4141d,0x00038052,0x00f3d130,0x03407977,0x019ce331,0x01c56dff,0x00901b67 }; /* sqrt(-1) */ static const bignum25519 ALIGN(16) ge25519_sqrtneg1 = { 0x020ea0b0,0x0186c9d2,0x008f189d,0x0035697f,0x00bd0c60,0x01fbd7a7,0x02804c9e,0x01e16569,0x0004fc1d,0x00ae0c92 }; static const ge25519_niels ALIGN(16) ge25519_niels_sliding_multiples[32] = { {{0x0340913e,0x000e4175,0x03d673a2,0x002e8a05,0x03f4e67c,0x008f8a09,0x00c21a34,0x004cf4b8,0x01298f81,0x0113f4be},{0x018c3b85,0x0124f1bd,0x01c325f7,0x0037dc60,0x033e4cb7,0x003d42c2,0x01a44c32,0x014ca4e1,0x03a33d4b,0x001f3e74},{0x037aaa68,0x00448161,0x0093d579,0x011e6556,0x009b67a0,0x0143598c,0x01bee5ee,0x00b50b43,0x0289f0c6,0x01bc45ed}}, {{0x00fcd265,0x0047fa29,0x034faacc,0x01ef2e0d,0x00ef4d4f,0x014bd6bd,0x00f98d10,0x014c5026,0x007555bd,0x00aae456},{0x00ee9730,0x016c2a13,0x017155e4,0x01874432,0x00096a10,0x01016732,0x01a8014f,0x011e9823,0x01b9a80f,0x01e85938},{0x01d0d889,0x01a4cfc3,0x034c4295,0x0110e1ae,0x0162508c,0x00f2db4c,0x0072a2c6,0x0098da2e,0x02f12b9b,0x0168a09a}}, {{0x0047d6ba,0x0060b0e9,0x0136eff2,0x008a5939,0x03540053,0x0064a087,0x02788e5c,0x00be7c67,0x033eb1b5,0x005529f9},{0x00a5bb33,0x00af1102,0x01a05442,0x001e3af7,0x02354123,0x00bfec44,0x01f5862d,0x00dd7ba3,0x03146e20,0x00a51733},{0x012a8285,0x00f6fc60,0x023f9797,0x003e85ee,0x009c3820,0x01bda72d,0x01b3858d,0x00d35683,0x0296b3bb,0x010eaaf9}}, {{0x023221b1,0x01cb26aa,0x0074f74d,0x0099ddd1,0x01b28085,0x00192c3a,0x013b27c9,0x00fc13bd,0x01d2e531,0x0075bb75},{0x004ea3bf,0x00973425,0x001a4d63,0x01d59cee,0x01d1c0d4,0x00542e49,0x01294114,0x004fce36,0x029283c9,0x01186fa9},{0x01b8b3a2,0x00db7200,0x00935e30,0x003829f5,0x02cc0d7d,0x0077adf3,0x0220dd2c,0x0014ea53,0x01c6a0f9,0x01ea7eec}}, {{0x039d8064,0x01885f80,0x00337e6d,0x01b7a902,0x02628206,0x015eb044,0x01e30473,0x0191f2d9,0x011fadc9,0x01270169},{0x02a8632f,0x0199e2a9,0x00d8b365,0x017a8de2,0x02994279,0x0086f5b5,0x0119e4e3,0x01eb39d6,0x0338add7,0x00d2e7b4},{0x0045af1b,0x013a2fe4,0x0245e0d6,0x014538ce,0x038bfe0f,0x01d4cf16,0x037e14c9,0x0160d55e,0x0021b008,0x01cf05c8}}, {{0x01864348,0x01d6c092,0x0070262b,0x014bb844,0x00fb5acd,0x008deb95,0x003aaab5,0x00eff474,0x00029d5c,0x0062ad66},{0x02802ade,0x01c02122,0x01c4e5f7,0x00781181,0x039767fb,0x01703406,0x0342388b,0x01f5e227,0x022546d8,0x0109d6ab},{0x016089e9,0x00cb317f,0x00949b05,0x01099417,0x000c7ad2,0x011a8622,0x0088ccda,0x01290886,0x022b53df,0x00f71954}}, {{0x027fbf93,0x01c04ecc,0x01ed6a0d,0x004cdbbb,0x02bbf3af,0x00ad5968,0x01591955,0x0094f3a2,0x02d17602,0x00099e20},{0x02007f6d,0x003088a8,0x03db77ee,0x00d5ade6,0x02fe12ce,0x0107ba07,0x0107097d,0x00482a6f,0x02ec346f,0x008d3f5f},{0x032ea378,0x0028465c,0x028e2a6c,0x018efc6e,0x0090df9a,0x01a7e533,0x039bfc48,0x010c745d,0x03daa097,0x0125ee9b}}, {{0x028ccf0b,0x00f36191,0x021ac081,0x012154c8,0x034e0a6e,0x01b25192,0x00180403,0x01d7eea1,0x00218d05,0x010ed735},{0x03cfeaa0,0x01b300c4,0x008da499,0x0068c4e1,0x0219230a,0x01f2d4d0,0x02defd60,0x00e565b7,0x017f12de,0x018788a4},{0x03d0b516,0x009d8be6,0x03ddcbb3,0x0071b9fe,0x03ace2bd,0x01d64270,0x032d3ec9,0x01084065,0x0210ae4d,0x01447584}}, {{0x0020de87,0x00e19211,0x01b68102,0x00b5ac97,0x022873c0,0x01942d25,0x01271394,0x0102073f,0x02fe2482,0x01c69ff9},{0x010e9d81,0x019dbbe5,0x0089f258,0x006e06b8,0x02951883,0x018f1248,0x019b3237,0x00bc7553,0x024ddb85,0x01b4c964},{0x01c8c854,0x0060ae29,0x01406d8e,0x01cff2f9,0x00cff451,0x01778d0c,0x03ac8c41,0x01552e59,0x036559ee,0x011d1b12}}, {{0x00741147,0x0151b219,0x01092690,0x00e877e6,0x01f4d6bb,0x0072a332,0x01cd3b03,0x00dadff2,0x0097db5e,0x0086598d},{0x01c69a2b,0x01decf1b,0x02c2fa6e,0x013b7c4f,0x037beac8,0x013a16b5,0x028e7bda,0x01f6e8ac,0x01e34fe9,0x01726947},{0x01f10e67,0x003c73de,0x022b7ea2,0x010f32c2,0x03ff776a,0x00142277,0x01d38b88,0x00776138,0x03c60822,0x01201140}}, {{0x0236d175,0x0008748e,0x03c6476d,0x013f4cdc,0x02eed02a,0x00838a47,0x032e7210,0x018bcbb3,0x00858de4,0x01dc7826},{0x00a37fc7,0x0127b40b,0x01957884,0x011d30ad,0x02816683,0x016e0e23,0x00b76be4,0x012db115,0x02516506,0x0154ce62},{0x00451edf,0x00bd749e,0x03997342,0x01cc2c4c,0x00eb6975,0x01a59508,0x03a516cf,0x00c228ef,0x0168ff5a,0x01697b47}}, {{0x00527359,0x01783156,0x03afd75c,0x00ce56dc,0x00e4b970,0x001cabe9,0x029e0f6d,0x0188850c,0x0135fefd,0x00066d80},{0x02150e83,0x01448abf,0x02bb0232,0x012bf259,0x033c8268,0x00711e20,0x03fc148f,0x005e0e70,0x017d8bf9,0x0112b2e2},{0x02134b83,0x001a0517,0x0182c3cc,0x00792182,0x0313d799,0x001a3ed7,0x0344547e,0x01f24a0d,0x03de6ad2,0x00543127}}, {{0x00dca868,0x00618f27,0x015a1709,0x00ddc38a,0x0320fd13,0x0036168d,0x0371ab06,0x01783fc7,0x0391e05f,0x01e29b5d},{0x01471138,0x00fca542,0x00ca31cf,0x01ca7bad,0x0175bfbc,0x01a708ad,0x03bce212,0x01244215,0x0075bb99,0x01acad68},{0x03a0b976,0x01dc12d1,0x011aab17,0x00aba0ba,0x029806cd,0x0142f590,0x018fd8ea,0x01a01545,0x03c4ad55,0x01c971ff}}, {{0x00d098c0,0x000afdc7,0x006cd230,0x01276af3,0x03f905b2,0x0102994c,0x002eb8a4,0x015cfbeb,0x025f855f,0x01335518},{0x01cf99b2,0x0099c574,0x01a69c88,0x00881510,0x01cd4b54,0x0112109f,0x008abdc5,0x0074647a,0x0277cb1f,0x01e53324},{0x02ac5053,0x01b109b0,0x024b095e,0x016997b3,0x02f26bb6,0x00311021,0x00197885,0x01d0a55a,0x03b6fcc8,0x01c020d5}}, {{0x02584a34,0x00e7eee0,0x03257a03,0x011e95a3,0x011ead91,0x00536202,0x00b1ce24,0x008516c6,0x03669d6d,0x004ea4a8},{0x00773f01,0x0019c9ce,0x019f6171,0x01d4afde,0x02e33323,0x01ad29b6,0x02ead1dc,0x01ed51a5,0x01851ad0,0x001bbdfa},{0x00577de5,0x00ddc730,0x038b9952,0x00f281ae,0x01d50390,0x0002e071,0x000780ec,0x010d448d,0x01f8a2af,0x00f0a5b7}}, {{0x031f2541,0x00d34bae,0x0323ff9d,0x003a056d,0x02e25443,0x00a1ad05,0x00d1bee8,0x002f7f8e,0x03007477,0x002a24b1},{0x0114a713,0x01457e76,0x032255d5,0x01cc647f,0x02a4bdef,0x0153d730,0x00118bcf,0x00f755ff,0x013490c7,0x01ea674e},{0x02bda3e8,0x00bb490d,0x00f291ea,0x000abf40,0x01dea321,0x002f9ce0,0x00b2b193,0x00fa54b5,0x0128302f,0x00a19d8b}}, {{0x022ef5bd,0x01638af3,0x038c6f8a,0x01a33a3d,0x039261b2,0x01bb89b8,0x010bcf9d,0x00cf42a9,0x023d6f17,0x01da1bca},{0x00e35b25,0x000d824f,0x0152e9cf,0x00ed935d,0x020b8460,0x01c7b83f,0x00c969e5,0x01a74198,0x0046a9d9,0x00cbc768},{0x01597c6a,0x0144a99b,0x00a57551,0x0018269c,0x023c464c,0x0009b022,0x00ee39e1,0x0114c7f2,0x038a9ad2,0x01584c17}}, {{0x03b0c0d5,0x00b30a39,0x038a6ce4,0x01ded83a,0x01c277a6,0x01010a61,0x0346d3eb,0x018d995e,0x02f2c57c,0x000c286b},{0x0092aed1,0x0125e37b,0x027ca201,0x001a6b6b,0x03290f55,0x0047ba48,0x018d916c,0x01a59062,0x013e35d4,0x0002abb1},{0x003ad2aa,0x007ddcc0,0x00c10f76,0x0001590b,0x002cfca6,0x000ed23e,0x00ee4329,0x00900f04,0x01c24065,0x0082fa70}}, {{0x02025e60,0x003912b8,0x0327041c,0x017e5ee5,0x02c0ecec,0x015a0d1c,0x02b1ce7c,0x0062220b,0x0145067e,0x01a5d931},{0x009673a6,0x00e1f609,0x00927c2a,0x016faa37,0x01650ef0,0x016f63b5,0x03cd40e1,0x003bc38f,0x0361f0ac,0x01d42acc},{0x02f81037,0x008ca0e8,0x017e23d1,0x011debfe,0x01bcbb68,0x002e2563,0x03e8add6,0x000816e5,0x03fb7075,0x0153e5ac}}, {{0x02b11ecd,0x016bf185,0x008f22ef,0x00e7d2bb,0x0225d92e,0x00ece785,0x00508873,0x017e16f5,0x01fbe85d,0x01e39a0e},{0x01669279,0x017c810a,0x024941f5,0x0023ebeb,0x00eb7688,0x005760f1,0x02ca4146,0x0073cde7,0x0052bb75,0x00f5ffa7},{0x03b8856b,0x00cb7dcd,0x02f14e06,0x001820d0,0x01d74175,0x00e59e22,0x03fba550,0x00484641,0x03350088,0x01c3c9a3}}, {{0x00dcf355,0x0104481c,0x0022e464,0x01f73fe7,0x00e03325,0x0152b698,0x02ef769a,0x00973663,0x00039b8c,0x0101395b},{0x01805f47,0x019160ec,0x03832cd0,0x008b06eb,0x03d4d717,0x004cb006,0x03a75b8f,0x013b3d30,0x01cfad88,0x01f034d1},{0x0078338a,0x01c7d2e3,0x02bc2b23,0x018b3f05,0x0280d9aa,0x005f3d44,0x0220a95a,0x00eeeb97,0x0362aaec,0x00835d51}}, {{0x01b9f543,0x013fac4d,0x02ad93ae,0x018ef464,0x0212cdf7,0x01138ba9,0x011583ab,0x019c3d26,0x028790b4,0x00e2e2b6},{0x033bb758,0x01f0dbf1,0x03734bd1,0x0129b1e5,0x02b3950e,0x003bc922,0x01a53ec8,0x018c5532,0x006f3cee,0x00ae3c79},{0x0351f95d,0x0012a737,0x03d596b8,0x017658fe,0x00ace54a,0x008b66da,0x0036c599,0x012a63a2,0x032ceba1,0x00126bac}}, {{0x03dcfe7e,0x019f4f18,0x01c81aee,0x0044bc2b,0x00827165,0x014f7c13,0x03b430f0,0x00bf96cc,0x020c8d62,0x01471997},{0x01fc7931,0x001f42dd,0x00ba754a,0x005bd339,0x003fbe49,0x016b3930,0x012a159c,0x009f83b0,0x03530f67,0x01e57b85},{0x02ecbd81,0x0096c294,0x01fce4a9,0x017701a5,0x0175047d,0x00ee4a31,0x012686e5,0x008efcd4,0x0349dc54,0x01b3466f}}, {{0x02179ca3,0x01d86414,0x03f0afd0,0x00305964,0x015c7428,0x0099711e,0x015d5442,0x00c71014,0x01b40b2e,0x01d483cf},{0x01afc386,0x01984859,0x036203ff,0x0045c6a8,0x0020a8aa,0x00990baa,0x03313f10,0x007ceede,0x027429e4,0x017806ce},{0x039357a1,0x0142f8f4,0x0294a7b6,0x00eaccf4,0x0259edb3,0x01311e6e,0x004d326f,0x0130c346,0x01ccef3c,0x01c424b2}}, {{0x0364918c,0x00148fc0,0x01638a7b,0x01a1fd5b,0x028ad013,0x0081e5a4,0x01a54f33,0x0174e101,0x003d0257,0x003a856c},{0x00051dcf,0x00f62b1d,0x0143d0ad,0x0042adbd,0x000fda90,0x01743ceb,0x0173e5e4,0x017bc749,0x03b7137a,0x0105ce96},{0x00f9218a,0x015b8c7c,0x00e102f8,0x0158d7e2,0x0169a5b8,0x00b2f176,0x018b347a,0x014cfef2,0x0214a4e3,0x017f1595}}, {{0x006d7ae5,0x0195c371,0x0391e26d,0x0062a7c6,0x003f42ab,0x010dad86,0x024f8198,0x01542b2a,0x0014c454,0x0189c471},{0x0390988e,0x00b8799d,0x02e44912,0x0078e2e6,0x00075654,0x01923eed,0x0040cd72,0x00a37c76,0x0009d466,0x00c8531d},{0x02651770,0x00609d01,0x0286c265,0x0134513c,0x00ee9281,0x005d223c,0x035c760c,0x00679b36,0x0073ecb8,0x016faa50}}, {{0x02c89be4,0x016fc244,0x02f38c83,0x018beb72,0x02b3ce2c,0x0097b065,0x034f017b,0x01dd957f,0x00148f61,0x00eab357},{0x0343d2f8,0x003398fc,0x011e368e,0x00782a1f,0x00019eea,0x00117b6f,0x0128d0d1,0x01a5e6bb,0x01944f1b,0x012b41e1},{0x03318301,0x018ecd30,0x0104d0b1,0x0038398b,0x03726701,0x019da88c,0x002d9769,0x00a7a681,0x031d9028,0x00ebfc32}}, {{0x0220405e,0x0171face,0x02d930f8,0x017f6d6a,0x023b8c47,0x0129d5f9,0x02972456,0x00a3a524,0x006f4cd2,0x004439fa},{0x00c53505,0x0190c2fd,0x00507244,0x009930f9,0x01a39270,0x01d327c6,0x0399bc47,0x01cfe13d,0x0332bd99,0x00b33e7d},{0x0203f5e4,0x003627b5,0x00018af8,0x01478581,0x004a2218,0x002e3bb7,0x039384d0,0x0146ea62,0x020b9693,0x0017155f}}, {{0x03c97e6f,0x00738c47,0x03b5db1f,0x01808fcf,0x01e8fc98,0x01ed25dd,0x01bf5045,0x00eb5c2b,0x0178fe98,0x01b85530},{0x01c20eb0,0x01aeec22,0x030b9eee,0x01b7d07e,0x0187e16f,0x014421fb,0x009fa731,0x0040b6d7,0x00841861,0x00a27fbc},{0x02d69abf,0x0058cdbf,0x0129f9ec,0x013c19ae,0x026c5b93,0x013a7fe7,0x004bb2ba,0x0063226f,0x002a95ca,0x01abefd9}}, {{0x02f5d2c1,0x00378318,0x03734fb5,0x01258073,0x0263f0f6,0x01ad70e0,0x01b56d06,0x01188fbd,0x011b9503,0x0036d2e1},{0x0113a8cc,0x01541c3e,0x02ac2bbc,0x01d95867,0x01f47459,0x00ead489,0x00ab5b48,0x01db3b45,0x00edb801,0x004b024f},{0x00b8190f,0x011fe4c2,0x00621f82,0x010508d7,0x001a5a76,0x00c7d7fd,0x03aab96d,0x019cd9dc,0x019c6635,0x00ceaa1e}}, {{0x01085cf2,0x01fd47af,0x03e3f5e1,0x004b3e99,0x01e3d46a,0x0060033c,0x015ff0a8,0x0150cdd8,0x029e8e21,0x008cf1bc},{0x00156cb1,0x003d623f,0x01a4f069,0x00d8d053,0x01b68aea,0x01ca5ab6,0x0316ae43,0x0134dc44,0x001c8d58,0x0084b343},{0x0318c781,0x0135441f,0x03a51a5e,0x019293f4,0x0048bb37,0x013d3341,0x0143151e,0x019c74e1,0x00911914,0x0076ddde}}, {{0x006bc26f,0x00d48e5f,0x00227bbe,0x00629ea8,0x01ea5f8b,0x0179a330,0x027a1d5f,0x01bf8f8e,0x02d26e2a,0x00c6b65e},{0x01701ab6,0x0051da77,0x01b4b667,0x00a0ce7c,0x038ae37b,0x012ac852,0x03a0b0fe,0x0097c2bb,0x00a017d2,0x01eb8b2a},{0x0120b962,0x0005fb42,0x0353b6fd,0x0061f8ce,0x007a1463,0x01560a64,0x00e0a792,0x01907c92,0x013a6622,0x007b47f1}} }; tor-0.2.7.6/src/ext/ed25519/donna/ed25519-donna-64bit-sse2.h0000644000175000017500000003767612621363245017170 00000000000000#if defined(ED25519_GCC_64BIT_SSE_CHOOSE) #define HAVE_GE25519_SCALARMULT_BASE_CHOOSE_NIELS DONNA_NOINLINE static void ge25519_scalarmult_base_choose_niels(ge25519_niels *t, const uint8_t table[256][96], uint32_t pos, signed char b) { int64_t breg = (int64_t)b; uint64_t sign = (uint64_t)breg >> 63; uint64_t mask = ~(sign - 1); uint64_t u = (breg + mask) ^ mask; __asm__ __volatile__ ( /* ysubx+xaddy+t2d */ "movq %0, %%rax ;\n" "movd %%rax, %%xmm14 ;\n" "pshufd $0x00, %%xmm14, %%xmm14 ;\n" "pxor %%xmm0, %%xmm0 ;\n" "pxor %%xmm1, %%xmm1 ;\n" "pxor %%xmm2, %%xmm2 ;\n" "pxor %%xmm3, %%xmm3 ;\n" "pxor %%xmm4, %%xmm4 ;\n" "pxor %%xmm5, %%xmm5 ;\n" /* 0 */ "movq $0, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movq $1, %%rax ;\n" "movd %%rax, %%xmm6 ;\n" "pxor %%xmm7, %%xmm7 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm6, %%xmm2 ;\n" "por %%xmm7, %%xmm3 ;\n" /* 1 */ "movq $1, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 0(%1), %%xmm6 ;\n" "movdqa 16(%1), %%xmm7 ;\n" "movdqa 32(%1), %%xmm8 ;\n" "movdqa 48(%1), %%xmm9 ;\n" "movdqa 64(%1), %%xmm10 ;\n" "movdqa 80(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 2 */ "movq $2, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 96(%1), %%xmm6 ;\n" "movdqa 112(%1), %%xmm7 ;\n" "movdqa 128(%1), %%xmm8 ;\n" "movdqa 144(%1), %%xmm9 ;\n" "movdqa 160(%1), %%xmm10 ;\n" "movdqa 176(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 3 */ "movq $3, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 192(%1), %%xmm6 ;\n" "movdqa 208(%1), %%xmm7 ;\n" "movdqa 224(%1), %%xmm8 ;\n" "movdqa 240(%1), %%xmm9 ;\n" "movdqa 256(%1), %%xmm10 ;\n" "movdqa 272(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 4 */ "movq $4, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 288(%1), %%xmm6 ;\n" "movdqa 304(%1), %%xmm7 ;\n" "movdqa 320(%1), %%xmm8 ;\n" "movdqa 336(%1), %%xmm9 ;\n" "movdqa 352(%1), %%xmm10 ;\n" "movdqa 368(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 5 */ "movq $5, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 384(%1), %%xmm6 ;\n" "movdqa 400(%1), %%xmm7 ;\n" "movdqa 416(%1), %%xmm8 ;\n" "movdqa 432(%1), %%xmm9 ;\n" "movdqa 448(%1), %%xmm10 ;\n" "movdqa 464(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 6 */ "movq $6, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 480(%1), %%xmm6 ;\n" "movdqa 496(%1), %%xmm7 ;\n" "movdqa 512(%1), %%xmm8 ;\n" "movdqa 528(%1), %%xmm9 ;\n" "movdqa 544(%1), %%xmm10 ;\n" "movdqa 560(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 7 */ "movq $7, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 576(%1), %%xmm6 ;\n" "movdqa 592(%1), %%xmm7 ;\n" "movdqa 608(%1), %%xmm8 ;\n" "movdqa 624(%1), %%xmm9 ;\n" "movdqa 640(%1), %%xmm10 ;\n" "movdqa 656(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 8 */ "movq $8, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 672(%1), %%xmm6 ;\n" "movdqa 688(%1), %%xmm7 ;\n" "movdqa 704(%1), %%xmm8 ;\n" "movdqa 720(%1), %%xmm9 ;\n" "movdqa 736(%1), %%xmm10 ;\n" "movdqa 752(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* conditionally swap ysubx and xaddy */ "movq %3, %%rax ;\n" "xorq $1, %%rax ;\n" "movd %%rax, %%xmm14 ;\n" "pxor %%xmm15, %%xmm15 ;\n" "pshufd $0x00, %%xmm14, %%xmm14 ;\n" "pxor %%xmm0, %%xmm2 ;\n" "pxor %%xmm1, %%xmm3 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa %%xmm2, %%xmm6 ;\n" "movdqa %%xmm3, %%xmm7 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pxor %%xmm6, %%xmm0 ;\n" "pxor %%xmm7, %%xmm1 ;\n" "pxor %%xmm0, %%xmm2 ;\n" "pxor %%xmm1, %%xmm3 ;\n" /* store ysubx */ "xorq %%rax, %%rax ;\n" "movd %%xmm0, %%rcx ;\n" "movd %%xmm0, %%r8 ;\n" "movd %%xmm1, %%rsi ;\n" "pshufd $0xee, %%xmm0, %%xmm0 ;\n" "pshufd $0xee, %%xmm1, %%xmm1 ;\n" "movd %%xmm0, %%rdx ;\n" "movd %%xmm1, %%rdi ;\n" "shrdq $51, %%rdx, %%r8 ;\n" "shrdq $38, %%rsi, %%rdx ;\n" "shrdq $25, %%rdi, %%rsi ;\n" "shrq $12, %%rdi ;\n" "movq %%rcx, %%r9 ;\n" "movq %%r8, %%r10 ;\n" "movq %%rdx, %%r11 ;\n" "movq %%rsi, %%r12 ;\n" "movq %%rdi, %%r13 ;\n" "shrq $26, %%r9 ;\n" "shrq $26, %%r10 ;\n" "shrq $26, %%r11 ;\n" "shrq $26, %%r12 ;\n" "shrq $26, %%r13 ;\n" "andl $0x3ffffff, %%ecx ;\n" "andl $0x1ffffff, %%r9d ;\n" "andl $0x3ffffff, %%r8d ;\n" "andl $0x1ffffff, %%r10d ;\n" "andl $0x3ffffff, %%edx ;\n" "andl $0x1ffffff, %%r11d ;\n" "andl $0x3ffffff, %%esi ;\n" "andl $0x1ffffff, %%r12d ;\n" "andl $0x3ffffff, %%edi ;\n" "andl $0x1ffffff, %%r13d ;\n" "movl %%ecx, 0(%2) ;\n" "movl %%r9d, 4(%2) ;\n" "movl %%r8d, 8(%2) ;\n" "movl %%r10d, 12(%2) ;\n" "movl %%edx, 16(%2) ;\n" "movl %%r11d, 20(%2) ;\n" "movl %%esi, 24(%2) ;\n" "movl %%r12d, 28(%2) ;\n" "movl %%edi, 32(%2) ;\n" "movl %%r13d, 36(%2) ;\n" "movq %%rax, 40(%2) ;\n" /* store xaddy */ "movd %%xmm2, %%rcx ;\n" "movd %%xmm2, %%r8 ;\n" "movd %%xmm3, %%rsi ;\n" "pshufd $0xee, %%xmm2, %%xmm2 ;\n" "pshufd $0xee, %%xmm3, %%xmm3 ;\n" "movd %%xmm2, %%rdx ;\n" "movd %%xmm3, %%rdi ;\n" "shrdq $51, %%rdx, %%r8 ;\n" "shrdq $38, %%rsi, %%rdx ;\n" "shrdq $25, %%rdi, %%rsi ;\n" "shrq $12, %%rdi ;\n" "movq %%rcx, %%r9 ;\n" "movq %%r8, %%r10 ;\n" "movq %%rdx, %%r11 ;\n" "movq %%rsi, %%r12 ;\n" "movq %%rdi, %%r13 ;\n" "shrq $26, %%r9 ;\n" "shrq $26, %%r10 ;\n" "shrq $26, %%r11 ;\n" "shrq $26, %%r12 ;\n" "shrq $26, %%r13 ;\n" "andl $0x3ffffff, %%ecx ;\n" "andl $0x1ffffff, %%r9d ;\n" "andl $0x3ffffff, %%r8d ;\n" "andl $0x1ffffff, %%r10d ;\n" "andl $0x3ffffff, %%edx ;\n" "andl $0x1ffffff, %%r11d ;\n" "andl $0x3ffffff, %%esi ;\n" "andl $0x1ffffff, %%r12d ;\n" "andl $0x3ffffff, %%edi ;\n" "andl $0x1ffffff, %%r13d ;\n" "movl %%ecx, 48(%2) ;\n" "movl %%r9d, 52(%2) ;\n" "movl %%r8d, 56(%2) ;\n" "movl %%r10d, 60(%2) ;\n" "movl %%edx, 64(%2) ;\n" "movl %%r11d, 68(%2) ;\n" "movl %%esi, 72(%2) ;\n" "movl %%r12d, 76(%2) ;\n" "movl %%edi, 80(%2) ;\n" "movl %%r13d, 84(%2) ;\n" "movq %%rax, 88(%2) ;\n" /* extract t2d */ "xorq %%rax, %%rax ;\n" "movd %%xmm4, %%rcx ;\n" "movd %%xmm4, %%r8 ;\n" "movd %%xmm5, %%rsi ;\n" "pshufd $0xee, %%xmm4, %%xmm4 ;\n" "pshufd $0xee, %%xmm5, %%xmm5 ;\n" "movd %%xmm4, %%rdx ;\n" "movd %%xmm5, %%rdi ;\n" "shrdq $51, %%rdx, %%r8 ;\n" "shrdq $38, %%rsi, %%rdx ;\n" "shrdq $25, %%rdi, %%rsi ;\n" "shrq $12, %%rdi ;\n" "movq %%rcx, %%r9 ;\n" "movq %%r8, %%r10 ;\n" "movq %%rdx, %%r11 ;\n" "movq %%rsi, %%r12 ;\n" "movq %%rdi, %%r13 ;\n" "shrq $26, %%r9 ;\n" "shrq $26, %%r10 ;\n" "shrq $26, %%r11 ;\n" "shrq $26, %%r12 ;\n" "shrq $26, %%r13 ;\n" "andl $0x3ffffff, %%ecx ;\n" "andl $0x1ffffff, %%r9d ;\n" "andl $0x3ffffff, %%r8d ;\n" "andl $0x1ffffff, %%r10d ;\n" "andl $0x3ffffff, %%edx ;\n" "andl $0x1ffffff, %%r11d ;\n" "andl $0x3ffffff, %%esi ;\n" "andl $0x1ffffff, %%r12d ;\n" "andl $0x3ffffff, %%edi ;\n" "andl $0x1ffffff, %%r13d ;\n" "movd %%ecx, %%xmm0 ;\n" "movd %%r9d, %%xmm4 ;\n" "movd %%r8d, %%xmm8 ;\n" "movd %%r10d, %%xmm3 ;\n" "movd %%edx, %%xmm1 ;\n" "movd %%r11d, %%xmm5 ;\n" "movd %%esi, %%xmm6 ;\n" "movd %%r12d, %%xmm7 ;\n" "movd %%edi, %%xmm2 ;\n" "movd %%r13d, %%xmm9 ;\n" "punpckldq %%xmm4, %%xmm0 ;\n" "punpckldq %%xmm3, %%xmm8 ;\n" "punpckldq %%xmm5, %%xmm1 ;\n" "punpckldq %%xmm7, %%xmm6 ;\n" "punpckldq %%xmm9, %%xmm2 ;\n" "punpcklqdq %%xmm8, %%xmm0 ;\n" "punpcklqdq %%xmm6, %%xmm1 ;\n" /* set up 2p in to 3/4 */ "movl $0x7ffffda, %%ecx ;\n" "movl $0x3fffffe, %%edx ;\n" "movl $0x7fffffe, %%eax ;\n" "movd %%ecx, %%xmm3 ;\n" "movd %%edx, %%xmm5 ;\n" "movd %%eax, %%xmm4 ;\n" "punpckldq %%xmm5, %%xmm3 ;\n" "punpckldq %%xmm5, %%xmm4 ;\n" "punpcklqdq %%xmm4, %%xmm3 ;\n" "movdqa %%xmm4, %%xmm5 ;\n" "punpcklqdq %%xmm4, %%xmm4 ;\n" /* subtract and conditionally move */ "movl %3, %%ecx ;\n" "sub $1, %%ecx ;\n" "movd %%ecx, %%xmm6 ;\n" "pshufd $0x00, %%xmm6, %%xmm6 ;\n" "movdqa %%xmm6, %%xmm7 ;\n" "psubd %%xmm0, %%xmm3 ;\n" "psubd %%xmm1, %%xmm4 ;\n" "psubd %%xmm2, %%xmm5 ;\n" "pand %%xmm6, %%xmm0 ;\n" "pand %%xmm6, %%xmm1 ;\n" "pand %%xmm6, %%xmm2 ;\n" "pandn %%xmm3, %%xmm6 ;\n" "movdqa %%xmm7, %%xmm3 ;\n" "pandn %%xmm4, %%xmm7 ;\n" "pandn %%xmm5, %%xmm3 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm3, %%xmm2 ;\n" /* store t2d */ "movdqa %%xmm0, 96(%2) ;\n" "movdqa %%xmm1, 112(%2) ;\n" "movdqa %%xmm2, 128(%2) ;\n" : : "m"(u), "r"(&table[pos * 8]), "r"(t), "m"(sign) /* %0 = u, %1 = table, %2 = t, %3 = sign */ : "%rax", "%rcx", "%rdx", "%rdi", "%rsi", "%r8", "%r9", "%r10", "%r11", "%r12", "%r13", "%xmm0", "%xmm1", "%xmm2", "%xmm3", "%xmm4", "%xmm5", "%xmm6", "%xmm7", "%xmm8", "%xmm9", "%xmm10", "%xmm11", "%xmm14", "%xmm14", "cc", "memory" ); } #endif /* defined(ED25519_GCC_64BIT_SSE_CHOOSE) */ tor-0.2.7.6/src/ext/ed25519/donna/regression.h0000644000175000017500001243200012621363246015435 00000000000000{{0x9d,0x61,0xb1,0x9d,0xef,0xfd,0x5a,0x60,0xba,0x84,0x4a,0xf4,0x92,0xec,0x2c,0xc4,0x44,0x49,0xc5,0x69,0x7b,0x32,0x69,0x19,0x70,0x3b,0xac,0x03,0x1c,0xae,0x7f,0x60,},{0xd7,0x5a,0x98,0x01,0x82,0xb1,0x0a,0xb7,0xd5,0x4b,0xfe,0xd3,0xc9,0x64,0x07,0x3a,0x0e,0xe1,0x72,0xf3,0xda,0xa6,0x23,0x25,0xaf,0x02,0x1a,0x68,0xf7,0x07,0x51,0x1a,},{0xe5,0x56,0x43,0x00,0xc3,0x60,0xac,0x72,0x90,0x86,0xe2,0xcc,0x80,0x6e,0x82,0x8a,0x84,0x87,0x7f,0x1e,0xb8,0xe5,0xd9,0x74,0xd8,0x73,0xe0,0x65,0x22,0x49,0x01,0x55,0x5f,0xb8,0x82,0x15,0x90,0xa3,0x3b,0xac,0xc6,0x1e,0x39,0x70,0x1c,0xf9,0xb4,0x6b,0xd2,0x5b,0xf5,0xf0,0x59,0x5b,0xbe,0x24,0x65,0x51,0x41,0x43,0x8e,0x7a,0x10,0x0b,},""}, {{0x4c,0xcd,0x08,0x9b,0x28,0xff,0x96,0xda,0x9d,0xb6,0xc3,0x46,0xec,0x11,0x4e,0x0f,0x5b,0x8a,0x31,0x9f,0x35,0xab,0xa6,0x24,0xda,0x8c,0xf6,0xed,0x4f,0xb8,0xa6,0xfb,},{0x3d,0x40,0x17,0xc3,0xe8,0x43,0x89,0x5a,0x92,0xb7,0x0a,0xa7,0x4d,0x1b,0x7e,0xbc,0x9c,0x98,0x2c,0xcf,0x2e,0xc4,0x96,0x8c,0xc0,0xcd,0x55,0xf1,0x2a,0xf4,0x66,0x0c,},{0x92,0xa0,0x09,0xa9,0xf0,0xd4,0xca,0xb8,0x72,0x0e,0x82,0x0b,0x5f,0x64,0x25,0x40,0xa2,0xb2,0x7b,0x54,0x16,0x50,0x3f,0x8f,0xb3,0x76,0x22,0x23,0xeb,0xdb,0x69,0xda,0x08,0x5a,0xc1,0xe4,0x3e,0x15,0x99,0x6e,0x45,0x8f,0x36,0x13,0xd0,0xf1,0x1d,0x8c,0x38,0x7b,0x2e,0xae,0xb4,0x30,0x2a,0xee,0xb0,0x0d,0x29,0x16,0x12,0xbb,0x0c,0x00,},"\x72"}, {{0xc5,0xaa,0x8d,0xf4,0x3f,0x9f,0x83,0x7b,0xed,0xb7,0x44,0x2f,0x31,0xdc,0xb7,0xb1,0x66,0xd3,0x85,0x35,0x07,0x6f,0x09,0x4b,0x85,0xce,0x3a,0x2e,0x0b,0x44,0x58,0xf7,},{0xfc,0x51,0xcd,0x8e,0x62,0x18,0xa1,0xa3,0x8d,0xa4,0x7e,0xd0,0x02,0x30,0xf0,0x58,0x08,0x16,0xed,0x13,0xba,0x33,0x03,0xac,0x5d,0xeb,0x91,0x15,0x48,0x90,0x80,0x25,},{0x62,0x91,0xd6,0x57,0xde,0xec,0x24,0x02,0x48,0x27,0xe6,0x9c,0x3a,0xbe,0x01,0xa3,0x0c,0xe5,0x48,0xa2,0x84,0x74,0x3a,0x44,0x5e,0x36,0x80,0xd7,0xdb,0x5a,0xc3,0xac,0x18,0xff,0x9b,0x53,0x8d,0x16,0xf2,0x90,0xae,0x67,0xf7,0x60,0x98,0x4d,0xc6,0x59,0x4a,0x7c,0x15,0xe9,0x71,0x6e,0xd2,0x8d,0xc0,0x27,0xbe,0xce,0xea,0x1e,0xc4,0x0a,},"\xaf\x82"}, {{0x0d,0x4a,0x05,0xb0,0x73,0x52,0xa5,0x43,0x6e,0x18,0x03,0x56,0xda,0x0a,0xe6,0xef,0xa0,0x34,0x5f,0xf7,0xfb,0x15,0x72,0x57,0x57,0x72,0xe8,0x00,0x5e,0xd9,0x78,0xe9,},{0xe6,0x1a,0x18,0x5b,0xce,0xf2,0x61,0x3a,0x6c,0x7c,0xb7,0x97,0x63,0xce,0x94,0x5d,0x3b,0x24,0x5d,0x76,0x11,0x4d,0xd4,0x40,0xbc,0xf5,0xf2,0xdc,0x1a,0xa5,0x70,0x57,},{0xd9,0x86,0x8d,0x52,0xc2,0xbe,0xbc,0xe5,0xf3,0xfa,0x5a,0x79,0x89,0x19,0x70,0xf3,0x09,0xcb,0x65,0x91,0xe3,0xe1,0x70,0x2a,0x70,0x27,0x6f,0xa9,0x7c,0x24,0xb3,0xa8,0xe5,0x86,0x06,0xc3,0x8c,0x97,0x58,0x52,0x9d,0xa5,0x0e,0xe3,0x1b,0x82,0x19,0xcb,0xa4,0x52,0x71,0xc6,0x89,0xaf,0xa6,0x0b,0x0e,0xa2,0x6c,0x99,0xdb,0x19,0xb0,0x0c,},"\xcb\xc7\x7b"}, {{0x6d,0xf9,0x34,0x0c,0x13,0x8c,0xc1,0x88,0xb5,0xfe,0x44,0x64,0xeb,0xaa,0x3f,0x7f,0xc2,0x06,0xa2,0xd5,0x5c,0x34,0x34,0x70,0x7e,0x74,0xc9,0xfc,0x04,0xe2,0x0e,0xbb,},{0xc0,0xda,0xc1,0x02,0xc4,0x53,0x31,0x86,0xe2,0x5d,0xc4,0x31,0x28,0x47,0x23,0x53,0xea,0xab,0xdb,0x87,0x8b,0x15,0x2a,0xeb,0x8e,0x00,0x1f,0x92,0xd9,0x02,0x33,0xa7,},{0x12,0x4f,0x6f,0xc6,0xb0,0xd1,0x00,0x84,0x27,0x69,0xe7,0x1b,0xd5,0x30,0x66,0x4d,0x88,0x8d,0xf8,0x50,0x7d,0xf6,0xc5,0x6d,0xed,0xfd,0xb5,0x09,0xae,0xb9,0x34,0x16,0xe2,0x6b,0x91,0x8d,0x38,0xaa,0x06,0x30,0x5d,0xf3,0x09,0x56,0x97,0xc1,0x8b,0x2a,0xa8,0x32,0xea,0xa5,0x2e,0xdc,0x0a,0xe4,0x9f,0xba,0xe5,0xa8,0x5e,0x15,0x0c,0x07,},"\x5f\x4c\x89\x89"}, {{0xb7,0x80,0x38,0x1a,0x65,0xed,0xf8,0xb7,0x8f,0x69,0x45,0xe8,0xdb,0xec,0x79,0x41,0xac,0x04,0x9f,0xd4,0xc6,0x10,0x40,0xcf,0x0c,0x32,0x43,0x57,0x97,0x5a,0x29,0x3c,},{0xe2,0x53,0xaf,0x07,0x66,0x80,0x4b,0x86,0x9b,0xb1,0x59,0x5b,0xe9,0x76,0x5b,0x53,0x48,0x86,0xbb,0xaa,0xb8,0x30,0x5b,0xf5,0x0d,0xbc,0x7f,0x89,0x9b,0xfb,0x5f,0x01,},{0xb2,0xfc,0x46,0xad,0x47,0xaf,0x46,0x44,0x78,0xc1,0x99,0xe1,0xf8,0xbe,0x16,0x9f,0x1b,0xe6,0x32,0x7c,0x7f,0x9a,0x0a,0x66,0x89,0x37,0x1c,0xa9,0x4c,0xaf,0x04,0x06,0x4a,0x01,0xb2,0x2a,0xff,0x15,0x20,0xab,0xd5,0x89,0x51,0x34,0x16,0x03,0xfa,0xed,0x76,0x8c,0xf7,0x8c,0xe9,0x7a,0xe7,0xb0,0x38,0xab,0xfe,0x45,0x6a,0xa1,0x7c,0x09,},"\x18\xb6\xbe\xc0\x97"}, {{0x78,0xae,0x9e,0xff,0xe6,0xf2,0x45,0xe9,0x24,0xa7,0xbe,0x63,0x04,0x11,0x46,0xeb,0xc6,0x70,0xdb,0xd3,0x06,0x0c,0xba,0x67,0xfb,0xc6,0x21,0x6f,0xeb,0xc4,0x45,0x46,},{0xfb,0xcf,0xbf,0xa4,0x05,0x05,0xd7,0xf2,0xbe,0x44,0x4a,0x33,0xd1,0x85,0xcc,0x54,0xe1,0x6d,0x61,0x52,0x60,0xe1,0x64,0x0b,0x2b,0x50,0x87,0xb8,0x3e,0xe3,0x64,0x3d,},{0x6e,0xd6,0x29,0xfc,0x1d,0x9c,0xe9,0xe1,0x46,0x87,0x55,0xff,0x63,0x6d,0x5a,0x3f,0x40,0xa5,0xd9,0xc9,0x1a,0xfd,0x93,0xb7,0x9d,0x24,0x18,0x30,0xf7,0xe5,0xfa,0x29,0x85,0x4b,0x8f,0x20,0xcc,0x6e,0xec,0xbb,0x24,0x8d,0xbd,0x8d,0x16,0xd1,0x4e,0x99,0x75,0x21,0x94,0xe4,0x90,0x4d,0x09,0xc7,0x4d,0x63,0x95,0x18,0x83,0x9d,0x23,0x00,},"\x89\x01\x0d\x85\x59\x72"}, {{0x69,0x18,0x65,0xbf,0xc8,0x2a,0x1e,0x4b,0x57,0x4e,0xec,0xde,0x4c,0x75,0x19,0x09,0x3f,0xaf,0x0c,0xf8,0x67,0x38,0x02,0x34,0xe3,0x66,0x46,0x45,0xc6,0x1c,0x5f,0x79,},{0x98,0xa5,0xe3,0xa3,0x6e,0x67,0xaa,0xba,0x89,0x88,0x8b,0xf0,0x93,0xde,0x1a,0xd9,0x63,0xe7,0x74,0x01,0x3b,0x39,0x02,0xbf,0xab,0x35,0x6d,0x8b,0x90,0x17,0x8a,0x63,},{0x6e,0x0a,0xf2,0xfe,0x55,0xae,0x37,0x7a,0x6b,0x7a,0x72,0x78,0xed,0xfb,0x41,0x9b,0xd3,0x21,0xe0,0x6d,0x0d,0xf5,0xe2,0x70,0x37,0xdb,0x88,0x12,0xe7,0xe3,0x52,0x98,0x10,0xfa,0x55,0x52,0xf6,0xc0,0x02,0x09,0x85,0xca,0x17,0xa0,0xe0,0x2e,0x03,0x6d,0x7b,0x22,0x2a,0x24,0xf9,0x9b,0x77,0xb7,0x5f,0xdd,0x16,0xcb,0x05,0x56,0x81,0x07,},"\xb4\xa8\xf3\x81\xe7\x0e\x7a"}, {{0x3b,0x26,0x51,0x6f,0xb3,0xdc,0x88,0xeb,0x18,0x1b,0x9e,0xd7,0x3f,0x0b,0xcd,0x52,0xbc,0xd6,0xb4,0xc7,0x88,0xe4,0xbc,0xaf,0x46,0x05,0x7f,0xd0,0x78,0xbe,0xe0,0x73,},{0xf8,0x1f,0xb5,0x4a,0x82,0x5f,0xce,0xd9,0x5e,0xb0,0x33,0xaf,0xcd,0x64,0x31,0x40,0x75,0xab,0xfb,0x0a,0xbd,0x20,0xa9,0x70,0x89,0x25,0x03,0x43,0x6f,0x34,0xb8,0x63,},{0xd6,0xad,0xde,0xc5,0xaf,0xb0,0x52,0x8a,0xc1,0x7b,0xb1,0x78,0xd3,0xe7,0xf2,0x88,0x7f,0x9a,0xdb,0xb1,0xad,0x16,0xe1,0x10,0x54,0x5e,0xf3,0xbc,0x57,0xf9,0xde,0x23,0x14,0xa5,0xc8,0x38,0x8f,0x72,0x3b,0x89,0x07,0xbe,0x0f,0x3a,0xc9,0x0c,0x62,0x59,0xbb,0xe8,0x85,0xec,0xc1,0x76,0x45,0xdf,0x3d,0xb7,0xd4,0x88,0xf8,0x05,0xfa,0x08,},"\x42\x84\xab\xc5\x1b\xb6\x72\x35"}, {{0xed,0xc6,0xf5,0xfb,0xdd,0x1c,0xee,0x4d,0x10,0x1c,0x06,0x35,0x30,0xa3,0x04,0x90,0xb2,0x21,0xbe,0x68,0xc0,0x36,0xf5,0xb0,0x7d,0x0f,0x95,0x3b,0x74,0x5d,0xf1,0x92,},{0xc1,0xa4,0x9c,0x66,0xe6,0x17,0xf9,0xef,0x5e,0xc6,0x6b,0xc4,0xc6,0x56,0x4c,0xa3,0x3d,0xe2,0xa5,0xfb,0x5e,0x14,0x64,0x06,0x2e,0x6d,0x6c,0x62,0x19,0x15,0x5e,0xfd,},{0x2c,0x76,0xa0,0x4a,0xf2,0x39,0x1c,0x14,0x70,0x82,0xe3,0x3f,0xaa,0xcd,0xbe,0x56,0x64,0x2a,0x1e,0x13,0x4b,0xd3,0x88,0x62,0x0b,0x85,0x2b,0x90,0x1a,0x6b,0xc1,0x6f,0xf6,0xc9,0xcc,0x94,0x04,0xc4,0x1d,0xea,0x12,0xed,0x28,0x1d,0xa0,0x67,0xa1,0x51,0x38,0x66,0xf9,0xd9,0x64,0xf8,0xbd,0xd2,0x49,0x53,0x85,0x6c,0x50,0x04,0x29,0x01,},"\x67\x2b\xf8\x96\x5d\x04\xbc\x51\x46"}, {{0x4e,0x7d,0x21,0xfb,0x3b,0x18,0x97,0x57,0x1a,0x44,0x58,0x33,0xbe,0x0f,0x9f,0xd4,0x1c,0xd6,0x2b,0xe3,0xaa,0x04,0x04,0x0f,0x89,0x34,0xe1,0xfc,0xbd,0xca,0xcd,0x45,},{0x31,0xb2,0x52,0x4b,0x83,0x48,0xf7,0xab,0x1d,0xfa,0xfa,0x67,0x5c,0xc5,0x38,0xe9,0xa8,0x4e,0x3f,0xe5,0x81,0x9e,0x27,0xc1,0x2a,0xd8,0xbb,0xc1,0xa3,0x6e,0x4d,0xff,},{0x28,0xe4,0x59,0x8c,0x41,0x5a,0xe9,0xde,0x01,0xf0,0x3f,0x9f,0x3f,0xab,0x4e,0x91,0x9e,0x8b,0xf5,0x37,0xdd,0x2b,0x0c,0xdf,0x6e,0x79,0xb9,0xe6,0x55,0x9c,0x94,0x09,0xd9,0x15,0x1a,0x4c,0x40,0xf0,0x83,0x19,0x39,0x37,0x62,0x7c,0x36,0x94,0x88,0x25,0x9e,0x99,0xda,0x5a,0x9f,0x0a,0x87,0x49,0x7f,0xa6,0x69,0x6a,0x5d,0xd6,0xce,0x08,},"\x33\xd7\xa7\x86\xad\xed\x8c\x1b\xf6\x91"}, {{0xa9,0x80,0xf8,0x92,0xdb,0x13,0xc9,0x9a,0x3e,0x89,0x71,0xe9,0x65,0xb2,0xff,0x3d,0x41,0xea,0xfd,0x54,0x09,0x3b,0xc9,0xf3,0x4d,0x1f,0xd2,0x2d,0x84,0x11,0x5b,0xb6,},{0x44,0xb5,0x7e,0xe3,0x0c,0xdb,0x55,0x82,0x9d,0x0a,0x5d,0x4f,0x04,0x6b,0xae,0xf0,0x78,0xf1,0xe9,0x7a,0x7f,0x21,0xb6,0x2d,0x75,0xf8,0xe9,0x6e,0xa1,0x39,0xc3,0x5f,},{0x77,0xd3,0x89,0xe5,0x99,0x63,0x0d,0x93,0x40,0x76,0x32,0x95,0x83,0xcd,0x41,0x05,0xa6,0x49,0xa9,0x29,0x2a,0xbc,0x44,0xcd,0x28,0xc4,0x00,0x00,0xc8,0xe2,0xf5,0xac,0x76,0x60,0xa8,0x1c,0x85,0xb7,0x2a,0xf8,0x45,0x2d,0x7d,0x25,0xc0,0x70,0x86,0x1d,0xae,0x91,0x60,0x1c,0x78,0x03,0xd6,0x56,0x53,0x16,0x50,0xdd,0x4e,0x5c,0x41,0x00,},"\x34\x86\xf6\x88\x48\xa6\x5a\x0e\xb5\x50\x7d"}, {{0x5b,0x5a,0x61,0x9f,0x8c,0xe1,0xc6,0x6d,0x7c,0xe2,0x6e,0x5a,0x2a,0xe7,0xb0,0xc0,0x4f,0xeb,0xcd,0x34,0x6d,0x28,0x6c,0x92,0x9e,0x19,0xd0,0xd5,0x97,0x3b,0xfe,0xf9,},{0x6f,0xe8,0x36,0x93,0xd0,0x11,0xd1,0x11,0x13,0x1c,0x4f,0x3f,0xba,0xaa,0x40,0xa9,0xd3,0xd7,0x6b,0x30,0x01,0x2f,0xf7,0x3b,0xb0,0xe3,0x9e,0xc2,0x7a,0xb1,0x82,0x57,},{0x0f,0x9a,0xd9,0x79,0x30,0x33,0xa2,0xfa,0x06,0x61,0x4b,0x27,0x7d,0x37,0x38,0x1e,0x6d,0x94,0xf6,0x5a,0xc2,0xa5,0xa9,0x45,0x58,0xd0,0x9e,0xd6,0xce,0x92,0x22,0x58,0xc1,0xa5,0x67,0x95,0x2e,0x86,0x3a,0xc9,0x42,0x97,0xae,0xc3,0xc0,0xd0,0xc8,0xdd,0xf7,0x10,0x84,0xe5,0x04,0x86,0x0b,0xb6,0xba,0x27,0x44,0x9b,0x55,0xad,0xc4,0x0e,},"\x5a\x8d\x9d\x0a\x22\x35\x7e\x66\x55\xf9\xc7\x85"}, {{0x94,0x0c,0x89,0xfe,0x40,0xa8,0x1d,0xaf,0xbd,0xb2,0x41,0x6d,0x14,0xae,0x46,0x91,0x19,0x86,0x97,0x44,0x41,0x0c,0x33,0x03,0xbf,0xaa,0x02,0x41,0xda,0xc5,0x78,0x00,},{0xa2,0xeb,0x8c,0x05,0x01,0xe3,0x0b,0xae,0x0c,0xf8,0x42,0xd2,0xbd,0xe8,0xde,0xc7,0x38,0x6f,0x6b,0x7f,0xc3,0x98,0x1b,0x8c,0x57,0xc9,0x79,0x2b,0xb9,0x4c,0xf2,0xdd,},{0xd8,0xbb,0x64,0xaa,0xd8,0xc9,0x95,0x5a,0x11,0x5a,0x79,0x3a,0xdd,0xd2,0x4f,0x7f,0x2b,0x07,0x76,0x48,0x71,0x4f,0x49,0xc4,0x69,0x4e,0xc9,0x95,0xb3,0x30,0xd0,0x9d,0x64,0x0d,0xf3,0x10,0xf4,0x47,0xfd,0x7b,0x6c,0xb5,0xc1,0x4f,0x9f,0xe9,0xf4,0x90,0xbc,0xf8,0xcf,0xad,0xbf,0xd2,0x16,0x9c,0x8a,0xc2,0x0d,0x3b,0x8a,0xf4,0x9a,0x0c,},"\xb8\x7d\x38\x13\xe0\x3f\x58\xcf\x19\xfd\x0b\x63\x95"}, {{0x9a,0xca,0xd9,0x59,0xd2,0x16,0x21,0x2d,0x78,0x9a,0x11,0x92,0x52,0xeb,0xfe,0x0c,0x96,0x51,0x2a,0x23,0xc7,0x3b,0xd9,0xf3,0xb2,0x02,0x29,0x2d,0x69,0x16,0xa7,0x38,},{0xcf,0x3a,0xf8,0x98,0x46,0x7a,0x5b,0x7a,0x52,0xd3,0x3d,0x53,0xbc,0x03,0x7e,0x26,0x42,0xa8,0xda,0x99,0x69,0x03,0xfc,0x25,0x22,0x17,0xe9,0xc0,0x33,0xe2,0xf2,0x91,},{0x6e,0xe3,0xfe,0x81,0xe2,0x3c,0x60,0xeb,0x23,0x12,0xb2,0x00,0x6b,0x3b,0x25,0xe6,0x83,0x8e,0x02,0x10,0x66,0x23,0xf8,0x44,0xc4,0x4e,0xdb,0x8d,0xaf,0xd6,0x6a,0xb0,0x67,0x10,0x87,0xfd,0x19,0x5d,0xf5,0xb8,0xf5,0x8a,0x1d,0x6e,0x52,0xaf,0x42,0x90,0x80,0x53,0xd5,0x5c,0x73,0x21,0x01,0x00,0x92,0x74,0x87,0x95,0xef,0x94,0xcf,0x06,},"\x55\xc7\xfa\x43\x4f\x5e\xd8\xcd\xec\x2b\x7a\xea\xc1\x73"}, {{0xd5,0xae,0xee,0x41,0xee,0xb0,0xe9,0xd1,0xbf,0x83,0x37,0xf9,0x39,0x58,0x7e,0xbe,0x29,0x61,0x61,0xe6,0xbf,0x52,0x09,0xf5,0x91,0xec,0x93,0x9e,0x14,0x40,0xc3,0x00,},{0xfd,0x2a,0x56,0x57,0x23,0x16,0x3e,0x29,0xf5,0x3c,0x9d,0xe3,0xd5,0xe8,0xfb,0xe3,0x6a,0x7a,0xb6,0x6e,0x14,0x39,0xec,0x4e,0xae,0x9c,0x0a,0x60,0x4a,0xf2,0x91,0xa5,},{0xf6,0x8d,0x04,0x84,0x7e,0x5b,0x24,0x97,0x37,0x89,0x9c,0x01,0x4d,0x31,0xc8,0x05,0xc5,0x00,0x7a,0x62,0xc0,0xa1,0x0d,0x50,0xbb,0x15,0x38,0xc5,0xf3,0x55,0x03,0x95,0x1f,0xbc,0x1e,0x08,0x68,0x2f,0x2c,0xc0,0xc9,0x2e,0xfe,0x8f,0x49,0x85,0xde,0xc6,0x1d,0xcb,0xd5,0x4d,0x4b,0x94,0xa2,0x25,0x47,0xd2,0x44,0x51,0x27,0x1c,0x8b,0x00,},"\x0a\x68\x8e\x79\xbe\x24\xf8\x66\x28\x6d\x46\x46\xb5\xd8\x1c"}, {{0x0a,0x47,0xd1,0x04,0x52,0xae,0x2f,0xeb,0xec,0x51,0x8a,0x1c,0x7c,0x36,0x28,0x90,0xc3,0xfc,0x1a,0x49,0xd3,0x4b,0x03,0xb6,0x46,0x7d,0x35,0xc9,0x04,0xa8,0x36,0x2d,},{0x34,0xe5,0xa8,0x50,0x8c,0x47,0x43,0x74,0x69,0x62,0xc0,0x66,0xe4,0xba,0xde,0xa2,0x20,0x1b,0x8a,0xb4,0x84,0xde,0x5c,0x4f,0x94,0x47,0x6c,0xcd,0x21,0x43,0x95,0x5b,},{0x2a,0x3d,0x27,0xdc,0x40,0xd0,0xa8,0x12,0x79,0x49,0xa3,0xb7,0xf9,0x08,0xb3,0x68,0x8f,0x63,0xb7,0xf1,0x4f,0x65,0x1a,0xac,0xd7,0x15,0x94,0x0b,0xdb,0xe2,0x7a,0x08,0x09,0xaa,0xc1,0x42,0xf4,0x7a,0xb0,0xe1,0xe4,0x4f,0xa4,0x90,0xba,0x87,0xce,0x53,0x92,0xf3,0x3a,0x89,0x15,0x39,0xca,0xf1,0xef,0x4c,0x36,0x7c,0xae,0x54,0x50,0x0c,},"\xc9\x42\xfa\x7a\xc6\xb2\x3a\xb7\xff\x61\x2f\xdc\x8e\x68\xef\x39"}, {{0xf8,0x14,0x8f,0x75,0x06,0xb7,0x75,0xef,0x46,0xfd,0xc8,0xe8,0xc7,0x56,0x51,0x68,0x12,0xd4,0x7d,0x6c,0xfb,0xfa,0x31,0x8c,0x27,0xc9,0xa2,0x26,0x41,0xe5,0x6f,0x17,},{0x04,0x45,0xe4,0x56,0xda,0xcc,0x7d,0x5b,0x0b,0xbe,0xd2,0x3c,0x82,0x00,0xcd,0xb7,0x4b,0xdc,0xb0,0x3e,0x4c,0x7b,0x73,0xf0,0xa2,0xb9,0xb4,0x6e,0xac,0x5d,0x43,0x72,},{0x36,0x53,0xcc,0xb2,0x12,0x19,0x20,0x2b,0x84,0x36,0xfb,0x41,0xa3,0x2b,0xa2,0x61,0x8c,0x4a,0x13,0x34,0x31,0xe6,0xe6,0x34,0x63,0xce,0xb3,0xb6,0x10,0x6c,0x4d,0x56,0xe1,0xd2,0xba,0x16,0x5b,0xa7,0x6e,0xaa,0xd3,0xdc,0x39,0xbf,0xfb,0x13,0x0f,0x1d,0xe3,0xd8,0xe6,0x42,0x7d,0xb5,0xb7,0x19,0x38,0xdb,0x4e,0x27,0x2b,0xc3,0xe2,0x0b,},"\x73\x68\x72\x4a\x5b\x0e\xfb\x57\xd2\x8d\x97\x62\x2d\xbd\xe7\x25\xaf"}, {{0x77,0xf8,0x86,0x91,0xc4,0xef,0xf2,0x3e,0xbb,0x73,0x64,0x94,0x70,0x92,0x95,0x1a,0x5f,0xf3,0xf1,0x07,0x85,0xb4,0x17,0xe9,0x18,0x82,0x3a,0x55,0x2d,0xab,0x7c,0x75,},{0x74,0xd2,0x91,0x27,0xf1,0x99,0xd8,0x6a,0x86,0x76,0xae,0xc3,0x3b,0x4c,0xe3,0xf2,0x25,0xcc,0xb1,0x91,0xf5,0x2c,0x19,0x1c,0xcd,0x1e,0x8c,0xca,0x65,0x21,0x3a,0x6b,},{0xfb,0xe9,0x29,0xd7,0x43,0xa0,0x3c,0x17,0x91,0x05,0x75,0x49,0x2f,0x30,0x92,0xee,0x2a,0x2b,0xf1,0x4a,0x60,0xa3,0xfc,0xac,0xec,0x74,0xa5,0x8c,0x73,0x34,0x51,0x0f,0xc2,0x62,0xdb,0x58,0x27,0x91,0x32,0x2d,0x6c,0x8c,0x41,0xf1,0x70,0x0a,0xdb,0x80,0x02,0x7e,0xca,0xbc,0x14,0x27,0x0b,0x70,0x34,0x44,0xae,0x3e,0xe7,0x62,0x3e,0x0a,},"\xbd\x8e\x05\x03\x3f\x3a\x8b\xcd\xcb\xf4\xbe\xce\xb7\x09\x01\xc8\x2e\x31"}, {{0xab,0x6f,0x7a,0xee,0x6a,0x08,0x37,0xb3,0x34,0xba,0x5e,0xb1,0xb2,0xad,0x7f,0xce,0xcf,0xab,0x7e,0x32,0x3c,0xab,0x18,0x7f,0xe2,0xe0,0xa9,0x5d,0x80,0xef,0xf1,0x32,},{0x5b,0x96,0xdc,0xa4,0x97,0x87,0x5b,0xf9,0x66,0x4c,0x5e,0x75,0xfa,0xcf,0x3f,0x9b,0xc5,0x4b,0xae,0x91,0x3d,0x66,0xca,0x15,0xee,0x85,0xf1,0x49,0x1c,0xa2,0x4d,0x2c,},{0x73,0xbc,0xa6,0x4e,0x9d,0xd0,0xdb,0x88,0x13,0x8e,0xed,0xfa,0xfc,0xea,0x8f,0x54,0x36,0xcf,0xb7,0x4b,0xfb,0x0e,0x77,0x33,0xcf,0x34,0x9b,0xaa,0x0c,0x49,0x77,0x5c,0x56,0xd5,0x93,0x4e,0x1d,0x38,0xe3,0x6f,0x39,0xb7,0xc5,0xbe,0xb0,0xa8,0x36,0x51,0x0c,0x45,0x12,0x6f,0x8e,0xc4,0xb6,0x81,0x05,0x19,0x90,0x5b,0x0c,0xa0,0x7c,0x09,},"\x81\x71\x45\x6f\x8b\x90\x71\x89\xb1\xd7\x79\xe2\x6b\xc5\xaf\xbb\x08\xc6\x7a"}, {{0x8d,0x13,0x5d,0xe7,0xc8,0x41,0x1b,0xbd,0xbd,0x1b,0x31,0xe5,0xdc,0x67,0x8f,0x2a,0xc7,0x10,0x9e,0x79,0x2b,0x60,0xf3,0x8c,0xd2,0x49,0x36,0xe8,0xa8,0x98,0xc3,0x2d,},{0x1c,0xa2,0x81,0x93,0x85,0x29,0x89,0x65,0x35,0xa7,0x71,0x4e,0x35,0x84,0x08,0x5b,0x86,0xef,0x9f,0xec,0x72,0x3f,0x42,0x81,0x9f,0xc8,0xdd,0x5d,0x8c,0x00,0x81,0x7f,},{0xa1,0xad,0xc2,0xbc,0x6a,0x2d,0x98,0x06,0x62,0x67,0x7e,0x7f,0xdf,0xf6,0x42,0x4d,0xe7,0xdb,0xa5,0x0f,0x57,0x95,0xca,0x90,0xfd,0xf3,0xe9,0x6e,0x25,0x6f,0x32,0x85,0xca,0xc7,0x1d,0x33,0x60,0x48,0x2e,0x99,0x3d,0x02,0x94,0xba,0x4e,0xc7,0x44,0x0c,0x61,0xaf,0xfd,0xf3,0x5f,0xe8,0x3e,0x6e,0x04,0x26,0x39,0x37,0xdb,0x93,0xf1,0x05,},"\x8b\xa6\xa4\xc9\xa1\x5a\x24\x4a\x9c\x26\xbb\x2a\x59\xb1\x02\x6f\x21\x34\x8b\x49"}, {{0x0e,0x76,0x5d,0x72,0x0e,0x70,0x5f,0x93,0x66,0xc1,0xab,0x8c,0x3f,0xa8,0x4c,0x9a,0x44,0x37,0x0c,0x06,0x96,0x9f,0x80,0x32,0x96,0x88,0x4b,0x28,0x46,0xa6,0x52,0xa4,},{0x7f,0xae,0x45,0xdd,0x0a,0x05,0x97,0x10,0x26,0xd4,0x10,0xbc,0x49,0x7a,0xf5,0xbe,0x7d,0x08,0x27,0xa8,0x2a,0x14,0x5c,0x20,0x3f,0x62,0x5d,0xfc,0xb8,0xb0,0x3b,0xa8,},{0xbb,0x61,0xcf,0x84,0xde,0x61,0x86,0x22,0x07,0xc6,0xa4,0x55,0x25,0x8b,0xc4,0xdb,0x4e,0x15,0xee,0xa0,0x31,0x7f,0xf8,0x87,0x18,0xb8,0x82,0xa0,0x6b,0x5c,0xf6,0xec,0x6f,0xd2,0x0c,0x5a,0x26,0x9e,0x5d,0x5c,0x80,0x5b,0xaf,0xbc,0xc5,0x79,0xe2,0x59,0x0a,0xf4,0x14,0xc7,0xc2,0x27,0x27,0x3c,0x10,0x2a,0x10,0x07,0x0c,0xdf,0xe8,0x0f,},"\x1d\x56\x6a\x62\x32\xbb\xaa\xb3\xe6\xd8\x80\x4b\xb5\x18\xa4\x98\xed\x0f\x90\x49\x86"}, {{0xdb,0x36,0xe3,0x26,0xd6,0x76,0xc2,0xd1,0x9c,0xc8,0xfe,0x0c,0x14,0xb7,0x09,0x20,0x2e,0xcf,0xc7,0x61,0xd2,0x70,0x89,0xeb,0x6e,0xa4,0xb1,0xbb,0x02,0x1e,0xcf,0xa7,},{0x48,0x35,0x9b,0x85,0x0d,0x23,0xf0,0x71,0x5d,0x94,0xbb,0x8b,0xb7,0x5e,0x7e,0x14,0x32,0x2e,0xaf,0x14,0xf0,0x6f,0x28,0xa8,0x05,0x40,0x3f,0xbd,0xa0,0x02,0xfc,0x85,},{0xb6,0xdc,0xd0,0x99,0x89,0xdf,0xba,0xc5,0x43,0x22,0xa3,0xce,0x87,0x87,0x6e,0x1d,0x62,0x13,0x4d,0xa9,0x98,0xc7,0x9d,0x24,0xb5,0x0b,0xd7,0xa6,0xa7,0x97,0xd8,0x6a,0x0e,0x14,0xdc,0x9d,0x74,0x91,0xd6,0xc1,0x4a,0x67,0x3c,0x65,0x2c,0xfb,0xec,0x9f,0x96,0x2a,0x38,0xc9,0x45,0xda,0x3b,0x2f,0x08,0x79,0xd0,0xb6,0x8a,0x92,0x13,0x00,},"\x1b\x0a\xfb\x0a\xc4\xba\x9a\xb7\xb7\x17\x2c\xdd\xc9\xeb\x42\xbb\xa1\xa6\x4b\xce\x47\xd4"}, {{0xc8,0x99,0x55,0xe0,0xf7,0x74,0x1d,0x90,0x5d,0xf0,0x73,0x0b,0x3d,0xc2,0xb0,0xce,0x1a,0x13,0x13,0x4e,0x44,0xfe,0xf3,0xd4,0x0d,0x60,0xc0,0x20,0xef,0x19,0xdf,0x77,},{0xfd,0xb3,0x06,0x73,0x40,0x2f,0xaf,0x1c,0x80,0x33,0x71,0x4f,0x35,0x17,0xe4,0x7c,0xc0,0xf9,0x1f,0xe7,0x0c,0xf3,0x83,0x6d,0x6c,0x23,0x63,0x6e,0x3f,0xd2,0x28,0x7c,},{0x7e,0xf6,0x6e,0x5e,0x86,0xf2,0x36,0x08,0x48,0xe0,0x01,0x4e,0x94,0x88,0x0a,0xe2,0x92,0x0a,0xd8,0xa3,0x18,0x5a,0x46,0xb3,0x5d,0x1e,0x07,0xde,0xa8,0xfa,0x8a,0xe4,0xf6,0xb8,0x43,0xba,0x17,0x4d,0x99,0xfa,0x79,0x86,0x65,0x4a,0x08,0x91,0xc1,0x2a,0x79,0x44,0x55,0x66,0x93,0x75,0xbf,0x92,0xaf,0x4c,0xc2,0x77,0x0b,0x57,0x9e,0x0c,},"\x50\x7c\x94\xc8\x82\x0d\x2a\x57\x93\xcb\xf3\x44\x2b\x3d\x71\x93\x6f\x35\xfe\x3a\xfe\xf3\x16"}, {{0x4e,0x62,0x62,0x7f,0xc2,0x21,0x14,0x24,0x78,0xae,0xe7,0xf0,0x07,0x81,0xf8,0x17,0xf6,0x62,0xe3,0xb7,0x5d,0xb2,0x9b,0xb1,0x4a,0xb4,0x7c,0xf8,0xe8,0x41,0x04,0xd6,},{0xb1,0xd3,0x98,0x01,0x89,0x20,0x27,0xd5,0x8a,0x8c,0x64,0x33,0x51,0x63,0x19,0x58,0x93,0xbf,0xc1,0xb6,0x1d,0xbe,0xca,0x32,0x60,0x49,0x7e,0x1f,0x30,0x37,0x11,0x07,},{0x83,0x6a,0xfa,0x76,0x4d,0x9c,0x48,0xaa,0x47,0x70,0xa4,0x38,0x8b,0x65,0x4e,0x97,0xb3,0xc1,0x6f,0x08,0x29,0x67,0xfe,0xbc,0xa2,0x7f,0x2f,0xc4,0x7d,0xdf,0xd9,0x24,0x4b,0x03,0xcf,0xc7,0x29,0x69,0x8a,0xcf,0x51,0x09,0x70,0x43,0x46,0xb6,0x0b,0x23,0x0f,0x25,0x54,0x30,0x08,0x9d,0xdc,0x56,0x91,0x23,0x99,0xd1,0x12,0x2d,0xe7,0x0a,},"\xd3\xd6\x15\xa8\x47\x2d\x99\x62\xbb\x70\xc5\xb5\x46\x6a\x3d\x98\x3a\x48\x11\x04\x6e\x2a\x0e\xf5"}, {{0x6b,0x83,0xd7,0xda,0x89,0x08,0xc3,0xe7,0x20,0x5b,0x39,0x86,0x4b,0x56,0xe5,0xf3,0xe1,0x71,0x96,0xa3,0xfc,0x9c,0x2f,0x58,0x05,0xaa,0xd0,0xf5,0x55,0x4c,0x14,0x2d,},{0xd0,0xc8,0x46,0xf9,0x7f,0xe2,0x85,0x85,0xc0,0xee,0x15,0x90,0x15,0xd6,0x4c,0x56,0x31,0x1c,0x88,0x6e,0xdd,0xcc,0x18,0x5d,0x29,0x6d,0xbb,0x16,0x5d,0x26,0x25,0xd6,},{0x16,0xe4,0x62,0xa2,0x9a,0x6d,0xd4,0x98,0x68,0x5a,0x37,0x18,0xb3,0xee,0xd0,0x0c,0xc1,0x59,0x86,0x01,0xee,0x47,0x82,0x04,0x86,0x03,0x2d,0x6b,0x9a,0xcc,0x9b,0xf8,0x9f,0x57,0x68,0x4e,0x08,0xd8,0xc0,0xf0,0x55,0x89,0xcd,0xa2,0x88,0x2a,0x05,0xdc,0x4c,0x63,0xf9,0xd0,0x43,0x1d,0x65,0x52,0x71,0x08,0x12,0x43,0x30,0x03,0xbc,0x08,},"\x6a\xda\x80\xb6\xfa\x84\xf7\x03\x49\x20\x78\x9e\x85\x36\xb8\x2d\x5e\x46\x78\x05\x9a\xed\x27\xf7\x1c"}, {{0x19,0xa9,0x1f,0xe2,0x3a,0x4e,0x9e,0x33,0xec,0xc4,0x74,0x87,0x8f,0x57,0xc6,0x4c,0xf1,0x54,0xb3,0x94,0x20,0x34,0x87,0xa7,0x03,0x5e,0x1a,0xd9,0xcd,0x69,0x7b,0x0d,},{0x2b,0xf3,0x2b,0xa1,0x42,0xba,0x46,0x22,0xd8,0xf3,0xe2,0x9e,0xcd,0x85,0xee,0xa0,0x7b,0x9c,0x47,0xbe,0x9d,0x64,0x41,0x2c,0x9b,0x51,0x0b,0x27,0xdd,0x21,0x8b,0x23,},{0x88,0x1f,0x5b,0x8c,0x5a,0x03,0x0d,0xf0,0xf7,0x5b,0x66,0x34,0xb0,0x70,0xdd,0x27,0xbd,0x1e,0xe3,0xc0,0x87,0x38,0xae,0x34,0x93,0x38,0xb3,0xee,0x64,0x69,0xbb,0xf9,0x76,0x0b,0x13,0x57,0x8a,0x23,0x7d,0x51,0x82,0x53,0x5e,0xde,0x12,0x12,0x83,0x02,0x7a,0x90,0xb5,0xf8,0x65,0xd6,0x3a,0x65,0x37,0xdc,0xa0,0x7b,0x44,0x04,0x9a,0x0f,},"\x82\xcb\x53\xc4\xd5\xa0\x13\xba\xe5\x07\x07\x59\xec\x06\xc3\xc6\x95\x5a\xb7\xa4\x05\x09\x58\xec\x32\x8c"}, {{0x1d,0x5b,0x8c,0xb6,0x21,0x5c,0x18,0x14,0x16,0x66,0xba,0xee,0xfc,0xf5,0xd6,0x9d,0xad,0x5b,0xea,0x9a,0x34,0x93,0xdd,0xda,0xa3,0x57,0xa4,0x39,0x7a,0x13,0xd4,0xde,},{0x94,0xd2,0x3d,0x97,0x7c,0x33,0xe4,0x9e,0x5e,0x49,0x92,0xc6,0x8f,0x25,0xec,0x99,0xa2,0x7c,0x41,0xce,0x6b,0x91,0xf2,0xbf,0xa0,0xcd,0x82,0x92,0xfe,0x96,0x28,0x35,},{0x3a,0xcd,0x39,0xbe,0xc8,0xc3,0xcd,0x2b,0x44,0x29,0x97,0x22,0xb5,0x85,0x0a,0x04,0x00,0xc1,0x44,0x35,0x90,0xfd,0x48,0x61,0xd5,0x9a,0xae,0x74,0x96,0xac,0xb3,0xdf,0x73,0xfc,0x3f,0xdf,0x79,0x69,0xae,0x5f,0x50,0xba,0x47,0xdd,0xdc,0x43,0x52,0x46,0xe5,0xfd,0x37,0x6f,0x6b,0x89,0x1c,0xd4,0xc2,0xca,0xf5,0xd6,0x14,0xb6,0x17,0x0c,},"\xa9\xa8\xcb\xb0\xad\x58\x51\x24\xe5\x22\xab\xbf\xb4\x05\x33\xbd\xd6\xf4\x93\x47\xb5\x5b\x18\xe8\x55\x8c\xb0"}, {{0x6a,0x91,0xb3,0x22,0x7c,0x47,0x22,0x99,0x08,0x9b,0xdc,0xe9,0x35,0x6e,0x72,0x6a,0x40,0xef,0xd8,0x40,0xf1,0x10,0x02,0x70,0x8b,0x7e,0xe5,0x5b,0x64,0x10,0x5a,0xc2,},{0x9d,0x08,0x4a,0xa8,0xb9,0x7a,0x6b,0x9b,0xaf,0xa4,0x96,0xdb,0xc6,0xf7,0x6f,0x33,0x06,0xa1,0x16,0xc9,0xd9,0x17,0xe6,0x81,0x52,0x0a,0x0f,0x91,0x43,0x69,0x42,0x7e,},{0xf5,0x87,0x54,0x23,0x78,0x1b,0x66,0x21,0x6c,0xb5,0xe8,0x99,0x8d,0xe5,0xd9,0xff,0xc2,0x9d,0x1d,0x67,0x10,0x70,0x54,0xac,0xe3,0x37,0x45,0x03,0xa9,0xc3,0xef,0x81,0x15,0x77,0xf2,0x69,0xde,0x81,0x29,0x67,0x44,0xbd,0x70,0x6f,0x1a,0xc4,0x78,0xca,0xf0,0x9b,0x54,0xcd,0xf8,0x71,0xb3,0xf8,0x02,0xbd,0x57,0xf9,0xa6,0xcb,0x91,0x01,},"\x5c\xb6\xf9\xaa\x59\xb8\x0e\xca\x14\xf6\xa6\x8f\xb4\x0c\xf0\x7b\x79\x4e\x75\x17\x1f\xba\x96\x26\x2c\x1c\x6a\xdc"}, {{0x93,0xea,0xa8,0x54,0xd7,0x91,0xf0,0x53,0x72,0xce,0x72,0xb9,0x4f,0xc6,0x50,0x3b,0x2f,0xf8,0xae,0x68,0x19,0xe6,0xa2,0x1a,0xfe,0x82,0x5e,0x27,0xad,0xa9,0xe4,0xfb,},{0x16,0xce,0xe8,0xa3,0xf2,0x63,0x18,0x34,0xc8,0x8b,0x67,0x08,0x97,0xff,0x0b,0x08,0xce,0x90,0xcc,0x14,0x7b,0x45,0x93,0xb3,0xf1,0xf4,0x03,0x72,0x7f,0x7e,0x7a,0xd5,},{0xd8,0x34,0x19,0x7c,0x1a,0x30,0x80,0x61,0x4e,0x0a,0x5f,0xa0,0xaa,0xaa,0x80,0x88,0x24,0xf2,0x1c,0x38,0xd6,0x92,0xe6,0xff,0xbd,0x20,0x0f,0x7d,0xfb,0x3c,0x8f,0x44,0x40,0x2a,0x73,0x82,0x18,0x0b,0x98,0xad,0x0a,0xfc,0x8e,0xec,0x1a,0x02,0xac,0xec,0xf3,0xcb,0x7f,0xde,0x62,0x7b,0x9f,0x18,0x11,0x1f,0x26,0x0a,0xb1,0xdb,0x9a,0x07,},"\x32\xfe\x27\x99\x41\x24\x20\x21\x53\xb5\xc7\x0d\x38\x13\xfd\xee\x9c\x2a\xa6\xe7\xdc\x74\x3d\x4d\x53\x5f\x18\x40\xa5"}, {{0x94,0x1c,0xac,0x69,0xfb,0x7b,0x18,0x15,0xc5,0x7b,0xb9,0x87,0xc4,0xd6,0xc2,0xad,0x2c,0x35,0xd5,0xf9,0xa3,0x18,0x2a,0x79,0xd4,0xba,0x13,0xea,0xb2,0x53,0xa8,0xad,},{0x23,0xbe,0x32,0x3c,0x56,0x2d,0xfd,0x71,0xce,0x65,0xf5,0xbb,0xa5,0x6a,0x74,0xa3,0xa6,0xdf,0xc3,0x6b,0x57,0x3d,0x2f,0x94,0xf6,0x35,0xc7,0xf9,0xb4,0xfd,0x5a,0x5b,},{0x0f,0x8f,0xad,0x1e,0x6b,0xde,0x77,0x1b,0x4f,0x54,0x20,0xea,0xc7,0x5c,0x37,0x8b,0xae,0x6d,0xb5,0xac,0x66,0x50,0xcd,0x2b,0xc2,0x10,0xc1,0x82,0x3b,0x43,0x2b,0x48,0xe0,0x16,0xb1,0x05,0x95,0x45,0x8f,0xfa,0xb9,0x2f,0x7a,0x89,0x89,0xb2,0x93,0xce,0xb8,0xdf,0xed,0x6c,0x24,0x3a,0x20,0x38,0xfc,0x06,0x65,0x2a,0xaa,0xf1,0x6f,0x02,},"\xbb\x31\x72\x79\x57\x10\xfe\x00\x05\x4d\x3b\x5d\xfe\xf8\xa1\x16\x23\x58\x2d\xa6\x8b\xf8\xe4\x6d\x72\xd2\x7c\xec\xe2\xaa"}, {{0x1a,0xcd,0xbb,0x79,0x3b,0x03,0x84,0x93,0x46,0x27,0x47,0x0d,0x79,0x5c,0x3d,0x1d,0xd4,0xd7,0x9c,0xea,0x59,0xef,0x98,0x3f,0x29,0x5b,0x9b,0x59,0x17,0x9c,0xbb,0x28,},{0x3f,0x60,0xc7,0x54,0x1a,0xfa,0x76,0xc0,0x19,0xcf,0x5a,0xa8,0x2d,0xcd,0xb0,0x88,0xed,0x9e,0x4e,0xd9,0x78,0x05,0x14,0xae,0xfb,0x37,0x9d,0xab,0xc8,0x44,0xf3,0x1a,},{0xbe,0x71,0xef,0x48,0x06,0xcb,0x04,0x1d,0x88,0x5e,0xff,0xd9,0xe6,0xb0,0xfb,0xb7,0x3d,0x65,0xd7,0xcd,0xec,0x47,0xa8,0x9c,0x8a,0x99,0x48,0x92,0xf4,0xe5,0x5a,0x56,0x8c,0x4c,0xc7,0x8d,0x61,0xf9,0x01,0xe8,0x0d,0xbb,0x62,0x8b,0x86,0xa2,0x3c,0xcd,0x59,0x4e,0x71,0x2b,0x57,0xfa,0x94,0xc2,0xd6,0x7e,0xc2,0x66,0x34,0x87,0x85,0x07,},"\x7c\xf3\x4f\x75\xc3\xda\xc9\xa8\x04\xd0\xfc\xd0\x9e\xba\x9b\x29\xc9\x48\x4e\x8a\x01\x8f\xa9\xe0\x73\x04\x2d\xf8\x8e\x3c\x56"}, {{0x8e,0xd7,0xa7,0x97,0xb9,0xce,0xa8,0xa8,0x37,0x0d,0x41,0x91,0x36,0xbc,0xdf,0x68,0x3b,0x75,0x9d,0x2e,0x3c,0x69,0x47,0xf1,0x7e,0x13,0xe2,0x48,0x5a,0xa9,0xd4,0x20,},{0xb4,0x9f,0x3a,0x78,0xb1,0xc6,0xa7,0xfc,0xa8,0xf3,0x46,0x6f,0x33,0xbc,0x0e,0x92,0x9f,0x01,0xfb,0xa0,0x43,0x06,0xc2,0xa7,0x46,0x5f,0x46,0xc3,0x75,0x93,0x16,0xd9,},{0x04,0x26,0x6c,0x03,0x3b,0x91,0xc1,0x32,0x2c,0xeb,0x34,0x46,0xc9,0x01,0xff,0xcf,0x3c,0xc4,0x0c,0x40,0x34,0xe8,0x87,0xc9,0x59,0x7c,0xa1,0x89,0x3b,0xa7,0x33,0x0b,0xec,0xbb,0xd8,0xb4,0x81,0x42,0xef,0x35,0xc0,0x12,0xc6,0xba,0x51,0xa6,0x6d,0xf9,0x30,0x8c,0xb6,0x26,0x8a,0xd6,0xb1,0xe4,0xb0,0x3e,0x70,0x10,0x24,0x95,0x79,0x0b,},"\xa7\x50\xc2\x32\x93\x3d\xc1\x4b\x11\x84\xd8\x6d\x8b\x4c\xe7\x2e\x16\xd6\x97\x44\xba\x69\x81\x8b\x6a\xc3\x3b\x1d\x82\x3b\xb2\xc3"}, {{0xf2,0xab,0x39,0x6f,0xe8,0x90,0x6e,0x3e,0x56,0x33,0xe9,0x9c,0xab,0xcd,0x5b,0x09,0xdf,0x08,0x59,0xb5,0x16,0x23,0x0b,0x1e,0x04,0x50,0xb5,0x80,0xb6,0x5f,0x61,0x6c,},{0x8e,0xa0,0x74,0x24,0x51,0x59,0xa1,0x16,0xaa,0x71,0x22,0xa2,0x5e,0xc1,0x6b,0x89,0x1d,0x62,0x5a,0x68,0xf3,0x36,0x60,0x42,0x39,0x08,0xf6,0xbd,0xc4,0x4f,0x8c,0x1b,},{0xa0,0x6a,0x23,0xd9,0x82,0xd8,0x1a,0xb8,0x83,0xaa,0xe2,0x30,0xad,0xbc,0x36,0x8a,0x6a,0x99,0x77,0xf0,0x03,0xce,0xbb,0x00,0xd4,0xc2,0xe4,0x01,0x84,0x90,0x19,0x1a,0x84,0xd3,0xa2,0x82,0xfd,0xbf,0xb2,0xfc,0x88,0x04,0x6e,0x62,0xde,0x43,0xe1,0x5f,0xb5,0x75,0x33,0x6b,0x3c,0x8b,0x77,0xd1,0x9c,0xe6,0xa0,0x09,0xce,0x51,0xf5,0x0c,},"\x5a\x44\xe3\x4b\x74\x6c\x5f\xd1\x89\x8d\x55\x2a\xb3\x54\xd2\x8f\xb4\x71\x38\x56\xd7\x69\x7d\xd6\x3e\xb9\xbd\x6b\x99\xc2\x80\xe1\x87"}, {{0x55,0x0a,0x41,0xc0,0x13,0xf7,0x9b,0xab,0x8f,0x06,0xe4,0x3a,0xd1,0x83,0x6d,0x51,0x31,0x27,0x36,0xa9,0x71,0x38,0x06,0xfa,0xfe,0x66,0x45,0x21,0x9e,0xaa,0x1f,0x9d,},{0xaf,0x6b,0x71,0x45,0x47,0x4d,0xc9,0x95,0x4b,0x9a,0xf9,0x3a,0x9c,0xdb,0x34,0x44,0x9d,0x5b,0x7c,0x65,0x1c,0x82,0x4d,0x24,0xe2,0x30,0xb9,0x00,0x33,0xce,0x59,0xc0,},{0x16,0xdc,0x1e,0x2b,0x9f,0xa9,0x09,0xee,0xfd,0xc2,0x77,0xba,0x16,0xeb,0xe2,0x07,0xb8,0xda,0x5e,0x91,0x14,0x3c,0xde,0x78,0xc5,0x04,0x7a,0x89,0xf6,0x81,0xc3,0x3c,0x4e,0x4e,0x34,0x28,0xd5,0xc9,0x28,0x09,0x59,0x03,0xa8,0x11,0xec,0x00,0x2d,0x52,0xa3,0x9e,0xd7,0xf8,0xb3,0xfe,0x19,0x27,0x20,0x0c,0x6d,0xd0,0xb9,0xab,0x3e,0x04,},"\x8b\xc4\x18\x5e\x50\xe5\x7d\x5f\x87\xf4\x75\x15\xfe\x2b\x18\x37\xd5\x85\xf0\xaa\xe9\xe1\xca\x38\x3b\x3e\xc9\x08\x88\x4b\xb9\x00\xff\x27"}, {{0x19,0xac,0x3e,0x27,0x24,0x38,0xc7,0x2d,0xdf,0x7b,0x88,0x19,0x64,0x86,0x7c,0xb3,0xb3,0x1f,0xf4,0xc7,0x93,0xbb,0x7e,0xa1,0x54,0x61,0x3c,0x1d,0xb0,0x68,0xcb,0x7e,},{0xf8,0x5b,0x80,0xe0,0x50,0xa1,0xb9,0x62,0x0d,0xb1,0x38,0xbf,0xc9,0xe1,0x00,0x32,0x7e,0x25,0xc2,0x57,0xc5,0x92,0x17,0xb6,0x01,0xf1,0xf6,0xac,0x9a,0x41,0x3d,0x3f,},{0xea,0x85,0x5d,0x78,0x1c,0xbe,0xa4,0x68,0x2e,0x35,0x01,0x73,0xcb,0x89,0xe8,0x61,0x9c,0xcf,0xdd,0xb9,0x7c,0xdc,0xe1,0x6f,0x9a,0x2f,0x6f,0x68,0x92,0xf4,0x6d,0xbe,0x68,0xe0,0x4b,0x12,0xb8,0xd8,0x86,0x89,0xa7,0xa3,0x16,0x70,0xcd,0xff,0x40,0x9a,0xf9,0x8a,0x93,0xb4,0x9a,0x34,0x53,0x7b,0x6a,0xa0,0x09,0xd2,0xeb,0x8b,0x47,0x01,},"\x95\x87\x2d\x5f\x78\x9f\x95\x48\x4e\x30\xcb\xb0\xe1\x14\x02\x89\x53\xb1\x6f\x5c\x6a\x8d\x9f\x65\xc0\x03\xa8\x35\x43\xbe\xaa\x46\xb3\x86\x45"}, {{0xca,0x26,0x7d,0xe9,0x6c,0x93,0xc2,0x38,0xfa,0xfb,0x12,0x79,0x81,0x20,0x59,0xab,0x93,0xac,0x03,0x05,0x96,0x57,0xfd,0x99,0x4f,0x8f,0xa5,0xa0,0x92,0x39,0xc8,0x21,},{0x01,0x73,0x70,0xc8,0x79,0x09,0x0a,0x81,0xc7,0xf2,0x72,0xc2,0xfc,0x80,0xe3,0xaa,0xc2,0xbc,0x60,0x3f,0xcb,0x37,0x9a,0xfc,0x98,0x69,0x11,0x60,0xab,0x74,0x5b,0x26,},{0xac,0x95,0x7f,0x82,0x33,0x5a,0xa7,0x14,0x1e,0x96,0xb5,0x9d,0x63,0xe3,0xcc,0xee,0x95,0xc3,0xa2,0xc4,0x7d,0x02,0x65,0x40,0xc2,0xaf,0x42,0xdc,0x95,0x33,0xd5,0xfd,0x81,0x82,0x7d,0x16,0x79,0xad,0x18,0x7a,0xea,0xf3,0x78,0x34,0x91,0x5e,0x75,0xb1,0x47,0xa9,0x28,0x68,0x06,0xc8,0x01,0x75,0x16,0xba,0x43,0xdd,0x05,0x1a,0x5e,0x0c,},"\xe0\x5f\x71\xe4\xe4\x9a\x72\xec\x55\x0c\x44\xa3\xb8\x5a\xca\x8f\x20\xff\x26\xc3\xee\x94\xa8\x0f\x1b\x43\x1c\x7d\x15\x4e\xc9\x60\x3e\xe0\x25\x31"}, {{0x3d,0xff,0x5e,0x89,0x94,0x75,0xe7,0xe9,0x1d,0xd2,0x61,0x32,0x2f,0xab,0x09,0x98,0x0c,0x52,0x97,0x0d,0xe1,0xda,0x6e,0x2e,0x20,0x16,0x60,0xcc,0x4f,0xce,0x70,0x32,},{0xf3,0x01,0x62,0xba,0xc9,0x84,0x47,0xc4,0x04,0x2f,0xac,0x05,0xda,0x44,0x80,0x34,0x62,0x9b,0xe2,0xc6,0xa5,0x8d,0x30,0xdf,0xd5,0x78,0xba,0x9f,0xb5,0xe3,0x93,0x0b,},{0x5e,0xfe,0x7a,0x92,0xff,0x96,0x23,0x08,0x9b,0x3e,0x3b,0x78,0xf3,0x52,0x11,0x53,0x66,0xe2,0x6b,0xa3,0xfb,0x1a,0x41,0x62,0x09,0xbc,0x02,0x9e,0x9c,0xad,0xcc,0xd9,0xf4,0xaf,0xfa,0x33,0x35,0x55,0xa8,0xf3,0xa3,0x5a,0x9d,0x0f,0x7c,0x34,0xb2,0x92,0xca,0xe7,0x7e,0xc9,0x6f,0xa3,0xad,0xfc,0xaa,0xde,0xe2,0xd9,0xce,0xd8,0xf8,0x05,},"\x93\x8f\x0e\x77\x62\x1b\xf3\xea\x52\xc7\xc4\x91\x1c\x51\x57\xc2\xd8\xa2\xa8\x58\x09\x3e\xf1\x6a\xa9\xb1\x07\xe6\x9d\x98\x03\x7b\xa1\x39\xa3\xc3\x82"}, {{0x9a,0x6b,0x84,0x78,0x64,0xe7,0x0c,0xfe,0x8b,0xa6,0xab,0x22,0xfa,0x0c,0xa3,0x08,0xc0,0xcc,0x8b,0xec,0x71,0x41,0xfb,0xca,0xa3,0xb8,0x1f,0x5d,0x1e,0x1c,0xfc,0xfc,},{0x34,0xad,0x0f,0xbd,0xb2,0x56,0x65,0x07,0xa8,0x1c,0x2b,0x1f,0x8a,0xa8,0xf5,0x3d,0xcc,0xaa,0x64,0xcc,0x87,0xad,0xa9,0x1b,0x90,0x3e,0x90,0x0d,0x07,0xee,0xe9,0x30,},{0x2a,0xb2,0x55,0x16,0x9c,0x48,0x9c,0x54,0xc7,0x32,0x23,0x2e,0x37,0xc8,0x73,0x49,0xd4,0x86,0xb1,0xeb,0xa2,0x05,0x09,0xdb,0xab,0xe7,0xfe,0xd3,0x29,0xef,0x08,0xfd,0x75,0xba,0x1c,0xd1,0x45,0xe6,0x7b,0x2e,0xa2,0x6c,0xb5,0xcc,0x51,0xca,0xb3,0x43,0xee,0xb0,0x85,0xfe,0x1f,0xd7,0xb0,0xec,0x4c,0x6a,0xfc,0xd9,0xb9,0x79,0xf9,0x05,},"\x83\x83\x67\x47\x11\x83\xc7\x1f\x7e\x71\x77\x24\xf8\x9d\x40\x1c\x3a\xd9\x86\x3f\xd9\xcc\x7a\xa3\xcf\x33\xd3\xc5\x29\x86\x0c\xb5\x81\xf3\x09\x3d\x87\xda"}, {{0x57,0x5b,0xe0,0x7a,0xfc,0xa5,0xd0,0x63,0xc2,0x38,0xcd,0x9b,0x80,0x28,0x77,0x2c,0xc4,0x9c,0xda,0x34,0x47,0x14,0x32,0xa2,0xe1,0x66,0xe0,0x96,0xe2,0x21,0x9e,0xfc,},{0x94,0xe5,0xeb,0x4d,0x50,0x24,0xf4,0x9d,0x7e,0xbf,0x79,0x81,0x7c,0x8d,0xe1,0x14,0x97,0xdc,0x2b,0x55,0x62,0x2a,0x51,0xae,0x12,0x3f,0xfc,0x74,0x9d,0xbb,0x16,0xe0,},{0x58,0x27,0x1d,0x44,0x23,0x6f,0x3b,0x98,0xc5,0x8f,0xd7,0xae,0x0d,0x2f,0x49,0xef,0x2b,0x6e,0x3a,0xff,0xdb,0x22,0x5a,0xa3,0xba,0x55,0x5f,0x0e,0x11,0xcc,0x53,0xc2,0x3a,0xd1,0x9b,0xaf,0x24,0x34,0x65,0x90,0xd0,0x5d,0x7d,0x53,0x90,0x58,0x20,0x82,0xcf,0x94,0xd3,0x9c,0xad,0x65,0x30,0xab,0x93,0xd1,0x3e,0xfb,0x39,0x27,0x95,0x06,},"\x33\xe5\x91\x8b\x66\xd3\x3d\x55\xfe\x71\x7c\xa3\x43\x83\xea\xe7\x8f\x0a\xf8\x28\x89\xca\xf6\x69\x6e\x1a\xc9\xd9\x5d\x1f\xfb\x32\xcb\xa7\x55\xf9\xe3\x50\x3e"}, {{0x15,0xff,0xb4,0x55,0x14,0xd4,0x34,0x44,0xd6,0x1f,0xcb,0x10,0x5e,0x30,0xe1,0x35,0xfd,0x26,0x85,0x23,0xdd,0xa2,0x0b,0x82,0x75,0x8b,0x17,0x94,0x23,0x11,0x04,0x41,},{0x17,0x72,0xc5,0xab,0xc2,0xd2,0x3f,0xd2,0xf9,0xd1,0xc3,0x25,0x7b,0xe7,0xbc,0x3c,0x1c,0xd7,0x9c,0xee,0x40,0x84,0x4b,0x74,0x9b,0x3a,0x77,0x43,0xd2,0xf9,0x64,0xb8,},{0x68,0x28,0xcd,0x76,0x24,0xe7,0x93,0xb8,0xa4,0xce,0xb9,0x6d,0x3c,0x2a,0x97,0x5b,0xf7,0x73,0xe5,0xff,0x66,0x45,0xf3,0x53,0x61,0x40,0x58,0x62,0x1e,0x58,0x83,0x52,0x89,0xe7,0xf3,0x1f,0x42,0xdf,0xe6,0xaf,0x6d,0x73,0x6f,0x26,0x44,0x51,0x1e,0x32,0x0c,0x0f,0xa6,0x98,0x58,0x2a,0x79,0x77,0x8d,0x18,0x73,0x0e,0xd3,0xe8,0xcb,0x08,},"\xda\x9c\x55\x59\xd0\xea\x51\xd2\x55\xb6\xbd\x9d\x76\x38\xb8\x76\x47\x2f\x94\x2b\x33\x0f\xc0\xe2\xb3\x0a\xea\x68\xd7\x73\x68\xfc\xe4\x94\x82\x72\x99\x1d\x25\x7e"}, {{0xfe,0x05,0x68,0x64,0x29,0x43,0xb2,0xe1,0xaf,0xbf,0xd1,0xf1,0x0f,0xe8,0xdf,0x87,0xa4,0x23,0x6b,0xea,0x40,0xdc,0xe7,0x42,0x07,0x2c,0xb2,0x18,0x86,0xee,0xc1,0xfa,},{0x29,0x9e,0xbd,0x1f,0x13,0x17,0x7d,0xbd,0xb6,0x6a,0x91,0x2b,0xbf,0x71,0x20,0x38,0xfd,0xf7,0x3b,0x06,0xc3,0xac,0x02,0x0c,0x7b,0x19,0x12,0x67,0x55,0xd4,0x7f,0x61,},{0xd5,0x9e,0x6d,0xfc,0xc6,0xd7,0xe3,0xe2,0xc5,0x8d,0xec,0x81,0xe9,0x85,0xd2,0x45,0xe6,0x81,0xac,0xf6,0x59,0x4a,0x23,0xc5,0x92,0x14,0xf7,0xbe,0xd8,0x01,0x5d,0x81,0x3c,0x76,0x82,0xb6,0x0b,0x35,0x83,0x44,0x03,0x11,0xe7,0x2a,0x86,0x65,0xba,0x2c,0x96,0xde,0xc2,0x3c,0xe8,0x26,0xe1,0x60,0x12,0x7e,0x18,0x13,0x2b,0x03,0x04,0x04,},"\xc5\x9d\x08\x62\xec\x1c\x97\x46\xab\xcc\x3c\xf8\x3c\x9e\xeb\xa2\xc7\x08\x2a\x03\x6a\x8c\xb5\x7c\xe4\x87\xe7\x63\x49\x27\x96\xd4\x7e\x6e\x06\x3a\x0c\x1f\xec\xcc\x2d"}, {{0x5e,0xcb,0x16,0xc2,0xdf,0x27,0xc8,0xcf,0x58,0xe4,0x36,0xa9,0xd3,0xaf,0xfb,0xd5,0x8e,0x95,0x38,0xa9,0x26,0x59,0xa0,0xf9,0x7c,0x4c,0x4f,0x99,0x46,0x35,0xa8,0xca,},{0xda,0x76,0x8b,0x20,0xc4,0x37,0xdd,0x3a,0xa5,0xf8,0x4b,0xb6,0xa0,0x77,0xff,0xa3,0x4a,0xb6,0x85,0x01,0xc5,0x35,0x2b,0x5c,0xc3,0xfd,0xce,0x7f,0xe6,0xc2,0x39,0x8d,},{0x1c,0x72,0x3a,0x20,0xc6,0x77,0x24,0x26,0xa6,0x70,0xe4,0xd5,0xc4,0xa9,0x7c,0x6e,0xbe,0x91,0x47,0xf7,0x1b,0xb0,0xa4,0x15,0x63,0x1e,0x44,0x40,0x6e,0x29,0x03,0x22,0xe4,0xca,0x97,0x7d,0x34,0x8f,0xe7,0x85,0x6a,0x8e,0xdc,0x23,0x5d,0x0f,0xe9,0x5f,0x7e,0xd9,0x1a,0xef,0xdd,0xf2,0x8a,0x77,0xe2,0xc7,0xdb,0xfd,0x8f,0x55,0x2f,0x0a,},"\x56\xf1\x32\x9d\x9a\x6b\xe2\x5a\x61\x59\xc7\x2f\x12\x68\x8d\xc8\x31\x4e\x85\xdd\x9e\x7e\x4d\xc0\x5b\xbe\xcb\x77\x29\xe0\x23\xc8\x6f\x8e\x09\x37\x35\x3f\x27\xc7\xed\xe9"}, {{0xd5,0x99,0xd6,0x37,0xb3,0xc3,0x0a,0x82,0xa9,0x98,0x4e,0x2f,0x75,0x84,0x97,0xd1,0x44,0xde,0x6f,0x06,0xb9,0xfb,0xa0,0x4d,0xd4,0x0f,0xd9,0x49,0x03,0x9d,0x7c,0x84,},{0x67,0x91,0xd8,0xce,0x50,0xa4,0x46,0x89,0xfc,0x17,0x87,0x27,0xc5,0xc3,0xa1,0xc9,0x59,0xfb,0xee,0xd7,0x4e,0xf7,0xd8,0xe7,0xbd,0x3c,0x1a,0xb4,0xda,0x31,0xc5,0x1f,},{0xeb,0xf1,0x0d,0x9a,0xc7,0xc9,0x61,0x08,0x14,0x0e,0x7d,0xef,0x6f,0xe9,0x53,0x3d,0x72,0x76,0x46,0xff,0x5b,0x3a,0xf2,0x73,0xc1,0xdf,0x95,0x76,0x2a,0x66,0xf3,0x2b,0x65,0xa0,0x96,0x34,0xd0,0x13,0xf5,0x4b,0x5d,0xd6,0x01,0x1f,0x91,0xbc,0x33,0x6c,0xa8,0xb3,0x55,0xce,0x33,0xf8,0xcf,0xbe,0xc2,0x53,0x5a,0x4c,0x42,0x7f,0x82,0x05,},"\xa7\xc0\x4e\x8b\xa7\x5d\x0a\x03\xd8\xb1\x66\xad\x7a\x1d\x77\xe1\xb9\x1c\x7a\xaf\x7b\xef\xdd\x99\x31\x1f\xc3\xc5\x4a\x68\x4d\xdd\x97\x1d\x5b\x32\x11\xc3\xee\xaf\xf1\xe5\x4e"}, {{0x30,0xab,0x82,0x32,0xfa,0x70,0x18,0xf0,0xce,0x6c,0x39,0xbd,0x8f,0x78,0x2f,0xe2,0xe1,0x59,0x75,0x8b,0xb0,0xf2,0xf4,0x38,0x6c,0x7f,0x28,0xcf,0xd2,0xc8,0x58,0x98,},{0xec,0xfb,0x6a,0x2b,0xd4,0x2f,0x31,0xb6,0x12,0x50,0xba,0x5d,0xe7,0xe4,0x6b,0x47,0x19,0xaf,0xdf,0xbc,0x66,0x0d,0xb7,0x1a,0x7b,0xd1,0xdf,0x7b,0x0a,0x3a,0xbe,0x37,},{0x9a,0xf8,0x85,0x34,0x4c,0xc7,0x23,0x94,0x98,0xf7,0x12,0xdf,0x80,0xbc,0x01,0xb8,0x06,0x38,0x29,0x1e,0xd4,0xa1,0xd2,0x8b,0xaa,0x55,0x45,0x01,0x7a,0x72,0xe2,0xf6,0x56,0x49,0xcc,0xf9,0x60,0x3d,0xa6,0xeb,0x5b,0xfa,0xb9,0xf5,0x54,0x3a,0x6c,0xa4,0xa7,0xaf,0x38,0x66,0x15,0x3c,0x76,0xbf,0x66,0xbf,0x95,0xde,0xf6,0x15,0xb0,0x0c,},"\x63\xb8\x0b\x79\x56\xac\xbe\xcf\x0c\x35\xe9\xab\x06\xb9\x14\xb0\xc7\x01\x4f\xe1\xa4\xbb\xc0\x21\x72\x40\xc1\xa3\x30\x95\xd7\x07\x95\x3e\xd7\x7b\x15\xd2\x11\xad\xaf\x9b\x97\xdc"}, {{0x0d,0xdc,0xdc,0x87,0x2c,0x7b,0x74,0x8d,0x40,0xef,0xe9,0x6c,0x28,0x81,0xae,0x18,0x9d,0x87,0xf5,0x61,0x48,0xed,0x8a,0xf3,0xeb,0xbb,0xc8,0x03,0x24,0xe3,0x8b,0xdd,},{0x58,0x8d,0xda,0xdc,0xbc,0xed,0xf4,0x0d,0xf0,0xe9,0x69,0x7d,0x8b,0xb2,0x77,0xc7,0xbb,0x14,0x98,0xfa,0x1d,0x26,0xce,0x0a,0x83,0x5a,0x76,0x0b,0x92,0xca,0x7c,0x85,},{0xc1,0x79,0xc0,0x94,0x56,0xe2,0x35,0xfe,0x24,0x10,0x5a,0xfa,0x6e,0x8e,0xc0,0x46,0x37,0xf8,0xf9,0x43,0x81,0x7c,0xd0,0x98,0xba,0x95,0x38,0x7f,0x96,0x53,0xb2,0xad,0xd1,0x81,0xa3,0x14,0x47,0xd9,0x2d,0x1a,0x1d,0xdf,0x1c,0xeb,0x0d,0xb6,0x21,0x18,0xde,0x9d,0xff,0xb7,0xdc,0xd2,0x42,0x40,0x57,0xcb,0xdf,0xf5,0xd4,0x1d,0x04,0x03,},"\x65\x64\x1c\xd4\x02\xad\xd8\xbf\x3d\x1d\x67\xdb\xeb\x6d\x41\xde\xbf\xbe\xf6\x7e\x43\x17\xc3\x5b\x0a\x6d\x5b\xbb\xae\x0e\x03\x4d\xe7\xd6\x70\xba\x14\x13\xd0\x56\xf2\xd6\xf1\xde\x12"}, {{0x89,0xf0,0xd6,0x82,0x99,0xba,0x0a,0x5a,0x83,0xf2,0x48,0xae,0x0c,0x16,0x9f,0x8e,0x38,0x49,0xa9,0xb4,0x7b,0xd4,0x54,0x98,0x84,0x30,0x5c,0x99,0x12,0xb4,0x66,0x03,},{0xab,0xa3,0xe7,0x95,0xaa,0xb2,0x01,0x2a,0xcc,0xea,0xdd,0x7b,0x3b,0xd9,0xda,0xee,0xed,0x6f,0xf5,0x25,0x8b,0xdc,0xd7,0xc9,0x36,0x99,0xc2,0xa3,0x83,0x6e,0x38,0x32,},{0x2c,0x69,0x1f,0xa8,0xd4,0x87,0xce,0x20,0xd5,0xd2,0xfa,0x41,0x55,0x91,0x16,0xe0,0xbb,0xf4,0x39,0x7c,0xf5,0x24,0x0e,0x15,0x25,0x56,0x18,0x35,0x41,0xd6,0x6c,0xf7,0x53,0x58,0x24,0x01,0xa4,0x38,0x8d,0x39,0x03,0x39,0xdb,0xef,0x4d,0x38,0x47,0x43,0xca,0xa3,0x46,0xf5,0x5f,0x8d,0xab,0xa6,0x8b,0xa7,0xb9,0x13,0x1a,0x8a,0x6e,0x0b,},"\x4f\x18\x46\xdd\x7a\xd5\x0e\x54\x5d\x4c\xfb\xff\xbb\x1d\xc2\xff\x14\x5d\xc1\x23\x75\x4d\x08\xaf\x4e\x44\xec\xc0\xbc\x8c\x91\x41\x13\x88\xbc\x76\x53\xe2\xd8\x93\xd1\xea\xc2\x10\x7d\x05"}, {{0x0a,0x3c,0x18,0x44,0xe2,0xdb,0x07,0x0f,0xb2,0x4e,0x3c,0x95,0xcb,0x1c,0xc6,0x71,0x4e,0xf8,0x4e,0x2c,0xcd,0x2b,0x9d,0xd2,0xf1,0x46,0x0e,0xbf,0x7e,0xcf,0x13,0xb1,},{0x72,0xe4,0x09,0x93,0x7e,0x06,0x10,0xeb,0x5c,0x20,0xb3,0x26,0xdc,0x6e,0xa1,0xbb,0xbc,0x04,0x06,0x70,0x1c,0x5c,0xd6,0x7d,0x1f,0xbd,0xe0,0x91,0x92,0xb0,0x7c,0x01,},{0x87,0xf7,0xfd,0xf4,0x60,0x95,0x20,0x1e,0x87,0x7a,0x58,0x8f,0xe3,0xe5,0xaa,0xf4,0x76,0xbd,0x63,0x13,0x8d,0x8a,0x87,0x8b,0x89,0xd6,0xac,0x60,0x63,0x1b,0x34,0x58,0xb9,0xd4,0x1a,0x3c,0x61,0xa5,0x88,0xe1,0xdb,0x8d,0x29,0xa5,0x96,0x89,0x81,0xb0,0x18,0x77,0x6c,0x58,0x87,0x80,0x92,0x2f,0x5a,0xa7,0x32,0xba,0x63,0x79,0xdd,0x05,},"\x4c\x82\x74\xd0\xed\x1f\x74\xe2\xc8\x6c\x08\xd9\x55\xbd\xe5\x5b\x2d\x54\x32\x7e\x82\x06\x2a\x1f\x71\xf7\x0d\x53\x6f\xdc\x87\x22\xcd\xea\xd7\xd2\x2a\xae\xad\x2b\xfa\xa1\xad\x00\xb8\x29\x57"}, {{0xc8,0xd7,0xa8,0x81,0x8b,0x98,0xdf,0xdb,0x20,0x83,0x9c,0x87,0x1c,0xb5,0xc4,0x8e,0x9e,0x94,0x70,0xca,0x3a,0xd3,0x5b,0xa2,0x61,0x3a,0x5d,0x31,0x99,0xc8,0xab,0x23,},{0x90,0xd2,0xef,0xbb,0xa4,0xd4,0x3e,0x6b,0x2b,0x99,0x2c,0xa1,0x60,0x83,0xdb,0xcf,0xa2,0xb3,0x22,0x38,0x39,0x07,0xb0,0xee,0x75,0xf3,0xe9,0x58,0x45,0xd3,0xc4,0x7f,},{0xfa,0x2e,0x99,0x44,0x21,0xae,0xf1,0xd5,0x85,0x66,0x74,0x81,0x3d,0x05,0xcb,0xd2,0xcf,0x84,0xef,0x5e,0xb4,0x24,0xaf,0x6e,0xcd,0x0d,0xc6,0xfd,0xbd,0xc2,0xfe,0x60,0x5f,0xe9,0x85,0x88,0x33,0x12,0xec,0xf3,0x4f,0x59,0xbf,0xb2,0xf1,0xc9,0x14,0x9e,0x5b,0x9c,0xc9,0xec,0xda,0x05,0xb2,0x73,0x11,0x30,0xf3,0xed,0x28,0xdd,0xae,0x0b,},"\x78\x3e\x33\xc3\xac\xbd\xbb\x36\xe8\x19\xf5\x44\xa7\x78\x1d\x83\xfc\x28\x3d\x33\x09\xf5\xd3\xd1\x2c\x8d\xcd\x6b\x0b\x3d\x0e\x89\xe3\x8c\xfd\x3b\x4d\x08\x85\x66\x1c\xa5\x47\xfb\x97\x64\xab\xff"}, {{0xb4,0x82,0x70,0x36,0x12,0xd0,0xc5,0x86,0xf7,0x6c,0xfc,0xb2,0x1c,0xfd,0x21,0x03,0xc9,0x57,0x25,0x15,0x04,0xa8,0xc0,0xac,0x4c,0x86,0xc9,0xc6,0xf3,0xe4,0x29,0xff,},{0xfd,0x71,0x1d,0xc7,0xdd,0x3b,0x1d,0xfb,0x9d,0xf9,0x70,0x4b,0xe3,0xe6,0xb2,0x6f,0x58,0x7f,0xe7,0xdd,0x7b,0xa4,0x56,0xa9,0x1b,0xa4,0x3f,0xe5,0x1a,0xec,0x09,0xad,},{0x58,0x83,0x2b,0xde,0xb2,0x6f,0xea,0xfc,0x31,0xb4,0x62,0x77,0xcf,0x3f,0xb5,0xd7,0xa1,0x7d,0xfb,0x7c,0xcd,0x9b,0x1f,0x58,0xec,0xbe,0x6f,0xeb,0x97,0x96,0x66,0x82,0x8f,0x23,0x9b,0xa4,0xd7,0x52,0x19,0x26,0x0e,0xca,0xc0,0xac,0xf4,0x0f,0x0e,0x5e,0x25,0x90,0xf4,0xca,0xa1,0x6b,0xbb,0xcd,0x8a,0x15,0x5d,0x34,0x79,0x67,0xa6,0x07,},"\x29\xd7\x7a\xcf\xd9\x9c\x7a\x00\x70\xa8\x8f\xeb\x62\x47\xa2\xbc\xe9\x98\x4f\xe3\xe6\xfb\xf1\x9d\x40\x45\x04\x2a\x21\xab\x26\xcb\xd7\x71\xe1\x84\xa9\xa7\x5f\x31\x6b\x64\x8c\x69\x20\xdb\x92\xb8\x7b"}, {{0x84,0xe5,0x0d,0xd9,0xa0,0xf1,0x97,0xe3,0x89,0x3c,0x38,0xdb,0xd9,0x1f,0xaf,0xc3,0x44,0xc1,0x77,0x6d,0x3a,0x40,0x0e,0x2f,0x0f,0x0e,0xe7,0xaa,0x82,0x9e,0xb8,0xa2,},{0x2c,0x50,0xf8,0x70,0xee,0x48,0xb3,0x6b,0x0a,0xc2,0xf8,0xa5,0xf3,0x36,0xfb,0x09,0x0b,0x11,0x30,0x50,0xdb,0xcc,0x25,0xe0,0x78,0x20,0x0a,0x6e,0x16,0x15,0x3e,0xea,},{0x69,0xe6,0xa4,0x49,0x1a,0x63,0x83,0x73,0x16,0xe8,0x6a,0x5f,0x4b,0xa7,0xcd,0x0d,0x73,0x1e,0xcc,0x58,0xf1,0xd0,0xa2,0x64,0xc6,0x7c,0x89,0xbe,0xfd,0xd8,0xd3,0x82,0x9d,0x8d,0xe1,0x3b,0x33,0xcc,0x0b,0xf5,0x13,0x93,0x17,0x15,0xc7,0x80,0x96,0x57,0xe2,0xbf,0xb9,0x60,0xe5,0xc7,0x64,0xc9,0x71,0xd7,0x33,0x74,0x60,0x93,0xe5,0x00,},"\xf3\x99\x2c\xde\x64\x93\xe6\x71\xf1\xe1\x29\xdd\xca\x80\x38\xb0\xab\xdb\x77\xbb\x90\x35\xf9\xf8\xbe\x54\xbd\x5d\x68\xc1\xae\xff\x72\x4f\xf4\x7d\x29\x34\x43\x91\xdc\x53\x61\x66\xb8\x67\x1c\xbb\xf1\x23"}, {{0xb3,0x22,0xd4,0x65,0x77,0xa2,0xa9,0x91,0xa4,0xd1,0x69,0x82,0x87,0x83,0x2a,0x39,0xc4,0x87,0xef,0x77,0x6b,0x4b,0xff,0x03,0x7a,0x05,0xc7,0xf1,0x81,0x2b,0xde,0xec,},{0xeb,0x2b,0xca,0xdf,0xd3,0xee,0xc2,0x98,0x6b,0xaf,0xf3,0x2b,0x98,0xe7,0xc4,0xdb,0xf0,0x3f,0xf9,0x5d,0x8a,0xd5,0xff,0x9a,0xa9,0x50,0x6e,0x54,0x72,0xff,0x84,0x5f,},{0xc7,0xb5,0x51,0x37,0x31,0x7c,0xa2,0x1e,0x33,0x48,0x9f,0xf6,0xa9,0xbf,0xab,0x97,0xc8,0x55,0xdc,0x6f,0x85,0x68,0x4a,0x70,0xa9,0x12,0x5a,0x26,0x1b,0x56,0xd5,0xe6,0xf1,0x49,0xc5,0x77,0x4d,0x73,0x4f,0x2d,0x8d,0xeb,0xfc,0x77,0xb7,0x21,0x89,0x6a,0x82,0x67,0xc2,0x37,0x68,0xe9,0xba,0xdb,0x91,0x0e,0xef,0x83,0xec,0x25,0x88,0x02,},"\x19\xf1\xbf\x5d\xcf\x17\x50\xc6\x11\xf1\xc4\xa2\x86\x52\x00\x50\x4d\x82\x29\x8e\xdd\x72\x67\x1f\x62\xa7\xb1\x47\x1a\xc3\xd4\xa3\x0f\x7d\xe9\xe5\xda\x41\x08\xc5\x2a\x4c\xe7\x0a\x3e\x11\x4a\x52\xa3\xb3\xc5"}, {{0x96,0x0c,0xab,0x50,0x34,0xb9,0x83,0x8d,0x09,0x8d,0x2d,0xcb,0xf4,0x36,0x4b,0xec,0x16,0xd3,0x88,0xf6,0x37,0x6d,0x73,0xa6,0x27,0x3b,0x70,0xf8,0x2b,0xbc,0x98,0xc0,},{0x5e,0x3c,0x19,0xf2,0x41,0x5a,0xcf,0x72,0x9f,0x82,0x9a,0x4e,0xbd,0x5c,0x40,0xe1,0xa6,0xbc,0x9f,0xbc,0xa9,0x57,0x03,0xa9,0x37,0x60,0x87,0xed,0x09,0x37,0xe5,0x1a,},{0x27,0xd4,0xc3,0xa1,0x81,0x1e,0xf9,0xd4,0x36,0x0b,0x3b,0xdd,0x13,0x3c,0x2c,0xcc,0x30,0xd0,0x2c,0x2f,0x24,0x82,0x15,0x77,0x6c,0xb0,0x7e,0xe4,0x17,0x7f,0x9b,0x13,0xfc,0x42,0xdd,0x70,0xa6,0xc2,0xfe,0xd8,0xf2,0x25,0xc7,0x66,0x3c,0x7f,0x18,0x2e,0x7e,0xe8,0xec,0xcf,0xf2,0x0d,0xc7,0xb0,0xe1,0xd5,0x83,0x4e,0xc5,0xb1,0xea,0x01,},"\xf8\xb2\x19\x62\x44\x7b\x0a\x8f\x2e\x42\x79\xde\x41\x1b\xea\x12\x8e\x0b\xe4\x4b\x69\x15\xe6\xcd\xa8\x83\x41\xa6\x8a\x0d\x81\x83\x57\xdb\x93\x8e\xac\x73\xe0\xaf\x6d\x31\x20\x6b\x39\x48\xf8\xc4\x8a\x44\x73\x08"}, {{0xeb,0x77,0xb2,0x63,0x8f,0x23,0xee,0xbc,0x82,0xef,0xe4,0x5e,0xe9,0xe5,0xa0,0x32,0x66,0x37,0x40,0x1e,0x66,0x3e,0xd0,0x29,0x69,0x9b,0x21,0xe6,0x44,0x3f,0xb4,0x8e,},{0x9e,0xf2,0x76,0x08,0x96,0x1a,0xc7,0x11,0xde,0x71,0xa6,0xe2,0xd4,0xd4,0x66,0x3e,0xa3,0xec,0xd4,0x2f,0xb7,0xe4,0xe8,0x62,0x7c,0x39,0x62,0x2d,0xf4,0xaf,0x0b,0xbc,},{0x18,0xdc,0x56,0xd7,0xbd,0x9a,0xcd,0x4f,0x4d,0xaa,0x78,0x54,0x0b,0x4a,0xc8,0xff,0x7a,0xa9,0x81,0x5f,0x45,0xa0,0xbb,0xa3,0x70,0x73,0x1a,0x14,0xea,0xab,0xe9,0x6d,0xf8,0xb5,0xf3,0x7d,0xbf,0x8e,0xae,0x4c,0xb1,0x5a,0x64,0xb2,0x44,0x65,0x1e,0x59,0xd6,0xa3,0xd6,0x76,0x1d,0x9e,0x3c,0x50,0xf2,0xd0,0xcb,0xb0,0x9c,0x05,0xec,0x06,},"\x99\xe3\xd0\x09\x34\x00\x3e\xba\xfc\x3e\x9f\xdb\x68\x7b\x0f\x5f\xf9\xd5\x78\x2a\x4b\x1f\x56\xb9\x70\x00\x46\xc0\x77\x91\x56\x02\xc3\x13\x4e\x22\xfc\x90\xed\x7e\x69\x0f\xdd\xd4\x43\x3e\x20\x34\xdc\xb2\xdc\x99\xab"}, {{0xb6,0x25,0xaa,0x89,0xd3,0xf7,0x30,0x87,0x15,0x42,0x7b,0x6c,0x39,0xbb,0xac,0x58,0xef,0xfd,0x3a,0x0f,0xb7,0x31,0x6f,0x7a,0x22,0xb9,0x9e,0xe5,0x92,0x2f,0x2d,0xc9,},{0x65,0xa9,0x9c,0x3e,0x16,0xfe,0xa8,0x94,0xec,0x33,0xc6,0xb2,0x0d,0x91,0x05,0xe2,0xa0,0x4e,0x27,0x64,0xa4,0x76,0x9d,0x9b,0xbd,0x4d,0x8b,0xac,0xfe,0xab,0x4a,0x2e,},{0x01,0xbb,0x90,0x1d,0x83,0xb8,0xb6,0x82,0xd3,0x61,0x4a,0xf4,0x6a,0x80,0x7b,0xa2,0x69,0x13,0x58,0xfe,0xb7,0x75,0x32,0x5d,0x34,0x23,0xf5,0x49,0xff,0x0a,0xa5,0x75,0x7e,0x4e,0x1a,0x74,0xe9,0xc7,0x0f,0x97,0x21,0xd8,0xf3,0x54,0xb3,0x19,0xd4,0xf4,0xa1,0xd9,0x14,0x45,0xc8,0x70,0xfd,0x0f,0xfb,0x94,0xfe,0xd6,0x46,0x64,0x73,0x0d,},"\xe0\x72\x41\xdb\xd3\xad\xbe\x61\x0b\xbe\x4d\x00\x5d\xd4\x67\x32\xa4\xc2\x50\x86\xec\xb8\xec\x29\xcd\x7b\xca\x11\x6e\x1b\xf9\xf5\x3b\xfb\xf3\xe1\x1f\xa4\x90\x18\xd3\x9f\xf1\x15\x4a\x06\x66\x8e\xf7\xdf\x5c\x67\x8e\x6a"}, {{0xb1,0xc9,0xf8,0xbd,0x03,0xfe,0x82,0xe7,0x8f,0x5c,0x0f,0xb0,0x64,0x50,0xf2,0x7d,0xac,0xdf,0x71,0x64,0x34,0xdb,0x26,0x82,0x75,0xdf,0x3e,0x1d,0xc1,0x77,0xaf,0x42,},{0x7f,0xc8,0x8b,0x1f,0x7b,0x3f,0x11,0xc6,0x29,0xbe,0x67,0x1c,0x21,0x62,0x1f,0x5c,0x10,0x67,0x2f,0xaf,0xc8,0x49,0x2d,0xa8,0x85,0x74,0x20,0x59,0xee,0x67,0x74,0xcf,},{0x4b,0x22,0x99,0x51,0xef,0x26,0x2f,0x16,0x97,0x8f,0x79,0x14,0xbc,0x67,0x2e,0x72,0x26,0xc5,0xf8,0x37,0x9d,0x27,0x78,0xc5,0xa2,0xdc,0x0a,0x26,0x50,0x86,0x9f,0x7a,0xcf,0xbd,0x0b,0xcd,0x30,0xfd,0xb0,0x61,0x9b,0xb4,0x4f,0xc1,0xae,0x59,0x39,0xb8,0x7c,0xc3,0x18,0x13,0x30,0x09,0xc2,0x03,0x95,0xb6,0xc7,0xeb,0x98,0x10,0x77,0x01,},"\x33\x1d\xa7\xa9\xc1\xf8\x7b\x2a\xc9\x1e\xe3\xb8\x6d\x06\xc2\x91\x63\xc0\x5e\xd6\xf8\xd8\xa9\x72\x5b\x47\x1b\x7d\xb0\xd6\xac\xec\x7f\x0f\x70\x24\x87\x16\x3f\x5e\xda\x02\x0c\xa5\xb4\x93\xf3\x99\xe1\xc8\xd3\x08\xc3\xc0\xc2"}, {{0x6d,0x8c,0xdb,0x2e,0x07,0x5f,0x3a,0x2f,0x86,0x13,0x72,0x14,0xcb,0x23,0x6c,0xeb,0x89,0xa6,0x72,0x8b,0xb4,0xa2,0x00,0x80,0x6b,0xf3,0x55,0x7f,0xb7,0x8f,0xac,0x69,},{0x57,0xa0,0x4c,0x7a,0x51,0x13,0xcd,0xdf,0xe4,0x9a,0x4c,0x12,0x46,0x91,0xd4,0x6c,0x1f,0x9c,0xdc,0x8f,0x34,0x3f,0x9d,0xcb,0x72,0xa1,0x33,0x0a,0xec,0xa7,0x1f,0xda,},{0xa6,0xcb,0xc9,0x47,0xf9,0xc8,0x7d,0x14,0x55,0xcf,0x1a,0x70,0x85,0x28,0xc0,0x90,0xf1,0x1e,0xce,0xe4,0x85,0x5d,0x1d,0xba,0xad,0xf4,0x74,0x54,0xa4,0xde,0x55,0xfa,0x4c,0xe8,0x4b,0x36,0xd7,0x3a,0x5b,0x5f,0x8f,0x59,0x29,0x8c,0xcf,0x21,0x99,0x2d,0xf4,0x92,0xef,0x34,0x16,0x3d,0x87,0x75,0x3b,0x7e,0x9d,0x32,0xf2,0xc3,0x66,0x0b,},"\x7f\x31\x8d\xbd\x12\x1c\x08\xbf\xdd\xfe\xff\x4f\x6a\xff\x4e\x45\x79\x32\x51\xf8\xab\xf6\x58\x40\x33\x58\x23\x89\x84\x36\x00\x54\xf2\xa8\x62\xc5\xbb\x83\xed\x89\x02\x5d\x20\x14\xa7\xa0\xce\xe5\x0d\xa3\xcb\x0e\x76\xbb\xb6\xbf"}, {{0x47,0xad,0xc6,0xd6,0xbf,0x57,0x1e,0xe9,0x57,0x0c,0xa0,0xf7,0x5b,0x60,0x4a,0xc4,0x3e,0x30,0x3e,0x4a,0xb3,0x39,0xca,0x9b,0x53,0xca,0xcc,0x5b,0xe4,0x5b,0x2c,0xcb,},{0xa3,0xf5,0x27,0xa1,0xc1,0xf1,0x7d,0xfe,0xed,0x92,0x27,0x73,0x47,0xc9,0xf9,0x8a,0xb4,0x75,0xde,0x17,0x55,0xb0,0xab,0x54,0x6b,0x8a,0x15,0xd0,0x1b,0x9b,0xd0,0xbe,},{0x4e,0x8c,0x31,0x83,0x43,0xc3,0x06,0xad,0xbb,0xa6,0x0c,0x92,0xb7,0x5c,0xb0,0x56,0x9b,0x92,0x19,0xd8,0xa8,0x6e,0x5d,0x57,0x75,0x2e,0xd2,0x35,0xfc,0x10,0x9a,0x43,0xc2,0xcf,0x4e,0x94,0x2c,0xac,0xf2,0x97,0x27,0x9f,0xbb,0x28,0x67,0x53,0x47,0xe0,0x80,0x27,0x72,0x2a,0x4e,0xb7,0x39,0x5e,0x00,0xa1,0x74,0x95,0xd3,0x2e,0xdf,0x0b,},"\xce\x49\x7c\x5f\xf5\xa7\x79\x90\xb7\xd8\xf8\x69\x9e\xb1\xf5\xd8\xc0\x58\x2f\x70\xcb\x7a\xc5\xc5\x4d\x9d\x92\x49\x13\x27\x8b\xc6\x54\xd3\x7e\xa2\x27\x59\x0e\x15\x20\x22\x17\xfc\x98\xda\xc4\xc0\xf3\xbe\x21\x83\xd1\x33\x31\x57\x39"}, {{0x3c,0x19,0xb5,0x0b,0x0f,0xe4,0x79,0x61,0x71,0x9c,0x38,0x1d,0x0d,0x8d,0xa9,0xb9,0x86,0x9d,0x31,0x2f,0x13,0xe3,0x29,0x8b,0x97,0xfb,0x22,0xf0,0xaf,0x29,0xcb,0xbe,},{0x0f,0x7e,0xda,0x09,0x14,0x99,0x62,0x5e,0x2b,0xae,0x85,0x36,0xea,0x35,0xcd,0xa5,0x48,0x3b,0xd1,0x6a,0x9c,0x7e,0x41,0x6b,0x34,0x1d,0x6f,0x2c,0x83,0x34,0x36,0x12,},{0xef,0xbd,0x41,0xf2,0x6a,0x5d,0x62,0x68,0x55,0x16,0xf8,0x82,0xb6,0xec,0x74,0xe0,0xd5,0xa7,0x18,0x30,0xd2,0x03,0xc2,0x31,0x24,0x8f,0x26,0xe9,0x9a,0x9c,0x65,0x78,0xec,0x90,0x0d,0x68,0xcd,0xb8,0xfa,0x72,0x16,0xad,0x0d,0x24,0xf9,0xec,0xbc,0x9f,0xfa,0x65,0x53,0x51,0x66,0x65,0x82,0xf6,0x26,0x64,0x53,0x95,0xa3,0x1f,0xa7,0x04,},"\x8d\xdc\xd6\x30\x43\xf5\x5e\xc3\xbf\xc8\x3d\xce\xae\x69\xd8\xf8\xb3\x2f\x4c\xdb\x6e\x2a\xeb\xd9\x4b\x43\x14\xf8\xfe\x72\x87\xdc\xb6\x27\x32\xc9\x05\x2e\x75\x57\xfe\x63\x53\x43\x38\xef\xb5\xb6\x25\x4c\x5d\x41\xd2\x69\x0c\xf5\x14\x4f"}, {{0x34,0xe1,0xe9,0xd5,0x39,0x10,0x7e,0xb8,0x6b,0x39,0x3a,0x5c,0xce,0xa1,0x49,0x6d,0x35,0xbc,0x7d,0x5e,0x9a,0x8c,0x51,0x59,0xd9,0x57,0xe4,0xe5,0x85,0x2b,0x3e,0xb0,},{0x0e,0xcb,0x26,0x01,0xd5,0xf7,0x04,0x74,0x28,0xe9,0xf9,0x09,0x88,0x3a,0x12,0x42,0x00,0x85,0xf0,0x4e,0xe2,0xa8,0x8b,0x6d,0x95,0xd3,0xd7,0xf2,0xc9,0x32,0xbd,0x76,},{0x32,0xd2,0x29,0x04,0xd3,0xe7,0x01,0x2d,0x6f,0x5a,0x44,0x1b,0x0b,0x42,0x28,0x06,0x4a,0x5c,0xf9,0x5b,0x72,0x3a,0x66,0xb0,0x48,0xa0,0x87,0xec,0xd5,0x59,0x20,0xc3,0x1c,0x20,0x4c,0x3f,0x20,0x06,0x89,0x1a,0x85,0xdd,0x19,0x32,0xe3,0xf1,0xd6,0x14,0xcf,0xd6,0x33,0xb5,0xe6,0x32,0x91,0xc6,0xd8,0x16,0x6f,0x30,0x11,0x43,0x1e,0x09,},"\xa6\xd4\xd0\x54\x2c\xfe\x0d\x24\x0a\x90\x50\x7d\xeb\xac\xab\xce\x7c\xbb\xd4\x87\x32\x35\x3f\x4f\xad\x82\xc7\xbb\x7d\xbd\x9d\xf8\xe7\xd9\xa1\x69\x80\xa4\x51\x86\xd8\x78\x6c\x5e\xf6\x54\x45\xbc\xc5\xb2\xad\x5f\x66\x0f\xfc\x7c\x8e\xaa\xc0"}, {{0x49,0xdd,0x47,0x3e,0xde,0x6a,0xa3,0xc8,0x66,0x82,0x4a,0x40,0xad,0xa4,0x99,0x6c,0x23,0x9a,0x20,0xd8,0x4c,0x93,0x65,0xe4,0xf0,0xa4,0x55,0x4f,0x80,0x31,0xb9,0xcf,},{0x78,0x8d,0xe5,0x40,0x54,0x4d,0x3f,0xeb,0x0c,0x91,0x92,0x40,0xb3,0x90,0x72,0x9b,0xe4,0x87,0xe9,0x4b,0x64,0xad,0x97,0x3e,0xb6,0x5b,0x46,0x69,0xec,0xf2,0x35,0x01,},{0xd2,0xfd,0xe0,0x27,0x91,0xe7,0x20,0x85,0x25,0x07,0xfa,0xa7,0xc3,0x78,0x90,0x40,0xd9,0xef,0x86,0x64,0x63,0x21,0xf3,0x13,0xac,0x55,0x7f,0x40,0x02,0x49,0x15,0x42,0xdd,0x67,0xd0,0x5c,0x69,0x90,0xcd,0xb0,0xd4,0x95,0x50,0x1f,0xbc,0x5d,0x51,0x88,0xbf,0xbb,0x84,0xdc,0x1b,0xf6,0x09,0x8b,0xee,0x06,0x03,0xa4,0x7f,0xc2,0x69,0x0f,},"\x3a\x53\x59\x4f\x3f\xba\x03\x02\x93\x18\xf5\x12\xb0\x84\xa0\x71\xeb\xd6\x0b\xae\xc7\xf5\x5b\x02\x8d\xc7\x3b\xfc\x9c\x74\xe0\xca\x49\x6b\xf8\x19\xdd\x92\xab\x61\xcd\x8b\x74\xbe\x3c\x0d\x6d\xcd\x12\x8e\xfc\x5e\xd3\x34\x2c\xba\x12\x4f\x72\x6c"}, {{0x33,0x1c,0x64,0xda,0x48,0x2b,0x6b,0x55,0x13,0x73,0xc3,0x64,0x81,0xa0,0x2d,0x81,0x36,0xec,0xad,0xbb,0x01,0xab,0x11,0x4b,0x44,0x70,0xbf,0x41,0x60,0x7a,0xc5,0x71,},{0x52,0xa0,0x0d,0x96,0xa3,0x14,0x8b,0x47,0x26,0x69,0x2d,0x9e,0xff,0x89,0x16,0x0e,0xa9,0xf9,0x9a,0x5c,0xc4,0x38,0x9f,0x36,0x1f,0xed,0x0b,0xb1,0x6a,0x42,0xd5,0x21,},{0x22,0xc9,0x9a,0xa9,0x46,0xea,0xd3,0x9a,0xc7,0x99,0x75,0x62,0x81,0x0c,0x01,0xc2,0x0b,0x46,0xbd,0x61,0x06,0x45,0xbd,0x2d,0x56,0xdc,0xdc,0xba,0xac,0xc5,0x45,0x2c,0x74,0xfb,0xf4,0xb8,0xb1,0x81,0x3b,0x0e,0x94,0xc3,0x0d,0x80,0x8c,0xe5,0x49,0x8e,0x61,0xd4,0xf7,0xcc,0xbb,0x4c,0xc5,0xf0,0x4d,0xfc,0x61,0x40,0x82,0x5a,0x96,0x00,},"\x20\xe1\xd0\x5a\x0d\x5b\x32\xcc\x81\x50\xb8\x11\x6c\xef\x39\x65\x9d\xd5\xfb\x44\x3a\xb1\x56\x00\xf7\x8e\x5b\x49\xc4\x53\x26\xd9\x32\x3f\x28\x50\xa6\x3c\x38\x08\x85\x94\x95\xae\x27\x3f\x58\xa5\x1e\x9d\xe9\xa1\x45\xd7\x74\xb4\x0b\xa9\xd7\x53\xd3"}, {{0x5c,0x0b,0x96,0xf2,0xaf,0x87,0x12,0x12,0x2c,0xf7,0x43,0xc8,0xf8,0xdc,0x77,0xb6,0xcd,0x55,0x70,0xa7,0xde,0x13,0x29,0x7b,0xb3,0xdd,0xe1,0x88,0x62,0x13,0xcc,0xe2,},{0x05,0x10,0xea,0xf5,0x7d,0x73,0x01,0xb0,0xe1,0xd5,0x27,0x03,0x9b,0xf4,0xc6,0xe2,0x92,0x30,0x0a,0x3a,0x61,0xb4,0x76,0x54,0x34,0xf3,0x20,0x3c,0x10,0x03,0x51,0xb1,},{0x06,0xe5,0xd8,0x43,0x6a,0xc7,0x70,0x5b,0x3a,0x90,0xf1,0x63,0x1c,0xdd,0x38,0xec,0x1a,0x3f,0xa4,0x97,0x78,0xa9,0xb9,0xf2,0xfa,0x5e,0xbe,0xa4,0xe7,0xd5,0x60,0xad,0xa7,0xdd,0x26,0xff,0x42,0xfa,0xfa,0x8b,0xa4,0x20,0x32,0x37,0x42,0x76,0x1a,0xca,0x69,0x04,0x94,0x0d,0xc2,0x1b,0xbe,0xf6,0x3f,0xf7,0x2d,0xaa,0xb4,0x5d,0x43,0x0b,},"\x54\xe0\xca\xa8\xe6\x39\x19\xca\x61\x4b\x2b\xfd\x30\x8c\xcf\xe5\x0c\x9e\xa8\x88\xe1\xee\x44\x46\xd6\x82\xcb\x50\x34\x62\x7f\x97\xb0\x53\x92\xc0\x4e\x83\x55\x56\xc3\x1c\x52\x81\x6a\x48\xe4\xfb\x19\x66\x93\x20\x6b\x8a\xfb\x44\x08\x66\x2b\x3c\xb5\x75"}, {{0xde,0x84,0xf2,0x43,0x5f,0x78,0xde,0xdb,0x87,0xda,0x18,0x19,0x4f,0xf6,0xa3,0x36,0xf0,0x81,0x11,0x15,0x0d,0xef,0x90,0x1c,0x1a,0xc4,0x18,0x14,0x6e,0xb7,0xb5,0x4a,},{0xd3,0xa9,0x2b,0xba,0xa4,0xd6,0x3a,0xf7,0x9c,0x22,0x26,0xa7,0x23,0x6e,0x64,0x27,0x42,0x8d,0xf8,0xb3,0x62,0x42,0x7f,0x87,0x30,0x23,0xb2,0x2d,0x2f,0x5e,0x03,0xf2,},{0x47,0x1e,0xbc,0x97,0x3c,0xfd,0xac,0xee,0xc0,0x72,0x79,0x30,0x73,0x68,0xb7,0x3b,0xe3,0x5b,0xc6,0xf8,0xd8,0x31,0x2b,0x70,0x15,0x05,0x67,0x36,0x90,0x96,0x70,0x6d,0xc4,0x71,0x12,0x6c,0x35,0x76,0xf9,0xf0,0xeb,0x55,0x0d,0xf5,0xac,0x6a,0x52,0x51,0x81,0x11,0x00,0x29,0xdd,0x1f,0xc1,0x11,0x74,0xd1,0xaa,0xce,0xd4,0x8d,0x63,0x0f,},"\x20\x51\x35\xec\x7f\x41\x7c\x85\x80\x72\xd5\x23\x3f\xb3\x64\x82\xd4\x90\x6a\xbd\x60\xa7\x4a\x49\x8c\x34\x7f\xf2\x48\xdf\xa2\x72\x2c\xa7\x4e\x87\x9d\xe3\x31\x69\xfa\xdc\x7c\xd4\x4d\x6c\x94\xa1\x7d\x16\xe1\xe6\x30\x82\x4b\xa3\xe0\xdf\x22\xed\x68\xea\xab"}, {{0xba,0x4d,0x6e,0x67,0xb2,0xce,0x67,0xa1,0xe4,0x43,0x26,0x49,0x40,0x44,0xf3,0x7a,0x44,0x2f,0x3b,0x81,0x72,0x5b,0xc1,0xf9,0x34,0x14,0x62,0x71,0x8b,0x55,0xee,0x20,},{0xf7,0x3f,0xa0,0x76,0xf8,0x4b,0x6d,0xb6,0x75,0xa5,0xfd,0xa5,0xad,0x67,0xe3,0x51,0xa4,0x1e,0x8e,0x7f,0x29,0xad,0xd1,0x68,0x09,0xca,0x01,0x03,0x87,0xe9,0xc6,0xcc,},{0x57,0xb9,0xd2,0xa7,0x11,0x20,0x7f,0x83,0x74,0x21,0xba,0xe7,0xdd,0x48,0xea,0xa1,0x8e,0xab,0x1a,0x9a,0x70,0xa0,0xf1,0x30,0x58,0x06,0xfe,0xe1,0x7b,0x45,0x8f,0x3a,0x09,0x64,0xb3,0x02,0xd1,0x83,0x4d,0x3e,0x0a,0xc9,0xe8,0x49,0x6f,0x00,0x0b,0x77,0xf0,0x08,0x3b,0x41,0xf8,0xa9,0x57,0xe6,0x32,0xfb,0xc7,0x84,0x0e,0xee,0x6a,0x06,},"\x4b\xaf\xda\xc9\x09\x9d\x40\x57\xed\x6d\xd0\x8b\xca\xee\x87\x56\xe9\xa4\x0f\x2c\xb9\x59\x80\x20\xeb\x95\x01\x95\x28\x40\x9b\xbe\xa3\x8b\x38\x4a\x59\xf1\x19\xf5\x72\x97\xbf\xb2\xfa\x14\x2f\xc7\xbb\x1d\x90\xdb\xdd\xde\x77\x2b\xcd\xe4\x8c\x56\x70\xd5\xfa\x13"}, {{0x0d,0x13,0x1c,0x45,0xae,0xa6,0xf3,0xa4,0xe1,0xb9,0xa2,0xcf,0x60,0xc5,0x51,0x04,0x58,0x7e,0xfa,0xa8,0x46,0xb2,0x22,0xbf,0x0a,0x7b,0x74,0xce,0x7a,0x3f,0x63,0xb6,},{0x3c,0x67,0x29,0xdb,0xe9,0x3b,0x49,0x9c,0x4e,0x61,0x4a,0x2f,0x21,0xbe,0xb7,0x29,0x43,0x8d,0x49,0x8e,0x1a,0xc8,0xd1,0x4c,0xba,0xd9,0x71,0x7a,0x5d,0xbd,0x97,0xcd,},{0xa9,0xc5,0xee,0x86,0xfb,0x06,0xd9,0xe4,0x6b,0x37,0x9c,0x32,0xdd,0xa7,0xc9,0x2c,0x9c,0x13,0xdb,0x27,0x4d,0xc2,0x41,0x16,0xfb,0xdd,0x87,0x86,0x96,0x04,0x54,0x88,0xcc,0x75,0xa5,0x2f,0xff,0x67,0xd1,0xa5,0x11,0x3d,0x06,0xe3,0x33,0xac,0x67,0xff,0x66,0x4b,0x3f,0x2a,0x40,0x5f,0xa1,0xd1,0x4d,0xd5,0xbb,0xb9,0x74,0x09,0xb6,0x06,},"\xb4\x29\x1d\x08\xb8\x8f\xb2\xf7\xb8\xf9\x9d\x0d\xce\x40\x07\x9f\xcb\xab\x71\x8b\xbd\x8f\x4e\x8e\xab\xc3\xc1\x42\x8b\x6a\x07\x1f\xb2\xa3\xc8\xeb\xa1\xca\xcc\xcf\xa8\x71\xb3\x65\xc7\x08\xbe\xf2\x68\x5b\xc1\x3e\x6b\x80\xbc\x14\xa5\xf2\x49\x17\x0f\xfc\x56\xd0\x14"}, {{0xa7,0x5e,0x3b,0x6b,0x41,0x70,0xe4,0x44,0x78,0x1b,0xe4,0xee,0xac,0x3e,0x0f,0xda,0xa4,0xb4,0x35,0x6f,0x70,0x54,0x86,0xbc,0xb0,0x71,0xa3,0x25,0xae,0x07,0x1f,0xba,},{0x99,0x3d,0x38,0xa7,0xd7,0x2f,0x0a,0xee,0x15,0xff,0x6f,0x4f,0xdc,0x37,0xca,0x77,0x24,0xfd,0x13,0x73,0xa3,0x76,0x6b,0x27,0x5d,0xbc,0x77,0xe6,0x47,0x98,0x0e,0x0a,},{0xa5,0xdb,0x4d,0x3d,0x33,0x29,0xab,0xe3,0x69,0x79,0x59,0xe6,0xb5,0x94,0x7e,0xa8,0x60,0x1b,0x03,0xef,0x8e,0x1d,0x6f,0xe2,0x02,0x14,0x49,0x31,0x27,0x2c,0xa0,0xa0,0x9b,0x5e,0xb0,0xf3,0x90,0x57,0x2e,0xa7,0xef,0x03,0xc6,0x13,0x1e,0x9d,0xe5,0xf1,0x6b,0xf0,0xb0,0x34,0x24,0x4f,0x7e,0x10,0x4f,0xf5,0x31,0x1b,0xbf,0x66,0x3a,0x0d,},"\x40\x37\x86\x6f\x65\x48\xb0\x1c\xc6\xbc\xf3\xa9\x40\xe3\x94\x5a\xa2\xd1\x88\xb4\xb7\xf1\x82\xaa\x77\xec\x4d\x6b\x04\x28\xab\x5b\x84\xd8\x5d\xf1\x92\xa5\xa3\x8a\xda\x08\x9d\x76\xfa\x26\xbf\x67\x73\x6a\x70\x41\xa5\xeb\x8f\x0c\x57\x19\xeb\x39\x66\x93\xc4\x51\x60\xf8"}, {{0xbc,0xbc,0xf5,0x61,0xec,0xc0,0x5a,0x41,0xc7,0xd7,0xe5,0x5e,0x69,0x6d,0x32,0xce,0x39,0xb4,0xd0,0x3c,0x1f,0x5f,0x3f,0x3a,0x89,0x27,0xfe,0x5e,0x62,0xe8,0x44,0xb2,},{0x4d,0xdf,0x53,0xfa,0xd6,0xa7,0xa9,0xed,0x30,0xf3,0xaf,0xec,0xca,0x13,0x6f,0xd7,0x84,0x3b,0x72,0xc2,0x43,0x09,0x08,0x91,0xae,0x40,0x21,0xa3,0x2c,0xad,0xff,0x1a,},{0x9f,0xf1,0x51,0x15,0xf6,0x66,0x1f,0x32,0x11,0xd7,0xa4,0x07,0x64,0x96,0x76,0x29,0xba,0x6a,0x52,0x63,0x95,0x1b,0xdc,0x3c,0x6a,0x4c,0x90,0xd0,0x70,0xf7,0xbe,0x00,0x02,0x4b,0x80,0xd8,0x3b,0x6b,0xc2,0x75,0x87,0xfc,0xff,0x5f,0x5c,0xcc,0x0e,0xb3,0xcd,0xe1,0x49,0x7c,0xf5,0x68,0x95,0x14,0x7a,0x06,0x3f,0x61,0xf0,0x8a,0xdf,0x0b,},"\x6f\x67\x16\xb6\x78\x47\x40\x98\x0a\xeb\xc3\x24\x88\x07\xe3\x1c\x12\x86\xac\x7b\x68\x1c\x00\xb6\x6c\x88\xff\x7a\x33\x6d\x44\x1f\xa5\xc3\xeb\x25\x6d\x20\xcf\x6d\x1a\xc9\x2c\xcf\xe4\xbe\x6d\xcc\x41\xb1\xaf\xf8\x46\xd3\x60\xc2\x43\x00\x1c\xab\xdf\xbf\x1a\x9b\x24\x04\x55"}, {{0x21,0x05,0x32,0x80,0x5f,0xa9,0xcc,0x9b,0xe9,0x16,0xd2,0x13,0xca,0xc3,0x74,0xe3,0xcd,0x6f,0xc2,0x60,0x2a,0x54,0x4d,0x0c,0x1c,0xe2,0x9d,0x30,0x10,0x5d,0x69,0xab,},{0x10,0x69,0x9e,0x49,0x9b,0xe9,0x9e,0x2b,0x11,0xb9,0x8f,0x6f,0x86,0xb6,0x7c,0xdc,0x4c,0xcf,0x69,0xf3,0xc5,0x3c,0xe0,0x94,0x87,0x56,0x47,0xd2,0xd0,0xd0,0xec,0xc5,},{0x4c,0x2d,0x31,0xd5,0xbb,0xc4,0x2e,0x02,0x6d,0xc1,0xe0,0x79,0xec,0xc4,0xdd,0x07,0x2c,0x5d,0x2c,0xce,0x65,0xe3,0xdb,0x8d,0x8a,0x1d,0xd9,0x05,0x7f,0xaa,0x03,0x71,0x72,0x7f,0x72,0x72,0x31,0xa0,0xf0,0x60,0xfa,0x27,0x09,0x75,0x33,0xb6,0xdb,0x3b,0x8f,0x62,0x52,0xf2,0x79,0x3d,0x75,0x66,0x2c,0xaa,0xdf,0x5f,0x0f,0xcc,0x71,0x0e,},"\x9f\xc4\xd2\x8c\xfd\x25\xe6\xc0\xc5\xe7\x24\xe1\x9c\xa3\x9d\x71\xe5\x3b\xf4\xaa\x27\x96\xc5\x4c\x33\x51\xf1\x08\xfc\x70\xf2\x61\x1a\x62\xe0\xab\x90\xaf\x6a\xde\x52\x16\x78\x8e\x9e\xb2\xa8\x73\x05\x9b\x1e\x79\xd7\xd5\x9d\xeb\xd6\x8f\x2d\x4d\x80\xff\xe3\x1b\xf7\x4b\x92\x8c"}, {{0x18,0x5d,0x64,0xb6,0x94,0x79,0xe0,0xba,0x0a,0x58,0x44,0xa1,0x0a,0xd8,0x41,0x25,0xba,0x11,0xc4,0xb4,0x0d,0x63,0xed,0xa2,0xc5,0x7a,0xfc,0x7e,0x01,0x9c,0x8e,0x0c,},{0xa5,0x76,0x4f,0x63,0x98,0xa5,0xae,0x22,0x66,0xa3,0x8f,0x97,0x14,0x53,0x3c,0x4b,0xbd,0x8d,0x07,0x82,0x6f,0x63,0xe2,0x04,0xcb,0xac,0x37,0x4b,0x0a,0xce,0xf1,0xbd,},{0x43,0xe0,0x38,0x7d,0xa5,0xba,0x09,0xa1,0x90,0xf6,0xe7,0xb2,0x68,0x05,0x78,0xd8,0x89,0x76,0x9b,0xcc,0x44,0x5e,0x5e,0xf5,0x71,0xb4,0x92,0x87,0x1c,0x15,0x5c,0x5b,0x9f,0x62,0x0b,0xfa,0xcf,0xbf,0x2d,0xf1,0xfd,0x87,0x44,0x46,0x04,0xb7,0x1b,0x2e,0x23,0x7b,0xaa,0xa7,0xee,0x20,0x93,0xed,0xe4,0xa6,0x01,0xed,0xf8,0x83,0xe3,0x07,},"\x4a\x08\x24\xfe\x70\xd4\x31\x54\x13\xd0\xa0\xca\xfb\xf4\xf5\xfe\x11\x7d\x5e\x07\xe1\xc3\xa4\xef\xfb\x9d\x0a\xe9\x14\x90\x23\x48\x78\xcc\xf6\x79\x2a\x91\xf6\x8c\x6a\x52\x0d\xe1\x60\x71\xf0\x8a\xbe\x35\xdc\x5e\xa4\x28\xf1\x95\x7b\x66\x33\x71\xce\x24\xc6\x09\xdd\x55\xb8\xf4\x93"}, {{0xcf,0xa9,0xd9,0x16,0x4b,0x3c,0x4f,0x6f,0x72,0x26,0x35,0xd2,0x06,0x6c,0xd7,0xea,0x5e,0x55,0x33,0xd2,0xc7,0x4f,0x8a,0xdd,0x66,0x9c,0x37,0x1f,0xaa,0x47,0x64,0x26,},{0x41,0x16,0x9a,0x66,0xf9,0xa6,0x3f,0x28,0x57,0x82,0xa6,0xc2,0xdb,0x81,0xcc,0x3f,0x70,0xb3,0xad,0xa2,0x1a,0x68,0xc8,0x47,0x45,0xc8,0x8a,0x74,0xc3,0xb0,0xa2,0xde,},{0x01,0xd7,0xc9,0xb5,0x70,0x1a,0xf7,0x1e,0x2f,0x48,0x77,0xff,0xc9,0xb7,0xb5,0x30,0x5f,0x52,0x81,0x6d,0x44,0x58,0xe3,0x7e,0x41,0xc7,0x71,0x9f,0xac,0x1d,0x76,0xa0,0x1f,0xff,0x3f,0x50,0xfe,0x1a,0x58,0x75,0xcc,0xc3,0xfb,0x70,0x00,0x1c,0x94,0x7a,0x33,0xfc,0x8b,0x20,0x7d,0xe1,0x35,0x72,0xcc,0xdb,0x8b,0xa9,0x89,0x33,0xab,0x01,},"\x75\x76\x21\xb1\x67\x5d\xb7\xca\xce\xf7\xf2\x78\x25\x87\xff\x3a\xf5\x1a\x3e\xf2\xf4\xbc\xf9\x27\x9c\x4c\xe9\x40\x02\xe1\xf0\x04\x24\xbf\x0e\xb6\x21\x98\x2c\xc8\x5c\xb4\xd1\x71\xe5\x64\xa0\xc2\xf6\xe3\x56\x7a\x1a\xae\x2c\xdd\xb7\xe9\xb2\x5f\x47\xdc\x20\xa5\x10\x50\x54\x29\x69\xca"}, {{0x1a,0xcb,0x4a,0x25,0x6c,0x2f,0x89,0x93,0xca,0x24,0xde,0x1e,0x00,0x14,0x60,0x6d,0x66,0x8b,0x5e,0x75,0x60,0x32,0xd2,0x69,0xf1,0xd2,0x4d,0x35,0x1c,0x8e,0xea,0x4a,},{0xcb,0xbd,0xcd,0x8c,0xbc,0x88,0x5a,0xb4,0x3a,0x05,0x7e,0x5f,0x95,0x79,0xf1,0x16,0x19,0x54,0x15,0x9e,0x7b,0x56,0x2e,0xa2,0x6c,0xd9,0xa4,0x3c,0x88,0xd3,0xf9,0x6d,},{0x05,0xaa,0x76,0xf7,0xfe,0x51,0x89,0x23,0x03,0xd7,0x89,0x14,0x71,0x59,0x95,0xe7,0xd7,0x68,0xff,0x77,0x14,0xce,0x27,0x0f,0x17,0x5e,0x56,0xaf,0x17,0xae,0x01,0x8d,0x3f,0xa9,0x39,0xf5,0xf6,0x20,0xde,0x82,0xbc,0xd1,0x54,0x96,0x87,0xb2,0x05,0xc7,0x87,0x12,0x03,0xe6,0x24,0x23,0x8c,0x4e,0x30,0x9f,0xab,0x7f,0x92,0xfb,0xaa,0x05,},"\xc4\x6a\x6d\x61\xaa\x0a\xed\x1c\x1d\x85\x47\xa7\x0b\x89\xb7\x19\x64\x75\xd5\xa4\x87\x08\x81\xb1\xec\xd0\xf0\xcb\x9c\x74\x5f\x8a\x2a\xdc\x80\x24\xe2\xdc\x55\xb5\x3a\xa5\xd3\x83\xa8\x1a\xab\xc1\xa4\x7e\x8d\x07\xd0\x0b\x7f\x0b\x56\xce\xdd\xbf\xb1\xf4\x24\xbb\x5c\x02\x18\x46\x78\xa6\x66"}, {{0xac,0xe3,0xc4,0x64,0x24,0x82,0x36,0x22,0x97,0x9f,0xc3,0xa8,0x4a,0x7d,0xa6,0x9c,0x1d,0x52,0x7d,0x83,0x12,0xe8,0xfb,0x01,0x83,0x75,0xbd,0x3a,0x96,0xc2,0x9c,0x18,},{0x93,0x7c,0xf3,0x41,0x36,0xd9,0xe1,0xcc,0xe0,0xde,0x11,0xb1,0x2c,0x70,0xcb,0xfb,0x74,0x55,0x44,0x84,0x21,0xe9,0x2c,0x82,0xe7,0xc4,0x09,0x34,0xbf,0xf8,0xc6,0x76,},{0xfe,0xb8,0x89,0x6d,0xd3,0xfe,0x60,0x01,0xff,0xea,0x17,0x1b,0x37,0xb7,0x88,0xa6,0x9f,0x7f,0x85,0x01,0x93,0xa6,0x34,0x06,0xf5,0x63,0x76,0xdd,0x26,0x3d,0x09,0x9a,0xef,0x80,0xec,0xe6,0x7e,0x2c,0x43,0xf4,0x0e,0xca,0x46,0x2c,0x6b,0x71,0xe7,0x94,0x06,0xb1,0x8d,0xb7,0x4a,0xe5,0xd4,0x98,0x44,0xe3,0xb1,0x32,0xbc,0x2a,0x13,0x07,},"\xa9\xf1\x37\xbc\x90\x21\xbf\x10\x5a\xee\x25\xbe\x21\xcd\x9e\xe5\xb3\x54\x7c\xf1\x0c\xc5\xf9\x84\x76\xfb\x58\x8b\xd7\x0e\x2d\x6d\x6b\x08\x34\xe8\x42\xe4\xee\x94\x30\x3c\xf9\x6b\x09\xc1\x71\x53\x81\xb3\x6e\x14\xa4\x91\xb8\x0f\x89\x5e\xa4\x21\xb8\xec\x2b\x1d\x3c\x18\x7e\x02\x93\x5c\x55\x26"}, {{0x88,0xf6,0x81,0x93,0x4e,0x33,0xc3,0x5c,0x07,0xdc,0x6e,0x5a,0x83,0x29,0x42,0xae,0x3d,0x59,0x90,0x3c,0xcd,0xe2,0xf7,0x6c,0xcb,0x75,0x87,0xce,0xa7,0xec,0x41,0xb6,},{0x6a,0x4e,0x8a,0xa5,0xad,0xb6,0x3d,0x22,0xfd,0x7b,0x14,0xa2,0x6f,0xdb,0x03,0xb7,0xc8,0xaa,0x6c,0xcd,0x5a,0x19,0x6f,0x2c,0x54,0xb0,0x46,0x5a,0xdb,0x50,0x92,0xe1,},{0x45,0xb2,0x7b,0xf1,0xb9,0xea,0xc0,0x6b,0x62,0xb6,0x86,0xf6,0xd5,0x46,0x56,0x3b,0x2d,0xfe,0x5b,0x17,0x5d,0xbe,0xf3,0x2b,0xf7,0x8c,0x35,0xa1,0x6c,0x95,0x8a,0x9d,0x4f,0x26,0xd2,0x91,0xde,0x9b,0xb2,0x06,0x6c,0x0a,0x28,0x61,0x13,0xcc,0x09,0x17,0x2d,0x40,0xa3,0x6d,0x4c,0xbd,0x95,0x17,0x08,0x86,0x02,0x26,0xeb,0x30,0xcd,0x05,},"\x6e\x8b\xac\x1f\x85\x3b\x81\xfe\xf9\x47\x07\xe1\x8c\xc6\x1c\x6f\x0a\x9c\xbc\x2a\x41\xd0\x78\xdc\xc8\x3f\xc0\x22\x9c\x7f\x8d\xbe\x6d\xbd\xd9\x08\x54\xb1\xf1\xae\x2b\x9f\x2b\x12\x0b\x86\xa8\x78\x6b\x4e\x78\xce\x23\xab\x86\xba\xaf\x88\x75\x4a\xf0\xf3\xd8\x88\x81\xda\xe0\xbc\x52\x61\xbf\xd0\x38"}, {{0x48,0x05,0x0a,0x6e,0x01,0x58,0xf6,0xad,0x25,0x34,0x12,0xe4,0x49,0x7c,0xff,0x62,0xd5,0xee,0x55,0x5e,0xdf,0xfe,0x59,0xe4,0xdc,0x40,0x15,0x22,0x81,0x32,0x95,0xce,},{0x97,0x5e,0x01,0x0a,0xbb,0x9a,0x3e,0x56,0x65,0x91,0x37,0xb0,0x50,0x60,0x57,0xf2,0x83,0x98,0x2f,0x88,0x6c,0xa1,0x72,0xc7,0xbc,0x2c,0x50,0x0e,0xd9,0xbd,0x26,0xc1,},{0x72,0x16,0xab,0x60,0xc3,0x51,0x68,0x18,0x7d,0x0f,0xce,0x47,0x53,0xc8,0x6e,0x80,0x05,0x8d,0x54,0x0b,0x76,0xbf,0x95,0x84,0x3a,0x58,0x98,0x84,0x10,0x60,0xa9,0x9a,0x44,0xde,0x6f,0x43,0x96,0x25,0xa3,0xf6,0x36,0x5f,0x59,0xc3,0x77,0xbf,0x45,0x90,0x9b,0xbf,0xef,0x5c,0x50,0xb2,0x5f,0x31,0x94,0xe5,0xfb,0xd3,0x4e,0xa5,0xe7,0x06,},"\xed\x6e\xec\x29\xfb\x70\x49\xdf\xf7\x07\xf0\xa4\x42\x6e\xbc\x8f\x5b\x35\x0e\x95\x87\x0b\x9d\x61\x98\xc8\x13\x9e\x9c\x3e\x1e\x40\x99\x37\xd1\xa8\x58\xa0\xde\xa4\x82\xa5\xcb\x1a\x85\x4e\xd3\xb5\xa9\x39\x7a\xcb\x63\xbf\xf6\xb6\x40\x39\xef\x2e\xb1\x15\x9e\x99\x85\x83\x10\xbb\xbd\x86\x12\x5c\x3e\x0e"}, {{0x18,0xd1,0x3d,0x0c,0x00,0xe8,0xe3,0x38,0x6a,0x5c,0xfb,0x30,0xa9,0xe7,0x9f,0xe8,0x8b,0x18,0x61,0xed,0x2d,0x12,0x01,0xeb,0x17,0x00,0x38,0xe1,0x94,0x77,0x04,0x03,},{0xa4,0xaf,0xc8,0x33,0x40,0x18,0x76,0x09,0x0d,0x9b,0x88,0x0c,0x41,0x26,0x7d,0x68,0xcb,0xbe,0xea,0xa3,0x8a,0xfb,0x20,0x88,0x4e,0x27,0x32,0x8f,0x3b,0x7f,0x53,0x5e,},{0x03,0x39,0x88,0x15,0x4c,0x5d,0x79,0xd2,0x51,0x0b,0xe8,0x3e,0x77,0x80,0x15,0xdf,0xe2,0xfb,0x85,0xb8,0x11,0x1f,0x7e,0xc1,0x39,0x91,0x8b,0x54,0x00,0xe3,0xd6,0x56,0xee,0x80,0xa9,0xf5,0xc9,0x07,0x2b,0x5b,0x46,0x7a,0x5c,0xc5,0xa5,0x7c,0xc8,0xad,0x10,0x62,0xb5,0xbf,0xf1,0x08,0x62,0xd9,0xd3,0x69,0xdd,0xe2,0xcc,0x96,0x67,0x01,},"\x91\x0f\x6c\x27\x2d\xd9\x79\x31\xac\x47\x31\x0d\x24\x4c\xad\xb4\x32\x51\x36\x5e\x02\xba\x9f\x6a\x5b\x3c\x32\x26\xbe\x9d\x7d\x3a\x74\xa2\xba\x49\x06\xe8\xe7\x1a\x4b\xf3\xd3\x55\x6e\xbd\xfc\x66\x6c\xd6\xb1\x2f\x20\xc4\xa0\x08\x34\xb8\x8f\xbb\x24\x45\x75\x19\x92\x86\xb0\xb9\x34\x4c\xf3\x34\xaf\xf0\x07"}, {{0x4a,0xdc,0x8c,0x28,0x64,0x6a,0x93,0xa8,0x17,0x29,0x3a,0x14,0xd2,0x9b,0x48,0xe2,0xc6,0xd7,0x12,0xa6,0x89,0x93,0x54,0x7a,0x5c,0x5e,0x4d,0x14,0x52,0xac,0xbc,0x3a,},{0x7f,0x40,0x47,0x36,0x28,0xf2,0x3f,0xc0,0xdf,0xf0,0x02,0x1a,0xfd,0x48,0x77,0x40,0xd4,0x91,0x6a,0x91,0x22,0xe6,0xc9,0x7d,0x36,0x43,0x3e,0x5e,0xbf,0x04,0xf8,0x8c,},{0x6d,0x3b,0x4e,0x90,0xec,0x40,0x83,0x11,0xf9,0xb1,0x5b,0x92,0x53,0xd3,0xd9,0x5c,0x5d,0x15,0x26,0x20,0xc2,0x60,0xd5,0x63,0x02,0x55,0x5a,0x88,0x04,0xa5,0x10,0x4b,0xa5,0xe8,0xd2,0x9e,0xe1,0x08,0xe7,0x64,0xa6,0x42,0x19,0x29,0x72,0x98,0xab,0x76,0x74,0xbb,0xca,0x78,0x4d,0xee,0x28,0x77,0x3b,0x34,0xe1,0x85,0xa3,0x86,0xc2,0x08,},"\x09\xfb\x55\x01\xf1\x68\x8f\x80\xa0\xab\x9e\x22\xd7\x78\xae\x13\x0a\xca\xf7\x4d\x7f\x51\x85\xb4\xda\x19\x8c\x6b\x9e\xda\xc4\x30\x2e\x2b\x75\x3e\x57\x87\x66\xe1\x7d\x40\x56\xdc\x40\xd9\x5c\xf4\xca\x8b\xcc\x65\x65\x79\x5e\x97\xd6\x8b\xcd\xa7\x9f\xa7\x7c\x49\x33\x97\x71\x63\x56\x16\x4c\xaa\xb5\xd1\x9c\xfd"}, {{0xf2,0x6e,0x1c,0x84,0x69,0x7a,0x49,0x08,0x15,0x1b,0x44,0x7d,0xcf,0x6c,0x7c,0x7a,0x38,0xb0,0x40,0x81,0xdb,0x9e,0x7c,0x77,0x38,0xe6,0xfe,0xc9,0x00,0xbe,0xd0,0xc1,},{0xa8,0x6e,0x14,0x22,0xc1,0x23,0x5f,0xf8,0xe1,0xaa,0x08,0x34,0x70,0xd5,0xe4,0x22,0x88,0xcb,0x00,0x7a,0xb5,0x0e,0x79,0x5d,0xd0,0xb4,0xff,0x87,0x39,0x49,0x66,0xc4,},{0x44,0xf3,0x34,0x4b,0x95,0x66,0xc9,0xdf,0xd2,0x2d,0x61,0x98,0xe1,0xcb,0xf9,0x5d,0x9e,0x28,0xf2,0x98,0x2f,0xc7,0xf1,0x66,0xab,0x25,0xdd,0xa3,0x0c,0x46,0xf7,0x68,0xc5,0x58,0xe0,0x39,0x4f,0xb9,0xab,0x3e,0x1d,0x4d,0xb4,0xcf,0x48,0x7c,0x17,0x64,0x1a,0x13,0xf3,0xf4,0x89,0x39,0xe0,0xc6,0x48,0x27,0xa7,0x51,0x03,0xc5,0x74,0x06,},"\x54\xed\x47\x60\x6a\x14\x87\xc2\xf9\x00\xce\xfb\x6e\x89\x9d\xba\xf6\xc3\x1c\xc8\x8e\xbe\x35\x58\xb8\x3b\x93\xf6\xd4\x22\xc3\x1e\x88\x8e\x48\xe5\x20\xee\xae\xdd\x7e\x55\x4a\x9c\xd4\x0c\x2c\x51\x9d\x53\x3b\x61\x44\xce\xe4\x84\xc3\x89\xe9\x76\xb1\xe4\x02\x2b\x50\xe7\xdb\xb8\x7e\xad\x7e\x54\x1a\x20\x04\xda\xf7"}, {{0xcc,0x0c,0x33,0xf3,0xa8,0x6f,0x5a,0x17,0xd3,0x0c,0x18,0x6c,0xe0,0xf3,0xb7,0x40,0xba,0xfa,0x5f,0xe3,0xc7,0x09,0x0f,0x14,0x35,0x41,0xe2,0xb2,0xc1,0xe5,0x34,0xbc,},{0x96,0x7a,0x71,0xc7,0xcf,0x9b,0x82,0xcc,0x78,0xcb,0xe1,0x09,0x10,0x4d,0x8b,0x43,0x8a,0x8d,0x1f,0xd7,0x1d,0x26,0x0d,0x02,0x90,0x46,0xa9,0xa4,0x52,0x68,0x66,0xff,},{0xe2,0x77,0xb3,0xdd,0x65,0x5c,0x33,0xff,0x75,0xfa,0x92,0x0a,0xf1,0xfc,0xc8,0x59,0x40,0x1e,0x6c,0x7a,0x6e,0xf4,0xc6,0xbf,0xbf,0xac,0x50,0x69,0x63,0x8f,0x19,0xca,0x11,0x5b,0xaf,0x13,0xc0,0x9c,0x82,0xaf,0x79,0x3f,0xac,0xb6,0xab,0xd0,0xcd,0x58,0xe8,0x48,0x1b,0x08,0xc1,0xb6,0x8a,0xd7,0xa2,0x66,0x5c,0x4a,0x61,0x4a,0x28,0x06,},"\x19\x44\xe5\xe1\x55\xd7\x5e\x0d\x0b\xe9\x2e\x1b\xe1\x4c\xec\x37\x0a\xd1\x37\x91\xf2\xbf\xd4\x0f\x27\x12\x14\xe9\x4f\xcf\x21\x3c\x71\xbc\x20\xd7\xce\x0c\x75\x84\x42\x1a\xc4\xef\xc4\x51\x88\x3c\xc3\xf4\x95\x6f\x21\xf7\x3a\x42\x16\x72\x04\x38\xbc\x38\xff\x2c\xfd\xf3\x70\x99\x05\xa5\x0a\x9d\x94\xb1\xd9\xe7\x93\x2b"}, {{0xf0,0xbc,0x97,0x93,0x75,0xa7,0x07,0x30,0x68,0xdb,0xa7,0xf6,0xc0,0x94,0xdb,0x65,0x98,0xb4,0xe4,0x5d,0xf7,0xd5,0x49,0x58,0x3c,0x22,0xfd,0xed,0x80,0x48,0xfa,0x2e,},{0xb4,0x2b,0x6c,0x57,0xa7,0x8f,0x1d,0x90,0x09,0x0a,0x71,0x81,0xab,0x2a,0xe0,0x9f,0x42,0x6c,0xbc,0x2b,0xe9,0x6e,0xb2,0xcf,0x27,0xab,0xc7,0x0d,0x7d,0x32,0xa4,0xb3,},{0x19,0xdb,0xc3,0x02,0x7f,0x9f,0xae,0x70,0x7d,0xeb,0x76,0xf5,0x88,0xf9,0xfd,0x07,0xaa,0x8e,0xae,0x29,0xbd,0x4e,0x1d,0x04,0xc2,0xc9,0x84,0x38,0x82,0x86,0xb3,0xb1,0x22,0x24,0x8a,0x6c,0x03,0xed,0x67,0xec,0xa3,0x5d,0xf4,0xdb,0x3d,0xc1,0xe4,0x23,0x7f,0x26,0x78,0x92,0x51,0x84,0x97,0xd9,0x55,0x2a,0x21,0xde,0x19,0xb5,0x14,0x0f,},"\x27\xab\x30\x49\xb5\xc6\x35\x1f\x6c\xfe\x38\xb1\x3a\x05\x9f\x50\x37\x25\x7e\xe3\xd6\x5d\x60\x79\x65\x68\x56\xed\xc8\x76\xea\x08\x1f\xd8\xa9\x48\x04\x66\xf8\x83\x94\x78\x08\x84\x66\xf5\x1e\xcb\xfa\xf2\xd6\x5d\xef\x25\xf0\xc4\xdd\x8d\x08\x58\x82\x02\x81\x22\x32\xf5\x79\x45\xdf\x8a\x6f\xa1\x61\xed\x8c\x03\x43\xb5\x83"}, {{0x30,0x22,0x97,0x5f,0x29,0x8c,0x0a,0xd5,0xdd,0xbe,0x90,0x95,0x4f,0x20,0xe6,0x3a,0xe0,0xc0,0xd2,0x70,0x4c,0xf1,0x3c,0x22,0x1f,0x5b,0x37,0x20,0xaf,0x4d,0xba,0x32,},{0xb8,0x45,0xbc,0xe3,0x8e,0x26,0xab,0x02,0x7b,0x82,0x47,0x46,0x3d,0x43,0x7a,0x71,0xbb,0xdd,0xca,0x2a,0x23,0x81,0xd8,0x1f,0xad,0x4c,0x29,0x7d,0xf9,0x14,0x0b,0xd5,},{0xae,0x14,0xa8,0x60,0xfa,0xd0,0x05,0x1b,0x3e,0xb7,0x2b,0x37,0x21,0xa8,0x2f,0x7b,0x95,0x46,0xb2,0x86,0x72,0x61,0xe2,0xb7,0xb6,0x38,0x97,0x9e,0x25,0x61,0xbd,0xeb,0x89,0xb6,0x00,0x76,0x8f,0x82,0x45,0x0a,0x66,0xc8,0xb0,0x48,0x12,0x83,0xfa,0x21,0xcb,0x6c,0x53,0xbd,0xe3,0x50,0xef,0xfb,0x68,0xa7,0xd1,0x11,0x4b,0xfd,0xb2,0x03,},"\x9a\xa1\x9a\x59\x5d\x98\x93\x78\xcd\xc0\x68\x91\x88\x7e\xf5\xf9\xc2\x46\xe5\xf8\x3c\x0b\x65\x87\x10\x67\x3e\x4e\x7d\xb7\x60\xc7\x63\x54\xc4\xf5\xd1\xe9\x0d\xb0\x4a\x23\xb4\xfb\x43\x4c\x69\x38\x45\x93\xd0\x10\xe3\x12\xb1\x1d\x29\x9c\x9f\x97\x48\x2d\xe8\x87\xce\xcf\xe8\x2e\xa7\x23\xbc\xa7\x9a\x1b\xd6\x4d\x03\xef\x19\xee"}, {{0x0f,0x71,0x0b,0x6c,0x48,0x1f,0x71,0x44,0x95,0x89,0x75,0x33,0x12,0xef,0x64,0x93,0x2b,0x46,0x52,0xeb,0xe0,0xe0,0x75,0x97,0xf7,0xda,0x1c,0x4f,0x3d,0xcf,0xfb,0x80,},{0x69,0x73,0xff,0x29,0x32,0xcc,0xdd,0xfc,0x1d,0x16,0xc4,0xc0,0xda,0x50,0xc8,0xb2,0x9f,0xe6,0x45,0x2d,0x1e,0xe8,0x4d,0x52,0x06,0x4e,0xbf,0x3d,0x62,0x8d,0x40,0x3e,},{0x02,0xa8,0xd2,0x6a,0xee,0x11,0x42,0x0f,0xb4,0xf0,0x9d,0x11,0x63,0xe1,0x4b,0x86,0x7d,0xf7,0xc6,0xf6,0xc8,0xf8,0xdc,0x7a,0x78,0x03,0x46,0x59,0xf0,0x40,0x1c,0xad,0x0a,0xa9,0x03,0x97,0xef,0xdd,0x07,0x04,0xb7,0x98,0xdb,0x19,0x36,0x50,0x30,0x26,0xe2,0xa1,0xad,0xc2,0x97,0xe2,0x79,0x74,0xd4,0xbe,0x31,0x2a,0x37,0x53,0xf8,0x04,},"\x85\xd8\x57\x44\xad\x55\xe9\xef\x9a\x65\xca\x91\xe8\x5c\x8a\x4f\x80\xe4\xc5\x8f\x8e\x4e\x93\x54\xe8\x33\x98\x60\x98\xb7\xd9\xfe\x9f\xdc\x0d\xed\xb0\xd7\x5d\x25\x39\xfb\xa0\x00\x34\xfc\x0c\x2e\x84\x34\x4d\x1e\xda\xa0\x9d\x4f\x63\xd5\x54\x6d\x67\x80\x3d\xd6\xb5\x4d\xdc\xc0\xb1\xd3\xf2\x58\x2d\xd7\x52\x89\xe3\x1d\xe4\x2e\x69"}, {{0x7a,0x05,0xf1,0x21,0xf6,0x01,0x12,0xdd,0x16,0xfe,0xe8,0xc9,0x1b,0xc2,0xa1,0x14,0x79,0xf4,0xb6,0x7e,0xe3,0x34,0x56,0x04,0x2c,0x8d,0xe1,0x67,0xfc,0x58,0x80,0x17,},{0xb3,0xb0,0x5b,0xe9,0x89,0xce,0xa7,0x19,0x75,0x05,0xd4,0xb5,0x43,0x35,0xe5,0xe1,0xd7,0x7a,0x4b,0x52,0xba,0x72,0x82,0x60,0x4b,0xbc,0x1c,0xf6,0xc4,0xe8,0x7a,0x6c,},{0xd3,0x0c,0xe8,0xa3,0x22,0xb4,0x50,0xa2,0xfb,0x1a,0xfd,0x32,0x9c,0xec,0x85,0x59,0xcc,0xf1,0x12,0xbd,0x83,0x96,0x5f,0x9e,0xc4,0x73,0x62,0x70,0xa0,0x91,0x4e,0x06,0x11,0x96,0xbf,0x52,0x09,0x77,0x8c,0x9f,0x8c,0xcf,0x39,0xc4,0x66,0x8b,0xbf,0x0e,0x13,0x63,0xf8,0x1a,0xfe,0x45,0xdd,0x74,0xe8,0x0d,0x58,0x75,0xdd,0xbf,0x6f,0x01,},"\xd9\xc5\x9e\x8c\xc4\xed\xe5\x37\xbe\x21\x22\xab\x49\x2a\x5b\x91\x5a\x9b\x0a\x11\x4b\x2a\xde\x35\x6f\xc0\x45\x7e\xf9\x87\x22\xd5\xf5\x67\xb8\x62\x11\xe2\x83\x69\xd1\x41\x68\xec\x4a\x3c\x80\x40\x76\xe1\x54\xad\xc7\x0a\x66\x8c\xf6\x4a\x20\xd1\x3c\xf1\x90\xd1\x15\xcd\x68\x8d\x03\x6e\x46\x93\x82\x51\xdf\x49\x64\xdc\x35\x17\xb1\x0c"}, {{0xbf,0x38,0x1f,0x8d,0xfb,0x5d,0x0c,0x6d,0x64,0xe4,0x16,0xac,0x23,0xe0,0xd0,0xfc,0xb8,0x6e,0xbb,0x89,0x9b,0x1d,0x14,0x6a,0xbd,0x91,0x1b,0x92,0xa7,0x80,0x8e,0xb6,},{0x86,0x3f,0xad,0x8d,0x1f,0x1b,0xc6,0x30,0xa1,0x5f,0x6f,0xe8,0xec,0xef,0xe6,0xb4,0x49,0x7b,0x60,0xb2,0x1a,0xe8,0x83,0x0d,0xa4,0x67,0x42,0x04,0x5f,0xef,0x15,0x6f,},{0x99,0xb7,0x53,0x78,0x73,0x8f,0xca,0xc8,0x06,0x76,0x69,0xe8,0x50,0x9b,0x5d,0x26,0x07,0xe1,0xef,0x76,0xaf,0x90,0x04,0xe1,0x3f,0xe5,0xd3,0x93,0x2d,0xf6,0x0b,0x16,0x82,0x16,0xf5,0x85,0x65,0x34,0x0f,0xa4,0xd6,0x38,0x05,0x5a,0x89,0x04,0x4e,0xe7,0xd4,0x5e,0x2b,0xd0,0x82,0xa5,0x33,0x82,0x28,0x9a,0x34,0x70,0x06,0x48,0x98,0x0e,},"\x86\x54\xf2\xf5\xc6\xdc\xd2\xcf\xcb\xb6\xed\x8d\x2b\xc5\xfb\x5f\xec\x53\xe3\xef\xfb\x0d\xe6\x5a\xac\x50\x7f\xa5\x6c\x89\x77\x32\x39\x5a\xa0\x99\x46\xd3\xb6\x58\x6a\x92\xed\xd6\xdc\x99\x31\x5e\x1b\xa7\x4c\x6a\x02\x47\xc4\xba\x77\x60\xb9\x48\xeb\x3c\x09\x32\xd9\xfe\x1f\x0e\x9f\xea\x6e\xb6\x1a\x54\x8a\x9a\xb4\x8f\xfd\xf1\x54\x73\x29"}, {{0x36,0x98,0x32,0x41,0xa0,0xa8,0xe6,0x0c,0xe0,0x2a,0x61,0xb3,0xfa,0xfa,0xb1,0x5a,0x73,0x13,0xa5,0xa2,0x70,0xd0,0x15,0xb9,0xc9,0xec,0x07,0x0d,0xc4,0x2d,0xee,0xda,},{0x66,0x47,0x98,0x4d,0x42,0xb9,0xa5,0xb3,0xb1,0xaf,0xa3,0xb7,0xf8,0xf4,0x9d,0x4c,0x2b,0x05,0xe3,0x89,0x84,0xe9,0x9c,0xea,0x8f,0xd6,0x82,0x35,0xd2,0xae,0x46,0x27,},{0xee,0x37,0xdf,0x8a,0xf4,0x22,0xf9,0x1f,0x85,0xdf,0xe4,0x3e,0xfe,0x79,0xf6,0x23,0x78,0x06,0x8c,0xcd,0xba,0xf3,0x91,0x6e,0xec,0xbc,0x3a,0xdf,0xed,0x05,0x08,0xbd,0xeb,0xaf,0x5c,0xe0,0x6b,0x3b,0xc2,0x79,0xf7,0x80,0x87,0xf0,0xdb,0x8d,0xb3,0xc6,0x82,0x3e,0xdf,0xb3,0x2c,0x12,0x21,0x78,0x30,0xbe,0x72,0x3d,0x88,0x72,0xb3,0x0c,},"\xce\xbb\x9e\x40\x44\x51\x81\x82\x53\xc0\x39\x2a\x45\x54\xee\x73\x23\xc5\xd5\xb8\xb2\x26\x77\x57\x00\xb8\x06\xed\x5b\x91\x33\x79\x16\xea\x7e\xcb\xc3\xd4\x10\x3f\xc6\x5e\x53\x72\xae\x7e\x5f\x9b\xa2\xd8\xf5\xae\xe2\x4c\xcf\x6e\x63\x1a\xe2\x0c\x4a\xf9\xb5\xf7\x28\xcd\xf8\x9e\x81\x89\xde\xf1\xa5\xb3\xd3\x53\x47\xaa\x20\x35\x25\xea\x1d\x2e"}, {{0xd0,0x68,0x99,0xf9,0x3a,0x40,0x8d,0xac,0xb4,0x1c,0x96,0x97,0x18,0x34,0x6f,0x1e,0x28,0x9b,0xb5,0xea,0x65,0xe2,0x83,0xff,0x79,0xc7,0x05,0xa0,0x74,0x51,0x7c,0x35,},{0x46,0xbf,0x2a,0x08,0xa0,0x76,0xc4,0x7d,0x7f,0x11,0xb7,0x33,0xf8,0x14,0x1c,0x35,0x53,0x63,0xed,0x85,0xd7,0xde,0xf2,0x6b,0xa6,0xa0,0xce,0x15,0xac,0x5f,0x2b,0xe8,},{0x6f,0x89,0xde,0x92,0xa6,0x6b,0xc5,0xf4,0x14,0x43,0x39,0x12,0x49,0x50,0xbd,0xf5,0x88,0x14,0x4c,0xb3,0x72,0xf6,0x73,0x62,0x45,0x35,0x1c,0x94,0x76,0xbe,0xcc,0x59,0xa2,0x58,0xf9,0xa9,0x33,0xff,0xff,0x2b,0xef,0x4b,0x46,0xcd,0x10,0x57,0x39,0x52,0x25,0x79,0x9f,0xd0,0x9d,0xed,0xe6,0x82,0x3d,0xb0,0xe3,0x25,0xdb,0xc8,0x14,0x0d,},"\x08\x64\xc3\x9a\xc4\xfd\xa8\xeb\x90\x48\x59\x7b\xd4\x0b\xe0\x40\x10\x21\xfd\x2d\xd3\xa3\x39\x0a\x8f\xac\xce\x98\x4b\x26\x0a\x13\xfa\x2c\x7c\xfc\x00\xd1\x92\xfa\xdf\x13\x4a\x0a\xd5\xa1\x81\xee\x89\xef\xf0\xc7\x95\xea\xa0\xfb\xfe\x2f\x3b\x26\x11\x5d\x07\x16\x8d\xb4\x2e\xd2\x1a\x51\x30\x3b\x19\x58\xe4\xa4\x2d\xc0\x65\xb2\x2c\xe4\x8f\x17\xa6"}, {{0xee,0xbc,0xa7,0x96,0x69,0x70,0xee,0x9f,0x2c,0xc4,0xd7,0x4c,0x6f,0x1d,0x8e,0x0e,0xbf,0xf7,0xc4,0x5a,0xeb,0xad,0x34,0x9f,0xb9,0xf8,0x6d,0xf6,0x28,0xdf,0xff,0x0e,},{0x89,0x10,0x1e,0x03,0x09,0xf7,0x67,0xe6,0x4a,0xe9,0xc9,0x8c,0x4a,0x5d,0x8d,0x23,0x28,0xfb,0x3e,0xf2,0x62,0xd0,0x82,0xf4,0x9b,0x64,0xca,0x20,0x9e,0x19,0x90,0xf6,},{0x7d,0x44,0x7e,0xe5,0x32,0x8c,0x9f,0xe7,0xf1,0x19,0x36,0xcc,0x42,0x99,0x87,0x54,0xa5,0x6c,0xd1,0xd2,0xa6,0x95,0x1a,0xf4,0xfe,0xe7,0xc4,0xa8,0xeb,0x31,0x9d,0x49,0x23,0x70,0x7c,0x79,0x3c,0x55,0xd7,0x90,0x67,0xf8,0x22,0xd5,0xb1,0x6b,0xb5,0x77,0x6e,0x38,0xdf,0xfa,0xbc,0x67,0x23,0x7a,0x91,0x6a,0x81,0xa6,0x33,0x39,0xb0,0x03,},"\x0f\xac\x79\x0a\xdb\x9f\x59\xe5\xcb\x0d\xdc\xb2\xb6\x67\x17\x2f\x2a\x21\x03\x4d\x93\xbc\xad\xdf\x18\x86\x06\xfa\x9e\x77\x6d\xb3\x3a\x8f\xcc\x6b\xd7\xf5\x56\x78\x83\xfc\x0d\xe3\x51\xaa\x9a\xfa\xa3\x6d\x20\x75\xb1\xba\x85\x3b\xad\xa8\x49\xb8\x66\x1d\x5c\x81\x54\xe7\xb0\xaf\xea\x65\x6d\xd1\x5e\x01\xa9\xc5\xba\x21\x58\x9b\x02\xf8\xfc\x54\x81\xc2"}, {{0x38,0x20,0xb6,0xb1,0x59,0x39,0xd0,0xaf,0xe1,0x8c,0x9c,0xb3,0xd9,0xa2,0xa0,0x8f,0x16,0x7d,0xd4,0x58,0xeb,0x6c,0x7e,0x3f,0x15,0x58,0xb0,0xc6,0xdb,0x4c,0x68,0x90,},{0x80,0xb8,0x5c,0x65,0x59,0xfe,0xa8,0xb4,0x00,0xe1,0x99,0x9c,0xc5,0xbf,0xed,0x50,0x7a,0xd7,0xfc,0x29,0x4c,0xd9,0xba,0x0c,0xe2,0xdd,0x25,0x84,0xa9,0x10,0x89,0xb0,},{0x82,0x3e,0xe2,0xc0,0xc8,0xd8,0x7f,0xaa,0x0e,0xc0,0x14,0x1e,0x9c,0xe0,0x8b,0x51,0xe5,0x7c,0x83,0x97,0x92,0xd1,0xfb,0xd9,0x7a,0x96,0x72,0x07,0xfd,0x41,0x58,0x49,0xeb,0xfb,0x5d,0xad,0xb5,0xa1,0xdc,0x2c,0x0a,0x8b,0x7f,0xc6,0x3f,0xc3,0x54,0x85,0x7b,0x8c,0x90,0xc4,0x47,0x20,0xe1,0x3f,0x45,0xcd,0x01,0xe7,0xaa,0x23,0x14,0x0c,},"\x3e\x5a\xd9\x2d\x44\xb4\x0e\x86\x14\xd8\x08\x7c\x9c\x74\x3d\xe0\xc0\x86\x1a\x07\xf1\xf5\x14\x6d\x71\xca\xc2\xf3\x74\x00\x24\xe8\x41\xcc\x2d\x46\x02\x7c\xf5\xd2\x61\xd3\xee\x7c\x18\x75\xb3\x95\x51\x01\x7b\x5f\xb1\x46\x81\x14\xfc\x3e\x09\x8a\x89\x9c\xdb\xd5\x58\xb3\x9f\x09\x8e\x15\x6b\x6e\x98\x01\xeb\xcd\xd6\x5f\xed\x56\xdb\xfc\xaf\x2c\x8c\x78\x7b"}, {{0x0d,0x20,0xfa,0x4a,0x37,0xff,0x30,0xc4,0xdc,0xc3,0xe4,0x4e,0xa7,0xac,0x50,0x11,0x37,0xe5,0x80,0x7e,0x97,0x81,0x33,0x0a,0xc3,0x10,0x98,0x2c,0xc3,0xd3,0x9d,0xbd,},{0x67,0xbb,0x0a,0x01,0xbc,0x86,0x17,0xb4,0x91,0xef,0xf1,0xa3,0x26,0xc1,0xc7,0x0f,0x7d,0x0c,0x5b,0x95,0xa5,0xad,0x48,0x24,0x1a,0xed,0xce,0x1c,0x6f,0x08,0x83,0xcf,},{0xde,0xab,0x12,0xed,0x82,0xba,0x94,0xb4,0x69,0xca,0x98,0xb6,0x6f,0xa2,0x04,0x44,0xb4,0xb7,0x88,0x1c,0x4f,0x0f,0x85,0x34,0x09,0xc9,0xa1,0x50,0x4a,0x5b,0x2b,0x6d,0x78,0x60,0xf2,0x6a,0xda,0x6b,0xf7,0x34,0x59,0xb9,0xcd,0xb5,0x73,0xc8,0x01,0x71,0x21,0x33,0x8e,0xfa,0x60,0xf4,0x14,0x80,0x86,0xd7,0xa3,0xa8,0xed,0x59,0xbb,0x07,},"\x35\xe0\xf4\xb4\xa5\x17\xf9\xc7\xaa\x45\x14\xf0\x3e\x6d\x65\xf1\x9b\x27\xc6\x2c\xc0\x69\xf6\xbf\x07\xdd\x63\x78\xbd\x6a\xfe\x2b\x76\x65\x60\x00\x6c\xbd\x57\x30\xa0\x09\x19\xed\x11\x19\x1f\xb0\xc8\xda\xc5\x6e\x15\x3f\xc1\xce\xa4\xbd\xce\x50\x46\xcc\xcb\x71\x77\x59\xa4\x08\x3e\x1c\x16\xf7\x40\x76\x32\x64\xcc\x80\x4d\xe0\xd0\xe1\xa4\xb5\xa2\x30\x67\xaf"}, {{0xbe,0xe1,0x61,0x88,0x1d,0x81,0x9b,0x37,0x0d,0x24,0x0d,0x50,0x9b,0xa4,0x6b,0x06,0xfb,0x82,0x8e,0x20,0x31,0x0d,0x9f,0x6b,0x30,0x97,0x80,0x70,0x3e,0x98,0x92,0x7b,},{0x10,0x85,0x43,0x80,0xde,0x89,0x16,0x2b,0xfb,0x9f,0x78,0x35,0xa2,0x71,0x6a,0x3a,0x6e,0x02,0x65,0x67,0x1b,0x25,0x0b,0x38,0x9d,0x01,0xc3,0xbc,0xc0,0x37,0x36,0xb8,},{0xb0,0x7d,0x07,0x2e,0xb3,0x83,0x1f,0xae,0x8a,0x06,0xef,0xfa,0x92,0x01,0x79,0x74,0x96,0xdc,0xe1,0x26,0xb8,0xe1,0x1f,0xef,0x2f,0xa0,0x7f,0x66,0x4d,0xc5,0xcf,0x3d,0x4b,0xf9,0xc3,0x8a,0x8b,0x3c,0x09,0xfb,0x5f,0x14,0xfa,0x2d,0xeb,0x21,0x9e,0x7d,0x85,0x2f,0xdd,0x27,0xc7,0xba,0x32,0xd3,0x09,0x94,0x2f,0x27,0x46,0xdf,0xe4,0x04,},"\x5a\x6f\xe5\x99\xb6\xb0\x9b\x05\xc0\xba\x6a\x62\x2d\xf3\xa9\x2b\x3d\x37\x6d\x24\xd0\x4e\xa8\x5e\xbe\x76\x7b\xc2\xec\x4d\x14\xe8\x3e\x69\x37\xdc\x0b\x91\x4b\x48\x09\xfd\xb6\x07\x90\x68\x41\xa6\xfd\x1d\xcd\xf6\x1a\xae\xa8\xf9\xbb\x81\xb2\xcc\xaa\x32\xdf\x41\x29\x89\xae\x53\x64\x66\x80\xa7\x1a\x21\x1c\x84\x40\xea\xb0\xf1\xae\xc5\xe4\xfc\x00\xe6\xa2\xc9\x6d"}, {{0x70,0x15,0x0e,0x95,0x16,0x16,0x4a,0x3d,0x7b,0x7e,0x8b,0x6f,0x25,0x5b,0x65,0xca,0xc9,0xf0,0x74,0x59,0xb3,0x2d,0x11,0xbb,0x94,0xb3,0xd2,0x77,0x20,0x8a,0xbc,0x99,},{0x23,0x28,0xbe,0xc8,0xe4,0x03,0x51,0x04,0x78,0x82,0xe8,0xb4,0x3b,0xc1,0xab,0x08,0x53,0x86,0xfa,0x47,0x98,0x7e,0x46,0xea,0x87,0x60,0x88,0x14,0xc5,0xda,0x71,0x3c,},{0xed,0xa3,0xf5,0x03,0x3e,0xa7,0x95,0x3a,0x0d,0x58,0x3c,0x64,0x57,0x52,0x2e,0x84,0xad,0x78,0x44,0x53,0x04,0xd4,0x8e,0x57,0x7d,0x4d,0x69,0xe8,0x64,0x1f,0xeb,0xe1,0x52,0x48,0xd8,0xd9,0x0c,0xe0,0x94,0x4a,0x8f,0x80,0x1d,0x39,0x09,0x9b,0xc7,0x74,0x94,0xba,0xc4,0xce,0x2a,0x20,0xb3,0x83,0x69,0xc6,0xad,0xfb,0x71,0xe0,0x3d,0x0f,},"\x77\xbe\x8e\xce\xaa\xb4\x31\xa1\x3c\x2a\x28\xd0\xd1\x55\x64\x89\xd8\xc3\x92\xfd\x7a\xe4\x11\x57\xf7\xca\xf0\x82\xcb\x54\xe4\x5f\x08\x62\x6b\xe0\x07\x6b\xe8\x44\xd3\x8f\xde\x90\x1a\x5e\xab\x0e\x88\x32\xd6\x9d\xac\x22\xfb\x85\x07\xfb\x8e\xc4\xfa\xf7\xc8\x8f\xd2\x6d\xa3\x08\x46\x1a\xfe\x38\x59\x87\x97\x2b\x5e\x76\x0a\x34\xa5\xe1\x8b\x9a\x82\xb4\xaa\xa5\x29\xb7"}, {{0x3f,0x87,0xfc,0xfd,0xb4,0x21,0x42,0x2a,0x9c,0x5f,0xb9,0x82,0x68,0x31,0x3c,0x15,0x12,0x8c,0x78,0x84,0x4e,0xf9,0xeb,0x3b,0x37,0x13,0xfa,0x77,0xb6,0x71,0x89,0x03,},{0x53,0x3e,0xc5,0x92,0x28,0x37,0x4b,0xd0,0x3a,0x46,0x99,0xe3,0xa8,0x89,0x6b,0x86,0x18,0x2f,0xcf,0x8f,0xc3,0x08,0x5f,0xdb,0x8f,0x5c,0x46,0x71,0x52,0x4d,0x6f,0xe0,},{0xf6,0x51,0x9d,0x7e,0xdb,0x61,0x34,0x11,0x19,0x74,0x03,0x3f,0x03,0xb8,0xd8,0x9e,0x9c,0x76,0xca,0xec,0x89,0x65,0xa8,0xe1,0x7c,0xd4,0x5f,0xff,0x19,0xde,0x26,0x15,0xd7,0x3e,0xcc,0xdb,0x4a,0x66,0x64,0xa8,0xf0,0xe2,0x3a,0xdf,0x98,0x98,0x8e,0x96,0x25,0x1b,0xf2,0x6e,0xb7,0xa4,0xcc,0xaa,0xc1,0x07,0x9f,0x0a,0x77,0x2f,0x9b,0x05,},"\xc0\x0f\xed\x2d\x68\x94\x68\xbc\xba\xcc\xcd\x44\x6e\x8d\x8f\x29\x9e\x2a\x86\x92\x5e\x62\xe5\x97\x09\xaf\xaf\x48\x57\x46\x9f\xf1\xe0\x06\xd0\x0f\xa3\xe1\x8a\x36\x15\xf8\xf0\x6b\x6e\xbd\xff\x78\x5d\xde\x58\x85\x1d\x2c\x23\x90\x38\xa0\xc3\x44\xdc\xe9\x85\xbd\x1f\xc8\xde\xb4\x77\x9a\xe5\xf8\x93\x2e\x2f\x9e\xd5\x99\x0b\x64\x72\xdb\xe4\xe6\xfe\xf6\x91\x76\x57\xe0\xb5"}, {{0x44,0xce,0xef,0x04,0x4f,0xf9,0x98,0xd4,0xab,0xea,0xaf,0x37,0x4e,0xb4,0x1d,0x08,0x67,0x18,0xb6,0x30,0x97,0xb1,0xe3,0x5f,0x89,0x63,0x4c,0x14,0x89,0x71,0x32,0xea,},{0xe8,0x3c,0x86,0x67,0x7d,0x03,0xed,0x3a,0x5e,0x8c,0x95,0xf4,0x1f,0x0b,0x32,0x5f,0xf4,0x33,0x37,0x02,0xf2,0xff,0x69,0x36,0xf5,0x7f,0xf3,0x0a,0xa3,0x14,0x85,0xc7,},{0x55,0x45,0x52,0xd6,0xb7,0x90,0xd4,0x21,0xd0,0x6b,0x0a,0x67,0xf8,0xe0,0x02,0xad,0x7a,0x1e,0xd0,0x1c,0x06,0xcf,0x00,0xcb,0xea,0xec,0x2a,0x26,0x8b,0xda,0x29,0xf1,0x18,0x3f,0x0c,0xea,0xfc,0x62,0x5f,0xa5,0xfd,0xb8,0x47,0xdc,0x86,0xfa,0xe1,0xa2,0x04,0x06,0xe4,0x59,0xd4,0xa0,0x17,0x7c,0xb5,0x15,0x22,0x0a,0x56,0x8e,0x08,0x00,},"\x8d\x3e\x2d\xec\x46\x44\xc7\xb5\x16\x33\xb1\x3e\x63\x75\xca\x42\xff\x91\x38\x46\x5f\x43\xd7\x80\x0c\x73\x13\x19\x9f\x67\xc9\xcf\x1b\x52\x0b\x18\x20\xbd\x63\x0e\xcf\x1c\x99\x2e\x27\x67\xb3\x8e\xb5\xbb\xc4\x41\xa4\xab\x8d\x31\x7d\xb4\x41\xdb\x35\xa0\xfe\x3a\xbe\x7a\x9e\x45\x41\x88\x1c\x2d\x7b\x1a\x26\x12\x30\x69\x59\x81\x5d\x1d\xa4\x12\x67\xd9\x64\x9d\xd4\x49\x4a\xce"}, {{0x98,0xef,0x2a,0x44,0xd4,0xc8,0x47,0x6d,0xff,0x05,0xaa,0x78,0xdc,0xf9,0xc6,0xdc,0x08,0x6c,0xb2,0xf6,0x22,0xa0,0x67,0x45,0xd6,0x0c,0xbf,0x22,0x3f,0xaa,0xba,0x66,},{0x42,0xfd,0xb1,0xda,0xa3,0x9f,0x01,0x59,0x11,0x9b,0xee,0xc1,0xbe,0xdf,0x6f,0x03,0x94,0xb2,0x6a,0x2a,0x29,0xbd,0x1f,0xde,0x08,0x1e,0xcc,0xda,0xde,0xcc,0x22,0x6a,},{0xab,0x5e,0x87,0x24,0xa3,0xe6,0xff,0x76,0x05,0x8c,0xfb,0x21,0x4d,0x57,0x4e,0x04,0xd0,0x55,0x74,0xec,0xdd,0x4f,0xfe,0x8c,0x07,0xc7,0xaf,0x39,0x6e,0x88,0x26,0x87,0xc5,0xd7,0x9e,0xf1,0xe6,0x2f,0xbb,0x4c,0x5f,0x1b,0xd0,0x6b,0x9b,0xd8,0x97,0x82,0x6e,0xdd,0xe0,0xd1,0x11,0xd9,0x18,0xe8,0xef,0x96,0x1f,0xf2,0xa0,0x0d,0x77,0x00,},"\xc8\xb5\xfc\xfc\x3c\x18\xc7\xd9\x59\x57\xb6\x68\xe9\x1c\x73\x1d\x50\xc7\xfc\xea\x4f\x95\x75\xbb\xf7\x84\x62\x58\x70\xe2\x38\xdf\x54\x6e\x2c\xb1\xa1\x9d\x28\x08\xdd\x5b\x23\x0d\x38\x71\xfd\xec\x16\x10\x0e\xe1\xfb\xf9\xb7\x22\xfa\x37\x44\xa7\x50\xa3\xb3\x96\xb0\x5f\x9c\x21\xb8\xc0\xf6\x1e\xad\x57\xa7\x8c\x5e\xcf\x72\xb5\x79\xcf\xe8\x8a\x3f\x40\x4c\x8a\xcf\x52\x4f\x9a\xb9"}, {{0x93,0xa8,0xc7,0x92,0xa2,0x39,0xc9,0x31,0x91,0x7c,0x11,0x48,0x24,0xa0,0x17,0x4f,0x8b,0xc4,0xeb,0xbf,0x98,0xaf,0x8c,0x7e,0x32,0x1e,0x0f,0x5b,0xea,0x40,0x15,0xec,},{0x9b,0x2e,0xaa,0x8a,0x9c,0x2c,0x25,0xff,0x4f,0x6e,0x13,0xbb,0x12,0xba,0xe5,0xd0,0x6f,0xda,0x0e,0xb1,0x10,0x5f,0xaf,0xae,0x58,0x80,0xff,0x16,0x87,0x40,0xbb,0x74,},{0xcf,0xe3,0x2c,0x44,0x35,0xd9,0x11,0xd7,0x72,0xdc,0x07,0x27,0xe7,0x8d,0x68,0x9d,0x01,0x64,0xc5,0x06,0x95,0x97,0xcb,0x44,0x1b,0x22,0xc1,0xd2,0x62,0x36,0x47,0x9f,0x1a,0xfd,0x70,0x89,0x12,0x1b,0x9a,0xb4,0xf6,0x1b,0xbb,0x1f,0xae,0x1a,0xb4,0x2f,0x76,0x35,0xa9,0x2a,0x53,0x78,0x4d,0x71,0x70,0x91,0x6b,0x70,0x3a,0xa5,0xcc,0x09,},"\x90\x1b\xf4\xe0\x41\xca\xf1\x6e\x04\xf2\xff\xde\x8d\x6f\xe9\x7e\x93\xd0\x90\x0f\x6b\xc0\xfc\x09\xa9\xa0\x17\x9d\x13\x7b\x4b\x77\x88\xe5\x7e\xb9\x27\x66\xa9\xc6\x34\xf3\x5a\xdb\x5c\x29\x88\xaf\x1e\x86\x20\x8f\x46\x19\x98\xf5\x9c\xfe\xc9\x92\x04\xb4\x84\xfb\xca\xd3\x95\x1e\x7e\xe4\x40\x55\x23\x70\x5d\x97\x39\xb4\x43\x07\xdb\x03\xf7\x13\xfd\xa7\x8d\xb4\x21\xef\x31\x21\xb3\xba"}, {{0x70,0x01,0xfa,0x0c,0x44,0x04,0xc2,0x8a,0xa5,0xb5,0xfc,0xff,0x30,0xa9,0x61,0xf2,0x1a,0x22,0xf5,0xb8,0x5a,0x9e,0x38,0x2e,0x07,0xae,0xa8,0xa8,0x92,0x4d,0x0e,0xc1,},{0xda,0xeb,0xb6,0x3c,0x4d,0x8f,0x40,0xce,0xba,0x8e,0xc3,0x5e,0x3d,0xd9,0x46,0xa6,0xb7,0x5b,0xc7,0x4f,0xcb,0x29,0xad,0xe7,0xb5,0x5e,0xee,0x3c,0xc3,0xae,0xa5,0xca,},{0x64,0xea,0xc9,0xce,0x87,0x46,0x06,0x18,0x63,0x6b,0x41,0xfd,0x2d,0xec,0xc1,0x67,0x3b,0xfc,0x48,0xc5,0xf4,0x79,0xdf,0xac,0xb5,0x1e,0x86,0x68,0x64,0x07,0x37,0x4b,0x1d,0x10,0xbf,0x65,0xd6,0xd7,0x47,0x42,0x14,0xd7,0x77,0x0c,0x9e,0x5c,0x7f,0x80,0x6c,0x80,0xd5,0x3d,0x48,0xb7,0x20,0x87,0x0e,0x5e,0x78,0xf3,0x2e,0x3a,0x7e,0x05,},"\x44\xf4\x8c\xfb\x02\xf0\x87\x77\xa5\x78\x73\x85\x5f\x96\xbe\x4c\x02\x91\x32\x3f\x27\x39\xb2\x75\xd9\x07\x57\xa1\x54\x72\xe5\x75\x04\x36\xe0\x10\x74\x08\xfe\x30\x26\xc0\x06\x25\x68\x99\x83\xf9\x90\xeb\xa9\xbe\xcb\xfc\xe4\x03\xcc\xd5\x63\x56\xad\x27\x41\xfd\x21\x44\x5d\xfb\x23\xd7\x61\x12\xe5\x78\xb3\x39\x5c\xf9\xd9\x60\x95\x5f\x1d\xa8\xf3\x99\xca\x28\x6f\x21\x39\x0e\x25\xa5\x9a"}, {{0x3a,0xdc,0xe3,0xa3,0xd3,0xfb,0xc9,0x77,0xdd,0x4b,0x30,0x0a,0x74,0x74,0x9f,0x13,0xa3,0xb0,0x4a,0x5d,0x73,0xa2,0xcd,0x75,0xa9,0x94,0xe3,0x19,0x5e,0xfe,0xbd,0xac,},{0x6f,0xf1,0x9b,0x1f,0x18,0xd6,0x48,0x51,0xd5,0xc7,0x48,0x45,0xc6,0x40,0x7f,0x0b,0xf5,0x96,0xa5,0x2e,0x38,0x5e,0x02,0x01,0x27,0xe8,0x3e,0x54,0xcf,0xf5,0xac,0x19,},{0x7d,0xda,0x89,0xf8,0x5b,0x40,0x53,0x9f,0x5a,0xd8,0xc6,0xde,0x49,0x53,0xf7,0x09,0x4a,0x71,0x5b,0x63,0xdd,0xa3,0x0e,0xc7,0xcf,0x65,0xa7,0x85,0xce,0xae,0x5f,0xc6,0x88,0x70,0x7e,0xe0,0x0b,0xe6,0x82,0xce,0xcb,0xe7,0xee,0x37,0xd8,0xfc,0x39,0xee,0x6d,0x83,0xc6,0x44,0x09,0x68,0x17,0x08,0xa0,0x89,0x8a,0x18,0x3b,0x28,0x8a,0x06,},"\xfe\x6c\x1a\x31\x06\x8e\x33\x2d\x12\xaa\xb3\x7d\x99\x40\x65\x68\xde\xaa\x36\xbd\xb2\x77\xce\xe5\x53\x04\x63\x3b\xd0\xa2\x67\xa8\x50\xe2\x03\xbb\x3f\xab\xe5\x11\x0b\xcc\x1c\xa4\x31\x66\x98\xab\x1c\xf0\x0f\x0b\x0f\x1d\x97\xef\x21\x80\x88\x7f\x0e\xc0\x99\x1e\x8c\x11\x11\xf0\xc0\xe1\xd2\xb7\x12\x43\x3a\xd2\xb3\x07\x1b\xd6\x6e\x1d\x81\xf7\xfa\x47\xbb\x4b\xb3\x1a\xc0\xf0\x59\xbb\x3c\xb8"}, {{0x14,0x80,0x3c,0x1f,0x23,0xa4,0x7f,0xcd,0xd3,0x5e,0x5d,0x14,0x6e,0x20,0xca,0x63,0x0c,0xd7,0x12,0xc0,0x47,0xd5,0x33,0x0b,0x65,0x2e,0x31,0x85,0x7a,0xcb,0xc9,0xe8,},{0x36,0xf2,0xd5,0xbd,0x6d,0x83,0x24,0xfa,0x6e,0x9d,0xb7,0xf7,0xd8,0x54,0xeb,0xe4,0x8c,0x0e,0x62,0x99,0x99,0x81,0x22,0xe9,0xd4,0x4b,0x8a,0xdb,0xef,0x54,0xf0,0x93,},{0x07,0xa7,0xde,0x6c,0xe9,0x76,0x64,0xb3,0xea,0x09,0x28,0xe1,0x38,0x5c,0x33,0x09,0xbe,0x08,0xa4,0x7c,0xbf,0x4d,0xaa,0x91,0x86,0xa1,0xb9,0x48,0xc8,0x6f,0xbb,0xa3,0x9c,0x4e,0xfc,0xfc,0xb7,0xa0,0xa3,0x86,0x6b,0xc9,0x4c,0x67,0x88,0xff,0xe6,0xbe,0x0d,0x49,0x72,0xe5,0x6d,0x0c,0x32,0x92,0xd1,0xcc,0x6e,0x25,0x44,0x7b,0x99,0x04,},"\x55\x59\x83\x67\x9d\x02\x6e\x53\x54\xb4\xcc\x05\x5a\xe1\xbc\x14\x65\x3c\x72\x81\xec\x72\x23\x72\xf3\xfe\xb7\x78\xe8\x41\xda\x82\x1b\x3d\x0b\x8e\xe7\xa9\xa9\x12\x9e\xa0\x68\x24\xbe\x83\x79\xfb\xbd\xcb\x07\x48\xf4\x23\x72\x1c\xcb\x17\x2a\x1b\xaf\xa1\xd5\xae\x9f\xc1\xc5\x1e\x93\xd4\x1d\xd5\x51\xc3\x08\x60\x79\xb6\x20\x28\x6c\x1c\x40\xc1\x22\x3b\xbc\xbb\x76\x72\x2e\x92\xca\x21\xd8\x41\x0a"}, {{0x1a,0x61,0x15,0x4d,0x34,0x72,0xcd,0x96,0xb3,0x28,0xee,0x67,0x4b,0xeb,0x4f,0xc8,0x67,0x63,0xa9,0x69,0xfb,0x41,0x04,0x94,0xe0,0x67,0x84,0x14,0xe3,0x1a,0x46,0xa6,},{0x75,0x76,0xd9,0x3a,0xc8,0x5d,0x0f,0xc6,0x1f,0x25,0x8c,0x55,0xcf,0x90,0xbd,0x87,0xa6,0x35,0x09,0x9c,0x0e,0x81,0x0e,0xd0,0xb9,0x37,0x25,0x8d,0x13,0xb4,0x25,0x59,},{0xad,0xa1,0x66,0x6c,0x9c,0x3b,0x82,0x84,0xb8,0xa2,0x1c,0x4f,0x26,0x18,0xef,0x08,0x08,0xa6,0x46,0xf3,0xf1,0x09,0x41,0xe4,0x70,0xf7,0x38,0xe1,0x78,0x5e,0x2d,0xe9,0xfd,0xd9,0xc8,0xcb,0x52,0x6f,0x94,0x5c,0x7a,0x8c,0x69,0x94,0xf1,0x51,0xb7,0xd0,0x66,0x58,0x1b,0x1d,0x75,0x53,0x07,0x94,0x7c,0x62,0xbe,0xfc,0x8a,0xb7,0x07,0x0f,},"\x64\xc5\x65\xef\xbc\xb8\xb9\x52\x8e\xd4\x72\x53\xf3\xc6\xa4\x03\x5d\xb7\x81\xd6\xf0\x97\x6b\x5e\x5b\xa8\x44\x7d\x4e\xd5\x4b\x04\x10\x52\x93\xef\x4c\x00\x0d\x8b\x2e\x1b\x5b\x75\xe7\x27\xe5\xd2\xa0\x77\x74\x3b\x50\xd1\x83\xb4\x91\x76\x48\x01\xa2\x50\x4d\x16\xee\x6d\x7d\x8a\xc4\xfe\x40\xe6\xbf\xc2\xa8\x12\x9c\x72\x85\xa5\xac\x69\x1c\x35\xe6\x42\xed\x16\x2c\xf7\xfb\xc6\x45\x16\x73\x3a\x23\xb3"}, {{0xf2,0x15,0xd3,0x4f,0xe2,0xd7,0x57,0xcf,0xf9,0xcf,0x5c,0x05,0x43,0x09,0x94,0xde,0x58,0x79,0x87,0xce,0x45,0xcb,0x04,0x59,0xf6,0x1e,0xc6,0xc8,0x25,0xc6,0x22,0x59,},{0x1e,0xd5,0x06,0x48,0x5b,0x09,0xa6,0x45,0x0b,0xe7,0xc9,0x33,0x7d,0x9f,0xe8,0x7e,0xf9,0x9c,0x96,0xf8,0xbd,0x11,0xcd,0x63,0x1c,0xa1,0x60,0xd0,0xfd,0x73,0x06,0x7e,},{0xcb,0xef,0x65,0xb6,0xf3,0xfd,0x58,0x09,0x69,0xfc,0x33,0x40,0xcf,0xae,0x4f,0x7c,0x99,0xdf,0x13,0x40,0xcc,0xe5,0x46,0x26,0x18,0x31,0x44,0xef,0x46,0x88,0x71,0x63,0x4b,0x0a,0x5c,0x00,0x33,0x53,0x41,0x08,0xe1,0xc6,0x7c,0x0d,0xc9,0x9d,0x30,0x14,0xf0,0x10,0x84,0xe9,0x8c,0x95,0xe1,0x01,0x4b,0x30,0x9b,0x1d,0xbb,0x2e,0x67,0x04,},"\xfb\xed\x2a\x7d\xf4\x18\xec\x0e\x80\x36\x31\x2e\xc2\x39\xfc\xee\x6e\xf9\x7d\xc8\xc2\xdf\x1f\x2e\x14\xad\xee\x28\x78\x08\xb7\x88\xa6\x07\x21\x43\xb8\x51\xd9\x75\xc8\xe8\xa0\x29\x9d\xf8\x46\xb1\x91\x13\xe3\x8c\xee\x83\xda\x71\xea\x8e\x9b\xd6\xf5\x7b\xdc\xd3\x55\x75\x23\xf4\xfe\xb6\x16\xca\xa5\x95\xae\xa0\x1e\xb0\xb3\xd4\x90\xb9\x9b\x52\x5e\xa4\xfb\xb9\x25\x8b\xc7\xfb\xb0\xde\xea\x8f\x56\x8c\xb2"}, {{0x8c,0x9f,0x95,0x08,0x30,0x75,0xa4,0x3f,0xe4,0x26,0xd1,0x9f,0x1e,0x87,0x71,0x9b,0x40,0x04,0x3d,0xe8,0x8e,0xb0,0xee,0x97,0x1f,0x70,0xe1,0x0c,0x76,0x94,0xce,0x4e,},{0xe9,0x1d,0x16,0x7a,0xa3,0xeb,0xc2,0x3e,0x70,0xaa,0xb4,0x5d,0xab,0xe9,0x05,0xe4,0x16,0x26,0x2f,0x91,0x0e,0x2a,0x95,0x5d,0xd8,0x61,0x9e,0xfc,0x74,0xc2,0x4e,0x85,},{0xca,0xc5,0x55,0x22,0x2d,0xaf,0xec,0x76,0xa0,0xb4,0x7b,0x9d,0x2c,0x58,0x6b,0x3b,0x3b,0x9b,0x3b,0x9c,0x83,0x64,0xbe,0xb3,0xca,0xe1,0xe8,0xdd,0x7f,0x1a,0xe9,0xdd,0x74,0xf2,0x2b,0x8d,0xd4,0xad,0x2b,0x29,0x0f,0x81,0x35,0x1a,0x41,0x5a,0x99,0xf0,0x30,0xf1,0x07,0x78,0xbe,0x4c,0xda,0x85,0xd1,0xd3,0x53,0x33,0x1e,0x70,0xf1,0x09,},"\xb6\x9d\x70\xe8\x60\xf5\x5c\x42\x7e\xf2\xa7\x1d\xf3\x6e\x05\xbb\xc4\x3b\xb2\xe0\x64\x63\xaa\x5d\xe3\x44\x19\xc6\xa6\x14\xee\xa6\x69\x53\x35\xa8\x75\x26\xc1\x22\x64\x88\xd8\x42\x89\x1d\x05\x74\xdf\x34\x3c\x9c\x1e\x17\xae\xd6\x95\x8e\xce\xe8\x74\x74\x22\x1e\xb7\x7a\x59\x9e\xcb\x05\x93\x44\xc0\xd0\x52\xc0\x00\x2a\x66\xe5\xa6\x01\x31\x85\xaf\x69\xa0\x1b\xa5\xdb\xc6\x60\xd3\x6c\xae\x23\x5f\x67\xfe\x0e"}, {{0xd7,0xeb,0x1f,0xba,0x42,0x4f,0xee,0xd1,0x00,0x77,0x7e,0xed,0xb4,0x87,0x4b,0xf2,0x08,0x10,0xad,0x68,0x6b,0x67,0xe3,0x1d,0x27,0xec,0xf6,0x10,0x60,0x9a,0x33,0xf5,},{0xa2,0x5a,0xcb,0x11,0xa6,0xc8,0x25,0x71,0x3a,0x08,0x5f,0xa7,0x54,0x69,0x28,0x86,0xa8,0x7d,0x07,0xfb,0x9b,0xe1,0xa5,0x3e,0xb9,0x61,0x72,0x8b,0xb6,0x6c,0x90,0x60,},{0x2b,0xf7,0x19,0x68,0x2b,0x07,0xcc,0x5e,0xcc,0x04,0x80,0xf3,0x7e,0x9d,0x12,0x3f,0xf6,0xf4,0x4c,0x26,0xe6,0x95,0x8e,0x59,0xf0,0x80,0x46,0x6f,0x9c,0xd3,0x73,0xa1,0x65,0x00,0xda,0xf1,0x23,0xdc,0x3f,0x13,0x34,0x77,0x4b,0xfc,0x9f,0xa8,0x45,0x03,0xb1,0x6d,0xbf,0x21,0xa8,0x15,0xc1,0xad,0xa6,0xeb,0xef,0x49,0x20,0x46,0x17,0x02,},"\xa1\xd0\xf8\x1e\x3d\x59\x08\x9c\xc2\xb1\x9e\x07\xd2\xfc\xe4\x3d\xb4\xcf\x17\x1f\xaa\x64\x2f\x3b\x0b\xbd\xe7\x7a\xe3\xd5\x3a\xf5\xc0\x2b\xf8\xfc\x12\xff\xb4\xe5\x7f\x7c\x8a\x01\x5d\x6c\x2d\x17\x89\x44\xfa\xe9\xf7\xc8\xfc\x96\x9d\x4b\x77\xbe\xa5\x18\x76\xae\x99\xd5\x9e\x94\xad\x24\x56\xe0\xed\x72\xc5\x2c\xf4\xe5\x34\x0d\xa1\x7c\x44\xdb\xff\x86\x45\x7a\x51\x9b\x6f\xff\xe2\x69\x06\x62\x90\xd6\x29\xfe\x69"}, {{0x4f,0x6a,0xeb,0x35,0xfc,0xe1,0x4f,0xbc,0xbb,0x9a,0xa8,0xa4,0xf6,0x45,0x1b,0xf9,0x5b,0x98,0xdf,0x04,0x7f,0xa8,0xc4,0x3f,0x1e,0xad,0x3b,0x40,0x4d,0x3f,0x92,0x8f,},{0xbf,0x66,0xa9,0xed,0xd0,0x94,0x81,0xdb,0x84,0x44,0xa1,0x76,0xc8,0xce,0x05,0x78,0xd2,0x93,0x4f,0x0c,0xdc,0x97,0x34,0xe8,0x6f,0xca,0xac,0x05,0xbf,0x33,0x30,0xf1,},{0x6a,0xdb,0x07,0xe3,0x64,0xf2,0xa4,0x55,0xcb,0x05,0x86,0x7a,0xbc,0x51,0x1a,0xcd,0x9d,0x65,0x89,0x77,0xf0,0xca,0xca,0xfc,0x92,0x82,0x8e,0x7b,0x72,0x4f,0x6b,0xbf,0x98,0xbf,0x0b,0xfb,0x29,0xf4,0xe5,0xe6,0xc7,0x47,0x38,0xd4,0xfd,0xd8,0x16,0xd9,0x25,0x24,0x07,0xae,0x4f,0x3a,0xfc,0x57,0x4c,0x4f,0x00,0x61,0x48,0x24,0xe2,0x03,},"\x2d\xfb\xb3\xf5\x9e\x19\xea\x17\xd4\x4a\x5b\xde\x4a\xd2\x27\xa1\xa3\x51\xdd\xa1\x7a\xf8\x40\xee\x0a\x75\xda\x21\xa5\xcc\xa8\x9b\x6d\x1c\x56\x7c\x33\x3e\x9c\xc9\x10\xe2\x15\x7e\x05\xe8\x6a\xd5\xd9\x31\x14\x50\x64\x59\x4c\x47\xba\xee\xa8\x66\x3a\x34\x64\x9c\x43\xe9\x0e\xb9\x5c\xa1\x0f\x7d\x51\x59\x7b\x37\x8a\x72\x2f\x1f\x70\x4a\xdf\x9f\x22\xe9\xf8\x85\xb8\x9d\x1f\x93\x80\x06\xa2\xef\xcd\xb4\x2a\xaf\xf5\xe3"}, {{0xef,0x4a,0x67,0x62,0xb4,0x00,0x97,0x52,0x04,0xcc,0xc1,0x3a,0xbb,0x47,0x34,0x40,0x15,0x45,0x49,0x06,0x85,0x0f,0xf1,0x49,0x40,0xcb,0xb8,0x3a,0xa2,0x24,0x14,0xae,},{0xea,0xca,0x45,0x09,0x96,0xf5,0x0c,0xfa,0xf2,0xbd,0x7f,0x9d,0x7f,0xa7,0x08,0x7f,0x09,0xad,0x49,0x66,0x42,0x06,0xa8,0x0b,0xc2,0xe5,0xbb,0xbb,0x85,0xbb,0x66,0x8e,},{0x02,0x69,0x7d,0x44,0xca,0xd8,0x62,0xf1,0xda,0xf5,0x70,0x82,0x05,0xf4,0x50,0xd4,0x08,0x52,0x5b,0x10,0xc0,0x1f,0xfd,0x06,0xcf,0xee,0x80,0x37,0x4f,0x3d,0xb1,0x6f,0xa9,0xa4,0x9c,0x19,0xa9,0x84,0x4b,0x34,0x5f,0x2f,0x95,0x59,0xea,0x74,0xaa,0xb1,0x73,0xba,0xa0,0x78,0xc5,0x43,0x70,0xa5,0x16,0x67,0x00,0xc6,0xda,0xfb,0x78,0x0a,},"\xa4\xb6\x3e\xae\xd5\xa6\x4a\x94\xf2\xca\xd2\x12\xce\x2a\xe7\x10\x92\xfd\x3e\xa7\x44\xf5\xbd\x89\x56\x2b\x2f\xc2\xa6\xc9\xe4\xd7\xaa\x27\xad\xd5\x62\x64\xa5\xa5\x50\x16\x61\x0b\xe6\xc1\x9f\xf7\xd4\x98\x9e\x95\x04\x74\x08\x53\x01\x27\x15\xa7\x9e\xce\x9e\x12\xc3\x01\xb3\x31\x7c\x7d\x9b\x67\x30\xdb\x86\x2a\x4a\x1d\x28\x05\x8e\x0f\x8b\x5d\xdd\x97\x38\xc7\xc6\x2e\xa5\x72\xcf\xe5\x9e\xae\x08\xe2\xb8\xb6\x59\x3b\x58"}, {{0x55,0x01,0x7e,0x5f,0x61,0xf0,0xc5,0xba,0xfb,0xcd,0xe6,0xf8,0x49,0xf4,0x2a,0x31,0xe5,0xe7,0xa8,0x78,0xc1,0xd3,0xf9,0x12,0x6f,0xc5,0x69,0xfd,0x41,0x7e,0xa9,0xf2,},{0x66,0x91,0x4f,0x74,0xed,0x93,0x2f,0xc8,0x81,0xff,0x01,0x66,0x68,0x3f,0x67,0x5a,0x7c,0x28,0xa9,0x26,0xfd,0xdd,0x64,0x69,0xcd,0xb3,0xf2,0x8e,0x6d,0xec,0x42,0xcc,},{0xb1,0xa5,0xe7,0xc4,0x9b,0x8f,0xc6,0xb4,0x33,0x1e,0x04,0x16,0xce,0x7e,0x4e,0xd5,0x9e,0xdd,0x56,0x30,0x0b,0x80,0x2e,0x0d,0x72,0xab,0xca,0x4a,0x6f,0xcb,0x87,0x6c,0x03,0xbf,0x33,0x15,0x79,0x12,0x4a,0xe0,0xd3,0xfe,0x43,0xf7,0x89,0x8b,0xc8,0x7e,0x93,0xfc,0x2d,0xa3,0x97,0x0f,0xc8,0x63,0x89,0x57,0xd1,0x8c,0x66,0x13,0xc8,0x08,},"\x2f\xc8\x4a\x09\x98\xfa\x6e\x16\x8a\x86\x64\x10\xbb\x68\x10\x5d\xf2\x49\xa2\x8c\xfc\x76\x60\x4b\xe9\x4f\xd7\xdf\xff\xf2\xfc\x1d\xed\xd2\x20\x19\x94\x65\x57\x5e\x8d\xf8\x60\x19\x0f\x16\xac\xa4\x08\x41\x69\xbe\x16\xc6\xba\x32\xeb\x67\x04\x2f\xfd\x4f\x23\x03\x16\xa2\x6b\x26\x24\xa4\x2f\x8f\x90\xad\x57\xf6\x91\x64\x86\xfa\x91\xfd\x94\xed\x68\xad\xed\x4e\x63\x24\x30\xef\x71\x94\x46\x97\x9b\xfa\xf3\x45\x40\x9c\x38\x7f"}, {{0x05,0x53,0xfb,0xa8,0x66,0x94,0x23,0x41,0x21,0x7c,0xf2,0x78,0xac,0x57,0xcb,0x21,0xac,0xd0,0x9d,0x99,0x16,0xcc,0x6a,0xf0,0xac,0x46,0x94,0x1e,0xa1,0x39,0xd5,0x45,},{0x84,0x0c,0x66,0xe5,0x7c,0x2d,0x4f,0x52,0xa4,0xa2,0x79,0x6d,0x2a,0x53,0xc5,0x70,0x9b,0x96,0xa6,0x28,0xc2,0xe0,0x63,0xfe,0x6e,0xfd,0x47,0xf2,0x83,0xef,0x5e,0x82,},{0xbc,0x33,0x64,0xc1,0x52,0xee,0x5c,0x80,0x8a,0xc3,0x40,0xf4,0x9e,0xa2,0xcc,0x40,0x4e,0x93,0x51,0x71,0x21,0x22,0x0c,0xce,0x6f,0x7c,0x30,0xa2,0x25,0x00,0xe4,0x1b,0xcd,0xb6,0xe8,0x20,0x48,0x0f,0x8f,0xcc,0xdd,0x22,0xff,0x9a,0xd9,0x6d,0xa5,0x32,0x80,0x2f,0x43,0x1e,0x94,0x24,0x0f,0xb8,0x3d,0x4b,0xce,0xaa,0x09,0xb9,0x2b,0x0d,},"\xc1\xfa\xe6\x26\x2a\x0e\x98\xa6\xb1\x23\x5f\xcb\x62\x28\x3b\x7f\x0a\x09\x7f\x9d\x00\x24\x16\xd3\x18\xfe\xfc\x60\xc5\xa1\x58\x4f\x90\x0a\xd0\xab\x26\xcc\xfa\xe0\xd6\xd8\x4a\xa9\xaa\x2d\xf1\x6d\x4c\x11\x7e\xa2\x72\x46\x76\xcb\x86\x6d\x48\x70\xa8\x72\xfc\x82\x9a\x7c\x2a\x5d\x21\xba\x83\x34\x0a\xdb\x33\x9a\x34\xc5\x18\x4c\x7f\x5e\xad\x0f\x07\x72\x89\xb3\x36\x77\xed\x6a\x1b\xa3\x4b\xe1\x99\x4e\x25\x76\x3b\xd1\xd9\xfa\xec"}, {{0x7a,0x5a,0xc6,0x02,0xde,0x19,0xf3,0xc2,0x10,0x40,0xbc,0xdd,0xbf,0xf4,0x2f,0x6a,0xee,0x6f,0x95,0xc1,0xb0,0x93,0x86,0x8f,0x48,0xe5,0x04,0x82,0xdb,0xf4,0xf9,0xc7,},{0xfb,0xb6,0xc7,0x53,0x1c,0xda,0x21,0xe7,0xd1,0x7e,0xa9,0x03,0xc4,0xd1,0x4b,0xe6,0xc6,0x8b,0x4c,0xa8,0x03,0xa1,0x6b,0xd8,0x71,0x20,0xf5,0xaa,0xf7,0xdc,0xe1,0xd4,},{0x84,0x10,0x1d,0xd4,0xb5,0xe8,0xca,0x3e,0xd9,0x8c,0x1e,0x8a,0x06,0xe1,0x1d,0x7e,0x42,0x4b,0x0d,0x12,0xca,0x71,0x4e,0xe7,0x37,0x4b,0x64,0xc2,0x9d,0x51,0xa2,0x02,0x1c,0xc7,0x7a,0xc7,0x53,0x89,0xd9,0xb0,0xa6,0x46,0xa4,0x47,0x62,0x3d,0x7d,0x04,0xd1,0x24,0x18,0x66,0xb0,0xca,0x6e,0xdd,0x1b,0x7a,0xc0,0x15,0x66,0x6b,0x70,0x0d,},"\xbd\x16\x85\x41\x92\x79\xeb\x81\xe4\xcf\x3c\x90\x90\x31\xf0\xf0\x9c\x5f\xfa\xe7\xe2\xce\x6b\xa9\xd9\x6c\x2b\xce\x87\xb8\xba\x0d\xd7\x63\x23\x10\x01\xe5\x32\xc7\xdd\xd6\x21\x03\xab\xf7\x01\x28\x8e\x19\xdd\x8f\x53\x02\xe8\xf5\xd3\x1b\x64\xcc\x33\x9b\xd8\xb7\xa9\x55\x50\xc8\xa1\x16\xfd\x48\x69\x48\x77\x2b\xd5\xaf\x8d\xfd\x46\x00\x1c\x59\x76\x7b\x0d\x6b\xdc\xe3\x83\xa7\x07\x89\x92\xd1\x02\x2f\xbc\xaf\x90\x71\x06\x87\xb9\xaa"}, {{0x50,0x41,0x4c,0xf5,0x49,0xbc,0xc5,0x5b,0x5b,0x6b,0x75,0xea,0x37,0x82,0xb2,0xea,0x7c,0x08,0x7b,0x6a,0x01,0x06,0x17,0x5e,0x46,0x9c,0xa2,0xcc,0x76,0x4a,0xeb,0x01,},{0xd0,0xf3,0x0c,0x12,0xe9,0x97,0xf9,0x6e,0x7a,0xee,0xcd,0x1b,0xff,0x6a,0x01,0x2e,0xc3,0x88,0xeb,0xf8,0xf3,0xf4,0xaf,0x66,0x48,0x04,0xd1,0x63,0x8e,0x4c,0x34,0x6a,},{0xb3,0x09,0x80,0x01,0x60,0xde,0x43,0xa6,0x3a,0x89,0xa0,0xac,0xb8,0xa6,0x05,0x00,0x59,0x58,0x9b,0x3e,0xae,0xca,0xc2,0x0b,0x25,0x6f,0xec,0xe4,0x38,0x04,0x2f,0x69,0x41,0x5d,0x8a,0x56,0x88,0x3e,0xe3,0x83,0x6d,0x31,0x34,0xa7,0xfc,0x1d,0xe6,0x4f,0xa8,0xc8,0xce,0xcc,0x3c,0xe2,0x75,0x89,0xf6,0x06,0x05,0x88,0x20,0x85,0x7a,0x0c,},"\x75\xad\x77\xe8\xc5\x4b\x0b\x05\xfb\x2d\x16\x2e\x7c\xad\xb8\xa7\x52\x80\x81\xb8\x63\xf7\x6a\x44\x1b\x37\x44\x69\x41\x3e\x57\x14\xed\xf5\x4f\x80\x04\x96\xaf\x01\x57\xc1\x7e\x42\x55\x83\x41\x4d\x43\x61\xf2\x13\x41\x71\xc0\xb8\x7c\x22\xce\x68\x20\xa4\x85\x0a\xb4\x9d\x99\xa9\xba\xdc\xe9\xe3\x61\x10\xe7\xf3\x06\x01\x18\xb3\x59\x0f\x82\xb4\x37\x71\xe9\xfb\xb0\x81\xaf\xe6\x22\x27\xe0\x24\xd9\x8d\xe6\xcd\xec\x02\x8d\x7c\x49\x49\x0d"}, {{0x93,0xcb,0x00,0xd8,0xfe,0x9c,0x97,0x77,0xa6,0x83,0x63,0x1f,0x39,0xba,0x0f,0x48,0x76,0x14,0x82,0xcf,0x1c,0x36,0x6b,0xd8,0x63,0xcf,0x71,0x51,0x01,0x53,0x25,0x55,},{0x87,0xe9,0x4a,0x1e,0xa5,0x25,0x8d,0x61,0x18,0x0c,0xb8,0x28,0x59,0x0f,0xf1,0x41,0x8a,0x87,0xd0,0x1e,0x70,0x26,0x86,0xba,0x8a,0xbc,0x26,0x92,0xc8,0xdc,0x3c,0x91,},{0x09,0x82,0x4f,0xa2,0xdf,0xbc,0x4d,0x6e,0xf7,0x6a,0x9e,0x41,0x45,0x96,0x11,0x16,0x76,0x91,0x30,0x55,0x3b,0x3e,0xdf,0xfa,0x50,0xd0,0x4f,0x39,0xb8,0xb7,0x9f,0xac,0xbd,0x23,0x7a,0xcf,0x71,0x35,0x4a,0x53,0xa6,0xe5,0xfe,0xe7,0x54,0xe8,0x23,0xb0,0xb2,0x90,0xf9,0x61,0x93,0x20,0xa1,0x3d,0x56,0x12,0x69,0xa2,0x21,0x63,0x9f,0x03,},"\x88\xd8\x53\x8d\x31\x86\x78\x13\xd8\x8f\xef\x72\x28\xd4\x9a\x7e\x95\x0d\x73\x83\x96\xf1\x16\xdd\xa1\x02\x5f\x79\x13\x54\x7c\x5d\x1d\xc5\x67\x7a\x6d\xe4\xb4\xa5\x88\x05\x07\xb3\x61\x78\x0b\x61\xb4\x3f\x77\x95\x26\x3d\xb2\x2f\xf3\x41\x64\x5f\x2f\x59\x14\xfd\x60\x88\xc2\x81\x12\x11\xed\x47\x56\xac\x01\x9a\x60\x35\xd6\x6e\x31\x70\xc1\xd8\x2b\xfa\xa3\x05\x96\xb3\x96\xb3\x26\x0c\xc1\xd1\x0d\x41\x3d\xd4\x7e\xbe\x6d\xaa\x0c\x30\xdc\x42"}, {{0x2b,0x4c,0xae,0x38,0x0e,0x95,0xce,0x69,0x4c,0x26,0xac,0x79,0x57,0x44,0x73,0x47,0xf9,0x8e,0x31,0xb4,0xbf,0x02,0xd7,0x44,0xe1,0x31,0x52,0x90,0x71,0xe2,0x30,0x1d,},{0xe6,0xfc,0x70,0x5a,0x79,0xc9,0x8e,0x11,0x5b,0x4e,0x28,0xd3,0xaa,0x15,0x06,0xb7,0x4e,0xe7,0x42,0x76,0xc5,0xfc,0x11,0x09,0xa7,0xf4,0xd8,0x9c,0x6f,0xaf,0xb8,0x89,},{0x55,0x5e,0x45,0x65,0x6b,0xa9,0xcf,0xbf,0x51,0x55,0xd0,0xe5,0x25,0x76,0xe5,0x19,0x7a,0xbb,0xbc,0x9d,0xd2,0x33,0x99,0x3e,0xec,0x2a,0x1e,0xe7,0xf6,0xa8,0x64,0x09,0xc0,0xb7,0x1b,0x0a,0x66,0x19,0x78,0xff,0x5e,0x0a,0xcd,0xc9,0x46,0x3d,0xc4,0x49,0x90,0x6f,0x47,0x4f,0x8e,0x79,0xbb,0x86,0x16,0x8b,0xf7,0x07,0x41,0xe3,0x4b,0x02,},"\xe0\xb8\x25\x0e\x27\xb7\xc0\x29\x1d\xbc\x47\xa6\xda\x6f\x12\x68\x98\x7a\xfd\xf0\xa1\xe9\x0b\xe6\x9b\xcb\xc4\x37\x08\x65\x21\x78\x30\xd5\x20\x86\x93\xbe\x7b\x70\x45\x09\x9a\x22\xea\x27\xf9\x52\xeb\x3f\x79\xa9\xa0\xf1\xb5\xa8\x7b\x19\x36\x77\x90\x78\x8d\x34\xc2\x19\xc2\xe2\xa6\xb8\x34\x02\x0f\xb4\xfd\x14\x9d\xc5\x6b\x54\x4f\xdd\xbb\x42\x07\x1a\x16\x2f\xc7\xcb\x33\xc1\x46\xca\xc0\x5a\x31\xb1\x83\xe9\xda\xad\xc6\x16\xf3\xaf\x44\x9b\x17"}, {{0xb5,0x64,0x91,0xe5,0x49,0x99,0xbb,0x5a,0x17,0x15,0xeb,0xfa,0x2f,0xeb,0x14,0xa5,0x45,0xa3,0xa4,0x3c,0x2f,0xdf,0xd4,0xbe,0x0c,0x95,0xfc,0x11,0x81,0x9a,0xd6,0x95,},{0xcd,0x42,0xbf,0x41,0x4f,0x9b,0xfc,0x72,0xec,0x06,0x98,0x82,0xa8,0x00,0x55,0x7c,0xdf,0x31,0xbc,0x34,0x64,0xfb,0x10,0x2c,0x31,0x0e,0x6d,0xbd,0x3a,0xe2,0x08,0x63,},{0xe3,0xbe,0x3e,0x71,0xa8,0x98,0x52,0xdf,0x3c,0xff,0xd7,0x2d,0x68,0x20,0x78,0x69,0xdd,0x3e,0xce,0xb4,0x9b,0x1f,0x02,0x94,0x93,0xec,0xcb,0xb9,0x32,0x44,0x4e,0xbe,0x8c,0x8c,0x6d,0xb5,0xf0,0xa5,0xa6,0x7e,0x21,0x94,0x40,0x8d,0xf9,0x84,0x19,0x13,0xa5,0xac,0x1a,0x60,0x68,0x96,0x41,0x9a,0x66,0x8f,0x4f,0x47,0xc5,0x6c,0x2b,0x08,},"\xeb\x44\x18\xba\x30\x68\x3e\xc7\x95\x9b\xdb\x1e\xc7\xb2\x63\xf8\x3e\x81\xf0\x54\xdd\xcd\xbe\x0a\x67\x38\xca\x77\x63\xe2\x46\x93\x5b\xac\x41\x90\x26\xc2\x2b\xfb\xdd\x12\x36\x33\x6c\xc1\x61\x07\xc5\x35\x13\xe3\xdd\xf3\x4e\x12\x08\x46\x96\x2c\x3b\xdd\x54\xf5\xad\x57\x49\x59\x72\x08\xf1\x5a\x8b\xb5\x66\x67\xba\xa8\x95\xf0\x83\x40\xdb\x89\xb8\x5c\x43\x5e\x77\x09\x31\x92\x8d\x8a\xbc\x99\x26\x2f\x83\x9a\xed\xd9\xbe\x2a\xa1\x38\xc9\x25\x9a\xdf"}, {{0x65,0x79,0xc2,0x47,0xdd,0x2c,0xd0,0x2b,0xa2,0xf7,0xd7,0xa9,0x50,0xa3,0x30,0x75,0x26,0x81,0xe9,0x2c,0x0d,0xc6,0x29,0x84,0xbb,0xea,0x27,0x9e,0xa5,0x21,0xc3,0x81,},{0x0b,0x08,0x7b,0xea,0x1a,0x1b,0x3d,0x15,0x80,0x5c,0xb6,0x04,0xf4,0xbb,0x8d,0x68,0xed,0xde,0x27,0x4f,0xaf,0x52,0x1f,0xe6,0xdf,0x50,0xc5,0x5f,0x8a,0xd4,0xa7,0x0d,},{0xec,0xca,0xf8,0x01,0xae,0x0a,0x91,0x2e,0x21,0xc6,0xb8,0x3a,0x5f,0x0e,0x4e,0x88,0xd4,0xb2,0x71,0x34,0x59,0xff,0x93,0x44,0x9f,0xc0,0xb2,0x1a,0x9f,0x41,0x60,0x50,0x11,0x3c,0xba,0xe4,0xe8,0x14,0xd2,0x0c,0x0a,0x79,0x8f,0x76,0xd2,0xf9,0xd3,0x26,0xed,0x83,0x95,0x9e,0xa0,0x2a,0xbd,0xc1,0xab,0x35,0x0a,0x46,0x71,0x23,0xf7,0x09,},"\xdf\x7c\x55\x2f\xfc\x89\x37\x4b\x95\x71\xa6\x02\x4a\x8d\x04\x71\xd7\xeb\x6b\xe8\xdf\xca\x6f\x41\x66\xb5\x81\xb6\x54\x79\x01\x5a\x05\x68\x12\x90\x74\xcc\x04\xd6\x34\x2c\x75\x8c\xa1\x8f\x79\x87\xde\xc5\x36\xb7\x03\x3d\x5f\x96\x81\x50\x43\x40\xe2\x09\x86\xf0\x27\xb8\xcf\x1f\x26\x3b\xe7\x6d\xb3\x52\x5d\x17\x34\x22\x95\x0e\xa8\xdc\xed\xdc\x58\x56\x40\x91\x8a\xa9\xd2\x5c\xa8\x9c\xba\x70\x1c\x20\x20\x15\x38\x73\xf4\x61\x08\xc7\x72\xcb\x38\x8d\x55"}, {{0x18,0xfb,0xa6,0x0c,0x50,0x26,0xf3,0xc9,0xdd,0x7a,0xed,0xc0,0x42,0x09,0xd5,0x26,0x03,0x61,0xde,0x40,0x0e,0x19,0x0a,0xeb,0x60,0x16,0x9e,0x05,0xa3,0x36,0x7c,0x9f,},{0xdf,0xff,0x34,0x7f,0x3d,0xd2,0x55,0x53,0x0b,0xf7,0xfb,0x34,0xd0,0x2b,0xa4,0x86,0xd1,0x12,0xbb,0x46,0xe9,0x50,0xe2,0xef,0x80,0xe5,0x17,0x01,0x4c,0xc9,0x57,0x34,},{0x4b,0xc0,0x11,0xe4,0x0f,0x0f,0x59,0xc6,0x18,0xf6,0xbb,0xe2,0x30,0xb6,0xf7,0xbc,0x2f,0x50,0xe3,0x61,0x7c,0x7f,0xaa,0xb7,0xf4,0xc2,0x1c,0xb8,0x4f,0x77,0xeb,0xa9,0x94,0xcb,0x7c,0x2a,0x1b,0xf1,0x0b,0x01,0xbb,0x20,0x08,0x44,0x97,0xfd,0xf0,0xa6,0xab,0x5d,0x9b,0xcd,0x22,0xc4,0xa2,0xc5,0xa7,0x8f,0x79,0x92,0x68,0x25,0x94,0x0f,},"\x34\xf0\x8a\x80\x4d\x78\x29\xcc\x39\x14\xf0\x00\xce\x1a\x32\x88\xac\xce\x21\x49\xc8\xa0\x20\x86\xb9\xf6\x7a\xfc\xcd\x83\xa1\x78\xb0\xbc\xfd\x49\x70\xc0\x56\x99\x7d\xa7\xdc\x3d\x47\x56\x2f\x16\x66\x3c\xed\xc5\x2f\x82\xd7\x10\x85\x0c\xf4\x05\x03\x79\xef\xda\xc2\x3b\xee\x17\xc3\x30\xa3\x83\xad\x13\x7f\x78\x84\x73\xb2\xb0\x72\x36\x03\xb6\xde\xb1\xfd\xbf\x6c\x52\x3f\xc9\x48\xa0\xcc\xc4\xff\x10\x0f\xb9\x46\xd8\x74\xc1\xf9\x90\x43\x6a\xe8\xc4\xf3\xb2"}, {{0x07,0x3c,0xc1,0x5b,0x05,0x36,0x28,0x59,0x33,0xb2,0xbe,0x39,0x25,0x3c,0xf4,0xfd,0x69,0x6b,0x81,0x61,0x0f,0x5d,0xd3,0xad,0xac,0x2e,0x9c,0xbf,0x33,0x8e,0xf2,0xf6,},{0x00,0xb5,0x51,0xd3,0x71,0x54,0x43,0x75,0xda,0xc5,0xc4,0xe9,0x6c,0xd1,0xf0,0x21,0x52,0x07,0xe8,0xe1,0x66,0xa1,0xfe,0x49,0xd5,0xb0,0xa5,0x1a,0xc1,0x84,0x43,0xec,},{0x3a,0xa5,0x2a,0x83,0x06,0x2a,0x8f,0x28,0xa5,0xd6,0xb7,0x60,0x7f,0x48,0x4b,0x66,0xcc,0x37,0x48,0x96,0xb7,0x66,0x12,0x31,0x26,0x33,0x3c,0x57,0x95,0x81,0x31,0x6c,0x74,0x28,0x06,0xf6,0x27,0xb5,0xbc,0x55,0xca,0xd7,0x05,0xcc,0x1d,0x47,0x82,0xb0,0x44,0x08,0x0c,0x8a,0xc8,0x40,0xf3,0x8c,0x0c,0x50,0xd3,0x5e,0x34,0x5c,0x78,0x03,},"\xc2\x85\x36\x2b\xc8\xef\x62\x8f\x7a\xed\xf6\x54\x23\x1e\xe5\x1a\xcd\xf2\xcf\x69\xa8\x86\xb9\x42\xbb\x9b\xfe\xd8\x15\x51\x05\xd9\x20\x9d\xed\x2a\xf2\x4f\x16\x9a\xd5\xfc\xd4\x51\x37\x0f\x58\x27\xa8\x51\x11\xc7\xa5\x2e\x03\x2c\x50\x38\x61\x7c\x0c\x01\x70\xe2\xa6\xc2\x31\xdc\x40\x1d\x12\x06\x2e\xdb\x18\x60\x36\x11\x4e\x38\x79\x3b\x79\x08\x90\x77\x58\x1b\x97\x83\xf4\x00\x07\x10\x3e\xf1\x74\x72\x49\x1c\x00\xe7\x13\x8a\xec\xc5\x08\x4d\x3c\x85\x01\x04\x70"}, {{0xfd,0x89,0x4a,0x1e,0x82,0x32,0x20,0x3b,0x28,0x95,0x05,0xd5,0xc6,0x8c,0x68,0x79,0x1f,0xfc,0x0e,0x54,0xf2,0xa8,0x75,0x30,0xfb,0xba,0x5b,0x3a,0x3f,0x2c,0xaf,0x00,},{0xe9,0x5a,0xb5,0x65,0x94,0x5c,0x7a,0xe5,0xd5,0x33,0xdf,0x5d,0x0c,0xcc,0xc7,0xe9,0xab,0xbc,0x83,0x8e,0x20,0xa0,0xb6,0x1c,0x93,0x0f,0x5d,0x41,0xd8,0x1a,0x6f,0xe7,},{0xf5,0x11,0x02,0x21,0x9e,0x88,0x04,0xbe,0x71,0x3e,0x55,0x6d,0xf4,0xe4,0xaf,0xa2,0xf8,0x86,0x6f,0xe8,0x65,0x41,0xa1,0xc2,0xa0,0x93,0x4d,0x24,0xc3,0xc9,0xbe,0xb2,0x80,0xa7,0x0d,0xd8,0xd5,0x27,0xfe,0x8b,0x7e,0x0b,0x94,0x82,0x14,0xd5,0xf2,0xf9,0x63,0x86,0x19,0x91,0x4b,0x72,0xd5,0x5d,0xc1,0x98,0xb0,0x22,0x9a,0x84,0x87,0x08,},"\x26\x69\x62\x4a\x94\xf2\xc4\x4a\x05\xb7\xdc\x3e\xbf\x93\xe5\x8a\x4b\xf3\xa0\x1c\x27\x36\x57\xe7\xe7\x87\x89\x76\xf6\xb6\xea\x73\x7f\xa3\xf2\x2c\xc8\x36\x5b\x8b\x22\x0c\x00\x7d\x5b\x64\x27\x26\xa4\x08\xfe\x2f\xab\x69\xeb\xb3\xbd\x07\x2b\x34\x9f\x4d\xc3\x37\x7e\xe7\xcc\x75\x29\x34\x25\x42\x15\xd2\x39\x89\xbd\x3c\xd0\x2c\xe9\x99\xad\xec\x97\x84\x99\x3f\x4c\x19\x94\x08\x15\xf3\x9c\x9e\x22\x92\x47\xf5\x20\x5c\x36\xcb\xa4\x4e\x71\x42\x66\x36\x92\x89\xb4\xa7"}, {{0x18,0xef,0x46,0x4e,0x28,0xf8,0x7f,0xfc,0xfa,0x4d,0x3a,0x9c,0x09,0xa2,0x29,0x10,0x95,0x1b,0x8c,0x71,0x9f,0xda,0xcd,0xb5,0x6d,0xe6,0x2c,0x4b,0x40,0x6d,0xf0,0x0c,},{0xc5,0x06,0x4c,0x9d,0x43,0xee,0x2d,0xa7,0x5b,0x06,0xbb,0x09,0xc7,0x72,0x67,0xdb,0xd0,0xd3,0x91,0x28,0xf1,0xcd,0xc6,0xbf,0xa4,0x51,0xa0,0x3e,0x93,0xaf,0x4a,0x70,},{0xd1,0xe7,0xf1,0x6e,0x8e,0x59,0x7d,0x42,0x8a,0xde,0xa6,0x55,0x91,0xd5,0x51,0xb5,0x4b,0x66,0x7a,0xff,0x20,0x20,0xc4,0x64,0xf7,0xf4,0xe5,0x3c,0x47,0x73,0xf7,0x04,0x33,0x24,0x9a,0x3c,0x71,0xb4,0xd1,0x1c,0x89,0xc3,0xfa,0xa8,0x92,0x80,0x92,0x27,0xb9,0xf2,0x9e,0xf4,0xf7,0xf5,0xd0,0x20,0xd4,0x67,0x4d,0x40,0x21,0x35,0x94,0x05,},"\x9c\x82\x57\x07\xd9\x35\x83\x65\xab\x9d\x38\xf7\xe7\x28\xd6\x28\xaa\x72\x2a\x4f\x1a\x20\xa3\x8e\x47\xc9\x99\xff\xf8\xfc\x32\x41\x7f\xbe\x07\x2f\x96\xeb\x6a\x0e\x11\xe4\xda\x9b\x6d\xe9\x61\x54\x45\x28\x0e\x93\xc7\x7a\x36\x34\xd3\xd2\xc6\x87\x98\x56\xc2\x48\xf9\x80\x0f\x60\xa0\xd3\x8d\xc1\xce\xa8\xb7\xf3\x1f\x28\x6c\xb0\x37\x48\x27\xb4\xc6\xba\x14\x4a\x66\x94\xf2\xb9\x08\xea\xd6\x8d\x18\x34\x01\x24\xcb\x59\xcf\x17\x01\x86\x3b\xd4\xf3\xef\xc7\x09\xf3\x62\x7a"}, {{0xc9,0x11,0xbd,0xf2,0xf9,0xe7,0xcc,0x5f,0xff,0x35,0xc9,0x6e,0x15,0xcc,0x12,0xea,0xfd,0x05,0xab,0x0d,0xb3,0x1f,0x64,0x9f,0x74,0x08,0xac,0xd0,0xca,0xda,0x76,0xe0,},{0xde,0x44,0x69,0x6c,0xd6,0xbd,0x2c,0xbe,0x9b,0x11,0xa0,0xef,0x18,0xb8,0x81,0x64,0x80,0x1a,0x96,0x9d,0x5e,0x06,0xed,0x45,0x3e,0xb4,0x00,0x8c,0xce,0x9a,0x57,0x25,},{0xd5,0x84,0xb5,0xda,0x37,0x1a,0xe4,0xf5,0xc9,0x85,0x9b,0x25,0xf7,0x0d,0xc5,0x6c,0x1b,0x7b,0x4e,0x02,0xd1,0xae,0x66,0x36,0x28,0x3b,0x1b,0x7b,0x11,0x21,0x7a,0xfd,0xcd,0xf6,0x5d,0x1b,0x49,0xca,0x2c,0x8e,0xf1,0x79,0x66,0xe9,0xbc,0x65,0xf1,0x0c,0x31,0x0b,0x77,0xbb,0x5d,0xf7,0xaf,0xf5,0xec,0x1b,0x37,0x9a,0x2c,0xe5,0x5d,0x0d,},"\x76\xc4\x71\x24\x1d\x17\x19\x29\x84\xb0\x03\x62\x69\x6e\x4d\x9d\x4d\x2b\x7f\x83\x9c\x20\x64\x11\x7e\x50\xa1\x59\x8f\x3a\x11\x72\xb1\x6c\x55\xe5\x39\x68\x66\x08\x47\x52\x02\x4f\x3a\x7e\xb6\x8b\xb3\xff\xdb\x80\x97\x9a\x0a\xf6\xd0\xf6\xaf\x26\xb6\xf0\xbc\x0c\x03\x84\x43\x3b\xcf\xd4\x4c\x75\xeb\x65\x4a\x8a\x82\x25\xcb\x9c\x4a\x7f\xb3\xc8\x24\xc3\xaf\x61\x25\xfd\x46\xdb\x28\x7e\x70\x49\x2d\x15\x46\x32\xcb\x8f\x62\x43\x26\x59\xd9\x58\xd6\x28\x1d\x04\xa5\x4f\x5f\x5f"}, {{0xd3,0x70,0x32,0x99,0xc4,0x1d,0xb3,0x6d,0x77,0xdd,0x3a,0x49,0x54,0x1f,0x3f,0xb2,0x1d,0x0b,0x2b,0xad,0x1f,0x6e,0x07,0x4a,0xff,0xd9,0x6f,0x1c,0x40,0xd0,0xf9,0x27,},{0x86,0x2c,0x5e,0xf6,0x16,0xa5,0xf0,0x66,0xfd,0x87,0x75,0x8a,0x56,0xab,0x45,0x05,0x6f,0xea,0x4b,0xd3,0x3f,0x00,0x8b,0xe2,0x4f,0x7b,0x54,0x0e,0x09,0x5e,0x14,0x8e,},{0xdf,0x28,0x27,0x71,0x21,0xea,0xc4,0x46,0x30,0x08,0x4c,0xce,0x75,0x91,0x7a,0xe9,0xf6,0xbe,0xc6,0x5a,0xf5,0x57,0x2d,0xc3,0x07,0x19,0xbd,0xe6,0x61,0xcf,0x69,0x6b,0x85,0xb8,0x67,0x2d,0xd4,0x98,0x3c,0xab,0x30,0xbd,0x05,0xcc,0x3a,0x11,0x9d,0x7d,0xb9,0xba,0xbd,0x52,0x2d,0x7b,0x3a,0x6b,0xcf,0x38,0x86,0xec,0xd2,0x5e,0x08,0x0f,},"\xac\x92\xed\xbe\x22\x25\x7b\xb0\x6d\x94\xaa\x95\x0e\x62\xd1\x8c\xa2\xac\x0a\x8f\xc1\x06\x00\x0d\x22\x31\xf8\xa1\x3b\x8d\x7a\x20\x9c\xcd\x8c\xc4\x9a\x6c\xd6\x8a\x7f\x36\xc0\x2f\xb8\xf7\x28\xd1\x55\x95\x16\x7f\x0b\xa8\xcf\xe9\x5c\x8a\x1e\x43\x5f\x32\x75\x13\x01\x4a\xc4\x28\xb7\x5d\x4f\x72\xe7\xc8\x34\xdd\x70\xe1\xa4\x48\xf1\x84\x7d\x34\x98\x47\x5f\x74\xe3\xd9\x33\x4d\xc7\xdc\xc4\xfe\xd7\x2b\xf6\xc7\xfe\x3b\x1d\x4f\x53\xd4\x29\x61\x6f\x1d\xf4\x4f\x19\x73\x31\x58\xb6"}, {{0xd4,0x11,0xcd,0x33,0x57,0x6d,0x0e,0xfe,0x9e,0xc4,0x13,0xcc,0xda,0xab,0xd4,0xfc,0xba,0xfe,0xc0,0x1a,0x3a,0xf4,0xb3,0xcb,0xe3,0x4f,0x8b,0x05,0xef,0x8b,0x59,0xba,},{0xe8,0x70,0x34,0x4d,0xf9,0x8d,0xd3,0xa8,0x70,0x2c,0x45,0x19,0xbf,0x9e,0x8b,0x35,0xa9,0xd1,0x89,0xe7,0x46,0xf7,0x20,0x3d,0xbb,0xf9,0xbb,0xfa,0xb2,0x2d,0x6f,0x63,},{0x83,0x46,0x0d,0x15,0x46,0x1d,0x67,0x17,0x71,0x0b,0xaf,0xd6,0xa4,0x7a,0x1e,0xaa,0x90,0x0a,0x80,0xf2,0xbf,0x8b,0x8a,0xae,0x24,0x68,0x77,0x36,0x14,0xee,0x84,0xbd,0x62,0x8c,0x97,0x17,0x47,0x63,0x68,0xef,0x36,0x40,0xcf,0x76,0x0a,0xca,0xc8,0x3a,0xd6,0x02,0x32,0xa7,0x69,0x63,0xb7,0xd5,0x25,0x88,0xb1,0x1d,0xc0,0x04,0xd7,0x0d,},"\x11\xd2\xc2\xa7\xf0\x19\x09\x88\x12\x66\x96\x43\x1b\x4b\xbc\xd9\x0a\xb7\xb5\x6a\x32\xda\x64\x04\xae\x44\x6a\xa7\x62\xa4\xdd\xc6\x60\x94\x97\x15\x38\xee\xb8\x5b\xde\x04\x70\xa5\x10\xbe\x0d\x6d\x85\x78\x0e\xe7\x30\xa9\x85\x41\x38\x72\x8a\xe6\x81\x61\x62\x26\x8d\xa8\x52\x85\x8e\xae\xd4\xec\x74\xc7\xac\x62\xe6\xe7\x09\x6d\xc0\x02\xdf\x0b\xdf\x5f\xa4\x0d\xa5\x65\xb4\x1d\x18\x1a\x3f\x0a\xd0\xc5\xe0\xb9\x76\x74\x3e\x31\x5d\x9d\xb8\xed\x41\x60\xab\xe6\x9c\x13\xa2\xb3\xf0\x9a"}, {{0xe1,0x0a,0x2f,0x13,0x80,0xc3,0xe4,0x72,0x0e,0x8a,0x87,0x07,0xa9,0xbc,0xb2,0x5a,0x0f,0x58,0x27,0x0d,0x70,0x59,0xcd,0x76,0x26,0xc7,0x15,0x34,0x47,0xed,0xfb,0x87,},{0xa3,0xc7,0x17,0xac,0xab,0x36,0x6a,0x40,0xb5,0x11,0x87,0xbb,0xf3,0x5b,0x2d,0x15,0xe9,0x7c,0xfe,0xac,0xd7,0x34,0x9c,0x06,0xef,0x1c,0x91,0xac,0x93,0xe9,0x06,0x56,},{0x09,0x4b,0xf6,0xf9,0x53,0xca,0x0e,0xb7,0x7d,0xf4,0x51,0x29,0xb7,0xbf,0x10,0xd1,0x92,0xcf,0x6d,0xde,0xae,0x94,0xad,0x62,0x02,0xb8,0xea,0xcf,0xbe,0xc1,0x19,0xe5,0x29,0x15,0x78,0xfe,0x64,0xa0,0x84,0xae,0x60,0x0f,0xe0,0x7e,0xfd,0xb8,0xa7,0x82,0x61,0x0d,0xbd,0xb0,0xb4,0x9e,0xb5,0xf2,0xa4,0x6c,0x43,0x23,0x55,0x55,0x2f,0x01,},"\x13\x52\x12\xa9\xcf\x00\xd0\xa0\x52\x20\xbe\x73\x23\xbf\xa4\xa5\xba\x7f\xc5\x46\x55\x14\x00\x77\x02\x12\x1a\x9c\x92\xe4\x6b\xd4\x73\x06\x2f\x00\x84\x1a\xf8\x3c\xb7\xbc\x4b\x2c\xd5\x8d\xc4\xd5\xb1\x51\x24\x4c\xc8\x29\x3e\x79\x57\x96\x83\x5e\xd3\x68\x22\xc6\xe0\x98\x93\xec\x99\x1b\x38\xad\xa4\xb2\x1a\x06\xe6\x91\xaf\xa8\x87\xdb\x4e\x9d\x7b\x1d\x2a\xfc\x65\xba\x8d\x2f\x5e\x69\x26\xff\x53\xd2\xd4\x4d\x55\xfa\x09\x5f\x3f\xad\x62\x54\x5c\x71\x4f\x0f\x3f\x59\xe4\xbf\xe9\x1a\xf8"}, {{0xb2,0xe6,0x97,0xb3,0xd3,0xef,0xec,0x97,0x6e,0xf3,0x36,0x95,0x30,0xc7,0x92,0x71,0x7b,0xdb,0xb4,0x28,0xd9,0xed,0x0c,0x11,0xec,0x0e,0xa9,0xb2,0xe5,0xf3,0x9f,0x82,},{0xc4,0xd2,0xe4,0xb3,0xc2,0x36,0xd6,0xc9,0xb8,0xc7,0x4f,0xa3,0x84,0x61,0x2c,0x47,0x10,0xd8,0x3a,0xa1,0x6a,0xd7,0xef,0x01,0xfb,0xb7,0x42,0x1d,0x4f,0xb3,0xf0,0xf6,},{0x50,0x47,0xfa,0x38,0x19,0x7b,0x83,0x28,0xe7,0x8d,0xd8,0xa1,0x0e,0x96,0x6a,0xfb,0x7b,0xd3,0xd4,0x36,0x08,0x28,0x0f,0x1c,0x25,0x7d,0x25,0xca,0x43,0xbc,0x1c,0x06,0xe9,0x4a,0x57,0x47,0xab,0x62,0x15,0xec,0xe5,0x4c,0xde,0xff,0x8c,0x56,0x56,0x7d,0x70,0xd2,0xf9,0x1f,0x9e,0xc8,0xc2,0x60,0xaa,0x10,0x80,0xa6,0xab,0x5a,0x7a,0x02,},"\x7b\x43\x62\x32\xac\x21\x11\xa8\x40\x59\x51\x0c\x48\x36\x25\x88\xfc\xb7\x38\x34\x26\xbe\x5e\x6f\x62\xf3\x72\xe4\xf7\xcc\xa8\x3c\x81\xc2\x35\x7f\x9b\x54\xf4\xa1\x52\x91\x06\x5b\x6d\x41\xaa\xd1\xea\x93\xcf\xfa\x77\x6b\x9a\xca\xa5\x8a\xfe\x2b\x51\x64\x4b\x97\xaf\x9a\x3e\x53\xf8\x4e\x40\xaa\x6d\x86\x05\x1e\x69\x14\xcd\x03\x9d\x41\x70\xa9\xa5\x26\xdd\x69\x95\x5f\xf5\x07\xc3\x3f\x74\xe2\x17\x65\x91\xfb\x0b\x3c\xd7\xf0\x0e\xe4\x18\xf2\xc2\x58\xa9\x98\x1c\xcc\xee\x72\xf0\x1c\x84\x30"}, {{0x19,0xa6,0x79,0xa7,0xa9,0x05,0xa1,0xe2,0xb3,0x03,0x8e,0x6e,0x41,0x8b,0x3d,0xa9,0x7c,0x30,0x89,0xc7,0xcd,0x35,0x1e,0xa0,0x7b,0xc8,0xd1,0xaf,0x64,0xea,0xcc,0x46,},{0x19,0xf0,0x83,0x61,0xf4,0x69,0xb4,0xae,0x1e,0x0c,0xeb,0x94,0xf4,0x7a,0x7d,0xe7,0x31,0x74,0x10,0xa9,0x2d,0xd0,0x13,0xb1,0x6a,0xe0,0xd0,0x53,0x2f,0xa4,0xb3,0xef,},{0x43,0x47,0xb7,0xb4,0xf7,0xc3,0xc4,0xdd,0x31,0x5b,0x83,0x84,0xa0,0xb0,0xca,0xee,0xd8,0x4b,0xda,0xbe,0x24,0xb2,0x91,0x5f,0x12,0x51,0x2d,0xfd,0x04,0x77,0x0f,0xc9,0x96,0xa1,0xbf,0xb7,0x29,0xaf,0xef,0x9e,0xdd,0x61,0x14,0x47,0x08,0x1a,0x53,0x30,0x61,0x7e,0xae,0xa1,0xc1,0xda,0xb1,0xbf,0x13,0xce,0xa8,0x99,0x72,0x04,0x91,0x0c,},"\x98\x0c\x7b\x4d\x29\x39\x06\x1a\xc7\xb9\xba\x44\x11\x17\xa1\x94\x85\x66\x17\x81\xa4\x08\x30\x67\xc5\x5a\xcf\x93\x02\x6c\x08\x2a\x93\xcc\x12\x4f\x09\x5e\x1b\x4f\x2c\x3f\x6c\x13\x54\x12\xa5\x09\x62\x28\xe8\xa0\x71\xe8\xb4\xb6\x68\xba\x9d\x96\x44\xea\x9f\x4d\xab\xfc\x54\xa9\x85\x6c\x3e\x96\x5e\x63\x63\x39\x5a\xb7\x09\x03\x7d\xda\x22\x9b\xaf\x92\x7c\xd0\x1f\x9a\xf5\xe0\x39\xaf\xc4\x2f\x3c\xec\x63\x4f\x5d\x83\x2d\x2a\xb7\xc7\xca\xd3\xad\x7b\x8c\xf2\x7e\xbd\xac\x69\x84\x31\xad\x82\x36"}, {{0xf0,0x3b,0x83,0x63,0xee,0x5b,0x0e,0xef,0x70,0x18,0xa4,0x9b,0xc0,0x2a,0xdf,0x73,0x1d,0xa5,0x4e,0xe5,0x0a,0x7f,0x03,0xb8,0x8a,0x29,0xa2,0x08,0x2b,0x18,0x9c,0x43,},{0x31,0x28,0x7e,0xf5,0xa2,0xe6,0x41,0x04,0xab,0x77,0x90,0xb3,0x12,0xf3,0x5c,0x7a,0xd4,0xaf,0x6b,0xeb,0x0d,0x7c,0xeb,0x8a,0x58,0xf3,0x6a,0x54,0xce,0x27,0x2c,0x3e,},{0xe8,0xfa,0x96,0x7e,0x6a,0xfa,0xdf,0x6a,0x87,0x7d,0x87,0xe5,0xf5,0xc5,0x2b,0xb6,0x34,0xb7,0x5a,0x78,0x04,0x19,0x9a,0x2b,0xc9,0xd0,0x27,0xb6,0x3a,0x35,0x65,0x4d,0x9d,0xdd,0x06,0x83,0x04,0x55,0x64,0x1d,0xbf,0xb4,0x9e,0xdc,0xe4,0x2e,0x20,0xe7,0xd4,0x10,0x4a,0x07,0x1c,0x2c,0xbb,0xec,0x23,0x01,0x8c,0x29,0x7c,0xed,0x99,0x08,},"\x24\x19\x1b\x54\x64\xb3\x5a\xc7\xbc\xf4\xa3\x75\xf0\x33\xef\xba\x89\x43\xb0\x9b\x9f\xf0\xfc\x40\x3c\xa7\xaa\xe7\x02\xa3\xcb\xf3\x96\xc5\x13\x1b\xc0\x08\x13\x2c\xf5\xf1\x29\x10\xd5\x86\xdc\x1d\xb9\xc0\x84\x57\x4a\x96\xba\xbe\xe9\x56\x42\xf9\x22\x37\x1c\x03\x82\xec\x04\x02\xa2\x6f\xeb\x14\x2e\x41\x46\xbb\xd3\x36\x0c\x2b\x36\x83\x4f\xe4\x5a\xf5\xe2\x86\x8d\x4d\x56\xfd\xd5\x04\xce\xbf\x0c\x2d\x7f\x57\x91\xb4\x42\x94\x17\xc8\xb6\x5a\x98\xe0\xb1\x5c\x46\x6c\x13\x7f\x41\x05\x24\xfc\xe7\x37"}, {{0x11,0x08,0x6b,0x0d,0x11,0xe4,0x15,0xab,0x1c,0xe0,0x2a,0xaf,0x8f,0x06,0x21,0xb5,0x44,0x30,0xf6,0xfb,0x13,0x5c,0x74,0xf4,0x0d,0x38,0xe8,0xc6,0x47,0x37,0x06,0x4b,},{0x71,0x66,0xdf,0xbc,0x69,0x1e,0xb8,0xc2,0x01,0x11,0x4b,0xa0,0xd1,0xa2,0xc7,0xb8,0x7f,0x7a,0x1f,0xd8,0xd0,0xb3,0x60,0x58,0xb0,0xd7,0xdc,0xab,0xe1,0xae,0x30,0xda,},{0xe9,0x07,0x45,0x9d,0x5a,0xdc,0xd0,0xd0,0xc3,0x64,0x18,0x58,0x1f,0x19,0xd0,0xee,0xbd,0xa7,0x13,0x8e,0xbd,0x9f,0xaa,0x0b,0x26,0x22,0x01,0xf4,0x58,0xc8,0x56,0x31,0x0b,0xb7,0x7f,0x4c,0x7d,0xe9,0x22,0x49,0x5d,0xcf,0xe8,0xb2,0x48,0xed,0xa2,0xad,0x0d,0xf6,0xa7,0x3f,0x47,0xbb,0xfb,0x89,0x4b,0xaa,0x7d,0x88,0x69,0x87,0x58,0x02,},"\x4b\x5b\x29\x36\xc5\xe3\x60\xa3\x84\x55\x50\x37\x21\x07\x8f\x8a\xdb\x40\x4a\x7e\xe7\xec\xc1\x48\x01\xdc\x87\xa6\x7a\x15\x2b\x76\x95\x69\xfb\xea\xc0\xaf\xa2\x5a\x20\x70\xa1\x68\x6b\x90\x0a\xc1\x63\x3d\x49\x98\x08\xcd\xb2\xe8\x1c\xe3\x91\x6d\x5a\x3c\x04\xd1\x9c\x5b\xb2\x69\x9a\x66\x2b\x8a\xba\x4a\xf9\x4d\x39\x0b\xac\x7c\xcc\x8e\xc9\x10\xed\x2a\xcd\xf8\x6e\xbb\x71\xad\xb6\x01\x87\x78\x85\xee\xf3\xc9\x16\x62\xfc\x30\x73\x8e\x35\x2c\xc7\x43\x53\xcc\xf8\xd8\xed\xee\xfa\xcc\x04\x2c\x10\xa0\xe5"}, {{0xef,0xce,0x76,0x67,0xa8,0xef,0x91,0x22,0x8c,0xae,0xd1,0x4e,0xb4,0x77,0xa3,0x45,0xe5,0xe8,0x23,0x92,0x34,0x08,0x08,0x48,0x76,0x0e,0xd0,0x97,0x07,0x13,0xfa,0x86,},{0x91,0x93,0x05,0x5a,0x84,0xdf,0x1e,0xac,0xca,0x28,0xce,0x2a,0x08,0xc2,0xa0,0x7a,0x50,0xf0,0x4c,0x02,0x4e,0xcf,0x1f,0xe4,0xa4,0x7d,0x2e,0xfb,0xaf,0x63,0xed,0x58,},{0xe5,0xa6,0x31,0x24,0xdb,0x16,0x96,0xb6,0x41,0x40,0xb6,0xe9,0x61,0x2f,0xa9,0x58,0x7b,0x3e,0xef,0x71,0x01,0x09,0x39,0x8d,0x44,0xba,0x0c,0xa6,0x3c,0x0e,0xba,0xd0,0x6f,0x0a,0x6c,0x89,0x94,0xea,0x34,0xb3,0xa2,0xaf,0x91,0xa8,0x9b,0xf4,0x1a,0xe6,0x14,0xd7,0x72,0x7d,0x71,0x6f,0xd4,0x2f,0x8b,0x92,0xe1,0xac,0x64,0xfd,0xbf,0x03,},"\xaa\x1b\xc8\x0d\x7b\xcc\x1d\x94\xa2\x3a\x57\xce\xdf\x50\x27\x48\x24\x77\xdc\x46\xb8\x68\x90\xbc\x0e\x5a\xc2\x9a\xe6\xc9\x1b\xbc\x43\x13\x03\x48\x79\x73\x05\xf7\x55\x43\x58\x0a\x8a\x06\x9b\x34\x8a\x7b\xd8\xfc\x3e\x01\x52\x30\xb7\xc1\x94\x0c\x7f\x80\xa8\x2b\x12\x90\x09\x10\xdb\xcf\x06\x30\xda\x03\xf0\x81\xd4\x4c\x7f\x95\x5d\x4a\x11\x72\xf5\x6e\xcc\x7c\x5a\xc6\x46\x69\x6b\xff\xdf\x4e\xb6\xd8\x8b\xdd\x9c\xc3\x84\x35\x28\xb7\x25\x83\xab\xb3\xba\xd0\x2e\x56\xef\x76\x46\xee\xd5\x13\x95\x51\xcd\xeb"}, {{0x88,0xfc,0xca,0xa9,0x6a,0xd8,0x84,0xd1,0x16,0x5b,0xe7,0x1d,0xd0,0xc4,0xf5,0xf8,0xf4,0x42,0x1c,0x60,0xfb,0xfa,0x49,0x8b,0xfe,0xe9,0xb9,0x67,0x46,0x24,0x43,0xbd,},{0xc7,0x5c,0xb0,0xe0,0x23,0x7b,0x45,0xb8,0x65,0x6e,0xea,0x9f,0x3d,0x1a,0x9d,0x4a,0xcd,0x01,0xa1,0x03,0xaa,0x26,0x9b,0xb2,0x4f,0xd5,0x41,0x22,0xfd,0x81,0xf2,0xac,},{0x27,0xd3,0xa1,0x97,0xcc,0x99,0x94,0x21,0x20,0x63,0xbc,0xe8,0xd7,0x99,0xe7,0x7b,0x68,0x53,0xb7,0x35,0x5e,0xbe,0x36,0x9b,0xcf,0x18,0x89,0xa4,0x18,0xa8,0x2c,0xaa,0x3a,0x79,0x87,0xa6,0x63,0xf6,0x21,0xde,0xfe,0x86,0xb3,0xac,0x4a,0xd4,0x4f,0xae,0xed,0x16,0xc9,0x11,0x6a,0xce,0x28,0xfc,0xcf,0x91,0x55,0x57,0xfa,0x77,0x99,0x03,},"\x9d\x0e\xac\x98\x55\x6b\xfa\x86\x72\xc3\x57\x05\xd1\xd6\x1a\xc4\xd0\xfc\xa1\x9d\xc0\xd9\x93\x01\x58\x77\x85\x7d\x27\xfd\x80\xf7\x4a\xca\xce\x66\x6c\x56\x34\x85\xd8\x1e\x53\x60\x3a\x6a\xef\x40\x87\x5f\xa5\x51\xcc\x10\x5f\x2c\xc1\x0b\x39\x69\x46\x79\xcd\xf4\xa6\xb0\x73\xbc\x88\x64\x5f\xc5\x1a\x36\xda\x17\x9d\x3d\x1e\x3c\x77\x22\x45\x4c\x5e\x73\x57\x7c\x61\xaa\x7d\x14\x8c\x4b\xa5\x0e\xa4\x6c\x56\xa1\xc3\xb3\xb3\xc4\x70\xf9\x31\x00\x49\x4e\x08\xbc\x55\x14\xac\x76\x3a\x85\x48\x3c\x42\xc7\xcd\xc2\x7c"}, {{0x67,0x0b,0x30,0x62,0x6f,0xe3,0x67,0xd8,0xb4,0x5f,0x43,0x73,0x3d,0x6f,0x25,0xb3,0x7e,0xcc,0xbc,0xb5,0x51,0x96,0x3f,0x0a,0xc8,0xb6,0x66,0xb4,0x80,0x41,0xc7,0x2d,},{0x65,0xaa,0x4c,0x6d,0x4b,0xa0,0xab,0x34,0xbc,0x75,0xb3,0x9f,0x09,0x52,0x7c,0xa6,0xf2,0x42,0x5f,0x52,0x41,0x5c,0xdf,0xfd,0xf2,0xdf,0xf2,0x73,0xf8,0xea,0x61,0x2c,},{0x1b,0x6b,0x43,0x77,0xd2,0xb9,0x8e,0x0f,0x9d,0x24,0xae,0x8d,0xfe,0x30,0xe2,0x39,0x6e,0x20,0x04,0x38,0x0d,0x34,0x31,0x48,0x8e,0x58,0x43,0xcf,0x8d,0x2d,0x7a,0x00,0x70,0xab,0x21,0xf8,0xa3,0xb5,0x1c,0xe8,0x4d,0x2f,0x4b,0xa2,0x09,0xf7,0x39,0xf9,0x22,0xbe,0xbf,0x79,0x80,0x96,0x69,0x3f,0x56,0x22,0x87,0x3d,0x79,0xae,0x6f,0x04,},"\xd0\x0b\xcc\xa7\xe1\x84\xd1\x0e\x1f\x1f\xe4\x20\xb5\x06\x39\xe1\xd5\xde\xba\x52\xa7\x51\x23\x6e\x68\xc5\x9b\xb4\xbf\xf9\x80\x2f\x5f\xc1\x65\xed\x42\xfd\x6d\x53\x46\x70\xa7\xc6\xfb\x60\xe4\x30\x7d\x94\x79\x15\xa2\x48\xbf\x2f\x93\x46\x5c\x2c\xb4\x4d\x8f\x45\x3d\x2c\x01\x5a\xfb\xc8\xed\x58\x81\x8e\xa5\x17\x26\xa2\x51\x77\x93\x0e\x9e\xa1\x92\xef\x45\x14\xf4\xbb\x0e\xb4\xe0\xf5\xd4\xae\x3c\x46\xe3\x57\xc8\x11\x87\xf7\xed\x17\x47\x33\xff\xf9\x59\xc3\xf9\xfa\xe6\x48\x6c\xfa\x13\x56\xa9\x56\x99\x21\x1d\xe5"}, {{0x81,0x3c,0x4d,0xae,0xd6,0x7a,0x19,0x0d,0x68,0xbb,0x63,0x5d,0x73,0xaf,0x6d,0xa7,0x4f,0x32,0xfd,0xf7,0xc4,0x8c,0xca,0x6e,0x59,0x26,0x29,0x46,0xb8,0xe8,0xc7,0x1f,},{0xa2,0x09,0x54,0x57,0xd7,0x69,0x70,0x20,0xe2,0xb8,0x84,0xd9,0x5a,0x96,0x57,0x8c,0x2a,0x90,0x0a,0x76,0x66,0xac,0x0d,0xc7,0xbd,0x38,0xf1,0x93,0x1d,0x79,0x45,0xd8,},{0xb4,0x46,0x57,0x4f,0xf6,0xa4,0xbd,0x2b,0x57,0x2e,0x48,0x7c,0x4a,0xb4,0x43,0xca,0x64,0x10,0x75,0x16,0x8a,0xa4,0xe1,0x09,0x2f,0x71,0xf3,0x0b,0xdb,0x06,0x8c,0xe4,0x6a,0x39,0x5e,0xfe,0xe1,0xee,0x66,0x0b,0x9f,0xac,0x26,0xd5,0x41,0x09,0x72,0x2c,0x15,0xcd,0xb7,0x91,0xbf,0xb8,0x7f,0xff,0x63,0xc6,0x59,0x6a,0xd4,0xf2,0x27,0x0c,},"\xce\x54\xcb\x04\x50\xe6\x89\xa0\xdb\xef\x78\x53\x08\xb3\x17\x74\x72\xfc\xd6\xd3\x82\x03\xe5\x8a\x05\x90\xb3\x1f\xa2\x53\xf9\xea\x59\x0b\xe5\x36\x8a\x92\x2d\xe8\x8b\x63\x45\x01\x02\x68\x44\x43\xfb\x81\x89\xe6\x01\x28\x20\x03\x32\x3b\x89\xc8\x1e\x92\xea\xef\x2b\x5d\xdc\x4a\x55\xc5\x3f\xa3\xcf\xad\x41\x60\x24\x8b\x3c\x28\x6f\xf8\x0d\x31\xd1\x61\xb7\xb8\xde\xe7\x13\x55\x2b\x56\xf1\x50\x7f\xb7\x2e\xad\xfa\x89\x05\x4e\x9d\x16\x00\xac\x87\x4c\x4b\x0a\x96\x10\x04\xeb\x6d\x0d\x4b\xfd\x2e\xcb\x9c\x73\x4f\x00\xba"}, {{0x84,0x00,0x96,0x2b,0xb7,0x69,0xf6,0x38,0x68,0xca,0xe5,0xa3,0xfe,0xc8,0xdb,0x6a,0x9c,0x8d,0x3f,0x1c,0x84,0x6c,0x8d,0xce,0xeb,0x64,0x2b,0x69,0x46,0xef,0xa8,0xe3,},{0x98,0xbe,0x21,0x00,0x19,0x93,0xa7,0xeb,0x1a,0x12,0x77,0xff,0x74,0xc1,0x55,0x04,0x18,0x3d,0x25,0xfd,0xfc,0xc0,0x5f,0x0d,0x4d,0xea,0x89,0x2f,0x6e,0x30,0x18,0x90,},{0x0a,0xd7,0x1b,0x00,0x25,0xf3,0xd9,0xa5,0x0d,0xb3,0x38,0x41,0x4d,0x6d,0x67,0x0e,0x77,0x99,0xb7,0x27,0x0a,0x84,0x44,0xf6,0xae,0x7f,0x12,0xae,0x7e,0xb7,0x1b,0xd0,0x3f,0xfd,0x3c,0x4f,0x36,0x63,0x1f,0x69,0xfd,0xcc,0x40,0x61,0x46,0x8f,0xf5,0x82,0xed,0xe4,0x95,0x24,0x3e,0xf1,0x36,0x1a,0x3b,0x32,0x95,0xfa,0x81,0x3b,0xa2,0x05,},"\xf7\xe6\x7d\x98\x2a\x2f\xf9\x3e\xcd\xa4\x08\x71\x52\xb4\x86\x4c\x94\x3b\x1b\xa7\x02\x1f\x54\x07\x04\x3c\xcb\x42\x53\xd3\x48\xc2\x7b\x92\x83\xac\xb2\x6c\x19\x4f\xd1\xcb\xb7\x9e\x6a\xfc\x32\xff\x68\x6b\x55\xb0\xb3\x61\x72\x18\xdc\xf3\x93\x16\xb4\xb6\x6b\x3c\x8c\x0d\x67\x26\x7a\x86\xdb\x8a\xdf\x37\x50\x80\x1b\xcf\x93\x27\xd4\xc2\x54\x41\xb9\x61\x97\x83\x2b\x4c\xde\x0e\xac\x3f\xf2\x28\x92\xa2\xf0\xbc\x17\xc2\xc2\x13\xc0\x23\x77\xa3\x33\xe3\x08\xed\x27\x16\x58\x04\x93\x83\xb7\xe2\xe5\x7b\x6b\x8b\x12\x55\x12\xe0"}, {{0x62,0x88,0x72,0x20,0x35,0xd1,0xea,0x69,0x9b,0xc7,0xcf,0xdf,0x18,0xd8,0x96,0x25,0x42,0x31,0x80,0xb6,0x83,0xfa,0x74,0x63,0x9f,0x4f,0x30,0xf1,0x53,0x59,0xcc,0x85,},{0xe1,0x7f,0xaa,0x01,0x95,0x72,0x86,0x1a,0x06,0x4e,0x1b,0xc5,0x71,0x25,0x6d,0xea,0x14,0x68,0xf3,0xa4,0x85,0x90,0xa8,0x91,0x38,0xaa,0xa8,0x59,0x25,0x08,0x0c,0xd7,},{0x9d,0xec,0x92,0xb6,0xe8,0x9a,0xdb,0xe8,0xf4,0xe1,0xb5,0xe9,0x3a,0xc4,0xfc,0xf9,0x57,0xde,0x7d,0x19,0x70,0xa2,0x26,0x77,0x0e,0xc4,0xed,0xa6,0x47,0xc8,0xe3,0xb3,0xdf,0xfb,0x27,0x31,0xa3,0x9e,0x16,0xe4,0xa0,0x11,0x9d,0x36,0x62,0xa9,0x37,0xe5,0x60,0x52,0x24,0x91,0xec,0x7a,0x16,0x96,0xbe,0x04,0xc0,0x76,0xb1,0x2e,0x35,0x01,},"\x8b\x6c\xaa\xca\xc5\x1d\x89\x49\xfb\x86\xac\xbc\xb1\xb9\x9d\x85\x9f\xf6\x7c\x64\x14\x7b\xc1\x21\x69\x09\xdc\xab\x07\xee\x6e\xf0\x9f\x40\x38\x63\x32\x73\x94\x68\x9d\xc3\x4a\xbc\x77\x8f\xcb\x5c\x1f\x50\x91\xac\xf5\xa0\x8f\x9d\x84\x22\x11\xd1\xae\x2e\xb4\x0b\xe9\xbb\x8d\x66\x79\x07\x74\x71\x54\x7a\x6c\x71\xff\x77\xb5\x19\xd4\xb7\x10\x8e\x32\xbc\x46\x25\x1c\x60\xde\xe8\xe3\x32\xb6\x22\x93\x16\xe6\xd5\x7c\x22\xab\x82\x6f\xf1\xbc\x33\xf2\xb0\x21\x38\x07\xc1\x92\x80\xaf\x11\x0f\xd2\x6e\xe2\x74\x68\x20\x1c\xff\x49\xcb"}, {{0x13,0x03,0x8a,0x3a,0x65,0xef,0x32,0x75,0x9a,0x9c,0xd9,0x03,0xac,0xb5,0x54,0xb2,0x52,0xde,0x00,0xe7,0xcd,0xb7,0x7b,0xbe,0xd1,0x97,0x0b,0x20,0x68,0x0e,0xe1,0x7b,},{0xb6,0xa3,0x08,0xe6,0x7f,0x9b,0x46,0xc6,0x64,0x99,0x45,0x6a,0xb5,0xcd,0x13,0x5c,0xb2,0xfe,0x84,0xa3,0x2e,0xb0,0x45,0x35,0x86,0x26,0x60,0x4d,0xa4,0x12,0x2c,0x8f,},{0x52,0x61,0x55,0x8e,0xcc,0x3c,0x98,0xff,0x36,0x35,0x1f,0x42,0xf5,0x04,0xca,0xd4,0xa3,0x2f,0xfd,0xa5,0xa7,0x44,0x56,0x09,0x60,0xb4,0xc1,0x06,0xe4,0x49,0x2f,0x02,0xe2,0x04,0x78,0x88,0x7a,0xfe,0xe4,0xf7,0x70,0xf0,0x55,0x97,0xa7,0xe3,0x88,0xca,0xce,0xae,0x80,0x5a,0xe3,0x51,0xe0,0xe4,0x5e,0x8e,0x57,0x8e,0x6a,0x6f,0xf2,0x0c,},"\xdd\xf0\x0b\x40\x33\xa2\xa0\x88\x02\x2d\xab\xe9\x33\x56\x43\x2f\x50\xdd\xc6\xc6\xe1\xa6\x59\xdc\x1a\x93\x12\x4a\x4c\x2f\xff\xfd\x18\x27\x65\xa2\xf5\x6c\x43\xea\x0b\xfd\x8d\xe8\x01\x50\x60\x88\x9a\xe6\x94\x1c\x3f\x3e\x25\x5d\x44\x21\xa1\xc3\x62\x01\xbe\x84\x6a\x27\x38\xa7\x1f\x12\x0c\xad\x59\x8c\xa8\x52\x7d\x70\xff\x8d\x5a\x09\x93\xb5\x5c\xb5\x15\x35\x17\x11\x0a\x41\x96\x2d\xaf\xf4\x22\x50\x15\x8f\x20\x96\xd1\xdd\xaf\x71\x86\xe5\x02\x98\xcb\xe5\x1f\xcb\x42\x9c\xbe\xa4\x11\x29\x3f\x8a\x7b\xd9\xcf\x06\x9f\xa2\x37\xe4"}, {{0xb9,0xde,0x5b,0x06,0x3d,0x3c,0xa3,0xa7,0x73,0xf1,0x14,0x94,0x1b,0x2e,0x42,0x27,0xc0,0x75,0x11,0xc0,0xf5,0xc0,0x60,0x17,0xb9,0xc8,0x84,0x50,0x18,0xf2,0x34,0x32,},{0x52,0x95,0x24,0x3c,0x86,0x46,0xe0,0x96,0x67,0x4d,0xda,0x15,0x97,0x9b,0x32,0x2b,0x9d,0xd0,0xfa,0xf2,0x7d,0x02,0x4a,0x0e,0xd5,0x77,0x13,0x34,0xe1,0x17,0x9e,0xd2,},{0x92,0xba,0x76,0x0d,0x14,0xd1,0x41,0x5c,0xfa,0xf2,0x18,0xca,0x84,0x70,0x14,0x08,0x8a,0xe5,0x1a,0xd8,0x21,0x11,0x3a,0x6f,0x86,0x30,0x35,0x6f,0x7b,0xa8,0x5c,0x00,0x5e,0x23,0x30,0xf1,0x06,0x6d,0x0d,0xf4,0x64,0x80,0x60,0x52,0xa4,0x17,0x46,0x10,0x05,0x04,0x62,0xf3,0xe0,0x13,0xd7,0x02,0xe7,0xc7,0x71,0x85,0xa0,0x32,0x58,0x0b,},"\x94\x93\xcc\x23\x89\x6b\x84\x09\x60\x46\xae\x10\x53\xaf\xe3\x94\x99\xe9\x42\x42\x54\xb3\x66\xfe\x14\x3f\x4d\xa3\x21\xe2\xdc\x9e\x47\x84\x20\x8e\x12\xa5\x42\xd8\x99\x82\x8d\xde\x7e\xff\x62\x5a\x7f\x12\x41\x69\x90\xc2\x84\x1f\xfb\x09\x5b\xf9\x4c\x0c\x61\x0e\x5a\x66\x39\x18\xb6\x89\x03\x1c\xcd\x6b\x51\x93\x49\xd0\x4d\xe1\xc2\x12\xca\x2a\x9d\x7a\xbf\x52\xe1\xb4\xfd\x46\x7b\xb6\x65\xb6\x91\x9e\xf8\xf9\x16\x17\xe2\x05\x56\x5b\xf5\x66\x47\xe5\xf8\xd5\x08\xea\x20\x0a\x84\x46\x7f\x8f\xa1\x22\xe7\x4b\xc3\xb9\x97\x9f\x11\x74\xe5"}, {{0x8f,0xf0,0x29,0x7c,0xc0,0x88,0x42,0xb5,0xe6,0x75,0x52,0xec,0x28,0x43,0xe0,0x43,0x53,0xa3,0x4d,0x74,0xef,0x89,0xb8,0x56,0x5d,0x97,0x20,0x5b,0x74,0xca,0x13,0x3a,},{0x0f,0x7e,0xf9,0x8c,0x5b,0xa4,0xaf,0x98,0x4d,0xfb,0x77,0xbc,0x4e,0x53,0x7b,0x2b,0x39,0xe6,0x27,0x3b,0xb3,0xe7,0xb9,0x5f,0xe1,0xb7,0xe6,0x78,0x19,0x52,0xbd,0x4a,},{0x07,0x83,0x73,0x7f,0x70,0x6e,0x6f,0xf3,0x66,0x14,0xf8,0x50,0x07,0x4f,0xca,0x1f,0x48,0x5f,0x24,0xfc,0xde,0x2a,0x28,0xaf,0x54,0x4f,0x37,0xab,0xd6,0x9b,0x7a,0x58,0x1d,0xef,0xd8,0xc7,0x71,0xb0,0x31,0xe1,0x08,0xd1,0x9d,0x78,0x8c,0x74,0xc5,0xf2,0x0b,0xb3,0xf1,0xc2,0x1c,0xd9,0x2b,0xe3,0x17,0xba,0xcd,0x8f,0x65,0x0b,0x49,0x05,},"\x2b\xdc\x3a\x48\x6c\x5e\x4e\xa6\x2d\xcf\xec\x8a\x9d\x4f\xcf\x9e\xa9\x49\x0d\xbc\xc7\x15\x61\x5d\x58\x49\x0a\x72\xce\x83\x3f\xa2\x23\x87\xca\x50\xa0\x05\x25\x08\xcf\x0a\xff\x1c\xa7\x27\xf0\xfe\xd4\x6f\xfa\x7d\x3c\x8e\x23\xc5\xbb\x01\xd4\x7e\x90\xff\x06\xd3\x85\x8a\x55\x7d\x99\x26\x48\x15\x79\xda\xf4\x38\x4a\xea\x50\xe9\x6e\xc6\x15\xd2\xa3\xbf\x3c\x11\x22\xf1\xf2\x4d\xd6\xed\x98\xa5\xde\x42\x18\x83\x58\x9c\x21\x39\x98\xca\x54\x32\x37\x3e\x68\xbb\xbe\x89\x42\x8c\xa9\x88\x5d\x05\x93\xd5\xe6\x21\x51\x16\xb8\x26\x63\x86\x45\x2b"}, {{0x05,0x0d,0x55,0x3d,0x28,0x2d,0xca,0x32,0x69,0xc8,0x3c,0x18,0x17,0x68,0xec,0x06,0x7b,0x81,0xc9,0xfe,0x0c,0x94,0xf2,0xa0,0xeb,0xbb,0x0c,0x94,0x2d,0x0f,0xcd,0x7c,},{0x63,0xe2,0x30,0xb0,0x03,0xc5,0x3a,0x56,0x72,0xe8,0x32,0xff,0x7f,0x24,0x43,0x0b,0xe2,0x23,0xe4,0x97,0xde,0x84,0x02,0x33,0xf5,0x95,0xa3,0xe2,0x00,0xc7,0x12,0x7e,},{0x3f,0x0e,0x83,0x76,0x5b,0x31,0xbb,0xe8,0xe1,0xfb,0x92,0xe9,0x67,0x8d,0x6c,0xde,0x57,0x1a,0x03,0xba,0x7f,0x1d,0xcc,0x11,0x28,0x46,0x1f,0x70,0x85,0x25,0x45,0x7f,0x4e,0x0e,0x23,0x53,0xaa,0x2b,0x59,0x8c,0x06,0x3f,0xf1,0xbf,0xfd,0xac,0x91,0x6b,0x5a,0x22,0x00,0x65,0x51,0x56,0x90,0x4b,0x05,0x85,0x57,0x7a,0x16,0x28,0x56,0x0d,},"\x15\xe1\x3b\x8c\x01\x00\x4f\x6a\xa5\xb2\x36\xdb\xb2\x81\x67\x7f\x74\x6d\x81\xe5\x48\xe0\xaa\x80\xf0\xe4\x14\x52\x15\x21\xd8\x56\xcd\x69\x4e\x7c\x91\x52\xbb\x5e\x43\x77\x6b\x60\xf6\xb5\x60\xed\x1a\xd3\xe4\xb3\x90\xdb\xf3\xe4\x6e\xf9\x25\x74\x43\xf3\x9c\x14\x9e\x02\x40\xa0\x2d\x02\x1e\x1e\x3d\x7d\x04\x6b\x26\xfd\x00\x4e\xee\x7c\xa1\x6a\x80\x59\xe1\x26\xc7\x4c\xb3\xf2\x19\x4d\xb4\x7b\xf6\x04\x65\xec\xef\x5c\x70\x4d\x2e\x2c\x75\xe2\xe5\x00\x60\xea\x2a\x31\xcb\x72\xb7\xb3\xc6\xb1\xb5\xec\x72\xab\x38\x00\x40\x85\x28\x1a\x22\xfe\x86"}, {{0x69,0x49,0x7c,0xd7,0xb4,0xe8,0x68,0xcf,0xa0,0x32,0x8d,0x92,0xbd,0x60,0x52,0xd7,0x72,0xb2,0x76,0x73,0x95,0xc1,0x45,0x95,0xb2,0x79,0x85,0x1a,0x9c,0xdd,0x31,0xaa,},{0x5d,0x27,0x6d,0x62,0x6e,0x23,0x0d,0x18,0xe7,0xbc,0xd6,0x11,0x41,0xcb,0x93,0xc9,0x0e,0xf0,0xf7,0x9e,0x01,0x32,0x12,0x12,0xd8,0x38,0xec,0x71,0x45,0x7b,0x1a,0xac,},{0xbe,0xaf,0xa5,0x83,0x40,0x96,0x09,0x08,0xe8,0xd8,0x6e,0x40,0x32,0x9e,0x3a,0x45,0x23,0xfc,0x7b,0xe7,0x70,0xad,0xdb,0x86,0xe3,0x4c,0x37,0x72,0xf8,0x4c,0xd9,0xfb,0x33,0x8d,0x1f,0x3b,0x65,0xbf,0xcd,0xb0,0x9f,0x35,0xc6,0xda,0x36,0xd1,0xa3,0xad,0xf8,0xf9,0x1f,0x1f,0xfd,0x57,0x82,0xcc,0x83,0x02,0x06,0x43,0x3a,0x08,0x41,0x0d,},"\x53\xcd\x08\x0a\x0c\x61\xf1\xa0\x93\xd3\xb3\xa7\x45\x71\xc2\x96\x30\x3f\x36\x3b\x41\x07\xed\xbe\x88\x0b\x7a\xa9\xdf\xe4\x4a\xb5\xd5\xdc\x5f\x74\xbe\x9c\x8d\x87\x6f\x04\xd7\x54\x65\x34\x91\xab\x51\xb1\x35\xfc\x95\x3f\x71\x28\x7b\x62\xff\x41\xb6\x7c\x74\x2b\xd3\x44\x56\x71\xa9\xd4\xf2\xdc\x17\x4c\xa1\xb0\x33\x5f\x78\x62\x7a\x0d\xd4\xb3\x06\x50\x50\x41\x78\x03\x9e\x73\x93\x63\x85\x10\xff\xe8\x40\x91\xb5\x72\x98\xd3\xac\x90\x01\xc3\x67\xc1\x45\x2f\xbc\xb3\x3d\xc5\x4a\x5d\xc3\x16\xfb\x2a\x52\x70\x76\x4a\x2a\xc8\x20\xa0\xb6\x3f\xbd\xc6"}, {{0x21,0x65,0xa4,0x86,0xb6,0x12,0xbb,0xff,0x52,0x9c,0xd0,0x03,0x46,0x96,0x4a,0x3c,0xb8,0xcd,0xcf,0xfa,0x51,0xdc,0x3d,0x52,0x4d,0xd5,0xad,0xc5,0xac,0x93,0x6d,0x68,},{0x7e,0xbc,0x83,0x9a,0x46,0x5e,0x14,0xf5,0x89,0x24,0x76,0xe4,0xa1,0x3b,0x39,0x88,0xf8,0x3b,0x3c,0xd2,0x7e,0xf7,0x9e,0x19,0x3f,0x86,0xfa,0x16,0xf3,0x4a,0x1c,0xe1,},{0x7e,0xc6,0xfb,0xa5,0x6b,0xa5,0x24,0x60,0xa1,0xb4,0xf2,0x73,0x86,0x89,0xc1,0x88,0x3d,0xda,0x9a,0xaf,0xfc,0x8b,0xde,0x17,0xcb,0x60,0x29,0xbd,0xce,0x3a,0x0e,0xbe,0x2f,0xff,0xda,0x55,0x93,0x9b,0x70,0xbb,0xd0,0x7f,0xdb,0xf6,0xfc,0x5c,0xda,0x87,0xfe,0xd8,0xba,0x58,0x57,0x5f,0x89,0x4a,0x36,0x6e,0x45,0xe5,0x70,0x5e,0xea,0x09,},"\xb7\x28\xda\x7a\x36\x16\x7c\x60\x85\xbd\x2d\x96\x2c\xf6\x39\x59\xfa\xcd\x95\xc9\xad\x45\x42\x02\x8a\xfb\xa9\x0e\xc9\xc6\xc0\x76\x0b\xda\xe9\x35\x42\x9c\x3f\xeb\x39\x33\xe2\xf0\x00\x42\xc6\x72\xad\x2c\xd7\x34\x8d\x92\xbc\x33\xf8\x17\x51\xe2\x94\xae\x91\x71\xb9\x45\xb1\x93\x14\x4e\xf8\xac\xb9\xa1\xbd\x9a\xbf\x04\x75\xce\x0d\x0a\xc7\x89\xb2\x00\xc3\x2e\x9c\x9a\x27\x36\xb1\x68\x36\x9c\xe5\xf9\x7b\x1e\x8d\x2e\x79\x00\xe1\xa7\x59\x17\x84\x41\xf1\xfc\x43\x05\x64\xae\x12\x9b\xae\x78\x57\x74\x05\x11\xa6\x68\xf3\x2c\x0a\x3b\x07\x7a\x9d\x8b\x19"}, {{0x1c,0x64,0xad,0x63,0xdd,0x14,0x70,0x34,0x59,0x8e,0x12,0x8f,0x74,0x06,0xec,0x05,0x30,0x74,0x6e,0xa1,0xc5,0xb7,0x2e,0xcf,0x79,0xe8,0x88,0x06,0x54,0x86,0xfa,0x1b,},{0xba,0xa6,0xbc,0xc1,0xc3,0xd8,0xd3,0xb1,0x1f,0xfc,0x15,0x87,0xad,0xdd,0xc5,0x8b,0xfd,0x96,0xc2,0xb9,0x92,0xb6,0xc6,0xf5,0x9f,0xcc,0x50,0xcc,0xbc,0xdd,0x0e,0xb9,},{0x74,0x77,0xe5,0x41,0x58,0xf1,0x3b,0x71,0x28,0xc0,0xa1,0x10,0xca,0x6b,0x65,0xf4,0x25,0x14,0xfb,0x70,0xcd,0x5c,0xf2,0x8a,0x8b,0x1c,0xc6,0x11,0x0e,0xa0,0x6f,0xcf,0x94,0x29,0x0d,0xa1,0x3f,0x85,0xa1,0x1c,0x23,0x51,0xd3,0xbb,0xcc,0xbb,0x4c,0x64,0xe0,0x21,0x5d,0x6d,0x0f,0x00,0x99,0xe7,0xf2,0x7b,0xc9,0x4e,0x94,0x9b,0x15,0x0b,},"\x9e\xbd\x8e\x33\x78\x93\xbb\x05\x3e\xf2\xb9\xe3\x26\x9d\xf5\x48\x48\x49\x4f\x03\xcd\x63\x57\x6b\x33\xe6\x4b\x10\x80\xbe\x4b\xe0\x15\x26\x4a\x40\x3f\xb9\x60\x2b\xbf\x90\xca\x19\xb2\x41\xa9\xb6\x68\x63\x90\x9b\x90\x08\xce\x1b\x2f\xfc\xf2\x36\xef\xa4\xc2\x66\x8f\x0f\x47\xdb\x9f\xf5\xfa\x15\x7d\x9c\xb6\x05\x41\x2b\xe7\xdd\x8b\x07\xea\x87\x8c\xcc\xae\x6b\xf5\x0f\x93\x5b\x86\xd1\x9e\x1b\x64\x8b\x69\xe5\x28\x55\x3a\x56\xd8\xaf\xb7\x82\x21\xad\x53\x30\x7b\x7a\x4e\xc8\xd2\xfd\x48\x61\xb5\x5d\xc5\xda\xe8\xe9\x3e\xf3\x87\xfb\xbe\x0b\x4c\xe7\xf7\x88"}, {{0x55,0xab,0xbc,0x5d,0xac,0x41,0x28,0x13,0x4d,0xc8,0xc6,0x01,0x8a,0x21,0x3e,0xd4,0xb6,0x0f,0xcc,0x8e,0x90,0xcb,0xd4,0x1d,0xb2,0xd2,0x1e,0xda,0x53,0x73,0xe9,0x36,},{0x25,0x1a,0xfa,0xa2,0x64,0x69,0x26,0xb2,0xa3,0x71,0xf2,0xa0,0x9d,0x58,0x65,0xb9,0x8c,0x9a,0x5e,0xb6,0xca,0x04,0x7c,0xd0,0xd8,0xee,0x36,0xe5,0xe0,0x41,0x69,0x74,},{0xf6,0xa6,0x1c,0x2e,0x66,0x1a,0x9e,0xb7,0xbd,0xe1,0x82,0xe3,0x8e,0xc9,0x9a,0xf9,0x85,0xf6,0x16,0x98,0xa5,0xd7,0xfa,0x43,0x0d,0x16,0xe3,0xf1,0xa9,0x37,0x09,0xb7,0x55,0x22,0x32,0x0d,0xe4,0x8a,0xfc,0xc5,0x95,0xab,0x20,0x91,0x22,0xae,0x0c,0xe1,0x32,0xcd,0xf4,0xb0,0x39,0x17,0x46,0xe7,0xff,0x34,0x11,0x77,0x57,0x0c,0x81,0x08,},"\x47\x01\x0e\x13\x98\xad\x55\xfa\xbe\x37\x1d\xd8\x64\x8f\x76\x8d\x90\xdf\x4b\x96\x5a\x3b\x39\x61\x00\xb3\x03\xb4\x0a\x17\x51\x8b\xed\x6d\x86\xb0\x9f\x73\x4a\xb7\xc1\x0b\x5f\x3a\x01\xb5\x3d\xee\xc5\xf8\x53\x4b\x70\xc7\x9f\x3f\x29\xb2\x84\xfd\xec\x48\x6f\x22\xf4\x4c\x22\xcc\xd5\xc6\x46\x35\x94\x41\x52\x67\xba\xa6\x11\xf7\x0b\x1b\x31\x6c\xaa\x1b\x68\xb5\xe0\xe9\x9b\x31\xc5\xbb\x0c\xe1\x36\x79\xa2\x3c\x31\xa6\x39\x99\x69\x81\x64\xcb\xf3\x7d\x10\x3b\xa9\x24\x90\x18\x8b\xe5\x99\x37\xf1\x23\x04\x3e\xc7\x86\xef\xe3\xd4\x11\xf9\xb0\x62\x3a\x6a\xd9\x72"}, {{0xf2,0xdc,0xf4,0xa1,0xa0,0xd4,0x6d,0xdb,0x2d,0x72,0xf8,0xfd,0xd8,0x0b,0xbe,0xc5,0xb7,0xde,0xa5,0x91,0x3d,0xa4,0x96,0x6c,0x2f,0x4d,0x12,0xc2,0x61,0xf0,0xbf,0x98,},{0xd3,0x95,0x70,0xa2,0x5c,0xa5,0x9f,0x22,0x57,0xf9,0x3f,0x96,0x60,0x0d,0xf4,0xf6,0x3e,0x68,0x4b,0xf6,0x3a,0xe8,0xdf,0xfd,0x91,0x4e,0x46,0x29,0xc3,0xd5,0x09,0x5f,},{0x42,0x88,0x2a,0x81,0x1d,0xad,0x2d,0x85,0x18,0x85,0xe4,0xcb,0xe9,0x04,0x47,0x08,0xd9,0x1a,0x86,0xf1,0x5d,0xfa,0x1d,0x66,0xc3,0xeb,0x30,0x43,0x14,0x53,0x1f,0x30,0x15,0x20,0x8c,0x71,0x1b,0x9b,0xdb,0xc5,0xfb,0x23,0x39,0x51,0xe5,0x69,0xb5,0x9d,0x34,0xe4,0x15,0xee,0xc4,0xb3,0x7f,0xfd,0x37,0x4d,0x41,0x2c,0x9a,0x36,0x0d,0x0c,},"\x3b\x00\xe8\x08\xfc\xa4\xc1\x16\x51\xd8\x53\xd6\xb9\x0f\x95\x2c\xcf\x56\x47\xe1\x02\xd4\xee\x0a\xd7\xa5\xd1\x81\xd5\xb4\x25\x8c\x52\x3c\xd3\x9e\x3d\x98\x25\x29\x8d\x84\xc8\xcb\xa0\x9f\x43\xdb\xba\x11\x99\x88\x22\x2c\x76\x05\x9c\xaf\x17\xb4\xbf\x99\x31\xc4\x5e\x61\x74\x48\xae\xad\xe1\x51\x18\x14\x97\xb2\x45\x52\x36\x7e\x52\xbc\x45\xac\x79\x08\x88\x06\xd3\x36\x82\x07\xaa\xfe\xfd\x30\x57\x84\x5d\xce\x81\x9d\x5a\xaa\xa7\x7b\x21\x8e\x2a\xed\x3d\xa7\x6d\x40\xc1\xf0\x76\x99\xf8\x17\x2e\x4a\x5c\x80\x3f\x7a\x2a\xce\xb9\xa4\x7a\x89\x52\xe1\xb2\xf0\x53\xf2"}, {{0x22,0x46,0xbf,0xb0,0x61,0x55,0x85,0x9e,0x10,0xa7,0x48,0xff,0x8f,0x59,0x19,0xad,0x5d,0x1d,0xaa,0xb7,0x56,0xf0,0x10,0x57,0xb7,0x90,0xd0,0x74,0x74,0x77,0x5f,0x4f,},{0xfa,0x63,0x49,0xb6,0x2d,0xc8,0xc6,0xa2,0xfe,0xee,0xf6,0xff,0xc3,0x3a,0xe0,0x85,0xc6,0x49,0x79,0x5c,0x1c,0x9d,0x98,0x98,0xe7,0x5c,0x13,0xae,0x16,0x25,0xdb,0x34,},{0x2b,0xe4,0x91,0x5a,0x35,0x2f,0x77,0x85,0x48,0x30,0x46,0xd8,0xae,0x96,0x25,0xb8,0xb6,0x32,0x57,0xaf,0x57,0xc0,0x73,0x69,0x12,0x56,0xee,0x07,0x6d,0x6e,0x1b,0x97,0x2a,0x10,0x1f,0x55,0x1c,0x70,0x5d,0x3f,0x96,0x15,0x7c,0x33,0xb5,0x6e,0xa0,0x49,0xbe,0x4a,0xf4,0xdc,0x56,0x1c,0xbe,0x3c,0x1e,0xc5,0x07,0x2d,0x7f,0x13,0x4e,0x07,},"\x63\xee\x1c\x7b\xbb\x15\xce\xbe\x1c\x22\x53\x2d\x48\x16\x82\x75\x4b\xda\xf5\x8b\x8b\xc9\x97\xae\x30\xa3\x4c\x9d\x23\xc3\x3f\x16\x90\xc3\x46\xab\x0a\x73\x65\xff\x62\x45\x74\x24\xb6\x10\x5f\x84\x21\xec\xa0\xce\x3c\x63\x0a\xcf\xeb\x9a\x1c\xc4\x16\x39\x0e\xdf\x49\x20\xe2\x2b\x23\x67\xe9\xfb\x5d\x2a\xb2\x5b\xee\x56\xda\x03\xea\x55\xe3\xf5\x78\x82\xd4\x8b\x89\x22\x93\x14\xd7\x34\xcb\x83\xc7\x9f\x4e\x17\xee\x64\xba\xe6\xf7\xad\xdb\xe9\xb5\x25\xfc\xd0\x3a\x91\x40\x9a\x2d\xde\x90\x77\x51\xdb\x8c\xc9\x7e\x08\xd0\xea\x89\xc4\xd1\x87\x18\xd2\x6d\x0b\x89\x7b\x64"}, {{0xc0,0x88,0xa3,0xdd,0x2c,0xb8,0xbd,0x5d,0x68,0x4d,0xb8,0x53,0x8d,0xc2,0x24,0x73,0xb6,0xf0,0x14,0xf6,0x4f,0xe8,0x6a,0xf1,0x68,0xb4,0xbb,0x01,0xb9,0x0a,0x1d,0xd0,},{0xaa,0xd6,0x15,0xa9,0xc2,0x87,0x59,0xf0,0x3d,0x37,0x3a,0xbe,0x66,0x66,0x91,0xde,0xad,0x8b,0x84,0xf9,0xb8,0xb5,0x0a,0x67,0xf8,0xf0,0xaa,0x4a,0x70,0x15,0x80,0xd1,},{0x3b,0xb4,0x59,0xd1,0xac,0x57,0x5a,0x18,0x0c,0x17,0x28,0xd8,0xb8,0x92,0x49,0x70,0x49,0x2a,0x0c,0x8d,0x2a,0x37,0x8c,0x29,0xd1,0xd4,0x17,0x85,0xc8,0x37,0x9a,0x58,0xe2,0xba,0x36,0x06,0x78,0x5e,0x1c,0x5d,0xa2,0x9e,0x55,0x27,0x55,0x2b,0xc6,0xdc,0x89,0xa2,0xb6,0x9c,0x27,0xfe,0x51,0xed,0x25,0x3a,0x9f,0x3b,0x56,0x5b,0x27,0x00,},"\x74\x90\x6a\xe0\x5a\x5a\xf8\xe9\x96\x8b\x6f\xeb\x49\x85\x69\xd6\x34\x5a\x24\xf9\x71\x1b\xef\xb1\x36\xe6\xc3\xb5\xed\x49\x33\x9e\x59\xa7\x93\x8b\x4b\xa1\xa1\x18\xf1\x69\xb9\xac\xe0\xf7\x84\x2a\x26\xa6\x45\xf1\x4c\x0a\xd2\x2e\xbb\xcd\xa9\x3e\x67\xe4\xc3\x48\xef\xc3\xd9\xec\xbb\x14\x19\xe6\x26\x2d\x04\x36\xa5\x8e\xa8\x2c\x22\x02\x38\x90\x65\xcc\xf6\x7c\x4f\x55\x0e\x45\xb5\xf6\xa1\x2a\x6c\x01\x1b\x2e\x0a\x30\x10\x1d\x5c\x62\x32\x8b\xbf\x99\xc8\xc9\x55\x63\xa6\xe3\x3b\xdd\x9c\xce\x72\xb1\xf7\x20\x13\x9c\x2f\xd3\xe0\x49\x13\x14\x6a\xe5\xba\xc5\x28\x8e\x0e\x3e"}, {{0x45,0x66,0x7d,0x1e,0x7b,0x59,0x10,0x97,0x9c,0x4a,0x32,0x83,0x17,0x96,0x83,0x71,0xc8,0x64,0xd5,0x64,0xa6,0x61,0xc5,0xcc,0xe5,0x57,0xc9,0xec,0xc6,0x1b,0xab,0x9e,},{0xed,0xcd,0xf5,0xe1,0xa1,0x70,0xe0,0x0c,0x8c,0x68,0x7e,0x7e,0x9c,0x18,0xf9,0x89,0x3b,0x5f,0xe4,0x95,0xcd,0x29,0x77,0xce,0xb7,0xf4,0x46,0xc0,0x14,0x9a,0xa9,0xd3,},{0x6d,0xe6,0x68,0xf1,0xca,0x6f,0x29,0x28,0x14,0x62,0x52,0x89,0xa0,0x80,0x80,0x20,0xc8,0x7c,0x89,0xac,0x94,0xf5,0xb0,0x50,0x8e,0x55,0x7b,0xdf,0x80,0x00,0xa5,0xca,0x80,0x8f,0x02,0x1c,0x96,0x79,0xb5,0x0e,0xe2,0xf3,0x20,0x06,0x4c,0x95,0xa4,0x64,0xa8,0x43,0x93,0x79,0x82,0x8c,0x3b,0x76,0xcf,0xa7,0x66,0x45,0x5e,0x12,0x8c,0x0b,},"\xcd\x66\xce\xc4\x76\xc8\x7c\x8d\xbf\x47\xec\x91\xda\xc4\x8f\xb5\xb4\x2d\xb1\x28\x2a\x57\x3e\x0a\x5c\xf0\xb9\x17\x68\x98\x66\x08\xe1\xd7\xeb\xd0\x5f\x52\x51\xbc\xf8\xb4\x7a\x17\x09\x32\x29\xac\xef\xbd\x44\xbe\xb2\x1c\x0c\x0c\x92\x8d\xd3\xcd\x3f\x89\x66\xec\xce\x69\x10\x33\x1c\x50\x8e\xa7\x6b\xaf\x90\x4d\x8c\x21\xf6\xc1\x7c\x2c\x58\xd0\x0a\xfd\x32\x59\xb8\xbf\x79\x4c\x14\x6b\x12\xb9\x95\xcd\xdd\x1c\x42\x89\xc5\xbe\x31\x68\xeb\xd6\x16\xb3\x84\xc2\x81\xce\x1b\x38\xa1\x0e\x18\x07\x80\x88\x53\xc6\x81\xa6\x40\xa0\x09\xb4\xd2\xac\xd7\x93\x4f\x8c\x6d\x07\x57\x81\x61"}, {{0x24,0x89,0x74,0x28,0xae,0x65,0x46,0xd8,0x5b,0x31,0x90,0xeb,0xe3,0xf1,0xf7,0xbf,0x7c,0x71,0x25,0x28,0xac,0x85,0x1a,0x58,0x8b,0x07,0xd5,0xc8,0xf9,0x4e,0xec,0xd1,},{0x5f,0x34,0x8f,0xe3,0xea,0x5b,0x2c,0x02,0x3d,0x0a,0xf7,0xed,0xe6,0x0e,0x55,0xf9,0x1a,0xa5,0x51,0x99,0x69,0x9d,0xa1,0x5a,0x11,0xc3,0x79,0x1d,0x68,0xd7,0x10,0xbd,},{0x1b,0x5e,0x75,0xde,0xf4,0x9f,0x51,0xd6,0xb2,0xde,0x00,0x8c,0x71,0xfc,0x1a,0x90,0x9b,0xd4,0x2c,0xa8,0x13,0x29,0x8d,0xce,0x4e,0xee,0xf7,0x17,0x81,0x5d,0x7a,0x6c,0x07,0x8c,0x2f,0x3d,0x9a,0x3f,0xce,0x1a,0xb5,0xb3,0xad,0x8e,0xf8,0xd4,0x5c,0xdf,0x2e,0xb4,0x90,0x1c,0x32,0xee,0xa2,0xd5,0xe0,0x18,0xdc,0xf2,0x83,0x3c,0xad,0x0c,},"\x52\x01\xd9\x72\x5f\x1d\xff\xa1\x86\x3f\xa4\xd8\x4c\x30\x18\x61\x14\x1a\xcd\xfb\x64\xbe\x1f\xbf\xdd\x5b\x93\x86\xdb\x20\xef\x39\x40\x99\xee\xbc\xfd\xfe\xcc\x62\xc6\x26\x86\x07\xa8\x4d\x55\xc5\x5c\xd0\xef\xdc\x37\x2e\xcf\x30\x67\x34\x3e\x7b\x07\x31\xc2\x68\x54\x61\xe2\x4b\x95\x3f\x99\x94\x9e\x59\xba\x3e\x67\xed\x0f\x08\x48\x31\x37\x93\x96\x2a\x29\x2c\x45\x98\x14\xc5\xe2\x86\x90\xec\x1f\x45\x17\x1f\x1a\xba\xb8\x6f\xdd\x14\x56\x8b\x00\xca\xf4\x85\x81\x11\x5e\xe5\xea\x83\xb0\x00\x28\x2f\xbb\xf0\xc0\xb2\xa1\x11\x60\x39\xa3\x5c\xfa\x3f\x20\x14\x22\x20\x7a\x3d\x49\x48"}, {{0x7b,0x04,0xac,0xa7,0xcf,0x92,0x62,0x16,0xcb,0x96,0x0a,0x38,0x90,0x78,0x63,0x39,0xd0,0xa6,0x15,0x96,0x76,0x80,0x19,0x01,0x23,0xfd,0xa3,0xb6,0x0c,0x6a,0xeb,0x11,},{0xcd,0xbc,0x3e,0x70,0xe4,0xe8,0xfd,0x13,0xd0,0xcc,0xe2,0x85,0x2a,0x3b,0x93,0x72,0xc3,0xa6,0x16,0x0c,0xd6,0xde,0xab,0xa9,0x0f,0x9b,0x30,0x22,0xf7,0x0c,0x91,0xf9,},{0x25,0xd2,0xd3,0x61,0x75,0x1d,0x52,0xb4,0xfe,0x66,0xea,0x18,0xe4,0xb9,0x86,0x6b,0xde,0x3d,0x12,0x1a,0x73,0x12,0xfd,0x9e,0x28,0xa1,0xe2,0x95,0xe0,0x87,0xe3,0x17,0x6c,0x94,0xc8,0x74,0xa2,0xe8,0x16,0x00,0xf2,0x4c,0x46,0x54,0xf4,0x3d,0x1b,0x67,0xd4,0x7b,0x64,0x82,0x26,0x48,0x59,0x0c,0xe5,0xce,0x44,0xf3,0xb5,0xdd,0xc5,0x02,},"\x1c\xb0\x96\x24\xb1\xf1\x4a\x02\x60\xc7\xf5\x6d\x8c\x60\xb5\xfe\x45\x83\x71\x14\x23\x25\x51\xef\x59\x66\x38\x6e\x0c\x2b\x44\x1b\x75\xcf\xdb\x8d\xf2\x18\x57\x85\xd2\x2c\xf5\x26\xfa\x9d\xf7\xfd\x45\xd9\xd8\x38\x81\xb6\x6c\x1f\xee\xe0\x91\x3e\x23\x81\x21\xee\xdb\xb7\xab\x50\x4d\xa0\xbe\xe8\x99\x80\x16\x68\x45\x35\x03\x19\x91\xf1\x1b\xfc\xd9\xb9\x56\x90\xaa\xd2\xd1\x9b\xd6\xa9\xde\x18\x44\xed\x13\x62\x30\x2d\xf4\x21\x72\x30\xb2\x5c\x05\x52\xce\x27\x75\x34\xc6\x50\xca\xe5\x26\x57\x7f\x25\xd8\xb1\xfe\x9f\x9f\xeb\xca\x2c\x81\x46\x70\xd4\x80\x5b\x21\xad\xef\x85\x2d\xaf\x94"}, {{0xea,0x73,0xbf,0x64,0xa1,0xa9,0x78,0x77,0xc3,0xc3,0xe7,0xca,0x46,0x44,0xb7,0x1a,0xaa,0x66,0x31,0x4c,0x8f,0x1b,0x66,0xba,0xfa,0xeb,0xd5,0xed,0xfb,0x88,0x8b,0xcd,},{0xca,0xac,0x93,0x90,0x2e,0x57,0x64,0xad,0xe4,0x72,0x94,0xed,0xd5,0x1f,0xaa,0x14,0x62,0x09,0x40,0xc6,0x68,0xb5,0xc1,0xc3,0x92,0xa6,0x92,0x83,0x25,0xd4,0xc3,0xfd,},{0xbd,0x86,0xcb,0x9c,0x70,0xa0,0x55,0x27,0x9a,0x86,0xa9,0xe6,0x48,0x70,0x98,0x8b,0x8a,0x73,0x45,0xc3,0xcd,0x29,0x48,0xa0,0xfa,0xbc,0xfb,0x38,0xab,0xce,0x3c,0x42,0x0b,0x4d,0x55,0x21,0x61,0x8e,0x11,0xd2,0xde,0x82,0x7d,0x9d,0xe5,0x69,0xf6,0xbc,0x3b,0xe6,0x6a,0xad,0x40,0x63,0x6c,0xda,0xa6,0x47,0x60,0xde,0xd3,0xb7,0xc2,0x09,},"\x36\x2e\xec\x68\xb9\x12\x85\x27\x86\xbb\x4f\x9a\xff\xf9\xec\xf7\xcb\x28\xc9\xde\x6b\x18\x42\x2a\x8c\xa9\x40\xb0\xd7\xe6\xdc\xb8\x3a\xa4\x4b\xe0\xaf\xb5\xf1\x80\x6d\x43\xf0\xe3\x1d\x71\xf9\x22\xf8\x53\x61\x5a\x26\xe2\x87\xa2\x7f\x08\xa0\x4f\xbc\xe3\xd4\x5a\x0c\x6c\x31\x1d\x4b\x7c\xb1\x7e\x42\x5b\xbe\xb0\xa6\xb4\x10\xb5\xd6\xdb\xb7\xac\x11\xdf\x98\x50\xa1\x31\xa6\x91\xe3\xb6\x0b\x0b\x21\x4e\xbe\x04\x41\x06\xe9\x82\x43\x32\x87\x59\x52\x67\xb0\x31\xb5\xd4\xa0\x92\x62\xde\xd8\x93\x4f\xdf\xdf\x96\x4d\x86\x8e\xf9\xa2\xc8\x42\xf8\x04\xea\xfd\xde\xfc\xb7\x1d\x9f\x16\xa5\x9b\xf8"}, {{0xb8,0x12,0x3c,0x11,0x6b,0x33,0xba,0xd0,0xdc,0xbc,0x2c,0x4d,0xc0,0x6a,0x3d,0x66,0x85,0x0d,0xab,0x36,0x0c,0xdb,0x5a,0x03,0x3c,0x14,0x89,0x5c,0x4e,0xe3,0x1b,0xfb,},{0xbd,0xca,0x15,0x1b,0xa3,0x2c,0x6b,0xb3,0x15,0x31,0xb0,0x5f,0xdf,0x86,0xc6,0xd7,0x8c,0x8c,0xd1,0x93,0x56,0x11,0xd5,0xff,0x11,0x1a,0x0f,0x00,0x63,0x5b,0x18,0x85,},{0x9c,0xf1,0x3e,0xba,0x3d,0xcc,0x37,0xb8,0xfc,0x70,0xcc,0xb2,0x32,0x74,0x36,0xb9,0xf0,0x88,0x55,0xe7,0x26,0xaa,0x7e,0xd8,0x2b,0xd5,0xcb,0x7d,0xf4,0x5f,0xdf,0x9e,0xc1,0xf9,0x6a,0xfa,0xd1,0x93,0xf4,0x75,0x72,0xd7,0x70,0x44,0x4b,0x65,0xb7,0x4a,0x37,0xcc,0x03,0x4f,0xc5,0x14,0xcb,0x3f,0x91,0xb2,0xd8,0xad,0xa5,0xb0,0x20,0x06,},"\x79\x70\xf6\x66\x66\x34\x54\x8c\x84\x8b\xb5\x23\x38\x81\x7b\x26\xa4\xd0\xca\x68\xdf\x3d\x28\xaf\xff\x20\x7c\x2d\x02\x80\x67\xa1\x8e\x4c\x95\x43\x02\x5f\x5b\x02\x28\xaa\x69\x1e\x50\x88\x51\x31\x51\xa9\x44\x94\xe1\x5d\x1f\x54\x21\x03\x28\xe0\xdf\x15\x9b\x35\x2c\x30\xaa\xa7\xa8\x44\xf1\x8a\x9f\x4c\x39\x5d\xcb\xb3\xfb\x9f\xcf\xbe\xd1\x10\x3e\x07\x06\xfb\xf9\xc3\x5f\xe2\x66\x68\x48\xfa\x35\xdc\x2c\xf5\x22\x7e\xbe\xe8\x9e\x7d\x3b\xcf\xae\x27\x21\xb2\x5f\xde\xc3\xd3\x17\x4e\xa7\xce\x26\x7a\x55\xdd\x61\xd5\x82\x01\xe9\x6b\xda\x30\x3c\xf4\x18\xed\xf6\xe3\x2f\xb9\x2f\x5d\xc1\xa0\xb1"}, {{0xb1,0x8e,0x1d,0x00,0x45,0x99,0x5e,0xc3,0xd0,0x10,0xc3,0x87,0xcc,0xfe,0xb9,0x84,0xd7,0x83,0xaf,0x8f,0xbb,0x0f,0x40,0xfa,0x7d,0xb1,0x26,0xd8,0x89,0xf6,0xda,0xdd,},{0x77,0xf4,0x8b,0x59,0xca,0xed,0xa7,0x77,0x51,0xed,0x13,0x8b,0x0e,0xc6,0x67,0xff,0x50,0xf8,0x76,0x8c,0x25,0xd4,0x83,0x09,0xa8,0xf3,0x86,0xa2,0xba,0xd1,0x87,0xfb,},{0x6b,0xd7,0x10,0xa3,0x68,0xc1,0x24,0x99,0x23,0xfc,0x7a,0x16,0x10,0x74,0x74,0x03,0x04,0x0f,0x0c,0xc3,0x08,0x15,0xa0,0x0f,0x9f,0xf5,0x48,0xa8,0x96,0xbb,0xda,0x0b,0x4e,0xb2,0xca,0x19,0xeb,0xcf,0x91,0x7f,0x0f,0x34,0x20,0x0a,0x9e,0xdb,0xad,0x39,0x01,0xb6,0x4a,0xb0,0x9c,0xc5,0xef,0x7b,0x9b,0xcc,0x3c,0x40,0xc0,0xff,0x75,0x09,},"\x91\x6c\x7d\x1d\x26\x8f\xc0\xe7\x7c\x1b\xef\x23\x84\x32\x57\x3c\x39\xbe\x57\x7b\xbe\xa0\x99\x89\x36\xad\xd2\xb5\x0a\x65\x31\x71\xce\x18\xa5\x42\xb0\xb7\xf9\x6c\x16\x91\xa3\xbe\x60\x31\x52\x28\x94\xa8\x63\x41\x83\xed\xa3\x87\x98\xa0\xc5\xd5\xd7\x9f\xbd\x01\xdd\x04\xa8\x64\x6d\x71\x87\x3b\x77\xb2\x21\x99\x8a\x81\x92\x2d\x81\x05\xf8\x92\x31\x63\x69\xd5\x22\x4c\x99\x83\x37\x2d\x23\x13\xc6\xb1\xf4\x55\x6e\xa2\x6b\xa4\x9d\x46\xe8\xb5\x61\xe0\xfc\x76\x63\x3a\xc9\x76\x6e\x68\xe2\x1f\xba\x7e\xdc\xa9\x3c\x4c\x74\x60\x37\x6d\x7f\x3a\xc2\x2f\xf3\x72\xc1\x8f\x61\x3f\x2a\xe2\xe8\x56\xaf\x40"}, {{0x93,0x64,0x9c,0x63,0x91,0x0b,0x35,0x71,0x8e,0x48,0xc5,0x90,0xd2,0x61,0xc4,0x8e,0x4e,0xf8,0x33,0x66,0x13,0xf6,0xaa,0x07,0x7b,0x46,0x26,0x76,0xb3,0xba,0x88,0x29,},{0x06,0xa6,0x85,0x89,0x8b,0x85,0x52,0x12,0xeb,0xc2,0x89,0x91,0x5d,0x10,0x5a,0x43,0x20,0xd6,0x20,0xd8,0x57,0x71,0xb8,0xc6,0xb1,0x5b,0xf1,0x0a,0x1b,0xe6,0xe9,0xb8,},{0x62,0x74,0xf2,0xd4,0xf4,0x31,0xd5,0xaf,0xfe,0xfa,0x35,0xe7,0xcf,0x58,0x4a,0x59,0x90,0x17,0x19,0x3d,0xa9,0x90,0x94,0xca,0x90,0x8b,0x75,0xac,0xb6,0x08,0xd1,0xbf,0x98,0x18,0x57,0xbe,0x93,0xa7,0xda,0xfb,0x0f,0xad,0xb3,0xff,0x09,0x06,0xf4,0x8a,0x5e,0xe9,0x50,0x45,0x6f,0x78,0x2c,0x2d,0x60,0x5b,0x14,0x09,0x5b,0xa0,0xff,0x0f,},"\x2c\xd1\xa9\x51\x05\x6c\x9e\xba\xe1\x39\x9b\x6b\xd2\xd8\x2c\x0a\xe2\x77\x85\x62\x90\xd0\x69\x20\xac\x56\xca\xc8\xfb\x42\x43\x51\x01\xc7\x2a\xa9\xc0\x8d\xd2\xd1\x24\x26\x32\x55\x62\xc2\xf0\xa4\x9c\xd8\x21\xb1\x1b\x93\x9a\xaf\xa5\x93\xb4\x09\x5c\x02\x1b\xcb\x48\x27\xb1\x07\xb9\x66\x4d\x68\x28\x28\x88\xbc\x4a\x44\xaf\x3e\x3b\xdc\x86\x1b\xe6\xaf\x30\x90\x44\xc3\xda\xab\x57\xb7\x70\x23\xdc\x90\x2d\x47\xeb\xc3\x26\xf9\xbd\xd0\x2d\xbc\x02\xcd\x54\x0f\xf8\x1b\x2d\xdf\x7c\xf6\x79\xa4\x11\x93\xdf\xe5\xf8\xc8\xca\x1a\xae\xfc\x41\xef\x74\x02\x80\xd9\x82\x3e\x30\xa3\x54\x71\x7c\x84\x31\xf5\xd8"}, {{0x1c,0x15,0xcb,0xeb,0x89,0x36,0x2d,0x69,0x47,0x6a,0x2a,0xa4,0xa5,0xf3,0xef,0x20,0x89,0xcf,0x87,0x28,0x63,0x49,0xe0,0xdf,0xe0,0xe7,0x2d,0x9e,0x3e,0x5a,0x66,0xc7,},{0x13,0xa8,0x82,0xa1,0x06,0x41,0x82,0x58,0x2c,0x21,0x18,0x47,0xe1,0x9b,0x4d,0xac,0x59,0x72,0x2c,0x9f,0xfd,0x34,0x82,0x6d,0x96,0xf3,0x31,0x13,0x40,0x0f,0xac,0x7a,},{0x59,0x98,0xb2,0x80,0x8a,0xdf,0xde,0xea,0xeb,0xe2,0xc3,0xea,0xc0,0x26,0xd3,0xf8,0x25,0xf9,0xc7,0xf2,0xaf,0x97,0xca,0x32,0x4f,0xbd,0x57,0xaa,0xc1,0xbe,0xdf,0xf7,0x8a,0x8e,0xe6,0x21,0xd0,0x37,0xee,0x3a,0xd2,0xa7,0x12,0xe9,0xa0,0x09,0xc5,0x8e,0xa3,0xe6,0xf2,0xa8,0x28,0xf7,0x4b,0x86,0xda,0x27,0x5a,0x44,0xa4,0xb1,0xe5,0x0b,},"\x09\x1c\x9b\x9b\x11\x6a\xe8\x3d\x23\xd0\x1a\x62\x95\x21\x17\x85\xd4\x46\xb6\x22\x8d\xd6\x87\xdd\xf7\x9b\xd0\xd5\xa4\xda\xa8\xc7\x9d\x2c\xbf\xc3\x73\x65\xf1\xf2\x85\xe3\x61\x73\x81\x23\xe3\x4e\x2b\xcb\xfc\x66\x4c\xe1\x25\x3a\x11\xd9\xe4\xa7\x98\x2e\x58\xcf\x94\x68\xe1\x01\x7e\xa1\x4d\x2c\xc6\xd0\x86\x5d\x40\xfd\xe8\xcb\x56\x02\x41\xe9\x6a\xc1\x61\x7c\x79\x1f\x0c\xa7\xc6\x41\x0c\xad\xf3\x28\x61\x1b\x18\xae\xf3\x33\xd8\x35\x0a\xc4\x97\xf0\xa4\xae\x2d\x03\xfd\xf0\xe2\x3e\x42\x6d\x34\xf4\x51\x47\x80\xd1\x47\x4e\x11\x35\x83\x54\x1f\x3c\x04\x36\x72\x05\x71\x72\x61\x8c\xb2\x05\x9e\xaa\xed\x56"}, {{0x11,0x24,0x1f,0xfd,0xf3,0x4a,0xe8,0xab,0x87,0x54,0x75,0xe9,0x4c,0x6c,0xc3,0x29,0x1f,0x0b,0x88,0x20,0xdc,0x85,0xe2,0x0f,0x32,0xfc,0x53,0xb2,0x4a,0xe6,0x89,0x78,},{0x09,0xc0,0x45,0xe4,0xbd,0x51,0x37,0x31,0x4c,0x0e,0xc1,0xd0,0x31,0xfa,0xf9,0x14,0x91,0x0c,0x45,0xa4,0x67,0x6f,0x5a,0x3c,0xd8,0xf5,0x81,0xbc,0xcc,0xb0,0x3c,0x97,},{0x72,0xce,0x9f,0x91,0xbe,0x2e,0x66,0xcf,0xc9,0x0f,0x95,0x25,0x95,0x94,0x6f,0xfc,0x90,0xbf,0xce,0x53,0x08,0x7d,0x49,0xe5,0xdd,0x7c,0x08,0x7f,0x3f,0xaa,0x8f,0x18,0xf2,0x35,0x6d,0xe9,0x71,0xe4,0x42,0x9d,0x98,0x5a,0x99,0x19,0x4b,0x4f,0x92,0xce,0xd3,0xef,0x47,0xcd,0x71,0x14,0x37,0x9e,0x0b,0x32,0x67,0xa9,0xf8,0xb1,0xe7,0x06,},"\x3b\x89\xde\xcc\xb7\x02\x3e\x4b\x2b\x7a\xff\x2c\x39\x51\x87\x0a\xf4\x13\xa9\xb0\x4d\xd8\x6a\xc7\x8b\x7c\x8f\xd8\x87\x49\x2d\x8d\xde\x49\xd8\xfd\xa1\x49\xed\xd5\x47\x81\xae\x2b\x50\x80\x30\xd1\x44\x16\xa9\xa3\x8b\xed\x2b\x9a\xeb\xbb\xb2\x02\x50\xb3\xc9\x31\xac\xd4\xe3\x2f\xbe\xee\xc5\xa2\x65\x01\xbe\xab\x72\x68\xd1\x44\xfc\xe8\x95\x1a\x10\x1c\x4b\x51\x78\x16\x6f\xbb\x59\x27\xb1\xdf\xb1\xe1\xce\x90\xd1\xd1\x23\x06\x8e\x3f\x47\x2c\x88\x8f\xdb\x01\xfd\xf7\x0e\x7f\x8d\xe9\xb0\xad\xb2\x84\xb7\x11\x9f\x55\x35\x43\x16\xf8\x4e\xd0\x90\x03\x0f\x9c\x26\x62\x06\x1c\xa4\x84\x47\xcc\x0a\xef\x96\x41\x26"}, {{0x3b,0xdb,0x16,0x24,0x65,0xea,0xce,0xff,0x98,0xd6,0x9c,0x86,0xf7,0x00,0x39,0xc5,0x17,0xd1,0x68,0xae,0xfe,0x6b,0xb1,0x01,0xb4,0xf7,0x69,0xa8,0x6b,0x17,0xc9,0x72,},{0xd7,0x6c,0xb7,0xbe,0x74,0x32,0x82,0x89,0xfd,0x1c,0x64,0xbe,0x74,0x7c,0xca,0x5b,0xb3,0x02,0x95,0xdf,0xac,0xcd,0x0f,0x2e,0x43,0xf5,0x17,0x03,0xfd,0x5d,0x36,0x83,},{0x6f,0x13,0x62,0xa4,0x02,0x06,0x37,0x91,0xf9,0x50,0x98,0x4f,0x54,0x49,0x28,0xe6,0x16,0xa4,0xef,0x79,0xbb,0xeb,0x68,0x54,0xe9,0x61,0x5a,0xab,0x9c,0xdb,0xae,0xc4,0x83,0xfb,0x9a,0x04,0xbf,0x22,0xde,0x5d,0x97,0xa1,0x5b,0xda,0x2d,0x39,0x04,0x83,0xc7,0xf6,0x1d,0xbe,0xe0,0x7b,0xb5,0x14,0x1f,0xc1,0x73,0xb1,0xaa,0x47,0x65,0x0d,},"\xfb\xf3\x68\xfe\xae\xba\x87\x91\x8b\x1b\x8c\x7b\x8a\x26\x83\x2b\xe6\xe7\xfc\x1c\xbd\xb8\x90\x25\x19\x28\x1a\x06\x54\xec\x73\xde\x0b\xb0\x71\x01\xa9\xd6\x03\xf7\x45\xd4\xec\x23\x57\xae\xe9\x87\x0c\xb1\x9a\x56\xcb\x44\xfb\xd9\xc9\x1f\xc3\x47\x52\x61\x2f\xbd\x83\xd6\xfc\x1a\x16\xbf\x8a\x85\xa2\x15\xd0\x14\x8e\x4a\xf3\x7d\x29\x84\x67\xe5\xcc\x48\x6b\x13\x13\x52\xce\x09\x21\x82\xce\x82\x84\x15\x9a\x38\x12\xb3\x0b\xac\xbf\xf5\x95\x86\x38\x11\xbf\x9a\x30\xa9\xda\x49\x45\x65\xc3\xac\x18\x14\x43\x00\x18\xea\x0e\xee\xd3\x9c\xdb\xca\x27\xf9\x31\x40\xe4\x69\x49\xdb\x57\x0b\xfa\x2e\xd4\xf4\x07\x3f\x88\x33"}, {{0xd5,0xef,0xe5,0x1d,0x5c,0xd8,0xe1,0x08,0xbd,0x92,0x2f,0xc0,0xea,0x12,0x61,0x90,0xa9,0x46,0x28,0xff,0xa5,0x3c,0x43,0x3a,0x51,0x80,0x22,0x79,0x2d,0xdc,0x78,0xef,},{0x42,0x6b,0x01,0xcc,0x61,0xff,0x5e,0x0e,0x72,0x4d,0xa1,0xd3,0xb2,0x97,0xf5,0x32,0x5c,0x18,0xc6,0x2f,0x64,0xd5,0xeb,0x48,0xd4,0xa5,0x21,0x6a,0x8e,0x9a,0x40,0x73,},{0x23,0x06,0xf5,0x8f,0xcd,0x4c,0xff,0x22,0x22,0xd8,0x1b,0x05,0xa4,0x75,0x53,0x2b,0x8b,0x19,0xdc,0x67,0xe6,0xd7,0x8d,0xdb,0x42,0x05,0xa3,0xb7,0x62,0x1c,0xc5,0xae,0xf0,0xb3,0x93,0xd5,0xd2,0x4d,0xd9,0x6c,0x88,0xcc,0xbc,0x53,0xa3,0x20,0x8d,0xa3,0x23,0xbe,0x45,0x87,0xd5,0xec,0x06,0x7c,0x82,0x0f,0x07,0x23,0xaa,0x44,0xe9,0x0e,},"\x9d\x17\xbc\xfe\x2d\xfc\x74\x2f\x41\x1c\xb5\x3a\x94\xf3\x59\xc0\x01\xab\xf0\x96\xc7\x41\xf3\x4a\xf4\x86\x79\xf2\x81\xe7\xce\x6b\xbd\x9e\x87\x70\x9f\xc0\x72\x8a\x56\x3d\xb2\xb9\xcf\x8e\xa4\xfb\xdc\xc3\x44\xc1\x84\x8e\x65\x3c\xe9\x70\xc6\xce\x29\xde\x2c\xcd\x52\x03\x00\x64\x9a\xdc\xdd\xfc\x75\x39\x71\xf8\x46\xaa\xc1\xba\x42\xae\x45\x28\x95\x2d\x94\x98\x0a\xa7\xc6\xcf\xa2\x14\x29\x07\x64\x7f\x89\x4a\xe9\x74\xa7\x4d\x59\x03\x5a\x73\xef\x56\xa1\x0b\x66\x12\x62\x48\x09\x52\x01\x90\xac\xe6\x61\xc3\xa4\x70\x95\xe0\x32\x2e\xfd\x78\x1d\x50\xd1\x16\x35\x98\xf2\xda\x32\xf3\x1b\xc9\xc4\xf9\x13\xd1\xb1\x48\x61"}, {{0x18,0xaf,0x89,0x02,0x5e,0xbf,0xa7,0x6b,0xd5,0x57,0xcf,0xb2,0xdf,0xf1,0x48,0x24,0x52,0x14,0x64,0x1f,0xd5,0xbd,0xa1,0x59,0xf7,0x3d,0xa0,0x4b,0x08,0xe8,0x7c,0x88,},{0x0c,0x58,0x44,0x59,0xb9,0xeb,0xcc,0xca,0xd5,0x87,0xb2,0x72,0x16,0x0b,0xc6,0x0b,0x27,0xf4,0xf7,0x72,0xb4,0x32,0x1d,0xe7,0x72,0x3a,0xfe,0xf5,0x77,0xed,0xc7,0xb4,},{0x26,0xbb,0x08,0x82,0x29,0x7c,0x2c,0x08,0xa7,0x52,0xd3,0x98,0x11,0x45,0xdc,0xde,0x55,0x89,0x3a,0x11,0xdf,0x77,0xf8,0xaa,0x4c,0x19,0xd0,0xb9,0xed,0x6e,0x52,0x20,0xed,0x12,0xe9,0xfa,0xc3,0xaf,0x13,0xd0,0xf0,0xc7,0x15,0x68,0xf4,0xa5,0x47,0xd3,0x01,0x14,0xa6,0x59,0x9a,0x23,0x68,0x06,0xc4,0xbe,0xee,0x67,0x65,0x28,0x44,0x08,},"\xe8\x2f\x46\x65\x2a\xb9\x14\xaf\x53\x5d\x8f\xb7\x20\xb5\x57\xac\x95\x01\x8d\x9f\x2a\x3f\xcc\xe8\x57\x71\xbb\x40\xab\x14\xcb\x9a\x98\x6e\x09\x6f\x3a\xfe\x5b\xee\x82\x9d\xfd\x8b\x97\x33\x5c\x53\x6a\xc9\x71\xa2\x16\x55\xaf\x16\xa2\xf8\xfd\xba\x18\x3a\x4e\x18\x56\x4c\x21\x49\x29\x56\x53\x7a\x41\x9a\xbb\xbb\xb0\x2a\x4b\xbd\xc0\x14\x81\xf5\xc6\xe6\x58\xec\xf3\xc3\x4f\x01\x1a\xd8\x46\xf5\xed\xcd\x49\x39\x19\x5d\xf8\x5e\x41\x30\x3f\xb9\xa8\x8f\xdf\xbd\x70\x43\x96\xf7\x55\x9a\x32\x73\x18\xb9\x52\xb3\xe6\x0c\xe8\xdd\xde\x56\x37\x85\x79\x23\x2f\xaf\x95\x0c\x78\xe7\xf0\xb1\x7c\x3b\x8d\xec\xe3\x6b\x78\x8a\x84\x73"}, {{0x0c,0x93,0xd9,0x98,0x15,0xff,0xf8,0xfe,0x22,0xb9,0xe4,0x5a,0xa0,0x2b,0x3e,0x64,0x45,0xce,0x1d,0x6b,0xf5,0xa6,0x5d,0xce,0x3d,0xa1,0x07,0xaa,0x10,0x55,0x94,0x0e,},{0x4d,0x27,0xa4,0x7b,0x0f,0xc8,0x08,0x00,0xd8,0x4d,0x24,0x4e,0xeb,0xb1,0xde,0xb4,0x43,0x6d,0x97,0x63,0x3a,0x83,0xe6,0x71,0x25,0xad,0x52,0xea,0x01,0x68,0x50,0x57,},{0x7d,0xc4,0x46,0x7a,0xbc,0xf6,0x43,0x1a,0xdb,0x7c,0xcf,0xe8,0x68,0xea,0xc8,0xcd,0x8a,0x61,0x5a,0x0f,0xf6,0x5f,0x6a,0x9e,0x33,0x83,0x75,0xb1,0xaa,0xe3,0xc4,0x9a,0x12,0x6c,0x9e,0xba,0x79,0x42,0x6d,0x16,0x41,0xc6,0xb9,0x7c,0x3e,0x92,0xc1,0x94,0xe5,0xee,0x44,0x31,0xef,0xa2,0x43,0x9f,0xd4,0x50,0xf2,0xcd,0x01,0x8c,0x87,0x00,},"\x11\xe8\x77\xde\x58\xc1\x34\xea\xf4\xc9\xf1\xb5\x3c\x3d\xc4\x51\xd3\xc0\x55\xf1\x6b\x09\x62\x27\x25\xb2\x79\x76\x85\x12\xfe\x10\xa7\xad\xb0\x76\x5b\x68\x9e\xc2\x1d\x5b\x6e\xfa\xa1\x9f\x1b\x9d\x36\x25\x4d\xf0\xa9\x36\x7f\x44\x1b\x26\xbd\xb9\x0b\x28\xcb\xc4\x03\xe5\x07\x40\x82\xfa\x1f\xed\x58\xe1\x40\xda\xc9\x7a\xea\xf4\x83\xe2\xc1\x3f\x3c\xc5\x60\xab\xff\xab\xa0\x5b\x76\x3f\xee\xdb\x51\xe6\x06\x98\x15\x1c\xf5\x6e\xfd\xf1\xd3\x7d\x6c\xe0\x56\x44\x86\x21\x0f\x05\x2e\x93\x7f\x2e\xa2\x6f\x63\xef\xa5\xd2\x47\xff\x18\x83\x29\xbb\x1a\xa8\x3c\xe3\xf4\xf3\x5a\x3d\x7d\xec\x14\x59\x9e\x5f\xeb\x7b\x6d\x5f\xe4\x29\x6a"}, {{0x98,0x9e,0x99,0x94,0x56,0x35,0x19,0x2c,0x02,0x3c,0xc5,0x18,0x6f,0xc2,0x5b,0xba,0xef,0x47,0x24,0x07,0x75,0xd1,0x5a,0x56,0x19,0x5d,0x88,0xcd,0x07,0xc3,0x74,0x8e,},{0xca,0x0b,0xea,0xfd,0xf7,0x31,0xd8,0x93,0x01,0xf7,0x72,0x3c,0x5b,0xb7,0xe5,0xa1,0xc3,0xff,0x3e,0xab,0x27,0xc9,0x7d,0x71,0x1b,0xcd,0x76,0xe4,0x20,0x54,0xbe,0xe4,},{0xae,0xf7,0x56,0xbf,0xb8,0xa7,0x26,0x6e,0x17,0xd1,0x5f,0x3f,0x11,0xee,0x50,0xed,0x25,0xbe,0x42,0x0e,0x95,0xa0,0x74,0x22,0x71,0xeb,0xd1,0x22,0x94,0xe2,0xcb,0x96,0xea,0xd0,0x83,0xb8,0xff,0x0b,0x82,0x9d,0x2e,0xde,0xb1,0x4d,0xa8,0x6e,0x40,0x2e,0xf2,0x5e,0x6d,0x4a,0x5a,0x79,0x58,0xc1,0x84,0xed,0x10,0xc1,0x76,0xcb,0x57,0x0b,},"\xc4\x84\x14\xf5\xc7\x57\xd0\x3c\x52\x3e\xf3\xf3\xb8\x51\x07\x71\xb0\xff\x3b\x4b\x97\xde\x27\x96\x25\xd3\x49\xec\x18\x5a\x29\x92\x7a\x66\xb9\x59\x3b\xa1\x93\x38\xc2\xf5\xe4\x13\x1f\x1a\xc0\x7e\xa4\x6d\x2c\x1b\x6e\x4a\xb5\x22\x92\x80\xb2\xe2\xbb\x9d\x14\x0d\x1e\xf7\xaf\x7b\x16\x92\xbf\x2d\x09\x7b\x80\xf8\x11\xad\xcf\xa9\x5d\x5c\xbf\x9e\xee\x92\xa1\x64\x1c\x55\x2b\x4b\xe4\xa0\xd7\x34\xf0\xaf\xd4\x70\xb9\xd7\xf4\xe4\x57\x78\x95\x1e\x21\xfc\x53\x4f\x20\x0a\x12\x8b\x96\xad\xb8\x37\x3f\x10\xce\xce\xc2\xda\xc2\x99\x6a\x06\x2f\xb3\xc2\x94\x31\x59\x65\xa9\xd5\xd7\xb0\x77\xc4\xb0\x13\xc6\x4a\x38\x42\x97\x69\xd2\x3e\xab"}, {{0x6b,0xdb,0xbe,0x06,0xd9,0xf4,0x21,0x9e,0xea,0x64,0x03,0xa3,0x57,0xb2,0x5e,0x56,0x19,0x92,0xfa,0xe0,0xf0,0xf6,0x14,0x56,0x1d,0xd8,0x6d,0x23,0xde,0x41,0x5a,0x43,},{0xed,0x52,0xdd,0x1c,0xce,0x32,0xd9,0xb4,0x85,0xe0,0x94,0x07,0x46,0x42,0x1d,0x36,0xb9,0xfd,0xe6,0xcd,0xf0,0x21,0x15,0x45,0xb6,0x34,0x04,0x4d,0x4b,0x3c,0xb8,0xf1,},{0x95,0x02,0x06,0x60,0x5b,0x0f,0x41,0x7c,0x90,0x84,0x3e,0x2c,0x8d,0x8e,0x66,0xc8,0x28,0xbb,0x10,0xb9,0x9b,0x36,0xee,0xee,0xe8,0xca,0xf2,0xe0,0xe5,0x48,0x4d,0x93,0xfe,0x02,0xbf,0x53,0x34,0x05,0xf4,0xbb,0x74,0xa5,0x0e,0x55,0x85,0xfa,0x0d,0xae,0xf4,0x82,0x1f,0x03,0x01,0xd0,0x1b,0x46,0x32,0x1b,0xaa,0x31,0xe1,0xf0,0x8d,0x03,},"\x58\x2a\xda\x13\xd6\x92\x93\xe4\x9b\xbd\x46\x10\x32\xdf\xea\x1c\xa2\x02\x5b\x52\xe0\x13\xa3\x3a\x03\x87\xfc\xfc\x5f\x7c\x0b\x8e\xc9\x55\x98\x26\x07\xfc\x90\x1e\x1b\x7f\x63\x6a\x9d\x37\x1e\x1f\x91\xfe\x47\x6b\xdd\x44\x85\x6e\x27\x5d\x67\xef\xa1\x42\x38\x16\x43\x54\xc2\x31\x12\x4c\x84\xde\x8f\x5b\x89\xd5\xa5\x8e\xa6\x74\x4b\x4d\x3b\x3d\x79\x06\x90\x52\x33\xcc\xe6\x94\xa6\x4d\x69\x6f\x5a\x70\x24\xfc\x90\x33\xb1\xce\x39\x08\x99\xa3\xb4\x41\xa4\x8e\x53\xc7\xc9\xb3\x0b\xa1\x2e\x7d\x61\xf3\x5f\x15\xe6\x58\xc7\xcc\x44\x07\xe2\xf6\x89\xea\x8a\x55\xd0\x1b\xf5\xdb\xac\xb1\x19\x54\x75\x4f\x92\x0f\x09\xdb\xd4\x84\x09\xbb\xb5"}, {{0xd7,0x61,0xc8,0xc5,0xa9,0x60,0x1b,0x91,0x45,0xb7,0xd0,0x51,0x24,0x9b,0x00,0x41,0x07,0xe4,0x52,0xe5,0x63,0x10,0x0c,0x6c,0x78,0x80,0x38,0xc9,0xee,0x8a,0xda,0xd7,},{0xe6,0x48,0x87,0x75,0xd6,0x40,0x7e,0xfc,0x7b,0x2b,0xca,0x89,0x0a,0x7f,0xc6,0x22,0x66,0xfc,0x54,0xcd,0xac,0x89,0x33,0x43,0xb4,0xf5,0x9a,0x19,0x6d,0x94,0x88,0x98,},{0x7a,0xb7,0x8b,0x64,0xe6,0xdb,0x35,0x9a,0x2d,0xc8,0x30,0x2e,0x10,0x92,0xed,0x66,0xfa,0x73,0x6b,0x53,0x62,0x53,0xa1,0xcd,0x90,0xfd,0xb8,0xc1,0x0e,0xfd,0x78,0x30,0x02,0x25,0xe1,0x91,0x96,0x35,0x99,0xba,0x54,0x9c,0xc8,0x59,0x20,0x9d,0xf0,0xff,0x61,0xcd,0x06,0x9b,0x03,0xd2,0x54,0xe6,0xe7,0xd7,0x6c,0x79,0x84,0x40,0xf9,0x07,},"\x84\xea\xd5\xea\xbd\x2f\xd4\xb7\xc7\x9a\x9a\x92\x8a\xb8\xee\x0a\x16\xa5\xfd\x66\x7a\x05\x7f\x8a\x25\x46\x63\xd5\x6d\xaa\xe1\x56\xd1\xa4\x9a\xff\xb2\x99\x61\x37\xb9\xd8\xb3\x40\xe6\x35\x73\x2f\x9d\x2b\x4c\x60\x21\x84\x42\x54\x1e\x72\xd2\xb0\x0e\x1e\xe7\xa7\x3c\x3f\x67\xca\xa4\x99\xfa\x9d\x07\x0b\x57\xd0\x76\xdc\xde\x96\xb0\x76\x47\x23\xc3\xc6\x59\xc7\xa0\x0c\x1b\x78\xb1\x5c\xcc\x22\x23\x89\x0b\x51\x06\x7f\xc8\x1e\x23\xe9\x45\x8a\xb0\x68\x3b\xa6\x26\xa5\x3d\x0c\x37\x93\xa5\x8a\x98\x57\xbb\x44\xb3\xbd\x85\xbb\x6c\xe5\x3a\x85\x69\x4e\x7f\x53\xcc\x1b\xd4\x6d\x50\xed\xa3\x7d\x81\xf5\x38\x1b\x51\x3d\x1f\x38\x33\x9d\x29\x1b"}, {{0xc5,0xe0,0xc7,0xa7,0xbb,0x8b,0x7c,0xa0,0x7b,0xf0,0xa0,0x5e,0xa6,0x7e,0xff,0x6d,0xee,0xbf,0xe3,0x71,0x4e,0xe3,0xe1,0xa2,0x27,0xf4,0xdc,0x8e,0x24,0x2a,0x2f,0xa0,},{0x51,0x35,0xef,0xcd,0x90,0x52,0xbe,0xc5,0x7a,0x44,0x31,0xca,0xab,0xe8,0x26,0x80,0xee,0xc0,0xa3,0x3a,0xfd,0x59,0xb3,0x02,0x03,0xb2,0x80,0xba,0x12,0xbe,0x48,0x5c,},{0x2e,0x7f,0xde,0xb3,0x48,0x4d,0x0a,0x5e,0x8d,0xce,0x94,0x44,0x89,0x79,0x49,0x6b,0x06,0x42,0xca,0xbc,0x37,0x33,0xa5,0x1f,0x8c,0x3c,0x5c,0x51,0xc1,0x9a,0xe3,0x19,0x01,0x8d,0xa9,0x10,0x91,0xc2,0x38,0x5f,0x2f,0x4e,0x9a,0x59,0xed,0xbc,0xa2,0xab,0xd0,0xd0,0x85,0xee,0x40,0xd3,0xf0,0xd4,0x20,0x61,0xa5,0xa9,0x83,0x2a,0x37,0x0c,},"\x37\x70\xa6\x78\x66\x52\xc4\xb7\x8a\x04\x3e\xdc\xe0\x7f\x3e\x20\x4d\x81\x99\x7c\x42\xaf\xc2\x23\x31\xf7\x5a\x54\x94\xa8\x26\xd7\xcb\x69\xab\x43\x14\xa4\x73\x72\x10\x58\xa1\x83\x99\x81\xd5\xb7\x02\x2d\x0c\xd8\x67\x03\x77\xda\xf3\x32\x04\x76\xd2\x5b\x9f\x55\x95\x61\xd6\x6e\xe0\xa7\x09\xfe\x17\x36\x1e\x2a\x52\x89\x8f\x57\x53\xc4\xfb\x43\xbd\x0c\x98\xb3\x68\xf5\x12\xad\xc0\x9c\xd9\x27\xc6\x62\x26\x76\x92\x6d\x8c\x2d\x91\xa1\x4a\xca\x32\xf2\x26\xf7\x00\x36\xc1\xc8\x58\xbc\xff\xc2\xb5\x9f\x54\xc1\xc3\x7b\xf8\x1e\xb5\x2e\xcb\x3f\x00\xda\x60\x2c\x94\x36\x1b\x52\xa5\xaf\xdd\xbf\xd7\xe0\x50\x36\xe3\x77\x50\x30\x50\x33\x3b\xe5\x12"}, {{0x11,0xbb,0x47,0x48,0xd2,0x54,0x7e,0x61,0x96,0xbe,0x82,0x3c,0x9b,0xe7,0xaa,0x18,0x15,0x0c,0x20,0x4b,0x12,0xca,0x8d,0x73,0xc1,0xbd,0x46,0xb1,0x1a,0x54,0xb4,0x75,},{0xef,0xeb,0x42,0xda,0x28,0xd7,0x64,0x96,0x64,0x03,0xdd,0x30,0x0d,0x9f,0x94,0x51,0xb2,0x58,0xab,0x1c,0x80,0xdf,0x06,0xfe,0x59,0x43,0x15,0x3f,0x53,0x01,0xcc,0xcb,},{0x44,0xc5,0x8d,0xa4,0x9d,0x23,0x65,0xd2,0x70,0x29,0xd1,0xee,0xbb,0x3b,0xeb,0xf7,0xc0,0x32,0xd8,0x58,0xaa,0x07,0xe0,0x75,0x6b,0x1c,0x26,0xa5,0x41,0x2d,0x22,0x69,0x11,0x76,0x03,0x13,0x41,0xad,0x37,0xd7,0xbb,0x78,0x43,0x28,0x9e,0xb3,0x9d,0xb4,0x91,0x58,0x4c,0x1b,0x2a,0x1d,0xa2,0xe4,0xa2,0x64,0x9c,0x22,0x93,0x82,0x66,0x06,},"\xf4\xb7\x65\xb2\x58\xba\x35\xb4\x27\x52\x5c\x7f\x10\xa4\x6f\x0b\xcc\xd3\x57\xec\x1a\xd5\x2a\x5b\x13\x94\x17\xa9\xd3\x89\x4c\x51\x2d\x89\xeb\x88\xe6\x81\xb1\xf3\x0a\xac\x4c\x11\x5c\xcf\x36\x54\x5e\x83\xf3\x78\x34\xc8\x2e\x83\x00\xcc\x1e\xb2\x89\xaf\x43\x75\x96\x8c\x29\xc0\xff\xef\xb4\x0e\x15\x6c\x20\xc0\x43\x26\x69\xac\x8d\xc0\xa8\x3c\x13\xb1\xe8\x55\xa8\x4a\xd0\x13\x3c\x40\xc8\x2c\x87\xee\x1e\x7d\xd4\x08\x4d\x74\x1c\x80\xde\x8a\x7a\x9f\x77\x59\xe8\x43\xa5\x62\x09\x9c\x4d\x7d\xf8\x75\x35\x20\x39\xff\x4d\x38\x24\x65\x13\x86\xc9\x77\x59\xff\x7d\xba\x52\x06\x4e\x6d\x31\x12\xe0\x80\x81\x9a\xee\x8c\xe7\x23\xa1\xa2\xaa\x46\x4d\x8a"}, {{0x74,0x52,0xa0,0x01,0x56,0xd7,0x94,0xed,0xeb,0xff,0x4a,0xdb,0x1f,0x7a,0x7e,0xec,0x26,0x21,0x7f,0xef,0x67,0xc3,0xd2,0x68,0x35,0x2b,0x2b,0x54,0x60,0xa7,0xdc,0x25,},{0x5f,0x4d,0xc3,0x38,0xcf,0xbd,0x38,0x4b,0x5f,0x1c,0x14,0xc2,0x26,0x70,0x14,0x46,0xb5,0x2b,0x1e,0x3e,0x2a,0x3c,0xba,0x1a,0x40,0xee,0x28,0x25,0x08,0x0d,0x1d,0xe6,},{0xa8,0xf9,0xfa,0x24,0xa3,0xde,0xa1,0x02,0x2e,0x73,0xf0,0xd8,0x8b,0x1c,0x37,0xd0,0x6d,0x0f,0x0b,0x20,0xbb,0xff,0x0e,0xcd,0xb4,0xa4,0x0c,0x86,0xd7,0xe4,0x75,0x61,0x7c,0x03,0x57,0x0a,0x74,0x19,0xd7,0x4b,0xa0,0xf1,0x32,0x70,0x96,0xbf,0x19,0xf0,0xd0,0xcf,0x9f,0x51,0xd4,0x83,0x11,0x2f,0x26,0x92,0x23,0x78,0x68,0x2f,0x48,0x07,},"\x8c\x4e\xe2\x86\x76\x56\xe3\x3f\x52\x69\x41\x4d\x77\xb4\x2d\x8e\x47\x50\xdb\xa9\x3c\x41\x8b\xac\xca\x10\x93\x8c\xc3\xb5\x70\xc6\x60\x3d\x52\xc2\x34\x44\x88\x60\x7b\x2f\x93\x4f\x6d\x26\x9f\xcb\x2a\xd9\x66\x21\x9b\x1a\xb1\x14\x72\xf4\x2c\x67\x2c\xe2\x05\x92\x49\x0e\xc5\xba\xf6\xa2\xd2\xfc\x8a\x3e\xe3\x53\x74\xb1\x90\x2f\xde\xfc\x78\x70\xb1\xb6\x26\xfa\x46\xb1\x2b\x6c\xee\x24\x1f\x60\x1a\x9b\x3f\xe4\xc5\x08\x12\xe5\x73\xe6\x75\x2c\xe2\xc7\x64\x4e\x33\x67\xa6\xa6\xb7\x77\x58\xd8\xe4\x93\x4b\x58\xaf\x23\xab\xae\x8f\xec\xac\x25\xed\xd7\x34\x03\x0e\xe7\xcf\x39\x90\x7e\x3e\xed\x81\x86\xa1\x9a\x80\x71\x03\xa9\xfc\x49\xd3\x8f\x4c\x84\x60"}, {{0x88,0x0e,0xf1,0x06,0x73,0x3f,0x04,0xe7,0x61,0x95,0xeb,0xa2,0x80,0xb3,0xfa,0xdd,0xa0,0xf2,0x5d,0xcf,0x96,0xa6,0xa9,0x9c,0x8c,0xcf,0x84,0x2c,0x68,0xaf,0xda,0xe5,},{0x70,0xce,0xe3,0x3d,0x41,0xc7,0x28,0xce,0x7b,0x14,0x19,0x31,0xe6,0xe8,0x52,0x45,0x67,0xd7,0x60,0x1e,0xb7,0x9f,0x67,0xfd,0xcd,0x07,0xb9,0xd6,0x82,0xc6,0x50,0xf0,},{0xff,0x6c,0xae,0xdd,0x8a,0x46,0x8a,0xa0,0x7d,0x4c,0x6e,0x71,0x31,0xbb,0xda,0x76,0x18,0x2b,0xa9,0x58,0x64,0x93,0x76,0xe7,0x11,0xf4,0x4c,0x7b,0xba,0xcb,0xa6,0x07,0x7b,0xea,0x87,0x8b,0xa5,0x94,0x9c,0xde,0xee,0xf0,0x5c,0xfd,0x49,0x83,0xb0,0x05,0x7d,0x27,0x5e,0xa3,0xe1,0x8c,0x32,0x65,0x94,0x68,0xc3,0x0c,0x47,0xac,0x8f,0x0b,},"\xf4\xf3\x8d\x07\x7f\x2b\x03\xda\x82\x1b\xd3\x6f\xde\x67\x3d\x66\x6e\x52\xf4\x83\x2e\x1c\x0d\xcf\xee\xf0\x49\x32\x8a\xcb\x7b\xd7\x1a\xd2\xbf\xc4\x9c\x12\x35\x16\xe1\x96\xc4\x70\xdf\x08\x47\xb3\x84\x8a\x45\xa2\xc6\x9b\xea\x03\xe2\xaf\xa7\xe5\x82\x05\xb6\x3b\x52\x38\x14\xfc\x8e\x24\x2f\x05\x9c\x69\xff\x7e\x40\xf9\x7b\xe8\x12\x5b\x70\xa5\x4f\xda\xf3\x5a\xea\xfa\xc7\x91\x14\xa7\xb4\x19\xe6\xbb\x9e\x70\xbf\x07\xad\xb5\x59\x81\x96\x00\xdc\x25\xe5\x1b\x4b\x70\x0d\x27\xca\x54\x72\xa0\xe7\xcb\xbf\xd1\x4e\x09\x9f\xaa\x3a\x72\x00\x2d\xa5\x38\xcb\xe4\x5d\x62\x1e\xf0\xd5\x25\x2b\xa2\x9d\x83\xf8\xb3\xec\x83\x89\xc9\xce\xb6\xc6\xb2\xe8\xd8\xa2\x0f"}, {{0xa2,0xd8,0x8f,0x37,0xec,0xc2,0xb2,0xc0,0x5d,0xd6,0xcb,0x31,0x59,0x96,0x2c,0x5f,0x64,0x6a,0x98,0x15,0xb2,0xfb,0x37,0x79,0x1f,0xc7,0xb6,0x06,0xe2,0x91,0x3e,0xd5,},{0x58,0xdd,0x67,0xd7,0xa1,0x5d,0x4c,0xa0,0x34,0x1a,0x4c,0x86,0x95,0x66,0xca,0xd8,0xc4,0xee,0x16,0xe5,0x83,0xa1,0x0b,0x48,0x24,0x17,0x3b,0x08,0x29,0x0d,0x92,0xd1,},{0xcc,0xf2,0x40,0x0c,0xd6,0x73,0xe1,0xef,0xfd,0x20,0x16,0x1d,0x7b,0x68,0xa5,0xfb,0x87,0xc1,0xe9,0x9d,0x36,0x35,0xd7,0x8c,0x2d,0xa1,0xb5,0x09,0xfa,0xc3,0x33,0x46,0xc0,0x69,0x16,0x3a,0x6c,0x46,0xc7,0x82,0x6a,0x48,0xbb,0xbd,0x03,0xb0,0x5e,0x6e,0x23,0x51,0xfa,0x62,0xbf,0x89,0xbf,0x7c,0xcf,0x9a,0x90,0x24,0xbd,0x15,0x7d,0x07,},"\xd1\xb8\x7e\x9e\x88\x6d\xfb\xbd\xc8\xca\x8a\xb9\x01\x0e\xcf\x9b\xba\xf2\x3f\x72\xab\x3c\xbe\x76\x9d\xb1\xd4\x3c\x2a\x47\x4a\x81\x65\x1c\x46\x4e\x9f\xb9\x27\x34\x63\x46\x41\xc9\x48\x5a\x02\x39\xb3\x11\x07\x71\xe7\xf7\x5e\x05\x25\x2e\x4d\x8f\x4c\x0a\xa1\xba\x08\x62\x6d\x7e\x96\x31\x7c\x20\xac\xde\x2a\xd9\x9b\x23\xbd\xad\xfd\x6f\x17\x46\x8e\xb4\x02\xec\x5e\xef\xa5\x7b\x47\xca\xf9\x72\xb3\xdd\x21\xd8\x9f\x0e\x29\x89\xff\x87\xd5\x1e\xd2\xe2\xd6\x39\xc1\x64\x4e\x69\x8c\xbe\x02\x21\xb8\xe1\x79\xf3\xcf\xb0\x4a\x20\xcb\x24\x70\x21\x6a\x68\x82\xfb\x4f\xf7\x99\xe1\x15\x36\xcf\x64\x21\x9f\x0c\x07\x51\x76\xbc\x7c\xf0\xf6\xc5\xb7\x92\x5f\xcd\x61\x55"}, {{0x42,0xaa,0xfd,0x0a,0xe2,0x6d,0xf1,0xe7,0xaa,0x02,0x76,0x86,0x0d,0x75,0x27,0x83,0xaf,0x97,0x28,0x04,0x39,0xbb,0x23,0xea,0xe4,0x6e,0x3f,0x84,0xca,0xac,0x78,0xde,},{0xda,0xa2,0x35,0x0a,0xdb,0x55,0xdb,0xa9,0xdf,0x7d,0x7a,0xf5,0x10,0x19,0x98,0xfe,0x51,0x5d,0x31,0x1c,0x3c,0xba,0x3e,0xea,0xb9,0x13,0x82,0x33,0x19,0x0c,0x3b,0x4e,},{0x11,0x61,0x43,0x65,0x0b,0x6c,0x13,0x3d,0x61,0x78,0x59,0xdb,0x24,0x29,0xc2,0x91,0x35,0x79,0x79,0x0b,0x21,0x97,0xd7,0xb7,0xb1,0xb4,0x96,0x2b,0x32,0x87,0x21,0x03,0x2c,0xee,0xca,0x58,0xb2,0xd5,0x64,0x39,0xe2,0x33,0xbb,0x84,0xdc,0x52,0x5e,0x28,0x4f,0xf8,0xdf,0x2b,0xde,0x1d,0xb4,0x98,0x6f,0xaf,0xd2,0x1b,0x3d,0x7d,0x6a,0x0a,},"\x72\x13\x1b\x80\xad\x59\x9b\x6f\x5f\xf6\x98\x54\x7d\x16\xe7\x49\x9d\x71\x27\x5e\x4e\x9b\x30\x52\x6a\x5a\xac\x0b\x0c\x8b\x14\xfa\x4a\x54\x0c\xfb\x11\x45\xfc\x00\x44\x18\xbc\xd3\x18\xc1\xa7\x0e\x62\x69\xa3\xfb\x69\xba\xed\x86\xf3\x63\xf5\xb8\xf9\x7f\x56\x9c\x20\xd4\xf4\x99\x0e\x7b\xb4\xd0\xc3\x99\x21\x26\x8d\x63\x6e\xd0\x55\x4b\xd6\x2a\xcf\xca\xcd\x3b\x8e\x03\x02\x17\xaa\xfa\xc3\x04\x4c\x03\x7e\x0f\x94\xda\x18\xc6\xb9\xa0\x93\x2c\x3c\x58\x75\xd3\xa9\x3f\xbd\xad\xcf\x67\x96\x4e\xec\x9e\xc2\xbe\x69\xb4\x8f\x02\x0f\x6c\x98\x74\xde\x5f\x8a\x51\x67\xb5\xee\x02\x4a\x2c\x2e\xfd\x0c\xdc\xd2\xac\xd8\xc1\xf7\x87\x81\x41\x41\xe3\x0b\x38\xb1\x63\x17\x5b"}, {{0xb6,0x9c,0x33,0xb1,0x1b,0xa6,0x78,0x41,0xc3,0xd4,0xe6,0xf9,0x23,0x4e,0x35,0x37,0x0a,0x28,0xb4,0x76,0x62,0xac,0x56,0x0b,0x27,0xc0,0x78,0xb6,0x6a,0xb1,0xb0,0x21,},{0x9d,0xf6,0x8e,0x9a,0xcf,0x67,0x37,0x92,0x61,0x74,0x4d,0xb5,0xd1,0xe3,0x77,0x89,0x2f,0x2b,0x69,0x2e,0xd5,0xa3,0x8b,0x37,0x07,0x3c,0x04,0xde,0x5d,0x22,0x67,0x37,},{0x24,0x36,0x8f,0xee,0x5b,0xd8,0x48,0xb4,0xc6,0x61,0xa3,0xbe,0x4f,0x31,0x0c,0xfc,0x43,0x6e,0x79,0xec,0x4a,0x78,0x50,0x1b,0x81,0x09,0x5f,0xe5,0x16,0x14,0x23,0x1b,0x6c,0xa1,0xab,0x12,0x69,0x99,0x6a,0xd2,0xe9,0x8e,0x29,0x97,0x81,0xaf,0x8e,0x29,0x80,0x4b,0x24,0xfe,0x56,0x79,0xca,0x3b,0xa6,0x50,0xc5,0xc4,0xcc,0x58,0xce,0x01,},"\xf9\xea\x12\x6d\x3a\xb2\x19\x61\xaa\x24\x33\x90\x0a\x39\x82\xb8\x3e\x0e\xf8\x6d\x52\xd1\x34\x40\xaf\xa4\x81\x7f\x9b\x82\x2f\xb5\x82\xcc\x39\x32\xbf\x45\x0d\x46\x77\xc9\x18\x81\x81\xfe\x75\x26\xad\x6f\xe5\xab\xc6\x1d\x0a\xe7\x59\xf2\x15\x01\x3c\x0b\x2b\x41\x06\x4c\xb6\x27\x8b\xa7\xe3\x9e\x2f\x4c\x10\xd6\xcc\x96\x05\xb3\x86\x9e\x16\x9d\x7d\xa4\x2e\x88\xeb\x85\x78\x70\xfe\x61\x18\xbb\x02\xbc\x08\xc8\x05\x5f\x0c\x18\x9b\x62\xf7\x9f\xb1\x46\xb4\xc5\x43\xaa\x30\xcc\x0c\xd5\x7f\x03\x7e\x9e\xf7\xa6\x37\x11\xf6\x6e\x6f\x28\x78\x93\x17\x02\x20\x27\x02\x61\x42\x77\xd5\x13\xf0\x85\x0b\x75\x85\x49\x33\x6b\x30\xcf\x40\xab\x8b\xd4\x60\xe6\x0e\x12\xde\xed\x04"}, {{0x7b,0x63,0x61,0x3f,0x6d,0xae,0x01,0xcd,0xcd,0x5e,0x6b,0x37,0x68,0x69,0x71,0xcd,0x8d,0x8a,0x99,0x54,0x2f,0x63,0x29,0xa1,0x28,0x54,0xa9,0xd8,0xff,0x81,0x05,0xac,},{0x72,0xec,0x43,0xfa,0xf3,0x4d,0x87,0x30,0x17,0x7d,0x1f,0x07,0x43,0xc7,0x4c,0x20,0xbf,0x72,0xc2,0x39,0x4b,0x8a,0x7d,0x47,0x1f,0xfe,0x2a,0x04,0xab,0x00,0x81,0x1c,},{0x76,0xf5,0x0b,0x2b,0x9c,0x2a,0xd9,0x7b,0xfb,0x94,0x99,0xee,0x41,0x92,0x8a,0xc0,0x72,0xda,0x5e,0x8b,0xc7,0x1d,0x02,0x12,0x55,0x09,0x42,0x33,0x2b,0x62,0xe7,0x0c,0x8b,0xfe,0x1c,0x72,0x25,0x42,0x39,0x46,0x88,0xde,0xcd,0x91,0x7a,0xec,0x8f,0x95,0x35,0x3e,0x1d,0x72,0x62,0x4b,0x70,0xeb,0xed,0x5d,0x17,0xf6,0xc5,0x49,0x77,0x02,},"\x18\x16\x48\x8f\x1f\xc8\x3e\x1e\xd5\x91\x16\x37\xdd\x42\xba\x20\x77\x65\x7d\xfe\x1a\xe4\x22\xad\x0a\xee\x59\xdf\x9d\xd5\x6a\x27\x63\xc2\xdd\x0e\xf6\x1a\x12\xbb\x82\x5b\x0d\xac\x1e\xda\x5f\xbb\x69\x1c\x5e\xd5\x8f\x3f\xb3\x25\x05\x0b\x45\x63\xa4\x04\x20\x99\x98\x2f\xff\xa5\xd6\xed\x74\x2d\x95\x82\x3d\xa8\xe1\x78\x7c\xf7\x46\xef\x63\xb3\xfb\xb0\xe8\x8a\x6c\x0b\xea\xe4\xf7\x31\x83\x66\x93\x6b\x49\x17\xf5\x07\x33\x60\x68\xb1\x94\x68\x09\x00\xa7\xbf\x4a\x6f\xb6\x9a\x5c\x38\x7b\x97\xe3\x1b\xc7\xf9\xbe\x53\xc2\xa8\x9e\x36\x51\xce\x1d\xe4\x1b\x10\xe9\x21\xb2\x06\xeb\xf3\x2e\x56\x21\xef\x80\x81\x61\x6d\xcd\x7a\x20\x59\x43\x7e\xfa\xd0\x14\xbb\x8e\x2c\x82\x21"}, {{0x35,0x58,0xd3,0xa7,0x43,0x95,0xbd,0xcb,0xa5,0x60,0xe2,0xc4,0x5a,0x91,0x96,0x0c,0xec,0x6c,0xb3,0xed,0xbc,0xd3,0x0e,0x72,0x2f,0x7f,0x05,0x52,0x10,0xf3,0x7b,0x51,},{0x53,0x4f,0x43,0xeb,0xa4,0x03,0xa8,0x4f,0x25,0x96,0x7c,0x15,0x2d,0x93,0xa0,0x17,0x5e,0xc8,0x29,0x3e,0x6f,0x43,0x75,0x31,0x9e,0xad,0xf9,0x57,0x40,0x1f,0xbb,0xd2,},{0xb3,0x65,0xb5,0x56,0x1a,0x13,0xa5,0x45,0x17,0xcf,0x90,0xd8,0x8b,0x35,0xeb,0x09,0x67,0xd6,0xd5,0x84,0x14,0xb8,0xc1,0x54,0x7e,0x69,0x31,0x59,0xe0,0x13,0x78,0x56,0x36,0x54,0xc5,0x0f,0xb4,0x23,0x23,0xf0,0x9d,0xd7,0x8f,0xfe,0x28,0x05,0x6d,0xdf,0xa5,0x4f,0xeb,0xf4,0x48,0x91,0xe8,0xa7,0x41,0xb6,0xa1,0x68,0x7d,0x72,0x86,0x05,},"\xbe\x75\x44\x4f\x9c\xe6\xbe\x1d\x83\xaf\x62\x2a\x8c\x47\x8d\x51\x01\x27\xdb\x56\xf1\xde\x6e\xb8\xa5\x12\x65\x22\xb0\x9f\xdc\x6c\xa0\x86\x2c\xec\x0b\x8b\x2a\xaf\xa3\x1c\x17\xa2\xcc\x47\x7d\xa5\x33\xd2\x76\xa1\xae\x4f\x8e\x07\x59\xd6\xaf\xa0\xb1\x74\x11\xb5\x17\x0b\x52\xf2\x05\x47\xc7\x2f\x3e\x88\xd4\x8c\xb4\x56\xfe\x62\x5b\x62\xfe\xb0\xf8\x13\x17\xed\xf1\xec\x09\xec\xe5\x34\xb9\xf5\x00\xd4\xe1\xb1\xbd\xa2\xdb\x21\x98\x2a\xa9\x50\x94\x22\x6e\xe9\xf5\xb0\xa6\x5d\xa8\x3f\x91\x12\x1c\x96\xb3\xb4\x01\x0a\xe7\x82\x6c\x9e\x80\x63\x6c\xba\x00\xf7\x0c\x3c\x8a\x27\x9b\x01\xb9\x52\x94\xcb\x85\x0f\x91\x70\x9f\x43\x76\x66\x2a\x58\x0b\x15\xac\x29\x81\xaf\xe9\xf8\x54"}, {{0xa3,0x5b,0x92,0xf2,0x44,0x06,0x3a,0x19,0xbb,0x5e,0x3e,0xd4,0xd6,0x99,0xed,0x20,0x69,0x60,0x71,0x16,0xd2,0xbd,0x08,0x11,0x3f,0x0d,0x83,0x73,0x61,0x3f,0x35,0xb7,},{0x7e,0xc9,0x36,0x01,0x86,0x4e,0xe4,0x99,0x5a,0x4f,0x7a,0xbc,0xd3,0xdf,0xc1,0x01,0xe9,0xe7,0xf3,0x69,0xe6,0x3d,0xe1,0xae,0x68,0xa0,0x7a,0xa7,0xf0,0x75,0xb3,0x29,},{0xa2,0x3d,0xbe,0x37,0x57,0xe4,0x78,0xdb,0xc8,0x4d,0x3d,0xb3,0xa9,0x33,0xb0,0x42,0x8c,0xed,0xb6,0xb0,0x1b,0x86,0xd8,0xd7,0x3f,0x39,0x59,0x87,0x8d,0xae,0x6f,0x05,0x88,0xf5,0x05,0xcd,0x4d,0x39,0xf2,0xab,0x46,0x77,0xb6,0x48,0x05,0xd6,0x29,0x65,0x2a,0x22,0x52,0x98,0x25,0xc3,0xa9,0x1d,0x04,0x37,0x49,0xfc,0x71,0xf0,0x37,0x06,},"\x65\xcd\x36\xda\xe0\x16\x8d\x69\x97\x4f\x95\xf0\x9d\xd9\xa5\x9d\xb7\x99\xf9\x11\xe1\xa1\x5b\x85\xa0\x08\x93\xb8\xc9\xa3\xd4\x8a\x2f\x58\xac\x12\x6b\xfa\xa0\xa6\x06\xc0\x5d\x94\x70\x1d\x27\x3a\xbf\x7d\x68\x81\x7f\x2c\x71\xb1\xc5\x41\x79\x5c\x4f\x60\x95\xe2\x6c\x9d\xff\x80\x3f\x03\x2f\x75\x66\x3f\xd1\x69\x8e\xdd\x97\xff\x3a\x0e\x72\xe1\xb7\xc9\x94\x8b\x08\xba\xcb\x5f\x7d\xe5\x02\xb2\xfe\xa6\x7c\xa2\xfe\xf1\x90\xd6\x0e\xae\x92\xd1\x51\x58\xda\x44\x4a\x49\xd2\xe9\xd5\xa5\x73\xe8\xe1\x77\xe8\xbb\xf7\xe6\xc4\x9f\x90\x71\x36\xe7\x1d\x2a\x66\xcb\x07\x63\x6d\x48\x76\x8f\xf4\x17\xc8\xbe\xcc\xf4\x32\x31\x81\xfe\xfb\x31\x24\xe4\x34\x04\x9e\xa4\x5d\xd5\x01\x9e\x40\xb4"}, {{0x72,0xd4,0xa5,0x64,0xca,0x15,0x49,0x9b,0x5e,0x4e,0x75,0xd8,0xac,0x0f,0x28,0x21,0x7d,0x32,0x11,0x4a,0x0c,0x64,0x9a,0x7c,0x8e,0xaa,0xdd,0x0c,0xc7,0x8c,0x52,0x0b,},{0xc7,0x66,0xbd,0x73,0x83,0x7c,0x4f,0xaa,0x52,0x15,0x50,0x2f,0x1e,0xfc,0x90,0xc0,0x03,0xf7,0x11,0xbb,0xef,0x55,0x17,0x00,0x91,0x02,0x8a,0x34,0x49,0x34,0x08,0xa9,},{0x8f,0xc4,0xf1,0x79,0x33,0x0b,0x64,0x2d,0xd8,0x6c,0xa9,0x36,0x26,0x51,0xb8,0x3b,0x00,0x6d,0x83,0x75,0xcc,0xef,0x81,0x1d,0x3c,0x67,0x06,0xf9,0x15,0x94,0x65,0x1d,0xf2,0x76,0x99,0x53,0x72,0x30,0x46,0xcc,0xb9,0xbf,0xe6,0x6a,0x66,0x7e,0x0d,0x11,0xfc,0x3e,0xa2,0xd8,0x22,0x62,0x34,0xfd,0xd5,0x16,0x47,0x65,0x26,0x0f,0x7b,0x05,},"\x6c\x7e\x7b\x62\xeb\x24\x4a\x45\xd7\x84\x36\xe2\x97\x0d\xcd\x6c\x0f\x7d\xb8\x22\x97\xa8\x61\x40\xea\x58\xdd\x22\xc2\x19\x5a\xdb\xc9\x56\xd4\xc4\xec\x05\x35\x4b\x21\xef\xe2\x4c\xfc\xfe\x10\xe1\x76\x22\x36\x88\x48\x18\x0d\x2c\x46\x80\xcc\x21\x5e\x8c\xee\xa6\xcc\xe2\x22\x16\x1f\x1e\x09\x22\x39\x25\x3b\x97\x46\xf7\x88\x7d\xf2\x42\x5a\xb5\xa8\x80\xbd\xba\x98\x15\x3b\xe7\x86\xdc\x83\x8c\xbe\xca\x01\x6b\x1d\x06\x52\x4b\xd6\xbf\xba\x80\x9a\x8b\xb3\x7a\xda\xb1\x5d\x42\x41\x5f\x86\xec\x03\x58\x36\x5e\xa8\x7b\x81\x50\xb0\x54\x41\xd9\xd4\x98\x46\x87\x14\x85\xca\xae\x6d\xe3\x59\x73\x6c\x27\x18\x97\x36\xd8\xf1\x76\x5f\x3e\x5c\x5f\x6b\x92\x16\x83\x96\x39\x0b\xee\x94\xcf\xbd"}, {{0x2e,0x5a,0xaa,0xb2,0x98,0xe6,0x6c,0x2d,0xc1,0xd7,0x7e,0xa7,0x42,0x1f,0xf8,0x95,0x25,0x5f,0x9d,0x90,0x0d,0xb0,0x45,0x0d,0x63,0xf9,0xf7,0x9c,0x1a,0x70,0x13,0xcf,},{0x03,0x81,0xf3,0xf1,0x90,0x45,0x71,0x9b,0x9e,0x8c,0xeb,0x56,0x2f,0x0e,0x96,0x5d,0xc0,0x7b,0x09,0xf3,0x71,0xa9,0x63,0xa2,0x81,0xc7,0x49,0xc2,0x53,0x2f,0x65,0x4a,},{0x7c,0x74,0x30,0x30,0x5b,0x36,0x1a,0x9e,0x35,0xb2,0x78,0x0c,0x4d,0x44,0x08,0x07,0x1b,0x21,0x30,0x93,0x1d,0x39,0x83,0x0e,0xc8,0xd3,0x13,0xaa,0xfb,0xc8,0x3a,0x65,0xda,0xe1,0x9c,0xb7,0x47,0xd9,0xd1,0xc4,0xce,0x3f,0x35,0x9c,0xc8,0x24,0xea,0x8c,0x92,0xf6,0x6a,0x42,0xb8,0x61,0x4e,0x78,0x48,0xb8,0x84,0xac,0x8a,0xa4,0xae,0x02,},"\x3d\xf0\xe5\x4c\x71\x1e\x31\x32\xd7\xae\x95\x3d\xeb\x7b\x66\x86\x9e\xe5\x31\xee\x40\xb6\x3c\xe6\x93\x20\x6c\xdb\x2f\x4b\xda\x0a\x25\x69\xe9\x13\xac\x3e\x65\x32\xc5\xd9\x64\x8e\xfd\x46\x27\x78\x0f\xb8\xa3\x1d\x10\x7e\x03\x3f\x05\x4d\x19\xed\x8b\x7c\x49\xdc\x40\x7d\x2e\x94\x9d\xe2\x5f\x99\x30\x72\x21\xd3\x58\x43\xf6\xd5\xeb\x7d\xe5\xcd\xf4\x1b\x91\xdb\xbf\x34\xcb\x6c\x9c\x53\x00\x21\x01\x4b\x56\xab\xc4\x4a\xc2\x30\x03\x13\x61\x56\x08\xa7\xb4\xa2\x35\xe9\x9c\x14\xce\xf8\x05\x08\x87\x03\x22\x09\x48\x8b\x9e\xae\xaa\x82\xc0\x94\x05\xfc\x75\xbe\xc9\x4d\xd4\x2d\x6f\xf1\xb5\x99\xa6\x3e\xe5\x74\x2f\x33\x64\x09\x3a\xc9\x2c\xab\xab\x30\x35\x82\x2a\xa8\x67\xae\x56\xdc\xc9\x9d"}, {{0xb6,0x36,0xa0,0x24,0x48,0x00,0x35,0x43,0xdb,0x86,0x4b,0x40,0xb5,0xd8,0xd6,0xdd,0x9a,0xd6,0x11,0x62,0x4c,0x9b,0x0f,0xc6,0x89,0x0c,0x51,0xea,0x55,0x92,0xc7,0x90,},{0x1e,0xf3,0x60,0x49,0x59,0x68,0xe5,0x6e,0x6d,0x3f,0xe7,0x40,0xb1,0xc8,0x4c,0x4e,0x44,0x90,0xed,0x68,0x2d,0xeb,0x43,0x05,0xaf,0xd5,0x96,0xef,0xb2,0x80,0x22,0x3b,},{0xd4,0xba,0x80,0x30,0x0d,0x5c,0xb5,0x13,0x53,0xc0,0x3f,0x28,0xc4,0x4f,0xd0,0xa4,0x24,0xff,0xe1,0xe4,0x0d,0x78,0xed,0x7b,0xb1,0x13,0x3e,0x8f,0xe4,0xe1,0x87,0x50,0x52,0x93,0xb2,0x0a,0x39,0x1d,0xa9,0x62,0xc6,0xa8,0xac,0x0a,0xce,0xc9,0xc6,0x72,0x26,0xaf,0x3b,0x61,0x95,0xda,0xbe,0x39,0xb3,0x66,0x22,0x94,0xda,0x3e,0x0e,0x09,},"\x4a\xa8\x5a\xac\x25\x03\x4f\x61\x4e\xd4\x4f\x7a\xdc\xdb\xee\xec\x25\xfc\xc2\xa9\xee\xa3\x2a\xb6\xa8\x69\x95\x06\xf7\xa1\xca\xd3\xbc\x89\x2e\x9d\xce\x93\x4e\x75\xb0\xa8\xcd\x14\x64\x2b\x77\x85\x99\x28\x6c\xfd\x8f\x50\xa9\xe4\xf2\xed\xf9\xf9\xd6\x29\x1a\x2e\x29\x79\xcf\x18\x06\xb9\x3e\xd8\xc9\xa7\x8f\xae\x19\x9b\x28\x54\xa0\x3e\xc4\x06\xab\x3f\x72\x08\x35\xee\x26\x3f\xbb\xc9\x1c\xb4\xef\x07\x58\xd7\x75\xfc\x78\x4c\x7d\x5b\x25\x1a\xc8\x93\x79\x19\xa9\xe6\x7b\xe8\x8c\x9e\x44\xcf\x2e\xc7\xf5\x60\x26\x9a\xa0\xf1\x11\x3d\x91\xb8\x44\x01\xdb\x15\xa3\xc4\x8c\x7d\xac\xff\x49\x39\xee\x01\xba\xbb\x98\x2f\xb9\x56\x25\xc6\xc3\xad\x78\x74\x90\x60\x55\x1b\xfd\xe8\xcc\xe4\xfb\x8a\x29"}, {{0x5c,0xa0,0x54,0x3c,0x71,0xf5,0x68,0xa0,0x0e,0xed,0xf5,0x0a,0x95,0x20,0xf4,0xc1,0x5b,0x52,0x6e,0x3f,0xb0,0xda,0x81,0x6c,0x29,0xea,0x3d,0x50,0xb2,0xf6,0x2a,0x12,},{0xd4,0xa2,0x93,0x3c,0xe1,0x94,0x54,0xe3,0x31,0xb5,0x28,0x01,0x00,0x20,0x9a,0x6c,0xe8,0xe5,0x69,0xf9,0x93,0xc2,0xac,0xab,0x51,0xdb,0xe8,0x64,0xc5,0xcb,0x25,0x63,},{0x43,0x68,0x23,0xee,0xff,0x3e,0xdc,0xe5,0xd8,0x58,0x7d,0x68,0xe5,0x47,0x3e,0xf3,0xd8,0xdc,0x94,0x65,0xb5,0x58,0xb6,0xe8,0xe7,0xcd,0x31,0x37,0xec,0xcc,0x80,0xb4,0xc4,0xe8,0x06,0xed,0xf1,0x36,0x19,0xd8,0xe7,0x17,0xe6,0x9f,0x48,0xd7,0x06,0x1b,0x68,0xde,0x02,0xc8,0x20,0x9b,0xe1,0xf7,0xac,0x26,0xba,0x8e,0xdf,0x60,0x6d,0x02,},"\x4e\xf8\x49\x69\x78\xd2\x8c\x10\xab\xd5\x4a\x26\x35\x6e\xe5\x59\x21\xce\xb3\x50\xdd\x4b\x74\x2c\x41\x61\xfb\xeb\xa8\xa1\x60\x1f\x8a\xd0\x48\x4b\x21\xa8\xcf\x5a\x29\x4f\xac\x00\xec\x8a\x6f\x59\xe3\x36\x2e\x47\xbf\xae\x1e\x28\xa2\xe6\xd0\x17\xc5\xca\xa7\x5f\xb0\xf4\x84\x82\x80\x80\x37\xca\x21\x47\x69\x54\xd7\x78\xff\x1a\x05\x86\xda\x3e\xf6\x9d\x6c\xef\x6d\x2d\x8d\xf4\xae\x7a\x85\x44\x2a\x1e\x46\xc9\x98\xcf\x40\x7a\x6a\xd4\xc5\x46\x3a\x43\xc2\x48\xf3\xb6\x93\x7f\xdb\xc8\x45\xb6\x0c\x6d\x85\xe0\x56\x3c\xc1\x6b\xa9\x67\x5d\x36\x4f\x52\x5f\x66\x9a\xaa\xc9\x5f\x42\x8b\xb5\x82\x05\x09\x9f\x9e\x4a\x6d\xbb\xd0\x15\x1f\xb6\x5b\xab\xe1\x23\xe5\x39\x3a\xd6\x40\x26\x93\x5c\xb4\x88\xaa"}, {{0x5f,0x87,0x11,0x7d,0xa9,0xbb,0xb6,0x09,0x1c,0x94,0xda,0x6b,0x23,0x0b,0x7d,0x8f,0x6d,0xe0,0xed,0x2a,0x07,0x64,0x13,0xb9,0x2e,0xac,0xdc,0x43,0xab,0xbc,0x68,0x97,},{0xaa,0x78,0x6a,0x14,0x62,0x26,0x83,0x2a,0xa7,0x3c,0x43,0x4b,0x0e,0xdc,0x2d,0x41,0xd2,0x55,0x8f,0x82,0x0a,0xb8,0xf8,0x7e,0x09,0xe6,0xcd,0xa9,0x10,0x72,0xb9,0xb6,},{0x0f,0x19,0xe6,0xea,0x0c,0x05,0xf3,0x81,0x85,0xc0,0x1c,0x2d,0x64,0x77,0x99,0x5d,0xaf,0x50,0x65,0xba,0x9d,0x80,0x17,0x3f,0xa6,0xbb,0x23,0xa7,0x74,0xdc,0x88,0xb3,0xaa,0xe8,0x79,0xd8,0xa6,0x24,0x71,0xd2,0xd3,0x04,0xcc,0x3d,0xc6,0x62,0x78,0xa7,0xab,0xcb,0x0b,0xb0,0x77,0x1c,0xd2,0x78,0xe1,0x1e,0x7b,0x93,0x2e,0x9f,0x9b,0x0f,},"\x22\x97\xc4\x0a\x2e\x83\x65\xba\xe4\xc5\xf0\x63\x0c\x50\xb1\x3b\xdd\x9a\xd9\x77\x0a\x5d\x9a\x94\x51\xd0\x08\x74\xb0\x23\xd2\x5e\xcd\x46\x8b\x96\x57\x1b\x2f\x16\xdc\xb1\xb0\xd3\xd7\x56\xc1\xf0\x44\xfc\xdd\xd1\xc5\x1f\x27\x72\x7a\x03\x69\xc9\xcf\x25\xbd\x6a\xa5\x95\x51\xb5\xb0\x7c\xf8\xf8\x07\xd9\x2b\x15\x91\x98\x63\x97\x04\x74\x0f\xe6\xed\xa0\xf2\x6d\xba\x7e\x75\xd4\x53\x0b\x28\x00\xf0\x3f\xb6\xaa\x67\x7d\x84\xdf\x75\xd6\x8d\x4f\xbb\x64\xad\x21\x00\x1e\x3f\xc8\x7b\x60\x9b\x9c\x25\x1e\x8c\xcb\x12\xbb\xca\x92\x74\x47\xe2\x05\x4e\x07\x68\x8e\xb8\xa2\x05\x21\xa5\x22\x49\xe7\xb9\x43\xbe\xd6\x0e\x6a\x93\xc0\x1e\x3e\xb6\x21\xf0\x46\x0c\x18\xa6\x90\xb6\xf6\xb6\x6e\xdc\x6e\x87\x43\xa6"}, {{0xb5,0x3a,0x64,0x4c,0x92,0xba,0x2d,0xc7,0x10,0x8b,0x16,0x83,0x3f,0x09,0xad,0x59,0x17,0x84,0x64,0x37,0x22,0x5a,0x77,0x3d,0x32,0xd7,0x9c,0x97,0x73,0x3c,0x0a,0x58,},{0x51,0x58,0x18,0xc6,0x9c,0x0e,0x0a,0x17,0x06,0xb0,0x41,0x43,0x84,0x2f,0x3e,0x9e,0x27,0x14,0x48,0xfb,0xaf,0x3a,0x89,0x91,0x19,0xc3,0x2f,0x42,0x56,0x6f,0xfd,0x33,},{0x13,0xd2,0xcb,0xac,0x79,0x76,0xad,0x27,0xf0,0xbf,0x66,0x9a,0xd5,0x88,0xef,0xb2,0xc9,0x1b,0xab,0x85,0x07,0xd5,0x7f,0xb1,0x6b,0xfe,0xa9,0xca,0xff,0x2b,0x09,0x64,0xe7,0x56,0x25,0xc4,0xd8,0x08,0xd7,0xbb,0xb7,0x8c,0x5b,0x46,0x4e,0xdf,0xfe,0x49,0x49,0xec,0xfb,0xc8,0xb9,0x5f,0xf6,0xfd,0xb1,0xbd,0xca,0x27,0x42,0x06,0x81,0x00,},"\x13\x03\x6d\xaa\xee\x45\xfc\xfd\xe0\xc5\x3e\x06\xd0\x5a\xa9\xc0\x1e\xa9\x4a\x67\xe8\x6c\x6c\x53\x8c\xcb\x28\x3b\x36\x8d\xaf\x70\x78\xd3\xfb\xab\x58\x0c\x76\xec\xf8\x2b\x4e\x96\x60\xf0\x68\xdc\xbb\x50\x0b\x80\x59\x50\x17\xc5\xbe\x3c\x44\x8f\xbd\x8a\x17\xd9\x7c\x56\x43\x19\x78\x90\xe1\x67\xb3\x53\x45\xbf\x65\xe7\x5b\x82\xc8\xd6\x52\x29\xf2\xf6\x0a\xae\x27\x72\x58\x1b\xc9\x9c\x49\xd4\x16\xbc\x3d\x78\x74\x6e\xf8\x30\xf1\xaf\x94\x4f\x4a\x67\x15\xab\x4f\xfb\x01\x59\x1b\xac\x28\x57\xf1\xa9\xc9\xd1\x70\x08\x88\x78\x00\x06\xa3\x16\x07\x33\x8f\x7a\xf7\xbe\xdf\x6e\xfe\x0b\x57\x29\x9a\xc9\x15\x52\x6f\xe5\xe1\xe1\x01\x29\x87\x08\xc6\xe6\x1b\x84\x22\x0a\xfe\x95\xb5\x3f\x89\x59\x87\x45\x61\x52"}, {{0xd2,0x7c,0x9e,0xaf,0xcf,0x88,0x15,0x19,0x90,0xbb,0x5b,0x2f,0xa8,0x44,0x3e,0x70,0x9b,0x5f,0xd8,0xd7,0x8d,0x23,0x38,0x03,0x32,0x2d,0xc8,0x6d,0x93,0xd9,0x32,0x95,},{0x08,0xe0,0xef,0xf5,0x29,0x77,0x67,0x14,0x68,0x61,0x96,0xd8,0x17,0xfd,0xf7,0x1e,0xb5,0xb6,0xe8,0x32,0x65,0x16,0xef,0x48,0x9b,0xfe,0x18,0x6a,0xc5,0xc5,0xbf,0x6d,},{0xc2,0x54,0xe3,0x71,0x44,0x56,0x33,0x13,0x74,0x42,0xee,0xfe,0x40,0xad,0x4a,0x82,0xe6,0x9b,0x1e,0xbf,0x48,0xa6,0x85,0xa2,0xbc,0x6f,0xfb,0xac,0x12,0x6d,0x22,0x84,0x87,0xb2,0xe3,0x53,0x7c,0x97,0xef,0x74,0x10,0x34,0x20,0x91,0x96,0x2e,0x50,0xc0,0xcb,0x85,0xde,0x7b,0x39,0xce,0xb4,0x1a,0xc4,0x07,0x8d,0x40,0xf3,0x40,0x71,0x06,},"\x77\xc3\x5b\xda\x32\xa5\x96\x7d\x8b\x30\x2f\xa7\xa4\x75\x83\xce\xab\x89\xc9\xa6\x09\xa6\x67\xb7\x53\x15\x5f\xa6\x99\x6f\x86\x31\xd0\xeb\xed\xfe\x0a\xc3\x64\xc7\x7e\x85\xba\x37\x31\x1f\x0d\xe5\x7a\x0d\xc2\xc1\xe9\xe4\x00\xd5\x8b\x42\x4a\x32\x2e\x1d\x57\x71\xe0\xa9\xfd\x95\x02\xad\x02\x32\xce\x54\x4f\x07\xd8\xc6\x6e\x7c\x31\x47\xf8\x60\x7a\xc6\x18\x9b\xb6\x90\x66\xf2\xfa\xd6\x31\x18\x5f\x45\x7f\x46\x7e\xba\x33\x22\x8e\xcc\x40\xe8\x94\xa7\x7b\x57\x16\x98\xa9\xbf\xac\x84\x1a\x54\xea\xc5\x21\x9d\xa9\x9c\x6a\x91\x25\xc4\x69\xa2\x2f\xe8\x1f\x3b\x95\x14\x33\x89\x6f\x19\xce\x39\xb3\x73\xfd\x7e\x5c\x7b\x65\x0a\x5e\xf2\x36\x5a\xe7\x51\x0b\x0d\xa5\xe4\x9d\x7c\x07\x07\x3c\xf1\x66\xa9\x83\x87\xe8"}, {{0x70,0x21,0x3d,0x3a,0x79,0xc6,0x5d,0x6d,0xbb,0xa5,0x42,0xa3,0x67,0x96,0x35,0x00,0x3a,0x68,0x2a,0xf5,0xfa,0x58,0xde,0x6b,0x0d,0x65,0xbf,0xa2,0x41,0x84,0x90,0x1c,},{0x44,0x02,0xfb,0x92,0xcc,0x12,0x49,0xdd,0x1a,0xe1,0x69,0x0f,0x03,0xb3,0xec,0x4f,0x1e,0x9b,0xda,0xb0,0xde,0x5b,0xfd,0x28,0x9f,0x10,0x29,0x68,0x30,0xfd,0x40,0x3e,},{0x5b,0x6c,0xe2,0x77,0x4d,0x40,0x0e,0xce,0xa8,0xa8,0x08,0xf5,0xfd,0x0a,0x79,0x7f,0xfc,0x61,0x16,0x75,0x23,0x76,0xcd,0x7b,0xfa,0x3b,0x2c,0xca,0x3a,0x84,0xd5,0x59,0x3f,0x5c,0x03,0xad,0x3e,0xec,0x1d,0x89,0x53,0x22,0x75,0xc4,0x7b,0x7c,0xe2,0xa0,0xe9,0xc5,0x9c,0xc4,0x02,0x8a,0x8a,0x65,0xe5,0xbb,0x90,0x97,0xea,0x71,0xc2,0x08,},"\xcd\x6e\x1c\xd9\xc9\x0f\x56\x6d\xe0\x43\xd7\x5d\x72\x44\xec\xfd\xb3\x8e\x8b\xde\x2f\x9a\x6c\xd5\xa4\xfd\xac\x72\xb5\xed\xe6\xaf\x62\xd9\x81\x91\x8c\x5e\x61\x0a\x38\x78\x92\x74\xfa\x10\xe5\x27\xf8\x5f\xad\x20\x9b\x76\xca\x1c\x28\x1a\xd5\x89\x0f\x9c\x96\xd3\x5d\xe5\x22\xf1\xdd\xcc\xb5\x39\xb8\x79\x8a\x00\x67\xac\xdd\x45\xb6\xe3\x44\xa5\xd9\xa9\x77\x31\xf5\x45\xff\xa4\xb1\x7b\x87\x5c\x67\xb4\x8e\x9d\x4c\x4b\xa7\x2c\x98\xa4\x50\x55\x83\xfd\xbf\x1e\x12\xf2\x2b\x5a\x7a\x49\x47\x46\xcc\x9b\x6c\x1b\x57\x19\x06\xc6\x7f\xcc\x88\x3a\x9c\x15\xa3\x80\x68\x75\xb6\x59\xe5\x81\x6b\x42\x76\xc3\x19\x0e\x25\xcc\x1a\xc3\xde\x47\xbf\x99\xc4\x99\x65\x38\x8f\x54\xf3\xef\x8e\xb5\x69\x90\x6c\x60\x08\xe5\xfb\xbd"}, {{0x5d,0x54,0x0b,0x3b,0x14,0xf0,0xc0,0x17,0x5c,0x04,0x7e,0xaf,0x02,0x6c,0x90,0x70,0x65,0x9e,0xf1,0x3e,0x9d,0x28,0xe0,0xc5,0xc5,0x16,0xa4,0x28,0x26,0x9b,0x14,0xeb,},{0x1d,0x2d,0x4d,0x55,0x1a,0x57,0xc6,0xfb,0x2b,0x04,0x18,0x10,0x49,0xd4,0x03,0x9d,0x57,0x5c,0xf8,0x0c,0x0b,0xc6,0xec,0x70,0x33,0x06,0x7f,0x27,0x30,0x93,0x44,0xde,},{0x32,0x52,0x7d,0xa7,0x55,0x31,0x28,0x89,0x93,0x5d,0xd5,0xee,0x91,0xb1,0xbb,0x11,0x7a,0x5d,0x37,0x7d,0xd2,0x3e,0xf5,0xb7,0xe1,0x5b,0xaf,0xfa,0xe9,0xa5,0x43,0x91,0xa3,0xfd,0x23,0x4b,0xdc,0xe0,0x73,0xe0,0x98,0xc5,0x8d,0x05,0xbf,0x19,0x5b,0x4c,0x3c,0xc6,0x39,0x72,0x38,0x3b,0xa4,0xb5,0x10,0x72,0x97,0x1a,0xeb,0xcb,0x62,0x0d,},"\xe4\xc9\xe8\x70\x68\x98\xca\xd4\xac\x68\xd7\x3c\x13\x0e\xfa\x04\xa5\x4f\x8c\xa2\x59\x19\xea\x6b\xfa\xa5\x4c\x8c\x72\x0c\xed\x85\x4c\x5e\x95\x09\x10\x2c\x7b\x88\x5a\xed\xdf\xfb\xd1\xb7\xf2\xc5\x92\x25\x83\x67\x7a\xc9\xee\xa9\xa1\x08\xc7\xe8\x3e\x88\x71\xae\xd5\xa0\x84\xf5\x44\x0b\x0f\x39\x1a\xd7\xff\xc6\xba\xb4\x57\x4a\xf1\xb9\x67\x70\xf4\x37\x0e\x8e\x98\x8e\x85\xec\xb1\xa8\xd6\x03\x4f\xc3\xd7\xf4\x9f\x74\x22\x02\x3b\x9d\xab\x5d\x0c\x16\xbe\xab\x5f\x5d\x37\xb0\xa4\xd7\xde\x19\x7a\xd8\x7c\xd4\xff\x8c\xe7\x8e\xb1\x2e\x1d\xaf\x73\x9d\x8b\x47\xab\x38\x0a\xbe\x90\x93\x35\x6d\xb5\xb5\x97\x17\x75\x1a\x49\xe1\x94\x84\x72\xfd\xac\xc2\x59\xff\xff\xc8\xc1\xdb\xae\x59\x26\x07\xd4\xec\x71\xcc\x6a\x8f\x6b"}, {{0xca,0x41,0x76,0x9c,0xaf,0x17,0x17,0xb4,0xe4,0x5c,0x93,0xc1,0x21,0xdc,0x82,0xa5,0x34,0xfb,0xc6,0xec,0x09,0x86,0x66,0x2c,0x32,0x22,0xd7,0x14,0x92,0xbd,0x11,0x76,},{0xaf,0x3f,0x89,0xf6,0x18,0x7d,0xbc,0xf9,0x21,0x77,0x50,0xc6,0x7e,0xf8,0x9e,0xd4,0x7b,0x03,0x9f,0x9e,0xb0,0x62,0xff,0xec,0x9d,0xf6,0x4a,0xb5,0x2b,0x0b,0x45,0xcb,},{0x5c,0xda,0x87,0x2f,0x7e,0xd6,0xd7,0xc9,0x02,0x18,0xac,0x10,0xbe,0xe8,0xe2,0x14,0xf3,0xb3,0x4d,0x15,0xd2,0x5c,0x39,0x25,0x5e,0xc9,0xe6,0xb0,0x17,0x7a,0xa3,0xcb,0x73,0x68,0xd1,0x1c,0xb8,0xed,0x6f,0xf5,0xcf,0x0c,0x04,0x28,0x1d,0x06,0xbc,0x42,0x72,0xb8,0xbc,0x09,0xc2,0x3f,0x6f,0x4c,0xd5,0xa8,0x10,0xdd,0xc7,0xb9,0xc1,0x03,},"\x9d\xe8\x47\x6c\x58\x13\x84\x8a\xb1\x45\x15\x37\x84\x1c\xc1\x78\x00\x21\x81\xa2\x18\x2a\xf3\x05\xb1\x2e\x5f\x7c\x3b\x1d\x56\xb2\x2c\xf4\x6a\xe6\x27\x6d\x18\x26\xec\x0a\x8c\x9a\x7d\x9f\x68\x08\x3b\x72\x25\xbb\xfa\xef\xce\x82\xb3\xb6\x45\x94\x05\x2a\x77\x00\xf3\x09\x23\x3a\x79\xff\xfd\xfc\xcc\x5c\x21\x40\x0c\x91\xcc\x0e\x41\x8d\x51\x41\xd4\x86\xb5\x21\x99\x01\xd6\xdd\x24\x47\xc1\xf7\xb7\xcf\x5a\x08\x79\xe7\x0e\x1d\xd6\x58\xd0\xf2\xec\xf3\x1e\xbe\xee\x11\xa5\xc7\x44\x40\xc6\x3b\x9d\x8b\x45\x31\x8c\x34\x65\xd7\xff\x03\x36\x5e\xdd\x03\x85\xed\xf8\x0d\x4f\xde\xd5\x1f\x0f\x75\x33\xee\x40\x99\xf1\x9e\x93\xbc\x9d\x08\xda\xdc\xd1\x34\x85\xdb\x23\x95\x22\xff\xc8\x1e\x2c\x05\x1f\x87\x96\xd6\x2e\x97\x9f\xcf"}, {{0xfe,0xdd,0x63,0xff,0xd4,0xcf,0xbf,0x61,0x88,0x94,0x96,0x2e,0x12,0x1a,0x90,0x25,0xee,0xa3,0x18,0xa8,0x0a,0x1a,0xdf,0x16,0x9d,0x64,0x90,0x44,0x5d,0x2e,0x02,0xa0,},{0x54,0x2f,0x22,0x44,0xbd,0xb7,0xd8,0x4b,0x87,0xe6,0x28,0xa8,0xe6,0xa1,0x2f,0x17,0xbf,0x74,0xa9,0xa6,0xd0,0xea,0x46,0xc5,0x95,0xdb,0xfd,0xc6,0x80,0xc0,0x4b,0x26,},{0xed,0x59,0xd9,0xe2,0x3d,0xec,0x34,0x94,0xb0,0xfb,0xc5,0xd1,0x0c,0xd0,0x2b,0xab,0x86,0xb3,0xeb,0x35,0xab,0xbf,0x9e,0x4d,0x4a,0x92,0x64,0x79,0xf1,0x34,0x58,0x3a,0x44,0xce,0x72,0xdc,0x41,0x22,0xac,0xa3,0x77,0xa4,0x07,0x2b,0x71,0x56,0x46,0x2b,0x74,0xe8,0xdf,0x46,0xb6,0x86,0x69,0x86,0x36,0x83,0x6e,0xf2,0x03,0x17,0x9c,0x07,},"\x2e\x2a\xe5\x84\x64\x1b\xe0\x3d\xd4\x8f\x9c\x61\x80\x77\xae\xaa\x18\x21\x2a\x42\x41\xf0\xc0\x19\x4e\xd2\x3e\x37\x0d\x74\x1a\x3a\xe1\x1a\x5f\xec\x3b\x04\x0c\x16\xea\xfa\x4a\xc8\xd1\x8a\xba\xa7\xce\x8f\x28\x69\x67\x33\x71\x89\xf0\x49\x5f\xfd\xd6\x19\x95\xcd\xe3\x1d\xd8\xdf\xc3\xdf\x57\x00\xb5\x7a\x7a\x29\x98\x0e\x9c\x82\x3f\xee\x85\xd6\x14\x51\x17\x67\x29\xe7\x27\x87\xc6\x10\x9b\x47\x35\x9b\x93\xdf\xd6\x2e\x1e\x5a\x2d\x64\x2c\x05\x72\x42\xda\xe5\x00\xa9\x4c\xa1\xa9\x3b\xc5\x7b\xe1\xad\xe7\x6f\xe4\x50\x1c\x0f\x63\x77\xed\x0e\x92\x46\x17\x9a\xec\xdd\x99\x46\xb6\x71\xe8\x19\x0e\x1e\xd2\x3f\x96\x6e\x96\x40\x9b\x94\x82\x22\xd8\xea\x58\x39\xde\x90\x4f\xc5\x13\x48\x07\x3b\x8f\x40\xed\xbd\x9b\x4a\x4b\x22\x75"}, {{0x38,0xf2,0x18,0x4e,0xaa,0x55,0x36,0x56,0xee,0x29,0x02,0x70,0x6b,0xce,0xc4,0xac,0xb5,0xaf,0x25,0x15,0x7c,0xa0,0xf6,0xa2,0xd4,0x8d,0xe8,0x52,0x85,0xfa,0x3b,0xc0,},{0x7f,0xf0,0x3f,0xb4,0xc8,0x2e,0x9c,0x15,0xd6,0x59,0xdf,0x42,0x4b,0x3e,0x73,0xed,0x1d,0x78,0x00,0x6f,0x3e,0x0b,0x79,0xeb,0x64,0xd9,0x8c,0x13,0xae,0xc6,0xba,0x37,},{0x4a,0x64,0x13,0xc2,0xc8,0x7f,0x2b,0x38,0x56,0xa8,0xde,0xcb,0xce,0x49,0x3a,0xde,0xae,0x0c,0x69,0xc9,0x41,0x34,0x70,0x7f,0xb0,0xf1,0x8f,0x30,0x49,0xfd,0x3e,0x3d,0x05,0x1a,0xbd,0xb9,0xd4,0xbe,0xe2,0x53,0xc6,0x10,0x7c,0x02,0xd5,0x7a,0xd7,0xcc,0x9f,0x31,0x01,0xdb,0x66,0x0a,0xfa,0xc2,0xb7,0x98,0x19,0x38,0xe9,0x56,0x4f,0x01,},"\xc2\xdf\x77\xc9\xe4\x79\xf6\x19\x83\xb6\xc7\x48\x3e\xf9\x3f\xb8\x5a\x10\x3b\x21\x39\x23\x92\x65\x23\x06\x5e\xbf\xf2\x25\x7e\x85\x42\x7e\x05\xcd\xc2\x75\x82\xef\x6c\x16\xbe\x35\x3a\x3b\x25\x03\x72\xd6\x37\x0e\xec\xb6\xc8\x96\x29\x17\xeb\x65\x6f\x26\x41\x69\x01\x89\xd1\x72\xa1\x11\x05\x15\x57\xab\xc2\x49\x4e\x32\xca\xb6\x5e\xd0\x63\x3a\xff\xe9\x24\x08\xb5\x5c\x4e\xd8\xaf\x65\xe2\xc5\xe7\xaa\xb8\x87\xa3\xcc\x8d\x28\xc5\x2e\x9e\x13\x36\xd0\xb7\xbb\x3f\xe2\xcd\x84\x3e\x7f\xa1\x68\x03\x42\xf8\xa4\xaa\xfa\x02\xc4\xab\x25\x2f\x08\xc3\xd4\x6d\x5f\x00\xfd\x01\x48\x42\x63\xee\x63\x52\x84\xf6\xdb\x26\xd6\x29\x8d\xe5\xb0\xdd\x23\x8d\xa4\x0a\x8d\x2a\x93\x37\x6d\xa0\x30\x27\x83\xa0\xe3\xbe\x23\xd9\xe7\xf9\x90\xd2\x5b"}, {{0x8b,0xfc,0xa4,0x84,0x62,0xd2,0x53,0x6f,0x74,0xb8,0x4f,0x6a,0xf5,0x9f,0x5d,0x85,0x82,0xff,0x8f,0x7e,0xc2,0x87,0x45,0xd6,0x72,0xe7,0x2e,0xb7,0x2e,0x79,0xd3,0xe9,},{0x9d,0x10,0xd2,0x75,0xc3,0xd3,0xfe,0x45,0x9f,0x7f,0xe2,0x90,0x1b,0xce,0x38,0x91,0x91,0xcc,0x84,0x83,0xc0,0xf5,0x11,0x40,0xd9,0xc6,0x2b,0x08,0xfa,0xde,0x81,0xbb,},{0x44,0xd7,0x7e,0x43,0x9e,0xf6,0xca,0x5e,0xb9,0x40,0xc6,0x0f,0xf8,0x73,0x2d,0xdc,0x16,0x26,0x9e,0xa0,0x23,0xbb,0x26,0x13,0xbd,0x44,0x7e,0xba,0x7f,0xd6,0x98,0x51,0x22,0x6c,0x48,0x19,0xce,0x8d,0x44,0x98,0x5a,0x49,0xf3,0xf4,0x1a,0xc7,0xaf,0x33,0xc4,0x7f,0xfe,0x5f,0x89,0x30,0x4a,0x32,0x56,0xe4,0x45,0xf8,0xd6,0x86,0xe3,0x07,},"\x81\xee\x4c\xb9\xc4\x5d\xa6\x91\xda\xcd\x7d\xd0\x9a\xff\x59\x73\x72\x67\xbb\x55\xc3\xad\xe1\xba\x32\xc1\x7b\x7d\x0d\x2d\x0c\x60\x79\xc3\x9d\x5f\xd5\xb2\x9b\xa5\xf9\xc1\x76\x20\x97\x70\x98\x43\xee\xe5\x61\x2b\xd2\x0b\xc8\x18\x5b\xf6\x4d\x5c\x93\x41\x84\xe1\x36\x24\xe6\xf8\x77\xa2\xa5\xdd\xa1\x5c\x0d\xf6\x2a\xfb\xb9\x70\x57\xcc\x91\xca\xc9\xa1\x84\x06\xa0\xe0\x10\x9c\xc3\x9b\x2e\x3f\x81\x2e\x22\x7a\x40\x62\xd5\xef\x81\xc9\x2c\x22\xa7\xdc\x79\x7c\x84\x5d\x71\xeb\x6e\xa9\xe4\x2e\xc8\x41\x7f\xba\x90\xa9\x6d\x2b\xb1\x43\x94\x18\x33\x0b\x4b\xb2\xf9\x9c\x6d\x63\xd3\x04\xa0\xe5\x06\xdc\xa9\x65\x3e\x5d\xe0\xdd\x56\xe3\x09\xdb\x1a\x76\xa0\xfa\xab\xab\x16\x37\x74\xf0\x00\x08\x8c\xef\x3d\x1b\x7a\x6c\xf6\x61\xd2\xe1\xd9"}, {{0xd7,0x48,0x0d,0x42,0x72,0xbc,0xb1,0x55,0x7b,0x1b,0xbe,0xe0,0x49,0x15,0xc1,0x26,0xa5,0x2c,0xa6,0xd6,0xa8,0xbb,0x53,0x14,0xa0,0xe1,0xa5,0x2b,0x59,0xbf,0xc9,0x9c,},{0x99,0xc8,0x39,0xd3,0x6d,0x8f,0x5b,0x86,0x52,0x61,0x8e,0xd7,0xb0,0xfe,0x9e,0xc3,0xd9,0x4e,0xff,0xf4,0xc4,0x53,0xc5,0x40,0x63,0x14,0x76,0xa5,0x97,0x9b,0xbb,0xe0,},{0xe0,0x4d,0xc8,0x44,0x2d,0x35,0x21,0x73,0xe9,0x31,0x81,0x8e,0x29,0x08,0x58,0xde,0x85,0x68,0x8a,0x46,0x49,0xea,0x3e,0x3c,0x3a,0xe7,0x4e,0xda,0xa5,0x4a,0xd0,0x1b,0x64,0x62,0x2a,0xd8,0xa0,0x90,0xb6,0xad,0x60,0xad,0xfd,0x01,0x88,0x18,0x82,0x82,0x8d,0x39,0x07,0x8b,0xb5,0xb2,0x71,0x4f,0xd3,0xea,0x83,0x97,0xa3,0x42,0xfd,0x04,},"\x61\x5c\xc1\x9f\x94\x20\x17\x36\x5b\xa8\xbf\xa2\x56\xce\xcc\xc8\x5e\xe2\x89\xa1\xc3\x4b\xb1\x44\x2a\xcc\x07\x16\xc7\xfc\x2c\xae\xb7\x6a\x9d\xe1\x9a\xde\xc1\x06\x37\x1e\x47\xa3\x0d\x2e\x12\x39\xce\x1f\x7d\xca\x25\x52\x6d\x60\x4b\xdd\x64\x76\x59\xd9\x42\xbc\xba\xc3\x68\x91\x13\x49\xc3\xb9\x46\xa9\x7d\xa1\x0a\x42\xdb\xcf\x3c\x73\x41\x6d\x2e\x6b\xa2\x2b\xd2\x9d\x9f\x70\x56\x72\xe9\xe3\x38\x94\x4c\xef\x01\xad\x21\xf0\x09\x74\x2e\x07\xbc\xd8\x88\xca\x31\xe1\xee\x95\x3e\x8c\x1b\x1f\xd9\x54\xb7\xdc\xf1\xa0\xb1\xd5\xa0\x69\x06\x5a\x66\xcb\x72\x1a\xdc\x02\x0f\x4e\xfe\x1a\xbd\xd1\x67\x42\x74\x69\x39\x28\x57\x80\xd7\x53\x13\x7a\xe0\x14\x0b\xb4\x10\xfb\x6c\xe3\x36\x76\xc2\x7a\xee\xc5\x93\xa8\x8c\xbc\x73\xaf\xd9\xf4\x05\x11"}, {{0x3c,0x2d,0x36,0x50,0x73,0x5b,0x41,0xef,0x90,0x06,0xbb,0x45,0xe4,0xbe,0x2e,0x0a,0xa5,0xcd,0xe8,0x51,0xae,0xac,0x42,0x1e,0xe9,0xc1,0xb4,0x92,0xd8,0x7a,0xa1,0x8a,},{0x3e,0x46,0xdd,0xce,0x29,0x88,0x44,0xfc,0xaf,0xa0,0x0a,0x1b,0x47,0xea,0xf3,0xde,0x70,0x59,0x6d,0xf1,0xbb,0xee,0x3c,0x80,0x9d,0x1b,0xe7,0xdd,0x94,0x08,0x0e,0x34,},{0x3f,0x2a,0xf0,0x1a,0xd5,0x37,0x7a,0xc3,0x90,0x40,0xd4,0x1a,0x41,0xe3,0x6e,0x7b,0x93,0xfa,0x72,0x35,0xb8,0x41,0x79,0x1f,0x43,0x2e,0xcd,0x7f,0x91,0xa3,0xb2,0x1a,0xb7,0x19,0x6c,0x88,0x3a,0xd5,0xa7,0xdb,0x44,0x6f,0x6c,0x06,0x67,0x24,0x60,0xf3,0xf6,0x3e,0xf8,0x63,0xd9,0x43,0x2b,0xe9,0xca,0xea,0xbb,0x79,0xe8,0x7e,0x22,0x08,},"\x14\x25\xd8\xd2\x18\xda\x1a\x10\xa8\x0b\x6a\x9c\x3c\x27\x50\xef\xe4\x16\x57\x98\x4a\xbd\x51\x00\xf4\x51\xba\x94\x9d\xb0\x10\x46\xb7\x12\x6b\xe8\x40\x23\x34\xed\x57\x52\x8b\xac\x05\x62\x25\x53\xa8\x6b\x72\x67\x22\x69\x5a\x8f\xb3\x31\xd8\x56\x54\x17\xc4\xff\x0f\x25\x1a\x32\x0a\xd0\x6d\xed\xbb\x75\x0d\xef\x35\xd5\x21\xc3\xc4\xcd\x57\x1a\x45\xad\xa8\x45\x06\x53\xd5\xe8\x1f\xe0\xbe\xb5\x3a\xaa\xe7\x87\xb3\xeb\x65\x3c\x23\x81\xed\x55\xaa\xf2\x59\x0e\xe5\xed\x8b\x66\x26\xf1\xc4\xb0\x43\x0a\x54\xf3\x96\x58\x62\x4e\x66\x35\xfe\xfc\x98\xfe\xe8\xfc\x3e\x1c\xc7\xff\x3d\xd4\x20\xde\x9d\xa1\x1a\x62\xfc\xae\x0e\x0c\xb4\x54\xfc\x6f\x7d\xf0\x39\x54\x29\x1d\x26\x20\x2f\x1b\x18\x8b\x65\x7b\x3b\xae\x07\x38\x94\x49\xb7\x5e\x67\x42\x2f"}, {{0x74,0x96,0x59,0x96,0x26,0x8c,0xdc,0x4c,0x09,0x22,0x0b,0xd3,0x1c,0xe0,0x7b,0x21,0x7a,0x03,0x82,0x6e,0xe9,0x81,0xfa,0x89,0xf3,0xa2,0x35,0x9c,0xed,0x09,0x5e,0xf1,},{0x40,0x96,0xd0,0x27,0xc1,0xc5,0xee,0x4c,0xbf,0xc0,0x4b,0x9d,0x53,0x41,0x74,0x02,0x9f,0xdb,0x50,0xcf,0x56,0x10,0xd3,0x02,0x1e,0xf9,0x33,0xb4,0xca,0xf3,0x39,0x85,},{0x8c,0x66,0x28,0x34,0x43,0x17,0xa6,0x3a,0xca,0x6f,0x78,0xcf,0xae,0xa9,0x65,0xb3,0xaa,0x55,0x22,0xce,0x91,0x41,0x95,0x14,0x1c,0x08,0x87,0x0a,0x1b,0x8d,0xac,0xf3,0x4b,0x79,0xc7,0xab,0xc6,0x93,0xcd,0x9e,0x5e,0xbe,0x1a,0x2e,0x86,0xf0,0x33,0x2d,0x20,0x48,0xdb,0x3c,0xbd,0xef,0x01,0x68,0x79,0x62,0xd6,0xdf,0x24,0x9e,0x38,0x00,},"\x45\xb2\xf0\x64\x61\x5b\xf7\x74\xfc\xe9\x7f\x51\xc4\x64\x68\x5d\x7b\x3e\x4f\xef\xff\x92\x31\x24\x0a\x71\x9b\x3b\x06\x21\xcd\x4a\xd8\x33\x05\x67\x5c\xd6\xea\xae\xbf\xf7\x91\x00\x0b\x0b\x1f\xa3\x1d\x82\xd8\x18\x1b\x7f\xe5\x7c\x5e\x00\xce\xc5\x6f\xf9\x02\x2e\x9c\xe8\xdb\x66\x35\x6e\x40\x8e\x3e\xe2\x62\xfe\x62\x77\x89\xe6\x55\x35\xef\x1a\x63\xe8\xfe\xc9\x33\xbe\x3d\xee\x34\xd2\xfa\xcd\xb8\x92\x8c\xc4\x56\xab\xf2\xf3\xe8\xca\xb4\x7e\xff\x1c\xa4\x2e\x8b\x0e\x48\xd2\xc7\x3e\x7b\xcc\x5d\xe3\xf1\x05\x6f\xc5\x23\xdf\xef\x6b\x00\x23\xf3\x28\x89\xed\x39\x4e\xed\xa0\x32\xab\xf6\xbc\xaa\xda\xa7\xf3\xee\x74\x11\x87\x60\xab\x6d\x91\xdf\x52\x8b\xdc\x58\x07\x97\x2c\x85\xfa\x7c\xb5\x6e\x38\x7d\x73\x32\xe7\x79\xe5\x2d\x0d\xd7\xdb\x0c\xfb"}, {{0x0a,0xbf,0x06,0x9c,0x08,0xb2,0x69,0x1c,0x3a,0x26,0xf7,0x9d,0xc8,0xed,0x05,0xcb,0x71,0xd2,0x20,0xff,0x78,0xf3,0xa5,0xc5,0x78,0x0a,0xe9,0xda,0x18,0xe4,0x56,0x43,},{0x9e,0xf3,0xb5,0xcc,0x01,0x6c,0xc8,0x2d,0xbd,0xda,0x70,0x57,0x66,0xaa,0x44,0x8b,0xd6,0x1f,0xa1,0xaa,0xf1,0x17,0x0e,0xfe,0x91,0x49,0xda,0xa9,0xfe,0x64,0xa1,0xae,},{0xc7,0x56,0x6f,0xb3,0xb4,0xd8,0xde,0xf6,0x67,0xe0,0x40,0xf2,0x76,0xd3,0xed,0x98,0xd3,0x6d,0xff,0x46,0x01,0x26,0xa7,0x5b,0x4c,0xc2,0x10,0x03,0x86,0xbb,0x01,0xc6,0x42,0xf6,0xd8,0xde,0x7e,0x64,0x9b,0xe6,0xe0,0x81,0x8b,0x08,0xd7,0x7c,0xe6,0x0f,0x4e,0xe5,0xe7,0x71,0x7a,0x50,0x88,0x4b,0xde,0xe0,0x20,0x34,0xec,0xf1,0xcd,0x0c,},"\x0d\x05\x52\x91\xb2\xe8\x61\xea\xe1\x9e\xa0\xfb\x20\x69\xd8\xc9\xee\xf4\xf1\x34\x7f\x35\x76\xd7\x84\x11\xae\x7c\x0b\x1c\x1c\xaf\x31\xfd\xe7\x36\xdc\x8a\xcc\xac\xb6\x62\xdf\x76\xb6\x20\xb6\x2c\xe9\x0b\x9f\x92\xc8\x33\x09\x12\x86\x21\xd0\x57\xcf\x84\x58\x05\x94\x90\x88\xe9\x38\xdd\xbc\x3d\x41\xc5\xe5\x54\x1f\xec\x82\x98\x68\x7a\xd2\xf7\x9a\xcd\xa0\x1a\xa2\x15\xd2\x58\x21\x43\x6e\xac\x9d\x26\x87\x16\xd4\xcd\x60\x50\x26\x0c\xb4\xef\x6a\xad\xa4\x83\x5e\x07\x3a\x84\x58\x21\xff\x21\x1a\xe2\xba\xad\xce\xb6\xe5\x7f\x06\xf8\x83\x45\xed\xbf\x93\xbf\xdf\x54\xfb\x74\x12\x3b\x57\xc0\xfb\x4a\x79\x60\x8d\x8d\xb6\x74\x08\x89\xe1\x57\x33\x50\x77\x99\xf7\xa1\xfd\x30\x17\xbc\xd7\x7b\x28\xa2\xbb\x6c\x91\xec\xd1\x54\xe9\xc5\xa5\xff\xa0\xeb\x62"}, {{0xf3,0xfd,0x5e,0xc5,0xe2,0x30,0xb6,0xda,0xd1,0xac,0x3d,0x3a,0xeb,0xad,0xc7,0x86,0x3f,0xf8,0x9d,0xe2,0xa1,0x31,0x7f,0x42,0x4d,0x15,0x98,0x9a,0x3e,0xfb,0x0a,0xfd,},{0xf9,0x9e,0x5d,0x5e,0xee,0xae,0xd1,0x20,0x5c,0xfb,0x5c,0x2c,0xc4,0xe5,0xe9,0xf6,0xb4,0xe7,0xf6,0x41,0x29,0xf8,0x60,0x10,0x4c,0xa6,0x24,0x4e,0xb9,0xfe,0xb5,0x64,},{0x44,0xb0,0x12,0x46,0x63,0xad,0xb0,0xc7,0x3a,0xed,0x49,0xf7,0x34,0x03,0x46,0x1f,0xcb,0x19,0x11,0x1b,0x0b,0xa1,0x7a,0xa9,0x96,0x56,0x6f,0x47,0x7e,0x37,0xd5,0x24,0xb0,0xe1,0xf1,0x07,0x61,0x2f,0xc5,0x2a,0x7c,0x76,0x7b,0x18,0x1f,0xbf,0x4d,0x62,0x9b,0xdd,0xc0,0x8f,0x30,0x58,0x4d,0xec,0x61,0x24,0xc5,0xd3,0x9d,0x42,0x31,0x02,},"\x71\xf2\x89\x73\xed\x3d\xf0\x59\x45\xfa\x0b\xdb\x23\xe9\xbe\xca\x65\x1d\x3e\xe6\xbf\x9f\xa4\x5f\xfd\xc6\x06\x1e\x42\xfa\x2e\x8d\x76\x23\x5f\x0e\x9e\x2d\xaa\x65\xe5\x26\x31\xfc\x3b\xea\xd3\x3d\xa0\x55\xbb\x49\x2e\x47\x58\xe5\x98\xa0\x30\xa3\x3b\x3c\x40\xb3\x43\x71\x45\x9b\x23\x3c\xcc\x04\x3c\xcc\xc3\xa3\xcb\xce\x54\x9e\x20\xe0\xb2\xb4\x33\x05\xb6\x4a\xec\x66\x1a\xad\xba\x65\x56\xb1\x7d\x76\xe3\xbb\xed\x62\xc4\xa4\xea\xc4\xf8\x86\x03\x99\x67\x52\xd2\x36\x3c\x8d\x4a\x27\x89\xd1\x28\xf6\xe9\x59\x94\x5c\x68\xc3\x01\x46\xd1\x94\xcc\xb6\x83\x9e\xc6\x53\x44\x60\x16\x52\xc1\x8b\x00\x74\xe2\xbc\x76\x68\x31\x16\x97\xd9\x60\xc7\x06\x65\x97\x92\x4d\x70\x4d\x02\xa0\x19\x3f\xaf\xbf\xdf\x57\x1e\xe0\xdf\xe4\x14\xdc\x2f\x52\x89\x69\x12\xbc\x32"}, {{0x73,0x8f,0x13,0x10,0xa4,0xe0,0x8f,0x91,0x7a,0x0a,0x5c,0x1f,0xba,0xf4,0xef,0x72,0xf9,0x5e,0xe6,0x2f,0xcd,0xed,0x50,0x86,0x8a,0x3d,0xaf,0x98,0x85,0x6a,0x44,0x8d,},{0x42,0x27,0x2c,0x2c,0x8b,0x08,0x47,0x0e,0xe5,0xdd,0x8a,0xf8,0x84,0x9c,0x01,0xb7,0x50,0x8d,0x3a,0x3c,0x65,0xb0,0x33,0x0e,0x69,0x5c,0x84,0x1d,0x5d,0xcc,0xb2,0xf5,},{0xce,0x1e,0x35,0x77,0xb6,0xa2,0x10,0x16,0xb9,0xdd,0x0b,0x51,0x7b,0xaa,0x0c,0xcb,0x10,0x7b,0xc1,0x99,0xb8,0xbb,0xae,0xf6,0x8f,0x95,0x0c,0x8e,0xd5,0x80,0x13,0xc8,0x53,0xb4,0xd3,0x38,0xee,0xdc,0x67,0x50,0x79,0xab,0x13,0x90,0x46,0x2f,0xfe,0xfa,0x6a,0x95,0x9b,0x04,0x3f,0x8b,0x56,0x51,0xc6,0xca,0x37,0x5c,0xe0,0xb4,0xa4,0x03,},"\xf0\xe7\xef\x67\x82\xd0\x4c\x69\x43\xb1\x9e\xb6\x6f\xf6\x22\x6b\x73\x6e\x3b\x09\x40\xc0\x9b\xb1\x26\xbf\xc4\xc4\xca\x7a\x5e\x70\x16\xc2\x86\xb7\xbf\xd7\x3a\xa6\xa7\x9a\x96\x03\x1b\xc8\x1c\xb5\xda\x68\xce\xc7\x1a\x6a\x0d\x39\x78\x0c\xbe\x6a\x0c\xd4\x77\x4d\x3a\xa0\x6a\x88\x16\x10\x44\x4a\x8c\x9d\x19\x10\x22\x94\xe5\xf6\x35\x18\x7a\xa6\xf4\x8d\x11\x91\x2c\x70\x94\xb3\x88\x33\x02\x8d\x57\x0c\xb1\x10\xdb\x60\x62\x5b\xb1\xbd\xc3\x7a\xff\xa2\x5e\xa3\xc8\xf8\xdb\xfc\x25\x14\xf4\x36\x5c\x62\xb2\x98\x9a\x66\xd2\x7c\x80\x38\x4e\x74\xae\x5f\xba\x8c\x1c\x2a\xf9\xc7\x2c\x49\x71\xe6\x4f\xa6\xa1\xdc\x25\x17\xb3\x1e\xa5\x7c\xcb\x08\x15\xa7\xfe\x2d\xa0\xf1\x46\xca\xa0\x84\x31\xd2\x5d\x15\x16\x62\xd9\xd2\x6e\x95\x22\x9d\x0c\x62\x82\x36\x64\x12\x3c"}, {{0x88,0x41,0xd2,0x2a,0xde,0xd6,0x9c,0x13,0x1e,0xf5,0xee,0x0a,0x10,0xab,0x0a,0x9b,0x77,0xcb,0x75,0x4e,0xde,0x8d,0x25,0x7a,0x53,0x72,0x72,0x6e,0x2b,0x49,0x9c,0x6e,},{0x71,0x5e,0xcc,0xa6,0x36,0x81,0xbc,0x6e,0x9e,0x31,0xd1,0x88,0x48,0x90,0x2f,0x4d,0x96,0xfe,0xaf,0x43,0xb9,0x5d,0x00,0x86,0x42,0x90,0x3b,0x17,0x63,0xbc,0x9f,0xb8,},{0xbb,0x2b,0xab,0x70,0x03,0xf1,0x31,0x1b,0xe9,0xb8,0xc8,0x83,0xfc,0x4f,0xd5,0x28,0xad,0xfd,0x51,0xa9,0xc9,0x9d,0xb3,0xdc,0xa8,0xda,0x0f,0xca,0x95,0x8d,0xa1,0x9a,0x10,0xeb,0x22,0x33,0x26,0x67,0xb1,0xa0,0x06,0x5d,0x3d,0xbc,0x0d,0x06,0x26,0x9a,0x12,0x59,0xb6,0xa8,0x90,0x48,0x4a,0xa2,0x14,0x3a,0x52,0x69,0x5f,0x14,0x5b,0x0a,},"\x08\x7c\xa6\xbe\x2a\x95\x0c\x02\x4b\x3e\x74\x67\xfe\x00\xa7\xd3\x64\x55\x5d\x5d\xc6\x77\x0f\x5e\xbd\x26\x06\x42\x52\x5b\xd3\xc0\xf9\x65\xdb\x36\xd7\xb2\x29\xa5\x74\x21\xee\xc6\x4e\x4d\x99\x1c\xdd\xe5\x91\x23\x03\x44\x70\x55\x3f\x4e\xb0\xbe\x81\xad\x29\x36\xc8\xca\x26\xbc\xab\x4e\x5d\x79\x04\x0e\x29\x79\x87\x28\x60\x16\x84\xa4\x68\x32\x3c\xf3\xba\xae\x4d\x94\x8d\x0a\x1f\xd9\x05\xef\xfe\x16\xdc\x44\x64\x20\x88\xdf\x53\xf6\x38\x8b\xc4\x80\xed\xf4\xaa\x20\x7d\x0e\xd1\x61\xed\xa3\x45\x71\x2b\x4c\x00\xcb\x05\xfc\xf6\x35\xec\x25\x88\x78\x5b\xfb\x8a\x27\xcd\xc2\x89\x96\xa1\xdb\x3e\x67\x87\x02\x33\x93\xc0\x75\xd8\x3c\x90\x38\xfe\xd7\x89\x9c\x55\xfe\xc3\x07\xde\x32\x49\xc1\x4b\xda\x49\xe8\xb8\x95\x86\x09\x42\xc3\x6d\x64\x0b\xb8\x93\x77\x91\x42"}, {{0xc0,0x21,0x35,0xe7,0xb6,0x5a,0xac,0x72,0xf6,0x3c,0x32,0xbf,0x5b,0xef,0x5b,0x68,0xc7,0xf3,0xb8,0xed,0x56,0x20,0x8e,0x59,0xe4,0x75,0x20,0x70,0xe9,0xd0,0x70,0x95,},{0xdc,0xf6,0x00,0xf2,0x44,0x03,0x7a,0x75,0x20,0x3a,0xe1,0x1a,0xc3,0x16,0xe8,0xdb,0xe9,0x98,0x6f,0x0d,0xce,0x23,0x47,0x39,0x39,0x33,0x4b,0xf5,0xce,0xa4,0x8b,0x0d,},{0xdd,0x5c,0xba,0xe4,0x79,0xeb,0x5e,0x22,0x95,0x74,0xc2,0x1e,0xc3,0xbe,0xd9,0x11,0x11,0x3a,0x57,0xa1,0x91,0x6d,0x33,0x13,0x45,0x75,0x15,0xd5,0x5c,0xc5,0xb6,0xe6,0xeb,0xc5,0x2c,0x93,0xf8,0x21,0xd1,0x39,0x88,0xdb,0xba,0x8d,0xf5,0x09,0x6d,0x55,0xff,0x9c,0x39,0xe7,0xf9,0xd5,0x61,0xcb,0x58,0x93,0x0c,0x96,0xa7,0xa5,0xd6,0x0b,},"\x86\xd9\x49\x13\x50\xd2\x56\x6e\x70\x8e\xd3\x56\x18\x5d\x61\x0c\x73\x46\x5b\x2a\x5c\x70\x12\x91\x99\x58\xaf\x2c\xf7\x6a\xf9\x95\x23\x0d\x36\x0d\xe4\x00\xb7\x13\x71\x70\xdd\x08\x35\xf1\x0f\xcb\xec\x22\x4e\xe4\xe4\x2c\x7d\x1c\xeb\xb7\xf5\x80\xfe\xa8\xed\x62\x23\x16\x3b\xac\xdd\x19\x23\xa5\x72\xcb\xb6\xdc\x26\xca\x8b\x17\xad\xe6\x8c\x6d\x28\x08\xc4\xca\x1e\xca\x28\xea\xe9\xa1\x45\xf6\x8d\x40\x79\xd8\xd5\x9d\x14\x0e\x95\x82\x28\xe7\xe9\x95\x20\xe3\x42\xdb\xd7\x45\x7a\x91\x59\x74\x0f\x48\xbd\xc2\x7b\x93\xbd\xab\xeb\xa4\x65\xcb\xf0\xc8\xdf\x5e\xf2\xc0\xf9\x38\x6e\xeb\xe6\x56\xf5\xd7\x49\xd5\xf9\x14\x7f\x52\x52\x66\x91\x0d\x7b\x80\x39\x6a\x90\xbe\x5c\xc1\x88\xa9\xa9\x45\xf9\x3e\x75\x3f\xc9\x9b\xaf\xa1\x8e\xe0\xa6\xdf\xf7\x9b\xf8\x48\x48\x98\xef"}, {{0x15,0x4a,0x47,0xeb,0xa1,0xb8,0xc3,0x83,0x62,0xea,0x61,0xfa,0xeb,0x0c,0x0a,0xd7,0xe6,0x1e,0x41,0x2a,0x3c,0xba,0x46,0x88,0xaf,0x0d,0xb2,0xa4,0x87,0x20,0x8b,0x1c,},{0x16,0xde,0x2c,0x89,0x4a,0x50,0xcb,0xd4,0xca,0x90,0x41,0x9a,0x4c,0xa6,0x49,0x42,0xcb,0x14,0xbd,0x33,0x5c,0x5d,0x3f,0x4a,0x53,0xe2,0x39,0xc2,0x80,0xbd,0xa7,0x25,},{0xf4,0xb6,0xeb,0x1a,0x8d,0x95,0x0e,0x88,0x7f,0xd2,0xf3,0x0f,0x70,0xa2,0x3b,0x41,0x87,0x14,0x95,0xbf,0xa5,0xb8,0xa4,0xad,0x39,0x96,0xcd,0x9b,0xf5,0x1e,0xb7,0x42,0xe0,0x7f,0x4c,0x4d,0x2d,0xa4,0xb0,0x1a,0xb0,0x87,0x36,0x7a,0x50,0xe2,0xb6,0x5b,0x3c,0xef,0x51,0x4e,0x40,0xd8,0x37,0x54,0x0b,0x8c,0x89,0x96,0x64,0x85,0x91,0x0f,},"\xbf\x60\x7e\x8b\x6e\x14\xd9\xc8\xac\xd9\x68\x15\xaf\x0c\x03\x5a\xc7\x3c\x41\x04\xc9\x37\x86\xcc\xc1\xc9\xf8\x59\x39\x5d\xd7\x81\x90\x03\x20\xeb\xf3\x56\xaa\x99\x1c\xdc\x9f\x50\x3f\xce\xe9\xf8\x36\x75\x88\x8a\x7d\x59\x20\x02\xd2\xa5\x4a\x57\x3a\x96\x99\x4b\x3f\xa8\x65\x53\x8c\x61\x7e\xd8\xad\x1f\xf6\x20\x18\x28\x8a\x67\x4f\x44\x9b\xe0\xaa\xb5\x22\x2f\x74\xc4\xfd\x47\x5e\xd6\xa8\xdf\xb2\x7f\x45\x28\x7b\x22\xb2\xb6\xc3\xbd\x15\x17\x9f\x26\x7d\x15\x7d\x7d\x8a\x41\x59\x67\x9b\xe8\x5b\x25\xc2\xbb\x2b\xa8\x50\xaa\xed\x9a\xe3\xae\x57\x1b\xe4\xf7\x58\x36\x32\x9c\xf3\x6f\x41\x2c\x1c\x80\xf1\x41\x3b\x76\x61\xea\xb4\xa8\xe1\x1b\x60\x24\x24\x4f\xc6\x23\x23\xff\x02\xe3\x8a\xce\xb1\x73\x7b\xd4\x74\xbf\x1e\x98\x01\x5d\xbc\x78\x8b\x02\x7b\xbe\x21\x7c\xf4\xe7"}, {{0xd3,0x02,0x84,0x31,0xce,0x2e,0xef,0x73,0xbd,0x94,0x0a,0xb8,0x4c,0xa2,0x9f,0x13,0xfb,0x26,0x43,0x6a,0xa2,0x5e,0x1b,0x7b,0xf2,0x6c,0xb3,0x3f,0x17,0xfd,0xf8,0x17,},{0x63,0xdf,0x20,0x3e,0x28,0x60,0xba,0xc4,0xd3,0x52,0xe7,0x22,0xc1,0xc9,0x1f,0xe3,0x77,0x6e,0x1c,0xbc,0xae,0x85,0x53,0xa4,0xf1,0x98,0x90,0x26,0x0b,0xf0,0xe4,0x57,},{0xce,0x97,0x29,0xa9,0x6c,0x3e,0xd2,0x89,0x43,0xb2,0x78,0x39,0xc7,0x33,0x82,0xec,0xd5,0x72,0x96,0x0c,0x1f,0x9e,0x90,0xc5,0xef,0xf9,0xdd,0x49,0x9f,0xf4,0x8f,0x17,0xd2,0x5e,0xdd,0x12,0x68,0xef,0xfe,0x41,0xee,0x6a,0x81,0xce,0x48,0xd8,0x4d,0xe5,0x13,0xdf,0x9c,0x41,0x44,0x26,0x21,0xb2,0xf5,0x49,0x1e,0x34,0x6b,0xe1,0x8c,0x04,},"\x08\x63\x35\xd6\x12\x75\xd1\x68\xea\xac\x05\x40\x47\x7f\x50\xd4\xb1\x5f\x9e\x50\xb9\xbe\x69\x39\x21\xed\x54\xa9\x94\x1b\xc4\x06\x43\xcd\xa6\x2e\x1d\x80\x5d\x02\x50\xa8\x11\x46\xbd\x5f\xe2\xd3\x9e\x81\x44\x4d\x21\xe2\xb2\x1b\x03\x1c\x11\x13\x06\xca\xcb\xf5\x27\x17\xf6\xfb\x4c\xd3\x41\x6f\x12\x15\xf8\xdd\xdc\xed\xd2\xf0\x09\x6b\x0f\xcf\xa0\xa6\xcc\x2c\xde\x7a\x2b\xab\x7f\x1e\x32\x79\x0b\x53\x61\xdf\x36\x71\x42\x4c\xc7\x22\xf2\x31\xbf\x71\x89\x5b\xcd\xcb\x7b\x22\xee\x07\x4e\x8f\xb4\xa9\x67\x85\x04\xe7\x35\x36\x6c\x17\x2f\x07\x63\x7b\x7a\x93\x14\x9b\xb2\x1f\x38\x88\x33\x78\xa1\xdb\x27\x3f\xc2\x32\x39\xe3\x53\x37\xf9\xce\x56\x6d\x8d\xdf\x3b\x31\x33\xca\xd7\xf2\xce\x81\xed\xb5\x03\xce\x1d\x27\xc5\xa6\x57\x16\x0b\x78\xdc\xa9\xae\xae\xa3\x79\xbe\x9c\x85"}, {{0xee,0x89,0x85,0xdc,0x27,0x50,0x44,0x40,0xa8,0x75,0x8d,0x4c,0x53,0xe4,0x22,0x52,0x15,0x79,0x7a,0x00,0xcd,0x86,0x31,0xd5,0x9b,0xd9,0x3b,0xc6,0x6f,0x37,0x3d,0x5e,},{0xcd,0x64,0x7b,0xb0,0x65,0x69,0x3d,0x48,0x65,0x89,0x15,0x6a,0x9f,0xa2,0x61,0x43,0x75,0x34,0xdc,0x86,0xf4,0x6f,0x72,0xd0,0xa8,0x00,0x39,0x9a,0x7a,0xf0,0x10,0xf7,},{0x5b,0xd6,0x0a,0xd5,0xe9,0xba,0xd9,0x93,0x2c,0xa9,0xc7,0x5f,0x23,0x1a,0x76,0x88,0x9a,0xe7,0xa8,0xb8,0x64,0xb9,0x1d,0x1f,0xcb,0xa5,0xc5,0xd4,0xbf,0xa1,0xd9,0x28,0x38,0xad,0xb9,0x74,0x84,0x2a,0x07,0x10,0x77,0x9b,0x3e,0x30,0x94,0x04,0x49,0x09,0xe9,0x2c,0x7c,0xf0,0x46,0xce,0x51,0x9f,0x4c,0x68,0xe8,0xf1,0x9e,0xc0,0x3c,0x02,},"\xf2\x22\x04\x85\xad\xdf\xeb\xce\x02\xa8\x33\xac\xa3\x33\x81\xd1\xdf\x91\x7e\xd6\x09\x95\x0e\xd2\x4f\x85\xe3\xb0\x2b\x2b\x99\x4b\x4d\x93\x97\x84\xe3\x32\xf4\x10\x64\xc8\xb4\xa2\x63\x0a\xb3\x69\x61\x74\x2a\xa1\xcf\xfd\xcb\x08\xc1\x44\xee\xae\xde\xaf\xd4\x8b\x5d\xbe\x96\xbf\x24\x35\x0e\x14\xfd\x68\x28\x6b\xc0\x8e\xea\xef\x8b\xc6\xad\x9e\x19\x5d\x14\x84\xaf\xcd\x30\xaf\xa8\xce\xd4\x84\x81\x26\xd5\x6c\x81\xb4\x3c\x27\xa5\xdb\xbd\xec\x1a\x50\xc1\x10\x62\xce\x21\xc6\x1d\x86\x0c\x25\xa8\x62\xfb\xb7\x5c\x3b\xd5\x1c\x8d\xc0\x76\x36\x66\x86\x69\xbb\xf7\x51\xea\xca\xcc\xb3\xb5\x1d\x2c\x0d\x41\x40\x31\x6c\xfc\xe2\xeb\x18\xd2\x90\x8c\xec\xd5\xa1\x88\x67\x9b\xc5\xf5\xde\x29\x0f\x54\x8e\x7e\xbc\x57\xd4\x1b\x58\x9a\x24\xce\x88\xee\x48\xd9\x7e\x8d\x0c\x7c\x76\x99\x60"}, {{0x80,0xdf,0xe2,0xbf,0x73,0x87,0xba,0xd4,0x65,0x4e,0xb0,0x76,0xf8,0xda,0xe9,0x59,0x51,0x63,0xe4,0x01,0x27,0xf5,0xdf,0x49,0x2d,0xad,0x7d,0xf0,0x4c,0x72,0x21,0xc4,},{0xd1,0x78,0x3c,0xee,0xb9,0xcf,0x8e,0x4d,0x07,0x76,0x4c,0x47,0x3f,0xa4,0x06,0x1b,0x82,0x74,0x39,0x71,0x03,0xf2,0x07,0x6d,0x70,0x32,0x49,0xd7,0x58,0xb8,0xfb,0xd5,},{0x27,0x27,0x9e,0x3c,0xdc,0xb0,0x3e,0xf5,0x57,0xa5,0xde,0xfc,0x2f,0x6c,0x58,0x12,0x8a,0x6d,0xc3,0xf8,0xb0,0x38,0x59,0x58,0x01,0x4e,0x70,0x9c,0x1f,0x61,0xb0,0xae,0x6b,0x40,0x35,0x76,0xf0,0xe4,0x54,0xd5,0xe4,0xc6,0x4c,0x17,0x31,0x38,0xee,0x4b,0xbd,0x5f,0xe7,0xb6,0x0d,0x06,0xc5,0xab,0xe2,0x3f,0xe9,0x9e,0xe3,0xb4,0x6a,0x00,},"\xaa\x09\xd7\x84\xbb\x09\xdc\x99\x99\x31\xeb\xb4\xc0\x0e\x42\x4c\xef\xec\xa1\x04\x81\x8d\x8e\xaf\x06\x61\xf0\x97\x28\xad\x02\x5e\xf4\x73\x93\x21\x05\x71\xf1\x74\x04\xe9\xaa\x6d\x8c\xbd\x5f\xd8\x8c\xd7\xdf\xb8\xe2\xe8\xa1\x08\xc0\x5d\xe2\x06\xf3\x40\x82\x34\xa3\xb4\x63\xdb\xe7\x1a\x07\xd0\x55\x87\x32\x45\x24\xb7\x32\x6e\xe7\x9d\x33\x48\xdd\xbe\xd7\x87\x1b\x86\xfc\xb4\x88\x03\x1d\xc9\xea\x93\xf6\xb8\xd7\xfd\xa6\x23\x93\x48\xa5\x62\x44\x4f\xaf\x1e\x72\xd3\x1a\xf3\x54\x43\xe9\xdf\x53\xe7\x62\xf3\xe5\x6b\x48\x66\x8f\x97\x84\xb3\x36\x8a\xb2\x78\xa4\x8e\xf4\x54\x6a\x26\xcf\xad\x0d\x0a\x51\x61\x69\x8f\x26\xee\x8d\x34\xfc\x2b\x3d\x6d\xfb\x93\xb0\x09\xac\x29\x6f\x6a\xfe\x48\x7e\xe3\x35\xea\xc9\xf0\x2c\xfc\xae\x5f\xcb\xd1\xa1\x6b\xa4\xe7\x1b\xe1\xb1\x12\x56\x2f\xc2"}, {{0xda,0x1f,0x86,0x85,0x42,0xcd,0x7c,0xce,0x7a,0x5c,0xa3,0xfa,0x3c,0x24,0x08,0x1b,0x4d,0x23,0x44,0xb2,0x1a,0x15,0x7f,0x02,0x64,0xa3,0x47,0x13,0x2d,0x19,0x65,0x9d,},{0xcb,0x3a,0x25,0xa5,0x3f,0x27,0x2e,0xa8,0x13,0x80,0x44,0x68,0xd6,0x50,0x0e,0x96,0xa1,0xea,0xf8,0x22,0x70,0x5b,0x77,0x90,0xa8,0xac,0x3e,0x98,0xcc,0x4e,0x52,0x4b,},{0x75,0xc5,0x17,0xad,0xe4,0xf0,0x8d,0x77,0x46,0x30,0x57,0x43,0xd1,0xa7,0x76,0xc3,0xc5,0x5e,0xb5,0xee,0xdf,0xdf,0xcb,0x5e,0xb1,0xd5,0x63,0x4a,0x1b,0xda,0xf7,0xa4,0xb8,0xd2,0x41,0x87,0xd6,0xc8,0x85,0x0e,0x3c,0xed,0x65,0x67,0xa0,0x3c,0x4c,0x59,0x38,0x9a,0x4c,0xf4,0x71,0x14,0xce,0x54,0x73,0x16,0x0f,0x23,0x05,0x46,0xe6,0x0d,},"\xc6\x98\x7e\xf3\x80\xd5\xd0\xe7\x41\x96\x44\x3a\xaa\x3a\x32\x35\x6c\xbc\x02\x63\x6c\x5a\x4b\x6d\x62\xa8\x11\x4b\x21\x11\xbc\x1a\xbd\xdd\x9e\x44\xb3\x67\x2c\x18\xb5\x8d\x4e\xf5\x91\xaf\x45\x62\xe0\x20\x04\x9f\x8e\x12\x74\x68\x8e\x1f\x8e\x52\x96\xd2\xf9\x25\x2e\x7f\xc8\x4c\xd1\xd0\xc5\x8e\x98\xf0\xf1\x60\x53\x0a\xa2\x2c\x87\x1e\xef\x65\x2e\x71\x97\x4c\xe9\x1b\x4a\x65\xfc\x25\xfd\x09\xfa\x1b\x6c\x32\x08\x6e\x98\xec\x70\x8d\x9a\xbc\xb1\xd9\xcc\x8e\x1a\x08\x9e\xd8\xdb\x22\x06\xee\x95\x70\x23\x6a\xd6\x9b\x3d\xe6\x82\x18\x62\xfd\x2c\x70\xcd\x83\xa3\x2a\x68\xb0\x48\x62\x29\x55\x3d\x92\x8d\xe4\x8d\x03\xa1\x04\xe8\x73\x81\x96\x4a\xbe\xa7\x66\x83\x97\x6d\x52\x7c\x84\x16\x3a\x12\xee\xe0\xa5\x59\x86\xcf\x14\x31\xe9\xc8\x6c\xba\x81\x82\xca\x94\x68\x9b\xac\xd1\x65\xfb\xce"}, {{0xf1,0x3d,0xae,0xc0,0xef,0x33,0xdd,0xd1,0x33,0xc7,0xd2,0x44,0xd1,0x0f,0xd2,0x7d,0xdb,0x23,0x70,0x52,0x80,0xff,0x5f,0x18,0x15,0xf0,0xf6,0x56,0xd8,0x36,0xfe,0x84,},{0x2d,0xc7,0xf1,0x36,0x7d,0xe6,0x72,0xc5,0x1e,0x00,0x5c,0x74,0xf8,0x76,0xf9,0x82,0x59,0x39,0x96,0x87,0x3a,0xcb,0xa0,0x79,0x29,0x27,0x34,0xc2,0x09,0xc2,0xb1,0x11,},{0xdb,0x77,0x18,0x33,0xf7,0xfd,0xba,0xcd,0xab,0x2b,0x5c,0xc8,0x0e,0xed,0x50,0xaf,0xdf,0x13,0x78,0x3b,0x7f,0xe5,0xe9,0x03,0xd5,0xdb,0xb4,0xc2,0xe5,0x35,0x31,0x6a,0x6e,0xef,0x4c,0x34,0xf0,0x04,0xd2,0xb9,0xa4,0xe2,0x70,0x0b,0xd6,0xe2,0xac,0xdd,0x56,0x4c,0x3c,0x80,0xcc,0x68,0xa3,0x03,0xf5,0xfb,0x09,0x1c,0xb4,0x34,0x0f,0x0a,},"\xec\x02\xff\x18\x04\xb2\xb3\x09\xaf\x31\x58\xb6\x62\x72\xa1\x4a\x3a\xad\x83\xc4\x1a\x71\x98\x46\xf7\x08\x8c\xa9\x79\x2a\xf5\x75\xc7\x89\x13\xc4\x32\x75\x9f\x0b\x9a\x74\x8b\xdc\x55\x68\x49\x6e\x41\x65\x8c\xc1\xcd\xb8\xda\x6c\x91\xd0\x7c\x3e\xc2\xf4\xaf\x50\x42\x49\xb9\x96\xaa\x00\xc0\x07\x1c\xdf\xa7\x93\xf8\x2d\x0e\xc5\xd2\x67\x26\x2f\x51\x8f\xc0\x29\xb8\x8e\x20\xb6\x20\x1f\xb9\xe0\x5a\xbd\x3f\x95\x24\xc5\xda\x2f\xa8\x97\x8f\xf2\xef\xd4\x81\x20\xcf\x00\x82\x2d\x1b\xee\x90\xdf\x81\x61\x25\xd8\xed\xc0\xcf\xb5\xde\x66\xd1\x6b\xe6\x38\x96\xa4\x12\xa6\x2b\x03\x1b\x71\x18\xac\x13\xfe\x2c\x9f\xaa\x6b\x1a\x33\x42\xf9\xcc\xf7\x88\x41\x66\xcf\x48\x9a\x84\xde\x26\xb5\xce\x5b\x21\x85\x6a\x3a\xf2\x89\xbc\x66\x22\xc0\xaa\xb9\xf2\x14\x2d\x39\x3f\x5d\x4b\x23\x67\x79\xdb\xb0\x66"}, {{0x42,0xdc,0x16,0xc5,0x7f,0xb6,0xf1,0x28,0x94,0x5f,0xa1,0x01,0xe0,0x5b,0xbf,0x54,0x8e,0xf7,0xd9,0x77,0x26,0xb6,0x92,0xfe,0x40,0x40,0x69,0xcc,0x57,0xcc,0xef,0xa0,},{0x0a,0x1b,0xa5,0xdf,0x52,0x39,0x96,0xf9,0x54,0xb3,0x4d,0xdc,0xfa,0xba,0xd3,0xf3,0xde,0xe2,0x1a,0x5f,0xa7,0xa4,0xce,0x32,0x2d,0x21,0x6b,0xd8,0xcc,0xaf,0x43,0x8c,},{0xc7,0x59,0x77,0xe8,0x3b,0xcf,0xe9,0xdf,0x72,0x92,0xa8,0x60,0xed,0x97,0x25,0x55,0xb5,0xc2,0x44,0x16,0xfd,0x4b,0x7e,0xe3,0x28,0x53,0x88,0xfa,0x5b,0x14,0x47,0x60,0x8e,0x4a,0x34,0x78,0x13,0xcf,0xe0,0x93,0x51,0x2a,0x76,0x51,0xe4,0x22,0xe9,0x86,0x7d,0xb7,0xb9,0x7c,0x0b,0x08,0x67,0xf0,0xb8,0xc7,0xb7,0xf4,0xf0,0x2c,0x31,0x0d,},"\xf2\x71\x4c\x23\xa3\xa6\xfc\x11\xad\x15\xc9\x80\xb7\x35\x0f\xc8\x42\x17\x87\x76\x61\x18\x80\x55\xff\x75\x0d\x82\xc4\x9c\x5f\xef\x7b\xc8\xe6\xaa\xc5\x74\xa1\xb7\x9a\x3f\x26\xd1\x69\x69\xc0\xf4\x06\xee\xab\x3e\x9e\x12\x85\x0a\x55\x70\x97\x45\xe3\x0d\xff\xa6\x2a\x69\xdf\xb2\xb6\x4b\x3c\x1b\xd2\xbc\x35\x86\xe2\x6d\x4e\xea\x71\x4d\x2a\x7b\x71\xcf\x79\xfb\x8f\xfb\xf2\xaa\xad\x00\xca\x3e\x4f\x2b\x6f\x50\x3c\xc1\xfe\xf2\xea\xb3\x65\x6f\xb4\x4f\x8d\x62\xa8\xdb\x8a\xb5\x8f\x39\x46\x93\x94\x9e\xea\x57\xfa\xfe\xcf\x00\x5f\x6e\xbf\x12\x87\xdb\xa4\xd2\xd6\x23\xc0\x2e\xa1\x71\xf5\x67\xe5\x26\xad\xd2\x07\x09\xeb\xca\xb9\x62\xf8\x3d\x98\xef\x66\x8e\xbd\x01\xef\x20\x48\x8b\x36\x65\xe3\xa4\x46\xfb\xfb\x13\xd3\x40\x50\x94\x2c\x74\x9b\xb2\xdf\xfc\x76\x63\x67\xfd\x45\x2e\x68\xe5\xb0\xc6"}, {{0x90,0xb4,0x55,0xc6,0xbb,0x9c,0xec,0x83,0xe1,0x37,0x35,0x70,0x65,0x33,0x9d,0x03,0x05,0x25,0xd0,0xea,0x7f,0x5b,0x92,0x3a,0x2d,0x59,0x72,0xc3,0xc1,0x2a,0xa3,0x7b,},{0x5c,0xef,0x03,0x8c,0x16,0xbf,0xa4,0xb4,0xc9,0x23,0xa0,0xfe,0x70,0xcd,0x7f,0x25,0xc8,0xbc,0x83,0x7f,0xdf,0x5a,0x7e,0xfb,0x9d,0x95,0xf2,0x1b,0x96,0xbe,0x92,0x5a,},{0xc9,0x34,0x5e,0xec,0x2c,0x4a,0x0a,0xec,0x73,0x23,0x86,0x49,0x4a,0x69,0xa3,0xfc,0xe8,0xb8,0xa1,0xbe,0x36,0x6b,0xbe,0xd1,0x65,0x9f,0x13,0x1f,0xe9,0x7c,0xc0,0x37,0xfb,0x1b,0x7c,0x1b,0x68,0xb0,0xf3,0x02,0x39,0x45,0xd2,0x00,0x90,0xa0,0xcd,0x2c,0x15,0x53,0xa4,0x7f,0xae,0xc4,0xd6,0x6f,0xd8,0x16,0xce,0x12,0x11,0x68,0xf3,0x09,},"\xc6\x2c\xfd\xb9\xd2\x1e\xee\x6b\xe4\x7f\x30\x72\x7a\xae\xe5\x1f\x07\x03\x78\x9a\x43\x1d\x32\x22\x85\x33\x35\x02\x17\xa9\x3a\x18\x90\x06\x69\xc9\x59\x56\xf3\xf2\xae\x90\xdc\x74\x5a\x71\xe1\x83\x40\xd0\x58\xd1\x6b\x4c\x6f\xe3\x3b\x64\xaf\x8d\xad\x97\x3f\xe5\xdc\x02\xe8\x52\x07\x05\xc7\xa8\xbb\x3c\xcb\xe1\x83\x8c\x6c\x24\x93\x37\xf9\xb6\xa4\xc0\xe1\xf8\xa4\xe5\xd1\x03\x19\x6f\xa7\x99\x98\x92\x3d\x04\x22\xe9\xd0\x79\xa7\x2c\xc2\xa8\xf8\x6d\x65\x90\x31\xa6\x07\xd4\xcc\xa0\xb9\x47\xb3\xab\xee\xee\xf6\x4c\x28\xda\x42\x0d\x05\xde\x66\x5a\x55\x10\xfe\x55\xf7\x75\x98\xec\xad\x7f\xaa\x0a\xc2\x84\x80\x0b\x53\x82\x93\x94\xc4\xae\x90\xbe\x66\x67\x8f\xf0\x4a\xb4\x6d\xa2\x65\xae\x06\x40\x2d\x8c\x83\xca\xd8\x4d\x61\xa0\x51\xde\x02\x60\x55\x98\x88\xe7\x79\xf7\x4b\x72\xa5\xd7\x1c\x13\x2f"}, {{0xdc,0x18,0x5c,0x2b,0xa0,0xb3,0x78,0xdf,0xe5,0xdd,0xa5,0x10,0xc3,0x2f,0xef,0xf5,0x35,0xca,0x2e,0x8a,0x02,0x43,0x4b,0x32,0x6e,0x01,0x58,0xbc,0x87,0x8e,0x88,0x48,},{0x33,0xd6,0xcc,0x05,0xa4,0x34,0xe4,0x19,0x28,0x0d,0x58,0x64,0xa1,0xaf,0x20,0x9a,0x2c,0x67,0x68,0x14,0xb7,0x0f,0x72,0xf8,0x14,0x1a,0xc7,0xe0,0x57,0x3e,0xe6,0x3e,},{0xf1,0xe4,0x45,0x14,0xd2,0xec,0xbc,0xc8,0xd1,0xa7,0xe8,0x4b,0xf5,0x84,0xce,0x73,0x18,0x35,0xe9,0x89,0x4f,0x88,0x97,0x4f,0x09,0x8d,0x45,0x6b,0x60,0x71,0x8f,0x57,0x5e,0xf4,0xd8,0x06,0x2f,0x21,0x82,0x50,0x42,0x50,0xcf,0x83,0xbb,0x2a,0xf2,0xa7,0x9b,0x1f,0x58,0xa6,0xa9,0x7b,0xd9,0x8d,0xa4,0x67,0x13,0x2d,0x7b,0xec,0x2f,0x05,},"\xe2\x76\xb1\x19\x12\xcc\xa5\xa8\x4b\xba\x65\x0c\x17\x2a\xef\x3a\x4d\x5f\x91\xac\x72\x29\x13\xbb\x89\x1a\x3a\xb0\x42\x4a\xb0\x7e\xa7\x09\xcb\x8b\xba\x3a\x3d\x11\xf8\x2f\x51\xc2\xaf\x01\x62\xa8\x2f\x72\x19\xce\x27\xb3\x5a\x30\x50\x7d\x53\x6a\x93\x08\x17\xe4\x0f\x85\xa2\x2a\x5a\x43\x2b\x94\xd1\x92\xc3\xc8\x91\x17\x77\xcf\xdb\x7f\xe9\x37\xa6\x75\x02\x77\x0d\x6d\x75\x75\x3d\x3a\xe8\x82\x29\xe0\x8f\x1e\xd2\x3b\x43\x28\xd8\x62\xac\x61\x86\x3c\x06\x3e\xa9\x84\x8f\x8a\xb9\x6a\x02\x13\xd7\xb9\x36\xc4\x8f\xe7\x54\x83\x6c\x98\x48\x78\x59\xd1\x99\xb3\xd9\x40\x39\x27\x16\xa1\xd5\x69\xe6\xc0\xcb\x1b\xa9\x18\x93\x2c\xf8\x85\x25\xe2\x56\xc8\xab\xb1\x1a\xaf\x0b\x45\x46\x55\xd5\xdb\x55\x71\x3c\xeb\xba\x28\x7a\xe2\x02\x65\x1a\xc8\x72\xbf\xc8\x0f\xea\xa7\xe0\x0d\x47\xc0\xbe\x38\xe6\x58\xf7\xc5"}, {{0x90,0x72,0x1c,0x43,0xbc,0x36,0x6f,0x24,0xbf,0x4e,0x8c,0x99,0x3e,0x13,0x80,0x24,0x68,0x2f,0x10,0x29,0xdb,0xa3,0x5a,0xbe,0xb0,0xd6,0x0c,0x7f,0xa7,0x10,0x02,0x1c,},{0x7c,0x63,0xa2,0xf1,0x3b,0x7b,0x22,0x0a,0x0b,0xb7,0x52,0xe3,0x80,0x07,0x53,0xb8,0xb6,0xb3,0x26,0x69,0x37,0x8c,0xe1,0x31,0xbb,0x77,0xa9,0xa8,0xd2,0x30,0xe9,0xae,},{0xd2,0x06,0x4a,0x6d,0x6c,0x99,0xc6,0xc3,0xf1,0x52,0xd2,0xd4,0x35,0xf2,0x4e,0x34,0xb5,0x45,0x9b,0x08,0x2e,0xf1,0x1e,0x94,0x4a,0x77,0xff,0x54,0xdd,0xf9,0x86,0x27,0x37,0xec,0xb2,0xac,0x8d,0x54,0x20,0x7d,0x36,0xc5,0x1a,0xd4,0x1f,0x36,0x49,0x0a,0x11,0x1b,0xa8,0x0e,0x12,0x6b,0xfe,0xcb,0x09,0xde,0xf6,0xac,0xcb,0xdf,0x88,0x0e,},"\x65\x1c\x96\x17\xca\xc9\x58\xc7\xed\xd4\xa5\xf3\xfe\xdf\xb8\x3d\xc9\x71\xab\xfb\xb6\x9a\x31\xe8\x98\xcc\xa8\x47\x2e\xf0\x68\x03\x4a\x6d\x23\x76\xee\x0e\x72\xd0\xa9\xbf\xee\x27\x57\x96\xc3\x79\x5a\xda\xc8\xeb\xe1\xd1\x2b\x66\xec\x26\x8f\x6b\x75\xfa\x39\x41\x15\x4f\x99\xe2\x23\xfa\xf2\xcb\xab\x5b\x92\xe2\xb3\xba\x7b\x79\xbe\x77\x00\xef\x9d\xba\x69\x25\x3c\xce\x53\x56\xb0\xc4\xe7\x47\x03\xcf\xca\xfd\xb5\x54\x68\x50\xb4\x62\x32\x67\x5c\x90\xc0\x2d\x5e\x42\x6d\x33\xd6\x0c\xeb\xf0\xc7\x93\x01\x82\x37\x9d\xbb\x00\x7f\x53\x61\x63\xc8\xdd\xbb\xd3\x15\x7b\xb2\xda\x62\x34\x01\x33\xf0\x0a\xe2\x68\x2e\xc6\xba\xa6\x41\x6b\x5a\x01\x52\x1c\xc1\x0e\x04\x69\x52\x95\xf2\xe5\xb9\x4c\x05\xf0\x03\x83\xff\xe9\x54\x83\x07\x97\xf6\xdf\x82\x31\x72\x53\x2f\x98\x16\x5f\xe3\x14\xab\x32\x59\x29\xaf\x83\x85"}, {{0x9c,0xec,0x24,0x67,0x58,0xe4,0x12,0xe7,0x37,0x8b,0x45,0x79,0xea,0xfe,0x9f,0xac,0x5a,0x25,0xd5,0x40,0x5f,0x92,0x70,0xb5,0xd7,0xe5,0x43,0x41,0x4e,0xc3,0xd5,0xda,},{0x97,0x5a,0x9e,0x6a,0x15,0x2c,0xae,0xbb,0x2f,0x9d,0xd0,0xde,0xb7,0x6d,0xd9,0x22,0xb6,0xdc,0x77,0x05,0x5d,0xda,0x03,0xfb,0xae,0x9e,0x7c,0x68,0x5d,0x07,0x3a,0xa1,},{0x9b,0xad,0x1e,0x3b,0x12,0x79,0xef,0x65,0x8f,0x4d,0x07,0x16,0x44,0xc6,0x3a,0xe2,0xb7,0xa7,0x80,0x35,0x7e,0x9d,0xc4,0x26,0xf1,0x65,0x0e,0xc0,0x63,0x4d,0xfc,0x52,0x0f,0x8e,0xda,0x9d,0xc8,0xf1,0x0a,0xa7,0x32,0x4c,0x59,0x42,0xd2,0x34,0x7f,0xf8,0x80,0x2b,0xd9,0x0e,0x95,0xfc,0xec,0x31,0x33,0x52,0xcd,0xae,0x64,0xf3,0x2a,0x04,},"\x17\xec\x9b\xd4\x7a\xdd\x6c\xcf\xbd\x78\x7a\xf0\xd9\x01\x3e\x9c\xc9\x79\xaa\xf8\x50\xe0\x94\x26\xd3\xb2\x8e\xdf\xd7\x12\x96\xeb\x31\xff\x8b\x21\xc5\xfe\x7b\xe0\x50\xf5\x36\x32\x4c\x3e\xc4\x88\x50\xe0\xb5\x08\xa3\x6b\xb4\xcb\x7e\x75\x4b\x32\x71\x83\xa1\xb3\x94\xd8\x8a\x79\x41\xd1\xce\x8d\xac\x62\xa5\xd8\x29\x18\x74\xd7\x84\x85\xe5\x1f\x29\xed\x05\x86\x5a\x20\x6e\x52\xec\xb1\x2c\x5d\x10\x7d\x4f\xf9\x6f\x25\xd3\xc5\xd1\x81\xd2\xc4\xba\x64\x63\x60\x0d\xb1\xcc\xa3\x28\x57\xfc\xf5\x97\xcb\xdf\xb2\xfd\xa2\x70\x8a\x8a\xba\x28\x1b\x43\xc3\xd2\x8c\x4a\x4e\x79\x83\x36\x15\x09\xf6\x1a\x10\x74\xe6\xf0\xad\x61\x01\xc7\xb5\x67\xee\x40\x78\xe9\x83\x9c\x47\xf4\x65\x31\xb7\x29\xff\x0e\xfe\xef\x7c\x9d\x1a\x8d\x83\x3d\x9c\x0f\x42\x81\x2a\x34\x18\x7c\x3a\x77\x8c\x16\x5c\x09\xd6\x45\x9c\x9c\x7c\xea\xa2"}, {{0xd1,0x40,0x3f,0x63,0x20,0x2e,0x08,0x05,0x25,0x84,0x3b,0xde,0x25,0x5e,0xeb,0x6b,0x67,0x83,0xc1,0xca,0xae,0x9d,0x6e,0xd0,0x0b,0xa6,0x08,0x05,0xbe,0xd1,0x94,0x1f,},{0x23,0x8a,0xea,0x3a,0xd6,0xd6,0xf2,0x77,0x83,0xe7,0x05,0x16,0xbb,0xfc,0xca,0x47,0x70,0x36,0x6b,0x50,0xed,0x0f,0xe6,0xa4,0xe9,0x66,0xb5,0x3a,0xf1,0x21,0xa7,0x21,},{0x8e,0x60,0xe7,0x3c,0x06,0x38,0x16,0x79,0x5e,0x29,0xf5,0xd6,0x4e,0xce,0x11,0x59,0xf1,0xb5,0xd5,0x02,0x1a,0x6f,0x8f,0x65,0x5e,0x26,0x1a,0x4d,0x00,0x26,0xf5,0xb9,0x4f,0xf2,0x92,0x32,0x50,0x49,0x9d,0x99,0x52,0x98,0x48,0x05,0x12,0xe4,0x12,0x62,0x76,0xaa,0x4a,0x22,0x6d,0x01,0x5a,0x95,0x82,0x7b,0x3c,0xe6,0x92,0xe2,0x33,0x02,},"\xc4\xf1\x7d\x44\x2f\xba\x4c\xa0\xdf\x8d\xc1\xd0\x62\x8d\x7d\x7f\x36\xb6\x0b\x57\x58\xd7\xc1\x3b\x80\xb8\xf9\x7a\x62\x12\x4d\x96\xa2\x3b\x27\x95\x65\x49\x5a\x8a\xcc\xab\x59\x97\x11\x5b\x13\xa4\xba\x22\x0a\x73\x95\x7e\xb7\x93\x05\x20\xac\xbb\xfb\x6f\x54\xcf\x68\x72\x6b\x64\x50\xc6\xff\xa9\x47\x0b\x05\x5e\xa2\x62\x91\x4e\x2b\xc6\x12\x63\x3f\x1a\xc3\xd0\x61\x8a\x23\xdf\xf1\x88\xa7\x33\xd7\x6b\xcb\xcc\x46\x0f\x52\xab\x61\xe1\x99\x38\xf9\xc8\xca\xaa\x79\x2c\x20\x8d\x1f\x6c\x75\x47\x28\x90\x5f\xda\x51\xd8\x81\xa3\x47\xa5\x3d\xa7\x44\xd3\xba\xad\xc0\xa7\x6c\x47\x4c\x55\x86\x80\x26\x90\x95\xf9\x08\x4a\x74\x47\x1d\x5c\x09\xff\xc2\x91\x41\xb5\xbf\xaf\x49\x54\xdf\xac\xbc\xa6\x63\xd0\x37\xb1\x7e\xbf\x95\x59\x88\x22\x33\xe5\xca\x5a\x8b\xf7\x5c\xca\x4f\xc9\xc5\xa4\x10\x9f\x32\xe1\x45\xf3\x85\x3b\x17"}, {{0xbd,0xf6,0xbd,0xc3,0x1a,0xb0,0xb5,0x31,0x37,0x84,0x48,0x3a,0xbe,0xca,0x6e,0xa5,0xe9,0xcd,0xc6,0x8f,0x81,0xb2,0x1f,0x35,0x0d,0x09,0xc3,0x90,0x7b,0xb9,0xb6,0xa1,},{0x03,0x62,0x77,0x12,0xb7,0x55,0xe5,0x06,0x9f,0xb9,0xab,0x8f,0x9e,0x89,0x97,0x24,0x02,0x9a,0x7f,0x26,0x8a,0xf9,0x39,0x88,0x21,0xee,0xec,0x93,0x60,0xc9,0x28,0x5b,},{0x38,0xfa,0xc6,0x03,0xed,0x24,0x6f,0x83,0x3f,0x1c,0x0f,0xd4,0x58,0x56,0x98,0xb0,0xa7,0x13,0x05,0xef,0xf0,0xd1,0x4a,0x00,0x49,0xb3,0xce,0xf0,0x73,0xbd,0x03,0x6d,0xd4,0x51,0xb3,0xda,0xba,0xda,0xae,0xae,0xa2,0xae,0xaf,0x83,0xd3,0x95,0x74,0x6f,0x4e,0x86,0x86,0x6a,0xda,0x97,0x1c,0xbe,0x48,0x2e,0xdb,0x04,0x19,0x33,0x2f,0x0e,},"\x90\xa6\x6a\xaf\xa5\x64\x2a\x98\xe7\x9f\x0d\x88\x14\x70\x80\x16\x7b\x11\xe4\x46\x65\x18\xf1\x95\xcd\xdd\x89\x40\xd1\x2e\xe4\x91\x8d\x31\xa6\xd4\xcb\x77\xd0\xbf\x5a\xf2\x99\x83\xbb\xe5\x08\x56\x10\xa7\x9d\xaf\x0c\x75\xa7\x8c\xcb\xcf\xfb\xbd\xab\x21\x89\xc3\x94\xae\x24\xe2\x65\xbd\x8c\x55\xfd\x3f\x40\x98\xe1\xb1\x75\x57\x75\x49\x51\x8e\x7a\x4d\xcf\x74\x52\x08\x6d\xd1\x27\x8d\xd5\x8e\xa4\xc0\xaa\x69\x0e\x91\x79\x51\xef\x39\xfc\xff\x60\xcb\xfa\x1e\x90\x91\x0b\xab\x53\x74\x92\x8d\x47\x22\xf7\x02\xbf\x5a\xd6\x02\x8f\xfd\xa6\x54\x1f\xa5\xba\x1a\x37\x79\xec\x78\xb0\xa9\x5f\xe3\x85\x0c\x74\x8b\x6c\x8f\x42\xf3\x30\xec\x79\x54\x1a\x52\xa1\xcf\x57\xdb\x72\xdf\x4f\x92\xce\x7f\x74\x8a\xee\xf1\xaf\x33\xbc\x5a\xe0\xa8\x2c\x89\xdf\xf2\x16\xf2\x3a\xec\x16\x8a\x7d\xbb\x51\x0a\xa6\x32\xda\xab\xcc\x97\x1b\x3f"}, {{0x57,0xb3,0xb1,0x4a,0xce,0x1c,0xd0,0xcd,0x60,0x3e,0x63,0x28,0xbd,0x21,0x9e,0xe7,0xd9,0xd0,0x94,0x48,0x7f,0xa6,0x68,0xf2,0x8a,0xee,0xc0,0x2b,0x43,0xc9,0x09,0xa7,},{0x24,0xe6,0xb6,0x39,0x5f,0x97,0xea,0x0e,0x23,0x71,0x86,0xd4,0x69,0xb7,0x19,0x23,0xd2,0x11,0x3a,0xdf,0x40,0x3b,0xee,0xeb,0x4a,0x2d,0x27,0x90,0x9a,0xaf,0x3e,0xda,},{0xfc,0x79,0xfd,0xc6,0xd0,0x90,0x88,0x7a,0x61,0xe4,0x3c,0x6b,0x91,0x87,0xb6,0x57,0xd2,0xe4,0xd9,0xcb,0xaf,0xd6,0xe7,0xca,0xeb,0x7e,0xbd,0xea,0x84,0x28,0x25,0xb7,0x8f,0xb9,0x49,0xd2,0xc4,0x9a,0x0c,0xf3,0x8b,0x6c,0x73,0x29,0x6d,0x82,0xc8,0xdd,0xeb,0x1f,0xe2,0xd4,0x0a,0xad,0xdd,0x79,0x64,0xda,0x68,0xac,0xf8,0xc6,0x6f,0x0e,},"\xb2\xe0\xde\xdd\x80\x2e\xed\x99\x6d\xbd\x58\x36\xbf\x86\x88\xb0\xd1\x20\x1b\xf5\x44\x2f\xf9\xbb\xd3\x51\xae\xef\xe1\xa0\xc2\x1f\xea\x2b\x5c\x9f\xe5\xed\xee\x47\xe9\x21\x09\x9b\x05\xae\xda\xa8\x03\x67\xc1\xce\x08\x82\x1d\x78\x3a\x5b\x64\xcf\x05\x9c\x0f\x43\x35\x08\x39\x86\xa5\xa6\xec\xff\x8c\x84\xfd\x40\xe0\xba\x5d\xd5\xe5\xd2\xf0\x11\x12\xa8\x4c\xe5\xcf\x8e\x0d\xb7\x8b\xeb\x18\x2d\x91\x39\xc0\xb0\xf3\xe0\x06\x0a\x3f\xa7\x38\x69\xe9\x64\x23\xf1\x70\xdf\x9a\xf1\xcb\x9c\x35\x56\x6d\x87\xdf\xf5\x42\x22\x3f\x6d\x43\x9b\xdb\x54\x72\x9d\x36\x6a\xff\x63\x7b\x0f\x36\xa5\xd1\x4b\x15\xd6\x12\xbd\x03\x07\x6c\xc4\xd0\x4c\x1f\x25\xb3\xba\x84\xe0\xd1\xfe\x47\x4e\x57\x18\xd1\xa1\x7d\x5a\x48\x84\x65\x66\x2e\xe4\xc3\xf6\x64\xb4\xc9\x27\x4b\x64\x9d\x78\xce\xa4\xe8\x52\x43\xf3\x71\x32\x39\x04\x8a\x90\x8c\xe3\xe1"}, {{0x01,0x8a,0x2c,0x3d,0xee,0xa5,0x0a,0xb5,0x06,0x75,0x1f,0x9c,0x2a,0xda,0xad,0xfd,0x9e,0x21,0x92,0x12,0x16,0x09,0x93,0x16,0x84,0xeb,0x26,0x5e,0x19,0x3e,0x7f,0x89,},{0xaf,0x41,0x0b,0xdd,0xde,0xfc,0x64,0x4e,0xf1,0x2c,0x98,0x99,0xff,0x71,0xb9,0xe1,0xd0,0xdf,0xa3,0xd6,0x9d,0x8c,0x2c,0xd6,0x76,0xc1,0x91,0x6b,0x34,0x59,0x1c,0xfd,},{0x7a,0x44,0xe6,0xa3,0x19,0x32,0xde,0xe6,0xdc,0x2d,0x83,0x94,0xe2,0x9a,0x65,0x51,0xd1,0x3e,0x6c,0x6f,0xfd,0xfa,0x21,0x8f,0xa5,0xb9,0x98,0x66,0x8d,0x84,0x39,0xdb,0x5e,0x05,0x37,0x9f,0xbf,0xa0,0xda,0x5b,0x56,0x3e,0xd9,0x66,0x43,0x5a,0xe2,0xc5,0x4e,0x3a,0xd1,0x6e,0x1a,0x9f,0xca,0x1f,0x5a,0x15,0x7a,0x08,0x07,0x04,0xab,0x03,},"\xcf\x78\x13\xef\xac\x12\xad\x1c\x7c\x73\x22\xcc\xbe\x54\xaa\x0e\x9a\x8b\xa4\xfd\x43\x45\xb0\x6e\x4c\xe7\xa3\x5c\x8b\x1c\xd5\xe3\xf7\xf0\x68\x85\x33\x84\x9b\xa2\xcf\x4c\x75\xb6\xf2\x09\x26\xa1\x19\x4a\x72\xdf\x0e\x1b\x1b\x34\x45\x6a\x21\x33\x11\x2d\x00\x67\x22\xfe\x81\x1d\x5e\x40\xc4\x12\x11\x59\xde\xd8\x89\x90\xc0\xac\x2b\xfd\x34\xf3\x5a\xf4\xf0\x7c\xc4\x02\xe9\xa3\x81\xa6\x75\xd0\x3f\xec\x7e\xc4\x38\xc4\xad\x9d\x92\x9a\xec\x8f\x24\x2d\xef\x02\x3c\x99\x3c\x9e\x8b\xa1\x8c\x74\x28\xe8\x8f\xde\x68\xa4\x71\x1e\x50\x6d\x79\x69\xf6\x3c\x8e\x0b\xc8\x3f\xf0\xde\x4e\x13\x36\x10\x6c\x05\xe0\x9d\x59\x22\x40\x0e\x8a\x81\xbf\x54\x88\x56\x67\x89\x97\x85\x88\x2b\x70\xf2\x0d\xd8\xfb\x1e\x75\xf5\x85\x5b\x76\x5a\x25\x6d\xa4\x34\x1b\xf2\x3e\xa0\xff\xa1\x8a\xad\xda\x38\x18\x16\x94\x60\x01\x04\x56\x69\xc8\xd0\x4d\xf0"}, {{0xbe,0xa4,0x45,0xe9,0xb6,0xd3,0xf2,0x12,0x35,0x91,0x2c,0xd6,0xc4,0x2e,0xc0,0x57,0x72,0x97,0xca,0x20,0xa1,0x03,0x57,0x88,0x0c,0x2b,0x84,0x6d,0xd8,0xe2,0xcc,0x77,},{0x02,0x41,0x74,0x96,0x62,0x21,0x69,0x9e,0xa4,0xb0,0xa3,0x7e,0x51,0x7f,0xf9,0xb1,0x65,0x98,0xae,0x4d,0x4e,0x83,0xbf,0xa3,0xca,0x50,0xbc,0x61,0x68,0x41,0xf5,0x95,},{0x69,0x64,0xb9,0xc5,0x90,0x3e,0x74,0xe9,0x93,0x28,0xac,0xef,0x03,0x65,0x58,0xee,0xcd,0x33,0x69,0x15,0x0a,0x52,0xe2,0xcb,0xad,0x4b,0xbb,0x97,0xd4,0x61,0xb3,0xdf,0xc6,0xb3,0xe8,0x45,0x58,0x13,0xa4,0xf4,0xbd,0xca,0x46,0x30,0x2e,0x02,0xe6,0x83,0xec,0xea,0x18,0x20,0x17,0x1c,0x53,0x8e,0x54,0xc3,0xde,0x6c,0x95,0x4a,0xa4,0x07,},"\x47\x43\xc7\xc0\x99\xab\x81\x59\x27\xb3\x67\x4d\x00\x54\xb6\xde\x59\xaf\x28\x11\xab\xc2\xcf\x7f\xde\x08\xf6\x29\x29\x18\x5a\xdc\x23\x8f\xad\xd5\xe7\x5a\xe3\xba\x00\x36\xff\x56\x5a\x79\x40\x5b\x42\x4f\x65\x52\x33\x1e\x27\x89\xd9\x70\x9a\xc1\xec\xbd\x83\x9a\xa1\xe9\x1c\x85\x48\x17\x59\x79\x58\xcc\x4b\xd9\x1d\x07\x37\x75\x07\xc2\xc8\xd3\xc0\x06\xcf\xeb\x6c\x0a\x6c\x5a\x50\xee\xe1\x15\xe2\x11\x53\xdd\x19\x8e\xa0\xa3\xaf\xf6\x2b\x70\x75\xd5\xa4\x61\x78\x87\x83\xf0\x50\xe6\x59\xc5\x72\x96\x3d\x7a\x59\xe5\xaf\xaa\x2b\x9c\x50\x1f\x43\xc6\xac\x08\xab\x47\x97\xc4\x56\x6d\x22\xb9\x3c\xdf\x65\xa9\x9a\x2a\x1d\x63\x8e\x79\xf7\x2b\x5f\x46\x31\xfe\x5e\x9e\x5f\x96\x8f\x6d\xb7\xa1\x88\x0d\xf5\x1d\x8f\xeb\xc1\x49\x42\x67\x2f\x8e\xa6\xfc\x3a\x72\x81\x4a\x44\xd6\x6d\x14\x84\x20\xa6\x90\x00\xf6\x8c\x33\x0d\xe5\xb8\x0f\xc6"}, {{0x64,0x47,0x54,0x0e,0xd7,0xbe,0x0a,0x11,0xc2,0xa8,0xde,0x79,0x3d,0x83,0xc6,0xe2,0x44,0x98,0x3d,0xb1,0x8d,0x78,0xec,0x9d,0x75,0xf1,0x72,0x9c,0x92,0xe0,0xfd,0xf1,},{0x39,0x12,0x12,0xc8,0xed,0xc4,0xd3,0x34,0xa5,0xbe,0xc8,0x60,0xef,0x0f,0x5e,0xbb,0x5e,0xc4,0x4e,0x8b,0xb5,0x1c,0x0f,0x67,0x41,0x99,0x89,0x59,0xb2,0xb3,0x79,0xfc,},{0x3a,0xb5,0xf8,0x8e,0x2f,0x72,0x76,0xb5,0xb6,0x58,0x3d,0xff,0xba,0x56,0x39,0x99,0x3a,0x90,0x5d,0xbf,0x9b,0x88,0xce,0xea,0xaa,0xae,0x33,0x35,0x80,0x0e,0x4a,0x5f,0x10,0xf8,0x3d,0xa6,0xd6,0x22,0x5a,0x8d,0xbe,0x99,0xae,0x80,0x07,0x50,0x09,0xdd,0x50,0x87,0x86,0xb3,0x97,0x51,0x13,0xdb,0x47,0x8e,0x14,0xba,0x10,0x1b,0xee,0x0f,},"\xa4\x38\x1c\x76\x38\xc4\x87\x99\xe9\xb5\xc4\x3f\x67\xfc\x3a\xa3\xcb\xb5\xec\x42\x34\xf3\x7e\x70\xcc\xcc\xce\xd1\x62\x7a\x57\x68\x3d\x1e\x53\xf4\xe0\x88\x3d\x8b\x46\x2b\xf8\x3f\x13\x08\x63\x03\x68\xc8\x9b\x49\x15\x33\xdd\xb8\xc9\xa5\xb9\xe8\x15\x50\x02\xfd\xd5\x81\xa9\xa5\xbe\x0e\x43\x0b\x90\x86\xa6\xbe\xac\x47\x20\x21\x0f\x87\xb1\x4e\x86\x2d\x97\xe5\xcc\x69\x28\x67\x86\xa7\x58\x67\x23\xf2\x31\xef\x0e\x3e\x1b\x93\x2d\xbb\xa3\xa1\x8a\x0c\xb2\x21\xcb\x07\xf8\x0e\x6a\x8e\x13\x00\x05\x6c\x13\xe7\x02\xb2\x3b\xfb\x32\x50\xec\x7c\xc8\x64\xd5\xc7\xec\x57\x86\x24\x07\x09\xc5\x60\x24\xea\x6b\xe5\xf7\xb1\x5a\x4f\xa5\x55\x5e\x39\xa7\x44\xa1\xdc\x55\x7d\xf5\xb9\x48\xdb\x22\x0b\x3d\x57\x45\x74\x66\x91\xda\xcb\x44\x21\x64\x1c\xdc\xc1\x2e\x7e\xc0\x45\x02\x93\xf1\x9e\xc5\x7b\x09\xcf\xf1\x35\x84\x7a\xab\xe4\x46\xa6\x13\x32"}, {{0x0c,0x58,0x7a,0x81,0x1a,0xdd,0x88,0xb9,0x94,0x45,0x8c,0x3c,0x80,0x8a,0xc4,0xe3,0xa8,0x3a,0xfa,0xb2,0x6d,0x4c,0xff,0x5c,0x96,0x1b,0x9d,0xf0,0xb5,0xc8,0x33,0x44,},{0x06,0x78,0x3b,0x0c,0xdc,0xc5,0x02,0x8c,0x56,0x38,0xbd,0x74,0x8f,0x0b,0xc7,0x6f,0x7e,0x94,0xd1,0xaa,0x20,0x15,0xca,0x94,0x87,0x38,0xa3,0x50,0x04,0x60,0xac,0xa0,},{0x33,0xb4,0xf4,0x27,0x4f,0x20,0x00,0x8a,0x72,0x1d,0x1e,0x8d,0x05,0x4a,0x2b,0x4e,0x95,0x32,0x7e,0x38,0xbb,0x07,0xb3,0x3c,0x4b,0xee,0x7e,0x1c,0xe0,0x20,0xa4,0x42,0xfb,0x26,0x27,0xed,0xa3,0xb7,0xac,0x93,0xcd,0x3a,0xb0,0xb1,0x2b,0x99,0x93,0x5a,0x1a,0x92,0x33,0x11,0x16,0x04,0xda,0x4a,0xcf,0xfb,0x53,0x15,0xb9,0x07,0x12,0x0b,},"\xf5\x6d\xc6\xb7\x60\x76\x32\x5b\x21\x26\xed\x11\xd1\xf0\x9d\xec\xef\x9d\x15\xc3\x1d\x0e\x90\xcd\xb1\xa2\x7e\x08\x9c\xc5\x63\x29\xf6\xec\x3f\x66\x5e\xb6\x73\x9e\xc5\x67\x8b\x3f\x37\xee\x1f\xb3\x7d\xeb\x9e\x24\x00\x92\xb7\xa8\x8f\xd2\x55\x25\xac\xd5\x5e\x29\x4e\xb1\x04\x6f\x9b\x1b\x69\xa8\x47\xeb\x9c\xeb\x7b\x15\x93\xb9\xf6\x97\x8e\xf6\x18\xc1\x5d\xe4\xe0\x59\xec\xc3\xbf\xda\x32\x97\xa1\x9c\x2d\xf2\x02\xad\xf7\x21\x55\xcf\x21\xea\xbd\x03\x94\x8d\xf1\x51\x98\xe8\xa6\x8b\x08\x84\xf9\x3a\xd5\xe3\x6e\xb0\x98\x3c\xca\x30\xe4\x5a\x8b\x4b\x5f\xb8\x13\x6f\xde\xa8\xa3\x34\x1d\xd7\x87\x75\x40\xa5\x57\xde\xbf\x75\x30\xcc\x33\xae\xee\xf6\x27\x1c\x3f\x0a\xf6\xd0\x97\x87\xe8\x15\xf2\xf1\xdd\x25\xce\x4d\x2f\xd0\x9f\xfa\x9f\x53\x08\x1b\x46\x9c\x50\x0d\xa4\xd4\x41\x80\xc0\x4e\xb1\x86\x93\x29\xcb\xf2\xd8\x23\x18\x7e\x83\x1c\x24"}, {{0x66,0xcf,0x40,0x1a,0x21,0x42,0xfc,0xf4,0xa8,0x01,0x80,0x46,0xcf,0x41,0x40,0xbc,0xa1,0x8d,0x76,0xef,0x62,0x66,0xe7,0xa0,0x24,0x75,0x7d,0xf1,0x72,0xa5,0xd6,0x53,},{0x67,0xd4,0x8d,0xfd,0x23,0x74,0x3c,0xc2,0xca,0x40,0xe4,0xdf,0xd6,0xb8,0xcc,0x5d,0x84,0xbe,0x82,0xdd,0x2b,0x11,0x20,0xcc,0x47,0x6e,0x6a,0xf6,0xf2,0x5e,0xcc,0x98,},{0xd6,0xb0,0xe8,0x0e,0x60,0xbc,0x1b,0x29,0xab,0x8f,0x74,0x80,0x8f,0xc4,0x60,0x84,0x77,0x95,0xcc,0xb8,0x87,0xba,0xc0,0xec,0xaa,0x8e,0x13,0x52,0x97,0xa8,0x50,0x97,0x71,0x2b,0x24,0xb0,0xa1,0xfb,0xaf,0x7a,0x67,0xc5,0xd5,0x30,0xa4,0x7d,0x06,0x43,0xfc,0x87,0x02,0xc0,0x59,0xd2,0x15,0xfb,0x11,0x2d,0xbe,0x47,0x5e,0x5b,0xca,0x0d,},"\xda\xa8\xef\xb3\xfd\x41\xf1\x2f\xbc\x55\xbd\x60\x46\x41\x57\xa2\x6d\x71\x86\x32\xd8\x82\xae\xdb\x6b\xf9\x8e\x47\xdd\x23\x37\x87\x9e\x0b\x46\x45\x2e\x06\x2e\x6d\xfb\xff\x3e\x7b\xca\x72\x89\xe4\xef\x6b\x3f\x41\xd4\xb0\x3b\xdc\x2c\x84\x2a\xfe\x97\xf3\x02\x98\x83\xed\x45\xf6\x05\x4d\xde\x96\x90\x64\x9a\xbb\x2b\x8d\xc2\x8f\x5f\xe8\xce\xcf\x80\xfc\x1e\xa4\x11\xbf\xc4\x0b\xbf\x4f\xd2\x0b\x21\x8c\xf4\x7e\xa8\xee\x11\x8d\x4d\x5a\xef\xa5\xc1\xbf\xa0\x8a\x8f\xb1\xb3\x0d\x6d\xe0\x97\x7c\xd1\x5e\x50\x29\x2c\x50\x1f\x2e\x71\xce\x27\x40\xff\x82\x8b\x84\x32\xda\x5a\x59\x4b\xab\x52\x23\x76\x0b\x64\x79\x2e\xd3\xa6\x9d\xd7\x5e\x28\x29\x23\x49\x43\x65\x65\x13\xdf\x1a\x17\xa2\xa0\x67\xa9\xa8\xea\xa6\x4e\x19\x56\x9f\x46\x93\x9d\x34\xb9\x92\x71\xae\x50\xa4\x7d\x7d\xbc\xa3\x62\x0c\x81\x25\x5b\x0e\x1f\xd1\xf3\xce\xc8\x51\xf1\xb1\x1b\x35"}, {{0x5d,0xbf,0x88,0x5a,0xa5,0x98,0xe8,0x95,0x57,0x1f,0x5f,0x65,0x09,0x0b,0x72,0x32,0x3e,0x9d,0x70,0xb0,0xf5,0x81,0x10,0x68,0x7a,0xfb,0xbc,0x38,0x3a,0xfe,0xdc,0xac,},{0xfa,0x17,0xeb,0xa7,0x6e,0x3b,0xc3,0xea,0x6d,0xab,0x3a,0x5b,0x12,0x0d,0xc5,0xec,0xb9,0xae,0x6f,0x00,0x13,0x8f,0x7d,0x36,0xdd,0xa9,0x26,0x8b,0xc4,0x72,0x21,0x74,},{0xe1,0x42,0x9d,0xab,0x2e,0x42,0xcd,0x03,0x5b,0x7f,0xc6,0x02,0xef,0xd6,0xba,0xf9,0x47,0x06,0xf1,0x6e,0xaf,0x2f,0x8b,0x5f,0xed,0x32,0x92,0x39,0xe8,0x75,0x60,0x5f,0xb1,0x72,0xf5,0xdd,0x9a,0xe2,0xbc,0x2e,0xb4,0x2e,0xb4,0x74,0x56,0x7e,0x29,0x2f,0x52,0x06,0xe8,0x2e,0x69,0x4b,0xca,0x0d,0x6d,0x43,0x3b,0x86,0x76,0x34,0xcb,0x0d,},"\x1e\x0b\x6c\xf1\x5c\xe0\x33\x37\x17\x9c\x02\xd6\x54\x08\xdf\x5b\xe9\x20\x0c\x37\x82\xb6\x00\x4a\xf9\x4e\xa4\xde\xcb\x25\x79\x99\xd6\xfd\xff\x30\x1d\x11\xd0\x0c\x98\xc3\x72\xfa\xc0\xd0\x26\xcb\x56\xdf\xef\xe3\xde\xf7\xeb\x99\xac\x68\xd6\x96\x8e\x17\x12\x4d\x84\x46\xf5\x3e\x8d\x2d\x3d\xd8\x90\xd3\x7a\x23\xc7\xe0\xb8\x3a\x48\x4b\x3c\x93\xbd\xdf\x6c\x11\x8e\x02\x81\x95\x9d\x27\xbd\x87\xd3\x7e\x84\x3d\x57\x85\xf4\xa4\x07\x71\x39\x84\x94\xe6\xc4\x32\x2f\xbb\x67\x5c\x1d\x47\x93\x21\x03\x21\x48\xf7\xfe\x52\x56\x4d\xdf\x7a\xe7\xac\x26\x9d\x0c\xd2\xe5\x52\xfe\xc5\x89\xae\xae\x0f\xb9\x3f\xe3\xee\xae\xf0\x85\x60\x96\xcf\x4f\x6b\x34\x97\xe7\x23\x5c\xc8\x49\x4d\x81\x0a\x0b\x46\xc5\xea\xc8\x7f\x18\x7e\x50\x5b\xb7\x76\x4f\x80\x45\xc9\x54\x19\x83\xf7\xb0\x25\x69\x80\x09\xa2\x3d\x9d\xf0\xbd\x1a\x47\x3c\xbe\xe4\xcf\x5e\x94\x88\xec\xbc"}, {{0x84,0xb3,0xae,0xdd,0x47,0x97,0xa5,0x65,0xc3,0x51,0xde,0x7d,0xfa,0x07,0x00,0xb9,0xff,0x7c,0x4d,0x72,0x91,0xc8,0x80,0x8d,0x8a,0x8a,0xe5,0x05,0xcd,0xd2,0x25,0x90,},{0xd7,0xad,0x72,0xca,0xa7,0xc2,0x22,0x09,0xec,0x46,0x78,0xd1,0x1d,0x55,0x90,0xa6,0xcb,0x28,0xa0,0x71,0x17,0xfe,0x5a,0xef,0x57,0xb5,0x07,0x51,0x58,0x32,0x01,0xa5,},{0x92,0x20,0xf0,0xed,0xaa,0xae,0xe1,0xb8,0x76,0x35,0x0d,0xbe,0x92,0x66,0x06,0x17,0x67,0xb8,0x62,0x96,0xc3,0x51,0xd4,0xca,0xc9,0x9d,0x07,0xcd,0x61,0x2c,0x6e,0xfb,0x24,0xf8,0xf9,0xb0,0xb9,0x75,0xf9,0x5c,0x42,0xc5,0xb6,0xaf,0xed,0xc8,0x92,0xf8,0x7e,0xfe,0xdd,0x39,0xd5,0x16,0x02,0x94,0xc2,0x76,0x58,0xbd,0xcf,0x42,0x85,0x0b,},"\x53\x25\x67\xff\xa5\x3b\x5c\x0f\xcd\x29\xc3\x94\x99\xd2\xe7\x8e\xcd\x20\xe6\x31\x23\x49\x92\x40\xe7\x75\x08\x8b\x39\x4d\xc6\x5c\x8b\xaa\xa0\xfe\x8f\x6a\xa7\xe7\x01\x81\xf9\xe1\x0a\xdd\x8b\x4a\x8b\xeb\x0b\x2e\xc3\x8a\x43\x30\x9f\x10\x0c\xd4\xbe\x91\xc6\xf4\x8e\x79\xdc\x0a\xee\x93\xa1\x5c\x94\x03\x77\x3b\x35\x4a\x8d\x42\xed\x48\xd8\xf2\x76\x23\x0f\xa6\xde\x5a\xda\x50\x1e\xe0\xa6\x53\xb4\x45\x8f\x0e\xcf\x6d\x5b\x3c\x33\xe2\x14\x1c\x66\x2f\x6e\xa0\x55\xf7\x41\xe5\x45\x86\x91\x7d\x2e\x0c\x4e\xb2\xb5\x66\x21\xf9\x66\x5f\xef\x32\x46\xf0\xbd\x80\x0b\x53\x3e\x3b\xc6\x15\xc4\x02\x1f\x8d\x0e\x2a\xd2\x33\xa1\x1e\x77\x36\xc4\x93\xac\xc3\x1f\xae\xe7\x6a\x09\x7d\xc4\x0d\xb9\xef\xc2\x24\x46\xea\xcf\x1c\xc1\x8f\x51\xfd\x10\x23\x6a\x2f\x94\x2d\x0a\x53\xc3\xce\x20\x91\x08\xb5\x93\x8c\x0a\x9e\x53\x6b\x89\xef\x0a\xd6\xb4\x05\xa1\x0f\x22\xc3"}, {{0x69,0x50,0xbf,0xcf,0x48,0x0b,0x98,0xea,0x18,0xa2,0xd5,0xae,0x5b,0xa6,0xe7,0x66,0x8f,0x4c,0x28,0x3f,0xf2,0x71,0x13,0x57,0x74,0x0f,0xfe,0x32,0xcf,0x25,0x81,0x9a,},{0x8e,0x4c,0x6f,0x23,0x3f,0x7b,0x86,0x32,0x1c,0x9d,0x67,0x99,0xba,0xc2,0x8a,0xaf,0xcd,0x25,0x03,0xd7,0xaa,0x0a,0x7b,0xde,0xd8,0x72,0x27,0x27,0xfb,0xbc,0xae,0xb8,},{0x94,0xde,0x5d,0xf7,0xa2,0x5e,0xcd,0x70,0x20,0x5d,0x40,0xbc,0x94,0x99,0xfc,0x7c,0xd7,0x13,0x65,0x68,0x06,0x0a,0x41,0x9a,0x93,0xbe,0x6e,0x31,0x86,0x64,0xbb,0x6d,0xfc,0xe6,0x0e,0x2d,0x4e,0x63,0x3f,0x7e,0xc1,0x48,0xfe,0x4f,0x83,0x4e,0xd2,0x77,0xc1,0xfe,0xc4,0xc4,0xe2,0xa8,0x6f,0x44,0xc4,0x58,0x9c,0x81,0x78,0x88,0xdb,0x00,},"\xa4\x01\xb9\x22\xab\xa5\x7e\xe0\xc6\xac\x1c\x8f\x1b\x48\x29\x6a\x85\x62\xee\xf1\x37\x52\x68\x93\x88\x6a\x08\x30\x6e\x22\x03\x66\x77\x88\x61\x8b\x93\x98\x64\x46\x7a\x31\xf1\x6e\xdc\xe1\x52\xa4\x2c\x25\x54\x6b\x64\x0e\xa8\xbe\xd1\x89\xa4\xf8\x98\x86\xa3\x7f\x10\x69\x11\xea\xe1\xf5\x00\x81\xbf\x79\x5e\x70\xc6\x50\x44\x37\xd2\xa8\x0c\xb8\x39\x47\x9e\xcb\xb8\x7c\x12\x9b\xcc\x5f\xe3\x1d\x71\x6e\xf9\x78\xc2\x06\xd7\xf0\x8a\x79\x34\x66\x59\x4f\x4d\x75\xe2\x15\xbb\x63\x74\x59\x6f\x8e\x7d\x00\xee\xa7\x24\x78\x09\x43\xe8\x9b\xd3\x86\x3c\x95\x1b\xbd\x24\xef\xee\x23\xc9\x7c\x2c\x79\x7c\x7f\xaf\xbf\x8f\x2c\x8b\x43\xf3\x7a\x5f\x88\x11\x29\xa0\x95\x73\xfa\x7a\x03\x4a\x28\x5e\x80\xdc\x4b\xa4\xbc\x95\x64\xa4\xdc\xed\xeb\x33\x16\x7e\x0b\x30\xc5\xa0\x0b\x9a\x10\x9a\x22\x31\xcf\xa0\x01\x2b\x29\xb2\xb3\x45\x0b\x89\x2e\xcc\xef\x08\x08\xe5\x03\xf8"}, {{0x61,0xb2,0x60,0xf5,0xb8,0x48,0xb2,0x71,0xef,0x48,0xe5,0xa5,0x6d,0x29,0x74,0x32,0xd8,0x9f,0x2a,0xb8,0x5b,0xd5,0x38,0xfa,0x66,0x88,0x70,0xd0,0x56,0x02,0x20,0xe5,},{0x60,0x86,0xfe,0x87,0x35,0xf3,0x99,0xf1,0xaf,0x2e,0x39,0x5e,0x0f,0xdf,0xb5,0x62,0x9e,0xbc,0xb0,0x4b,0x6e,0xd4,0xa5,0x4a,0x9e,0x47,0x05,0x2c,0x6e,0x81,0x91,0xd4,},{0x98,0x28,0xfe,0xc8,0xff,0x5c,0xf8,0x5a,0x98,0xf4,0x50,0x77,0x0b,0x5b,0xdb,0x4b,0x80,0xda,0xca,0x44,0x37,0x9d,0x8f,0x53,0xc9,0x1c,0x34,0x8e,0x22,0xdf,0x64,0xac,0x48,0xf2,0xb6,0xe2,0xa7,0xb3,0xb6,0x42,0xbc,0x81,0x93,0xa1,0x94,0x31,0x62,0x29,0xe6,0x94,0x47,0xed,0x24,0x1c,0xd4,0x23,0xd8,0x3b,0x6f,0xe7,0xb2,0xd4,0x4b,0x00,},"\x28\x26\x29\x5d\x79\x94\x5f\x67\x54\x76\xbc\x4d\x45\xef\x80\x0d\x80\xb1\xf0\x39\x8e\x4b\xe6\x0e\x3d\xe4\x57\x1e\xd1\x08\xdf\x98\x9f\x03\x2d\xe6\xc2\x34\x5d\x99\x48\xd6\x77\x92\x7e\xa0\xb8\xcf\x1a\x5c\xa3\x6f\xd5\xf2\x3c\x25\xdc\x0d\x2a\xb5\xbd\x56\x5a\x54\xaf\x46\xfd\x97\xd3\x38\xd7\x70\xe3\xa7\xb4\x7e\xfb\x54\xc0\x7a\x16\x64\x70\x77\x71\xeb\x4e\x37\xd9\xd7\x0b\xa7\x79\x25\x1d\xcd\xcd\x3b\xf6\xd1\x24\x8a\xde\xc5\x3f\x78\x72\x59\xc4\xd5\x94\xd5\xfd\x4c\xed\x8e\x3d\xb7\x62\x1d\x49\x65\xd4\x82\x98\x17\x81\x24\x93\x1a\x3d\x0c\xd2\x69\xb2\xd5\x3b\x7c\xd2\x61\xb9\x6d\x37\x0c\x5d\x96\x93\xc8\xad\x13\x3e\xd5\x89\x45\xee\x35\x40\xe1\x06\x25\xd9\x24\xae\xba\x9b\xda\xfc\x65\x61\x00\xaa\xb2\x76\xfa\x99\x6b\x1d\xb4\x77\xbf\x85\xea\x55\x90\x81\xd5\xb4\xc7\x30\x7d\xc1\x59\x56\x54\xac\xa8\x2f\x7b\x6d\x2d\xda\xf7\x35\x7c\x15\xa4\xd7\xd8\xb9\x08"}, {{0x93,0x6d,0xc1,0xce,0xf6,0xa3,0x10,0x74,0x7f,0x35,0x00,0x88,0x05,0x5a,0x39,0xaa,0x76,0x2d,0x9a,0x4b,0x52,0xc8,0xc8,0xe4,0xc6,0x82,0x79,0x43,0x80,0xc2,0x72,0x5c,},{0x03,0xb3,0x18,0x00,0x41,0x2d,0xf4,0xd5,0x6f,0x15,0x32,0xc0,0x58,0x28,0xc0,0xb7,0x25,0x28,0xa6,0x7a,0x78,0x1b,0xef,0x4c,0x06,0xc1,0xfb,0x6f,0xf2,0xce,0x32,0x4b,},{0x3f,0x99,0x4b,0x8e,0xf5,0x28,0xf6,0x42,0x1c,0x6a,0x6a,0x22,0xe9,0x77,0xad,0xe5,0xce,0xe8,0x87,0x26,0x3d,0xe3,0x8b,0x71,0x9a,0xcd,0x12,0xd4,0x69,0xbf,0xd8,0xc3,0xf6,0x8e,0x7a,0xc0,0x7d,0x2f,0xae,0x80,0xa2,0x09,0x27,0x78,0xdf,0x0b,0x46,0x35,0x37,0xad,0x3a,0x05,0x51,0x99,0x7a,0x3d,0x5b,0x51,0xf8,0x32,0xd9,0xc8,0x23,0x0b,},"\xeb\x58\xfe\x86\xc4\xef\x34\x9c\x29\xae\x6f\xb0\x4f\x10\x85\x0e\x38\xc6\x82\x3d\xbe\x64\xa0\x9a\x5b\xf1\xe0\xce\x60\x0d\x39\x4e\xfa\x6f\xb9\x6e\xd6\xa8\xf2\xc9\xd4\xbe\xc0\x5e\x6a\x5e\xbd\x5a\x1b\xf4\xd0\xc5\x1d\xb9\x34\xe5\x7b\x79\xe5\xc6\xa8\x79\xd9\x75\x19\x7d\xbb\x10\x47\x5f\x65\xc7\xf8\xa8\xc6\xa7\x7a\x42\x03\x84\xb5\x06\x2a\x27\x40\xf1\x40\x17\x40\xee\x0f\x5e\x04\x3a\xad\x7a\x2a\x2b\x42\x60\xc5\xd9\x07\xf7\x05\xed\xaf\x65\xb0\xe3\x75\xdf\xc7\xb0\x0b\xd6\x60\xdb\x61\x47\xf2\xeb\xe8\x70\xa0\xee\x18\xdc\x2b\xa3\xc9\x2b\x0b\x76\xfa\xe2\xb9\x09\x32\xcd\xb6\xc1\x49\xe4\x6f\x3f\xee\xcf\x4c\x26\xf0\x44\x1f\x3a\x9e\x00\x66\x78\xae\xcf\xf8\xcc\xae\xca\xed\xa7\x3a\x18\xa6\x8a\xc9\x88\xb6\x2e\x83\xa9\xbb\x51\x88\xae\xde\x38\xdf\x77\xa9\xa1\x64\xab\xbd\xd9\xd5\x8e\x52\xa6\xca\xf7\x22\x23\x89\xf1\x98\xe8\x5f\xbf\x96\x62\x36\xdc\xdb\xd4\xc1"}, {{0xf8,0x9e,0xed,0x09,0xde,0xc5,0x51,0x36,0x1f,0xa4,0x6f,0x37,0x59,0x73,0xd4,0xfb,0xfa,0x5c,0x5c,0x12,0xf1,0xb5,0xe5,0xab,0xf4,0x5c,0xfa,0x05,0xff,0x31,0xa3,0x40,},{0x3e,0x0e,0xfd,0xca,0x39,0x19,0xfa,0x10,0xd4,0xa8,0x49,0xce,0xf1,0xde,0x42,0x88,0x51,0xbd,0x08,0xef,0xd2,0x48,0x59,0x4f,0xd8,0x9c,0xde,0xb9,0xde,0xee,0x43,0xb0,},{0x89,0x7e,0x6f,0x27,0x97,0xc3,0xf3,0x26,0xd2,0xcd,0xb1,0xd2,0x67,0x3d,0x36,0x06,0x31,0xf0,0x63,0x30,0x45,0x80,0xff,0x5b,0x4e,0xb4,0x3d,0x39,0xad,0x68,0x51,0x83,0x4c,0x9c,0xf8,0x91,0xd9,0xf0,0x90,0x5b,0xf8,0xde,0x07,0x5f,0x76,0x35,0xdf,0xca,0x60,0x1a,0xdc,0x0f,0x14,0xe7,0xb2,0xc7,0x6f,0x75,0x71,0xbf,0xa4,0x68,0xed,0x0c,},"\x4c\xf9\x77\x3d\xa0\x5f\xd3\x22\xfc\x14\x7b\xe9\x00\xef\x5c\xf2\x56\xc8\x8a\xfd\xad\x4b\x08\xc2\x30\xdf\xc8\x98\x1f\xb6\x9f\x47\x6f\x7d\x45\xef\x7c\x90\x06\xbc\x10\x03\x2b\xa5\x34\x36\xac\x22\x84\x3e\x0d\x76\x28\x9c\xf6\x8f\x98\x18\xfa\x64\x03\x1d\x4b\x40\x95\x50\x59\xaa\x69\x11\x09\x15\x88\x9f\x5e\x22\x73\x2a\x13\x43\x91\x25\x81\xab\x3b\x11\xa3\xba\xe7\xa4\x71\x35\x95\x08\x59\x65\x75\xf8\x88\x16\x0b\xee\xf9\x66\xe5\x70\x8f\x0e\x31\x47\xea\xcf\xce\xc1\xca\xa3\xef\x24\x0c\x5e\x0a\x14\xc1\x86\x54\x6c\x8e\xeb\x64\x65\x83\x50\xb1\xaf\xfc\x0c\xfd\x2a\xc2\x13\xaf\x67\x0a\xfc\xa7\xbb\xc9\xdd\xdd\x28\xa4\x65\xb5\x86\xe6\x9c\x38\x8c\xd7\x34\x78\xd6\x8e\xfb\x32\x2b\xdf\x86\xd9\x21\x30\x11\xe7\x11\xb2\xb9\x5f\xef\xa7\xbb\x9b\x59\x39\x76\x17\x06\xaa\x71\x21\x02\x49\x06\x42\x0b\xdd\xf1\xd8\x80\x0a\x43\x38\xd9\x38\xfa\x13\x7c\xf2\x7e\x9f\xfc\x51\xc6"}, {{0x40,0x07,0x96,0xef,0x60,0xc5,0xcf,0x40,0x84,0xde,0xe1,0x80,0x1c,0x4a,0x19,0x75,0xe4,0x82,0xe7,0x0a,0xef,0x96,0x1c,0xd4,0x2e,0x2f,0xd5,0xa3,0xfa,0x1a,0x0f,0xbe,},{0xf4,0x7d,0xa3,0x81,0x28,0xf2,0xd0,0x12,0xcc,0x57,0x97,0x57,0x1d,0x47,0x9c,0x83,0xe7,0xd8,0xa3,0x40,0x98,0x02,0xf9,0xa7,0xd9,0x76,0xc2,0x70,0x67,0xcb,0xbe,0x43,},{0x84,0xd3,0xaa,0x3f,0x36,0x18,0x44,0x39,0x67,0x54,0xd8,0x0d,0x9f,0xa0,0x5b,0x8b,0x2f,0xa4,0xab,0xf3,0xa0,0xf3,0x6b,0x63,0x9b,0xee,0x9c,0xfb,0x5c,0x85,0x30,0xa3,0xa9,0xcc,0x34,0x67,0x7f,0x92,0xa9,0x13,0xc4,0x1e,0x80,0x0f,0x2e,0x80,0x41,0xf7,0x66,0x6d,0x07,0xed,0x85,0xf1,0x6a,0x57,0xd8,0x17,0xb1,0x24,0x1f,0xc5,0xee,0x04,},"\xc4\x73\x32\x5e\x78\x5b\x27\xdf\x44\x71\xee\xfb\x9e\xbe\xbd\x64\x61\xd5\x70\x80\x01\x81\x10\x0f\xf3\x6c\xaf\x3c\x38\xf6\x7c\x19\x21\xb1\x57\xec\x8e\x61\x26\xf9\x55\xae\xbd\x90\xea\x3f\xe5\x38\x5f\x80\x42\xcd\x70\x4b\x27\xcc\x1d\x69\x78\xc0\xe2\xa2\x96\x69\x5f\x5e\xf9\x7b\x7c\x2e\x16\xae\x4f\xf4\xd0\x63\xc6\x88\xd7\xf4\x6e\x96\x4e\x1f\x0a\x00\x50\x3f\x35\x73\x45\x97\x76\x83\xd6\xe4\xc3\x42\x3d\x56\xbd\xb6\xce\x86\x4b\x69\x87\xe0\x85\xe8\x3e\x70\xc7\xc1\xa1\x4e\x0e\x41\x3f\x59\x2a\x72\xa7\x1e\x01\x7d\x50\x5b\x64\xc2\x4f\x1a\x1a\x6b\x81\x3e\x06\x4e\x6e\x0c\xf8\xbd\x45\x71\xd0\xff\x2f\x26\x7a\x6a\x13\xe0\xcd\x43\x04\x63\xb6\xca\x3b\x88\xf0\xcd\x40\xb0\xfb\x83\xd5\xbe\xdf\x6f\x7d\x47\xe1\x70\xe8\x7d\x0a\x75\x00\x93\x69\x3e\xda\x23\x2a\x6d\xaf\x98\x12\x57\x27\xb9\x58\x8e\xcb\x89\x4a\xe3\x73\xba\xe3\xa4\x45\xa1\x06\x30\x64\x69\xa4\xc2\xcd\x77\xff"}, {{0x67,0x03,0xa6,0x23,0x2c,0x5e,0x2e,0x65,0xe0,0xab,0x3b,0x92,0xe2,0xaa,0xf9,0xf5,0xfb,0xd3,0x3f,0xb4,0x69,0x88,0x04,0x7d,0x6f,0x4d,0x0f,0xf5,0x38,0x7f,0xa0,0x29,},{0x04,0x7c,0xff,0xca,0x8b,0x7b,0x11,0xac,0x6e,0xac,0xc0,0xea,0xa0,0xc5,0xb7,0x3c,0x75,0xb9,0xc6,0x37,0x95,0x69,0x73,0xaf,0x9d,0x97,0xb2,0xdd,0x5b,0x60,0x5d,0x6f,},{0xca,0xe9,0x68,0x79,0xe5,0xb6,0x03,0xbe,0x86,0x66,0x09,0xd4,0xa0,0x53,0xbf,0xa1,0x2a,0x51,0x37,0x8e,0x99,0xb2,0xa2,0x81,0x2e,0x47,0x89,0x26,0x7d,0x8f,0x32,0xf4,0x73,0x24,0x3f,0x8a,0xf7,0x4b,0x9b,0xe7,0x3f,0x47,0xde,0xa5,0x0f,0x0d,0x16,0x5e,0xbf,0x49,0x45,0x8b,0x73,0xe5,0x3d,0x88,0x58,0x0c,0x19,0x1a,0x18,0x2d,0x19,0x04,},"\xa2\x6b\x30\xa7\x69\x19\x79\x32\xa3\xa6\x28\x54\x96\x8d\x76\x01\x51\x61\x23\x66\x77\x8d\xc9\x94\x57\x6a\x2e\x0e\x03\x55\x49\x6b\x46\x20\x0e\x50\x69\x48\xa0\xd1\x02\xb6\x65\x1b\x2e\x73\x34\xca\x6c\x6e\xae\xf8\xbc\xa4\x4b\x42\x59\x70\xa0\xb3\x7d\x6b\xde\x0d\xa9\xd3\xc1\xb9\xf5\x1c\xbb\x25\xbc\x33\x5c\xd6\xfa\x92\x8a\x74\xf2\xc0\xdc\x2c\x6e\x99\xd3\x7a\x12\x86\x3a\x47\x4d\x4d\xf4\x3a\xad\x35\x41\x5f\xfc\xaa\x24\xd8\xc2\x9f\x91\x45\x72\xab\x2a\xbe\xc3\x89\x2d\xb4\x9e\x67\x9c\x5e\xa2\x20\xc2\xf5\x19\xa7\xd0\x33\xac\x1a\x2c\x5a\x46\x78\x69\xe3\x0e\xda\x3d\x26\x35\xca\x86\x34\x31\x47\x3f\x95\x8d\x55\x2b\xdc\x55\x82\x35\x2c\x29\x0d\x0c\xe4\xfa\x9c\xfd\x0a\xd4\x27\x99\xc2\x27\xec\x90\xb7\xc9\xe5\xdb\x9f\x5a\x7b\x6d\x56\x92\x12\xee\xd9\x4d\x32\x33\x26\x80\x5f\x2b\x3a\x00\x10\xd6\xc1\x1e\xb4\x10\x7c\x82\x83\x03\x76\x52\xf5\x0d\xc0\x67\xb6\xdc\x81\xf4\xdb"}, {{0xe0,0xe7,0x2f,0x8f,0x17,0x86,0x33,0x62,0x67,0x33,0xbc,0xbd,0xa2,0xad,0x2a,0x50,0xe6,0x53,0x89,0x0f,0x15,0x35,0x9b,0x6c,0x22,0xfc,0x73,0x45,0xad,0x33,0x31,0x09,},{0xd1,0x3c,0xee,0x54,0x0d,0x84,0xb5,0x66,0x7d,0x51,0x6f,0xe7,0xec,0x72,0x39,0xbf,0x8d,0xa9,0x15,0x46,0xee,0x79,0x1f,0x84,0xed,0xd8,0xff,0xcf,0x3a,0x08,0x3e,0x76,},{0x14,0x55,0x21,0x71,0xb9,0x52,0x45,0xac,0x0f,0x0e,0x5a,0x6e,0x7a,0x2f,0x54,0x17,0x21,0x06,0x8d,0xb6,0x50,0xc6,0xda,0xda,0x04,0xc2,0x8c,0xab,0x7c,0x49,0x19,0x5f,0x64,0x36,0x71,0x21,0x44,0xcb,0x31,0x91,0x3c,0x56,0x2e,0x30,0xc3,0x9d,0x8a,0x85,0x49,0xfb,0x64,0xff,0xea,0x81,0xc7,0x44,0x51,0x43,0xb5,0xf2,0x32,0x86,0xda,0x05,},"\x79\x1f\xd6\x13\xc1\x09\x52\x92\xc8\xa4\xa2\xc8\x6b\x47\xae\x02\x61\x55\xb8\x46\x5b\x60\x7d\xbb\x41\x64\x77\xef\x79\xa2\x97\xc9\xd7\x75\x8c\xe3\x4a\xf9\xdc\xbf\x1c\x68\x47\x4f\x30\x90\x9f\xbe\x74\xb7\xba\x42\x96\x32\xf2\x40\x3a\xad\x83\x2b\x48\x6b\x72\xc2\x30\x54\xad\x42\xf7\x65\x3a\x9d\xdb\x45\x6c\xc7\x91\xf3\x48\x88\x6a\x7a\xe5\xdc\xec\x7c\x0b\xa8\x15\xf7\xa9\x3a\x10\xfe\x33\x1e\x90\x3b\x97\x0f\x7b\x50\x28\xbe\x49\xd1\x4b\xc5\x62\x0d\x63\x79\x26\x72\xb9\x8b\x94\x88\xc6\x7a\xe1\x66\x46\x69\x3e\x11\x20\x47\xf0\xac\x89\x21\xff\x56\x1c\x92\xdd\x05\x96\xd3\x2d\xf0\xa6\xe5\x07\xac\x1b\x07\xde\x51\x6c\x98\x42\x8d\x57\x0a\x37\xdb\x9b\xcd\x7c\x7e\x61\xc6\x94\x8a\xb3\xfe\x91\x25\x0d\xd1\xd5\xbd\x67\x12\x75\xdf\x9a\x97\x2f\x22\xc2\xba\x36\x80\x47\x47\xae\xc1\xea\x24\x16\xc1\xf4\x1a\xb8\x7b\xef\xde\x31\x62\x9b\x2d\x43\x31\x7c\xe4\x1c\xda\x03\x62\x62\x86\xc0"}, {{0x54,0x4d,0xaf,0xd9,0x96,0x0d,0x82,0x97,0x56,0xc6,0xd4,0xb3,0xea,0xdd,0x44,0x37,0x5f,0xe7,0x80,0x51,0x87,0x6b,0xf9,0x78,0xa3,0x81,0xb0,0xde,0xca,0xaa,0x80,0x96,},{0xae,0x4f,0x64,0x25,0xc1,0xb6,0x7c,0xcb,0x77,0xf9,0xaa,0xcf,0xea,0x28,0xea,0xef,0x76,0x9c,0x8c,0xac,0xee,0x03,0x52,0x05,0xcd,0xcd,0x78,0x7e,0x8d,0x07,0x62,0x9d,},{0xa2,0xae,0x11,0x7c,0x8d,0xe4,0xca,0x6d,0x6f,0xe7,0x5e,0x46,0x60,0x23,0xbd,0x55,0x0c,0x26,0xfe,0xdd,0x3e,0x74,0xca,0x13,0xad,0xb6,0x25,0xf2,0x72,0xe1,0x75,0xf1,0x4d,0x5d,0xf5,0x50,0xac,0xe7,0xd8,0x22,0x88,0xef,0xef,0xab,0xf9,0x63,0x11,0xa1,0x23,0xbe,0xe2,0x38,0x89,0xad,0x37,0x11,0xbf,0xf2,0xb8,0x08,0x79,0x46,0xbf,0x0e,},"\x44\x7f\xe7\x34\x4c\xad\x1f\xae\x09\xd6\xa7\xd0\x5f\x09\xd5\x03\xc1\xb3\xd3\xd5\xdf\xa5\x84\x81\x0c\x35\xbc\x41\xe4\x95\x56\x93\x70\x61\x54\xe2\xd7\x51\xb2\xf1\xb5\x25\xe1\xa1\x45\x47\xba\x7f\x8b\x23\x20\x88\xa6\xfc\x92\x27\x02\xd9\x3a\x11\xcd\x82\x94\x9c\x27\xbe\xd6\x45\xdc\x35\x1f\xb4\xc1\x24\x2c\xf4\x1d\x01\x57\x54\x12\xe7\x92\xae\xd2\x14\x53\x1d\x94\xfd\x66\xe0\x3d\xd3\x2e\x97\x2f\xd7\x7f\x69\x47\xa3\x53\xe1\xae\x5e\x00\xf5\xa6\xca\x77\x99\x24\x72\xf0\x96\xb6\xe7\x47\x5f\xe5\x34\xe9\x13\xa7\x7b\xcb\x0d\x68\x1f\xdf\xb3\xa7\xa0\xdc\xb5\x6d\x27\x4d\xf4\xaa\x10\x9d\x4a\x8a\x37\x79\x4a\x92\x76\xf5\x00\x06\x69\x6f\xf1\x2c\xa4\xd0\x25\x40\x39\xdf\x0f\xb3\xf7\x2a\x96\x0d\xa0\x5c\x98\x72\xf2\xe3\x3e\xe8\x1d\x1c\xf7\xa6\xf4\x8b\xbc\xe0\xaa\x18\xc7\xc0\xf0\x6b\xa5\x5e\x67\x68\x9e\x0a\xf5\x87\xb5\x00\xea\xb7\x9c\xc7\xf9\x64\x0b\xca\x10\x4b\x7f\xbf\x31\xf0\x8e"}, {{0xbf,0xbc,0xd8,0x67,0x02,0x7a,0x19,0x99,0x78,0xd5,0x3e,0x35,0x9d,0x70,0x31,0x8f,0xc7,0x8c,0x7c,0xc7,0xbb,0x5c,0x79,0x96,0xba,0x79,0x7c,0x85,0x54,0xf3,0xf0,0xf0,},{0x7c,0x5a,0xe3,0xba,0xb9,0x20,0x11,0x99,0xdf,0xbe,0x74,0xb7,0xd1,0xec,0x15,0x71,0x25,0xbd,0xba,0xa4,0x52,0x0f,0x50,0x1d,0xa3,0xf2,0x48,0x57,0x9d,0xc6,0xc2,0x2d,},{0xe4,0x86,0x15,0xb6,0x56,0x33,0xe6,0x19,0x93,0xb0,0xaa,0xa1,0xfa,0xfb,0x74,0xb9,0x62,0x9c,0x38,0x4f,0xd5,0x92,0xbd,0x73,0x5f,0xa1,0xf6,0x2c,0x5c,0xad,0x11,0x29,0x1f,0xcd,0x8c,0x2e,0x91,0xa5,0x0b,0xfe,0x0b,0x03,0xb4,0x35,0x02,0xff,0xf3,0xa5,0xc3,0x82,0xb9,0xc2,0x82,0x19,0x07,0xef,0xc3,0x4d,0xa5,0xba,0x05,0x4a,0xf0,0x0e,},"\x11\x7f\xae\x13\xe7\x87\x77\xb6\x21\x9f\x02\x02\x14\xc1\xb8\x7c\x57\x04\x6d\x1c\x09\xce\x82\xee\x2b\x56\x29\x89\x8d\x9b\x0d\xe7\x4a\x15\xcf\xe9\x9f\x80\x54\x8b\xa9\x13\xd7\x03\x6c\x56\x28\x5a\x4c\xba\x49\x3b\x52\xd2\xcb\x70\xd6\x36\x5a\xce\x3d\xa1\x2b\x1f\x34\xa2\x77\x8a\xf3\x6e\xf5\x2a\xb8\x2e\xde\x04\xca\xca\xf2\x79\x3f\x5f\x89\x83\x1e\x3b\x20\x5a\x9e\xe4\xc1\xd6\xfb\xda\xb4\xba\x4d\x9f\xae\x65\xdd\x79\xa5\xfe\x76\xb4\xb3\x9a\x30\x92\xcc\x71\x48\xd2\x11\xe8\x5e\xe8\x2a\xb4\x63\xd3\x4d\xce\xe9\x06\x1d\x9c\x21\xde\xd2\x05\x1b\xbd\x50\xb4\x13\xf0\xe2\x1a\x0e\x48\xd1\xff\xa8\xdc\xae\x24\x0b\x34\x95\xbe\x25\xd9\x31\x51\xb5\x7a\xa2\x71\xab\x99\xaa\x70\x8c\xa2\x80\x80\xca\xb4\x80\x4f\xce\xfa\x92\x9f\x5f\x1e\xf3\xf4\xc6\xc0\xfb\xfb\x40\xbe\xf7\xea\x1b\x50\x9b\x36\xba\x12\x60\x32\x35\x12\x37\x9d\x7b\xc3\xfd\xbb\x5d\x3f\xaa\xc9\xb0\x0e\x21\xf1\x2e\xa1\xca\x2e\x29"}, {{0xdf,0x2d,0xf8,0xa9,0xd6,0x6d,0x56,0x38,0xcd,0xee,0x09,0x32,0x4e,0x7b,0x10,0xf8,0xed,0x29,0xab,0x91,0x38,0x7e,0x31,0x47,0xb7,0xdc,0x03,0xf7,0xcd,0x80,0x05,0x08,},{0x5c,0x04,0x2e,0x15,0x7f,0xb7,0xfb,0x12,0xd4,0xd4,0xfe,0xf2,0x84,0x71,0x41,0xec,0xfb,0x57,0xc1,0x25,0x3e,0x14,0xea,0xf3,0x00,0x4d,0x65,0x13,0xf5,0x2f,0xe6,0x25,},{0x9a,0x10,0x74,0x53,0x1e,0xd4,0x3d,0x07,0xbf,0xfc,0x7f,0x2b,0x6c,0x13,0xb8,0x83,0x8f,0xc7,0x5c,0xba,0x02,0xc7,0xd1,0xec,0x7b,0xa3,0x8b,0xca,0x3c,0xef,0x20,0xdc,0x9b,0xad,0xf3,0xa3,0x06,0x4a,0x2c,0x93,0xb1,0x84,0x24,0x41,0x42,0x0b,0x6a,0x8d,0x42,0x1a,0x96,0x0d,0x70,0xdf,0xb7,0xc7,0x0e,0xec,0x29,0x5f,0x21,0xf8,0x3f,0x0a,},"\x21\x57\x66\x15\xc9\x34\x6a\x63\xdc\xcf\x0c\x50\xec\xbd\x7c\x6d\x72\xad\x45\x2c\xfe\xd4\x3e\xa7\x32\x02\xcc\x7a\x98\x57\x60\x56\xb9\x66\x4b\x54\x62\x29\x05\xa1\xe7\x22\x17\x20\x73\x0a\xc6\x85\xd3\xbd\x39\x77\xec\x39\x59\xd4\x46\xbf\xa9\x41\xe7\x25\xb6\xfe\x16\xaf\xe5\x43\x2c\x4b\x4b\xde\xe7\xaa\x0f\xd8\x03\x09\x48\xed\x6f\xcb\xa7\xc0\xbd\xb4\x0c\x2e\x51\x7d\xa9\x74\x56\xe7\x4e\x1f\x93\xd5\xed\x67\x6d\xe0\xf4\xa8\xb0\xae\xa4\x49\x40\x4b\xd1\x5b\x6d\xa7\x9d\xc1\xb8\x13\x96\x5f\xe5\x57\x24\x10\xd7\x6f\x5b\x5e\xac\x66\x30\x50\x57\x03\x11\xdc\x98\x42\xb6\xfb\xf8\x80\x6a\xec\x03\x15\x17\x15\xca\xcf\x7f\x21\x80\x2e\x8b\xf5\xe9\x8a\x89\xc0\xd7\xd0\xd0\x98\xb7\x3c\x6e\xfc\x09\x96\x2e\x36\xb4\xe0\x30\xc1\xa6\x4b\x5d\x34\x9f\x5f\x20\x42\xc7\x44\x28\x67\x1e\x4a\x2c\x7f\xea\x0c\xae\xe2\x42\x2d\x85\xc4\xfc\xdd\xfe\xd3\x22\x13\x85\x9a\x69\x95\x5d\x4e\x3e\xbb\x7e\x1b\x20\x22"}, {{0xe8,0xee,0x06,0x5f,0x99,0x07,0xf1,0xef,0xa2,0xda,0xec,0xb2,0x3a,0x04,0x25,0xf3,0x53,0x09,0x4d,0xa0,0x2b,0xc2,0xc9,0x31,0xf0,0xa5,0x87,0xef,0xc0,0xd1,0x3d,0xe1,},{0xc7,0x26,0x51,0xb7,0xfb,0x7a,0xc0,0x33,0x7a,0x17,0x29,0x77,0x49,0x6f,0xd7,0xf2,0xa7,0x2a,0xea,0x88,0x93,0x85,0x83,0x5e,0x56,0x3c,0x6b,0x60,0x53,0xa3,0x2d,0xc1,},{0xa5,0x10,0xdf,0xf4,0x2d,0x45,0x59,0xa1,0x9a,0x7b,0xf0,0xfe,0x0b,0xea,0x53,0xd3,0xe1,0xf2,0x2d,0xfa,0x6b,0xe5,0x50,0x39,0x89,0x5e,0x12,0xa5,0xd0,0x7d,0xa5,0xf2,0xe3,0x77,0x13,0xcc,0xb2,0xeb,0x21,0x60,0x11,0x62,0x8f,0x69,0x83,0xf8,0x71,0xfe,0xe2,0x86,0xe6,0x6f,0xff,0x4b,0xe7,0x58,0x2c,0x96,0x1a,0x1e,0xd7,0x56,0x84,0x04,},"\xa2\xf0\xc1\x37\x34\x73\xa3\x05\xd8\xf1\xd9\x91\x38\xb0\x6b\x9a\x96\x94\xff\xaa\x8a\x88\x22\x2d\xe9\xf7\x29\xbe\xe1\x30\x51\x75\xdf\xb1\x70\x01\xcc\x77\xf6\x7b\x6d\x40\xc9\x0c\x1a\x28\xfb\x22\x6c\x11\x28\x6d\xb4\xa1\x3e\x45\xe6\x92\x11\x24\x2b\xcd\xd0\x1c\xb6\xe2\xc4\x54\xe7\x6c\x0c\xab\x88\x1b\x4d\x2d\x9d\x3a\xb1\x00\xa5\xd6\x1d\x17\x25\xd8\x66\xe4\xfd\xb6\x6d\x93\xd7\x7f\x5b\x30\x86\x93\xb9\xb5\xa3\x33\xe5\x7f\xa2\x5d\x1e\x5d\x2e\x38\xdf\x6e\x4e\x9e\xc8\x41\x59\xbb\xee\x1f\xfe\xa9\x26\x83\x6a\x01\x01\xc9\x14\x83\xbd\x5b\xc8\x8a\x6f\x1c\xc4\xd4\xe7\xf0\x08\xad\x08\x45\x3a\x01\x23\x42\x9d\xd3\x35\x78\x1c\x7c\xbf\x8d\x68\x5a\x89\x99\xed\x11\x77\x60\x70\x04\xa1\x3c\x4c\xb5\xea\x49\x08\xc5\x42\x60\x7d\x3f\x2c\xd6\x69\x0c\xf1\xf2\xa7\x45\x5b\xbd\x38\xf5\x38\xf0\x7a\x10\x39\x64\x31\x7e\xfb\xce\xe3\x7e\xb4\x69\x31\xc0\x27\xcf\x15\x3e\xf8\x6e\x43\xd7\x82\x81\xeb\xd7\x10"}, {{0xc7,0x2e,0x67,0xd8,0xc3,0xfe,0xc0,0x04,0xff,0x61,0x87,0x18,0xa9,0x09,0x9e,0xb8,0xad,0x7b,0x06,0xff,0x3b,0x8c,0x54,0x2a,0x7e,0x8b,0x98,0x47,0x31,0x34,0x75,0xe1,},{0x4e,0xb0,0x02,0xd3,0xcc,0xeb,0x18,0x8c,0x66,0x58,0xfe,0xc5,0x1c,0xb4,0x79,0xa6,0x52,0x64,0xac,0x55,0x5c,0x75,0xcd,0xc2,0x24,0x9c,0xf1,0xce,0x3d,0xef,0xc1,0x6d,},{0x2d,0x7b,0xab,0x8e,0xbd,0xa7,0xfc,0xa5,0xbb,0x3c,0x25,0xf5,0x1d,0xc5,0x1b,0x73,0xe6,0xff,0x6a,0x3b,0xb1,0xb5,0x2a,0xcc,0x78,0x11,0xa7,0xd2,0x59,0x5c,0xd6,0xfd,0xaf,0x73,0x04,0x94,0x41,0x8e,0x2f,0x57,0xef,0xdc,0x56,0x17,0xb0,0x66,0xfd,0x7b,0x62,0x07,0x68,0x0d,0x94,0xfb,0x8c,0x43,0xd3,0xd4,0x74,0x0b,0x41,0xcb,0x69,0x01,},"\xa8\xf3\x41\x35\xc0\x13\x2e\xc9\x5b\x64\xb0\xcb\xf5\x1d\x66\x90\x01\x43\x37\x04\x06\x79\x1f\xbb\x55\xf2\xb8\xca\x95\x3c\xc7\x4a\x46\xe0\x8b\x00\x2f\xa2\xda\x21\xb9\x51\xb8\x87\x1f\x7a\x29\xbc\x6d\x38\x79\x0a\xfc\x66\xa3\x29\xc3\x97\xd9\xf9\x25\x0b\xae\x0e\x30\xae\x34\x26\xe0\x8d\x8e\xad\x01\x79\xa3\xb3\x13\xc9\x08\x83\x91\x92\xf2\x89\xa3\xf3\xb6\xe9\x60\xb4\xc5\xce\xbe\xf0\xa0\x9d\xaa\x9c\x7a\x15\xc1\x9d\x4e\xbc\x6f\xc2\xac\x3c\xd0\x22\x32\xe8\x32\xb2\x34\xed\xd7\x96\x5d\x68\x7b\xfe\xb7\x58\xf7\x0f\xa7\x96\x38\x41\xb7\x85\x9b\xb9\x7c\x97\x1b\xd5\x57\xbc\x87\x69\x52\x4a\xc4\xc6\xee\xb3\x57\x97\x93\x33\x4b\x52\x2d\x17\x6b\xc6\x2f\x86\xb4\xd5\xc0\xd4\x01\x70\x36\xd2\xb6\xbd\x4e\x43\x84\x41\x6e\xf8\x26\x31\x39\x69\x1a\x86\x06\x17\x0d\x73\xc9\x3d\x64\x17\xdc\xc1\xa0\x8a\x53\x7c\x9e\xd4\x40\x04\x71\xa4\x6f\x52\x90\x7b\x46\xb1\x0a\x8b\x68\x89\xdb\xb4\x64\x7a\x8b\xbc\x71\x49"}, {{0x69,0x64,0x50,0xb5,0x57,0xec,0x3c,0x94,0xcf,0x1a,0xf1,0x32,0x64,0x75,0x63,0x4a,0xa8,0x1d,0xef,0x38,0x14,0xff,0x30,0xa0,0x2b,0xa7,0xf2,0x04,0x4b,0x59,0xc0,0xfe,},{0x85,0x84,0x77,0x3c,0x56,0x6b,0x0e,0xed,0x3f,0x43,0x28,0x17,0x05,0xb5,0x75,0xa4,0x34,0xe4,0x7d,0x6c,0xf6,0xb2,0x51,0xb8,0x98,0x03,0xfe,0xf5,0x35,0x34,0xcb,0x29,},{0xce,0x8b,0x0a,0x57,0x79,0xf4,0xf5,0xf4,0x01,0xe8,0x4d,0x65,0x92,0x7a,0x0c,0x28,0xdf,0x82,0x9e,0x95,0xd0,0x9b,0xfa,0x97,0x11,0x1b,0x87,0x00,0x07,0x8f,0xf8,0x94,0xcf,0x72,0x77,0xe3,0x4a,0x71,0x61,0x44,0xd5,0x53,0x06,0xfc,0x9e,0x2f,0x64,0xcd,0x28,0x75,0x83,0xcc,0x80,0x03,0xbe,0x0e,0x8f,0xaf,0x26,0xaf,0x76,0x40,0x14,0x0e,},"\xcc\x25\x78\x29\xf3\x0a\x5f\x90\xdf\xdb\xc2\x47\xd4\x2e\x38\x87\x38\xb7\x6c\x41\xef\x8a\x82\xa5\xe0\x22\x5d\xdf\x1e\x38\x6d\x77\x08\x0b\x3b\x9d\xf8\x6c\x54\xb8\x5c\xdf\x2c\x32\xf3\x67\xab\xa0\xc3\xb6\xbf\x88\x8a\x5a\x69\x03\x52\x9b\x6a\xeb\x4d\x54\x07\xa1\x01\x80\x14\x91\x14\x13\x02\x28\xfc\x43\x56\xcc\xf3\x66\xb7\x7b\xe8\x97\x96\xa9\xe7\x1a\x0c\x69\x3f\x31\xe5\x84\xa4\xf1\x43\x09\x7b\xa3\x70\x36\x3b\x67\xb2\xf2\xe2\xfd\x8d\x6f\xe8\xb4\xe8\xdb\xf0\xd7\xdc\xc1\xa8\x36\x00\x41\x15\x8a\xa2\xaf\xf7\xe2\xa3\x25\xb8\xe5\x18\xf1\x93\xa2\x8b\xae\x05\xe3\xd5\x2b\x26\x62\x1a\xf4\x02\x02\x6d\x7f\x25\x0e\x86\xdc\xee\x30\x1a\x58\xb6\x31\xea\xdf\x45\x27\xe9\x58\xf0\x2a\x61\x58\x7f\x0b\xb5\x16\xce\xfa\xc0\x09\xfe\x51\x05\x2f\xff\x53\x33\x6d\xbd\x94\xe7\x26\x6d\x3b\x43\xca\xba\x8a\x1b\x38\xe5\xd8\x71\xc2\xa2\x4a\x4c\x41\x2f\xff\x3f\x7a\x9a\x52\xa8\xab\x23\xba\xc9\x79\x1b\x2b\x5a\x66\x9a"}, {{0xa8,0xdd,0x35,0xf0,0x54,0xfb,0x6f,0xf6,0xf0,0xab,0x09,0x4a,0x0d,0x3d,0x1c,0x26,0x28,0x32,0x18,0x1d,0xf3,0x5c,0xcd,0x51,0x92,0x54,0x5e,0xbd,0x6a,0x9c,0xf5,0x29,},{0xca,0x41,0x23,0x38,0xd3,0x81,0x4b,0x88,0x6d,0x96,0x4b,0x71,0x92,0x5e,0x1a,0xab,0xb3,0xff,0xd0,0x78,0x34,0xdb,0xe7,0xdc,0x51,0x25,0x68,0x88,0x2b,0x53,0xe4,0xa3,},{0xfa,0x70,0x9f,0xbc,0x83,0x82,0xaf,0x83,0xd1,0x18,0x12,0x61,0x8d,0xfa,0xca,0x45,0x2e,0xab,0x83,0xe4,0xc5,0x3f,0xe9,0xe5,0x85,0x84,0x67,0xd0,0x7b,0x67,0x67,0xe1,0x79,0x75,0xc1,0xe0,0x63,0x93,0xd6,0xdd,0xe1,0x5a,0x34,0xd9,0x47,0x3d,0x1c,0xf4,0xd6,0xd8,0xc2,0xd5,0x73,0x94,0x52,0x00,0x80,0xfa,0xc4,0xe4,0x34,0x48,0xbe,0x07,},"\x55\xa7\xad\x91\x32\xd6\x3a\xc1\x61\xe7\xad\xb1\x32\xb9\x18\x9f\xdd\x84\xc3\x61\xc1\xe4\xf5\x41\x9a\x6d\xf7\x3d\xf4\xd7\xae\xb2\x9a\x8d\xc4\xbf\x01\x49\x0d\x4f\x48\x4e\x2d\x12\x07\x75\x17\xf5\xfc\x7a\xd0\xbd\xed\xa2\x0a\x6c\xb0\x22\x79\x42\x29\x0b\x08\xc3\xfe\x33\xab\x9b\x21\x35\xbc\x38\xa6\x57\x9a\x54\xbd\x98\x2f\x7d\x14\x17\xce\x86\x71\x17\xae\xa9\x18\xdb\xd3\xdd\x47\x6e\x7e\xb5\xb5\xd3\xc3\xe4\x8a\x86\x4a\x2f\x94\x2a\x31\x50\x1a\xa2\xb2\x9b\x53\xb8\x05\x13\xc9\x5d\x6a\x41\x18\x44\xf0\xde\xdf\x16\xa2\x9a\xc2\x67\xd3\x31\xe5\x3b\xdc\x25\x39\xbf\xcf\x32\xdc\x9b\x5d\x64\x0f\x12\x31\xe2\xca\xfb\x0a\xe9\x4b\xb5\x18\x94\x26\x86\x33\x64\x26\x2e\xfb\x47\xb5\xb5\xcc\xdb\xbc\x93\x32\x42\x16\xa7\x99\xb6\xf5\x0d\x37\x04\xf1\x5e\xd5\x9a\xf6\xcc\x7d\x91\x0c\xf0\x62\xd1\xbe\x63\x2d\xca\x5d\xf2\x13\xd4\x87\xd8\x56\x4f\x2b\x2b\xd7\xd8\x18\xbb\xa2\x7c\x36\x40\x13\xd9\x2d\x7f\x72\x62\x54\x62"}, {{0xae,0x1d,0x2c,0x6b,0x17,0x1b,0xe2,0x4c,0x2e,0x41,0x3d,0x36,0x4d,0xcd,0xa9,0x7f,0xa4,0x76,0xaa,0xf9,0x12,0x3d,0x33,0x66,0xb0,0xbe,0x03,0xa1,0x42,0xfe,0x6e,0x7d,},{0xd4,0x37,0xf5,0x75,0x42,0xc6,0x81,0xdd,0x54,0x34,0x87,0x40,0x8e,0xc7,0xa4,0x4b,0xd4,0x2a,0x5f,0xd5,0x45,0xce,0x2f,0x4c,0x82,0x97,0xd6,0x7b,0xb0,0xb3,0xaa,0x7b,},{0x90,0x90,0x08,0xf3,0xfc,0xff,0xf4,0x39,0x88,0xae,0xe1,0x31,0x4b,0x15,0xb1,0x82,0x2c,0xaa,0xa8,0xda,0xb1,0x20,0xbd,0x45,0x2a,0xf4,0x94,0xe0,0x83,0x35,0xb4,0x4a,0x94,0xc3,0x13,0xc4,0xb1,0x45,0xea,0xdd,0x51,0x66,0xea,0xac,0x03,0x4e,0x29,0xb7,0xe6,0xac,0x79,0x41,0xd5,0x96,0x1f,0xc4,0x9d,0x26,0x0e,0x1c,0x48,0x20,0xb0,0x0e,},"\x9e\x6c\x2f\xc7\x6e\x30\xf1\x7c\xd8\xb4\x98\x84\x5d\xa4\x4f\x22\xd5\x5b\xec\x15\x0c\x61\x30\xb4\x11\xc6\x33\x9d\x14\xb3\x99\x69\xab\x10\x33\xbe\x68\x75\x69\xa9\x91\xa0\x6f\x70\xb2\xa8\xa6\x93\x1a\x77\x7b\x0e\x4b\xe6\x72\x3c\xd7\x5e\x5a\xa7\x53\x28\x13\xef\x50\xb3\xd3\x72\x71\x64\x0f\xa2\xfb\x28\x7c\x03\x55\x25\x76\x41\xea\x93\x5c\x85\x1c\x0b\x6a\xc6\x8b\xe7\x2c\x88\xdf\xc5\x85\x6f\xb5\x35\x43\xfb\x37\x7b\x0d\xbf\x64\x80\x8a\xfc\xc4\x27\x4a\xa4\x56\x85\x5a\xd2\x8f\x61\x26\x7a\x41\x9b\xc7\x21\x66\xb9\xca\x73\xcd\x3b\xb7\x9b\xf7\xdd\x25\x9b\xaa\x75\x91\x14\x40\x97\x4b\x68\xe8\xba\x95\xa7\x8c\xbb\xe1\xcb\x6a\xd8\x07\xa3\x3a\x1c\xce\x2f\x40\x6f\xf7\xbc\xbd\x05\x8b\x44\xa3\x11\xb3\x8a\xb4\xd4\xe6\x14\x16\xc4\xa7\x4d\x88\x3d\x6a\x6a\x79\x4a\xbd\x9c\xf1\xc0\x39\x02\x8b\xf1\xb2\x0e\x3d\x49\x90\xaa\xe8\x6f\x32\xbf\x06\xcd\x83\x49\xa7\xa8\x84\xcc\xe0\x16\x5e\x36\xa0\x64\x0e\x98\x7b\x9d\x51"}, {{0x02,0x65,0xa7,0x94,0x4b,0xac,0xcf,0xeb,0xf4,0x17,0xb8,0x7a,0xe1,0xe6,0xdf,0x2f,0xf2,0xa5,0x44,0xff,0xb5,0x82,0x25,0xa0,0x8e,0x09,0x2b,0xe0,0x3f,0x02,0x60,0x97,},{0x63,0xd3,0x27,0x61,0x5e,0xa0,0x13,0x9b,0xe0,0x74,0x0b,0x61,0x8a,0xff,0x1a,0xcf,0xa8,0x18,0xd4,0xb0,0xc2,0xcf,0xea,0xf0,0xda,0x93,0xcd,0xd5,0x24,0x5f,0xb5,0xa9,},{0xb6,0xc4,0x45,0xb7,0xed,0xdc,0xa5,0x93,0x5c,0x61,0x70,0x8d,0x44,0xea,0x59,0x06,0xbd,0x19,0xcc,0x54,0x22,0x4e,0xae,0x3c,0x8e,0x46,0xce,0x99,0xf5,0xcb,0xbd,0x34,0x1f,0x26,0x62,0x39,0x38,0xf5,0xfe,0x04,0x07,0x0b,0x1b,0x02,0xe7,0x1f,0xbb,0x7c,0x78,0xa9,0x0c,0x0d,0xda,0x66,0xcb,0x14,0x3f,0xab,0x02,0xe6,0xa0,0xba,0xe3,0x06,},"\x87\x4e\xd7\x12\xa2\xc4\x1c\x26\xa2\xd9\x52\x7c\x55\x23\x3f\xde\x0a\x4f\xfb\x86\xaf\x8e\x8a\x1d\xd0\xa8\x20\x50\x2c\x5a\x26\x93\x2b\xf8\x7e\xe0\xde\x72\xa8\x87\x4e\xf2\xee\xbf\x83\x38\x4d\x44\x3f\x7a\x5f\x46\xa1\x23\x3b\x4f\xb5\x14\xa2\x46\x99\x81\x82\x48\x94\xf3\x25\xbf\x86\xaa\x0f\xe1\x21\x71\x53\xd4\x0f\x35\x56\xc4\x3a\x8e\xa9\x26\x94\x44\xe1\x49\xfb\x70\xe9\x41\x5a\xe0\x76\x6c\x56\x5d\x93\xd1\xd6\x36\x8f\x9a\x23\xa0\xad\x76\xf9\xa0\x9d\xbf\x79\x63\x4a\xa9\x71\x78\x67\x77\x34\xd0\x4e\xf1\xa5\xb3\xf8\x7c\xe1\xee\x9f\xc5\xa9\xac\x4e\x7a\x72\xc9\xd7\xd3\x1e\xc8\x9e\x28\xa8\x45\xd2\xe1\x10\x3c\x15\xd6\x41\x0c\xe3\xc7\x23\xb0\xcc\x22\x09\xf6\x98\xaa\x9f\xa2\x88\xbb\xbe\xcf\xd9\xe5\xf8\x9c\xdc\xb0\x9d\x3c\x21\x5f\xeb\x47\xa5\x8b\x71\xea\x70\xe2\xab\xea\xd6\x7f\x1b\x08\xea\x6f\x56\x1f\xb9\x3e\xf0\x52\x32\xee\xda\xbf\xc1\xc7\x70\x2a\xb0\x39\xbc\x46\x5c\xf5\x7e\x20\x7f\x10\x93\xfc\x82\x08"}, {{0x6b,0xce,0x4d,0xfd,0x53,0xbf,0xa5,0x50,0x6f,0x2f,0x55,0x4d,0x2d,0x99,0x4a,0x0d,0xc4,0x0c,0xaf,0xcd,0xec,0x7e,0x1b,0xe0,0x50,0x00,0x6e,0x5c,0x5a,0x4b,0x38,0xa1,},{0xc8,0x90,0x02,0x37,0x28,0xd8,0x39,0x70,0x70,0x29,0x17,0x71,0xe6,0x5e,0x03,0x4d,0x34,0xd4,0xaa,0xe5,0xe2,0x47,0x65,0x3e,0x4f,0xf4,0xc0,0x74,0x59,0x1d,0xa7,0x02,},{0x99,0xae,0x67,0x82,0xff,0x27,0x64,0x6c,0x27,0xf6,0x1e,0x23,0x63,0x6a,0xe1,0x88,0x15,0x21,0xcf,0xa5,0xed,0x25,0x6f,0x70,0xbc,0xe7,0xce,0x00,0xb6,0x82,0x80,0xce,0x8e,0x0c,0x82,0xaa,0x76,0x5a,0xfb,0x8b,0x5a,0x1f,0xf2,0xfe,0x42,0xc5,0x74,0x41,0xe4,0x58,0xe4,0x43,0xdc,0x8b,0x12,0x34,0x77,0xae,0x33,0xd8,0x84,0x88,0x8c,0x0b,},"\x32\x39\x19\x07\x47\xee\x33\xd4\x0b\xf8\x70\xac\x9a\xd4\x9d\x88\xee\x32\x0f\x63\xc0\x52\x57\xe8\xab\x2c\x60\x30\x65\x97\xce\x76\xd1\xf1\xe7\x92\xab\x6a\x65\xca\xa5\x44\xfb\xec\x20\x89\x2f\xd4\x96\x05\x94\xf3\x1b\x37\x63\xef\x07\xd4\x98\x2e\xae\x4a\x2d\xbf\x33\x77\xdc\xc1\xe3\xf9\x5e\x46\xed\x39\xb7\xf0\x22\x2f\x04\xbb\x5c\x3b\x43\x4c\x8f\x9f\x31\x0d\xe9\xf1\x22\xa2\x9f\x82\x41\xe8\x1e\x20\x65\x49\xae\x62\x8d\x2b\x8a\xd7\x68\x97\x2c\x98\x84\x7c\x11\x88\xad\x04\xc8\x35\x35\x63\x78\xbe\xf7\x9c\xd1\x26\x86\x94\x05\xb1\x29\xfd\xbd\xc3\xbc\x48\x9c\xbd\x13\x99\x50\x5d\xad\xef\x76\x17\xb5\xbe\x5d\xa1\x73\xd3\xe8\x0e\x58\x38\xc9\x9e\x34\x92\x76\x24\x27\x29\xe0\x21\x9b\xd7\x47\x6a\xe5\xc4\xf8\x1a\x12\x87\x8f\xb4\x83\xa6\xc0\xe9\xb0\xdf\x29\x62\xeb\x0b\xf0\x01\x57\x78\x2c\xf7\x68\xa1\xb7\x1c\x01\x01\x69\xee\x85\x22\xde\xf0\x02\x4a\xd7\xe4\x57\x75\xa2\x90\x63\x9c\x53\xaa\xf4\x81\x98\xc4\x2d\xe7\x5c"}, {{0x17,0x86,0x1a,0x8d,0x41,0x54,0xac,0xd4,0xfa,0x9c,0x8f,0xc9,0x47,0xc1,0x88,0x6c,0x11,0x29,0x0b,0xe2,0x22,0x87,0x2f,0xf4,0xf8,0xcd,0x25,0x93,0x9e,0x4d,0x13,0x61,},{0x43,0x77,0x3f,0x44,0x49,0x06,0x5e,0xae,0xba,0xf8,0x93,0x7b,0xaf,0x75,0x85,0x60,0xb0,0xc4,0xd2,0xde,0x46,0x97,0x78,0x39,0xb3,0xb8,0x73,0xd5,0xd7,0xd5,0xfd,0x8f,},{0xa5,0xee,0x02,0x4c,0xcd,0xbd,0xd4,0xc2,0x1a,0x24,0x70,0x9e,0xc5,0x3d,0xcc,0xb7,0xee,0x17,0x62,0x6d,0xd0,0x0a,0x09,0x3d,0x08,0x84,0xf5,0xb4,0x5c,0x4c,0x9d,0x16,0x91,0x84,0x01,0x51,0xc3,0x3c,0x8a,0xa0,0x7b,0x69,0xb3,0x4e,0x16,0xf6,0x16,0x47,0xeb,0xe7,0x93,0xae,0x4d,0xaa,0x70,0xcf,0xf4,0x8e,0x6a,0xb4,0x2f,0xfd,0xbc,0x00,},"\x18\x4d\xf5\xea\x32\x15\xeb\xe1\x80\x39\x0b\x0f\xf0\x42\xba\x23\x81\x15\x5a\x03\x8d\xc7\x32\xf7\x6a\x01\xc7\xe7\x0f\x82\xd1\xcc\xc9\xde\x9a\x05\x96\xb3\xfe\xe4\x47\x20\x9c\x99\x26\x84\xf6\x43\xdf\x21\xf4\xcf\x9d\x17\x92\x62\x79\x0e\x86\x23\xe4\x24\x72\xdc\x35\x19\x97\xe6\xda\x18\x9c\x07\xe1\xe8\x88\x2c\x07\xf8\x6c\x63\x37\xec\x01\x13\x91\x2c\xf9\x22\x15\xc8\xde\x19\x82\xb8\xfc\x57\xbf\xab\xc5\x5a\x3e\x87\x36\xf7\x36\x10\x42\x9d\x97\xfe\xb5\x1d\x79\x4f\x50\x5d\x0c\x5a\x0b\x3a\xbd\x48\xef\x7f\x55\xa6\x28\xf9\x0b\x85\x67\xa1\xc1\x5e\xa9\xd1\x90\xd7\xbf\x4e\xc2\xbc\x93\x34\xad\xa6\xcb\x92\x80\x8d\xfc\x20\x64\x83\x6f\xcf\xa4\x6b\x96\xfd\x7a\x5d\x6f\x4b\x05\x4d\xab\x09\xb7\x35\x95\xfe\xb8\x9e\xd0\x05\xb9\xec\x9d\x31\x88\x12\x1d\xe6\x96\x96\xd6\x4e\x7c\x7b\xbd\xfc\x1c\x46\x9f\xaf\x14\x8c\x38\xa7\x78\x59\x70\xaf\xe1\xac\xd0\x6a\x92\xc9\x94\x78\xfe\x44\x97\x4e\x3b\xb2\x09\x5e\x44\x67\xe9\xb2\xe9\x96"}, {{0x0a,0x84,0xba,0xa5,0x4f,0x11,0xcf,0x17,0x09,0x0f,0xec,0x61,0xf3,0xf9,0x40,0x15,0x08,0xa3,0xa0,0x38,0x87,0xac,0xa1,0xa7,0x93,0x93,0x94,0xb1,0xee,0x40,0xa9,0x25,},{0x30,0x9a,0x73,0xc6,0x2d,0x23,0xd7,0x40,0xf2,0xe9,0x3c,0x18,0x58,0x7a,0xc1,0x5e,0x7e,0xc4,0x80,0xd2,0x5a,0xc0,0x79,0x4e,0x10,0xf8,0xcd,0x46,0x1c,0xc2,0xb1,0x30,},{0x4d,0x87,0x0b,0xd5,0x3a,0xf8,0xf1,0x3f,0x21,0x4d,0x99,0x34,0xec,0x90,0x3a,0xc4,0x82,0x84,0x09,0x2c,0xd9,0xb1,0x62,0xa4,0x4c,0xce,0xc8,0x51,0xfa,0x94,0x2d,0xe7,0x15,0xcc,0xda,0x07,0xb7,0x99,0x1d,0x71,0x27,0x23,0xe7,0xa4,0xd5,0xb4,0xf0,0x37,0x4a,0xb8,0x5a,0xc3,0x86,0x7e,0x0b,0x53,0xeb,0xc4,0x6b,0x53,0x0f,0x9f,0xed,0x05,},"\xfe\x70\x01\x7b\x14\x67\x8b\x0d\x3a\xd0\x3e\x18\x3d\x6f\x53\x31\x43\x78\x37\x9a\xb3\xda\x65\xb3\x51\x12\x57\xb3\xd5\x40\x86\xe8\x6f\x20\x31\x13\x90\x21\x39\x1a\xf9\xd7\x20\x85\xff\x7c\x3d\xc8\xc1\xe2\xd9\x1e\x53\x33\x38\x55\x42\x3d\x0f\x78\x5e\x2c\xc5\xf8\xb7\x79\x9f\xcf\x1b\x70\xe6\xbe\xcb\x78\x8e\x53\xe9\x02\x0f\x29\x95\xdd\xb0\xc3\x83\xa1\xf8\x10\x38\xfc\x3d\x54\x3c\xe0\xa3\x8c\x9c\x28\x8a\x9b\xc4\x07\x7f\x42\x77\xdc\xc6\xc5\x64\x22\x63\xfc\xfe\x19\x68\x80\x05\xa6\x03\xf5\x76\x75\xd2\x43\x4f\x3e\xd1\xf4\x6d\x32\xf1\x4e\xae\xb0\x73\xe8\x3e\xe7\x08\x6d\xa2\xfb\x67\x65\x9d\x3f\xb6\x8c\x62\x32\x0b\x77\x27\xb3\xb8\xea\x00\x65\x76\xbc\x2c\x7e\x6b\x5f\x1e\xce\xfa\x8b\x92\xe7\x0c\x92\xc8\x89\x51\xd0\xc1\x2d\x91\xde\x80\x1c\x38\xb7\xca\x5a\x0a\x04\xb4\xc3\x42\x9a\xba\x86\x38\x6e\x96\xe0\x6a\xfd\x20\xd4\xc5\xc2\xfe\x2b\x9b\x42\x73\xeb\x05\x20\x1a\x79\x27\x3a\xbd\xbe\xb3\x7e\xd1\x83\x0d\x22\x6b\x6b\xdb"}, {{0x38,0x37,0x94,0x23,0xda,0xfd,0xbf,0x25,0xe1,0x9d,0x72,0x31,0xbd,0xdd,0x80,0xb4,0xce,0xfc,0xfe,0x2a,0xed,0x93,0x25,0x84,0xdf,0xa0,0xcc,0x3c,0x9f,0x92,0x32,0xde,},{0x59,0x7e,0x81,0xdc,0xee,0x94,0x48,0xb7,0x7d,0xe6,0x82,0x9e,0x79,0x21,0xc8,0xa3,0x90,0x53,0x5d,0x89,0xa0,0x84,0x94,0x30,0xae,0xd6,0x63,0x64,0xee,0x14,0x0d,0x8b,},{0xd8,0xb5,0x0a,0x88,0xae,0xd6,0xf2,0xa9,0x6d,0x08,0x22,0x13,0xad,0xf8,0xb2,0x51,0x9f,0x6a,0x0b,0xbd,0x30,0xdd,0x3c,0xb0,0xf3,0xfd,0x3c,0xe1,0xc6,0x43,0xfc,0x02,0x99,0x46,0xcd,0x43,0x46,0x2e,0xd2,0x25,0x13,0xf1,0xd6,0x5f,0xca,0x24,0xbd,0xe3,0x81,0x81,0x66,0xba,0xa8,0x6d,0xaa,0x79,0x87,0x92,0xaf,0xaf,0xe0,0xc1,0xa1,0x0a,},"\x36\x12\x5c\xa6\x66\x68\x80\x29\x06\x23\x7e\x63\xa2\xfe\x5a\xe6\x10\xf1\x1a\x7c\xf9\x25\x20\xd1\x9e\x66\x90\xa3\xad\xfa\xfd\x5d\x07\xa7\x84\xbc\x1a\x0e\x18\x52\x73\xd1\x1d\x34\x0d\x5e\xff\x90\x15\x97\xde\xdf\x45\x0c\x46\x99\xd4\x3f\x3f\xb1\x68\xd5\x57\xf6\xc9\xc0\x30\x77\xc3\xcd\xc3\x70\xd3\x48\x32\xcc\xdf\x2a\x8e\x3d\x75\x79\x64\x90\xed\x02\x42\x89\x9d\x25\xdd\xf4\x4b\xfc\x66\xf3\x29\xcf\x4c\x45\x16\x87\x03\xc3\x1b\xc9\x20\x2d\x89\x0f\x39\x69\xff\xd3\xac\x35\xa1\x28\x18\xdc\xa7\x51\xce\xb8\x80\x8f\xe8\x1e\xfa\x26\xa5\xe0\xd2\x00\xc5\xec\x1d\x94\xa5\x09\x7e\xa7\x4b\x64\x98\xfe\x28\x8f\x30\xc4\x8d\x72\x7e\x9d\x3d\x35\xc8\xe1\x2d\x85\x42\x07\x02\x55\x6f\x28\x61\x48\x4f\xfd\x09\xb4\xf1\x22\x65\xcc\x9a\xba\xfe\xb8\x2c\xf5\x90\x02\x88\x95\xa7\xd0\x50\xff\x57\xcc\xf5\xf2\x80\x22\xd0\x16\xab\x40\x94\xb0\x62\xe4\x8b\x66\xfd\x36\xd1\xe1\x96\x26\xe5\x21\x5e\xfa\x40\xfb\x7e\x3b\x70\x62\xf8\x1e\x95\x48\x30\xc9"}, {{0xf9,0x25,0xd2,0x74,0xaa,0xf1,0xfe,0x1a,0x21,0x65,0x62,0x37,0x38,0x5e,0x97,0xf7,0x78,0x3e,0x78,0x09,0x0c,0x5d,0x42,0x17,0xfe,0xce,0x70,0x57,0xc8,0x0f,0x42,0x6d,},{0x3b,0x0f,0xc3,0x70,0xbe,0x3a,0x4b,0x19,0xa8,0x8a,0xb9,0x98,0xc5,0x95,0x04,0xff,0xb5,0x9a,0x87,0x60,0x63,0x38,0xe6,0x73,0xdf,0x5b,0x3f,0xab,0x4d,0x9b,0xfb,0x8d,},{0x79,0x54,0x9a,0x31,0x7d,0x10,0xa0,0xbe,0x32,0x2a,0x94,0xa1,0x51,0xad,0x11,0xe7,0x7e,0xfc,0x48,0x36,0xcc,0x80,0x06,0xa8,0x50,0x81,0x27,0x3d,0x76,0x02,0xa6,0x38,0x96,0x3a,0x9c,0xaf,0x19,0xc3,0xed,0xf1,0xe2,0x5f,0xad,0x1e,0x9d,0x68,0x70,0x1a,0x71,0xde,0xa7,0x27,0xda,0x6a,0x5c,0x5b,0xca,0xc9,0x33,0x95,0x89,0x22,0x4b,0x05,},"\x14\x3c\xaa\xfa\x5f\x62\xb1\x3e\x43\xdf\xfa\x49\xd4\x20\xfa\x99\xf7\x71\xb1\x92\x6d\x40\xd6\xcb\x2b\xbb\x42\x7f\x27\xb6\xc2\x66\xeb\x3d\xeb\x2d\x8b\xbb\xd4\x7b\x82\x14\xad\x40\x25\x1c\xb1\x90\x7a\xd6\x5e\xb9\x41\x93\xe5\x4a\xd8\x5c\x67\x00\xb4\x18\x9e\x80\xf1\xcc\x01\x54\xc6\x3e\xd1\x51\xa8\xbb\xbd\x30\xe0\x16\x37\xca\x58\xe7\x0a\xa3\xee\x52\xef\x75\xd0\x87\x30\x78\xa4\x05\x01\x4f\x78\x6e\xb2\xd7\x7b\x7f\x44\x22\xf9\x27\x82\x3e\x47\x5e\x05\xb2\x42\x45\xf9\x06\x8a\x67\xf1\x4f\x4f\x3c\xfb\x1e\xb3\x0b\xfe\xde\x7b\x32\x62\x23\x0c\xed\x9e\x31\x36\x1d\xb1\x96\x36\xb2\xc1\x2f\xdf\x1b\x9c\x14\x51\x0a\xcd\x5b\xc1\x8c\x0d\xdf\x76\x35\xe0\x03\x50\x3e\x6f\x71\xe1\xc3\x65\xcd\xfb\x4c\x65\xee\x75\xb4\xde\x06\x94\xaf\x87\x07\x63\x74\xd6\x31\xe6\xc4\xb8\xe2\x40\xfa\x51\xda\xb5\xe1\xf8\x0c\xa2\xa0\x6c\x49\xf4\x2e\xa0\x9e\x04\x75\xde\xfb\x18\x4d\x9c\xde\x9f\x58\xf9\x59\xe6\x40\x92\xaa\xc8\xf2\x02\x7e\x46\x81\x26\xf2\xfb"}, {{0x97,0x1f,0x80,0x6b,0xe6,0xf0,0x7d,0x41,0xbe,0x88,0x30,0xff,0x8d,0xae,0x70,0x4b,0x08,0x63,0x8a,0xd6,0xcf,0xf7,0x22,0xd8,0x43,0x25,0x38,0x12,0x7b,0x76,0x96,0x25,},{0xaf,0x6a,0xc9,0x8d,0xce,0x20,0x78,0xa6,0xc7,0x3f,0x60,0x97,0xba,0xb6,0x3f,0x20,0x5c,0xaf,0x69,0x53,0xaf,0xa2,0x84,0xd0,0x42,0xbd,0x50,0xa4,0xfc,0xe9,0x6c,0xb4,},{0x20,0x37,0xa0,0xa7,0x67,0x4b,0x84,0xff,0x27,0xd0,0xb2,0x2f,0x62,0xb4,0xba,0xc6,0x5e,0x2d,0xc0,0xf5,0xfd,0xc8,0x99,0xfe,0xb7,0x80,0x0f,0x25,0xc2,0x99,0x81,0xde,0xe6,0x41,0xc5,0xa5,0x0f,0x8b,0x94,0x10,0x97,0x0b,0x49,0xd2,0xd5,0x36,0x58,0xc8,0x9e,0xe1,0x69,0x61,0xdc,0xcf,0x53,0x91,0xa6,0x91,0x8f,0x2a,0x84,0xea,0xda,0x0b,},"\x01\x34\x55\xd0\x49\xaa\x54\xed\x99\x5f\xbd\x94\xe6\x36\x99\x55\x49\x53\x95\xe4\x43\x88\x22\x25\x9b\x10\x60\xe9\xa3\x47\x79\x04\x2a\x1a\x69\x21\x1f\x6e\xa2\x07\x73\x99\xdd\x23\x48\x06\xba\x0b\x35\x3c\xd7\x9a\x57\xe1\xc4\x9b\x25\x0a\xb2\x71\x06\xdc\xde\x57\x6e\xcf\xa1\x15\xea\xe4\x61\xfe\xbb\x12\xd2\xda\x25\xff\xcf\x17\xb7\x15\xf8\xd9\x5c\x2f\x0c\x42\x5d\x5a\x81\xf7\x00\x11\x5b\x70\xd4\x9e\x1c\xfe\x49\xfc\xaa\x14\xfa\x20\x5e\x28\xec\x85\x24\x7f\x1a\x6e\x71\x28\xbf\x3b\xb3\x06\x0d\xc0\x84\x64\xbd\xa6\x53\x85\x40\xd0\xac\x47\x20\x93\xe5\xa0\x72\x0f\xde\x2f\x3d\xc4\x78\x8e\x0e\x9b\x0d\xbf\xe2\xa2\xb5\xf1\xa0\xf3\xf8\x0d\xe9\x84\x02\x5b\x15\xc6\x5a\xf7\x7f\x67\x1e\x1c\x5e\x28\x40\x44\x4d\xe5\xc7\xed\xa0\x25\xe6\xdc\x1a\x3f\xf1\x6e\x26\xcc\x54\xcd\xee\xd5\x6b\xe7\x3f\x9b\x01\xab\x2b\x1b\xc1\x6c\x8e\xf5\x8a\x5b\x76\xdd\x47\x28\x78\x07\xe5\xc5\x0f\x0d\x7c\x0a\x5b\x81\x20\xdf\xde\x64\x5a\x01\x2c\x5c\xf1\x14\x91\xbc"}, {{0x2b,0xb0,0x65,0x2f,0x8f,0xff,0x69,0x01,0x99,0x11,0x48,0xc6,0x8a,0x32,0x67,0x87,0x72,0x71,0x00,0x6a,0xe9,0x58,0x91,0x49,0xbb,0x20,0x68,0x50,0xcd,0xf5,0x2f,0xb0,},{0xc0,0x3b,0x77,0xbe,0x98,0x3e,0x74,0xa2,0x34,0xc1,0x98,0x64,0x96,0xb2,0x92,0xe1,0x39,0x99,0x2e,0xb7,0x52,0x9e,0x70,0xb3,0xaf,0xad,0x7a,0xe4,0xfd,0xcf,0x8a,0x66,},{0x4e,0x15,0x8d,0xea,0xae,0xc3,0xd8,0x89,0x41,0x29,0x6a,0xf2,0xd2,0x73,0x41,0x01,0x2b,0x02,0x41,0xd4,0xe0,0xf4,0x6e,0x43,0x5e,0x37,0x5c,0x98,0x75,0xe8,0x9f,0x5e,0x32,0xc0,0x57,0xb5,0x27,0xbc,0x34,0x11,0xaf,0x09,0x6a,0x77,0xbf,0xce,0xb4,0x5b,0x98,0x3e,0xfe,0x45,0x5e,0x3f,0x03,0x15,0x5d,0x6b,0xc7,0xb0,0xac,0xc8,0xe6,0x0c,},"\xb9\x23\xca\x67\xe3\x96\xd8\x65\x6f\xa3\xdb\xce\x82\x89\xa3\x8b\xd3\xc1\x28\xce\xfb\x30\xef\xc1\x86\x2b\xb9\x44\xb4\x50\x78\x05\x41\x98\x24\xce\x2b\x83\xd6\x90\xef\x4c\xf1\x07\x49\x28\x17\x14\x3b\xf6\x4c\x02\x49\x89\xaf\x1a\x7d\x2e\x1f\x5a\xc9\x78\x74\xf8\x6b\xb0\xd3\x77\x3f\xf8\x40\xf5\x14\xd9\xa1\x39\x4a\x39\x59\xb0\x11\xd3\xa6\xb8\x16\xa3\xfa\xe5\xde\x17\xb2\xa9\xff\x34\x98\x63\xd2\x7f\xbb\xb5\x0c\xca\x73\x41\x08\x75\x10\x00\xd6\x35\x8c\xa0\x64\x7a\x93\xeb\x49\xe2\xe7\xaf\x06\x28\x7d\x48\xf2\xc0\x9d\x5c\x1c\x73\xe4\xd8\xf7\x7e\xa2\xbc\xaa\x73\x56\x79\x5b\x26\x72\x87\x19\xbe\xd5\xff\xdb\x82\x15\x78\xbd\x5d\x66\xbf\x92\xed\xaf\x8b\x23\x8b\x2b\xbd\x7d\x1e\x2c\x30\xa7\x87\xf9\x01\xa3\x3d\x0a\x76\x66\x9a\x9c\x3c\x7f\x2b\x55\x2c\xcb\x83\x49\xc7\xde\xd5\xe1\xa4\x61\x70\xcf\x28\xe3\x59\xe2\xfd\xd5\x4b\x05\xa5\x62\xf5\x28\xc6\x8a\x56\x97\x4d\xf8\x2d\x46\x66\x37\xc8\xe5\x32\x46\xa7\x21\x7e\x43\x86\x80\x1e\x0e\x32\x66"}, {{0xdb,0x9b,0x81,0x2c,0xb3,0xc7,0xc0,0x3b,0x97,0x7f,0x48,0x7d,0x3d,0x65,0xcc,0xd9,0xcd,0x2f,0x3d,0xee,0x11,0x60,0x20,0x67,0xdb,0xfb,0x72,0xb5,0x89,0xff,0x3f,0x79,},{0xff,0xa0,0x38,0xad,0x8c,0x3b,0x37,0x8c,0xe7,0x5d,0x65,0x84,0x4d,0x08,0xe3,0xd6,0xa9,0x2d,0x19,0x4a,0x1b,0x78,0x62,0xe9,0xd9,0x72,0x0d,0x20,0x67,0x9b,0x29,0x44,},{0xa6,0x28,0xa7,0x74,0x21,0xb2,0xab,0xab,0x57,0x6e,0xed,0x35,0xd2,0xee,0x3d,0x14,0x56,0x1b,0x21,0xfa,0x14,0xa6,0xe2,0xfa,0xc2,0x63,0xc3,0xea,0xdd,0x79,0xf2,0xfc,0x06,0x69,0xf9,0x42,0x9b,0x91,0x0b,0x84,0x22,0xb4,0xb2,0x9a,0xc0,0x26,0xa4,0x2e,0x98,0xd1,0x81,0xbe,0x35,0x07,0xc5,0xed,0x7c,0x74,0x8a,0x1f,0xdc,0xf1,0xd8,0x07,},"\xa7\x00\x92\xc7\x69\x7c\xd4\xa2\x09\x56\x7c\x38\xba\x7f\xb7\x1a\xa8\xf1\x5e\x58\x27\xa2\x08\x76\x92\x39\x43\xfd\x6a\xdc\x65\x9c\x98\x67\xac\x6f\x58\xa6\x1d\xc7\xce\xc3\xd3\x62\x41\x16\x82\x00\x0c\x1a\x9a\xd1\x29\x5e\xb8\xb7\x0f\x24\x2d\x86\xb5\x86\x5e\xb7\x6b\x87\xe3\xf2\xc6\x94\x1d\x26\x12\xee\x3b\xcd\xe8\xf1\x97\x65\x56\x67\x33\x15\x2e\xf5\x4e\x95\x69\x09\x43\x28\x5f\x78\xb3\x75\xf4\x03\x65\x85\xd4\x73\x9d\xee\xde\xef\x6d\x94\x6d\xb6\x1c\xa4\x58\xef\x4f\x65\x0d\xa9\x63\xc3\x85\xe2\x9d\xfd\xee\x41\x5f\xe4\x95\x84\x5f\x55\x19\x7a\x87\x0f\x8c\xde\xb5\xa0\x10\xba\x6b\xbb\x32\xbf\x1a\x58\x8c\xc7\x74\xd4\x89\x01\x84\xc4\xb2\x92\x4a\x5b\x80\x73\x31\x3b\xce\x22\x65\x85\xf1\xad\xfc\x22\x9c\x90\xbc\x6c\xc9\xd2\x12\xe6\x2f\x05\xd3\x3b\xed\xac\x96\x1d\x77\xcf\x8c\x26\x20\xe4\x51\xde\x81\x7f\x8c\x1b\xb1\x6a\x2c\x59\xff\x80\x4b\x63\x5a\x73\xa8\xcf\x8c\x18\x1b\x3f\x94\x01\xc3\xb6\x43\xd1\x8a\x2f\x70\x6e\xa9\xca\xe4\x70\x71\xa6"}, {{0xce,0x37,0x9b,0xbe,0x2f,0xa8,0xab,0xcb,0xa5,0x1c,0x7a,0x75,0x43,0xde,0x5b,0x71,0x80,0x77,0x1b,0x3c,0x44,0xbc,0x6b,0x41,0x89,0x2e,0x7b,0x88,0x97,0x9b,0xab,0x90,},{0x7f,0x3c,0xff,0x89,0xf4,0x1b,0xab,0xf4,0xfa,0x64,0xcb,0xa3,0x3a,0x5b,0xb1,0x7f,0x41,0x3b,0xbf,0x2a,0x1e,0x11,0x2b,0x50,0xa8,0xe9,0xb1,0xf8,0x21,0xd8,0x49,0xbf,},{0xda,0x98,0xdf,0xb1,0x89,0x38,0x5b,0x2c,0x85,0x3b,0x6c,0xf3,0x75,0x73,0x80,0x46,0xa8,0xf2,0x7e,0xf2,0x79,0x74,0xab,0xce,0xce,0xa1,0xdb,0x02,0x98,0x9b,0x95,0x1f,0xe4,0x33,0xa6,0xce,0x1e,0x22,0x5b,0x3f,0xa8,0x20,0x32,0xfe,0x06,0x0a,0x7d,0x3f,0x6c,0x18,0x3f,0xd1,0x15,0x7f,0x79,0x1a,0x06,0x4b,0x40,0x76,0x50,0x57,0x16,0x00,},"\x00\x1a\x74\xf0\x95\xc8\x14\xd3\xbe\xed\x67\xa8\xd1\x5f\xc1\x8e\xfe\x23\x5d\xc3\xf6\x45\x78\x12\xa4\x03\x9b\x7a\x46\xfe\x9a\x0e\x9d\xe8\x1a\x7a\x4e\x5f\xba\xb5\xeb\xe9\xe1\xe4\x80\x1b\xd1\x1b\x45\xc9\xf7\xad\x06\x36\xa0\x9b\xff\x42\x16\x4b\xe5\x74\x9a\x04\xc0\x2f\x0a\xb6\x1f\x0e\xcf\xdf\xef\x79\x9b\x82\x7d\xa6\xa2\x74\xc8\xd3\xb3\x9f\x2e\x38\x05\xa6\x79\x12\x87\xee\xdb\x23\x14\xd3\xf8\x42\xb5\x58\xb9\xb4\x89\xaf\xe1\xed\x37\xbb\xbc\xfc\x5e\x60\xa4\x31\xd5\xac\x60\xb3\x9e\x94\x6d\x90\x3d\x6b\xf6\xb1\x40\xe1\x2c\x7e\x07\xf9\xed\x7a\xc4\x6a\x39\x99\xc6\x24\x5c\x8a\xb1\xbd\xb2\x18\x79\xa3\x17\xa3\xdc\xd2\x57\xa5\xc4\xf3\x49\xb7\xf5\x9e\x4e\x43\xd6\x2d\x9f\x1c\xd1\x6f\x51\x8f\x1c\xa6\xca\xd3\x7e\x2c\xb2\x0f\x25\x98\xc4\x13\x42\x91\xc6\xb8\xa9\x8a\xae\x52\x47\xe2\x6e\xef\xb7\x6a\xa3\x8c\x9c\x82\x31\xc1\x7e\x9d\xbf\x27\x1c\xec\x80\xfb\xa5\xb4\xa8\x34\xbd\x9b\xe8\x1e\xa8\x41\x63\x7a\xa9\xcd\xd4\xc4\xbf\x26\xd7\xad\x24\xca\x3c"}, {{0x2b,0x2e,0xe8,0x09,0xd6,0x47,0x02,0x3e,0x7b,0x77,0xfc,0x54,0x1f,0x44,0x87,0x5a,0x35,0xfa,0x94,0x1d,0x37,0xf7,0xc5,0xb2,0x1f,0xd3,0x49,0x34,0xd2,0x39,0x19,0x35,},{0x2c,0x29,0xd5,0x3e,0x1b,0xf2,0xc7,0x87,0x9d,0x73,0xd2,0x0b,0xa8,0x8c,0xa0,0x7a,0x0b,0x21,0x6d,0x7f,0x6d,0x05,0xd9,0x36,0x63,0xa6,0x5c,0x3d,0x9e,0x10,0x63,0x3a,},{0x12,0xd9,0x06,0x85,0x77,0x55,0x72,0xc9,0xea,0xbc,0x9b,0xe2,0x57,0x4c,0xa9,0xae,0x66,0xf0,0xe6,0x52,0xe5,0x78,0xb2,0x17,0x36,0xcd,0x6e,0x65,0x4f,0x7c,0x6b,0x15,0x45,0x88,0x3d,0x56,0xbf,0x76,0x0c,0xcf,0xc3,0xcf,0x87,0x54,0x4e,0x00,0x04,0xc7,0x98,0x06,0x12,0x57,0xe1,0x30,0x03,0x0c,0xb9,0x97,0xa7,0x88,0x36,0x9a,0x9a,0x05,},"\xc4\x14\x7d\x64\xeb\xfd\xa4\x1a\x1b\xe5\x97\x72\x62\x95\x81\x04\xe9\x40\xc3\x87\x6b\xcd\x5b\x69\x56\xac\xfd\xec\x32\xc6\x60\x91\x4d\x62\x62\x3c\x21\x06\x63\xcb\x2c\xbe\x62\x49\xd7\xf5\x27\x49\x91\xc6\x0e\x95\x0e\x8e\x28\x09\x04\x99\x53\xc6\x95\x81\xd2\x46\x9f\x4f\xe9\x82\xc7\x43\x4f\xed\xd9\xd4\xe0\x0a\xe0\x88\x96\xd6\x2c\xc1\xfb\x98\x4d\xd2\x33\x15\x0c\xc2\x48\x3e\x15\x9c\xff\x40\x97\xdf\x8c\x03\x6b\xb6\x33\x00\x3a\xbb\xfb\xe1\x8c\x8f\xa7\x9b\x5a\x22\x27\x08\x38\x12\x3f\xc9\xbe\x39\xb8\x89\x2c\x80\x38\x4a\x38\x50\x28\xc1\xa8\x1e\xc5\x8c\x8f\x21\x06\x0e\x78\xaf\xd2\xc0\x4b\xfd\x2d\x30\xca\x39\x77\xc6\xed\xad\x51\x8c\xc1\xe2\x00\x4c\xdc\x14\xbf\x3d\x15\xf5\xf5\x28\xe5\xaf\x27\x7f\xa1\x82\x27\x58\x70\xe5\xc0\x12\xf5\xf8\x2f\xb1\xaf\xd0\x4e\xdd\xe4\x57\x8d\xdd\x21\x60\xa1\xa3\xdb\xc0\x50\xe8\x0b\xdd\x81\x1b\xc8\x8e\xad\x79\xbf\x93\xf0\x10\xcd\x0f\xd4\x43\x3d\x0b\xc3\x48\xda\xcf\xd0\x94\x7c\xce\xda\x62\xbf\xa4\x97\x11\xd0\x13"}, {{0x4e,0xa1,0x8d,0x6b,0x4a,0xf8,0x05,0x3b,0x88,0x5e,0xc1,0x88,0xbe,0x48,0xde,0xb8,0x6f,0xfb,0x2a,0x69,0xa4,0xce,0xc8,0x66,0x37,0xbb,0xd7,0xb4,0x1b,0x80,0x7c,0x46,},{0xe5,0x98,0x60,0x59,0x97,0x62,0x33,0xed,0x77,0x38,0x2c,0x3d,0x99,0x59,0xf3,0x4e,0x31,0x79,0x62,0x69,0x65,0x53,0xe8,0x6e,0xd1,0xe5,0x90,0x2c,0x4b,0xed,0xd1,0x67,},{0x27,0x57,0x0c,0x00,0x2a,0x48,0x7d,0x00,0x0c,0xa3,0x92,0x8b,0x83,0xcb,0x43,0x19,0x72,0x2c,0x46,0xdf,0xb4,0xcc,0xa2,0x60,0xde,0x79,0x0e,0xc0,0xe3,0xc1,0x93,0x26,0x88,0xf8,0x73,0x62,0x95,0x28,0x18,0xb5,0x4f,0x51,0xbc,0x7a,0xee,0xb2,0x63,0xf9,0x60,0xbc,0x0d,0xa8,0x96,0x4b,0xf3,0x12,0xef,0x93,0xe8,0x1f,0x06,0xc8,0x0b,0x04,},"\xe9\xc8\x9a\x1a\x11\x19\x37\x32\x06\xce\x40\xed\xe3\xb8\x9a\x82\xf8\x94\x62\xa1\xde\xe9\xe7\x89\xe9\x84\x5e\xec\x21\xf5\x71\xc0\xfa\xef\xd4\x30\xad\x33\x8e\x4a\x72\xc0\x47\xa3\x9a\x42\x59\x58\x03\x87\xfb\x9a\xac\xad\xdc\x36\xa2\xb5\x1e\x7b\x60\xa8\x7c\xa1\x32\x1f\xf8\x06\x79\x4c\xd6\xdd\x45\x49\xa4\xdf\x45\xc2\xda\xe3\xe5\x39\xc4\xd7\xd0\x6b\x6e\x6e\x9f\x46\x6f\xfc\xa2\xfa\x49\x78\xce\x3d\xc7\x92\xe4\x4a\x62\x83\x88\x0c\xd1\x38\xa7\x5a\x22\x6f\x98\x5d\xa4\x1f\xfd\xc0\xe3\x2a\x5a\x85\xc8\x5f\xe9\xa4\x3a\xe7\x8f\xcf\xe5\x7f\x4d\xd7\x54\x0a\x6d\xd3\x92\x4a\x49\xab\x39\xeb\x69\x95\x0d\x42\x11\x51\xd9\x6b\x1e\x4f\xd3\x93\x58\x90\xf6\x34\xcd\x52\xa7\x3a\x75\x5f\x5c\x2f\xb7\x2f\x9c\xd5\xa2\xe6\x7e\xa9\x30\x91\x5e\x13\x3b\x47\xcf\x6b\x7c\x10\xa9\xd8\x89\xc6\xaf\x6b\x5f\x1f\x4f\x51\x09\x4d\x27\xfb\xba\x22\x8a\xc2\x26\x8b\x34\x40\x27\xfd\x49\xe4\x26\x34\x3c\xc0\x13\x43\x99\xb4\xb5\x10\xaa\xea\x50\x23\x4d\xf4\x2c\x37\xfa\x1c\x4f\x4d\x0e"}, {{0xfc,0x1b,0x75,0xd1,0x7d,0x38,0x07,0x21,0x73,0x51,0xd2,0xaa,0x40,0xd9,0xb0,0x4f,0x52,0x5b,0x89,0xed,0x3f,0x5f,0xcd,0xb3,0x11,0xbe,0xc2,0xae,0xc5,0xcb,0x7e,0xce,},{0x55,0xe4,0x84,0xe7,0x74,0xa4,0x39,0x2a,0x9d,0x6e,0xef,0xf8,0x35,0xa8,0xfb,0xb2,0x32,0xcf,0x62,0x76,0xa8,0x9c,0x74,0xfc,0x0d,0x1b,0xb2,0x04,0x5a,0x8b,0x21,0xbe,},{0x9a,0x68,0xd1,0x51,0xfe,0xa3,0x90,0x98,0x93,0x35,0x9e,0x60,0xb9,0x6b,0x68,0xb2,0xa3,0xe2,0x94,0x6f,0x2b,0x47,0xb8,0x75,0x39,0x8a,0x1e,0x39,0xeb,0x01,0x46,0x3d,0x35,0xea,0xe7,0xd9,0x76,0xf8,0x33,0xa7,0x62,0xb5,0x1f,0x27,0x26,0xee,0x0d,0xcc,0xad,0x5c,0xe3,0x60,0x05,0x64,0xfd,0x9d,0xd5,0x8c,0x23,0x80,0x7f,0xdf,0xfd,0x05,},"\xd0\x31\xbd\x11\xda\x30\x80\x97\xe3\xbe\xb6\xff\xdb\x26\x00\xee\x6a\x19\x3c\xa6\xd8\x32\x45\x01\xc9\x72\xb1\xa2\x51\x66\xfa\x7a\x36\x9f\x5b\xc8\x82\xea\x45\x61\x2c\xf0\x25\x80\x25\x4d\x21\xb4\x0b\x03\x63\x23\x7e\x83\x5d\xae\x26\x56\xc1\xb7\xf4\x73\x6e\x88\xbe\x53\xd6\xb1\x19\xc0\x7f\x57\x29\xbb\xd8\x2f\x67\xde\x03\x58\x83\x22\x87\x92\x43\xc5\x99\x0a\x7e\x61\xf5\x69\x07\xb2\x41\x71\xa5\x7c\xbb\x0b\xbe\xfb\xa2\x31\x62\x77\xaf\x93\x26\xf9\xcb\xf3\x53\x8b\xcb\xf6\x78\x0b\xe4\x18\x25\xa2\xca\x77\x4b\x41\xbd\xb1\xcd\x5c\x60\x88\x51\xec\x23\x39\xeb\x2f\x4f\xee\xdd\xaa\x89\x1a\x63\x26\xb2\x9d\x97\xd7\xfb\xf3\x11\xe3\xbb\x74\x9c\x5d\x4c\x05\x8d\xcc\x14\xf4\x52\xf9\x33\x49\x91\xe2\x71\xc1\x6d\x65\x08\xc8\x18\x63\x39\x27\xf4\x29\x80\x4c\xa7\xa3\x81\x70\xf1\xb9\xf6\xbd\x73\xed\x67\x5e\x11\xe8\xc0\xd3\x21\xfa\xc9\x12\x73\x0b\x4b\xa2\xf7\xc4\x28\x53\x4a\xdc\xaa\x4d\xad\x31\x4c\x55\x80\x7e\x6c\x64\x2d\x49\x4c\x6b\x2f\x0e\x8c\xd1\x29\x77\x5c\xc0"}, {{0x0d,0x0b,0xf4,0xd4,0x2e,0xf8,0x10,0xb1,0x79,0xeb,0x84,0x17,0x71,0xde,0x6d,0xbd,0xe7,0x63,0x61,0xca,0xf8,0x94,0xe4,0x2a,0x14,0xb1,0xe0,0x97,0x87,0xea,0x3e,0x06,},{0x71,0x71,0x51,0x0b,0x43,0xfc,0x17,0xef,0xa8,0x0b,0x15,0xe3,0x20,0xb1,0xb0,0xa4,0x08,0x33,0x25,0x42,0xe0,0xd3,0x6e,0x4a,0xb9,0xa6,0x49,0xcd,0x94,0x1b,0x5a,0xed,},{0x24,0x44,0x6b,0xdf,0x03,0x41,0x6a,0x4d,0x08,0x61,0x44,0x66,0xfb,0x85,0x1d,0xb5,0x0e,0x91,0xa6,0x23,0xca,0xcd,0x1b,0x0b,0x35,0x66,0x0f,0x3c,0xf9,0x33,0x20,0x0e,0x15,0x30,0x87,0x08,0xda,0x34,0x99,0xa5,0xad,0x25,0xf0,0xf0,0x30,0x6b,0x79,0x42,0x76,0x2e,0x20,0xa7,0x65,0xb7,0xca,0x9b,0x90,0x1c,0x75,0x0b,0x3a,0x95,0x32,0x0a,},"\x8e\x21\x79\x97\x5d\x0a\x8e\x5a\x69\xfe\x87\x5a\x3c\xb1\xe7\x9a\xec\x49\xc3\x85\x3e\x30\xdd\x03\x20\xfe\x3e\xbf\xb6\x38\xb8\x2f\x89\xad\x16\x43\x03\x6b\x37\xe5\x6e\x0b\x55\xe0\xa9\xe2\x2a\x4e\x28\x3d\x7a\x27\x48\x5c\xe9\x10\x2d\xb6\x78\x7d\x66\x28\xb7\x79\x13\xe1\x08\x96\x77\x4e\x49\x5c\x26\xe8\xba\xb2\x6e\x7f\x9a\x94\xd2\x9a\xaa\x36\xae\xc9\xc2\x6a\xd3\xf5\x0e\x5d\x8c\x0b\x76\x98\xbb\x5f\x01\xb8\x76\xd0\xd6\x5f\xcf\x5e\x9e\x32\xcd\x7b\x89\x82\x9e\xd0\x5b\x0b\x8f\x63\xa9\x38\x58\x98\x5b\xc9\x56\x9f\xce\x42\x9f\xd3\x7a\x21\x1a\xbe\xd6\x50\xf5\x85\xc3\xb5\x59\x00\x44\x3b\x6c\x5d\x6e\x8a\x48\xba\x67\xde\xee\xd0\x7b\x76\xe9\x69\xfc\x88\x43\x0f\xce\x27\x09\xc0\xbb\x5c\xe9\x26\xab\x7f\x44\xe0\xcd\x79\xf4\xec\x35\x9e\xf7\x67\x48\x88\x3f\xcc\x3d\x02\x6e\xdd\x06\xc8\xb9\xcb\xa5\x4b\x99\x0d\x30\xaa\x41\xf1\x44\x8a\x10\x89\x3f\xb0\x53\x92\x80\xc5\x99\xd4\x23\x61\x43\x3a\x34\xcd\xaf\xd8\xeb\xdd\x92\xef\xb9\xc3\x8a\x36\xda\xf4\xc7\x40\x60\xc6\x96"}, {{0x57,0xb5,0x19,0x4d,0x26,0xab,0xe4,0xab,0x21,0x16,0xc0,0xf0,0x3d,0x23,0xdb,0xe1,0x16,0xd4,0x88,0x25,0xa2,0x5e,0x77,0xd6,0x46,0x48,0xb4,0x36,0x92,0xae,0x25,0xbf,},{0x49,0x9c,0x02,0xdb,0xad,0x2a,0x4e,0xab,0x3b,0x6f,0xf1,0xab,0xa3,0x94,0x4b,0x91,0xc3,0xf2,0x73,0xa3,0x82,0xc5,0x48,0xa6,0xf3,0xa1,0x9c,0x83,0xf0,0xa8,0x67,0x24,},{0x4c,0x73,0x45,0x96,0x0c,0x8f,0xd4,0x8a,0x7d,0xea,0xd7,0x1d,0xbd,0x61,0x90,0x84,0x68,0xef,0xa8,0x65,0xa1,0x35,0x56,0x8c,0x8f,0x9c,0xa0,0x05,0x54,0x83,0x46,0x86,0x17,0xa7,0xe3,0x35,0x84,0x0f,0x57,0xc6,0xcd,0x8f,0x2c,0x98,0x05,0xcd,0x47,0xa9,0xd7,0xcd,0xfd,0xe5,0x3d,0xa8,0xef,0x4f,0x1a,0xdb,0xb6,0xf6,0x98,0xaa,0xf1,0x00,},"\xb4\x81\x3c\x9d\x13\x21\x5f\xe9\xf6\x3a\x78\xff\x7a\xc9\x51\x73\xeb\x81\x0b\x46\x13\xf0\xf4\x8d\x68\x76\xb2\xbd\x3b\x2c\x72\xbc\x7d\x98\xcb\x1a\xc3\x2b\xc4\x1c\xa4\x7f\x09\x89\x6f\x79\x20\x4e\xcf\xb8\x26\x4c\xe8\xf3\xc3\xe7\x6d\xc1\x24\xda\x8d\xdc\x6e\x0d\xfc\x1e\x13\xb5\xa5\x29\xf2\x0c\x82\x61\x3f\xb9\xa8\x2e\x5f\x5d\x77\x32\x6a\x86\x1f\xae\xda\xbc\x73\x25\xc5\x9a\xf3\x3d\xae\x67\x44\x02\x5e\x64\x97\x74\xfc\x4f\x79\x13\x4b\xf9\xf6\xe3\xd5\x87\x5d\xd9\x1b\xc8\xa1\x4c\xc3\x6a\x66\x28\x3d\x01\xd8\xd1\x08\xc1\x33\x27\xec\xa5\x30\x57\xba\x50\xbf\x21\x0c\x19\xf1\x39\xde\x64\x94\x98\x26\x46\x19\x8a\x12\x46\xc2\x71\xb0\xa3\x68\xc1\x0a\xab\x95\xcd\x89\x61\x23\x5d\x74\x2d\xf4\x54\x5b\xe6\x8b\xd0\x10\xdc\x0d\xb2\x3b\x67\x3e\x62\x36\x09\xe4\x20\xee\x76\xb1\x05\x6c\x52\x0f\x9c\xe8\xfb\xe8\xee\x18\x63\xdf\x97\xd1\x7b\x71\x74\x63\x6c\x3a\x2b\x61\x22\x95\x09\x19\x48\x81\x0d\x1d\x4b\x8a\x58\x43\x76\x0a\x28\x87\xdc\x55\xef\x51\x2a\xf0\x41\xec\x54\xfa\xd3"}, {{0x06,0x8d,0x27,0xb2,0x1e,0x2a,0xcf,0xcc,0x19,0xc3,0xe9,0x67,0x3d,0xd4,0x41,0x42,0xd9,0x8a,0xac,0xae,0x89,0x49,0x30,0xe2,0x0c,0xa0,0x67,0x43,0x9e,0x74,0x9a,0x79,},{0xe2,0x2d,0xdd,0x39,0x6f,0x95,0x5b,0xb9,0x0e,0x28,0x47,0x76,0xaa,0x76,0xe9,0x21,0xe5,0x06,0x99,0xd0,0xca,0x89,0x14,0xa9,0xb7,0xb8,0x41,0xeb,0x5f,0xf4,0x7d,0x6d,},{0x0c,0x17,0x3c,0x48,0x8a,0xd0,0x01,0xcb,0xb9,0xc4,0x3d,0x7b,0x30,0xa7,0xc0,0x71,0xa2,0xfd,0xb0,0x8c,0xf7,0xf3,0x7d,0xaf,0x71,0xd7,0xae,0x71,0x28,0xdc,0x0d,0x43,0xf0,0xf0,0x95,0xb2,0x92,0x9c,0x54,0xb7,0x73,0xed,0x4a,0x1f,0x0b,0xf0,0xdc,0x4f,0x36,0x4f,0x06,0x01,0xe8,0xd5,0xae,0x06,0x2f,0x5b,0x78,0xc0,0x5b,0xfb,0xc7,0x02,},"\x1c\x68\x15\x42\x3d\x1a\x2c\x5e\xbe\x88\x28\xd1\x64\x65\x27\xc1\x7b\x20\x06\xe5\x47\xf0\x16\xb5\x35\x0f\x01\x0d\x79\xb1\x3d\xf4\xfb\x8c\x6e\xd5\x7b\xa9\xc2\x6c\x3c\xb0\xe0\xa6\x41\x78\xb6\x50\xa3\xea\x54\x44\xa4\xfa\xd5\xb2\x0a\x3e\xb8\xca\xa7\x02\x63\x40\x11\xcf\x78\x92\xa0\x72\x7b\x6e\x81\x50\xb0\x77\x04\x29\xa3\x7a\x8a\x0b\xb3\xa7\xed\xb8\x91\xa7\xc9\x02\x40\xbc\x03\x60\xb1\x4e\x6d\xd7\x70\xa9\x90\xb3\x1b\x31\xf3\x3d\xdb\xf6\x53\x98\x8f\x82\x74\x2e\x5e\xec\x31\xb2\x73\x68\xeb\x0e\x4f\x1e\xcf\x4d\x67\x6f\x49\x21\x4a\x52\x0d\x1e\x5b\x2b\xbb\x59\xac\x2e\x13\x26\x7e\x07\xa0\xcb\xac\xbe\xd9\xf9\x4d\x74\x73\xed\x69\x78\x28\xb0\x92\x8f\xcc\x61\x6e\xe0\x2e\x51\xfc\xd8\xdb\x4d\x8f\x75\x33\xb7\xb1\x39\xa0\x5e\x06\xf9\xe0\xea\xe3\x29\x93\xe3\x02\x5a\xef\x05\x90\xb3\xfb\xb4\x29\x2a\x3a\xc4\x07\x65\xe8\x58\x4e\xad\x00\x26\x6a\xcd\xcb\xdd\xe1\x45\x7a\x03\xb7\xd5\x7b\xd5\xc9\xe6\x4f\xb0\x6b\x64\xa5\x0f\x35\xf0\xa1\xec\x34\xb6\xdd\xbd\xe7\x67\xb9\x6f\xfd"}, {{0xa3,0x4d,0x52,0x56,0x31,0x59,0xe0,0x72,0x3e,0x9f,0x3f,0xd1,0x33,0xbd,0x96,0xe2,0x0a,0xda,0xe6,0x23,0xf8,0xc7,0x98,0x01,0x3b,0xc3,0x6b,0x44,0x14,0x89,0xbd,0xc2,},{0x1f,0xb6,0x58,0xe6,0x45,0xde,0x6d,0x3e,0xfd,0xb0,0x83,0xa7,0x3f,0xbd,0x59,0x2f,0xcd,0x4b,0x80,0x0e,0x03,0xc7,0xbd,0x68,0x1a,0xea,0xe6,0x57,0x6b,0xfb,0xbe,0x2f,},{0x5f,0xab,0x5a,0x71,0x40,0xd4,0x78,0x73,0x68,0x43,0x05,0xaa,0x63,0x53,0xd3,0x86,0x2f,0x5f,0xc1,0x3e,0x54,0xa4,0x0c,0x95,0x63,0xcc,0xea,0xc8,0xf7,0x40,0x08,0xc6,0xc4,0x45,0x63,0x1f,0xa8,0x64,0xe0,0xf1,0xc3,0x45,0xb5,0x95,0x4f,0x80,0x05,0x6a,0xeb,0xa2,0x56,0x62,0xb7,0x88,0x27,0xb5,0xe8,0xe3,0xa9,0x43,0x78,0x13,0x72,0x0f,},"\x1d\x21\x5f\x85\xc0\x89\xf3\x5f\x30\x7a\x74\x6c\x66\xc7\xc1\xe4\x1d\x6b\xa3\x77\x30\xd7\x59\xe6\xe5\x62\x2d\x6c\x6a\x19\x8e\x40\xf6\x3d\x37\x87\x3b\x71\x5d\xf7\x51\x8b\x3c\x6b\xb5\xe9\x5a\x46\x77\x26\xb9\x7c\x9a\x0f\x8f\x5d\xfc\xdb\xfd\x1e\x0d\xe3\x57\x66\x1d\xde\xab\x55\x50\x42\xb9\x45\xfd\x89\x9f\xad\x6d\x38\x2d\x79\x17\xda\x9e\x12\xdf\xbd\xa0\xd6\x99\x00\xb3\x97\x51\x65\xa7\x3d\x0a\xc9\xde\x01\xfd\x30\x48\xb8\xfe\x5f\x0b\x90\xbe\x67\xe0\x3d\xc2\x2f\x65\x3a\x0a\x13\xeb\x4b\x0b\x75\x3f\x3f\x3b\xbf\x78\x73\x69\xeb\xd8\xbf\x5e\x00\xeb\x78\xbf\x0b\x35\x15\xa9\x1e\x68\xb1\xd5\xfc\x69\x20\xbf\x4f\x42\x59\xf8\xa7\x30\xef\xc7\xf1\x01\x6d\x50\x1e\xf6\xfb\x7c\xb8\x36\x6f\xc8\xe7\x16\xcf\xa5\x0e\xa8\xb2\x03\xcc\xa1\xa3\x16\x70\x7e\x0b\x0f\xc5\x7e\xaf\xce\x82\xd6\x2f\x7f\xf3\xae\x04\xac\x8f\xd0\x41\xb5\x5b\x19\xa3\x52\xa6\x9e\x6d\x4b\x79\xd0\xe6\x50\x17\x51\x68\xe3\x4f\xa3\x35\x8e\xac\x81\x6c\xec\xf2\xc8\xdd\x1b\xf2\xa5\x89\x11\x3e\x91\xbb\x81\x8f\x91\xf8"}, {{0x58,0xdf,0xe7,0x68,0xbf,0x52,0x11,0x84,0x94,0xb2,0x99,0x75,0x15,0x4c,0xf4,0x52,0xbd,0x97,0x46,0xdc,0x7d,0xe1,0xd6,0xbc,0xd1,0x8e,0xe6,0xa0,0x5a,0xcf,0xd8,0x58,},{0x0f,0x14,0x76,0xc6,0xcc,0x2a,0x1b,0x47,0x64,0xaf,0x75,0x80,0x5e,0x77,0x34,0x1f,0x14,0xa0,0xd8,0xb0,0x9c,0x6a,0x5b,0x2e,0xa2,0x87,0xfd,0x51,0x7c,0x3f,0xa6,0xb9,},{0x97,0x71,0x37,0xa3,0x8a,0xf4,0x4f,0x4b,0x26,0x2a,0xbf,0xf7,0xe0,0x72,0x82,0x43,0x3c,0x58,0x92,0x6d,0x56,0x2f,0xbc,0x61,0x80,0xbd,0xe6,0xcd,0x94,0x97,0x86,0x1f,0xb6,0xd9,0x55,0xcf,0x38,0x3d,0x99,0x9f,0xa1,0x03,0x7b,0x8b,0x17,0x54,0xce,0x88,0x8c,0x9f,0xfc,0x15,0x60,0xa4,0x51,0xd0,0xe9,0xdb,0x8d,0x74,0xd2,0x94,0x06,0x04,},"\x60\x97\x94\x20\x1c\x4f\x6f\xaf\x48\x87\x90\xd6\x1d\xbf\xf3\xf4\x1b\x32\x8c\x5b\x06\x95\xcb\xe9\xaa\x8a\x13\x6d\x72\xb4\x97\x7b\x21\xb5\x00\xf2\x16\xe9\xf3\x21\x68\xad\xa8\xc1\x3b\xff\x25\x32\x76\x47\xe3\x0d\x8a\x24\x4d\x74\xd8\x83\x03\xab\xc9\x0b\x7f\x71\xaa\x07\xca\x04\xd1\x7b\xc8\xa0\x16\x7d\x6e\x63\xfb\x88\xba\xa1\xda\xb8\x1d\x50\xf1\xe9\x1f\x46\xf5\xaf\x77\xf2\xe8\x40\x8b\x82\x63\x36\xa3\x50\x52\xef\xff\xdf\x4a\xf7\x95\x96\xaf\x1b\xb2\x25\x9f\x83\xc1\xbc\x10\x9c\xfd\xc3\xdd\x50\xfd\x96\xd3\x10\xf2\x7e\xa4\xc6\xc7\x69\x0f\x21\x81\x5e\xa9\x2b\xd7\x93\x89\x68\x0c\xfe\x3e\xd4\x0c\x80\x18\x11\x90\x68\x8d\x24\x22\x2d\x9a\x1e\xd5\x2c\xe6\xa1\x6b\x41\xdb\xd9\x10\x7e\xb6\xd2\xe3\x59\x4e\x44\x94\xd7\x5d\xd7\xc0\x89\xe3\xb2\x6f\xfd\x00\xd1\x00\x3c\x92\xc4\xc3\x9a\xe5\x38\x2e\xf9\x29\x14\x91\xa8\x80\xca\x4e\xc3\xac\x2b\x86\xe6\x67\x19\xb9\x2b\x6f\x7c\xea\x2c\xb0\xbb\xb1\xcf\x62\x4d\x0d\x1a\xbe\xae\x55\x6e\x5f\x73\x90\x9d\xd5\x46\x27\x70\x37\xec\x97\x2f\xd4"}, {{0x5a,0x63,0xef,0x9b,0xd7,0xdb,0xf0,0xe8,0x9f,0xef,0x15,0x59,0x83,0x65,0x9e,0x8a,0x0a,0x6c,0xa0,0x02,0xbc,0x42,0xfa,0xd5,0xa4,0x5a,0xf8,0xe0,0x28,0x19,0x23,0xf4,},{0xe6,0x32,0xf4,0xdc,0x99,0x42,0x31,0xcc,0x17,0x90,0xc2,0x1a,0xfa,0xda,0xa9,0x77,0xa5,0x89,0xb0,0xeb,0x0d,0xa1,0x9f,0xcb,0x27,0x92,0x91,0x1b,0x15,0xec,0xf8,0xaf,},{0x75,0x46,0x1f,0x99,0x65,0x0c,0x03,0x68,0x05,0x81,0x13,0xa1,0x5b,0xa1,0x6b,0xd2,0x33,0x7b,0x2e,0x63,0x3d,0xa3,0x81,0x12,0x87,0x8c,0x48,0x34,0xfa,0xc9,0xba,0x2e,0x30,0x7c,0x86,0x6c,0x02,0xaf,0x79,0xbe,0xa3,0x36,0x59,0x61,0x4c,0xbb,0x44,0x65,0xc5,0x7e,0xc3,0xef,0xfd,0x4c,0x47,0x8a,0xe3,0x8a,0x34,0xa0,0x5c,0xf1,0xed,0x07,},"\x79\x6b\xc8\x36\x1c\x6e\x8e\xec\x39\x83\x8b\x24\xf5\x39\x71\xe8\x20\xf8\x23\x61\xe0\x51\x0e\xb4\xde\xf1\xdb\x25\x12\x38\x7d\x6b\xf3\x5b\xbd\xfa\x31\x88\x79\x20\x94\x35\xd6\x88\x7b\x14\x10\xb3\xeb\xc1\x45\x5f\x91\xf9\x85\xe0\xfa\xb1\xce\x1c\x50\x5c\x45\x55\x76\xbc\xa0\x35\x39\xd0\x48\xad\x3a\x0e\xd1\xf1\x1c\x73\xba\xc6\x80\x9e\x2e\xa1\x47\x97\x5b\xee\x27\xc6\x52\x61\xac\xa1\x17\xdf\x0f\xae\x70\x08\xe2\xc3\xc1\x30\xbe\xc5\x53\x3a\xb8\x93\x51\xc2\x14\x0c\x9d\x1a\x62\xbd\xf6\x88\x62\x97\x87\xf9\x54\xe1\xc6\x10\xcb\xb7\x5e\xdb\x86\x20\x9d\x7c\x35\x7c\xd0\x6e\xf4\x19\x31\xdd\x5d\xfd\x1c\x7d\x40\x7f\xa4\xee\x1e\xf2\x93\x93\xbe\xab\x57\x13\x17\x38\x02\xcc\xe2\xd5\x62\x29\xcf\xa7\x6b\x60\x16\x62\xc4\xd9\xa8\x4a\x49\x36\xc5\x2a\xbb\x19\x81\x37\x8b\x71\x7e\xb5\x5c\xb6\x04\xa6\x8d\x34\xf0\x3b\x21\x9f\x32\x22\x6c\xa0\xe6\x69\x34\x8a\x2d\x8d\x24\x53\x93\x0e\xb6\xe9\xc2\xbf\x66\xfa\x4e\x92\xc7\x51\x36\xe1\x48\xcd\xb0\x34\x13\x0d\x3f\x64\x63\x82\xe1\xc7\x15\x79\xac\x70"}, {{0x8b,0x2f,0x06,0x14,0x1e,0x40,0x11,0x63,0xf9,0x0f,0x67,0x4b,0x04,0xdc,0x90,0xdc,0xb6,0xdd,0x33,0x86,0x41,0x93,0x39,0x66,0x2e,0xcb,0x0d,0xff,0xad,0xf2,0x50,0x0b,},{0x54,0xda,0x93,0x4a,0x65,0x91,0x19,0x19,0x85,0x53,0xfd,0x45,0x66,0xb6,0x60,0xd8,0xd6,0x10,0xad,0xc3,0x29,0x0c,0xb8,0x48,0x29,0xc8,0x94,0x14,0x8c,0xf3,0xf6,0x7e,},{0xd6,0x8e,0x37,0x50,0xdc,0x56,0x43,0x23,0x97,0x40,0x1c,0x98,0xff,0x15,0x29,0xdb,0x9e,0xd4,0x8f,0xea,0x24,0x6d,0xd4,0xed,0x38,0x3e,0xc7,0x4c,0x1a,0x46,0x3a,0xeb,0x78,0x4c,0x87,0xb1,0xfd,0xa8,0xbb,0xce,0x97,0x0f,0xc9,0x7a,0xa9,0x80,0x7d,0xdb,0xe9,0x5d,0x41,0xfb,0x02,0x2e,0xa6,0x8c,0x1e,0x31,0x16,0x54,0xfa,0x1d,0xa2,0x07,},"\x1d\xeb\x25\xd4\x34\x58\x69\x03\x23\xa7\xd2\x6a\x26\x69\x50\x90\x99\x34\x74\xf4\x67\xc6\xfd\xe5\xdd\xb3\x4d\xa9\x45\xbe\x3c\xea\x2f\x6b\x75\x65\x2a\xe2\x1c\xbc\x4f\xd2\x27\x63\xa1\xb4\x55\x83\xe1\xc3\xe8\x8b\xbb\x5f\xea\x20\x49\xb7\x33\x6c\x91\x15\x99\x88\xc0\x15\x26\x82\x4c\xa3\xbe\xf1\x6b\x36\x2b\x92\x02\xb8\xb9\x75\x41\x85\xbd\x61\xbe\xa8\xf5\x39\xaa\xdf\x4a\x1a\xb1\x35\xfb\xc3\x1d\x2a\x8e\x33\x17\x80\x73\x10\x6c\xbb\xc0\x2d\x4c\xd0\xd3\xc8\xfe\xaa\x8e\xb7\x33\x08\x43\x56\x25\x17\x95\xaf\xbd\x78\xac\x3c\x4f\x8a\x3b\xa1\x9a\xed\x75\x5c\x64\x6f\x35\x56\x9c\x7a\x6c\x67\x5b\x6d\x69\x18\xe8\x34\x96\x9a\xca\x03\xf7\x1a\x2e\x72\xcc\xb1\x70\x03\xbb\x75\xb6\x2e\x85\x2a\xaf\x58\xb3\xba\xea\x89\xbc\xd6\x4a\x32\xeb\x14\xa6\xb9\xe1\x0d\xe4\x89\x71\xe5\x3d\x0e\x9a\xc9\x9a\x78\xf4\x2d\xe0\x38\x2e\xf0\xe8\x0e\xd3\xcf\xa3\x43\xf3\x5e\x4a\x99\x83\xb9\xae\xed\x98\x6d\x3a\x57\xf4\x7e\x5e\x46\xd4\x0e\x9d\x67\x73\x02\x80\x9a\x2d\x37\xe4\xec\x01\x1f\x05\x1b\x4d\x03\x1e\xd6\x00"}, {{0xdc,0x64,0x9f,0xbb,0x1b,0xee,0x0a,0x44,0x81,0x4d,0x6d,0x9e,0x90,0x80,0xd5,0xd9,0x0c,0x1f,0xc1,0x73,0xab,0x5f,0xef,0xed,0x82,0x6a,0x74,0x72,0x3a,0x77,0x4e,0x0a,},{0x02,0x14,0xc8,0x9f,0x38,0x67,0xad,0x2e,0x88,0x70,0xe5,0x0f,0x8c,0x2a,0x62,0x54,0x98,0x6d,0x9c,0x22,0x0e,0x33,0x38,0x41,0x13,0x00,0xcd,0x9c,0x64,0x04,0xd4,0xb1,},{0x0e,0x0c,0x5e,0x4e,0x18,0x43,0x75,0xda,0x4e,0xf7,0xe2,0xa2,0xe4,0x88,0x80,0x50,0xcd,0x84,0xe2,0xfe,0x21,0xd0,0x8e,0x84,0xa8,0x52,0xdb,0x2b,0xe3,0xfb,0xc3,0x72,0xc4,0x72,0xde,0x09,0x54,0xdc,0xd1,0xdc,0x11,0xae,0xc4,0x93,0xc5,0x69,0xf4,0x0f,0xc6,0xf7,0x7f,0x03,0xee,0x52,0x4f,0xb0,0x6e,0xc4,0x0f,0xaa,0x1d,0x6c,0xc1,0x0f,},"\x32\x87\x00\xa8\xae\x58\x1c\x1e\xdc\x4e\x2c\x00\xc7\x8b\xf4\x60\x60\x97\xf9\xbd\x75\xaa\xde\x20\x5a\x24\x3c\x5f\xd7\x43\x4d\x62\x22\xda\x93\x7e\x28\x81\xa2\xe3\xc5\x74\x35\x6d\x4d\x56\x79\x30\x1d\xa9\x9e\x11\xcf\x74\x9c\x27\x92\x1c\x8c\xaa\x2a\xb2\xa5\x64\xd8\x7c\x5d\xf8\xec\xf1\xa7\x2b\x68\x01\x84\x82\x4f\x69\x86\x02\x2e\x3f\xc9\x8b\xd2\xa2\x1c\x34\x55\xab\xf1\x15\x49\x54\xfb\x30\xc8\x98\x82\x94\x7b\x02\xf3\x5a\xf7\xb1\xbf\xad\x05\x23\x7d\x24\x2e\x2b\x74\x83\x2f\xc5\x36\x19\x6f\x2e\x59\xd1\xac\xd0\xc1\xdb\x6f\x19\x43\xd0\xf6\x04\x3b\xbd\x6a\x76\x90\x83\xed\x66\xba\x0e\x05\xa5\x0f\xeb\x0a\xcf\x72\xb6\xc1\x6b\xa9\xaf\x03\x9a\xfb\x7f\xe2\xa4\xaa\xeb\x4d\x06\x18\x1c\x5a\x18\x78\x68\x9e\x67\xa3\xf5\xd0\xad\x39\xe7\x94\xd6\x23\x9a\x7e\x0a\x12\xce\x82\x0c\x5b\xe6\x0f\xd5\xf1\xdd\x79\x70\x2f\x49\xd0\x2b\x79\x75\x5f\xe8\x73\xf5\x78\x5c\x72\xf7\x46\x25\xcd\x7e\x24\x28\x26\x25\x97\xd3\x14\x82\xc2\xc0\x50\x88\x01\xfd\x96\x31\x9d\x61\xb9\x1b\xa2\x53\xa5\xe7\x22\xf4\x14\xcf"}, {{0x39,0xb8,0x06,0x2d,0xa4,0x3e,0x64,0xe1,0x67,0x67,0x65,0xd6,0x2c,0x7f,0xb8,0xe0,0xa9,0x9c,0x4f,0xd4,0x17,0xd6,0xf7,0xe3,0x31,0x9b,0xb1,0x30,0x44,0x20,0x5f,0x3b,},{0x62,0x27,0xce,0xfe,0x88,0xea,0x4f,0xb2,0x7b,0x37,0xb5,0xf7,0x97,0x77,0x8b,0xd7,0x2f,0xda,0xfe,0xad,0xcc,0xd9,0xae,0xb6,0x7a,0xd4,0x37,0xce,0x08,0xfb,0xa6,0xa8,},{0xc5,0xf6,0x26,0x49,0x0c,0x0e,0xf4,0xe1,0xef,0xc3,0xed,0xeb,0x0c,0xbc,0x3f,0x7d,0xe2,0x67,0x05,0x7f,0xb7,0xb6,0xeb,0x8f,0x0c,0x81,0x35,0x84,0x96,0x5b,0xc5,0xc4,0x21,0xfe,0xed,0xf5,0x42,0x41,0xca,0xe0,0x01,0xec,0x6d,0x5e,0x25,0xc9,0xb1,0xfb,0xa0,0x38,0x5e,0x5d,0xbd,0x95,0xa0,0x6e,0xc1,0xd8,0xae,0x51,0x91,0x44,0x96,0x0d,},"\x74\x0a\xf6\x79\xe3\x06\x9f\xad\x05\x9f\xa4\x82\x5f\xa4\x1c\x59\xfb\xd4\x84\xaa\x64\x93\x03\xc2\x7c\x4f\x7a\x94\x71\x1c\x5b\x71\x3b\x2a\x6b\x89\x87\x85\x9e\x22\x71\xa6\xa7\x1e\xb0\xb4\xa1\x5a\xbd\xe4\xf5\x16\x8f\x6c\xb9\xdb\xdc\x6a\x27\xa2\xa1\x3d\x52\xc9\x72\x08\x96\xa1\xf4\xce\x3a\x53\x45\xee\x79\x3b\x6c\xc3\xad\x80\xd7\xd5\x81\x63\xd5\x45\x5b\x9c\xbd\x07\x3e\x2b\x7a\xdb\xff\x95\x59\x0c\x71\x72\x27\x1b\xd9\x1f\xef\xdb\xd0\x16\x57\xee\x17\x50\x65\x10\x36\xcd\xc3\x56\x0b\x44\x4c\xa2\x18\x4b\xf4\xf3\xea\x89\xfc\x97\x3a\xab\x6f\xb4\xa8\xee\x57\x04\xbb\xe5\xa7\x1c\x99\xfa\x3b\x5e\xf0\xd0\x39\x62\x49\x75\x82\x97\x69\x9a\xe2\x02\xb8\x19\x69\x0d\xc7\xac\x46\x92\x77\x03\x46\x90\x78\x45\xe2\x21\x0d\x53\x63\xad\xee\xc0\x3f\x0f\xc7\x76\x1b\x7e\x0e\xc0\xfe\xa1\xbc\xf6\xb0\x4f\xc5\x4b\x3e\x4c\x40\xd1\x9b\x8f\xa6\x49\xac\x84\x79\xe8\xf8\x07\x30\xc0\xc9\x4e\x9f\x4a\x1a\xd5\x06\xf2\xbc\xab\x0c\x49\x54\x0f\x6d\xec\xaa\x77\xb3\xd6\x57\xdc\x38\xa0\x2b\x28\xa9\x77\xec\xe4\x82\x54\x5a"}, {{0x52,0xf4,0x67,0x5d,0x8c,0xcd,0x0e,0xb9,0x09,0xdf,0x0a,0x51,0x66,0x48,0xdb,0x26,0xfa,0x03,0x3b,0xa4,0x1d,0x43,0xfc,0x38,0x45,0x89,0x6d,0x45,0x6e,0x14,0x26,0x5f,},{0xf3,0x9e,0x7d,0xaf,0xc9,0x7b,0x0a,0x84,0xdc,0xbf,0x7f,0xa1,0x4a,0x94,0x03,0xee,0x1f,0xa9,0x2b,0x85,0xe5,0xa7,0xe5,0xd0,0x5f,0x03,0x1b,0x44,0xdd,0xf1,0xf7,0x94,},{0x4b,0xf6,0x68,0x82,0x7a,0x72,0x0a,0xf6,0x88,0x98,0xa0,0x6e,0xa7,0xb4,0x45,0x45,0xa3,0x4c,0xa8,0x96,0xec,0xf3,0x11,0xfe,0xea,0x47,0xe0,0x68,0x6d,0x91,0x1f,0xad,0xaa,0x03,0x11,0x89,0x97,0x15,0x3c,0x65,0x36,0x1f,0xea,0x15,0xde,0x9b,0xb8,0x91,0xb8,0x90,0x98,0x72,0x04,0x55,0x08,0xff,0xad,0x0c,0xd9,0xea,0xb2,0x1a,0x97,0x02,},"\x74\x42\x71\x10\x85\x7c\xb4\xaf\x0a\x33\x42\xc2\xb5\x29\x97\xbc\xe1\xa0\xdb\x64\x05\xc7\x4e\x96\x51\xc5\xb8\x59\x79\xac\xb0\x71\xe5\x67\xfe\x70\x41\x2c\x4e\x0d\x8c\x9f\xa4\x21\x91\x4f\x6a\x62\xf2\xae\x42\x0b\x7b\x2f\x4c\xf8\x0c\x90\x57\x42\x21\x22\x22\x88\xb6\x58\x67\xea\xa6\x6e\x7e\x0a\x05\x57\xa2\x6c\x54\x9f\x9a\x7a\x4e\x70\x83\x8b\xa4\x07\x4b\x4c\xd7\xa9\xd7\x58\xb3\x78\xb8\x8d\xd4\x94\x41\xdf\x80\x2a\x44\x4d\xcb\xc3\x06\x24\x93\x3b\x59\x92\x2f\x33\xc2\x0f\x01\x9f\xe7\x8e\xe2\x4b\x8f\xba\x79\xa6\x82\xf3\x88\x50\x5a\xc9\xc9\x7f\x4e\xb8\x7c\x61\x18\x80\x02\x6b\x4c\x23\x30\x6b\x86\x51\x73\xf5\xd7\x16\xab\xc6\xcd\x9a\x99\x06\xdb\x34\x30\x13\x6f\x75\x41\x29\xc4\x43\xb2\x0c\x42\xbe\x2f\xbc\xbc\xd4\x40\x34\xd7\x14\xf5\x8a\x4b\xa8\xe7\x56\x60\x7a\x02\xb6\x08\xef\x49\x64\x8f\x2a\xd0\xce\xa9\x9e\x7a\xb3\x0a\x8d\xd7\x81\x40\x04\xf7\x25\xf4\x93\x01\xd7\xb3\x04\xdc\xda\x62\x5c\x29\x6d\x92\x8c\xb5\x81\x73\x6a\xb7\x39\xc8\x6b\x46\x92\x41\xa8\x25\x93\x51\xfd\x37\xb4\x78\x0a\x99\x93"}, {{0xba,0xd7,0x3c,0x9f,0xda,0x4c,0xeb,0x9d,0xa6,0xc7,0x01,0xc2,0xa6,0xe2,0xef,0xc0,0x46,0x7a,0xfa,0x0a,0x74,0xf8,0x75,0x0c,0x52,0xcf,0x1f,0xd4,0xc8,0xe7,0x48,0x9a,},{0xbb,0x0f,0x02,0x7a,0x90,0x35,0x37,0x6e,0x1a,0xa3,0x20,0x6c,0x3d,0x77,0x44,0x75,0xe3,0x51,0xf5,0x76,0x7e,0xf8,0x6e,0xf4,0x8a,0x72,0xc0,0x37,0xc2,0x4c,0xce,0x62,},{0x19,0x7d,0x6b,0x6c,0xc8,0x8a,0x98,0xc0,0x6d,0xfc,0xa0,0xc0,0x12,0x25,0xed,0xfe,0x38,0xa0,0xb2,0x28,0x9f,0x29,0xf8,0xa4,0x4e,0xc0,0x81,0x6a,0x95,0x2d,0x58,0x5e,0x2d,0x59,0xb5,0xb0,0x8d,0xe1,0x00,0xc0,0x60,0x62,0x96,0xcc,0xf5,0xe9,0x2a,0x99,0xe0,0x93,0x62,0x31,0x44,0xb8,0xb2,0x2d,0xb8,0x7d,0x92,0x92,0x25,0x54,0x60,0x05,},"\x74\xb9\x66\xcb\x78\x07\x71\xae\xe6\x3d\x73\x4d\xf3\x75\x67\x02\xd1\xd5\xfd\xed\xdf\x32\x13\x6c\x63\x58\xb8\x36\x31\x8a\x4f\x98\x4f\xe7\x1e\x77\x16\xad\xdd\xbd\x64\x9e\xba\x44\xcd\x42\x82\xe0\x05\x5d\x8c\x1e\xd2\xd3\x51\x23\xd6\x6e\x5a\x98\xf1\xc0\x83\x8d\xed\x56\x3b\x9a\x20\xeb\x80\x07\x53\x8f\xc7\xb0\x71\x3e\x7e\x48\x5e\x3c\x28\xf6\xeb\xc4\x21\xa2\x9d\xce\x25\x24\xdb\x7f\x29\x20\x57\x61\x03\x6a\xda\x62\xe5\xb0\xb7\xd5\xb7\xf2\x94\xff\x17\xf3\x38\x23\x2f\xa5\xfd\x42\xb6\xf7\x25\x33\x04\x09\x2d\x84\x8f\x50\x73\x52\x48\x59\x5d\xa0\xf7\xef\x28\xe5\x68\xe9\x91\x6b\xfc\x56\xd7\xed\x0d\x81\x1b\x59\xd5\xd8\x91\xae\x43\xe1\xb1\x98\x07\x13\x06\xbf\x52\x5c\x67\x8c\x63\x43\x99\x80\x05\xfb\xb7\x86\x9d\x1c\x40\xf8\xca\xc8\x07\xfe\x2e\xf0\x3f\x3d\x5b\x93\x3f\x58\x97\x8e\xf2\x90\x6f\xcc\xf7\x44\x4a\x29\x36\xe6\x3d\x92\x8c\x69\x09\x26\xc9\xc9\x94\xed\x3d\x66\x62\x63\xe9\x56\xfd\xfe\xa2\x77\x64\xbc\x5f\x74\x12\x5b\xc4\x6b\xc1\x02\xdd\x3e\x5f\xf9\x3b\x5e\x12\x3e\x4b\x38\xbd\xef\x69\x7e\x15"}, {{0x70,0x73,0x27,0xa4,0x31,0xdb,0xa7,0x76,0x39,0xb3,0x96,0x6b,0x2b,0xc0,0x95,0xf8,0xee,0xdf,0x57,0xf7,0xa2,0x00,0xe3,0xb0,0x07,0x7c,0xe4,0x20,0x38,0x9c,0x92,0xfe,},{0xee,0x24,0x96,0x91,0x08,0x64,0x18,0x9f,0xda,0xa3,0xc7,0x75,0x7e,0xb3,0xcd,0xa9,0xab,0x1e,0x70,0xfc,0x9e,0x7f,0x71,0xa3,0x8a,0x0b,0xfc,0x84,0x59,0x31,0xc9,0x5a,},{0xfb,0x99,0x02,0x9f,0xec,0xa3,0x87,0xa5,0xd7,0x65,0x96,0x1e,0x36,0x1d,0x71,0x72,0xb9,0x8b,0x7e,0x0f,0x11,0x29,0x0b,0xb1,0xe5,0xb5,0x7b,0x51,0xbc,0x21,0x23,0xd0,0xbc,0xe2,0x90,0x20,0x39,0x2a,0x4f,0xec,0x9a,0xe6,0xa7,0x2c,0x4c,0x38,0x6c,0xea,0x18,0x57,0xcb,0x8f,0x9c,0x50,0xaa,0x9a,0x76,0xd7,0xf1,0x68,0x7f,0xcf,0x29,0x00,},"\x32\xef\x31\xb6\x4e\xee\x70\x0f\xca\x2a\xb2\x1a\x26\x7f\x8d\x9d\x3b\xdc\x68\x9c\x75\x38\xfe\x95\x9b\xf7\x13\xfa\x99\x5d\xb2\xc0\xad\x36\xdd\xe4\x30\xa8\x41\x7d\x43\x7b\x72\xc7\x4e\x26\xdb\xe3\x1d\x93\x70\x1d\x46\x17\xfe\x51\x82\x5c\xff\x7a\x54\x4f\xc9\xf4\x4e\x43\x45\xe1\x4b\x4b\x11\xe1\x5f\x26\xff\xc2\xaf\x80\x35\xf3\xf9\x70\xe4\xdd\xa4\x4c\x0e\xbc\x03\x63\xc2\xb5\x6f\xde\x21\x86\x63\xbf\x78\x83\x90\x92\x53\x8f\xc2\xf3\x91\x53\xd4\xeb\x29\xda\x0c\x1a\x08\xaa\x96\x66\x01\xcc\x68\xca\x96\xe9\x93\xb0\x1b\x17\x3a\x26\x1b\x2e\xf3\x27\x65\x03\x82\xf5\x68\xfe\x94\x48\x55\xb0\xf4\xfd\x9d\x15\xe7\x52\xac\x74\xdc\xfd\x37\xb3\x78\x6f\xff\xce\xf2\x33\x39\xc2\x1e\x92\x70\xdc\xe8\x89\x1d\xd5\xee\xeb\xa9\x60\x8f\xdc\x7b\x6f\xbc\xc9\x9f\xa1\xb5\x90\x3d\xaa\x09\x68\xe1\xb6\x91\xd1\x9d\x06\xf2\x15\xde\xd0\x47\xef\x9d\x76\x61\x0f\x5d\xe2\x20\xf5\x04\x1b\x31\x3f\xaf\x9e\x96\xc9\xfd\x7d\xb5\x4b\x52\x25\x72\x6a\xf4\x35\xf9\xcb\xd9\xfd\x87\xab\x40\xce\x8f\x2c\x69\x40\xb5\x5f\x0f\xaa\xe8\x78\x50\xca"}, {{0x6a,0xa5,0xc9,0xf0,0x08,0xf9,0x90,0x47,0x3b,0xa4,0xa6,0x28,0x6a,0x41,0x66,0x14,0x02,0x66,0x61,0xf1,0x1e,0x1a,0x24,0xef,0xa8,0x1a,0xc3,0x58,0x52,0xd1,0xd0,0x70,},{0x60,0x5a,0xc9,0xb4,0xdb,0xdd,0x50,0x33,0xd6,0xc8,0x28,0xbf,0xaf,0xa9,0x3c,0x00,0x39,0x44,0x0a,0xa1,0x1c,0xa7,0x24,0xae,0x83,0x40,0x43,0xe0,0x7b,0xd0,0x32,0xd5,},{0x97,0x56,0x30,0x3b,0x90,0x65,0x5e,0x93,0x52,0x51,0x03,0x2a,0xb1,0x9c,0xfc,0x95,0xca,0x1c,0x2a,0x2c,0x3e,0xa2,0x8b,0x03,0x3b,0xd4,0x70,0x66,0xcb,0xd4,0xc7,0xd8,0x98,0x2a,0x8b,0x98,0x86,0xf1,0xb9,0xcd,0x02,0xe8,0x8a,0x65,0x56,0x4d,0xa8,0xdc,0xc3,0x4f,0x30,0x8b,0xa9,0xf1,0x01,0x44,0xba,0x46,0x9c,0x2e,0xfa,0x49,0xe0,0x04,},"\xb5\x16\x5d\x39\x63\xf6\xe6\xf9\xea\x56\x57\xe9\xf0\x7f\xf3\xa3\x21\xeb\x33\x8f\x9a\x8c\x3d\x3c\x42\x30\x6b\x2b\x27\x89\x78\xb3\x1c\x62\x3a\x63\x1b\xe3\xb0\x4c\x41\xed\xfd\xed\xdf\x53\x8e\x1b\x76\x5b\xc8\x78\x54\x01\xc1\xaf\x29\xd0\x46\x7a\x64\x41\x1c\x49\x73\x95\xd7\x55\xdc\xa0\x3a\xe3\x27\x2f\x4b\xc1\xfb\x19\x18\xdc\xc1\xed\x6f\x04\xd6\x49\x84\x04\xa8\xce\x14\x09\xd4\x47\xf5\x70\xa4\x35\x95\x22\xcc\x54\x62\x92\x02\xeb\xe5\x07\xab\x69\x38\x43\x14\x1b\xd5\xea\x05\x73\xb2\x0f\x32\x1a\x48\x3f\xf3\x83\xa4\x68\x97\xf5\x92\x6f\xe0\xb8\xaf\xc2\x55\x72\x70\x7b\x63\xee\xed\x28\x35\x32\x92\x8a\x41\x44\x19\x64\x97\x94\x2c\x57\x2a\xc5\x47\x60\x51\x39\x25\x6b\x0a\xa0\xea\xf0\x4d\xb1\xa2\x56\x01\x2e\xd4\x53\xb1\x73\xee\x19\xad\x6e\x9b\x1a\xf3\xf4\x5f\xf3\x04\x4a\x64\x1f\x8c\x8e\xb0\xac\x7b\xb4\x5a\xbb\xde\xd4\x72\x86\xb2\xa0\x69\xd3\x90\x86\x94\xee\x06\xf2\xfb\xd0\xef\x60\x5a\x79\x11\x02\x6e\xa9\xea\x3c\x49\x13\xf3\x8c\x04\xd8\xb6\x95\x65\xa7\x02\x78\x67\xab\x30\x92\xd0\x5f\x4c\xfb\x18\xfc\x7c"}, {{0x8e,0xfb,0x8b,0x79,0x74,0x2b,0xe2,0x1e,0x6d,0x31,0xde,0x67,0x8b,0xc8,0x14,0x50,0xba,0x86,0x21,0x08,0x2c,0xd6,0xf0,0x00,0x3e,0x22,0x86,0x1e,0x22,0x91,0xc4,0x81,},{0x33,0x38,0x1e,0x35,0x6c,0x4f,0xd3,0x86,0xa3,0xf7,0xb9,0x69,0xaf,0xd9,0xf5,0xc0,0x0d,0x20,0x67,0xb6,0x98,0xb3,0xf1,0xf0,0x0f,0x37,0x84,0x20,0x2d,0x30,0x84,0xcf,},{0x92,0x30,0x05,0xcb,0x48,0x48,0x40,0x2a,0xa8,0xf9,0xd5,0xda,0x74,0x03,0x0b,0x00,0x94,0x44,0x92,0x4c,0x21,0x4a,0xd6,0x00,0xdd,0xba,0xb4,0xc1,0x53,0xa6,0xff,0x02,0x2b,0x53,0xcf,0x63,0x64,0xcd,0x7e,0xe9,0x9b,0xef,0x34,0xfe,0x14,0x4d,0xa9,0x64,0xed,0xfc,0x38,0xa0,0xba,0x63,0x33,0x12,0x65,0x0e,0xbf,0x0e,0x55,0xa0,0x60,0x09,},"\x6b\x75\x03\x25\xd3\xa0\xf0\x8a\x14\x77\x00\xb5\x1a\x9b\x37\x25\x57\x10\x94\x81\x8e\xd6\x9d\x1f\x76\x10\x13\xeb\x86\xf3\x23\xf7\x3c\x49\xf5\xe4\x39\x87\x7c\x27\x83\xb3\x36\xd1\xf1\xa6\x74\xef\x3e\x43\x1f\xc1\xae\x01\x80\x08\x2d\xf5\xfc\xa6\x9f\x84\x81\x39\xfe\x6a\xb6\x73\x9a\x05\x92\xeb\xd6\xd4\x70\x5c\x7f\x01\x36\xb2\x21\x89\xa1\x1d\x60\xd4\xd3\xc9\xbc\x80\xfe\x7d\x7c\x00\x95\x2d\x57\x42\xf9\xc0\xc2\x12\x1f\xe7\x92\xdf\x13\x3f\x22\x1d\xb9\x91\xfc\x96\x0e\xe6\x4b\x9d\x32\xe0\x17\x8e\x54\x2b\xce\x8e\xfa\x8d\x03\xac\x80\x26\xcd\x77\xba\x8b\xf0\xb2\x42\x15\xb9\xfa\xed\x2e\xae\xc9\x20\xe9\x25\xd5\xec\x46\xff\xf6\xbd\xe7\x25\xe9\x1c\x82\x80\xe4\xad\xa2\x32\xa5\x43\x3a\xe9\x68\x0e\xbb\x53\xeb\x55\x55\x31\x47\xc9\x33\x70\x57\x48\x54\x89\x61\x54\x51\x42\x99\xc0\x93\x21\x9a\x11\x1d\xca\x4e\x63\x7a\xd5\x00\x13\x38\xc6\xd4\xd5\xee\x90\x98\xc6\x58\x32\xf7\xaf\x83\x5b\xcb\x62\x21\x28\x42\x30\x36\xc7\x9a\x57\x37\x73\x8a\x75\x39\xf8\xd4\xa6\xb8\xb2\x21\xb5\x6d\x14\x01\xae\xb7\x4d\x45\x71\xbc\x00\x9d"}, {{0xed,0x04,0x6d,0x68,0x8b,0x2b,0x0a,0x1b,0xc3,0xda,0xf2,0x11,0x9d,0xd3,0x21,0xa6,0x07,0xb1,0x6d,0x2a,0x2d,0x1d,0x96,0x3a,0xdd,0x12,0x09,0xc6,0x65,0xb5,0xcc,0xba,},{0x87,0x34,0xf1,0xff,0xcb,0xd7,0x1c,0xfd,0xe2,0x90,0x01,0x7e,0xa6,0x25,0x3e,0x58,0x0d,0x59,0xe6,0x5b,0x54,0x1b,0x46,0x52,0x1f,0x5e,0x5e,0xc1,0x45,0x1e,0xae,0xc6,},{0x72,0x1b,0xfd,0x47,0x76,0xcf,0xba,0x13,0x33,0x0f,0xd3,0x72,0x69,0xe9,0x79,0xc1,0xd7,0xb6,0xce,0x54,0xa5,0x1b,0x82,0xf4,0x56,0xe1,0x37,0x37,0x8e,0x58,0x2f,0x19,0x2a,0x12,0x08,0x9d,0xa5,0xab,0xa7,0x6a,0x7b,0x16,0x18,0x13,0xdc,0xe5,0x6b,0x72,0x89,0x2a,0x35,0x33,0x0c,0x94,0xf7,0xff,0x21,0xd0,0x9c,0xf0,0x9e,0x55,0x35,0x04,},"\xb9\xcc\x90\xfd\x8d\xe2\xa1\x41\xf9\x51\x16\xdb\x3b\x04\xbe\x83\xe9\x85\x22\x59\x7e\xc2\x17\x49\x64\x24\x51\x80\xb9\xa4\x73\x76\x7d\x6d\x47\x0a\x21\x7d\xb5\xff\x5a\x1a\xb7\x77\xe1\xe2\x8a\x0b\x16\x97\x5e\x2b\xac\xb8\x73\x02\x04\x44\xb4\x7e\xd8\x32\x64\x21\xb9\x0e\xbb\x50\x36\x88\xf0\x90\xc1\x1b\x3b\x13\x61\x7c\x5c\x50\x52\xc2\x97\xa4\x1e\x28\x93\x77\x5e\x34\xd5\x9a\xda\x49\xd9\x94\xc0\xe4\xa9\xf5\x22\x0e\x9f\x03\x15\xa6\x77\x05\xa3\xec\x08\xaf\x0d\xc7\x24\xb5\xcf\x67\xff\x34\xfa\xda\x8b\xa7\x10\x9e\xd2\xb5\xa8\x90\x7b\xb4\x03\xfb\x1a\x83\x8b\x4b\x05\x9f\x18\xc7\x92\xd7\xbf\xec\x05\xde\xe0\xc9\xcb\xbf\x17\x53\x40\x9d\x7d\xb3\xac\xea\xf4\x7b\x4c\x61\x39\x84\x97\xb0\xec\xa6\xc1\xf8\xac\x08\xa7\xea\x1e\xb9\xc4\x0b\xc4\xe9\x2e\x88\x82\x12\xf7\xd9\xee\x14\xfd\xb7\x31\x58\x16\x09\x44\xff\x9b\xcd\xfe\xf1\xa7\x46\x9c\xc7\x0f\x94\x74\xe5\xf2\x4d\xff\xfe\xa5\x85\xf0\x9e\xaa\xab\x4b\xe2\xaf\xeb\xbe\x8e\x6c\xf8\x6d\x35\x68\x0d\xc5\xd1\xb9\x29\x13\xe8\x48\x25\x6e\xc7\x36\x31\x6f\xd0\xa2\x14\x20\x63\xb0"}, {{0x76,0xac,0x8e,0x57,0x0a,0x39,0xb3,0xa0,0x23,0x2c,0x45,0x49,0x75,0x37,0xfb,0x21,0x55,0xac,0xec,0x36,0x17,0x86,0x5e,0xd1,0xdf,0x21,0x0f,0x00,0xb4,0x9d,0x1b,0x8d,},{0x31,0x2a,0x3a,0xd8,0x99,0xae,0x6a,0x25,0x50,0x7a,0xe6,0xe4,0x52,0x4e,0x10,0xb6,0x3a,0x6e,0x7a,0xe5,0x3d,0x9c,0xff,0xd3,0x9c,0xf2,0x85,0x21,0xd9,0x35,0x33,0xd6,},{0xcf,0x03,0xf5,0x25,0x91,0x3c,0x44,0x30,0x3b,0x2f,0x80,0x07,0x93,0x93,0xc2,0x1c,0x11,0x58,0x14,0x6e,0xcf,0x99,0x63,0x6f,0x5d,0x97,0xad,0xfd,0xd9,0xf3,0x58,0x39,0x80,0x4c,0x23,0x80,0x4c,0xbf,0x1e,0x55,0x3c,0xfd,0x4b,0x73,0xf6,0x89,0xa9,0x14,0x3a,0xec,0x29,0x8f,0x82,0x76,0xe1,0xe4,0xee,0x08,0x91,0xf1,0xba,0x75,0xde,0x04,},"\x53\xce\xd9\xdb\x2b\x47\x9e\x59\xd3\xed\x64\x3f\x7c\xc3\x78\x4c\x24\xb8\xbd\x4c\x63\x20\x6c\x72\xe2\x3f\xa8\x50\x02\x88\x99\xa4\x1c\xe1\xa8\xbd\xc0\x03\xf1\x2b\x7c\x29\x97\x2c\x9a\x08\xbc\xd2\x31\xfe\x0e\x1a\x0f\xef\x0b\xaf\xbf\xa4\xe0\xe0\x27\xd7\x20\x04\x07\x5b\xa3\x7d\x49\x0e\xb9\x96\x4e\x78\x3b\xb9\x8f\x9e\x50\x3e\x9c\x1f\xd3\xd2\x3f\xb0\x01\x7c\xc7\xc7\xa9\xf8\x6d\x17\x1f\x04\x1e\x23\x55\xd8\xc5\xe6\x22\x9d\x34\xc7\xee\xac\xb6\x35\x8c\xf3\x06\x0d\x5d\x26\x5b\xae\x20\x04\xa5\x58\x87\x86\x59\xa3\x0d\xfe\xd5\xf2\xec\x78\x8b\x4e\x14\x39\x7b\x5d\x00\xc2\x9d\xb5\xd4\xeb\xf1\x66\x39\xa8\xdf\x29\x2a\x3d\x24\xf6\x98\x3c\xbc\xa7\x60\xd9\x03\xe9\x76\xf5\xb6\x98\x64\x2b\xa1\xfe\xd4\x9e\x79\xc3\x8f\x4b\xb3\x94\x6e\xfc\xcc\x9d\x6a\xef\xad\x33\x6d\x55\x8f\x78\xe4\xf2\x05\x42\x2e\x10\x38\x4a\x4e\x53\x1e\x75\x80\x7e\xfb\x38\x9d\x2a\xf4\xca\xb4\x38\x25\xfb\x87\xf1\x96\xa9\x08\x07\x69\xfe\x75\x85\x78\x29\x70\xa6\x91\x8a\xff\xe1\x0d\x20\xd6\x29\xb7\x05\x84\x55\x97\x41\x8d\x69\x9d\xe3\xf1\xde\x85\x4f\x94\xbd"}, {{0xf6,0x4a,0x66,0xba,0x0f,0x08,0x19,0xf3,0x00,0x14,0x16,0xc2,0x20,0xbf,0x52,0xd8,0x60,0x13,0x0a,0x19,0x76,0x4a,0xa8,0xab,0x38,0xd1,0x5b,0x2a,0xa7,0x5a,0xc0,0x22,},{0x81,0x25,0x25,0x3c,0xd3,0x37,0xe0,0x0d,0x45,0xb4,0x50,0x79,0xb5,0x85,0x34,0x95,0x61,0xe5,0xf5,0x42,0xa8,0x1f,0x6d,0x2f,0xcf,0xd9,0x85,0xc1,0x0f,0xea,0xb2,0xaf,},{0x4d,0xe6,0xf5,0x25,0x08,0x22,0xd7,0xc9,0xd5,0xbb,0x98,0x58,0x25,0x00,0xb5,0xc0,0x85,0xf5,0x41,0xeb,0xdc,0x45,0x0e,0xd1,0xac,0xaf,0x83,0x68,0x48,0x27,0xed,0x1d,0xc7,0x71,0x47,0xaa,0xe4,0xb1,0x9e,0x14,0xa7,0xdc,0x5b,0xbe,0x1f,0x1e,0x4f,0x57,0x71,0xd8,0xa6,0xe4,0xf2,0x35,0x17,0x39,0xaf,0xb0,0x8c,0x80,0x6d,0x55,0x87,0x01,},"\x80\x72\x86\x2e\xd0\xab\x35\x92\x1d\xb5\xec\x2c\xba\x8e\x6a\xed\xb0\x44\x1f\xdf\x47\x49\x10\x06\xc0\x1e\x64\x56\xad\x70\xfa\xe3\xc4\x15\x2d\xcf\xbf\xdb\xb8\xf0\xfd\xde\xc5\xe9\x6b\x12\xbf\x67\x98\x9b\xa9\x67\x93\xf4\x86\x1a\x11\xb6\x39\x09\xce\x8d\x19\xb8\xca\x64\xa5\x44\xb3\x1c\xe0\x51\xfb\xc8\x8e\x06\x28\x06\xd9\x96\x5c\xbd\x29\x67\xb0\x16\x14\xe8\x6b\x53\x2f\xbf\x59\x84\x32\x18\xdc\x9c\x19\xc8\x03\x15\xf0\x44\x73\x17\x19\x37\x10\x92\xa3\xda\x38\x87\x8b\xc4\xcf\x77\xde\x97\x2e\x86\x04\x66\xb8\xfc\x45\xe4\x65\xdc\x3d\x0e\xbf\x94\xbd\xea\x60\xef\x0b\x98\x91\xce\xd4\x1b\x99\x7b\x11\xb3\x1e\xe4\x16\x7d\xb6\x0c\x9c\xfc\x8b\x85\xbe\xac\xfe\x22\x3c\xc1\x82\x92\x13\x77\x40\x85\xd7\xc0\x6d\x2b\x2e\x63\x2c\xc2\x1c\xd9\x66\x0d\xf4\x7c\x4f\xa9\x18\xbd\xd5\x96\xdd\xf6\x22\xdc\xb6\x52\x64\x2b\x67\x52\x7b\xa8\xed\x15\xa8\x19\xa8\xe2\x1f\x48\xd7\xee\x70\x24\x7f\x52\x00\xe3\x7c\x25\x9d\xff\xd1\x7e\xec\x8c\x23\x2f\x97\x0c\xb0\x31\x82\xfe\x39\x64\x13\x29\x93\xf6\xec\xb7\xc4\xdb\x18\xcc\xef\x39\x0c\x9e\xb3\x63\x9e"}, {{0x84,0x39,0xb1,0xd6,0x0a,0xa4,0x84,0x60,0x13,0x5e,0xb1,0x00,0x2c,0xc1,0x12,0x79,0x29,0x95,0x07,0x9a,0x77,0xe6,0xe8,0xab,0x02,0x0b,0x9a,0xba,0xca,0x89,0x20,0xb4,},{0xea,0xdc,0x3e,0x0c,0x5b,0xdd,0xbc,0x30,0x52,0xc3,0xb2,0xf8,0xb0,0xa9,0x45,0x66,0xc2,0xb2,0xc8,0x79,0xed,0x17,0x03,0x4a,0xc0,0xe6,0xa4,0x5f,0x2b,0x3e,0x32,0xd2,},{0x62,0xda,0x81,0xe1,0x64,0x40,0x82,0x1b,0x59,0x3b,0x6e,0xe6,0x54,0x0e,0x15,0xd1,0xae,0xa7,0x5d,0x23,0xe0,0xa1,0xbb,0xfe,0xdc,0x80,0x8c,0x95,0x48,0xf8,0x7e,0x8b,0xbf,0x36,0x91,0x5a,0x39,0xa7,0x47,0x16,0xf6,0x45,0xcc,0xa5,0x71,0x4d,0x17,0x0a,0xf9,0x07,0x57,0x6d,0x4f,0x37,0x05,0xe5,0x43,0xd2,0xad,0xdd,0xc5,0xff,0x23,0x03,},"\x54\x19\xf6\xd2\x4e\xb4\x66\x35\xd4\xa7\xf8\xea\xb8\x03\xcf\xd0\xd0\x4d\xe0\x92\xaf\xbd\x86\xf2\xa6\x96\x1a\x8d\x1e\xb8\xc0\xd1\x97\xba\x55\xee\x08\xc9\x91\x82\x2a\x5a\xa7\x02\xba\xe0\x33\x7a\xbd\x5c\xa7\xfa\xa1\x5e\x1f\x1a\xe3\x69\x94\x6e\x9b\x81\x21\x6c\x0f\x5f\xc2\x2b\xbd\x44\x33\xc3\xde\x93\xc5\xca\xa2\x74\x16\x83\xbb\xd0\xe1\xa7\x8d\xf2\x8d\xda\x19\x17\x41\x01\x87\x63\x34\xd4\x03\x39\x65\x9f\x02\x1a\xe7\x66\x16\x2c\x6c\xc5\x42\x1b\x79\xcf\x9d\x5c\x09\x0e\xd4\xaf\x07\xec\x84\x49\x30\x35\xbd\x0b\x24\x21\xb5\x33\x68\x42\x95\xbb\xe7\x6a\x70\xfe\xc5\x96\xef\x8c\x89\xc5\xc9\xdd\xa3\xc3\x3b\x77\x35\xd2\xd2\xf2\x0b\x28\xf1\xa5\x40\x2e\x72\xd0\x4b\xa2\x91\xdd\x59\xf1\x4a\xf0\x8a\xdf\x56\xee\xb0\x86\xd7\x69\xc6\xbe\xc3\x45\x18\x91\x37\x23\x45\xfd\x6b\xd0\x2d\xcf\x95\xe8\x03\xaf\x03\x53\x15\x0e\x18\x2e\x32\x3a\xaf\x68\x3e\x03\x6d\x9a\x13\x5d\x2e\x6f\x98\xcb\x4d\x32\x7e\x2c\xe7\xd5\x42\x47\xf3\x59\x2e\xd0\x67\xb4\xce\x76\x27\x17\x4f\x99\x6f\x28\x16\x5c\x9c\x11\xf0\x7e\x5e\xe9\xce\xe6\x38\x51\xc6\xb6\x8e\xa2"}, {{0x3a,0x04,0x63,0x97,0xf0,0xaf,0xc0,0x72,0xbc,0x7f,0x90,0x7c,0x74,0xd3,0x8f,0xd1,0xb9,0xaf,0xdf,0x27,0xe1,0x4a,0x35,0x34,0x76,0x8b,0x0d,0xd2,0xdf,0x3a,0x1c,0x22,},{0x99,0xcd,0x70,0xef,0x3b,0xe3,0x42,0x49,0x33,0x93,0x87,0x2f,0x54,0xc4,0x7d,0xea,0xa0,0x81,0x02,0x18,0x92,0xd1,0x1a,0x32,0x68,0xf3,0x14,0x5e,0xd4,0xf3,0xab,0xe5,},{0x50,0x24,0xce,0x60,0x25,0x79,0x65,0x68,0x70,0x80,0xc5,0xb1,0xfc,0x7d,0x13,0x01,0xc3,0x2a,0xa6,0xfc,0xc8,0x35,0x49,0x7d,0x9c,0xb2,0x3a,0x74,0xa6,0xca,0x27,0x24,0xf5,0x53,0x53,0xc1,0xb7,0x57,0x82,0x7c,0xa5,0x44,0x0c,0x9e,0xf8,0xf8,0xc1,0x05,0x09,0x13,0xe2,0x0a,0xab,0xec,0x35,0xc4,0x97,0xb5,0x60,0x41,0xb5,0xde,0xb2,0x09,},"\xf0\x8d\xde\xf4\x6c\xc6\xc3\x41\x79\x82\x0c\x98\x61\x37\x51\x72\xfd\xdf\x77\x4f\x8d\xc3\xf7\xd6\x4a\xa4\x32\xda\x8e\x5f\xae\x64\x4c\x0a\x8a\x9e\x69\x08\x51\x7d\x50\x5d\xeb\xd6\x12\x86\x8a\xc6\xda\xf9\x5c\xd7\xe1\x69\x97\x50\x02\x2c\xcd\x4b\x88\xdb\xae\x2b\xbf\x73\x54\x6e\xe4\xb8\x35\xd3\x19\xa8\x42\xda\xe8\xb9\xed\x68\x33\x23\xf3\x1e\x5c\xc5\x79\x19\xbc\x9d\xbe\x3b\xcf\xff\xb2\xad\xa4\x80\x72\x69\x7f\xf4\xa7\xd3\x10\xc9\x1a\xdb\xca\x81\xfa\xf2\x6a\x0e\xb7\xbb\x0c\x40\x4a\xc9\xd8\xdf\xec\x63\xe9\xc6\x4e\x2f\x42\x0c\x07\xd3\x23\xb7\xc0\xdc\x3b\x73\x50\x72\x83\xae\xb1\xce\xe5\x1d\xb4\xe1\xa8\x3a\x69\x2c\x7c\x1e\xa3\x98\xf6\xf3\x09\x40\xfa\xb8\x5e\x21\x38\xd4\xb8\x5a\xa4\xe2\x31\xe5\x42\x4f\x5b\x06\x4e\xd0\x26\xf0\xcc\xb9\x9d\x1c\x85\xa9\xeb\x15\xf5\x93\x4a\x11\x35\x9d\x41\x1c\xf9\x4a\xe8\xff\xa3\x36\x1a\x22\x4f\x46\xba\xb8\x52\xd1\x84\xa2\x48\xb4\xc3\x1f\xe3\xa7\xe7\xf5\x13\x4c\x05\x10\x31\xa9\xf3\x28\xa7\xbe\x4a\x7c\xbb\xb1\xd8\xd8\x63\xa4\x00\xfd\x2d\x58\xda\xa4\x4f\x1b\x9d\x8e\x9d\xdf\x96\x1c\xe6\x32\x2f"}, {{0x12,0x4f,0x74,0x16,0xa8,0x04,0x53,0xe4,0xcf,0x1c,0xd7,0xb5,0xe0,0x50,0xa9,0x76,0x14,0x18,0x25,0x8b,0xf7,0xd2,0x7b,0xeb,0x7f,0x23,0x23,0x8c,0x45,0x40,0xbe,0x2d,},{0x0d,0xa3,0x4a,0xb1,0x73,0x99,0x01,0x50,0xdf,0x73,0x99,0xb6,0xbc,0xdd,0xba,0x93,0xc6,0xdb,0xcb,0xf4,0xd1,0x76,0x94,0x1c,0xb5,0x07,0x1e,0x87,0x34,0xc5,0xdc,0x92,},{0xb0,0x57,0x21,0x04,0xaa,0x69,0xe5,0x29,0xe3,0x46,0x5a,0x6f,0xd2,0x8f,0x40,0x4a,0x4e,0xc2,0x02,0x76,0xa9,0x93,0xb1,0x72,0x5e,0xb8,0xc5,0xf6,0x50,0xb4,0xa2,0x16,0xf1,0x87,0x1b,0x24,0xe3,0x68,0xcc,0x46,0xcd,0x1e,0xe0,0x17,0x4c,0xda,0x1b,0x5e,0x4a,0xe2,0x20,0x0a,0xa9,0xfc,0x44,0x52,0x2d,0x97,0x5a,0x9c,0x51,0x81,0x49,0x08,},"\x9d\xcb\x98\x73\xff\x05\x4d\xb1\x1d\x0a\x9b\x19\xde\x68\x85\xff\xba\x7f\x0e\x68\x1c\xf7\xfb\x8f\x6c\xd9\x50\xc4\x83\x28\xd1\xf9\x19\xca\x46\x05\x4e\xee\xe6\xc9\xe5\x78\x43\xeb\xdd\xa7\xb2\x4b\xc3\x50\x3c\x4d\x61\x2a\xbb\x1a\x31\x4f\x39\xf5\x82\x21\xd2\xb5\x4d\xc7\x55\xac\xca\x79\x69\x74\x0e\x7f\xa8\xb1\xa9\x52\x3b\x8c\x73\x79\xfd\x39\x52\x53\xf4\xe6\xcd\x05\x4e\xe2\x4b\x75\x61\x3c\x35\x81\xd4\x9e\x19\x24\x6a\x7b\x3b\xe1\xce\xcb\x33\x4b\xe4\x4f\x3d\x62\x6f\xe3\xb7\xb2\x69\xe6\x28\xd4\x45\x80\xc2\x06\x36\xeb\xa2\x64\x2f\x27\x44\xb9\x59\xe6\x57\x57\xd0\xee\x60\x18\x43\xf1\x88\xe9\x5d\x17\x25\x3f\xef\x56\x70\x68\xa5\x40\x5a\x3a\x9e\x67\x7f\xea\x3d\x7d\x55\xf7\xea\xd1\x9a\x3f\x30\xc5\xf9\x85\x67\x1b\x55\xfa\x12\x0c\xb9\xd0\x5f\x47\x1b\x6e\x1e\x8d\x77\x9a\x2c\x80\x3a\x19\xe6\xd0\xd7\xcd\x50\x78\x87\xed\x64\x7c\x2a\x95\x48\x3f\x93\x39\x91\xed\x45\xae\x30\x1a\x2b\x0e\x95\x4a\x57\x03\xd2\x48\xc7\x88\x10\xaa\x0b\x19\x9c\xc2\xbe\xbb\x2f\x1d\x71\xcc\x40\x48\x7d\xbd\x42\xee\xe0\xf7\x45\xf7\xd2\x85\x68\x5b\x1f\xb3\x1b\x15"}, {{0x25,0xd1,0x3b,0x38,0x37,0x60,0x1b,0x07,0xa9,0x75,0x69,0x3e,0x5a,0x33,0xd5,0x33,0x7c,0x34,0xc1,0x12,0x7f,0xe4,0xc2,0x74,0x90,0x61,0x2a,0xaf,0x7f,0x64,0x2e,0x9a,},{0x3a,0x07,0xcd,0x68,0xee,0x26,0x92,0xd5,0x1c,0xfa,0xd1,0xa8,0x0e,0x77,0x63,0xb1,0x8a,0x04,0x3c,0x74,0xf4,0xe1,0xb0,0x1e,0xdc,0x55,0xba,0x9a,0x9e,0x07,0x79,0x5a,},{0x20,0xcb,0xf0,0x83,0x92,0xfe,0xa6,0xa9,0x9c,0xf4,0x46,0xa9,0x5c,0x19,0x9c,0xaa,0x0c,0x0f,0x98,0x13,0xcc,0x21,0x7b,0x8d,0x22,0x8e,0x2e,0xd9,0x0b,0xab,0x95,0xea,0x92,0xcd,0x73,0xac,0x95,0x83,0x47,0x64,0xd3,0x3e,0x42,0x24,0x3c,0x80,0xa7,0x60,0x34,0x91,0xc8,0xd3,0xe4,0x9a,0xc7,0x15,0xfd,0x8a,0x5b,0x9e,0x47,0x89,0xbb,0x03,},"\x11\x5b\x32\x20\xb4\x5c\xa8\xf3\x6c\x7f\xf5\xb5\x38\x87\xd4\x7e\x66\x9b\x78\xda\xc1\x3b\x98\xcc\x7a\xac\xa5\xc2\xe1\x9f\xce\x81\xec\x86\x17\xca\x41\x0e\x11\xc9\xa9\x11\x8a\x66\x84\x53\xb3\x29\xff\xb7\x18\xea\xec\x73\x91\x72\xf0\xa8\x49\xa0\x84\x81\x92\xa5\xbd\xea\x18\xab\x4f\x60\xd8\xd1\xa0\xd3\x38\x95\x2d\x77\xb2\xcc\x13\xef\xe8\x3c\x76\xe8\xdd\x58\x80\x3b\x1d\x8b\x3c\x97\x29\xef\x10\x2b\x20\x83\x5b\x7d\xe8\x72\xbe\xf3\x01\x0f\x15\xa4\xca\xdd\xf0\x7c\xf7\xbd\xd2\x22\xd8\x4b\x17\x4b\xc2\x15\x27\xcf\xfb\x1b\x7f\xfd\xe8\x1e\x28\x1d\x30\xcb\x7b\xce\x25\xea\x3d\xff\xb6\xea\x1f\xbb\x06\xcb\x70\x56\x9a\x95\xed\x1a\x07\xe9\x7c\xa4\x2d\xe7\x0a\xa2\x18\x15\x9e\xfd\x60\x8f\xa9\xb0\x89\x6e\x0b\x58\x51\x8a\x32\x2f\x25\x1d\x13\x3e\x58\xc8\xfc\x14\x28\xab\x0a\x17\x0e\xd8\x45\xc7\x5f\xb4\x03\xf1\xff\xb9\x7d\x2d\x2a\x6d\x4f\x27\x79\x11\xd3\x26\xc1\xca\xbb\xb8\x51\x6c\xbc\x17\x90\x8a\xb8\x1f\xf8\xd7\x9a\xf4\x46\x11\xea\x1d\x05\x87\x9c\x1e\xc8\x1d\x06\x93\x6e\x0f\x4a\x0a\xef\x6d\x57\x48\xe1\x81\xd3\x0e\xc2\x52\x36\x59\x7a\x97\x3d"}, {{0x7b,0x3a,0x76,0xde,0xca,0xea,0x60,0xc4,0x1e,0x95,0xb0,0x58,0x77,0xa7,0xda,0x82,0x06,0x4c,0x27,0x27,0x8c,0x8d,0x7d,0xf5,0xf0,0xbb,0x95,0xf0,0xad,0x2d,0x04,0x35,},{0xf8,0x0d,0xb5,0xc2,0x87,0x21,0xb1,0xc6,0x11,0xbd,0x87,0xeb,0x14,0x5a,0x98,0xbb,0xf3,0x83,0xb0,0x68,0x04,0x5d,0xf2,0x45,0x8d,0x1a,0x6f,0xda,0x09,0x9f,0x7f,0xc2,},{0x2c,0xd2,0x6f,0xb3,0xc4,0xf7,0x44,0x0a,0x72,0xaf,0xfe,0x93,0x56,0x4f,0x6f,0x65,0x59,0xad,0xb1,0x5c,0xc7,0xa2,0xba,0x10,0x87,0x9f,0xb7,0xd6,0x7e,0x47,0xd4,0xeb,0xd0,0x2f,0xe4,0x82,0x36,0x98,0xa5,0xfb,0xd4,0xa9,0x07,0xfd,0x69,0x18,0x4c,0x25,0x5a,0x17,0x0e,0x5f,0x17,0x47,0xfc,0xe9,0x68,0x10,0x2d,0xc2,0x19,0xb5,0x0d,0x02,},"\x37\x5f\xad\xae\xdd\x9c\xac\x49\xb6\x4e\x15\x74\x02\x80\x46\x06\x9f\x4c\x83\x65\x4c\x8a\x70\x11\xab\xdb\x64\xdb\x16\xb4\x7f\xa3\x11\x79\x81\x72\xf9\x07\x22\x17\xb0\xa6\xa4\x3e\x5d\xf6\xff\xcc\x11\x54\xbc\xec\x1c\x68\xe1\xd3\x5e\xc0\x58\x80\xd0\x12\xce\x76\xe4\xce\xbf\x30\x1b\xb2\xec\x98\x3d\x00\xb4\xa0\x54\x0c\x93\x7f\xf1\xc6\xdf\x94\x41\xc6\x1b\xdb\x3b\xe8\xe0\xc7\xc1\x1a\x35\xd4\x9b\x6f\x55\xc3\x81\x26\x9a\x0e\x76\x8e\xfb\xd4\x53\x44\x7f\xe4\x8b\x75\xac\x39\x64\x6c\xa8\x2e\xca\x7d\x14\x93\x04\x42\x34\x91\x87\x1c\x10\xdb\xcf\xc5\x97\x3a\x57\xfa\xb8\x37\x1c\x30\xcb\xc4\xe9\x0b\xec\xc0\xb6\x71\x52\x22\x6e\xe1\x77\xb4\xff\x36\x8e\xc8\x79\xb3\x91\xeb\x95\xe3\x6d\xcb\xb0\x7b\x2c\x16\xba\x39\x55\x45\xd4\x52\x9f\x72\x7b\x1a\x11\xef\x65\xd1\x20\x97\x6b\x7c\xcc\x86\xaf\x4b\xd2\x04\xcb\x94\x89\xc9\x21\xe4\x3b\xa5\xe8\x50\xcf\xe5\x98\x99\xf1\xc1\xec\x4a\xa5\xc9\x2b\x6d\xac\x69\x14\xb1\x95\x2b\x53\xdc\xb5\x40\xb4\x09\x23\x13\x81\x56\x89\x87\xbb\x22\x36\xbc\x40\x89\x5d\xf3\xf1\x7e\xab\x7c\x02\x74\xf2\x24\x4f\x95\x86\x12\xe8\x8e"}, {{0x5f,0xf8,0xd4,0x05,0x26,0x08,0xeb,0x03,0x3a,0x5e,0x94,0xb6,0x03,0xce,0x38,0x4d,0x84,0x52,0xf6,0x0a,0x26,0x49,0x8b,0x91,0x12,0x56,0x7f,0x34,0x10,0xc1,0x86,0x66,},{0xc4,0x90,0x0d,0xe2,0x4d,0x9a,0xf2,0x48,0x27,0x63,0x10,0x99,0x26,0xaf,0x7c,0x48,0x13,0x80,0xfa,0xbc,0xda,0x94,0x40,0xc1,0xa5,0x3e,0xa1,0xcd,0xc2,0x7e,0x65,0x68,},{0xb7,0x37,0xd4,0xe5,0xbe,0x27,0xde,0xb6,0xd8,0x77,0x29,0xc6,0x36,0xdf,0xf7,0xa4,0x06,0xc0,0x13,0xf3,0x13,0xc3,0x8c,0xf6,0x83,0xfe,0x14,0xf7,0x5a,0x3b,0x30,0x05,0xd9,0x53,0x5d,0x7e,0x58,0x15,0xc8,0xf8,0xb3,0x7c,0x51,0xd6,0x92,0x71,0x11,0xc9,0x79,0xf7,0xd9,0xd8,0x1a,0x34,0x7a,0xa9,0xcc,0x09,0xed,0x4e,0x6c,0x18,0xe9,0x0f,},"\x13\x8c\x60\x55\x7c\x2e\x90\x08\xaf\xc0\x3d\x45\xbe\xc7\x1f\x96\x11\x49\xa0\x83\x59\x26\x75\x1c\x8f\xf3\x93\x5c\x7d\x65\x2d\x83\xe1\xb0\xb1\xda\x7d\x5b\xbe\x0b\x8e\x17\x1a\x4e\x49\xaa\xe0\x6f\xd8\xa9\xde\xff\x78\xdc\xde\x4d\x25\xb1\xaa\x89\x99\x98\xa0\xf9\x9e\x1d\xf6\xf9\x33\x7a\x3e\xa2\xf2\x4b\x76\xc3\x17\xa7\x01\x4d\xb4\xe5\x28\x31\x91\x79\x5a\x70\xd8\x82\x1d\x21\x78\x46\x49\x0f\x95\x87\x01\xd3\x9d\xc2\xc8\xce\x47\xd9\x28\x93\x88\x74\xd8\x7b\x35\x58\x98\x9b\xc7\x7a\xf8\x20\x97\x9a\x35\x1e\xef\x95\x94\xaa\x5b\x94\xf3\x34\x1e\xde\xd4\xea\x20\xb0\x8c\x3e\x7c\x56\x10\xd4\x32\x67\x81\x8d\xfa\xc0\xa8\x7d\xdf\x52\x7f\xbc\xe8\x51\x2b\xbf\x85\xb6\x6c\x9b\xb5\xd6\x2f\x0f\xe8\x40\x48\xf2\x3b\x19\x60\x4a\x5c\x8d\x82\xb1\xf2\x5a\x8d\xa0\x27\x31\xfe\xb2\xec\xae\x48\x9b\x84\x75\xf7\xbd\x32\x6d\xdf\x1a\x08\x18\x9e\x46\xc0\x8c\xf5\x05\x38\xc2\xa3\x63\xe2\xf4\xeb\x2c\x01\xa2\x04\xc7\xff\xbc\x0b\x98\x1a\xdc\x0f\xd9\x97\xaa\xfd\xf2\xa2\x22\xee\x84\xc3\x09\xf6\xe9\x5e\xc7\xde\x4f\xa8\x5d\x47\x68\xd5\xc0\x03\x16\x50\x28\x22\x5e\x22\xe0\x9e"}, {{0xee,0xde,0xfc,0x17,0x57,0xe3,0xa7,0xe5,0xed,0x39,0x46,0xdb,0xed,0xc3,0x96,0xa3,0x62,0xf6,0x83,0xd2,0xc5,0x1b,0x0b,0x9f,0x60,0x76,0x5d,0x4b,0xfc,0x51,0x34,0xde,},{0xa9,0x87,0x2b,0xc2,0x19,0x2f,0xc0,0x2b,0x18,0x9c,0xee,0xd4,0x03,0xab,0x9f,0x27,0x0a,0x03,0x2a,0x83,0x5f,0xde,0xbf,0xaf,0x1c,0x9d,0x69,0x34,0xed,0x83,0x04,0xbc,},{0xd5,0xbe,0xa8,0xea,0x9a,0x5f,0xe9,0xed,0x6d,0x2b,0xf8,0x39,0x93,0x0c,0x0c,0x6c,0xd5,0x03,0x9e,0x98,0x8f,0x55,0x1f,0xde,0xdb,0x54,0x37,0xe1,0xc1,0xaf,0x0e,0xd7,0xb3,0x89,0x7c,0x03,0x57,0x11,0xc3,0xc5,0x19,0x26,0xbe,0x8d,0x1b,0x32,0x02,0x4d,0x5c,0xd5,0x82,0xf5,0xf8,0x36,0x9a,0xd8,0x4d,0x18,0xb1,0x25,0x02,0x65,0x2f,0x07,},"\xb1\x94\xdb\x73\xf9\x94\xcb\xdc\x3c\xbe\x63\x0b\xa7\x2c\x47\xc2\x24\x9b\xc0\x59\x2a\xb5\x47\x94\x2b\x1d\x1b\x88\x2b\x44\xf5\xb3\x85\x5e\x56\x8b\xdd\xdf\x92\xef\x05\x02\x2d\x88\xfc\xfc\x29\x4e\x76\xb6\x4a\x00\xe9\xc7\x43\x55\x37\x37\x63\xe4\x9a\x4e\xbc\x47\x24\x3d\x48\xa9\xad\x58\x89\x94\xa5\x18\xf8\x0f\x86\x15\xc2\xb3\x1d\xa5\x87\xa5\x3e\x52\x9d\x43\x5a\x86\x97\x35\x0d\xfc\xde\x02\xd2\x0c\xce\x7d\x5e\xee\xfe\x3f\x5a\xb2\xaa\xc6\x01\x25\x9c\xda\x38\x53\x8a\x1b\x83\x01\xf9\x83\x2e\x75\xab\x90\xf8\xa9\x32\xf2\x67\xea\xc1\x81\x00\x39\x65\xd5\x26\x6f\x20\x61\x80\xc6\xc3\x80\xec\xe8\x03\x57\x7c\xcb\x46\x17\x6b\xf6\x07\x15\x94\x86\xf2\x42\x59\x74\x7e\x2c\xa6\xfb\x19\x12\xdb\x7b\x78\xa9\x73\xb2\x84\x63\x87\xc1\x20\x80\x30\xee\x1f\x40\x0d\x0c\x5b\x5e\x8b\xde\x96\x35\xae\x55\x63\x8b\xa1\x7c\x73\x4d\xe8\x63\x8b\xb8\x5d\xfc\xd7\x66\x29\xa7\xf9\xf4\x0d\x6a\xb9\x54\xd5\x5b\xf8\x57\x5f\xc9\xc9\xa5\x95\x09\x7e\x08\x93\xdb\x5a\x7b\x8a\x6c\x45\x5e\xcb\xd3\xd2\x2d\x72\x5e\x19\xde\x29\x41\xf4\x67\xf9\xeb\x93\xd6\x6a\x0e\x2b\xbd\xbf\x92\xed\x1c"}, {{0x09,0xd2,0x2b,0xba,0xa5,0x95,0x6c,0xfa,0xcb,0xbf,0x9f,0xd5,0x51,0x09,0x75,0x12,0x86,0x86,0xc4,0x0c,0x6e,0xa9,0x6b,0x89,0xef,0x4c,0x0f,0x0c,0x64,0x9b,0xcd,0x7f,},{0xe5,0x59,0xea,0x8a,0xcb,0xdc,0x61,0xb6,0x70,0x9a,0x7d,0x83,0xae,0x15,0x84,0x9a,0x6c,0x78,0xb2,0x03,0x92,0x3d,0xd0,0xa2,0x99,0x23,0x9e,0xe4,0x88,0x69,0x30,0xba,},{0xe6,0x52,0x75,0xc4,0x32,0x8a,0x70,0xad,0x62,0x40,0x8e,0xd7,0xfb,0x17,0x28,0xbe,0x87,0xa7,0x3a,0x81,0x4f,0xee,0x8e,0xbd,0x94,0xf2,0x66,0x5c,0x71,0xbc,0x66,0xab,0x0c,0x1b,0x07,0xa6,0x00,0xb3,0x0b,0xc0,0x81,0xa7,0x4c,0x53,0x68,0x57,0xc2,0x06,0x10,0x38,0x4b,0xe2,0x68,0xd9,0xaf,0x3e,0x3e,0xcd,0xdd,0x3e,0xb0,0xc1,0x4c,0x0c,},"\x1c\x26\xa0\xf3\xa1\xa5\xb2\xd7\xd5\xb2\x97\xaf\x8a\x6a\x68\x9d\x7c\x62\xa2\x52\x67\xe1\x97\xd2\x3b\xec\xd2\xf2\xb8\x16\xc4\xde\x92\xfb\xda\xff\xb9\x41\xc3\xfc\x8d\xb7\xa8\x43\x35\xa8\x4c\xfb\xc9\x2c\xb3\xac\x80\x6e\xd5\x8d\xf1\x6b\x6b\x8e\x11\x9a\x48\xdf\x4f\x27\xc7\x1e\x93\x1a\x59\x38\xe7\xd0\x02\x73\x48\x85\xe1\x3a\x25\x8a\x15\xb6\xe1\x13\x6e\xfb\xa7\x2f\x1d\x09\x6b\x68\x9f\x76\x18\xf4\x9c\x96\x80\x63\xe8\xf9\x91\xfa\x0b\x55\x60\x1e\x43\x0e\xee\x13\x49\x2a\x1b\x09\x41\x3e\xb2\x38\x13\x59\x1a\x7a\x9f\x07\x0c\xc3\x96\xca\x9d\x1f\xac\xdd\x4f\x4c\xe3\x7c\x40\xf7\x24\x5f\x55\x03\x5e\x10\xfa\xd6\xb8\x5b\x5f\x01\xa1\xda\xac\xc0\xdf\x94\x06\x9f\x7d\xe8\xf6\x46\x7f\x96\xd1\xfb\x98\x64\x8e\x8a\x05\x20\xa8\xcd\x72\x3c\x98\xe9\xdc\x2d\xd4\xb2\x93\x4d\x82\x28\xf0\xae\x1a\x41\x5b\xd3\xa7\xcd\xa3\x8d\x7a\x99\x83\xce\x1a\xf6\xf8\xc9\x70\xa2\xa5\x91\x63\x5f\xe1\x2b\x91\x75\x36\xef\x81\x5e\xaf\x1a\x31\x38\xd7\x0c\xe7\x0a\x79\x42\x64\xd7\xc9\x86\xd9\xee\x32\x90\x44\x5f\x15\xa9\x24\x8f\x27\x65\x27\x1e\x5a\x99\x21\x96\xae\x33\x1a\xbd\x41\x64\xbf"}, {{0x77,0x82,0x6e,0xd3,0x51,0xa3,0xf0,0x92,0x54,0xae,0x56,0x92,0x88,0x5d,0x77,0x4c,0xb3,0xf2,0x44,0x10,0xa4,0x80,0x9f,0xd9,0x0f,0x8a,0x00,0xda,0x9a,0xee,0x99,0x03,},{0x3e,0xac,0x8f,0x41,0xee,0x73,0xe6,0xef,0x13,0x68,0x21,0xf7,0x95,0x7a,0x1c,0x27,0xe1,0x56,0x38,0xd0,0xe3,0x91,0x6e,0x6c,0xaa,0xc6,0xfb,0x7b,0xeb,0x7b,0xcf,0xb0,},{0x97,0x7a,0xdc,0xcd,0xb8,0x29,0xb4,0x0b,0xbd,0x8e,0x53,0x85,0x6a,0x78,0x3d,0xb3,0x46,0xa3,0x9d,0xff,0x62,0x04,0x1a,0x29,0x72,0xd2,0x90,0x09,0xf1,0xc9,0xff,0x81,0xb8,0xad,0x54,0xcb,0x90,0x1e,0x49,0x7c,0x1d,0x30,0x21,0xb5,0x0b,0x6c,0x69,0xee,0x73,0x55,0x8f,0xd7,0xbe,0x05,0xd6,0x25,0xf5,0x72,0x7f,0x9a,0xf2,0xce,0x87,0x02,},"\x1f\xf0\x6c\x0b\x39\x99\xce\xcb\x19\x00\xa4\x7d\x26\x7b\xea\xfb\xb3\x5d\x93\xd1\x4c\xb2\xc8\x92\x5e\x3e\x3f\xe5\xd9\x67\x58\x69\x25\xee\x4b\xaa\x41\x99\x8e\xdd\x01\x03\x20\x58\x10\xaa\xd5\xc0\xbb\xdc\x77\x87\x44\x76\x81\x02\x46\xd1\x30\x89\xa6\x4d\xb5\x76\x42\x4f\xae\x0b\xed\x96\x64\xa4\x2a\x49\x11\x47\xd1\xee\x3b\x9c\x3b\x1b\xa4\x87\x5b\xe1\x54\x62\x39\x25\x40\xf9\x97\x8d\x9a\x46\x30\xba\x4c\x52\x54\x99\x75\x1a\x45\xef\xc2\x99\xec\x7d\x73\xb1\x7f\x9a\xd2\x75\xee\x71\xa6\x87\xe7\x26\x90\xd7\x32\x02\x42\xd2\xdc\x2b\xd4\xd5\xc5\xcf\x0f\x17\xa4\x65\x18\x5d\xcf\x60\xf8\xef\xff\x53\x90\x3f\x20\xb0\xc2\xab\x21\x92\xd4\x43\x68\xf2\xf2\xfb\x36\x04\x8a\xf0\x71\xf7\xaa\x85\x7b\x14\xad\x1d\x11\x46\x12\x05\xbe\xbe\x17\xe0\x2b\xe2\xe3\xcc\xb6\x09\x28\x21\x88\x5c\x4e\x0d\x48\x11\xbe\x3f\x45\xb1\xfe\xa0\x88\x45\x3e\x02\x24\x32\xf5\x62\x56\x2b\x43\xa3\x55\xcb\x56\x27\x0c\xed\xb6\xc2\xc4\x2d\xbf\x9b\xe8\x50\xe7\x71\x92\xfd\xc6\x5c\xfd\x36\x83\x4b\xe9\x88\xdb\xe9\xa9\x3e\x25\x18\xc1\x38\xb0\x90\xfb\x9d\xa8\x27\xcb\x1c\x91\xc8\xfe\x52\xfe\x7c\x57\xf7"}, {{0x99,0xa9,0x95,0x31,0xc3,0xcd,0x6e,0x3e,0x9c,0x90,0x0a,0x9e,0xeb,0x26,0x26,0x7e,0x72,0xf0,0x9d,0x11,0xb6,0x51,0xa8,0x97,0xeb,0xb7,0x9b,0xe0,0x16,0xf6,0x4c,0x6e,},{0x9b,0xf9,0xf8,0xb4,0x8a,0x27,0x28,0xe0,0x26,0x08,0xfc,0x19,0x89,0x9d,0x21,0x96,0x56,0x83,0x9d,0x1c,0xc1,0xe9,0xa8,0x98,0x4d,0xf6,0x74,0xec,0x26,0x66,0x2f,0x41,},{0x0e,0x89,0xda,0x5d,0x94,0x9c,0xf2,0xbf,0x40,0xc7,0xe1,0x7c,0x2d,0x0f,0x9c,0xea,0xbc,0x88,0xa0,0x92,0xeb,0x4d,0x49,0xcf,0xbf,0xea,0xb7,0xc8,0xbf,0xf4,0x32,0x45,0xc6,0x7b,0x9e,0x2e,0x92,0xf9,0xbc,0xb9,0xb3,0x4b,0x3f,0xcf,0x8b,0x01,0xfa,0x2e,0xa7,0xa9,0x64,0x9f,0x81,0x4c,0x3a,0xa9,0x8b,0x3d,0xd0,0x45,0x40,0xc3,0x1d,0x09,},"\x7a\x89\xc0\xc1\x95\x2f\xdc\x42\x98\xdc\xae\xa8\x54\xef\xc1\x34\x65\x6b\xe1\x47\xe9\xe8\xe8\x2f\xc9\xa4\x49\x05\x9d\x80\x57\x0f\x75\x67\x6b\x81\xc4\xa9\x4f\x76\xa9\x68\x20\x0c\xde\xb0\x98\x8c\x73\xf5\x9a\xfc\x72\xad\x4c\x31\x03\xe1\x9f\xe6\x3b\x7e\x95\xe1\x40\xb5\xcb\x2e\xfc\x7b\x97\xa6\xff\xbb\x6c\x29\x8d\xda\xce\x3b\xe6\xd2\xed\x3d\x59\x8b\x8b\xdf\x0c\x2f\xe6\xc9\x76\x02\x14\x2a\x76\xe9\x78\x51\x4c\x19\x6c\x1b\x9a\x88\xef\xdc\x19\x25\xfc\x50\x61\x55\xcf\xf9\xa2\xf2\x1a\xb6\x34\xe2\xb9\x3e\x96\x92\x8a\x5d\x8f\x7c\xe4\xcb\x73\x26\xd9\x68\x94\x69\x24\x2b\xa9\xc6\xa0\x1b\x77\x49\x6b\xad\xef\x87\x57\x8f\x5a\x17\x28\x4e\x90\x0a\x72\xdf\x14\x1c\x61\x99\xb0\xe7\x1a\xb5\xda\x43\x75\x03\x76\x17\xec\x61\x96\xd4\xf4\xe2\x3a\xe2\x91\x6a\x72\xd0\xfc\xe7\x96\x02\x23\x05\xac\x9f\xbb\xbb\xe4\x70\x5b\x34\x0e\x42\xb7\x8e\x1c\x02\xbb\x10\x01\x86\x0c\xdc\xaf\x71\xed\x89\x25\x5d\xd5\x6c\xc0\xb3\x1c\x59\xd4\x59\x6d\xce\xf8\x4e\x22\x23\x4b\xe5\x62\xbd\x80\x1e\x94\x11\x1d\x83\xa7\x80\x64\xc9\x0f\x9d\x82\xfc\xe9\x1f\x68\xab\xb0\x3c\x73\xb6\xbd\x8d\x7e\x02\xd4"}, {{0xaa,0x58,0x40,0x3e,0x76,0x3b,0xac,0x40,0x5d,0xb0,0x65,0xeb,0x11,0xeb,0x6b,0xe3,0xe3,0xb6,0xcf,0x00,0xec,0x4a,0x22,0x2b,0x52,0xbf,0xf4,0xb6,0xe3,0xd1,0x56,0xac,},{0x16,0x7f,0x9b,0x9a,0x46,0x65,0xf9,0x3f,0x5d,0x7d,0x30,0x16,0xac,0xe6,0xfb,0xd1,0x34,0x20,0xb2,0xe5,0x1e,0x72,0xbd,0xe5,0x9e,0xed,0xf2,0x69,0x93,0xb6,0x6c,0xae,},{0x64,0xb5,0x98,0xca,0x5b,0x8f,0x9a,0xe7,0x42,0xe4,0x6e,0xe0,0xd8,0xc1,0xaa,0xf3,0x14,0x58,0xb5,0x0c,0x25,0xd2,0x67,0xa6,0x77,0xe4,0x4b,0xe5,0xb7,0x55,0xf1,0x4d,0x51,0x80,0x1a,0x30,0x39,0x9b,0xfc,0xc3,0x8d,0x14,0x07,0x1a,0xa0,0xae,0x93,0xda,0x82,0x5a,0x58,0x1a,0xb6,0xc2,0x07,0x25,0xa0,0xa9,0x10,0xb4,0x73,0x5d,0xfa,0x0b,},"\x3b\xaa\x09\x98\xff\x02\xb3\x2b\x90\xb5\x1f\x9a\x84\x0c\x7b\x5c\x58\x70\xcf\xb1\x81\x0a\x9b\x0f\x77\xb5\x59\x09\xd4\x7a\xd3\x35\x14\x7a\x99\x1c\x29\xfb\xeb\xfc\x59\x2e\x93\x07\x17\x5c\x19\x64\x12\x9a\x2d\x5e\xfc\x62\x15\x80\x74\x53\xbc\xd7\x26\x96\x97\x81\x22\x2b\xca\xd1\xc9\x9a\x49\x74\x8b\x9e\xe6\x67\xc4\xd0\xc8\x28\x89\xe2\xf5\x00\x64\xc1\x15\xdb\xd8\xfb\x48\x3d\x72\xab\x0c\xca\xdf\x76\xbd\xdb\x2d\xc7\x27\xdb\xc3\xfa\x5c\x46\x24\xc2\x83\xd8\x92\x1c\x8a\xa4\x42\x51\x10\xdc\xdd\x69\xc0\x5e\x5e\xd5\x9b\x35\x96\x25\xee\xaa\xec\x1e\x27\xea\xfe\x9d\x9a\x5c\xe7\x36\xc3\xf9\xc5\x27\xea\x54\x78\x18\xb9\xbc\xa6\x81\x1b\xe4\xcc\x15\x05\x8a\x6f\x5b\x68\x33\x03\xb8\x0c\x90\xc9\x4a\x83\xb8\xb1\x58\x69\x71\x3a\x66\xb1\xe0\xf6\x56\x33\x1b\x28\x6d\x1e\xf7\x69\x88\x34\xab\x3e\x13\x84\x17\xaa\xd6\xbb\x3a\xb3\xbd\x9f\xc7\x87\x61\xa4\x82\xdf\xc6\x54\xf3\xf8\x62\x8c\x8d\x9f\xc1\x60\x18\x89\x8f\x16\x41\xe8\x62\x2b\xd2\x72\xe3\x8d\x41\x70\x6c\xb9\xce\xbe\x6e\xe5\xe1\x73\x57\x6b\xf6\x1b\xb1\x18\x8c\xf2\xf3\x9c\x62\x22\x0b\xba\x88\xfc\xb4\xde\x48\x98\xb2\x5b\x04"}, {{0x10,0x44,0xee,0x37,0x08,0xc0,0xb0,0xe9,0x09,0xa8,0xcb,0x2b,0xa2,0xcd,0x0a,0xf8,0xd2,0x8a,0x5d,0xe0,0x1d,0x96,0x2e,0x82,0x60,0x87,0xfb,0x23,0x2d,0xf7,0xb2,0xd2,},{0x46,0xd2,0x41,0xea,0x0c,0x70,0x2c,0x18,0x89,0xd4,0x46,0x55,0x82,0x46,0x29,0xb6,0x72,0x84,0xd4,0xe6,0x44,0xa4,0x8f,0xa4,0x54,0x55,0xd2,0x7a,0xc5,0xf6,0x25,0x29,},{0x7d,0x6b,0xed,0x7f,0x87,0xd0,0x90,0xab,0xe0,0x13,0xc3,0x1e,0x12,0x03,0x90,0x3b,0xac,0x9c,0x93,0x44,0x5d,0x06,0xc7,0xb5,0x3d,0x31,0xd1,0x5f,0x97,0x0d,0x88,0x64,0x7a,0x7e,0xd2,0xc3,0xa6,0x30,0x50,0xba,0x19,0xd6,0x80,0x43,0xaa,0xdd,0x18,0xbd,0x86,0x1d,0xe1,0xac,0x47,0x15,0xb8,0xe8,0x28,0xb2,0xb1,0x6f,0x8a,0x92,0xb0,0x01,},"\xb8\xa4\x45\x45\x5f\xb6\x6e\x17\xe3\x14\x3d\x35\x20\x4c\x9e\xa9\x34\x74\xee\xbe\xef\x93\x96\x3e\xe5\xc1\xd3\x77\xca\x21\x7a\xcd\x4c\xa6\x3e\x57\x55\xda\x08\xfb\xff\xdb\xd4\x35\x2b\xf1\x65\x19\x38\x96\xc8\xd6\xf7\x6b\xb4\xcd\x3b\xc2\xd3\xa4\x76\xa4\xe3\x20\x82\x4a\x12\x10\xce\x74\xd0\x01\x4d\x74\x7f\x11\x1e\xec\x31\x0c\x5c\x89\xed\x4d\x08\x50\xe8\x11\xf8\x0a\x8b\xb2\x8d\xca\xf6\xf4\x11\xdf\x83\xe2\xc1\xdf\xd9\x0c\x4a\xd2\x35\x61\x45\x4e\xb5\xd7\x56\xb6\x3b\x4e\xa7\xf3\x7d\xc5\xd4\x66\xc1\x6e\xf7\x0d\x11\x19\x0c\x4f\x53\x16\xfe\x2a\xa8\x59\x74\x40\xe8\x8b\xbe\xba\xeb\x35\xea\x5f\x04\xf0\x7b\x03\x39\x26\x41\x58\xef\x90\x9a\xd5\x16\x3b\xfc\x24\x8c\xd7\x24\x13\x3e\x27\x4f\x81\x26\x95\xf2\x90\xe5\x71\x76\xa9\x6b\x93\x93\xd0\x7b\xb3\x10\x29\x9f\x5d\x2a\x6b\x6d\xd1\xda\xbc\xb5\x1b\xf2\x9c\x5a\xfa\x7e\xbb\x07\x01\xc6\xc8\x47\x67\xac\x13\x77\x93\x09\x1f\xe0\xed\x6e\x47\xd7\x80\x62\x8a\x32\xc8\x4f\x83\xe0\x0e\x9c\x16\x74\x2a\x52\x3e\xcb\x63\xc2\x4f\x4a\x33\x8e\xd2\x99\xa0\x61\x94\x92\x4f\x44\xc5\xa5\xd3\xc9\x37\xff\x9b\x09\x45\x98\x2a\xd2\x4a\x2d\x1c\x79"}, {{0x95,0xdd,0x1a,0x5e,0x65,0x8f,0xa6,0xc8,0xd4,0x25,0x07,0xb3,0xe5,0xb8,0xed,0xb5,0xba,0xec,0xa6,0x2d,0xeb,0x00,0xfc,0x5d,0x4d,0xca,0x8e,0x1a,0xb5,0x83,0x5e,0x59,},{0x3a,0x53,0x23,0xdd,0x1e,0x07,0xf3,0x23,0xbb,0x6d,0x83,0xe9,0xc2,0xdb,0x92,0xa2,0x9f,0x62,0xe2,0xe0,0x03,0xee,0x0d,0xea,0xcd,0x7e,0x2e,0x4e,0x03,0x0d,0x8d,0x27,},{0xd0,0x2a,0x75,0x23,0xdc,0xbd,0x29,0x57,0x6b,0xa8,0x09,0xb5,0x31,0x03,0x77,0x74,0xdf,0x41,0x73,0x4a,0x41,0x17,0x58,0x13,0x11,0x9c,0x6a,0x6a,0x78,0x8c,0xd9,0xb8,0xad,0x78,0x08,0x65,0x67,0x86,0x67,0x69,0x9a,0xe6,0x6d,0x01,0x09,0x19,0xa9,0x66,0xa0,0x51,0xc0,0x81,0x63,0xdf,0x67,0xa9,0x77,0xee,0x6e,0x22,0x0d,0x0d,0xc3,0x0f,},"\x9b\x7a\xfd\x48\xc4\x74\x60\x4c\x26\x36\x75\x31\x55\x68\x40\xc3\x88\x66\x8b\x0f\x38\x40\x06\x3d\xfc\x98\x69\xad\x5b\x90\x12\x74\xb9\x31\x29\x3d\x04\xf3\xc8\xe8\xf7\xf8\xea\xb8\x15\xa6\x41\xd7\xc3\x51\x28\x4e\x8b\xb0\x43\x7a\xc5\x51\xbb\x29\x43\x89\x64\xe6\xa7\xc7\xba\x77\x23\x44\xb3\x33\xf9\xed\xa5\xa7\x75\x68\xc8\x93\x1d\xdc\xaf\x21\xe3\x2e\x07\xb1\x0b\xf4\x82\x0f\xb8\x59\xbc\xf8\x7b\x81\xc4\xbf\xf4\x26\xf2\x4a\x4d\x46\x8f\x2e\x9a\xed\xa8\xf1\x7d\x93\x97\x09\x97\x0d\xb1\x1d\xf7\x62\x47\xe9\x8a\x39\xeb\x8b\x38\xf5\x94\x9f\x34\x9f\x2a\xe0\x5a\xb4\x8c\x01\x85\x17\xc4\x8f\xa0\x20\x5d\xc7\xf1\x56\x64\x53\xe1\x05\xe4\x8c\x52\xeb\x45\x5c\x0c\x40\x80\x2f\x79\x7b\x3e\xef\xb1\xe2\xf3\xb1\xf8\x43\x15\xae\xd5\xb0\x71\x1c\x64\x99\xa6\x91\xb7\x4b\x91\xf1\x2e\xf7\x0f\x76\xc4\xc0\x5c\x1a\xa1\xa9\x93\xe2\xf3\xe5\x28\xab\x34\x3d\xd2\x36\x81\x62\xf4\x03\x6a\x61\xa1\x3a\x88\x04\x5d\xcd\xef\xa8\x5d\x68\x53\x22\x75\xbc\xf5\xb8\xf5\xf0\x0e\xfd\xea\x99\x9a\x95\x78\x31\x75\xd9\xee\x95\xa9\x25\xd4\x8a\x54\x49\x34\xd8\xc6\xb2\x62\x22\x5b\x6e\xbe\xa3\x54\x15\xdd\x44\xdf\x1f"}, {{0x1a,0xbc,0x0b,0x9a,0xa0,0x1d,0xc5,0x7c,0xa5,0x3e,0xfe,0x73,0x80,0x96,0x2b,0x1a,0x88,0xd5,0x0a,0x96,0x4f,0x5c,0xd9,0x86,0x40,0x98,0x2c,0x74,0x39,0x3f,0x29,0x26,},{0x8d,0x4f,0xd1,0x43,0x94,0xd7,0xc1,0x40,0x57,0x00,0x30,0x69,0x83,0xfb,0xf7,0x6e,0xa9,0xf1,0x71,0xb1,0x5a,0x6b,0x56,0x61,0x2a,0x1f,0xeb,0x1c,0xbd,0xae,0x5d,0xd5,},{0xf7,0x38,0xaf,0x2d,0x3e,0x29,0x0b,0x3d,0x23,0xd9,0xaf,0xf7,0x41,0x4b,0xfc,0x5f,0xfa,0x47,0x23,0x5d,0xc0,0x53,0x68,0x7a,0x8b,0xa5,0xc8,0x54,0x1b,0x85,0x11,0xf7,0x81,0x56,0x6c,0xda,0xa1,0x30,0xe0,0x67,0x7d,0xb5,0x5f,0xa8,0xbe,0x9d,0x81,0xa0,0x92,0xcb,0x58,0x92,0x3a,0x86,0x28,0x49,0x4d,0x2f,0x62,0xd9,0x5c,0x16,0x71,0x00,},"\xda\x2d\xd9\x40\xd5\xe1\xdb\x6e\x80\xbf\x7e\x2b\x78\x2e\x7e\x74\x5c\xd4\xfd\x25\x2e\x98\x15\x17\x97\x58\x87\xdd\x05\xac\x77\xed\x83\x7d\x08\x29\x61\x57\x5e\xfe\xdf\x30\x1f\xdf\x24\xb7\x07\x18\xb9\x91\xb8\xd9\x2b\xdd\x2e\x6b\xee\x17\xc8\xaa\x4b\xc6\x94\xa7\x27\xbc\xfc\x78\xfd\x85\x19\x5c\x42\xca\xf8\x83\xa2\xc3\x8d\x16\x1c\xad\xd7\x9c\xfd\xa9\xa3\x91\x10\xe1\x26\x4d\x30\xbd\x4c\x5c\x4a\x58\x76\x77\x7f\x23\x3b\x07\x1b\x1b\x0b\x40\x89\x35\xf0\x46\x89\x54\xcc\x74\x4a\xf8\x06\x3b\x00\x4e\xde\x56\xcd\x98\x1c\x4d\xd5\x60\x8a\xbf\xfe\xae\xc9\xe5\x8f\x3f\xaf\xaa\x67\x14\x67\x80\x4b\x7f\xa2\x55\x8f\x4f\x95\x17\x42\x01\xf1\x83\xd8\x0a\x59\x14\x06\x5f\xed\x53\x11\x5b\x41\xeb\xc3\x38\xf7\x8d\xf0\x50\x05\x3b\x8a\x4e\x75\xea\x7c\x6f\xdc\x35\x4d\xad\x27\xbf\xd8\xa2\xe6\x6f\xcd\x7a\xe2\xf5\x87\xd2\x4b\xe0\xd4\xa3\x3d\xa3\x0a\x22\x0e\x51\xbc\x05\xfa\x4e\x41\x2b\x95\x9f\xd9\x5d\x89\xea\x6e\xc0\x16\x25\x16\xc0\x96\xa9\x43\x3a\x9e\x7c\xf5\x99\xc9\x28\xbd\x53\x05\xc2\x17\x3b\xf7\x49\x3e\xd0\xc1\xc6\x03\xcd\x03\xf0\x82\xcc\xe4\x42\x37\xa7\x9f\xfd\x8b\xe9\xa6\x72\xc2\xeb\xaa"}, {{0xcb,0xff,0xce,0x2c,0x9b,0xd3,0xe2,0x3e,0x40,0x6e,0x5f,0x66,0xe6,0x32,0xdc,0xfa,0x72,0x66,0x54,0xd2,0x9a,0x95,0x5c,0xec,0x98,0x31,0x73,0x23,0x5f,0xa3,0x59,0xd0,},{0x49,0x65,0x3e,0xdd,0x64,0xa5,0x5f,0x7c,0xd4,0x0e,0xaf,0x3f,0x8e,0x72,0xeb,0x96,0xdb,0xcd,0xee,0x39,0x8f,0x34,0x81,0x7f,0x2c,0x95,0x86,0x79,0x49,0x71,0x0b,0x14,},{0xe7,0xce,0xd4,0xfa,0x2a,0x7d,0xff,0x73,0xf1,0x06,0x8b,0xba,0xd0,0xec,0x9a,0x11,0x09,0x04,0x3c,0x97,0xa6,0x2e,0xff,0xa1,0x48,0x87,0x6f,0x09,0x69,0xed,0x4d,0xc6,0x08,0xe2,0x8b,0xce,0x79,0x7a,0xf3,0xb8,0x25,0x32,0xc9,0x4d,0xec,0x4d,0x68,0x11,0xb7,0xf5,0x63,0x67,0x91,0x29,0xfa,0xcf,0x17,0xbb,0x73,0xd6,0x93,0x75,0xeb,0x05,},"\x1f\xfd\xe6\x82\x6e\x4f\x0c\x24\xa7\x96\x1f\x19\x1e\x74\xcc\x0b\xbc\x92\x8e\x3f\x1a\xec\x3e\xfa\xb3\x27\x65\xc2\x50\x1c\xbc\x16\x20\xe7\xee\x6f\x61\xfc\xcf\xb0\x0c\xfc\xa9\xfb\x98\x14\x3b\x52\x9b\xcc\x8c\x3d\x0f\xdf\x89\xee\x7c\x34\x2f\x10\x18\x15\xfa\xbf\x7d\xea\xf9\xf3\x02\xa2\x88\xfe\x17\x58\x26\xd5\x90\xd9\x9e\xe6\xfd\x92\xda\x74\xf9\x59\x6b\x78\x3c\x0e\x7d\x47\xd7\x11\xa3\x2f\x39\xea\x41\x65\xe5\x21\x24\x31\x44\x1b\x49\x8c\x6b\x70\xdb\x3b\x09\xd1\xf4\xe4\xa1\x4a\x6b\xae\x39\xda\x50\x88\xbb\x85\xb3\x28\x5c\xe9\xdf\x2f\x90\x68\x1a\xf2\xc7\x4d\xec\xe4\x39\xae\xb9\x1e\x1c\x1b\x07\x12\xed\xdb\xee\x8d\x72\x56\x98\x28\xf3\x7c\xb7\x20\xc5\x09\xd0\x2a\xec\x47\x60\x70\x48\x4e\x9b\x16\xec\x71\x79\x94\x7a\xc9\x6c\xaf\x0e\x1b\xe8\xb6\xb7\x4f\x37\x2d\x72\x35\xfe\x6e\x39\x99\xdf\x73\x3b\xcc\xd4\x82\xdf\xe2\xe6\x31\xf5\x6b\x58\x26\x67\xdc\xe5\xe3\x12\x17\x63\xad\xfa\xcf\x3b\x18\xcf\x20\x95\xf7\x39\x4d\xee\x49\x27\xfc\x2b\xea\x6b\x58\x24\xd9\x0c\xd5\x9e\x85\x4e\xc5\x87\x2b\x45\x51\xb0\x2e\xfa\xba\x5a\xd5\x4a\x9b\x7a\x8f\x6d\xe5\xd7\xcd\xa5\x82\x5b\x32\x5b\x07\x6d\xed"}, {{0x9f,0x91,0x23,0x14,0x97,0x48,0x4c,0xab,0x39,0xb9,0xe2,0x0f,0x86,0x11,0x81,0xd3,0x97,0x90,0x85,0x77,0xbb,0xb2,0x96,0x82,0x42,0xd0,0x71,0xbc,0xa4,0x81,0x3f,0xfb,},{0x88,0x24,0xbc,0x6c,0xd6,0xa6,0xf1,0x5a,0x5f,0x41,0x66,0x8f,0x2b,0x3b,0xae,0x8f,0xc4,0x96,0x73,0x83,0x07,0x8d,0x08,0xb5,0x1d,0x6d,0x1b,0x2b,0x93,0xa1,0x07,0x1f,},{0x0a,0x1c,0x70,0x6d,0xd8,0xa1,0x30,0x77,0xab,0x18,0x38,0x6c,0x65,0xfa,0x97,0xcf,0x9d,0xfc,0x43,0x54,0x2d,0x18,0x46,0xec,0xbd,0xde,0xb7,0xb3,0xc9,0x3f,0x3c,0x66,0xf3,0xcc,0xd0,0x44,0x7a,0xac,0xdd,0x4d,0xad,0x8f,0xbf,0x73,0x6c,0x4f,0xf9,0xdb,0xdb,0x62,0xbf,0xc1,0x4d,0x88,0x83,0xe3,0x85,0xbc,0xe9,0xba,0xc5,0x6a,0x35,0x0c,},"\x21\xd4\xfb\xc9\x81\x63\xc3\xfb\x6e\x09\xf7\x75\xc2\xab\x7b\x18\xb1\x87\x92\x34\x0b\xaf\xed\xac\xb4\x96\x05\x62\x2e\x3c\x08\xaa\x3b\x2b\x8d\x0e\x09\x02\xf3\x61\xaa\x1c\x0f\x65\x2e\x27\x32\xb1\x0a\x0c\x5c\x6a\x05\x09\x89\x96\xb5\x88\x26\x7c\xc8\x95\x1a\x78\xb5\xd4\x31\xe7\x22\x2b\xbb\x50\x8e\xee\xf1\xb5\xe8\xb8\xd0\x1d\x39\x91\xe1\x8d\xdd\xc6\xca\x8d\x22\x2e\xf1\x77\xce\x62\x93\x8d\x18\x10\xee\xcf\x06\xf4\x73\x8b\x28\xf4\x40\x94\x6c\xca\xd2\xa1\x2e\x39\xd3\x86\x11\xbe\xd3\xa3\x9f\x93\x41\x9a\x17\x9e\xc2\xb1\xb5\x2d\x5f\xe5\xc8\x0c\x23\xb8\x4d\x88\x03\x75\x5f\x51\x46\x09\x2c\xc1\x99\xb4\xbd\xce\xa5\xbc\xf2\x03\x7b\xd5\x3f\xf6\x34\x66\x94\x15\x5f\x02\x7d\x8c\xe2\xba\xff\xe3\x0a\x56\x66\x59\x6c\x00\x78\x3a\xae\xad\xe9\xc7\x7f\xc8\x63\x79\x42\xec\xe0\x17\xd6\x48\x4c\x28\x99\xb1\x91\x8d\x3a\x48\x0b\xd5\x15\x76\x78\xd4\x77\x2d\x27\x1f\x9b\x99\x76\x8e\xe1\xbc\xc4\x6b\x24\x89\xae\x87\xcd\x03\x0f\x47\xd1\x33\x3c\x76\x72\xcb\x90\x2c\xb4\xf5\xfe\x74\x6e\x85\x3d\xe5\x79\x40\xba\x22\x64\xd3\xe6\x29\x64\x4d\x65\x3a\x5b\x7a\xf7\x8c\xe6\x4a\x99\x3f\x36\x25\x0f\x8c\xb7\xcb\x45"}, {{0x1e,0x2b,0xd5,0x48,0x7c,0x5f,0x5c,0xed,0x46,0x1f,0x60,0x4d,0xcc,0xb4,0xe7,0x8e,0xb9,0x16,0x08,0xf0,0xb8,0x21,0xf5,0xaf,0xc4,0xe3,0xe5,0x34,0xf7,0x96,0x03,0x92,},{0xef,0x82,0x54,0x75,0xcf,0x20,0x51,0xa2,0x01,0x7a,0xe5,0x32,0xf0,0x77,0xd9,0x67,0x74,0x34,0x7d,0x27,0x67,0xea,0x7b,0x45,0xf9,0xc1,0xb8,0x60,0xab,0x99,0x35,0x06,},{0x4d,0x33,0xc9,0x6a,0x2e,0x3a,0x5d,0xb7,0x39,0x1a,0xdf,0x65,0xc1,0xcc,0x35,0x65,0xfe,0x76,0xee,0xaf,0xd0,0xb5,0xc7,0xab,0xb0,0xb4,0x92,0xa0,0xb5,0x1e,0x1f,0xa3,0x36,0x39,0x94,0x6a,0x24,0x3b,0x2d,0xde,0xf3,0x57,0x55,0x22,0x98,0xce,0x0a,0xa9,0x5e,0xac,0x6f,0xbf,0xe6,0x60,0x98,0x82,0x71,0x87,0x7e,0xb2,0xa7,0xda,0x18,0x06,},"\x1d\xbb\xbb\x13\xcd\xad\x88\x85\x4b\x80\x9c\xed\xed\x27\x33\x43\xd3\x06\xa8\xde\xab\xf3\xff\x02\xc9\xce\xc6\xf0\x02\xb8\xe9\xe1\x0e\xf5\xd1\xb0\xf5\x71\x1f\x33\x26\x7a\xa9\x1c\x17\x1b\x61\xe9\x60\xf7\x40\x45\x7b\x81\xd7\x51\xa4\x73\xf4\x4f\x75\x0a\x08\x0c\xab\x80\xaf\x7c\xcc\xa7\xdf\xfc\xfa\xc9\xee\x4c\x39\xdc\x85\xcb\xdf\x51\x25\x9c\xcd\x34\x70\xd9\xba\xd3\xad\x30\xf4\xee\x5d\xbd\x4f\xac\x6b\xd5\xc6\xc4\xdf\x73\x11\xa4\x70\x04\x46\x95\xa7\xe1\xa7\xe1\x85\x72\x20\x75\x88\xaf\xa5\x7e\xeb\xcd\x4d\x57\x5b\x6d\x42\x44\x57\xee\x92\x46\x5c\xe1\x86\x3e\x3c\x67\x7c\xf8\x75\xfd\xb9\x8d\x40\x78\xeb\xe7\x14\x42\x60\x80\x70\x52\x57\x71\x44\xcb\x8e\x03\x59\xaa\x42\xad\x15\x5d\x79\xda\xe3\xde\xb9\x9c\x46\x32\xc1\x91\xc7\x99\xcb\xfe\x58\x7d\x95\x47\x87\x06\x8d\x66\x3b\xdf\xc0\xfa\xb1\x33\x4f\x18\x76\xbf\x49\x8c\x4d\xb5\xc5\x3d\xb7\xb0\x20\x4e\xd5\xa5\x21\xc6\x2f\x09\xea\xca\x8d\x01\x89\xf3\xb3\x94\x14\x3f\x29\xc4\x21\xcb\x5c\x8d\x07\xbd\x75\x1b\xaf\x4c\xbe\x3b\xf4\xbe\x17\x01\xdf\x4b\x22\x07\xdf\xb2\x90\x4d\x84\xf4\xdb\xda\x51\xcb\xa5\x76\xd5\xa5\xbb\x16\xef\xe6\x98\xed\xd6\x08"}, {{0xf7,0x8d,0xb1,0x4d,0x6d,0x1a,0x64,0x3d,0xd7,0x73,0x5b,0xaf,0x26,0x35,0x32,0x12,0x44,0xe7,0xec,0x8c,0xa7,0x2c,0x5c,0x38,0xc9,0x8c,0x80,0x9d,0xb9,0xcb,0x5a,0x55,},{0x54,0x14,0xf7,0x5f,0x52,0xf3,0x86,0x4a,0xfb,0x0c,0x79,0xc2,0xc5,0xc1,0xd0,0x6b,0x4b,0xce,0x40,0x0f,0xbd,0xdf,0x17,0xfe,0x9c,0xfb,0x2a,0x8b,0xac,0x47,0xa0,0xdd,},{0xd7,0xcb,0xd4,0x18,0x1f,0x67,0x71,0x20,0x07,0xb7,0xf0,0xe1,0x84,0x52,0xe0,0xa0,0x24,0x46,0x4d,0x9d,0xc9,0xb5,0xff,0x9c,0xf6,0x69,0xd1,0xb9,0x11,0x69,0xd7,0x57,0x32,0x62,0xf8,0x33,0x36,0xb9,0x7c,0x86,0x1b,0xfa,0xb3,0xfc,0xf6,0x69,0x22,0x3c,0xe8,0xca,0xf3,0x19,0xf2,0x1d,0x23,0xf1,0xfa,0x33,0x1a,0x2d,0x89,0xb6,0xca,0x0b,},"\x05\xca\xf1\xb8\xed\xc3\xb1\x73\xfb\xc1\xed\x29\xb9\x5e\x2b\xf0\x6d\x81\x4b\xa2\x40\x7d\x4b\x31\xc7\x28\xd0\x4e\xc2\x73\xd2\x53\x94\x42\x3a\xc7\xd4\xff\xf2\xca\x36\xee\x90\x27\x30\x93\xc7\x56\xe2\xbd\x13\xc9\x6d\x4a\x3d\xc7\xf5\xbe\x17\x59\xfc\xd3\x28\xeb\x66\xc5\x88\x2b\x58\xfa\x45\x88\xe5\xb2\xa3\x71\x3a\x41\x54\xa2\x34\x0d\x0b\x06\xad\x01\x96\x01\xb0\xe0\x28\xe4\x97\xf8\x98\x25\x6b\x02\x8a\xf9\x5c\xd8\x16\x8d\xf5\xe5\x8a\x57\xcd\x1e\xbf\xc0\xa0\xc9\x1c\xed\x61\xdb\xb4\x80\xac\xa7\xdf\x8d\xca\x91\xeb\x16\xe9\x80\x07\xcd\x2c\xd1\xa2\x04\x5b\x0e\x44\x77\xd1\x2d\x5a\x40\x72\xf3\x65\x42\x65\x67\xc9\xd6\x15\x77\xf3\x48\x5c\x8f\x46\x60\x5e\x7f\x47\x5e\xf0\x4a\x39\x48\xf6\x0d\xba\x8c\x55\x08\xd1\x4b\xfd\xdb\x9b\x11\xdd\x04\x4e\xf2\xd8\x4c\x16\xb9\xa9\x03\x8d\x8e\x78\xed\xa4\x3b\x91\x29\x7d\xf3\x5f\x43\x61\xa3\x83\xb4\x1d\x49\x67\x7a\x68\x7d\x5b\x34\x4a\xd1\xab\x0f\xc7\x30\x17\xb3\xbe\xbf\x32\x30\x6f\xb3\xfd\x7b\x3d\x50\x71\xf3\xab\x5f\x6e\x49\xaa\x15\x54\x0c\xad\x65\x03\xbe\xa7\x78\x4c\xf9\x42\x18\x01\xce\x13\x85\x83\x98\x93\x36\x2a\x97\xfa\xe1\x21\x30\x0d\x67\x83\xaf\x0f"}, {{0x7d,0xfa,0x32,0x8e,0x90,0xa1,0xb8,0x49,0xc2,0x19,0xe3,0xda,0x83,0x2d,0xf9,0xed,0x77,0x44,0x82,0x34,0xf0,0xd8,0x9e,0xa5,0xd1,0x7a,0x3d,0x64,0xe7,0x88,0x3d,0xaf,},{0xe3,0x0c,0xe6,0xfd,0x5f,0x58,0x00,0x38,0x9a,0x70,0xcd,0x11,0x73,0x64,0xf5,0x99,0x45,0xaf,0xb1,0x80,0xf2,0x29,0x92,0x73,0x60,0xb0,0x6b,0x48,0x35,0xf8,0xdc,0x91,},{0x1c,0x61,0xd5,0x3b,0x87,0x2f,0x8c,0xde,0x59,0x86,0x09,0x68,0x2c,0x79,0xf6,0xc5,0xdf,0x00,0x7c,0x51,0x3a,0x71,0xcf,0xb3,0xa0,0x6d,0xcb,0x82,0xd8,0x5c,0x4b,0x00,0xcc,0xc4,0x0b,0x00,0xe5,0x9f,0x59,0x53,0x93,0x08,0x8b,0x4c,0xd0,0x43,0x28,0x55,0xc6,0x7a,0x20,0x7d,0xa7,0x1f,0x87,0xe7,0x2c,0x40,0x9b,0x3e,0x50,0x27,0x95,0x07,},"\xe5\xe4\x95\xd6\x63\xf4\x72\x36\x71\x45\x32\x68\x7a\x24\x30\x8f\x94\x2c\xa9\xc3\x3e\x08\x8f\x7f\x10\x6a\x5a\x72\x35\x18\xca\xcb\xbe\xf4\xa6\x8c\x93\x9a\x69\x50\xb2\xdc\x25\x89\xf8\x2d\x35\x4e\x57\x52\x72\xd4\x2b\x13\x83\xd3\x15\xab\x8a\x20\xaa\x0c\xdc\x9d\x4d\xf6\x78\xab\x3b\x26\x61\x2b\x5d\xca\x66\xe7\x1f\x9f\x3f\xa7\xd9\xe7\x31\xdc\x48\x1e\x2b\xc7\x12\x7c\xea\x3b\x62\x03\xca\x6c\xd8\x16\x2e\x90\x88\x6a\x73\xdc\x46\xc8\x3d\xde\xfc\x4b\x9e\x2d\x53\xd2\x9d\xd3\x87\xc6\x24\xe0\x8b\xd8\xd5\x3b\xe9\x28\xa4\x0a\x9a\xa8\xae\x8b\x1c\x8d\x0f\xb6\xa7\xbd\x6d\xce\x5f\x62\x31\x5b\x7a\x21\x81\xf6\x27\xf2\x56\xbb\xe7\xe2\xa9\x5b\xf4\x64\xe6\x13\x22\x04\xc1\x74\x20\x96\x29\x84\x02\x35\xb2\xc3\x99\x13\x30\x1a\x4b\x40\x32\x5d\x11\x8d\x38\x4b\xc7\xac\x02\x8c\xd4\xf1\x27\x02\xe1\x61\x19\x1b\x14\x9e\x42\x09\x05\x8a\x55\x12\x2b\xbb\x8b\x22\xb2\x46\x83\xba\x4f\x8e\x2e\x6c\xcf\xc0\x8d\xc8\xc8\xb1\xbc\xfb\x6d\x60\xbd\x8f\x06\x21\x96\x93\x3d\xf3\x19\xab\x16\x90\x6d\x08\x57\x30\xeb\xa1\x72\x0d\x4b\x02\xc6\x7d\xaf\x38\xcc\xe6\xab\xa3\x8e\x25\xd6\x8e\xf9\x5b\x2f\x52\x19\x13\xa1\xd7\x7d\x5e\xb6\x50"}, {{0x6c,0xe1,0x3d,0x3c,0x2e,0xc7,0x1f,0xed,0x83,0x13,0x1a,0x69,0xd5,0xd0,0x30,0x31,0x4a,0xb4,0x9e,0x65,0x65,0xef,0x68,0x16,0x3f,0xff,0x09,0xac,0x5d,0x9b,0x47,0xe7,},{0x9c,0x7b,0x11,0x18,0xfa,0xb9,0x1e,0x0e,0x7b,0x19,0x2a,0x23,0xd9,0x5f,0xb8,0x77,0xcb,0x79,0x36,0xcc,0x6c,0x8a,0x33,0x05,0x92,0xf4,0x8e,0x67,0x84,0xed,0xc2,0x92,},{0x60,0x8b,0x2b,0xf6,0xf6,0xda,0x05,0xc2,0xac,0x5b,0xbf,0xd7,0x95,0xa2,0xac,0x32,0xc7,0x9c,0x74,0x15,0x3f,0x94,0x31,0xde,0xa5,0x97,0x68,0xff,0x4c,0x22,0x5e,0x3b,0x69,0x3b,0x64,0x5a,0x50,0x67,0x66,0xb8,0x60,0x85,0x0e,0xe9,0x7e,0xa4,0x30,0x32,0xb0,0x5b,0x69,0xe5,0x67,0x67,0xe8,0xeb,0x9d,0x19,0x18,0xdf,0x9a,0xfb,0xa8,0x05,},"\x10\xbb\xc3\x11\xeb\x2a\x76\x5e\x01\x67\xff\x37\x61\x8f\xf7\x0e\x13\xf0\x2d\x7b\x06\x17\xae\x4a\xc0\x6b\xef\xbb\xe1\x49\xc9\x72\xa9\x94\xf6\x80\xca\x4d\xc9\xa9\x2e\xc7\xef\xa5\x39\x97\xfa\xd3\x56\xb9\xff\x4e\xbd\xee\x62\x95\x41\xd1\xf4\xde\xa6\x2e\xd0\xd2\x49\x4f\x9c\xcf\xdf\x07\xa9\x31\x04\x91\xf6\x1c\x4b\x3e\x27\x00\xb4\xa3\xc6\x68\xd6\x78\x32\x9a\x38\xc2\xef\xf9\xd8\xcb\xa4\x31\xfb\x95\x9e\x7f\x76\x55\xbd\x0f\xbd\x77\xd5\x3b\xbb\xc2\xeb\x8d\xc5\x1d\xd7\x18\xed\x98\x72\x8a\x18\x16\x86\xbe\x12\x2b\x84\x4d\x3d\xa3\x31\xe3\x29\xd3\x95\x9b\x59\x23\xf7\x73\x43\x25\xa0\x21\x02\x6e\x27\x54\xe1\x7a\x15\x10\x8b\xe8\x01\x46\x5a\xd9\x58\xdb\xcf\x21\xdf\x89\x0c\xfe\x5d\x5b\x88\x3c\xa4\x3c\x61\xce\xdc\xcb\xdb\x58\xb8\x49\xea\x75\x37\x4f\x1e\x91\x8e\x80\x3e\x57\x7a\x5d\xc7\xa1\xc1\x79\x36\xec\xcf\xcd\x34\x81\xbd\x2b\x1e\xb0\x75\xb8\x32\x37\xca\x6f\x3c\x07\xc1\x9e\x9a\xf9\x73\x12\x67\xbe\x82\xd4\x89\x8e\xee\x96\xeb\xc9\x00\xd4\x8b\x05\x9d\x51\xb0\xdd\x41\x5b\x1c\x89\x06\x60\xa8\x8d\x25\xf5\xc5\xf3\x5d\x8e\x45\xe5\x23\xe0\xce\x33\x36\x92\x3a\xb4\x36\x70\xe3\x5c\x50\x57\xd5\x6c\x75\x88\x76"}, {{0xd4,0x5e,0xe6,0x9a,0x5f,0x1a,0x7c,0xfd,0xd0,0x34,0x3f,0x87,0x70,0xd1,0xc6,0xbc,0x02,0x6f,0x06,0x7a,0x70,0xdb,0xe8,0x39,0xa8,0x6f,0x2a,0xa0,0x68,0xc3,0x3f,0x81,},{0xfc,0x8d,0x9f,0xb0,0xe4,0xf3,0x47,0x93,0x09,0x07,0x55,0xe0,0x32,0x80,0x96,0xe0,0x1e,0x28,0x1e,0xa3,0x51,0xb8,0xd9,0x5c,0xd9,0x11,0x6e,0x13,0x1a,0x5c,0xa5,0x4e,},{0x15,0x6c,0x51,0xc5,0xf9,0x15,0xd8,0x9b,0x8d,0x14,0x00,0x35,0x0f,0x8f,0x21,0x7a,0x5c,0x02,0xe2,0x62,0x9e,0xde,0x9f,0x4a,0x30,0xb6,0xe7,0x1d,0x1e,0xa7,0xa9,0x53,0xcc,0x6d,0xb3,0x1b,0xa5,0xc7,0x78,0xc2,0x69,0x92,0x0b,0x64,0x9f,0xb4,0x22,0x1c,0x6d,0x38,0xcf,0x2c,0xea,0x2a,0x7d,0xe3,0xad,0x42,0x3e,0x04,0xfa,0xaa,0x06,0x07,},"\xeb\x5e\xd8\xab\x79\xcb\xfe\x61\xc2\x59\x81\xb9\xd1\xd6\xb7\x0f\x10\xb6\x01\x94\xb4\x16\x1f\xe1\x7d\x11\xaf\xf1\x76\x79\x94\xaa\x08\x13\xe9\xec\xe2\xf4\xc5\xd5\x31\xb9\x9e\x8a\xdf\x18\x88\xc3\x0a\x63\x89\x3e\xb4\x51\xaa\xf5\x5a\xcd\x5a\x52\xad\x8c\x40\x1f\xaa\x88\xd6\xea\xcf\x3e\x49\x47\x05\x66\x11\x4f\xd0\xc6\xa2\x74\xe9\x54\x48\x46\xb0\xae\x9b\xfa\x12\x4d\x79\x51\xeb\x26\x71\x5e\x19\x25\x3f\xf7\xed\xc8\xa7\x09\x65\x77\x6f\x23\xce\x46\x03\x1e\x03\x4a\x20\x07\x23\xba\x3d\x11\xe1\x1d\x35\x3d\x7e\x7c\xd8\x4a\xed\xe2\x67\xff\x64\xbe\xd4\x18\xcb\x9f\x28\xc6\x1c\xd0\xf6\x3b\x6c\xe2\xec\xae\x14\xb2\x0b\xc6\xbd\xae\xd8\xc4\x28\xba\xd1\x8b\xe4\xb7\xd6\x63\x38\x36\x4a\xcd\x80\x42\xa8\x25\x6f\x25\x8a\x69\x96\x9b\x8d\x3c\xa2\xea\xb3\xae\xa3\x70\x6e\x5f\x21\xc3\xb1\xef\xcc\x25\x4a\x82\x4b\xb4\xe7\xea\x7a\xba\x88\x27\xc8\xeb\x82\x78\x6c\x66\x5a\xa9\x73\x82\x19\x31\xff\x99\x0a\x63\xfd\x34\xa7\x4a\x6d\x8c\x22\xa8\x82\xb0\xb9\x35\x15\x2c\xcb\x36\xfc\xc7\x6f\x4e\xca\x65\xd6\x7c\x86\x80\x94\x2f\x75\xdf\xad\x07\x34\x39\xc0\x91\x60\x65\xe8\x38\x77\xf7\xba\x20\x93\x03\xf3\x35\x48\xd9\xe4\x0d\x4a\x6b"}, {{0x8a,0x76,0xea,0xab,0x3a,0x21,0xec,0x5a,0x97,0x5c,0x8b,0x9e,0x19,0x7a,0x98,0x9e,0x8e,0x03,0x08,0x99,0xeb,0x45,0xd7,0x89,0x68,0xd0,0xfb,0x69,0x7b,0x92,0xe4,0x6d,},{0x2d,0x9c,0x81,0x3d,0x2d,0x81,0xe2,0x73,0x0b,0x0d,0x17,0xd8,0x51,0x2b,0xb8,0xb5,0xd3,0x3f,0x43,0x6c,0xab,0xaa,0x13,0xe1,0x41,0xca,0x1c,0xb7,0x85,0x01,0x43,0x44,},{0xfc,0xee,0xcc,0xa4,0xb0,0x14,0xfe,0xcd,0x90,0xb9,0x21,0xb0,0xfa,0x3b,0x15,0xae,0xaa,0x4e,0x62,0xca,0xa1,0xfb,0x22,0x72,0x9c,0x70,0x26,0x92,0x32,0xc3,0x3c,0xef,0x0d,0x0a,0xee,0xa6,0x64,0x32,0xc1,0x28,0xaf,0xb9,0xa3,0x64,0x6b,0xc7,0xf0,0x3a,0x12,0x77,0x4d,0xa8,0x75,0x83,0x98,0xc2,0xa0,0xdc,0xce,0x0b,0xbb,0xf6,0x74,0x0a,},"\xc6\xc7\x8f\x2e\x20\x80\x46\x1a\xed\x9f\x12\xb4\xf7\x7c\x98\x9b\x19\x71\x67\x80\xfa\xb6\x0e\x6e\xcb\x97\x93\xb4\xbc\x7e\xd6\x9e\x5f\x70\xfa\x6b\xdb\xa1\x6e\x9b\xd3\x19\x49\x69\xee\xa6\x66\x5a\xbf\xd6\x30\xde\xee\xfa\x3d\x71\x7b\x6d\x25\x4d\xd2\x4b\xc9\x7d\xde\x21\xf0\xf2\x9f\x9e\xd3\x4b\x8b\xd7\xa0\x13\x38\x0f\x4f\x82\xc9\x84\xfd\xbd\x95\xaf\x98\x05\xb7\x44\xbc\xd9\x52\xc5\xa7\x1f\xbb\x57\xd1\x1f\x41\x1c\x18\xcc\x30\xbc\x35\x94\xf7\xad\x82\x28\xcb\x60\x99\x39\x4a\x1b\x6b\x0a\x81\x85\x81\xbd\xf9\x3c\xce\x58\xf3\xa4\xa2\x3e\x55\xdb\x3e\x69\xca\x9d\x60\xcf\xb3\xa9\x07\xfb\x68\x32\x9e\x2f\xfb\x6c\x65\xf1\xe8\x28\xd2\x81\x27\x10\x9c\x9e\x9f\xb7\x01\x60\xf2\xef\x82\xa2\xee\x9f\x9b\xd1\x70\xc5\x1e\x13\xfd\x3f\xc1\x86\x6b\x22\xc7\x9f\xe6\xd5\x10\x12\x17\x97\x9d\xbe\x27\x24\xdc\xad\x8a\x9b\xc6\x9a\xcc\x42\xc1\x12\xdc\x69\x7b\xd2\x71\xee\xa5\x50\xe9\xe5\x04\x06\xbf\xd2\x82\x45\xb8\x3b\x8f\x01\x2d\x34\xdb\x6d\xbd\xd5\x5a\xe6\xe5\x75\x74\x5c\x15\x3d\x6e\x75\x34\x90\x10\x27\xea\xdc\x2f\xcc\x33\xa5\x28\x7d\xdb\xca\x6d\x3a\xea\xb8\x97\x22\x94\xdc\x6c\x71\x2b\x99\x42\x54\x72\x77\x34\x0e\x7a\xd1\x9e"}, {{0x18,0xa8,0xf9,0x36,0x48,0xcd,0xcf,0x47,0x13,0x36,0x30,0xaf,0x1e,0x11,0xc0,0xce,0xea,0x3d,0xe0,0x73,0x27,0x31,0x4c,0x96,0x58,0x0d,0xf7,0x75,0x59,0x7d,0x7a,0x9c,},{0x29,0x12,0xf4,0x1a,0xb4,0xc8,0x7e,0x39,0x37,0xa0,0x33,0x31,0x80,0x2c,0xba,0x87,0x71,0x6b,0x4e,0xea,0x14,0xb9,0xfb,0xa6,0xf5,0x46,0xd0,0xac,0x2c,0x09,0x73,0xdf,},{0x3b,0x77,0x39,0x4c,0xd6,0x9f,0x8b,0x45,0xd0,0x0c,0xfe,0x3a,0x79,0xa7,0x90,0x06,0x28,0xa5,0x65,0x18,0xb3,0x79,0xed,0x8a,0x11,0x58,0x1f,0xc3,0xa3,0x76,0xe5,0xd6,0x68,0x07,0xdf,0x11,0xe7,0x09,0x04,0xf6,0x96,0xc7,0x41,0xd2,0x1d,0x13,0x93,0x10,0xfa,0x1b,0x89,0xa9,0x3b,0xdc,0x4d,0x2c,0x39,0x97,0x99,0x1f,0x52,0x20,0xee,0x00,},"\x59\x20\x93\xac\x7c\xd6\x71\xd6\x07\x0b\x00\x27\xed\xac\x1f\xb0\x15\xcc\x20\x5d\x78\xbb\x60\x3f\x37\x8e\xb9\xf8\xaa\x38\x8c\xa8\x30\xdb\x3c\xb2\x34\x20\xc7\xe8\x52\xdb\x0b\x55\x24\x1e\xb8\x8a\x02\xcc\x62\x7a\xa9\x41\x43\xbe\x43\x9a\xab\x4b\xf2\x63\x47\x57\x47\x04\x06\xe8\x42\xf2\x0e\xb1\x0f\x07\x00\xe3\xc2\xda\x36\x4f\x58\x8a\x80\x00\xf2\x38\x50\xc1\x2c\xe9\x76\xf3\x26\xd2\xdf\x1b\xac\x13\xe9\x50\x20\xb4\x12\xb1\x75\xbf\x74\xbd\x7e\xbb\xac\xf3\xae\x55\xc0\xda\xeb\xb5\xc0\x10\xbf\x80\x4f\xee\xe1\xd7\xd4\x9f\xae\x05\x0b\xea\x55\x99\x6f\x53\xcf\xe1\xf1\x5a\x0c\xf2\x07\x27\xdb\x4e\xe3\x11\xc2\x60\xba\xd9\x68\x2d\x7b\x96\x5e\x27\xa9\x49\x1f\x47\x1d\x4a\x47\x3a\xff\x64\x6c\x7d\x42\x4d\x5a\x0b\xdc\xbb\x8a\x02\x33\xf4\xb3\x06\x0d\xd0\x4c\x98\xec\x98\xdf\xd0\x5e\xc7\x24\x78\x84\xe2\xd8\xe1\x52\xd4\xae\x52\xb3\xd5\x86\x5d\x9e\xfd\x67\x06\xa6\x0e\x08\x8e\x1e\x7c\x9f\x62\x45\x10\xab\xc7\xa2\x04\x5a\x2c\x7a\x75\x88\xe2\x53\x5e\x73\x19\x1d\xd5\xcf\x05\x42\x15\x63\xf5\x56\xa1\x3e\x82\x36\x67\x03\x43\xcd\x5b\xa4\xd4\x66\xe2\x45\xc4\xee\x3b\x5a\x41\xe7\x0c\x9a\x0f\x5e\x6e\xa2\xc5\x59\xeb\xe6\x1b\xa8\x1e"}, {{0x20,0x6c,0xd2,0xb8,0x11,0x4a,0xae,0x18,0x8d,0x81,0x86,0x2c,0xce,0xc4,0xcb,0x92,0xc4,0xef,0x5f,0xc7,0x8c,0x24,0x43,0x5a,0x19,0xf9,0xed,0x9b,0x8a,0x22,0xf4,0x7e,},{0x97,0xa6,0x7a,0xc2,0x81,0x1f,0x52,0x94,0x56,0xdf,0x53,0x27,0x37,0xd7,0x6b,0xed,0x7e,0x38,0x7d,0xa8,0x3b,0xd5,0x54,0x59,0x37,0x2f,0xdf,0xb2,0x7f,0xfa,0xcf,0xf3,},{0x73,0xa4,0x0d,0x9d,0xa0,0x8f,0xb9,0x8e,0xa2,0x5b,0x67,0xe7,0x21,0x55,0x7a,0x1a,0x51,0x22,0x52,0x94,0xd3,0x16,0xb5,0x31,0x49,0xaf,0x89,0x5f,0xa4,0xd6,0x3c,0xb4,0xa3,0xf5,0x6f,0x68,0x85,0x66,0xef,0x6d,0xa4,0x2f,0xd2,0x94,0x1d,0xff,0xa0,0x6d,0x49,0x7a,0xa9,0x02,0x16,0x5d,0x50,0x21,0x3a,0x62,0x14,0x11,0x62,0x99,0xa9,0x0c,},"\x48\x0c\x48\x00\xf6\x8c\x79\xf5\xdf\xc0\xc3\x66\x6c\x0a\xc4\x29\xb3\x0f\xe0\xc5\xfe\x84\x87\x50\xdb\x21\x71\x38\x0b\x80\xc8\xe9\xfe\xc0\xa0\x54\xb1\x6d\x08\x67\x4c\xef\xe2\xf6\x4e\xc2\x8b\xb6\xb0\x59\x6b\x35\x23\x55\x75\xf1\x89\xbe\xe2\x59\xac\xa7\x66\xc2\x22\xac\x0a\x46\xcf\x2a\xf7\x57\x74\xda\x4e\x34\xa0\xb5\x4f\xc2\xac\x49\xec\x8b\xed\xf4\x88\x7c\xd9\xb7\xbe\x4f\xdb\x7f\x68\x69\x02\xdd\xfa\xb0\x46\x27\xe2\x6e\xa2\xdc\x3d\x97\xd6\x2a\x4b\x15\x46\x18\x02\x18\xed\x8f\xa1\x13\x33\x48\x19\xb5\x27\x5c\xc5\x4a\xfd\xee\x44\x30\x90\x08\x59\x65\x07\x97\x16\x75\xe6\xd8\xb8\xa8\xed\xec\x47\x18\xf2\xd4\xbd\x73\x52\x13\xcb\xbd\x18\x79\x1f\xaa\x80\x54\x17\x49\x07\xa7\xac\x17\xd7\x14\x3a\x47\x57\xe4\x93\xbe\xee\xc4\x84\x9d\x0b\x83\x6f\x18\xbb\x2b\x3c\x90\x16\xf2\x5a\xf4\x7f\xb9\x61\x99\x25\x17\x20\x54\x9f\x15\xd1\x49\x50\x3d\x41\x09\x5e\x25\xf2\x62\x09\xda\xac\x39\x15\x44\x85\xc3\xde\xd7\xcb\x1a\x8c\x3e\x83\xa5\x2f\x5a\x06\xec\x09\xcf\x83\xdf\x00\x72\x6b\x79\x68\xf6\x4c\x0c\xba\xe2\x99\x51\x2f\xb4\x38\x56\x0f\x04\xb3\xb6\x44\x34\x6f\x93\x8a\xc8\xe9\x04\x86\x61\x4c\xd8\x44\xb5\x4e\xae\x07\x8b\xf6\x78\xb3"}, {{0x59,0xb1,0x44,0xa7,0x08,0xab,0xec,0x97,0x27,0x29,0xa0,0x4a,0x6c,0x13,0xf0,0xea,0x02,0x0b,0x4e,0xd4,0xa4,0x82,0x98,0x02,0x3a,0x56,0x89,0x58,0xc2,0x12,0x15,0xec,},{0xc4,0xf4,0x72,0x00,0x92,0xed,0x61,0x79,0xa0,0x82,0xae,0x4d,0x61,0x45,0xdf,0x37,0x71,0x78,0x6e,0xfc,0xa9,0xbd,0x9b,0xb7,0x9c,0x9f,0x66,0x67,0xd2,0xcb,0x56,0xb3,},{0x1a,0x80,0x85,0x0f,0xcb,0xd6,0xe6,0x43,0xc6,0xba,0x8e,0xb6,0x84,0xdb,0xef,0x7d,0xf0,0x15,0x15,0x92,0x28,0xda,0xed,0xcf,0x06,0x04,0x70,0x91,0x86,0x05,0x4d,0xb1,0x85,0xaa,0x7b,0xaa,0xcb,0x09,0xd6,0xca,0xad,0x01,0x63,0x8e,0xff,0x8e,0x46,0x87,0x35,0xa6,0x01,0x24,0xde,0x0c,0x53,0x76,0xe9,0x43,0x40,0xe5,0x41,0xa9,0x80,0x07,},"\x38\x57\xbd\x26\x0b\x8a\xad\x9d\x07\x3f\x06\x76\x5d\x37\xfe\x89\x3a\x3f\x53\xe2\x3d\xe8\x66\xdd\xac\x33\x49\x5a\x39\xad\x33\xee\x9e\x9d\x5c\x22\x50\x2b\xc1\xc4\xb5\x47\x0d\x0e\x3f\x3a\x58\x52\x23\xfe\x4c\xb9\x3c\xc4\xad\x2b\x5b\xa6\xd7\x88\x26\xa5\x3f\xc0\x25\x3d\xc5\x80\xa2\x01\x8c\xc9\xff\x1c\xfe\xdb\xd3\xac\x0b\x53\x29\x2d\xee\xfb\xc1\x4e\x58\x9a\xcf\x49\x6c\xb5\xf7\x67\x01\x30\xfd\xbb\x6c\xf3\x8d\x20\x89\x53\xc0\x15\xa0\x47\x46\x75\xb7\x24\xbd\x10\x9f\x7c\xb8\x9c\x33\x01\x67\x51\xfe\x7a\xa7\x85\xd0\x99\xd0\x9a\xb2\x0d\xd5\x25\x8c\xd7\x64\xac\x8d\xaf\x34\x3c\xe4\x79\x0e\xad\x08\x63\xaf\x43\x12\x1a\xa5\x27\xa3\x7a\x11\x62\x8f\x47\x86\x96\x68\xf8\xea\xc0\x0d\x80\xb6\xbf\x99\x06\x66\x3d\x7a\x28\x99\xc1\xcb\x67\x8c\xd7\xb3\xeb\x3b\xc8\x02\x26\xb8\xb1\x3b\x6e\x46\x87\x7f\x38\xf0\x7c\x3d\x9c\x86\xd3\x36\x8b\xaa\xc4\xa6\xf6\xb9\x3c\xce\xbc\xec\x98\x11\x47\x4b\x6a\x6a\x4d\xa5\xc3\xa5\x96\x65\x71\xee\xd0\x5e\xdc\xc0\xe3\xfe\x7c\xd1\x59\x15\xc9\x1f\x44\xee\xe8\xc1\x49\xae\x45\x1f\x37\x55\x18\xa7\x9f\xb6\x00\xa9\x71\xa3\x9b\x94\x33\xdf\xa1\x9f\x91\x93\x1b\x19\x32\x27\x57\x47\xc2\x62\xee\xdc\xbd\x27\xf1"}, {{0x8d,0x16,0x21,0xee,0xab,0x83,0x27,0x0d,0xe8,0x57,0x33,0x5c,0x66,0x5b,0xbf,0x57,0x26,0xe3,0x72,0x22,0x25,0xfd,0x01,0x6e,0x23,0xbf,0x90,0xab,0x47,0xae,0xec,0x3d,},{0xbe,0xcd,0xbc,0x02,0x4d,0xae,0x6a,0x94,0xed,0x4e,0x29,0xc8,0x0f,0x2a,0xff,0x79,0x6a,0xed,0x8f,0xeb,0x2c,0x1b,0x37,0x90,0xa8,0xc7,0x2d,0x7b,0x04,0x8a,0x2c,0x61,},{0xe0,0x8d,0x6c,0xaa,0x5f,0x39,0x32,0x7d,0x6e,0x66,0x52,0xed,0x74,0xdd,0x1a,0x37,0x84,0x4b,0x97,0x9f,0x5c,0xce,0x74,0x7a,0x60,0x6f,0x56,0x79,0xf4,0x89,0x8b,0xbb,0x76,0x43,0xdf,0x7e,0x93,0x1b,0x54,0xa2,0xb4,0x0e,0xbd,0xef,0xe8,0x30,0x03,0xf6,0x1c,0xa0,0xf1,0x11,0x12,0xf0,0x23,0xc6,0xa3,0xe8,0xcc,0x18,0xca,0xfe,0x5f,0x0d,},"\x97\xfa\xcd\xdc\x82\xcc\xcc\xcf\x78\x8c\x31\xb3\x30\x5e\x93\xeb\xa9\x56\xf8\x96\x13\xe6\xe5\x35\x42\xb0\x43\x26\x7f\xee\x54\x4c\x2b\x0a\x8a\xe8\x88\x6a\x31\xb9\xd3\x21\xa6\x3c\x27\x62\x3b\xae\xfe\xa8\x40\xb2\xa8\xaf\x5b\x23\x30\x19\x3f\xfb\x5b\xaf\x87\x3c\x33\x55\x28\xaf\xea\xe2\x16\x01\x63\xc8\x51\xc5\xa2\xe5\x81\x54\xa1\xb0\x56\x9c\x2d\x13\x66\xc0\x71\x04\x37\x62\x3b\x0e\x08\xc6\x86\xe5\x4f\xc2\x79\xed\x4c\x45\xf3\xe8\x56\x86\x83\x75\xf7\x82\x24\xc7\x77\xb1\x3d\x75\xde\x10\xd7\x91\x73\x55\x24\x25\xd1\x5a\x56\x19\x04\x15\x5f\x21\x17\xb2\xf1\x47\x13\xeb\x0b\x04\x64\x8a\x3b\xde\xb3\x30\x21\x67\xd1\x97\x3e\x78\x8a\x06\xcb\x00\xd4\x8c\xcb\x26\x9f\xa7\x1a\xf8\xba\x68\xea\xe5\x5d\xbb\xfd\x95\x94\xd5\xc2\xb4\xdc\x13\xae\x03\x21\x71\x85\x61\xac\xdf\x67\xdc\x8c\xfc\xc2\x5b\xc4\x6b\xb6\x6e\x09\x6a\x19\x41\xd9\x33\x52\x07\xd3\xf7\xd1\x1e\x89\x04\x90\x4f\xab\xe3\xa5\x0a\x38\x83\xe7\x07\x80\x47\xdf\x25\x2f\x38\xb6\x7c\xd2\x8a\x6a\xc4\x5c\x7d\x7a\x1d\x2a\x1d\xe8\xd4\x57\x47\xcf\x09\x30\x1e\x01\xcd\xaf\xd0\xcd\x99\xa6\xe9\x1b\x70\x4d\x50\x9f\xce\x69\x2f\xbd\xef\x2f\x71\xa5\xce\x0b\x35\xbc\x15\xc6\x5f\x87\x68\x24"}, {{0xf2,0x73,0x5d,0x50,0xee,0x3a,0x9a,0x65,0xb5,0x8c,0x8a,0xcf,0x55,0x16,0x63,0xe9,0x88,0x09,0xec,0x40,0x6f,0x73,0xe3,0xe7,0xf4,0xe7,0x3b,0xc4,0xea,0x92,0x38,0x74,},{0xdf,0x48,0xa5,0xb9,0x4a,0x07,0xaf,0x3c,0x2c,0x99,0xb8,0x38,0x87,0x62,0x24,0x32,0x33,0xc8,0x50,0xdc,0x17,0x53,0x17,0xd6,0x02,0x63,0x8e,0x5b,0x86,0xab,0x49,0xed,},{0x69,0x42,0xa7,0x69,0x64,0x17,0xef,0xaa,0x59,0x1b,0x95,0xe1,0x1f,0x02,0xd7,0x63,0xbe,0xf5,0x27,0x9b,0x93,0x2a,0x8e,0x2a,0x7c,0xbb,0x9f,0x58,0x36,0x95,0xc1,0x4c,0xe5,0xcc,0x55,0x6b,0xec,0x66,0x79,0x9b,0x33,0xcb,0x59,0x2d,0xa4,0xdf,0x27,0x35,0xf9,0xee,0xf2,0xc3,0xce,0xca,0x43,0x62,0x16,0x4b,0x6c,0xc9,0x3d,0xa4,0xe1,0x05,},"\xae\x31\xe9\x4e\x71\x97\xe4\xe4\xd0\x23\x93\x48\x02\x5e\xd6\x68\x1e\x51\x3c\xe1\xa6\xe0\xaa\x0e\x5b\x97\x93\x73\x91\x21\x50\xef\x11\x3e\x50\xef\x05\x69\xc4\x83\xf7\x56\x8c\x4b\xbc\x47\x03\xc5\xda\xca\xa8\x0a\x0d\xe4\xe7\x38\x38\x3f\xa1\xf1\x0d\x6d\x40\x71\xa3\x1b\x99\xe6\x48\x51\x43\x97\x23\x16\xc8\x65\x22\xe3\x7c\x68\x87\xa1\xc3\x07\xb2\x9b\x0d\xd6\xf9\xf1\xb4\x38\x31\x0a\xf9\xd8\xd7\x34\x6f\xb4\x1f\x9b\x2d\xd2\xe8\x0b\x14\xc4\x5e\xb8\x7d\x4e\xd4\x8e\x37\xa5\x26\x0b\x52\x25\x7b\x3e\x99\x78\x7a\x13\xc5\x53\x92\xba\x93\x0c\x08\xe0\x24\x0e\x96\x0d\xef\x0c\x29\xb8\x55\x07\x45\xcf\x14\x9d\xee\x53\xa5\xd1\x74\xec\x06\x5d\x2d\x66\x77\xde\xe1\xfc\x42\x05\x70\x62\xc3\x4e\x27\xea\x5d\xbc\xdb\x86\x1b\x9f\x67\x0c\x60\x32\xc7\x84\x6c\xec\x8e\x87\xa7\xc9\x52\x0e\x27\x96\x7b\x01\x86\xee\x71\xb7\x7e\xd6\xd0\x29\xbb\xdd\x70\x94\x9c\xec\x4a\x70\x93\x29\xfa\x37\xfe\xe0\x02\x49\x0c\xc1\xbc\x4c\x2d\xf6\xf7\x63\xf9\x85\x8f\x33\xd7\x50\xc5\xb5\x05\xa6\x7e\x23\x70\x63\xc0\x48\x6f\x94\x56\xd3\xc6\x20\xd9\xac\x7c\x98\xf1\x38\x1d\xe0\xef\xfe\x41\xc1\x82\x59\x50\x4a\x15\x0d\x68\xa6\xa2\x8b\x0a\x3e\xea\x80\x3b\x85\x53\x15\xc9\xe0"}, {{0xca,0xd9,0xd2,0x1a,0x01,0xc7,0xe1,0xd1,0x5d,0xf2,0xfb,0xd7,0x9c,0x51,0x6e,0xb8,0xc3,0x40,0x1e,0x9f,0xe2,0x84,0x67,0xcc,0x7b,0x21,0x67,0x9d,0x4e,0x33,0x1a,0x3d,},{0xa7,0xb5,0x5c,0x15,0xd6,0x79,0x0b,0x40,0x53,0x6f,0xca,0xe5,0xad,0x28,0x92,0xcd,0x66,0xb1,0x86,0x89,0xf4,0x99,0xc1,0xfd,0xee,0xa6,0x6d,0x4a,0x7d,0xf3,0x94,0x24,},{0x31,0x92,0x7d,0x01,0xdb,0x9f,0x24,0x72,0xf4,0xdf,0x6f,0x63,0xc1,0x8e,0xbd,0x83,0xc2,0xb1,0xaa,0xf8,0x8d,0x58,0x0e,0x84,0x88,0x54,0xdf,0x8c,0xba,0x63,0x95,0xd3,0xda,0x7b,0xd6,0xbb,0x9e,0xdc,0x1f,0xce,0x1c,0x7d,0x7e,0x13,0x60,0x55,0x8f,0xcd,0xdf,0xa9,0x39,0x15,0xbe,0x07,0x6e,0xfb,0x8e,0xa2,0xdc,0x5e,0xa7,0xb2,0x0d,0x0a,},"\x70\x70\x2b\xf1\x9c\x91\x9f\x98\x36\xde\xfd\x7b\x84\x6f\xd9\x99\x2d\x8b\x7e\xb2\xe1\x06\xae\xb7\x1e\x60\xa3\x1b\x4e\xa2\x5a\x41\xb2\x12\xdc\x7d\xe7\xc9\x1c\xbd\x61\x3d\x58\xd0\x59\x5d\xb8\x33\xcf\xe7\xe5\x05\x84\xf2\x55\x69\x60\x2c\x77\x44\xfa\x67\x5d\x15\x6d\x0f\x63\xcd\x2b\x7c\x08\x9c\x8a\x00\x68\x6a\x43\x71\x69\x82\x6a\x12\xdc\x48\x5b\x38\xc0\x68\xa8\x00\x71\x42\xe5\x16\x37\x47\x01\x1a\x07\xa4\x15\x68\x36\x22\xab\x1e\x23\xce\x57\x7c\x73\x2b\xa1\x4f\x40\x1f\xbc\x30\x43\xe0\x69\x3a\x92\x05\xc1\x9a\x92\x29\x8a\x3d\x9b\x08\xfb\x7a\xfa\xfa\xe0\xa9\xf0\x16\xbc\x75\x0e\xe6\x31\xa5\xf5\xda\x5d\xb6\xf9\xba\x26\x92\xc7\x4c\xaa\xae\xb4\xd0\x97\xe9\x0e\x3c\x02\xd2\xe3\xa7\xfb\x3a\xa0\x00\x04\x0b\x7c\x17\xb7\x45\x64\xe6\x46\xbe\xa1\x6b\xad\x61\x1e\xbc\x08\x59\xa3\x82\x88\x04\xab\x4f\x5c\xfb\xa4\x17\xd2\x54\x51\x5c\xa3\x62\x0a\x3a\xd6\x83\xc4\x6c\xa6\x26\x7b\xb4\x95\x39\xbb\x30\xe3\x69\x08\x7e\x67\x43\x8e\x94\x89\x56\x27\x50\xdc\xcb\xa3\xaa\x0b\x1b\x0a\x6c\x26\x70\x32\xd2\x0c\x2a\xdb\x75\xe6\x8d\xf1\x12\x3b\x52\x59\xbf\xe4\xea\xc6\xca\xdc\xa6\x77\x81\x38\xa3\x73\x18\xad\xb3\x0e\x8d\x66\x9f\x3b\xc9\x69\x2c\xc7\x4b\x68"}, {{0xd9,0xbe,0x84,0x22,0x55,0xe9,0xa1,0x6b,0x0a,0x51,0xa8,0x67,0x42,0x18,0xce,0xe7,0xcd,0x9a,0x8b,0xdf,0x34,0x35,0x08,0x39,0x7f,0x4d,0xdb,0x05,0xf3,0xfa,0x00,0x82,},{0x79,0x31,0xbc,0x6d,0xfa,0x33,0x24,0x94,0x3a,0xab,0x18,0x3d,0x12,0x85,0x51,0x59,0x19,0x39,0x9f,0xfe,0x0b,0x71,0x06,0x77,0xf0,0x91,0x5d,0x3a,0x5b,0xe5,0x1e,0x92,},{0xc9,0x38,0x45,0x65,0x8c,0x95,0x60,0xd2,0xc0,0xe2,0x8f,0x28,0x2a,0xdb,0xd4,0x65,0x2b,0xaf,0xd3,0xbb,0x2e,0xde,0xc1,0x7c,0x94,0x87,0x8f,0x7b,0x94,0xd3,0xc7,0x7a,0xfe,0xc9,0x06,0xed,0x29,0x2a,0x8d,0xfb,0xf5,0xf8,0xe7,0xc1,0x18,0xe8,0xf2,0xca,0x33,0xdd,0xa7,0x90,0x9d,0x9b,0x69,0x5b,0x8f,0xf5,0xa1,0xc0,0xe9,0x7a,0xc8,0x07,},"\xac\x6c\x55\xb1\x34\x66\x3e\x41\xf0\x2a\x6d\xcb\x85\x49\xea\xa1\xc0\x13\xf5\x96\x58\xd8\x1d\x81\x2f\x95\xb7\x40\x09\x51\x37\x23\x67\x19\x45\xe1\x32\x4f\x90\xf8\xa3\xf9\x71\x36\x91\x81\xb5\x87\xba\xb4\x56\x65\xf7\x88\xd6\x63\xab\x78\x14\x0c\x5a\x22\xc1\xc1\x8d\x4a\xfe\xdc\x74\x48\xa7\x48\xaf\xe5\xbf\x23\x87\x00\x3c\x1d\x65\xab\x18\x48\x2e\xf9\x89\x22\xb4\x70\xda\x80\xad\x14\xc9\x44\x95\x1c\xe4\xae\xd3\x73\x90\xcc\xe7\x9a\x8e\x01\xb2\x4c\x7d\xfc\x11\x41\xc0\xec\xa2\xc7\xf7\x73\xed\x4b\x11\x80\x6a\x34\x61\x55\x13\x48\x6e\x4e\xe1\x1a\xf0\x80\x78\xa1\xb4\x05\x4c\xf9\x88\x02\x98\x60\x8d\xd9\xb3\xfa\xa1\xa2\x42\xa4\x52\xfe\x51\x16\x04\xb3\x10\x2c\x31\x3d\x14\xcc\x27\xc6\xf0\xf8\x47\x1d\x94\x55\x53\x17\xea\xa2\x64\xcd\xf5\x2c\x69\xe1\x8f\x46\x1e\x47\x90\x3d\x21\x29\x87\x16\xb1\x72\xee\x9c\xb1\x78\xf0\x8f\xf2\xd3\xc9\xc1\x62\x12\x1c\x2e\xd2\x1d\x87\x34\xb2\xf0\x63\x0d\x39\x91\x46\xcb\xf7\x6e\x02\x8a\x14\x3f\x2b\xf7\xbb\x50\xaf\x0f\x57\xb9\xba\x80\x21\xd2\x64\xb0\x0c\x66\x62\xf8\x4c\x86\xcb\x6d\x59\x52\xb3\xd2\x41\xf7\xdc\x3e\x70\x0c\x96\x61\x6c\xbc\xfb\x0d\x0e\x75\x3f\xfd\x5d\x21\xee\x32\x0e\x65\xe9\x7e\x25\xcb\x86\x09"}, {{0xcf,0xc4,0x8c,0xc6,0xf6,0x58,0x11,0xfe,0x7d,0x7b,0xba,0x85,0xd1,0xcd,0x84,0x85,0x8f,0xd6,0xf7,0xed,0xd6,0x38,0xf4,0xf5,0x52,0x36,0x3e,0xe7,0x68,0x5f,0x69,0xca,},{0xd2,0x9c,0x10,0x69,0x4c,0x5e,0x8e,0x3f,0x34,0x47,0xed,0x78,0xd3,0x4d,0xbd,0x74,0xa2,0xb3,0x01,0x37,0x3b,0xa8,0x71,0xb5,0x85,0x0c,0x33,0x3d,0xff,0x7b,0xf8,0xd0,},{0x80,0xc5,0xd5,0x1e,0x96,0xd1,0xca,0xc8,0xef,0xd3,0x45,0x98,0x25,0xe7,0x9c,0x1e,0x9f,0x65,0xaf,0x70,0x1d,0x1d,0x29,0xe1,0xf9,0x5b,0x03,0x67,0x07,0x11,0x3b,0x77,0x98,0x4b,0x7b,0x33,0x50,0xf0,0x40,0x77,0x33,0x3c,0x95,0x7f,0x8f,0xbc,0x7d,0x9b,0x04,0x0c,0x36,0x26,0x51,0x41,0x7b,0x98,0x99,0x02,0x7c,0xd3,0x3e,0xdb,0x11,0x03,},"\x8e\x7d\xef\xb9\xd1\x6d\x03\x6b\xd6\x42\xcf\x22\x6e\x32\x77\x3e\x60\x53\x61\xc5\xec\x4b\x95\x12\x55\x78\x8d\xb0\xa0\x42\xc6\x3e\x5a\x43\x67\xd6\x15\x24\xf1\x0e\x62\x58\x99\x13\x25\xa3\x9a\xb6\xb0\x36\x12\x26\x0c\x3f\xe3\xdf\x20\xb3\x42\x02\xd3\x43\x95\xbd\x4e\xd4\x0b\xd6\x13\x73\xdf\x78\x1a\x4c\x8b\xcf\xbd\x15\x30\x10\x60\xf0\x74\x37\x73\x23\x33\xd8\xe4\x97\x36\x32\x2d\xee\x6b\x22\x43\x8e\x78\x7d\x88\x56\xb7\x0c\x26\xec\x57\xd6\xda\xde\x9c\x3c\x28\xe2\x72\x20\xc5\x67\x0e\x39\x35\x44\xed\x09\x59\x37\x29\x8d\xc3\xad\xc7\x38\x65\xf7\x77\xe9\x00\x37\xbd\xef\x83\x47\x16\x47\x6d\x78\xf4\xe6\xcb\x49\x61\xa4\xc6\x8a\x8a\x83\x63\x38\xa9\xf5\xda\x17\x9c\x4d\x5e\x93\xc3\xf7\x0d\xd3\x5e\xec\x70\x96\x53\xdd\x8d\xe3\x79\x96\xb1\x20\x56\xd4\xee\xfc\xb4\xb6\xb3\xc1\x3b\xa9\x84\xd8\x32\x27\x5c\x43\x86\xeb\xf4\xa8\xff\x7f\x07\x8b\xe3\xd4\x28\xc1\xe0\xd9\xb1\x62\x38\x1f\x06\xa5\xb7\xbb\x12\x70\x40\x03\xd9\x1f\x25\xd1\xd8\xfd\x43\x62\x6c\xe7\x0f\xff\x59\xd2\x92\x77\x68\xa7\x6b\xf7\xf9\xef\x76\xff\x95\x48\x9f\x38\xed\xcd\x1c\x9e\x9b\x8a\x8b\x0e\xf6\x6c\x32\x80\x57\x76\xd5\xae\x9f\xbd\x84\xa7\xaf\x4f\xa6\x56\x3e\xc7\x0a\xc5\x73\x3a\x44"}, {{0x15,0xc9,0xf7,0xc4,0xd8,0x4a,0x5a,0x47,0x90,0x41,0x95,0x2e,0x6a,0x8c,0xac,0x24,0xe7,0x6f,0xd2,0xd2,0x75,0xc1,0x97,0xe6,0xb5,0x21,0x92,0x9b,0x43,0xba,0x6c,0x5d,},{0x86,0x33,0xc1,0x82,0x9d,0x29,0x09,0x1d,0xf7,0x1f,0xd5,0xc0,0xef,0x64,0x05,0x72,0xe4,0xb6,0x49,0x74,0xcd,0x09,0x7d,0xbe,0xbb,0xcd,0xde,0xba,0x04,0x16,0x47,0xc0,},{0x1e,0x36,0xbe,0xa5,0xa5,0x83,0x76,0x7e,0xbd,0x80,0x30,0x6c,0xab,0x23,0x31,0x55,0xb7,0xb4,0x28,0x14,0xb4,0x34,0x73,0xcf,0x45,0xcd,0xc5,0x03,0x9c,0x93,0x97,0x44,0xa9,0x69,0x4b,0x87,0x22,0x0d,0xaf,0x4c,0xcd,0x29,0xf2,0x5c,0xea,0x40,0x5e,0x7c,0x08,0xdb,0x2e,0xf1,0x7f,0x3f,0x03,0x4d,0xbb,0x49,0xcf,0xf6,0x02,0x83,0xe3,0x06,},"\x11\x73\x0d\xd4\x5d\xda\x80\xd8\x4d\x08\x0d\x92\xe9\xbd\xda\xee\xa6\x87\x8e\x4a\x0b\x3b\x51\x2d\x9e\xa7\x33\x80\x8e\x1c\xef\x51\xd4\x90\x48\xd6\xc7\x81\x16\xa4\xbd\xe3\xc6\x4a\xce\xaa\x52\xbe\xca\x86\xb3\x31\xab\x59\xe9\x18\x5c\x70\x28\x6a\x02\xbb\x5d\xd0\x4f\x5c\x7f\x4e\x9c\x7e\x44\x5e\x77\x45\x85\x65\xf1\x59\xc7\x83\xdf\xd4\xd9\x76\xa9\x10\xe9\x37\x78\x9d\x21\x41\xd4\x16\xed\x3a\x7f\x60\x8d\x26\x73\x7a\x86\xb2\x0b\x62\x4e\x3c\x36\xaf\x18\xd2\x5c\x7d\x59\xb8\xd7\x42\x7e\xc6\xc4\xd3\xd4\x38\xd7\xae\x09\x49\xdd\x7d\x74\x8c\x1f\xfd\x6f\x28\xe8\x28\x5d\x44\x04\x22\xd2\x2a\x37\x61\x20\x2e\x95\x84\xf5\xcd\xb3\x50\x45\x47\xaa\x4b\x68\x57\x30\xc9\x82\xcb\xa2\x13\xde\x08\x02\x0a\x5e\x4e\x46\xa9\x5f\xac\x4b\x48\x1b\xea\x0b\x63\x0a\xbd\x03\x0d\xdd\x33\x5a\x20\xfe\x2c\xf7\x09\x4a\xef\x48\x13\x95\x69\x91\x91\x3c\x68\x21\xf4\xb5\x41\x0d\xf4\xf1\x33\xfe\x63\xe2\x2c\x08\x09\x2a\x0a\x65\x97\x27\x22\xa2\x7a\xe4\x20\x11\xa8\x07\xc3\x27\xb4\x17\x23\x7c\x54\x01\x14\xee\xcb\x9f\x0e\x96\xcd\xa5\xdc\xf0\x24\x6f\x1d\x27\x17\xf4\x9b\x9c\xea\x9d\xc6\xa3\xda\x9b\x39\x6f\x02\x70\x52\x92\x26\xf5\xdc\xba\x64\x99\x91\x8a\x6c\x28\x9f\xe0\x55\xfe\xc8"}, {{0x6d,0x2d,0x0d,0x82,0x3f,0x29,0x47,0x46,0xb9,0xa5,0x51,0x2e,0x14,0xe7,0x3c,0x1d,0x85,0x5b,0x5e,0x4b,0xca,0x65,0xfe,0x81,0x77,0x29,0x81,0x0c,0xc5,0xef,0x84,0x0d,},{0x1b,0x64,0x80,0xa6,0xa9,0x0d,0xfb,0x47,0x29,0x84,0x85,0x5c,0xef,0x6f,0x1a,0xb3,0x1e,0xb7,0xb3,0xf1,0x3c,0x8a,0xc0,0x0f,0xa5,0x56,0xd2,0x0b,0x53,0xe5,0xae,0x17,},{0xb5,0x15,0xf4,0x9e,0xb3,0x2a,0xd4,0x78,0x69,0x2d,0xf8,0x8f,0x07,0xb7,0x80,0x2c,0x6e,0x0e,0x53,0x27,0xaa,0x08,0xa6,0x36,0x6e,0x4c,0xb1,0xd1,0xe2,0x6f,0x9e,0x65,0xfc,0x81,0xab,0xeb,0xe2,0x21,0x5d,0x64,0x91,0x00,0xf2,0x75,0x98,0x27,0x3a,0x41,0x2b,0x62,0x4e,0x84,0x2d,0x81,0x30,0x40,0x37,0x97,0xe5,0x7d,0xec,0x97,0x5a,0x0a,},"\x87\x72\x72\x1f\x72\xea\xf7\xf7\x30\x40\xc0\x68\xa7\xc3\x75\x3b\xff\xca\x7d\xc2\xd0\x93\x0c\x65\x25\xf4\x25\xe6\x00\x5c\x25\xcd\x4c\x0f\xf5\x09\x5c\x9c\x61\xa5\xd8\xa1\x96\x7b\x8c\x86\x01\x0c\x88\x4e\x50\x9e\x6b\x16\x70\xf7\x90\x46\xe2\x29\x79\xeb\xd3\x54\x73\x40\x90\xd3\xad\xa2\x14\x35\xc1\xf8\x25\x4f\x7b\x52\x22\xcd\x55\x64\xf0\x64\xe9\x77\x64\x03\x66\x44\x9f\x4e\x50\x08\xf8\x70\xf9\xc4\x84\x05\x65\xbf\x4f\xb5\xf5\x74\xc9\x77\x4b\xa2\x56\x8e\x71\xa9\xcc\xd8\x2f\xfc\x59\xb6\x94\xf2\x6e\x7d\xe4\xce\x2e\x3f\xd8\x80\xa0\xee\xf3\x87\x93\x13\x33\xed\xe0\x0d\xcb\x06\x5e\x6d\x0f\x79\x59\x1a\x2a\xa9\x56\xdf\x19\x48\xa2\x65\xcb\x95\x75\x0d\x8a\x23\x3b\x15\xc2\x88\xa0\x54\x87\xc5\x15\x66\x3f\x93\xe7\x40\xfb\x15\x70\xfb\xe4\xbd\x80\xc6\x8e\x8d\x92\x97\x34\x5a\x8a\x01\xcd\xbd\x88\xf4\xa3\x9b\xed\x9c\x5e\xf0\x9f\x14\x4b\xce\x5d\xe5\x68\xbf\x37\x33\xbc\x53\xb2\x03\x9a\x29\xcb\x3e\x19\x45\x01\xad\xc1\xc1\x0e\x86\x38\x3a\xac\x8b\x0f\x85\xc6\x7a\x66\x89\xbb\xe1\x47\x0a\x39\x24\x76\x31\x34\x39\xca\x88\xd9\x8c\x02\x1c\x0e\xae\xc2\x5f\xb2\xf9\xa1\x60\xce\x5c\x78\x61\x70\xbe\x02\x38\xfb\x87\x85\xdd\x33\xbf\xa9\x05\x9a\x6c\x37\x02\xd0\xde\x05"}, {{0xc0,0xcf,0x79,0x9a,0xf7,0x39,0x5b,0xf2,0x7b,0xaf,0xa3,0x6c,0xab,0x43,0x70,0x45,0xe3,0x9c,0x90,0x3b,0xf8,0x07,0x54,0x83,0x19,0xce,0x44,0xf2,0x87,0x49,0x4f,0xbb,},{0xaf,0xbf,0x55,0x0c,0xa2,0x90,0xc9,0x05,0xbd,0xd9,0x2f,0xc8,0x83,0x1e,0xbe,0x3d,0xfe,0xb6,0xda,0xae,0x4f,0x56,0x00,0x52,0x53,0xcc,0x50,0x95,0x1e,0x50,0xed,0xc2,},{0x5b,0xba,0x01,0xa4,0xc7,0xb2,0x55,0x42,0xd0,0x69,0x12,0xde,0x70,0xaa,0x1e,0x22,0x04,0x23,0xfd,0xf8,0x33,0x8a,0x9e,0x69,0x33,0x95,0xcb,0x6f,0x0d,0xc1,0xfb,0xfd,0x01,0x8e,0x3c,0x77,0xe5,0x0a,0xef,0x90,0xa9,0x08,0x0f,0x30,0xf1,0xf5,0x79,0x2b,0x24,0x31,0x07,0x8f,0xe6,0xe3,0xe0,0x04,0x64,0x24,0x5e,0x17,0xcd,0x8d,0xc1,0x07,},"\xdb\xe6\x57\x80\xe9\x68\xde\x9e\x40\xff\xb5\x7c\xf5\x9a\x60\xfd\x93\xb3\xf9\xa5\xe7\xd8\xed\x51\x80\xad\xbc\x57\x8c\xa1\xbc\x48\xbd\x9f\xb6\x0a\x13\x24\xc9\xc2\xc1\x14\x14\x79\xa0\xdc\xf0\xf1\xd0\x7e\x84\x93\x65\x26\xdf\x42\x33\x3c\x0d\x77\x3e\x3f\xed\x9e\x40\x38\xde\x5b\x95\xad\x90\x5c\x92\xcb\xe0\x40\x48\x7b\xf5\x5e\x10\xe1\xed\xb4\x29\xa0\xec\xc4\xe0\xe8\xd0\x0a\x98\x8a\x9c\xd5\x3e\x2e\xb3\x72\xf4\xfc\x4c\xd9\x53\x7b\x26\x9b\xa3\xa2\x3c\xef\xbc\x8d\xf6\x47\x6e\x75\x43\x4b\x81\xd9\x3e\x88\x91\xbf\x41\x7c\x82\xe3\x63\xf3\xe4\xab\xf8\x0a\x4f\x73\xac\xa8\x4a\xc7\xdf\x63\x37\xf5\x36\xd6\x3d\x93\x9d\x92\xcb\xa6\x4b\xe7\x42\x22\x11\x16\x06\x9e\xf2\x51\xab\xba\x0b\x00\xaf\x01\x71\x8b\xb5\x80\xdd\xbe\xb7\x99\x73\xef\x10\xa6\x8b\x4d\x0f\xa0\x23\xd6\xeb\xd3\x07\x9d\x6b\x32\xa1\xaa\x20\xa2\x1e\x92\x02\xf2\x75\x90\xc3\xf0\xc0\xcc\x25\x30\x73\xc3\xf8\x22\xaa\xc4\x59\xd3\x9f\x50\x75\x8b\x70\xc0\x07\x10\xa3\xc9\x84\x38\x41\x65\x08\x52\x2e\x51\x2a\xda\xa0\xaf\xd5\x03\xa7\xce\xb0\x4f\xb9\x4a\x4a\x93\x2c\xe8\x0c\xd5\xa7\xf1\x1b\xb8\x61\x26\x3f\x58\xe5\x74\x9d\x54\x2a\x11\x0d\xe7\xc7\x68\x9d\xfc\xb0\xc5\x1a\xfa\x9d\x54\xa5\x8f\xf8\x9f\x3f\x67"}, {{0xcd,0xaa,0x50,0xe8,0x52,0x7d,0xc7,0xa5,0x0f,0xb3,0x7e,0x28,0xfa,0x8b,0x95,0x68,0xc3,0x7e,0x85,0x67,0xe0,0xb4,0x99,0x99,0x7b,0x9a,0xed,0x67,0x61,0x80,0xc3,0xb0,},{0x7c,0x56,0xe1,0x64,0x51,0x02,0x68,0xc1,0x82,0xb4,0x23,0x74,0x79,0x04,0xf1,0xd3,0xa5,0x80,0x93,0x30,0xf6,0xe1,0xb2,0x92,0x66,0xec,0x46,0xe7,0x3b,0xe1,0x55,0x0f,},{0x13,0x7b,0xd1,0x0a,0x50,0xef,0x60,0x93,0x84,0xfe,0x66,0x87,0x68,0xfb,0x87,0x1d,0xe7,0x41,0xca,0x0f,0x53,0xff,0x84,0x77,0xd7,0xeb,0xfa,0x90,0xaa,0xfd,0x5e,0x26,0x81,0xfd,0xf1,0xb8,0x92,0x50,0x46,0x3c,0x15,0xdb,0x8e,0x17,0xa5,0x88,0x25,0xfe,0x94,0x27,0xde,0x08,0x9c,0x34,0xde,0x13,0xcd,0x07,0xbb,0xa1,0x8d,0x4a,0xa4,0x0d,},"\x94\xfc\xfb\xaa\xa3\x03\xde\xce\x7b\x90\x8f\x87\x4c\xc5\xf0\x95\x06\x1f\x17\x54\xbb\x35\x78\x0d\xb6\x66\xb6\x3a\xb8\x29\x08\x11\xbf\x1c\x52\x1a\x7f\x8f\x78\x5e\xa2\x70\xdf\xb3\x9d\x0d\x6e\xd9\x5a\xb7\x19\x55\xa1\x1f\xfa\xea\xa2\x68\xe0\x81\xff\x3e\x4f\x24\x25\xb4\x18\x80\xa9\x87\x15\x1e\x67\x8e\x89\x11\x13\x50\x94\x2d\x82\x0c\x3e\xec\x36\x21\x24\x26\x66\x3b\xe1\x75\xe5\x28\x6b\x4a\xd1\xcc\x80\x4e\x3e\x3a\x03\xb9\xfa\x3e\x82\x83\x8e\xbb\xc2\x61\x5a\x64\x5f\x2c\xa1\x46\x8a\xc4\xa1\xcd\xbe\x52\x37\x61\xe8\x3f\x43\x81\xb0\xc8\x55\x0a\xe5\xe8\xc8\xcd\x1f\xda\x57\x19\x14\x36\xe2\x7c\xb8\x83\xbc\x64\xbe\x86\xa9\xdc\x61\x10\xef\x34\x01\xd8\x8a\x7d\xeb\xd1\xb7\x01\xd9\xc2\x57\xa6\x82\x6c\xf0\x1e\x9e\x29\x22\xe3\xae\x57\x7f\x28\x34\x27\x5f\xb0\xec\xda\x80\xed\x8c\xf1\x80\x1e\x0b\xc5\xe0\x1e\x26\xa7\x7c\x48\xbd\xf4\x6a\x5c\x48\x94\xd2\x2a\xb5\x3e\x74\x18\x27\xe2\x4b\xed\x5f\x07\x50\xff\xad\x05\xe5\x3f\x1d\x5e\x61\xdf\xd3\x16\xb1\x91\xd9\x79\x7e\xf7\x13\x13\x1a\x8b\x43\x0a\xbe\x3f\xac\x5f\x3c\x4a\x2c\xa0\x21\x87\x8b\x15\xad\xc8\xc5\xf5\x42\x11\x42\x60\xe6\x87\xa9\xd1\x99\xd2\x30\xc4\xe0\xd3\xfc\x69\x69\x93\xb5\x9c\xcf\xa3\xff\xa9\xd8\xd2\xfb"}, {{0x0f,0xde,0xa9,0xbe,0xe6,0x28,0x8f,0x94,0x7e,0x0a,0xdb,0xdd,0xa4,0xdf,0xb2,0xba,0xa0,0x38,0x91,0xaf,0x25,0x02,0x4a,0x5e,0x13,0x8a,0xc7,0x79,0x84,0xd0,0x05,0x07,},{0x70,0xab,0xd8,0x64,0x30,0xd7,0xe8,0xd6,0x32,0x09,0xc8,0xb3,0x73,0xec,0x4e,0x4b,0x79,0xe9,0x89,0xe6,0x72,0x5f,0xac,0xef,0xba,0xde,0x3c,0x75,0x74,0xd2,0x3c,0xd0,},{0x80,0xc4,0x2d,0xd5,0xdf,0x03,0xb2,0x85,0xa8,0x6a,0xc9,0x5c,0xe6,0x66,0x9f,0x78,0x6a,0x97,0x8a,0x81,0x3a,0x9d,0x7b,0x8c,0x6a,0x23,0xde,0x76,0xfb,0xd0,0x9b,0xdb,0x66,0xc5,0xdd,0x1c,0xc9,0xf1,0xa1,0x76,0xcb,0xa3,0x88,0xd5,0x05,0x17,0x64,0xa3,0x2f,0xa2,0x7f,0x00,0x28,0xba,0x48,0x98,0x06,0x8b,0xd0,0x1a,0x3e,0xe1,0x72,0x08,},"\xcf\x72\xc1\xa1\x80\xa2\xbc\x37\xd8\x47\x8d\x9a\x7a\x39\xac\xf0\x3b\xf2\xa5\x07\x90\xf7\x90\x2f\x81\x12\x12\x22\xd3\x1d\x3e\xc9\x16\xf4\xf2\x4c\xef\x9d\x7c\x41\xdc\x02\x1b\x0e\x84\x87\xbb\x89\x2e\x47\x30\x5e\x54\x52\x03\x03\xe8\x9b\x30\xb2\x63\xda\xc4\xa9\xba\x37\x5d\x46\xc4\x0f\xcf\x40\x05\x35\xc9\x59\xd2\xb7\x46\xa7\xfc\x97\x0c\xf6\x5b\x47\x2e\x84\xb5\xf1\xd0\xeb\xad\xcf\xa1\xae\xd6\xfc\x47\xfa\xcc\xe1\x6a\x36\x6a\x3b\x1d\x6e\x51\x68\x13\xc1\x96\x09\x75\xf8\xf2\xb4\x30\x42\xfb\x4e\xea\xab\xe6\x3c\x6f\x65\xdb\x45\xdd\xb7\xdb\x88\x8a\x19\xa9\xd7\xba\x6c\xa4\x79\xfc\xd7\x0c\x5d\x1e\x97\x0f\x12\xc1\x4f\x4d\x24\xfb\x7e\x2f\x35\x7b\xd3\xa9\x4a\xa1\xb8\x68\xcc\xc0\x84\x7f\x2e\xef\x21\x85\x3e\x25\x3b\xaf\xbf\x07\xc4\xe6\x17\x6a\x1e\xf0\x77\x16\x78\x41\xeb\xbe\x56\x29\x33\x71\x57\xf3\x9f\x75\xc7\x1d\x21\xe7\xe9\x6c\x51\xa1\xb1\x6f\xa8\xdc\x60\xf0\xb1\x27\x9f\xcd\xa2\x64\x1f\xc8\x59\x1e\x3c\x49\x2f\x15\xbf\x83\xca\xf1\xd9\x5b\x2c\xd9\x13\x32\xf1\xb4\x20\x2f\xe7\x28\x62\xca\x2e\xa2\xef\x92\xc1\x1d\xb8\x31\xd8\x2f\x8f\xc3\xd4\x1f\xe2\x9a\x76\xc2\x11\xa7\x58\xe2\xf7\x1b\xd8\x9d\x2c\x66\x10\xf2\x01\x42\x9f\x34\x8d\x56\xe1\x0e\x3b\x7a\xf5\x3e\x27"}, {{0x03,0xd5,0xe4,0x66,0xf8,0x29,0x8a,0xb5,0x43,0x8a,0x30,0x97,0x6d,0x13,0x22,0xa7,0x21,0x5a,0x64,0x2d,0xd5,0xfb,0x4c,0x3f,0x85,0x19,0x40,0x9a,0x75,0x22,0xf0,0x92,},{0x4b,0x3e,0xd4,0xdb,0x08,0x0e,0x2a,0x45,0x2e,0x16,0x91,0x2c,0x14,0x50,0x44,0x24,0x92,0x0a,0x60,0x97,0x56,0x04,0xe4,0xf3,0x79,0x25,0x8d,0x1c,0x8b,0x19,0x3d,0x6f,},{0x6d,0x7e,0x46,0x58,0xf2,0x6f,0x33,0x7c,0x98,0xe0,0x3f,0x13,0x54,0x2e,0x2f,0x39,0x44,0x0f,0xf7,0xbf,0x8d,0x88,0xf3,0xf6,0xdf,0xa4,0xd6,0x49,0x48,0xcd,0x96,0xb7,0x90,0x51,0x49,0x2f,0xc2,0x8f,0x65,0xf2,0xcc,0x0d,0x23,0xa0,0xc4,0xd5,0xe2,0x30,0x7b,0xb1,0xc4,0x7e,0x11,0xe5,0x3b,0x37,0x1f,0x09,0x1b,0x69,0xf8,0x0d,0xbd,0x05,},"\x1b\x47\xb7\x00\x13\xcb\x53\xe1\xf8\xf4\x97\x1e\x0f\x39\x56\x3c\xe8\x7e\xdb\xc2\xce\xdd\x99\xe5\xa3\x55\x85\xdf\x8b\x00\xa8\x52\xf7\xb9\xc9\x7c\x7e\x4a\x54\x65\xfc\x56\x05\xae\x8c\x5c\x36\x57\x0a\x99\x20\x1a\x7a\xd6\x03\x12\x87\xef\x0c\x7b\x2b\xa6\xe5\x7b\x05\x6d\x0f\xc8\xd6\xca\x43\xbf\x6c\xbd\xab\x09\x89\x34\xb4\x03\x19\x7b\x52\x5d\x22\xd4\x5e\x6b\x29\xc7\x8f\x8d\x61\x83\xe4\x1f\xfe\x19\x7d\xae\x25\xba\x22\xb0\x66\x69\xae\x05\xba\xdd\x7e\x1d\xa6\x93\x2a\x7d\x05\x4c\xba\xb3\xf5\x4e\x51\x46\x22\x3a\xd8\x67\x12\x31\xbc\x16\xfe\x62\x67\x9b\xd2\x81\x7a\x6b\x80\xe6\x53\x99\x8c\x49\x49\xf8\x1f\xf5\x3b\x61\x73\x16\x3e\x11\xda\x3e\x6d\x3c\x76\xd8\x4c\x71\x32\x25\xb4\x17\x3d\x6b\xf0\x6a\x85\xb6\x98\x8a\x48\xbe\x43\x59\xcb\x51\x55\x03\xca\x56\x3f\x43\x53\xf8\xe7\xd4\x5e\x4d\x94\x46\x2c\x89\xa0\x4a\x00\xf1\xb3\xb0\xca\x64\x22\xd5\xdb\x02\x9c\x50\x7d\x46\x48\x34\xa2\x0c\x78\xa7\x13\x66\x1d\x84\xed\xff\xc4\x96\xd6\x92\x82\x61\x98\x94\x43\x7b\x44\x87\x95\x4c\xbe\xa2\xaa\x72\x61\xe6\xa6\x2b\x68\x51\x15\x4a\x5d\x25\xfb\x6b\x4f\x09\xc5\x94\x73\xd3\x85\xce\x03\xe9\x1b\xa8\x65\xea\xb6\x6c\x58\xc0\xab\xb0\xb7\xa7\x8e\x4b\xe9\x27\xe5\x54\x60\xcc\xd7\x0d\x82"}, {{0x76,0xcc,0x18,0xa1,0xda,0xff,0xfa,0x10,0x05,0x86,0xc0,0x6a,0x7b,0x40,0xf7,0x9c,0x35,0xfe,0x55,0x8c,0x33,0x9c,0x29,0x99,0xa5,0xf4,0x38,0x75,0xcf,0xad,0xe0,0x3e,},{0x4b,0x9d,0xa8,0xd2,0xf1,0x37,0xdc,0x6c,0x85,0x7a,0x99,0xa5,0x99,0x8d,0xd8,0x9d,0xd5,0xf0,0x59,0x71,0xa2,0x1e,0x8c,0x77,0x66,0x70,0xeb,0x47,0xbc,0x12,0x70,0xa5,},{0xdb,0x74,0x75,0x1c,0x66,0xe6,0xb1,0x86,0x60,0x44,0xdd,0x9a,0xe9,0x9f,0x19,0xe6,0x33,0x4f,0x17,0x9e,0x79,0xd8,0xb8,0xe0,0xc8,0xcd,0x71,0xd2,0x2c,0xef,0xb9,0xea,0xb7,0xe3,0xe7,0xa9,0xc2,0xda,0x22,0x5f,0x2a,0x9d,0x93,0xa3,0x13,0xd1,0xcb,0xf1,0xb7,0xfe,0x25,0x97,0xb8,0xd7,0x02,0xbf,0x30,0x17,0xa6,0xa6,0xbc,0x7b,0x7b,0x06,},"\x45\x22\xb1\xd8\x23\x73\xf7\xa3\x18\x22\x1e\x7e\x57\x61\x75\x03\xdd\xf4\x4f\xd5\x39\x97\x52\x2a\x1d\x96\x3c\x85\xb7\x08\xd0\xb2\x45\xde\x37\x2a\xd5\x2e\xc7\xf5\x4f\x62\x13\xd2\x71\xf7\xc9\x1d\x5a\x1d\x36\xd1\x34\xdb\x38\x9d\xf0\xb0\x81\xa0\x6b\xc0\xc7\xa4\x87\x5f\x72\x40\x92\x79\x31\x72\xc9\x11\x56\x41\xc6\xd0\x54\xf1\xd9\x92\xe0\xfa\xe4\xdf\x58\x69\x5f\x0e\xa3\x44\x9d\x7a\x4b\x3a\x88\x57\xe1\x98\x03\xfe\x49\xb6\xd5\x2c\x9f\xf3\x74\x6a\x57\x4a\x27\x56\x95\x65\x79\xf9\xfb\x80\x9a\x0e\xde\xc9\x2c\x55\xe9\x5f\xfe\xfa\x3d\x05\xf1\x65\x82\x2f\x46\x4a\x21\x99\x9f\x29\x69\x1f\x67\x44\xac\x5a\x3e\xe4\x90\x17\x88\x06\x45\xe8\x37\xed\xeb\xfd\x2e\x0f\x24\x99\x7f\x04\x11\x45\xa7\x2e\x23\x76\xad\xa2\x83\x18\x6c\xa2\xb8\x36\x36\x29\x77\x19\x5b\xae\xe3\x0a\x3a\xcc\x81\xb2\x43\xf3\xee\x37\x6a\x2c\x47\x64\xc7\x83\x66\x7a\x4b\x11\x77\xe7\x95\x1d\x3e\x3c\x7b\xe4\xf1\xbd\x7a\xe8\xc6\x0f\xd5\xfb\x0f\xd9\x1f\x0c\x1c\x14\xd0\xd2\x32\x7e\x8f\x20\xd9\x2c\x0d\xfc\xc5\x38\x70\xe9\xd9\x9f\xdb\xf9\xdd\x9a\x17\xe8\x82\x50\x9a\xe7\xba\xa8\x65\x3e\x39\xed\xc8\xee\x56\x90\x00\xd6\x24\xcb\x93\xa0\x75\x4a\x79\x8d\x1f\x81\x1f\x6a\x0e\xf5\x50\x1a\x17\xbc\xf2\x5f\xd0\xf9\x16\x26"}, {{0x71,0xad,0x98,0x0d,0x58,0xad,0x8e,0x7d,0x33,0x30,0x66,0x89,0x35,0x89,0x36,0xa3,0x72,0xd5,0x19,0x0b,0x24,0xec,0x7f,0x9b,0xde,0x74,0x9c,0xb8,0x11,0x50,0xef,0xda,},{0xfd,0x35,0xa7,0x5f,0xe5,0xab,0xc2,0x01,0x04,0x69,0x1a,0x24,0xa4,0x65,0x94,0x40,0xb5,0x5a,0xea,0xea,0x90,0x2a,0xc3,0xbe,0x27,0x4a,0xf2,0x7a,0xa8,0x31,0x28,0x69,},{0x81,0x67,0x0b,0x10,0x29,0xe4,0x81,0xe9,0xff,0x3c,0x17,0x1f,0x05,0xc1,0x68,0x61,0xc8,0x46,0xee,0x79,0xcd,0xf2,0xe2,0x1e,0x3b,0xf9,0x52,0xbc,0xfa,0xc9,0x75,0x65,0xf2,0xb1,0xdc,0xed,0xf6,0x9d,0x2e,0x7e,0xb3,0x5c,0xaf,0x56,0x62,0xe8,0xbc,0x67,0x1f,0xbb,0x96,0x75,0x6a,0x63,0xa5,0x96,0x26,0x4d,0x1b,0x7f,0x4a,0xf9,0x7e,0x06,},"\xe8\x7a\xe0\x73\xff\x5d\xcc\x54\x85\xa1\x99\x40\xe4\xe3\xff\x26\x3a\x06\x18\xa9\x02\x5a\xd4\x03\x2d\xfb\x36\xd1\x71\xce\x88\x1f\x71\xc1\x8a\x49\x21\x0e\xb4\x58\x19\x80\x61\x42\xe2\xf0\x0d\xb3\x04\x18\x35\xbf\x2c\x3b\xcc\xf1\xdb\xa0\x2b\x8b\x5a\x5b\xda\xf8\xfe\xa3\x16\xc0\x62\x3d\xd4\x8a\x56\x4e\xc1\x66\xf0\x37\xd5\x87\xc8\xc0\x16\x84\xe5\xe5\xc0\xba\x9d\xba\x4d\x23\xb4\x9a\x03\x09\x24\x4e\x28\x2a\x51\x40\x86\x22\xed\xb0\x57\x04\x74\x7e\x0c\xde\xec\x97\x68\x93\x77\x70\x71\x09\x89\x72\xc1\x13\xa8\xab\x63\x9c\x31\xf1\x61\x32\x33\xee\x46\x0e\xea\x8a\x8c\x10\xe1\xe6\xe1\x52\x21\x45\x29\x87\x8c\xf1\xad\xae\xaf\x78\xcf\x19\xba\xc7\x13\x61\x81\x5b\xf5\x79\x55\x49\x8f\xab\x4f\x0f\x2b\x75\x86\xc8\x6f\x9f\x4c\x2d\xdf\x89\x72\xf9\xb9\xe0\xeb\x63\x6d\x84\xbc\xc1\x43\x85\xb2\xd0\x38\xbe\x55\xa9\x63\x70\x2e\xfe\x22\x5a\x50\xbd\xd0\xc4\xda\x92\xa2\xa6\xa0\x91\x00\xea\x04\xa2\x11\xd3\x96\x45\x8d\xce\xb4\x48\x71\x16\x83\x7d\x13\x9e\xb0\xf1\x22\x53\x8e\xd3\x98\x6a\xd0\xaf\x4d\xa2\xdf\xfc\x89\xf3\x26\x9c\xa8\x85\x38\x08\x6e\x69\x1e\x5b\xea\xe9\x58\x1e\x7c\x63\xd8\xe6\x12\xda\x2c\x47\xf7\x4d\xde\x1d\x94\x95\x1e\xad\xb0\xdf\x60\xc3\x89\x7d\x2a\x30\x95\xc5\x06\x09\x3b"}, {{0x61,0x59,0x4e,0x24,0xe7,0x5f,0x99,0x6b,0x4f,0xb6,0xb3,0xe5,0x63,0xf6,0xa4,0xf9,0x91,0x5c,0xfa,0x65,0xdd,0xb1,0x99,0xb0,0x1f,0xed,0x7f,0x8e,0xd7,0x82,0x4e,0xcb,},{0x86,0x27,0xd2,0x14,0x15,0x79,0xcd,0x25,0x21,0xaa,0x07,0x68,0x00,0xac,0x35,0x4b,0x9e,0x3a,0x47,0xd7,0x1c,0xed,0xc8,0x54,0x74,0x34,0x26,0x82,0x25,0xe3,0x30,0x05,},{0x63,0x02,0xb3,0xff,0x27,0x10,0xbe,0x30,0x6c,0x92,0xb9,0xaa,0xe3,0x0d,0x23,0xc3,0xd4,0xbe,0xff,0x39,0x4e,0x63,0x20,0x1e,0x6a,0xd1,0x17,0x13,0x34,0x5c,0x4f,0xcb,0x5c,0xc8,0xd3,0xdd,0x10,0xad,0xfb,0x82,0xbb,0x11,0xa1,0x89,0xce,0x7e,0xc3,0xe4,0x22,0x27,0x27,0x62,0x4f,0xc1,0x78,0x81,0xc1,0x47,0x88,0xd2,0x71,0x0e,0x16,0x08,},"\xbc\x01\xb0\x8c\x7c\xaa\x23\x61\x00\xa0\x12\xa7\x26\x47\x7d\x0e\xc3\x89\xdb\xfa\xda\xc7\x3d\x51\x06\x42\x4c\x5d\x1f\x3d\x1c\xef\x16\x95\xcf\xd9\x3a\x70\x62\xec\x8b\xf1\x06\x70\x47\x85\x49\x20\x16\x2f\x65\x13\x57\xbe\xdf\x1c\xd5\xa9\x2e\xc2\x9b\xdb\x5d\xff\x71\x6e\x8f\x60\x25\x51\x5a\x95\x49\xba\x36\xcd\xc3\x5c\xed\x7c\x5c\x0c\x36\x8e\x6c\xd9\x2f\x2f\x10\xae\x14\x6a\x20\x72\x8c\x37\x4b\xba\x50\x96\x41\xce\x88\xcb\x42\xff\xf0\xce\xdf\xd9\xfd\x67\xf3\x10\xf9\xd0\x1a\x3f\x36\x90\xeb\x21\xdb\x17\xbc\xe6\x7a\xe3\x5c\x4c\xd2\x4c\x20\x9f\x09\xf0\x44\x75\x9d\x8d\x5a\x7d\x24\x8e\x2b\xd9\x66\x52\x4b\xa8\xc0\xc2\x89\x74\x72\x6b\x43\xbd\x05\xde\x84\x34\x33\xcc\x40\x05\x98\x92\x29\x74\x62\x3d\x9a\xcb\xfd\xc7\x61\xc4\xc0\x43\x75\xa9\x52\xce\x54\xca\xff\xaa\x96\xac\xff\x6d\x9d\xc2\x78\x74\x2a\xf4\x76\xe1\x86\x5c\xb8\xc2\x0d\x13\xd1\xc1\x90\x08\x63\xbc\xa2\x31\xe4\x4c\x6b\x0d\x47\xcb\x41\xd5\x10\xf7\x95\x8f\x48\xf3\x04\xd0\x3d\xa0\x33\x48\x4a\x3e\x1f\x27\x3f\xaf\x69\x83\x37\x5b\x7d\x3b\xe0\x3d\x8a\x0a\x00\x2d\xef\x63\x65\xbe\xb2\xfa\x8c\xcf\x1a\x94\x98\x7a\xdc\xd3\x3d\x0d\xa1\x17\x7f\xc5\x15\x9b\x6e\x56\xd0\x04\x30\x1e\x92\x1d\xbc\x12\xec\x0a\x73\xf4\x13\xcf\x2c\x48"}, {{0x54,0xe6,0xbb,0xfb,0xf8,0xc0,0x6f,0xf2,0xc0,0x66,0x31,0x8c,0x2e,0xbf,0x03,0xd5,0x06,0x54,0x7b,0xf4,0x3c,0x2d,0x7a,0x5d,0x4d,0xf3,0x05,0xa3,0x03,0x2b,0x71,0x38,},{0x3b,0x71,0xaa,0x1d,0xef,0x66,0x6d,0x91,0x88,0xf4,0x03,0xf8,0x2e,0xd3,0x04,0x54,0xab,0xa5,0xbc,0x9f,0x47,0x0f,0x6e,0xb9,0x88,0xda,0x18,0x7c,0x92,0x52,0x32,0x84,},{0x3d,0xf4,0xd0,0x90,0x79,0xf8,0x30,0xe3,0xf9,0x82,0x28,0x36,0x81,0xba,0x37,0xb5,0x0f,0x3c,0x73,0xde,0x2c,0x5d,0x22,0xa2,0x91,0x35,0x8e,0xbb,0x1f,0xb8,0x54,0xe5,0x10,0xf6,0x3f,0x9a,0x48,0xe9,0xff,0xf7,0xfd,0x83,0x11,0x30,0x2e,0xa3,0xe9,0x69,0x39,0x4e,0x6d,0x49,0xc9,0xe3,0x18,0x20,0x54,0x94,0x2f,0x6a,0x74,0x4c,0xee,0x03,},"\x03\x18\xd7\xcb\x48\x05\xaf\x98\x21\xdd\x3f\x91\x4b\x0e\x07\x6f\xea\x04\xa7\xd2\xdb\x3a\x59\xa0\x0a\xff\xea\xd3\x32\x5a\x2b\xe4\x0c\x1f\x87\xf5\x32\x76\xa8\x55\x26\x04\xf2\x28\xb9\x76\xe2\x88\xb9\xbe\x90\x6a\x7b\xd2\x5b\x2f\xfa\xb8\xa8\xaf\x5d\x0f\x6e\x08\x78\x6f\xd0\x34\xe2\xfe\x1e\xb7\xee\x03\x39\x79\x86\x0d\xd1\xe5\x32\x72\x87\xe9\xe6\x15\xf5\xdc\x5a\x96\x0f\x17\x02\x6b\x56\x84\x2f\xc8\xd4\x4c\xad\x00\x2e\xdc\x85\x01\xcf\xb9\x56\x00\x15\x02\xe4\xdd\xc8\x1a\x77\x00\xd9\xc0\xbe\x88\xeb\x4a\xaa\x64\xa6\xcb\xc3\x9d\xe8\x2f\x13\xc1\x10\x86\xde\x1a\x42\x70\xd3\xaf\x97\x28\x4b\xac\x1c\xae\xf1\xd3\xed\xaa\x10\x71\x66\x6b\xd8\x3b\x2e\xde\x39\x62\xd9\x8b\x9d\x93\x49\x7d\xdf\xd8\xe9\x7d\xab\x30\x89\x95\x0c\xf3\x0e\xd1\x1d\xb7\x7a\xd1\x43\x7a\x0a\xf5\x88\x9d\x8e\xfc\x44\xe6\x12\x42\x0e\x39\x07\x26\x7d\xf3\xac\xff\x4b\xd3\xfb\x6e\x8c\xa5\xba\xdf\x8e\x72\xf9\xde\x39\x52\x86\x53\x05\x85\x24\x45\x6a\x81\xda\x5f\x84\x98\x2a\xfa\xc3\x4b\xef\x5f\x71\xe9\x1f\x8f\x90\x93\x8a\x6f\x5f\x1f\x28\x77\x16\xde\x56\xa0\x94\x6d\x26\x1e\x87\xbc\x77\x5c\xe1\x89\xe4\x1a\x77\xba\xed\xe7\x32\x0a\x3c\x60\x8f\xc9\x71\xe5\x5d\x0a\x77\x3c\x4d\x84\x8d\x42\x86\x37\xf1\x1b\x4e\x44\x60\x39\x0c"}, {{0x68,0x62,0x06,0x1b,0xe0,0xde,0x9d,0xfd,0x99,0x81,0x18,0x20,0x4b,0x2b,0x98,0xdb,0x3c,0xe7,0xd7,0xe8,0x19,0xdb,0xc1,0x07,0x94,0xaf,0x0a,0xb2,0xb0,0x6e,0x84,0x34,},{0x9c,0x5f,0x7c,0x22,0x65,0xdd,0xe1,0xb2,0x5e,0x4f,0x27,0xec,0x71,0x58,0x0d,0x52,0xdc,0x89,0xf2,0xc3,0xa7,0x12,0xbc,0x1a,0xd5,0xd6,0xd6,0x9e,0x71,0x1e,0x08,0xd4,},{0x96,0x5e,0xdb,0x34,0xe8,0xab,0x8b,0xc3,0x20,0x4a,0x32,0x01,0xd2,0x21,0x86,0x37,0x2d,0xe4,0x24,0x26,0x00,0x29,0x7c,0xfd,0xb5,0x7a,0xa1,0xdf,0x07,0x4e,0xc5,0x0d,0xdf,0x10,0x10,0x5e,0x9d,0x4c,0x89,0xa2,0x66,0xc3,0x4d,0xb7,0x77,0x2a,0xa9,0x4c,0xba,0x94,0x64,0x29,0xe6,0x8b,0xa6,0x2b,0xf9,0xa0,0xac,0x90,0xf5,0xf0,0x5b,0x02,},"\x17\x40\xdd\xe8\x43\x4a\x0d\x68\x99\x25\x67\x9b\x0c\x18\x03\x00\xcd\xbd\x0c\xf6\xa8\x9a\xd8\xfd\xe3\x46\x53\x31\x6c\xee\x4c\x57\x1a\x41\x05\xc9\xe9\xe0\x28\x42\x38\xfe\xf2\xc3\x8a\x09\x15\x7c\x5d\xb9\x43\x40\x57\x1b\x39\x0a\xdf\xb6\x9f\xf4\xc0\xdc\x50\x53\x25\x3a\x67\x9d\x42\xcc\x1f\x1b\xf1\xff\x42\x92\x29\xea\x0a\x50\x44\xc6\xf7\x95\x64\xe0\xdd\x28\x7f\x53\xf0\x15\xb8\x31\x87\xd9\xad\x27\xd9\x10\x39\xaf\x06\x2c\x43\x7b\x15\x75\xa0\xea\xb6\xae\xb8\xaa\x0d\x27\xb2\x76\x65\xd6\xde\xa9\x04\x1f\xf9\x96\x3a\x31\x18\xb3\x29\x8a\x85\x44\xe3\xfd\x69\xac\x68\x77\xe3\xe4\x05\x2f\xe4\x42\x2b\xf0\x35\x60\xb2\xc5\x7e\xc5\x31\xee\x8b\x5f\xf5\x3c\x28\xdb\xde\x35\xbb\x45\xc3\x50\x77\x63\x6e\x6f\x84\x1b\x59\xd7\xeb\x77\xbc\x77\x91\xb6\x09\x38\x58\xa3\xa8\x0a\x3a\xa6\xd7\x78\xdb\xf5\x3d\xb9\xd0\x61\x19\xc5\x0b\x71\xc7\x91\xc0\x49\x5c\x57\x6d\x1b\x59\xd3\x96\x87\x3e\xd8\x71\x48\x53\x52\xc8\x29\x9a\x35\x9d\xa5\xee\x9d\x7f\x36\xed\x14\x55\xf8\x98\x51\xa3\x08\x51\xbe\xa7\x19\x68\x5a\xec\xd0\x8f\x25\x56\x26\x09\xdd\x10\x66\x30\x73\x52\x77\xe1\xd6\x51\x9b\xb1\x68\x7d\xe8\xb8\xc6\x8b\x96\x71\x45\x2e\xdb\xb3\x49\x1d\xa2\x64\xcd\xfa\x00\x17\xc5\x12\xd2\x76\x97\x59\xcb\x92\x5f\xb6\x64"}, {{0xb2,0x25,0x0b,0xbc,0xb2,0x68,0xd2,0x47,0x7c,0x83,0x12,0xb1,0x90,0x0f,0xd9,0x99,0x82,0xba,0xa2,0x9a,0x68,0x97,0x4f,0xbf,0x87,0x78,0xa1,0x22,0x8d,0xc9,0x75,0x50,},{0x44,0xaa,0x8d,0xf1,0x18,0x16,0x74,0xb0,0x5a,0xde,0x98,0x0f,0x7e,0xdd,0xba,0xf3,0xbd,0x74,0x22,0xa9,0x20,0x28,0x7c,0xb2,0xd2,0xdb,0x59,0xa0,0x63,0xee,0xbf,0x74,},{0xf2,0xb8,0xd9,0x2e,0xd5,0x1e,0xbd,0x10,0x00,0xbf,0x9d,0xd3,0x41,0x1a,0x9f,0xa9,0xe7,0xae,0xe5,0x4c,0x4c,0x86,0xe2,0x4a,0xd0,0xf9,0xad,0x5c,0x55,0x64,0x3a,0x12,0xd6,0x80,0x01,0x9c,0xa0,0x3f,0x21,0x6b,0xd4,0xbd,0x32,0xc9,0xce,0x1c,0xd8,0xa5,0x28,0xc3,0xff,0xaa,0x5d,0x5b,0x1d,0xc9,0x1a,0x4b,0xe5,0x6f,0x0e,0x2c,0x5e,0x06,},"\x7e\xf0\xae\x13\x36\xa6\xfa\xb3\x7f\x99\xda\x5f\xa7\xd0\xde\xc7\x40\x9c\x07\x26\x23\xea\xd8\x4f\x24\x1d\x53\xd0\x59\x6b\x46\x17\x05\xfb\x1b\x3c\x53\x7d\x36\xb8\x9e\x89\x60\xfe\xbb\x4c\xdc\x0d\x42\x7c\xe2\xfc\x1b\xe5\x8d\xbb\xce\x15\x1e\x35\xac\xd8\xb6\xac\xe4\x0a\x19\x82\x29\x14\xa4\xbd\x8c\x4a\xf6\x32\xf1\x36\x41\x8a\xc4\x9b\x18\x4d\x55\x19\x3e\xbc\xc3\x2d\x0d\x79\x87\x09\xb1\xa8\xfe\x29\x4f\xba\x8a\x1f\xe7\x2d\x97\x6b\x44\x00\xd4\xa3\x93\x24\x23\x11\xb0\xf8\xcc\x99\x4e\x89\x47\x5b\x00\x38\xae\x5d\x89\x14\x93\x8e\x8f\x6e\x87\xc6\xf5\x0b\x9d\x65\x6c\x45\xd7\xb1\x42\x31\xef\xed\x97\xf3\xc9\x06\x68\x91\x36\x70\xbf\x5b\xe2\xef\xd5\xc2\x70\xc7\xcb\xaf\x01\xe8\x57\x2e\x98\x00\x97\x8d\xfe\x2e\x10\xa2\xfc\x04\x40\xb8\x55\x62\x9b\xf9\xcd\x40\x9e\xa9\x41\xcb\x69\x22\x6c\xac\x77\x1b\x15\xea\x77\xc0\x32\x68\x48\x80\x6f\xf8\xd2\xe2\x01\xe6\xe2\x6c\xd5\xf4\x54\x30\xda\xdc\xff\x8f\x59\xc3\x21\xc1\xc9\xc6\xa2\x9b\x94\x88\x29\x35\x44\x7d\x3e\x6c\x2e\x88\x04\xb1\x16\x15\x76\xbd\xf0\x32\x0f\xe5\x3c\x30\x7d\x9c\xde\x42\x60\x77\xa7\x67\x7c\xde\x3c\x1b\xc8\x3e\x18\xe6\x0a\x0c\x4e\xe6\xdc\xcd\x87\x7c\x21\x3a\x8e\x4c\xca\x64\x0e\xe0\x49\x29\x80\x45\x70\xae\x1f\x96\x15\x7c\x04\x35\x7a"}, {{0xb8,0x09,0x36,0x1f,0x55,0xcf,0xe8,0x13,0x7f,0xbd,0xa8,0x80,0xfc,0x62,0xcb,0xe4,0x4c,0x21,0x6e,0x14,0x18,0x93,0x34,0x63,0x02,0xb3,0x36,0x04,0x5d,0xe2,0x18,0x78,},{0xfd,0x23,0xe4,0x2f,0xf0,0x66,0x44,0xea,0xd3,0x47,0xab,0xcc,0x1b,0x3e,0x03,0xb0,0xe8,0x85,0x93,0xb6,0x12,0x54,0x98,0x1d,0xd8,0xae,0x59,0x45,0x4e,0x61,0xb3,0xe0,},{0xb5,0xb5,0x95,0x0d,0x37,0x72,0xd2,0xee,0xf8,0x8e,0x1b,0x0f,0x5d,0xf5,0xff,0xae,0x2f,0x21,0x03,0x88,0x5e,0x71,0x44,0x6d,0x34,0x6f,0xbb,0x5d,0xae,0xf9,0x49,0x67,0xa6,0xb7,0xb6,0xe4,0xbe,0x88,0x51,0x10,0x06,0x58,0x76,0xc6,0x65,0xb7,0x81,0x2d,0xe4,0x6a,0xd3,0x1e,0xc3,0xbf,0xcb,0xea,0xee,0x13,0xed,0x0c,0x1e,0x0b,0x30,0x0e,},"\x17\xac\xe1\x97\xd0\x83\xaa\xf1\x72\x6f\x53\xe5\xef\x81\xb5\xa8\xc0\x92\x22\xf2\x60\xee\x5f\x1f\x54\x04\xab\x78\xd9\x00\xd4\x89\x68\x84\x49\xb8\x43\xba\xd3\xc4\x98\xaa\xc6\xd8\x0b\x46\x39\xb7\x6e\x6e\x81\xc5\x52\x76\xa6\xf9\xc7\xce\xcd\x70\xb7\x1a\xaa\xf2\x01\x8e\xf7\x6c\x0e\x30\x15\x4a\xae\x86\xa5\xc8\x6d\x4e\x8d\x0e\x4e\xc6\x8c\xc4\x27\x06\x0b\xd5\x65\x14\xf7\x23\x80\x86\xbb\xef\x5b\xfc\xa1\xf5\x67\x1b\x18\x04\x18\x38\xfd\x01\x35\x72\x44\x3d\xba\x48\xfb\xdd\x95\xca\x74\x0b\x0d\xaa\x43\x27\x16\x4a\x1e\x34\x67\x72\x49\x70\x8f\x77\xbd\x79\x3e\x7c\xaa\x66\x38\xb5\xdc\x9f\xbe\x6f\x0d\xfd\x41\x20\x20\x90\x97\x20\x9c\x93\xce\xdf\xaf\x21\xb6\xbf\x59\xca\x6e\x99\xe6\x20\x96\x39\x44\x4f\x0e\x82\x7b\xbc\xc0\xa6\x1c\x3a\x23\x7c\xa2\x2a\x28\x32\x13\x22\x3a\xb6\x58\xe7\x12\xc7\x55\x62\x38\xd3\xa5\xfe\x31\x72\x2d\x65\xf5\x70\x6e\xf6\xd6\x4d\x73\x23\x2d\x30\x43\x22\x0f\x14\xe5\xcf\xd3\xc2\xc8\x3a\x83\xd6\x8e\x20\x27\x4b\x6f\x96\xb2\x9d\xe0\x40\xce\xc8\x47\x50\x30\xb6\xa8\xa8\x7d\x29\x80\x8d\xd3\x81\x79\x5c\x3d\x22\xac\xf5\xdc\x19\x3b\x72\x0d\x95\xa7\x52\xd9\xf1\x23\xc2\x09\xff\xba\x00\x4e\x48\xdd\x06\xdd\x8c\x9e\x17\x2b\xc9\xe0\x87\xd8\x0b\xc5\x21\x6c\x0b\x0b\x6e\x77\x03\x12\x41"}, {{0xee,0xef,0x80,0x74,0xc2,0xeb,0x9a,0x1c,0xee,0x2f,0x2d,0x3b,0xb0,0x53,0x25,0x54,0x6a,0x9f,0xb7,0xcb,0xe4,0x4b,0x59,0x94,0x61,0xfc,0x58,0x85,0xf5,0xfd,0x9c,0xac,},{0x9b,0x89,0x29,0x41,0xa0,0x57,0x3b,0x7a,0x16,0x73,0xef,0x48,0x0f,0x08,0x11,0x68,0xd9,0xb7,0x49,0x6a,0x81,0xf9,0x17,0x7d,0xc4,0x27,0xca,0x1f,0x84,0xcb,0xbf,0x7d,},{0x6f,0x71,0x01,0x98,0x4f,0xd6,0x89,0x2e,0x21,0x44,0xb7,0xd4,0x56,0x19,0x83,0x0c,0xae,0xb6,0x71,0x3b,0xfa,0xb4,0xee,0xbb,0xe2,0x17,0xc5,0xbe,0xcd,0x24,0x9b,0xd9,0xd7,0x52,0xeb,0x76,0xe9,0xfa,0x99,0x5e,0x7c,0x71,0xff,0x7d,0xf8,0x6b,0xb2,0x60,0xcd,0xda,0x17,0x3f,0xf5,0xde,0xec,0x6a,0xf2,0x04,0xb7,0xdd,0xe0,0x11,0xde,0x09,},"\x9a\xe3\x9f\xea\xde\x90\x5a\xff\xcb\xed\xd2\xe7\x2a\x6f\x24\x29\xb3\xd1\x10\x8e\x5b\xc1\xa9\xdb\xaf\x49\x0a\x62\x99\xbc\xcd\x94\xac\xc4\x13\xad\xac\xc9\x18\xb1\x4a\xfa\x85\xc7\x8b\xc1\x68\xcc\x00\x74\x0c\x3d\xa0\xe0\x81\x83\x91\x5f\x79\xb7\xfe\x38\x68\xce\x2a\x7e\x88\x6b\x32\xad\x45\x00\x98\x05\xbf\xb8\x1b\x8c\x07\xb3\xb1\x02\x24\x20\xc0\xf0\x09\xb8\x89\xd7\xfc\x22\xfd\x19\x97\xae\x34\x19\x84\x38\xca\x94\x77\x85\x75\x12\x2f\xca\xaf\x96\xe6\x50\x2c\x33\xa7\x5a\x12\x9a\x2d\x0d\xbb\x07\x3d\x93\x82\x0d\x9c\x96\x68\x3d\xb3\x18\x99\x0b\xe3\xfe\xf4\xca\xfc\x89\x0a\xfb\xd9\xb1\x50\x4c\x74\x39\xa0\x8a\x06\x5e\x78\x14\xee\x4f\x9b\x6f\x57\xee\x16\xba\xed\x3f\x0e\x3a\xa3\x5d\xd2\x3d\x35\x28\xa4\x58\x91\x9a\xd7\x70\x48\xb4\xe2\xe6\x17\x23\x46\xbe\x24\x9a\x50\xaf\x02\xbc\x6c\x85\x33\x04\xc2\x08\xae\x0b\xa0\x27\x71\x26\x2a\x0d\x8a\x46\x5f\x71\xfa\x06\x35\xe5\x3e\xb2\xef\x0a\x84\x7d\x56\xa0\xbc\xd7\xdd\x3f\xe0\x77\xc9\x2b\xcd\xca\x30\x69\xa4\xa6\x82\xa2\x85\x99\x28\x31\x5c\xe3\xeb\x44\x5c\x60\x72\xa7\x14\x92\xee\x82\xe1\x72\xa2\x0b\xe0\xb6\x48\xb7\x56\xe6\xc7\x75\x37\x6f\x0c\x7c\x3d\xf8\xe6\x42\x88\x08\x9c\x2f\x81\xce\x95\x93\xc6\xe0\x8b\xb1\xcc\x1b\x27\xfc\xbd\x39\x2f\xc7\x95\x2c\x55"}, {{0x61,0xfa,0xeb,0x15,0xf8,0x57,0xf6,0x55,0x78,0x62,0xc8,0xb8,0xc7,0xef,0x41,0xf8,0x05,0x45,0x52,0x09,0x96,0xfc,0xc1,0x12,0x7b,0x8c,0x24,0x91,0x82,0x22,0x01,0xae,},{0x60,0xa2,0x90,0xc0,0xfc,0x42,0x5a,0x08,0x74,0x67,0x3d,0x94,0xf9,0xbb,0x14,0x00,0xf9,0xda,0xcd,0xe9,0x95,0x4f,0x9f,0x5b,0x05,0xdd,0x48,0xab,0x74,0x7a,0x39,0x50,},{0x31,0xf9,0x0f,0x50,0xb2,0xdc,0x70,0x5f,0x1d,0x92,0xf1,0x2c,0xa9,0x97,0x5d,0x76,0xf1,0xb2,0x82,0x6a,0xda,0x3c,0xc1,0x85,0xb0,0xed,0x6c,0x83,0x86,0x07,0x77,0xbd,0x8c,0x48,0x9b,0x59,0x85,0x5a,0x91,0xf6,0x48,0x39,0xd4,0x9b,0xa4,0x67,0x98,0x5a,0xbb,0x37,0x6c,0x47,0xa4,0x90,0x8b,0x27,0x1b,0x8f,0x77,0xc5,0x8d,0x01,0xfd,0x04,},"\x25\x3b\x56\x6e\xcc\xb5\x63\xbd\x6e\x48\x0c\x69\x73\x9b\x8e\x37\x25\x19\xa3\x43\x72\x54\xe0\xe5\x02\x9c\xac\x86\xc7\x16\x38\xf2\xdf\x2a\x6c\xf9\xe5\x6d\xb2\x56\x99\x34\xde\xba\x90\xdb\x75\x54\x7e\x36\x71\x74\x7d\xf6\x4d\x6f\x2a\xaf\x3c\x11\x0f\xa6\x7a\x70\x94\xcc\xbe\x4c\xc5\x35\x5f\x0d\x43\x23\x51\x36\xee\x26\xdb\xe3\x7f\x42\x25\xd3\xbb\xfe\x24\x55\x95\x28\x05\x85\xfb\x54\x8f\x89\x4e\x86\xc5\x16\x10\x25\x80\x29\x1f\xa7\xa0\x28\x59\x55\x7f\xb9\x8e\xb5\x88\x87\x08\x28\xb0\x99\x0a\xe9\xd7\x4f\x38\x31\xda\x58\x94\x6b\xc7\xa5\xce\x1b\xa4\x98\xb4\xe8\xbe\x89\x89\xa3\xb5\x0d\x7e\x87\x89\xf5\x6b\x8b\x4f\xec\xbc\x2a\x33\xbf\xa3\xef\x59\x1a\x0f\xbc\xd9\x32\xfa\x93\xe1\x9f\x3a\x81\x2a\xe5\xe4\xe3\xb4\xb2\x42\xbe\x77\x05\xa5\x87\x4a\xf7\x3b\xe3\x10\xb0\x05\x82\x66\xa3\x78\xf2\x3c\x13\x48\x52\x47\x15\xb0\xcc\xc1\x8d\x66\x34\xb2\x36\x36\xc3\x16\xba\x6a\x1d\xd2\xfd\x50\x92\xc0\x67\x16\xa7\x17\xb5\x4d\x0e\xb9\xfc\x7f\x63\x6f\x85\xbb\xf2\x25\xa2\xcf\x03\x5b\x4b\x7c\xfd\xdd\x75\x35\x16\x82\xc0\x57\x6c\x6b\x3b\xa5\xa1\xc0\xb2\x5e\xc5\x94\xe7\x70\x9d\xd0\x9a\x00\x79\x77\x2f\xf3\xac\xc6\x7f\xb6\xc1\xb3\x7b\xb3\x74\x2b\x72\x6e\x77\xe8\x05\x61\xd9\xab\x73\x16\x0b\x73\x36\x25\x81\xda\x5b\x9c\x7f"}, {{0xe6,0xb9,0xcd,0x4d,0xa0,0x7c,0xb3,0x4f,0x30,0x39,0x1c,0xf6,0x8f,0x0d,0x87,0xc7,0xcf,0xcf,0x68,0xf8,0x10,0xff,0xa4,0x0f,0x97,0x39,0xc9,0x5d,0xeb,0x03,0x7f,0x71,},{0x56,0x9e,0xde,0x0f,0x04,0x63,0x0b,0x43,0xa0,0x4c,0x5a,0x66,0xb6,0xa5,0x63,0x6b,0x76,0x6c,0x75,0x96,0x59,0x84,0xa7,0x47,0x7e,0x15,0x49,0x19,0x60,0xfd,0xd8,0x64,},{0x1e,0x37,0x5c,0x94,0xbd,0x80,0x9c,0xa0,0xcd,0xd0,0x2f,0x89,0xec,0xec,0x4e,0x43,0x77,0x32,0xdd,0x20,0xa0,0xa8,0x4b,0x25,0x4e,0xae,0x88,0x9d,0x80,0x70,0xe6,0x82,0xd1,0x13,0xb0,0xbe,0x22,0xe4,0x1e,0x6c,0xdc,0x3b,0xe8,0x77,0x68,0x0e,0x7e,0xeb,0x7f,0x09,0x95,0xe6,0x62,0x2d,0xc0,0xb4,0x34,0xfb,0x09,0x49,0xdd,0x99,0x4b,0x0c,},"\x69\xde\xf0\x52\x3a\xfd\xa6\x96\xf8\x44\x8f\x9c\x11\x43\xab\xc2\x65\x33\xe6\x86\x95\xa0\x90\xdf\x0d\x9e\x43\xd0\xc0\xef\xf4\x35\x83\xe6\xf7\x09\xd2\x04\x3c\x81\x5f\xbb\x3f\x96\xba\x2b\x0d\xc3\xbe\x6f\xec\xad\x5d\xd3\x81\x48\x78\x8e\x4a\x03\x85\xa9\xfe\x7a\x92\x1f\xcb\x8c\xce\xe0\xe4\xd3\xae\xd4\xbc\x3d\x21\x6d\x84\xb4\x14\xf9\x58\x0b\x02\x82\x0c\x03\xd9\x2e\x67\x5e\x68\x5c\x4b\x58\x51\xf3\x63\xbb\x4d\xf9\x7b\x41\x7c\x3f\xd9\x00\x22\xee\xaf\xa2\x0d\xfb\xe8\x29\x64\xf2\xff\x07\x3d\x25\x57\x58\xfb\xe5\x67\xc7\x6b\x2c\x35\xe2\xb0\x9f\x8a\x8d\x7a\xfa\x32\xc6\xf5\xad\x01\xbc\x3e\xbf\x6e\x21\x06\x06\xdb\x03\x8e\xcb\x68\x20\xce\x1e\xa4\xdd\x52\x9f\xc1\xad\xfb\xc2\xa1\x38\x56\x5a\xc6\xd0\xf4\xa4\x10\x9b\xdd\x47\xb8\xaa\x6e\xf4\xb8\xbe\xde\x45\x46\x80\xd1\xdb\xdb\x75\xfe\x1e\xb2\xe5\x48\xd5\xde\x7c\xb6\xd7\x92\xfe\xf3\xaa\x0d\x84\x80\xa6\x03\x0b\x30\xf1\x04\xd7\xe7\x6b\x58\xe9\xf4\x76\xeb\xf2\xcc\x83\x29\x23\xb5\x0c\x50\xc1\x11\xc3\x51\x5f\xc5\x18\x85\x23\x23\x42\x6c\xa7\x78\xa5\x96\xd3\x19\x5d\xa8\x58\x5d\x8c\x3a\xa9\x20\x83\x31\x3a\x6e\x65\x85\xb7\x0c\x98\xb1\x85\xb4\x72\x79\x8a\x61\xcd\xe7\x7e\x62\xec\x27\x2f\x14\xb0\xd9\xeb\x4f\x22\xf9\xc7\xc0\x58\x17\xda\x6f\xde\xfe\x78\x79\xa5\x84"}, {{0x4d,0x90,0x44,0xf1,0x7b,0x5a,0x09,0x77,0xdc,0x5a,0xa9,0x91,0x6a,0x92,0x43,0x00,0xa2,0x44,0xa1,0xef,0x7f,0x06,0x02,0x77,0xad,0x49,0x78,0x35,0x1e,0xa6,0x42,0x91,},{0xab,0x9c,0x06,0x92,0xa6,0x06,0xb2,0x56,0x7c,0x19,0xc3,0x0f,0x9f,0xaa,0x3b,0x4c,0xfe,0x72,0xfb,0x23,0x70,0x77,0x76,0x7b,0x76,0xd3,0xb2,0xae,0x14,0x90,0xa6,0xd4,},{0x6f,0xa4,0x8a,0xea,0x4d,0x5b,0x9a,0xf6,0x5a,0xf9,0x64,0xcd,0xb7,0x09,0x44,0x3a,0x11,0xfa,0x84,0xf7,0xd4,0x4a,0xcd,0xda,0xb1,0x6e,0x04,0xa6,0xfc,0xef,0xb2,0x7a,0xe3,0x3c,0x05,0xb3,0x6d,0xa1,0x3c,0x23,0xde,0x51,0x7d,0x6e,0x6a,0xc5,0x74,0xa0,0x3e,0xa6,0x30,0xba,0x4f,0xbb,0x95,0x81,0x31,0x12,0x9a,0xa7,0xf1,0x35,0x4c,0x01,},"\x7c\x8c\x71\x89\xaf\x67\x32\x7a\xf1\xc6\xdd\x2c\x30\xe9\x75\xf1\x90\xe3\xb3\x8d\x00\x8b\x45\x85\x16\x7e\x0d\x45\x07\x40\xd4\x67\x34\x58\x7f\x6d\x20\x87\x84\x24\x5c\xc5\xcb\x06\x2a\x2a\x27\x7f\x17\xeb\xb2\x74\x6f\x9b\xdf\x4a\x82\x37\xca\x47\x9a\xb0\xa4\x30\x17\x7e\x19\xed\x7d\xd3\x62\x25\x76\xb1\x4c\xdc\x08\x28\x22\x14\xfe\x5e\xe4\xd7\x6b\x43\xc1\x6a\xc9\x08\x64\xc5\x1b\xe8\xae\xd4\x5d\x7b\x98\x0d\xf7\x91\x7f\x29\x0f\xdf\x79\x58\x46\x46\x5f\x27\xfc\xb7\xe5\x73\x06\x37\x94\x4f\x05\x77\xc9\x2f\x32\x37\x5e\x99\x5b\xc0\xcd\xa9\xd7\x19\x6f\x2c\x0c\x1a\xc8\xb8\x0d\x12\xa0\x43\x99\x63\xeb\xd2\x25\x4c\x34\x77\x03\x57\x58\x16\xe7\x96\x4c\x13\xd4\x4d\x62\x92\x80\xc3\x12\xea\x26\x53\x44\xde\x38\xf3\xb1\x8d\x91\x50\xf8\xf9\x24\xaf\xb4\x4b\x6b\xfb\x9e\xda\x51\x3d\x59\xe6\x5e\x2e\xf1\x86\x66\xe6\xc2\xa2\x1c\x40\x18\x66\x5b\xef\xe9\x2c\xae\x58\x1d\x3c\xb1\x4e\x23\xe9\x7d\x83\x00\x02\xcb\x90\x93\x1a\xe0\x21\x00\x68\xaf\x39\x4e\xbe\x35\x1b\xe5\xb8\x17\xf3\x67\x4b\xfb\xf4\x00\x49\x03\x0e\x4f\xe5\x05\xd3\x4a\x1d\x50\x2a\x2c\x50\xd8\xe6\x38\xe9\x26\xc2\x30\x67\x6b\x7e\xde\xfb\x6b\xec\x77\xb1\xc0\xce\x60\x93\x25\x28\x7b\xa5\xfd\xd7\xa9\x97\x69\x87\xbd\x07\xfc\x6a\x43\x44\x95\x6e\xbf\x81\x8f\x08\x58\x6c"}, {{0x75,0xad,0x76,0xbb,0x4c,0x0c,0x22,0x9a,0x5a,0xdc,0x79,0xe4,0x44,0xb1,0x3f,0x88,0xa9,0x64,0x59,0x86,0x2c,0x8c,0xf0,0xba,0x49,0x8d,0x0c,0x99,0x6a,0xf9,0x4a,0x7a,},{0xf0,0x74,0xdd,0x2b,0x9c,0x1c,0x30,0x91,0x05,0xec,0x95,0x1b,0xb5,0x81,0x2a,0x91,0xdd,0xb5,0x40,0x23,0xb3,0x80,0x9a,0xb3,0x79,0xc5,0x6a,0xf0,0x46,0x1a,0xf6,0x17,},{0x0c,0x46,0x43,0xa8,0xbe,0x6d,0xc2,0x2f,0x4b,0xeb,0x6b,0xcc,0x70,0xc6,0x17,0x2e,0xc7,0x60,0x83,0x78,0x65,0x3c,0xb4,0xe9,0x9f,0x3a,0xe7,0x95,0xea,0xdf,0x4e,0x98,0x2a,0x29,0x76,0x09,0xca,0x79,0x38,0xf5,0xdf,0x63,0x2b,0x09,0x56,0x28,0xcb,0x75,0x06,0x2d,0x3d,0x51,0xfc,0x0f,0x33,0x23,0xbf,0xa7,0xb2,0x2e,0xc4,0xd4,0x72,0x05,},"\x0c\xa8\xc1\xc7\x41\x28\xd7\x4e\x9d\x0a\x7b\xf8\x96\x42\x91\xd0\x74\x91\x7f\x2f\x99\x20\xef\xb9\x11\x52\x05\x67\x64\x2a\x50\xa6\x15\xab\xcb\xd0\x0a\xed\x4a\xbb\xfe\xf1\xa9\x83\xcc\xe3\x33\xe1\xd0\xdf\x3e\x64\x04\xfb\x90\x43\xc6\x80\x39\x14\xcd\x5f\xff\xbc\x66\xa0\x79\x0c\x78\x78\xa2\x40\x89\xa5\x71\xf8\x95\x66\x2a\x1d\x18\xbe\x3f\x01\xff\x97\xfb\x33\x23\x33\x4b\x6f\x5b\xaf\x96\x55\x14\x48\xe4\x09\x0d\x03\x3c\x46\x42\x94\xd0\x91\x33\xb1\x51\xd5\xb5\xc6\x32\x1b\x50\xe2\x24\x1d\xe0\xef\x6f\x88\x28\x89\xcc\xf4\xad\x35\x40\xd5\xa1\xe3\xf7\x54\x8f\xb1\x3b\xe7\x1c\x16\x51\x66\x06\xe7\x9d\x04\x49\xc2\xa0\x8e\x5d\xc2\x31\x48\x84\x3c\x84\xe9\x7e\xd2\x40\x69\x16\x1c\x8e\x75\x20\x8f\x33\xe9\x5b\x3e\x10\xd1\xd4\x9a\x2f\xae\xf9\xd9\x86\xab\x62\x80\x9f\x62\xad\x39\xc7\xcc\x87\x1f\x37\x5a\x4f\x5a\x6f\xaf\x10\x4d\x7e\x11\xb8\x90\xcf\xb0\x58\x99\x02\x68\x52\x16\xec\x07\xcb\x8e\x8e\x9e\x7a\x7c\x43\x63\x5e\x23\x21\x2b\x69\xca\x3b\x7e\xd5\x4f\x0b\x97\x94\x9e\x3d\x9a\x66\x62\xf8\xe4\xb3\xab\x09\xcd\x49\x52\x94\xc3\x31\xc0\x47\xd8\x6e\xe7\x85\xff\x65\x8b\xcd\x7f\xcf\x9c\x48\x06\x05\xce\x05\xe8\x10\x06\x8d\x60\xfc\x9b\x26\xb5\xf0\x63\xeb\x90\x00\xd2\x65\x7a\x50\x94\x28\x4a\xc8\x0f\x13\x75\xd0\xb6\x6d\x6f\x5f"}, {{0xad,0xc6,0xe9,0xb2,0xe1,0x03,0xb6,0x2c,0x24,0xad,0x43,0x46,0x41,0x0e,0x83,0xa1,0xa0,0xbd,0x25,0x3e,0x4a,0xbf,0x77,0x91,0x18,0x50,0xc6,0xd9,0x66,0x6e,0x09,0xf9,},{0xfc,0xe3,0x16,0xe3,0x3c,0x91,0x08,0x21,0xbe,0xed,0xdd,0x63,0x4b,0xed,0xc5,0x8e,0xe5,0x79,0x99,0xa7,0x6e,0xce,0x38,0x46,0x05,0x28,0x3b,0x99,0xb5,0x43,0xb7,0x8b,},{0xcb,0x01,0x7d,0x6d,0x26,0x82,0xc9,0x85,0x43,0x66,0x25,0x9a,0xa3,0x5f,0x30,0xd4,0x91,0xcf,0xaa,0x93,0x09,0x98,0xc2,0x97,0xdb,0xdd,0xc6,0xad,0xed,0x5b,0x3d,0x40,0x1c,0xf7,0x6d,0x80,0xd8,0xa2,0x76,0x4d,0xe1,0x31,0x71,0x8b,0x6e,0x0c,0x48,0x1d,0x71,0x96,0xbc,0x72,0x57,0x97,0x16,0xb0,0xc0,0xf6,0xff,0x05,0x3e,0x68,0xc5,0x0c,},"\x8c\xcc\xd9\x8e\xbb\xf2\x43\x9f\xfd\xfa\xc4\x16\x87\x63\x8f\xaa\x44\x4e\x1c\xa4\xb6\x3d\x13\xe8\x98\xea\xa8\x35\x54\x92\xf2\x88\x13\xab\x81\x3f\xd0\x15\x10\xe1\x12\xbe\x10\x6b\x20\x45\xd3\x0f\x63\x33\x5d\x24\x89\x04\xd5\x21\xde\x18\x1a\xba\xc0\x3e\x3d\x2c\xb2\xd1\x6c\x44\xb3\xb0\x12\xa0\xc5\x1f\x99\x01\xae\xf9\x05\x6c\x72\x4d\x7a\x2c\x6b\x2a\xcb\x0a\x07\x55\x59\x40\xe4\xc6\xe2\x11\x54\x89\x06\x11\xad\xeb\x64\x89\xf4\x61\xd3\xe5\xec\xd1\xaf\x5a\x4d\x2b\x0a\xda\xf4\x17\x47\x43\x6e\xb4\x14\x75\x7a\x8f\xe4\x77\x56\x74\xe3\xc6\xe5\xde\x45\x69\xd6\xfc\x6c\x78\x8e\x10\x90\x5e\xba\x32\xc2\x70\xa3\x93\xe6\xf7\x21\xa7\x65\x29\x4e\x2a\xc9\x9a\x9b\x6e\x53\x4d\x3d\xf0\x8d\x1d\xb9\x7d\x60\x2a\xc3\x19\x5c\xb0\xb7\x7f\x5b\xd4\xac\xaf\x73\x7f\xad\xd6\x99\x1f\x06\x88\xab\xc7\x49\x18\x04\x75\x74\xea\xc2\x82\x89\x73\x9a\x66\x4e\x0e\x0e\x20\x57\x4a\x2c\x25\xfd\xe4\x9d\x14\x53\x9d\xb1\xce\xdd\x4a\x92\x04\xa7\x0a\xcf\xf0\xa6\x2c\x8f\x25\xcd\x76\x8f\xfa\xb1\x5c\x4d\xb3\x16\x84\x0a\x4d\x1b\xc9\x2e\x21\x26\x70\xbe\x07\xc5\xbd\xcf\x53\x75\x90\x60\x7d\xfb\xbb\xb4\xd9\xf9\x8b\x89\xda\x0b\x4d\xf7\xd8\x8f\x3e\xca\x48\x14\xd1\x6b\xfa\x20\xc8\xd2\xfa\x94\xf9\xf2\x59\xf2\xee\x2d\x3a\x83\xc9\xe4\x17\x1b\x1a\x26\x2c\x4b\x99"}, {{0x37,0xfc,0x1b,0xed,0xa4,0x06,0x0b,0x6c,0x57,0x88,0x3d,0xdb,0xa0,0x77,0x6c,0x2b,0xcf,0x5a,0xc2,0x8a,0x65,0x13,0x26,0x02,0x1c,0xca,0x97,0x72,0x37,0x30,0xfb,0xb0,},{0x7b,0xd7,0xbf,0x1c,0x99,0xdc,0x82,0xe0,0x6f,0x08,0xbb,0x45,0x4d,0x8f,0xb2,0x88,0xa5,0x79,0x27,0xe0,0x7f,0xf1,0xb1,0x2a,0xf1,0x5e,0xe2,0xc1,0x2f,0xbb,0x6b,0x3d,},{0xa0,0x1d,0xd6,0x5f,0xad,0xa2,0x70,0x39,0xf1,0x68,0xb1,0x23,0x41,0x9d,0x8a,0xbf,0xbd,0xa4,0x8c,0x57,0x2e,0xce,0x24,0xfd,0xa0,0x6e,0x1a,0x5e,0xc3,0x1e,0x08,0x4f,0x4e,0xe1,0xcb,0xf9,0x96,0x1e,0x88,0xed,0x51,0xe1,0x89,0xfc,0xb7,0xf5,0xf2,0x35,0xde,0x1e,0x5b,0x28,0xd0,0x8f,0x2b,0xfc,0xa1,0x90,0xb0,0xf0,0x19,0xec,0xc2,0x07,},"\x3d\xfc\xac\x02\x65\xa0\x24\xa8\x3c\xb9\x32\x67\x44\x89\xa1\x63\xaa\xc3\x14\xbf\x3d\x96\x9f\x27\x59\x6e\x45\x17\x33\xb9\x9d\xeb\xa5\xee\xb7\x79\x21\x0b\xaf\x95\xbf\x54\x5a\x1a\xe6\xb8\xa9\x15\x86\x06\x93\xee\x89\x0f\x93\x93\x20\xe0\x6a\x84\x44\x83\xd1\x8c\x6a\x1b\xcd\x03\xc6\x38\xbb\x7d\x1f\xe2\xa8\x2e\xb4\x48\xa3\x11\xb1\x30\x2e\xa6\x42\x8f\x54\xa3\x9f\x45\xa4\xd5\x60\xbe\x15\x57\xa2\xb2\x54\xc4\x5c\x13\x7f\x45\xcc\x68\x35\x68\x36\xe2\x1b\xed\x0b\x7f\x73\xa5\x18\xce\x09\xdb\x0b\xe3\x93\x92\x7c\x33\x9b\xf2\xa4\xb5\x98\x75\x39\x40\x4c\xe6\x50\x28\x4d\xe1\x2e\x3b\x55\x3b\x26\x2e\xfe\x23\x84\x83\x32\xcc\xfd\xc3\x5e\x79\x1a\x0a\xb4\x3f\x13\x9c\x71\xed\x0f\xcb\x2d\x17\x3b\xb3\x77\xee\x46\xb1\xa9\xdc\xa9\x27\x7e\x77\xdf\x85\x5f\x28\x30\x25\x1e\x31\xe2\x6a\xcd\x86\x76\x3c\x8d\x7e\xac\x22\xc8\x82\xfc\x17\x4f\x2b\x5e\x75\xca\x6a\xd1\xad\xe0\x3f\x94\x2b\xb2\xa1\x3b\xf5\x41\x90\x61\x59\x15\x8c\x68\x36\x3c\x74\x80\xc5\xb2\x7a\x99\x32\x0f\x82\x83\xa2\x69\x9d\x43\x69\xc0\x71\xc5\x0d\xbd\x90\xb7\x79\x2e\x47\x72\xef\xbc\x0b\x19\x5b\xce\x84\xcc\x4d\xcf\xff\x70\x72\xa4\x89\x68\xdb\x69\xf9\xfe\xdd\xd0\xf9\xce\xd6\x59\xeb\x5d\xb7\x16\x7f\x35\xf9\x88\xce\xc1\x14\x88\x7d\xcb\xfd\xf2\x7d\x02\xd3\x00\xb3\xe1\xab\xec"}, {{0x8d,0x42,0xf4,0xdd,0xd2,0xbb,0xd2,0xb8,0x27,0xb0,0xa0,0xd3,0x1d,0x8f,0x75,0x8e,0xbd,0x13,0xa1,0xb9,0xb3,0x71,0x22,0x28,0x94,0x8c,0xa6,0x10,0xbb,0x88,0x58,0xe5,},{0xb7,0x35,0x48,0x98,0x79,0x4f,0x9d,0xb0,0xa8,0xaf,0x6e,0xea,0xfc,0xdb,0xdf,0x01,0x1d,0x3f,0xbe,0xf0,0x21,0x2a,0xd9,0x38,0xa4,0xa4,0xad,0x27,0xab,0x16,0xeb,0xbf,},{0x70,0x76,0x4b,0xe3,0x9c,0x6d,0xca,0x0f,0x06,0x7a,0xbe,0x1e,0xca,0x49,0x0f,0xda,0x95,0x1f,0xd4,0xe9,0x49,0x96,0x95,0x26,0x6e,0x27,0x0b,0x9b,0x05,0xea,0xe7,0x06,0xca,0x8d,0x1c,0xa6,0xa9,0x2d,0x7c,0x48,0x8e,0xc6,0xad,0x8b,0xa1,0x14,0x57,0xa4,0x2a,0x5e,0x31,0x70,0x2a,0x9c,0x2b,0xce,0x89,0x2d,0xc4,0x05,0x35,0xc0,0x9f,0x01,},"\xe3\xa2\xbe\xbc\x04\x96\xd8\x97\x4a\x8f\x40\x61\x88\x03\x69\x31\x4e\xd9\xe4\x40\xc1\xb7\x7e\x26\xfe\x50\x71\xce\x69\x4f\xfd\x21\x36\xdb\x0c\x4d\x5e\x88\x0e\x60\x00\x08\x3a\x75\xc9\x0d\x3c\xf7\x2b\x9c\xf5\xa2\xb1\xa9\x00\x2c\x27\x01\xa2\xff\x59\xb0\x69\x9a\x8f\x42\xd7\x9d\xd8\xa5\xfb\x71\xa8\x12\x54\x53\xd9\x1f\xb8\x00\x80\xa3\xf0\xa1\x65\x84\x28\x2f\x17\xec\x7d\xfd\xc2\xe5\xc6\x9c\x4d\x9b\xdf\x48\x4d\x55\x94\x4d\xae\x27\x3f\x21\x1c\xfb\x76\xad\x37\xda\x45\x87\x13\x65\x43\x9a\xf3\x5e\xea\x1f\xbe\xcd\x4c\xa6\x79\xb5\x9b\x5e\x01\xba\xcf\x49\xc7\xf4\xe5\xef\xaa\x40\x6b\xa1\xda\xeb\x08\x54\x82\xaf\x5d\xed\x89\xdc\x68\x85\xff\xbe\x3d\x14\xd2\x93\x1b\x83\x89\x7e\x28\xad\x06\xe5\x56\x4e\x27\x89\xba\xea\x81\xbd\x93\x2a\xa2\x79\xfe\x8e\x32\x4b\x9a\x8e\xf1\x11\xc2\xab\xe2\xf1\x37\xd4\xbb\x50\xd8\xab\x76\xce\xbc\x0b\xd9\x82\xa2\x39\x19\x75\x1a\xd4\xd4\x9e\x88\xeb\x14\x17\x3d\x33\x10\x28\x9a\x87\x23\x17\xe4\xa4\x51\xe8\x8d\x54\x32\x08\x91\x87\x0f\x15\xb2\xd5\x33\x24\x43\x08\x77\xa9\xfb\x5b\x49\xbb\x92\x9f\x21\x1c\x5b\x89\x76\x4d\xd9\xc3\xa5\x95\xa1\x45\x1e\x9f\x85\xa2\x38\x54\x00\x02\x56\x6e\x53\xa9\x9e\xd1\xe6\xdd\xc9\xb4\x85\x3f\x45\x5e\xdb\x4c\xf1\x98\x0d\x56\xbb\xdc\x13\x13\xa3\x6e\x76\xea\x9c\xbb\x04\x8a"}, {{0xb6,0x2d,0xe5,0xa1,0xac,0xfe,0x4c,0xa2,0xd1,0xf0,0xc1,0x32,0xaf,0xcb,0xda,0xe6,0x6f,0xb2,0x9a,0x02,0xf2,0x97,0xfb,0xc2,0x40,0x7f,0xad,0xbb,0xf2,0x45,0x42,0x00,},{0xb6,0x3b,0x2d,0x0b,0xf3,0x55,0xf7,0xb6,0xd0,0xba,0xc0,0x74,0x03,0x41,0x1c,0x40,0xaf,0xbb,0xb2,0xf7,0x07,0x50,0x3b,0x3f,0xc2,0xce,0xe8,0xa1,0xc7,0xd0,0xa8,0x38,},{0x5c,0xdb,0x00,0xe9,0x8d,0xe7,0x3e,0xab,0x48,0x0b,0xe4,0x2f,0x8a,0x8a,0x61,0x63,0x80,0x9a,0x0d,0x37,0x10,0x1b,0x6a,0x5a,0x4e,0xed,0x6a,0x0c,0x92,0x03,0x0d,0x09,0xa5,0x56,0x2c,0x72,0x90,0x80,0xce,0x6f,0x65,0x94,0xc8,0xfa,0xfb,0x1f,0x59,0x47,0x72,0xdb,0x7a,0x90,0xa9,0xe7,0xda,0x15,0x89,0x6e,0x82,0xf7,0x05,0x69,0x39,0x0d,},"\xe6\x59\xe5\x1d\x7b\x19\x3c\x4b\x8e\x2b\x3e\xd7\x3a\x9d\x75\x57\xed\x2b\xab\x61\x53\x88\x3a\xb7\x23\x59\x2f\x73\x0a\x91\x45\x67\x14\x2b\x3f\xa4\x35\xdb\x32\x19\xf8\x3a\x54\x2d\xc7\xa4\xbd\x80\x5a\xf6\x66\xea\x86\x5b\x85\x31\x46\xf8\xe3\xa9\xfe\x87\x07\x11\xf9\x0d\x12\xb0\x69\x34\x92\xaf\x2a\x1e\xdf\x99\xa1\x64\x58\xf7\x81\xf1\x26\x6e\xc4\x37\xa5\x29\x6a\x82\x2c\xa9\xd6\x9c\xe8\x44\xb5\xc5\x90\x97\xa2\xa5\x6f\x3e\xb8\xfd\x27\x3a\x63\x61\x16\xdb\x77\x43\x00\x92\x2d\x45\xb7\x44\x65\x7a\x69\x2f\x5e\x8b\xfb\xcb\x06\xd2\x42\x28\x18\xae\xb5\x1e\x7c\xda\x68\xac\xfb\xed\xa1\x6e\x7c\x79\x58\x0d\xcc\xcd\xe2\x4e\x8e\x3d\x60\x1b\x16\xe0\x63\xb4\x3a\x6d\x0d\x14\x07\x55\x2f\x75\x04\xf5\xbe\x19\x88\x2e\x4f\xfe\x32\x34\x4f\x5f\x47\x3e\x73\xa8\xf6\xed\x37\xb0\xd8\xd9\xe5\xe0\xa0\xdc\x98\x28\x39\x5b\xcb\xd8\xf3\xa4\xe3\x12\x48\x69\x24\x9d\x05\x8b\xe0\xe0\x45\xde\x0b\x1e\x12\xb1\xc8\x3b\xa0\xaa\x22\x7c\x95\xb8\x2b\xf7\x42\xc3\xea\xc0\x15\x2b\x33\xe6\xd1\x9b\xe8\xb3\x3a\x35\xbf\x70\x5d\xaa\xb1\x06\x22\xa9\x0a\xed\x02\x2e\xa6\xe4\x39\xed\x50\xa9\x30\x84\x37\x92\x99\x24\xba\x3a\xb1\x11\xad\x0c\xaa\x6f\xeb\x0a\x6e\xb1\x65\x82\x4e\xbd\xb0\x86\x65\x71\xef\xc0\x7e\x52\x22\xed\x86\x86\xb1\x4d\x92\x70\xbf\x76\xb9\x45\xd5\x20\x14"}, {{0x97,0x32,0x05,0x9d,0x7b,0xf0,0x20,0x0f,0x5f,0x30,0x41,0x24,0x30,0x33,0x6b,0xe4,0xef,0x1e,0x3c,0xae,0x62,0x93,0x8a,0xd0,0x87,0x29,0xce,0x3b,0xa7,0x14,0xcf,0xd4,},{0x0d,0xe8,0x42,0x5f,0x5e,0x30,0xb2,0xb8,0xae,0xbb,0x80,0x72,0x00,0x9a,0x30,0xcf,0x04,0x11,0xc3,0xc8,0x23,0x8f,0x4e,0x42,0x08,0x76,0x0c,0x56,0xc3,0x3e,0x43,0x4f,},{0xfb,0xa1,0x74,0x9b,0x64,0x1d,0xd4,0xdf,0x34,0x66,0x4b,0xc4,0x3c,0x00,0x46,0x8c,0x7d,0x75,0xe8,0x4a,0xfa,0xd7,0x2d,0xe4,0x73,0xfd,0x1e,0x9c,0x87,0xda,0x15,0xea,0x60,0x4f,0xc2,0x54,0x9a,0x1a,0x86,0x7f,0xa8,0x08,0x50,0xe9,0xc2,0xa5,0x9c,0xd9,0x90,0x53,0x88,0x67,0x60,0xa8,0xd9,0x76,0x4b,0x84,0xdd,0x67,0x26,0x76,0x72,0x0d,},"\x1a\x13\xe7\xab\x60\x3b\x48\xeb\x89\x6f\xe1\x71\x73\xfb\x31\x95\x0b\x0d\xcd\x5a\x35\xff\xdb\xe1\x37\x1c\x7a\x5b\xfb\xa5\x93\x31\x75\x89\xd9\x65\x2d\x88\x79\x77\x29\x18\x0b\x8d\x0e\x51\x5a\xbf\xe6\x54\x8f\x16\x04\x21\xe5\x37\xd5\xc9\x4a\xef\x2b\x34\xc7\xeb\xb0\x97\x42\x00\x03\xbc\x0f\x36\x1b\x42\x3e\x7e\x14\x63\x0a\x80\x3c\x11\x82\x02\x54\x00\x49\xf6\x8c\x9c\xf4\x6f\xae\x03\x68\xd1\x62\xe4\x00\xd7\x7b\xb4\x52\x3c\xf6\xc7\x53\xb9\x75\xc2\x45\xbc\x99\xed\x2f\x41\x3a\x9d\x06\xc2\xda\x6c\xe0\xcc\x09\x87\xb6\x40\x6b\x80\x9e\x8e\xb3\x19\x03\x3d\x2d\xe9\x13\x1d\xee\x3b\x1b\x7b\x5c\x95\xd6\x53\xce\xd8\xfc\xcf\x99\x8d\xa1\x76\x85\x11\xec\xa4\xd3\xc5\xf7\x35\xad\xab\x96\x50\x3b\x35\x51\x80\x3e\x49\x22\x63\x50\x95\xef\x81\x1b\xe4\xc0\x8a\x6c\xba\xc9\x17\xcb\xe6\xcd\x91\xa4\xae\x5a\x33\x0c\xce\xc0\xe8\xe8\x15\x37\x12\x17\xa3\xde\x62\xf2\xd2\xd6\x14\x66\x21\x98\x33\xf3\x34\x47\x13\x2f\x4d\x43\x35\x0c\x58\xcb\xaf\x42\x24\x75\xed\xb1\x28\xc5\x6d\x80\xa4\x95\x72\x6b\x1f\xdb\xc5\x65\x51\xeb\x72\xd0\xf4\xfe\xc2\x6b\xa8\xbf\xf5\xee\xd6\x77\x4b\x85\x03\x9a\x52\x92\x83\x4b\x5d\x1c\xc1\xb0\x9b\xa0\xa3\x95\x4d\x29\x32\x36\x73\xf5\xe7\x12\x76\xa1\x2a\xc4\xc5\x79\x35\x5b\xf1\xec\xca\x48\xe6\xa7\x16\xb9\xfc\xec\xdc\x56\x5c\x51\xb9"}, {{0x9c,0x7f,0x6f,0x37,0x9e,0x38,0x57,0x00,0x7e,0x2a,0xc6,0x32,0x4c,0xbb,0xce,0xd5,0x7a,0xc9,0xee,0xe4,0x47,0x78,0x13,0xf8,0x3a,0x81,0xfc,0x8c,0xef,0xa9,0x64,0xd5,},{0xa5,0x4b,0xa3,0x96,0xd6,0x87,0x63,0x4d,0x3e,0xcc,0xf4,0x1c,0x57,0x82,0x49,0x4f,0x5f,0x10,0xa5,0x21,0xa1,0xe5,0xd3,0x88,0x52,0x3d,0x80,0xee,0xba,0x5b,0x0b,0x2b,},{0x65,0x68,0x5f,0x9c,0xa5,0x98,0x2e,0x15,0xa2,0x2b,0xa3,0xc8,0x3a,0x03,0x48,0x34,0x84,0x82,0xdf,0xae,0x57,0xce,0xa1,0x78,0xf0,0x78,0x0c,0x05,0x7b,0xae,0xbe,0x4a,0xf6,0x32,0xf9,0x84,0x54,0x0a,0x26,0x01,0x9a,0x7f,0xb3,0x42,0x53,0xc9,0xec,0xe7,0xff,0x30,0x8a,0xda,0x23,0x3c,0xe0,0x68,0x63,0x47,0xab,0x5b,0x21,0xce,0x57,0x0b,},"\x3f\x2d\x30\x72\xfe\x73\x83\xe5\x41\x55\x1e\xa9\xab\xdb\xae\xae\x6a\x46\x4a\xe6\xb9\xf0\xba\x78\x6a\x44\x1b\x2d\x08\xda\x5b\xca\xda\x3c\x54\x24\xdc\x69\x31\xd6\xb3\x95\x23\xe2\xde\x0a\x0c\x2e\x4e\x6b\x5b\x8c\xda\x92\x5e\x5e\xac\x93\x84\x16\xa2\xc5\x1b\xf1\x3d\x49\x53\x1d\x7e\xc7\x11\x4b\x1c\x82\xfe\xaf\x90\xf3\xf8\x75\x91\xe3\x97\xd0\x27\x02\xf8\xec\x1b\x30\xd9\x9f\x5b\xe7\xd2\x20\x3e\x4f\xe4\xdb\x2e\xa4\x7e\x7b\x45\x89\xd8\xac\x50\x62\x48\xd7\x34\x74\x66\xed\xbc\x96\xea\x32\xbf\x3a\x6e\xa7\x50\x2d\xd6\x0c\x9e\x84\x90\x27\x15\xab\x2c\x6c\xa6\x8f\x5b\x00\xe1\xd9\x09\xd8\x3a\xa6\xab\x66\x2d\x8a\xea\x87\x0e\xcd\x86\x1f\xec\x69\xf2\xee\xc0\xae\x67\x7d\x29\x95\xb0\xed\x68\x8f\xaa\x8e\xf7\x82\x44\xe0\xd1\x19\x56\x97\xb0\x71\x22\xce\xaa\x11\xf5\xa6\xea\x58\xfb\xdf\xa2\xe2\xec\x2d\xf9\xd1\x86\x93\xae\x96\xd4\x71\x27\x55\x6e\x91\xf0\x86\x49\x82\xc1\x34\x19\xb0\x4a\x63\xf2\x08\xe7\x30\xd2\x69\x51\x88\x2a\xef\xe0\x01\xbc\xa3\x40\x8b\xd9\x86\x27\x48\xc6\xcc\x87\x6c\x28\xca\xc3\xbb\x2e\xb3\x39\x58\x18\xc2\x09\x1e\x0f\xbd\x7a\x0b\x44\x68\xc6\xb0\xd0\x0c\xd0\x08\xc1\x1c\x3c\x3a\xd0\x10\x80\xa1\xf5\xa4\x0a\xe2\xe4\xb0\xc3\xa0\x71\xef\xc8\xe1\xd1\xba\x6a\xce\x6d\x4d\xf0\xff\x19\x82\x9b\x0c\x68\x0b\x3a\xeb\x75\x91\x77\xed\x34"}, {{0xa4,0x78,0xf3,0x5a,0xbb,0x73,0x72,0x7b,0x6b,0xe6,0xee,0x5e,0x56,0xee,0xc3,0x23,0xc9,0x51,0x78,0x82,0xfd,0x69,0x19,0x36,0x0e,0xbb,0xbf,0x5d,0x5c,0xb8,0xb8,0x3a,},{0x7a,0x6e,0x26,0x6a,0x54,0xd1,0x35,0xdd,0xa0,0x00,0x9c,0xcd,0xa8,0xa9,0x4a,0x47,0x12,0xae,0x5c,0xb1,0x47,0x61,0xe8,0x43,0x6e,0x97,0xc4,0xb7,0x81,0x4d,0x8e,0x8c,},{0x9d,0x16,0xfd,0x40,0xb9,0xf8,0xdd,0x9b,0x4a,0x1a,0x8c,0x6d,0x70,0x3b,0x9f,0xcc,0xbb,0x94,0x0b,0x1e,0x0a,0xe7,0x7a,0x59,0x70,0x37,0x4a,0xf0,0xcf,0x72,0x6f,0x44,0x79,0xfd,0x30,0xd7,0xdf,0xf5,0xcf,0x53,0x49,0x4d,0x9a,0x29,0x6a,0xb6,0xb9,0xe4,0x6e,0xa6,0xc1,0x36,0xb4,0xdb,0x2c,0x71,0xc2,0x1b,0x97,0xc1,0xc8,0x25,0x4d,0x0a,},"\x01\x73\xa3\x40\x50\xb4\x37\x48\x06\x1f\xf8\xf5\xa3\xd7\xc4\x3b\x63\x60\x84\x77\x86\xe8\xbb\x75\xe5\x36\xfb\x47\xb6\x45\xb2\x14\xf2\x21\xba\x24\xd8\x3d\x28\xbc\x02\x50\x24\x66\x3e\x53\x4f\x90\xf6\xe8\x3a\x93\xd8\xbd\xde\xda\x2c\xd8\x80\x81\x55\x65\x2a\x90\x8c\x43\x7c\x2d\xb6\xf3\xed\x49\x12\xf5\x7c\xa5\xb9\x79\x28\xa7\x3b\xe9\x64\xaf\x59\xdf\x44\x39\x85\x4b\xb0\x06\xfc\x29\x5a\x87\xb7\xb7\x22\x39\xc7\xfa\xdf\xec\x40\x71\x55\x09\xd9\x85\x79\xda\xad\xfb\x8d\x52\x4b\x4c\xec\x66\x20\x70\x5e\xfd\x41\x04\xc2\x97\x14\x4a\xea\x72\x29\x74\xe1\x2c\x5e\xce\xe5\x39\x1e\xf2\xd9\x3a\xc2\xb1\x24\xe4\xac\x49\x61\x47\xc8\xb7\x03\x63\x58\x5d\x70\x78\xcc\xc5\x3e\x2a\xe5\x93\x35\x0b\xc2\x55\x48\xa0\x54\x25\x26\xab\x00\xaf\xe4\x77\xa0\xf4\xb2\x73\x97\xc7\x2b\xc7\x4a\x8a\x8a\xb1\x56\xe6\x2b\x8b\xb4\x7c\x3f\xbb\x4b\x34\x91\x3e\x45\x96\x87\x47\x6b\xf3\x31\x42\xc6\x14\x70\x21\x07\xff\xe2\xcc\x01\xe2\x5f\xa3\x02\x75\xe1\xe2\xe6\x3c\xea\x91\x68\xe4\xa4\x7c\x02\xde\x09\x7d\x4d\x85\x3b\x27\x67\x5c\x5b\xb3\x30\xb9\x4a\x97\x4e\xad\x85\xe2\xbd\xee\x8e\xe1\x7c\xbb\x56\x53\x34\x66\x58\xdf\x2f\x91\xf6\xbd\x73\x94\x91\xdd\x71\x98\x8b\x3a\x97\x6a\x3e\x2e\x7a\x9d\x13\x74\x10\xf4\xac\xba\x9f\xeb\x5f\x11\x79\x8c\x9a\x43\xb6\xad\xce\x14\x36\x5a\x7c\x6d"}, {{0xff,0xe8,0x25,0x14,0x8c,0x09,0x59,0xb3,0xa6,0x8d,0xe8,0x6a,0xd8,0xe8,0xaf,0x7f,0xa5,0xe0,0x78,0xf3,0x63,0xdc,0x12,0x42,0x13,0xc9,0x00,0x20,0xda,0x0c,0x90,0x89,},{0x13,0x91,0x52,0xa0,0xbd,0x22,0x96,0x2d,0xd9,0x19,0xae,0x3e,0x0b,0x16,0x20,0xe0,0x3c,0x03,0x3c,0x2a,0xd0,0xa3,0x97,0x9e,0xc6,0xbc,0xd1,0x70,0x5e,0x23,0xd5,0x98,},{0xfe,0x4e,0x89,0xee,0x31,0x78,0x6c,0x0a,0x3d,0x3d,0xe3,0x64,0x9b,0xb9,0x3f,0x0b,0x8a,0xef,0x1c,0xaf,0x5a,0x83,0x2e,0xc5,0xe4,0x06,0x78,0x10,0x70,0x5a,0xdd,0xdf,0x53,0x9b,0x8f,0x4e,0x05,0xad,0x08,0xcf,0x34,0x79,0xe4,0x5b,0x42,0xc9,0x65,0x28,0xf6,0xd5,0x9a,0x46,0x25,0x70,0x3d,0xdb,0xf1,0x5b,0x63,0x09,0x39,0x65,0xd8,0x0d,},"\xf1\x25\x78\x0d\x0c\xd0\x88\x53\x0f\x0c\x87\xb7\x0b\xd4\x2e\xba\xb5\x6a\xdb\x5a\xd4\x34\x5f\x92\x9a\xe5\xde\xae\x07\xfb\x55\x32\x21\x53\xa8\xf0\x23\xd3\x88\x43\xbf\x5d\x6a\x93\xfe\x99\x3e\xee\x71\xbc\x2e\xe5\x63\xb2\x5a\x50\x91\x8f\x03\xef\xdb\x5d\xbf\x72\x69\xad\xd6\x9d\xed\x3e\x66\x95\x38\x95\x62\x0d\x9b\x6c\xf4\x6b\xa2\x34\x8f\x8d\x66\xd7\xf0\x92\x23\x5e\x37\x8c\x1e\x3e\xdf\xeb\xeb\x78\x08\x4b\xc8\xde\xa0\x13\xf9\x93\x3a\xae\x14\xa0\x41\x94\x82\x76\xd0\x1f\x1c\xb5\x83\x4b\x0e\x59\x0e\x13\xd9\x31\xd1\x92\x92\xbb\x1d\x80\x41\xff\x2f\xe2\xe1\x17\x1a\x2e\x0b\x9a\x05\x98\x21\xd0\x92\x4d\xde\x7f\x3b\x1b\xb5\x98\x13\xf5\xe3\xc6\x35\x20\xaa\xfb\x88\x01\xba\x62\xc7\x09\x7d\x4d\x8c\xf4\x37\xa5\x68\xa7\xf0\x08\x7c\x6e\xa0\xfc\xe6\xe5\x68\xc4\x88\x3f\x1c\xd1\x2c\x74\x9d\x06\xa6\xfe\xb2\x78\xf1\x08\x6a\x8b\x04\x76\x99\x21\xf7\x8a\x99\x59\x06\x2a\xb0\x6f\x98\xee\x80\xc2\xc7\x85\x4f\xfa\x76\x0f\x86\xa8\x9e\xe1\xa5\x12\x66\x05\x3d\x19\x5e\x61\xbb\x1d\xbd\x18\xdd\x89\xff\x39\x4e\x40\x8a\xce\x0f\x64\x1a\x39\x5d\x56\x11\x8e\xa7\x2b\x7d\x8a\xdf\x78\xb1\x65\x5e\xce\xce\x7e\x82\x50\xe8\xa3\xa9\x1c\xb8\xfc\xa0\xd9\xce\x0b\xaf\x89\x80\xa3\x87\xc5\xed\x43\x18\x66\x32\x80\xe5\xb4\x53\x1f\x31\x87\xc4\x7e\xae\xa7\xc3\x29\x72\x8d\xdd\x0e\x40"}, {{0x49,0xaf,0xf4,0x21,0xa7,0xcd,0x12,0x72,0x2a,0xa8,0x4c,0x48,0xc1,0xfb,0x1c,0x5f,0x8d,0x9e,0x27,0x7d,0x0a,0x99,0xec,0xbc,0x93,0x48,0xc3,0xaa,0xa7,0x4b,0xe4,0x22,},{0x88,0xd2,0xc2,0x62,0x66,0xf4,0x93,0xbc,0x67,0x57,0x8c,0xa0,0xb1,0xf5,0x11,0x60,0xcf,0x0f,0xdb,0x6a,0x09,0xa9,0x06,0xdb,0x9f,0xaa,0x68,0x6f,0x11,0xf8,0x20,0x8d,},{0x74,0x91,0x81,0x28,0x4d,0xf0,0x5d,0xbe,0x59,0x74,0xb9,0x17,0x82,0xa1,0xa7,0x6e,0xa0,0x86,0x42,0xcb,0x0f,0x0c,0x98,0xdb,0x58,0x6c,0x57,0x5c,0x21,0x0c,0xdc,0x8b,0x65,0x1b,0xd3,0x4b,0x75,0x7a,0xe3,0x8e,0x4b,0x6b,0xe9,0x46,0x52,0x35,0xbd,0x0e,0xca,0x43,0x0e,0x26,0xc3,0xee,0xde,0x56,0x1c,0x6e,0x82,0x4d,0xfa,0x20,0x0e,0x0a,},"\x70\xa1\xac\x14\x4b\x75\xfd\xa7\x55\x86\xa7\x9c\x36\xfd\x39\xcc\xe5\xf5\xca\xe2\xe6\x37\x58\x52\xd3\xb6\x2a\x96\x30\x33\x6a\x29\x3e\xa6\xd2\xac\x6e\x5b\x57\xda\x21\xef\x36\x4a\x59\x5b\xb0\x75\x0f\x5b\xf4\xd2\xb3\x20\x67\x64\x23\x87\x0e\x4b\x8e\x08\x69\x60\x1f\x16\x68\x06\x19\x04\x8c\x4e\xde\x27\x6d\xa6\x9f\x20\x5a\x70\x17\x6e\x25\xea\x04\xbd\x08\x97\x63\xe7\x09\xba\x34\x3f\xc8\x83\x1e\x52\x04\x4e\xab\xf9\x44\x1e\x69\x97\xf8\xba\x1a\xeb\x9e\xf0\xf4\x91\x17\x06\x67\xa7\xf5\xfc\x96\x27\xcb\xd0\x55\x1b\x76\xbe\x27\x28\x3a\x4b\x0c\x5f\x66\x78\x46\x68\x82\x26\xa1\x15\xee\x80\x20\xdf\x08\x04\x2b\x19\xb5\x9f\xe5\x51\x31\x6a\x6c\xb6\x91\x68\x60\xb9\xec\xd7\x41\x54\xb4\x05\x10\x38\xa1\x73\x52\x37\x2e\xc1\x4d\x3c\x95\x7d\x2e\xf5\x0f\xf7\x86\x18\x9a\x8a\xeb\x9c\x08\xf4\x5e\xeb\x5e\xb8\xb0\x40\x33\x99\x74\xaa\x97\x98\xc4\x25\xd7\xbe\xcb\x22\x8c\x44\x7a\x6d\x0b\x3c\xef\x27\x18\x93\xe0\xf7\x07\x6e\x22\x3a\x7e\x87\xc6\xa3\xd2\x70\xa0\x33\xbc\x97\xa4\x56\x5e\xdc\xe0\xaa\x91\xff\xc3\xf7\x80\x17\x75\xa6\xf2\x9b\x23\x02\x45\xbd\x71\xfa\x03\x43\x53\xde\x37\x23\x95\xd1\xbf\xcb\xde\xbb\xa0\x81\x33\x0f\x7c\x07\x6b\xe9\x9c\x2c\xf4\x86\x7f\x15\xb7\x8d\x52\xf4\x6f\xc7\x39\x1c\x9c\xb9\x5e\x5d\x64\x64\x3b\xaf\xfe\x72\xa8\xe3\xa6\x50\x66\x7f\xbb\x3e"}, {{0x70,0x3a,0x6e,0x2b,0x62,0xd0,0x09,0x0c,0x61,0xd8,0x65,0x9b,0x6a,0x96,0x3e,0x03,0xc9,0xd6,0x2c,0x1b,0x38,0xf7,0xd7,0x0e,0x5f,0x9f,0xf0,0x55,0x90,0xcd,0x03,0x60,},{0x37,0x0c,0x21,0xde,0x6e,0xf2,0xfa,0xb5,0x34,0xad,0xa9,0x99,0x86,0x9c,0x90,0xbc,0x9b,0x92,0xcc,0xbf,0x24,0x9b,0x79,0xd3,0x9d,0x95,0x44,0x1d,0x1e,0xde,0x21,0x0a,},{0xe5,0xfd,0x64,0xda,0x02,0x88,0x00,0xc6,0xce,0xed,0x06,0x8a,0x5e,0x59,0x6f,0x16,0x21,0xc7,0x0a,0x8c,0xb1,0x38,0xb3,0x1b,0x32,0x64,0x7e,0xb4,0xb0,0x7b,0xd2,0xec,0xc5,0x94,0x2c,0x18,0x84,0x4f,0x36,0x70,0x33,0xf6,0x73,0x98,0xe3,0x14,0xba,0x2c,0x7c,0xcf,0x29,0x9c,0x06,0x97,0x87,0x77,0x70,0x25,0xd8,0x45,0xf2,0xaa,0xd6,0x0e,},"\xd4\x2a\x17\x56\xe8\x4d\xf4\xb4\xe9\x77\x3f\x86\xf7\x67\x4a\x2c\xd7\x8e\x71\xe4\x0a\xa8\xf6\x44\xe6\x70\x2d\xfb\xc2\xc2\xc5\xca\x90\xfc\x24\x2e\x9c\xb0\x09\x9c\xc8\xf2\xc2\xd3\x13\x6b\xaa\xfc\x0f\xf6\x95\x48\x2f\xda\xcd\xef\x9f\x56\x56\x10\xb6\xe1\x90\x07\x22\xf4\x35\xc6\x38\x5b\x35\xe9\xf6\xc4\x36\xca\x03\x7e\x03\xf6\x4e\x22\x33\xdf\xfa\x58\xdb\x3b\x91\xcc\x1d\xaa\x0b\xb0\xc5\x4c\x8a\x43\xe4\x69\xd2\xcf\xf7\xfa\x2b\xf8\xf5\xd1\xd8\x77\x93\x10\x89\xc8\x2e\xd8\x9a\xba\x42\xf2\xee\x2b\x86\xe4\x45\xcf\xd0\x9f\x4c\xd7\x8b\x35\x19\x1b\xf4\x67\xe7\x84\xee\xf7\x5d\xc9\x87\xe0\x46\xd3\x7d\x4d\x4e\x8e\x9b\xbe\x14\xaf\x80\xd0\x3a\x1f\x40\x89\x83\x84\xb9\xd3\x27\x9f\xac\x9c\x57\xfd\x9c\x7e\xec\xbe\x19\xa5\xac\xc1\x50\x33\xb8\x4e\x07\xfd\x0e\x40\x9b\xdb\xd5\xa5\x7f\x65\x64\x11\x83\xa6\xc0\xa8\xec\x42\x6d\x1f\x1d\x22\x31\x66\xff\x0a\x19\x00\xb2\xe9\x2b\x7d\x85\x83\x5d\x01\x9d\x17\x77\x5e\x50\x93\xcc\xd1\x26\xf9\x0f\x63\xcb\x7d\x15\xcb\xeb\x53\x13\x24\x21\x9c\xd6\x4d\xed\x67\x14\xb2\x1a\x65\x37\x1a\xf0\x72\x10\xdf\xdf\x0e\x4e\x58\xdd\xc7\xd5\x9f\x4c\xfa\x65\xc4\x21\xd8\x14\xee\x2c\x9b\xf6\xdb\xf6\x48\x73\xd5\x79\xb0\x9e\xe5\xdc\xed\xd7\x33\x06\x3e\x03\x9a\xc9\xa5\xf9\xca\x4c\x25\x25\xa4\xcc\x8e\x98\x4d\xa7\x18\x5e\x2d\x64\xfa\xd8\x1c\x8a"}, {{0x76,0x84,0x9c,0x18,0x8e,0x3e,0xdd,0x0f,0xf5,0xf8,0xfb,0x87,0x4d,0xc0,0x45,0x66,0x45,0x51,0x84,0x45,0xe4,0x1a,0x7d,0x68,0x33,0xe6,0x16,0xc3,0xc4,0x8c,0x98,0x68,},{0xd6,0x70,0xe2,0xea,0x07,0xdb,0x60,0xc2,0x2a,0xb7,0x9a,0x93,0xeb,0xf4,0x9d,0x22,0xa6,0x24,0x5e,0xe3,0xaf,0x07,0xb3,0xbe,0x58,0x4e,0xda,0x69,0x4c,0x37,0x72,0x9e,},{0x71,0x41,0x39,0x9d,0x51,0xda,0xa6,0xeb,0x45,0x19,0xbf,0x3f,0x01,0xb2,0x33,0x92,0x0f,0xa9,0x08,0xfe,0xfa,0x61,0x2f,0x0c,0xd7,0xd5,0xaf,0x8a,0x9a,0x3c,0x44,0x19,0x0e,0x3f,0x63,0x84,0xa8,0xd1,0x4d,0x37,0xc9,0x70,0x30,0xef,0x50,0x18,0xcf,0x8a,0xee,0x8a,0xeb,0x15,0x69,0xa7,0x3d,0x84,0x86,0x2a,0x59,0xb7,0xdf,0x72,0xfe,0x09,},"\x1e\xcc\xb0\xbc\x8e\xca\x3a\xb5\xbe\xe6\x8c\x5f\x8c\xaa\x34\x53\x67\x66\xc7\x05\xf5\x08\x27\xdb\x7a\xc3\x75\xd4\xfe\x30\xb5\x8f\xfb\x7e\x2f\xe4\x90\xcc\x71\xa8\xff\x86\xc0\x06\xd6\x17\x4d\x05\x79\x3a\xb8\xa5\x5d\xd5\x1b\x06\xde\x41\x7b\xc0\xac\x45\x2c\xdc\x7c\xfb\x0b\xb0\x03\x62\xb6\x76\x5d\x20\xdb\x23\xeb\x18\x48\x02\x70\x64\xa1\xd9\x09\x1d\x3b\x10\xed\x77\x6f\x28\xb7\x67\x68\xbd\xfc\x08\xf0\xbc\x51\x1f\x76\xfa\xeb\xa7\x6c\xfc\x4c\xb5\xc8\x3d\xc9\xeb\xe8\xa8\xd7\x9e\xdc\xa9\x23\xec\xcd\x52\x40\x09\xca\xfe\xdc\x90\xe3\xad\x87\xd1\x39\x2e\x1f\xcc\xf4\xe6\x0c\xca\xb9\x5d\xc0\xab\x54\xbf\x44\x24\x5a\x00\x7a\x96\xd4\x66\x34\xb1\xb2\x96\x5b\x82\x9c\x3d\x7d\xaa\x76\x59\x72\xb5\x4a\x7b\x36\x5b\x6f\x34\xd7\x7d\x71\x76\xac\xd8\xd8\x94\xf6\xb4\x17\x09\x1b\x6c\x00\xed\xb7\xa4\xe8\x13\x79\x98\x8b\xfc\xec\xb6\x92\xe9\xc3\xc4\x31\x0a\x7e\x24\x0e\x5c\x10\x63\xcd\xe1\x13\xf2\x2a\x68\x4a\x50\xa1\x12\xff\x47\xd3\x89\x88\x12\xef\xb9\x26\x37\x07\x2b\x86\x16\x3a\xd8\x93\x16\xd2\x21\x19\x5a\xcb\xfa\xd0\xa0\x3a\x1f\xbc\x2d\x96\x7f\xe8\x3f\x84\xc8\x45\x9f\xcc\xd4\x90\xb9\xc5\xb3\xe5\x5d\x27\xe9\x48\x4e\x94\x3c\x41\x7f\x21\x28\xd7\x37\x01\xda\x28\xf4\x9f\xd3\x68\x3f\x33\xa3\x9c\xde\xe2\x34\xbd\x30\x5b\x94\x91\xe2\xf3\xeb\x62\x1b\xe3\xdd\x1d\xbb\xb3\x1b"}, {{0x83,0xae,0x48,0xad,0x70,0xda,0x0b,0xb3,0xcd,0xf8,0x74,0x81,0xee,0x2c,0x0c,0x85,0x71,0xc2,0xca,0x98,0x67,0x12,0xf8,0xbc,0x23,0x29,0xe9,0xa3,0xe3,0x33,0x83,0xc5,},{0xb7,0x85,0x30,0x90,0x00,0xdf,0x95,0xf5,0xa0,0x4f,0x7d,0x89,0xc4,0x11,0x33,0x01,0x05,0x7a,0xda,0xee,0xb2,0x9b,0xcd,0x28,0xd9,0x93,0x71,0xb5,0x37,0xbb,0xa2,0xf6,},{0x43,0x33,0x23,0x51,0xd3,0xfb,0x7b,0x45,0xfc,0xf3,0x7c,0x60,0x7d,0x44,0x2e,0xa8,0x0d,0xbd,0xa2,0xcb,0x69,0xc2,0x88,0x4f,0x42,0x4e,0x65,0xea,0x3a,0x33,0x1e,0xd8,0x47,0x2d,0x43,0x68,0x40,0x5c,0xb7,0x36,0xb2,0xd6,0x68,0x5a,0xd7,0x82,0xe2,0x39,0xfe,0x83,0x3e,0xd7,0x89,0xa2,0x92,0x31,0x85,0x16,0x6f,0x60,0x83,0x42,0xee,0x05,},"\xb7\x52\x1d\x3f\x71\xc6\x79\xfa\x70\x37\xfe\x74\x88\xa6\x41\xf6\xb9\x7c\x49\x45\x4a\xcc\x8e\x36\xb9\x03\xd8\xf9\xeb\xb5\x4d\x89\xcb\x56\xef\xd1\x9e\x04\xba\x6a\x7c\x8f\x48\xa7\xd3\xec\x9d\xec\xd3\xf1\xcd\x0f\xaf\x6e\x97\x81\x18\xe6\xad\xce\x9c\x6c\x6b\xe6\x3c\x6a\x6a\x1a\xe2\x16\x51\x82\x84\x79\xa4\x6b\xc9\xa0\xf7\x94\x30\x40\xf9\x40\xa0\xd4\x70\xc8\xe5\x77\xc5\xd5\x75\xcb\x53\xc1\xbf\x3a\xb1\xfe\xb0\x50\xdc\xb6\xfe\xf0\xba\x44\x47\xf2\x99\xfd\xb9\xf2\x7e\xcb\x07\x14\xec\xfe\xfd\x74\xba\xd7\xb1\x22\xa4\x62\xc2\x4a\x20\x98\x48\xa0\x33\x89\x07\x45\x78\xc5\xbd\xc3\x63\x96\xd8\x09\xb0\xf1\x40\x18\xda\x64\x91\x7e\x6b\xf8\x7e\xf4\x05\xc8\xf3\xe3\x33\xff\x9c\x3b\xaf\x63\x39\x66\x76\x20\x79\x4b\xb4\x74\x3f\x05\x14\xb5\xde\x7d\x7f\xdd\x94\x7a\x7e\x35\x01\xee\x88\xef\xad\x15\x9e\x33\xa1\x07\x2f\xbb\x99\xc7\xc7\x1e\x9d\x13\xa5\x02\xd5\xa0\x7c\x4f\x81\x7e\xeb\x7f\x0c\x53\x19\xaa\x41\xa9\x6d\x5f\xf4\xf1\x5a\x73\xc2\x9b\x57\x1f\xe2\x11\x09\x0e\x17\x2c\x8d\xb5\x18\x62\x46\x12\xa5\xc3\x71\xa9\xd7\xce\xf6\xde\x35\xeb\xef\x96\xe8\x8e\x1a\x78\xaf\x3b\xd5\xdd\x35\x25\x1a\xb5\x4d\x73\x71\x8f\x3e\x70\xd2\xd5\x90\x21\x53\x1d\xc7\x31\x84\xf0\xfc\x69\xc2\xe9\x29\x65\x84\x4e\xc2\x7c\x1c\x02\xaf\x5e\x9a\x34\x69\xde\x35\x5d\xb2\x25\x6e\x0e\xc2\xa4\xeb\xa3\x0a"}, {{0x39,0xe5,0x6a,0x65,0x62,0x3a,0x0a,0xeb,0xad,0xe0,0xda,0x12,0xce,0x1d,0xf3,0x78,0xbc,0x92,0x40,0x73,0xf7,0x3a,0x54,0x9e,0xff,0xae,0xbc,0x46,0x5d,0x1a,0x78,0xe2,},{0x83,0xda,0x8a,0xd5,0x0b,0xad,0x09,0xeb,0x3e,0x94,0xc7,0x25,0xdf,0x3c,0xc3,0xa1,0x19,0x73,0x6a,0xdc,0x85,0x9c,0xa1,0xa1,0x05,0x03,0xf4,0x8f,0xf2,0xfe,0xc5,0x96,},{0x39,0x8e,0x82,0x60,0x01,0x1f,0x57,0xd8,0xac,0x8c,0x58,0xd5,0x45,0x7b,0xc6,0x52,0xc7,0x41,0x4a,0xaf,0x6f,0xb2,0xf4,0x26,0xb7,0x89,0x90,0x56,0x60,0x5c,0x0a,0xfc,0x28,0x39,0x24,0x23,0xb2,0xb5,0x71,0xf5,0xe6,0xc3,0xc7,0xf6,0xd6,0x02,0x45,0xe5,0x3e,0xbd,0x03,0xbd,0xc5,0xad,0x3c,0x1a,0xd8,0x73,0x8c,0xb3,0x22,0x14,0xd0,0x0f,},"\xa9\x6d\xc2\xea\x3f\xa1\x35\x14\x92\xa4\x61\x9d\x91\x94\x68\x1f\x8e\xc4\x00\xa9\x71\x58\x24\x44\x82\x65\x38\x38\xcc\xb7\xe1\x56\xa8\x2d\x56\x43\x68\xf8\x3a\x6e\xe1\xbe\x46\xbc\x34\xb8\x17\x20\x0e\x84\x64\xc3\xd1\x2b\x5e\xf2\xc5\x0b\x19\x56\x5b\x88\x1c\x4c\x3d\x45\x63\xfb\x94\x7e\xb4\x7c\x3e\xe9\xc1\xee\x78\x53\x26\x98\x74\x45\x5b\xfa\xcb\xa3\x05\xf3\x07\xd1\xac\x53\x09\xee\xae\x5c\x07\xfa\x5c\x4d\x42\x8e\xdb\xc8\xb9\x52\x8c\x44\x15\x24\x3a\x9e\xf5\x80\xaf\xf8\xfc\xfb\x12\x00\x0a\x71\xfc\xee\xe8\x9d\xe9\x7f\x90\x27\x95\x29\xbc\xc8\x22\xed\x3c\xb3\x4c\x82\xba\x5f\xec\x15\xf4\x94\x56\x63\x63\x6d\x67\xb5\xfe\xce\xac\xc3\x1d\x25\xf9\x8a\xea\x07\xf7\x80\x0d\x5a\x10\x34\x25\x1c\xb9\x1d\xd0\x96\x3e\xc2\xc1\xa5\x47\x73\xa4\xd9\x6c\x18\x35\x7f\x8d\x10\x1d\xe5\x8e\x93\x2f\x8c\x6c\xdd\xe8\xe3\xcf\xce\xf5\xa7\x44\x3f\xdb\xa7\xb7\x83\x20\x40\x3c\x01\x96\x84\x47\x24\xa6\x12\x18\x3e\x34\xbd\xd8\x08\xce\x7b\x95\x88\x61\xca\x37\x11\x57\x30\xea\xed\xe1\xfd\x0b\xaa\xbe\x97\x6e\xfe\xfd\x03\x65\xfd\xf9\x26\x77\x6c\x53\x6f\x47\xff\x80\xde\x5c\x18\x29\x1b\xb7\xe9\xf1\xb9\x13\xff\xd1\xd9\x44\x68\xb7\x89\x75\x2f\xae\x6c\xa8\x97\xc0\xcc\xa5\x3e\xf1\xe7\x31\xd0\x0c\x8b\xdb\xe8\x92\x9e\xa6\xb1\xdc\xe1\xf3\x1a\x20\x68\x8d\x37\xb0\xf3\xa2\xb4\x15\x3b\x30\x6b\xdb\xa1"}, {{0x4b,0x99,0x21,0x85,0x2f,0x40,0x9a,0x32,0x3a,0xe3,0x81,0x75,0xe8,0xd7,0x6a,0x21,0x1f,0xc4,0xd9,0xc6,0x54,0x17,0x8e,0xea,0x3b,0xaa,0x7a,0x76,0x7a,0x6f,0xda,0x06,},{0x4c,0x72,0x3e,0x43,0x6b,0x6b,0xd9,0x7f,0x44,0xaf,0x52,0x50,0x3b,0x21,0xcc,0x50,0xd5,0xf6,0xad,0x6c,0xfc,0x82,0x88,0x34,0x5d,0xde,0x80,0x54,0xe9,0x95,0x58,0x2e,},{0xcb,0xf1,0xf1,0x64,0x2d,0xf9,0x50,0xeb,0x71,0xfd,0x09,0x59,0x0d,0x34,0xc2,0x65,0x92,0x2c,0x58,0xbd,0x80,0x26,0xbb,0xa3,0xfc,0x0e,0x59,0x4a,0x6b,0xb1,0xf2,0xb9,0x0d,0xa3,0xdc,0x1d,0x5f,0x6b,0x6d,0x5b,0x40,0x5a,0x89,0x6d,0x1d,0xbb,0x71,0xb8,0x68,0x5c,0x4d,0xfc,0x44,0x4a,0xca,0xff,0xe6,0x5a,0xb8,0x33,0x17,0x89,0xf5,0x07,},"\x3f\x33\xd8\xfb\x83\xe6\x87\x41\x09\x0a\x37\xbe\xdd\x74\x5c\xf1\x41\xaa\xae\xd8\xc9\x2f\xfa\x74\x2a\x52\x56\x17\x77\x88\x58\x05\xac\xe1\x42\x46\xab\x98\xa8\xcb\x59\x8c\x9c\xe3\xde\x9b\x29\xba\xe5\xfa\x04\xb1\xcf\x82\x8d\xe1\x1a\xff\x80\xa7\xef\x8a\x3a\x38\xae\xde\x4f\x3c\x35\x63\xa2\x5d\x04\x9b\xad\xca\xd5\xed\x7e\x47\xfd\xbb\xa6\xe1\x11\x30\x7e\xeb\xe9\xef\x49\x06\xbc\x98\x97\x28\xb7\x6e\x84\xaf\xe8\x08\xe6\x65\x3b\x27\x1e\x21\x10\x4a\xa6\x65\xf1\x89\x8d\xd2\xaa\xb2\x30\x90\xe2\x2b\x4e\x34\x4a\x26\x16\xfb\xd8\xee\x4a\xd8\xed\x81\x08\x39\x5e\xba\x81\x7f\xbd\x14\xfe\xc5\xc1\x7d\xcf\x56\xb8\x22\x08\x56\xb2\xb8\x33\xe0\x91\x40\x7d\x50\x89\xb3\x5d\xdf\x34\xb8\x6f\xf7\xdc\x9f\xde\x52\xb2\x1e\xf1\x21\x76\xef\x33\x70\xb7\xf3\xa0\xa8\xcb\x1b\x05\x8a\x51\xae\xff\xf3\xd2\x79\xd8\x0f\x51\xa6\x8b\xfb\x59\x25\x87\xb4\x5c\x5c\x63\xa7\xe4\xd6\x25\xb8\x87\xde\x48\x6a\x11\x83\x16\xc3\xb6\xa2\x38\x57\x5f\x92\xac\x5b\x1c\x94\xc3\xf5\xdb\xbd\x96\x68\x60\x00\xd6\xd3\x9c\xcc\xd5\x58\xd4\x20\xe4\xd4\x47\xa8\xcb\xc4\xbc\x7b\x8c\x6a\x03\xaf\x0f\x00\x34\xfb\x35\x18\xd9\x38\x00\xf0\xf7\x13\xe4\xb1\x37\x32\xe1\x6a\xda\x51\x80\x1d\x7e\x55\x9c\xf8\x39\xd1\x05\x8f\x64\x95\x56\x98\x31\x13\x99\x34\x54\x16\x85\x0d\xdd\xcc\x56\x01\xa6\x84\xfd\x09\xe6\xaf\xd3\x94\x4f\x5e\x19"}, {{0x1b,0xff,0x65,0x2a,0x2c,0x83,0x09,0xa3,0x93,0xac,0x11,0xda,0x3a,0xa9,0x7f,0xb0,0x78,0xbb,0x28,0x4e,0xd5,0xe1,0xb8,0xcc,0xc9,0x83,0x65,0x2e,0xf8,0x55,0x6c,0xd0,},{0xaa,0xab,0xdc,0x09,0x1f,0xc3,0x68,0x23,0x54,0x20,0x17,0x44,0xe9,0xb7,0x3f,0xd2,0xa6,0xcf,0xb2,0x81,0x91,0x4b,0xf2,0xc7,0x0e,0xc3,0xdc,0x1d,0xec,0x72,0x16,0xb0,},{0x93,0xc9,0xc3,0x34,0x93,0xfc,0x64,0x17,0x2d,0x51,0xe1,0x6a,0x0a,0x1c,0xd7,0x29,0xa0,0xd9,0x9e,0x3c,0xb8,0x64,0xe8,0x9a,0x42,0x98,0x7f,0x39,0xdd,0x8c,0xd2,0x65,0x45,0xfd,0xfe,0x37,0x58,0x19,0x11,0xe8,0x03,0x67,0x7d,0xa4,0xc5,0x5b,0x0a,0x68,0x3d,0xdf,0x62,0xb7,0x28,0xf8,0xf3,0x06,0x85,0xae,0x58,0xf6,0x28,0xeb,0xe6,0x09,},"\x48\xd0\x26\x98\xa9\x7b\xdc\xb3\xef\x07\x8d\xcf\xcf\x57\x50\x00\x5f\x17\x02\xd3\x00\xe7\xe8\x9b\xc4\x36\xe3\x81\x11\x34\x01\xf8\x52\xb8\xb4\xac\xff\x60\xff\xbd\x4a\xb4\x6d\x20\x21\x68\xd9\x8b\x87\x35\xe7\x9c\xb3\x50\xe3\x5b\x07\x0f\xf6\xbd\xca\xfd\x95\x4b\x55\x19\x69\xb6\xb1\xa7\x0c\x91\x31\xeb\xd4\x0d\x96\x14\x02\x91\xd8\xd2\xb0\x91\x54\x0a\x8b\x18\xd8\xe5\x46\x59\x15\xc2\x5d\xbc\x6b\x5c\x9a\x68\x79\x42\x53\x3c\x37\x2c\x8b\x4e\x95\xa9\x53\x67\x71\x69\xb9\x50\xed\xd3\x46\x43\x75\xcd\x43\x13\x2f\xf9\xbd\x54\x1e\xe2\x2b\xd4\x18\xce\x23\x19\x5f\x65\xd8\xb2\x89\xf6\x33\xec\x8d\x71\xe1\xa8\x01\xb0\x6c\x3c\x82\x7f\x62\x7e\x72\x3d\x21\x99\x10\x0c\xe7\x3e\x8e\x4a\x44\x40\xe7\x78\x31\x7a\x47\x49\x10\x79\x3b\x47\xb1\x0f\xfb\x55\xdb\x7f\x28\x1c\x7d\x7a\x03\x3b\xd8\x00\x48\xb8\x26\x73\xb8\x7c\xf9\x5e\x99\x42\x2b\xa6\x28\x68\x8f\x3c\x97\x18\x90\xca\x15\xd1\x2f\x57\x2f\xa1\x97\x7a\x17\x30\x70\x69\xda\x30\x4e\xad\x30\x26\xeb\x01\x04\x26\x68\x89\x0d\x17\x00\x8c\xd1\xe9\x2c\x46\xcb\xe9\xc8\x57\xe7\x19\x3d\xe3\xab\xa3\x91\x1e\x4f\x86\xfe\x0a\x16\x98\xab\x7c\xdb\x92\x51\xa8\x42\x4b\x28\x48\xb9\x6a\xd8\x1e\xa2\x39\xd3\x65\xfd\xea\x92\xea\x5c\x04\x73\xd0\xa6\xbb\x1e\x37\x13\x56\xbd\xfa\xd2\xd0\x35\x03\x36\xd3\xe1\x94\x7c\x93\x6f\xd0\xc2\x51\x95\x44\x50\x11\x73\x1b"}, {{0x00,0x2f,0xdd,0x1f,0x76,0x41,0x79,0x3a,0xb0,0x64,0xbb,0x7a,0xa8,0x48,0xf7,0x62,0xe7,0xec,0x6e,0x33,0x2f,0xfc,0x26,0xee,0xac,0xda,0x14,0x1a,0xe3,0x3b,0x17,0x83,},{0x77,0xd1,0xd8,0xeb,0xac,0xd1,0x3f,0x4e,0x2f,0x8a,0x40,0xe2,0x8c,0x4a,0x63,0xbc,0x9c,0xe3,0xbf,0xb6,0x97,0x16,0x33,0x4b,0xcb,0x28,0xa3,0x3e,0xb1,0x34,0x08,0x6c,},{0x0d,0xf3,0xaa,0x0d,0x09,0x99,0xad,0x3d,0xc5,0x80,0x37,0x8f,0x52,0xd1,0x52,0x70,0x0d,0x5b,0x3b,0x05,0x7f,0x56,0xa6,0x6f,0x92,0x11,0x2e,0x44,0x1e,0x1c,0xb9,0x12,0x3c,0x66,0xf1,0x87,0x12,0xc8,0x7e,0xfe,0x22,0xd2,0x57,0x37,0x77,0x29,0x62,0x41,0x21,0x69,0x04,0xd7,0xcd,0xd7,0xd5,0xea,0x43,0x39,0x28,0xbd,0x28,0x72,0xfa,0x0c,},"\x5a\xc1\xdf\xc3\x24\xf4\x3e\x6c\xb7\x9a\x87\xab\x04\x70\xfa\x85\x7b\x51\xfb\x94\x49\x82\xe1\x90\x74\xca\x44\xb1\xe4\x00\x82\xc1\xd0\x7b\x92\xef\xa7\xea\x55\xad\x42\xb7\xc0\x27\xe0\xb9\xe3\x37\x56\xd9\x5a\x2c\x17\x96\xa7\xc2\x06\x68\x11\xdc\x41\x85\x83\x77\xd4\xb8\x35\xc1\x68\x8d\x63\x88\x84\xcd\x2a\xd8\x97\x0b\x74\xc1\xa5\x4a\xad\xd2\x70\x64\x16\x39\x28\xa7\x79\x88\xb2\x44\x03\xaa\x85\xaf\x82\xce\xab\x6b\x72\x8e\x55\x47\x61\xaf\x71\x75\xae\xb9\x92\x15\xb7\x42\x1e\x44\x74\xc0\x4d\x21\x3e\x01\xff\x03\xe3\x52\x9b\x11\x07\x7c\xdf\x28\x96\x4b\x8c\x49\xc5\x64\x9e\x3a\x46\xfa\x0a\x09\xdc\xd5\x9d\xca\xd5\x8b\x9b\x92\x2a\x83\x21\x0a\xcd\x5e\x65\x06\x55\x31\x40\x02\x34\xf5\xe4\x0c\xdd\xcf\x98\x04\x96\x8e\x3e\x9a\xc6\xf5\xc4\x4a\xf6\x50\x01\xe1\x58\x06\x7f\xc3\xa6\x60\x50\x2d\x13\xfa\x88\x74\xfa\x93\x33\x21\x38\xd9\x60\x6b\xc4\x1b\x4c\xee\x7e\xdc\x39\xd7\x53\xda\xe1\x2a\x87\x39\x41\xbb\x35\x7f\x7e\x92\xa4\x49\x88\x47\xd6\x60\x54\x56\xcb\x8c\x0b\x42\x5a\x47\xd7\xd3\xca\x37\xe5\x4e\x90\x3a\x41\xe6\x45\x0a\x35\xeb\xe5\x23\x7c\x6f\x0c\x1b\xbb\xc1\xfd\x71\xfb\x7c\xd8\x93\xd1\x89\x85\x02\x95\xc1\x99\xb7\xd8\x8a\xf2\x6b\xc8\x54\x89\x75\xfd\xa1\x09\x9f\xfe\xfe\xe4\x2a\x52\xf3\x42\x8d\xdf\xf3\x5e\x01\x73\xd3\x33\x95\x62\x50\x7a\xc5\xd2\xc4\x5b\xbd\x2c\x19\xcf\xe8\x9b"}, {{0x25,0xb0,0xf0,0xbb,0x3d,0xcb,0x42,0x2a,0x6f,0x3c,0x6c,0x22,0x0e,0xaa,0xdb,0x11,0xdb,0xfe,0x48,0x9c,0x2d,0x45,0x5b,0x27,0x6c,0xef,0xe8,0xcb,0xa0,0x57,0xf9,0xf3,},{0xfe,0x03,0xc9,0xc4,0x39,0x4a,0xdc,0x74,0xb1,0x3f,0x47,0x65,0x4b,0xea,0xd8,0xbc,0x85,0x59,0x58,0xb4,0x19,0x4f,0xda,0xb2,0x09,0x7a,0xc1,0xb1,0x57,0x93,0x3c,0x05,},{0xda,0x50,0xd5,0x24,0x2b,0xf5,0x1c,0x39,0x51,0x78,0x0c,0xaf,0xd9,0x26,0xd6,0x7b,0xdf,0x56,0x40,0xd5,0xd3,0xbb,0x08,0x43,0x38,0x31,0xd5,0x6e,0x48,0xe2,0x59,0x2a,0x1c,0x37,0x59,0x68,0xbb,0x4d,0x2f,0xbe,0xa5,0x61,0x45,0xab,0xf2,0xd8,0x29,0x91,0x36,0x3b,0x15,0x65,0xfa,0x1e,0xff,0xe2,0x14,0x01,0x1a,0x68,0x6e,0x39,0x95,0x0e,},"\x54\xd9\x9f\x96\x9e\xfa\x88\x70\xfc\x20\xfa\x9a\x96\x2b\xb3\x72\x61\x9c\x32\x44\x39\x72\x8a\xf3\x13\x9c\x2a\x07\xe8\xc1\xb2\x9c\x1e\x4e\xed\xc2\xd4\x0b\xa7\x22\xf6\x3c\xe3\x76\x70\x36\x2a\xf6\xf5\x20\x2a\xdd\x66\x8c\x4f\xb4\xd6\x2f\xa8\xba\xcb\xc7\xd0\x7f\xf3\xbd\x38\xc1\x5a\x01\x06\x42\x59\xcc\x34\x13\x48\x61\x63\x29\x67\x46\x05\x41\xa9\x9b\x8d\x51\x82\xbf\x59\x34\x7b\x5a\x59\x87\x9a\xa3\xb0\x91\xa1\xf3\xe0\x41\x35\xbd\x63\x01\xbe\x52\x26\xd4\x89\x5e\x5e\x9c\x2b\x15\xe4\x8e\x5e\xcd\xf4\x41\x29\xe6\x12\x28\x53\xa6\x06\xfc\x11\x84\x66\xfa\x72\x0b\x5a\xb1\x65\x63\x5c\x3b\xde\x04\xd7\x42\x89\x27\x4f\xa0\x35\x47\xac\xcb\xde\x78\x0e\x1f\xa0\xbf\x2c\x56\xf8\x43\x6a\x53\xe7\x38\x78\xa4\x24\xa2\x9a\xa9\xde\x38\x5d\xba\x41\x9a\xe6\xa5\xd1\x2e\x00\x42\x76\x15\x2b\x58\xd3\x25\xb3\x02\x40\x0a\x55\x33\x3c\x38\xcd\xe4\x90\x8a\xe1\xd0\x12\x1c\xbe\xca\x95\x08\x09\xc5\x43\x31\x42\x77\xc1\x48\x5e\x68\xd9\xf9\xc0\xa9\x62\xd1\xb1\xe0\xdd\xa1\xd4\xa5\x2b\x56\xf8\x30\x8a\x80\xb9\x2a\xcc\x9f\x4e\xbc\x3e\xd4\x5d\x91\xa1\x29\xda\x86\x75\x62\x1a\xf6\x76\x70\x3d\xef\x3b\x84\x11\x31\x83\xb2\xe3\xa8\xc5\x61\x57\xf2\x43\xf1\x39\x80\xf3\xd1\x75\x6f\xea\x76\x68\xc9\x15\x03\xd3\x5c\x83\x9a\x21\x20\xc7\x9e\xc9\x54\xfb\x54\x6d\x7b\x54\x2f\x98\x72\x89\x53\x4f\xfd\xef\x62\xd4\x7f\xd5\xec"}, {{0xbf,0x5b,0xa5,0xd6,0xa4,0x9d,0xd5,0xef,0x7b,0x4d,0x5d,0x7d,0x3e,0x4e,0xcc,0x50,0x5c,0x01,0xf6,0xcc,0xee,0x4c,0x54,0xb5,0xef,0x7b,0x40,0xaf,0x6a,0x45,0x41,0x40,},{0x1b,0xe0,0x34,0xf8,0x13,0x01,0x7b,0x90,0x0d,0x89,0x90,0xaf,0x45,0xfa,0xd5,0xb5,0x21,0x4b,0x57,0x3b,0xd3,0x03,0xef,0x7a,0x75,0xef,0x4b,0x8c,0x5c,0x5b,0x98,0x42,},{0x27,0x9c,0xac,0xe6,0xfd,0xaf,0x39,0x45,0xe3,0x83,0x7d,0xf4,0x74,0xb2,0x86,0x46,0x14,0x37,0x47,0x63,0x2b,0xed,0xe9,0x3e,0x7a,0x66,0xf5,0xca,0x29,0x1d,0x2c,0x24,0x97,0x85,0x12,0xca,0x0c,0xb8,0x82,0x7c,0x8c,0x32,0x26,0x85,0xbd,0x60,0x55,0x03,0xa5,0xec,0x94,0xdb,0xae,0x61,0xbb,0xdc,0xae,0x1e,0x49,0x65,0x06,0x02,0xbc,0x07,},"\x16\x15\x2c\x2e\x03\x7b\x1c\x0d\x32\x19\xce\xd8\xe0\x67\x4a\xee\x6b\x57\x83\x4b\x55\x10\x6c\x53\x44\x62\x53\x22\xda\x63\x8e\xce\xa2\xfc\x9a\x42\x4a\x05\xee\x95\x12\xd4\x8f\xcf\x75\xdd\x8b\xd4\x69\x1b\x3c\x10\xc2\x8e\xc9\x8e\xe1\xaf\xa5\xb8\x63\xd1\xc3\x67\x95\xed\x18\x10\x5d\xb3\xa9\xaa\xbd\x9d\x2b\x4c\x17\x47\xad\xba\xf1\xa5\x6f\xfc\xc0\xc5\x33\xc1\xc0\xfa\xef\x33\x1c\xdb\x79\xd9\x61\xfa\x39\xf8\x80\xa1\xb8\xb1\x16\x47\x41\x82\x2e\xfb\x15\xa7\x25\x9a\x46\x5b\xef\x21\x28\x55\x75\x1f\xab\x66\xa8\x97\xbf\xa2\x11\xab\xe0\xea\x2f\x2e\x1c\xd8\xa1\x1d\x80\xe1\x42\xcd\xe1\x26\x3e\xec\x26\x7a\x31\x38\xae\x1f\xcf\x40\x99\xdb\x0a\xb5\x3d\x64\xf3\x36\xf4\xbc\xd7\xa3\x63\xf6\xdb\x11\x2c\x0a\x24\x53\x05\x1a\x00\x06\xf8\x13\xaa\xf4\xae\x94\x8a\x20\x90\x61\x93\x74\xfa\x58\x05\x24\x09\xc2\x8e\xf7\x62\x25\x68\x7d\xf3\xcb\x2d\x1b\x0b\xfb\x43\xb0\x9f\x47\xf1\x23\x2f\x79\x0e\x6d\x8d\xea\x75\x9e\x57\x94\x20\x99\xf4\xc4\xbd\x33\x90\xf2\x8a\xfc\x20\x98\x24\x49\x61\x46\x5c\x64\x3f\xc8\xb2\x97\x66\xaf\x2b\xcb\xc5\x44\x0b\x86\xe8\x36\x08\xcf\xc9\x37\xbe\x98\xbb\x48\x27\xfd\x5e\x6b\x68\x9a\xdc\x2e\x26\x51\x3d\xb5\x31\x07\x6a\x65\x64\x39\x62\x55\xa0\x99\x75\xb7\x03\x4d\xac\x06\x46\x1b\x25\x56\x42\xe3\xa7\xed\x75\xfa\x9f\xc2\x65\x01\x1f\x5f\x62\x50\x38\x2a\x84\xac\x26\x8d\x63\xba\x64"}, {{0x65,0xde,0x29,0x7b,0x70,0xcb,0xe8,0x09,0x80,0x50,0x0a,0xf0,0x56,0x1a,0x24,0xdb,0x50,0x00,0x10,0x00,0x12,0x5f,0x44,0x90,0x36,0x6d,0x83,0x00,0xd3,0x12,0x85,0x92,},{0xba,0x8e,0x2a,0xd9,0x29,0xbd,0xce,0xa5,0x38,0x74,0x10,0x42,0xb5,0x7f,0x20,0x67,0xd3,0x15,0x37,0x07,0xa4,0x53,0x77,0x0d,0xb9,0xf3,0xc4,0xca,0x75,0x50,0x4d,0x24,},{0x7a,0x9b,0x73,0x6b,0x01,0xcc,0x92,0xa3,0x34,0x9f,0x1a,0x3c,0x32,0xdb,0xd9,0x19,0x59,0x82,0x53,0x94,0xff,0x44,0x3c,0x56,0x74,0x05,0xe8,0x99,0xc8,0x18,0x5c,0xe8,0xfa,0xd9,0x50,0x0e,0x1f,0xce,0x89,0xd9,0x5a,0x62,0x53,0xc0,0x04,0x77,0x43,0x5a,0xcf,0x04,0xbf,0xf9,0x93,0xde,0x1b,0x00,0x49,0x5d,0xef,0x08,0x34,0xee,0x1f,0x07,},"\x13\x1d\x8f\x4c\x2c\x94\xb1\x53\x56\x5b\x86\x59\x2e\x77\x0c\x98\x7a\x44\x34\x61\xb3\x9a\xa2\x40\x8b\x29\xe2\x13\xab\x05\x7a\xff\xc5\x98\xb5\x83\x73\x9d\x66\x03\xa8\x3f\xef\x0a\xfc\x51\x47\x21\xdb\x0e\x76\xf9\xbd\x1b\x72\xb9\x8c\x56\x5c\xc8\x88\x1a\xf5\x74\x7c\x0b\xa6\xf5\x8c\x53\xdd\x23\x77\xda\x6c\x0d\x3a\xa8\x05\x62\x0c\xc4\xe7\x5d\x52\xaa\xbc\xba\x1f\x9b\x28\x49\xe0\x8b\xd1\xb6\xb9\x2e\x6f\x06\x61\x5b\x81\x45\x19\x60\x6a\x02\xdc\x65\xa8\x60\x9f\x5b\x29\xe9\xc2\xaf\x5a\x89\x4f\x71\x16\xef\x28\xcf\xd1\xe7\xb7\x6b\x64\x06\x17\x32\xf7\xa5\xa3\xf8\xaa\x4c\x2e\x56\x9e\x62\x7a\x3f\x97\x49\xaa\x59\x7b\xe4\x9d\x6b\x94\x43\x6c\x35\x2d\xd5\xfa\x7b\x83\xc9\x2d\x26\x10\xfa\xa3\x20\x95\xca\x30\x21\x52\xd9\x1a\x3c\x97\x76\x75\x0e\x75\x8e\xe8\xe9\xe4\x02\xc6\xf5\x38\x5e\xaa\x5d\xf2\x38\x50\xe5\x4b\xeb\x1b\xe4\x37\xa4\x16\xc7\x11\x5e\xd6\xaa\x6d\xe1\x3b\x55\x48\x25\x32\x78\x7e\x0b\xee\x34\xb8\x3f\x30\x84\x40\x67\x65\x63\x54\x97\xc9\x31\xb6\x2a\x05\x18\xf1\xfb\xc2\xb8\x91\xdc\x72\x62\xc7\xc6\xb6\x7e\xda\x59\x4f\xa5\x30\xd7\x4c\x93\x29\xba\xd5\xbe\x94\xc2\x87\xfb\xcd\xe5\x3a\xa8\x02\x72\xb8\x33\x22\x61\x3d\x93\x68\xe5\x90\x40\x76\xfd\xbc\xc8\x8b\x2c\x0e\x59\xc1\x0b\x02\xc4\x48\xe0\x0d\x1b\x3e\x7a\x9c\x96\x40\xfe\xff\xb9\x52\x3a\x8a\x60\xe1\xd8\x3f\x04\xa4\xb8\xdf\x69\x15\x3b"}, {{0x08,0x26,0xe7,0x33,0x33,0x24,0xe7,0xec,0x8c,0x76,0x42,0x92,0xf6,0x01,0x5d,0x46,0x70,0xe9,0xb8,0xd7,0xc4,0xa8,0x9e,0x8d,0x90,0x9e,0x8e,0xf4,0x35,0xd1,0x8d,0x15,},{0xff,0xb2,0x34,0x8c,0xa8,0xa0,0x18,0x05,0x8b,0xe7,0x1d,0x15,0x12,0xf3,0x76,0xf9,0x1e,0x8b,0x0d,0x55,0x25,0x81,0x25,0x4e,0x10,0x76,0x02,0x21,0x73,0x95,0xe6,0x62,},{0x4b,0xac,0x7f,0xab,0xec,0x87,0x24,0xd8,0x1a,0xb0,0x9a,0xe1,0x30,0x87,0x4d,0x70,0xb5,0x21,0x34,0x92,0x10,0x43,0x72,0xf6,0x01,0xae,0x5a,0xbb,0x10,0x53,0x27,0x99,0x37,0x3c,0x4d,0xad,0x21,0x58,0x76,0x44,0x1f,0x47,0x4e,0x2c,0x00,0x6b,0xe3,0x7c,0x3c,0x8f,0x5f,0x6f,0x01,0x7d,0x08,0x70,0x41,0x4f,0xd2,0x76,0xa8,0xf4,0x28,0x08,},"\x7f\x9e\x3e\x2f\x03\xc9\xdf\x3d\x21\xb9\x90\xf5\xa4\xaf\x82\x95\x73\x4a\xfe\x78\x3a\xcc\xc3\x4f\xb1\xe9\xb8\xe9\x5a\x0f\xd8\x37\xaf\x7e\x05\xc1\x3c\xda\x0d\xe8\xfa\xda\xc9\x20\x52\x65\xa0\x79\x2b\x52\x56\x3b\xdc\x2f\xee\x76\x63\x48\xbe\xfc\xc5\x6b\x88\xbb\xb9\x5f\x15\x44\x14\xfb\x18\x6e\xc4\x36\xaa\x62\xea\x6f\xca\xbb\x11\xc0\x17\xa9\xd2\xd1\x5f\x67\xe5\x95\x98\x0e\x04\xc9\x31\x3b\xc9\x4f\xbc\x8c\x11\x34\xc2\xf4\x03\x32\xbc\x7e\x31\x1a\xc1\xce\x11\xb5\x05\xf8\x57\x2a\xda\x7f\xbe\x19\x6f\xba\x82\x2d\x9a\x91\x44\x92\xfa\x71\x85\xe9\xf3\xbe\xa4\x68\x72\x00\xa5\x24\xc6\x73\xa1\xcd\xf8\x7e\xb3\xa1\x40\xdc\xdb\x6a\x88\x75\x61\x34\x88\xa2\xb0\x0a\xdf\x71\x75\x34\x1c\x1c\x25\x76\x35\xfa\x1a\x53\xa3\xe2\x1d\x60\xc2\x28\x39\x9e\xea\x09\x91\xf1\x12\xc6\x0f\x65\x3d\x71\x48\xe2\xc5\xce\xb9\x8f\x94\x08\x31\xf0\x70\xdb\x10\x84\xd7\x91\x56\xcc\x82\xc4\x6b\xc9\xb8\xe8\x84\xf3\xfa\x81\xbe\x2d\xa4\xcd\xda\x46\xbc\xaa\x24\xcc\x46\x1f\x76\xee\x64\x7b\xb0\xf0\xf8\xc1\x5a\xc5\xda\xa7\x95\xb9\x45\xe6\xf8\x5b\xb3\x10\x36\x2e\x48\xd8\x09\x5c\x78\x2c\x61\xc5\x2b\x48\x1b\x4b\x00\x2a\xd0\x6e\xa7\x4b\x8d\x30\x6e\xff\x71\xab\xf2\x1d\xb7\x10\xa8\x91\x3c\xbe\x48\x33\x2b\xe0\xa0\xb3\xf3\x1e\x0c\x7a\x6e\xba\x85\xce\x33\xf3\x57\xc7\xae\xcc\xd3\x0b\xfb\x1a\x65\x74\x40\x8b\x66\xfe\x40\x4d\x31\xc3\xc5"}, {{0x00,0xad,0x62,0x27,0x97,0x7b,0x5f,0x38,0xcc,0xda,0x99,0x4d,0x92,0x8b,0xba,0x90,0x86,0xd2,0xda,0xeb,0x01,0x3f,0x86,0x90,0xdb,0x98,0x66,0x48,0xb9,0x0c,0x1d,0x45,},{0x91,0xa4,0xea,0x00,0x57,0x52,0xb9,0x2c,0xbe,0xbf,0x99,0xa8,0xa5,0xcb,0xec,0xd2,0x40,0xae,0x3f,0x01,0x6c,0x44,0xad,0x14,0x1b,0x2e,0x57,0xdd,0xc7,0x73,0xdc,0x8e,},{0xdc,0x50,0x1d,0xb7,0x9f,0xd7,0x82,0xbc,0x88,0xca,0xe7,0x92,0x55,0x7d,0x5d,0x27,0x3f,0x9b,0xa5,0x60,0xc7,0xd9,0x00,0x37,0xfe,0x84,0xac,0x87,0x9d,0x68,0x4f,0x61,0x2a,0x77,0x45,0x2c,0x44,0x43,0xe9,0x5c,0x07,0xb8,0xbe,0x19,0x2c,0x35,0x76,0x9b,0x17,0xbb,0xdf,0xca,0x42,0x28,0x0d,0xe7,0x96,0xd9,0x21,0x19,0xd8,0x33,0x67,0x0d,},"\xcb\x5b\xc5\xb9\x8b\x2e\xfc\xe4\x35\x43\xe9\x1d\xf0\x41\xe0\xdb\xb5\x3e\xd8\xf6\x7b\xf0\xf1\x97\xc5\x2b\x22\x11\xe7\xa4\x5e\x2e\x1e\xc8\x18\xc1\xa8\x0e\x10\xab\xf6\xa4\x35\x35\xf5\xb7\x9d\x97\x4d\x8a\xe2\x8a\x22\x95\xc0\xa6\x52\x17\x63\xb6\x07\xd5\x10\x3c\x6a\xef\x3b\x27\x86\xbd\x5a\xfd\x75\x63\x69\x56\x60\x68\x43\x37\xbc\x30\x90\x73\x9f\xb1\xcd\x53\xa9\xd6\x44\x13\x9b\x6d\x4c\xae\xc7\x5b\xda\x7f\x25\x21\xfb\xfe\x67\x6a\xb4\x5b\x98\xcb\x31\x7a\xa7\xca\x79\xfc\x54\xa3\xd7\xc5\x78\x46\x6a\x6a\xa6\x4e\x43\x4e\x92\x34\x65\xa7\xf2\x11\xaa\x0c\x61\x68\x1b\xb8\x48\x6e\x90\x20\x6a\x25\x25\x0d\x3f\xda\xe6\xfb\x03\x29\x97\x21\xe9\x9e\x2a\x91\x49\x10\xd9\x17\x60\x08\x9b\x5d\x28\x1e\x13\x1e\x6c\x83\x6b\xc2\xde\x08\xf7\xe0\x2c\x48\xd3\x23\xc6\x47\xe9\x53\x6c\x00\xec\x10\x39\x20\x1c\x03\x62\x61\x8c\x7d\x47\xaa\x8e\x7b\x97\x15\xff\xc4\x39\x98\x7a\xe1\xd3\x11\x54\xa6\x19\x8c\x5a\xa1\x1c\x12\x8f\x40\x82\xf5\x56\xc9\x9b\xaf\x10\x3e\xca\xdc\x3b\x2f\x3b\x2e\xc5\xb4\x69\x62\x3b\xc0\x3a\x53\xca\xf3\x81\x4b\x16\x30\x0a\xed\xbd\xa5\x38\xd6\x76\xd1\xf6\x07\x10\x26\x39\xdb\x2a\x62\xc4\x46\x70\x7c\xe6\x46\x9b\xd8\x73\xa0\x46\x82\x25\xbe\x88\xb0\xae\xf5\xd4\x02\x04\x59\xb9\x4b\x32\xfe\x2b\x01\x33\xe9\x2e\x7b\xa5\x4d\xd2\xa5\x39\x7e\xd8\x5f\x96\x6a\xb3\x9e\xd0\x73\x0c\xca\x8e\x7d\xac\xb8\xa3\x36"}, {{0x15,0x21,0xc6,0xdb,0xd6,0xf7,0x24,0xde,0x73,0xea,0xf7,0xb5,0x62,0x64,0xf0,0x10,0x35,0xc0,0x4e,0x01,0xc1,0xf3,0xeb,0x3c,0xbe,0x83,0xef,0xd2,0x6c,0x43,0x9a,0xda,},{0x2f,0x61,0xa2,0x6f,0xfb,0x68,0xba,0x4f,0x6e,0x14,0x15,0x29,0xdc,0x26,0x17,0xe8,0x53,0x1c,0x71,0x51,0x40,0x48,0x08,0x09,0x3b,0x4f,0xa7,0xfe,0xda,0xea,0x25,0x5d,},{0xa8,0x17,0xed,0x23,0xec,0x39,0x8a,0x12,0x86,0x01,0xc1,0x83,0x2d,0xc6,0xaf,0x76,0x43,0xbf,0x3a,0x5f,0x51,0x7b,0xcc,0x57,0x94,0x50,0xfd,0xb4,0x75,0x90,0x28,0xf4,0x96,0x61,0x64,0x12,0x5f,0x6e,0xbd,0x0d,0x6b,0xf8,0x6f,0xf2,0x98,0xa3,0x9c,0x76,0x6d,0x0c,0x21,0xfd,0xb0,0xcb,0xfd,0xf8,0x1c,0xd0,0xeb,0x1f,0x03,0xcd,0x8a,0x08,},"\x3e\x3c\x7c\x49\x07\x88\xe4\xb1\xd4\x2f\x5c\xbc\xae\x3a\x99\x30\xbf\x61\x7e\xbd\xff\x44\x7f\x7b\xe2\xac\x2b\xa7\xcd\x5b\xcf\xc0\x15\x76\x09\x63\xe6\xfe\x5b\x95\x6f\xb7\xcd\xb3\x5b\xd5\xa1\x7f\x54\x29\xca\x66\x4f\x43\x7f\x08\x75\x3a\x74\x1c\x2b\xc8\x69\x2b\x71\xa9\x11\x5c\x58\x2a\x25\xb2\xf7\x4d\x32\x98\x54\xd6\x0b\x78\x17\xc0\x79\xb3\x52\x3a\xaf\xf8\x79\x3c\x2f\x72\xff\xf8\xcd\x10\x59\x2c\x54\xe7\x38\xdf\x1d\x64\x52\xfb\x72\xda\x13\x1c\x67\x31\xea\x5c\x95\x3c\x62\xea\x17\x7a\xc1\xf4\x73\x5e\x51\x54\x47\x73\x87\x10\x9a\xfa\xe1\x5f\x3e\xd6\xee\xb0\x86\x06\xe2\x8c\x81\xd4\x38\x6f\x03\xb9\x37\x69\x24\xb6\xef\x8d\x22\x1e\xe2\x95\x47\xf8\x2a\x7e\xde\x48\xe1\xdc\x17\x72\x3e\x3d\x42\x17\x1e\xea\xf9\x6a\xc8\x4b\xed\xc2\xa0\x1d\xd8\x6f\x4d\x08\x57\x34\xfd\x69\xf9\x1b\x52\x63\xe4\x39\x08\x3f\xf0\x31\x85\x36\xad\xff\x41\x47\x30\x8e\x3a\xaf\xd1\xb5\x8b\xb7\x4f\x6f\xb0\x21\x4a\x46\xfd\xcd\x35\x24\xf1\x8d\xf5\xa7\x19\xce\x57\x31\x9e\x79\x1b\x4e\xa6\x06\xb4\x99\xbf\xa5\x7a\x60\xe7\x07\xf9\x4e\x18\xf1\xfe\xd2\x2f\x91\xbc\x79\xe6\x36\x4a\x84\x3f\x9c\xbf\x93\x82\x5c\x46\x5e\x9c\xae\x90\x72\xbc\x9d\x3e\xc4\x47\x1f\x21\xab\x2f\x7e\x99\xa6\x33\xf5\x87\xaa\xc3\xdb\x78\xae\x96\x66\xa8\x9a\x18\x00\x8d\xd6\x1d\x60\x21\x85\x54\x41\x1a\x65\x74\x0f\xfd\x1a\xe3\xad\xc0\x65\x95\xe3\xb7\x87\x64\x07\xb6"}, {{0x17,0xe5,0xf0,0xa8,0xf3,0x47,0x51,0xba,0xbc,0x5c,0x72,0x3e,0xcf,0x33,0x93,0x06,0x99,0x2f,0x39,0xea,0x06,0x5a,0xc1,0x40,0xfc,0xbc,0x39,0x7d,0x2d,0xd3,0x2c,0x4b,},{0x4f,0x1e,0x23,0xcc,0x0f,0x2f,0x69,0xc8,0x8e,0xf9,0x16,0x2a,0xb5,0xf8,0xc5,0x9f,0xb3,0xb8,0xab,0x20,0x96,0xb7,0x7e,0x78,0x2c,0x63,0xc0,0x7c,0x8c,0x4f,0x2b,0x60,},{0xef,0xe2,0xcb,0x63,0xfe,0x7b,0x4f,0xc9,0x89,0x46,0xdc,0x82,0xfb,0x69,0x98,0xe7,0x41,0xed,0x9c,0xe6,0xb9,0xc1,0xa9,0x3b,0xb4,0x5b,0xc0,0xa7,0xd8,0x39,0x6d,0x74,0x05,0x28,0x2b,0x43,0xfe,0x36,0x3b,0xa5,0xb2,0x35,0x89,0xf8,0xe1,0xfa,0xe1,0x30,0xe1,0x57,0xce,0x88,0x8c,0xd7,0x2d,0x05,0x3d,0x0c,0xc1,0x9d,0x25,0x7a,0x43,0x00,},"\xc0\xfa\xd7\x90\x02\x40\x19\xbd\x6f\xc0\x8a\x7a\x92\xf5\xf2\xac\x35\xcf\x64\x32\xe2\xea\xa5\x3d\x48\x2f\x6e\x12\x04\x93\x53\x36\xcb\x3a\xe6\x5a\x63\xc2\x4d\x0e\xc6\x53\x9a\x10\xee\x18\x76\x0f\x2f\x52\x05\x37\x77\x4c\xde\xc6\xe9\x6b\x55\x53\x60\x11\xda\xa8\xf8\xbc\xb9\xcd\xaf\x6d\xf5\xb3\x46\x48\x44\x8a\xc7\xd7\xcb\x7c\x6b\xd8\x0d\x67\xfb\xf3\x30\xf8\x76\x52\x97\x76\x60\x46\xa9\x25\xab\x52\x41\x1d\x16\x04\xc3\xed\x6a\x85\x17\x30\x40\x12\x56\x58\xa3\x2c\xf4\xc8\x54\xef\x28\x13\xdf\x2b\xe6\xf3\x83\x0e\x5e\xee\x5a\x61\x63\xa8\x3c\xa8\x84\x9f\x61\x29\x91\xa3\x1e\x9f\x88\x02\x8e\x50\xbf\x85\x35\xe1\x17\x55\xfa\xd0\x29\xd9\x4c\xf2\x59\x59\xf6\x69\x5d\x09\xc1\xba\x43\x15\xd4\x0f\x7c\xf5\x1b\x3f\x81\x66\xd0\x2f\xab\xa7\x51\x1e\xcd\x8b\x1d\xde\xd5\xf1\x0c\xd6\x84\x34\x55\xcf\xf7\x07\xed\x22\x53\x96\xc6\x1d\x08\x20\xd2\x0a\xda\x70\xd0\xc3\x61\x9f\xf6\x79\x42\x20\x61\xc9\xf7\xc7\x6e\x97\xd5\xa3\x7a\xf6\x1f\xd6\x22\x12\xd2\xda\xfc\x64\x7e\xbb\xb9\x79\xe6\x1d\x90\x70\xec\x03\x60\x9a\x07\xf5\xfc\x57\xd1\x19\xae\x64\xb7\xa6\xef\x92\xa5\xaf\xae\x66\x0a\x30\xed\x48\xd7\x02\xcc\x31\x28\xc6\x33\xb4\xf1\x90\x60\xa0\x57\x81\x01\x72\x9e\xe9\x79\xf7\x90\xf4\x5b\xdb\xb5\xfe\x1a\x8a\x62\xf0\x1a\x61\xa3\x1d\x61\xaf\x07\x03\x04\x50\xfa\x04\x17\x32\x3e\x94\x07\xbc\x76\xe7\x31\x30\xe7\xc6\x9d\x62\xe6\xa7"}, {{0x0c,0xd7,0xaa,0x7d,0x60,0x5e,0x44,0xd5,0xff,0xb9,0x79,0x66,0xb2,0xcb,0x93,0xc1,0x89,0xe4,0xc5,0xa8,0x5d,0xb8,0x7f,0xad,0x7a,0xb8,0xd6,0x24,0x63,0xc5,0x9b,0x59,},{0x48,0x89,0x85,0x5f,0xe4,0x11,0x6b,0x49,0x13,0x92,0x7f,0x47,0xf2,0x27,0x3b,0xf5,0x59,0xc3,0xb3,0x94,0xa9,0x83,0x63,0x1a,0x25,0xae,0x59,0x70,0x33,0x18,0x5e,0x46,},{0xbf,0x91,0x15,0xfd,0x3d,0x02,0x70,0x6e,0x39,0x8d,0x4b,0xf3,0xb0,0x2a,0x82,0x67,0x4f,0xf3,0x04,0x15,0x08,0xfd,0x39,0xd2,0x9f,0x86,0x7e,0x50,0x16,0x34,0xb9,0x26,0x1f,0x51,0x6a,0x79,0x4f,0x98,0x73,0x8d,0x7c,0x70,0x13,0xa3,0xf2,0xf8,0x58,0xff,0xdd,0x08,0x04,0x7f,0xb6,0xbf,0x3d,0xdd,0xfb,0x4b,0x4f,0x4c,0xbe,0xef,0x30,0x03,},"\x28\xa5\x5d\xda\x6c\xd0\x84\x4b\x65\x77\xc9\xd6\xda\x07\x3a\x4d\xc3\x5c\xbc\x98\xac\x15\x8a\xb5\x4c\xf8\x8f\xd2\x0c\xc8\x7e\x83\xc4\xbb\xa2\xd7\x4d\x82\xce\x0f\x48\x54\xec\x4d\xb5\x13\xde\x40\x04\x65\xaa\xa5\xee\xe7\x90\xbc\x84\xf1\x63\x37\x07\x2d\x3a\x91\xcd\xe4\x0d\x6e\x0d\xf1\xba\x0c\xc0\x64\x5f\x5d\x5c\xbb\xb6\x42\x38\x1d\x7b\x9e\x21\x1d\x25\x26\x7a\x8a\xcf\x77\xd1\xed\xb6\x9c\x3a\x63\x0f\x5b\x13\x3d\x24\xf0\x46\xa8\x1b\xf2\x2f\xf0\x3b\x31\xd8\x44\x7e\x12\xc3\xf7\xb7\x71\x14\xa7\x0c\xbd\x20\xbb\xd0\x8b\x0b\x38\x27\xa6\xbb\xcf\x90\x40\x9e\x34\x44\x47\xa7\xfb\xc5\x9b\xdd\x97\xd7\x29\x07\x1f\x8d\x71\xdc\xc3\x3e\x6e\xf2\xcb\xab\x1d\x41\x1e\xdf\x13\x73\x4d\xb1\xdd\x97\x03\x27\x6f\x5e\xb2\xd6\xaa\x2c\xb8\x95\x2d\xd6\x71\x2b\xfa\xe8\x09\xce\x08\xc3\xaa\x50\x2b\x81\x35\x71\x3f\xac\x0a\x9c\x25\xb1\xd4\x5b\x6a\x58\x31\xe0\x24\x21\xbb\xa6\x5b\x81\xa5\x96\xef\xa2\x4b\x05\x76\xbd\x1d\xc7\xfd\xfb\x49\xbe\x76\x28\x75\xe8\x1b\xd5\x40\x72\x2b\xc0\x61\x40\xb9\xaa\x2e\xf7\xb8\x4a\x80\x1e\x41\xde\xd6\x8d\x45\x46\xac\x48\x73\xd9\xe7\xce\xd6\x49\xb6\x4f\xad\xaf\x0b\x5c\x4b\x6e\xb8\xd0\x36\x31\x52\x33\xf4\x32\x6c\xa0\x1e\x03\x39\x30\x50\xcd\x02\x7c\x24\xf6\x73\x03\xfb\x84\x6b\xd2\xc6\xb3\xdb\xa0\x6b\xed\x0d\x59\xa3\x62\x89\xd2\x4b\xd6\x48\xf7\xdb\x0b\x3a\x81\x34\x66\x12\x59\x3e\x3d\xdd\x18\xc5\x57"}, {{0x33,0x37,0x1d,0x9e,0x89,0x2f,0x98,0x75,0x05,0x2a,0xc8,0xe3,0x25,0xba,0x50,0x5e,0x74,0x77,0xc1,0xac,0xe2,0x4b,0xa7,0x82,0x26,0x43,0xd4,0x3d,0x0a,0xce,0xf3,0xde,},{0x35,0x92,0x9b,0xde,0xd2,0x7c,0x24,0x9c,0x87,0xd8,0xb8,0xd8,0x2f,0x59,0x26,0x0a,0x57,0x53,0x27,0xb5,0x46,0xc3,0xa1,0x67,0xc6,0x9f,0x59,0x92,0xd5,0xb8,0xe0,0x06,},{0x98,0x5c,0xa4,0x46,0xdd,0xc0,0x07,0x82,0x7c,0xc8,0xf2,0x85,0x2c,0xbd,0x81,0x15,0xef,0x8c,0x59,0x75,0xe9,0xd7,0xce,0x96,0xd7,0x4d,0xfe,0xd8,0x59,0xaa,0x14,0xa4,0xc1,0x52,0x54,0x00,0x6b,0xea,0x5e,0x08,0x35,0x9e,0xfe,0x26,0x25,0xd7,0x15,0xe0,0x89,0x7e,0xe5,0xa1,0x6f,0x15,0x12,0x03,0xbe,0x50,0x10,0x41,0x86,0x37,0xde,0x05,},"\x27\xa3\x2e\xfb\xa2\x82\x04\xbe\x59\xb7\xff\x5f\xe4\x88\xca\x15\x8a\x91\xd5\x98\x60\x91\xec\xc4\x45\x8b\x49\xe0\x90\xdd\x37\xcb\xfe\xde\x7c\x0f\x46\x18\x6f\xab\xcb\xdf\xf7\x8d\x28\x44\x15\x58\x08\xef\xff\xd8\x73\xed\x9c\x92\x61\x52\x6e\x04\xe4\xf7\x05\x0b\x8d\x7b\xd2\x67\xa0\xfe\x3d\x5a\x44\x93\x78\xd5\x4a\x4f\xeb\xbd\x2f\x26\x82\x43\x38\xe2\xaa\xaf\x35\xa3\x2f\xf0\xf6\x25\x04\xbd\xa5\xc2\xe4\x4a\xbc\x63\x15\x9f\x33\x6c\xf2\x5e\x6b\xb4\x0d\xdb\x7d\x88\x25\xdf\xf1\x8f\xd5\x1f\xc0\x19\x51\xea\xed\xcd\x33\x70\x70\x07\xe1\x20\x3c\xa5\x8b\x4f\x7d\x24\x2f\x81\x66\xa9\x07\xe0\x99\x93\x2c\x00\x1b\xfb\x1e\xc9\xa6\x1e\x0e\xf2\xda\x4e\x84\x46\xaf\x20\x82\x01\x31\x5d\x69\x68\x17\x10\xd4\x25\xd2\x40\x0c\x38\x7d\x7b\x9d\xf3\x21\xa4\xae\xc6\x02\xb9\xc6\x56\xc3\xe2\x31\x0b\xff\x87\x56\xd1\x8b\x80\x21\x34\xb1\x56\x04\xf4\xed\xc1\x11\x14\x9a\x98\x79\xe3\x12\x41\xdd\x34\xf7\x02\xf4\xc3\x49\x61\x7b\x13\x52\x97\x69\xa7\x72\xf5\xe5\x2a\x89\xc0\x98\xe0\xdc\xa5\x92\x06\x67\x89\x3a\x25\x00\x61\xb1\x79\x91\x62\x6e\xb9\x31\x92\x98\x68\x5b\xe4\x6b\x6a\x8b\x68\x42\x24\x44\xfa\x5a\x36\xbc\xf3\xa6\x87\xe2\xec\xcb\x93\x22\xc8\x7d\xc8\x01\x65\xda\x89\x89\x30\x85\x0b\x98\xfc\x86\x3c\xad\xa1\xaa\x99\xc6\xd6\x1c\x45\x1b\x9c\xcf\x48\x74\xc7\xf0\xe7\x5b\x0a\x0c\x60\x2f\x04\x48\x12\xc7\x17\x65\xad\xaf\x02\x02\x53\x95\xb0"}, {{0xbe,0xed,0xb8,0x07,0x3d,0xf5,0x8f,0x8c,0x1b,0xff,0xbd,0xbd,0x77,0xec,0x7d,0xec,0xb2,0xc8,0x2a,0x9b,0xab,0xec,0xef,0xc0,0x33,0x15,0x07,0xbd,0xc2,0xc2,0xa7,0xe7,},{0xb2,0x7e,0x90,0x8b,0x80,0x5e,0x29,0x6f,0xc3,0x0d,0x2e,0x47,0x4b,0x06,0x0c,0xd5,0x0c,0x0f,0x6f,0x52,0x0b,0x36,0x71,0x71,0x21,0x83,0xbd,0x89,0xd4,0xe7,0x33,0xe9,},{0x8c,0x89,0x0c,0xcc,0xad,0xc7,0x76,0x0e,0x1e,0x82,0xe4,0x3c,0x44,0xb3,0xdc,0x0b,0x68,0x5a,0x48,0xb4,0x79,0xae,0x13,0xcc,0x0a,0x6b,0x05,0x57,0xd0,0xfb,0x1c,0xba,0xbb,0xa6,0x3d,0x2a,0x96,0x84,0x34,0x12,0xea,0x8d,0x36,0xc5,0x0a,0xcb,0xf5,0x2b,0x92,0xcf,0xb2,0xdc,0xe4,0x9d,0xc4,0x8a,0xf6,0xdd,0xcf,0x8e,0xe4,0x7a,0x86,0x08,},"\x35\xca\x57\xf0\xf9\x15\xe5\x20\x9d\x54\xea\x4b\x87\x1f\xfb\x58\x53\x54\xdf\x1b\x4a\x4a\x17\x96\xfb\xe4\xd6\x22\x7d\x3e\x1a\xba\x51\x71\xed\x03\x91\xa7\x9e\x83\xe2\x4d\x82\xfd\xaf\xd1\x5c\x17\xb2\x8b\xf6\xc9\x4d\x61\x8c\x74\xd6\x52\x64\xe5\x8f\xaa\xac\xd2\x90\x28\x72\xfd\xd0\xef\xa2\x2e\x8d\x2d\x7c\xe8\xe3\xb8\x19\x7f\x0c\x36\x15\xb0\xa3\x85\x23\x5f\xa9\xfd\x8e\x45\x64\xee\x6e\x6b\x16\x50\xb4\xcf\xb9\x4d\x87\x2c\x80\x5c\x32\xd4\xf3\xa1\x8f\x96\x64\x61\xd3\xad\xbb\x60\x5f\xa5\x25\x88\x4f\x8e\xb1\x97\x62\x73\x96\xba\x4d\x99\x5d\x78\xac\x02\x94\x8a\x0e\xaa\xbb\x58\x51\x9b\x9a\x8e\x2e\x79\x85\xcd\x1d\xe2\xc7\x1d\x89\x18\xd9\x6a\x01\x68\x66\x0c\xe1\x7c\xdd\xf3\x64\xe3\xec\x0d\x4b\xd9\x0f\x21\x04\x75\x1a\x19\x27\xee\x1d\x23\xf3\xe7\xa6\x98\x40\xed\x04\x0b\x00\xe5\xf6\xe4\x86\x6e\xc5\x88\x13\x14\x9c\xc3\x82\xae\xbf\x61\x62\x60\x8c\x79\x57\x4d\x55\x3f\x47\x23\x0e\x92\x4a\x0e\xf1\xeb\xf5\x5d\x8e\x1a\x52\xab\xb6\x2a\x2d\x7a\xc8\x60\x27\xc7\xc0\x3c\xc8\x3f\xa1\x94\x9d\xa2\x9e\x2f\x30\x37\xab\x98\x6f\xd2\xff\xfe\x65\x0e\x31\x49\xba\xba\xe5\xa5\x0b\x1e\xe9\x69\x6f\x3b\xab\xec\x72\xe2\x96\x97\xc8\x24\x22\x81\x4d\x27\x20\x85\x50\x0f\xd8\x37\xfe\x3c\x7a\x97\x3e\xf4\xc1\x69\xaf\x12\xdd\x7f\x02\x70\x06\x20\xbb\x04\x5b\xdb\xf8\x46\x23\xf3\x26\x35\x05\x70\xb3\xca\xdb\xc9\xae\xa4\x20\x0b\x28\x28\x7e\x17\xab"}, {{0x91,0x84,0xef,0x61,0x88,0x16,0x83,0x25,0x92,0xbc,0x8e,0xb3,0x5f,0x4f,0xfd,0x4f,0xf9,0x8d,0xfb,0xf7,0x77,0x6c,0x90,0xf2,0xaa,0xd2,0x12,0xce,0x7e,0x03,0x35,0x1e,},{0x68,0x7b,0x77,0x26,0x01,0x0d,0x9b,0xde,0x2c,0x90,0xe5,0x73,0xcd,0x2a,0x2a,0x70,0x2f,0xf2,0x8c,0x4a,0x2a,0xf7,0x0a,0xfc,0x73,0x15,0xc9,0x4d,0x57,0x56,0x01,0xe5,},{0xb3,0xc2,0x4e,0x75,0x13,0x2c,0x56,0x34,0x75,0x42,0x2d,0x5e,0xa4,0x12,0xb5,0xc1,0xe8,0xe6,0xe5,0xea,0x1c,0x08,0xea,0xd1,0x39,0x3c,0x41,0x2d,0xa1,0x34,0xc9,0xa1,0x63,0x82,0x84,0xea,0x7e,0x2c,0xa0,0x32,0xfe,0x3d,0x3e,0x32,0xa9,0x06,0x6a,0x8c,0x88,0x39,0x90,0x3f,0x6e,0xf4,0x6e,0x96,0x6b,0xb5,0xe4,0x92,0xd8,0xc2,0xaa,0x00,},"\x72\x9e\xb7\xe5\x4a\x9d\x00\xc5\x86\x17\xaf\x18\xc3\x45\xb8\xdc\x6e\x5b\x4e\x0f\x57\xde\x2f\x3c\x02\xe5\x4a\x2e\xc8\xf1\x42\x5e\xc2\xe2\x40\x77\x5b\x5a\xb0\xc1\x0f\x84\xac\x8b\xaf\xda\x45\x84\xf7\xe2\x1c\x65\x5f\xae\xcd\x80\x30\xa9\x89\x06\xbd\x68\x39\x8f\x26\xb5\xd5\x8d\x92\xb6\xcf\x04\x5e\x9b\xd9\x74\x3c\x74\xc9\xa3\x42\xec\x61\xce\x57\xf3\x7b\x98\x1e\xac\x4d\x8b\xf0\x34\x60\x88\x66\xe9\x85\xbb\x68\x68\x6a\x68\xb4\xa2\xaf\x88\xb9\x92\xa2\xa6\xd2\xdc\x8c\xe8\x8b\xfb\x0a\x36\xcf\x28\xbb\xab\x70\x24\xab\xfa\x2b\xea\x53\x31\x3b\x66\xc9\x06\xf4\xf7\xcf\x66\x97\x0f\x54\x00\x95\xbd\x01\x04\xaa\x49\x24\xdd\x82\xe1\x54\x13\xc2\x26\x79\xf8\x47\xe4\x8c\xd0\xc7\xec\x1f\x67\x7e\x00\x5f\xec\x01\x77\xfb\xd5\xc5\x59\xfc\x39\xad\xd6\x13\x99\x1f\xba\xea\xe4\xd2\x4d\x39\xd3\x09\xef\x74\x64\x7f\x81\x92\xcc\x4c\x62\xd0\x64\x20\x28\xc7\x6a\x1b\x95\x1f\x6b\xc9\x63\x9d\xeb\x91\xec\xc0\x8b\xe6\x04\x3f\x21\x09\x70\x5a\x42\xc7\xea\xe7\x12\x64\x9d\x91\xd9\x6c\xcb\xbf\xb6\x3d\x8d\x0d\xd6\xdd\x11\x21\x60\xf6\x13\x61\xec\xdc\x67\x93\x92\x9c\xa9\xae\xf9\xab\x56\x94\x4a\x6f\xa4\xa7\xdf\x1e\x27\x9e\xaf\x58\xce\x83\x23\xa9\xcf\x62\xc9\x42\x79\xff\xf7\x44\x0f\xbc\x93\x6b\xaa\x61\x48\x9c\x99\x93\x30\xba\xdc\xb9\xfc\x0e\x18\x4b\xc5\x09\x3f\x33\x0c\xbb\x24\x2f\x71\xfb\x37\x87\x38\xfe\xa1\x05\x11\xdd\x43\x83\x64\xd7\xf7\x6b\xcc"}, {{0x35,0x4e,0x13,0x15,0x2e,0xe1,0xfe,0x74,0x8a,0x12,0x52,0x20,0x4c,0x65,0x27,0xbd,0xc1,0xb1,0xeb,0x2e,0xb5,0x36,0x78,0x15,0x0e,0x63,0x59,0x92,0x47,0x08,0xd8,0x12,},{0xd4,0x5f,0xf6,0xc5,0xfb,0x83,0xe7,0xbb,0x96,0x69,0xaa,0x89,0x60,0xde,0xb7,0xdb,0xc6,0x65,0xc9,0x88,0x43,0x9b,0x6c,0x9e,0xf6,0x72,0xc6,0x81,0x1d,0xc8,0xbc,0xf6,},{0xde,0x2b,0x46,0xe6,0x5f,0x3d,0xec,0xef,0x34,0x33,0x2e,0x50,0x0f,0x2e,0x11,0x30,0x6f,0xbd,0xcf,0x1b,0xe8,0x5a,0x1c,0x1e,0xe6,0x8b,0xa3,0x04,0x5d,0xce,0xc2,0xc7,0xbe,0x60,0x8d,0x22,0x92,0x7d,0xa1,0xf4,0x4c,0x0e,0x20,0x83,0xae,0x62,0x2c,0xf3,0xc2,0x9d,0x89,0x38,0x87,0x99,0x4e,0xfc,0xfa,0x2c,0xa5,0x94,0xf5,0x05,0x1f,0x03,},"\x8e\x5f\xcc\xf6\x6b\x1b\xa6\x16\x9c\xb6\x85\x73\x3d\x9d\x0e\x01\x90\x36\x1c\x90\xbc\xab\x95\xc1\x63\x28\x5a\x97\xfe\x35\x6d\x2b\xdc\xde\x3c\x93\x80\x26\x88\x05\xa3\x84\xd0\x63\xda\x09\xcc\xd9\x96\x9c\xc3\xff\x74\x31\xe6\x0a\x8e\x9f\x86\x9c\xd6\x2f\xaa\x0e\x35\x61\x51\xb2\x80\xbc\x52\x6e\x57\x7c\x2c\x53\x8c\x9a\x72\x4d\xc4\x8b\xf8\x8b\x70\x32\x1d\x7e\x1e\xee\xdb\x3c\x4a\xf7\x06\x74\x8c\x94\x2e\x67\xbd\xab\xdb\x41\xbe\xc2\x97\x7b\x15\x23\x06\x9e\x31\xe2\x9b\x76\x30\x02\x88\xf8\x8a\x51\xb3\x84\xb8\x0c\xc2\x52\x6f\x16\x79\x34\x0d\xde\xc3\x88\x1f\x5c\xd2\x8b\x03\x78\xd9\xcd\x0a\x81\x2b\x68\xdd\x3f\x68\xf7\xa2\x3e\x1b\x54\xbe\xe7\x46\x6a\xc7\x65\xcf\x38\xdf\x04\xd6\x74\x41\xdf\xa4\x98\xc4\xbf\xfc\x52\x04\x5f\xa6\xd2\xdb\xcd\xbf\xa3\x3d\xfa\xa7\x76\x44\xff\xcc\xef\x0d\xec\xdb\x67\x90\xc7\x0a\x0d\x73\x4e\xc2\x87\xcc\x33\x8c\xb5\xa9\x09\xc0\x05\x51\x89\x30\x11\x69\xc4\xf7\x70\x2c\x05\xc0\x91\x1a\x27\xb1\x6e\xf9\xed\x93\x4f\xa6\xa0\xca\x7b\x13\xe4\x13\x52\x34\x22\x53\x56\x47\x96\x80\x30\xed\xc4\x0c\xd7\x3e\x7d\x6b\x34\x5b\x75\x81\xf4\x38\x31\x6d\x68\xe3\xcd\x29\x2b\x84\x6d\x3f\x4f\x7c\x48\x62\xbc\x7e\x6b\x3f\xb8\x9a\x27\xf6\xf6\x0c\xd7\xdb\x2e\x34\xec\x9a\xae\x10\x13\xfe\x37\xac\xff\x8a\xd8\x88\xcb\x9a\x59\x3e\xf5\xe6\x21\xea\xe5\x18\x6c\x58\xb3\x1d\xcf\xde\x22\x87\x0e\x33\x6d\x33\xf4\x40\xf6\xb8\xd4\x9a"}, {{0x7f,0xf6,0x2d,0x4b,0x3c,0x4d,0x99,0xd3,0x42,0xd4,0xbb,0x40,0x1d,0x72,0x6b,0x21,0xe9,0x9f,0x4e,0xf5,0x92,0x14,0x9f,0xc3,0x11,0xb6,0x87,0x61,0xf5,0x56,0x7f,0xf6,},{0x7f,0xdf,0xdb,0x9e,0xca,0x29,0xd3,0xf0,0x1d,0x94,0x86,0xd7,0xe1,0x12,0xce,0x03,0xaa,0x37,0xb9,0x13,0x26,0xa4,0x28,0x3b,0x9c,0x03,0x99,0x9c,0x5e,0xda,0x09,0x9a,},{0x05,0x8f,0x79,0x92,0x7f,0xbf,0x61,0x78,0x72,0x48,0x15,0xc7,0xb1,0x1c,0x63,0xba,0xaa,0x90,0xbc,0xc1,0x5d,0x72,0x72,0xbe,0x08,0x2f,0x8a,0x91,0x41,0x86,0x1c,0x81,0x64,0x33,0x05,0x5f,0x6c,0xf6,0x49,0x14,0x24,0x85,0x3f,0x9e,0xc7,0x8b,0xb9,0x1a,0xce,0x91,0x3a,0x93,0x41,0x1b,0x4e,0x5e,0xd5,0x8b,0xc4,0xba,0x57,0x15,0xc6,0x0a,},"\x99\xc4\x4c\x79\x65\x72\xa4\x82\x3f\xc6\xc3\x80\x77\x30\x83\x91\x73\x77\x4c\x05\xdb\xfc\x14\x92\xed\x0d\x00\x50\x9a\x95\xa1\xde\x37\x27\x4b\x31\x35\xed\x04\x56\xa1\x71\x8e\x57\x65\x97\xdc\x13\xf2\xa2\xab\x37\xa4\x5c\x06\xcb\xb4\xa2\xd2\x2a\xfa\xd4\xd5\xf3\xd9\x0a\xb3\xd8\xda\x4d\xcd\xaa\x06\xd4\x4f\x22\x19\x08\x84\x01\xc5\xdc\xee\xe2\x60\x55\xc4\x78\x2f\x78\xd7\xd6\x3a\x38\x06\x08\xe1\xbe\xf8\x9e\xee\xf3\x38\xc2\xf0\x89\x7d\xa1\x06\xfa\xfc\xe2\xfb\x2e\xbc\x5d\xb6\x69\xc7\xc1\x72\xc9\xcf\xe7\x7d\x31\x09\xd2\x39\xfe\x5d\x00\x5c\x8e\xe7\x51\x51\x1b\x5a\x88\x31\x7c\x72\x9b\x0d\x8b\x70\xb5\x2f\x6b\xd3\xcd\xa2\xfe\x86\x5c\x77\xf3\x6e\x4f\x1b\x63\x5f\x33\x6e\x03\x6b\xd7\x18\xbe\xc9\x0e\xe7\x8a\x80\x28\x11\x51\x0c\x40\x58\xc1\xba\x36\x40\x17\x25\x3a\xa8\x42\x92\x2e\x1d\xd7\xd7\xa0\xf0\xfc\x9c\x69\xe4\x3f\xc4\xea\xef\xfa\xaf\x1a\xe5\xfa\x5d\x2d\x73\xb4\x30\x79\x61\x7b\xab\xa0\x30\x92\x3f\xe5\xb1\x3d\x2c\x1c\x4f\xe6\xfa\xc3\xf2\xdb\x74\xe2\x02\x0a\x73\x4b\x61\x21\xa0\x30\x2f\xce\x82\x0b\xa0\x58\x0c\xe6\x13\x53\x48\xfd\xf0\x63\x2e\x00\x08\xdf\x03\xee\x11\x21\x68\xf5\xcf\xa0\x03\x7a\x26\xa1\xf6\x9b\x1f\x13\x17\xed\xf2\xa3\xab\x36\x74\x55\xa7\x7e\x00\x69\x12\x15\xd7\xaa\x31\x33\xc2\x15\x9d\x3d\xa2\xb1\x34\xcf\x04\xf0\xde\xfb\xf0\x7a\x60\x64\x01\x1e\x64\xdd\x14\xd4\xf8\xf0\x64\x35\x66\x55\x42\x88\x04\xc2\x77\x1a"}, {{0x6c,0xab,0xad,0xd0,0x3f,0x8a,0x2e,0x6e,0xba,0xb9,0x6a,0x74,0xf8,0x0e,0x18,0x16,0x4e,0x4d,0x1b,0x6b,0xaa,0x67,0x8f,0x5a,0x82,0xe2,0x56,0x04,0xaf,0x98,0x9a,0xaf,},{0x2a,0x4a,0x31,0x79,0x56,0x41,0x94,0xe0,0x01,0x00,0xc1,0x8b,0xc3,0x53,0x51,0xd8,0xb1,0x35,0xbb,0xae,0x5b,0x32,0xb2,0x8f,0xce,0x1d,0x7b,0x67,0x66,0xca,0x4b,0x32,},{0x4e,0x65,0xc6,0xc1,0xd4,0x93,0x04,0x5e,0x8a,0x92,0x50,0xe3,0x97,0xc1,0xd1,0xd3,0x0f,0xfe,0xd2,0x4d,0xb6,0x6a,0x89,0x61,0xaa,0x45,0x8f,0x8f,0x0f,0xcb,0x76,0x0c,0x39,0xfe,0x86,0x57,0xd7,0xab,0x8f,0x84,0x00,0x0b,0x96,0xd5,0x19,0x71,0x7c,0xff,0x71,0xf9,0x26,0x52,0x2c,0x1e,0xfe,0xc7,0xf8,0xb2,0x62,0x4e,0xae,0x55,0xf6,0x0c,},"\x27\x9f\x78\xcf\x3b\x9c\xcf\xc6\xe1\xb0\x1e\x1a\x82\xf5\x0e\xd1\x72\xe9\xa8\xe1\xe7\x02\xbb\x15\x66\x1d\xd7\xdc\x3a\x45\x6f\xf7\xa7\xa7\xfd\xfb\x08\x1d\xb3\x86\x70\x79\x63\x0c\x7f\x70\xfd\x75\x32\x92\xec\x60\xec\xbf\x50\x63\x2e\x9a\xa4\x5b\x99\x65\x05\xc6\x6e\x6d\xc3\xc6\xae\x89\x2e\x21\xb6\xa8\x70\x5e\x4b\xba\xe8\xf1\x6a\x33\x78\x55\x4b\x31\xfd\xb0\x13\x9d\xcd\x15\xc9\x6a\x8a\x7e\x4b\x88\x75\x6a\x86\xd1\x8d\xb5\xdc\x74\xfd\x76\x91\x19\x7d\xd8\x8e\x2c\x7d\x5d\xf5\x2b\x04\x93\x44\xcd\xc4\x77\xc9\xcd\x7e\x89\xed\xa9\x9c\xcf\xb1\xd0\x08\x14\xd0\x15\x2b\x96\x54\xdf\x32\x79\x37\x2c\xa5\xf1\x8b\x1c\x94\x6f\x28\x94\xa7\x6b\x07\x9d\xdb\x1c\x3c\xd6\x1f\xbb\x96\x9a\xee\xc9\x19\x3a\x6b\x88\xfb\x7d\x13\x6c\x07\xf9\x82\x1e\x5c\x10\x74\xb4\xe9\x3b\xca\xf6\xfa\x14\xd0\xd1\xd7\xe1\x70\x75\x89\xd7\x7e\xc1\x33\x72\x06\xe5\x3a\x1f\x06\xcc\x26\x67\x2f\xf9\x5c\x13\xd5\xff\x44\x47\x66\x93\x1b\xa3\x0a\x0a\xfd\xcd\xad\xd2\x09\x8e\x9c\x41\xfd\x87\xa3\xf2\x3c\xd1\x6d\xbb\x0e\xfb\xf8\x09\x2c\xe3\x3e\x32\x7f\x42\x61\x09\x90\xe1\xce\xe6\xcb\x8e\x54\x95\x1a\xa0\x81\xe6\x97\x65\xae\x40\x09\xae\xed\x75\x8e\x76\x8d\xe5\x0c\x23\xd9\xa2\x2b\x4a\x06\xdc\x4d\x19\xfc\x8c\xbd\x0c\xde\xf4\xc9\x83\x46\x17\x55\xd0\xa3\xb5\xd6\xa9\xc1\x22\x53\xe0\x95\x68\x33\x9f\xf7\xe5\xf7\x8c\x5f\xdf\x7e\xc8\x9f\x91\x86\xa6\x21\xa8\xc0\xee\xd1\x1b\x67\x02\x2e"}, {{0x0f,0xa0,0xc3,0x2c,0x3a,0xe3,0x4b,0xe5,0x1b,0x92,0xf9,0x19,0x45,0x40,0x59,0x81,0xa8,0xe2,0x02,0x48,0x85,0x58,0xa8,0xe2,0x20,0xc2,0x88,0xc7,0xd6,0xa5,0x53,0x2d,},{0xd6,0xae,0xe6,0x2b,0xd9,0x1f,0xc9,0x45,0x36,0x35,0xff,0xcc,0x02,0xb2,0xf3,0x8d,0xca,0xb1,0x32,0x85,0x14,0x03,0x80,0x58,0x0c,0xcd,0xff,0x08,0x65,0xdf,0x04,0x92,},{0x7e,0x9a,0xb8,0x5e,0xe9,0x4f,0xe4,0xb3,0x5d,0xcb,0x54,0x53,0x29,0xa0,0xef,0x25,0x92,0x3d,0xe5,0xc9,0xdc,0x23,0xe7,0xdf,0x1a,0x7e,0x77,0xab,0x0d,0xcf,0xb8,0x9e,0x03,0xf4,0xe7,0x85,0xca,0x64,0x29,0xcb,0x2b,0x0d,0xf5,0x0d,0xa6,0x23,0x0f,0x73,0x3f,0x00,0xf3,0x3a,0x45,0xc4,0xe5,0x76,0xcd,0x40,0xbd,0xb8,0x4f,0x1a,0xe0,0x01,},"\x53\xf4\x4b\xe0\xe5\x99\x7f\xf0\x72\x64\xcb\x64\xba\x13\x59\xe2\x80\x1d\xef\x87\x55\xe6\x4a\x23\x62\xbd\xda\xf5\x97\xe6\x72\xd0\x21\xd3\x4f\xfa\xce\x6d\x97\xe0\xf2\xb1\xf6\xae\x62\x5f\xd3\x3d\x3c\x4f\x6e\x9f\xf7\xd0\xc7\x3f\x1d\xa8\xde\xfb\x23\xf3\x24\x97\x5e\x92\x1b\xb2\x47\x32\x58\x17\x7a\x16\x61\x25\x67\xed\xf7\xd5\x76\x0f\x3f\x3e\x3a\x6d\x26\xaa\xab\xc5\xfd\xe4\xe2\x04\x3f\x73\xfa\x70\xf1\x28\x02\x09\x33\xb1\xba\x3b\x6b\xd6\x94\x98\xe9\x50\x3e\xa6\x70\xf1\xed\x88\x0d\x36\x51\xf2\xe4\xc5\x9e\x79\xca\xbc\x86\xe9\xb7\x03\x39\x42\x94\x11\x2d\x5d\x8e\x21\x3c\x31\x74\x23\xb5\x25\xa6\xdf\x70\x10\x6a\x9d\x65\x8a\x26\x20\x28\xb5\xf4\x51\x00\xcb\x77\xd1\x15\x0d\x8f\xe4\x61\xee\xd4\x34\xf2\x41\x01\x5f\x32\x76\xad\x7b\x09\xa2\x91\xb4\xa7\xf3\x5e\x3c\x30\x05\x1c\xbf\x13\xb1\xd4\xa7\xfa\x0c\x81\xa5\x0f\x93\x9e\x7c\x49\x67\x3a\xfd\xc8\x78\x83\xc9\xe3\xe6\x1f\x5a\x1d\xf0\x37\x55\x47\x0f\xda\x74\xbf\x23\xea\x88\x67\x6b\x25\x8a\x97\xa2\x80\xd5\xf9\x0b\x52\xb7\x14\xb5\x96\x03\x5b\xae\x08\xc8\xd0\xfe\x6d\x94\xf8\x94\x95\x59\xb1\xf2\x7d\x71\x16\xcf\x59\xdd\x3c\xfb\xf1\x82\x02\xa0\x9c\x13\xf5\xc4\xfb\xc8\xd9\x72\x25\x49\x28\x87\xd3\x28\x70\xc2\x29\x7e\x34\xde\xbd\x98\x76\xd6\xd0\x1a\xc2\x7a\x16\xb0\x88\xb0\x79\x07\x9f\x2b\x20\xfe\xb0\x25\x37\xcd\xa3\x14\xc4\x3c\xb2\xdc\xa3\x71\xb9\xdf\x37\xed\x11\xec\x97\xe1\xa7\xa6\x99\x3a"}, {{0x7b,0x06,0xf8,0x80,0x26,0xfa,0x86,0xf3,0x9f,0xce,0x24,0x26,0xf6,0x7c,0xc5,0x99,0x6b,0xed,0xd0,0xcf,0xc4,0xb5,0xeb,0xb1,0xb5,0xe3,0xed,0xbb,0x47,0xe0,0x80,0xaa,},{0x3f,0x14,0x69,0xee,0x6a,0x2e,0x78,0x67,0xe2,0xe9,0x01,0x2d,0x40,0x2c,0xf5,0xa4,0x86,0x14,0x97,0xc0,0x1d,0xf8,0x79,0xa1,0xde,0xb1,0xc5,0x39,0x83,0x0b,0x58,0xde,},{0x42,0xf1,0x33,0xe3,0x4e,0x3e,0xb7,0x03,0x2a,0x13,0x3e,0xd7,0x81,0x53,0x7e,0xc6,0x2e,0x44,0xa5,0xce,0x83,0x81,0xe5,0xe0,0xbf,0x9e,0x13,0xa9,0x14,0xa4,0xb2,0xc7,0x57,0x81,0x1d,0x6d,0x3b,0x1e,0x86,0x67,0x24,0x24,0xea,0x42,0x30,0xd1,0x0f,0x7c,0x61,0x0a,0xbb,0x70,0x69,0xe6,0x1e,0x31,0x9b,0x40,0x66,0xa2,0xbd,0x7b,0xc9,0x00,},"\x71\x17\x5d\x4e\x21\x72\x12\x97\xd9\x17\x6d\x81\x7f\x4e\x78\x5d\x96\x00\xd9\x23\xf9\x87\xfe\x0b\x26\xfd\x79\xd3\x3a\x5e\xa5\xd1\xe8\x18\xb7\x1f\x0f\x92\xb8\xc7\x3a\xfd\xda\xbd\xcc\x27\xf6\xd1\x6e\x26\xaa\xfa\x87\x4c\xfd\x77\xa0\x0e\x06\xc3\x6b\x04\x14\x87\x58\x2b\xb9\x33\x76\x0f\x88\xb4\x19\x12\x73\x45\x77\x6e\xa4\x18\xf8\x35\x22\x25\x4f\xed\x33\x81\x9b\xc5\xc9\x5f\x8f\x84\x04\xcc\x14\x4e\xbf\x14\x86\xc8\x85\x15\x40\x9d\x34\x33\xaa\xf5\x19\xd9\x92\x0f\x52\x56\xe6\x29\x41\x9e\x9a\x95\x58\x0a\x35\xb0\x69\xb8\xd2\x55\x33\xdf\xcb\xc9\x8a\xd3\x64\x04\xa9\x51\x80\x8e\x01\x37\x8c\x03\x26\x63\x26\xd1\x20\x04\x69\x75\xfd\xe0\x7d\xae\xf3\x26\x6c\xaa\xcd\x82\x1c\x14\x03\x49\x9d\x7f\xdf\x17\xc0\x33\xc8\xd8\xc3\xf2\x8f\x16\x2b\x5f\x09\xdf\xda\xca\x06\x28\x5f\x00\xc6\xcb\x98\x6d\xfd\xf5\x15\x1a\xa6\x63\x96\x08\xb5\xb1\x3e\x78\xd6\x5a\x43\x68\x58\x5b\x16\x13\x87\x54\xfb\xd1\x13\x83\x5a\x68\x6c\xd0\x66\xc2\xb8\x9b\xb0\x95\x3c\x24\xd5\x0e\x77\xbf\x0f\xc4\x57\xc1\xe0\xfc\xf5\xd4\x4d\xa8\xdb\x9a\x88\xf0\x62\xbe\x3b\x68\x8d\x5c\xdc\xff\x1d\x1c\x00\xe8\x1e\xc9\xd4\x13\x88\x22\x95\xb3\x41\xfe\xe8\xfa\x42\x7d\xc1\x09\xad\xeb\x5f\x28\x4e\xec\x20\x2f\x1b\xef\x11\x5b\xf9\x6b\x17\x82\xd3\xcc\xde\xb6\x82\xb6\x9b\xf9\x2d\x17\x0c\x00\x7d\x5d\xf8\x0e\x1e\xd9\x62\xf6\x77\xdc\x24\xa1\x45\xa1\xe4\xe8\x29\xe8\xde\xc0\x10\x4e\x5f\x78\x36\x59\x44"}, {{0xc3,0xf5,0xe1,0x49,0x96,0x8a,0x24,0xf4,0xde,0x91,0x19,0x53,0x19,0x75,0xf4,0x43,0x01,0x5c,0xcc,0xa3,0x05,0xd7,0x11,0x9e,0xd4,0x74,0x9e,0x8b,0xf6,0xd9,0x4f,0xc7,},{0x39,0xaa,0xcc,0xdb,0x94,0x8a,0x40,0x38,0x53,0x8a,0x45,0x88,0x32,0x2f,0x80,0x6b,0xb1,0x29,0xb5,0x87,0x6c,0x4b,0xec,0x51,0x27,0x1a,0xfe,0x4f,0x49,0x69,0x00,0x45,},{0x5f,0xa2,0xb5,0x31,0x67,0x7b,0x00,0xb8,0x5b,0x0a,0x31,0x3c,0xbd,0x47,0x9f,0x55,0xf4,0xab,0x3e,0xc5,0xcf,0xce,0x5e,0x45,0x4d,0x2b,0x74,0x17,0x6c,0xcc,0x33,0x99,0xc8,0x99,0xf9,0xd6,0xb5,0x1e,0xd4,0xc1,0xe7,0x61,0x85,0xac,0x9f,0xe7,0x30,0xc4,0xb4,0x01,0x40,0x44,0xf7,0x04,0x11,0x85,0xbc,0x3c,0x85,0x72,0x2e,0xb2,0xea,0x02,},"\xc4\x63\x70\xe3\x7f\x2e\x0c\xad\xcf\x93\x40\x2f\x1f\x0c\xb0\x48\xf5\x28\x81\xba\x75\x0b\x7a\x43\xf5\x6a\xb1\x1c\xe3\x48\x73\x2f\xb5\x7e\x7f\x9a\xaf\x8d\xfc\xbe\x45\x5e\x14\xe9\x83\xc2\x48\xd0\x26\xa2\x7e\x7f\x14\x8d\x5d\xb5\xa5\x3f\x94\x63\x57\x02\xb8\x95\x12\x77\x71\x04\x7a\x87\x6d\x14\x10\x73\x86\xc5\xe0\xff\x89\x33\x34\x5b\xbd\x7a\x93\x6d\x99\x0d\x33\xef\xa2\x8c\x2e\xc4\xe4\x86\x4f\xfd\x2f\xf5\x76\xf7\xc8\x8f\x95\x4c\xfc\x1c\x45\x9e\x88\x3b\xb7\x12\xda\xe3\xcd\xf6\x63\x20\x66\xf1\xf4\xd1\x3a\x50\x96\x15\xb3\x36\x0c\xad\xc5\xa3\x07\xf2\x3e\x52\xa5\x1b\x40\xa6\xfe\xeb\xe0\xb1\x8d\x0e\x9e\xe4\xe3\x48\xf3\x3c\xd8\x1a\x8d\xef\x22\x2f\x6a\x59\xb1\x28\x61\xd3\x35\xbd\x9a\xf8\x5c\xc0\x04\xbe\x46\xf1\xd3\xa4\x24\xf4\x87\x0a\xe9\xdc\x58\x7e\x5a\x4a\xde\x13\x6b\x93\x70\x64\x93\x48\xc3\x3a\xc3\xbf\x1f\xeb\xee\xbf\xfe\xa3\x70\x85\xed\x59\xca\xc9\xd9\xe6\x96\x47\x0b\x23\x46\x09\xe9\xa1\x0a\x9d\x43\x1f\xf9\x1e\x69\xcb\x51\x35\xfd\x11\x7f\xf5\x8a\x36\x53\x97\x44\xeb\xe7\x0c\xea\x69\x73\xc0\x0c\x7a\x4d\x57\xb6\x2f\x4a\x71\x36\xd7\x31\xb8\xe4\x6f\xf1\x8e\xc0\xed\x69\x07\x00\x31\x90\x50\x75\xd8\x54\x1d\x56\x8c\xfc\xe6\xee\xb7\x62\x42\xb7\x81\x9a\x7b\x6a\x93\x55\x21\x11\xbb\x88\xf1\x65\x52\x7c\xfa\x69\x66\xd3\x9f\xcb\xe0\xa7\xde\xa0\x08\xe3\x9c\x7a\x3e\x57\x7a\xb3\x07\xcd\x1d\x0e\xa3\x26\x83\x3d\x52\x65\x4e\x17\x29\x55\xf3\xfc\xd4"}, {{0x42,0x30,0x5c,0x93,0x02,0xf4,0x5e,0xa6,0xf8,0x7e,0x26,0xe2,0x20,0x8f,0xd9,0x4b,0x3c,0x4a,0xd0,0x37,0xb1,0xb6,0xc8,0x3c,0xf6,0x67,0x7a,0xa1,0x09,0x6a,0x01,0x3c,},{0x3b,0x97,0xb1,0xf1,0x1c,0xe4,0x5b,0xa4,0x6f,0xfb,0xb2,0x5b,0x76,0xbf,0xc5,0xad,0x7b,0x77,0xf9,0x0c,0xc6,0x9e,0xd7,0x61,0x15,0xde,0xa4,0x02,0x94,0x69,0xd5,0x87,},{0x18,0xd0,0x5e,0x5d,0x01,0x66,0x8e,0x83,0xf4,0x0f,0xa3,0xbb,0xee,0x28,0xb3,0x88,0xac,0xf3,0x18,0xd1,0xb0,0xb5,0xad,0x66,0x8c,0x67,0x2f,0x34,0x5c,0x8e,0xda,0x14,0xc2,0xf8,0x84,0xcd,0x2a,0x90,0x39,0x45,0x9c,0xe0,0x81,0x0b,0xc5,0xb5,0x80,0xfe,0x70,0xd3,0x96,0x4a,0x43,0xed,0xb4,0x9e,0x73,0xa6,0xff,0x91,0x4b,0xbf,0x04,0x0c,},"\xd1\x10\x82\x8d\x44\x91\x98\xd6\x75\xe7\x4e\x8e\x39\x43\x9f\xd1\x5e\x75\xbf\x2c\xc1\xf4\x30\xab\xfb\x24\x58\x36\x88\x5b\xaf\xc4\x20\xf7\x54\xb8\x9d\x2f\xbb\xf6\xdd\x34\x90\x79\x2e\x7a\x4f\x76\x60\x73\xcf\xe3\xb3\x02\xd0\x89\x83\x1a\xce\x86\x9e\x27\x30\xfd\xe4\x5c\x21\x21\xec\x3e\xf2\x17\xaa\x9c\x43\xfa\x7c\xc7\xe9\xed\x0a\x01\xad\x9f\x1d\x2f\xc3\x61\x36\x38\xca\x9f\xc1\x93\xc9\x8b\x37\x45\x5b\xf5\xdb\xf8\xf3\x8b\x64\x70\x8d\xfd\xca\x6c\x21\xf0\x97\x5f\x10\x17\xc5\xda\x5f\x64\x34\xbd\xa9\xf0\x33\xce\xc2\xa6\x31\xab\x50\x31\x8e\x01\x7b\x17\x0b\x24\x0b\xf0\x1e\xb8\xb3\x6c\x7e\x1c\xb5\x9e\x77\x36\xac\x34\x44\x42\x08\x13\x2a\x8f\x59\xe4\xf3\x13\xd6\x5d\x84\x9c\x6a\x4f\xdf\x13\xe2\x0e\xca\xee\x38\x23\xe5\x89\xa1\x71\xb3\x9b\x24\x89\x49\x7b\x06\xe6\xff\x58\xc2\xc9\xf1\xdc\x5d\x3a\xa3\xbd\x10\xe6\x44\x3e\x22\xd4\x2d\x07\xb7\x83\xf7\x9f\xd4\x3a\x46\xe1\xcd\xe3\x14\xb6\x63\xa9\x5f\x72\x46\xde\xa1\x31\xfc\xd4\x6d\x1d\xc3\x33\xc5\x45\x4f\x86\xb2\xc4\xe2\xe4\x24\xde\xa4\x05\xcc\x22\x30\xd4\xdc\xd3\x9a\x2e\xab\x2f\x92\x84\x5c\xf6\xa7\x99\x41\x92\x06\x3f\x12\x02\x74\x9e\xf5\x2d\xcb\x96\xf2\xb7\x9e\xd6\xa9\x81\x18\xca\x0b\x99\xba\x22\x85\x49\x08\x60\xeb\x4c\x61\xab\x78\xb9\xdd\xc6\xac\xc7\xad\x88\x3f\xa5\xe9\x6f\x9d\x02\x91\x71\x22\x3a\xbf\x75\x73\xe3\x62\x30\xe0\xa8\x1f\x6c\x13\x11\x15\x14\x73\xee\x26\x4f\x4b\x84\x2e\x92\x3d\xcb\x3b"}, {{0xc5,0x7a,0x43,0xdc,0xd7,0xba,0xb8,0x51,0x60,0x09,0x54,0x69,0x18,0xd7,0x1a,0xd4,0x59,0xb7,0x34,0x5e,0xfd,0xca,0x8d,0x4f,0x19,0x92,0x98,0x75,0xc8,0x39,0xd7,0x22,},{0x20,0x83,0xb4,0x44,0x23,0x6b,0x9a,0xb3,0x1d,0x4e,0x00,0xc8,0x9d,0x55,0xc6,0x26,0x0f,0xee,0x71,0xac,0x1a,0x47,0xc4,0xb5,0xba,0x22,0x74,0x04,0xd3,0x82,0xb8,0x2d,},{0x1e,0xde,0xf9,0xbc,0x03,0x69,0x71,0xf1,0xfa,0x88,0xed,0xf4,0x53,0x93,0xc8,0x02,0xe6,0xc1,0xa1,0x63,0x1c,0x8a,0x06,0x87,0x1a,0x09,0xa3,0x20,0x82,0x1d,0xce,0x40,0xbe,0xca,0x97,0xe5,0x3a,0x03,0x61,0xa9,0x55,0xa4,0xc6,0xd6,0x0b,0x8c,0xa8,0xe4,0x00,0xc8,0x13,0x40,0x91,0x1c,0xcb,0x4f,0x56,0x28,0x40,0x41,0xcd,0xbb,0x18,0x04,},"\xa4\xf6\xd9\xc2\x81\xcf\x81\xa2\x8a\x0b\x9e\x77\x49\x9a\xa2\x4b\xde\x96\xcc\x12\x64\x37\x44\x91\xc0\x08\x29\x4e\xe0\xaf\x6f\x6e\x4b\xbb\x68\x63\x96\xf5\x90\x68\xd3\x58\xe3\x0f\xe9\x99\x2d\xb0\xc6\xf1\x66\x80\xa1\xc7\x1e\x27\xa4\xa9\x07\xac\x60\x7d\x39\xbd\xc3\x25\x8c\x79\x56\x48\x2f\xb3\x79\x96\xf4\xbe\xb3\xe5\x05\x1b\x81\x48\x01\x9a\x1c\x25\x6e\x2e\xe9\x99\xeb\xc8\xce\x64\xc5\x4e\x07\xfe\xdb\x4f\xbd\x89\x53\xeb\xd9\x3b\x7d\x69\xce\x5a\x00\x82\xed\xd6\x20\x9d\x12\xd3\x61\x9b\x4f\xd2\xea\xe9\x16\x46\x1f\x72\xa4\xce\x72\x71\x57\x25\x1a\x19\x20\x9b\xbf\xf9\xfb\xdb\xd2\x89\x43\x6f\x3f\xca\xcc\x6b\x4e\x13\x18\x52\x1a\x47\x83\x9c\xba\x4b\x14\xf7\xd7\xa2\x1e\x7b\x5d\x6b\x6a\x75\x3d\x58\x04\xaf\xcd\x2b\x1e\xb7\x77\x9b\x92\xab\xab\x8a\xfa\x8a\xa4\xfa\x51\xca\xec\x0b\x85\xdc\xd0\xfc\x2a\x06\x76\x03\x6d\x3f\x56\x63\x0a\x83\x1f\xfe\xb5\x02\x86\x1d\xd8\x91\x61\xc7\x08\xa9\xc0\x06\xc7\x3c\x93\x0c\xe5\xb9\x47\x56\x42\x6f\xf1\x8a\xa1\x12\xfb\x4e\xb9\xa6\x85\x00\xb4\x8d\x4e\xed\xbd\x41\x67\xb6\xff\xd0\xa1\x1d\x49\x44\x3a\x17\x3c\xe9\xd9\x49\x43\x67\x48\xfc\x06\x34\xf0\x6b\xb0\x8b\x8f\x34\x23\xf4\x46\x3d\xba\x7b\x4d\x19\x9b\x64\xdf\x57\x81\x17\xf0\xa2\x64\x5f\x0b\x2a\x1e\x2a\xda\x27\xd2\x86\xf7\x67\x33\xf2\x5b\x82\xed\x1d\x48\xa5\xc3\x89\x8d\x4a\xd6\x21\xe5\x0e\xd9\x06\x0d\xaa\xd4\x0a\x39\x53\x2e\x4d\x1b\xf1\x62\xce\x36\x80\x4d\x5d\x4e\x2d"}, {{0x2d,0xdd,0xb6,0xb8,0xfd,0x04,0xfa,0x90,0xec,0xe1,0xa7,0x09,0xf8,0x41,0x8f,0x2e,0x5d,0x0c,0x9c,0x43,0xaf,0xe7,0xcf,0xce,0x19,0xe6,0xad,0x15,0xa7,0x34,0x76,0xf7,},{0x80,0x59,0xde,0x6a,0x7c,0x47,0x76,0x48,0x9e,0xcc,0x2e,0x7d,0x70,0x7f,0xfc,0xe3,0x02,0x85,0xbf,0x30,0xa2,0x3f,0x78,0xd7,0x2d,0xb4,0x9c,0xfd,0x6e,0xd0,0xd4,0x92,},{0xc6,0x34,0xea,0x7b,0xf7,0x2e,0x89,0x5a,0x2e,0x79,0x6e,0x28,0x34,0x20,0x14,0x15,0xb8,0xb4,0x5e,0x05,0xe0,0x45,0x55,0x92,0x84,0xeb,0x90,0x52,0xc0,0xe8,0x4f,0x62,0xa5,0xa9,0xf0,0xc9,0x76,0x4f,0x75,0x76,0x78,0x8c,0x72,0x28,0xb1,0x9e,0xf5,0x17,0xc1,0x95,0x49,0x73,0x25,0xa4,0x8a,0x93,0x44,0xb1,0x47,0xc1,0x2f,0xd7,0x55,0x09,},"\x47\x4b\xaa\x59\x0a\x4c\xd7\x2d\x54\x24\xe5\x1d\x82\x57\xb3\xd4\x43\x25\xbc\x4c\x50\x63\xa0\x03\x3c\x86\xeb\xbe\x99\xed\x72\x12\x18\x4c\x19\x94\x4d\x08\x2a\x11\x53\x79\xdd\x4c\xec\xe9\x73\xfa\xa0\xbc\xa6\x48\x5b\xd2\x5f\x37\x44\xa7\x19\xe7\x0a\xa0\x29\x1e\x1b\x5a\x96\xe6\x37\xc1\x40\x61\x6a\x98\x26\x33\x57\xc7\x6b\x6e\xb0\x08\x3f\xe5\x14\x14\xe3\x86\x87\x0d\x0f\xdc\x7d\xd9\xab\xe4\xff\x6f\xb5\xbb\xf1\xe7\xb1\x5d\xac\x3e\x08\xe2\x61\x5f\x65\x5c\x31\x04\xce\xb3\x2a\x4c\xc2\xc9\xe9\xc4\x3c\xf2\x82\xd3\x46\xac\x25\x3c\xcc\x46\xb6\x35\xae\x04\x09\x73\xb4\x97\x35\x72\x0f\xfb\x89\x04\x69\xa5\x67\xc5\x82\x4e\x0c\x00\xd7\xcc\xd5\x50\x9a\x71\x80\x92\xa9\x06\x46\x1c\x4d\x61\x63\xea\xf4\x22\x41\x8f\x5f\xc6\xe0\x09\xfc\x3f\x52\x9a\xc6\x1a\x2f\x89\xbb\x8e\x0e\xd4\x5d\x94\x0c\x4c\x23\x31\xff\x8d\x8e\x1d\x6d\x58\xd4\x17\xd8\xfc\x26\x56\xa0\x2e\x87\x01\xae\xe7\x5a\xed\x91\x87\x24\xee\xbe\x4a\x2c\xf4\x74\x4c\x5c\x40\x1e\x21\x70\x23\xdf\x68\xa6\xf6\xa0\x22\x8b\xd0\x5a\x67\x9a\x69\x7d\x8d\xe7\x03\x6b\x9e\xd2\x69\x09\x0d\x3c\x65\x48\x6a\xfb\x91\xe2\x79\x54\xeb\x15\xb9\x64\x66\x5e\xde\x7a\xd0\x08\xf1\x2f\xb3\xa9\xd0\xe6\x9c\x13\xb4\x25\x4f\x43\x81\x9e\x08\x18\xa4\x19\x5f\x68\xb8\xa3\x8a\xe8\x1f\x3f\xcb\x18\x79\xc9\x5a\xb4\xcd\x0f\xfc\x38\xe3\x81\x08\x92\x60\xcc\xa9\x67\xac\xe5\xa0\x85\xb4\x57\xab\x5e\xb3\x63\x85\x21\x01\x37\x75\x70\xf9\xac\x9e\x38"}, {{0x55,0x47,0xf1,0x00,0x4b,0xae,0xdf,0xce,0x5c,0xfc,0x08,0x50,0xb0,0x53,0x02,0x37,0x4a,0xad,0x24,0xf6,0x16,0x39,0x94,0xec,0xd7,0x51,0xdf,0x3a,0xf3,0xc1,0x06,0x20,},{0x7c,0xe6,0x20,0x78,0x73,0x85,0xee,0x19,0x51,0xac,0x49,0xa7,0x73,0x52,0xee,0x0d,0x6f,0x8c,0x5c,0xd4,0x7d,0xf7,0x4e,0x9e,0x32,0x16,0xa6,0x32,0x4f,0xc7,0xcf,0x7f,},{0x29,0xdf,0x3a,0xd5,0x89,0x00,0x9c,0x66,0x7b,0xaa,0x5e,0x72,0xda,0xbb,0x4e,0x53,0xcb,0x78,0x76,0xde,0x4e,0x7e,0xfe,0x5c,0xc2,0x1e,0xad,0x7f,0xa8,0x78,0xdb,0x57,0xf9,0x7c,0x11,0x03,0xdd,0xb3,0x9a,0x86,0x1e,0xb8,0x86,0x53,0xc1,0xd4,0xec,0x3b,0x43,0x06,0xe4,0x58,0x4b,0x47,0xb8,0xbc,0x90,0x42,0x31,0x19,0xe7,0xe4,0xaf,0x00,},"\xa6\xc1\x7e\xeb\x5b\x80\x66\xc2\xcd\x9a\x89\x66\x73\x17\xa9\x45\xa0\xc7\xc9\x69\x96\xe7\x7a\xe8\x54\xc5\x09\xc6\xcd\x06\x31\xe9\x22\xad\x04\x50\x3a\xf8\x7a\x3c\x46\x28\xad\xaf\xed\x76\x00\xd0\x71\xc0\x78\xa2\x2e\x7f\x64\xbd\xa0\x8a\x36\x2b\x38\xb2\x6c\xa1\x50\x06\xd3\x8a\xcf\x53\x2d\x0d\xed\xea\x41\x77\xa2\xd3\x3f\x06\x95\x6d\x80\xe9\x63\x84\x8e\xc7\x91\xb2\x76\x2f\xa9\x94\x49\xb4\xf1\xa1\xed\x9b\x3f\x25\x80\xbe\x3a\xc7\xd7\xf5\x2f\xb1\x44\x21\xd6\x22\x2b\xa7\x6f\x80\x77\x50\xc6\xcb\xb0\xb1\x6f\x08\x95\xfc\x73\xd9\xdf\xc5\x87\xe1\xa9\xe5\xd1\xe5\x83\x75\xfb\xab\x70\x5b\x8f\x0c\x1f\xd7\xdf\x8b\x3a\xd4\x46\xf2\xf0\x84\x59\xe7\xed\x1a\xf5\x95\x56\xfb\xc9\x66\xdc\x24\x9c\x1c\xf6\x04\xf3\xe6\x77\xc8\xa0\x9d\x43\x63\x60\x87\x74\xbf\x38\x11\xbe\xf0\x64\x27\x48\xc5\x5c\x51\x6c\x7a\x58\x0f\xa3\x49\x90\x50\xac\xb3\x0e\xed\x87\x0d\x0d\x91\x17\x4c\xb6\x23\xe9\x8c\x3a\xd1\x21\xcf\x81\xf0\x4e\x57\xd4\x9b\x00\x84\x24\xa9\x8a\x31\xee\xaa\xf5\xf3\x8e\x00\x0f\x90\x3d\x48\xd2\x15\xed\x52\xf8\x62\xd6\x36\xa5\xa7\x36\x07\xde\x85\x76\x01\x67\x26\x7e\xfe\x30\xf8\xa2\x6e\xbc\x5a\xa0\xc0\x9f\x5b\x25\x8d\x33\x61\xca\x69\xd1\xd7\xee\x07\xb5\x96\x48\x17\x9a\xb2\x17\x0e\xc5\x0c\x07\xf6\x61\x6f\x21\x68\x72\x52\x94\x21\xa6\x33\x4a\x4a\x1e\xd3\xd2\x67\x1e\xf4\x7b\xc9\xa9\x2a\xfb\x58\x31\x4e\x83\x2d\xb8\xa9\x00\x34\x08\xa0\x48\x75\x03\xfe\x4f\x67\x77\x0d\xd4\xb6"}, {{0x3d,0xd7,0x20,0x3c,0x23,0x7a,0xef,0xe9,0xe3,0x8a,0x20,0x1f,0xf3,0x41,0x49,0x01,0x79,0x90,0x5f,0x9f,0x10,0x08,0x28,0xda,0x18,0xfc,0xbe,0x58,0x76,0x8b,0x57,0x60,},{0xf0,0x67,0xd7,0xb2,0xff,0x3a,0x95,0x7e,0x83,0x73,0xa7,0xd4,0x2e,0xf0,0x83,0x2b,0xcd,0xa8,0x4e,0xbf,0x28,0x72,0x49,0xa1,0x84,0xa2,0x12,0xa9,0x4c,0x99,0xea,0x5b,},{0x4c,0x03,0x69,0x35,0xa9,0x6a,0xbc,0x0d,0x05,0x0d,0x90,0x7b,0xed,0xbe,0x99,0x46,0xfb,0x97,0x43,0x9f,0x03,0x9c,0x74,0x2e,0x05,0x1c,0xcf,0x09,0xad,0xd7,0xdf,0x44,0xd1,0x7d,0xa9,0x8c,0x2c,0xa0,0x1b,0xdc,0x24,0x24,0xda,0x1e,0x4d,0xeb,0xf3,0x47,0xf8,0xff,0xf4,0x8a,0xc8,0x03,0x0d,0x2c,0xc0,0x7f,0x95,0x75,0xc0,0x44,0xbe,0x04,},"\xdb\x28\xed\x31\xac\x04\xb0\xc2\xde\xce\xe7\xa6\xb2\x4f\xc9\xa0\x82\xcc\x26\x2c\xa7\xcc\xf2\xa2\x47\xd6\x37\x2e\xc3\xe9\x12\x0e\xce\xdb\x45\x42\xea\x59\x3f\xea\x30\x33\x5c\x5a\xb9\xdd\x31\x8a\x3b\x4f\xd5\x83\x42\x99\xcf\x3f\x53\xd9\xef\x46\x13\x7b\x27\x3c\x39\x0e\xc3\xc2\x6a\x0b\x44\x70\xd0\xd9\x4b\x77\xd8\x2c\xae\x4b\x24\x58\x78\x37\xb1\x67\xbb\x7f\x81\x66\x71\x0b\xae\xb3\xee\x70\xaf\x79\x73\x16\xcb\x7d\x05\xfa\x57\xe4\x68\xae\x3f\x0b\xd4\x49\x40\x4d\x85\x28\x80\x8b\x41\xfc\xca\x62\xf5\xe0\xa2\xaa\x5d\x8f\x3a\xca\xb0\x08\xcc\x5f\x6e\x5a\xb0\x27\x77\xbd\xcd\xe8\x7f\x0a\x10\xef\x06\xa4\xbb\x37\xfe\x02\xc9\x48\x15\xcf\x76\xbf\xb8\xf5\xcd\xd8\x65\xcc\x26\xdc\xb5\xcf\x49\x2e\xdf\xd5\x47\xb5\x35\xe2\xe6\xa6\xd8\x54\x09\x56\xdc\xba\x62\xcf\xea\x19\xa9\x47\x44\x06\xe9\x34\x33\x7e\x45\x42\x70\xe0\x10\x36\xac\x45\x79\x3b\x6b\x8a\xce\xda\x18\x7a\x08\xd5\x6a\x2c\xe4\xe9\x8f\x42\xea\x37\x5b\x10\x1a\x6b\x9f\xcb\x42\x31\xd1\x71\xaa\x46\x3e\xeb\x43\x58\x6a\x4b\x82\xa3\x87\xbc\xdd\xaf\x71\xa8\x0f\xd5\xc1\xf7\x29\x2e\xfc\x2b\xd8\xe7\x0c\x11\xea\xa8\x17\x10\x60\x61\xb6\xc4\x61\xc4\x88\x3d\x61\x3c\xc0\x6c\x7e\x2a\x03\xf7\x3d\x90\xfc\x55\xcd\xc0\x72\x65\xee\xfd\x36\xbe\x72\x27\x03\x83\xd6\xc6\x76\xca\xe3\x7c\x93\x69\x1f\x1a\xe3\xd9\x27\xb3\xa1\xcd\x96\x3e\x42\x29\x75\x7a\xe5\x23\x1e\xea\x73\xa9\xf7\x15\x15\x62\x83\x05\x41\x0a\xc2\x59\x3b\x32\x5c\xc6\x31"}, {{0x28,0x27,0x75,0xdf,0x9e,0xbb,0xd7,0xc5,0xa6,0x5f,0x3a,0x2b,0x09,0x6e,0x36,0xee,0x64,0xa8,0xf8,0xea,0x71,0x9d,0xa7,0x77,0x58,0x73,0x9e,0x4e,0x74,0x76,0x11,0x1d,},{0xa2,0xb4,0x96,0x46,0x03,0x3a,0x13,0x93,0x7c,0xad,0x6b,0x0e,0x91,0x4e,0x3c,0xec,0x54,0x98,0x9c,0x25,0x2c,0xa5,0x64,0x3d,0x07,0x65,0x55,0xd8,0xc5,0x5e,0x56,0xe0,},{0x15,0x76,0x39,0x73,0x85,0x94,0x02,0x90,0x7d,0x8d,0xcb,0x86,0xad,0xc2,0x4a,0x2a,0x16,0x8b,0xa3,0xab,0xf2,0x24,0x61,0x73,0xd6,0x34,0x8a,0xfe,0xd5,0x1e,0xf6,0x0b,0x0c,0x0e,0xde,0xff,0x4e,0x10,0xbc,0xef,0x4c,0x6e,0x57,0x78,0xc8,0xbc,0x1f,0x5e,0x9e,0xe0,0x23,0x73,0x73,0x44,0x5b,0x45,0x51,0x55,0xd2,0x3d,0xe1,0x27,0xa2,0x02,},"\x14\xcc\x50\xc2\x97\x3e\xa9\xd0\x18\x7a\x73\xf7\x1c\xb9\xf1\xce\x07\xe7\x39\xe0\x49\xec\x2b\x27\xe6\x61\x3c\x10\xc2\x6b\x73\xa2\xa9\x66\xe0\x1a\xc3\xbe\x8b\x50\x5a\xea\xad\x14\x85\xc1\xc2\xa3\xc6\xc2\xb0\x0f\x81\xb9\xe5\xf9\x27\xb7\x3b\xfd\x49\x86\x01\xa7\x62\x2e\x85\x44\x83\x7a\xad\x02\xe7\x2b\xf7\x21\x96\xdc\x24\x69\x02\xe5\x8a\xf2\x53\xad\x7e\x02\x5e\x36\x66\xd3\xbf\xc4\x6b\x5b\x02\xf0\xeb\x4a\x37\xc9\x55\x49\x92\xab\xc8\x65\x1d\xe1\x2f\xd8\x13\x17\x73\x79\xbb\x0c\xe1\x72\xcd\x8a\xaf\x93\x7f\x97\x96\x42\xbc\x2e\xd7\xc7\xa4\x30\xcb\x14\xc3\xcd\x31\x01\xb9\xf6\xb9\x1e\xe3\xf5\x42\xac\xdf\x01\x7f\x8c\x21\x16\x29\x7f\x45\x64\x76\x8f\x4d\xb9\x5d\xad\x8a\x9b\xcd\xc8\xda\x4d\x8f\xb1\x3e\xf6\xe2\xda\x0b\x13\x16\xd3\xc8\xc2\xf3\xed\x83\x6b\x35\xfe\x2f\xd3\x3e\xff\xb4\x09\xe3\xbc\x1b\x0f\x85\x22\x5d\x2a\x1d\xe3\xbf\xc2\xd2\x05\x63\x94\x64\x75\xc4\xd7\xca\x9f\xdd\xba\xf5\x9a\xd8\xf8\x96\x1d\x28\x7a\xe7\xdd\x80\x3e\x7a\xf1\xfa\x61\x23\x29\xb1\xbd\xc0\x4e\x22\x56\x00\xae\x73\x1b\xc0\x1a\xe0\x92\x5a\xed\x62\xac\x50\xd4\x60\x86\xf3\x64\x6c\xf4\x7b\x07\x2f\x0d\x3b\x04\x4b\x36\xf8\x5c\xec\x72\x9a\x8b\xb2\xb9\x28\x83\xca\x4d\xfb\x34\xa8\xee\x8a\x02\x73\xb3\x1a\xf5\x09\x82\xbb\x61\x31\xbf\xa1\x1d\x55\x50\x4b\x1f\x6f\x1a\x0a\x00\x43\x8c\xa2\x6d\x8a\xb4\xf4\x8b\xcd\xdc\x9d\x5a\x38\x85\x1a\xbe\xde\x41\x51\xd5\xb7\x0d\x72\x07\x32\xa0\x0a\xbe\xa2\xc8\xb9\x79"}, {{0x47,0x30,0xa5,0xcf,0x97,0x72,0xd7,0xd6,0x66,0x5b,0xa7,0x87,0xbe,0xa4,0xc9,0x52,0x52,0xe6,0xec,0xd6,0x3e,0xc6,0x23,0x90,0x54,0x7b,0xf1,0x00,0xc0,0xa4,0x63,0x75,},{0xf9,0xf0,0x94,0xf7,0xcc,0x1d,0x40,0xf1,0x92,0x6b,0x5b,0x22,0xdc,0xe4,0x65,0x78,0x44,0x68,0xb2,0x0a,0xb3,0x49,0xbc,0x6d,0x4f,0xdf,0x78,0xd0,0x04,0x2b,0xbc,0x5b,},{0x55,0x2c,0x73,0x47,0xbd,0xfe,0x13,0x16,0x46,0xce,0x09,0x32,0xd8,0x2a,0x36,0xd2,0xc1,0xb7,0x6d,0x7c,0x30,0xee,0x89,0x0e,0x05,0x92,0xe1,0x9f,0x9d,0x18,0xb9,0xa5,0x6f,0x48,0xd7,0xa9,0xb6,0x8c,0x01,0x7d,0xa6,0xb5,0x50,0xc9,0x43,0xaf,0x4a,0x90,0x7b,0xaf,0x31,0x7e,0x41,0x9f,0xbb,0xc9,0x6f,0x6c,0xf4,0xbf,0xad,0x42,0xde,0x00,},"\xe7\x47\x6d\x2e\x66\x84\x20\xe1\xb0\xfa\xdf\xba\xa5\x42\x86\xfa\x7f\xa8\x90\xa8\x7b\x82\x80\xe2\x60\x78\x15\x22\x95\xe1\xe6\xe5\x5d\x12\x41\x43\x5c\xc4\x30\xa8\x69\x3b\xb1\x0c\xde\x46\x43\xf5\x9c\xbf\xcc\x25\x6f\x45\xf5\x09\x0c\x90\x9a\x14\xc7\xfc\x49\xd3\x7b\xfc\x25\xaf\x11\xe8\xf4\xc8\x3f\x4c\x32\xd4\xaa\xbf\x43\xb2\x0f\xa3\x82\xbb\x66\x22\xa1\x84\x8f\x8f\xfc\x4d\xff\x34\x08\xbb\x4e\xc7\xc6\x7a\x35\xb4\xcd\xae\xe5\xe2\x79\xc0\xfc\x0a\x66\x09\x3a\x9f\x36\xa6\x0f\xdd\x65\xe6\x33\x4a\x80\x4e\x84\x5c\x85\x30\xb6\xfd\xa3\x63\xb5\x64\x03\x37\xd0\x27\x24\x3c\xcf\xb3\xc1\x77\xf4\x3e\x71\x78\x96\xe4\x6e\xad\x7f\x72\xca\x06\xaa\x0f\xf1\xe7\x72\x47\x12\x1b\xaf\x48\xbe\x9a\x44\x5f\x72\x9c\xa1\x39\x0f\xc4\x61\x51\xcb\xd3\x3f\xcb\xd7\x37\x3f\x27\xa6\xba\x55\xc9\x2c\xbf\x69\x45\xb0\x9b\x44\xb9\xa4\xe5\x80\x0d\x40\x30\x70\xae\x66\x04\x89\x97\xb2\x19\x7f\x02\x18\x1a\x09\x7e\x56\x3f\x9b\x9a\xcc\x84\x11\x39\x25\x8a\x25\x8b\xc6\x10\xd3\xbd\x89\x16\x37\x35\x6b\x2e\xdc\x8c\x18\x4c\x35\xc6\x5a\xf9\x1a\xaf\x7b\x1c\x16\xd7\x4a\x5f\x5f\x86\x25\x48\x13\x92\x54\xec\xf5\x50\x63\x1d\x5f\x88\x49\xaf\xdb\x5b\x64\xcf\x36\x6f\xf2\x63\x3a\x93\xf3\xa1\x8c\x39\xb5\x15\x02\x45\xfb\x5f\x33\xc9\xe4\xe2\xd9\x4a\xf6\x96\x3a\x70\xb8\x8f\x9e\x7e\x51\x9f\x8f\xa2\xa0\xf2\xe3\x74\x9d\xe8\x83\xd0\xe6\xf0\x52\xa9\x49\xd0\xfc\x71\x53\xa8\x69\x3f\x6d\x80\x1d\x73\x52\xeb\x2f\x7a\x46\x5c\x0e"}, {{0x27,0x70,0xaa,0xdd,0x1d,0x12,0x3e,0x95,0x47,0x83,0x2d,0xfb,0x2a,0x83,0x7e,0xba,0x08,0x91,0x79,0xef,0x4f,0x23,0xab,0xc4,0xa5,0x3f,0x2a,0x71,0x4e,0x42,0x3e,0xe2,},{0x3c,0x5f,0xbb,0x07,0x53,0x0d,0xd3,0xa2,0x0f,0xf3,0x5a,0x50,0x0e,0x37,0x08,0x92,0x63,0x10,0xfe,0xd8,0xa8,0x99,0x69,0x02,0x32,0xb4,0x2c,0x15,0xbd,0x86,0xe5,0xdc,},{0xf2,0x67,0x71,0x5e,0x9a,0x84,0xc7,0x31,0x4f,0x2d,0x58,0x69,0xef,0x4a,0xb8,0xd2,0x14,0x9a,0x13,0xf7,0xe8,0xe1,0xc7,0x28,0xc4,0x23,0x90,0x62,0x93,0xb4,0x9c,0xe6,0x28,0x34,0x54,0xdd,0x1c,0x7b,0x04,0x74,0x1d,0xf2,0xea,0xbe,0xdc,0x4d,0x6a,0xb1,0x39,0x7d,0xc9,0x5a,0x67,0x9d,0xf0,0x4d,0x2c,0x17,0xd6,0x6c,0x79,0xbb,0x76,0x01,},"\xa5\xcc\x20\x55\xeb\xa3\xcf\x6f\x0c\x63\x32\xc1\xf2\xab\x58\x54\x87\x09\x13\xb0\x3f\xf7\x09\x3b\xc9\x4f\x33\x5a\xdd\x44\x33\x22\x31\xd9\x86\x9f\x02\x7d\x82\xef\xd5\xf1\x22\x71\x44\xab\x56\xe3\x22\x2d\xc3\xdd\xcc\xf0\x62\xd9\xc1\xb0\xc1\x02\x4d\x9b\x41\x6d\xfa\x3e\xe8\xa7\x02\x79\x23\x00\x34\x65\xe0\xff\xae\xfb\x75\xb9\xf2\x9d\xc6\xbc\xf2\x13\xad\xc5\xe3\x18\xfd\x8b\xa9\x3a\x7a\xa5\xbf\xb4\x95\xde\x9d\x7c\x5e\x1a\x19\x6c\xd3\xa2\xd7\x72\x1f\x8b\xa7\x85\xaa\x90\x52\xa1\x81\x1c\x7f\xcc\x8f\x93\x93\x27\x65\x05\x9c\xab\x9c\x9b\x71\x89\x45\x89\x5e\xf2\x6f\x3a\xc0\x48\xd4\xca\xbf\x91\xa9\xe6\xaa\x83\xac\x14\xd4\x31\x56\x82\x78\x37\x91\x4e\xb7\x63\xa2\x3c\xba\x53\xf6\x0f\x15\x0f\x4b\x70\x20\x3e\xc1\x83\x3f\xf1\x05\x84\x94\x57\xa8\xda\x73\x27\x66\x1f\xb2\x3a\x55\x41\x64\xe0\x5f\xcf\x01\x46\xb1\x06\x74\x96\x4b\xe6\xf6\xaa\x0a\xcc\x94\xc4\x1a\xd5\x71\x80\xe5\x18\x0d\x19\x9b\xd9\x10\x2f\x55\xd7\x40\xe8\x17\x89\xb1\x56\x71\xbb\xd0\x67\x0e\x6d\xe5\xd9\x7e\x1a\xe6\x26\xd8\xa0\xeb\xc3\x2c\x8f\xd9\xd2\x47\x37\x27\x4e\x47\xd2\xdd\x59\x41\xa2\x72\xe7\x2a\x59\x89\x28\xad\x10\x9c\xde\x93\x7b\xf2\x48\xd5\x7f\x5d\x29\x42\x98\x3c\x51\xe2\xa8\x9f\x8f\x05\x4d\x5c\x48\xdf\xad\x8f\xcf\x1f\xfa\x97\xf7\xde\x6a\x3a\x43\xca\x15\xfc\x67\x20\xef\xae\xc6\x9f\x08\x36\xd8\x42\x23\xf9\x77\x6d\x11\x1e\xc2\xbb\xc6\x9b\x2d\xfd\x58\xbe\x8c\xa1\x2c\x07\x21\x64\xb7\x18\xcd\x7c\x24\x6d\x64"}, {{0x4f,0xda,0xb7,0xc1,0x60,0x0e,0x70,0x11,0x4b,0x11,0xf5,0x33,0x24,0x23,0x76,0xaf,0x76,0x14,0xb4,0xd5,0xda,0x04,0x6a,0xc4,0xbe,0xde,0xa2,0x1d,0x8a,0x36,0x15,0x98,},{0xa2,0x5c,0x9a,0x94,0xd6,0xe4,0xec,0xd9,0x5a,0x4b,0xd6,0x80,0x5f,0x76,0x2e,0xb1,0xc4,0x57,0xa8,0xd4,0x5d,0x24,0x32,0x38,0xb1,0x83,0x9c,0xbb,0xa8,0xf4,0x41,0xcc,},{0x50,0x75,0xc0,0x90,0xcf,0xbe,0xb6,0xb0,0x18,0x02,0xaf,0x7f,0x4d,0xa5,0xaa,0x4f,0x43,0x4d,0x5e,0xe2,0xf3,0x53,0x0e,0xeb,0xb7,0x5c,0x85,0xe0,0x86,0x21,0xf8,0x3e,0xdc,0x08,0xaa,0x96,0x69,0x38,0x94,0xa4,0x27,0x76,0x33,0xba,0x81,0xe1,0x9e,0x9e,0x55,0xaf,0x5c,0x49,0x5d,0xaa,0x5e,0x1a,0x6f,0x8c,0xbb,0x79,0xc0,0x1c,0x72,0x07,},"\xda\x40\x58\x90\xd1\x1a\x87\x2c\x11\x9d\xab\x5e\xfc\xbf\xf6\x1e\x93\x1f\x38\xec\xcc\xa4\x57\xed\xc6\x26\xd3\xea\x29\xed\x4f\xe3\x15\x4f\xaf\xec\x14\x44\xda\x74\x34\x3c\x06\xad\x90\xac\x9d\x17\xb5\x11\xbc\xb7\x3b\xb4\x9d\x90\xba\xfb\x7c\x7e\xa8\x00\xbd\x58\x41\x1d\xf1\x27\x5c\x3c\xae\x71\xb7\x00\xa5\xda\xb4\x91\xa4\x26\x16\x78\x58\x79\x56\xaa\x4a\x21\x9e\x1a\xc6\xdd\x3f\xb2\xcb\x8c\x46\x19\x72\x18\xe7\x26\xdc\x7e\xd2\x34\x52\x6a\x6b\x01\xc0\xd7\x2c\xb9\x3a\xb3\xf4\xf3\x8a\x08\xe5\x94\x0b\x3f\x61\xa7\x2a\xd2\x78\x9a\x05\x32\x00\x0f\xac\x1d\x2d\x2e\x3a\xd6\x32\xac\x8b\x62\xbb\x3f\xf5\xb9\x9d\x53\x59\x7b\xf4\xd4\x4b\x19\x67\x49\x24\xdf\x9b\x3d\xb3\xd0\x25\x3f\x74\x62\x7c\xca\xb3\x00\x31\xc8\x5e\x29\x1c\x58\xb5\xfa\x91\x67\x52\x2a\x46\x74\x6f\xc3\x07\x03\x67\x45\xd4\xf9\x81\x77\x86\xe5\xd3\x00\xe6\xc5\xd5\x03\x12\x5f\xea\x01\xde\xc3\xe3\xfe\xdb\xf3\x86\x1c\xa2\x62\x7a\x05\x18\xfb\x2b\x24\xe5\xa7\xa0\x14\x17\x87\x19\xe9\xb3\x45\xf7\xb2\x49\xce\x3a\x41\x32\x80\xc8\xde\xb6\x74\xf5\x9a\x25\xbe\x92\xa8\xab\x64\x00\xc7\xc5\x2b\x07\x28\xae\x34\xe2\x2b\x2e\xc2\x00\xc1\xcb\xab\xa2\xcc\xd8\xaf\x29\x24\x9d\x17\xaf\x60\xc3\x60\x07\xa7\x22\xfc\x80\x25\x8a\x7b\xeb\xab\x1c\xda\xad\x74\x62\xa8\xb7\x58\x8c\x2f\x7e\x27\xc6\xd0\x7a\xfc\xf6\x01\x17\xfe\xd1\x1b\xd6\x85\x9e\x75\xe3\xb4\xfc\xee\x39\x81\x88\x1e\x95\xdd\x11\x68\x27\xdd\x4b\x36\x9a\xf0\x69\xd3\xc8\xf2\x67\x6f\x8a"}, {{0x26,0x45,0x04,0x60,0x4e,0x70,0xd7,0x2d,0xc4,0x47,0x4d,0xbb,0x34,0x91,0x3e,0x9c,0x0f,0x80,0x6d,0xfe,0x18,0xc7,0x87,0x9a,0x41,0x76,0x2a,0x9e,0x43,0x90,0xec,0x61,},{0xeb,0x2b,0x51,0x8c,0xe7,0xdc,0x71,0xc9,0x1f,0x36,0x65,0x58,0x16,0x51,0xfd,0x03,0xaf,0x84,0xc4,0x6b,0xf1,0xfe,0xd2,0x43,0x32,0x22,0x35,0x3b,0xc7,0xec,0x51,0x1d,},{0xee,0xa4,0x39,0xa0,0x0f,0x7e,0x45,0x9b,0x40,0x2b,0x83,0x51,0x50,0xa7,0x79,0xee,0xd1,0x71,0xab,0x97,0x1b,0xd1,0xb5,0x8d,0xcc,0x7f,0x93,0x86,0xda,0xdd,0x58,0x3d,0xe8,0xdc,0x69,0xe2,0x67,0x12,0x1d,0xde,0x41,0xf0,0xf9,0x49,0x3d,0x45,0x0b,0x16,0x21,0x9c,0xdf,0x3c,0x22,0xf0,0x94,0x82,0xce,0x40,0x2f,0xe1,0x7c,0xa4,0x9e,0x08,},"\x90\x1d\x70\xe6\x7e\xd2\x42\xf2\xec\x1d\xda\x81\x3d\x4c\x05\x2c\xfb\x31\xfd\x00\xcf\xe5\x44\x6b\xf3\xb9\x3f\xdb\x95\x0f\x95\x2d\x94\xef\x9c\x99\xd1\xc2\x64\xa6\xb1\x3c\x35\x54\xa2\x64\xbe\xb9\x7e\xd2\x0e\x6b\x5d\x66\xad\x84\xdb\x5d\x8f\x1d\xe3\x5c\x49\x6f\x94\x7a\x23\x27\x09\x54\x05\x1f\x8e\x4d\xbe\x0d\x3e\xf9\xab\x30\x03\xdd\x47\xb8\x59\x35\x6c\xec\xb8\x1c\x50\xaf\xfa\x68\xc1\x5d\xad\xb5\xf8\x64\xd5\xe1\xbb\x4d\x3b\xad\xa6\xf3\xab\xa1\xc8\x3c\x43\x8d\x79\xa9\x4b\xfb\x50\xb4\x38\x79\xe9\xce\xf0\x8a\x2b\xfb\x22\xfa\xd9\x43\xdb\xf7\x68\x37\x79\x74\x6e\x31\xc4\x86\xf0\x1f\xd6\x44\x90\x50\x48\xb1\x12\xee\x25\x80\x42\x15\x3f\x46\xd1\xc7\x77\x2a\x06\x24\xbc\xd6\x94\x1e\x90\x62\xcf\xda\x75\xdc\x87\x12\x53\x3f\x40\x57\x33\x5c\x29\x80\x38\xcb\xca\x29\xeb\xdb\x56\x0a\x29\x5a\x88\x33\x96\x92\x80\x8e\xb3\x48\x1f\xd9\x73\x5e\xa4\x14\xf6\x20\xc1\x43\xb2\x13\x3f\x57\xbb\x64\xe4\x47\x78\xa8\xca\x70\x91\x82\x02\xd1\x57\x42\x61\x02\xe1\xdf\xc0\xa8\xf7\xb1\xae\x48\x7b\x74\xf0\x27\x92\x63\x31\x54\xdf\xe7\x4c\xaa\x1b\x70\x88\xfd\xa2\x2f\xa8\xb9\xbc\x35\x4c\x58\x5f\x15\x67\x70\x6e\x29\x55\x49\x38\x70\xf5\x41\x69\xe0\xd7\x69\x11\x59\xdf\x43\x89\x79\x61\xd2\x4a\x85\x2e\xa9\x70\xc5\x14\x94\x8f\x3b\x48\xf7\x1e\xe5\x86\xe7\x2e\xc7\x8d\xb8\x20\xf2\x53\xe0\x8d\xb8\x4f\x6f\x31\x2c\x43\x33\xbd\x0b\x73\x2f\xe7\x58\x83\x50\x77\x83\xe9\xa1\xfd\x4f\xba\xb8\xe5\x87\x0f\x9b\xf7\xad\x58\xaa"}, {{0x2c,0xa7,0x44,0x7a,0x36,0x68,0xb7,0x48,0xb1,0xfd,0x3d,0x52,0xd2,0x08,0x0d,0x30,0xe3,0x4d,0x39,0x7b,0xb2,0x84,0x6c,0xaf,0x8f,0x65,0x9a,0xc1,0x68,0x78,0x8c,0xa5,},{0xab,0x33,0x1c,0xd4,0x0a,0x31,0xd0,0x17,0x3c,0x0c,0x8c,0x1c,0x17,0x00,0x25,0x32,0x80,0x7b,0xf8,0x9e,0x3e,0xdb,0x6d,0x34,0xc2,0xdd,0x82,0x94,0x63,0x2b,0x9f,0xbc,},{0xf9,0x3a,0xda,0x15,0xae,0x9c,0xd2,0xb5,0x4f,0x26,0xf8,0x6f,0x0c,0x28,0x39,0x2a,0xed,0x5e,0xb6,0xb6,0xb4,0x4d,0x01,0xa4,0xe3,0x3a,0x54,0xe7,0xda,0x37,0xc3,0x8e,0x8d,0x53,0x36,0x6f,0x73,0xfd,0x85,0xbe,0x64,0x2e,0x4e,0xc8,0x12,0x36,0xd1,0x63,0xf0,0xd0,0x25,0xe7,0x6c,0x8b,0xbd,0xd6,0x5d,0x43,0xdf,0x49,0xf0,0x9c,0x1f,0x01,},"\xa8\x2b\xcd\x94\x24\xbf\xfd\xa0\xf2\xf5\xe9\xea\xe1\x78\x35\xdb\xe4\x68\xf6\x1b\x78\x5a\xab\x82\x93\x47\x37\xa9\x1c\x5f\x60\x2c\xb7\xc6\x17\xcd\xff\xe8\x7c\xad\x72\x6a\x49\x72\xe1\x5a\x7b\x8e\xe1\x47\xf0\x62\xd2\xa5\xa4\xd8\x97\x06\xb5\x71\xfa\x8a\xa2\xb9\x59\x81\xc7\x8a\xbe\xaa\xae\x86\x20\x3f\xa2\xc0\xe0\x72\x97\x40\x6e\xa8\xc2\x71\x11\xa8\x6d\xbe\x1d\x5a\x7c\x3b\x7a\xe9\x30\x90\x4d\x98\x90\xf6\xd4\xab\xeb\xd1\x41\x2a\x73\xad\x5f\xee\xa6\x4a\xcf\x06\x5d\x3e\x63\xb5\xcb\xe2\x0c\xf2\x0b\xbd\x2d\x8b\x94\xf9\x05\x3e\xd5\xf6\x66\x33\x48\x25\x30\x12\x44\x46\x60\x59\x18\xde\x66\x45\x5e\x8c\xf4\xb1\x01\xa1\x27\x23\x3c\x4e\x27\xd5\xd5\x5b\xf9\x5b\xd3\x19\x5d\x03\x40\xd4\x35\x31\xfc\x75\xfa\xf8\xdd\xed\x52\x75\xbf\x89\x75\x0d\xe8\x38\xfd\x10\xc3\x17\x45\xbe\x4c\xa4\x1f\xa8\x71\xcb\x0f\x9b\x01\x67\x06\xa1\xa7\xe3\xc4\x4b\xb9\x0a\xc7\xa8\xad\x51\xe2\x72\x38\x92\x92\xfd\x6c\x98\xad\x7a\x06\x9e\x76\xe3\xf5\xf3\xe0\xcc\x77\x0b\x9e\x9b\x35\xa7\x65\xd0\xd9\x37\x12\xd7\xcd\xab\xd1\x7e\x5d\x01\xdd\x81\x83\xaf\x4a\xd9\x36\x5d\xb0\xa0\xfa\x41\x38\x1f\xce\x60\xa0\x81\xdf\x1c\x5a\xb0\xf8\xc1\x8f\x95\xa7\xa8\xb5\x82\xdf\xff\x7f\x14\x9e\xa5\x79\xdf\x06\x23\xb3\x3b\x75\x08\xf0\xc6\x63\xf0\x1e\x3a\x2d\xcd\x9d\xfb\xee\x51\xcc\x61\x52\x20\xfd\xaf\xfd\xab\x51\xbd\xae\x42\xcb\x9f\x7f\xa9\xe3\xb7\xc6\x9c\xc8\xad\xa5\xcc\xd6\x42\x52\x9b\xa5\x14\xfd\xc5\x4f\xcf\x27\x20\xb8\xf5\xd0\x8b\x95"}, {{0x49,0x4e,0xa9,0xbc,0xce,0x26,0x88,0x5b,0x7d,0x17,0xd1,0xfc,0x11,0x44,0x48,0xf2,0x39,0xf0,0xce,0x46,0xe5,0xf2,0x47,0xb4,0xc9,0x99,0xfa,0x86,0x29,0x69,0x24,0x72,},{0x69,0x01,0xe5,0xef,0xae,0x57,0x53,0x6b,0xa5,0xfd,0xd9,0x6b,0x59,0x65,0x73,0x59,0x06,0x5f,0x25,0xd3,0x91,0xa1,0xaa,0x8c,0xdc,0x0d,0x38,0xbb,0x5d,0x53,0xc1,0x39,},{0x54,0x8a,0x09,0x3a,0x68,0x03,0x61,0xb7,0xdc,0x56,0xf1,0x45,0x03,0xb5,0x5e,0xee,0xc3,0xb3,0xf4,0xfd,0x4c,0xa9,0x9d,0x6a,0xed,0xce,0x08,0x30,0xf7,0xf4,0xae,0x2f,0x73,0x28,0x53,0x9b,0x34,0xc4,0x8f,0xc9,0x76,0x09,0x22,0x33,0x3d,0xae,0x9c,0x7c,0x01,0x7e,0x7d,0xb7,0x3b,0x8f,0xaa,0x6c,0x06,0xbe,0x05,0xe3,0x47,0x99,0x2b,0x06,},"\x3b\xad\xbf\xa5\xf5\xa8\xaa\x2c\xce\x0a\x60\xe6\x86\xcd\xce\x65\x4d\x24\x45\x2f\x98\xfd\x54\x87\x2e\x73\x95\xb3\x94\x64\x38\x0a\x0e\x18\x55\x57\xea\x13\x4d\x09\x57\x30\x86\x4f\x42\x54\xd3\xdd\x94\x69\x70\xc1\x0c\x80\x4f\xcc\x08\x99\xdf\xa0\x24\x20\x5b\xe0\xf8\x0b\x1c\x75\x44\x95\x23\x32\x4f\xe6\xa0\x75\x1e\x47\xb4\xff\x48\x22\xb8\xc3\x3e\x9e\xaf\x1d\x1d\x96\xe0\xde\x3d\x4a\xcd\x89\x69\x6b\x7f\xcc\x03\xd4\x9f\x92\xf8\x2b\x97\x25\x70\x0b\x35\x0d\xb1\xa8\x76\x15\x36\x95\x45\x56\x1b\x85\x99\xf5\xea\x92\x0a\x31\x0a\x8b\xaf\xc0\xe8\xd7\x46\x8c\xbf\x6f\x38\x20\xe9\x43\x59\x4a\xfd\xd5\x16\x6e\x4e\x33\x09\xdd\xdd\x76\x94\xef\x67\xe6\x94\xf3\x4f\xc6\x27\x24\xff\x96\xac\x33\x64\x17\x6f\x34\xe8\xa0\x2b\x4c\xf5\x69\xdb\x5b\x8f\x77\xd5\x85\x12\xae\xda\xbf\x0b\xcd\x1c\x2d\xf1\x2d\xb3\xa9\x47\x3f\x94\x8c\x5c\x32\x43\x30\x9a\xae\x46\xc4\x9e\xfd\x08\x8b\x60\xf3\x1a\x8a\x72\xad\x7e\x5a\x35\xac\xc5\xd8\x9f\xa6\x68\x07\xeb\x5d\x3b\xa9\xcd\xf0\x8d\x47\x53\xcb\x85\x08\x9e\xe3\x6f\x5c\x96\xb4\x32\xb6\x92\x83\x52\xaf\xad\x58\x01\x22\x25\xd6\x15\x7f\x9e\x36\x11\x42\x6d\xf9\x21\xb6\xd1\xd8\x37\x46\x28\xa6\x30\x31\xe9\xff\xb9\x0e\x42\xff\xbb\xa0\x21\xf1\x74\xf6\x85\x03\x15\x54\x30\x15\x2c\x91\x55\xdc\x98\xff\xa2\x6c\x4f\xab\x06\x5e\x1f\x8e\x46\x22\xc2\xf2\x8a\x8c\xb0\x43\x11\x0b\x61\x74\x41\x14\x0f\x8e\x20\xad\xc1\x6f\x79\x9d\x1d\x50\x96\xb1\xf5\x05\x32\xbe\x50\x42\xd2\x1b\x81\xea\x46\xc7"}, {{0x00,0xd7,0x35,0xeb,0xae,0xe7,0x5d,0xd5,0x79,0xa4,0x0d,0xfd,0x82,0x50,0x82,0x74,0xd0,0x1a,0x15,0x72,0xdf,0x99,0xb8,0x11,0xd5,0xb0,0x11,0x90,0xd8,0x21,0x92,0xe4,},{0xba,0x02,0x51,0x7c,0x0f,0xdd,0x3e,0x26,0x14,0xb3,0xf7,0xbf,0x99,0xed,0x9b,0x49,0x2b,0x80,0xed,0xf0,0x49,0x5d,0x23,0x0f,0x88,0x17,0x30,0xea,0x45,0xbc,0x17,0xc4,},{0xdc,0xdc,0x54,0x61,0x19,0x37,0xd2,0xbd,0x06,0xca,0xcd,0x98,0x18,0xb3,0xbe,0x15,0xce,0x74,0x25,0x42,0x7a,0x75,0xf5,0x0d,0x19,0x7a,0x33,0x7a,0x3b,0x8b,0xa6,0x71,0x4e,0xf4,0x88,0x66,0xf2,0x43,0xbd,0x5a,0xc7,0x41,0x5e,0x91,0x45,0x17,0xa2,0xc1,0xc5,0xa9,0x53,0xf4,0x32,0xb9,0x9d,0xb0,0xe6,0x20,0xd6,0x4f,0x74,0xeb,0x85,0x05,},"\x59\xc0\xb6\x9a\xf9\x5d\x07\x4c\x88\xfd\xc8\xf0\x63\xbf\xdc\x31\xb5\xf4\xa9\xbc\x9c\xec\xdf\xfa\x81\x28\xe0\x1e\x7c\x19\x37\xdd\xe5\xeb\x05\x70\xb5\x1b\x7b\x5d\x0a\x67\xa3\x55\x5b\x4c\xdc\xe2\xbc\xa7\xa3\x1a\x4f\xe8\xe1\xd0\x3a\xb3\x2b\x40\x35\xe6\xda\xdb\xf1\x53\x20\x59\xee\x01\xd3\xd9\xa7\x63\x3a\x0e\x70\x6a\x11\x54\xca\xb2\x2a\x07\xcd\x74\xc0\x6a\x3c\xb6\x01\x24\x4c\xf3\xcf\x35\xa3\x5c\x31\x00\xba\x47\xf3\x13\x72\xa2\xda\x65\xdc\xff\x0d\x7a\x80\xa1\x05\x5d\x8a\xa9\x92\x12\xe8\x99\xaa\xd7\xf0\x2e\x94\x9e\x6f\xee\x4d\x3c\x9c\xef\xa8\x50\x69\xea\xff\x1f\x6a\xd0\x6f\xc3\x00\xc8\x71\xab\x82\xb2\xbe\xdb\x93\x4d\x20\x87\x5c\x2a\x26\x32\x42\xcd\xb7\xf9\xbe\x19\x2a\x87\x10\xb2\x4c\x7e\xa9\x8d\x43\xda\xec\x8b\xaa\x55\x53\xc6\x78\xa3\x8f\x0e\x0a\xdf\x7d\x3f\xf2\xdc\xc7\x99\xa1\xdb\xad\x6e\xab\x1c\x3d\x94\x58\xa9\xdb\x92\x2f\x02\xe7\x5c\xfa\xb9\xd6\x5c\x73\x36\xda\xe7\x18\x95\xd5\xbb\x15\xca\xc2\x03\xf2\xb3\x8b\x99\x96\xc4\x10\xf8\x65\x5a\xd2\x2d\x3c\x09\x1c\x20\xb7\xf9\x26\xd4\x5e\x78\x01\x28\xf1\x97\x47\x46\x2a\xbc\x5c\x58\x93\x2f\xbb\x9e\x0b\xc6\x2d\x53\x86\x88\x02\xf1\xb0\x83\xf1\x83\xb8\xa1\xf9\x43\x49\x86\xd5\xcf\x97\xc0\x4e\x2f\x3e\x14\x57\x30\xcb\xa9\x87\x79\xc7\xfe\xd0\xca\xb1\xc0\x5d\x5e\x46\x53\xc6\xc3\xf6\x73\x62\x60\xbc\x78\xee\x43\x72\x86\x2f\xfe\x9e\x90\x37\x1d\x76\x2c\x74\x32\x78\x1f\x35\xce\xd8\x84\xa4\xba\xca\x05\x65\x3e\xf2\x5f\x25\xa6\xf3\xd5\x62\x83\x08"}, {{0x8c,0x34,0xb9,0x05,0x44,0x0b,0x61,0x91,0x1d,0x1d,0x81,0x37,0xc5,0x3d,0x46,0xa1,0xa7,0x6d,0x46,0x09,0xaf,0x97,0x3e,0x18,0xeb,0x4c,0x57,0x09,0x29,0x56,0x27,0xbb,},{0xb6,0x9a,0x8b,0x2f,0xdf,0x5c,0x20,0xe7,0x34,0xc2,0xff,0xb2,0x94,0xbc,0x8a,0xe1,0x01,0x1d,0x66,0x4f,0x11,0xaf,0xe7,0xfb,0xc4,0x71,0x92,0x5c,0xf7,0x2f,0xa9,0x9d,},{0x3e,0x0b,0x72,0x07,0x3d,0xc9,0x37,0x5e,0xed,0xcc,0xa6,0xc4,0xfc,0x1c,0xd3,0x15,0x93,0x8a,0x05,0x0c,0x92,0x71,0x6b,0xd2,0x28,0x4f,0x46,0x29,0xa9,0x62,0xbe,0xec,0x0b,0x7d,0x7c,0xf1,0x6a,0xb9,0x23,0xd5,0x8f,0x5b,0x90,0xd3,0x90,0x1a,0x8e,0x5c,0x75,0xc8,0xf1,0x7d,0xab,0x99,0x98,0xe0,0x07,0xd8,0xc4,0x95,0x11,0x97,0x3d,0x0e,},"\x30\xb5\x7a\x38\x9b\x48\xa0\xbe\xb1\xa4\x84\x32\xbf\xf6\xb3\x14\xbd\xed\x79\xc4\xa1\x76\x3a\x5a\xcb\x57\xce\xa1\xbf\xb4\xc6\xd0\x16\xcf\x09\x0f\x5b\xd0\x5b\xbd\x11\x4e\x33\xae\x7c\x17\x78\x2d\xfa\x26\x4f\x46\xc4\x5f\x8c\x59\x9c\x60\x30\x16\xfe\x9f\xf0\x5b\x6b\x5a\x99\xe9\x2f\xe7\x13\xa4\xcd\x5c\x41\xb2\x92\xed\x2b\xb2\xe9\xcf\x33\xa4\x40\x54\x2e\x82\x1e\xc8\x2c\xbf\x66\x5c\x3f\x02\xe3\xdc\x33\x7d\x7f\xdb\x58\xe3\x1b\x27\xcb\x29\x54\x54\x14\x68\x81\x46\x98\x51\x0d\xf1\x8c\x85\xc8\x1f\xad\x12\xdb\x11\xec\x6b\x96\x6f\x49\x30\xda\x56\x46\xb9\x91\xdb\x97\x44\x50\x97\xda\x30\xda\xb6\x1c\xda\x53\xa4\x10\x83\xcb\x96\xad\xd1\x9d\xe6\xc5\xee\xc3\x23\xbc\xa9\xd3\x53\x0e\x38\xc0\x0b\x35\xaf\x73\x60\x07\x76\x01\xbe\x6a\xc9\x7f\x30\x30\xf9\x30\xa2\x7b\x90\xfe\x8b\x69\x11\xba\xe3\x89\x06\x5a\xdc\x15\xe1\x88\x23\x00\xe2\xa0\x03\x27\x4d\x23\x18\x2d\x5e\xfd\x5b\xa4\xb9\x13\x0c\x07\xbd\x5c\x65\xfe\xcb\x8b\x5c\xb7\xeb\x38\x83\x6b\x31\x8b\xef\xdf\xd7\x7d\xe4\xd6\xca\x01\x81\xf7\x7a\xe5\x74\x08\x91\x68\x32\x25\xf5\x49\xdd\x84\x26\x14\x5c\x97\xc5\x81\x8c\x31\x9f\x7a\xb2\xd8\x68\xe1\xa4\x1c\xea\xb6\x4c\x08\x51\x16\x06\x98\x97\xbf\x2c\xa3\x66\x76\x52\x40\x61\x55\xed\x06\x46\x43\x1b\x6d\xe1\xcc\xc0\x3b\x42\x79\xae\x4d\x32\x66\x79\x26\x5d\xce\x82\x04\x8e\x72\x98\xe1\xf8\x7f\xce\xc0\x76\x8a\xc0\xf5\xd8\xff\x84\xf7\x21\x0b\xe5\x4d\x41\x1a\xf8\xed\xea\x72\x17\xf4\xe5\x94\x13\x12\x1e\x14\x8c\x60\xda"}, {{0x77,0xa8,0x3e,0x18,0xc9,0xf0,0x00,0xee,0xff,0x7d,0xee,0xac,0x95,0x9e,0xcb,0xa2,0x20,0x6c,0x0a,0xa3,0x9d,0x2f,0x0e,0x2a,0xed,0x57,0x29,0x48,0x2a,0x7a,0x02,0x29,},{0x62,0xb1,0xb3,0x16,0x13,0x55,0x96,0xbf,0xbc,0xa6,0x03,0x7e,0xd8,0x47,0xc6,0x1f,0xb7,0xf0,0x9f,0xa3,0x6c,0xe9,0x0a,0xbb,0x77,0x89,0xb8,0x6f,0x76,0x8b,0x59,0xdd,},{0x1e,0xaa,0xd8,0x42,0x0a,0xc1,0x2c,0x99,0xac,0x1f,0xf4,0x47,0x66,0x78,0xe3,0xcb,0xbe,0x94,0xda,0x6a,0x79,0x7f,0x17,0x46,0x64,0xd5,0xee,0x0f,0x64,0x14,0x33,0xfb,0x1e,0x7c,0xb2,0xf5,0x61,0x3e,0x10,0x80,0x5d,0xf8,0x65,0x4c,0xd8,0xe0,0xd4,0x5d,0x96,0x23,0x09,0x32,0xbc,0x7f,0x20,0xb0,0x4e,0xae,0x83,0x64,0x35,0x13,0x43,0x09,},"\xf3\xd5\xfa\x2a\xca\xef\xd8\x58\xf1\xdf\x26\xe0\x30\x59\xcd\xcb\xc2\x46\x8a\xd7\x4a\xfc\x99\x3d\x0d\xb9\xc4\xcd\xe4\x11\x3f\x8d\x55\xc7\xda\x71\xd3\x8b\xa0\x65\x20\x53\x1c\x61\xfd\xdb\x5f\x33\xd5\xf0\x35\x3b\xe2\x37\x6e\x58\x07\x11\xbe\x45\xc0\xa3\x0b\x1f\xa0\x1b\x55\xe2\x28\xc6\xfa\x35\xe3\xf9\x5b\x67\x90\x9f\xc7\xdf\x3f\xd4\x64\xd9\x3d\x66\x1a\x92\x6f\x9d\x11\xf7\x55\x0c\x17\xfb\xcc\x34\x96\x52\x6e\x8f\x10\xe0\xc8\x91\x66\x77\xb2\xbe\x5b\x31\x9b\x68\x8f\x21\xe8\x1a\xaa\x94\x82\xe5\xc9\x3e\x64\xce\x8c\x43\x7b\x9c\x1e\x14\xfe\xfe\xd7\x0a\x3f\xee\x56\x88\x11\xdc\x31\xca\xda\xb3\xd5\xb2\x20\x25\x44\x65\x33\x6d\xc4\xd9\x7a\x3b\xd0\x96\xb5\xe0\x65\xe0\xcf\xbe\x82\x84\x9e\x2c\x19\x05\xac\xa4\x86\x53\x3f\x0d\xa7\xa6\x1f\x1e\x9a\x55\xb8\xe2\xa8\x32\x62\xde\xeb\x59\xf2\xb1\x3d\x3a\x8a\xef\x57\x00\x84\x5b\x83\xb2\x5a\xe2\x18\x3c\x0d\xda\xc0\xce\x42\xf8\xd2\x56\x74\xcb\x0d\x0d\x22\x0a\x6d\xe7\xc1\x85\x8b\xb0\x7d\x59\xa3\x37\x23\x44\xd9\x44\x60\x2a\xa4\x51\xd2\xb9\x37\xdb\x0f\xe6\xfe\xca\x0b\xeb\xa8\x17\x21\xfc\x36\x1e\xa7\x50\x9e\x2b\x6d\x39\x7e\x1c\x19\x1b\x56\xf5\x4a\xb4\x36\xd0\xd2\x7a\xb4\xc0\x61\xbd\x66\x1a\xd1\xa4\x45\x23\x87\xe8\x73\x57\x54\xd0\x7f\xa7\xef\x4d\x45\x48\xb1\x72\x58\x24\x25\xb2\x99\x04\x6e\x63\x01\xb5\xba\x6b\x91\x44\x18\xf1\x49\xcf\x72\x2e\x10\xbd\xe2\xe0\xd4\x17\x00\xf1\x2c\x84\x29\xfc\x89\x7b\x78\x19\xda\x92\x29\x22\x40\xcd\x45\x56\x54\x58\xc9\xa7\xb2\x9c\x12"}, {{0x73,0xb0,0x33,0x73,0xef,0x1f,0xd8,0x49,0x00,0x5e,0xcd,0x62,0x70,0xdd,0x99,0x06,0xf1,0x9f,0x44,0x39,0xe4,0x03,0x76,0xcd,0xbc,0x52,0x09,0x02,0xbc,0x97,0x68,0x12,},{0x66,0x37,0x19,0xe0,0x8b,0xa3,0xba,0x16,0x66,0xf6,0x06,0x9a,0x3f,0x54,0x99,0x18,0x66,0xb1,0x8c,0xc6,0xbe,0x41,0x99,0x1b,0x02,0xeb,0x30,0x26,0xff,0x9e,0x15,0x5f,},{0xa4,0x0a,0xbe,0x98,0xfc,0x69,0xda,0x8a,0x1f,0xf9,0xff,0x5c,0x2c,0xca,0x93,0x63,0x2e,0x97,0x59,0x80,0xee,0x8b,0x82,0xc3,0xc3,0x76,0x02,0x2d,0x65,0x24,0xab,0x73,0x6d,0x01,0xb0,0x72,0xf2,0xb6,0x81,0xb5,0xf1,0xcd,0x3e,0xa0,0x67,0x01,0x2e,0xd6,0xd0,0x74,0xe9,0x49,0xc4,0x23,0x27,0xa3,0x66,0xca,0xa9,0xe4,0x75,0x0a,0x3c,0x08,},"\xd5\xc2\xde\xab\xa7\x95\xc3\x0a\xba\x32\x1b\xc7\xde\x69\x96\xf0\xd9\x0e\x4d\x05\xc7\x47\xfb\x4d\xae\x8f\x34\x51\x89\x5d\xef\x6e\x16\xe7\x2f\x38\xea\xce\x75\x6f\x36\x63\x5f\x8f\xb0\xb7\x2a\x3a\x0c\x1f\x54\x66\x38\x17\xa9\x4d\x4f\xd3\x46\xf8\x35\xab\x0e\x65\x7f\x00\x1a\x6f\x2c\xec\xb8\x6d\x08\x25\xbd\x02\x63\x92\x54\xf7\xf7\xf3\x8c\xa9\x9d\xbb\x86\xc6\x4a\x63\x3f\x73\xba\xf9\x33\xaa\xe3\x56\x32\x81\xf4\x00\x5e\x2d\x0e\x7c\xec\x9f\xbd\xe8\xe5\x88\xa9\x57\xe2\x11\x06\x8b\xe6\x5b\x3d\x3d\x35\xbf\x4e\x8d\x5b\xb3\x47\x83\x33\xdf\x9c\xed\x9b\x2a\xba\xf4\x86\x97\x99\x4a\x14\x5e\x93\x21\x49\x9f\xc5\xee\x56\x0f\x4f\xbb\x68\x49\xe1\xae\x8e\xb3\xd1\xde\x00\x83\xa2\x1a\x03\xf6\xa6\xb2\x81\x76\xf0\x13\x0d\x38\x95\xe5\x0e\x75\xe3\xd7\xd0\x94\x7a\x7b\xc2\xc5\xb9\xff\x69\x89\x5d\x27\x79\x14\x42\xba\x8d\x0f\x21\x80\x71\x2b\x56\x7f\x71\x2e\xa9\x12\xf3\xb0\xd9\x2c\x19\x34\x2e\x01\x06\xff\x1d\x87\xb4\x6a\xd3\x3a\xf3\x00\xb9\x08\x55\xba\x97\x69\xd3\x66\xe7\x94\x25\xd9\x8e\x4d\xe1\x99\x05\xa0\x45\x77\x70\x7c\xbe\x62\x5b\x84\x69\x17\x81\xcd\x26\xbf\x62\x26\x0b\x4a\x8b\xd6\x05\xf7\x7a\xf6\xf9\x70\xe1\xb3\xa1\x12\xe8\x91\x83\x44\xbd\x0d\x8d\x2e\x41\xdf\xd2\xce\x98\x95\xb0\x24\x6e\x50\x88\x7a\xa3\xa5\x77\xff\x73\xbe\x4b\x6a\xe6\x0f\xeb\x0c\xa3\x6f\x6a\x5f\x81\x71\xed\x20\x9e\x5c\x56\x65\x29\xc0\x94\x0d\x9b\x4b\xd7\x44\xcc\xee\x56\xe5\x4a\x9a\x0c\x6e\x4d\xa5\x20\xdd\x31\x5c\x28\x72\xb0\x2d\xb5\x63\x70\x3e"}, {{0xea,0xb1,0x79,0xe4,0x1e,0xd5,0xc8,0x89,0xff,0xe6,0xaa,0xbd,0xc0,0x54,0xfa,0xf1,0x30,0x7c,0x39,0x5e,0x46,0xe3,0x13,0xe1,0x7a,0x14,0xfe,0x01,0x02,0x3f,0xfa,0x30,},{0x86,0xf3,0x47,0x46,0xd3,0xf7,0xa0,0x1d,0xdb,0xe3,0x22,0xf1,0xac,0xa5,0x6d,0x22,0x85,0x6d,0x38,0x73,0x3a,0x3a,0x69,0x00,0xbb,0x08,0xe7,0x76,0x45,0x0e,0xc8,0x03,},{0x14,0x3c,0xb2,0x80,0x27,0xc2,0xf8,0x2e,0x37,0x5e,0x5f,0x34,0x0e,0x7f,0xe6,0xe6,0x0c,0xe7,0xbd,0x51,0x00,0x0b,0x49,0xc7,0x41,0x68,0xaf,0x85,0xe2,0x6e,0xd2,0xed,0x63,0x0e,0xd2,0x67,0x20,0x90,0x16,0x4c,0xc5,0x4b,0x05,0x2d,0xa6,0x94,0xeb,0xdd,0x21,0xa2,0x1b,0x30,0x53,0xf4,0xdc,0xfd,0x78,0x95,0xea,0x5f,0x6c,0x8a,0xa8,0x0d,},"\x97\x10\x95\xce\xbe\x50\x31\x53\x02\x24\x38\x7c\x5c\x31\x96\x6e\x38\x9b\x85\x66\x39\x00\x54\xcf\x45\x26\x4b\x44\xe1\x89\x64\xb7\xbe\x52\xc3\x3c\x4f\xfb\x25\x9a\xf1\x62\x83\x43\x8f\xa1\x5d\xd6\x6b\xc7\x79\x1b\x75\x33\xef\x10\xcb\x0b\xea\xb5\x24\xa6\x43\x76\x26\xf4\xcc\x74\x51\x28\x51\xad\xcc\x2f\xb1\x29\x05\x5a\x48\x2c\x61\x10\x73\x83\xfb\x7c\x52\x41\x83\x1d\x55\x51\x63\x4e\xef\x0d\xc0\xb8\xf9\x05\x3a\x00\x97\x1a\xa8\xfa\x1a\xe0\x89\x8e\x4b\x48\x1b\x67\x07\xe9\x7c\x0f\x94\x20\x40\xb3\x39\xd9\x2f\xc1\x7b\xba\xde\x74\x67\x5a\xf2\x43\xd8\xb2\xda\xfb\x15\xb1\xdb\x55\xd1\x24\x15\xb8\x5f\x30\x37\x29\x19\x30\xab\x61\x60\x0b\xa3\x43\x1f\x8e\xb4\x25\xbe\x44\x91\x61\x47\x28\xaf\x10\x1e\x81\xc0\x91\xf3\x48\xbc\x5f\xfd\x1b\xde\x6a\xe6\xca\xd5\xc1\x5b\x3a\xa7\x35\x80\x78\xcc\x4e\xff\xb5\x4a\x86\xe7\xf0\xe0\xc5\x5e\x4c\xfe\x0a\x54\x60\x5e\xd4\x43\xfd\xf2\xaa\xba\x01\x65\x85\xda\x61\x7e\x77\x34\x1d\x52\x88\x9d\x75\xdd\x54\x0d\x39\xfe\x8b\x79\x93\xed\x70\x5c\xfd\xde\xa0\xcb\x0d\x5a\x73\x1d\x6b\xfc\xdb\x81\x6a\xfa\xff\x47\xe9\x63\xee\xde\xbd\xf2\x41\xaf\x55\x93\x35\x3d\x6d\x40\x1a\x34\xf0\x29\xa8\xcd\xeb\x19\x04\xcc\x2c\xaa\x4f\x96\x35\xcc\x2b\xa6\xb7\xb1\xa2\x9d\xa6\x25\xff\xc3\x83\xbe\x2f\x5a\x8f\x1f\xa4\xf3\x9b\x2d\x4b\x4f\x4c\x2d\x88\x38\xce\x25\x8a\x04\xd4\xa1\x20\x49\x3f\xdf\x07\xf6\x8c\x0f\xfd\x1c\x16\xb7\x68\xa3\x5c\x55\xfe\xa2\xca\xc6\x96\xb5\xc2\x0e\xfc\x10\x86\x5c\xde\x8a\x64\x62\x7d\xcd"}, {{0xfb,0xf1,0x46,0xeb,0xd5,0x10,0x75,0x57,0x0e,0xc5,0x1a,0xc4,0x10,0xae,0x9f,0x39,0x1d,0xb7,0x5b,0x61,0x0a,0xda,0x63,0x62,0xb4,0xdb,0xd9,0x49,0x65,0x6c,0xfb,0x66,},{0xbe,0x7c,0x2f,0x5b,0x21,0xd7,0x46,0xc8,0xea,0x32,0x45,0xce,0x6f,0x26,0x8e,0x9d,0xa7,0x4e,0x00,0xfa,0x85,0xc9,0xc4,0x75,0x26,0x0c,0x68,0xfa,0x1a,0xf6,0x36,0x1f,},{0x67,0x68,0x00,0x6f,0xe0,0xf2,0x01,0xb2,0x17,0xdd,0x10,0xeb,0x05,0xd4,0xb8,0x2a,0xdc,0xfe,0xb2,0xec,0xfc,0x83,0x73,0xc3,0x30,0x8f,0x41,0x50,0x39,0x48,0x11,0xeb,0x60,0x49,0x18,0x81,0xa2,0xe5,0x3d,0x12,0x89,0xd9,0x64,0x78,0xe1,0x8a,0x64,0xc3,0x4b,0x2a,0x19,0x83,0x2c,0xdc,0xcf,0xd9,0x6a,0x2e,0x4a,0x0c,0x46,0x9f,0xdc,0x0b,},"\xcd\x7a\xd4\xf1\x7f\xcf\xf7\x3a\xcc\x40\x2d\xc1\x02\xd0\x90\x79\xb2\x9a\xaf\x2a\x0f\x4b\x27\xcf\x6b\xee\xb1\xe2\xb2\x3d\x19\xab\x47\xde\xb3\xae\x1b\xec\xd6\x88\x61\xea\x27\x9c\x46\x69\x17\x38\xf4\xff\xf4\x7c\x43\x04\x7c\x4f\x8b\x56\xb6\xbb\xcc\x3f\xde\x07\x23\xd4\x41\x20\xdc\xd3\x07\xa6\x31\x0d\xc4\xf3\x66\xb8\xf3\xcd\x52\xdb\x19\xb8\x26\x6a\x48\x7f\x78\x72\x39\x1c\x45\xfe\x0d\x32\x48\xa7\xab\xf2\xc2\x00\x22\xd3\x76\x95\x47\xf6\x83\x06\x7d\xcc\x36\x3c\xd2\x2f\xd7\xcd\xa3\xca\xdc\x15\x80\x40\x56\xf0\xe2\xaa\x2b\x79\x50\x08\xc5\x98\xbe\x7a\x96\x18\x05\xe6\xdf\x29\x1b\xa3\x04\x1c\x47\xff\x56\x40\x27\x5f\x46\xe6\xae\x82\x09\x2d\x21\xab\xcb\xcf\xba\x11\xe7\x30\x21\x60\x08\x82\x2d\xe3\xce\x46\x24\x00\x59\x6d\xa7\x9f\x7a\xe5\xd1\xdf\x83\x89\x11\x2a\xd9\x88\x68\xfa\x94\xfb\x05\x46\xbf\xe6\xa6\x7a\xa8\xd2\x8c\x4d\x32\x07\x2d\x2e\xad\xd6\x25\x62\x55\xf1\x8c\x23\x82\xe6\x62\xdf\xa9\x22\xa6\x80\xe0\x6a\x43\x62\x2c\x48\x71\xd2\x7d\x18\x07\xf7\xb2\x70\x30\x70\xc8\x3d\xb8\xdd\x92\x9c\x06\x03\x8b\x21\x83\xcb\x8e\x2b\x9e\xc4\xc7\x78\xd7\xec\xf9\xe9\xff\xac\x77\xfa\x77\x37\xb0\x55\xfe\xac\x2e\x79\x82\xae\xee\xc0\xb7\x2f\x1b\xbc\xa2\x42\x4e\x1a\x84\x4b\xba\xc7\x9c\xb2\xe7\x40\x0f\x81\xdc\x44\x9d\x05\x60\xb5\x21\xa7\xc1\x6b\xb4\x16\x7e\x66\x96\x58\x60\x58\xa9\xb8\xed\x2e\x51\x16\x69\x0b\x77\xf2\xa1\x7e\x5c\x0b\x16\xa8\x3d\xcb\xd2\xe2\x45\x52\x29\x3e\x25\x8b\x32\xba\x7f\x84\x49\x44\x37\x93\x42\x69\x86\x27"}, {{0xdf,0xf0,0xeb,0x6b,0x42,0x6d,0xea,0x2f,0xd3,0x3c,0x1d,0x3f,0xc2,0x4d,0xf9,0xb3,0x1b,0x48,0x6f,0xac,0xb7,0xed,0xb8,0x50,0x29,0x54,0xa3,0xe8,0xda,0x99,0xd9,0xfd,},{0xc2,0x45,0x08,0x5e,0xce,0x69,0xfb,0x9a,0xa5,0x60,0xd0,0xc2,0x7f,0xdb,0x63,0x4f,0x7a,0x84,0x0d,0x41,0xd8,0x46,0x36,0x60,0xfb,0xe8,0x24,0x83,0xb0,0xf3,0xcc,0x3a,},{0x6b,0x48,0xb1,0x0f,0x54,0x5d,0xdb,0x7a,0x89,0xcd,0x58,0x29,0xf4,0xe5,0xb2,0x01,0x46,0xcf,0x6b,0xc9,0x6e,0x55,0x0d,0x06,0xf6,0x5d,0xe8,0xbd,0xae,0x7c,0xcd,0xde,0xd2,0x6c,0xd6,0x30,0xf8,0x6c,0x92,0x66,0xbc,0xcf,0x88,0xe9,0x24,0x03,0x3e,0x04,0xf8,0x3a,0x54,0xf8,0x29,0x0d,0x7f,0x73,0x4c,0xf8,0x67,0x3c,0xca,0x8f,0x97,0x03,},"\xe7\xc9\xe3\x13\xd8\x61\x60\xf4\xc7\x4a\xa0\xae\x07\x36\x9e\xe2\x2b\x27\xf8\x1b\x3f\x69\x09\x7a\xff\xae\x28\xda\xe4\x84\x83\xfb\x52\xa5\xc0\x62\x30\x6b\x59\x61\x0f\x5c\xdb\xff\x63\x32\xb1\x96\x0c\xd6\xf2\xb8\xf7\xb4\x15\x78\xc2\x0f\x0b\xc9\x63\x7a\x0f\xdf\xc7\x39\xd6\x1f\x69\x9a\x57\x3f\x1c\x1a\x0b\x49\x29\x45\x06\xcf\x44\x87\x96\x5e\x5b\xb0\x7b\xbf\x81\x80\x3c\xb3\xd5\xcb\x38\x29\xc6\x6c\x4b\xee\x7f\xc8\x00\xed\xe2\x16\x15\x09\x34\xd2\x77\xde\xa5\x0e\xdb\x09\x7b\x99\x2f\x11\xbb\x66\x9f\xdf\x14\x0b\xf6\xae\x9f\xec\x46\xc3\xea\x32\xf8\x88\xfd\xe9\xd1\x54\xea\x84\xf0\x1c\x51\x26\x5a\x7d\x3f\xef\x6e\xef\xc1\xcc\xdb\xff\xd1\xe2\xc8\x97\xf0\x55\x46\xa3\xb1\xca\x11\xd9\x51\x7c\xd6\x67\xc6\x60\xec\x39\x60\xf7\xa8\xe5\xe8\x02\x02\xa7\x8d\x3a\x38\x8b\x92\xf5\xc1\xde\xe1\x4a\xe6\xac\xf8\xe1\x7c\x84\x1c\x95\x57\xc3\x5a\x2e\xec\xed\x6e\x6a\xf6\x37\x21\x48\xe4\x83\xcc\xd0\x6c\x8f\xe3\x44\x92\x4e\x10\x19\xfb\x91\xcb\xf7\x94\x1b\x9a\x17\x6a\x07\x34\x15\x86\x72\x10\x67\x04\x10\xc5\xdb\xd0\xac\x4a\x50\xe6\xc0\xa5\x09\xdd\xfd\xc5\x55\xf6\x0d\x69\x6d\x41\xc7\x7d\xb8\xe6\xc8\x4d\x51\x81\xf8\x72\x75\x5e\x64\xa7\x21\xb0\x61\xfc\xd6\x8c\x46\x3d\xb4\xd3\x2c\x9e\x01\xea\x50\x12\x67\xde\x22\x87\x9d\x7f\xc1\x2c\x8c\xa0\x37\x9e\xdb\x45\xab\xaa\x6e\x64\xdd\xa2\xaf\x6d\x40\xcc\xf2\x4f\xbe\xba\xd7\xb5\xa8\xd3\xe5\x20\x07\x94\x5e\xcd\x3d\xdc\x1e\x3e\xfe\xb5\x22\x58\x1a\xc8\x0e\x98\xc8\x63\xba\x0c\x59\x0a\x3e\xd9\x5c\xd1"}, {{0x9f,0x32,0x95,0x8c,0x76,0x79,0xb9,0x0f,0xd5,0x03,0x60,0x56,0xa7,0x5e,0xc2,0xeb,0x2f,0x56,0xec,0x1e,0xff,0xc7,0xc0,0x12,0x46,0x1d,0xc8,0x9a,0x3a,0x16,0x74,0x20,},{0x1d,0x72,0x69,0xdc,0xb6,0xd1,0xf5,0x84,0xe6,0x62,0xd4,0xce,0x25,0x1d,0xe0,0xab,0xa2,0x90,0xef,0x78,0xb9,0x7d,0x44,0x8a,0xfb,0x1e,0x53,0x33,0xf1,0x97,0x6d,0x26,},{0x98,0x81,0xa5,0x76,0x3b,0xdb,0x25,0x9a,0x3f,0xef,0xbb,0xa3,0xd9,0x57,0x16,0x2d,0x6c,0x70,0xb8,0x04,0xfa,0x94,0xab,0x61,0x34,0x06,0xa6,0xec,0x42,0x50,0x5b,0x87,0x89,0x46,0x5c,0xa1,0xa9,0xa3,0x3e,0x18,0x95,0x98,0x88,0x42,0x27,0x0c,0x55,0xe5,0xbd,0xd5,0x48,0x3f,0x6b,0x17,0xb3,0x17,0x81,0xb5,0x93,0x50,0x7a,0x6c,0x18,0x08,},"\xa5\x6b\xa8\x6c\x71\x36\x05\x04\x08\x7e\x74\x5c\x41\x62\x70\x92\xad\x6b\x49\xa7\x1e\x9d\xaa\x56\x40\xe1\x04\x4b\xf0\x4d\x4f\x07\x1a\xd7\x28\x77\x9e\x95\xd1\xe2\x46\x05\x84\xe6\xf0\x77\x35\x45\xda\x82\xd4\x81\x4c\x91\x89\xa1\x20\xf1\x2f\x3e\x38\x19\x81\x3e\x5b\x24\x0d\x0f\x26\x43\x6f\x70\xee\x35\x3b\x4d\x20\xce\xa5\x4a\x14\x60\xb5\xb8\xf1\x00\x8d\x6f\x95\xf3\xaa\x2d\x8f\x1e\x90\x8f\xce\xd5\x0d\x62\x4e\x3a\x09\x69\x38\xb9\x35\x38\x54\xb9\x6d\xa4\x63\xa2\x79\x8a\x5a\x31\x2e\xc7\x90\x84\x2c\x10\xc4\x46\xe3\x35\x0c\x76\x4b\xf5\xc9\x72\x59\x3b\x99\x87\xbf\x23\x25\x6d\xaa\x88\x94\xd4\x7f\x22\xe8\x5b\x97\x60\x7e\x66\xfc\x08\xa1\x2c\x78\x9c\x47\x46\x08\x03\x68\xd3\x21\xbb\x90\x15\xa1\x15\x5b\x65\x52\x3a\xd8\xe9\x9b\xb9\x89\xb4\x4e\xac\x75\x6b\x07\x34\xac\xd7\xc6\x35\x7c\x70\xb5\x97\x43\x24\x6d\x16\x52\xd9\x1b\x0f\x98\x96\x96\x51\x41\x34\x5b\x99\x45\xcf\x34\x98\x04\x52\xf3\x50\x29\x74\xed\xb7\x6b\x9c\x78\x5f\xb0\xf4\x39\x52\x66\xb0\x55\xf3\xb5\xdb\x8a\xab\x68\xe9\xd7\x10\x2a\x1c\xd9\xee\x3d\x14\x25\x04\xf0\xe8\x8b\x28\x2e\x60\x3a\x73\x8e\x05\x1d\x98\xde\x05\xd1\xfc\xc6\x5b\x5f\x7e\x99\xc4\x11\x1c\xc0\xae\xc4\x89\xab\xd0\xec\xad\x31\x1b\xfc\x13\xe7\xd1\x65\x3b\x9c\x31\xe8\x1c\x99\x80\x37\xf9\x59\xd5\xcd\x98\x08\x35\xaa\x0e\x0b\x09\xbc\xbe\xd6\x34\x39\x11\x51\xda\x02\xbc\x01\xa3\x6c\x9a\x58\x00\xaf\xb9\x84\x16\x3a\x7b\xb8\x15\xed\xbc\x02\x26\xed\xa0\x59\x5c\x72\x4c\xa9\xb3\xf8\xa7\x11\x78\xf0\xd2\x0a\x5a"}, {{0xf8,0x6d,0x6f,0x76,0x6f,0x88,0xb0,0x07,0x17,0xb7,0xd6,0x32,0x7e,0xb2,0x6c,0xf3,0xce,0xeb,0xa5,0x38,0x51,0x84,0x42,0x6f,0x9c,0xfd,0x82,0x95,0xe2,0x42,0x1f,0xf2,},{0xcb,0x1d,0x25,0x05,0x04,0x75,0x41,0x83,0x70,0x4d,0xbe,0x21,0xc3,0x23,0xd6,0x6f,0x9f,0x90,0x11,0x75,0x8f,0x6d,0x8d,0xab,0x6f,0x59,0x7b,0x19,0x96,0x62,0x14,0x5b,},{0xec,0x61,0xc0,0xb2,0x92,0x20,0x3a,0x8f,0x1d,0x87,0x23,0x5e,0xde,0x92,0xb7,0x47,0x23,0xc8,0xd2,0x34,0x08,0x42,0x37,0x73,0xae,0x50,0xb1,0xe9,0xbc,0x44,0x64,0xe0,0x3e,0x44,0x6d,0xa9,0xdc,0xe4,0xc3,0x9f,0x6d,0xd1,0x59,0xbe,0xa2,0x6c,0x00,0x9e,0xd0,0x01,0x20,0xbc,0x36,0xd4,0xa2,0x47,0xdc,0x0d,0x24,0xbc,0xef,0xcc,0x11,0x0c,},"\xda\x84\x23\xa6\xb7\xa1\x8f\x20\xaa\x1f\x90\xed\x23\x31\xb1\x7b\x24\x06\x7c\x40\x17\x5b\xc2\x5d\x81\x09\xe2\x1d\x87\xac\x00\x52\x8e\xb3\xb2\xf6\x6a\x2b\x52\xdc\x7e\xf2\xf8\xce\xcb\x75\xc7\x60\x99\xcf\xa2\x3d\xb8\xda\x89\x70\x43\xba\x1c\xce\x31\xe2\xdf\xea\x46\x07\x5f\x5e\x07\x32\x03\xea\xeb\x3d\x62\xc8\x4c\x10\x7b\x6d\xab\x33\xa1\x4e\xaf\x14\x9a\xa6\x18\x50\xc1\x5f\x5a\x58\xd8\x8a\x15\xab\xa9\x19\x6f\x9e\x49\x5e\x8d\xbe\xcb\xcf\x7e\x84\x44\xf5\xdd\x72\xa0\x8a\x09\x9d\x7f\x62\x09\x99\x0b\x56\x29\x74\xea\x82\x9e\xf1\x1d\x29\xa9\x20\xe3\xa7\x99\xd0\xd9\x2c\xb5\x0d\x50\xf8\x17\x63\x1a\xb0\x9d\xe9\x7c\x31\xe9\xa0\x5f\x4d\x78\xd6\x49\xfc\xd9\x3a\x83\x75\x20\x78\xab\x3b\xb0\xe1\x6c\x56\x4d\x4f\xb0\x7c\xa9\x23\xc0\x37\x4b\xa5\xbf\x1e\xea\x7e\x73\x66\x8e\x13\x50\x31\xfe\xaf\xcb\xb4\x7c\xbc\x2a\xe3\x0e\xc1\x6a\x39\xb9\xc3\x37\xe0\xa6\x2e\xec\xdd\x80\xc0\xb7\xa0\x49\x24\xac\x39\x72\xda\x4f\xa9\x29\x9c\x14\xb5\xa5\x3d\x37\xb0\x8b\xf0\x22\x68\xb3\xba\xc9\xea\x93\x55\x09\x0e\xeb\x04\xad\x87\xbe\xe0\x59\x3b\xa4\xe4\x44\x3d\xda\x38\xa9\x7a\xfb\xf2\xdb\x99\x52\xdf\x63\xf1\x78\xf3\xb4\xc5\x2b\xcc\x13\x2b\xe8\xd9\xe2\x68\x81\x21\x3a\xbd\xeb\x7e\x1c\x44\xc4\x06\x15\x48\x90\x9f\x05\x20\xf0\xdd\x75\x20\xfc\x40\x8e\xa2\x8c\x2c\xeb\xc0\xf5\x30\x63\xa2\xd3\x05\x70\xe0\x53\x50\xe5\x2b\x39\x0d\xd9\xb6\x76\x62\x98\x48\x47\xbe\x9a\xd9\xb4\xcd\x50\xb0\x69\xff\xd2\x9d\xd9\xc6\x2e\xf1\x47\x01\xf8\xd0\x12\xa4\xa7\x0c\x84\x31\xcc"}, {{0xa5,0xb3,0x4c,0xef,0xab,0x94,0x79,0xdf,0x83,0x89,0xd7,0xe6,0xf6,0xc1,0x46,0xaa,0x8a,0xff,0xb0,0xbe,0xc8,0x37,0xf7,0x8a,0xf6,0x46,0x24,0xa1,0x45,0xcc,0x34,0x4e,},{0x7b,0x0f,0x4f,0x24,0xd9,0x97,0x2b,0xc6,0xfe,0x83,0x82,0x6c,0x52,0x71,0x6a,0xd1,0xe0,0xd7,0xd1,0x9f,0x12,0x38,0x58,0xcb,0x3e,0x99,0xfa,0x63,0x6a,0xc9,0x63,0x1a,},{0x2f,0xbd,0x89,0x9d,0x72,0xb6,0xd3,0x9e,0x4f,0x45,0xb8,0xb6,0x2c,0xbb,0xd5,0xf3,0xc0,0xac,0xb1,0xad,0x85,0x40,0x91,0x3f,0xa5,0x85,0x87,0x7e,0x91,0xcc,0xfe,0xf7,0xbe,0xe5,0x0a,0x4b,0x0f,0x9f,0xed,0xf5,0xcc,0x1e,0x0d,0x19,0x53,0xad,0x39,0x9c,0x83,0x89,0xa9,0x33,0x91,0xe1,0xb7,0xc9,0x29,0xaf,0x6d,0x6f,0x3b,0x79,0x6c,0x08,},"\xe2\x1e\x98\xaf\x6c\x2b\xac\x70\x55\x7e\xb0\xe8\x64\xda\x2c\x2b\x4d\x6c\x0a\x39\xa0\x59\xd3\x47\x72\x51\xf6\x17\x8a\x39\x67\x6f\x47\x49\xe7\xfb\xea\x62\x3f\x14\x8a\x43\xa8\xb0\xfe\x06\x10\x50\x6f\xa6\x58\xab\xd2\xf5\xfa\x39\x19\x8f\x26\x36\xb7\x24\xdb\x22\xd1\xae\xbc\x2a\xb0\x7b\x2b\x6d\xbf\xfd\xee\x8c\xec\xe8\x1e\x1a\xf1\x49\x3e\xc1\x96\x4e\x16\xbf\x86\xab\x25\x8c\xa0\xfe\xb7\x7e\x3c\x87\x17\xe4\x40\x38\xab\xe1\x52\xc1\x4b\xe1\x56\x60\xbf\x93\xb2\xd4\x8d\x92\xc4\xed\x70\x74\xd2\x49\x42\x10\x62\x1b\xcf\x20\x4f\xba\x88\xc6\x54\xd5\xff\xe0\x1e\x1a\x53\xd0\x8f\x70\xbb\x23\x70\x89\xdc\x80\x72\x16\xff\x6a\x85\xdb\xec\x31\x02\x23\x7d\x42\x59\x07\x78\xac\xf6\xc1\xdc\x56\x6d\x5a\x2b\xb9\xa6\x3b\xc2\x1c\x32\x9c\x27\x2e\x59\x65\xba\xee\xb0\xfe\x89\x1d\xe3\xcc\x8c\xbf\xa8\xe5\x41\xa8\x88\x1d\xf6\x89\x42\xe7\xff\x8d\xc6\x56\xbd\x08\x57\x5f\x6a\xaf\x92\x4a\x17\x6d\x66\x3b\x1a\x1f\x43\x57\x4d\x11\x76\x8c\x70\x1b\x26\x95\x61\xe5\x54\x38\xdb\xeb\xfd\x44\x3d\x21\x15\xcb\x93\x3d\x1c\xde\x4a\x91\x5b\x54\xc3\x25\xc2\x7f\x49\x9e\xf0\x2b\xd0\x12\xff\x1f\x9a\x36\x39\x09\x22\x88\x76\x00\xfe\x71\x2b\xcd\xc2\x3e\xb5\x97\x4a\x30\x53\x72\xad\x52\x95\x1f\x83\xf0\xe5\x8c\xc4\x9e\x28\x98\x41\x62\x19\x17\xf1\xfc\xb0\x23\x51\x47\x24\x0d\xae\x4c\xf3\xb9\x9b\x6a\xc6\xd8\xde\x94\xef\xe7\xc4\x43\x67\x14\x50\x8b\xcd\x01\x14\xc5\x60\x68\xff\x1b\x7c\x16\xd5\x1b\xd9\x06\x43\x78\x74\xd6\x54\x9a\xb5\xd8\x08\x78\x96\x87\x2e\xc8\xa0\x9d\x74\x12"}, {{0xad,0x75,0xc9,0xce,0x29,0x9c,0x4d,0x59,0x39,0x33,0x67,0xd7,0x7a,0x4c,0x9f,0x8d,0xf8,0xdc,0xec,0x76,0x5c,0x6d,0xbd,0x25,0xb5,0x27,0xfb,0x76,0x69,0x91,0x36,0x04,},{0xb9,0x91,0x05,0x48,0xfe,0x63,0x12,0xa1,0x19,0xc9,0x99,0x3e,0xeb,0xcf,0xb9,0xdc,0x90,0x03,0x0f,0xfb,0x0e,0x4d,0xe2,0xb7,0xcc,0xd2,0x3c,0xbe,0xb4,0xfe,0xf7,0x1b,},{0x6b,0x7e,0xf2,0x7b,0xcf,0xbf,0x2b,0x71,0x49,0x85,0x03,0x37,0x64,0xfc,0xcf,0xf5,0x55,0xe3,0xf5,0xbc,0x44,0x61,0x0d,0x6c,0x8c,0x62,0x11,0x7c,0xb3,0x83,0x1a,0x07,0xf4,0xa8,0xbd,0xdb,0x0e,0xae,0xd1,0xd4,0x6b,0x02,0x89,0xb1,0x5d,0xe1,0xaa,0x4d,0xcc,0x17,0xd7,0x1b,0xe9,0x6a,0x09,0xe6,0x6b,0xa4,0xdc,0x46,0x27,0xc7,0x87,0x05,},"\x62\xfc\x5a\xb6\x7d\xeb\x1f\xee\x9a\xb6\xcc\xa3\xb8\x8a\x1d\xf1\xe5\x89\xf0\xfd\x4a\x88\xf4\xaa\x77\x38\x94\x87\x61\xfe\x84\x37\x2c\x5b\x18\xe4\x65\x52\x20\xc1\xd8\x4d\x52\xac\xad\x32\xe2\x29\xa5\xc7\x56\xc2\x0f\xc6\x2f\xe4\xb4\xb4\xe5\xfd\x70\x77\xae\x4e\xd5\x39\x7a\xa7\x96\xf2\x30\x7c\xee\xdb\x65\x05\xb3\x92\x97\x85\x6f\x4a\xeb\x5e\x70\x93\x8e\x36\xee\x24\xa0\xac\x7d\x98\x68\x30\x6f\x6b\x53\x91\x06\x23\xb7\xdc\x89\xa6\x67\x2a\xd7\x38\x57\x6e\xd5\xd8\x88\x31\xdd\x33\x83\x21\xc8\x90\x2b\xc2\x06\x1f\x65\xe9\x4d\x45\x2f\xdf\xa0\xdc\x66\x5c\xef\xb9\x23\x08\xe5\x23\x01\xbd\x46\x27\x00\x6b\x36\x3d\x06\xb7\x75\xa3\x95\x91\x4d\x8c\x86\x3e\x95\xa0\x0d\x68\x93\xf3\x37\x61\x34\xc4\x29\xf5\x64\x78\x14\x5e\x44\x56\xf7\xa1\x2d\x65\xbb\x2b\x89\x65\xd7\x28\xcb\x2d\xdb\xb7\x08\xf7\x12\x5c\x23\x70\x95\xa9\x21\x95\xd9\x2f\xa7\x27\xa3\x72\xf3\x54\x5a\xe7\x01\xf3\x80\x8f\xee\x80\x2c\x89\x67\xa7\x6e\x8a\x94\x0e\x55\xfb\x2d\x81\x0b\xfb\x47\xad\xa1\x56\xf0\xed\xa1\x82\x9b\x15\x9c\xf0\x5c\x7f\x36\xcf\x38\x47\xd7\xb2\x1d\xe8\x4c\x3d\xc0\xfe\x65\x83\x47\xf7\x93\x96\xa0\x11\x39\xa5\x08\xb6\x00\x22\xdb\x1c\x0e\x5a\xee\xf4\x7e\x44\x5e\x66\xf7\x83\xe6\x2c\x96\x59\x7b\xdb\x16\xf2\x09\xc0\x8a\x91\x32\xc7\x57\x31\x36\x17\x0e\xe3\xeb\xf2\x42\x61\x26\x5a\x89\xfb\x4f\x10\x33\x33\x75\xe2\x0b\x33\xab\x74\x03\x46\x4f\x52\x49\x46\x1c\x68\x53\xc5\xfd\xdb\x9f\x58\xaf\x81\x68\x92\x91\x03\x93\xa7\x07\x7b\x79\x9f\xdc\x34\x89\x72\x09\x98\xfe\xea\x86"}, {{0x1c,0xed,0x57,0x45,0x29,0xb9,0xb4,0x16,0x97,0x7e,0x92,0xeb,0x39,0x44,0x8a,0x87,0x17,0xca,0xc2,0x93,0x4a,0x24,0x3a,0x5c,0x44,0xfb,0x44,0xb7,0x3c,0xcc,0x16,0xda,},{0x85,0xe1,0x67,0xd5,0xf0,0x62,0xfe,0xe8,0x20,0x14,0xf3,0xc8,0xb1,0xbe,0xae,0xd8,0xee,0xfb,0x2c,0x22,0xd8,0x64,0x9c,0x42,0x4b,0x86,0xb2,0x1b,0x11,0xeb,0x8b,0xda,},{0xe0,0x30,0x3a,0xef,0xe0,0x8a,0x77,0x73,0x8d,0xcc,0x65,0x7a,0xfb,0xb9,0xb8,0x35,0xed,0x27,0x96,0x13,0xa5,0x3c,0x73,0xfd,0xc5,0xdd,0xbf,0xb3,0x50,0xe5,0xcf,0xf4,0xd6,0xc9,0xbb,0x43,0xdc,0x07,0xc9,0x5b,0xf4,0xe2,0x3b,0x64,0xc4,0x0f,0x88,0x04,0xc7,0x16,0x99,0x52,0xe3,0xc8,0xd5,0x9a,0x71,0x97,0x24,0x1b,0xfe,0xd0,0x74,0x0f,},"\x1b\x3b\x95\x3c\xce\x6d\x15\x30\x3c\x61\xca\x70\x76\x09\xf7\x0e\x72\x50\xf6\xc0\xde\xba\x56\xa8\xce\x52\x2b\x59\x86\x68\x96\x51\xcd\xb8\x48\xb8\x42\xb2\x22\x96\x61\xb8\xee\xab\xfb\x85\x70\x74\x9e\xd6\xc2\xb1\x0a\x8f\xbf\x51\x50\x53\xb5\xea\x7d\x7a\x92\x28\x34\x9e\x46\x46\xf9\x50\x5e\x19\x80\x29\xfe\xc9\xce\x0f\x38\xe4\xe0\xca\x73\x62\x58\x42\xd6\x4c\xaf\x8c\xed\x07\x0a\x6e\x29\xc7\x43\x58\x6a\xa3\xdb\x6d\x82\x99\x3a\xc7\x1f\xd3\x8b\x78\x31\x62\xd8\xfe\x04\xff\xd0\xfa\x5c\xbc\x38\x1d\x0e\x21\x9c\x91\x93\x7d\xf6\xc9\x73\x91\x2f\xc0\x2f\xda\x53\x77\x31\x24\x68\x27\x4c\x4b\xee\x6d\xca\x7f\x79\xc8\xb5\x44\x86\x1e\xd5\xba\xbc\xf5\xc5\x0e\x14\x73\x49\x1b\xe0\x17\x08\xac\x7c\x9f\xf5\x8f\x1e\x40\xf8\x55\x49\x7c\xe9\xd7\xcc\x47\xb9\x41\x0f\x2e\xdd\x00\xf6\x49\x67\x40\x24\x3b\x8d\x03\xb2\xf5\xfa\x74\x2b\x9c\x63\x08\x67\xf7\x7a\xc4\x2f\x2b\x62\xc1\x4e\x5e\xbd\xdc\x7b\x64\x7a\x05\xff\xf4\x36\x70\x74\x5f\x28\x51\xef\xf4\x90\x9f\x5d\x27\xd5\x7a\xe8\x7f\x61\xe9\x65\xee\x60\xfd\xf9\x77\x24\xc5\x92\x67\xf2\x61\x0b\x7a\xd5\xde\x91\x98\x56\xd6\x4d\x7c\x21\x26\x59\xce\x86\x56\x14\x9b\x6a\x6d\x29\xd8\xf9\x2b\x31\x2b\xe5\x0b\x6e\x2a\x43\x1d\x36\xae\x02\x2b\x00\xa6\xfe\x36\x0e\x3a\xf6\x54\x32\x89\x9c\x43\xbe\x04\x27\xe3\x6d\x21\xcf\xec\x81\xf2\x1a\xa5\x3b\x33\xdb\x5e\xd2\xc3\x7d\xa8\xf9\x6a\xc3\xe7\xdc\x67\xa1\xde\x37\x54\x6c\xf7\xde\x10\x08\xc7\xe1\xad\xbe\x0f\x34\xfa\x7e\xb2\x43\x4d\x94\xe6\xa1\x3f\x4c\xf8\x6a\x98\xd4\x97\x62\x2f"}, {{0xf0,0x79,0x0d,0x93,0xe2,0xd3,0xb8,0x4f,0x61,0xef,0x4c,0x80,0x71,0x47,0xab,0xa4,0x10,0xe4,0x15,0xe7,0x2b,0x71,0xb0,0xd6,0x1d,0x01,0x02,0x6f,0xed,0x99,0xda,0x3d,},{0xef,0xdf,0x64,0x9f,0xb0,0x33,0xcf,0x32,0x8e,0x0b,0x28,0x77,0x96,0xf8,0xa2,0x5e,0x9c,0x6e,0x2e,0x87,0x1b,0x33,0xc2,0xc2,0x1a,0x40,0x28,0xa8,0xa2,0x5a,0x4b,0x28,},{0x08,0x77,0x3a,0x6a,0x78,0x76,0x2c,0xbb,0x1e,0x25,0xfc,0xbb,0x29,0x13,0x99,0x41,0xbd,0xf1,0x6f,0x4e,0x09,0xa1,0xfa,0x08,0xfc,0x70,0x1f,0x32,0xf9,0x33,0xed,0xd7,0x4c,0x0a,0xe9,0x83,0xc1,0x2a,0x0a,0x5b,0x02,0x0b,0x6b,0xcf,0x44,0xbb,0x71,0x9d,0xde,0x8e,0xd0,0x78,0x1a,0x82,0x98,0x26,0x56,0x40,0xe1,0x60,0x8c,0x98,0xb3,0x01,},"\x79\x73\xe9\xf3\x2d\x74\x80\x59\x92\xeb\x65\xda\x0d\x63\x73\x35\xe5\x0e\xff\x0c\xe6\x8e\xa2\xd1\xf3\xa0\x2d\xe7\x04\x49\x2b\x9c\xfb\xe7\xe7\xba\x96\xfd\xb4\x2b\xb8\x21\xa5\x13\xd7\x3f\xc6\x04\x02\xe9\x2c\x85\x5d\xea\xed\x73\xff\xea\xf7\x09\x52\x02\x90\x62\xc8\x33\xe1\x4e\xc1\xb1\x4f\x14\x4e\x22\x07\xf6\xa0\xe7\x27\xe5\xa7\xe3\xcb\xab\x27\xd5\x97\x29\x70\xf6\x95\x18\xa1\x5b\x09\x3e\x74\x0c\xc0\xce\x11\xbf\x52\x48\xf0\x82\x6b\x8a\x98\xbd\xe8\xbf\x2c\x70\x82\xc9\x7a\xff\x15\x8d\x08\x37\x11\x18\xc8\x90\x21\xcc\x39\x74\xae\x8f\x76\xd8\x66\x73\xc3\xf8\x24\xb6\x2c\x79\xc4\xb4\x1f\x40\xea\xa8\x94\x37\x38\xf0\x33\x00\xf6\x8c\xbe\x17\x54\x68\xeb\x23\x5a\x9f\xf0\xe6\x53\x7f\x87\x14\xe9\x7e\x8f\x08\xca\x44\x4e\x41\x19\x10\x63\xb5\xfa\xbd\x15\x6e\x85\xdc\xf6\x66\x06\xb8\x1d\xad\x4a\x95\x06\x55\x84\xb3\xe0\x65\x8c\x20\xa7\x06\xea\xf4\xa0\x77\x7d\xa4\xd2\xe0\xcd\x2a\x0f\xca\x60\x10\x9c\x2b\x44\x03\xdb\x3f\x03\xcd\x47\x81\xc1\xfb\xb0\x27\x22\x02\xbc\xb1\x16\x87\x80\x8c\x50\xcb\x98\xf6\x4b\x7f\x3f\xd3\xd4\x33\x33\xbb\x5a\x06\x1b\x9e\x37\x70\x90\xab\xb1\xe0\xa8\x85\xcb\x26\xb7\x3c\x16\x3e\x63\xff\x64\x51\xff\x2f\x4e\xc8\x24\x9c\x7e\x15\x2b\xd0\x39\x73\xa1\xe9\x64\xe2\xb5\xb2\x35\x28\x1a\x93\x83\x99\xa1\x12\xa2\x45\x29\xe3\x83\xa5\x60\xdc\x50\xbb\x1b\x62\x2a\xd7\x4e\xf3\x56\x58\xdc\xb1\x0f\xfe\x02\x25\x68\xac\x3f\xfa\xe5\xb4\x65\xa8\xed\x76\x43\xe8\x56\x1b\x35\x2e\xe9\x94\x4a\x35\xd8\x82\xc7\x12\xb1\x87\x78\x8a\x0a\xba\xe5\xa2\x2f"}, {{0x4c,0xb9,0xdf,0x7c,0xe6,0xfa,0xe9,0xd6,0x2b,0xa0,0x9e,0x8e,0xb7,0x0e,0x4c,0x96,0x9b,0xde,0xaf,0xcb,0x5e,0xc7,0xd7,0x02,0x43,0x26,0xe6,0x60,0x3b,0x06,0x21,0xbf,},{0x01,0x80,0x69,0xdd,0x0e,0xb4,0x40,0x55,0xa3,0x5c,0xd8,0xc7,0x7c,0x37,0xca,0x9f,0xb1,0xad,0x24,0x17,0x27,0x13,0x85,0xe1,0x34,0xb2,0xf4,0xe8,0x1f,0x52,0x03,0x3c,},{0xe3,0x3c,0x07,0x83,0x6c,0x53,0x7d,0x6b,0xfb,0xd0,0xf4,0x59,0x2d,0x6e,0x35,0xb1,0x63,0x49,0x9b,0xa7,0x8d,0xc7,0xff,0xce,0xc5,0x65,0xd0,0x4f,0x9a,0x7d,0xb7,0x81,0x94,0x3e,0x29,0xe6,0xce,0x76,0x76,0x3e,0x9b,0xad,0xdf,0x57,0x43,0x7f,0xd9,0xc6,0xb0,0x32,0x39,0xa6,0xe6,0x85,0x0e,0x45,0x02,0xa3,0x56,0xc2,0xe1,0x2c,0x37,0x05,},"\x14\x62\x7d\x6e\xa0\xe7\x89\x54\x60\x75\x94\x76\xdc\x74\xc4\x28\x00\xce\xef\x99\x43\x27\x51\x81\x51\x49\x0d\x9d\xf2\x30\x67\x91\x4e\x44\x78\x8a\x12\x76\x8c\xcb\x25\x47\x1b\x9c\x3b\xa9\xd1\x4f\xb4\x36\xdc\xba\x38\x42\x9b\x3a\x04\x56\x87\x77\x63\xc4\x91\x75\xd0\xe0\x82\x68\x3e\x07\xa9\x05\x8f\x36\x85\xc6\x27\x93\x07\xb2\x30\x3d\x12\x21\xb9\xc2\x97\x93\xd8\xa4\x87\x7f\x6d\xf5\x15\x87\x38\x4d\xad\xf7\x51\xc5\xf7\xbf\xbd\x20\x7d\x51\x96\x22\xc3\x7b\x51\xce\xee\xe2\xc2\x0d\x82\x69\xf8\xcb\x88\xd3\xfe\x43\xd6\xd4\x34\xd5\xbb\xd0\xe2\x03\xc1\x53\x2d\x97\xba\x55\x21\x47\x22\x74\x96\xc8\x7f\x67\xb5\x0b\xb7\x61\x93\xad\xd0\x14\x4d\xf1\xc1\x76\x65\x75\x85\x40\x83\x62\xca\x2e\xd0\x4a\xd6\x2a\xcf\x1c\x25\xe3\x41\xdf\xd1\x49\x8d\x85\xb4\xb1\x34\x9a\x8b\x0b\x9b\x02\xc4\x35\x23\xc5\x58\x53\x41\x9b\xfe\xd3\x7d\x5a\x2c\xdf\x17\xdf\xbf\x1a\x3b\xd7\x75\x9d\x6a\xe1\x80\xf9\xd2\x7d\xcd\x9a\x89\x33\xe2\x9a\x7c\x0a\x30\x77\x1e\xea\x7c\x2e\x0f\xa2\x42\x92\x5d\x23\x36\xdc\xe5\x85\x62\x90\x57\xd8\x44\x32\x39\x64\xf6\xd3\xd1\x1f\xf0\xb3\xf8\x29\xa3\xbe\x8c\x9f\x04\x68\xa6\x82\x3d\x8e\x70\xab\x5a\x2d\xa2\x1e\x15\xfa\x8b\x04\x1a\x29\x81\x22\x22\xe9\xc3\x0b\x2b\xd9\xa1\x2d\x1f\xde\xe6\xf8\x78\x76\xe8\xce\x81\x00\x96\x37\xa8\xbb\x22\x36\x12\x9a\x47\xca\x74\x28\x9e\xe4\xaa\xd4\x29\xff\xe2\x9f\x47\x43\x02\x41\xca\x8c\xc3\x84\x8b\x72\x00\xfd\x6e\x14\x70\x65\x1a\x9a\x0a\x6f\x72\xc9\x03\x3e\x83\x1d\xf0\x51\x40\x8a\x62\x60\xf6\x5c\xba\xf6\xe0\x12\xb1\x8e"}, {{0xa1,0x36,0xe0,0x09,0xd5,0x3e,0x5e,0xf5,0x9d,0x09,0x46,0xbc,0x17,0x56,0x63,0xa8,0x6b,0xc0,0xfc,0xd2,0x9e,0xad,0xd9,0x5c,0xfc,0x9d,0x26,0x60,0x37,0xb1,0xe4,0xfb,},{0x9c,0x18,0x06,0xec,0x04,0x54,0xf5,0x83,0x14,0xeb,0x83,0x97,0xd6,0x42,0x87,0xde,0xe3,0x86,0x64,0x0d,0x84,0x91,0xab,0xa3,0x64,0x60,0x76,0x88,0x84,0x17,0x15,0xa0,},{0xbc,0x09,0x4b,0xa9,0x1c,0x11,0x5d,0xee,0x15,0xd7,0x53,0x36,0x1a,0x75,0xf3,0xf0,0x3d,0x6a,0xf4,0x5c,0x92,0x15,0x7e,0x95,0xdb,0xe8,0xd3,0x21,0x94,0xb6,0xc5,0xce,0x72,0xb9,0xdc,0x66,0xf7,0x3d,0xf1,0x2d,0xca,0x0b,0x63,0x9f,0x3e,0x79,0x1d,0x47,0x86,0x16,0xa1,0xf8,0xd7,0x35,0x9a,0x42,0xc8,0xea,0xe0,0xdd,0xa1,0x6b,0x16,0x06,},"\xa4\x9d\x1c\x3d\x49\xe1\x3c\x2e\xda\x56\x86\x8a\x88\x24\xaa\x9f\x8d\x2b\xf7\x2f\x21\x95\x5e\xba\xfd\x07\xb3\xbd\xc8\xe9\x24\xde\x20\x93\x6c\xee\x51\x3d\x8a\x64\xa4\x71\x73\xa3\xbd\x65\x9e\xff\x1a\xcc\xff\x82\x44\xb2\x6a\xae\x1a\x0c\x27\xfa\x89\x1b\xf4\xd8\x5e\x8f\xb1\xb7\x6a\x6c\xab\x1e\x7f\x74\xc8\x9e\xe0\x7b\xb4\x0d\x71\x43\x26\xf0\x9b\x3f\xd4\x06\x32\xfa\xd2\x08\xea\x81\x6f\x90\x72\x02\x8c\x14\xb5\xb5\x4e\xcc\x1c\x5b\x7f\xc8\x09\xe7\xe0\x78\x6e\x2f\x11\x49\x5e\x76\x01\x7e\xb6\x2a\xa4\x56\x3f\x3d\x00\xee\x84\x34\x8d\x98\x38\xcd\x17\x64\x9f\x69\x29\xa6\xd2\x06\xf6\x0e\x6f\xc8\x2e\x0c\x34\x64\xb2\x7e\x0e\x6a\xbd\x22\xf4\x46\x9b\xdf\xd4\xcb\x54\xf7\x7e\x32\x9b\x80\xf7\x1b\xf4\x21\x29\xec\x13\xc9\xdf\xe1\x92\xad\xfa\xa4\x2e\xe3\xdd\xee\xda\x38\x58\x16\xfb\xad\x5f\x41\x19\x38\xc6\x3b\x56\x0f\x4e\xcd\x94\x53\x4b\xe7\xd9\x87\x25\xcd\x94\xc9\x9c\xe4\x92\xf0\xf0\x69\xba\x0e\xc0\x8f\x87\x7a\x78\x12\xef\x27\xae\x19\xd7\xa7\x7b\xe6\x3f\x66\xbc\xf8\xd6\xcf\x3a\x1a\x61\xfc\x9c\xfe\xf1\x04\xc7\x46\x2a\x21\xca\x7f\x03\xaf\xb5\xbb\x1a\xc8\xc7\x51\x24\xb5\x54\xe8\xd0\x44\xb8\x10\xd9\x5f\xf8\xc9\xdd\x09\xa3\x44\x84\xd8\xc4\xb6\xc9\x5f\x95\xc3\xc2\x28\x23\xf5\x2c\xe8\x44\x29\x37\x24\xd5\x25\x91\x91\xf1\xba\x09\x29\xe2\xac\xdb\xb8\xb9\xa7\xa8\xad\xf0\xc5\x2e\x78\xac\xdf\xdf\x05\x7b\x09\x85\x88\x1a\xfb\xed\x4d\xbe\xbd\xeb\xbd\xae\x0a\x2b\x63\xbd\x4e\x90\xf9\x6a\xfd\xcb\xbd\x78\xf5\x06\x30\x9f\x9b\xdb\x65\x00\x13\xcb\x73\xfa\xed\x73\x90\x4e"}, {{0xff,0x0f,0x1c,0x57,0xdd,0x88,0x4f,0xbe,0xea,0x6e,0x29,0x17,0x28,0x2b,0x79,0xba,0x67,0xf8,0xa6,0x85,0x12,0x67,0xb9,0xf4,0x63,0x6d,0xaf,0xda,0x33,0xbd,0x2b,0x5b,},{0xfe,0xf6,0x37,0x8a,0xd1,0x2a,0x7c,0x25,0x2f,0xa6,0xeb,0x74,0x2b,0x05,0x06,0x4b,0x41,0x53,0x0f,0xf0,0x19,0xdc,0x68,0x0a,0xb5,0x44,0xc0,0x27,0xea,0x28,0x36,0xe7,},{0xd5,0x00,0x84,0x86,0x72,0x6c,0xce,0x33,0x0a,0x29,0xdd,0x7e,0x4d,0x74,0x74,0xd7,0x35,0x79,0x82,0x01,0xaf,0xd1,0x20,0x6f,0xeb,0x86,0x9a,0x11,0x2e,0x5b,0x43,0x52,0x3c,0x06,0x97,0x67,0x61,0xbe,0x3c,0xf9,0xb2,0x71,0x63,0x78,0x27,0x3c,0x94,0xf9,0x35,0x72,0xa7,0xd2,0xb8,0x98,0x26,0x34,0xe0,0x75,0x5c,0x63,0x2b,0x44,0x90,0x08,},"\x52\x2a\x5e\x5e\xff\x5b\x5e\x98\xfa\xd6\x87\x8a\x9d\x72\xdf\x6e\xb3\x18\x62\x26\x10\xa1\xe1\xa4\x81\x83\xf5\x59\x0e\xce\xf5\xa6\xdf\x67\x1b\x28\xbe\x91\xc8\x8c\xdf\x7a\xe2\x88\x11\x47\xfe\x6c\x37\xc2\x8b\x43\xf6\x4c\xf9\x81\xc4\x55\xc5\x9e\x76\x5c\xe9\x4e\x1b\x64\x91\x63\x1d\xea\xee\xf6\xd1\xda\x9e\xbc\xa8\x86\x43\xc7\x7f\x83\xea\xe2\xcf\xdd\x2d\x97\xf6\x04\xfe\x45\x08\x1d\x1b\xe5\xc4\xae\x2d\x87\x59\x96\xb8\xb6\xfe\xcd\x70\x7d\x3f\xa2\x19\xa9\x3b\xa0\x48\x8e\x55\x24\x7b\x40\x5e\x33\x0c\xfb\x97\xd3\x1a\x13\x61\xc9\xb2\x08\x4b\xdb\x13\xfb\x0c\x05\x89\x25\xdb\x8c\x3c\x64\x9c\x9a\x3e\x93\x7b\x53\x3c\xc6\x31\x0f\xa3\xb1\x61\x26\xfb\x3c\xc9\xbb\x2b\x35\xc5\xc8\x30\x00\x15\x48\x8a\x30\xfa\xdc\xa3\xc8\x87\x1f\xa7\x0d\xfd\xc7\x05\x5b\xf8\xe6\x31\xf2\x0c\x9b\x25\x28\x31\x1e\x32\x4a\x7c\x4e\xdd\x54\x62\x07\x9f\x34\x41\xc9\xec\xf5\x5f\xa9\x99\xe7\x31\x37\x23\x44\xfd\xc0\xd4\x13\xe4\x17\xaa\xa0\x01\xa1\xb2\xd3\xd9\xbc\x00\x0f\xec\x1b\x02\xbd\x7a\x88\xa8\x12\xd9\xd8\xa6\x6f\x94\x64\x76\x4c\x07\x0c\x93\x04\x1e\xef\xb1\x7c\xe7\x4e\xff\x6d\x4a\xff\x75\xf0\xcb\xf6\xa7\x89\xa9\xec\xde\x74\xab\xe3\x31\x30\xfc\xa0\xda\x85\x3a\xa7\xc3\x31\x3a\xda\x3f\x0a\xe2\xf5\x95\xc6\x79\x6a\x93\x68\x5e\x72\x9d\xd1\x8a\x66\x9d\x63\x81\x82\x5a\xb3\xf3\x6a\x39\x1e\x75\x25\xb2\xa8\x07\xa5\x2f\xa5\xec\x2a\x03\x0a\x8c\xf3\xb7\x73\x37\xac\x41\xfc\xeb\x58\x0e\x84\x5e\xed\x65\x5a\x48\xb5\x47\x23\x8c\x2e\x81\x37\xc9\x2f\x8c\x27\xe5\x85\xca\xad\x31\x06\xee\xe3\x81\x4a"}, {{0x0b,0xc6,0xaf,0x64,0xde,0x57,0x09,0xd3,0xdb,0xc2,0x8f,0x7e,0xf6,0xd3,0xfe,0x28,0xb6,0xde,0x52,0x9f,0x08,0xf5,0x85,0x7c,0xcb,0x91,0x06,0x95,0xde,0x45,0x4f,0x56,},{0xfb,0x49,0x1f,0xc9,0x00,0x23,0x7b,0xdc,0x7e,0x9a,0x11,0x9f,0x27,0x15,0x0c,0xd9,0x11,0x93,0x5c,0xd3,0x62,0x87,0x49,0xff,0x40,0xef,0x41,0xf3,0x95,0x5b,0xc8,0xac,},{0xdb,0xc7,0x13,0x4d,0x1c,0xd6,0xb0,0x81,0x3b,0x53,0x35,0x27,0x14,0xb6,0xdf,0x93,0x94,0x98,0xe9,0x1c,0xf3,0x7c,0x32,0x43,0x37,0xd9,0xc0,0x88,0xa1,0xb9,0x98,0x34,0x7d,0x26,0x18,0x5b,0x43,0x09,0x00,0x41,0x29,0x29,0xe4,0xf6,0x3e,0x91,0x03,0x79,0xfc,0x42,0xe3,0x55,0xa4,0xe9,0x8f,0x6f,0xee,0x27,0xda,0xfa,0xd1,0x95,0x72,0x06,},"\xac\x78\x86\xe4\xf4\x17\x2a\x22\xc9\x5e\x8e\xea\x37\x43\x7b\x37\x5d\x72\xac\xce\xdc\xee\x6c\xc6\xe8\x16\x76\x33\x01\xa2\xd8\xef\x4d\x6f\x31\xa2\xc1\xd6\x35\x81\x8b\x70\x26\xa3\x95\xce\x0d\xaf\xd7\x1c\x51\x80\x89\x3a\xf7\x6b\x7e\xa0\x56\xc9\x72\xd6\x80\xec\xa0\x1d\xcb\xdb\xae\x6b\x26\xf1\xc5\xf3\x3f\xc9\x88\xb8\x24\xfb\xbe\x00\xca\xcc\x31\x64\x69\xa3\xba\xe0\x7a\xa7\xc8\x88\x5a\xf7\xf6\x5f\x42\xe7\x5c\xef\x94\xdb\xb9\xaa\xb4\x82\x51\x43\xc8\x50\x70\xe7\x71\x6b\x76\x12\xf6\x4e\xf0\xb0\x16\x60\x11\xd2\x3e\xb5\x65\x4a\xa0\x98\xb0\x2d\x8d\x71\xe5\x7c\x8f\xa1\x7b\xff\x2f\xe9\x7d\xc8\x19\x31\x77\xea\xdc\x09\xfb\x19\x2d\x80\xaa\x92\xaf\xa9\x87\x20\xd4\x61\x48\x17\xff\x3c\x39\xd3\xac\xce\x18\x90\x6f\xa3\xde\x09\x61\x89\x31\xd0\xd7\xa6\x0c\x44\x29\xcb\xfa\x20\xcf\x16\x5c\x94\x79\x29\xac\x29\x3a\xe6\xc0\x6e\x7e\x8f\x25\xf1\x26\x42\x91\xe3\xe1\xc9\x8f\x5d\x93\xe6\xec\xc2\x38\x9b\xc6\x0d\xbb\xf4\xa6\x21\xb1\x32\xc5\x52\xa9\x9c\x95\xd2\x6d\x8d\x1a\xf6\x11\x38\xb5\x70\xa0\xde\x4b\x49\x7e\xbe\x80\x51\xc7\x27\x3a\x98\xe6\xe7\x87\x6d\x0b\x32\x75\x03\xaf\x3c\xb2\xcc\x40\x91\xce\x19\x25\xcb\x2f\x29\x57\xf4\xec\x56\xee\x90\xf8\xa0\x9d\xd5\x7d\x6e\x83\x06\x7a\x35\x6a\x4c\xfe\x65\xb1\xb7\xa4\x46\x5d\xa2\xab\x13\x3b\x0e\xfb\x5e\x7d\x4d\xbb\x81\x1b\xcb\xbd\xe7\x12\xaf\xbf\x0f\x7d\xd3\xf3\x26\x22\x22\x84\xb8\xc7\x4e\xac\x7a\xd6\x25\x7f\xa8\xc6\x32\xb7\xda\x25\x59\xa6\x26\x6e\x91\xe0\xef\x90\xdb\xb0\xaa\x96\x8f\x75\x37\x6b\x69\x3f\xca\xa5\xda\x34\x22\x21"}, {{0x2f,0x5e,0x83,0xbd,0x5b,0x41,0x2e,0x71,0xae,0x3e,0x90,0x84,0xcd,0x36,0x9e,0xfc,0xc7,0x9b,0xf6,0x03,0x7c,0x4b,0x17,0x4d,0xfd,0x6a,0x11,0xfb,0x0f,0x5d,0xa2,0x18,},{0xa2,0x2a,0x6d,0xa2,0x9a,0x5e,0xf6,0x24,0x0c,0x49,0xd8,0x89,0x6e,0x3a,0x0f,0x1a,0x42,0x81,0xa2,0x66,0xc7,0x7d,0x38,0x3e,0xe6,0xf9,0xd2,0x5f,0xfa,0xcb,0xb8,0x72,},{0x9f,0x80,0x92,0x2b,0xc8,0xdb,0x32,0xd0,0xcc,0x43,0xf9,0x93,0x6a,0xff,0xeb,0xe7,0xb2,0xbc,0x35,0xa5,0xd8,0x22,0x77,0xcd,0x18,0x7b,0x5d,0x50,0xdc,0x7f,0xc4,0xc4,0x83,0x2f,0xff,0xa3,0x4e,0x95,0x43,0x80,0x6b,0x48,0x5c,0x04,0x54,0x8e,0x7c,0x75,0x42,0x94,0x25,0xe1,0x4d,0x55,0xd9,0x1f,0xc1,0x05,0x2e,0xfd,0x86,0x67,0x43,0x0b,},"\xb7\x66\x27\x3f\x06\x0e\xf3\xb2\xae\x33\x40\x45\x4a\x39\x1b\x42\x6b\xc2\xe9\x72\x64\xf8\x67\x45\x53\xeb\x00\xdd\x6e\xcf\xdd\x59\xb6\x11\xd8\xd6\x62\x92\x9f\xec\x71\x0d\x0e\x46\x20\x20\xe1\x2c\xdb\xf9\xc1\xec\x88\x58\xe8\x56\x71\xac\xf8\xb7\xb1\x44\x24\xce\x92\x07\x9d\x7d\x80\x1e\x2a\xd9\xac\xac\x03\x6b\xc8\xd2\xdf\xaa\x72\xaa\x83\x9b\xff\x30\xc0\xaa\x7e\x41\x4a\x88\x2c\x00\xb6\x45\xff\x9d\x31\xbc\xf5\xa5\x43\x82\xde\xf4\xd0\x14\x2e\xfa\x4f\x06\xe8\x23\x25\x7f\xf1\x32\xee\x96\x8c\xdc\x67\x38\xc5\x3f\x53\xb8\x4c\x8d\xf7\x6e\x9f\x78\xdd\x50\x56\xcf\x3d\x4d\x5a\x80\xa8\xf8\x4e\x3e\xde\xc4\x85\x20\xf2\xcb\x45\x83\xe7\x08\x53\x93\x55\xef\x7a\xa8\x6f\xb5\xa0\xe8\x7a\x94\xdc\xf1\x4f\x30\xa2\xcc\xa5\x68\xf1\x39\xd9\xce\x59\xea\xf4\x59\xa5\xc5\x91\x6c\xc8\xf2\x0b\x26\xaa\xf6\xc7\xc0\x29\x37\x9a\xed\xb0\x5a\x07\xfe\x58\x5c\xca\xc6\x03\x07\xc1\xf5\x8c\xa9\xf8\x59\x15\x7d\x06\xd0\x6b\xaa\x39\x4a\xac\xe7\x9d\x51\xb8\xcb\x38\xcf\xa2\x59\x81\x41\xe2\x45\x62\x4e\x5a\xb9\xb9\xd6\x87\x31\x17\x33\x48\x90\x53\x15\xbf\x1a\x5a\xd6\x1d\x1e\x8a\xda\xeb\x81\x0e\x4e\x8a\x86\xd7\xc1\x35\x37\xb0\xbe\x86\x0a\xb2\xed\x35\xb7\x33\x99\xb8\x80\x8a\xa9\x1d\x75\x0f\x77\x94\x3f\x8a\x8b\x7e\x89\xfd\xb5\x07\x28\xaa\x3d\xbb\xd8\xa4\x1a\x6e\x00\x75\x6f\x43\x8c\x9b\x9e\x9d\x55\x87\x2d\xf5\xa9\x06\x8a\xdd\x8a\x97\x2b\x7e\x43\xed\xad\x9c\xed\x22\x37\xca\x13\x67\xbe\x4b\x7c\xdb\x66\xa5\x4e\xa1\x2e\xef\x12\x94\x71\x15\x86\x10\xea\xf2\x8f\x99\xf7\xf6\x86\x55\x7d\xcd\xf6\x44\xea"}, {{0x72,0x2a,0x2d,0xa5,0x0e,0x42,0xc1,0x1a,0x61,0xc9,0xaf,0xac,0x7b,0xe1,0xa2,0xfe,0xd2,0x26,0x7d,0x65,0x0f,0x8f,0x7d,0x8e,0x5b,0xc7,0x06,0xb8,0x07,0xc1,0xb9,0x1d,},{0xfd,0x0b,0x96,0x45,0x62,0xf8,0x23,0x72,0x1e,0x64,0x9c,0x3f,0xed,0xb4,0x32,0xa7,0x6f,0x91,0xe0,0xae,0xad,0x7c,0x61,0xd3,0x5f,0x95,0xed,0x77,0x26,0xd7,0x85,0x89,},{0xc2,0x69,0x5a,0x57,0x17,0x2a,0xaa,0x31,0xbd,0x08,0x90,0xf2,0x31,0xca,0x8e,0xee,0xc0,0x28,0x7a,0x87,0x17,0x26,0x69,0xa8,0x99,0xad,0x08,0x91,0xce,0xa4,0xc4,0x75,0x79,0xb5,0x04,0x20,0xe7,0x91,0xcd,0xec,0x8c,0x18,0x2c,0x8a,0x0e,0x8d,0xde,0x21,0xb2,0x48,0x0b,0x0c,0xfd,0x81,0x11,0xe2,0x8e,0x56,0x03,0x34,0x7a,0x35,0x2d,0x04,},"\x17\x3e\x8b\xb8\x85\xe1\xf9\x08\x14\x04\xac\xac\x99\x90\x41\xd2\xec\xfc\xb7\x3f\x94\x5e\x0d\xb3\x6e\x63\x1d\x7c\xd1\xab\x99\x9e\xb7\x17\xf3\x4b\xf0\x78\x74\xbf\x3d\x34\xe2\x53\x0e\xb6\x08\x5f\x4a\x9f\x88\xae\x1b\x0f\x7d\x80\xf2\x21\x45\x6a\x8e\x9a\x88\x90\xb9\x1a\x50\x19\x2d\xea\xaa\xcc\x0a\x1a\x61\x5a\x87\x84\x1e\x2c\x5a\x9e\x05\x79\x57\xaf\x6e\x48\xe7\x8c\xc8\x61\x98\xe3\x2e\x7a\xa2\x4d\xcf\x6c\xff\xa3\x29\xbc\x72\x60\x6d\x65\xb1\x16\x82\xc8\xba\x73\x6c\xce\x22\xa0\x57\x85\xdf\x11\x46\x33\x1e\x41\x60\x9c\xf9\xca\x71\x1c\xf4\x64\x95\x82\x97\x13\x8b\x58\xa9\x07\x3f\x3b\xbf\x06\xad\x8a\x85\xd1\x35\xde\x66\x65\x21\x04\xd8\x8b\x49\xd2\x7a\xd4\x1e\x59\xbc\xc4\x4c\x7f\xab\x68\xf5\x3f\x05\x02\xe2\x93\xff\xca\xba\xaf\x75\x59\x27\xdf\xdf\xfb\xfd\xe3\xb3\x5c\x08\x0b\x5d\xe4\xc8\xb7\x85\xf4\xda\x64\xef\x35\x7b\xc0\xd1\x46\x6a\x6a\x96\x56\x0c\x3c\x4f\x3e\x3c\x0b\x56\x3a\x00\x3f\x5f\x95\xf2\x37\x17\x1b\xce\x1a\x00\x17\x71\xa0\x4e\xde\x7c\xdd\x9b\x8c\xa7\x70\xfd\x36\xef\x90\xe9\xfe\x00\x00\xa8\xd7\x68\x5f\xd1\x53\xcc\x72\x82\xde\x95\x92\x0a\x8f\x8f\x08\x98\xd0\x0b\xf0\xc6\xc9\x33\xfe\x5b\xb9\x65\x3f\xf1\x46\xc4\xe2\xac\xd1\xa2\xe0\xc2\x3c\x12\x44\x84\x4d\xac\xf8\x65\x27\x16\x30\x2c\x20\x32\xf9\xc1\x14\x67\x9e\xd2\x6b\x3e\xe3\xab\x4a\x7b\x18\xbc\x4e\x30\x71\xf0\x97\x7d\xb5\x7c\xd0\xac\x68\xc0\x72\x7a\x09\xb4\xf1\x25\xfb\x64\xaf\x28\x50\xb2\x6c\x8a\x48\x42\x63\x33\x4e\x2d\xa9\x02\xd7\x44\x73\x70\x44\xe7\x9a\xb1\xcf\x5b\x2f\x93\xa0\x22\xb6\x3d\x40\xcd"}, {{0x5f,0xe9,0xc3,0x96,0x0e,0xd5,0xbd,0x37,0x4c,0xc9,0x4d,0x42,0x35,0x7e,0x6a,0x24,0xdc,0x7e,0x30,0x60,0x78,0x8f,0x72,0x63,0x65,0xde,0xfa,0xcf,0x13,0xcd,0x12,0xda,},{0x0c,0xe7,0xb1,0x55,0xc8,0xb2,0x0e,0xbd,0xaa,0xcd,0xc2,0xaa,0x23,0x62,0x7e,0x34,0xb1,0xf9,0xac,0xe9,0x80,0x65,0x0a,0x25,0x30,0xc7,0x60,0x7d,0x04,0x81,0x4e,0xb4,},{0x37,0x9f,0x9c,0x54,0xc4,0x13,0xaf,0x0d,0x19,0x2e,0x9b,0xc7,0x36,0xb2,0x9d,0xa9,0xd5,0x21,0xe7,0xba,0x78,0x41,0xd3,0x09,0xf9,0xbc,0xc1,0xe7,0x42,0xec,0x43,0x08,0xfe,0x9f,0x7b,0xa5,0x1e,0x0b,0x22,0xae,0xd4,0x87,0xcb,0x4a,0xa3,0x91,0x3b,0x9b,0xeb,0xfb,0x3a,0xac,0xd3,0x8f,0x40,0x39,0xf9,0xbb,0xbe,0xbe,0x1a,0xd8,0x00,0x02,},"\xc9\x49\x0d\x83\xd9\xc3\xa9\x37\x0f\x06\xc9\x1a\xf0\x01\x68\x5a\x02\xfe\x49\xb5\xca\x66\x77\x33\xff\xf1\x89\xee\xe8\x53\xec\x16\x67\xa6\xc1\xb6\xc7\x87\xe9\x24\x48\x12\xd2\xd5\x32\x86\x6a\xb7\x4d\xfc\x87\x0d\x6f\x14\x03\x3b\x6b\xcd\x39\x85\x2a\x39\x00\xf8\xf0\x8c\xd9\x5a\x74\xcb\x8c\xbe\x02\xb8\xb8\xb5\x1e\x99\x3a\x06\xad\xfe\xbd\x7f\xc9\x85\x4a\xe5\xd2\x9f\x4d\xf9\x64\x28\x71\xd0\xc5\xe4\x70\xd9\x03\xcf\xbc\xbd\x5a\xdb\x32\x75\x62\x8f\x28\xa8\x0b\xf8\xc0\xf0\x37\x66\x87\xda\xe6\x73\xbf\x7a\x85\x47\xe8\x0d\x4a\x98\x55\xae\x25\x72\xfc\x2b\x20\x5d\xc8\xa1\x98\x01\x6d\xdc\x9b\x50\x99\x5f\x5b\x39\xf3\x68\xf5\x40\x50\x4a\x55\x18\x03\xd6\xdd\x5f\x87\x48\x28\xe5\x54\x1d\xed\x05\x28\x94\xd9\xe2\xdc\x5e\x6a\xa3\x51\x08\x7e\x79\x0c\x0d\xd5\xd9\xc4\xde\xcb\x21\x7e\x4d\xb8\x1c\x98\xa1\x84\xb2\x64\xe6\xda\xea\xc0\xf1\x1e\x07\x4c\xae\x2b\xfc\x89\x9f\x54\xb4\x19\xc6\x5d\xcc\x22\x66\x4a\x91\x5f\xbf\xff\xac\x35\xce\xe0\xf2\x86\xeb\x7b\x14\x49\x33\xdb\x93\x3e\x16\xc4\xbc\xb6\x50\xd5\x37\x72\x24\x89\xde\x23\x63\x73\xfd\x8d\x65\xfc\x86\x11\x8b\x6d\xef\x37\xca\x46\x08\xbc\x6c\xe9\x27\xb6\x54\x36\xff\xda\x7f\x02\xbf\xbf\x88\xb0\x45\xae\x7d\x2c\x2b\x45\xa0\xb3\x0c\x8f\x2a\x04\xdf\x95\x32\x21\x08\x8c\x55\x5f\xe9\xa5\xdf\x26\x09\x82\xa3\xd6\x4d\xf1\x94\xee\x95\x2f\xa9\xa9\x8c\x31\xb9\x64\x93\xdb\x61\x80\xd1\x3d\x67\xc3\x67\x16\xf9\x5f\x8c\x0b\xd7\xa0\x39\xad\x99\x06\x67\xca\x34\xa8\x3a\xc1\xa1\x8c\x37\xdd\x7c\x77\x36\xaa\x6b\x9b\x6f\xc2\xb1\xac\x0c\xe1\x19\xef\x77"}, {{0xec,0x2f,0xa5,0x41,0xac,0x14,0xb4,0x14,0x14,0x9c,0x38,0x25,0xea,0xa7,0x00,0x1b,0x79,0x5a,0xa1,0x95,0x7d,0x40,0x40,0xdd,0xa9,0x25,0x73,0x90,0x4a,0xfa,0x7e,0xe4,},{0x71,0xb3,0x63,0xb2,0x40,0x84,0x04,0xd7,0xbe,0xec,0xde,0xf1,0xe1,0xf5,0x11,0xbb,0x60,0x84,0x65,0x8b,0x53,0x2f,0x7e,0xa6,0x3d,0x4e,0x3f,0x5f,0x01,0xc6,0x1d,0x31,},{0x84,0xd1,0x8d,0x56,0xf9,0x64,0xe3,0x77,0x67,0x59,0xbb,0xa9,0x2c,0x51,0x0c,0x2b,0x6d,0x57,0x45,0x55,0xc3,0xcd,0xda,0xde,0x21,0x2d,0xa9,0x03,0x74,0x55,0x49,0x91,0xe7,0xd7,0x7e,0x27,0x8d,0x63,0xe3,0x46,0x93,0xe1,0x95,0x80,0x78,0xcc,0x36,0x85,0xf8,0xc4,0x1c,0x1f,0x53,0x42,0xe3,0x51,0x89,0x96,0x38,0xef,0x61,0x21,0x14,0x01,},"\x27\x49\xfc\x7c\x4a\x72\x9e\x0e\x0a\xd7\x1b\x5b\x74\xeb\x9f\x9c\x53\x4e\xbd\x02\xff\xc9\xdf\x43\x74\xd8\x13\xbd\xd1\xae\x4e\xb8\x7f\x13\x50\xd5\xfd\xc5\x63\x93\x45\x15\x77\x17\x63\xe6\xc3\x3b\x50\xe6\x4e\x0c\xd1\x14\x57\x30\x31\xd2\x18\x6b\x6e\xca\x4f\xc8\x02\xcd\xdc\x7c\xc5\x1d\x92\xa6\x13\x45\xa1\x7f\x6a\xc3\x8c\xc7\x4d\x84\x70\x7a\x51\x56\xbe\x92\x02\xde\xe3\x44\x46\x52\xe7\x9b\xae\x7f\x0d\x31\xbd\x17\x56\x79\x61\xf6\x5d\xd0\x1a\x8e\x4b\xee\x38\x33\x19\x38\xce\x4b\x2b\x55\x06\x91\xb9\x9a\x4b\xc3\xc0\x72\xd1\x86\xdf\x4b\x33\x44\xa5\xc8\xfb\xfb\xb9\xfd\x2f\x35\x5f\x61\x07\xe4\x10\xc3\xd0\xc7\x98\xb6\x8d\x3f\xb9\xc6\xf7\xab\x5f\xe2\x7e\x70\x87\x1e\x86\x76\x76\x98\xfe\x35\xb7\x7e\xad\x4e\x43\x5a\x94\x02\xcc\x9e\xd6\xa2\x65\x7b\x05\x9b\xe0\xa2\x10\x03\xc0\x48\xbb\xf5\xe0\xeb\xd9\x3c\xbb\x2e\x71\xe9\x23\xcf\x5c\x72\x8d\x17\x58\xcd\x81\x7a\xd7\x4b\x45\x4a\x88\x71\x26\xd6\x53\xb9\x5a\x7f\x25\xe5\x29\x3b\x76\x8c\x9f\xc5\xa9\xc3\x5a\x23\x72\xe3\x74\x1b\xc9\x0f\xd6\x63\x01\x42\x7b\x10\x82\x4b\xb4\xb1\xe9\x11\x0b\xfb\xa8\x4c\x21\xa4\x0e\xb8\xfe\xd4\x49\x7e\x91\xdc\x3f\xfd\x04\x38\xc5\x14\xc0\xa8\xcb\x4c\xac\x6a\xd0\x25\x6b\xf1\x1d\x5a\xa7\xa9\xc7\xc0\x0b\x66\x9b\x01\x5b\x0b\xf8\x14\x25\xa2\x14\x13\xe2\xff\xb6\xed\xc0\xbd\x78\xe3\x85\xc4\x4f\xd7\x45\x58\xe5\x11\xc2\xc2\x5f\xee\x1f\xec\x18\xd3\x99\x0b\x86\x90\x30\x0f\xa7\x11\xe9\x3d\x98\x54\x66\x8f\x01\x87\x06\x5e\x76\xe7\x11\x3a\xe7\x63\xc3\x0d\xdd\x86\x72\x0b\x55\x46\xa6\xc3\xc6\xf1\xc4\x3b\xc6\x7b\x14"}, {{0x61,0x32,0x69,0x2a,0x5e,0xf2,0x7b,0xf4,0x76,0xb1,0xe9,0x91,0xe6,0xc4,0x31,0xa8,0xc7,0x64,0xf1,0xae,0xbd,0x47,0x02,0x82,0xdb,0x33,0x21,0xbb,0x7c,0xb0,0x9c,0x20,},{0x7a,0x2d,0x16,0x61,0x84,0xf9,0xe5,0xf7,0x3b,0xea,0x45,0x44,0x86,0xb0,0x41,0xce,0xb5,0xfc,0x23,0x14,0xa7,0xbd,0x59,0xcb,0x71,0x8e,0x79,0xf0,0xec,0x98,0x9d,0x84,},{0xeb,0x67,0x7f,0x33,0x47,0xe1,0xa1,0xea,0x92,0x9e,0xfd,0xf6,0x2b,0xf9,0x10,0x5a,0x6c,0x8f,0x49,0x93,0x03,0x3b,0x4f,0x6d,0x03,0xcb,0x0d,0xbf,0x9c,0x74,0x2b,0x27,0x07,0x04,0xe3,0x83,0xab,0x7c,0x06,0x76,0xbd,0xb1,0xad,0x0c,0xe9,0xb1,0x66,0x73,0x08,0x3c,0x96,0x02,0xec,0x10,0xae,0x1d,0xd9,0x8e,0x87,0x48,0xb3,0x36,0x44,0x0b,},"\xa9\xc0\x86\x16\x65\xd8\xc2\xde\x06\xf9\x30\x1d\xa7\x0a\xfb\x27\xb3\x02\x4b\x74\x4c\x6b\x38\xb2\x42\x59\x29\x4c\x97\xb1\xd1\xcb\x4f\x0d\xcf\x75\x75\xa8\xed\x45\x4e\x2f\x09\x80\xf5\x03\x13\xa7\x73\x63\x41\x51\x83\xfe\x96\x77\xa9\xeb\x1e\x06\xcb\x6d\x34\xa4\x67\xcb\x7b\x07\x58\xd6\xf5\x5c\x56\x4b\x5b\xa1\x56\x03\xe2\x02\xb1\x88\x56\xd8\x9e\x72\xa2\x3a\xb0\x7d\x88\x53\xff\x77\xda\x7a\xff\x1c\xae\xbd\x79\x59\xf2\xc7\x10\xef\x31\xf5\x07\x8a\x9f\x2c\xda\xe9\x26\x41\xa1\xcc\x5f\x74\xd0\xc1\x43\xec\x42\xaf\xba\xa5\xf3\x78\xa9\xe1\x0d\x5b\xf7\x45\x87\xfa\x5f\x49\xc1\x56\x23\x32\x47\xda\xfd\x39\x29\xac\xde\x88\x8d\xc6\x84\x33\x7e\x40\xcd\xc5\x93\x2e\x7e\xb7\x3f\xfc\xc9\x0b\x85\xc0\xad\x46\x04\x16\x69\x1a\xef\xbd\x7e\xfd\x07\xb6\x57\xc3\x50\x94\x6a\x0e\x36\x6b\x37\xa6\xc8\x08\x9a\xba\x5c\x5f\xe3\xbb\xca\x06\x4a\xfb\xe9\xd4\x7f\xbc\x83\x91\x4a\xf1\xcb\x43\xc2\xb2\xef\xa9\x8e\x0a\x43\xbe\x32\xba\x82\x32\x02\x00\x1d\xef\x36\x81\x72\x51\xb6\x5f\x9b\x05\x06\xce\xf6\x68\x36\x42\xa4\x6e\xd6\x12\xf8\xca\x81\xee\x97\xbb\x04\xd3\x17\xb5\x17\x34\x3a\xde\x2b\x77\x12\x6d\x1f\x02\xa8\x7b\x76\x04\xc8\x65\x3b\x67\x48\xcf\x54\x88\xfa\x6d\x43\xdf\x80\x9f\xaa\x19\xe6\x92\x92\xd3\x8c\x5d\x39\x7d\xd8\xe2\x0c\x7a\xf7\xc5\x33\x4e\xc9\x77\xf5\x01\x0a\x0f\x7c\xb5\xb8\x94\x79\xca\x06\xdb\x4d\x12\x62\x7f\x06\x7d\x6c\x42\x18\x6a\x6b\x1f\x87\x42\xf3\x6a\xe7\x09\xba\x72\x0e\x3c\xd8\x98\x11\x66\x66\xd8\x1b\x19\x0b\x9b\x9d\x2a\x72\x20\x2c\xb6\x90\xa0\x3f\x33\x10\x42\x9a\x71\xdc\x04\x8c\xde"}, {{0xf2,0x19,0xb2,0x10,0x11,0x64,0xaa,0x97,0x23,0xbd,0xe3,0xa7,0x34,0x6f,0x68,0xa3,0x50,0x61,0xc0,0x1f,0x97,0x82,0x07,0x25,0x80,0xba,0x32,0xdf,0x90,0x3b,0xa8,0x91,},{0xf6,0x6b,0x92,0x0d,0x5a,0xa1,0xa6,0x08,0x54,0x95,0xa1,0x48,0x05,0x39,0xbe,0xba,0x01,0xff,0xe6,0x0e,0x6a,0x63,0x88,0xd1,0xb2,0xe8,0xed,0xa2,0x33,0x55,0x81,0x0e,},{0x17,0xf0,0x12,0x7c,0xa3,0xba,0xfa,0x5f,0x4e,0xe9,0x59,0xcd,0x60,0xf7,0x72,0xbe,0x87,0xa0,0x03,0x49,0x61,0x51,0x7e,0x39,0xa0,0xa1,0xd0,0xf4,0xb9,0xe2,0x6d,0xb1,0x33,0x6e,0x60,0xc8,0x2b,0x35,0x2c,0x4c,0xba,0xcd,0xbb,0xd1,0x17,0x71,0xc3,0x77,0x4f,0x8c,0xc5,0xa1,0xa7,0x95,0xd6,0xe4,0xf4,0xeb,0xd5,0x1d,0xef,0x36,0x77,0x0b,},"\x01\x55\x77\xd3\xe4\xa0\xec\x1a\xb2\x59\x30\x10\x63\x43\xff\x35\xab\x4f\x1e\x0a\x8a\x2d\x84\x4a\xad\xbb\x70\xe5\xfc\x53\x48\xcc\xb6\x79\xc2\x29\x5c\x51\xd7\x02\xaa\xae\x7f\x62\x73\xce\x70\x29\x7b\x26\xcb\x7a\x25\x3a\x3d\xb9\x43\x32\xe8\x6a\x15\xb4\xa6\x44\x91\x23\x27\x91\xf7\xa8\xb0\x82\xee\x28\x34\xaf\x30\x40\x0e\x80\x46\x47\xa5\x32\xe9\xc4\x54\xd2\xa0\xa7\x32\x01\x30\xab\x6d\x4d\x86\x00\x73\xa3\x46\x67\xac\x25\xb7\xe5\xe2\x74\x7b\xa9\xf5\xc9\x45\x94\xfb\x68\x37\x7a\xe2\x60\x36\x9c\x40\x71\x3b\x4e\x32\xf2\x31\x95\xbf\x91\xd3\xd7\xf1\xa2\x71\x9b\xf4\x08\xaa\xd8\xd8\xa3\x47\xb1\x12\xe8\x4b\x11\x88\x17\xcb\x06\x51\x33\x44\x02\x17\x63\x03\x52\x72\xa7\xdb\x72\x8a\x0c\xcd\xaa\x94\x9c\x61\x71\x5d\x07\x64\x14\x0b\x3e\x8c\x01\xd2\x0f\xf1\x59\x3c\x7f\x2d\x55\xc4\xe8\x2a\x1c\x0c\xb1\xea\x58\x44\x2b\xf8\x0a\x74\x1b\xca\x91\xf5\x8a\xb0\x58\x1b\x49\x8e\xe9\xfe\x3c\x92\xca\x65\x41\x48\xef\x75\x31\x35\x43\xd1\xaf\xf3\x82\xbe\xfe\x1a\x93\xb0\x21\x90\xce\x01\x02\x17\x51\x58\xe2\x07\x1d\x02\xba\xca\xd8\xdb\xe9\xfb\x94\x0f\xcb\x61\x0c\x10\x5a\xd5\x2c\x80\xfe\xb1\xec\x4e\x52\x4f\x4c\x0e\xc7\x98\x3e\x9c\xe6\x96\xfa\x4f\xcf\x4b\xf0\x51\x4b\x8f\x04\x32\xb1\x7d\x54\x48\xfc\x42\x6f\xea\x2b\x01\xac\x7b\x26\xc2\xae\xd7\x69\x92\x75\x34\xda\x22\x57\x6f\xc1\xbb\xa7\x26\xe9\xd6\x5b\xe0\x1b\x59\xf6\x0a\x64\x8a\xce\x2f\xc3\xe5\xe2\x75\x78\x9f\xa6\x37\xcb\xbd\x84\xbe\x3d\x6a\xc2\x44\x57\xa6\x29\x2c\xd6\x56\xc7\xb5\x69\xa5\x2f\xfe\xa7\x91\x6b\x8d\x04\xb4\xf4\xa7\x5b\xe7\xac\x95\x14\x2f"}, {{0xfc,0x18,0x00,0x35,0xae,0xc0,0xf5,0xed,0xe7,0xbd,0xa9,0x3b,0xf7,0x7a,0xde,0x7a,0x81,0xed,0x06,0xde,0x07,0xee,0x2e,0x3a,0xa8,0x57,0x6b,0xe8,0x16,0x08,0x61,0x0a,},{0x4f,0x21,0x5e,0x94,0x8c,0xae,0x24,0x3e,0xe3,0x14,0x3b,0x80,0x28,0x2a,0xd7,0x92,0xc7,0x80,0xd2,0xa6,0xb7,0x50,0x60,0xca,0x1d,0x29,0x0c,0xa1,0xa8,0xe3,0x15,0x1f,},{0xa4,0x3a,0x71,0xc3,0xa1,0x9c,0x35,0x66,0x0d,0xae,0x6f,0x31,0xa2,0x54,0xb8,0xc0,0xea,0x35,0x93,0xfc,0x8f,0xca,0x74,0xd1,0x36,0x40,0x01,0x2b,0x9e,0x94,0x73,0xd4,0xaf,0xe0,0x70,0xdb,0x01,0xe7,0xfb,0x39,0x9b,0xf4,0xca,0x60,0x70,0xe0,0x62,0x18,0x00,0x11,0x28,0x5a,0x67,0xdd,0x68,0x58,0xb7,0x61,0xe4,0x6c,0x6b,0xd3,0x20,0x04,},"\xb5\xe8\xb0\x16\x25\x66\x4b\x22\x23\x39\xe0\xf0\x5f\x93\xa9\x90\xba\x48\xb5\x6a\xe6\x54\x39\xa1\x75\x20\x93\x2d\xf0\x11\x72\x1e\x28\x4d\xbe\x36\xf9\x86\x31\xc0\x66\x51\x00\x98\xa6\x8d\x7b\x69\x2a\x38\x63\xe9\x9d\x58\xdb\x76\xca\x56\x67\xc8\x04\x3c\xb1\x0b\xd7\xab\xba\xf5\x06\x52\x9f\xbb\x23\xa5\x16\x6b\xe0\x38\xaf\xfd\xb9\xa2\x34\xc4\xf4\xfc\xf4\x3b\xdd\xd6\xb8\xd2\xce\x77\x2d\xd6\x53\xed\x11\x5c\x09\x5e\x23\x2b\x26\x9d\xd4\x88\x8d\x23\x68\xcb\x1c\x66\xbe\x29\xdd\x38\x3f\xca\x67\xf6\x67\x65\xb2\x96\x56\x4e\x37\x55\x5f\x0c\x0e\x48\x45\x04\xc5\x91\xf0\x06\xea\x85\x33\xa1\x25\x83\xad\x2e\x48\x31\x8f\xf6\xf3\x24\xec\xaf\x80\x4b\x1b\xae\x04\xaa\x89\x67\x43\xe6\x7e\xf6\x1c\xa3\x83\xd5\x8e\x42\xac\xfc\x64\x10\xde\x30\x77\x6e\x3b\xa2\x62\x37\x3b\x9e\x14\x41\x94\x39\x55\x10\x1a\x4e\x76\x82\x31\xad\x9c\x65\x29\xef\xf6\x11\x8d\xde\x5d\xf0\x2f\x94\xb8\xd6\xdf\x2d\x99\xf2\x78\x63\xb5\x17\x24\x3a\x57\x9e\x7a\xaf\xf3\x11\xea\x3a\x02\x82\xe4\x7c\xa8\x76\xfa\xbc\x22\x80\xfc\xe7\xad\xc9\x84\xdd\x0b\x30\x88\x5b\x16\x50\xf1\x47\x1d\xfc\xb0\x52\x2d\x49\xfe\xc7\xd0\x42\xf3\x2a\x93\xbc\x36\x8f\x07\x60\x06\xea\x01\xec\x1c\x74\x12\xbf\x66\xf6\x2d\xc8\x8d\xe2\xc0\xb7\x47\x01\xa5\x61\x4e\x85\x5e\x9f\xa7\x28\xfb\x1f\x11\x71\x38\x5f\x96\xaf\xbd\xe7\x0d\xea\x02\xe9\xaa\x94\xdc\x21\x84\x8c\x26\x30\x2b\x50\xae\x91\xf9\x69\x3a\x18\x64\xe4\xe0\x95\xae\x03\xcd\xc2\x2a\xd2\x8a\x0e\xb7\xdb\x59\x67\x79\x24\x67\x12\xfa\xb5\xf5\xda\x32\x7e\xfe\xc3\xe7\x96\x12\xde\x0a\x6c\xca\xa5\x36\x75\x9b\x8e"}, {{0xa2,0x83,0x6a,0x65,0x42,0x79,0x12,0x12,0x2d,0x25,0xdc,0xdf,0xc9,0x9d,0x70,0x46,0xfe,0x9b,0x53,0xd5,0xc1,0xbb,0x23,0x61,0x7f,0x11,0x89,0x0e,0x94,0xca,0x93,0xed,},{0x8c,0x12,0xbd,0xa2,0x14,0xc8,0xab,0xb2,0x28,0x6a,0xcf,0xfb,0xf8,0x11,0x24,0x25,0x04,0x0a,0xab,0x9f,0x4d,0x8b,0xb7,0x87,0x0b,0x98,0xda,0x01,0x59,0xe8,0x82,0xf1,},{0xe6,0xa9,0xa6,0xb4,0x36,0x55,0x9a,0x43,0x20,0xc4,0x5c,0x0c,0x2c,0x4a,0x2a,0xed,0xec,0xb9,0x0d,0x41,0x6d,0x52,0xc8,0x26,0x80,0xac,0x73,0x30,0xd0,0x62,0xae,0xbe,0xf3,0xe9,0xac,0x9f,0x2c,0x5f,0xfa,0x45,0x5c,0x9b,0xe1,0x13,0x01,0x3a,0x2b,0x28,0x2e,0x56,0x00,0xfd,0x30,0x64,0x35,0xad,0xa8,0x3b,0x1e,0x48,0xba,0x2a,0x36,0x05,},"\x81\x3d\x60\x61\xc5\x6e\xae\x0f\xf5\x30\x41\xc0\x24\x4a\xa5\xe2\x9e\x13\xec\x0f\x3f\xb4\x28\xd4\xbe\xb8\xa9\x9e\x04\xbc\xa8\xc4\x1b\xdd\xb0\xdb\x94\x5f\x48\x7e\xfe\x38\xf2\xfc\x14\xa6\x28\xfa\xfa\x24\x62\xf8\x60\xe4\xe3\x42\x50\xeb\x4e\x93\xf1\x39\xab\x1b\x74\xa2\x61\x45\x19\xe4\x1e\xe2\x40\x3b\xe4\x27\x93\x0a\xb8\xbc\x82\xec\x89\xce\xaf\xb6\x09\x05\xbd\x4d\xdb\xbd\x13\xbd\xb1\x96\x54\x31\x4f\xc9\x23\x73\x14\x0b\x96\x2e\x22\x58\xe0\x38\xd7\x1b\x9e\xc6\x6b\x84\xef\x83\x19\xe0\x35\x51\xcb\x70\x7e\x74\x7f\x6c\x40\xad\x47\x6f\xbe\xfd\xce\x71\xf3\xa7\xb6\x7a\x1a\xf1\x86\x9b\xc6\x44\x06\x86\xe7\xe0\x85\x5e\x4f\x36\x9d\x1d\x88\xb8\x09\x9f\xba\x54\x71\x46\x78\x62\x7b\xba\x1a\xff\x41\xe7\x70\x7b\xc9\x7e\xdd\xf8\x90\xb0\xc0\x8d\xce\x3e\x98\x00\xd2\x4c\x6f\x61\x09\x2c\xe2\x8d\x48\x1b\x5d\xea\x5c\x09\x6c\x55\xd7\x2f\x89\x46\x00\x91\x31\xfb\x96\x8e\x2b\xc8\xa0\x54\xd8\x25\xad\xab\x76\x74\x0d\xcf\x0d\x75\x8c\x8b\xf5\x4f\xf3\x86\x59\xe7\x1b\x32\xbf\xe2\xe6\x15\xaa\xab\xb0\xf5\x29\x30\x85\x64\x9c\xf6\x0b\x98\x47\xbc\x62\x01\x1c\xe3\x87\x8a\xf6\x28\x98\x4a\x58\x40\xa4\xad\x5d\xae\x37\x02\xdb\x36\x7d\xa0\xf8\xa1\x65\xfe\xd0\x51\x7e\xb5\xc4\x42\xb0\x14\x53\x30\x24\x1b\x97\xee\xca\x73\x3b\xa6\x68\x8b\x9c\x12\x9a\x61\xcd\x12\x36\xaf\xf0\xe2\x7b\xcf\x98\xc2\x8b\x0f\xbe\xea\x55\xa3\xd7\xc7\x19\x3d\x64\x4b\x27\x49\xf9\x86\xbd\x46\xaf\x89\x38\xe8\xfa\xae\xaf\xbd\x9c\xec\x36\x12\xab\x00\x5b\xd7\xc3\xee\xaf\xe9\xa3\x12\x79\xca\x61\x02\x56\x06\x66\xba\x16\x13\x6f\xf1\x45\x2f\x85\x0a\xdb"}, {{0xf0,0x51,0xaf,0x42,0x6d,0x0c,0x32,0x82,0xfa,0xfc,0x8b,0xf9,0x12,0xad,0xe1,0xc2,0x42,0x11,0xa9,0x5a,0xd2,0x00,0xe1,0xee,0xf5,0x49,0x32,0x0e,0x1c,0xb1,0xa2,0x52,},{0xfa,0x87,0x95,0x5e,0x0e,0xa1,0x3d,0xde,0x49,0xd8,0x3d,0xc2,0x2e,0x63,0xa2,0xbd,0xf1,0x07,0x67,0x25,0xc2,0xcc,0x7f,0x93,0xc7,0x65,0x11,0xf2,0x8e,0x79,0x44,0xf2,},{0xb8,0xf7,0x13,0x57,0x8a,0x64,0x46,0x67,0x19,0xac,0xeb,0x43,0x2f,0xce,0x30,0x2a,0x87,0xcf,0x06,0x6b,0xf3,0xe1,0x02,0xa3,0x50,0x61,0x69,0x21,0xa8,0x40,0x96,0x4b,0xfc,0x7e,0x68,0x5d,0x8f,0xd1,0x74,0x55,0xac,0x3e,0xb4,0x86,0x1e,0xdc,0xb8,0x97,0x9d,0x35,0xe3,0xa4,0xbd,0x82,0xa0,0x78,0xcd,0x70,0x77,0x21,0xd7,0x33,0x40,0x0e,},"\xb4\x8d\x9f\x84\x76\x2b\x3b\xcc\x66\xe9\x6d\x76\xa6\x16\xfa\x8f\xe8\xe0\x16\x95\x25\x1f\x47\xcf\xc1\xb7\xb1\x7d\x60\xdc\x9f\x90\xd5\x76\xef\x64\xee\x7d\x38\x85\x04\xe2\xc9\x07\x96\x38\x16\x5a\x88\x96\x96\x47\x1c\x98\x9a\x87\x6f\x8f\x13\xb6\x3b\x58\xd5\x31\xfe\xa4\xdd\x12\x29\xfc\x63\x16\x68\xa0\x47\xbf\xae\x2d\xa2\x81\xfe\xae\x1b\x6d\xe3\xeb\xe2\x80\xab\xe0\xa8\x2e\xe0\x0f\xbf\xdc\x22\xce\x2d\x10\xe0\x6a\x04\x92\xff\x14\x04\xdf\xc0\x94\xc4\x0b\x20\x3b\xf5\x57\x21\xdd\x78\x7e\xd4\xe9\x1d\x55\x17\xaa\xf5\x8d\x3b\xdd\x35\xd4\x4a\x65\xae\x6b\xa7\x56\x19\xb3\x39\xb6\x50\x51\x8c\xef\xcc\x17\x49\x3d\xe2\x7a\x3b\x5d\x41\x78\x8f\x87\xed\xbd\xe7\x26\x10\xf1\x81\xbf\x06\xe2\x08\xe0\xeb\x7c\xdf\xe8\x81\xd9\x1a\x2d\x6c\xc7\x7a\xa1\x9c\x0f\xcf\x33\x0f\xed\xb4\x46\x75\xd8\x00\xeb\x8c\xff\x95\x05\xd8\x88\x75\x44\xa5\x03\xcb\xe3\x73\xc4\x84\x7b\x19\xe8\xf3\x99\x57\x26\xef\xd6\x64\x98\x58\x59\x5c\x57\xcc\xaf\x0c\xbc\x9e\xb2\x5d\xe8\x3b\xa0\x46\xbc\x9f\x18\x38\xac\x7b\x89\x53\xdd\x81\xb8\x1a\xc0\xf6\x8d\x0e\x93\x38\xcb\x55\x40\x25\x52\xaf\xb6\xbc\x16\x94\x93\x51\xb9\x26\xd1\x51\xa8\x2e\xfc\x69\x5e\x8d\x7d\xa0\xdd\x55\x09\x93\x66\x78\x97\x18\xcc\xbf\x36\x03\x0b\xd2\xc3\xc1\x09\x39\x9b\xe2\x6c\xdb\x8b\x9e\x2a\x15\x5f\x3b\x2c\xb1\xbf\xa7\x1a\xb6\x9a\x23\x62\x5a\x4a\xc1\x18\xfe\x91\xcb\x2c\x19\x78\x8c\xf5\x2a\x71\xd7\x30\xd5\x76\xb4\x21\xd9\x69\x82\xa5\x1a\x29\x91\xda\xec\x44\x0c\xda\x7e\x6c\xc3\x28\x2b\x83\x12\x71\x42\x78\xb8\x19\xbf\xe2\x38\x7e\xb9\x6a\xa9\x1d\x40\x17\x30\x34\xf4\x28"}, {{0xa1,0x03,0xe9,0x26,0x72,0xc6,0x5f,0x81,0xea,0x5d,0xa1,0xff,0xf1,0xa4,0x03,0x87,0x88,0x47,0x9e,0x94,0x1d,0x50,0x3a,0x75,0x6f,0x4a,0x75,0x52,0x01,0xa5,0x7c,0x1d,},{0xee,0x63,0xa5,0xb6,0x96,0x41,0x21,0x7a,0xcb,0xaf,0x33,0x39,0xda,0x82,0x9e,0xc0,0x71,0xb9,0x93,0x1e,0x59,0x87,0x15,0x35,0x14,0xd3,0x01,0x40,0x83,0x7a,0x7a,0xf4,},{0x2a,0xa2,0x03,0x5c,0x2c,0xe5,0xb5,0xe6,0xae,0x16,0x1e,0x16,0x8f,0x3a,0xd0,0xd6,0x59,0x2b,0xcf,0x2c,0x4a,0x04,0x9d,0x3e,0xd3,0x42,0xfc,0xeb,0x56,0xbe,0x9c,0x7c,0xb3,0x72,0x02,0x75,0x73,0xae,0x01,0x78,0xe8,0x87,0x8e,0xbe,0xfc,0xa7,0xb0,0x30,0x32,0x7b,0x8a,0xad,0x41,0x85,0x7d,0xe5,0x8c,0xb7,0x8e,0x1a,0x00,0xcb,0xac,0x05,},"\xb1\x98\x4e\x9e\xec\x08\x5d\x52\x4c\x1e\xb3\xb9\x5c\x89\xc8\x4a\xe0\x85\xbe\x5d\xc6\x5c\x32\x6e\x19\x02\x5e\x12\x10\xa1\xd5\x0e\xdb\xbb\xa5\xd1\x37\x0c\xf1\x5d\x68\xd6\x87\xeb\x11\x32\x33\xe0\xfb\xa5\x0f\x94\x33\xc7\xd3\x58\x77\x39\x50\xc6\x79\x31\xdb\x82\x96\xbb\xcb\xec\xec\x88\x8e\x87\xe7\x1a\x2f\x75\x79\xfa\xd2\xfa\x16\x2b\x85\xfb\x97\x47\x3c\x45\x6b\x9a\x5c\xe2\x95\x66\x76\x96\x9c\x7b\xf4\xc4\x56\x79\x08\x5b\x62\xf2\xc2\x24\xfc\x7f\x45\x87\x94\x27\x3f\x6d\x12\xc5\xf3\xe0\xd0\x69\x51\x82\x4d\x1c\xca\x3e\x2f\x90\x45\x59\xed\x28\xe2\x86\x8b\x36\x6d\x79\xd9\x4d\xc9\x86\x67\xb9\xb5\x92\x42\x68\xf3\xe3\x9b\x12\x91\xe5\xab\xe4\xa7\x58\xf7\x70\x19\xda\xcb\xb2\x2b\xd8\x19\x6e\x0a\x83\xa5\x67\x76\x58\x83\x6e\x96\xca\x56\x35\x05\x5a\x1e\x63\xd6\x5d\x03\x6a\x68\xd8\x7a\xc2\xfd\x28\x3f\xdd\xa3\x90\x31\x99\x09\xc5\xcc\x76\x80\x36\x88\x48\x87\x3d\x59\x7f\x29\x8e\x0c\x61\x72\x30\x80\x30\xff\xd4\x52\xbb\x13\x63\x61\x7b\x31\x6e\xd7\xcd\x94\x9a\x16\x5d\xc8\xab\xb5\x3f\x99\x1a\xef\x3f\x3e\x95\x02\xc5\xdf\xe4\x75\x6b\x7c\x6b\xfd\xfe\x89\xf5\xe0\x0f\xeb\xdd\x6a\xfb\x04\x02\x81\x8f\x11\xcf\x8d\x1d\x58\x64\xfe\x9d\xa1\xb8\x6e\x39\xaa\x93\x58\x31\x50\x6c\xf2\x40\x0e\xa7\xed\x75\xbd\x95\x33\xb2\x3e\x20\x2f\xe8\x75\xd7\xd9\x63\x8c\x89\xd1\x1c\xb2\xd6\xe6\x02\x1a\xe6\xbd\x27\xc7\x75\x48\x10\xd3\x5c\xd3\xa6\x14\x94\xf2\x7b\x16\xfc\x79\x4e\x2c\xd2\xf0\xd3\x45\x3a\xda\x93\x38\x65\xdb\x78\xc5\x79\x57\x1f\x8f\xc5\xc5\xc6\xbe\x8e\xaf\xfc\xe6\xa8\x52\xe5\xb3\xb1\xc5\x24\xc4\x93\x13\xd4\x27\xab\xcb"}, {{0xd4,0x7c,0x1b,0x4b,0x9e,0x50,0xcb,0xb7,0x1f,0xd0,0x7d,0x09,0x6d,0x91,0xd8,0x72,0x13,0xd4,0x4b,0x02,0x43,0x73,0x04,0x47,0x61,0xc4,0x82,0x2f,0x9d,0x9d,0xf8,0x80,},{0xf4,0xe1,0xcb,0x86,0xc8,0xca,0x2c,0xfe,0xe4,0x3e,0x58,0x59,0x4a,0x87,0x78,0x43,0x6d,0x3e,0xa5,0x19,0x70,0x4e,0x00,0xc1,0xbb,0xe4,0x8b,0xbb,0x1c,0x94,0x54,0xf8,},{0x62,0x7e,0x7c,0xa7,0xe3,0x4e,0xd6,0x33,0x1d,0x62,0xb9,0x54,0x1c,0x1e,0xa9,0xa9,0x29,0x2b,0xe7,0xb0,0xa6,0x5d,0x80,0x5e,0x26,0x6b,0x51,0x22,0x27,0x2a,0x82,0xdb,0x7d,0x76,0x5a,0xcc,0x7e,0x2a,0x29,0x0d,0x68,0x58,0x04,0x92,0x2f,0x91,0xed,0x04,0xa3,0xc3,0x82,0xc0,0x3f,0xf2,0x1a,0x17,0x68,0xf5,0x84,0x41,0x3c,0x4e,0x5f,0x00,},"\x88\xd7\x00\x9d\x51\xde\x3d\x33\x7e\xef\x0f\x21\x5e\xa6\x6a\xb8\x30\xec\x5a\x9e\x68\x23\x76\x1c\x3b\x92\xad\x93\xea\x34\x1d\xb9\x2e\xce\x67\xf4\xef\x4c\xeb\x84\x19\x4a\xe6\x92\x6c\x3d\x01\x4b\x2d\x59\x78\x1f\x02\xe0\xb3\x2f\x9a\x61\x12\x22\xcb\x9a\x58\x50\xc6\x95\x7c\xb8\x07\x9a\xe6\x4e\x08\x32\xa1\xf0\x5e\x5d\x1a\x3c\x57\x2f\x9d\x08\xf1\x43\x7f\x76\xbb\x3b\x83\xb5\x29\x67\xc3\xd4\x8c\x35\x76\x84\x88\x91\xc9\x65\x8d\x49\x59\xeb\x80\x65\x6d\x26\xcd\xba\x08\x10\x03\x7c\x8a\x18\x31\x8f\xf1\x22\xf8\xaa\x89\x85\xc7\x73\xcb\x31\x7e\xfa\x2f\x55\x7f\x1c\x38\x96\xbc\xb1\x62\xdf\x5d\x87\x68\x1b\xb7\x87\xe7\x81\x3a\xa2\xde\xa3\xb0\xc5\x64\xd6\x46\xa9\x28\x61\xf4\x44\xca\x14\x07\xef\xba\xc3\xd1\x24\x32\xcb\xb7\x0a\x1d\x0e\xaf\xfb\x11\x74\x1d\x37\x18\xfe\xde\xe2\xb8\x30\x36\x18\x9a\x6f\xc4\x5a\x52\xf7\x4f\xa4\x87\xc1\x8f\xd2\x64\xa7\x94\x5f\x6c\x9e\x44\xb0\x11\xf5\xd8\x66\x13\xf1\x93\x9b\x19\xf4\xf4\xfd\xf5\x32\x34\x05\x7b\xe3\xf0\x05\xad\x64\xee\xbf\x3c\x8f\xfb\x58\xcb\x40\x95\x6c\x43\x36\xdf\x01\xd4\x42\x4b\x70\x6a\x0e\x56\x1d\x60\x17\x08\xd1\x24\x85\xe2\x1b\xcb\x6d\x79\x9d\x8d\x1d\x04\x4b\x40\x00\x64\xec\x09\x44\x50\x14\x06\xe7\x02\x53\x94\x70\x06\xca\xbb\xdb\x2d\xd6\xbd\x8c\xee\x44\x97\x65\x3d\x91\x13\xa4\x4d\x4d\xe9\xb6\x8d\x4c\x52\x6f\xca\x0b\x9b\x0c\x18\xfe\x50\xfb\x91\x7f\xdd\x9a\x91\x4f\xb8\x16\x10\x8a\x73\xa6\xb3\xff\xf9\xe6\x54\xe6\x9c\x9c\xfe\x02\xb0\x5c\x6c\x1b\x9d\x15\xc4\xe6\x5c\xf3\x10\x18\xb8\x10\x0d\x78\x46\x33\xee\x18\x88\xee\xe3\x57\x2a\xaf\xa6\xf1\x89\xea\x22\xd0"}, {{0xfc,0x0c,0x32,0xc5,0xeb,0x6c,0x71,0xea,0x08,0xdc,0x2b,0x30,0x0c,0xbc,0xef,0x18,0xfd,0xde,0x3e,0xa2,0x0f,0x68,0xf2,0x17,0x33,0x23,0x7b,0x4d,0xda,0xab,0x90,0x0e,},{0x47,0xc3,0x7d,0x8a,0x08,0x08,0x57,0xeb,0x87,0x77,0xa6,0xc0,0xa9,0xa5,0xc9,0x27,0x30,0x3f,0xaf,0x5c,0x32,0x09,0x53,0xb5,0xde,0x48,0xe4,0x62,0xe1,0x2d,0x00,0x62,},{0x68,0x87,0xc6,0xe2,0xb9,0x8a,0x82,0xaf,0x5e,0xe3,0xdf,0xa7,0xca,0x2c,0xb2,0x5d,0x9c,0x10,0x74,0x56,0x20,0xa8,0x29,0x56,0xac,0xba,0x85,0xcb,0x57,0xc8,0xec,0x24,0x27,0x9f,0xa4,0x2f,0x09,0x23,0x59,0xa1,0xb6,0xbb,0xea,0xfb,0xa0,0x50,0xf1,0x4b,0x62,0x88,0x20,0x9e,0x6e,0xf7,0xbc,0x1e,0x0a,0x2b,0x87,0x2c,0x11,0x38,0xf3,0x05,},"\xa7\xb1\xe2\xdb\x6b\xdd\x96\xb3\xd5\x14\x75\x60\x35\x37\xa7\x6b\x42\xb0\x4d\x7e\xbd\x24\xfe\x51\x5a\x88\x76\x58\xe4\xa3\x52\xe2\x21\x09\x33\x56\x39\xa5\x9e\x25\x34\x81\x1f\x47\x53\xb7\x02\x09\xd0\xe4\x69\x8e\x9d\x92\x60\x88\x82\x6c\x14\x68\x96\x81\xea\x00\xfa\x3a\x2f\xca\xa0\x04\x7c\xed\x3e\xf2\x87\xe6\x17\x25\x02\xb2\x15\xe5\x64\x97\x61\x4d\x86\xb4\xcb\x26\xbc\xd7\x7a\x2e\x17\x25\x09\x36\x0e\xe5\x88\x93\xd0\x1c\x0d\x0f\xb4\xd4\xab\xfe\x4d\xbd\x8d\x2a\x2f\x54\x19\x0f\xa2\xf7\x31\xc1\xce\xac\x68\x29\xc3\xdd\xc9\xbf\xb2\xff\xd7\x0c\x57\xba\x0c\x2b\x22\xd2\x32\x6f\xbf\xe7\x39\x0d\xb8\x80\x9f\x73\x54\x7f\xf4\x7b\x86\xc3\x6f\x2b\xf7\x45\x4e\x67\x8c\x4f\x1c\x0f\xa8\x70\xbd\x0e\x30\xbb\xf3\x27\x8e\xc8\xd0\xc5\xe9\xb6\x4a\xff\x0a\xf6\x4b\xab\xc1\x9b\x70\xf4\xcf\x9a\x41\xcb\x8f\x95\xd3\xcd\xe2\x4f\x45\x6b\xa3\x57\x1c\x8f\x02\x1d\x38\xe5\x91\xde\xc0\x5c\xb5\xd1\xca\x7b\x48\xf9\xda\x4b\xd7\x34\xb0\x69\xa9\xfd\x10\x65\x00\xc1\xf4\x08\xab\x7f\xe8\xe4\xa6\xe6\xf3\xed\x64\xda\x0e\xd2\x4b\x01\xe3\x3d\xf8\x47\x5f\x95\xfa\x9e\xd7\x1d\x04\xdd\x30\xb3\xcd\x82\x37\x55\xa3\x40\x1b\xf5\xaf\xae\x10\xee\x7e\x18\xec\x6f\xe6\x37\xc3\x79\x3f\xd4\x34\xb4\x8d\x71\x45\x13\x04\x47\xe0\x02\x99\x10\x10\x52\x55\x8b\x50\x65\x54\xec\x9c\x39\x9f\x62\x94\x1c\x3f\x41\x4c\xbc\x35\x2c\xaa\x34\x5b\x93\x0a\xde\xcf\xad\xda\xc9\x1e\xe5\x3d\x14\x51\xa6\x5e\x06\x20\x10\x26\x32\x5d\xe0\x7c\x93\x1f\x69\xbb\xa8\x68\xa7\xc8\x7e\xe2\x3c\x60\x4e\xc6\x79\x43\x32\x91\x7d\xfe\x2c\x5b\x69\x66\x9b\x65\x97\x06\x91\x7f\x71\xed\xdf\x96"}, {{0xa8,0xd7,0x3d,0x63,0x9a,0x23,0xcc,0x6a,0x96,0x7e,0xf3,0x1b,0xca,0xbb,0x5d,0x06,0x3e,0x53,0xe1,0xea,0xb8,0xfc,0xc7,0xca,0xb9,0xbc,0x3a,0x17,0xfd,0xe9,0xc2,0xf8,},{0x8d,0xaa,0x9f,0x4c,0x8b,0x1a,0x44,0x69,0x1b,0xf4,0x45,0x21,0xf2,0xf7,0xca,0x45,0xdc,0x7f,0xc6,0x1f,0x6a,0x4c,0xe6,0xf9,0x8f,0xaa,0x41,0xc2,0xa7,0x49,0x77,0xd1,},{0xc4,0xdc,0xef,0x1a,0x24,0x53,0x93,0x9b,0x36,0x4b,0x34,0x02,0x50,0xc3,0x12,0x94,0x31,0x43,0x1d,0x5b,0xa3,0xf4,0x76,0x70,0xab,0x07,0xce,0x68,0x0c,0x69,0xbf,0x28,0xb6,0x78,0x62,0x7c,0x76,0xa6,0x36,0x0f,0xc4,0x0d,0xc1,0x09,0xaa,0x7d,0xea,0x37,0x1b,0x82,0x5e,0x46,0x13,0x4f,0x62,0x45,0x72,0x18,0x2a,0xcf,0x39,0x57,0xe7,0x0f,},"\xfd\x1f\xac\x3d\x53\x31\x3b\x11\xac\xd2\x9f\x5a\x83\xac\x11\x89\x6d\xab\x25\x30\xfa\x47\x86\x5b\x22\x95\xc0\xd9\x9d\xd6\x7c\x36\xed\x8e\x5f\xa5\x49\x15\x0c\x79\x4c\x55\x49\xef\xb5\xc1\xd6\x91\x14\xd5\xd6\x07\xb2\x32\x85\xb7\x21\x2a\xfa\xab\x57\x84\x6a\x54\xae\x67\xb9\xe8\x80\xe0\x7b\x65\x86\x60\x7c\xec\xf6\xd4\xee\xd5\x16\xa3\xa7\x55\x11\xfe\x36\x7d\x88\xeb\x87\x1e\x6d\x71\xb7\xd6\xaa\x13\x67\xa0\x14\x21\xb1\x08\x8f\xc2\xd7\x5e\x44\x95\x4b\x73\x62\x5c\x52\xda\x8a\x3a\x18\x3c\x60\xbe\x9d\xa6\x05\x0f\x59\xa4\x53\xca\xa5\x35\x20\x59\x36\x71\x72\x8d\x43\x18\x77\xbf\xaa\xc9\x13\xa7\x65\xfb\x6a\x56\xb7\x52\x90\xb2\xa8\xaa\xac\x34\xaf\xb9\x21\x7b\xa1\xb0\xd5\x85\x0b\xa0\xfd\xab\xf8\x09\x69\xde\xf0\xfe\xee\x79\x4c\xeb\x60\x61\x4e\x33\x68\xe6\x3e\xf2\x0e\x4c\x32\xd3\x41\xec\x9b\x03\x28\xea\x9f\xe1\x39\x20\x7e\xd7\xa6\x26\xff\x08\x94\x3b\x41\x52\x33\xdb\x7c\xfc\xc8\x45\xc9\xb6\x31\x21\xd4\xed\x52\xec\x37\x48\xab\x6a\x1f\x36\xb2\x10\x3c\x7d\xc7\xe9\x30\x3a\xce\xa4\xba\x8a\xf7\xa3\xe0\x71\x84\xfb\x49\x1e\x89\x1e\xde\x84\xf0\xdc\x41\xca\xdc\x39\x73\x02\x8e\x87\x9a\xcd\x20\x31\xaf\xc2\x9a\x16\x09\x28\x68\xe2\xc7\xf5\x39\xfc\x1b\x79\x2e\xda\xb1\x95\xa2\x5a\xb9\x83\x06\x61\x34\x6b\x39\xef\x53\x91\x5d\xe4\xaf\x52\xc4\x21\xea\xf1\x72\xe9\xda\x76\xa0\x8c\x28\x3a\x52\xdf\x90\x7f\x70\x5d\x7e\x85\x99\xc5\xba\xae\x0c\x2a\xf3\x80\xc1\xbb\x46\xf9\x34\x84\xa0\x3f\x28\x37\x43\x24\xb2\x78\x99\x2b\x50\xb7\xaf\xa0\x25\x52\xca\xfa\x50\x3f\x03\x4f\x8d\x86\x6e\x9b\x72\x02\x71\xdd\x68\xcc\xb6\x85\xa8\x5f\xff\xd1"}, {{0x79,0xc7,0xdc,0xb7,0xd5,0x9a,0x8d,0xf6,0xb2,0xb2,0xba,0x04,0x13,0x05,0x9d,0x89,0x68,0x09,0x95,0xc2,0x0e,0x91,0x6d,0xa0,0x1b,0x8f,0x06,0x7d,0xc6,0x0c,0xde,0xb4,},{0x29,0x87,0x43,0xc7,0x39,0x18,0xbd,0x55,0x6b,0x28,0xf8,0xd4,0x82,0x4a,0x09,0xb8,0x14,0x75,0x2a,0x7a,0xea,0xe7,0xee,0x04,0x87,0x5c,0x53,0xf4,0xd6,0xb1,0x08,0xd9,},{0x7b,0x7c,0xbe,0x44,0xc7,0x71,0xe4,0x37,0x1b,0xae,0x13,0xb0,0x72,0x2b,0xab,0xcc,0x10,0x64,0x15,0x57,0x32,0x96,0x2f,0x40,0x7c,0xba,0x2a,0xcd,0x35,0x38,0x1d,0x42,0x21,0x0b,0xec,0xe8,0x22,0xf4,0x68,0x11,0x21,0xfd,0x4d,0xab,0x74,0x5a,0x1f,0x30,0x77,0x92,0x2f,0xba,0x1a,0x78,0x04,0x5b,0x71,0x29,0x02,0xba,0xcc,0xac,0x66,0x0e,},"\x5f\xe2\x02\xf5\xb3\x3b\x77\x88\x81\x0d\x25\x08\xa1\x3b\x31\x14\xd6\x9b\x85\x96\xe6\xea\xcd\xa0\x5a\x04\xa2\xeb\x59\x7f\xa3\x27\x9c\x20\x8b\x5a\x5b\x65\xda\xac\xb6\x99\xf1\x44\xe1\xd6\x60\xe7\x8e\x13\x9b\x57\x83\x31\xab\xec\x5c\x3c\x35\x33\x44\x54\xf0\x3e\x83\x2c\x8d\x6e\x29\x84\xdf\x5d\x45\x0e\xcb\x5d\x33\x58\x2a\x78\x80\x8a\x9c\x78\xf2\x6e\xbc\xd1\x24\x4e\xf5\x2e\x3f\xa6\xdc\xa1\x15\xc1\xf0\xcb\x56\xe3\x8e\xae\x0e\x5b\x39\xf5\xfd\x86\x3d\xff\xd0\xb2\xfb\x5b\x95\x8f\x2d\x73\x9d\xb3\x12\xfc\x66\x7a\x17\xb0\x31\xc4\xc9\xf8\xc5\xa2\xad\x57\x79\x84\xcc\x41\x46\xc4\x37\x58\x0e\xfd\x21\x52\x17\x3f\xe0\xd5\x78\x2c\xc2\xae\x98\x31\xa8\xd9\xa0\x41\x77\x25\x60\x18\xff\x76\x31\xe0\xb0\xd8\xa9\x9c\xb2\x8f\x00\x8b\x32\x04\x21\xe2\x7a\x74\xc3\x13\x59\x18\x86\x63\x45\x6d\x85\xe0\x98\xc1\xeb\xd2\x81\x70\x10\x97\xb6\xae\x5a\x87\x1e\x5c\xcc\x02\x05\x8a\x50\x14\x16\xcb\x91\xc1\x2c\xef\x5b\xe6\xf1\x91\x43\x70\xe5\x63\xf1\xa1\xb2\xaa\x41\xf4\xb8\xee\x84\xcd\x32\xa1\xd5\x09\xe5\x29\x78\x7d\x14\xa4\x45\x43\x8d\x80\x7e\xcd\x62\x0e\x2f\xa2\x6d\xe0\xda\x64\x26\x86\x47\x84\xd4\xa2\x8f\x54\x10\x3e\x60\x92\x83\xb9\x9e\xe9\xb2\xb6\x99\xc9\x80\xbb\xb7\x88\x2c\x3e\xa6\x8d\xdc\x90\x80\x2a\xc2\x32\xf2\xc8\xe8\x42\x91\x98\x7b\xf3\xc5\x24\x09\x21\xb5\x9c\xfa\x21\x49\x69\x31\x76\x73\xd0\xbe\x7f\x34\xb1\xca\x0e\x15\xea\x73\xc7\x17\x54\x01\xce\x55\x0b\xe1\x06\xb4\x9e\x62\xf8\xdb\x68\x69\x5e\x74\x0e\x0f\x3a\x35\x56\xa1\x9f\x3c\x8e\x6b\x91\xac\x1c\xc2\x3e\x86\x3f\xcd\x0f\x0d\x9e\xb7\x04\x7a\xa6\x31\xe0\xd2\xeb\x9b\xcc\x6b"}, {{0xb9,0xce,0xd0,0x41,0x25,0x93,0xfe,0xfe,0xd9,0x5e,0x94,0xac,0x96,0x5e,0x5b,0x23,0xff,0x9d,0x4b,0x0e,0x79,0x7d,0xb0,0x2b,0xf4,0x97,0x99,0x4d,0x3b,0x79,0x3e,0x60,},{0xc1,0x62,0x9a,0x72,0x31,0x89,0x95,0x93,0x37,0xf5,0x53,0x52,0x01,0xe5,0xd3,0x95,0xba,0x0a,0x03,0xea,0x8c,0x17,0x66,0x0d,0x0f,0x8b,0x6f,0x6e,0x64,0x04,0xbb,0x12,},{0xf1,0xb7,0x97,0xde,0xd8,0xa6,0x94,0x2b,0x12,0x62,0x68,0x48,0x34,0x0f,0xb7,0x19,0xfc,0xdd,0xaf,0xd9,0x8f,0x33,0xe2,0x99,0x2d,0x35,0x7b,0xfd,0xd3,0x59,0x33,0xc7,0xac,0x56,0x1e,0x5b,0x2f,0x93,0x94,0x64,0x33,0x8c,0x56,0x66,0x85,0x4c,0xa8,0x85,0xc4,0xd0,0x46,0xeb,0x2c,0x54,0xe4,0x8a,0x1b,0x5e,0xd2,0x66,0xad,0x34,0xde,0x05,},"\x55\x5b\xb3\x9c\x18\x99\xd5\x7c\xab\xe4\x28\x06\x4c\x2d\x92\x5f\x5f\xc4\xcf\x70\x59\xb9\x5f\xb8\x9a\x8e\x9e\x3a\x7e\x42\x6c\x6c\x92\x2d\x9e\x4d\x76\x98\x4e\xa2\x38\x3c\xab\xb4\xf2\xbe\xfd\x89\xc1\xf2\x0e\xaa\x8a\x00\xdb\xe7\x87\xcf\xa7\x0a\xe2\xae\x6a\xa9\x03\x31\xcb\xbe\x58\x0f\xa5\xa0\x21\x84\xed\x05\xe6\xc8\xe8\x9d\x57\x6a\xf2\x8a\xee\xaf\x7c\x4e\x25\x00\xf3\x58\xa0\x09\x71\xa0\xa7\x59\x20\xe8\x54\x84\x9b\xf3\x32\x14\x29\x75\x40\x4f\x59\x8c\x32\xe9\x69\x82\x04\x3d\x99\x2b\xcd\x1a\x4f\xe8\x19\xbb\x56\x34\xad\x03\x46\x7a\xfc\x4c\xe0\x50\x73\xf8\x8b\xa1\xba\x4a\xe8\x65\x3a\x04\x66\x5c\xf3\xf7\x16\x90\xfe\x13\x34\x38\x85\xbc\x5e\xbc\x0e\x5e\x62\xd8\x82\xf4\x3b\x7c\x68\x90\x0a\xc9\x43\x8b\xf4\xa8\x1c\xe9\x01\x69\xec\x12\x9e\xe6\x3e\x2c\x67\x5a\x1a\x5a\x67\xe2\x7c\xc7\x98\xc4\x8c\xc2\x3f\x51\x07\x8f\x46\x3b\x3b\x7c\xc1\x4e\x3b\xcf\xd2\xe9\xb8\x2c\x75\x24\x09\x34\xcb\xdc\x50\xc4\x30\x8f\x28\x2f\x19\x31\x22\x99\x56\x06\xf4\x01\x35\x10\x0a\x29\x1c\x55\xaf\xdf\x89\x34\xeb\x8b\x61\xd8\x14\x21\x67\x41\x24\xde\xc3\xb8\x8f\x9a\x73\x11\x0a\x9e\x61\x6f\x5b\x82\x6b\x9d\x34\x3f\x3a\xc0\xe9\xd7\xbd\xf4\xfd\x8b\x64\x8b\x40\xf0\x09\x8b\x38\x97\xa3\xa1\xcd\x65\xa6\x45\x70\x05\x9b\x8b\xc5\xc6\x74\x38\x83\x07\x4c\x88\x62\x3c\x1f\x5a\x88\xc5\x89\x69\xe2\x1c\x69\x2a\xca\x23\x68\x33\xd3\x47\x0b\x3e\xb0\x98\x15\xe1\x13\x8e\x9d\x06\x50\xc3\x90\xee\xe9\x77\x42\x21\x93\xb0\x09\x18\xbe\x8a\x97\xcc\x61\x99\xb4\x51\xb0\x5b\x57\x30\xd1\xd1\x33\x58\xcf\x74\x61\x06\x78\xf7\xac\x7f\x78\x95\xcc\x2e\xfc\x45\x6e\x03\x87\x3b"}, {{0x81,0xda,0x16,0x8f,0x02,0xd4,0x6b,0xb8,0x7c,0xda,0x84,0x5d,0xa4,0x3f,0x8a,0x6c,0xba,0x2c,0x01,0x68,0x78,0xd6,0xf4,0x9c,0x6f,0x06,0x1a,0x60,0xf1,0x55,0xa0,0x4a,},{0xaf,0xf8,0x6e,0x98,0x09,0x3c,0xa4,0xc7,0x1b,0x1b,0x80,0x4c,0x5f,0xe4,0x51,0xcf,0xdf,0x86,0x82,0x50,0xde,0xa3,0x03,0x45,0xfa,0x4b,0x89,0xbb,0x09,0xb6,0xa5,0x3b,},{0x4a,0xac,0xa9,0x47,0xe3,0xf2,0x2c,0xc8,0xb8,0x58,0x8e,0xe0,0x30,0xac,0xe8,0xf6,0xb5,0xf5,0x71,0x1c,0x29,0x74,0xf2,0x0c,0xc1,0x8c,0x3b,0x65,0x5b,0x07,0xa5,0xbc,0x13,0x66,0xb5,0x9a,0x17,0x08,0x03,0x2d,0x12,0xca,0xe0,0x1a,0xb7,0x94,0xf8,0xcb,0xcc,0x1a,0x33,0x08,0x74,0xa7,0x50,0x35,0xdb,0x1d,0x69,0x42,0x2d,0x2f,0xc0,0x0c,},"\x6b\xc6\x72\x6a\x34\xa6\x4a\xae\x76\xab\x08\xc9\x2b\x17\x9e\x54\xff\x5d\x2e\x65\xeb\x2c\x6c\x65\x9a\xe8\x70\x3c\xc2\x45\xcb\xc2\xcf\x45\xa1\x2b\x22\xc4\x68\xae\x61\xfd\x9a\x66\x27\xad\x06\x26\xc9\xb1\xe5\xaf\x41\x2c\xb4\x83\xea\xee\x1d\xb1\x1b\x29\xf0\xa5\x10\xc1\x3e\x38\x02\x0e\x09\xae\x0e\xee\x76\x25\x37\xa3\xe9\xd1\xa0\xc7\xb0\x33\xd0\x97\xfd\xc1\xf4\xf8\x26\x29\xa9\xde\x9e\xf3\x8d\xa1\xcf\x96\xa9\x40\x35\x7d\x5f\x2e\x0e\x7e\x8d\xbc\x29\xdb\x72\x8a\x1e\x6a\xad\x87\x6e\x5e\x05\x31\x13\xd0\x64\x20\x27\x2b\x87\xcf\x0c\x40\xdf\xe0\x3a\x54\x4d\xe9\x6c\x7a\xea\x13\xba\x00\x29\xb5\x7b\x48\xd9\x9d\xcc\x6a\x65\x04\x92\xd7\x8c\x4c\xdd\x1b\x28\xe1\xa1\x15\xa7\xe3\xe7\xa7\xcb\x21\x33\x3d\x4f\xf8\x08\x58\xdf\xb6\x77\x82\xc1\x63\x54\xb8\x71\x65\x96\x56\x0d\x7d\x8e\x38\x9e\xb1\x5a\x05\x2a\x0b\xf5\xd1\x6e\xb5\x4f\xb3\xe4\x97\x3a\xd4\x98\x4e\x72\xa1\x87\xf5\x34\x7d\x5b\x26\x2c\x32\xb1\x64\x7e\x42\xb6\xa5\x38\x37\x09\x6c\xc7\x8c\x2a\x05\xce\x1c\x6e\x12\x49\x3a\x03\xf1\xa6\x67\x58\x4c\xb9\x7f\x4f\xcd\x57\xee\x94\x4c\x65\xb7\xee\xd2\x5f\x7a\xe0\xf3\xf6\xce\xde\x17\x3f\xdf\xac\xf5\xaf\x1d\xb1\x43\x73\x0d\x18\x09\x66\x64\x91\x4b\xa4\xcf\xc6\x96\x6f\x39\x20\x22\x78\x1c\x66\xa9\x41\x7c\xa2\x68\x0b\x51\xf6\x3e\x4f\xba\x42\x4e\xcf\xdb\xc6\xa2\xf0\x17\x87\xd0\xe7\x48\x4f\x8a\x8a\xb3\x90\xae\xaa\x6d\x1f\x7e\xd3\x25\xd8\x2f\xea\xa1\x69\x2a\x49\x84\xfa\xe4\x3d\xa8\x73\x29\xb0\x45\xda\x8f\x0a\x4f\x56\xb6\x95\xaa\x93\x5d\xe1\x52\xce\x03\x85\x15\x37\x20\x97\x9a\x2b\x70\x06\xd4\x05\xfc\xb0\xfb\xa0\x9e\x23\xb8\x5f\xd1\x9b"}, {{0xaf,0x2e,0x60,0xda,0x0f,0x29,0xbb,0x16,0x14,0xfc,0x3f,0x19,0x3c,0xc3,0x53,0x33,0x19,0x86,0xb7,0x3f,0x3f,0x9a,0x0a,0xec,0x94,0x21,0xb9,0x47,0x3d,0x6a,0x4b,0x6a,},{0xc8,0xbf,0xe2,0x83,0x58,0x22,0x19,0x9c,0x61,0x27,0xb8,0x06,0xfa,0xbe,0xef,0x0c,0xb9,0xff,0x59,0xf3,0xc8,0x1f,0xf0,0xcb,0x89,0xc5,0x56,0xf5,0x51,0x06,0xaf,0x6a,},{0x50,0xf9,0xf9,0x41,0xa8,0xda,0x9f,0x62,0x40,0xf7,0x6d,0x2f,0xa3,0xb0,0x6d,0xd6,0xb2,0x29,0x2e,0xd3,0x2d,0x1c,0x05,0x21,0x80,0x97,0xd3,0x4d,0x8a,0x19,0xdf,0xe5,0x53,0xf7,0x6a,0xe3,0xc6,0xb4,0xa2,0xed,0x20,0x85,0x21,0x28,0x46,0x15,0x40,0xde,0xcf,0x41,0x8f,0x52,0xd3,0x8e,0x64,0x03,0x7e,0xec,0x77,0x71,0xbd,0x1a,0xfe,0x00,},"\x7d\xbb\x77\xb8\x8b\xda\x94\xf3\x44\x41\x6a\x06\xb0\x96\x56\x6c\x6e\x8b\x39\x39\x31\xa8\x24\x3a\x6c\xab\x75\xc3\x61\xfd\xe7\xdc\x53\x6a\xec\x40\xcd\xed\x83\x29\x6a\x89\xe8\xc3\xbe\xf7\xd7\x87\xcf\xc4\x94\x01\xa7\xb9\x18\x3f\x13\x8d\x50\x00\x61\x9f\xf0\x73\xc0\x5e\x2f\x84\x1d\x60\x08\x35\x8f\x10\xa2\xda\x7d\xcf\xac\x3d\x4d\x70\xc2\x0d\x2e\xc3\x4c\x7b\x6d\x5c\xd1\xa7\x34\xd6\xbb\xb1\x1c\x5f\xd8\xd2\xbc\xe3\x2a\xc8\x10\xef\x82\xb4\x18\x8a\xa8\xea\x3c\xfc\x30\x32\x23\x3d\xc0\xe2\x60\x0e\x9d\xb6\xe1\x8b\xc2\x2b\x10\x04\x4a\x31\xc1\x5b\xac\xea\xf5\x55\x4d\xe8\x9d\x2a\x34\x66\x80\x7f\x24\x44\x14\xd0\x80\xff\x29\x63\x95\x6c\x6e\x83\xc8\xe1\x44\xed\x00\x66\x08\x8b\x47\x6d\xdc\xb5\x64\x40\x34\x47\xd9\x15\x9f\x90\x89\xab\xa2\xb4\xd5\x57\x5c\x4d\x8a\xe6\x6f\xc8\x69\x0e\x73\x49\xed\x40\x83\x2e\x63\x69\xc0\x24\x56\x3e\xc4\x93\xbf\xcc\x0f\xc9\xac\x78\x7a\xc8\x41\x39\x7f\xe1\x33\x16\x72\x83\xd8\x0c\x42\xf0\x06\xa9\x9d\x39\xe8\x29\x79\xda\x3f\xa9\x33\x4b\xd9\xed\xe0\xd1\x4b\x41\xb7\x46\x6b\xce\xbb\xe8\x17\x1b\xc8\x04\xa6\x45\xd3\x72\x32\x74\xa1\xb9\x2b\xf8\x2f\xd9\x93\x35\x87\x44\xde\x92\x44\x19\x03\xd4\x36\xfd\x47\xf2\x3d\x40\x05\x2a\x38\x29\x36\x7f\x20\x2f\x05\x53\xb5\xe4\x9b\x76\xc5\xe0\x3f\xa6\xce\x7c\x3c\xf5\xee\xb2\x1d\xe9\x67\xbe\xc4\xdd\x35\x59\x25\x38\x4e\xbf\x96\x69\x7e\x82\x37\x62\xba\xc4\xd4\x3a\x76\x7c\x24\x1a\x4c\xef\x72\x4a\x97\x0d\x00\xff\x3a\x8a\xb3\xb8\x3e\xed\x84\x00\x75\xc7\x4e\x90\xf3\x06\xe3\x30\x01\x32\x60\x96\x21\x61\xe9\xd0\x91\x0d\xe1\x83\x62\x2c\xe9\xa6\xb8\xd5\x14\x42\x80\x55\x0f\xc7"}, {{0x60,0x5f,0x90,0xb5,0x3d,0x8e,0x4a,0x3b,0x48,0xb9,0x7d,0x74,0x54,0x39,0xf2,0xa0,0x80,0x7d,0x83,0xb8,0x50,0x2e,0x8e,0x29,0x79,0xf0,0x3e,0x8d,0x37,0x6a,0xc9,0xfe,},{0xaa,0x3f,0xae,0x4c,0xfa,0x6f,0x6b,0xfd,0x14,0xba,0x0a,0xfa,0x36,0xdc,0xb1,0xa2,0x65,0x6f,0x36,0x54,0x1a,0xd6,0xb3,0xe6,0x7f,0x17,0x94,0xb0,0x63,0x60,0xa6,0x2f,},{0xdd,0x02,0x12,0xe6,0x32,0x88,0xcb,0xe1,0x4a,0x45,0x69,0xb4,0xd8,0x91,0xda,0x3c,0x7f,0x92,0x72,0x7c,0x5e,0x7f,0x9a,0x80,0x1c,0xf9,0xd6,0x82,0x70,0x85,0xe7,0x09,0x5b,0x66,0x9d,0x7d,0x45,0xf8,0x82,0xca,0x5f,0x07,0x45,0xdc,0xcd,0x24,0xd8,0x7a,0x57,0x18,0x13,0x20,0x19,0x1e,0x5b,0x7a,0x47,0xc3,0xf7,0xf2,0xdc,0xcb,0xd7,0x07,},"\x3b\xcd\xca\xc2\x92\xac\x95\x19\x02\x4a\xae\xce\xe2\xb3\xe9\x99\xff\x5d\x34\x45\xe9\xf1\xeb\x60\x94\x0f\x06\xb9\x12\x75\xb6\xc5\xdb\x27\x22\xed\x4d\x82\xfe\x89\x60\x52\x26\x53\x0f\x3e\x6b\x07\x37\xb3\x08\xcd\xe8\x95\x61\x84\x94\x4f\x38\x8a\x80\x04\x2f\x6c\xba\x27\x4c\x0f\x7d\x11\x92\xa0\xa9\x6b\x0d\xa6\xe2\xd6\xa6\x1b\x76\x51\x8f\xbe\xe5\x55\x77\x3a\x41\x45\x90\xa9\x28\xb4\xcd\x54\x5f\xcc\xf5\x81\x72\xf3\x58\x57\x12\x0e\xb9\x6e\x75\xc5\xc8\xac\x9a\xe3\xad\xd3\x67\xd5\x1d\x34\xac\x40\x34\x46\x36\x0e\xc1\x0f\x55\x3e\xa9\xf1\x4f\xb2\xb8\xb7\x8c\xba\x18\xc3\xe5\x06\xb2\xf0\x40\x97\x06\x3a\x43\xb2\xd3\x64\x31\xcc\xe0\x2c\xaf\x11\xc5\xa4\xdb\x8c\x82\x17\x52\xe5\x29\x85\xd5\xaf\x1b\xfb\xf4\xc6\x15\x72\xe3\xfa\xda\xe3\xad\x42\x4a\xcd\x81\x66\x2e\xa5\x83\x7a\x11\x43\xb9\x66\x93\x91\xd7\xb9\xcf\xe2\x30\xcf\xfb\x3a\x7b\xb0\x3f\x65\x91\xc2\x5a\x4f\x01\xc0\xd2\xd4\xac\xa3\xe7\x4d\xb1\x99\x7d\x37\x39\xc8\x51\xf0\x32\x7d\xb9\x19\xff\x6e\x77\xf6\xc8\xa2\x0f\xdd\x3e\x15\x94\xe9\x2d\x01\x90\x1a\xb9\xae\xf1\x94\xfc\x89\x3e\x70\xd7\x8c\x8a\xe0\xf4\x80\x00\x1a\x51\x5d\x4f\x99\x23\xae\x62\x78\xe8\x92\x72\x37\xd0\x5d\xb2\x3e\x98\x4c\x92\xa6\x83\x88\x2f\x57\xb1\xf1\x88\x2a\x74\xa1\x93\xab\x69\x12\xff\x24\x1b\x9f\xfa\x66\x2a\x0d\x47\xf2\x92\x05\xf0\x84\xdb\xde\x84\x5b\xaa\xeb\x5d\xd3\x6a\xe6\x43\x9a\x43\x76\x42\xfa\x76\x3b\x57\xe8\xdb\xe8\x4e\x55\x81\x3f\x01\x51\xe9\x7e\x5b\x9d\xe7\x68\xb2\x34\xb8\xdb\x15\xc4\x96\xd4\xbf\xcf\xa1\x38\x87\x88\x97\x2b\xb5\x0c\xe0\x30\xbc\x6e\x0c\xcf\x4f\xa7\xd0\x0d\x34\x37\x82\xf6\xba\x8d\xe0"}, {{0x9e,0x2c,0x3d,0x18,0x98,0x38,0xf4,0xdd,0x52,0xef,0x08,0x32,0x88,0x68,0x74,0xc5,0xca,0x49,0x39,0x83,0xdd,0xad,0xc0,0x7c,0xbc,0x57,0x0a,0xf2,0xee,0x9d,0x62,0x09,},{0xf6,0x8d,0x3b,0x81,0xe7,0x35,0x57,0xee,0x1f,0x08,0xbd,0x2d,0x3f,0x46,0xa4,0x71,0x82,0x56,0xa0,0xf3,0xcd,0x8d,0x2e,0x03,0xeb,0x8f,0xe8,0x82,0xaa,0xb6,0x5c,0x69,},{0x38,0xa3,0x1b,0x6b,0x46,0x50,0x84,0x73,0x82,0x62,0xa2,0x6c,0x06,0x5f,0xe5,0xd9,0xe2,0x88,0x6b,0xf9,0xdd,0x35,0xcd,0xe0,0x5d,0xf9,0xba,0xd0,0xcc,0x7d,0xb4,0x01,0xc7,0x50,0xaa,0x19,0xe6,0x60,0x90,0xbc,0xe2,0x5a,0x3c,0x72,0x12,0x01,0xe6,0x05,0x02,0xc8,0xc1,0x04,0x54,0x34,0x66,0x48,0xaf,0x06,0x5e,0xab,0x0e,0xe7,0xd8,0x0f,},"\x19\x48\x5f\x52\x38\xba\x82\xea\xdf\x5e\xff\x14\xca\x75\xcd\x42\xe5\xd5\x6f\xea\x69\xd5\x71\x8c\xfb\x5b\x1d\x40\xd7\x60\x89\x9b\x45\x0e\x66\x88\x45\x58\xf3\xf2\x5b\x7c\x3d\xe9\xaf\xc4\x73\x8d\x7a\xc0\x9d\xa5\xdd\x46\x89\xbb\xfa\xc0\x78\x36\xf5\xe0\xbe\x43\x2b\x1d\xdc\xf1\xb1\xa0\x75\xbc\x98\x15\xd0\xde\xbc\x86\x5d\x90\xbd\x5a\x0c\x5f\x56\x04\xd9\xb4\x6a\xce\x81\x6c\x57\x69\x4e\xcc\x3d\x40\xd8\xf8\x4d\xf0\xed\xe2\xbc\x4d\x57\x77\x75\xa0\x27\xf7\x25\xde\x08\x16\xf5\x63\xfa\x88\xf8\x8e\x07\x77\x20\xeb\xb6\xac\x02\x57\x46\x04\x81\x98\x24\xdb\x74\x74\xd4\xd0\xb2\x2c\xd1\xbc\x05\x76\x8e\x0f\xb8\x67\xca\x1c\x1a\x7b\x90\xb3\x4a\xb7\xa4\x1a\xfc\x66\x95\x72\x66\xac\x0c\x91\x59\x34\xaa\xf3\x1c\x0c\xf6\x92\x7a\x4f\x03\xf2\x32\x85\xe6\xf2\x4a\xfd\x58\x13\x84\x9b\xb0\x8c\x20\x3a\xc2\xd0\x33\x6d\xcb\xf8\x0d\x77\xf6\xcf\x71\x20\xed\xfb\xcd\xf1\x81\xdb\x10\x7e\xc8\xe0\x0f\x32\x44\x9c\x1d\x3f\x5c\x04\x9a\x92\x69\x4b\x4e\xa2\xc6\xeb\xe5\xe2\xb0\xf6\x4b\x5a\xe5\x0a\xd3\x37\x4d\x24\x6b\x32\x70\x05\x7e\x72\x4a\x27\xcf\x26\x3b\x63\x3a\xb6\x5e\xcb\x7f\x5c\x26\x6b\x80\x07\x61\x8b\x10\xac\x9a\xc8\x3d\xb0\xfe\xbc\x04\xfd\x86\x3d\x96\x61\xab\x6e\x58\x49\x47\x66\xf7\x1b\x9a\x86\x7c\x5a\x7a\x45\x55\xf6\x67\xc1\xaf\x2e\x54\x58\x8f\x16\x2a\x41\xce\x75\x64\x07\xcc\x41\x61\xd6\x07\xb6\xe0\x68\x29\x80\x93\x4c\xaa\x1b\xef\x03\x6f\x73\x30\xd9\xee\xf0\x1e\xcc\x55\x35\x83\xfe\xe5\x99\x4e\x53\x3a\x46\xca\x91\x6f\x60\xf8\xb9\x61\xae\x01\xd2\x0f\x7a\xbf\x0d\xf6\x14\x1b\x60\x4d\xe7\x33\xc6\x36\xb4\x20\x18\xcd\x5f\x1d\x1e\xf4\xf8\x4c\xee\x40\xfc"}, {{0x31,0x01,0x0d,0x1d,0x67,0xeb,0x61,0x63,0x48,0xe8,0x47,0x92,0xb9,0x2d,0x5d,0xc1,0x28,0x55,0x3c,0xb5,0x2f,0x63,0x68,0x15,0x9f,0xe7,0xb8,0x16,0xcd,0x0e,0x7c,0x37,},{0x26,0x65,0x43,0xd9,0x67,0x87,0xca,0x90,0x1f,0xcf,0xf0,0x6e,0x6e,0x43,0x44,0x91,0xae,0x09,0x70,0x88,0x0a,0x5a,0x18,0x7d,0x53,0x5e,0xdb,0x19,0xdb,0x5c,0xab,0xeb,},{0x7b,0x1e,0xb6,0x77,0xc3,0xe5,0xe6,0xa8,0xb4,0xba,0x69,0xfc,0xb7,0xf6,0xb1,0x87,0x0e,0x42,0xa8,0xd5,0x89,0x58,0xa3,0x5c,0x67,0x4e,0x2d,0xb8,0x21,0x07,0x48,0x1c,0x4c,0x7b,0x37,0xf0,0xf6,0x89,0xd3,0x9d,0x9f,0x51,0xe1,0x81,0xb1,0x7b,0x11,0x08,0xc1,0x5a,0x3e,0x27,0xb2,0x9d,0xf3,0xa4,0x31,0x5d,0xcc,0x4f,0xaf,0x12,0x22,0x05,},"\x39\xf8\x9a\x5e\x7a\xa5\x30\xb5\x46\x3d\x49\x8f\x80\x35\xb9\x90\x9d\x55\xda\x52\x7c\xdb\xd4\xde\x6d\x22\x83\x79\xf0\x89\xe6\x08\xa9\x20\x7a\x2c\x5b\x9c\x42\x05\x1a\x60\xc8\xca\x3f\xb9\x7a\x1c\x06\xcd\x74\x7d\x9d\x07\x39\x97\x0c\xeb\x88\xce\x52\x6f\x97\x11\x40\xea\x2e\xc2\x1f\x09\x0b\xa0\x75\xbf\x89\x75\xfa\xa5\x08\xb1\xcc\x10\xef\xa4\x94\xdc\x17\x2e\x6d\x3d\x3f\x3f\x75\xdc\x8e\x0e\x96\xf0\x5c\x0c\xcc\xb2\xf9\x6e\x91\x1c\xfa\x7a\x2c\x82\xc9\x84\x50\x18\xbb\x1f\x9d\x75\xf8\x2e\x3d\xfe\x11\x39\x34\x7b\x2a\xc0\x58\xb0\x14\xac\x93\x76\x0c\x90\xf5\x56\x7a\xb5\xc4\xeb\xa0\x4b\x49\xfb\x09\xdd\xad\xd3\x05\xbe\x51\x1d\xfe\x05\xc9\x6e\xbc\x86\xfd\x67\xb5\xd0\xab\x57\xd8\x5f\x4f\xe5\xe2\xf0\xfa\x9d\x88\xa6\x8f\x0f\x6b\x6b\xc8\xbb\x94\x4e\xb3\xc0\xb1\x75\x57\xe5\x5d\x5e\xa1\x87\xd9\x22\xa4\x28\x13\xe6\x90\x57\xc9\xb6\xa7\xf7\x5e\x49\x92\x1b\x70\x79\xe5\x8f\x8a\x63\x71\x9e\xe3\xe1\xad\x10\xcf\x0e\x8a\x70\xc4\xf1\x54\x02\x18\xb7\x04\x94\xbd\x02\x9e\xe0\x2f\xf9\x72\x7a\x7d\x85\xd3\x77\x91\x9e\xc4\x05\x14\x79\xb7\x0f\x7c\xd6\x76\x77\x23\xfe\x42\xc1\xc7\x89\x9c\x2b\x7c\x1f\x70\x2d\xd6\xb4\xd1\x3b\x67\x2d\x48\x8f\x34\xa0\xe9\x69\xdb\x79\xcc\x2c\xb2\x52\x4a\x94\x8a\x8d\xe4\xc5\xb6\x23\xec\xd9\x0d\x6e\x82\xd9\x70\x33\xc1\x25\x63\x7d\x1c\xd8\xc8\x48\x03\xd8\xfb\xc0\x12\x84\x6f\xfe\x48\x4f\x6c\x02\x14\x92\x58\xf9\x46\x2f\xa1\xe9\x9c\x30\x7d\xd0\x06\x2f\xe0\xb6\xf1\x1e\xee\x40\xc2\x62\x9e\xf7\xc0\xf6\xa5\x10\x72\x59\xea\x5b\x9f\xfb\x6f\x29\xf1\x2c\x32\xf7\xb5\x22\x8c\xab\xc9\x86\xab\x66\x45\x0a\xf9\xdc\xc3\xda\x09\xd0\xe0\xb9\xa4"}, {{0x8f,0xf2,0x39,0x8c,0xd5,0x1f,0x51,0xd4,0xc2,0xc5,0x78,0x69,0xa2,0x21,0x8b,0x84,0x86,0x82,0x20,0x31,0xf4,0x00,0x72,0x9f,0x4a,0xc4,0xd5,0x90,0x9c,0x48,0xba,0xfe,},{0xa5,0xa8,0x87,0x04,0xb6,0x86,0x77,0xbe,0x3d,0x16,0xc3,0xdc,0x00,0x52,0xcf,0xee,0x6e,0x2b,0x30,0xe0,0x86,0x09,0x05,0x9d,0x4c,0xba,0x52,0xc6,0xd9,0x60,0x61,0xfb,},{0x41,0x7a,0x64,0x78,0x29,0xc9,0x28,0x98,0xe5,0x20,0xff,0x53,0x11,0xda,0xa0,0xa1,0x39,0xcd,0x8f,0xff,0xcb,0x25,0xa1,0x8e,0x6d,0x9b,0x50,0xcb,0x52,0xcb,0xc3,0x54,0x24,0xc3,0x9e,0xbb,0xb5,0xd5,0xac,0x6a,0x6d,0x63,0xf1,0xf5,0x3c,0x4d,0xf2,0x12,0xf7,0x02,0x5a,0x8a,0xae,0xf8,0xe3,0x64,0x93,0xc8,0x74,0xc3,0xce,0x34,0x1a,0x0e,},"\x99\x39\x53\xe4\x7a\x34\x11\x88\xbc\x59\x29\x42\xe1\x55\x7a\xf2\x95\x46\xe4\xe9\x36\x8e\x2f\x1a\x5e\xe9\x80\x6e\x2b\xaf\x66\xb6\x19\x01\x91\xfc\x5d\x2b\x7e\x47\xde\x37\xff\x05\x4f\xb2\xbb\xb1\xf0\x31\x68\x4a\xda\x5d\x60\x7a\xdd\xa3\xd6\x54\x33\x12\x2f\xa9\x04\xe0\x45\x6f\xaa\x84\x10\x9b\xbc\x51\x7f\x8a\xd3\x96\x60\x87\x63\x82\xad\xcf\xed\x0f\x76\x20\xcf\x11\x64\x62\x2e\xac\xd9\x1e\xb3\x7a\x85\x96\x46\x2e\xbe\x9e\xbe\x26\xbd\xc1\xe3\x2c\xc3\x4a\xd4\x6f\xb1\xce\xa4\x20\xe7\x3c\x31\x21\x54\x08\xe6\xd3\x54\x25\xf4\x4a\x82\x9b\x13\x2f\x63\x1a\x3f\x6d\xd4\xb8\x73\xa0\x00\x66\x7e\x19\xeb\x22\xff\xfd\x59\x03\xaa\xa7\xd4\xc8\xfd\xf2\x19\x53\xc3\xc6\x17\x8f\x5f\x8c\xb2\xaa\x6b\xff\x92\x89\x4e\xad\x83\x58\x88\xdf\x06\x0a\x3c\x90\x43\x02\x6e\x0e\x2c\xef\x27\x54\x97\xe7\xd1\x05\xdf\x3b\x64\x4a\x98\xf2\x6b\xf0\x01\x05\xc9\x94\x13\xee\x0a\xf8\x85\x19\x54\xd6\x5c\xeb\x8d\x79\xad\x30\x71\xb8\xbb\x87\xf0\xb1\x97\x43\xd2\x55\x6f\xfd\x98\x19\x83\x0b\x6e\xeb\xf7\xec\xc7\xe0\x45\x66\x1f\x43\x57\x0c\xe9\xfd\xbb\xe2\xd2\x52\x40\x6f\xa9\x0d\x04\x23\x6f\x22\x2c\x42\x9e\xc1\x6b\x12\x87\x22\x4a\xda\x1a\x53\x21\x61\xae\x8b\x48\x1b\xca\xb8\xd4\x7a\xfb\x3e\xd0\x44\x5b\x30\x60\xfd\x67\x59\x17\x98\x56\xf4\x08\x5c\x1e\x58\x5f\xd7\xc1\x40\x97\x99\xaf\x69\x3c\xf4\x27\xbd\x1d\x3d\xc1\x0b\x5a\xe3\x44\x7a\x8d\x2a\x18\xdc\x3a\x12\xa6\x86\x0b\x22\x17\x5d\xd5\xeb\x53\xa0\x95\x04\x32\xe2\xd7\xae\xfe\xce\x8a\xf0\xad\xe3\xd8\x56\x77\x43\xde\x43\x69\x0f\x2d\x25\x37\x23\xc5\xd7\xe4\x8b\xd3\x0d\x29\x37\x59\x37\x01\xce\xcd\xe9\x15\x4b\x76\x65\xcb\x61\x1d\x7d"}, {{0xef,0x81,0x6c,0x8f,0x5e,0xc3,0x4e,0xf4,0x1f,0x68,0x83,0x1d,0x90,0xcd,0x29,0xe5,0x2d,0xe8,0x97,0x37,0x82,0xd0,0x03,0xee,0x4e,0xda,0xda,0x2a,0xda,0x26,0x91,0xd6,},{0x47,0xf9,0xb3,0x63,0xa8,0x8a,0x45,0x05,0x3a,0x05,0xbb,0x72,0x16,0x08,0x52,0xbf,0xe8,0xf7,0xdf,0xef,0xc2,0xf3,0x72,0x83,0xde,0x34,0x67,0x52,0xca,0xf0,0x92,0xcc,},{0x65,0xc5,0xd1,0x0e,0xa7,0xbf,0xdb,0xb3,0x8d,0x55,0x36,0x4a,0x99,0x68,0xf8,0x2b,0x54,0x82,0x24,0xdf,0xf3,0x36,0x3b,0x2d,0xdc,0xf5,0x85,0x16,0x3d,0xea,0x27,0xdc,0x63,0xb0,0x56,0x3e,0xb1,0xa8,0xdf,0xbe,0xe9,0x51,0xd3,0xc9,0xb3,0x3f,0xcd,0x6b,0xbf,0x09,0x21,0xc3,0xab,0xb2,0x17,0x86,0xb2,0x29,0x06,0x9b,0xd9,0xca,0x00,0x0a,},"\x95\x93\xc3\x5c\xde\xc5\x35\xbe\xbb\x69\x65\xda\x68\xea\xb0\xb6\x46\xbf\xfc\xfb\xd0\x48\x83\xbc\x4c\xef\x90\xd5\xd0\x1f\x01\x8c\x63\xc9\xb0\xdd\xfb\x3c\xef\x5e\x78\x62\x84\xd5\x21\x8c\xaa\xaf\x06\x0e\x92\x88\x95\x2f\x16\x30\x1e\xd8\xa4\xc1\xbc\xee\x25\x63\x56\xa0\xc8\xbd\xa3\x59\xfb\xaa\x27\x82\xb1\x0c\x86\xd1\x8e\x20\xf7\xa0\xec\x99\xb2\x7a\x0b\x4d\xbe\xfc\x0a\x26\x2a\x3b\xf6\x8f\xe8\x14\x44\xdc\xae\x5f\x69\x3e\xb0\xf1\x6e\x6e\xe0\x3f\x8f\xcb\xf3\xa3\x39\x81\x46\xd2\x0e\xc4\xd2\x65\x77\x61\xfd\x03\x20\xfe\xe7\xea\x70\x3c\x49\xa6\xa5\x43\xbc\x9b\xba\x91\x1e\x79\x25\x03\x87\x10\xe8\xc3\x65\x52\xd4\x76\xd6\x02\x7f\x58\xb2\xc5\x2b\xa5\x1a\xd6\x5e\xa4\xf0\x39\xc7\x8f\x96\xb8\x89\x10\x2b\xb4\xbd\xd6\x9b\x68\xe9\xc3\xd4\x5b\x51\x76\xa2\xd8\x2b\x0b\x95\xdc\x32\x10\x16\x37\x0d\xae\x30\xc3\x93\x65\x15\xdb\x04\x64\xc4\x17\x74\x30\x1c\x74\xe4\x2d\x89\xb8\xbf\x4b\x9c\x19\xed\x55\x4b\x12\xfe\xba\xc0\xf6\x0d\xdb\x32\x19\xcc\xc5\x60\x35\x31\xdb\xf2\xeb\x5f\x29\x34\x25\xd7\x2c\xce\xfa\x0c\x7f\x14\x4a\xba\x89\x34\x7b\x29\x6b\xe8\x7f\xf1\x89\x94\xb4\xa0\xc7\x0c\x93\x0f\x05\x93\x03\xb5\xdd\x4c\x8f\xe1\xe6\xbb\xc3\xcd\x68\xc6\xc0\xd8\x42\x46\xdc\x6e\x61\x40\xa2\xab\xd1\x78\x0b\x13\xf1\x59\x4a\x60\x19\xd1\x77\x8b\x7c\xbb\x3a\x3e\x3a\x34\xbf\xae\x72\x97\xf0\xb3\xed\xc3\x76\x94\x1c\x32\x35\x2a\x4b\xe3\x14\xb8\x4a\x9d\x8d\x6d\x7f\x1f\x38\xa0\xad\x37\x98\x02\x0a\xa2\xa3\x31\xa4\x02\xbe\x9c\x70\x44\x84\x74\x4a\x73\x0c\xbd\xed\xcb\x90\x4b\x6f\xde\x70\x8f\xbd\x14\xbf\xdc\x29\xef\xd4\x61\xd1\xd0\xb5\x82\x5d\xe0\xbc\x79\x42\x2b\x69\xa2\x72\x2f"}, {{0x45,0xeb,0x0c,0x4d,0xfa,0xfa,0x2a,0x76,0x90,0xef,0x57,0x9c,0x09,0x54,0x56,0xce,0xed,0xcd,0x32,0xf0,0xb6,0x14,0x4d,0x0c,0x38,0x0f,0x87,0xfb,0x74,0x4a,0x0b,0x1f,},{0xfc,0x85,0x63,0x2c,0x98,0x38,0x4b,0x5f,0x96,0x82,0xae,0xd9,0xcd,0x66,0x4c,0xf1,0xf4,0x8e,0x58,0x8b,0xe2,0xd5,0x68,0xe5,0xc7,0x34,0x49,0x4d,0xf4,0xc7,0x12,0xb8,},{0x55,0x85,0x1d,0xe8,0xe1,0x09,0x2f,0x78,0x94,0x4f,0x6c,0x6d,0xd9,0x5b,0xf0,0x7e,0x2d,0xbc,0x8d,0xf7,0xf5,0x7a,0xd5,0x76,0x82,0x9b,0x97,0x8e,0x3a,0xf5,0x8a,0x7a,0x8e,0x94,0xed,0x4d,0xcc,0xbc,0x01,0x82,0x46,0x7e,0xdf,0x0b,0xad,0x4b,0xae,0x7c,0xa8,0x4a,0xa9,0xa0,0xc1,0x7c,0x61,0xa9,0xe0,0xdd,0xff,0x1d,0x75,0x25,0xd7,0x04,},"\x6f\x66\xd8\x47\x40\x5a\x03\xd7\xbd\x6f\x8d\x28\x97\xdb\xdf\x04\xe7\x6d\x7d\xf2\xd9\x47\x0a\x49\x96\xb7\xdd\x6d\xb8\x85\x00\xf8\xf4\xf8\x3e\x96\x0e\x21\x9a\x24\x86\xe2\x45\x45\xad\xd1\x36\x14\x55\x04\x14\xd8\x27\xc4\x1a\x9b\x08\x31\x8d\xaf\x01\xb1\x52\x14\xc6\x4a\x42\x66\xcb\xf8\xa5\x71\x7a\xda\x3e\x62\xc2\x67\x29\x07\x3e\x16\xdd\xbd\x66\xf2\xd5\x20\xe1\xe0\x99\x35\xde\x05\xe4\xdb\x11\xc3\x96\xd4\x77\x01\x0a\xec\x66\xaa\xfb\x76\x2e\x69\x23\x8d\x0b\x9e\x76\xb4\x52\x45\x4b\xf9\xe4\x51\xe7\x6a\xc7\x9e\x69\x90\xd4\x1b\x93\x2b\xc3\x29\x17\x09\x37\x83\xc9\x1b\xc9\xcf\x0b\xbe\x3b\x51\x40\x70\xa1\xe6\x92\xff\x34\xfd\x06\xb6\x6e\xa1\x1f\x39\xe1\x0a\xf9\x33\xee\x96\xd8\xe9\xb6\x77\xcb\x03\x73\x7e\x79\x64\xee\xaa\x72\x5f\x12\x12\x07\xf9\xc1\xb2\x6a\x96\xc6\x16\xdf\x7c\xb7\xca\xef\x47\xbd\xa9\x01\x36\x8f\xf2\xea\x58\x6e\x42\x2e\x65\xbf\x21\xa6\x91\xbd\xd2\xc1\x3e\x67\xff\xf5\x8c\xfb\xfe\xd8\x17\x82\x04\x9d\xaf\xa0\xf7\x27\xdf\x88\x62\x3f\x2f\x7e\x8f\x26\x2d\xaf\x93\x95\x42\xa1\x87\xb8\x72\x0a\x9b\x6b\x2b\x09\x89\x0e\x54\x87\x6b\x28\xa4\x38\x74\xab\xbe\x3b\xfa\x98\x1f\x81\x38\xb7\x72\xc5\xd5\x17\x36\x88\x5f\x86\xac\xac\x22\x15\xa0\xb0\x10\xdf\xc2\xc6\xb1\x50\x84\x5d\x4f\x82\x96\x25\x25\x86\xa3\xe1\x15\xf3\x03\xc3\xd8\xa5\x82\xe2\x0f\xd2\xd4\x3f\x6c\x44\x6e\x5d\x00\x28\x0e\xc1\x79\x82\x3b\x7f\xb4\xc1\xb0\xfe\xb9\x4e\xb4\xef\x17\x07\xf5\x18\x4e\x3b\x52\x46\x1a\x75\x62\xd1\xf3\x07\xcb\x75\x1c\xdb\xbf\x6e\xae\x49\xff\xae\x91\x86\x23\x58\xe7\x4e\x95\x48\x82\x2b\x8a\x04\x9f\xec\x6b\xf4\xc7\xa9\x9c\xab\xbe\x09\x20\x65\x77\xb6\x57\xe3\x1f"}, {{0x70,0x9d,0x2e,0x19,0x90,0x06,0xf5,0x36,0x9a,0x7a,0x0b,0xdd,0x34,0xe7,0x4d,0xc7,0x84,0xbe,0x33,0x88,0x0e,0xa3,0xc5,0xdd,0x10,0xed,0x5c,0x94,0x45,0x1e,0x79,0x72,},{0x06,0xf9,0x89,0x20,0x2b,0xa2,0xcb,0xc9,0xc1,0x50,0xbe,0x61,0x12,0x62,0xac,0xa0,0x0c,0x45,0xf0,0x12,0xf8,0x9f,0xba,0xf8,0x9f,0x8c,0xec,0xcb,0xa0,0xb1,0x93,0x4a,},{0x62,0x9b,0xf9,0x7b,0x0c,0x78,0xee,0x6a,0x9c,0x87,0x59,0xfb,0xea,0x28,0x22,0x4e,0x27,0xab,0xbb,0x6c,0xbe,0x4d,0xea,0x5b,0xb7,0x97,0xe6,0xe0,0xfe,0x80,0xc9,0x13,0xf9,0x53,0xe3,0xa9,0xb6,0x23,0x35,0x2d,0x13,0xac,0xf4,0xce,0x62,0x50,0xfb,0x02,0x9a,0x1e,0x19,0x8d,0x72,0xbd,0x5e,0x74,0x02,0xe6,0x0e,0x9e,0x48,0xca,0x35,0x01,},"\x62\xf0\x03\x14\x0f\xa0\x9e\x03\x87\xd1\x87\xa0\xff\x96\xc4\x56\x3d\xf9\xf4\xe2\x8c\x22\x82\xc0\x18\x3a\xc3\xee\xde\x13\x12\x35\x49\x21\xf7\x80\xfc\xa5\x36\x1d\x30\x68\xd2\x99\x49\x63\x0b\x75\x30\xcd\x59\x14\xac\xe0\x46\x8d\x01\x4b\x6f\x53\xd8\x39\xb8\x2e\x38\x81\x7d\xbf\x2d\x83\x92\xc3\xce\x34\x24\xea\xb8\x6a\x24\xd8\x04\xc7\xac\xb1\xce\x7a\xcf\xe0\xa1\xcd\xa4\x39\x39\x24\x28\x31\x05\xda\x4a\x77\x41\x19\x6e\x02\x75\x50\x04\x7f\x85\xb7\xa0\xa0\x1d\x45\x41\x24\xef\xc0\xe2\x99\xf0\xef\x9a\xd1\x43\x50\x54\x30\x53\x48\x22\x61\x52\x8b\xaa\x56\xe6\x59\x99\xac\x80\x2c\x00\xa3\x36\x26\x7c\x63\x51\x06\xb2\x64\x03\xc1\x9f\x39\x1d\x53\xbd\x82\x86\x1d\x6d\x48\xa4\x38\x0b\x30\x43\xaa\x91\xd6\x49\x53\x68\x81\x20\x4e\xcc\xb0\xde\x20\xd4\x3e\x5a\x37\x55\xb7\xf6\x00\x91\x6e\xcc\xae\x42\xa0\xc9\x05\x3b\x46\x2d\x94\x17\xa1\x3d\x67\xd7\x78\x26\x4a\x89\x6e\x8e\xaf\x90\xba\xf6\x6d\x29\xe5\x43\x8a\x71\x67\x81\x12\x3a\x89\xfa\x9b\x8b\xee\xf9\x1d\x96\x5a\xf2\xf4\xa1\xa5\xbd\x5d\x2e\x2a\xaf\x46\xd5\xc9\x4b\x77\x09\xcd\xd3\x8d\x05\xfe\xee\x4b\xfb\x76\xa3\x59\x07\x7c\x16\xbc\x4b\xe9\x11\x6e\x69\x00\x12\x71\xcd\xa5\x65\xbc\x19\xbf\x47\xd4\xf9\x86\xbd\x9c\x0d\x18\x4c\xd8\xa3\x52\x0c\xa1\xbd\xb4\xb5\x05\xaa\xf7\xcb\x4e\xc9\xf9\x47\x89\x77\x9d\x30\x71\x4e\x79\x11\x6d\xd5\x01\x9d\x59\xb2\x8b\x17\xda\xd9\x6f\x4e\x21\x55\xad\x9c\x61\x27\x4a\xdd\xc6\xb6\x38\x10\x95\x04\xe9\xed\x19\xf4\xed\xa5\x37\x77\x62\x64\x8c\x40\x98\x22\x4e\x33\x91\x04\x3e\x4c\x2a\xd5\x91\x65\x4c\x9e\x7f\x97\x4e\xfd\xf0\xb0\x50\x4b\x6f\xa5\xf6\x46\xce\xcf\x44\xcd\x37\x24\x12\x37\x25\x05"}, {{0x51,0x51,0x61,0x74,0x21,0xaa,0xdc,0x9c,0x95,0xa4,0x42,0xb4,0x5e,0x7f,0xf6,0xde,0x06,0xa2,0xc7,0x33,0xb8,0x5b,0xd7,0x89,0xfb,0xad,0x41,0x4e,0xe3,0xc9,0x1a,0xdd,},{0x14,0x94,0x1d,0x55,0x97,0x61,0xb3,0x0a,0xb0,0xa8,0x6d,0x47,0xe0,0xf7,0xd1,0x89,0x6b,0x33,0x78,0x45,0x27,0xc8,0x0a,0xf4,0x1c,0xb8,0x48,0x10,0xcb,0xff,0x9d,0xbf,},{0xfa,0xe4,0x77,0x3b,0x33,0x44,0x60,0xc7,0x7b,0xf0,0x1e,0xc6,0x36,0x6c,0x4f,0xe6,0x1c,0x0c,0xab,0x57,0xd8,0xa4,0xb0,0x39,0x09,0xc6,0x19,0xe1,0x1e,0xe3,0x46,0x1c,0x13,0xfa,0x21,0x57,0x6f,0x63,0x87,0x0e,0x42,0x3d,0xd0,0x41,0x81,0xe4,0xa7,0x01,0x3a,0x75,0x24,0xf2,0x46,0xfe,0x33,0x85,0x3c,0x67,0x41,0x62,0xa7,0x81,0x51,0x04,},"\x21\x6e\x9d\x40\xbc\xdc\x3b\x26\x50\x18\x8d\x12\x1c\x9f\x8e\xf2\x9e\x91\x4f\xac\xd0\x22\xfe\x01\xb9\x0e\xd1\x12\x25\xf2\xeb\x93\x53\x8e\x5f\xce\xe5\xab\x80\x45\xe9\x19\x9a\xa7\x6a\x16\xbd\xd0\x61\x68\x05\x66\x0e\x24\x7f\xec\xd7\xe2\x28\x21\xb6\x9b\x1f\x8e\x8a\x58\xac\x3f\xb8\x56\x91\xd7\x5d\x59\x57\xa1\xda\xf5\x3f\xf9\xee\x64\x76\xd7\xc4\xbc\x54\x1e\x6a\xd3\x8e\x3a\x34\xea\x90\xfc\x52\xa4\x8b\x93\x99\xf9\x2d\x17\xc9\xbb\x0d\x7f\xc3\x10\x4c\x55\xd0\xef\xb4\xea\x5b\x83\x1f\xf9\x49\x0b\x3f\x79\xf4\xd9\xd6\x99\x59\x4b\x74\x15\x66\xf2\xb5\x0a\x8f\xc7\x8c\xc4\x03\xfa\x40\xf5\xab\xb6\x63\x8a\x32\xf4\x49\xa8\xb3\xef\x02\x9c\x40\x2f\x46\x93\x1a\xd2\xbd\x3e\x8e\x68\x31\x08\x71\x4c\x98\x9a\xe2\x16\x89\xe9\xc4\x44\xb9\xf5\x5b\x81\x11\x9b\xb5\x03\x5b\xcf\x73\xe9\x7c\xe4\x3a\x22\x18\xc7\xbc\x3e\x43\x0d\x1e\x81\x4f\x34\xde\xe0\x57\x26\x5d\x31\x94\xb9\xf4\x38\x75\xd8\x38\x1f\x52\x5f\x78\x57\x6e\x64\xce\x69\x25\x84\xfa\xa3\x0f\xb7\x43\xa1\x2d\x1b\x77\x61\x4d\x2e\x10\xa6\xb8\x56\xb5\x2b\xe2\x7c\xdb\x63\x0b\xa1\xf0\xd3\xa6\xf8\xea\x98\x44\x54\x2e\x58\x4e\xa0\xa2\x77\x75\x27\xd0\xc5\x2a\xca\x94\x9a\xac\xda\x45\xad\x83\xd1\x6d\x5c\x83\xd6\x63\xad\xb7\x9c\xad\x6f\x3e\x39\xe9\x90\xfe\x28\x2a\x14\xc3\x53\xaa\x23\x79\xd7\xf0\x6a\xda\xb7\x4c\xea\x02\x1b\x89\x83\xa5\x7f\x1d\x0c\xf7\x03\x29\x2e\xb0\x5e\xce\x89\xc5\x3f\x3a\x12\x65\x61\x0e\x0c\x1e\xa8\xdd\xd4\x44\xd1\xff\xd6\xbc\x3d\x03\xf0\xa6\xe4\xd0\xdf\x5c\x5b\x8d\xc1\xf9\x5d\x9f\x55\x58\xb1\x18\xaf\xe6\xbe\xa0\xf6\xc2\x93\x13\x63\xf0\x3a\xb3\x4e\x75\x7d\x49\x36\x41\x74\xf6\x58\xef\xbb\xf3\x8d\xc1\x77"}, {{0x38,0xbe,0xd4,0x45,0x55,0x6d,0xe7,0x44,0x82,0xbf,0x5f,0xec,0x05,0x06,0xf9,0xaf,0x33,0x0b,0x15,0x1e,0x50,0xd4,0x77,0x4d,0xfe,0x85,0x91,0xd7,0xb7,0xe0,0x27,0x6b,},{0x4c,0x0f,0x9c,0x49,0xa4,0x2f,0x40,0x47,0xbf,0xe6,0x88,0x55,0x51,0xc5,0xe4,0xb8,0x56,0xcf,0x77,0x1a,0x67,0xaf,0x3f,0x89,0xdb,0xf6,0x02,0xf9,0xdb,0x92,0x20,0xf3,},{0xf7,0x02,0xd0,0xd4,0x63,0x28,0x2f,0xc7,0xfd,0x5f,0x8f,0x90,0x29,0xb8,0x9c,0x62,0x6c,0xaf,0xd8,0x34,0x50,0xc3,0xbb,0x9d,0xd8,0xf6,0x58,0x9f,0x0c,0x4b,0x4b,0x71,0xf6,0x49,0xea,0x21,0x2e,0x5e,0x33,0x48,0x7c,0x59,0xc1,0x68,0xea,0x3a,0xd8,0x31,0x50,0xf1,0xfc,0xdf,0xe8,0xc5,0x3e,0xba,0x65,0xad,0xc2,0x02,0x3c,0x25,0x83,0x0f,},"\x0f\xf0\x03\x1d\xf0\xbe\xef\xf3\x71\x0c\x6b\x76\x3f\x9b\x8e\xc8\x17\x19\xbf\xa1\x52\x8c\xe4\x65\x19\xad\xf3\xd3\x41\x2d\x93\xfb\x18\x8f\xd4\x97\xd5\xd1\x70\x91\xc0\xf0\x34\x59\x60\xdd\x0e\xb0\xc0\x9f\xc4\x00\x51\x73\x66\x5d\x4d\x97\xf9\x5c\x13\x82\x8b\xc7\x6b\x34\x92\xb8\x7a\x4b\x64\x25\x3c\x8b\x5f\xa4\x7a\xa7\x5f\xa3\xb8\x6d\x5a\xbe\xea\x8d\xe5\x95\x9a\x60\x22\x89\x13\x6f\x60\xa6\x9b\x30\x9e\x77\x3b\x22\x55\xcd\xe1\x9e\xd2\xa2\xe1\x99\xc3\x3d\xb1\x1c\x16\xad\xe0\x8a\x31\x97\x50\xb8\x51\xd9\x2c\x69\x29\x24\xfc\x98\x59\xbe\x52\x34\x31\xcb\xe7\x8e\xc0\x92\xdb\x11\x29\x21\x0e\xbb\xea\xa7\xc2\xa2\xc0\x00\xee\xb1\x05\xca\x03\x01\xa4\x8f\x3e\x45\xfd\xfb\x15\xb2\x75\xcb\xab\x83\xca\x5c\x99\xd7\x37\xa5\x85\x32\x0e\x9e\x3b\x31\x71\x79\xbd\x86\x46\x7f\xa9\x69\x4f\xcd\xb2\xac\x6a\xd3\x6e\xd7\x14\x48\x43\xdb\xc3\x4e\x42\x3d\x35\xaf\xd7\xd8\x97\x2a\x1c\x43\xc1\x99\xa1\x91\xab\xd6\xce\xba\x49\x36\xd3\x95\xc9\x95\xa3\xeb\x13\xcb\x05\x7f\x88\xa9\xdc\x94\x90\xfe\x98\x84\x5e\xe5\xd2\x6a\x89\xfb\x64\x2a\x2a\x51\x6d\xc3\x05\x6c\x54\xd3\x63\x72\x13\x36\x3a\x86\x28\xa4\x2a\x39\x5d\x94\x2b\x95\x4a\x89\xe8\xef\x7a\x74\x4d\x8a\xe5\xad\xac\x88\xc6\x16\xef\xaa\x90\xe2\x07\x72\x05\xa6\x0b\xaf\xfe\xde\x5c\x87\xbb\x14\xde\xad\x30\x62\x29\x49\x5f\x69\x8f\x3e\x49\x06\x16\x96\x6b\x16\x36\x38\x7d\x0d\x86\x18\x3f\x94\x5b\x24\xa9\xdc\xfc\xcf\x4d\x36\x72\x2c\xd1\x2e\xbb\x6b\xd8\xe7\x83\x25\x75\x2a\xfa\x2b\x1a\xbd\x13\xc4\xbd\xbc\xad\xd1\x70\x86\x91\x36\x82\x62\x42\xac\xfb\x72\x1d\xe5\xff\x27\xba\x8a\xa0\xc0\x18\xb2\x25\xed\x34\x04\x80\x3c\xe9\xfa\x2d\x50\x8d\x89\x44"}, {{0x05,0x54,0x60,0xb3,0x2d,0xd0,0x4d,0x7f,0x4b,0x23,0x11,0xa8,0x98,0x07,0xe0,0x73,0xfd,0x55,0x65,0x65,0xa4,0x77,0x18,0x57,0xd8,0x82,0x79,0x41,0x30,0xa2,0xfe,0x5d,},{0x26,0x0f,0x8f,0xed,0x4b,0xba,0x30,0xb9,0xe1,0x2a,0xd8,0x52,0x3f,0xbb,0x6f,0x57,0xf0,0xa7,0xa8,0x82,0x55,0x00,0x61,0xf1,0xda,0x46,0xfb,0xd8,0xea,0x44,0x22,0x21,},{0x23,0xf4,0xf1,0x62,0x7f,0xba,0xbd,0x78,0x91,0xd7,0xd8,0x48,0x96,0x31,0xc7,0x23,0x1d,0x22,0xde,0x71,0x86,0x4e,0x26,0x2a,0xb4,0xda,0x84,0xea,0x8a,0x13,0xa6,0x0f,0xea,0xc4,0xdc,0xfb,0x18,0x12,0xf1,0x20,0x04,0x44,0xb7,0x75,0xf1,0x21,0xd7,0x26,0x6d,0x75,0x5c,0xe9,0xb6,0xa9,0xad,0x79,0x65,0x59,0xc0,0xa2,0x6b,0x51,0x6d,0x02,},"\x74\x07\xf9\x6e\xe3\xe7\x9c\x69\xd3\x6c\xe1\xf6\x4e\x4f\x18\x86\x55\xea\x68\xb9\x47\xe7\xe2\xbe\x97\xb0\x5e\xbc\x6d\x44\x39\xe9\x50\x27\x6e\xf3\xf0\xe6\xa0\x3d\xd4\x8b\x24\xf6\x69\x29\xb4\x9c\x15\x80\xeb\x46\x88\x07\xe1\xe7\xa2\x5e\xb9\xb9\x4d\xa3\x40\xc5\x3f\x98\x4f\x8b\x81\x60\x3e\xfb\x61\x04\x7b\xf3\xf1\x4b\x68\x6d\x97\x98\x00\x3d\x2f\x68\x58\x9a\x79\xeb\xfa\xd5\x44\x09\xc7\x1c\x90\xff\x67\xc1\x1f\xbd\x76\xcc\x72\xc2\xd1\x45\xf4\x58\xe4\x2f\x88\xb7\x5d\x25\x0e\xad\xca\xfe\x66\xbf\x37\xff\xc8\x37\xb6\x2f\xf0\x06\x68\x5b\x7f\x85\xa9\xd8\x75\xfc\x07\x8c\x82\xe6\x1f\xe3\x5d\x19\x22\x52\x7a\x55\x1d\xab\x62\xf9\xe4\x77\x49\x91\x46\xba\xd9\x12\x20\x3e\x66\x4c\x41\x7c\x36\x79\xc0\x2d\x87\x2a\xba\xc0\x03\x2f\x8c\xc7\x7f\x77\xbf\xe5\x4d\x33\x26\xfd\xee\x92\x76\xa4\x8e\xa4\xeb\x25\x13\x50\x40\x68\x82\xd0\x8c\x83\x0e\x76\x49\xfe\x68\x54\x55\x8a\x75\x13\xab\x2d\x8d\x2a\xc3\xe5\xce\xd8\xa8\x08\xd2\xae\xe4\x54\x77\x9e\xda\xbd\x1a\xa6\x3b\xb1\x9f\x71\x8f\x47\x0b\xdc\x84\x51\xcd\x9b\x29\x49\x41\xe3\x49\x70\x63\xb1\xe3\x9b\x6c\xa1\x84\x56\x2f\xe8\x38\xcb\xfe\xee\x92\x2d\xe2\x4d\xdf\xcf\x98\x82\xc5\xe6\x15\xb1\x1b\xf9\x04\x81\x7f\xbd\x64\x71\x39\xdb\x80\xb4\xe8\xfe\xb3\x7f\x11\xe1\x85\x2d\x7e\x87\x6d\xb9\xcb\x63\xc9\x4d\x7e\xe3\x41\x92\xf7\x20\x0b\x5b\xc7\x7a\x03\x11\xae\x43\xb8\x06\xeb\xd4\xc2\x89\x6c\x53\xf5\x8f\x7e\xbc\x16\x25\xcb\x20\xd7\x10\x7e\xf9\xdb\x0d\xa2\x87\x88\x52\x3d\xe9\x91\xef\x6c\x58\x66\xb1\x8d\x8d\xe8\x3a\x95\x4d\x32\x81\xe0\x6d\xbf\x27\xc4\xf2\x38\x2e\x08\xcd\x0e\x0f\x6e\xba\xe3\xf9\x61\xb7\x7f\xce\x5a\x95\xa9\xb0\x62\x1b\x75\x6f"}, {{0xe9,0xf6,0xd3,0x1b,0x93,0x69,0x42,0xc5,0x26,0xe0,0xf9,0xec,0x4f,0x5a,0x7a,0xc2,0x5f,0xa7,0x89,0xe0,0xc4,0x34,0xbc,0xd9,0x19,0x9d,0x72,0x0c,0x74,0x3c,0x84,0xc4,},{0x32,0x12,0x6d,0x26,0xe2,0x82,0x31,0xc5,0xb5,0x85,0xb1,0x3f,0x43,0xa0,0x1c,0x6f,0xe5,0x42,0x94,0x6b,0x07,0xd3,0xa9,0x1e,0x57,0xd2,0x81,0x52,0x3f,0x5c,0xb4,0x5c,},{0x7e,0x3b,0x1c,0x4c,0x71,0x6c,0x80,0x8e,0x90,0xb9,0x74,0x45,0x89,0x15,0xf3,0xb2,0x23,0x9c,0x42,0x07,0x71,0x19,0xfe,0x27,0x07,0x88,0xfa,0xe5,0x20,0x57,0x8b,0xd7,0xda,0x64,0x88,0x04,0x41,0x32,0xe1,0xbe,0xf2,0x3e,0x3b,0x23,0xc3,0x4d,0x9c,0x18,0x62,0x74,0x4f,0x28,0xfc,0xae,0xcd,0xa6,0xca,0xc0,0xfd,0x72,0xb9,0x3b,0x6a,0x0f,},"\xe8\x81\x33\xf3\xd1\x76\x42\xd5\xc2\x27\x79\xa8\x53\x16\xba\x0d\xf3\x4c\x79\x2b\x4e\xfe\xe4\x9e\xd7\xdd\x93\xca\x33\x22\xef\x47\xc7\x2e\x5b\x2e\x45\x95\xc7\x78\x00\x43\x4b\x60\x71\x9a\xdf\x54\xe4\xc1\xa3\x4c\x89\xfa\x1e\x27\xee\x8d\x35\xa0\x92\x1f\x97\x55\xac\x4a\x77\xa6\xc1\x68\x4e\xa0\xf5\xc8\xee\x5f\x75\x9c\xe5\x9b\xfe\x83\x15\x80\x0a\x67\xaa\x6c\x64\xdd\xfa\xac\x92\xea\xbe\x6c\x2c\x61\x37\x79\x78\x4b\x3a\xff\xaf\xcc\x62\x0f\x2a\x6d\xc5\xcb\x8d\x8d\xc7\xd7\x4a\xa4\xd7\x94\x94\x67\x84\x94\xe5\xe6\x39\x4c\x43\x3c\x14\x80\x9f\xf4\x0c\x9a\x59\x2d\x0d\x69\x4a\x81\x10\x3b\x44\x53\x1e\x1f\x48\xbc\x13\x96\x5d\x15\xaf\x8b\xf3\x34\x04\x88\xf8\xcd\x58\xf0\x9a\xe1\xa6\x61\x6b\xf8\x5a\xc9\xde\x7e\x0c\x66\x96\xaa\x2f\x1b\xec\x15\xe1\x7a\x44\xda\x4a\x84\xed\xb4\xec\x6d\x77\x24\x77\x88\xba\x0d\xe3\xae\x12\xa1\x55\xcb\xed\xc0\xda\x2f\x56\x8e\xef\x0b\x75\xa8\x77\xea\x5b\x0c\x2c\x0d\x4b\xf2\xc6\x1d\x46\x8a\x46\xfa\xad\xfa\xec\xe3\x5f\xc2\x63\xa9\xbe\x99\x87\xf4\xf7\xf7\x8f\x05\xc7\x07\x78\x43\x78\xc7\xb8\xf7\xda\xf9\xac\x3a\x12\x2a\xad\x39\xa1\x67\x79\x66\xda\x9e\xf2\x86\xc9\xe0\x62\xc4\xf4\x39\xad\x0b\xdd\xea\x26\xe5\x4b\x2f\x73\x88\xe2\x38\xb2\xa6\x49\x28\x45\x0d\x34\x56\x4c\x5a\x44\x7e\x7a\xfb\xbe\xdd\x10\x85\xf1\xf2\x4c\x11\xae\x08\x43\x22\xd1\xa3\x2c\xf8\xaa\x47\x39\x41\xf0\x0d\x56\xb1\x61\x82\x13\xca\xb3\x90\x0a\xa6\x06\x46\x3d\x9f\x80\x0e\x92\x6f\x9f\x42\xd4\xb0\x82\xd8\xc5\xec\x3a\x4a\x02\x5b\x45\xf9\xaa\xdc\x8b\xcb\xd1\x70\x91\xb3\xda\x49\xe9\x45\x3d\xc5\x5e\x89\xb5\xb5\xfe\x6b\x31\xf5\xed\xda\xd1\x0b\x66\x01\x57\x25\x68\xd8\xe2\x05\xd3\x25\x1a"}, {{0x6b,0xf4,0xca,0xaa,0xbb,0x96,0x85,0x4a,0x38,0xa5,0x72,0xf4,0xce,0x6c,0x78,0x38,0xf7,0xe7,0x50,0x11,0x8c,0x73,0xf2,0x72,0x35,0x82,0x61,0x8e,0x23,0x07,0xf8,0x38,},{0x08,0x12,0x63,0x73,0xd0,0x56,0xf0,0x0e,0x54,0xb8,0xd4,0x3d,0x77,0xc3,0x5f,0x5f,0x91,0x98,0x33,0xe9,0x0d,0x8a,0xaf,0xd6,0xc8,0x24,0x6d,0x27,0x91,0x7a,0xd0,0x91,},{0xd2,0x11,0x3f,0x80,0xd6,0xcf,0x92,0x84,0x86,0xa2,0x50,0xa6,0x79,0xd6,0xe7,0x4b,0x35,0xea,0x9d,0x26,0x06,0x1f,0xa9,0x4d,0x76,0x9e,0x1a,0x8f,0xbf,0xa0,0xa7,0x34,0x22,0x7f,0x55,0x53,0x7e,0x4e,0xbf,0xf5,0x93,0x36,0xdb,0x14,0x1c,0xf5,0xd6,0xd4,0x82,0xa0,0x71,0x1f,0x1e,0x9f,0xc7,0x2f,0xf7,0x09,0x56,0xa1,0x1b,0x4f,0xb9,0x09,},"\x47\x76\xe9\xd6\x00\x85\x48\x1f\xa5\x37\xbf\x29\x5b\xda\xbd\x8b\x1c\xf6\x32\xa8\xcd\x40\xbc\xe6\xbd\x32\x5c\x12\x9f\x97\x70\x00\xe8\x84\x68\xeb\xf2\xdc\x15\x8a\xc0\xf2\x07\x21\x2d\xb0\x0f\xb6\x0b\x8e\xc8\xba\xe2\x29\x37\x2e\x9a\x6b\x01\x53\x0a\x7e\xd1\xbc\x9d\x38\x9e\xc8\x91\x3f\x59\x03\x0d\x5b\x54\xaf\x56\xae\x1c\xcc\x28\xf3\x7c\xc9\x6a\x8e\x53\x20\x4e\x92\xa6\x77\x76\x6a\xdf\xaa\xda\x99\xb0\x28\x1f\x86\x7f\x61\xac\x9f\xf7\xd9\x72\xee\x3e\xd4\x27\xd7\x2f\xaa\xe7\x5d\x4a\xec\x01\xb5\xff\xc3\x70\x61\xb6\xf0\xf7\xe5\x71\x4c\x4c\xf3\x0d\x5b\x73\x1b\x07\x46\x06\x5f\x19\xe4\xc8\x92\x2d\xde\x64\x2f\x80\xfe\x24\xa3\xc8\xdc\xb2\xe5\xf1\xc2\x66\xe2\xaf\x6c\x37\xde\xcf\x55\xa2\xba\xa5\x4f\x0d\x5c\xf0\x83\x93\x70\xc3\xe0\xb4\xe7\x7a\x4f\x36\xbb\xb3\x16\x20\x14\x93\x3a\x4a\x4e\xbc\xae\x8c\x60\x96\x1a\xc6\xdc\xf1\x34\xf3\x08\x28\xd3\x14\x02\xae\x74\xe7\xe8\x51\x3c\x9d\x2a\xd8\xee\x46\xb7\xa9\xd5\x3a\x1f\x87\xeb\xfc\xe0\x4f\x46\x1b\xde\xd1\x74\x9b\x6f\xc4\xc4\xf2\x57\x93\x52\x56\x92\xd7\xa0\xe4\x26\xc8\x4e\x06\x08\x2c\xc3\xe6\xab\xb5\x13\x68\x37\x0c\xbb\x10\x6c\x7a\x08\x97\xf6\x6d\x92\xc9\x73\x9c\xff\x9f\x27\x06\xd6\xa2\x98\x0e\xce\xa3\xac\x49\x45\xf0\xf4\x7e\x65\x6b\xd9\x63\x77\x77\xe8\x53\xd2\xa8\x39\x10\x43\x27\xdc\x04\x9e\xbc\x34\xf0\x49\xd6\xc2\xf8\x0e\xca\x99\xdb\x7b\x41\x84\x24\xac\xef\x75\x22\x60\xd2\xd4\x27\x94\x93\x23\x99\x7c\xd9\x61\x7e\xdf\x50\xd4\x41\xd0\x08\x8b\x1d\x47\x91\x2e\x35\xcf\x54\x23\x15\x26\x58\x29\xf3\x83\xf4\x58\x60\xd3\xb4\x5e\x73\x5b\xb2\xf8\x58\x6d\xcf\x58\xdb\x4f\x2a\xcf\xb4\xa6\x88\x53\xa9\x6e\xed\x7b\x89\x76\x9d\x36\x56\x13"}, {{0x5d,0x95,0x85,0x73,0x6a,0xb2,0x09,0xb0,0xab,0xe8,0xbf,0x74,0xac,0xa4,0xee,0xa4,0xf6,0xd1,0x65,0x0b,0x53,0x25,0x50,0xa2,0x23,0xe0,0x44,0x58,0x0f,0x8e,0x20,0xde,},{0xe7,0x77,0x29,0xed,0xfd,0x21,0x44,0xb2,0xb1,0x20,0x78,0x76,0x54,0x17,0xfa,0x21,0xf1,0x59,0x4f,0x09,0xb2,0x69,0xe9,0xb6,0x70,0x68,0x02,0xb4,0xf3,0xbd,0xfe,0x85,},{0xe7,0xb0,0x8e,0x1d,0x58,0x09,0xfd,0xd8,0x52,0x94,0x43,0xd6,0x5a,0xda,0x5d,0xd6,0x55,0xea,0x55,0xb5,0x41,0x5a,0x01,0x13,0x93,0xbe,0x70,0x71,0x67,0x64,0x86,0xd3,0x58,0xe8,0xd2,0xa4,0x60,0xeb,0xe0,0x75,0xb0,0xe7,0x01,0xb2,0x4c,0x9e,0x3a,0xb5,0xf2,0xb0,0x33,0x59,0x2d,0x4d,0xe3,0xb7,0xf3,0x7f,0xd5,0x41,0xf6,0x92,0x09,0x09,},"\x08\x69\x35\x91\xe6\xc5\x8a\x5e\xad\x9c\x85\xfe\x8e\xc5\x85\x08\xf8\x1a\x34\x67\x63\x6c\x2d\x34\xfc\xc1\xf4\x66\xe5\xc6\xda\xfd\xc3\x7c\x35\xcb\xee\x35\x58\x9c\x69\x97\xe2\xb1\x54\x48\x13\x27\x44\xe5\xa1\xe1\x31\xbb\x49\xbf\x5c\x25\x63\xf8\x7e\xad\x3e\xfe\x01\xe8\x8c\xbf\x24\xcc\x17\x69\xc7\x8c\xdf\xc1\x67\xe3\x78\x21\x5b\x15\x85\x9c\x7a\x28\xec\xe7\x0e\x18\x8f\xa3\x30\x26\x7d\x3f\xc5\x7b\x4a\xce\x6c\x15\x20\xec\x67\x87\x50\x67\xfd\x33\xbe\x86\xf4\xa1\x96\x7a\xfb\x3e\xb1\x64\xc7\x97\xcf\x28\xd8\x07\x2a\xa6\x9d\x82\xaf\xa3\x83\x74\xf8\xe5\x79\x7c\x4c\x28\x47\x1b\x7d\x69\xf5\xb9\xc7\xb4\xac\xdb\xc1\x9f\x3c\x5c\x5d\x40\x08\x08\xa9\x82\xa4\x78\x37\xae\xd1\xb3\x84\x1d\x69\x89\x0e\xeb\x31\x49\x4e\x10\xe3\xe5\x13\xd1\x2d\x0c\xa6\x86\xc7\xce\x65\x17\x78\x09\x27\x03\xfe\xf0\xdc\xc0\x21\x40\x77\xdf\xb3\x61\x25\x1b\xde\xa4\x36\x4d\xd4\x1b\x97\xbc\xeb\x0f\xb1\x47\x5a\x50\xe4\x70\x8f\x47\xf7\x87\x8c\x74\x40\x1e\x97\x71\xcc\x3f\xce\xac\xe8\x91\x69\x98\x1a\xa7\x72\x50\x85\x00\x90\xd1\x81\xd8\x35\x8e\xbb\xa6\x5e\x29\x0a\xcb\x03\x52\xbe\xce\x8c\x57\x98\x32\xa6\x01\x55\x18\x16\xd1\xc0\x56\x21\xcc\xbb\xee\x0f\xbe\x39\xea\x2f\x19\x53\x93\x19\x9e\x69\xc2\x34\xc2\xfb\x1c\x37\xe4\x74\x84\x08\x60\xce\x60\x91\x61\xfc\xfc\xe2\x86\x95\x74\xbe\x0d\x38\xf9\x5e\x20\xf4\xf8\x72\x52\x47\xb9\x62\x7b\x46\xe8\x34\x90\x51\x01\xac\x12\xb9\x34\xcb\xf8\x7c\xb2\xd1\x90\xd2\xf5\x14\x90\xa8\x2c\x4e\x81\x0e\xdd\xb8\x1f\x95\x6a\x9f\x36\xbd\xa4\x97\xbc\xa5\x06\xa4\x9e\xe9\xcd\x47\xfd\xa5\xb7\xf2\xb8\x84\xa3\x64\x8c\xad\xd1\x2a\xb6\x18\x98\xad\xa4\x6e\xcc\x97\x0f\x81\xdc\x9f\x87\x68\x45\xdb"}, {{0x60,0xb1,0x42,0xf1,0x65,0x11,0x41,0x43,0xca,0x30,0xa6,0x04,0xfe,0xf5,0x1c,0x68,0x64,0x36,0xaa,0x1b,0x9a,0xfd,0xb2,0x66,0xb3,0xe3,0x98,0xcc,0xb3,0xc4,0xd8,0x55,},{0xea,0xf6,0xc5,0xa7,0x6c,0xa9,0x9b,0xf7,0x30,0x64,0x98,0x88,0x8c,0x3b,0x7a,0x1f,0xea,0xe9,0x8b,0xf8,0x98,0x8d,0x7f,0x2e,0x15,0x47,0xf8,0xf5,0x3a,0x45,0x28,0xaa,},{0xa6,0x21,0xf0,0x84,0xea,0x1a,0x36,0xef,0x81,0x2a,0x97,0x55,0xc9,0xaf,0xbb,0x53,0xda,0xda,0xae,0x6b,0x3a,0x53,0xfa,0x83,0x44,0xca,0x40,0xd3,0x61,0x2a,0x26,0x8a,0x35,0xfe,0xd0,0xfd,0x39,0x8a,0xb7,0x5b,0xcd,0x63,0x9c,0x54,0x79,0x37,0xc9,0x41,0x55,0xab,0x1a,0x7a,0x34,0x67,0xdd,0x4b,0xfd,0xdf,0xac,0xab,0x16,0x55,0xe9,0x08,},"\x18\x15\xde\xe1\x17\x3b\x78\x26\x47\x20\xd3\x5b\x7c\xc2\x45\x4a\x00\x0a\x65\xff\xf2\x14\xe2\x47\x3e\x20\xbc\x83\xf3\xec\xde\x9c\x04\xc1\xe0\x69\x6c\xe6\xe5\x55\x19\xdd\x2a\x75\xce\x04\x64\xbf\x60\x1a\xdc\x38\x1e\x79\x3e\xcb\x9f\x8c\xe7\xab\x87\xb6\xca\x2a\x3e\x41\x0f\x63\x90\x69\x45\x19\x78\xd1\x48\x73\xd3\x39\x0f\xab\x86\x23\x96\x97\x13\xc3\xdf\xcd\x58\xd8\x6d\x12\x40\x73\x76\x1e\xe0\x9a\x65\x2a\x48\x76\x7f\x96\x46\xcb\x72\x6a\xc4\x54\xac\x9a\x1b\xc5\xfa\xed\x30\x26\xb7\x03\x98\x2b\xc2\xb1\xe0\x75\x82\x10\xe1\xd6\x25\x19\x23\x0e\xb2\xb2\xf4\xa4\x86\xbc\x55\x16\x85\x60\xc4\x36\x3d\xf5\xff\x5a\xdf\xda\x11\xac\x7e\xf5\x1b\x18\x19\x6c\x94\x33\x7c\x07\xae\xf1\x17\x99\x0f\x77\x0c\x0f\x1e\x8c\x0f\x88\xeb\x6f\xfc\x40\xe8\xed\x7c\x3a\x80\xa6\x32\xdb\x1e\x7f\x63\xb6\x30\x96\xe2\xac\x49\xe5\x77\x92\xb3\x11\x43\xe2\xf4\xfa\xab\xce\xae\x66\xb2\x74\x71\x68\x1c\x36\xfc\x11\x39\x00\x7f\x9b\x54\x8c\xdc\x6e\x3b\x8f\xbb\xda\xba\x7a\x8a\xdb\x84\x34\x31\x23\x8b\xb4\x61\xba\x24\xf6\xe0\x9f\x62\xc7\x2d\x63\x77\xb4\x04\x8c\xb0\x13\x4c\x25\xa5\x41\x1a\x20\xbf\xcf\xc1\x3e\x48\xd8\x0e\x36\xbf\xb0\xda\x7e\x01\x85\xd3\x3f\x19\x28\x63\x6e\x15\xde\xe0\xe5\xdf\x89\x92\xa1\x65\x72\xb1\x3e\xa8\xf7\xcf\x85\xca\xe3\x2d\x52\x9f\x66\xe8\xf6\xd2\xfb\x2a\xd0\xbb\xfe\x71\x99\x16\x9b\x25\x67\xba\x00\xc7\x81\xb2\x0a\x48\xe1\xd7\x0d\xf9\xfa\x31\x19\xcd\x7e\x5b\xbe\x58\x88\x4b\x0b\x51\x21\x89\x40\xfa\x81\x5f\x85\x62\x5f\xa2\x03\x47\x1c\xee\x80\x84\x78\x0e\xb0\xb9\x35\x6f\x9f\x3d\x4f\x6d\xf7\x40\x30\x1d\x70\x7e\xf1\xff\xb3\x51\x9e\x3f\x90\xb8\x06\x4b\x98\xe7\x0f\x37\x5d\x07\x14\x26\x88\x17\x18"}, {{0x73,0x4b,0xa4,0x70,0x33,0xc6,0x14,0x02,0x32,0xdd,0x4a,0x7a,0x14,0xf1,0xa7,0x74,0x3e,0xef,0xe9,0x07,0x0b,0xad,0x96,0x62,0x49,0x16,0x30,0xcc,0x9d,0x28,0xc1,0xf3,},{0x2f,0xa5,0xdf,0x30,0x26,0xd6,0x07,0x42,0xe2,0xaf,0xf6,0xb5,0x78,0x42,0xc7,0x12,0x68,0x46,0xc8,0xa7,0xbb,0xe9,0x26,0x6e,0xfa,0x7b,0x3f,0x23,0x98,0xc3,0x57,0xea,},{0x9b,0xd0,0x74,0xd1,0xd0,0xbd,0x28,0x00,0x1b,0xaf,0x7d,0x2d,0x4e,0x82,0x43,0x5d,0xf0,0x8c,0x42,0x64,0xd8,0xcb,0xb1,0xc3,0x81,0x18,0x3c,0x2f,0x01,0x22,0x3f,0x79,0xf9,0x49,0x23,0xca,0x17,0x8c,0xac,0x75,0x56,0x4e,0x16,0xc7,0xf5,0x60,0x79,0x08,0x8f,0x7e,0xd8,0x85,0xde,0x4d,0x50,0x9f,0xbc,0x78,0xf4,0x38,0xfb,0xa3,0xf6,0x07,},"\x5d\x3c\x65\x98\x10\xc3\xfe\xa5\x2a\x6d\xf3\x86\x1e\x5c\xdc\x5b\x70\x3c\xc1\xce\xf4\x85\x58\xc6\x1d\x8c\x51\xd0\xed\xea\x5a\x14\x79\xcf\xe5\x06\x3d\x82\xde\xd9\xca\x68\x1e\x57\x48\x88\x7c\x40\xec\xfb\x9e\x1a\x9a\x8b\x7f\x85\x09\xd1\x07\x76\x46\x1c\x39\x23\x39\x96\x93\xa7\x81\x89\x08\x91\x78\xd5\xaa\xbd\x15\xf8\xc8\x46\x64\x2b\xe4\x7d\x6d\x4c\xaf\x13\x82\x4e\xdc\xef\xb8\x09\x86\x8f\xa7\x2d\xdf\x03\x5c\x4d\xe8\xef\x0a\x9c\x83\x22\x64\xf6\x6f\x01\x27\x61\xce\x69\x55\xbc\x3c\x41\x6e\x93\xe2\x91\x88\x02\x5e\xbb\xb1\x3a\x55\x32\x58\xc1\xd7\xc4\x99\xc9\xa4\xae\xb1\x0b\xb3\x6f\x61\xd1\xbb\x4c\xec\x5a\xe5\x5d\x17\x57\x22\xb9\xa9\x69\x6d\xf8\x81\x95\x1e\x35\x20\x0b\x96\x53\xcf\x6e\xd4\xb3\xd1\x5d\xe0\x87\xa9\xd1\xc3\x19\xfc\xe8\x58\x21\x56\xbe\xbf\x3f\xc9\x1e\x0e\x61\x0f\xf7\xa1\x53\x08\xfd\x1d\x2c\x60\x69\xfb\xbb\x29\x47\xd3\x11\x07\x31\xd2\x45\xae\x29\x63\x01\x4b\xd7\x6d\xea\x42\xdb\x12\x5c\xec\xc4\x93\xc8\xe9\x09\x1a\x76\x64\x65\x77\x72\x9a\xed\x49\x66\xfc\xe9\x69\x9f\xe1\x2e\x36\x7d\x66\x5d\xf9\xe9\x5a\x91\x93\xe1\x13\x3e\x14\x3a\xf9\x2f\x82\xb6\x6a\xc7\x76\x4e\x50\x33\x17\x86\x90\x52\x18\x09\xa7\x10\x7d\x8a\xe9\xb8\x8e\x0e\xd1\xf3\x5b\x17\x19\x90\x1b\x93\x0a\xd0\xe1\xcb\xce\x7f\xb3\x02\x67\xb1\x15\x52\x04\xf6\x05\xf5\x25\xe4\x9d\xe2\x98\x8e\xa7\xf7\x4b\xe8\x81\x51\x77\xfd\x97\x6a\x1b\xcc\x12\x6d\x9c\x9c\x13\x5c\x5b\x42\x76\xd3\x80\x19\xc3\x4a\xef\xb7\xa0\x22\x0f\x7f\x5a\xef\xf3\x80\xae\xd6\x27\xb0\x70\xc2\xc9\xe2\x15\x33\xbb\x35\xc0\x8e\x39\x4c\x85\xae\x25\xe6\x86\x29\x42\x59\x9c\x65\xdb\xae\x59\x77\xa5\x84\xa8\x81\x80\xe0\xc8\xc7\x1e\x5a\x84\x09\xe0\x4e\xf7"}, {{0x45,0xe3,0x4d,0x0e,0xf4,0xc1,0x96,0xfa,0x6d,0x57,0x2b,0x6b,0x17,0x74,0xb5,0x21,0x8f,0x7c,0x32,0x91,0x30,0x4c,0x13,0x50,0x0d,0xf7,0x07,0x0d,0x90,0xe8,0x03,0x9e,},{0x13,0xa7,0x30,0x4d,0xff,0x42,0x33,0x59,0x17,0x7a,0xba,0xfa,0x5e,0x65,0x08,0xd2,0x67,0x69,0xca,0x99,0xcf,0x8a,0xf4,0x5c,0x38,0x3f,0x3f,0xf6,0x34,0x40,0x60,0x03,},{0xb4,0x2c,0x1f,0x92,0x5f,0x4b,0xac,0xcd,0x12,0x9e,0xfb,0x10,0x9d,0xb3,0x54,0xac,0xa3,0x1c,0x68,0x98,0xf4,0xf4,0x51,0x29,0x47,0x49,0xa2,0x6a,0x6d,0xa1,0x67,0x7b,0xd3,0xa5,0xc0,0x41,0x19,0xe3,0x5f,0x47,0x31,0x9f,0x20,0xcf,0xdf,0xc0,0x8b,0xb4,0x52,0x8b,0x21,0x00,0x9e,0x00,0xbd,0x41,0xeb,0xc0,0xf4,0x68,0x63,0xbe,0xd1,0x0b,},"\x3d\x9e\xd5\xc6\x4b\x75\xe1\x35\xdf\x2f\x5e\x85\x30\x0d\x90\xf2\x1b\x36\x39\x35\xe2\x81\x75\x56\xfc\x93\x11\x75\x1b\xa7\x53\x54\x77\xde\xc8\x35\x6e\xc3\x85\xef\xb8\x2b\x41\x40\x62\xf3\x5b\xb6\xd3\xed\xea\xfd\xe3\x05\xf9\x90\x0a\x25\xe9\x81\x3c\x9e\xe0\x23\x7d\x46\x40\x96\x50\xcd\xcd\xb5\xdf\xa2\x30\x1a\x8e\x26\x47\xf8\xd3\x81\x9d\x86\xf7\xb7\xe3\x07\x0d\x33\x44\x0f\x82\xc4\x05\x4b\x1a\xb5\xed\xeb\xeb\x27\xf9\x5b\x3c\x4c\x6f\xdd\x46\x8f\x21\x60\x0f\x03\xb3\x49\x4d\xa2\x00\xba\xb9\x29\x3c\x38\xd0\x2f\xc4\x40\x48\xe5\x2f\xf5\xfd\x0f\x72\x17\xa0\x4d\x4c\xe9\x12\xa1\x80\xd1\x62\x8f\x36\x82\x80\xb6\x89\x26\x72\xe8\xff\x98\xd4\x62\x9a\xc2\x8b\x60\xc0\x2a\x30\x1e\x6c\x60\x26\xc1\xb9\xe9\xef\x21\xcf\x03\x92\xdf\x22\x50\x08\xd5\xa0\xe0\x28\x4b\x28\x26\x31\xad\x17\x10\xf8\x11\x61\x56\x97\x06\x6c\x98\x29\x65\x19\x94\x8a\x7c\xfe\xd5\xae\xeb\x45\x4e\xe7\xa6\x1c\xc2\x71\xbd\x3d\x49\x9b\xe1\x7d\xf0\x9d\x3a\x0e\x79\x0e\xe6\xb9\xbd\x99\xe1\xb9\x19\xbe\xd4\xa0\x63\xb8\xd1\xa3\x4f\x1a\xfd\x2e\x95\x2b\x9d\xfe\xfd\x77\x09\x69\xc8\xb2\xfc\x37\x97\x7a\xbb\x0f\xee\x63\x17\x25\x3a\x23\xec\xc9\x75\x78\x16\x89\x73\x33\x4c\x8f\x91\x76\x3a\xb9\x7f\x29\xc4\x9b\xae\xee\x7b\x35\xf3\xae\x7f\x5c\xd3\xa4\xa6\xe6\x97\xef\x25\x5a\x3c\x2e\xc0\xc7\x52\xa3\x39\x6f\x69\xf6\x63\xca\x1f\xc2\xb3\x32\xdf\xe6\xc0\xfa\xf7\x8a\xfe\x9c\x68\xd9\x95\x71\xe8\xe8\x96\xc5\x09\x30\x85\xe9\x86\x3a\x27\x64\x8a\x9e\x58\xf3\xa9\xa8\x4c\xbb\xfe\x2b\x41\xca\x36\x33\xdd\x5c\xf6\xe8\x2c\xb7\x7c\xec\xac\xad\x8d\x78\xb3\x53\xf4\x8d\xb4\x2d\x99\xc3\x6b\xca\xd1\x70\xea\x9e\x98\xab\xb2\x78\x8c\x33\xa3\xc7\x06\x26\x8f\x36\x31"}, {{0x88,0x8c,0xe2,0xec,0xce,0xda,0x9c,0xa2,0xb9,0x48,0xac,0x14,0x43,0xc2,0xae,0xdd,0x75,0x95,0xaa,0xcf,0x36,0xed,0xaf,0x27,0x25,0x5b,0xde,0x7a,0x69,0x91,0xdc,0xc0,},{0x01,0x6e,0x57,0x2b,0x4f,0x98,0x41,0x7c,0x6e,0xe2,0x97,0xab,0xd7,0x84,0xea,0x48,0x22,0x6f,0xf4,0xfb,0xf0,0x05,0x0a,0x5a,0xde,0x88,0x06,0xe7,0x04,0x6d,0x3b,0xa3,},{0x99,0xd8,0x3f,0x14,0x8a,0x23,0x6e,0xbb,0xef,0x1c,0xad,0x88,0xcb,0x3c,0x76,0x94,0xf4,0x98,0x6c,0x92,0x50,0xe2,0x1c,0x36,0x03,0xa0,0xd9,0x41,0xbf,0xf1,0x99,0xcf,0x77,0xd6,0xce,0x99,0xef,0xdb,0x20,0x53,0x31,0x88,0xd6,0x8a,0xd1,0x33,0xde,0x03,0x3a,0x1f,0xb3,0x46,0x8a,0xbb,0x70,0x6d,0x2b,0x8b,0x4f,0xba,0xc0,0x8d,0xfe,0x03,},"\x5c\x80\x1a\x8e\x66\x4e\x76\x60\x76\x0a\x25\xa5\xe1\x43\x1a\x62\x15\x9f\xc3\xf3\xaa\x71\x37\x80\xae\x7c\xbc\xe2\x3b\x85\x64\x78\x27\x99\xbf\x2b\xe4\x81\x7e\xe2\x92\x19\x65\xba\xb7\xe1\xd4\x48\x33\x82\x4c\x16\x28\xd4\x2d\xce\xe3\xe4\x6a\xe4\x2b\x28\x16\xd0\xa4\x32\xa1\xab\x0b\xd2\x1f\xcf\x30\xad\xb6\x3d\x8d\xd7\x65\x69\x54\x43\x43\xd0\x03\x5c\x76\x05\x22\xca\x68\xbe\xa7\x2c\x40\x4e\xdd\xa1\xe9\x09\x5e\xc9\x0f\x33\x25\x68\x1c\x6d\xe0\xf4\xc1\x2d\x1a\xfb\xcb\xa2\xc7\x87\x1a\x1b\x1e\x1f\x19\xc3\x5b\x0b\xed\x9e\xc2\xa8\x7c\x04\x3d\x36\xd8\x19\x39\x6b\xd5\xd0\x99\xe1\xaa\x09\x03\x91\x29\x7c\x73\x3f\x65\xa8\xc5\xd2\x12\x0c\x67\x63\x53\x16\xfa\xb2\x5b\x4d\x48\x47\xa4\x5f\xc3\xf7\x6f\x2e\x24\x26\xdb\xee\x46\x29\x97\x50\x62\xfc\xe1\x4e\x21\x89\xdb\xa2\x7f\xb1\xde\xd2\x45\x3f\x00\x1d\xeb\xfa\xa8\x99\xc1\x16\x60\x61\x2d\x2c\xe2\xad\x2f\x76\x2e\xa5\xde\xe7\xe7\x1e\x58\xad\xcd\xce\xfa\x79\xe8\xe8\xb2\x7f\xc4\xcc\xf8\x9a\xab\xf1\x76\xb5\xd3\x4f\x82\xdd\x15\xd8\x89\xf9\xf0\x87\xdc\x9a\xe8\xa4\x2a\x72\xf3\xb8\x35\x83\x61\x6e\x17\x06\x37\xcd\x1a\xdf\x38\xaa\x65\x51\xcb\xac\xca\x36\x02\xbd\xc7\xae\x21\x0c\x4a\x44\x6b\x3a\xf8\xdb\x27\x20\xe5\x49\xbb\xed\xb8\xbe\xd2\x15\xae\x00\xf1\x9d\xa2\x9d\x8f\xb0\xb6\x42\xd2\x7b\x2d\x88\x57\x5f\x0e\xe8\x4f\x3d\x12\x9e\xb7\x74\xd2\x0f\x53\x7a\x1c\x0f\xdc\xf7\x17\xbd\xeb\xcf\xe4\x7f\x83\x31\xa3\x41\x86\x43\x46\xfa\x6a\x1c\x6b\xbf\xd1\x78\x81\x9e\x38\x7a\x0d\x54\x99\xa6\x8e\x81\xcc\x9f\x82\xad\x39\xe3\x1e\x4d\xfe\x71\x95\x2d\x5e\xa5\xcc\x80\x52\xa3\xce\xed\x17\x51\xf5\x9d\xc7\xec\xc9\x74\x2f\xad\x14\x4e\x18\xdd\xa8\xd0\x58\x2e\x74\xe3\x9c\xa8\xc4"}, {{0x61,0x73,0x90,0x85,0x7d,0xc1,0x0c,0xdf,0x82,0xb5,0xc9,0x42,0x61,0xf5,0x8c,0xe2,0xd4,0x4a,0xa2,0xf5,0x7d,0x29,0x8f,0x08,0xa2,0xd6,0xc7,0x4d,0x28,0x14,0x7d,0xaf,},{0x89,0xe0,0xc3,0xe0,0xa0,0xf1,0x30,0xd1,0x91,0x6e,0x0e,0x38,0x49,0xb7,0x28,0x6f,0xa2,0xe3,0xac,0x4c,0x17,0xbd,0x1f,0x71,0x6e,0xe5,0xa7,0x2f,0x02,0x57,0xfb,0x8d,},{0x63,0xe9,0x0a,0x6a,0xfb,0xbb,0xb0,0xee,0x69,0x6b,0xfb,0x56,0xef,0xd6,0x79,0xd6,0x8a,0x98,0x51,0xa8,0x94,0x76,0x40,0xa9,0x7f,0x41,0xf6,0x8e,0xdf,0xea,0xdd,0x21,0x6e,0xd8,0x69,0x8e,0x2e,0x43,0xc8,0x20,0xc9,0x04,0x4c,0xaa,0x7a,0xda,0xab,0x5b,0x76,0x76,0x2b,0x68,0x18,0x31,0xa9,0xf7,0x60,0x47,0x6a,0x84,0x43,0xc4,0x3c,0x06,},"\x1f\xd9\xe7\x45\x3e\xaf\xfd\x7c\x9b\x54\x05\x56\x22\xdd\xe1\x70\xdd\x58\xb7\x1c\xb9\x45\xde\x75\x35\x1d\x5f\xce\xb1\xf5\x36\xbd\xe2\x51\x58\xf0\x37\x86\x15\x5f\x95\x3d\xc2\x07\xa1\x70\x8f\x90\xd9\x5b\x15\xac\xa0\xae\xe3\x09\x7f\xdc\xaa\xe8\x5e\x4a\xb1\xc2\xcd\xb7\x05\xc5\x3e\x6c\x2e\xd2\x1a\x99\x4b\x30\x4a\x75\xca\xf2\xce\x4f\xc7\xd6\x1f\x56\x1e\x74\xe2\x97\x39\x7e\x2c\xde\x5c\xc6\x90\x56\x94\x03\x43\xaa\x81\x37\x5d\x0a\xf1\x8d\x17\xd2\xf3\x4c\x0a\x71\xdc\xf1\xde\x3c\x4f\xc4\x88\xa1\x4c\x5f\xa6\xb3\x33\x7a\x31\x74\xb1\xda\x79\x58\xfb\x00\xbd\x59\x55\x14\x82\x21\x42\x7c\x60\xdb\xa0\x41\x17\xc8\x0d\x24\x88\x65\x6d\xbd\x53\x43\xde\x89\x12\x87\xb5\x0e\xf4\xdf\x98\x25\xed\xa7\x6b\x49\x77\xf3\xac\xd4\xab\x6d\x31\x02\xfa\x56\x87\x83\x06\xcd\x76\x56\x14\x91\xbc\xfd\xaa\x1d\xa5\x67\xe6\x77\xf7\xf0\x3b\xae\x5d\xbf\x44\x26\xc3\xc4\xa6\xc3\xd0\x82\xf9\x17\x8b\x2e\xfd\xd2\xbd\x49\xee\xe9\x7e\xf4\xdc\xf3\xf0\xf5\x1b\xbd\xef\xfe\x5a\xe6\x60\x1e\x28\x01\x95\x18\xf8\x27\xf0\x2e\x51\xf6\x67\x9b\x87\x15\x97\x8b\xec\x3e\x69\xd5\x77\x15\x6d\xd7\x19\x95\x93\x71\xba\xf0\x34\x21\x9f\xbb\xd1\x7a\x23\x69\xa8\x54\x14\x90\xf6\xa0\x20\x13\xe3\x3e\x74\xf4\x76\x9b\xe3\x7a\xef\xa4\xde\xfb\x6b\xfb\x3f\x35\x1c\x2a\x26\x14\x82\xc2\xfb\xec\x49\xf8\x5f\x84\x45\x45\x6e\x8f\x5a\x47\x40\x30\xcd\x72\xd0\x95\xef\x6a\x62\x20\x30\xe1\xe4\x3a\x0c\x5d\xeb\xb0\x34\x73\x1d\x2f\x5e\x8e\x4b\xa3\x99\x0f\x07\x7d\x0c\x16\x26\x49\xd1\xfa\x3e\xa4\xfe\x1e\x81\xd7\x4a\xa8\x49\xe2\x1b\x05\x9d\x96\x6c\xba\xd4\xc4\x93\xca\x10\xba\xfe\x7a\x69\x24\x3e\x3c\x0a\x6e\xbf\xd1\x3d\x69\x79\x06\x30\x33\x92\xba\x65\xd4\xfe\x06\xb6\xa5"}, {{0x87,0x7d,0x01,0x74,0x36,0x36,0x9e,0xc2,0x45,0x3f,0xed,0x46,0xe9,0x77,0xd6,0xac,0xc3,0xa7,0xbe,0x60,0xd3,0x13,0x95,0xad,0x6e,0x7e,0xa9,0xe0,0x74,0x80,0xe4,0xc9,},{0x4e,0x65,0x42,0x2f,0xed,0x33,0x4a,0x55,0xe8,0xb6,0x73,0x89,0x3e,0xba,0x7c,0x18,0x1d,0xd7,0x24,0xdd,0xa0,0x02,0x81,0x7b,0x0b,0xae,0x28,0xac,0xdc,0x3f,0x7f,0xc0,},{0x76,0x88,0xf3,0xf2,0x40,0x1e,0xac,0xaf,0x2d,0xd8,0x8e,0x17,0x0f,0xf1,0xc4,0xd7,0xe9,0x48,0x22,0xa7,0x7f,0x6b,0x55,0x0b,0x56,0x9e,0x82,0x15,0x2b,0xbb,0xb4,0x34,0x05,0x7e,0x01,0x23,0x0b,0x05,0xce,0x58,0xee,0x1d,0xee,0x52,0x26,0xb5,0xc7,0xcd,0xbe,0x5a,0x8a,0xde,0x3b,0x94,0x65,0xf5,0x9a,0xed,0x74,0x14,0x5d,0x14,0x33,0x0c,},"\x4e\xd3\xf5\xbd\xbd\x41\xd0\xe3\xb0\xa8\xa7\xfc\x37\x52\xee\xa4\x96\xd6\x14\x16\x78\xcb\xfe\x06\x75\x7f\x61\xe1\xa1\x68\xd7\x61\xb6\xda\x83\x05\x2f\x79\x94\x95\x0d\x24\x62\x6f\x00\x4f\xbe\x9b\x8c\x95\x62\xe0\xc9\x55\xfb\x3b\x5c\x08\xfd\x2d\x3d\x25\x83\x93\xa3\x49\x03\x0c\x8e\x15\x62\x05\xb4\x04\x83\x03\x8b\xe1\x95\x9f\x1c\xba\x49\x0a\x87\xfe\x13\x89\x9e\x4f\x37\x52\x06\x3b\x68\xfe\x3e\x1c\x50\x71\xf7\xdb\x00\x02\xf0\x14\x94\xb4\xa3\xee\x2e\x07\x99\x2b\xdd\x20\x0d\xb4\x31\x66\x29\xee\x8a\x95\xca\x34\x7f\x0b\x28\xd6\x40\x2a\x6d\xa8\xb5\x3e\x6b\x32\x58\x1c\x36\x91\xe1\x1a\xe9\xb6\xe0\xf0\x49\x48\x94\xe6\x49\xa9\x2d\x03\xeb\x49\xc4\xd6\x83\x3f\xa1\xf5\x4f\x8d\xcd\x91\xd0\x69\x36\xa6\xe6\x2d\x49\x1e\x2c\xea\x46\xdd\x07\xd9\xf0\x2d\x32\x54\xb8\x50\xbc\x97\x49\xf2\x58\xa6\x1a\xd3\xb9\xcc\x24\xb0\x32\x87\x33\x1b\x85\xa2\x41\x43\xaa\xf8\xfc\xcc\xac\x5f\x18\xbf\xc7\x2d\xec\x75\xc0\x23\x35\x16\xaa\x6e\x45\x89\xc7\x8c\x66\x5a\x18\x6e\xd9\x02\x09\x1d\xf9\x7b\x0d\x04\xe8\x3a\x2d\x74\xd7\x89\x89\x1a\xea\x2c\xac\xf8\x13\xff\xfb\x5e\xfa\xf7\x8d\xbc\xd7\xaf\x54\xef\x55\xc7\x7b\x1c\x4c\x8a\xce\x9e\x92\x78\xad\xc2\x3d\x76\xc7\x79\xd6\x4b\x3b\xbb\xd1\xfb\x33\xb0\x98\x36\xea\x64\xa7\x1e\x47\x11\xe8\x9e\x8d\xa0\xf7\x09\x21\x33\x42\x17\x6a\xe2\x2c\x6e\x78\x52\xc3\x97\x3b\x60\xd9\xf9\x88\x89\xb4\x42\xaa\x48\xd7\xbf\xdf\xde\xf6\x4c\x36\xc5\x86\xc4\xfb\x2a\xd2\xe2\x7e\xbe\x47\x9f\x6d\x72\x2f\x06\x9f\xd6\x10\x6b\x0d\x08\x97\x5d\x5f\x72\x15\x47\xc3\xb9\xc5\x2f\x9f\xc5\xf4\x5b\xb4\x5b\x5b\x63\x21\x88\xe8\x06\x26\x51\x8a\x79\x05\x6b\xdc\x4e\xe1\xd2\xbe\x6c\x65\x42\xa2\x1f\xad\xea\x92\xc6\xdf\xb7\x76"}, {{0x4f,0x0b,0x36,0x07,0xd7,0x0b,0x0f,0x26,0x98,0x32,0x7e,0xf4,0xf1,0x98,0x2c,0x5b,0x4b,0x94,0xbe,0x78,0xf5,0x0c,0x76,0xf4,0x3b,0xd6,0x42,0xf1,0xf0,0xed,0xe3,0x9b,},{0x94,0x2b,0x43,0x08,0x9f,0xd0,0x31,0xce,0xc0,0xf9,0x9e,0x5e,0x55,0x0d,0x65,0x30,0x7f,0xb6,0xc3,0xe7,0x93,0x44,0x9f,0xb3,0x90,0xff,0x73,0x0f,0xff,0xd7,0xc7,0x4b,},{0xf3,0x96,0xa1,0x1f,0x2f,0x03,0xc6,0x14,0x39,0x68,0x4f,0x79,0x00,0x1b,0xd4,0xf3,0x46,0xa3,0x48,0xdc,0xf1,0xd3,0xbe,0xb2,0xd3,0xbf,0xe3,0x3e,0xa7,0x3a,0x5a,0xd4,0xeb,0x97,0x50,0x6a,0xcf,0xbf,0xfb,0x78,0x4e,0x77,0x54,0x81,0x89,0xcd,0x59,0x9f,0x8c,0xcf,0x17,0x35,0x5d,0xde,0x80,0xe7,0x50,0x24,0xef,0x2a,0x78,0xd5,0xfa,0x03,},"\x9f\x70\x0a\x1d\x25\x60\xf6\x9d\x9b\xc1\x05\xbc\x83\xbf\xf5\x39\xe4\x25\x8c\x02\x48\x60\x20\x13\xa9\x59\xb9\x78\xa1\x9c\xc2\x73\x28\x0d\x90\xc0\x17\x80\x89\x57\x8b\x50\x51\x8e\x06\xad\x1e\xab\x79\x0f\xfe\x71\x0c\x63\xd7\x88\x87\xa9\x55\x69\x14\x4f\x3e\x58\xa8\x83\x7f\x93\xdd\x51\x6f\xcd\xdd\x22\xbc\x97\xa7\xf1\x44\x11\xd4\x24\xb2\xe8\xe9\xaa\x7c\x28\x01\x19\xad\x94\xce\x92\x53\x3f\xc7\xfe\xa6\xc6\x62\x48\x64\x4a\xc3\xe1\xbe\xef\x25\x53\xa6\xf6\x1e\x91\xb9\x37\x9b\x0f\xe0\xc6\x8b\x40\x68\x14\x55\xb3\x11\xf4\x0d\xf0\xc9\x7f\x53\xfc\x95\x42\x42\xc3\x75\xe7\x70\x8d\x61\xba\xd9\xf5\x12\x96\x24\x72\x74\xfa\x01\xa7\x32\x8f\xa5\x00\x9d\x99\x95\xf5\x01\xae\x86\x83\x55\x2b\x11\xa4\x9d\x26\x38\x11\x67\x23\xb1\x31\x94\x50\xa9\x01\x38\xd2\x78\xcd\x95\x12\xb8\x0c\xa5\x79\x2e\xd1\x6c\x68\x3b\xef\x92\xec\x87\x88\x4c\x9f\x07\xf1\x37\xdc\x47\xa1\x31\x46\xe5\x11\x06\x5c\x2e\x1b\x4b\x80\xef\xde\x88\xae\x12\xe2\x94\x31\xbe\xb7\xae\xe3\x65\xc1\x6d\x80\x50\x6b\x99\xaf\xa6\xa1\x40\x6e\xdb\x06\x17\x66\x87\x58\x32\xdb\xa4\x73\xe5\x19\xdd\x70\x18\xf4\x02\xeb\x1b\xb3\x01\x4b\x7c\xee\x4f\x02\xe9\x80\xb1\xb1\x71\x27\xe7\xd2\x5d\xfe\x0c\x16\x8c\x53\x44\xf1\xc9\x00\x44\xf8\x27\x70\x7d\xca\x03\x07\x0e\x4c\x43\xcc\x46\x00\x47\xff\x62\x87\x0f\x07\x5f\x34\x59\x18\x16\xe4\xd0\x7e\xe3\x02\xe7\xb2\xc2\xca\x92\x55\xa3\x5e\x8a\xde\xc0\x35\x30\xe8\x6a\x13\xb1\xbd\xfa\x14\x98\x81\x30\x98\xf9\xba\x59\xf8\x18\x7a\xbc\xaf\xe2\x1b\xa0\x9d\x7c\x4a\xaa\x1a\xd1\x0a\x2f\x28\x33\x4a\xb5\x39\x96\x14\x7c\x24\x59\xc0\x1b\x6a\x10\x83\x9e\x03\x01\x12\x3d\x91\xa3\x5c\xed\x7a\xf8\x9a\xfb\xac\x7d\x9c\xf8\xac\x9a\x38\xce\xeb\xef\x83"}, {{0xb8,0xa0,0x01,0x0c,0x78,0x4d,0x8d,0x00,0x2a,0x31,0xda,0x11,0xd0,0x22,0xd3,0x01,0x88,0xa4,0x19,0x7a,0x1d,0x5f,0x14,0xea,0x4c,0x0d,0xab,0x29,0xa2,0xe4,0x06,0x68,},{0x8b,0xdc,0x63,0xe5,0x0b,0xed,0xe1,0x3c,0x91,0xa4,0x1e,0x4b,0x4b,0x78,0x57,0xb9,0xe5,0x53,0xf4,0x84,0xe3,0xc1,0xec,0x16,0x7d,0xc0,0x4c,0x28,0x1e,0xa8,0x66,0x22,},{0xb3,0xf6,0xcf,0x4c,0x0e,0x0f,0x90,0x74,0xff,0x2c,0x2c,0x47,0xe1,0x63,0x20,0x2f,0x1e,0x9d,0x6e,0xe1,0x17,0xcf,0x75,0x76,0x33,0xe4,0xab,0xe7,0x44,0x23,0xaa,0x70,0x00,0x8a,0xda,0x15,0x09,0xec,0x1d,0xc1,0x17,0xc1,0xc2,0x30,0xe9,0xb2,0x37,0x86,0xf3,0xd0,0xf2,0x9b,0x73,0xaa,0x28,0x45,0x36,0xe9,0x58,0x01,0x06,0xa8,0xa7,0x0c,},"\x5c\x6c\xcb\x29\x8b\xe2\x16\x80\x8b\x81\x1e\x56\xd9\x72\xf4\x56\xb6\x9a\xd3\x95\x94\xee\xe3\x54\x70\x1c\xa6\xb3\xe3\x8d\x1f\x41\xa3\x59\xe5\x51\x2a\xf9\x8a\x3a\x08\x73\x26\x5f\xe5\x19\x1f\x4f\x2e\xca\xf6\x6b\xee\x75\xa3\xac\x0b\x71\xa4\xdd\xf2\xa7\x59\xeb\xdd\xdb\xd8\x8a\x6a\x1c\x6f\xd0\xfc\xf7\xd7\xcb\x92\xa8\x4e\x33\x07\xb4\xa4\xf9\x8c\x71\x0a\xbf\x4f\x55\x3d\xee\x74\xf6\x52\xd2\xac\x64\xbc\x30\xf7\x2b\xf4\x35\x4e\xf7\xe8\x06\xa1\x90\x71\xa0\x51\xbc\xfc\xfb\x27\xe3\x7f\xdd\xd4\x1e\xce\xae\xc1\x75\x8e\x94\x69\x5c\x67\x0e\xf4\xc5\xa5\x90\x21\x78\x32\x9d\xb9\x58\x5c\x65\xef\x0f\xa3\xcd\x62\x44\x9b\xb2\x0b\x1f\x13\xae\xcf\xdd\x1c\x6c\xf7\x8c\x51\xf5\x68\xce\x9f\xb8\x52\x59\xaa\xd0\x5b\x38\xc6\xb4\x85\xf6\xb8\x60\x76\x92\x8d\xdb\x4e\x20\x36\xf4\x5e\x7b\x9c\x6a\x7f\xf2\x4a\xe1\x77\x60\x30\xe2\x57\x68\x25\x01\x9a\xb4\x63\xeb\xf7\x10\x3a\x33\x07\x20\x33\xea\xcb\xb5\xb5\x03\xf5\x32\x66\xaf\xb8\x2f\x9b\x24\x54\xb8\xdc\x05\x7d\x84\xf3\x0d\x9d\x2c\xb7\xc3\xa3\x1a\x7d\xbd\xfb\xa5\xb8\xe4\x92\x31\xc2\x31\x39\x6c\x47\xca\x04\x2c\x8e\x48\xa1\xa5\xe3\xec\x9a\xfe\x40\x20\x59\x53\x90\xf9\x99\x0d\xfb\x87\x4e\x08\x25\xae\x9a\xe5\xe7\x52\xaf\x63\xaf\x6f\xd3\xe7\x87\xe7\x5e\x8d\x8d\xc4\xc6\x63\x02\x27\x7a\xc0\x1b\x30\xa1\x8a\x56\xcb\x82\xc8\xa7\xeb\xdc\x91\x5b\x71\x53\x25\x5a\x1f\xed\xc4\x92\xe4\x96\x60\x26\x2b\xb2\x49\x78\x0d\x17\x3e\x1f\xd2\x0d\x18\xc4\xf6\xb0\xb6\x9a\xa2\xec\xa0\x24\xbf\x3c\x80\xd7\xd5\x96\x2c\xc4\xa1\x29\xa7\x94\x3b\x27\xf3\x3c\xc7\x99\xa3\x60\x45\x54\x12\x75\xa2\xcd\xb9\x2a\x40\xe4\x85\xba\x8b\x73\x7a\x04\xb4\x3d\x29\xc3\xe2\x5f\x76\xcb\x3d\x93\xa6\xb9\x44\x61\xf8\x8f\x56\x96"}, {{0xef,0xc8,0x6c,0xbe,0x40,0x36,0x3a,0xbf,0xbb,0x2a,0x4b,0x1f,0xcc,0xe5,0xfd,0x60,0x84,0xda,0x96,0xe7,0xe8,0x14,0xde,0x71,0xaa,0xdf,0x9a,0x61,0x8f,0x30,0x36,0x25,},{0x22,0xf2,0x95,0xce,0xe7,0x27,0xd2,0x8d,0x2b,0x93,0x17,0x15,0x3e,0x7d,0x94,0x12,0xda,0x10,0x65,0xc1,0xb1,0x6a,0xe2,0xa2,0x51,0xdd,0x1f,0xb4,0x31,0xc6,0x2b,0x01,},{0xf8,0x81,0x83,0x10,0x22,0x8c,0xa7,0x61,0x11,0x52,0x4c,0xe9,0x4b,0xfc,0xb0,0x24,0x6e,0xa6,0x35,0x08,0xce,0xe9,0x30,0x65,0x92,0xb2,0xf7,0x75,0x48,0xed,0xef,0xcf,0x76,0xbd,0x14,0x54,0x50,0x8e,0xa7,0x15,0x04,0x2c,0xec,0x16,0x9c,0xea,0x51,0x15,0xab,0x54,0x23,0x5c,0xb1,0x09,0x7b,0x10,0x70,0x2a,0xa3,0x83,0x78,0x02,0x8e,0x0c,},"\x9e\x4f\xa4\x5d\xc0\x26\x71\x0f\x6b\xef\x4e\xd0\xf0\x7c\x54\x4b\x0b\xb0\xd8\x8f\xa7\x9e\x71\x77\xd8\x44\x8b\xc2\x09\xd7\x1c\xfe\x97\x43\xc1\x0a\xf0\xc9\x93\x7d\x72\xe1\x81\x9e\x5b\x53\x1d\x66\x1c\x58\xc6\x31\x41\xce\x86\x62\xc8\x83\x9e\x66\x4d\xb7\x9e\x16\xc5\x4d\x11\x3a\xbb\x02\xa7\x5b\xdf\x11\xb3\x45\x3d\x07\x18\x25\xbc\x41\x57\x41\xe9\x94\x83\x54\x6b\x8e\x1e\x68\x19\xde\x53\x01\x70\x92\xe4\xef\x87\x1f\x1c\xa0\xd3\x50\x8f\x93\x78\x28\xa4\x66\x7d\xb1\x1f\xff\xf9\x41\x6e\xeb\xb9\x4b\xf9\xb8\x4d\x65\x46\x03\x09\x48\x34\xa9\x9c\xa7\x0b\x90\xf5\x62\xa8\x68\x23\x62\x4d\xfe\x9c\xb2\xf9\xe8\x8c\x17\x3f\x13\x46\x4d\x4c\xe2\x55\xf2\x22\xdb\x50\xdd\x63\xab\x42\x46\x57\x34\xe7\x52\x95\xc0\x64\xb6\x4c\xc3\xf1\x5e\x62\x37\xe3\x7f\x33\xd6\x15\xf7\xc2\x43\xe4\xba\x30\x89\x60\xcf\xd4\x39\x34\x02\x52\x55\x00\xbb\x79\x02\x97\x0b\x39\x31\xd4\x8b\x35\x66\x6a\x2d\x4d\x2a\xb0\x8f\xa1\x2a\xf3\x66\xa0\x04\x34\x6c\x9d\xd9\x3d\x39\xfb\x1b\x73\x40\xf1\x04\xe5\x1f\xed\xbb\x53\x36\x05\xb5\xff\x39\xcf\x6d\x59\x51\x3f\x12\x85\x6d\xcf\xa1\x98\xd7\x93\xb0\xfc\x87\x5c\xde\xa0\x74\x1f\x14\x55\x74\x6d\x8a\x19\xc3\xe9\xd9\x28\xf0\x02\x1b\x01\xc2\x51\x31\x81\x1e\x48\xc3\xc7\x5c\x6f\x41\x42\x2a\x88\x10\xc6\xc8\x1f\x35\xb4\x54\xee\xae\x8c\xd1\x7c\xf3\xf2\xe6\xf0\xbc\xd9\xf2\x90\x98\x4f\x49\x65\x78\x62\x3a\xb8\xe2\x73\x8d\x2d\x10\x84\x0e\xb9\x1d\x10\x1c\xb4\xa2\x37\x22\xb7\x2e\x3d\xd1\x85\x44\x0c\x3b\x9f\x44\xd4\x6a\x39\x3a\x34\xc1\x87\xa2\x0d\x61\x0b\xb6\x98\xc5\x05\x31\x74\x1e\xfe\x96\x32\x35\x12\x32\x98\x00\x77\x2a\x40\x80\x65\xa7\xef\x8e\x4e\x41\x05\xeb\x1f\x5b\xf6\xd3\xfd\x6b\x21\x7f\xd8\x36\xd8\x9f\x53\xb9\x6f\x45"}, {{0x33,0x55,0x6c,0x60,0xde,0x2f,0x2c,0x9a,0x93,0x03,0xb9,0x9a,0xdd,0x37,0x85,0x92,0x06,0x05,0x05,0xf8,0xe4,0x98,0x61,0x08,0x5a,0x4b,0x15,0xf0,0x72,0xa7,0xef,0x28,},{0x23,0x1e,0xc8,0xcd,0x84,0x58,0x59,0xf6,0x99,0x61,0x27,0x51,0x19,0xdb,0xe4,0xf7,0x15,0xe5,0xec,0x5a,0xa9,0x8b,0xb8,0x74,0x16,0x75,0xb3,0xc2,0xd0,0xc8,0x9f,0xee,},{0xe0,0x6a,0x7a,0x41,0x44,0x57,0xbb,0xbe,0xf2,0xba,0xc3,0x77,0x5c,0xca,0xd0,0x87,0xda,0xcb,0x1f,0xa4,0xbf,0x93,0x88,0x94,0xe8,0xc9,0x29,0x11,0x8e,0x09,0xe6,0x78,0xdd,0x19,0x93,0x8b,0xc8,0x8f,0x43,0xed,0x0f,0x7d,0x31,0xcc,0x6a,0x0e,0x60,0x2c,0x4e,0x4d,0x1f,0xee,0x33,0xd4,0x1e,0x74,0xa1,0x19,0xfa,0x2d,0x1e,0x4e,0x34,0x0f,},"\x96\xaf\x54\x0e\xa2\xb1\x92\x3f\x5f\xd0\xaa\xd3\x21\xac\x03\x20\x70\xc2\xd6\x5b\xa1\x3d\x16\x4e\x75\xc3\x46\x97\x58\xfc\xf3\x1b\xb3\x16\x55\xcb\x3a\x72\x1f\x9c\xb3\x4b\xe2\xc9\x0c\x77\xeb\x65\xbe\x37\xf6\x06\xd3\x2a\x91\x7a\x4c\xb9\xa7\x09\xac\x07\x05\x22\x99\x30\xef\x6e\xb6\xfd\xb0\xfa\x3c\x0f\xd3\xa9\x0c\xe1\x71\x67\x4e\xe3\xed\x06\x35\x4b\xaf\xc3\xc7\x07\x54\x67\xa5\x74\x45\xb8\x03\x85\x64\x04\x47\x90\x2b\xe3\x92\x62\x89\x4b\x1f\x64\xfe\xa5\x82\x87\xdc\x32\x2d\x19\x87\x59\x72\xa7\xc8\xbe\x91\xd3\x1f\x02\x1c\x70\xeb\x68\x2f\xdf\x11\xa1\x0f\x8f\x58\x2a\x12\x6e\x06\x47\x94\x83\x8c\x69\xfd\xf6\x4f\x5b\x6e\x8b\xa5\x9d\x48\xb4\x38\x4f\x8e\x9f\xb5\xc0\x87\xcc\x77\x38\x29\x5c\xd3\x23\x44\xba\x3b\x69\x7e\xe6\xb6\xa8\xb7\x8e\xe7\xa9\x57\x5c\x97\x97\x2a\x4d\x1b\xb1\x84\x86\xf9\x03\x7a\x0f\x3c\x6f\x47\x1a\x90\xf8\x64\x98\xdb\xc0\xdf\x52\x32\xc0\x7e\x8c\x01\xb6\x90\xbe\xe7\x53\x02\x99\x2a\x7a\x36\xfb\x44\x37\xc2\x5a\x8b\xf5\xe3\x4c\xf7\xd5\xb5\x55\x72\xc7\x00\xa0\x79\x84\x8d\x38\x13\x64\xf9\x94\x6a\x91\xeb\x16\x03\xff\x3d\xe5\xeb\xdd\x52\x3b\xd9\x25\x64\x81\x8e\x23\x7a\x53\xe8\xf5\x22\xde\xaa\x2c\x29\xb8\x97\xe9\x61\x58\x6e\x10\x0e\xd0\xfc\x0a\xd7\x0d\x16\x09\x34\xe6\x94\x02\x7e\x5c\x95\x79\x20\xbc\x05\x46\xe9\x01\xbe\x39\xa8\x45\x35\x59\x7e\x1f\x28\x0c\x22\x22\x67\xab\xe9\x7f\x41\x20\x5d\x81\x71\x82\x0d\xd2\xfa\xaf\xc0\x69\x94\x19\x32\x1a\x91\x60\xf6\x9b\x99\xfd\x41\x18\x09\x45\xb6\x2d\x2d\xd1\x05\xcc\x7b\xbe\x82\x1d\x28\x60\x5e\x09\x8e\xdf\xa8\xb2\x30\x9a\xeb\x05\x34\xe7\x56\x37\x7f\x59\x93\x7c\x67\x46\x3f\xd8\x7c\x8b\x92\xab\x58\x11\x9c\xf4\xce\x6c\x66\x5a\xf5\x72\xfb\xae\x1d\xe4\xa2\xcc\x71"}, {{0x7a,0x5c,0x74,0x31,0x4e,0x11,0x83,0x33,0x4a,0x4b,0x62,0x26,0xb9,0xa8,0x2d,0x70,0xfc,0x2a,0x12,0x4e,0x3f,0x87,0xdb,0x6a,0x22,0x83,0xee,0x05,0xb6,0x8e,0x34,0xe0,},{0xbe,0xae,0x7d,0x3d,0xd9,0x7c,0x67,0xf6,0x27,0x3b,0xfa,0xa0,0x66,0x13,0x1f,0xed,0x8a,0xce,0x7f,0x53,0x5f,0xe6,0x46,0x4e,0x65,0x79,0x1c,0x7e,0x53,0x98,0x57,0x6c,},{0xc2,0xab,0x1f,0x6f,0x51,0x14,0xa8,0x4f,0x21,0x85,0x02,0x58,0x2c,0x56,0x7b,0x37,0xa8,0xbd,0xbc,0xdf,0x63,0x40,0xfa,0x46,0x22,0x87,0x3b,0xe8,0x91,0x06,0xf0,0xa9,0x0b,0x48,0x29,0x50,0x5f,0x72,0x12,0x9d,0xf0,0xab,0x3d,0x85,0x13,0x26,0x87,0x74,0xa3,0x4d,0xf3,0xad,0x21,0xce,0x25,0x4b,0x46,0x44,0x88,0xad,0xdd,0x6c,0x9b,0x04,},"\x98\xba\xc6\x72\x47\x55\x91\x29\x92\xad\xc2\xa4\x8b\x54\x42\x37\x6f\x2d\x92\x79\x97\xa0\x40\xfb\x98\xef\xe5\x44\xeb\x0c\x8e\x18\x66\xb9\x61\x6e\x29\x8d\x33\x60\x31\x6e\xd9\x76\xbd\x94\x6a\x41\x1f\xdd\x3a\x6b\x62\x5c\x0c\x1a\x37\xaf\x0f\x41\xcf\x65\x69\xa7\x88\x4a\xb8\x46\x74\x91\xa9\x87\xdf\x3e\xa7\xa0\xb7\xeb\xc4\x69\x25\x69\xa3\x4c\xe3\xa2\xea\x35\x03\x49\x5b\x2c\x02\xd4\x9d\x7d\x7d\xb5\x79\xd1\x3a\x82\xcf\x0c\xf7\xa9\x54\x7a\x6e\xae\xbe\x68\xe7\x26\x7d\x45\xa6\x0b\x8d\x47\x72\x45\x52\x28\xcc\xa4\x03\x6e\x28\x2e\x1a\x12\x16\xf3\x4c\xef\x7e\xa6\x8f\x93\x82\x70\xbd\xb0\x42\x93\xc8\x85\xd0\x05\xf9\xf7\xe6\x38\xa8\xb4\xea\xd2\x62\x6c\x09\x45\x17\x4f\xf2\xa3\xe2\xd6\xe1\x5a\x4c\x03\x38\xc0\x9e\x12\x60\xf0\x92\x8c\xa9\xd3\x49\x98\x24\xf3\xfe\xdc\x47\x85\xda\x49\xc5\xc3\x4a\x56\x85\x5e\x24\x1f\xac\xc6\x34\x7a\x39\x9d\xdc\xac\x43\x99\xa8\xb1\x58\x19\x8c\x15\x14\x61\xa3\xb1\x89\xe5\x8e\xc1\xf7\xef\xcf\x2a\xb2\x03\x1f\xb1\x7b\x6f\x03\x5b\xa1\xf0\x92\xe9\xee\xe2\xe9\x2c\x2d\x6c\xc2\x03\x22\x87\xf8\x54\xb4\x1e\x70\xfc\x61\xc8\xd1\x1a\x2e\x4f\x07\x08\xf0\x2e\xeb\xd0\x2e\x8c\x7e\x8c\x7b\x38\xa5\x7b\xfa\x1a\x74\x5f\x3a\x86\xc2\x39\x09\xf6\xf8\x9a\xb1\x6c\xe7\xe1\x81\x3c\x1d\x20\x14\x7f\x31\xb4\xcf\x2a\xd0\xb6\x06\xfb\x17\xe5\xac\x1a\xb5\x1e\xf4\xa7\xd8\x09\x3c\xee\x9a\x65\x5f\x47\x1d\xc5\xb1\x46\xbd\x1b\x93\xe5\x40\xa3\xd3\xd3\xe2\xde\x81\x05\x91\x1c\x10\xd6\xab\x5f\xf7\x9c\x2d\x06\x02\x7f\x7a\x54\x56\x1f\x20\x71\x41\x4b\xd3\x30\xa8\x78\x54\x42\x25\x1c\x81\x0e\x23\x2f\x83\xc3\x67\xf0\xbe\x77\x99\xa9\x3f\x52\x38\xf7\xf1\x7b\x5b\xe8\x29\xfd\x89\x12\x3c\x04\x83\x3a\xf8\xb7\x7e\x5a\x43\x63\x04\x7c\xec\xa7"}, {{0xda,0x80,0x06,0xad,0xc4,0x92,0xca,0x5d,0xc8,0x6c,0x29,0x59,0x43,0x7a,0x75,0xde,0xb6,0x12,0x0f,0xf7,0x87,0xd2,0xec,0xb9,0xc2,0x0c,0x30,0xb5,0x2c,0x26,0xbc,0x41,},{0xff,0x11,0x3b,0xf0,0xaa,0x58,0xd5,0x46,0xf2,0x38,0x5d,0x44,0x4e,0xcb,0x78,0x88,0xf8,0xca,0xba,0x43,0xa1,0x74,0xa8,0x9f,0xd6,0x06,0x5f,0x2b,0x7d,0xc1,0x7b,0xf0,},{0x1f,0x53,0x75,0xdc,0xb3,0xad,0x2b,0xaa,0xff,0x95,0x6d,0x85,0x54,0xec,0xb4,0x24,0x17,0x6b,0xe9,0xa6,0xeb,0x9e,0xa5,0x4e,0x81,0x4e,0x0a,0x73,0xdf,0x2a,0x5d,0x84,0x8a,0xda,0x26,0xba,0x8e,0x18,0x05,0xcd,0x51,0xc5,0xe1,0x69,0x50,0xc1,0xff,0x7d,0x4d,0x27,0x64,0xda,0xa6,0xf4,0xc7,0x50,0x2f,0xb8,0x65,0xcb,0xe5,0x5a,0xaf,0x0b,},"\x3e\xb4\x32\x4d\xbc\x01\x49\xd2\xe7\xd6\xdf\x63\x2b\xb0\xcb\xe9\xa9\xf6\xdf\xa8\x3e\x22\x7f\xc0\x7b\xde\x1b\x57\x7b\x36\x11\xfb\x92\x1c\x9f\x83\x13\xf0\x68\xe6\x29\x5d\x49\x13\xa8\x19\x6b\xe5\x30\xf6\xa0\x1f\x57\xc0\x9c\x02\x84\x91\x44\x4b\x78\x47\x20\xe9\x09\xea\x1f\xb6\x9c\x1c\x1d\xd6\x30\x44\x00\x32\x7b\x77\x31\xb3\x3c\xc4\x6d\xeb\x04\x6c\xda\xb6\xad\x1b\x53\xf1\x74\x9a\x0c\x65\xcb\x9a\x7e\x37\x6f\xfa\x02\x23\x0f\x53\x65\x84\xae\xa2\x43\xc6\x39\x10\x3a\xdb\xba\x76\x43\x21\x64\x9d\x7e\x01\x26\xf8\x2e\x0b\x4f\xd9\xdc\xb8\x6c\x73\x1c\xbc\xc5\x17\xf2\x01\x68\x41\xe9\x16\xbc\xd5\xfd\xe8\x71\xdc\x09\x8c\xd9\x13\xdc\x54\x62\x84\xd1\xb2\x16\x5c\x63\xe8\x8f\x32\xa2\x78\x9a\x50\x08\x56\x37\x1b\x50\xd2\x2f\xb8\xc8\x7d\x1a\x3c\xae\xdc\xdf\xd0\x1e\xe5\xf8\x70\xa5\x3c\x28\x41\x81\xd6\x32\xec\x66\xd4\x8b\x6b\xdd\x56\x46\xac\x39\xc9\xe7\x53\x38\xa5\x20\x21\x20\x62\xbc\x34\x66\xef\x5c\x58\x76\x55\x70\xb9\x05\xf6\x3a\x93\xd0\x7f\x8f\x1b\xaa\xc3\x52\x6b\x01\x6d\xa7\x99\xf3\xe9\xe0\x3a\x4f\x7f\x81\x35\x5e\x0f\x7a\x76\xf3\x0a\x42\xb8\x07\x32\x20\x51\xb7\x1c\x62\x6a\x7a\x29\x6d\x75\xb9\xd9\xd1\xa2\x3b\xcb\x13\xc9\xef\x48\xa9\x12\xdc\x05\x73\x25\xd3\xbc\xfb\x3f\x9f\xad\xaf\x0c\x24\x9b\x10\x2a\xeb\x85\x4a\xa3\x63\x1e\x34\xf6\x9a\xd9\x0c\x2a\xb2\xed\x33\xba\xcc\x40\xb9\xed\x10\x37\xfa\xe6\x7c\xdf\x79\x9d\x5a\x9b\x43\x78\x59\x61\x12\x7d\x62\xf8\xe0\xbc\x15\x89\xfd\x1a\x06\xfc\xa2\xae\xa7\xcf\xc0\x12\xcb\xf7\xb5\xb2\x07\xdd\xc4\xe6\x77\xd8\xae\x4a\xec\x10\x00\x45\xce\x36\xc0\x0b\x74\xd1\xd2\x82\x50\x79\x12\x36\xdc\x5d\xcc\x1e\xd3\x13\xc8\xc2\x46\x17\x26\x66\xf7\x52\x17\x43\x7c\x60\x34\xac\xd6\x41\x98\xcd\x96\xdf\x2a"}, {{0xa2,0x84,0xe2,0x6b,0x97,0xe5,0x38,0x83,0x9c,0x80,0x8d,0x45,0xbd,0xe6,0xf0,0x12,0xa3,0x54,0x45,0x4a,0xef,0x81,0xca,0xa8,0xc5,0x59,0x14,0x62,0x4f,0x2b,0x7d,0x66,},{0x5a,0xe4,0x6e,0x34,0x69,0x5e,0xfa,0xf4,0x63,0xa4,0x20,0x8f,0xc4,0xe3,0x5b,0x81,0xf2,0xc6,0x35,0x93,0x23,0x8a,0x56,0xf2,0x44,0x4b,0x85,0x0f,0x05,0x8c,0x3c,0x5c,},{0xbf,0x11,0x0e,0x2e,0x9c,0xec,0xbc,0x31,0xfa,0x3e,0x0c,0x24,0x38,0xcd,0x1f,0x43,0x21,0xf9,0x2c,0xd2,0x87,0x00,0x5a,0x48,0x52,0x8a,0xdd,0xf7,0x6c,0xad,0x8d,0x88,0xbb,0x22,0x71,0x9e,0xf9,0x1b,0x13,0x95,0x62,0xa1,0x51,0x18,0x38,0x68,0x26,0x74,0xfa,0xa9,0xff,0x7e,0x7a,0xde,0x6c,0x9d,0x57,0x3f,0x84,0x50,0x36,0xd1,0x89,0x05,},"\x9e\xbf\xe9\x10\xb5\x0a\x5c\xb7\x19\xd9\x5b\x96\x1e\x59\x05\xf0\x0e\xc7\x94\x3b\x55\x46\x8a\xb5\x95\x66\x92\x01\x76\x45\xb3\x66\x07\x1f\x8f\xbb\x77\xeb\x49\xec\x73\xea\x7d\x64\x51\x14\x05\xb9\x0d\xe2\x2d\xb9\x8c\x3e\xae\x39\xc4\x03\x9c\x7a\x13\x34\x30\xe8\x01\x0b\xdd\x39\xa0\x0f\xd1\xa5\x28\xb1\x13\xda\xe1\x49\xcf\xad\x3a\xe3\x40\xda\x27\xdc\xc5\x07\x78\x2e\xcd\x89\x29\x23\x75\x17\xaf\xe7\x46\x3e\xca\x24\x73\xc7\xac\xf6\xf7\xaa\x04\xef\xc9\xf2\x66\xae\x7b\x6d\x63\xbb\x8c\xc2\xa4\x38\xb3\x44\x82\x7f\x07\x13\xd1\xf1\x73\x6f\x0c\xbb\x65\xb9\x93\x53\xf2\x03\x55\xfa\x02\x30\xd4\xfa\x70\x73\x28\xa8\x66\x26\x54\xe8\x3a\xd0\x53\x0a\x10\xf9\xa6\x9e\x17\xc0\x99\xe1\xe2\xb5\xdb\x18\xe5\xf6\xf1\xdc\xed\xa5\x88\x3e\x8c\xab\x79\x70\x1a\x5e\x90\x89\x56\x2e\xd1\x53\xad\x08\xc6\x74\xf0\x97\xc2\x8e\x4d\x16\x63\x3e\x09\x29\x69\xa8\xf0\xbd\xac\x54\x52\x7c\x0e\xe0\x3b\xc2\x00\xe5\xbe\x61\x2e\x3d\x1e\xab\xd8\x70\x91\x10\x1b\x49\x62\xaf\xa0\x7b\x31\x08\x06\x99\x2f\x37\x30\x76\xd7\x6a\x58\x18\x51\x18\x13\x7c\x9d\x26\xee\x2c\xd4\xc6\x18\xc1\x82\x83\xdd\x19\xf0\xe7\xa0\x89\xee\x37\x30\x5b\x6b\x95\x18\xa7\x8d\x80\x98\x43\x6e\xf6\x2b\xe7\xd6\x99\x80\x8a\xce\xcf\x67\x93\x9d\x61\xb3\xe0\x29\x37\xcd\x8c\x5f\x1e\x74\x6d\x42\x74\x33\x4b\xc9\xc3\x7f\xdc\xba\x23\x4c\x16\x6f\xd7\x12\x89\x3f\x3a\x04\x08\x32\xec\x54\x25\xe5\x7d\x80\xf1\x1e\xf9\xca\x5f\xbc\xd6\xc1\x47\xfb\xbf\x5e\x2f\xae\x74\x6e\x0d\xdb\x60\x58\x67\xe3\xbd\x05\x04\x83\xc3\xcd\x13\x29\xab\xe5\x7a\x60\xbf\x88\x89\x8d\xc7\xe8\x0e\xde\x0f\x45\x17\xde\x8f\xc8\x07\xe8\x88\xb6\x21\xa0\x0f\x66\x30\x84\xff\x94\xb9\x99\x96\x62\x8f\x3b\x11\x69\x0a\x60\xf0\x91\x8c\xb5\xc9\xa7\xef"}, {{0xcc,0x97,0xa9,0x63,0x01,0xce,0xed,0x0f,0x92,0x27,0x31,0xb6,0x85,0xba,0xd8,0xad,0x4f,0x06,0x20,0x7b,0xe3,0x40,0xf5,0xa4,0x4f,0xd1,0x87,0xf2,0x99,0x03,0xec,0x20,},{0xeb,0x56,0x3a,0x7b,0xce,0x12,0xdb,0x97,0xf1,0x89,0x1d,0x0f,0x61,0x0b,0xeb,0xd5,0x51,0x01,0xa3,0x12,0x5c,0xa8,0xdb,0xb5,0x0b,0x25,0xa6,0xb5,0x05,0x0d,0x37,0x84,},{0xff,0xbd,0xd3,0x24,0x41,0x81,0xcd,0xf6,0x03,0x4f,0x4a,0x45,0x0f,0xdd,0x95,0xde,0xe4,0x97,0x1a,0x93,0x3f,0x8b,0xe0,0x22,0xbb,0x0a,0x41,0x06,0xae,0xf3,0x9a,0xf3,0x05,0x5b,0x72,0x18,0x81,0xc9,0xb5,0x4d,0x1e,0x99,0xb9,0x40,0x90,0x96,0xfb,0xe6,0xdc,0x2c,0x99,0x66,0xe3,0x67,0x99,0x64,0xbd,0x7e,0xf4,0xc8,0x08,0xca,0xbf,0x01,},"\xb9\xea\x3b\x3d\xf7\x18\x7e\xa4\x15\xa3\xc3\x35\xe0\x83\x4e\x10\xf4\x40\x91\x5b\x2a\xd4\x1c\x71\xf2\x55\xd6\x95\x0a\x4e\x91\x20\xe4\xd4\x94\xfd\x9e\x67\x2c\xe5\x32\x06\xfd\xc4\x17\xd8\x65\x89\x7b\x47\xac\x10\x54\xe1\xca\x10\x68\x19\x52\x32\xd4\x29\x74\x35\xe4\x4e\x12\x24\xe6\x6a\x91\x2d\x9d\x7d\x18\x29\x46\xff\x5a\x9f\x08\x5b\xb8\xba\x19\xc5\x4d\x16\xb5\x86\xa9\xb3\x04\x61\xb6\x77\x3b\x93\x95\x03\x11\xe1\x61\x98\x86\xf5\xa5\xb3\xf1\x11\xaa\xad\x09\x4b\xae\x31\xc4\x8f\x19\x41\x08\x09\x68\xbd\x02\x77\xbb\x6f\xa9\x2e\xeb\xf3\x24\xb1\x92\xdf\x5c\xc9\x69\x51\x6c\x78\xc7\xb2\xd1\x21\x59\xb4\xd1\xc8\xeb\x03\x16\x0c\x4c\xd1\x90\x7f\x62\xed\x4b\x85\x4c\x56\x9e\xcc\x48\x1c\x08\xe6\x36\xf4\x4e\xd7\xc3\x90\xe5\x8b\x59\x37\xd2\x90\x6b\x28\x17\xbc\x37\x69\xda\xd9\xda\x1b\x0f\x79\x39\x1b\x55\x94\x20\x63\x05\x5d\xa0\xd6\xf2\x49\xa3\xe4\x52\xba\xdd\xaa\x03\x29\x98\xd7\xf7\x33\x98\xcc\xd0\x15\x1b\xfc\x92\xc5\xe2\xfd\xfa\x9b\x14\x85\x5e\x6b\x0d\x37\x46\xdc\xe2\x48\xe2\x19\x67\x29\x87\x25\x2e\xc7\x47\xdf\x27\x47\xfd\x3f\xbd\x8b\x71\x4c\x88\x2d\x70\x7e\xe3\x02\xa9\x04\x95\x0c\x34\x75\x4f\x85\x35\x0e\x1a\xa3\xf8\xea\x62\x93\xcf\x01\xf7\x17\xce\xfb\x6b\x83\xa2\x21\x26\xdf\x5c\x4f\x56\x98\xaa\xfd\x06\xa2\x24\x4a\xd7\xd0\x1f\x34\x01\x7c\xa0\xec\xe6\xf2\x10\x40\x04\x8a\xba\x6c\xa4\xae\xb0\x43\x25\xb9\x40\x2b\xcd\x43\xab\x13\x0a\x10\x57\x88\xac\x3d\x7b\x7d\xa0\x1e\xa9\x42\x6d\xd0\xea\x19\x33\xa8\x18\x99\x33\xa6\xc0\xc6\xcd\x64\x8e\xa3\x16\xa7\x46\x9a\x5f\xdc\x6e\x7c\x93\x4d\x91\x86\x58\x60\x97\xb5\x5d\xd5\x1a\xc4\x87\xbb\x80\xed\x11\xd4\xdf\x8d\x33\x62\x6b\xbc\xe9\x5e\x4f\x13\xbd\x49\x92\x2f\x00\xc9\x20\x22\x3f\x4c\xbf\x93\xcb"}, {{0x67,0x9e,0x3e,0x34,0x77,0x3a,0xbe,0x4a,0xe2,0x5c,0xae,0x7d,0x07,0xcc,0xd0,0xeb,0x3b,0x0e,0xc0,0xa3,0x5d,0x57,0x02,0x57,0xd6,0x25,0x70,0xde,0x58,0xea,0x25,0x16,},{0x18,0xac,0xff,0xce,0x25,0x3b,0x27,0x25,0x95,0x79,0xed,0x99,0x24,0xf4,0x79,0xca,0xe3,0x12,0x16,0x7b,0xcd,0x87,0x6e,0xdb,0xa8,0x8b,0x5d,0x1d,0x73,0xc4,0x3d,0xbe,},{0x1a,0x51,0x02,0x26,0x28,0xcc,0xbb,0x88,0xea,0xe9,0xb2,0x17,0x73,0xc3,0xf8,0x30,0xb7,0xb6,0xe5,0xbc,0x36,0xc9,0x90,0x3c,0xe7,0x0f,0xbc,0xf4,0x59,0xd6,0xa1,0xed,0x8a,0x1d,0xce,0xff,0x5b,0x19,0x26,0x9e,0xbf,0x5a,0x6f,0xd3,0xd8,0x95,0x88,0x60,0xf5,0x54,0x46,0x1f,0x0e,0x9f,0xc0,0xe2,0x9a,0xf9,0xb1,0xfb,0x17,0x44,0xa8,0x0b,},"\xfb\x2b\x64\x8e\xbb\x16\x68\x82\x44\xf7\x8b\x2e\xe9\xa2\x73\x59\x9d\x56\xb6\x19\x89\x00\xd4\x38\xa9\xe9\x9c\x19\x14\x25\xc7\x2b\xec\x4f\x23\x58\x47\xe1\x8e\x47\xf5\x7c\x3c\xb3\x96\x65\x5f\x77\x89\x21\xf9\x08\x58\x0e\x8e\x83\xc9\x6c\x10\x8b\x20\xdd\x41\x66\x78\x02\x1b\xca\x25\x9b\x98\x51\x8f\xab\xb2\xd3\x53\x2e\x48\x51\xd9\xd5\x2a\xdd\x25\x42\xc0\xcb\x3e\xfa\x38\x57\xa1\x7e\x51\x24\x38\xbc\x0e\xc4\x76\x2e\x2f\x9b\xab\xa4\x29\xc0\x3e\x99\xbe\xc4\x03\x8e\x6b\x0c\xa4\x2b\xff\x5b\x23\x3b\x24\xc3\x33\xb4\xca\xea\xd2\xde\x37\x4a\x87\xb2\xab\x5d\x80\xd6\xe4\x9e\x44\x56\x32\x9d\x51\xae\x97\x3b\xc8\x3d\x78\x62\xf3\xd3\x15\xe5\x14\x48\x1b\x12\x85\x4a\x9d\xfc\x09\xe7\xd1\x4f\x0d\x02\x2c\x0b\xa3\x02\x25\x78\xeb\xa8\xf8\x74\xde\xba\x4a\xa8\xc8\x33\xf2\xb1\x32\x86\x1d\x4d\x51\xe5\x0f\xe9\xaa\x4b\x78\x7b\xd2\xf0\x51\xaa\xc5\x0c\x37\x53\x90\xcb\xbc\xfb\xa2\x00\x2b\x80\xad\x00\xcd\xc1\x29\x80\xf8\xba\x8b\xcb\x70\x64\xaf\xc0\x4d\x5c\x46\x82\xc1\x02\x9b\x10\xa6\xd4\x5f\xe6\xec\xd7\x04\x24\x5f\xaf\x59\x8c\x46\x59\x59\x7c\x5d\x68\xa1\x92\xcc\x1c\xd4\xfa\x45\xe8\x4b\x54\x9e\x8e\x5e\x67\xda\xa8\x79\xae\x5a\x52\x0a\x6b\x55\x50\x51\x98\x76\xa5\x62\xac\x49\xc6\xdb\x0a\xa7\x6e\xc6\x9b\xb6\x4d\xd6\xb5\xe1\xa3\xaf\x2e\x13\x1e\x72\x2e\x7c\xdd\x05\xbe\x34\xb5\xfc\xc6\x25\x9a\xa1\x24\xcc\xf8\x14\xcf\x5b\x50\x0d\x17\x6b\xe2\x8e\xbc\x40\xbb\x21\xf0\x3e\x24\xcc\xc1\x31\xe0\xf4\x1d\xaa\x1c\xa0\x2e\x6b\x00\xc9\xc5\x3f\xad\x12\x48\x61\x4e\x94\x0d\x4b\x23\x77\x60\xab\x75\x69\xa7\x67\xb7\x51\x5d\xd2\xd6\x23\xe5\x7a\x28\x41\xb7\xd2\x44\x1c\xf4\x30\x49\xe4\x69\x8d\x2f\x9c\x9e\xae\x7b\x29\x10\xf6\xad\x65\xed\xf9\xcb\x2b\xdb\xd9\xb2\x9f\x60\x6e\x0d"}, {{0x9b,0xfa,0x60,0x92,0x3a,0x43,0xed,0x0c,0x24,0xe2,0xf1,0x2f,0x5b,0x86,0xa0,0x71,0x63,0x29,0xf9,0x3d,0x4d,0x8d,0x3e,0x06,0x23,0x80,0x02,0x89,0x32,0x78,0xc1,0x9a,},{0xfb,0x1c,0x00,0x68,0x77,0x81,0xb5,0x5b,0x89,0x3d,0x6b,0x2f,0x4f,0x49,0xcf,0x5f,0x73,0xd2,0x90,0x3c,0x31,0x6d,0x1e,0xee,0x75,0x99,0x1d,0x98,0x3a,0x18,0x68,0xc0,},{0x55,0xf2,0x02,0xef,0xb2,0xa5,0x7b,0xe8,0xb4,0xe4,0xfd,0x89,0x4d,0xcc,0x11,0xa4,0xfc,0x5f,0x82,0x76,0x61,0x8e,0xf5,0xcd,0x34,0xa4,0x49,0x5a,0xdb,0x01,0x6a,0x29,0x8e,0x64,0x80,0xa3,0x5c,0xfc,0x53,0xed,0xb2,0x5f,0xf1,0x49,0x9f,0xc5,0x32,0xa3,0x30,0x61,0xcc,0x01,0xa2,0x50,0x45,0x8a,0xa5,0xe4,0xf7,0xf1,0x6f,0x51,0x44,0x0d,},"\xa9\x90\x28\xb0\xf4\xa3\xaa\x5e\x79\xab\xef\x6c\x0d\xf4\xa7\x83\xef\x47\x0f\x1a\x29\xba\x51\xeb\xa0\x0f\x62\x14\xe8\x40\xfe\x19\xe5\xb6\xdc\x60\x21\xab\x59\x9b\xb2\xee\x36\x99\x57\x60\x15\xd7\x9a\x79\x39\xaf\x82\x35\x35\xb6\x30\xe3\x93\x8c\x72\x3f\x6e\x0b\x92\x29\xd4\x6b\xb3\x37\x9a\xcd\xba\x58\x7c\x23\x85\x67\xe3\xd8\x9b\xc3\xbd\x35\x19\xb7\x27\xfc\x69\x4f\xff\x11\x18\xbf\x22\xc8\xbc\x8b\xc8\x2c\x4d\xf7\xf5\xad\x38\xde\x05\xfe\x9f\x76\x29\x99\xec\xaa\x79\x5f\x3a\xe6\x30\xa9\xa3\x16\xd2\x6d\xce\x9f\x15\x68\xff\xa3\xf2\x2b\x02\x95\x21\x40\x20\xb3\xd3\xf5\x33\x7c\x14\x95\x68\x19\x22\x18\x13\x2a\x90\x70\x92\x79\xc0\x1d\x23\xba\xef\xa6\x69\xe1\xc4\xe4\x20\x38\x17\x3f\x13\x19\xc2\x12\xda\x14\x4f\x1c\x4e\xa4\xc5\x2c\x00\x5c\xbc\x0b\x5b\xc2\x83\xe7\x44\x83\xa0\xdc\xa6\x92\x79\xde\xb1\x7a\xe5\xb2\x9c\xfa\xfa\x7d\x00\x63\xf4\xe1\xbc\x93\x53\x7e\xfd\x93\x7e\x58\xa8\xac\xa7\x37\x22\x8f\x93\x7f\xf2\xa7\x41\x89\x0e\x96\xc5\x72\x5d\xa1\x1b\x45\xc4\x13\xa9\xbb\xb4\x18\x0a\x41\x99\x87\xbb\xf0\x46\xbf\xd3\x46\x29\x5d\x62\xf0\x81\xc7\x6d\xaf\x2b\x0e\x1e\xb4\xf6\x71\x2f\xee\xbe\x6f\x0a\x92\xe3\x58\xe7\xdd\xb8\x58\x96\x50\x7c\x34\x0a\x01\xf6\x8d\x1b\x0f\x08\x57\x78\xb7\xc4\x4b\x01\x4a\xa6\x67\x3e\x50\x17\x96\x95\x9a\x17\xa6\x88\xdb\x09\x59\x05\x84\x88\xa7\x11\x25\x72\xf2\x3c\xf9\xcd\xb5\x3b\x5e\xb4\xb4\x5f\x59\x53\xba\x0c\x0c\x69\x0f\x86\xbd\x75\xe8\x9a\x04\x7b\xeb\xaf\x84\x7c\x1d\xfc\x34\x5a\x4f\x3c\x7d\x3b\xee\xc9\x8b\x84\xb0\x21\x90\x03\xe8\x19\xf5\xc2\xad\xb4\x5f\x87\x17\x90\x3d\x1f\x5b\xd5\xd7\x19\x14\xc5\x6f\xca\xbc\x7a\x29\x0f\x9c\x41\x69\x9c\x95\x58\x4d\x6a\x3a\x16\x34\x0c\xb1\x7b\xaa\x1f\xc5\xe5\x46\x7a\xf7\xac\x32\x21"}, {{0x6e,0x3a,0xf4,0x5e,0x66,0xe2,0x28,0x90,0xc3,0xf3,0xc9,0x34,0xf5,0x23,0xa4,0xd6,0x94,0x27,0x97,0x6e,0x6e,0x52,0x62,0x5f,0x8b,0xad,0x55,0x89,0x93,0x96,0x32,0x19,},{0xe0,0x97,0x36,0x4e,0x76,0xff,0x9f,0x2e,0x1d,0x16,0x7f,0x6b,0x20,0xc1,0xbc,0x58,0x30,0x08,0x5e,0x7e,0xc9,0x93,0xc1,0x38,0xf8,0xb1,0xb2,0x17,0x56,0x37,0xe7,0x41,},{0x26,0xba,0x56,0x2e,0x8a,0x40,0x65,0x70,0x82,0x07,0xc2,0x5e,0x23,0x9b,0x78,0x0a,0xee,0x38,0x79,0x4c,0xf9,0x83,0xa3,0x7a,0xcb,0xb9,0xd5,0x57,0xa6,0x5c,0xee,0xd3,0xc0,0xda,0x47,0xd1,0x7f,0x3e,0x8b,0x8f,0x4e,0xeb,0x1b,0x65,0xa2,0xc1,0x82,0xea,0x6f,0x29,0x62,0x3b,0x63,0xbb,0x0f,0x1c,0x72,0x59,0x26,0x83,0xb1,0x26,0xb9,0x01,},"\x5c\xfc\x2f\x4b\x55\x9f\x82\x05\xb3\x91\x02\x08\x76\x17\xf4\xd8\x6c\x7c\xe6\xcb\x25\x1e\x5f\x89\x60\x1d\xfc\x88\xed\x28\xe8\xd7\xa6\x70\xec\x00\x87\xd2\xea\x5d\x89\x30\x21\xc7\x04\x4d\xa2\x89\x9a\x22\xd7\x76\xfe\x90\x17\x0e\x51\xc2\x03\x25\x06\x90\xd3\x7a\x29\x45\x55\xe7\x4a\xf9\x23\x4c\xbf\x1a\xd8\xf2\x2c\xee\x89\x74\x82\x8a\x0d\x09\xe9\x55\x4b\x71\xee\x3b\xcf\x88\x0a\xb9\x83\x25\xf7\x06\x27\x21\x94\xeb\x2e\x80\xc7\x01\xd4\x41\xb5\xf8\x66\x85\x61\xb8\x88\x49\xf8\x27\xaf\x70\x3a\xb0\x95\x41\x05\xfd\x3c\x54\xb3\xf6\xec\x54\x93\x59\x6d\x0e\x3b\xc6\x78\x18\x04\x83\x10\xc4\xa3\xe0\xc5\x56\xbc\x80\x67\x5f\x20\x1f\x9b\xb9\xc6\x53\x8a\x41\xd9\x9a\xa4\x0c\x88\x6f\xc4\x31\x46\x72\x18\xd8\x19\xc2\x3e\x78\x49\x8a\xed\x06\x13\xfa\x6f\x97\x3e\x22\x11\xdf\x9f\xb8\x7f\x44\x11\x6f\x3f\xe4\xc2\x6d\x6c\xb2\xfa\x33\x4c\x87\xf7\x8c\x08\xca\x8c\x9b\x90\x41\xd8\x3a\x12\x30\x67\x7e\x0a\xf7\x88\x59\x8a\x42\xe4\x4c\xfd\xf6\x96\x4a\x4e\xe8\x0e\x38\x40\x2b\xa6\x7c\x73\xa5\x81\xe5\x52\xba\xa2\x28\x24\x25\xcb\x2c\xa1\x7c\xa9\x2e\xdf\xbf\x98\x29\x91\x02\xfb\xa7\x61\xb9\xb7\x1a\x54\x52\x14\x1b\xb9\xc1\x8d\xd9\x5f\xeb\xc2\xa7\x82\xde\x9c\xee\xc0\x8b\xd2\xee\x3f\x7f\x0c\x1b\xd8\x94\x6d\xba\x99\xcf\x9e\xa0\x86\xab\xaf\xd3\x7c\x9c\xa6\x02\x13\xf0\xde\x17\xc6\x1f\xf9\xc3\x91\xc9\x81\x8e\xd5\xcd\x85\x71\x77\x8b\x7d\xcc\x13\x22\x49\x62\x38\x6f\xb8\xca\x14\xf8\x61\xe9\x9f\x3b\x18\xed\xac\x8a\x5f\x13\x0f\x7b\xfc\xd4\x5d\x04\x5d\x0f\xf3\x4c\x81\x57\x2a\x51\x23\x63\xd6\x53\x0f\x93\x81\x3e\x5f\xb1\x0e\x9c\xb8\x33\x8a\x7f\x93\x80\x04\x91\x00\x6f\x44\x63\xe8\x9f\x0e\xd4\x53\x0e\x5f\x12\xdf\x67\x4f\x59\x89\x04\x78\x0a\xd0\x81\x2b\x1e\x35\x21\xfc\xd0\xf8\x3e"}, {{0x5f,0x1f,0x27,0x18,0x44,0xd9,0xed,0x5a,0x6a,0x6f,0x20,0x9a,0x21,0x40,0x8d,0xae,0xa4,0x70,0xf6,0xfd,0x53,0xba,0x64,0x79,0xd7,0x40,0x71,0x05,0xb7,0xde,0x4d,0x65,},{0x60,0x85,0xd7,0xfb,0x5a,0x9b,0x2e,0xd8,0x06,0xc1,0xfd,0x30,0xa2,0xaf,0xde,0x76,0x09,0x61,0xf7,0xa3,0x6b,0x48,0xf4,0x87,0x52,0x46,0xe6,0x15,0xa2,0xbd,0x99,0x28,},{0x31,0x9b,0xb4,0xde,0xb2,0x17,0x81,0x12,0x24,0x1b,0x3f,0xb8,0xf4,0x6e,0x10,0x5c,0x3b,0x8e,0x4e,0xf7,0x21,0xeb,0x20,0x0d,0x76,0x2e,0xf3,0x63,0xe2,0x71,0x6f,0x2a,0x89,0xf8,0x0b,0x5b,0x9e,0x89,0x97,0x08,0x90,0xa0,0x98,0x92,0xad,0x6a,0x58,0x80,0x8b,0x47,0x7e,0x94,0x3b,0x3c,0xfa,0x77,0x77,0x4a,0x36,0x45,0xbc,0x74,0x5f,0x03,},"\xee\xd6\xb4\x47\x5d\xc2\x63\xbd\x22\x07\xfe\x9d\x41\xd4\x82\x82\xb7\x13\xf6\x80\xf2\xe0\x37\x38\x4f\x18\xb4\xbf\x22\x43\x47\xf5\xe4\xc4\xb0\x60\xb8\x08\xd4\x12\xea\xab\xcf\x73\x3d\xc3\x9a\x40\xc6\xbd\xa0\x50\x5c\xe7\x1f\xa8\x23\xbd\x1b\x17\x94\x84\x76\x78\xdc\x03\x4e\x79\x99\xc1\x63\x69\x34\x0b\xc6\x0c\x64\xd0\x9b\xb9\x18\x7b\x2e\x32\x60\x55\xa0\x53\xf8\xe5\x05\xea\x41\x96\x86\x14\x71\x62\x2d\xb0\xe4\x6f\x0f\x89\x54\xd8\xa1\xf0\x73\x32\xda\x4d\x8a\xc5\x57\x12\x62\x60\x09\x91\x2f\x8a\x15\xa9\xcd\x63\xa7\x4a\x03\xc9\x2f\x24\x6c\xb6\x3c\xc7\x3f\x92\xe5\x1d\xad\x1b\xc9\x71\x5b\x1e\xd3\xfe\x5f\x2e\x1b\x29\x59\xb9\xb7\x1e\x0e\x37\x36\x0e\xb2\x95\x36\xcf\x79\x71\x47\xfa\xb1\x08\x64\xd6\x14\x6c\x36\xb8\x23\x35\xa0\xce\x93\x14\x08\x47\x9c\x7e\xde\x48\x4f\xf7\x3e\x2d\xbf\xff\xc6\xc9\x22\x7e\x16\xd7\xa2\x3f\x4d\x90\xf1\x55\x84\x51\x4c\x39\x59\x4e\x17\xbf\xbb\x29\x5d\xe9\xd6\x2a\xda\xdb\x58\x9d\xbb\xe0\xb0\x6d\xc8\xda\xc5\xb3\xbf\x51\x7b\x24\xc1\x83\x7b\x39\x47\x2a\x6d\xd3\x89\x31\xff\xbb\xff\x5b\x76\x36\x38\x80\x5b\x4e\x22\x32\x1f\x7a\xfe\x92\xcd\xf5\x02\xfb\x63\xd1\x09\xdd\xcd\x9e\x40\x51\xad\x6f\x45\x59\x85\x32\xbe\x17\x95\x23\x71\x08\x51\xd3\x93\x1e\x88\x7d\x02\xc3\x45\xc7\x9c\x48\x9f\xc1\x06\xa4\xae\x16\x2f\x7d\xf7\x1a\xb9\x0b\x75\x1d\xa7\x03\x8a\x6d\xf7\x61\x6c\xfc\x11\x88\x7e\x21\x06\x8f\xb9\xe3\x3b\xe5\x66\x40\x2b\xe5\x04\xf3\xfc\x27\x42\xb8\x81\x50\x9b\xd4\xfe\x6a\x0f\xc7\x22\x64\x98\x83\xf8\xcb\x65\x55\x98\xa1\x5a\x1d\x4c\x22\x9d\xd8\x6b\x5c\xae\xb7\x11\xa0\x28\xde\xfd\x43\x11\x54\xbb\xa4\x6b\x48\x17\x2a\x4d\x8c\xbd\x45\xbc\x90\xaa\xf8\x74\xb6\x08\x5f\xa2\x84\xf5\xfe\xd6\x55\xad\x6f\xa1\x7d\x67\xb3\xb9\xa7\x96\xfa\x3e"}, {{0x04,0x8a,0xc9,0xec,0x3e,0xcb,0x30,0xa3,0xb1,0xbf,0xda,0x9b,0x3b,0x79,0xa4,0x8c,0x07,0x93,0xb4,0x90,0x87,0x9e,0x3c,0x8a,0x5e,0x23,0xee,0x2b,0xab,0xcd,0x9b,0x7c,},{0x94,0x6c,0x18,0x6f,0xea,0xfc,0x35,0x80,0xa5,0x8d,0xdd,0x52,0x6f,0xf2,0x29,0xc0,0x47,0x20,0x25,0x0f,0x4c,0xf6,0xbd,0xe0,0x27,0x1e,0xef,0x9b,0x12,0xb1,0xc3,0xf3,},{0x2e,0xcf,0x5b,0x8a,0x59,0xa8,0xe2,0x7d,0x25,0x89,0x0a,0x2a,0xa3,0x2f,0x4a,0x06,0x73,0x27,0x5d,0x53,0x9b,0x17,0x4a,0xfa,0x7b,0x2c,0xeb,0xf2,0xe7,0x62,0x80,0xdf,0xfc,0x33,0x8e,0xde,0x85,0xac,0x8f,0x61,0x40,0x39,0x56,0x0e,0x28,0x06,0xd9,0xe1,0xe3,0xcf,0x9c,0xce,0x2c,0xeb,0x78,0x74,0xff,0xe1,0xa7,0xe8,0x0c,0xde,0xf4,0x0b,},"\xd6\x8b\xe8\xef\x7b\x4c\x7a\x42\x89\xf2\xb1\x8b\x16\xad\xe9\x7f\x4e\x4f\xa1\x64\x52\x97\x6a\xfb\x58\x16\x93\x38\x0c\xc5\x4d\xe3\x8a\x07\x58\x7f\x32\xe2\xd4\x54\x9f\x26\x59\x5f\xee\x23\x93\xbd\x06\x2e\x9b\x00\xba\xe7\x24\x98\xe4\x14\x8c\x8b\x88\x2a\x88\x40\xe1\x5b\x58\x5c\x82\xb5\xc0\xde\xfb\x23\x35\x18\x40\x99\x16\x61\x5d\xeb\x3a\x55\xa5\xf8\x4e\x6b\x3a\xab\x93\x84\x4d\xe3\xb1\xe4\xd8\x6e\x09\xf8\x89\xac\x71\xc3\x24\xeb\x12\xd0\xfb\xd8\x61\xcc\x31\x22\x95\x40\xe8\x43\xa3\x4f\x8d\x5b\xe4\x7c\x0e\xc0\xd2\x3d\xf4\x3e\x06\x81\x3f\xca\x30\x94\x39\x90\x4c\x16\x7d\x10\x43\xc0\xdc\xd4\x44\xb0\x04\xbe\x1f\xf2\x7b\x78\x62\xb0\x0e\xba\x94\x33\xb9\x4b\x0f\xcd\xc6\x75\x21\xda\x0c\x1d\x53\x58\x63\x6c\x78\xf5\x30\x43\x11\x64\xdd\xe2\x0a\x1c\xf1\x64\xf5\x1e\x29\xb8\xe6\x3e\xac\xde\xcc\x86\x9b\x41\x39\x2c\x66\x76\x64\xd9\x16\x80\xd9\xac\x51\x6a\xf5\x48\xf0\x9e\x60\x56\x4e\x81\x4e\x36\xe0\xb5\x63\xdb\xae\x55\xc6\x27\xff\xc1\x41\x58\xa5\x6d\x8e\xb3\x60\x9e\x17\x43\x81\xb2\x1d\xe4\xba\x82\x34\x44\x66\xdd\x57\x7f\x4d\x11\x03\xc4\x3c\x27\xfb\x83\xcb\x83\x3d\x87\xaf\xdf\x74\x12\xb4\x09\x09\x09\xb1\xdd\xe2\x64\xda\xdd\xce\x96\x7f\x49\x6b\xf6\xf1\x71\x12\xbf\x35\x1e\x41\x7d\xb5\x95\x3b\x13\xb8\xf0\xfc\xcc\xbf\x30\xf5\xbc\xf3\x76\x86\x1c\x12\xef\x20\xee\xc8\x9e\xd2\x3c\xf3\x84\xee\x78\xdc\x6e\xb4\x0f\xd5\x81\x1a\x7b\x23\x92\x7c\x13\xe7\xdc\x5d\xa3\xa9\x21\xb8\x83\xa9\xb2\xb1\x15\x59\x70\xfb\x0d\xa7\xd2\x99\x3d\xcd\xfd\x43\x43\x64\x2a\x9d\x5a\x63\x47\xe4\x3c\x19\x3b\x57\x93\xe4\x45\x3a\xc1\x53\x7a\xa3\xd0\x4d\xc9\xf7\x74\xe8\x40\x93\x48\x81\xd7\x8a\x39\xba\x25\x04\x38\xc5\x07\x25\x0e\xed\x2f\x6e\x07\xcc\x95\x3f\x78\x3d\x6b\x72\xb1\xcc\x61\x99\x81"}, {{0x2f,0x05,0x7d,0x20,0xb1,0x67,0x85,0x31,0x61,0x1f,0x48,0xf0,0x03,0xb7,0xd2,0x2e,0xba,0x5d,0xbb,0xd7,0xe2,0xdd,0x41,0xb7,0xc7,0x9d,0x09,0x07,0x1f,0x85,0xe9,0x93,},{0x62,0x0f,0xc4,0xea,0xa3,0x4d,0x78,0x7d,0xf6,0x75,0xcc,0xbf,0x7e,0x89,0x32,0x04,0x82,0x8d,0xb9,0x2e,0xad,0x17,0xa1,0x16,0x5a,0xc7,0xfa,0x1a,0xb4,0x27,0x19,0xd8,},{0x30,0xdf,0x7b,0x0b,0x1c,0x04,0xfb,0x1e,0xfa,0x35,0x17,0xe9,0x28,0xd6,0xd5,0x7c,0x2c,0xa0,0xd0,0x7f,0x4e,0x04,0xff,0xb1,0xf0,0x8b,0x47,0x92,0xc5,0x93,0x7d,0xd2,0x71,0xcc,0xab,0xdc,0x00,0xdc,0xe8,0x50,0xaf,0xe5,0x0a,0xf5,0x99,0x0f,0x22,0x4e,0x84,0x20,0xa6,0x81,0xd9,0x5f,0x9f,0x7f,0x51,0x5a,0xfe,0xc1,0x02,0xef,0xd1,0x0e,},"\x6e\x35\xf6\xea\xa2\xbf\xee\x06\xea\x6f\x2b\x2f\x7a\xb1\x5f\xa9\x7c\x51\x80\x95\x8a\xf2\xe9\x0a\xf9\x18\xad\xfb\x3d\xb8\x32\x3f\x44\x7c\x7b\xf2\x6d\xc5\x34\x99\x7c\x38\xb7\xfc\x97\x7f\x64\x2d\xe2\x88\xcd\xf2\x53\x07\x1c\xac\xf3\x56\x4e\x3b\x8e\xd6\xdc\xe5\x7d\xdf\xba\x9f\xf7\x83\xba\xd2\xe7\x6d\xf1\x24\x82\x8f\xc1\x03\x1a\xcf\xad\xf0\x1a\x44\xd4\x1b\x42\x16\x1a\xd9\x06\x03\x01\xc1\xaf\x19\x28\xb9\xe5\xb7\x3b\x9b\xd2\x1c\xac\x60\xa8\x42\xb5\x04\xdc\x3c\xc3\x11\xc5\x22\xe3\xbb\x04\x8b\xf2\x21\x44\x4f\x53\xce\xb0\x8e\x77\xe9\x48\x59\x0e\x94\xed\x98\xf1\xb6\x04\xcb\x9e\xad\xc9\x3b\xbe\x74\x31\xc1\x14\x9b\x23\x19\x3f\xf9\x3e\x85\x69\xf1\x13\xe1\x68\x4d\x89\x76\xec\xae\x6f\x09\xe0\x10\x36\x14\xbe\x41\x8a\x47\x2e\xf5\x5b\xb8\x89\x0d\x72\xb3\x41\xcd\xd7\x50\x5b\x50\xa4\x55\x22\xab\x63\xed\x79\x1c\xe8\xf8\x2f\xed\xdd\x7a\x62\x0a\x4f\x6f\xb1\xd2\xfb\x0e\xd0\xc4\x56\x0d\x78\x44\x6d\x83\xb3\xd1\xb1\xbb\x56\xb3\x66\xd1\x96\x02\x0d\x06\x24\xb1\xfb\xdb\x75\xce\x73\x5d\xd4\x3e\x8e\x8d\xf1\x63\xc4\x4e\x23\x69\x93\xdc\xa3\x41\xf5\x13\x2d\x82\x5d\x0a\x4e\x39\x3a\x19\xd3\x8f\x61\xe1\x1e\x0c\xf3\x92\xcb\x9b\x64\x6e\xa2\x3c\x58\x09\x98\x24\xdd\x8d\x9f\xbe\x26\xa4\x9e\x33\xb2\x3d\xf8\x06\x07\xab\xf1\x97\x15\x79\x9c\x19\xac\xc7\x22\xed\x9b\xcf\x94\xa0\xc2\x9a\xd2\x4b\x78\xb0\xb0\x35\xb3\x24\x1c\x64\xcd\x86\xed\xea\xc8\x10\xe6\x67\x45\x69\x4b\x5e\xb1\x62\x50\x60\xed\xf2\xd9\x49\xde\x0d\x34\xf5\x22\xdf\x2d\xc6\x0a\xe6\x94\xa1\x93\xf3\xb8\x2c\x1d\x6f\x83\xa0\xcb\xb8\x40\xf4\x6c\x49\xa3\xd7\xd1\xcf\x06\xde\xaf\x96\xc6\x4f\x8f\x9e\x17\xbd\x9a\xd5\x12\xae\x63\x09\xc4\x86\xd9\xe2\xa7\x8d\xce\xec\xa4\x73\xa0\x42\x1d\xd1\xb6\x43\xc7\x87\x54\x27\x1b\x53\xce"}, {{0x3a,0x3d,0x27,0x97,0x0f,0xe2,0xac,0xb6,0x95,0x1e,0xdd,0x5c,0xa9,0x0d,0xda,0x0f,0xc6,0xdd,0x22,0x9c,0x0a,0x56,0xdf,0x6e,0xb1,0x1a,0x9c,0x54,0xd2,0x42,0xdb,0xbf,},{0x56,0x4f,0x0d,0xc3,0xdc,0x47,0x20,0xe6,0x8e,0x44,0xdd,0x16,0x71,0x1e,0x04,0x9e,0x61,0x12,0x00,0x00,0x98,0xfa,0x62,0xa1,0xb9,0x8c,0x28,0x80,0x42,0xf7,0xc3,0xbd,},{0x22,0xeb,0x8e,0xa0,0x50,0x73,0x49,0xb6,0xa0,0xac,0xe2,0x5c,0xf9,0x18,0x0c,0xb0,0x8e,0x03,0x57,0xb0,0x45,0x02,0x90,0x5f,0xbe,0x69,0xb4,0xe2,0x1b,0x2b,0xd9,0x4e,0x22,0xcf,0xbd,0xb8,0x51,0xae,0x71,0x6a,0x5c,0x25,0x3c,0x70,0xd5,0xe2,0xb2,0x4e,0xa7,0x8f,0x35,0xbc,0x21,0x32,0x92,0x54,0x3d,0x94,0xe1,0x41,0x10,0xb2,0x41,0x06,},"\x43\x74\xf6\x1c\x2c\xd8\x8a\x3b\x89\x72\x24\x9b\xfa\x79\xb3\x6a\xb6\x9e\x3e\xd4\x84\xcc\x60\xe5\xd9\x54\x1f\xa7\x68\x6c\xf4\xee\xd1\x21\x0c\x5d\x0d\xcf\x42\xdd\x25\x97\x25\x01\x90\x91\x93\xca\x76\xae\x6e\xb7\xf4\x71\xd8\xbd\x0d\x5f\xb5\xa6\xb4\x31\xbc\x3d\xe0\xe0\x31\x8d\x50\x51\x45\x24\xde\x87\xc4\xb8\x30\x05\xdf\xb4\x12\x45\xfb\x1a\xf7\x9b\x84\xa9\x7b\x83\xd3\xca\xc7\xad\x7a\x53\x36\x4e\x2e\x9b\x21\xc9\x7b\x76\x9b\xdc\x57\xf0\x70\x31\x16\x16\x83\x80\xf3\xcc\x88\x36\x89\xeb\x4a\x7f\xa3\xb2\x6d\xbe\x12\xbc\x28\xf8\xc4\x03\x81\xaf\x64\xdf\x4b\x53\x61\xd1\x74\xcf\x75\xac\xbd\x46\x42\x87\x40\xb0\xd1\x32\x2d\x32\xbb\xe9\x48\x45\x21\x59\x66\xae\x58\x87\x77\xa8\xc0\x53\x36\xe3\x52\x30\x6d\x49\x27\x8d\x32\x8e\x49\x6d\xb6\x5e\x9e\xcf\x6c\xe6\x40\x5e\xd1\xc8\x93\x49\x0b\xc4\x8c\x13\xa1\x34\xe1\xfb\x6e\x80\xde\xbe\x6d\x32\xfc\xe6\xef\x74\x78\x3c\x8d\x77\x98\x0a\x44\x1a\x26\xae\xb4\xfd\x83\xcc\x85\x53\x52\xce\xdc\x18\x8f\x52\x79\xce\x21\x1f\x74\x4a\x40\xb2\x3c\xe7\xff\x24\x43\x7a\x1d\xd3\x37\x3e\xc5\xb2\x90\xda\x1f\x94\xf4\x3a\x07\xa3\xff\xea\x5b\x5f\x67\xb5\x2c\x19\x61\x85\xbc\xe9\xe9\xa8\x58\x25\x7f\xcd\x7a\x8e\xba\xf9\x04\x0e\xd0\x91\xfa\xce\x5a\x15\x5a\xa4\x47\xfa\x15\xe1\x21\x22\xd2\x5e\x8f\xc3\x6e\xae\xe2\x13\x7c\x7b\x3a\xa3\x0b\x7e\x3f\xf6\xcc\x86\xb6\xdc\xb9\xea\xf4\x9c\x95\x76\xf0\xf4\x62\x00\x84\x39\xcb\x1a\x3a\xba\x01\x3e\x89\x7a\x0f\xaf\x99\x4c\xb7\xd5\x9e\xde\x57\x74\xbb\x14\x47\x74\xf7\x3c\xa3\x0e\x64\x14\xa7\xcc\x7c\x74\xb2\x0c\x51\xa1\x40\x4d\xdc\x41\x9e\xf7\x62\x45\x93\xe9\xbc\xfb\x37\xc0\xa7\x62\xea\xb6\x8f\xac\xa5\x86\x34\x43\xe1\x6e\xdb\x75\x9d\xbc\x87\x88\x73\x2b\x9e\x4f\x59\xc1\x11\x92\xc3\xfc\xc8\x72\xaf\x55\xf3\x2d"}, {{0x06,0xd4,0x98,0x31,0x8d,0xa4,0x56,0x24,0x2b,0x9c,0x3b,0x9a,0xb6,0xd5,0x32,0xa1,0x28,0xfc,0xe0,0x44,0xf5,0x38,0x82,0x68,0x2e,0x92,0x62,0x14,0x9c,0x16,0x52,0x88,},{0x41,0x35,0x17,0xaa,0x63,0x20,0x0a,0x17,0x17,0x32,0x09,0xa4,0xb3,0xe7,0x8a,0xb9,0x38,0x3c,0xb4,0xe3,0x9e,0xfd,0x67,0x94,0xc4,0x6a,0x2d,0x13,0xfa,0xfa,0x99,0xc0,},{0x82,0x50,0xf7,0x6d,0xc5,0x99,0xc5,0x12,0x87,0x87,0xe4,0xf6,0xd3,0xda,0x23,0x17,0x33,0x30,0xce,0x33,0x20,0xdb,0xa9,0x59,0xbd,0x71,0x4c,0xc8,0xcc,0x07,0xc6,0x79,0x45,0xd6,0x3e,0x75,0x66,0x2c,0x07,0x5e,0x26,0x74,0x60,0xab,0x7b,0xf5,0x61,0xf2,0x4f,0xaa,0xe3,0xb4,0x1d,0xbf,0x67,0x68,0x99,0x19,0x1e,0x3b,0x02,0xb5,0xaf,0x0a,},"\x3f\xe3\x0e\xcd\x55\x07\x7a\x6e\x50\xdf\x54\xbb\x1b\xf1\x24\x8b\xea\x40\x63\xe3\xfa\x75\x5f\x65\xfc\xd1\x15\x9e\xe0\x46\xef\xd0\xeb\x5f\x2f\xbb\x38\xb5\xc0\x09\x47\xc9\x7d\xc8\x79\xb3\x6b\x9e\x53\x61\x92\x28\x60\x86\xd0\xdc\x12\x05\x36\x10\x38\x61\x74\xa7\xc5\x6f\x22\xa8\x5b\x73\xff\x20\x8c\x59\x44\xf3\x93\x23\x6c\x32\x41\x58\x09\xda\x03\x6e\x73\xca\xd8\xfc\x3c\x30\x37\x80\x64\xa7\x6a\xfa\x93\x0a\x3b\xaa\xe9\xaa\x35\x70\x61\xa8\xc5\xe8\xe7\x56\xa9\xce\xcf\x94\xb7\x2d\xf4\x3f\xac\xd8\x8f\xa4\x9c\xb4\x94\x8c\x63\x68\x31\x8a\x6b\x1e\x5c\xff\x52\xe5\x87\xec\xdf\xae\xfd\xb6\x90\x81\xf2\x8c\x2d\x13\xbf\x8e\xab\x81\xdb\xaa\x5e\x37\x28\xc4\x31\x7f\xb7\x93\xdd\x19\x6b\xca\x0f\xe5\x4a\x6c\x24\x2c\xf2\x6e\x2d\x12\x9b\xa0\xd8\x2a\x2c\x3a\x45\xbc\x8d\x1d\xfd\x6f\x54\xf8\xda\x4f\x51\x89\xc9\x1a\xc2\x14\xfd\xab\xf4\xc5\x97\x38\x1b\x2e\x5c\x40\xcc\x71\xfa\x70\x51\xcf\x2e\xa9\x39\x06\xa3\x7d\x57\xdf\x12\xd5\xc7\xe5\xcd\x77\xc9\x07\xe4\x42\x56\x63\x15\xba\xe5\x1a\x22\x22\xd6\x2e\x3f\x42\xd1\x76\x78\x82\x63\x7d\x66\xa1\xd5\x30\x5a\xb4\x01\x0a\x0e\x49\xc5\x7d\xef\x69\xdc\xea\x83\x9e\x1b\x76\xa4\x11\x35\xba\x95\x2c\xc4\x24\x95\x0e\x8d\x3a\xac\x19\xe1\xd9\x3d\xe7\x75\x7c\x15\xff\x99\x97\xb3\xd2\xa8\x61\x3c\xd9\xa1\x64\x78\x1d\x1b\xe3\x31\x79\x9f\xa6\x10\x9c\xef\x61\x43\x05\xa1\x95\x8f\x62\x90\x3c\x8c\x9e\xa0\xb2\x3b\xa7\x06\xd4\x9c\x54\xba\xcc\xc1\xe6\x3c\xb4\xbf\x14\x78\x5f\xc7\xb0\x62\xa9\x80\x03\x49\xbd\xb0\xbb\x92\x72\x60\xb6\x77\xb6\x0f\x10\xe6\x2c\x87\x80\xf3\xeb\xb5\xeb\x6f\xf0\x36\x02\x63\xd4\x57\xab\x52\xfd\x11\x25\xc9\xce\x04\x6a\x95\xd8\x9d\x28\x73\x50\xc8\x04\xcf\xd4\xff\x2b\x2d\xdd\x18\xa9\xe1\x35\x19\xf2\x0b\x4d\x1e\x05\x1a\xf6\x24\x64\x0f"}, {{0x8e,0x8e,0x1d,0xb5,0xb1,0x10,0x2e,0x22,0xa9,0x5c,0x47,0xaf,0x36,0x61,0x46,0x9f,0x00,0x0a,0x33,0xf1,0x3b,0x8b,0x87,0xb1,0x15,0xd2,0x45,0x2a,0x41,0x1f,0x6f,0x39,},{0x56,0xd7,0xb3,0x16,0x9a,0x95,0xc2,0x29,0x98,0xec,0x93,0x79,0x25,0xbd,0x7c,0xad,0x13,0xcc,0x65,0x80,0x8c,0xd5,0xd3,0x4a,0x6c,0x4d,0xa8,0x70,0xea,0xf3,0x23,0x64,},{0xf6,0xee,0x5e,0x13,0xcf,0xaa,0x36,0x2c,0x89,0x71,0xd5,0xa4,0xa8,0x79,0xa7,0xe3,0x69,0x66,0x52,0x5c,0xcd,0x86,0xc5,0xa4,0x8c,0xba,0x08,0xd9,0x13,0xec,0xe1,0xa7,0x9c,0x4c,0xd1,0x46,0xb8,0xe9,0xc6,0x51,0x25,0xfb,0xad,0xf1,0x7b,0xac,0x1c,0xab,0xcd,0xe8,0xfd,0x17,0xcf,0xd6,0x8f,0xa1,0xf9,0xc4,0x4e,0xa6,0x1c,0x08,0xa4,0x05,},"\xb2\x46\x34\xfb\xdd\x1b\x76\x61\x31\x5d\x9d\xc1\x53\xba\x90\xd6\x6a\x88\x62\x2a\x41\x58\xf8\xbc\xff\x25\xba\x9c\x29\xe6\x5f\x29\x7f\x8e\x60\x31\x18\x00\xb7\x33\x1b\x69\xfc\x20\xc9\xf8\x5b\xb7\xc1\x84\xbd\x40\x86\xb3\xa9\xf9\xa2\x71\x02\xb6\x23\x62\xbd\xb4\xfa\x5b\x20\x15\x94\x25\x0f\xc6\x28\xfd\x2e\x0e\x0d\x1b\xe0\x3d\xcf\x81\x8c\x60\x94\xc4\xc2\x91\x21\xcb\x2b\xf6\xd9\x08\xed\x8a\xab\x42\x7c\x37\x71\xc0\xc9\x5f\x0a\xc1\x46\x9a\x08\x10\xb6\x03\xa4\x70\x28\x2e\x59\x80\xa6\x07\x29\x19\x7f\xe6\xc2\x0e\xf6\x81\xcd\x1b\x96\x93\x2d\x20\x58\xf8\x96\xea\x74\x16\x42\x2a\x7e\x54\x1f\x22\x4a\x5f\x04\x25\x30\x80\x74\x1c\x5d\x4e\x3e\xb0\x39\xdb\x6b\xa0\x51\xb4\xca\x54\x17\xce\x8a\xfd\xc7\x02\x14\xba\x4d\xcc\x85\xb6\x23\xd1\x1e\x68\x1c\x60\x09\xae\xe4\xe6\x13\x0a\x83\xed\xd0\xd2\xc9\x9f\xb0\x64\x7e\x11\xed\xe7\x30\x1a\xe5\x6b\x59\x90\x4e\xf7\x02\x57\x32\xcd\xe0\x38\x80\x1e\xc7\xe8\xd9\x0a\x9a\x1b\xba\x04\x7f\xe6\x28\x35\x1b\x3b\x89\xd0\xbc\x5a\xe6\x65\xa7\x00\x89\x1f\x09\xeb\xee\xc0\x55\x91\x84\x2a\xdf\xcc\x25\xad\xc3\xc7\x1c\x1e\xbc\x4a\x31\x2e\x54\x71\xbe\x67\x25\x3b\x0e\x94\x28\xb0\xca\xe3\x76\x45\xa0\xf7\xec\xb8\x9d\xd7\x9f\xbd\x9b\xe2\x87\x54\x33\x66\x7a\xe0\x7d\x74\xa7\x98\x3c\x4c\xea\x60\x1e\x72\xe9\x75\xc2\x1d\xf9\x93\xe7\xfa\x22\xa9\xfa\xbd\x45\x45\x5d\x45\xe3\x70\x31\x55\x8e\x13\xa7\xa4\xf5\xf4\x97\xea\x78\xfb\x73\x99\xf8\x83\x8c\x0f\xd5\xde\x4e\xbb\x66\xdb\x29\x0f\x43\xa4\x86\x7d\x50\x53\x09\xf1\xc1\xbc\x27\xe9\xfa\xbc\xbb\xa7\x13\x02\xfc\x12\x04\x71\x5c\xe3\xfc\xb0\x90\x5b\xfa\x41\x1c\x9d\x1c\x9a\xb4\xa3\x99\x54\xe5\x0b\x8e\x0c\xf7\x36\xc1\x02\x89\x56\x3b\xdf\xa9\x67\x55\x3c\x36\xcd\x9e\x55\x5b\xc8\xcc\x56\xbe\x59\x48\x47\xde\x9f\x26\xf9"}, {{0x38,0x84,0xb8,0xb7,0x9a,0xbf,0xd3,0xbe,0x6c,0x13,0x98,0x5e,0xb8,0x59,0xab,0x74,0x3f,0x15,0x7c,0xd9,0xde,0xb8,0x1b,0x2f,0xe9,0x7e,0xa4,0xd6,0x17,0x3e,0x46,0xf5,},{0xbd,0x7f,0xd9,0xa8,0xde,0xf1,0x3a,0x54,0x2e,0xd2,0xf2,0xfb,0x04,0x88,0x86,0x88,0x5b,0xa9,0xb5,0xce,0x59,0xcb,0x70,0x19,0xfb,0x54,0x66,0x79,0x86,0xee,0xbc,0x26,},{0xf4,0x20,0x6f,0xcd,0x34,0x50,0x24,0x41,0xd5,0x4a,0x73,0x32,0x3f,0x33,0xa5,0xdb,0xb4,0xc9,0x85,0x57,0x31,0x9f,0x21,0x24,0x6f,0x26,0x0f,0xfb,0xbe,0x58,0x44,0x88,0x6d,0xb5,0x67,0xf4,0xb6,0x3c,0x47,0x94,0x3d,0xbb,0x78,0xfc,0x35,0x65,0x7d,0x7c,0x04,0xd4,0xfe,0xb0,0x42,0xff,0x85,0x36,0xf6,0x72,0x92,0x5c,0x31,0x9e,0xfb,0x09,},"\x12\xad\xaf\xe3\x0e\xaf\x2b\x9c\x72\x03\xca\x5d\x44\xb9\x7f\xfe\xd4\xbf\x65\x17\xa4\x99\x88\xe4\xe6\x76\xc8\xe3\x14\xad\xbd\xbe\x23\xd8\xf2\xd3\xe2\xb0\x81\xa7\x02\x4f\xa5\x25\xab\x5a\xae\x26\xe6\x00\x57\xc1\x01\xe8\xf3\x68\xd3\xad\xdb\x93\x76\xc4\x68\x2c\x1f\x42\x24\xd7\xf1\x49\xa8\x47\x4b\xb9\xa8\xf6\x63\xef\x21\x0e\x95\x72\xce\x82\x9d\xa3\x88\xd8\xaa\xe7\x2a\x46\x71\x41\xad\xc1\x53\x47\x3b\xe3\x65\x3b\xaa\xa6\x4b\x5b\x1e\x2e\x30\x68\x3f\x6f\x06\xda\xc2\x78\x4d\x5b\xbf\x0d\x08\x2a\xab\x47\x30\x5e\xd8\xa8\xef\xd0\x88\x6c\xe6\x3a\x17\x93\x15\x22\x5d\x1e\x4d\x4f\xfc\xf1\xf2\x4a\xc2\xf4\x64\xcf\x5e\xd3\xa8\xb6\xd3\x99\x84\x54\xf1\xc0\x2c\xdb\xf0\xa4\x44\xee\x2b\x59\xdd\xbe\x0a\x17\x4a\x0d\x93\x7f\xa6\x28\x65\x08\x8a\xc6\x47\x49\x99\x57\xd2\x81\xc6\x94\x98\x03\xa5\xfb\xdf\xdd\x0d\xd9\xe9\x1b\x69\x76\x86\x1f\x3c\x5f\x21\x26\xf3\x9a\xac\x93\x5b\xe0\x9f\x4b\x97\x15\xbd\x4f\x0d\x5c\x55\xdf\x73\xa6\xb9\xf2\xc0\xad\x26\xce\x49\xd8\x22\xbf\x85\xbf\xa2\x34\x6f\x31\x65\xb0\x38\x59\xa7\x1c\x3d\x2a\x7b\x86\xdb\x6e\x9f\x2e\x5d\x7b\x16\x9a\x91\x0e\xeb\x7e\xf3\x8f\xbd\xfb\xbe\xc4\x3a\x9a\x25\xf0\x4b\xc3\xac\xfd\x3b\x06\x91\x54\x2a\xb6\xde\x9d\xb6\xf0\x30\x58\xf9\x58\x40\x24\xf9\x91\x8e\xde\xcd\x90\xfb\xb8\x57\x35\xd6\xdc\xec\x5b\xd5\x93\xae\x63\xe2\xcc\x96\x55\x35\x99\xa3\x10\xf8\xf2\x00\x9b\xa9\x53\x71\x19\x6b\x4d\x5b\x80\xe7\x55\x96\x37\xf2\x29\x26\x77\x8b\xe5\xe1\xcc\xef\x51\x26\xe2\x44\x3f\xa9\x39\xc2\xa5\x3d\xdd\xb0\x49\x61\xee\xfd\x34\xe5\x38\xcd\x8d\x7f\x0b\xec\x2b\xff\x1e\xf0\xd3\xa4\xbd\xd3\x58\x31\x76\x37\xf4\x2d\x59\x55\x38\xc1\x12\x22\x51\xa9\x4e\x96\x3d\x1f\x81\xe7\xb9\xae\xb1\x64\xf9\x5d\xa9\xa4\xed\x75\x29\xb8\x45\xeb\xc9\x61\xb2\x7b\x5c\x19"}, {{0xec,0xd5,0x19,0xf2,0x87,0xad,0x39,0x50,0x52,0xb0,0xb3,0x0d,0xea,0xc3,0x41,0xd2,0xa9,0xdf,0x13,0xd6,0x56,0x7c,0x89,0x1c,0x81,0x3a,0x0c,0x9c,0xa5,0x2e,0x87,0x1e,},{0x8e,0xe9,0x4c,0x58,0x8e,0x0b,0x34,0x35,0x85,0xfc,0x67,0x48,0xfd,0x1b,0x54,0xb5,0x77,0x0c,0x64,0xe9,0x93,0x7a,0x56,0x35,0x7a,0x48,0xd4,0x4a,0xe2,0xf5,0x18,0x24,},{0xe8,0xf5,0x1b,0xe7,0x3f,0xc4,0xe0,0x23,0x5a,0xa1,0x53,0xa2,0xe1,0xb3,0x54,0xe9,0xc5,0xd2,0xd3,0x3a,0x11,0xae,0x0e,0x33,0x34,0x78,0xde,0x1d,0x8e,0x6c,0x44,0x56,0xd2,0xe2,0x50,0x82,0x4c,0x32,0x46,0xca,0x0e,0x8d,0x6a,0xe3,0xe1,0x66,0x77,0xa9,0x73,0x44,0x14,0x41,0x08,0xc1,0x3b,0x95,0x9e,0x1d,0xaf,0x51,0xcf,0x0f,0xe5,0x01,},"\xaa\x71\xbe\x5f\x55\x7e\x10\xc9\xfb\x5f\x09\x1a\x3a\x27\x44\x53\x94\x7c\x07\xa0\xe2\x5b\x26\xf9\x50\x92\x24\x54\x1d\xff\x76\xf4\xd9\x6e\xff\xd0\xd5\xa4\x1d\x31\x9b\xc9\x32\x1a\x86\x66\x7d\x55\xcf\x49\x43\x2f\xb5\xc3\xe7\x15\x38\x8f\x3f\x10\x6c\x91\x74\xb1\x61\x0c\x8f\x30\x75\xd5\x93\x1c\x29\x00\x99\x38\x5c\xe9\x24\x9e\x23\x51\x28\xe9\x07\xc5\x33\x90\x03\x6f\xbf\x5d\xa9\x68\xf8\xd0\x12\x33\x69\x58\xde\x90\xc5\xe8\xe6\xb1\x01\x6a\xd4\x3f\xb5\x7c\x8e\x28\x8d\xaf\xe1\x4e\x90\xe6\x4b\x63\x79\x1e\x5c\xbe\x55\x7e\x02\xdf\x8a\xc9\x37\x06\x42\xa7\x1f\xaf\x85\x10\x75\xe5\x56\x5f\x6f\x9a\x26\x7f\x4f\x6b\x45\x4c\xe4\xc5\x47\x48\x10\xb8\x04\x84\x4d\xda\x38\x39\x29\x39\x71\x97\x93\x24\x6a\xa4\x74\x54\xb9\xb0\xe8\x2e\x98\x03\xc0\x99\x35\xd0\x02\x7f\x39\x95\xcc\xa9\x71\x30\x69\xbb\x31\x02\x7f\x7b\x2a\xf1\x2f\xe5\xfe\xec\x7e\xeb\x06\x84\x3d\x82\x96\xec\x56\x82\x26\x2a\x07\xda\xe7\x47\xed\x7b\xc8\x21\xec\x17\x01\x8d\x89\x9f\xd1\x67\xb3\x6a\x7e\x37\x73\xb4\x27\x49\x9d\x99\xdc\x58\x3b\xbe\x4b\x42\x9a\xfa\x6a\x26\x59\x39\x53\xf9\x43\xe4\x67\x3b\xdd\x0d\x2a\x84\x42\x56\x13\x16\x03\xcd\x09\x03\x25\x6f\x33\x4d\x4f\x8e\xc8\x2d\xe1\x15\xb6\xca\x53\x38\xc7\x5c\x8b\xaa\x44\xb4\xba\x96\x3c\x7c\x78\x51\x0d\x8d\xe9\xb2\xa5\x85\x2f\x42\xf3\x46\x3c\x68\x5f\xb3\xa6\xda\x61\xa8\xe0\x89\x26\x62\xd6\xa2\x50\xfc\xaa\x6f\xef\x74\xd4\x50\xfc\x45\x7b\x98\x71\xd0\x8b\xb5\xbe\x30\x11\x29\x4a\xc8\x88\xfc\xe2\x15\xd5\x35\xc3\xb1\xa4\x3b\xb4\x7e\xfe\x3a\xd2\x5d\xa1\x59\x19\x1a\xed\x55\x19\x54\x69\xc5\x90\x93\xff\xb2\x4f\x65\xd6\x0c\x40\x20\xbf\xbe\x64\x7f\xf5\xdb\x7a\xb8\xa0\x1d\x5e\x48\x7b\x0b\x1b\x64\xef\x25\xda\x15\x6d\xb1\x42\xe6\xad\x87\x2a\x4d\xc1\xee\x9b\xa6\x68\x46\x52\x65\x37\x9e"}, {{0x19,0x3f,0x3c,0x63,0x0f,0x0c,0x85,0x5b,0x52,0x9f,0x34,0xa4,0x4e,0x94,0x49,0x70,0xf4,0xa6,0x97,0x2e,0x6c,0x38,0x59,0x35,0x9c,0x2e,0x0c,0x87,0x62,0xba,0x9e,0xaf,},{0x32,0x56,0xf2,0xc8,0x2e,0x7c,0x80,0x12,0x01,0x21,0x01,0x40,0x56,0x9f,0xaf,0x18,0x50,0x7e,0x60,0x33,0x8c,0x2c,0xc4,0x11,0x8b,0xb1,0xce,0x60,0x5b,0x0e,0xbe,0x61,},{0xb1,0x25,0x10,0xac,0x5f,0x2f,0x6d,0x33,0x36,0x0c,0xdd,0xc6,0x72,0x91,0xd6,0xc2,0x70,0xfd,0x9e,0xe6,0x2d,0xc0,0x86,0xb3,0x8d,0x93,0x2d,0x26,0x47,0x3f,0xe9,0xa2,0x4e,0xfb,0xd4,0x24,0x88,0x67,0xea,0x7e,0x91,0x5a,0x30,0xc5,0xbf,0xb3,0xb8,0xb1,0x9a,0xa0,0x1a,0xa2,0xfe,0xbf,0x0d,0xac,0x6c,0xfd,0x66,0x38,0xa2,0xba,0x7e,0x0c,},"\x98\x62\x3f\x65\x16\x98\x08\x5b\xde\x02\x76\x2e\x8c\x33\x21\xf1\x4d\xa1\x61\x9b\x5c\x3f\x7c\x1a\x56\x8e\x8c\x26\xff\x0c\x62\xfd\xcc\x41\x24\x75\x91\x2e\xb8\xe8\xc4\xb0\xd3\x09\x18\xb8\xff\xee\xf3\x50\x93\x15\xe5\x8d\xa3\x59\xcd\xc2\xf2\x6b\xeb\xfb\x57\x03\x95\x3b\xe1\x6b\x8f\x3b\xeb\x1e\x54\xa1\xab\xee\x0a\xeb\xe2\x4e\x64\xdb\xe8\x73\x40\x2e\x15\x6f\x37\xdf\xc1\x68\xea\xf8\xa1\x14\xce\x08\xa6\x79\x5d\x3f\x64\xf5\x15\x1e\x9a\x8b\x82\x75\xcc\x7b\x49\xa6\xb8\xd8\xa6\x6b\x6d\x4b\x76\x32\xef\x80\x74\x0d\xc1\xc1\xb0\xa3\x8d\x1a\x28\xf7\xc1\xb2\x9f\xa4\x45\x41\xc1\xaa\xd3\x54\xd4\x59\x0c\x23\x1d\xae\x68\x7a\x2a\x8f\xed\x09\xe8\xc1\xeb\xbf\xcc\x38\xf3\x47\xbf\x06\xd9\x45\x77\xe4\x9a\xd1\x39\xf7\x10\xed\x8b\xb1\xfd\x07\x66\x3c\x03\x20\x84\x6f\xbb\x45\x5a\xb8\x37\xef\x96\x4a\xe7\xd4\xec\xee\xa4\x5f\xd7\xbd\x8d\x50\x9f\x82\x1e\x6e\xb0\x27\x49\x4e\xfd\x8d\xd8\xe9\x92\xb8\x86\x98\xee\xc2\xeb\xc5\xe0\x30\x25\xbe\x78\x9c\x18\x01\x3f\x20\x1f\x77\xaa\x2d\x34\xf5\x68\x64\x60\xe4\x3f\xb4\x89\xe0\x87\x76\xf9\x8b\xcd\xe2\xce\xeb\x9d\x4f\xaf\xdf\xfe\x03\x75\x60\x43\x71\xec\x32\xf4\x6b\x81\xfe\xc4\x74\x38\x29\x08\xe9\xd2\x50\xa0\xba\x27\x80\xa7\xd6\xdf\x40\x7b\xd2\xb1\xeb\x12\x67\x48\xd7\x25\x11\xb9\xb0\x69\xeb\x1c\xd4\x42\x70\xf2\x9f\xe8\x4b\x9a\x71\x77\x51\x83\x1d\x04\xc2\x81\x8e\x40\x8f\x22\x78\x93\x76\xc6\x1c\x2c\xa4\x5e\x32\xe7\x88\xea\xd3\xa7\x53\x6b\xf0\x9d\xa8\xaf\x47\x03\x90\x2f\x55\x16\xa0\x20\xd8\x92\x63\xe9\x37\x01\xa2\x56\x5e\xef\x12\x70\x41\x89\x25\xf3\x5a\x28\x8e\x32\x7b\xab\x62\x8a\xc2\xf0\x24\x8c\xfb\xca\x34\x82\xe2\x65\xd1\x62\x1c\xc3\x43\xc3\x1f\x65\x49\x3f\x06\x4b\xad\x0d\x76\x02\x46\x07\x15\xfa\x48\x6f\x29\x42\x63\x46\xaf\x53\xe3\x33\xb7\x5f\x59\x05"}, {{0xa8,0x8a,0xd0,0x04,0x8d,0x38,0xc4,0x4c,0xeb,0xe7,0x35,0xea,0x38,0x02,0xca,0x57,0x6e,0x37,0x12,0x1c,0x7d,0x4d,0x76,0x0d,0xfd,0x88,0xde,0x16,0x63,0x06,0x4a,0xbb,},{0x14,0xdd,0x8b,0xb3,0x06,0x80,0x3e,0x5a,0x75,0x8e,0xd6,0x8a,0xd2,0x1d,0x07,0xd8,0x81,0x61,0xd5,0x0f,0x1c,0x74,0x71,0x37,0x77,0xda,0x12,0x09,0xaf,0xba,0xea,0x0b,},{0x13,0x41,0xa1,0x48,0xda,0x45,0x93,0xc8,0x8e,0xbc,0x5a,0x58,0x82,0x1e,0xef,0x77,0xf9,0x21,0x86,0x39,0x0f,0xf6,0x33,0xe7,0x62,0x07,0x08,0x4e,0x78,0x74,0xcc,0xf0,0xeb,0x1f,0x9e,0xc7,0x0a,0x3a,0x3f,0x96,0xb5,0x89,0x34,0xbc,0xb0,0x61,0xff,0x92,0x01,0x24,0xf7,0xe5,0x80,0xfa,0x2b,0x0b,0x27,0x95,0x83,0xad,0xf9,0x23,0x2d,0x0c,},"\x2c\xe8\xbc\xa2\x61\x78\x91\x3b\x16\x76\xe9\x0f\xfe\xfd\x94\x5b\xc5\x61\x98\x26\x60\xe2\xa7\x5d\x48\x2f\xf3\x0a\xab\xa1\xba\x43\xf8\x2d\x2e\x6b\x90\x9e\xc1\x0f\xc0\x97\x89\xff\x5c\xf3\x2a\x51\x80\xb6\x01\xea\x80\xfa\xde\xce\x6d\x7e\x7b\xae\xef\x48\x1d\xc6\x97\x9e\x2f\x65\x8a\xe0\xf6\xd8\xe4\x16\xb9\x32\x98\xf7\xd3\x40\x31\xbb\x76\xf7\x16\xed\x99\x1a\x16\xd0\x9a\x58\x2e\x58\xba\x40\x03\xac\x17\xbe\x8b\x44\x69\xe1\xa8\x89\xb2\xfb\xb2\x28\x9e\x98\xaf\x1c\x6d\x5b\xbe\xe7\x77\x56\x71\x3c\x07\x78\xb0\xdc\x44\x6a\x1f\x6c\x48\xc4\xd4\x08\x18\xec\x79\x99\x05\xf0\x69\xbc\x95\x34\x16\x57\xca\x5d\x02\xb7\xa5\x39\xa1\x3a\x02\xcd\x03\x76\xa5\x0e\x83\x43\xc0\xdc\x20\x34\x6d\xe5\x27\x5b\x1d\xcd\x4a\xd7\xaf\x72\x51\x31\xac\x75\xe9\x54\x82\x5d\x30\xea\xa5\x7a\x68\xbb\x98\xdf\xc4\x1c\xaf\xe5\x71\x05\x56\x64\x7b\x38\x7d\x9b\x7f\xd4\xe4\x76\x51\xe5\x13\x80\x50\x79\x8f\x6d\x40\xf4\xee\x71\x20\xb5\x8f\x74\xda\x94\xd7\x3c\xac\xbf\xd3\x93\xd1\x34\x73\x88\xee\x00\xb7\x9b\x8d\xbf\xeb\x57\x81\x41\x21\xbd\xda\x60\xc6\x27\xdc\xe1\x47\xd4\xd5\x68\xd7\x90\x52\xe9\x7b\x9a\x5f\x3e\xb5\x40\x7c\xc4\x64\x61\xa5\x5e\x18\xa9\x60\xd8\x09\x4a\x5f\xea\x48\xb6\x93\x75\x29\xcc\x4e\xc9\x19\xcd\xbe\xdf\x91\x85\x45\x6d\xc0\x0e\x8d\x98\xad\x15\x37\xee\x10\xa0\x57\xf4\xee\xc4\xb8\x1d\xc6\x03\x92\xfc\x91\x88\xd3\xe5\x61\x78\x59\x65\x09\x2e\x44\x31\x7f\x2a\x48\xe3\x66\x05\xfc\x58\x3f\xc1\x73\xb0\x5d\xb9\xdc\xbc\x75\x57\xd0\x64\x87\x39\x0f\xbb\xba\x77\xaf\x3a\x01\x4e\x1a\xc3\x51\x39\xca\xa1\xc5\x3a\x8d\x17\x34\x7f\x17\x8e\x1c\x54\xd0\xf5\x2b\x40\xe9\x10\x42\xc9\x3e\x7e\x48\x1d\x79\x2e\x28\x8f\xc2\x7e\x4c\x2f\xcf\x11\x1f\xe9\x7d\x9e\x23\x37\xd2\xfc\x1c\x30\x98\xf0\x66\x84\xa3\x1d\x55\xeb\xf3\x62\xc0\x27"}, {{0x3f,0x59,0xd6,0xa0,0x18,0xf5,0x0a,0x82,0x21,0x17,0xe5,0xb4,0x73,0x60,0x9e,0x30,0xcd,0x64,0x92,0x0c,0xa1,0xc2,0x75,0x0d,0xcb,0x09,0xea,0xab,0x80,0x7a,0x3e,0xac,},{0x45,0x7d,0x0e,0x59,0xc1,0x1f,0x34,0x8f,0x3b,0xfb,0xdd,0x3f,0x32,0x7d,0xe7,0x8c,0x0a,0x75,0x77,0xc0,0xae,0xef,0x42,0xd4,0xc1,0xe5,0x67,0x00,0xd1,0x08,0x80,0x8b,},{0xd7,0x42,0x5e,0xa1,0x94,0xa6,0x71,0x5c,0x45,0x2e,0xc4,0xf6,0xd6,0xc7,0x6e,0x6d,0xd3,0x74,0xd3,0xca,0x7a,0xe7,0xa1,0x19,0x95,0xd0,0x2b,0x94,0x2d,0x4a,0x31,0x87,0x0d,0xd7,0x34,0xc1,0x2f,0xca,0x89,0xa8,0xeb,0x02,0x13,0xeb,0x13,0x9c,0x14,0xa8,0x7a,0x6a,0x33,0xe8,0x18,0x60,0x3b,0x2e,0x31,0x30,0x23,0xfa,0x58,0x73,0x7d,0x0e,},"\x7d\x10\x3a\x6c\x6b\xa2\xd0\x90\x87\xee\xf2\x25\x4c\x1c\x90\x3f\x06\x76\x95\xa5\x4c\x45\x15\xe4\xd1\x3b\xc1\xfb\xfb\x54\xd6\xe7\xa1\x67\x34\x9c\x14\x80\x99\x76\xda\x04\xa7\xe5\x8d\x96\xb4\x0a\xac\x3b\x2b\xdd\x14\xb9\xb5\x03\x22\xbb\x11\x64\x5f\x05\xe5\xe9\x78\xbc\x7f\xbd\x02\x49\x2e\xf8\x8f\x87\xd6\x68\x28\x0f\xd7\x08\x37\x32\x07\xff\x67\x0f\xcd\xa9\x7d\xf8\x48\x5d\x5e\x46\xdc\x3b\xd0\x43\x47\xf4\xd7\x52\x7e\xab\x27\x18\xf7\xd9\x3d\x13\x2b\xa7\x75\x82\x18\x89\x4e\x75\xa7\xde\xab\xe6\x93\x33\x5b\xa0\xdc\x73\xbf\x26\xc2\x88\xbf\xe9\xbe\x8a\x73\x6d\x75\xe5\xe0\xea\xa7\xbb\xe8\xd0\xb7\x7a\xbd\xd5\x14\x6e\x0f\xc9\xb3\x0d\xb9\xf0\x7c\xf4\xbf\x36\x26\x0a\x1f\x41\x41\x03\x31\xf8\xb4\x7c\x6b\x38\x33\x8c\x6d\xc9\xe8\x01\xff\xe1\xd5\x85\xf9\xb7\xfc\x31\xe9\x77\x8b\xca\x30\x27\xc2\x32\xc0\x74\xcb\x18\xe5\xb7\x29\x97\x00\x5f\xfe\xee\x4b\xf3\x7c\x8f\x87\x4b\x1b\x24\x6a\x63\x45\x41\x5d\xac\xac\xa7\x07\x5a\x60\x44\x3a\xc3\x31\x92\x36\xe2\x3c\xf6\xb7\x54\x47\x40\x80\x70\x52\x11\x49\x84\xb8\xd8\xf7\xe8\x57\xdc\xc6\xfa\xec\x88\x69\xcf\x96\xb9\x97\xdf\xa9\xaf\x91\x84\xad\x62\x3f\x1d\x90\xb8\xca\x75\x9b\x44\x8e\xab\xfc\xe1\x8c\x17\xcf\xdf\x9a\x3e\x33\x12\xe6\x3e\x5f\x08\x4c\xea\x90\x4c\x1c\x90\x99\x13\xcc\x4b\x19\xd0\x44\xa3\x72\x00\x34\x97\x3c\x73\x84\x94\x9b\xd6\xf9\xba\x92\x56\xf9\x8c\xd3\x94\xc5\x66\xda\x83\xc3\x11\x80\x10\x9f\x16\xd1\x03\x47\xb7\xe3\xe9\xdd\x6b\xe3\xbd\x3c\x77\xff\x1a\x79\x96\xa0\x78\xdc\xf8\x9d\xcd\xce\x2d\x1b\x61\x56\x95\xf4\xcc\x9f\x8f\x4f\x2a\x08\x80\x46\x41\xbc\xa8\x26\x62\xce\x88\xfa\xa5\x31\x45\xb6\xa4\x59\x55\xae\xc8\xcc\x2a\xf8\x1c\xcc\xb5\xd7\xc6\x4f\x9e\xce\x1c\x99\x83\x32\x64\x84\xa1\xe5\xec\xe4\xce\x36\x54\x4d\x63\x73\x5f\x77\x76\xf2\x1a\x20"}, {{0xa1,0x21,0x2b,0x34,0xdb,0xca,0x63,0xb7,0x09,0x36,0x12,0xd0,0x5d,0xab,0x7b,0x4c,0xc8,0xf7,0xb6,0x76,0xa9,0x34,0xad,0x01,0xf6,0x59,0x85,0x1b,0x3b,0xb4,0x4e,0x4e,},{0xba,0x2f,0xcc,0xea,0x9a,0x08,0x05,0x91,0xbe,0x71,0x26,0x8d,0x7e,0x95,0x1f,0x25,0x0d,0xed,0xc0,0x04,0x16,0xe5,0xf3,0xf9,0x08,0xdb,0x6c,0xc5,0x71,0x25,0x49,0x25,},{0xfa,0x93,0xed,0x65,0x95,0xbc,0x95,0x8d,0xc0,0x42,0xce,0x16,0x45,0x16,0x7b,0x79,0xe8,0xf6,0x73,0x4c,0x46,0xf8,0x0f,0x63,0x1f,0xd5,0x48,0x49,0x08,0xf5,0xe5,0x1a,0x22,0x42,0x7e,0xe6,0x86,0xf5,0x64,0xff,0x98,0x2f,0x6e,0xf4,0xd2,0xca,0x1f,0x0c,0xa5,0x62,0x49,0x10,0xcd,0xd6,0x3c,0x11,0xa3,0xc2,0xb1,0x6d,0x40,0x97,0x3c,0x07,},"\x07\xc3\x7c\x46\xbe\x3c\x68\xd0\x56\x89\x57\x7a\xa6\x4a\x93\x2b\x90\x64\x46\xb2\x9b\xaf\x12\xf6\x17\x4a\x6b\x42\xbb\xae\xfd\x1f\x1f\x37\x3e\x0b\xcc\xc4\x73\xdd\xfc\xee\x1a\x7f\x21\xb9\x6a\x62\x60\xef\x0a\xa1\xf2\xd8\xb2\x95\x9e\x71\xd1\x2c\x95\x33\x58\xa2\x77\x4c\xc5\xe6\xf3\x79\xa3\x13\xe4\x35\xed\x69\xdf\xd6\xd4\xa5\x9a\xde\xe3\xcc\x7e\xc4\xba\xcb\xdb\xb3\xfe\xe5\x43\x0b\x73\xf6\x05\x1a\x60\x96\xc6\x0e\x9b\xc9\x2c\xc8\xfa\x05\x9f\xac\x2a\x93\xef\x70\x07\xd6\x4f\xbe\x50\x06\x49\x64\xd5\xa0\xad\x60\x11\x75\xcd\x9c\xab\xa4\x53\xf9\x10\x3b\x25\x48\x55\x45\xd3\x01\xf0\x3c\x5f\x9f\x94\x78\xbd\xf9\xd4\x14\xbf\x1d\xca\x3b\x1c\x1d\x9d\xaa\x99\x71\xf9\xe6\x17\xfb\xfa\xf5\xb0\x2a\x7f\xbd\x5d\x4f\xb8\x94\xc0\x97\x5c\x54\x59\x2b\x49\xa0\xfc\x85\xdd\x08\x53\xf3\x0c\x51\x50\x2d\x98\xfc\x1a\xb8\x5a\x17\xcc\x58\x96\x1a\xae\x97\x64\x57\x0b\xa5\xcb\xdb\xc9\x6d\xfc\xeb\x8d\x11\xda\x53\x36\x4b\x40\x25\xfe\x0b\x8b\xa8\xa3\x53\xad\x23\x68\x67\x20\x16\x9f\xe9\x73\x43\x2f\xfe\x29\x1a\x4b\x11\xde\xdd\xa0\xaa\xc7\x9a\x5e\x42\x62\x0a\x64\x58\x7d\x20\x59\xe7\x87\x01\x3b\x40\xce\xec\x59\x92\x08\xf6\x6e\xd0\xca\x6e\x1b\xe9\x09\x2e\xc2\x7d\xb2\x16\xee\x6d\xad\xfe\xbc\x21\x70\x5b\xc4\xa8\x5a\xee\x57\x7e\x57\xd2\x39\xaf\x58\x6e\xfe\xec\x22\xcf\x38\xd1\xcf\xb3\xcd\x74\xdd\x0d\x9a\x33\x81\xaa\x81\xe6\xa2\x97\xe3\x9b\x81\x91\x37\xad\x27\xd4\x75\xe2\xbf\x54\xaa\x42\x6d\xc2\x9c\x4c\xa8\x17\x6d\xf3\x43\x13\x7a\x2d\x79\xd1\x2e\xf9\xaa\x7b\xe1\xcf\x67\x75\xe5\xd8\xa4\x43\x0a\x85\xc3\x3d\xb6\x1c\xd2\xf3\x51\x87\xb4\xf6\xea\x9e\xbd\xd7\x53\xd1\xc4\xef\x72\x47\x11\x59\xff\x07\xb7\x78\x70\x90\x64\x96\x24\x9d\x42\x78\xe3\xf3\xca\x6b\xcb\xf3\x7a\x26\x5b\x89\x65\x39\x19\x0f\x9a\x31\xf1\xe7\xb4\xb6\x5c\xd1"}, {{0xd9,0x68,0x20,0x86,0xfe,0x7d,0xda,0x30,0xb8,0x71,0x11,0x06,0x01,0x93,0xd8,0x47,0x56,0x6a,0xb9,0x4c,0xfd,0x9c,0x97,0xab,0x6b,0x43,0xe7,0xa8,0xd3,0xf7,0x93,0x82,},{0x8b,0x0b,0x13,0x72,0xd8,0x87,0x33,0xef,0x72,0x33,0xf6,0x37,0x97,0x90,0xd1,0xe4,0x6e,0x1e,0x07,0xe9,0xd3,0xfb,0x8b,0x0b,0xe2,0x52,0xed,0x04,0xc5,0xfa,0x16,0x3d,},{0x17,0x93,0xe4,0x97,0xeb,0x52,0x1c,0xa7,0x4e,0x35,0xd1,0x4a,0x63,0x86,0x8c,0xbe,0x94,0x99,0xda,0x2f,0x21,0xb4,0xeb,0x52,0x60,0x34,0x0f,0xca,0x3c,0x1f,0xec,0xa7,0x8d,0xbe,0x5b,0x14,0xac,0x10,0xf3,0xfa,0x76,0xfa,0x2e,0x71,0xe4,0xc9,0x14,0x61,0xaa,0x75,0x97,0x7e,0x5e,0x70,0x79,0x26,0x70,0xef,0x7f,0xf0,0xe6,0xa2,0x87,0x08,},"\xe8\x81\x4b\xe1\x24\xbe\x3c\x63\xcc\x9a\xdb\x03\xaf\x49\x3d\x44\x2f\xf2\x0d\x8b\x20\x0b\x20\xcd\x24\x93\x67\xf4\x17\xf9\xa9\xd8\x93\xfb\xbb\xe8\x5a\x64\x2b\xe2\x70\x1d\x1d\x1b\x3c\xd4\x8a\x85\xcf\x58\xf1\x59\xa1\x97\x27\x31\x43\xa5\x78\xf4\x2e\x8b\xcc\x8b\x62\x40\xf9\x32\x71\x90\x05\x38\xff\xc1\x87\xc0\xaf\xc8\xdb\xcc\x49\x2b\xcd\x67\x9b\xaa\xef\x3a\xf5\x08\x84\x34\xa9\x45\x86\xf9\x4b\x49\x97\x0b\xba\x18\xf5\xea\x0e\xbf\x0d\x27\xee\x48\x2a\xa8\x3a\xd0\xdd\x0e\xe6\x09\xdf\x59\xd3\x7f\x81\x8b\x2c\x8d\x7c\x15\xf0\xf6\xf5\x44\xdd\x4c\x7e\x7c\xb3\xa1\x67\x24\x32\x4f\x77\xd5\x89\x48\xf8\x47\x5a\x60\xd5\x3e\x5b\xd5\x10\xc1\x71\x37\xc9\x9e\x1c\xfa\x51\x5a\xf9\xbc\x85\x56\x9d\x21\x2a\x21\x19\x07\x29\xf2\x81\x7d\xe8\xc4\x69\x15\xe0\x21\xdf\x70\xff\x6d\x60\x21\x5f\x61\x4f\xc2\x11\x39\x90\x4d\xf3\xb2\x92\xb7\x49\xdc\x4d\xea\x02\x51\x8b\x62\xd1\x58\x62\xc9\x2d\x2a\x4c\x99\x67\x01\xcd\xec\xae\xd8\x4a\xb6\x28\xee\x98\x4f\xc1\x11\xee\xcb\x59\xe4\x84\x44\xef\xc0\xd4\x56\xe2\xc8\x52\x51\x84\x41\xc3\xdb\x76\x30\xdd\xd5\x15\x62\x49\xa2\x87\x30\x98\x38\x38\xae\x59\xac\x4c\xc7\x11\x0f\xd6\xde\x68\x10\x1e\xa5\xb2\xff\x69\xfd\x36\x4e\x3c\x94\x48\xde\xfe\xfe\x17\x5b\xcb\xe1\x17\xcc\x11\xb4\xff\x75\x49\xc3\x3e\x10\x25\xb6\xb5\x92\x04\x8a\x8e\x31\x96\x9e\x81\x8d\xcc\x18\x8b\xb1\x9d\x7a\x24\x40\xa3\xba\xba\x4e\xb1\xb8\x1c\x45\x67\x9d\xb4\x6b\x31\xbc\xde\x77\x76\x75\x7d\x99\x31\xec\x20\x63\xfc\x6f\x1f\xcd\x76\x1e\xcc\x57\xa7\xd0\x30\xa8\x5e\xa2\x73\xef\x18\x25\xb0\x50\x92\xab\x96\x45\x35\x9a\x44\x4f\xf7\xd1\x66\xb5\x75\xfa\xc2\x98\x30\x8d\x9f\xaa\x68\x46\x3d\x1d\x0f\x7b\x7d\xf8\xa5\x1c\x68\x15\xd3\x71\x59\xad\xc0\xb5\x93\x22\x4a\x81\x83\x21\xd7\x21\x9f\x09\x68\x6c\xfc\x95\x22\x59\x71\x8d\xfc"}, {{0xb5,0x2b,0x24,0x9a,0x7a,0xea,0xe0,0xfb,0xd9,0x4f,0xfc,0xf9,0xa9,0xfd,0xe1,0x0d,0xe6,0x1c,0x3f,0x4c,0xbd,0xa1,0x4b,0x28,0x9f,0xe0,0x1f,0x82,0x70,0x73,0x34,0xca,},{0x73,0x51,0x63,0xbf,0xcf,0xd5,0x4f,0x9d,0x35,0x2e,0x1c,0x2f,0x3c,0x01,0x70,0xc9,0x5c,0x18,0x42,0xcc,0xc7,0x42,0x16,0x23,0xae,0x04,0x96,0x98,0x0c,0xee,0x79,0x1c,},{0x6f,0x48,0xa9,0xf7,0xf0,0xfa,0x19,0x2b,0x66,0xd1,0x21,0x75,0xa3,0x33,0x61,0x23,0x03,0xe1,0x80,0xb9,0xfa,0xb1,0x8e,0xda,0xbe,0xbc,0xdf,0x66,0x74,0xfd,0xfc,0xc5,0x36,0x07,0x08,0x9b,0xf9,0x80,0xce,0x35,0x89,0x4c,0x2f,0x9b,0xab,0xdc,0x44,0x38,0x66,0x7a,0xb3,0x29,0x7a,0x62,0x48,0xec,0x02,0x69,0xfa,0xa9,0x9c,0x72,0x48,0x07,},"\x1d\x44\x5e\x8e\xe3\x6f\x6e\x10\x64\xee\x12\x81\xe6\xb4\xa4\xce\xc5\x0a\x91\xc2\xb6\x67\xc8\x30\x5d\x1e\x9a\x5f\x7b\x73\xa3\x44\x58\x82\x58\x1f\xb0\xc1\x1e\x64\xf6\xee\x92\xe8\x11\xf9\xf2\xd6\xc5\x9c\x63\x44\xbe\x76\x91\xd1\x16\xdd\xa4\x93\xca\xde\x51\xc0\xce\x77\x37\x2b\x61\xa7\xc4\xfb\xb6\x33\x40\x13\x33\xcb\xf7\x13\x72\xad\x2f\x04\x4e\x99\x2a\xc0\x35\xf5\x87\x9c\x05\x30\x04\xf8\x22\x3f\x23\x7a\x24\xa4\x09\xb7\x89\x4f\x6a\xd5\x18\xe0\x46\xb8\xa8\x4c\x3f\x4c\x62\x60\xe6\x16\x9f\xd9\x44\xd5\x7f\xbc\xf9\xba\x27\x75\xf2\xd6\x0e\xd7\x72\xc4\x6c\xcd\x63\xc8\x50\xb8\x0d\x58\x7c\x52\x08\xdf\xb1\xa2\x58\x78\xc0\x2d\xec\xe3\xe6\x02\xe9\x63\x2f\xc3\xc2\xc7\x9b\x25\xab\x41\x03\x4c\x6e\x26\xb8\x69\x25\x53\x57\xa6\x86\x78\x1d\xfe\x6e\x64\x4b\xeb\xa9\xb6\x27\xda\x1f\xcb\x5e\xc0\xbe\x49\x7c\xf1\x88\xe1\xef\x1a\xf0\x60\x1b\xf1\x6b\x29\x11\xfd\x9f\xf3\x4f\x0e\x97\xac\x95\xa7\xfe\x2c\xf9\x0e\xa6\xce\xd3\x3c\xcb\x0e\xd1\xef\x2d\x41\x60\xef\xb0\x7c\x59\x1a\x5c\xb1\x6c\x70\xca\x16\x94\xfb\x36\xf2\xca\x19\xeb\xa5\x2b\xe3\xd4\xad\x89\x5a\xbc\xad\xa4\xb3\x6f\x02\x61\xd6\x5f\x59\xe0\xcf\xd2\xa6\x14\x8a\x88\x92\xdd\xbb\x45\x81\x0d\xb3\xbf\x4a\x9e\x26\xe9\x2c\x15\xea\x26\x18\xcf\xee\xb4\x62\xd8\x62\x8f\x25\x4f\x54\xd2\xaf\x27\x11\x3b\xab\x4f\x9a\x7d\x06\x79\x18\x11\x94\x2b\xdc\x32\xf8\x45\x92\x2d\x7b\x2d\xdb\xa9\x59\x14\x09\x28\xf8\xc2\x8d\x98\xb4\x4e\x1d\x19\xb9\x7f\xd3\x9c\xc0\xf9\xa5\x23\x6d\x34\x9f\xc8\x35\xac\x49\x21\x92\x46\x2e\x40\xac\x62\x9b\xeb\xff\xd2\xeb\xa7\x2d\x27\x88\xb2\x44\xbb\x77\x7a\xd0\xf7\xb7\xf9\x6f\x23\x41\x23\x99\xfc\x1d\x87\xa1\xd0\x87\xba\x08\x90\x27\xea\xbb\xc0\x5e\xda\xfe\xe4\x33\x79\xe8\x93\x29\x13\x31\xb4\x60\xbf\xa7\x33\x2e\x08\x42\xec\x25\x73\x39\x3d\xe9\x53\x06"}, {{0x78,0x2a,0x93,0xef,0xe0,0xef,0x06,0xcb,0x25,0x34,0x33,0x0e,0xfd,0x0e,0x96,0x84,0xe9,0x96,0x9b,0x52,0x58,0x12,0x3e,0x49,0x02,0x39,0xbf,0x24,0xbf,0x9f,0x65,0x23,},{0x94,0x2f,0xa1,0x40,0x6e,0xe2,0x68,0x3e,0x29,0x37,0x7e,0x49,0xf7,0xba,0x75,0x7c,0xf5,0x0e,0xf0,0x72,0x37,0x07,0xd4,0x40,0x3d,0x28,0x62,0x25,0x70,0x45,0xde,0x87,},{0x93,0xe7,0x40,0x5a,0x40,0x44,0x51,0x01,0x66,0xc8,0xac,0x26,0x4c,0xe3,0xb5,0xba,0x66,0x65,0xd6,0x8b,0xad,0x45,0x87,0x12,0xdc,0x93,0xc2,0xc3,0x90,0x56,0x8d,0x74,0x02,0xef,0x7d,0x57,0xf5,0x49,0xb8,0xa1,0x04,0x2f,0x7f,0x69,0xa6,0x79,0xaa,0x85,0x5f,0x34,0xf8,0x01,0xd5,0x7d,0x79,0x89,0x5d,0xeb,0x8d,0xea,0xdb,0x35,0x23,0x08,},"\x46\xa4\xe3\x19\xa6\x70\xac\x99\x39\x94\xa5\x33\x00\xc3\xf7\x91\x44\xc2\xf7\xfe\xc1\x11\x6e\xee\xb3\x62\x1c\x76\xac\x35\xda\x79\xdb\xff\x6e\x18\x9c\xa9\xdb\xfc\x9a\xbb\xda\x05\x48\x47\xb2\x97\x1b\x02\xfa\xce\xbb\xe9\x26\xd4\x69\xeb\x0a\x86\x03\x89\xac\x74\x41\x62\xbf\x6f\xb1\x3b\x42\xcb\x9b\xb8\xc9\xd7\x26\x07\x13\x8e\x78\x00\x12\x1e\xe0\xcd\x63\x3e\xd5\x35\xc7\xae\x5f\x40\x60\xbb\xdd\x27\x1c\x9d\x11\x0a\xbf\xf5\xe0\x60\xea\x6e\xe8\x38\x90\xb1\xe9\x2a\x92\x56\xd7\xb2\xba\x98\x2a\x31\x14\xbb\x6d\xef\xfe\xe2\x69\x6f\x0a\x2f\x9c\x21\xaa\xa5\xb2\xde\xfa\x11\xaa\xb7\x07\x6d\xe6\xe5\x7e\x86\xf2\x84\xbb\x67\xf5\xa4\x9e\xe6\x85\x92\x10\x32\xc9\x5b\x74\xe7\xe3\xea\xc7\x23\xf1\x75\xaf\x08\x2c\x85\x8e\x0d\xfa\x01\x72\x8c\x38\xfb\xbb\x4c\x83\x58\x1f\x81\xac\xe6\xc6\x3c\x6b\xda\xac\x56\x20\xeb\x9a\x56\x8e\x7e\xbb\x7b\x72\xb3\xd1\xa1\x64\xef\x52\x4e\x7b\x9f\x00\x79\x9a\xb0\x86\x71\x59\x76\xc1\x4d\x0d\xf6\x5f\x7b\x96\xbf\x9e\xbc\xda\x7f\xee\xef\x11\x34\x22\x00\x1a\x03\xa7\x63\x3d\xf5\xe4\x99\x39\xa1\x21\xdb\x89\x9d\x9b\x8a\xc2\xdb\x4f\xad\x0c\x30\xcf\x0b\x8b\xdb\xc9\xe9\x80\x2a\x79\x7c\x82\x38\xe4\x65\x11\xff\x24\x06\x8c\xad\xcf\xf2\x44\x8c\xc0\xbf\xf9\x27\x69\x22\x33\x48\xd4\x5d\x6b\x6f\x2c\x8f\x15\x93\x38\x8c\x0b\xbb\xf4\x4b\x6d\xdb\x50\xb9\x8c\xd7\xf0\x9c\x73\x0f\x7d\xe4\xd0\x08\x15\x6c\xb3\xcd\xe0\xca\xb3\xad\x0a\x58\xa8\x39\x54\xe2\x34\xa0\xa8\xa0\x4b\x57\x3c\x9a\x8e\x9b\x92\x9e\xd3\x8b\x8b\x22\x8b\xf5\x5a\x3c\x6e\x2c\x6b\x51\xf6\x82\x65\x2f\xbb\x70\x8e\x74\x64\x0e\x33\x13\xe1\x7b\x46\x94\xd7\xfd\xf0\x11\x1f\x90\x60\x8c\x1b\x5a\xf4\x22\xdc\xde\xca\xd9\xdd\xb7\xf5\x0d\x1b\xf5\xbc\x63\x78\xcc\xaf\xfc\x32\x01\xe6\xc7\x87\xb4\x8c\x44\x3b\xa2\x40\xd9\xd5\x0f\xf6\xc0\xe9\xdf\x7f\x1a\x5b"}, {{0x6f,0xe7,0xbc,0xf7,0xa6,0x84,0x42,0x3d,0xe1,0x07,0x6f,0xd7,0x6d,0xa7,0x83,0x42,0x33,0x73,0xb3,0x81,0x32,0x9e,0xfd,0x61,0x57,0x42,0x4e,0xc4,0xb2,0x65,0x5a,0x94,},{0x77,0x40,0xe9,0x1a,0xfe,0x45,0x32,0x4f,0x8b,0xb9,0x90,0xca,0x2a,0x34,0x12,0x79,0xdd,0xaf,0x23,0x2c,0x3b,0xb4,0x15,0xf1,0x78,0xb6,0x09,0x2f,0xba,0x19,0x5f,0xec,},{0x99,0x14,0xcc,0x50,0xfe,0xf0,0x93,0x5e,0xfb,0x89,0xb3,0xd6,0x4e,0x3c,0x1c,0x34,0x12,0xae,0xd6,0x59,0xb9,0x01,0x66,0x22,0x2c,0x0d,0x13,0xec,0x1c,0xe3,0xa6,0x8a,0xe6,0x28,0x1b,0x7e,0xfd,0x9d,0x4e,0xc6,0x4b,0x82,0xe7,0x3e,0x14,0x47,0x9f,0x03,0xfb,0xac,0x8f,0xa3,0xab,0xdb,0x41,0xea,0x42,0x15,0xc4,0xa4,0xd4,0x94,0x9d,0x09,},"\x0b\xaf\x0a\xd4\x40\x61\x2b\x4c\x5a\x13\x6c\x3a\x42\xbe\x1c\xa2\xb7\xc3\x19\x86\x2a\x44\xa9\xfd\x50\xc4\xee\x73\x54\x1c\x5e\x64\x57\xef\xa8\x18\x25\xb6\xdd\x4a\x72\x19\x4a\x29\x68\x68\x8b\xd4\x9e\x5a\x8f\x4c\x04\xdb\xaf\xc2\xe7\x88\x4c\x0c\x70\xc2\x08\xd4\xe9\x54\xcd\x16\x75\xda\x8e\x74\xc6\x5c\x49\x7c\xf9\xdc\x69\x42\x49\x65\xbd\xcb\xa5\xde\x52\x93\x6f\x92\x5f\x62\xe2\x01\xf9\x95\x05\xd3\x77\x7b\xeb\x3c\x2e\x08\xb2\xec\x9a\x87\x3e\x5a\x9c\x21\xfb\x4a\x2f\x3e\x86\x1f\x3c\xf4\xd6\xb5\xdc\xd1\xc8\x8b\xcd\x91\x63\x53\x9a\xc6\x2c\xd0\x65\x9f\x4e\xf2\x32\xc2\xce\x57\xfc\x77\xf9\x02\x85\xeb\x35\x01\x69\xed\xc6\xa8\x06\xff\x50\xf6\x1c\x7e\x0b\xee\xeb\xec\xec\x63\xbf\xc9\xd3\x98\x3f\x5b\xb4\xb2\x61\xc7\x46\x47\x1f\xcb\xf2\x89\x2c\x61\x08\x97\x0b\x68\xdb\x5e\x43\xc4\x50\x4d\xda\xe2\xd0\xff\xff\xa2\x8b\x67\x59\xae\x11\x28\xe1\x6f\x66\xd4\x92\xad\x61\xe3\x72\x2c\x96\x0f\x88\x69\x2b\xe8\x1a\x9f\x41\x28\x90\xff\xa3\x46\xe7\x02\xc8\x67\xdf\xa2\x59\x70\x3b\x73\xf5\x25\x07\x4f\x32\x27\xc4\x9c\xec\x1b\x64\x5a\x10\x3b\xd4\x47\x1f\x33\xf9\xf1\xba\xc3\x27\xd7\x91\x78\x61\xd0\xad\x91\xab\xee\x60\x22\x2e\xa2\xa3\xc8\xca\xc0\x52\xae\x9a\x2c\xbd\x90\x85\x5d\x73\x3d\x53\x19\x13\x3f\x95\x41\xbd\x0b\x61\xf0\x99\x52\x68\x35\x1e\x28\x63\xc1\xca\x2c\xa5\x1e\x3c\x97\x63\x83\xf5\xc4\xc1\x1f\xf4\x10\x03\x6f\xd5\x1d\x5a\xc5\x6b\x02\x3c\xe9\x02\x9c\x62\x0f\x22\x55\x70\x19\xad\x9b\x42\x64\xed\x4d\x71\xb4\x34\xf4\xa4\xd1\x7a\x7d\x57\x69\xfa\x1e\x14\xa6\x9f\x7a\xe4\x19\xcc\xf5\x94\x7f\x8c\x76\x82\x69\x71\x16\xc2\x40\x5f\x5a\x19\x59\xc5\x4b\x48\xf0\x87\x2f\x59\x6e\xd4\x59\x64\x48\x8d\xde\xc1\x2b\xdb\x63\x6d\x0b\x34\x9e\x74\x9e\xb6\x60\x92\xff\x45\x11\xfb\xa5\x9b\x59\x62\xcb\x93\xcc\x85\x51\x5c\xc8\x6a\xb0\xc6\xb2"}, {{0xdd,0xa4,0x8a,0x0d,0x15,0xa2,0x9e,0xba,0x9a,0x76,0x30,0x5d,0x36,0x0e,0x46,0x6e,0x72,0xd8,0x04,0x0e,0xfe,0x2e,0x89,0xc0,0x4b,0x64,0x61,0x31,0x5a,0x9b,0x8b,0xf4,},{0x4f,0x5c,0xc3,0x6a,0x80,0x94,0x16,0xb5,0x8e,0x15,0xd2,0x4c,0xc5,0x79,0x68,0xcb,0x57,0x3b,0x76,0xad,0x90,0x88,0x7a,0x8e,0xf3,0x6c,0xde,0x7e,0xca,0x40,0x0f,0xcc,},{0xce,0x71,0xbc,0x82,0xd5,0x31,0xd0,0xf9,0x3b,0x57,0xbf,0xdc,0x2f,0x73,0x16,0xcf,0x40,0x4e,0xe0,0x9a,0xf8,0x8f,0x33,0xbf,0x80,0x6c,0x7c,0xad,0x6b,0x8f,0xfa,0x36,0x62,0x36,0xba,0x74,0xe7,0x5c,0x15,0x09,0x6d,0xda,0xa6,0xe3,0xa6,0x2a,0x8f,0x5e,0xb1,0xc8,0xc3,0xf6,0xb6,0xc9,0x4a,0x6a,0x34,0x9f,0xc7,0xc0,0xcb,0xfb,0x19,0x0d,},"\xf5\xac\x19\xb8\x1f\x21\x11\xa0\xdb\x0a\xe3\x0d\x15\x13\xed\x34\x3e\x7f\x57\xf7\xf7\x7d\x65\xb8\xac\x7c\xe3\xa6\x01\x17\x4b\xae\xd9\xbf\xa1\x36\x03\x59\x76\xf5\x16\xd5\xa8\x70\xf4\x5d\xb1\x91\x9f\x1e\xb1\xcb\xec\xbe\x88\xec\x32\xd1\x91\xe9\x24\x88\x21\xa7\xe7\x68\x1f\xe3\xab\xec\x11\x58\x4b\xdb\x33\xde\x1b\x4c\xa9\x48\x91\xeb\x66\xdc\xb8\x53\x9a\xc4\x11\x63\x73\x6c\xcf\xd6\x9a\xbb\x83\x81\x4d\xd3\x8c\xd6\x03\x81\x31\x87\x28\x05\x2a\x25\xcb\x66\x54\x71\x05\x86\x50\xcc\xc7\x57\x56\xdb\xee\x68\x8a\xb8\x26\xec\xad\x4a\xd5\xa7\xdb\x57\xe8\xf6\x5f\x1b\x64\xab\xff\x82\xdd\x53\x33\x4b\x79\x7a\xc4\x02\x28\xdd\x81\x7f\x23\x9d\x3e\xe8\x04\xa1\x9a\xea\xc8\xcf\xe3\x3e\xb6\x57\xec\x9c\xe9\x23\xd6\xb3\x88\x91\x4c\xfb\xa2\xe7\x2b\xfc\x2b\xc3\xd6\xf9\x85\xc0\xd9\x75\x34\xdb\x95\x8e\xed\xe5\x7b\x16\x49\x1f\xfb\x75\x5c\x1a\x58\xd7\x8a\xb3\x77\xfa\xec\x0d\x31\x18\x18\xe8\x99\x26\x0e\x3e\xbd\x1c\xcd\x29\x24\x6f\xa8\x2d\x0b\x76\x62\x2b\x2c\x4b\xc5\x2f\x54\x9f\xee\x72\xa3\x0f\x55\x4f\x33\x1f\x36\xd2\xa7\x4d\x99\x9e\xc1\x0a\x08\x29\x4f\x00\x2b\x43\x61\xe5\x90\x27\x9c\x2f\xb1\xbd\xa4\x31\x2c\xcb\x24\xd7\x52\x82\xce\x7c\x06\x1a\x0c\xa5\x52\x0c\x74\xf6\xf6\x33\x3b\x18\xc4\xb5\x41\xcb\x6c\x51\xe0\x15\x75\xba\x80\x51\x2f\xfa\x7c\xe0\xac\xcd\x22\xd1\x40\x27\xc5\x3a\xba\x1f\x74\x37\x83\x5f\x11\x14\xd6\x8e\x3a\xcf\x3f\xf8\xde\x94\xc8\xe4\xef\x6d\x3a\xb3\x12\xc9\x1d\x02\x97\x01\x57\x50\x8f\x54\xa5\x81\x6f\x46\x7a\x21\x4e\x9b\x12\x84\x30\x02\x89\xe6\x5f\x36\x5a\x61\x0a\x8e\xa2\x84\x66\x6c\xfe\x55\x18\xe4\x35\xbc\xcd\x21\x62\x75\x01\xc7\x25\xf0\xb8\xeb\x57\x25\xe0\xe0\x6e\x0c\xef\x5d\xb2\x01\xb4\x8e\xc9\x1e\xbf\x87\x8d\xd5\x7c\xe8\xda\xc7\x33\x48\x48\xa1\xbc\x82\xc1\x8b\x06\x59\x55\xe4\xf5\x9b\xe3\x39\x85\x94\xdc"}, {{0xec,0x57,0xb9,0x41,0xad,0xf3,0xca,0x13,0xe7,0x7a,0x78,0x05,0x77,0xcf,0xd0,0xdf,0x5b,0x49,0xed,0xc8,0x53,0x51,0x05,0x2d,0xa3,0x4e,0x99,0xf8,0xa9,0xbf,0x32,0x08,},{0x28,0x59,0xc0,0x71,0x97,0x8a,0x04,0xb7,0xf5,0x40,0x7b,0x6d,0x22,0x40,0x1a,0x78,0xef,0xd0,0x39,0x4b,0xb9,0x66,0xb9,0xa0,0x4d,0xa6,0xb5,0xef,0x81,0x9d,0xe3,0xfa,},{0x11,0x8e,0x14,0x62,0x12,0x6b,0x45,0xb8,0xc6,0x80,0x35,0x23,0x75,0x5c,0x56,0xdf,0xc4,0xe1,0x23,0xe4,0xac,0xbb,0x66,0xba,0x0b,0xa6,0xfe,0x3e,0x05,0x3d,0xa4,0x11,0x9f,0x57,0x19,0x29,0x5e,0x0c,0x82,0xac,0x64,0xd7,0xc5,0xcb,0x1a,0xc8,0x98,0xdf,0x26,0x3d,0xdf,0xd3,0x60,0xf3,0x00,0x8d,0x91,0x01,0x8b,0x26,0xf6,0xa1,0x73,0x0a,},"\xd2\xbc\xbd\x1b\xc3\x61\xab\x32\xc6\x6d\x72\xfd\x48\xa8\xe2\x27\xdc\x6b\x8d\x6b\x15\x08\x48\xba\x71\x5f\xf4\x7d\xd3\x5c\x8e\x49\x38\x1b\xb4\xe2\x93\x3f\x42\xcd\x26\xb7\x5b\x14\xd9\xc0\x03\x92\x82\xb6\x2b\x85\x56\xaa\xa1\x1c\xd6\x91\xe8\x28\x38\x2b\xe3\x06\x88\x9f\xc9\x20\x51\x37\xb1\x69\xd3\xbf\x17\xb7\xf3\x76\x93\xfc\xe2\x86\x03\x9f\x03\x80\x9d\x7d\x9d\x98\xc8\xfd\xe4\x6f\x11\x01\x94\x2a\x27\x9c\x51\x67\x06\xf5\x01\x91\xa9\x11\x2f\x6a\x24\x63\x0e\x1a\x26\xc3\x21\xe4\x6c\x9c\xcc\x85\xb6\xef\x94\x2f\x35\x3a\x64\x2b\x9e\x7e\xf9\x98\xc0\xfc\xe2\xd3\xa7\x5b\x99\x9e\xeb\x77\xf3\x1f\x9b\x08\x13\xa9\x7e\x30\x14\xc3\xa8\x6e\x25\x58\x73\x46\x21\xa3\x06\x6d\xae\x35\x84\x50\x31\xe3\x56\x65\xf1\x92\x29\x07\xdb\xb7\x39\x78\x6a\x8b\x76\x58\xab\x60\x27\x6f\x2d\x92\x1d\x1a\x51\x23\x0f\xc7\x4d\x19\xe8\x01\x84\xa4\xf1\x0e\x9e\x83\x4a\xbc\x9a\x36\xc4\x29\x72\x6b\xc0\x55\xdc\x8c\x06\x3f\x0e\xca\x9c\x61\xa8\xa9\x70\xbd\x4b\xb5\xf4\x24\xee\x4d\x04\xbf\xc2\x95\xe3\xbb\x1f\x34\xbe\xcb\xd9\x92\x0f\xe2\xe7\x7f\xcf\x36\x76\x3f\x32\xfc\x9c\xfd\x5e\x46\x59\x79\xc1\x67\xca\xbf\x5a\x12\x44\xb4\x91\xfc\x06\xb8\x94\x64\x19\x04\x6b\xa5\x16\xc5\xb2\x33\xc4\x14\xdd\xef\xb6\xda\x04\xf2\xe1\x3d\xaf\xf7\xa9\xa0\xc0\x2a\x51\x8e\xde\x57\xad\x95\x21\xde\x64\xed\xdf\x6f\x49\xa9\x67\x0f\x63\x2d\x3f\x7d\x42\x42\x52\x07\xd0\x53\x60\x4f\xe3\x9d\x13\xb9\xf5\x2c\x8b\xc2\x92\xb0\x07\x6e\xa4\x2a\x56\x00\x56\xdf\x25\xde\x51\xad\x35\x88\x1d\x08\x54\x32\x24\xd7\xfa\x5d\x70\xb8\x60\x3e\xf2\x3c\xe0\x63\x39\xd6\xcd\x09\xe2\x2a\x95\x74\x9e\x50\xdf\xbd\x3b\x8a\xd6\x9f\xd3\x04\x96\xb9\x84\xd1\xc0\xa1\x99\xc8\x59\x48\x05\xf3\x8b\xa4\x46\x31\xa2\xc5\x9e\xad\xc6\x55\x4d\x19\xf9\xbc\x98\x36\x6d\xfd\xec\x2a\x12\x1d\x0e\x48\x14\xd2\xcd\x3f\x58\x71"}, {{0xcb,0xfd,0x91,0xd7,0x69,0x5c,0x1f,0x27,0x0f,0x69,0x24,0x6a,0xb3,0xdf,0x90,0xed,0xb2,0x14,0x01,0x10,0x1c,0xa7,0xf8,0xf2,0x6c,0x6d,0x00,0xf4,0xdc,0xb7,0x23,0x3e,},{0x51,0x38,0x79,0xcf,0x79,0xd2,0xf4,0x6d,0xf4,0xb8,0x5a,0x5c,0x09,0x49,0xeb,0x21,0x16,0xab,0xf9,0x81,0x73,0x5a,0x30,0x31,0x64,0xcb,0xd8,0x5a,0xdf,0x20,0xb7,0x52,},{0xf3,0x36,0x13,0x7d,0xfe,0x6f,0x42,0xa6,0x66,0x9b,0x55,0xf7,0x4b,0x80,0xb3,0x03,0x5a,0x04,0x03,0x67,0xf9,0x06,0x56,0xfc,0xef,0x0a,0x64,0x4c,0x52,0x27,0x2d,0xdc,0x39,0x27,0x3c,0xd7,0x72,0x60,0x10,0xeb,0xcd,0x8a,0x30,0xa0,0x52,0x01,0xab,0x70,0xb8,0xff,0x97,0xd0,0x28,0x8a,0x2c,0xb9,0x4c,0xbc,0x49,0x02,0x06,0x47,0x39,0x0b,},"\x26\x4a\x93\x3f\x7d\x0a\xec\xba\xc1\x3e\xef\x64\x4b\x0b\x53\xdd\x53\xa1\x28\x09\x04\x10\x0d\xbc\x1a\xb8\x7b\x51\x14\x89\x98\xf9\xda\x0b\x3a\x0a\x63\x37\xf5\xe3\x48\x6c\x2b\x7e\x54\x8d\x21\x12\x59\x39\x7a\xaa\x19\x4e\xe4\x69\x5b\xf9\x8c\x2d\x5f\x44\x87\x69\x9f\x73\x97\xe5\xd3\xa7\xe6\xd5\xf6\x28\xfb\xd0\x54\x97\xc5\x56\xa5\x0a\x4d\x05\xe2\xb7\x12\xcd\xbc\x35\x10\x68\xe4\x2a\xf1\x95\x38\x90\x1b\x88\x25\x31\x0e\x34\x3e\x1a\x17\xa1\x86\x7d\xde\x0e\xb4\x7d\xda\xb4\x56\xd3\x16\xf3\x52\x15\x54\x93\x7b\xf8\x08\xae\x4e\x4b\xc1\xc3\xc5\xb4\x75\x6e\x4a\x16\x5a\xd9\xe8\x82\x7f\x53\x16\xf7\x48\xca\xc6\x99\x8e\xd2\xd2\x10\x4f\x26\x84\x07\xc1\x35\xe6\x2f\x26\xa9\x22\x46\x0e\xab\x6d\x85\x16\x39\xa0\x0e\x5f\x08\xb3\x47\x65\xea\x02\x44\xf4\x75\xbb\xfe\xac\x18\x3e\x3b\x5b\xd1\xaa\xb7\x98\x52\x27\x98\xa0\x8e\xc6\xbf\x22\x57\xd4\x69\x2f\x5b\x03\xcd\xd0\xa2\x13\x3d\xe9\x70\x60\x3e\x32\x51\x47\x5a\xad\x8d\x93\x4a\xf6\xb2\xbf\xc7\xa6\x50\xb9\x1b\xde\xc1\x43\xf8\xad\x25\x4c\xfa\x50\x6b\xbf\xf2\x8a\x03\xbe\xb6\x59\xef\x5e\x5d\xdf\xfe\x76\xe2\x32\x30\xc4\xcc\xd4\x63\x10\xb3\x7d\xd9\x1f\xa6\xaa\x68\x16\x7f\x62\xa5\x5c\x8a\x69\xf9\xed\x1e\xc6\xcd\xb1\x44\xdd\x81\xab\x0b\xcb\xd6\x26\x43\x42\x0b\xca\xe6\x78\x69\xf6\x4c\x0b\x16\x9f\x3c\xdf\x3c\x90\x58\x95\xb7\xd3\x5b\x6f\xaf\xda\x25\xcc\xf2\x3c\x3d\x10\xde\x32\xe7\xf2\x71\xe3\x00\xd3\x95\x97\xda\x8f\x84\x37\x22\xef\x08\x36\x4a\x5f\x7a\x10\x5b\x96\x55\x17\x2d\xf7\xc8\x2d\x73\x74\xf9\x82\x64\xc9\xcd\xcc\xb4\x96\xf2\xe1\x0f\xd8\x26\x2f\xb1\xa9\xa9\x96\x5b\x0b\x84\x1a\xc0\xd0\xe9\xc1\xa3\xd9\x49\x3e\xa7\xaa\x60\x02\x05\xb8\xf9\x00\xbe\x0d\x7a\xbb\x4d\x98\xa0\x65\x83\xd2\x29\x5c\x27\x63\x18\xbe\x28\xd4\x21\x98\x2d\xed\xd5\xbf\xc3\x3b\x88\x65\xd9\x4e\xf7\x47\xd6\x26\xaf\x99"}, {{0x51,0xa4,0x19,0x7a,0xb7,0x68,0x6f,0x82,0xf6,0x00,0x3a,0x0c,0x32,0xf3,0x9d,0x0f,0x2e,0x47,0x55,0x5f,0x4e,0x9f,0x8d,0xee,0xe7,0x5b,0xcb,0x1b,0xd1,0xef,0x69,0xe5,},{0x06,0x38,0x6d,0xf8,0x6b,0x61,0xf1,0xf8,0xf4,0xdc,0x45,0xb7,0x3e,0xda,0xa8,0x41,0x92,0x09,0x68,0xbb,0xd1,0x31,0xcc,0x5c,0xa1,0xc5,0x29,0x4e,0xee,0xd5,0xc8,0xba,},{0x2c,0x07,0x29,0x69,0xff,0x47,0x19,0x21,0x2a,0x12,0x19,0x38,0xb5,0x06,0xc6,0x02,0x99,0x5b,0x4d,0x02,0xa2,0x2e,0x61,0x98,0xd6,0xe8,0x7d,0xd6,0xae,0x07,0x62,0x25,0xac,0x70,0xbb,0x25,0xef,0x8c,0x0e,0xe8,0x1e,0xb6,0xfe,0x95,0x3d,0xf6,0xb1,0x81,0x59,0x49,0xe8,0xed,0x05,0x06,0xcb,0x01,0x2e,0x87,0x3c,0xd3,0x6c,0xd0,0x9b,0x0a,},"\x2a\xed\xb7\xe8\x2f\x1f\xe4\xce\x46\x9a\xda\x48\x34\x5d\x00\x6d\x1b\x3b\xff\x40\xeb\x21\x86\x7f\x51\xfc\xe9\x65\x64\x0c\x40\x9e\xc1\x3a\xd4\xd5\x2f\x89\x1b\xd7\x90\x66\xd6\xb4\xd9\x44\xca\x86\x8d\x89\x86\xd2\x42\xb5\x7e\xcc\xc4\xc4\xa4\x88\x29\x1b\x15\x9c\x8d\xe4\x39\x2b\xe4\xb8\x6f\xeb\xaa\x75\xea\xc5\xd2\x2d\x3c\x4f\x8d\x6b\xef\x79\xad\xb9\xb9\x2b\x49\x14\xd5\xea\x07\xc7\xf0\x21\xe2\xc2\x9f\x58\xd0\x7b\xe8\xa0\x84\x10\x0b\xc1\x52\xd5\x1c\xa8\x97\xd7\xc1\x31\x64\x4d\x08\x95\x32\x2e\x94\x40\xa8\x33\x9e\x1a\xa3\x90\xa7\xf4\xfc\xb5\x1d\xdf\xb6\xdf\x48\xaa\xf5\x67\x63\x37\xd8\x7d\xdd\x85\xb1\xd9\x25\xe1\xa9\xc2\x9f\xe0\x81\x8f\x51\x4e\xf7\x2f\x74\x7a\x67\x49\x46\x47\x69\x07\xa7\xca\x99\xe9\xdb\x8d\x20\x96\x41\x05\x7a\x7f\x44\xa3\x17\xb9\x09\x74\xbc\x86\xf9\x61\x7a\x96\x8a\x76\xa6\xb8\x38\x7c\xf5\x85\x3e\x60\x81\x90\xc1\xa7\x9f\x1e\x1d\x68\x6e\x0d\xe2\x2d\xb6\xcd\x9a\xeb\x85\x32\xc5\xc8\x5c\xc9\x0b\x5a\x01\x85\x79\xf2\x8e\x50\x2a\x77\x0a\x4e\xc6\x75\x26\x3d\x0d\xd7\x81\xb4\xfa\x53\xc9\xdb\xf8\x09\x8d\x57\xb3\x3a\xe2\xaf\xba\xeb\x3e\x68\x26\x6a\xd9\xaa\xb7\x17\x4b\xa6\x8c\x64\x79\x88\x39\x92\x67\x0c\xcf\x3e\x5a\xc6\xa1\x7e\x65\xe3\x1e\x1f\xdc\x85\xe2\x69\xc8\x09\x35\xef\x57\x4f\x20\xd2\x39\x56\x84\x86\xe7\xd9\x4a\x4f\x72\x4a\xb7\x00\x60\x98\xb2\x4f\x3f\x61\x58\x76\x91\x43\x5c\x7f\x29\xce\x4e\x5c\xa7\x1b\x2b\x18\x74\x55\x64\x33\xa3\x58\xc8\xc5\xef\x3c\x88\x08\x43\x03\x0c\x2d\x13\xd5\x1b\x78\xc9\xbf\x1a\x88\x24\xe6\x2e\x11\x18\x44\x39\x6f\x5a\xf2\xe2\x5c\x31\x26\xef\x36\x26\xe2\x6e\xfa\xfa\xcf\x99\x83\x0a\xa4\x12\x12\x33\x2f\x37\x8a\x16\x72\x33\xa0\xb4\x22\x13\xaf\xe3\x6d\x83\xdc\x45\x82\xa7\x96\x93\xb9\xd5\x71\xa5\x77\x12\xa0\x8b\x85\x66\xd3\x61\xac\x90\x26\x47\xaf\xc8\x86\x60\x3e\x24\x28\x3e\xfb"}, {{0xb1,0x11,0x9c,0x36,0x11,0x8b,0x7a,0x06,0x5a,0x19,0x5b,0xfb,0x8b,0x79,0xa5,0xc2,0x87,0xe0,0x9b,0xd2,0x87,0xc2,0xda,0xac,0x5e,0x6b,0x01,0x16,0x4c,0x5d,0x73,0x7f,},{0x88,0xf2,0x18,0xec,0xba,0x99,0xe7,0x70,0xed,0x21,0x4a,0x8d,0x01,0xa9,0x2a,0x10,0x40,0x0a,0xca,0xf1,0xf6,0xee,0xd4,0x20,0x06,0x7e,0x13,0x6e,0xe2,0xc0,0xc6,0x70,},{0x24,0xec,0x1e,0x54,0xfc,0x7e,0x72,0x2d,0x37,0x55,0x1d,0x02,0xcf,0x13,0x5d,0x33,0xf5,0xd3,0xff,0x53,0x57,0x73,0xe0,0x29,0x91,0xee,0x85,0xff,0xd3,0xaa,0x29,0x99,0x7f,0x9c,0x46,0x44,0x70,0x19,0x7f,0xee,0x81,0xdc,0xe1,0x10,0x60,0x9f,0x87,0x0b,0x27,0xc1,0x8d,0xfb,0xcf,0xd9,0x32,0x05,0x48,0x52,0x5e,0x93,0x14,0x8e,0x22,0x05,},"\x88\x16\xb1\xeb\x20\x6d\x5f\x6d\xcc\x2e\x4c\xc3\x91\xd2\x32\x09\x00\x6d\xe9\x35\xe3\x18\x15\x2e\x93\xfc\x8c\x2c\xf0\x8e\x26\x43\x2b\xad\x9a\xdb\x32\x03\xd8\x98\xdf\x0a\x2e\x7f\x1f\x83\xdc\x2f\x3e\xd3\x20\x5b\xec\x8e\xfc\xfd\x31\xad\xc1\xac\xa5\x75\x5d\xb9\xbd\x4e\xfe\x54\xcc\x17\x07\x30\x77\xde\x4a\x3f\xdd\x11\x99\x6e\x84\xb6\xa0\x52\xf0\x34\xb4\x10\x99\x22\x6c\x9c\x27\x2e\xae\x12\x52\x8f\x16\x58\x1b\x91\xb8\x12\x85\x0c\x20\x71\x44\xdb\xff\x3e\x85\x0c\xca\x84\x8e\xc2\xb1\xdd\x16\x47\x44\xd7\xb5\x93\x37\xd7\xe3\xef\xef\x00\x81\x62\xe6\x80\xbd\x4a\x08\x99\xce\xd6\x0b\x17\x1f\x8c\xbe\xb4\x8c\x51\x58\xdf\x6c\xbf\xdb\x26\x24\x08\x81\xbd\x58\xeb\xb8\xb6\xa0\x79\x58\x72\x79\x67\x9c\xb5\xad\x82\xf3\x71\xb5\x3c\x80\x13\x80\x4c\x35\x59\x6c\x88\x7e\x43\x6d\x23\x92\x6f\x99\x4e\x09\xd9\x8f\xbb\x8c\xe2\x70\x41\x74\xef\x38\xb6\x82\x62\xa7\xf1\xa7\x12\xda\x0e\xf0\xde\xc6\x39\x60\x68\x14\xb3\xbd\xca\xf2\x53\xff\x31\xc4\x8e\x8a\x75\x2c\x11\x1b\xd7\x10\x10\x31\xcc\x3d\x38\xef\xb0\xc9\xc7\xf1\x9c\x59\x08\x15\x84\xa0\xe0\x15\xee\x7c\x75\xb1\x0a\x4c\x51\xff\x54\x3a\x30\xe5\x2d\x5f\x94\xd8\x18\x8c\x6b\x08\xe9\xdf\x1e\x84\xa4\xe2\xc8\x07\x17\x0a\xc1\x24\xa7\x71\xb9\x94\x65\xa0\xd3\x8b\x1f\x1c\x63\x30\x40\x3c\x82\x54\x35\x82\xc5\xbb\x61\xb2\x20\xde\x1b\x9e\x0e\xf6\x9b\xda\xe2\x60\x23\x18\x1b\xa4\xcc\x07\x7a\x5f\x0d\x42\x57\x32\xac\xe1\x32\xae\x0c\x6f\xf0\xbb\x18\xba\xea\x83\xe8\x87\x7a\xfb\xe6\x50\xfe\x0b\xd0\x20\x93\xf0\x0a\x7b\x53\x65\x72\x8d\xcb\x66\xfb\xb8\x81\xf5\x92\x94\x50\x58\xa5\xb3\x50\x66\x5a\xf9\x1c\x55\x7a\x54\x72\x50\xad\x29\x5e\x68\xb4\xfb\x72\x45\x7c\xfb\x9d\x5e\xa1\xa7\xb2\xa3\x9c\x9a\xb7\xd7\xac\xe0\xaf\x5d\x51\x66\x9c\xb6\xc2\xc4\xc0\x7b\x22\x56\xd1\x0e\x5f\xfc\x6b\x97\xc6\x60\x00\x63\x13\xc4\xeb\x8d"}, {{0xcb,0xb5,0x87,0x51,0x4e,0x0a,0x34,0xff,0xc3,0x4c,0xbc,0x04,0xf2,0x8c,0x9b,0x4f,0x64,0x65,0xf1,0xeb,0x22,0x5c,0xca,0x19,0xb8,0x64,0x87,0x6d,0xae,0xf3,0x7d,0x7f,},{0x6b,0x70,0x5d,0x46,0x77,0xd2,0xd8,0x49,0xb6,0x74,0x4b,0x1e,0xbe,0xd1,0x67,0xdb,0xcb,0xf6,0x45,0x92,0x4b,0x1f,0xf2,0xe6,0x36,0x07,0x94,0xbd,0xd0,0xe0,0x97,0x88,},{0x12,0x74,0xd6,0xf3,0x56,0xeb,0x64,0x14,0x72,0xb6,0xb9,0xe5,0xb3,0xce,0x65,0xd2,0x65,0x4e,0x6c,0xb8,0x7d,0x3a,0x83,0xfb,0x49,0xd0,0xf7,0xda,0x9c,0x44,0xbe,0x2b,0x53,0x26,0x04,0x46,0x5f,0x60,0x89,0xd6,0x80,0xd2,0xd9,0x4b,0x0e,0xdd,0x2b,0x6b,0x2b,0x80,0x5c,0x5e,0x84,0xc3,0x79,0xef,0xc0,0x59,0x67,0x3d,0x31,0x00,0x7a,0x09,},"\xbd\xf7\xd1\x7c\x70\x67\x96\xef\xd3\x48\x95\x59\xb5\x27\xb1\xc0\x58\x4b\x90\x22\xc9\xcb\xda\x3a\xac\x51\x46\xda\x34\x0d\x9c\xea\x69\xf9\x16\x03\x7c\xd2\x1b\x3e\xb1\x10\x43\x48\x88\x0f\xd5\xc5\xb7\xc6\x5f\xf8\x20\xf7\x49\x93\x46\x01\x69\x51\xcb\x71\x5d\x8d\xf2\xb4\x1c\x88\xcd\x3c\x66\x10\x54\x58\xb7\xb5\x90\xc2\x1c\x1a\xe2\xf6\xea\x9d\xde\xa7\x47\x0f\x25\xe0\x20\x27\xd1\x71\xe0\xe5\x74\xa2\xbb\x21\x64\x2f\x8f\x9d\xa5\x08\xe2\x1d\x8e\x73\x35\xb5\xac\xe5\x93\x52\x99\x40\x7b\xd1\xb0\x1b\xdd\x14\x23\x13\x3e\xf0\x45\x23\x4e\x70\x1f\x55\x54\x94\x34\xad\xe9\x4a\x60\xbe\x1e\x14\x06\xca\x5c\x75\x8c\x36\x79\x9c\xe1\x70\x30\x84\x47\x6e\x48\x4f\xb1\x74\x05\x30\xae\xe8\x42\x66\xd0\x7a\xdf\xb4\xcc\x68\x9f\x32\x65\x13\x3a\x59\xcd\xf9\x92\xfb\xb9\xa4\xb1\x2d\xef\xbe\x24\x1d\xdb\xf6\x5d\x12\xb2\xfb\xdd\xfc\x05\xaf\x0f\xb8\xde\x42\x08\x07\x75\xba\xd2\x9c\x6b\x04\x59\x84\x1c\xbb\x64\x8a\x9a\x95\xe4\x8d\x6e\x36\xac\x51\x44\x80\xa3\xde\xb4\xb3\x65\x54\xd8\xda\x62\x08\x08\xae\x9d\x47\x32\x97\x10\xd2\x0a\xaa\x6e\x5d\x7f\x54\x7d\x81\xad\x30\xf8\x4c\x0e\x3d\x23\x9c\xde\x5b\x16\x9d\x9d\xdf\x29\x48\x32\xd6\x7a\x80\x60\xba\x32\x9c\x4e\xf3\x9b\xe9\x4a\xc4\x64\x34\xdd\x21\x85\x93\x1d\x12\x31\xf9\xb6\xdf\x87\x8a\x5a\xf0\x83\x1e\x0e\x9d\x8a\x08\xd0\x80\x69\xde\xd6\xa9\x61\xef\x7f\x39\xfa\xd5\x01\xff\xd1\x7d\x6d\x9b\x7c\x65\x46\x53\xc1\xf5\x8f\xce\xe1\xa6\xcd\x80\x3d\x2a\xef\x16\x6c\x78\xef\x55\x14\xa3\x27\x6d\x69\x98\xdc\x7c\x09\xa3\xfa\x98\x2e\x42\x7c\x78\x5a\xa6\xa9\xe2\x56\xf7\xba\x72\xd5\xa6\xba\x33\xeb\x46\xf1\xf9\xfe\x9b\xe2\xbf\xc1\x41\x09\xf6\x47\x73\xc0\x0c\x06\x3b\x4d\x5c\xb4\xf4\xf8\xa0\xbe\xca\x92\xa9\xa0\x16\xc4\xf5\x40\xfe\xea\x9c\x3a\x31\xe3\x13\xbb\xcb\xc2\xff\x5e\xca\x99\x67\x85\x7f\x5f\x8a\x90\x9a\x29\xd7\xf2\x0d"}, {{0x8b,0xde,0x3f,0xf6,0x1a,0x16,0x99,0x5a,0xb9,0xd5,0x39,0xf6,0x05,0x32,0x19,0x08,0x1b,0xca,0xea,0x1d,0x45,0x8e,0xc3,0x36,0x84,0xfc,0x1c,0x01,0xfb,0x56,0x5b,0xfa,},{0xcd,0x9d,0x78,0x2a,0x35,0x6e,0x84,0x7b,0x7a,0x04,0xc8,0x85,0xa9,0xb0,0x90,0x7c,0xc3,0x3b,0xa9,0x7a,0xd5,0x39,0x0d,0x4e,0xa5,0xfe,0xe5,0xeb,0x19,0x8d,0x08,0xb3,},{0x74,0x64,0xdf,0x0b,0x67,0xeb,0x90,0xb4,0xb7,0x3f,0xf0,0x82,0xad,0x0d,0x60,0xeb,0xfe,0x06,0x60,0xda,0xe9,0x70,0x69,0xb5,0x2c,0x37,0x27,0x22,0x3b,0xf7,0x0e,0x29,0xe4,0x87,0x11,0xa2,0xbb,0xb4,0x38,0xf5,0xf8,0xd8,0xa3,0x3b,0xb9,0xc4,0x8f,0xe7,0xb6,0x28,0xfa,0x8a,0x54,0x2f,0xf0,0xb5,0xae,0x36,0x26,0x9d,0x40,0x07,0xa5,0x05,},"\xa1\xf4\x0e\xc5\x80\x7e\x7a\x27\x06\x9a\x43\xb1\xae\xbf\xf5\x83\xef\x03\x70\x28\xc0\x2c\x85\x95\x25\xeb\x8f\xa4\xc3\xba\x95\xa9\x01\xff\x3a\xed\x78\xc4\xf8\x77\x52\xfb\x79\x55\x22\xf5\xbf\x71\x5b\xe7\xe3\xde\xfa\xc1\x0f\xcf\x17\xe3\xfa\x5c\x54\xb2\x00\x89\xa4\x72\x33\x33\x27\x25\x2e\xc9\x45\x71\x8f\xb4\x55\xe3\xf2\x7c\xcf\xde\xf8\x23\xd1\x2d\x40\x6e\x62\xa4\xae\xba\x3c\xb9\xd1\xc6\x1b\x2b\x17\xe4\x9e\x20\x0a\x84\x18\xf9\x35\xf2\x6e\xeb\x57\x60\x2c\x7a\xa3\xb3\xa2\x4f\x7e\x62\x38\xd3\xe0\x8d\x2d\x60\x9f\x2e\xad\xa0\x33\x2b\xc8\xcb\x12\x91\x6c\xb0\x3b\x0d\x4f\x9c\xd6\x02\x00\x25\x86\xd3\xe4\xcc\x7e\x0e\x03\x81\xc0\x45\xad\x2e\x1e\xe2\x82\x98\xae\x7f\xcf\x0c\x10\xf2\x12\x80\x85\x65\x29\x6f\x15\x8d\x2c\x32\xe8\xcb\x28\x15\x65\x81\xaf\x52\xbf\xc3\x47\x0c\x3c\x95\x82\x13\x8d\x22\x55\xe8\x42\x6d\x64\x8c\xa2\x37\xd7\xaa\xd2\x85\x6f\x17\x16\x38\x55\x82\x41\xd8\xae\x3f\x62\xba\x92\xdb\x59\x65\x68\xed\xee\x3e\xc0\xef\x37\x0f\x83\x62\x6a\xa0\x44\x5a\xf0\x8f\x96\x78\x63\x66\x0e\x8f\xba\x5a\x41\xc8\xe8\xed\xe1\xc9\x60\x51\x4a\x14\x68\x7a\x4a\x81\xe7\x76\xae\x0e\x8e\x77\x7f\xb0\xf2\x50\xd5\x1a\x83\xb5\x5f\x8c\x1f\xfd\xd7\x8d\xf3\xbd\xc9\x7f\xf1\x77\xaf\xec\xa0\x46\xc7\x2d\x72\xaf\x92\x4a\xd0\xd0\xab\x2b\xfc\x11\xb7\xf4\xab\xde\xd5\x1c\x39\x87\xa8\xbb\x94\xd6\x40\xc8\x71\x0e\x5f\xc9\xa4\x19\x0e\x8a\x00\x83\x63\xd7\x41\x9c\xea\x17\xc4\x0d\xea\x20\xea\x51\x56\x02\x9f\x3d\xeb\xf0\x52\x41\x91\x8f\x54\xaf\x50\x39\xe2\xc4\xcf\x2c\xa2\xe1\x39\xf6\x0e\x45\xcc\x65\x59\x5c\xdf\x54\xa6\x7d\x92\xb6\xac\x66\xfc\x0c\x5a\x29\x04\x95\xca\x57\xb0\x7e\xf5\x75\x0d\x05\xf5\x7d\x87\xd0\xc2\x28\xf7\xe4\xe1\x5a\xd0\xba\x01\x78\x73\x0f\x95\x1c\x69\x75\x83\x48\x1c\x66\xcb\xfc\xd4\x80\x32\x54\x4a\xa8\xd5\x09\x08\x30\x4b\xd8\x19\x40\x30\x87\x06"}, {{0xda,0x59,0xbb,0xc5,0x23,0x40,0x4f,0x07,0x64,0x6a,0xdd,0x79,0x08,0x29,0x49,0x77,0xe4,0x66,0x45,0xbc,0x8a,0x38,0xba,0xd2,0x80,0x96,0x41,0xa2,0x3d,0xe3,0xb1,0x5a,},{0xb2,0x2c,0x0f,0x21,0xaa,0x1c,0x2d,0x45,0xf4,0xb2,0xe5,0x6c,0xc9,0xb5,0xe0,0x2f,0x9e,0x31,0xa2,0xea,0xa3,0x67,0xec,0xb4,0x82,0xf8,0x74,0xcb,0xd8,0xe9,0xfe,0x34,},{0x14,0x72,0x45,0x9c,0xbb,0xae,0x2c,0xf2,0x1c,0xe4,0x4a,0x15,0xba,0xe9,0xfc,0x85,0xdc,0xa4,0x0b,0x81,0x82,0xda,0x7d,0x52,0xcb,0xf5,0x6e,0xd5,0x38,0xd1,0x8e,0x03,0x47,0x7c,0x14,0x0a,0x3d,0xdd,0x0e,0xfb,0xa4,0x3c,0x96,0xaa,0x92,0xf5,0xf9,0xbc,0xdf,0x34,0x81,0x28,0x6c,0xe7,0x62,0xa7,0xe2,0xbd,0x1e,0x77,0x9b,0xa9,0x9b,0x0d,},"\x09\x71\x06\xc3\x62\x4d\x77\x4d\xde\x25\x51\xe0\xc2\x7e\x19\x50\x4e\x65\x18\xcc\x86\x36\x9a\xb2\x6f\xf8\x10\x96\x9e\x7d\xe2\x4a\xbc\x68\xb4\xb5\x3f\x11\xd9\x45\xd4\x9e\xf0\x78\xeb\x4f\x6b\xa6\xbf\x25\x7f\xf7\xb6\x08\xaf\xdc\xb3\x0a\x5c\x59\xa7\x56\xfd\x77\xa6\xc1\x24\x7f\x6f\x2a\x41\x10\x0d\x99\xfc\x52\x06\xaf\x3b\xcc\x6d\xe1\xd3\xe4\x96\x8e\x28\xfb\xa0\x12\x3f\x60\x45\xa1\xb5\x4d\x69\x3a\x42\xbd\xfa\x07\x1b\x2b\x91\x4b\x3c\x3c\x0c\x29\xb2\x59\x3d\x07\xe8\xbd\xc8\x6c\xa4\x2a\xc5\x55\xb7\xdc\xd9\x43\x9d\xf9\xfb\xd4\xbb\xec\x73\x0d\x63\x27\xbf\xae\x4f\xc4\x1e\xd4\x98\xb4\xf0\x4a\x0e\xb1\x4c\xee\x60\x82\x83\xaa\xa6\xe6\xaa\x46\x67\x6b\xc8\x8a\xed\x5d\x99\x39\x03\x7a\xad\x49\x15\x66\x1a\xf9\x4b\xb5\xf6\xe6\x53\xa2\xca\xc1\x23\x28\x70\x73\x27\x0e\x0b\x13\xfd\xa1\xdd\x48\x71\xaf\x6a\x92\xf9\x92\xf5\x39\xdf\x88\x17\x12\xfe\xfb\x03\x85\x40\xd4\x11\x91\x12\x3b\x6b\x3b\x4b\x6f\xf8\x7f\xfc\x92\x9a\x6b\xe5\x3c\x6c\xef\x02\xf4\x8f\x2f\x0c\xf2\xfe\x64\xa4\x5f\xd6\x60\x25\xcc\x2d\x7e\xe5\x5e\xbe\x23\x16\xc0\x00\x85\x56\x61\x16\x5e\x2a\x5b\xa4\x1a\xfc\x20\x97\x95\x7b\x6f\xe4\xc5\x52\x21\x20\x4b\x6f\xc1\xf3\x17\xdd\x3b\xa1\x3c\xac\x39\x92\x40\x26\xbd\xb6\x6b\xe4\x54\x22\x68\x87\x56\x31\xd2\x77\xf2\x10\x10\x7a\x33\x76\x7f\x6d\x95\x96\xe2\x57\x42\xd7\xa9\x0e\xa7\x91\xea\x4b\xc9\xee\x84\xa6\x7f\xd3\x28\xb8\x0f\x79\x1e\xde\x96\xd8\x96\x63\xe9\x37\xf0\xb7\x55\xba\xa9\xd5\x2b\xda\x21\x0c\xee\x1d\xb3\x39\xff\x1d\x3c\x4b\x00\x0b\x65\x3b\x9b\xde\x33\x80\x49\xaf\x84\x36\x4e\x21\x77\xf8\x0d\xd5\x1e\x2a\x16\x72\xee\x55\x5d\x63\x17\x58\x9f\x6f\x1d\x5a\xbe\x6c\x28\x77\x35\x8b\xf9\x4b\x0b\x80\x8f\xf8\x57\x36\x3f\xbf\xbe\x32\xe9\x73\x37\xe4\xb8\xa8\xc2\x21\xa9\xe7\x59\x62\xa8\xdc\x9b\x5a\x3d\x7c\xa5\xf9\xc9\xb6\x1c\x73\xc1\x46\x9a\x72\xbd"}, {{0x40,0xea,0x82,0xda,0x41,0xfd,0x15,0xb0,0x6f,0xfe,0xb9,0x9c,0xd6,0x16,0xdc,0x6b,0xc8,0xc1,0xb2,0x14,0x77,0xea,0x23,0x94,0x66,0x08,0x8e,0x28,0x49,0xbf,0x10,0x16,},{0x59,0x10,0xe5,0x80,0xbf,0x41,0x2c,0x31,0xa8,0x74,0x51,0xd9,0xdd,0xf3,0x2b,0x3a,0xb7,0x13,0xf9,0xe4,0xa2,0x2c,0x59,0x0c,0x64,0x1c,0x14,0xa5,0xdf,0xbb,0xe0,0xd7,},{0xd2,0x98,0xfc,0xc9,0xa8,0xec,0xb7,0x6a,0x98,0xd4,0xa7,0x1d,0xfb,0x01,0xd2,0x76,0xab,0x2d,0x96,0x70,0xa9,0x5b,0xab,0x34,0xcf,0x1d,0x83,0x64,0x51,0x6d,0x1e,0xbd,0xb2,0x39,0x03,0x46,0x02,0x15,0x30,0x71,0x25,0xaf,0xd0,0x9c,0x75,0x8e,0x98,0x1a,0x45,0x2d,0xa9,0x5c,0x0a,0xc2,0xc0,0xb9,0x58,0xc6,0x91,0x7e,0x68,0x74,0x19,0x0d,},"\xa0\x6c\x4e\x02\xb8\x3a\xb7\xe1\x91\xad\x81\x8c\xb8\x18\x7b\x52\xa8\xda\x00\x4f\xe8\x38\xdb\x33\x3c\x4e\x02\x54\x8d\xb6\xbd\xf7\x91\x44\x46\x42\xe5\x7f\xdb\xc8\x59\x4e\x59\xd7\x02\x32\x80\xbb\xae\x82\x98\x6f\x39\x98\x05\x43\x4b\xb0\x72\xc8\xa2\x7a\x2d\xcd\x5a\xa6\x2f\x06\x5b\xc5\x8b\x06\x21\xfc\xd3\x65\xf6\xcd\xbf\x4d\x57\xd5\x77\xd9\x11\x50\x30\x1f\xa4\x8f\x18\x2f\x87\xe8\xdc\xa7\xce\x45\xa7\xd6\x48\x45\xff\x43\x4d\x1b\xab\x05\x34\xcc\xc8\x3a\xa0\x97\x4e\x88\xb3\x8f\xc2\x50\x8c\xef\xcb\xbc\x82\x13\x5b\x73\xb3\x84\xc8\x0e\xcc\xb8\xa0\x9e\x28\x73\xcc\x07\x12\x90\x21\xd8\x1c\xe1\x29\xa9\xdf\x65\xe6\x13\x41\x0a\xf9\x50\x19\x7d\xbf\x9a\xfc\x28\xed\xc4\xe6\x5c\x3e\x84\xda\x40\xd2\xef\x84\x1b\x88\x6b\xc4\x47\x19\xa5\xd5\x9d\xb2\xc6\xdc\x77\x64\x01\xc8\x95\xe2\xb3\xc8\x37\x83\xd7\x81\x7b\xba\x68\xba\xff\x59\x47\x0d\x60\x15\xbb\xa8\xd9\x75\xf0\xeb\x71\x2f\x3b\x89\x02\x91\x28\x05\x52\x3a\xa7\x1c\x90\x49\x9d\xe6\x89\xd3\x1a\xe4\x4e\x21\x0b\x84\x46\xf2\x48\x47\x27\xcc\x49\x1b\x92\xa8\xe8\xb1\x99\xd6\x28\xe1\xdf\x79\xa2\x8c\x56\x1e\x5a\x7d\x88\x2e\x30\x78\x7d\x08\xfb\x2d\x51\x96\xba\x61\x19\x63\x09\xb3\xbf\x0c\x58\x24\xa3\x54\x8c\x70\x00\x03\xfe\x99\x13\xbe\xfe\x12\x22\x31\x50\x01\x26\x85\xe9\x07\x20\xe9\xec\x6b\xc4\xdb\x60\x74\x25\xae\xc5\x31\xc4\xfa\x36\x08\x6d\x3b\x9b\xe3\x91\xa3\xf0\x46\x35\xa8\x07\x7a\x44\x7a\x16\xa6\xfd\x89\xaf\xbb\x9a\x72\xd0\xd3\x55\xcb\x0b\x22\xd5\x62\xf4\x3f\x59\xd4\xe3\x71\x28\xb3\xe2\xd9\x06\xc8\xae\x23\xd0\xaa\x59\x9c\x70\xd3\x77\x8a\x07\x6c\x1a\x39\x72\x8f\x1d\x69\x37\xbd\x48\xb9\x78\x74\x08\x50\x56\x61\x38\xd3\x48\x52\xb6\x30\x75\xe8\x9a\x8e\x22\x80\xed\xba\x6f\x4e\xe8\xf6\x15\x11\xe9\xb7\x68\xe9\x5c\x78\xd1\x97\xb6\x93\xb1\x09\xe8\x88\x18\xb4\x86\xa9\xdf\xdb\x74\xb4\xc5\x55\x0a\xcd\xfb\xd5"}, {{0x28,0xbb,0x81,0xa1,0x7d,0x45,0x84,0x75,0x4d,0x52,0x81,0x8c,0xd0,0xf1,0xf2,0x1b,0xaa,0x77,0x7e,0x69,0x58,0x44,0xa1,0x51,0x22,0xac,0x05,0x34,0x4d,0xdd,0xc0,0x27,},{0xd5,0xf6,0x1d,0x51,0x99,0x44,0xd1,0x3b,0x84,0xbf,0xa7,0xcd,0x67,0xcb,0x0b,0xea,0x4e,0xf2,0x28,0x1e,0xfa,0x46,0x1f,0x22,0xad,0xe4,0xba,0x88,0x2d,0x11,0xb2,0x52,},{0x9c,0xe4,0x5a,0x07,0xdb,0xd2,0x8d,0x3f,0x6f,0x1b,0x35,0x63,0x0a,0x3f,0xd5,0x6f,0x1d,0x54,0x8f,0x84,0xff,0xb1,0xc6,0xae,0x64,0xb2,0x14,0x98,0xae,0x38,0xe5,0x96,0x91,0x6e,0x77,0xf7,0x99,0x05,0xe6,0x09,0xfb,0x1a,0xe0,0xda,0x36,0x13,0x8a,0x80,0xf2,0x42,0x12,0x21,0x67,0x06,0x80,0x92,0xcc,0x60,0x57,0x96,0xc5,0x66,0x9e,0x06,},"\x92\xe8\x4c\x7a\x55\xb0\xbe\xa0\x3e\x17\xcf\xb6\x5f\x70\x85\xce\x3f\x44\x5b\x15\x42\xba\xe9\x97\xde\x5f\x09\x2a\x24\xff\x24\x33\x80\x28\x6d\x13\x70\x91\xa5\x98\xf3\x5e\x6d\xae\x1a\x1c\x64\x8f\x5a\x49\x4c\x81\x9d\xfb\x24\x06\x52\xff\x90\x83\x81\xf3\x2d\x70\xbc\x51\x31\x00\xac\xa1\x6f\xe7\x22\x02\x95\xb1\xc7\x18\x35\xf1\x6d\x93\x10\xa9\xd2\x7a\x04\xa9\x80\xac\xe2\x97\xd5\xaf\x3f\x7c\xb7\xc7\x8b\x24\x99\x7c\xcb\x41\xf5\x4e\xcb\xab\x50\x7e\xb7\x3e\xa6\xa3\xed\x47\x0e\x49\x59\x05\x09\xf5\xd1\xe6\x03\x2a\x26\x05\xdb\x87\xf4\xa9\xb9\xec\x91\x60\x25\x83\xf1\x4e\x2f\xe1\xbd\xb9\x00\xec\xb8\x97\x11\x96\xb5\x5c\x0d\x43\x34\x89\xf2\x6b\xe9\xca\x15\x7c\xbd\x56\x57\x28\x87\xba\x85\x9f\x39\x67\x4a\x8e\x0c\xa0\x8f\x2d\xbb\x0f\x27\x07\x35\x51\xd0\xb1\x99\x06\x85\x17\x8b\x1a\xe9\xe7\x88\x54\x99\x14\x3d\x9d\x72\xc8\x57\x1d\x11\xe0\xd8\x5b\xf5\x8d\xf9\x4e\x2a\x74\xd9\xb6\x84\x65\x57\xf9\x12\x5c\xa0\x94\x4c\xe5\x71\x8d\x2c\xba\xe1\x67\x2b\xa0\x2b\x84\x7c\x17\xa6\xf6\xb4\x45\x63\x4d\x2f\x01\x75\xa7\x5c\xf6\x88\x3c\x62\xe5\xb5\x21\xc5\x71\x41\xf2\x18\xb2\xfb\x09\x94\xb3\x72\xa7\x16\xc4\xa2\x17\x43\x4b\xea\xb7\x57\x40\xb8\xe9\x1c\x62\x21\x87\xd0\x3c\x85\xda\x00\x1e\x00\x24\x73\x12\xa4\x65\x22\x5f\x5d\x6a\xf2\x32\x06\x4a\x42\x7d\x30\x18\x70\x0d\xed\x77\x4b\x90\x26\x77\x7a\x52\x75\xfc\x04\x75\x46\x06\xc8\x66\x00\x29\x7b\xf7\xb7\x1a\xaf\xf8\xb9\xa7\x46\x67\x7a\x36\x62\xf3\x75\x0e\x81\xb5\x01\x66\xf6\x23\x70\x00\x05\x1f\xfa\x15\x86\x8d\xef\xdf\x09\x00\x57\x72\x2a\xe2\x29\x96\x4a\x4e\xa0\x85\xe0\xdb\xc0\x4c\xe1\x99\x77\x22\xc5\xbb\x65\xd2\xb4\x7e\xcb\x74\x6f\xd8\x3a\x9f\x6a\x69\xc8\x15\x45\xa9\xb5\x02\xf5\xe7\x6d\x31\x30\xc5\xaf\xcb\x1c\x9a\xf9\x9d\x91\x87\x40\x83\x7c\xe8\x9d\x7c\xd2\x13\xfe\xf2\xfd\x06\x2c\xe8\x85\x0f\x69\x65\x9e\x4a\xd3\x27"}, {{0x24,0xbf,0xd4,0xfc,0x45,0xd5,0x09,0x35,0x85,0x67,0x81,0x01,0xcf,0x56,0x3a,0xb8,0x01,0x1f,0xd6,0x43,0x0d,0xe1,0x55,0xf2,0xa4,0x25,0xf0,0x63,0x3e,0xe3,0xb7,0xcd,},{0x9c,0xf5,0xc5,0xfc,0x0c,0xcf,0xae,0xb2,0x8a,0x08,0xba,0x67,0x70,0x7b,0x18,0xdc,0x84,0xea,0x06,0x98,0xff,0xbd,0xbc,0x16,0x9a,0x09,0xc2,0x81,0x23,0xe6,0xc2,0xac,},{0xdc,0x93,0x5b,0x60,0xfd,0xe4,0x43,0x59,0xaf,0x8f,0x50,0xed,0x7f,0x91,0x9f,0x48,0x3c,0xe3,0xf2,0x4e,0x23,0x20,0xc5,0x5b,0xa9,0x2f,0x3e,0x76,0x17,0xc1,0x9b,0xfb,0x54,0x70,0x19,0x03,0xff,0x18,0x3b,0x42,0xcb,0xed,0xfe,0xf0,0x87,0x5f,0x42,0xb1,0x28,0x75,0xd3,0x6a,0x0a,0xee,0xc7,0x3f,0xfd,0x09,0x50,0x9d,0x92,0xb2,0x8b,0x0d,},"\xba\x54\x12\x8f\x45\xbe\x20\x01\xdb\xb0\x60\xd5\xdc\xc4\x71\x44\x99\x74\x15\xd4\x29\x4f\x6e\xba\x8d\xce\xba\x4f\x6c\xf2\x23\x46\x83\xc4\x26\x5f\x88\x03\x22\x05\x29\x6e\x9b\x27\xd6\x85\x06\x23\x2d\x57\xb6\x88\x40\x76\x48\xf8\x7c\xeb\x34\x20\x52\xbd\xe9\xd0\x06\x55\x42\xff\x17\x15\xc9\x42\x02\x7e\x67\x48\x2a\xf4\xbc\x27\x8f\xf7\x19\x66\xfb\x3f\x62\xa2\xa5\x32\x3c\xb1\xb4\xba\xe1\xe7\xb8\xfe\xdc\xbc\x73\xea\x05\xb4\x07\x64\x21\xb0\xb4\xfa\xe8\xbc\x33\x37\x41\x6a\x17\xfe\x12\x4e\x7e\xe4\x65\xeb\xb3\x8d\x87\x92\x30\x64\x29\xd8\x27\x9a\x1b\xd5\x4c\x37\xbe\xe8\xf9\xc8\x5e\xeb\xe3\xaf\xd1\xf6\x44\x89\xd4\xe5\x3a\xc5\xf5\x06\x57\xbb\x6f\xfb\x97\x12\x07\x44\xb7\x5d\x47\xc6\x22\x6d\x5a\x9c\x9c\x26\x4e\xe3\xe6\xa6\xde\xd0\x50\x62\xca\x10\x06\x66\x91\x18\x45\x45\x50\x01\x09\x19\xc2\x63\x3c\xf0\x86\x95\x03\x45\xe5\x14\xaf\x38\x43\x14\x8e\x5c\x64\x35\x2e\x69\x03\x7d\xfe\x60\xd4\xa8\xea\xb3\xeb\x8c\xb5\x4b\xd3\x9a\xf2\xf3\x53\xd5\xde\xd2\xe2\xbc\x8b\x11\xc0\x9f\x61\x2e\x12\x8c\x6e\xfa\x41\xf6\xeb\x2c\x95\x80\x87\xbe\x34\xc6\x33\x5a\x43\x00\x5d\x11\xa9\xd3\xb5\xa5\x29\xc2\xd1\xb0\x64\x2f\x77\xaf\xdd\x8c\x6b\x1d\x6f\xb2\xa9\xdc\xb6\x5f\x42\xf4\xec\xa8\xea\x9a\x05\x40\x58\xbe\x86\x13\x66\x76\x10\xe3\xee\xd8\xd1\xdf\x07\x39\xec\xa1\x71\x95\x41\x17\x98\x9d\x1b\x12\x18\x9a\xb5\x79\x04\xaa\x96\x0b\x0c\xa8\x55\x41\x74\x63\x85\xef\xa9\x85\xbe\x9d\x97\xb5\xa9\x02\x99\x89\xa9\xc7\x14\x98\xdf\xab\xdb\x81\x36\x81\xf5\x7e\x27\x6b\x64\xdb\x49\x1b\x8f\x08\x2a\x88\x51\x45\x46\x9a\x53\x1b\x7f\x9f\x04\xca\x0a\x2c\x2f\x8d\xff\x20\xcc\xb9\x9c\x28\x61\xf5\x4e\x5e\xaf\xa9\x62\xcc\x53\xea\xf1\x8d\x3d\x5e\x50\xd3\x37\xaf\x48\x5f\x19\x97\x5f\x05\x93\x07\x00\xa8\xa7\x25\x3f\x11\xf1\x84\x13\x0d\x0a\xee\x70\x96\x9d\x96\xfe\x08\xf2\x16\x95\x1d\x9d\xce\xd5\x23\x88"}, {{0x2f,0xc2,0xf9,0xb2,0x05,0x0a,0xd7,0xd1,0x39,0x27,0x3e,0x93,0xe2,0xa0,0x45,0x1c,0x7b,0x5c,0xce,0x57,0x59,0x9a,0xa6,0xb0,0x8d,0x3e,0xdc,0x5b,0xb0,0x75,0x90,0xc8,},{0xff,0xe5,0xa1,0x78,0x80,0xd7,0x18,0xcc,0x79,0x88,0xc2,0xfd,0x98,0x25,0xb0,0x3b,0x93,0x45,0x0a,0xc1,0xde,0xb8,0xfb,0xd1,0xf1,0xbf,0x3b,0x8f,0x87,0x80,0x59,0x54,},{0x7a,0xff,0x16,0x2a,0x3c,0x0d,0x28,0xdf,0xf4,0x17,0x15,0xa9,0x74,0xaf,0x07,0xec,0xac,0x21,0x32,0xfc,0x18,0xbc,0x43,0xa1,0x98,0xfe,0x66,0x46,0x59,0x05,0x0d,0xa1,0x9a,0xe2,0x27,0x58,0xd5,0x2c,0x9c,0xbb,0x94,0xf1,0x35,0x8b,0xb0,0x26,0x10,0xa8,0xa3,0x51,0xc2,0x11,0x62,0x79,0xe7,0x24,0x5a,0xdf,0x69,0x67,0x5d,0xfd,0x36,0x0a,},"\xdc\x12\x97\x99\x0c\xc0\x27\xd5\x6d\x1f\xee\x26\x5c\x09\xbc\xf2\x07\xa9\x58\x3e\x6b\xab\x8d\x32\x47\x82\x28\xe0\xbc\x30\x5b\x98\x18\x15\x4c\x33\x8c\xee\xc3\x4b\x04\xc4\xad\xe7\xac\x61\xdc\xb0\x9b\xfa\xc8\xad\xe0\x0d\x1f\x29\xde\x31\x70\x60\xb8\xa4\xda\xf1\x98\x7d\xe4\x09\xca\x2c\x3f\xe4\x38\x00\x88\x07\x3c\xcf\x48\x5e\x9a\x69\x51\x6b\x5b\xbb\x41\x30\xf2\x0b\xe6\x9b\x2d\xd6\xa9\xb4\x65\x15\x9c\xca\x1a\xc8\x8b\x32\x8b\x80\xc5\x1b\x66\xaf\x7f\x4c\x50\xf6\x22\x87\x72\xf2\x87\x34\x69\x3c\xe4\x80\x5a\x41\x63\xdf\xf1\x4b\x4d\x03\x98\x11\xee\x3f\xce\x65\x93\x54\x44\xa6\xea\x9a\x72\xd7\x8b\x91\x5c\x9c\x3b\x76\x6c\x60\xb7\xe0\x32\x9e\x43\xc9\xc5\x7e\xde\x94\xb9\x15\x25\xce\x5a\x07\x5a\x72\x97\x21\x97\x72\xef\x3c\x02\x96\x49\xb5\x86\xa9\x5a\x73\xbb\xdf\x16\xd8\xfc\x20\x36\x8d\xe4\xba\x44\xde\x10\x64\xbe\x58\x26\xb3\x76\xbe\x31\xa8\x6c\xa4\x78\xa5\x2e\xfb\x98\xf1\xfa\x33\x31\x57\x71\x9b\xd6\xe0\xda\x80\xed\x68\xd0\xef\xea\xfe\xe5\xa1\x3b\xcc\x3b\x45\x75\x25\x25\x8f\x1f\x7e\x03\x1f\x7b\x40\x3a\x46\x15\x06\x92\x7b\x1e\x6c\x7d\x4a\x0c\x8d\x84\xb5\xf3\xdd\x0e\xb8\xbd\xb1\x3e\xdc\x2b\x51\x4a\x81\xd0\x88\xeb\x07\x7a\x52\xc8\xa8\x31\x86\x1f\xee\xe8\x11\x0e\x41\xa3\x25\xdc\xe2\x06\xb2\xd6\x7d\x25\xf9\x0e\xf5\x7e\x0f\xde\x70\x9f\x3e\x5a\x39\xc0\x4e\xed\x31\xe5\x7c\x19\x3b\x28\x3e\x2d\xa7\x27\x9e\xe3\xf1\xee\xd4\x82\xb3\xbb\xcd\x37\x39\x02\xc1\xdf\x81\x1a\xc3\x3e\x1d\xe0\x64\x29\xe8\xf8\x44\x3f\x60\x20\x19\x65\x0b\xdc\x2e\xe8\xd7\xf6\x50\x03\x6a\x7a\x22\xb8\xfd\x88\x51\x75\x11\x22\x9c\x72\x9a\x32\x69\xb3\xa3\xe8\xfc\x72\xb0\x1b\x5a\x4b\x3e\x33\xf5\x27\x2f\x3a\xd2\x16\x29\xd0\x8b\x1f\x71\x79\x35\xe9\xe1\x04\xad\xd2\xf0\xf2\x03\x34\x32\xbe\xc8\x2e\x21\x21\xd9\x8c\x9c\x1a\x58\xe0\xda\xba\x25\x53\x6a\x1b\xe8\xe5\x08\x83\x47\xf4\xa1\x4e\x48\xd8\xe3"}, {{0x8a,0xfe,0x33,0xa0,0xc0,0x8a,0xa3,0x48,0x7a,0x97,0xdf,0x9f,0x01,0xf0,0x5b,0x23,0x27,0x7d,0xf0,0xbb,0x7e,0x4c,0xe3,0x95,0x22,0xae,0xc3,0xd1,0x78,0x16,0xe4,0x67,},{0xd0,0x04,0x37,0x0e,0x6e,0xdc,0x34,0xb3,0xe8,0x81,0x86,0x67,0x21,0x6f,0x5b,0x22,0x6b,0x0f,0xf7,0x5a,0x58,0x48,0x4c,0x86,0x16,0xe1,0xa8,0x66,0x44,0x4c,0xab,0x57,},{0x63,0xa8,0xae,0xac,0x02,0x5f,0x2d,0xde,0x9a,0x73,0x28,0x6e,0x56,0xc2,0xd6,0x2d,0xcb,0x79,0xa2,0x41,0xba,0x0b,0x2e,0x2d,0xba,0xca,0x87,0x52,0xed,0x2f,0xc8,0xcc,0x7a,0xb8,0xe6,0x60,0x0b,0x67,0x64,0x5f,0xb5,0xe8,0x18,0xa4,0xe8,0x2c,0x29,0x18,0x0a,0x6b,0x2c,0x3f,0x58,0xd0,0x99,0xcb,0x63,0x5c,0xe5,0x2b,0xdc,0x15,0x70,0x04,},"\x86\xfb\x74\x1f\x1b\x97\x08\x92\x91\x95\x03\x1a\xa1\x64\x5f\xb7\x09\xa8\xae\x32\x3f\xff\x85\xe5\x47\x01\x94\x45\x2e\x11\xb7\xb1\x27\x91\x94\xb5\xe2\x42\x7c\xe2\x3e\x1d\x74\x9c\x3d\xdf\x91\x0b\x01\x7e\x4f\x2d\xff\x86\xdb\xe4\x82\xc9\x1b\xd9\x94\xe8\x49\x3f\x2e\x68\x24\xbb\xa3\xbc\x7d\x7a\x84\x5f\x21\x7a\xe9\x76\x0b\x3c\xd0\x02\x26\xd9\xff\x26\x16\xd4\x52\x75\x1a\x90\xc3\xd0\xd3\xc3\x6d\x4a\xb4\xb2\x52\x0f\x67\x28\x81\x71\xbd\x3a\x34\xb2\xea\xca\xe8\xd4\x4c\x1e\x15\x3d\xda\x1f\x90\xbc\xd3\x59\x5d\xad\x37\x71\x3b\x8d\x34\x01\x56\xea\x90\xa4\xe1\x35\x95\x1b\xa7\x16\x9a\xc1\x75\x57\x8b\x81\xe9\x7a\x54\x1a\xb9\xbf\xb7\x63\x28\x79\x8d\x7d\x63\x1c\x14\xdf\x2a\xd6\x13\xe9\xc6\xe1\x14\x7a\x0e\x84\x06\x2d\xdb\xa0\x35\x85\x9d\x46\xba\xde\x5f\xad\xd9\xb3\x2b\x43\xda\xd4\x83\xc6\xb8\x02\x3b\x32\x39\x1e\x51\xef\x15\x20\xc6\x8c\x61\x91\x32\x6c\x49\x44\x23\x08\x0c\x62\x3d\xc4\xad\x0a\xa0\x74\x74\x8d\x82\x6c\x29\x64\x4c\x38\x98\x6a\x77\x00\x2f\x0c\xab\x90\x68\xe6\xc9\xec\x73\xcc\x2e\x0c\x58\x4b\x80\xe0\xbc\x37\x57\x21\xf7\xa8\xfc\x35\x31\x7a\x5e\x24\x0e\x8c\x66\x09\x2f\xb6\x30\x5b\x01\x2c\x70\xe1\x7a\xea\xff\x13\x38\x6d\x5e\x28\xd0\x64\x30\xca\x58\x5b\x0c\x85\xb2\x74\xe7\xfc\xbb\x63\xe3\x42\x3a\x98\x25\x79\xe5\xa6\x4a\x02\x62\xc4\x19\x08\xe5\x5d\xbe\x43\xda\xc1\xe5\xcc\x1b\xb7\x29\x8b\xe4\x28\x72\x0a\x12\xe3\xb0\x72\x55\x9e\xc2\x67\x5d\x45\x7a\xaf\x8f\x13\x25\x2e\x28\xaa\xd6\x3c\x15\x13\xf5\xf2\x39\x56\x4d\x36\x3c\x85\x05\xff\xa4\xe5\x0f\x66\x48\xc1\xcb\x82\xbb\xa8\x52\xbf\xf0\xac\xb0\x30\xcb\xe7\x3f\x05\x9d\xd8\x7b\xbd\x73\x18\xc5\x58\x6e\x70\x86\x18\xa4\xf4\xc9\xf3\xbe\xc3\xf4\xf0\x7c\x60\x9e\xeb\xb2\x4b\xa8\x78\xc6\xbf\x1e\x4f\x2d\x0f\xd1\x45\x0a\xb9\x4e\x31\x75\x52\x17\x78\x6f\xb1\x51\x82\x76\x0f\xfb\xe5\xa2\x67\xcb\xe9\x98\xa4\xff\x90\xa2"}, {{0x6d,0xc7,0xcc,0xf3,0x29,0x37,0x8e,0x81,0x31,0xb6,0xde,0xfc,0xd8,0x93,0x70,0x30,0x10,0x68,0x94,0x63,0x36,0xb0,0xb7,0x62,0xac,0x5e,0xa5,0x14,0x87,0xdb,0xd3,0x9e,},{0x04,0xe9,0x0d,0x27,0x5e,0x79,0xdf,0x5f,0x2b,0x6e,0xf4,0xa3,0x15,0x05,0xaa,0xc0,0x5a,0x69,0x45,0x9b,0xaf,0x2c,0x58,0x1b,0x3c,0xe3,0xdb,0x29,0xf0,0xf1,0xfc,0x14,},{0x04,0x50,0x9d,0xb0,0x03,0xa1,0xa6,0xed,0x3f,0xbc,0xec,0x21,0xac,0x44,0xec,0x10,0xcc,0x06,0xd7,0x9f,0x27,0x14,0x96,0x08,0x82,0x17,0x03,0x16,0x27,0x5d,0xf8,0x04,0x23,0xa1,0xc1,0xa1,0x12,0xd8,0x81,0xfc,0x24,0xd2,0x81,0x25,0x26,0x07,0x90,0x58,0xaa,0x8b,0x60,0x8b,0xfc,0x6b,0x5e,0x57,0x63,0x22,0x40,0xc6,0x36,0xd6,0xeb,0x00,},"\x20\xce\xbb\xe9\x84\x01\xac\x89\x34\xc3\xe6\x5a\x57\x38\xcb\x0e\xc0\xcd\xc7\x5f\xdb\x09\xdc\x96\x31\x28\x94\xb1\x87\xc0\xa4\x6d\x2c\x38\xf4\x85\x5b\xe3\xee\xcc\xdc\xdc\xc5\x6d\x92\x6a\x8c\x08\xce\x6e\x74\x8e\x2a\x85\x8f\x53\x53\x2e\x7e\x5f\xc5\xf7\x01\x4c\x8c\x6f\x86\x31\x0c\xc2\x6e\xfe\xf3\x0a\xe5\x25\xa5\x15\x79\x40\xab\x53\x5e\xd8\xe4\x03\x11\x2b\x08\xe3\x5e\x2b\xb3\xdd\x91\xa9\xae\x8f\x77\x2d\x2a\xff\x37\xd8\xc4\x0d\x2b\x5c\xc8\x87\xa6\xf1\x50\x50\xa0\xf5\xbc\xf0\x36\x0c\x3a\x9d\x12\xd5\x91\x86\x55\xed\xc3\xc1\x3c\x86\xba\x6f\x4a\x2f\xa3\xbf\xcd\x40\x5e\xd3\x8f\x87\x1c\xf7\xdf\xf0\xf7\x5d\xaf\x2c\x32\x10\x84\xee\x9f\xa8\x12\x11\xad\xb1\x05\xb2\x5c\x22\x88\xf0\xf2\xf7\xf9\x3e\xf6\x56\xb2\xde\x19\x01\x22\xe7\xa4\xbf\xd4\xa1\xbd\x98\x93\xa8\x48\x5b\x50\x9f\xf0\xbc\x46\xcc\x96\x10\x51\xc1\xdb\x5a\x12\x49\x0c\x7e\x74\x19\x22\xcc\xc0\xa6\x65\x49\x64\x70\x27\x6f\x69\xc7\xb7\x70\x98\xc1\xe6\x70\xaf\x6b\x9f\x85\x12\x52\x99\x68\x75\xeb\x80\x35\xa8\x17\xfa\x9b\xe0\x7f\x2b\xe0\xbb\xb1\x20\x25\xe0\x56\x54\x14\xc8\x17\xe9\x42\x1a\xc7\x00\x37\x38\x93\x86\x2f\x24\xcb\x16\x5f\x9a\x27\x1a\x64\xfd\x23\x05\xc6\x67\x2c\x46\x76\x7f\x8f\x07\x5b\xe5\xd2\xd4\x07\x9b\xfa\xdc\x39\x56\x28\x8b\x02\x15\x60\x53\x11\xb5\xbf\x32\xf0\x03\x7b\x7c\x5a\xd5\x02\x01\x3e\x82\xae\x34\x19\xd9\xd8\xf3\x9c\x54\x5b\x58\x88\xf4\x71\x06\xc9\x4d\x5f\xd6\x08\x4d\x26\x03\x4a\x99\xf5\xdc\xbf\x26\xa8\x4e\xb4\xee\x14\x9c\x62\xa0\x41\x0d\x8c\x70\x7b\x1a\x9b\x07\x1f\x74\xed\x23\x93\x25\x85\x07\x2c\xe6\xcb\xd3\x3d\x4d\x54\xee\x91\x79\x16\xf5\xdf\xc6\x4d\x26\xa4\x98\x01\x84\x38\xb4\x55\x73\x93\x45\xdd\x60\xae\x0f\x47\x50\x62\x59\x15\xcc\x82\x9a\xb6\x82\x2d\x6f\x05\xf6\xd2\xbd\xa0\xa7\xbf\x56\x01\xe9\xa2\xed\x6d\xe9\x60\x37\x1d\x17\xe6\xf4\x37\x09\xc9\x67\x8c\xa7\x43\xad\xfb\xdb\x45"}, {{0xcc,0xae,0x07,0xd2,0xa0,0x21,0xfe,0x3e,0x6e,0xe2,0x38,0x36,0xa7,0x11,0xb9,0x7b,0x04,0xe0,0xa4,0x41,0xf1,0x69,0x60,0x75,0x72,0x73,0x1c,0xb0,0x8c,0x26,0x94,0x88,},{0xa3,0x22,0x65,0xe5,0x32,0x8a,0x4f,0x49,0xcf,0x06,0xb4,0x67,0xa9,0x8b,0x9f,0x9d,0x5b,0x99,0x7b,0x85,0xdf,0xb7,0x52,0x3c,0xa6,0xa0,0xa1,0xd6,0x27,0xd3,0x28,0x91,},{0x0e,0xec,0x75,0x41,0x05,0x44,0x7f,0x97,0xd4,0xa9,0xcd,0x24,0x6c,0x7e,0xed,0xe3,0xfd,0x06,0x90,0x18,0xf0,0xd0,0x1a,0x41,0xdf,0xab,0xca,0x3e,0x90,0xa7,0x41,0x83,0x5e,0xa4,0xa9,0xd6,0x82,0x34,0x22,0x67,0xb2,0x50,0xfc,0x1c,0x8c,0x54,0x7c,0x89,0x63,0x2d,0x9f,0x68,0x9a,0xf5,0x36,0xc7,0x92,0x90,0x04,0xde,0xd0,0xd9,0x6f,0x09,},"\xa4\xbf\x82\x97\xd0\xdc\x5e\x4c\x92\xbd\x00\xad\x5b\x9c\x09\xb1\x23\x8b\x50\x3d\x61\x91\x16\xef\x74\x26\x03\x78\x34\x9a\x92\x82\xb4\x1f\x3f\x46\x76\xa6\x21\x5e\x3c\xe6\xd0\x22\x38\x48\x0a\x96\x04\x3b\x29\x42\xb3\xfe\xed\x12\x62\x0b\x1f\xa9\x7f\x77\x03\xb3\xeb\x68\x3c\x16\x01\xbd\x2f\x51\x82\x5c\x45\x0d\xf4\xfd\x1f\x33\xb0\xbf\x9c\x23\xc0\x32\x23\x78\x9e\x06\xe2\x4c\xf1\x36\xd3\xb5\x57\x40\x3a\x66\x98\x1f\x4b\x77\x7d\xcf\xe8\x90\xd2\xba\x96\xda\x4a\x47\x42\xae\xed\xdd\x6a\x61\x1d\x05\xfc\x21\x56\x94\xa5\xd8\x9a\x5d\xe6\x76\x0b\x1d\x94\x15\x15\x50\x44\xc0\x49\xcb\x02\x29\x1a\x15\x14\xfa\xa2\xe7\x7d\x2a\xe3\x3d\x44\x58\x5b\xda\xc6\x36\x5b\xf4\x81\xd9\xc9\x78\x33\x93\x7e\xab\x63\x6e\xd6\x57\x42\xa0\xd5\x97\x3b\x24\xd5\x40\x89\xb2\xda\xf0\x84\xd5\x41\x47\x65\x10\x5e\x4e\xca\x14\xaa\xad\xd1\x05\x33\x38\xa8\x47\x05\x05\x23\x2e\x4a\xc6\x33\x34\x5c\x5c\xde\xe1\xe4\x65\x3d\x1d\x93\x58\x3a\xf1\x18\x54\xb1\xd9\xb6\x5f\xc2\x02\x81\x83\x8c\x56\xdf\x11\x48\xf3\x5c\xcf\x9b\xfe\x2f\x3f\x80\xab\x73\xf5\xb7\x91\xcb\xed\x2d\x92\x06\x44\xcf\x03\x16\xf0\xcb\x5d\x36\x62\xb9\x12\x06\x47\xda\x56\xaf\xbe\xb4\x7a\x95\x29\x53\xbc\x1a\x37\xde\x85\x7e\x4b\x39\xfd\x92\xb6\x32\xb8\x51\x59\xf4\x6c\xd0\x5b\x6a\xbc\x23\x38\xd4\x63\x2d\x48\xe9\xa1\x78\x86\x0d\xe8\xf6\x5d\x9b\xc2\x3f\x24\x50\x7b\x7c\x56\x29\xe0\xbd\xaa\xc0\x67\xc4\x76\xc9\xc3\x94\x1d\x86\xf7\x88\x94\x4d\x74\x48\x52\xa6\x1d\xa7\x16\xf9\x5f\x3b\x04\xf0\x78\x3a\x56\x29\x41\xbc\xdd\xa4\x39\x59\x0f\xd1\x86\xb2\xa8\xeb\xf1\x9a\x5a\x7e\x4f\x4a\x3a\xaa\xb7\xa8\x7a\x43\x45\x24\xfb\xc9\x79\x9c\x99\x31\xeb\x8c\xe4\xe3\x4e\x99\xb6\x08\xca\xc9\x4a\xb7\xe7\x44\x95\x66\x8d\xf1\x36\x18\x5f\x48\x7d\x9f\xbc\xb6\x60\x5a\xd7\x25\x34\x54\x03\xec\x57\xf3\xf6\xdb\x36\x4a\x87\xf3\x8f\xea\x4b\x4c\x27\x15\x52\xe9\xf2\xe4\xa1\xbe"}, {{0xdb,0x5d,0x5f,0x41,0xfd,0xdd,0x67,0x68,0x70,0x97,0x47,0xab,0x82,0x39,0xbb,0x4f,0x42,0xa3,0x1d,0x34,0xb4,0xfa,0x88,0x82,0x4d,0x94,0xbf,0x78,0xd3,0x14,0x92,0x64,},{0x03,0x85,0x8c,0xe6,0xb2,0xd2,0x40,0x79,0xee,0xad,0x66,0xca,0x0d,0xfe,0x77,0x2e,0xcd,0xa9,0xaf,0x4d,0x46,0xbc,0x9b,0x5e,0xdf,0xdc,0x28,0x6b,0x95,0xfe,0x97,0x16,},{0x5b,0x3d,0x0d,0xa7,0x10,0x23,0x55,0x48,0x6b,0xe4,0xd6,0x9c,0xfd,0x65,0x88,0x6c,0x9d,0x9c,0x87,0x38,0xb2,0x93,0xca,0xfb,0x23,0xb2,0x10,0x4b,0xfd,0xac,0x8d,0x7d,0x01,0x29,0x8e,0xeb,0x18,0xfd,0xe3,0xde,0xd6,0x49,0x1d,0x41,0xb4,0x19,0xcc,0x66,0x37,0x52,0xc4,0xe6,0x7d,0xbe,0x89,0x86,0x83,0x3d,0x20,0xe4,0xef,0x34,0x18,0x0b,},"\x67\xee\x03\xde\x45\xc3\xe7\x03\x0d\xb5\x24\x6e\xe5\xb5\x1b\xf2\x98\xbb\xa3\xe4\xd0\x93\x49\x37\xfc\x12\xd9\xa6\x29\x60\x4c\x53\xc0\x70\xe3\x0d\x61\x19\x99\xa9\xcd\xda\xf2\xd9\xac\xda\x6a\x9f\x67\x20\x2b\x35\x23\x69\xd4\x82\x60\xee\xbc\xe0\xe7\x8e\x4d\x5a\xe5\x4f\x67\x75\x21\xf8\x4a\x7b\xe0\x01\x7f\xab\x27\x8b\x2b\x57\x27\x5e\xfc\x5f\xa5\x7c\x61\x71\x86\xfc\x1b\xa4\x9e\xdf\xbd\x33\x08\x63\x48\x78\xd8\x64\xf2\xda\x15\x83\xca\x8d\x56\xce\x9f\xae\x77\xc4\x62\x03\x9a\xbc\x32\xd0\x53\x9c\x0a\x60\xb7\xbb\xba\x50\x29\xe9\x32\x9d\x27\x56\x83\xd9\xc4\xce\x77\xd0\xb9\x08\xad\xe9\x8b\x0e\x32\xb4\x42\x0d\x9a\xee\x2c\xc1\x0e\x4b\xe9\x22\xf9\x57\x25\x82\xdd\x89\x67\x14\x1c\x1d\x40\x2e\x21\x5f\x20\xae\xe0\xa8\x90\xe2\x36\x8e\x40\x6d\xea\x11\xbd\x11\x17\x7f\x2e\x03\x8a\xa2\xf1\xa0\xdf\xf5\x1a\x12\x8d\x95\x5d\x5e\x5f\x8d\x5d\x00\x09\xaa\xa8\x24\x40\xa9\x68\x64\xd6\xc6\x97\xf9\x10\xd1\xdf\x23\x0f\x46\x7f\x0e\x02\xa2\xe0\x2b\xf9\xe4\x5d\xa9\x5f\x25\x54\x10\xcc\x5a\xab\x8d\x85\xf4\x49\xa5\xde\x99\xaa\xbd\x44\xfd\x76\x3e\xc1\x46\x29\xf3\xdb\xab\x1a\x24\x7b\xff\xb7\x17\x46\x48\xe4\x3b\x9f\xb1\xeb\x0d\xf5\xe4\x10\x9b\x7a\x88\xe0\x55\x12\xb2\x08\x65\xba\xd3\x9f\x9e\xa7\x9d\x52\xf5\x18\x8e\x7c\xa5\x19\x44\x05\xbf\xb1\xa0\x97\x27\x61\x7f\x3f\x6c\x88\x19\x20\x08\xed\xbc\x0c\x65\x85\xdb\xf2\x61\xf1\x49\xdf\xfb\x59\x3d\x42\x71\x6e\x5a\x57\x77\xf5\x46\x2b\xee\xb1\xe9\xa5\x6a\x2c\x76\xe6\xcb\x73\x51\x17\xcc\x11\x83\xa3\x8d\x1e\x00\xb3\x03\xd1\x74\xaa\x9c\xf5\xc7\x31\xb2\xc7\x0e\xdd\x79\xcc\x5d\xc9\x6f\x40\x18\xf1\xd7\x1d\x71\x98\xbb\xb7\xd1\x34\xcd\x2f\xf8\xc1\x5f\x9a\x04\x28\x0d\xb2\x6a\x8f\xa9\x99\x7e\xb8\x6b\x13\x3c\x02\x2e\xda\x15\xd8\xad\x5e\x77\xcc\x9f\x62\x61\x59\x60\xba\xc2\xf9\xbb\xc3\xeb\xbd\x19\x8f\x72\xc5\x72\xb9\x71\x56\xfa\x7f\xa2\x29\xa9\x80\x14\xe1\x70"}, {{0x7f,0x04,0x8d,0xfc,0xc2,0x65,0x0c,0xda,0x59,0x49,0x1d,0x4c,0xe2,0xb2,0x53,0x3a,0xec,0xc8,0x9c,0xc4,0xb3,0x36,0x88,0x51,0x94,0xb7,0xad,0x91,0x7d,0xb5,0xcd,0x14,},{0x08,0x00,0x1b,0x5d,0x40,0x95,0x8b,0xcb,0x27,0x0b,0xee,0xa9,0xba,0xba,0x33,0x87,0xe3,0xa4,0xb9,0x00,0xfc,0x42,0x27,0x56,0x57,0xc6,0xc6,0x91,0xa2,0xe2,0x64,0xf2,},{0x58,0x33,0x70,0x97,0x1d,0x24,0x65,0x2a,0xd2,0x13,0xc4,0x26,0x15,0x91,0x19,0x38,0xfa,0x9a,0xa3,0xd9,0xb7,0x19,0x69,0x40,0xe6,0xeb,0x08,0x15,0x12,0x00,0xc7,0xb6,0x72,0x9d,0x1e,0xff,0x8f,0x4f,0x09,0x04,0x07,0x4d,0xab,0x3d,0xdd,0xa6,0xaf,0x1e,0x4e,0x56,0x2b,0x7d,0x62,0x20,0xc1,0xa5,0x62,0x68,0x3b,0xea,0xb2,0x68,0xf8,0x0e,},"\x91\x75\x19\xcd\xb3\x35\x19\x68\x0b\xca\xe0\x4f\xaa\x79\x07\x71\xce\x7d\x13\x97\xc3\x45\xf1\xb0\x3d\xd7\x62\x57\x76\xf3\xf1\x95\x80\x99\x32\x61\x8b\x1c\x64\xac\xd9\x3a\xd0\x00\xea\xd0\x96\x54\xa3\x3d\x14\xf7\x48\xb4\x6b\x67\xaa\xe0\xff\x12\xdf\x3c\xc1\x63\x28\x0f\x47\xce\xdc\x16\xa8\x57\x90\x34\xe4\x98\x84\x29\x67\x72\xec\xbd\xbb\x71\xca\x29\xc1\x66\x23\x35\x33\xc8\xde\x54\x01\x2b\x41\x2c\xa1\x3c\xc2\x58\xf7\xc5\x46\x5d\x83\x42\x2f\x52\x4e\x4c\x05\xf8\x06\x31\x34\x78\x31\x9f\xd1\x43\xcf\x50\x88\xe6\x98\x37\x69\x7d\x36\x15\xd8\x0a\x7f\xa7\xe7\x44\x3f\xca\x65\xe7\x53\xac\x1b\x11\xd8\xef\xf3\x47\x66\x36\xae\x02\xd7\xa2\x0f\x4b\x23\x88\xda\xd6\x84\x00\x2f\x5c\xe9\x57\xca\xdd\xd2\x05\x3d\x0e\xd5\x33\x13\x2a\x81\xca\x19\xbb\x08\x0b\xd4\x3b\xe9\x32\x02\x8c\xb5\xf6\xb9\x64\xf0\x08\xb5\xb1\xc1\xc5\x99\x3b\xc9\xb5\x48\x5b\x22\xbb\xef\x70\x1f\x0a\x26\xa3\xe6\x75\xea\x31\x12\x2b\xba\xe9\x1d\x86\x4b\x54\xd8\x95\xaf\xdc\x79\xca\x58\xd4\xfe\x44\x92\x13\x35\x3b\x14\x9f\x31\x43\xb5\x14\x4d\x74\x7c\x5b\x46\x97\x47\x9a\xe6\x85\x28\x48\x53\x84\x04\x4a\xa2\xc9\x9b\xa4\xb1\x7b\x18\x4e\x94\x98\x22\x69\xbd\xe2\xde\x0b\x17\x70\x5d\x0b\xfc\x46\xd6\x90\x6a\x90\xed\xef\xe8\x91\x95\xde\x6b\xb8\xf3\xfb\x6a\x37\x41\x86\xc7\xcd\x08\x6d\x13\xd1\xb3\x52\x5a\x39\x94\xdc\x80\x20\xe1\xa0\x05\x54\xac\x8a\x82\xd6\x04\x7c\x5b\xff\x5e\x7f\x12\x45\x0f\x48\x65\xda\x16\x1e\x1a\x02\x1f\xd9\xbe\x8b\xd3\x3a\x32\xbb\x54\xa4\xdd\xf8\x74\x51\x2e\x74\xb5\xcf\xd3\xfc\x3c\xd9\xac\x11\xed\xd8\x78\x43\x36\x68\xe3\xfc\xc7\x82\xb9\x7b\x6d\x90\x5a\xdb\x0e\xbe\xc4\x2c\x92\x54\xac\x90\xf3\x58\x22\xc0\x0f\x97\xff\x3f\x0c\x7c\x39\xed\x3c\x7c\xb3\x92\x0f\x56\x08\xbb\x45\x83\x8b\xb2\x42\xa5\x2a\x86\x37\xd7\xce\xcd\xcf\x48\x9f\xa1\x83\xb4\x54\x51\xc6\xc9\xfc\xbb\xbf\x91\x4f\x5f\x7e\x6b\x22\x3b\xcb\x46\x75"}, {{0x9f,0xeb,0x3d,0xf8,0x8c,0x49,0x4a,0x99,0x84,0x9c,0x6f,0xca,0x19,0x42,0x01,0x47,0x7a,0x2f,0xa7,0x56,0x4e,0x29,0xfb,0x06,0xcb,0x44,0xc1,0x15,0x4e,0x8c,0xea,0x3a,},{0xc3,0x56,0x28,0xca,0x6e,0xe2,0x8e,0xc1,0xc2,0x39,0xdd,0xc5,0xbb,0xa2,0xa9,0xe0,0x9e,0x48,0x46,0x81,0x6b,0x14,0x3c,0x74,0xdf,0xa2,0xae,0xc1,0xf6,0x25,0x51,0xb6,},{0xa1,0xc2,0x60,0x78,0x35,0xbe,0xc1,0xa1,0xd8,0x78,0x72,0xfd,0x8e,0xe4,0x88,0xd0,0xae,0x9e,0xd2,0x3d,0x49,0xfd,0x67,0x86,0xfc,0x49,0x96,0x72,0x5e,0x49,0xb3,0x26,0x21,0x18,0xba,0xbb,0x48,0x34,0x87,0x7c,0x7f,0x78,0xfb,0xea,0xc0,0x2d,0xf4,0x0a,0xb0,0x91,0xb8,0xb4,0x20,0xdc,0x99,0x51,0x38,0x1e,0x3b,0xcd,0xa0,0x67,0x05,0x02,},"\x95\xfb\x75\x81\xbd\x25\xff\xd4\x42\xc3\xae\x38\xa1\x9b\xea\x73\x49\xc7\xb7\x68\x3b\xa6\x76\x7e\x14\x8f\x0a\xfc\x15\x37\x3f\x67\xc1\x6d\x47\x17\x81\x20\x2e\x6d\xa8\x05\x4e\xd7\xfb\x9e\xe2\x04\xcc\x0f\x63\xc2\x10\xa6\x70\xa5\xf9\xce\xd4\x29\x45\x88\x19\x63\x30\xd3\x1b\x8e\x83\x92\xbe\xf6\xb4\x8f\xe3\xc9\x20\x78\xfa\xe1\x12\x84\xb4\xc3\xba\x20\xd9\x37\xe2\x71\x9d\xe7\xbf\x67\xc0\x06\x69\xad\x23\xe6\x13\x84\xeb\xdf\x8c\x6e\x60\x73\x54\x28\xc0\x84\xfe\x21\x7f\xdb\x47\x09\xcc\xb6\x08\x3f\xc0\xae\x4a\x05\x27\x3e\xef\x73\x90\x23\xd3\x4b\xb7\x3f\x66\x2d\xac\xdf\x11\x0b\x6d\xbd\x3e\x74\xfc\x14\x91\xe8\xc9\x65\x96\x07\x5f\xae\x5c\x36\xaa\xbe\x2a\x0a\x53\x05\x2b\xf7\x7c\x44\x62\x43\x80\x63\xaa\x7b\xc0\xc5\x0a\xb9\x20\xc9\xeb\x28\x86\x71\x56\x0c\xa5\xba\x7a\xf4\x4a\x53\xdb\x2e\x2f\xf4\x3c\xa5\x60\x69\xea\x55\x17\xcb\x21\x4e\x76\xfa\xa5\x3d\xbd\xa1\x00\x00\x3c\x4f\x61\x75\x41\x40\x41\xbe\x74\xde\x22\xce\x15\x5d\x22\x81\xb6\xf4\x03\x5b\xe3\x98\x41\xaf\xdb\x96\xdd\x89\xaa\x80\x8e\x68\x65\xba\xe6\x2d\x6b\xed\xd9\x19\xd3\xe8\x65\x10\xb9\xfa\x5f\xed\xd1\x97\x7c\x41\x31\xb2\xb8\x6e\x0f\x48\xd7\x21\x5e\xb1\x3d\x54\x98\xca\x5d\x23\x68\xf8\x18\x95\xed\x85\x5a\x52\x71\x24\x65\x7e\xc9\x53\x9e\xfe\x3b\x24\x99\xa3\xb0\xb3\x38\x26\x2f\x26\x34\x0e\x22\x55\x4c\x79\xf4\xfa\xd2\xb4\xe4\x19\xc7\x0b\xc1\xa2\x10\x7d\x20\x64\x56\xb6\x36\x87\x81\xbe\x4b\x5e\x2c\x54\xda\x42\xd3\x36\x04\x0f\xb7\xba\x49\xc3\x2d\x75\x23\x21\xad\xcd\x92\x98\x6e\x78\xbe\xdb\x22\x6c\xea\xc5\x02\x92\x08\x9b\xb5\x79\x02\x7f\x70\x22\x17\x74\x5a\xfe\x06\xa5\xbe\x13\x6b\x39\x98\xa3\x60\x4c\x9f\xf2\xac\xd6\xfa\x3f\x3f\x71\x63\x3d\x31\x02\xfb\xf0\x30\x47\xc5\x48\x6f\x84\xc4\xdc\x24\x47\xd8\x63\x79\x63\x83\xd5\x5f\x08\xc9\x81\xfd\x4d\xd7\xdc\x1c\xb7\x2b\x8b\xa4\x43\x5a\xf6\xab\xdd\x74\xe6\xf6\xe6\x79\x8f\x1a\xe2"}, {{0xbf,0xf6,0x89,0x55,0xdd,0x6a,0xe0,0xe8,0xba,0x85,0xab,0x0d,0x0c,0xda,0xf0,0x4a,0x9f,0x5b,0xef,0xd5,0xef,0x60,0x14,0xf4,0x99,0x94,0xa7,0x83,0x63,0xdc,0x17,0xf7,},{0x0a,0xd9,0x49,0x3a,0xf8,0x0b,0x15,0xf0,0x7a,0x52,0x1c,0xcd,0x67,0x4f,0xe9,0xe5,0x21,0x2a,0x4a,0x28,0xc1,0x7c,0x74,0xf6,0x60,0x5f,0xfe,0xf7,0x8a,0x4a,0xed,0x72,},{0x93,0x19,0xee,0xf7,0x40,0x63,0x3a,0xda,0x1a,0xf0,0xe1,0x37,0x64,0x4c,0x61,0xfb,0x3e,0x11,0xba,0x4b,0x01,0xd3,0xc6,0xf2,0x53,0x92,0xdc,0x93,0x67,0x87,0x2a,0x23,0xbe,0x56,0x31,0x0d,0x31,0x2e,0xfc,0xb9,0x1b,0xdb,0xab,0x78,0xa7,0x5e,0x57,0x6e,0xbe,0x90,0x81,0x97,0x24,0x15,0xf5,0x62,0xdb,0x41,0xba,0xf5,0xe2,0x33,0x8b,0x07,},"\xd8\xf5\x65\x0a\xa3\x58\x1c\x4d\x39\xbd\x1b\x8a\xfc\x96\xc1\xad\x7c\x4b\xf7\x23\x42\x6f\x9d\x7f\xab\xd1\xa5\xc8\xac\x1d\x2f\xe5\x4a\x97\x1f\xac\x76\x5e\x05\xaf\x6e\x40\x7d\x72\x69\xba\xb6\x61\xb3\x43\x22\x92\xa4\x84\xf9\x52\xc1\x10\x95\xbb\xd2\x0a\x15\xd7\x7c\x41\xf8\xf3\x73\x1a\x50\x4d\x51\x8e\xe1\x0c\xd0\x06\xc9\x6e\xe5\x73\x72\xde\x5b\xea\x34\x8e\xc8\xba\x15\x91\x62\x17\x0c\x63\xe9\x70\xf1\xc7\xa3\x46\x5a\x3d\x59\x2e\x1d\x56\xc6\x54\x0f\xbd\xb6\x02\x28\xe3\x40\x90\x96\x46\x32\x0c\x95\xf2\x56\x98\xcd\x48\x96\xbd\xff\x58\xe2\x56\x1e\x3b\x3d\x9a\x73\xb8\x97\x47\x91\x2a\x1c\xf4\x67\xd6\x3e\x41\x45\x5f\xda\x77\x47\x7f\x46\xfe\x69\x37\xbb\x0e\x79\xd9\x2c\xcd\x52\xe8\x2d\xba\x90\x8a\x05\xa5\x7c\x7e\xcf\x49\x55\x4a\xb4\x4c\x0b\x71\x8e\x3b\xdd\x5f\xc0\xbf\x70\x70\xd9\xc5\x8f\x86\x05\x91\xc1\x8b\xca\x8b\x3a\x9a\x14\x8a\x06\x54\x8e\x0f\x01\x60\x2b\x1e\x6f\x68\x60\x37\xc9\x4f\xf7\x32\xe1\x55\xd5\x2d\x5b\x0b\x44\x70\x3b\x3d\x11\x16\x3e\x3f\x56\xe3\xb9\xc1\xb8\x64\x76\xe4\xdc\xbf\xc5\x3f\xa0\x59\x84\xe8\xc7\x5d\xd2\x18\x43\xcf\x96\xf9\xe4\x94\xab\xba\xe7\x18\x4a\xa4\x27\x36\x63\x3e\x38\x11\xae\xff\x40\x2b\x2f\xcb\x7d\x7f\x70\x2e\x44\x72\x41\xe2\x2a\x58\x84\x2f\xd6\xd0\xc0\x3d\x33\xff\x5b\x8c\x79\x22\x00\xe1\x73\xda\xa7\xb2\x17\xe4\xb2\xf4\x43\x3e\x6c\x02\x0a\xcc\xe5\x01\xb9\x32\x3a\xa0\x24\x11\x44\x43\x4b\x08\xe9\xd2\x46\x91\x39\xff\x67\x34\x22\x08\x90\x05\x46\x20\x0f\xd9\x71\xa6\x5d\xbd\x6d\xb6\xc2\x1e\x3e\xf9\x17\x2a\xbb\xa1\xea\x9e\xa2\xa2\x49\xad\xdf\x1a\x1e\xaa\x3c\xe1\x19\x38\xb1\x3e\x30\x91\x3c\xd0\xda\xd4\x91\xfc\xbb\x32\x85\xea\x37\x8b\x8e\xf9\x22\x7f\x3f\xa8\x0b\x58\x6e\xcf\xea\xe1\x37\x06\x6f\x84\x48\xac\xdf\xb7\x8d\x6d\x3e\x9e\xf4\xa6\xb3\x62\xdf\x42\x41\xad\x9a\xe2\x53\xb8\xe1\x59\x7d\x65\x6e\x00\x0c\xea\x44\x7a\x02\xfa\x49\x33\x32\x86\x09\xbb\xa0"}, {{0x1b,0xa9,0x19,0xc0,0x66,0xbb,0x56,0xe6,0x40,0xc3,0x33,0x59,0x68,0xe1,0xd1,0xb5,0xbc,0xc0,0x93,0x38,0x3e,0x2d,0x7c,0xf8,0xb5,0xff,0xf5,0xc6,0x1e,0xc4,0x7a,0x77,},{0x80,0x4c,0x90,0xbd,0xc2,0xb3,0x61,0x8b,0x01,0xf0,0x75,0xe0,0x41,0xfa,0x97,0x1b,0x83,0xc5,0xb6,0xcf,0xa3,0xb6,0xb3,0x97,0x4f,0x3f,0xa4,0x35,0x99,0xbe,0xac,0xab,},{0x50,0x3e,0xb7,0xed,0x6d,0xe1,0xb7,0x76,0xc9,0x52,0xf2,0x55,0xbb,0xd4,0xbc,0xfb,0x0e,0x48,0xbc,0x70,0xc2,0xcc,0x2f,0x1f,0x72,0xbf,0x68,0x81,0x47,0x90,0x40,0xc4,0x75,0x24,0xec,0x54,0x2a,0xe1,0x3f,0x60,0x05,0xca,0x50,0x16,0xb5,0x8b,0x73,0x6a,0x50,0x89,0x8d,0xd0,0x56,0x9d,0x4d,0x38,0xad,0x29,0x86,0x30,0xd6,0x8a,0xdb,0x0b,},"\x87\xc5\xc7\x5d\x8a\xd0\x7d\x52\xac\xd7\x81\xd1\xbb\x95\xf7\x8c\x70\xe2\x1c\x2d\xd6\x6f\x7a\xa4\x42\x34\x15\x2f\x98\x23\x4d\x12\x83\x58\xa8\xae\xe9\x8e\xa9\x03\xa7\x7b\x44\x1d\xb1\x44\x7a\xe6\xff\x34\x32\xdd\xd4\x57\x0f\x7f\x58\x03\x61\x22\xc1\xfd\xcc\x93\xcb\x21\x57\x37\x39\xc1\x9c\xca\xa4\x11\x50\x8e\x08\xde\x26\x06\xf3\xd8\xf2\xdb\x89\xdf\x6a\x44\xa4\x61\x33\xd5\x70\x18\x46\x26\x27\xe2\x2f\x57\xef\x36\xd1\xde\x02\x4d\xe3\xd4\xae\x41\xb7\x52\xdf\x48\x21\x15\x59\x34\xb4\x47\xb2\xef\xfe\x51\x24\x87\x52\x1b\xe0\x35\x68\x32\xa7\x4c\xe0\xe2\xd8\x30\x1b\x79\xf9\x31\x75\xe8\xb6\xb9\x61\xb1\xdf\x63\x7d\x8a\xca\xdc\x88\x45\x43\xc6\x86\x4f\x80\x25\xec\xec\xec\x7c\x6e\x4f\xe0\xfe\xcf\xc4\x0d\xcd\x95\xe8\xd6\xab\x93\xce\x25\x59\x53\x84\x43\x6b\x59\x8b\x73\xc7\x4b\x03\xd4\x9e\xd5\x00\x2c\x0f\x85\x8c\xfd\x9d\x0d\xf6\x1e\xde\x93\x7c\xc4\x16\x59\xd6\x70\x8b\x96\xfc\x5a\xaa\xde\xe1\x09\xe2\xa6\x88\x46\xba\xf2\xc2\x46\xdf\xcf\x3d\x27\xc2\x8b\xd1\x37\x1e\x35\xfc\x94\x12\x63\x14\x42\xee\x75\xf3\x8c\x6e\x49\x58\x07\x0a\x74\xf6\xe6\xa2\x20\xf7\x5c\x72\x80\xea\xb4\x73\x7d\x97\xe3\x78\x82\xf3\x62\x48\x11\x67\x5f\x16\xca\xf6\x0c\xb9\x44\xbc\xe9\x2e\x75\x88\x4c\x56\x48\x3c\x61\xf2\x6b\x63\x71\xb1\xb5\x12\x37\x62\x1a\x06\x54\x3e\xb4\xab\xea\x7b\xec\xc4\xfc\x31\xdb\xb5\x47\x5b\x3d\xeb\x9b\xb3\xc8\x99\x23\x87\x10\x48\x30\xc6\x07\x2a\xfe\x1a\xf2\x44\xbf\x68\x1a\x40\x32\x9c\x9b\x37\x77\x2b\x09\xc5\xe8\x8e\x78\xf7\xdf\xfb\xc0\x45\x49\xff\xa1\x3b\x41\x44\xdd\xfa\x53\x8f\xc4\xb3\x30\x05\x40\xad\x83\x02\x15\xe2\x5f\x11\x44\x6d\x28\x9f\x33\x12\x2c\x2c\x88\x0d\xe3\xda\x71\xc4\x53\xd7\xe8\x8f\x7c\xa4\xea\x3d\x12\x55\xe8\x2f\x4b\xc9\xe5\x53\x3d\xc4\x01\xc3\x30\x40\xe1\x69\x40\xb2\xcf\x9c\xf2\x1f\xea\xca\x1c\x2c\x6c\x33\x33\x7c\xf7\x5e\x18\x84\xb4\x83\xbf\x80\x15\x36\xd3\x04\x08\x91\x15\xa0"}, {{0x9b,0x36,0x24,0x7c,0x17,0x71,0x0e,0x95,0x26,0x1a,0x7d,0x70,0x2f,0x57,0xfe,0x81,0xf2,0x97,0x11,0x17,0xa5,0x0c,0x87,0x92,0x01,0x93,0xb3,0x86,0xd4,0x94,0xca,0x97,},{0x29,0xae,0x39,0xf2,0x73,0xe3,0x5f,0xb3,0xf6,0x11,0xda,0x09,0x16,0x00,0x65,0x0e,0xfb,0xc4,0xfc,0x4d,0x1e,0x7b,0x4c,0x76,0xac,0xed,0x5a,0x83,0xf8,0x26,0x34,0xf3,},{0x03,0x59,0x70,0xa6,0x72,0xe9,0x3f,0x87,0xeb,0x42,0xcc,0x39,0x6f,0x6e,0xa7,0xe1,0xb3,0xdd,0x5c,0x59,0x51,0x57,0x28,0x26,0xd1,0x07,0x5a,0x15,0xc2,0xd7,0xe4,0x54,0xdf,0x19,0x5b,0x51,0xaa,0xe8,0xdc,0x61,0xef,0x7a,0xb8,0x95,0x48,0x5f,0x64,0xe5,0x98,0x95,0x73,0xd9,0x8a,0x06,0x2e,0x67,0xae,0x73,0x56,0xfe,0x5c,0x9e,0x3b,0x0f,},"\xe8\xd9\xd5\x3b\xa2\x7e\x98\xed\xd5\x5d\xf3\xc6\xb2\x45\xea\xcd\xdc\x8a\x40\xe3\xef\xb0\x07\xbc\x91\x8e\xc5\xa8\x69\x17\x8a\x17\x0b\xb4\xa6\x35\xb7\xf8\xf7\x42\xe3\x7a\xd4\x5d\x14\xa7\x43\x44\xa6\xb5\x22\x83\x0a\x52\x21\x06\xeb\x96\x0d\xaf\x19\x2d\xc1\xe0\xfd\x70\xf1\x61\x60\xe1\x22\x51\x68\x92\xd0\xe2\xab\xd0\xd4\xae\x0f\x0d\x2e\x5a\xdc\xc9\x9a\xd5\x53\x02\xe2\x51\xb3\xe7\xa4\xd0\xcb\x33\x77\x4a\x49\x70\x49\x90\x5c\x33\xde\x1f\xbb\xc1\xad\x2b\x6c\x64\x52\x95\xfe\x41\x6b\x4d\x12\xb2\x32\xef\xe0\xa3\x3c\xd2\xad\x87\x32\xeb\xa1\xc3\xcb\x0e\xae\xb0\xb2\xa5\x7f\xa0\x3e\xc5\x67\xca\x29\x21\x0b\xf6\xff\x95\x42\xa7\x66\xf4\x96\xfe\x68\x05\x8a\xa9\x83\x80\x6c\xbe\x7a\xb1\x0a\x47\x92\x0b\xac\x82\x48\x81\x8e\x54\xa4\x15\x51\xc9\xa0\x95\x9e\x89\x94\xca\xc6\x0f\xc8\x68\xad\x48\xb5\xa2\x4d\x5f\x24\xa7\xa5\xa3\xfd\x90\xb8\x47\xe8\x17\xad\x3d\xd5\xd0\xd6\xf8\xde\x2d\x20\x4f\x64\x24\x83\xbd\x53\x58\x5a\x92\xef\x92\x54\x15\xa9\xb3\x8f\xbb\xf0\x7f\xc0\xf3\x5e\x70\x75\x69\xcf\x48\x8b\x20\x54\x53\xce\x54\x33\xeb\xa6\xfd\xe8\x78\x1a\xf7\x2b\x52\xbf\xbc\xab\x85\xea\xd3\x85\xd9\xd3\x17\x5e\x21\xad\x33\x73\xad\x53\x5c\xf0\xe3\x57\xed\x6b\x53\x83\xef\x38\x29\xa9\xd5\x09\x5b\x87\xdc\x9a\xad\xbe\x0c\xa7\xab\xad\xf3\x3e\xc3\xb6\xff\xd6\xeb\x94\xaf\xdc\xc1\x2e\x8d\x66\xa6\xfc\x05\xac\xf9\x73\x68\xdb\x0f\x69\x56\x5d\xcd\x8f\xef\x4d\x1e\x49\xd7\xdd\x4a\xc0\x53\xc2\x18\xf5\x24\x0c\x81\x2d\x4e\xbb\xa4\x40\xdc\x54\xca\xcd\xdb\x1c\x39\x32\x9e\x5b\xd0\xc3\xc8\x0d\xc3\x25\x9a\x80\xf0\x59\xf9\x46\x79\xaa\x07\x94\xca\x01\x15\xcc\x62\xaf\x25\xe1\x24\xcb\x8a\x9d\x41\x60\xea\xce\x6d\x22\xc7\xb1\xc4\x45\x44\xf8\x11\x42\xa1\x9e\xbb\x02\xa9\xbd\xa6\x42\x9c\x50\xe7\x83\xdb\x4a\x07\xf0\x21\x9e\x85\x7c\x8d\x3c\x56\x55\xa5\x82\x83\x1c\x8e\xab\xc3\xf1\x9b\x59\xad\x8d\x2c\x71\x4a\xde\xaf\x40\x39\xd5\xcf\x70"}, {{0x6f,0xed,0xe7,0x39,0x6c,0x46,0x20,0x33,0x18,0x9a,0xcd,0x23,0xd2,0xf9,0xd0,0x2b,0x68,0x89,0x8d,0x35,0xf3,0xa0,0x1a,0x79,0x8f,0xc2,0x4d,0x48,0x8d,0xe9,0x3a,0x78,},{0xb3,0x40,0x62,0x06,0x0b,0x2c,0x20,0x07,0x6a,0x98,0xfe,0xa9,0x39,0xb3,0xb3,0xa5,0x04,0x51,0xa5,0xf4,0x9f,0x83,0x51,0xc0,0xad,0x75,0x91,0xdb,0xbe,0xbb,0x13,0x0f,},{0x88,0xa8,0x3e,0x20,0x12,0xd2,0x09,0xca,0x03,0xb8,0xeb,0xf6,0xde,0x5b,0xb7,0xef,0x4c,0xcb,0x5e,0x3d,0xf5,0xca,0xc7,0x89,0x54,0xaa,0x69,0x49,0x30,0xe4,0xde,0x82,0x54,0x4e,0xf5,0x08,0x3c,0x48,0x92,0xdb,0x9f,0x05,0xd7,0x7b,0xf6,0x3f,0x4f,0xdf,0xce,0x15,0xa4,0xd1,0xc3,0xf8,0x5b,0xae,0x80,0x77,0x06,0x2b,0xec,0x0e,0x7b,0x07,},"\x5a\xbc\xc1\x4b\x9d\x85\x78\xde\x08\x32\x1d\xe0\xd4\x15\xe3\xd4\x0e\x9d\xe3\x1e\x18\x88\x13\x74\x75\xce\x62\xbc\x6f\xbe\xe8\xfd\xd0\x3b\x9d\x47\xc7\xb8\x8b\xbc\xeb\x80\x44\x44\x49\x0b\xf6\xa3\xcc\xb7\xa2\x73\x26\x1e\x24\x00\x4e\xa6\x7c\xef\xa3\xd5\xd1\x73\x57\x6d\x01\xe3\x8f\x76\xc1\xe0\xe5\x15\x08\x3c\x97\xe7\x99\x14\xac\xf2\xbe\x41\x60\xef\x93\x60\xbb\xe9\x86\xb3\x6e\x9f\xf9\x33\x46\xb0\xe7\x06\x91\xd9\x34\xe4\x7f\x8a\x50\x3f\xa9\x33\xab\x2a\x50\x42\x69\x47\xcd\xa8\xe8\x10\xc9\xeb\xe3\xb3\x69\x82\xf0\x9a\xee\x60\x92\x73\x9f\xa2\x35\x8b\x61\x3c\x7f\x12\x9d\xb0\xdc\xbe\x36\x8b\xee\x52\xf2\xf7\xf1\xdf\xe3\xd2\x43\x46\x05\xb5\xaf\xcf\x25\x60\x71\x71\x7d\x92\x4f\xd0\x80\x3b\xbd\x0d\xd1\xf9\x55\x5c\xe8\x34\xda\xc7\x81\xdf\x4c\xc7\xaa\x19\xe7\xf1\x1d\xa9\xfb\x99\xcb\x9e\x6b\x9e\x1e\x6f\xb4\xf7\xe8\xdc\xb2\x23\x6c\x28\xae\xb6\xcb\xc5\x5a\x13\x0e\x03\xc1\xb1\x7a\x99\x1c\xca\x1b\x79\x4e\x6c\x13\x73\x2d\x5b\x0a\x66\xf6\xeb\xa8\x60\xec\xb9\x85\x55\xaa\x4c\x21\x8d\x11\x2b\x11\x6b\xce\x23\x82\x95\xde\x14\x27\x41\xf6\x87\xbe\x0b\x24\x87\xf5\x8f\xfc\x5c\x12\xa0\xa5\x19\xf1\xe2\x37\x93\x24\x2e\xf8\x57\xed\x39\x8a\x20\x69\x9d\x43\x51\x45\x3f\xc2\xf0\x92\x76\x2a\xbd\xe3\x4f\x4d\xa2\xdb\xe0\xce\x2a\xab\xaf\x6b\xc4\xc0\x15\x9f\x3f\xe1\xae\xa1\x6a\x03\x6f\x7e\xae\xcd\x62\x95\x38\xf3\xe0\xee\xd8\x3c\x9a\x4d\xc1\xab\xc2\x38\xf9\x0d\xaa\xf4\x89\xfd\x61\xb3\x4d\x93\x7b\x6f\x46\x07\xa7\x88\xba\xa8\x20\x61\x94\x3d\xba\xb2\x6c\x1d\x38\x4d\x8d\x49\xf9\x93\x48\x80\x0b\xf3\x61\xf8\x71\xf5\xd6\xcd\xa1\x8f\x68\x99\x18\xce\xc3\x1a\xd1\x58\xf1\x86\x3d\x13\xff\xac\x54\x05\xc1\x62\xc3\x2d\xe0\x6e\x32\x99\x4c\xc4\x10\x6f\x95\xbb\x4f\xff\xdb\xef\xe7\xd6\x29\xec\x77\x97\x39\x46\x09\xfd\xbf\xea\xdb\x46\x92\x73\x70\xa1\x1f\xb3\x84\x71\x54\x0f\x95\x1b\x93\xc6\xeb\x23\x86\x68\xdc\x00\x6c\x21\x66\x0b\xa2"}, {{0xd5,0x59,0x58,0x01,0x34,0xab,0x05,0x0a,0xca,0x44,0x6e,0xa7,0x75,0x0e,0xf6,0xb3,0x71,0xd9,0x2d,0x76,0x45,0xec,0x76,0x35,0xfe,0x78,0x51,0x10,0x0b,0xc4,0xe5,0x1e,},{0xde,0x50,0x20,0xcd,0x21,0xa8,0xb3,0x23,0x39,0xde,0xcb,0xed,0xff,0x24,0x66,0x4d,0x95,0x80,0x32,0x63,0x27,0xae,0xdf,0x09,0xc5,0xec,0x6b,0x3f,0xe5,0x40,0x52,0x26,},{0x6f,0xcb,0x1a,0xc9,0x29,0x0a,0xb7,0x67,0xd5,0x9b,0x59,0x8c,0x9a,0x24,0xec,0xdb,0x6c,0x05,0xbb,0x02,0x3e,0xc3,0x60,0x14,0xa4,0x0d,0x90,0x8e,0xf0,0xdc,0x37,0x8a,0x45,0x28,0xb3,0x76,0x0d,0x88,0x9a,0x79,0x17,0x4e,0x21,0xca,0xe3,0x5d,0xf4,0x5d,0x42,0x7b,0xa6,0xea,0x81,0x2b,0xdd,0xca,0x16,0xe3,0x5a,0x69,0xb5,0xe7,0x9f,0x0a,},"\x68\x42\xe3\x19\x0a\x11\x0e\xee\x96\xc5\x07\xd4\xbc\xb4\xc5\x48\xc3\xa0\xed\x7b\x1a\x8e\xd7\x7d\xd9\x3b\x38\x61\x3b\x23\xc7\x3e\x83\x0b\x20\x5e\x62\x65\x19\x21\xad\x82\x96\xb0\x8d\x1e\x10\x08\xad\x78\xf2\x99\x6e\x3c\x7f\x38\x03\x2e\x46\x7c\xff\xec\xd7\x7b\x85\x25\xe2\x43\xce\xc0\x21\xf8\x52\x96\xaf\xd5\x45\xd7\xbe\x1a\x62\x56\x8b\xb0\xcf\xcd\xb9\x0d\x61\x4e\xd7\x98\xbf\xb7\xef\xc6\x55\x32\x68\x16\xa6\x10\x82\x25\x1d\xf0\x16\x13\xaa\xc8\x8e\xfc\xea\x1e\x0e\xa2\x96\x1b\x8f\x92\x1e\xbe\x15\x58\xde\xe8\x33\x74\xa0\x11\x3a\x78\xc5\x58\x57\xce\x20\x55\xbb\x2c\x48\xba\xdb\xd3\xd8\xf4\xcb\x19\x73\x4d\x00\xd0\x60\x4b\x61\x90\x73\x02\x0d\x72\xa9\x9a\x19\x23\xe6\x16\x0a\x09\x94\x65\x67\xfd\x4b\xda\x66\x44\x2e\xf5\xa7\x36\x07\x86\xd1\x78\xda\xe4\x49\x22\xf3\x50\xce\x2e\xdc\x6a\xf7\x3d\x1b\xd8\x0d\xc0\x3e\xc3\xca\x70\x05\xf4\x10\x9d\x10\xc6\xd4\xf7\xd8\xfa\x61\x73\x51\x10\xf8\xdb\xae\xdf\x91\xa0\xba\xd7\xd7\xfb\x5c\x04\xd7\x06\x37\x3c\x15\xc6\x45\x06\x3f\xf4\xb4\xfb\xd2\xd5\x59\xb0\xaf\xad\x43\x2d\x4c\x49\x6c\xd8\xab\xfe\xa2\x86\xfa\x67\x5d\xc0\x76\x72\x6e\xc5\x22\xb3\xa3\xc2\xf4\x7a\xec\xc5\x39\xf4\x8a\x79\x21\x69\xc4\xcc\x8c\xd4\x1c\xd2\xcb\x6b\x63\xdd\xbc\x19\x37\x3a\xc9\x69\x1c\x2b\xc2\xf7\x8f\x22\x60\x3d\x55\x13\x71\x5a\x16\xd4\x57\x4e\x7a\xcc\x4b\xea\x6d\xcd\x8c\xa7\xf1\x98\x65\xa4\x9d\x36\x64\xa2\x10\xdf\xad\x29\x07\x74\xb1\x0b\x71\x88\xf2\x55\xb3\xbe\x4d\xc8\xfa\x86\xf8\xda\x3f\x73\xa4\xe7\xc9\x29\x95\x1d\xf3\x0f\xe6\x6a\x17\xc8\xce\xe2\x3e\x4f\x2e\xd2\x06\x3f\x0b\x02\xab\x40\x37\x2c\xbe\x54\xb9\xa7\x08\xdf\x7c\x48\xa0\x65\x66\xd3\x9b\x19\x43\x4c\x6c\x76\x69\x87\xb3\xeb\xb0\x06\x75\xf4\x4c\x4b\x3c\x1e\x9f\x45\x04\xe7\xa9\x27\x05\x89\xc0\xd0\xf4\xcb\x73\x42\x35\xa5\x8e\xf0\x74\xcf\x9d\xec\xf3\x60\x1a\xee\xca\x9f\x1d\x8e\x35\x6c\xb2\xdb\x5f\xce\x79\xcb\xc3\x61\x43\xf3\x4b"}, {{0x9d,0x4c,0xe9,0x75,0x54,0x78,0x76,0x63,0x6f,0xea,0x25,0x43,0x7c,0x28,0x80,0xc9,0xaa,0x8e,0xe6,0xb2,0x70,0xd1,0xb2,0xda,0x19,0x7c,0x8d,0x7f,0x95,0xe7,0xdc,0xcc,},{0xbd,0xe4,0x99,0x3c,0x03,0x04,0x77,0xc3,0x58,0x90,0xaa,0xe8,0x2b,0xb5,0x08,0x7e,0x91,0x4e,0x64,0xb9,0x4f,0xfc,0x64,0xe2,0xd7,0xa5,0xa7,0xc9,0x19,0xe2,0xd9,0x02,},{0xbe,0x17,0x44,0x4c,0xd4,0x65,0xa8,0x7a,0x97,0x1d,0xf8,0x4e,0xb1,0x02,0xf9,0xc7,0xa6,0x26,0xa7,0xc4,0xff,0x7a,0xea,0x51,0xd3,0x2c,0x81,0x35,0x3d,0x5d,0xbc,0x07,0x39,0x3c,0xa0,0x3d,0xb8,0x97,0xd1,0xff,0x09,0x94,0x5c,0x4d,0x91,0xd9,0x8c,0x9d,0x91,0xac,0xbd,0xc7,0xcc,0x7f,0x34,0x14,0x4d,0x4d,0x69,0xeb,0x04,0xd8,0x1f,0x0c,},"\xea\x0f\xa3\x2a\x4a\x28\x88\x11\x30\x1b\x9e\xe5\x33\xfa\x35\x1f\xdf\xbf\x6b\xc1\xd0\x55\x5a\x74\x02\x76\x7a\x3a\x91\x98\x55\x8f\x74\xbb\xa7\x03\x18\x57\x99\x5b\x9f\x32\x62\x26\xf1\xdd\x5d\xf1\x07\xb0\x63\x42\x20\x3e\xb8\xd4\x0c\x5f\x1d\xc9\x5b\x4f\x3f\x88\x97\x5a\xa2\x4a\xf8\x76\x9e\x26\x70\xc4\x66\x71\xbe\xbb\x7a\x0f\x1b\x75\x68\x72\x9a\xee\x47\x7e\x89\x88\xaf\x9c\x74\x9f\x32\x02\x70\x81\x71\xfd\x94\xb3\x37\xae\x67\xed\x21\xa6\xc4\x41\x74\x01\x4b\x0b\x0e\xb5\xba\x71\xc2\x77\x97\x8d\x48\x8c\x24\xc4\xa7\x84\x13\x09\x84\x6b\x4e\x30\xa4\xfb\xbc\xfc\x45\x07\x8d\x7e\x14\x01\x41\x14\xb1\xac\x64\xf7\xc3\x3c\x9a\xc2\x5e\xa5\x62\x6c\x2c\x81\x9f\xba\xa2\xa4\xde\x8a\x2b\xf5\xf1\x36\x5d\x6b\x70\x40\x7e\x80\x94\xf9\x91\x97\xce\x1f\x0c\x35\xe1\x1a\x98\xfb\xe3\x72\x41\x4e\xa2\x06\x4a\x3a\x12\xd1\xcd\x5c\x8d\xf8\xfc\x0e\x79\xf5\xb7\x70\xb5\x8f\x47\x7f\x91\x97\x6c\xa0\x13\x98\x95\x12\x0e\x24\x6b\xaa\xb5\xa0\x26\xf2\xd3\x9c\x68\x7d\xc0\x78\x83\x34\xb5\xc6\x26\xd5\x2c\xde\xbe\x05\xea\xf3\x08\x64\xb4\x13\xee\xbd\xc5\x58\x1e\xf0\x0d\x43\x92\x76\xe5\x2f\x47\x9c\x9c\x05\xb1\x16\x39\x58\x26\xb6\x04\x90\xb3\xce\x70\x0c\xc0\x02\x7f\x61\xe4\x6c\xa2\xf6\xfb\xc2\xc9\xde\x2e\x80\x08\x06\x55\x0a\xfb\x06\xd4\xa0\x8e\xac\x7a\x75\x8e\x24\x58\x2a\x4d\x6d\x42\x8b\x43\x3d\x36\x5f\xc3\x1d\x44\x44\x60\x7a\xfb\x64\xf1\x5e\x37\x07\x94\x00\x5a\x3a\x22\x44\xe6\x66\xd5\xd4\xc3\x8a\xd2\x00\x9c\x76\x9a\x51\xcd\xbf\x73\x8d\x23\x59\x42\xf4\x12\xd0\x7f\xee\xb7\x3b\x36\x57\xd0\xb0\xc9\x1c\xb5\x94\x0b\xad\x6a\x70\x6e\x14\xed\xcd\xc3\x42\x25\xb1\xc1\xf3\x8b\x1a\xbe\xcb\x2a\xdc\xaf\x81\x91\x55\xa9\x4f\xe1\x90\xfd\x55\x68\x22\xd5\x59\xd9\xc4\x70\x85\x4d\x3a\x43\xbf\xb8\x68\xda\xdd\x6e\x44\x3d\x98\xee\x87\xe4\xd8\x28\x4f\x5c\xf3\xa6\xda\xfa\xf2\x95\xb9\x02\x83\x6c\x64\x05\x11\xe6\x10\xae\x7d\x0c\xb1\xb1\xd3\xd6\x07\x9f\xe6"}, {{0x02,0x73,0x86,0x82,0x32,0xf5,0xbe,0x48,0x59,0x2c,0xfa,0x05,0x13,0x4e,0x8d,0x55,0x54,0xed,0x1f,0x9a,0x57,0xbc,0x7e,0x39,0x82,0xa3,0x30,0xc5,0x7e,0x5a,0x7f,0x3a,},{0xf1,0x72,0x20,0x87,0x82,0xdb,0x66,0xd4,0x66,0xcb,0xe4,0xf4,0x41,0x7f,0x6f,0xc4,0x77,0xb7,0x34,0x9f,0x2a,0x98,0xdb,0x56,0xc0,0x3a,0x47,0x22,0x75,0x46,0xbc,0x5a,},{0x15,0xe8,0xd8,0xdc,0x7d,0x5d,0x25,0x35,0x9d,0x6a,0x10,0xd0,0x4e,0xe4,0x19,0x18,0xa9,0xc9,0xdf,0x4c,0x87,0xbe,0x26,0x9f,0xa8,0x32,0x43,0x4d,0x53,0x01,0xdb,0x02,0x24,0x81,0xbf,0xa3,0x95,0xa3,0xe3,0x46,0x6f,0x95,0x54,0xce,0xee,0x05,0x32,0xa8,0x18,0x3a,0x0d,0x05,0x50,0xe7,0xd1,0xab,0xe9,0x9f,0xc6,0x94,0xc6,0xff,0x93,0x01,},"\xf7\xa1\xd4\x61\x4c\xc6\x4a\x3b\xc4\x8f\x00\xc6\x27\x63\x04\xf3\x4d\x4d\xfd\x15\xe0\x61\x7b\x93\xcc\xef\x12\x6c\x5c\x63\x8c\x9d\x99\x53\xaa\xbb\x7d\xf4\x2d\xf4\xe0\xaa\xa7\xea\xc9\x6a\x4b\x38\xc7\xba\x75\x8d\x86\x0c\x90\xd0\x5e\x3d\x14\xe4\x79\xe5\x45\xf3\x19\xb0\xe5\xa8\x5a\xd8\xf0\x99\x1b\x43\xd6\xe4\x9c\x24\xfa\x06\x0e\x3e\x5d\xf9\x5c\x98\xd9\x45\x1a\xb8\x33\xe1\x2a\xa9\x7f\x40\x46\x11\xbb\xa3\x59\x49\x62\x65\xa6\xdb\x11\x91\x7d\x0d\xa5\xc6\xa7\x02\xd0\xb1\x02\xde\x36\xdd\x0c\x98\xdf\x5b\x54\x80\x6c\xe6\x26\xbb\x96\x37\x44\x75\xf6\x8a\x60\x60\xeb\x35\x0a\x7d\x2a\xae\x32\x04\xb3\xdf\xdf\x9f\x1e\x31\xbe\x81\xf7\x17\x0f\x8a\x1b\x93\x85\x41\x3f\xf8\xf6\x88\x1e\x10\xc1\xe8\xda\x4c\x88\xaf\xb5\x06\x39\xab\x44\x88\x7a\xca\x2a\xbe\xec\xed\xf1\x10\xd2\x95\x8c\x13\xfd\x33\x90\xd1\xb9\x6a\x76\x2d\x16\xce\x19\x69\x20\xce\x85\xf6\xc4\x15\xbe\xd5\x45\xb1\x44\x53\x02\xa6\xf0\x01\xeb\x8d\x00\xe9\x7c\x75\x18\x87\x86\x8d\x48\x1a\x0b\x1e\x4d\xfa\x04\xb6\xf7\x61\x08\x6e\xe8\xe6\x97\xb0\x19\xe0\x17\x10\x4b\xaf\xb9\x8f\xca\x24\x2e\x33\x4c\x6f\x18\xf1\xdb\x5b\x6f\x29\x5f\x05\xc5\x59\x36\x1c\x68\x31\xda\xbc\x42\xc2\x11\x07\x03\xf9\xd1\xf6\x4e\x12\xdd\xf2\x6a\x86\x79\x85\x4e\x9f\x8e\xf8\x47\x9e\x1f\x12\xc3\x54\x47\xaa\xc0\x2e\xa7\xf2\x42\xe5\x86\x32\xcf\x2f\xd0\x63\xfe\x66\x50\x70\x44\x5b\x80\xf3\xdc\x6a\x33\x03\xbb\xa9\x6e\x05\xfa\x88\xee\xc2\x01\xc5\xc2\xd0\x0c\xa8\x1b\x8d\xa6\x96\x9d\x0a\x4d\xd0\x48\x3b\x34\x77\xd3\x25\xa7\x1f\xac\xd6\xfa\x22\x09\xb4\x8c\xb4\xf6\x52\x5d\xa7\x3c\x9c\x05\xb2\xd9\x78\x9b\x01\x44\x8e\x15\x27\xe5\x6a\x09\xa9\xbc\x61\x36\xd9\x83\x72\x43\xc2\x07\x7b\x92\x5b\xbb\x93\x3f\x8f\xb1\xda\xac\x96\x33\x98\xc5\x80\x2a\xed\xa3\xbb\xca\x8a\xe3\xb8\xf4\xa9\xa8\x71\xf7\xea\x8e\x2c\x0c\xe8\x98\xc5\x66\x21\x7b\x5c\x06\xff\x55\xff\x9f\x4f\xe7\x83\x98\xae\x79\x73\x64\x1e\xaf\xb5\x21"}, {{0x33,0x6a,0x83,0xb5,0x5a,0xbf,0x4c,0x02,0xe2,0x5e,0x54,0x03,0x29,0xb5,0x27,0x58,0x43,0xc2,0xec,0xb8,0xdf,0x69,0x39,0x5b,0x5a,0x5e,0x24,0x1b,0xd0,0xd8,0xc1,0x0d,},{0xdd,0x60,0x56,0x98,0x44,0x57,0x0c,0x9f,0x0a,0x82,0x64,0x3f,0x44,0x64,0x78,0xb5,0xac,0x6f,0xc5,0x42,0x21,0x42,0x31,0xa7,0xca,0x65,0x6a,0x92,0xb5,0xfd,0xaa,0x54,},{0xd2,0x63,0xf5,0x6d,0x59,0xcb,0x9b,0x28,0x96,0xa9,0x47,0x26,0x7c,0x2e,0xd7,0x8a,0x94,0x5b,0xac,0x5a,0xbd,0xbf,0x3c,0x14,0xdc,0x3a,0xd0,0x92,0xb2,0x30,0x8c,0xb9,0x31,0x5c,0x46,0x49,0x42,0xa0,0xa2,0x0b,0x20,0x24,0x51,0x1d,0x76,0x6e,0x85,0xc9,0x36,0x49,0x9a,0x14,0x9c,0xd0,0xbb,0xb2,0x09,0x15,0x0a,0x16,0x43,0x26,0x52,0x00,},"\x9a\xfe\xe8\xab\x48\x20\x10\xe2\x92\x64\xb4\x06\xd9\xb4\x94\x53\xd1\xce\x6d\x55\x09\x39\x07\x21\x82\x86\x3e\x46\x65\x28\x4a\xb0\x5d\x86\x25\x8e\x06\x23\xb1\x87\x54\xc4\x78\x52\x38\xf6\x97\xf0\x75\xad\xfb\x9e\x1d\x31\xa4\x2e\x85\x93\x4e\xc0\x71\xdd\xdd\xec\xc2\xe6\xc2\xf6\x13\x34\xa7\x95\x26\x78\x8b\x49\x52\x19\x07\x16\x90\x6d\xde\x17\xfb\xa5\x56\xee\xa4\xc8\xb5\x97\x27\x51\x4f\x6f\x56\x15\xa1\x9c\xa3\x6d\xa3\x58\xfa\xe6\xa6\xc5\x4f\x7f\x4b\x7a\x92\x9e\x31\xba\x7c\xc7\x1b\xde\x78\x82\xfa\x9f\xfd\x87\x30\x01\x36\x40\x9c\xaf\x3c\xa6\x4e\xef\xea\x61\x6a\xed\x58\xda\x5d\xfb\xf2\x8b\x66\x8e\xc1\xcc\xcf\xfc\xef\x6e\x2e\x14\xf8\x10\x9e\x9c\xbf\x76\xcf\xa4\x14\xf9\x1a\xc0\x0f\x48\xe9\x3e\xad\xa3\x85\xdd\x3d\x5c\x16\xe1\xa3\x9e\xa3\xdd\x55\xc7\x61\xfc\xa3\x61\xb4\x28\xf5\x16\xc0\x5e\x69\x4f\xe5\xc3\xc3\x45\xcd\x94\x45\x71\x87\xa8\xe6\x04\xb2\x00\xa1\xa0\xf9\x37\xae\x89\xf4\xd6\xb5\x42\x1d\xff\xcf\x7c\xa1\x5f\x2e\x2c\x25\x37\x8a\x41\x13\x23\x3f\x76\x13\xf4\x57\x0a\xa4\xb9\x09\xa9\x13\x5e\xae\x4c\x7b\x9e\xad\x45\x80\x07\xae\x17\x12\x6a\x11\xd1\x45\x25\x8a\xf9\x56\x3d\xb2\xf7\xe8\x92\x54\x31\x87\x8b\x0e\xec\xa8\xaf\xfc\x01\xac\x59\x13\xbf\x5b\xac\x4f\xa3\xa8\x57\xc5\x4c\xc8\x90\x6d\x6a\xf7\x7d\xe6\xb9\x32\x6b\x65\x06\x15\x10\x99\xe8\x7e\x99\xb1\xe8\x19\xc6\xfb\xe0\x82\x68\x8f\x34\xb8\x03\xd5\x88\xe4\x16\xd8\x53\x16\x97\x65\xd6\x2f\x7e\x0b\xdf\x72\xc5\xcd\x66\x66\x9a\x03\x35\x56\x23\x36\x73\x5e\x7e\xfb\x73\x4a\x2f\xad\xa3\x27\xf8\x58\xbe\xc6\x02\xd0\xda\x08\xeb\xa4\x47\x9e\x7f\x6d\xc4\xde\xf6\xe4\xeb\xdb\xb7\x30\xee\x91\xa3\x34\x45\xca\xdc\x9d\xf5\x2c\x82\x5a\xd3\x61\x49\xce\xfb\xc5\x1a\xb1\x02\x03\x35\x30\x81\x4b\xaf\xa7\xe8\x79\x61\xb0\x63\x67\xff\x89\x6f\x08\xae\x33\x4a\x9b\x1a\xad\x70\x3d\xa6\x86\x70\x6c\x11\xa0\x49\x43\xea\x75\xe1\x29\x92\xdc\xf6\x10\x6e\x37\x20\x77\xcd\x03\x11\x02\x9f"}, {{0x88,0x40,0x91,0x72,0x61,0x8b,0x49,0x03,0x93,0xdb,0x27,0xd9,0x60,0x17,0x1c,0xbc,0x18,0x7e,0xaf,0x4d,0xd8,0xb3,0x20,0xb3,0xd2,0xf8,0x24,0x98,0x00,0x43,0x71,0x8f,},{0xce,0x2e,0x7c,0x58,0x39,0xef,0x56,0x32,0xa1,0x23,0xdc,0x37,0x3d,0xc1,0x4b,0x1f,0x05,0x05,0x76,0x6e,0x96,0x75,0x40,0x76,0x04,0xca,0x7c,0xf5,0x4e,0x8d,0x44,0xb2,},{0x93,0xb6,0xe2,0x9d,0x63,0x94,0x5d,0x5c,0x42,0x73,0x87,0xd0,0x06,0xc7,0xf0,0xb0,0x19,0x56,0xa9,0x5f,0xc0,0x43,0x6e,0xd4,0x2b,0x46,0xd0,0xf1,0x7b,0x5b,0xb1,0x93,0xea,0x8c,0x0e,0xbb,0xf3,0xd6,0xd1,0x3b,0xb5,0x39,0xe3,0x5c,0x91,0xf3,0xf0,0xf9,0xfa,0x34,0x14,0xa0,0x22,0x3c,0x90,0x60,0xba,0xc8,0x36,0x53,0xc6,0xfc,0xd9,0x06,},"\xfb\x3e\x82\xf1\x1b\xc2\x86\x26\x7e\x12\x38\x17\xad\x88\x64\xe0\x77\xd9\xf7\xa8\xe7\xa1\x63\xac\x7e\xea\xf9\x3d\x55\xdd\x11\x1d\xe8\x08\x3b\x66\xb5\x3c\xe7\xbc\x77\x1f\xc5\x07\x1a\x2d\x7a\xc2\xf8\x5d\x6f\xc6\xad\xcf\xce\xc4\x46\xe1\x6a\xa1\x04\x6d\xf3\x72\x09\xad\x7a\x29\xcf\x96\x65\xb4\x39\xa5\x4d\x6f\x8d\x94\x2f\x89\xbd\xaa\x56\xf2\xf1\x12\x60\xcc\x95\x99\x30\x38\xb0\xe8\xfb\xdb\x32\x14\xf1\x42\xe6\xc9\x0b\x61\xa1\xd2\xb1\x42\x07\x62\x06\xaf\x30\xac\x35\x78\x4a\x6d\xc1\x5a\x1e\x79\x25\x1a\x8c\x77\x31\xa1\xc5\x39\x78\x03\x8f\x8d\x76\xd7\x0c\x6c\x1c\xdf\x52\x9f\xbd\xb8\x4d\x15\x07\xdc\xff\xdd\x42\x87\x3d\xfa\x6a\x8f\xe6\xbd\x6f\x7f\xd2\x9c\x80\xe4\xb2\xf9\x33\xd2\xb6\xc9\xe6\x2c\x94\x57\xe6\x65\x47\x26\x55\x05\x9b\x63\xb6\x18\xe2\xa9\xa8\xe5\xb9\xe4\x1c\x36\x46\x17\x3a\x89\x2b\x8e\x6d\x4b\xca\xd6\xa6\x2a\x6f\xcc\xd3\x45\x58\x90\xb5\x8e\xc2\x68\x1a\x95\xcc\x97\x76\xa9\xfc\xe8\x3c\x54\xa9\xef\x31\x2a\x33\x19\x59\xc7\xef\x3f\x79\xee\x57\x6e\xb7\xb7\x94\x69\xc9\x23\x4b\x1e\xae\xf6\x09\x88\x47\x08\xfe\x4b\xb0\xef\xac\x66\x2d\xa8\x71\xba\x61\xdd\xab\xb3\xfc\xbd\xeb\x8f\x63\x56\x57\xdd\x9a\x5d\x73\x11\xe6\x39\xa8\x24\x85\x8b\x9a\x98\x68\xd3\xf9\x38\x4d\xa6\x12\xc7\xf2\xe7\x71\xa4\x6b\xd2\x62\x4c\x99\xea\x2b\x6c\xcb\xca\x99\x6c\x1d\x9c\x37\x55\x54\xf2\xa5\x51\x61\x9c\xe6\xd5\xe6\xe4\xd6\xb8\x44\xa4\xdb\xea\x83\xba\x73\x23\x31\xfc\xf4\x65\x72\xc1\xfb\x0e\x25\x7c\xe1\x04\x1b\x26\x5d\xf0\x2e\x69\x0a\x92\x81\x4b\xbf\x3b\x5e\xca\xc6\x9e\xe9\x98\x76\x6a\x02\xb0\xd2\xf9\x08\xb3\xc1\x5f\x95\x26\x99\x61\x6f\x2c\x07\xd5\x89\x19\x89\x89\xe6\x05\x6c\x16\x31\x9a\xab\x6c\xf8\x77\x19\x02\xc0\x78\x04\x6a\x88\xb2\x57\x0c\x13\xbc\x5e\xde\xba\x2e\xd1\xe3\xba\x13\x1d\xaf\x94\xe6\x89\x18\x62\xbb\x3d\xe7\xd1\x06\x3f\xe4\x05\x30\x7a\x5c\xd9\x75\x69\x3e\x9d\x58\xe1\x7c\x69\x0e\xee\xf4\xa2\x60\x3c\xaf\xc6\x8c\x2b"}, {{0xe5,0x71,0x18,0x9b,0x5c,0xd9,0xe7,0x88,0x30,0x2d,0xe3,0x91,0x9d,0x85,0x0c,0x22,0x7d,0xcb,0xb6,0x15,0x02,0x2e,0x56,0x8b,0xda,0xeb,0x37,0xac,0x5b,0x29,0x39,0xc5,},{0xed,0xda,0x89,0x0f,0x42,0xdd,0x5f,0xbc,0x73,0x16,0xa5,0xfa,0xdf,0xbe,0xc3,0x85,0x56,0xf2,0x3f,0x51,0xb8,0xef,0xd2,0x62,0x54,0x37,0xf6,0xb5,0x06,0x9f,0x1e,0xe5,},{0x7f,0x79,0x7a,0x31,0x71,0x5d,0x7c,0x35,0x6f,0x8f,0x1f,0x78,0x37,0x00,0xaa,0x99,0x74,0xbb,0x93,0x6d,0x66,0x16,0x61,0xad,0x96,0x8c,0x7c,0xde,0x1a,0xc9,0xe7,0x67,0xbe,0x56,0xa2,0xdd,0x49,0xb9,0x23,0x0e,0x90,0x11,0x0c,0x67,0xc0,0xed,0x18,0x7c,0xb7,0xe7,0x5c,0x30,0x53,0xec,0xe8,0x44,0x98,0x4d,0x29,0x6f,0x0d,0x85,0xcb,0x07,},"\xb6\x2c\x86\x7a\xd6\x22\x74\x35\xbf\xa6\xda\xb8\x30\x68\x4e\x38\xd1\x96\xe1\xf8\x61\xaa\xde\x0f\xd6\xa7\x69\x9b\x6d\x60\x90\x1f\xef\xb2\xd7\x99\xc3\x5c\x6f\x3d\x8b\xb9\x4d\xee\xe8\x34\x40\x39\x81\x86\x6b\xab\x84\x94\x6a\xe9\x47\x6c\x75\xe9\xf1\xd3\x60\x2b\x42\xcb\x2d\xb4\x37\xbf\xf3\x3a\x77\x58\x22\xf0\xd6\xa2\x57\xd4\xb7\x54\x00\xeb\xa5\xb8\xab\xb3\x14\xb7\x1f\xc6\xb4\x6f\x8a\x34\xe8\x61\xa9\xa6\x2a\xbf\x33\xde\x84\x82\xf6\x3f\x9d\x71\x69\xe7\x73\xa2\xdc\xeb\xee\x03\x70\x5d\xac\x11\x7f\xd1\x49\x9b\x68\xe7\x41\x4f\x51\xff\x94\x37\xf2\x53\xa1\xd9\x90\x1e\xc3\xb0\xbb\xa8\x69\x65\xa1\x93\x83\x65\x54\x87\xb5\x80\x10\xf8\x04\x90\x9d\xe1\xff\xb2\x21\x2c\x02\x52\xdd\xd9\xbf\x2a\x56\xac\x46\xbd\x59\xc0\xc3\x4d\xd5\x9e\x46\x59\x8b\x6b\xab\xd4\xe5\xf3\xff\xfd\xe5\x5e\x48\xda\xb0\x39\x8c\x22\xaf\x9e\x26\xba\xdd\xf7\x72\x75\xe5\xf0\x17\xb3\x5a\x9b\x8f\x84\x35\xf9\x63\x19\x36\xb3\x91\xcb\x95\xd7\xad\xf3\x5d\x1d\x85\x45\xa0\xfd\x06\x64\x12\xd5\x08\x96\x7b\xbe\x9a\x20\x24\x5a\x26\x9e\x3b\xe2\x77\x71\x17\xe7\x5f\xba\xc1\x70\xdb\xa3\x52\xbe\x69\xb2\x54\xd3\x53\xb3\xb2\xcb\x3b\x7e\x21\xb7\x21\xaa\x9f\xe0\x44\xf8\x91\x6b\x4b\x2a\x6f\x8c\x28\xf8\xab\xe6\x6a\xc9\x2b\x91\x32\x3a\xc7\x3a\xfd\x93\xdf\xbe\xea\xee\xf2\x6d\x19\xbd\x9f\x67\xe9\x9d\x48\xcd\x2a\xd2\xd3\xe5\x5e\x45\xd2\x4d\x54\xb5\x0f\x44\xa3\x9b\x90\xe2\x42\xeb\xe9\xb4\x2b\xeb\xdb\x23\x0c\x47\x0b\xdf\xde\x1b\xc7\x72\x1c\x31\x20\x00\x84\x77\x39\x3d\xcc\x2e\x15\xfd\x22\xb2\x51\xfe\xb0\xe1\x8b\x02\x88\x3c\x07\x8a\xee\x4f\xb7\x60\x65\x5a\x67\x1d\xc7\xb8\xaa\xdb\x9a\x56\x24\x20\xa3\xc2\xef\xa2\xd3\x42\xe1\xe0\x09\x9d\x95\x1b\x42\x24\x29\x84\xf5\x94\xe6\x91\x4f\xe2\x82\xb1\xee\x12\x87\x35\x98\x4e\xf9\x3a\x66\x9e\x6e\xcb\xa2\x6c\x9f\xcb\x9f\x09\xf0\x92\x56\x64\x56\x17\xf1\x39\x2d\x35\x90\x89\x17\xcb\x8d\x29\xe0\x89\x7c\x75\x03\xcd\xdd\x5d\xe1\x95\x96\x86"}, {{0x37,0x17,0x44,0xab,0x63,0xc1,0x15,0x61,0x39,0x29,0xa3,0x43,0x70,0x9b,0xb0,0x19,0xb7,0x35,0x7d,0xff,0x72,0xd2,0xa1,0x49,0xf1,0xd0,0xf7,0x1d,0x3a,0x20,0x1e,0xfe,},{0xe5,0x8a,0xbf,0xad,0x4a,0x13,0x85,0x9f,0x0a,0xcb,0x05,0xd0,0xe4,0x7d,0x59,0x63,0x8f,0x7b,0x1b,0x49,0x36,0x10,0x0b,0x98,0x8d,0x61,0xe6,0xe7,0x0e,0x22,0x66,0x7d,},{0x5e,0xae,0x4a,0xc7,0x2a,0xf0,0x17,0x4a,0xb2,0x56,0x52,0x7b,0x7c,0xd3,0x37,0xa0,0xe5,0x48,0x2e,0x61,0x5a,0xf0,0x68,0xdb,0x21,0xda,0xe3,0x5a,0x64,0x64,0x07,0x42,0x60,0x4d,0xf7,0x3f,0xd4,0xca,0x02,0xed,0x95,0x15,0xa5,0x60,0x8d,0x73,0x19,0x52,0x30,0xfa,0xdc,0xa7,0xb4,0x26,0xf0,0x2a,0x2f,0xbf,0xd0,0x20,0x61,0xaf,0x36,0x00,},"\xc2\x19\xde\x1e\x8d\x7a\xd8\xdf\x08\xc4\x93\x77\x39\x6f\xe7\xc1\xf2\xd5\x7b\xd2\x17\x06\x33\xa0\x0d\x70\x8f\xaa\xde\xe1\x80\xce\xba\x92\x84\x9a\x77\x78\x50\x6c\xbb\x36\x68\x75\xbf\x91\x24\x70\x18\x94\xce\xcd\xb3\x38\x51\x47\xd0\x67\x18\x43\x92\x2a\x64\x9a\xff\x7c\x43\x5e\xb5\xa9\xc7\x49\x27\x50\x30\x72\xd0\x06\x79\x78\x71\x6d\xc8\x0b\xe1\x54\x5a\x2d\xbf\x5a\x1c\x38\x53\x6e\x12\xbd\x77\x20\xc1\x96\x5d\x38\x03\xa4\xe8\xaa\x55\x76\x51\x92\xa1\x3b\x70\x5c\xa1\x05\x9d\xed\x0e\x80\x63\x62\xfc\x5b\xbe\x6c\x76\xa1\xc9\x67\x4b\xb8\x53\x79\x0f\x7e\x90\xaf\x00\x75\x3e\x00\x43\x6d\xa4\x8c\xd0\x82\xea\xd6\x4f\xdd\xb6\x89\x89\x01\x62\x08\x2f\x84\x82\x92\x4f\x33\xac\xd6\x04\x64\x0f\x69\x92\x73\x52\xb4\x3f\x64\x40\x2d\x27\xa8\x83\xfa\x6b\x72\xaa\x70\xd2\x41\xdf\xfa\xa1\x70\x1a\x25\xcf\x10\x79\x35\x82\x60\x79\x38\x75\xf7\x6a\x29\x78\xe9\xf9\xf9\xd6\x86\x34\xeb\x3f\x5f\x01\xbd\xe1\xce\x49\xe5\x92\x12\x52\xf9\x49\xf0\x82\x79\x5e\x4e\xaf\xed\x7b\xe5\xb4\x9a\x9f\x95\xed\xbb\x4a\x13\x53\x2e\x3f\x3b\x3b\xe6\x2e\x26\x52\x23\x12\x53\xa2\x0c\x1d\x54\x77\xe8\xf4\xbc\x57\xed\x76\xfa\x19\xea\xf0\x3a\x11\xbb\xa4\x29\xb6\x49\x6c\xe7\x62\x46\x17\x0e\x04\x3b\xc1\x4f\x2d\x2f\x70\x3d\x96\x8f\x1d\xeb\x09\x38\x87\x15\xc3\x7c\xb4\x75\x2d\xa8\xd4\x64\xe3\x48\xe0\x31\x3c\x89\x93\xe2\x41\x33\xa7\xc5\x45\x28\x4e\x3c\x9c\x90\x7d\x01\xb2\x60\xc4\x88\x3f\x9c\xb3\xe3\xdc\x5b\x6f\x7f\xb6\xd7\x55\x36\x36\x5f\x21\x32\xea\xed\xda\xb5\x70\xe7\x27\x3a\xfa\xc0\xbf\xf5\xc9\xfc\x0b\x82\x0f\x20\x78\xe0\x33\x60\x52\xe1\xfe\x7b\xde\xc8\x66\x74\xd0\x99\x8e\xc7\x8d\xa1\xc3\xf3\x47\x51\xf8\x86\x72\x76\x95\xf3\x5e\xca\x13\x04\xb1\x47\x34\x76\x6a\xb0\x5c\x11\x86\x30\x6d\xed\x9d\xb3\xee\xf6\x5d\x3c\x04\x56\xcd\xae\x81\x81\xaf\xee\x04\xb2\x96\xc6\x72\x2a\x88\xc7\xef\x30\x88\xd2\x6f\x7f\xe7\x4b\xc8\x9c\xf5\x28\x5c\x68\x8f\x02\x7b\x7e\x68\x60\x04\x86\xaf"}, {{0x49,0x8b,0x6e,0xe6,0x49,0x2d,0x53,0x23,0x1b,0x35,0x32,0xd1,0x93,0x57,0x8b,0xa7,0x5d,0x6a,0x89,0x4e,0x2e,0x53,0x00,0x34,0xe2,0x1a,0xb8,0xad,0x8d,0x2c,0x0d,0x1f,},{0xd1,0x24,0x66,0x5b,0x28,0xfa,0xcd,0x2d,0x17,0x94,0x6a,0x04,0xdf,0xe3,0xd1,0x29,0xa4,0x56,0x1a,0x2b,0x24,0xeb,0x32,0x6d,0x84,0xb6,0x2b,0x42,0x2e,0x44,0xdb,0xcf,},{0x11,0x2f,0x5c,0x6d,0x3b,0xcb,0x3d,0xd9,0x93,0x46,0xd3,0x2a,0xd6,0x9c,0xbf,0xac,0x3e,0x65,0x3b,0xef,0x29,0xc6,0x8a,0x33,0xf4,0x32,0x31,0xf6,0x6c,0xea,0x1d,0x0a,0x19,0x54,0x27,0xd6,0xe1,0x0c,0x0e,0x77,0xc5,0xd5,0x5f,0xe2,0x79,0x42,0x87,0xee,0x32,0xe5,0xe2,0x2b,0xaf,0xbb,0xd8,0x05,0x2a,0xd3,0x60,0x6b,0x90,0xf9,0x45,0x05,},"\x04\x98\xa5\x9b\x87\xcd\xae\x28\x69\x55\x47\xe1\x08\x63\xbc\xe8\x04\xd9\x7d\xe0\xac\x80\x08\xf3\xd5\xfb\x65\x2c\x17\x57\x41\x9f\xdc\x9e\x0f\x97\x36\xf4\xc5\x9a\x34\xf2\x1c\xfc\x74\x59\x9f\xa7\x88\xfc\xc1\x0c\x67\x30\xc7\xdf\x8c\x3d\x2c\x1b\x6a\x78\x6d\x12\x30\xb6\x55\x85\x71\x9d\x1c\xb5\xc4\x90\x35\x9b\x94\x43\x5d\x6d\xd6\x71\xf5\x4d\x6e\x9a\x19\xb9\xb5\xaa\xad\x7e\x0f\x23\x3f\x87\x97\xdf\x99\x78\x28\xd8\x8c\xd9\x2e\xf0\x89\xef\x7d\xbf\x1e\x95\x27\x78\x94\xa2\xf7\xc2\xfd\x0c\x8e\x4d\xfd\xfa\x6d\x3d\x14\x58\x9f\xf0\x19\x16\xdb\xf9\xdd\xd8\x11\xc2\xf5\xe0\x1e\x94\x29\x89\x90\xa1\x45\xa6\xcf\xc2\x68\x95\x61\x4c\x7c\x96\x3f\xef\x30\x8a\x4e\x38\x56\xc3\x2d\xd3\xe3\x59\xbc\x56\xd2\xcc\xa4\x96\xad\x19\x9f\xf1\xa5\x68\xd6\x43\x0a\xc5\xcd\x20\x8e\x0e\x2d\x07\x80\x3c\xa5\x23\xe0\xd8\x13\xad\x37\x33\xab\x50\xbd\xca\xdc\xb9\x88\xae\xe7\x58\xea\x50\x43\x9b\xf3\x8e\xe6\x49\x99\x76\x04\xf1\x51\xc6\x02\xc8\x29\x00\xa8\x20\x5d\x8f\x6f\x67\x0c\x86\x84\xbf\x5a\xbb\x5f\x75\xff\x29\xa3\x7e\xb9\xbf\x81\x05\x19\x9f\xbb\xfb\x47\x07\xe1\x62\xe6\x4c\x71\x52\x70\xf8\x53\xe6\x48\xb0\xaa\x26\xfe\xa0\xf6\xdb\x56\x28\x96\xbf\x42\x4a\x9f\xfc\xb2\x92\xfa\xe8\x5b\x76\xce\xfb\x8b\xd5\xa4\xb3\xce\x1f\xb3\x9b\xd2\xa5\x0d\x0c\x9e\x6d\x93\x3e\x16\x7f\xf6\x29\xb8\xa4\x94\xf2\xa9\xb7\x74\xeb\x30\x3c\x78\x1e\xa0\x2a\xff\x1a\x8a\xfa\xdc\x24\x65\xcc\x61\x69\x68\x01\x5e\xd6\xa5\xa3\x3c\x31\x20\xb9\x45\xed\x53\x51\x98\x1e\x32\xfb\x9f\xb9\x6b\x22\x12\xdc\xf8\xfe\x9a\xc5\x6e\x3c\xf4\x1d\xc5\x24\xf8\x00\x63\x10\x20\xb0\x25\x91\x91\x78\xce\x07\x4e\xef\x07\x8d\x68\x42\x01\x2a\x27\x6e\xfa\x62\x8d\xb5\x40\x58\xd1\xeb\x5b\x5b\x70\x5f\x1e\x18\x18\xd2\xdf\x51\x64\xba\xab\xb0\xc6\x19\x56\xec\xdb\x8c\x70\x6e\x56\x2f\xc4\xfd\x64\x05\x28\x70\x53\x0a\xe4\x25\xb2\x21\xf8\x9d\xd6\xf9\x0d\xab\x88\x2e\x76\x3e\x7a\x7f\xfa\x14\x1b\xba\xa8\xbf\x7a\x3f\x21\xb0"}, {{0xce,0xfc,0xfc,0xd1,0xcf,0xf4,0xd8,0x91,0x07,0x49,0x27,0x91,0x31,0x83,0x0b,0x1d,0xa1,0x9d,0xfc,0x52,0x45,0xf7,0x8c,0xa6,0x8b,0x8c,0x3c,0x1b,0x62,0x2b,0x45,0x51,},{0x1d,0x39,0x4a,0xbd,0x1b,0x4e,0xd1,0xae,0xdf,0x96,0x6a,0x60,0xef,0xd3,0xff,0x88,0x21,0x40,0xa7,0xe5,0x6b,0x42,0x83,0x74,0xec,0xb4,0x43,0x28,0x9a,0x9c,0x7f,0x00,},{0x7d,0x83,0xff,0x66,0xec,0x79,0x30,0x7b,0x1c,0x0c,0x09,0x3f,0xda,0x39,0x68,0xa9,0x6c,0xf6,0x04,0x4f,0x5c,0x80,0x28,0x88,0x58,0x40,0x18,0x84,0x5e,0x7c,0xaf,0x2a,0x13,0x5a,0xc6,0xf1,0x67,0x7e,0x84,0xd2,0x2e,0x45,0x8e,0x22,0x7e,0x4f,0x93,0x02,0x09,0x91,0x9b,0xc1,0x1b,0x12,0xf7,0xaa,0xf2,0xb8,0xc9,0x43,0x02,0xd6,0x42,0x00,},"\x5e\xc9\x4e\xd0\x6f\xc1\x25\x7a\xe9\xc1\x83\xce\x56\x27\x12\x07\xac\xa3\x7a\x23\xfd\xb4\xb0\xe7\x4a\xc9\x30\x7a\x1b\xb1\x12\xe0\x5e\xd5\xa5\xd0\x47\xc9\x31\x09\xe2\xe5\x94\x77\xb0\x33\x78\x34\x64\x22\xde\x36\x71\x4c\x29\x61\xbb\x97\x36\xa5\x13\xca\x36\x71\xc6\x03\xa6\x8c\x2b\xe7\x31\x7b\x1b\x52\xa0\x76\xda\xe2\xaf\xf7\xbc\x88\xcd\x5e\xea\x0a\xa2\x68\xfa\xaa\xda\xe5\x39\xc9\x38\xbb\x4f\xd4\xb6\x06\x9b\x19\x45\xeb\x6a\xf0\xc9\xe6\xc8\xaa\x5e\xe4\xa4\xaf\x37\xe9\x0c\x67\xe2\x48\xe8\xd2\x7b\xd7\xf9\x58\x9c\x4d\x30\xe9\x05\x65\x1b\xaf\x45\x36\x4f\xa0\x49\x95\x7e\xa5\xd9\xb7\x14\x6c\xa6\x82\x04\xe5\xe9\x73\xd0\xf1\xc9\x1a\x1c\x4b\xde\xd6\x61\x15\x02\x8a\x71\x11\x4f\x0f\x4f\x85\x1b\xd1\x15\xfa\xeb\x95\x4e\x3f\x71\xa0\x14\x70\xb2\x48\x1a\x00\x98\xd9\x9f\x9d\x74\x89\x8c\x8b\xa0\x28\x7c\xc7\x83\x41\x55\x21\x41\x73\xd1\xfc\xba\xfc\xfe\x9b\x08\x25\x03\x84\x43\x94\x76\x05\x58\x83\x83\x38\x16\xc9\x52\x4c\xfd\x57\x44\xaa\xa2\x59\xdb\x7e\xbd\x3a\x6a\xa2\x0b\x5a\x65\x46\xda\xde\xfd\x14\x06\x68\xeb\x0e\xcc\xb5\xf6\x68\xdb\x9f\xc6\x29\x83\xdf\x98\x08\x50\xc9\xd1\x98\x82\xa1\x75\x50\xd5\xdc\xa3\x54\x2c\xd3\x60\x03\xa0\xd0\x3c\xff\xb0\x45\x75\xa3\xe8\xe1\xd0\x70\x15\xc7\xb3\x0e\xca\x91\x15\xcd\x2b\x72\xe4\x6d\xfd\xdf\x6a\x4d\xda\x1f\xaa\x2d\xbd\xc8\x90\x00\xd4\x33\xf6\xec\x9a\xdc\x46\x14\x6d\x93\x9f\x32\x12\x1b\x99\xb2\x89\x83\xd9\x8b\x9d\xde\x8c\x3f\x6e\x57\x79\xf2\xb0\x70\x0c\xb0\x23\xdb\x13\xde\x65\x6e\x0a\xed\x1d\xa2\xd5\xc6\xba\x26\x52\x34\x36\x48\xad\x42\x0f\x6a\xb9\xe5\x5a\x97\x48\x2a\x1a\x22\xb3\xbc\x2e\xe5\x98\x62\x9a\xba\xd9\x54\x7e\xdb\x5f\xf7\x90\x99\x05\x64\xbd\x87\x1f\x81\xb2\x4b\x12\xf2\xbf\x8d\xbd\xfe\x7a\x88\x37\x5f\xad\x9c\xcb\xd9\xfc\x0b\xa1\xd3\xbb\xa5\xe3\xc4\x81\x3c\x18\xa0\x34\x8a\xad\x83\xfb\x1b\x82\x68\x90\x54\xd9\x9b\x46\x00\xdd\x17\x60\xd0\xdc\xce\x44\x75\x74\x67\xbe\xc1\x94\x64\x06\xd5\x30"}, {{0xd1,0x07,0xcf,0x26,0xf5,0x27,0xdb,0x71,0xa2,0x06,0xe4,0x1d,0x17,0x95,0x53,0x21,0x01,0x32,0x25,0xbb,0x20,0xf9,0x3e,0x12,0xdf,0x3d,0xc7,0x39,0x9e,0x72,0x0c,0xa3,},{0x18,0x6b,0xf4,0x53,0xc9,0x5d,0xc0,0xa2,0xfd,0x58,0x9a,0x78,0xe2,0xc8,0x00,0x40,0xb3,0xf6,0xdd,0xf9,0xa6,0xf8,0x68,0x1d,0x14,0x60,0x36,0xcf,0x21,0x46,0xe8,0xfc,},{0x80,0x71,0xd9,0x7f,0x32,0x4f,0x10,0x35,0x8f,0x13,0xac,0x8c,0x61,0xd4,0x24,0xb4,0xf3,0x00,0xdd,0x04,0x19,0x57,0x1c,0x39,0xe4,0x0d,0x99,0xae,0xa5,0xf0,0x31,0x40,0xe6,0x2a,0xb4,0xc9,0x71,0x27,0xab,0x33,0xe9,0x82,0x69,0x96,0x6a,0xe1,0xd4,0x55,0x7e,0x45,0x9b,0xf7,0xf5,0x97,0xb3,0x13,0xf3,0x51,0xa2,0x01,0x22,0xf0,0x66,0x0e,},"\x78\xeb\x9e\x13\x78\x99\x28\xa7\x4f\x36\x01\x41\x72\x8e\xde\x98\x38\x96\x85\xc8\x36\xb9\x1f\xaf\xbf\x1a\x7e\x8c\x19\xcf\xbe\x21\xbd\x3c\x3d\x6c\x6e\xd8\x3c\x40\x9e\xf6\x93\xf1\xd7\x35\xda\x3f\xa4\x66\x49\x7e\x19\xf3\x8e\x30\xfb\xa2\xa1\x02\x37\x85\x45\x90\x70\xe6\xe9\x2c\x1c\xb7\xc9\xbd\x0c\x9b\xa6\x12\x20\x15\x78\x66\xc3\xbe\xd2\xb0\x1e\x6e\x6b\x9b\x8d\xd3\xf0\xc4\x7c\x02\xf1\x81\x34\x6a\x0a\x9b\x9b\x5d\x3d\x7e\x18\xa9\x4d\x69\x56\x85\x5e\x16\xe8\xea\xaa\xab\x71\xb1\x03\x02\xf3\x5b\xd8\xfb\x1f\x9b\x58\x47\x30\x41\x60\x32\x49\x26\x64\x5b\x05\x82\xc2\xf2\xf1\x53\x3a\x24\x28\x14\x61\x51\x42\x41\xdb\x28\x50\xef\x31\xc5\x76\x3b\x2e\x3d\x4f\xb1\x8f\xc6\xd8\xc1\xd7\xe5\x2f\x7c\x13\x39\x2c\x17\xe2\x70\x19\xff\x60\x00\x8e\x43\x1f\x17\x14\x37\x0b\xc0\xef\xd9\x45\x2a\x61\xf5\xc5\x64\x88\xd9\x1a\x18\x50\x37\xf1\xf6\x47\xf7\x2f\xa7\x85\x01\x0d\x5d\x78\xf0\xa1\x15\x87\xcc\xf6\x6b\x80\x88\xe0\xe6\x35\xff\xf3\x77\x41\x93\xb2\xed\xef\xfd\x92\xd6\xe8\xa0\x32\x11\x28\xae\x64\xcd\xb8\x62\xe6\x31\xe2\xee\x5b\xa0\xda\x44\xbb\xd5\x89\xdc\x39\x2b\x5a\x11\x3b\x86\xa7\x27\xa8\xdd\xb6\x98\xa3\x34\xcc\x66\x8b\x39\xb1\xcd\xe1\x99\xb8\x88\x37\xca\x5f\x00\xf5\x53\xf8\x9c\x62\x28\x34\x27\x36\x41\xd3\x9b\xc1\x0c\x6a\x24\xe1\xeb\x42\x58\x75\x42\xf0\x3f\xc1\x62\x75\x24\xed\x6b\x74\x93\x91\xf1\x10\x28\x70\x6c\x42\x36\x44\x25\xb2\xca\xf2\x01\x80\xe1\xb8\x02\xc7\x44\xb4\x9b\x7b\xcd\x9b\xf7\xb1\x5c\x23\xa0\xbf\x1c\x69\x65\x96\x0d\x34\x15\x54\xe1\x96\x6b\x6e\xf8\x2f\xcf\xbb\xe4\x1d\x1e\x09\xd7\x41\xe3\x09\x25\x44\x46\x77\x7f\x13\xc2\x9a\x67\xb8\xbd\xeb\xc5\xf7\xf0\x4d\x16\x0d\x60\xe3\x32\xe3\xd0\x44\x1a\x0f\x2f\x7b\x19\x2c\x3e\x2b\xdf\x6d\xad\xec\x2a\x42\x4f\x88\x66\x98\x06\x23\x6e\xe0\x4d\xea\x69\x2b\xd8\xbb\x6f\x91\xca\x06\x82\xec\xe3\x49\x14\x25\x75\x35\x8b\x9b\x7b\xe7\x06\x00\xb3\xcb\x81\xe1\x45\x6b\xa0\x79\x9f\xdc\x01\xff\xd6\x86\x23"}, {{0xaf,0x7e,0xa8,0xe4,0x1c,0x89,0x37,0xa4,0xec,0x47,0x5a,0xd8,0x13,0x71,0xa1,0x71,0xd3,0xd0,0xf9,0xfd,0x75,0x19,0xa0,0x4c,0x75,0x1e,0xd4,0xad,0x8f,0xf8,0xfe,0xf9,},{0x15,0xdf,0xc7,0x15,0x85,0xba,0xc7,0x1e,0xf2,0x0f,0x37,0x49,0x87,0xc5,0x55,0xa3,0xf2,0xf0,0x7d,0x6b,0x9c,0x78,0x70,0x66,0xc1,0x0d,0x63,0xcf,0x06,0xe0,0x2a,0xb0,},{0xc0,0xf1,0x73,0x91,0x67,0x27,0x4b,0xf9,0x18,0x31,0xc7,0x4b,0xeb,0x64,0x5a,0xf7,0x90,0x45,0x9b,0x28,0xbb,0x3f,0x21,0x32,0x53,0x65,0x13,0x0f,0x40,0x9a,0xcb,0x66,0xdf,0x1d,0x22,0x37,0x59,0xa9,0x75,0x8e,0x08,0xfd,0x72,0x53,0x73,0x74,0x84,0xe2,0x85,0xa6,0xfb,0x47,0x40,0x4a,0xbe,0x2e,0xba,0x5e,0xf2,0x49,0xfd,0x02,0x5c,0x0a,},"\x05\xf2\x26\x3f\x02\x45\xec\xb9\xfa\xeb\x14\xe5\x7a\xca\x43\x66\x68\x30\x8c\x81\x25\xdf\x31\x16\xc4\xee\x20\x50\x1d\x0c\xde\x70\x1b\x36\x6e\x2b\x50\xa1\xc5\xed\xf4\x84\x14\x4c\xe1\x6b\xfb\x1f\x7d\x26\xdc\x42\x75\xea\x97\x32\xe2\x64\xba\x4d\x4a\x36\x2b\x40\x27\x5b\xa4\x73\x77\xdb\xc3\x32\xcb\x65\xe2\xf4\xc8\x85\x38\x94\xaa\x87\x8a\x4c\x17\x5d\xc5\xb3\xb2\xa7\x57\xff\x3c\x8d\x7d\xe6\x60\x97\x3b\x89\xda\xdf\x07\x6e\x2e\x4f\xc7\x62\x39\xb7\xbc\x75\x2a\x22\x9d\x44\xe0\x00\xce\xb6\x67\x10\x4c\xb0\x74\x6b\xfc\xf5\x9d\x69\x60\x3a\xe7\xfc\x1b\xcf\x11\xd2\xe3\x3f\x61\xdc\x49\x7e\xc1\xb0\xbd\x5e\x4f\x1d\xbe\xf4\x35\xf2\xf2\x91\xf3\x0b\x00\xa8\x5e\x83\x39\x46\xc8\xb1\x04\x84\xe4\xab\xd7\xd6\x0b\xdb\xb1\xfe\x6d\xff\x58\x07\xa5\x3b\xb8\x93\x82\x15\x30\x13\xb7\x0c\xa0\x8e\xfc\x91\xb7\xe9\xfc\x5b\x5d\xbb\xb6\xaf\x12\x3b\x57\xbe\x2e\x14\x0f\xc4\x71\xa4\x5d\x89\xfa\x82\x84\xcc\x27\xe0\xa1\xfe\x77\x1f\x55\x59\x8b\xbd\xcf\x06\x8d\x50\x6d\xad\x0a\x59\x21\x79\xce\xca\x39\xee\x95\x26\xf9\xe4\xfe\x47\xbf\x2b\xb1\x4f\xb1\x48\x6a\x67\x7d\x4d\x7b\x99\xa5\x20\x54\x56\x76\xa0\xf1\xfa\x80\x90\x49\xaa\x24\x14\xae\x7b\x81\x7d\x9a\x03\x6e\x5c\x15\x78\x86\xe8\x34\x1d\x4e\x81\x9c\x09\x2a\x3b\x48\xb3\x60\x6b\x03\xac\xb7\x27\xc6\xc2\x21\x7d\x0a\xf3\x01\x21\x54\x6a\x94\xaf\x6b\x49\xca\xa2\xa8\xc9\xb1\x78\x6f\xa0\xc2\xa5\x24\xec\x7a\x02\x3e\x92\x4b\x5f\x8a\x89\xa5\x37\x80\xc7\xf8\x78\x1c\x5b\x8e\x86\x94\x30\xca\xa0\xe6\xd0\x43\x79\x67\xe3\xae\xd4\x4f\x45\xc9\x01\xcb\xcf\x10\x26\xfb\xbd\x4e\x3d\xd9\xa0\x91\xec\xf8\xb3\x4f\x7d\xd5\x03\x8e\x54\x3d\xc7\xeb\x6a\xd5\x49\x4e\xfb\x14\x5c\xf6\x3e\xc0\xd3\x55\xbb\x8e\x17\x2f\x45\x5d\x8a\x6b\x13\xda\xca\xad\xdb\xc5\x6e\x47\xde\x3c\xf7\x62\xa1\xa7\x38\xef\x09\x2f\x14\x36\x68\x04\x67\xb5\xcd\x82\xe9\xe3\x6e\x2d\x2b\x68\x42\xb3\xbd\x5d\xce\x77\x18\x0d\xda\xf0\xb6\x43\x37\x8e\x69\x85\x99\xdd\x47\xf5\xcd\xbb"}, {{0x0c,0x57,0xcb,0xfc,0xeb,0xde,0x10,0xed,0xe0,0x2d,0x1c,0xb0,0x1d,0xf3,0x60,0xd4,0x1f,0x2e,0x66,0xa5,0x04,0x43,0xd5,0x8b,0x5d,0x4f,0x08,0x28,0xc9,0xa1,0x8b,0xb7,},{0xc4,0xd7,0x61,0xba,0x18,0x99,0x71,0xb9,0x46,0x2c,0x61,0xbf,0x46,0xa7,0x65,0xf8,0x8e,0x2e,0xca,0xa5,0xbf,0x22,0x11,0x22,0x0a,0xfb,0x00,0xac,0x65,0x7f,0x7c,0xe5,},{0x8a,0xf7,0xbb,0xe0,0x1b,0x8a,0xb9,0x39,0x51,0xd1,0x6f,0xca,0x05,0xa9,0xc9,0x67,0xd1,0xc5,0x2c,0x97,0x4b,0xea,0x15,0x1e,0xa7,0x2e,0x4c,0xeb,0xaa,0x20,0xcc,0x78,0x3b,0xb6,0x1d,0x8d,0x69,0x38,0x5c,0xac,0x5b,0xc6,0xd7,0x2d,0xbd,0x16,0x2b,0xee,0xf1,0xfc,0xb5,0xdd,0x0e,0x0a,0x08,0xb4,0x8c,0xa0,0xb9,0xf6,0xd9,0xa9,0x88,0x0c,},"\x33\x77\x03\x24\x3a\xb5\xb4\xe4\xd3\x48\x1e\xe8\xdd\x1f\x44\x94\x50\x71\x74\x41\x26\x58\xa9\x39\x88\xb5\xc3\x04\x03\xa7\xb7\xed\x85\x22\xce\xb4\x6f\xa1\xee\x02\x75\x3a\x87\x4e\xf0\x67\x5d\x39\x7c\x57\x5d\xa0\xb0\x8c\xaa\x8c\xee\x33\x93\x78\x4d\x0f\x0d\xb8\x45\x98\x37\xaf\x90\xb9\x05\x6d\xf4\xe3\x8e\x41\x7f\x3a\xd2\xeb\x1a\x10\x0e\xf2\x07\xce\x2c\xa6\xc6\x10\x01\x80\x21\x66\x1e\x30\x70\x99\xf2\xb7\xc4\xae\x87\x59\x91\x14\x0b\xdd\x3f\x0f\x99\xad\x2c\x5d\x55\xaa\xcb\x84\xcc\x1c\xdc\xd5\x79\xe0\x80\x72\xb6\x95\x1f\xd4\x5e\xd2\x89\xac\x9f\xf7\xf0\x98\x6a\xc8\x8a\x4f\xbb\x9d\xc9\x20\x3d\x9b\xaf\x18\x0c\x90\xed\xf9\x37\x25\x8c\x9d\x0a\x6d\x48\xe2\x20\xf7\x2d\x25\x0c\x7f\x2c\x77\x7e\xaa\x7f\xb9\xfa\x11\xd5\x0a\x57\x98\x77\x2f\x9f\xd9\x76\xb0\x05\x99\xf1\xf0\x27\x6f\x3a\x2e\x4d\x98\x8a\xe9\x21\x25\x46\x7a\x8d\xed\xb7\xa1\x6f\x9e\x3a\x56\xe8\xd0\x06\x62\xb3\xeb\x67\xa3\x5b\x9b\x60\xe7\x3b\xd9\x35\x07\x7e\xe2\x38\xdf\x8f\x6e\x83\x3b\x9a\x55\x23\x38\x68\x26\xc1\xf2\x91\x7b\x1c\x3e\xc9\x8e\x0a\x5f\xde\x89\xc4\x8b\x1d\x44\x6d\xa5\xd0\xc8\x85\xfe\xf0\xe3\x74\xbf\xf3\x0a\x99\x7c\x7b\xaf\xd5\xe7\x43\xc8\x5d\x0c\x6a\xaa\x6e\xf1\x0a\x06\x12\x11\xa2\x32\x7c\x6d\x84\xeb\x74\x7a\x56\xe9\xbf\x60\xfc\xd5\xb5\x53\xb7\x98\x83\x4d\x0c\x5c\xca\xdb\x9d\x4b\x54\xe7\x23\x7d\x12\xc6\x79\xc1\x93\xa2\x87\xbb\x2f\x51\x1c\xd4\xee\x2a\x2d\x85\x49\xb4\x4b\x21\xc1\x1f\xbe\x57\x23\x38\x1c\x6c\x5f\x78\x46\x87\xfd\x90\xce\xbc\x5b\x49\x5a\xf9\xe4\x14\xf2\x96\x1b\x06\xa1\xc8\x43\x3b\x9a\xa3\x29\x2b\xcf\xf4\x24\x1c\x22\x71\x67\xf8\xd1\xde\x05\x4b\xa3\x3a\xd8\x1d\xa3\xeb\x3e\xc6\xe4\x0a\x6e\x26\x85\x4a\xf3\x49\x54\x01\x71\xb7\x5d\x75\xfb\x9a\x8d\x12\x93\x78\x27\xfd\x59\x4d\x31\x7b\x7a\x8d\x9f\x1c\x2f\xca\xbd\xa5\x63\x75\x56\x8c\x3e\x9e\x51\x4c\x2e\xff\xfc\x38\x78\x36\x3d\xcf\xad\x9f\xd9\x54\x36\xb0\x22\xe8\x77\x2a\x88\xcb\x71\xe8\x03\xbf\x90\x38\x19\x62"}, {{0xfe,0x71,0x72,0x27,0x83,0x64,0x19,0x4b,0xcf,0xef,0xb4,0x78,0x31,0x42,0xb7,0x9f,0x59,0xd5,0xfd,0x97,0x8b,0x1e,0x47,0xc3,0x14,0xd7,0x8d,0x4c,0xb3,0xf6,0x1c,0x8a,},{0x2e,0x82,0xcc,0xe4,0x79,0x10,0xc7,0xe2,0xa7,0x9b,0xc1,0xf4,0x19,0xdc,0x3c,0x3d,0xf5,0x4f,0x23,0x29,0x1f,0xc8,0x19,0x3e,0x82,0x58,0xcc,0xd2,0xfd,0x38,0xd5,0x48,},{0xf6,0xc2,0xa4,0x29,0x6b,0x9a,0x34,0x07,0xc6,0xd7,0xa5,0x67,0x9d,0xae,0x86,0x66,0xb5,0x03,0xd1,0xa1,0x7e,0xac,0xf7,0x1d,0xf4,0x93,0x79,0x1b,0x8f,0xf0,0xc0,0xaa,0x8e,0xed,0x36,0xb3,0x27,0xa2,0x9a,0xb7,0x82,0x8f,0x46,0xf2,0x2d,0xe8,0x68,0xb6,0x28,0xb1,0xcf,0xd5,0x01,0xe8,0x59,0x9f,0xa3,0x16,0x93,0xb1,0x5f,0x61,0x08,0x0f,},"\x23\x50\x94\x51\xa0\x59\x96\x9f\x2b\x4b\xdf\xce\xe5\x38\x89\x57\xe9\x45\x6d\x1f\xc0\xcd\x85\x7e\x4f\x4d\x3c\x25\xa4\x15\x5d\x5e\xe9\x1c\x20\x53\xd5\x58\x06\x2e\xea\x68\x27\x95\x0d\xe8\x63\xbc\x9c\x3d\xf9\x67\x2c\xde\x8b\xa7\x41\x74\x4e\xbb\xdd\xb4\x5e\xc1\xf4\x28\x45\x70\xfd\x0a\xac\xd0\x7e\xa5\x8c\x58\x1b\xe2\xaf\xc9\x5a\xe4\x44\xe6\x78\xed\xc2\xa0\x24\x39\xf3\x87\xce\xc9\x82\xea\x3a\x44\x81\x4a\x8a\x30\x2b\xb3\xbf\xe8\x22\x8d\x58\xde\x03\x9d\xeb\xdf\x7c\x2a\x7e\xdd\xb4\xe7\x1c\xa4\x74\xf9\x4f\x7e\x2b\xd8\x9d\xc6\x5b\x16\x10\x73\x3c\x91\xff\xf8\x9b\xd4\x99\xf4\x01\x54\xa6\x19\x8f\xdf\x5e\xc7\xad\x37\x22\xd9\x25\xb2\x92\x19\x6c\x42\x94\x99\x07\x5b\xe0\xc5\xb6\xda\x9c\x09\x0c\x07\x91\xa7\x01\x9e\xb5\xe7\x36\x6b\xe6\xce\x58\xab\x2f\x04\xfe\xcd\x91\x27\xc4\x27\x18\x04\x7b\xf4\x70\x30\x69\x15\x21\x31\x2c\x08\x77\xaa\x3f\x36\xcc\x5f\xbc\x9c\xaa\xe0\xfd\xe3\x94\x5d\x2a\x86\x8e\xe2\x50\x2a\x38\x33\x20\x8e\xb8\x50\xa1\x63\xcf\xcb\xf6\xda\x9e\xe6\xad\x9f\xe0\x67\xfe\x24\x19\x86\xfe\x44\x36\xd6\xae\x4e\xdc\x61\x56\x19\x38\xe2\xa3\x3f\x4a\x33\xdb\x63\xf6\x9d\x3f\x1a\x88\x50\xed\x40\x02\x88\x69\x16\x41\x03\x48\x8f\xb7\x95\xcd\x82\xca\x06\x7f\xe1\xb4\x89\x7c\xaa\x49\xa7\xca\x9a\x80\xf3\xa8\x15\x1f\xd1\x3b\xbb\x7f\xf3\x50\xe8\x57\x9f\x56\x5d\xc1\xc4\xa9\xca\x93\x8d\x27\xb1\x5b\x3f\x85\x8e\xf4\x5d\x3d\xd7\x8b\x2c\x35\x86\x35\x35\x63\x15\xf5\x5a\x97\x52\x8e\xcf\xec\x5d\x11\xa5\xb7\x21\x50\x31\x07\xfa\xa4\x06\xc1\x70\x34\xe6\x01\x47\x4b\x3b\x60\xcf\x48\x69\x2e\x26\x92\x61\x15\x8f\xc3\x53\xd4\xdf\x42\x74\x38\x13\x57\x79\x0b\x77\x56\x08\x7b\x00\xcc\x79\xe3\xb9\xd2\x8a\x3f\x24\x39\xfe\xbf\x19\x9e\x64\xa8\xb3\x7c\x91\xb5\xa4\x33\x4e\x33\x54\xe8\xfa\xf3\xa3\x61\xe8\x56\xc5\x4b\xda\xa4\x3b\xfd\xcd\x6e\xe6\xc9\xf9\x67\x95\x88\xf6\x06\x99\x50\x83\x23\x48\xaa\xcb\xa2\xbf\xee\xba\xca\xa2\x07\x1d\xdc\x7d\x77\x89\x8e\xf0\xf6\x87\x93\xcd\x25"}, {{0xa9,0x51,0xe4,0xe6,0xba,0x9f,0x1f,0x0b,0x35,0x48,0x31,0xc9,0x86,0x94,0x24,0x48,0xfa,0xed,0xe3,0x7e,0x11,0xb0,0xf2,0x47,0xda,0x27,0x06,0xdc,0xee,0xf7,0x3a,0xc7,},{0x30,0x36,0x20,0x14,0x97,0x4b,0xf7,0x5c,0x84,0x95,0xc2,0xe2,0x71,0xe7,0x13,0xd5,0x73,0x84,0x38,0x4d,0x0a,0x5d,0xa8,0x8e,0xde,0xea,0x79,0x27,0x9c,0x0c,0x58,0xec,},{0x02,0x78,0xc8,0x6a,0x15,0x20,0x8d,0x9b,0xe5,0xb1,0xe1,0x57,0x47,0x61,0x86,0x1b,0x8a,0xf7,0x2a,0xe0,0x8d,0x40,0xcd,0xcb,0xec,0x35,0x4e,0x65,0xa9,0xc3,0xd0,0xa0,0x6b,0x5f,0xcb,0xb2,0x97,0xd0,0x9b,0xef,0x39,0x74,0x62,0x39,0x59,0x86,0xc3,0x09,0x3e,0xeb,0x22,0x64,0x4c,0x00,0x3c,0x30,0x78,0x17,0x8c,0xdf,0x67,0x4e,0x99,0x0a,},"\x20\x57\x7d\xca\xc8\x91\x74\x88\x5e\xed\xb0\x62\x48\x9c\xd5\x12\xfa\x72\x86\x3e\xc5\x43\x8e\x31\xe9\x58\x78\xb7\x5c\xe2\x77\x2a\xee\x62\x90\xa0\xba\x3c\x8f\x64\x2c\x1d\x0e\xf5\x5d\xa8\xd5\xbc\x14\x84\xf8\x3b\xb9\x87\x6c\x7a\x8c\x0b\x6b\x60\x9b\x94\xd1\x12\xa0\x6f\xc8\x3c\xe8\xd2\xc1\xe0\x8e\xd6\xc7\x35\xe5\x7b\x24\x4a\xad\x6e\xcf\x70\x75\x36\x3d\x56\x5b\xa4\x78\x65\x69\x5c\x84\x23\x51\x09\x09\xe0\xa3\xdb\x4b\x61\xed\x7a\xa6\x7a\x74\x71\x33\x1e\x83\xa0\xc5\x8b\x82\x20\xa6\x24\x5f\x65\x66\x15\x49\xc1\xa1\x2d\x4c\x0d\x50\xc3\x26\xfb\x94\x91\x7c\xbd\x07\xbe\x51\xe8\x3f\xe8\xbb\x3e\x46\xca\x01\xb0\xa2\x60\xda\xaf\x1d\x6a\xbe\x37\x03\xd6\xa9\x25\x11\x3b\xb4\xd5\x7e\xa1\xa4\x8b\x4c\x7d\xbd\xaa\x03\xee\xa8\x14\xa4\xb5\xf0\x2e\x1d\xfb\x54\x5c\xc6\x23\xfe\x17\xa3\xbb\x18\xe4\x37\x3f\x5f\x7e\xc2\xfb\x52\x17\xd2\x3e\x4f\xed\x54\xa7\x72\xe1\x13\x23\xe7\x30\xaa\xd7\xef\xca\x8c\x46\x44\x00\xe7\x67\x90\x55\xfc\xc1\x25\xa8\x76\xef\x7b\x8b\x9d\xe1\x86\xe2\x29\xa7\xab\xf1\x91\xd0\xc5\x6d\x91\x81\x5f\x67\x87\x2e\x95\x7b\xfb\xc7\x63\x4a\xac\x40\x35\x76\xa5\x8f\x42\x7b\xdb\xb3\x0e\x8c\x4b\x6f\xc6\xc4\x47\x74\x10\x24\xeb\xb5\x03\xa5\xa9\x02\x51\x24\xa4\x88\x7f\x82\x5a\x43\xee\x94\x0f\x21\x0a\x1b\xd5\xae\x4f\x67\x32\xd6\x0f\x95\xf2\xb8\x32\x01\xc4\xc6\xdf\xe2\x79\x41\x2d\x75\x02\xa5\x21\x1f\x8f\x48\xf8\x00\xdb\x30\xfc\x37\x76\xc4\xed\x3a\x38\xbb\x46\x34\x82\x2c\x98\xa6\xd6\xdd\x32\x33\xbe\x60\xe4\x2c\xca\x45\xa3\x16\x3c\xc8\x4e\x9e\x8d\xa6\x47\xc0\x71\x1b\xc4\xc6\xcc\xd6\x5a\xa1\xe9\x72\xc0\x74\x04\xd1\x03\xe7\x4b\xcc\x31\xa7\xe2\xc3\xee\xa5\xac\x92\x57\xab\x42\x89\x47\xab\x3d\xd3\xfb\x15\x3d\x90\x69\x4a\x40\x73\x37\x3c\x4d\xd9\xce\xb1\x31\x15\x4f\xe8\x77\x47\x3f\xd9\x96\xf4\x24\xf3\x3e\x31\x6e\x4e\xb0\x2b\x8c\x75\x13\xbe\x69\x98\xe5\x16\xcb\xba\x54\xd9\x4c\xd0\xa4\x35\xe0\xff\xcc\x2c\x0a\x8e\xf7\x2b\x63\x0e\xc2\x47\x81\x06\x6a\xa5\xef\xb9"}, {{0x38,0xa9,0xb2,0xd4,0x9b,0xa8,0xb8,0x2f,0x30,0x1a,0x57,0x72,0xce,0xa0,0xef,0xc2,0x21,0x84,0x55,0xc8,0xb2,0x18,0xb2,0x2c,0xba,0xa2,0xaa,0xd2,0xd7,0xad,0x3b,0x35,},{0x9d,0xf5,0xea,0x1f,0x78,0xf8,0x10,0xa5,0x21,0x77,0x46,0x02,0xbb,0xba,0x49,0x42,0xf0,0x45,0x92,0x38,0x96,0x6c,0x8b,0xcd,0x21,0x90,0x0a,0xfb,0xf3,0xd8,0x42,0x93,},{0xe1,0x9e,0x62,0xac,0x53,0x9a,0x9c,0xa2,0x51,0xd1,0x2d,0x4c,0x71,0x05,0x5b,0x0a,0x3f,0x58,0x1d,0x19,0xf2,0x68,0x2e,0x67,0x24,0x04,0xc7,0x8a,0xc1,0xf1,0x2b,0xbe,0xfc,0x91,0x51,0x92,0x76,0xa5,0xcb,0xe1,0x6f,0x52,0x0c,0xf7,0xa7,0xf6,0x87,0xa2,0x40,0xf0,0x32,0x91,0x57,0xc5,0x9f,0x50,0x02,0x6a,0x58,0xdc,0xdc,0x50,0xfc,0x08,},"\x17\x78\x16\x7c\x49\xb3\xa4\x4d\x4a\x5b\xa8\x38\xb7\x38\x85\x53\xb1\xe1\x3d\x36\xea\x4f\x86\xd3\x02\x42\xe1\xa8\x22\xa3\xbb\xaf\xf5\xce\xa6\x3e\x2a\xe2\xa4\x63\x5b\xe2\x36\xfe\xf2\xb8\x13\x5d\x14\xfb\x62\x1c\x0b\xb7\x73\xc9\xc1\x77\x53\xf8\x09\x26\xeb\x55\xd0\xf1\x15\xbd\x09\xa8\x85\xd8\x44\xb8\x18\xc9\xf0\x44\x89\xa3\x31\xbb\x5e\x03\x2b\x8e\x58\xcd\xa3\x69\x49\xc5\xa8\xd0\x8b\x55\xbb\x8d\xe9\x65\xe1\xf9\x0d\x3b\x9c\xfe\xec\xfc\x6a\xd9\xa4\xee\x5c\xb4\x04\x7e\x94\x50\xac\xdc\x64\x64\x01\x66\xa8\xc0\x69\xea\x84\x9a\xeb\xdd\xac\x1a\xe4\xaf\xec\x91\xdd\xd1\x7f\xa5\x55\x3f\xa8\x7c\x56\xf7\xe5\x1e\xc1\xcd\x6b\x5c\xc2\x33\x51\xd0\x57\xa4\xce\x4a\x89\x23\xc8\xae\x6a\xc7\xa8\xaf\xdc\xc0\x88\x1c\x0e\x74\xeb\xb0\x24\xef\x72\x96\x16\x2c\xb9\x3c\x68\xe5\x0b\xbb\x07\x4e\x65\x1a\xc8\x7d\xac\x9e\xa5\x9d\x4c\x3f\xbf\x0f\xe3\x79\xf3\xe9\x7a\x24\x56\x6e\xca\xe5\x43\x03\xbc\xfb\x6f\x0c\xc9\xf1\x5f\x66\x39\x43\x0e\x66\xb1\x9a\x42\x78\x49\xfd\xff\xf8\x33\xdf\x02\x68\x9e\x9d\xe4\x40\x06\xc9\x03\xc5\x59\x18\x34\x59\xb9\xf4\xa9\x7f\x54\xa0\xf2\xa2\x8d\xf7\xb0\xe9\xde\xed\xa8\x23\x9d\x7b\x51\x69\x77\xf5\xe7\xd6\x97\x1b\x45\x02\xe9\x88\x5f\x75\x0a\xf8\xd1\xa6\x66\x9e\x25\xe7\x7d\x5f\x32\x7c\x77\xc8\x7a\x86\xe0\xa1\x87\x2b\xc9\x6a\x76\x06\x0f\x5f\x8a\x0c\x40\xcc\x97\x3b\xfc\x7f\xe6\xed\x9b\xca\x78\xf8\x84\xe6\xa2\x82\x8b\x94\xd4\x89\xd3\x2a\x0f\xd3\x37\xe6\x9d\xb8\x3f\xb8\x78\x9a\xfd\x4e\x8e\xf5\x4c\x22\xa7\x8c\x25\x87\x46\x8b\x9a\xe0\x71\xba\xe3\xb2\x02\xd3\x18\x3a\xd5\xf0\xf8\xe8\x42\xe5\xa8\xde\x85\xbf\xff\x49\xe0\x3c\x83\x81\xbc\xa7\xfd\x42\x78\xdd\xcc\xaf\x01\x34\xfb\x55\x93\xa3\x95\xa7\x7a\x5c\xbd\x43\x45\x93\xbc\x4a\xd0\xff\x4b\x84\x00\xec\x67\x4c\x4e\xca\xf1\xd5\x77\x54\xbe\x0c\xb2\xfa\x9a\x64\x41\xa9\xab\xad\x7b\x42\x19\x7a\xd8\x2e\x50\x82\x7e\x4a\x42\x45\x57\x3a\x8f\x0e\xf8\x7f\x58\x22\x8a\x28\x67\xf4\xb3\xb8\x34\xb6\x63\x50\x37\x94\x0a"}, {{0x9a,0x17,0x17,0x87,0x36,0x89,0xa0,0x3c,0x11,0x2d,0xd6,0xb4,0xd7,0x6a,0xe7,0x3b,0x89,0xb4,0x16,0xa5,0x98,0xce,0xec,0x20,0x9e,0x27,0x96,0x1e,0x7b,0xb1,0xee,0x8a,},{0xee,0xca,0xd1,0xe0,0xe4,0xb8,0x63,0x29,0x18,0x81,0xa8,0xc2,0x41,0xdb,0x9c,0xcf,0xff,0xe4,0xe5,0x5d,0x8b,0x5a,0x42,0xf3,0x07,0xb4,0x43,0x6a,0xcd,0x06,0x49,0xa6,},{0x1a,0xf8,0xbe,0x09,0x55,0x38,0x96,0x58,0x00,0xd8,0xef,0xf6,0xd7,0x23,0xd0,0x28,0xd6,0x5d,0x0e,0x9c,0x6e,0xb5,0xe9,0xd1,0x25,0xbb,0x3b,0x17,0x83,0xf1,0x1e,0xf7,0x07,0x9a,0x49,0xa8,0x07,0xe2,0x7e,0xf1,0x26,0x0b,0xe2,0x6a,0x3b,0x23,0x1d,0x03,0xb2,0xae,0x15,0x1e,0x49,0xf6,0xf1,0x89,0xf1,0x5b,0x1c,0x83,0xea,0xb0,0x1c,0x02,},"\xe2\x65\x80\x47\x09\x01\xa0\x7a\xb0\x93\x1a\xa2\x38\x29\x80\x2c\xe0\x4d\xa5\x9f\xdc\x2f\x77\x3b\xc5\x67\xf1\xe6\x5b\x4f\x2e\x2d\x4a\x1a\x6a\xec\x1f\x54\x15\x8a\xdf\xce\x9b\x09\x97\x90\xb5\x03\xa1\x3d\x22\x09\x7a\xe2\x3e\xbc\xcf\x92\x3f\x3b\xb1\x98\x6d\x6e\x49\x11\x1a\x8c\xf0\xd4\xeb\x82\x36\xbf\xe0\xd7\xc9\xe9\x3a\x5e\xfc\x7f\xeb\x8e\x6a\x9c\xd1\xb8\xd9\x21\xef\xa2\x1e\x44\x9f\xf4\x9e\x06\xc1\xcc\xfe\xa3\x1f\x93\xe0\x33\xc3\xc2\xa5\x4d\xdb\x0f\x65\x3a\x09\xfb\xd1\x8a\x70\xb5\x63\x15\xf1\x93\xe7\xbe\x56\xe5\x16\x8f\x59\x56\x38\x21\xd4\xbc\x3b\xbb\x0e\xaa\x20\x48\x28\x6b\xbe\xee\x5a\xa3\xf3\xe7\x53\x6c\xf2\xb7\x50\xfd\x32\x26\x02\xbb\x38\x47\xce\xca\x39\xb7\x54\x74\x32\x2d\x76\xb1\xde\x80\xfa\x2e\xad\xba\x15\x2d\x6f\x8f\x02\x0d\x4d\x93\x1c\x53\xf0\xa2\x80\x12\x24\xd3\x5d\xeb\x6e\xc1\x3b\x01\x48\x73\xe6\x89\x90\x36\x07\xde\x96\xd9\xb7\xa7\x43\xa8\x87\xd2\xf4\x8d\xaf\x2e\xd2\xee\xfb\x20\x2a\xbf\x60\x82\x79\x69\x81\x12\x3b\x96\x6e\x93\x6d\xcf\x34\x83\xe2\xd2\x4d\x69\x4e\xcb\x86\x5f\xbe\xb6\x96\x9f\x34\x70\x27\xfb\x8b\x17\x5d\x24\xa4\xc0\x45\xc0\xbb\x4a\xb5\xe0\x2d\xdc\xbe\x77\xd4\x75\x6c\x46\xd1\x37\xb0\x94\x47\x3a\x02\x30\x7a\x10\x83\x40\xac\xad\x9d\x03\xba\xe8\x40\x3a\xf1\x99\xcb\x75\xca\xe3\x16\x2f\x38\x15\x81\x3c\xc6\x8b\xf2\xa5\xe4\x99\xe5\x94\x92\x11\x49\xf3\xbb\xd2\x14\xda\x51\x37\xe7\x56\x52\x15\x59\xdc\x80\xd9\xa4\xb7\x4a\x0f\x49\x43\x02\x2c\x7c\xd5\xfc\xa4\x23\x15\xe0\xbc\xee\xae\x90\x69\x61\x5c\xe6\x7a\x04\x38\x24\x12\x31\x3a\x31\xd6\x7b\x34\x6c\x32\x9a\xd8\x2e\x74\x2c\x0a\x6c\xe0\xa6\xa0\x24\x54\xc1\x13\xe5\x20\x22\xf3\xcc\x03\xfd\xa6\x91\xeb\xdf\xe1\x4c\x53\xc8\xce\x5c\xa9\xb9\x32\xca\x1a\x38\x6e\x3e\xb4\xe9\x0a\x4d\xc6\xe8\xad\x85\x33\xb5\xaf\x1a\xae\xf5\x00\x31\x28\x65\x5c\xa6\x4f\x67\xfc\xd9\x7c\x6a\xc8\x03\x00\x24\x04\x90\x0b\xc0\xfa\xe9\x84\x63\xbc\xc3\x14\x09\xf9\x98\x17\x48\x78\x9a\xde\x2d\x07\x78\x3b\xc3\x2b"}, {{0x43,0xbd,0x92,0x4d,0xb8,0x15,0x60,0x08,0xc6,0xb3,0x99,0x4a,0x81,0x30,0xd4,0x27,0xd5,0x14,0xdb,0x8a,0x61,0x3b,0x84,0xdf,0xb0,0xb8,0xe0,0xde,0x6a,0xc3,0x06,0x76,},{0x1b,0x34,0x61,0xc2,0x69,0xd5,0xb0,0x06,0x2d,0x5d,0xf6,0xfa,0x65,0x4a,0x25,0x86,0xf6,0x47,0xa0,0x68,0x42,0x18,0xa0,0x6e,0x5e,0x2f,0x7b,0xad,0xfb,0x39,0x41,0x31,},{0xd2,0xa0,0x5d,0x88,0xd9,0xd5,0x43,0xd9,0x4d,0x57,0xec,0x88,0xae,0x55,0x68,0x17,0x50,0xf2,0x0b,0x9b,0xe9,0xc1,0xe9,0x18,0xcd,0xaf,0x45,0x77,0x67,0xf2,0x94,0x8d,0xd6,0x29,0xe9,0x4f,0x06,0x8e,0xdc,0xf3,0xd9,0x92,0x7e,0x33,0x02,0x34,0xba,0xdc,0x3a,0x02,0xfa,0x5a,0xd3,0xd9,0xd8,0x5e,0x94,0x8c,0xb0,0xb0,0xcb,0x3c,0xd7,0x0a,},"\x61\x84\xe6\x48\x0c\x42\xe9\x6c\xc8\x77\x26\x9b\x16\x37\x15\x45\xff\x95\x23\xc4\x5e\xa8\x8e\x76\xa1\x34\x8c\x68\xae\x7f\x31\x8b\x08\x8f\xe4\x61\x09\x28\x23\x91\x85\xb6\xb5\x5b\xfa\x0f\x43\x64\x4c\x4a\x4c\x97\xc5\x6e\xd7\x7d\x08\xb1\xf4\xaa\xd2\xf4\xaa\x06\x99\x94\xab\xec\xa9\x6b\x7b\xf8\x1b\x80\x64\xea\x43\x50\xd8\xa8\xb0\x22\x97\xa5\x13\x08\xb6\x1c\x57\xc8\xf1\x87\x3c\x6f\x97\x00\x7a\xca\x31\x80\x42\x9e\x73\x0a\x66\x43\xf2\x87\x33\x54\x7b\xcf\x7b\x9a\xdf\xe3\x27\xe8\x57\x36\xbd\x04\xaf\x7f\x1d\x9f\x4f\xb8\x4a\x7f\x3a\xff\xdf\x4e\x22\xb5\x74\xec\xb4\xbc\x88\x36\xb1\x0b\x84\x53\xae\xaa\x5c\x1b\xf1\x32\x24\x8b\x82\x6c\xc5\x23\x0f\x75\xe0\x75\xfa\xc9\xf0\x37\x56\x11\x36\xe0\x06\x43\xd0\x82\x53\xe7\xad\x65\x2f\x70\x2c\x0d\x15\xb6\xd7\xd4\x8a\xa6\xf8\xe9\xb5\xf5\xcc\x14\x6e\x3f\x15\x6f\xb2\x52\x27\x51\xc3\x71\x00\x41\xbd\x92\x2f\x37\xa5\x03\x77\xe0\x28\xb0\xc4\xe4\xbc\x34\x65\xd7\xc8\x4a\xf6\xa5\xfb\x42\x7a\xcb\x3b\x41\x37\x8b\x10\x2b\xda\x46\xd8\xf6\xf2\x03\xa5\xff\xcf\x39\x5d\x43\x5e\x93\x45\x8a\x0b\x0a\x4c\x2e\x77\x82\xfa\xfe\x11\x9f\x76\x9f\x67\x05\x8c\x66\x77\xf6\xd1\x0d\x9c\xf5\xcb\x87\x48\xe1\x80\x57\x98\xed\x23\x3f\x6f\x93\x0e\xee\x0e\x50\x75\xbc\x58\xb9\x7a\xf9\x17\x7f\xda\x75\xd5\x37\x08\xbe\xb0\x4d\xc4\xf1\x9a\x43\xe7\x68\x07\x46\x09\xf1\x40\x65\xf4\x8f\xda\xd5\x07\x7c\xe1\x09\xba\xcc\x35\x71\x74\xa6\xb7\x95\x6f\x6e\x7f\x32\xe3\x84\x15\xbe\x52\x63\x70\xfa\x58\xc3\xc0\xb3\x1f\x51\xe6\xcd\x4b\x2c\xf2\x7f\x8b\xcb\xc2\x12\x59\xd9\xe5\xc3\xb5\xc2\x94\x6a\x9f\xc1\xb0\x0d\x9d\x15\xc3\xb7\xd8\x0b\xfd\x9d\x05\xdb\x91\xd2\x49\xd3\xe4\x2d\x89\x56\x68\x20\x44\x54\x8d\x83\xbd\xa8\xd5\xcc\x92\x12\x44\x2f\x30\xb4\x5c\xf4\xae\xad\x80\xcc\xe9\xb3\x51\x2c\x39\xc5\xc7\x37\xd3\xf8\xd7\x47\xaf\xba\xb2\x65\xaf\x5e\xee\xf8\xca\x93\x62\xec\x76\xe9\x43\xb0\xa0\xd7\xa3\x9f\x3d\xb1\x1e\xca\x14\x45\x8a\x7b\x59\x2e\x5e\x4f\xf2\x27\x5d\xd4\x8b\x28\x53"}, {{0x8f,0xb0,0x86,0x20,0x6d,0xd9,0x5a,0x26,0x21,0xf5,0x98,0x56,0x0c,0xcb,0x28,0x1f,0x82,0x73,0xc8,0xfc,0x72,0xe2,0x36,0x11,0x08,0x9b,0xaa,0xc8,0x9d,0x3c,0x3c,0x78,},{0x20,0x27,0x6e,0xf4,0x79,0xf4,0xd4,0x52,0x3a,0xb7,0x74,0x20,0xd4,0x24,0xe8,0x81,0x9c,0x33,0xc8,0x37,0x79,0xed,0x80,0xc7,0xf6,0x66,0xe8,0xf4,0x40,0x3f,0x94,0xd7,},{0xa9,0x30,0x5e,0x00,0x16,0x00,0xd5,0x97,0xd0,0x5e,0xf6,0x71,0x69,0x9b,0xf0,0x9f,0x0d,0xcc,0x0c,0x44,0x47,0x5d,0x3c,0xa3,0x1e,0x7f,0xf1,0xbf,0xfe,0xdc,0x0c,0x67,0xda,0xa1,0xf3,0xb7,0x6a,0x03,0x59,0x48,0xc5,0x9c,0xd8,0x7f,0x82,0x45,0x3a,0x40,0x95,0x0a,0x1c,0x97,0x03,0xc2,0xe7,0xd9,0x28,0x0e,0x73,0x03,0x96,0x6d,0xa3,0x01,},"\xf0\x29\x03\xed\x42\x66\xe8\x49\xa4\x48\x52\x05\x95\x4f\xff\xa8\xa1\x08\xc3\x23\xb7\xe3\xf8\x43\x31\x04\x35\x14\xe4\x85\x56\xab\x01\x94\x97\x23\x3a\x5a\x12\x7b\xff\x3c\xd7\xc9\x70\x86\xbe\xce\xf5\x38\xb3\xf3\x39\xd7\xd0\x6e\x53\x2d\xc7\x32\x5e\x59\x7a\xe3\x57\xf8\x16\xde\xa4\x2a\x6a\x22\xc7\x9d\x22\x07\x4a\x2e\x1a\xd8\x02\x3c\x42\x4b\x7e\x09\x6e\x5a\xd8\x89\x7b\x05\xef\x7d\x00\xd3\x0a\x04\xaa\xf2\x98\x1e\xdd\xff\x2b\x34\x7f\x1e\x27\xe2\x0a\xab\xbe\x7e\x7a\x95\x44\x97\x8e\x09\x2b\x00\xcc\xe4\x20\xab\xa0\x61\x87\x37\x4f\xfb\xb3\x7b\x4c\x22\xd7\x5f\x04\xe5\x75\x90\xf6\x10\xa2\x73\x47\x28\x6c\x29\x83\x12\xa6\xc9\xb1\xbd\xf2\x4f\xbd\xa8\x51\x3c\x4f\x83\x56\xcc\xf7\x57\x06\x8f\xfc\x11\xbc\x65\x11\x37\x83\xa5\xdd\xe7\x72\x2f\xaf\x4c\xeb\x19\xfb\xb6\x2f\x40\x70\x2e\x2c\x6e\x6a\x8b\xb4\x9e\xf4\x04\x46\x45\x0c\x4c\x59\xa2\x99\x09\x44\xda\x47\x44\xf6\xee\x77\x0b\x93\x0c\x24\x66\x69\x81\x3c\xe5\xa9\xf5\xa4\x7d\xd8\x03\x88\x98\x1b\xfc\xc3\xa5\x6b\x5b\xe2\xc4\xc7\xe6\x59\xa2\xe9\x18\x2d\xec\x0a\xaa\xfe\x90\x31\xaa\x39\x54\xd4\xfe\x7c\x43\x11\x96\xa5\x61\xa5\xb7\x8e\xab\xa6\x4f\x3d\xb1\xb5\x86\xc5\x3b\x16\xf6\x79\xa8\x49\x21\xa6\x42\xc2\x60\xe4\x65\x3a\x61\xde\x10\x8e\xbd\xe6\xf7\x05\x3a\xfa\x2c\xb3\xf3\x66\x8e\xde\x12\x10\x20\xdd\x1b\xac\xe8\x41\x8a\xeb\xac\x3a\x5b\xd5\x14\x2f\x10\x5a\xc2\x6f\xe4\x9e\x5f\xb1\x40\xc1\x9b\x22\xd5\x4a\x62\x91\xdf\xc9\x54\x67\x02\x47\x88\x16\x46\x87\x4d\xef\xad\x81\x49\x95\x51\x9f\x62\x60\xe9\x77\x4a\x8d\x18\x5c\x37\x88\x1b\x4f\x25\x43\xc4\xb6\x3f\xbf\x19\x85\x01\x6a\xb4\x1c\x4d\x72\x8c\xbc\x90\xb3\xab\x87\x62\x67\xbe\xd4\x1d\x0c\x09\x02\xf6\xb5\x0e\x8f\xa9\x06\xfc\x47\x88\xf7\xb8\x20\x46\x73\x06\xe0\xfe\x9e\x03\x6a\x0a\x00\xf8\x04\xf9\x1c\x3c\xa7\x18\xb9\x5f\xf6\xd9\xe2\x20\x4b\xc3\x16\x1b\xf7\x0f\xcc\x17\xb2\x96\x4b\x56\xbc\x61\x2e\x29\x40\x2d\x96\xf5\x09\x86\x51\x4b\xc7\xd8\x31\xd5\x8e\x42\x79\x37\x86\xd5\x80\x6f"}, {{0xaf,0xa1,0xb8,0x46,0xc2,0x10,0xb5,0x23,0x00,0xe9,0x76,0x96,0xf8,0x1b,0x8e,0xa7,0x74,0xd1,0xdf,0x12,0xe6,0x12,0x52,0x7c,0x55,0x74,0x7f,0x29,0xc1,0x93,0x73,0x96,},{0xb6,0x09,0x56,0x6b,0xbd,0x19,0x47,0xbd,0x7a,0xfa,0xce,0xb1,0x43,0x89,0xe8,0x36,0x22,0x71,0x69,0x21,0x5f,0xab,0x66,0x85,0x1a,0xa5,0xd7,0x0d,0x6e,0x2e,0x3b,0x89,},{0x98,0xb0,0xc6,0x31,0x3c,0xec,0xaf,0x7c,0x82,0xcb,0xde,0xb3,0xd0,0x28,0x06,0x41,0xc6,0x1a,0x06,0x0f,0x65,0xe5,0x63,0xaa,0x93,0xce,0x18,0x30,0x0a,0x9b,0x58,0x27,0x2d,0xc8,0x68,0x0b,0x48,0x5e,0x8c,0xd1,0x1c,0xf8,0x0f,0xdc,0xa8,0x68,0xfa,0xb3,0x65,0x37,0x83,0x84,0xa1,0x42,0x72,0x7f,0x2f,0x84,0x4f,0x87,0xcf,0xdf,0x19,0x05,},"\x4c\xac\x1b\x1f\x4b\xd4\x82\x84\xdc\xc9\xaf\xc8\xb5\x95\x5b\x64\xb4\x36\xdb\x70\x4b\x03\x35\xd9\x75\x5c\xc1\xf9\x74\x77\xf8\xd3\x23\xcb\x64\x10\xef\x14\x6a\xb8\xa9\xef\xb9\x52\x6d\x8b\x62\xe3\xbb\xad\x1f\x72\x95\xf4\x7b\xa9\xf0\xde\x95\x8f\x8e\xc9\xb7\x7a\xb4\x22\x32\x43\x7e\xd9\x74\x85\x64\x44\xcd\x22\xe2\x0b\xe3\x5e\x91\x81\x3b\xff\x4b\x01\x6f\x81\x0d\x0f\x61\xd8\x9f\x6b\x61\x4d\xb3\x3f\x34\xbd\x09\x98\x5b\x59\x3f\xe3\xe0\x6e\x06\x5b\x7b\xc6\xcd\x39\xd5\x5c\x2c\xfb\xec\x7b\x6d\x59\xc0\xb3\x7d\xd1\xd0\xd3\x51\x35\xab\x1d\x1b\x04\xf2\xf3\x0c\x2f\x04\xf4\xba\x2b\x36\x58\x27\x38\x08\x1c\xf5\x91\x90\xf5\x28\x36\x3d\xb9\x44\xed\x61\x29\x31\xd1\xd5\x14\xc6\x21\x4f\x9a\xb9\x2a\xbb\x18\x33\x92\x61\x83\xac\x52\xfb\xa2\xa4\x55\x1e\x20\xe4\xc0\xac\x95\x9a\x49\xdd\xb1\x67\xa3\x81\xe0\x24\x1d\x40\xc0\x86\xe9\x0e\x52\xac\xa0\x17\x25\x89\x75\xdb\xab\x2b\xa4\x51\xee\x53\x9a\x71\x8f\x07\x6a\x58\x70\x9c\x66\x97\x41\x8d\x9c\x6f\x13\xe4\xd3\x91\x36\x8b\xf0\xe8\xbd\x8f\x29\x32\xdd\x95\xce\xaf\x7a\xac\xa1\x24\x11\x47\xd3\x41\xa3\xac\xd0\x8d\xc3\x29\x05\x48\x35\x72\xb8\x9a\x80\xcc\x47\x23\x14\x68\xab\x8d\xe3\x59\xdd\x52\x5a\x62\x57\xcf\x19\x6c\x2e\xcb\x82\xfa\x8a\x78\xaa\x3a\x85\x1c\x7c\x96\xca\x25\xbf\x7c\xa3\xdc\xf3\xca\x21\x45\x3d\x0d\xfd\x33\x23\xd5\xa4\x22\xde\xc8\x43\x16\x10\x2f\x68\x4c\x35\x9f\x22\x6b\xb5\x37\x79\xc0\xb9\x95\x09\x39\x28\x1e\xf7\x9a\x58\xc0\x11\x99\x3e\xac\xe0\x85\x49\x7a\xfa\x4d\xaf\x64\xc9\x68\x7b\x0a\x11\xaa\x11\x6c\xfa\x7b\x03\x93\x62\x41\xa5\x56\x7b\x64\x6e\x7e\x42\xe9\xfb\x59\x24\x05\xb8\xfa\x3c\x0a\x82\x1f\xc3\x12\x1b\x45\xb1\x75\x3c\xec\x9a\x83\x94\x7d\x21\x1a\x45\x49\x9b\xd6\x37\x90\xb8\x7f\x01\x47\x2f\xe5\x66\xd8\x76\x96\xef\xed\xbb\x74\xed\x00\x04\x8c\x38\x4b\xa7\xf0\x27\xb3\xaa\x42\x98\xdc\x41\x10\x34\x9f\xed\xf5\x2a\x96\xcd\x05\xd0\x8b\xd6\x35\x77\x1e\xd4\x51\x07\x38\xd8\xf0\x7a\x60\x21\x24\x4d\x19\x03\x57\x9a\x3e\xa7\x39"}, {{0xc8,0x59,0x13,0xa6,0x87,0x78,0x77,0x13,0x10,0x01,0x62,0x3c,0xcd,0xa9,0xcd,0xc1,0x2b,0x9d,0x40,0x43,0xb8,0xa8,0x37,0x93,0xc4,0x46,0x96,0x63,0x2c,0xd6,0x42,0x1c,},{0x9c,0xc6,0x7c,0x69,0x48,0xf7,0xbf,0x6e,0x55,0x6d,0x08,0x49,0xd3,0xb8,0xd2,0x03,0x45,0x7a,0x7b,0x61,0x54,0x9b,0x36,0x68,0x1d,0x75,0x4f,0x1d,0xc0,0x84,0x1e,0x96,},{0x01,0xfc,0xcf,0xdb,0x1f,0xb6,0x88,0x8b,0x03,0x10,0xa9,0x13,0x17,0x0f,0x7e,0x36,0x68,0x16,0xda,0xeb,0xe7,0x65,0x0d,0x72,0x51,0x3d,0x95,0x06,0xe6,0x6f,0x7d,0x62,0x20,0x8a,0x49,0xec,0xe0,0xaf,0x18,0x71,0x49,0x7f,0x45,0x41,0xef,0x60,0x5b,0xde,0x71,0x1c,0x9e,0x0a,0x12,0x05,0xef,0x48,0xf2,0x6c,0x03,0xdc,0x1a,0xd4,0xaf,0x03,},"\x91\xb5\x00\x9e\x83\xd0\xf6\x10\x33\x99\xc2\xd3\xfe\xec\x00\x84\x97\x3a\x30\x5b\xf4\x17\x6e\xc7\x82\x53\x75\x60\x47\x2d\xb1\x87\xa1\x1b\x4d\xcb\x4b\x2f\xfb\x7f\x06\x44\xfe\xb3\x94\xb2\x8e\x5b\xfe\x97\x24\x7c\x4a\x4a\x23\x1c\xf6\xe9\x16\xbf\x99\x34\x4c\xcd\xa8\x8a\x7f\x5d\x83\x1d\x6d\xe3\xd5\x63\xdd\x10\x2e\xae\xb1\x08\xc5\xbd\xce\x44\xe0\x63\x2d\x17\xe6\xfa\x55\xb1\x80\x67\xdf\x2f\xa8\xd2\x00\xa9\x86\x9f\x6a\xff\x92\x0c\x51\xd4\x6a\x1c\xed\x2d\x90\x3b\x1d\x9b\x6b\x07\x5f\xac\xbf\x91\xcd\x05\xeb\x41\xad\x81\x1a\x8e\xf4\x0d\x91\x18\x26\x10\x12\xc7\x2b\x89\x79\xf1\x51\x53\xdb\xb8\x56\x12\x93\xda\x9f\x8b\x77\xc8\xff\x14\xf7\x53\x87\x53\x6f\x00\x36\xd1\x71\x3a\x72\xce\x8c\x35\xb1\x06\x2f\x2c\x67\x32\xae\xbf\x32\x93\x67\x99\xb5\x1c\x2c\xbc\xd6\x57\x24\x13\xe7\xdf\xaa\xb8\x64\x1a\x02\xc1\x50\x23\x73\x81\xcf\x7a\x14\xe2\x2c\x74\xc6\xc2\x00\x09\xde\x7d\x3b\x7e\x69\xcd\x1b\x45\x84\xac\x2c\x01\xba\xba\xf9\x73\xc5\x6b\x38\x14\xbb\x00\x89\x72\x0e\x41\x96\x81\x06\xcf\x26\x50\x9d\x4a\xa5\x46\xfc\xad\x55\x34\xaf\x30\x3f\xfc\xa4\x2b\x16\xae\x6c\x93\xee\x06\xbc\x3c\xac\xe1\x2e\x4e\xc7\x18\x84\x4b\xd3\x0d\x22\x24\xcc\x48\x6d\x10\x6d\x1c\x45\x6b\xfa\x16\x5e\xa0\x12\x0f\xab\x3d\xf2\xc5\xab\x3a\x52\x3b\xbf\xa7\x89\xde\xed\x44\x03\x2a\xb0\xbe\x86\xeb\x7c\xc0\x9c\xdb\x7c\x07\xaa\x94\x8d\xd5\x27\x7c\x3d\xf1\xd9\xd1\x84\x35\x67\xde\xc8\x4f\x92\x88\xe0\x85\xb0\x5a\xe4\xb8\xaf\x2c\xea\x5d\x9a\x18\x4d\x50\xbe\xf8\x55\x50\xc8\x36\x61\x3d\x5d\x3a\xf5\xf9\xc2\x92\x8e\x6a\x89\x66\x0f\xa6\x27\x19\xeb\xff\x77\x3e\x46\xb7\x7e\x34\xbc\x04\x70\xda\x4d\x2c\xdb\xc7\x07\x1d\xa7\x58\xc4\xd3\x9f\xe6\x52\x01\xc8\x8a\xaa\x8e\x66\x03\xd0\xbb\xe7\xc3\xe9\xb2\xd9\xe4\x1b\x63\x46\x82\x09\x2f\x14\x73\x41\xad\x6d\x66\x7f\x20\xc6\x4e\x81\xa6\x8d\x62\x94\x67\xa5\x4d\xd8\x6e\x1c\xe1\x2c\x56\x0a\x6f\x9b\x64\x51\x2d\x6f\x38\x86\xcb\xb9\xf3\x7c\x37\xeb\x39\x85\xc8\xac\x38\xdd\x66\x82\xf4\x8f\xe1"}, {{0xfa,0x1e,0x11,0xdc,0x83,0x64,0x20,0x8d,0x8e,0x1c,0xb6,0x6a,0x36,0x1b,0xe7,0xe8,0x4c,0x5e,0x36,0x81,0x66,0x58,0x7d,0x4f,0xdb,0x06,0xac,0xed,0x7f,0x62,0xe1,0x7c,},{0x4d,0x8e,0x6f,0x4b,0x34,0x15,0xdf,0x6c,0xed,0xab,0xfb,0x29,0x5c,0x19,0x84,0xfd,0x41,0x99,0x23,0xc6,0xac,0x41,0x76,0x4e,0x32,0xd2,0x2d,0xaf,0x37,0x2c,0x50,0xfc,},{0xe8,0x57,0xdb,0x08,0x7e,0x28,0xd6,0x75,0x0b,0xf5,0x4e,0x53,0x79,0x72,0x51,0xd8,0x43,0x99,0x89,0x57,0x6c,0x12,0xda,0x2d,0x9c,0x81,0x1a,0x14,0x87,0x7c,0x3b,0xd4,0x6c,0x4e,0xfa,0xb8,0x61,0xa1,0x0e,0xeb,0xe7,0xda,0x04,0xc0,0xb0,0xb4,0x45,0xc7,0xa3,0x90,0xa5,0x0c,0x13,0xde,0x36,0xf3,0xa3,0xc7,0xae,0x01,0x57,0x02,0x2c,0x0e,},"\x29\x4e\x63\xba\xcc\xcb\x80\x1b\xbf\x04\xc1\xf1\x9d\x0a\xee\x16\xf5\x65\x0a\x6e\x8e\xea\x6f\xe4\x11\x10\x66\x3e\xc0\x15\x32\xbd\x49\x60\xa5\x27\xf1\x5e\xca\x4a\xf2\xf4\xe6\xb7\xb0\xfc\x34\x0c\xf9\x7a\xa2\x34\xe9\x2c\xf7\xd6\x9d\x50\xe4\x00\x9c\x24\x96\xe3\xed\x4d\x9a\xff\x00\x0f\x9e\x18\x52\x75\xb8\x17\xd2\x6a\x0b\xab\x69\xb7\xf7\xee\x1e\xa3\x0d\xae\xc8\xbc\xee\x38\x7a\xe4\x6b\x4b\x29\x9c\x27\xbd\xc0\x6e\xea\x63\xf2\x4d\xbe\xe9\x55\xa6\xc0\x96\x90\x37\xee\xf9\x1c\x34\x32\x1e\x3c\x5c\x97\x2f\xde\x99\x31\x83\xb7\xd2\x3f\x6e\x01\x9c\x3e\x0c\xac\x75\x89\xae\x4a\x15\x21\xaf\x87\xea\x42\xdf\x8c\x22\xc2\x27\x0e\xc2\x3d\x6d\x14\x0f\x9c\xf6\xd4\xd5\x2f\xac\x1b\x9d\x6c\x89\x39\xef\x81\x31\xcb\x62\xa0\x35\xc5\x26\x15\x38\xbc\xdf\xd6\xdb\x41\x9a\x55\xef\x9f\xe5\xd7\xa5\xac\x44\x57\x9d\xe7\x00\x85\x8d\x74\xa3\x43\x48\x44\xf2\x83\x42\xc5\x65\x89\x27\x22\xe2\x7f\x40\x7d\x7f\x17\xb7\x4a\x59\x34\xbe\x91\x5b\x20\xc2\x40\x06\x43\x23\x5f\x8a\xb5\x79\x5f\x32\x4e\x33\xc5\x06\x44\xa0\x40\x33\x54\x2c\xb3\x81\x6d\x77\x0f\xa8\x99\xe7\x31\x1c\x14\x30\x1c\x1b\xd0\xf5\xaa\x60\xa2\xeb\x31\x65\x68\x0c\x72\x0e\x1e\xfa\x80\x96\xfc\x25\xd2\x77\x92\x75\xf1\x84\x2b\x2d\xb5\x3b\x4d\xa0\xad\x3e\x59\xc0\x75\x40\xc2\x84\x60\xce\xc1\xfd\xd3\xcd\xb7\xa3\x47\x8b\x91\xa9\xca\xf9\xac\x89\x1c\xdf\x3a\xea\xee\xca\x9a\x96\x56\xac\x13\x07\x25\x99\x22\xfc\xa7\x4c\x5c\xc6\x9f\x7e\x25\xc6\xbf\x58\x79\x73\xa4\xb7\xd3\xe3\xac\x06\x35\xb0\xdb\x22\xa0\x09\x3a\x79\x07\x68\x81\xc7\x17\x36\xee\x1d\x4d\x45\xf8\xed\x2d\x29\xa0\x67\x1a\x64\xe6\xca\x2f\x7a\x5e\xf4\x04\xb1\xed\xeb\x84\x20\x34\xf5\x71\xb6\x99\xbc\x59\xe5\xa3\x7d\xf0\x20\x54\xe8\x48\x2b\xf1\xe7\xb7\x7d\x8e\x83\x97\xda\x15\xd8\x9d\x73\x55\xa5\xdc\xe8\x6b\x16\x83\xa9\xac\x4e\x40\x6c\x08\xa9\x4a\x6e\xb0\x0e\x5a\xe1\x6d\x96\x72\x29\x72\xe5\xc5\x0c\x7b\xee\x4a\x84\xd0\x69\x7b\xbe\x67\xce\xb7\xef\x29\x5f\x06\xaa\xea\x5a\xbb\xa4\x44\x66\xbe\x0f\x67"}, {{0x24,0xa9,0x14,0xce,0xb4,0x99,0xe3,0x75,0xe5,0xc6,0x67,0x77,0xc1,0xed,0x20,0x43,0xbe,0x56,0x54,0x9d,0x5e,0x50,0x2a,0x84,0x47,0x10,0x36,0x40,0x42,0xba,0x9a,0xcb,},{0x20,0xd2,0x1e,0xe7,0x64,0xb1,0xf3,0x5f,0x94,0x56,0x82,0x00,0xd6,0x3b,0xd5,0x82,0x8a,0xca,0x8c,0x5d,0x3e,0x90,0x47,0xd2,0x3f,0x47,0x8b,0x92,0x52,0x95,0xfa,0x2e,},{0x3a,0xe0,0xcc,0x7b,0xca,0x8d,0x73,0xbe,0x83,0xa9,0xb8,0x09,0xb1,0x33,0x38,0xc1,0x27,0x06,0xaa,0xef,0x75,0xc4,0xd1,0xa4,0x78,0x17,0x8f,0x9d,0xc5,0x65,0x51,0x4c,0x75,0x29,0xe2,0x98,0x04,0x3e,0xa7,0x8d,0x21,0xa5,0xa0,0x9d,0xd0,0x4f,0x10,0xae,0x87,0x44,0x1e,0x56,0x86,0xa9,0x33,0xc9,0x2c,0x75,0x54,0x84,0x27,0xad,0x3a,0x03,},"\x3f\xf9\xf6\x6f\xa2\x64\x6e\xc6\x6a\x1b\xf9\x33\xc2\xb4\xcc\x0f\xbf\x91\x2b\x4d\x6d\xb5\x05\x34\x25\x7f\x97\xd0\x1e\x69\x8d\x05\x48\x57\x47\xde\x25\x44\xe9\xf5\xa4\xa4\xa0\x75\x38\x8c\xf4\x40\x0a\xb8\x9b\x03\x53\xce\x86\x19\x82\x02\xdb\x3a\x90\x37\x67\xb8\x79\xa2\xaf\x9d\xaa\x15\x58\x43\x11\x1a\xf1\x5a\x2b\xc3\x5e\xfe\x41\xbc\xc9\x2c\x82\x07\xe0\x01\x13\xb0\x4f\x13\x03\x00\x79\x49\xff\xb6\xce\x8d\xf4\xb0\xb3\x42\x48\xfe\xdf\x5d\x9c\xb2\xce\xe9\x4b\x81\x2e\xd5\x8e\xce\x2a\x0c\xe0\x45\x4c\xf1\x4c\x20\xe4\x9e\x09\xfe\x66\x4d\x6e\x25\x76\x2e\x87\x89\x59\x32\xcd\x5c\xd3\x2e\xb6\xa3\xab\xb3\x8e\xe1\x63\x07\x8c\x13\x3e\x93\x58\x87\x91\xdb\xf6\xaf\x49\x9a\x31\xea\x44\x53\xbb\xcc\x7a\x85\xe4\x06\xc9\x84\x8a\x66\x40\x52\xf1\x11\x13\xfb\xb4\xff\xa7\x60\xde\xe4\xc2\x61\xe3\x96\x94\x24\x91\x11\x9d\xa2\x9a\x33\x58\x2f\x82\x1d\x41\x25\xe0\xb4\x16\x2f\x28\xbe\xb0\x66\x03\x1a\x65\x2d\x05\x74\x9a\xa7\x24\x4d\xd4\xf3\xd3\xbb\x15\xd2\x68\x32\x8d\x6a\x02\xfc\xe2\x50\x18\x15\x25\x7f\x8a\xd5\xaf\x4e\xcb\xe7\xcb\x8a\xe9\x66\x1e\x34\x4f\x90\x72\x31\x87\x91\xf3\xe8\x59\x09\x11\x21\xe0\x8a\xef\xca\x89\x82\xea\xaf\x66\x25\x9d\x9d\xe4\xf4\x6a\x31\xe7\x16\xdc\x03\x3d\x0f\x95\xd1\xfa\x93\x6b\x6c\x60\x79\xb1\x37\xdd\x11\x58\xd1\xde\xf1\x13\x01\x8c\x73\xf8\xeb\xb9\x80\x7e\x0f\x74\x15\x40\x4e\xa9\xc7\x85\x44\xac\xe7\xce\x46\x3c\xd1\xd1\xc5\x7e\x31\xf4\x09\x1b\xc0\x91\x80\x4c\xbc\xdd\xad\x0e\x15\xa4\x0c\xa9\x1a\xcb\xe1\xc6\x22\x4e\xd1\x3c\xaf\xb4\xdf\x2c\x84\xac\x9f\x0c\x3c\x9b\x54\x60\x07\xd9\xdd\x6e\x52\x4c\x46\x70\x72\x56\x3d\x4a\xc0\xd7\x00\xcc\x1b\xf3\x0f\xeb\xb3\x34\x31\x3d\xae\x57\x61\x74\x5e\xc0\xa5\xe9\xe8\x81\x50\x25\x95\x8f\x00\xfa\x2e\x58\x06\x0d\x7e\x9a\x5f\x2b\x72\x7f\x48\x69\x9f\x92\x9c\x84\x59\x93\x08\x92\x57\x3f\x78\x4f\xef\x56\x92\x51\x8b\x5c\xa2\x68\xe2\xa7\x3e\xbe\xad\x6e\xbd\xeb\x7e\xc2\x4e\xac\x92\xaa\x7d\xcb\x41\xb5\x98\xbd\x6e\xff\x36\x32\xd0\x69\x72\x62\x91"}, {{0x55,0x32,0xe0,0x9b,0x93,0x7f,0xfd,0x3d,0x5f,0x4c,0x1d,0x9f,0x1f,0xfc,0xde,0xd2,0x6e,0xe7,0x4d,0x4d,0xa0,0x75,0x26,0x48,0x44,0x69,0x0b,0xd9,0xc8,0x61,0x39,0x94,},{0x50,0x93,0x96,0x9f,0x37,0x7b,0xec,0x3e,0x35,0xf5,0x9e,0xfd,0xa0,0x1a,0xb4,0x18,0x6c,0x5d,0x2a,0x36,0x74,0x0c,0xf0,0x22,0x67,0x5e,0x01,0x09,0x6b,0x1a,0x3f,0x0a,},{0xd5,0x27,0xff,0x0d,0x4a,0x21,0x9d,0x61,0xf4,0x18,0x12,0x12,0x06,0xa5,0x4a,0xe4,0x98,0x58,0x54,0xa3,0x10,0x48,0x27,0x44,0x48,0x6e,0x4d,0x13,0x0a,0x7d,0xe9,0x7c,0x31,0x9d,0xf8,0x37,0x2c,0x82,0x82,0x8c,0x93,0x6e,0x6a,0x8a,0xfd,0x9c,0x5d,0xe1,0x82,0x85,0x73,0xd8,0x26,0x1a,0xe9,0x36,0x5b,0x8f,0x23,0x76,0x76,0x18,0x24,0x02,},"\xad\xd4\xd7\xa9\xce\x3f\x63\xd1\xf9\x46\xe8\x67\x90\x65\x54\x5d\x8c\x7b\xf0\xa2\xcc\x3a\x4c\x00\xb8\xf1\x42\xf0\x94\x5a\xe3\x62\xc4\xc9\x46\x2a\x75\x76\xa4\x05\x9d\x57\x86\x16\x62\x88\x4b\xd8\x0b\x96\xd9\x0d\x27\x9a\x95\x2e\xda\x95\x2d\x37\xd4\xf9\x5c\xf0\xd7\x0d\xa9\x8f\x4f\xba\xca\x39\xe1\x69\xf9\xd9\x45\xd4\x1f\x87\x23\x97\xbb\xdd\x57\x01\x45\x43\x03\xd7\x7d\x31\xe8\x63\x48\x27\x1d\xa4\x0a\x1b\x8f\x1e\x57\xc3\x6f\xcd\x80\x3e\x14\xfa\x17\x71\x6c\x56\x31\xef\xa0\x1d\x3a\x79\x5d\xc2\x0b\x2b\xde\x36\xab\x73\xff\x6a\x2d\x53\x3b\xc1\x5c\xce\x22\x32\x87\x13\xc3\xc9\xcc\xd0\x72\xc3\xe4\x50\xd7\xf2\x2c\x0c\x9f\x94\x91\x97\x52\xcb\xfe\x45\xee\x65\x5d\x1b\x53\x67\x65\x93\xcd\xb4\x48\x70\x41\x02\x63\x1c\xaa\xa9\x76\x95\x2e\xaa\x1f\x6c\x2e\x87\x65\x64\xe4\x20\xf0\xc6\x46\xa0\xf8\x83\x65\xf7\x64\x15\xb4\x08\x5f\x60\xa3\x38\xb2\x9c\x51\x63\x3e\x54\x0f\x0b\xf3\x2d\x40\x87\xe7\xd0\xfb\x68\x5b\xe8\x8c\x75\x95\xdc\x53\x1c\x99\xb4\x89\x58\x45\x60\xad\x82\x34\xb1\x8e\x39\xa1\x07\xcf\x5d\x84\x2d\xab\xd4\x21\xe7\x7d\x26\xea\x5e\x0f\x14\x05\xce\x35\xfe\x79\x27\x14\xeb\x4e\xe1\xa8\x01\x76\x48\xac\x1a\xe7\x39\xa3\x3d\x7b\x1e\x08\x91\x05\xd1\xe5\xad\xd2\x7a\x62\xce\x64\x15\x45\x70\x34\x0a\xf9\xeb\x14\xe7\xfd\xfc\x2f\x9a\x2c\x2f\xcf\xcd\xac\x3c\xc4\x22\x77\x63\xf4\xd6\x29\x49\x74\x79\xf8\x49\x21\x6e\x5d\x90\xec\x16\xdf\xa3\x6b\x72\x51\x7f\x7b\x54\x86\xba\xee\x7f\xda\x44\x50\xc3\x52\xcf\xfb\xba\xe7\x39\x26\xc8\x43\x22\x4f\x8c\xe4\x4b\x38\xda\xe5\x3f\x3e\xad\x21\x89\x0b\x52\xa7\x80\x10\x75\x29\x16\x84\xfd\x59\x10\xed\x86\xad\x33\xe8\xa0\x07\xf6\xc3\xf8\x5c\x16\xb2\x09\x29\x37\x40\x18\x4f\x58\x90\x87\x4d\x43\x1c\xd4\xe0\xea\x40\x87\xc4\x9c\x34\x71\xd7\x89\xc8\x13\xc6\xdc\x9a\x78\x69\x93\x63\xa1\xd8\x71\x97\xd3\xb9\x2c\x02\x86\x68\x93\x11\x82\x3f\x4d\xf2\x2c\xe8\x03\x5e\x75\x73\x2c\xde\xa7\xf5\x62\x1f\x67\xdb\x0e\x2a\x4c\xa6\x61\x61\x93\x22\x1c\x0a\xa3\xd6\xde\x50\xd8\x52\x82\xee"}, {{0xeb,0x36,0x51,0x10,0x09,0xd3,0x7a,0x9c,0x46,0xc4,0xd1,0x37,0x4d,0x0b,0xbd,0x0d,0x99,0x81,0xe7,0x8c,0xee,0x7d,0x18,0x8c,0x5a,0xab,0x98,0x3e,0xc2,0x39,0xe1,0x0c,},{0xb1,0xcc,0x21,0x2b,0x45,0x21,0xbb,0xe7,0xb1,0x9a,0x76,0x93,0x87,0x8a,0x55,0x84,0x40,0xee,0xc3,0x62,0x05,0xd8,0x43,0x9d,0x04,0x0a,0x46,0xa9,0x90,0x2f,0xbf,0x55,},{0x9f,0x58,0x37,0x24,0xde,0x55,0x2e,0xae,0x82,0xf2,0x54,0xac,0x6e,0x2e,0xd4,0x83,0xec,0x1a,0x07,0x34,0x62,0x66,0x73,0x5c,0x49,0x09,0x20,0x69,0x0c,0x1e,0x3f,0xb2,0xa9,0xe9,0xa3,0x41,0x94,0xed,0x64,0x73,0x73,0x3b,0x30,0x0d,0x4f,0x23,0xc9,0xae,0xc0,0xda,0x5a,0x20,0x22,0x05,0x4c,0xa4,0x38,0x85,0xa1,0x5a,0x29,0x84,0x32,0x0e,},"\xba\x24\x66\xe5\x6c\x1d\xf7\x7f\x22\xb6\xf0\x24\x1f\xc7\x95\x2a\xe9\xbc\x24\x75\x64\x19\xa9\x44\x6d\xd2\xb4\x9e\x2c\xb9\xdf\x59\x4e\x5b\x6c\x77\xa9\x5a\xa5\xfb\xd9\xdc\x57\xfe\xc8\x39\x62\xc7\x75\x1e\xeb\xb4\xba\x21\x82\x53\xf9\x16\xa9\x22\xa5\x13\x96\x63\xe3\x20\x3e\x3b\xe4\x82\xbe\x37\x9c\xa1\x51\xc4\x63\xd9\xad\xa2\x14\x46\x13\x5f\x35\x69\x94\xfa\x54\x49\xf0\x84\x47\x8f\x5b\xb4\xf5\xba\x61\x45\xc5\x15\x8e\xb7\xb1\xc4\x3c\x32\xeb\xea\x25\xe0\x9c\x90\x0f\x01\xef\x91\xe9\x2f\x88\xc0\x3c\x76\x50\x4a\xce\x96\x46\x01\x6f\xfc\x27\x89\x55\x9d\x0f\x3c\xc9\xd0\x0f\xb6\x1b\xdc\x6a\xf7\xd3\x94\x0f\x30\x2e\x58\x8e\x04\xf7\x9f\x7b\x3d\x4b\x91\xa5\xd1\x93\xa4\xf8\x22\x2b\xfe\xb6\x9b\xf0\x34\x7d\x98\xad\x81\xef\x99\xd1\x30\xeb\xc7\xb3\x6b\x07\x83\x39\x4e\xea\x92\xa3\x8d\xdd\x5e\x74\x80\xd2\xad\xd4\xe4\xde\xf5\x3e\xb9\x9c\x44\x9b\xff\x94\xe4\x71\x8b\x09\xf2\xea\x9b\x1f\x2b\x88\x65\x94\xa9\x5c\x33\xa6\x9e\x03\x33\x15\x4e\x44\x0a\xb3\x4b\x7b\x6c\x11\x34\xd8\x17\x9b\x6f\x0c\x56\x25\x1a\x9a\xd8\xe1\xb6\xb0\xf9\xb8\xa5\xc9\x70\x81\xa7\xf8\xfd\x05\xd0\xb0\xaf\xfc\x82\xdb\xdd\xc8\xb0\xc0\xab\x7e\x83\x3f\x30\x06\x26\xd4\xb9\x73\xb3\xf6\x0f\xea\xc5\x55\x71\xe8\x9c\xda\x0f\x2b\x44\x1e\xd2\xfa\xa6\x69\xa7\x0d\x55\x6c\xb4\x8f\x9b\x1d\x1c\xbc\xe3\x2e\xde\x5d\x16\x6b\x11\x43\xe2\x64\xb1\x1e\xa3\x27\x68\x1c\xb5\x59\xed\xd1\x3c\x36\x4b\xd2\xba\xf1\xfd\x54\xbb\x78\x18\x07\xbd\x59\xc8\x68\xb0\xe4\x79\x5a\x77\x9e\x67\xf0\xbd\x0d\x14\xb5\xa6\xb9\xe4\x40\xb5\x7a\x58\x23\x32\x8b\x59\xaf\xfb\xd0\x27\xed\xa7\xdd\x78\x50\x79\xc5\xf0\x2b\x5e\x32\x89\x0b\x03\x87\x30\x98\x6a\x39\xa5\xa9\x83\x4a\x3f\xed\x86\x8b\x6f\x45\xcb\xdd\x28\xac\xb2\x70\x9a\xff\x55\x62\x63\x86\x4f\x9a\xe1\xe7\x57\xb3\x27\x8c\x28\x8d\xbe\x29\x32\x82\x57\x12\x77\x3e\x43\x1f\x7c\x29\x32\x98\x57\xfd\xae\xa7\x98\xed\x93\x92\x08\x93\x63\x14\x02\xe6\xb1\x3b\xab\x62\xb4\x85\x54\x61\xed\xb9\x46\x20\xf2\xd1\x75\x18\x65\xf4\x45\xc4\x66"}, {{0x7d,0xbc,0x81,0x90,0x2e,0x4e,0xaa,0xb3,0x07,0x75,0x40,0xf5,0x59,0x99,0x5c,0x38,0x74,0x03,0xca,0xc3,0x06,0xd4,0x86,0xe9,0x59,0xc5,0xeb,0x59,0xe4,0x31,0xc0,0xa8,},{0xe0,0x30,0x66,0x13,0x90,0x82,0xf6,0x13,0x44,0x8b,0xdb,0xc2,0x7f,0xe5,0x3a,0xa3,0xf8,0x89,0x94,0xc3,0x1d,0xdc,0xe0,0x02,0xe3,0x6b,0xbb,0x29,0x63,0xdf,0x3e,0xc8,},{0x5b,0x7f,0x65,0x2f,0x08,0xf2,0x29,0xfd,0xa1,0xb0,0xbd,0x75,0x93,0x77,0xb3,0xfb,0x72,0x6c,0x1b,0x9c,0x9a,0x10,0xef,0x63,0x42,0x6d,0x35,0x2d,0xd0,0x86,0x9b,0xd5,0x4d,0x87,0x6c,0x30,0x92,0xf1,0xcd,0x41,0x1c,0x37,0x57,0xd3,0xc6,0xb6,0xea,0x94,0x2a,0xa7,0x0c,0x3a,0xae,0xb4,0x21,0x7a,0x4c,0x73,0x64,0xd1,0x8e,0x76,0xe5,0x0f,},"\xdf\xf7\x98\xb1\x55\x7b\x17\x08\x5a\x06\x34\x37\x1d\xed\x5d\xdf\x7a\x5a\xcb\x99\x6e\xf9\x03\x54\x75\xe6\x82\x63\x36\xf6\x4a\xd8\xb8\x4b\x88\x2e\x30\xba\xde\xc2\xb4\xa7\x11\x99\x87\x52\xf4\xa1\x57\x4b\xc1\xf8\x9d\x43\x25\xcf\x2b\x39\x86\x10\x44\xdd\x03\x69\x1e\x71\xd0\x77\x68\xb5\x93\x3a\x30\x52\xcc\x7c\x81\xd5\x71\xa9\xde\x06\x1d\xc1\x90\x26\xc2\xf1\xe7\x01\xf2\xdc\xf2\x6a\x88\xd3\x40\x1b\xc9\x9f\xb8\x15\x59\xdc\xa7\x6d\x8a\x31\xa9\x20\x44\xa2\x73\x58\x7d\x62\x2a\x08\xd1\xcc\xe6\x1c\x8f\x94\x8a\x34\xde\xd1\xac\xb3\x18\x88\x1c\x9b\x49\xf6\xf3\x7c\x30\xa6\x5d\x49\x5b\x02\xd5\x42\x9e\x7a\xb4\x04\x0d\x8b\xeb\xeb\x78\x79\x4f\xf7\x36\xd1\x51\x10\x31\xa6\xd6\x7a\x22\xcd\xf3\x41\xb9\x80\x81\x1c\x9d\x77\x5f\xb1\x9c\x64\x78\xf0\x5e\xd9\x84\x30\x10\x3e\xa2\x4c\x0f\x41\x4d\x4c\xc0\x7d\x86\x0b\x72\xdc\x54\x2f\xf2\x2d\x83\x84\x5a\x42\xf8\xba\x45\xca\x7f\xf3\xaa\xb0\xb1\xe7\xde\x2b\x10\x94\xde\xac\x08\xd1\x6e\xee\x01\x96\x9f\x91\xbc\x16\xfe\xc2\x9c\xcc\x06\x1c\x54\xdb\x53\x45\xba\x64\x84\x2d\xac\xc9\x9e\xe7\x72\x94\x68\xd8\x0a\x3f\x09\x55\x83\xd8\xe8\x01\x24\x08\x51\x9d\x58\x2c\xc3\xff\x9a\x2e\xb7\xae\xba\xa2\x2d\xb8\x1f\xfc\x78\xee\x90\xef\x4e\xc5\x89\xdc\xce\x87\x11\x8d\xab\x31\xa6\x32\x8e\x40\x9a\xd5\x05\x9a\x51\x32\xc8\x2d\xf3\xce\xfe\x2e\x40\x14\xe4\x76\xf0\x4c\x3a\x70\x18\xe4\x52\x67\xec\x50\x18\xec\xd7\xbf\xf1\xdd\xa9\x26\x7e\x90\x66\x6b\x6b\x14\x17\xe8\x9d\xda\xcb\x50\x85\x94\x3b\xef\xc7\xad\x2f\x4d\xf5\xf1\xee\x0a\xf9\x43\x1a\xee\xb6\xb2\x4a\x55\x15\xb9\x3d\xbc\xf6\x86\x40\xf7\xda\xf8\xc9\x61\xe5\x67\xd7\x53\x49\x00\x20\x5c\x3d\xf2\x18\x4b\x6a\xc2\xda\x96\x1c\x4c\x1d\x2b\xc4\x9b\x4e\xa9\x6b\x81\x54\xff\xd4\xef\xff\xdc\x5e\x55\xa7\x11\x9c\xb8\xaf\x42\x9e\x85\x10\x5d\xff\xd4\x1f\xe4\xa2\xeb\xba\x48\x16\x8a\xa0\x5f\xa7\xdf\x27\xc4\x29\x87\x35\xff\x86\x8f\x14\x96\xbe\xb4\xb2\xed\x0b\x89\x80\xc7\x5f\xfd\x93\x9d\xdd\x1a\x17\xe4\x4a\x44\xfe\x3b\x02\x79\x53\x39\xb0\x8c\x8d"}, {{0x91,0xb0,0x95,0xc8,0xa9,0x99,0xe0,0x3f,0x3e,0xd7,0x49,0xcd,0x9f,0x2f,0xaa,0xcc,0x00,0x76,0xc3,0xb4,0x77,0xa8,0x7a,0xb5,0xcc,0xd6,0x63,0x17,0x38,0x76,0x74,0x46,},{0xda,0xd1,0x74,0xd3,0x59,0xda,0xec,0xca,0x9c,0x6b,0x38,0x9b,0xa0,0x96,0x45,0x2a,0xb5,0xca,0x91,0xe6,0x38,0x3c,0x6d,0x04,0x2a,0x28,0x4e,0xce,0x16,0xba,0x97,0xb6,},{0x64,0xee,0x9e,0xfd,0xb0,0xc2,0x60,0x1a,0x83,0x5f,0x41,0x85,0x20,0x64,0x1e,0x43,0x6c,0x7d,0xd4,0x7c,0x33,0x3d,0x9f,0xc3,0x0c,0xfb,0xb9,0xe3,0x90,0xfe,0x76,0x45,0x30,0x65,0x47,0x08,0xb4,0x0b,0x03,0x58,0x18,0x99,0xa9,0xac,0x87,0x0e,0xfd,0x76,0x6f,0xfb,0xb4,0x63,0x71,0x52,0xf8,0xff,0x27,0x79,0x64,0xfe,0x35,0x42,0x52,0x09,},"\x9b\x0d\x8b\x00\x29\x98\x52\xd6\x8b\xbf\x49\x7f\xe6\x03\x96\x1a\x48\x54\x66\xa9\x9a\x54\x84\x00\x5d\xb7\x3d\x4e\x4b\xad\x81\x4e\x85\x74\xef\xd5\x4d\x64\x8b\xd5\xc9\x1a\xe8\x48\x3c\x54\xb2\xf9\x98\xb0\x2e\x1a\xbd\x6f\x40\x1a\x25\x52\x68\x43\xa5\xf2\xa2\x3a\x97\xbd\x58\x9d\x1f\x7e\x1a\xb1\x49\x15\xb1\xe3\x59\xa3\x96\xd3\x52\xc3\x60\xae\x65\x84\x32\x5a\xe4\xbb\x7d\x62\x4f\x61\x25\x5c\x5c\x7b\xf0\xa6\x7a\xca\xb4\x6c\x3b\x57\xb3\x45\x34\xc0\xee\x84\x31\xd2\x60\x57\x66\x06\xcb\xd8\x4d\x8d\x18\x39\xe7\x3d\xa6\xfe\x4b\x0b\x8b\x78\xf0\xf9\x58\x82\x7c\x2f\x1d\x93\xba\x7a\x34\x6d\xcc\x75\xcb\x56\x3d\xff\xde\x26\xf9\x97\x59\x8e\x8b\x5c\x2f\x16\x17\xc6\xfe\xfc\x9b\xe4\xb2\x8b\x54\x01\xb0\x00\x64\x13\xa2\x51\x69\x0d\x12\x03\xaa\xae\x4f\x6d\x8a\x3f\xb2\x1f\x24\x00\x9a\xb3\xbf\xf1\x37\x37\xa8\xa7\xe6\x64\x6c\x02\x73\x2d\x9e\xc5\xa4\xa5\x10\x46\x9e\x2d\x29\x9e\x4c\xc1\xad\x64\x80\xa4\x82\xaa\x95\x6f\x89\xdd\xcc\xcc\x64\xa1\x36\xfb\x15\xb8\x76\xb6\xec\xd8\x8c\x7c\x86\xa4\xdf\xc6\x0e\x66\x62\x07\xc6\x04\x16\x7d\x16\x34\x40\xca\x9a\xb9\xcf\x87\xa5\xe0\xf7\xbb\xc5\x51\x7d\xe4\xde\xe8\x76\xc0\x37\xf8\xcc\x9d\x95\x9c\x8f\xf5\xdb\xe9\x44\xff\x54\xcd\x91\xa7\x71\xe2\x92\x31\xf8\xb5\xf1\x7d\x61\xde\x90\x4c\x95\x5f\xe2\x02\x5d\xc5\x2e\xd4\x80\xfb\x3c\xc9\x0f\x23\x24\x59\xc6\x07\xef\x7e\x2a\xdb\x52\xc7\x48\x2b\xec\xd6\x7a\xd2\x14\x9a\x41\x28\xf9\x84\x03\x8b\x58\xaa\x90\x17\x67\x82\x39\x36\x04\xaa\xc7\x4c\x18\x20\x9a\x3d\x6a\x78\x63\x0c\x01\x95\x5a\x7c\xec\xe5\xda\x83\x84\xda\x3b\xaf\x63\xaa\x2d\xdf\x59\x63\xfa\xe0\x5b\xa3\xb8\x1c\x6a\x03\xd8\x6a\x00\xef\x78\xed\xb4\x18\x4f\xdc\x89\xb1\xd6\xbf\xeb\x31\x0f\xd1\xb5\xfc\xce\x1e\x21\x95\x24\xa3\xcf\xb2\xe9\x72\x57\x7f\x06\xb1\xdd\xde\xba\x00\x86\x5d\xae\x49\x79\x00\x0c\x00\x8a\xd9\x9f\x3b\x63\x8c\xce\xb8\xe8\xc7\xa0\xf9\x98\xd3\x4d\x92\x14\x3d\x81\xc0\xe1\xc0\x96\xa9\x25\xce\xba\x65\xc4\x30\x03\xee\x18\xd4\x94\xd0\x03\xe9\xc6\x1f\x77\xd6\x57\x59"}, {{0x8c,0x56,0x8b,0x31,0x0a,0xce,0x7d,0x1f,0x0e,0xde,0xce,0xfd,0x60,0x3a,0x88,0x40,0x00,0x54,0x4c,0x79,0x25,0x65,0xd4,0x81,0xc3,0xd3,0xe0,0x6e,0x2d,0x82,0xca,0x96,},{0x5f,0xa6,0xe2,0x67,0xc7,0x66,0x73,0x68,0x41,0x41,0x10,0x72,0xd1,0x98,0x3d,0x19,0x00,0xac,0xf0,0x1d,0x48,0xc3,0xce,0x11,0x77,0x0b,0x26,0xf7,0x8d,0xa9,0x79,0xf7,},{0xde,0xbd,0xd8,0xe5,0xd3,0x11,0x2f,0xd7,0x7b,0x39,0x4a,0xa0,0xe3,0x6e,0x94,0x26,0xba,0xc9,0x1d,0xf1,0x26,0xfa,0x9c,0x31,0x7c,0xea,0x7c,0x9d,0x45,0x95,0x7c,0xdd,0x96,0xa4,0x5a,0xe3,0xad,0x76,0x04,0x13,0xee,0x12,0x05,0xaf,0xd7,0x1a,0x29,0xf9,0xc3,0xcb,0x58,0x6c,0xd2,0xd7,0xcd,0x1e,0x93,0xbc,0x16,0x52,0xfc,0x34,0xdc,0x04,},"\xb5\x9f\x5f\xe9\xbb\x4e\xcf\xf9\x28\x95\x94\x72\x1f\x26\x47\x04\x7b\x0d\xa5\xe0\xe4\x94\x1b\xbe\x57\xc5\xb7\x22\xb4\x76\x72\x3f\x0a\xc5\x97\x0b\x41\x11\xf8\x93\xbc\xaa\x41\x1f\x28\xfc\xeb\x4f\x58\x5a\x2a\x71\x87\x01\x8a\x90\x4b\x70\xef\x8f\xe1\xf6\x56\x9a\x54\xd0\x0a\xda\x37\xb6\x9c\xb5\xe9\xc9\xd2\x6c\x16\xa9\x03\x51\x81\x48\xe0\x4a\x1b\x93\x6a\x32\x32\x9c\x94\xee\x1a\x8f\xb6\xb5\x91\x89\x2c\x3a\xff\x00\xbf\x6e\x44\xdd\x0a\x76\x2b\xab\xe8\x9d\x70\x60\xc1\x7b\x90\x39\x0d\x23\xbf\x9d\x36\x0a\x29\x3b\x83\x08\x38\x30\x86\x91\x6e\x11\x82\xb1\xba\x43\x36\xf0\x01\xb8\xd2\x0d\xea\xe9\xa0\x29\xf7\xe8\x53\x97\xa9\xae\x5c\xf3\xca\x10\xc7\xf3\x87\x55\x88\xb8\xff\xab\xb0\x63\xc0\x0c\xa2\x6f\x58\x0f\x69\xed\xc5\x27\xa1\xac\xcf\x4f\x41\x39\x7b\x33\x76\x6b\xcf\x6d\x55\xeb\x8d\xe0\x81\xa4\x8c\x98\x1d\x05\xc0\x66\x61\x7b\x80\xd8\xf6\xf5\xe6\x0e\x59\xdd\x9b\x93\x0b\xc4\xd0\x45\x86\x40\x3b\xb8\x68\xdf\x75\x93\x3b\xdd\x86\x23\x0e\x44\x70\x36\xc1\x75\xa1\x0d\xe9\xbb\x39\x95\x3d\xcb\x19\x66\xa1\xf1\x19\x12\x07\x8e\x35\x8f\x48\xc5\xb2\x09\xa6\x36\xc7\xf7\x83\xf4\xd3\x6a\x93\xad\x2c\xc2\xe3\x24\x45\x19\x07\x8e\x99\xde\x1d\x51\x58\xb3\x96\x1e\x0f\xc5\xa4\xf2\x60\xc2\x5f\x45\xf5\xe8\x58\x5e\x60\x1d\xb0\x8b\xa0\x58\xd2\x90\x9a\x1b\xf4\x99\x5f\x48\x13\x46\x0d\x36\x95\x03\xc6\x87\x36\x85\xeb\xcd\x33\x30\xa1\x30\xb7\x5f\x23\x65\xfb\x2a\x5a\x34\xea\x63\xd9\x58\xa2\xa8\x67\xe9\x05\x52\xd2\xce\xc8\xc3\x90\x08\x4b\xe0\xc1\x08\xb0\xfd\x2d\x83\xcb\x92\x84\xdb\x5b\x84\x2c\xbb\x5d\x0c\x3f\x6f\x1e\x26\x03\xc9\xc3\x0c\x0f\x6a\x9b\x11\x8e\x1a\x14\x3a\x15\xe3\x19\xfd\x1b\x60\x71\x52\xb7\xcc\x05\x47\x49\x79\x54\xc1\xf7\x29\x19\x9d\x0b\x23\xe5\x38\x65\x40\x3b\x0a\xd6\x80\xe9\xb4\x53\x69\xa6\xaa\x38\xd6\x68\x5a\xbd\x39\x7f\x07\xfb\xca\x40\x62\x7e\xca\xf8\xd8\xd3\x01\x33\xa6\xd9\xd5\xaf\x00\x91\x92\x75\x1c\x9c\x45\xf7\x7c\x0b\xc0\x11\x26\x88\x00\xbf\x55\x25\x12\x73\x0e\x69\x97\x3c\x5b\xf3\x62\xab\x16\x48\x94\xbf"}, {{0x3d,0x09,0xaf,0xce,0xe3,0xc4,0x32,0xfd,0xfb,0x6b,0xdc,0xea,0xd5,0x4e,0x3d,0xa5,0xb1,0xb4,0x16,0x5c,0x50,0xd6,0xd3,0x10,0xb7,0xfa,0xd7,0x87,0xb4,0x44,0xd6,0x80,},{0xb0,0xd9,0x02,0x8c,0x4d,0x14,0x87,0xd2,0x93,0xed,0x58,0x5a,0x76,0xbc,0x94,0xff,0xfb,0xaf,0xe2,0xc6,0x5d,0x98,0x0c,0x49,0x4e,0x14,0x1e,0x48,0x10,0xa3,0x5c,0xb9,},{0x89,0x73,0x9f,0xe4,0x41,0xca,0x0c,0xed,0x08,0xa6,0xeb,0x57,0x96,0xe9,0xbd,0xda,0x0e,0x74,0xfb,0x47,0x35,0x28,0xfd,0x49,0x07,0xed,0xb6,0x59,0xaa,0xb4,0x4d,0x33,0x43,0x22,0x90,0x46,0x71,0x63,0x68,0xfa,0xf8,0x8e,0x85,0xc1,0x64,0x4a,0xf6,0x6f,0xf2,0xdc,0xaf,0x0b,0x17,0xac,0x93,0xca,0x13,0x81,0x9f,0x3f,0x24,0x1d,0xd3,0x00,},"\x76\x71\x65\xca\xae\x0e\x57\x8f\x16\x53\x7e\x17\x50\xbe\x7d\xe8\x7a\x78\x9a\x51\xff\x2d\xe1\x18\x38\xf5\x64\xe2\x58\x0b\x23\x91\x36\x2d\x28\x68\xa5\xa4\x70\x8a\xf1\x5d\x2e\x2d\xb7\xb9\xbe\x39\xc1\x6a\xdc\xc1\x20\x0b\x34\xe6\xb4\xd4\x02\x7d\xdf\xfc\x1a\x2a\x35\x95\xe2\x9e\x85\x5e\xc5\x26\x1b\x20\xbd\x55\xc4\x28\xb0\x13\x09\xba\xdb\x59\xe2\xca\x3e\xdb\x96\x7f\xc2\xf4\xba\xc0\x72\x9d\xdf\x54\xfb\x6c\x20\x05\x7b\xdd\xa9\xe7\xaf\x7c\xbf\xc0\x92\xfb\xa8\x65\xfd\x32\x75\xb9\xd3\xbc\xb0\xc3\x46\xb9\x51\xd1\x70\xac\x9a\xa6\x50\xa8\x6d\xf4\x98\x55\xd4\x8a\x1b\x37\xce\x56\xc9\xf2\x73\x89\xf5\xc8\xb1\x5f\x5c\x2c\x90\x0c\x4f\x10\x7c\x06\x4f\x60\x3e\x4f\x86\x7e\xf2\xe9\xc1\x0a\x1b\x74\x21\x0e\x6b\x89\xbb\x01\x17\x93\xaa\x85\xde\xd4\x3b\x51\xb7\x49\xba\x7f\x70\x28\x7b\x6b\xc1\xb8\x94\x34\xdb\x8b\x8c\x8b\x5d\x73\xb2\x14\xb4\x1e\x36\xb5\x28\x00\x5b\xfb\xfe\x00\x2e\x21\xb1\x00\x6f\xb9\xd2\x4b\xab\xd7\x21\x06\xd0\x93\xe3\xc7\x09\x3b\x31\x38\xae\xa7\x19\xd6\x94\x79\x08\x46\x47\x49\x8c\xd6\xc9\xbb\xb7\x44\x50\x9c\xd7\xda\x8d\xd6\x1a\x62\x71\x00\xf0\x3c\x21\xe7\x50\xac\xb3\xfc\xf4\x63\x1d\x7c\x0f\x61\x81\x54\xd2\xe5\xfa\x66\x56\xfb\x76\xf7\x4c\x24\x79\x50\x47\xbb\xce\x45\x79\xeb\x11\x06\x43\xfa\x98\xe1\xf7\x76\xca\x76\xd7\xa2\xb7\xb7\xb8\x67\x81\x73\xc7\x73\xf4\xbe\x7e\x18\x2f\xd2\x4d\xd7\x62\x91\xac\x67\xd9\xf2\x6a\x28\xc5\xe3\xcb\x02\x5c\x68\x13\xa3\x78\xb3\x83\x22\x46\x42\xb4\xae\xfa\xd0\xc7\x6a\x65\x79\x51\x7b\x8f\x36\x07\x97\xdd\x22\x61\x3e\xe6\x82\xb1\x79\x38\x19\x50\xfb\x71\x60\x9a\x5f\xb5\x49\x4d\x2d\x57\xdc\xb0\x0f\x26\xd1\xe7\x29\x56\xf4\xd6\x67\x28\x30\xe0\x5c\x01\xb3\x77\x96\x77\xc0\x7e\xa0\x09\x53\xc6\xb8\xf0\xdc\x20\x4c\x8d\xbd\xcc\xb3\x81\xbc\x01\xb8\x9c\x5c\x26\x1d\xb1\x89\xab\x1f\x54\xe4\x6b\xc3\xed\xc4\xde\x5a\xd4\xf0\xeb\x29\xc0\xa1\x20\xe4\x37\xcd\x8f\x37\xac\x67\xd4\x8c\x7f\x0e\x73\x02\x78\x70\x8f\x02\xb5\x4a\xee\x62\xb7\x29\x52\xbc\x1c\x0e\xb4\x37\xca\x8b\xd5\x65\x54\x37"}, {{0x41,0xc1,0xa2,0xdf,0x93,0x69,0xcd,0xc9,0x27,0x16,0x4a,0xa5,0xad,0xf7,0x75,0x71,0x36,0xab,0xe5,0x13,0x95,0x60,0x42,0x66,0x33,0x4c,0xc5,0x46,0x0a,0xd5,0x68,0x3e,},{0x40,0x55,0x78,0x34,0xcc,0xe8,0xe0,0x43,0x58,0x0a,0x42,0x72,0xa8,0x80,0x4d,0x4f,0x92,0x6e,0x88,0xcb,0x10,0xd1,0xdf,0x0c,0x5e,0x28,0xb9,0xb6,0x7e,0x1b,0x63,0xda,},{0xb8,0xb2,0x75,0x2a,0x09,0x71,0x96,0xc2,0x89,0x84,0x9d,0x78,0xf8,0x11,0xd9,0xa6,0x2f,0xc7,0x67,0x27,0x8f,0x0c,0x46,0x62,0x8b,0x52,0x1f,0x62,0xed,0x27,0x59,0xd7,0x44,0x62,0xa1,0x75,0xda,0x22,0x40,0x3f,0x15,0x02,0x04,0x45,0xca,0xe0,0x6d,0xa3,0xed,0x61,0xcc,0xa6,0x20,0x3b,0x70,0x06,0x36,0x2a,0x0e,0x19,0x89,0x63,0xd2,0x0e,},"\xb6\x4b\x14\xba\x77\xd2\x39\xe6\xf8\x1a\xbe\x06\x0a\xcc\xef\x85\xf0\x44\x2b\x65\x0c\x44\x01\x5e\xfc\x43\xa0\xaa\x2b\xa1\x0b\xf4\x8d\x30\x18\xb1\x95\x3d\xdf\xff\xbc\xda\x5b\xf3\xbb\xe0\xb6\xb3\xe4\xb0\xd9\xa3\x2c\x6b\x72\x5b\xbb\x23\x1e\x0a\x27\x04\x47\x1e\xe8\xbc\x1d\x59\x4f\x5c\x54\x22\x6f\x5d\xd9\xdf\xa1\x63\xcf\xc1\x45\x2c\x61\xf9\x3e\x4f\x81\x39\xab\x4c\xe4\x47\x6f\x07\xec\x93\x36\x61\xea\xe9\x1b\x6d\x50\x0b\xf5\x08\xac\x63\xe4\xba\xaf\x1f\xfc\x8f\x00\x07\xd8\x02\xe0\x05\xf1\xb4\xfc\x1c\x88\xbe\xe4\xd5\xe9\xe7\x63\x84\xf5\xa7\x04\x3b\xd6\x60\xcc\xe7\x1f\x3b\x67\xf0\x1f\x6a\xb8\x44\x29\x85\x31\xaa\xc7\x3a\x39\xd0\x45\x37\x00\x88\x85\x50\x05\xa0\x9c\x6d\x04\x23\x8e\xa4\x78\xdf\xac\xad\x1e\x6b\x22\xb2\xbe\x4c\x46\xb0\xd5\x9b\x1e\xba\x1f\x06\x0b\xf7\xda\x5d\x15\x66\xcf\x1f\xdb\x5c\x54\x3a\x33\x92\x6a\xf6\x3f\x01\xa0\xdb\x86\xe1\xa6\x71\x1c\x47\x3d\xc7\x95\xab\x28\x3c\x8d\x93\xfa\xcf\xb5\x70\x1f\xa2\xf2\xf6\xbb\x99\xf9\xb7\xe3\x74\x9b\x07\x1d\x58\x60\x7b\xe4\x4a\x70\x89\xbc\xb5\x03\xec\x14\x95\xb5\xfe\xed\xb3\x99\x96\x1f\xd3\x67\x7d\x74\x93\xea\xa3\xb3\xe9\xcc\x5e\x36\x42\xf4\x0d\x47\xde\x9b\xfe\xe7\xc2\x0b\x0e\x51\x9c\x4e\xb4\xa4\x0f\x4d\xa4\x46\xed\x6a\xc7\xaa\xca\x05\x3e\x75\x9c\x97\xda\xbe\x0a\x8e\xc2\xf5\x8e\x7f\x2f\x9b\x20\x72\x76\x2f\x9f\x79\x4a\x6a\x4e\x36\x06\x0b\x88\x72\xbd\x2c\x18\xd0\x6a\x85\xc2\xc1\x41\xa7\x82\x93\x77\x3e\xe8\xcf\xbf\x15\x4b\x99\x30\xcd\x39\xda\x31\xb4\x97\xe7\x37\xa7\x75\x0c\x90\xa1\x3f\x5a\xaa\x14\x7c\xd0\xdc\x43\x11\xf2\xe3\x49\x41\x25\x2e\xf1\x98\xb0\xc1\xf5\x08\x27\xe5\x6c\x9f\x16\xf5\x95\xac\xed\x6d\x2a\x69\x34\x65\x31\x49\x5a\x64\x99\x77\x4d\x36\x07\x66\xca\x9b\xe5\xed\x88\x81\xc0\xdb\x26\xed\x7c\x5e\x6f\xf3\xa4\xf9\xb7\x3c\xd8\xb6\x54\x64\x0d\xc9\x6b\xf4\x3b\xd4\x26\xa0\xf2\x8c\x9b\x25\xfa\x70\x4d\x62\xff\x02\x88\xfc\xce\xff\xaa\xeb\xd3\xea\x30\x97\xbc\xbb\xd7\x78\x42\x0e\xbc\x52\x0a\x41\x77\x30\xa1\xb5\xb3\xb8\xc9\x6c\xda\x9f\x4e\x17\x7d"}, {{0xa0,0x06,0x11,0x48,0x94,0x67,0x12,0x2c,0x4c,0x16,0x4b,0xfb,0x6a,0x61,0x6e,0x6a,0x61,0x9b,0x9f,0x83,0xc4,0x36,0x72,0x06,0xb8,0x5d,0x3f,0xbe,0xc3,0x8c,0xd6,0x2c,},{0x57,0xab,0x58,0xba,0xbb,0x41,0xdc,0x0d,0xa0,0xbc,0xd5,0x06,0x05,0x9a,0xac,0x9f,0x46,0xec,0xa9,0x1c,0xd3,0x5a,0x61,0xf1,0xba,0x04,0x9a,0x9a,0xc2,0x27,0xf3,0xd9,},{0xc7,0x71,0xba,0x0a,0x3d,0x3c,0x4a,0x7b,0x06,0x4b,0xd5,0x1a,0xd0,0x5c,0x9f,0xf2,0x7f,0xd3,0x26,0x61,0x0f,0xbf,0xa0,0x91,0x83,0x03,0x9e,0x5e,0xdf,0x35,0x47,0x2d,0xde,0xd8,0xfc,0x22,0x75,0xbb,0xcc,0x5d,0xf1,0xbf,0x12,0x98,0x60,0xc0,0x1a,0x2c,0x13,0x11,0xda,0x60,0x2f,0xba,0xff,0xc8,0xb7,0x9c,0x24,0x9c,0x9c,0xc9,0x55,0x02,},"\x34\xdb\x02\xed\x75\x12\xbf\x8c\x67\xd3\x59\xe7\x20\x3a\x2e\xa4\x41\xe2\x0e\x72\x97\x66\xc1\x5a\xa0\x0f\xa2\x49\xa3\x51\x8f\xc2\x9e\xf8\x90\x5a\xa5\xb4\x67\x09\x58\xc6\xa4\x60\xd7\x7b\x3a\x80\xef\xcb\x47\x38\x59\xbb\xaf\xf8\x62\x22\x3e\xee\x52\xfe\x58\xac\xfd\x33\x15\xf1\x50\xf3\xc6\xc2\x7f\xf4\x8f\xca\x76\x55\x2f\x98\xf6\x58\x5b\x5e\x79\x33\x08\xbf\x59\x76\xba\xd6\xee\x32\x7b\x4a\x7a\x31\x32\x14\xb9\xae\x04\xb9\x65\x1b\x63\xcd\x8d\x9f\x5b\x3b\xec\x68\x9e\x0f\xd0\x00\xdd\x50\x17\x70\xdd\x0e\x99\xb8\xf9\x9e\xaf\xa0\x9c\x39\x6a\x24\x5a\x4a\x96\xe5\x68\x96\xa2\x9b\x24\x19\x0b\x1e\xf1\x10\x63\xf3\x9b\x63\xee\x3a\x58\x6b\x07\x62\x7d\xd3\x50\x0c\x4e\x17\x0b\x83\x5d\xc0\xec\x23\x6f\xa5\xa3\x5c\x44\x18\x47\x07\x56\x5c\x4a\x50\x66\x2d\x8d\xbc\xcf\xff\x7f\x9a\x7a\x68\xd0\x21\xb4\xaf\x64\xd5\x32\xb7\xc3\xd2\x74\x74\x18\xc2\xd7\x17\xbb\x6a\xca\x6b\x58\x74\x7a\xe4\xdd\x56\x41\xd8\x26\xf7\x9a\x8a\x31\x5c\x38\x21\x1a\x53\x8a\x92\x9e\x5b\x45\x1f\x62\x3f\x4f\xcb\xbc\xac\xdb\x86\xc8\x75\x2e\xa1\x3a\x61\x7a\xb4\x14\xab\x65\x3e\xb2\xe6\x8d\x54\x20\xdf\x7c\x6d\xf9\x24\x38\x16\x8d\xcf\x9c\x06\x65\x81\xdf\xe7\xb2\xc4\x68\x19\x4a\x23\x70\x7d\xe4\x65\x9b\xd6\x7e\xb6\x34\xff\x02\x47\x41\xc5\xfc\x86\x98\xfd\x4d\xc4\x1f\xe5\xdf\xc6\x29\x9b\x7a\x08\xe6\xff\xca\x37\x10\x9c\x02\x10\xc8\xf9\x4e\xa2\xd3\xdd\xc9\x77\xff\xc0\xb3\x79\x4f\xe6\xba\x43\x37\xc7\xaa\xb4\x34\xa6\x8a\xc6\x65\x48\x4e\xa8\x24\x3a\x84\xb7\x9a\xa1\x81\xee\x6a\xb5\xaa\x37\xa3\x2d\x87\x97\x25\xed\xc0\x18\xf8\x55\x21\x81\x81\x6d\x7d\x27\x2c\xa8\x81\x8a\x7b\x92\xe6\xee\x44\x54\xd1\xf7\x82\x8d\xd8\xaf\xba\x1a\x79\x03\x64\xb4\xff\x28\xd8\x4e\x02\x85\x97\x35\x3e\xbb\xef\x24\x83\x7b\xc3\x19\xe1\xae\x8f\x2b\x0b\x6a\x85\x1b\x48\x9c\x3e\x17\x0e\xef\x53\xe0\x65\xf7\x03\x26\x53\xcd\x6b\x46\xd8\xe5\x7e\x4e\x11\x1b\x78\x9b\xa9\x50\xc4\x23\x0a\xba\x35\xe5\x69\xe0\x66\x15\x40\x34\x07\xbc\xe0\x36\x9a\xaa\xb4\xea\xfa\xef\x0c\xae\x10\x9a\xc4\xcb\x83\x8f\xb6\xc1"}, {{0xde,0x16,0x34,0xf3,0x46,0x0e,0x02,0x89,0x8d,0xb5,0x32,0x98,0xd6,0xd3,0x82,0x1c,0x60,0x85,0x3a,0xde,0xe2,0xd7,0xf3,0xe8,0xed,0xd8,0xb0,0x23,0x9a,0x48,0xcf,0xaf,},{0x9d,0xc1,0x46,0x5b,0x33,0x83,0xf3,0x7d,0xe0,0x0e,0xa2,0xd3,0xc7,0x0f,0x2c,0x8f,0xac,0x81,0x5f,0x01,0x72,0x02,0x9c,0x3f,0x57,0x95,0x79,0xc9,0x84,0xa5,0x89,0x5e,},{0xd2,0x05,0x06,0xeb,0x84,0x69,0x23,0xa0,0xb1,0x6f,0xf8,0x2f,0xb2,0xc3,0x92,0x3b,0x00,0xc1,0xb3,0xbc,0xc6,0xe2,0xf6,0x48,0x2f,0xba,0x24,0x80,0x75,0x21,0xe8,0xe0,0x22,0x3f,0x69,0x2e,0x62,0xea,0xc9,0x93,0xf4,0x98,0xf6,0x71,0x02,0xa0,0x4f,0xd1,0xac,0xf9,0xc7,0xe3,0x88,0x8d,0x85,0x7c,0x9a,0x08,0x0b,0x8a,0xf6,0x36,0x10,0x06,},"\xd1\x0c\x3e\x4d\xe7\xfa\x29\x89\xdb\xa8\x75\x37\xe0\x05\x93\xd0\xee\xd4\xd7\x5e\xe6\x58\x46\xda\xb1\x49\x8b\x47\x49\xd6\x4f\x40\xe3\x4b\x59\x11\xc5\xce\x3b\x53\xa7\xe3\x7d\x2d\x02\xbb\x0d\xae\x38\xed\x96\x2a\x4e\xdc\x86\xc0\x02\x07\xbe\xe9\xa8\xe4\x56\xec\xca\xe8\xbd\xf4\xd8\x7a\x76\x74\x60\x14\x20\x1a\xf6\xca\xff\xe1\x05\x66\xf0\x8d\x10\xda\xaf\x07\x71\x60\xf0\x11\xfe\xac\xa2\x5b\x9c\x1f\x6e\xca\x9f\xc5\x33\x14\xa8\x05\x47\x95\x17\x54\x35\x55\x25\x25\x7d\x09\xa7\xfd\xad\x5b\xc3\x21\xb7\x2a\xa2\x8d\x1e\x02\xd8\x69\x6d\x4f\x9e\xb0\xad\x3b\x21\x96\xf8\xbc\xfa\xeb\x1d\x61\x48\x28\x7a\x3f\xae\xfe\xf9\x1a\x7a\x3e\x06\x09\xc2\x8c\xe5\x9d\x0c\xa1\x4d\x0b\x30\x50\xdd\x4f\x09\x6b\x7b\xc2\x51\x39\x88\xba\x21\x21\x28\xd5\x02\x6d\xaa\xa7\x18\x88\x46\xdb\x21\xc5\xc1\xd1\x79\xab\x94\x87\xc1\xa5\xbd\x34\x65\x88\x12\x7c\x20\x39\x8d\x36\x2d\x4c\x75\x9c\xfa\xb2\xa6\x77\x75\x0b\x9e\x45\x67\x6a\x1e\x7e\x09\x2e\xf0\x2e\xdb\xf2\x78\xfb\x19\xa5\x8e\x9b\xf6\xc9\xe9\x96\xe2\x4e\xda\xd7\x3f\x3c\xe3\x1f\xa0\x4b\x6d\x85\x33\x43\x6b\xf8\x0b\x4b\x2f\x80\x5e\xd9\x1e\x7f\xcd\xa3\xbc\x2b\xab\x3b\x2b\xb1\x57\x15\x8a\xf0\xea\x8e\x3f\x07\x31\xdf\xad\x45\x9d\x2e\x79\xb6\xd3\x71\x5f\xe7\xbf\x1e\xaf\xc5\x39\x75\x93\x20\x88\x57\xe5\x7b\x7f\xeb\x2f\x73\x87\x94\x3a\x8e\x09\x13\x47\x0c\x16\x1a\xef\x4f\xe2\x05\xd3\x63\x7f\x23\x17\x7f\xf2\x63\x04\xa4\xf6\x4e\xba\x3f\xe6\xf7\xf2\x72\xd2\x34\xa6\x72\x06\xa3\x88\xdd\xd0\x36\x6e\x89\x4e\xaa\x4b\xb0\x5d\x73\xa4\x75\xf1\xb3\x4c\xa2\x22\xbb\xce\x16\x85\xb1\xb5\x6e\x03\x4e\x43\xb3\xc4\x0e\x81\xff\xf7\x96\x82\xc1\x9f\x32\xaa\x3f\x2a\x89\x5c\x07\x09\xf9\xf7\x4a\x4d\x59\xd3\xa4\x90\x29\xec\xfc\xb2\x83\x08\x2b\x06\x7f\x1a\x0d\x95\x05\x75\x0f\xd8\x67\x32\x19\x99\x48\x42\x49\xef\xa7\x25\xf5\x2c\x94\xc7\x59\x62\x06\xa9\x11\xf3\xf5\x05\xd6\x3f\x03\x13\x25\x4b\xd4\x45\xf0\x5b\xe3\x99\x6b\x58\xfe\x18\x19\xaf\x87\x35\x2e\x7f\x0a\x2c\xa3\x20\xd9\xcc\x00\xa5\xfe\x77\xad\x41\x64\x0d\x50\xbe\x84\x36"}, {{0xc7,0x38,0xef,0x5f,0x09,0x35,0x28,0x1b,0xa6,0x25,0xfa,0x40,0x14,0xd4,0xa4,0xd0,0xbe,0x7e,0x28,0xfe,0xd7,0x79,0xa9,0xcf,0x65,0x8e,0x21,0xdb,0xa4,0x3c,0xeb,0xc1,},{0x95,0x79,0x9f,0xaf,0x70,0x6d,0x19,0x5e,0x54,0x4c,0x76,0xca,0xfd,0xdf,0x09,0xd0,0x2d,0x1b,0xea,0xfc,0x42,0xc9,0xd6,0xc9,0xea,0xd4,0xc1,0x84,0x55,0x87,0xd3,0x9e,},{0xf4,0x43,0x71,0xe6,0xc3,0x39,0x16,0x39,0xd4,0x57,0xed,0x14,0x64,0x81,0x84,0x80,0x94,0x11,0xe8,0x0a,0x32,0x01,0xf8,0x81,0x16,0x70,0xe5,0x00,0xfc,0xad,0x92,0xf3,0x00,0xaa,0xbf,0x7f,0xc6,0x8e,0x44,0x01,0x91,0xe8,0x81,0xd6,0xc3,0x47,0x4e,0xfd,0x6d,0x28,0xf0,0x9d,0xc4,0x43,0x12,0xfc,0xfc,0xb8,0x27,0x01,0xba,0x3c,0x29,0x0a,},"\x16\x8d\x0b\xc5\x59\x8b\xe0\x2f\x54\x43\xbf\xe7\xdf\xb8\x82\x99\x85\xca\x5d\x28\x2a\xf9\xcf\x1b\x14\x82\x60\x2f\x24\x3d\x48\x6b\xd8\x2b\xa0\x39\xa0\x75\x09\x09\xe9\xb3\xc7\xd4\xd5\xf8\xb8\xba\xf4\x57\x18\xaf\x03\x11\x85\x4f\x4d\x1c\x78\x37\xf3\x1d\x8e\xe6\x8d\x35\x58\xe7\xe5\x1e\x0c\x64\x6a\x4a\x63\x75\x96\xee\x90\x05\x7b\x01\xed\x0a\x17\xda\xa3\x95\x0b\x81\xab\x47\xae\x8b\x94\xc1\x7d\x40\x74\x69\x13\xc4\x6b\xa1\x47\x8b\xfc\xa5\x1b\x16\x76\x28\xfc\x3e\xe1\xe2\x2f\x2f\x19\xd6\xd8\xda\xf9\x3d\xf6\x54\x0c\xed\xb7\xa8\x59\xd1\xa2\xba\x59\x11\xba\x71\x76\x6e\x8b\x7f\xce\x0c\x0e\x86\x63\x61\x6d\x01\x80\x69\x7d\x78\xce\x30\x40\xd4\x38\x13\x19\x82\xf3\xf8\x11\x2a\xcc\xa2\x9a\xe5\x3e\x53\x9f\xf8\xc9\xec\x41\x06\xd1\x32\xf4\x02\x01\x85\x18\x30\x84\x85\xf2\xaa\x6c\x9e\x8d\x1e\x62\xfe\xd6\x0c\xb2\x49\x45\x7d\xb3\x3c\x6f\xd1\xfe\x07\x44\x53\x61\xf0\x81\x94\xa2\xb5\xa0\x57\xcb\x03\xcc\x75\x4e\x5c\x7d\x4a\x7e\xea\x53\xa7\xf7\xd2\x07\xca\xcc\xa5\xe6\x8c\xaf\xa9\x69\xa3\x52\x1d\xbb\x81\x03\x99\xa1\x7f\x32\x8e\xe7\x67\xcf\x55\x92\x6b\x2b\xd5\xf0\x29\x54\x9d\x3b\x46\x45\x79\xc4\x26\x55\x26\x53\x98\x47\x2e\x1c\x77\xcc\x8d\xd9\xaf\xf1\x87\xf7\xac\x34\xdd\x45\x6a\xce\x99\x9a\x73\x6e\xcc\xa6\xd4\x05\xd4\x92\x2c\x77\x9c\x60\x0c\x47\xb8\x4c\x9c\x1d\xf5\xe5\xf8\xed\x3b\x28\x11\xd3\x51\x33\x91\x13\xf8\x45\x3c\xca\x4c\x44\x11\x68\x8c\xb0\x38\x82\x58\xeb\xbd\x18\x72\xb8\x36\x10\x04\x22\x49\x49\x4e\xd5\x60\xd4\xcd\xa6\xa6\x84\x55\xd9\x57\xe8\x06\xdd\x0b\xdd\x83\x00\x4c\x4c\xa8\x07\x74\xb8\xa0\xa1\x66\x58\x66\xf1\x70\x85\x01\x4e\xad\xb3\xea\xe7\x38\x2f\xa8\x70\xde\xb2\x9d\xd8\xc9\x31\xb5\x30\x19\x62\x57\x40\xe2\x83\x92\xf3\x85\x75\xc0\xe2\xa9\xe5\x04\xfc\x35\xbd\x95\xdf\x56\x43\x9a\x89\x82\x30\xa2\x39\x8c\xd2\x22\x5c\x76\x6e\xf3\x6f\x12\xae\x7e\x49\xb3\x0a\x9c\x0a\xad\x46\x9d\x58\x95\xbb\xf7\x21\xcc\x0f\xf5\x1d\x84\x0c\x80\x2d\x4a\x7e\xef\xba\x84\xfe\x52\x05\xa2\xc2\xf1\x40\x11\x92\x2d\xde\x56\x14\x56\xf7\x9e\x61\x61"}, {{0x5f,0xea,0x38,0x73,0x9c,0x61,0xca,0x83,0xbf,0x7b,0x4a,0xd1,0x75,0xa2,0x11,0x76,0x27,0xb9,0x71,0xa6,0x34,0xa3,0x05,0xa8,0x4f,0xa5,0x7f,0xec,0xb8,0x03,0x56,0x24,},{0xdd,0xd1,0x4b,0x0f,0xc0,0x67,0x68,0xd5,0x10,0x4c,0x50,0x76,0x4b,0xfd,0x3b,0x95,0x23,0x52,0xa3,0x40,0x07,0xc5,0x0d,0x5d,0xdd,0x22,0x4f,0xf5,0x1a,0xfc,0xdf,0x9c,},{0xf4,0xe2,0x74,0x82,0x3f,0x2c,0x39,0x6f,0x3a,0x32,0x94,0x86,0xaa,0x64,0x10,0xc5,0xff,0x19,0x26,0x6f,0x07,0x70,0xfd,0x04,0xfb,0x14,0xa7,0x60,0x2d,0x2b,0x69,0xa4,0xa2,0xb0,0x09,0x28,0xe9,0xe1,0xd9,0x23,0x89,0xf8,0x03,0x33,0x59,0xed,0x6f,0xb2,0x14,0x64,0x67,0xaa,0x15,0x4c,0xba,0x59,0x7d,0xec,0x6a,0x84,0x17,0x3f,0x8d,0x07,},"\x10\x13\xc6\x0a\x73\x95\x35\x49\xe5\xed\x10\x5b\xde\xa1\x50\xb9\x1e\x60\xec\x39\x20\x0d\x43\x72\x13\x04\xbf\xc8\xec\x43\x9d\x39\x60\x96\x13\xc2\xd8\x78\x04\x4a\x9d\xa0\x1b\x26\xd8\x6d\x6d\x65\xdb\x93\xd9\x1a\x13\x7e\x9c\x48\x08\xa9\x7d\x4e\xf2\x86\xa9\x03\xf3\xf1\x38\x2c\xc6\xd1\x29\x42\x16\xb9\xfa\xfc\x01\x3c\x86\xb9\xff\x68\xb5\x5a\x50\xea\x37\x66\xe6\x1d\xc1\xce\x38\x34\x8e\x91\xd6\x2c\xe7\x32\xc1\x52\xd7\x66\xb9\x33\x5c\x68\xd6\xca\xd7\x7b\xe2\xb4\xa0\xcd\x50\xb9\xa1\xec\x63\x2b\xa5\x56\x48\xa6\xe7\xe1\x1a\x14\xc0\x68\x53\xc0\x2a\xec\x48\x09\xbd\x14\x7a\x5d\xdd\x9f\xbc\x3b\xe9\xf0\xc8\x15\x8d\x84\xab\x67\x95\xd7\x71\xb4\x2b\x18\x14\xa1\x7a\x3c\x7a\x6c\xa0\xf4\xa8\xf7\xb3\xa0\xdb\x1c\x73\xba\x13\xb1\x64\x00\xdf\xec\xbd\x03\xd2\x16\x65\x0e\x4d\x69\x70\x4a\x70\x72\x46\x44\x4d\x57\x91\xfa\x27\x37\x52\xf5\x9c\xb5\xae\x9f\xd4\x16\xa5\x18\x66\x13\xd6\x6a\xfd\xbd\x1c\xe6\x91\xa8\x7b\xd7\xd8\xb6\x71\x90\xe9\xac\x68\x70\x62\xa0\x80\xd2\xec\x39\xfe\x76\xed\x83\x35\x05\x82\x51\x87\x28\x39\xe8\x5e\xb6\x2f\x18\xec\xe1\x87\xca\xba\x55\xb5\xf7\xd5\xed\xca\xde\x01\xcd\xc5\x43\xcc\x67\x7e\x50\x23\x8b\x89\xc5\x63\x5a\xd5\xc8\xfc\x22\x0f\x5e\x0b\xe1\xbc\x66\x7d\x20\x98\x97\x53\xa6\xd6\x16\xfa\x69\xf8\xb1\x29\x40\xb8\xca\x9e\x2c\x48\x57\x71\x32\xd8\x69\x1b\x05\x37\x79\xa1\x52\xcb\xac\xff\x3b\x8b\x1b\xd7\xaf\x69\x2e\x56\xc7\x3b\xba\xe4\x63\x47\x76\xcf\xc2\x13\xc9\x9b\x9a\xe4\x58\xdf\x1b\xef\xc8\xc8\x77\x74\x26\x64\xb0\xa0\xbb\x1f\x69\x15\xc8\xda\xe3\xb3\xf5\x5d\xd7\x5a\xba\x6a\x3b\xcc\x41\x76\xb4\xe3\xba\x03\xd0\xc1\xc0\x4c\x3c\x64\x08\x77\x8b\x2b\x8e\x5a\x8a\x3e\xb5\x2e\xd3\x2a\x74\x28\xc0\x0a\x98\xa5\x89\xd8\xca\x93\x90\xa2\x10\xf4\xa7\xac\x00\x4f\xa1\xfe\x4c\x6d\xa6\x94\xf1\x22\x76\xe3\x20\xb4\x1b\x0b\x59\xf7\x5d\x26\x4a\x39\x6d\x45\x0b\x63\x1a\xb3\x53\xf1\x61\x27\x09\xe7\xa2\xe6\xa5\x0d\x01\xcb\x11\x0e\x53\x04\x05\x46\xdd\x3b\x1e\x11\xd2\x57\x32\x81\x3a\xa7\x6b\xe5\xe8\x1f\xcf\x7a\x57\x73\xf6\x81\x5b\xbd"}, {{0x60,0xf9,0xa1,0x4c,0xce,0x5d,0x43,0xfd,0x9a,0xab,0x4e,0xe8,0xcc,0x83,0x79,0xd5,0x75,0x94,0x91,0x52,0x69,0x3b,0xf2,0x9a,0x67,0x90,0xb0,0x35,0xe4,0x2a,0x44,0xde,},{0xbd,0x4a,0x70,0x74,0x0d,0x5a,0xca,0xbe,0x49,0xf9,0xa2,0x15,0x20,0x82,0xfa,0x20,0x25,0x33,0x0e,0x64,0x40,0x43,0x7f,0x1d,0x04,0x7f,0x31,0x3d,0xe4,0x90,0xdc,0xa5,},{0x72,0xf5,0x4b,0xb8,0xbd,0xd1,0x7e,0x9e,0x42,0x2c,0xd3,0x39,0x63,0x1d,0xd3,0x9f,0x57,0x35,0x50,0x15,0xd4,0xcb,0xd1,0x5a,0xca,0xb7,0x54,0x2e,0xfd,0x78,0x4a,0x32,0x1c,0x1f,0x61,0x25,0x76,0x4c,0x0d,0x15,0x40,0x45,0xb3,0x2e,0x70,0xdc,0x2e,0x03,0xfb,0xfe,0x11,0x17,0x46,0x8a,0xc3,0xe7,0x31,0x27,0xb5,0xfa,0xc8,0xd4,0x21,0x02,},"\xdd\x7f\x44\xf9\xeb\x72\x8a\xb4\x8d\xe5\x4e\xcd\xe6\xb6\x18\x4b\xd5\xdd\xd8\x70\x75\x45\xa0\x12\x9f\x2e\x90\x59\x05\xb5\x5d\x3e\x7f\xd5\x7e\x28\x48\x5d\x25\x81\x48\xf6\x60\x5e\x23\x77\xd5\xb2\x67\xd2\xea\xf4\xcd\x4b\x46\xe4\x54\x96\x22\x19\x86\x82\x32\xb6\xf4\x1f\x88\xa7\x97\xf9\xcd\xd5\xc3\x9a\xda\x51\xa6\x41\x21\x4f\xb9\xdb\x2c\x2a\x9b\x5a\x5b\x16\xe3\x03\x57\x53\x18\xb6\x25\xcc\xa9\x70\xb7\x43\x48\x72\x79\x02\xa1\xcf\x26\x8b\xd1\x6e\x10\x71\x13\x16\x1c\x8c\xbc\x99\x30\x3c\x2b\x9f\x23\x55\x41\xa7\xb3\x1e\x43\x31\x20\xfe\xba\x14\xfe\xbe\x4b\xcb\x0f\x5b\x93\x6c\x7e\xdd\xdd\x0e\xcf\xc7\x2c\x8d\x38\xf6\x4c\xdb\x6c\xfc\x29\x10\xbc\x29\xa5\x21\xc5\x0a\x51\xab\xcb\xc2\xaa\xbf\x78\x9d\xe8\x22\xcb\x04\xf5\x72\x8f\xee\x15\x3d\xd5\x50\x1b\x2d\xb5\x9c\x59\xf5\x0c\xab\x17\xc2\x92\x16\xd6\x69\x51\x01\x9e\x14\x5b\x36\xfd\x7e\x84\x1b\xfb\xb0\xa3\x28\x55\x4b\x44\xdd\x7e\xf5\x14\x68\xc3\xd5\xb7\xd3\xa1\xf7\xb9\xde\xf5\x8d\x8c\xf9\xd9\xbc\xaf\xe9\x2c\x86\xcf\x6d\x61\x19\xe9\x8d\xba\x6f\x38\xea\x57\xe3\x22\xdd\xc9\xc2\x19\x8d\x4b\xbc\x3b\x94\xea\x13\x29\xdb\x0d\x45\x8e\x01\xc7\x08\x1b\x33\x92\x5a\x3e\x28\x7f\x59\x9a\x85\x8c\x50\xc3\xa8\xf1\x8c\xc2\xaa\x63\x4d\xf6\x3e\x7f\x10\xe4\x03\xad\xea\xb2\xf4\x1d\xb5\x57\x87\x90\xc3\xb4\xf0\x41\xa8\xb7\xa4\xf6\x9c\xd6\xe0\x62\x15\xdf\x82\x01\xae\x5b\x3e\x1d\x1d\x25\xa0\xa3\x9b\xfc\x3d\x04\x1a\x2f\x98\x21\x3e\xf4\x14\x12\x45\x79\x2a\x76\xf0\x6d\x4d\xe2\x5f\x64\x67\xa0\xe5\x6f\x2f\x5c\xf6\x94\x00\xd2\x21\x17\xde\x7b\x46\x14\x95\x54\xb7\x0c\x75\xb9\xf9\x94\x84\xa4\xf6\xf0\x35\xad\x3f\x10\xe3\x75\x3c\xb1\x4f\x4f\x39\x8d\xcf\x6a\x64\xd1\x0c\xf6\xc4\xfa\xc0\x7c\x91\x19\x3c\xc0\xf5\x4f\x0d\xe5\x8c\x63\x43\xe9\xca\xaa\x6b\x4f\x47\x5e\xf9\x1a\x59\xe0\x83\xf9\xf2\x11\xf5\xbc\x8e\x7e\x45\x16\xb4\x5c\xf0\x6b\xf5\x0b\xeb\x8f\xc4\xab\x57\x9d\x86\xd4\xa4\x19\x0e\xea\xc7\x48\xd0\x6e\x08\x52\xc4\xb9\xba\x8c\xfc\x50\xdd\x0a\x03\x7a\x7b\xad\x7f\xad\x55\xaf\x30\x9a\x5f\x13\xd4\xc9\x1e\xd3\xe0"}, {{0xa3,0x90,0x53,0xc5,0xc5,0x8b,0xf3,0x1d,0x46,0x2b,0x27,0xa6,0x20,0xb0,0xb3,0x7b,0x80,0x52,0xc6,0xb1,0xc4,0x10,0x2b,0x61,0x45,0x66,0x3a,0xa1,0x5e,0x97,0x87,0x18,},{0x36,0x42,0xac,0x2a,0x32,0x80,0xdc,0xe5,0x2a,0xd8,0xdf,0xcf,0xd3,0x70,0x94,0x36,0xed,0xc4,0xe7,0xe4,0xae,0x1b,0x45,0x2d,0x9b,0x22,0x07,0x80,0xb0,0x86,0x79,0xfa,},{0xf7,0x38,0x3e,0x96,0x6c,0xb2,0x30,0x9d,0xee,0xdf,0x86,0x01,0x00,0x18,0x3a,0xae,0xfa,0xc6,0x72,0xca,0x16,0xd5,0x41,0x9c,0xd6,0x42,0x2c,0xa7,0x0e,0x16,0xb3,0x97,0x6f,0x5f,0x16,0x5a,0xfc,0x27,0x86,0x11,0x7c,0x86,0x82,0x34,0xba,0x11,0x09,0xed,0xe0,0x31,0xf8,0x97,0x9b,0x50,0xe5,0x67,0x35,0x8b,0xd4,0xf8,0xbd,0x95,0x82,0x02,},"\xf6\x55\x40\xd3\xab\xeb\x1e\xe5\xea\x98\x70\x62\xc1\xb5\x79\x51\x6d\x3c\x29\xc3\x9c\xbc\x6b\x09\xd6\x0e\x18\xfe\x27\x4c\x2b\xef\xe0\xf5\xfe\x7d\xbd\x57\xc2\xd5\x83\x52\x29\xbb\x75\x4e\xc4\x34\x13\x94\x76\x57\x76\xd6\xa9\x17\x8c\x4e\x6a\x31\x2c\xd7\x4b\xdb\xac\xa0\xe8\x82\x70\x62\x8c\xd8\x41\x00\xf4\x72\xb0\x75\xf9\x36\x92\x83\x01\x22\xf0\x0f\x9b\xd9\x1a\xc5\x82\x83\x6c\x8b\xfa\x71\x4a\xa4\x8e\x97\x70\x03\x55\x6e\x1b\x69\x6d\xf3\x28\xef\x58\x4f\x41\x3f\x8a\xb6\x14\x76\x06\x99\xc4\xd1\x47\xc3\xee\xa1\xda\x04\x35\x83\x5c\x9b\xf7\xad\x54\x60\x6f\x02\x13\xeb\x74\xa1\xb4\x76\x14\x15\x06\xae\x2c\xd1\x24\xcd\x51\xd6\x6e\x7e\x7e\x57\x95\x60\x57\x63\x05\xc5\xfb\xe8\x43\x0b\xe3\xeb\xeb\xaa\xcb\xa3\xf9\x98\x9d\xd7\xd1\x99\xf5\xa4\x55\xa5\x0c\xdb\x37\x55\x03\x7e\x1a\x70\x67\x4a\x4f\xef\x40\xb4\xa3\xaa\xf7\xbd\x3c\x95\xb1\xab\x41\xbb\x20\x62\x11\xc3\xa1\x27\x6d\x3e\x37\xd8\xa3\xa5\xc3\xd5\xd0\xf3\x6e\xf5\xb4\xf3\xde\x26\xb7\xf2\x0f\x6b\x29\x00\x71\x6d\xcc\x22\xab\x73\x4e\xba\xf1\xe8\xd0\x00\x20\xe5\xf0\x19\x55\x16\x53\xb9\xc2\xf7\x0a\x40\x38\xdf\xb2\xf1\x2d\x25\xd6\xd8\x4e\x79\x07\x3a\x65\x48\xfe\x15\xe4\x82\x8f\xe5\xde\x83\xac\x3d\x8d\x98\xb7\xda\xf9\x27\x10\x48\x2c\x37\xf7\xbd\x24\x31\xa8\x11\x4c\x61\x37\x65\x7b\xb1\x77\x88\x2d\x8a\x3c\x76\xba\xbf\x1c\x67\x1a\x70\x55\x36\x5f\xe9\x08\x66\x16\x7a\x2d\x1d\xbc\x87\x0b\xe8\x3b\x36\x01\xf0\x9d\x4a\x31\x7a\xe2\x54\xca\xc9\xf9\x8d\xcc\x7a\xea\xd9\x22\x4c\xd9\xc9\xd8\xa2\x00\xab\xc8\x0a\x2d\xd1\x08\xaf\x28\xfd\x46\xad\x70\x80\xae\x74\x1b\x50\x05\x4b\x9b\x9a\x92\x01\xef\xb7\x83\x8b\xc4\xc5\xc2\xcc\x3d\x76\xba\x0f\xcc\x49\xc4\x6e\x79\x2c\x26\x29\x2b\x7d\x03\x12\xaf\xf9\x55\xa9\xf8\xed\xf0\xc6\x96\xa7\x0a\x61\x4f\x35\x53\xad\x38\x69\xbf\xde\x48\xd2\x6a\x4d\x36\x7b\x6c\xec\x05\x7e\x62\xa4\xe5\x48\x55\x4b\x48\xb5\x3e\xcd\xa7\x90\xba\x7a\x0a\xb2\xe3\xde\x58\x7b\xdc\x22\xb0\x2f\x59\x47\x63\x4d\x73\x09\x9f\x54\x7d\xb2\x2e\xc1\xbb\xf8\x23\x43\xf9\xa2\xca\x38\xbc\xe4\xeb\x59\xbe"}, {{0xe0,0xc2,0x9d,0xf4,0xde,0x45,0xc4,0x75,0x39,0xe0,0x89,0x6b,0x3a,0x59,0xbc,0x3d,0xe6,0xb8,0x02,0xfd,0x14,0xdb,0xdc,0x9f,0x25,0xe7,0x17,0xac,0x82,0xc3,0x28,0xf3,},{0xa6,0x90,0x02,0xb0,0xf5,0xef,0x35,0x4c,0xe3,0xb2,0xd6,0xb8,0xd8,0xba,0x70,0xab,0x77,0x84,0x32,0xb2,0x2f,0x14,0x4d,0xc9,0xc2,0xeb,0x92,0xd9,0x9d,0x99,0xdd,0x2a,},{0xbb,0x3b,0x8c,0x5c,0x27,0x59,0x1f,0xd8,0xb9,0xc5,0xba,0x48,0x9d,0x6b,0x6e,0xe5,0xb0,0xfb,0x4a,0x7b,0x0d,0xe5,0x1f,0x16,0x39,0xaf,0xc6,0x73,0xd0,0xe5,0xf7,0x5e,0x31,0x3a,0xa7,0xe1,0xd0,0x00,0x90,0x81,0xdb,0xca,0x74,0x35,0xb6,0x87,0xcc,0xd1,0x2f,0x64,0xf7,0x4a,0x38,0x6e,0x77,0x2b,0x9e,0x24,0x78,0x1b,0x92,0x5c,0x8c,0x0c,},"\x6a\x37\xcb\x4c\x74\x9c\x58\x35\x90\xc8\xd8\x49\xbc\xe3\xfa\x65\x7f\x10\x00\x91\x90\xca\xd9\xbe\x41\xed\xe1\x9b\xf2\xfd\xb3\xc5\x62\xa6\x10\x1f\x27\xbd\x37\xf2\x23\xca\xb1\x3c\xed\x24\x5a\x1c\xed\xf8\x52\xf5\x51\xf8\x57\xaa\xd9\x72\x7f\x62\xc9\x67\xc0\xa9\x21\xdf\x11\x6f\x48\xa8\x0a\x60\x40\xb3\xc7\x23\xab\x5c\xb5\x94\xc4\x50\x7a\x3d\x20\xcd\x60\x51\x4e\x22\x16\x4a\x82\xb7\x4f\x19\xdc\xfd\xd8\x3c\x57\xbc\x36\x52\x37\x55\x17\x41\x4a\xf5\xd1\x8e\x0a\x64\xcc\xab\x36\x69\x97\x68\xd0\x7c\xf4\x0b\x70\x63\xa8\x3e\x43\xd5\xf6\x07\x96\x4b\x1b\xf0\x84\x0a\x45\xad\x50\xab\xf8\x3d\xbc\x84\x9f\x40\xe5\xb4\xcf\xb6\xa3\x34\x7b\x29\xfe\xc5\x07\x74\x04\x6a\x4b\x50\x04\x10\x32\xaa\x4d\x56\x7e\x85\x64\xb3\xee\xd1\x64\x20\x40\x68\x2d\xd8\xae\x7d\x71\x79\x28\x6c\xf6\xe1\x85\x3d\xc8\x7d\x27\xc3\xe9\xe6\x0f\xa4\x7c\xf8\xcb\x2d\xa0\x18\x1d\x53\xee\xc4\x06\x14\xb0\x73\x31\xa4\xfb\x70\x28\x08\x6d\x0b\x1c\xe2\xe1\x11\x5b\x73\xa1\x62\xc5\x27\xbd\xd7\xca\xb5\x33\x5b\x86\x3d\x10\x8b\xe0\x47\xbd\xbc\xa1\x12\xcc\x6e\x77\x6b\xb4\x53\xc3\x17\x31\x43\x88\xbb\x96\x53\xef\xb4\x44\x4b\xf5\xcf\x1e\xc8\xda\x23\xb7\x11\xba\x71\x79\x6c\x0a\xe0\x2b\xa1\xdc\xc8\x38\x45\x50\x78\xc3\x89\x7f\x07\xe9\xe1\x3b\x76\xe4\x92\x74\xc2\xe2\x07\x50\x6b\x00\xa0\xb5\x58\x88\x3a\xa1\x22\xb6\x67\xdb\x9d\x67\x05\x08\x60\x6a\x3f\x54\x32\x06\x36\xcd\x19\xf9\x73\x91\x7f\xb1\x87\x5f\x43\x63\xe2\x20\xf1\xe1\x23\x98\xcc\x6a\xfd\x79\x09\x47\x43\x33\x84\x56\x81\x3a\x58\x26\xad\x3f\x1a\xba\x7c\xd7\xbe\xab\x1f\xe1\x83\x85\x9c\x0c\xc9\xef\x40\xa5\xea\xb9\x12\xca\xf5\x15\xa8\xd4\xc3\xb9\x3d\x64\x1b\x7a\xb3\xe7\x6b\x16\xc1\x29\x71\xac\xe8\x8f\xf3\x3e\x5a\x1e\xd9\xb4\x4e\x45\xdb\x8f\x30\x85\xdb\xf0\x70\xb2\x56\xb0\xd7\x51\x2e\xe1\x06\x94\x32\x60\x3d\x73\x09\x5d\xb8\x74\x9c\xa5\x47\x96\x3b\xd7\x1a\x8a\x68\x4a\xb8\x51\x6b\x14\x6c\x41\x87\x17\x63\x86\xaf\xdf\x6c\xb1\x36\x8a\x3d\xd8\xfc\xb2\xcf\xff\x77\x05\x6a\xaf\x78\x23\xf8\x00\xb2\x66\xac\xce\x72\xbf\x64\x3c\x6d\x0c\x28\xf0\xab"}, {{0x19,0x8b,0x5f,0xd1,0xc0,0x38,0x27,0xe0,0x99,0x4a,0xd5,0xbf,0xee,0x9b,0x5b,0x7b,0xe9,0x96,0x6c,0x9c,0x3a,0x26,0x7e,0x4d,0x74,0x30,0x34,0x37,0x67,0x40,0x3c,0x67,},{0x66,0x82,0xc6,0xf1,0xa8,0x66,0xb4,0x9b,0x2f,0x8e,0xe9,0x7f,0x2e,0x53,0x2f,0xa9,0x16,0x66,0xbf,0x38,0xda,0x1b,0x4d,0xd6,0x55,0x43,0xa1,0x77,0x77,0x94,0xcb,0xee,},{0xf4,0x54,0xf3,0x5b,0x18,0x53,0x8f,0x87,0x7e,0x5d,0x61,0x4a,0x76,0xb5,0x27,0x6a,0x27,0xfc,0x0b,0x43,0x3f,0x21,0x5d,0xc4,0xe9,0x63,0xb3,0xf0,0x47,0x69,0x4c,0x78,0x0c,0x51,0x5c,0x6e,0xf6,0xfe,0x2d,0xb4,0xb0,0x09,0x00,0x9b,0xc2,0x73,0x3a,0xec,0x4f,0xd4,0x6e,0x61,0x53,0x57,0xcc,0x0b,0xcc,0x9f,0x1f,0x7f,0xc2,0x1e,0x3c,0x02,},"\x3f\xda\xa1\x5c\x46\xf2\x51\x43\xdb\x97\x20\x79\xd7\x01\x3c\x7f\x69\xa1\x36\xf4\x5f\x3f\x6b\xa2\xce\xd8\xb8\x28\x46\x8e\xb3\xda\xa6\xb5\x0b\x4f\x8d\x33\x80\xfe\xc6\x4a\x03\x43\xbe\x11\x6f\x6f\x83\xb6\xee\x64\xcc\x4c\x1b\x1d\x08\xd5\x4f\xd4\x20\x29\xe4\x28\x5c\xfc\x6c\x6d\xd5\xcd\x18\x1a\xb5\x33\xff\xcd\x41\x1f\x23\xa1\x00\x3d\xa9\x4e\xc9\x34\x0e\x2e\xc7\x11\x99\xd6\x78\x54\x0d\x51\x82\xe1\x39\xff\xcb\xc5\x05\xa1\x70\xb8\xf0\x7f\x4a\x7e\x69\x4c\xa9\x2f\x58\x32\x0c\x0a\x07\x85\x64\xce\x9d\xe9\x9b\x0f\xa8\xe6\x6b\x0d\x82\x2e\x46\x7a\x5a\xeb\x83\x56\x79\x96\xa4\x8b\x89\xdb\x25\xca\xde\x64\x57\x79\x4e\x54\x14\xd6\x7e\x9d\x4a\xb7\xcd\x6c\xc2\x05\x8b\xb7\xa5\x13\xab\xd7\x09\xf4\xca\xf2\x4b\xb6\x7c\xe1\xc0\x3a\xb6\x2d\xbd\xfe\x30\x9e\xc7\xdb\x0f\xa3\xea\x7a\xae\x82\x36\xf2\x59\xb9\x22\xd4\x53\x61\x15\xa6\x3b\xc8\x9a\xcb\x20\x51\xd0\x9e\x73\x1c\xbb\x0d\xf1\x57\xd9\xd3\x45\xbd\x91\x09\x97\x3c\x2b\x59\x4f\x14\x8e\xfc\x6f\x33\x77\xde\x51\x63\xb7\xf6\x98\x69\xff\xef\x85\x3e\xae\xfe\xb4\x02\xe2\x35\x29\x59\x4f\xbd\x65\xca\x05\xfe\x40\x62\xc5\x29\xd8\xe3\x21\xab\xc0\x52\x00\xca\xc1\xe8\x39\xe8\x7b\x1f\xd3\xfd\xf0\x21\xd6\x8c\xbb\x3a\x41\x42\xb6\x9c\xc3\xaf\x6f\x63\x2e\xdd\x65\xb8\x3f\x5a\xa4\xcb\x17\xda\x5b\x6b\xa3\xfc\x03\xed\xb1\x7c\x2a\x3c\xb5\xb0\x48\x36\xe7\x66\x0e\x63\xc8\xa0\x48\x3e\x24\x39\x83\x37\x1d\xfa\x98\x39\xf9\x16\x4a\xd4\xda\x0d\x59\x53\x65\x5e\x3a\x95\x18\xe1\x36\xda\x74\x57\x37\xc7\x92\x43\xc3\x55\xfc\x12\x5c\xbd\xcc\x76\xae\xc9\x22\x16\x84\x6c\x45\x74\xf4\xf7\xf2\x98\xbc\xde\x54\xfd\x24\x44\xad\x30\x25\x95\x5c\x10\x03\x15\xde\x5a\x4e\x27\xc3\x33\xa0\x02\x84\xb2\xf7\x02\xfd\xd3\xde\x22\xac\x6c\x24\x0d\xbc\x14\xbf\x71\xe6\x2d\x13\x1b\x62\xf2\xdb\x99\x24\x73\xf2\xf9\x13\xf6\x0c\x91\x6e\xcf\x57\xdf\x5f\x3f\x02\x1f\xb3\x30\x83\x43\x95\xb7\x94\x72\xca\xff\x19\xfc\xfa\x0a\x27\x17\x95\xc7\x6d\x69\xb4\xdb\x3f\x85\xb8\xd2\xe5\xc3\x44\x19\x65\x48\x4d\xcc\x39\xab\xa5\x9b\x70\x12\x74\xf7\xfc\x42\x52\x46\x85\x60\x69"}, {{0x43,0x92,0xf7,0xd4,0xfb,0xd6,0x8f,0xe1,0x54,0xe4,0xba,0x38,0xad,0x52,0x07,0x61,0x2a,0x06,0x48,0x55,0x60,0x56,0xc3,0x9a,0xc1,0x16,0xad,0x46,0x8f,0x89,0xbd,0x2d,},{0xcb,0xea,0xef,0x41,0xac,0xac,0x02,0xbf,0x1f,0x78,0x0c,0xe9,0x34,0xaa,0xbd,0x63,0x13,0x64,0xb3,0x69,0x56,0x7b,0xe1,0xbe,0x28,0xe3,0x90,0x6f,0x9d,0xb1,0x20,0xfa,},{0x86,0xe7,0xcc,0xf0,0x6e,0x79,0x36,0x2d,0x40,0xcd,0xb7,0xfb,0x75,0xa9,0x89,0x78,0xbb,0xd3,0x34,0xa1,0xdb,0x75,0x90,0x36,0x7d,0x60,0x84,0x9b,0xd5,0x3e,0x2f,0xb1,0xa4,0xbd,0xae,0x59,0x0d,0x1f,0x47,0xb5,0x49,0x0d,0x87,0x02,0xe7,0xc1,0xa8,0x72,0x68,0xb8,0xee,0x9d,0xb6,0x12,0xde,0x7b,0xdc,0x2e,0x38,0xfa,0x6d,0xeb,0x7e,0x05,},"\xcf\x17\x09\xdc\x9a\x08\x67\xee\x90\x87\x21\xb1\x36\xcb\x93\xa8\x42\x29\xe8\x3b\x46\x20\x47\x77\xca\x81\x94\xd0\x8b\x7a\x3c\xa9\xc9\x12\xeb\x24\x3e\x5b\xda\xbf\xee\xd3\x52\x34\x9d\x20\xbe\x80\x1b\x72\x2a\xf0\x89\x22\x38\xe7\x2e\xdf\x19\x0e\x63\x61\xf5\x75\x72\x78\x1a\xd3\xc2\x59\x0b\x19\x73\x57\x64\x1c\x80\x53\x83\xba\xa1\xd4\x97\x2f\x76\xc6\x54\x48\x53\x2c\x11\x08\x34\xa0\xba\xa8\xf4\x88\x63\xe1\x66\xb7\x06\x65\x37\x08\xcd\x40\x57\xd3\xa4\xf9\xfc\xb2\xce\xb4\x12\x00\x01\x27\x7d\x38\xc4\x38\x47\xd8\x22\x82\x2b\x77\x7c\x2b\xb4\xda\x40\x15\xa1\xc2\x4d\x41\x6d\x50\x62\xa8\x71\x84\x91\xd8\x55\xaa\xa5\xdb\xf5\x57\x9c\x16\x4d\x8e\x52\x4a\x9f\x2f\xa3\xf2\x2e\xb0\x98\x61\xff\xe6\xad\x65\x9f\xe3\x6e\xb4\x04\x31\x22\x2c\x22\xd7\x13\x7a\x6c\xab\xca\x8d\xb7\x86\xe3\x9d\x81\xf6\x61\xaf\xde\x4e\x39\x58\x9b\x4d\xb4\xd3\xc5\x1c\xa5\x35\x90\xa1\x4e\x11\x5d\x0a\xfc\x3a\x87\x7b\x83\x9a\x96\x38\xbe\xce\x80\xc3\x2c\x19\xe5\x1b\x75\x32\x02\x48\x45\xf7\x6c\xfe\x9b\xfb\x2a\xc0\x51\x30\xf6\x75\x8b\xf7\xfe\x99\x3a\xa9\x3a\xa2\x72\xe4\xe6\xbd\x0c\x75\xc1\x40\x99\xd4\x3e\x65\x2a\x22\x3e\x5b\xcd\x64\xc3\x62\xd4\xb8\xf4\xb9\x5e\x01\x6f\x93\x50\xc7\xfa\x74\xe6\x53\x52\x5d\x08\x01\x15\x58\xb2\xc6\xe9\xbf\x4f\xdf\x9d\xbd\x5e\xf9\xb0\x9b\xbc\x84\x6a\xfc\x2b\xcb\xc8\x6c\x4c\xcc\x31\x5f\x6d\x1c\xcd\x48\x9b\x0c\xf8\xed\x0d\x93\xf2\xf5\x32\xa4\x26\x26\x5c\x59\x0b\xa3\xa5\x90\x23\x34\x7d\x81\x9d\x9b\x28\x1e\xf8\x53\x10\xb0\x53\x16\xd4\x6c\x8a\x8c\x03\x65\xd0\x68\xa8\x70\x86\x64\xea\x4d\x77\xac\x0c\xd1\x50\xa6\x5a\x56\x58\x6b\xab\xd3\x4b\x74\x36\x5b\xb8\xfe\x3e\x61\x87\x26\x22\x84\xd6\x44\x32\xe4\xc8\x1e\xa4\xc0\xe5\x7c\x1d\x71\xae\x98\x0c\x7f\x4d\x1d\x87\x10\x32\xe1\x88\xbb\xf9\xd1\x75\x8c\xdc\x1d\xff\x98\x9f\x2d\x12\x88\xfe\xf4\xe2\x05\xe9\x9e\x7c\xbf\x2c\xc3\x24\xb8\xc9\x30\x46\xf4\x76\xc5\x9d\x3d\x0a\x59\xdb\x6f\xe3\x73\x82\xdc\x79\xc5\xec\x16\x05\x6a\xb3\x93\x4a\x52\xf7\xd2\x88\x0d\x04\x71\xa3\x77\xb6\xa8\xae\x84\xd5\x6a\xc2\x2d\x1d\x54\x55\x1c"}, {{0x0b,0xea,0x98,0xab,0xe7,0xd6,0x3f,0x15,0x83,0x90,0xee,0x66,0x8a,0xa0,0x50,0xe8,0x4a,0x25,0xd2,0x89,0x3e,0x49,0xfc,0x83,0xf0,0x79,0xf9,0xbb,0xa6,0xa5,0x5a,0x75,},{0x22,0x19,0x2e,0xc0,0xd3,0x2e,0xf9,0x83,0x56,0x65,0xa6,0x1b,0xc8,0x8b,0xcf,0x4e,0x16,0x04,0x63,0x79,0x21,0x15,0x2c,0x11,0x6a,0xf5,0x03,0x36,0x5b,0xf6,0xbe,0x42,},{0x7e,0xb3,0x13,0x9b,0x88,0x0f,0xdf,0x66,0x37,0x6a,0x20,0x90,0x81,0x88,0x40,0x04,0x97,0x67,0xc8,0x37,0xf3,0xad,0x00,0x36,0xb1,0x41,0x66,0x70,0x52,0xb3,0x36,0x09,0x81,0x7c,0xa5,0xe2,0x40,0xed,0x8c,0xdf,0x3c,0xcf,0x3a,0xee,0x29,0x27,0x45,0x34,0x59,0x4d,0xb0,0xb4,0xcc,0xc5,0xc6,0xe5,0xbb,0xa3,0x28,0x0b,0x87,0x3f,0x29,0x01,},"\xc1\x78\xe3\x8d\x4e\x83\xed\x2b\xe5\x7c\xe1\xc3\xab\x64\x25\x3a\x81\x71\xe6\x10\x00\x81\x81\xfb\xfc\x6d\x75\x22\x69\xf7\xf1\xc5\xa9\xec\x62\xcb\x27\xf1\x9a\xd9\x9c\xe1\xf5\x11\x6a\x36\x3d\x96\xfd\xc5\xa4\x2f\x35\x8b\x6d\xbe\x7c\xab\xdf\xc9\xf6\x07\x18\xe4\x01\x2c\x1b\xb1\xf8\x42\xc5\x56\x08\x11\xba\x83\x74\xa0\x63\x77\x47\xff\x92\xea\xc2\x1c\xa6\x5d\xde\xaf\x43\xe9\x98\x9b\x7d\xe2\xd4\x32\x52\x0a\xfe\xe3\x64\xec\xfb\xa4\xda\x66\x9a\xd4\x89\x3d\x0b\xf6\x9f\x9f\x81\xe7\xdf\x69\x65\x7b\xe2\x2b\x92\x06\x97\x45\xf2\x16\xc2\x42\xcc\xd4\x6d\x02\xd3\x56\x16\xe1\x6c\x75\x5e\x0e\x37\xf9\x61\xa6\xf3\x63\x77\x52\x53\x4f\x6d\xfa\xb8\x80\x5a\xb7\x59\xa0\x32\xa4\xe7\xe4\xc8\x19\x53\x32\x5a\x2f\x68\x6b\xb6\x9a\x02\x9c\xe4\xe0\x3b\xec\xb3\x60\x56\x37\xc5\xa6\x5b\x52\xe3\x31\xc2\x6c\x92\x6e\xd4\x71\x1a\x50\x4d\x37\x33\xbb\x53\xc9\x7b\x80\xea\xfe\x4e\x75\xdd\xd9\xf4\x15\x36\x28\x88\xc3\xd4\xd3\x7b\xae\x0e\x63\xfa\x11\xbf\x75\x56\x66\x43\x7d\x72\xf5\x8c\x91\xd7\xa2\xf8\xcb\x61\x9b\x76\x20\xa0\x70\xb2\x6b\x18\xb4\xd5\x01\x84\xc5\x81\x87\x12\x11\x0e\x36\xd3\xe2\x83\x0f\x6a\x85\x76\xba\x57\xf9\xcc\xcb\x8f\xff\x40\x28\xbf\x8e\xf9\xcb\x81\x48\x25\xbb\xca\x82\x7d\x64\x95\x47\xbf\x6f\x2b\xef\x93\x17\x04\xca\x7f\x6d\xf1\x5f\x78\x01\x55\xed\x46\xea\xa7\xca\x7d\x72\xe2\x24\x34\xca\x04\x83\xbf\xb2\xf7\x90\x2d\xc7\x87\xf6\x17\xeb\x9b\xd4\x1e\xd4\x52\x0a\xdf\xd4\x30\x94\x8c\x71\x08\x05\xa7\x3c\x1b\xa5\x49\x2e\x96\x48\x4c\x4b\xaa\x7d\xa2\x4c\x74\x35\xc4\x6a\x05\x2b\xf3\x51\x5d\x33\xe4\x2d\xce\xf5\x17\xca\xa4\x5f\x36\xc8\x79\x12\x10\x78\xc6\x88\xdd\x10\xd7\x66\x56\xa1\x19\x76\x2b\x6a\x83\x41\x36\xfa\x1f\x8a\x64\x32\x24\xb9\x22\x4c\x54\x3c\xf0\x47\x0b\x3f\x8e\xe0\x17\xd6\x20\xdb\xdc\xc8\x4d\x98\x51\x54\xe9\xd1\xae\x80\xe5\xf1\x43\x87\xb8\x8a\x0f\x6a\x5c\x35\x90\x5a\xa5\x7f\xb3\xab\xeb\x0e\xa6\xec\xcd\xdb\x00\x44\x74\x63\x3c\xc4\x83\xb5\x6b\x8a\x8e\x20\xe8\xf2\xe0\x9e\x97\x9a\xa0\x98\x93\x08\x78\x75\xc6\xb1\x17\xb5\xf1\x38\x47\xad\x8f\xc0\x56\x04\xc4"}, {{0xc2,0x58,0x78,0xb0,0xd1,0xe0,0x92,0x5c,0x8f,0x5f,0x04,0xa1,0xe5,0x79,0x90,0x80,0x96,0x3c,0x41,0x3a,0x13,0x99,0xc1,0x18,0xaf,0xb1,0x68,0x7c,0x79,0x7f,0x48,0x39,},{0x13,0xac,0x2c,0xad,0x41,0x90,0x8c,0x25,0x5f,0x67,0x1f,0x93,0x93,0x4a,0xe5,0xd7,0xbe,0x32,0x53,0x46,0x72,0x5c,0x8b,0x40,0xdc,0x39,0xea,0x80,0xd7,0x0d,0xdf,0x34,},{0x06,0xf5,0x51,0x98,0xb4,0x19,0x19,0x14,0xb7,0x43,0x06,0xf3,0x8e,0x38,0x13,0x16,0xea,0xc4,0x0b,0x5b,0x5a,0xdb,0x8a,0x31,0x24,0x64,0xf6,0x71,0x75,0xec,0xf6,0x12,0xe0,0x14,0x7b,0x1c,0xef,0x46,0xc2,0x51,0x87,0x50,0xa5,0x60,0x6b,0xb0,0x3b,0xc6,0x46,0x7b,0xb9,0x32,0x15,0x14,0xf6,0x9d,0xcb,0xeb,0xce,0x8f,0x69,0x05,0x80,0x02,},"\x68\x56\xcc\x71\x44\xb6\xbd\xdc\xc4\xb5\x89\x54\xd1\xa2\xe7\x10\x1d\x65\x84\xb5\xd5\xe7\x19\xa0\xae\xa0\xfb\xbd\xf2\x21\xc2\xa2\xaa\xcb\xac\xdc\x40\x20\xc5\xc8\xce\x68\x1f\xf7\x38\x1a\xcd\x60\x7b\x0f\x52\x39\x69\x23\x35\x70\x06\x55\xbe\x2d\x94\xc5\x3d\x7b\x51\x48\xe9\x2a\x2b\xc1\x63\x38\xc2\xf4\xc1\xa7\xd1\xc5\x95\xaf\x62\x2c\x24\x0c\xe5\x79\xa5\xe0\xf5\xb6\x51\xbf\x56\x25\x18\xce\xc8\xaa\x2c\xe4\xb4\xaa\xdb\x1f\x2f\xda\x6c\xf6\x29\x5b\xc3\x78\x03\xb5\x37\x7d\xab\x65\xc9\xb9\xa2\x94\x9f\xdd\x49\xbf\x9d\xdc\x8f\x96\xd2\x60\xff\x95\x1b\xf8\xe8\xcc\xf9\x82\x7e\x68\x69\xc4\x4b\xfd\x97\x33\x58\xce\xfd\xb0\x10\xdb\x5e\x1f\xe5\xdb\xd9\xf5\xd2\xb2\xca\x39\x3c\x17\xd4\x46\xf6\x37\x05\x9e\x69\x2d\x7a\x91\xaa\xdc\xc7\x68\x9f\x5f\x9e\x1b\x30\x52\x17\x5d\x9b\x6b\x20\x8f\x90\x26\x78\x7f\xdb\x66\x78\x3f\x45\x37\x2a\x24\x94\x6b\x1b\xd1\x68\x7b\xf0\xcf\xcc\x81\x74\xeb\xe4\xd3\x2e\x43\x28\x4f\xc7\x8d\x78\x44\xde\x0f\xa2\x2e\x20\x65\xe0\x75\x28\xba\xab\xaf\x01\x5c\xb3\x4d\x62\x9c\x35\x96\xad\x04\x0d\xe3\x1c\x56\x20\xeb\x26\x6d\xef\xa7\x53\x3a\xc0\x40\x19\x98\xe5\x67\x3a\x75\x43\x65\x04\x7d\xeb\xfc\xf7\xe1\x37\xa2\x0d\x16\xcd\xd6\xa5\x52\x19\x82\xf4\x44\xcf\xc3\x42\x93\x97\xc6\x41\xbd\x7e\x74\xa7\x70\xbb\x11\xfc\xb2\x94\x83\xe3\x37\xba\xe5\x16\x9e\xe8\x2d\xa9\xa9\x1a\xdf\x3a\xf6\x7c\xd8\x14\xc2\x82\x5d\x29\x01\x8e\xf0\x35\xea\x86\xf8\xde\x4c\x75\x63\xaa\xf6\x6e\x0c\x75\xd1\x7c\xa6\x8f\x49\xf0\x75\x8e\xc2\xd9\xc5\x17\x9d\x01\xaa\xed\x7d\x45\x15\xe9\x1a\x22\x2b\x0b\x06\xfb\xde\x4f\x07\xa7\xd9\xdf\x2d\xe3\xbc\xae\x37\xca\x2c\x84\x60\xc2\xa6\xb3\x74\x9e\x9b\xda\x36\xd0\x8e\x66\xbc\xc3\x56\xb3\x90\x43\x4b\x4a\x18\xcf\xa4\x5a\xf5\x57\xdc\xa3\xd8\x57\xff\x3a\xd3\x47\xcf\xb0\x7e\x23\x58\xc2\xac\xfd\x5c\xd5\x3b\x3b\x0e\xa2\xa4\x1e\xe5\xc0\x80\x2f\xd4\x73\xdb\x5f\x30\x52\x63\x34\xda\x41\xeb\x4b\xc7\x51\x83\x83\x89\x8a\x0b\x75\x07\xad\x4c\xa2\x89\xd6\x6c\x5e\x2e\xb7\x5c\xf2\x55\xdf\xf3\x12\xcb\x1e\x04\xee\xbe\xb4\x7f\x29\x30\xb9\x0d\x5e\x00\x2e\xb0"}, {{0x0b,0x2e,0xc6,0x27,0x63,0xf6,0x87,0x59,0x31,0x35,0xda,0x19,0x61,0xef,0x29,0xa2,0x88,0x08,0x96,0x96,0xd9,0x44,0xb2,0x65,0xa5,0xf9,0x68,0x93,0xcd,0x2d,0x82,0x25,},{0xc1,0xe2,0x34,0xfa,0x8b,0xc9,0x6d,0x26,0x8e,0x7a,0xad,0x02,0x8b,0x03,0xf0,0xa9,0x11,0xb6,0x97,0x71,0x5d,0xb3,0xa2,0x1c,0x2f,0xc7,0xdf,0x48,0xec,0xda,0x88,0x75,},{0xff,0x70,0x1f,0x34,0xb3,0x59,0x4d,0xe3,0xb8,0x00,0x45,0xf4,0x29,0xe5,0xe3,0x2d,0xd8,0x8d,0x60,0x51,0xd4,0x19,0x5f,0x16,0x85,0xbe,0x78,0x37,0x66,0xe8,0x01,0x19,0x36,0x8f,0x56,0xb3,0x74,0x97,0x25,0xb9,0x13,0xf1,0x22,0x3f,0x87,0xfb,0x0f,0xb2,0x4d,0x9d,0xfa,0x08,0x41,0xd6,0xa0,0xe2,0xeb,0x1f,0xdd,0xf7,0x75,0xc2,0xd2,0x05,},"\xa8\x34\x34\xc6\x86\x93\xd5\xfc\xed\x91\xbd\xa1\x02\x13\xfc\xd5\x0c\x48\x92\x0b\x90\xce\xe9\xb7\x3a\x9c\x61\x08\x1a\x09\x74\x93\x3f\x4f\xdb\x0a\x67\xe6\x71\xf8\x35\x1b\x0e\xd5\xec\x0f\xe7\xb5\xfb\x0c\x87\x58\x6f\xe5\x82\xff\xb1\xbf\xa2\xdb\x5f\xce\xdd\x33\x02\x42\x82\x34\xb2\xbb\x0e\x72\x6d\xed\xf4\x5b\x13\xa7\x0c\xd3\x5a\xb3\xe2\x99\xd1\x3f\x34\x50\x35\x08\x27\x8c\x44\x58\xee\xa5\xb7\x35\x1b\x05\x83\x6b\xda\xd5\xb0\x5f\x60\xe4\x45\xfc\x65\x73\x7a\xe2\x7d\x2e\x52\xdf\x9c\x39\xe5\xda\x02\x86\x39\x2d\x08\xff\xf7\xec\xb7\x06\x68\x20\xfc\x90\xfc\x8a\x44\xd5\x61\x65\x61\xc5\x0b\x52\x71\x47\x02\x30\x2b\xca\x58\x74\xde\x85\xdb\xa0\x45\x04\x5f\x9f\x0e\x60\x4e\xb8\x6d\x6d\x7f\xbd\x77\x5f\x72\xea\x49\x3b\x2c\x4e\xf7\xc3\xbe\x16\xdb\x2c\xa7\xe4\xd8\xbd\x79\xeb\x20\xcf\xb5\xf0\xf6\xf0\x53\x36\xb7\x5c\xc8\x6d\x21\x9f\x3b\x8f\x2e\x91\xba\x7d\x52\xb6\x4f\xdd\x6a\x66\x64\xf0\x4f\x2f\xba\xb7\x58\xcd\xf9\x84\x16\x86\x91\xc3\x2f\x53\xe8\x61\x6b\x49\xf7\x6a\xb7\xb1\x92\xb9\x00\x90\x30\x82\xcc\x89\x65\x6a\x97\x05\x80\x4c\xc9\xb9\x28\x8a\x3e\x42\x17\x09\x84\xf8\xdc\x45\x4e\x08\x64\xb9\x34\x16\x72\x68\x6a\x17\x8c\x06\x00\x50\x17\x8a\x36\xc6\xd9\x06\xb2\xce\x07\x0d\x8f\xaa\xac\xd9\xa5\x8c\x79\x4a\x5e\xa4\x10\x8b\x4a\x48\x5c\x65\x81\x1c\x2d\xca\x2e\xe7\xbb\x10\xbf\xff\xf7\x5d\x45\x86\xb9\x90\xf4\x37\x63\xa1\x6f\xbc\x0b\x48\xae\x1f\xaf\xb0\x8a\x9a\x36\xfa\x43\x26\x84\x5d\xba\x5b\xa2\xfb\xd3\x2b\xbf\x66\x50\x5c\x5e\x86\x57\xed\x01\x07\xe3\xe1\x61\x44\xef\x31\xfa\x6a\xae\x72\xe7\x74\x09\x74\x83\xf5\x48\x0a\xa4\x55\x40\x56\x8f\xd0\x8c\xba\x0d\x57\x77\x68\x00\x4f\x58\xae\x9b\x95\xbe\x37\x4e\xd7\xf0\x29\x9f\xe7\x21\x27\x5e\x47\x6e\x0b\x9a\xb7\x2d\xc0\x6e\xa3\x28\x38\x4e\x39\xbf\x3a\xc3\x31\xc6\x25\x48\x43\x12\xcd\x9b\x06\xb1\x5a\x29\x54\xd3\x3e\x7a\xab\xa6\xbe\x22\x61\x88\x6c\xa8\x11\xdb\x96\xb1\x14\x3d\x06\xdd\x6e\x0f\x3c\xba\x7a\x1a\xe9\xb9\x4e\xaf\x67\x77\x1b\xb2\xd2\x4e\x2f\x94\xde\x9c\x47\x0f\xcd\xe7\xbf\xdb\x32\xf4\x10\x19\x8b\x5a\xa9\x69\x8e\x32"}, {{0x89,0x60,0xd7,0xbe,0xe8,0xc6,0xb3,0x9c,0xa5,0x93,0x4d,0x7c,0xdd,0xd1,0x6f,0x16,0xb3,0x66,0x3e,0x6e,0x03,0xe8,0x33,0xc0,0x57,0xe2,0x18,0x1e,0x45,0x97,0xcb,0x68,},{0x43,0x40,0x90,0x95,0xd4,0xf5,0x0f,0x5e,0xdd,0xbd,0x5c,0xd4,0xd2,0x01,0x22,0x98,0xcb,0x41,0xa4,0x0e,0x99,0x49,0x2d,0x5a,0x2d,0xb0,0x8b,0xe5,0x37,0x7e,0xa1,0x83,},{0x72,0x13,0xdd,0x4a,0x79,0xfd,0x54,0xde,0xc0,0xc5,0x48,0xef,0x42,0xe6,0xca,0xe0,0x15,0xbe,0x77,0x80,0x2b,0xf5,0x15,0xcd,0x25,0x82,0x76,0x8f,0x72,0xf5,0x63,0xeb,0xb2,0xda,0x36,0xaf,0x4a,0xae,0xac,0x56,0xbb,0xff,0xc9,0x93,0x2c,0x2e,0x24,0xec,0x95,0xda,0xff,0x00,0xa5,0xf7,0xa0,0xac,0xab,0x9c,0x8b,0xd3,0xc2,0x3b,0xb4,0x0c,},"\x30\x8d\x84\xc7\xa5\xf7\x86\xe5\x63\xe5\xc1\xea\x57\xaa\xb5\xe5\x55\xc0\x09\x97\x74\x9d\x15\xae\xe3\x54\x39\xef\xa6\x45\xda\x2c\x39\x67\x70\x31\x15\xc6\xc6\x3e\xd7\xf9\x47\x85\xc5\x47\x8f\x38\x46\x7b\x86\xe7\x62\x6e\x8f\xff\xa4\xd5\x1a\x2d\xc4\x5e\x6d\xf2\xa3\x5c\xec\x99\x55\x5e\xab\xc9\xf7\xa9\x3e\x2e\x2b\x68\x94\x59\xb4\xe0\xc9\x2b\x35\x15\x62\xc4\x17\xb1\x99\x71\x13\x75\x4e\xa5\x9e\x4a\x91\x51\x07\x28\xff\x30\x71\xa2\xbb\xd1\xf4\x65\xa6\x87\xf6\x7d\xae\x95\x56\x15\x03\x1a\x8a\xd5\x51\xfe\x73\x8a\x26\x0b\xbc\x44\x6b\x48\xdc\xa1\xd9\x79\x05\x1a\xb5\x84\x08\x32\xe1\x9d\x47\x3b\x66\x62\x17\xa9\x18\x39\x80\xd6\xb2\x7e\x3d\x3c\x76\xd9\x36\x65\xba\x23\x93\xe6\xab\x1a\x42\xc3\x90\x4d\x40\x25\x93\x2d\x60\x1a\x20\x2a\x59\xa4\xc4\x9f\xdb\x77\xf0\xe0\x28\x68\x24\x7d\xe5\xaf\xdf\xaa\x1b\x89\x42\x08\xac\x00\xd7\x7c\x6b\xb5\x4c\x6b\x2a\x73\xa4\x76\x57\xe4\x4c\x85\x13\x79\x63\xb5\x75\x21\xaf\x20\x97\x62\x48\xeb\x26\x14\x82\x14\x7c\xdf\x7a\x14\x5c\x36\x43\xe2\x9e\x05\x88\xbf\xda\xe6\xa0\x82\x90\x48\x53\xce\x5a\x10\xd2\x49\x70\xeb\xdf\xb7\xf5\x9d\x5e\xfd\xd6\xa5\xe7\xe0\xd2\x87\x97\x1c\x84\x6a\xcd\x54\xd8\x4d\xd4\x54\x68\xa4\x11\x0b\xab\x6e\xf8\xd9\xa5\xb4\xb2\x42\x67\x88\x90\x0b\x7e\x1a\xdf\xe0\x62\x43\x44\xf9\x8f\xe5\x9e\xf8\xa1\xe6\xc4\x05\xb3\x44\xeb\x97\xbb\x20\x47\x73\x74\x4b\x6a\x2d\x8c\x6e\x65\xd1\x7c\xea\x07\xde\x03\xb7\xf0\xfe\x49\xf1\xa5\x5c\x33\xd5\xf1\x5c\xe5\x5d\xf7\xc9\x56\x1b\x25\x1c\x6a\xc8\x07\xa9\x25\x53\xe1\xce\x91\x70\x12\xdc\xcf\xd6\x9e\x7d\xbd\x03\x8c\x7e\xee\xca\xe9\x86\x23\xf1\x8f\xbb\x65\x0e\x22\x18\xa0\xbc\x0f\xff\x43\xa7\x5a\x11\x64\x48\xbb\x73\x62\xf5\x27\xee\x6b\xc8\xe1\x07\x61\xcc\xcf\x9b\xcf\xc0\xd0\x00\xf2\x12\x7b\x4c\xc1\x92\x11\xd0\x95\xa0\xbd\xaa\x4e\x4b\xe4\x51\x9e\x6c\x84\x45\xea\xb9\xb3\x14\x4a\x45\xca\xb9\x99\x61\x35\xbf\x7f\x75\xa7\x8d\x22\x27\x59\x00\xf4\xce\x1f\x0a\x9e\xac\x13\x63\x64\x10\x30\x62\x89\x3d\xad\x43\x90\x42\x2b\x77\xe5\xf5\xd1\xd9\x4d\x70\x29\xc6\x09\x7b\x35\xca\x64\xa7\xa4\x76\xfc\xc7"}, {{0xef,0x6b,0x9b,0x51,0xfd,0x4f,0x85,0x86,0xca,0x62,0x65,0x8e,0x04,0x2f,0xc0,0x9a,0x83,0xb9,0x43,0x03,0x35,0x26,0xff,0xc3,0x26,0xc6,0x5e,0xb3,0xa5,0xfb,0x59,0x4b,},{0x1d,0x6e,0xec,0xe8,0x05,0xe0,0x88,0x78,0x21,0x87,0x6b,0x7e,0xd6,0xed,0x5b,0x07,0x14,0xd6,0x46,0xfb,0xec,0xda,0x38,0x76,0x4f,0x94,0xc8,0x15,0x5e,0x61,0xd0,0x04,},{0x71,0xd1,0x71,0x07,0x1c,0xd0,0xfe,0xa1,0xc6,0xa9,0xcf,0xad,0x1f,0x7f,0xd8,0x35,0xe8,0x5f,0xf9,0x06,0x77,0x8b,0xc6,0x34,0x5a,0x4d,0xec,0x43,0x13,0xec,0xc2,0xbf,0xf7,0x55,0xa7,0x17,0xeb,0xd9,0x12,0xa5,0xe0,0x28,0x40,0xac,0x07,0x38,0x42,0xf9,0xbf,0xca,0xa5,0x89,0x13,0xe2,0x60,0xe3,0xc7,0x33,0x93,0xd3,0x66,0x85,0xc7,0x0e,},"\xa8\xf3\xf1\x96\x65\xde\x23\x90\xd5\xcc\x52\xb0\x64\xb4\x85\x12\x73\x67\x74\x86\xd8\xf5\x56\x3b\xb7\xc9\x5f\xa9\x4d\xb3\x35\x61\x61\xee\x62\x22\x21\xf1\x0c\xbb\x1f\xa1\x95\xaa\xc7\x23\x1e\xa7\x16\xd7\x4b\x46\xb3\x7b\xc8\x5a\x70\xdb\xa3\xdf\xaa\x16\x75\x21\x7b\x35\x11\x99\xe7\x4a\x97\x10\x28\xf7\x29\xb7\xae\x2b\x74\xae\x8c\x6b\x3a\x06\x79\xc3\xe3\x29\x68\x02\x84\x4a\xd5\xbb\xa3\x43\xf6\xf9\xf7\xc4\x66\x1b\x4a\x29\xb4\x4f\x17\xe8\x9e\x11\x4f\xb2\x20\xe9\x84\xcd\x98\x0e\x94\xc3\xd2\xbf\x98\x73\xe0\x60\x5c\x92\x30\x17\x44\xa3\x03\x5e\xf0\x46\xba\xd2\x66\x6b\x5c\x63\xeb\xec\xf9\x3c\xc1\x40\x29\x19\x46\xc0\xfa\x17\x03\x40\xce\x39\x50\x92\xde\xed\x79\x84\x13\x52\xfb\xfe\xe0\x3a\x92\x7e\xb4\x58\xf2\xa6\x33\xed\x32\x71\x65\x2f\x5b\x0f\x99\x60\xcd\xf9\x01\x5d\x56\xfd\xab\xd8\x9e\xe7\x1e\x25\x9a\xf6\xeb\x51\x4b\x4c\x1b\xd4\xa6\x66\xf5\xb5\xa3\x5c\x90\xf3\x5b\x14\x94\x57\xaf\x29\x44\xdd\x0a\xa8\xd9\xb5\x42\x28\x3a\x7e\x54\x12\xb7\x75\xe4\x21\xd2\x12\x6f\x89\xbe\xbc\x3c\xa3\x7f\x73\x07\x16\x21\xf1\x32\x1e\xee\x52\xe9\x69\x04\x86\xa3\x3c\xd7\xff\x9c\x99\x67\xfb\x65\xee\x4e\x90\x7b\x6b\x85\x22\x11\x47\x3d\x21\xe9\xd9\x1a\x93\x36\x2a\xc7\x61\x76\x0e\x8c\x7b\xbe\xa4\x86\xc3\xd6\x05\xf9\xe1\x1b\x86\x13\x68\x19\xa7\xab\x3f\x32\xf1\x3f\xfc\xa1\x68\x17\xfe\xd1\x97\xff\x88\x0b\x4d\x6d\x9a\x80\x8f\x7f\x87\x87\x63\xa0\x45\x72\x8d\xf7\x2f\xaa\xa9\x63\xe4\xcb\x1c\x09\xcc\x2b\x2d\xa9\x20\x28\x0c\x83\x66\xb7\xd1\x8b\xf8\x97\x2d\xf1\x6c\xc2\x34\x48\xfb\xe6\xb2\xe6\xe1\x6c\xbb\xf0\x74\x51\x29\x85\x40\x53\x18\x96\x37\xce\x11\x5d\x23\x98\x43\x3c\x15\xd6\xf1\x16\xa2\x05\x33\x48\x24\xaf\x28\x2f\xa7\x58\x49\x4c\x47\x86\x8e\xa8\xf4\xdf\xad\xc7\x05\xe8\x61\xaa\xd2\xeb\x8e\xf3\xdb\xbe\xd2\xa4\x56\x9e\x15\x83\x4a\x76\x0c\xce\x0c\xbb\xc8\x4b\x28\x9e\x77\x9b\x98\x83\x46\xb9\x06\x9c\x74\x4c\x97\xab\x2b\xf4\x2b\x08\x6d\x2f\xb0\xa4\x11\xf5\xce\x99\xf0\x81\x9a\x30\x86\xb4\xfe\x9d\x96\xc7\xc9\x90\x8d\xce\x28\xdf\x1d\xdd\x30\xf3\x50\x1d\xda\xf7\x81\x10\x73\x4f\x9d\xcd\xfe\xc3"}, {{0xba,0xd4,0x7c,0xd4,0xbd,0x89,0x84,0x90,0x67,0xcc,0xe1,0xe6,0x3c,0x3d,0x91,0xe9,0xb7,0x87,0xae,0xa8,0x58,0x4e,0xdb,0x07,0xf3,0x45,0x1e,0xf6,0x7e,0x7b,0xd7,0x9b,},{0xab,0x0c,0xe9,0xba,0x1d,0x29,0xbd,0xfb,0x85,0xa0,0xe6,0x6b,0x76,0xb5,0xe2,0xe0,0x5f,0xf7,0x32,0x56,0x9e,0x43,0x75,0xcc,0xd7,0x50,0x98,0xe9,0xe7,0x1d,0x17,0xbf,},{0xe5,0x72,0x4a,0x1d,0xd4,0x63,0xa9,0x7d,0x12,0x22,0xc5,0x18,0xc4,0x92,0x5d,0x32,0x22,0x02,0xd1,0x0f,0x04,0xcd,0x07,0x8e,0x77,0x1e,0x0f,0xb3,0x95,0x1d,0xbc,0x14,0x93,0xa2,0x34,0x46,0x07,0x54,0xc3,0xaa,0xe3,0xdf,0x93,0x00,0x8d,0xbb,0xfb,0x31,0x0c,0x99,0x59,0x2b,0xed,0xe7,0x35,0xa4,0xae,0xab,0x03,0x23,0xa1,0x21,0x0d,0x0e,},"\xb5\xa6\x1e\x19\xe4\x86\x3e\x0b\xb5\xf3\xfa\xb6\xc4\x97\x0d\x87\x85\x96\x89\x55\x21\xfa\x1e\x7f\x67\x8c\xaf\xa2\xde\x53\x32\x2f\xd4\x58\xa9\x8a\xa6\xe3\x58\x05\x42\x9f\x65\x12\x91\xb9\x5b\xd9\x95\x0e\x15\x5f\x3a\xda\x0b\x60\x91\x59\xa4\xab\xda\x59\x90\xc0\x4b\xc2\xe7\x64\x42\x2f\xb4\x9e\xf4\x2f\x12\x52\x9f\xf6\xf6\xa8\x20\x29\xff\x01\x85\x66\x2e\x65\x8f\x83\xc5\x46\xee\xd0\x9f\x06\xb5\xa6\x8e\x85\x7c\xda\xd0\xeb\x9e\xc4\xee\xcb\xfd\x88\xf3\x4b\xc8\x09\x90\xf8\x64\x4a\x9b\xfd\xde\x1d\x9f\x3a\x90\xd5\x57\xa8\xb8\x28\xd5\xce\x06\xa6\x4e\x3b\x23\x85\x82\xbb\x4c\xbe\xba\x30\xed\xc4\x9e\x81\x22\xc5\x5e\x95\xba\xdc\xf5\x02\xcc\x56\x78\x69\xc0\x9e\x9f\x46\xc6\xff\x3f\x68\x78\x98\x6b\x1d\xe0\x0b\x72\xa1\x85\x80\x46\xfc\xd3\xa6\xe9\xcd\xaf\x5b\x07\x3c\x56\xf2\x02\x50\x63\xa2\xd1\x78\xbd\x4c\x1e\x8c\xbc\x1e\x6e\x67\x1a\xa9\x7f\xb2\xcb\x4c\xc8\xa6\x2c\x20\xbe\x41\xc7\x76\x37\x2c\x8e\x7b\xe6\x3b\x48\x2e\x6c\x63\xfa\x85\xd7\xcf\xfb\xc1\xb2\x82\x0b\xae\x1f\xc1\x28\x34\x3a\x1e\x20\xfc\xf1\xbc\x35\x02\xee\xe8\x13\x58\xcc\x9a\x74\xc7\x2a\xf6\x35\x30\xf9\x6a\x25\xa6\x04\x64\x8f\xf5\x70\xdf\x1e\xb8\x9d\x1f\xdd\xba\xb2\x86\x79\xba\x2e\x9b\x41\x97\x7e\x9a\x9c\x1c\xae\xcd\xbf\xc3\x61\xa1\xdd\x05\x5e\xc5\x16\x20\xa9\xbb\xdb\xba\xf7\x18\xc9\xcc\x13\x6d\x20\x07\x71\x03\x99\x53\x6d\x13\x33\x24\x85\xec\x38\x87\x97\x85\xe0\xc9\xce\x99\x15\xa8\x02\x51\x37\x39\x90\xa5\x9b\xce\x44\x03\x26\x03\x1a\xb1\xb4\x58\xbf\xa5\xb8\xa4\x79\x3d\xa4\xee\x11\xab\x7a\xf2\x0d\xe2\xa1\x18\xc9\xae\x52\x1a\x41\x7b\x68\x20\x7f\xc8\x85\xe1\x09\xd8\x46\x3e\x9f\x02\x27\x87\xcc\x73\x0d\xb0\xb1\xfa\xae\xd2\x57\xbe\xd9\x01\x71\x08\x85\xb7\x4e\x99\x4f\x54\xf6\xf2\xae\xb6\x4f\x0f\x60\xb5\x9e\xfb\xf2\xe3\xbb\x65\x15\x42\x46\x03\xa1\x13\xc0\xb8\xa3\x1b\xa3\xc1\xe9\xa9\xb8\x11\x8c\x87\xec\x69\x49\xb7\x5f\x49\x62\x7e\xa7\xb1\x32\x88\x89\x39\x11\x04\xd4\xf4\xa3\x89\x2c\xf0\x0f\x26\xa7\x3c\xda\x2a\x40\xf9\xb7\x15\x7a\xfc\x40\x66\x7f\x4a\x04\xf6\x47\xdb\xf9\x39\x06\xb8\x4c\x9a\x35\x16\x4e\x1b\xc9\x02"}, {{0xca,0xba,0x8e,0x05,0x33,0x11,0x3a,0x4b,0xe1,0x73,0x40,0x8b,0xa8,0x3c,0x0d,0xb7,0x42,0x60,0x80,0x2f,0x91,0x86,0xc3,0x91,0x40,0x26,0x55,0xac,0xde,0x60,0x15,0xcb,},{0x2d,0x7b,0xef,0x61,0x64,0xc2,0x79,0xfa,0x10,0x28,0xa9,0x78,0x8e,0x3e,0x8e,0xe8,0xac,0x15,0xed,0xcf,0x92,0xa5,0x85,0x50,0x62,0x95,0x23,0x10,0xb4,0x68,0x45,0x47,},{0xec,0x35,0xec,0x32,0xc8,0xa4,0x00,0x88,0x27,0xe1,0x78,0x49,0x2b,0x3b,0x8b,0xee,0x22,0xa4,0x95,0x4f,0xc6,0xb2,0x5f,0x4f,0x22,0x5d,0xd7,0xed,0x23,0x69,0x89,0x00,0xde,0x81,0x56,0x75,0x6a,0x8e,0xdc,0x35,0xc5,0x1d,0x10,0xf8,0x2b,0x83,0x0a,0x2a,0x65,0x96,0x76,0xea,0xc9,0x11,0xf9,0x60,0x24,0x47,0x66,0xe0,0xc3,0xc6,0x07,0x05,},"\x24\x13\xa3\x2b\xca\x5c\xe6\xe2\x30\xe5\x65\xeb\x85\x84\x93\xd5\xd0\x4e\x6d\x2e\x2a\x7a\xb1\xf8\x9a\x3b\x42\x33\x11\x67\x6b\xfa\x93\xc6\x7d\xaa\xfd\x1c\xfc\x71\x09\xe0\x40\xba\xc5\x2c\xbf\xe0\x7c\x28\x28\x0b\xb6\xac\xf6\xe3\xa3\x10\x73\xda\xb2\x96\x53\x78\xdd\x77\xf6\x1f\xe9\x24\x71\x35\xc1\xa6\x31\xb7\x9a\xd6\x68\xc9\xea\x1c\xd4\x11\x2d\x8d\x3a\x06\x4c\xc2\x1d\xf3\x2a\xea\xc7\xdd\x71\x8b\x09\x1f\xb6\x91\x5b\x8b\xc0\x63\xbb\x58\x15\xc3\x76\xe0\x14\x76\x31\x2a\x2e\x54\x33\x41\x7a\x7a\x93\x15\xd6\x59\x99\xb0\x2f\xf4\x64\xa4\x74\xa5\x97\xe5\x39\x88\x77\x36\x70\xec\xa4\x6a\x6e\x26\xcf\x96\xe9\x48\x8e\x9e\x63\x44\xbc\x78\x3d\xdf\xb5\x35\xe7\x6b\xb3\xb9\xa6\x03\xff\x4c\x59\xc7\xdb\xe2\xd8\xb6\x19\x8d\x5b\x24\x49\x0b\x4e\xa9\x6c\x95\x95\x9f\xfb\xf3\xd8\x21\x8e\x76\x0d\xaf\x20\xe0\x1e\x2f\x36\xc8\x4b\xb0\x97\x11\x5a\xbd\xde\xe9\x2b\xed\x82\xd1\x6b\x15\xa9\xe1\x92\xe9\x89\x3a\xc6\x38\x46\x1d\xf5\x07\x20\x7b\x0c\xf5\x95\x88\x4d\x8a\x99\xfb\x9c\x70\x45\xf9\xbf\xf7\xb7\x3f\x00\xca\x3f\xd5\x95\xa5\xce\xc2\x92\xad\xb4\x58\xbd\x94\x63\xbe\x12\x04\xd0\x16\x78\xd2\xf4\x38\x9b\x87\x20\x11\x5f\xa5\x97\xc4\x02\xb4\xff\x69\x4b\x71\xce\x4f\x3d\x33\x0d\x5e\x2f\x3c\x3a\xd6\xd9\x6a\x9b\x34\x39\x23\x0f\xc5\x3a\x44\x79\x4c\xda\x59\x55\x57\xc4\x06\xca\x15\x89\xbc\x7b\xe8\x1e\x2d\x79\x63\x60\x33\x25\x3f\xa7\xbd\xd6\x00\xc6\x7f\xc5\x59\x36\xbd\x96\xce\x04\x28\xc3\xeb\x97\xba\xd1\xde\x0a\x5f\xbb\x9b\x67\x51\x57\xde\x5f\x18\xbc\x62\xa7\xc2\x2c\x94\x83\xe2\x80\x2e\x67\x9b\x5b\x8f\x89\xdb\x0f\xc3\x7f\x7c\x71\x50\xad\x5a\xc8\x72\x2c\xeb\x99\x9b\x24\x35\xe6\x99\x72\x17\x09\x23\x36\xef\x1c\x8a\x22\x92\xda\xb9\xa4\x6f\xf8\xa9\xe1\x0d\x33\x55\x76\x5c\xac\x9d\x65\x98\x77\x0f\x4f\x01\xea\x63\x91\x25\xfd\x03\x16\x09\xdd\x1a\x50\x7d\x96\x28\x0c\x7d\x01\xa3\xee\x98\x7e\x9b\x21\x0e\xc8\x74\x4c\xd4\x8c\x74\xf8\xaf\xee\x96\x1e\x8e\xf2\x21\xf8\x26\xa1\xfe\x6e\x7d\xf0\xcb\x15\xad\x7c\x7e\xf4\xa9\x1f\x9d\x0f\x4c\x2e\x1b\xde\xa6\x35\xd2\x75\xfa\xc8\xc4\xbc\x06\x01\xf4\x90\xdb\xdb\xc7\x34"}, {{0x9b,0xf3,0xfb,0xc7,0x30,0x8b,0x46,0xf6,0x03,0x6b,0xad,0xe0,0xc3,0xca,0x19,0x9f,0xac,0x66,0x2b,0x07,0xf1,0x03,0xbf,0x75,0x18,0x1d,0x52,0xba,0x6a,0x58,0xbe,0x05,},{0x2f,0x6a,0xc6,0xfc,0x33,0xbc,0x06,0x0c,0x1d,0xc3,0xcb,0x9d,0x1a,0x2b,0x91,0x15,0x84,0x5a,0xdd,0xb1,0x6c,0x4b,0x84,0xbe,0x37,0xed,0x33,0xad,0xb3,0xb3,0xd3,0xa8,},{0x0c,0x31,0x36,0xe0,0x1f,0x9b,0xcd,0x99,0xe1,0x0d,0x3d,0x12,0x4b,0x0c,0xdb,0x07,0x72,0xbe,0xc1,0x8a,0x86,0x4b,0xe8,0x1b,0xd1,0xda,0xa4,0x4d,0x81,0x8c,0x3d,0x47,0x0d,0xfa,0xa8,0xab,0x6e,0x9a,0x76,0x1c,0xf0,0x3f,0x93,0xef,0x9c,0xc7,0x82,0x91,0x09,0x6e,0xd6,0xd1,0x0c,0x08,0xfa,0x2f,0xba,0x3b,0xac,0x04,0xdd,0xe2,0x0f,0x0c,},"\xd6\x5e\x36\xa6\xa3\x81\x95\xec\xb9\x1d\xe3\xc8\x48\xb5\x1f\x63\x92\x45\xfa\x2b\xab\xa8\xa6\xf8\x59\x47\x15\x9d\xec\x0e\xd3\xfa\xe8\x0c\x5a\x0f\x8c\x66\xff\x24\x79\x3c\x89\xc0\xc6\x87\x54\x3b\xc6\x33\x54\x7a\x1f\x37\xf7\x30\xd9\x70\x12\xeb\xbd\xc7\xac\x33\x9c\x48\x90\xc0\x85\x6b\xbf\xe2\xba\x29\xb2\x5a\x7a\xa6\xb0\x89\xc0\x33\xfe\xcb\x76\xdb\x62\xdd\x3c\x00\xf6\x42\x1b\x9e\x76\xdd\x0e\xa3\x66\xeb\x2d\x4a\x05\x2e\xe6\xcc\x73\x6e\x38\x19\x19\x1d\x5a\xd7\xa6\x6d\x2b\xe0\x42\xcc\x65\x39\xe5\xf3\x56\x52\xb1\x55\xa7\x27\xf3\x88\x8d\x93\xf9\x3a\x91\x02\x59\x8f\x75\x38\xa9\xab\x7c\x77\x7e\xec\x79\x42\x6a\x60\x75\xd6\xf3\x8d\x64\xc4\x85\x52\x0f\x64\x13\xff\x4d\x35\x8a\x8a\x9c\xbd\xab\x01\xad\xf4\xdb\x02\xad\xae\xa2\x64\x94\xd1\xf5\xd6\x17\x63\x7f\x27\x7f\x8b\x0e\x6e\x7e\x61\xe2\xee\xcc\xdd\x33\x7d\xe2\xba\xf0\xca\x26\x4c\x14\xc8\xcb\x83\x68\x00\x0b\x9c\x71\x43\x85\xf4\x13\x73\x7d\x68\x16\xe2\x12\xca\xe2\xae\xcf\xff\xc3\x2f\xd1\x6d\x46\xc3\xec\xee\x6a\xb0\x74\xc0\xd7\x68\xbd\xfe\x99\xb8\x6c\xbb\xc8\xdf\x9c\x47\xcd\x58\x6d\x46\x58\x71\x26\x8d\x4a\x9d\x1c\x87\x72\x36\xab\x78\xf8\x85\x9c\x11\x4e\x25\x1c\xab\xc4\xbe\x0f\x8b\xc2\x5d\x14\x8c\x5f\x54\x3e\x29\x07\x45\xd1\x18\x03\xe4\x9f\x5b\x53\x19\x3f\xe3\x99\x69\xc0\x39\xb3\xf2\x49\xb3\x2f\x2b\x85\x98\xb6\xac\xf4\xed\x64\xd5\x75\x2b\xb7\x72\xff\x4e\xe0\x0c\xe0\xf8\x5e\xcb\xb4\xcf\xc4\xce\x07\xda\xf2\x80\x98\x68\xc2\x90\x3b\x78\x1e\x12\xa2\x74\x10\x5f\x06\x18\x10\x29\xe4\x7f\x2b\xfb\x21\xf4\x94\x80\xaa\x1e\x44\x47\x15\xc0\xb9\xff\x07\xea\xd8\x89\x75\xd9\x35\x85\xd2\xff\x42\x48\x32\xa9\x78\x3d\x94\x90\x6a\x60\xf8\x77\xae\x1c\x85\xff\x15\x31\x7b\xad\xca\x1e\x61\x31\x74\x33\xc7\xce\x96\x27\x9b\x67\x8e\xc9\xd1\x74\xdd\x08\x70\x08\x0b\x23\x41\x54\xf6\x26\xa5\x34\x62\xcf\xd5\x47\x84\x2e\xab\x87\x05\x60\x5b\x8e\xe8\x85\x72\x9e\xe7\x8d\x18\x33\xaa\x43\xf5\x5a\xc2\x27\x31\x98\x9f\xde\xda\x7d\xc5\xfa\x9c\x01\x98\x5f\x26\x61\xe6\xc7\x32\x6d\x34\x6e\x6d\xb2\x7e\x6f\x92\x1f\xae\x7c\x93\xa2\x17\x0e\x10\xdd\x0c\x46\x0b\xdc"}, {{0x64,0xe8,0x93,0x04,0xa3,0x35,0xe9,0x03,0xcb,0x36,0xc0,0xbd,0xf1,0xa6,0x41,0x2e,0xf3,0x68,0x46,0x80,0x06,0xb7,0x3d,0x3d,0x2d,0x61,0xcb,0x03,0x0c,0xc5,0xf8,0xd1,},{0xa1,0x80,0xef,0x3a,0x66,0x1c,0x3c,0x47,0x9d,0x5f,0x69,0x80,0x7c,0x90,0x27,0x48,0xe3,0x5e,0x7f,0x72,0x51,0x21,0xe3,0x7a,0x5d,0x91,0xb8,0xbe,0xc8,0x8d,0x83,0xa6,},{0x92,0xeb,0x44,0x54,0x81,0x40,0x01,0xec,0xfc,0x18,0x02,0x5d,0x64,0x21,0xf6,0x46,0x45,0xa5,0xbc,0xbb,0x5c,0xb8,0xfd,0x85,0xc1,0x4d,0x77,0x26,0x17,0xc5,0x03,0xe8,0xbe,0x7d,0x3b,0xcf,0x11,0x7f,0x5e,0x68,0x01,0xd1,0xc3,0xb9,0x6f,0x90,0x90,0xa6,0x6d,0xdc,0x67,0xf8,0xcf,0x8f,0xf0,0xf1,0xc1,0x25,0xb1,0x6b,0x15,0xe2,0xce,0x07,},"\x2f\x51\x07\x4d\x98\x1b\xda\xfa\xfb\x02\xa4\x0f\xe8\x26\xc4\x5f\x31\x71\xc1\xb3\x18\x4d\x8c\x26\x0b\x82\xb8\x41\x1f\xc6\x25\xcb\x02\xcc\xfe\x75\x5d\xc2\x9d\xc7\x89\x5b\xf7\x59\xe6\x1b\x24\x50\xda\x1a\x65\x6a\x38\xd4\xf7\x0d\x2e\xe7\x48\xc5\x18\xc6\x42\x03\x06\xe5\xf0\x1e\xc7\xa0\xff\xe0\xe9\xdc\xeb\x93\xf6\xc0\x77\xb1\x26\x62\x88\x15\x84\xf9\x8c\xe6\xab\x94\x5f\x87\xfc\x6d\x12\x3c\x45\xd6\xcd\xfd\x82\x37\xa1\xce\x36\x35\xb6\x23\xa7\x9d\x02\x0d\xf4\x4c\x74\xb8\x9a\xc1\x4a\x32\x1f\xbf\x33\xa8\xc0\xa2\x55\x9f\xea\x1c\x2b\x15\x60\x76\xb8\x13\x90\x8f\x84\x2e\xbe\x4c\x2b\x94\x90\x89\xe5\x2b\x1a\xe4\x0d\xc6\xe4\xb2\xab\xbc\x43\x9a\x0b\xf7\x23\x69\x67\x9a\xab\x6f\x4c\x00\x01\x8b\xe1\x47\xf7\xc0\xa6\x7b\x96\x79\xee\x88\xa5\x38\x19\xc4\x9f\x7b\x67\x5e\x30\xa8\xb5\xaf\x39\x66\x1e\xe8\xdb\x21\x01\x04\x11\x29\x49\x68\xf8\x8e\x5d\x60\x4d\x0d\x88\xd7\x6a\x7e\x48\x64\xfa\xd3\xa5\x6f\x5f\x62\x4b\xa1\xb3\x4e\xa9\xcb\x72\x08\x50\xaa\xd3\xbd\x4f\x0a\x88\x2a\x7d\x25\xfb\xec\x2b\xb7\xca\x86\xda\x61\x6d\xa9\x6c\x15\x62\xc6\xd6\xa1\xab\xcc\x64\x1e\x1b\x58\xb2\xc1\x78\xe1\xc3\xbc\x8a\x3b\x36\xec\x9e\x14\x4d\xd2\xe7\x5b\x0b\xc8\xc0\x8c\xcb\x0d\x6e\x34\x27\xb0\x32\x2b\x3d\x6a\xb9\x3f\x3f\x60\xb9\xcc\x5b\x61\xda\xd0\x23\x85\xa1\x49\x49\xf9\xb8\x7a\x8e\x3a\xf1\xe0\xe0\xfa\xb7\xa9\xa9\x28\xc7\x53\xfc\x61\x10\x44\x4a\xf7\xcc\xaf\x80\x27\xed\x64\x1b\x9e\xd8\x7f\xa5\xd8\xe1\xf7\x6c\xae\x46\x5d\x57\xa7\x0d\xad\x9e\xbf\xdd\x3c\xe7\x57\x6a\xc4\xde\x89\xd9\x8f\x42\xe2\x82\xad\x87\xad\x6a\x50\x42\x57\x7c\xbb\xbc\x4d\x95\x1e\x2a\x86\x76\xfe\xdc\x8c\xb1\xb1\xbd\xf7\x6c\x3a\x38\x84\x63\x85\xa8\x5a\xa2\x47\x06\xc2\x0a\x8b\x38\x46\x5f\xe2\xae\x0e\x41\xf7\x8e\x61\x4b\x8e\x96\x42\xfe\x24\x71\xa9\x01\x57\x47\xdb\x97\x6e\x0c\x78\x48\xc2\x3f\xf3\xf4\x17\xcb\x05\xa8\xd5\xef\x40\x13\x0a\xdf\x85\x5c\x99\x8a\x62\x10\x4d\x7e\x2f\xb7\xc0\xf9\xaa\x2a\x49\x60\x75\x62\x3c\xed\x2c\x0f\x7e\xec\x10\x14\x7f\xf9\x60\x8a\x8a\x04\x2e\xf9\x81\x17\x45\x9b\x93\x83\x7f\xd1\xb8\xd5\xef\x03\x97\x8e\xad\xa7\x4c\xac"}, {{0x6f,0x63,0x43,0x87,0xca,0x2c,0x0c,0xb1,0x67,0xa7,0x40,0xd6,0xaf,0xd8,0x9e,0x2a,0x28,0xf5,0x30,0x71,0x84,0xe8,0x1c,0xba,0x3c,0x03,0x70,0x46,0xa5,0xed,0xe2,0x3c,},{0x01,0x1f,0x2a,0x9a,0x11,0x1c,0x38,0xf3,0x49,0x0c,0xad,0x16,0x85,0xbe,0x78,0xec,0xee,0xdc,0x6f,0xac,0x4a,0x32,0x21,0x30,0x1c,0x69,0xc8,0x4b,0x1e,0xc7,0xb3,0xa7,},{0xfd,0x17,0xc6,0x18,0xcd,0xbb,0x5d,0x45,0x9e,0xa2,0xac,0xa8,0x86,0xf0,0x51,0x2c,0x62,0x32,0x51,0x28,0x4a,0xae,0x3a,0x83,0xeb,0x5d,0x7f,0x60,0xda,0x1d,0x9b,0x2b,0xa0,0x83,0xc4,0x55,0xa5,0xe2,0x58,0x3a,0x3c,0xba,0x73,0x6e,0x7b,0x96,0x1b,0xa1,0x9c,0x1c,0xc8,0xdd,0x90,0x74,0x5d,0xa8,0x2a,0x15,0xdf,0xc6,0x62,0xe8,0xe1,0x0d,},"\x86\x5c\x20\xa9\x4a\xc3\xf2\xe3\xbd\x5c\xb8\x5b\xec\x9d\x33\x72\x66\x71\xfe\x01\xf9\xc5\x37\x01\x7d\x59\xc8\xd5\x10\x6e\x43\x36\x0b\xf7\x6f\xc0\x61\x86\x70\x59\x80\xc8\xa8\x7b\xa3\x63\x3a\x4a\x17\x04\x26\xec\xc0\xde\xfb\x6d\xb2\x67\x0f\x5f\x59\x25\x33\x77\x4c\xda\x50\x05\x2a\xe5\x97\xd4\x8d\xea\xcc\x26\x37\x06\x3b\xfd\x51\x9f\x2e\x79\xba\xc8\x17\x75\xbe\xcc\xb1\xab\x2f\x5b\x39\x71\x2e\x2e\x82\x94\x69\xb7\x5a\x2d\x2d\xbd\x08\xaa\x6d\x24\x72\x34\x04\xb2\x5e\xb9\x48\xa4\x83\x4c\x55\x24\x6c\x80\x79\xa8\x2e\xc6\x43\x54\xe8\xc2\x38\x8f\x8c\x5a\x61\x6b\x3c\xdc\x37\x1e\x62\x63\xfa\xbc\x9f\x60\x99\x21\x9e\x86\x15\x85\xfe\x82\xa6\x7d\x61\x0d\xd1\xeb\x5c\x81\xc9\x6b\x5c\xb3\x54\xa6\x89\xfd\x8a\xac\x8d\xb7\x6c\x43\x3f\x0c\xb0\xb3\x1c\xf1\xd8\x55\xb6\xa3\x0a\x3d\x2a\x21\x2e\x9b\x4f\x7d\x7a\xfe\x61\x99\x51\xf9\x8d\x2f\x1b\xa2\xc1\x01\x08\x5b\xa8\x1f\x49\xb3\x60\x37\xcd\x64\x57\xa7\xea\xa8\xf4\xf3\xbe\xdf\x68\xd0\x9f\xc9\xfa\x25\xa9\xd7\x54\xdb\x65\x36\x02\x85\x41\x2d\x1a\x6d\xa5\x37\x88\x90\x5f\xcf\x4e\xfa\x8a\x80\xcd\x86\xca\x48\xb8\x45\x63\x3d\x8c\x31\xc2\xae\x06\xf1\x6c\x4c\x6b\xbb\xe9\xcd\x1a\xfb\x59\xe1\x01\xbe\x50\xe0\x35\x35\xdd\x8a\x65\xe4\x5b\xba\x46\xd4\x5c\xb1\x4b\xad\xfc\x8e\x93\xab\x52\x67\xf4\xe4\x92\xab\x1f\x9a\x95\xe6\x1f\xca\xb8\x1c\xbf\x2b\xd8\x67\xa3\xec\x7b\x4b\xaa\x18\x9a\x0f\x08\x56\x70\x75\x59\x61\x29\xdc\xf9\xff\x1c\x50\x2d\x32\x79\xe8\xaa\x6c\xe5\x6e\xaf\x13\x45\x82\xa9\xe4\x30\xa5\xaa\x8c\xa1\x0c\x3d\xa8\xbc\x79\x3d\x02\x56\xad\x19\xae\xa7\x14\x9f\x0e\xa7\xea\x95\xfa\xcf\xac\x1c\x5c\xfd\x29\xd7\xa3\xfe\x1a\x41\x79\x75\x73\x9e\x14\xda\x8e\xdc\x81\x99\x00\x47\x2c\xa8\xc6\x97\x16\x32\x8e\x8a\x29\x9f\x97\x4e\xdf\xf7\x41\xaa\xbc\x1c\x07\x4a\x76\x1b\x3e\xc8\x76\x1d\xda\x2e\x7e\xed\x7a\xf3\x3e\xf0\x04\x09\x84\x9d\x41\x54\x97\xc5\xed\x5d\xfa\xa2\x25\x9a\x31\xd0\x76\x39\x81\x70\xb2\xd9\xd2\x10\x20\x8b\x4a\x4c\x7d\xb8\xc6\x26\xd1\xc5\x33\x56\x2a\x1f\x95\x48\x9f\x98\x19\xe4\x98\x5f\xc4\xe1\xd1\xa7\x07\xbe\x5e\x82\xb0\x05\x48\x1d\x86\x37\x7f\x42\x4e"}, {{0x4b,0x2e,0x1a,0xe6,0x0f,0xa5,0xd3,0x83,0xba,0xba,0x54,0xed,0xc1,0x68,0xb9,0xb0,0x5e,0x0d,0x05,0xee,0x9c,0x18,0x13,0x21,0xdb,0xfd,0xdd,0x19,0x83,0x95,0x91,0x54,},{0x36,0xc0,0x20,0xb1,0x85,0x52,0x34,0x56,0x19,0xef,0x88,0x37,0xeb,0x8d,0x54,0x94,0x84,0x0e,0x85,0xf4,0x68,0x09,0x34,0x3b,0x4d,0x6f,0x40,0x61,0x25,0xda,0x55,0x7d,},{0x22,0x20,0x11,0x9e,0x83,0xd6,0x9a,0x6a,0x3e,0xed,0x95,0xfa,0x16,0x6d,0x1d,0x11,0x28,0xa3,0xf2,0x32,0xca,0x1b,0x78,0xbc,0x94,0xb4,0xd4,0x76,0xc4,0x77,0x94,0x43,0x61,0x4b,0x87,0x72,0xaa,0x22,0x32,0xcb,0x07,0x20,0xa0,0x55,0xeb,0x71,0xd8,0x40,0x7f,0x3a,0xb1,0x9b,0xaa,0x1d,0x96,0x2c,0x05,0x2c,0x84,0xc0,0xbd,0x58,0x96,0x08,},"\xfa\xb9\x8b\x2b\xbf\x86\xae\xb0\x50\x86\x81\x2a\x4b\x00\x49\xa1\x04\x2a\xbb\x76\xdf\x9c\xd2\x90\x87\x55\x70\x63\x03\xef\xed\xb1\xad\x21\xe8\xbc\x8d\x75\x62\x34\x9e\x1e\x98\xce\x0d\x75\x2f\x4b\x3d\x99\xe6\x77\x36\x8b\xd0\x8c\x78\xfe\x74\x25\xec\x3b\x56\x0e\x38\x3b\xd4\x2a\xf6\x49\x98\x86\xc3\x5a\xdd\x80\xa5\x82\x8b\x61\xd6\x64\x4d\x7d\xc4\x43\xba\x2c\x06\xf9\xba\xd2\xec\xcb\x98\x3d\x24\x45\x8f\x6a\xda\x1b\x10\xbb\x5b\x77\x17\x2c\x5c\xdd\x56\xd2\x73\xd1\xe4\x10\x10\xb2\x5c\xf4\x8a\x7d\x58\xd7\x25\x57\x02\xac\x12\xf2\xa6\xfe\x29\x18\x46\x63\x95\xf4\x60\xd1\x52\x36\xd0\x35\xae\x94\x10\xca\x86\xc4\x60\x51\x28\x29\x9f\xaa\xf0\x90\x15\xf1\xad\xee\x77\x68\xee\x1a\x8f\x8c\xa0\x6d\x10\xdd\x7f\x95\xc4\x6f\xa1\x02\x53\x06\x5f\x9d\x6f\x90\x29\x59\x08\x80\x9f\xd7\x79\x57\x1b\xe2\x9e\x0a\xe6\x6e\x0b\xcb\xde\xb7\x91\x3d\x2b\xbb\x76\xac\x30\x2f\x34\x52\xc5\x5e\xf1\x99\xa4\x8e\xce\xb0\xe3\x59\x6c\x7b\x4c\x03\x86\xda\xe7\x10\x1e\xa2\x44\xa3\x3c\x4c\xdc\x83\x06\x72\xdf\x83\x65\x5b\x35\x33\x80\x52\x30\x7b\x94\xd2\x23\xca\xb1\xaf\x69\xe0\x7f\x78\xe5\x8c\xbb\x0c\xb3\xc5\x35\x1e\x3a\x6b\x0c\x4a\x92\x7f\x75\x62\xc5\x98\xd2\xd3\xdf\x90\x56\x9f\x61\xdb\x1a\x3c\xb0\x14\x0b\x56\xea\x02\xcf\x77\x45\xfb\xee\xc2\x02\x86\x73\xd6\x7f\x1e\xc5\xf7\xda\xf9\x71\x5f\x75\x4a\x9d\x8e\xd4\x6a\x7a\x63\xef\x72\x2e\xe0\xd5\x89\x93\x31\xb6\x3c\x97\x4f\xa8\x80\x42\x94\x35\x76\x7f\x96\x25\x4e\xf4\x6c\x99\x68\xf3\xfe\xda\xaf\xea\xf3\xe8\xf4\x56\x34\xb5\x4f\x5e\x0a\x5f\xc2\xd2\x37\x3a\xb9\xe9\x8d\x9a\xcf\xe3\x69\x7e\x64\x2a\x18\xe0\xdf\xd9\xfb\xc2\xf0\x94\x86\x6d\x40\x1f\x0a\x4c\xa2\xa4\x56\xed\xf6\xa1\xa7\x7b\x9c\x29\x6c\x39\x22\x06\x7e\xb3\xd5\xa5\xca\x0a\x77\xf4\x30\xe4\xc8\x61\x1d\x8f\x05\xa1\xba\xac\x16\x35\xef\x7b\xa8\x3d\xfc\x69\xd3\x01\x94\x98\x56\xbe\x4d\x2c\x8a\xb6\x1d\xe2\x9c\xf3\x92\x50\xc5\x79\x4c\xbf\x57\x50\xcd\xa9\x5d\x04\x68\xaf\xa2\xb7\xf2\x3d\xba\x4e\xf5\xf5\x29\x5a\x3b\xf4\x14\x00\x18\xb7\xed\x06\x18\x84\x44\x4f\x5b\xb1\xb7\xd2\x39\x31\x2d\xd7\x39\x99\x95\x36\xc6\x84\x45\x6e\xa0\x6b"}, {{0xb2,0x16,0xce,0xbf,0x87,0x80,0x24,0xc2,0x0d,0xfc,0x86,0xce,0x4b,0x37,0xbd,0xc4,0x7a,0xa2,0x8f,0x29,0x20,0x3b,0x5b,0x44,0x92,0x50,0x65,0xd9,0x93,0xa2,0x59,0xfe,},{0xc3,0x6e,0xdb,0xb6,0x25,0x4a,0x91,0x3f,0x08,0xfe,0x25,0x9e,0x23,0x87,0x80,0x63,0x8f,0x72,0xec,0x0b,0x30,0x07,0x26,0x4b,0xcc,0x60,0xa9,0xe8,0x1e,0xe9,0x29,0x8f,},{0xb7,0x38,0x9e,0xe7,0x8d,0xd9,0x76,0x3f,0x9d,0x28,0x92,0x91,0x2e,0xdc,0xbe,0x3e,0x8a,0x23,0x6b,0x8b,0xdc,0x25,0xf4,0x4b,0x9c,0xfd,0xc8,0xc4,0x7c,0xd5,0x81,0x68,0xab,0x56,0xeb,0x04,0x02,0xa5,0xbd,0x75,0x2a,0xc8,0xf4,0x97,0x8d,0x2e,0xa2,0xb6,0x5d,0x2f,0xa8,0x52,0x65,0x96,0x6b,0x9f,0x57,0x22,0x7e,0xf4,0xa5,0x9a,0xe0,0x09,},"\x9c\x87\x17\xcc\x86\xfe\x02\x48\x0b\xfd\x9e\x92\x2b\xd7\x6b\xff\xee\x21\x70\xc4\xcb\x1b\x13\xdf\x83\x4a\xc0\x1d\x45\x00\x60\x86\x29\x7f\x1b\x8a\x26\xf2\xba\x67\x4d\x33\xe1\xd1\x62\xf1\x93\x67\xfe\xba\x97\x35\x2b\x7d\xf2\xe7\x5b\x30\x9d\x4b\x6f\x8b\x07\xcc\x0e\xb6\x77\x7e\x81\xe2\x68\xe0\x2d\x07\xf2\xa0\x8f\x8f\x39\xd5\xa8\x32\x0b\xfc\x01\xfc\x8c\x92\x27\xd2\xcf\x05\xe1\x28\x91\xff\x4d\xe8\x85\xa1\xc9\x33\x71\xa0\x91\x0b\xa5\x33\x92\xaf\xf9\xba\x2e\xed\x9a\x20\x55\x97\x7e\xc4\x15\x7b\xd6\x5b\x34\xdf\x79\x37\x2f\x4d\x50\xed\xbc\x48\x92\x43\x53\xcf\xa1\x69\x23\x19\xd8\x8a\x7a\x5b\xb7\x26\x25\x4c\x20\x92\x91\xe9\xb1\xd2\xc1\xa6\xc8\x23\x63\x98\x10\x9c\x59\xed\x42\xa0\xac\x9e\x76\x33\xc5\x20\x73\x4e\xcc\xfe\xa4\xfe\xa9\x5a\x47\xa8\xf0\xa0\x68\xb4\x27\x50\x00\x43\x9c\xc9\x7c\x57\x87\x1e\x10\x5c\xc0\x79\x0e\x9d\xcc\x9c\x25\xd5\xaf\x70\x63\xff\xd0\x5c\x4f\x37\x80\xe7\xbc\xa4\xc4\x56\xd0\x17\x0d\xa7\x09\xfc\x6c\xb3\xfa\xa7\x2b\xdc\xf5\x62\x90\x8a\xe9\x34\x0a\xef\x4d\x0c\x8b\x91\xf0\xfb\xcc\xbc\xf1\xcd\x89\x8b\x1c\x71\x6f\x4f\x14\x74\xc3\xaa\x31\x62\x42\xab\xdf\x63\x68\xe5\x7a\x24\x7f\xf2\xfd\x5c\xe2\x3d\x18\x7f\x69\x4f\x11\xe3\x8d\xfb\xfb\xc3\xd9\xdb\x20\x90\x3b\x4e\xbb\x44\x9b\x90\x49\xee\x02\x0f\x6e\x2f\x50\x8e\x8b\x2b\x16\x5b\xad\x74\x64\xdb\xdd\x17\x8c\xbd\x42\x32\x33\x76\x5d\x37\x1e\x7a\xe1\xc3\xe8\x78\xcd\xb5\xb8\x24\xb2\x0c\xb3\x09\x86\x7c\x0e\x47\x3c\x06\x7e\x67\x44\x00\x85\x27\xb6\xbc\x07\x6d\x07\x7f\x48\x67\x62\x2a\xee\xd1\xc2\x53\xdb\xde\x7c\x6a\x76\xc7\x01\x59\x62\xfb\x73\x39\x16\x98\x60\x0b\xb3\x18\xff\xa7\xb0\x13\x6e\xe4\xcc\xb0\x7d\xaa\xf0\x1f\x40\xff\x9c\x19\x4f\x98\x68\x1f\x9f\xae\xf8\xb6\xf9\xe9\x9f\x95\xdf\x00\x80\xda\x89\x66\xa8\xba\x7a\x94\x74\xc5\x37\xb9\x2d\xf9\x79\x9e\x2f\xd1\x6f\x78\x8d\xad\x7a\x7b\xcc\x74\x52\x26\xe1\xe6\x37\x1f\x52\xeb\xcd\xbd\x14\x40\x44\xdd\xfe\x63\x2d\xfc\x0a\x43\xd3\xa4\x50\x92\x31\x70\xeb\xc7\xae\x21\x9e\x50\xe0\x78\xa5\x11\xbc\x12\xef\x14\xcd\x14\xb5\x30\x9f\x38\xab\xd6\x5d\xb2\xb2\xa7\xaf\x22\x43\xb2\x29\xc9\xfd\x2e"}, {{0xaf,0xce,0xce,0xa9,0x24,0x39,0xe4,0x4a,0x43,0xed,0x61,0xb6,0x73,0x04,0x3d,0xcb,0xc4,0xe3,0x60,0xf2,0xf3,0x0c,0xd0,0x78,0x96,0xcd,0xa2,0x0c,0xb9,0x88,0xd4,0xe3,},{0xd2,0x31,0xf6,0x92,0x35,0xa2,0xe3,0xa1,0xdd,0x5f,0x6c,0x2a,0x9a,0xaf,0x20,0xc0,0x34,0x54,0xb9,0xa2,0x9f,0x4e,0x3a,0x29,0xab,0x94,0x68,0x9d,0x0d,0x72,0x3e,0x50,},{0xa6,0x55,0x45,0xcf,0x3d,0xf4,0x56,0xb2,0x8d,0x83,0xa6,0xd9,0x4c,0x03,0x6a,0x19,0xd0,0xd2,0x9f,0xb0,0x65,0xed,0xc2,0x7e,0x5e,0x93,0xa1,0xf4,0x02,0x79,0x89,0x7e,0x1c,0x6f,0x25,0x95,0x9a,0x72,0x5a,0xba,0xbc,0x87,0xcf,0x2a,0xe7,0x27,0xf3,0x46,0x7b,0x79,0x57,0x0e,0x90,0x27,0x11,0x91,0x71,0x91,0xd9,0xcb,0x0d,0x2d,0x66,0x0c,},"\x0b\x05\xf8\x9e\xbb\x33\x97\x94\x76\x87\xaf\xbe\xf0\xed\xe8\x7c\xf3\x81\x06\x76\x27\x70\x37\x52\x1d\x95\x2a\x3b\xbb\xbd\xc8\x56\x59\x88\xa0\x95\xd8\xd4\xf6\xf5\x9b\xe5\x72\xd3\xd8\x21\xdd\x78\x99\x77\xef\x77\xa2\xfd\x71\x10\xce\xee\xd9\xf3\x75\x6e\xd8\xe1\x88\x26\x7b\x97\xa3\x0e\xf8\x95\x7c\x78\xae\xa3\xa2\x96\x3d\xec\xa6\x18\x60\x54\x5e\x0c\x40\x82\x48\x81\xeb\xb1\xdb\x10\xf6\x07\xe1\x0d\xdb\xdd\xce\x40\x0e\xa2\x36\xba\x47\x45\xaa\x99\xa0\x56\x41\x97\x67\x66\x78\x9e\xd0\xda\x7d\xb5\x5f\xda\xb4\x59\xeb\xd4\xb4\x41\xa6\x28\x2f\x7c\xfd\x5a\x20\xea\x06\xef\xfa\x33\x59\x55\xe5\xfd\x29\x18\x16\x71\xbc\x92\xc0\x00\x52\xf7\xf7\x5c\x39\x27\x7c\x9a\x43\xb7\x87\xac\x9f\xb1\x51\x6e\x99\x62\x32\xa5\x09\x77\x4d\x1d\xc2\x1d\x8c\x05\x13\xf7\x84\x4b\x0a\x5b\x5f\x18\x95\x75\x81\xf9\x90\x44\xa1\x42\x23\xcc\xda\x8a\x28\x4d\xe1\x2f\xd4\x24\x26\x5f\xe5\x7b\x27\x02\x15\xf8\xfa\x9f\xf2\xbe\xa5\x17\x93\x4e\x48\x00\xa4\x7d\x34\x6f\xb6\xc3\x61\xcf\xba\xbe\xff\xab\xd9\xc4\x16\x4f\x45\x15\x6e\x24\x5c\x97\x7e\xdb\x47\x36\x42\xc3\x94\x0b\xe5\xad\x6f\xd1\xa7\x11\x9a\x7b\x18\xe9\x8d\x6d\xc8\x43\xe0\xd2\x54\xc9\x3d\x01\x46\xd1\x8e\x5c\x62\xed\xe1\x49\x0f\x89\xa6\x05\xeb\x45\x4f\x97\x47\x78\xcf\xae\x20\x93\x2e\x95\x47\x7b\xd0\x3b\xcd\xb9\x7d\x5b\xcb\x76\x33\x59\x42\xe9\x2e\xe6\x68\xf2\x31\xe6\x9c\x57\x0a\xc5\x44\x6d\x0f\x77\x40\x66\x73\x7f\xdf\x49\xf1\x0c\xeb\x1b\x52\xd6\xd8\xa4\x63\x98\x46\xa3\x37\x3a\x7c\x6f\x3b\x4b\x31\x59\xfe\x2e\x7a\xf7\xee\xe2\xf0\xdf\x17\x2d\x94\xd2\x55\xd0\x17\x65\x1d\xa3\x00\x90\x05\xe5\xea\xc3\x17\x6c\x09\x38\x9e\xe4\x0d\x70\x38\x3b\xd3\x71\x17\xec\xa0\x83\x59\x8a\x18\x01\xf5\x92\xd0\x57\x18\x6e\x56\x8e\x24\x7c\x25\x2b\xe4\xb1\x4f\x72\x3a\xb7\xdd\xb9\x7a\xe9\x76\x8c\x26\x82\xfd\x63\xac\xc3\x00\x77\x9f\xe0\x4e\x2b\x88\x87\x47\x51\x34\x6c\x9e\x0f\x97\xa2\xa2\x16\x77\x2f\xf9\x62\x5c\x33\xbd\x7e\x29\xfe\xd8\x00\x3a\x08\xdb\xd3\x3b\x5d\x17\x89\x9c\x94\x3c\x25\xe9\x5a\xd7\x54\xfb\x63\x2e\x04\x7c\x11\x2a\xf7\xf7\xce\xba\x72\x36\x2e\x1a\x3d\xdd\x29\x35\xaa\xf7\xf8\x18\xa2\x7c"}, {{0xb8,0x34,0xc6,0xe0,0xfa,0xcb,0xff,0x58,0x0d,0xd3,0xb2,0x37,0x53,0x95,0x9a,0x4c,0x21,0x54,0xc2,0x19,0x52,0x1b,0x3d,0x27,0x03,0x5d,0x07,0x1f,0x65,0x99,0xbd,0x02,},{0xd1,0xc3,0x84,0x71,0x5e,0x3b,0x3d,0x02,0xc1,0x3e,0x09,0x06,0x05,0x53,0x4c,0x7d,0xb7,0x40,0xda,0x2a,0xa5,0x60,0xf5,0x32,0x00,0xa3,0xce,0xd8,0xbe,0xae,0x8c,0xf8,},{0x0f,0x19,0xb7,0x06,0x6d,0x57,0x92,0x32,0x8a,0x98,0x00,0xd9,0xd4,0xf8,0xf6,0x7d,0x5b,0x08,0x9b,0x54,0x12,0x26,0xa1,0x67,0xda,0xcd,0x43,0x9f,0xa4,0x85,0xb0,0x02,0x5a,0x5d,0xc7,0xf2,0xc7,0xe2,0x3f,0xc4,0xa5,0xc6,0x86,0x9e,0x76,0x19,0xd3,0x56,0x39,0x97,0x00,0xc9,0x36,0x50,0xe8,0x9c,0xd2,0x5b,0x90,0xfb,0x99,0x25,0xe3,0x04,},"\x6c\xf1\x47\xb1\x60\x55\x28\xa3\x6b\xe7\x57\x16\xa1\x4b\x42\x0b\xcf\x06\x7c\x03\xf1\xcf\xe9\xc4\x40\x2f\x14\x98\x7f\xbf\xc9\xd3\xec\xc3\xcc\xf4\xf8\xd2\xd0\x3a\x55\x90\x0b\x8d\xc7\x9a\xf3\xb6\xe7\x74\x36\xf6\x9b\x14\x17\xad\x4b\x68\xfd\x44\xe5\xe3\x33\xed\x90\xea\x79\x43\xfb\xd1\x12\x26\x09\xec\x8f\xf6\xbb\x25\xe4\x2e\x99\x14\xf5\x92\x0f\xc7\x2c\x4d\x01\x3b\x6a\x96\x85\xc9\x96\xfb\xd8\x35\x2a\xaf\xb1\x84\xc2\x2d\x9e\x47\x87\x1a\x52\x80\xe4\xab\x7d\xd6\xa5\xcf\xd1\x0a\x59\x94\xa2\x00\xf6\x70\xe0\xb6\x22\xa9\x39\x4d\x47\x93\xd0\xa4\x20\xe7\xd8\x80\x6c\xb1\x27\xc7\xac\x69\x0d\x45\xa2\xe9\x41\x66\xce\xa6\x72\xbc\xd9\x82\xb0\xe9\xba\xad\x56\x31\x2d\x25\x70\xdd\xde\x7e\x0b\x9e\x7f\x47\x13\x6f\x04\x81\xd0\x0f\x66\xa2\xaa\xca\x4d\x1b\x09\xd7\xce\x6c\x5a\x98\xa7\x6b\x68\xcd\x97\xd5\x79\x39\x68\xd6\x67\x07\x3f\x82\x17\xf9\x05\x47\x35\x34\x0f\x9b\x14\x9c\x0d\xce\x84\x5b\x09\x9e\x88\xd0\x70\x96\x80\xf0\xf7\x76\x03\xff\x0a\x23\x31\xc5\x58\xfc\x36\xd5\xf2\x4d\xa9\xa6\x2d\x69\xaf\x51\x90\xd2\x1b\x5c\x85\x7a\x1e\x08\xf0\x14\xc6\xd4\x56\x46\x86\x65\xa7\xf8\x45\xc6\x6f\x91\x11\xf9\xc0\x98\xc6\x89\x40\xef\xcd\x87\xb6\x57\x07\x0c\xb9\x16\x4b\xc9\x74\x3a\xce\xb7\x43\x9a\x0d\x01\xc0\x06\x2a\x11\xaf\x2e\x11\x34\x93\x97\xf5\xd1\x52\x87\x2b\x13\xc5\xab\x32\xf5\x1c\xc5\x8f\x14\x75\xec\x82\xac\x67\x15\x61\xdc\xbd\x34\x3c\xfb\x3c\x5f\x78\xd0\xfc\x73\x05\x3c\x60\x04\xb0\xa4\xca\x3f\x20\x43\xff\x4b\x0c\x54\x27\x5c\x4f\xcb\x9c\xad\xc6\xba\xab\xe5\x7b\x1d\x5a\xcd\x53\x1e\x97\x2e\xf9\x33\x51\x36\xcd\x1d\x65\x51\x2b\xa1\xf5\xb6\xcc\xc4\xb6\x6b\x42\x50\xaa\xfa\x29\x67\xdd\x42\x11\xa2\x74\x2e\x0f\x17\x7d\x8f\x40\x63\x89\x9f\x61\x81\x5c\xbe\x6d\x8f\xbf\xcd\xf7\x48\x12\xbd\x40\xcc\x10\x08\x4e\x46\xa9\x9a\xc1\x28\x05\x8e\xaf\x16\xa4\x9a\x24\xb6\xae\x22\x8e\xcf\x01\x09\xc5\x2d\xfc\x06\xe3\x7d\x6a\x33\x3b\xcb\x24\xab\xa3\x12\x16\x4c\x6c\x02\x90\x48\x5d\x25\x12\x80\x53\x8c\xe9\x54\x1c\x09\x16\x64\x0e\x36\xd6\x92\x9d\xcd\x95\x88\xeb\x99\x57\x7f\x5f\x6d\x82\xbc\xbb\x19\x88\x26\x26\x7e\x49\xf5\xda\xff\x2c\x0d"}, {{0x22,0x69,0xa5,0xd8,0xf7,0xac,0x2c,0xd9,0x04,0x8f,0x5f,0x49,0xe3,0x49,0xe5,0xc4,0x35,0xa1,0x59,0xb3,0x19,0xfe,0x3b,0x30,0xbf,0xac,0x8d,0x0d,0x50,0x59,0x43,0xf4,},{0x1c,0x81,0x79,0x43,0xdc,0x39,0xc2,0x4b,0x01,0xda,0x38,0xa4,0x87,0xb1,0x75,0x48,0x24,0x60,0xc6,0x09,0xe4,0x72,0x63,0x49,0xa9,0xaa,0x7a,0xea,0x9b,0xc0,0xfb,0x34,},{0xbe,0x0f,0xb3,0x30,0x8a,0x07,0x6a,0x61,0xa4,0xa9,0x2a,0x97,0xf6,0xac,0x55,0x32,0x71,0x90,0xe1,0x34,0x1d,0x6d,0xd4,0x10,0xd8,0x6b,0x41,0xbd,0xaf,0x2d,0x33,0x74,0x09,0x3e,0xf7,0x20,0xbd,0xb7,0x7f,0xeb,0x70,0x14,0xe0,0xf7,0x7d,0x3b,0x80,0x96,0x23,0xc7,0xca,0x53,0xe2,0xae,0x4b,0x09,0x71,0x13,0xe9,0x6d,0xb7,0x7a,0x2d,0x08,},"\x71\x53\xd4\xd9\xe6\x41\xaa\x61\x92\x0d\xb0\xff\x4b\xd5\x37\xa6\xd6\x13\x0a\x39\x65\x54\xcc\x94\x53\x76\x98\xf9\xca\xd1\x6b\x99\xee\xbe\xfa\x5f\x27\x76\xf2\xfe\xaf\xf6\xbd\x9a\x69\x04\x12\x0c\x67\xe0\x88\x3f\x6b\x96\xbb\xbb\x19\x5e\x95\xae\xc7\x53\xb6\x99\xba\xb3\xd0\x39\x44\xc1\x3c\x72\xfc\x84\xe3\xf2\xcb\xf6\x29\x6f\x64\x55\x49\x11\x1c\x93\xfa\xe1\xa7\x59\xbf\xcd\x16\xfc\x09\xe6\x0b\xb9\x78\x55\x35\xad\x27\xda\x24\x4e\xf2\xf8\x57\xf2\xde\x99\xa6\xe9\x21\x88\x89\x0e\x45\x2c\x7f\x5b\x9e\x3a\x4b\x96\x8e\x11\x74\x3b\x6f\xc7\xfa\xf1\x27\x5e\x53\x60\xa5\x46\x89\x41\x79\x78\x94\xd7\x70\xfa\x7d\xa3\x64\xa3\x37\x30\x22\x39\xfe\x83\xae\x0b\x0d\x08\x4a\xa1\x2a\xcd\xc6\x34\x62\x52\x4e\x0e\xb1\x0f\xef\xe8\x1b\xa9\x6f\x71\xf2\x75\xf3\x44\x9a\x3f\x8d\xb2\x1d\x58\x74\x9a\x38\x85\x3d\x39\xb0\xad\x8e\x69\x89\x1b\xd2\x04\xdf\xca\x8f\x6c\x23\x9d\xc9\xa0\xac\x27\xf5\x4d\xb4\x23\x8d\x47\x06\xdf\x11\xd6\x07\x36\x9d\xc7\xf7\x04\xda\x1d\x39\xf2\xe8\x2a\xf8\xc2\x83\xd2\x20\xc1\x24\x31\xf5\x6d\x80\x30\x69\xb4\xac\xb7\x70\x81\xc0\x31\xae\x33\x19\xfc\x77\xfc\xa7\x84\x50\x97\xfd\x72\x7a\xd0\xd0\x80\x89\x5b\xba\x23\xe8\x73\xd2\xde\xf8\xcd\xc2\x16\xc3\xee\xd6\x1b\x08\x76\x1b\xb9\xeb\xce\x02\x82\xcf\x50\x2a\xaf\x6c\xe7\xe8\xc0\x58\x63\x79\x58\xc3\xea\x1b\x72\xfe\x6e\x8d\xf8\xd3\x7a\xc0\x55\xdb\x69\x92\x58\x7f\xab\xbd\xc4\x67\xf5\x24\x75\x64\x4f\x91\x88\x63\xaf\x62\x04\x92\xf3\x46\x80\xf2\x05\x6c\xbc\xab\x75\xe2\x32\x36\x26\xc0\x94\x75\x9c\x0e\x0e\x99\xef\x19\x75\x95\x27\x25\x06\x46\xad\x76\x01\x20\xba\x38\x66\x99\xd5\x39\x34\xf9\x56\xb8\xbb\xc7\x39\x5b\xb4\x96\xce\xb2\xdd\x22\x3c\x7b\x50\x1b\x92\xd3\x6a\x95\xf8\xf0\xa0\x2e\xb5\xba\x4d\xdd\xf1\x66\xb9\xb9\x5b\x4a\x59\xe7\x2a\x30\xc6\x3c\xf2\x1e\x60\x85\x75\x19\x23\xd5\x4b\x30\x28\x1e\x52\xa0\x96\x18\xe6\xf0\x23\xba\x0a\x21\x67\x5e\x7f\x98\x9b\x89\x91\x58\x8c\x96\xc2\xb5\x6a\x78\xf5\xd2\x94\x5a\x7b\xae\xb6\xa0\xc1\xbb\xd5\xd9\x5a\xf3\xee\x83\x0f\x58\x09\xc7\x94\xa1\x5a\xb4\xb5\xf8\x9d\xd2\xbe\x2d\xfd\xcd\x8f\xe0\x52\x0f\xda\x2b\x3f\x02\xa1\xac\x01\x55"}, {{0xe9,0x65,0xb3,0xf2,0x57,0x35,0x66,0x85,0xc9,0x8b,0x42,0xb9,0x64,0xa2,0x53,0xfc,0x49,0x53,0x99,0xcc,0x94,0xb0,0x99,0xc2,0x44,0x5f,0xc8,0x1c,0x75,0x9c,0x68,0xe5,},{0x68,0x9f,0x54,0x10,0xc8,0xe0,0xf4,0xd3,0x7b,0xc0,0x7c,0x85,0xd7,0xcc,0xe6,0xc9,0xb6,0x36,0x01,0xf9,0xbd,0xaf,0xec,0xaa,0x44,0x8a,0x5e,0xed,0x64,0xaf,0xc8,0xc6,},{0x8d,0x2b,0xc4,0xe1,0xcd,0x25,0x6a,0xad,0x8a,0x15,0x1d,0xec,0x01,0x0d,0xc9,0x3a,0x5e,0x5c,0xca,0x58,0x29,0x8d,0xec,0x49,0xcb,0xc9,0xc4,0x71,0x7b,0x5c,0xfb,0x54,0x60,0xd4,0x30,0xbe,0x72,0x6b,0x0f,0x30,0x2c,0xbd,0x92,0x6b,0xee,0xa1,0x9a,0xa3,0xc9,0x3a,0xeb,0x45,0x2a,0x44,0xf6,0x00,0x7a,0xf4,0x9a,0xdf,0x2f,0x05,0xbb,0x04,},"\x6f\x20\xa9\xad\x27\xe3\x0d\xac\x76\xb3\x0d\x4c\x19\xa5\xbd\x6d\xfd\x6d\x04\x92\x13\xf4\xbe\xcd\xd9\x63\xd7\x2b\x8b\x2d\xad\x68\x7b\x00\x38\x08\x20\x1d\x50\xf7\xdd\x6e\x59\x9e\xf5\x8c\xeb\x60\x68\xc5\x45\xed\x99\xb9\xe7\x63\xf9\xb0\xec\x1d\xb5\xfc\xbd\x7d\x49\x0a\x12\x1e\xce\xc6\xbb\xa1\xeb\x5e\xdb\xd6\xde\x85\x36\x47\x07\xc5\x5e\x30\x0c\x8b\x16\xbb\x25\x30\xf7\x08\x98\x13\x66\x89\xc9\x88\x59\x1d\x53\x91\xd9\xcc\x34\x7d\x79\x31\x06\x1a\x9b\x76\x96\xe2\xc9\xf3\x5b\xc0\xd3\x04\xa8\x1c\x2c\xf9\x54\xd9\xc3\xa8\x8a\x22\xe1\xd6\x7b\xbe\x0a\x85\x30\x84\x77\xf6\x29\x18\xc2\x5d\xb5\x04\xe4\x76\x2f\x0e\x3b\x42\x46\x00\x79\x08\xac\x70\x17\x79\x00\x6b\x77\xd7\x25\x10\xed\xc6\x9e\x17\xd0\xf6\x39\x4c\x77\xe5\x55\x18\x75\xa4\x46\xf8\x12\x33\x41\x5d\x0a\x91\xa0\x46\x0b\x51\xc4\x13\xd6\x44\xe8\x50\xf8\x55\x72\x81\xc4\x66\x99\xe5\x3b\x22\xa7\xc7\x3b\x06\x8e\xa3\x86\x52\xcf\xf3\xb0\xa7\xb8\xba\x30\x97\x1e\xab\x18\xfd\xbb\xd8\x73\x9e\xe1\xee\x0c\xd5\xcb\xfb\x7d\x5d\x41\x75\x7b\x63\x31\x27\x1f\xb7\x80\x97\x51\xe2\x03\x51\x3c\x99\x70\xf6\x6d\x91\xbc\x0c\xe0\x62\xf4\xfc\xb2\x8b\xe0\xa6\x99\x86\x7b\x79\x59\x4c\x64\x58\xa0\xd3\x07\xac\xac\x91\xf4\x13\xc4\x61\x58\x77\xdc\x53\xe1\xb0\x18\xda\x5c\xfc\xe1\xb6\x3f\x40\xbe\x1e\x55\x27\x4c\x43\x74\xcd\xfc\x21\x52\x44\x99\xa6\x83\xa2\x31\xad\xef\x77\x9d\x19\x21\x44\x0e\x5d\x3f\xdb\xd5\x03\x3d\xc9\x83\xcf\xc9\x31\xab\xe6\x38\xc3\x5d\x5a\x95\x86\x9e\x9f\xe3\xd9\x3e\xb9\x0b\xd1\x86\x1f\x85\x5c\xe1\xf6\x08\xb7\xbc\xad\x6b\x5e\x1b\xd9\x7e\xdc\x95\xed\x5d\xdc\xbc\xb7\x15\xd9\x19\xf5\xff\x77\xdf\x2d\xa4\x38\xf7\xa3\xa9\x82\x86\xdb\xd5\xb6\xe0\x43\xfc\x73\x72\xf6\x97\x04\xf0\x9d\x86\x55\x30\xf4\xf0\xed\xd3\x30\x0f\x18\x5b\x6d\x73\xd8\x71\x6d\x32\xd3\x2b\x1c\x9a\xc2\xdd\xf4\xf9\x02\xd3\xf2\x16\xd3\x5a\x33\xf3\x68\x09\x5d\xed\x10\xbe\x94\xbb\x53\xd6\xf2\x56\x56\x0f\xac\x2f\x4a\xf0\xed\xf5\xc5\xc7\x02\x14\x37\x77\x12\x6e\x7d\xe3\x2d\x07\x49\x39\x32\x66\x21\x29\xba\x0e\x7f\xc7\xcf\xb3\x6f\xd2\xca\x53\x16\x46\xe8\xcd\x22\x11\x85\x4f\xc5\x10\xaf\x3b\x1e\x8c\xaf\xde\x7a"}, {{0xbc,0x3b,0x1e,0x0b,0xf8,0xd6,0x9e,0xa5,0xb4,0xcb,0xbf,0x10,0xbb,0x33,0xfc,0x95,0x5a,0xdc,0xbe,0x13,0xfc,0x20,0xaf,0x8a,0x10,0x87,0x2c,0xe9,0xdf,0x39,0xd6,0xbd,},{0xac,0xcd,0x26,0x28,0x15,0x59,0x19,0xbb,0xc7,0xf9,0xd8,0x6f,0x91,0xda,0xfe,0xc3,0x5c,0x71,0x1a,0x78,0xc7,0x9a,0xd3,0x60,0xed,0xdb,0x88,0xfa,0x8a,0x18,0x0b,0x2d,},{0x6e,0xf7,0xf0,0xe9,0x1f,0x2c,0xc6,0x71,0x5f,0x8e,0x5a,0x98,0x57,0x4b,0x44,0x00,0xc2,0x61,0xa6,0x43,0xe0,0x54,0x5f,0xf2,0x67,0x47,0xf8,0xe1,0x73,0x98,0x99,0xd7,0x66,0x40,0xb6,0x45,0x1c,0x43,0xc1,0xd0,0x3a,0x47,0x75,0xb5,0x4f,0xcf,0x9b,0xce,0x18,0xed,0x3f,0xcc,0xad,0x33,0x8b,0x77,0x64,0x02,0x4f,0xdf,0xa2,0xde,0x82,0x01,},"\x4c\x73\xe0\x4a\xbe\x08\x19\xde\x1f\x84\xd7\x05\x41\xeb\x1b\xb6\x1c\x4f\x42\x92\x0e\x1f\x2d\x1d\x9e\x62\x81\xa8\xa2\xe8\xb3\xeb\x45\x53\x7d\x83\x96\x90\x27\xf9\x9e\xf0\xea\x27\xca\x08\x5b\x13\xf9\xdb\x48\x0f\x00\xc0\x2f\x3f\xd7\x42\x9d\xd5\x67\x70\x89\x53\xbb\xf3\xb9\xe8\xe2\xc6\xac\x4d\x32\x1f\xf8\xf9\xe4\xa3\x15\x47\x23\x08\x5a\x54\xe9\xc9\x57\x3c\xc7\x35\x0c\x09\xf8\x97\x3f\x94\x8b\x08\x73\x03\x73\x59\x7a\x5f\xd0\x34\x98\x21\xae\x0a\x3c\xd6\xc8\x49\x92\xb1\x89\x12\x8f\x34\x90\x98\x7e\x1e\x9a\xd4\xf6\x57\x4c\xa5\x38\xfd\xfd\x83\x28\x4c\x1e\xb0\x95\x3f\x24\xc0\x8f\x74\x93\x2d\x43\x64\xdb\xbe\xf9\x22\x54\x24\x40\xda\xe8\x04\x24\xa9\x2e\xae\xf2\x7c\x18\x89\xbd\x08\xc4\x4f\x9d\xf0\x3a\x3a\xf3\x0d\xff\xb4\x8f\xae\x44\x5e\x62\x5f\x4d\x92\x65\xcf\x38\x7a\x1d\xa3\x5f\xe4\xc2\x31\x50\x45\x35\xdb\x72\xea\x81\xa1\x86\x80\x5f\x85\x6e\xbe\x6a\x6a\x65\x24\x14\x32\x53\x0f\xe6\xc9\x60\xc5\xf9\xbe\x6c\x22\x95\x70\x60\x30\x4e\x9d\xd8\xef\xbc\x1e\x48\x2e\x7d\xdb\xd8\xaf\x03\xbf\x23\x82\x89\x9c\x98\x6d\x91\x66\x11\xe4\xf2\x7a\xe5\x2f\x81\x7e\xf0\x1b\x6a\x14\x1f\xe4\xf6\x85\xd9\x4d\xc8\xcd\x52\x83\x00\x43\x93\x45\x87\x70\x4c\x1e\x64\x2e\x8f\xe5\x6b\xe6\xd6\xb8\x5b\xf4\xa6\xfe\xb2\xb6\x85\x8f\x1f\x00\x7f\x99\xd3\x9e\xa0\x4c\x9f\xe5\xfa\x7e\xf1\xb9\x1f\x49\x5e\xd0\xe7\xfa\x42\x13\xdd\x68\xce\xa4\x2b\x67\x29\xf9\x50\x31\x90\x7e\x27\xc4\x40\x98\x09\x43\x86\xfa\xbf\xb0\x4a\xb9\xb4\xde\x3d\x68\x61\xde\x46\x23\x12\xc5\x9b\x27\xc7\x6f\x7b\x6a\x4f\xc7\x1e\xa0\xd5\xda\xf6\xb7\x32\x05\x21\xa6\x7e\x5c\xb3\x75\x04\x97\x6a\xd7\x3d\xae\x2d\x64\x9f\xeb\x75\xe2\xea\xdd\x34\x01\xa7\xf2\xf3\x6e\x16\xdf\xbf\xbd\xb2\xaf\x57\x16\xcb\xa1\xbc\xe2\x0c\xd4\x7c\xe1\xc1\xd7\xbe\x00\x69\x70\x01\xfb\xbe\xb4\x91\x5a\xa6\xe5\x39\x3b\x5a\xb2\x0e\x0f\x31\xf5\x11\x91\x49\xa2\xcb\x4c\x4d\x45\x2c\x81\x56\x11\x3a\xc7\x82\x4f\x84\xf0\x9a\xeb\x81\x20\x2e\x8d\xd3\xda\xc0\xaa\x89\x39\x9b\x5a\x38\xb1\xe2\x18\x30\x19\x60\xa3\x7d\x52\x63\x2e\xea\xef\xe3\x68\x74\x55\x46\x42\x88\xeb\x17\xd9\xe1\x9a\x3a\x72\xed\x9d\xe3\x2c\x17\xbe\x79\xa3\xb9"}, {{0x10,0x71,0x8f,0xa6,0xe2,0xd7,0xf6,0xed,0x38,0xfd,0x66,0xcb,0x6d,0xbf,0xa0,0x87,0xe8,0xf1,0xe8,0xa8,0xa2,0x4f,0xab,0x58,0xd7,0x9d,0x79,0x54,0xb8,0x72,0x0c,0x3e,},{0x87,0x0d,0x4f,0x66,0x6d,0x06,0xfd,0xa9,0xf9,0x51,0x1b,0x58,0x60,0x2e,0xec,0x05,0x0d,0x75,0x4e,0xa6,0xd8,0xe7,0x9c,0xdd,0x19,0xf6,0x01,0xc4,0x77,0xdf,0x1a,0xa0,},{0xe1,0x65,0x91,0x86,0xf1,0xf7,0x6f,0xe4,0x3a,0xc8,0xa1,0x17,0x03,0x36,0x0f,0xbe,0xff,0x53,0xb5,0xe5,0x7b,0x59,0x74,0xaa,0xa0,0x8e,0x25,0x75,0x57,0x9c,0x27,0x08,0x4c,0xf6,0x80,0x2e,0x7c,0x20,0x63,0x47,0x31,0x44,0x75,0xb6,0x03,0x19,0x74,0x94,0xe7,0xd6,0x1f,0xe4,0xb1,0xee,0x7b,0x78,0xe1,0x8d,0x94,0x46,0x93,0x52,0xdf,0x0c,},"\x41\x25\x9b\x6e\xef\x13\xd6\xff\xe3\x3c\xdd\xe7\x99\xb9\x95\xc4\x0b\xe7\x82\xcf\x97\x84\x40\xb6\x6b\xe5\x1c\x44\x05\x82\xab\xd4\x2f\x52\x66\x96\xbb\x3c\xb9\x22\x65\xb1\xed\x0e\x4b\xba\x76\x4c\xae\x28\x39\x83\x0a\x25\x26\x35\xdc\x80\xce\x5f\x73\xd5\x21\xb3\xd6\xff\x03\xac\x30\xe1\x98\xad\x20\x56\x7e\x75\xa3\x4f\xa8\x25\xeb\xf9\x84\x15\x08\xda\x84\xcd\x67\x42\x36\xca\x7b\x43\xde\x35\x64\xc9\x4a\xb0\x79\x40\x8f\xd9\x41\x37\xce\x3f\x90\xa5\xdd\x5d\x3a\xc3\x9a\x05\xec\x86\x71\x5a\x8f\x02\x5e\x45\x39\xa7\x64\x0a\xb8\x88\x36\xf4\xef\xba\xbd\x5e\x16\x52\xc4\x9e\xa2\x16\x13\xac\xfe\x34\x3a\x88\x0e\xe5\xa4\x2f\x2f\x91\x34\xef\x4e\x37\x16\xb1\x6d\x13\x4a\x9c\x4c\x71\xc3\x9b\x3c\x1a\x85\x7d\x3c\x89\x43\x97\x83\xee\xf1\xed\xd7\x1b\xf4\x49\x2d\x05\xfd\x18\x67\x3a\x52\x42\xff\x41\x87\xb9\xde\x47\xad\x49\x68\xda\x49\xdb\xa5\xa6\x09\x2e\x95\xea\x27\xdd\xfc\x74\x48\xdc\xf5\x97\x2d\x9d\x22\x8d\x63\xe5\x29\x1b\xa6\xe6\xfb\xd0\x7e\x32\x41\xf9\x36\x6c\xa4\x97\x6b\xb0\x4b\x22\xd0\x1f\x0d\xba\xe7\x94\xfa\x9c\x1d\x90\x29\xf8\x8a\x83\x60\x2b\x0e\x0e\xc5\x5e\x22\xc3\x7b\x20\x11\x25\xca\xdb\x53\x41\xef\x73\xf6\xda\x1a\xbb\xe2\xb1\xc4\x75\xf0\x75\x03\x45\xb1\xbe\x42\x59\xd8\xc2\x85\x31\xff\xe7\x78\x86\x67\xc4\x10\xda\xc3\x39\x91\x8c\x86\x9b\x00\xab\x80\xf2\x0b\xf7\x99\x0d\x36\x6f\x9b\x3d\x5e\x8e\xb2\xf4\x8d\x7e\xd0\xe6\x4b\x85\xdc\x9f\xe3\xbb\x99\x8b\x1e\xec\xd1\x23\x1e\x90\x2d\x2d\x15\x2e\x09\xda\x2d\x25\x92\xbd\xb3\x2c\x8c\xd2\xe2\xc4\x89\x49\x6b\x29\x80\xc0\x3d\xbb\x09\xec\x7f\x8a\x4e\xa2\xc7\x02\x0f\x2a\x0f\xaa\x65\x7c\xd6\xce\xd4\x8d\x6d\xa2\x78\x64\xcf\x5e\x97\xee\xa9\xb3\xc2\xf0\xf3\x4a\xbf\x8d\x87\xbd\x2a\xde\xb6\x0c\x72\x72\xfc\x43\x06\xd9\x55\xbd\xc8\x02\x3d\x7d\x3d\xc2\xf3\xda\xfe\x9e\xbe\x8a\x8d\x13\x89\x65\xa7\xf6\xce\x93\x51\x7c\xd2\x09\x96\x63\xf6\x7c\x34\x55\x21\x76\xdd\xb5\x95\xac\x6e\xa5\x60\x9f\xeb\xcf\x24\xc7\xd6\x9d\x41\x27\x09\xe5\x78\x67\x0a\x21\xac\x8a\xfc\xcb\x8b\xf2\xb1\x8f\xf3\xaf\x7d\xe2\x1d\xc7\x1d\x50\xd6\x0d\x37\xb6\xed\x72\x9d\xb0\x4b\xef\xf7\xd3\x4b\x29\x20\xd8\x75\x51\xce\x15"}, {{0xc1,0xd4,0x72,0x4c,0x6c,0xb1,0xbc,0x67,0x23,0xb2,0xb4,0x30,0x34,0x27,0x8b,0x3c,0x5b,0x48,0xfe,0xd7,0xf8,0xa3,0xcc,0x23,0x18,0x03,0x3e,0x75,0x52,0x04,0x73,0x51,},{0xc2,0x7e,0x39,0x2e,0x7c,0x36,0x64,0xb9,0x06,0x1e,0xa7,0x6d,0x25,0x75,0xdd,0x7c,0x41,0xea,0xf1,0xda,0x3a,0x65,0xf3,0xa9,0x86,0xe0,0xa5,0x7f,0x6c,0x40,0xc1,0x7e,},{0xd3,0x7a,0x6e,0xc8,0x2e,0xd4,0x5c,0xa9,0xb4,0x85,0x5d,0xe9,0xcb,0x94,0x25,0x64,0xe8,0x83,0xff,0x70,0xa7,0x9b,0x8e,0x71,0x2d,0x5f,0x60,0x4e,0xc8,0x97,0x4d,0xe5,0x36,0x3a,0xc8,0x49,0xcb,0xab,0x28,0xe7,0xae,0xef,0xf2,0x8e,0xd3,0xf2,0xd1,0x4b,0x60,0x8b,0x31,0x46,0xc2,0xef,0xe0,0x73,0x5a,0xd8,0x15,0xc7,0xd7,0x5a,0x1a,0x01,},"\xde\xee\x99\xd7\xa7\x7d\x43\x00\xc1\x7a\xec\x1a\xb3\x23\xc5\x71\xc6\xe9\xe7\x3a\x43\x49\x1a\x3c\x78\x88\xb7\x6f\xc0\x3e\xc4\x3d\x07\xaf\x42\xa0\x5a\x2a\xa3\x22\xd0\x0c\x85\x60\xac\xef\x31\x41\x06\xb1\x0b\x9b\xd1\x26\x54\x35\x7f\xfa\x26\xf2\x39\x00\x50\xda\x63\xd6\x68\xc9\xe2\xdf\x54\x8f\x87\x63\x9e\x09\x6a\x35\x85\x3f\x82\xe7\x61\xfd\x71\x1d\x2a\x26\x54\x38\xf5\xd4\xdb\x5e\x32\x77\x57\x08\x15\x0d\xa6\xcb\x68\x6a\x2b\x4c\xa2\x11\xd7\xf0\x0d\xc0\xab\xcb\x2c\xa1\x50\xe7\x91\x11\x6a\x10\xa5\xef\xcf\xf3\x51\x4d\xab\x8e\xd8\x0a\x70\x92\xc3\xa0\x15\x15\x2c\xb2\x5d\x9f\x86\xec\x0d\x1c\xa6\x7d\xda\xb4\x4d\x64\xee\xb1\xf9\x31\xbf\xab\x2a\xb1\x88\x95\x6c\x74\x3d\xb4\x81\x48\x08\xc5\xcd\xe1\xb0\x74\x5b\x3e\xdd\x34\x0e\xb0\x3f\xfc\xc8\x0a\x78\xf3\xdb\x31\x0f\x4f\x5c\x20\x00\x9f\xc0\x27\x9c\x2c\x1b\xcb\x3c\xed\xf9\x90\xbd\x0e\x20\xc6\xf9\xfb\x75\x15\xad\x6e\x93\x3b\x07\xe9\x9d\xa6\xac\x32\xb9\x71\x41\x18\x7e\xf6\x3b\xdb\x10\x62\xe3\x72\x20\xa4\xdc\xd4\x19\xd6\x24\x4c\xdc\xc3\x4e\xa4\x1d\x0b\xcb\xc3\x13\x8b\x1d\x54\xae\xfc\x01\x90\xe3\x0b\x18\x7d\xb0\x73\xaa\x7d\x6c\xfe\x04\xbd\x3f\xd2\xac\x00\x31\x3e\x3d\xdd\x64\xa1\x81\x93\x5c\xa4\xb8\xb2\xa8\x5d\x36\xbc\x27\xd9\x7b\x76\x26\x76\x7b\x93\xee\x38\xde\xf8\xb6\xb2\xc8\xda\x9b\x00\x26\x36\x14\x34\x2f\xaa\x9d\x3e\x73\x8d\x27\x13\xc4\x5f\xfb\xee\xf8\xc8\x4b\xcd\xbc\x8d\xa4\x30\x9c\x84\x45\x53\x0f\x5c\x61\x7d\xc8\x66\x25\x1f\x54\x89\x50\xa1\x4f\x07\x5a\xa3\x11\x7f\x96\xe4\x1f\x89\x9d\xbe\x73\x40\xb1\xd9\x0a\x13\x52\xd3\xb8\xfb\x41\xb7\x9f\x16\xa8\x2b\xc2\xe4\xa1\x93\xb8\xa7\x23\x24\x00\x99\x6b\x73\xb1\xfc\x00\xb2\xec\x1c\x66\x75\x77\xf8\x28\x24\xd3\x9f\xb7\xf6\xe7\x69\x2d\xcd\x97\xb1\xd8\xce\x94\x08\x3c\xa1\x97\xe9\xa5\xd4\x0f\xad\xff\x0b\x9a\xc5\x7e\x9d\xe7\x61\xc1\x56\xe6\xd3\x1d\x52\xc3\x32\xd5\x13\xe9\xf5\x86\x97\xdc\xbd\xd8\x0a\x5e\x42\xc5\x51\x70\x2c\x3d\xe7\xbe\xcc\xc3\xdb\x84\x5b\x1a\x04\xc8\xcb\xd4\x16\x95\xea\x74\x28\xab\xba\x89\xe0\xdc\xe3\xe3\xd9\xe7\x02\x30\xae\x91\x47\xc2\xb8\x85\x59\xdc\x69\x5d\x68\x09\xa5\x1c\xcb\xc1\xdd\x9e\x08\x9c\x58\x5f"}, {{0x37,0xc0,0x70,0xd4,0xa5,0x3b,0x13,0xbe,0x76,0x06,0x35,0x11,0x0d,0x1b,0xd4,0xf0,0x19,0x20,0x22,0x5a,0xfa,0xbe,0xc5,0x76,0xfa,0xae,0xc9,0x10,0xf2,0x92,0x6d,0x1a,},{0x0a,0xa8,0x5f,0x2a,0xb1,0xdf,0xf8,0x95,0xd1,0xfa,0xd0,0xc1,0x19,0xf2,0xbf,0x57,0x12,0x6a,0xab,0x60,0x1c,0x52,0x8d,0x37,0x69,0x8e,0x97,0x70,0x2d,0x35,0xf5,0x25,},{0x9d,0xa6,0x0c,0xc4,0xa6,0x4d,0x07,0xde,0xe1,0x34,0x6b,0xd3,0xd3,0x01,0x09,0x95,0xce,0x27,0x38,0x20,0x8a,0xb3,0x5b,0x34,0xc2,0xa8,0xfd,0x17,0x87,0xae,0x3a,0x1e,0x20,0x7f,0xe7,0x84,0x52,0x51,0x54,0xfa,0xe4,0xf5,0x79,0x4c,0xd8,0x50,0x30,0x45,0xfe,0xa8,0x5c,0xf7,0x7f,0xd9,0x2f,0x6a,0x70,0xcd,0x0c,0x5a,0x52,0xc0,0x81,0x0e,},"\x10\xc6\x46\x44\x7f\x81\xad\x94\xd0\x15\xd8\x6d\x0d\x98\xb2\x45\x2d\xca\x60\xa4\x7a\xb3\x52\x64\x03\x5e\x33\xa0\x94\x2b\x95\x4e\x3e\x23\xb9\x1d\x81\x23\xb8\x59\x3c\x6a\xf7\xc8\xd3\xec\xd2\x90\xe0\xe5\xee\x36\xfd\x4e\x53\xb7\xbe\x63\x3a\x6c\xf0\x27\xa5\xac\x3f\x0f\x67\x9e\xb1\xbd\xd2\x10\xa3\x8e\xa6\xe4\x8b\x05\x58\xe3\x03\x01\x0a\xf4\x74\xe7\xf6\xdf\x2a\x4e\x45\x76\x99\xfc\x38\xe3\x69\x38\xb0\x5f\xfc\xaa\x1b\x69\x4e\x32\xf3\xd1\xb2\xcc\x5d\x00\xcf\x25\x6f\x12\x18\x4c\x87\x3e\x51\x90\x89\xec\x1d\xf1\x5b\x0d\xc7\x6e\x7b\xfe\x90\x78\x0d\xf5\x81\x36\xfe\x59\x7f\xce\x89\x4c\xa5\x63\xe0\x8e\xfa\x0f\x2d\x4d\x20\x8b\xed\xe9\xa8\x74\x88\x28\x73\xd2\x51\xba\xf0\x19\xfe\x46\xd1\xd6\x50\x4b\x3b\xcd\x24\x3b\x79\x53\x51\xf3\x4d\x2e\x76\x06\xaa\x97\x55\x28\xee\x50\xd5\x9e\xfb\x6e\xe6\x99\x2a\x89\xb2\x42\x69\x56\xc2\xca\x42\x47\xe0\xdf\x01\x29\x85\x29\x83\xe9\x76\x7a\x8e\xed\x1b\xc7\x33\x5f\xfc\xa8\xd0\x28\x9f\x04\x80\x7f\x67\xca\x7d\xa9\x71\xf5\x8d\xb8\xb9\xbc\x9f\xdb\xe4\xf8\x3c\xfe\x9a\x00\xf1\xca\x58\x47\x98\xbc\x71\xd8\x51\xff\x7c\xd6\xc5\x1b\x89\x90\xaa\xba\x4d\x38\xb4\x16\xb9\x22\x40\xdf\xb7\x0e\xe3\xc1\x2b\x5e\x73\x10\x57\x76\x2e\xf9\x08\x23\xfb\xf6\x83\xca\x06\xd0\x5c\x20\xd3\xae\x2b\x97\xa8\x3e\xbe\x70\xae\x17\xaf\xff\x9d\x16\x60\x9d\x54\x6d\x8d\x3c\x74\xbc\x28\x18\x84\x89\x4f\x3d\x49\xe0\x83\xf1\x0a\xe7\xc1\x1c\x1d\xca\x0e\xff\xef\xcf\xa6\xe0\xf1\x53\x50\x81\xfa\xc3\xa2\x81\x9f\xd2\xe3\x26\x55\x27\x18\x2a\xe9\xd3\x91\xb2\x32\xbb\x75\x42\xe6\x84\x55\xcd\x26\x77\x60\xdb\x65\x2d\x19\xe2\x2f\xb2\xed\x11\xcd\x13\x05\xba\x8d\x98\xc1\xeb\xf2\xd1\x96\x9b\x24\xd6\x4f\x3e\x31\x9a\xf7\x4e\x09\x20\x06\xd2\xa3\xff\x74\x48\x72\xa2\x0e\xbf\x18\xd1\x77\x48\xab\x71\x10\x80\x50\x96\xea\x13\x6b\xce\x2f\x96\x8b\x20\x5e\x65\x0b\x80\x3c\x53\x1d\x06\x77\x5a\xe5\xce\xea\x28\xbb\x92\xe9\xa0\xed\xec\x89\x51\xce\x20\x09\xa8\x8e\xe1\xb6\x4d\x9b\x9e\x89\xf6\x90\x51\x20\x33\x84\x21\x0a\x10\x2a\x44\xd2\xd6\x70\x31\x73\xb6\x85\x07\xdc\xea\xdd\x3b\xf6\x51\x0d\xf2\xa5\xce\xfd\x9c\x80\xe4\xf3\x85\xb2\xf9\xe6\x21\x58\x13\xed\x32"}, {{0x11,0x26,0x49,0x6a,0x58,0x2c,0xe5,0x8d,0x3d,0x61,0x8d,0xd8,0xa3,0x93,0x35,0x47,0xaa,0x7a,0x8a,0x30,0xfb,0x54,0x06,0x3b,0x8d,0xfd,0xd3,0x16,0x71,0xc6,0xc7,0x3d,},{0xe1,0x02,0x29,0xc6,0x23,0xfa,0x8a,0xd8,0x98,0x2c,0x3e,0x4c,0x36,0xff,0x52,0xdf,0x0f,0x21,0x9b,0x57,0x91,0x5b,0x6e,0x98,0x0e,0x5f,0xe7,0x2e,0xa0,0x96,0x2e,0x22,},{0xb3,0x0e,0xb5,0x6c,0xa9,0xb1,0x20,0xbf,0x84,0x9a,0x3a,0x9d,0x56,0xaf,0x03,0x3d,0xe8,0xa5,0x90,0xc9,0xe1,0x24,0x0c,0x1e,0x36,0xdb,0xc6,0xcf,0x0a,0x71,0xb7,0x8a,0x11,0xec,0x14,0x3f,0xb9,0x95,0x9a,0x8f,0x25,0xb5,0x77,0x11,0xd6,0xa9,0x0a,0x67,0xe0,0x1b,0xe3,0xa4,0xda,0x2b,0x69,0x39,0x48,0x69,0xbb,0x8d,0x64,0xb8,0x7e,0x0f,},"\x6a\x4b\x52\xd7\x30\xdd\xab\x82\x9b\x2a\x17\x95\x90\xcb\xd4\xc3\x72\x49\x8e\x9f\x43\x99\x77\xc0\xa1\x0d\xc1\x3c\x0a\xe1\x73\x6e\xaa\xff\x06\x33\x71\x43\x4f\xd0\xda\x80\x36\x0e\xc5\x89\x06\x07\xd2\xfa\xe1\xc9\xa2\xe1\xab\x0b\x7f\x3d\x66\x7f\x5b\x1b\x9c\x41\x8f\x18\xb1\x0c\x9e\x6f\xd6\x69\xd3\xeb\xec\x16\x8e\xfe\xf4\x41\x63\xe5\x77\xa2\xeb\xd0\xf2\xcb\x76\x8f\x80\xc2\x31\x88\xe8\x60\x69\xe4\xd1\x0f\x41\x03\x06\xce\xdd\x7a\x34\x1a\x61\xe0\xf4\xf3\xbc\x25\x04\x1b\xc2\xf9\x22\xed\x07\x3e\x1e\x2f\x1b\x70\x9c\x57\x9d\x10\x63\x0f\x33\x07\x17\x54\xd7\x07\x89\x4a\x1c\x62\x19\x0d\xe1\x88\x82\xc5\x64\xdc\x4c\x01\xdc\x54\x5d\xd8\x96\x64\x04\xed\x78\xfa\x32\x67\xa9\x46\x9f\x63\xb6\x12\x0a\xbb\x65\xf9\xb3\xba\x3e\xee\x28\xd7\x9c\x2e\xb4\xe7\x02\x0c\xc6\x98\x7d\xfc\x5c\x29\x67\x2f\x8c\x0f\xa3\xe6\x90\xd5\x84\xfe\x00\x0c\x64\xf3\x52\x61\x01\x79\x62\x1b\xfd\x5f\xf3\xeb\x30\xd1\x8f\x1a\x02\x50\x41\x6d\xb9\x3b\x1c\x1e\x93\xcf\x8a\x36\x46\x51\x75\x60\xd1\xcc\x8f\xff\x82\x2b\x51\xef\x27\xb2\x00\xe9\x87\xb5\x92\x39\x07\x53\x45\x3e\xf1\x38\xbd\x3d\x29\xdb\x7c\xb1\xb5\xf4\x5e\x47\x95\xb8\x9c\x53\xf4\x97\x04\x19\x27\x52\x23\x7c\x6a\xb2\x74\x84\x9f\x95\x94\xee\x97\x77\xf6\xef\xe7\x04\x83\x12\x9d\x06\x7f\x97\x19\x9d\x9a\xe3\x60\x90\x70\x38\x64\xf7\xca\x47\x50\xa6\xf3\xb6\xff\x83\x82\x4c\x91\x04\x84\x39\x4d\x1e\x2e\xce\xba\x18\x44\x6f\xe4\xe9\x94\xce\x07\x43\x3a\x74\x0d\xdd\x05\xf0\xe3\x96\xd4\x82\x89\x4e\x6f\x14\xac\xf7\xb9\x7b\xae\x6c\x7e\xb8\x87\x03\x03\x9f\xa7\x85\xd6\x0a\x3a\xf7\x8b\x13\x24\x3a\x4f\x88\xdd\xe1\xd9\x98\x61\x7f\x2e\x3f\xa7\xea\xfc\x2f\x43\x5d\xd4\xac\x1e\xa9\xc2\x38\x40\x7a\xa0\x9b\x4e\xea\x8e\xd4\x34\x92\x7b\x40\x66\x74\xac\x27\x04\x58\xcf\xb3\xbf\x29\xc3\x47\xf9\x45\x59\x61\x31\x79\xb9\x50\x21\x92\x32\x1b\x88\xe9\xaf\x0a\x90\xe9\xa4\xab\x9e\xdd\xaa\xe3\x82\xe3\x73\x4d\x14\x15\xeb\xe3\x24\x99\xc3\x4e\x6f\xde\xaf\x15\xb0\xd9\x78\x79\x85\xe0\x8d\xfe\x49\x54\x60\xc5\x4f\x67\x43\xd8\x1f\xf1\x68\x81\xe5\xe3\x0c\x51\xf4\xb0\x92\x37\x37\x83\xf1\x24\x23\xc3\xe1\xae\x85\x91\x13\x0a\x26\x99\x80\xca\xa1\xcb\x5c"}, {{0x9c,0x16,0x7a,0xff,0x3b,0x1b,0x78,0x8f,0x13,0x3d,0x42,0x2d,0xe8,0xca,0x9a,0x64,0x31,0x64,0x09,0xf9,0xe3,0x5b,0xfe,0x22,0x03,0x2e,0xc4,0x17,0xae,0x9a,0xbc,0x6d,},{0xef,0xb5,0x34,0xf0,0xd4,0x7c,0x06,0x8e,0x77,0xb2,0x8a,0x90,0x6d,0x95,0xad,0x8d,0x21,0x3a,0x4d,0x4f,0xc1,0xc7,0x05,0x42,0xf0,0x1e,0x59,0x6d,0x57,0xb5,0xf0,0x19,},{0xc9,0xae,0x67,0xfd,0x64,0x15,0xdc,0xba,0xb2,0x92,0xfa,0xb3,0x94,0xca,0x6c,0x3b,0x7d,0x90,0xca,0x24,0x4d,0xc6,0xa7,0x76,0x4e,0x74,0xfd,0x20,0x2b,0xf4,0xb2,0x90,0x5b,0xd2,0x03,0x0e,0x6b,0xeb,0x91,0x4c,0x3c,0x23,0x8d,0xb3,0x71,0xb1,0xcb,0xa6,0xd9,0x26,0x1a,0xa3,0x92,0xec,0x87,0x1a,0x4b,0x8b,0x12,0xfe,0x9c,0x1c,0x97,0x0e,},"\x68\xac\x0f\xc2\xb6\x07\xba\x38\xe3\x77\xfa\xe8\x45\xc8\x08\xc8\xf9\xfa\x61\x4e\xb1\xf3\x11\x58\xa9\x62\x0a\x93\x7d\x3e\x30\x1e\x85\xac\xaa\x69\x14\x4b\xc3\x49\xa3\x9d\xfb\x58\x20\x41\xc4\xa1\x97\xae\x99\xb4\xd4\xd5\x9b\x7a\x2c\xa3\xd1\x62\x28\xb5\x59\x1c\xbf\x57\xc1\x8a\x78\x1e\xfd\x19\x19\x3c\x47\xb1\x6c\x60\x23\xa3\xa8\xba\x3d\x66\x8f\x05\xa3\x7f\x1e\x83\xb0\xd7\xfe\xbd\xd1\x0f\x63\xe4\x8e\xf7\xa2\x0e\x01\x5b\x1c\x67\x25\xd4\xc3\x00\xa9\x86\xc6\x0e\x3a\x11\x54\x69\xc8\xe5\x2b\xa0\x5b\x51\xc0\x5d\x0a\xf4\x0d\x89\xfd\x9e\xd7\x6f\x36\x95\x0a\xee\x3c\x78\x19\x89\x8a\x90\x3c\xfe\x03\x61\xa9\x1c\x69\x10\x0b\x49\x51\x41\xe8\x6e\xe7\x9d\x63\xd1\x74\x03\xfb\x1a\x16\x29\xef\x63\xcb\x7e\x9d\x27\x20\xcb\xff\xf0\x00\x2b\x19\x0b\xcd\xc2\x67\x94\x12\x4d\xd3\x8d\x42\xbc\xaa\x71\x75\x40\x5e\xb0\xbb\xcf\x8e\x37\xd6\x5d\x05\xa3\x71\x95\xb4\x79\x37\x1f\xa2\xbb\xbb\x16\x7d\x91\xce\xe8\x82\x35\xdd\x72\xea\x88\xfc\x73\xce\x3c\xe4\x3d\x33\xb7\x15\xf2\x5f\x19\x2e\xc2\x15\xda\xc1\x24\x89\x9c\x5e\x75\x86\xe8\x63\x40\xd8\xcb\xe5\x37\x35\xde\xfb\xe0\x2e\x4c\xc9\xfd\xe6\x9f\xb9\x79\x4d\x1d\xb7\x2b\x98\xc0\xf1\x97\x66\xee\x51\x38\xbb\xfa\x78\x90\x9a\xa2\x99\xb4\x91\x3c\x49\x9d\xea\xf5\x4b\x48\x41\xd5\x04\x48\x29\x98\x49\x36\x70\x0d\xcf\x92\xf3\x65\x42\xb2\xfc\x7e\x86\x44\x1b\x99\x25\xf5\xd0\xb7\x8c\x17\xa8\x5c\xfc\xfc\xb2\x0b\x0f\xd7\x51\x34\x9c\x27\x46\x3a\xbd\xe4\xd2\x7d\xf7\x42\x65\x28\x87\x13\xf9\x6d\xea\x01\x3b\x94\x55\x21\x80\x8b\x49\x96\xb1\xb2\xdc\x03\x38\xb6\xd2\x36\xef\xd6\xd2\xb2\x7d\xaf\xda\x46\xec\x5f\xa3\x2b\x96\x5e\x8b\xb5\xe8\xbb\x61\xbd\x96\x6e\xde\xb7\x74\x68\x1e\x0e\xa8\xc1\x7b\x8c\x99\xfa\x7d\x66\x0f\x0f\x66\xc9\xbc\x6d\x95\xcb\xd7\xdc\x09\x47\x24\x09\x8e\xb0\x51\x91\xb5\x3a\x3d\xf6\x56\x6b\x9c\x90\xe0\xd7\xdf\xf2\x94\x38\x48\xb6\x1a\x20\xd4\x8c\x22\xb6\xd3\xc9\x58\xe2\x93\xd7\x09\xc8\xf4\x81\x10\x23\x0f\xf5\x19\x18\x56\x28\x77\xda\xf6\xd9\x20\xc8\x5a\x82\xe0\x7c\x45\x1f\xe7\xae\x97\x59\xc0\xa7\x7e\x97\xbb\x29\x8b\x5d\x05\x92\xa4\x1d\x08\xf6\x7a\x4e\xd5\xa1\xbb\x41\xe9\x37\xb6\xa6\x8a\xeb\x38\xfd\x5b\xe9"}, {{0xe9,0x94,0x88,0x05,0xeb,0x34,0x1b,0x28,0x67,0x47,0x9c,0x66,0x8f,0xd3,0x53,0x2c,0x30,0x99,0x41,0xc0,0xad,0x4c,0xb2,0xe5,0x42,0x31,0x75,0x6e,0x6a,0x1b,0xde,0xcb,},{0x54,0x47,0xa8,0xe3,0x4d,0x6a,0x64,0x00,0x02,0xd8,0xd6,0x0b,0xcf,0x1d,0xdc,0x71,0x1e,0x4c,0x46,0x5c,0x94,0xc3,0x4b,0x50,0xbd,0xef,0x35,0x89,0x60,0xff,0x81,0xf1,},{0xd3,0xdc,0x62,0xd6,0xce,0x9c,0x76,0x6f,0x2a,0xba,0xf9,0xa7,0xfb,0xe0,0x9d,0x6b,0xdb,0x07,0xa4,0x74,0x7b,0x56,0x08,0x0d,0xb0,0x9b,0xeb,0x4a,0x4e,0x80,0x4a,0x70,0xd7,0xdd,0xf4,0x11,0x94,0x75,0xc7,0xbe,0x83,0x4f,0x31,0x95,0x6f,0x4a,0x71,0xda,0xd0,0x29,0xcd,0xf2,0x36,0x3d,0xd0,0x36,0x5c,0xe2,0x2d,0xc2,0x7f,0x07,0x80,0x03,},"\x91\xcf\xfd\x7e\xb1\xcf\x6b\xd4\x75\x6b\xce\x6a\x30\xaf\x9d\xfb\xa2\x6d\xdd\x1c\xce\x03\x94\xc1\x94\xa3\xe3\x9c\xc3\xd1\xcb\xc2\x21\xb7\xeb\x70\xbe\xa1\x8d\x29\xc2\x67\x45\x71\x76\xa3\xc9\xe5\x3c\x18\xe4\x7d\x10\xa6\x7c\x46\x45\x05\x19\x77\x02\xe6\xb2\x47\x0d\x38\x86\x9d\xb5\x17\x4b\x15\x8f\x99\x92\xe4\x43\x5d\x02\x24\x6f\x54\x02\x58\xde\xdd\x3c\xe3\x3d\xf5\x82\x55\x5a\x68\x1f\xb7\x6e\xca\xcc\xb1\xc2\x98\x9b\x17\x7e\x3b\x7e\x45\x4a\xaa\x52\x9d\xe5\x9b\xf5\xa0\x31\x23\xd5\x71\xdf\x2e\x7f\x7c\xb8\x30\x80\x5c\x58\xb7\x4a\x65\x3b\xac\x0e\x5a\x88\x8e\x08\xdc\x22\x36\xd6\xcd\x49\x6a\xa0\x6d\x0d\x67\xcf\x3b\x33\x5e\x21\x8c\x49\xde\xda\xd8\x2f\xc1\xbe\x9e\xf2\x0c\xac\x61\x90\x5c\x30\xeb\x13\x2d\x73\x9b\x16\xca\x8a\x8c\x90\x66\x19\xc0\xe0\xd8\xb3\x39\x85\x32\x7e\x36\xf3\xd4\xb8\xfd\xa3\x87\xc1\x86\xcc\x50\x44\x31\x04\xdb\x76\x1f\x7f\xf9\x30\x12\x70\x20\x4a\x71\x3e\x58\x90\x21\x01\xfa\xd0\x00\xce\x93\x16\x47\xc5\x77\xfd\xec\x14\x8d\xca\x95\xcd\xc0\x89\x18\xeb\xed\x03\x7c\x60\x33\x2f\xad\xf0\x88\xf0\x36\x08\x3e\xbc\x92\xe1\x73\xb7\xdd\xcc\x30\xc4\x93\xf2\x7e\x69\xcd\x17\xa2\x0d\x30\xb7\x8f\x83\xa7\x2e\x4f\x5a\x74\x7d\x86\xd9\x6c\x5e\x1b\xb7\xa4\x38\x16\x62\x04\x01\x3e\x21\x64\xd6\xaa\xbc\x0d\x56\x2f\x54\x01\x5c\x36\x5c\x80\x44\x56\x07\x14\x5e\x56\x92\xee\x34\xf6\x35\x30\x77\xfa\xb7\x45\x2d\x88\xce\x3e\xb0\x1d\x2b\x37\x97\xdc\x91\xb3\x41\xa3\xa7\x26\x30\x15\x16\xba\xae\x18\xe8\x51\xf7\x4d\xfb\xdf\x08\x66\xbb\x23\x76\x86\x7d\xe5\x52\x31\xe3\x62\xc4\x72\xc5\x21\x16\x54\x4c\xd4\xf8\x1e\x93\x57\x1c\x4e\xc8\x20\xe7\xe6\x53\xf4\xe2\x1b\xe0\xa9\x42\x57\x6c\x9d\xe9\x1e\x7d\x12\x51\x68\x3d\x85\x9d\xe4\x48\xf8\x22\xdc\xf3\xd2\xcf\x55\xed\xe2\xf9\xc7\x1b\x60\x63\xd1\x37\x30\x61\xf8\xf5\x93\x6b\x69\x8d\x13\x84\xe6\x54\x59\xea\x2b\xc2\x6e\xc9\x67\x75\xef\x42\x52\x07\x43\x2d\xda\x0a\xc1\xfe\x28\x52\x6c\x5e\x45\x59\x34\x9c\x3d\x8d\xf9\x91\x82\x30\xf4\x04\x46\x83\xcc\x2c\x1b\x85\x8d\x14\x1a\xb8\xd0\x80\x5b\xb9\x33\x60\x67\x52\x2a\xa8\x9c\x81\x0f\x3e\xaa\x7a\xc2\xd8\xdd\x28\xc3\x75\x12\x25\xa1\x9e\xce\xc8\xbc\xca\x52\x43\x99\x46"}, {{0xb0,0x17,0x53,0xef,0xa7,0x3b,0xb3,0xde,0x7a,0xa7,0x78,0xbe,0x7a,0xfc,0xbf,0xf6,0x6a,0x5d,0x3e,0x2c,0x2f,0x8b,0x5a,0xa2,0xb0,0x48,0x84,0x40,0x50,0x99,0x69,0x65,},{0xd0,0xcc,0x6c,0xf1,0x09,0xc9,0x99,0xfb,0xf6,0xd1,0x6f,0x47,0x1f,0xaf,0xd0,0x23,0x2b,0x0a,0x68,0xd4,0xc4,0x64,0x06,0xec,0x75,0x45,0xdb,0xab,0xa8,0x19,0x41,0x58,},{0x16,0xb7,0x42,0x12,0x27,0xae,0x09,0x13,0x06,0x85,0xcb,0xb1,0xa0,0xc6,0x0a,0xa5,0x7a,0x5e,0x1a,0xfe,0x1b,0xbe,0x6b,0xac,0xea,0x0c,0x28,0x1b,0xcc,0x89,0x98,0xe6,0x82,0x4a,0x77,0x2c,0x32,0x08,0xa6,0xb6,0xb4,0xd2,0x36,0x69,0x55,0x05,0xc9,0xbe,0x82,0x70,0x0c,0xf9,0x3a,0x78,0x39,0x85,0xa3,0x9e,0x16,0xe3,0x77,0xa7,0x41,0x0e,},"\x68\x4e\x61\x2f\x27\xee\xad\x0d\x34\x84\x4c\xc8\x1b\xa9\x11\xc2\x8a\xaf\x6d\x66\xe7\x12\x29\xe8\xcc\x34\x62\xf7\xc7\xa0\x50\xda\xa3\x0c\xb7\x44\x71\x15\x0f\x07\xda\xd4\x59\xb5\xa9\x13\x58\x47\x6c\x05\x98\x25\x5d\x8a\x64\x2d\xd7\xc0\x80\x28\x11\xbd\x88\xe4\xca\xc5\x97\xef\xe4\x1e\xbd\x96\xcd\x0f\x3b\x5c\xe7\x2d\xb4\xbe\x1a\x3d\xbd\x6b\x84\xf5\x44\x6e\x3d\xa6\x00\xd3\xb1\xd2\xb4\x60\xa0\x09\xbd\x31\xca\xcd\x98\xa9\x15\x18\xce\x33\xe9\xa7\x03\xd4\x04\x28\x87\x36\xcc\xc4\x31\x03\xfc\x69\xe6\x79\x74\xf3\x16\x52\xfa\x3d\xad\xef\x33\x37\xf6\xc8\x97\xa3\xd2\x01\x30\x3c\x8f\x03\x59\x7b\x4a\x87\xc9\x8f\x29\x1c\xcd\x58\xa3\xf1\xe8\x98\x33\x2a\xa5\x99\x3b\x47\xfc\xb5\xdd\xaa\x1c\x08\x68\xb6\x43\x74\x2d\x0e\x4a\x4b\x9c\xd4\x27\x03\x8b\x3b\x74\x99\x9b\xc8\x9a\xc3\x48\x4c\x0c\xa1\x3f\x25\xaa\xe8\xe7\x8a\xe1\xcc\xee\x62\x18\xac\xca\xb8\x1a\x4f\x69\x4f\x53\x24\xa3\x47\x62\x9d\x49\xb5\x5e\x40\x37\x50\x4a\x9a\xcc\x8d\xf5\x8c\x68\x41\xdd\xdc\xd4\xfc\x43\x47\xf7\xb6\xf1\xfd\x9d\xe0\x56\x45\x77\xe6\xf3\x29\xed\x95\x1a\x0a\x6b\x91\x24\xff\x63\xe2\x2e\xb3\x6d\x3a\x88\x63\xbc\x1b\xf6\x9c\xea\x24\xc6\x05\x96\x7e\x7d\x89\x48\x95\x3f\x27\xd5\xc4\xc7\x5f\x08\x49\xf8\x72\xa3\xe3\xd1\x6d\x42\x2f\xa5\xa1\x1e\x1b\x9a\x74\xdf\x6f\x38\xb9\x0f\x27\x7d\x81\xfc\xe8\x43\x7a\x14\xd9\x9d\x2b\xef\x18\x9d\x7c\xac\x83\xdd\xc6\x13\x77\xed\x34\x8b\x3c\x4f\xc0\x9e\xc2\xb9\x00\x59\x25\xd0\x4a\x71\xe2\x6d\x64\x16\x67\xbd\xf5\x49\x29\x43\x31\xc6\xea\x01\xcd\x5c\x0b\xd1\xb6\xa7\xec\xfd\xa2\x0b\x0f\x19\x29\x58\x2b\x74\x69\x7c\xb2\x62\xc3\x92\x7d\x6b\x22\x3f\x4b\x5f\x30\x43\xaa\x6e\xb4\x57\x1a\x78\xe9\xda\x11\xc2\xb3\x6f\x64\x55\x25\x80\xca\xa7\xb5\xfa\x6b\x90\xf9\x29\xe0\x16\x2e\x60\x8d\x12\x40\xd7\x24\x2c\xd2\xf4\x70\x25\xc0\x3d\xeb\xe0\x59\xb1\xdc\x94\x77\x02\x32\xbc\x67\x65\x14\x84\x80\xbb\x1d\x9f\x50\xda\x1e\xe6\x44\x8c\xf9\xc8\x8b\x19\xdd\x45\x99\x32\xc0\x6e\xd8\x11\xc4\xa6\x4a\x12\xd5\x93\x8b\xd1\xc7\x57\xbc\xfa\xea\xee\x89\x33\xfe\x5f\xff\x21\x76\x3d\xe7\x40\x48\x2b\xcf\x1b\xa5\x9a\xfd\xc8\xfc\xf8\x73\xc3\xd5\x07\xbb\x39\x4e\x32\xe4\x5f\x73\x65\x19"}, {{0x4f,0x4b,0x20,0xd8,0x99,0x36,0x6f,0x2f,0x23,0xee,0x62,0x8f,0x22,0x9b,0x23,0x6c,0xf8,0x0f,0x43,0xba,0x18,0x31,0x77,0xc9,0x7e,0xe3,0x48,0x29,0x54,0x6f,0x17,0x42,},{0xc9,0x45,0x76,0x64,0x1f,0x4a,0x89,0x3c,0xdf,0xce,0xe7,0xb3,0x9f,0xc2,0x19,0x29,0xb8,0x6b,0x34,0x99,0x76,0xd7,0xb0,0xa4,0x6d,0x39,0xa5,0x88,0xbc,0xfe,0x43,0x57,},{0x0f,0x80,0xff,0x5d,0x17,0x48,0x8f,0xe2,0x6f,0x93,0xc5,0x43,0xb0,0x4e,0xd9,0x59,0xb5,0xf0,0x64,0x3f,0xc6,0x1c,0x7f,0x2c,0x3b,0xc6,0x01,0x32,0xba,0x9c,0x62,0x10,0xc8,0xb2,0x50,0xea,0x5e,0x84,0xd0,0x7b,0x01,0xde,0x68,0xbc,0x17,0x44,0x14,0xee,0xeb,0x31,0xfd,0xc2,0xba,0x68,0x23,0xe2,0x31,0xe3,0x12,0xa9,0x1e,0xde,0xdd,0x02,},"\xdb\x8e\xf0\x2e\x30\x33\xe6\xb9\x6a\x56\xca\xb0\x50\x82\xfb\x46\x95\xf4\xa1\xc9\x16\x25\x0d\xd7\x51\x73\xf4\x30\xa1\x0c\x94\x68\x81\x77\x09\xd3\x76\x23\x34\x6a\xe8\x24\x5b\x42\xbd\xa0\xda\x6b\x60\x46\x2c\xcf\xdf\xc7\x5a\x9a\xb9\x94\xe6\x6c\x9a\xb9\xfe\xcd\xd8\x59\x96\x10\x91\x0a\xff\xe4\xf1\x02\x15\xcb\x28\x0b\xf8\xf9\xf2\x70\x0a\x44\x47\x96\xda\xe9\x3e\x06\xc6\xbe\xa7\xd8\xb4\xfe\x13\x01\xba\xa7\x9c\xce\xc7\x69\x36\x8f\xeb\x24\x42\xc7\xde\x84\xf0\x95\xe6\xb3\xbf\xf6\x3d\x38\x8c\xba\xfb\x2b\x98\x09\xdc\x38\xe9\xb1\x2e\xbd\x03\x9c\x0a\x57\xf4\xd5\x22\xe9\x1e\xc8\xd1\xf2\xb8\xd2\x3a\x4a\x0a\xe0\x59\xaf\x85\x39\x3b\xb0\xa1\x5f\x74\x91\x10\xf6\x77\x4a\x1f\xd7\x31\xa6\xec\x21\x3e\x4f\xf4\x35\xda\xab\x54\x6d\x31\xed\x9e\xc3\xb6\xd8\xcc\x2e\xda\xce\xbf\x4f\xac\xc5\x56\x65\x56\xee\xa9\x2e\x5b\x3f\x25\x42\x23\x9b\x25\xe2\x80\x12\xdd\x4e\xf4\x00\x72\xee\xbf\x83\xed\x2a\x25\x51\x81\xf3\xa4\x42\x18\x9d\x68\xc6\xc6\x09\xf4\xdf\xdf\x3d\xb7\xd6\x7d\x08\x7a\x2f\xcd\x6d\x2d\xc5\x0b\xbf\xed\x8b\xfb\xbf\xcb\x74\xd3\xc4\x1f\x02\xa8\x78\x65\xb1\x3b\x8e\xfc\xf5\xc3\x58\x12\x57\xbe\x0a\xa9\x13\xf6\x0c\x37\x05\x27\xbd\xe1\x1a\x47\x5c\x13\x6a\x17\xc5\xee\xfe\xb0\x3f\x5b\xff\x28\x69\x3e\xd8\x41\xe8\xed\x1f\x7c\x29\x10\x2f\x55\x99\xdd\x44\x40\x09\xbc\xea\x6a\x92\xd5\x57\x41\x52\x45\x8e\x0c\xaf\x8a\x36\xaa\x72\xb5\xdc\x49\x08\xa6\x46\x1c\x9b\x74\x14\x53\x00\x5c\x8f\xbc\xc6\x81\x13\xae\x18\x42\x08\xee\x14\xb8\x35\x48\x0c\x6e\xfa\xfe\xd1\x8a\x76\x00\x0b\x38\xe5\x85\x82\x90\xf4\xd5\x1f\x52\xf0\x96\xcb\xe4\x90\xe1\xeb\x5c\xac\xb2\x26\xec\x49\x5a\x55\xa7\xfa\x45\x78\x43\xd5\x7f\xab\x67\xf8\xbe\x7e\x20\x93\x34\x78\x5b\xdd\x66\x5d\x7b\x63\xe4\xda\xf5\x7b\x6e\x78\x92\x8b\x60\x3c\x8c\x0f\x9b\xc8\x54\x64\x73\x3b\x61\x27\x3e\xf9\xe2\xb8\xa0\xcd\x7c\x3b\xf8\xee\x0a\x68\x72\xe3\x4d\x5a\x27\xa6\x25\xe3\x5e\xaf\x7f\xf5\x44\x0b\x8b\x14\x1a\xf7\x04\xdf\x70\xc9\xc1\x86\x23\xbd\x11\x20\x95\x13\x19\x25\x05\x10\x5c\xd7\xbc\xfa\x5f\x0d\x91\x9d\xa7\x06\x94\x8f\xbe\x1f\x76\x1f\x31\x58\x46\xaa\x3b\x48\x13\xdd\x9b\xa3\xd8\x1b\x92\x04\xe5\x40\x9c\x03\x82\xb6\xeb"}, {{0xd2,0xe0,0x1d,0x25,0x78,0xb6,0x25,0xa7,0x06,0x0a,0xab,0xc2,0x57,0x65,0xf1,0x68,0xc6,0x80,0xce,0xf7,0x67,0xaa,0x97,0xca,0x0e,0x5e,0xb3,0xd6,0x67,0x47,0x4b,0x2a,},{0x19,0x1a,0xc2,0x23,0x57,0x54,0x24,0xaa,0x35,0x4b,0x25,0x5b,0x81,0x2d,0xd3,0x02,0x5d,0x70,0xed,0x82,0x9e,0x08,0x26,0xc0,0x16,0x29,0xf9,0xdf,0x35,0x45,0x08,0x2b,},{0x87,0xa0,0x10,0x39,0x4a,0x9f,0x2c,0x90,0x4e,0xff,0xef,0xca,0x9f,0xb4,0xd5,0xce,0x13,0x79,0x33,0x01,0xa4,0x92,0x5b,0xa5,0x1d,0xb1,0x19,0x12,0x3a,0x4d,0x73,0x0a,0xbf,0x76,0x4c,0xe0,0x65,0xe4,0x8d,0x90,0xa7,0x9d,0x90,0x7d,0x72,0x54,0xc4,0x0c,0xc3,0x58,0x98,0x7a,0x46,0x94,0x9e,0x92,0x8b,0xbb,0x3c,0xd0,0x85,0xdf,0xab,0x06,},"\x20\xd5\xdd\x69\x9b\x28\x53\x30\x2a\x68\x17\x09\x4d\x5e\xa5\x12\xbd\xf8\x53\x45\x04\xcb\x28\x9c\x60\x24\x67\x41\x07\x40\xec\x7e\xb8\xea\x64\x42\xc8\x0f\x14\x59\x35\x06\x8f\x91\x22\xfd\xf4\xa3\x9f\x20\x10\xf3\x3d\xb5\x5b\x81\x4d\x97\xbf\x2e\x58\x72\x32\x9f\x11\x26\xd4\xeb\x95\xb8\x06\xca\x19\x73\x11\x31\x65\xb1\x16\xbe\x87\x16\x37\x1f\x81\x33\x17\x79\xdc\x79\xa5\xcb\x39\x42\x08\x1a\xb5\xf2\x07\xf6\xb5\x3d\xb0\xe0\x03\x81\x07\xd6\x3c\xa9\x77\x08\x18\x19\x82\xdc\xb5\xf3\xb9\x30\x10\xec\x6e\xdf\xb2\xcf\xd3\x1c\xab\x00\x09\x0b\x3c\x38\x51\x5f\x97\x81\x76\x96\x86\xcb\x17\xab\x81\xd5\x4a\x8b\x77\x57\x54\xd4\x2f\xba\xd0\x86\xb8\x0b\x28\xd6\x36\xf7\x8b\x7e\xb7\x7e\xd9\xca\x35\xb6\x84\x3a\x51\x0f\x0a\xd0\xac\x1b\x20\x26\x7a\x00\x03\x01\xb3\xc7\x07\xa2\x0f\x02\x14\xd5\x9b\x5b\x81\x99\xc2\xf9\xee\x25\xd3\x20\x60\xac\xe3\xe0\xf2\x59\x46\x50\x41\x6a\x00\x71\x6c\xd3\xf9\x86\x04\xa5\xe1\x04\xb3\x33\x10\xfd\xae\x94\xc3\x14\x01\x3c\xdc\xa5\xba\x24\x14\x40\x9e\xb7\xf1\x90\x13\x94\xf0\x07\xd6\xfa\x0a\x29\xdb\xe8\xec\x3d\xf9\x8c\x39\x3c\x8d\x72\x69\x58\x77\xcc\x9b\xaf\x49\x1e\xf3\x0e\xf7\xdb\x33\x71\x60\x8c\xa9\x7c\xc6\x21\x56\x25\x20\xee\x58\x1d\x5d\x1c\xdb\xc7\x82\x32\xd6\xc7\xe4\x39\x37\xb2\xcc\x85\x49\xe6\xf1\xe0\x8d\xf5\xf2\xea\xc8\x44\xfe\x0f\x82\x2b\x24\x83\xad\x0a\x5d\xe3\x3b\xe6\x40\x89\x49\x0e\x77\xd6\x98\x00\xfa\xe2\x58\x9e\xe5\x87\x12\xac\x15\xa3\xf1\x9e\x6f\xfd\xbc\xa4\x2f\xe1\x89\x4e\x88\x9b\x94\xc0\x4b\x04\x24\x0d\xaf\xb0\xb2\x73\x0c\x23\x6b\x8c\xce\xb2\xcb\x97\xaf\xd1\xd5\x15\xdc\x19\xd1\x06\x7f\xd4\xab\xa8\xce\x29\x7f\xd6\xd1\x10\xb3\x5a\x21\xbd\x3c\x07\x5c\x57\x7d\x93\xfe\x1d\xf7\x7d\x64\x8f\x71\x19\x49\x20\x99\xb0\x17\xaf\x44\xeb\xa0\x9c\x80\x7f\x11\xa4\xc3\xf4\xa1\x1a\x2f\xff\x30\x6a\x72\x8b\xa7\x89\x83\x32\x3c\x92\xa2\xfd\x5f\xcc\x80\xc1\x8d\x42\x34\x26\xf8\x23\xa7\x3f\xe0\x40\x94\x95\x52\x84\x29\x3f\x5f\x6b\x3c\xa4\xff\x10\x80\xdb\xb1\xe4\xc6\xf7\x4c\x1d\x93\x5e\xd2\x1e\x30\x09\x4c\x7d\xe3\x36\xb8\x2d\xd8\x20\x0b\x0d\x65\x95\x83\xc5\xbf\xd5\x47\x0f\x9d\xb3\x42\xe7\x0e\xc4\x00\x07\x42\xc5\x64\x0a\x21\x4e\x3c\x2e"}, {{0x7c,0xd7,0xec,0x99,0xdd,0x03,0xae,0xde,0x1f,0xf1,0x07,0x3e,0xc2,0xca,0x70,0x10,0x27,0x6e,0x94,0x7e,0x2a,0xa9,0xb0,0xe6,0x5f,0x87,0x7e,0x4c,0xcf,0x1b,0x3a,0x14,},{0xe4,0xc3,0x9d,0xbe,0x94,0x93,0x17,0x6b,0x82,0x13,0xf1,0x42,0x2a,0x9d,0xe7,0xc7,0x4f,0xb6,0xa5,0x91,0x90,0xfc,0xdb,0xf6,0x37,0xc7,0xad,0x5e,0xe1,0x65,0xc0,0x4f,},{0x6f,0x99,0x20,0x27,0x70,0x96,0x45,0x35,0xe4,0x83,0xa0,0xee,0x01,0xa5,0x29,0x44,0x2e,0xb3,0x21,0x30,0x3f,0xa8,0x05,0xd4,0x75,0x60,0x4d,0x7f,0xc7,0x28,0xa9,0x10,0x3f,0xb7,0xb5,0x58,0xb9,0x55,0xf4,0xd0,0x37,0x19,0xee,0xfa,0xa3,0xb7,0xed,0x5b,0x0d,0xa7,0x57,0x10,0xbb,0x98,0x78,0x7f,0x5c,0x22,0x82,0xed,0x66,0xe9,0xf6,0x0c,},"\xa6\x03\x4a\xa3\xc2\x48\x49\x23\xe8\x0e\x90\xe5\xa8\xe1\x74\x83\x50\xb4\xf2\xc3\xc8\x31\x9f\xaf\x1a\x2e\x32\x95\x15\x0a\x68\xe1\xee\xca\x1b\xc8\x49\x54\xcc\x89\xd4\x73\x1a\x7f\x65\x12\xaf\x01\x46\x4f\xdb\xce\x5d\xf6\x8e\xe8\x06\x6a\xd9\xa2\xfd\x21\xc0\x83\x5a\x76\x55\x9c\xa1\xc7\x44\x9a\x93\x3b\xcb\x15\xaf\x90\x22\x3d\x92\x5f\xf6\x1c\xd8\x3e\xb9\x35\x69\x83\x47\xa5\x70\x72\x70\x9a\x86\xb4\xe5\xa7\xa6\x26\xe0\x7a\x3f\x2e\x7e\x34\x1c\x77\x83\xa5\x40\xf8\x4a\xa7\x3e\x91\x7e\x86\x7b\xb8\x0b\xac\xe6\x25\x47\x05\xa9\xd1\xa1\x18\x5d\xe5\x6e\x1a\x4e\x78\xaa\xf5\x39\xe7\x49\xb8\xf7\x65\xbd\x05\x2c\x4c\xd1\x5b\x63\x8b\xf8\xec\xf8\x7d\x98\x14\x60\x6f\xed\x5a\x69\xf4\xda\xe9\xda\x47\xf3\x80\x6d\xd9\x0b\xe6\x4f\xcc\xd3\x36\x5c\xbe\x9e\x01\xc5\x88\xfe\x65\xd6\xb6\x03\x28\x07\x40\x96\x2a\xa8\xdd\xb9\x5a\x3f\x4f\x67\x4c\x03\xbc\x40\x43\x09\x2c\x54\x45\x95\x56\x82\x70\xa2\xc2\xa8\xaa\x06\xe3\xf6\x7c\x31\x99\x8c\x50\xb9\xa5\x8a\xca\xd0\x06\x90\xd3\x84\x81\x14\xcb\x19\x32\x93\xc8\xac\x21\x01\x6f\xd9\x96\xf5\xc6\x42\x14\x06\x4f\x82\x16\x7b\x2c\x92\x0c\xd8\xa8\x39\x75\x58\x52\xac\x77\xc3\xd9\x05\x26\xdd\x3a\xdb\x96\x83\x7c\xf4\xe7\x26\xf3\x4b\xd0\x29\x55\xcb\xac\x5b\x82\xc9\x2c\xf4\xaa\x8b\x54\xbb\x6e\x43\x6d\xae\x9b\xf8\x93\xef\x05\x0c\x6f\x13\x5a\x7e\x62\xfc\xd8\x34\xda\xc1\xd2\xbe\x8b\x8e\x59\xd6\x96\x13\x18\x11\x70\x1c\x43\x18\xbb\x6e\x9b\x5a\x20\xbe\xc6\x56\xfd\x2b\xa1\x92\xe2\x73\x2f\x42\x29\x63\xbe\xd4\xa4\xfd\x1e\xc9\x32\x63\x98\xdc\xe2\x90\xe0\x84\x8c\x70\xea\x23\x6c\x04\xc7\xdb\xb3\xb6\x79\x21\x44\x0c\x98\xd7\x27\x53\xf6\xa3\x32\xea\xad\x59\xfd\x0f\x57\x74\x29\x23\xfb\x62\x5f\xef\x07\x0f\x34\x22\x5e\xa0\x6c\x23\x63\xd1\x23\x66\x6b\x99\xac\x7d\x5e\x55\x0d\xa1\xe4\x04\xe5\x26\xb5\xb2\x29\xcb\x13\x0b\x84\xb1\x90\x3e\x43\x1c\xdb\x15\xb3\x37\x70\xf5\x81\x1d\x49\xfb\xd5\x0d\x60\xa3\x47\x4c\x0c\x35\xfc\x02\x1d\x86\x81\x81\x9e\xc7\x94\xcc\x32\xa6\x34\xbc\x46\xa9\x55\xaa\x02\x46\xb4\xff\x11\x24\x62\x3c\xba\xfb\x3c\xb9\xd3\xb9\x2a\x90\xfd\xe6\x48\xe4\x14\x63\x61\x92\x95\x2a\x92\x29\x1e\x5f\x86\xef\xdd\xb8\x9c\xa0\x78\xae\xa7\x71\x7f\xc7"}, {{0xe3,0xca,0x37,0x13,0xa2,0xfd,0x41,0x2a,0xd5,0x33,0x6b,0xc3,0x56,0xb7,0x7b,0xe0,0x27,0xd5,0xb7,0x08,0x15,0xb3,0xac,0x2a,0xec,0xd8,0x34,0x0e,0xf5,0xf8,0x89,0xb1,},{0x1d,0x51,0x6c,0xb8,0xbe,0xf1,0x16,0xa0,0xc1,0xb6,0x92,0x90,0x09,0x93,0x3f,0x6e,0xb6,0x2c,0x23,0x05,0x07,0x45,0xfe,0x7e,0x8d,0x3c,0x63,0x16,0x23,0x77,0x81,0x11,},{0xb3,0x85,0x7e,0xa6,0x1b,0xaa,0x9e,0x62,0x83,0x8c,0x4e,0x3a,0x99,0x65,0x02,0xd3,0x36,0x4f,0xe1,0xec,0x59,0x42,0x58,0x35,0x50,0x73,0xdd,0x10,0xe4,0x97,0xc6,0x00,0xbe,0xfb,0x1f,0x8f,0x23,0x3f,0xd6,0xe3,0xb2,0xc8,0x7f,0x10,0xdc,0xb7,0x26,0x1a,0xaf,0x34,0x81,0xbf,0xd0,0x90,0x26,0x05,0xac,0xcc,0x90,0x0f,0xef,0x84,0xd4,0x07,},"\xdd\x99\xba\xf2\x95\xe0\x13\xee\xd1\x07\xba\x8a\xf8\x11\x21\xaa\xf1\x83\x5a\x3c\xca\x24\xf8\xe4\x64\xb4\xcf\xca\xa3\xc7\xbf\xfe\x6f\x95\x36\x01\x6d\x1c\x8c\xf3\x75\x03\x8c\x93\x27\xe8\xe2\x1b\x00\x40\x66\xf5\xea\xc0\xf7\x6a\x3e\x8e\xdf\xb0\x7b\xe8\xbd\x2f\x6b\xc7\x9c\x3b\x45\x6d\xe8\x25\x95\xe2\xc2\x10\x5b\xb1\xb0\xaa\xba\x5e\xee\xe1\xad\xef\x75\x21\x67\xd6\x33\xb3\x22\xeb\xf8\xf7\xcd\x5f\xbf\x59\x50\x8f\xdb\xdb\xec\xf2\x5e\x65\x7a\x9c\x70\x50\xaf\x26\xa8\x0a\x08\x5b\x08\x17\xc6\x21\x7e\x39\xac\xd5\x4c\xb9\xfa\x09\x54\x0f\xc7\xbd\xc5\x22\x6d\x6a\x27\x6d\x49\x2c\xc8\xa3\xdf\xfc\x2a\xbc\x6d\x0b\x9f\xb0\x8c\xbc\xcd\xd9\x43\x2e\x44\x98\x21\xa5\xdc\x98\xcf\xb3\xa4\x18\xe5\x39\xc8\x90\xfe\x5a\x04\x46\xb9\xf8\x1d\x30\x67\x00\x92\x7a\xde\x61\xcf\xdc\xc0\x62\x4f\x13\xb5\x84\x07\x48\x77\x46\x04\x80\x57\x31\xd9\x2e\x77\xd5\xde\xf6\x6b\xe4\x4c\xc8\x17\x94\x6f\x1c\xd7\x58\x19\x6c\xf4\x80\xf9\x9e\x71\x17\x83\x5c\x4c\x87\xcb\xd6\x40\x77\xa5\x62\xa8\x0c\xf1\x1d\x8c\xa6\x5b\xe7\xa9\x4d\x92\xb9\xdd\xae\xa9\x97\xe9\x3f\x14\x48\x57\x7e\xd6\xd8\x43\x6b\x2f\x31\x44\x69\x2c\x1f\xd7\xd2\x8a\x03\xe9\x27\x4b\xc9\xe8\x66\x9d\x85\x75\xf5\xde\x20\xcf\xbd\xbc\xb0\x4e\x9f\x39\xf3\x45\x1d\x70\x48\x37\x5e\x26\x98\xe7\x22\x84\x6c\xb4\xf2\xd1\x9a\x81\x0c\x53\xd4\xc1\xa6\xc3\xb7\x70\xfb\x40\x2d\xf0\x53\x0e\x7b\x29\x07\x22\x3f\xd0\x89\x9e\x00\xcb\x18\x8c\xa8\x0c\x15\x31\xb4\xe3\x7f\xba\x17\x6c\x17\xa2\xb8\xf5\xa3\xdd\xc7\xa9\x18\x8d\x48\xff\xc2\xb2\x72\xc3\xda\x9c\x9b\x89\xdf\xe5\x3f\x2f\xe7\xe3\x67\x2f\x91\xd1\x18\x18\x49\x1a\xce\x14\x0a\xdc\xae\x98\x50\x2e\x11\x4f\x4b\x35\x2b\x90\xe2\xe7\xfb\xd3\x33\xb2\x45\x9e\x7f\x15\xdd\x07\x64\xc9\xc3\x4e\x4c\xb7\xcc\x09\x55\x00\xcd\xa0\x35\xe8\xe2\xe4\xe3\xc8\xfd\x5d\xf5\xf3\xaa\x57\x9a\x73\x5d\xd8\xa9\xf1\x9e\xf3\x36\xfa\x97\x11\x14\xe4\x66\x18\x73\x4a\x4c\x13\xd3\x0c\x81\x12\x8c\xa2\x1d\xef\x47\x33\x01\x03\xd2\x3d\x80\xff\xe6\x74\x21\xa6\xcc\xf9\xf3\x6a\x93\xf0\x56\x03\xc5\x99\xee\x10\xb0\x34\x51\xf3\x6b\x21\x33\xc1\x87\xa7\x9a\xd9\xe6\xfd\xfb\xb1\x25\x95\xab\x73\xbb\x3e\x2e\x2e\x43\x03\x0f\xd3\x7e\x59\x1c\xf5\x5d"}, {{0x29,0xa6,0x3d,0xcd,0x48,0xa3,0x51,0x77,0x14,0x11,0xfd,0xdc,0xab,0x46,0xbb,0x07,0x1e,0x91,0x49,0x85,0x76,0xe8,0xd0,0x2f,0x8b,0x60,0x44,0xf5,0xbd,0xd3,0xed,0x90,},{0x39,0x23,0xfd,0xcc,0x2a,0x9f,0xe5,0xca,0xbf,0x6e,0x99,0x32,0xe4,0x6d,0xbd,0x2b,0x7f,0x36,0x32,0x50,0x0f,0x9d,0x95,0x55,0x2d,0xb2,0xb0,0x45,0xbc,0x41,0x16,0x6f,},{0x12,0xbf,0x62,0x95,0x93,0xe2,0xca,0xad,0xc9,0x10,0xec,0x40,0xbf,0xe2,0xb7,0xa6,0x25,0x14,0x12,0x6b,0x16,0xba,0x3a,0x43,0x8d,0x88,0xe2,0xd2,0x1f,0x59,0x5a,0xae,0xe8,0xab,0xfa,0x4a,0xf2,0xec,0x87,0x03,0x61,0xd0,0xea,0x04,0xdf,0xc8,0xc6,0xa3,0x30,0xfb,0x28,0x41,0xc2,0xd8,0x21,0x1a,0x64,0xfa,0x1e,0x7e,0x7d,0x27,0x38,0x00,},"\xff\x18\xca\x0c\x20\x4c\x83\x86\xa4\xaa\x74\xec\x45\x73\xc7\xb6\x92\x16\xb3\x14\x70\xda\xed\xd9\x6a\x4f\x23\x02\x11\x6c\x79\x55\xd7\x2d\xac\xc8\x8e\x37\x14\x55\x0c\x09\xe6\xf7\xb9\xa8\x58\x62\x60\xdc\x7e\x63\xda\x4c\x63\x3b\xae\x01\x62\xe1\x16\xe5\xc1\x79\x7b\x78\xd8\x7d\x47\xff\xee\xa3\xd7\x81\x9d\xf9\xc8\x52\xf0\xff\x30\x93\x6a\x10\x5d\x3a\xf5\x53\x1a\x8f\x89\x54\x97\x11\xc1\x4c\x2d\x3e\xe1\x15\x64\xe7\xc8\x52\x5b\xd5\x88\x64\x00\x97\x62\xa0\x55\x41\xd8\xe0\x7a\xd8\x41\xa5\x5a\x6a\x9a\x00\x7e\xf2\x09\xcc\xec\x4b\x56\x40\xba\xbe\x35\x65\x1b\x61\xdf\x42\xde\x4d\x91\x0e\xe7\x3a\x93\x3c\x0b\x74\xe9\x95\x75\x7e\x84\xa9\x9e\xb0\x34\xf4\x18\x07\x18\x3c\x90\xca\x4e\xa8\xd8\x4c\xdb\xa4\x78\x61\x3c\x8e\x58\x7c\xb5\xf8\xfb\x6a\x05\x50\x81\xda\x6e\x90\x22\x0d\x5d\x86\xe3\x4e\x5f\x91\xe4\x88\xbd\x12\xc7\xa1\xa6\xb3\xc9\xfc\xe5\x30\x5e\x85\x34\x66\x58\xef\xfa\x81\x0d\x0e\x8a\x2a\x03\x9d\xb4\xa4\xc9\x49\x65\xbe\x40\x11\xf9\xd5\xe5\xda\x26\x62\x33\xe6\xc4\xe1\x8e\xd4\xf8\xa2\x5a\x57\xe4\x0a\x59\x1c\x7e\xd5\x90\xc0\xf8\xb1\xa1\x19\xc7\xc9\x74\x7f\x69\x1b\x02\x19\x6c\xd1\x8e\x69\x45\x21\x3f\x1d\x4c\x8c\x95\x79\xc6\xe0\xa2\xac\x45\x92\x41\x28\xd6\xd9\x2c\x8e\x4c\x66\x06\x53\x20\x35\x3d\x48\xd1\xd5\xe1\x31\x94\xd9\x05\xf8\x37\x07\x8f\x8d\xac\x0b\x68\xcf\x96\xae\x9e\x70\x55\x4c\x14\xb2\xfa\x29\xb1\x96\x30\xe4\xb0\xf5\xd2\xa7\x67\xe1\x90\xef\xbc\x59\x92\xc7\x09\xdc\xc9\x9a\xa0\xb5\xaa\xf4\xc4\x9d\x55\x13\xe1\x74\xfd\x60\x42\x36\xb0\x5b\x48\xfc\xfb\x55\xc9\xaf\x10\x59\x69\x27\xbc\xfa\xd3\x0b\xac\xc9\x9b\x2e\x02\x61\xf9\x7c\xf2\x97\xc1\x77\xf1\x92\x9d\xa1\xf6\x8d\xb9\xf9\x9a\xc6\x2f\xf2\xde\x3b\xb4\x0b\x18\x6a\xa7\xe8\xc5\xd6\x12\x39\x80\xd7\x59\x92\x7a\x3a\x07\xaa\x20\x8b\xee\xb7\x36\x79\x5a\xe5\xb8\x49\xd5\xda\xe5\xe3\x57\x37\x10\xaa\xa2\x4e\x96\xd5\x79\x1e\x27\x30\xd0\x27\x0f\x5b\x0a\x27\x05\xba\x51\x5d\x14\xaa\x7e\x6f\xa6\x62\x23\x75\x37\x7f\x9a\xba\x64\xd0\x25\x69\xa2\x09\xd3\x3d\xe6\x86\xe0\x89\xec\x60\x11\x8e\x48\x14\xff\xc6\xc0\x77\x8c\x64\x27\xbc\xe2\xb6\xb8\x44\xcf\xcd\x5a\x7c\xed\x0e\x35\x30\x3f\x50\xa0\xdf\xe5\xdf\x5d\xde\x1a\x2f\x23"}, {{0xc7,0x18,0x8f,0xdd,0x80,0xf4,0xcd,0x31,0x83,0x9e,0xc9,0x58,0x67,0x1e,0x6d,0xd0,0x8b,0x21,0xf9,0xd7,0x52,0x8c,0x91,0x59,0x14,0x37,0x34,0xf9,0x4b,0x16,0x98,0x83,},{0x01,0x97,0x52,0xff,0x82,0x9b,0x68,0x59,0xb9,0x05,0x8d,0x00,0xc2,0x79,0x5e,0x83,0x56,0x55,0x44,0x06,0x75,0x75,0x3f,0x37,0xe8,0x5e,0xb7,0xbc,0x58,0x39,0xc4,0xca,},{0x35,0xc1,0x70,0xdd,0x0c,0x6d,0xc2,0x92,0x0a,0x59,0x57,0x75,0xd8,0xe2,0xdd,0x65,0x24,0x3e,0x9c,0x1b,0xf9,0x6e,0xf4,0x27,0x79,0x00,0x1e,0xd4,0x5f,0x01,0xb7,0xdf,0xeb,0xd6,0xf6,0xa7,0xdc,0x2d,0x38,0x6e,0xf4,0xd2,0xa5,0x67,0x79,0xeb,0xe7,0x7f,0x54,0xe5,0xae,0xcf,0xda,0x2d,0x54,0xa0,0x68,0x47,0x6b,0x24,0xdb,0xd7,0x8b,0x0c,},"\x4a\xf5\xdf\xe3\xfe\xaa\xbe\x7f\x8f\xcd\x38\x30\x8e\x0b\xd3\x85\xca\xd3\x81\x1c\xbd\xc7\x9c\x94\x4e\xbf\xe3\xcd\x67\x5c\xf3\xaf\xbe\xf4\x54\x2f\x54\x29\x75\xc2\xe2\xa6\xe6\x6e\x26\xb3\x2a\xc3\xd7\xe1\x9e\xf7\x4c\x39\xfa\x2a\x61\xc5\x68\x41\xc2\xd8\x21\x2e\x2b\xd7\xfb\x49\xcf\xb2\x5c\xc3\x60\x9a\x69\x3a\x6f\x2b\x9d\x4e\x22\xe2\x09\x9f\x80\xb7\x77\xd3\xd0\x5f\x33\xba\x7d\xb3\xc5\xab\x55\x76\x6c\xeb\x1a\x13\x22\xaf\x72\x6c\x56\x55\x16\xce\x56\x63\x29\xb9\x8f\xc5\xdc\x4c\xbd\x93\xce\xfb\x62\x76\x88\xc9\x77\xaf\x93\x67\xb5\xc6\x96\x59\xe4\x3c\xb7\xee\x75\x47\x11\xd6\x65\xc0\x03\x2a\xe2\x29\x34\xf4\x4c\x71\xd3\x11\x78\xef\x3d\x98\x10\x91\x28\x74\xb6\x2f\xa5\xe4\x02\x0e\x6d\x5d\x64\x58\x18\x37\x32\xc1\x9e\x2e\x89\x68\x5e\x04\x64\xe9\x1a\x9b\x1c\x8d\x52\x51\xe2\x4e\x5f\x91\x81\x3f\x50\x19\xa7\x40\xa0\x4b\x5d\x91\xcb\xb8\x30\x9e\x51\x61\xbb\xa7\x9d\xca\xb3\x82\x39\xa0\x91\xf5\x0e\x09\x9f\xf8\x19\xe3\xa7\xb5\x20\x5f\xe9\x07\xcd\xfe\x9c\x0d\xc3\xee\x85\xe3\x2d\x7b\xcd\x3c\xe0\x26\x35\xe2\x05\x83\x88\x03\x1e\x31\x7f\xbf\x22\xab\x9f\x39\xf7\xf7\xe3\xcd\x1a\x11\xa9\xc1\xf4\x5f\x4e\x1e\x42\xd2\x53\x6c\x12\x2c\x59\x18\x37\x91\x18\x47\x10\x8c\xea\xfd\x99\x08\x13\xc2\xb6\x34\x4c\xff\xc3\x4b\xe3\x71\x61\xdd\x81\x56\x26\x90\x0e\x8f\xcb\x85\xc2\x1a\xfb\x4f\x6b\xe8\xad\x01\x51\x6a\x31\xc2\xa6\x58\x03\x15\x85\x7c\x6a\x21\x67\x35\xca\x99\x10\x09\xdb\xc2\xea\x50\x34\x16\x07\x47\xa8\x69\xd5\xca\xdb\x0b\x47\xff\xbd\x5d\x3a\xc9\x7f\xdd\x05\x26\xca\xe6\xea\xa3\x5c\xff\x7a\x16\xea\xf4\xfb\x95\x0c\xa3\x15\x11\x34\x6f\xea\x61\x41\x99\x9a\x3f\x75\x4e\x62\x81\xcf\xba\x15\xe8\xa8\x26\x93\x2c\x58\x9c\x5d\x24\x7c\x90\x9d\x94\xb4\xea\xb7\xeb\xcb\x09\x07\x76\x48\xaf\x06\x5c\x2d\x86\x61\x1e\xb5\x88\x45\x3e\xd7\xc2\x47\x80\xd7\x3c\x68\x9c\x87\x44\xaf\xd5\x33\xa8\x6d\x9e\xe9\xe3\x36\x57\x32\xcb\xd0\xc3\x51\xe4\x36\xf8\x98\xb7\x04\x32\x92\x09\x7e\x03\xe6\x08\x1a\x23\xac\x86\x5e\x19\xdc\x88\x58\x96\x9b\x99\x9d\x01\xfa\x65\xef\x20\x0c\x3f\x26\x9c\x81\x8e\x30\xb9\x36\x5e\xcc\x68\x3b\xcf\xe6\x9c\x20\x3b\x4e\x0a\xb6\xfe\x0b\xb8\x71\xe8\xec\xaa\xae\x82\xd3\xac\xd3\x5d\x5b\x50"}, {{0x38,0xba,0x06,0x21,0x70,0x4d,0x21,0x55,0xfc,0x2f,0x78,0x55,0x51,0x96,0x57,0x5d,0xe0,0x6d,0x80,0x25,0x5c,0x35,0xe9,0xdc,0x96,0x5b,0x6f,0xe9,0x6a,0x4d,0x53,0x89,},{0x43,0x88,0xf7,0xf6,0x8a,0x9e,0xff,0xbc,0x36,0x6e,0x42,0xd9,0x07,0x01,0x56,0x04,0xda,0xce,0xd1,0x72,0x7c,0xd1,0xd8,0x9d,0x74,0xad,0xcc,0x78,0x9f,0xd7,0xe6,0xe1,},{0x42,0xbe,0xd6,0xa9,0x87,0x86,0xf6,0x64,0x71,0x5f,0x39,0xbb,0x64,0x3c,0x40,0x5a,0xe1,0x75,0x00,0x56,0x46,0x0e,0x70,0x04,0x69,0xc8,0x10,0x38,0x95,0x04,0xc5,0x1c,0xff,0xd9,0xe1,0xa9,0x4c,0x38,0xf6,0x92,0xfb,0x31,0x62,0x65,0x31,0x6d,0x8f,0x4d,0xc3,0xad,0x1c,0xdd,0x8a,0x6d,0x59,0x91,0xef,0x01,0x0c,0xd1,0x48,0x9d,0x7c,0x09,},"\xed\x4c\x26\x83\xd6\x44\xb0\x5b\x39\xb0\x48\xef\x1f\x8b\x70\x25\xf2\x80\xca\x7e\x8f\xf7\x2c\xb7\xed\xa9\x93\x29\xfb\x79\x54\xb7\x00\x40\x07\x05\x27\x5f\x20\xb8\x58\xcf\x7e\x34\x9a\x35\x10\x66\x5b\x63\x06\x09\xc5\xe2\xe6\x20\x69\x26\x3a\xb9\xc5\x5e\x41\x23\xa5\x64\xdc\xa6\x34\x8c\x8a\x01\x33\x20\x75\xe7\xa5\xbe\xc9\xc2\x0a\x03\x80\x79\x57\xfe\xfa\x91\x0e\x60\xc3\x5a\xe5\x79\x77\x8c\xe2\xce\x42\xe6\xa6\x9a\x1b\x64\x76\x81\xe4\x3e\xc4\xb6\x3b\xd5\xfb\xef\xab\xb3\x17\x12\xcb\x3d\x64\x19\xea\xd7\x8d\xd4\x1c\x8a\x92\xaa\xce\xb6\x3c\xbf\xa8\x9d\x2a\xf3\x96\x06\xde\x01\x0a\x39\x7e\x30\x20\x53\xa6\x15\xc1\x6e\x5e\x95\xad\x99\x35\xc0\x79\xa0\xb8\x10\x31\x25\x78\x94\x71\xa1\xe3\x57\x4f\x42\x9b\x29\xe4\xd2\x25\xc7\x72\x3f\xbb\x3c\xf8\x8c\xbd\x73\x82\x3d\x9f\x0b\x6c\x7d\x05\xd0\x0b\xde\xb0\xfb\x0a\xd3\xd7\x13\x20\x33\x18\x3e\x21\xf6\xc1\xe8\xd8\xe4\xc0\xa3\xe4\xf5\x2f\x50\x01\xda\x68\x71\x71\x34\x5c\x6d\xc8\xb4\x2c\x42\xa6\x0d\x1f\x1f\xfa\x8f\xe3\xe7\xbc\xec\xe5\x9a\x03\x58\x78\xf9\xd4\xd8\x11\x27\xe2\x24\x96\xa4\x9b\xfc\xf6\xbf\x8b\x46\xa8\x0b\xd5\x62\xe6\x52\x55\x07\x1f\x9d\x11\xa9\xeb\x04\x81\xf4\x62\x6d\x4d\x71\xff\xc3\x8a\xfe\x6e\x35\x8a\x4b\x28\x91\x79\xcb\xce\x97\x64\xd8\x6b\x57\xac\x0a\x0c\x82\x7e\x8f\xf0\x78\x81\x33\x06\xa1\xd5\xfa\xdd\x32\xb4\x6a\x1f\xbc\xd7\x89\xff\x87\x54\x06\x3e\xec\xfe\x45\x31\x3b\xeb\x66\x01\xc3\xa3\x01\x0e\x8e\xb9\x7c\x8e\xff\xbd\x14\x0f\x1e\x68\x83\x11\x09\x2d\x27\x3c\x4d\xef\xca\x47\xda\x6f\x1f\x08\x25\x74\x46\x76\xf9\xa2\x80\xb6\xc2\xa8\x14\xfa\x47\xfa\xbc\x19\x80\xd0\xb3\x7f\x08\x7a\x53\xca\x87\x78\xf3\x9f\xfb\x47\x4f\xf5\xf1\x17\x1b\x44\x2c\x76\xdd\x00\x8d\x92\x18\x2f\x64\x4a\x71\x4a\x0f\x01\x1e\x21\x5a\x78\xb9\x7a\xf3\x7b\x33\x52\x0e\xbf\x43\x37\x2a\x5a\xb0\xcf\x70\xdc\xc1\xdc\x2f\x99\xd9\xe4\x43\x66\x58\xf8\xe0\x7c\xdf\x0b\x9e\xa4\xdd\x62\x24\xc2\x09\xe7\x52\x1b\x98\x1e\xe3\x51\xc3\xc2\xdf\x3a\x50\x04\x05\x27\xfc\xd7\x28\x04\x17\x60\x46\x40\x5d\xb7\xf6\x73\x4e\x85\xc5\xd3\x90\xf5\x20\xb0\xc0\x8d\xcb\xfa\x98\xb8\x74\x24\x80\xd5\xe4\x6f\x9b\xe8\x93\xf6\xd6\x61\x43\x40\xf8\x16\x16\x11\xd5\x05\x3d\xf4\x1c\xe4"}, {{0xae,0x33,0x1f,0xc2,0xa1,0x47,0x59,0xb7,0x3f,0x1c,0xd9,0x65,0xe4,0x85,0x14,0xe1,0x2b,0x29,0xf6,0x3b,0x06,0xcc,0xfc,0x0a,0xd4,0x9f,0x36,0x82,0x0e,0x57,0xec,0x72,},{0x08,0x80,0x3d,0x48,0x23,0x8e,0xda,0x3f,0x9c,0xeb,0xb6,0x28,0x53,0x01,0x21,0xde,0x00,0xf0,0xf0,0x46,0x8c,0x20,0x2d,0x88,0x52,0x8b,0x8b,0xce,0xc6,0x87,0xa9,0x03,},{0x75,0xf7,0x39,0x08,0x88,0x77,0xe0,0x6d,0xc5,0x6d,0xae,0xc8,0xf1,0xe4,0xd2,0x11,0xb7,0x54,0xe3,0xc3,0xed,0xbf,0xa7,0xed,0xa4,0x44,0xf1,0x8c,0x49,0xb6,0x9c,0x5a,0x14,0x2d,0xb4,0x5a,0x0a,0x76,0x50,0xe4,0x7d,0x10,0x55,0x0b,0xa6,0x81,0xff,0x45,0xdd,0x44,0x63,0xc4,0xac,0x48,0xbf,0x44,0xb7,0x30,0x34,0xbd,0x56,0x59,0x22,0x0e,},"\x57\x16\x00\x33\x90\xe4\xf5\x21\x65\x98\xa0\x3d\x7c\x43\x0d\xbf\x49\x5e\xe3\xa7\x55\x7b\x58\x06\x32\xba\x59\xf1\x51\x98\xb6\x18\x0a\x42\x46\x9c\x23\x7d\xb5\xbc\x81\xf2\x9c\xfa\xab\x0a\xff\x3c\x99\x66\x30\x9a\xb0\x69\x58\xc9\xd7\x12\x6a\xdd\x78\xe3\xb3\x24\x59\xff\x8a\x0e\x0b\xde\xf8\x74\xb5\x8e\x60\x83\x66\x8f\x38\xad\x7d\x63\xaa\xe1\xf1\x2e\x26\xa6\x13\x34\x8f\x9f\x03\xea\x5d\x20\x5f\x04\x5d\x78\xcc\x89\x02\xd4\x7f\x81\xe8\xb5\x22\x93\xe7\x0e\x86\xc9\x80\x3d\x4d\xac\xea\x86\xc3\xb6\x74\x58\xae\x35\x79\xbc\x11\x11\x3b\x54\x90\xbc\xf3\xe1\xcd\x4e\x79\x79\xc2\x64\xd8\x35\x16\x1f\xd5\x5e\xfe\x95\x3b\x4c\x26\x39\x5d\xd9\x2c\xa4\x93\x09\x20\xe9\x04\xfa\xdc\x08\x89\xbb\x78\x22\xb1\xdf\xc4\x45\x26\x04\x84\x0d\xf0\x24\xdb\x08\x21\xd2\xd5\xe9\x67\x85\xa5\xc3\x7d\xbf\xd2\xc3\x75\x98\x32\x83\xe9\xb5\xb4\x3a\x32\x07\xa6\xa9\xb8\x33\x94\x83\x29\xd5\xde\x41\xe4\x50\x08\xbc\xba\xd4\x93\xde\x57\x54\xdd\x83\xde\xcc\x44\x0e\x51\x66\xed\xaa\xe0\x20\x8f\x00\x0c\x5f\x6d\x9c\x37\x21\x53\x20\x9e\x5b\x75\x78\x11\x6f\x89\xcf\x2f\x8b\x10\x04\xd1\x30\x7e\xa7\x9e\xd3\x74\x80\xf3\x19\x4a\x7e\x17\x98\x3a\x23\x04\x65\xcc\xc3\x0f\xcc\x1a\x62\xd2\x80\xfb\xba\xcc\xf0\x06\xdc\x4d\xee\x0e\xa7\x96\xb8\x1a\xcc\xc6\x1a\x06\x3e\x2c\x08\x3d\xae\xc0\x39\xbd\x9a\x64\xa7\x70\x24\xaf\x82\xec\x1b\x08\x98\xa3\x15\x43\x29\xfd\xf6\x16\x73\xc3\x6e\x4c\xc8\x1f\x7a\x41\x26\xe5\x62\x90\xe4\xb4\x56\x81\x9b\xde\xbf\x48\xcb\x5a\x40\x95\x5b\xab\x29\x7c\x2b\xbc\xb0\x18\xad\xbf\x24\x82\x86\x60\xa5\xd1\x2a\x06\x13\xbf\x3c\xcb\x5e\xeb\x9a\x17\xfb\x0a\x05\x47\xdb\x8d\xa2\x4d\x2e\xfb\x87\xba\x1b\x84\x31\x42\xa7\x5e\x4c\xa0\xb0\xa3\x33\xe4\xa1\x4f\xab\x35\xa6\x26\x69\x32\x9c\xa8\x75\x3f\x01\x6a\xc7\x0c\xd9\x97\xe8\xbc\x19\xee\x44\x8a\xea\xf0\xf4\xbf\x3c\xe5\x23\x05\x50\x57\x8a\xb6\x4c\x19\x01\x94\x46\xce\x2d\x9c\x01\xa0\x3d\x88\x9a\x99\x09\x86\x0a\xef\x76\xf0\x67\xc5\x0b\x61\xc3\xd0\xf1\x2c\xc8\x68\x6f\x5c\x31\xbf\x03\x2a\x84\x10\x15\xcf\xef\xf1\xcf\xda\xe9\x4f\x6b\x21\xda\xe9\x41\xb3\x35\xdc\x82\x1f\x32\x84\xce\x31\x50\x8f\x5d\xb5\xc4\x48\xff\xaa\x37\x73\xe9\xbe\x1a\x4c\x85\xa1\xc5\x8b\x00\x9f\xa3"}, {{0x82,0x43,0x5f,0x39,0x79,0x01,0x06,0xb3,0xaf,0x72,0xf9,0x1f,0x14,0xc9,0x28,0xd2,0x46,0x5f,0x98,0xcd,0xd1,0x00,0x84,0xc4,0xa4,0x4d,0x19,0xaf,0x71,0xa1,0x92,0x7c,},{0xc5,0x2a,0x92,0x64,0x6f,0x5a,0xdb,0x21,0xc6,0xdd,0xe0,0xde,0x58,0x78,0x68,0x37,0xf8,0xa3,0x41,0x4c,0x09,0xae,0xdf,0xc2,0x7c,0x81,0x22,0x18,0xa7,0xe7,0x23,0x9e,},{0x1d,0xaa,0x44,0xef,0x06,0xd4,0xc1,0x0d,0xdb,0x48,0x67,0x84,0x23,0xc5,0xf1,0x03,0xa1,0xb5,0x68,0xd4,0x2b,0x20,0xcc,0x64,0xaf,0x11,0x0f,0xce,0x9d,0x76,0x79,0xa2,0xde,0xe4,0x12,0xb4,0x98,0x05,0x85,0xc2,0x6c,0x32,0x0d,0xba,0xa6,0x01,0xc4,0x72,0xde,0xfc,0x3c,0x85,0x41,0x5d,0xae,0xcd,0xd6,0xd2,0xd9,0xea,0xca,0xc8,0x5e,0x07,},"\xf3\xd6\xc4\x6a\xc5\x24\x8d\x53\x86\xb6\xb6\x84\x62\x59\x7d\x64\x70\x39\xf5\x44\xbb\x01\xac\x2d\x10\x67\xda\xaa\xa3\x97\xd2\xdb\xaf\x12\x5a\x1c\xf8\xfd\xf2\x80\xa6\xaf\xec\x32\x4d\x53\x11\xf5\x43\x68\x8a\x15\x6c\x84\x98\x19\xbb\x04\x6b\x91\x1c\x42\xea\x3c\xa0\x1b\x99\x80\x8c\x4d\x1f\x3b\x8b\x15\xda\x3e\xfe\x2f\x32\x52\x3e\xc3\xb0\x9c\x84\xb4\x8c\xff\xd1\x3c\x17\xc9\xe2\x6c\x91\x2d\x9c\x3e\x93\x46\xdf\xae\x3f\xd0\xc5\x6c\x88\x58\x78\x07\x82\xf6\x1a\x4c\x4d\xbf\xff\x1e\x9c\xb4\xb3\x62\xcd\x80\x01\xf9\xcd\xfe\xb1\xa7\x20\x82\xdc\xe9\xc9\xad\xe5\x2e\xff\xc9\x74\x46\x88\xac\x0b\x86\xc8\x82\x66\xb5\x3d\x89\x5c\x17\xea\xd9\xe8\x9e\xd8\xd2\x4d\x40\x64\x2f\x3a\xd3\xb9\xbf\x9b\xbc\x4d\xda\x79\x66\xef\x83\x28\x28\x9f\xb3\x1e\x17\xc8\x1f\xd0\x28\xef\x1b\xd9\xa1\xd4\xc7\x92\xe8\x6e\xc2\xdb\xdc\xe3\xf9\x37\xee\xcc\x3e\xeb\x51\x88\xd3\x25\x94\x19\x19\xbb\xf7\x5b\x43\x88\xe2\x39\x95\x07\xa3\xd7\xfb\x38\x75\x02\xa9\x5f\x42\x1c\x85\x82\x6c\x1c\x91\x76\xc9\x23\xe3\x16\x31\x0a\x4b\xa4\x5c\x8a\x5e\xf7\x55\x7c\xf8\x7b\x77\x02\x0b\x24\xf5\xba\x2b\xfd\x12\x28\x10\x95\x66\x30\x7f\xea\x65\xec\x01\x50\x19\x69\x12\x17\xbc\xe6\x9a\xee\x16\xf7\x62\x49\xc5\x8b\xb3\xe5\x21\x71\xcf\xef\xd5\x25\x4e\x5e\x0f\x39\x71\x69\x18\x6d\xc7\xcd\x9c\x1a\x85\xc8\x10\x34\xe0\x37\x18\x3d\x6e\xa2\x2a\xee\x8b\xb7\x47\x20\xd3\x4a\xc7\xa5\xaf\x1e\x92\xfb\x81\x85\xac\xe0\x1d\x9b\xf0\xf0\xf9\x00\x61\x01\xfc\xfa\xc8\xbb\xad\x17\x1b\x43\x70\x36\xef\x16\xcd\xae\x18\x81\xfc\x32\x55\xca\x35\x9b\xba\x1e\x94\xf7\x9f\x64\x55\x55\x95\x0c\x47\x83\xba\xb0\xa9\x44\xf7\xde\x8d\xf6\x92\x58\xb6\xaf\xe2\xb5\x93\x22\x17\x19\x5d\xa2\x45\xfe\xe1\x2a\xc3\x43\x82\x4a\x0b\x64\x03\xdf\xe4\x62\xd4\x3d\x28\x8d\xb3\x1f\x99\x09\x7e\xc3\xed\xc6\xe7\x65\x47\xa3\x74\x2f\x03\xc7\x77\xef\xb1\x58\xf5\x8d\x40\x53\xfa\x6c\xc8\xd6\x8b\x19\x6a\xf4\xf9\xde\x51\x6f\xd9\xfb\x7a\x6d\x5d\x9e\xe4\xa8\x9f\x9b\x9b\xce\x1e\x4d\xee\x35\x7a\x1e\x52\xc0\x54\x4c\xfb\x35\xb7\x09\x2d\x1a\xa5\xa6\xf7\xf4\xc7\x60\x26\x10\xe9\xc0\x0e\xf5\xb8\x76\x1b\xc7\x22\x79\xba\x22\x8a\x18\xb8\x40\x0b\xd7\x6d\x5b\x2b\xfd\x7c\x3c\x04\xaa\xc4\x43\x6d\xae\x2e\x98"}, {{0x1b,0xea,0x77,0x26,0xd9,0x12,0xc5,0x5e,0xc7,0x8b,0x0c,0x16,0x1a,0x1a,0xd3,0xc9,0xdd,0x7b,0xc3,0x29,0xf8,0x5d,0x26,0xf6,0x2b,0x92,0xe3,0x1d,0x16,0xd8,0x3b,0x48,},{0xc9,0xdd,0xb4,0x21,0x06,0xcc,0xef,0x4e,0x0e,0xf4,0x79,0x45,0x51,0xd2,0x1d,0xf9,0x4a,0x63,0x06,0x87,0x2f,0x23,0x16,0x63,0xe4,0x7e,0x24,0x1f,0x77,0xcc,0x3e,0x82,},{0xf9,0xb0,0x45,0x17,0xbd,0x4f,0xd8,0xef,0x90,0xf2,0x14,0x0f,0xc9,0x5d,0xc1,0x66,0x20,0xd1,0x60,0x2a,0xb3,0x6c,0x9b,0x16,0x5f,0xff,0x3a,0xba,0x97,0x8d,0x59,0x76,0x71,0x10,0xbb,0x4e,0x07,0xa4,0x8f,0x45,0x12,0x14,0x47,0xac,0x0c,0x1a,0xba,0xc5,0x85,0xd3,0x91,0xd4,0x04,0x20,0x41,0x89,0x86,0x28,0xa2,0xd2,0xdc,0xc2,0x51,0x0d,},"\xb1\x12\x83\xb1\xf0\xce\x54\x9e\x58\x04\x73\x0a\xc3\x20\x7a\xc0\x03\x32\xd2\xaa\xcf\x9c\x31\x0d\x38\x32\xd8\x79\xf9\x63\x4b\xd8\xa5\x8a\xdf\x19\x9e\x4b\x86\x3b\xb1\x74\x81\xd2\x8a\xcb\x2d\xa0\xe1\x55\x7b\x83\x36\xa4\x00\xf6\x29\x56\x25\x03\x1d\x09\xe4\xdf\x4d\x31\x9b\xbc\x1e\x8f\x6e\x92\x32\xd2\x30\x53\xbb\x3f\xfa\xc4\xfe\x2c\x70\xce\x30\x77\xfc\x00\x60\xa5\xcb\x46\x92\xa1\xcf\x0b\x3e\x62\xfe\x45\x48\x02\xae\x10\xb8\x3d\xed\x61\xb6\xbf\x45\x4c\xa7\x5e\x4c\xda\xd5\x53\x2f\x20\xb7\x06\x54\xf1\x2b\xa9\x06\xf0\x03\xa8\xb9\xe9\x86\xf1\x5a\x39\x41\x9d\xeb\x2e\xa1\xea\xd7\x59\x82\x90\xee\xeb\xf9\x25\x2b\x0c\x27\x60\x5a\x7a\x73\xa6\xab\xeb\xb4\x22\x71\xd7\x1a\x3c\x19\x7a\x46\xbc\xc8\xdb\x11\xd9\x24\x28\x42\xf3\x78\x36\x4a\x37\xee\xca\xa3\x4e\x98\x21\x35\xbe\x34\x18\x2c\x69\xca\x8e\x6e\x3c\x8c\x90\xe1\xb4\xb2\xb4\x75\x81\x5a\x17\x83\x77\xae\x01\x65\xa7\x64\xc8\xba\x28\x89\xb5\xab\x29\x09\x49\xd8\x48\x7a\x88\xe0\xd3\xd2\xbc\x7e\x25\x20\x17\x6a\xa6\xff\x9f\xf0\xc4\x09\xff\x80\x51\x5f\x4f\x0b\x83\xc5\xe8\x2c\x23\xfd\x33\x26\xcd\xd6\xb7\x62\x52\xe7\xfd\xdc\xd6\xe4\x77\x09\x78\xcd\x50\x3e\xd2\xd6\xb4\x80\x10\x11\x67\xd3\xf1\x91\xfe\xd8\xd6\xd7\x4d\x74\xa2\x00\x7d\xb1\x09\x2e\x46\xa2\x3d\xde\xcd\xdc\xdb\x98\x46\x64\x04\x7b\x8d\xd7\xcc\x8a\x57\x6e\x1a\x80\x6f\x52\xcb\x02\x7a\x94\x80\xa9\x5c\xc4\x4b\x1e\x6f\x2e\x28\x6e\x9b\x7a\x6b\xf7\xb3\x96\xfa\x54\x96\xb7\xa5\xb1\xc0\x3d\x9c\x5c\x27\xda\x1a\x42\x99\x0d\x10\xb1\x2f\xb8\x64\x0e\x15\x96\xf2\x6b\x36\x6d\x27\x0b\xa6\x4f\x99\xaf\xff\xe3\xfe\xce\x05\xa9\xb0\x25\x4b\x20\x8c\x79\x97\xcd\xb5\x12\xfc\x77\x52\x79\x54\xa1\xcb\x50\xfd\xab\x1c\xc9\xa4\x51\x62\x74\x1f\xd6\xf9\xd3\xfd\x5f\x2e\x38\x28\x53\xd7\x33\x5d\xba\x1e\x6b\x29\x59\xdd\x86\xe1\x25\xe6\x7b\x53\xdc\x8e\x45\x3c\x81\x0b\xc0\x1b\xf2\x0b\xce\x7b\x61\x8d\xd5\xd1\xed\x78\x41\x06\xee\x06\xa3\xec\xaf\x6b\x3b\xee\x0b\x56\x83\x3b\x0b\x81\x31\x39\xc5\xa6\x96\x00\x0a\x44\x9c\x97\x90\x6a\x2f\xbd\xdc\x2d\x9d\xe9\x40\x6e\xa2\x82\xac\x4e\xe5\xef\x8b\xf3\x85\x4c\x74\xa6\xb7\x17\x3d\xd2\xf7\x9c\x7a\x12\x6f\x3c\x7b\x04\x33\xfd\x4e\xa2\x6e\x87\x7a\x14\x83\x1d\xd4\x15\xa1\x9d"}, {{0xd0,0x1a,0x0e,0xad,0x9d,0x69,0x48,0x33,0x28,0x3b,0x9c,0xd7,0x29,0x9a,0x7b,0xd7,0x5f,0xa9,0x0b,0x1d,0x2d,0x78,0x84,0xe4,0x55,0x7b,0x33,0xc9,0x98,0x77,0x2a,0x68,},{0xa0,0xf7,0x57,0x47,0x9b,0xa6,0x27,0xef,0xef,0x95,0xd6,0xec,0x7a,0x93,0x1d,0xfa,0xc4,0x37,0x3d,0xf3,0x3d,0xaa,0xf4,0xdd,0xc4,0xec,0x68,0x94,0xc8,0x26,0x1e,0xd7,},{0x9a,0x0f,0xf7,0xf3,0x51,0x74,0xec,0x3f,0x66,0xd2,0x2a,0x6f,0x06,0xdf,0x60,0xe0,0x9c,0x8f,0x62,0x3a,0x5a,0xca,0x81,0x0e,0x23,0xa8,0x8d,0x0e,0x6a,0x31,0xcb,0x6f,0x1c,0xe1,0xc1,0xf9,0xdc,0xcc,0x9e,0x14,0x84,0xb6,0x8d,0xd0,0x04,0xac,0x53,0x59,0x7e,0x29,0xad,0x6a,0xb7,0x2e,0x8c,0xe2,0xb7,0x5a,0xd5,0xb8,0x0e,0xb8,0x48,0x03,},"\x76\x27\x53\x4e\x9a\x83\xd1\xe4\x06\xab\x94\x8d\x30\xd1\xda\x9c\x6a\x5d\xb0\x8e\x0f\xeb\x7f\xc5\xba\x5c\xbf\x76\x84\x9e\xe8\xad\xd4\x84\x7e\xf5\xca\x5a\x0d\xae\x41\x1a\xca\x09\x74\x51\xcb\x4c\x2b\x49\x8c\x94\x70\x97\x40\x70\x07\x64\x0d\xc1\x9e\xd9\x38\xe3\xb9\x1b\xf5\x1c\x95\x81\x16\x8d\xf8\x60\xbd\x94\x75\x16\x68\xda\xbd\x72\x1d\xc7\x39\x98\x40\x0b\xe2\x0c\x9a\x56\x3d\x50\x51\xef\x70\xe3\x54\x6f\xee\x67\x33\x12\xb5\x2a\x27\x40\x41\x05\x7e\x70\x84\x8e\xb7\xc5\xa2\x16\x44\xc9\x7e\x44\x8a\xbd\x76\x40\x20\x7d\x7c\xda\xfc\xf4\x5d\xa6\xdf\x34\x94\xd3\x58\x5b\x0e\x18\xac\x5a\xc9\x08\x1c\xb7\xa4\x07\xa3\x9a\x87\x77\x05\xcb\xaf\x79\xa0\x1b\x91\x5f\x73\x6e\xb0\x25\xc5\x8b\x4b\x5d\x80\x7f\xb7\xb7\x56\x6c\x59\x69\x78\x7c\x1d\x6c\xa4\xeb\xa9\x7d\x50\x9e\xf7\xfb\x35\x50\xd2\x1d\x37\x7e\xce\xff\xcf\x0e\xb6\x68\x18\x95\xad\xbd\x24\x6e\xe7\xbf\x3c\x93\x5a\x00\x64\x78\xb8\x32\xec\xe4\x6d\xe6\x11\x8b\x17\xe4\x66\xa2\x7f\xc2\xa4\x4a\x89\x6b\xaa\xe2\x72\xf9\xec\xf0\x18\xc6\x5c\xb5\x0c\xfb\xfc\x8d\x26\x09\x94\xa1\x8a\x83\x2d\x97\x19\x28\xc4\x49\x67\x57\x24\x58\x51\x31\xc8\x71\x53\x3c\x98\x97\xd8\xf8\x0f\x9c\x04\x16\xb7\x18\x78\x6b\x10\xfe\xa8\xeb\x5b\xd8\x13\xa2\x69\xa1\xb6\x77\xb7\xa2\x50\x7a\x44\xb7\x13\xd7\x05\x08\x65\x30\x99\x5e\x59\x33\x5d\xdc\x28\x55\xe8\x47\xe4\xf4\xdb\x06\xc9\x1f\x1d\x54\x02\x3d\x8a\x10\xf6\x9f\x9e\x61\xbd\xce\x4b\x68\x6f\xb6\x17\xbd\x50\x30\xe7\x55\xca\xdb\x1f\x64\x4e\x1d\xdd\x91\x61\x9b\x96\xec\xd6\x05\xb0\x01\x98\xb9\xa6\xed\xdb\x5a\x84\xeb\xd3\x69\x2b\x66\x59\x79\x76\x66\x37\xc6\x77\x37\x8c\x1c\x77\x04\x1f\xd4\xa6\xb3\x55\x5c\x1d\xc8\xa8\x3f\xe9\x01\x3b\xb6\x10\x6c\xc1\x8a\x2b\x03\x7c\x93\x77\xb7\xa1\xa5\xa5\xd0\xdc\xc5\x49\x18\xea\xad\x7e\x32\xc8\x80\x76\x7b\x26\xfd\x2e\xa2\xd6\x8b\x04\x05\xf5\xe0\x74\xf5\x5a\x19\xd8\xa3\x9f\xfb\xb7\xdc\x32\xfa\xee\x6a\x7f\x95\x32\xae\xc8\xa0\x77\x6c\x3f\xf8\x3a\xe3\xa4\x62\x77\x38\x49\x6a\x37\x1e\xb9\xe0\x90\xb7\x4e\x0e\xdd\xec\xfc\xd4\x1b\xed\x0c\x0c\xe5\x81\x27\x52\x43\x47\x2d\x26\xda\x8c\x99\x8e\x4b\x6d\x6b\x44\xfc\x88\xba\x2a\xb5\x46\x42\x22\x54\x17\x12\x02\x94\x41\x78\x05\x74\x2b\xdb\x33\xb7\xb1\x22"}, {{0xdf,0x64,0x89,0x40,0xb5,0x78,0xbc,0x31,0xd2,0xa6,0x52,0x96,0x5f,0x30,0x39,0x1c,0xaf,0x06,0xd5,0xf2,0x51,0x59,0x9a,0x73,0x7c,0xe1,0x0b,0xe5,0x5f,0x4a,0x9d,0x0d,},{0x27,0xde,0x92,0x04,0x19,0xc1,0x86,0xb0,0x1b,0xe5,0x42,0x79,0xfb,0x8f,0x9b,0xe4,0xbb,0x4b,0x2c,0xad,0x75,0xca,0x7e,0x8f,0x79,0x2b,0xfa,0x7b,0xb9,0x7c,0x7f,0x41,},{0x62,0xbc,0x99,0x1c,0x45,0xba,0x9b,0x26,0xbf,0x44,0x01,0x16,0x26,0x41,0x62,0xc3,0x4c,0x88,0x59,0x78,0x85,0xe9,0x60,0x50,0x83,0xc6,0x04,0xb5,0xf5,0xd8,0xfa,0x6f,0x66,0x2b,0xa2,0x14,0xf7,0x6e,0x6c,0xf8,0x4e,0x5e,0xc0,0x4d,0xf1,0xbe,0xef,0xc5,0xf2,0x5d,0x3a,0x3b,0x72,0xf9,0x8b,0x50,0x69,0x83,0x19,0x16,0xa6,0x32,0x96,0x01,},"\x1a\xe5\x20\xbe\xeb\x4a\xd0\x72\x2b\x43\x06\x7f\xa7\xcd\x28\x74\xab\xcf\x34\xdd\x92\x37\xb4\x47\x8e\xae\x97\x72\xae\xa2\x97\xa6\x7f\xb7\x9b\x33\x07\x02\x04\xba\xee\x44\x0b\x9c\x87\xe2\xfb\xcb\xeb\x76\x80\x1d\xdd\xea\x5e\x45\x30\xd8\x9e\x11\x58\x31\x79\x93\x9a\x00\xa3\x2f\x81\x13\x32\xc5\x22\x91\xcc\x7a\xc9\x1e\x5a\x97\x0c\xd5\xaa\x70\x8b\x1d\xa2\x6b\xe9\xfe\x43\x2a\x9b\xbd\xa1\x31\x9e\x31\xe4\xbc\xc9\xf1\x66\x6a\x05\xb5\xc0\x5b\x87\x6b\xfd\x1f\x76\x66\x87\xcc\xea\x4e\x44\x82\xe9\x24\x32\x9a\xfa\xce\x5e\xe5\x2e\x98\x79\xfd\x69\xb7\x6e\x0f\x7e\x45\x2e\xc4\x71\x3b\xff\x21\x6d\x00\xc8\x25\x99\xd2\x7c\xa4\x81\xf7\x3a\xae\x13\x6f\x08\x75\xc8\x8a\x66\xb1\xb6\xf3\x4c\x50\x52\x3a\xb6\x02\xe9\xd4\xeb\xb7\xee\xb9\xe0\x43\xa6\x5e\x41\x89\x9d\x79\x75\x2a\x27\x9d\x2e\xd4\x69\x93\x92\x6f\x36\x21\xe7\xc3\x2c\x9a\x9b\x3b\x59\xd8\xdd\x57\xbe\xca\x39\x28\x54\x34\xde\x99\x1c\xbd\x2d\xfc\xbc\x5c\xa6\x2a\x77\x79\xf4\x75\xd0\xce\xf2\xf3\xe5\x62\xf2\x9a\xcd\x47\x4f\x3c\x99\xec\x5b\xd8\xde\x01\x10\x1b\xed\x2e\x0c\x9b\x60\xe2\xd7\x0f\xd4\x32\xc8\x92\xfc\x66\xf8\xd4\x61\x9a\x91\x1b\x56\x25\x16\x3e\x9a\x42\xbf\x9e\xa3\x85\x86\xd8\xe7\x64\x00\x15\x64\xd3\x35\x41\x12\x25\xfc\xb0\xa0\x6d\xc2\xa8\x2d\xa0\x77\x9a\x3c\x44\x4e\xb7\x86\x42\x01\xb4\x3e\xbb\x72\xb9\x21\xf3\x4d\x3c\x13\x08\x9d\xf2\xf4\xfa\xc3\x66\xff\x1e\x3c\x0b\x96\xf9\x3d\x2b\x4d\x72\x6a\x5c\xe4\xd6\x91\x6d\x82\xc7\x8b\xe3\x54\xa1\x23\x0c\x2c\xf0\x41\x8c\x78\xa1\x91\x3e\x45\x4f\x64\x8c\xc9\x2c\x8d\xd0\xe1\x84\x64\x5f\xe3\x78\x1d\x26\x3c\xff\x69\xf5\xc6\x0b\x1e\xbb\x52\x00\x5a\x8b\x78\xa5\x15\xc7\xe8\x88\x6f\xfe\x05\x4d\xab\x42\x8e\x2e\x22\x1d\x9d\x76\xaf\xf4\x26\x54\x16\x8d\x83\x3b\x88\x17\x82\x93\xe1\xfe\xdd\x15\xd4\x6c\xd6\x09\x48\x31\x29\xc4\xd2\xd8\x44\x32\xa9\x9d\x31\xff\xe9\xbd\xb5\x66\xf8\xc7\x5c\xe6\x5e\x18\x28\x8e\x4d\xf8\xc1\x67\x31\xa0\xf3\xfd\xde\x1c\xca\x6d\x8e\xde\x04\x35\xff\x74\x36\xca\x17\xd0\xae\xb8\x8e\x98\xe8\x06\x5c\xbc\xbf\xd0\xff\x83\x04\x3a\x35\x7c\xd1\xb0\x82\xd1\x70\x3d\x46\x18\x81\x87\x2c\xdf\x74\x1e\x4f\x99\xbd\x14\x67\x45\xba\x70\x39\x74\xbe\x40\xf5\x79\xbf\x5c\x4d\xba\x5b\xdb\x8c\x94\x1b\xce"}, {{0xc8,0xac,0x23,0x45,0x58,0xaa,0x69,0x81,0x6b,0x36,0x8b,0x77,0xb7,0xcc,0xcb,0x5c,0x8d,0x2a,0x33,0xec,0x53,0xae,0xef,0x2c,0xe2,0x28,0x71,0x43,0xbd,0x98,0xc1,0x75,},{0x53,0x64,0xba,0xf1,0xfd,0xb2,0xc6,0x38,0x40,0xb3,0x0d,0x40,0x31,0xcf,0x83,0xa2,0xe1,0x8e,0x62,0x07,0x93,0xba,0xe5,0x9d,0x10,0x35,0xc0,0xed,0xe5,0x5e,0x52,0x8b,},{0x32,0x25,0x03,0x61,0xdf,0x6e,0xd2,0x83,0x48,0x5f,0x95,0xf3,0xd3,0x57,0xa4,0xf1,0xc3,0x3a,0x8c,0xf9,0x16,0x58,0x32,0x7c,0xd4,0x53,0xd4,0x9c,0x95,0x36,0x65,0x51,0x08,0x70,0xaa,0x45,0x4c,0xfa,0x3b,0x83,0x24,0x52,0x20,0xa8,0x27,0xd0,0xec,0x74,0x77,0xf9,0xec,0xeb,0x79,0xc4,0xa2,0x9f,0x30,0x1f,0x95,0x3c,0xc8,0xca,0xac,0x07,},"\xce\x48\x8d\x26\x97\x5c\x1c\x93\x28\xb4\x7f\xa9\x2e\x19\x56\x13\x30\x04\x1b\x23\xa0\xe5\x7a\x4b\x8b\xca\x89\xeb\x5f\x61\x5e\x73\xdd\x7f\xae\x69\xc2\x38\x0e\x32\x12\xf9\xb7\x33\x41\xc3\x56\xdb\x75\xa6\x25\x6d\x7a\x20\xa9\x7f\x75\x9d\x4c\xba\x71\x97\x17\x8e\xa7\x24\xdd\x93\x29\x49\x36\x0e\x96\xc5\x0a\x4b\x3b\xa5\x5a\x95\x33\x72\xc3\x97\xb0\x96\x9c\x2b\x14\xd3\x60\x9e\x0a\x85\x2d\x48\x4d\xf7\x0e\xaa\xb1\x12\x49\xeb\xeb\x32\x37\x92\x1f\x0a\x39\xa5\x5d\x7d\xcc\xfe\xf2\x05\xd9\x4e\xc8\x0d\x9e\x1f\xd6\xa2\xc1\xef\xd2\x98\x44\x10\x1d\xfe\x2c\x5f\x66\x8a\xdb\x79\x75\x91\x5d\xed\xd0\x86\x50\x0c\xee\x2c\x1e\x23\x3e\x8e\x48\x85\x5c\xc1\xa6\xf2\x87\xd6\x3d\xce\x10\xad\xdd\x13\xca\xc7\xb7\xa1\x87\xef\xe4\x7e\x12\xd1\xc3\x5b\xb3\x97\x40\x52\xb2\x3a\x73\x66\x8d\x3e\x4c\x87\xdb\x48\x41\xaf\x84\x6e\x80\x86\x72\xc4\x3d\x0a\x15\x22\xe2\x96\x5f\x08\x39\x51\xb2\xb2\xb0\xc4\x09\x54\x8e\xe6\x18\x2f\x0c\x98\x50\x51\x4c\x9e\x6c\x10\x2f\x54\xba\x41\x24\xc9\x2a\x90\x27\x4f\x40\x58\x91\xe6\x62\xf5\xeb\xb3\x77\x1b\x85\x78\x31\x56\xe9\xe5\x83\x67\x34\xd0\x9d\x1b\xaf\x5b\x21\x34\xc9\x31\x62\xee\xc4\xbe\x03\xbd\x12\xf6\x03\xcd\x27\xbe\x8b\x76\xac\xcc\x6e\x8b\x8b\xac\x02\x0c\xba\x34\x79\x65\x1c\x9f\xfa\x53\xce\x4e\xb7\x7a\x77\x31\x3b\xc1\x26\x5d\xda\xb8\x03\xef\x7a\x65\x63\xba\x6f\x79\x9d\x1e\xf3\x0e\xf5\xa0\xb4\x12\x96\x5f\xda\xc0\xb9\xda\xb8\x42\xc7\x8e\xe2\xcc\x62\x8e\x3d\x7d\x40\x61\xe3\x4e\xde\x37\x97\xe1\x54\xb0\x6e\x8c\x66\xce\xbd\xf2\xde\xd0\xf8\x1b\x60\xf9\xf5\xcd\xda\x67\x5a\x43\x52\x77\xba\x15\x24\x55\x7e\x67\xf5\xce\xfa\xfc\xe9\x29\x29\x1d\xce\x89\xec\xb0\x8a\x17\xb6\x7a\x60\xc5\x82\xb4\x87\xbf\x2f\x61\x69\x62\x66\x15\xf3\xc2\xfe\x3b\x67\x38\x8b\x71\x3d\x35\xb9\x06\x66\x69\x96\x0d\xe4\xdb\x41\x3c\xd8\x52\x8e\xe5\x6e\xd1\x73\xe9\x76\xa3\xc9\x74\xac\x63\x3a\x71\x34\xcc\xe3\x83\x19\x73\x5f\x85\x7b\x7d\x71\xba\x07\xf4\x77\xef\x85\x84\x8a\xa8\xf3\x9e\x11\x81\x18\x77\x9e\xd8\x7b\x4f\x42\xaa\x35\x8a\x89\xf7\xec\x84\x4a\x45\x1e\x7e\x8f\xc0\xaf\x41\x8b\x85\xbc\x9b\xf2\xf2\x6d\x1e\xa1\x37\xd3\x35\xec\x7e\xe7\x57\xb7\x0a\xe2\xfd\xd9\xcc\x13\x49\x32\xf0\xe5\x42\x5b\xf3\x7f\xb9\x15\xe7\x9e"}, {{0x2c,0x47,0xf2,0xb8,0xb9,0xd2,0xce,0xe9,0xe6,0xf6,0x54,0xbc,0x24,0x65,0x8f,0x9e,0xaf,0x43,0x9c,0x23,0xbe,0xaa,0x0a,0x79,0xbf,0x35,0xcc,0x8c,0xd2,0xde,0xba,0xf4,},{0x44,0x4a,0xf2,0xf3,0x4f,0xd3,0x2e,0x5a,0x19,0xf6,0x1f,0x87,0xd0,0x3e,0x10,0x76,0x27,0xa3,0xee,0xb8,0xbd,0x94,0xd2,0xfa,0xea,0xa3,0x48,0xb0,0x5d,0xea,0x19,0x80,},{0x85,0x54,0xb0,0x1d,0x09,0xed,0x86,0xe6,0x13,0x95,0xb9,0x1a,0x2b,0x1e,0xe1,0x87,0x15,0xc4,0x2f,0x9c,0x7e,0x7f,0x07,0x00,0xd7,0x9f,0xf9,0xfb,0x57,0x81,0x29,0x3d,0x61,0xc5,0x58,0xdd,0x5b,0x43,0x1c,0x93,0x71,0x8d,0xcc,0x0f,0x98,0xfb,0x65,0x2b,0x59,0x6f,0x18,0xc3,0x0f,0x82,0x21,0x5e,0x8e,0x63,0xe4,0xf6,0x56,0x8c,0x88,0x00,},"\x04\x4c\x8f\xaa\x8c\x8a\xaf\x9f\x2b\x81\x86\xa6\xb9\xb3\x38\x47\xec\x7b\x45\x24\x23\xb2\x2a\x91\x74\x3d\x2e\x59\x7e\xcc\x1e\x1e\x22\xae\x60\x05\x3e\x9e\xe6\x23\x3b\x04\x4e\x77\x59\x20\xe4\xe3\xd6\x67\x19\x90\x13\x25\xcf\xdd\x39\xbb\x53\x2f\x8a\xa4\x69\xaa\xb4\x2e\x96\x08\xc2\x12\x60\xc0\x4c\x27\x41\x3a\x7a\x94\xe4\x66\xf6\x3c\x49\x52\xe9\x0e\xf9\x0c\x12\x81\x4b\x34\x51\xb1\xca\xd7\xda\x91\x47\xf8\x40\x92\x20\xf6\x49\x8c\xc0\xa6\x7f\xef\x4b\xc0\x4f\xc0\x6e\x1d\x89\x8a\x55\x15\x59\x1e\x8b\xe0\xc4\x3d\x75\xa6\xfe\x42\x5b\x7c\xbe\xfb\x1b\x91\xb1\xbd\x78\xb5\xbe\xc7\x82\x90\x56\x98\x2e\xfd\xc5\xbe\x24\xaf\x66\x78\x00\x6a\xdc\x6f\x04\x46\x20\x2e\x7e\xc3\xa2\xd6\x97\x9c\xb0\xdf\x7e\x25\xd7\x42\x33\x91\x4d\x9c\x58\xb8\x1c\xf5\x5b\xe0\x69\x67\xd3\xa5\x95\xc1\xb9\x67\x28\x69\x99\x4c\xfb\xa6\x71\x62\x83\x3a\x21\x43\xaa\x91\xcc\x93\xac\xda\xfa\x5b\x45\x20\x8d\xf3\xe8\x8c\xcc\x01\xa2\xa4\xd2\x20\xe3\x60\x09\x8d\x91\x54\xd2\x25\xa7\xca\x5f\x2f\x1e\x52\xb1\x00\x3d\x10\x66\x50\xa7\x7b\x28\x3b\x95\xe4\xba\xf1\xe7\x33\x6f\xa9\xa7\x47\xa2\xb3\x82\x3d\x36\x09\x10\x41\x2e\x76\xdb\x72\x5c\xe1\xab\x1e\x1d\x18\x9d\x0d\x3a\xbe\xf8\x2d\x76\x66\xbc\xf1\xb7\x66\x69\xe0\x64\x3b\x44\xf7\x4e\x90\xce\xaf\xa0\xc8\x37\x1b\x57\xc5\x8f\x3b\x37\x0a\x54\x7c\x60\x95\x8f\x0f\xcf\x46\x1b\x31\x50\xf8\x48\xc4\x70\xfa\x07\xe2\x9b\xf5\xf0\xd4\xb5\x9e\xfa\x5a\xb0\xd0\x34\x1e\x04\x51\xd0\xab\xb2\x9d\x74\x14\xcd\xdc\x46\xcc\x6d\x74\xcf\x3d\xc2\x33\xd0\xd1\x70\x73\x87\xbd\x8c\x77\x80\xff\x78\xe5\x46\xfb\x77\x29\x4d\x58\xa5\xdd\xa5\xf0\x5c\x12\x97\xe3\xd1\x77\x11\x56\xd2\x85\x63\x5b\xf7\xec\xed\xb3\x8a\x9e\x5e\x77\x44\x98\x04\xf3\x89\x9e\xa4\x6a\x50\x26\x6b\x25\x5a\xeb\x52\xd1\x8e\x0f\xa1\x36\xe5\x35\xcc\x90\x26\xf6\x78\x55\x2f\xa3\xee\x21\x46\x08\x1d\x99\x96\x85\xe2\x4b\xf7\x80\x7c\xc4\x7c\x13\x04\x36\xc5\x44\xd3\x5b\x4b\x87\x5b\xd8\xaf\xa3\x12\xce\x3a\xe1\x7c\xf1\xc7\xf5\xea\x1e\xce\xcb\x50\xf9\x53\x44\x72\x0c\xec\xf0\x88\x43\x4f\xf8\xe0\xba\x04\x4e\xc1\x9c\x98\xad\xa7\x78\x21\x16\x30\x4c\xbe\xac\x1c\x3e\x35\xf5\xa4\xf4\x43\x13\x35\x4d\xc9\xa4\x0e\xce\x5a\x0f\x9a\xd3\xa2\x02\x5a\xce\xf2\x62\xc5\x67\x9d\x64"}, {{0x88,0x7f,0xdb,0x48,0x70,0x68,0x1d,0x4f,0xb0,0x6a,0x93,0x62,0x59,0xf7,0x5c,0xae,0x05,0x17,0xf5,0x01,0xaf,0x64,0x6b,0xc0,0x7a,0x4d,0x72,0xbe,0xe7,0xfb,0x1c,0x73,},{0xc7,0x62,0xeb,0xd4,0x8b,0x2c,0xe0,0x2d,0x06,0x38,0x4e,0x38,0x55,0x4b,0x82,0x5a,0xd3,0x22,0xeb,0xea,0x74,0xd2,0x59,0xdf,0x15,0x47,0xa4,0xd5,0x47,0xce,0x00,0x24,},{0x41,0x0a,0x5a,0xf3,0xc5,0x9b,0x7c,0x6b,0xdb,0x21,0x4b,0x16,0x6c,0xb7,0x9d,0x96,0xf8,0x30,0xcf,0x98,0xbf,0x52,0xda,0xd7,0xb6,0xff,0x29,0x79,0xc9,0x7f,0xea,0x4f,0xed,0x5e,0xf7,0xd3,0xd4,0x9f,0x03,0x09,0x72,0x79,0xb9,0xa0,0x99,0x22,0x6e,0x2a,0x08,0xdd,0x30,0xc6,0x07,0x86,0x25,0x4e,0x2d,0xa8,0xde,0xe2,0x40,0xbf,0xc3,0x08,},"\xc5\xdc\x77\x9f\x3f\x3f\xac\x06\xdd\x28\xe5\xa6\x7e\x0e\x52\x4a\xf5\xb5\xdc\x3b\x34\x40\x96\x57\xb6\x3d\xfa\xce\x94\x71\xe9\xa4\x1e\x11\x32\x17\x5a\x0b\x56\x9c\x8f\xea\x9d\x2e\xef\x2c\xf5\xd5\x96\x2c\x7e\x0b\x61\x45\xa9\xe7\xa0\xc1\xaa\x33\x77\x20\x44\xf9\xc3\x99\x8c\x5a\x8c\x48\x86\x45\x8b\x4e\x58\x6f\x93\x07\x60\x83\x61\xf5\x11\xe7\xab\x50\x92\xac\x41\xec\x76\xe0\x58\x6e\xf5\xb9\xc2\x36\xfc\xf5\xca\x2f\xc8\xdd\x6a\xae\xb7\x89\x36\x7f\x2e\x7c\x99\x09\x32\x55\x5d\xc5\x22\x61\xe4\x4e\x49\x42\x34\x98\xb5\x24\x41\x91\x83\xb6\xc1\xf1\xd4\x2c\x45\x46\x4e\xcc\xb0\xc2\xf7\xe2\x51\x77\xfe\x5c\xd4\x63\x50\x2b\x40\x3e\x06\xd5\x11\xfc\xf9\xdc\xb6\x40\x12\xe0\xf2\x0b\x34\xc2\xea\x7c\x00\x4d\x9e\x48\x4a\x7e\xd8\x1f\x32\x60\xc4\x1c\x8b\x19\x53\x52\x9f\x47\xf7\x1e\x86\x78\x43\xcc\x3c\x33\x2a\xd0\x36\x6a\x63\x81\x7e\xd1\x2d\xd4\x73\x0d\x3d\xfd\xbd\x75\x72\xb9\xff\x79\x80\x45\x94\x0d\xd1\x9f\xad\x0c\x8a\xea\x0b\x4a\xb6\x1c\x40\x16\xde\x32\x79\x9c\x73\xaa\x2b\x92\xd2\xc2\x5e\xe9\xb7\x2d\x46\xfe\x8f\x06\x93\xc5\x87\x75\xef\xb0\x5e\x9e\x17\xa5\xc3\x46\xa8\x12\x65\xd3\x5b\xe6\x9a\x22\xd0\x95\xde\x18\x60\x66\xa5\xc6\xd8\xc0\x7a\x3d\x38\xd0\x02\xa1\x0e\x5e\xfd\xb8\x66\xda\x4a\x9b\xdd\x54\xf5\x09\x26\x61\xb6\xc2\xd7\x43\xf5\xae\xaa\x4c\x6c\x31\x8f\xb5\x93\x23\x90\x30\x57\xe4\x9c\x23\x7b\x45\xf6\x75\x42\xa4\xf2\x7c\xaf\x65\xb5\x7c\xfc\xf8\x8b\x71\x20\x3d\x43\xd7\xf9\x53\x22\x16\x0f\x95\xc2\x32\xdd\x10\xab\xb1\x13\xb7\x21\xdd\xba\x22\x26\xb0\x63\x22\x9b\xb4\x41\x02\x33\x6b\x10\xbf\x16\x56\x55\x11\x61\x24\x97\x86\xd4\x54\xf4\xe0\x90\x9d\x50\x00\x17\xf6\xc7\x56\x4f\x73\x3c\x83\x1a\xf4\xe5\xec\x94\xdf\xd3\xbf\x8f\xf5\xf3\x02\x1b\x70\xa5\xca\x5d\x28\xc6\xdf\xb8\xa2\xc1\x8a\x1a\x66\x2a\x33\x35\x9f\x26\x4d\x16\x96\x98\xc1\xab\x55\x78\x3f\xac\xa7\x3b\xd6\x8c\x0f\x79\xd1\xd0\x4a\xe0\xec\xdb\x52\xae\x76\x18\x92\xc0\x24\x93\xff\x35\xf3\xd8\x4f\x66\xe2\x36\xfc\x58\x13\x4a\xd6\xa7\x7d\x92\x25\x49\x05\xd7\x73\x90\x0d\x9d\xdf\x26\x54\xc7\x0b\x46\xf3\x41\xda\xcb\x47\x93\xca\x51\xee\xde\x45\x53\x3e\xae\xeb\x6e\x33\x23\xbc\x3e\x6c\x85\xa7\x94\x06\x51\xc4\xf6\xf9\x81\x91\xc6\x18\xc8\x91\xea\x4e\x22\x0e\xa4"}, {{0x88,0xb3,0xb4,0x63,0xdf,0xc3,0x0d,0x01,0x5e,0xef,0xbb,0xbd,0xd5,0x0e,0x24,0xa1,0xf7,0x27,0x77,0x75,0xbc,0xef,0x14,0xa6,0xbe,0x6b,0x73,0xc8,0xc5,0xc7,0x30,0x3e,},{0xf2,0xb6,0x28,0x4c,0x93,0x0d,0x4a,0xd3,0x2d,0x0a,0xc7,0x19,0x04,0x0e,0xe7,0x88,0x6b,0x34,0x72,0x2e,0xdf,0x53,0xda,0x80,0x1a,0xcb,0x5f,0x93,0x19,0x69,0xe1,0x19,},{0x82,0x5a,0xff,0x71,0xf7,0x93,0x03,0xbf,0x45,0x92,0xbd,0x8d,0xa4,0xd7,0xd9,0x43,0x7f,0xf2,0x67,0x97,0x6f,0x74,0x64,0x37,0x65,0x59,0x88,0xdd,0xcf,0x29,0x37,0x94,0x65,0xa3,0xb4,0x8c,0x9f,0xb0,0xf3,0x1c,0xef,0x03,0xe6,0x36,0x88,0x61,0xc3,0x69,0xb4,0x36,0x4f,0xb8,0xe4,0xb0,0xc7,0x2e,0x26,0xa9,0xa9,0xdd,0xed,0x1c,0x25,0x04,},"\x17\xc3\x17\xfa\x6b\xc9\x0c\x55\x32\x32\x8f\x02\xcc\xfb\x6c\x09\x9e\x6f\xe1\x00\x01\x74\xf2\xaf\x3a\x3a\x93\x09\x42\x85\x06\x71\x7c\x5c\x43\x35\xbd\xd7\xc3\x67\xff\x4e\x44\x8a\x9c\x04\x75\x03\xaf\xba\x68\xfd\x8f\x79\x87\x23\x7b\xe7\xf7\xfb\xdc\x6d\x73\xf2\x4c\x64\x21\xca\xb4\x22\xb3\xfb\x25\xf6\x7b\x2d\x71\x04\x2e\x71\x57\x0d\xf2\xaf\x37\xbf\xe5\xc1\x14\x21\x1f\xd5\x52\x4b\x6c\x1c\x6c\xc5\x2f\xab\xc3\xcd\x7f\xb4\x64\xcd\x58\x0b\xb7\x40\x71\xcb\x30\x0f\x8c\x9f\x8a\x46\x20\x8e\x5a\xa5\xdd\xfe\xa5\xfe\x90\x69\x7a\xa2\xf1\x4c\x60\x79\x50\xc9\x8f\x23\x12\xa9\xe1\x6e\xf6\x34\x6a\x8f\xd1\x29\x23\x27\x33\x82\x7e\x15\x01\xa6\x60\xc7\x7c\x29\xc5\x6d\x2f\xdd\x1c\x55\x97\xf8\xbc\x89\xaa\xef\xe3\x71\x37\x34\xfe\x82\x85\x82\x01\x89\x1a\x11\x47\xef\xaf\x1d\x78\xa4\x71\xf9\x20\xde\xfc\x88\x03\x44\x55\x3e\xb7\x16\xcc\xe3\x26\x0e\x86\xa1\xbc\x0b\xe2\x83\x73\xa6\xa0\x66\x11\x6e\x8e\xcb\x10\xa0\xc4\xa7\x0c\xa2\xb5\x36\x4e\x11\x9f\x84\xae\xc6\x0d\xec\xed\x3a\x4e\xff\x1f\xe6\x88\xc5\xe3\xe2\x51\x47\x0a\xb5\x16\xfa\x96\x4a\x4b\x6f\x28\x36\x8d\xd1\xe2\x83\x59\x79\x34\x06\x4d\xc0\xc5\xb5\x69\x10\x62\xcb\x2e\x26\x7b\xd1\x5f\xd4\x22\xbc\xfe\xfb\x83\xcc\xef\x7a\xa9\xa2\x27\x5e\xf5\x7e\x47\x31\x49\x98\x8c\x15\x78\xfd\x18\x70\x8d\x2f\xf6\x9f\x8e\x59\x80\xaa\x82\x6a\x82\xca\xb7\xd8\xb9\x2b\xb5\x3b\xdd\x46\xdb\x04\x6e\xcd\xfc\x8c\xd7\xae\x5c\xe4\x4f\x3c\x5b\x8c\x05\x65\xb5\xd3\xc0\x72\xc7\x6b\x95\xce\x90\x0a\xc3\xee\x55\x10\xdb\x0e\x75\xd3\xa4\x15\x0a\x98\xf3\xcc\xcc\xc6\x9e\x93\x0c\x6b\xa7\x41\xdb\xb0\xeb\x9f\xb3\x19\x68\x71\xba\x20\x6a\x58\xe0\xda\xe3\x9c\x8d\x6b\xb7\x2a\x82\x39\x9c\x4b\x7b\x9d\xa3\x85\x77\xac\x17\xff\x15\x24\xd6\x53\xc0\xbf\x33\x67\x93\x23\xca\x7e\xef\x4e\x92\x28\x72\x90\x31\x56\x0e\xd8\xf2\xe5\x19\x3c\x64\x0b\x2f\x5e\x60\x80\x75\xa2\xed\x61\x42\x8d\xfc\xcd\xc0\x00\x50\xba\x4b\x99\xed\x6d\x15\x36\xd5\xac\x1e\x93\x96\x74\xb4\x1d\x16\x31\x2a\xe5\xb0\x7d\xef\x1b\xf5\x35\x89\xbe\xd4\x40\x06\x02\xee\x11\xb8\x50\x33\x0f\x38\xaa\xd3\x3e\xf0\x41\x70\xa3\x90\x5c\x28\xb5\x0e\xcc\x57\xdc\xcf\x4f\x29\xd0\xc0\x0f\x71\x3d\x32\xff\xc8\x57\x95\x65\x88\xa6\x32\x6b\x95\x49\xed\xb0\xe4\xfe\x61\x85"}, {{0x42,0x7d,0x6e,0x42,0x39,0x17,0x89,0x68,0x31,0x60,0x1b,0x8f,0x4e,0x21,0x56,0x1d,0xb6,0x10,0x85,0x71,0xbe,0x00,0x9e,0x29,0xdc,0xa4,0x9a,0x59,0x60,0xff,0x31,0x4b,},{0x8d,0x9e,0x63,0x60,0xfd,0xef,0x24,0x99,0x75,0xdf,0x27,0xb3,0x10,0x6a,0x71,0x12,0x05,0x87,0x72,0x2d,0xf3,0x27,0x0a,0x85,0xa1,0x3a,0x8c,0x3b,0xb8,0xc9,0x80,0x9e,},{0xd1,0xc9,0xa0,0x1c,0x56,0xe3,0x39,0x60,0xf4,0x9d,0xf3,0x7e,0xab,0x96,0x3b,0xc5,0xa9,0x9f,0x25,0xc6,0x00,0x44,0x6c,0xe2,0xca,0x48,0xd9,0x13,0x9d,0xa5,0x73,0x3b,0x71,0x8f,0xbf,0x1a,0x98,0x73,0x93,0xf6,0xe5,0x82,0x3c,0x2d,0x13,0x0c,0x7c,0xe6,0x0e,0xa3,0xdb,0x35,0x43,0xc8,0x85,0x4e,0xf1,0x2b,0x98,0xd3,0x3a,0xdd,0xe7,0x05,},"\x9c\x2c\xc7\xf2\x46\x2e\x09\xc4\xc5\x8c\x27\x09\xab\x42\x59\x88\x5a\x4e\x88\x7d\x9f\xa5\x31\x88\x15\x05\xaa\xf2\x03\xc1\x63\xfb\x3a\x0d\xc0\x28\xf4\xad\xa6\x06\x70\x63\x8d\x4a\x97\x27\xa3\x90\x83\xbe\xdb\xac\xed\x58\xed\xb7\x79\xe1\xce\x6c\xcd\xfb\x42\x8c\x36\x2b\xb1\xdb\x0c\x10\x53\x00\x6b\xd8\xf4\xbe\xf8\x9a\x1a\x9d\xe0\x1c\x77\x4e\x35\x7f\x91\x0e\x5c\x39\xb2\x24\x77\x55\x5e\x5f\x7c\x04\x98\xb5\xb2\x8f\x36\x9e\x5d\x3f\xa4\x2a\xb3\x60\xe4\xf4\x51\xc6\x9f\x81\xba\x0f\x3c\xce\xd4\x3a\x55\x9d\xb6\x00\x10\x42\x78\xf8\x68\x79\x6b\x2c\x91\x1b\x3b\x03\x2b\x72\x9f\x4b\x22\xac\x14\x9d\xc4\x67\xa0\xca\xe4\x8d\x19\xe9\xd9\x85\xb4\x2b\x62\x54\x9d\xe1\x71\xff\x56\x6e\x1d\x1e\x9b\xb8\xe5\x6c\xfd\x1a\xe8\xf7\xbd\xdc\xfd\x8a\x23\x41\x82\x7d\xbe\x89\xc8\x82\xab\x3e\x49\x83\x39\xff\x68\x1c\x7d\xc1\x10\x4d\xe7\x38\xb4\x80\x31\x69\x43\x10\x9f\x70\x3d\x47\x1a\xb8\x6e\x4c\xa4\x28\x7e\x4c\xd7\x4c\x31\x2f\xf7\xd0\x37\x39\x56\x06\xfb\x25\xf8\x71\xe7\x27\x70\x78\xa7\x87\xd0\x2f\x31\xcc\x9e\x81\x5b\xe8\x60\x0a\x7c\x47\xc6\xfd\xd8\x23\x31\xae\x9c\x49\x6a\x54\x7b\xdb\x23\x5b\x8a\x56\xd5\x32\x59\xe6\x29\x61\x24\xa3\x2c\x3b\x62\x5d\x20\x24\x19\xd0\x64\xb9\xa4\xe8\x3e\xfa\x87\xf1\x35\x37\xb4\xf5\x13\xb9\x16\xa8\x4f\xc8\x66\xd8\xa8\x99\x80\x4c\x78\x33\xea\xa0\x19\xe0\xd7\xe0\xe8\x07\x5b\xd6\xb5\xcb\x6f\xfc\x76\x64\x79\xf3\xf6\xe2\x0e\x48\x1e\x6a\xb2\x7b\xd8\x08\xad\x90\x6c\xdc\xc7\x82\x74\x30\xe3\x12\xf7\x40\xf2\x75\xdd\xf5\x1d\xd8\x32\x48\xfa\x05\x7c\x43\xc9\xcb\x77\x55\x7b\x2f\xd9\xc2\xd5\x28\x24\xff\x9e\x14\x6d\xea\xc1\xe6\x69\x1d\x45\x02\x13\xbc\x59\x0a\x49\xbe\xc7\x2d\x52\xe3\x8f\x6b\x4d\xc6\xcc\xa9\x51\xee\xf2\x18\x4d\x24\x25\x03\x1a\xd5\x9b\x24\x2e\xff\xa6\x8b\x6c\x72\xc5\x4c\x9d\xfd\xb4\x19\xc0\x2e\xb4\x3e\xf3\xf3\x4d\x33\x8d\x2a\x9d\xd0\x3a\x78\xcf\xdd\x01\x40\x98\xe2\x49\x25\x9e\x77\x28\x2e\x0c\x3f\xc1\x01\x0b\x02\xa6\x7f\xf8\x51\xe9\xcf\xd9\x74\x9c\x1c\xd8\xf0\x6c\xf4\x62\xe6\xad\xe9\x95\xac\x46\x6f\xab\x5c\x79\x5e\x9e\xff\x13\xe5\x5b\x43\x50\xb9\x4c\x73\x16\xaa\x49\x8d\xf9\xfd\xee\x99\x58\x04\x77\x93\xe3\xbb\xb8\x9f\xb8\x1d\xa8\x5f\x4b\x9d\x43\xe4\xb0\xd4\x3b\x38\x1b\x94\xcd\xc9\xa9\x9d\x06"}, {{0xbe,0x93,0x52,0x09,0xf6,0x2d,0xea,0x60,0x12,0xec,0xda,0x6a,0x61,0x56,0xcd,0x16,0x6a,0x4d,0x76,0x11,0x50,0xde,0xed,0x45,0x68,0x16,0xea,0xf0,0xce,0x78,0xa7,0xf6,},{0xd3,0x9a,0x89,0xaf,0x72,0x29,0x39,0x48,0xb1,0x34,0x21,0xfb,0x88,0x3b,0xbe,0x37,0x2a,0xf9,0x08,0x9c,0x22,0x4d,0x42,0xb9,0x01,0x97,0x9f,0x7e,0x28,0x04,0xe1,0xc0,},{0x08,0xe0,0x98,0xa7,0x49,0xfc,0xe6,0xd1,0x23,0x54,0x39,0x58,0x78,0xa8,0xbe,0x35,0xfe,0x9e,0xdf,0x72,0x68,0x4d,0xd8,0x28,0x12,0x24,0x89,0x9b,0x1c,0xae,0xa4,0xed,0x68,0x77,0x85,0xdf,0xf5,0x5a,0x19,0x98,0x9e,0x03,0x63,0x6e,0x16,0x66,0x38,0x6f,0x22,0xc3,0xf4,0x43,0xec,0xf6,0xfd,0x34,0xd5,0x99,0xff,0x3e,0xc2,0xfa,0xf1,0x01,},"\x11\x7f\x42\x7c\xb6\x81\x50\xca\xfc\xfa\x46\x2c\x42\x20\x61\x41\x42\x7c\x4d\xce\xa1\xc8\xea\xcc\x2d\x30\xbe\xd1\xe9\x02\x07\xd5\xae\x30\x5e\x1f\xc1\x6c\x54\xe4\xc5\x4c\xc6\x87\x8c\xdb\xed\xc9\xf5\x1f\xe1\x84\x61\xec\x37\xc5\x57\xb1\x15\xd1\x3c\x86\x82\xc4\xe1\x5f\x50\x52\x96\xa1\x76\x0e\x1e\x75\xf5\xab\x27\xa5\xc1\x5a\x13\x57\xd2\xc8\xc4\x0d\xd5\x35\x5f\x7c\x82\xfe\xa5\xd2\x7e\x28\x87\x63\x58\xc1\x2e\x91\x13\xee\x29\x83\xea\x6f\x09\xc6\x4e\x06\xe2\x97\xdd\x96\xb3\x4d\x9b\x5e\xd4\x9f\xc4\x7a\x88\x39\x54\x9c\x66\xb0\x02\xfe\x94\x5e\x8f\x94\xe7\xd2\x31\x5c\x50\xca\x4d\xc0\x98\xbe\x4b\x32\x89\x81\x2f\xbe\xa9\x6b\x47\xce\x60\x45\x40\xbd\xe0\xe5\xab\x0b\x1b\xc0\x36\xbe\x9b\x6a\x95\xe0\x9c\x81\xe8\x98\x64\x0c\x8f\x05\xd6\x0a\xd9\x42\x18\xd0\xe6\x6c\xeb\x85\xa2\x6b\x78\x29\x22\x20\xbf\xd0\x61\xdd\x07\x35\x12\x92\x3b\x90\xc7\x9d\xcf\x5a\x19\x35\xfa\xfe\x8e\x01\xef\x8b\xf8\x1b\x4d\x37\xc5\xa5\x71\xb5\x0c\x42\x1f\x9b\xd2\x19\x4b\xef\x35\x86\xfc\xb8\x58\x48\x77\xbb\x7e\x04\x81\x65\x5b\x05\xc7\xb6\x43\xb1\xe4\x5b\x04\x03\x62\x72\x84\x18\x52\xe3\x19\x40\xef\x8f\x3b\x6d\x4f\xeb\x5d\xf0\x79\xd1\x76\xf9\x79\xc1\x8a\x11\xa6\x6d\x12\x14\xe5\x2f\x68\x7e\x90\x63\xc1\xc2\xb7\x27\x7b\x68\x5d\x5c\x72\xad\x56\x9f\x78\x73\x83\x8f\x91\x02\x57\xa0\x53\x13\x1c\x83\xeb\xce\x86\xe6\x9d\x73\x63\x62\xbe\xbc\x96\xbb\xfa\x35\xfc\xba\x1c\xb5\x27\xe7\x48\xe5\xf5\x79\x92\x9f\xd4\x0c\x56\xb1\xa5\x1a\x22\x2e\x86\x33\x02\x70\x5c\x86\xf7\xb5\x4e\xbf\xbb\x94\x82\xf7\xe2\x80\xf7\xbe\xc8\xca\xf3\xa6\xb5\x67\x1a\xc3\x0c\xd1\xbe\x52\x92\x88\x79\x7c\x01\x3c\xe5\x6b\xd1\x86\xde\x7d\xfc\x18\x28\x69\x14\x25\xc1\x47\xc5\x17\x4a\x29\x0d\x80\xcb\xd5\x9c\x19\xda\x7a\xdf\x77\x91\x88\x82\xa7\xb2\xa9\xa6\x4e\x6d\x76\xb4\x8b\x92\xf2\xa2\x66\xee\xe6\xe2\x51\xd2\xe8\x17\x65\x2b\x88\xb5\x02\xde\x73\x99\x78\x2d\x75\x29\xa8\x1d\x0a\x36\x39\x96\xb9\xdf\x68\xb1\x5a\x76\x30\x90\x4c\x8c\x24\x60\x81\xfa\x4f\x09\x29\x9f\x15\x75\x79\x58\xe0\x89\xa9\x01\xc3\x56\x46\x15\xc0\xf7\xcf\x27\x52\xb8\xb9\xe5\x21\x33\x8d\x83\x6e\x3d\xae\x4c\xe2\x37\x46\x42\x25\x3c\x4c\x98\x31\x97\x4e\x5d\x8c\x28\x42\xf4\x90\x07\xb7\x17\x75\x09\x3d\xfe\x57\xf4\x44\x92\xf0"}, {{0x68,0x18,0xc6,0x0b,0xb6,0x43,0x9a,0xc2,0xee,0xe2,0xd4,0xe1,0x28,0xe9,0xd8,0x69,0x1d,0x4a,0xd5,0xd3,0x63,0xfe,0xd7,0xd6,0x57,0x7a,0x62,0xb6,0x56,0x99,0x94,0xa4,},{0x73,0x45,0xec,0x11,0xbc,0xcc,0x05,0x6f,0xc4,0xef,0xfa,0x3e,0x4e,0xf6,0x70,0x99,0x6a,0xa2,0x6a,0x1b,0xb1,0xb8,0x33,0x91,0xba,0xbc,0x39,0xa1,0xa5,0x96,0x01,0xf9,},{0x15,0x05,0x96,0x7a,0x27,0xb9,0xf8,0x6e,0x92,0x42,0x44,0x40,0x02,0xa1,0xe3,0x19,0x7d,0x74,0xdd,0xcd,0x89,0x65,0x9e,0xc5,0x14,0x02,0x02,0xaa,0xc7,0x94,0xb8,0xad,0xc1,0x93,0xe7,0xd3,0x0f,0x33,0x82,0x64,0x29,0x90,0xf6,0xfe,0xd7,0xa9,0x99,0xca,0xc8,0xc6,0x1e,0xaa,0x39,0xb7,0xd9,0x08,0x16,0xf1,0xd7,0x38,0x74,0x4b,0xe1,0x01,},"\xb2\xae\x65\x8b\x3c\x13\xc3\xcd\xeb\x1d\xc9\x93\xb0\xf4\x5d\x63\xa2\xea\x9a\xbd\x0b\x7a\x04\xf1\xf5\xce\x59\x32\x80\x6c\x2c\xa9\xb7\xa2\x04\xfb\xf8\xd0\x66\xb7\xf0\xfe\x6a\xe0\xd1\xda\x68\xc8\x85\xee\x11\xf6\xf6\xdb\x7e\x83\x20\xa2\xea\x65\x0b\x53\x38\x51\xcd\xd9\x9d\x90\x3a\xa0\xb3\xfa\xa3\xc9\x50\xf7\x02\xf0\x4e\x86\xb4\xee\xb3\xa1\xc7\xbc\x85\x4b\x25\x14\xfa\x5b\x47\x66\xd3\x75\xb4\xf1\xad\x61\x07\x53\x78\xdd\x92\xfd\x62\x6c\x2b\x47\xe0\x13\x83\xea\x72\x98\x79\x59\x26\x2c\x56\x28\x62\xb4\x5b\x75\x57\x67\x14\x13\xb6\x66\x14\xbc\xc9\xf7\xbd\xb9\xee\x46\xcb\xed\x89\x65\xbf\xa5\x05\x31\x50\x90\xc7\x20\x4b\xea\x89\x17\x5b\xe5\xf2\x08\x02\xe3\xde\xdd\xcb\xd8\xdd\x64\xcf\xef\x7e\xe6\xa6\xe3\x86\x0c\xe1\xe5\x79\x9d\xf5\xd8\x10\xd5\xec\xf3\x2e\x61\x5d\x16\xdf\xf8\x7a\xbd\x4a\x63\x6e\xa1\x7a\xa4\xec\xe5\xb6\xb2\xc0\x46\xb6\x5b\x5a\xf7\x49\x86\x2b\x45\x79\x0c\x39\x17\x68\x20\xb3\x69\x01\xbe\x64\x9c\xf4\x16\x9d\xf7\xe9\x23\x95\x6d\x96\x06\x49\x50\xc5\x55\xf4\x5a\xcb\x94\x50\x7c\xfd\x0c\x3b\x33\xb0\x80\x78\x5e\x35\xc0\xd2\xb0\xad\xdc\x4c\x0a\xd3\xfb\x21\x6a\xc2\xe6\x01\xc9\xc7\xe6\x17\xda\xbd\xa3\x33\xda\xe6\x03\xcc\x9d\xb1\xfc\x62\xae\x4e\x0e\x45\xe3\xcc\xdd\x16\x6a\x67\x81\xe2\x43\xb7\xda\xa1\x38\x80\x66\x32\xf5\x38\x84\x4e\xe3\xd1\x40\xb7\xa8\xbb\x2b\x54\x01\x00\x77\x8c\x45\x8e\x06\x61\x70\x70\x5e\x5f\xb2\xc8\x80\x29\x09\x8b\x99\x2c\x39\xbc\x9f\xf6\x33\x0b\xfc\xfe\x77\x52\x32\x0e\x6e\xa0\x94\x9d\x2c\x87\x1a\xed\xc1\x87\xbe\x27\xfe\xf7\xdb\x5f\x72\xa6\xa7\x73\xed\xde\x0d\xc5\x2a\xe2\xed\x93\x1c\xb2\x68\x17\xb8\x5b\x15\x45\x89\x4d\x92\x29\x8a\xaf\x87\xcc\xbc\x78\x3e\x8d\xd6\xd1\x64\x93\xf5\x6e\xad\x2b\xa8\x52\xee\x9c\x7d\x10\x07\x44\x06\x44\x0d\x2a\x27\x9a\xbc\x87\x4f\x15\x46\x8d\xd6\x6a\x71\x7b\xac\xe3\x7b\xe7\xb7\x05\x5d\xd9\x68\x1f\x8b\xe8\x13\x29\xee\x7a\xf9\x7e\x3a\xbc\x43\x4a\xc1\xc9\x3a\xec\x58\x2f\x23\xfd\x1e\xc0\xfa\x5a\xaf\xcf\x7b\xfb\xda\x00\xff\xa9\x7a\xe3\x17\xae\x91\x8d\x34\x9d\x21\xa7\xf4\x61\x91\x42\xba\x23\xda\xce\xf7\xb3\x90\xae\x26\xa1\x7e\x2e\x29\x62\xae\x27\x00\x53\x76\xb7\x2d\x4d\xa9\xe2\x97\x96\x53\xa6\x63\x25\xa1\x46\x17\x63\x8d\xbe\x1a\x55\x40\xb6\x83\xac\x00\x17"}, {{0x6d,0x1d,0xa5,0xb4,0x83,0xe6,0x4b,0x03,0x65,0x99,0x0f,0xf0,0x93,0x81,0xfb,0x17,0x02,0xfd,0x8e,0xc3,0xa1,0xa3,0x69,0xcd,0x52,0xe4,0xc5,0x67,0x13,0xa3,0x14,0xa5,},{0x08,0x05,0x5c,0x26,0x1f,0x26,0xe0,0x2a,0x65,0x8f,0x66,0xd9,0xba,0x01,0xfc,0xde,0x53,0xe9,0xad,0xe3,0xed,0xc6,0xbf,0x81,0x5e,0x4a,0x68,0x02,0xe1,0x67,0x7a,0xb3,},{0xa5,0xb8,0xb4,0x4a,0x91,0x44,0x4c,0x64,0x37,0x4b,0x52,0x3c,0xb4,0xdc,0xb0,0xce,0xf4,0xce,0x52,0x40,0x8b,0x98,0x12,0x6d,0x7e,0x1a,0xe8,0xbd,0xc2,0x8c,0xf5,0x14,0x70,0xce,0x4e,0x25,0x3e,0x0b,0xe6,0x2b,0xd6,0x8e,0xbf,0x5f,0xa6,0xbc,0xe1,0x58,0x5e,0xcc,0xfa,0x92,0x56,0xc0,0x73,0xee,0x03,0xe5,0x4c,0x52,0x5b,0xbe,0x2d,0x0a,},"\x79\xa2\xc3\x70\x55\xf1\x89\xf3\x24\x7f\x1f\x8c\xea\x19\xb2\xea\x40\xd8\x58\xdb\x1f\x5d\x13\x92\xee\x6d\x41\x1c\x78\x02\xee\x23\xde\x52\xad\x02\x81\x17\x25\xa9\x4d\x76\x67\x5d\xa8\x9a\x96\xb5\xd0\x7a\xbc\xee\x23\x3a\x1a\x2e\x1f\xa3\x24\xff\xf9\xe7\x8a\x4c\x19\x61\x47\xf8\x57\x0b\x0b\x13\x71\x3d\x96\xaa\x5d\x75\x0a\x15\xd7\xcd\x16\x2e\x7b\xa2\xe7\x53\x33\x60\x7d\xd6\x98\xeb\x47\x73\xc7\xe9\x1f\x76\x68\xff\x8b\x62\xf0\x46\x40\xeb\x12\xec\xf1\x22\xfc\xe6\xb8\x32\xe0\xd0\xdf\x92\x8e\xef\xd2\xc2\x00\x23\x64\xaf\x6b\xb5\x52\x91\xd3\xf5\x49\x29\x08\x5b\xe3\x38\x34\x2f\x09\xda\x73\xe2\x79\xc8\x7c\x83\x24\x55\x58\x19\xed\x57\xe7\x8d\x7a\xc4\x09\x51\xd3\x3f\x65\xb9\x4a\xa1\xe5\x55\xe9\x2a\x06\x3d\x11\xf1\xff\x7b\x12\x69\x43\x41\xe3\xfe\x44\x49\x33\xd0\x1a\xa3\x67\x53\xed\x3c\xdd\xa8\x90\xbd\xf9\x5a\x82\x05\xb5\xd8\x93\x22\x19\x91\xc7\x95\xad\x0a\x4a\x94\x6f\x58\xd4\x0a\x45\x34\x51\xaf\x21\x4f\xd4\x65\xe2\x8d\x3e\x2f\x0a\x56\xaa\x56\xde\xf8\xdc\x04\xaa\xd3\x57\x13\xab\xfc\x8b\xd7\x85\x6d\x5a\x9d\xc3\xf6\x0a\x3f\x2b\xd3\xe6\x36\x6f\x1f\x24\x4e\x94\x1d\x6a\xea\x89\x2f\x6a\x88\x93\x1f\xe1\xc3\x13\xe0\x90\x78\xe9\x0b\xc6\x39\x2d\x49\x05\x33\xc9\xea\x3f\xf6\xde\xaf\x3a\xad\xfa\x8d\xfd\xc4\xe9\x0f\x64\xaf\x47\x58\x9e\xa6\x5a\x87\xac\xd2\x19\x96\x02\x35\x1d\x3a\xfc\x21\x03\x19\x6e\x03\x94\xed\x52\x3a\xa7\x99\xd3\x1e\x11\xd3\x4f\xff\x54\x6d\x44\xf4\x36\xb3\x48\x59\xf9\xcf\xbc\x9c\xe4\x03\xde\x5a\x98\x30\xec\x3d\x45\x3f\x0d\x45\x97\x0f\x57\x2c\x14\x4f\x19\x1b\x2f\xbb\x2d\x0e\xa6\xcc\x9c\x8e\x24\xd9\xc0\xb2\x18\x3b\x27\x80\x72\xeb\xb0\xbe\x2d\x70\xd0\x37\xfd\x2e\x8e\xc1\x8d\xc4\xc9\xb2\x1a\xbd\xc6\xa4\xce\x8d\x46\x68\xa2\x20\xee\xbd\x69\x34\xf0\x4b\xaf\x0e\x88\xa4\x88\xd2\xdf\xc7\x35\xa7\xc5\xa7\x0d\xbb\x01\x66\xa2\x1a\xe0\x11\xfc\x6e\x7d\xa1\x0f\xc3\x20\x33\x62\x71\xd9\xee\xad\x51\x0a\x6f\x70\x32\xf2\x29\x66\x92\xbe\x50\x80\x21\xbc\x98\xc1\x70\xbe\x42\x35\xf7\xce\x31\xf2\xbc\xd6\x34\x11\x63\x68\x33\x76\xae\x2c\x56\x62\xcb\x47\x70\xc9\x6e\x01\x8e\xf1\xbf\x47\x91\x33\x19\xc9\xa0\x9b\x9e\x96\x5a\xb5\xc3\xe9\x7b\xbc\x75\x6a\x56\x66\xb4\x56\x7f\x2c\xff\x2d\x0c\x3a\x6a\x40\x26\x15\x8c\xb9\xf9\x0f\x95\x00\x56"}, {{0x51,0x46,0xf5,0xb7,0xf1,0xba,0xa1,0x9f,0xc8,0xcd,0x78,0x5c,0x89,0x6e,0x0f,0x90,0xf9,0xf6,0x59,0xb7,0x7b,0x1b,0x9b,0xb4,0xad,0xca,0xb5,0xa6,0x26,0x72,0x05,0xe4,},{0x68,0x8a,0x8d,0xe6,0x4e,0xff,0x33,0xba,0x6b,0xbe,0x36,0xcd,0xd6,0xa3,0x84,0xbb,0x67,0xb3,0xf4,0x26,0x36,0xdb,0x23,0x4f,0xf5,0xef,0xe0,0xb3,0x17,0x43,0xc7,0xe6,},{0x4b,0xdb,0xd7,0xc6,0x4f,0x13,0xe2,0x78,0xc2,0x39,0x69,0xe7,0xeb,0x38,0x6b,0xbe,0x49,0x9d,0xbd,0xef,0xc3,0xff,0x4e,0x30,0xcf,0xac,0x5c,0xf8,0x6f,0x21,0x6c,0x24,0xc9,0xe6,0xcd,0xe2,0x0e,0x52,0x9d,0x14,0x7f,0xb7,0xea,0x08,0xf2,0x59,0x3a,0xd5,0x09,0x03,0xb5,0xed,0xbf,0x86,0xb4,0xd2,0x8f,0x2e,0xb3,0x2e,0xf1,0x37,0xf0,0x0c,},"\x97\xbd\x99\xf5\x18\xee\x07\x88\xd5\x76\xd9\x9c\x04\x3b\x44\x9d\xfc\x24\x2a\xc5\xee\xae\xc3\x44\xa1\x94\x32\xb3\x45\x96\x2e\xc4\x12\xce\x55\x36\x2b\x3b\x85\x1d\x98\x11\x9f\xce\xb9\x32\x83\x47\xf6\xfc\xc6\x8d\xbf\x56\xa2\x81\x4d\xb0\x9e\x93\x85\x84\x3a\x93\x11\x89\xea\x3e\x72\xda\x9d\x79\xa4\x56\x93\x05\x3c\x03\x57\x01\xdc\x55\x51\x24\x0f\x95\xb3\x03\xfb\xa1\x6f\x89\xaa\x53\xa4\x38\x82\xb0\xf1\x38\x12\x02\xc7\x8f\x9c\x74\x19\x89\x9f\x23\x51\xec\xa9\x5e\x20\xbf\xee\x76\x35\x1c\x48\xd0\x04\x99\xf5\x91\xda\x56\xa9\x95\x24\xbb\x74\xfe\x1c\x83\x4e\xe9\x10\x77\x13\x9f\x1e\xdf\x67\x31\x5c\x07\xa3\xfd\x97\xf8\x0b\x7c\x27\x6b\x6c\xf6\xb5\xcc\x36\xbe\x36\x3b\x73\x12\x17\xf6\x31\x9f\x51\x29\xba\x7b\x14\xd0\x54\xc8\xd8\x1d\x8e\x3a\x3f\x3b\xe6\x2a\xc3\x1f\xf6\x2d\xf6\xa3\xb2\xee\x25\x96\x96\x9b\x99\x17\x04\xb3\x1c\x68\x99\x97\xab\x46\x28\xbc\x26\x60\xc6\x78\x72\x13\x2e\x85\xda\x0c\x4f\xcf\x56\x79\x65\xf1\x25\x4a\x8f\x43\x26\x92\xa1\x7b\xb8\x6c\xb3\xc1\xdc\xba\xac\x93\x95\x52\xf0\x9e\x50\xec\x5b\x0d\xe2\xef\x85\xe0\xac\x25\x3a\x41\x65\x65\x5d\xb5\xb5\xc4\x98\x03\x82\x1d\x85\x9c\x60\x96\x1e\x06\x1d\x58\x27\x8b\x82\x7d\xd4\xd3\xbc\x47\xf1\xc2\x2d\xe0\x94\x90\x6b\xdb\xbf\x3b\xad\xbd\xde\x22\xba\x24\x25\x58\x55\xeb\x86\xd1\xd7\xf3\x70\x82\x05\x93\x11\xdc\x07\x28\xeb\xea\xf2\x6c\x44\x73\xba\xd1\xfa\x9e\x61\x4b\x53\x3b\x81\x1b\x6b\xcb\x06\x50\xc0\x6d\x87\x9a\x52\x45\x78\x8f\x34\x01\xb4\x61\x97\x30\x07\x74\xa9\xaa\x73\xcd\x97\x8c\x05\x30\xc8\x1a\x53\xbd\xb3\xfc\x93\x24\x14\xb3\xe3\x04\x40\xdc\x12\x74\x41\xef\xf1\x60\x5e\x7f\xd9\xac\x8c\x63\x2e\x82\xbf\x1b\x45\x3d\x4f\x33\xa5\x7e\x4b\x67\xb0\xb6\xfc\xf6\xed\x55\x55\xb5\xf5\xa3\x00\xa1\x4a\x00\xd0\x38\x5a\x33\x75\x05\x25\xb0\x0e\xdb\x31\x2c\x6b\xfd\xd6\x4e\xdd\x3b\x53\x16\xd1\x9f\x95\x8c\x51\x76\x34\xf0\x13\xb0\x08\x93\x6d\x34\xe9\xb5\xe1\xe9\x28\x3a\x5f\x0f\xd7\x78\x33\x77\xc0\xe5\x09\x06\x41\xbb\x9d\x33\x8c\xf3\x13\x3a\xcd\x0b\x97\x1e\x53\x79\x04\xf1\x7a\xf9\x29\x11\xaf\xad\x72\xee\x97\xf9\xa8\x28\x3a\x16\xa7\xe2\x6a\xb4\x28\x41\x6c\x10\x17\xda\xe9\xb1\xa9\x9c\x4c\x33\x20\xad\x16\x3b\xdc\xfc\x32\x8b\xfa\xf9\xb8\xd5\xd7\xd2\x6d\x41\xd1\xef\x21\xa5\x20\x8f\x01"}, {{0x5e,0x6f,0xda,0xc9,0x35,0x1a,0x63,0x7b,0x99,0xf3,0x3a,0x26,0x4e,0x12,0x87,0x69,0x7e,0x2a,0xba,0xb0,0xcc,0xa1,0x66,0x21,0x79,0x24,0x84,0xf5,0x60,0x6f,0x44,0xc1,},{0x57,0xe5,0xf8,0x8a,0xcd,0xdc,0x8c,0xde,0x7d,0xd0,0x7a,0x31,0x46,0xfb,0x1d,0x4f,0x7a,0x9b,0x63,0x83,0xa8,0xf6,0xb2,0xb8,0xd9,0xb0,0x7e,0xbc,0x3f,0xc4,0xdd,0x20,},{0x98,0x7e,0x32,0xe0,0x0a,0x8a,0x16,0x32,0xf4,0x7b,0x50,0x31,0x94,0x35,0x5c,0x98,0x0c,0xb2,0x2a,0xde,0xb3,0x26,0xb4,0xe3,0x11,0x5e,0xca,0xb0,0x4b,0x70,0x4d,0x18,0x6c,0xd9,0x2e,0x3c,0x3a,0xc7,0xb4,0xe2,0x93,0x6c,0xbd,0x07,0xcb,0x79,0x4e,0xc0,0xcf,0xe9,0x1a,0x97,0x87,0x2f,0xf2,0xb4,0x13,0x76,0xf5,0xf1,0x8f,0x55,0xb8,0x05,},"\x4d\x6c\xd3\xbc\x2f\x86\x26\x6b\x8b\xb1\xb6\x1d\x0e\x1c\xaa\x9b\xd2\xd4\xa1\x80\x36\x1a\xef\x3a\x18\xd3\x90\xb1\x0f\x7e\x86\x0f\x69\x7e\x24\x7e\xb6\xc3\xe5\x1d\x3b\x97\x6b\xf0\xca\x18\x3d\x01\xa6\x98\x80\xf1\x5c\x94\xb8\x75\x66\x8c\xa3\x0d\xad\xa0\x89\x5b\xed\xd4\xd7\x05\xa0\xe0\x33\x04\xd0\x63\xde\xa8\x7c\x7f\xde\xc9\x8b\x89\xc0\x6f\x13\x0d\xd5\xbd\x58\x6b\x54\xd9\xba\x73\x78\x26\xbb\x40\x5c\xd8\xac\x8b\xbc\x95\x00\xac\xda\x3c\x07\x46\x1d\x00\x94\x40\xaf\x0b\x25\x31\xe7\x2f\x3f\xf5\x01\x6a\xe2\xd8\x6d\x69\xb8\x7f\xb2\x73\xd1\xe8\xdd\x5f\x6a\x26\x4b\xee\xbb\x2f\x88\x59\x96\x74\x1f\xfd\xa2\x77\xa0\xfb\xf8\xef\x08\xf8\x1f\x22\xee\x59\x61\xd9\xd3\xfc\x93\x83\x62\xe1\xca\x12\x00\x4a\x91\xd9\xb5\xf7\xa6\x83\x3a\x6c\x22\x95\x5a\xc0\xcd\xa3\x39\x06\x71\x91\x0c\xbd\x51\xe6\x85\xfe\x09\x59\x73\xe4\x15\xfc\x2d\xb8\xad\xf1\x0b\x14\x7e\xc7\x08\x0c\x3b\x8e\xbd\x07\xd2\x1b\xb9\x55\x6d\xa8\x54\x30\xa2\x68\xee\xd8\x48\x6b\x1e\x31\xc9\x43\x13\xb0\x16\x49\xfe\x91\xb2\x22\xf8\x5a\xde\xe1\x5e\xb7\x77\x07\xd7\x8f\xfc\xb6\x60\x92\x65\x44\xd3\x3b\xe9\x99\x4a\x29\x76\x20\xdc\x7a\xed\x97\xf3\x92\x63\x90\x53\xf3\x88\xb0\xb3\xaa\x3b\xd0\xac\x5b\x03\x3c\xb4\x14\xbe\x52\x0b\x43\xdf\x68\x26\xb9\x76\x89\x0d\x0c\x53\xb9\x7b\x6c\x92\xe7\xd1\xa1\x57\x3d\x0c\x74\x94\xd7\x47\xe0\xca\xd9\xbd\x8e\xa5\x38\xd6\x2a\xd5\x98\x01\xad\x07\x16\xf1\x70\x19\x3e\x30\x09\xd9\x95\x9c\x55\xd2\xff\x64\x79\x9b\xd9\x59\x35\x9a\xbb\x94\xca\x97\x23\xb5\xff\xc2\x4c\x95\x07\xf8\xc5\xfd\x6e\x88\xea\xae\x7a\x70\xad\xd8\x4d\x74\x4c\xcf\x8b\x98\x36\x37\x88\xf0\xbf\xb1\xa0\x25\x22\x02\x57\x51\xe5\x34\x71\x0d\x40\xa2\xd3\x8a\x79\x11\x94\xeb\xa2\x93\xfd\x20\x46\xcc\x14\xdd\x38\x76\xd1\x68\xfc\x6e\x23\x6c\xbe\x14\x6d\x63\x69\xd2\x25\xbf\xa6\x7e\x53\x97\x98\x65\xf7\x88\x73\xa9\xfc\xf0\x3c\x18\x6f\xa8\x52\x1f\x0a\x55\x45\xac\xce\xe8\x0d\x1e\x55\x10\x72\x21\xe2\x1f\x0f\x22\x91\xc1\x43\xde\x02\x3e\x88\xd7\x33\x0c\xc8\x7d\x4c\x51\xff\x29\xa3\x09\x06\x05\xe9\x73\x94\x90\xc1\xdc\xee\x71\x34\x95\xf2\x31\xc2\xa3\x6b\x11\xab\x23\x55\x47\xfb\x63\x28\xf7\x47\x33\x6d\x9b\x1e\xf2\x5a\x8a\xb9\x9c\xed\xa9\x57\xb2\xdc\xce\xe4\x07\x5b\x0d\x03\x38\x1b\x94\xae\x18\xd0\x41\xea"}, {{0xfc,0xff,0xf0,0x93,0x2d,0xc8,0x6e,0xa5,0x90,0x2a,0x8d,0x33,0x07,0x33,0x29,0x96,0x0c,0xd8,0x18,0x8a,0x07,0x5d,0xd0,0xbc,0xdf,0xa8,0x38,0x2c,0x20,0xb0,0xe7,0x8f,},{0x0c,0x92,0x05,0xa9,0x0b,0xbe,0x7f,0x2d,0x50,0x5e,0x17,0xfa,0x3d,0x08,0x0b,0x52,0x2a,0x1d,0x7a,0x15,0x2c,0xad,0x2d,0x85,0xd3,0x1b,0x34,0xa0,0x47,0x1c,0x0d,0x4c,},{0x37,0xdd,0xd8,0x3f,0x98,0xb0,0x57,0xb7,0xcb,0x32,0x08,0xa8,0x32,0xc5,0x8a,0xa9,0x06,0x94,0x56,0x3c,0x23,0x54,0x8d,0x43,0x22,0x91,0x38,0x0b,0x73,0x59,0x13,0x01,0xf2,0x74,0xb0,0x4c,0xee,0x2e,0xf7,0x8c,0x06,0xd9,0x6c,0x3d,0x9b,0x7c,0x17,0x52,0x1a,0xae,0x1a,0x8c,0xa5,0x0d,0x34,0x7c,0x09,0xc3,0xcf,0x70,0x3b,0xc8,0x83,0x0b,},"\x3d\x4b\x76\x12\x23\x73\xe2\x12\xa3\x46\xd1\x9a\x66\xbb\xfc\x4b\x62\x32\x92\x64\x9b\xd0\xce\x5c\xf6\xbb\x13\x56\x48\xbd\x01\xdb\x74\x03\xb3\xd0\xbd\xd1\x69\x7f\xf4\xe6\xe9\x08\x90\x41\x16\x75\x4d\x37\x0c\x40\xd7\x00\xcd\xb6\x64\xc4\x6a\x91\xdd\x84\xa3\x58\xb9\xd2\x38\x14\x43\xe6\x0f\x2c\x3f\x56\x40\x26\x1b\x6b\x85\x8b\xa8\xf8\x28\xb0\x97\x1f\x41\x22\xb2\x02\x88\xa2\x6b\xa2\x09\x0b\xa1\x4f\xd2\x76\x36\x0c\xc6\x86\x79\xcd\x84\x19\xae\x19\xc6\xd4\xdc\x7b\x66\x14\xc0\x6d\xf5\xe5\xc0\x51\x0e\x2c\xb6\x86\xde\x0e\xbd\x75\xe5\x21\x0a\x21\x55\x62\x58\x9b\x28\xc9\xcc\xc7\xd2\x72\xb9\x8b\xd4\xbf\x93\x49\x5e\xfe\x4f\xc5\xb7\x8d\xef\xec\xfb\xca\xa9\xfe\x12\x6b\xad\x30\xe8\x9b\x3a\x38\x9b\x42\x56\xf6\xa4\x8a\x76\xc3\x45\xde\x5a\x36\xa1\x44\x9f\x08\x34\x5b\x9a\x5e\x6a\x00\x1d\xa1\xff\x9c\xd4\x33\x70\x93\x48\xe9\xae\xfb\xc7\x8b\xa5\x2d\x3a\xb3\xb4\x69\x86\x93\x5e\xba\x8e\xcf\x81\xed\xc4\x3c\x5b\x2e\x3b\x5e\xb3\x8d\x9a\x16\x5e\x9e\x7f\x72\xf6\x17\x60\x54\x63\xbe\xdb\xa9\x73\xeb\xfd\xcd\xf2\xb0\x88\x9c\x71\x41\x2f\x8f\x85\x0c\x7a\x3b\x55\x18\xec\xd8\x9d\x2e\x25\xc0\xc1\xc3\x0f\x08\x5a\x0f\xfe\x54\x0e\xf9\xc0\xe8\x8f\xc7\xec\x4a\xf1\x94\x8a\x4e\x6f\x7a\x6e\x25\x6b\x30\x7a\x11\x27\xb7\x1b\xa6\x86\xef\xea\xdc\xa0\xe4\x86\x09\x47\xcf\x67\x4f\xce\xd6\xca\xf7\x31\x0c\xcb\xaa\x8d\x90\x47\xda\xed\x30\xfd\x55\x85\xd4\x1d\xde\xae\x4d\xf2\xfe\xd4\xb6\x22\x80\x32\xc3\xe4\xae\x23\x80\xe8\x7e\xc6\xcd\x72\xe4\xd7\x4b\x8b\x4c\x38\x13\xfb\x04\x33\x89\x39\x1e\x9c\x13\xf7\xd3\x3c\x3a\xab\x5a\x78\xfc\x4c\x6a\x63\x4c\x61\xa7\x0f\x02\xa9\x40\x54\x8d\xa1\x77\xc6\x5d\xf6\xab\x17\xcd\x96\x83\xf3\x7e\xa8\x21\xc7\x40\x88\x9d\x82\xe8\x8c\x83\x4e\x7d\x5d\xc1\x16\x62\xea\x78\xb1\x3c\x6a\x4b\x62\x18\xd3\x17\x84\x21\x9a\x47\x67\x59\x5b\x1a\x56\x21\x65\x25\xcd\x68\x93\x8b\x22\xbd\xb1\xf8\xc5\xa7\xf1\x70\x1a\xfe\xb9\x61\x88\x8e\x2e\x0e\xc0\xc8\x38\xcd\x62\x0c\xb7\xdd\x8a\x14\x93\xa0\x2c\xd5\x6b\x54\x51\x25\xe4\x70\x0c\x08\x89\xfa\x26\x44\xe6\x44\xa3\xaf\x53\x1d\x1c\xd6\xbc\x95\xe5\xdf\x91\x75\xf1\x37\xf2\x84\x08\xcb\x69\x9c\x7a\xe6\x6f\x65\xd1\xd2\x93\x0f\xac\x57\xca\x8a\x60\xe6\x31\x1a\x40\x78\x48\x8c\x9e\xa4\x04\x94\x8a\x9d\xeb\xeb\x9d\x5e\x10"}, {{0xa1,0xe4,0xfc,0xfd,0xe0,0x44,0xf1,0xbb,0x0e,0x7b,0xbc,0x63,0x1a,0x83,0x1a,0x8d,0x07,0xe9,0x0a,0xe0,0x8a,0x96,0x6a,0xd6,0x27,0xb6,0x20,0xb1,0xe2,0x8c,0x42,0xcf,},{0x25,0x56,0x0f,0x31,0x16,0x8b,0xd4,0xb7,0x25,0x52,0xed,0xed,0xd0,0x8b,0xb6,0xbf,0x79,0xa9,0x40,0x63,0xc1,0xf1,0xe1,0xd3,0x04,0x86,0x9d,0xd1,0xce,0x04,0x9b,0x95,},{0xc8,0x00,0x15,0x27,0xbd,0x90,0x2c,0x15,0xc3,0xdd,0x5a,0xe1,0x81,0x80,0x52,0x5b,0x5e,0x82,0x02,0xbe,0x66,0x71,0x1f,0x82,0x88,0x5c,0x82,0x22,0xa1,0x5f,0x06,0x00,0x92,0xa2,0xa6,0xe2,0xf7,0xd7,0xe9,0x80,0x31,0x12,0x09,0x19,0x1b,0x32,0xb8,0xad,0xe4,0x8d,0x3e,0xa9,0x8c,0xf2,0x45,0xf0,0xfa,0xd6,0x2c,0x00,0x9c,0x5a,0x71,0x08,},"\x8c\x14\x54\xd4\xe0\x8a\x14\x01\x64\x6b\xf7\xa8\x85\x9e\x8a\x14\x5e\x85\xee\xeb\x40\xdb\x38\xff\x01\x69\x70\x96\x41\x21\x2c\x81\xb6\x73\x90\x74\x9c\x01\xa7\x98\x07\xf3\xcc\xad\xbb\xd2\x25\x6f\x36\xff\xc1\x80\xcf\x9b\xa4\x4b\xf4\xa7\x61\x2d\x44\x1c\x23\xb2\xe2\x5d\x33\xc4\x8a\x73\xe1\x6c\xe3\x57\x56\x27\x58\xad\xb0\x05\x53\xc3\x14\x2f\xb8\x17\x6b\x6a\xe8\xfb\x61\x0a\x60\xf9\x23\xb0\x91\x18\x14\xb1\x0f\x56\x79\x93\x6c\x36\x77\xb7\x0e\x84\x6e\x21\x8f\x58\x75\x67\xf2\x01\x9c\x7d\x28\x2a\x10\x7f\x3c\xc8\x47\x63\xad\xae\xc8\x89\x93\xc0\xcc\x50\x03\xe7\x7a\xf6\x0d\x67\xdb\x53\xf8\xcb\x72\x7a\xa6\x67\x2d\xe0\x04\x49\x8c\x3b\x3e\x22\x2a\xa7\x08\x2d\x91\xf9\x8a\x1a\x06\x83\x74\xc5\x10\xff\x53\xa5\xe5\x59\xcb\xe2\xd6\xc7\xc3\x44\x2d\x72\x38\x90\x7c\x81\x1d\x58\xaa\x7f\x5a\x46\xb8\x31\x12\x44\xf0\xdb\xe1\xb9\xc0\xe9\x44\xdd\xa1\xd8\x01\x08\x64\x94\x9c\x59\x39\x6c\x6b\x34\x6a\x11\xf3\xaa\x86\x6d\x6b\xce\xad\xfc\x90\x90\x38\xd2\x2e\xfb\xc8\xf1\xda\xc8\x10\xa9\xf2\xfa\xfc\xce\x7c\x03\x89\xeb\x0a\x56\xc0\xf6\x8c\xae\x24\xae\x3d\xdb\xdf\xf7\x11\x6d\x2f\xad\xeb\x9b\x0e\x75\x09\x53\x6f\xdc\x3b\x83\xe7\x13\x54\xda\x6a\x1a\xed\x16\x88\x74\x90\xdc\x2f\x4d\xf5\x7b\xba\xa7\x24\x45\x28\xfa\x30\x94\xb9\x9e\x86\x75\x81\xac\xef\x90\x62\x70\xb2\xcf\x4d\xed\xa6\xb8\xfd\x9d\xbb\x79\xad\xd7\xbe\xa8\xf8\x6f\xcb\x1f\x64\xdf\xd5\x0e\x38\x5b\x42\x09\xec\x0b\x1a\x9f\x6d\x2e\x51\x90\x68\x29\x7a\x2b\x5c\x40\x5c\x21\x6b\x4a\x2e\xd9\x83\xff\x69\xc5\x9b\x53\x0e\xff\xa6\x0c\x03\x67\x05\x12\x67\xdd\x2b\xbd\x1e\x86\xa9\xab\x5a\x11\x4d\xd4\xf6\x9b\x54\x0b\xfa\xbf\xe9\x7c\x04\x03\xb8\xfc\xbb\x27\x62\x57\x61\xed\xa3\xe2\xad\x8e\x62\x5c\xfe\x4b\x61\x5b\x70\x25\x53\x1a\x49\x89\x18\xc2\x4e\x02\xa0\x0e\x79\x7b\xba\xfd\x14\xf9\xd3\xf6\x82\x7e\x39\x00\x63\xc4\x36\x08\x06\x88\xd0\x37\xa6\xe2\x99\x3c\x56\xd3\xa8\xe9\x5f\x37\x5c\x10\x04\x0b\xf0\x4f\x03\x0c\x97\x26\x23\xd9\xe3\x80\x1c\x13\xb4\xec\x8d\x01\xcf\x18\x38\x55\xf5\x93\x5f\x10\xdd\xb2\xc5\x4c\x51\xc8\x0c\xbe\xd0\xc2\x4d\xb5\x6e\x1e\xd1\x48\x93\x1d\x89\x16\x1c\x5e\xa3\x7c\x2f\x97\x87\xf8\x8e\xf7\x33\x0e\x5d\xcd\x0e\x43\xd8\x1b\xfc\x8b\xf2\x3d\xdf\x79\x83\xcc\x1d\x73\x38\x43\xa3\x3c\xcb\x39\x5d\xfc"}, {{0xbe,0xd1,0xbb,0xca,0xe1,0x86,0x43,0xd6,0xf6,0xaa,0xc3,0x4f,0x3d,0x9b,0x6a,0x14,0x78,0x39,0x4d,0x02,0xb9,0x31,0xcf,0xf0,0x06,0xd8,0x5f,0x21,0xb7,0xdb,0xc7,0x47,},{0x4f,0x52,0x8b,0x38,0x18,0x5a,0x42,0x4c,0x6f,0xde,0xce,0x46,0x51,0x1a,0x0c,0x29,0xb7,0xc0,0x4b,0x32,0xeb,0x04,0x83,0xab,0xb5,0x2d,0x5f,0x8e,0xb6,0xb3,0x52,0xeb,},{0x0f,0xc9,0x9d,0xd3,0xb9,0xa0,0xe8,0xb1,0xfc,0x6e,0x63,0x5a,0xf5,0xc6,0x40,0x06,0xb6,0x72,0x00,0xfe,0x95,0x8f,0x53,0xcc,0xe1,0xb9,0xb0,0x91,0xa4,0xe7,0x06,0x69,0xb5,0x93,0xf1,0x55,0x94,0xbc,0x08,0x42,0xe5,0x57,0x62,0x59,0xf9,0xa6,0x85,0x9a,0x0d,0xb2,0x2d,0x74,0x0f,0x9f,0x80,0x24,0xb5,0xba,0xf1,0xef,0x6f,0x95,0x8c,0x05,},"\xff\x7c\x64\x13\xe6\x18\xa0\x56\xde\x40\x1e\xe1\x0c\x40\xad\xe3\xd7\xc0\xe6\x86\x14\x95\xd9\x7c\x26\x89\xec\x6a\xbb\x69\xdd\x2a\xe7\x01\xfd\xca\xc8\xf0\x83\x31\xea\x5c\x5f\x5d\x80\x5b\x57\x89\xee\x5e\x24\x1f\xf4\xac\x8b\x96\x0f\x4f\x2b\x9f\xef\x6a\x72\x7f\xad\x86\xdc\xd4\x32\xde\x9f\xad\x6b\xa4\x5e\x00\xaa\x36\x87\xb0\xce\xeb\x2c\x0d\x43\x0b\x7d\x5f\xde\x63\xb4\xf6\xb9\x82\xc4\xf9\xe0\x3c\x43\x0a\xba\xd9\x04\x4d\x06\xdc\x49\xe8\x9d\xf4\x81\x40\x5d\x8f\xeb\xbb\x06\x53\xe9\x68\x69\x48\xaa\xd2\xd9\x07\x25\x44\xdf\x94\x24\xfd\x48\x7f\x4e\x24\xba\x7f\x24\x55\xdd\xec\x41\x05\x82\x8c\x39\x81\xbd\xdb\xb1\xb7\xfb\xdb\xac\x15\x59\x03\xe9\x60\xfc\xd9\x4c\x07\x16\xe7\x36\xf5\x19\x86\x7f\xbc\x52\xc5\x12\x60\xf5\x71\xd7\xed\xcb\x08\x1a\x23\x55\x0a\xd8\xc7\x0b\xb2\x68\x86\x4a\xb2\x76\xaa\x2c\xc2\xdb\xf6\x23\x83\xbb\x66\x03\x0e\xbe\x94\x35\x41\x74\xcc\xec\x2d\x2a\x90\x75\x78\x55\x64\x44\x50\x7c\xbf\x84\x88\xbb\x23\xc6\x24\x23\xa3\xa9\x8d\xa7\xcc\x96\x8f\x59\x9d\x3d\xc8\x4d\xca\x3a\xfa\xd7\xf1\x4e\xc3\x06\xe1\xdb\x53\x41\x43\x21\x6a\xa2\x2a\xd1\x80\x74\xc7\x19\x57\x08\x05\xea\x46\xbc\x86\xb7\x1a\x8f\xf5\x8e\x41\xe7\x3c\xb2\x9a\xd5\x75\x0f\xcf\xc9\xa1\xc5\x42\x92\xb6\x4b\x47\xec\x95\x38\xf5\x38\x16\xe3\x6e\xd0\xd0\xc1\xae\x5e\xad\x06\xd4\x77\xaa\x97\x5e\xce\xba\xf6\x2d\x90\x23\xb7\x7e\x50\xe7\xb6\xd4\xab\xda\xa4\x85\xea\x34\xec\x76\x6b\xeb\x1d\x9b\xa0\x3c\x9c\x06\x71\x86\xe2\xe3\x82\x66\xc6\xe2\x53\x1e\x97\x48\x02\x14\x63\x8a\x2b\xb3\x14\x31\xac\x20\x86\x79\x71\x55\xfc\x77\x5b\x3a\xad\x8d\x5a\x0b\x90\x4c\x38\x1e\xdd\x0c\x6b\xc2\x3c\x66\xa1\x90\x49\x55\xed\x45\x0a\x9c\xbd\x16\x45\x9c\x32\xf5\xca\x35\x4b\xbc\x2d\xa7\xb1\xa4\xd8\x14\xf1\xb8\x71\x0a\xad\xb2\xcc\xc4\xf3\x97\x75\x8b\x7e\x9d\x91\xf3\xa9\x1e\x58\x25\xab\x86\x82\xff\x5e\x41\x70\x2e\x07\x84\x1a\xc7\x69\x8c\x3d\xa9\xf5\x58\xed\xd0\x1f\x86\xce\x2c\x50\x6b\xf4\xc2\x14\x9a\xc9\xc1\x95\xa5\x9c\x7d\xd7\xd4\xec\xf9\x3c\x90\xb4\x42\x3b\x43\x50\x58\x8d\x41\x67\x2c\xed\xc8\x51\x0a\x7a\xd5\x3b\x4b\x7e\xdc\xaf\x23\xe4\x3e\x05\x66\x9d\x27\xa1\xfe\x97\xb7\x87\x30\xd3\xfc\x06\x0b\xd4\xed\xd9\x87\x2c\xff\xb9\x62\x85\x35\x1b\xef\x14\x8e\xf7\x83\xab\x39\x21\x16\xbd\x7b\x90\x7b\xad"}, {{0xc7,0x18,0x82,0x3f,0x43,0xdb,0x22,0x17,0xc6,0x6a,0xb2,0x89,0x97,0x04,0x16,0x5d,0x20,0x85,0x73,0xde,0x60,0xf3,0x3b,0xc0,0xb9,0x33,0x8d,0x88,0x0f,0x19,0x3f,0xb5,},{0x29,0x40,0xb8,0x79,0xb6,0x3f,0x2c,0xb1,0xf6,0xe3,0xef,0x9c,0x9d,0x33,0x3b,0xa9,0x17,0x70,0xfe,0x18,0xcc,0x5a,0x34,0x7f,0xdf,0x12,0xb0,0xef,0xc5,0xca,0x2e,0xc9,},{0x4c,0x9c,0xdb,0x1a,0xd4,0x65,0x09,0x56,0x0d,0x87,0x1d,0x30,0x89,0xaf,0xb8,0x73,0x46,0x48,0x20,0x1b,0x10,0xac,0xc9,0x53,0xe8,0xb6,0x1f,0x2c,0xce,0x2d,0xba,0xe0,0xfb,0x9b,0x86,0x8a,0xc9,0x57,0x43,0x2b,0x72,0x22,0xdb,0xf7,0xe4,0xcf,0x0b,0xc7,0x53,0x09,0xbe,0xa3,0x60,0xb2,0x63,0xab,0xbd,0xe1,0x88,0x53,0x2d,0xda,0x25,0x04,},"\x05\x0e\x68\x77\xf6\x5e\xc7\x26\xee\xc7\x01\x86\x3f\xab\x14\x0b\x99\x4a\xa1\xe9\x2a\x48\x7d\xb1\xa1\x87\x01\x31\x20\x57\xdb\x44\xbf\xde\x70\x91\x1e\xc2\x6e\xaa\x28\x63\x2d\x03\x79\x4d\x54\x5d\xfc\xb2\xae\xd4\x34\x0c\xab\x7d\x09\x25\x95\xcd\x59\xed\x23\x99\x40\x43\xf5\x0b\xa6\x96\xe9\x80\x2b\xd6\x49\x90\x12\x13\x97\x28\x64\x57\xae\x69\xd7\x6c\xb8\xe3\x4d\x7c\x1a\xb2\x45\xcb\x07\xb1\xb4\x08\xf2\xbb\xbf\xdf\x33\xa1\xbd\xd5\x59\x63\x67\x02\xc9\x18\xf9\x82\xc2\xac\x02\x21\xf7\xf9\x4d\xb9\x1e\xde\xfc\xe2\x81\x18\x25\x9f\x89\xd9\x94\xda\xd5\xbb\x01\x3c\x67\x8c\x1c\x33\x8b\x65\x39\x6b\x15\xe8\x89\x9c\x16\x99\x21\xf2\x78\x85\x9c\xe0\xc8\x56\xd8\x89\xb8\xc6\x34\x18\xeb\xc5\x73\xd2\xd6\x25\xd5\xb5\x93\x88\x39\xf2\xb1\x69\xb6\x91\x6d\x8e\x40\xdd\xe7\x0d\x3b\x72\x88\x7a\xd2\x47\x8e\xf6\xfb\x12\x84\xfa\x0e\x4f\xc5\x24\xe3\xc6\xfa\x1d\xd2\x2b\xa6\xb8\x1d\xef\x82\x79\xf3\x82\xbc\xb4\x50\x48\x85\x1b\x17\xcd\x65\x9d\x59\x40\x9f\x57\x1f\xa8\xa9\x20\xa2\x09\x34\xd9\xdb\xe1\x02\x2d\x63\x58\x40\x96\x54\x00\x24\x0f\x87\x0a\xce\xff\xd5\xdb\x7c\x7d\xf0\x8a\xf8\x9e\x47\xe1\xb9\xe2\x0b\xb9\x9f\x96\xab\x07\x3e\xdf\x53\x69\x4c\x74\x82\x89\x0e\x36\x31\x34\x02\x17\xe6\x87\xab\x27\xc9\x84\xb6\x08\x25\x16\x94\x57\xd4\x35\xa5\x40\x9a\xd8\xe4\x2d\xa0\xaa\x63\xe2\x0c\x2b\xc6\x7b\xd8\xb9\xa2\x67\xf3\x96\x73\xa7\x7f\x7f\x31\x36\xdc\x5c\xb2\xd2\x49\x48\xdb\xe7\xbc\xd7\x12\x93\x18\xc6\x8c\x6f\xe9\x5d\xd4\xdd\x4f\xe9\x42\x28\x68\x31\xea\x53\x35\x2f\xbb\x25\x2a\x12\x88\xbc\xd8\x38\x92\x13\x56\x78\x5d\x07\x21\x34\xcb\x82\x0f\x62\x79\xcc\x71\x46\x1f\x43\x1b\xe9\xd3\x01\x47\x24\x32\x1c\x92\xfd\xc5\x76\x32\x01\x37\x70\x5c\xff\xb2\xc2\x36\x64\xb7\x05\xe9\xbe\x60\xae\x1a\x19\x0f\x3e\x34\x84\xf7\x00\x58\xe7\x02\x40\x7b\x05\x6d\x7f\xe5\xd3\x1c\xee\x9c\x2a\x6a\xc6\xea\xda\x35\x16\xab\xc5\x51\x72\x56\xdf\x12\x43\x78\x0a\x03\xbb\x00\xba\x00\xce\x24\x80\x76\xee\xca\x6f\xee\x91\xd5\xef\x9e\xb9\x07\xb8\x01\xaf\x09\x7f\x3e\x9e\xb2\x56\xbd\xcd\xe8\x1e\xfe\x4b\xaf\x81\x89\xb0\x39\x9e\x36\xf1\xea\xa3\xab\x62\x66\x17\xcf\x3b\x47\xdd\x89\xca\xf6\x9c\x64\xc5\xb8\xf6\x8b\xd9\x17\xfe\x03\xe4\x66\x85\x38\x46\x0a\x1b\xe8\x8d\x9a\x84\x6c\xef\x39\x93\x46\x27\xd4\x74\x73\x4f"}, {{0x25,0x43,0xd1,0x66,0xc9,0xf5,0xf7,0x42,0x7f,0xf3,0x03,0x4f,0xfa,0x81,0x03,0xcb,0x11,0x7b,0xf4,0x72,0x33,0x1a,0x73,0xd9,0xa2,0xf1,0xbc,0x0a,0x02,0xa6,0xff,0x1b,},{0x42,0x67,0x8c,0xf3,0x85,0x70,0x21,0xaa,0x55,0x67,0x70,0x6d,0xb0,0x31,0xe7,0x92,0x71,0x5c,0xca,0xf8,0xab,0xb0,0x2a,0x04,0x2b,0xad,0x17,0xdb,0x3d,0x5f,0xa1,0x03,},{0x20,0xea,0x93,0x68,0xa2,0xcc,0xd0,0x8b,0xf9,0xcb,0xf4,0x8d,0x4a,0x2f,0x7d,0x03,0xf0,0xdb,0x08,0xa5,0x4b,0x87,0x67,0x9c,0xda,0x03,0xe2,0x96,0xaf,0x9e,0xf3,0x78,0xbe,0x9b,0x8f,0x04,0xb4,0x06,0x5b,0x00,0x9d,0xa6,0xdb,0x01,0x6f,0x3d,0xf9,0xdb,0x64,0x82,0x58,0x73,0xe2,0xfb,0x4d,0xe3,0x04,0x49,0x91,0x5c,0xd7,0x3c,0x46,0x09,},"\x74\x6d\x7a\xbf\x0b\xfb\x26\x62\xc2\x5a\xb5\xc5\xe4\x61\x2c\x30\x6f\x16\xd1\x3e\x44\xd0\xdb\x39\x4a\x00\x15\x67\x6c\xe6\x09\x78\x4f\x03\x23\xda\x1d\xfa\x94\xd2\xb2\xf1\xf6\xe0\x24\x44\xa9\x36\xd0\x19\xb1\x43\x02\x1f\x73\xc7\x9d\xf9\x30\x9e\x7b\xdf\xf3\x9d\xae\xec\x4c\xac\xa0\x0c\xba\x4e\xf3\x1c\x83\x10\xc1\xa0\x8e\xf4\xb3\x6f\x81\xc3\x77\x84\x6b\x5b\x90\xac\xd4\x11\xaa\x67\x1e\xd7\xaf\x27\x8a\x24\x22\x9b\x78\x93\xc1\xb4\x15\xd7\x98\x88\xd7\x63\x7f\x5c\xb5\xc9\xc6\xc6\x31\xae\x5f\xfa\x29\xf1\x34\x0e\x44\x40\x96\xab\x53\x36\x17\xfd\xcb\x80\xff\x81\xda\x0a\x7c\x6c\x14\x2e\xe0\xfe\x5e\xa8\x2f\x68\xcc\x3e\xa3\x8b\x56\xf2\x72\xb0\xd8\x0f\xd5\xf4\xf5\x5c\xa9\x34\x8c\x16\x18\x81\x43\x58\x13\xc3\xfa\x9f\xff\x66\xa2\xee\x6d\x5b\xd3\xed\xba\x0d\x2f\x9a\xa7\x4b\x1c\x44\xbf\xd0\xe6\x46\x78\xd3\x71\x51\x24\x96\x3a\xc5\x75\xff\xb0\x9e\xe1\x64\x37\xda\x48\x4b\x3b\xa5\x8e\x5a\xeb\x8e\xd8\xc5\xc0\xf4\x7b\x59\x90\x8f\xe5\x80\xf3\x7e\xc1\xde\x26\x6b\x29\x5d\x6b\xe8\x5e\x62\x35\x8e\x9b\xbd\xc7\x89\x64\xfb\x83\x7e\xea\x29\xfd\xb7\xde\x86\xcc\x56\xf4\x8b\xd9\xa3\xe6\xe2\xbe\x51\xd8\xa1\xdc\xff\x3c\xa4\xd5\x6e\xa9\x34\xc6\x82\x77\x2b\xca\xfb\x51\x49\x7b\xe5\xd0\xf2\xa2\x3d\xd4\x97\x0c\x02\xc4\x4c\x09\xad\x89\x7b\x42\x41\xac\xd7\xd6\xab\x12\xd8\xf0\x0c\x9a\xad\xc3\x34\xb4\x31\xfe\xc5\xbb\x69\xa2\x85\xb7\x55\x0a\x63\x9e\xce\x96\x95\x26\x82\xb7\x33\x4b\x68\xc6\x51\x52\xe8\x93\xb1\xc8\x10\x0c\x69\x4d\x8c\x5c\xfe\x26\xac\x03\xc1\xf3\x91\x4e\x65\xc8\x4f\x0e\x77\x72\x90\xc7\x6f\x6a\xcc\xe3\x40\xbf\xf6\x6d\xa7\x22\x0f\x73\x17\x5e\x94\xaf\x52\xf9\xf1\x9e\x61\xf8\x0d\xc1\xf3\x57\x16\xb3\xf4\x8d\xfa\x50\x25\xc9\xeb\xef\x73\x82\xe0\x55\x83\x0f\x5b\xbf\x15\xc6\xf6\xa9\x50\x32\x90\x9c\x89\x2c\x0f\x89\xc8\xc1\x5f\xc3\xea\x40\xa2\x0e\xe1\xa4\x52\x9b\x52\x19\x51\xdf\x44\xd9\xd7\x9d\x74\xe0\xc4\xc2\xe0\xfe\xd8\x49\xb8\x78\x52\x06\xdb\xe6\x2b\xfa\x2c\xa2\x10\x87\xa9\x12\xe9\xb1\x84\x55\x16\x59\xcd\x8a\x58\x7e\x95\xb0\x43\x17\x19\x25\x96\xbb\x0b\x7f\xc9\xf7\xbb\xb6\xee\x04\x9c\x8b\x02\xfd\xd7\x58\xb4\xe7\x98\x82\x07\x3b\x71\xea\xab\x18\xaa\x29\x37\x01\xc1\x7d\x55\xf9\xec\x46\xc5\x2d\xe1\xe8\x86\xb6\x75\x0f\xb0\xfb\xcd\x64\xf4\x56\x8a\x21\x0a\xe4\x51\xe9"}, {{0x85,0xe0,0xa8,0x0f,0x3b,0x30,0xc2,0x01,0x99,0xd9,0xc1,0xec,0x66,0x2e,0x39,0x2f,0xdf,0x15,0x46,0x37,0x73,0x43,0xf1,0x24,0x71,0xdb,0x2a,0x03,0x10,0xa7,0x05,0xbd,},{0x54,0x0a,0x3a,0x1d,0x83,0x67,0x2e,0x49,0x50,0x34,0xcf,0xf4,0x08,0xe1,0xfb,0xe8,0x2e,0x53,0x8f,0x09,0x17,0xe8,0xa1,0xc7,0xd1,0x7a,0xab,0x58,0xe0,0x43,0xd3,0xc6,},{0x18,0x5e,0xf2,0x24,0x6a,0xba,0x2b,0x1a,0x56,0x80,0x32,0xc7,0xdf,0x93,0xc6,0x67,0x79,0x9b,0x8a,0x52,0x1a,0x6f,0x97,0x32,0x1e,0xad,0x58,0x66,0xb4,0xcb,0x9c,0x65,0xb6,0x4a,0x1c,0x40,0xb9,0xb6,0xa9,0x10,0xe7,0x42,0xdc,0x32,0xa7,0xe6,0x6d,0x11,0xea,0x45,0xdb,0xea,0xac,0xae,0x9f,0x09,0x51,0x1b,0x81,0x01,0xf8,0xaf,0x0c,0x0c,},"\xd2\x80\x2f\x15\x96\xf8\x38\x3b\x64\xed\xbd\xc5\x94\x06\x0b\xff\x0e\x70\x13\xd5\xb7\xc8\x5d\x83\x0f\xae\x11\xae\xb3\x4d\xd5\x94\x95\x9d\xa6\x24\xe0\x44\x47\x4c\x54\x09\xc0\x05\x96\x73\xbd\xc6\x1a\x67\x1e\xf5\xb0\xb8\xa2\x6f\x30\x10\x0b\x3b\x73\x96\x8d\x8e\x4d\x83\xa7\x2f\x25\xb5\x13\x44\x8d\x2f\x6b\x6a\x44\x75\xfd\xf8\x9e\x31\xca\x92\x68\xa3\x07\x05\xaf\x3f\x64\x9e\x3f\xe0\x1d\xde\x0c\xf4\xb2\x9e\xc2\xda\x54\x36\x44\x4a\xf0\x91\xd6\x27\x30\xac\xd4\xca\xb6\x08\xf0\xdf\x26\xf0\x88\xc6\xb9\xb9\x67\x37\x94\xf0\x74\x7d\xab\x2c\xe1\x90\xf9\x05\x92\x00\x9f\xdc\xe5\x46\x4b\x36\x61\xb7\xe8\x62\x0b\xad\x65\x50\x9a\x6c\x75\x2b\x72\x7a\x8d\xc8\xd3\xef\xa5\x84\xfd\xe0\x27\x2c\x45\x1d\x65\xa9\x3b\xec\xe4\xf5\x9d\x87\xdc\x6f\xbe\xb4\x51\x40\x1e\x3e\x2e\x00\x3c\x6a\xca\x7b\x3d\x3f\x92\x71\x91\x50\xc6\x77\x8f\x01\x5a\xff\x2a\x59\xbf\xbf\x2e\x91\xb2\x1b\x0a\xd6\x87\x75\x36\xeb\x54\x56\x70\x59\xf5\x87\xf5\x4d\x4e\x2a\x6f\xe1\xfd\xcd\xd6\xa7\xfd\xcb\x85\x15\x57\x5b\xcc\x37\x05\xd7\x78\x59\x35\x2f\xa0\xb0\x44\x16\x6e\x3c\x31\x88\x46\xa5\xdf\x33\x56\x30\x03\xcb\x20\xbc\x94\x2d\x30\x39\x10\x93\xe8\xd5\x83\xe8\xe6\x4d\xec\x57\x0e\xe1\xc4\x13\x87\x62\xf6\x48\x38\x98\xd3\x2e\x20\x32\xbd\xe9\xbb\xe0\x7e\xc2\xc3\xeb\x47\xd9\x68\x76\xf0\xfc\x0f\x02\x4d\x75\x3c\xeb\x34\xff\x84\x80\xb4\xcf\x57\x62\x30\xbb\x82\x63\xdd\x80\xee\xac\x66\x2e\xba\x31\xd8\xa6\x1f\x30\x9e\x17\x5f\x4c\x01\x43\xe2\x8a\x85\x2b\x1c\x30\x61\xce\x78\xef\xbd\x16\xa2\x87\x3d\xd2\x81\x98\xa4\x6e\xc0\xa8\x00\xb3\x0d\xc8\xa9\x3b\x8d\xbb\x81\xa7\x30\xde\x45\x0b\x86\x4d\xea\x76\x80\xe5\x09\xd8\x00\xe8\x23\x29\xc2\x61\xb0\x7e\x72\xaa\x80\xee\x16\xec\x37\x5d\xdb\xbb\x6f\xe3\xd8\xd4\x7b\x0e\x3c\x5a\x9f\x23\xc4\xd2\x0b\x72\x4c\x1d\xf5\x98\x35\xd8\x30\xdd\x22\xd1\x04\x03\xd8\xf1\x5c\x10\x2c\x4b\x37\x69\xc4\x16\x66\xc3\xab\x8c\x7e\x80\xb9\x40\xd0\xbb\xb5\x86\x52\xd1\x0a\x3f\xfe\x8d\x44\xdf\x10\x12\xa3\xdd\xc4\xe1\xc5\x18\xd4\x90\x19\xf7\xc5\xd3\xd9\xf9\x5e\xd9\x3a\x31\x97\x46\xd1\xe5\x43\xff\xa6\x9e\xdb\x49\xbb\x34\x39\xf8\xa3\x25\xac\x6a\x0c\xb4\xed\xd6\x5b\xa6\x00\x80\xa0\x44\x7c\x67\x4f\xaa\x72\xd8\xae\xbd\xb5\xd2\x54\x4f\x2f\x2d\x84\x7c\x72\xc2\xdf\xa6\x05\x7a\x69\x0a\xdc\x5c\x44\x1a"}, {{0x82,0xa2,0xc6,0x49,0x3f,0x11,0xba,0x80,0xe4,0xb8,0xb3,0xb4,0x38,0x41,0xbe,0x97,0x0e,0x2a,0x10,0xa9,0x4d,0x22,0x49,0xd8,0xac,0x6f,0x54,0x14,0xcf,0x5a,0x3c,0xb5,},{0x4c,0x2e,0xe0,0x1c,0xde,0xa0,0x7d,0xb3,0x63,0x5f,0x5d,0x4c,0x10,0x82,0xb9,0x2f,0x29,0x8d,0xeb,0x17,0xd0,0xf9,0x05,0xdf,0x71,0xb6,0x6f,0xb2,0x27,0x4e,0xae,0x99,},{0x68,0xa9,0x1d,0x4f,0x8d,0x24,0x1c,0x1d,0xef,0xbd,0x5c,0xa9,0xe9,0xe1,0xed,0x82,0x74,0x41,0x95,0x06,0x75,0x1c,0x96,0x79,0x47,0xb1,0x0d,0x50,0x11,0x8b,0xbf,0xab,0xc7,0x65,0xff,0xd7,0xb3,0x1a,0x01,0x67,0xc4,0xfd,0x8b,0x11,0x75,0x33,0x24,0x12,0xdf,0x19,0xd8,0xaa,0x1a,0x90,0x95,0x90,0x86,0x13,0x20,0x92,0x3d,0xbc,0xb2,0x04,},"\x09\x85\x4d\x13\x68\x49\x50\x41\x9e\x0b\xb1\x64\x64\xe0\x99\x88\x90\x5c\x02\x17\x18\x3a\xa1\xe4\x8a\xdb\x14\x7b\xfc\xc2\xeb\x57\xc2\x30\x0b\x0d\xfc\x39\xd4\x89\x66\x55\xa5\x7a\xe2\x04\x15\x40\x8b\xb5\xf2\xc2\x38\x01\x39\x55\xf0\xa4\xfc\x78\x2e\x0c\x99\x3f\xe4\x2c\xb0\x8c\xd8\xcf\x41\x5c\xcb\xd6\xcf\x1c\xee\x2e\x80\x97\xf0\x4e\x8f\x09\xae\x5d\xa5\xf4\x15\xb1\x6c\x2c\xb3\x0c\xb2\xab\x66\x52\xba\x50\xeb\xbc\xae\x4a\x59\xe3\x1f\xe1\x1e\x7e\xf3\x69\x9c\xa9\x0a\xaf\xa5\x86\xbb\x24\x2c\x89\xcd\x2e\x33\x2b\x2b\xfa\x2f\x81\x42\xac\xca\xf4\x36\xf8\x9b\x64\x53\xbb\x48\x05\xa1\xe7\xf3\xab\x62\x70\xf0\xda\xf8\x93\x89\xe7\x17\xd1\xb7\x01\x75\xec\x57\x07\xc8\xf5\x12\xc4\x0a\xb9\x24\xc4\x57\xe9\xf0\x91\x47\x91\x75\x0d\xc2\x92\xbb\x27\xd6\xf6\x3b\xa8\xcc\xf5\x4b\x90\xd3\xeb\xa7\xf1\x9e\xb3\x00\xd9\xeb\x8f\x3b\x72\x03\x2b\xa9\x30\x37\xf5\x52\xb4\x09\xb5\x80\xa5\xf6\x51\x16\xfa\xff\xe0\xfd\xfd\xc6\xdb\x38\x81\x38\x6c\x3c\xbc\x16\xb6\x7e\xb2\x57\x63\xd7\xae\x3a\xac\x0b\x85\xaa\x1e\x9a\xa2\x2e\x49\x59\x60\x9d\x43\x81\xe4\xb6\xd7\x15\x9f\xf3\xe3\xb2\xd3\x7b\x64\x0f\x88\xcf\xbe\x4f\x8a\x77\xf8\x01\x64\x57\x22\x8b\xa6\xd3\xaf\x5c\x4e\x33\x12\x5d\x48\xbc\xfc\xf3\x67\x8c\x16\x3b\x69\x8e\x52\xe8\x56\x17\xab\x1a\x75\xff\x20\xc6\x90\xab\x07\x15\x5e\xe7\x57\x59\x85\x78\x07\x2d\x4a\x09\xdf\xc6\xc6\xc0\x94\xec\x04\x85\x67\xd5\x13\xce\x2b\x18\x34\xe1\x63\xdf\x15\x45\x31\x9d\x80\x61\xe0\xe5\x7f\x58\xef\x04\x1b\x7b\xff\xc4\x96\x6a\xc1\x66\x03\x31\xb9\x7a\xbb\xc9\x7b\xe2\x1a\xe2\xbc\x58\xc6\xc3\x27\x4a\x8a\xda\xd5\xfd\x2c\x3b\xc1\x6b\x92\xe1\xf8\xde\x87\x7b\x6a\x26\xf0\xc6\xab\x71\x62\xe8\xaa\xb9\x3a\xf8\xd8\x59\x18\xc1\x3d\x3e\x23\x5a\x27\x37\x48\xc6\x2f\x0d\x22\xcb\x1c\x93\xe1\x34\xa4\x95\xb1\xb5\xef\x8f\x1a\x11\x34\x51\x2d\x53\xb7\xa2\x11\x26\x31\x77\xf7\xa6\x0b\xdf\x47\x46\x91\xf2\x24\xa3\xb5\xba\xc4\x00\x6d\xb3\x45\xca\x67\x25\xf5\xee\x70\x3e\xca\x0d\xea\x10\xd7\x12\x67\x6f\x63\xef\x3e\x53\x7e\x63\xab\xd2\x60\x8c\xb4\xfb\xe2\x00\xe1\x5f\x18\x20\x91\x53\x49\x60\x72\x90\x80\x44\xc9\x5a\x4e\x9c\x53\x56\xaa\xe8\xed\x5f\x09\x59\xea\xc0\x91\xe2\x27\xa0\xb8\x1f\x58\x03\x27\x6b\x3b\x3b\xf4\xb6\x86\x5a\x55\xfc\x67\x82\xf6\x2e\xa6\xd6\x39\x90\xf9\xbe\xfe\x01"}, {{0xe5,0x5b,0x34,0x3a,0x0f,0xa1,0xfb,0x74,0x71,0x89,0xcb,0x00,0xdb,0xc3,0xa6,0xaa,0x2d,0xcf,0x5b,0x86,0xe5,0x7d,0x76,0x93,0xf3,0x07,0x42,0x03,0x89,0x76,0x11,0x53,},{0x23,0xa1,0x44,0x60,0xea,0x98,0x3c,0xf9,0x97,0xc7,0x82,0xeb,0x45,0x82,0xab,0x3c,0x8a,0xa6,0xdd,0xe5,0x33,0x25,0xb9,0x77,0xb7,0x8e,0x33,0xd2,0xdc,0x5f,0x27,0xaa,},{0x07,0x26,0x6c,0x18,0x65,0x0e,0xcf,0x06,0x32,0xe2,0x25,0x62,0x4e,0xc4,0xc9,0x7f,0xc3,0x87,0xdc,0x37,0x46,0x87,0xa6,0x19,0x56,0xdc,0xcc,0xe7,0x28,0x94,0xee,0x13,0x8a,0xab,0xc8,0x0c,0xfc,0x90,0xc9,0xee,0xa6,0xdd,0x4c,0x59,0xaf,0x45,0x02,0xee,0x29,0x63,0x5a,0x92,0x88,0x07,0x86,0x67,0x8b,0x14,0xa3,0x93,0x1a,0x69,0xf9,0x07,},"\x36\x28\x9b\x5e\xaf\xf2\xa8\x5a\x7c\x6d\x57\x5b\xd1\x5e\xa5\x94\xb2\xfd\x85\x10\x87\x4a\x46\x9b\x52\x10\x91\x63\x69\x6d\x85\xb6\x8c\x5b\x21\x1d\x29\x64\xef\xdc\x66\xe6\x25\xab\xe8\xaa\xfe\x4c\xd9\x22\x0c\xdb\x34\x11\x07\xff\xa8\x27\x6e\xd4\xb3\x70\xfe\x37\x6c\x14\x82\x68\x71\x67\xdb\xc8\xf7\xb2\x05\xa3\xf3\x30\x1a\x16\x64\xd9\x07\x28\x77\xd9\xf9\x8b\x8f\x69\x83\x13\x01\xdf\x99\x94\x71\x7f\xc8\x89\x69\x24\x23\x91\xd9\xb0\x51\x7d\x6e\xfb\x27\x17\x01\xea\xb3\xf4\xa9\xb1\x20\x42\x13\xe8\xcd\x13\xf9\xd0\x99\x04\x8b\x82\x07\x56\x2f\x2e\x4e\xbc\x65\x3c\xc6\x5e\x9d\x55\x12\xd6\x5b\x41\x02\x2c\x79\xb4\xeb\x37\x29\x87\x69\xae\xaa\x6e\xfe\xd6\x9e\x9a\x8c\xb4\x45\xc7\x01\x22\x74\xde\x62\xf5\x09\xf4\xe4\x81\x4a\xdc\xbf\x44\x53\xb4\xfa\xb8\x5d\x7c\x8f\xd8\x45\xe0\x08\x30\xef\x5b\x7b\x1e\x63\xc6\x76\x13\x98\x4c\xae\xfe\x91\x5a\x54\x8e\x18\xe5\x05\x62\x2c\xb2\xb3\x92\x99\xf4\x27\xf4\xd8\x39\x83\xba\x2a\xa0\x0d\x53\xbe\xe1\xf5\x9a\xec\x83\x18\xc5\xea\x34\x5d\x29\x42\x52\x36\x97\x92\x76\x2a\xdd\x3e\x56\xfc\xfa\x6e\x77\x97\xf0\x28\xc7\x99\x47\x90\x45\xed\xb2\xe2\x05\xeb\x6d\xd6\xca\x04\xee\xe5\x6f\x94\x96\xd2\xbf\x26\x09\x93\x57\xc9\x73\x83\x5b\x99\x36\x02\x49\x11\xe4\x65\x5d\x3e\x22\xc8\x11\xc8\xd4\xdb\xd1\xb0\x4f\x78\x97\x3f\x07\x75\x23\xa3\x89\xb6\xf2\x8f\x6f\x54\x21\x61\x42\xcb\x93\xe3\x3d\x72\xb4\xa5\x05\x2d\x27\xe4\x91\x1e\x41\xe6\xce\xc7\xbe\xbe\x1b\x0a\x51\x13\xe6\xb7\x0b\x47\x9d\x2a\xbe\xed\xf6\x9b\x75\x64\xe5\xa5\x73\xb3\x52\xd1\x6c\xec\x89\x07\x01\xbb\x38\x3d\x3f\x66\x56\xed\xa0\x89\x2f\x8c\xcc\x70\x94\x0f\x62\xdb\xe5\x28\xa6\x5e\x31\xac\x53\x88\x26\xc1\x38\xac\x66\x52\x4e\x33\x16\x37\xba\x2d\x37\x73\x03\x58\xe6\xc7\x32\xcf\xf8\xfe\xe9\x40\xaf\xd2\x2c\x39\xae\x38\x1e\x5d\x88\x26\x73\x9b\x23\xfd\xc1\xb8\x0a\xea\x5a\x62\xa2\xcf\x0f\xf1\x52\x5e\x44\x6c\xf3\x10\x46\x19\x50\x51\xd5\x85\x03\xee\xd1\xbe\xfd\x79\x3e\xea\xe1\xd5\xd1\xb6\x2a\x5c\x98\x45\x15\x7a\x09\x5c\xdc\x08\xa1\xd7\x7b\xa4\x7e\x84\xa5\xa7\x39\x98\x0f\x0f\x5b\xe7\xaa\xec\x9a\x21\x5b\x20\x4b\x4b\xb7\xcb\x1b\x38\x6d\xed\x58\xd7\xaa\xf7\x28\x53\x41\x90\x7c\x63\x33\x6e\xe3\xe6\xef\x07\x7a\xd1\x11\xb9\x74\xe7\x50\x4b\xd9\x89\xf5\x66\xfd\xa1\xb1\xb5\x9a\xba\xa9\x1c\x78\xbb\x40"}, {{0x39,0x73,0x03,0x8f,0xa2,0xef,0x6a,0x27,0x8d,0x3c,0x1c,0xff,0x9a,0x22,0x56,0x69,0xe4,0x65,0xa6,0x9d,0x07,0x50,0x50,0x3d,0xe7,0x48,0xc0,0x02,0xdb,0xf9,0x27,0x8a,},{0xc7,0x5e,0x77,0xc7,0x81,0x49,0xd9,0xd2,0xdb,0xc2,0x63,0xdd,0xf8,0xac,0x4d,0x65,0x4d,0x1f,0xf4,0x55,0xcb,0x18,0x97,0xe1,0xc3,0xce,0x31,0xb9,0x4c,0xfe,0x32,0x10,},{0xfc,0x0c,0x54,0x53,0x83,0x9e,0xa9,0x92,0x96,0xff,0xfa,0x50,0x1d,0x58,0x36,0x66,0x28,0xdf,0x89,0xf6,0x16,0x76,0x69,0x42,0xd5,0x04,0x0a,0x05,0x60,0x56,0xda,0xb1,0x8b,0x44,0x05,0xc0,0x4a,0xbf,0x90,0x59,0xc3,0x08,0x68,0xd7,0x9c,0x93,0x6c,0xcc,0xc8,0x4c,0x4f,0xbd,0x6f,0xd3,0x0b,0x60,0xf8,0xbc,0xbd,0x7a,0x66,0x40,0x42,0x02,},"\x33\x92\xe0\x2f\x3c\x84\x66\x1e\xaf\x81\xa5\xff\x04\x35\x7f\x21\x2e\x92\x36\x1c\x5c\x22\x07\x39\xd9\x6b\x4d\x3d\x9c\x22\xd1\x8d\xf4\x8b\xe6\xb5\x51\x26\xf5\x81\x60\x1f\xfe\x0d\xa6\x3f\x38\xe1\x9c\xbb\x12\x72\x6c\xa0\xa6\xaa\x32\x55\x67\xa0\x03\xa7\x84\x9d\x06\x78\x39\x92\xeb\x9e\xb9\x28\x53\x29\x7d\x72\x28\xdb\xa9\x80\xb2\x50\xbb\x11\x0f\x63\xd0\xb8\x46\x70\xe5\xec\xb3\x19\xcb\xfd\x61\x27\x8f\x1f\x4c\xab\xf1\xfc\xb3\xf7\x01\xf1\x2f\x6e\xf8\xd3\xcc\x42\x82\xfc\xbe\x58\x9e\xb5\x65\x95\x03\xa2\xdd\xd8\xbb\xa3\x8e\x5e\xff\x09\x2d\xfa\xf5\x39\xfd\x80\x4f\x21\xf7\x3a\x90\xad\xf5\x69\xa0\x0b\xf9\xd2\x5a\x9a\xd3\xa6\x33\x09\xcc\x60\x93\x14\x24\x71\xa4\x78\xf0\xb8\x99\x22\x86\xde\x02\x3c\x68\xef\xd4\x99\x87\xec\x27\x0b\xd9\x46\xf6\xdb\x48\xf6\x84\xf1\xc2\xad\xee\xe2\x6d\x68\xdc\xe9\x5a\x55\xe4\xcb\x27\xbc\x60\x52\x30\x80\xdf\x6b\xa2\xb1\x99\x99\x6b\x1f\x1d\xa6\x92\x0d\x15\x59\xf7\x9b\xfd\xe9\xfa\x1a\x02\xde\xae\x14\x80\xc7\x6f\x94\x7f\x9d\x21\x3f\xc4\x3b\xb2\x88\x0a\x1b\x4d\x03\xbb\x14\xf5\xb0\x44\xa0\xfd\x83\xce\x04\x92\xf4\x9c\xa3\xaf\x25\x21\x1b\x86\xfa\xa5\x73\x5a\xd7\xfe\xaf\x31\xa1\xa7\x49\x1e\x70\x8b\x41\x82\x9d\x68\xe3\x24\x14\xf6\x83\x52\xb7\x1d\x1c\xd2\x3c\x8e\x12\xfb\x02\xda\x71\x14\x84\xf6\xef\x97\x52\x8a\x00\xd2\x4f\xcf\x91\xd4\xe0\x6e\x9b\xad\xae\x9a\x44\xdb\xdb\x3f\x77\x80\x41\x76\x8d\x86\x37\x04\xd7\x36\x81\x04\x00\xe7\xf2\x93\x1e\xfb\x85\xc8\x72\x4a\x59\x34\x26\xaa\x2a\xf1\xec\x5b\x66\x4f\x85\xc2\x25\x48\x96\xfd\xcf\x31\x6d\xb0\x92\x4e\x11\xaa\xe8\xd6\x83\xe9\xa0\x21\x92\x9d\x0a\x9d\x6f\xec\xb4\x59\x4b\x1b\x3f\xbc\x16\xb1\x76\xd2\x9d\x1e\xfb\x18\x19\xa4\xa4\x23\xfb\xe0\xca\x05\x59\xc5\x7e\x9e\x54\x49\xf1\x4b\xce\x91\x36\x0d\xaf\xda\x6a\x42\x7c\xe4\xa0\x99\x3d\xd0\x30\x82\xdd\xee\x06\x65\x33\xf6\xd3\xbd\xa5\x66\x0f\x42\xfd\x77\x57\x69\x0d\x67\x05\x98\xec\x70\x96\xf4\x75\xa0\x1a\x51\x99\x50\x34\x1a\x83\x1f\xc9\xa2\x81\xc0\x94\x7a\x86\x3f\x1f\x6e\x03\xbb\xa7\x74\xde\x77\xad\xc2\x3f\xbe\x52\x5c\xae\x6c\xcc\xe4\x7a\x0e\xc4\x97\x9e\x8b\xec\x86\xf3\x32\xfc\x6a\x57\x36\xe3\xb9\x8f\xb3\x32\xe9\xe8\x24\x4e\x68\xa1\x00\x45\x5e\x64\x99\xba\x8d\xba\xe9\x8b\x92\xba\x3d\x9c\x6b\x4f\xf9\x80\x34\x3e\x4c\x8e\xf4\xd5\xa4\xaa\xcf\x8b\x1a"}, {{0xc7,0x1c,0xc1,0x0a,0xd2,0xd4,0x43,0xe0,0x25,0xad,0x06,0x25,0x68,0x6b,0x12,0x35,0x03,0xe5,0x90,0x19,0x3a,0x2b,0xc8,0xcc,0x57,0xa7,0xb9,0xb4,0x15,0x8d,0xe6,0xcb,},{0xfc,0x06,0xac,0xaa,0xb5,0x3a,0xd0,0x8e,0x97,0x62,0xdd,0x11,0xcd,0x21,0x22,0xb3,0x15,0x99,0xbd,0x25,0x98,0xce,0x6f,0x24,0x87,0x95,0xe7,0x32,0x21,0x9c,0x2f,0xc7,},{0x2e,0xb3,0x3b,0xc2,0xd5,0xde,0xb7,0xf3,0xa2,0xdc,0xc3,0x77,0xb0,0xc6,0xa8,0x62,0x13,0x4b,0xf3,0x19,0x1e,0xc4,0x0f,0xc1,0x28,0xac,0x28,0xab,0xf2,0x31,0x6e,0xf1,0x40,0x16,0x49,0xb8,0xf4,0xcf,0xa1,0xa9,0x36,0xde,0x79,0xb5,0x32,0xdc,0x04,0x3b,0x6d,0x36,0x02,0x4b,0x4c,0x37,0xbb,0xa2,0x92,0x90,0xac,0x9f,0x44,0x9b,0xa6,0x0d,},"\x2e\x08\x46\x53\x6d\xc6\xcc\xe1\x9c\xcf\x82\xdc\x2d\x0c\xd2\x1b\xd4\xe1\xca\x7b\xc3\x17\x06\x7a\xf8\xd9\x0e\xe4\x81\x8c\x85\x18\xbc\x3e\xf9\x60\xce\x11\x2a\x41\xd2\xb9\x97\x9a\x28\x2a\xe1\x3d\x70\x6a\x00\x5e\x00\x34\xf0\x6b\x39\xff\x4b\x0a\x5a\xfa\xed\x70\xb5\x61\xbc\xce\xb1\xbb\xd2\xec\x19\xf9\x74\x48\xea\xed\x4b\xe6\x20\xe3\x6a\x96\x2d\x87\x8c\x6f\x80\x17\x2b\x9f\xad\x43\xee\xd0\x7f\xf9\x3d\xb9\xb9\xca\x22\x62\xd5\xa3\xc2\x29\xc5\x4e\x30\xa4\x5e\x73\x66\x08\x92\xf0\x48\xe3\x63\xf3\x71\x44\xed\x19\x21\xf7\x29\x92\xb4\xd0\x15\x29\x87\x0c\xfe\x37\x3b\x7e\x7c\xbe\xda\xf9\x69\x26\x9f\xb7\x0a\xa7\x83\xd1\xe7\x44\x17\xc7\xba\xe0\xfe\x03\xd9\x51\xfd\xb8\xc7\x1c\x62\xe9\xbe\x7f\xdd\x5d\x23\x3e\x39\xf4\x6f\xed\x05\x7e\x49\xb6\xf3\x40\x68\x45\x91\x48\xda\x3d\x42\x41\x61\xad\x2c\x86\x95\x08\x60\x2e\x9c\x0b\xb3\x0b\xfb\x88\xac\xd5\xf4\xdf\xdf\xfd\x47\x35\x03\xcd\xfe\xda\xbc\x44\x42\xb7\x43\xbe\x07\x5e\x7c\x6f\x61\x0e\x64\xff\xc2\xe5\x31\x87\x74\x5c\xd7\x19\x65\x8f\xc6\xe6\x2a\x5b\xe5\x18\x43\x7c\x5b\xd6\xa4\xfe\xba\x94\xae\x3f\x44\xf2\xf2\x93\x08\xe8\x31\xfe\xef\xed\x67\x69\x09\xce\x5e\x80\xc8\x4c\xbd\xca\xc4\x7e\x47\xd2\x7c\x97\x12\xa0\x1f\x6b\xc5\xda\xed\xc0\x2e\x64\x14\x40\x7e\x91\x1c\x0a\x5a\x53\xe5\x32\x8a\x5a\x5f\xd9\xf0\x40\xaa\x7f\xb7\x0b\x79\xb3\x1c\xd1\xb6\xfd\x9b\xd5\x02\x90\x40\xbd\x22\xae\x22\x2f\xd2\xf6\x87\x0d\x07\xf4\x35\x32\x26\x39\xcf\x31\x93\xca\x57\x09\xb8\x82\xb0\x7a\x58\xf9\x52\xa9\x96\x3e\x56\x8f\x8c\x5a\x58\x4a\x6b\x9e\x27\x5c\x5c\x07\x95\x7a\x4d\x2c\xda\xa9\xf1\xeb\x44\x4e\xd1\x22\x4b\xac\x65\x63\xb2\xf9\x27\x3e\x80\x30\x1d\x44\xd5\x0a\xe3\x83\xb5\x97\x21\x3b\x00\xda\x5b\xf2\x7e\x5d\x1f\xe2\x40\xcc\x3b\xb6\x5a\xa5\x03\x0d\x65\x1b\x6b\x5b\x31\x76\x1d\x53\xce\x0c\x6d\x74\xa1\x5d\xad\x54\x79\xf3\x1c\x91\x5c\xcf\x44\x66\x59\x85\x3b\x89\xa5\x1a\x28\xee\x89\x76\x85\x35\x53\xfd\x2e\x02\xfe\x72\x43\x53\x8d\x00\xb4\xed\x07\xd8\xb8\xa8\x0b\x5c\x16\x5c\xd4\x63\x41\xff\xd8\x16\x3c\x55\x57\x02\x66\x3a\x4e\x6a\xb2\x95\x2b\x7e\x74\x43\xd0\xf6\xb1\x23\xb6\x94\x67\x21\xaa\x63\xe8\x7b\x11\x55\xec\xa8\xa6\xa1\xbc\x9f\xd2\x5c\x67\x62\xe5\x27\x42\xc8\x6b\xca\x1b\xa9\xd8\x37\x04\x15\x24\x4f\x0e\xdf\xdb\xe0\x93\x2b\x5c\xa0\x61\x15\x09\xc9"}, {{0x0a,0x4f,0x5e,0x16,0x70,0xf1,0xe2,0x4b,0xfa,0x37,0xb7,0x3c,0x99,0x43,0x30,0xb3,0x6e,0x7d,0xaa,0xf9,0x30,0x16,0x1b,0x78,0xa4,0xa8,0x48,0x66,0xff,0x25,0xe3,0xd5,},{0x9d,0xcb,0xba,0x90,0x39,0x81,0x59,0x4c,0x7b,0x67,0x7e,0xa8,0x00,0x20,0x01,0xd6,0x64,0xcf,0xf7,0xce,0x8e,0x5c,0xfa,0xe5,0x88,0x40,0xcf,0x74,0xaf,0xf0,0xd3,0xa9,},{0xdc,0xf3,0x53,0xb2,0xb9,0x9a,0x4e,0xf4,0x5f,0x3f,0xdf,0x65,0x28,0x63,0x2e,0x8a,0xbd,0xc4,0x33,0x34,0x24,0x76,0xa8,0xc2,0xb3,0x79,0x00,0x40,0x4a,0x4e,0x33,0x3d,0x38,0x78,0x14,0x23,0x57,0x57,0xef,0x7a,0xd0,0x38,0x58,0xa0,0xf3,0x5d,0x46,0x15,0xe8,0xab,0xa4,0x84,0xfd,0x64,0xf1,0x11,0x2e,0xc1,0xb1,0xae,0xd2,0xcb,0x64,0x0e,},"\xf4\xb0\x5b\x3e\xfd\xcb\x1d\x5c\x07\xda\x95\x0c\x46\x56\x55\x28\x44\x0b\xb4\x88\x35\xee\x4c\x13\xf4\x3d\x7a\x16\x18\xde\x11\x9e\xbb\xb2\x59\xea\x74\x80\xa5\x04\x81\x74\xfa\xec\xc1\x05\x5b\x32\xdc\x01\xac\x71\x56\x34\x43\x21\xe8\xeb\xa6\x98\xf3\x02\xee\x16\x43\xb5\xf0\x4b\x8e\x7e\xcc\xa6\x3b\x91\x56\x1c\xe3\x51\x4a\xbe\x78\x51\xb6\xfb\x17\xfc\x94\x3b\xdc\x94\xda\x30\x8c\x8e\x47\x69\xfe\xc2\x0f\xad\xf4\xfa\x8e\x7f\x62\xb6\xff\xb5\xf1\x70\xd6\x44\xed\x29\x35\x5e\xbd\x22\xcb\x3a\xa1\x48\x6b\x1e\x36\x7c\x72\x9d\xd3\xf7\x9b\xcd\x40\xff\xd0\x8a\xf2\x8c\xeb\xc8\xd7\x76\xe1\xa4\x83\xe9\x11\xd7\x9b\xc6\x13\xe0\x9c\xc6\x21\xca\xde\xb0\x34\xdd\x6f\x72\x37\x47\x71\x98\x51\x27\xf7\xa3\xa1\xaa\x78\x6a\x52\x3a\xe6\xe3\x4e\xe4\x33\xdc\x30\xc3\x75\x98\x7c\xff\x50\xbd\xcb\xc9\x97\xfc\xd5\x1c\x94\x56\x7a\x67\xae\xfb\x6e\xf5\xed\xf9\xbd\xd6\x59\x64\xd4\x64\xbe\x9e\xbd\xfb\x88\xc0\xe2\x31\xb0\x7f\xf6\x40\x5c\x00\xf8\x25\x31\xe9\x61\xbf\xc5\xea\xd2\x66\xbc\xc0\x87\x18\x87\x8c\xaf\xb1\xd3\x75\x36\xf1\x83\xe4\x8b\xf3\x8d\x3f\x6b\xe9\x00\x25\x2d\x1f\xb4\x19\xe6\xa2\xac\x58\x96\x03\x9f\x63\xc3\x14\x01\xff\xf9\x32\xce\x98\x14\xb0\x85\xab\x20\x41\x69\x72\xa2\xb3\x51\xc8\x15\xa6\x2d\xe5\x09\x67\x46\x28\xb0\xd3\x56\x6f\xc9\xc2\xe0\xa9\x23\x7b\x93\xf9\xbb\xb2\xde\xed\xf0\x2b\xff\x83\xbf\x6d\x86\x8b\x63\x99\x32\x6d\x48\x09\xd0\x41\x9f\x31\xb2\xf3\xa4\x81\x28\x5b\x94\x07\x8b\x47\x06\x1c\xe9\x1d\xad\x58\x3d\xd5\xb1\x3b\xd0\x10\xfb\x30\xf2\x49\x5b\xb7\x04\x20\x18\x3a\x93\x01\x59\xe4\xdb\x19\x3d\xf6\xac\xd1\x24\x42\x3e\x03\x9a\x67\xf1\x56\x88\xae\xc5\x0c\x59\x27\xfb\x27\x18\x22\xaa\xa6\x6f\x29\x4b\xc8\x05\xd3\xbc\x7c\x83\x41\x87\x8a\x54\x10\x09\xf3\x0d\xa9\x9f\xcc\x00\x85\x07\x9c\xe7\xfc\x55\xe0\x01\x16\x85\x56\x2a\xbd\xb3\xa9\x47\x1f\xfd\xe6\x17\x63\x00\xef\x5b\x31\xe0\xdf\x60\x9a\x54\xa1\xee\x66\x24\x07\x0d\xa9\x9c\x87\x76\x89\x1f\xdf\x6a\xa7\x8b\x4d\x55\xb1\xf5\xda\xdf\xc0\x61\xad\xd5\xaf\x00\xfd\x3a\xde\xdb\x44\x8c\x55\x9b\xff\xf2\x04\x06\x80\x43\xa5\xd1\xd6\x21\x47\x48\x62\x8c\x3e\xbc\x5f\x02\x24\x32\x6c\xa1\x8e\xf0\x48\x42\x5d\xa9\x30\x01\x33\xfb\x69\x5d\x4f\x26\x31\x65\xac\x22\xf3\x61\x9d\x40\x5a\xf2\x71\xa7\x1a\x9a\xfb\x19\x8b\xf6\x31\x24\x1d\x34\x59\xb9\x53\x98"}, {{0xb8,0x55,0xc8,0x18,0x05,0xc7,0x08,0x74,0x10,0xe6,0x9f,0x96,0xb0,0x24,0x02,0x71,0xdc,0x76,0xc1,0xe4,0xad,0xe3,0x8c,0x6a,0x92,0x78,0xe3,0xc9,0x4f,0xbe,0xa2,0x56,},{0x6a,0xdb,0x02,0x5a,0x40,0x26,0x0f,0x56,0x98,0x84,0xb8,0xca,0xb3,0x75,0x2b,0x4f,0x25,0x5c,0x37,0x3e,0x2b,0x42,0x4b,0x62,0x87,0xeb,0xb5,0x10,0xfa,0x06,0xff,0xf0,},{0x3c,0xaa,0x81,0x32,0x73,0xe7,0x53,0x54,0x2f,0xfb,0xfe,0xb2,0x1b,0xc3,0xe2,0xcf,0x8c,0xa7,0xd9,0x20,0xfa,0xac,0x7c,0x49,0xdc,0x2a,0xa9,0x91,0x17,0x68,0xc7,0xad,0x43,0xb3,0x8b,0x02,0x36,0xdb,0x27,0xf3,0xee,0xae,0x0b,0x12,0x06,0x00,0x1e,0x66,0x5a,0x60,0x70,0x78,0xc5,0x22,0xed,0x7a,0x9d,0xc4,0x68,0x85,0x34,0x63,0x59,0x00,},"\x85\xa9\xbd\xb7\x0a\x6c\x75\x28\x97\xe4\x3a\x91\x10\x6e\xe9\xa9\x9c\x2c\xa9\x4f\xf7\xb4\x46\x1a\x44\xa3\x91\x74\xc1\x7e\xcd\x99\xdf\x46\xee\xcd\x81\xc3\xf5\x25\x13\xdc\x9d\x54\x7d\xad\x37\x21\xc6\xd5\xee\x1f\x8f\xac\x0b\xa5\xaf\xb3\x68\x70\x44\x73\x9e\xd5\x35\xb8\x44\x00\x87\x04\xc0\x9f\xe1\xe5\xd7\x85\xd4\xc9\xc3\xd0\xb0\x58\x89\xb9\xc2\x0f\xc3\xfd\x68\xdf\x12\xdb\xeb\x2c\x34\xf6\xf7\xec\x1c\x6f\xb7\xfa\x81\x1f\xf8\x46\xb5\xa6\x1f\xa5\xfe\x55\x37\x9e\xe6\x3a\xbc\xd3\x73\xfe\xd0\x02\x54\xeb\xd0\x6b\xc8\xb2\x2f\x7f\xbf\x2f\x72\x7a\x5f\xad\x88\x51\x41\x59\xe2\x6d\x78\xdf\xdb\x09\x57\xf6\xef\xaf\x51\xa8\xe8\x0b\x58\x5e\x83\x8b\x96\x21\xd0\x51\x07\x4a\x4f\x58\x67\xb4\xae\x2f\x2f\xf6\xd6\x2b\x85\xbc\xce\xc0\xb4\xaa\xa4\x79\x16\x37\x38\x8c\x09\x01\xfd\x49\xdc\xcc\xce\x72\x04\x85\x9f\x81\xee\xfc\x63\x9f\xed\x92\x28\x04\x56\xe6\x9a\x15\x09\xb4\xb1\xbd\x76\x24\x44\x7d\x86\x2c\x45\xa0\xc8\xb0\xc5\xbb\x2c\x4c\xa5\x12\xcb\xc0\x37\xf5\x1b\x78\x09\x82\xb1\x83\xa5\xca\xfa\x15\x29\x75\x85\xc9\x47\xa2\x5b\xe8\xc2\x24\x0e\xbf\xb6\x86\x8e\xce\x5e\xa2\xaa\xb2\xc2\x39\xc8\x37\x54\xc7\xd5\x94\xb3\x72\x5a\xce\xef\x34\x4b\xa7\xe6\xae\xf4\x9f\x7f\x31\x3b\x0a\xe8\x2c\xca\xca\xd3\x87\xa6\xe9\x33\x7f\x05\xf8\xc7\x99\xef\xe7\x82\x9b\x27\xb4\xd5\xb2\x01\xfd\x5a\xe5\x83\x43\x51\x69\x07\x59\xf3\xea\x17\x5f\xd4\x74\x1b\xe2\x28\xd8\x07\xfb\x54\xdf\x4a\x74\x10\x38\xfa\xee\x47\xed\xf1\xf5\x61\x65\x25\x98\x60\x1f\x27\x15\x5f\xc5\x0d\x9d\x50\x11\x43\x37\x11\xc1\x06\xd4\xb6\x07\x85\xa5\xcc\x93\xb3\xfd\xd1\xda\xd7\x0c\x0c\x8e\xaa\x33\xf1\x51\x2e\x35\xa5\x41\x74\x5e\x37\x6c\x15\x16\x7f\xa8\xf6\xb3\xb2\xc4\xc3\xa3\x66\xfc\x41\x49\x7d\x29\x73\x57\x81\x6a\xe7\x95\xa8\x04\xc9\x80\xe7\xcb\xfb\x0c\x74\xd8\x83\x5d\x92\x9a\xe3\xbb\x52\xba\xb1\x29\x64\x56\x6d\x74\x6b\xd2\xc1\xd1\x32\xb6\x23\x3f\xa3\x4f\x75\xe2\x68\xed\xee\x77\x5e\xb3\xce\x13\x2e\x6b\xeb\x2e\x8d\x71\xf0\xc8\x76\x29\x91\xcd\xe4\xe2\x6f\x71\x43\x9d\xfa\x83\x97\x8f\x99\x56\x03\x86\x1b\xc0\xb1\xd9\x06\x0b\xbc\xca\xcc\xf8\x6f\x87\x45\xad\x96\x99\x4d\x5d\x00\x7d\x52\xe8\x3a\xa5\xe6\x94\x12\x96\x4b\xdb\xfb\xe4\x78\x0a\xaa\x8d\xe4\x1b\xe1\x29\x8a\xbb\xe9\x89\x4c\x0d\x57\xe9\x7f\xca\xcc\x2f\x9b\xbd\x63\x15\xd3\xfc\xd0\xea\xf8\x2a"}, {{0x95,0xb9,0xc8,0xa6,0xef,0x80,0xeb,0xd5,0xcb,0xd4,0x7a,0x04,0xca,0x54,0x38,0x73,0x73,0xdf,0x4d,0x67,0xa2,0xb4,0x75,0x59,0x77,0x65,0xac,0x89,0xfc,0xf9,0x3e,0x93,},{0xf2,0xc9,0x47,0xb1,0x8a,0xdc,0x3e,0xa6,0xa2,0x3f,0x7a,0xbc,0xa3,0x64,0xb9,0x85,0x3a,0xe8,0x5a,0x2b,0x0c,0x8c,0x26,0xf0,0xd3,0x17,0x3c,0x27,0x32,0xc3,0xc7,0xff,},{0x2c,0x8b,0xf5,0x43,0xe2,0xa3,0xe0,0x04,0x15,0xee,0x4f,0x10,0x7b,0x2f,0x5a,0x66,0x87,0x17,0x6f,0x5d,0x52,0x11,0x17,0x75,0x9c,0xeb,0x56,0x17,0x51,0xbc,0xc7,0x7d,0x9b,0x08,0xa6,0xa6,0x31,0xf6,0x44,0x7c,0xd9,0x01,0xde,0x96,0x69,0x9a,0xeb,0xb1,0x68,0xbf,0x97,0x50,0x0d,0xc5,0x4a,0x05,0x43,0xef,0x14,0xe4,0xb5,0xa0,0x81,0x06,},"\x78\x55\xbc\x39\x26\x30\xcc\xf5\x31\xd3\x06\x16\x06\xdd\xfc\x81\xa0\xfd\x92\x94\xc5\x47\x91\xb5\xf9\x55\x9b\x68\x27\x25\x4a\xa1\xf2\x5c\x54\x0b\x7d\x7d\xf3\xec\x9c\xdf\x14\x25\x66\x29\xdb\xcf\x9b\x72\x5f\xeb\x34\x12\xeb\xf3\x5f\x0e\xf9\x37\x9e\x41\x31\xcc\x77\xe0\xf0\xfb\x6f\x74\x59\xa7\x38\x36\x1a\x99\xae\x4c\xcb\x2b\x60\xa9\x9f\xe9\x2b\xd6\xc3\xa5\x3d\x6f\x45\x4e\xe9\x00\x5b\xce\xc5\xae\xdc\xfa\x82\x34\x73\x92\xef\xcf\x11\x75\xe5\x78\x39\x6a\x8d\x80\x0d\xab\xa0\xf4\xc2\xcf\x4d\x49\x13\xb0\x52\x86\x20\xe3\xba\xa0\xf6\xd8\x6e\x06\x28\xe4\x7c\x0c\xa2\x6d\xf3\xb0\xc7\x88\xc4\xe1\x65\x57\xf7\xfc\x28\xdf\x82\x0c\x12\xfb\xb6\xff\xbf\xec\xb9\x82\x9d\xdb\x65\xef\x8d\x63\xe9\x0d\x68\xfc\x71\x94\xb5\xb8\x85\x91\x3f\x08\xed\xee\x84\x56\x76\x47\xff\xa3\xf0\xd0\xd3\x25\xd0\x82\x60\x0c\xe7\x1a\x23\x45\xc7\x7d\x65\xbd\x96\x25\x20\x03\xe5\xc1\x25\xa7\x18\xa0\x73\x70\xc3\x1b\x57\x08\x07\x5c\xf1\x83\x7c\x69\x25\x63\x5c\xc6\x8d\xd1\xb7\x51\xe4\x0a\xb6\x08\xb0\xd9\xd8\x85\x2c\x18\xd3\x06\x92\x19\xef\x80\x7b\x76\xd2\x88\xf9\x2c\x29\xa9\x3e\x3d\x75\xb5\xb2\xe5\x36\x81\x67\x1d\x3a\xe0\x14\x5a\xc0\x3c\xca\xd3\x16\x2e\x44\x70\x3b\x04\x01\xd3\xeb\x16\x7c\xd8\xdd\xc1\xe1\xa5\xa3\x26\xb7\x28\xb1\xe0\xc0\x0a\x94\xd8\x6d\xe6\x13\x52\xa6\x61\xe4\x08\x97\x17\x5d\x28\xd3\x41\xe4\xd1\xd9\x96\x2e\x35\xf4\xde\x18\xa5\x40\x17\x61\x1a\xd0\x53\x59\xce\x08\xb9\x7b\xfe\xdb\xfb\xe3\x99\x2e\xd5\x8e\xd4\x0f\x51\x7a\xab\x01\xc0\xfe\xfe\x8b\x63\x64\x3d\xa1\xa4\x54\x15\x27\x30\xbf\x99\xaf\x87\x40\xad\xf9\x8a\x77\xb8\xd7\x3a\xdb\x08\xe6\x09\xe0\x0c\xe9\xb1\xcc\xdf\xef\x3e\x9a\x9b\x05\xaa\x56\xe0\xbc\x79\xb6\xbb\xba\x80\xdd\x8e\x46\x1a\xf7\xcb\x20\x28\x92\xd8\x9b\x2d\x05\xa4\x45\x8a\xb3\xfa\x54\xb4\x74\xb8\xf8\xf5\x81\x79\x5d\x6c\x27\x39\xe5\x9d\x0f\xe0\x62\x40\x0b\xae\x2d\x2d\x53\x4b\x34\x0b\xb8\xe2\x61\x57\x77\xa9\xa5\x61\x5b\xb2\xcf\x43\x7b\xa5\x25\xe0\x0e\x70\x38\xf2\x2a\x57\x88\x2a\xc5\x20\xb3\x33\xe7\x5c\x3c\x92\xa8\xb9\xf0\xe3\x7f\x67\x1c\x94\xb1\x5d\xd8\x18\x2a\x08\xd7\xc1\x43\xe9\x4e\x92\x62\xb3\xcc\x55\x44\xc2\x94\xf5\xf3\x35\xc2\xb2\x8a\xc1\x19\xfe\xa0\x0f\x96\x34\xdb\x06\x39\x93\x98\x8b\x5f\x15\x05\x79\xc7\xcc\x25\xb6\xa1\xfb\x0d\xde\x94\x80\x4f\xa6\xef\x66\xff\x79\xfb\x91\x07"}, {{0xb7,0x86,0xcc,0xfb,0x58,0x6d,0x43,0xb8,0xc4,0x6b,0xb9,0x7b,0x96,0xc9,0x18,0x73,0x1b,0xc2,0xcc,0x11,0x92,0x77,0xf1,0x23,0x67,0x1e,0x30,0x14,0x81,0x58,0xd2,0xed,},{0x90,0xc7,0x00,0x46,0x00,0xf3,0xdc,0xe4,0x09,0xfd,0xea,0xdc,0x8e,0xd0,0x18,0xf9,0xea,0x26,0x3f,0x75,0x16,0x0a,0x74,0xab,0x54,0xf4,0xc2,0x39,0x9a,0x90,0xca,0x78,},{0x52,0xba,0x96,0x58,0xa1,0xa0,0xb3,0xe9,0x8e,0xd5,0x20,0x9e,0x39,0x3e,0x42,0x00,0x66,0xa3,0x7d,0x37,0x14,0xda,0xa7,0x3d,0x5c,0x67,0x1d,0x33,0x07,0x5a,0x5f,0x57,0x27,0xfe,0x4e,0x08,0x1e,0xe0,0xfa,0x3c,0x21,0x33,0xdc,0x95,0x3a,0x2d,0xa6,0x20,0x29,0x13,0x71,0xf0,0x0c,0xcb,0x57,0xd8,0x79,0x2e,0xb5,0x96,0xa2,0xff,0x81,0x01,},"\xba\xbf\x48\xbd\x55\xea\x91\xbd\x0c\x93\xb9\x70\x24\x1b\x52\x9d\x9d\xb4\x3d\x49\x27\xfe\xa5\xf1\xa1\xf7\x08\x2d\xd6\xcb\x50\xa5\x2b\x09\x4b\x31\x29\xfc\xd9\x03\xa4\x4f\xec\x8b\xfd\xb5\xc8\x6c\x00\x2a\x2a\x45\x28\x87\xca\x25\xa6\x0e\xce\xb5\xe1\xf9\xf5\xc9\x3d\xc5\x94\x23\xc7\xaf\xe7\x47\xc6\xbf\x40\x7c\xac\xad\xec\xcf\x5d\x78\x79\x70\xcb\x06\x17\xbb\x3c\xfe\x7f\xd1\x75\x63\xd3\xa0\xdc\x91\x63\x1f\x71\xb8\x4b\xe2\x4a\xe8\x00\x11\x37\x50\xf0\x31\xd0\x1f\xd0\x53\x64\xb4\xf2\x7f\x86\xf8\xdc\x3a\xd7\x40\x7e\x1a\xe9\xe7\x68\x15\x4e\x3d\xde\x58\xe8\x67\x12\x9e\x24\x74\x54\x7b\x40\x82\x17\x96\x48\x44\x85\x8d\x05\x6b\x31\xc3\x74\x99\x1b\x7f\x16\x1f\x52\xf0\x88\xb8\x06\xe0\xf3\x13\xd6\x8a\x15\xc5\x40\x1e\xd5\x5b\x2b\x77\xde\xea\x58\x6c\xb0\x54\xdc\xd7\x1a\xf2\xab\x6a\xb1\x1e\x84\xb3\x0c\x53\x93\x45\xde\x3e\xb4\x3f\xb7\xb3\xa3\xb4\x89\x87\xc3\xbf\xa7\x06\x55\xd5\x99\xf2\xe3\x1d\x12\xad\x23\xcc\x96\xe8\x6d\x38\x0b\xfd\xa8\x12\xfe\xff\x3d\xd3\x02\x42\x92\x91\x69\x07\x02\x28\x91\xe1\x19\xbf\xc3\xed\x9c\x25\x54\x6c\xd1\x9f\xc9\x92\xd8\xa6\x1e\x60\x59\xca\x3c\xe7\x80\x2a\xf1\x11\x87\x56\x62\x0b\x87\xa7\x24\x2b\xd8\x38\x97\xc9\x4d\xd5\xa3\x6e\xd4\x0f\xc0\xf3\x4c\x2c\x93\x11\x0b\x37\xd1\x7d\xd9\x6a\x22\x06\x25\x90\xbc\xdb\x54\x67\x42\xef\x72\x18\xad\xcc\xc5\xad\x28\xf4\xfc\xe6\xec\xf7\x05\x83\x5f\x41\x13\xd8\x2e\xa5\x33\x90\x3a\xec\x8c\x38\x20\xfe\x4b\x47\x15\xf3\x7e\x20\xce\xbc\x1e\x71\x51\x9a\xa0\xb2\x40\xb4\x84\x0a\xa4\xfd\xcf\xb5\x24\x67\xfe\xdd\x8f\x4d\x1f\x9b\xc3\x3e\xe1\x14\xf3\xef\x85\xf5\xfd\xb0\x9c\xa8\x84\xaf\x38\x8a\xd3\xad\xf8\x4c\x79\x3f\x38\x6e\xfe\x6f\xf8\xa4\x6e\xd8\x1e\x5d\x45\xa3\x7c\x25\xcd\x80\xf2\xd7\x36\x3f\x43\xae\x45\xe3\x77\x2c\x0d\xf8\x9f\x11\x44\x79\x39\x80\x6c\x09\x6e\xf9\x33\xa1\x39\x44\xf0\x89\x0d\x88\x7c\x2e\x5b\xbb\x6b\x12\xea\x95\x0b\x09\xb8\xfe\x42\x52\x89\x37\x73\x52\xf3\x5f\x84\xcc\x4d\xcd\x4d\x7a\x44\x94\x89\xfa\x92\x51\xc0\x31\x13\x48\x92\x25\x80\x9c\xdf\x3c\xb6\x34\x75\xf1\x0d\x34\x17\x09\x37\x1c\x6f\xd4\xbb\x7a\x94\x94\x83\xd1\xbc\x2b\x31\xdd\xf4\xd9\x63\xa0\x7d\xe7\xea\x5c\x3f\xee\x9a\x0e\x33\xf0\x76\x9f\x2f\xaa\x40\x61\x2a\x54\x69\x74\xbd\xe0\xb7\x33\x91\x79\xe4\x12\x4a\x44\x7b\xd4\x28\x79\xcc\xda\x5c\x8a\xd1\x81\x9c\x53"}, {{0xdd,0x1a,0x97,0x74,0xf7,0x58,0x4d,0x85,0x89,0xb1,0x9f,0x92,0xab,0x69,0x39,0xac,0x48,0x56,0x02,0xfe,0x16,0x44,0xce,0xe2,0xf6,0xf3,0xcd,0x60,0xfb,0xd5,0x84,0x00,},{0x4b,0xea,0x7d,0x0b,0x0f,0x4b,0xd5,0x90,0xf9,0xe3,0x57,0x9f,0x0c,0x5f,0xa4,0xce,0xf4,0xd6,0x0a,0x49,0xd2,0xc4,0x37,0xa0,0xaa,0xea,0xd9,0xd4,0x3a,0x73,0xd4,0xa3,},{0x19,0x59,0xbd,0xe0,0xa6,0x97,0xa6,0x39,0x93,0xec,0x47,0xd1,0x58,0x22,0x37,0x39,0xfe,0x65,0x87,0x1f,0xa0,0x58,0x70,0xd7,0xde,0x0d,0x38,0x08,0x65,0x91,0x20,0x2a,0x51,0xb1,0x74,0xd1,0xc6,0x18,0x28,0x08,0xc6,0xce,0x62,0x63,0x1d,0x81,0xdb,0xa3,0x4e,0xbe,0xd4,0xaf,0x2f,0x29,0xb0,0x6c,0x00,0xa5,0x7a,0x3c,0xb6,0x66,0x36,0x06,},"\xe5\xdc\x3e\xd2\x6c\x1f\x69\x3c\xf8\x52\x46\x5a\x05\xe3\x04\x8b\x50\x5d\xb5\x11\x6d\x9e\x31\x59\x22\x05\xa9\xc3\xd4\x72\x0b\xc1\x0b\x6c\x20\x63\x9a\x0e\xe2\xf0\xe1\x47\x22\x5b\x5b\x19\xea\x51\x1c\xfb\xa0\xc2\x1a\xac\x10\x71\x5a\x2f\x23\x2f\x10\xc2\xc8\xaa\xd4\x11\x12\xb6\xb0\x12\xe7\x5a\x41\x55\xf8\xc6\x92\x62\x53\xca\x2b\x4d\xdb\x7b\xfe\x7f\x86\xe9\x0a\x53\xdb\xc0\xcb\xa8\x9e\x48\x5c\xec\xa8\xfd\x26\xe5\x0c\x7f\x28\x2a\x25\x35\x73\xcb\x0a\x8f\xa8\x8c\xc4\x46\x23\xe8\x2e\x8f\xa2\xed\xb6\xcb\xc7\x53\x8a\xc9\x2c\x11\xe4\xc5\xb1\xea\x5f\x68\x96\x6d\x15\xd9\x3c\x34\xf3\x96\xd2\x75\x72\xf8\x64\x38\x2a\xb7\x6a\x7b\xe6\x5a\x55\x7b\x13\x97\x66\x36\x8a\x20\x7d\x98\xbc\x0c\x20\x92\x63\x70\xde\xa2\x70\x48\x16\x03\x63\xed\x85\xf4\x09\x9e\x7c\xd6\x6d\x12\xd0\x98\x8c\xfc\x9e\x2f\x16\xaa\x56\x5f\x8f\x33\xb3\x9e\x97\x8c\x05\x87\x37\x1f\x92\xdb\x50\x56\x31\x75\x64\x41\x1b\xd8\xa3\xb6\xfe\xa0\x9d\x34\x87\xaa\xf7\x34\x03\x49\x18\xff\xed\x1c\x9f\xba\x7b\xde\xc6\xfe\x68\x87\x6f\xc7\x36\x0c\xc5\x62\x9b\x92\x10\x40\x27\xfe\x57\x59\xc5\xab\x36\x53\x54\x75\x1e\x79\x69\x11\x6c\x3b\x9a\x21\xb1\x52\x33\x0a\x96\xa9\x38\x1a\xf7\x30\xd1\x78\x22\xd7\x8a\xd6\xea\x86\x00\x06\x91\x5b\x5c\xab\x44\x7a\x75\x93\x72\xe0\x5d\x49\x5e\xbb\x32\x8e\x75\xd2\x48\xda\xa0\x2f\x5d\x2e\xb9\x78\xd2\x71\x0c\xf1\xc5\xfb\x82\x48\x76\x77\x0e\x32\xca\x6d\xe2\xc7\x30\x56\x48\x92\x41\x5b\xcb\x53\xe5\x98\x1d\x70\x7a\xdd\x96\x1c\x5f\x37\xfd\xaf\xa1\x39\x9a\xf8\xae\xa9\x60\x45\x8d\x2c\xa3\x10\x55\x3f\x7c\x98\x66\xcc\xbe\x8e\x9d\x88\xe0\x8a\x44\x68\x72\xea\x66\xfc\x30\x8c\x82\x45\x14\xb7\xda\xce\x03\x34\xdb\x73\x5e\x6f\x14\xc8\x5b\x5e\x61\x9a\x5d\x60\x56\x48\xa8\x81\xe8\x76\xc7\x8d\xbe\x06\x57\x23\x3d\x4f\x7f\x3b\xfd\xdf\x63\xb4\x45\x31\x1d\x6a\xbc\x47\x63\x47\xec\x4f\xb4\x3c\x89\x46\xf9\xd1\x7c\x36\x93\x81\xd1\xc5\x64\xff\xcf\xe2\xdc\x7b\x47\x26\xfd\x57\x38\x7f\x0b\x44\xdb\x8e\xf9\x5a\x0b\x4e\x32\xa7\xbe\xdf\x31\x9e\x53\xa9\xe7\x12\x6c\x28\x11\xf9\x82\x9d\x1f\x4a\xe9\xab\xd9\xd5\xf4\x2e\xfe\xf2\x07\x5f\x47\x05\x1c\x63\xa4\xf8\x20\x20\x40\xec\x47\x23\x68\x63\x82\xc6\x03\x31\x27\xc1\xfb\xff\xf4\xbc\x82\x37\x35\x08\x75\x2d\x43\x1d\xc4\x73\xf5\x2d\xde\xab\x03\x42\xdc\x4f\x54\x47\xf8\xf2\x57\x38\xef\x65\xd7\x85\x56"}, {{0x66,0xf5,0xea,0x8c,0xdb,0x95,0xee,0x1a,0x75,0xe3,0x24,0x67,0xd7,0xc8,0x3c,0x59,0x44,0x77,0x42,0xc8,0x5d,0xdd,0x49,0x9c,0x43,0xc0,0x86,0x73,0xe1,0x49,0x05,0x3a,},{0xa8,0xad,0x04,0xb9,0xc1,0x44,0xb9,0x7f,0xe8,0x67,0x37,0x4d,0x4f,0xe5,0x7d,0x7e,0xc0,0xc2,0x49,0x18,0x3e,0x43,0xbd,0xfb,0x5d,0x52,0x64,0x4e,0x7f,0xbe,0x1d,0xf3,},{0xec,0x5c,0x7e,0x83,0x92,0xfa,0x8b,0x61,0xbc,0x82,0x96,0x81,0x86,0x6e,0x45,0xac,0x8b,0xe4,0xb5,0xb7,0xb6,0xa8,0x22,0xc1,0xbc,0xd0,0xf2,0xcc,0x2c,0x8c,0x44,0xc3,0x3c,0xf8,0x3f,0xa4,0x2d,0x43,0xa2,0xf1,0x88,0x41,0x41,0xb4,0xa5,0x9a,0xaf,0xf4,0x7f,0x9b,0xe0,0x7e,0x63,0x2e,0x20,0x18,0x75,0x93,0x24,0xea,0xc9,0xd1,0x49,0x00,},"\xc0\xd0\x1d\xce\xb0\xa2\xd1\x71\x91\x10\x18\x79\xab\xb0\x93\xfb\x07\x75\x71\xb5\x21\xbe\x7b\x93\xa1\x17\xc6\x96\xc0\x87\x2f\x70\xea\x11\x39\xab\x62\x83\x29\xee\x56\x55\xfc\x0a\xa7\x7e\x81\x11\xd2\xfc\x88\x47\x48\xc1\xf2\x67\xb9\xeb\x09\xdc\x26\xf5\x7f\xc4\x02\xd6\x1b\xa3\x6f\x63\xf4\xd5\x89\xaa\xe6\x3c\x76\xee\xee\x15\xbf\x0f\x9e\x2d\xcd\xe4\xe4\xe3\xe7\x8f\xc6\xc2\x9e\x3a\x93\xf3\xff\x0e\x9a\x6e\x0b\x35\x66\x45\x95\x38\x90\xde\xbf\x62\xdb\xea\xf4\x90\x51\x78\xd4\xf0\xa5\xa5\x92\xc1\x92\x94\xee\xba\x7c\x21\xcf\x8f\x1b\xb3\xf4\x51\x21\x87\x37\x6d\xe7\x2f\x11\x36\xa4\x8a\xc2\xdf\xaf\x32\xd0\xf3\x7d\xe0\x64\x59\x25\x92\xb6\xe1\xbc\x0c\x51\x2c\xf4\xd2\xd8\x5d\x16\x79\x78\x53\xa8\x09\x33\xb0\x9c\x2f\x7b\xfb\x9e\x54\xa6\x9e\x51\xa8\xe4\x23\xa9\x1c\x3e\x5f\xde\xb4\x79\x05\x33\xe8\x7a\x4b\x1c\x0e\x0e\x23\xa9\xdb\x95\x73\xac\x17\xab\x6e\xc7\x01\x4d\x8b\x7c\x44\x86\xe1\x57\x25\xf8\xd2\x64\xee\xa3\x05\x0e\x83\x5a\xe0\xac\x44\x9d\xb3\x34\x50\x2a\x6d\x97\x35\x8f\xa8\x59\x10\x6a\xd0\xf6\xf4\x29\x5f\x23\x44\x92\x0a\xdf\x93\x55\xa6\x94\x9d\x8d\x14\x5c\x25\x62\x8a\x46\xa1\x04\xca\x09\x9b\xd9\xdd\xe9\x41\x11\x9c\x83\x82\x0c\xdc\x2c\xb2\xd0\x97\x22\x69\x49\x01\x04\x3c\x37\xcf\x0a\xe8\x79\xbe\x20\x30\xd0\x37\x31\x58\xb9\xc4\xb0\x71\x82\x98\xbe\x45\xf6\x30\xf6\xfc\xdc\x19\x0f\x7b\x29\x26\xd8\x76\x55\xa1\x8b\xb7\x97\xac\x50\x75\x7f\xcd\x36\x55\xc9\xe4\x1d\x51\x63\x29\x3d\x9a\x13\xd9\x84\xf5\x91\xf7\x5b\x7e\x4e\x5c\xad\xb6\x4c\x4c\x9f\xdf\xef\x76\xca\xb6\x93\x81\xd0\xf6\x0b\x48\x3f\x80\x4b\xb3\xb3\x33\x64\xdf\x8c\xff\xac\xb3\xc9\xb1\x3f\xf4\xc8\xd8\xd4\xea\x40\x76\x6a\x7d\x42\xd8\x25\x6c\x6b\x1c\x11\xc1\x91\xda\xba\x1b\x8e\xf2\x15\x93\xe4\x7b\x18\x85\x8e\xc1\x9d\x81\x73\x58\x67\x8d\x85\x48\xff\x15\x35\xd5\xfc\xf4\x41\x4b\x6a\x11\xd3\x4a\x37\x42\xf8\xd7\x14\x9f\xa6\x81\x38\x3a\x94\x08\x88\x7f\x1c\x0a\x98\xed\x52\x1e\x72\x79\x32\x77\x82\x4d\x6f\x74\x6d\x49\xb6\x3d\x44\x4e\x31\x2e\x6d\x9b\x98\x66\x11\x25\x81\x96\xa5\xb0\x12\xb8\x8f\xaa\x29\xf9\xa6\xc6\x7e\xd2\x5d\xf8\x7b\x2d\xbf\x0d\xbd\x2d\xc3\x08\x0c\x5b\x8d\x15\xa3\x7d\x34\x72\x90\x98\xed\x0d\xe9\x2d\x75\x80\x74\x29\xb2\xca\xe5\xd7\x28\x3c\x4e\x5c\x9b\xd1\x96\xd1\xad\x43\x6c\x7c\x34\xf3\xc9\x46\x6e\x5c\xb3\x19\x6b\x44\x3f\x4b"}, {{0xed,0x25,0x58,0xe5,0xc5,0x67,0x84,0xbc,0xfb,0x4f,0x4d,0xde,0xa3,0xc0,0xdf,0xbe,0xf8,0xd9,0x6f,0xf1,0xca,0xbf,0x15,0x8e,0xc4,0xab,0xe6,0x0a,0xff,0x66,0x99,0x9e,},{0x1e,0xdc,0x99,0x10,0x12,0xac,0x6f,0x88,0x8f,0xa7,0xe6,0x04,0x57,0x77,0xe9,0xba,0x1d,0x4c,0x03,0xc4,0x02,0x92,0xd2,0xda,0x6b,0x72,0x2b,0x4a,0xd0,0xa3,0xed,0x74,},{0xab,0x9e,0x01,0x16,0x65,0x24,0xfd,0x28,0x8e,0x5c,0x68,0x9e,0x56,0xd7,0x30,0xd4,0x98,0x30,0x00,0x55,0x10,0x30,0x49,0x33,0x34,0xa3,0x98,0x4e,0x22,0x23,0xdc,0x9f,0x7a,0x5b,0x91,0x0c,0x61,0x76,0x0c,0x61,0x57,0x99,0x0a,0x4c,0x33,0x5e,0x34,0x8e,0x3a,0x7b,0xc8,0x22,0x3e,0x09,0xc1,0x0c,0x5e,0x52,0x0c,0x8d,0x61,0xaf,0xf5,0x00,},"\x2c\x64\x33\xe9\xbf\xbf\x4c\xfd\x4e\x07\x1f\x15\xce\x6b\x12\x9d\x78\x0a\x4b\x3d\xe0\x14\xfa\xc0\x34\xe0\xd4\x4e\xf7\x72\xe2\xc8\xb0\xd6\xa3\x48\x1d\x7b\x3d\xde\xb2\x37\x63\x26\x73\x55\x33\x13\xde\xac\x1e\xfa\xfe\x37\x02\xa7\xa4\x41\x1e\x12\xbd\x34\x1e\x8d\x8e\x96\xc5\x9c\x5e\x30\xc3\x68\x07\xa8\x38\x5a\x53\x8e\x9b\x66\x90\x7d\x6a\x52\x84\x00\xbd\x9f\x95\xee\xdc\x52\x16\xb2\x8f\xd7\x43\x7d\x8f\x4a\x02\x9f\xdb\xdc\x7c\x93\x8e\x4e\xb9\x81\x2f\xec\x05\xea\x69\x32\x29\x62\x9a\xce\x6a\xcc\x7a\xf6\xba\x4c\x23\x8e\x77\x22\xf3\x12\xf7\x89\x6b\x00\x49\x22\xf7\x06\x7e\xde\x10\x6f\x8e\x70\x15\x4d\x78\x3f\xb4\x12\x91\xf3\xc7\xe2\xe4\x82\x60\x45\xb5\x74\x1b\xcb\x4a\x88\x38\xf8\x7a\x32\xe0\x04\x97\x04\xe9\xb5\x32\x34\xc2\x24\xff\x89\x8a\x75\x6e\x52\x91\x34\xc1\xa9\xbf\x50\xfd\x02\x98\x19\xb2\x23\x8b\x60\xb2\xae\xc1\x12\x8f\x34\xd2\x1f\x9d\x66\x98\x3b\xed\x39\x86\x59\xd8\x08\xb6\x7a\x2e\x50\x1b\x5a\x1f\x25\xf7\x1f\x0f\x0c\x1e\xb2\xfe\xa0\xab\x42\xd8\x2f\xf3\xbc\x93\x58\xbb\x20\xc2\x75\x20\xc1\x44\xcf\x21\x16\xf4\xa4\x9c\xbc\x61\x99\x4d\x2d\x71\x05\x46\x69\x4c\x4f\x60\x2d\xc4\x06\xe0\xb0\xc2\x7e\x5f\x5e\x64\x66\x7e\x95\xc2\xec\x9d\xf2\xd6\x52\x9c\xf5\x36\x22\xea\x10\xb9\x56\xb3\x45\xec\x55\xb6\xc3\x9a\x1e\x6e\xd8\x8a\xe6\x6e\x5b\x45\x71\x79\x42\x5d\x1a\x84\x90\x37\xb0\x7c\x46\xcf\x5f\x36\x33\x01\x09\x58\x37\xce\x81\x1b\xff\x49\x60\xbf\x9c\xbd\x15\x20\x1c\x1b\x67\x40\xbd\x70\x10\x21\x40\x74\x4c\x33\x27\xac\xa9\xd6\xd6\xd1\x54\x93\x67\x98\xac\x38\x1f\xa6\x39\xdb\x43\x6e\xe8\x16\x56\x67\xd5\x38\xa6\xc7\x4a\x23\x3c\x12\x4b\xf6\x04\xfd\xad\x51\x98\x4c\x41\x70\xb8\x20\x0d\x2d\xf7\x3c\x29\xbb\x1e\x37\x6a\xff\xc3\x14\xdd\xe3\xe8\x6a\xf9\xd2\xc2\xe6\xc3\xa6\x52\x4d\x32\x1b\xce\x93\xe2\x1f\xc9\x65\x56\x4f\xaf\x77\xd0\xcd\x1a\xcc\xb4\xd7\x62\x94\x85\xf5\x64\xc7\x9f\x4d\x8a\x2f\xde\xfb\x46\x54\x54\x02\x8c\x6d\xd1\x42\x80\x42\x80\x53\x70\x74\x33\x63\xbb\x18\x47\x6a\x3f\x23\x20\xdb\x25\x89\xc7\x21\x33\xcf\x5e\x29\xda\xfb\x7d\x07\xaa\x69\xa9\xb5\x81\xba\xb5\xa8\x3f\x40\x3e\xef\x91\x7a\xfa\x14\xb7\x64\xc3\x9a\x13\xc0\xc5\xea\x70\x19\xd2\xfd\xfb\xd7\xf3\xf7\xd4\x0e\xb6\x3b\x2a\x08\x4d\xa9\x21\x89\x5f\xe4\x8f\x4f\xd5\x94\x01\x7f\x82\x56\x9b\x46\x7a\xb9\x01\x16\x9e\xb5\xda\x9c\x40\x17\x1d\x5f"}, {{0xb7,0x27,0x98,0xb8,0x11,0xe2,0x33,0x84,0x31,0x25,0x6d,0x24,0x80,0xfe,0x7a,0x36,0x63,0xac,0xec,0xbb,0xe6,0xe6,0xc1,0xb9,0x19,0x1e,0x9d,0x9a,0x22,0x44,0x79,0x40,},{0xce,0x49,0x1d,0xaa,0xd2,0x96,0xb5,0x57,0x27,0xb0,0x95,0x13,0xdf,0x02,0xba,0x59,0x28,0xa3,0x71,0x73,0x7c,0xd3,0x58,0x41,0xe5,0xf7,0x35,0xac,0xab,0x7c,0x5d,0xf8,},{0xdc,0xfc,0x6f,0xd4,0x77,0x99,0xfe,0xc7,0x72,0xc2,0x09,0x9b,0x3c,0x64,0x37,0x24,0x6c,0x3a,0xd0,0x72,0x29,0xfc,0x74,0x0e,0x05,0x31,0x1a,0x20,0x6b,0x18,0xb0,0x2e,0xcd,0xb0,0x26,0xc9,0x26,0xf4,0x9c,0x65,0x52,0xe3,0x47,0xfd,0x35,0xdf,0xde,0x06,0xcb,0x63,0x9a,0x79,0x7c,0x50,0x61,0x2f,0x98,0xe2,0x47,0x8a,0x92,0xaa,0xf6,0x09,},"\xa5\xd4\x62\x98\xb0\x79\x06\x10\xae\xdc\x09\x70\xfe\xa2\xa7\x07\x50\x81\x84\x72\x66\xf2\x2f\x12\x47\x8b\x93\xd7\xe6\x74\xc6\xc5\x17\xf3\xc1\x4e\xd0\x61\x26\x9d\x17\x0a\xc3\x1e\x2a\x64\xf9\x75\x4a\x56\x5b\xac\x1d\xd9\x75\x73\x22\xc1\x11\x32\xe7\xbb\xee\x5f\x32\x81\x8e\x0e\x30\x63\xab\x64\xe5\x52\xd0\x9b\x0f\xd1\x75\x76\x39\xb9\xb9\xd1\xc7\x70\x01\x6b\x67\x74\x65\x87\x2b\x66\x9d\xd4\x8b\xe0\x38\x66\x57\x51\x67\x4d\xd2\xf4\x0a\x96\x6a\x26\x74\x8f\xd3\xe5\xdb\xfd\x92\x26\x5e\xb9\x36\xf5\x5b\x09\x42\x86\xc0\x10\x62\x99\x04\x34\x7c\xb4\xc5\x26\xe3\x77\x47\x0a\xa9\x6e\x81\x69\xa6\xf2\x11\x63\x38\x07\xa5\x00\x30\xe7\xff\x68\xe3\x89\x11\xb3\x55\x5e\x72\x8e\xd8\x59\x0b\x2d\xc4\x5f\xea\x69\x94\x5c\xc0\xc9\xa3\xd3\xe6\xc9\x54\xb3\xe8\x01\x06\xa5\xc9\x1d\x3d\x22\xe8\x9e\x8c\x0e\x1d\xe9\x02\x05\x8e\x9c\xd0\xf8\xce\x80\x6e\xac\x4f\x89\x3e\xe0\x42\x99\x00\xfb\x54\x87\xb8\xfd\x36\xdb\xdc\xb3\x4f\x2d\x54\xfc\x6c\xc7\x4a\x92\x39\x51\xb8\x63\xda\x70\xf1\xb6\x92\xbf\x04\x38\x48\x43\x66\xcd\x85\xee\xb8\x80\xb2\x79\xf8\xfc\xa9\xd3\x24\x2c\x55\x83\x30\xf1\xca\x57\xc6\xa5\x86\x08\xcd\xbc\x07\x73\xe1\x60\x82\xbc\xa9\x64\xdd\xc4\x03\x47\xda\x8a\x36\xb2\xa9\x32\x8c\x2f\x46\x60\x9e\x09\x2f\xd6\x4b\x41\x34\xee\xe1\xd0\x99\x81\x3e\x12\x46\x48\x9e\x8e\xe5\xb1\x9b\x3d\x3b\x89\x1c\x28\xf3\x0b\x38\xb6\xa2\x8e\xc1\xd3\xe9\xb0\x05\xde\xc9\xc6\x3f\x8b\x98\x13\xbc\x1d\xe4\xaa\xf9\x95\xf1\x77\x9d\xde\xd1\x5c\x7a\x43\x0d\x70\xca\x46\xe7\xca\xfd\x4e\x9a\x54\x38\x04\x44\x6a\xb0\x80\x7d\x64\xf2\x55\xe2\x01\xef\x42\x8a\x47\x4d\xae\x8a\x0a\x75\x02\x1b\x62\xad\x39\x88\xff\xb8\x1c\xd8\x22\x1b\x24\x30\x85\xa0\xad\x04\x6f\xdc\x16\xc6\x7f\x17\xb9\xf8\x18\x20\x09\x59\x53\xa5\xb9\x8a\xcb\xdf\x93\xeb\xcf\x80\xbc\x9c\x99\xaf\x5f\xbf\xfa\xcb\x61\xa9\x25\x1c\x5a\xaf\xdb\x22\xb1\x12\x9b\xfc\x60\xc9\x8e\x0f\x17\x52\x63\xbd\xf9\x3d\xc9\xa0\x8b\x8e\xfc\x2e\x8c\xda\xf0\xf8\x3d\x6c\x49\xec\x90\x16\x45\xea\xc5\xa4\xff\x63\x38\x5a\x6f\x1a\xf2\x07\x18\x97\x66\x2a\x37\x22\x19\xc9\x30\x1f\x54\x5a\x2e\xbb\x8f\x59\x17\xdb\x7f\x29\xca\x13\xfc\x86\x1a\xf3\x8d\x90\xc3\x5c\x03\xac\x91\x84\xc1\x22\xe5\x7b\x05\x7c\xde\x42\x6f\xd7\x6d\xca\x79\xe2\x5e\x64\xdb\xb4\x1c\x84\x14\xa0\x45\x0d\xa4\x90\x5b\x90\x2a\xe9\x8d\x2d\xa4\xba\x79\x28\x01"}, {{0x1f,0xe7,0x32,0x7e,0xa9,0x07,0xd3,0xff,0x17,0x9b,0x11,0x78,0x11,0xd3,0x01,0x93,0xfc,0xba,0x4c,0x34,0x7b,0x90,0x65,0x7f,0xee,0xd9,0x8d,0xee,0xec,0xda,0x9a,0xc9,},{0xee,0xf3,0x01,0xb1,0x6f,0xd7,0xbf,0x3c,0x7b,0x64,0x0b,0xf5,0xee,0x87,0x00,0xac,0x5a,0x87,0x16,0x9e,0xab,0x5f,0x56,0x01,0x5b,0x3f,0x49,0x9d,0x95,0x5e,0x07,0xeb,},{0x9c,0x7f,0xdb,0x53,0xfd,0x60,0x6b,0xc7,0xc9,0xc2,0x23,0xfe,0x94,0x31,0xe1,0xad,0x00,0x95,0x46,0xd0,0x00,0x98,0x81,0x2a,0x49,0x51,0x97,0xf2,0x54,0x1e,0x87,0xf8,0xd6,0xf5,0xda,0x22,0xec,0xef,0xcb,0xb7,0xda,0x56,0x66,0x2a,0x73,0x09,0xd1,0x0a,0x6c,0x4a,0x4f,0x7f,0x29,0x92,0x78,0xd5,0x1b,0xbd,0x11,0xe0,0xcc,0x1b,0x87,0x09,},"\x19\xa8\x32\xf2\x6f\xbb\x02\x39\xf0\xd9\xd2\x6a\x2e\xbd\xed\x24\x03\xc2\xa4\x06\xdd\x1f\x68\x31\x8d\x67\x7a\xfa\x64\xf3\x50\x43\x31\x6a\x5e\xfd\x72\x97\x83\xc7\xf9\xd1\x8c\x09\x82\x46\x14\x65\x20\x91\x88\x6c\xc9\x54\xbe\x9f\x93\x12\xd4\x58\x6b\xf3\x6f\x30\x35\xac\x70\x34\x38\xb0\xcf\xe3\xde\xc5\x07\x78\x13\xc7\x10\xd1\x44\x75\x61\xab\x61\x57\xbc\x7a\xd5\xea\xb5\xb0\xc0\xaf\xdc\xc9\xdb\x77\xe6\x6f\xa8\x07\x13\x66\x82\x9c\x50\x10\x96\xc3\xd3\xa9\x38\x21\x8a\x6e\x42\x07\x10\x9d\x1e\xb8\x1f\x7d\x88\xbd\x6f\xbb\x2a\xef\xb1\xad\xef\x35\x94\xaa\xe5\x7c\x46\xb7\xb9\x84\xdb\x94\x68\xcd\x96\x2c\x61\x84\xfb\x97\x6f\x0e\x2a\xa8\x41\x52\xde\xb1\xc7\x6a\xea\x75\xae\x48\x84\x42\x94\x3a\x80\xba\x7d\x98\xa2\x8c\xb8\x64\xb5\xe8\x7c\xdb\x28\x4a\xd6\xe8\xd7\xaa\xdc\x6b\x75\xd6\x9d\x3b\xd3\x45\x78\x3b\x3e\xbb\x67\x6f\xf9\x5d\x7b\x41\x91\xe5\x99\x85\x1c\x96\x28\x83\x5c\x7c\x01\x19\x7e\x7c\x8f\x86\xf9\xc8\xfb\x49\xfe\x3e\x28\x45\x8b\xa9\xb0\x23\x62\x19\xbd\x46\xc2\x8d\xf6\x53\x24\x96\x99\x4a\xc9\xba\x73\x3c\x01\x05\xa0\x2a\x26\x9a\x2b\xe8\xb7\xcb\x40\x07\x4b\x88\x16\x02\xef\x92\x47\x05\x2d\xe9\xd6\x37\x08\x91\x88\xbd\x4c\x18\x5c\xca\xe2\x58\xa2\xae\x98\x56\xa2\xcb\xf8\x45\x11\x17\x68\x3c\xe3\x41\xf8\x09\x6e\x1d\x91\xe8\x74\xc5\xcb\x8a\x4e\x09\x39\xeb\x77\x37\x3a\x9a\x0e\xb7\x91\x64\x5b\x8f\x54\x60\x47\x2d\x66\x9d\x80\x14\x68\x1a\x5e\x77\x87\x06\xcb\x55\x66\xbb\xd4\x72\x7d\x17\x16\xb2\x3c\x62\x0d\x22\x8b\x5d\x4d\xc2\xb3\x52\xb4\x23\x93\x1f\x8a\x7e\x8f\xb5\x9e\xda\xd8\xae\x42\x45\x87\x29\x86\x1a\x98\xe0\xc8\x50\xa7\x7e\xd6\x55\xe7\xfc\xfe\x4f\xe3\x6f\x97\x72\xdf\x1a\xc3\xc6\x43\xad\x31\xdb\x56\x30\xd5\x71\xdf\x9f\xcc\x9c\x50\xde\x76\x22\x10\x84\x11\x96\x2b\xbf\x72\xde\xfb\xf4\x9e\x99\x70\x59\xc7\x31\x1b\xd9\xdd\xd5\xb3\x38\xa9\x85\x19\x38\xd3\x7e\x7a\x26\x21\x08\xa2\x91\xe2\x01\x68\x03\xbb\xef\xf4\xf9\xc7\x76\x12\x5c\xeb\x7e\x72\x72\xb5\x1c\x7c\x33\x46\x1d\x80\x89\xf8\x40\x8d\x8d\xda\x92\x50\x6d\x50\x02\x08\x4d\x4f\x41\x4d\x8a\x4d\x28\xd3\x69\x4c\x88\x63\x0e\x31\x80\x19\x90\xd9\x52\x71\xce\xf4\x7a\xa5\xc2\x63\xf9\x7b\x7d\xac\xa1\x78\x87\x01\x43\x63\x29\xb5\xbf\xaf\x72\x65\x3c\x16\x6d\xb0\x87\x70\x81\x30\xc5\xc0\xd7\x8c\xc4\xe9\x06\x4f\x86\x06\x80\x27\x1a\xfe\x4c\x40\x98\x53\xc2\xfa\xd6\x75"}, {{0x5f,0x9d,0xcd,0x93,0xfb,0x14,0x06,0x10,0xb0,0xe2,0x11,0xb3,0x9a,0xdd,0xb1,0xeb,0x87,0xba,0x97,0x80,0x48,0x77,0xaf,0xbc,0xc3,0x81,0x38,0x8c,0xad,0x65,0x08,0x45,},{0x18,0x2a,0x23,0x7d,0x87,0x8c,0x58,0x19,0x33,0x33,0x2b,0x41,0x78,0xb6,0x7e,0xc4,0x08,0xb3,0x19,0x4d,0x44,0xe4,0xe6,0x93,0x92,0xef,0x80,0x0b,0x26,0x7c,0x29,0x49,},{0xc1,0x91,0x5e,0x05,0x2b,0x66,0x47,0x97,0xe0,0xd5,0xfa,0xad,0xc7,0x8f,0x2a,0x00,0x9d,0x6f,0xbc,0xfd,0xe0,0x3f,0x3a,0xaa,0xd5,0x9b,0x9f,0x45,0x88,0xe7,0xfc,0x3b,0x21,0x99,0x0c,0x52,0x08,0xd3,0xd7,0x6b,0x4a,0xa9,0x5b,0xd9,0x34,0xe8,0x8d,0x3c,0x98,0xc5,0x91,0x93,0x0a,0x59,0xde,0x2a,0x05,0x67,0x01,0xd9,0xf7,0x57,0x74,0x00,},"\xc3\x8b\x87\x4d\x3f\xf0\x10\xff\xf1\xa6\x61\x3b\xfa\x13\x42\x57\xb2\x48\x33\xcb\x53\x6d\xe3\xe7\x49\x92\xc3\xcb\x01\xfe\x3b\xbd\xee\xd9\x7d\xc3\xc4\x59\x6f\xa4\x40\x61\x44\x2b\xd3\x1a\x9d\x4a\xa8\xc8\x1e\x34\xad\x98\x88\x71\x82\x06\x63\x55\x09\xb1\x33\xb1\xba\x69\xcb\x1a\xa0\xe7\x5c\x7a\x18\x93\xc0\x80\x16\x1d\x26\x15\x2a\xce\xf4\x0f\x6e\xf4\x21\x0e\x95\x2a\x49\x82\x8b\x5c\xdd\xe8\x04\xbc\xb5\x36\xcd\xc3\x49\xa8\xe8\x31\xb4\xb6\x9d\x37\x85\xa7\x6b\xd9\xfb\x27\x08\x05\x65\x97\x2d\x0b\x8f\xbd\x16\xf3\xf9\x60\xa6\xbf\x3b\xa0\xc5\xb9\xc4\x04\x96\x7e\xc1\xaf\xfe\x59\xb8\xc4\xec\xc6\x50\xfd\xde\x1c\xb0\x6b\x70\x59\x5a\xd4\xd3\x25\xda\x0f\xab\x4c\x55\x40\xa7\xa8\xd5\xeb\xea\xcc\x4e\x99\xbd\x0d\xc9\x6b\xde\x82\xf2\xbd\x7d\x95\x86\x30\x84\x65\xe5\x5b\x1c\xc3\x88\xd7\x50\x48\x6b\xdd\x5c\x72\x64\xd5\x4f\x56\x14\xd4\x87\x26\xd9\x9e\x44\xd7\x77\x8d\x9e\xd0\x32\x39\x58\xab\x98\x58\xe2\xb2\x5d\xf2\xbf\x99\x4b\xa3\xe6\x25\xe2\x80\x3b\x6c\x69\x31\xe7\xa9\x92\x6f\x1e\x61\xed\x86\x24\x03\xce\x39\x2a\xb8\x3b\x7d\x1b\x66\x08\x5d\xcc\x06\xd8\x2d\xbf\x17\x6d\x01\x6d\x9f\x44\xcd\xcb\x50\x72\xd0\x04\x59\x1e\x92\xd0\x45\x9e\xf0\x5a\x51\xb8\xf5\x4b\xa1\x72\x51\xe1\x66\x21\xeb\xb7\x53\xe5\xb1\x59\x0c\x02\xd2\x1e\x40\xf4\xb7\x5e\xee\x46\x02\x86\x0b\x97\x41\xfb\xbc\x0d\x2e\x38\x5b\x8d\xac\xa8\x3c\xce\x68\xc3\x4a\x99\xbd\xe6\xa6\x0d\x13\xba\x64\x34\x7d\x0a\x38\xd6\x4b\x2a\xde\x25\x0f\x38\x85\x2c\x4e\xda\x2e\x2e\x4f\x30\x3c\x3d\xe1\xa8\xa9\xd4\xab\x33\x00\xc9\xe6\x36\x22\x87\x9f\xc8\x53\x7f\xfc\x63\xb1\x85\x61\xfa\x1f\xff\x65\x53\x12\x41\x51\x5a\x62\xbb\x9b\x08\xb8\x0a\xf3\x76\x67\xa6\x01\xae\x04\x17\x17\x93\xcc\x83\xb1\x1a\xdf\x9c\x30\xca\x9f\x4d\xab\xc7\xb4\x01\xe1\x6a\x18\x14\xcf\xc7\x50\x24\x8c\xc2\xf7\x7e\x03\xf9\xc4\x33\x44\x65\xff\x6a\x2c\x83\xcb\xb5\x6d\xb4\xb7\x34\x75\x10\x43\x83\x2c\x40\x00\x97\x2e\xe3\x23\x2f\x92\x9f\x23\x33\x7e\xba\x5e\x65\x1e\x34\xcb\xdd\xfe\x68\xba\x21\x9b\x63\x2e\x7a\xcd\xbd\x46\x30\xa0\x31\xbf\x16\x89\xfb\xbc\x7f\xbb\xb2\x10\xdb\xf2\x5e\xe8\x7e\x2e\xf2\xb3\xcb\xaf\x8d\x9e\xbd\x8f\xc9\x2c\x3a\x58\xd3\xc0\x5b\x13\x85\xa7\x6c\x87\x79\x1d\x7c\xd3\x74\x1b\x71\xb6\xc3\x29\xde\x9a\x9d\x75\x08\xa0\xc1\x56\xa9\x52\x1a\x90\x20\x56\x30\x99\xa8\x2b\x87\x70\xae\x9a\x94\x4a\x7e\x94"}, {{0x92,0x5e,0xbe,0x04,0xc6,0xea,0xc4,0x9b,0x26,0x73,0x8d,0x6c,0x13,0x00,0xf3,0x1f,0xd4,0x82,0x84,0x78,0xcb,0xe9,0x7d,0xab,0x18,0xbb,0x88,0x96,0x42,0xe1,0xe1,0x10,},{0xcd,0x72,0x31,0xb6,0xeb,0x74,0xe1,0xfe,0x9f,0x92,0x6f,0x00,0xd8,0xde,0x2c,0x51,0x3d,0x49,0x64,0x05,0x25,0xb0,0x79,0x5c,0xab,0x89,0x3d,0x0c,0x89,0x29,0xe3,0xe0,},{0x2c,0x4d,0x69,0xbe,0xd5,0xad,0x8b,0x95,0x84,0xd8,0x49,0xcf,0x3d,0xf2,0xba,0xc7,0x22,0x82,0xb5,0xf3,0x0d,0xe2,0x66,0xb1,0x4f,0x53,0x3c,0xa9,0x6e,0x95,0x50,0xc4,0xb8,0x54,0xc1,0x54,0xbd,0xc1,0x7a,0xa8,0x80,0xcf,0x00,0x1a,0x64,0x54,0xff,0xaf,0xaa,0x2e,0x50,0x17,0x8d,0xe2,0x12,0x16,0xed,0x12,0x6b,0x63,0xf7,0x7f,0x2d,0x02,},"\xe6\xc0\xba\xd2\x3a\x92\xae\x8b\x1d\x85\x77\x82\x88\x15\x7a\xc6\xc6\x17\xc6\x33\x63\x34\x1d\x77\x78\x70\x34\x1b\xb1\x0a\x8d\x3d\xfc\x89\xbe\x4f\x55\xad\x4f\x64\xe8\x3b\xf2\x49\x9b\x69\xfd\xf7\x21\x74\xd2\x84\x4e\x6b\xd2\x89\xda\xaa\x03\x5f\xec\x5b\xf7\xcf\x45\x52\x21\x19\xdc\x7a\x8c\x81\x1d\x79\x57\x8c\x5b\xb0\xf6\xd3\x4d\xb5\x07\xad\x1f\xb6\xdb\xff\xf9\x97\xb7\x9d\xac\xfb\x3d\xa5\x0a\x41\x5e\x35\x0c\x99\x8c\x0a\x02\x80\x0a\xa5\x0f\xfd\xfe\x5f\x42\x76\xd8\xe6\xbb\x82\xeb\xf0\x47\xfe\x48\x71\x1d\xaf\x7a\x89\x3b\xdc\x75\x37\xbd\xae\xdf\x3d\xcb\x4d\xec\x5d\x24\x58\x68\x11\xf5\x9b\x25\xb1\x9e\x83\xca\x61\xe5\x59\x2f\xed\xc0\x8c\xa5\x44\x73\xce\xa2\xec\x12\x1b\xaa\x0e\x77\xfb\x2d\x9d\x76\x56\x57\xde\x67\x98\x0e\xd5\x7f\x2f\x17\x78\x58\xb6\xde\xcf\x84\xff\x90\x21\x2d\x96\x47\xf4\x1e\xed\x9b\x9d\x0e\xa3\xd8\xd6\x21\xe4\xbb\x40\x41\xac\xc5\x14\x6e\x96\xdf\xcf\x14\xea\x96\x2d\x30\xc8\xcc\xb3\x9e\xa2\xbe\x95\x8c\x9b\x87\x74\x45\x1b\xfe\xb7\xdd\xce\x71\x6e\x94\x92\x3c\xc8\x5f\xbd\x3a\x31\x30\x78\x0e\x2b\x3b\x2b\xb7\x6d\xa5\x34\x19\x12\xa4\xe9\x94\xca\xfa\x19\xbb\xa1\x97\x32\xf2\xea\x40\x2d\x71\xd3\xd8\xa9\x69\x67\x9b\x9d\x10\x42\x43\xd9\x83\x9c\x69\xee\x9e\x95\x5e\x1c\x60\x44\x97\x88\xd1\xf4\xf6\x65\x1f\x4b\xc9\xb9\x4d\x73\x52\x2e\xc0\xcf\x72\xca\xcf\xcf\x19\xf1\xf0\x3a\xd6\x23\x21\x04\xb5\x5c\xbb\x8b\x5b\xb1\xe2\x13\x44\x71\x3d\x48\x27\x42\xd6\xab\xc5\xa9\x57\x17\x4f\x62\x3b\x84\x95\x27\x2c\xc1\xe2\xb8\x31\x5e\x5c\x80\xf9\x47\xf5\x00\xc8\x3d\x85\x44\xf7\xcd\x4f\x65\x34\x89\x49\xef\x44\x20\xd7\xfc\x83\x1f\xa4\xae\x2e\xe1\x8d\xbb\xa6\x14\x92\x5c\xe1\xd7\x67\xc1\x77\xa6\x26\xc4\x52\x7a\x81\x54\xb5\x72\x92\x18\x6b\x04\x4c\xbf\x92\x89\x42\x53\xb0\x0f\xd9\x34\x3f\x9e\x69\x7b\x14\x12\xeb\xa4\x35\x97\xeb\x72\xa6\x69\xaa\xa2\xd7\x7e\xac\xb9\x68\xc2\x0f\xe1\x95\x05\xa3\x80\x74\x15\x86\x21\xb6\x06\xf7\x7d\x97\xbc\x6e\xbe\x50\xe7\x58\x92\x93\xdb\x27\xfc\x7d\xfe\x63\x1a\x4b\xee\x83\xb2\x26\x82\xa7\x73\x28\xc3\x6d\x9d\x7d\x1d\x89\x1d\x65\x21\x7c\xc4\x78\x64\xf6\x80\xdc\x8b\x5f\xd1\xa0\x1a\x0f\x7c\x34\x43\x0f\x77\x06\x0b\x69\x1a\x1a\xd2\x13\xd2\x28\x68\xe6\x1b\xbd\x38\xf4\x3f\x0c\x8b\x4d\xa6\x8a\x58\x31\x86\x66\xc0\x99\x76\x61\x70\xc2\xdb\x76\x6a\xaf\x41\x7f\x55\x6c\xc9\xa0\xa3\x93\x4e\x9f\xce\xf1"}, {{0x4d,0xd3,0xb4,0x78,0xeb,0xdc,0x59,0x47,0x2b,0xab,0x14,0xa8,0xcd,0xd0,0xc2,0xfd,0xac,0x57,0x23,0xee,0x04,0xdd,0x89,0x17,0xc7,0xcf,0xe7,0xa5,0x36,0x48,0x5c,0x77,},{0x5b,0xcc,0xb3,0x7e,0x68,0xc2,0x34,0xbe,0xad,0x49,0x33,0x7d,0xe2,0x08,0xaf,0xba,0xf6,0x11,0x81,0x1d,0x96,0x58,0x59,0xa0,0x6d,0x31,0x30,0x12,0x47,0xd6,0x6a,0xcf,},{0x57,0x88,0xe7,0x9e,0x84,0x3b,0xde,0x9e,0xf1,0x1a,0x9d,0xfa,0xc9,0x70,0x19,0x6a,0x56,0x7c,0x63,0x08,0xc3,0x48,0xe5,0x17,0x4b,0x38,0x77,0x95,0x04,0x6d,0x59,0x0a,0x47,0x49,0x1f,0xd7,0x1d,0x97,0xae,0xaa,0x78,0xc1,0x61,0x59,0x71,0xb8,0x34,0x90,0xe8,0x59,0x28,0x20,0xf9,0x59,0x2a,0xc7,0x62,0x69,0xb9,0xd2,0xba,0x70,0x29,0x01,},"\x1c\xdb\xd2\x85\x56\xec\x44\xe8\x70\x5a\xfd\xa9\x2b\xd5\xa5\x3f\x95\xd8\xfe\x8b\x0f\xfe\x46\x33\x73\x63\x33\x16\xc5\x22\x74\xc1\x1e\xdc\xd6\x15\x51\xe3\x19\x9e\x49\x4d\xff\x6d\x90\x6a\x73\x9e\x7b\x32\x43\x03\xfc\x47\x82\x7e\x56\xde\xf0\xbd\xcc\x46\xb8\x16\x01\x7c\x71\x23\x05\x37\x02\x63\xba\xbd\x2c\x71\xbe\x47\x8f\x41\xce\x30\xb1\xdf\x63\xbe\xdd\x3b\x2e\x6a\x51\x9c\x53\xdf\x51\x58\x52\xc4\x13\x7b\xc1\xac\xa4\x9b\xf4\xc4\x63\x1f\xd6\x56\x46\x57\xd1\x1c\xd8\x3e\xa7\x3c\xc3\xd0\xcf\x9e\x3b\x3c\x3e\x7c\xa9\x9b\x4f\x12\xa9\xc9\xb6\x7c\x87\x98\x14\x8e\x0a\x0d\xc1\xef\x8b\xf5\x86\x42\xa1\x4f\x97\xa5\x72\x13\x55\x14\xc1\x0b\x19\xaa\xbe\xc2\x5a\x9c\x6b\x35\xaa\x40\x34\xa5\x7a\xae\x1b\x6d\x05\xbd\xe2\xb6\x33\x0f\x25\x1d\x78\xdb\x09\x93\xf0\xca\x4c\x26\x38\x6e\x34\x89\xa2\x09\x28\x33\xb8\xac\xbb\xc4\xf4\x91\x7f\xd3\x09\x3d\xf5\x82\xff\xf7\x1e\xce\x21\x9d\x36\x72\x45\x55\x82\x60\x9c\x0d\xb8\xd9\x6a\x70\xfc\x8a\xed\x67\x98\xde\x54\xbf\xb2\xb3\xee\x6c\x5d\x32\x8d\xb1\x63\x59\x3f\x58\x01\x9f\x38\xf3\x39\xfd\x37\x53\xf8\x96\xa4\xa2\xcc\xa8\xc1\x40\x0a\x77\xea\x39\x19\x35\xf3\x4e\x26\x39\xc5\x60\x86\x08\x10\xbb\xbe\x4b\xe1\xd1\x6e\x01\x2c\x11\x49\x0a\xa8\x4f\x29\x64\xc8\x77\xc2\x93\xb3\x00\xf4\x3d\x37\x9f\x3e\xba\x9a\xf3\x91\xde\xe5\x10\x85\x6a\x4d\xdc\xf7\x6e\x0a\x0a\xe0\x6a\x6a\x7c\x0f\x9c\x5e\x3f\xa1\xb8\x35\x4f\xe8\x97\x7b\x4e\xa3\xb2\x06\x61\x49\x1f\xa4\x61\x3b\xa6\x2f\x55\x6d\x5d\x5d\xa8\x21\x3d\x01\x21\xde\x2c\x87\x25\xdf\x0a\xae\x04\x8a\xc8\x91\xab\xbc\x06\xbd\xce\xf3\xc3\xef\xfd\xf5\xa3\x17\x49\x47\x6f\x81\x4d\xb9\x45\x79\x45\xf0\xd9\x1e\x14\x08\x00\x56\xbe\x92\x1a\x16\xaa\x96\x4a\x92\x98\x22\x1b\x15\x75\x94\x97\x3e\x32\x96\x99\x93\x31\x0c\x87\x07\xe1\x9f\x31\x43\xab\xc4\xfd\xa7\xc8\xad\x01\x60\xac\xf0\x31\xab\xa6\x52\x80\x1a\xa8\x1a\x01\x6b\x31\x37\x03\x9e\x27\xd6\x73\x8d\x02\x80\x0a\x93\xa8\x6f\x9f\x55\x85\xc5\x18\xdf\xa9\xe7\xd8\xac\x72\x7f\x37\x43\x7e\x56\xd2\x78\x83\x86\xe1\x16\x53\xa0\x4e\x16\x51\x69\xf9\x03\x97\x2a\x01\x48\x47\x51\xe7\xcb\x38\x63\x25\x90\xec\x80\xd5\xfc\xe4\x54\x16\x01\xa0\xe0\x95\x78\x5a\x9e\xe8\xd3\x59\xed\xf2\x6b\x99\x46\xe7\x98\xda\x59\x98\xcb\xb7\x36\xf9\x4e\xb7\x13\x46\x3f\x79\xf5\x61\x75\x9b\xbc\xb4\xc4\xac\x69\x3c\xab\xf2\xe1\xe0\x36\xb2\xd0\xb0\x87\x9a"}, {{0x07,0x4d,0x92,0x18,0xc1,0x21,0x7e,0x75,0x82,0x3c,0x90,0xe0,0x10,0x48,0x4c,0x2a,0xdb,0x88,0xec,0xcc,0xd2,0xbd,0xf0,0x12,0x0a,0xa3,0xed,0xff,0xcf,0xcb,0xd4,0xbf,},{0x37,0x35,0xad,0x19,0x19,0x03,0x3d,0x16,0x17,0xb8,0x5b,0xda,0x04,0xb1,0x61,0x21,0xda,0x1d,0x86,0x1b,0x40,0x41,0x54,0xfa,0x96,0x1d,0x49,0x46,0xe5,0x5e,0xcd,0x83,},{0xb1,0xf7,0x1c,0x3b,0xd1,0xb6,0xbe,0xc4,0x33,0x37,0xe2,0x6d,0xee,0x65,0x5a,0x8d,0x5f,0x4a,0x8d,0xad,0x84,0xa5,0x11,0x84,0xb7,0x75,0xb6,0x86,0xfa,0xd3,0x1d,0x80,0x29,0xe3,0x87,0x69,0x27,0xf9,0x57,0x6e,0x90,0xc3,0x62,0x48,0x75,0xfc,0x00,0x29,0xa5,0xc1,0x0a,0x8a,0x0a,0xf7,0x5d,0x7a,0x88,0x0c,0x68,0x44,0xa4,0xa8,0x3a,0x00,},"\x6b\x5a\xa4\x0e\x91\x67\xbf\xdb\x84\x7d\xaa\x7d\x27\x86\xe2\x8e\x75\x33\xe1\xd6\xac\x53\xbe\xb6\xf6\x9b\x59\x53\x79\x5a\x2b\xf5\x9b\xbf\x7d\x14\x19\x26\x96\x8f\x50\x96\x9b\xad\x74\x2a\x4f\xb5\x79\xd3\x25\x0f\xb1\xbe\x4c\x57\xeb\xf4\xf9\x11\x2c\x70\xcd\x9f\x72\xa0\x0d\xb1\xc8\x89\x6f\xe2\xb5\xbd\xa7\xc7\x03\x0f\x49\x7c\x0b\x00\x1e\xa2\x5b\xa0\xd4\x47\xf0\x8c\x36\xdb\x8b\x90\x7c\x2f\x2a\xbb\xbb\x62\x0d\x3e\x8a\x2c\x66\xe4\x17\x12\x85\xad\xca\xad\xd1\xc1\x4f\xe2\x39\xbc\x59\x5f\x09\x83\x96\xaa\x87\x80\xff\xb8\x0f\xe1\x44\x6a\x07\x00\x1e\xc2\x34\xd8\x2a\xbd\xcd\x81\x00\x79\x39\x15\xb0\xb3\xf8\x0d\x84\xe2\x0e\x51\xea\xbc\x79\x78\x06\xf3\xbe\x81\x08\xa4\xf4\x37\x55\x0b\x06\x69\x40\x50\xa8\x29\x31\xac\x40\xc0\xa4\x89\x77\xed\xf6\xce\xd2\x42\x8d\x7c\xfe\xa8\x20\x55\x06\xde\x86\x40\x80\x65\xd1\xa1\x98\x70\xfa\x33\xa7\x08\x10\x37\xb3\xee\x44\x91\xb6\xe7\xf3\xd1\x0b\x14\xa3\x0c\x20\x91\x59\xa1\xc8\x12\x31\xa3\x5f\x03\x65\xb4\x7d\x3e\x0d\xa0\x4a\x32\xc9\x5d\x98\x33\x3c\x44\xf5\x72\xcd\xaa\xa9\x05\xd0\x69\x19\x7f\x6e\x86\x1b\x5d\xfc\xdf\xb9\xdb\x6c\x7b\x0d\x0c\xb0\x0f\x37\xc9\x16\xa1\xc4\xc0\xb8\x98\x5b\x09\xf3\x34\x09\x5e\x12\x83\xed\xfd\xd4\xe6\x2a\x29\x41\x09\x9a\x2b\x69\x36\x96\x60\x4d\x99\x43\x11\xe3\xd5\xf6\x10\x66\x83\xe1\xd7\xa1\xc7\xe5\x3d\xf7\xb7\x90\x94\x7a\x9a\x80\x1a\x0c\xcd\x48\x43\x95\xf6\xcb\xfd\x9c\xa4\xd9\x80\x4f\x18\xd5\x2b\xb0\xf9\x46\xd1\xa8\x9f\x97\xa6\xfb\x06\x80\xa8\xc4\xc0\x57\xb6\x06\x2b\x2b\x9d\xe7\xc0\x37\x48\x79\xb8\xa6\xa6\xd2\xc1\x0a\xef\x78\x05\x08\xeb\x28\xbb\x56\x9a\x08\x35\x09\x44\xc8\x2f\x6e\xf2\x8d\xb2\x30\x4d\xb6\x97\xc3\xae\x1a\xf4\x3a\x50\x0b\x0b\x97\x48\x03\xe9\xf4\x6e\xa2\xa0\x2e\x85\xed\x27\xdd\xa6\x16\xd2\x4d\x6d\xb3\xcc\x4f\x5a\xed\x82\x40\xb1\xae\xa3\xdc\xf6\x9d\xee\x5f\x14\xf9\x5e\x6e\x72\x98\x7b\xbe\x61\x89\xbc\x20\x45\xf0\xd7\x83\xa7\xb4\x7b\xfc\x19\x83\x0b\xc7\xf4\xe7\x98\xab\xe9\x02\x45\xfb\xd4\x3f\x37\xc3\xf0\x36\xd1\xcb\xf1\xe7\x3d\xcb\x1d\x9d\xaa\x87\x37\x9b\x11\x06\x97\x34\x81\xa2\x15\xc1\xf4\xf4\x6c\x16\x03\xa5\xd5\xcd\x97\xb7\x07\x6f\x1f\x5d\xc7\x89\xaa\x6a\x71\xe7\x2e\xf5\x4e\xd3\x28\xa4\xab\x64\x34\x05\x39\xff\xd1\x64\xd0\xec\x64\x5f\x32\x2d\x1b\xc3\x71\x12\xdc\x08\xd8\xc8\x07\x9d\x19\xd3\x7a\xbb\x23\x53\xf4\x8b\x5c\x49\x2f\x80\x6e\xd2"}, {{0xd2,0xea,0x2d,0xff,0x7a,0xf0,0xba,0x2a,0x6b,0xed,0x7f,0x6c,0xc6,0x8c,0x0d,0xf6,0x64,0xa6,0xb1,0x0c,0xe8,0x01,0xc4,0x2e,0xd5,0xbb,0xe6,0x17,0xbc,0xc8,0xb8,0x4a,},{0xab,0x44,0x70,0x63,0x44,0x02,0x6e,0xd3,0x5e,0x21,0x98,0x29,0x64,0xf7,0xb4,0xdb,0xbb,0xe2,0x07,0xfd,0x27,0xc4,0x67,0x99,0x70,0x1c,0x19,0xa4,0xd8,0x8d,0x1d,0x72,},{0x9a,0xbd,0xb9,0xdd,0x2a,0xb7,0x7b,0x6f,0x5e,0x1b,0x91,0xba,0x0b,0x61,0x3f,0x5f,0x36,0x0e,0xfb,0x50,0x0d,0x3f,0xe9,0x92,0x90,0xef,0x7c,0xa1,0x4b,0xd2,0xb3,0x30,0xf4,0x05,0xa4,0xf7,0xdc,0xda,0xef,0x49,0x23,0xd3,0x11,0x1d,0x40,0xbf,0x03,0x20,0x35,0x33,0x86,0xf6,0x34,0xb4,0x0d,0xe6,0xf0,0x4d,0xe9,0x19,0x0a,0xd5,0x1c,0x08,},"\x03\xab\x5d\xae\xbc\x6e\x70\xd3\x52\x97\x79\x32\xa0\x31\x07\x87\x9b\xd5\x5d\xaf\xd0\xc6\xba\x7a\xd9\x69\x7a\x17\xb1\x27\xb3\xa7\x4a\x3e\xae\xba\xbd\x0f\x8e\xee\xbf\xc0\x48\x3d\x63\xfe\xdd\xe5\x2d\xeb\x46\xa3\x75\x24\x49\xc9\xc4\x49\x5c\x51\xa1\xc9\x1f\x57\xe3\xad\x2e\x6d\x01\xa1\x3d\x0c\x47\x0c\x52\x91\xb8\xe9\x12\x28\x83\x40\x97\x0f\xbb\x85\x78\x7b\x8b\x37\x6d\x72\x17\x52\x50\xe8\xcd\x90\xc0\x78\x88\xbf\xef\x5e\xbf\x50\x86\xc8\xff\x2a\xbc\xdd\x12\xd2\x14\xb9\xc4\x5d\x12\x08\x73\xb4\x60\x2e\x57\xa6\xaa\xb0\xb8\x28\xd1\x08\x4d\xff\xaa\x36\x51\xee\x35\x66\x26\x95\xb7\xf3\x43\x3f\x4a\xb5\x30\xc2\x9a\xc6\xcc\x5b\xb4\x3e\xcc\xd1\xb6\x89\x8b\x9e\xf7\xae\xc6\xd5\xae\xc6\x8d\x5c\x11\x14\xbb\x5d\xf7\x82\x09\x66\x59\x4c\x99\x4d\x64\x08\x91\xb8\xf2\xdc\x5d\x25\x63\x8d\xe4\x35\x49\xd8\x6d\x34\x30\x6f\xf3\xf5\x74\x57\x51\x16\x40\x5b\x9e\x8e\x28\x6e\xe0\xcd\x97\x8a\x76\x00\x2c\x44\x35\xfe\xaa\xc6\xe8\x4e\xae\x16\x54\xf3\x39\xa5\x67\xd8\xd0\x4f\xcf\xa3\xeb\x6a\x04\xb9\xad\xc6\x66\x02\x13\x00\xe9\xee\x59\x72\xb3\xdf\x5d\x4d\x0d\xd4\xbf\x79\x21\xdc\x98\xde\x82\xce\xf2\xd1\xb1\xd6\x1b\x79\x7f\xc9\x96\x8e\x11\x84\x84\xc4\x13\x42\x41\x6d\xdc\x6a\xdc\x4e\xe5\xd6\x87\xd9\x4a\x40\xce\x57\x2f\x42\xa2\x04\x86\x68\xc1\x75\xcf\x7b\x1f\x24\xc4\xef\xd0\x20\x55\x4f\xc6\xf6\x42\xe1\x4a\x57\xba\xec\x23\xe9\x5c\x25\x14\x30\x6d\x0a\x6d\x33\x64\x88\x41\x49\x7e\xac\x48\xea\xbd\x96\xd0\x47\x31\xba\xb0\x8b\xf5\xea\x9d\x43\xe0\xcf\x9a\x37\xfa\xaf\xa7\x32\x86\x9d\x68\xe7\xd5\xfe\x69\x54\xf8\xa3\x19\xef\x55\xda\x1e\x17\x8e\x43\xe8\x4a\x3b\x9a\xa3\xad\x00\xc2\x9b\x1d\x16\x11\x63\xdf\x4b\x79\xf2\x88\xe9\x39\x1d\x70\xa2\xf8\x81\x3d\x66\x62\x2e\x8a\xc3\x33\xfa\x6a\xa5\x31\x1e\xab\xec\x38\x3b\xa4\xcc\x12\x28\x15\xde\x00\x88\x77\xef\xbe\x6e\x12\xc3\x22\xc9\x75\x43\x4a\xfa\xd1\x73\xeb\xe2\x42\x03\xd9\x16\xd5\x75\x78\xbd\x2b\xca\xcc\x78\xf6\xe2\x56\x45\x13\xf8\xd1\x13\xa8\x33\xc2\xc2\x26\xeb\x97\xba\x2e\x23\x36\x1a\x5d\x02\x66\x4a\xb3\x77\xf9\x64\xc4\x30\x0b\xe2\xd7\x7b\x62\xd9\x24\x08\x23\xa0\x98\x84\xdf\x30\x7e\xff\x3b\xe5\x66\x4d\x72\xd1\x1a\xd5\x13\xe1\xbc\x56\x10\xdb\xfd\x10\x09\xdb\x39\xf0\xcb\xfe\x47\x05\x55\xec\x1b\x56\xb8\x71\x67\x07\x93\xd3\xb7\x04\xfb\x06\xee\x95\x0b\x1a\xd2\xa4\xd7\x29\x7c\xa5\x8b\xba\xd8\x10\xc3\xfa\xd4"}, {{0x7a,0x60,0xcd,0xf1,0x87,0x04,0x60,0xde,0x8a,0xe7,0x78,0x11,0x76,0xd5,0x12,0x7e,0x71,0x20,0x7f,0xaf,0x2f,0x21,0x0b,0xd4,0xdc,0x54,0x73,0x85,0xb6,0x67,0xf2,0xf2,},{0xea,0xd6,0x7a,0x9c,0xf3,0x4d,0x0f,0xf1,0x4e,0x79,0xaf,0xa4,0x6f,0x2d,0xc9,0x96,0xe9,0xac,0x0e,0x3e,0x07,0x63,0x22,0xfb,0xb4,0x00,0x97,0x67,0xb1,0x33,0xf0,0x1b,},{0xb2,0xe0,0x81,0x42,0xbd,0xd6,0x2b,0x78,0x65,0x92,0xc0,0x91,0xf5,0xfe,0x6a,0x9b,0x7f,0x30,0xce,0x13,0x4c,0x3b,0x23,0x6f,0xbc,0x6d,0xfe,0x67,0x34,0xf8,0x82,0x70,0xac,0x58,0xf6,0xd7,0x4b,0x4f,0xd9,0x9c,0x22,0x45,0x1c,0xa4,0x65,0xa4,0x2c,0x00,0x6d,0xb2,0x5a,0xf2,0x15,0xed,0x24,0x1a,0xf1,0x18,0x96,0x27,0xc6,0x05,0x0f,0x00,},"\x9d\xc0\x23\xa5\x25\xd0\x1b\xa3\x51\x37\x98\xb7\x38\xc7\x91\x62\x92\x6e\xbc\xcc\x0a\xdf\x1e\x57\xac\x47\xc2\x0d\xea\x6c\xe1\x37\x5c\x3d\x2a\xaa\x17\x33\xb7\xf0\xc3\xbd\x94\x5c\x33\x5f\xf3\x57\x61\x12\xbb\xdc\x10\xb6\x78\x3b\xa6\x54\xe8\xc6\x10\x47\xf2\x77\x3a\xa2\x29\xbf\x84\x69\x22\xa8\x9c\x6a\x73\xd5\xf1\x05\x1e\x8d\x96\xed\x36\xd7\xd6\x74\x7e\x06\x3a\x7a\xc6\x02\xf1\x9f\xc5\x2e\x02\x1a\x4b\xbc\x28\xb0\x35\x14\xfb\xd5\x1c\x7b\x3f\xd6\x59\xf1\x2d\x54\x7d\x05\x92\xdd\x09\xf8\x73\xc9\xec\xc6\x43\x9c\x7e\x93\x1a\xd0\xe4\x85\x6b\xe3\x1c\x60\x5d\xef\x2e\xd9\xb5\xd1\x3c\x59\x42\xb2\xf3\x25\x39\x7d\xac\x6c\x97\x60\xe9\xb1\xbb\x0c\x06\xf7\x13\xcb\x92\x0c\x23\x4b\xcc\xfe\xe9\xf0\xb8\x5d\xd0\x20\xf7\x98\x8f\x3b\xe1\xcc\x66\xe9\xe5\x1b\xab\xe2\xfe\xe2\x37\xeb\x84\xec\x7e\xff\x94\x09\xaa\x91\xc1\x94\xe3\x0d\xb1\xe0\x65\x01\x59\x55\xde\x97\x46\xbb\xa0\x3f\x7e\xdf\x9a\x58\x75\x12\x40\x9a\x41\x61\xfa\x77\xea\x62\xcc\xf4\x31\x60\x2d\xcd\xcf\x36\x5e\xd6\xbf\x0a\xed\xdd\x32\xf7\xc8\x44\xe3\xa3\x4d\x26\x6e\x28\x38\x2f\x40\x62\xfd\x4d\x6f\x82\x14\x25\x21\x04\xd6\x43\xa9\xbf\xd8\x07\x17\x16\x37\x1c\xcb\xb5\x4c\x8c\xc8\xdb\x79\xad\xd6\x5b\xcb\xce\xa0\xd0\x80\xd8\x40\x28\x03\xfe\x23\x2d\xf7\x0f\x76\x57\x72\x47\xa6\x3d\x55\x83\xbb\xd5\x64\x27\x67\xbc\x63\xf3\xc5\xa7\xbb\x3a\x47\xeb\x12\x98\x4e\x45\x41\xf4\x1f\xdb\x55\x86\x9a\x08\xfa\xde\x66\xc2\x0f\x69\xa5\xa9\xde\x25\xf6\xb3\x6b\xa1\x8a\xce\x5b\x4a\xc3\x36\xbb\x2a\x8e\xbf\x63\x0a\xd0\x3e\x8b\xb8\x73\x1d\x01\xe8\x4b\x91\xd0\x24\xd1\x17\x45\x9a\x74\x89\x2e\x93\xd5\x3b\x61\xe6\xb8\x06\x8e\x4f\x04\xb4\x18\x1f\x03\x87\xb4\x56\x7c\xcd\x45\xe1\xb8\x71\x8a\x2d\x7d\x78\x78\x72\xf3\xdc\xf8\x7a\x15\x93\x5a\xd7\xda\xaa\x74\x4e\xd6\x8a\x28\x66\x6a\x51\xa1\x0d\x39\xfc\x13\x9c\xdf\xe9\xa6\x87\x30\x76\xf7\xc4\x25\x00\x9c\x38\xfa\xee\x13\x5e\x51\x32\x07\xb0\x6e\x7b\xa3\x56\x85\xf5\x07\x2d\xa3\x4b\x60\x45\xb5\x7c\xd5\xd1\xb1\xa1\xfd\xf0\x17\xb8\xaa\x8e\xbd\x27\x52\x2b\xc9\x5e\x47\x90\x87\x34\xe4\x17\x22\xa7\x67\x90\x5c\x5e\xcc\x30\xc7\x24\x81\xb6\xc1\x2b\xf4\xac\xe9\x4d\x5b\xb3\xa3\x15\x56\x91\xb7\x07\x5b\x40\xeb\xf5\x96\x8f\xdd\x90\x3d\x8f\xd3\xcc\x50\xb8\xd6\x46\x48\x59\xb1\x0f\x75\x51\x32\xc6\xd9\xb6\xda\xd1\xd6\xf1\x4c\x41\x85\xb2\x64\xd3\x49\x7a\x4e\x54\x98\x77\xfe\x94\x6e"}, {{0x33,0x79,0xd2,0x5c,0x11,0x17,0xcf,0x80,0x2e,0xc7,0x9c,0x06,0x57,0x5d,0x18,0xe6,0xbe,0xce,0x4c,0x70,0x93,0xdd,0x43,0xfd,0xee,0x03,0x68,0x5c,0x70,0xb2,0xfa,0x9f,},{0x85,0x25,0x15,0x6f,0xe2,0x9f,0xc2,0xfb,0xf6,0x61,0xba,0x50,0x18,0x2b,0xe2,0x0c,0x89,0x98,0xd9,0x41,0x49,0x3d,0x59,0x33,0xdc,0xa4,0xd8,0xb4,0x1f,0xb4,0x42,0xd5,},{0x4c,0x36,0xbf,0xc8,0x1e,0xef,0x00,0xb9,0xcb,0x3a,0xb5,0x14,0xc6,0xd4,0x51,0xb9,0x93,0x36,0x1e,0x09,0xa4,0xbe,0x4b,0x50,0x40,0x92,0x6f,0xeb,0x0e,0x0d,0x9b,0x52,0xf0,0x3d,0xe4,0x68,0xe7,0xba,0xd8,0x3f,0x37,0x91,0x54,0xbf,0x2c,0x43,0x7a,0x71,0xf7,0x54,0xf3,0xf4,0x07,0x98,0xee,0xeb,0xd6,0x2e,0x55,0xf2,0xbe,0x77,0x14,0x03,},"\x7a\xcd\xb3\x9f\x12\x26\xbd\x3a\xbf\xfa\x50\x35\x0a\x14\x97\xd7\x61\xf8\xf0\xaa\xef\xbf\xbb\xbb\x92\x5f\xf5\x63\xe3\x89\x76\xaa\x17\x2d\x40\x7b\x61\xff\xdf\xb1\xcd\x53\x8a\x4c\xd0\x00\xb5\x78\x18\xa0\xbc\x92\xc0\xe0\xcd\x0a\x5a\xbf\xcf\x57\x83\x00\xf5\xf4\xe6\xce\xfa\x26\x72\x75\xd1\x78\x45\xda\x70\x66\xfd\x4e\x18\x01\x00\x27\x96\x0c\xd3\x95\xe6\x82\xad\x71\xaf\x34\x9b\xbd\xad\x5e\xba\xa0\xf1\x1a\x77\x61\xe1\x9e\xa1\xbe\xf6\x61\x07\x43\x16\x4b\x17\x14\x14\x53\xb4\x72\xae\x2c\x8f\x36\xce\x6b\x08\x0f\x1c\x07\x45\x35\x24\x54\xce\x5a\xea\xe1\x1c\x9d\x75\xde\x3c\x08\x00\x42\x65\xfc\x4c\xa8\x0d\x33\xb2\x6e\xae\x14\x00\xdf\xd8\x97\x7b\xf7\x23\xa6\x16\xda\xeb\x6d\x42\x19\x90\x10\xb7\x3e\x19\x3a\xb7\x2a\x58\xbd\xd2\x48\xa7\xf4\x11\x1c\xa5\x0c\x1d\xe6\x46\xbf\xea\x7b\x4d\x5b\xaf\x0f\x93\xdd\x97\x3e\xe9\x36\x49\xe2\x1e\xc0\xc6\xc4\xfc\xca\x8c\xd6\xff\x69\xdf\x76\x16\x12\x02\x1d\x85\xff\x1f\xb2\xa9\x53\x37\xda\x48\x05\xa7\x6d\x34\x7e\xe7\x1e\xf1\x9c\x0d\xff\xb5\x9f\x15\xf6\x50\x29\x3a\xbb\x97\x21\x05\x3f\x74\x06\x90\x5a\xe6\x83\xf9\x6c\x83\xa3\xa7\x44\x7b\x1a\xfb\x14\xe1\x20\x8c\x63\x9f\x37\xa9\x75\x0b\xa2\x1d\xa5\x55\x2c\xc2\x04\xea\xc4\x53\xca\x03\x62\x82\xf7\xe0\x96\x10\x93\xc3\x9e\xc1\x18\x13\x8d\xcf\x71\xcf\x2d\x28\xfb\x96\xa2\x49\x62\xb5\x2d\x33\x93\xf8\x80\x65\x3b\xcb\xa2\xc9\xb9\xd5\x7b\x77\xc5\x22\xf4\x21\xfc\xf5\xad\x75\xfb\xa9\xcf\x33\x89\xb1\x23\xaa\x97\x52\x17\x13\xff\xf8\x84\x67\xde\xb8\xc8\x99\x1d\x4b\x57\xc1\x43\x81\x70\x53\x7c\xb5\x0c\xdc\xc6\x57\xe5\x0e\x5c\x48\x0e\x12\xc0\xd4\x49\x39\xb6\x39\x99\x44\xe7\xc7\x1e\x18\x6c\x2a\xbb\x81\xfc\x57\x34\x88\x36\xd5\xe5\x7b\x72\xb2\x24\xa6\xb7\x1b\x6c\xaf\x72\x1a\xca\x73\x47\x8c\xb6\xcf\x5f\xb8\x90\x71\xae\x3a\x39\x82\x02\xdb\xb3\x8c\x30\x81\x25\x63\xbb\x9a\x23\x40\x66\x57\xa9\x56\xd3\x05\xa3\x44\x9a\x60\xcc\x86\x41\xb6\x21\x75\xa7\x17\x0c\x23\xbd\x5a\x25\xf0\xf1\x2e\x15\xa7\xed\x91\xfa\xda\x6a\x4a\x2f\x0e\x7b\x15\x5a\x3d\x64\x85\xec\x03\xce\x6e\x34\xdf\x7e\x21\x62\x40\xbb\x28\xa2\xdd\x73\x2f\xf7\x90\xd2\x28\x6e\x20\x0b\x33\xc2\x9a\x31\xa5\xe1\x9a\xd2\xcd\x02\x97\x4b\xad\xc4\xbc\x22\xde\xb7\x50\x4c\x15\x24\x1f\xc1\x06\x0c\x8a\xce\xf4\xfb\xb2\x5e\xc7\x60\x2f\xce\x36\xa2\x7b\xb8\x7b\x6e\x64\x23\xe6\xb4\xf6\xe3\x6f\xc7\x6d\x12\x5d\xe6\xbe\x7a\xef\x5a"}, {{0xef,0x38,0xc3,0xfc,0x74,0xf0,0x54,0xae,0x43,0xe8,0xd2,0x9d,0x6b,0xa6,0xdc,0x80,0xb5,0xaf,0x84,0x82,0x70,0xd4,0xaf,0x58,0x84,0x4d,0x24,0xbc,0xf9,0x87,0x41,0x4e,},{0x0a,0xe1,0x47,0x8b,0x05,0xfb,0x32,0x99,0x65,0xea,0x0f,0xa9,0x28,0xdc,0xbe,0x81,0xa0,0xbd,0xbb,0x6f,0xf6,0x6c,0x81,0x16,0x71,0x63,0x5e,0x43,0x88,0x88,0x80,0x51,},{0x1d,0x3a,0xc6,0xb6,0xbf,0x18,0xab,0x53,0x09,0x14,0x87,0x99,0x48,0x5b,0x27,0x6d,0x20,0x40,0x1c,0x6a,0xf5,0xf9,0xb2,0xf6,0x03,0x23,0x95,0xa3,0xc2,0xf4,0xb6,0x73,0xb7,0x14,0x0c,0x07,0xcc,0x26,0xf4,0xfc,0x56,0xa5,0xee,0x00,0xb0,0x74,0x6b,0x2a,0x80,0xda,0x6f,0xda,0xd1,0x7e,0xdd,0x11,0x49,0x20,0x10,0x1d,0x2c,0x89,0xc3,0x0e,},"\xbf\x29\x0d\xb3\xdd\xa8\x76\x39\x37\xae\x4c\x83\x74\x67\x05\x32\x72\x95\xc2\xc2\x48\x06\x8f\x5a\xb8\x5c\x8b\x5d\x75\x6f\x4e\x3e\x34\x06\x2b\x55\x49\x38\x72\x61\x47\x6b\xcb\xd1\xe7\x33\x19\x90\xf1\x19\x10\xd1\x1f\x94\x60\x7c\x2b\x71\xf6\x5b\x77\x1a\xac\xab\xdc\x10\xf4\x2a\xe9\x18\xdd\x25\x94\xac\x71\x05\x1c\x85\xb3\x30\x77\x9c\x47\xaf\x00\xa5\xb9\x81\x91\xb5\x6c\xbc\xf7\xef\xe4\x1a\x27\xe8\x7c\x67\x71\x68\xc8\xab\xe9\x49\x6e\xb2\xe7\xab\xbd\x0b\x16\x04\x28\x6e\xd1\xa1\xb1\x8d\x26\x4d\x73\x3d\xe8\x7d\x0d\x3f\x80\x55\x52\x8c\x4d\x42\x6d\x7f\x8e\x6e\xd0\x24\xa7\x41\x40\xab\xd3\x54\x00\x79\x62\xa2\xa9\x7a\x5c\x2f\xf9\x76\x54\x6a\x8d\x1a\xc4\x92\x4c\x09\x22\x3d\x34\x8d\xdc\xd8\x71\x0a\x37\x99\xf9\x1b\xb8\x70\xb3\xf4\x6d\x51\xf1\xe7\xf6\x89\x2d\x6b\x08\xb9\x91\x74\x8a\x03\x7a\x86\x7e\xcc\x39\xee\x8d\x64\x62\xa7\x61\x44\x88\xed\xd3\xc2\xba\x61\x5c\xa2\xe3\x78\x54\x88\x94\x41\xb1\x3d\xc8\x35\xc3\x6b\x38\x65\x3f\x65\x98\x61\x6f\x35\x78\x3e\x2e\x15\x83\x84\xbb\x93\x1c\x90\x1b\x70\x3a\xcb\x39\x91\xfb\x7a\xa5\xba\x69\xd9\xa5\xbd\x05\x70\x24\x29\x61\xa7\x1a\x52\x47\x03\x15\xe9\x82\xe3\x41\xa6\x1c\x64\xa6\x19\xbd\x16\xfe\x81\x19\xaa\xe0\xd7\x50\x3c\xe7\xd7\xe9\x26\x14\x6b\x91\xc2\x89\x2f\x13\x16\x69\xd1\xe3\x9e\x5b\x75\xe9\xc7\x24\x52\x61\x80\x99\xa5\x7d\xc2\xee\x37\x7b\xe6\x58\x75\xee\x01\xbb\x88\xed\x52\x6f\xc3\x94\xe2\xf5\xc8\x12\x7a\x5f\x69\x12\x5e\x67\x38\x5e\xf9\x4b\x1f\x33\xad\x52\x62\x9d\x72\x0e\x31\xc0\x2a\xe0\xb5\x82\x33\x9f\xf0\xf0\xbb\x07\xff\x2b\x03\x0f\x48\xfa\x7b\x69\x27\x16\x50\x1a\xd7\x77\x3a\xd3\x15\x12\x04\xa2\xa5\x40\xfa\x94\x36\xbd\xd4\x20\x2a\x15\x73\x09\xec\x36\xce\xcb\xe5\x8b\x33\xef\xf5\x57\xfd\x33\xe0\x3f\xd3\xeb\x19\x00\x9b\xd7\xa2\xde\xa9\xef\xee\xf8\x78\x55\x67\xaa\xb2\xa4\xc9\x8b\xd1\xf2\xa8\x10\x11\xb3\x43\xa9\xf2\x0c\x44\xc5\x77\xa4\x52\xfd\x54\xba\x21\x02\x9d\x47\x06\x81\x3b\x29\x87\xc7\x6b\xb2\x42\xab\x26\x20\x84\x3c\x22\x60\xb6\x69\xad\x35\x8e\xfe\xe7\xf9\x83\x0d\xc9\xc7\xd4\x78\xa2\xde\x4a\x2c\xf8\xc4\x3d\xa7\x70\xe2\x88\xe2\xed\xbb\x6d\x73\xbc\xf2\xec\xb0\x23\xde\x6b\x2d\xcc\x6b\x16\x6e\x87\xa3\x85\xeb\x0a\xdc\x30\x56\x65\xc5\xbf\xa5\x7f\x25\x0f\xe2\x23\xad\x7f\xf4\x51\x8d\xe3\x9c\x79\xe8\x7d\xc1\x01\xa9\xfa\xa6\x82\x1a\x74\x44\x2b\xfc\xfd\xf0\xa9\xe6\x3a\x50\x9e\x2a\x2e\x76"}, {{0x7e,0x7b,0x39,0xaf,0x69,0x38,0x0c,0xf4,0x46,0x60,0xe2,0xc1,0xff,0x30,0x83,0x34,0xe8,0x25,0x0f,0xee,0xb8,0x8b,0xe0,0xd4,0x3a,0xab,0xe5,0xe6,0x8b,0x8e,0xf1,0x71,},{0xcc,0xef,0x9d,0xae,0xd9,0x25,0x23,0x53,0x3d,0x4a,0x2d,0xab,0x6d,0x24,0x19,0xf6,0xd0,0x86,0x04,0xdb,0x64,0xce,0x37,0xe3,0x29,0x04,0xac,0x77,0xb9,0xb4,0xa0,0x1c,},{0x10,0x62,0xa2,0xdc,0x9c,0xd5,0x37,0x96,0x75,0xc0,0x4f,0x5e,0x21,0x33,0x8d,0xcf,0xb7,0x7d,0xfb,0xab,0xce,0xdd,0x62,0xb2,0x60,0x71,0x00,0xd7,0x64,0x9a,0x05,0xe8,0x08,0x71,0xe9,0x61,0x23,0x21,0x4f,0x80,0xf4,0xf7,0x3b,0x0d,0x9b,0x06,0xe2,0xd3,0x1f,0x56,0x11,0x9c,0xea,0x69,0xda,0x23,0x47,0xda,0x84,0xa2,0x75,0xb7,0xb2,0x07,},"\xd4\xa3\x97\x6d\xbf\x83\x20\x18\x56\x67\xb5\xa8\x23\x66\x40\xf2\xeb\xc9\xe4\x5e\x6d\x5f\x2a\x8d\x92\x99\x79\x27\xdd\x9b\xc5\xdb\x95\xf4\x46\x34\xbd\x65\x4e\xef\xec\xe1\x0d\x99\xd9\x2b\x46\x71\x57\x91\x64\x50\x04\xac\xcc\x6d\x14\x0f\x32\xa1\xc8\x72\xe5\x4a\xa9\xa7\x49\x3a\xf9\x45\x88\xb7\xbb\x40\x0d\x94\xd4\x58\xd4\x32\x92\x30\x7c\x5a\x1a\x38\x82\xa1\xc8\xa6\xa7\x8d\x9a\x94\x5f\x79\xd6\x4b\x32\x94\xa2\x8c\x3d\x59\xd8\x20\x22\xb0\x09\xcc\x4d\x2d\xa9\x3a\x16\xb0\x71\xc9\xab\x8e\xe9\xa3\x66\x3d\x72\xed\x34\x4f\x15\x1d\x68\xc6\x66\xa4\xb4\x96\x52\xd9\x7a\x46\xd1\x42\xa4\x74\x11\x27\xf3\xc5\x7f\x15\x51\xc4\x09\x76\xcd\x13\x81\xa8\x2a\xea\xe7\xbc\x5a\xdb\x39\x87\x20\xeb\x43\x3f\x08\x99\x48\x7e\xd2\x37\x84\x46\xb1\xa8\xdc\x6a\x33\xfc\xd4\x53\x7a\x05\xfb\x60\x3e\xc0\xa9\x0a\x27\x53\x23\x00\x24\x2b\x20\x00\x10\x86\x21\xb6\x5a\xb0\x00\xbc\x06\x38\x15\x30\xf6\x90\xd7\xe5\x6f\x81\x60\x4d\xac\xff\x19\x10\x71\x50\x40\x41\x0a\xa1\xf9\x44\xc9\x2d\xd9\xbb\xaa\x5b\xd0\x8e\xa0\x0c\x84\x42\xdf\x94\xf0\x85\xeb\x3d\xe9\x73\x35\xb6\x00\x5e\x6f\x84\xf8\x23\xd4\x34\x70\xab\x1c\x67\xda\x12\xad\x44\x99\x36\xc6\xb5\x5f\x9f\xfd\x20\x3d\xfd\x6e\x3f\x33\x30\x9e\x8a\x99\x45\xa5\x93\x20\xe6\x67\x34\xc7\x9c\x48\x14\xdb\xa5\xa1\xc1\x40\x95\xc6\x29\x25\xa1\xe1\x73\x3e\xfd\x94\x81\x7a\x25\xef\x9e\x47\x9d\xd9\xcc\xde\x6c\xa8\xad\xb7\xa8\x05\x3c\x1b\x55\x13\x46\x97\x50\x4a\xf8\x05\x3d\x59\x5b\x84\x46\x40\xb6\x1e\x93\x16\x80\x75\x46\x84\x50\xeb\x5d\xe0\x35\x86\x97\xc1\x04\xaf\xa6\xa3\x79\x6a\x50\x9c\x26\xb4\xc2\x77\xc2\x3f\xff\x42\xdf\x14\x6d\xe5\x5e\x95\xd0\xd4\xb8\x0a\x7a\xa1\x77\xd9\x92\x27\xec\xb2\xa0\x59\x4d\xee\xde\xbb\x9c\xaf\xb1\xa4\x58\xac\xa8\x07\x2c\xc7\xd7\x7c\x71\x75\xf6\x10\xca\x30\x0e\xfd\x7a\xf9\x38\x83\x46\x49\x8c\x22\x99\x15\x64\x50\x0e\x0b\x0a\xa4\xd2\x94\x6f\x18\xe6\xf5\x37\x5a\x84\x82\x86\xf3\x69\x54\xc1\xca\x22\x68\x4c\x69\x28\xc2\xa2\x5c\x7f\xe2\x1a\xba\x4a\x71\x11\xd7\xe0\x5b\xc8\xd7\x0b\x3d\xcb\x4f\x6a\xae\xc0\x64\x84\x5e\xef\x55\x25\xf8\x50\x24\xc2\x57\x0f\x3b\x78\x69\x8c\x4b\xce\xc0\xd7\x1a\xad\x53\x78\xd8\x81\x9e\x1f\xac\x44\xee\x41\x63\x70\x21\x2d\xba\xaa\xe5\x4d\x2a\xf2\x93\x9b\x82\xcb\xaa\xe7\xf4\x2f\xf4\x85\xd4\x5b\x3a\xcc\x21\x09\x0f\x5b\xa4\x1e\xc0\xda\x30\x9e\x52\xef\x28\x38\xd1\xde\x47\x1e\x0b\x7c\xf9\x85"}, {{0xa9,0x04,0x8a,0xf0,0xc2,0x0a,0x12,0x5f,0x5d,0x39,0xc5,0x0f,0x22,0xb8,0x05,0xae,0x74,0x2c,0xf6,0x4f,0x1f,0xe8,0xdf,0xbe,0x8d,0xfd,0xaa,0x51,0x1a,0xaa,0x57,0x6f,},{0x15,0x86,0x55,0xdb,0x94,0xb1,0x5c,0xa7,0x29,0x83,0x87,0x7b,0x6d,0xb2,0x31,0xa5,0x84,0x3d,0xf5,0xdb,0xca,0x28,0x10,0xa7,0xe4,0x96,0xfb,0x59,0xab,0x71,0x04,0xca,},{0x18,0xa3,0x12,0xb2,0x0d,0x86,0xac,0x33,0x9a,0x58,0xef,0x2b,0x85,0x2d,0x46,0x7c,0x23,0xbb,0x2c,0xb1,0x22,0x7c,0xb1,0x53,0x38,0xaf,0x07,0xfd,0x04,0xb9,0xa7,0x11,0xe8,0x56,0xee,0x5b,0x2c,0x82,0xe3,0x66,0xc1,0x7f,0x86,0x17,0x13,0xd1,0x08,0x8c,0x1b,0x21,0x44,0xd1,0xc3,0x7d,0x05,0xbd,0xc0,0x0d,0x73,0x96,0x73,0x85,0x20,0x00,},"\x8e\xef\x2d\x9f\x5d\x59\x70\x99\x59\xc9\x24\xf8\x7c\x22\x78\x97\x67\x39\x3a\x15\x5d\x5c\x87\xde\x48\x8c\xef\x50\xb7\xbf\x7d\xa8\x70\xe3\xad\xc3\x00\xae\xe6\x60\x3b\x2e\xf0\x87\x64\xd9\x9d\x9e\x77\x51\xe5\xdc\xe9\x2a\xaa\x71\xaa\x18\xa6\x9c\xc8\x23\x13\x4e\x85\x52\xd9\x59\xa0\xdb\xb4\x11\x17\xe0\xa5\x93\xc3\x18\x33\xb6\xec\x21\x72\xdd\xaf\xaf\x78\x48\xdd\xd1\x8d\x28\xd0\xd4\xed\x33\x23\x7e\xc8\x04\xf6\x59\x38\xae\xd8\xe8\xa3\x28\x0d\x42\xe3\x53\xd0\x1b\xe0\x18\x7b\x13\x01\xf8\x3d\x89\x84\x90\x67\xb0\x4a\x90\x31\xf7\xe0\xf3\x3e\x34\x16\x24\x0c\x53\xd9\x26\x5e\xd0\x66\x39\x59\x97\x1f\x41\x7c\xb5\xf2\x10\xcd\xc5\xae\xbc\xb5\xe1\xdb\x7d\xfb\x82\xdf\x43\x58\x76\xa6\xe9\x8f\x41\x5b\x0d\xf8\x69\xf0\xd8\x85\x15\x35\x37\x56\x45\xee\xf7\x0f\xae\xc7\x44\xee\x0d\xc3\xac\xbc\xb0\x40\xf6\x8d\x50\x2c\x2c\x62\xc8\xdb\x45\xeb\xe5\x48\x54\xa4\xb3\x6f\x43\xfe\xb4\x9a\x6d\x1c\x2c\x2e\xa7\x99\x14\xa7\xc2\x3c\x60\xba\xaa\x67\xcb\x47\xb2\x17\x8e\x12\xdc\xe7\x6b\x00\x4c\x87\xb7\xb8\x34\x6e\xfa\xdf\x38\x0b\x9e\x1e\x41\xf6\x31\x48\xda\x51\x78\x1d\x75\xce\xc0\x40\xe4\x26\x88\x20\x21\x1f\x3c\x46\x25\x01\xd8\x08\x99\x89\x4e\x79\xd6\x18\xde\x42\x46\x1d\x78\x5a\xea\xce\x53\xae\x14\xb7\x9d\x33\x50\x1e\xd5\x62\x9b\xbd\xd0\x71\x28\x15\x6d\xb0\x72\x5f\x5b\x4b\xed\x59\x3a\x95\x29\x47\x83\x03\x84\xf6\x1d\xf0\x0e\xe0\xaa\x09\x90\x99\xc3\xcd\x97\x65\xa9\xc1\xc7\xe8\xa6\xa8\x34\x30\xb8\xd9\x86\x7c\x8e\x17\x92\x0a\xd0\xff\x64\xd8\xcd\x2f\xf5\xf1\x14\x38\x8c\xe6\xd4\x3e\xec\x17\x15\xd0\x35\xf0\x22\xfa\x97\x96\x9e\x1a\x5d\xd9\xf5\x8d\x89\x6b\x17\xc1\x22\x1c\x9e\x6c\x85\x55\x59\x72\x35\xee\xda\x6e\xc4\x1b\x0c\x11\x76\x12\xb0\x0c\x5f\x0e\xd1\x81\x6b\x05\x73\x63\x58\x27\x07\xa8\xaa\x0d\x98\xd4\xd4\xbe\x5e\x8f\xa3\x2d\x6c\x9d\x27\x82\x21\xef\x30\x67\xb8\xba\x15\x16\xd9\xe0\x51\xd2\xf6\x8b\x7d\x1b\x15\x1f\x74\xa3\x53\x4e\x78\x12\xc0\x51\xe5\xf2\xb6\x3b\x30\x35\xf8\xe5\x70\x3b\x5f\x68\xfd\x2d\x65\xbb\x75\x65\xe8\xaa\x67\xbf\xd2\xa1\x2c\xaf\x0b\xc5\x48\x11\x97\xa9\xff\x89\xd7\x7d\xf7\xa0\xe9\x65\x5e\xf0\x29\xb4\x3d\xd9\x06\xd0\xb8\x88\xe3\x13\xae\x9d\x1c\x7e\x93\x68\xa0\x13\x52\xd0\x0c\x66\x80\xdd\x0f\x1f\x57\x4a\x58\x77\x34\x8a\x7e\xa2\xc0\xb9\xe8\xe2\x72\x75\x10\xbf\x0c\x9e\xf7\x44\xf3\x69\xeb\x3c\x6c\x4f\xc1\x6a\xde\xb6\xe1\x94\x5b\xe8\x28\x7d\x0f\x30"}, {{0xf8,0xc9,0x18,0x3f,0x23,0x10,0x5f,0xad,0x0c,0x6e,0x51,0x03,0x35,0x8b,0x58,0x32,0x88,0xf9,0xff,0x6c,0x7d,0xfc,0x91,0x10,0x6d,0x07,0x98,0x7f,0xf6,0x9c,0xe1,0xeb,},{0x4c,0x79,0x62,0x8c,0x95,0x8c,0xde,0x0c,0xc3,0xcf,0x68,0x60,0x95,0xb8,0xa2,0xf4,0x4b,0x71,0x93,0xc6,0x16,0xf5,0x1b,0x21,0xb6,0x70,0xb0,0x38,0xce,0x6f,0x67,0xff,},{0xc6,0xa8,0xbc,0x7a,0x0d,0x5c,0x61,0x85,0xb6,0xec,0xd6,0x03,0x3e,0x42,0x32,0x1d,0x5c,0x87,0x1b,0xf8,0x89,0xbe,0x72,0xbd,0x54,0xcc,0x00,0x83,0xed,0x60,0xa4,0x70,0xb2,0xcc,0x0f,0xb4,0x68,0x2c,0x89,0x4c,0x75,0xb0,0xdf,0x95,0xf1,0xec,0xfb,0xba,0x2d,0x5a,0xce,0xf3,0xe1,0xaa,0xfe,0x54,0xb9,0xf7,0xe8,0x03,0xa1,0xd0,0x15,0x0a,},"\xb1\xd6\x05\x95\x32\x3f\xf3\xc8\x44\x87\x41\x90\xe1\x83\x6e\x41\x01\x40\x9c\xbc\xea\xe2\x8d\x5d\xa8\x1f\xad\x29\x8f\xe4\x7f\x6b\xdf\x44\x74\x5b\x7c\xd0\xd3\x71\x31\xc3\xec\x36\x5b\x92\xf5\xa1\xa6\x9c\x09\xfe\x2d\x9e\x81\xda\x10\xcf\x19\xd8\x5f\xf5\xff\x26\xf9\xe7\xdb\x9f\x07\x93\xb2\x5a\xb2\x6e\x6a\x74\xf4\x4e\xb8\xc4\xf0\x78\xeb\x7a\xd1\x8e\x65\xa1\x62\x10\xd5\xc8\x44\xd3\xce\xf7\x5f\x1d\xaf\x44\xee\xe5\x58\xf9\x0e\x52\x4a\x03\x2b\x6c\xae\x6c\x8d\x23\x36\x7c\x28\xce\x1c\x75\xfc\x25\xac\x87\x43\x39\x77\xd5\x97\x53\x3c\x92\xae\x65\xf2\x91\x3a\x18\x90\x7a\xc7\xd9\x54\x3d\xf2\x41\x27\x74\x39\x43\xfe\xfd\x9c\xf8\x3e\xd8\x33\xf6\x3e\xc8\x36\x72\x33\xd8\x97\xbf\xa1\x2d\x46\x6d\x2c\x4a\x9a\xd7\x0d\x5a\x67\x2f\xc1\x07\x75\xea\x2d\x20\x4e\x63\x6d\xe7\x01\x07\x88\xda\x27\x1d\xf0\x38\x81\xa2\x5c\x8d\xfa\x5a\xf7\x3e\xe5\x59\xf8\x1b\x52\x9b\x35\xaa\x12\x7f\xdc\x0e\xe8\xfd\x36\x9c\x7a\x04\x36\x62\x39\x86\xaa\x64\x07\xfa\x67\xa1\x42\x0c\x46\xf3\x21\x1a\xb8\x4f\x84\x46\x6d\xd5\x8b\xb7\x95\x08\xa1\xfe\xb0\xa5\xa5\xdc\x3b\xb0\xc1\xb2\x48\x09\x82\x62\xa0\x64\xf3\x7b\xb2\xf0\x19\xe2\x90\xc6\x0a\xfa\xa1\x20\x66\x51\xa2\x69\x7c\xaa\xcc\x3e\xcc\x02\xec\xfc\x07\x7f\x27\x2e\x8f\x75\xce\xa7\x1c\x3b\xc3\x35\x6d\x2b\x58\x07\x27\x6f\x19\x55\x00\x1c\xfe\x10\xa6\x17\x16\xb4\x08\x2b\xd6\xf8\x4c\xae\x4b\xb0\xd9\xa4\xb7\x5a\x4b\x57\x62\xf8\x10\x79\xf1\x9d\x7d\x19\xea\xff\x86\x31\xc9\x24\x88\x5b\xd3\xa6\x4e\x12\x9f\x4c\xf6\xb7\x9c\x7a\x98\x29\x66\x55\x11\xe9\xd8\x5c\x74\x5e\xb2\x2c\x1b\x7c\xb2\xa1\x7a\x49\xb6\x28\x5c\xce\x37\xb3\xde\x41\x59\x40\x32\x83\x23\xef\xe2\x4a\x1a\x07\xee\x87\x46\x8f\x65\x10\xe4\x2d\xd2\x06\xfe\x7f\x09\xe3\xd4\x33\xfb\x52\x15\x6a\xe3\x48\x38\x31\x15\x64\x88\x63\xe4\x5b\xf6\xa3\x71\xb1\x7e\x70\xe1\x9f\x96\x27\xd7\xf0\xa5\x8b\x95\xc6\xa4\x78\x8d\x5f\xd7\x86\x2f\x16\x12\xc0\x34\x73\x25\xb7\x97\x65\x1b\xe3\x0c\x3e\x1e\x60\xea\x4a\xe6\x0b\x57\x45\xa3\x8b\x6a\x9d\x4e\xb4\x93\x5d\x6f\x3c\xb8\xd7\x1a\xd3\xf3\x9a\xdd\xa5\xe4\x2e\x22\x19\xde\x0d\x38\x19\x09\xc9\xcd\x31\x7d\xd4\x37\x94\x21\xa2\xa8\x42\x68\xa7\xea\x71\x80\xa6\x4c\x12\x9b\xe1\xe5\xe8\xfc\xbb\xf5\xed\x65\x9e\x9f\x7e\x76\x3c\xe8\x4f\x63\x0d\x54\x07\x95\x4f\x9f\x75\x57\x50\xa6\xdb\xf9\xf7\x66\x07\x17\xde\x8e\x2a\xdc\x1e\x9a\xc9\xee\x31\x65\x4d\x18\x37\xce\xe3\x97\x95"}, {{0x16,0x08,0x9a,0x1b,0x93,0x2f,0x8d,0x14,0x99,0x56,0x88,0xb4,0x8d,0xd8,0x41,0xed,0xae,0x3d,0xa5,0xcf,0xd2,0xcb,0x16,0x55,0x53,0x06,0xf3,0xfe,0x8b,0xd3,0xed,0xb9,},{0x9e,0xcd,0x9f,0xdd,0x7e,0x0b,0x92,0x3d,0xef,0xf5,0xd8,0x87,0xb2,0x42,0x58,0x5d,0x9d,0x41,0xcd,0x2c,0x7c,0x10,0xf9,0xc3,0x45,0xb3,0x9f,0x63,0x3f,0x4a,0xb9,0x03,},{0x78,0x78,0xab,0x74,0x1e,0xba,0xe2,0x74,0x7c,0x78,0x97,0xcb,0xb1,0xd1,0x05,0x48,0x2f,0x37,0xbe,0x2f,0x5f,0x91,0x79,0x52,0x32,0xcd,0xfb,0xcc,0xc5,0x26,0x60,0x89,0x18,0xe2,0x75,0x6d,0xdb,0x75,0x36,0xb3,0x68,0x0c,0x16,0x2c,0xf8,0xa1,0xef,0x38,0xa3,0x41,0xb9,0x36,0x2b,0xfe,0x5d,0x46,0x8b,0x4b,0xce,0x21,0xdf,0x23,0x4f,0x0f,},"\x58\x50\x02\x32\x38\x8d\x9a\xa4\xb5\xfa\xf8\x5b\x02\x33\x24\x7e\x71\x7f\xd1\x68\x40\xde\x9b\xfd\x0e\xf8\x6e\x01\xe6\x13\x02\x77\x55\x13\xe2\x24\x12\x5e\x0d\x20\x42\x0e\xa9\x49\xf6\xc2\x64\x25\xf7\x00\x77\x91\x1f\x97\x11\x31\x0c\xd6\xfd\x8b\xff\x27\xcd\xea\x11\x48\x0c\x73\xe8\xf8\xb3\xc3\x76\x41\xe7\xe8\xdd\x86\x07\xc1\x64\x02\x18\xfe\xc8\x0a\x02\x09\x28\xb9\x3d\x4d\x55\x7e\xbe\x82\xec\x0b\xb1\x75\x38\x86\x7d\x2c\xb1\x4d\x44\xd3\xea\x72\x7f\xdd\x52\x82\x0b\x0d\xa9\x44\xde\x21\xcd\x5d\xa3\x03\xd7\x76\xfe\x99\xcb\xc2\x64\x83\x65\xe6\xa0\xa9\x8d\x4d\xb1\x50\x84\x26\x61\x76\x8b\xe8\x4c\x68\x50\x7a\x5c\x45\xd2\x07\x84\x0b\x03\x35\x37\x78\x6c\xb2\x1d\xad\xad\x5f\xba\xb9\xc5\xcf\xc1\xe3\x54\x7d\xe5\x50\xd3\x13\x63\x1d\xd4\xfb\xb7\xca\x8f\x71\x93\x86\x27\x60\x8d\x2e\xbf\x65\x5d\xb4\x32\x5a\xbf\x3e\xd5\x04\xdc\x18\x30\x58\xf9\xde\x1e\x44\x93\x12\xd9\x04\xc8\x46\xa1\x84\xa0\x28\xf3\x64\xc0\x28\xb2\x7e\xb4\x94\x64\x27\xe3\x1c\x21\xe1\x05\x1d\xf3\x64\xd4\x99\xf4\x77\xbf\x51\xe7\xa8\x89\x31\x83\xe5\xec\xf7\x7d\x51\x3a\x1a\x76\xb1\xa6\xfd\xfb\x16\xbe\x90\xd7\x4b\xe4\xc4\x34\x5a\x4f\x9f\x87\xee\x44\x1a\x10\x22\xd6\x7e\xe8\x44\x78\x9f\x21\xb0\xc3\x1a\xdc\xc0\xd9\x56\x63\xcd\xfb\x40\xa8\x95\xb9\x22\xdc\xe8\x06\x9b\x93\x2c\x80\x2f\xd3\xab\x1e\xf0\xce\x6b\xff\xdc\xc5\x65\x3b\x1c\xd5\x25\x7e\x19\xa0\x95\x16\x87\xe5\x45\xfa\xf4\xaa\x66\x06\x5a\x55\xc4\xb4\x19\x1e\x34\xe8\x04\x7d\x6a\x4a\xb5\x2d\x1b\x06\xc3\x69\xa4\x26\xca\x2d\x16\xb5\x1a\x02\x71\xf2\x7f\x8d\x74\x4c\x71\x1f\xce\x3a\xad\x9d\x4a\xc0\x38\xee\x70\x0e\x4e\x97\x1b\x21\xca\x48\x9f\xf2\xb8\xc7\x78\xa3\x72\x1a\xdf\x47\xc1\xae\x5a\x41\xb9\xa2\x7f\xa7\x42\xfd\x0f\x18\x16\x4e\xf3\xc2\x6b\x8a\xe7\xd1\xfa\x29\xb7\xc0\xcc\x46\x83\xbe\x65\x02\x5c\x96\x53\x7a\x12\xd5\xfc\xeb\xbd\x05\xe9\x30\xc3\x69\x3e\xbb\xba\x0a\x78\xad\xf5\x9d\x8a\x3b\x59\x8a\x34\x8e\xaa\x9f\x47\xca\xf5\x31\xfe\x44\x96\x52\xdb\x5b\x20\xd6\x89\x94\xe3\x5a\xfe\xc2\xc2\x57\x09\x05\x5a\x1d\xe2\x60\x82\xe3\x91\x2d\x49\x7c\x64\x77\x20\xa3\xf8\x73\x62\x14\x56\xe6\xa5\xb9\xeb\x61\x3a\xcb\x43\xb6\x6d\x47\xd0\xb9\x54\xc6\x9e\x8f\xbf\x2c\x5e\x63\x4c\x48\x6e\x57\x24\x93\x0e\x0b\x56\xa5\x16\x94\x0c\x8c\xb0\xe7\x75\x27\x4d\xef\xf9\x7c\xbb\x77\x59\xce\x90\xa2\xb9\x3e\x9e\xfa\xa6\x24\xe6\xb3\x8a\x39\x84\x9d\xca\x1d\xf6\x12\x73\x6f"}, {{0x94,0xd5,0x09,0x15,0x14,0x4c,0x7e,0x7d,0xd0,0xf8,0x5f,0xef,0x87,0xed,0xdc,0x22,0x06,0xc1,0x56,0x9e,0xd1,0x43,0x1c,0x8c,0x5a,0x15,0x3e,0x32,0xe1,0xcb,0x2f,0xb7,},{0x3b,0xb0,0x98,0xcf,0x16,0x0f,0x3a,0xec,0x31,0x70,0xb5,0x7d,0x6a,0xdd,0x4f,0x56,0x73,0x92,0x70,0xe4,0xb3,0xa8,0xef,0x79,0x66,0xec,0x30,0x61,0x9b,0x29,0x91,0x02,},{0x59,0xa1,0xce,0x55,0xf5,0xa6,0xba,0xdc,0x1b,0x93,0x91,0x26,0x36,0x20,0x54,0x2c,0xfc,0xae,0x87,0xa0,0xf2,0xb9,0x50,0x22,0x50,0xcf,0xe4,0xbd,0xcb,0xf7,0x6c,0x46,0x19,0x77,0xc3,0x34,0xa4,0x8d,0x91,0x6e,0xde,0xbd,0x56,0xc2,0x1c,0xe2,0x17,0xc3,0x5a,0x64,0x44,0xcf,0xbf,0xd3,0xb1,0x1a,0x3d,0x48,0xfa,0x2e,0xdb,0x6e,0xb4,0x0f,},"\x4d\x91\x5f\x27\x33\x2d\xd7\x50\x51\x71\x9a\x24\xae\x8d\x0e\x9c\x30\xda\x79\x09\x99\xe2\x2d\x9b\x58\x7e\xf2\x03\x21\xbe\xe4\xc0\x7d\x0a\x12\x49\x4f\xfe\x59\x9f\x47\xf9\x69\x25\xf5\xd9\x25\x17\xfc\x3e\x5f\x04\x1d\x0c\x70\x9f\x2a\x97\x83\x12\x5e\xec\xa6\x65\x29\x97\x20\x1c\x42\x9a\xa6\xf1\xce\x2f\x07\xa0\xd4\xa0\xa1\x8c\xf2\x0b\x3e\x9a\x4f\x76\x63\xea\x52\x62\xca\xd8\xf9\x49\x41\x1b\x05\xff\x5c\x5e\xdd\x7b\x30\xb2\x17\xd7\x5d\x8c\x86\xc9\x4e\x5f\x92\xc1\x67\x34\x37\x4e\x8c\xea\xd6\x1b\x0b\x27\xbb\x4b\xf5\xf4\x3a\x31\x3c\x1d\xd5\xb8\x3e\x0e\xa9\x33\xb6\xca\xdf\xed\xd7\xa6\x4a\xa5\xdd\x5b\x5d\x02\xc6\x95\xea\x20\xe0\x91\xfd\xaa\x72\xef\x4e\x7c\xa4\x0f\x38\x39\x5b\xe8\xbf\x7a\x25\x5c\x6d\x06\xa6\x32\xd7\xd7\x85\xd9\xe0\x47\xf2\x32\xaa\x50\xfa\x14\x52\x9f\x98\x6f\x9e\xf9\xd7\xb5\x80\xa0\x39\x65\xb0\x15\x47\x88\x82\x2a\x22\x5b\xb5\xab\x34\x38\xb8\x9a\x5c\x28\x74\x4a\xb0\xbc\x0b\x20\x14\xe5\x79\x6a\xcb\x49\x35\xa8\x1b\x02\xa0\x46\x32\xac\xb8\x8c\xaa\x7e\x39\xe0\x69\xc7\xc8\xe1\x75\x82\x91\x09\x4a\x53\xe3\x62\xfc\xed\xaa\xa5\x83\xec\xa7\x66\xef\xeb\xf6\x9b\x38\xe8\xcd\xe9\xce\x58\xe0\x12\xc6\x0e\xc8\x8e\x8c\x42\xbe\xad\xfa\x83\x8c\xfe\x44\x0f\xa0\xc0\x1d\x65\x9c\x96\x34\x57\x6d\x7d\x7a\x2d\x3a\x04\x4f\x99\xc6\xe4\x26\x3d\x4c\x0b\x37\x4a\x38\x8a\x2a\xcf\x38\xef\xf2\x9c\x77\x7e\x9d\xaa\x60\xd5\x98\x03\x5a\x7d\x9e\xdf\x67\xa5\x02\xc3\xf5\x73\x20\x7b\x11\x9c\xac\xac\x3f\xa7\x1e\x2a\x02\x07\xc6\x01\xcc\x0d\xd6\x37\xef\x56\x2b\xac\xc3\x5c\x57\x04\x27\x38\xf1\xf5\x58\x15\xa5\x26\x80\x82\xcd\x6a\x50\x82\x92\xfa\x29\xe3\x4e\x96\x45\xd8\x7a\x1a\x2b\x6e\x58\xad\xb7\xf4\xa5\x7f\xbb\x53\xe9\x21\x3e\xf3\xdc\x87\x3f\x29\x39\x62\x58\xa1\xea\x54\x6f\xb5\x95\x2c\xe3\x43\xce\xe9\xbb\xb9\x0c\x1c\xda\x72\xc6\x5a\x7c\x8e\x40\x31\x2b\x32\x8e\x23\x19\x20\xc2\x33\x07\x7d\xca\x34\xd0\x4f\x9d\x89\xda\xa9\xa2\xf4\x34\x59\x16\x5f\xd1\x02\xff\x56\x43\xc7\x17\x52\x30\xb3\x9e\xc7\xc3\xc4\x75\x65\x0e\xf1\x31\x60\x9d\x32\x20\xf5\xa2\x94\xa4\x03\xb1\xe1\xc4\x2c\xfa\x16\x2c\xd4\x26\xf0\xae\x43\xfd\x6b\x7a\xb5\x47\xa6\x2b\x7d\x5f\x84\x74\x03\xc4\xe5\x98\x79\x53\x87\x71\x58\xcf\xde\xe2\x3c\x04\xf7\x51\xc7\xc8\x6d\x07\x8e\x82\x4c\xa6\x3b\x5e\x65\x54\x3e\x97\x8b\x6b\x0c\xc6\x89\xef\x66\x44\x12\xb0\x1b\x8f\xf1\x65\xe7\xdb\xde\x3c\x09\x9b\xf4\xf3\x4e\xbd\xdc\xb4\xc4"}, {{0x0d,0x81,0x92,0x6f,0x51,0x3d,0xb4,0xb2,0x5d,0xfa,0x1e,0x52,0xb5,0xdc,0xa6,0x78,0xf8,0x28,0xa6,0x1c,0x7c,0x91,0x3c,0x82,0x82,0x47,0xc2,0xeb,0x04,0x22,0xb7,0xd1,},{0x0f,0x32,0x41,0x1e,0xf9,0x1d,0x4e,0x4b,0x69,0x41,0xdf,0xca,0xab,0x14,0x2e,0xf3,0xbe,0xc1,0x60,0x98,0x39,0x93,0xa5,0x26,0x2c,0xcf,0x27,0xfa,0xdd,0x2a,0xf8,0x90,},{0xe0,0xcb,0x6c,0x71,0xeb,0xf8,0xd7,0x05,0xe5,0x0c,0xad,0x9f,0x0b,0x8c,0xba,0x3e,0xcf,0x4b,0x9e,0x37,0x93,0x40,0x00,0x92,0xaa,0x5b,0x12,0x1e,0x7d,0xbb,0xc8,0xbe,0xa7,0x1d,0xf2,0x95,0x28,0xca,0x9b,0x47,0xab,0xf8,0x7c,0x19,0x8a,0x8d,0xc4,0xe1,0x4d,0x51,0x80,0xce,0x93,0x2d,0xd2,0x11,0x4a,0x3c,0xda,0xa5,0x55,0x2c,0xc2,0x05,},"\xa9\x38\x37\x52\x2f\x7e\xc2\xe9\x3a\x2e\x4b\x4c\x8b\x46\xde\x92\x6a\x81\xad\xa2\xd2\x48\xbc\xd3\x3b\x39\xb6\xc9\x5f\xb6\x2a\x61\xdb\xbe\xda\x1a\xa8\x5a\x21\xd9\xb9\x6a\x08\x51\x0d\x8d\x3a\x65\x8c\xf3\x20\xa1\x09\x28\x69\x59\x99\xd2\xc0\xd6\x05\xc7\xf9\x5a\x12\xf5\x6a\x87\x18\x50\x7d\xb0\xf4\x97\xe3\xea\xd6\x13\x13\x2a\xb0\x92\xcb\xf1\x9d\x22\x60\x35\x86\x30\x35\x8d\x9b\x26\xe6\x8d\x50\xdd\xae\x37\xc8\xaf\x0b\xb7\xd2\x74\x1f\xd2\x92\x9c\x21\x27\x9a\x78\xd1\x0e\x2c\x5f\x3c\x5b\xf4\xa4\x2a\x36\x17\x03\x6d\x54\x74\x36\x47\x76\x5a\xfd\x8c\xd9\x10\xf8\x1b\x38\xce\xd7\x23\x90\x63\x0e\xe6\x89\x44\xa3\x7d\x29\xc2\xfe\xca\xda\x1c\xc5\x9e\xc5\x44\x07\x5b\xdb\xc1\x4c\x63\xc6\x23\x4b\x88\x40\x49\x00\x0c\x27\xc7\x34\x06\x03\x56\x04\xfc\xa8\x76\x0b\x49\xa5\xe2\x10\x9e\xf9\x12\x85\xad\xc4\xec\x48\xc8\x19\xd6\x2d\x94\x8f\xac\xa9\x0f\x62\xcf\xae\xf0\xb0\x7d\x6f\xe5\x76\xd7\x62\xbf\xd0\xee\xf9\x4c\xf6\xb5\x33\x2c\x4d\x42\x25\x11\x60\x7f\x2f\xac\xc7\xac\x04\x6a\x59\xb9\x61\x7e\x83\x83\xd1\x02\x9c\xc9\x1a\xc5\x92\xb5\x20\x84\x41\x30\x32\xbe\x84\x1b\xaa\x9b\xf9\x62\x51\xa6\xbd\xa6\x71\xd4\xcd\x4b\x12\x5d\xa6\x58\xa4\xe5\xa5\x0f\x44\x28\xee\xbf\x26\x14\xfb\x0c\xe5\xfe\xbe\x80\xf7\x21\xa5\xf4\xc0\x32\x55\x06\xd2\x7a\x8d\x31\xe3\x3d\x86\x25\x38\x70\xdd\x63\xc0\x8e\xdc\x73\x02\xb2\x80\xe9\xb9\xbd\xc2\x8b\xee\xf0\x5c\x7d\xcb\x30\xd4\xc1\x62\xe9\xbe\x83\x2e\x1c\x78\x5e\x37\x55\x12\x18\x42\x1e\xec\x85\x2c\x42\x98\x21\x3b\x2f\x27\xf8\xf8\xc7\x06\xd3\x91\xb9\xc6\x9a\x56\xdb\x7c\xe5\xd8\x15\x48\xfc\xa5\xfe\xd4\x56\xf2\xd8\xaf\xd0\xb7\x5f\x79\xf8\x58\x68\x31\x6f\x4a\x09\x21\xf0\xc6\x63\x99\x26\x51\x6b\x3c\x3e\x52\xa9\xcb\x22\x55\x45\x46\xef\x70\xe1\x4c\x77\xec\xbd\xcd\x5c\x0d\x59\xa8\x17\x69\xb3\x0d\x5d\x13\x1f\x2f\xb4\x49\xc9\x96\xb8\xde\x8a\xc7\xf8\x08\x4f\x84\x99\xe1\xa5\x6f\x7c\xd2\x9d\xb6\xaa\xef\xcc\xae\x8a\x60\xe7\x56\x16\xa1\xf7\x02\xc3\xbc\x8d\xea\xa1\x00\x4a\x8d\xae\x03\x92\xa5\x9c\xee\x54\x81\x0c\x6e\x94\x0e\xee\x25\xfb\x2e\x5d\x57\x32\x67\x04\x4b\x89\x3f\xfd\xe3\x78\xfe\x75\xac\x26\x13\x37\x3d\x84\xa0\xca\x81\x87\xaf\x4a\x33\x58\xe5\x0a\x99\x4e\xd0\x33\x67\xde\x64\x5e\x10\x39\x0f\xea\x4c\x33\xbb\x1a\x6c\x0c\x39\x85\x8b\x8d\xb4\xa6\x9f\xe8\x94\xa4\x22\x3d\x45\xaf\x69\xb3\x6c\x61\x17\xc4\xdc\x25\xde\x49\xa6\x30\x17\x00\x2b\xa9\xae\x55\x1e\xf9"}, {{0x6c,0x8c,0x53,0xb5,0x6b,0xbc,0xb4,0xc0,0xa2,0x5d,0xc4,0x0c,0x18,0x24,0x0b,0x6a,0x5c,0x75,0x76,0xb8,0x9d,0xde,0x45,0xef,0x13,0xfb,0x15,0x8e,0xa1,0x7f,0x8e,0xd9,},{0x23,0x8e,0x51,0xd6,0xa4,0x4f,0xa7,0xac,0x64,0x26,0x88,0x01,0x26,0x1e,0xa3,0x5b,0x62,0x63,0x8a,0x00,0x6c,0xc4,0x52,0xbd,0xdb,0x9f,0x16,0xfc,0x58,0x03,0x06,0x0c,},{0x4b,0xf1,0xe7,0xd4,0x9c,0xd4,0xd5,0xc3,0xc1,0xfd,0x4a,0x4b,0xc4,0x8f,0xf6,0xb6,0xe5,0x2f,0xd9,0x51,0x0a,0x41,0x18,0x12,0x29,0x69,0x96,0xe4,0xfe,0xc5,0x6b,0xe4,0x45,0x14,0xc5,0x67,0xd1,0xd3,0x34,0x77,0xbd,0x5d,0xc0,0x83,0xc3,0x95,0x8b,0xd9,0x5b,0xfe,0x59,0x9c,0x15,0x3f,0x21,0xae,0x26,0x25,0x29,0x67,0xb7,0x32,0x60,0x03,},"\xb6\x0d\xf2\x94\x4b\xa0\x15\x75\x98\x02\xd3\xc5\x87\xbc\xfe\xbe\x52\x1a\x7e\x77\xb9\x98\x5b\x76\x1c\x96\x76\x45\x4d\x24\xa6\x64\xaf\x0b\x0d\x44\x22\x5a\x55\x75\x12\xe1\xc1\xcd\x7d\xd8\x33\x5c\x8f\x6a\xdf\x92\x8e\x18\xf8\x9f\xd5\xee\xdf\x6f\x41\x1d\xcd\xaf\x99\x69\x12\xe8\xc3\xe2\x3d\x1c\xb9\x5e\xca\x4b\x9e\x24\xe7\x53\x9c\x3b\x98\xbf\x3d\x07\xec\x25\x13\x92\x09\x6c\x19\xac\x53\x74\xdc\xba\x52\x61\x32\xb6\xd9\xbb\x8f\x6c\x85\x9c\xe9\x85\xd5\x84\xc7\xbb\xa5\xb0\x2a\x81\x03\x4b\x6d\x8b\x52\x1b\xd2\x80\xe5\x0d\x77\xda\xa2\xb2\x41\x3e\xd6\x79\x83\x4f\x81\x61\xd5\xd0\x57\x3b\xdd\x47\x6a\xc3\xcd\x0a\x3a\x7d\x8d\xb4\x53\x34\xe8\x9c\x00\xab\x66\xbc\x36\x8a\x07\xb4\x23\xe2\x46\x43\x46\x36\x27\x2a\xa4\xe4\x63\x7a\x53\x06\xb2\xc3\x39\x79\x92\x78\x1f\x30\x23\x8d\xe7\x9e\xc1\x04\xac\xc7\x20\x0d\xef\xad\x96\x08\x83\xd3\x91\x44\x3e\x70\xef\xbd\x22\xf1\xcf\xce\xec\x51\x12\xfe\x9e\x8e\x13\xbb\x94\x1c\x08\x34\x68\xdd\x71\xff\xca\x97\x6c\xd5\x1c\xe1\x61\x79\x31\x10\xef\x00\xaf\xf5\xee\x2c\xcb\x77\x06\xa5\x12\xb8\x5b\xeb\x94\xac\x49\xd1\x9a\xfb\x63\x33\x65\x5c\xf3\xae\xa5\x35\xa6\xf9\xc7\x5e\x03\x48\x41\xe7\x63\xc5\xa2\x49\xb4\x70\x4e\x1b\xe7\x8b\x0e\xca\xc6\x80\x2c\x34\x3c\x1b\x7e\x7b\x57\x70\xde\x4c\x93\xa3\xa7\x9c\x46\xe6\x83\x5d\xa8\xae\x5d\xb3\x83\x8e\x17\x96\xb5\x64\xa4\x80\xa4\xf2\x90\xb6\x0a\x1c\x63\xa7\x25\xff\x3f\xef\x43\x4d\x2a\x0b\x3d\x89\x31\x97\x87\x42\xb5\x25\xc8\x3b\xae\x67\x94\xae\x64\x19\x37\x94\xb3\x70\xc2\x89\xba\x35\xed\x79\xd3\x70\x72\xa8\xdc\xfc\xad\xb4\x6d\x5f\xfa\xee\xba\x1b\xfd\x4f\x87\xd7\x66\xb5\x04\xe6\x2b\x4a\xcd\xd7\x74\x46\xe7\x9b\xa9\x94\xd6\xdb\xf4\x76\x5e\xbd\x74\xb0\x36\x51\x00\xda\x56\x16\x2c\x36\xfe\x5a\x95\x07\x7f\x6b\x42\x65\xe8\x17\x96\xb4\xa5\x74\x43\x78\x29\x70\xb9\x6c\xb4\x56\x9b\xa9\x85\xc5\x5f\xe3\xa7\x18\x38\x0b\xca\x39\xf1\x66\x24\xf8\xe4\x7c\xc6\x3c\x1b\x6f\xa1\xbd\xe1\xae\xba\x9c\x51\xf9\x4b\x70\x2b\x13\x10\x8c\xc1\x48\x1d\x42\xe6\xfa\x98\x1e\x3e\xbf\xe0\x64\xd2\xdc\xa7\x42\x0c\x74\x59\x57\x92\x31\x2a\xe3\xfb\x91\x01\xd4\xb6\x6d\x99\x16\xdf\xd6\xc1\x3a\xe8\x83\xe6\x61\xc6\x28\x22\x8b\xe9\x79\x4c\xf6\x03\x45\x07\x6d\xb2\x61\x84\xb6\x17\xe2\x72\x29\x8c\xd4\x18\x3f\x27\xbd\x52\xd4\x05\x10\xbb\x01\x5d\x20\x97\xd4\xcc\x76\xe7\x6c\x0a\x62\xbb\xfd\xaf\x53\xc7\x26\x87\x75\xbb\xfb\xdb\x88\x70\xeb\x9b\xab"}, {{0x69,0xb3,0x20,0xfb,0xd4,0x77,0x40,0x30,0xa2,0x97,0x67,0xa0,0xcc,0x15,0x50,0xd1,0x0b,0x74,0x9b,0x44,0xd6,0x19,0xd4,0x1d,0xce,0x11,0x46,0xf7,0xac,0x80,0xa7,0x55,},{0xdc,0x50,0x8a,0x79,0xc6,0xb8,0xab,0x86,0x6c,0xd1,0x17,0xa5,0xa8,0x4d,0xd9,0xd9,0x31,0xfd,0xa4,0x50,0xbe,0xc2,0x93,0x35,0x34,0x4d,0x0d,0x21,0x92,0x16,0xd6,0x5e,},{0x69,0x7d,0x4d,0x89,0x7e,0x0e,0x2c,0xc0,0x2b,0xc1,0xc2,0xdd,0xa5,0x7f,0x0d,0xda,0x62,0x0b,0x37,0xe8,0x61,0x82,0x2b,0xb7,0xf1,0xa7,0x01,0x93,0x5e,0x95,0x9e,0xa0,0xd8,0x45,0x3f,0x74,0x6f,0xb9,0x2c,0x08,0x7e,0xd6,0x5d,0x98,0x0e,0xea,0x1d,0x6f,0xdb,0xf2,0x3e,0x99,0xb2,0x89,0xaa,0xe0,0xdc,0xbb,0x12,0x8e,0xf8,0x36,0x64,0x0a,},"\x21\x7e\x33\xf8\x86\x22\xc9\x6f\x8d\x09\x2c\x9e\x26\x66\x4f\xe9\xef\xc0\xd8\xd2\xeb\x59\xa0\x36\xfa\x46\x4c\xee\x65\xce\x44\x89\xca\xf9\x03\xdc\xe1\x7a\xfa\xfb\xc4\xf1\x8d\xc9\xbb\xfd\x6c\x1a\x4b\xe7\xb8\x34\x85\xa6\xca\x94\x7d\xef\xb1\xd3\x51\x25\xd0\x77\x39\x62\xa3\x44\xa3\x8b\x6d\xca\x9a\x40\xc3\x1c\x1c\x4e\xb2\xd7\xf6\x81\x8f\x97\x8e\x57\x3d\x66\xb9\x90\x92\x1b\x92\xb7\x77\x47\x1a\x4f\x6f\x05\x47\x7e\xbc\x35\x3a\xce\x1d\x86\xb0\x0c\xc2\x51\x77\x7a\xaf\x6a\xf3\xaa\x11\x79\xbf\xf7\x8d\xf5\x04\x8e\x5e\xf2\x99\x68\x67\x0e\x53\x54\x83\x56\x8d\x6b\xb1\x6d\xa8\x29\x56\x8f\x81\xc7\x99\xb9\xaf\xd4\xaa\xd6\xef\x08\x52\x52\xc0\xce\x3a\xc0\x1a\xc2\x1a\x9e\xa6\x9b\xd5\x8e\xad\xc6\x69\x68\xf5\x5d\xee\x38\x6b\x65\x3f\x33\x34\xef\xc3\x98\xef\x3c\x37\xa3\x8c\xe9\x3b\x21\xf1\x07\xcc\x54\xde\xc2\x6f\x53\xfe\xe5\x60\x4e\xb0\x9a\x36\xaf\xe6\xb6\x65\xb6\x32\x4a\x84\xc7\xda\x7b\x7d\xd0\x1d\x92\x78\xe4\x72\xf1\x5a\x5c\xe9\xff\x0f\xd9\x3d\x0a\xa0\x60\x4d\xd2\xdf\x8d\x5b\xf6\xa9\x12\x73\x4e\xc5\x1d\xe7\x7f\x0c\xe0\x99\xba\x11\x67\x02\x10\xa6\xa2\x06\x10\x6b\x0e\xde\x2d\xed\x85\x8a\x6b\xc4\x11\xe7\x61\x3e\x6f\x80\xe1\xaa\x52\xc3\x23\xe3\x0f\xa8\x49\x95\x1c\xc9\xb7\x76\xe4\xcc\x58\xc9\x0c\xfc\x8f\x44\x2d\xf6\x41\x51\xa7\xfd\x4a\x3d\xd6\x1a\x43\x36\xda\x21\xd0\x39\x44\x63\x5d\x3f\xd6\x67\xbe\x74\x1e\xf4\x5b\x1f\x7c\xb2\x76\xd9\xf4\xde\x81\x07\xde\x64\x58\x2f\x79\x17\xc6\xea\xb3\x8e\x0a\x88\x90\xa4\xbe\xe4\x8b\xc9\x26\x17\xa3\x61\xcc\x7b\x1d\x25\xe0\x89\x45\x3c\xe0\xa5\x25\x44\xf8\x68\xdc\xb3\x24\x9d\xe7\x61\xe7\x9d\xf6\x3e\xfa\x07\x94\xe3\xc4\x61\x8c\x55\x47\x53\xee\x28\x1c\x52\xac\x8a\xd7\x8d\x53\x38\xf0\xda\xc3\x60\xa7\x69\x38\x1b\xb4\xa3\x9f\x19\x0b\x88\x7b\x47\x23\x80\x6a\xc4\xa4\xf2\xff\x30\x4b\xc6\xf9\x33\x7a\xb5\x4c\x86\x6e\x6b\xa5\x1d\xf5\x0c\x43\xea\xb5\x2e\x2b\x39\x79\x4c\x99\x17\xe0\xc3\x14\x33\xf0\x36\x81\xd2\xf1\xd9\x3a\x04\x36\x01\x8c\xaa\xae\x20\x20\x6a\x34\x58\xad\x6c\x03\x7a\xcb\x51\x1e\xf1\x28\xf6\xdc\xd0\x53\x05\xf0\x70\x49\xa1\x3b\x6c\x6c\x3c\x5b\x81\x70\xf1\x58\xc8\xf1\x2d\x46\xe1\x60\x93\x1b\xa1\x8b\xd5\x9a\xe1\x29\xec\x07\xa0\x65\x5f\xa4\x82\xeb\xbd\x3b\x85\x0d\x36\xb8\x32\xbb\xb7\x75\xf5\x38\xe3\xc1\xb3\xa4\x3e\xcf\x94\xca\x63\x0c\xa1\x5d\x50\x28\x13\xee\xd3\xe3\x5e\x8f\xd2\x3d\x2a\xb6\x38\x60\x04\x27\xd1\x59\x7c\xb2\x9d\xa2\xa5"}, {{0x66,0xda,0x8b,0x25,0x4a,0x37,0x06,0x73,0x78,0xf6,0x81,0x38,0xaf,0xed,0xd6,0x64,0x96,0x59,0x6a,0x05,0x85,0x52,0x4c,0x71,0x6b,0xde,0x2b,0x31,0x24,0xc3,0xe7,0xd1,},{0x85,0xbd,0xe2,0x8a,0x92,0x2a,0xb5,0xee,0xaa,0x4a,0x62,0x94,0x52,0x1a,0x2c,0xca,0xc0,0xef,0x23,0x03,0xdc,0xdf,0x8c,0x7f,0xee,0x22,0x8f,0xb4,0x55,0x20,0x12,0xe7,},{0x40,0x82,0xa5,0xbc,0x73,0x0f,0xb5,0x4b,0x6b,0xd0,0xbc,0xd2,0xa0,0x44,0xed,0x5d,0x3d,0x32,0x7d,0xc1,0x9c,0xea,0xc8,0x82,0x5e,0x62,0x9b,0x9e,0x64,0x23,0xcb,0x1c,0x61,0x42,0x36,0xf0,0x97,0xa6,0xb7,0x3d,0x47,0x39,0x47,0xcb,0x81,0xc4,0xe2,0x70,0x85,0x2e,0xe5,0xf1,0x3a,0x5b,0x03,0xdc,0x18,0xe1,0xc9,0xc2,0x7a,0x9a,0x68,0x02,},"\x3f\xae\x36\x63\x88\x37\xd0\xed\xc8\xdc\xee\x51\x7e\x43\xc4\x88\xed\x57\xfa\x6c\x98\x53\xa7\x45\xaa\xed\xfb\x10\x9e\xc1\x40\x9f\xb8\xa2\xfe\x51\xd2\x3e\x0d\xd9\xfb\xfd\x94\xf9\x1c\x18\xe6\x11\x4d\x80\x89\x01\xbf\x61\x7d\x26\x67\xce\xeb\xd2\x05\xc5\xc6\x6f\x5d\x75\x34\xfd\x2e\xc3\x3d\xbf\xe5\x80\xad\x91\x9f\x50\x42\x04\xea\xf2\x42\xaf\x87\x00\xb1\x38\xcf\xbe\x0f\x37\x29\x19\xc0\x6b\x86\x1a\x27\xd7\x20\xd0\x9d\xf2\x0f\x4f\xb7\xb7\x48\xe7\x18\xb0\xfc\x48\x6d\xbd\xfc\xb6\x94\xcb\x3f\x14\x20\x03\x5a\xc1\xbe\x55\xd3\x1f\x30\xf9\x97\xa0\x43\xd0\x47\x08\xa5\xc5\x42\xee\x37\xc0\xf7\xfe\x0b\x32\x11\xd1\x8a\x87\x03\x3d\xcb\x15\xc7\x9e\x66\x81\xc4\x97\x05\x93\xd3\x2a\x13\xc4\x8f\x0a\x3a\xf8\xbf\xc1\x36\xe0\xf9\xb5\x6a\x12\x3b\x86\xc4\xc6\x40\xb6\x50\xcb\x7d\xee\x9a\x89\xe8\x2a\xee\xee\x77\x3b\x5c\xb0\x32\xfc\xa4\x1c\x20\xc4\x07\x32\x8b\xfe\xd2\x92\x44\xe4\x60\x55\xa8\x31\x14\x61\x4d\x3d\xb5\x65\x81\x60\x4b\x11\x5f\xba\x14\xf6\x18\xe1\x02\xa1\xe1\x6c\xb0\x36\xea\x69\xdf\x92\x75\xb9\x77\xa0\x85\x81\x18\xc9\x1a\x34\xb9\xa8\x51\x9b\xd0\xda\xc3\xb6\x14\x34\xea\x08\x8f\x38\x1b\xa0\x8b\xc1\x58\x31\x89\xa4\xa7\xc8\xb6\xad\x18\xf7\x32\xd7\x4e\xff\x3a\xce\xf4\xb6\x90\x4d\xf5\x8c\x64\x69\x43\x21\x51\x37\x2d\xf9\x32\x7a\xe7\x1a\x0f\x35\x6c\x94\x46\x8d\xcf\xc2\xe4\xa5\xc0\xe4\xec\x0b\x16\x6d\x90\xcd\x46\x5f\x92\x60\xeb\xd6\xa7\xa6\x2c\xe6\xc7\x15\xbc\xc7\x15\xbe\x0c\x7e\x1f\x28\xc4\x45\x60\x12\xd3\x31\x77\xa7\xd4\x11\x3c\x9a\x5a\x22\xac\xfa\xf2\xd6\xb6\x33\x09\x07\x8f\xc1\xb1\xba\xa8\xf3\x6c\x7e\x86\x6c\x1f\x97\x2a\x65\x00\xa5\xee\xa7\x92\x01\x65\x1a\x73\x05\x20\x8b\x6c\x93\xc4\x92\xbc\x77\xca\xcb\xc9\x9c\x9c\xde\xd1\x79\xe6\x64\xa2\xf4\xe1\x69\x38\xcc\x26\xfc\xa8\xb4\x33\xeb\x80\x12\xf7\xb3\xad\x19\xba\x1f\xb8\x58\xfe\x4a\x00\xfb\x3d\x1f\x8f\xd0\xed\xdf\x0c\x37\xdc\xdb\x2e\x5d\x35\xc2\x54\x6f\x22\xe8\xc0\xf8\xce\x90\xe2\xdf\x8a\xbf\x24\x82\x7a\x01\x9b\x2c\x33\xfc\x59\x0b\xbe\x71\x2f\x01\x92\x87\x00\x2b\xc2\x21\x7c\x0d\xc0\x93\x1d\xc8\xed\x8f\x50\xbb\x44\x2f\x8b\x2d\xe2\x78\x57\x36\x2c\xe5\xa9\xfd\x97\xf0\xfd\x1b\x2b\x92\x51\xca\xd2\xa4\xac\xa1\xa9\x4d\xe2\xe9\x53\x90\x2d\x72\x28\x14\x24\x07\x44\x3b\x1d\x51\x71\x07\x64\x8a\x7b\xab\x83\x07\x49\x87\xd0\x97\x8b\xc6\x1d\x41\x9b\xc8\x45\x91\xc9\x69\xc3\xd6\xf4\xe8\x6f\xc4\x73\x87\x37\xbc\x05\x58\x75\x5c\x11\x0a"}, {{0x27,0x65,0x48,0x29,0x0f,0x3e,0x0f,0x90,0x05,0x15,0xdc,0x63,0x36,0x6c,0x03,0xfe,0x0f,0xc6,0xee,0x13,0x0c,0x21,0xfb,0x60,0xa4,0xdf,0x9c,0xf4,0x64,0x79,0x7c,0xda,},{0x7e,0x2a,0x35,0x78,0x00,0x0a,0x08,0x7e,0xdc,0xc9,0xe9,0x4f,0xde,0x50,0x9f,0xc4,0xbe,0x05,0xca,0x0d,0xd0,0x90,0xdf,0x01,0xae,0x11,0x21,0x12,0x35,0x36,0xf7,0x2a,},{0x88,0xa1,0x46,0x26,0x1a,0xd1,0x11,0xc8,0x0f,0xa4,0x29,0x95,0x77,0xe7,0x10,0xf6,0x85,0x9c,0xf0,0xd1,0xca,0x80,0xe5,0x12,0xa5,0x52,0xc7,0x25,0xb8,0x38,0x40,0x37,0xee,0xcf,0x64,0x65,0xce,0x97,0x58,0x5c,0x9d,0x66,0x0a,0x41,0xab,0x91,0x04,0xe5,0xf7,0xc9,0xb2,0xf8,0xec,0x6f,0xb2,0x1f,0x1d,0xdd,0x50,0xd6,0x5b,0x9b,0x66,0x0e,},"\xf0\xdb\x44\x2d\xe2\x9a\x7a\x1d\xed\x55\x0d\x12\x00\x02\xcc\x12\xab\xff\xf9\x8b\x1f\x57\x6d\x65\xbd\xe1\x6d\xea\xba\x68\x7e\x4e\x0b\x0d\x5a\x87\x48\xd7\x50\x3d\xa2\x96\x9c\x64\xd6\xa7\xc2\x8d\x27\xb6\xc9\x3a\xd2\x57\xce\x32\xec\xda\xee\x37\x5f\x43\xff\xf9\x7c\x43\x2d\x45\x3f\x71\x96\xc7\x09\xc3\xbd\xfb\x73\x88\xd4\xd8\xea\xf1\x39\xf1\x82\x94\x0c\xe1\x7b\x45\x52\xe2\xd2\x0a\xed\x55\x57\xba\x4d\x2a\xcb\xf8\x45\x73\x0c\x0a\x66\xb4\x5b\x40\x95\x0b\xaf\x6a\x94\x64\x37\xaf\x6c\x9e\x3b\x33\xa7\x9e\x04\xdc\xea\xe5\x7c\x2a\x54\x95\x42\xea\xbd\x21\x6b\xf1\x39\x48\xd4\x1f\xfb\x94\x83\xfe\x29\x80\x1f\xc8\xc1\x78\x28\x40\xde\xeb\x3f\xb4\xda\x31\x92\x78\x5b\xca\x13\xed\x0a\x9e\xff\x57\xd6\x13\x6b\xaf\xbf\x9d\xec\x69\x7b\x83\x24\x47\xb2\xb6\xe7\x30\xfa\x7f\x99\x95\xba\xc6\xb7\x83\x2e\xaa\x09\x90\x5e\xe4\x9d\x46\x5a\x5e\xe4\x50\xf5\x2d\x1a\x6d\x36\x4c\x61\x81\x44\xe8\x86\xe8\xef\x63\x3d\xc7\x9d\x0a\xf8\x93\xd1\x6b\x3e\xed\xa0\xfe\xfe\xfd\x87\x59\xf2\xa0\xda\x19\x30\x17\x0d\xd1\x9e\xb7\x8f\x0d\x7a\x7b\x74\x51\x54\x03\x37\x5a\x95\xbd\xbc\xce\x01\x8b\xc1\xed\xb0\x8d\x89\x7b\xb7\x98\xa9\x5e\x7e\x86\xa5\x2a\xf3\xd9\xb8\xa4\xa1\x4b\x03\x71\xd6\x34\x98\xdc\xb2\x01\x62\x48\xeb\xd0\xbe\x80\x0e\x9f\x21\xd5\x49\xe5\xe0\xe7\xb4\x89\x5c\xa5\xcb\x72\x5a\x0c\xab\x27\xda\x8a\x8b\x12\x99\xbe\x38\xa4\x26\x09\x00\xae\x10\xdf\x5b\xab\xa1\x1a\xe2\xba\xb7\x17\x9d\xd8\x45\x39\x69\x42\x9c\xcc\x4d\x41\x60\x55\xf2\xbc\xb9\x3c\x1c\xac\x6d\x7e\x80\x4c\xf8\x12\xdf\x14\x62\xf2\x2e\xe9\xe8\x33\xa9\x76\x9e\x8e\x67\x75\x50\x40\x2c\x40\x94\xdf\x21\x2f\xd2\xc5\xfc\xc0\x9a\x72\xc7\xce\x00\x77\x51\x00\x73\x09\x0d\x0e\x63\xdb\x63\x7d\x43\xd4\xc2\x1f\x86\x19\xd3\x4d\xa5\xdb\x08\x03\x3f\x68\x6c\xe8\xb8\xa0\x82\x12\x22\xf9\x54\x34\xac\x4e\x6f\x70\x30\x94\xed\xde\xd6\xfb\x1b\x84\x6e\x97\x96\x50\x97\x9d\x3c\x77\x45\x3f\x40\xf7\xfe\xe7\xc3\xe8\x8a\x96\xfd\x1d\x70\x2e\x81\xc2\xa4\xf3\xf3\x75\x3c\x79\x64\x84\x2d\xfd\x9d\x39\x58\xa7\x43\xda\x06\x3d\x1d\x64\x8e\x51\xb2\x10\xa2\x8e\xd2\x48\x7f\x14\xd5\xf1\xbc\x6f\x33\x9b\x2d\xd1\x7a\x66\x1c\x39\x73\x6d\xa9\x9e\x4a\x4f\x07\x36\x03\x42\xd2\x37\xe3\x81\x3e\xa3\x99\x8d\x66\xeb\x31\xa2\xd7\x08\xaf\x06\x5c\x32\xb9\x27\xf7\x57\xc3\x7a\x80\x06\x60\x67\x4e\x97\x17\xba\x58\xf2\x80\xeb\x2a\xa4\x64\xfa\x74\x40\x21\x08\xa5\xd5\x66\x2e\x8d\x0f\xea\xf3\x29\x68\x7a"}, {{0x97,0x2c,0x06,0x16,0x55,0x6e,0xf2,0x2c,0x21,0x48,0x68,0xfd,0xd8,0x22,0xc5,0x57,0x39,0xe1,0xf9,0x6a,0x93,0xae,0x83,0x51,0x2a,0xfd,0xa9,0xca,0x7a,0xa7,0x4c,0xd2,},{0x9e,0x1c,0x6d,0x41,0x07,0xf8,0xab,0x81,0x61,0xc5,0xdb,0x5b,0x88,0xa3,0x7c,0xa1,0xde,0x9f,0x4e,0x29,0x13,0x67,0xab,0xb1,0xef,0xc8,0x4f,0x83,0xf7,0x07,0x69,0x53,},{0x54,0xdd,0x06,0xfb,0xb3,0xd7,0xc6,0x3f,0x8c,0xda,0xf7,0x83,0xc2,0xd7,0xba,0xc1,0x6b,0x4c,0x82,0x6e,0x2d,0x1b,0x18,0x07,0xc8,0x4e,0x04,0x9f,0x64,0xe2,0x71,0xb2,0x1c,0xfa,0x3e,0x37,0xc3,0x44,0x26,0x02,0x87,0x80,0x5d,0x71,0x88,0x06,0xb6,0x2c,0x56,0xb4,0x7f,0x6d,0x5c,0x50,0x81,0x25,0xc9,0xfb,0x5d,0x5e,0xa3,0x5f,0xd5,0x01,},"\x86\x89\xe2\xf9\x5c\x8f\xd5\x0d\xc4\x46\x64\xa1\x8f\xb1\xa9\xf2\xc8\xf3\xee\x73\xc0\xf9\x58\x7e\xe2\x8b\xfa\x35\xc9\x23\x1c\x75\xbf\xd3\xd9\x53\x41\x74\xe5\xad\x3f\xa9\xf0\x92\xf2\x59\x94\x2a\x0f\xf0\xba\x2c\xa2\xcb\x59\x04\x3d\x19\x2c\xa8\xe3\xc8\x86\x9b\xed\xd2\x35\x4c\xbc\x5a\xc7\x82\xd7\x27\xc0\xb6\x94\x07\xf6\x8d\x13\x26\xdf\x65\xa6\x0c\x4d\x32\xf8\x7f\x19\xa1\x0f\x3d\x76\x5f\xf9\x23\x43\x4f\x55\x11\xd1\x34\xd3\x97\xc4\xfe\xf6\xbb\x19\x53\xab\xfc\xe6\x08\x27\xc3\x59\xaa\x4b\x54\xf9\x12\xaa\x8b\x17\xb8\x3d\xcc\x7e\x3b\xcb\xc5\x05\xba\x04\x6f\xe5\x7c\x16\xda\xcf\x4e\xe2\xfa\xd5\x38\xbc\x06\x81\x7c\x9b\x9d\x8d\xbc\x5f\x9d\x9b\xbf\x9f\x4a\x93\x4f\x14\xa4\x2c\x29\xe0\xe2\xf3\xa4\x9f\x46\xb2\x0e\xe7\x6c\xfe\x20\xde\xa1\xe9\x74\x50\xeb\x6a\x8f\xda\x04\x81\x68\xdd\x82\x78\x10\x20\x7f\x00\x5a\x3c\xaa\x93\xca\x11\xf4\xee\x60\x8a\x7a\x93\x55\x49\x43\x13\xae\xc8\xd7\x07\x5a\xfc\x94\xc7\xcc\xcc\x75\xc2\x31\x9b\xb4\x58\xc0\xce\x37\x3e\x9d\x00\x7f\x75\x3b\x33\xb5\x27\x93\xd5\x84\x96\xb2\xd2\x5c\xd1\xdc\xd7\x83\x2a\xac\x5d\xdb\x38\xf4\xdb\x19\xc4\x27\x21\x9e\x1a\x04\x20\xea\xd4\x7b\xa9\x5a\xb6\xd8\x9c\x65\x93\x90\x41\xcc\x73\x4c\x08\xeb\x6b\x47\x6c\xaf\x7f\xc7\x6c\x59\x8d\x94\x7f\xf4\x44\xb1\x07\x70\xf6\x29\x45\xae\x65\x04\x4f\x78\x09\x82\x99\xe2\x62\x6b\x63\x8a\x73\x28\xd1\xb7\xda\xa5\x88\x9e\x8d\xb9\x4b\xbf\xf2\xde\xd6\x2e\x14\x46\x37\x60\x22\x7c\x3f\x32\x6e\xd4\x93\x56\x5d\xdf\x0a\x17\x61\xb8\xe4\xbb\x7d\x24\x10\xfa\x0f\xdb\xf3\x56\x84\x39\x7e\xef\xea\x95\x89\x58\x89\xa0\xa9\xdf\xfc\x5e\x02\xc0\x92\x38\x3b\x7c\xe7\x4d\x2d\x90\x93\x99\x16\xf2\x6b\x71\xaf\xd2\x65\xf8\xbe\xc7\x4f\x0d\xe2\x47\xc9\x64\x39\x05\x58\x3d\xf3\xce\xe2\x35\x37\xd6\xb5\x68\xc8\x33\x8c\xe5\xfe\xe4\x2f\x7d\xd1\x5d\xad\x52\x47\xf0\x09\xac\xbf\xd5\xd7\x69\xb6\x36\x69\x59\xcd\x0a\xe1\x50\xf5\x8f\x7c\x80\xfa\x10\xd9\x89\xed\x90\x11\x93\x72\xe5\xfe\xa5\xda\x48\xa4\xe8\xea\x9c\x72\x78\x75\xdc\x4a\x20\x05\xb0\xdc\x2e\x3f\x69\x7c\x0c\xe0\xa4\xbd\xb2\xf7\x50\xc0\x4f\xbc\x0c\x27\xd0\x2d\xd8\x28\x6e\x54\xc9\xc3\x95\x9b\x6f\xfb\xdb\x1d\xe2\xaf\xfe\x9e\x78\x26\x51\xe5\x16\x8a\x50\x0a\xfe\xd0\x37\xb3\xe1\x79\x0d\xdd\x59\x38\x51\xa6\xa6\xcc\xca\x9f\xff\xb4\xa9\x9e\x27\xdf\x43\x81\x88\x71\x53\x6a\xb0\x4f\x14\xa0\x6a\x1c\x7c\xb4\x7b\xed\x62\x41\xce\x74\x30\xad\x3e\x64\x0a\x72\x67\x52\xfa\x06\xa9"}, {{0xe0,0x40,0x5d,0x37,0x89,0x3e,0x89,0xf5,0x38,0x11,0xd6,0xd4,0x46,0xe1,0xf1,0x93,0xf5,0x1a,0xfa,0x1b,0xbb,0xa7,0x25,0xf9,0x5e,0xb4,0x80,0x33,0x42,0x4a,0x25,0x09,},{0x45,0x10,0x4d,0x59,0x5e,0x44,0x3e,0x8c,0xe6,0x54,0xde,0x9d,0x65,0x50,0x54,0xbf,0x0a,0x99,0xd3,0x56,0x13,0xd7,0x7d,0x57,0x45,0x4c,0xa2,0xd1,0xc8,0x99,0xb5,0x17,},{0x77,0xdd,0xd4,0x91,0xca,0x66,0x2e,0xbf,0xfb,0x12,0xf7,0xf4,0x92,0xd7,0xfb,0xc1,0xa1,0xb4,0x47,0xf6,0xc8,0x59,0x98,0xf2,0xf7,0xcc,0x9a,0xdc,0xe6,0x7d,0xe6,0x3b,0x6e,0xeb,0xd0,0x81,0x17,0x84,0x5a,0x03,0x02,0xf7,0x34,0x97,0x14,0xba,0x9d,0xb2,0xaf,0x58,0x04,0x8b,0x85,0x83,0x7d,0x76,0x60,0xec,0x3d,0xeb,0xee,0xe2,0xd0,0x0f,},"\xdf\x58\xc4\xfd\x07\x02\xa2\x0f\xaf\xa3\xd1\xd4\xfe\x7d\x85\x93\x8b\x12\x0f\xc1\x1e\x8d\x41\xb6\x01\xf0\xe6\x0e\x42\x23\x6a\x49\xf1\x26\x81\x3b\xd5\x12\xee\x71\x35\x90\x61\xe1\x3e\xb3\x14\xd4\x17\xf5\x6d\x6d\x56\x02\x85\xfa\x89\x91\x21\x32\x84\xc4\x2b\xc2\xce\xf2\xdc\x93\x7b\xdc\x0b\x5e\x9d\xc2\x26\x9a\xfa\xb3\x2d\xb3\x0e\x68\x49\x85\x59\x51\xcf\xbc\x53\xec\xfa\x01\x64\x38\x63\xe0\x32\x89\x95\xfe\x85\x0c\x0d\xb5\x54\x21\xbf\xa5\x64\x60\x1b\x8c\x9d\xb7\x55\x2c\x7e\x6a\xa7\xad\xfa\x15\xa5\x80\x21\xa8\x42\x66\xe9\x59\x5c\x65\xfc\xa4\xa1\x5f\xa7\x0f\x55\xf5\xd2\x12\xc9\xe2\x77\xff\xb8\x30\xf4\xca\xd1\x86\x1f\x3f\x49\x5a\x9d\x67\x2f\x56\x91\x31\x06\x39\xc1\x2d\xcd\x07\xe3\xef\x17\xa2\x37\x50\xbc\xb4\x6b\x7a\xd7\xea\xc4\x62\xeb\x51\x22\x25\xf3\xbe\x7e\x32\xf8\xf4\x98\x7a\x11\xdf\x34\x11\x66\x06\x2b\x43\xc6\x3a\xb8\x58\xa6\x00\x49\x76\x67\xfb\xb8\x8e\x93\xc7\xe2\xe0\xaa\xb4\x1c\x09\xc0\x23\xeb\x90\x2e\xc3\xba\xf6\x79\xe2\x5b\x96\xe1\x06\x92\x1a\x91\x4f\xd5\xde\x20\x0a\x47\x88\x9d\xe2\x3e\x7b\x65\xd0\xcc\xdf\x0c\x29\x03\x64\x67\xa1\x21\x0c\x00\x30\x30\x9a\x2d\x04\xec\x25\x6d\x5a\x4d\x8b\x97\xd4\x6a\x3e\x15\xf3\x45\xb6\x67\x17\x08\x03\xcd\xac\xf6\xcb\x48\xad\xd0\xa1\x34\x62\xdd\x30\xfa\x06\x2b\xd4\x56\x66\x41\xda\x07\xd7\xf6\x1e\x06\x36\x86\xed\xd9\x6b\xfe\x8f\x97\xb9\x86\xb7\xc0\xe4\x42\x49\xcd\x2d\x73\x17\x47\x29\x99\xb8\xee\x4e\xa8\x0c\x90\x2f\x3b\x18\x89\x36\x71\x2e\x89\xd8\xbf\x02\xce\x8a\xe7\x7b\x6b\x31\xab\xb0\x63\x20\x65\x45\x5d\xdd\x9f\x9d\x1c\xd9\x53\xa4\xa4\x9a\xac\x1a\x15\x16\x9e\x68\x7d\x4f\xd3\xf7\xc2\xed\xfb\x3a\xab\xc3\xb6\x61\x55\xf7\xd3\x15\xf8\xa2\x94\xfa\xdd\xff\xdb\x49\x51\x36\x7a\x0c\xb8\x70\x75\x9e\x85\xa8\x38\xaf\x66\xba\x3f\xc1\x03\xda\x2b\xab\xc3\xf3\x81\x69\x6e\xf8\x88\x2d\x85\xa8\x27\x8d\x5f\xac\x3a\x72\xf1\x6e\xb1\x19\xee\x99\x00\xb1\xfd\x98\x6c\x2a\x9f\x94\xee\xd8\xe0\xd4\xf2\x73\x69\x7e\x43\x63\xa9\x75\xff\x6a\x7b\x80\xd5\xb4\xec\x53\x55\xbf\x63\xb4\x2b\x71\xcd\x48\x42\x40\x1d\x38\xb5\xe0\x0c\xc9\x7b\xfd\xa4\x0e\x45\x66\x53\x68\x3b\xc8\xe6\xda\xde\x7d\xcf\x98\x5a\x97\xb0\xb5\x77\x6c\x4d\x72\xca\x13\xa1\x47\x4e\x4e\xb2\xec\xcf\xcd\x42\x87\x86\xdd\xd0\x24\x6d\x73\xa6\x37\x7a\x79\xcb\x8d\xa7\x20\xe2\x26\xc1\x94\x89\xbd\x10\xce\xdd\xe7\x4b\x49\xfa\xc2\xcf\xa2\x07\x12\x9c\x6a\x10\x8a\xa1\x64\xbe\x9d\x80\x9c\x4d\x31\x14\x73\x60"}, {{0x57,0x56,0xe7,0x52,0xdf,0xf6,0x9e,0x3e,0xed,0x84,0x8e,0x4a,0x49,0xc7,0xa8,0xba,0xca,0x12,0x15,0x4f,0x94,0x31,0xde,0xc3,0x56,0x26,0xef,0x8d,0x75,0xa4,0x45,0x14,},{0x59,0x10,0xef,0x00,0xa5,0xb3,0x54,0x14,0x3c,0x46,0x56,0x1d,0xa6,0x2c,0x41,0xaa,0x13,0xd2,0x9c,0x18,0xdc,0x61,0x53,0xbf,0x8e,0x50,0x2e,0x01,0x14,0x00,0x77,0x28,},{0x81,0x57,0xd8,0x33,0x4d,0xed,0x1a,0x32,0x69,0x9b,0x35,0x0a,0xc0,0xd4,0x12,0x00,0x28,0xcd,0x8e,0xf8,0x18,0x94,0x48,0x93,0x48,0x50,0xe5,0x0e,0xe4,0x99,0x9d,0x8f,0xa2,0xcd,0x25,0x76,0x46,0xd9,0x2f,0xba,0x5d,0x66,0x2a,0x82,0x3e,0x62,0x20,0x8a,0xb4,0xfb,0xe0,0x17,0x14,0xa8,0x48,0xa0,0xb9,0x0b,0x55,0xad,0xcd,0x24,0x69,0x02,},"\xeb\x21\x90\xa3\x21\x9c\x79\x2b\x66\x66\xb2\x75\x27\x33\xad\x9f\x86\xfc\x39\x01\x55\xc4\xb4\x38\xbe\x19\x69\x59\x38\x3b\x25\xf3\xa7\x49\x53\x0d\x5a\x4b\x15\xeb\xe2\xc1\x8d\x99\x17\x8e\x6d\x45\xbb\x4a\xa2\x12\x0f\x95\xa3\x52\xe0\x40\x6c\x63\xac\x86\x72\x48\xd9\xef\xba\x12\x42\x31\x06\x48\x73\xc8\x2f\xe9\x95\xdd\x03\x1c\x7c\xbc\x7d\x15\xec\x19\x1f\xbb\x6c\x47\x4d\xc4\xc7\x77\xe8\xf4\x57\x84\x1e\xb4\x62\x48\x41\xc1\x52\xd1\x5e\xde\x26\xe7\x84\x79\xa6\xa2\x5f\xfa\x33\x55\x63\xf1\x06\x4e\xf0\x95\x58\xb9\x10\xe2\x60\x84\x18\x82\x0f\x49\x55\x4b\x67\x0c\x6b\xab\x34\xd1\xd6\x09\x84\xde\xa5\x0e\xd6\xa3\x75\xf4\x5a\x74\xbe\xad\xfb\x04\xbd\x93\x00\xbd\x59\x4e\x2e\x20\xea\x5d\x30\x52\xbb\x7d\xdc\x51\xa9\x49\xa0\x04\x79\x72\x68\x2e\xbe\x66\xd3\x8a\xac\x62\x92\x72\x70\xde\x42\x15\x0d\x58\x22\x1d\x03\xb8\xac\xe3\x58\x99\x33\x48\x7b\xf2\x3d\x29\xc5\xc2\xc8\x43\xae\xfa\x2e\x1c\xa2\x2f\x9d\x16\x80\xf8\x0c\x76\x6d\x14\x3c\xe5\xec\xef\x25\x3a\x74\x5c\xb7\x1e\x72\xf6\x50\x4a\xd9\x11\xf7\xcb\x4a\x81\x9c\xd0\x74\x86\x3a\x92\x70\x69\x29\xa3\x14\x2f\x8d\xb7\xac\x16\x41\x02\xac\x2c\xa0\xd2\xe1\x9a\x72\x5e\x1b\x5f\x81\xf4\x43\xc7\x3e\x04\x84\xf2\x6a\x45\xa3\xae\xf8\x4f\x1f\x3f\xa0\x4a\x4a\xc6\x95\xd2\xda\xb6\xef\xba\x45\x6a\x28\x1a\x39\x73\xcc\x18\x6e\x68\x0a\x66\xdf\x52\x1a\x4d\x1f\x9e\xdf\x4d\xfb\x27\x4a\x42\x70\x97\xbf\x86\x32\x81\xcf\xb0\xed\x80\xf8\xd7\x67\x66\x38\xd6\xcd\xac\x93\x78\x43\xef\xbc\xfc\xe9\x1d\xe1\xdf\x6c\x52\xb5\x94\x57\x1b\x93\x15\x60\x0e\x4b\x65\x52\xde\xfb\x84\x37\xa8\x07\xba\x21\x29\x8e\x3d\x97\x22\x12\xba\x31\x46\x92\x91\x7f\x40\x07\x53\x11\xac\xd0\x09\x39\x52\x41\xb9\xf1\xb2\x56\xc5\x15\x73\x5d\xc6\x74\xf8\xe8\x66\xd1\xee\xb4\xc3\x28\x54\x8a\xee\x71\x23\x1c\x4c\x9d\x5b\xd2\x2e\x39\xde\x88\xd1\x9f\xab\xf4\x9f\x0b\x98\x69\xcb\xf8\x35\x21\x4b\x15\x52\x2a\x93\xd3\xa5\x00\x7b\x11\xf0\xb5\x0e\x52\x28\xd4\xee\xbb\x45\x71\xb3\x5d\xa8\x4f\x4f\x68\x7e\x3f\x43\x79\x3d\x54\xf3\x82\x5b\x37\xa5\x09\xea\x56\x4b\xdf\x21\x7f\xf4\xad\xf6\x84\x7b\xbe\xa4\x31\x6a\x1d\xbc\xc7\x44\x8e\xcd\x53\x63\xea\xab\xc1\x28\xde\xcf\x05\x4e\xe1\xa0\xee\x2d\x87\x19\x79\xf8\xa6\x3b\x26\x92\xb0\x9f\x6e\x98\x6a\x13\x8e\x7f\x68\xf6\x0a\xa4\x26\xa1\xc9\xb0\x1a\x49\x02\xe1\x3b\x17\xbc\x83\x12\x41\x0c\x28\xbe\xd2\x9b\x60\x1b\x0f\xc9\xf3\xbc\x2d\x22\x3f\x87\x52\x51\x10\x0f\x86\x9c\x6b\x58\x44"}, {{0xb9,0x04,0xac,0xb1,0x9e,0x5c,0xf8,0x72,0xd3,0x64,0x0c,0xd1,0x8d,0xdf,0x3c,0x0b,0x66,0x57,0xe0,0x11,0x7c,0xe6,0x59,0xdb,0xf5,0x02,0x59,0x01,0x5d,0x3f,0xbf,0x32,},{0xe0,0x4a,0x8a,0xa5,0x6d,0x18,0x18,0x48,0x3b,0x10,0xd0,0xa7,0xc9,0x19,0xe1,0xd5,0xd8,0x00,0x1e,0x35,0x51,0x0e,0x1e,0xc6,0x2f,0x71,0x14,0xdb,0xe8,0x1a,0xe0,0xbe,},{0x9a,0xaf,0x8a,0xc9,0x71,0x40,0xd5,0x50,0x8d,0x58,0xf5,0xac,0x82,0xb7,0xfd,0x47,0xe6,0xb1,0xf6,0x8a,0x7c,0x78,0xa2,0xac,0x06,0xf0,0x41,0x6e,0xf8,0xe9,0x91,0x95,0x3f,0x62,0xc4,0x7f,0xd5,0xfb,0xc6,0xc1,0xe0,0x1b,0xae,0x1c,0x92,0xa3,0x3e,0xf5,0x2b,0x7e,0xfa,0x5f,0x17,0xbb,0x86,0x33,0xbd,0xc1,0xae,0xeb,0xce,0x31,0x8f,0x0f,},"\x83\xf4\x12\x4d\x5a\xf9\x55\x13\x9b\x1b\xc5\x44\x1e\x97\xc5\xfa\xc4\x91\xb4\xea\x91\x14\x07\xe1\x54\x20\xa0\x34\x7e\xd7\xfa\x1f\x88\x19\xe3\x6c\x8e\xd5\x74\x0c\x99\xd4\x50\x5a\x78\xb6\x19\xd5\x60\x74\x9a\xf5\x0b\x05\x73\x51\x08\x16\xd6\x13\x22\xcd\xa9\x76\xa5\xd4\xca\x32\x05\xf5\xf0\xe6\x0e\x75\x9a\x5d\xf1\xa0\xbd\xf3\x6d\xfe\x97\x17\x90\x6a\xc5\x7c\xbf\xc9\x70\xab\x43\xb6\xfa\x18\xe6\xc0\x00\x6c\x84\xfc\x72\x54\x47\x0a\x0b\x77\x47\x27\xbf\x5f\x8e\x67\x94\x23\xa5\x31\xe4\x1c\xb5\x31\x0f\x9b\xcb\xf5\xa5\x44\x5e\xbc\x39\xfb\xd9\x09\xce\x11\xe9\x7b\xc2\xf6\x6a\x4a\x1b\xb6\xc2\xf1\x67\xf2\xc6\xe8\x0e\xb9\xb8\xb7\x2d\xf3\xe8\xcf\xd4\xe5\x14\x48\xdc\x14\xc0\xb8\x37\xf2\x94\x96\x93\xd1\xd0\x54\xc8\xf9\x5b\xff\x7f\x1e\x36\x45\x67\xd0\x34\xf2\x22\x3e\x15\x94\x77\x2a\x43\xdc\xfe\x05\x97\xfd\x6d\x13\x3b\x3f\x2e\x96\xff\xc5\x66\x7d\xd5\x92\x8f\x23\xec\x3c\x75\x0f\x84\x59\x93\xa3\x4e\x97\x76\x15\x9a\x68\x30\xd6\xfd\x90\x13\xee\x7a\xea\xa1\xfc\xcd\x69\xb9\x6d\xf2\x84\x70\x4f\xd0\x88\x88\xb1\x5b\x64\xe2\xe9\x0d\x57\x8c\x5c\xfc\x0f\x95\x69\x3f\x6a\xb6\x5c\x69\x47\x44\x6a\x85\x7c\x02\x9c\x7c\xa6\x60\x80\xb7\x54\xc7\x73\x4b\x78\x99\x8a\xbe\x9b\x7c\xc6\xef\xd0\x9a\x44\x18\x19\x4d\x88\xb3\x4e\xc6\xc3\x3a\xf6\x30\xdb\x81\xde\x5b\x99\xfe\x65\xaa\xc8\xb7\x33\x62\x37\x91\x19\xc7\x00\xd1\x07\xed\xfc\x19\xf2\x70\x76\x04\x68\xee\x8e\x5f\x15\x5d\x9a\x34\x7e\x57\xb5\x93\x0f\x32\x7a\x8d\x11\xc6\x67\x4d\xdd\x02\x0f\x9e\x7d\x9b\x76\x1d\xba\x5b\x83\xa8\x73\x02\xf1\x83\x3e\x5a\xbd\x49\x52\x6d\x66\x39\x1e\x5b\xf0\xe3\x5b\x44\x53\xd6\x30\xbf\x7d\x0a\xdb\xfe\x50\x1a\xef\x81\xe6\xc5\x93\x8f\x92\xcb\x75\x2f\x5f\x14\xd2\x80\x6f\x90\xae\x15\x46\x05\x1c\xcc\x7f\x91\x3c\x5d\x6a\x38\xff\x3b\x7b\x9a\x23\x66\x2e\xf1\xf0\x08\x08\xed\xb2\xfa\x31\xec\xba\x5c\x8d\x33\x87\xe8\x75\x41\xcd\x06\x16\xed\xbf\x3a\xaa\x35\xa5\x37\x92\x28\x61\xf4\x4c\xbd\x9f\x99\x2b\x82\x46\xd9\xc6\x4c\x41\x98\x81\x70\x1a\xb4\x3f\x7f\xd4\x64\x21\x0d\x80\x2b\xa6\x56\xd9\x5c\x0f\x24\xa3\x45\x99\xb2\x0b\x1e\xc2\x00\x11\x48\x5c\xfc\xb3\x18\x6b\x7b\xcf\x69\xd7\x45\x81\xa7\xa3\xee\xd6\x13\x4c\x4e\xec\xd6\x55\x74\xa4\x32\x0d\x9c\x57\xa8\x49\xc4\xe7\x8c\x8a\x5c\xe8\x25\x05\x00\x4a\x54\xf1\x9d\x4b\xdc\x82\x23\x40\x1b\x34\x94\x6b\x7d\x66\xe4\x7e\x63\xcf\x9d\x0f\x57\xd0\x94\x54\x91\x38\x4b\xc6\x86\x8c\x4b\x47\x86\x90\xe5\x50\x02\x1d\xf1"}, {{0x8a,0x35,0x01,0xb7,0x69,0x53,0x60,0x3c,0x90,0x33,0xe3,0xbc,0xbf,0x3e,0xc3,0x78,0xd2,0x57,0x01,0x1a,0x6c,0x50,0xb8,0x97,0x62,0xd4,0x91,0xea,0xa7,0x2c,0x5e,0x0d,},{0x77,0x8f,0x20,0x19,0xdc,0xd8,0xdb,0xb8,0x6c,0x67,0x37,0xcc,0x8d,0xc1,0x90,0xc5,0xa0,0x4c,0x50,0xb5,0xbf,0x45,0x88,0xbc,0x29,0xfa,0x2a,0x47,0xaf,0x25,0x26,0x72,},{0xa8,0xa3,0x09,0xba,0x52,0x12,0x5e,0x76,0xa4,0xa6,0x1e,0xb4,0x3f,0xd4,0x13,0x5c,0x41,0xab,0x11,0x79,0x9b,0x91,0xcc,0x54,0xff,0xc9,0xc6,0xa2,0x0f,0x05,0x0c,0xc5,0x95,0xb2,0x81,0x43,0xc8,0x74,0xbd,0xb9,0x28,0xbe,0xed,0x26,0x1d,0x9c,0x0f,0x12,0xaa,0x19,0x2e,0x66,0x40,0xbf,0xda,0xd5,0x4b,0xa0,0xd4,0x78,0x42,0x6b,0xce,0x09,},"\xe6\x09\xf1\x22\x4a\x6a\x45\x11\x40\xcb\xc0\x25\x4d\x43\x2c\xe5\xfd\xdd\x08\xa8\xe9\x12\xf8\x1c\x41\x2f\xdf\xd5\x18\x2f\xf6\xac\x2f\x13\xc5\x76\xc8\x14\x5b\x15\xf2\x5b\x40\x9d\x85\x3f\x91\x44\x09\xe4\xe0\x2c\xef\xc3\x9d\x9b\xef\x4a\x2a\x06\x04\x98\x57\x0b\x2d\x3a\x28\x38\xc9\xb0\xb8\xe3\xaf\x4f\xc3\x7e\x19\x15\xf8\x04\xa8\x01\x88\x58\x5b\x30\xb6\x8a\x3f\xfb\x2e\x96\x0c\x73\x20\xe8\x27\xd2\xfe\x36\xe6\xa3\x28\xcc\x6e\x78\x06\x34\x8a\xdb\x0b\x77\x3b\x78\x4d\xe5\x29\xbb\x6f\x64\x75\x1b\x21\x05\x85\x94\x94\xfd\x49\xdb\x0b\xc7\xf6\x2d\xf4\x6b\x9d\x7c\xe6\x76\x97\x5c\xc5\xf4\x38\x56\x49\x84\x36\x81\x2e\x04\xf2\x6f\xb8\xb8\xab\x7e\xba\x12\xf1\xd5\x67\x22\xeb\x82\xeb\xfa\xfa\x47\x35\x97\x7a\x26\x68\x1c\xb0\x3f\xa4\xbc\x69\x51\xab\x9c\xbd\xf7\x87\xe3\x27\x8f\x2f\x57\xf2\x9e\x12\x09\x5f\x8c\xa2\xa1\x78\xcf\xa7\x57\x13\x37\xf0\x27\x42\x37\x66\x9f\x97\x65\x7d\x4b\xad\xb3\x94\x36\xd7\x86\x49\x25\x80\xfd\x55\xd8\x6b\xe3\xa0\xcd\x17\xd1\x60\x57\x01\x7b\xaa\xae\xa0\x0c\x1e\x14\x55\x21\x59\xbc\xab\xc0\xe6\x66\xba\xd3\x41\x8e\x4e\xc1\x3b\xfe\x16\x3b\xe2\x56\xf0\xc8\x9b\xc2\x34\x4a\x8d\xdf\x99\xca\x81\x60\xb1\x89\x87\x5a\xd3\x22\xd9\x0f\x58\x13\x25\x28\x1d\x53\x89\x96\x5c\x0a\x7b\x7b\xca\xe2\x29\x4a\x3c\xbe\x35\xa4\xe4\xe8\x3b\x54\xc4\x27\x63\x53\x96\x0f\xad\x11\x85\x32\xd4\x9b\x70\x76\xf2\x5a\xd1\x90\xab\x56\x94\x91\x4f\x71\x08\xb0\xab\x69\x69\xa1\x91\x28\xfb\x0a\xef\x00\xe6\x5a\x04\xfc\x83\x2d\x07\x69\x61\x67\xb9\x34\x2b\x35\x5e\xc5\x77\x37\xca\x37\xcb\xff\x3b\xb3\x19\x31\xcb\x58\x71\x2a\x4c\x46\x89\x52\xc6\x45\x9d\x56\x7a\x26\xe7\x95\x01\xe4\xe3\x1b\x1b\x09\x53\x53\x76\x32\x02\x9e\x9b\x49\x0f\x72\xe5\xa6\xe0\x57\xdd\xb4\xb3\x17\x56\xfd\x97\x04\x21\x8b\x1b\x8f\x4d\xcb\x54\x30\xc0\x25\x04\x2f\x47\x16\x9b\xfc\x7c\x80\xd7\x1c\xab\x8c\xa0\x7f\x34\x0a\xfa\x00\x8a\xbb\xe2\xe3\xa0\xab\xe1\x41\xda\x8d\x41\xca\x6b\xd6\x9d\x36\xfd\xb1\x1a\x41\xce\x0b\x72\xfa\xbc\x00\xd9\x7e\xa6\x05\x27\x00\x10\xb2\x59\xdf\x8e\x10\xdd\x22\xdc\x17\xc1\x39\x90\xa0\x5f\x02\x33\xe3\xca\x85\x6b\x40\x97\x1c\xb3\xe2\x1c\x8b\x39\x50\xb1\x3f\xc8\x4e\x1f\x26\x6c\x2a\x6f\xbe\xce\x88\xd5\x97\x25\xc3\xcf\xb2\x22\x5d\xbc\x1e\xe9\x5b\x68\x6d\xb7\x04\xfc\x93\x7b\x76\x6f\x0a\x9b\xfe\x95\xa4\x2b\x90\x10\xf1\x22\x9c\x61\x0d\x7e\xde\x09\x57\x12\xc8\xf0\xf1\xfb\x00\x47\xc0\x40\xa8\x70\x30\x6c\xd8\xdc\x74\xc4\xda\x51\xbf"}, {{0x42,0xb5,0x36,0x52,0xd0,0x8b,0x5d,0x76,0x6e,0x66,0xad,0x8f,0x3e,0xbf,0x69,0x3c,0xfd,0x77,0x90,0x7c,0xad,0xd9,0x8b,0x54,0x66,0xdf,0x77,0xdf,0xa2,0xc6,0x37,0xad,},{0x88,0x46,0x3b,0xb8,0xa4,0xb6,0x38,0x8d,0x92,0x4c,0xb8,0x62,0x09,0x83,0x41,0x95,0x43,0x5d,0x79,0xd7,0x7f,0x8c,0x02,0xf4,0x6b,0xbd,0x16,0xd8,0x2e,0xfe,0x42,0xb3,},{0x30,0xc4,0xb9,0x9e,0x68,0xec,0x33,0x51,0x30,0x8f,0xbc,0x76,0xd9,0xca,0xf0,0xaf,0x62,0x21,0xb5,0x96,0xb7,0x01,0x7f,0xe1,0x0c,0xc6,0x33,0x02,0x3b,0xa9,0x7f,0x02,0x38,0x96,0xfe,0x32,0x2b,0xaa,0x34,0x76,0x60,0x61,0x0e,0x05,0xfa,0x49,0x3d,0x21,0x8f,0xa3,0x60,0xf1,0x8d,0x93,0xe2,0x75,0xd1,0xef,0xf6,0x66,0xb6,0x3d,0xb2,0x04,},"\x9e\xe9\x13\xc7\x4e\xe3\xc5\xe8\xc9\x0d\x64\xb8\xae\x3a\x60\x04\x9f\xc7\x65\xe1\x76\x06\x0b\xcd\x1c\xd0\x9f\x0e\xda\x60\xbf\x23\xba\xdb\x8a\x1c\xaa\xc3\xd6\x6e\xbc\x52\x68\x14\x6e\xe4\xa5\x4e\x1e\xb2\x31\xed\x25\xef\xf9\x5b\x90\xa6\xe9\x83\x37\xa5\x40\xa3\xf4\x84\x49\x79\x4a\x48\x73\xbf\xc2\xe8\x47\x28\x96\x6b\xb7\xc6\xff\x67\x6a\x2f\xf5\x73\x11\xc1\xc2\x5e\x15\xfb\xf3\xd4\x0e\x9f\x25\xab\x5d\xb9\x1f\xdd\xb7\xa0\xae\x43\x6c\x8e\xc0\x70\x75\x4b\x6d\x74\x3a\xa1\xd6\x04\x8f\xb5\xbd\x7f\x5b\x8e\x4c\xca\xd2\x03\x28\x38\x95\x30\xf1\x13\x74\xa4\x89\xb1\xd5\x05\x31\xa3\x9c\x9b\x32\xb4\x03\x69\x62\x60\x06\xd2\x64\xa9\x9e\xec\x4f\xac\x13\x41\xf4\xe7\x46\x79\x45\x7b\x41\x8e\x6b\xbf\xba\x23\x3f\x1c\xa1\x58\xf7\xb2\x9d\x40\xd5\x03\x01\xf9\xd9\x25\x36\xfd\xc5\xc2\x3f\xe5\xde\xe4\xd6\xdf\x0e\xbf\x13\xdf\xa3\x75\x4a\x14\xc8\x56\x00\x9a\xde\xa1\xdd\xa4\x09\x30\x4c\x1f\x60\xd2\x53\x30\xfb\x10\x95\x79\x47\xa0\x05\x08\xf2\xfd\x76\x42\x2e\xac\x69\x4c\xc3\x9f\xa8\xae\x7f\xcc\x77\xa0\x2f\xd9\xee\x5f\x91\x0d\x93\xe8\xaa\xc6\x8f\x14\x5d\xd8\x78\x87\x6b\xa8\xed\xa0\xa4\x9f\xcb\x20\x9c\x34\xea\x22\x0d\x4d\x06\x05\x54\x6f\xc4\xa8\x09\xba\xf0\x10\xd5\x33\xe4\x5d\x17\xb0\xe1\x6a\x46\xe9\x1e\xa6\xfe\xc2\xcd\xc5\xa8\xb3\xec\x50\x14\xb2\x5e\x92\xd8\xe5\xc9\x28\xab\x06\x99\x3d\x4f\xe2\x3a\xc8\xd4\x5c\x89\x03\x78\xdd\x13\x3f\x00\xed\xb9\x37\xc0\x71\xf7\x5c\xfc\x13\xa4\x02\xe3\xe4\x29\xa8\x48\x65\x2a\x17\x5c\x9b\x6f\x6e\xac\x86\xf6\x18\x8a\x44\x48\xa9\x6c\xe2\x87\x2e\x5f\x65\xf9\xbd\xb8\x71\x66\xc9\xb8\x7a\x7e\x95\x8e\x80\xbb\x65\x66\xe3\xfc\xf8\x71\x19\x0c\xf4\xa8\x67\xe6\x12\xcf\xc1\xe4\x37\x1d\x2b\x73\xd2\xa0\xad\x0a\xa4\x00\xba\x69\xe6\x63\x36\x23\x3b\x0f\x3c\x52\xb8\xa6\x8b\xca\x05\x12\x56\x01\x25\x50\x46\xe6\xf4\x9d\x68\x8d\x2d\xb8\x5c\x7b\x82\x12\x70\x51\x6e\x3c\x06\x13\xf3\xf2\x3f\x9c\x57\xcb\x4c\x87\x14\x28\x5c\xdf\x95\xe1\x06\xa3\xb5\xaf\xca\xeb\x81\xb7\x2f\x34\x3e\x87\xbd\x92\xf1\x58\x1d\xcf\x9a\xa9\x0a\x02\x4f\xa4\xa1\x04\x80\x59\xe3\x0d\xe8\xff\x0d\x16\x79\x4d\xcd\x74\x5d\x2b\x2d\x53\x4c\x52\x0f\x82\x78\x53\x86\x74\xa9\x34\xc6\xf1\x4a\x84\x28\xe3\xda\x01\x8a\x36\xe4\x5a\xa5\x82\x7c\xf4\xb1\x52\x84\x34\x6f\xd6\x93\x63\x14\x92\x19\xbb\x0d\x1b\xc9\x27\xd8\xd1\x93\xc4\x82\x69\x2f\x97\xdc\x88\xd8\xed\x33\x7d\x0c\x9d\xc9\x9c\x7a\x5e\x11\x1d\xce\xd4\x22\x50\xd5\x80\xe2\x06\x92\xbb\x7b\x88"}, {{0x14,0xcf,0xe0,0x0f,0xa7,0x19,0x0a,0xe8,0x10,0x88,0x8a,0xe2,0xbb,0xd0,0xff,0x64,0x12,0xcf,0x1f,0xd4,0x08,0xa3,0x08,0x29,0x43,0x83,0xa1,0x94,0x53,0xb5,0x90,0x73,},{0x4e,0x61,0xaf,0xe8,0xc1,0x74,0xb6,0xee,0x1a,0x29,0xfa,0x09,0xcf,0x87,0xb4,0x00,0x81,0x39,0xf1,0x07,0x0b,0xc8,0x53,0x1b,0x6d,0x06,0xf5,0x4c,0x95,0x62,0xa4,0xf3,},{0xf7,0x85,0xa4,0x6f,0x69,0xbb,0xd0,0x99,0xfa,0x01,0x11,0x24,0xba,0x90,0x32,0xc1,0x89,0x74,0x2c,0x9e,0x00,0x1d,0xbb,0x87,0x81,0xd8,0x22,0x33,0x45,0xa9,0x56,0x9d,0xc1,0x44,0xca,0x69,0x4d,0x90,0x24,0x5e,0x0e,0x51,0x3e,0x88,0xab,0x02,0x3f,0x7f,0x0f,0x99,0xb7,0x41,0x61,0x59,0x75,0x8d,0xd0,0x34,0xe7,0xa8,0x9c,0xff,0x36,0x00,},"\xbc\x66\xf8\x01\xda\xa8\x29\x85\x8e\x74\x02\x93\xd4\xd2\x18\x7b\x8e\x1a\x5a\xfb\xa5\xfd\x67\xb1\x09\x56\xc6\x53\x46\xac\xa9\x44\x29\xd3\x2e\x4c\xfb\x35\x84\xab\x0e\x00\x5d\x0d\xd7\x42\x78\x1d\x47\xe8\x94\x47\xc4\xe1\xd8\x1b\xf7\xe6\x15\x4f\x8f\x73\xaf\x03\x36\x1a\xd5\x6e\xa3\xc0\x60\x00\x75\x4b\x9f\x32\x7d\x4e\xde\xac\xc4\xd3\x48\xaf\xb5\x48\x23\xe1\xc9\xd4\x9c\xd8\xff\x2b\x19\xf4\x20\x21\xb4\x0d\x58\x0c\x39\xce\x3d\x24\x36\x61\xb8\x54\x21\xfe\xc9\x15\xba\x9d\xd2\x76\x2f\x85\x0b\xd2\x08\xfd\xbf\x20\xff\xab\xa5\x6a\x46\x86\x60\xf1\x7c\x00\xfb\x1c\x0f\x4e\x85\x27\xa5\x09\xdd\x4e\xec\x13\x36\x0c\xf6\xe3\xca\xc5\x42\xb8\x75\x18\x2f\x2a\x7c\xe7\xbe\x0a\x33\x30\x2f\xe2\x6d\x36\x29\x62\x93\x84\xe3\x5c\x06\x78\x9d\xe6\x34\xe9\x0e\x96\x4f\xbd\xa8\xcb\xba\x98\x11\x1e\x22\xe8\xd0\x76\x26\x84\x26\x6a\xab\x76\xae\xba\x4a\x38\x07\x78\x69\x68\x14\xa1\xe3\x11\x94\x3c\xb3\x50\x58\x92\x64\x0c\x44\xe3\xaa\xc4\x53\x0c\x50\xac\x60\x4a\x8d\x2c\xcc\x7c\xea\xbf\xfe\xa4\xaa\x3d\x7f\x48\xa6\x6d\xcd\x75\x88\xb8\x02\x09\xdb\xc1\x73\xf0\xc6\x63\xe8\xfc\x87\xa3\x6e\x89\x2e\xc9\xa3\xff\x8f\x60\xd2\xe0\xd8\x70\x4e\x5b\x6c\xbb\x87\x32\x75\x15\x1a\xd4\xcc\x00\x57\x16\x50\x31\x90\x50\x39\x65\x1c\xa1\x0a\x95\xc6\xfd\xa3\xb2\x78\x27\xa6\x57\xef\x9a\x5f\xc3\xeb\x5b\x53\xca\xc6\x1d\xda\xf5\xa4\x17\x04\xc8\x78\x57\x0c\xbc\x3c\x41\xc4\x75\xb1\x17\xc0\x5e\xab\x0b\xb1\x96\xbc\xb7\xc4\x33\x34\xde\xbd\x64\xb9\xe3\x74\x50\xd2\x3f\x5c\x10\x16\x1e\xc5\xab\x4f\xcc\xd7\xcf\x30\x8e\x2a\x99\x95\xcc\x9e\x57\x8b\x85\xe8\x28\x5a\x52\x08\xb9\xef\xd4\x2a\xf9\xcf\x2a\xc2\xb3\xb7\x46\x42\x54\x88\x9a\x21\x87\x31\x7e\x32\x49\x97\x09\xb9\x13\x95\x3a\xd4\x6f\x1c\x23\xe1\xb6\xb5\x6f\x02\x4c\x4a\x7d\x48\x46\x11\x92\xc0\x1c\x56\xc5\x4c\x56\x47\x91\xec\x0a\x67\xb6\x1a\xcb\xf9\x57\xe6\xd0\xd7\xda\x80\x53\xed\x13\xa4\x18\x93\xd7\x67\xfc\x57\x37\xcd\x19\x55\x53\xda\x5d\x5b\x07\x06\x5f\x47\xd7\x2a\x35\xc4\x2b\x00\x1e\xb6\xdb\xd0\xf8\xe7\x7a\x4b\x76\xa6\x26\x61\x92\x64\x7f\x41\x55\xea\x11\xbd\x12\x37\xba\x77\xc8\x7c\x62\xbf\x4b\x01\x14\x9f\xc5\x8b\xc2\x8f\x0b\x5a\x28\x64\x85\xd3\x71\x7d\x32\x39\x64\x04\x62\x18\xe7\x0c\x7e\x38\xb7\xd5\xe7\x4b\xa6\xb1\x2b\x02\x2f\x18\x19\x7d\x92\xc1\x3b\xca\x89\x33\x5c\x85\x6c\xbc\x57\x56\xaa\x3b\x64\xec\x1f\x46\xe3\x96\xb1\x16\x1c\x87\x1c\xd2\xdf\xde\xd1\xa4\xec\x91\x92\x74\x29\x37\xc0\x70\x45\x31\xc7"}, {{0xac,0x0f,0x7f,0x04,0x18,0xde,0x67,0xe3,0x48,0xfa,0x6d,0x56,0x86,0xc4,0x6d,0x21,0xca,0x72,0x62,0x2e,0xe6,0x9e,0xaa,0xbe,0x00,0xd5,0xc9,0x07,0x5a,0x34,0xf1,0x79,},{0xfe,0xab,0xde,0x08,0xf0,0x0a,0x2b,0x68,0x2b,0xce,0x9d,0x45,0x99,0x0b,0xf4,0x5a,0xfc,0x95,0x83,0x39,0xdc,0x44,0x10,0x6d,0xad,0x33,0xb2,0xc4,0x90,0xef,0x70,0x90,},{0x75,0x91,0xcf,0x82,0x57,0xbe,0xad,0x39,0xa1,0xad,0x3b,0xa1,0x91,0x8d,0x51,0x8e,0x67,0x24,0x35,0x6b,0xf6,0x25,0xa5,0x73,0xea,0xe5,0x01,0xd1,0xaf,0x94,0x6c,0x13,0xc2,0x90,0xcb,0x63,0x15,0x6e,0xc9,0xd3,0x62,0x72,0x6e,0xe5,0x0b,0x39,0xfc,0x0a,0x7a,0x2b,0xbd,0x69,0xd4,0xa8,0x1b,0x75,0x93,0x2a,0x90,0xf8,0xc7,0xac,0x7d,0x03,},"\xe8\xd0\xe8\x32\x53\x35\xe0\xf3\x5a\x85\x46\x7b\xee\xd1\xe1\x1c\x6a\x20\x78\xc3\x5a\xe4\xa4\xa1\x05\x43\xed\xe4\x0c\x17\x12\xbc\x95\x20\x12\xd2\xf8\xfe\xc1\x05\xae\xf7\xc6\xc6\x5b\x36\x34\xb4\xa7\x4b\x22\xb4\x98\xb9\x13\x50\x7d\x1f\x6c\xfd\xe8\x38\x58\xe6\x83\x0c\x0a\xf4\xf4\x64\xa6\x89\x9d\x5c\x4e\x27\x9a\xff\x36\x75\x4c\x21\xda\x80\xa1\xbb\xd1\xdc\xf4\x62\x20\x37\x5b\x1e\x11\x2a\x5a\x72\xf1\xab\x6e\x8f\x64\x19\x42\xf6\x6d\x9b\xbd\xbb\x17\x9c\xf0\x13\x9e\xa8\xde\xb0\xf4\xb8\x14\xf5\x0c\x51\x33\x29\xa1\xa0\xe2\x67\xc4\x43\x3a\x23\x31\x82\xbc\x4a\x2a\xcb\x2c\x6d\x4f\x00\xb2\x40\x94\xd3\xbd\xc0\xeb\x81\xcf\x37\xd3\x82\x60\xc2\x10\x7d\xd9\x49\x06\x13\xd2\x76\xee\x1f\x72\x26\x6c\x6e\x4a\xcc\xa5\x24\x98\x11\xa0\xf8\xa7\xda\xe6\x6a\xed\xb7\x5c\x3d\xf4\xc8\xca\x3c\xb5\xd9\xc5\x67\xba\x54\x1e\xe5\xa9\x14\x0c\x50\x58\x72\x72\xaf\x34\x53\x0a\xb8\xb0\x8b\x9e\xc0\x32\xea\xc0\x60\x39\xe6\x92\x63\x0e\x2d\x55\x4d\xf7\x7c\x1a\x03\x88\xb3\xca\xaa\x3b\xe3\x75\x4a\x84\x96\x1f\xb2\x99\xe4\x02\x22\x71\x58\xce\x36\x3e\xac\x26\x47\x8d\x47\x97\x75\xe5\x68\x5a\xdb\xf8\x28\xbb\x35\x5e\x3c\x89\xcc\xe2\x41\x50\x3c\x15\x36\x64\x32\xba\x94\xcd\x3c\xd9\x54\x79\x14\x4b\x63\x6e\x0d\xe7\x0b\x3f\x16\xd1\xa3\xca\x51\x8e\x39\x90\x09\xa4\xc2\x47\xa7\xf9\x63\x67\xc7\x14\x66\x08\xaa\xcc\x00\x14\xfc\x35\xb8\x4a\xf9\x93\x3f\x09\xba\xbb\x89\x93\x7a\xbb\x8c\xed\x11\x18\x91\x34\x3d\xdb\x79\xf6\x0b\x78\x89\x8a\xb5\x93\x8f\x8b\xa3\x81\x4b\xd8\x00\x26\x05\xb1\xdf\xd2\x97\xfa\x07\xc4\x75\xa0\xd4\xf8\xf4\x45\x1a\xcd\x70\x7d\xe8\xaf\x6c\x0e\x88\x18\x83\x3a\x3a\xbe\x5c\x96\xd1\xa8\xc6\xc9\x6e\x2c\xb6\x33\x28\xeb\xa4\x4d\xd1\xd3\x46\x84\xe4\x12\xf2\x88\xe0\x65\x20\x9d\x11\xeb\x80\x94\xd2\x2e\x4c\xc8\x02\x62\x9c\xcb\xa3\x39\x26\xbf\x1a\xd3\x6a\x62\x85\x13\x8a\xbe\xe0\x5c\x5a\x39\xa4\x75\xf3\xfd\xd0\xb3\xec\x8c\x37\x0c\xd9\x57\xa8\x37\x9e\xc2\xcd\xaf\x03\xe8\x95\xc1\xba\x12\xb4\x49\xd6\xcd\x8b\xe0\xf3\x5d\x99\xe2\xb7\xfb\xaa\x92\xdd\x54\xe6\x4e\x7c\x35\xce\xb8\x8a\x71\xa6\x80\x52\x7c\xb3\x73\xaf\xe1\x4c\xdd\x15\x8a\x0b\x90\xbf\x2d\xae\xc8\x0d\x2e\xdb\xdc\x31\x28\xcd\x6b\x63\xfa\x53\x2a\x1c\x27\x8c\xdf\xe0\xf8\xeb\xb4\xab\xba\x5e\x1a\x82\xbc\x5c\x3f\xed\x15\xc5\x79\x5b\xd9\xff\xb5\x76\x08\x2c\xc4\x79\xfa\x1b\x04\xc5\xc5\xaf\xca\xd2\x69\xa0\xf1\xad\xdf\xe7\x60\x42\xc3\xa8\xf1\xf2\x53\x77\xb6\xcb\x72\xec\x16\x14\xeb\x63\x83"}, {{0xb5,0xa7,0xc7,0x67,0x93,0x63,0x80,0xb3,0xe9,0x87,0x51,0xca,0xfd,0x3e,0xa8,0x9b,0x38,0x8a,0x32,0xcf,0x82,0x8b,0x32,0x1c,0x5b,0xd0,0xcc,0x8d,0xd8,0x5b,0xaf,0x00,},{0xbe,0x7f,0xa6,0x5f,0x1f,0x6b,0xe5,0x10,0x27,0xf8,0xb8,0x48,0xdb,0x7a,0x8c,0x40,0x49,0x61,0xbf,0x1e,0x21,0xa2,0x3d,0xf2,0x3b,0xb8,0xce,0x05,0x85,0x0c,0xda,0xa1,},{0x60,0xe4,0xd2,0x3f,0x1f,0x08,0xfc,0xe4,0x66,0xc9,0x91,0x5d,0xde,0xd9,0x32,0x56,0xb5,0x2b,0x32,0x7e,0x5f,0x81,0xfb,0xb3,0x1d,0x1d,0x10,0xd3,0x21,0xc3,0x90,0x36,0x6e,0xf0,0x01,0xfd,0x75,0x9a,0xa9,0xd0,0xa5,0x51,0x62,0xd5,0x36,0x4d,0x91,0x8b,0x48,0xc7,0x32,0x7e,0x77,0xcf,0x53,0x58,0xbc,0x43,0x19,0xe3,0x25,0xcd,0xd6,0x08,},"\x6b\x67\xc7\x95\xd6\x6f\xac\x7b\xac\x84\x42\xa6\xc0\x99\x2c\xb5\x75\x88\x43\xb3\xe3\x93\x9e\x3c\x27\x6c\x6e\x90\x08\xda\x82\x00\x76\x77\xbf\x9e\x67\xe9\xac\x5a\x1a\x0f\x48\x6b\xea\xc0\xd8\x56\x19\x1f\xae\x25\xa1\x27\x39\x2b\xed\x46\x9b\xc7\x8d\xeb\x0c\x4b\x89\x3f\x67\xf1\x71\x6d\x83\x50\x90\x77\xe4\xa1\xbf\xd4\x13\x6d\x03\x15\x2d\xcc\x3b\x76\xd9\x52\x49\x40\xa6\x06\x4c\x66\x9f\xbf\x51\xf6\xb9\x10\x34\xb6\xd5\xf2\x89\x86\x78\xa1\x3a\x24\x70\xf6\x64\x1e\xc8\x02\x45\x7c\x01\x02\xc3\xeb\xf6\x34\x5c\x32\x7e\x74\x1b\x80\x64\x4b\x3a\x99\xbf\x72\xb5\x9a\xb8\x01\x6f\x35\xd2\x51\x88\xa0\x85\x75\x0d\xc0\x60\xe5\xa8\xd5\x24\xae\x21\x3f\x07\x8f\x28\x8c\x7b\x34\xbc\x41\xf3\xce\x35\x6b\xf2\xda\xfd\xd2\xe0\xdb\x4f\xb8\xd7\xc2\xc3\x19\xf9\x90\x60\x05\x97\x17\x02\xe4\x9c\xa6\x2e\x80\x50\x54\x0d\x41\x21\xd2\x42\xf2\xee\xab\x1b\xd1\x34\xe6\x0b\xf1\x1b\x3e\xc7\x1f\x77\x65\xa9\x7c\x0e\x09\x84\x55\xe5\x9d\x22\x35\xd6\xb3\x7e\x7c\x9f\x5b\x21\xfa\x11\x2c\x3b\xa3\x9e\x4e\xa2\x00\x61\x4f\x58\xdf\xb3\xeb\x7b\x83\x6f\x0b\xec\x1d\xdd\x43\x8d\x14\x22\x45\x0a\xe7\xde\xd1\xdf\x9d\x71\xe5\xd9\xbc\x8f\xa3\xb6\xe6\xf7\x84\x46\xce\x7c\x79\xd0\xbc\xfb\x1c\x2d\x26\xc6\xfe\xce\x68\x68\x2d\xff\xc6\x0a\x9c\x6e\x0a\xd0\x5f\x2a\x09\xf2\x1d\x75\x23\x25\x1c\xb0\xc3\xd0\x8e\xfb\xbf\x8a\xc1\x63\x39\xd7\x17\x02\x4d\x67\x60\x24\xc1\xee\x3c\x1f\x62\xc5\xae\xab\x7f\xff\x93\x7c\x57\x45\x4d\xf7\xbd\x96\xf9\x84\x4a\x2a\x39\x99\x58\x41\x8a\xaa\x6f\x18\x48\xbe\xbf\x7b\xf1\x29\x2c\x24\xeb\x5c\xd8\xea\x56\x34\x0c\x5b\xeb\x26\x88\x02\x4a\x69\x53\x27\x5b\xe6\xef\xd1\xb7\x1b\xa8\xbe\x6e\xb7\x7f\x0c\x65\xa7\xc5\x11\x1b\x96\xc4\xc1\xf3\x9c\xb7\xaa\xf8\x3f\xda\xae\x8d\x14\x8d\x7a\x8a\xf4\x0a\xe9\xe6\x51\x91\x9f\x7c\xe2\x8c\x8b\x2b\x6e\x45\xe4\xd3\xd5\x6f\xdd\x54\xd0\x0c\x24\x12\x79\x0c\xbd\x6f\x80\xe1\x08\x19\xe0\xb8\xf3\x7c\x84\xfa\x00\x49\x88\xad\xaf\xcc\xbb\xc2\x1c\x63\xd6\xbf\x2e\x73\x2d\x9d\xd6\x3b\xd4\x9b\x04\x12\xb9\x67\x4e\x1e\x88\xf6\x14\x2f\x7f\x86\x7f\x1f\x26\x89\x1b\x22\x43\x04\x23\xce\xc4\xdb\x91\xb6\x1c\x2a\xbc\x5c\x8f\xbd\x46\xb8\xb9\x35\x96\xfc\x51\x60\x68\x31\x36\xe2\x11\x29\x82\x27\x96\xeb\x5e\xa0\x88\xe0\xa7\xd8\x12\x1b\x25\x57\x2e\x3e\xc3\x77\x43\xd1\xff\x6d\x8d\x1c\x35\x36\x43\x9a\x10\xe8\x4a\x66\x5f\x2c\x75\xee\x73\xcd\xc6\xff\xac\x4c\xc2\x87\x24\x46\x9f\x79\x70\xb4\x75\x07\xdf\x3e\x1b\x14\xd4\x77\xae\xc2\xbb\x20"}, {{0xe1,0x36,0xf3,0x98,0xa6,0x05,0xd1,0x34,0x57,0x84,0x8c,0xea,0xd0,0x7c,0x72,0x86,0xf4,0x2e,0x2f,0x28,0xdf,0x8c,0x12,0x8a,0x3d,0x0b,0xb7,0x2b,0x29,0xaa,0xcc,0x19,},{0x6a,0xa5,0x04,0x5a,0x66,0xf7,0x72,0xa5,0x71,0xfe,0x3e,0x42,0xd1,0x17,0xef,0xcd,0xf6,0xc4,0x95,0x91,0x99,0x61,0x86,0x01,0x2f,0xa9,0x8f,0x7c,0x48,0xe0,0xcd,0xa7,},{0x75,0xa4,0x5c,0x6b,0x95,0x66,0x89,0x98,0x29,0xb4,0x1e,0xe5,0x17,0xb7,0x04,0x5a,0x47,0x3a,0x4f,0x7a,0x26,0x41,0x43,0x9b,0x5d,0x7c,0x56,0x73,0xe0,0x0d,0x8f,0x5c,0x06,0x6f,0x12,0x91,0xf8,0x5d,0xea,0xda,0x05,0x02,0xbd,0x16,0xe9,0x70,0x9f,0x82,0x7d,0x47,0x51,0xf2,0x87,0x38,0x62,0xe8,0x21,0x9e,0x57,0x74,0x6a,0x19,0xa9,0x00,},"\xd3\x28\x57\x9d\xe4\xc5\x37\x2f\x3b\x38\x2c\x48\x01\x1b\x2d\x4c\x60\x29\xf9\x04\xf3\xa3\x3e\x07\xd0\x83\xd7\xe2\xb0\x37\x56\xaf\x2c\x4c\x97\xa2\xd6\x6c\x10\xec\x41\x54\xd8\x74\x79\x20\x42\xb6\x46\xe4\xaa\xe5\x10\x1d\x50\x1b\xd1\xbf\x6f\x51\x17\x51\xd0\xaa\xf8\x21\xcd\x7c\x0b\x3e\xe6\xd0\xd7\xc6\x90\xa2\x77\x7f\xe1\x6b\xdc\x7e\x49\xb7\xda\x4b\xbb\x4c\xce\x3b\x61\x8e\xe9\xb6\xf2\xe3\xa1\x92\x40\xcd\xb7\x07\x33\xb9\x84\xb1\xc9\x40\xec\x66\x96\x0b\x72\x8c\xbb\x87\x4b\x80\x64\x31\x23\x72\x2d\xb9\xdb\xbe\x88\x32\x20\x08\x93\x1b\x1c\x89\x4e\xf5\xd2\x10\x99\xe6\x3e\x7c\x65\x00\x7a\xcd\x61\x78\x4d\xb4\x99\x4a\x2f\xb4\x0c\x3e\xfe\x9c\x47\xfa\xd6\x37\x63\xdd\xe0\x6f\xa0\x17\xa2\x6b\x82\xe7\x1b\x9d\xaa\xbc\x4f\xf0\xf6\xc7\x9b\x8c\xa7\xcc\xb4\xdc\x20\x31\xbe\xf1\x08\x73\x67\xc7\x08\x69\x74\xa0\x05\x66\xde\x41\xa7\x1e\x11\xd9\x93\xab\xe4\x33\x56\x98\x92\xb8\xf7\x5d\x76\x37\x99\x32\x45\xc8\x84\x47\x8a\xbe\x3f\x95\xf4\x4b\x0a\x4b\xbe\xde\xfe\xf8\x90\x6b\x75\xe0\xd3\x40\x20\xae\x53\x64\x55\xb0\xe0\x6f\x9b\xfe\xe1\x1e\xc9\xb8\x60\x4b\xac\x2c\xc6\xeb\xe0\x8c\x8f\xd5\xf5\xcc\xcc\xcb\xc1\x61\x7b\x7c\xf6\x9a\x3c\x51\x2e\x1f\x0b\xdb\x58\x5d\xf5\xe1\x27\x43\x06\x1f\x7c\x20\x53\xbc\x37\x14\x43\x61\xc0\xb3\x5f\xd3\x9d\x56\xb1\xef\xaf\x92\xc6\x10\x36\x01\x93\xec\x20\x59\x8b\x82\x85\x80\x50\xa6\xd9\x9e\x08\x2b\xce\xfd\xbd\x53\x18\xee\x5e\xfb\x3b\x26\x0f\x32\x76\xf3\xc7\x3f\x9c\x24\xce\x0c\xda\x33\xc7\xac\xc5\x0c\xa5\xdd\x61\xbd\xb8\x5d\x79\x38\x25\xf6\x73\x2a\x6e\x33\x0c\xe6\x72\xac\x44\xfe\x6b\x2b\x9a\xfe\x6e\x2e\x96\x5c\x02\xd2\xa1\xfe\x0b\x57\xcb\x1b\x31\x7c\x1d\x31\x3e\xfd\xc3\x56\x49\x2f\xe8\x96\xfd\x14\x9d\xae\x51\xc9\x5c\xcd\xbb\x7d\x11\xf7\xd6\x10\xe0\xc6\xe2\xfd\x3e\x57\xfc\xfe\xf1\xc5\x7c\x71\x19\xa0\xaf\x6c\x78\x21\xfe\xcd\xb8\x9d\x80\x30\x2b\x49\xfa\xd4\x17\x43\xf3\xd2\xd7\xa0\x75\x15\x4b\x31\x43\xe5\x1a\xeb\x94\x7d\x4b\x5e\x8b\x7e\x4c\xa8\x6f\xec\x3e\x80\xbd\x9a\x78\x6e\x4e\x46\xed\x1e\x6e\x9f\x7e\x0b\x63\x52\x66\xd9\xfa\x09\x7a\xa9\xe2\x0f\x32\xe3\xd2\x77\x2d\x7c\x1f\x00\x8b\xcd\xd3\xf9\x2c\x72\x83\xc5\x77\x90\xc3\x62\x2c\xba\xd3\xca\x35\x80\x3c\x45\xc8\x69\xdc\x37\x7f\xf3\x6b\xd7\xc0\xe6\xf1\xbb\x89\x2f\x73\x29\xa6\xe0\x8d\xf1\xdb\xeb\xc8\x1d\xc7\xb1\x15\xf8\x52\xe3\x6a\xe5\xd9\x28\x72\x5f\xa7\xc6\xfb\x9f\x28\xb0\xfb\x39\x4f\x9e\x38\xfd\x87\x62\x5c\x5f\xa2\x3a\xab\xa4\x70\x54\xe8\xcf\xea"}, {{0x97,0xb6,0x70,0x2e,0x24,0x68,0x05,0xdb,0xcf,0xc7,0xfa,0x42,0x4a,0x8c,0xaa,0xbc,0xf2,0x62,0xd4,0x66,0xa0,0x5e,0x0d,0xd2,0xd4,0xe7,0xc3,0x74,0xd5,0x7d,0x52,0x51,},{0xa7,0x16,0xc3,0xd5,0xce,0x78,0xf4,0xd9,0xc5,0xbe,0xe3,0x44,0x7d,0xda,0xf4,0x88,0x1c,0x98,0x6e,0xfd,0xf6,0x67,0xac,0x89,0x77,0xb4,0xfb,0x69,0xb5,0xa7,0x11,0x0a,},{0x90,0x00,0x55,0x41,0xdc,0xc1,0xd7,0xab,0x83,0x7f,0x4d,0xe5,0x39,0x3f,0xad,0xd6,0xa9,0x2b,0x26,0xa7,0xd9,0x3a,0xf3,0xf6,0x69,0xe0,0xf1,0xbf,0xd6,0x21,0xcb,0xd0,0x0c,0x8a,0x23,0x05,0x6d,0x2d,0xa6,0x78,0x65,0x57,0xc8,0x28,0xa4,0x9b,0xe1,0xe4,0x02,0x1d,0x99,0x31,0x12,0x35,0xac,0x0d,0x4d,0x56,0xee,0xfc,0x7c,0x95,0x36,0x05,},"\xea\xa8\x6c\xf7\x6f\xcb\x65\xc6\xf9\xfc\x20\x8a\xc3\x6f\x28\xb2\x00\xd3\xb4\x03\xac\xa7\x32\x07\x46\x1d\x8d\x96\xaf\xa2\x46\xd7\xc6\x9d\x17\xa7\xa9\xbf\x77\xf0\x55\x43\x56\x3a\x7d\x3e\xca\x1d\x40\x79\xe2\x29\x38\xab\xa1\xf6\xe9\xe0\x4b\x49\xfb\xc8\xed\x6f\x63\xb5\x99\x73\x0d\xe9\x97\x98\x31\xc0\x2f\x8c\xba\x61\xe5\x55\x60\xd7\x11\x0d\x4c\x6e\x61\x67\x97\x06\xa7\x15\x5d\x5a\x67\x3c\x54\xd1\x6f\xe4\xd2\x28\xc2\xec\xa7\x54\x6f\xaa\x13\x39\xf2\x6d\x7a\x0b\xb4\xee\x33\x96\x11\xaf\xde\xc9\xa6\x8f\x5f\xf5\xb5\xd2\x03\xb6\x00\x53\x3a\xd5\xa3\xb3\x68\xc8\x5d\xa1\x15\x63\xf0\x98\xcc\x26\x87\x1e\x7f\xa9\x9a\xef\xd3\x8c\xc2\x61\x51\xdb\x3b\x0b\xae\x38\xdb\x6a\x87\xb6\x78\x9e\x58\x40\xb1\x08\x84\xaf\x51\x1f\x3e\xcb\x3e\xcb\xf9\x4f\xf8\x6f\xdb\x90\x55\x05\xa8\xc3\x4b\x2a\xa6\x1f\xf2\xec\x9e\xc8\xfe\xbd\x1d\xfe\xd0\x96\x5b\x6f\xc5\xb9\xf8\x86\x9d\xc3\xa4\x75\x59\x97\x4a\x88\x22\x99\x67\x06\xda\xef\xbc\x6c\x5b\xf9\x84\xce\x06\xb0\xd3\x2b\x31\xcf\x9d\x8a\xd1\x36\xae\xd4\xb0\x52\x58\x6d\xce\x70\x73\xb7\x67\xb2\x34\xe4\xa3\x7b\xeb\xbc\x39\x3d\xd2\xe0\xf7\xd1\x55\x17\x35\x48\xc3\x8a\x15\x83\xef\x94\xe0\xaa\x84\xe7\xfc\xe0\x4f\xcc\x9b\x4e\x30\x0a\xd0\x99\x44\x9a\x49\x23\x2a\xbd\xcf\x3d\x1a\x6e\x6f\xca\xb6\x96\xf5\x99\x6f\x9b\xd1\xb9\x48\x5d\x07\x47\x55\xac\x5b\x42\x97\xfe\xe3\x12\x4c\x7c\x03\x97\x6a\x40\xd5\x70\xbe\xae\xc2\xfa\xc9\x92\x33\x9f\x88\x5f\x74\xd4\x0e\xd4\xac\x87\xa4\xf4\x0c\xef\xbc\x48\x64\xf4\x4c\x36\x83\xaa\x8f\x10\x26\xe2\xc3\x7a\xef\xfc\xeb\xfd\xfe\x24\xdd\x0b\x01\x9c\x36\xa7\x98\x88\x20\x30\x04\xb2\xad\x83\xe8\x92\x21\xf3\xf6\x36\xf4\x55\xbb\x64\xe1\x7d\x17\x54\xc7\xc6\xdd\x7f\xc0\x9a\x0d\x65\xdd\xdd\xed\x46\x22\xfc\x4f\x9f\xba\x07\x2b\x45\x10\x34\x35\xe1\x02\x20\xa5\x86\xf1\x52\x26\xd2\xeb\x37\x7f\x40\x64\xd3\xff\x37\xcb\xb4\x70\x5a\x1f\xaa\xf5\xb3\x48\xf8\xc0\xef\x7f\xd1\x56\x4d\x42\x86\x88\xf5\x8f\x33\x92\x96\x7c\xf3\x96\xa8\xff\x2f\xd9\xe7\xb5\x17\xb7\xd6\xa5\xed\xe7\x44\x03\x73\xd8\xcc\x1a\x83\x99\x00\xe8\x4d\x42\x25\x42\x83\xd9\x69\x9c\x7c\xa3\x7e\x47\x76\x92\xa3\x49\x40\x08\xb8\x04\x44\xc5\xcf\x61\x4c\xbb\xc1\x69\xbf\xb9\x29\x63\x03\xc6\x45\xe2\xce\x28\xd1\x68\xdc\x6c\xba\xef\xae\x9c\x73\x19\x1f\x57\x15\x1a\xa4\x73\x00\x9d\x29\xe1\x80\x0b\x10\xf4\xc4\x98\x60\x9b\xa1\x15\x20\x98\x5c\x78\x09\x20\x58\x69\x6f\xdb\xca\x9c\x02\x0e\x2d\xfb\x8a\x04\x3a\x3d\xe8\xe4\x52\xd5\x8c\xd1\xad"}, {{0xd1,0x52,0x8c,0x14,0x06,0xa6,0xe4,0x94,0xa0,0x2f,0x63,0x53,0x05,0xfa,0x74,0xd7,0x45,0xc6,0x93,0x27,0xfd,0x31,0xb7,0xd2,0xc2,0x62,0x3d,0xe2,0xc0,0x30,0xed,0x85,},{0x0c,0xfe,0x36,0x9c,0xf9,0x3d,0xaf,0x6d,0x53,0xef,0x02,0x8d,0xdb,0x9f,0x00,0x04,0x43,0xb0,0x97,0x2f,0xe2,0x53,0x2f,0x83,0xa4,0x1c,0xe6,0x57,0xc1,0x83,0x6c,0xa3,},{0xb8,0x39,0x9b,0xc3,0x32,0x6c,0xba,0x0a,0x93,0xa4,0x24,0x97,0x16,0x8b,0xf5,0x7f,0x91,0x06,0xee,0x43,0xd3,0x9b,0xf0,0xfc,0x86,0x68,0x51,0x99,0xdc,0x6e,0x0a,0x13,0xb9,0xc7,0x24,0xef,0x17,0xe7,0x88,0x2a,0xf8,0xc2,0xeb,0x70,0xf6,0xc9,0xe4,0x2d,0xfa,0x2f,0xbf,0x0c,0x1c,0xb5,0x00,0x2b,0x58,0xf1,0x08,0x66,0x19,0x73,0x3e,0x02,},"\xab\xb3\x67\x3f\x3f\xa1\x7a\x33\xa7\xaf\xf7\x6e\xac\x54\xe7\x68\x7c\x04\xbc\x84\xf7\x66\x65\x1a\x8b\x24\xba\x22\x94\x79\x08\xb0\x4c\xa4\x59\xfe\xb9\x8a\xce\x7c\xab\x1e\x74\x33\xa6\xa6\xbe\xff\xd8\xd9\x50\x4e\x29\x91\xda\xa0\x64\x4d\x61\xb8\xb2\xe4\x54\x48\xf5\x4d\xf8\x81\x3f\x50\xc4\x18\xb4\x8f\x49\xe1\x03\x4e\x85\x1c\xbe\xc3\xef\x0a\x18\x50\xef\x72\x67\x33\xaf\xaf\x68\xe1\xa4\x61\x04\x16\x51\xc1\x38\xd5\x4e\x4e\xf7\x81\x87\xaf\x9a\x73\x42\xf7\x12\x87\x27\xf9\x03\xbf\x4f\xc5\xef\x3e\x40\xc6\x4e\xc2\x6f\x89\x2f\x59\xad\xd9\x8f\xe3\x94\x76\x5a\xaa\x7d\x09\xca\xe8\x1b\x9f\x69\x9a\x9d\xd8\xbf\x2e\x2f\xe8\xe1\xec\x78\xfc\x88\x4e\xaa\x0d\x2d\xbd\xbf\xb8\xc1\x68\x83\x3e\xe0\xd2\x18\x03\xcc\x35\xdc\x62\x8d\x7c\x07\xe0\x44\x04\xfb\x60\xe8\xc4\x90\xa8\xdd\x34\xed\xbc\xba\xaf\x80\xcc\xda\xe3\xf7\xd3\x73\x9e\x0e\x89\x70\x23\xee\xb5\xb1\xa8\xc0\x0a\x96\x73\xc5\x92\x58\x24\x0d\xdd\x44\x20\x65\x0f\xe5\x77\x1f\x7e\x28\xcb\x23\x99\xf5\xe1\xe0\x2a\xd0\xb6\x43\x2d\x9b\x49\x60\x8f\xcf\x0b\x1c\x0d\x7c\x41\x2a\x44\x52\x55\xb8\xba\xdc\x53\x21\xc2\x4c\x1a\xc9\x2c\x79\xa0\xba\xcc\xb9\xde\xff\xed\x02\xd1\x2f\x55\x36\xcd\x59\x5d\xc6\x60\x83\xb3\x3a\x36\x03\xa9\xd1\x6e\xce\xa2\xbf\x38\xc4\xf2\xaa\xf5\x70\xf3\x0d\x21\x16\x2b\x2e\xfd\x7e\x4d\x5e\xbf\x1e\xca\xe9\x58\x8e\xee\x36\xdd\x9d\x3d\x8e\x3b\xe7\xbc\x6d\x4b\xc2\x18\x56\x22\xf1\x1d\x1d\xa7\xc4\x9c\x93\xe6\x23\xac\x56\xfe\xe7\xe3\x70\x6d\xb8\x31\x3c\xf9\x26\xbe\x92\xe5\xc8\xa5\x39\xfd\x16\xb0\xf4\x38\xda\x8e\x51\xa5\x1f\x2d\x27\x64\x03\x56\x12\x4e\xf7\xbe\x2f\x91\xff\xa1\x79\x6a\x91\xb1\x23\x01\x93\x4d\xde\xf0\xc7\x93\x8a\x7a\x45\xf3\x6f\x53\xb6\x32\x2d\x9c\x8f\x9d\x27\x5e\x1c\xd2\xc0\xf1\x29\xf8\xab\x8d\x74\x15\x5b\x5d\x9e\x5c\x15\xc0\x15\xb0\xb0\x00\x03\xb2\xbd\xdf\xa0\xbc\xfc\xc6\x93\xa1\xdf\xcb\x4f\x53\xda\xec\x12\x6d\x16\x69\xf3\x3f\x39\xad\x05\x51\x9e\xf7\xc5\xce\x40\xe6\xf4\x57\x3c\x24\x7a\x32\xc4\xa0\x16\x28\x31\x35\x2f\x6d\x55\x8f\xf5\x83\x6a\x53\x17\xdb\xc4\x51\x5b\x3d\xf2\x69\xa8\xac\x76\xd6\x43\x6f\x26\x4b\x64\x56\x1e\x79\x68\xb5\x82\x21\x08\x48\x7b\x04\x5c\x92\xd6\xc6\x14\x2a\x1c\x28\x55\xb3\x8b\xee\xbd\x64\x25\x65\x12\x3c\xc8\x27\xcb\x18\x31\x19\x9e\x6f\x12\xa7\xe4\x23\x68\x56\xb9\x4d\xad\x73\x8f\x69\xd1\x10\x6e\x77\x35\xd7\x11\xf7\xc6\xa3\xa3\x37\x80\x41\xfc\x7a\x21\x10\x3b\xbf\x86\x69\x07\xd4\xed\xdd\xaf\xa0\xe7\xf1\xbb\x5f\xfd\x41\xa6\x0d\x64"}, {{0x51,0x23,0x40,0xf9,0x61,0xf1,0x42,0xd1,0x91,0x5e,0x85,0xfe,0x4f,0xa0,0xf5,0x51,0xf8,0x08,0x92,0xe7,0x5a,0xcc,0xce,0x7c,0xd1,0x86,0x9e,0x6e,0x2c,0x9e,0x80,0x15,},{0x0c,0xa0,0x26,0x04,0xfa,0x87,0xe2,0xc2,0x05,0x06,0x25,0x1f,0x07,0x92,0xcd,0x21,0x25,0x85,0x6f,0x0a,0xb1,0x6d,0x66,0x3f,0x28,0x11,0x96,0x3b,0x1f,0x2d,0x81,0x72,},{0x6b,0xb4,0xd9,0x75,0xaf,0xae,0xf4,0x1e,0xa9,0xef,0x08,0x5a,0x68,0xc5,0x68,0xa0,0x5d,0xa3,0x7e,0xf2,0x1d,0xad,0x46,0x4e,0xd8,0x6a,0xc0,0xd4,0x08,0x0e,0x7d,0x01,0x29,0xfb,0x02,0x31,0x31,0xec,0xa5,0xf7,0xad,0xb2,0x58,0x6a,0x18,0xbe,0x40,0x56,0x2f,0xa2,0x76,0x4c,0xa8,0x07,0xe6,0x70,0xa0,0x59,0x6a,0x5c,0x54,0x7b,0xc0,0x01,},"\xaf\x37\xb2\xc7\x58\x7a\x8d\x5b\xc8\x95\xcd\x35\x77\x46\xab\x03\x55\x2a\x0a\x56\x1a\x29\x3d\xc7\x16\x4e\x39\xb6\xa1\x33\x3a\x92\x0b\xb6\xda\xca\x60\x06\x67\x6e\x99\xbb\x7e\x92\x8f\x9e\xa3\x91\xe5\x48\x02\xa8\xd3\x15\x96\x28\x9f\xb9\xbf\xe3\x00\x00\xcf\x52\xeb\xf0\xc1\x24\xa5\x89\x5b\xce\x33\x98\xc1\xbf\x53\x56\xbe\x82\x61\x9b\x8d\xdc\x15\xa7\x7c\xa9\x22\x49\x4b\xdb\x04\xf5\xc2\xe1\xb6\xe8\xff\x77\xae\x74\x9f\xaf\x2b\x8a\x41\xd8\x22\xc1\x7c\x06\xdf\xb7\xa5\xf9\x43\x4d\x8b\xd7\x15\xec\x87\x78\xe8\x0b\x81\xd2\xe8\xd0\x62\x98\x74\x86\x90\xc6\x55\x52\x83\xc9\x8b\xb9\xb1\x9b\x92\x46\x66\x7b\xc4\x10\x46\xff\x98\xc2\xc3\x5d\x16\x1e\x1f\x4d\x69\xd2\x54\xec\x5a\x07\x6f\x25\xbd\x5c\x7e\x2c\x98\xca\x3c\x09\xd8\x08\x33\x96\x2c\xf9\x66\x02\x87\x88\x40\x96\xeb\x30\xc4\x6c\x54\x17\x41\x06\xaf\x4e\x29\x79\xa1\x12\xf3\xe8\x94\x4e\xaa\xf7\x66\x9c\x40\xd5\xaf\xb9\x1a\x02\x4a\xbb\xeb\x14\x66\x4e\x30\x89\x03\xe4\xd2\x6d\x70\x09\x44\x6e\xe2\xe8\x30\xab\x5e\xca\x0d\xbb\xc5\x13\xfb\x4e\x04\x35\x1d\xf2\xf6\x74\x18\x64\xfb\x23\x71\xb2\x50\x2b\xe4\x3d\xc1\x5f\xc0\x44\x31\xff\xf5\xeb\x8d\x4b\x68\xd7\x24\x62\xae\x32\x2e\x57\xba\x2d\x4a\xdd\xdf\x15\xa1\x90\x2c\x21\x13\xae\xbd\x3b\x5d\x61\x29\x17\xc1\xbb\x73\xe7\x08\xad\x54\x18\xe7\xd4\x5e\x4b\x72\x80\xfc\x88\x96\xab\x80\x85\x3f\xf5\xf8\xe9\x8f\x26\x55\x3f\xc7\x8e\x30\xb3\xb0\xd7\x27\xbf\x6d\x06\x4a\x8f\x32\x88\x87\x68\xc5\x1e\xbb\x61\xb2\xc6\x00\xb4\x02\x8a\x77\x06\x0f\xeb\xbb\x02\xeb\x3d\x20\x17\x80\xe7\x45\x66\xc8\x6a\x34\x03\x18\x36\xbc\xe9\xea\xda\x81\xe5\xd0\xf3\x39\x60\xcb\x2d\xf0\x8a\xff\x3c\x97\x49\x21\xfc\x9b\x7d\x3a\xa7\xc8\x1e\x9c\x67\x1e\xd6\xd3\x3e\x7a\xe5\xed\x03\xa5\x41\x7d\x7e\x5c\xd6\xfa\xac\x91\xb5\x4b\x8f\x79\x2f\x48\x28\x3c\x60\x64\x7d\xe3\xda\x81\x6c\xa9\x75\x6c\x5b\xfe\x1b\xb8\xb5\x97\x9e\x57\x54\x01\xbd\xa3\x4e\x9c\xbc\x4d\x77\xe7\x11\xd6\xb7\x3b\x82\xda\x19\xda\x47\x3b\x55\xe8\xe7\x2d\x34\x1b\x2d\x85\x03\xe4\x86\x09\xbe\x0f\xe2\x91\x44\x4c\x28\x36\x69\xe5\xde\xad\xea\xf5\x2a\xa8\xec\x48\xda\x83\xf5\x32\x8c\xc0\x99\xfb\x41\xf8\x2b\xec\xdd\x58\xd0\x4b\x1d\x66\x20\x3d\x73\x7b\xed\x06\xcf\x21\xc9\x78\x19\xac\x13\xed\x71\x1c\xa2\x17\xa5\x7c\xf7\xd8\x0f\xf0\x82\xaa\x1a\x1c\xf8\xfe\xa5\x55\xcd\x2e\x47\xe4\xdd\xab\x5e\x3f\x99\x41\xad\x4f\x77\x5f\x49\x41\x9d\xca\xdb\x5b\x00\x4b\x68\xca\xf4\x5b\x27\xef\x49\xba\x14\xfb\x52\xb0\x9f\x1b\x18\x5b\xe9\xf9\xc7"}, {{0xb1,0xb6,0x36,0xe9,0x57,0x57,0x4c,0x21,0xa9,0x57,0xa4,0x5b,0xd1,0x95,0xc6,0xf9,0xfe,0x4c,0xc1,0xc5,0x7e,0x84,0x13,0x4d,0x39,0xb4,0x2e,0x1a,0x84,0x32,0x9e,0xdb,},{0x95,0xe7,0x7b,0x15,0xdd,0xa4,0x7c,0xaf,0x69,0xb7,0x28,0x88,0xdd,0x69,0x96,0x1b,0xac,0xbe,0xc3,0xbc,0x75,0x35,0x30,0x03,0xe8,0xbf,0xf0,0xa4,0x3d,0xdf,0x4b,0x7a,},{0x76,0x3c,0x7d,0x0d,0x46,0x87,0x8e,0x5c,0x7e,0xcf,0x71,0x04,0xfc,0x1f,0x22,0x30,0xe4,0x61,0x78,0xa2,0x7c,0x75,0xf1,0x96,0x16,0x9c,0x02,0x79,0xed,0xb0,0x1c,0x28,0xfc,0xde,0x3b,0x0d,0x5b,0x86,0x35,0xcf,0xe3,0x39,0xfb,0x23,0x27,0x74,0xb2,0x20,0x6d,0xab,0x8a,0x46,0x0c,0xe4,0x17,0xab,0xf4,0x90,0xbb,0xfa,0x78,0x5c,0x02,0x05,},"\xe2\x5d\x32\x9c\xad\x83\x64\xd2\xde\xc2\x43\x73\xe9\x2d\x9d\x50\xfc\x7a\xbe\x8f\xdc\x3d\x0b\x4e\xe5\x7e\x1c\xfa\x5b\x7c\xd5\x8c\x23\xbe\x91\x8f\x05\x17\x9b\xa8\x41\xb6\x1e\x18\x00\x34\xca\x7e\x74\xd4\x9b\x0a\x1a\x2c\xeb\xb4\xbe\x65\x34\x4c\x91\x3c\x46\xd3\x26\x52\x33\x6e\x6b\xda\x4e\xfa\x3f\x58\x73\x0d\x39\xa6\x33\xa1\x4c\xa3\xd9\xa6\x2a\xbb\x0a\x73\x98\xcc\x29\xaf\xf9\x16\xee\xea\x2e\x7c\xaa\xc8\x08\x45\x56\x2f\x73\xd4\x03\x0f\x9c\xab\x0b\xf1\xc6\x40\x7f\x54\x01\x51\x3e\xf8\x7f\xe6\xdc\x09\x9d\xbc\x5d\xfc\x33\x52\x91\x1c\x07\xaf\x6c\x52\x3b\xef\x4c\xca\x78\x37\x96\x59\xe8\x80\x3f\x58\x59\x04\xee\x6e\xf6\xfd\xe7\x73\x66\xd9\x6d\x2c\xcf\x24\x8a\x53\x20\xd9\xb8\x29\x8b\x2a\x73\x36\x38\x79\x10\x7a\x02\xb4\x7f\x57\x21\x3a\x85\x20\x3a\xbb\xca\x5a\x41\x95\xf8\xaf\x3e\x35\x93\xed\x2f\xa3\x50\x4b\xb7\x6a\x3e\x1b\xe2\x4b\x66\xd3\x55\x66\x29\x32\xcb\x67\xdc\x88\x50\x3a\xfa\xf7\x62\xbf\xf7\x41\xba\x1c\xac\xe9\x7a\xc5\x8b\xaf\xad\x5d\x36\xc3\xaa\x02\xe0\xcb\xe2\x0e\x5f\x3d\xc8\x09\x2c\x51\x2e\xaa\x9c\x49\x43\x47\x4a\xad\x41\x99\x00\x76\x72\x1a\xd3\xf5\x3f\xb0\x8a\xc2\x29\x82\xed\x9b\x15\xc7\x51\xa9\xe2\x33\x82\xf6\xa6\x9c\x72\xe6\xe2\x44\xe0\xeb\x68\x1e\x6d\xd2\x28\xd3\x77\x4f\xcc\xb3\x7e\xb6\x23\x2f\x82\x5d\x16\x9a\x2a\xc8\xb7\xe1\x8a\x42\xcd\xaa\x4f\x2c\xf0\x58\x90\xbb\x0c\x59\x8c\xf8\xc3\x1f\x82\x9e\xf8\xca\x24\x35\xbd\xcc\xeb\x0e\x61\x93\xad\xa7\x84\x1e\xe6\x92\xf3\x0a\xed\xf8\x8b\x62\x73\x11\xb1\x38\xac\x78\xb3\x91\x3e\x06\xf7\xc3\x21\xca\xfb\x39\xd9\x01\xdf\xe1\x74\x30\xb1\xa2\x0b\xc4\x37\xa5\x55\xa5\x78\xfa\x31\xe4\xb6\x80\x79\x54\x45\x6b\xd4\xb0\x4d\x5d\x88\x79\x87\xbd\xf0\x4e\x0f\x14\xaf\x31\x41\xb2\x4c\x3a\x7b\x9a\xc7\x5a\xa3\x2e\x2f\xcd\x21\x71\xa1\x26\x09\xe1\x5e\x73\x09\x4f\xd0\x92\x21\xb4\xd2\x70\x90\xe7\x32\x19\xb6\x48\xbc\xaa\xbf\x38\x07\xc9\x28\x0b\x6c\x4a\xd7\x50\xa4\x68\xbe\x0e\x1a\xd3\xe6\xe6\x30\x16\xcb\x5c\xec\x3a\xad\xdc\x56\x89\xc2\x95\x5a\x2a\x8d\x5b\x89\x84\xd7\xc4\x43\x76\xfd\xd9\x4d\x3f\x5f\xf1\x29\x8f\x78\x17\x2b\x56\x59\x13\x70\x4e\x90\xe5\xac\x03\x8c\xb1\x72\x0e\x19\xb0\x80\xf8\x1b\x53\xd6\xa4\x5d\x45\x28\x53\x07\x11\xb6\x3d\xfe\x1e\x47\x81\xc2\x4d\x74\xae\xb2\xbd\x8a\x73\xfd\x2a\x99\x3c\x5b\x08\x91\x39\x21\x96\xac\x32\xc5\x23\x69\x99\x60\xd8\xb2\x3e\x01\x66\x4c\xf9\x02\x1d\x93\x92\x80\x50\xca\xf9\x7f\xb9\x85\x55\x45\x80\xe3\x33\x36\xa4\x56\x32\x47\xdf\x59\xef\x6c\xae\x53"}, {{0x10,0xca,0x41,0x3d,0x70,0xeb,0x3d,0xb6,0xe3,0x37,0xf0,0xf1,0x1a,0xbc,0x07,0x5c,0x95,0x85,0x9e,0x82,0x5f,0x87,0x61,0x76,0x07,0x69,0x52,0xd2,0xf1,0x88,0x80,0x30,},{0x50,0x28,0xba,0x38,0xaf,0xec,0xc2,0x42,0x63,0x5f,0x6e,0x35,0x3d,0x5f,0x4a,0xfd,0x12,0x3f,0x86,0x0a,0x04,0x25,0x22,0x0e,0x96,0x65,0x52,0xa0,0x57,0x88,0x08,0x23,},{0x6a,0xec,0x02,0xdc,0x6b,0xdf,0xcb,0x67,0xf0,0xef,0xc1,0xfd,0x31,0xe2,0x3e,0x69,0xe3,0x71,0xab,0x38,0x02,0x50,0x5b,0x32,0x01,0xa9,0x5d,0xd5,0x25,0x41,0x7e,0xd1,0xa1,0x28,0xdb,0x4e,0x18,0x2c,0xb3,0x7c,0x28,0xf6,0x28,0x06,0x66,0x70,0x99,0xa8,0xad,0x48,0x0b,0x0a,0xc9,0xe9,0x4c,0x2a,0x7d,0x5a,0x0e,0x96,0xe2,0xa7,0x36,0x0d,},"\xea\x7f\xaf\x79\xf6\xff\x5d\x78\xa8\x23\xa7\x54\x34\x71\x34\xf1\xb3\xc3\xe9\x1c\xe5\x18\xfd\xd6\x33\xfe\xb4\xf0\x5d\x12\x5f\x05\xcb\x54\x33\x6e\xf5\x60\xe9\x2d\xeb\x68\x51\x12\xa5\xff\xcd\x3d\xfd\x39\x64\xb2\x75\x8c\xe4\x78\x5f\x6a\x34\xbf\xeb\x39\x78\x4f\x0a\xee\x55\x95\x5a\xeb\xd1\x2d\xdd\xa6\x41\xd0\x57\x69\xf7\x44\x02\xf7\x06\xda\xd2\x01\xc4\x4c\x91\x08\x1c\x7d\x7f\x65\xe7\xaa\x42\x46\xde\x6d\xc3\xed\x64\x96\xd1\x0f\x4a\x41\x20\x60\xd4\x93\xba\xc9\xae\xd5\xbe\x4f\x6d\x74\x22\x9e\x3c\x55\xeb\x68\x76\xe3\xbb\x2e\xd4\x1f\xa4\x50\x4b\x66\x70\xdd\xa8\xc7\x98\xf6\xda\xa2\x80\xd1\xaa\x72\x02\x11\x74\xf6\xc0\x1a\xec\x49\xb3\x21\xd8\x7f\x53\xac\xbc\xad\xcc\x46\x07\xd5\xb1\xe4\x5d\x63\xfc\x48\x1a\x6d\x90\x57\x6c\x87\xc1\x88\x0b\x2e\x8f\xf3\xe5\x90\xa9\x6b\xee\xe1\x80\x47\x68\xc7\x56\xbe\xb8\x6b\xf1\xde\x8a\xdc\x40\x8b\x1b\x8d\x66\x6f\x74\xba\x28\x63\x08\x22\xf9\x2d\x18\xb0\x56\xae\x37\xce\x02\x93\xee\x61\xb9\xe8\x0f\x33\xac\x26\x96\x71\xbd\x62\xa4\x05\x9b\x24\xf7\xc1\xa4\x40\x80\x74\x40\xd5\xd5\x38\xa6\x54\x58\xad\xc8\x15\x87\x24\xb2\x5c\x12\x12\x7a\xa0\x34\x9e\x55\xf6\xe5\x5b\xc9\x20\x78\xfd\x1e\xf2\x74\xc2\xaa\x79\x19\x05\x76\x6b\xe3\x94\xa2\x62\x8f\x7b\xbd\x1a\x32\xda\x5e\x48\x74\x46\xbb\xef\xae\x88\xfa\x6c\xf3\xf7\xb4\x99\xf1\x31\xfa\x19\x31\x3d\x13\xb2\x80\xad\xca\x50\xf7\x78\x02\xd1\x73\x31\xb3\x81\x68\x3b\x5e\x7e\xda\xb9\x94\x73\xed\xd3\x1d\x77\x44\x34\x88\x21\x41\x35\xfd\x6f\x26\x44\x50\x93\xe9\xe2\xaf\xf7\xd7\xe8\x92\x33\x7f\xdc\x87\x79\x06\x5d\x4d\x97\xd6\xd6\x73\x57\x67\x94\x95\x8d\xbf\xa6\xc5\x0b\x1b\x13\xac\x39\x60\x7c\x1e\x66\xef\x96\x29\x76\x10\x71\x15\x5f\xbc\xa6\xf3\x6e\xb0\x2c\xee\xae\x16\x36\x7f\xea\xc0\x74\x76\x90\x8c\x84\x7c\x9a\x53\x3e\xf6\x8c\x94\x31\x1f\xa0\x89\xff\x28\xfb\xd8\x78\x09\xb0\xd3\x87\x6b\x43\x1d\x9a\x18\xb2\x02\xf9\xa4\x04\x9a\x05\x77\xb8\x17\x76\x10\xdd\x02\xe5\xc5\x20\xec\xa9\x55\xe8\x03\xc3\xad\x4f\x50\x97\x6f\x7c\x2e\xa8\xaa\x3e\xe4\x83\x6a\x19\x85\xdf\x0a\x4f\x16\xef\x46\x98\x15\x95\x41\x98\x97\x99\x35\x60\xaf\x82\x65\x1c\x2b\x49\x4e\x68\x0b\x37\x80\x2e\x75\x37\xef\x68\xa5\x75\xc3\x4f\x85\x88\x06\x3e\xe0\x19\x72\x06\xd9\xa3\x2b\xb4\x89\x0e\x7c\x21\x6a\x4d\x33\xfe\xca\x36\xb5\x49\xe5\x32\xfe\xa6\x85\x56\xe7\x54\x0a\x4f\xb1\x69\xd4\x9f\xc5\x53\xb2\xe6\x70\x0a\xe4\x2d\x9a\x51\x6e\x68\x16\x0a\xcf\x6b\x27\x0c\x77\xca\x5e\xc2\x6e\x5a\xd5\xdc\x75\xc2\xc3\x93\xe2\x99"}, {{0x1f,0x0a,0x10,0xa2,0xcb,0x11,0x19,0x17,0xb9,0xa6,0x7a,0x2a,0x1f,0x38,0xfb,0x86,0xf8,0xed,0x52,0x60,0x7d,0x1d,0x65,0x3a,0x45,0x7d,0x7f,0x47,0x18,0xd9,0xa7,0xde,},{0x70,0xc0,0x75,0xb2,0xe9,0x4c,0x4c,0x02,0xf4,0x5e,0x73,0x04,0x4f,0x24,0x39,0x97,0x41,0xb1,0x61,0xfe,0xb6,0xf6,0x9e,0xab,0x63,0x54,0x17,0x28,0x2a,0x4a,0x93,0x68,},{0xa4,0x24,0x5a,0xa3,0x39,0x5e,0x7b,0xad,0xa2,0xbc,0xdf,0x16,0x03,0x14,0x7c,0xc5,0xf3,0xf0,0xba,0x91,0xf4,0x0f,0xda,0xd8,0xf6,0xd3,0x71,0xc3,0xeb,0xef,0xb4,0xc1,0x50,0x1d,0x07,0x87,0x5b,0x57,0x6f,0x40,0x79,0x78,0x06,0xa4,0x84,0xc7,0xa3,0xf7,0x05,0x69,0xe2,0x32,0xb0,0xc9,0x9d,0x29,0xca,0x23,0xa2,0x33,0xb6,0x8e,0xdb,0x0c,},"\x4f\x6a\x43\x4b\xd5\xfc\x77\xf0\xf1\xb7\x04\x9c\x91\x85\x3c\xcb\xd8\x94\x39\x96\x2a\x60\x78\xa6\x74\xb8\x67\x54\x3b\x6b\x7d\x10\x55\x2e\xc1\x75\x8c\x52\x83\x04\x2b\xd6\xb4\xce\xa8\x8c\x95\x20\xdb\x04\x74\x6f\x08\x9c\xf3\xa2\x60\xfb\x0f\x33\x85\x8e\xfd\x6f\x68\x0d\xe5\xb7\x2d\x98\x76\x32\x4b\xa5\x90\x29\x91\x38\xf8\x5a\x76\xf5\xbe\x0e\x05\xe8\x85\x9c\x02\xb2\x35\x12\x55\x9c\x8b\xea\xfc\x9c\xfe\x90\x1b\x28\x3e\x15\xd1\x6c\x79\x2e\xb0\x3b\x92\x88\x0f\x6f\xf9\x7a\xa3\x8e\xee\xad\x3f\x4f\xd6\xc0\xa9\x21\x43\x23\xaa\x39\xa1\xc1\x65\x15\xe3\x0d\xbd\x08\xb8\x33\xee\x40\xa8\x14\xa2\x88\x09\xc8\x70\xe1\xd0\xa6\x2c\x37\x93\x2d\x54\x08\xfc\x6a\xfc\x63\xe7\x9a\x65\x5c\x5f\xe3\xd4\x02\x6e\xf0\x9e\x02\x99\xfb\xde\x5a\xb3\x4f\xce\xab\x14\x13\x0d\xc4\xbe\x00\x7e\x8e\x64\x44\xd7\xaa\xae\xc6\x2c\x87\x3d\xf7\x7e\x80\x10\x74\x3c\x31\xe8\x75\x7f\x1e\xae\x9e\xdb\x55\x97\xa1\xb5\xd8\x4b\xd7\x7a\xe7\x64\x2e\x1a\xca\x99\x87\x3a\x15\x2f\xfd\xe0\x68\xa8\xe4\xad\x92\x40\xb9\x03\x33\x27\x95\xe4\x0b\xb3\x28\x65\xe5\xce\x03\x43\x07\xa6\xc9\xfe\x33\x9a\x1c\x93\x77\x0d\xf5\xca\x46\x32\x9f\x6b\x09\x41\x97\x85\xcb\xf2\x84\x7b\x0c\x68\x32\x83\x71\x23\x85\x3a\xd9\x52\x65\x32\x65\xc5\xb5\x74\x0d\x19\x4e\x00\xf2\x3f\x9e\x96\x67\x91\xf0\x05\xf8\xbf\x55\xc3\x88\xc2\xbe\x9e\x21\x53\x89\x25\xf8\x55\x5e\x0d\xbd\x83\xbe\x07\x3d\xf7\x65\xaf\x49\x40\xe5\x9a\x37\x90\xb9\x83\x6b\xab\x79\x09\xe5\x67\x6f\xbf\x1c\x21\x26\xfe\x22\x6d\x78\x1a\x44\x33\x0c\xc0\x1d\x32\x83\x0f\xf8\xae\x00\xb9\x79\x2e\x39\x8c\x2c\xbb\x4f\xb8\x3a\x10\x05\xc2\x45\x54\x9a\x89\x06\x3f\xbe\x06\xc6\x2a\x48\xda\xc4\x3c\x51\x01\x24\x99\x94\xe9\x5e\x37\xf2\x4c\x1d\x8b\x3b\xc6\x73\x53\x8c\x46\x05\x5f\x80\x0d\xb1\xc0\xf9\x56\x86\x9b\x6b\x29\x7d\x99\x0f\x44\xf0\x5b\x50\xc7\xad\x6b\x85\x6f\x46\x21\x28\x58\x47\x1d\xd0\xd3\x93\x72\xb0\xdb\x75\x15\x73\xdd\xb6\xb5\xb5\x6b\xa0\x1e\x37\x1c\x78\xfe\x58\xdc\xd1\xbe\x53\x11\x2a\x6a\x73\xda\x9a\x6b\xac\x75\xd3\xc3\x9a\x1a\x70\x5a\x36\xf6\x40\xfc\xfa\xd8\xcd\x04\x07\x75\x94\xd5\x96\x85\xf6\xe3\x0d\xe7\x1d\xfd\x4a\x44\xc4\xe7\xc0\x4d\x6e\xc7\xc2\xe8\xbe\x12\x78\x5b\xb0\x5b\x29\xb3\x91\x51\xd3\x29\xf5\x87\xfd\xc3\x81\xc2\xdf\x0c\xef\x73\xfe\x0e\x3f\xd9\x20\x8d\x7c\xcb\x6e\x08\xd0\x2f\x42\xd1\xfe\xed\x27\x56\x1d\x5e\x32\x3a\xa1\x48\x62\x4e\x55\x2a\xbe\x87\x53\x2d\xe1\x5b\x7f\x42\xc2\x2c\x98\xe4\x05\x25\xb1\x74\x7c\xbd\x75\x8b\xfb\x26\xfd\x3e\xed\x3b"}, {{0x7f,0x05,0xba,0xac,0xf1,0x67,0x58,0x3c,0xf2,0xfe,0x95,0x62,0xa5,0x06,0x99,0x1e,0xd9,0x87,0xf6,0x8f,0xfb,0x71,0x56,0x7c,0x7c,0xcc,0xe3,0xfc,0xc5,0x9b,0x78,0xb0,},{0x0d,0xec,0x39,0x52,0x85,0x2b,0x96,0xfd,0x75,0x58,0x7e,0x97,0x74,0x3f,0x9e,0x41,0xc0,0x9f,0xbe,0x6b,0xa9,0x81,0xbf,0xce,0xb4,0xeb,0xb8,0x89,0x2d,0x98,0x6a,0x16,},{0x0d,0xee,0xd2,0xdf,0x82,0xac,0xf4,0x52,0x9c,0x40,0x8a,0x02,0x93,0x1f,0x67,0x6b,0xec,0x5c,0xb7,0xad,0xe8,0x4e,0xbd,0xcd,0x57,0x8f,0x70,0xf9,0x71,0x38,0x2c,0xf3,0x11,0xbb,0x83,0x09,0x73,0x00,0x45,0x6a,0x55,0x8b,0xc4,0xc0,0x9d,0x89,0x83,0xff,0x13,0x49,0x3f,0xd6,0x11,0xeb,0x66,0xc0,0x43,0xbf,0x01,0x9b,0xad,0x6f,0x33,0x02,},"\xa2\x7d\x1e\xab\x05\x15\x09\x20\xde\xd1\xb1\xc2\x57\x8a\xf5\x82\xb2\x94\xf7\x83\x7f\xe4\xfb\x1a\x31\x69\xc2\x5e\xfb\x70\x63\x4b\xa6\x6c\x7e\x29\x91\xb3\xe7\x5c\xc5\x12\x48\x26\xa0\x3e\x05\x72\x59\xb5\xcb\x70\x62\x28\x78\x0c\xbc\x82\x75\xc3\x39\xf8\x34\x0e\x40\x2a\x66\x50\x32\xa4\xab\x65\x78\x27\xb1\xc3\x48\x1f\x75\x66\xd3\x69\x73\x5b\x82\xdb\x76\x28\xc0\x22\xb2\x12\x73\x0d\xb1\xe4\x7c\x9b\x2d\x9b\xc4\xd8\x1b\x23\x42\xd8\x9c\x6e\xaf\xc3\xe0\xb6\xde\x50\xd4\x84\xcc\xef\x11\x23\x8c\x8e\x2d\x24\x0d\xd5\x95\xdc\xef\x8b\x2f\xc5\x7b\x54\xff\x9a\x8a\x74\x11\x1f\x61\xf8\xa6\x52\xf2\x0e\xa0\x12\xc1\xad\xe3\xe2\x80\xec\xde\x29\x4c\x0e\x35\x71\x71\x90\x16\x2e\xc6\xa2\x26\x5e\x7e\x6f\x3f\x07\x04\xcf\x8a\xb1\xa0\x3e\x5c\xc9\x53\xe2\x92\x62\x91\xcc\xd4\xb0\x59\x0d\x5c\x20\x56\x8f\x94\xf9\xff\x0f\xe2\xab\x78\xcf\x9a\xe2\xc3\x8b\xcd\x49\x1e\x51\x8f\x23\xe9\xb6\x36\xf8\x80\x61\x5f\xc5\x60\x78\xe5\x12\xd7\x57\x7e\x09\x49\x7c\x11\x83\x45\x3d\x50\x81\xfd\x47\x37\xf2\x80\xec\x5e\x26\x7c\x45\x86\xb7\x8b\x70\xff\xfd\xfd\x73\x0d\x80\x9d\xf5\x60\xf2\xe3\x77\x21\x91\x84\x7b\xbc\x3f\x60\x4f\xb7\xf8\xca\x49\xee\xd3\x18\xb5\xe7\xd1\xf2\xb8\x3a\x10\xda\x0c\x85\x94\xb3\x39\xb6\x87\x1a\x57\x72\xdd\x64\x16\x8e\xcc\x27\xe2\x40\xa4\x5c\x76\x72\x5e\x7d\x55\xbe\xf3\x7e\x13\x5e\x3d\x9e\x0e\x34\xe3\x6c\x16\xe3\x4d\x77\x45\x9a\x55\x2f\x40\x74\xd0\x67\xa3\x1a\x3e\xd2\xa4\x8c\xde\xa4\x89\x5b\x10\xbd\xf1\x65\x6f\x4b\x7a\x41\x3c\x6a\x08\x8c\x64\x9f\xc9\xd7\xbc\x56\xab\xf6\x44\x35\x49\x12\x14\x19\x2a\x66\x70\xcb\x8b\x9c\x91\x7f\x8e\x1b\xc7\xb2\xcf\xce\x78\xd2\x8f\xbc\x3a\xfc\x2a\x50\xe9\x82\x13\xe7\xe0\x26\x37\x8e\x4e\xa7\x11\xd1\x51\xad\xaa\xa7\x19\xbe\xb8\x97\x46\x56\xc1\x0e\xbc\x7d\xe4\x6b\x19\xec\x82\x95\x1e\xf4\x6a\x8c\x68\xe7\xf4\x36\xe1\xb3\xeb\xed\xb2\xd0\x9b\x05\x75\xc9\x91\x4e\xad\x27\x96\xb5\x3e\x00\x61\xe2\x12\x99\x4a\xc5\x02\x6a\xea\x81\xec\x37\xc8\x13\x78\xf4\xcc\xfc\x46\x77\x00\x08\x79\x68\x59\x7d\xa3\x8f\xed\x52\xfa\x48\x09\x3a\xe4\xba\x10\x66\xc3\x1e\x3c\x7d\x85\x08\x09\x5b\xb4\x5c\x28\x01\x20\xf4\xaa\x69\xa2\x4f\x3e\xfe\xf1\xf7\x67\x98\x5a\xa1\xa3\x0e\x14\x08\x56\xf7\x6d\x15\x20\x73\x28\x78\x48\x7b\xe5\x3f\x71\x2d\xbd\x7d\x77\x9e\x31\x51\x01\x58\x8f\xd7\xdb\xdb\x13\x2f\x92\xc2\x75\x75\xac\x14\x86\xf1\x76\xc7\x90\x66\x1b\x01\x48\x39\x4e\x92\xff\xa3\xae\x6f\x8a\xfb\x2f\xaa\x2b\x7f\x4f\xbd\x0a\xd9\x1e\x75\x9a\x70\x2b\x3c\x70\x2b\x4d"}, {{0xd0,0x0c,0x21,0x64,0x26,0x71,0x0d,0x19,0x4a,0x3d,0x11,0xcf,0xc9,0x0a,0x17,0xa8,0x62,0x12,0xe7,0xa0,0xe5,0x4b,0xaa,0x49,0xb0,0x16,0x9e,0x57,0xff,0xf8,0x3d,0x61,},{0xcf,0xe6,0xae,0x89,0x03,0xc6,0xc7,0x01,0xaa,0x30,0x46,0x95,0xc6,0x51,0xbf,0xd8,0x50,0x33,0x1f,0x9a,0xd4,0x81,0x63,0x3a,0xe3,0x70,0xc8,0x6d,0x7b,0xd1,0x3f,0xb9,},{0x15,0xc4,0x5c,0x19,0x42,0x97,0xe8,0x87,0x02,0x9f,0x49,0xd8,0xbd,0xf9,0xd6,0x10,0xdd,0x8c,0x34,0x79,0x9e,0x1e,0x92,0x30,0x26,0x9e,0x7a,0x58,0x92,0x89,0x38,0xcf,0x39,0x6a,0x02,0xcd,0x42,0x20,0x54,0x90,0x39,0x1e,0x1c,0x64,0x35,0x3f,0xb0,0x6b,0x9f,0x8e,0x9b,0x81,0x8a,0x9a,0x36,0x1c,0x20,0x4a,0x38,0x69,0x95,0xbf,0x3b,0x03,},"\x82\xf9\x78\x41\xb3\xba\x22\xdd\x9a\x44\x50\x83\x7e\xa7\xbf\x8d\x27\xa9\x73\x14\x70\xca\xbb\x0c\x20\x78\x03\x4b\xf2\x4e\x4c\x1a\x62\x90\xc0\x3f\x40\x02\xb8\x6f\xa0\x9f\x07\xb5\x20\x9f\x1f\x53\xd0\xec\xf4\xd9\xe9\x22\x3b\xec\x12\x5a\x95\x45\x51\xfe\x8b\xff\x71\x8f\x5e\x26\x48\x68\xe2\x07\xf7\x01\x19\x4e\x41\xde\x39\x97\x1f\xd3\x85\xf4\x9a\x4b\x4a\xdd\xa9\x11\xeb\xa5\x52\x59\xfc\x68\x36\x65\x32\x73\xf6\x56\xf4\xaf\x60\xb2\x06\x64\x95\x6d\x4f\x21\x35\xd9\x0d\x09\xe9\x03\x7d\x53\x66\xa0\x25\x34\x44\xe0\x22\xc7\x21\x2a\xf5\xfd\x4f\xcc\xd7\x42\x37\xd2\x88\x53\x38\xe2\xfd\x72\x15\x22\xde\x67\x63\xc2\x54\x90\x28\xc6\x23\xb9\xcf\x38\x7d\x23\x4a\xb5\xe7\xfc\xbe\x5a\x47\xc6\x85\xb7\x9e\x75\xa5\x7b\x09\x57\x40\x82\xa0\x22\x21\xdf\x64\xa2\xe8\x41\x61\x80\x87\xe7\x22\xa2\x1b\xac\x1b\xa4\xf0\xd7\xd8\x7b\xdc\x51\x0a\xaa\x8f\xbd\x10\x75\x7f\x6c\x02\x9c\xa8\x20\x37\x1f\xc7\x4c\x3b\xc5\x0b\xd8\x98\xc5\x5d\x81\x67\xf7\x3a\xda\x37\x7a\xec\xc9\x16\x29\xd6\x4c\x36\x0c\x2c\x24\x1c\x5c\xb4\x2e\x3a\x51\x8c\x5d\xab\xf0\xf4\x18\xb2\xa7\xf3\xd8\x2e\xef\xd9\x20\x26\xd3\x1e\x8b\x81\x60\x35\x8e\xae\x82\x1f\x73\x0e\xca\xfe\x7a\xce\x64\x7b\xff\x87\x41\xde\x2f\x6a\x13\x1d\x11\xc9\x69\xe9\x78\x7c\xfe\x6a\x2f\xab\x37\xbf\x8d\x1c\x7f\x4a\x2f\x36\x4d\x2f\x1a\x76\xef\x04\x6c\x18\x43\xe6\x3e\xc0\x0c\xf7\x92\x0f\xfa\xae\x56\x1e\x73\x70\xb7\x19\xfc\x16\xfc\xeb\xca\x3c\xfd\xfa\xba\x43\xf4\xf0\x90\xc4\x6f\x47\x73\x03\xa6\x60\xee\x88\xdd\x4e\x89\xbf\x14\xb9\xf8\x04\xb6\xfd\x49\x5c\xb1\x41\x27\x53\x47\x4a\x05\x6a\x0d\x89\x31\xcd\x9c\xcb\xd6\x4f\x8f\xcc\x7a\x31\x23\x46\x7c\x5d\x47\xf6\x90\x67\x9e\x88\x71\x28\x80\x93\x73\x4f\xd6\xa1\x32\x60\x38\x65\x81\x56\x41\x36\x96\x59\x4c\x13\x4d\x73\x88\x7f\x34\xee\x67\x60\x9a\xe8\xff\xb3\x26\x6c\x16\xd8\x7f\x15\x34\x5a\x47\x6f\x72\x95\x0c\x15\x87\x96\xa8\x8b\xbb\x44\x4f\x1a\xa8\x09\xca\xd8\x75\xb8\x5f\xb9\x15\x1a\x0e\x2e\xef\x2e\x00\xe8\x0d\x6b\x7a\x9b\xa4\x06\xc0\x51\x9e\xff\xdd\x94\x12\x62\x32\xfd\xf6\xf1\xe7\xb9\xbb\xc0\x36\x2a\xa7\x75\x16\xfd\xf9\x39\xe7\x90\x6a\xab\x01\x30\x71\x28\xcf\x82\x4c\x10\x2c\x09\xb9\x29\xc9\xb2\xd7\xaf\x8f\x85\xb7\xd7\xf9\xa8\x38\xb2\xae\xd0\xc6\x97\xe8\xbd\xfe\xe6\x6e\xe0\x16\xbb\x1b\xf3\x5e\xff\x6b\x2f\x7e\xf4\xb9\x1b\x1f\xc0\x4f\xac\x9f\x11\x6e\x2e\xdf\xf4\x0f\x95\xc1\x5b\x77\xc3\x1e\xe5\x22\xf3\x93\x7c\x7f\xa0\x04\x7d\x62\x25\xe0\xc8\xe5\x5e\x27\x8c\x81\x03\x91\x1f\xea\xb2\xb7\xf4"}, {{0xdd,0x12,0x39,0x72,0xe6,0x28,0x58,0x4a,0xcc,0x46,0x29,0x3b,0x8e,0x4c,0xe2,0xb2,0xdd,0x46,0x9c,0xc4,0xed,0xe1,0x4e,0xf3,0x95,0x21,0xcf,0x08,0x37,0x35,0x85,0xb3,},{0x35,0x22,0xf7,0xae,0x59,0x6e,0xed,0xb2,0x17,0x03,0x5d,0x95,0x39,0x5e,0x44,0x8d,0xbd,0x6f,0xfb,0xf4,0x25,0x85,0xea,0xeb,0x30,0x70,0x26,0x54,0x1c,0x78,0xa6,0x51,},{0x89,0x65,0xa8,0x89,0xd5,0x4c,0xd8,0x07,0x6d,0x35,0xbc,0x2e,0x12,0xb0,0x09,0xd5,0x6b,0x07,0x04,0xc8,0x94,0xf9,0x12,0xa0,0xd1,0xd3,0x07,0x20,0xc2,0x32,0xfe,0x44,0x04,0xbf,0x30,0x09,0x54,0x1e,0x8f,0x32,0x83,0xe8,0x9e,0xa8,0x6f,0x67,0x8a,0xfb,0xdf,0x1c,0x21,0xc9,0x24,0xb2,0x3a,0x52,0xb4,0xca,0x6d,0x63,0xf4,0x8f,0xc2,0x03,},"\x2b\x28\x57\xf4\x52\x80\x17\x3e\x2e\x0e\xf9\xd5\x94\xe6\x08\x3f\x1d\xc7\xa6\x54\x92\x97\x5b\x83\x7d\xef\x6c\xad\xd8\xc8\x54\x50\x31\xee\x9d\x68\x36\x9a\x93\x93\xcc\x7b\x79\x2f\xeb\x98\x04\x0b\x21\xf1\xeb\x84\x66\x5f\x87\x85\x37\xce\x41\x2e\x9d\xb6\x80\xd2\x9f\xbd\x8f\xfc\x77\x31\xea\xe9\x1a\x20\xb4\x75\x48\x99\x62\x04\xfb\x06\xad\x74\x0e\x78\xf0\xfc\x59\x0b\x67\x91\xdc\x7a\x0f\x26\x59\x28\x6c\xc1\x6d\x02\xc5\x11\x7b\x56\x58\x36\xb4\xb8\x73\x8c\xf4\x0e\x28\x5c\x69\xc5\x0e\x41\x29\x11\x29\x23\x67\x35\x2d\xfd\xae\xd9\x98\x2d\x0f\x89\x9a\x23\xc0\xab\x51\x81\x2b\x3e\xc6\x78\xf6\x88\x2e\xa4\x27\xcd\xc9\x3a\xb4\xb2\x48\x24\x37\x70\x54\xaa\x25\xd8\x22\x46\x65\x33\x40\x07\x8c\xf1\x1d\x14\xa5\x1f\x0e\x68\x6d\x7e\x01\x8b\x36\x74\x16\x68\xfc\xe7\x45\x8d\x16\x92\x93\x36\x1d\xd1\x6b\x3d\xeb\xbe\xd1\x9e\x1b\xef\x7c\x36\x93\x4e\x20\xf3\x3a\x09\xad\x3e\x82\xb5\x3a\xb4\xe9\x4c\x25\x5d\x04\x18\x98\xb9\x77\x37\xdf\x99\x58\x4a\xf1\x4e\x40\x40\x58\xd0\xc9\x3b\xca\xe7\xbb\xbc\x06\x39\x5a\x2a\xef\xbd\xef\xa7\xb2\xed\x17\xce\xbd\x15\x13\xfa\x39\x0f\xe9\xa9\xb0\xce\x68\xce\xcc\x2b\x9e\x12\x9b\x7a\x29\xf4\x9b\x6d\x18\xc2\x8b\xac\xd3\xaf\x39\xdc\x39\xca\x97\x2f\x0e\x0d\x06\x85\x5d\x57\xc2\xb5\xfc\xac\x2f\x79\xcb\x8c\x05\x79\x9e\x4f\x65\x73\x46\x68\xda\xd6\xaa\x7a\x43\xa1\x18\x56\xe2\x3b\x1e\x73\x2d\x00\xe5\xfe\x38\x85\xb7\xda\xd4\x2e\xc1\x8a\xc8\xe0\x96\xa0\x80\xf7\xd5\x50\x70\xfd\xcf\xf6\x07\xbc\x0b\x85\x2d\x8a\x08\x0d\x2a\x74\x05\xd5\x94\x14\x69\x5f\x2e\xb7\xfb\x0a\xca\x23\xc8\x63\x57\x42\xf8\xae\x57\xf1\x37\x80\x31\x6e\x28\x08\x72\x37\x4e\x69\x29\x59\x8d\x02\x8a\x33\xc0\x5d\x83\x1c\xda\xbd\x02\x94\x93\xc3\xcc\x85\x9f\xff\x1a\x67\xd5\x62\x16\xf0\x2a\x22\x95\x66\x53\x65\x88\x7a\x35\x0a\x80\xaf\xaa\x0c\x36\x7a\x74\xd3\x70\x1a\xe8\x8f\x59\xd8\xa9\xd3\xa1\xdc\xe0\xcf\xd2\xea\xbe\x2a\xf5\x06\x5a\x1c\x7f\xca\x4a\xad\xcf\x8e\x51\xe7\x56\x12\xa1\x37\x1b\x4d\xc8\xff\xc0\xc0\xb9\xc4\xfa\xdb\x2f\x08\x1e\x2e\x03\x2d\x96\x81\x8e\x55\x73\x7a\xdd\xe3\xe1\xac\x12\x1f\x56\xcc\x86\xfb\x58\xa0\xa5\x82\x69\x2f\x62\xce\x58\xac\xce\x17\xaa\xfe\xc7\xbc\xb7\xe4\x4f\x83\x92\x58\xcd\x4a\x85\x1f\xc0\x13\x44\xee\x9f\x1b\xd0\x3e\xb9\x43\x44\xf4\x77\x86\x93\xc1\x71\xdd\x28\x92\xb2\x42\x6a\x88\x29\xab\x0c\xfe\x33\xa7\xd4\xa3\x6e\xb4\x01\x7f\x7f\xcf\xd2\x41\x34\xab\x8a\x45\xf2\x37\x17\xcd\x13\x8a\xa6\x00\x01\x72\xe3\x7b\x40\x64\xdc\x9b\x6d\x1e\x1e\xf3\xaf\x84\x97\x1d"}, {{0x33,0x35,0xea,0x92,0x81,0x17,0xcf,0xee,0xfb,0xee,0xae,0x14,0x60,0x03,0x88,0x1b,0xdc,0x88,0x89,0xd6,0x58,0x0e,0xed,0x13,0x52,0x37,0x08,0x20,0xad,0x1f,0x58,0x4f,},{0xcb,0x20,0xd4,0xfd,0x75,0x61,0x84,0x80,0x13,0x11,0x1c,0x3e,0x97,0x61,0x7f,0x34,0x18,0x1d,0x2e,0x7f,0xbc,0xf1,0xbb,0x2a,0x2c,0xd2,0xe8,0xc1,0x77,0x5b,0x8b,0x03,},{0xf7,0xc3,0x9f,0x92,0x47,0xd2,0x2f,0x01,0x89,0x99,0x24,0x7f,0x0e,0x00,0x05,0xcd,0x63,0x07,0x6c,0xcf,0x2f,0xee,0x41,0x63,0x42,0x1f,0x86,0x40,0x7a,0x41,0x69,0x8c,0x40,0x58,0x16,0x64,0x73,0x51,0xc0,0x4e,0x93,0xb5,0x44,0x15,0xb6,0x2f,0xc0,0x3f,0xc8,0xc2,0x5e,0x20,0xf7,0x54,0x1d,0xab,0x03,0x19,0x7d,0xc9,0x00,0xb2,0x9c,0x0c,},"\x0f\xa7\xf6\xa6\xfc\xa9\x81\x42\x9b\x57\x2a\x67\x04\x87\x1b\xed\x14\x0d\xab\x93\xee\x19\x92\x00\x6e\x9a\x3b\xb2\xe6\xcc\x9a\x09\xd4\xc9\xcf\x17\x06\x6b\x32\xff\x7e\xf5\xb6\xb2\xe7\x91\x11\x78\xed\x74\x62\xc4\xc1\x75\x60\x31\x71\xca\x61\x36\x68\xb3\xbe\x19\x3d\x94\xc3\x52\x1e\x58\x89\x13\xb5\x94\x8b\x55\x0b\xe9\x9d\x82\xd9\x66\x19\x7d\x71\x0a\xcf\xd9\x59\x14\xcf\x3e\x19\x75\x36\xe8\x3e\x68\x23\x0d\xc3\xd6\x7e\x67\xdc\xdb\xde\xe0\x4f\x0d\x9c\x48\x02\x37\xec\xd2\x8f\x74\x33\x8d\xb5\xf3\xf6\x97\xd3\xd0\x7f\xf3\x36\x13\xbb\xce\x54\x2a\xcc\x9a\x7f\xed\x5d\x12\x49\x0b\x9b\xfe\x1d\x10\x95\x40\xf8\x63\x80\x0d\xd3\x56\xda\x84\x1a\x45\xa3\xcd\x8a\x08\xa9\x45\xbf\xa3\xaa\x98\xe1\x71\x23\x12\xc4\xc0\xf0\xd9\xdd\x64\xf6\xef\xcf\x73\x6b\xd9\x7d\xea\xfc\xa9\xdc\xaa\x3f\x06\xd8\x7f\x2e\xd7\x2a\xeb\x6a\x94\xf3\x28\x00\x00\xc4\xbf\x72\x8a\x01\xc1\x86\x2d\xaf\xd9\xfc\x5c\x7d\x5a\x46\xec\x7d\x3a\x87\xaf\x59\xa1\x1d\x87\xf7\xff\x84\x40\x7d\x37\x01\x0e\x1d\x94\x6c\xf2\x25\xd6\xb3\xb1\xed\xee\x2e\x8b\xbf\x1e\x07\x9e\x47\xfb\x1f\x66\x66\x93\x94\xfb\xf2\xfa\x68\xfc\x56\xfc\x89\x82\x0a\x68\x09\xc2\x51\xdd\x62\xf5\xb8\x65\xc5\x47\xb1\x4f\xbd\x3a\x19\x50\x42\x44\xff\xbc\x7e\x52\x40\xf8\x8d\x43\x60\xf9\xca\xca\xaf\x5f\x82\x43\x3d\x33\x44\xfc\xae\xe0\xac\xde\xb7\xbe\xb9\xc0\xb3\xc7\x69\xea\xc9\x20\xef\x4f\x09\xab\xc2\xa2\x09\x55\x12\x04\x59\x43\xec\xcc\x53\xb1\xc0\x3e\xd2\x4e\x56\x7f\x3d\x7a\x71\x97\x7c\xab\x98\x40\xce\x89\x8e\xe5\x8e\xd5\xc7\x3f\x6a\xde\xa8\x23\x39\x4c\x5c\x8e\x36\x58\xa6\xbf\x5a\xcb\xbf\x00\x55\x99\x2c\x31\x2c\x26\xc7\x9c\x5c\xfb\xea\x38\x60\xb8\x76\x4a\x6d\x8f\xfe\x44\x91\xf8\xa5\xb8\xa2\x15\xe0\x11\x7a\x9a\x68\x16\x4a\xee\x25\xf8\xc0\xbb\x38\x11\x95\xb2\x40\x0b\xcb\x46\x44\xeb\xce\x1c\xde\x5a\x9a\x26\x58\x2c\xab\x9d\xc7\xf4\x3c\x33\xea\xe3\x50\xdb\x65\xaa\x7d\xd2\x2a\x07\x9b\xdd\xdc\xf5\x6d\x84\x8d\xeb\x0c\xfa\x50\xb3\xbd\x73\x2d\x9d\xa9\xe8\xd8\xab\x79\xe9\x34\x69\xde\x58\x02\xb6\xdf\xf5\xac\x2a\xa8\x48\x2b\xb0\xb0\x36\xd8\xf9\xd5\x95\xb8\xea\xd9\x4b\xb8\xd7\x41\x8e\x2e\xa4\x31\x92\xef\xcb\xfc\x05\xc4\x67\xbd\xe0\xa8\x68\xa5\x16\xa7\xc1\x4a\x88\x9b\x72\xc5\xb7\x3e\x7d\x85\xc2\xba\xe9\x02\xe4\xe6\x8d\x1f\x3c\xea\xb2\xb2\x77\x3a\xf5\xbb\xae\xe6\xa0\x0d\x08\x06\x3e\x78\x33\xcd\x4e\x29\x53\x47\xe5\x8f\x5d\x1b\x33\x97\xf6\x40\xc1\x59\xcc\x60\xa6\x74\xa2\x27\xb4\xcd\x8c\x10\xf1\xdb\xae\xd5\x16\xcc\xac\xdd\x29\x5f\x11\xb0\x81\x47"}, {{0x32,0xa1,0x88,0x3e,0xff,0x57,0xa3,0xa7,0xec,0xdb,0x31,0x02,0x21,0xee,0x83,0xc4,0xde,0x92,0xb7,0x22,0x15,0x96,0x13,0xec,0xf8,0x16,0xe3,0x82,0x43,0x7b,0x60,0xb9,},{0x82,0xdd,0x1a,0x03,0xe5,0x85,0x20,0x62,0xba,0x4a,0x8b,0x6b,0x3b,0x93,0xc5,0xe9,0xc4,0x3f,0xf6,0x99,0x5b,0xd2,0xaa,0xc7,0x26,0x06,0xfa,0xc8,0x58,0x02,0xc6,0x82,},{0x83,0x09,0xcb,0xe7,0x2f,0x80,0x4b,0xd9,0x52,0x1d,0xef,0x5d,0xad,0x4d,0x8b,0xc1,0x38,0x86,0xb1,0xd4,0xf6,0x62,0xc9,0xbb,0x5b,0x97,0xba,0x47,0x90,0xf4,0x4b,0x80,0x1f,0x31,0x95,0xea,0xd0,0xd4,0xdd,0xb6,0x60,0x81,0x8e,0xcb,0xf9,0xa6,0x83,0xca,0xcf,0x85,0xf1,0xdc,0xc9,0xe8,0x2c,0x09,0x11,0x6d,0x73,0x36,0x58,0x09,0x1a,0x00,},"\xed\x2b\x12\x3b\x5d\xd7\xf5\xe7\x18\xe0\x26\xc7\x9c\xfa\x61\x11\x92\x49\x02\xd1\x89\xa4\x06\xef\x2b\x2e\x56\xa9\xee\x55\x73\xa7\x6d\xdd\x1d\x06\x29\xeb\xcd\xec\xf2\xaa\xa7\x4e\x84\xfc\xd0\x20\x8f\x14\xee\xa2\xe1\x71\xe7\xc8\x60\x8b\x81\x8f\xef\xf4\xdb\xea\x52\xdb\x35\x42\x27\xd0\x23\x25\x0b\x1f\x01\xcb\x4c\xc8\xc5\x21\x32\xa9\x8d\x4a\xcf\x55\xa5\x4f\xee\x81\xe0\x94\xae\xd6\x6f\xa0\xd6\xb6\xa2\x00\xb6\xb8\x74\x14\x40\x22\x78\x53\x8b\x90\x52\x9a\x8c\x60\x3d\x92\x7e\xdd\xda\x97\xbc\x4b\x8c\xb9\x5d\x04\xb5\x33\x7f\xa2\x2c\xea\xfc\x8b\x34\x0c\x46\xfe\xf6\x71\x98\xd1\xfd\x98\xd8\x9c\x65\xcd\x08\x9e\x23\xf5\x3d\xbd\xca\x96\x77\x98\xb5\xcd\x92\x32\x05\xad\x51\x1e\xdf\x70\x6f\x12\x25\xf4\x64\x8c\x98\x5e\x00\x9e\xf8\xa2\xf6\xa0\x11\x7c\xdb\xe1\x4e\x75\x31\x2d\x8a\xc1\xf0\x3d\x04\x6b\x37\xcd\xee\x7d\x69\xc0\xf2\x5c\xcf\x18\x14\x5a\x68\x8a\x8b\x3c\xa8\x87\x5f\xe8\xd9\x0b\xaf\x86\xd4\x39\x69\xe4\xd6\x10\x21\x4f\x1a\xc5\xdb\xba\x87\xa1\xef\x10\x37\x7e\x40\xd7\x80\x6f\xd9\xd2\x34\x57\xfc\x9d\xf2\x98\x99\x23\x9f\xd1\xd2\x78\x84\x96\x81\xa9\x43\xad\x9c\x91\xfd\x1b\xbd\x92\xb7\x3c\xb1\x77\xa8\x78\xf9\x05\x9e\xe0\x7a\xf7\xa8\x73\x16\x13\xe3\x3d\x59\xdf\x3d\x97\x79\x60\x79\xd5\x63\x1e\xd8\x5e\xb2\x24\x51\x06\xa5\xff\x6a\x2b\xca\x40\xdf\x5c\x6e\x87\x47\x3b\x2c\x08\xc2\x21\x2f\x56\xfc\x29\x33\xa9\x69\xa3\xc9\x58\xd3\x7c\x53\x43\xba\x27\x60\xc8\x13\xa7\xa5\x16\x5d\x23\x1c\x5f\xea\xae\x62\xb7\x55\xdf\x49\xfe\xca\x80\x04\x1a\x65\x35\xf7\xe0\x3b\xc4\x8e\x5f\x27\xf9\xbe\x26\xef\x53\x67\x3e\xb7\xc3\x7a\x2b\x64\x74\x4a\x6c\xf1\x7e\x88\x77\x34\xae\x01\x0b\xf4\x0e\xea\x03\xcd\xa2\x12\xf5\x12\xfb\xa0\x58\x59\x47\x17\x96\x40\xbc\xc4\x54\x4b\x8d\xeb\x4e\xad\x12\x9b\xc3\x32\x28\x00\xad\xf9\x88\x18\xf9\x95\x74\xbe\xfd\x9b\x00\x16\xd4\xee\xc8\x1a\x8e\x78\xdc\x3a\x2a\xf1\x3c\xab\x01\x64\x9a\xe2\xe3\x3d\x51\x6b\x9d\x42\x08\xad\x66\x13\xd8\xe2\x78\xc3\x93\xba\xa8\x82\x34\x0e\xf4\x61\xff\x4f\x94\x42\x3d\x55\xcf\x3c\xed\xd2\xa6\xb5\x6e\x88\x36\x55\x31\xdd\x29\xd6\x82\x73\xad\xbf\xe3\x69\x40\x2e\x6a\x7c\xee\x05\x3d\xa1\xf1\x00\x54\x00\x91\xa0\x09\x29\x25\x29\x83\x44\x90\x24\xb1\xc3\x39\x11\x10\x65\x00\x82\xf0\xe7\xdf\xdd\xb8\xed\xc2\x04\x2f\x3c\x17\x13\xc6\x94\x4b\xa5\x14\xee\x74\x07\xd3\x2b\xf0\x6c\x85\x8e\xfe\xc4\x2a\x78\xbe\xe9\x77\x46\xe5\xb4\x87\x91\x41\xa1\x3d\x9f\xc5\xcb\x12\x3b\x78\x32\x73\xb8\x4d\x57\xad\x35\x26\xb7\xda\x3c\x68\xb8\x39\xef\xd2\x3f\x5f"}, {{0x22,0xec,0xef,0x6d,0xab,0xe5,0x8c,0x06,0x69,0xb8,0x04,0x66,0x49,0x73,0xe4,0x57,0xc0,0x5e,0x47,0x77,0xf7,0x81,0xc5,0x25,0x22,0xaf,0x76,0xb9,0x54,0x81,0xa9,0x14,},{0xd4,0x78,0x40,0x10,0xef,0x04,0x03,0xed,0xdc,0x5a,0x62,0xd5,0xd4,0x5b,0xb2,0x43,0xb8,0x0b,0x4b,0x9d,0x69,0xc3,0x9c,0xa3,0x87,0xc6,0xf5,0xcb,0xa0,0x28,0x64,0x0f,},{0x5d,0x0d,0x2a,0xf6,0x78,0xb3,0xd1,0xb6,0x77,0x51,0x6d,0x08,0xa7,0x9a,0xaf,0xd3,0x6e,0xc6,0x7c,0x14,0xca,0xf5,0xbc,0xda,0xae,0xaa,0xcc,0x51,0xa1,0x4f,0xb8,0x05,0xcf,0x29,0x04,0xe8,0x72,0x1d,0xb2,0x71,0xb2,0x0d,0xf7,0x09,0xbe,0xe1,0xa4,0xfb,0xfe,0x62,0x56,0x50,0x73,0xb2,0xa7,0xe9,0x42,0x72,0x44,0x61,0xf9,0x27,0x93,0x0d,},"\xc5\x35\xc1\x3d\x77\x9f\xc0\x98\x59\x73\xd6\xbc\xd5\x52\xd8\x17\x34\xe9\x2b\xdf\x10\x99\x4b\x00\xcd\x4d\x53\xce\x36\x5f\xad\x8c\x7c\xfa\x96\x20\x6a\xdb\x62\xd4\x56\x7b\xe5\xe4\x66\x31\x32\x38\x53\xe3\x8c\xe4\xbd\xc1\x6d\x7b\x8f\x63\x2a\x3a\xd9\xe0\x26\x19\xef\xf3\x71\x74\xea\xc3\xf0\xbf\x2f\x7a\x75\x17\xd4\xb8\x2d\xe6\xaa\x1a\xf0\x06\x38\x19\xd5\xe1\xf9\x27\x8f\xb4\xf2\x4c\x8c\xc0\x02\xaf\xb1\x5f\x33\x4c\x04\xfa\xdb\x00\x30\x30\x13\xc0\x16\x67\xf4\x93\x2a\x6c\x4b\x97\xd3\x9c\xd4\xa4\x59\x85\x06\xc0\xbd\x74\x0e\xa9\xf1\x16\x96\x35\x7d\x7d\x17\xfe\x4d\x75\xf9\xd7\x42\x41\xa7\xaf\x71\xf9\xd8\x69\xef\x6c\xd6\x95\x68\x7c\x03\xfc\x34\xad\x65\xa6\x8a\x48\x88\xa1\xa7\x41\x26\xcb\x55\xcf\x7d\xa9\xcb\x4a\x67\x17\xf6\xeb\x88\x48\x40\x89\xd2\xc5\x18\x9a\xe3\x81\xf2\x5e\x7b\x3b\xc3\xb2\x3d\x0c\x9d\x9f\x9c\xdb\xbe\xec\xfd\x1e\x72\xa0\x5e\x67\xbb\x48\x3a\x97\x64\xd9\xfc\x75\xad\x69\xe4\xab\x12\x70\xfb\x40\xf3\x95\x8f\xea\x4d\xa5\x59\xb4\x39\x80\xb2\x46\x81\x31\x3e\x85\x91\xe6\x85\x46\xa3\xbf\x76\xee\x34\xb3\x39\x70\x92\x95\xa8\xd4\x6f\xb2\x43\x2d\xda\x2f\x22\x18\x12\xdf\x69\x28\x95\xe6\x7c\xb2\x9c\xbf\x6f\xf4\x50\x2b\x43\x9a\x4e\x9e\x43\x63\x9e\xc0\x67\xbc\x90\xae\x81\x4a\x29\x3a\x7b\xd4\x69\x68\xe6\x56\x78\x76\x42\x30\x0a\x0f\xf2\x69\x7e\x33\x13\xf6\xa4\x18\xd3\xd1\x2a\x5f\x7c\x51\xa4\xc5\x7b\x63\x38\x5f\x2d\x2a\x21\xd5\xd1\xd7\x63\xfc\x8d\x1b\x93\xc1\x34\x35\xf9\xe4\x7e\xe7\xa4\x25\x98\x0a\x6a\xe6\xf1\xa9\xd0\x07\x60\x74\x76\x78\x3c\x6d\x0c\x78\x87\x38\x0f\x86\x8c\x65\xb3\x82\xd4\xcc\x8c\x04\x47\x8b\xbd\x79\xa1\xd9\xa9\x64\xb7\x81\x71\xd6\xbc\xf0\xb8\xee\xc5\x0a\x06\xa4\xea\x23\x4d\x1c\x23\x46\x5d\x3e\x75\xb8\x8b\xc5\x40\xda\xde\x74\xed\x42\x67\x5b\x07\xf7\xcf\x07\x82\x11\xe9\x07\xf8\x6d\x0d\xc4\xb9\x78\x62\x3d\x9f\x08\x73\x8a\xf9\x28\x69\x5e\x54\x2e\xc2\x98\x0e\x55\xa1\xde\x49\xe2\x52\x47\xfa\x0a\x09\x67\x81\x18\xe3\x93\x0b\xc4\xd2\x4b\x32\x14\xd6\xdc\xfb\x6e\xbd\xf4\x90\x6c\x92\x8d\xeb\x37\xbb\x9b\xa2\x9c\x8d\xe1\xbb\x94\x18\xdb\x71\x8b\x28\x53\xba\x57\xad\x8c\xae\x46\x77\xad\xdf\xd1\x8b\x6c\x7e\x8c\x24\x26\x21\xb3\x5c\x7f\x0e\xfe\x8d\xd5\xeb\x26\xff\x75\xfd\x57\x48\xb1\xd7\x83\xf6\xd6\x8a\x7d\x9d\x56\xda\x2c\x1a\x97\x8a\xc2\x5f\x84\xfb\xb2\xbe\x55\x68\xd9\x1e\x70\x93\x82\x21\xc1\x02\xae\xe6\x04\x09\xbc\xbe\xc0\xc8\x2e\x12\xdd\xb4\x25\xee\xb6\xec\xd1\x15\x51\xec\xd1\xd3\x3d\xda\xe8\x71\xae\x0c\x8f\x24\xd0\xd1\x80\x18\x73\x2b\x5e\x0e"}, {{0x8d,0xe8,0x63,0x30,0xb2,0x56,0x09,0x5e,0x11,0x14,0xb6,0x52,0x9b,0xed,0xce,0x18,0x2c,0x16,0x6f,0x67,0xa9,0x15,0x39,0xce,0xbc,0x4b,0xec,0x25,0xad,0xd7,0xa4,0xa9,},{0x33,0xcb,0x05,0x4b,0x55,0xbb,0x79,0x0a,0xc0,0xf3,0xaf,0xdd,0x9a,0x6e,0x7c,0x05,0x0e,0xfe,0x90,0x06,0xc2,0x4f,0x60,0xb8,0x04,0x4f,0xd0,0x8a,0x5c,0x10,0x6c,0x11,},{0x6d,0x01,0xd2,0x37,0xdd,0x2b,0xb4,0x18,0x8d,0x29,0xbf,0xde,0xc3,0x87,0x97,0x6a,0x71,0xbe,0x7a,0xdf,0xbf,0x9e,0x23,0x63,0x9b,0x21,0x6d,0x0a,0xa0,0xc1,0x19,0x32,0x23,0x5e,0xdc,0xcb,0x3b,0x42,0xad,0xcd,0xb6,0x29,0x1a,0x0d,0x29,0x9a,0xed,0x64,0x8d,0xe8,0xb1,0x95,0x79,0x49,0xb9,0xd1,0xcf,0x2e,0x50,0x49,0x30,0x30,0xa4,0x0f,},"\x39\xe6\x1e\x0e\xcc\xec\x92\x9c\x87\xb8\xb2\x2d\x4f\xd1\x8a\xea\xbf\x42\xe9\xce\x7b\x01\x5f\x2a\x8c\xac\x92\xa5\x24\x48\xa4\x2f\xed\x4c\xba\xdc\x08\x5b\xbb\x4c\x03\x71\x2a\xe7\x2c\xfc\xb8\x00\xb9\x78\x35\x06\x69\xb0\x99\x00\x84\xf2\xda\xb7\x6e\xca\x60\x6d\x1a\x49\xfc\x55\xc5\x29\xe1\xe7\xda\xdf\x39\x12\x2d\xd5\xbd\x73\x38\x93\x85\x8b\x05\x23\xef\x62\xdf\x4f\x13\x4c\xf6\xc2\x6e\xed\x02\xfd\xbc\xb3\x0c\xe4\x74\xb1\xad\xa3\xf0\x60\x76\x9f\x93\x4b\xbe\x68\x6c\xce\xbd\x60\x88\x3e\xce\xc9\xce\x3f\xfb\x8a\xc4\xa0\x67\x8c\xdc\x5b\x00\x5a\xe3\xdb\xa7\xe4\xfe\x8b\xc0\x45\x73\x99\x57\xd8\x49\xf6\x9c\x14\x74\x05\x7b\x42\x8c\x54\x25\xf3\xcc\x25\x16\xe8\xbb\xe3\xbe\x81\xaf\xd4\xe7\xb5\x75\xab\xe8\x8c\x87\xf2\xf0\x3b\x56\xf6\x9f\x9e\x3b\x61\xb3\x78\x81\x20\xda\xa4\x95\xef\x0e\x50\xeb\x97\x0a\x64\x5c\x13\xd2\x13\xc7\xcf\xb7\xd0\xad\x55\x5c\x92\x0a\x1e\x5d\xbc\xb4\x67\x97\xd9\x39\xfe\x04\x01\xf5\x47\xbf\xd1\x75\x43\x22\x1a\x53\x01\x0d\xe0\x1f\x25\xb6\x45\x19\xc8\xf0\x39\x63\xe4\xb9\xca\x58\xb0\x11\x36\x27\xc0\x5b\x96\x08\xee\xaa\x7b\x9a\xe6\x30\x5c\x96\x18\x81\x60\x00\x0e\xe3\xa7\xad\xe9\x6e\x0b\x4b\xde\x9d\x0e\xd6\xa0\xce\xd7\x65\xd7\x86\x84\x0a\x48\x17\x5a\x6e\x09\x0a\x38\xaf\x6a\xde\xaa\x14\x86\xa9\xcb\x5c\x8c\x8c\x92\x23\xee\x0a\xe4\xc6\xc0\x26\x91\xa3\x54\x7e\x32\x58\x2a\x5b\x70\x59\xd2\xee\x66\xfa\x9c\xd9\x65\x61\x5c\x31\x5b\x47\x6f\xd8\x61\x27\x9c\xd1\xdd\x76\x07\x74\x3f\xc5\x56\x12\x96\x31\x2f\x11\xe4\x65\xca\x40\xbc\xe3\xcf\x0b\x1f\x1d\x5a\x30\xaf\x60\x87\xde\x4d\xe9\x6c\xe4\x39\x65\xa4\x6c\x4f\xcc\xa1\x5f\x28\x11\x49\xb5\xc1\xa0\xc8\x8f\xdb\xf2\x74\x09\xa1\x34\xed\x4f\x1f\xb7\x30\xfa\x19\x18\x16\xea\x78\x4d\x98\x6c\xc9\xec\x4b\x69\x44\x02\xde\x1d\xcc\xa9\xcc\xc6\x4f\xbd\x07\xb0\x7e\x54\xe9\x31\xde\x82\x7a\x84\x24\x60\xca\x0b\xf6\xb0\x4e\xbb\x57\x1f\xa7\x77\x87\xe3\x88\x4b\xe2\x2f\x1e\x40\x2c\xf2\xb8\xa9\x6a\x5d\x39\x77\x0e\xc4\xa8\x43\x03\x61\x42\xa0\xbe\x97\x0b\xb1\xab\x16\x5a\x63\x74\xdc\xf4\x3d\xeb\x8b\x98\x30\xb2\xc4\x9d\xb9\xcd\xfe\x4b\x52\x42\xe3\x6f\x95\xe0\xc3\xe0\x77\xe8\xd2\x38\xfa\x6a\x8a\xc0\xd5\x86\xbf\x61\xb8\x24\x8f\xb3\xa7\x9a\x27\x0a\xb2\x2b\xe8\xa9\xda\x05\x5f\xf3\xd5\xbb\x2d\x1c\xa9\xbc\x25\xf7\x01\x4b\x96\x40\x77\x19\xde\x34\x4c\x3e\x73\xb8\xc1\x14\xf7\x92\x07\x5a\x5c\x22\xfd\xd4\x16\x15\x4d\x34\x94\xec\x3f\x02\xfb\x11\x2e\xe5\x73\x7f\x70\x70\x4c\x1b\x6b\x07\xea\xcb\xf9\x45\x62\xca\x7b\x90\xdd\x84\xd9\x8c\x3e\xdf"}, {{0xba,0xb5,0xfa,0x49,0x18,0x7d,0xa1,0xca,0xb1,0xd2,0x91,0x90,0x00,0x19,0xe6,0xcb,0xaf,0xec,0xcd,0x27,0xbf,0x7e,0xcb,0xf1,0x26,0x2a,0x70,0x05,0x16,0xe7,0xc2,0x9f,},{0xf6,0xfb,0x19,0x85,0xec,0x59,0x1f,0x69,0xe3,0xba,0xc8,0x07,0xb2,0xea,0xbf,0x26,0x39,0x90,0xcd,0xfa,0x09,0xb1,0x78,0x09,0xe4,0x8e,0x38,0x5d,0xa0,0x65,0xec,0x21,},{0xe3,0x16,0x03,0x8d,0x6a,0xa1,0x5b,0x1c,0x1b,0x61,0xc1,0xa1,0x6b,0x36,0x90,0x4f,0xe8,0xa2,0x89,0xc8,0xd6,0x02,0xbe,0xcc,0x51,0x4d,0x99,0x22,0x00,0x86,0xb2,0x67,0x85,0x9f,0x5b,0xf6,0xe9,0xc0,0x86,0x35,0x59,0xac,0x62,0x3a,0x56,0xd7,0x53,0x23,0x44,0xe8,0xd2,0xf2,0x8b,0x3f,0x9d,0xf9,0x20,0x89,0x70,0x8b,0x1b,0x05,0x90,0x08,},"\x5c\xf8\xff\x58\x7e\x52\xcc\xcd\x29\x84\xf3\x47\x91\xee\x68\x43\xe7\x70\x17\xc3\xb5\x5a\xd4\x5c\x44\x45\x09\x65\xb7\x5d\x83\x6e\x78\xfb\xd7\xa1\xd1\x72\x9e\xff\x6d\x6d\x34\x0a\x90\x3f\x3c\xf1\x7d\x9e\x2a\xec\xaa\xff\x2a\x32\x1f\xcd\xde\x0a\xbc\xfb\xbc\xbc\xc0\x9f\x40\x86\xf8\x12\xc4\x6e\xfb\x01\xb7\x83\x43\xaf\xbe\x48\x30\x9f\x91\x74\x78\x45\x5f\x32\x00\x0c\x6a\x69\xf7\x9f\xe2\x11\xb9\x9f\x03\x7f\x59\x56\xd7\x22\x75\xa7\xfe\x7b\x45\x29\x6b\x5f\x73\x9a\xa4\x51\xff\x05\x75\xbc\x70\x58\x85\xaa\x56\x31\xb0\xd0\x85\x0b\xc2\xb1\x2c\x41\x92\x43\x5a\xe5\xd2\xf5\x2b\xc5\x43\x86\x49\x7c\x4a\x24\xb8\xb6\xdb\x51\x6b\xe0\x9d\x8c\xcf\x1e\xca\x78\x5b\xde\x97\xe9\xbe\x1a\xc0\x64\xf0\x94\xe2\xaf\xcc\x30\x7c\x0e\x06\xb4\xc5\x64\xcd\x9a\x9a\x95\x30\x5b\x37\xb8\x1f\x43\x46\x11\xdc\xa5\x5c\xaa\xa0\x31\xe8\x84\x95\xd5\xdc\x5a\x04\xff\x5f\xaf\xdf\x0a\x82\xa0\xc0\x3a\xff\x1b\xfb\xf4\xff\xeb\xae\x71\x82\x4e\x35\xe7\x51\xb0\x92\x70\x00\x76\x69\x86\x0b\x58\x00\x35\x65\x9e\x23\xac\xe7\x6b\x3b\x36\x9f\xa3\x06\xf2\xbe\xd9\x57\x99\xfa\xfa\xbc\x2e\x69\xc1\x41\xbe\xb0\xba\xca\xc7\xea\xa3\x47\xe7\x7b\xe5\xaf\x3f\xcd\xbe\x7b\x36\x4a\x7f\x9a\x66\xd5\xe1\x7a\x07\xdf\x62\x02\xfd\x98\xc1\x4b\xfe\xe2\xca\x6f\x07\x45\x65\x1f\x0c\x85\x50\xf9\xff\xff\xca\xfb\x96\xff\xb3\xf1\x03\xe6\x52\xe7\x8f\x53\x91\x6c\xd6\xf1\xdd\x05\xb3\xfe\x99\xb3\x42\x01\xb0\x7e\xac\x26\x52\xf5\x25\x35\x71\xfd\x38\x22\xc6\x95\xd2\x65\xc7\xdf\xdd\x6c\x6b\x14\xa8\x0b\x6e\x87\x18\x3e\x6e\x03\x2e\x5f\x24\x01\xcd\x23\x8c\xdd\x37\x69\xbb\x6e\x39\x08\x23\x43\x8f\x56\x73\xea\x9a\x47\x9e\x5c\x63\xfe\x07\xa0\x7f\x4e\x14\xf5\x77\x57\xc4\xd7\xd2\x2b\x35\xd7\x1c\x44\xea\xad\x48\x73\xc8\xec\xa6\xf6\xb2\x1d\xcf\xa9\x55\x20\xff\x96\x14\xab\xf7\xa0\xe1\x88\x53\x09\xf2\xce\xd3\xbc\xdf\xc3\x19\x36\x3a\x2d\xa4\x6d\xed\x79\xa5\xcc\x7b\x6f\x69\x38\x3f\x94\xab\x35\xc2\x50\x62\x9c\xb9\x15\xd6\x67\xb6\x28\x11\x86\x75\x48\x95\x80\x3e\x4b\x95\xe7\x41\x82\x89\xa6\xac\x3b\xcd\xb6\xe1\xe7\xf6\xf1\xdc\x38\xe7\x7d\x28\x19\x14\xcc\x40\x4f\x97\xcf\xf1\x4f\xb2\xc4\xfd\x81\x41\x2d\x10\x1c\x1b\xfb\x36\x8c\xe5\x93\x11\xe8\x92\xa8\xb9\xcd\xca\x86\x93\x6f\x3b\xca\x7e\xc7\x91\x63\xed\xdf\x1c\xee\x68\xf4\x9f\x1e\xba\xa2\x7e\xc5\x0f\x49\x0d\x61\x60\x1c\xa3\x5f\x8d\x6e\xd2\x66\x05\x4a\xeb\x9b\x19\x9f\x93\x3b\xff\xd6\xe0\x05\x0f\x26\x1b\x4e\x13\xd5\xeb\xfe\x2c\xaa\x65\x57\xc3\x2d\xde\xae\xeb\xc2\xa1\x1f\x0a\xa2\x33\x24\x0d\xa1\xc7\xe4\x0f\x76"}, {{0x74,0xca,0x12,0x2a,0xb6,0x0d,0xe5,0x0c,0xdc,0x04,0xa8,0xe2,0xed,0xa4,0x5d,0x96,0x31,0x06,0x1b,0xf1,0x87,0xd3,0x16,0xbe,0x5b,0x7c,0xc0,0x6f,0x02,0x0c,0x48,0x3e,},{0x78,0x7d,0xef,0xd4,0xfb,0x24,0xa3,0x99,0xbd,0x2a,0x4e,0x76,0xdf,0xf7,0xd6,0x03,0xed,0x0a,0xcb,0x32,0x69,0x81,0x3e,0x4d,0xf6,0x90,0xbb,0xf5,0xb2,0xbc,0x69,0x6e,},{0xbc,0xb4,0xb8,0x50,0x69,0x60,0x11,0x99,0x7e,0xb5,0xdf,0xe1,0x43,0xf1,0xa3,0xd5,0x62,0x8e,0xf1,0xa5,0x40,0x76,0x91,0xee,0x48,0xc7,0x9d,0x69,0xab,0xe4,0xd5,0x33,0xf8,0x17,0xad,0x73,0x13,0xb5,0x79,0x5e,0x46,0xe5,0x95,0xf3,0xae,0x3a,0x91,0x65,0xb1,0xb6,0xfd,0xda,0xe8,0x61,0x64,0xff,0xcb,0xa3,0x76,0x24,0x98,0x37,0xf6,0x09,},"\xa8\x0b\x46\x07\x9f\xa7\x75\xf8\xc1\xa1\x9f\xa0\x82\x9b\xe6\x66\xbd\xfd\xca\x07\x9c\xad\x43\xd7\x0e\x08\x42\x18\x3b\xc0\xdb\x95\x46\x8a\x53\x9f\x0d\xb2\xae\xa3\xab\x9c\x70\x73\xb4\x5d\x22\x8a\x9b\xde\x23\x28\x97\xa6\xeb\x6f\xc9\xed\xf7\x36\x5e\x71\x01\xba\x97\xc4\x46\xa5\x19\xa3\x64\x9c\xf5\x27\xc8\xa6\xde\x72\x51\xb9\x28\x06\x81\x5a\xc2\xfa\x00\x82\xef\xf7\x5e\x25\x82\xcb\xca\x7e\x1e\x4d\xa2\xa4\x46\xea\x23\x3e\x7c\xf7\xce\xdf\xb0\xe2\x39\x8e\xb6\xe1\x1b\xba\xef\xe3\xf7\xec\x89\xf5\xd7\x3d\xd3\x4b\xd4\x7f\xbc\xb4\xd7\xb2\x2f\x2a\xae\xe3\x73\x78\x56\x51\x84\x11\x35\xcd\x86\x61\xa7\x01\xb2\x10\x84\xa3\x16\xde\xac\x30\x74\xe2\x4a\x2e\x35\xa0\x33\x0f\x7d\x14\x79\xb9\x32\xf2\x85\x27\x7c\x18\xa4\x41\x78\x72\x24\xfb\xbe\x46\xc6\x2e\x83\x4a\x18\x51\xed\x23\x79\x98\xd4\x8d\xce\x20\xba\x11\x4d\x11\xe9\x41\xbe\x29\xd5\x6d\x02\xf7\x37\x0c\x8f\x6d\x6d\x7e\x50\x24\x8d\xcd\x8e\xc8\x9d\x3b\x22\xf4\xf5\x87\x78\x12\x9f\xaf\xd4\xbb\x92\xed\xe1\x77\x14\xbf\x02\x2a\x5b\xf9\x2b\xe4\x79\xf1\x8e\x63\x85\x2e\xcd\xcf\x8c\x42\x11\xf5\x30\xdd\x30\xf7\x9c\xbf\x4b\xfa\x57\x37\xf0\xba\xd3\xb0\x10\x60\x67\xf4\x13\x27\xc3\x18\x9e\x6f\x20\x6f\x0d\x4f\x3c\x70\x4b\xf2\xbd\x0b\x16\x1f\x01\x8f\xd2\x1c\xdd\xfb\x41\x8b\xac\x4d\x52\xef\x02\xc4\x1c\x87\x92\xe4\x13\xb0\x4f\x08\x36\xce\xa1\xf8\x6c\x92\xe5\xd5\x70\x3b\xee\x2b\x5c\x58\x99\xe2\x85\x99\x20\x24\xf6\x4e\x0d\x16\xc6\x0a\xd0\xfd\x92\x54\x79\x32\xd0\xc5\xcb\x98\xd8\xda\x22\xfe\xeb\xdb\xba\x8d\x1d\xe1\xe7\xe9\xbb\x21\x9a\x92\xeb\x6c\x1c\x69\x8d\x3b\x33\xa3\x7f\x9b\x81\x97\xd2\x6b\x55\x0f\xeb\xd2\x60\x1e\x7a\x64\x3e\xa7\xe1\xd9\xe4\x48\xae\x03\x7f\x62\x9a\x30\x6c\xe4\x17\xae\xb7\x9f\x2e\x3c\xa4\x4d\x8d\xb3\x84\x8a\x81\x1f\x18\x46\x81\x1c\xbc\xb8\x74\xf8\xaf\x09\xe0\xfd\x01\x73\xcf\x17\x5f\x30\x41\x15\x47\x6b\xf2\xc6\xc2\xd2\xf3\x32\xeb\xa5\x34\xf4\x6a\xae\x80\x1c\x26\x92\xc2\xd2\xfa\xdd\xfe\xac\xc0\xf1\xda\xce\x44\x0a\xbc\x2a\xe5\xe5\xa4\x9d\x57\x8f\xd7\xf9\xde\x2a\x84\x1a\xd6\xb6\x76\x9c\x32\xb1\x44\xce\xea\x16\xd0\xf3\xc0\xcb\x3a\x8e\xe6\x94\xc3\x8c\x28\x07\x35\x95\x09\x6c\x81\x37\x62\xcc\x2c\x5e\xc4\xb0\xd8\xd7\x23\xdd\x66\x08\x53\x27\x8f\xc7\x2f\xd6\xbd\x9d\x12\x72\x93\x3d\xd2\xa3\x8e\xd9\xd0\x4b\x13\x90\xff\xe4\xb2\x94\xa6\xff\xfa\x72\x1e\xe3\xbb\xa3\x3a\x03\xa1\x49\xc4\xa0\x34\x52\x65\xc0\x1c\xe0\x15\xe9\x4d\xb4\x19\xcf\xf7\x04\x98\x52\xee\x00\x00\x48\xa8\x57\x58\xf6\xd7\xb1\xc5\x9c\x50\x89\xee\x01\x8e\xd0\x9b\x52"}, {{0x65,0xee,0xa9,0xff,0xb7,0x56,0x12,0xbd,0xe1,0xd9,0xba,0x3e,0xa4,0xfb,0x5e,0xda,0x0a,0xa6,0xf2,0x55,0x6a,0xb1,0x5b,0xf1,0x81,0x7c,0xee,0x3b,0x95,0xbb,0xba,0x12,},{0x5b,0x39,0x36,0xdc,0x74,0x9b,0x6b,0x92,0x39,0xf1,0x57,0x98,0xac,0xca,0xfd,0x88,0x4c,0x36,0x59,0xee,0x01,0xb2,0xd1,0x7d,0x74,0xfc,0x7d,0xa7,0x82,0x74,0xe7,0xe6,},{0xba,0xa7,0x11,0x31,0x55,0x35,0x8c,0x92,0x4f,0xed,0x57,0x48,0x8a,0x65,0x67,0xf8,0x72,0x38,0x50,0xa9,0xf5,0xc0,0x3a,0x0d,0x7d,0xe8,0x5f,0xcc,0xd8,0xfb,0x4d,0x17,0xd7,0x75,0x35,0x23,0xb0,0x0c,0x0d,0x8a,0xdb,0x88,0x4d,0xc0,0xc8,0xa7,0xa4,0x4d,0xc2,0xa6,0x00,0x83,0xaa,0x5b,0x3c,0x5b,0x94,0xa8,0xd8,0x80,0xf2,0xa9,0x4d,0x09,},"\xc0\x69\x36\x32\x3c\xe3\x25\x3c\xac\x5a\xb4\xf6\xb8\x32\x70\xcd\x4c\xfe\x85\xd0\xbf\x8b\xac\x1e\x1b\x8d\x5f\x0b\x15\x3f\x54\x1c\x8e\x8e\xd9\x5f\x28\xd5\xc8\x5a\x23\x15\xcd\x93\x1b\x7c\xf3\xed\xae\x50\xf9\x28\x30\x59\x91\x62\x80\x4b\x13\x63\xd3\xac\x0d\xa0\xab\xd0\x97\x51\x02\x3b\xdd\xc1\x62\x88\x94\x4e\x61\x6d\x21\xd9\x12\x71\x97\x8b\xb7\x82\xd3\xeb\xed\x7f\xa6\x12\x84\xc7\x49\x0d\x27\x59\x3c\xa8\xa3\xd5\xb4\x75\x62\x33\x07\x01\x0a\xbc\x1f\xbf\x79\x3a\x81\x6a\xaa\xb5\xe0\x92\x4d\xec\x79\xd6\x04\x98\x96\x5c\xf7\xf8\x0a\xb5\x9f\xc0\x29\xf7\x82\x16\x67\x55\xb7\x2b\x86\x90\x75\x43\x4a\xb6\x06\xcc\x87\x0a\x7c\x0b\xc8\xbf\x29\xae\xe0\x33\xfa\x9c\xc1\x22\xed\x7c\x8e\x06\x9b\x54\x7d\xba\xe2\x59\x01\xb9\xe2\x49\xb4\x1f\xea\x0b\xf8\xda\xf3\x82\x68\x66\xbc\xae\xd2\x75\x3b\x5e\x91\xae\x93\x7e\x71\x7b\x50\x8a\x0a\xcf\x4c\x3b\x06\x1f\xf0\xcb\x9c\xfd\x38\x0e\x24\x94\x50\x09\x51\xa6\x62\xfd\x49\x28\xfc\x5f\xca\xf6\xc1\x8e\x84\xb1\xd3\x78\xe4\x9b\xd9\xd5\x96\x86\xd0\x87\xeb\xd5\x52\xd0\x7f\xa9\xba\x81\x6f\xa5\x40\x2c\xa9\xe7\x25\x2a\x64\x8d\x10\x6c\xfe\x6c\x43\x1c\xc2\xa0\x53\xe2\x29\x46\x37\xcd\xb9\x9d\x96\xab\xe6\x89\xed\xab\xc5\xca\x07\x0f\x77\xc1\xec\xd1\xd5\x2d\x53\x85\x28\x9f\x17\xce\xd7\x68\xc3\x97\x16\x71\xb9\xc0\xb2\xf8\x55\xb8\x46\x1c\x1e\x74\x6c\x7b\x38\xf7\x78\x96\xb8\x5a\xfb\xbe\xdd\x08\x37\x5f\xe9\x22\x98\x46\x14\xdd\x84\x9f\xe2\xcb\x89\xae\x71\x49\xdc\xd1\xd3\x7f\x49\x36\xe6\x7b\x14\x40\xbe\x72\xe0\x09\x39\x8b\xe6\xf0\x83\xbf\x96\x11\x48\x0b\x59\x2f\xe2\xf0\x11\x8e\x25\x3d\xb5\xd2\xe9\xe4\xb4\x54\x1c\x11\xda\x00\xf7\x16\x1a\x73\x6e\x5f\x0b\xb9\x34\x20\x8e\x3e\xf4\xe0\xb9\xa5\x22\x58\x20\x3f\x06\x0d\x18\xa1\x95\x15\x9e\x5e\x26\x8a\xa2\x80\x53\xc8\x34\xf7\xbd\x5d\xb9\xbd\x71\xf5\x07\xd9\x13\x70\xb3\xff\xca\xbb\xd4\xac\xb3\x07\x1d\x3f\x6d\x52\xc3\x49\xac\xf3\x50\x95\x34\x8c\xeb\xf5\xa8\x6f\x8c\x59\xdd\xc9\x65\xef\xf6\x10\xac\x42\x58\x04\xc0\xe2\xf6\xbe\x42\x85\x3f\x5b\x46\x43\x4a\x2c\x31\xd9\xac\x99\x53\x9b\xfd\xc0\x4e\xcf\x2f\xef\xd0\x45\x98\xfa\x63\xc1\x39\xff\x6c\x6d\x88\x41\x0e\x73\xbd\x32\x8c\xc4\x34\x9a\xb4\xbb\x86\xf2\xe2\xed\x7c\x73\xde\x96\x52\x0e\xf7\x73\x0e\xf3\x83\x45\xe0\xf9\x72\xa8\x4c\x53\x88\x10\x36\x87\xe6\x8c\x50\xf9\xd8\xc9\xaf\x90\x3b\xc6\x32\xd4\x32\x04\x06\x2a\x4f\x50\x2e\x21\x4c\x07\x05\x9c\x2c\xbe\xf7\x2a\x54\x11\x0d\xbf\x73\xe4\x25\x40\x2d\x17\xe9\x78\xec\x19\x9b\x51\x8c\xec\x03\x10\xbf\xbf\x7d\x9a\xd3\x00\x43\x4a\x4a"}, {{0x08,0xda,0xbd,0x4e,0x5c,0x11,0x9e,0xa9,0x07,0xce,0x45,0xf0,0xa7,0xaf,0x9e,0x62,0xc0,0xc3,0xf1,0xc9,0xec,0x61,0xad,0x10,0x56,0x7d,0x79,0x36,0x28,0x54,0xc5,0x57,},{0x94,0x54,0x06,0xb8,0x5d,0x7b,0x32,0xe0,0xb1,0xab,0x12,0x00,0xb9,0x42,0x22,0xde,0x1a,0xaa,0x68,0x62,0x4c,0x60,0xbb,0x47,0x16,0xb0,0xbc,0xe9,0xdf,0x00,0x57,0x71,},{0x33,0xad,0xbf,0xcd,0x4e,0xd4,0xfa,0x67,0xc5,0x8b,0x5c,0xb5,0x9e,0x16,0x98,0x71,0x48,0x69,0x78,0x12,0x66,0x0b,0x35,0x31,0xff,0x6a,0x21,0xc7,0x49,0xb9,0x60,0x16,0x60,0xba,0xee,0xe2,0x48,0x9b,0x82,0xb4,0xcd,0xe1,0x32,0xb6,0xe6,0x2f,0x2f,0x90,0xd8,0xf9,0x92,0x78,0x60,0xaa,0xad,0x25,0x28,0x1d,0x03,0xeb,0x17,0xa9,0x52,0x0f,},"\x6c\x47\x19\xa5\xa2\xa6\x89\x48\x35\xc4\xac\x1e\xd6\x91\x59\xe5\xeb\xb5\x69\x2a\xd8\xea\xad\xa4\x39\xf7\x9e\x96\x68\x4b\x36\xce\xcf\xb4\x4b\x89\x01\x56\x31\x66\x3e\x06\x44\xf6\xc7\xab\x71\x39\x89\xd7\x42\xda\x27\x42\x72\x53\x31\x8a\x52\x43\x2d\xfa\xb2\x12\x1d\x1e\x92\x33\xea\xd7\x19\xe2\xc8\x6a\x6b\xe0\x73\x63\xd0\x02\x17\x3f\x20\x54\x46\xca\x95\xfc\x17\xb2\x46\x35\x82\x7f\xe3\x15\xf2\x22\x40\x8e\x45\xe8\x33\xf2\x9f\xf0\x8f\xf3\x1d\xac\x58\x3a\x4b\xec\x70\x76\xd5\xcc\x78\xcf\xc9\x44\x51\xcb\xf4\xf7\xe2\xfc\x5b\x5e\xd8\x07\x0f\x4e\xf8\x08\xbe\x1d\x8a\x68\x0e\xcd\xff\x59\x01\x0f\x39\xb1\xde\x80\xbe\xf1\x71\x9f\x1e\x21\x8e\x0c\xe0\xa1\xe3\x93\xa5\x66\xc5\x17\x64\xd2\x37\x0d\x95\xa6\x11\x91\xd8\xf7\xaf\x74\x0d\xc2\x08\xfa\x78\x31\xb2\x10\x67\x05\x12\xcd\x73\x76\x6e\x60\x9e\x9b\x78\x00\x21\xeb\xb2\x0c\xc8\x79\x0d\x8d\xa5\xf1\x0f\x5b\x6a\x11\x4a\x1d\xb8\x8f\x66\x76\x65\x01\x80\x2d\x9c\x36\x6e\xa3\xfa\x6f\x1b\x1e\x1e\x8b\x04\x20\x94\x34\x13\xcc\x6f\xea\xb2\x8c\x6b\x68\x3c\xd2\xb3\x33\x06\x9c\x89\x51\xbc\x45\xe8\xa1\x3b\xd5\x22\x57\x83\x51\xc8\x82\xf7\xc3\x42\xfe\x43\x31\xb9\x21\xf5\x33\xc9\x2e\xc0\x4a\x49\xb2\x92\xbc\x56\x9d\xdc\xef\xca\xb5\x72\x7f\x9b\x56\x25\xb1\x67\xa9\x02\xdc\x89\x6d\x8b\xc7\xd8\xe9\x99\x20\xf5\xdb\x8d\xd7\x67\x83\x9c\x43\xe3\xcd\xf9\x47\x08\x0d\xec\x95\x42\x14\xa6\xfb\xbe\x04\x87\xa2\xf3\x2c\xd1\x7a\x6b\x00\x03\x70\xbd\x41\x44\x84\xfb\x73\xc5\x10\xea\x01\x24\xc6\xcf\x0f\xe5\x6c\x08\x46\xa7\x9b\xfc\x59\x77\x9d\x3b\x07\xa1\xbd\x2c\x7f\xb7\xe2\xd0\x03\x9f\x0b\xd2\x1c\x8a\x30\x8f\xb0\xf5\x8f\xdb\xf9\x4e\xfa\x08\x57\xac\x3b\xdd\xdd\x86\xd5\x76\x3e\x20\x5e\xe1\xb2\x21\xf0\x60\xce\xdb\x8b\xc0\x5f\x03\x1b\x60\x6c\xc7\x4d\xad\xc5\xdb\x04\x23\x27\x48\x86\x5a\x73\xd6\xcc\xdd\xb4\xd5\xe9\x30\xd5\x28\x34\x8c\x5b\xe9\x08\x8b\xfe\x34\x45\x84\x87\xa6\x7b\x19\xa1\x8e\xca\x25\xc0\xd3\xfb\xe2\x19\x5e\xb9\x17\x07\xb6\x5d\x91\x61\xea\x93\xed\xdd\x64\xa6\x34\xb2\x32\x80\x19\x5f\xdb\x0d\x13\x88\xf6\x99\x8e\x18\x58\xa4\x5b\x88\x69\x99\xb8\x44\xe6\x79\x5d\x83\xd3\x18\x37\xe4\x41\x1f\x71\x69\x92\x26\xde\x1b\xa0\x24\x56\x08\x00\x0d\xcf\x22\x3d\xd1\x83\x59\xb7\xc6\xd4\x59\xa6\x5d\xbe\x66\xc9\x0f\x5c\xb8\xc0\x91\x22\x18\x7a\x30\x46\xa1\x6d\xd1\x79\xc3\xf4\x37\x3e\x57\xcf\x5e\xe0\xea\xb6\xa2\x12\xcc\x9e\xd8\xb5\x4b\xf3\x7f\x1d\x27\xfb\xd7\x98\x48\xe4\xec\x1f\x56\x72\x43\xab\x87\x40\xa0\x51\x49\xd9\x60\x2e\xad\xa9\x20\xa4\x6d\x61\x0d\x3c\xc8\x23\xb5\x64\x98"}, {{0xe0,0xf7,0xd0,0x08,0x24,0xc5,0xf3,0x70,0x1e,0x55,0x17,0xa4,0xab,0xc1,0x3e,0x2f,0x2c,0x0b,0x13,0x8c,0x83,0x69,0x77,0x84,0x3b,0xbd,0x1e,0xef,0xfa,0xbd,0x96,0x8a,},{0x52,0xfd,0xda,0xe3,0xe0,0x18,0xa6,0x84,0x73,0xb3,0x16,0x8d,0x07,0x64,0xcf,0xe2,0x74,0xdc,0xc8,0x34,0xc9,0x0a,0x91,0xfb,0x4f,0xe7,0x4b,0x93,0x9d,0xd2,0x38,0xb1,},{0xcc,0xdf,0xe1,0x8a,0xd6,0xd0,0xb6,0x5d,0x08,0x6d,0x63,0x2f,0x83,0xcc,0x46,0xff,0x3b,0x3f,0x2c,0x07,0xbb,0x8e,0x76,0x9d,0x0f,0xb4,0xe8,0x2d,0xf8,0xa3,0x87,0x3f,0x9a,0xee,0x35,0xfd,0xd1,0x8a,0x57,0x83,0x60,0x31,0x80,0xa9,0x5c,0x9f,0x74,0xce,0xd9,0xdb,0x51,0x46,0xaf,0xcf,0xbb,0xdd,0x40,0xdf,0x29,0xe0,0x42,0x01,0x20,0x0c,},"\xb3\x9e\x3a\xc7\x5a\x22\x1a\xdc\xce\xd0\x9a\x85\x91\xac\x5e\x2f\xe1\x5d\xfe\xd5\xb9\x19\xcb\xaf\x14\xc6\x5e\xb7\xcd\x93\x08\x6d\xde\xe3\xf7\x47\x25\x47\xe6\x6d\xdc\x70\x06\x2b\x97\x62\x97\xd1\xa3\xc1\x70\xee\x52\x5c\x9c\x53\xba\x93\xa4\xc4\xfd\xb2\x35\x72\xb7\xca\x6e\xd1\x38\x53\xe7\x0d\xb1\xd7\x2e\xde\xb9\x94\x4b\xbc\x35\x4a\x52\x0e\x77\xae\x59\x1f\x31\x80\x92\xef\xd5\xe6\x6d\x9c\x09\x81\xc4\xa4\xbd\xa9\x8a\xa4\xe5\x90\x45\xff\x9c\x4b\x4c\xa3\xac\xb2\xff\xd8\x93\x20\x1c\x70\xb3\x4a\x77\xf2\x4e\xda\x54\x54\x9d\xc8\x4a\xd1\x34\xa3\x55\x32\x55\x38\x15\x88\x8a\xe3\xdd\x9e\x24\x1e\xc4\xeb\xbf\xf8\x6f\x8c\x1e\x8a\xdb\xaa\xc4\xb9\x1a\xfd\x18\x22\x8c\xbb\xd5\xdd\x80\x5a\xca\xbf\x0a\x1e\x29\x0c\xe5\xdd\xa0\x25\x1a\xdf\xb3\x7c\xb7\x14\xc1\x39\xb5\xa3\x24\x2d\x88\xc6\x44\x84\xa3\x76\x55\xcc\x8f\xcb\xec\xff\xa9\x7f\xbd\x14\xd6\x4d\x51\x2b\xf8\xf6\x30\x5f\x89\xc5\x09\x22\xde\x54\x16\x92\x15\x8f\xb5\x47\xfd\x53\x9f\x1e\x58\x77\xcc\x64\x94\x95\x16\x63\x32\xea\x2b\x68\x5c\xfa\x3f\x60\x20\x19\xdf\x2a\xb2\xc2\x5e\xd9\x6b\x68\x74\x5e\x9a\xe8\x9c\x94\x8d\xa1\x1a\xd8\xa8\x30\xdf\x8b\x00\xf2\xe6\x68\x19\x2d\xad\xf2\xc5\x62\x0d\x35\xc6\xe8\x1a\x28\x53\xf8\x41\xe3\x75\xa0\xd9\xfc\xa2\xd2\x96\xef\xce\x2a\xc3\x8d\x40\xb0\x30\xb5\x75\x60\xae\x6e\x83\x41\x33\x9b\x3d\x3c\x2d\x06\x11\x64\x12\x43\x19\x59\x86\x88\xfc\xa6\x18\xfc\x64\xc9\xe8\xf5\xf8\x31\x09\x7a\x05\x3a\xf1\x9d\x7d\xbd\x61\x21\x8d\x92\x67\x42\xc2\xe9\xa4\x2a\x79\xcc\x1b\x14\x89\x12\x72\x2d\x8c\xd5\xca\x79\x3a\x1a\xd7\x3b\x5f\x14\x1b\x41\x80\x9c\x2f\xc0\x53\x0b\x76\x30\xe8\x03\x90\xc6\xb3\x38\xc7\x18\x68\xda\xcc\x59\xbf\x46\x3f\xfc\x48\x90\x16\xbf\x67\xf9\xc9\xd5\x55\x3c\x1e\xde\x17\x15\x28\x13\xfe\x0b\x26\x4b\x65\xdc\xa1\xb2\xb3\x8e\x4b\x80\x9f\x8c\x97\x25\xac\x5b\x1d\x8d\x2e\x56\xbe\xc9\x64\x9f\xe5\x5c\x75\x83\xff\x23\xb0\x43\xd6\xf3\x76\x86\x28\xf1\xf0\x51\x63\x37\x82\x4a\x5a\x56\xb4\x09\x52\x0a\x6a\x6c\xb7\x7e\x4f\x5f\xc2\x0b\x9f\x68\x99\xe0\x0a\xb2\x2d\xb1\x0d\x18\x2f\x09\xb8\x1e\x94\xf3\xad\x56\x8a\x0b\x81\x24\x4d\xf3\xf1\x85\x5c\x6e\xf2\x22\xa4\x1a\x51\xb6\x2a\x46\x49\xbb\x82\x69\x0a\xb6\x5f\xac\xac\x0d\x81\xd6\xfe\x02\x60\x11\x70\xa8\xdb\x62\xcb\xc5\xec\x99\x55\xd7\x71\x1a\x1c\x39\x65\x6a\x9f\x6e\x1f\xb6\xbc\x18\x3d\x9b\xea\x15\x03\x53\x1f\x17\x36\x27\x68\xbb\x84\x1f\x9d\x21\xf1\x3a\x2c\x99\x1e\x55\xdf\xf7\xf2\xb3\x36\xe2\x9e\xb2\x95\x07\x63\x8b\xdc\xad\x7b\xb3\x1c\x69\xe9\x09\x20\x7e\xba\xbc\xc6\x53\xff"}, {{0x6a,0xcd,0x93,0x9e,0x42,0x22,0x26,0xcc,0x54,0x43,0xd4,0xaa,0xbf,0x58,0xc1,0x1a,0xf6,0x50,0xcb,0x40,0xb9,0x64,0x8b,0x4d,0xa3,0x8b,0x92,0x7b,0xff,0x9a,0x58,0xdb,},{0x4c,0x0b,0x91,0x75,0x6b,0x9e,0x20,0x6f,0x78,0x63,0xb1,0x55,0xff,0xc5,0x50,0x9b,0xb5,0x24,0x77,0xce,0xac,0xd0,0x1c,0xa0,0x11,0x43,0x51,0x53,0x67,0x86,0x46,0xcc,},{0x79,0x99,0x58,0x77,0xed,0x24,0xc7,0x91,0x68,0x4f,0x29,0x84,0xbd,0xf9,0x60,0x9c,0x3f,0x7b,0x57,0x6c,0x57,0xd1,0x62,0xee,0x62,0x2d,0x4c,0xe8,0xf3,0x6d,0x9c,0x55,0x73,0x16,0x9d,0x88,0x01,0x21,0x6f,0x1c,0x46,0xff,0xe2,0xf6,0xe2,0xc0,0x90,0x48,0xe4,0x7d,0x4b,0xeb,0x99,0x7e,0x9a,0xbc,0x4a,0xbb,0x12,0x9f,0x9b,0x79,0x69,0x0a,},"\x82\x50\xd5\x31\xcf\x2b\x66\xaa\xc2\xb3\x78\xd5\x4b\xc5\x7f\xd3\x29\xad\x5a\x41\x4a\x59\x92\x55\x89\x8b\x3c\x3b\x45\xbf\x9c\x0d\x2c\x77\x54\x75\x66\xb6\x60\xee\xcc\x76\xa6\x95\xa2\xd6\x08\xab\xf1\x1a\x5f\x6d\xb3\xe6\x07\xfd\x5a\x21\x71\x4b\x0f\xad\x5d\x81\x4c\x01\x5e\xbf\x48\xbb\x73\xad\x75\xda\x9c\x03\xc4\xaf\x54\x89\xe7\x82\xb6\xbf\x79\x08\xa1\xbd\x52\x8d\x7c\xe7\x88\xa1\x8b\xa3\x52\x8e\x35\x37\xaa\x7b\xbf\x75\xf6\x52\x4b\xbd\x19\xa5\x30\x4b\xa2\xa4\xa3\xee\x58\xc4\x1f\xec\x31\x32\xee\x65\x01\x64\x12\x15\xef\xf7\x46\xd7\x80\x0c\x4d\x33\xf5\x2b\xe8\x35\x7e\x0e\xe7\x58\x04\x1d\x91\xcf\xe4\x3c\x60\xc3\xce\xdc\x09\xb0\xd4\x6d\x4c\xfb\x9a\xe2\xa0\x23\x9b\x6f\x33\xc6\x94\x1c\xff\x35\x37\x26\x70\xee\xf5\xc8\x85\x9a\xb6\x5b\x6e\x9f\x7e\xbc\xe3\x2f\xa1\x5a\x9a\x47\x7a\xec\xdc\x96\x83\xa1\xe3\x3a\x1e\xdc\xdc\x90\xd4\x20\xa3\x1e\x78\xc1\x53\xd2\x60\x20\x87\x1d\xaa\x4f\xff\x28\xac\xc3\xf1\x1a\x72\x06\x78\x88\x06\xb6\xfa\x02\x34\x68\xea\x5a\x3d\x18\x6d\x10\xf0\xdd\x56\x77\x96\x66\x3b\xa3\x7c\x83\x2f\xe7\x5a\xae\x7d\xcc\xeb\xf3\x19\xf9\x36\x00\xc4\x6a\x22\xf5\x72\x23\x81\x2d\xdd\x0a\x68\xd7\x6b\xaf\x5e\x27\xa9\xfc\x8b\xd6\x8c\xc1\x0b\x5b\x51\x51\xd6\x2b\x41\xf9\x34\x8e\x21\xb7\x15\x35\x2f\x26\x30\xb6\x17\xf8\x13\xb0\xc2\x89\x96\x28\x59\x04\xcf\x29\x4e\x9c\x28\x56\xb1\x7b\xa3\x5f\x9a\x82\x19\x8b\x82\x14\xa0\x35\xe2\x89\x6d\x65\x68\xbe\x42\x39\x2c\xce\xf3\x2c\xd4\xeb\xfe\xeb\xf1\x2b\xe0\x12\x52\x06\xbb\xe8\x93\x36\xd3\xe7\x62\x99\x1d\xfa\xb6\x8f\xc9\x9d\xc1\x64\x9b\x89\x13\x83\xdb\x31\xfa\xb6\x49\xe6\x28\x82\x3f\x45\x98\xcb\x63\x6a\x38\xfe\x1d\xf7\x3e\x68\xd7\x42\x5f\xc5\xd2\xeb\x55\xa0\xfd\x1b\xc9\xf5\xce\xaa\xbd\x6d\xd4\x1f\x23\xe4\xf0\x86\xc6\x92\x63\x3d\xc3\xc4\x61\x9a\x97\xab\x0e\xad\xa1\x71\xf8\x4a\xdf\x20\xec\xc8\xec\xd4\x7c\x51\xcc\xa3\xe5\x9d\xd8\x09\xb0\xae\xaa\x73\x0d\xf9\x4b\xe3\xba\xcf\xd8\xee\x88\x8b\xba\x9d\x57\x08\x50\x65\x2c\xd4\xd5\xe6\xc5\x52\xa5\x7e\x9f\x48\xa2\xb0\x6a\xac\xdc\x70\x8d\x84\xa3\x76\xfb\xc6\xc9\x4b\xa6\xbf\x64\xa5\xf0\x18\x80\x0a\x7c\xc8\x51\x24\x5a\xed\xb2\x03\x78\xb3\x29\xac\xeb\xb2\x97\x7c\x13\x98\x08\x2b\x3a\x0e\x5e\x2a\x9c\x24\x84\xfa\x30\x1d\x30\x37\xa8\x22\x4d\xdc\xc0\x95\xb1\xdb\xd8\xa2\x31\x5b\x55\xbf\x33\x18\xc2\x78\x10\xef\xc3\xd8\xe2\x5f\xa7\xa8\x78\x9b\x73\xa4\xf5\x50\x59\x08\x0b\x08\xab\xb3\x69\x9b\x7b\x86\x26\xcb\x2a\x78\x0d\x97\xcc\x1c\xa8\x03\x28\x51\xba\xf4\xed\x8b\x64\xfc\x43\x30\x86\x5f\x84\xcc\xb1\x2a\x3d\xae"}, {{0x4d,0xef,0xf6,0x47,0xcb,0xc4,0x5e,0xca,0xed,0xc3,0xf7,0xdd,0xf2,0x2c,0x16,0x7a,0xf2,0x4e,0x3d,0x63,0xda,0x22,0xb0,0xe6,0xa5,0xb8,0x43,0x9c,0x0f,0x3b,0x19,0x34,},{0x0c,0x27,0xc9,0xd7,0x7a,0xc8,0xc7,0x25,0xbb,0x06,0x63,0x93,0x3a,0xb3,0x0d,0x1a,0xad,0x09,0xcb,0xcf,0x2c,0xd7,0x11,0x6c,0x60,0x85,0xa8,0x49,0x9f,0x70,0x14,0x02,},{0xdd,0x54,0x89,0xfd,0xe4,0xba,0x87,0xd1,0x17,0x3d,0x4c,0xee,0x06,0x82,0xaf,0xdd,0x4b,0xad,0x80,0xdd,0x77,0x0e,0xa7,0xd0,0xdc,0xeb,0xaf,0x21,0xac,0xc6,0x1d,0xd6,0x32,0x4a,0xca,0x29,0x5e,0xd0,0xe2,0x3a,0x91,0x5e,0xcf,0xda,0xd5,0x0f,0x17,0x5e,0xbc,0x51,0x6f,0x1b,0xe5,0xb6,0xd8,0x7d,0x90,0xbb,0xe3,0x86,0x22,0x49,0x53,0x02,},"\xd6\x20\x1e\xbc\x21\xce\xc1\xe9\xbc\x28\xf9\x57\xc9\xd0\x29\xcc\x38\xf9\xe8\x5e\x06\xdf\xc9\x0b\xf2\x97\xe6\x1f\x2b\x73\xb4\x07\xd9\x82\xa6\x6b\x91\xe9\x4a\x24\xe9\x1d\x06\xab\x8a\x5c\x07\x9d\x0f\x69\xbe\x57\x88\xea\x8f\xea\xce\xbd\x91\x72\x91\x19\x22\x33\x86\x2e\x6a\xcd\xa1\xe8\xcf\x9a\x48\xbf\xfb\x54\x91\xdd\x65\xaf\x54\x1b\x6c\x72\xaf\x68\x1a\x81\x82\x3d\x98\xa0\xab\xee\xb6\xba\x9f\x95\x46\x5b\x84\x11\xf9\x9e\x11\x9c\xd2\x84\x79\xda\x98\x42\x59\xbd\xf8\x6c\x9f\xef\x3c\xca\x34\xe2\x24\x69\x1f\x18\x3c\xf0\x95\x03\x77\x27\xda\x9c\xad\x29\xf2\x42\xf8\x3e\xb4\xf7\x36\xe2\x7f\xdf\x67\x01\x8d\x71\x1b\x74\xc4\x5b\x29\x55\xa6\xa7\x6e\xc1\x53\x30\xdf\x5b\xad\x80\x30\xc6\xb3\xa8\x8d\x72\xf2\x84\x47\x65\x2a\xc8\x90\x2b\x5b\x76\xcb\xf6\xb9\x45\xce\xab\xfe\xc0\x4a\x9b\x8c\xb3\x0f\x43\xd9\xeb\x77\x3e\x67\x05\x59\x4f\x0d\xe1\xb7\x0f\x1a\x20\xc9\x9f\xc4\xb1\x22\x1f\x8c\x81\xb0\xbc\x30\xda\x12\xcd\x5d\xea\x8f\x4d\x90\xf1\x3a\x81\x1a\x2c\xc1\x1a\x96\x84\x6a\xaf\xb4\xc4\x2a\x00\xe9\xae\x7d\xa2\x56\xa0\xd2\x2b\x19\x8a\xfc\x25\xcc\x10\x41\xd2\x4e\x05\x6c\xf3\x87\x60\x1d\x7b\xf7\xeb\x31\x82\xd6\x05\xfe\x5e\x63\xb1\x8d\x53\x1a\x5f\x84\xe5\xdb\xd0\x18\x4a\x76\xc6\xc4\x67\xa8\x26\x3a\x98\xb5\xc0\x05\xfc\xb2\xaa\xf9\x89\xf5\xcb\xd0\xa9\xd9\x03\xfc\xfc\x60\x9d\x6e\x57\xd9\xc4\x39\x02\x1c\xea\x93\xe4\xc4\xe9\x91\xf1\x93\xca\xf3\x24\x37\x70\xb3\x25\x78\x74\x80\x76\xb7\xf4\xcb\x97\xf1\x7c\x17\xa7\x9b\x82\x25\x3c\x24\x23\xdb\x69\x8c\xd0\xa3\x3a\xb3\x3b\xb0\x9b\x0b\x08\xcb\x8c\xea\xdc\xa1\xe2\x9c\x5d\xe2\xfc\x12\xb2\x40\x7b\x6c\xc5\xaf\x5a\xe9\x76\xdd\x3e\xc6\x30\xd8\x33\x9b\x7d\xd1\x1f\xa3\x4c\xaa\xc1\x50\xc7\xc4\x79\x1d\x8c\x42\x7b\x0a\xd9\x2e\x05\x29\x06\x7a\x88\xd5\x20\x11\xe1\xe0\xa1\x82\x99\xb9\x69\x89\x6f\x8b\x83\x60\xf7\x5c\x45\xc4\x96\xda\x47\xb0\x9b\x45\x0f\x98\x22\xbc\xbc\xd4\x3f\x42\x93\xc5\x16\x80\x2b\xf7\x47\xc4\xab\xee\xdf\xaa\x3e\x79\xcb\x91\x03\xd3\x77\x0f\x56\x07\xb7\x75\x16\xe5\xb1\xce\x0f\x64\xb6\xee\xc7\xbe\xc3\xc6\x47\xc0\x06\x95\x6d\xc5\x5b\x6c\x79\xf6\xaf\xb3\x9d\x1f\xc3\xec\xf1\x1b\x97\x4b\x44\xae\xdb\x72\xae\xd1\x31\x66\x35\x08\x3c\x21\x24\x50\x2e\x5c\x72\xd8\x6e\xca\xb6\xac\x90\x24\x3e\xb3\x9a\x6a\xa9\xcb\x94\x80\xda\x38\xe1\xed\xb8\xd2\x8f\xf9\x09\x24\xc0\x5d\x5d\x21\xaf\x5a\xf9\x59\x57\xb8\x02\x07\x81\x37\x87\x11\xa2\x9d\x09\x20\xac\xad\x8c\xcb\x39\xa3\x11\x69\x32\x78\xc9\x90\x0b\x47\x0d\xa2\xbd\x4c\x12\xa0\x1d\x73\x96\x26\x44\x01\x7b\x60\x34\x71\x3b\x2a"}, {{0x5a,0x19,0xbf,0x6c,0x94,0x1f,0x39,0x4e,0x93,0xbd,0x36,0x25,0xfb,0x81,0xcd,0x9d,0xa8,0x1c,0x90,0x20,0xb1,0xc5,0x31,0x25,0x7a,0x7b,0x59,0x57,0xbb,0x07,0x92,0x11,},{0x20,0xe8,0x69,0x9d,0x08,0x7c,0xe5,0xe8,0x15,0x1d,0x28,0x05,0x3d,0xce,0x66,0xc2,0x3f,0x28,0x08,0x1f,0x35,0xbd,0x26,0x81,0x9b,0xbe,0x85,0xd3,0x8a,0x09,0xd7,0x02,},{0x2a,0x2f,0xd6,0x05,0x4e,0xf4,0xe7,0x9b,0x72,0x19,0x1a,0x0c,0xcb,0xd2,0xb1,0x8a,0xeb,0xab,0xe8,0xb9,0xa7,0x18,0x61,0xde,0xd9,0x8b,0x7c,0xdc,0xb6,0xa6,0x25,0x53,0x28,0xbc,0x1a,0xec,0xb0,0xc9,0x33,0x57,0x21,0xa9,0xa9,0x6e,0xe4,0xb5,0xb4,0x3f,0x90,0xd3,0x22,0xec,0xf8,0x35,0xf7,0x8b,0x26,0x4d,0xae,0x6e,0x38,0x7b,0xfb,0x04,},"\xf7\x21\xca\x3a\x32\xc1\xe8\x1c\x9c\x6f\x46\xd5\xe1\xfb\x50\xe7\xce\x2f\x4e\x70\x93\x33\xca\x2b\x55\x0d\x52\x13\xb6\x77\x3d\x67\x0c\xa5\x9a\x2b\x50\x86\xa4\x43\x84\x3a\xc5\x08\x13\xb2\x44\xc9\xc9\xfa\xc6\xd1\x19\x69\x89\x27\x81\x35\x12\xc8\x4f\xe3\x0a\x89\x55\x30\x10\x13\x8f\x91\xe8\x17\x6f\x5c\xf2\x57\x89\xd7\x28\x1d\xdb\x83\xa2\x46\x70\x5d\xcc\xb9\x99\xc4\xcd\x0a\xe2\x19\xc6\x45\xf6\xd7\x1d\x45\x1a\xe1\xf8\xd2\xf9\x89\x1a\xf8\xcc\xce\x03\xf4\x38\x55\x9f\xb8\x36\x67\xb8\x07\x7f\xbe\x43\x5a\x74\x4a\xf0\x19\xd6\xd1\x39\x9f\xd2\x13\x7f\x5a\xfb\x8e\xf3\xf4\x7b\xcf\x73\x5e\x7c\x9e\xd8\xa5\x4b\xa0\xc1\xc6\x56\xb6\x65\x0b\xb3\x0a\xdb\x1d\x57\xec\xd2\x07\x46\x39\x49\x42\x31\xa2\xe9\xe2\xf9\x85\xed\x84\x22\xee\x03\xcb\x3f\xd7\x38\xc7\x35\xa1\xb8\x28\x06\x04\x74\x60\xed\x84\xf7\x46\x8c\x3c\x64\xb3\x5d\xb0\x6b\xc5\x8d\xe4\xbb\xa4\x63\xe6\x38\xa9\x41\x33\xdf\x10\x6a\xc4\xf4\x70\x36\x1c\xcd\xe4\x41\x57\x29\x9d\x22\x5b\x17\x79\x88\x91\xba\xf5\x92\x19\x86\xa2\xba\xe3\x26\xdd\xa0\xb8\x96\x17\xc6\x77\xbd\x14\x08\xba\x27\x48\xba\xa6\x7c\x8a\x2c\x5a\x96\x9b\xc0\x0c\xb4\x0d\xbf\x49\x0e\x07\xe2\x2c\x91\x3a\xfd\xde\x63\x04\xa0\x7f\xc9\xe6\x08\x46\x99\x24\x56\xbf\xb0\x66\x3a\x09\xde\xf6\x8d\xef\x67\xa1\x6d\x29\xe9\x8c\x7b\x55\x35\x18\x48\xa8\xcf\x92\x31\x0c\x74\x63\xc4\x75\xf2\x49\xc6\xf7\x55\x7f\xd0\xd7\x55\xca\x88\xf8\x77\x84\x7f\xe0\x76\x57\x56\xac\x34\xa2\x3f\x78\x40\xd9\x5c\x3d\x29\x4e\x66\x3b\xb1\x51\x8b\x75\x92\x7c\x41\x07\x57\xe0\xf5\xc0\x7c\x5a\x7f\xb2\x15\xdc\x72\x07\x43\x3e\xbf\x79\x1e\xdf\xce\xc9\x0e\x93\x0f\x8e\x3b\xa9\xdb\xbb\x98\x54\x13\xc2\x23\xbe\x87\x87\x3b\xd3\x23\x99\x75\x81\x80\x4d\x88\x96\xda\x38\x6a\x6e\x91\x20\x05\x0a\x0e\xae\xd3\x12\x40\xaa\x17\xc7\xb6\x69\x4c\x30\xcb\xcc\x3c\x69\x56\xa6\x82\x0f\xc9\xab\x21\x87\x55\x33\x96\x3d\xc3\xb0\xd8\x83\x58\x27\x12\x76\xc6\x05\x65\x28\x91\x0d\xd9\x89\xae\x0c\x33\x0d\x17\x98\xf7\xd8\xe7\xd1\x18\x4b\x84\xa8\x14\x34\x32\x5b\x8c\x30\x2e\xdf\x60\x1d\xc5\xe6\xf8\x47\xfb\xac\xbd\xee\xff\x78\xc6\x62\x1d\x1d\xaf\xdc\x23\x9b\x18\xb8\xc1\xaf\xdc\xb4\xb9\xda\xbd\x5d\x3a\x92\xa9\x32\xea\x15\x99\x54\x6e\x62\x5f\x96\xd6\xec\x6f\xb1\xcc\xcb\x76\xb4\x76\xb3\x30\xac\x59\x25\x9c\x63\x4f\xac\x9b\x3f\xa7\xde\x7a\xe7\x05\x37\x73\xb5\xbe\xfa\x00\x1b\x04\x92\x9f\x74\xb7\x12\x41\xe1\xb2\x57\x69\x6d\x65\xa2\x6c\x1b\x4a\xc8\x6b\x7b\x1f\xbd\x69\x57\xfb\x9b\x95\x08\x4c\xe7\xd7\x00\x90\xf5\x5d\x44\x53\x46\x94\x30\x5e\x91\x76\x9a\x82\x94\x13\x04"}, {{0xb5,0x06,0xc0,0x1d,0x69,0x74,0x6e,0xb4,0xbc,0x63,0x58,0x72,0x0e,0x43,0x8a,0xd3,0x30,0xc8,0x8b,0x60,0x5a,0xad,0x65,0x2f,0x47,0x99,0x57,0x3a,0xb0,0xa1,0xaa,0xf9,},{0x7a,0xc8,0xb6,0x88,0x63,0xbd,0x69,0x15,0x15,0x83,0x78,0x9d,0x86,0x4a,0x73,0x57,0xe3,0xa0,0x45,0xfa,0x86,0x52,0x2a,0x9d,0xaa,0x6e,0x26,0xfb,0x79,0xed,0x6d,0x23,},{0x17,0xa1,0x9d,0x26,0x91,0xb7,0xb0,0x46,0xd7,0xb1,0x96,0x69,0xad,0x73,0x14,0x0d,0xb9,0x2f,0x0c,0x97,0x8c,0x7f,0x61,0xbc,0x38,0x67,0xd9,0x2c,0xa9,0xd4,0x75,0x80,0xa0,0x38,0x0b,0x59,0x01,0xba,0xd8,0x2a,0xf4,0x5f,0x67,0x6f,0x74,0x28,0x73,0x01,0x98,0x0f,0x71,0x87,0x1a,0x42,0x26,0x1d,0xbe,0x08,0x02,0x95,0x03,0x36,0xe6,0x0b,},"\xf7\xfc\x18\x06\x6e\xd0\x4b\x30\xe6\x33\xd9\x86\x5d\xa3\x21\x4b\xec\xa6\x0b\xd7\x96\x01\x9c\xd7\xec\xc9\x18\x66\xf9\xef\x24\x46\xc1\xfa\xb0\x6d\x86\x51\xbe\x7f\x10\x1a\xec\x7b\xb8\x4e\xe2\x1e\x71\xad\x02\x02\x15\xfc\xfb\x36\xf2\xd1\x1e\x45\x79\xac\x39\xf8\xe2\xb1\x29\x0e\x38\x96\xd5\x22\xbc\xf5\x13\xaa\xa0\x67\x71\xf8\x6e\xe2\x28\xcf\xf3\xa2\x0a\x1f\x10\xc5\x64\x33\x95\x89\xbb\xa9\x60\x53\x44\xc0\xa6\xe6\x82\xad\x5b\xa4\x0d\x10\x41\x94\x1b\xc4\x6f\x98\xb9\xd0\x9c\xa1\x7f\x8f\x04\x4e\x98\x3b\x8a\x49\x08\x93\x3d\xf2\x26\x3c\xf7\x88\x11\xc2\x4c\x8f\x48\x14\x35\x4f\x6f\x4c\x68\xb7\xee\x7b\x78\x30\x82\x93\xbf\x78\xfd\x0f\xf1\x22\xf0\x95\xc1\x4a\x73\xa5\x97\x97\x17\x2a\xe0\x5c\xfc\xec\x19\x56\x3e\xb1\x8d\x2b\xc5\x30\x0e\xd4\xbf\x6b\xdc\x44\x3e\xa9\xb8\xbc\x1c\xbe\xde\x94\xca\xb9\x05\xed\xa5\xa6\xa9\x31\x59\x7d\xe4\x02\x14\x6f\xac\x9c\xf8\xcd\x6a\x8d\x10\x46\x69\xf9\x13\xfa\x83\x40\x01\xca\x4d\x09\x0f\xb7\x94\x9d\x31\x09\xa6\x3c\x05\x49\xb0\x3f\x15\x1b\x71\x17\xc4\xf4\x69\x74\xba\x59\xc6\x82\x96\xed\xfd\xde\x76\x92\xee\x43\x2a\xce\xf7\x61\x06\x47\xe0\x95\x78\x65\xe6\x2c\x1a\x0c\xf0\x56\x59\x82\x3a\x55\x45\x2d\xd5\xe4\x71\xb3\x1c\x5a\x49\xab\x05\xb5\xaa\xfd\x5a\x0e\x53\x0e\x89\x6b\x58\xcc\x52\x2e\xcf\x19\xe5\x2e\xc8\x2f\xa1\x47\xf9\xe3\x85\x17\x4c\x7e\xc3\x3d\x1d\x9b\x86\x93\x4a\xeb\x4f\x6c\x57\x00\xf7\xd5\xeb\x33\xff\x73\xc9\xfc\x6a\xa4\x7d\xf5\x1e\x09\x22\x9e\x6a\xe8\x94\xe8\x6c\x81\x8b\xef\x06\x5f\x82\x59\x71\xa4\xcb\x90\xad\xfe\xfb\x31\xeb\xd9\xd1\xb7\x94\x22\xdc\x98\x68\xf9\xf7\x4e\x7a\x32\xcd\x40\x71\xef\xb6\x9b\x27\x23\x3e\x6e\x5c\x60\xde\xdc\xd5\x32\x1c\x03\x0a\x46\xcd\x26\xf5\x60\x2c\xac\x74\x7e\xe4\xb5\x22\xd8\x57\xa3\x32\x1a\x03\xf4\x03\xa6\x00\x62\x50\x40\x63\x61\xe4\x88\x15\xaf\xba\x77\xce\x08\x90\x34\x41\x84\x5b\xa8\x72\x25\xd8\xb2\x40\x46\x74\x5d\x40\x65\x64\x5a\x1b\x98\x41\x0c\xac\x48\xd1\x37\xcb\xbb\x8a\xb1\xeb\xa5\x0d\xa9\xc2\x31\xe9\xac\xf3\x22\xa6\xdb\xec\x0e\xf4\x16\xa4\x46\xc3\xb6\x10\xd9\x35\x69\xfd\xf4\x5a\xa6\xcd\xc1\xb6\x40\xd8\xf3\x01\xd7\x86\x93\xb2\x82\x6c\xc6\xed\x46\x85\x68\xad\x9a\x0f\x94\xaa\x9b\x9f\xb9\x2f\x7e\x78\xd4\x84\xfd\xf5\xd8\xd4\x5c\x99\x1e\x28\x07\x4d\xcd\xd6\x80\xd3\xb1\xf1\x89\xef\x6b\xdc\x32\x0e\xe6\xe6\x4d\xd1\xf8\x0d\x92\x64\xd8\x30\x42\xd2\xc4\x3d\x83\x58\x1e\xf0\x39\x4b\x1b\x5d\x1f\x69\xf3\xbb\xbf\x04\xb7\xc8\x08\xba\x34\xc1\x58\x0f\x16\xf7\x65\x37\xb6\xa7\xeb\xd0\xa1\x90\x8b\xe9\x49\x4d\x3f\xca\xa9\x87\x1d\xb1\x57\x50"}, {{0xe1,0xcc,0xb8,0x0a,0x26,0x2f,0xf8,0xaf,0x1e,0xda,0x07,0x5c,0x97,0x2c,0x8e,0x94,0x1e,0x77,0xce,0xf5,0x7b,0xdb,0x0a,0x82,0x57,0x2c,0x28,0x20,0x0b,0x49,0x3c,0xa3,},{0x3d,0x37,0xe2,0xa5,0x02,0x7e,0xff,0xde,0xe0,0x7f,0xa5,0x11,0xe4,0x23,0xb2,0xbc,0x56,0xed,0xce,0xa0,0x75,0xb4,0x16,0x49,0x76,0x67,0x25,0xc6,0xb3,0x0a,0x10,0xf4,},{0xfd,0xa3,0x4b,0x65,0x2b,0x79,0x74,0x6f,0x89,0x7e,0x22,0x2d,0x37,0xb7,0x7a,0xa2,0x50,0xd0,0x2c,0x52,0x7c,0x48,0x33,0xdf,0x80,0xea,0x41,0xd5,0x21,0x89,0xd5,0x07,0x00,0xe1,0x28,0xb7,0x8e,0xe8,0x14,0x9c,0x9b,0x19,0xf3,0xab,0xf7,0x55,0xac,0xef,0x53,0x48,0xf5,0xfb,0xaf,0x1c,0xeb,0x41,0xc0,0x38,0x90,0x6a,0xc5,0x94,0x60,0x01,},"\xcf\xdc\x54\x97\xb0\x23\xaf\xa6\x2a\x7f\xe5\x92\xca\xa9\x2b\x87\x5c\x77\x05\x74\x78\x34\x00\x2f\x77\x84\xff\x16\x61\x89\x39\x88\x15\xd4\xe8\xa7\xa0\x03\x8e\x1f\xda\xdd\xde\xba\x51\x05\x73\x27\xad\x19\x60\xe8\x59\xce\xe5\x65\x26\xbb\xb4\x12\x7b\x6a\x5f\x90\xd0\x4d\x08\xb1\x5e\xee\x66\xc9\xcc\xf8\x8b\x4b\x7d\x1e\xe9\xd3\xb8\xb8\xc6\xf4\x2d\xb3\xc3\x4e\x59\x04\x8a\x15\xc6\x04\x1f\x14\x2c\x40\x79\x36\x8b\x7b\x11\xe2\x99\x70\x11\x8b\x99\xe5\x67\x0a\xe3\x1f\xcc\xfd\xff\x13\x99\x14\x2e\xe0\x6b\x2e\x3e\x2b\x3c\x97\x07\xdd\x64\x11\x97\x86\xe2\xfa\xb4\x7e\x0b\xad\x2c\xc8\xb5\x58\xd9\x63\xbb\x48\xa4\x9a\xd2\xc6\x37\xdd\x35\xb2\x5d\xb5\x4b\xc5\xa2\x63\x02\x22\xfa\x2a\xce\xce\x9c\xe1\x2a\xb0\x81\x30\x77\xf7\x65\x9f\x50\x74\x42\x9c\xa6\xb4\x94\x33\x10\x32\xae\x79\x2a\x59\x9c\x42\x5e\xe2\x97\x45\x1d\xcf\x5e\xe1\x95\x29\x03\x12\x74\x2e\x64\x7a\x77\x95\xb8\x4d\xcc\x66\x4d\xda\xe2\xa1\xfb\xf8\xc4\x54\x8a\x37\xfd\x82\xd8\x10\xe2\x14\x5f\x01\xdf\x1a\x6d\x3b\xcc\x42\xa9\x1a\x10\x76\x8e\x09\x1f\x3d\x69\x32\x9a\x7b\xad\x6c\x07\x2c\xac\x6d\x89\xaf\xa3\x1c\x02\x90\x56\xd6\xb6\x22\x12\x16\x5c\xeb\xcd\x49\xac\x67\x2e\x38\x30\x26\x7a\xf9\xf2\x8e\xa3\x19\xbd\x04\x2f\x6c\x59\xde\x47\x01\xe5\x82\x48\x73\x6c\x8d\x97\x6a\xcf\x93\xb9\x9d\x2f\x46\x47\xa5\x47\xd3\x92\x44\x7a\x48\xda\xc1\x11\x81\xe1\x6b\x15\x01\xa9\x4c\x93\x16\xe5\xa6\x7c\x99\x0b\x35\x81\x0b\x4c\xda\x04\x73\xa6\xa4\xe5\x76\x14\x21\x58\x68\xe2\xe0\x02\xc6\x05\x8b\x42\xe4\xee\xec\x84\x13\x9d\xc1\x9e\xdf\x5f\x80\xae\xef\xfa\x4f\x5b\x07\xe8\xfd\x23\x13\x9e\xdd\xa3\x18\x99\xeb\xe6\xfe\xe7\x86\x43\xce\x68\x6b\x29\x63\xa3\x20\x72\xbd\x3b\x3b\xba\x68\x48\x5a\x05\xc2\xcc\x04\x56\xc3\xda\x50\xc7\xc8\xc6\x51\xa3\x06\x6d\x13\xa3\x66\x0b\xd4\x7a\xb6\xdf\xec\x49\xe0\x15\x57\xa6\x74\x28\x96\xaa\x4b\xc6\x36\x3a\x79\x7d\xba\xd1\xa4\x09\xcd\x4a\x50\x91\x1e\x70\xea\x00\x7a\xf8\xe9\xb1\xbb\x7e\x3a\xb5\x62\x15\xa5\x75\xc9\x0f\x73\x9c\x2d\x48\xb3\xb3\x46\x94\xb5\xac\xdf\x07\x98\x0a\xe5\x28\xde\x06\x21\xed\xfa\xc8\xb8\xfa\x84\x95\x4d\x56\xdb\xb4\xd0\x30\x82\xb9\x84\xf1\x3e\x5d\xbe\x9c\x71\x12\xff\x97\x16\xf5\x50\x53\x06\x46\x62\xce\x0f\xb8\x1e\xa3\x5f\x98\xfd\x2c\xd5\x11\x37\xa4\x6f\x64\xe0\xc1\xca\xf4\x4e\x54\x07\xdc\x96\x17\x60\xb2\x59\x7f\x7f\x92\x00\x61\x7d\x47\x13\x40\xcf\x15\x17\x6c\x3d\xa8\x80\xfe\x4e\x0e\x93\xa7\x2f\xb9\x49\x26\xfa\xed\x86\x5d\xfd\xc7\x72\xe1\x85\x29\x2c\x1e\x36\xb1\x21\x17\x81\xc3\xe9\x38\xe3\xd4\xf2\x4e\x29\xaf\x51\x7a\x37\x96\x83"}, {{0x4f,0xc5,0x12,0xef,0xd8,0x6e,0x3a,0x63,0xb3,0x95,0xea,0xff,0x1b,0xa0,0x11,0xe1,0x59,0x0f,0xb9,0x32,0x6a,0xd3,0xff,0xed,0xe7,0x87,0x6d,0xcc,0x3e,0x9f,0xab,0xdc,},{0x26,0xc2,0xa2,0x2f,0x9b,0xfa,0xd9,0x06,0x06,0xdc,0x61,0x3f,0xf1,0x07,0x02,0x1f,0xcd,0xdb,0xec,0x72,0x37,0x06,0x66,0x60,0xb4,0x88,0x96,0x43,0x49,0xe0,0xc8,0x28,},{0x82,0xc8,0x24,0xa7,0xd1,0x13,0x9e,0xc7,0x3a,0xe1,0xd0,0x23,0xad,0xf6,0x28,0x11,0x44,0x1e,0x96,0x82,0x87,0xf1,0xa5,0x80,0xb8,0x59,0xcd,0x66,0xcb,0x33,0xb5,0x8e,0x40,0x9b,0xde,0xb2,0xa8,0x74,0xbf,0x4c,0x23,0x61,0x0b,0xd4,0x4f,0x69,0x31,0x47,0xf2,0xf7,0xc2,0x9d,0x44,0x3a,0x90,0x50,0x84,0xf3,0xea,0xaf,0xd9,0x33,0x0e,0x04,},"\x07\xcd\x1e\x9b\xfa\x38\xa7\xd8\x85\x34\x65\xa9\x3c\x77\xab\x4f\x30\xfa\xf9\x14\xe4\x8b\xc4\x76\x3b\xa0\x7b\xf9\x6b\xa8\x08\xc1\xf5\x9a\xd4\xce\x9b\x7d\x92\x1f\xbb\xc7\x79\x65\x9d\x7c\xa3\x6e\xdb\x7d\xd3\xac\xf7\xa2\x94\x52\xa8\x45\xb4\x9f\xb6\x54\x3a\x3b\x6c\x5c\x1c\x29\x3a\xff\x61\x84\x85\xa1\x0e\xea\x60\xee\x96\x49\xac\x9d\x48\x1e\x69\x49\x96\x7d\x39\x38\xb5\x2f\xe0\x9c\x36\xb9\xad\xe0\x75\x81\xdb\x4e\xb5\x42\xa9\x7f\x5a\xc8\xac\x73\xd3\xee\xa1\x84\x72\x25\x56\x76\x0c\xf4\x83\x09\x05\x64\x55\x30\x61\xb9\x0a\x0b\x6d\x2d\xff\x47\x07\xbe\x76\x39\x37\xa1\x05\x94\xa8\x2b\x76\x6b\xb2\xcf\x6d\xaa\x52\xfa\x8d\x7b\x48\xf3\x21\x27\xc4\x31\xad\x9a\xae\xd3\xbf\xde\xb9\x9a\xd4\x21\x18\xa1\xb4\xde\x7b\x99\x21\x34\xed\x9c\xda\xd0\xb5\x29\x6d\x19\x7a\x48\x5e\x49\x3e\xcf\xec\xa3\x65\x3a\xd2\xce\x0f\x92\x41\xaa\xbc\x09\x6d\x7c\x4b\xa6\x03\xba\x7d\xdd\x07\xa8\xb2\x57\xfe\x52\x32\x76\x41\x70\x73\xa6\x5f\xa4\x43\x42\x56\xfd\x1f\x23\x9e\xc1\xde\x5d\xa1\xa0\xa8\xc5\xe6\x86\xee\x14\xd9\xdf\xa4\x38\xc5\x3b\x99\xc9\x54\xaf\xab\x2f\x79\xe6\x0b\x71\x26\xf2\xcb\x58\xa2\x6e\x29\x0d\xa1\xdc\xcf\xc3\x01\xf2\x39\x74\x8e\xde\x7b\xcf\x1b\xb7\xcc\xb4\x72\x0e\x69\x2f\x57\xe5\x3e\x6f\x59\x07\x53\x99\xe1\x08\x0a\xc8\xaa\x9a\x61\xa5\x68\xc4\xc5\x69\xd3\x6e\x76\xa2\xd7\x27\x1f\x2c\x44\xde\x4e\x36\x3a\x8c\x91\x6a\x4e\x44\x6b\x02\x7b\x64\x39\x2e\x90\xce\xab\xf6\xb6\x07\x1b\xc4\x7a\x13\x79\xb6\xaa\x63\x44\x76\x3b\x2a\x0e\x7f\xf7\xc4\xa2\x7b\xff\x31\x06\x72\x1c\x25\x3e\x4c\x1d\x67\xc3\x7f\xa3\xd7\xc1\xec\xd0\x55\xb8\xe9\x29\xd5\x2a\x8e\x45\xed\x89\xfb\x18\x0f\x74\xb5\x52\xfe\x06\xf0\x66\xc7\xe4\x31\x8c\xa2\xf9\x15\x94\x6e\x83\x20\xd5\x80\x65\x61\x47\x2f\xb8\xff\x7f\xa8\x07\x2d\x8e\x6f\xd1\xce\x63\xcf\x87\x38\x2f\x7b\x94\x04\x54\x0c\x1d\x40\x6c\x70\xb2\x26\x85\x36\x77\x09\x26\x45\xce\x99\x69\x22\xe7\x34\x5d\xc0\x7f\xb7\x33\x9f\x9a\x54\xff\x07\x35\x2d\xd2\xb9\x93\x06\x3c\x2c\x83\xd1\x28\x1a\x4f\xd1\x78\xe5\xa5\xf8\x0a\x5b\x33\xc2\x29\xd0\x57\x83\x67\xd4\x41\x92\xe9\xa4\xd2\x1e\x97\x34\xd3\xbd\xa0\x83\xb7\x0f\x47\x10\x3f\xd1\x25\x17\x70\x21\xdf\x3e\x53\xd7\x99\x86\xef\xea\x2d\xc0\x4f\x02\xc0\xac\x27\x87\x88\x31\x9e\xf3\xa9\x13\x2e\x62\x32\xea\x6d\xb3\x9c\xa5\x87\x08\x55\xf9\x59\x2f\xff\x6c\x20\x9a\xd2\xf1\xc2\x9d\xd1\x68\x55\x28\x98\x97\x9e\xcf\xf8\xc8\x11\x27\x24\x8f\x83\x10\x51\x53\x00\x65\x61\x29\xd9\xb7\xac\xbb\x7e\xd1\xe4\x6b\xc9\x8c\x04\xd1\xa3\x5b\x18\x91\x37\x38\xe9\xdd\xe4\xd2\xb0\x65\xf4\x18\x42\x42\xd8"}, {{0x0b,0x7d,0xfa,0xd0,0x5b,0xa6,0x65,0x11,0x1e,0x16,0x81,0xbd,0xc0,0xbc,0x8b,0xa9,0x73,0x76,0x7c,0xb8,0x58,0x77,0x02,0x0a,0x2d,0xbf,0x91,0x83,0x25,0x57,0x1d,0x9f,},{0x95,0x05,0xd9,0xe8,0x6d,0xce,0xf5,0x6c,0x9d,0xb7,0x6f,0x28,0x62,0xb9,0x0e,0x1f,0x27,0x73,0x20,0x2f,0x17,0x50,0x40,0x5e,0x7e,0xe5,0xae,0xd0,0xfc,0x54,0xf8,0xb9,},{0x41,0x5a,0xdb,0xb2,0xf2,0xb9,0x84,0x05,0x77,0xfd,0x18,0x41,0xf9,0xaa,0xe2,0x52,0xaf,0xe8,0xf5,0xa7,0x22,0x36,0x01,0x7d,0x50,0xdb,0x22,0xd2,0x28,0xcd,0xee,0x9f,0x5b,0x3e,0x8f,0xe9,0xa1,0x7a,0x4d,0x4e,0x98,0xb7,0x34,0x13,0x81,0xe8,0xd8,0x62,0x5c,0xdc,0xea,0x95,0x6d,0x25,0x3b,0x74,0xe0,0x2d,0xac,0xb8,0x49,0x20,0xa0,0x09,},"\xc4\x3f\xd3\x4b\xb1\x42\x4c\xca\x4e\x4d\xfb\xa7\x5c\x28\xbe\x80\x18\x44\x44\x6c\xa0\x89\x02\x08\x85\xc7\x48\x38\x25\x47\x16\x4a\x9d\x4a\x7f\x95\x70\xd3\xd1\x71\xad\x69\x81\xab\x50\xee\xee\x08\xa4\xa6\xc6\x6d\x76\x99\xd2\x3e\xdb\xe1\xfa\xaf\x44\x66\x0c\x72\xf4\x55\x2d\x87\xd2\x65\xac\xe8\x79\x28\x23\x47\x4b\x90\xa5\xd7\xf7\x40\x1d\xeb\x93\x77\x62\x7f\x60\xb0\x36\xb3\x6e\x04\x4e\xb7\x6b\xf1\x32\xfd\xdf\xcc\x0e\xf5\x70\x4a\x63\x3d\x84\x5e\x96\x2b\x47\x51\x7f\x0b\xaa\x34\xd3\xd6\xe9\xa8\xb9\xf8\x16\x8b\xcd\xc8\x4c\x6d\x2b\x30\xc6\xf3\x43\xe7\x53\x57\xf7\xf2\xc0\x03\x9b\xd2\x54\xb2\x44\xd3\x6c\xd6\x16\x75\x58\x1f\xb8\x34\x57\x0e\xd4\x11\x3a\x78\xe6\x06\xf1\x45\xa1\x11\x99\x2c\x2c\x6b\x61\xc4\x26\x76\x28\xec\x87\xcd\x88\xc3\x6a\x3c\x84\x70\x6e\x44\xae\x96\xa9\x6e\x0c\x84\x80\x31\x85\x46\xd6\xea\x6a\x6d\xf1\x8a\x2b\x4f\x19\xf8\x36\x0c\xfb\xce\x4e\x9d\x1c\xf1\x01\x1f\xfe\xa5\x63\x3a\x66\x61\x9a\xa4\xa6\x5c\xf6\x9b\xe4\x45\x96\x17\x94\x5e\x43\x59\xa9\xd4\x32\x60\xca\x1a\x20\xf4\xed\x7c\x1a\xe5\xff\xff\x3b\xd9\x22\x94\xea\x70\xab\xba\xe0\x38\x5b\x09\x35\xcd\x1c\x0e\xb5\x18\x30\x29\xc5\x85\xa0\x29\x4b\x79\x99\xe3\x2e\xf7\xa2\x90\xfc\xb0\x95\x67\x5d\xc4\xf6\x01\xe8\xf2\xc9\x6f\x35\xb7\x34\x9a\x37\x05\x75\x09\xf4\xec\x70\xc9\xf5\x0f\x60\x11\xf1\xf5\xe6\xb0\x61\xc0\x91\xd1\x1c\x0e\xd5\xde\xc8\xec\xe8\x81\xaa\x34\x05\x08\xf6\x96\xd9\xe9\xcc\x72\x98\xe6\xbc\xcd\x7c\x21\x0e\x2c\xe0\xde\xd8\x35\x92\xa3\xcf\xa1\x3e\x80\x78\xfd\xb3\x25\x8b\x39\xf1\xd1\x1c\xdf\xe0\x96\x70\xc1\xe6\x0a\x39\x10\xa4\xff\xf5\x1c\x6c\x7f\x7d\x66\x24\xf4\xc9\x3d\xf8\x88\x8c\x52\x6f\x48\x4f\x9b\x13\xe0\xa7\xf6\x29\x64\x78\x39\x78\x68\x4e\x29\x26\x79\x80\x0e\xd5\xeb\x28\x0e\x28\x7c\x7e\x63\x9e\x85\xfa\xa5\x3f\xba\x2f\xa2\x04\x5c\xe2\x7d\x8f\xb3\x08\x36\x07\x26\x55\x0d\xf9\x75\x2d\xb3\x05\xf8\xf0\x66\x47\x97\x0d\x01\x46\x91\x99\x9a\xfa\x97\xb6\x19\x3f\xfc\xc6\xd5\x32\xf4\xfa\x69\xe1\x33\xa1\xd1\x0f\x30\x47\xfc\x00\x38\x1f\x49\x97\xbb\x84\xe5\xb6\xcd\x60\x28\xc6\x21\x32\xcf\xc0\x24\xbf\xeb\x98\x03\x01\xf2\x95\x12\xbb\xd1\x09\xd0\x89\xac\xe1\x82\xcf\x9c\x2f\xfa\xb1\xb1\x7e\xb0\x0b\x6e\xb4\x6a\xe1\x98\xda\x99\x3f\x5e\xfe\x7c\x1d\xc2\x2d\x25\x04\x7c\x1e\xe5\x24\x65\x17\xe7\xf5\x75\x8f\x99\x6a\xbd\x83\xf1\x3d\xa2\x2c\x13\xdd\x20\x5e\xe1\x91\xb5\x5a\xfd\x48\x31\xef\x07\x8b\xb6\xea\x07\x3a\x62\x5b\xc9\x7c\x81\x29\x61\x60\xbb\xf2\x55\x9b\x27\x5c\xc3\x7c\xcf\x01\xb9\x1f\xd8\x7d\x4d\x99\xa3\x67\xaa\x99\x78\xda\xdd\x06\x89\xf8\xa6"}, {{0x78,0x18,0x8d,0xf8,0xc7,0x54,0x78,0x56,0x21,0xe2,0x7a,0xe5,0x8e,0x10,0x0d,0x50,0x80,0xe1,0x6e,0x0a,0x15,0xe2,0x77,0x05,0x1f,0x95,0xf0,0x80,0x90,0x0e,0xc0,0xd3,},{0xa1,0xbd,0xee,0xe9,0x8b,0x07,0x57,0xba,0x9c,0x2d,0x84,0x09,0xb8,0x74,0x24,0xe6,0x4e,0x42,0xf9,0x93,0x2a,0xcf,0xa9,0xbc,0x71,0xfb,0x3f,0x8c,0xa0,0xe1,0x1d,0x52,},{0xb9,0x41,0x14,0xed,0xa4,0x6c,0xcf,0xc2,0x2a,0x44,0x71,0xa6,0x4d,0x79,0x08,0x92,0xe5,0x9c,0x5d,0x50,0x56,0x18,0xeb,0x0e,0x70,0x13,0x92,0xc7,0x09,0x61,0x3e,0x2d,0x50,0x3a,0x5c,0x2b,0x66,0x60,0x1e,0x63,0x6a,0x3c,0x1c,0x7d,0x49,0xb1,0xac,0x79,0x8d,0x90,0x89,0xb0,0xf9,0xcc,0xd0,0x57,0x9b,0xb9,0x06,0x34,0xd0,0xbd,0x75,0x0e,},"\xcf\x70\xcc\xa5\x7f\xeb\x1b\xee\xfe\x98\x5a\xd5\xaf\x9d\x43\x48\xd3\xa4\x6a\x63\xde\x10\x75\x38\x1f\xb3\x63\x9a\x04\x4f\xd6\xe6\x09\x1f\x5d\xb9\xc9\x4d\x39\xbe\x0f\x13\xad\xe6\xd9\xa0\x74\xe6\x7b\xa7\x06\xb3\xa8\x80\x62\x95\xf6\xb6\x54\x86\x57\x28\xc5\x8c\xa6\xe9\x41\x9d\x5d\x04\x3f\x21\x10\x81\x4b\xbf\x36\xfc\x40\x70\xe4\xd9\x45\x49\x65\xc2\x51\x20\x2c\xa3\x95\xef\xe3\xfd\xbd\x54\x4f\xeb\x18\x7e\x34\xca\x3c\x80\x79\x51\x79\x55\x2f\xce\x9a\xa8\x04\x43\x0e\x5b\x6c\x86\x85\x34\x1e\x91\xd5\x88\x9f\xbf\x3f\x98\x19\x04\x62\x0f\xfe\x70\x13\xf5\x3b\x93\x9e\x17\x44\x3d\x61\x4e\x7e\x6b\xb5\x7a\xd6\x74\xf3\xb4\xb0\x01\x63\x05\x26\xcf\x73\x02\xa7\xd0\xaf\xe7\xdc\x24\xd6\xda\xde\xf6\xfe\xba\x3f\x96\x97\x3a\xa5\xb8\xd6\x27\x52\x62\xe4\x30\xa8\x2f\x67\x86\x96\x97\x1a\x8b\x60\xe3\x8d\x3b\x2b\xcc\x17\x0d\x5b\xc2\x03\x02\xa3\x9c\x59\x6d\x27\xfe\xe3\x9e\x5d\xa5\xb1\x0e\xa9\xf3\x82\x29\x9e\x19\x81\x97\x17\xa7\x18\xd3\x7d\x15\x5f\x13\x92\x31\x82\xb5\xb7\xa1\xc5\x4c\xa1\x09\xb2\x2c\xa8\xe8\xb2\x6c\xa5\xca\x3f\x3b\x90\x62\x21\x94\x61\xba\xce\x97\xe8\x90\xc9\x4e\x41\xca\x3d\x84\x58\x7f\xbd\xf6\xe2\x40\xc3\x5c\xca\xb7\x1d\x58\x47\x7d\x28\x16\x8e\x93\x37\x26\x86\xd4\x2a\xad\x32\x4a\x3f\x16\xaf\xe0\xe9\xb8\x9e\xe2\x0e\x48\x5f\xe6\xc8\x64\xb5\x01\x3b\xa8\x83\x99\xee\xaa\x15\x98\x35\xa8\xb2\xbb\x2f\x25\xf5\x79\xca\x3b\xae\x67\x5c\x63\xda\x1b\x50\xd9\x9d\x4e\xd9\x78\x69\x2e\x56\x00\x23\x3f\x38\xab\x7e\x7a\x5a\xe0\xfb\xf8\xc0\xb6\x9c\xc3\x8b\xd3\x0e\xab\xd9\x77\xef\xa0\x5e\xe2\xc8\x35\x14\x30\x2b\xd4\x0c\x4b\xdc\xe7\xa4\x11\x0a\xfb\xb6\x57\x9c\x62\x0e\x97\xf8\xcf\x2e\x9b\xab\x2d\xcc\x7c\x33\xf1\x96\xe5\x7f\xe7\x61\xa0\x50\x12\x28\x94\xb7\xa7\x5a\x92\x95\x31\x99\x6d\xda\xad\x78\xde\x1d\x4d\x92\x4c\xd9\x3a\x61\xdf\x22\x77\x76\xbc\x1c\x39\xfb\xb8\xde\x1c\x44\x38\x86\x8b\x6a\x3a\x2c\xd9\x4c\x07\xb2\x9e\x3f\x6b\x23\xcc\x7e\x0b\x63\x68\x90\x09\xd9\xd0\xba\xe1\x60\x6b\xaf\xc7\xa8\x08\xf2\xd2\xfa\x25\x62\xb8\xdc\x09\x38\x42\xc0\x1f\xdb\x84\x0d\xa4\x86\x0a\xce\xd3\xfc\x52\x5c\xa3\x34\xed\xcf\x65\x94\x8b\xc4\x16\xf9\x8c\x45\x0f\x00\x12\xa6\x10\x7d\xd7\xf8\xed\xe4\x0e\x1c\x48\xc9\xe8\xa5\x65\xa8\x10\xb9\xcf\xd2\x03\x56\xdb\x19\xf1\xdb\xde\x59\x89\x21\x33\x2e\x0d\x81\x3f\x0c\xb8\x76\x84\x37\x03\x88\x77\x2f\xf3\xcb\xfc\xbf\xa2\x99\xc1\x98\xc9\x7b\xfb\x96\x17\x76\x8a\x05\x16\x1f\x41\x69\xff\x5d\xe5\xd9\xf4\x00\x62\x09\x0f\xb8\x82\x98\x4d\x9d\x5c\x7a\xa7\x8e\xdd\xcb\x96\x34\xe4\x66\xb8\x85\x3d\x51\x2b\x4a\x54\x6d\x74\x23"}, {{0x73,0xcb,0x02,0xb0,0xbf,0x26,0xa0,0x15,0xda,0x1d,0xc3,0x01,0xfc,0x12,0x5d,0x7e,0x6c,0x30,0xb6,0x3c,0x9e,0x6e,0xee,0x9e,0x06,0x5d,0x4e,0x84,0x71,0x32,0xc3,0x25,},{0xac,0x9e,0x3d,0xd2,0xce,0xb9,0xb2,0x3e,0x74,0x8c,0x04,0xba,0x75,0x77,0xfe,0xdf,0x7c,0xea,0xb9,0xed,0x87,0xdc,0x43,0x0b,0x5f,0xe2,0x2e,0xac,0x50,0x95,0x0e,0x0d,},{0x1a,0x5d,0xd4,0xc8,0x91,0xc8,0xe1,0x32,0x57,0x01,0x87,0xc2,0x3b,0x9a,0x1e,0x4b,0x26,0xf0,0x54,0x60,0xe8,0x75,0x67,0x38,0x19,0x39,0x6d,0xf5,0x61,0xc8,0xaf,0x0e,0x48,0x33,0x3b,0x62,0xc7,0x77,0x29,0xd4,0x9f,0xc4,0x0e,0x17,0x4a,0x7f,0x3c,0x21,0xf8,0x5e,0xf4,0xd3,0x39,0xce,0xb8,0x0b,0xd2,0xe0,0x37,0xd8,0x03,0xaf,0x56,0x0e,},"\x0a\x2b\x61\xba\x35\xe9\x6e\x58\x19\xb8\x8b\xfd\xb2\x8b\x7c\xe0\x2e\x64\xae\x9c\xf5\x72\xb2\x1f\x13\x55\x2c\x0d\xb1\x0f\x39\x60\xd4\x4b\xa3\x47\x2f\x43\xab\xc4\xe6\x29\x5b\xdf\x79\x0b\xd9\x33\xba\x39\x75\xfd\x44\x65\xfa\x3e\x2f\xe2\xdb\x02\xb6\x37\x77\x52\x22\x3d\xec\x98\xfc\xb2\x40\x4f\x3a\xba\x43\x26\x5a\x6f\xa7\x97\x6b\x6c\x6c\xb6\x86\x8b\x88\x1b\xd6\xf3\xd2\x5c\xd9\xd6\xf7\x0e\x51\x2f\x80\x89\xc8\xef\x26\xfd\x58\x24\x50\x53\x77\x9e\x59\xc4\x72\x5a\xef\xa2\x64\x67\xc9\xf5\x00\xe1\x7f\x3e\x15\x73\xf1\xa8\x55\xe9\xb8\xb2\x19\x25\xea\x05\x27\xf3\xce\x8d\x88\xfb\x54\xa4\x7a\xbe\xed\x14\xf3\x99\xcc\x2d\x9f\x1f\xe5\x46\x65\xfa\xe0\xa8\xf0\xc6\x88\x72\xa6\x00\x04\x6d\x1d\xc3\x63\x97\xd3\x10\xce\x39\x3f\xce\xaf\xe8\x7c\x17\xeb\xe1\x22\xfd\xb5\x43\xae\xa7\x10\x85\xba\xec\x98\x27\x3f\x41\xac\x96\x69\x8c\x15\x0c\xf9\x11\xd0\xe5\xde\x23\x92\xd8\x48\x41\xd0\x12\x76\xae\xfb\xfe\x99\x95\xe1\x0a\x6d\x46\xef\xdc\x26\x78\xd4\x56\xc9\xf3\x6b\x2e\x10\x11\x4d\x11\x87\xe7\xac\xa7\x39\x03\x7e\xa5\x1f\x85\xfd\x62\xa2\x94\x29\xba\x52\x9c\xdd\x8a\xd9\x13\x47\x49\x74\x87\xed\x7e\x87\x09\xd4\x77\x6e\xf6\x86\x70\x79\x2d\x06\x15\xbc\x96\xda\x51\x78\xd6\x06\xdb\x63\xe4\xe5\xcb\x17\x2a\xcf\xbc\x1c\xbe\x20\x26\x93\x50\xf1\xb6\x05\xf3\x5d\xcd\x47\x91\x35\xbd\x30\xfb\x4b\x5a\x39\x17\x6c\xff\x74\x4d\xdb\xb3\x06\xc9\xe7\xb4\x16\x7d\xe0\x37\x9a\x61\x66\xbe\x5a\xaa\x74\xd7\x15\x7f\xac\x95\x7d\x88\xdc\x57\x59\x7c\xfe\xf2\x3e\xb5\x10\x8b\x3c\xe5\x3f\xc6\x32\xda\xd1\xb9\x72\xa2\x9d\xa5\xde\x32\xd2\x0d\x8e\xce\xde\x67\xff\x00\xda\x4a\x08\xa0\xcc\x1a\x98\xbe\xe7\xa9\x4e\x3c\xb3\x2f\xee\x94\xae\x25\xa4\x13\x54\x47\x02\xc3\x7b\x3e\x17\x78\xa0\x70\xcd\xd4\x84\x0b\xd3\x9f\x5f\x45\x79\x51\x92\xa8\x67\x86\x38\x76\xed\x0d\x13\x0d\x46\xe2\x91\x39\x35\x08\x28\x09\xf7\xe1\x5a\x49\x67\x10\xf2\x55\xd7\x83\xda\x3d\x01\x6a\x65\x4c\x15\xff\x5d\xf9\x07\xa3\xcc\xaf\x37\xcf\xe1\x1c\x8c\x3d\x49\x65\x07\xd6\x76\x0c\x05\x38\x20\xf0\xf5\x94\xc3\xd0\x1c\xa2\x69\x17\x8a\xca\x52\x5a\xb2\x82\x1e\xf5\x5f\x92\xd8\x5f\xe6\x85\xea\x34\x47\x2e\xd1\x39\x81\x71\x06\x4d\x74\xa4\x22\xec\x91\xd1\xa6\x70\x61\x8f\xc9\xf3\x24\x24\xbc\xb1\x1a\x77\xf6\xfb\x4e\x2f\xef\xd2\xc4\xe8\xa7\x3c\x45\x28\x86\xe9\x31\x66\x4d\x1a\x83\xbd\x92\x73\x29\xc0\x4d\x25\x0b\x83\x52\x1d\x7d\xc1\x3c\x91\xce\xe1\xec\x05\x0e\x11\xd4\x2a\x4b\x0c\x8c\x06\x9b\x61\xc4\x42\x2d\x3a\x49\xc0\x7e\xff\x29\x05\xb7\xbc\x7f\x4a\x5b\x43\xe6\xb0\xd6\x1d\xfb\x50\xe4\xee\xa2\xe9\x0d\x29\x8a\x78\x1d\x05"}, {{0xdb,0x05,0x60,0x63,0x56,0xba,0xcf,0x23,0xaf,0xf6,0xcd,0xdd,0x42,0xb2,0xc6,0x94,0x35,0x2b,0x5a,0x0f,0xec,0x56,0x0a,0xff,0x54,0xd9,0xbd,0x97,0x10,0xef,0xe0,0x6a,},{0x32,0xa5,0xc7,0xcc,0x49,0x09,0x78,0x6b,0x48,0xa5,0x3f,0x31,0x09,0x3f,0x54,0x9a,0x9f,0x17,0x30,0xca,0x66,0x90,0x38,0x3f,0xdb,0x5f,0x14,0xc2,0x66,0x6e,0x31,0x32,},{0x53,0x09,0x9b,0x76,0x6a,0xdf,0x29,0x44,0xb6,0x82,0x13,0x74,0x84,0x2c,0x25,0xd6,0xe6,0x7b,0x0c,0xcd,0xe9,0xc6,0x37,0xfe,0xcb,0x11,0xb8,0xb8,0xb0,0x72,0x03,0xe3,0x07,0x57,0x32,0x80,0x5f,0x4f,0x14,0xae,0xae,0x73,0xbd,0x62,0xe3,0x08,0xb5,0x88,0x7d,0x68,0x9e,0x29,0xcd,0x89,0xb2,0x3a,0x47,0x69,0x43,0x11,0x07,0x17,0xb1,0x00,},"\x1b\xc9\xc2\x83\x3f\x37\xcd\xf1\x35\x6f\xad\x16\x67\x68\x64\x27\x17\x70\x1b\x38\xa0\xab\x0c\x2f\x58\x1a\x26\xd2\x22\xd6\x5c\xce\xe4\xbf\x0f\x6d\xfe\x64\xd3\x3b\xc0\x23\x9f\x71\xd4\xb8\x26\x44\xb0\x16\x25\xa1\xa3\x5f\xe7\x98\x67\x62\x39\xe0\xca\x77\x9e\xf2\x31\x38\xee\xbe\x3b\xd1\x9d\xe2\xd8\xf7\xc1\x5b\x4d\x96\xf1\x3e\x51\xbc\x63\x3b\xea\x5d\x61\x22\x5b\xca\x1d\x63\x39\xba\x53\xe8\x1f\x7d\x8d\x24\xc5\xd6\x0f\x04\xce\x8c\x72\x67\x61\xd2\x64\x58\x4f\x1c\x7e\x5b\x5b\x69\x92\x45\x6c\x1c\x76\x89\x2d\x63\x52\x11\x1e\x3b\x92\x6f\xe0\x25\xc0\x00\x9d\xb6\x7c\xe0\xdd\xc7\xf7\x64\xe0\xc9\xad\xb0\x48\x1b\xc2\x79\x54\x84\xd9\x63\x73\xa9\x62\xa7\xb7\x4a\x55\x96\xf5\x27\xa7\x34\x76\x49\x8c\x78\x23\xdf\xfa\x6c\x85\x43\xb0\x79\x71\xb5\xaa\x27\x1c\x12\x25\x5e\x09\x18\xdd\x73\xf5\x0c\x30\xc9\xa8\x5a\xc7\xc2\x99\x3d\xd6\x55\xda\x59\x43\x12\x63\xf5\x91\x4b\xe7\x06\x37\x4b\xe9\xc0\x75\x85\xc2\x87\x13\x28\xb4\xdb\xc3\x94\x01\xc9\x57\x07\x38\x7e\x6e\x06\x9d\x44\xb9\xd8\xfb\x05\x8f\x22\xe3\x15\xaa\x0d\x5b\x4f\x11\x68\xfc\x10\x79\x62\xb0\x64\xf7\xd8\x45\xaf\x8e\x21\x31\x95\x1d\x1c\xd6\x6d\xc8\x4d\xba\x46\xd2\x00\xaf\x4f\x4c\x5f\x51\x22\x1b\xc9\xb2\x19\x69\x42\xf8\xb4\x0e\x7d\xdb\xc9\xae\xb3\xd9\xaf\xc0\x71\x25\x95\x13\x13\x5a\x01\x6f\x28\x66\x09\x9f\xa1\x0f\x4c\x3b\x73\x50\x0b\xd5\x5c\x47\x7b\x24\x15\xe1\x0a\x27\x9b\xa1\x10\xd2\x94\xf3\xdd\x18\x42\x17\x7d\x0b\x4b\xfb\x17\x34\xdd\x0c\xcb\x7e\x39\x4b\x43\xd1\x6f\x0b\x75\x48\x36\x22\x80\xf4\x34\x76\x4d\xa5\x7f\x19\xed\x3e\x30\x2e\x53\x70\xfb\xa4\x96\x64\xc2\x30\x05\x74\x33\xcc\x64\x7e\xb2\x7c\xd2\xc7\xc1\x8c\x7d\x66\x90\x6f\x08\x82\x46\xc2\x2f\x7f\x79\x03\x99\xde\xb4\xc5\xfb\xb9\x06\x18\x17\x69\xbe\xf5\xaf\xbe\x8a\xd1\xf5\xde\x55\xbe\x58\x8f\x52\xf6\x9c\x54\xd4\xef\x5a\x96\x9a\x0d\x99\x5c\x27\x40\x7b\x23\xed\xd9\x24\x3d\x24\x99\xfd\xf2\x94\x73\xb1\x95\x5c\x84\xb3\xf7\xcb\xdc\xd8\x1b\x76\x56\xec\x0b\xe9\xe0\xfd\xb3\x38\x13\x56\x96\x0f\xd0\xca\x70\xe7\xea\x74\xb6\x46\xfc\xd3\x13\x94\x8e\x6d\xdb\x47\x60\x94\x76\xfb\x6f\xa4\x84\x2f\xa7\x88\xa0\xd5\x7b\xe3\xb0\xa6\xca\x18\x19\xf7\x16\x14\x76\x00\x43\xec\x49\x04\x88\x19\x39\x96\x8a\x43\xb5\xd1\x92\x8f\x84\xa5\x91\x90\x93\xbc\x38\x41\x58\x81\x71\xa9\xcd\x39\x0f\x8f\xcd\x61\x53\x8b\x54\xe6\xef\x99\x77\x05\x73\xe1\x98\x6d\x15\x0f\xa9\x6b\x7a\x07\xe1\xd1\x94\xaf\x1c\x0b\x40\x55\x00\xac\xb3\xd1\x0e\x3b\xe6\x47\xc8\x98\x62\x00\x6f\xa7\x85\x83\xe7\x61\x66\x84\x29\x20\x16\x0e\xb5\x7f\x0b\x2a\x6e\xdf\x19\x3c\x44\xc5\xee\xac\xf4"}, {{0x1d,0x13,0x9b,0x1a,0xd0,0xc3,0xaf,0x1d,0x5b,0x8b,0xe3,0x1a,0x4e,0xcb,0x87,0x8e,0xc6,0x67,0x73,0x6f,0x7d,0x4f,0xa8,0x36,0x3a,0x98,0x09,0xb6,0xd1,0xda,0xbf,0xe3,},{0x24,0x28,0xcf,0x1d,0xeb,0x20,0xfb,0xad,0x1f,0xdc,0x66,0x5d,0x82,0x5b,0x61,0x41,0x22,0xdf,0x10,0x1f,0xbe,0x14,0x73,0xa7,0x99,0x96,0xba,0xf6,0x96,0x74,0x34,0xb8,},{0xdd,0x64,0x5e,0x51,0xed,0xab,0x04,0xdb,0x31,0xe3,0x31,0x72,0xcf,0x27,0xac,0xee,0xed,0xcc,0x04,0x63,0xa9,0x63,0x91,0x4a,0x0e,0xac,0x8e,0xfd,0x5a,0x34,0x34,0x1f,0x6b,0xbc,0x52,0xe0,0x42,0xba,0xaf,0x3b,0x40,0xc8,0x9a,0x57,0xef,0xb6,0x45,0x74,0xe6,0x96,0x77,0xfc,0xe9,0x55,0x24,0x6c,0x1f,0xc0,0xf2,0x69,0xef,0x81,0x90,0x00,},"\x8d\xf2\xd2\xdf\x9b\x98\x4d\xa8\x44\x33\x48\x6a\x81\x3c\x98\xc5\x97\x3a\x69\x6c\x11\x62\x46\x10\xb2\x3a\xa4\x38\x08\x34\x64\xf6\x5a\x76\x79\x66\x15\xb7\x28\xc2\xed\x4e\x60\x71\x58\x55\xaf\xc2\x39\x45\x0d\x5b\xc0\x91\x1f\xf2\xa8\x52\x30\x20\x5c\x6f\x13\x49\xba\x5b\xd8\x7e\xa6\xf7\x20\xdb\x6b\xa7\x0b\x77\x42\x17\x88\xe0\xc6\x54\xae\xbc\x23\x07\x4c\x5f\x41\xd2\x29\x07\x72\x14\x0d\x98\x1a\x6b\xc4\xfe\x70\x9a\x26\x8e\x64\x17\x2a\x02\x6b\x27\x01\x18\xb4\xdb\x51\xab\x6a\x13\xc9\x9b\x06\x31\x86\xd8\xd5\xb3\x38\xe9\x77\xed\xdc\x6b\xb5\xfd\x7d\xd5\x7d\x98\x45\xa3\xc3\xfe\x76\x17\x7d\x57\x38\xdc\xa1\x6a\x8f\x91\x02\x85\x75\x00\x17\x4f\x23\xff\x4c\x3b\xf3\xc8\x53\x6f\x11\x58\x0e\xf8\x51\x4a\x40\x9f\x5b\xbc\x9c\x02\x96\xf1\x2e\x34\x78\xd4\x08\x7f\x95\xef\xaa\x6c\x63\x60\x71\xd2\x11\x57\xbf\x11\x77\x4b\xbf\xe7\x69\x33\x06\xca\x72\x13\xda\x47\x13\xeb\xaa\xab\x35\x54\xed\xf0\x80\x11\xa5\xff\x73\xda\x12\x03\x75\xae\xd1\x96\x28\x67\x0f\x28\xab\x24\xb6\xf5\xd5\xa1\xd5\x70\x48\x0f\x65\xd3\xc1\x52\xbf\xf1\xb4\x7b\xf0\x66\x69\x29\xcb\x7c\x99\xd9\x03\x3f\xaa\xe8\x53\x4f\xc3\x5d\xa7\x30\xb8\x11\xeb\xcc\x25\xae\x10\xa1\x95\xaa\xb1\x2c\x32\x6a\xa4\x5b\xf8\x05\xc6\x2d\xd4\xcd\x5f\x86\x86\x23\xc0\x4a\x8e\x1c\x6a\xa7\x2f\x1e\xa4\x40\x0c\x60\x86\x7d\xff\x62\x2f\x31\x64\x34\xf1\xec\x89\x50\x3c\x6f\x9f\x65\xc1\x37\xb4\x94\x4c\xbc\xb3\x5f\x08\x6c\x74\xcc\xea\xfa\x22\x42\xac\xca\x6f\xfe\x61\x1c\x4b\x55\x87\xf5\xb7\x5f\xfa\xd3\x49\xf0\x0b\xf9\x6e\x4a\x58\x0a\x87\x5b\x92\x65\x40\x69\xb6\x2e\xea\xc0\xbf\x78\xe5\xae\xdd\x71\x86\x9e\xe0\x5b\x9a\x94\xe1\xc9\x8e\x35\xa9\x78\x00\xa4\xa2\x12\x20\xb0\x39\xcd\x5e\xbb\xb7\x56\xd4\x0b\x40\x42\xe2\xc8\x4a\x2a\xe9\x81\x82\x51\x1d\xae\x8e\xd3\xb8\x9f\x4f\xa0\x0f\xb8\xed\x94\x63\x16\x45\x97\x10\x05\x2a\xd4\xc0\x2f\x63\xdf\x05\xd3\xbb\x1a\xce\x33\x67\x21\x51\xbd\xf5\xda\xb4\x6c\x7b\x58\x3d\xb3\x73\x89\x9d\x4f\x03\x5b\x6c\x11\x12\x58\xb4\xe5\xa9\xe7\x07\xa1\x1d\x21\x5e\x44\xe6\x8e\xf1\xa6\xf0\x53\x80\x9a\xa5\x1b\xd9\x02\xe1\x3c\xa9\x9c\x1b\x1c\xec\xc8\x3b\x9c\x23\x5c\x71\x0e\x79\x7d\x2b\x1a\x24\x9b\x2e\xa0\x79\xb5\xc1\x67\x4e\xd7\x16\x9f\x1b\x6e\x67\xf1\xac\x77\xf8\x6b\x74\x32\x98\x96\x93\x35\xa7\x72\x44\x0f\x7f\xbf\xa7\x25\x13\x50\x0d\x84\x16\x61\x14\xa8\xfd\x54\x13\x94\x64\xd4\x2b\x99\x55\x30\xd3\x23\x70\xb6\x9b\xff\xc7\x58\x9d\x6d\xcc\x97\xe0\xbf\x17\x85\x6c\xc3\xbf\x41\x64\xdb\xec\xcc\x8a\x88\x1d\x41\x4d\x6a\x62\x02\x92\x76\xc5\xf8\x13\x7c\x0b\x3c\x68\xbc\x8f\x4b\xd4\xe7\xcf\xf6\x5e\xf2"}, {{0x4d,0x22,0xe3,0x31,0xe0,0xcf,0x6f,0x6a,0x27,0x2d,0xb4,0xd2,0x06,0x87,0xff,0xb0,0x59,0xf1,0x22,0x5d,0x81,0xe4,0x11,0x23,0xb8,0xc8,0x9b,0x07,0x4d,0xe7,0x6a,0x3b,},{0xb1,0xe4,0xcf,0xae,0xad,0xd6,0x7b,0x12,0xd7,0xb9,0xdb,0xfc,0x0f,0x88,0xed,0xd0,0x37,0x3f,0x9a,0x88,0xc7,0xfa,0x33,0xfb,0x7f,0x2b,0x1e,0x47,0x5e,0xcc,0xb6,0x1b,},{0xc3,0x66,0xb8,0x02,0xf6,0x82,0xfc,0xd7,0x05,0x25,0x26,0x4f,0xb1,0xa3,0xcb,0xcd,0x0e,0xe3,0x5e,0xcf,0xf5,0x97,0x7c,0x2a,0x55,0x4d,0xa9,0x39,0x22,0x9f,0x17,0x81,0x9a,0x96,0x1e,0xa7,0x4c,0x3d,0x7a,0x78,0x81,0xac,0x5c,0x1f,0xa1,0x6b,0xf9,0x84,0xd9,0x45,0x6a,0x13,0x88,0xd3,0x46,0x3c,0x44,0x94,0x42,0x9b,0x1d,0xc4,0x54,0x02,},"\x9c\x8e\x3f\x5b\x4d\x70\x40\x30\xe1\xba\x71\xf0\x2e\xfc\x4b\x87\xd6\xff\xfb\x55\xbc\x3d\x8d\x03\x81\x8f\x91\x56\x24\xfc\xf7\x01\xc5\x4a\xdf\xaf\xa2\xb6\x94\xb8\x77\x51\xcb\x9f\x69\x91\x8c\x0f\x05\x0f\x4c\x10\x5d\x5c\xcb\x40\x10\x0b\x28\xdf\xd4\xf4\x11\xd5\x91\xc1\x20\x19\x17\x6a\xc2\x01\x6b\xfb\xfd\xf0\xdd\xf1\x1d\xb8\xa7\xe3\x9a\xa7\xb9\xe2\x16\xf6\x67\xc0\xa1\x5f\xb9\x77\xea\xa9\xba\x3b\xc4\x55\xcc\x58\x94\x5f\x3e\x94\x4b\x8a\xc2\xfb\xf4\xd2\x4f\xe7\xe1\xe6\x19\xcd\xbe\xee\x3e\x5e\x12\xa9\xa5\x27\xd2\x8f\x5f\xd7\xcf\xd9\x22\x0f\x13\x08\xd8\x97\xb6\xd4\x31\x4a\x5a\x01\x87\x86\x4a\x2d\x62\x1c\xf1\xb2\x84\x42\x61\x24\x7b\xf5\x20\xba\xfa\x9b\xf2\x26\xe1\x15\x68\x1e\xcd\x77\x42\x79\x80\xcd\x12\xb0\x8c\x35\x9c\xec\xd1\xde\x3f\x55\x45\xf8\x07\xf8\x1e\xd7\x63\x02\xff\xd6\x47\x7f\x89\xb9\x58\xcd\xf1\x29\x54\xcf\x70\xc1\x42\x53\x29\x93\x83\x16\x47\xea\xca\xb0\xb4\x80\x7b\xfd\xad\xb4\x38\x9d\x7d\xff\x2c\x4e\xf0\xef\x5a\x5c\x61\xd0\xdf\x76\x2e\x2e\x90\x80\xa7\x18\x1c\xec\xd0\x6a\x53\x19\x9f\x0d\xfe\xf7\x02\x62\x7a\xde\xcf\x5f\xcd\x9b\x3e\x68\xc7\x23\x33\x16\x17\x27\xf8\x71\xc7\xd1\xc4\x30\x51\xff\x1c\x92\x1f\xd5\x3b\x64\x22\x38\xb9\x78\x80\xd6\x4e\x25\xfa\xc5\x12\xab\x95\x4b\xed\xbc\xa5\x40\xf5\xb2\x00\x91\xec\x72\xe6\x7f\x88\x77\x0a\xfc\x32\xf2\x12\x5c\xa0\xda\x4f\xe8\x7b\x56\xaa\xc9\x17\x7f\x1f\x4f\x67\xc8\x51\x72\x5c\x5e\x8a\xfe\x64\xf6\x64\x79\x98\x33\xfd\x79\x10\x0b\x77\xea\xd2\x58\x38\x87\x9f\xff\x47\x47\xaa\x0d\x56\x72\xec\x0a\x94\x34\x81\x34\xbd\xbd\x4b\xb3\x9b\x0c\x67\xa0\xcd\x30\x60\x2e\xdf\x4f\xec\x6f\x7a\xf0\xcc\x2b\xda\xe1\x26\xce\xa8\x42\xdf\xaa\x43\x91\xdc\x5d\xde\xa9\x38\xe1\x79\x21\x68\x24\x0c\x2d\x8b\x25\x35\x2f\x9f\x3a\x64\x42\x35\xce\x36\xfe\xfe\xb6\x99\x2a\xd8\x8e\x28\x7a\xd2\xd8\x5b\xd8\x50\x39\x6f\xc2\xe5\x17\xa1\x52\x09\xf5\x92\x0a\xc9\x8c\x53\x2b\x1f\x4d\x86\x9b\xeb\x08\xbb\x03\xcf\x7c\x91\xaf\x3f\xfc\xed\x68\xd5\xfb\xfe\xf8\x6f\xf9\x4e\xce\x6e\x2e\xad\x34\x84\xce\x08\x0d\xb1\x7b\xbe\x40\xf1\xdb\x43\x2e\xc1\x65\x0e\xd2\x4f\xdd\x25\x0f\x33\x45\x74\x5c\x9b\x7b\x91\x98\xc9\x10\x9a\x37\x26\x1f\xc5\xec\xbb\xb1\x2f\x83\xa0\xe1\x22\x0a\x18\x67\xd4\x5f\xdd\xfe\xa8\x1d\xcf\x75\xf4\xec\x7f\xdb\x52\x50\xe5\x77\x54\xd6\xde\xa2\x70\xb6\x28\xa7\x95\x30\xec\x28\xb6\x19\xbc\xa9\x49\x3e\x63\x05\xcf\xc4\x41\x4c\x1c\x1d\xe3\x38\x9e\x89\x01\x97\xc8\x5f\x28\x40\x4f\x3f\xa9\x6a\x1e\x2f\xd9\x20\x6b\x47\x2e\x8a\x0a\x0d\x32\xaf\x55\x60\x6b\xb0\x83\xf7\x6a\x19\xb8\xea\xe3\x47\x9a\xe5\x1d\x98\xa9\x9a\x62"}, {{0xa5,0x22,0x8f,0xf9,0xbb,0xb6,0xf2,0x32,0x32,0x7e,0xb8,0xd8,0x79,0xd7,0xf8,0xb2,0x77,0xca,0x72,0xba,0xe1,0xf9,0xa9,0xd0,0xe2,0x60,0xdd,0x90,0x57,0x1d,0xb4,0xf9,},{0xd8,0x2f,0x6a,0x69,0x74,0xf5,0x1c,0x88,0x08,0xd9,0xd6,0x17,0xf4,0xce,0xc2,0xd8,0xa3,0x7e,0xb1,0x1a,0x14,0x23,0x7c,0x9a,0xb9,0xcf,0x11,0xeb,0xc8,0x0f,0xf6,0xc0,},{0x97,0x65,0x0f,0xae,0x3f,0x59,0xca,0x76,0x47,0x7f,0x25,0x47,0x16,0x77,0x49,0xc5,0x83,0x02,0x48,0x88,0x32,0x25,0xe3,0x54,0xff,0x46,0xc7,0xe3,0x81,0x96,0x52,0x20,0xd9,0xbe,0xf2,0xc2,0x05,0x7c,0x7d,0x19,0x90,0xf0,0x8b,0xca,0x4c,0xfd,0xe8,0x77,0xff,0xf2,0xb4,0xaa,0x81,0x3d,0x9c,0x4b,0x84,0xfb,0x79,0xec,0xed,0x81,0xef,0x05,},"\x1d\xf7\xa6\x83\x5e\x33\x10\x98\x3e\xe7\xec\x73\x11\x25\xf5\xb5\xcf\x11\x7a\xf0\xe3\x6b\x36\x85\xbf\x54\xac\xe1\xc4\x8c\x46\x30\x05\x60\xa4\x5e\x9f\x9b\xdd\x96\xa0\xbc\x4d\x14\xe8\x9d\x4b\x57\x21\xa2\xca\xff\x66\x18\xb1\x82\xed\xb1\x20\x2f\x3d\x0c\x5d\x11\x8d\x09\xb6\x18\x12\xc0\x10\xe8\xb1\x96\x34\x45\x41\xcd\xee\xfe\x5f\xd1\xf9\x61\xc5\xdd\x75\x45\x95\x55\xab\x72\xef\x2a\xa7\xa7\x59\xa4\xf3\xad\x3c\xae\xd4\x4f\x4c\x9a\x8e\xf9\x5b\x76\xed\x9a\x99\xb5\x5d\xd8\xa2\x60\xba\x08\x01\x0d\x29\xff\x81\x9f\x2a\xf3\x51\x3c\x1a\x64\x0d\x6c\xcd\xde\x49\x99\x20\x5f\x9f\xca\x88\x57\x11\x5d\x8b\x5d\xb9\xf7\x0a\x62\xe5\xee\xa0\xd5\xaf\x06\x5d\xe1\x53\xf2\xed\xed\xee\xc6\x3e\x15\xc8\xe0\x9a\x92\x58\x21\x82\xac\x07\xd8\x1c\xa6\x3c\xa4\xaa\x59\x7a\x22\x20\xe7\x04\x81\x95\x7d\x41\x52\x64\xe2\x58\xbc\x26\x3e\x1c\xc3\x6e\x53\x47\x8a\xac\x5c\xa0\x16\x94\xcc\xb0\x9b\x4f\xfd\x84\x73\x99\x72\xc7\xdc\xcf\x3d\xef\xea\xfd\xed\xe1\x62\xab\x6c\x58\xa1\xdf\x27\x37\x1e\x3f\x54\x93\x06\x7f\xc9\xe2\x06\x7e\x57\x96\x23\xc0\x09\xfc\x82\x5e\xef\x0e\x01\x0f\xd1\xcc\xf2\xa8\xd3\xfb\xbb\x31\x56\xf9\xdf\xde\x0c\x7c\xbb\xaf\x84\x33\x09\x85\x17\x49\x1b\x78\xdb\x96\x98\x61\x4e\xa4\x0e\x0b\x1e\x6a\x1e\x36\xb9\x00\x45\x3a\x16\xea\x27\x6f\x34\x42\xbb\xd2\x7a\x7e\xcb\x98\x15\x11\xf5\xc9\x20\x9e\xb0\x96\xe2\x85\x88\xb6\x5b\x96\xb5\x01\x88\xc0\x38\x1f\xf7\x12\xbc\x06\xb2\xc6\x55\xcc\xa0\x75\x1c\x09\x5d\x80\x16\x25\x15\x85\x85\x1e\x67\x74\x34\xdc\x3e\xfd\x08\x7a\x12\x68\x0f\xc2\x2e\x5b\x83\x10\xa1\x0e\x32\xca\xac\x9b\x71\xc8\x76\xee\xd3\x1e\xf0\x9f\x7f\xa0\x12\xba\x08\xdf\xd2\xad\x68\xc1\xe1\x47\xf5\x05\x98\xe5\x50\x46\x7e\xf9\x9f\x29\x5a\x31\x8f\xaa\x50\x7e\xbe\x77\x6c\xe5\x5c\x4d\xa1\x64\x32\x3c\x30\xa5\xe7\x2d\xbe\x02\x7c\x3c\xcf\x96\xc7\x01\x97\xa6\xfb\x1b\x74\xaf\x13\x3a\x8b\xe2\xb0\x3c\x1b\x99\xfd\x25\xb3\xce\xd5\x1f\xe3\x88\x20\x21\xa3\xaf\xd9\x22\x9f\x64\x1b\xc6\xca\xd4\xe1\xd3\xcb\x6e\xd9\xb6\xb6\x8a\x25\xf1\xe1\x39\x72\x89\x98\x1f\x78\x92\x4b\xff\x24\xc8\xde\xe6\xa1\x8a\x04\x21\xfa\x32\xae\x3a\xb6\x0a\x0d\x93\x3a\x6a\xf4\xff\x70\x48\x74\xb0\x9b\x07\x39\xe2\xf2\x9d\x8f\x25\x2d\x79\x05\x5f\x89\xd3\xbf\xf1\x0a\x22\xc5\x4a\xc3\xd8\xaf\xee\xce\x81\x83\x53\xa6\xab\xe2\xb7\xfb\x8e\x8e\x0d\xa5\xb7\xac\x1c\xfc\x98\x5d\xf9\x75\x80\xb1\x82\x11\xa4\xe3\xed\xff\x95\xaf\xdd\xa0\x61\x54\x7d\x3a\xe0\x40\x6d\x32\x86\xcd\x30\x5b\xdf\xd2\xc3\xab\xf8\xf7\x4a\xf9\xa0\x34\x20\xe5\xb0\x3f\x82\x5e\x9c\x53\x90\x7e\x13\xa5\x81\x21\x74\xbe\x42\x89\x86\x45\x14\x9d"}, {{0xc0,0x4d,0xc0,0x9f,0x11,0x9d,0x67,0x0f,0xb1,0xea,0xe0,0x13,0x6f,0xcc,0x06,0x08,0x5f,0x29,0x0f,0x4a,0xd1,0xaa,0x1f,0xfc,0x9c,0x16,0x0e,0xa5,0xcf,0x47,0xf0,0x9d,},{0xff,0x49,0x8c,0xe8,0xc9,0xdb,0x78,0x67,0xf6,0xd0,0x27,0x64,0x52,0xa4,0x66,0x72,0x48,0x87,0xe6,0x17,0x2f,0x66,0x81,0x67,0x1b,0x8a,0xe0,0x35,0xf5,0x86,0x5e,0xa3,},{0x4b,0xd1,0x9f,0x3d,0x9c,0x51,0x16,0xec,0x6a,0xe0,0x02,0x4d,0x0f,0x24,0x6d,0x2c,0xe2,0x50,0xd9,0xe0,0x63,0x4a,0x23,0x2b,0xa0,0x6f,0xd3,0x56,0x6a,0xed,0x55,0xcb,0xe5,0x9f,0x12,0x33,0x2c,0xba,0xd6,0x5d,0x43,0x49,0xa9,0xd2,0x2e,0x7d,0x6e,0x46,0xd2,0xfb,0xdc,0x71,0xd5,0xc8,0xf9,0xda,0x15,0xdf,0xbf,0x17,0xba,0x22,0x51,0x07,},"\x1e\x42\x29\x7f\x8a\xee\xf2\x9a\x84\x2e\x0e\x21\xf5\xdb\xae\x06\x8e\x2c\x9d\xda\xa6\xfd\x34\x8e\x48\x88\x1f\x0d\x42\xc5\x0b\xf0\xec\xf1\x70\x6b\x94\xa5\xd1\x98\x17\xca\x02\xd8\x3e\x9a\xb2\xf9\x9d\x8b\xfa\xaa\x5c\x85\xad\x39\xa1\x50\xb2\x25\xad\x3e\xaf\xa0\x67\x81\x5b\x74\x67\x2f\xe0\x26\xc3\xcc\xc6\x77\x25\x54\x40\xb6\x84\xa7\x6e\x12\x8c\xa2\xcc\xc4\x29\xf1\x52\x57\x7d\x25\xb6\x9f\x40\xdb\x58\x2d\x49\x47\x9a\xfa\xe6\x80\x71\x2d\xc0\xfd\x1f\xe1\x41\x88\x39\x68\x7c\xa6\x0c\xdd\xe9\x74\x14\x04\x62\xf9\x61\x48\x29\x5d\xf1\xce\x43\xa9\x77\x35\x1c\x77\xf2\xf0\xb0\x9a\x6b\x26\xd6\xfe\x96\x5f\xce\xae\x17\xd7\xb8\x62\x03\x71\x40\x24\x28\x54\x4f\xdf\x91\x69\x0b\x44\xe9\xaf\xc2\xe9\x08\x8c\x83\xca\x48\xdc\x85\x76\xf6\x28\x72\x47\x98\xdc\x90\x32\x31\x74\xc4\x49\x96\x59\x65\x02\xa3\x5d\xf8\xb9\x82\xc5\x70\xa6\xcb\x51\xb9\xa1\x97\xd4\x31\xaf\x33\xf0\x2b\x80\x01\x15\x67\xfe\x50\xcf\x45\xac\x11\x1b\x3d\x55\x6f\x8c\x8c\xe5\xae\x8c\x99\x72\xf2\xa9\x93\x6b\x1a\x01\x2b\x9c\x33\x9e\x30\xc9\x73\x12\xb6\x5e\xa5\x9c\x10\x0f\x79\xd7\x95\xb8\xa2\x4b\x31\xa0\xa9\x7d\xc2\x5c\xce\xd6\xb8\xff\x5a\xe1\x45\x33\x9a\x04\x8c\xa1\x2a\x57\x90\x17\xfa\xe8\xd5\xcb\xcb\x61\xd5\x2e\x31\x4d\xd7\xc2\xe7\x20\x10\xc4\x72\x17\xb1\xd0\x68\x78\xbf\x28\x18\xca\x18\x8e\x8e\x30\x79\x60\xc1\x68\x9d\x7d\xfc\x02\x02\x97\x3c\xd2\x9f\x2f\x7b\xa7\x43\x46\x9e\x68\x5e\x0e\x70\x4b\x04\xba\xca\x4f\xab\x54\x88\x44\x8a\x92\x2e\xab\xf4\x0b\xe5\x81\xc1\x99\x4d\x74\xd1\x3a\x36\x6c\xe8\x57\xfb\x40\xa6\xe0\x5d\xa8\x55\x36\x94\x17\x2c\xc3\xfd\x28\x06\x2f\x53\x82\x50\xaa\x8c\x11\xf6\x81\x39\xe7\x9c\xd1\x19\x1b\xa3\x31\x4b\x5c\xea\x08\x64\x43\x7e\xd2\xe4\xb6\xfb\xd7\x5b\x9d\xed\x09\x87\xb4\x1c\x20\x2a\x58\xec\x02\x54\xd9\xd3\x71\xa7\x95\xf1\xdb\xec\xdd\xac\x11\x2b\xe8\xd0\x9e\x2d\x7b\x9c\xa5\x75\x2f\x40\x6c\xff\xb9\x11\xca\x36\x45\x0b\xc0\x5f\x1e\xc1\xca\x3c\xa8\xd3\x51\x24\xd1\x28\x6c\x55\xf1\x0f\x61\x33\x4e\x46\xec\xe4\x18\x3b\x92\x21\x9a\x9d\xcd\x0e\x5e\x78\xef\x2a\x76\xcf\xe9\xa9\xab\x37\x95\xdf\xdc\xb4\x4f\x63\xd4\x5f\x5f\x48\xff\xb4\x15\x61\x33\xad\x2e\x99\x50\x88\x4c\x5b\xbd\x2c\x1c\xb8\x72\x9e\x40\xa8\x78\x7f\x78\x49\x69\xfa\x88\x0c\x07\xff\xcc\x97\xd5\xc0\xd2\xd4\x88\x08\x5e\x91\x16\xd7\x10\x7c\xd5\xdb\x16\xce\xcc\xde\xad\x55\x02\x5e\xea\x2e\xde\xe9\x3c\x1b\x10\x64\x27\x61\x8e\xe0\x9d\xc3\xda\xd1\xe0\x56\x76\xa2\x36\x80\x69\xc8\x04\x5c\x3e\xbc\x6c\x67\xaf\xa5\x2d\x59\x39\x82\x48\xef\xcf\x15\xe9\x04\xc7\x14\x23\x04\xff\x61\x97\x1f\x4d\x9b\xf6\x46\x0c\x1d\x64\x17"}, {{0x67,0x91,0xbd,0x74,0xd3,0xb4,0x62,0x0e,0xf5,0xf1,0xff,0x56,0x40,0x64,0x32,0xc2,0x6a,0xb6,0x46,0xf6,0xd5,0xe9,0xdd,0xa6,0x84,0x2e,0xd6,0x90,0x52,0x27,0x53,0x92,},{0xda,0x99,0x15,0xa7,0x55,0x2f,0x11,0x0f,0xae,0xa1,0x2d,0x47,0x92,0x0a,0x09,0x60,0x14,0x43,0xd4,0x00,0x0a,0x9c,0x7e,0x21,0x8d,0x5b,0xa7,0x2b,0x74,0x98,0x9f,0xa6,},{0xb1,0xe8,0xd4,0x81,0x06,0x5b,0xd5,0x12,0x1b,0xb3,0xbf,0x56,0x96,0x00,0xbc,0xc2,0x6d,0xf4,0x0c,0x49,0x9f,0xba,0xa9,0x54,0xb3,0x9a,0x61,0x9d,0xc4,0x0b,0x95,0x90,0xc3,0x17,0x56,0xb8,0xb6,0x3f,0x86,0x01,0x51,0x69,0x4b,0x95,0x76,0x5d,0x69,0x7b,0x2e,0x1a,0xde,0x08,0x06,0xe9,0x2a,0x06,0xc4,0xa5,0x59,0xe9,0x0f,0xcf,0xa5,0x06,},"\x36\xa2\x0e\x66\xbb\x29\x15\x51\x61\xad\x85\xee\xfe\x89\x3b\x53\xac\x5a\xde\x16\x5f\x08\x9a\x77\x19\x0b\x0c\x23\x9d\xec\x8a\x20\x16\x85\xb0\x76\xb4\xde\xd4\xa1\x0a\xa4\x59\xb9\x80\xa8\xcc\xa4\x7d\x5f\x8d\xe4\xd2\xa6\x62\xe4\x46\xd5\xf7\xfb\x70\xed\x9b\xe0\x5d\xb1\xcc\xea\xdd\x13\x0b\x33\x46\xd9\x40\x9f\x9d\x6e\xf5\x28\x24\xc7\x64\xac\x6f\xb1\xcd\x15\x6d\xbd\x6a\x47\x3a\xe7\x22\xd0\xeb\xb2\x56\x38\xc5\x12\x65\xa2\x2f\xeb\xbb\x14\x96\x7d\x6d\xd8\x25\x3c\x1d\x03\x88\x95\xc6\x73\x7f\x06\x7c\x8f\x73\xc3\xc1\xcb\xe6\xcd\xa4\x36\x96\x32\xd7\xf4\xc9\xac\xeb\xe8\x7d\x05\x71\xc8\x1a\x58\xcf\xd7\x2c\xce\x4a\x5c\xf5\x3a\x1e\x75\x25\x9f\x4c\x99\x3e\x67\xef\xc8\xd9\xc3\x57\x6c\x43\xaf\x04\xa5\xca\xf3\x3d\x85\x6f\x7f\x27\x55\xd3\xa9\x75\xab\x2b\x68\x5c\x6f\x65\x68\x0c\xba\x9a\xc8\x79\xf3\xa8\xc9\xa4\x76\x5b\x87\x9c\x0a\xde\x1e\x4b\xd0\xd4\xa7\x0b\xb6\xf9\x2b\x24\xd4\x29\xdc\x74\x6c\xc7\x8f\x84\x81\x1f\x07\x6f\x32\xc6\x1e\x35\x85\xcc\x8a\xad\xe9\xb0\xca\x15\x22\x4b\xfb\xfe\x18\xbe\x10\xa3\x36\x43\x60\x0f\x66\x12\xbf\x01\x3f\x0e\xfc\xca\x83\x72\x46\xa0\xee\x5b\x03\xc0\x2f\x15\x73\x62\x4c\x4a\x44\xa9\x0f\x9e\x42\x3d\x4e\x56\x06\x1a\x71\xd0\x14\x4f\x5a\x88\x7a\x8c\xd4\xa9\xd6\xf2\x47\x90\x4e\x26\x79\x59\x51\x95\x9d\xa1\x21\xc8\x3c\x6c\x94\x1e\x2b\x6b\x9a\xb7\x62\x09\xff\xe9\x17\x85\x91\xea\xd6\x82\x30\xb9\x4a\xe9\x7d\xf5\x8f\x9f\x17\x24\x28\xc9\x50\x67\x59\x8a\xc5\x82\xff\xb9\x50\x84\x0d\x82\x66\x30\xc4\x62\x5f\x5d\xea\xdd\xec\x13\x05\x20\x3b\x4d\xb6\xb9\x45\xf9\x91\xed\x7c\xd3\xd6\xfa\xbc\xa5\x1e\x21\x66\xad\xad\x0a\xad\x51\x17\x33\x6d\x52\xd5\x94\x22\xf0\x13\x5c\x8f\xa8\xcd\xd0\x88\x4b\xe7\x35\x86\xbf\x28\x4e\x5d\xdd\xdb\xcb\x95\xb4\x11\xf9\x85\x68\x52\x6f\xbe\x71\xa5\x59\x2b\x56\xad\x5a\x73\x45\xf2\x87\x4d\xb1\xd5\x7b\xea\xb4\x3e\x8c\xc6\x95\x47\x52\x06\x29\xf0\xee\x76\xdb\xf4\x32\xa3\x76\xfa\xd2\x8b\xfc\x77\xe1\x4d\x84\x0f\x0c\x02\xd4\x78\xf1\xe2\x33\x7c\x23\xb8\x9e\x73\xe5\x27\x91\x08\xb5\x60\x9b\x18\xe8\x0d\xb0\xde\x11\xcf\xa9\x4e\xcf\x72\x39\xbc\xff\x59\xc5\x41\x18\xe4\xed\xe4\xfb\xfc\x08\x23\xae\x54\x60\x16\xf7\x74\xc5\x21\x98\xa9\x63\xb5\x54\x5a\x34\x89\xb8\x9d\xf7\x62\x6f\xd1\x1e\xd4\x65\x8d\x71\x5a\x46\x57\x99\x40\x35\xd4\x03\xb3\x37\x0d\x14\xee\xd9\x71\x8d\x59\x8d\xb6\x75\xf0\x42\x59\x2f\xea\x89\x05\x65\x44\xb3\x2e\x5b\x9c\x80\x62\x82\x8a\xaa\x3c\xf5\x9c\xb4\x76\xad\x36\xdb\x1d\xaa\x24\x82\x22\x7a\x9b\x7a\xfb\xc1\x53\xce\x93\x25\x3d\x1b\x39\xda\x95\xeb\x96\xf8\x31\x28\xff\x25\x54\xa5\x47\xe3\x4e\xea\x4a\x00\x00"}, {{0x23,0x4c,0xe4,0xd3,0x9b,0x5e,0xba,0xbe,0x9a,0x2c,0x1e,0x71,0x97,0x0d,0x71,0x81,0x38,0xdc,0xb5,0x30,0xcf,0xd2,0x96,0x02,0x34,0x27,0xd8,0x92,0xbf,0x88,0xf8,0xa4,},{0xcb,0x73,0x93,0x0d,0xb4,0x21,0xf6,0xd2,0x45,0x36,0x83,0x7b,0xd0,0xbf,0xf6,0xfa,0x75,0xbb,0xd1,0x41,0xc9,0x8a,0x40,0x5d,0x42,0x44,0xa3,0xc4,0x24,0x55,0x07,0x79,},{0xf6,0xd0,0x60,0xed,0x7d,0x18,0x27,0x3f,0x18,0xf7,0xa6,0x9c,0xd1,0xd8,0x12,0x6e,0x47,0x8e,0x88,0xa1,0xd7,0x29,0x4f,0xf6,0x04,0x08,0x46,0xd4,0x61,0x07,0xc3,0xe4,0x1a,0x42,0x3b,0xab,0xb2,0x41,0x71,0x39,0xfe,0x58,0x7d,0x29,0x10,0x27,0x1a,0x35,0x7f,0xe5,0xbf,0x57,0xc9,0x2e,0xe3,0xa7,0xb7,0x75,0x33,0x72,0x9d,0x0a,0xc2,0x0d,},"\x77\x73\x0c\xf8\xc8\xf9\x6b\x91\x87\x90\x2a\xcf\xf9\xff\x0b\x21\x74\x6c\xca\xf0\xa3\x82\xa7\xb3\x43\xd1\xc7\x20\x27\xae\x3c\x31\x68\xa7\x3a\x6b\x8f\x49\xbc\x87\x98\x14\x1e\x15\xc2\x73\x2b\x6a\x6b\x3f\x75\x7f\x8a\x8e\x86\xc7\xa4\xba\xcb\x39\x55\x1c\x54\x87\x4d\x6b\xf7\x16\x89\x7e\xe4\xaf\x13\x25\x3a\xa5\xbb\x79\xa1\x92\x10\x4f\x44\xdc\xb3\xde\x96\x07\x45\xa8\xe6\xaa\x98\x80\x52\x4a\x62\x9f\xb5\x10\xa4\xce\x4c\xbd\xa7\xe2\x95\x7d\xff\x1d\x62\xe7\x05\x60\x6a\x2c\xc8\x4f\x91\x85\x0b\xea\xac\x5e\x58\x46\xe1\x42\x0b\xc9\x1d\xcd\xd2\x42\x7b\x69\xcf\xa4\x6a\xe3\x8a\x4f\xef\x41\x46\xea\xe3\x5f\x9c\x22\xe9\x67\xcb\x14\xa1\xaf\x9c\xab\xf8\x3b\x18\x04\x65\xbe\xd6\xef\x2c\xda\x38\x2a\x84\xd9\x99\x4a\xad\x65\x5d\x89\x52\xe0\xfb\xb0\xf9\x6f\xc8\x08\x9f\x2e\x74\x89\x49\x7f\xac\xdc\xd6\x56\xa8\xa4\x51\xb9\x28\xc1\x1e\x7a\x40\x75\x07\x2a\xaf\xbf\x17\xd8\xf1\x05\x4c\x91\x96\x28\x8d\xed\x3a\xe2\x1f\x9a\xfd\x58\x10\xa1\x00\xd8\xe4\xd8\x4c\x4a\x35\xa9\x8b\x30\xd3\xe1\x85\x24\x43\x8d\xd4\x40\x2d\xfd\x8e\x76\x75\xf0\x9d\x08\x0c\xd9\x15\xf1\x4a\xf4\x37\x2f\x7c\xe5\x83\x84\x97\x2d\x5d\x11\x10\x79\x65\x1b\x2a\xcf\x39\xd2\xa1\x67\xc6\xa0\x0b\x2b\x17\xce\x0b\x26\x87\x91\xbd\x2b\xe5\x17\x8f\xe0\xf8\x2d\x64\xda\xcd\xde\x37\x7a\x1e\x8b\xe9\xe7\xd8\xdf\xc8\x2b\x08\x64\x45\x37\xbd\xc8\x70\xc5\x81\x92\x86\xfd\x51\xf6\x79\x2d\xc5\xf6\x7b\x54\xbe\x33\x6d\x44\xd5\x4f\xeb\xf8\x1b\x8d\xf8\xde\xc5\xd8\x68\x6d\xb1\x2f\x16\x4d\x0e\x8f\xf1\xaa\x2c\x16\xba\xcc\x98\x06\x01\x0e\xc8\xe9\x11\x96\x59\x7e\xf0\x6a\x4c\xf1\x70\x7d\xef\x50\x67\xa0\x48\x89\xd8\xe4\x8a\x9b\xc2\xc0\xbe\xf6\x64\xf5\xac\xd1\xb4\xf5\xbc\x2d\xa7\xda\x43\xdc\xb5\xf9\x63\x24\x5b\xa5\x52\xfd\x49\x30\x01\xd8\x70\xa9\x51\x7a\x17\x9c\x2f\x0d\xe8\x5b\xe0\xc6\x82\xd0\x57\x48\x8e\x35\xc7\x81\x6f\xf4\xba\x52\x9a\xef\xd7\xc6\x60\x91\xf2\x06\xf5\xf4\xd7\x5c\xac\x8b\xd2\x09\xec\x2f\xa5\x5b\xe7\x4a\xf2\x31\xe2\xf3\x89\xdc\xc2\xd6\x68\xbf\x69\x5e\xd2\x67\xc3\x59\x4b\xad\x9e\xfc\x00\x21\x7c\x7a\x0e\x9e\x7b\x6a\x56\xa3\x30\x79\xa3\x0e\x73\xc3\x73\x3f\x2d\x24\xef\xec\xdd\xe8\x7f\x72\xf9\x48\xd2\x77\xd6\xb6\xd5\xb0\x35\xb4\xc5\x31\x80\xd2\x3d\x66\xcc\x0f\xf1\x7c\x15\xdd\x46\x85\x85\xe3\x89\xd9\x1a\x4c\x97\xfd\x80\x11\x0b\x21\x8a\x0b\xf7\xa5\xe0\x35\x3f\x46\x09\xd2\xcf\x01\x8a\x06\x55\x71\x00\x1c\x78\x88\x55\x5e\xed\xbd\x36\x22\xc3\xb1\x76\x9c\xd1\x3f\x33\x37\x47\x72\xaa\x6c\x8a\x8f\x58\x81\x02\x01\x7d\x4e\xe4\xe5\x0d\xcb\xbd\xb1\xd6\x10\xc3\x26\x70\x93\x4a\x6d\x9e\x6d\x9b\x78\x4b\xbf\xe7\x18\x62\xbb\x38"}, {{0x10,0x3d,0x11,0x8c,0x7d,0xd6,0x5d,0x07,0xe8,0xd5,0x58,0x2e,0x45,0x04,0x2a,0x75,0x79,0x24,0x17,0xc6,0x92,0x00,0x1e,0xe6,0xbd,0x9a,0x92,0x7b,0x2b,0x3d,0x90,0x16,},{0xb4,0x5c,0xc9,0x45,0x14,0xa6,0xad,0x67,0x24,0x96,0xcd,0x4e,0xb9,0xfd,0xaf,0xc1,0xd4,0xa1,0x67,0x07,0x2c,0x68,0x74,0xdc,0x8f,0xf1,0x6d,0x76,0x1f,0xb6,0x69,0x86,},{0x2f,0xaf,0xc1,0x3c,0x43,0xaf,0xe5,0x05,0x43,0x72,0xb9,0x23,0xd2,0x4f,0x29,0x2b,0x28,0x3a,0xfc,0xa3,0xac,0xa3,0xb3,0xe4,0x32,0x38,0x06,0x84,0x96,0x17,0x13,0xc8,0xd2,0x3e,0x86,0xb3,0x58,0x04,0x95,0xdf,0xba,0xe4,0x24,0xb7,0x67,0xe4,0x79,0x5a,0x0f,0x92,0x2f,0x71,0xb5,0x0f,0x5d,0x7a,0x36,0x9a,0xb8,0xc6,0xe8,0x80,0x42,0x0c,},"\x5a\x8e\xe0\x79\x18\x6b\x51\xcf\x46\x29\x83\x4d\xe0\xc6\xbd\x73\x34\x85\x50\x39\xa7\x63\x1d\x68\x87\x65\x2a\x77\x28\x99\x59\x72\xe3\x62\xc1\xc4\x09\xf0\x84\xf5\xaa\xf2\x98\x6a\xe3\xf5\x36\xbe\x00\x70\xc4\xba\xf4\x59\xef\x60\xa0\x15\xef\x9d\x70\xdf\xa3\xea\x96\x71\x1c\xbb\x18\xe9\x2a\xf5\x0c\x52\x7d\x7e\xd4\x57\x87\x7a\x07\xab\x83\x72\x15\x18\xc8\x9f\x7a\x86\x41\x91\xb1\xe9\x74\x33\xb7\xc6\xcd\x63\x4a\x83\x2e\x19\x89\x1e\x76\xc6\x21\x22\xa4\x9d\xbf\xfd\x83\x49\x8a\xa4\x16\xac\xcc\xb7\x73\x7f\xe7\x5f\x4f\xb2\xc3\x53\x28\xe6\xf6\xec\xec\xaa\xa4\x2e\x43\xdb\xa5\xbc\x96\x89\x67\x3d\xab\x96\xf0\xbe\xfa\x3c\x83\xeb\x41\xd4\xd8\x87\xb3\xa1\x17\xd0\x55\xe3\x0b\xb8\x7f\xbe\x7c\x71\x94\x72\xf6\xc7\xa4\xcc\x45\xf6\x28\xf5\xfa\xdd\xc4\x8c\xa3\x44\xf7\x7b\x73\x3c\x0e\x3b\x9f\x50\x79\xdb\xd0\x7a\xf3\xa3\x84\x7a\xf1\x41\x71\x9c\xca\x2f\x6a\x76\x65\x52\xb4\x5d\x0f\xdc\xdb\x98\x68\xf2\xc7\x62\xb6\xd4\x93\x3b\xa1\x08\x36\xf9\x5b\xff\x71\xcb\x88\x04\x00\x24\xc9\x05\x34\xc4\xd7\xa9\x5a\x23\x03\xb0\x4c\x29\x61\x01\x2a\xf5\x8b\xc7\x84\xa9\x63\x27\xbb\xfe\xd0\x39\xd0\x80\x2a\x05\x26\x2d\x8e\x66\x3b\x78\x50\x8e\x92\x50\x8b\xc1\xf2\xea\x2b\x9b\xe7\x58\x0b\xde\x10\xa4\xd6\x63\xd0\xd2\x5b\x0e\x97\x3b\x8c\x5d\xed\x59\xde\xbf\x19\xbb\x04\x4a\xff\x1c\x60\xc7\x0e\xa1\xae\xfe\x85\xf6\xd1\x5c\x2c\x1b\x84\x75\x3b\x59\x57\x6a\x49\x47\x3d\x65\xaf\x3e\xd9\x41\xa3\xd5\x14\xb5\xc4\x52\x2c\x14\x1b\xdb\xee\xd9\xcb\x33\x96\x95\xb2\xe0\x2d\xc0\x70\x00\x86\x7f\x1b\xf8\xed\x8c\xfd\x3b\x1a\xfe\x68\x8f\xbc\xa8\x0e\x2f\x9b\xa5\xc0\xb1\x88\xa1\x9a\xda\xff\x66\x86\xca\x0f\xf0\xed\xd4\x44\x66\x12\x91\xfa\x27\xca\x1f\xc5\x29\x42\x9a\x5d\x8f\xf7\x9e\xd2\x02\x7c\x60\xff\xe3\xb2\xc0\x3f\xb8\xa6\x6a\x39\x85\x41\x7b\xa4\xac\xe7\xd1\x4f\xd0\xe2\x37\x1e\xdf\x5d\x71\xbc\x02\xb9\x05\x27\x67\xc7\xf7\x2c\x4e\x6f\x3f\x30\xe0\x63\x82\x76\xb9\xc4\x20\xaa\x43\x33\x09\x5d\x31\x31\x30\x33\x09\x05\x82\xe3\xac\x4d\x9f\xd3\x20\x31\x20\xba\x25\x14\x97\x3a\xb9\xd1\xc7\xfc\x42\x29\x01\x16\xb5\x1d\xae\x9f\xd5\x79\x41\x0a\xe0\x78\xed\x32\x0a\x5a\x1b\x49\xaa\x7b\x5f\xef\xcd\x75\x63\x95\x21\x3a\xf8\x64\x1e\x29\xb0\xeb\xb5\xb8\x3e\x37\x80\xe5\xd1\x0e\x9d\x3d\x11\x99\x81\x48\xf6\xc6\xf8\x6c\x4d\x4e\xb2\x52\xe2\x8c\x70\xfa\x3a\x55\xc4\x3d\x4d\x7f\xaa\xfc\xbc\xdd\x45\xad\x26\x37\xf2\x15\xe8\x15\x49\xeb\x8a\x4c\xde\x47\x15\xb7\x10\x72\x07\x50\x3a\x79\x59\x50\x60\xb8\x3a\xce\x8f\xeb\x67\x3b\x99\x79\x68\x46\x9d\xd9\xb4\xad\x6a\x7e\xa8\x1c\x6e\x61\x81\x00\x33\xf3\xed\xfc\x13\x7d\x97\x42\x09\x57\x5c"}, {{0x47,0xee,0xe2,0x02,0x4d,0xbe,0x09,0x95,0x3e,0x98,0x1f,0x69,0x86,0x52,0x0f,0x66,0x60,0x82,0xaa,0x9e,0xf4,0x89,0x2d,0xfd,0xfb,0xdb,0xd2,0x50,0xd2,0xa1,0xdf,0x28,},{0x9f,0x13,0xcd,0x8e,0xbf,0x50,0x80,0x34,0x79,0x75,0x15,0x9f,0x36,0x02,0x96,0xa7,0x16,0x40,0x14,0xd8,0xd0,0x69,0xe8,0x31,0xda,0xb0,0x33,0x26,0x07,0x99,0x7c,0xde,},{0x5d,0xef,0xae,0x0e,0x17,0x3e,0xcc,0x18,0xd5,0xf0,0x1e,0xc9,0x29,0x1b,0xe1,0x60,0xd5,0xea,0xbf,0xf6,0x3f,0xd5,0x42,0x3f,0x2b,0xc6,0x6e,0x3f,0x64,0x08,0xc1,0x96,0x35,0x35,0x02,0xdc,0xef,0x21,0xef,0xfa,0x4b,0x9c,0x14,0xbf,0x27,0xb6,0x87,0xd1,0xb6,0xe8,0x6b,0x2a,0x20,0x5a,0x89,0xeb,0x35,0xc3,0x76,0xa3,0xa3,0x25,0x69,0x0d,},"\xc1\x33\xf0\x33\xcf\x3b\xec\x6c\xd1\x92\x12\xea\x47\xdb\xec\xb1\x3f\x2c\x60\x18\xf9\xe0\x87\x8a\xc8\x84\xbf\xb5\x75\xc0\xf5\xd3\xfc\x5b\x49\x99\x58\x0e\xb8\xac\xbc\xaa\xc8\x3a\xe9\xac\x9b\x44\x3e\x6d\x1c\xff\x44\x9c\x36\x89\xb4\x33\xd5\x09\x00\xb2\xe8\xb7\x1d\x00\xe1\x19\xc8\xb8\x75\x09\x4b\xda\xb9\x16\xad\xaa\xb7\x5b\xcc\x85\x29\x59\xd8\xd7\x59\x79\x5b\xbd\x6b\x36\x0e\xe4\x84\xaf\xe4\x7b\x1a\xd2\x83\x91\xf2\x5a\xfb\x8d\x4e\x3a\xfe\x0c\x5b\x60\x04\x98\xa1\x28\x33\xfe\x2a\x1a\x54\x83\xdf\x94\x0b\x17\x3b\xa0\xd9\xd8\xc4\xd1\x32\x1f\xa4\xb7\x33\x33\x4b\x0f\x6d\x87\x8a\x0e\x5a\x76\xf4\xf1\x80\xac\x11\x9a\x82\x08\x2a\xcb\x14\x88\xe4\x9b\xbc\xa7\xa0\x36\x9c\x19\x1b\xd6\xd0\xc5\xd4\x45\x65\x68\x21\xa9\x9c\xcb\xc9\x45\x94\x9e\xca\x81\x36\xcc\x6e\x12\x7d\x9d\xe9\x2e\xf6\x4f\x17\x4a\x6c\x04\xc8\xb5\xe5\x24\x95\xf0\xdd\x67\x4b\xb5\xca\x12\x8a\x92\x09\x96\x8f\xd4\x50\xdc\xe3\x19\x91\x3f\xd6\xa3\x0c\x33\x82\x79\x81\x63\xe6\x58\x5f\x58\xef\x20\x8b\xe4\xd0\xc6\xa2\x51\x3a\x75\x23\x88\x39\x7a\x4a\xe4\x44\x83\x8c\x84\x66\xdb\xc3\x6f\xbc\x36\xae\x08\xbe\xc8\x8e\xed\xa1\x31\xc1\x4d\x06\x36\x6b\x67\x31\x51\x45\x41\x00\xde\xa1\x11\x81\x50\xfb\xe4\x41\xb1\xe7\x82\x6e\x54\x5d\x98\x68\x24\x2e\x89\x9f\x5e\xa5\x3e\x43\x4c\x37\x93\x6c\xe6\xfd\x06\x14\x62\x83\xe8\xfb\xd5\x36\x48\x0d\xe5\x5a\x16\x10\x2c\x44\x75\x4b\xc5\x54\xd5\xbc\x2d\xe2\xf2\x5e\x19\xe5\x67\xa0\x23\xdf\x46\x40\xe7\x4f\xf3\xa4\x9e\x4d\xd3\x0e\x0e\x25\x58\xb3\xdb\xc2\xaa\xb9\x2f\xdd\x5e\x79\x42\x5e\xcb\xc4\xc6\x99\xfe\x1f\x16\x19\x65\xf1\xd0\xb4\x5d\x8b\xda\xb5\x2e\xc9\xbf\x7a\x69\xd8\xaa\x0b\xd1\x71\xe7\x55\xce\x7b\x8d\x07\x18\xf7\x26\x7a\xfb\x73\x3e\xfc\xa5\x4b\x21\x3e\x6f\x5a\xda\xb4\xc9\xd7\x6c\x86\x7f\xcb\x69\xae\x05\xc7\x4b\xd2\x15\x16\xcf\x34\x2c\x61\x61\xf6\xfc\x9e\xcc\xac\xf9\x70\xeb\xce\x54\x0c\xd8\x92\xbc\x10\x6c\x6b\xd5\x63\x61\x02\x98\xb7\x09\x68\xf0\x91\xbc\xc6\xe1\xf7\xab\x4a\x5b\x2c\x63\x74\xa1\x90\x3f\x4d\x3a\xd5\xe1\xbd\x86\x43\xa9\xc2\xf8\x78\xc3\xd7\xa4\xdc\x49\xef\x31\x97\xed\xbc\xda\x7b\xb9\x1e\x7e\x06\x60\x60\x87\xd4\xe9\x81\xbf\xab\x93\xa6\x02\x49\x77\x96\x2e\x45\x26\x25\x17\xf3\x38\xb6\x85\x7e\xec\x21\x58\xa2\x97\xb2\xaa\x91\x52\x4b\x67\x7a\x21\xaa\xc5\x7b\xe0\xb6\x3a\x80\x74\xfe\x54\xe7\xa9\xdc\x70\xc5\xa5\xc3\xde\x72\x8b\x9c\x17\xec\x12\x12\xab\x11\x30\xeb\x17\x62\x2c\xd7\xb2\x2a\xb6\xeb\xa9\x18\x5e\x8d\x67\xbe\x6c\x47\xa2\xe5\xad\xc6\x63\xd4\x64\x2c\xc1\x20\x22\x2e\x29\x9f\xe1\x34\xfd\x7f\xcd\x00\xad\xab\xcf\xaa\x64\x2f\xe2\xe0\x8d\xd5\x2e\x2c\x3f\x32"}, {{0xb6,0xc8,0x8b,0x4c,0x90,0xfd,0x19,0xa1,0x49,0xd3,0x81,0x67,0x19,0x53,0xb9,0xb1,0x6d,0x42,0x8f,0x63,0x61,0xcf,0x50,0x3a,0x11,0x04,0x77,0xe2,0x97,0xf8,0xd2,0xf8,},{0x8e,0xbf,0xb0,0x84,0xf9,0x97,0xb2,0xea,0x79,0x32,0xa2,0x35,0x3b,0x2c,0x8b,0x16,0xbd,0x82,0x5e,0x1a,0xf5,0x87,0xa8,0xeb,0xc5,0x1a,0x6c,0x45,0xae,0xa3,0x43,0xae,},{0x74,0x47,0xa2,0x01,0x81,0xb0,0x2c,0xf1,0xb6,0xad,0x52,0x95,0x69,0xce,0x43,0x7c,0x2a,0x05,0x08,0x11,0x6f,0x50,0x20,0x5c,0x41,0xe6,0x37,0x8b,0x74,0xfe,0x2f,0xc5,0x36,0x30,0xaa,0x0d,0xc4,0xb8,0x0c,0x31,0xcb,0x26,0xc8,0xf0,0x9b,0xf8,0xfa,0xb2,0x7e,0x3a,0xbc,0x8f,0x1f,0x60,0x4a,0x5e,0xc0,0x66,0x31,0xa8,0x4f,0x6f,0x2e,0x06,},"\x7f\x4b\xf4\xf5\x21\x73\xef\xf0\x72\xf8\x18\xd0\xaa\x97\xe6\x93\x5d\x8b\xac\xcf\x48\x39\x66\x32\x53\xb2\x41\x4f\xe6\xb1\xf3\x4c\xf4\x3a\xb1\x20\x15\x5a\x1a\x3a\xea\x7b\x48\x19\xdd\xd1\x03\x16\x73\xb8\xa7\xa6\xbd\x0b\x9d\xda\x4a\xde\xfe\x69\x2a\x56\x16\x2c\x64\x61\x80\x79\x42\x64\xc5\x12\x21\x15\xeb\x90\xa6\xd3\x05\x4f\x08\x43\x02\xdc\xe3\xd8\x36\xac\x3d\xe8\x20\x63\x8b\xd8\x9a\x86\xbf\x0a\x4c\x01\x54\x7c\xfd\xc5\x43\xd6\x76\xfe\x16\x39\xef\x72\xc5\xb8\x45\xc4\x94\xe0\x78\x14\xce\xc8\xa4\x7d\x03\xdf\x73\xbe\x4e\x33\xc0\x5a\xfe\x9a\x19\x0d\xda\x04\x33\x60\x49\x6b\xe4\xcf\x3a\x63\x19\xda\x9a\xb0\x64\x81\x67\x7f\x1a\x43\x74\xd6\x0d\x3d\x3b\x63\x94\xf8\x84\x3c\x86\x9b\x0f\x41\xa1\xe8\x1c\x2b\x1a\x54\xbf\x5a\xac\xbd\x98\x20\x7c\x8d\xba\xcb\x36\x42\x2a\x3a\xa0\x13\xd5\xe8\x49\xe0\x44\xaf\x92\x85\x45\xc0\x46\x09\x7c\xaf\x14\x9d\x97\x02\x15\x11\x5d\xea\x0b\x5a\x85\x40\x1f\xf6\x72\xe0\x2e\xd4\x0b\xd0\xf5\xa4\x40\xcd\x56\x49\x40\x53\xc8\x96\xc3\xbd\x32\x60\x63\x49\xf7\xcb\xe7\xec\xe2\xa2\x23\x0c\xf2\x36\xda\xc5\x9f\x78\x17\x96\x5f\x3f\xa8\x0f\xb4\x8a\xa3\x0b\x0b\x19\xef\xa9\xa9\x65\x91\x64\x6b\xd2\x5e\x67\xc1\x85\xf7\x7e\x21\xd6\x63\x0b\x28\x8d\x4e\x55\x14\x6b\x2a\xbc\x15\xe9\x50\x88\xd9\x36\x08\x07\x75\x61\x81\x54\xbb\xdd\xa1\x15\x70\x2a\x2a\xfd\x6f\xd5\xf5\x6b\x92\x3e\x18\x88\x33\xec\x44\x89\x44\xd3\x02\x83\xe3\x37\x25\x42\x42\xc5\x81\x2d\x72\x45\xa4\xe9\x26\x70\xbc\xe3\x54\x6e\xfa\xed\x22\xd2\x74\xe1\xe6\x04\x8b\x5a\x0f\x01\xef\xbf\x89\x5d\xc4\x24\x94\xba\xf1\x74\x71\x85\xcb\x1a\x4b\x88\xfd\xf1\xe6\x09\x9b\xaa\xbc\x6a\x5a\xb5\xa2\x72\x7b\x1e\x24\x87\x89\xd1\x70\xca\xa2\x44\x96\x71\xa8\xf6\xe0\x94\xc1\x13\x32\xea\x0a\xc2\xaf\xe8\x81\x32\xc6\x44\xff\x88\x3d\x0c\x49\x9a\xd7\x6a\x93\xdf\x47\x2f\xa0\x13\xea\xa2\x7a\xb4\xda\xd6\x79\xd2\x51\x1b\x50\x49\xc4\xe9\x8b\xaa\x2e\x7b\x00\xa5\x34\x89\x1e\x29\x02\x65\xed\xb0\x76\xf7\xdc\xa8\xe6\xfe\xf3\xf4\x33\x03\x4a\x16\x57\x5f\x0e\x53\xda\x45\x77\xe6\xb1\x3f\x0c\xb0\xd7\x85\x87\x0d\x0d\x09\x8d\x5d\x80\xf4\x13\xa2\x68\xba\x84\xe0\x43\x1a\x78\x69\x23\x77\x13\x78\xcd\x57\xb8\x19\x22\x58\xe2\x63\x3c\xdb\xe0\x3c\xc3\x16\xa0\x95\x09\x70\x52\x6f\xd3\xe0\x93\x76\xbc\xef\x0d\x03\xb7\x07\x4e\x59\xa5\xa8\x4f\xc6\x4e\x79\x5a\x81\x21\x56\xd9\x60\x56\x76\x50\xbb\x1e\x14\x24\xb3\xcc\x9a\x4d\x99\xd5\x7b\xa8\x58\xdd\x1a\x0c\xad\x35\x32\xe9\x98\x14\x6e\x79\x26\x40\x45\xe2\x8e\xbb\xfd\x75\xa4\x26\xb0\xbb\x85\x1a\x24\x4a\xd6\xbe\x7b\xd5\x76\x5a\xf4\x93\xdf\xc4\x4e\xe3\x78\xcd\x04\xda\xf3\x91\x7e\xef\x2a\x62\x06"}, {{0x79,0x49,0xa9,0x47,0x2f,0x72,0x5c,0xe7,0xc6,0x8d,0x7e,0xa8,0xfc,0x16,0xe1,0x3d,0x9e,0x0e,0x0a,0x58,0xf5,0x8c,0x24,0xf9,0x22,0x8c,0x88,0xe8,0x02,0x64,0x09,0x0d,},{0xa3,0x70,0xf8,0x28,0x33,0xf8,0x8b,0x4f,0x5f,0x53,0x10,0xb9,0x18,0xe6,0xaf,0x93,0xbb,0x72,0x4b,0xfb,0xdf,0x3c,0x02,0xc5,0x03,0x78,0x0b,0x2c,0x83,0xab,0x6c,0xc6,},{0xe0,0x28,0x98,0xcc,0x7c,0x30,0xee,0x01,0x64,0x82,0x47,0x49,0x7b,0xe8,0xa9,0xc6,0x37,0x85,0x93,0xdc,0x88,0x20,0xbf,0x7c,0x17,0xff,0xcd,0x18,0x11,0x8a,0xf0,0x98,0x79,0xa7,0x69,0xf5,0x39,0xdd,0x92,0x37,0xe9,0x68,0x21,0x16,0x66,0x34,0x99,0x8f,0x94,0x6d,0xa6,0x5e,0x6d,0xba,0xd8,0x27,0x15,0x11,0x66,0x9e,0x2d,0x6c,0xad,0x02,},"\x95\x53\x86\xb9\x2d\xd6\xbf\x92\x60\x1b\xf8\x1e\x84\xd2\x51\x44\xb5\xfc\x0b\xcd\x7d\x23\xc7\x6e\x7d\xeb\x5f\x5b\xa6\x31\x6b\xb6\x1a\x5d\x8e\x74\x18\x5b\x01\x29\x67\xf0\xa4\x43\x8b\x53\x16\x96\xde\xb4\xb8\x10\x10\x89\xe0\xc0\x48\x2a\xdf\x13\xc0\x61\x31\x91\xb9\x77\xf7\x7b\x04\x19\x81\x41\x47\xf5\xda\x64\xa1\xd3\xbe\xb1\x27\x5b\x98\x49\xd1\x29\x7b\xa8\x53\x2a\xe0\xa6\x47\xa8\xac\xe3\x95\xae\x0e\xd0\x0f\x67\x34\x8c\x5e\xe5\xea\x19\xb5\xf1\xc5\xbd\x2e\x62\x28\x18\xe8\xad\xcb\xa3\xc1\x7c\x27\x98\x7e\x4e\x3d\x6d\x91\x0a\x56\xc7\xe5\x14\x9d\x3f\x55\x74\xfc\x06\x00\x9b\xf4\xdd\x3e\x37\xcf\xe3\xeb\xda\x2c\x21\x16\xd3\x66\xdd\x88\xce\x5e\xa7\x2a\xb3\x87\x49\x05\x85\x44\x3b\x08\x6e\x8a\xa3\x8d\x11\xd3\x82\x0b\x72\xc6\x58\xe4\x63\xcd\xb5\x9c\x53\x93\x01\x1d\x4a\x8f\x4c\xb6\xa1\x95\x22\x93\x04\xe7\x62\x39\xfa\x5e\x8c\x2c\xbe\x0f\x39\xdc\xad\x13\x8a\x0e\xcb\x3c\x51\x57\x9e\xc9\xa1\x20\xa5\x16\x07\xee\xfe\xbf\xa5\x9a\x44\x62\x0e\xa5\xb1\x91\x60\x87\xea\x33\x85\x33\xfc\x13\x2f\xf2\xe4\xa4\x3d\x05\x2f\xd0\x8b\x6b\x1b\x24\xfb\x67\x2f\x73\xc9\xb9\xba\x20\xb7\xc1\xc4\x1e\xa2\x4d\x91\x2d\xe9\xb5\x55\xb6\xe5\x68\x2b\x97\x06\x08\xff\x22\x9a\xd3\x08\x6f\x43\x1f\x9b\xe1\x90\xec\x39\x22\x4b\xa2\xed\x8a\xcb\x4c\x8e\xac\x85\x82\xe2\x3a\xaa\x79\x82\x7c\x44\xe2\x48\xc5\xba\x09\x2d\xda\xc0\xf2\xf7\x96\x84\xaa\x93\xfc\x06\x10\x73\xe1\x82\x1a\x56\xaf\xb9\xbf\xec\x95\x2d\xf2\x71\x9a\x9c\x7a\x40\x3e\x6a\x93\xf7\xa6\x56\xd7\x4b\x61\xc1\xd1\x90\x83\xf8\xd3\xf1\x9e\x65\x9f\xa2\xb7\x18\xe0\xbd\x04\xb6\x93\xd6\x3d\xaf\xb8\x6a\xdb\xee\x5d\x87\xc7\x5b\x7d\x12\x91\x22\xf1\x78\xa0\xe6\x69\xeb\x03\x5c\xa4\xd8\xeb\x45\x39\x7f\x18\x51\x26\x4e\x2c\xf0\xa0\xcd\xd3\x07\x20\xc5\xe1\x39\xcd\x6a\x57\x3f\x1f\xa2\x41\xca\xe9\x42\x58\x05\xac\x79\x60\x3e\x8d\xe3\x50\xef\xdb\x0b\x9b\xc9\x5b\xa7\xb0\x85\xc1\xed\x92\xc1\x2a\xcf\x53\xf5\xd4\xa1\x13\x75\x98\x00\x8f\x2a\x36\x72\xc8\x4e\x5f\x76\x9a\x25\xc7\xa4\xa1\x65\x79\xd8\x62\x88\x77\x49\x72\x60\x6e\x4e\x7d\x85\x26\x3a\xd2\x17\xe0\xdb\xcf\x34\x3f\xe5\x54\xc1\x09\xc5\xd9\x40\x9b\x79\x39\x07\x3a\xc5\x5a\x03\x42\x0f\xec\x28\x9b\x11\x4a\x5c\x54\xc2\x0b\x45\xea\x69\x93\x85\x33\xad\xe7\xb3\xae\x85\xe1\xa7\x83\xdd\x97\x89\x7c\x3a\xe8\x25\x41\x83\xcc\x54\x04\x5c\x2a\x18\xec\xbe\x52\x16\x91\xf2\x61\x9d\x9b\x8f\x1f\xb3\x47\xca\x05\x5a\x7b\x0b\x4c\x24\xf6\x4d\x17\x73\xe0\x14\x16\x44\x1e\xfe\x15\x99\x23\x21\x7a\x84\x87\x4b\x9c\x4e\xc2\x65\xcd\xaa\xb6\x43\x90\x80\x68\x49\x78\x12\xc1\xaf\x15\xc1\x88\x07\x1e\x78\xf5\x97\xfe\xdf\xce\x91\xc5\xd4\xc6"}, {{0xd6,0x8a,0x5e,0x3c,0x47,0xee,0xdb,0x30,0x99,0xdf,0xfc,0x80,0x4c,0xf1,0x9c,0x5e,0x74,0xbf,0x7b,0xf5,0xf0,0x1f,0x54,0xd4,0xd9,0x1d,0x75,0x74,0xf3,0xd3,0xdc,0x7c,},{0x46,0x46,0x7f,0xe9,0xce,0x3a,0xcf,0xd0,0xd7,0x43,0x46,0xbe,0x21,0xc4,0x62,0x16,0xdb,0x81,0xae,0xce,0x6c,0xe0,0x30,0x8f,0xb8,0xdc,0x63,0x86,0xfc,0x34,0x46,0xcf,},{0x89,0x6f,0xc3,0xca,0xba,0x7f,0xd3,0xfc,0x28,0x5d,0x5e,0xdd,0xdd,0xc0,0x12,0x0c,0xd4,0x6d,0xa7,0xc6,0xef,0xab,0xe6,0x6b,0x15,0x0b,0x00,0x27,0x60,0xb8,0x41,0x4a,0x89,0xac,0x9e,0x7f,0x1f,0x7b,0x7c,0x7b,0x33,0x59,0x8f,0x61,0xf4,0x57,0x18,0xe4,0xff,0x4a,0xc3,0x68,0xff,0x12,0x96,0x14,0xb4,0xfe,0x92,0x19,0xf2,0x37,0xb0,0x09,},"\x59\x6c\x03\xd0\x87\x3f\x57\x2f\x45\xc3\xb1\x6f\x0e\xf4\xb5\x2a\xd2\xbf\x59\xec\x76\xd3\xc0\xe5\x34\xd6\x2c\x1f\x84\x16\x4d\xda\xa4\x25\xfb\x85\xc9\x54\x84\x85\xb7\x06\x46\x77\xe9\x9d\x04\xc3\x9b\x6e\xba\x04\xc9\x66\x39\x7b\xa6\xa5\xf4\xeb\xaa\x69\xa2\x41\xdf\x95\xa6\xe4\x45\x02\x50\x9d\x63\x50\x55\x7e\xbf\xea\x60\x26\x4b\x62\xad\x7f\x74\xd1\x6e\x5d\x25\xd4\x59\x70\xcf\xeb\xeb\x33\xe7\xb1\xba\xc3\x34\x8d\xd0\x3a\x8e\x99\x13\x3b\x26\xbb\xfd\x7a\xa7\x22\xc2\x58\x7f\x72\xd5\x52\x6e\x98\x0d\xa9\xee\xbd\xf1\x08\x21\x1d\xae\x50\xbb\xe8\xc6\x5f\x9a\xbe\xe6\x9a\x1b\xbf\x84\xc0\x3e\x40\x44\x8b\xab\xad\x03\xd3\xcf\x3b\x7d\xe4\x88\x7d\x2b\x47\x73\x77\x02\x79\x64\x82\xd2\x26\x5c\x56\x6b\x0f\x62\x3b\x53\xc8\x67\x1b\xd3\x71\x9e\xde\xc0\xff\xd5\xf4\x9b\x49\xb0\x72\xc1\x56\x4a\x57\xf9\xba\xb6\xb9\x2d\x1f\x06\x8d\x75\x66\x39\xa4\x33\x14\x52\xe6\x1a\xa7\xb2\x18\xa8\x8b\x9d\xb7\x7a\x19\xfb\x82\xf1\x3e\x98\x68\xed\xb7\x98\xd5\xbe\xec\xa5\x5d\x1a\xb0\x95\xb3\x16\x22\x5f\x3f\x63\x90\xf8\x95\x78\xf0\x16\x04\x28\x74\x7b\xcd\x21\xbe\x6a\xe1\xd8\x69\x91\xb4\x8e\xf8\x0d\x56\x92\x50\x85\x8f\xeb\xf3\x27\x6b\xd5\xde\x3d\xb6\x5a\x24\x5c\x8b\xdc\xf1\x48\x8c\x48\x25\x96\x89\x45\x78\x6b\xed\x63\xf3\xd1\x3f\x14\x09\x36\x3b\x94\x85\x60\x47\x68\x58\xb3\x96\xbc\xe5\x88\xe4\x0b\x31\x1d\xdf\xc2\x2a\xd6\x22\xca\x7d\x1e\x69\x56\x14\x64\xdd\xa5\x00\x9e\x63\x8a\xa5\xec\x9f\x4c\x03\x92\x93\xaa\xec\x75\x00\x1f\xfc\x68\xa7\xcb\x3a\xe0\x18\x74\xdc\x7f\x39\xd7\x50\x27\xf5\x9a\x28\x96\x5f\xc1\x95\x30\xc0\x75\x2f\xe9\x9b\x15\x3d\xa7\xc0\xe5\x42\xbd\xa7\x6c\xa1\xe1\x0b\x7e\xa1\x58\xef\xb4\xd8\x21\xfb\xc6\x5e\x72\x71\xad\x99\x41\x09\x53\x15\x44\x7a\xbc\xad\x08\x80\xa0\x07\x5d\xd0\x4b\x13\x25\xc7\x26\x33\xac\xbc\xb2\x61\xfc\xb4\x07\xc2\x64\xa3\x4d\x70\xbf\x1f\x04\x4f\xee\xad\x06\x9a\xf5\xa8\x7d\xd3\x52\xf4\xbd\x81\x10\xfa\x17\x8a\xdb\xd8\xdb\xf2\x3c\x6b\x57\x5c\xdd\x5d\xf2\x2c\xc9\xa5\xcd\xd3\x7d\x9c\x8f\xaa\xb8\x1a\x4c\xb3\xfb\x5c\x4f\xe7\xff\x62\x9d\xba\xa9\xfc\x06\xb8\x0c\x1f\xb6\x91\xc2\x86\x55\x95\x5c\xfe\x5c\xa4\x41\x49\xb1\x50\xb3\xcf\x14\x0d\x9a\xca\xcb\x14\x31\x3a\x72\xc8\x40\x98\xde\x72\xba\xcc\x02\x72\xd7\x9e\xd6\x61\x7f\x72\xde\xc8\x8e\x19\xb8\x44\x25\x49\x2a\x42\x9e\xc6\xd2\xec\x08\xb8\x63\x46\xdf\xbf\x20\xea\x2a\x36\x19\xe7\x7b\x6a\xc6\x42\x30\xeb\xe2\x5f\xa0\x06\x7a\xbb\x5f\x33\xee\x49\xad\xc7\xc4\x4b\xda\x70\x46\xd7\xf2\x24\xf2\xe7\xa4\x89\x56\x83\xfc\xa8\x68\x4e\xd6\xa0\x31\x84\x4f\x57\x86\xbc\xda\x48\xb5\x04\x23\x94\x48\x7b\x52\x40\x2a\x09\x90\x77\x88\xa1\xe1\x40"}, {{0x31,0xe8,0x2b,0xc1,0xcc,0x5c,0xed,0x21,0xcd,0xc8,0xbf,0xc2,0xdb,0xbb,0x97,0x6b,0x08,0x78,0x0a,0xfc,0x69,0x44,0xaf,0x7e,0x88,0xe5,0x0e,0x67,0x87,0x4d,0x84,0xf1,},{0x8d,0xf9,0x77,0xe2,0xb0,0x40,0xac,0xeb,0xd3,0xda,0xfd,0x67,0xb8,0x7f,0x92,0x16,0xe8,0xc3,0x71,0xbe,0xce,0xd6,0x18,0xfe,0xf3,0xa4,0x96,0xd6,0x51,0xa5,0xd7,0xb5,},{0x24,0x07,0x02,0xac,0x6c,0x68,0xd5,0x97,0xd2,0x22,0xda,0x94,0x9d,0x0c,0x47,0xd1,0x6b,0x39,0x0a,0x47,0x7d,0x1f,0xb5,0x79,0xe9,0xd8,0x94,0x8a,0xdf,0x9b,0x3b,0x6a,0x7f,0xd4,0x45,0x8a,0xe6,0x38,0x5b,0x7e,0x2b,0x68,0x4a,0x05,0xb5,0x5c,0x63,0xfa,0x6c,0xd0,0x87,0xbb,0x90,0x11,0x3c,0xba,0xb8,0xe4,0xaf,0x14,0x2f,0xcf,0x81,0x0e,},"\x69\xd4\x61\xb6\xb7\xa8\x66\xe9\x4c\xd5\x9a\x5a\x23\xbb\xa4\xa1\x27\x66\x02\xf0\x42\xba\xa8\x50\xd5\xb2\x92\x49\xd6\x74\x3a\xda\x04\xd3\xd9\x38\x21\x9a\xbb\xc2\x2a\xda\x66\xa1\x77\x81\x97\xf7\x0b\xf8\x0b\x59\x7a\x8b\x4a\xe0\x0b\xdb\x87\x68\x12\xd3\xab\x4e\xc0\x11\xdf\x73\x34\x1c\x85\x05\x3e\xeb\xcc\x2d\xf0\xac\xfc\x21\x54\x82\x83\xb5\x53\xec\xde\x01\x54\x82\x8e\xd5\xaf\x47\x57\x19\x85\xf8\x97\x67\xb0\x05\xb6\x22\xc9\xe7\xc0\x79\xdd\xe6\x94\xe4\x9d\xc0\x55\x0c\x79\x18\xcc\x51\x5c\x27\x4d\xbd\x9c\x54\x69\xd2\xf1\x8e\xcd\x90\xde\x66\x4e\x03\xca\x41\xe5\x3b\xe2\x0b\x96\xe2\x5a\xf4\x0c\x54\xab\x0f\x7c\xbe\x9e\x05\xca\x3f\xa5\xa3\x7c\x1a\xa8\xeb\xfb\x64\x44\xa3\x2c\x49\x6e\xfc\x68\x15\x7c\x69\xf3\x58\xc1\x5f\x6a\xc0\x9d\x46\xef\xef\x9a\x68\x5d\xf7\xe8\xdd\x63\xb3\x04\xbd\x3c\x63\x8c\xcf\x53\x2f\xe9\x01\xf1\x1c\xf9\x7c\x5b\x1c\xbe\xd3\x3c\x70\x63\x7c\x72\x1b\x02\x89\xad\xf6\xbb\x6d\x87\xc3\x04\x79\xfa\x92\x6e\x04\x30\x74\x30\x2b\x76\xf1\x15\x7d\x0a\x81\xde\xc4\x93\xe8\x7a\x3c\x64\x3e\x7a\x20\xb7\xa4\x15\x25\xa3\x8d\xb0\x4e\x78\xda\xe5\xe7\x79\x70\x66\xbf\xae\x2c\xf4\x48\xa4\x47\xe9\x00\x4c\xce\x8e\x41\xf0\x98\x79\x91\xfa\xd3\x03\x11\xdd\xaa\x45\x9a\x26\x44\xf4\xb9\x41\xc0\x68\xc0\xd6\xc0\x77\x1a\xfc\xf4\x2b\xf9\x13\x9a\x68\x4d\xa2\x98\x48\x6e\xcf\x67\x52\x3b\xf8\x50\x9a\x45\xba\x5c\xb8\xb3\x86\x4a\xd2\x2c\x0c\x6a\x82\x8c\x6d\xb7\x2e\x37\x1d\xe4\x10\xb4\x7d\xac\x49\xae\x9d\x3b\x57\x02\xb1\x73\x9b\x8d\x76\x0c\xe9\x86\x11\xc0\x7d\x88\xdf\x5f\x04\x68\x38\x08\xa2\x1a\xfc\x2e\x61\x71\x3f\xc2\xc0\x25\xcb\x25\xfc\xc4\xee\x94\x18\x41\x08\x3b\x22\xf6\x1e\x26\x56\xfb\x3b\x8d\xad\x41\xc2\x62\xc8\x9d\x2f\x17\x61\x03\x09\xf2\xd5\xc2\x95\x89\xa2\xdf\x61\xe5\x51\x49\x89\x50\x32\xca\x98\x1e\x45\x57\xe1\x30\xa2\x37\xfc\x08\x26\xfc\x87\x25\x29\x86\x1b\xbb\x83\x28\xd6\x73\xf3\x9b\x58\xb7\x3d\x06\x0e\xc5\x96\xbf\x22\xe7\xee\x08\x1f\x44\xe9\x2c\x02\xa5\x67\x76\x79\x52\x0e\x2a\x2b\x4d\x22\xc7\x7f\x2b\x21\x2d\x5a\xaf\x05\x0b\xf2\xc1\x41\xe3\xe2\x8b\x85\x71\xd4\x32\x19\x37\x42\x62\x35\xc7\xa6\x46\xd6\x47\xe3\xef\xe1\x83\xc2\x7b\x74\x92\x56\x5e\xca\xcd\x7f\x43\xc6\x7a\x74\x45\x3f\x47\x80\xe8\x87\x11\xba\x2d\xd4\xa3\x94\x1b\x12\xdd\xd3\x90\x92\x70\xfb\x3d\xeb\xd4\x22\x43\x6a\xb6\x16\x6f\x08\xc9\x9c\x88\x6c\xc0\xe8\xe3\xce\xcd\x06\x42\xe4\x42\x85\xb8\x86\x4a\xa4\x16\x94\x3c\x5a\x18\x69\x74\xf4\x64\x53\x5a\x87\x0a\x01\x28\x61\xbc\x2e\x58\x71\x49\xca\xe9\x71\x62\x4e\x61\xc3\x1d\x8a\x50\x7e\x3a\xd8\x27\x73\xe7\x23\xbc\xb7\x5d\xf5\x4b\xef\x84\x7a\x40\x7b\xcb\x7b\x1d\x57"}, {{0xcc,0x56,0xbc,0x7c,0xdf,0xa6,0x11,0x92,0x4e,0x72,0xb0,0x7f,0x68,0xab,0xc6,0xca,0x5b,0x85,0xff,0x8b,0xba,0xcd,0xff,0x40,0x6e,0x51,0xba,0x72,0x0d,0x09,0xa8,0x66,},{0x5f,0xfe,0xe2,0x21,0xab,0x4d,0x0f,0xe6,0xf4,0xc9,0x34,0x6c,0x5e,0x5a,0x4b,0x8a,0x63,0x6a,0x6a,0x0b,0xad,0xce,0x96,0x67,0xbe,0x73,0x9f,0x4c,0x9e,0x67,0x33,0xc1,},{0x9b,0x86,0xa1,0x92,0xb6,0x4f,0x4f,0x04,0x4f,0xfb,0xf8,0x7b,0x41,0xc7,0xee,0x52,0xf7,0xa7,0x21,0xaa,0x32,0x0e,0x7b,0xad,0x64,0x25,0x99,0x59,0x90,0x31,0x5c,0xdd,0x50,0x2b,0xe4,0xe1,0x11,0x60,0x19,0xd1,0x31,0xa9,0x21,0x8d,0x19,0x61,0x4a,0xd9,0x55,0x43,0xb1,0x88,0x9a,0xf0,0xa9,0x7e,0xd4,0xd2,0x56,0xdc,0x33,0xd7,0x6e,0x08,},"\x08\x83\x04\xf2\x2e\x1a\x28\x60\x62\xde\xfb\xeb\xb1\x82\x7a\x64\xb7\x6a\x14\xe8\x70\x15\xe7\xf6\x46\x17\x87\x77\xab\xa7\x97\x04\x68\x8d\x7b\xf3\x2e\x1e\xfa\xc9\x7a\x9f\xc3\x39\x81\x0e\xbd\x3d\xf9\x3e\x4e\xa0\x24\x68\x69\x53\xed\x91\xfa\x6d\x2a\xb6\xe0\x7e\xc7\x81\x1a\x6d\x91\xca\x91\xb0\x98\xdb\x47\x25\xdf\x65\x84\x6a\x95\xb8\x08\x63\x5a\x8d\x0c\x5f\xe5\xac\xe2\x5f\x07\x80\xe8\x96\x17\x7b\xc1\xbb\xa1\xcd\xb4\x44\x92\x51\xc0\x1b\x48\x2f\x02\x38\x62\xf8\x8e\x07\x2e\x79\xcd\xe5\xdb\xd6\xc1\xd9\xad\x9c\x07\xc6\x06\xf5\xdf\x85\xa6\xec\xa2\x96\x6c\xbf\xe0\xa1\x67\x39\x68\x11\x2f\x26\xa3\x17\x05\x3f\x16\x7f\x61\x1a\xf2\x97\xef\xa8\x02\xe0\xa9\x4b\x3e\x1f\x33\xa2\x7b\x73\xe5\x59\x7a\xbb\x22\x41\x15\xeb\xe7\x5e\x29\x4a\x1b\xcd\xcd\x97\x92\x55\xb0\xa8\x02\x65\xc0\x89\xaa\xa7\xd6\xbe\xd2\xe3\xd0\xc9\x18\xf5\x6f\x4a\x55\xf4\x48\xd8\x63\x36\x5c\x6c\x58\x46\xfb\x9b\x2b\x9b\xb5\x5f\x6b\x7c\x6d\xff\x58\x47\xb7\x1b\xfd\xd4\xbb\x5b\x9b\xb2\xe4\x24\x9b\xc0\x24\x3a\x02\xab\x4d\x22\xba\x78\xa4\x3d\x18\x21\x95\xae\xd7\x8f\xec\xe8\x4c\xb1\xdd\xae\xb9\xef\xf6\x81\x56\x04\x5b\x29\x32\xe6\x38\xd7\x73\x1d\x0e\x8b\x4c\x9c\x8c\x38\x3b\x0d\x6d\x39\x2d\x21\xfc\x64\x07\x62\xc8\x7d\x36\x92\xb1\x81\x0b\xcc\x4a\x42\x39\x2f\xf1\x3d\x45\x16\x9e\xcb\xf0\x13\x50\x55\x09\x31\x05\x09\x8c\x86\x9b\x68\x88\x7e\x93\x4e\x2b\x9d\xa5\x23\x2a\xc6\xc9\x37\x38\x00\xf7\x0b\x64\xec\x64\xa4\xaa\x0c\xa0\x44\xc0\x77\x7c\xa3\xa3\xac\xaa\x13\x8c\x14\x24\x96\x72\xa5\x5b\x24\xdd\xfe\x4d\xc3\x57\x57\x32\x41\xe1\x4a\xd0\xac\x16\x47\x5a\x8e\x38\x67\x88\x6d\x41\xee\xa3\x5f\xe7\x93\x2b\xa9\xae\xaa\x0c\x86\xc9\xeb\x6d\xb7\x80\x80\x49\xad\xe7\xb5\xcc\x1a\x40\x82\x2c\x66\xde\xa9\x3a\xd2\x2d\x44\xb9\xe4\x29\x04\xb5\xb8\x36\x84\xae\x29\x31\xfe\x36\xc6\x08\xff\x70\x96\xf1\xb0\x9f\x81\x1b\x02\x67\x28\x04\x40\x6e\x08\xed\x9e\x77\x45\x67\x6c\xe0\x47\xf0\xf7\xf6\x47\x08\xe4\x9b\xb7\x87\x54\x72\x0b\x8a\xa2\x26\xf5\x55\x6a\xbf\x05\xb5\x65\x84\x64\x52\x92\xda\xd0\x8e\x24\x73\x63\x9a\x8c\xe5\x47\x5e\x0c\xe9\x19\x2f\x8b\xa2\xdd\x32\xce\x14\xc9\x19\x75\xab\x60\x2f\x7c\x13\x53\x8c\x52\x95\x2d\x03\x96\x15\x8c\x7c\xc6\xb9\x42\xbe\x7d\x92\x3e\xeb\x52\x3a\x73\xb5\xb4\x11\x96\x6d\x14\xac\x96\xe5\xb0\x96\xa5\x29\x32\xa4\x16\x29\x2e\xcc\xdd\xb9\x10\x71\xc8\x85\x60\xe7\x0e\xcd\x4f\xe2\xfe\x24\xd5\x23\xfa\xfc\xb9\x8e\x40\x21\x50\x2f\x41\x90\xa0\x51\x5e\xdc\xb2\x40\x19\xea\xca\x09\xec\x26\x15\xa9\xbf\xde\xb6\x0e\xb3\x54\xc8\x4a\x1f\x3c\xec\x7f\xfd\x7e\x65\xa5\x51\x5d\x47\x95\x9a\x4c\x4e\xc4\x8d\x80\x21\xb1\x75\x4a\xe2\xbf\x84"}, {{0x7a,0x57,0xf2,0xdd,0xa0,0xad,0x03,0x38,0xab,0x9a,0x13,0xc9,0xa3,0x49,0x7e,0x9c,0x75,0x23,0x8c,0x15,0x31,0x58,0x97,0x89,0x22,0x7c,0xd2,0x74,0x9b,0xc6,0xe9,0x50,},{0x6f,0x73,0x8d,0xc5,0xe7,0xd9,0xe2,0x40,0xc9,0xf4,0xd0,0xc0,0x6a,0x5e,0x02,0x17,0x47,0x56,0x8b,0x69,0xa7,0x5d,0x50,0x7a,0x2e,0x0b,0xe7,0xea,0x61,0x35,0x26,0xc5,},{0x98,0x91,0x23,0x76,0x1d,0x93,0x56,0x32,0x78,0xfd,0x0a,0x78,0xae,0xd6,0x4e,0x2d,0xe6,0xf4,0xa7,0x00,0xfc,0x9a,0x70,0xd2,0x18,0x77,0x48,0xac,0x06,0xd9,0xc2,0xc3,0x77,0xd1,0x99,0x5f,0x89,0xc7,0x72,0x7f,0xe2,0xf1,0x20,0x78,0x4e,0x41,0x71,0xc4,0x2d,0x63,0x53,0xac,0x3d,0x4e,0x3f,0x62,0x0c,0x63,0x9c,0x75,0x78,0x6c,0x46,0x0a,},"\x8c\x85\x75\xa1\x1d\x2f\xf2\xc2\x38\xe4\x19\xcc\xb0\x06\x33\xd0\x4e\x8b\x8b\xd7\x74\x29\x01\xd5\x88\xdd\x6a\x2f\x00\xaa\x12\xf0\x8a\xe4\x1d\xca\xa9\x33\x8f\x8c\x47\xe9\x53\x12\x19\x2c\xf6\xb2\x45\xa0\x0c\xe6\x88\xa0\x29\xda\x56\xdd\x1b\x1d\xeb\x0d\x34\xb5\x41\x4f\xe1\xc2\x1d\x6b\x63\xd0\x6b\x85\x34\xac\xe8\xe8\x66\xc9\x33\xfd\x7c\x5a\x65\xed\xa9\x5a\x17\x37\xa9\xec\xdb\x17\x85\x91\x49\xac\x69\x69\x51\xb8\x2c\x23\x0e\x82\x75\xe9\x6d\xd0\x2f\xd4\x55\xea\x67\x53\x79\xe6\x7b\xa6\x34\x84\xb6\x28\x38\x31\xfe\x3f\xfe\x52\xd6\xec\x49\xb7\x09\x10\x67\x05\xc9\xd1\x9b\x85\x9d\xe9\xfd\x20\x08\x87\xcb\x44\xd8\xfd\xfe\x69\x61\xfa\x4c\xa2\x34\x09\x44\xc7\x64\xc7\x04\x49\x12\x08\x25\x7e\x73\x54\x82\xaf\x8c\xb6\x90\x41\xdd\xe6\x85\x24\x1d\x3f\xbf\x46\xfd\xa0\x57\x24\x8b\x89\x87\xbe\x1f\x80\xb5\x4e\xb5\x40\x09\xf3\x24\xdc\x45\x0e\x88\x6e\x79\xf9\x12\x58\x5b\x91\xc9\xdf\xaf\xe9\x01\x22\x62\xc4\x71\x40\x3b\x1e\x8b\x5c\x31\xfc\x53\x75\xa1\xdd\xf9\x9b\x68\xed\xf9\xed\x70\xaf\x85\x94\xf7\xd8\x4b\x2c\xc4\x91\x1f\xe9\x05\x00\xc6\xee\xbf\xba\xc0\x85\x55\x35\x50\xe3\x5b\xd2\xe5\x25\x14\xe9\x79\xe7\x24\x1e\x9f\x8e\x34\xcd\xf8\x51\x3a\xbe\x72\x51\x0d\xff\x3c\xfe\xc7\xe2\xbc\x64\x88\x64\x1c\xfd\x0a\x65\xae\x0e\x09\xeb\xe9\x9b\x15\xb2\x9d\x45\xea\x67\xa5\x7a\xad\x55\x4d\x4f\x8b\xfc\xe1\x38\x6a\xce\x22\x88\x39\xe3\xa8\xa5\x34\x14\x0e\xec\x3d\x37\xd5\x1b\xe3\x61\xf5\xea\x18\x83\x73\x9f\x56\x61\x5f\x75\xb0\x55\xa0\x6a\x91\x47\x1b\xe9\x8b\xc9\x45\x37\x83\xc3\x58\x38\x2b\xd0\x55\x5a\xe9\xeb\x0b\xdc\xd6\x66\x29\xa6\x11\xfc\x1a\x11\xc6\x53\xc8\x22\x14\x58\x7d\xec\x12\xba\x12\x0e\x25\x13\x07\x0f\xe6\x9e\x98\x2f\x7a\x80\xad\x15\x9f\x6a\x32\x5d\x97\x7d\x01\xd0\x50\xd1\x16\xa6\x2a\x4f\x8a\xca\xb6\xc3\xd6\x9f\xf6\xc8\x78\x21\x3c\x60\xa9\x48\x45\xca\xe1\x06\xde\x6c\x5d\x6f\xe2\x50\x8d\x94\x56\x5b\x7b\xa7\x5d\x58\xd1\xad\x47\xd7\x6a\x20\xde\xfa\x75\x68\xcb\x7f\xd6\x6f\x57\xcf\x37\x74\xa2\x1d\x3f\xfa\x7d\x8a\xa6\xd8\x6d\xc2\x84\xb7\x0e\x0f\x17\xe7\x63\x0b\xfc\x10\xcd\x1f\xc9\xa8\xd9\xc5\x92\xd3\x9f\x24\xa7\xb5\xc8\xe8\xaf\xf3\x53\x57\x7e\x6a\xc9\x00\x86\x90\xc7\xa1\x59\xa7\xe8\x3b\xe5\xa6\xae\x8f\xca\x96\x44\xbd\xdf\xa3\x7a\x92\xb0\x70\x55\xf9\xfa\xc9\xfa\x97\xfb\x3e\x8f\x5f\x4d\x91\x7d\xda\x5c\x6d\xc6\xea\x34\xb6\x4d\x30\x24\x05\xbc\x38\x06\x2e\x07\xce\x93\xa1\xa8\x8a\xed\x5f\xba\xf9\x95\xa0\x9b\x45\xb2\x8a\xd4\xa6\xb2\x73\xde\xc1\x41\x3c\x54\x04\x52\x9d\x82\x5b\x5e\xdc\x2e\x27\xa3\x90\xeb\x7e\x8c\x2b\x43\x90\x5e\x11\x6d\x88\x7a\xb5\xfb\x99\x3d\xfe\x15\x0e\xbd\xcf\x81\x7a\xe6\x2e\x03"}, {{0x32,0xef,0x6d,0x78,0x9a,0x1e,0xa3,0x93,0xf1,0xbf,0x9f,0x11,0xde,0x34,0xf5,0x7d,0x65,0x3c,0x4e,0x77,0xd5,0x1e,0x60,0x50,0xfe,0xf4,0xe8,0xd7,0xbf,0x18,0x3d,0xb5,},{0xc1,0xaa,0x18,0x1e,0x62,0x0f,0x60,0x52,0x5c,0x2b,0x17,0xda,0x8d,0x29,0x0b,0xae,0x5d,0x33,0x9e,0x17,0xea,0xbc,0xea,0xb5,0x8c,0xd7,0x6a,0xe0,0x66,0xf4,0x11,0x79,},{0x88,0xf3,0xa6,0xe0,0xbb,0xaa,0x3e,0x06,0x0b,0xc9,0xd9,0x1f,0xe2,0x96,0x8c,0x61,0x12,0x6b,0x20,0x31,0x7f,0x59,0x84,0x2e,0x4a,0xe4,0x87,0x11,0xcd,0xba,0xf6,0x2c,0x6c,0x02,0x07,0x40,0x5d,0x1c,0x48,0x49,0x95,0x02,0x71,0xf0,0xaa,0xa7,0x59,0x30,0x91,0x10,0x9e,0x47,0x8d,0x13,0xf3,0x56,0x96,0x4f,0x7d,0xba,0xb7,0x29,0xaf,0x00,},"\x11\xa9\xc3\xc1\xba\x7c\xfb\x61\xad\x10\x33\x05\xc2\x58\x86\xde\x9f\x88\x15\xc6\xc2\x1f\x17\xa8\x73\x3a\x02\x4f\x94\x97\xda\x05\x40\xdb\x36\x03\xa6\x71\xaa\xe8\x37\xdb\xbb\xa1\x9e\x19\xf8\x2d\xdf\xc8\xaf\x85\x59\x80\xa7\x01\x25\xfc\x61\xcd\x7f\xfd\x10\x77\x7e\x36\x6e\x5e\x95\x69\x92\x7a\xf0\xf2\x45\xd4\xf3\x9b\x3f\xd0\xf4\x58\x79\xc2\x53\x40\x14\x12\x85\x5e\x57\x61\x90\x5e\xd6\xef\x31\x8b\x6a\x06\xea\x6e\x9f\x90\x6f\x9b\xd0\x16\xbc\xb6\x94\xa0\xdf\x65\xa0\x16\xbd\xfe\x84\x5a\x09\xf2\x3e\x50\x86\xc5\xaa\xf3\x75\xef\xeb\x86\xda\x51\x23\x9d\xdc\x35\x0b\xac\x0c\xdb\x03\xb8\x74\xdb\x15\x07\xe6\xad\x4e\x2c\x9f\x46\x02\x8c\xa2\x38\x83\x63\x54\x14\x93\xb6\xcb\x92\xc1\xdf\xca\xa3\xef\xd6\x8c\x6b\x4e\x91\xef\xb4\x67\x51\xd2\x3f\x4c\x48\xa9\x73\xf0\xa5\xc7\xc6\xfe\x2a\x12\x69\xd2\xa6\x9e\x9f\xc4\xab\x8b\xa3\xb9\x2f\x79\x64\x49\xba\x3d\xc7\x02\x45\xed\x50\x5c\xc0\xee\xee\x16\x36\x64\x7a\x68\xc7\x67\x9d\x0b\x6d\x65\x1b\xba\x35\xc2\x9b\x81\x47\x8d\x17\xca\x36\x85\x70\x7a\xd6\x16\xe6\xe5\x60\x43\x81\xf8\x4e\xe5\x2b\x25\xad\x02\xfc\x0d\xfb\x85\x43\x2e\xfb\x1f\xec\xd0\x90\xc0\x2a\xd0\x02\xc1\x85\x7f\xce\xd8\x8f\xdf\xb2\xff\x26\xdd\x0f\x50\x18\xfb\x47\xd8\x13\x58\x1f\x65\x08\xca\x63\x7c\x73\x65\x17\x7c\x51\x3d\x1e\xe0\x58\x79\xa6\x5c\x5b\x67\x6b\x3a\xa8\x73\xa1\x93\x5c\x54\x37\xea\xdc\xb6\x6d\xfb\x05\x2a\x5e\x7c\x3e\x81\xd4\x4b\x3d\xaf\x69\x8f\x42\x24\x4e\xe2\xee\x4b\x6e\xd2\xb7\xe6\xe5\x6e\x61\xff\x9c\xb4\x5e\x71\x9f\xd7\x46\x19\x8b\xf2\xa7\xde\x6d\x25\xaf\x3b\xc6\xc7\xb0\xed\x8a\xbe\x3c\xb3\x89\xaf\xd8\x4f\xfa\x2a\x23\x0d\x93\xbc\x0c\x29\xd5\xa9\x41\x9c\xbf\xf1\x1b\x78\x83\x32\x99\x21\x48\x0b\x58\x44\x65\x5d\x99\x6c\x7c\xab\x29\xdf\xb2\xa3\x92\x7b\x82\xba\x7c\x30\x6c\x45\x77\xb6\xf8\xb5\xdb\xe2\xaf\xaf\x9b\xf1\x4a\x8f\x95\x54\xcd\x01\xa6\x9a\x99\x1b\xf2\x12\x82\x8d\xe1\xe6\x31\x72\xe8\x33\xde\x06\x69\x8c\xdb\x3b\x28\x71\x63\x80\x31\x45\x72\xbf\x5b\xcf\xd3\x4e\xf5\x2a\x6f\xad\xda\x87\xba\xbe\x6b\xac\xdb\x20\xce\x63\xc7\x25\xcb\x0f\xf6\x1f\xe3\x0c\x1b\x51\xdb\xda\x2c\x26\x25\xf9\x9d\xfe\xb0\x29\xa3\xe5\x8c\xba\x7d\x01\x90\x51\x11\xca\xf4\x2f\x27\x02\x5e\x72\x0e\x18\xee\xb0\x7d\xae\x91\x55\xc5\x5a\xa3\x00\xe2\x2e\xb5\xe9\x4d\xc7\xa0\xa8\x4e\xe6\x7d\x91\xa9\x60\xae\x08\xca\x63\x2d\xbb\x17\x37\xfc\x9a\x43\xdb\xcf\xb3\xa8\x79\xeb\x9f\xbf\xfd\x72\x99\x33\x8e\x26\x4b\xc1\x23\x7a\xb6\xa5\xbc\x2a\x26\x3c\xfa\x99\xe8\x54\x44\x39\xd9\x63\x31\x63\x9f\xe9\x40\x8e\x54\xa3\x50\x61\x0f\xf0\x1d\xe3\xf8\x57\x99\xad\xeb\x73\xd8\x2b\xe9\x38\x07\x4d\xea\x85\x8e\xa6\x36\xb6\x3a\xbd"}, {{0x0a,0x55,0x25,0xa4,0x59,0x8f,0x60,0x99,0x2f,0x86,0xba,0x1a,0xb9,0xee,0xe6,0xe2,0x67,0x56,0x22,0xf9,0x43,0x28,0x4f,0xc0,0x55,0x3e,0x44,0x46,0xac,0x5a,0x4c,0x53,},{0xdb,0x60,0xd7,0xea,0x29,0xf8,0xd6,0x0d,0xad,0x33,0xd0,0x2e,0xc5,0xf4,0x22,0x32,0x05,0x7b,0xd1,0xc4,0xbd,0x61,0x80,0xa2,0x42,0xcb,0x7a,0xb6,0xf4,0x42,0x67,0x81,},{0x8f,0xa6,0xb0,0xae,0xac,0x71,0x13,0x2a,0xd8,0x82,0x97,0x58,0x68,0xf1,0xbd,0xb8,0xc1,0x1f,0x1a,0x6c,0x1b,0x9c,0x54,0x59,0x4e,0x0e,0x46,0x28,0x6e,0xa6,0xc9,0xa5,0xd6,0xd5,0xb0,0xea,0xea,0xca,0x9a,0xe3,0xaf,0x74,0xe7,0x23,0x26,0xb3,0xb6,0xf2,0xea,0xa8,0x93,0xc0,0xec,0x42,0xa4,0x9c,0x56,0xef,0x51,0x4f,0x75,0xc7,0x7f,0x01,},"\xf7\x87\x32\x1b\x42\xc0\x8d\x40\x52\x44\x9a\x48\x85\x93\xd8\x85\xb4\xe0\xc3\x4a\x5d\x64\x14\x9f\xa8\xb9\xc8\x5e\xe5\x4b\xcb\xec\xb5\x09\x09\xb2\xa8\x6b\x88\x25\x8a\x10\xe0\x7e\x8f\x8c\x2d\x06\x8a\x89\xfb\x16\x5a\x6a\xce\x7e\x64\x99\x8b\xa5\x7d\x89\xd9\xbf\x2b\x8b\x38\xa1\xf6\xd8\x36\x4a\xee\x05\xce\x33\x48\xbe\xd4\x8b\x88\xc2\x47\x3b\xf5\xf2\x66\x5f\x51\xca\x07\x3a\x53\x05\x35\x8e\xaa\xd4\x36\x5d\x58\xb8\x3b\xc9\x81\x4e\x25\xf5\x4c\x37\xcd\x9b\x68\xa8\x08\xa5\x7d\x6c\x2d\x7d\x7b\x6d\xeb\x5f\xe2\x0f\x4f\x96\xfe\x72\x5f\x8d\xe6\x5c\x29\xa4\xf1\xcc\xef\xd7\xc2\xc6\xf2\xfc\x01\x16\xd5\x86\x76\xac\xbc\x58\x69\x1c\x79\xc2\xb0\x06\x78\x5a\x09\x75\xa3\x1d\x8d\x3c\x94\x91\x61\x59\x6a\x06\x8a\xaf\x22\x26\xab\x84\x25\x50\xe9\xc0\xb2\x61\x0a\x29\x53\x1d\x1f\x3f\x7f\x00\x82\x6b\xb6\xc7\xdb\xe0\x4e\x28\xae\x1b\x9f\xf6\xf8\x88\xa4\x9d\x82\x81\x2f\x45\x2e\x1b\x32\x74\x0b\x23\x4d\xdd\x96\x42\xe1\x8f\x32\xad\x9a\x9a\xf7\xf8\x95\x25\x28\x67\x4a\x2c\xda\x25\xb4\xf7\xba\x86\x70\x07\xff\xa7\xf7\x8f\x16\x3d\xb8\xf3\x69\x14\x95\x6b\xfa\xec\xd5\x0f\x6d\x1a\xf4\xee\x13\x32\x75\xa8\xea\xab\x94\xbb\xc0\xae\x52\xb6\xd9\xb2\x83\x26\x34\x23\x2e\xc0\xe8\xb5\xf8\x02\x2d\x3e\xf1\xea\xd9\xb7\x9e\xf9\xa1\x65\x64\x27\x71\x94\xf2\x38\x0d\x90\x21\xe1\xf1\x7b\x18\x4b\x8d\x3a\x7a\x34\xd1\x51\x39\xa3\x9c\x77\x28\xc2\x2e\x1a\x3a\x67\xa2\x7a\x6c\xa4\xb8\xa8\xa0\x63\x6c\x60\x54\xd0\xf7\x41\xf0\x46\x67\x36\x19\xfc\x6b\x07\x0e\x62\xff\x48\x62\xf5\x9d\x26\x90\x07\xf3\x43\x13\x39\x63\x7a\x89\xf5\x64\xc0\xdb\x3d\x9b\xcf\xcd\x19\xfc\x25\x13\x8a\xc6\x6d\x47\x4d\x80\xf4\xad\x79\xf6\xd1\xe7\x84\x44\x08\xe8\x80\x34\xee\xaf\xf4\xa7\x90\x33\x8d\x54\x6b\xfc\xd7\x42\x4c\x11\x9e\x21\x1f\x36\x3c\xb8\x9c\x88\x87\x49\x34\x6a\x89\xd3\x2f\x02\x3b\xb6\xb0\x36\x6a\x1e\xde\x43\x25\x03\x2a\xa3\x5f\x52\xe9\xdf\x93\x8a\x50\x27\xeb\xee\x96\x88\xae\x48\x0d\xde\x1a\x9c\x9b\x42\xd1\xa9\xc0\x8f\x71\x92\x23\xdf\xae\x1c\xfc\xd4\x9d\xd1\x05\x3a\xaa\x38\x1c\x24\xcc\x9c\x7a\xbf\xcf\x8f\x6d\x86\xd6\xaf\x72\xee\xf0\x53\x04\x41\x2f\x3d\xb2\x58\x5a\xa9\xe0\xf3\xa4\xf1\xb6\xd7\x10\xd0\x2a\xb1\x1d\xb1\xfc\x90\xad\x4d\xe2\x5d\x04\x29\x9f\x31\x29\xc2\x12\xe9\xcb\x73\xc0\x04\x79\x53\x45\x5b\xf9\x8e\xc8\xfd\x26\x74\xe4\x7b\x94\x99\x57\xde\xed\xa0\x18\xba\xdc\x9f\x2f\x68\xa1\xb1\x8e\xf5\xc5\x83\xb0\x95\xe0\x8d\xd9\x06\xda\x5f\x22\x0d\xa0\x29\xb9\xc4\x00\xe3\xca\x91\xc7\xcb\xd8\x7f\x34\x30\xc7\x42\x33\x7f\x61\xcf\x54\x74\x5b\x06\x22\xbc\xb9\x07\x62\xc6\xba\xfe\xf8\x7e\x1e\xc8\x88\xc3\x64\xfa\xd6\x46\xc3\x3a\xcc\x22\xaf\x54\x38\xb8\x4c\xd5"}, {{0x2d,0x5d,0xdf,0xfa,0x2e,0x58,0xc9,0x04,0x51,0xea,0x05,0xde,0x47,0xb8,0xc4,0x92,0x34,0xe2,0x6c,0xed,0x54,0x85,0x4e,0x3a,0xce,0xf1,0x1d,0x8e,0xe6,0x85,0x2d,0xa7,},{0x7b,0xfd,0x1c,0x8a,0x4a,0x0b,0xbb,0x46,0x06,0xd2,0xe5,0xbc,0x09,0x0f,0x56,0xb2,0x0d,0x58,0xf2,0x20,0x4b,0x6a,0xed,0x83,0x1d,0x3d,0xf4,0xd4,0x06,0xb4,0x76,0x05,},{0xce,0xd9,0xd6,0x10,0x10,0x33,0x9c,0x47,0x1d,0xdf,0x9f,0xef,0xca,0xa8,0x2d,0x1e,0xab,0x3a,0x2e,0x0e,0x60,0x27,0x85,0x53,0xb4,0xdd,0x9f,0x39,0x5b,0xe5,0x81,0x49,0xc9,0x15,0x94,0xe5,0x61,0x8b,0x0b,0x10,0xbf,0x3a,0xab,0x94,0xf1,0x59,0xb5,0x30,0xf6,0x44,0x63,0xee,0xd6,0x6f,0xa2,0xac,0xe5,0x4f,0xd9,0x25,0x72,0xa0,0x6a,0x0e,},"\x4f\x1c\x5b\x4e\x6f\xac\x3b\xaa\x3e\x90\x10\xf3\xbf\x29\x3c\x77\x9e\x61\xfd\x7b\xbe\x05\xa5\x86\xf5\xaa\xf0\x80\x26\x37\x16\x27\xa2\x09\xac\xd1\x88\xaf\xb2\xdb\xe0\x31\x15\x47\x94\x05\x59\x71\x16\x40\xf7\x8a\xea\x9a\x62\x81\x89\x62\xf4\x45\xa8\xe7\xed\x6f\xe6\xc5\xf4\x91\x62\xe7\x43\x5d\x1b\x62\x5b\x88\xba\x39\xda\xb0\xad\x56\xfd\x2c\x0a\xd6\x51\x26\x61\x36\x2b\xf7\x8a\xfe\x5a\x14\x16\xb6\x47\xf3\xb8\x8a\x05\x6c\x9e\x72\x89\xc9\xb0\xcc\x3a\xfb\x43\x40\x21\x98\x56\x34\x93\xe7\x37\xb1\xda\x05\x25\x06\xb6\xc9\x30\x6d\x75\xad\x66\x93\xdb\x6d\x15\x71\xf9\x6f\x6f\x52\x99\x0c\x4d\xf1\x96\x65\xa6\xbb\x63\x07\x3f\xdd\x9f\x55\x59\x68\x96\xa2\xe9\xc2\x62\x2f\x2b\x0c\x2c\xc9\x9d\xdd\x1b\x64\x9f\xb0\x31\x80\x58\xd7\x47\x94\xe3\x8e\xc6\x57\xeb\xc8\x2a\xbd\x5b\xed\xf8\xb3\xf4\xbb\xa3\xbb\x6c\x99\x35\xfd\xf6\x82\x65\x02\xb7\x69\x04\x6b\x36\xd9\x6d\xc6\x95\xd7\xc8\x54\x04\x28\x4d\x2a\x2a\xb7\xfc\xf3\xb0\x2f\x68\xa1\x49\x3d\xd3\x83\xca\x63\x39\xfa\xc1\xcd\xe4\x7f\x53\xc5\xe0\x26\xd0\x86\x9f\xaf\xfe\x40\xab\xdb\x98\x19\x52\x30\xf1\x7d\x0c\xfa\xa5\x33\x31\x5a\xfd\xbf\xe7\xd1\xaf\xc3\xa6\x15\xb4\xf7\x50\x90\x23\x3a\x50\x3f\x88\x61\xe3\x23\x74\xe1\xea\x95\x57\x67\x42\x31\xd9\xd7\x37\xd4\x77\xb3\x3f\xf8\x2a\xc0\xb2\xc0\xba\x93\xc1\x1f\xb5\x23\xe6\x13\x61\x8e\xd3\x70\x52\x4a\x60\xf4\xd4\xc8\x36\x94\xc0\x33\x60\x6d\x1d\x06\x9d\x54\x4d\xcc\xd3\x90\x0c\x37\xa3\xb3\x36\x3e\xfb\xcf\x66\x97\xf9\xf7\x62\xb3\x3b\x12\x94\x58\x39\x53\xfc\x53\x77\x3e\xf5\x67\x26\xee\xb4\x70\xeb\xe9\x21\x49\xb7\x36\x48\xa1\x61\x61\xd4\x94\x12\x0a\x31\x8b\xfb\x08\x0c\xc3\x8e\x49\x96\xf4\xb2\x63\xff\xe7\x8c\x78\x77\xfe\x13\xc2\xfc\x55\x21\x9f\x44\x26\x0e\x8f\x25\x3b\xdd\x37\x9d\x87\x0e\x6c\x91\x04\x8b\x1d\x8d\x4e\x88\xb8\x82\x18\xb2\xb0\x49\xfe\xf5\x3b\x2a\xe1\xf8\xc9\x21\xed\x2b\xcb\x43\x46\x69\xe3\x97\x5d\xcc\x3f\xe4\x52\x0c\xa8\x02\x48\x42\xf7\xff\x2b\xa1\xe2\x2c\xfe\xb5\xd4\xc9\xe4\x35\xea\xda\x60\x1f\xf1\x83\xb2\x63\x64\xee\xe1\xfa\xa5\x9d\x19\xe6\xaa\x4f\x09\x75\x23\x84\x96\xa7\x09\xe4\x6b\xf6\x83\x36\xb0\x68\xbd\x80\xb3\x46\xf1\x1f\xaa\x38\x17\xa0\x7d\x1c\xbd\x84\x38\x2b\x21\x02\x98\x6f\x29\x5a\x13\x98\x07\x7b\xa2\x91\xd6\xb5\xf5\xbd\x86\x0e\xc6\x17\x72\x73\x46\x8f\x0e\xe0\xf2\x59\x1b\x57\x5c\x43\x66\xe1\x89\xb2\x24\xe9\xff\xa3\x5b\xc7\x8a\x4a\xa8\xc0\x69\x54\xfe\x33\xd0\x80\xff\xc0\xb2\x3e\x20\x9f\xd0\xe7\x94\x21\xf1\xbd\xe8\x18\xa8\x68\x90\xcf\x17\x22\x36\xdb\x21\x16\x57\xd1\x00\x31\x19\xfe\x91\xd4\xe2\x7c\x52\x4c\xcc\x11\xfa\xde\x0a\x25\xf5\x7a\x7a\x1d\x67\x7e\x1d\xa0\xb9\xc0\x43\xd0\x2f\xca\x38"}, {{0x4d,0xf5,0xe1,0x1d,0xec,0x80,0xec,0xd8,0x82,0x83,0x75,0x54,0xfa,0x31,0x35,0xb9,0xd5,0x02,0x9d,0xf4,0x20,0x27,0xaa,0x3b,0x3c,0x92,0x92,0x46,0x32,0x9f,0xee,0x96,},{0xef,0xd9,0x28,0x89,0x8f,0xa1,0x44,0xc2,0xd1,0xc8,0x33,0x4f,0xa2,0xe6,0xb5,0xb6,0xa3,0x25,0xa7,0x10,0x2a,0x2c,0x34,0x4a,0x14,0x55,0x41,0xee,0x9a,0x6c,0x04,0x6d,},{0x62,0x54,0x5e,0x6c,0x07,0x80,0x1f,0xde,0x95,0xb4,0x61,0xe2,0xe7,0x53,0xc4,0xb6,0xc8,0x4c,0x25,0x12,0x4e,0xb3,0x30,0xa2,0x72,0x59,0x89,0xd5,0xe3,0x40,0xdc,0xef,0x0c,0x74,0x56,0xd4,0xc7,0xc6,0xa1,0x78,0xa2,0x21,0xb6,0x32,0x83,0x48,0x25,0x3d,0xb7,0x87,0xa9,0xe5,0x51,0x0a,0xb9,0xcc,0x27,0x85,0x15,0xae,0x3e,0x58,0xfb,0x01,},"\xfb\xd6\xf3\x71\xb4\xc8\xb1\x52\xc9\xce\x0c\x63\x96\xa7\x7c\x0f\xe4\x80\xbc\x02\x00\x7f\x33\x6a\xc5\x8f\xd4\xad\xdd\xa9\xd6\x98\x55\xac\x9e\x93\xa4\x5d\x3e\x35\x0f\x41\xff\x50\x2a\xa1\xd8\xfe\x15\x9c\xe8\x9b\x06\x48\x02\xa0\xa1\x89\x0f\x6a\x40\xa7\xef\x57\xc6\xe5\xe5\xed\x04\x02\x80\xdf\x07\xe7\xf4\x8f\xe8\x19\xbe\x63\x17\x67\x10\x75\x7c\xb6\xe4\x40\xb4\xf7\x8b\x57\x59\xdc\xe0\x28\xbf\x58\x5b\x3c\x3f\xec\xa1\xcf\x59\x81\xda\xda\xdf\xd2\x7e\xa1\x24\xaf\x45\xef\x63\x85\x42\xa8\x61\x7f\xf4\x9f\x94\x70\xac\x22\x85\x94\x3c\x7c\x3b\x11\x63\xb9\x03\x95\x5a\xb9\x9b\x6e\xab\x17\xf4\xd4\x9f\xfa\x87\x20\x7a\xbb\xfc\x11\x1c\x4b\x91\xf5\x41\x3d\xfc\x9b\xea\x31\x84\x3d\x11\x5d\xde\xb1\xda\x40\xb4\x5f\x58\xf4\x7c\x41\x7b\x5e\x77\xd5\x81\x89\x34\xe7\x30\xeb\xa9\xc4\x55\x7b\xbf\x48\xcb\x7f\xd4\xe6\x64\x55\x8a\xf4\xfb\x44\xee\x3d\x94\xc1\x6e\x88\x36\x31\xf3\x84\x76\xf4\x83\x7d\xb9\x4d\x54\x12\x2f\xa1\x34\xca\x51\xa5\x25\xaa\xd5\xe2\x4b\x76\x01\x8f\xee\x9a\x2e\x8f\x60\xe2\xbb\x48\xd2\x4a\xb8\xb1\x46\xf8\x4f\xfa\x98\x20\x12\x0e\x7c\x50\xd4\x5c\x0c\xfb\xe3\x5c\x8c\x31\x41\x9b\x07\x8e\x90\x71\x2c\xfe\x93\x4c\x3b\xe3\xa9\x4f\xf2\x15\x88\x73\xae\xfe\x34\xdc\x6e\x36\x90\x2b\x16\x75\xe1\xa4\x7c\xb6\x08\xdf\xe9\x60\xfb\x4d\xa8\xd2\xa8\x49\x0c\xc3\x8e\xba\xdc\x73\xa1\x00\x3c\x49\x41\xfd\xa8\xfa\xe9\x44\xa1\xde\x8e\x3b\x10\xef\x6d\x9e\x67\xce\xec\x74\x59\x77\xd3\x33\xac\x9e\x71\x21\x41\x21\xed\xe8\x89\x22\x95\xe2\x77\x99\xf2\x06\x67\x5a\x9d\x54\xac\x12\x15\x9d\x3a\x1f\x95\x4f\xd0\xee\xff\xbd\x30\xa3\x19\x04\xfb\x2e\xee\x77\xa8\xaa\x9d\xc4\xcc\xbb\xe2\x85\x10\x96\x14\x6a\x4c\xe0\xe8\x1f\xb9\xc6\x24\x98\xdb\xd8\x3b\xf8\x3b\x55\x02\x9a\x5e\x90\x00\x86\xb9\x53\x1c\xe3\x24\x7a\x98\xf8\x65\x4e\xfd\x8f\xe7\xa8\x36\x43\x1f\x75\xda\xf0\x86\x8f\x01\x08\x32\x6e\x23\x02\x6d\x2d\xb4\xa7\x21\x24\xec\x4e\x39\xd4\xbb\xf3\xd8\x46\xc9\xf5\x1c\xa3\xcc\x31\xeb\x1d\x02\xc2\xba\x32\x1e\x46\x19\xf2\xb6\x59\xc0\xbf\x0f\xe5\xc1\x9b\x21\x3f\x3c\x79\x12\x4f\x36\x43\xf7\x4d\xd0\xff\x9c\xe5\xd2\x77\x27\xbe\x6c\x69\x58\x15\x9c\x16\x44\x04\xf4\x33\x01\xfe\x17\x42\xe2\x79\xde\x9e\xfd\x44\x1e\x73\xe4\xea\x7a\x84\x25\x87\xa7\x9d\x11\x5d\x36\xec\xa9\xc0\x3c\x90\xff\x0d\x14\x74\x74\x10\x9f\xc2\x0a\x91\xd7\xb3\xcc\x22\xeb\xcb\xb8\xc7\xf7\x1b\xd6\x1e\x8c\xae\x47\xc5\x05\x0c\xec\x1d\x48\x49\xa1\xd4\xa8\xe7\xa6\xf8\x45\x54\x84\x37\x70\x6c\x25\x33\x1c\x9e\x57\xc2\xcc\x6d\xa1\x17\xf2\xe5\xa0\xf4\xb3\x68\xc4\xcb\x20\x62\x65\xc4\x17\x8e\x06\x55\xff\x67\x5f\xfc\x1d\x4c\x58\xec\xeb\x9e\xdb\x4d\xa3\xad\x2c\x5f\x62\xcd\x13\xab\x48"}, {{0x85,0xd3,0x23,0x30,0xe2,0xe0,0x73,0xa4,0x60,0x30,0xca,0x0e,0xe2,0xdf,0x2f,0x8e,0xb8,0x74,0xa9,0xfd,0xdf,0x56,0x24,0xc8,0x03,0x17,0x75,0x11,0x1f,0x11,0xee,0xa2,},{0x6e,0xa7,0xde,0x2e,0xd5,0xea,0x5c,0xdf,0x50,0xbf,0xff,0xee,0x77,0xf7,0xbd,0x2f,0xcc,0x21,0xd4,0x86,0x66,0xbb,0x1f,0x48,0x90,0xc7,0x6a,0x69,0xcc,0x7b,0xa4,0xe8,},{0x41,0x43,0x63,0xfe,0xad,0x6e,0x59,0xa3,0x43,0x8c,0xe5,0xa3,0xa2,0x77,0xd6,0x2b,0xdd,0x00,0xfa,0x2e,0xfa,0xc6,0x46,0x3d,0xd1,0x3f,0xcd,0xde,0xd9,0x3a,0x7f,0x10,0x8a,0xe1,0xf5,0x28,0xff,0xc8,0xff,0x4e,0xca,0x33,0x1d,0xab,0x91,0xae,0x5b,0x14,0x16,0xe2,0xdd,0xb7,0x3b,0x6d,0xaf,0x85,0x3b,0x03,0xc8,0x1e,0x99,0x36,0x56,0x0a,},"\xae\x61\x07\xf3\x8f\xf9\x4e\xd0\x32\x79\x03\xcb\xaf\x6c\x3e\x3a\x34\x98\xc4\x7a\xbb\x29\x89\xa8\xb3\x7b\x3a\x19\xdf\x88\xc6\xde\x79\x0a\xcc\xb4\xb7\x25\x81\x77\xb9\x15\x1d\x1f\xe0\x40\x63\x57\x7d\x3c\x3a\xcd\xb4\xc9\x29\x96\x8a\xfd\xad\x6f\x25\x2a\x67\xed\x4c\xa8\x9d\x06\x0f\x1a\x46\x53\x98\x3f\x7a\xb5\x8d\xdb\x93\xe2\x87\x8f\xba\xb0\x63\x7d\xbb\xeb\x95\xd2\x5c\x59\x86\x83\x9d\xe2\x74\x8d\x9f\x34\x02\x7a\xee\xbf\x1d\x9e\xb9\x36\xcb\x67\x70\xe0\x8d\x45\xb8\x09\x5b\xac\x9c\xbb\x71\xdb\x14\xe8\xa3\x42\x22\xb1\xf2\x23\x7b\x9f\x0b\xc9\x76\x6a\x23\x1a\x6d\x10\x27\x99\xf7\xc0\x81\xd5\x00\xfb\xea\xde\x60\x3c\xdc\xdd\x7d\x5b\x96\x5f\xba\xce\x4b\xe5\xc2\xcd\x93\x2d\xcf\x5f\x6e\xd3\x17\x22\xf4\x1d\x5a\x36\x3b\x34\xba\xbf\x3f\x63\x6f\xb3\x03\x82\x4a\xa7\x01\xdf\xe1\xd3\xe4\x12\x63\x07\x8c\x1e\xbb\xdc\xb1\xf7\x3f\x12\x45\xb8\x3e\x3f\xa7\x0a\xb8\xe3\xf1\x41\x3e\x6b\x06\xbd\xae\x02\x2b\x71\x4d\x60\xa4\x01\xd5\x74\x80\xdc\x64\xe7\xaa\xc6\xd3\xde\x85\xfc\x94\xd8\x53\xca\x13\xb7\xe6\x74\x15\x57\x9d\x5c\x67\x21\x23\xa5\xaf\x19\x4b\xee\x14\xae\x35\xdc\x27\x24\xff\x20\x9f\x11\x66\x63\x86\x61\xf8\x81\xb1\x19\x4a\xa4\xe3\x1b\x42\xa5\x27\x96\x47\x81\x59\x15\x04\xba\x76\x10\x3f\x97\xb7\xf5\x52\x03\x15\x47\x3e\xc9\x4b\xb0\x17\xa1\x66\x67\xb2\x2a\x85\x76\xa7\xcc\x2a\xc0\xb7\x75\x63\x03\xc7\x56\xf0\xdd\xaa\xe9\xd0\x18\x9e\x6c\x8d\xe3\x49\xf9\x19\x57\xc7\x2a\x52\x9e\x9f\x7e\x9b\x94\x56\x52\x48\x40\xba\x02\x34\x4f\x55\xad\x3c\x11\xa0\xb2\x59\x90\x14\x39\xf2\x65\x5a\xb9\xf8\xc6\xc8\xe8\xe9\x60\xc0\x57\xd9\xc7\xda\xfe\x42\x5c\x75\xd4\xa3\x3b\x80\x1d\x45\x47\xcd\x05\x51\xa6\x80\x2a\x80\x05\xdd\x72\x42\x47\x64\xdc\xf5\x7e\x4a\xa2\x22\x90\xea\x4f\x5b\xaa\xc5\x1d\x79\x39\xc0\x53\x42\x88\x2e\xe1\x43\x80\xef\x2d\x47\x04\xb4\x19\x49\xb2\x28\x2a\x1e\x1a\x3f\xa7\xdd\xea\x9f\xe8\x3b\x9f\xc5\x1d\x4e\xef\xa2\xeb\xac\x72\x2e\x4c\x0a\x7c\x59\x9b\x69\x25\xf0\x1b\x8a\x20\x66\xdc\x0c\x26\xf9\x21\x96\xf4\xf5\x03\xe8\x87\xc1\xe6\xef\xb0\x93\xf1\x53\x13\x87\xbd\x88\xc6\x91\x99\x7b\x9b\x89\xe3\xcd\xf7\xda\x12\xd3\x73\x41\x83\xa4\xb6\x12\x6b\xe9\xe0\x77\x47\x04\xb5\x29\x65\x9b\x55\x48\xf1\xb8\x75\x12\xcc\x18\x78\xca\x4e\xf5\x59\x90\xb4\x83\xc9\xaf\x6a\xa9\x76\x35\xf4\xf0\x79\x49\x72\x70\x65\xab\xf2\x1e\x21\xe3\x29\x90\xb1\xa7\xd0\x7d\x74\xe0\x2d\x9b\x07\xec\x63\x99\x31\xbf\x9e\x2c\xa3\x94\x1f\x2b\xa6\xb5\xef\x14\xdc\xc2\xa2\x47\xd2\x11\x7e\x9c\xb4\x1e\xfa\x3f\xcc\xa2\x47\x16\x64\x14\x52\xbe\xed\x2f\x92\x65\x7c\x2f\xb7\x31\xf0\xb9\x4e\x8c\x89\x2a\x81\xbb\xa9\x1f\x63\x9d\xf4\x37\x96\xac\xd3\x01\x3a\xc0\x44\xf6\x08"}, {{0x66,0x59,0x0d,0x36,0x99,0x84,0xc6,0xf5,0xad,0x3a,0x89,0xc7,0x8d,0xdf,0xca,0x10,0xa0,0xa7,0x65,0x79,0x95,0xdc,0x01,0x88,0xb6,0xb5,0x7a,0xc3,0x16,0x47,0x31,0xa4,},{0x98,0x87,0x3a,0xb1,0x33,0x46,0xee,0x48,0x67,0x7c,0x4f,0x86,0x12,0xdb,0x31,0xeb,0xd1,0x3d,0xb5,0x8b,0x2b,0x03,0x4f,0xd1,0x55,0xaf,0xa8,0x72,0x0f,0x4e,0x93,0xe8,},{0xf0,0xdb,0x63,0xa1,0xbc,0x76,0x24,0x16,0x1c,0xa0,0x06,0x38,0x53,0xb2,0xde,0xe4,0x5f,0xcc,0xd2,0x24,0x71,0xe0,0x12,0x36,0x6f,0x86,0x8a,0x4a,0x9c,0x74,0x65,0x4e,0x13,0xf1,0xa3,0x15,0xad,0x83,0x91,0x6e,0xbf,0xb8,0xdc,0x31,0xa4,0x20,0xf8,0x3c,0xf6,0x45,0xc4,0xc9,0xd1,0x6b,0xb4,0xd5,0xd9,0x9d,0x23,0xc7,0xb4,0x3e,0x23,0x00,},"\x2e\xc1\xc6\xb0\x82\x97\x37\x83\x2c\x9c\x79\x8a\x92\xeb\x49\x0b\x23\xd3\x34\xc3\xbb\xe6\x27\xcb\x58\x2d\x17\xa9\xe4\x29\x60\xef\xcd\xc7\xd3\x47\x50\xe0\xb4\xaa\x86\x4c\x20\x4f\xb8\xd6\x2b\x47\x99\x2e\x91\xdb\xfc\xfd\x69\xf5\x1d\x93\x7d\xc0\x6c\x48\xc0\xad\x43\xe8\x59\x83\x71\xcd\x0e\x3b\xbc\xe4\x16\xbf\xd4\x4b\x09\x44\xb9\x93\xaa\x29\x93\xfd\xea\x48\x71\x34\xcd\xe4\x22\x77\x72\x3e\x06\x83\xec\x98\xe6\x95\x95\xe9\xb7\xb1\x4c\x8c\xf9\x61\x7a\x1e\x30\xdd\xb8\x06\x0e\xac\xba\x48\xd8\x82\x53\xb1\x65\x33\x61\x08\xde\x0c\xb0\x2f\xf2\x0f\x54\x24\xb5\x67\x83\x08\x69\xc9\xb4\x32\x9c\x99\x45\xf0\xbf\x2f\x3c\x7a\xcd\x1e\x77\x43\x58\x93\x0c\xd8\x90\xfd\x9c\xb8\x64\xd9\x50\x93\x5a\xd8\xa4\xa3\xbe\xcc\xae\x8f\x83\x3f\x63\x56\x19\x13\x71\xc3\x26\x33\xdc\xf8\x82\x70\x9b\x0d\x98\xbd\x80\x7b\x38\x3a\xed\x8d\x7b\xb0\x97\xb6\xe2\x62\xef\x70\x0c\x9d\x76\x8f\x4b\x56\x90\xe3\xa1\xa8\xf2\x17\x55\xd6\x58\xdb\x2d\x1b\xfd\x2f\x70\x71\xe0\xca\xec\x7c\x2c\x53\x81\xc5\xef\x5c\x2c\x22\x81\xc6\xbc\xed\xc8\x67\x39\x0b\x90\xf3\xb2\x7b\x0f\x0f\x64\xa3\x36\x58\x57\x8a\x5c\x0d\x66\xe2\x11\xe6\xff\xf6\xe8\x64\x88\xac\xf8\x2b\xc0\xf5\xe2\x66\x4b\x83\x69\x90\x46\x03\x7c\x0d\x33\xd3\x40\xff\x98\xed\x62\x63\x35\x4c\x24\x27\x31\x36\xff\x0e\x4f\x0f\x23\x3a\x6c\x82\x54\xfc\x0c\x90\x76\x43\x30\xe3\xb1\x05\x7b\x1e\x66\x6d\x5e\xcd\x5a\x2e\xfe\xaa\x6a\x10\x5b\xfc\x85\x84\x31\xb8\x8e\xd7\xfe\x55\x1e\xb3\x2a\xc0\xaf\x27\xc6\x6a\x98\x03\xa3\xbc\xf8\x76\x34\xc6\x6c\x70\x66\xdd\x01\x97\xa3\xcb\xd2\xd6\xf4\xe6\x5c\xfd\xb8\xf3\xda\xf9\xf3\xca\x5c\x4f\x4e\x0a\xdd\x45\xf5\x54\x1a\xa1\x8d\x04\x1f\x70\x6e\x4f\xa8\x7c\x34\xe9\xa2\x23\xd8\x85\x72\xeb\x50\x08\x3e\xe8\xc7\xc4\x75\xdf\x56\x8b\xc7\x3b\xd0\x8c\x0f\x0d\xea\xa3\x74\xaf\xb1\xc1\x78\xd0\xdd\xdb\x23\x6e\x15\xa8\xbc\x23\x85\xed\x3f\x52\xb8\x76\x1e\x63\x78\x87\x40\x7a\x20\xae\xc3\xe9\x9e\xc8\x30\xda\xe3\x16\x7e\xf0\xcd\xb3\xf3\xff\xd2\x00\xd8\x3b\x75\xb7\x49\x69\x0b\x9e\x25\xe2\x17\x1d\x07\x2c\xa5\x6f\x71\xba\xec\xd2\x1f\x7d\x45\xa1\x2c\x91\xb2\xc0\xfb\x3f\xea\x3b\x15\x8e\x54\x64\x82\x84\xbb\x00\x95\xb3\x62\x44\xb0\xb1\x21\xf9\xf1\x38\x4c\xe9\x00\x43\x65\xe7\x77\x2f\xa3\x08\x28\x25\x0f\x51\x98\x5f\x1b\x17\xb2\xd2\xf8\x0a\x33\xe8\xfc\x6d\x85\x65\xea\x15\xcd\xaa\xcd\x42\xa8\x7b\xd7\xc9\x40\x8b\x1f\xe1\xc7\x70\x66\x5b\xdd\xed\x75\x4b\xc2\xff\x2e\xf9\x1b\x97\x3a\x86\xb9\x9f\x10\x59\xc6\xf2\x27\x24\x6a\x69\x8b\x38\x54\x15\x09\xdd\x54\x49\xfc\xe6\x0d\x38\x62\x24\x18\x3b\x7d\xce\x1b\x38\x84\xf7\xba\xe1\xc2\xe4\xeb\x59\x45\x10\xb5\xca\x58\x52\x79\xd9\x04\x1d\xf8\x81\x7b\x06\x19"}, {{0x41,0xcf,0x07,0x1f,0x48,0x42,0xec,0xd4,0x94,0x19,0x1b,0x8c,0xf2,0x8c,0xc0,0x92,0x31,0x85,0xef,0x1b,0x07,0x45,0x8a,0x79,0xa5,0x9a,0x29,0x6d,0x35,0x49,0x82,0x2e,},{0x6d,0xc8,0xe4,0x46,0xdb,0x1d,0xa3,0x53,0xb5,0x8d,0x0c,0x45,0xd8,0xb4,0xd8,0x16,0xba,0x59,0xe2,0x5b,0xb6,0x80,0x71,0x2d,0x62,0xd6,0xd3,0xdb,0xf7,0x8d,0x06,0x98,},{0x41,0x05,0x2b,0xc4,0x17,0xb2,0x4d,0xc4,0x83,0x83,0x96,0x6a,0xf0,0x14,0x3f,0x9c,0x0b,0xa8,0x5b,0xbe,0xfb,0xda,0xf7,0x91,0xb1,0x6a,0x4d,0xad,0x1f,0x57,0x0e,0xb8,0x07,0x03,0xc0,0xa2,0xcd,0xeb,0x2f,0x7a,0xd6,0xdc,0xd3,0xfa,0x7b,0xdb,0x5c,0x22,0x5e,0x86,0x9c,0xd8,0xfb,0x27,0x8d,0xff,0x06,0x67,0xd3,0x8a,0xcc,0xf3,0xdb,0x08,},"\xda\xeb\x5f\x0e\x84\xf1\x59\x0b\xca\x2b\x9d\x97\x19\xef\x5d\x1c\xfa\x79\xe0\x58\x34\x46\x33\x2f\x18\xe9\xe4\xfe\xb0\xb1\xf1\x53\x40\x29\x7a\xc9\xad\x67\x24\xc8\x5b\xb1\x65\x58\xea\x54\xeb\x5d\x70\x2a\x47\x24\x8b\xad\xc6\x25\x2a\x80\x43\x71\xb7\x4c\xfe\x10\x62\xd1\xdb\xa1\xec\x68\xfd\x1d\x4d\xd0\x29\xcb\x55\x03\x4b\xbf\x61\x06\x82\x51\xef\xf3\x98\x36\x36\xf6\xde\xbd\x57\x27\xbe\x91\x99\x3b\x3e\x4d\x0a\xbc\x96\xec\x19\x64\x21\xa4\x7b\x78\x93\xf8\x39\x86\xd6\xc0\x32\x3f\x0d\x19\xaa\xf2\xcd\xe9\xd3\x56\x5c\x10\x4c\x9d\x31\x76\xec\xb5\xed\x5e\x17\x3f\xee\x52\xb5\xa0\xc4\x2b\x6a\xb2\xfc\xb1\xcc\xba\x96\x49\xc2\xc6\x7c\x52\x0e\x9b\x96\xce\xa6\x93\xdf\x3e\x58\x60\x9a\xd6\xa0\xbd\x52\x2e\xfa\xaf\x03\x85\x8d\x24\x5d\xd0\xa3\x8f\x84\xa2\xfb\x10\x20\xf4\xdd\x97\xc3\xae\xef\x0e\x24\x47\x7d\x30\xd2\x56\x70\x1e\x90\x0b\xef\x26\xa8\xa6\x26\x9a\xb6\x60\xd7\x42\x93\xa2\xbf\x1d\x20\xc2\xcf\xae\xbb\x7c\x28\x20\xf5\xf5\xb0\x74\x53\xbb\x69\xee\x76\x9b\x52\x39\x15\x39\xf0\xc6\x06\xd2\x2e\xb3\x92\x3e\xe6\xf5\xa1\xd4\x60\x50\xaf\x90\xf0\x11\xf8\x51\xac\xe7\x63\x27\xd3\xd1\x8c\x48\x17\x0a\x9a\x25\xb0\x4b\x77\x0f\xd9\x38\xef\x8a\x30\xb7\xbd\x03\x39\x1d\xd3\x6c\x51\x6b\x62\xf0\xcb\x78\x67\x07\x40\xe0\x0e\x69\x59\x5c\x41\x8d\x96\x72\x53\x82\x0b\x75\x4c\x4f\xd6\x66\xe3\xcc\xe1\x6e\xe0\xc9\x41\x83\xbb\xea\x70\x6f\xe2\x98\xe1\xc9\x9d\xdb\x82\x12\x17\xed\x90\x08\xcc\x8e\x8b\x83\xbc\x8b\x81\x99\x15\xb0\x7b\x14\x6f\xe7\x45\x02\x4a\xc3\xc4\x61\x16\xcb\x4c\xce\x5e\x32\xec\x5d\x75\x24\xa2\x38\x8d\x9f\xe2\x97\xeb\x02\x81\x1a\xf4\x54\x6f\xcd\x58\x60\xe1\x4c\x0d\x13\xf0\x3d\xd7\x5a\x42\x49\x61\x59\x00\x07\x8a\x3c\x35\x8c\x53\x42\x96\x2b\xc1\xbe\xac\xf6\x8c\x24\x68\x21\xa4\x59\xab\x53\x21\xec\x9f\x57\x4f\x49\xd1\x03\x89\xf4\x0f\x14\xdd\xfc\x85\x13\xff\xe3\xde\xaa\x73\x36\x03\x5a\x67\x5f\xa5\x85\x8b\x49\x0c\x5d\x24\x77\x80\x06\x4a\xdb\xaf\x75\xa7\x63\x35\xee\xc9\xab\x91\x87\x71\xb0\xb1\xdf\x51\x47\x64\x2a\xef\x4a\x16\x6a\xb1\x72\xed\x60\x1f\xed\x21\x0f\x6c\x0c\xff\xd9\x18\x69\xf7\x49\x0b\x57\xe7\xc6\x52\x41\x86\x3e\x7e\x8c\x0a\x26\xeb\xa6\x3b\x53\x42\xd0\xfd\x82\x14\xac\x73\x1e\x1c\x43\x8d\x01\x77\x11\x5f\x6a\x19\xe0\x93\x5c\x7a\xf6\xbc\x7d\xbe\xb7\x55\x11\xd9\xbd\x8e\x63\xe3\xe2\xf4\x7a\xb0\xdd\x1c\xed\xd7\xb1\x80\xd7\x4a\x4b\x44\xd4\x61\x19\x7a\xef\xdd\x36\x20\x46\x51\x66\xa3\x9b\x45\x39\x50\x43\xce\x88\x74\xcd\xd7\x2c\x60\x2b\xd3\xd2\xee\xcb\xad\x34\x66\xb5\xcb\x1a\xa4\x1a\xe9\x2a\x8a\xfe\xf2\xd7\x64\xce\xc0\xc4\x49\xd2\x7e\xfa\xc4\x37\x93\x8f\x28\x0b\xea\x9c\x50\xa5\x82\xe5\x7c\x27\xf9\xb3\xde\x87\x2f\x0c"}, {{0xa2,0xc8,0xe1,0x61,0xa8,0xd9,0xd6,0xe8,0x88,0xc3,0xd0,0x9b,0x0b,0x97,0x27,0x37,0x30,0x7a,0x2c,0xbd,0x2a,0xcd,0x7c,0xcd,0x80,0x4d,0x24,0x31,0xac,0x6c,0x58,0xd2,},{0x3a,0x32,0x57,0x75,0x88,0x67,0x32,0xde,0xca,0x40,0x68,0x57,0xa8,0x05,0x60,0x10,0xaa,0xea,0x28,0x75,0x54,0x5b,0xa6,0xf3,0xdf,0x30,0x75,0x45,0x71,0x38,0x69,0x92,},{0x56,0x0d,0x01,0xb9,0x4d,0xf1,0x1d,0x83,0x34,0x77,0x52,0xff,0x51,0xb3,0x54,0x5e,0xf5,0x5c,0x56,0x32,0xae,0x7c,0x8e,0xfb,0x11,0xaa,0xdd,0x83,0x12,0xde,0xf7,0x25,0x62,0xe8,0xf5,0xd7,0x5e,0xce,0x10,0xad,0x46,0xbc,0x96,0xc8,0x60,0xde,0xec,0xe3,0x9e,0x63,0x4a,0x5f,0x50,0x65,0x4d,0x4c,0xdb,0xa8,0x4a,0x8e,0x6f,0x70,0x24,0x0a,},"\x83\xa3\xbe\xbc\xac\x5f\x28\xc5\x43\x3e\x3c\x4f\x1e\x7b\xf5\xd2\xe4\xdc\xd2\xf5\xe5\x9d\xbe\xe0\xa8\x3b\x07\x02\x57\x15\x35\x07\x46\xf8\x56\x75\xf1\xdf\xea\x37\x4a\xa7\xd7\x94\x28\x7b\x89\x2e\xf9\x09\x7f\xf6\xd2\xe1\x22\xf0\xa6\x56\xfb\xa0\x79\x8c\xdc\xfc\xb3\x64\x5d\xfc\xfd\x78\x8c\x74\x0c\x0f\xd0\x45\x20\xe7\xa0\x6a\x02\xa0\x58\x29\x63\x0a\x2b\xf0\xcd\xfe\x2e\xcc\xa0\x09\xec\x44\x04\x99\x46\xbb\x1d\x23\x26\xdd\xd6\x1d\x7e\xc6\x40\xbf\x69\xeb\x44\xfb\x23\xcc\x1f\xf4\x78\xc5\x70\xc7\x5d\xb7\xe7\x66\xe3\x5b\x7c\x43\xdb\x73\x68\x0d\x14\x07\xa9\x43\x99\xfb\x62\x1b\xaf\x38\x45\x74\x5c\x1c\x4e\xd0\xb9\xf0\xb4\x85\xbe\x2d\x53\xc5\x68\x54\x5d\xdf\x18\x77\x5a\x83\x7a\x05\xd9\xc9\x15\x7b\x08\x4e\x8c\xd0\x1f\xc3\x24\xf0\x7f\x11\x68\x77\xe4\x07\x5d\xba\x24\x32\xc8\xa7\x75\x2e\x9e\x93\x95\x86\xad\x93\xf0\xc0\xaa\x5e\xda\xc9\x4b\x8d\x82\xe5\x44\x99\x97\xb1\x5b\x8c\x89\x61\x58\x9c\x44\x28\x21\xaa\x83\xb6\x02\x39\xec\x5f\x15\x8c\x3f\x5e\x9e\xc5\xbe\xa5\x11\x5d\x5f\xed\x61\x91\x8e\x8f\xcd\x5b\xce\x61\xc7\x77\xf2\x0b\x6b\xfe\x80\x3a\x69\xc6\xfc\x79\x4a\xb8\xc5\x7d\xf2\x71\xda\x86\x38\x72\xa6\x13\x35\xb1\xfa\x29\xf4\x60\x8f\xf0\x37\xf7\x12\x06\x98\x09\xca\x64\x2a\x03\x07\xc7\x9a\xa9\x2e\x10\xcb\x89\x3a\x29\xd1\x72\x01\xa0\xb6\xd1\xb4\x6a\x72\x12\xb3\xba\xec\x97\x03\xc0\xb0\x39\x2b\xa6\xb7\x6e\x5c\x9c\x10\xf8\x35\x99\xb8\x1e\xa2\x22\x83\xf9\x54\x7a\xac\xda\xa7\xf3\x08\x96\xd1\xff\x73\x1e\x11\xfb\x9e\x56\xad\x06\x03\x04\x17\x11\x98\x05\xba\xb6\x35\x21\x49\x6c\x3b\xb9\x2a\x12\xf5\xe5\x5a\xfc\xf6\x0e\xd4\x21\x77\x37\xf3\x04\x6b\x16\xca\x50\x66\x57\xa6\xd6\x96\xd7\x5a\x6d\x8e\x18\xe9\xef\xe2\xb0\x8c\x8b\x1f\xa0\x72\x82\x38\xe2\x7c\xfb\x32\x21\x66\xee\xe4\xee\x76\x96\x8b\x77\x7b\x50\xee\x6a\x2b\x80\x4e\x1e\x9b\x46\x01\x66\x20\x13\x2b\x65\x88\x71\x8d\x97\x8c\xa2\xc0\x02\x69\x79\xc4\x00\xd3\xc5\x33\x67\x51\x21\x0f\x0b\x00\xd2\x69\xec\x8f\x4e\x2f\x95\x59\xe1\x80\x33\x2d\xd2\x70\xe5\x0c\xc9\x46\x5c\x55\x58\x93\x63\x55\x52\x1b\xc3\xc9\x56\x0f\xc1\x9e\xc1\x42\x42\x12\x1e\x6b\xb2\xff\xf8\xf5\x03\x37\xfc\x26\x4a\xcf\x1a\xc1\x70\x43\x28\x33\x4b\x3b\x52\xcb\xa9\x6d\x93\x03\xb1\xb5\xdb\x85\x9d\xae\x31\xd8\x0f\x17\x11\xfb\xa2\x51\xe1\x0b\x4d\x12\x21\x28\xf9\xfa\xff\x68\x72\xd0\xc0\xb8\x1e\xef\x59\x54\x1f\x83\x2b\x0a\x9d\xf3\xa4\xcd\xd5\x91\xc8\x77\x36\xb1\xae\xcf\x24\x2c\x27\x5a\x10\xc3\xfd\x67\x83\x9d\xad\x4e\xf3\x99\xb9\x49\x4e\xcd\x77\xf7\xba\x5b\x5d\x4f\x2c\xa3\x04\xe5\xb2\x29\x21\x30\x7c\xb1\x8f\xa6\x4a\xa3\xd0\x1c\x44\x11\xc8\x36\x9c\xce\xde\x46\x5e\xe3\x69\xee\x63\x7d\x43\xd2\x88\x26\xbf\x60\xdd\xde"}, {{0xd3,0xd1,0x88,0xb3,0x90,0xba,0xcc,0xd9,0x50,0x24,0x52,0x61,0x46,0xb8,0x2b,0x91,0x84,0xe1,0x97,0xe4,0x6a,0x93,0x40,0xa0,0xe6,0xec,0x18,0xbf,0x75,0xbe,0x7f,0xc5,},{0xd8,0xf7,0x94,0x94,0x8a,0xa6,0x98,0x61,0x00,0x21,0x4e,0x9b,0x7b,0x90,0x24,0x42,0x08,0x06,0xb4,0xc6,0x78,0x46,0xd5,0xbd,0x50,0x61,0x13,0xb3,0x53,0xa2,0xea,0x3d,},{0x16,0x97,0x6b,0x26,0x7d,0xe9,0x6e,0x38,0xdd,0xdc,0x84,0x78,0x07,0x5f,0x6b,0xdd,0x71,0x59,0xe5,0x63,0x34,0xb2,0xd2,0xd1,0x92,0x09,0x46,0x29,0x4f,0x33,0xcd,0x6b,0x7f,0x9c,0x50,0xf8,0x05,0x7f,0x49,0x6c,0xab,0x5d,0x94,0xbb,0x4d,0xca,0x26,0x2f,0x9f,0x0f,0xdf,0x9b,0x1b,0x64,0x74,0x1f,0x4b,0x72,0x2d,0x32,0xef,0xa8,0x22,0x03,},"\x5e\x65\x65\x8e\x42\x03\x75\x43\x3f\xd7\xc1\xf6\xbe\x67\x88\x41\xe5\x81\x04\xf1\x0b\x4c\x67\x63\x59\xd8\x4f\xce\x79\x92\xf5\xc5\x75\x57\xd7\x38\xf8\x30\xb5\x05\xfa\x0c\x2b\x9e\xab\xf8\xd1\xa9\xf8\x1f\xe8\xf3\x15\xd6\x62\xe2\xb8\x4c\xe9\x52\x99\xeb\xf4\xe5\x03\xb5\xe1\xf7\xf8\xcd\xb6\x68\xae\x73\x3f\x3d\x0c\xdd\x4c\x74\x2a\xb5\xf2\x72\xbe\xa4\xf1\x8d\x18\x3e\x89\x23\x84\x76\x62\xf9\xa3\x9c\xd4\xb1\x4e\xc7\x6d\x11\x03\x2f\xe5\x73\xc2\x62\x01\xae\xf6\x66\x01\xce\xc6\x83\xe3\x4b\x89\xaf\xd9\x64\xe9\x87\x80\x1c\x70\x6a\x85\xe2\x7b\xab\x33\x70\x1c\xd1\x09\xbc\xf0\x7b\x27\xca\x67\xf0\x22\xc4\x94\xa0\x4c\xbe\x5a\x9c\x6d\x63\xaa\xd9\x36\xcd\xf1\xa1\x80\xfd\x05\x86\x51\x98\xb9\x6f\x06\xa7\x8d\xa9\x57\x99\xd3\xaa\x4d\xf3\xb1\x70\x03\x3c\x69\xe8\xfb\x04\x28\x8c\x35\x46\x55\x3b\x57\x9c\x0a\xe3\x93\x80\x62\xd3\xd8\x42\x1c\xfa\x66\x26\x85\x29\xbe\xc0\x27\x1e\x53\xb4\xee\x7d\x09\x9e\x71\x48\xa8\x02\xdf\x80\xfe\x5e\xed\xee\x1c\x90\x3a\xe8\xed\x4d\x64\x0e\xad\x76\x12\x62\xdd\x40\x14\xf2\x5f\x93\x97\xba\x3f\x1c\x08\xd8\x3a\x3c\x48\x5c\xfb\x55\xf8\x99\x19\xaa\x97\x2d\x6b\x7e\x77\x11\xbe\x9e\x30\xc1\xeb\x96\xa0\xc3\x84\x53\x09\xfb\x23\xdb\xc7\x5b\x69\x91\xdd\x6e\x48\xcd\xde\x90\xe0\x4f\x22\x8e\x8c\xcf\x3b\xa2\x3f\x27\x47\xcf\xb9\xd3\x38\x1a\x93\x05\xf8\x16\xf2\x6c\xdd\xe4\x1c\x02\x20\xfa\xd2\x28\xff\x6a\x8b\x09\x5c\x77\xb6\xba\xe8\xfa\x33\x68\x14\x27\x24\xbf\x1f\x5e\x0f\x6f\xbc\xa5\x32\x0c\x21\x5b\x6b\xa8\x6b\x91\xe3\xa8\xac\xf7\x50\xe9\x3f\xa7\xea\xa6\x5c\x4f\x78\x5e\xf8\x42\x1a\x19\xc1\xe2\x7b\xc2\x4b\x42\x8e\x08\xa9\x02\x42\xab\xac\x9b\xd4\xaa\x03\xc6\x56\xf8\xf4\x6d\xc4\x0b\x36\x15\x2c\x1b\xd0\xde\xf1\xac\xfc\x0d\xa1\x0a\x2f\xa1\xdc\x3d\xa7\xac\xe5\xa8\xfd\x76\x22\x7b\xb1\xa6\x02\x39\x0f\xe5\x7a\xfd\x32\xef\xe2\x81\xf2\xea\x6b\x2e\x4d\x25\x45\xcb\x88\xd2\x30\x8d\x72\x69\x1c\x9a\x52\xb4\xca\x25\x23\x1a\x01\x07\xf2\x5d\x11\x7c\xc9\x35\x39\x76\x21\xc6\x83\xbd\xc8\xf2\x2e\x81\x03\x40\xf2\xcb\xac\x4c\xea\xa3\x46\x86\x65\x26\x18\x79\xf0\x07\x42\x00\x74\x3e\x0d\xe5\xf3\xe5\x83\x08\xb9\x8b\x04\xb8\xc7\x14\x8a\x4e\x00\x4e\x66\x7e\x83\x2b\x00\x84\xb5\xf2\xbd\xc6\xfd\xc9\x59\xf2\xfc\x28\xa8\xd3\x1d\x9a\x9e\x78\xe5\xd5\xf9\xc0\xb1\x19\xe5\xff\x1f\x68\xf7\xc0\xda\xf0\xc0\xf1\x69\x47\xcc\xa5\xb7\xce\xd0\x96\x01\xe2\xeb\xed\x28\x2e\xf2\xbf\x8f\xe9\xa2\x7e\xd2\x7f\xc5\xbc\xda\x8a\xed\x6c\x71\xbe\xe3\xe7\x75\x10\x04\x47\x26\x89\xbb\xf6\xd9\xd0\x79\x52\xa2\x42\xff\x87\x0d\x7c\x3f\x5e\x1f\xfc\x2c\x1f\x40\xfc\x9a\xb7\x57\x9b\x39\x2b\x55\x4f\x3d\xc5\x88\xc0\x3a\xb9\x57\x43\x1f\xe5\xd0\x2c\xbc\x71\x1a\xd4\x89\xfe"}, {{0x61,0x91,0x7a,0x97,0x5c,0xb7,0xec,0x56,0x4c,0x70,0x8a,0x56,0x53,0x88,0xc5,0x72,0x36,0xa6,0x6b,0x69,0x7d,0xcd,0x5a,0x7f,0x10,0xba,0xe6,0x71,0x57,0x2a,0xc7,0xf0,},{0xec,0xc0,0xf0,0xb9,0x92,0x76,0xe5,0x28,0xf8,0x2b,0x42,0xf2,0xef,0xce,0x85,0x79,0xf8,0x3e,0x63,0x8c,0x6a,0xce,0xfd,0x07,0x28,0x28,0xc0,0x4e,0x43,0x4f,0x55,0xaf,},{0x6a,0xbb,0x3e,0x37,0x7b,0x5c,0x80,0xb7,0x4f,0x77,0x21,0x9c,0x1a,0x9e,0x09,0x6f,0xba,0x0e,0xb6,0x89,0x90,0x81,0x7a,0xcf,0xf1,0x2d,0xba,0x7f,0x61,0xc7,0x7c,0xcf,0x59,0x5f,0xb6,0x60,0x85,0x52,0x00,0x3c,0xea,0xd0,0x6c,0xa1,0x31,0x7c,0x9c,0xd5,0x1a,0xc4,0x72,0x4b,0x29,0xf4,0x09,0x21,0xfb,0x92,0x84,0x33,0x76,0x87,0x64,0x01,},"\x6e\x97\x0e\x0b\x1c\x92\xa7\xf4\x96\xa8\x2d\x8a\xe8\x0c\xfd\x0c\xce\xf1\xd2\xc7\x99\xd4\x17\x28\xf3\x5d\xdc\xd6\x03\xb4\x21\xc2\xa5\xab\x3b\x48\x9e\x78\xf4\xb6\x22\x97\xde\x43\x7c\x5a\xd1\xa9\x68\x3f\xf8\x7f\xa2\x8e\xb3\xcc\x38\xce\x24\x2a\xf5\x94\x19\xf9\xfd\x43\xfc\xaa\x54\xfc\x39\x89\x92\xf8\xc8\xe3\x1f\x2b\x33\xdc\xcc\xd0\xee\x11\xba\x7b\x38\x8e\x8d\x2a\x36\xea\xd0\x67\xc6\xbe\xce\xd5\x89\x0a\xb7\xd4\xa9\x4f\x55\xda\xb9\x21\x28\xa0\xf8\x14\xc0\xe6\x89\x71\xdf\x57\xbd\x50\x78\xa7\x40\x31\x75\xc7\xc2\xfd\xd4\xa5\x24\x47\x15\x3a\xb3\x74\x56\x72\x9a\xee\x33\xe5\xfc\x93\xdb\x8e\x7f\x48\x03\x09\x87\x5e\xcf\x6d\xb0\x7c\xe7\xf3\xca\xc5\xde\x49\xe3\x61\x27\x5c\xa5\x0b\x6b\x71\x9f\x4b\x71\x5b\x3e\x30\x86\x3c\xbb\x3b\x71\x64\xba\x9e\xb9\x6e\xf3\x30\x4b\x19\xad\x4d\x74\xdc\xe4\xbd\x25\xe7\x7b\xbb\xbe\xff\x1e\xe7\xd1\xfb\x55\xb9\xc4\xf7\xfc\x4c\xd9\xbd\x55\x10\x8a\xfc\xf9\x9c\x1a\x41\xcd\x6f\x6b\x1a\xdb\x29\x7b\x10\x6c\x8b\xa2\x4e\x31\x34\xf8\x7d\xd8\xef\xe5\xcf\x85\x49\x22\x91\xb9\x4d\x66\x00\x95\x8c\x28\xb9\x12\x2f\xe6\xe0\x1b\xd3\xe3\x29\xe4\x2d\x19\x26\xb8\x9f\x7a\x8c\x40\xa4\x98\x67\xe5\xaa\x3a\xd7\x49\xbd\x98\xda\xe7\xd0\x06\xb4\x53\x60\x9e\x7d\xae\x26\x36\x4d\x91\x72\xbe\x72\x83\x33\x01\x21\xed\x2b\x40\x27\xe0\x88\x51\x18\x74\x3a\x6e\xa0\xcb\x7d\xc2\x74\x09\xa9\xb2\x82\x0b\xcc\x24\x2e\xa1\x0a\x00\x93\x7b\xf8\x49\x20\x1e\x0f\xb6\x19\x94\x21\xf1\x63\xe9\x79\x4f\x2d\xd4\xb3\x32\x01\x4a\x09\xd3\xee\x80\x71\xda\x78\x77\x47\xf9\x90\xf5\x17\x99\x19\x02\x7d\xdf\xf7\xca\xb0\xf5\x5e\x9a\xfa\x8e\xcc\xb1\x6c\xc2\xdd\x3c\xbb\xea\xd7\xff\x7e\xc8\x18\xc2\x53\x39\x3f\x74\x87\x41\xf5\x54\x07\xf7\x40\x8e\xe3\x3a\x42\xae\x2d\x6e\xcb\x3f\xb6\x00\xa7\x1f\x30\xab\x63\x06\x06\xe5\x53\xb4\x36\x78\xe5\x98\x54\xf3\xa2\x94\x7b\xcf\x4e\xa0\xfc\xfe\xdc\x31\x4d\x83\x70\xd1\x26\x63\x95\xfd\xa3\xc9\x10\x5e\x97\x59\x52\xf6\x0e\x30\x86\xbb\x82\x48\x15\x13\xd6\xfe\x8a\xdb\x4f\x95\xef\xb9\xa9\x5b\x66\xd4\x80\xd2\xbb\x17\x10\x78\xcf\x40\x68\x4a\xc6\x9a\x78\x9c\x7f\xb7\xfa\x42\x53\x33\xd7\x05\xdb\x00\x06\x67\x55\xdf\x72\x8d\xe0\x2d\xf2\x5b\xae\x34\xf1\xd7\xd4\x9c\xaf\xfc\x51\xe9\xba\x2b\x10\xb9\x8f\xe4\xcd\x9d\x22\xb7\x76\x4e\xd9\x31\xed\xb5\xf0\xb5\x54\x49\x6e\x99\x53\x91\xe0\xaf\x0b\x8d\x1c\x7a\x82\x95\xa8\xd1\x5a\x7c\x65\x56\xd2\x9c\xb1\x9e\x08\x55\xca\x50\x5a\xd0\x1d\x2a\xa3\x09\x28\xa8\x4b\xc4\x89\x59\x57\x6d\x81\x2d\x9b\x27\xb8\xe8\x88\x79\xfa\xa2\x80\x6c\x08\x41\x36\x0e\xcd\x0f\xe8\x3f\x5b\x84\x8f\xc1\x2f\x65\x8f\x1e\x7f\x40\xe5\x61\xc2\xe7\x8d\x3b\x01\x25\x21\x0a\x92\x06\x1c\x2d\xb2\x1b\xa6\x60\xe8\x60\x8f\xf5"}, {{0x7b,0xa2,0x5f,0x27,0x97,0xa2,0x83,0x6f,0x37,0x9d,0x6b,0xbc,0xbe,0x9a,0xbf,0x4f,0x2d,0xef,0x5e,0x52,0xf7,0x2b,0xd9,0xe0,0xb0,0x06,0x57,0x10,0x22,0xfa,0xc2,0xf3,},{0x6c,0x2e,0xd4,0xe8,0xc0,0x12,0x4d,0x5d,0x05,0x40,0x79,0x6d,0x39,0x45,0xd1,0xde,0x71,0xaa,0x69,0x69,0xe6,0xab,0xea,0x0f,0x1b,0x0e,0x6f,0xc4,0x29,0xc7,0x04,0x6f,},{0xf1,0xf5,0x90,0xa9,0x07,0xba,0x98,0x0e,0xb0,0xd6,0x48,0xab,0x4d,0xed,0x5f,0x92,0xfa,0xf7,0xcb,0x85,0x1d,0x81,0xd8,0x58,0xa7,0x8f,0xa6,0xb7,0x7c,0xbb,0xe1,0x2f,0x64,0xd2,0x0d,0xf5,0x27,0x71,0xa7,0xd5,0xe5,0x39,0xa1,0x52,0xd7,0x31,0xe1,0x90,0x3d,0x42,0x11,0xfd,0xcf,0xef,0x9a,0x48,0xb4,0x6c,0x8f,0xd5,0x39,0x4c,0xa0,0x09,},"\x17\x1a\x34\x09\x87\x80\x97\xb3\xb2\x2b\x2c\x00\x66\x0b\x46\xe5\x42\xc2\x16\x4c\x00\xbb\xee\x54\x55\x48\x37\x94\x0e\x70\xf0\x3d\xa9\x91\x6a\x40\xf9\xbd\xe8\x28\x8f\x45\xe4\x7b\xef\x7f\xfe\x4e\x55\x7c\xd4\x47\x40\x45\xe7\x40\xfd\x95\x9d\x98\x4f\x4e\xc8\x1d\xa8\x8d\x44\xa3\x73\xc1\xed\xa0\xcf\xc6\xb0\x8e\x35\x13\x73\xd3\xb8\x2a\xb0\x90\x2d\xf8\x06\x3f\xd9\x08\xe7\x03\xe0\xcb\xec\x41\x0a\xb5\xcd\xfe\xaa\xe0\x01\x88\xce\x2a\xd4\x2b\x8b\xf0\x4f\x7d\xaa\x5f\x0e\xe3\x33\xa6\xf9\x31\x1b\x4a\xd9\x81\x09\x52\xd5\xd5\xa6\x4b\x20\xf3\x7e\x84\x54\x15\xfc\x3c\xdd\x61\x6f\xeb\xec\x50\xdb\x29\x6f\xb3\xf3\xbb\x7f\x6b\x36\x6b\xbe\x52\xe4\x89\x7a\x05\x61\x7b\xf7\xc9\x81\xa6\x2e\xdc\xbb\xbe\x5d\xa4\xc3\x9c\xaf\xa8\x69\xaa\x2b\x27\x34\xe6\xcf\xed\x90\xed\x8b\xe7\x59\x49\x39\x0e\xe4\x45\x66\x89\x24\x55\xb8\x90\xcf\x56\x8b\x94\x5a\xab\xb7\x58\xd3\x85\x4b\xe6\x53\x9f\x3b\x86\xbf\x01\xd1\x88\xe4\x8c\xf2\x62\x6a\x0d\x7d\x38\x17\x03\xbe\x6e\xd1\x29\x0d\xfb\x94\x7b\xc2\xe0\xf8\x3d\xbc\x58\x70\x30\x80\xd7\xf5\xb9\xef\x19\xae\xf9\x30\x90\x8f\x68\xf0\xc8\x00\x10\xa9\x40\x1b\x30\x3a\x9f\x6d\xa8\x05\xbb\x8a\x0e\xd0\xf3\x94\x13\xee\xfe\xdf\x91\x9f\xfd\x8e\xa6\x39\x1b\xf9\x5d\x42\x29\x60\x4e\x49\x45\x7b\x8e\x23\xbe\xc6\x11\x48\x4c\xc7\xf9\x83\x2d\xd9\x5b\xdc\x3a\xd1\x77\xc0\x50\xf4\xab\x63\x3d\xcd\xb3\xe6\x91\xf5\x90\x28\x73\xb3\x8c\xb0\x72\x0b\x91\x13\x35\x7f\xe0\xcf\xb9\x8a\x68\xcc\xcb\x5d\x5f\x08\x09\xd5\x9a\x37\x5c\xf7\xb5\xa2\x75\xd4\x3c\x4c\x34\xff\x68\xe4\x48\x52\x6e\x8e\x1a\xad\x44\xe2\x00\x08\xa2\x32\xaf\xbc\xf5\x32\xa4\x2b\x50\xa0\x25\xa1\xb2\xee\x4e\x07\x7e\xb0\x12\x5a\x59\x3d\x51\xa2\x00\xec\x20\xd8\x72\xc0\x58\x38\xad\x36\xaa\xae\xec\xcc\x3e\xd9\xef\x41\xf6\xd1\x22\x67\x02\x17\xd5\xc0\x8f\x6e\x13\xc1\x72\x19\x45\x89\xac\xc3\xc5\x9f\x7e\xf7\x90\xc7\xc8\x5a\xa6\xd5\xeb\x69\xd4\xc8\x9a\x72\xf5\xe7\xc9\x24\x69\x85\xc1\xac\x0c\x5d\x19\x7f\x76\xa7\x3e\x37\x74\x83\x9d\x4a\xa2\x09\x6a\xca\x19\x0a\x30\xf4\xaa\xc5\x40\x57\xb6\x4f\x35\x8e\x0e\x06\x40\x0c\x0d\xf2\xf8\x76\x41\x2d\x34\x48\x4c\x43\x44\xf4\xd7\xc8\x66\x51\x7d\x3e\xfb\xa4\xa9\x0f\xa7\x14\x4c\x9b\xa5\xdb\x33\x61\xdb\x57\x69\x40\x3e\xc8\x16\x26\xa5\x11\xf9\x3e\x30\xf8\x58\x6e\xad\xfc\xaf\xd9\xa3\x6e\xcf\xf8\xd2\x4b\x42\x07\x9a\xda\x8e\x57\x9a\xc3\x08\x51\x17\x7b\xce\x90\x38\xb0\xe1\x30\x00\x72\xd6\x8e\xfd\xd7\x23\xf6\x35\x50\x64\x84\x32\x75\x81\x5a\x66\xb9\xd7\x3a\x12\x99\xaa\x59\xa1\x81\x2f\x64\x52\xfb\x41\x15\xea\x2b\x1f\x9f\xf4\xa9\x96\x90\x59\x6e\x3f\x20\x22\xd8\x1e\xd8\x74\xdd\x67\xe6\x18\x9c\xa0\xe6\x8b\x93\x04\xe9\x93\xa9\x5b\x66\x66\x5e\x0d\x07\x4c"}, {{0xd1,0xe1,0xb2,0x2d,0xe5,0xe0,0x4c,0x9b,0xe4,0x65,0x1d,0xd7,0x39,0x95,0xa3,0x66,0x6c,0xb5,0x35,0x2c,0x65,0xac,0x7b,0x70,0x51,0xb3,0x66,0xfe,0x1a,0xc0,0xc3,0x10,},{0x12,0xfe,0x56,0xf1,0x01,0x2d,0x5c,0x12,0xf1,0x35,0xed,0x59,0x82,0xf3,0x82,0xae,0x5f,0x11,0x43,0xbc,0x90,0xe8,0xcb,0x8c,0x93,0x05,0x17,0x54,0x55,0x1e,0xe9,0x0a,},{0xab,0xaa,0xb4,0xfa,0x6a,0xeb,0x0a,0x0b,0x34,0xee,0x0d,0x61,0x3a,0x0a,0xf0,0x49,0xed,0xb4,0xce,0xdb,0xfe,0x9d,0x3b,0xeb,0xe9,0xc0,0x06,0x18,0xb1,0x15,0xb9,0xd1,0xfa,0x52,0x4e,0xc3,0x49,0x5e,0x13,0x30,0xb0,0x93,0x61,0x81,0xea,0xbb,0x14,0x29,0x9f,0xac,0xcc,0x40,0xea,0xa8,0xcc,0xa5,0x7e,0xd3,0x24,0xb7,0xa6,0x42,0x0c,0x0e,},"\xc7\xf2\x18\xb5\xaa\x7a\xae\x17\x99\x62\x5a\x56\xc4\xd7\xd7\xb0\x26\x37\xe5\x72\xf1\x41\x1a\x61\x22\xf1\x13\x79\x1a\xa3\xc6\x28\xe8\x19\x60\x2f\xb4\xf0\x33\x5a\x61\x23\x01\x3f\xa6\x4e\x9f\xdc\x4e\x4a\xe4\x97\xbd\x16\x9c\x2f\xa7\x7b\xc2\x36\x12\x97\x17\xf4\x62\x88\x6b\x41\x08\x93\xfa\x78\x09\xcb\xfd\xc8\x92\x22\x3b\x40\xee\x04\x1e\xbd\x4e\xc7\xdd\xab\x55\xbe\x60\x81\xa1\x64\x66\x43\xa9\x12\x0b\xaa\x46\x28\x9a\xcb\xa1\x5b\x3b\x48\xaf\x3b\x7a\xde\xcd\x69\xf4\x3e\xed\xe7\x9d\x9b\x19\x57\xe1\xd8\xc3\x12\x9e\x0f\xa0\x57\x9d\x3d\x39\x53\x70\x46\x1b\x0e\x12\x55\xc9\xca\xa9\x4e\x47\x25\x60\x1c\xb9\xd0\xe2\xd6\x02\x44\xd1\x5b\x64\xe1\xf7\xbc\x90\x15\x59\x0a\xd0\x99\x1f\x12\xf8\x26\x73\x11\x20\x6e\x9e\xb5\xd1\x6a\xdd\x0b\xa5\x21\x8f\xce\x5f\xff\xe1\xc9\xce\x5f\xfe\x1f\x73\x11\x32\xf4\xb1\x2c\xac\xb0\x2f\x97\x45\x17\x10\x84\x6b\x7f\x82\x4f\x4f\xa9\xe0\x89\x19\x26\x64\x69\x78\x9c\x00\xce\x0d\x94\xd3\x8f\xa8\xfe\xc3\xf5\x1f\x2f\x88\x6e\x9d\xb0\x9b\x80\x44\x70\xb1\x9e\xc9\xe8\x06\x63\xf1\x55\xb4\x98\x4d\x2b\xbd\x0b\x2c\xe9\x93\x02\xe0\x6c\x64\x44\x4b\x69\x6e\x31\x29\xfc\xef\x34\xc3\xdd\x00\xf7\xab\x5b\xed\xa7\x47\xa3\xfc\x63\x39\x19\x2b\x74\x0f\x35\x69\xb6\x7d\xbd\x6f\xfa\x39\xe2\x71\xfa\xa4\x00\xd9\x61\x6b\xff\x86\xec\x49\xa6\x59\xde\xf2\xe7\xf5\xd4\x51\xf2\xa2\xb3\x5e\x66\x2a\x6e\x7c\xc2\x2f\x1e\x5c\xdc\xde\x8a\x59\x98\x81\x35\xb7\xe7\x65\x62\x74\x3c\x1e\x6a\x09\x99\x01\xb3\xef\x97\xcb\xff\x23\xf2\x09\xbd\x70\x88\xc2\xf0\x32\x45\x27\x9a\x1d\xc7\x8d\xdd\xc1\xbb\x0c\x1d\x35\x10\x03\x57\x88\x21\x26\xb3\x28\xd3\xd9\x4e\x08\x71\xb6\x0b\xe2\x53\xfd\x1b\x6e\xcf\x03\xc1\xdb\x73\x1d\x9e\xed\x0e\xdf\x2b\x26\x43\x23\x07\x80\xa4\xd6\x6e\x99\x17\x9a\xad\x1b\x82\x40\x2e\x55\xf6\xd7\x85\xeb\xc8\x0f\x8d\xd2\xfd\x2b\xeb\x09\xf3\x10\x35\xdf\x62\xc1\x7f\x42\x8e\xd0\xb2\xd5\x65\x08\xdb\x31\xe6\xd2\xdd\x5f\xb6\x9e\xbe\xee\xa3\x25\x70\x70\xcf\x2f\xe6\x7d\x42\xd2\x88\x16\xa5\x5d\xba\xe0\xb1\x85\xdb\x44\x21\xbb\xfd\xae\xfc\x79\xc0\x8c\xdc\x1a\xcc\xf7\x16\x42\x56\x2e\xc7\x00\x36\xda\x2b\xba\xfa\x4a\x89\x19\x54\xc4\xee\x40\x49\xb5\x5c\x64\x0e\x91\x93\x0e\x39\xe3\xef\x10\x18\xdc\x16\x47\xf2\x69\x42\xc6\xdb\xdf\x4d\x56\xe4\x1e\xb2\xc8\x98\xc8\x21\xfa\xc1\x7c\xc2\x73\xe8\xe4\xaa\x56\x08\xa8\x12\xcf\x4b\x82\xf9\x60\x19\xc2\x52\xd5\x6e\x78\x05\x29\x8c\xcb\xe8\xce\x40\xb0\xbd\x0f\x93\x3b\x88\x4c\x0f\xaf\x97\xa9\x58\xb2\x04\x08\xb8\xa5\x29\x7c\xce\x55\x27\xb2\xca\x21\x28\x06\xe7\x2a\x32\x64\x45\x7a\x7f\xac\x86\x62\xb8\x2c\xa2\x33\xe1\xc7\x75\x8d\xc6\xe4\xf1\xb9\x99\x58\x63\xf2\x5f\x74\x7b\xce\xe4\x3b\x63\x9b\x1f\x8f\x20\x26\xd2\xd2"}, {{0xdf,0x29,0x4e,0x47,0x7b,0x1b,0x91,0xc5,0xac,0x5b,0x98,0xc3,0x30,0xd2,0x22,0xd7,0xcd,0x2d,0x53,0xe7,0xd0,0xbc,0x0c,0xa4,0x03,0xdf,0x4e,0xc7,0x53,0x27,0xa2,0x74,},{0x5f,0x0b,0xd2,0x2f,0x2f,0x18,0x96,0xd1,0x56,0x3b,0x4f,0x69,0x40,0xc7,0xdf,0x89,0xef,0xc2,0x58,0xc0,0xff,0x6c,0x2f,0xcd,0x67,0x4d,0xaf,0x4f,0x59,0xfc,0xdb,0x60,},{0x99,0x45,0xab,0x73,0xb5,0x85,0x62,0xb3,0x55,0xda,0xbc,0x4e,0x2b,0x6b,0xe7,0xe0,0x5f,0x37,0xf8,0x95,0x71,0x44,0x0c,0xcc,0x32,0xc1,0xa9,0x47,0x37,0x09,0x5b,0x78,0x66,0x74,0x7d,0x21,0x00,0x70,0x00,0xa0,0xf0,0xe3,0x51,0x11,0x4b,0x88,0xe0,0x13,0x8b,0x55,0xdf,0x44,0xfe,0x72,0xeb,0xe9,0x59,0x14,0x10,0xe7,0x07,0xfa,0x9d,0x02,},"\x3e\x42\xd6\x68\x40\x96\x30\xcb\xb8\x48\x12\xac\x7f\xf1\x15\x4f\x70\xfc\xa8\xbd\xff\x3f\x1a\x04\x0f\xa3\xaf\x86\x8a\xa1\xc4\xe9\x15\x08\xb1\xae\xfd\xf5\xc3\xa8\xb4\xb0\x77\xa4\xd1\x62\xd2\xc0\x5b\xd3\x64\xfb\xbe\x8c\x5a\x08\x31\x4c\x2e\x07\xdf\xfb\xd6\xe8\xdd\x2e\x08\xa0\xdc\xc9\x6e\xa9\x2d\xdd\x4c\x97\xf7\x9d\xb9\x42\x5a\x6c\x6b\x34\xc4\x60\x43\xd0\x9a\x68\xb7\x68\x72\x36\xa9\x18\xd2\x1a\x56\x16\x10\xa1\x3a\xc5\xe4\x46\xe0\x88\x1b\xb2\x6c\xc8\xe2\x8a\xad\x16\x54\xf8\x67\xad\x82\xae\x33\xf8\xf7\xa7\x8a\x65\xbe\x57\x69\x94\x75\x51\x6a\x1a\x87\x46\x84\x3e\x93\xa1\xa2\x94\x35\x46\x24\xfa\xc0\x4d\x45\x2c\xcf\xbe\x4f\xdd\x92\xa9\x51\xaa\xa0\x7d\x26\x67\x6d\x5c\xb0\x77\xa5\x00\x0d\x43\x9c\x12\x42\x76\xc0\xdb\xcf\x86\xe7\xaa\x15\x3c\xc2\x4b\x5a\xff\x67\x7c\x6b\xad\xc2\x61\xc2\x89\xf4\xa4\xae\x51\x9b\x2e\x2f\xff\x31\x2f\xbf\x0f\x5b\x4c\x46\x98\xf6\xae\xdd\x8f\xcb\x1d\x23\x48\x94\x2d\xe3\xfb\x73\xba\x27\xf6\xdb\x14\xc2\xf0\x91\x80\x35\x6e\x5f\xca\xe1\xad\xf6\x5e\x22\x42\x5f\x8c\x27\xf1\x9e\x98\x94\x83\x50\x6e\x5d\xf5\x7a\x1b\x61\x3a\x22\xe3\x45\x03\x8b\x3e\xa9\x1c\x0f\x78\xff\xff\x46\x38\x3f\x38\xc7\x22\x25\x35\x8a\x34\x57\x0d\x6f\x66\x4a\x17\x45\x4a\x15\x16\x13\xf0\x1c\xba\x77\x7f\x62\xec\x83\x18\x75\xec\x5e\x27\xd2\x57\xf1\x80\xb6\x36\x6c\xb1\x83\x10\x7c\x40\xf5\x0b\x01\xb2\xb9\xbf\x91\xb3\xb5\x54\x9e\xd9\x31\xa3\x53\x7a\xa4\x16\x89\xf7\x2b\x25\x7a\x6a\xa3\x9c\xdc\x6f\xce\xdf\x14\x39\x83\xbe\x5b\xff\xe3\xae\x2b\x29\xf8\x2f\x88\x21\x22\xd6\x6a\x79\x25\xf5\xa7\x10\x82\x6c\x0d\xad\xb7\xe4\xfa\x4e\xc0\x79\xba\x2e\x76\xda\xda\x43\x3f\x30\x77\xcb\x1e\xf7\x46\x13\xfc\x5d\xbf\x82\x58\xb6\xda\x7c\x73\xc8\x66\x37\x24\x57\xed\x50\x0f\x97\xf9\x90\x7e\x1f\xc2\x63\x53\xc7\x0b\xa3\xbd\x9c\x36\x15\x1d\x46\x86\x5d\x2c\x65\x98\x65\x62\x48\x5c\xf8\x42\x1f\xeb\xbe\x77\x7c\x73\xe6\xcd\x00\x26\xd6\x6d\x35\x12\x8b\x9f\x8f\x33\x26\x4a\xeb\x56\xbd\x3e\x4b\x8d\x1f\x52\x66\x41\x1e\xf3\xb2\x3b\x76\xb3\x6d\x4c\x9d\xf3\xc5\x12\xfd\x56\x0c\x2b\xe5\x2a\xc5\x23\xc1\x93\x77\xad\x2a\xdc\x0e\x8c\x30\x9c\xf5\xbb\xf7\x2d\x9e\xb8\x5d\x65\xa9\x48\x47\xd4\x97\xd8\xd1\x02\x42\x4f\xb8\x43\x81\x66\x6e\xcb\x1c\x35\xa3\x72\x5d\x7d\x9e\x92\x84\xfd\xeb\xb6\xb3\x62\xaa\x6a\x9c\x6f\xb3\x7a\xba\x87\x35\x7f\x57\x4c\x0e\x63\xb4\x49\x7d\x49\x8f\xfb\xb7\xd0\x69\x2d\x78\x4b\x4b\x18\xce\x9f\x91\x50\xc1\x46\xd3\xd1\x8c\x38\x2e\xda\x04\x93\x8c\x69\xd0\x77\x8f\x29\x02\xd5\x23\x5a\x56\x52\xb9\x7c\xef\x6d\x5f\x60\xda\x6b\xd7\xed\x4f\xf9\x7c\xd9\x4d\x49\x39\xca\xca\x3b\x6b\xaa\x3c\xfd\xac\x04\xcd\xa9\x55\x96\xf4\x67\xcb\xc6\xcb\xcd\x92\x64\x16\x77\x43\xea\xc1"}, {{0x70,0xc6,0x85,0x9f,0x08,0xcf,0x42,0xb4,0xbd,0xa9,0xeb,0x62,0x97,0x9d,0xff,0xb7,0xcb,0x08,0xeb,0x3d,0xab,0xe9,0x3f,0xe9,0x4b,0x01,0x38,0x46,0x17,0xcf,0x67,0x30,},{0x40,0x1c,0x9e,0x20,0x33,0xe2,0x25,0x9f,0xb6,0x38,0x3b,0x3e,0x8b,0x9e,0x17,0xb3,0xf2,0x06,0x27,0x46,0xbb,0xe6,0x48,0xcf,0x48,0x45,0x16,0xdb,0x0f,0x2f,0x1b,0x06,},{0x0f,0x03,0xa4,0xf1,0x5c,0x33,0x9b,0x4f,0x7b,0x88,0xb4,0xe2,0x1a,0xd9,0xe3,0xd6,0xbb,0xf3,0xef,0xfb,0x7b,0x67,0x8f,0xfa,0x50,0x0d,0x47,0x38,0x3b,0x71,0xa7,0x45,0x4f,0x62,0x90,0x7b,0x56,0xf5,0x9f,0x9b,0x9a,0xf6,0xd5,0xb2,0xa0,0xfc,0x1c,0x73,0x7a,0x64,0x10,0x51,0x95,0x08,0x98,0x99,0xf5,0x7a,0x2c,0x9d,0xba,0x50,0x9e,0x0a,},"\xdd\x06\x09\xea\x15\x99\x21\x39\x5d\x11\xfb\x2d\xa8\xea\x4f\x74\x7d\x7f\x74\xb5\x80\x52\xe0\x1c\xad\x40\xa2\x71\xfa\x0b\xbe\xed\x91\x02\x0f\x4f\x0c\x08\x46\xc4\xf0\x77\x78\xa6\xaa\x76\x8e\xb5\x17\x12\x29\x4e\x9e\x1f\x32\xa6\x02\xb1\x52\x51\x4f\x5e\x6d\x39\xf9\xe0\x8f\x7a\x78\x12\xbd\x90\x0c\x10\xa9\x14\x69\xe4\x7e\x8a\x78\xe5\x4c\xd4\xbd\x7c\xfe\xde\xde\xc1\x71\xef\x37\x3f\x1c\x4f\x9b\xbc\x2c\x81\x40\x2f\xb1\x4e\xd0\xbf\xac\x8d\x04\x3f\x11\x7d\x61\x24\x52\x1a\xfa\xe0\x91\x6a\x51\x0d\x56\x8a\xcf\xa3\xaa\x33\x01\xbc\x97\x9a\xc2\x8d\x55\x1d\xbb\xea\x6c\xea\xc4\xc2\x12\xaa\x8c\x84\x92\xb3\x61\x3a\xe7\x39\x5d\xd4\x12\x5f\xc4\xc2\x5d\x5b\x4d\x99\x23\x08\x21\xd4\xb1\x7e\xc2\xee\x6b\xe7\xd6\x04\x19\x5a\x21\x54\x33\x3b\x97\x35\x26\x58\x0c\xa7\xef\x9e\x30\xc6\xc1\xdd\x42\xef\x2a\xfe\x42\xb1\x1b\x1a\xa4\x9b\x9c\xca\xba\xca\x17\x09\x1e\xeb\x38\x0e\xc5\xe3\x4a\xd1\xe3\x82\x7c\xc6\x0d\xac\xf1\x44\x28\x6c\x78\x92\x59\x0b\xd2\x67\x1a\x8d\xc5\xf3\xa7\x02\xc1\xde\x7c\xd3\xb4\x2c\x1b\x15\x0b\x09\xc3\xe5\x8e\xf6\x94\x3b\x45\xd8\x9d\x41\xdf\x36\x1f\x1d\x5c\x25\x56\x55\x91\xb6\xac\x8d\xea\xa7\x36\x76\x53\x1f\x6e\x5a\xbe\x58\x04\xb0\x09\x7f\x8d\x45\xea\x29\x39\x17\x73\x33\xca\xce\xf1\x2e\x4b\x71\xfe\x49\x36\xba\xfe\x00\x74\x7a\x89\x30\xbc\xea\x55\xb8\xfd\x84\xa0\x1f\x6d\xf8\x4e\x7a\xcb\x93\x1f\xc7\xc0\x1d\xdf\xd6\x3d\xee\xc3\xad\x3e\x69\xdf\xa2\xb7\x35\x50\x58\x3d\x57\x47\xee\xe9\x6c\x55\x36\x36\x87\x97\xe2\x47\xf2\x3f\x53\x7d\x79\x07\x9a\xb6\xda\x31\x41\x02\xc7\x44\x3d\x41\x96\x0e\x3a\x3d\x8c\x35\x9c\x4a\x4e\xc6\x26\xfc\xc4\x4e\x11\x0e\xa7\x44\xd4\x17\xaa\x85\x0d\xb8\xec\xdb\xfe\x34\x0a\x96\x2d\xb0\xd8\xc5\x7d\xc5\x17\xbe\x8b\x40\xd1\x4d\xe9\x7b\x1e\x9e\x04\x26\x44\x7f\xde\x0a\x04\xe5\x06\x79\xc5\x3b\xa1\xaa\x3c\xdc\x38\xc7\xed\xe6\xdb\x6c\x05\x4b\x1e\x9c\xe7\xde\xad\xaf\x93\xeb\xdd\x47\x07\x91\x53\x5f\x3e\xcf\xab\xf3\x41\x63\x55\xf7\xa1\x8a\x38\xaf\xe6\xbf\xe5\x07\xef\x08\xc4\x37\x3a\x4a\x69\xde\xe1\xfc\xb6\x5b\x16\x31\xa0\xde\x14\x88\x64\x9d\x0b\xb2\x67\x9a\x9a\x45\xf6\x78\x20\xb2\xa4\xa1\xe5\xa5\x48\x07\x2d\xa7\x03\x2d\x17\x25\x55\xe7\x88\xcc\x98\x60\xeb\xb3\xc0\xc3\x59\x49\x37\x51\xb0\xc2\xc9\x50\xa7\xfc\xf4\x80\x3c\x14\x7f\x93\x40\xfc\x93\xd8\x5f\x1e\xfa\x57\xb3\x90\x81\xb9\x2d\x93\x47\x3f\xd2\x35\x16\xc4\x95\x0e\xd4\xb2\x9a\x2e\xd3\xa0\x42\xae\x3d\x92\xa1\xe5\x2c\xb7\x09\x63\x6f\xc7\x27\x2f\xd7\x47\x20\x8b\xee\x2b\x16\xd1\x91\xe4\xc6\xde\xb2\x76\x72\xaa\x34\xe4\x39\x14\xcf\xf2\x05\x5c\xa4\xee\x8b\xa3\xe1\xdc\x58\xa6\x79\xc7\xf7\xde\xe2\xc1\xd5\x3e\x28\x75\x09\x70\xf5\x7d\x85\xea\xb1\xc2\x6b\x89\xbb\x73\xe0\xb1"}, {{0xc5,0x96,0x29,0x61,0x81,0x5b,0x57,0xcd,0x16,0x24,0x03,0xce,0x08,0xe4,0x10,0x5d,0xdb,0x8a,0xae,0x2d,0x3f,0x53,0x3f,0xb4,0x9c,0xc2,0x36,0xb5,0xff,0x50,0x4d,0x6e,},{0xdb,0xad,0xe7,0x22,0x36,0xba,0x12,0xd4,0x97,0x7b,0xa4,0x6c,0x36,0x4b,0xb6,0x9a,0x88,0x7f,0xf4,0x02,0xde,0x91,0xd4,0x7a,0xfa,0x9b,0x93,0xc9,0x5b,0xe7,0x1e,0x7e,},{0x81,0x01,0xba,0xef,0x00,0x4e,0xb6,0xf5,0xad,0x4d,0xe0,0x97,0x9f,0xf3,0x6d,0x34,0x39,0xb8,0x21,0x2b,0xdc,0x92,0x89,0x42,0xe4,0x31,0x91,0x5b,0x3f,0xd1,0x8b,0xc2,0xad,0x67,0xb2,0x6f,0x18,0x94,0x1d,0xcb,0x16,0xd2,0xc2,0x91,0x91,0x42,0x1e,0x77,0x9f,0xed,0x62,0x2f,0xd9,0xf5,0x82,0x64,0x4e,0xaa,0xdb,0x3f,0xe5,0xc0,0x98,0x03,},"\x4a\xe4\x14\x8d\x79\xca\x94\x25\x59\x2a\xa2\x40\xbd\x15\x34\x24\xa3\xbf\x4a\xe2\x73\x95\x87\x2c\xe5\x72\x8a\xc7\x61\x35\x96\xa7\x7d\x5c\xe8\x56\x5d\x8d\x6e\x1b\x59\x35\xb3\x90\x6c\xaf\xe1\xff\x88\x8e\xbc\x98\x15\xe0\x4a\x62\x4d\xfc\x4c\x69\x07\xb8\x5f\x6f\x1a\x0d\xbd\xdf\xf6\x2e\x91\x51\x22\x0d\x47\x44\x62\xcb\x9f\x13\xd8\x9d\x3a\x93\xa0\x0b\xa2\xb6\x0f\x7e\x7c\xa6\x3d\xa1\x7a\x63\x79\xd6\x73\x55\x1e\x79\x0b\x59\x11\x72\x7c\x90\x6d\xc9\x4f\x86\xd8\x27\x75\x46\xc1\x56\x4a\x45\x57\x3a\x77\x43\xbb\x8a\x13\x8c\xde\x87\xb3\xb2\xf2\x8e\x5e\x24\x59\x40\xa5\x1e\x7c\x45\x8c\xf8\xc5\xf0\xa7\x02\x75\x96\x25\x53\xe0\xd2\x39\x0d\x17\x1d\xb4\x4c\x2f\x7a\x5c\x9e\x9f\x93\xb9\x0f\x7a\x5f\x54\xf1\x91\xb0\xd8\x75\xba\xd7\xe0\xbe\xb9\x80\xc2\xa3\x36\x5c\xd7\xb9\x20\x87\x24\xf4\x65\x44\x18\x11\x7e\x16\xef\x71\x34\xe3\xe2\x79\x4b\x6f\x9e\x80\xec\xab\xec\xa3\x25\x4e\x70\x4c\x21\xb7\xad\x30\xc5\xde\xe0\x17\xea\x25\x33\xfc\xd9\x42\x51\xe5\x5a\xe7\x5a\x8c\xc6\xdb\x66\x74\xb3\x9c\x88\xca\x42\x00\x60\x43\xd6\xbd\x9b\x00\xec\xf6\x4c\xea\xfe\xeb\x40\x2b\x1f\x22\xfd\x89\x1f\x2d\x11\xc5\x15\xc1\xab\xa6\xa2\xd4\xc0\xbd\x21\x81\xa4\x8e\x43\xfd\x1c\x0a\xf9\x1f\x9b\x7b\x7d\x37\xf3\xdc\xd9\xe4\xc0\xa7\x59\x74\x84\x67\xd3\x48\xa8\xb1\x16\xdf\x6a\x4e\xac\xf1\x78\xae\xcc\xcd\x30\x66\xe9\x2d\xca\x45\xda\x7a\x3e\x31\x9f\x37\x71\xeb\x34\x90\x02\x21\x93\xc5\xb6\x52\xf0\x45\x68\x7e\x17\x05\xf2\xe5\x69\x1c\x13\x4b\xe4\x00\x63\x53\xd7\xec\xd0\xe9\x18\xd5\xde\x0f\x3b\x87\x80\x9f\xca\x4a\xcf\xab\x94\xe1\x14\x8f\xf7\xcf\x07\xf7\xcf\xd0\xc7\x45\xdd\x2b\xe0\x1a\x24\xa5\xe0\x69\x28\x06\x98\xbc\x3f\x54\x00\xa6\xdc\xd0\x8e\x44\x59\x5c\x03\x88\xe4\x48\x33\x76\x8f\xc4\x91\x04\xee\x11\x5b\xdc\xb0\x2b\xfb\xda\x17\x9d\x16\x4c\xe9\x69\x93\x66\x29\xf2\x33\x56\x01\xb5\x6f\xe8\xf7\x85\xcc\xa3\x80\x5f\x04\x03\x87\x2c\x62\xf7\x3c\x3c\xe8\x05\x63\xd0\x70\xe9\x76\xd8\xec\xc5\x11\x24\xe2\xca\xce\x7e\xe1\x86\x99\x04\x7c\xb0\xf8\xfb\x8d\x9c\x59\xb8\xa6\x0d\x12\xc0\x8a\x09\xfc\xe5\x8f\xd9\x2c\xd3\x6d\xb6\xa8\xe8\x9d\x11\x8c\xf8\x8a\x92\xdc\x8a\x26\x00\xbd\x95\xf5\xa8\xe8\x5d\xb5\xcd\xbb\x24\x9c\xa8\x12\xca\x20\x9c\x76\x18\x05\x1c\x45\x64\xa3\xa0\xe1\x92\xb7\xe4\x59\x92\x45\x6c\x87\xd1\x74\x12\xc1\x1a\xde\xad\x52\x6a\xb8\xdb\x21\x45\x2f\x74\x71\xd1\x7f\x2e\xbc\x90\x01\x54\x50\xed\xf4\xf0\xa4\x4f\xb2\xf4\x90\x5f\x74\xd7\x02\x75\xcc\xd8\x9b\x93\xa6\x50\x47\x3c\x02\xa7\xda\x0c\xbc\x67\x91\x5c\xeb\x7a\x1e\xa5\x9f\xa8\x88\x44\x72\xdc\x91\x7e\xe9\xd2\x46\x33\x9c\x59\x26\x84\x3e\xcf\x53\xfa\xfd\xc5\x6a\x69\x56\x01\xa2\x76\xc2\x3a\x84\x3e\x4d\x30\xf8\x9c\x97\xc9\xee\xe6\xdf\xc7"}, {{0xde,0xe6,0x86,0x6c,0x78,0x74,0xc1,0x27,0x02,0x9e,0x96,0xe0,0x25,0xbf,0xfd,0x35,0xfc,0xfd,0xf4,0xdc,0x36,0x96,0x6c,0x15,0xee,0x62,0x93,0x36,0x80,0x13,0xd3,0x79,},{0x08,0xc9,0x4d,0xa3,0x51,0xbb,0x2b,0xee,0x72,0xe6,0xe1,0x96,0xbe,0x74,0x88,0x07,0x58,0x37,0x62,0xc5,0x29,0x6e,0x05,0xb1,0xe5,0x29,0xc4,0x7c,0x6b,0xba,0xce,0xc6,},{0xb7,0x8e,0xbd,0x6d,0x65,0xb1,0x75,0xd4,0xbb,0xd3,0xd9,0xa2,0x08,0x2a,0x0e,0xfe,0x6e,0x99,0x1c,0xb2,0xe4,0x03,0x52,0x1e,0xec,0xe0,0x0f,0x41,0x8f,0x2e,0x95,0x6b,0x66,0x90,0x78,0x80,0x65,0x8b,0x9e,0x8e,0x47,0x69,0x96,0x53,0xd1,0x59,0x13,0x23,0x80,0xd9,0xce,0x11,0x09,0xaf,0x9c,0x27,0x57,0xda,0xf4,0xcd,0xf1,0x8c,0x9c,0x0a,},"\xf1\xaa\x19\x77\xf5\x31\x1b\x53\x8b\x94\x0a\xe4\x42\xa3\xab\xc8\x9a\xac\xcd\xcd\x0a\x79\x38\x0a\x24\x25\x8d\x4a\x9f\x1c\xe6\x38\xfc\x2f\x5b\xa2\xe5\x3f\x8e\x1f\xa6\x17\x6f\x17\x8d\x90\x24\xa7\x78\x94\xc2\x8c\xad\x42\xd6\x29\xc7\x93\xd6\x8a\x02\xbe\x94\x11\xb5\x27\xac\xad\xae\x7e\x5c\x38\x51\xba\xbb\x45\xb5\xfe\xce\x32\x9e\x29\x03\x4c\xd4\x25\x71\x08\x37\x27\xf3\x5a\xec\xad\x7c\x9b\xe5\x95\x4e\xc6\x4e\x8f\x6e\xca\xb7\xcc\x05\x90\xe5\x41\x56\xa4\xe1\xa4\x53\x03\x84\x9f\x78\x97\xe7\x2c\xf2\xfb\xcd\x84\xf5\x6c\x72\xf9\x41\xdb\xb0\xb0\x9a\x32\xe6\x38\x6f\xbe\x18\xa4\x3b\xb9\xbd\x8b\x79\x3e\x4b\x9e\xdd\x53\x21\x03\xea\xb5\x4d\x62\x71\x17\xd2\x81\x39\xb6\x4e\x60\xfb\x0b\x81\xd0\x90\x01\xbb\x24\x04\xd9\x25\xe2\x65\xba\xbd\xc6\x9f\x96\xb1\x35\xe9\xe6\xab\x7f\xeb\xb1\xed\x30\x75\xd6\xaa\x2a\xbd\x2b\xbf\x9b\x65\xfa\x9b\x3b\x71\x91\xef\x37\xb6\x33\x60\x59\x10\xee\x88\xf6\x6e\xad\xa7\x9f\x00\xf5\x36\xd3\x80\xb8\x2f\x2f\x4b\x59\x85\x11\x2d\xe0\x04\xa5\x66\x03\xf4\x43\x6d\x8f\xf3\x00\xf4\x2b\xf5\xac\xdc\x7a\x4b\xf1\xea\x9d\x41\x96\xc4\x80\x49\x5b\xac\xb0\x06\x76\x30\xfc\xc0\x00\xb4\xf2\x79\xdd\x3f\x30\xf3\x53\x27\x60\x92\xd1\x52\xc3\xf4\x3e\xfd\xc0\x41\xde\xaa\x0b\xc5\xaa\xab\xa7\xf8\xbb\xd8\x5e\x69\xc1\x37\x42\xd6\x78\xdb\xb6\x53\x60\xaa\xf7\xb5\x48\xa0\x44\xc0\xec\x60\xa5\x7a\xf6\x50\xbc\x31\x97\x3f\x83\x2f\x96\x12\x65\xbc\x23\x18\xf8\x07\x75\xaf\xd5\x1f\x55\x19\x4c\x42\x42\x3f\x7b\xf4\xe0\x05\x2f\x98\xcb\x20\x69\x13\xff\xea\x48\x86\xec\xd2\x7a\x41\x79\xb1\x37\x73\xf9\x47\x50\x2e\x18\x1b\xf1\xa1\xf2\xc6\x2c\x6f\x08\xc2\x03\x59\xf0\x6d\xf2\xb1\x81\x27\x04\x3b\x10\x70\xd0\x19\x4e\xf5\xe5\xbf\xd3\x7d\x22\x79\x84\xcf\xb1\x09\x89\xf2\x1c\x71\xad\x0f\xe3\xb8\x12\x27\xd3\xa7\x17\x89\x45\x5e\xda\x38\x3c\x22\xf4\xd2\xfc\xc7\x25\x79\xf4\x65\xe0\x66\xf3\xd3\x8b\xef\xc0\x24\xef\xef\x6c\x2e\x32\x96\x49\xce\x43\x4d\x62\x73\x67\xa9\x00\xd0\x7f\xe6\x23\x42\x35\xc8\x46\x56\xea\xc5\xdd\x0d\x78\x8c\xf4\xcb\x31\x87\x18\x24\xd6\x6a\xe4\xbc\x89\xed\xeb\xa1\xb3\x67\x01\x29\x84\x53\xe8\xda\x1e\x69\xcf\xb8\x68\x09\x5c\x3b\xe6\xed\x21\x82\xda\x1c\xff\x49\x05\xaf\xd2\x07\x31\xac\x1e\xd9\x84\x16\x47\x37\x90\x3c\x7d\x8b\xb0\xad\x16\xae\xcf\x2f\xae\x33\x74\x04\xfe\x35\x66\x45\x15\xd9\x3b\x70\x1e\x2f\x87\x86\x64\x45\x4c\x0d\xec\xd1\xc6\x55\x8a\xda\xce\x3c\xdb\x22\x75\x07\xa5\x16\x06\xf0\xa5\x4d\xf8\xdf\xaa\x42\x02\x05\xdd\x57\xc6\x52\x42\xff\x24\xa4\x05\xef\x85\xc9\x2d\x60\x28\x86\x93\x2b\x35\xfa\xbe\x9c\x3b\xce\xbf\xc6\x23\x56\x39\xe8\x73\xfc\x2d\xd0\x84\xc5\x2c\xd6\xa7\x41\x3b\x83\x1d\x1c\xc9\x99\x31\x37\x3a\xab\xd8\x47\x62\x0e\xb6\x9b\xb0\xfa"}, {{0x52,0x36,0x23,0x55,0x59,0x95,0xba,0xaf,0x2a,0x27,0xad,0xcb,0x1e,0xba,0xfa,0xa8,0x02,0xd2,0x3e,0xf7,0xab,0xfa,0x97,0x75,0xf2,0xc9,0xbf,0xa0,0x7d,0x64,0xe0,0xac,},{0xd3,0x4d,0xea,0xe6,0x52,0x3e,0x61,0x9d,0xd1,0xbf,0xc8,0xf3,0xc4,0xca,0x4b,0x78,0xb3,0x68,0xc0,0xf7,0x20,0x03,0x5e,0x14,0x4c,0x3f,0x2f,0xc1,0x05,0xd4,0xce,0x21,},{0xb1,0x87,0x17,0x29,0xfe,0xc8,0x3a,0xea,0x0a,0xaa,0x47,0x2b,0x70,0x0a,0xcd,0x09,0x48,0x13,0xfb,0x7d,0x57,0xb9,0x09,0xe0,0xea,0xaf,0x21,0xee,0x93,0x18,0x47,0xad,0xde,0xdd,0x2b,0xe8,0x53,0x3d,0x0c,0x30,0x5c,0xb9,0xcf,0xe5,0x08,0x0e,0x76,0xc2,0x80,0x8b,0x6e,0x51,0xc9,0x82,0x62,0x90,0xdd,0xb7,0xb9,0x4b,0x6f,0x7d,0x58,0x0b,},"\x05\x53\xe6\x9e\xf2\x11\x65\x2d\x62\xbf\x28\x1b\xfb\xdd\x37\xbe\x22\x76\x9d\x81\x97\x46\x36\x1c\x7d\x65\xdd\xd0\xfa\xd6\x77\xcc\x04\x38\xb3\x01\xd1\x51\x45\x78\xe0\xda\x58\xe5\x5f\x72\x9f\xa8\xe6\x6d\xde\xb7\xf9\x73\xa8\x18\xd2\x4e\xd8\xfe\x02\x7b\x84\x91\x17\x9d\x07\x77\x3f\xb5\xd2\xbb\x96\xaa\x85\xd6\xb3\x75\x04\x54\xe5\x0d\xe9\x1f\x9b\x88\xae\xe8\xaa\x68\xe6\xbb\x53\xed\xc6\x66\x77\xb4\x1e\x60\x1a\x46\xab\x4b\xb1\xe6\x56\xe7\xfa\x5f\x01\x79\x93\x36\x80\xa6\xec\x95\x04\x27\x5e\x7a\xdf\x7a\x32\x48\xe6\x3a\x0f\xc9\xc1\xea\x5a\xe9\x6c\xd0\xc6\x5a\x89\xa7\x7c\xec\x2b\x1f\xd8\xf4\x53\x7e\x82\xc1\xc4\x88\xa6\x9a\x0e\xf6\x4f\x58\x73\x4d\x9e\x73\x47\x8e\x1d\x1f\x12\x31\x14\xef\x66\x08\x5e\x0b\xa3\x19\xcb\x81\x0b\x66\xaf\x96\xd1\x30\x8b\x1a\x2b\xd9\x2b\xa2\xc2\x65\xaa\x30\x9e\xcd\x55\x57\xd4\x02\xc3\x80\x2c\xae\x8d\x7e\x95\x00\x7f\xe6\x10\xc2\xaa\x75\xfc\x66\x19\x6c\x3f\xad\xfe\x99\x7d\x6d\x59\x98\xe1\x8d\x26\x0e\x9d\xa3\x1d\xa9\x21\x8c\xba\xd1\x03\xcb\xfc\x2c\x75\x47\x76\x5d\x67\xe8\x1f\x24\xac\x83\x02\x2e\xf5\x1c\x6c\xc5\x08\x64\x36\x6a\x35\xf6\xb9\xb9\xaf\x94\xe8\x4c\xaa\x9f\xd3\xd7\x67\xc8\x31\xf0\x96\x7a\x61\x46\x2f\xbc\xfc\xc8\x03\xf1\x2e\x37\x39\x03\x9a\xcd\x5d\xbe\x93\x66\xf0\x5a\x33\xdb\xea\xf3\x60\xe2\xdd\xcb\xe5\xc4\x43\xf8\x0e\xf2\xad\x62\xe0\x3c\x1d\x5b\x70\xcd\xea\xb4\xa7\xdd\x41\x55\x30\x64\xc8\xd1\x52\x70\x9d\xef\xf8\x20\x76\xb9\x07\x11\x92\x37\x6f\x51\xd4\xc2\xc7\x1a\x84\xe8\x9f\x2d\x94\x01\x32\x0c\x2e\x45\x9b\x3e\x24\x3c\xca\x7c\x26\xfd\x09\x8c\x26\x4a\xc8\x8e\xf6\x38\x92\x1d\x98\x0b\x0a\xe9\xe5\x12\xd3\x72\x03\x7d\x81\xad\xc4\x81\x26\xd7\xc9\xe4\xb5\xaf\xa5\x7e\xc2\x65\xd4\x01\xb9\x65\x3e\x92\x8a\xfb\x7d\xff\x9b\x48\xe2\x95\xe4\x70\xd6\xb5\x2e\x88\xb3\x9d\x0a\x40\xcb\x8e\xba\x24\x9f\x8b\x13\xd8\x11\x13\xdb\x1d\x3e\x01\xef\x75\xc7\x22\xf2\x69\x48\x8e\x96\x3c\xc8\x18\x27\x04\xf8\xca\x01\x8e\x73\xdc\x07\x14\xe9\xa9\xfc\x79\xbc\x43\x63\xc2\x8c\xb3\x98\x43\x74\xf7\x3b\x2a\xa8\x78\x6e\x74\xe0\x15\x95\x07\xa2\x98\x83\xfe\x0e\xd1\xc6\x00\xf5\x25\x88\x5f\x2f\x10\xea\x00\x6c\x39\xe5\x9b\x92\x5b\x76\x5b\x1e\xde\x53\x42\x57\xa1\xf4\x0f\x28\x46\x58\x4f\x06\x97\x46\xb5\x2f\x56\x00\x43\x0a\x28\x63\xd7\x93\x60\x95\xfb\xc2\x2a\x6a\xda\x67\x4d\x41\xb3\x74\xe2\xb8\xb9\xa1\x9f\xa7\x12\xb5\x94\x45\x33\xbb\x6d\x6e\xc4\x3b\x89\xd4\x97\x1b\x70\x20\x5a\x6a\xcd\x72\xa8\x99\xda\x12\x61\x82\x04\xdb\x0c\x3e\x82\x67\xb8\x45\x79\x16\x93\xe0\xae\x6a\x35\xf1\x4d\xa1\xf8\xf4\xdd\x17\x4b\xce\x03\x18\xfb\x5a\x00\xf6\x72\xed\xe4\x23\x04\xcf\x04\xa6\x27\x60\x57\x75\x90\xf2\x7e\x2d\xfa\x6e\x5e\x27\x95\xd6\x60\x53\xb3\x0a\xf7\xf1\xbf"}, {{0x57,0x5f,0x8f,0xb6,0xc7,0x46,0x5e,0x92,0xc2,0x50,0xca,0xee,0xc1,0x78,0x62,0x24,0xbc,0x3e,0xed,0x72,0x9e,0x46,0x39,0x53,0xa3,0x94,0xc9,0x84,0x9c,0xba,0x90,0x8f,},{0x71,0xbf,0xa9,0x8f,0x5b,0xea,0x79,0x0f,0xf1,0x83,0xd9,0x24,0xe6,0x65,0x5c,0xea,0x08,0xd0,0xaa,0xfb,0x61,0x7f,0x46,0xd2,0x3a,0x17,0xa6,0x57,0xf0,0xa9,0xb8,0xb2,},{0x90,0x3b,0x48,0x4c,0xb2,0x4b,0xc5,0x03,0xcd,0xce,0xd8,0x44,0x61,0x40,0x73,0x25,0x6c,0x6d,0x5a,0xa4,0x5f,0x1f,0x9f,0x62,0xc7,0xf2,0x2e,0x56,0x49,0x21,0x2b,0xc1,0xd6,0xef,0x9e,0xaa,0x61,0x7b,0x6b,0x83,0x5a,0x6d,0xe2,0xbe,0xff,0x2f,0xaa,0xc8,0x3d,0x37,0xa4,0xa5,0xfc,0x5c,0xc3,0xb5,0x56,0xf5,0x6e,0xdd,0xe2,0x65,0x1f,0x02,},"\x2c\xc3\x72\xe2\x5e\x53\xa1\x38\x79\x30\x64\x61\x0e\x7e\xf2\x5d\x9d\x74\x22\xe1\x8e\x24\x96\x75\xa7\x2e\x79\x16\x7f\x43\xba\xf4\x52\xcb\xac\xb5\x01\x82\xfa\xf8\x07\x98\xcc\x38\x59\x7a\x44\xb3\x07\xa5\x36\x36\x0b\x0b\xc1\x03\x0f\x83\x97\xb9\x4c\xbf\x14\x73\x53\xdd\x2d\x67\x1c\xb8\xca\xb2\x19\xa2\xd7\xb9\xeb\x82\x8e\x96\x35\xd2\xea\xb6\xeb\x08\x18\x2c\xb0\x35\x57\x78\x3f\xd2\x82\xaa\xf7\xb4\x71\x74\x7c\x84\xac\xf7\x2d\xeb\xe4\x51\x45\x24\xf8\x44\x7b\xaf\xcc\xcc\xec\x0a\x84\x0f\xec\xa9\x75\x5f\xf9\xad\xb6\x03\x01\xc2\xf2\x5d\x4e\x3b\xa6\x21\xdf\x5a\xd7\x21\x00\xc4\x5d\x7a\x4b\x91\x55\x9c\x72\x5a\xb5\x6b\xb2\x98\x30\xe3\x5f\x5a\x6f\xaf\x87\xdb\x23\x00\x1f\x11\xff\xba\x9c\x0c\x15\x44\x03\x02\x06\x58\x27\xa7\xd7\xaa\xae\xab\x7b\x44\x6a\xbc\xe3\x33\xc0\xd3\x0c\x3e\xae\x9c\x9d\xa6\x3e\xb1\xc0\x39\x1d\x42\x69\xb1\x2c\x45\xb6\x60\x29\x06\x11\xac\x29\xc9\x1d\xbd\x80\xdc\x6e\xd3\x02\xa4\xd1\x91\xf2\x92\x39\x22\xf0\x32\xab\x1a\xc1\x0c\xa7\x32\x3b\x52\x41\xc5\x75\x1c\x3c\x00\x4a\xc3\x9e\xb1\x26\x7a\xa1\x00\x17\xed\x2d\xac\x6c\x93\x4a\x25\x0d\xda\x8c\xb0\x6d\x5b\xe9\xf5\x63\xb8\x27\xbf\x3c\x8d\x95\xfd\x7d\x2a\x7e\x7c\xc3\xac\xbe\xe9\x25\x38\xbd\x7d\xdf\xba\x3a\xb2\xdc\x9f\x79\x1f\xac\x76\xcd\xf9\xcd\x6a\x69\x23\x53\x4c\xf3\xe0\x67\x10\x8f\x6a\xa0\x3e\x32\x0d\x95\x40\x85\xc2\x18\x03\x8a\x70\xcc\x76\x8b\x97\x2e\x49\x95\x2b\x9f\xe1\x71\xee\x1b\xe2\xa5\x2c\xd4\x69\xb8\xd3\x6b\x84\xee\x90\x2c\xd9\x41\x0d\xb2\x77\x71\x92\xe9\x00\x70\xd2\xe7\xc5\x6c\xb6\xa4\x5f\x0a\x83\x9c\x78\xc2\x19\x20\x3b\x6f\x1b\x33\xcb\x45\x04\xc6\xa7\x99\x64\x27\x74\x1e\x68\x74\xcf\x45\xc5\xfa\x5a\x38\x76\x5a\x1e\xbf\x17\x96\xce\x16\xe6\x3e\xe5\x09\x61\x2c\x40\xf0\x88\xcb\xce\xff\xa3\xaf\xfb\xc1\x3b\x75\xa1\xb9\xc0\x2c\x61\xa1\x80\xa7\xe8\x3b\x17\x88\x4f\xe0\xec\x0f\x2f\xe5\x7c\x47\xe7\x3a\x22\xf7\x53\xea\xf5\x0f\xca\x65\x5e\xbb\x19\x89\x6b\x82\x7a\x34\x74\x91\x1c\x67\x85\x3c\x58\xb4\xa7\x8f\xd0\x85\xa2\x32\x39\xb9\x73\x7e\xf8\xa7\xba\xff\x11\xdd\xce\x5f\x2c\xae\x05\x43\xf8\xb4\x5d\x14\x4a\xe6\x91\x8b\x9a\x75\x29\x3e\xc7\x8e\xa6\x18\xcd\x2c\xd0\x8c\x97\x13\x01\xcd\xfa\x0a\x92\x75\xc1\xbf\x44\x1d\x4c\x1f\x87\x8a\x2e\x73\x3c\xe0\xa3\x3b\x6e\xcd\xac\xbb\xf0\xbd\xb5\xc3\x64\x3f\xa4\x5a\x01\x39\x79\xcd\x01\x39\x69\x62\x89\x74\x21\x12\x9a\x88\x75\x7c\x0d\x88\xb5\xac\x7e\x44\xfd\xbd\x93\x8b\xa4\xbc\x37\xde\x49\x29\xd5\x37\x51\xfb\xb4\x3d\x4e\x09\xa8\x0e\x73\x52\x44\xac\xad\xa8\xe6\x74\x9f\x77\x78\x7f\x33\x76\x3c\x74\x72\xdf\x52\x93\x45\x91\x59\x1f\xb2\x26\xc5\x03\xc8\xbe\x61\xa9\x20\xa7\xd3\x7e\xb1\x68\x6b\x62\x21\x69\x57\x84\x4c\x43\xc4\x84\xe5\x87\x45\x77\x55\x53"}, {{0x03,0x74,0x9c,0xa2,0x04,0x58,0xa3,0x5a,0x37,0xa8,0xd7,0xa2,0x6f,0x95,0x9f,0x0d,0x59,0xf6,0xdc,0x99,0x73,0xfa,0x36,0x3c,0x1f,0xf8,0xca,0x4e,0x63,0x8c,0x2c,0xd3,},{0xea,0xeb,0x94,0xf4,0x06,0xbd,0xe6,0xa7,0xcf,0x8b,0xde,0x2a,0xdf,0x30,0x81,0xf8,0x37,0x5b,0x87,0xd9,0x33,0x5d,0x49,0x6c,0x71,0xd0,0x42,0xcd,0x2e,0xaa,0x16,0x6c,},{0x78,0xa3,0x87,0x7e,0x02,0xbd,0xfd,0x01,0x5e,0x7f,0x86,0xa3,0x27,0xa4,0x8c,0xc3,0xa5,0x23,0x0b,0xbd,0xb1,0x24,0x3f,0x1a,0x8c,0xf2,0x27,0xf7,0x8a,0xb5,0xe7,0x68,0x0d,0xe3,0x01,0xa9,0x15,0xdc,0x11,0xb3,0x36,0xfb,0x5f,0x65,0x66,0x84,0x8b,0x42,0x50,0x0a,0xdb,0x5d,0x67,0x39,0x69,0x12,0x2b,0xa8,0xf0,0x05,0x3c,0xd3,0x06,0x0b,},"\xee\xf5\xce\xeb\xd0\x44\x5e\x9c\x91\x81\xaf\xf9\xc6\xf2\x66\x01\x28\xfc\xfb\x63\x69\x1a\x42\xcf\xa4\x43\xd6\xa6\x49\xef\xc5\xfa\xd8\xc2\x08\x03\x76\x3e\xe9\x7d\x1d\xba\x08\xe6\x3e\x08\xa2\x61\x6d\xa0\x50\x77\x48\x9f\x2f\xa2\xc5\x6b\x75\x34\xf9\x40\x26\x19\x25\x1f\xdf\x9c\x32\x0d\xe7\xaf\x10\x9e\x2f\xd8\xb2\x56\x5c\xe8\xa7\x52\x4c\x94\x05\xec\x0f\x8f\xca\xa7\x14\x9a\x6d\x21\x0e\xfd\xe8\x3b\x11\x1c\xf8\x2d\xc0\x83\x5c\xf9\x4f\x20\xcd\xb0\x21\xb7\x3b\xd2\x62\x66\x65\x55\xe6\xd6\x27\x07\xb4\x6e\xe4\x2f\xa9\x00\xb4\xf4\xf7\x05\xde\x33\xd3\xdb\xdc\x68\xa8\x8d\x1a\x4d\x0a\xe9\x33\x56\x6d\xb6\xc6\x23\x7e\xc8\xab\xe1\x02\x4d\xac\x4b\x7f\x46\xd4\x07\xbe\x16\x59\x4d\x90\x46\xc7\x31\x2d\xda\x66\x14\xd9\xbc\xdb\x01\xfb\x83\x24\xfc\x62\xb8\xee\xaf\x0a\xbc\x23\xcd\x57\x0e\x30\x4f\xca\x08\xe8\x8c\x73\x5e\x5d\x31\x59\x24\x09\xce\xb5\x83\x86\x2e\x6b\x0a\x76\x77\x29\xf7\x55\x6f\xa2\xc0\x53\x64\x4d\x36\xc8\x33\x7c\x02\x74\xe7\x49\x20\x29\x82\xfb\x4a\x17\x1a\xca\xc1\x96\xc0\x2b\x7f\x16\xa8\xda\x49\x07\x1c\x8a\xb8\x07\x6d\xd5\xd3\xab\xad\xfe\x3a\xf8\x2c\xa8\x5d\xa0\x2d\xcc\x1c\x4a\x6f\x2e\x19\x30\xbe\xe2\x00\x9e\xee\x0d\x97\x1e\x40\xdd\x12\x17\x5c\x8d\x00\x69\x4f\x03\x25\xa3\xb3\x13\x3c\x0d\x0b\xd3\x82\xa5\x19\x4f\xb2\x14\x22\xce\x67\xc7\x8a\x5a\x6e\x15\x37\xe3\xb9\x7d\x5e\x20\x4e\x5d\x19\x56\x96\x39\x0f\x77\xd1\x90\x24\xc1\xbf\x6b\x51\x25\xa0\xcd\xbf\x7b\x98\x80\x03\x61\x81\xc9\x8e\x1a\xc2\xe5\x16\x5b\xd4\x96\xcf\x99\x74\x51\xa1\xc1\x21\x02\xe6\x69\x46\xb1\x67\x6a\xbd\x4c\xbd\xd2\xc1\x16\x73\xf4\xf2\xcd\x5f\x3c\x9a\x43\x4d\x74\x7f\xa0\x5b\x40\xfb\xc7\x22\x68\xb4\xeb\x28\x42\xe4\x74\x1f\x51\xb7\x70\x9b\x6a\xcc\xc4\x7f\xca\xf7\x0d\x9c\x1c\x4c\x35\x86\x71\x19\xd8\x1c\xb3\xff\x1f\x16\x08\x11\x33\xf1\x65\x9a\xed\x85\xf6\x3b\xc9\x01\x98\x9e\x26\x17\xfc\xce\x15\x3c\x29\x78\xd7\x08\xfd\x02\x44\x9a\xe4\xd5\x38\xd1\x22\xdd\xb8\x52\x7c\x0a\x76\xa1\x02\xee\xff\x6e\xdb\x65\xdb\xa2\x98\xd3\xc2\x17\xf6\x55\x18\x14\xed\xde\xec\xe1\xae\xf5\xf3\x71\xa5\x4f\x12\xbf\xfd\x6b\x49\x61\x81\x9a\x0f\x24\x4f\xf0\xd7\xd8\x69\x4c\x14\x42\x2d\xe9\x82\x2c\x13\x17\x9e\x4e\xeb\x81\x59\x50\x79\xb9\xdd\x2a\xd1\xe7\xc3\x9b\xd3\x03\xcc\x44\xae\x3f\x36\x34\x88\x15\x77\xa2\x66\xfd\x6b\xb7\x91\x78\x12\xb9\x99\xdc\x80\x9d\xc0\x9c\x3d\x70\x19\xda\xcd\x28\xe4\x30\x13\xa2\xf9\xe4\xf9\x4b\xb0\xbf\x71\x24\xef\x09\x17\x83\xf7\x96\x39\x7f\x64\x63\xbf\x1e\xfb\x39\xcd\x46\xf3\x79\x0a\x1d\x9b\x6a\x7c\x30\xf1\x49\xb5\xe6\x6c\x29\x37\xe3\x9c\xb9\x74\x4d\xdc\x66\xab\x56\x1b\xad\x4e\x6f\xa8\x53\x4d\x69\x88\x38\x22\x64\x3d\x63\xd8\xbd\x7b\x18\x16\x21\xa2\x67\xe9\x55\xe7\x58\xd1\x79\x2b\x44"}, {{0x53,0xcb,0xd6,0xf6,0x8c,0xee,0x27,0xb9,0xf7,0xbc,0x05,0x9b,0x80,0x3b,0x44,0x79,0x49,0xbb,0xc9,0xc5,0xd5,0xa3,0x86,0x52,0xd7,0x78,0x9c,0xa1,0x54,0x20,0xde,0xa1,},{0x61,0x16,0x99,0x0b,0x53,0x31,0xe2,0x16,0x5f,0x82,0x74,0x3f,0x01,0xd8,0xe7,0xbd,0x5d,0x70,0x88,0xb3,0x01,0x59,0x83,0x3f,0xa7,0xb9,0x39,0xcf,0xb1,0xcc,0x04,0xd7,},{0xd8,0x25,0x04,0x40,0x5f,0xf1,0x6b,0xa6,0x44,0x3d,0xc4,0x82,0x36,0x72,0x63,0xa8,0xe2,0x00,0x36,0x0a,0xca,0xaa,0x83,0xfc,0x4e,0x4b,0x72,0xbd,0x24,0x9f,0x16,0x10,0x3e,0xc7,0xe5,0xa7,0xe9,0xca,0x17,0x19,0x8f,0x88,0x8e,0xac,0xa1,0x6b,0x74,0x0c,0xc3,0xf5,0xc3,0xb7,0xb6,0x17,0xa3,0x4b,0x94,0x91,0xc3,0xed,0x76,0xaa,0xb3,0x0d,},"\x30\x6f\x8e\x1d\xf0\xa4\xca\x78\xbd\x77\xe8\xe1\x19\x1c\x94\xde\xaa\x82\x64\x83\x55\xc2\xae\xcb\x7e\x82\xfc\x56\xd6\x4c\x50\x46\x19\x24\x7e\x7c\xf8\x94\x33\x28\xd1\x1f\x3d\xb4\xb1\xdc\x14\x8e\x8e\xf6\xf6\xc3\xbc\x35\x59\x69\x66\x2a\x28\x1a\x65\x57\x63\x91\x24\x2b\x7b\xd5\xa6\x2f\x8f\xa7\xac\xb6\x04\xe3\xa3\x44\xae\x1a\x9d\x73\x2a\x25\x43\x15\xf3\x1a\x04\x64\xc1\xe6\x58\x74\x62\xd2\x92\x12\xc4\x0e\x5e\xcf\x06\x1e\x26\x9a\xa0\xb9\x03\x90\xba\x41\x04\x07\x21\x68\x4b\xf2\xaa\x95\x82\xd8\x30\x66\x22\x1d\xb6\x0d\x0f\x7a\xe2\xf1\x49\xa3\x6e\x16\x95\x27\x04\xfb\x1f\x3a\x98\x2e\xac\x6b\x45\x83\x66\x5c\x63\xe5\xa8\x99\x6f\x24\xa5\x66\xdd\x50\x6a\x33\xd4\xec\x8a\x02\xb2\xbd\x34\xb7\x14\xc7\x45\x00\x0c\x01\x28\xa3\xc8\x9d\x94\x25\x06\xd1\x2f\x4b\xeb\x90\x0e\x29\x03\xcd\xb3\x4b\x35\xca\x9b\x6d\x3a\xd9\xb3\x50\xac\x99\xf4\x1d\xb3\xac\xfe\x7f\xe5\x5a\x28\xc0\xf0\x06\xb8\x44\xc9\xdc\x48\x53\xfd\x98\x53\x5a\xda\x79\x41\x6d\xca\x5f\xee\x58\x03\xa2\xd9\xf5\xd6\x8e\x6b\x80\x53\x9f\xf3\x02\xe9\x73\xf2\x4e\x9b\xc8\x8b\x7c\x41\x94\x11\x7d\xdb\x9f\x93\x2b\x32\xd5\xec\x74\x86\x8a\x13\x63\x1e\xce\x68\x81\x4b\x93\x14\x21\xdc\x89\x02\x49\x57\x03\x41\xf4\xb4\x23\xe8\x6e\x8e\xe0\x81\xb2\x27\x02\xf6\x49\xa6\xc7\xa0\xb7\xbd\xf5\xfb\x75\x62\x02\xbd\x10\xb0\xbb\x22\x15\xc7\xd6\x59\x7e\xff\xd8\x52\xf0\xb8\x9a\xbe\xc1\x5e\xa8\x22\x57\x68\x9d\xf8\x1e\x33\x82\x54\xf9\x3e\x81\xcb\xf0\x61\x72\x9d\x48\x3e\xb5\xcf\x64\x98\x05\xd7\x8e\xd8\x92\xdd\x0b\xd2\x48\xca\x1e\x25\x2b\xea\x51\x84\x7e\x1e\x82\xd3\x9a\xf5\x80\x50\xdc\x4a\xfb\xf9\x11\x5a\x3a\x60\x49\x3e\x8c\x0b\xa2\xe8\x6e\x08\x98\xcd\x0d\x43\x08\x91\xb9\xeb\x0a\x40\xf8\x74\x31\xe2\x5f\x41\x53\x8a\x03\x0f\x88\x4f\xab\x36\xad\x11\x16\x5d\x26\x7e\x8d\xd9\x4d\xcb\x05\xb9\x3a\x5a\xe7\x79\x69\x43\x0e\x18\x10\x13\x4e\x15\x72\x51\xb9\x82\xdf\x34\x3d\xff\xae\x61\x23\xa9\x9a\xa0\x56\x2d\x5d\xf7\x24\x08\xf1\xa6\xe2\x9c\x40\x59\xa5\xa8\xaa\xa4\xe6\x21\x52\x8f\xc6\x3a\x9c\xbe\x1f\x4c\x0f\xef\x25\xfe\x3f\x8e\x18\x15\x77\x74\x09\x7a\x9d\x91\x02\x0a\x90\x06\xb6\xc8\x60\xec\x1e\xe1\x0d\x52\x1d\x20\x3a\x1f\x8b\xb8\x25\x61\x29\x6f\xaa\xd4\xb2\x20\x3d\xa5\x3b\x20\x7a\x45\x9b\x29\xc1\x8b\xc0\x64\x93\x32\xb1\x80\x7c\x13\xca\x61\xac\xfa\xf9\x07\x79\xfe\xbb\xc7\xf3\x24\x21\x64\x79\x7e\x6f\x57\x2c\xb1\x5a\x9b\xe5\x88\x73\x43\x45\x5e\x26\xb9\x10\xc8\xbe\xfe\xe4\x2a\xeb\x04\x7f\x9a\xbe\x6b\x37\x50\xdb\xd7\xde\x99\x20\x2a\x0b\xb5\x76\xce\x14\x89\xe6\x1c\x1f\x5d\x27\xc6\x79\x2e\x63\x21\x8e\xdb\xfd\xb9\xb3\xdc\x51\x5b\x42\x54\xd8\x2c\x85\x9e\x52\xce\x6b\xd7\xad\x29\x6d\xd0\xe3\x70\x9d\x4c\x46\x63\x62\xf9\x02\x65\xe9\x9d\xa7\xd0\xb7\x01"}, {{0x8b,0x65,0x74,0xf6,0xd7,0x39,0x69,0x81,0xe2,0x23,0xa4,0x83,0x7b,0xc3,0x39,0xc3,0xfd,0x65,0x94,0x19,0x84,0x5a,0x21,0x21,0xbf,0x85,0xbe,0x2e,0x69,0x5d,0x86,0x0d,},{0xe3,0x81,0x1a,0xca,0x70,0x63,0x4f,0x5a,0x9c,0xe4,0xb5,0x92,0xa1,0x7b,0xb5,0xcf,0xda,0x53,0x44,0x24,0x22,0xe2,0x03,0xcd,0xa9,0x50,0x4c,0x9d,0x65,0xb2,0x63,0xe8,},{0x2f,0xd0,0x90,0x54,0x75,0xa2,0xce,0xc3,0xe7,0x6f,0x99,0x09,0xb8,0xaf,0xd8,0x3b,0xeb,0x8d,0xae,0xfa,0x77,0xaf,0xcd,0xa3,0x4c,0xb4,0xf1,0x17,0x28,0xef,0x15,0xfc,0x9c,0x1d,0x7f,0x6f,0x6a,0xff,0xfc,0x28,0xf3,0x87,0x4f,0x91,0x3e,0x17,0x98,0x0f,0x0e,0x8e,0x3d,0x5a,0xd2,0x39,0x51,0xdf,0x2b,0x32,0xef,0xaf,0x62,0x19,0xce,0x0d,},"\xa4\x8a\xac\xc0\x49\x5f\xa0\xf1\x25\x9b\x27\x86\x5d\x3d\x75\xdc\x52\xc2\xc8\x28\xea\x8c\x4c\x2a\xd7\x85\x77\x07\x2f\xef\x72\x70\xf6\xa4\xd5\x82\xbb\x7b\x96\x2f\x4c\x3f\xd1\x49\xa6\x0a\x06\xbc\x8e\xfd\x29\x70\xef\x03\x14\x8d\xdf\x61\x98\xb9\xb6\x95\xa6\x9f\xad\xb5\x34\x09\x51\xcb\x75\x39\x8a\xc5\x1a\x4f\xd5\x54\x30\x37\x8c\xd5\xda\x88\x85\x21\x0b\xfd\x21\x46\xf9\x5c\x62\x76\x32\xfe\x8b\xe0\x6d\xe0\x1a\x7c\x27\xb8\x9d\xee\xfd\x67\xef\xc6\x9c\x9b\x5c\x62\xb3\x81\x08\xf7\x76\x22\x91\x43\xda\xe6\x60\xc1\x0c\xbe\xa3\xcd\x4f\x7e\xe5\x3d\xc3\x69\x2e\xd0\x11\x77\xe4\xa6\xf7\xe4\x24\xb5\x66\x6f\x7f\x49\x5f\x2a\x65\x60\x2c\x7d\x08\xc5\xd5\x72\x23\x4a\x56\x7c\xb6\xc3\x8a\xfd\x79\xca\xb5\xc4\x03\x6d\x62\x63\x7a\xef\xab\x55\x88\x76\x9a\x44\x8a\xb4\xc6\x5e\x24\x55\x4b\xd4\x15\x80\x50\xe0\x9e\xb5\x8f\x99\xab\x40\x77\x7b\x03\x56\x70\x9b\x7c\x02\x5a\xe5\xae\x54\x22\xac\xf8\x74\x44\x93\x1a\xe4\xd9\xa8\xb3\xd9\x44\x76\x88\x11\x28\xba\x1e\xb7\x32\x8f\xaf\xc7\x5f\x6b\x9d\xac\xc9\x6d\x3b\x64\x87\xdd\xef\x7c\x59\x26\x2d\xca\xda\x42\x6a\xac\xb1\x39\x22\x93\x54\x11\x56\x62\x35\xe0\x58\x37\x26\x22\xd8\x85\xbd\x0c\xc0\x49\x58\xdc\xfb\x17\xe0\x8f\xcd\x7f\x14\x7e\x20\x15\x6c\x8e\x26\xaf\x85\x53\x0f\x55\x11\xa6\x8d\xb4\x3d\xaf\xc4\xe6\xa2\x3f\x66\x7d\xf3\x74\x3e\xed\xd7\x1a\x3f\x07\xf7\x6f\x94\xd1\x68\x8a\xfc\x84\x63\xbf\xa5\xa4\x39\xae\x31\x14\x69\x94\x8e\x74\x47\x06\x4f\x0b\x05\x06\xf3\x67\x19\xc1\x34\x66\xa1\xb9\x87\x76\xd9\x67\xec\x58\x20\x8b\xa6\x74\x03\x73\x03\xdf\xc6\x19\x0d\xa7\x83\xff\x27\x30\x3b\x86\xb5\xfc\x32\x11\xf0\x1c\x91\x5e\x83\xa6\xad\x01\x21\x44\x79\x11\xcb\xe1\xcf\x69\x6f\x61\x8f\x60\x23\x66\x43\xf2\xe9\x4e\x15\x5d\xb6\x57\x18\x29\x44\xc1\xa4\x3b\xdc\x7b\xd5\xea\xf3\x48\x1f\xe1\x28\x40\x92\xcb\x37\x89\xa8\x92\xbd\x79\xa1\x11\xfd\x41\x01\x43\xcf\x91\xae\x33\x28\x60\xb1\xd2\x9a\xa0\x41\xd1\x77\xb5\x0d\x6c\xc2\xb9\x66\x0d\x32\x8c\x0f\x23\x0a\x35\x15\xe6\xa0\xd6\x88\x70\x9c\x0c\xd3\x47\xad\x2f\xf3\x2d\x61\xd1\xe1\xe9\xba\x76\xf8\x1e\x87\x3a\x6c\x42\x0f\x17\x07\xf3\x84\x1d\xb5\x19\x6c\xb5\x3f\x50\x6f\x00\x06\x35\x2c\x7c\x44\xc0\x80\xf3\x09\x68\x01\xa5\x7a\x49\xcf\xe8\x42\x05\xbd\xd7\xa9\x80\x1f\x84\x3c\xf2\x6b\x95\x58\xa2\xdb\x78\x8e\xf1\xb2\x37\x91\x5d\x58\x7b\x9b\xa9\x77\x98\x90\xf6\x1f\xdc\x91\xe0\x3e\x4f\x4c\xdb\xef\xe4\x17\xcc\x22\xd5\x22\xa8\x6a\xdd\xdb\x53\xf3\x74\x74\x50\xab\x62\xb5\x76\x56\x5d\xb3\x2e\x0c\xd4\x42\x76\x54\x7d\x9a\x16\x65\x3c\x27\x96\x59\xdd\x4d\x17\xec\x04\x82\x7c\x53\x3e\x33\x39\x0f\xe9\x4f\x79\x35\x09\x25\x6d\xb6\x75\x31\x73\x6a\xb3\xfc\xee\x2a\x30\x1a\xc3\xf0\xa2\x4d\x3b\x10\x8d\x7e\x75\xc3\x2a\x5a\xba\x36\xd6"}, {{0x29,0xb2,0x88,0x1b,0x8c,0xaa,0xdb,0x33,0x6e,0x78,0x80,0xc5,0x10,0xb8,0x00,0x85,0xf4,0xb1,0x22,0x18,0x60,0xb3,0x01,0xeb,0x45,0x25,0x65,0x07,0x52,0xa6,0xd2,0x89,},{0x0c,0x5c,0x44,0xed,0x29,0xd2,0x1b,0xca,0xde,0xe2,0x1c,0xbd,0xe6,0x1a,0x9c,0xdb,0x6d,0x59,0x36,0x00,0x9b,0xa2,0xf5,0xb2,0xe7,0x77,0xc9,0x24,0xdd,0xfb,0x67,0x51,},{0x99,0xe9,0x96,0xe8,0x5a,0x49,0x4f,0x19,0x80,0xcb,0x07,0xde,0x9c,0xa6,0x16,0x5e,0x7d,0xe1,0x04,0xd3,0x9f,0xe3,0xc3,0x22,0x67,0x35,0xc5,0xda,0xa5,0x69,0x51,0x6f,0xca,0xf1,0xb6,0xe4,0xdf,0xad,0x0d,0x38,0x9b,0x6d,0xb0,0xec,0x8a,0x8f,0x20,0xdd,0x2c,0x60,0x26,0x56,0xb5,0xe7,0x61,0xc8,0xf3,0xa6,0x55,0x83,0x82,0x15,0x19,0x09,},"\x19\x74\xa2\xe2\xb4\x79\x49\xf4\x67\xa9\x31\xd1\xd9\xdd\x5c\xe1\x16\xe9\xf5\x03\x0a\xd0\x9a\x8c\xc7\x28\xd1\xae\xb1\x48\xbb\xf9\xac\xf5\x98\x74\xda\x80\xe7\x08\xd5\x3c\x66\x8f\x2f\x14\xd7\x52\x20\x71\xe9\x09\x80\x84\x27\xb2\xab\x5a\x05\xf8\xb9\x4f\x21\x50\x5c\xd2\x6a\xbc\x53\x45\x89\x78\xc7\x84\xd4\x79\xea\x6d\xab\x10\x5c\x4f\x79\x84\xa0\xfb\x97\x90\xe5\x06\x24\xf4\x73\x4b\x55\x19\x05\xaa\x5f\xfa\x60\x18\x4c\xd2\x01\xcf\x2b\x26\xc9\x79\x5d\xa6\xe7\xe0\x8d\x6a\x0b\xc7\x72\x24\x00\xfe\xf9\x4f\xc2\x10\x38\xbe\x89\xd3\x4b\xcd\x14\xc4\x27\xb8\x5b\x68\x66\x73\x71\x96\x15\x2d\x4e\xeb\x66\xd0\x5b\x24\x5a\xe8\x4b\xdc\x77\x87\xc1\x4a\x8b\xec\x2e\xea\x53\x60\xf0\x42\x43\x3d\x70\x79\x44\x67\xd4\x73\x93\xb9\x37\x57\xf3\x31\xcf\x2b\x53\xc6\x60\xd7\x1c\x29\x58\x2a\xee\xa7\x9b\x12\x52\x7a\x28\xb0\xc5\xe1\x10\xdf\x6f\x85\x4e\xea\xd9\xa2\xb0\x0d\x42\x54\x2c\xa8\x27\x6b\xb8\xbf\x98\x8b\xaa\xb8\x56\x59\x96\xfe\xe5\x0c\xf3\x1b\x24\x59\xc4\xc5\x0a\xb4\x75\x26\x5e\x83\xe2\x28\x5d\x43\xfe\x1f\x75\x2a\x55\xb2\xdb\xc4\x9f\xca\x04\xa8\x10\xf0\x41\x3b\xf6\xbd\x81\xb7\x9a\xc6\x4e\xe1\xf8\x9b\x97\xbd\x7d\x26\xd6\x25\x12\x27\x3e\x24\xa6\xba\xb2\xd5\xf7\xd2\x22\x6b\xaa\xab\x7b\x11\x12\x09\xbb\x03\x73\x3d\x8a\x60\xdf\xa3\x1a\x51\x6f\x4a\x8c\x76\x99\xd8\x28\x5c\x10\x65\x15\x9a\x6c\x73\x31\xc1\xde\xfb\x47\xa3\x0e\xf5\x85\x8c\x50\xb7\xd0\x45\x12\x4a\x09\x81\x3d\x1c\xfd\xa5\xc9\xcc\x3b\xb5\xbf\xae\x73\xc9\x84\x19\x7f\x8f\x85\x7f\x18\x6c\x41\xab\x87\xfb\x79\x62\xb6\x31\xf4\xd0\x07\xcf\xbe\xe2\x21\xfc\x65\x72\x78\x4a\x55\x11\x94\xc1\x97\x77\xb0\x8e\x6b\x59\x67\x57\xe7\xcb\xa7\xa0\xe2\x7f\xe4\x53\xf9\x0d\xc5\x9c\xc0\x8c\x64\x72\x43\x1c\x02\x0e\x8d\xd0\x91\x75\x90\xe7\x9c\x1f\x20\x73\x83\xaf\xb3\x90\x76\xad\x24\xda\x8e\xe5\x24\x86\x73\x94\x53\xa2\x59\x0e\x51\xbf\xc8\x9b\x13\xc2\x03\x3c\xfa\x5f\x89\x03\xcb\xe9\x96\x1a\x85\x98\xba\x55\x62\x32\x86\x9d\xfa\xb4\xd5\x6e\xdf\x4f\x05\xe8\xb7\x7d\x05\x87\x18\x95\xe6\x3b\x53\x51\xf7\x6c\xb2\xd2\xc8\x38\x5c\x10\x9d\x73\x06\x19\x2a\x25\x44\x6e\x4d\x62\xdc\x7d\x62\x4f\x0c\x66\x73\x98\x6b\xe0\x62\x8b\x2c\x2d\x73\xeb\x94\x1d\x35\xa3\x43\x30\x90\xf5\x9b\x28\xa5\x97\x9d\x56\xdb\xc9\xfd\x69\x73\xf6\x36\x47\x64\x2c\xd9\x03\xb0\xcf\x7a\x6a\xcd\x33\x0d\x87\xe2\x29\x27\x10\xde\x99\xe0\xc1\x79\xca\x78\x92\x9c\xca\xec\xfa\xed\xbf\x27\x42\x41\x4f\x17\x6b\x60\x90\xc0\xd5\x9a\x9d\xb7\x81\xc9\x96\x7e\x28\xfa\x4e\x77\xd2\xa0\x82\xe4\x2f\x52\x16\x91\x67\xe9\x2d\x4f\xdd\x82\xe2\xcc\x05\xdd\x91\x84\xc7\xdf\xee\x49\x0a\x23\x7f\xda\xd4\xdf\xeb\xc0\x18\x68\xe0\xa4\x35\x3a\x29\x54\xd0\x90\x92\x84\x61\x82\x1a\x7a\x84\x8d\x1b\x60\x81\x7f\xc3\xbd\xef\xa1"}, {{0x42,0xaf,0xe8,0x9d,0xac,0x83,0xe7,0xd3,0x89,0x96,0xc0,0xdb,0xce,0x0c,0x98,0x74,0xc0,0x09,0x27,0xba,0xbd,0x77,0xca,0x8c,0xea,0xc3,0x4e,0x56,0x44,0x74,0x28,0x2b,},{0xa4,0xc5,0xf5,0xe3,0x80,0x3f,0x0a,0x03,0xd5,0xc1,0xc9,0x06,0xca,0xec,0x9c,0xc6,0xd2,0x85,0x14,0x07,0xf1,0xca,0x29,0xf7,0x2a,0x45,0xf2,0x33,0xe6,0x65,0x62,0x44,},{0x4f,0xba,0x2d,0x6c,0xc1,0xb7,0x19,0x3d,0x35,0x62,0xf8,0xc8,0xbf,0xe6,0x90,0x5c,0x82,0x9d,0xb2,0x65,0xa5,0x42,0x7c,0x5c,0x26,0x57,0x14,0x78,0x5b,0x83,0xf6,0x95,0x14,0xc5,0xe3,0x0e,0x28,0xb5,0x66,0x84,0xc8,0x2d,0xae,0x26,0x37,0x58,0x1b,0xf3,0xf4,0xef,0x27,0x14,0x20,0xbc,0x7e,0x60,0x10,0x61,0x3a,0x38,0xfa,0x10,0x1a,0x0d,},"\xe7\x10\xa1\x63\xad\x28\x85\xae\xb7\x65\x8e\xb3\x74\xf1\x18\xb7\x68\x42\xec\x36\xef\x3b\x01\x0c\x3c\x6b\x95\x59\xe8\xb1\x60\xc2\x62\x8d\xed\x0b\x85\x11\xeb\x49\x07\x18\x0d\xa4\xb6\x21\xe9\xaa\x4a\x32\x22\x88\x88\x8a\x1c\x09\x13\x0f\x69\xf8\x90\x59\x7a\x92\x93\xe7\x4f\x92\x89\xbd\xaa\x5c\x91\xb6\xfd\x24\xaa\x04\x4a\xb9\xfc\xb3\x40\x2f\x7a\xbc\x48\xd2\xab\x7b\x38\x80\xa0\x48\xda\xa4\x48\x64\x5a\xd2\xec\xb5\x5b\x3c\xae\xe2\xd6\x8a\x8b\xed\xb5\xd1\x86\x5d\x5e\x21\x1d\xe3\x9b\x0e\xaf\x22\xe5\xda\xf1\x0f\x71\x68\x20\x3a\xa1\x5b\x85\xaa\x47\xbb\xd3\xcc\x41\x69\xcb\xc1\xfe\x80\xb4\x70\x0b\x62\x58\x71\xed\xab\xcd\x4f\xe7\x4a\x3e\x96\x55\x69\xce\x24\x5c\xfc\xde\x42\x09\xcc\x8a\xbc\xd6\x79\x7d\x44\x18\x5b\x4f\x96\xc0\x18\x1b\xbd\x27\x00\x87\x83\xe9\x35\x8a\x53\x94\xfe\x3a\x34\xa0\x68\x71\xd3\x79\xda\x35\xb2\x0b\xb5\x7e\xef\x9e\x55\x24\xee\x79\x12\xa6\xf4\x1b\x4a\x1f\x68\x4c\x39\x19\xcf\xcd\xc0\x0f\x45\x80\xba\xf9\xe0\x9d\x31\x6c\xef\xa0\xf4\x65\xdc\xa5\xd8\xee\xc5\x14\xe9\x5e\x5a\x57\xbb\xcd\x27\xe4\x1f\x81\x19\xb2\x64\xae\x14\xa3\x19\xd8\xc3\x85\x9b\xab\xf1\xf4\xa6\xb6\xb7\x7e\x44\x2c\x86\x1d\x6e\xe2\x8a\xd1\x2b\x82\x36\x2e\x90\xdb\x0c\x36\x72\xb0\xe0\xd9\xff\x58\x14\x6f\xd1\x59\xaa\x8f\xa9\x9d\xc7\x55\xfc\x85\xb9\x0c\xf9\x41\x92\x79\xc0\x62\x4b\x93\xe7\x5e\xda\x0e\xf7\xc0\x96\x95\xae\x93\xbd\x72\x82\x41\x93\x77\xb7\x6c\xa8\xbd\xc0\x52\x1c\xfe\xe6\xf6\xd7\x29\xc3\xad\xff\x89\x46\x87\xb1\x77\xef\x19\x52\x9a\x6b\xda\xce\x70\xb6\x85\xc6\xd7\xa5\xd7\x4a\x08\xe2\xa9\xe7\x24\x03\x59\x75\xc8\x0d\x18\xcb\x36\x94\x70\xde\x72\x99\xcb\xd6\xb0\xa2\x7c\x92\x32\xc7\xea\xba\xc8\x6d\x50\x93\xa6\x5f\xfe\x0b\x40\xd4\x0b\xef\xe8\x0b\x68\xcd\x9d\xce\x1e\xa1\xe6\x57\xe4\x5e\x9c\x49\x9d\x0b\x69\x0f\x74\x45\x5f\xb4\x70\x96\xed\x8c\x18\xd1\x51\x7f\x90\x44\x29\x01\xa6\xc4\x10\xb7\xf6\x41\x5f\x20\xae\x48\xc5\x8a\xde\x8d\x67\x5b\x6c\x05\x8d\xf1\x6a\xe7\x69\x8f\xce\xae\x95\xaa\x77\x1b\x4c\xd8\x8a\x0b\x3f\x22\xc5\x1f\x98\xc7\x1c\x1e\xb4\x6b\x26\x4b\xf9\x7a\x30\x0e\xcb\x1f\xd2\x62\x26\xad\x8e\x87\xa0\x58\xcf\x3e\x70\x8e\x26\x0f\x56\x6b\x68\x53\x14\x04\x51\x33\xf4\xa5\xe8\xfb\xc3\x45\x61\xb9\xa0\xf1\xff\x93\x39\xf5\x52\x31\x07\x6b\x73\x6b\x6e\x11\x52\x43\x19\xa2\x72\xbd\x44\x53\xa0\xaf\x14\x93\xda\xa0\x91\x67\xe8\x46\x43\xd2\x07\xa0\x2f\xee\x98\xfb\x22\x3b\x01\xa9\x9a\xa5\xce\xf2\xb7\x00\x1e\x47\x0f\x6f\x94\xa5\xdc\x20\x8e\xdf\xc0\xcb\x8c\xf3\x11\x4a\x91\x96\x00\xf0\x61\x17\x2f\x0e\xfe\x03\x90\x36\xbf\x4d\xdd\xbf\xd0\xd4\x5f\x91\x44\x3b\xf2\x6f\x8e\x15\xed\x7d\xb8\xe5\x5f\x08\x6a\x4a\x45\x83\xf4\xbd\xa0\xf5\x56\x28\x4d\xcf\x71\x29\x2f\xe7\x0f\xca\xa8\x25\x9b\x9f\xaf\xf3"}, {{0x10,0xf0,0x09,0xaa,0x88,0x7d,0x91,0xce,0xd8,0x09,0xaf,0xe1,0x92,0xd7,0x8e,0x47,0x99,0xd9,0x03,0x77,0x62,0xf4,0xa9,0xd3,0xa4,0x29,0xfd,0xe0,0xf3,0x9f,0x7b,0x7a,},{0xcf,0x51,0x16,0xb9,0x21,0x21,0x2e,0x9b,0x78,0x82,0x9a,0x02,0x63,0x46,0x36,0x91,0xc6,0xfb,0xcc,0xdc,0x0c,0x11,0x8b,0xe1,0x41,0xc9,0x6f,0x8c,0x88,0x05,0x3d,0xd3,},{0xc3,0x7b,0xb7,0xb7,0x3b,0x11,0x05,0xbe,0x08,0x6f,0xf3,0x07,0x69,0x72,0x07,0x72,0x62,0xdf,0x4d,0x73,0x32,0xf6,0x08,0xc7,0xb2,0xb9,0xd9,0x78,0xd4,0x74,0xcb,0xbc,0x27,0x10,0x46,0x08,0x00,0x35,0xf3,0x96,0xee,0x36,0x47,0x9b,0x7a,0x67,0x11,0xc6,0x8e,0x25,0x61,0xc7,0x41,0xc0,0xec,0x5f,0xc9,0xec,0xa1,0x73,0x4e,0x81,0x1f,0x04,},"\x2e\xdf\x14\xd6\xcd\x56\x89\x6e\xea\xa7\x70\x21\x1c\x49\x84\xbe\xd8\x0e\xca\x8d\x65\x34\xd5\xd5\x10\x88\x4f\x55\xf1\x1f\x99\xff\xa9\xf8\x9b\x58\x6f\xfe\x7b\x1e\xc7\xea\xab\x6a\x9d\xc1\xa2\x4a\x3e\xe3\xc7\xa6\xab\x44\xad\xe9\x91\x78\x83\x26\x4e\xde\x2f\x13\x61\xbe\x7d\x7a\x38\x17\xf2\x9d\xec\x95\x81\xc3\x19\xf1\x8f\x95\xd5\xbe\x26\xd9\x11\x8b\xe6\x78\x34\x00\x37\xa6\x8a\xbf\xc5\xef\xbb\x9a\x3f\x3f\x38\x78\xaa\xe3\x72\x1f\xfe\xf5\xbb\x6a\x26\xc7\xb1\xa3\xa5\x6d\x2b\xda\x6c\x6e\x86\x0e\xb4\x1f\xd8\xd8\x37\x11\x74\xd9\x1c\x74\xc5\xeb\x67\xc3\x85\x5c\x63\x0d\x64\x1d\x2e\x57\x1a\x9a\x51\xc6\x40\x2c\xfe\x18\x42\xce\xf3\x89\x80\xcb\x8d\x0a\x64\xbc\xc8\x9b\xe3\x18\x9e\x68\x11\xf4\x7e\x8f\x4d\x00\x63\xa5\xb1\x60\x1f\x44\xfd\xa2\x0c\x1c\x4c\x2f\xc4\x9c\xbe\x27\xa4\x13\x7d\xc4\x63\x8c\x2a\xd2\xd0\xa5\x47\x47\x47\x22\x9c\x56\x8e\x38\x05\x43\x1f\xa3\x6e\xeb\xa7\x85\xf7\xb9\x78\x44\xb5\xe3\x19\xfa\x6a\x09\xcc\x5a\xe8\x40\x34\x74\xbb\x91\xdd\x89\x6c\x1e\xc2\xba\xc7\x3d\x2e\x50\x5e\xfc\x62\xbd\x50\x2b\x5c\xeb\x08\xd1\x6e\x83\x2e\xc5\xdc\x4f\x98\xb5\x1b\x9d\x07\x38\xb9\xfb\x28\xf3\xab\xe8\x96\x6b\xf2\x23\x75\xa0\xb2\x2c\x47\x1a\x9e\x58\xe3\xfd\x70\x0d\xe1\x5c\x52\x96\x37\x3c\x1b\xc9\xd4\x64\x0e\xb7\x81\x6e\x1d\xc9\xc8\xce\x86\x19\xa8\x11\x83\x00\x9e\xc9\x74\x87\x1e\x8f\x0a\x97\x72\xed\xe0\xa6\x38\xb3\x57\x4b\xf7\x5d\x8f\x55\x98\x7f\x3c\xfa\x6f\xec\x68\x97\x0b\xfe\x00\xb2\x3b\x59\xfb\x5b\xf4\x99\x6e\xa5\xd7\x70\x4f\xcf\x2e\xff\xcc\x0f\xd7\xf3\xd8\xe6\x05\x60\x08\x09\x7f\x26\xca\xff\xd5\x41\x5a\x28\x2a\x27\x6a\x9b\x26\x45\xe5\xca\xb1\x29\x68\x87\x2e\xb0\x52\xf4\xd7\xc1\x0c\xc7\xc2\x1d\x51\x61\x81\x8b\xb4\x4c\xc8\x56\xb0\xde\x76\x9d\x55\x9c\x55\xdf\x64\xad\x9a\xdc\x16\xc0\xac\x65\x83\x8f\x66\x0d\xa8\x13\x86\xb7\x0b\x93\x52\x5e\xc2\xf4\x0f\x6f\x63\xf8\xea\x5d\x48\x30\xb9\x64\x6c\x46\x18\x3b\xb4\xe6\xf2\x70\x47\xbd\xa2\xa5\x46\xbd\x34\xbd\x4d\xb5\xfb\x88\xfd\x8a\xb7\xc7\x5f\x65\x2e\x15\xd5\xaa\xa6\xb4\x6a\x8a\xcf\x6e\x44\x8b\xf2\xdd\x64\xde\xe3\xc1\x05\x64\x7c\x7f\x83\xad\x20\x0d\x80\x97\xc4\x44\xa1\x58\xd8\x5a\x54\xf0\xe5\xdb\xb1\x2b\x43\xde\x94\x3a\xf1\xa8\x18\x56\xac\x96\x9f\x52\xa0\xbd\x45\x43\x81\xbd\x26\x50\x41\xa2\x69\x1d\x1a\x4a\x0d\x81\x9f\xa7\x90\x92\xc8\x80\x35\x21\xfa\x53\x68\x9a\xb8\x52\xf1\xfb\xab\xe0\x0c\x94\xb7\xf6\x82\xd1\x21\xcf\xf5\x43\x91\x32\x25\x29\xc8\xd5\xad\x7b\xbb\x98\xea\xfe\x30\x0a\xb9\x22\xf1\xc8\x92\x40\xa1\xe6\x33\xcf\x56\xa7\xb0\x2f\x74\xa2\x92\x14\xe5\x69\xa0\x57\xbd\x58\x5e\x40\x4d\x7c\xd5\x35\x20\x41\x45\x6e\x6c\xf9\x0c\x15\x34\x2e\x02\x56\x70\xf4\xfc\xcd\xf9\x87\x83\xb6\x85\x32\x14\xca\xc3\xfa\x80\x8a\x66\xc2\x7b\x65\x3c"}, {{0x45,0x78,0xc6,0x5a,0x7c,0xa4,0x8f,0x27,0x74,0x05,0x0a,0x7b,0x0c,0xe7,0xa4,0xfd,0x5a,0xd4,0xe6,0x96,0xb2,0xb8,0xaf,0x23,0x96,0x16,0x4a,0x1c,0x7e,0x1b,0x7b,0xd7,},{0x15,0xbf,0x9d,0xbd,0x3b,0x81,0x73,0xe6,0xf0,0x3d,0xcf,0xd5,0x75,0xd9,0x09,0x84,0x5f,0x03,0x8e,0xaa,0x09,0xc5,0xd9,0x08,0xfe,0xf9,0x08,0xa9,0x74,0x58,0xb3,0xef,},{0xa1,0xc2,0x42,0xb4,0x5e,0x94,0xfd,0x18,0x0f,0x05,0x4c,0x71,0x01,0xe5,0x5b,0x39,0x65,0x68,0xf4,0x83,0xdb,0x6f,0x0d,0xfc,0x41,0x68,0xb6,0x9b,0x59,0xd3,0x85,0x81,0x4c,0x19,0xeb,0x30,0x75,0x23,0x7d,0x1f,0xbb,0x1f,0xee,0xbb,0xfe,0xa5,0x0c,0x56,0x81,0x3c,0x8c,0x39,0xc2,0x27,0x52,0xe0,0x2d,0xb7,0xe5,0x7f,0x3e,0x3f,0xbf,0x0d,},"\x50\x6f\x32\xb9\x68\x14\x24\x3e\x4d\xd8\x87\x0a\x8f\xd6\x0d\xde\xf0\x9b\xb8\xc5\x63\x15\x10\x70\xd9\xbc\xb2\xb1\x60\xa3\xea\xbd\x71\xa0\x44\xd7\x1e\xc9\x3f\xba\x95\x28\x8e\xd6\xfe\x1a\x7b\x92\x16\x51\x60\x43\x07\xd6\x5a\x45\xec\x5d\x3f\x26\x31\xac\xe4\x0e\x58\xd5\x3c\x72\xe5\x26\x88\x6e\x16\x97\x2f\x6e\x0d\xb9\x4d\x57\xb5\x56\x34\xfd\x39\xd5\x5e\x9b\xb7\xf2\x12\xaf\xab\x00\xf7\x74\x64\x09\x26\x7e\x8d\x56\x5f\xf5\xc2\x25\x73\x33\xc3\xd0\x41\x52\x17\x4f\xe1\x2d\xe6\xa5\x7b\xea\x05\x7d\xc2\x19\xe2\xfb\xa5\xf1\x91\xed\x81\x41\xc0\x18\x96\x9d\xe1\x94\x72\xd6\xaa\xf7\x63\xf1\x9e\xc5\x54\x70\x2b\xb3\xdc\xbe\x13\xca\x9b\x23\xb2\x41\x8c\x99\xe7\x18\x38\xa8\x8c\xf4\x54\x72\x8c\xf9\x20\x8a\x16\xc8\x4e\xa3\x98\x29\xb4\xba\x9b\x4c\x77\xe1\x76\x11\x2b\xfe\x1b\xf3\x5f\x95\xc4\x02\x8c\x7d\xb8\x0b\x36\xfa\xa2\x9d\x2b\x89\xe9\xe8\x62\xf3\x10\x00\x06\x5f\x13\x9b\x3d\xa7\x7d\x9d\x86\x85\x30\x57\x4b\x7e\x39\x1e\xd9\x7b\x34\xf8\x78\x16\x4f\x6b\x8d\x87\xb4\x06\xc7\xdc\x78\x60\xa5\x17\x5f\x92\x0e\x5a\x62\xdc\x1f\xc8\x2e\xd8\x45\x25\x43\xb1\x07\x36\x0d\x35\xd2\xb4\xc4\x23\x9e\xab\x46\x6d\x32\xbf\xda\x34\xf5\x10\x37\xa6\xfa\xe7\x6f\x6d\x8b\x83\xe8\xf7\xf4\x89\xdd\x4c\x1b\x49\xc3\x8f\x53\x57\x6e\x62\x17\x2c\x17\xde\xe3\x66\x5f\xde\x8c\xbf\x01\x5a\xf9\x66\x5b\x0f\x1d\xa2\xfb\x77\xb1\x34\xf0\x4b\xe2\x71\xe4\x02\xf3\x15\x37\xc2\xfc\x05\xc2\xf9\xb6\xfc\x3f\xfe\x47\xde\x33\x69\x13\x38\x67\xc6\x9d\x10\xe7\xf5\x37\xba\xe4\x56\x7d\x46\x8e\x0f\x2e\xd8\x06\xfe\x33\x5f\x93\x9c\x75\x99\x4f\x36\x3c\xe3\xb7\x0d\xaa\x7d\x5b\xd2\x31\x7c\x83\x38\x51\xfd\x8c\xc9\x72\x51\xec\x41\x90\x23\xd9\xd0\x17\x4d\x84\xd5\x60\x9a\x69\x18\xa1\x74\x0e\xb1\xe3\x09\xbd\x12\x73\x66\xde\xb9\xc5\xab\x12\x99\x2e\x99\x02\xe0\x15\xfe\x58\xd6\xad\xbf\x52\xd2\x2a\x76\x0a\xcd\x63\xe1\xed\xd8\xf1\x38\xe9\xfb\x01\x37\x18\x86\x01\xe1\x97\x8e\x7d\x04\xfb\x2a\xda\x2b\x2a\xee\x12\xf4\x9f\x28\x36\xc6\x84\x2d\x88\xcf\x48\xc8\x66\xe3\xd3\x3f\xcd\x26\x9c\x27\x5c\x89\xc2\x5e\x36\x69\xca\x90\xde\x7b\x67\xa7\xe7\xa3\x82\xcb\x7e\xfa\x47\xe9\xc2\xbf\x76\x57\x1c\x79\xa2\x50\x85\xef\x02\x04\x87\x15\x2f\x06\xbf\xa1\x33\x01\x5a\x1b\x8f\x1c\x0f\x6a\x9f\x0e\xae\x1b\xa6\x2b\xf1\x04\xf1\xc1\x6a\xc1\x4e\x1e\x96\xc4\xeb\xdf\x06\x1e\x0c\xc7\x10\x1d\x38\xda\x7e\x9e\x09\x94\xda\xf0\xf3\x22\xaa\x3c\xfe\xf9\x1b\x61\x6c\x2d\x00\x06\x89\xab\x18\xed\x45\x26\x8d\xcd\x27\x50\x94\xf6\x56\xba\x3c\xf5\x15\x26\x10\x24\x74\x1f\x74\x44\xab\x7f\xc4\xde\xcc\xe1\x67\x56\x03\x2a\x1b\xe2\x70\xff\x0b\x03\x17\x54\x2b\xa0\x26\x62\x26\x0a\x37\x6f\xc9\x12\xcb\xb0\x29\xca\xc5\x45\x15\xf5\xa5\x51\x36\x4f\x6a\x99\xff\xad\x0b\x9c\xbc\xd0\xe6\x93\xb7\xa5\x21\xcb"}, {{0xc2,0x1e,0x70,0xc4,0x6e,0xde,0x66,0xe6,0x8a,0x88,0x73,0xbb,0xc6,0x4b,0xa5,0x12,0x09,0x30,0x3a,0x0a,0xc4,0xfc,0x49,0xb1,0xd8,0x3e,0x81,0x93,0xad,0x46,0xc0,0x37,},{0x9f,0xbf,0x80,0xa4,0x25,0x05,0xd2,0xc9,0x52,0xf8,0x9f,0x45,0x58,0xc3,0xe6,0xd1,0x87,0xa7,0xbc,0x1e,0xf4,0x46,0xb2,0xe3,0x73,0x23,0x43,0xc1,0x3b,0x33,0xd2,0x00,},{0x0a,0xe3,0x43,0xbb,0x84,0xe3,0xa2,0x99,0x07,0x8e,0x24,0x34,0xba,0x22,0x00,0x22,0xf3,0x16,0x0f,0x96,0x8a,0xc0,0x44,0x82,0xbf,0x8c,0xad,0x13,0xb4,0x23,0xf2,0x67,0x0f,0x01,0xfb,0x5f,0x7b,0x32,0xc5,0x97,0x52,0x0f,0x84,0x60,0x7e,0x0f,0x79,0xc0,0x75,0xfa,0x70,0x78,0xe6,0xe6,0x9d,0x3c,0xec,0x31,0x92,0x65,0xd4,0x66,0x08,0x0b,},"\xf5\x5a\xa5\x70\xce\x4f\xc9\x5f\x73\xf5\x17\x20\xd2\x54\xe4\x69\x5f\xcd\xc8\x1a\xaa\x04\x01\x30\xc7\x68\x7f\x03\x9b\x8b\xa5\x9e\xd8\x57\xce\xb2\x9c\x12\x10\x25\xa8\x57\xfe\xac\xb4\xa0\x1f\x38\xe0\x11\x78\x31\x0a\xe6\xe3\x5c\x99\x8e\xbf\x89\xdd\x79\x05\x7b\x4a\xfc\x6d\xb3\x40\x60\x1c\x81\x70\x3c\x87\xa8\xc4\x0e\x5c\xeb\xb0\x44\x1d\xf7\x8a\x6d\xe1\x3a\x44\x7c\xb0\x16\xc6\x5e\x74\x1b\xb7\xdf\x30\x4d\x83\x05\x6b\x72\xc6\x82\xc7\x31\xfa\xc0\xa0\xc7\x0b\x78\x11\xca\x14\xa5\x01\x54\x61\x30\x99\xc2\xc4\x37\x52\x1c\x40\x4b\x63\x61\xde\x36\x21\xf8\xea\x56\xb0\x8e\xbf\xdb\x07\xb4\xf2\xbb\x8b\xa2\xec\xc1\x64\x33\x6d\xa8\xef\xc9\x42\x76\x6e\xf0\xc7\x4d\xfd\x3b\x49\xe0\x87\xe9\xa2\x7a\xe5\x4a\x7a\x2b\x98\x28\x1b\x9a\xf9\x3d\xc1\x1a\xa2\xf0\x92\x24\xab\x5a\x73\x0f\x02\x18\xf4\xa6\xe1\xea\x48\x85\xa7\x7f\xbd\x93\xa1\xc5\x82\x77\xd9\xe0\x1b\xe7\x3a\x25\xcd\xa9\x18\xfc\x27\xdd\xdb\x45\x3a\x5d\xa6\x90\x2a\xd0\x2b\xa0\x57\x75\xc6\x7e\x07\xbe\xa4\xdf\x86\x91\x34\x66\x74\x43\x65\xc1\x32\x6e\x0a\xb5\xe1\x25\x4c\x17\x96\x74\x47\xd5\x91\xba\x5e\xd1\xb6\x3a\x42\x54\x3b\x87\xfe\xd4\x14\x59\xa0\x89\xbc\xea\xff\x21\x98\x02\xa8\x7a\x87\x2a\x76\x3e\x69\x23\x33\xce\x1c\xc7\x39\x78\x25\x08\x4b\x2b\x83\x1e\x93\xd8\x0d\x67\x37\xf3\x29\x80\xf2\xf3\xae\x82\xc6\x21\x90\xfe\x3f\xa7\x00\xc5\xb7\x32\x9d\x6d\x50\x04\x2b\xdf\x83\x1f\x37\x54\x8f\xcc\x80\xb1\x1f\x57\xcf\x20\xf6\x7a\x3b\xb6\x51\xa7\xbe\xff\xcc\x48\xb7\x0d\x17\xeb\x60\xf7\x25\x9c\xc5\x3b\xf7\xff\x60\x80\xeb\x2b\xd0\x92\x3b\x04\x83\xaa\x30\x65\xa8\x95\x5f\x01\xd2\x3b\xa8\x09\x51\xe0\xae\xfd\x2a\x93\x72\x19\x15\x72\xbc\x52\x91\x6a\xa2\x2a\x2a\xec\x39\x37\x67\xfa\xfd\x08\x68\x39\xe2\x36\xfe\x04\x60\xce\x6d\x63\x9c\x7c\xe6\x9f\xe7\xf9\xd3\xaa\xd2\x13\x05\x73\x44\x35\x70\x44\x3b\xe6\xba\xb9\x3a\x06\xa5\x4b\x8a\xc2\x9b\xf3\x3f\xf9\x94\x9b\xc9\x21\x58\xe6\x92\x4b\x6b\x68\xec\xda\x5f\x6f\x3a\xaf\x42\xb3\xd2\x2d\xf6\xd5\xe6\x7d\x5c\xb3\xab\x71\xeb\x8e\xe0\xb0\xe6\x67\x32\xe1\xda\xca\x6c\xd6\x0d\x9a\xa7\x43\x05\xfc\xd5\x70\x07\x6d\x22\x8d\x44\x6d\x5e\xe5\x42\xb1\x04\x88\xbf\x8a\xa9\x88\xf4\x51\xfa\xeb\xe7\x4a\xb6\x69\xd6\x04\xd9\xdd\xb1\x51\x06\x62\x0e\xa0\x2e\x8d\xb3\x8c\xe6\x39\xb5\x74\x78\x12\xbb\x90\x48\xee\x8b\xf7\x2b\x1a\x95\x1a\x05\xdf\xfa\xc9\x54\x17\xcb\x43\xb0\x6d\xce\x61\xee\x3d\xa6\xf2\x83\x2e\xe8\x3b\x2e\x72\x88\xdd\xd6\x2e\xeb\x58\x93\xf7\xf2\xf6\xc8\x09\x0d\x99\xe3\x36\xc9\xf9\x06\x9e\x18\x15\x98\x58\x41\xbd\xd5\x05\xb5\xf8\x3d\x89\x5e\x87\x95\x93\xda\xde\xe7\x2c\xeb\x97\x65\x69\x9b\xf8\x0b\xd0\x6a\x5c\x55\x33\x1b\x25\x45\x52\x7d\x0c\x7c\xae\xce\x96\x58\x4c\xe3\xec\x7f\xe0\x22\x60\xf2\x0b\x8a\x1c\x06\x35\x76\x3f\xf4"}, {{0xf2,0xc1,0x05,0x77,0xf7,0xdf,0x77,0xf0,0xc1,0x15,0x7a,0x8c,0x33,0x1a,0x7b,0xd2,0xae,0x63,0x86,0x67,0x0e,0xb6,0x5f,0x0f,0xae,0x12,0x23,0x31,0x69,0x0f,0x82,0x8a,},{0x0d,0x4c,0x34,0x0f,0xc2,0x31,0xaa,0xfb,0x3b,0x6f,0x74,0xb8,0x9b,0xce,0xf7,0xee,0xaa,0x0b,0x04,0xf2,0x93,0xec,0x85,0x44,0x24,0x7b,0xfc,0x3f,0x2d,0x57,0xc1,0xe0,},{0x60,0xb7,0x03,0x11,0x5a,0x32,0x2a,0xb8,0x92,0xc2,0x76,0xbf,0xd1,0x8f,0x70,0xa9,0xeb,0x0c,0x73,0x23,0xe2,0xc0,0xa6,0xeb,0x5f,0xc7,0xe3,0x30,0xb0,0xbc,0x3b,0x07,0xa5,0x78,0xa0,0x82,0x84,0x62,0x64,0xf0,0x32,0xc6,0x19,0x1d,0x04,0x0b,0xd9,0x8e,0x5d,0x5a,0x4d,0x4f,0x07,0x6f,0xb9,0x06,0x2a,0xcd,0x36,0xbe,0xa4,0x0c,0x91,0x02,},"\x38\xea\x1e\x02\x8a\x49\x3d\x1c\x60\xec\x70\x74\x9f\x14\xd4\x36\xeb\x3a\x2b\x2d\xe5\x4f\x21\x3d\x01\xa6\x45\xb5\x80\x43\x0e\xcd\x8e\xce\x6b\x55\x69\xcc\x01\x7a\x49\x43\xe5\x59\x5c\x5e\xd6\xe4\x8c\x94\x43\xf2\xfa\x5e\xb2\x22\x7f\xfe\x56\xd2\x11\xf2\x69\xbc\x8f\x6f\xa9\xee\x8c\xd5\x6f\x6b\x84\x70\x53\x92\x08\xaf\xe2\x9a\xb0\xa1\x95\x04\x4d\x95\x7b\x31\xf9\x3e\x18\x4a\x9c\xbe\xf1\xa1\x4e\x14\xf8\x08\xbb\xf5\x89\xac\x77\x70\x08\x4f\x99\x8e\x1b\x25\x4d\xa5\x9c\xa6\xd3\xe6\x2e\x7b\xe1\x79\x07\x16\xd2\x56\x0f\x01\x5f\x39\x9c\xbb\xce\x48\xcf\xd0\x39\x1e\xad\x19\x93\x44\x6f\x6b\x24\x93\x97\x7d\x93\xd7\xb0\x9a\x07\xa7\x9a\x59\xce\x15\xdc\xe7\xa1\xda\x9c\x64\x6f\x45\xaf\x2c\xca\xd5\x5b\xa1\x58\xe6\x38\xc4\xa3\x0c\x5d\x30\xe9\xac\x6e\x3a\x33\x39\xc2\x43\x42\x6d\x86\x49\x1b\x2d\x92\xda\xc1\x47\x8e\x8d\x74\xff\x0b\xf1\x49\xbd\xb5\xe0\x9e\x3f\xb6\xb8\x26\x2e\xb0\x68\x79\x81\x55\x4a\xe2\xcb\x47\x19\x63\x39\x07\x9d\xa0\xa1\xa5\x72\x39\xc1\x9b\xf7\x81\xf6\x2f\xda\xf4\xe3\x15\x60\xa8\x43\x17\xef\x03\x04\x92\xcf\x1b\xb1\x30\x5b\xa8\x51\x8e\xba\xf2\xb4\x34\xd3\x64\x16\x72\xc8\xf6\xea\x2d\xef\xa6\x96\xdc\x7e\x4f\x39\xef\xc0\x8d\x28\x8d\x1c\x96\x6a\x6c\x71\x48\xc0\x12\xee\xc4\x39\xf7\xe1\x2d\xba\xb5\xb8\x7c\xfa\x44\xc9\xae\x19\x00\xf8\x38\x6f\x24\x44\x4e\x10\x92\xb2\x3a\x27\x4c\x13\x8e\x95\xc6\x61\xe9\x37\x7e\x8a\xd2\xd1\xfc\xaf\x19\x39\xec\x9a\x63\x2a\x87\x3f\x7e\xad\xbe\x68\x7b\x4a\x03\x3b\x92\xa4\x77\xf2\xe0\x2e\x9e\xd9\x2c\xe4\xf9\x5c\xf1\x70\xb3\x90\x15\x18\xa0\x62\x14\x3e\x56\xdb\x05\x4d\xf4\xe4\x43\x15\x44\x78\x5a\x6d\xfa\x24\xee\xc0\xf0\xde\x7a\x69\x9c\xcf\x28\x6d\xad\xfa\xd8\x59\x03\x61\x22\x50\x76\x4f\x25\xcd\xea\x81\x27\xd0\x07\x8d\x55\x48\x25\xea\x6e\x73\x71\xc4\x38\xbc\x46\xf2\x9f\xb8\x93\x7f\x8d\x9a\x39\xcf\x88\x49\x05\x2d\x43\xec\xbf\xf6\xc4\xa3\x76\x2a\x5f\x40\x0c\x15\x14\xe8\x5e\x91\x38\x4f\xef\x9b\x40\xf4\x31\x4e\x22\x3a\x9d\x68\xc5\x26\xac\xc7\x02\x27\xd6\x2b\x8b\x63\x7a\x34\x2d\xf1\x13\xd3\x18\x20\x2c\x51\xed\xd3\xc1\xef\xd1\xff\x20\xb1\xff\x07\x8b\x32\x06\x8e\x79\x4d\x92\x81\x33\x03\x7f\x1e\x3a\x34\x68\x9e\x62\x9e\x43\xfd\x2b\x8e\x88\xea\xb5\x0d\x7e\x7a\xb0\x64\x70\x14\xab\x5e\x4a\xd5\x82\x00\x65\x67\xef\xf7\x2b\x5a\xf2\xda\xc5\x36\x89\x2c\xcc\x87\x1f\x8a\x80\xb5\xcb\x79\xd9\x0b\xcc\x6b\x77\xd4\xcd\x08\xf8\x76\x18\x4e\xf5\x8c\x06\x4a\xe4\x30\xbb\x79\xa6\xb9\xe9\x6b\x0a\xd8\x73\x68\xaa\x83\x8a\x8d\xcc\xff\xac\x0c\xd8\xce\x9e\xa0\xd0\xec\x4c\x4b\x0f\x42\x67\x34\x16\x65\x9c\x98\x49\x92\xcf\x53\xb1\xe4\x45\x43\x10\x07\x64\x0d\x47\xec\xe2\x6d\xee\x4a\x29\x43\xaa\x70\x97\xdd\x35\x6c\xff\x47\x54\xf2\x1a\xc0\x7f\x6b\x3f\x73\xc4\x69\x05\x55\x12\xf3\x7a\xba"}, {{0x04,0x1a,0x97,0x90,0x6b,0x59,0x56,0xb9,0xd3,0x40,0xf2,0xe0,0xd7,0xa1,0xdc,0xbf,0xef,0xe6,0x63,0xe9,0xbb,0x40,0x26,0xf8,0xcc,0x1a,0xe7,0xe2,0xa1,0x4d,0xe2,0x7e,},{0xf3,0x82,0xd3,0x2e,0x88,0xc3,0xa7,0x2c,0x7c,0xad,0xda,0xfc,0xf8,0xaa,0x69,0x9e,0x21,0xdb,0x7a,0x6b,0xf4,0xed,0xd6,0xe4,0x9a,0x00,0x5a,0xad,0x70,0x2e,0x6a,0x79,},{0xa2,0x3f,0x03,0x2e,0x66,0x92,0xa0,0xe8,0xbf,0xee,0x5b,0x2d,0x30,0xb4,0x14,0xcb,0x16,0xc3,0x5a,0xd0,0x8d,0xa3,0x1f,0x69,0x6d,0x46,0x1a,0x02,0x85,0x78,0x22,0xc4,0xef,0x35,0x7f,0x0c,0xcf,0x31,0x02,0x5a,0x4d,0xc9,0x5c,0xed,0x30,0xa9,0x94,0xf4,0x1e,0xdd,0x1d,0x08,0x7a,0xfc,0xaa,0xf3,0xe8,0xe8,0x75,0x70,0x83,0x20,0xf8,0x0c,},"\x71\xa7\x59\x57\x41\x15\x44\x97\x5a\x48\xcf\x10\x3a\xa1\xf8\xe2\xad\x15\x24\x44\x59\xcd\xc0\xe3\x36\x96\x6e\xb8\xb2\x6c\x97\xf2\x16\x9e\x5d\x78\x53\x70\x37\xef\xc0\x77\xe8\x6f\x06\xe0\x5e\x9c\x1d\xc3\x41\x82\x88\xc0\xa2\xbe\x6b\xa3\x4b\x3a\x04\xab\x20\xba\xe7\xf3\x62\x10\x94\xb8\x7d\x78\xa7\xea\xcb\x86\x4d\x40\x78\xcb\x4e\xfc\xba\xc5\xad\xd9\x37\xa2\xc6\x01\x2e\xe1\xa8\xb2\x56\xcc\x27\x6b\x65\xd5\xe9\x2b\x4d\x00\xb9\xb1\x1f\xad\x88\x49\x91\xde\xc4\xc1\xcb\x9d\xce\x18\x63\xc8\xb0\xa2\x10\x16\x1a\xe6\xb3\xf8\xbf\x9c\xc4\xdc\xe4\xad\xfd\xc8\xed\x57\xd8\x3e\x95\xab\x9d\xd2\xd9\x26\x58\xdf\xbd\x3a\xfa\x99\xe3\xf8\x95\x1e\x2a\xd7\x4a\x14\x8f\x6f\x59\x7e\xb2\xc9\x45\xc1\xf1\xb9\x44\x61\xae\x07\x45\x48\x1f\xd0\xed\xf8\x38\xc6\x28\x60\x35\xe3\x6f\x01\x12\x38\x87\x5d\xbb\xa2\x28\x9d\x3d\x6a\x39\x42\xa7\xf9\x55\x4c\x64\x43\x05\x24\x4d\xdb\x77\xc1\x17\xcb\x4b\x56\x23\x77\x29\xdd\xe4\x28\xb8\xbb\x42\xdf\x9c\xe2\x9e\x14\x4d\xfc\x96\xcf\x6c\x67\x67\xb1\xee\x6d\x05\x3c\xe4\xf8\xbb\x20\x56\xab\x78\x10\xaa\x13\x68\xa8\x91\x0f\x2f\x69\xe0\x61\xc1\x9d\x88\x47\x18\x4f\xed\x53\x4f\x98\x75\x8d\x70\x3a\x76\x88\x5f\x91\xeb\x75\x2a\x21\x95\x4a\x10\xc6\xf6\xb4\xda\x10\x46\x4d\xed\x36\xb0\x00\x89\xf6\x62\x91\x54\x21\xbf\xda\xd4\x96\x75\x36\x89\xcc\xd0\x3b\x62\x40\x21\x08\x07\x61\xe6\x81\x76\xb1\x06\x97\xda\xc8\x78\xe4\xc3\xdb\x2f\xd0\xb2\x8c\x65\x53\x35\xd9\x80\x16\xf1\x9f\x26\x5b\xb0\xb2\x43\x4c\xb4\x63\x78\x44\xd9\x1e\xd0\xce\x05\xed\x25\x91\xfd\x99\x89\x65\xf8\x3f\x31\x97\xd1\x0e\xef\x44\x88\x50\xe7\x92\x03\x27\x24\x70\x1d\xa3\x05\xcb\x6d\x79\x46\x69\x48\x3f\xc3\xdc\x6f\x68\x6b\x18\x3e\x29\x99\x13\x0c\x8f\xc0\x05\x8d\xca\xbb\xc9\x18\x8f\x26\xb2\xd6\x3e\xbd\x6c\xb1\xe1\x8a\x09\x7c\x77\x04\xa5\x9b\x5e\x18\x7e\x01\x42\x59\x3b\x70\x83\xf7\x40\x0a\xfa\x9b\x1b\xf0\xc1\xcc\x6c\x35\x6b\xc4\x33\x4a\xf7\x72\xe6\x71\x53\xb4\x5b\x33\x1b\x99\x09\x20\xc2\x4e\xed\xe2\xc6\xe3\x23\x70\x3f\x52\xec\xd6\x07\x35\xb2\x3b\xf2\x2b\x81\xee\x77\x59\x27\xc3\x7e\x53\xda\xd7\x59\x6e\xa6\x5a\x73\xbb\x96\x77\x5f\x3b\x87\xc8\xb3\xc0\x88\xec\x69\x5b\xc3\xa7\x50\x2c\x0c\x51\x0f\x02\x0b\xf9\xac\xa3\xcb\xb7\xa2\xc0\x11\xc6\x7f\xf2\x7d\x63\x4c\xaf\x1d\xcf\xc5\x8e\x5e\x39\x7e\x66\x58\x25\x22\x72\x01\x1c\x8f\xfd\xd6\x42\x30\xa9\x32\x41\xff\xf6\x83\x72\xc4\xba\x85\x38\x2b\xbb\x22\x93\x09\x65\x29\x22\xdb\x68\x83\x66\x31\xe5\x5b\xe6\x9a\xb6\xad\xb8\xe4\x33\x53\x57\xfc\x92\x3e\xfe\x15\x4a\xfc\xc2\x22\xd6\x0d\x07\xf5\x69\x90\xa3\xe5\xa2\x14\xb2\x27\xae\xcf\xf2\xcd\x1b\xb6\xf0\xc7\x9f\xf5\x45\xf7\x0a\x61\x61\x41\xa9\xd5\x3f\x92\x2a\x02\x44\x3f\x7d\x2a\x46\x89\xc3\x5b\x09\x5d\xd3\x94\xd5\x0b\xf4\x9f\x96\x80\xa5\xf7\xd9"}, {{0x4b,0xc5,0xe0,0x5a,0xa0,0x03,0xa4,0x49,0x2f,0x4b,0xad,0x10,0x2a,0x53,0x90,0xf7,0xce,0xba,0xb3,0xd3,0xec,0xa9,0x15,0x21,0x42,0xad,0x5e,0xf7,0xd8,0x40,0x30,0xae,},{0x67,0x51,0xd3,0xad,0x8b,0xb6,0xc6,0x4d,0x6a,0x17,0xd7,0xe4,0x47,0xa2,0x7d,0xa2,0x2f,0x5f,0x04,0x03,0xf4,0x37,0xba,0xc9,0x44,0x9f,0x13,0xcc,0x85,0x3d,0xd8,0x40,},{0xa2,0x4f,0xee,0x11,0xf7,0xec,0x6d,0xa3,0xe9,0xdf,0xaf,0x6c,0x85,0x8a,0xc0,0x04,0xb4,0x53,0x1a,0xbd,0x1c,0x9d,0x3b,0xb6,0x4f,0x40,0xdd,0x24,0x7f,0x00,0x35,0x93,0x50,0xe4,0x3b,0x2d,0x4b,0x8f,0xbe,0xc5,0xf6,0xb2,0x41,0xec,0xf9,0xf1,0x10,0x14,0x85,0xcf,0x41,0x87,0x35,0xb0,0x5f,0x71,0x20,0x18,0x33,0x5b,0x20,0x06,0x83,0x08,},"\xa8\xf7\x94\xdb\x17\x95\x66\x7d\x28\xd2\x4b\x70\xac\x22\x00\xa6\x23\x9a\x34\xe2\x43\x8c\xed\x1d\x03\xf9\x7e\xd4\x8b\xeb\x4d\x6b\xea\x67\xc1\x43\x38\xf7\x73\x64\x19\xdc\xd2\xa2\xa7\x97\x37\x26\x57\x2e\x6a\xfe\x7e\xdf\xef\x22\xc9\x9b\xe8\xb0\x69\xf0\x4f\x6d\xc6\x1a\x13\xb3\x43\xc6\xe5\x85\xab\xad\x22\x14\xd8\x5c\x36\xf0\x29\x96\xfa\xbb\x46\xbb\x91\xb5\x17\x6a\xc7\x08\xe4\x9a\x0b\x05\x30\x17\x04\x8f\xbb\x55\x45\x3f\x2b\x82\x08\xd6\x67\x8d\x1a\x8c\xf6\xa1\xee\x9a\xd7\xa9\x1e\x38\x03\x25\x63\x5d\x1e\x23\x6a\x6c\xa1\xd6\xcc\x7f\x6b\x59\xf2\xa2\xbf\x18\x4f\x5e\xe4\x51\xd6\x79\x9f\x69\xba\x11\xa0\xcd\x6b\xc0\x4b\xe8\xa3\x51\xa8\x0e\x72\x5b\x5f\xc4\x56\x3e\x45\xbd\x47\x49\xec\xbc\x45\x20\x52\x29\x10\x5b\x9d\xe7\x32\x61\x49\x85\x27\xf3\xd4\xec\xfb\xb5\x83\xff\x53\x27\x53\xd0\x7c\x38\x52\x6b\xb4\x82\xd1\x71\xa2\x61\xb9\xcf\x89\x90\x6a\x7d\xea\x8c\xbd\x7e\x72\x6b\xa3\x1e\xa6\x88\x03\xa6\xb0\x04\xf6\xdc\xd1\x9e\x67\x19\x50\x46\x37\x38\xcc\xa7\x8b\xb0\xdf\xfa\x3d\x64\x57\xe4\xae\xca\x65\x7e\xc6\x49\xb9\x7e\xe3\x0e\x97\xc8\xcb\xe6\xce\x43\xc2\xaa\x9a\x69\x95\x8e\x9d\xc8\x81\xe4\xaa\x7b\x32\x78\x07\x4e\x78\x7a\xce\x5f\xb6\x01\xd7\xfa\xf7\xca\x51\x03\xec\xbb\xd3\xbd\x55\x4e\xb1\xb0\x66\xf8\x29\x6d\x2c\xc5\x7e\x8c\x8a\x32\xe9\xc0\xe6\xa9\x26\x96\x4d\x6d\xf2\xd8\x64\x58\x64\xb3\x22\xc3\x22\xf1\xca\x80\x73\xce\xdf\x2b\x55\x67\x11\xa7\xa2\x0b\x77\xc0\xa1\xed\x27\x7a\x9a\x6c\xa2\xc0\x71\x54\xe8\x63\xfe\xf5\xa4\x04\xe3\xe8\x9f\x0d\x7f\x30\xf2\x18\xec\x4d\xe7\xa5\x3a\xeb\x9c\x41\xee\xaa\xf6\xce\x74\x96\x49\xc9\x99\x8f\xd6\x2b\xcb\xa2\x87\x23\x38\xe1\x9c\x94\xe5\x9d\xd5\xe2\xdd\x77\x6f\x53\x71\x9d\x21\x74\x69\x76\x93\x2e\xf1\x1a\xbf\x7a\x32\xae\x6b\x07\x44\x66\x5d\x0e\x0c\xe5\x13\x95\x5a\x9e\x68\x53\x1d\x8e\xe4\xde\x9a\x8d\x35\xdd\xfb\x88\xeb\x5a\x48\x6a\xd6\x31\x37\xe8\x89\x2f\xd7\xc6\x89\xd4\xf9\xe7\x02\x1b\x11\x73\xbb\x37\x52\xa5\xee\xcf\x29\x92\xe3\xfd\x46\x42\x26\x3c\x7b\x3d\x81\x5c\x29\xb4\x66\xab\x69\x28\x5f\xfe\x4b\x8d\xaf\xcb\xf3\xd0\x1d\x63\x55\x53\xab\x75\x75\xa7\xa3\x47\x1e\xdc\x7b\xe4\x12\xd3\xd0\x1e\x6f\xe8\xe3\xcd\xc3\xfa\x04\xd2\xa7\x59\x93\x81\xe2\x2b\xba\x49\xc5\x53\x9d\x79\xc6\x2b\x52\xbb\x0e\xca\x33\xf7\x42\x55\xe4\x1a\x95\x26\xa8\x92\x89\xb1\x5f\x18\x50\xd9\xaf\xa8\x7e\x6b\x6f\xa1\x27\x10\x1c\x1a\x6d\x88\xd4\x33\xe0\xc8\x6a\xa6\x0b\xba\x8f\xe7\x10\x0e\xd6\x1d\x5a\x9d\x00\xa0\x07\x64\x51\x3e\xb1\xc7\xf5\xf5\xc3\xb3\xef\xc4\x53\x2a\x36\xb4\x07\xfe\x2d\x17\xcf\xb4\xe6\xfc\xd6\x04\x9c\xff\x3a\x35\x56\x23\xa3\xa4\x13\x90\xea\x48\xf4\x21\x20\xd8\x97\x94\x91\x11\xbe\x3d\x16\x9b\x2d\x2e\xf4\x5b\xdb\x89\x4f\xe2\x0b\x1a\x95\xef\x66\x14\x94\x27\xa9\xd8\xf8\x0a\x9b\x2e"}, {{0xa3,0xbe,0xd9,0xfe,0x23,0x54,0xbd,0x28,0x60,0x14,0x9a,0x3d,0xb7,0x5a,0x85,0xb1,0x29,0xcf,0x83,0xe9,0xd7,0x3e,0x63,0x17,0xba,0x70,0x54,0x52,0x19,0x33,0xf8,0x96,},{0x5a,0xc0,0x3b,0x4f,0x13,0xd9,0x1d,0x06,0x6b,0x2c,0xe3,0x59,0xe9,0xbb,0x1d,0xfb,0x6b,0xfa,0x5a,0xfa,0x38,0x2f,0xd1,0xcc,0xd7,0x2a,0xef,0x11,0x76,0x07,0x9f,0x89,},{0x33,0xbc,0x1e,0x0b,0xf1,0xb4,0x93,0xe0,0xcf,0xb7,0xea,0x40,0x48,0x0a,0x14,0x23,0xe0,0x91,0xf7,0x14,0x57,0x45,0x01,0x31,0x73,0x78,0x7d,0xf4,0x7a,0x10,0xdb,0x24,0xc1,0x65,0xd0,0x05,0x96,0xfa,0xb7,0x0e,0x68,0xc9,0x4c,0x10,0x4e,0x8a,0x74,0x07,0xcf,0x69,0x5c,0xd3,0xfb,0xe5,0x85,0xb5,0xb1,0x76,0xb8,0x5c,0xcc,0xa4,0xfd,0x08,},"\xdb\x85\x38\x08\x68\x6d\x6d\x21\xf4\xc5\x7b\x54\x1e\x5a\xd6\x33\x94\xd4\x65\xe6\x00\x78\x64\x3c\xab\x1e\x06\x5c\x9f\x30\x6c\x50\x00\x78\xf0\xcc\x41\xef\x0f\x95\x42\xb5\xfe\x35\x6a\xec\x47\x77\xef\x8a\x95\x55\x4c\x97\xb6\xa4\x40\x99\xe9\xbd\x64\x04\xfb\x0b\x2e\x41\xf9\x19\x14\xb0\x74\xd1\x22\x37\xcd\x44\x2e\xbd\x40\xb5\x1b\x8b\xc8\xbb\xe4\x37\xa2\xc5\x33\x32\xd2\xbe\xb2\x28\x1b\xf7\x32\x4a\x0c\xf5\xb7\x41\xbb\xf9\x8d\x1e\xb9\x85\x8b\xe9\x26\xe9\x15\xa7\x8e\x8d\x31\x4b\x41\x44\xf3\xd2\x0d\xfc\x6c\xb7\xf4\x8c\x23\xaf\x90\xf8\x71\xc6\xcd\xa9\x08\x45\xa4\x1a\xff\x17\x07\xa8\x7b\x4e\x55\x16\xf1\x8e\x8b\xd7\x68\x3c\xfd\x74\x07\x08\x03\xe8\x88\x33\x8c\x9a\x18\xf7\x92\xc8\xd3\xa7\x04\x17\x0f\xf9\x82\xbf\xfc\x9e\x8e\xc9\xea\x5d\x1a\x62\x59\x2f\x16\x88\xd4\xf2\xb0\x1e\x11\xf9\xf8\x87\x74\xc4\x7a\xc1\xd5\x8f\x69\x0b\xcf\x28\x8c\xf8\xa4\x73\xd3\x50\xa8\x23\x9d\xf9\xd3\xa6\x28\x81\xda\xdd\x33\x85\x31\xfd\xce\x76\x15\x80\x7c\xe9\x65\x49\x6d\x6f\x35\xd6\xc0\x42\xf0\xce\x7f\x21\xef\xe5\xce\x64\x25\x18\x59\x41\xed\x56\x36\xb8\xae\x91\x3a\x75\xd2\x1a\xb9\xdb\xdb\x3c\x3b\x66\x87\xa4\x5e\x04\x49\x38\xa9\xf1\xc1\x3a\x33\x0e\xa9\x76\x1e\x28\x3e\x61\xd4\xa3\x20\xe1\xf5\x59\x88\x2f\x34\xb6\x07\xfe\xfe\x32\xc3\x43\x17\x4a\xbc\xdc\x77\xb0\x65\xa9\x29\x04\xb4\x2d\x96\x1d\xb8\xed\x91\x6c\x01\x46\x4f\xfd\x43\xf9\x3c\x10\x77\xf1\xdf\x7e\xe6\x50\x31\xcf\xe0\x5d\x78\x0d\x01\xd0\x8e\xe0\x36\xf2\x2a\x2b\x05\x12\x19\x3b\x0c\x0f\x38\x01\xe0\xa0\x20\x8e\xef\x24\x5c\x9e\x51\x93\x52\xd2\xb0\x09\x63\x82\xf2\xcb\xa0\x6e\xb2\xa0\x1d\xac\xf6\x19\xea\xbb\xc8\x83\xc5\xd4\xf2\xfd\x7c\x34\x23\x17\x9c\x0f\x5f\xfd\xaf\x8c\xaf\xff\x5c\x46\xb3\x4a\x09\xc3\xc5\x0e\x29\x49\xc0\x60\x00\x20\x7d\x70\xd3\x7d\x65\xa7\x43\x07\x5f\xdc\x2b\xe6\x2d\x41\x2a\xa6\x3e\x36\x37\x06\xca\x90\xe6\xef\x44\xe1\x52\xea\x4d\xc5\xc2\x89\x3e\xcd\x08\xd7\x96\xd4\x1f\x17\x22\x54\xc3\xd1\xd1\x4b\xb0\x67\xb5\x3a\x08\x97\xbb\xd7\x3c\x99\x54\xd9\x64\x8b\x2a\xf1\x0d\x9c\x27\x03\xe3\x8b\x6c\x62\x46\x9f\x6f\x95\x8a\x1c\xa0\xa3\x20\xc1\x23\x39\xe9\x0c\xf7\x68\xc8\x7b\x47\x38\xc2\x19\xf8\x09\x3b\xff\x4c\x2c\xfd\x29\x45\x9f\x6d\x32\x81\x34\x93\x78\xe9\x15\xa3\xb0\xe7\x24\xc7\x4d\x2b\xd7\xa8\x51\xac\x7c\x6b\x48\xe8\xaf\xc7\x12\x4f\xdc\xbc\xab\x5f\xf8\x0d\x1d\xee\x30\xa6\xc0\x24\xcb\x43\x31\x97\x23\x66\xeb\xab\x26\xbb\xb9\xf6\x08\xca\xac\x7e\x51\x91\x4d\xf0\x58\xb9\xb3\x74\x5d\x98\xc5\xd2\x7e\x97\x10\x54\x75\xec\x01\x73\x77\xe6\x31\x61\x98\xec\xe4\xec\x59\x09\xf0\x4f\xc2\x7e\x7b\x38\x2e\x66\xad\xb6\x2a\xc8\xa9\x77\xf3\x76\xfd\x5d\xae\x43\x4f\xb5\x51\x75\x24\x9c\xa1\xab\x6b\xb0\x2d\xec\x06\x96\xf0\x89\xbe\x34\x54\x88\x7a\x0c\x32\x36\x1d\x17\x2b\xd2"}, {{0x88,0xa2,0x4f,0x0d,0xf3,0xae,0x29,0x14,0xdf,0x79,0xda,0x50,0xec,0xf8,0xec,0xb4,0x2f,0x68,0xc7,0xba,0xad,0x3b,0x6c,0x3a,0x2e,0x0c,0xc9,0xc2,0x5d,0x09,0xd1,0x42,},{0x12,0xe6,0x60,0x3f,0x71,0x3b,0x23,0x05,0x35,0x85,0x68,0x71,0x00,0x18,0x68,0x5e,0x14,0x15,0x53,0xc4,0x75,0x91,0x39,0x6f,0xb4,0x25,0x9e,0x42,0xdc,0x53,0xb9,0xc9,},{0x17,0x07,0xcc,0x00,0x91,0x86,0xbf,0x3f,0x03,0xf7,0xbb,0x9e,0x3c,0xd4,0xcf,0x6b,0x73,0x7b,0x7a,0x6b,0xaa,0xde,0x7f,0xc6,0xc3,0xff,0x5c,0x12,0x25,0xdb,0xb2,0xba,0xf5,0x4f,0x47,0xc8,0x5e,0xaf,0xa1,0x32,0xc3,0x1e,0xac,0xa0,0x3e,0x6a,0xec,0x14,0x47,0x73,0x3f,0xac,0xd3,0x71,0x49,0xb7,0xc6,0xcf,0x0c,0xd4,0x1f,0x61,0x14,0x04,},"\x65\x4e\x9e\xdc\x69\xfe\x63\x4c\x23\x08\xba\x8c\x46\xa9\x55\xe8\x82\x45\x62\x86\xea\xe3\x59\x3c\xae\x73\x9c\x44\x86\x6c\x0d\xe9\xed\xcb\xbf\x0d\xb1\xc4\x41\x49\x66\x84\x67\x70\x9d\xc9\x70\x62\x98\xdd\x2e\xac\x33\x01\xda\xba\xd5\xbd\x8e\x93\xc5\xe8\xa9\x3f\x19\x4e\x0f\xc1\xd9\xf3\x76\xc1\x44\xc2\x93\xae\xfd\xa0\x86\xb2\x21\x8f\x2e\x9d\xfd\x7c\x2d\xc5\x2b\xa3\x3e\xb2\x29\xdc\xf7\xbb\x68\xce\x0f\x87\x6c\x5f\xd4\xe8\x1a\xfd\x80\x16\x9f\x73\xcf\x26\x4e\x5d\xc0\xce\x16\xe1\xb8\x76\xcd\x11\xc7\xad\x89\x05\x8e\xe0\x82\x0c\x40\x00\x5d\x01\xf1\x19\xf8\xbe\x6f\x1a\xfb\xe2\x4c\xa4\xae\xdc\x18\xe9\x78\x96\x82\x7c\x3e\xd6\x7f\xc4\x56\x30\xe7\x90\x3b\x7f\xee\x9c\x99\x0e\x36\x19\x37\xbf\x4e\xa0\xa4\xd8\xd1\x6c\xf6\xd9\xcf\x03\x81\xe9\x06\x5e\x36\x25\x14\x8f\x8a\xe0\x49\x1a\x03\x41\xd0\xff\x9f\x72\x7b\xe1\xf3\x10\xca\x1e\xc3\xf0\x10\x4a\xa0\x54\x32\x17\x84\xdd\x24\xd5\x3c\x98\x5b\x28\xd4\x40\x82\xf8\xe1\xc1\x08\xa4\x41\x09\x63\x8f\xf5\x11\x6e\xdd\x85\xae\xb8\x6b\x6e\xa5\x12\xa1\x9b\x60\x2e\xdd\x9d\x21\x10\x70\xd0\x44\xaf\x5b\xed\xb6\xc8\x52\x7b\xa3\x49\x1e\x34\x5b\xac\xc1\x30\xb3\x69\x60\x28\x2a\xe7\x37\xb8\x5c\x76\x92\x74\xf0\xf7\xc5\x88\xf4\x0e\x66\x25\xb2\x36\xbd\xc1\xa3\xb8\x73\x20\x46\x0e\xee\xad\xa2\x78\x12\x4b\x56\x68\x87\x4f\x39\xf5\x9c\x2e\x6a\xa2\x08\xc3\xb6\xa9\xb8\x45\xc4\xd0\xa2\x7a\x05\x46\x78\x6f\xa1\x3e\x51\xcc\x98\xb7\x3f\xd7\xee\x32\x7b\x62\x15\xec\x6b\x62\x9f\x4c\xc7\xe4\xbd\x3c\x0a\x3d\xb7\x8a\x21\xff\xfe\x24\xc7\x04\x38\x71\x6b\xc3\x7b\x8d\xa7\xc5\xff\x7c\x36\x88\xa9\x03\x39\xc2\x2e\xb5\x0b\x7c\x2c\xd3\x6b\x68\x83\x1f\xd5\x93\x91\x75\x68\x9b\xd3\xe2\x2c\x38\x81\xaf\x33\x7e\xe1\x44\x35\x70\x9e\x35\x10\x40\xef\x3d\xa9\x55\x72\x4e\x51\xc2\x4a\x5e\x2c\x09\xf8\x91\x80\x83\x93\xfb\xf8\xef\x7f\x1f\x5f\x02\x98\xde\xeb\xdc\xd8\xd6\x66\xcb\xcf\x3e\x86\x6c\x71\x89\x99\xab\x6b\x1f\xee\xc9\xc4\x7e\x02\xe7\xd6\x35\x40\xf8\x99\x63\xd5\x42\xc5\xd0\x1f\xb6\xfc\x30\x76\x89\x68\xae\x81\xb2\x0c\x35\x4b\x40\x00\xc1\x32\x77\x47\x64\xd6\xd4\x43\xad\xd6\x4f\x6d\xd7\x48\xf5\xfb\x5b\x7f\x6e\xba\x40\x1d\xb4\x31\x8b\xe9\x93\x98\x9f\xcc\x25\x77\x96\x1f\xa5\xad\x31\xf6\xa2\xa9\xd6\xa7\x55\x28\x58\x65\xcd\x5d\xc3\xa8\x8c\xfb\x5a\xba\x7d\x92\x3b\xaf\x78\xb5\xd1\x31\xb4\xc2\x14\xdf\x55\xb6\x17\x1f\x45\x20\x9e\x21\xca\x66\x45\x49\x0d\x3a\x36\x44\xdd\xa6\xdc\x92\x9c\x7c\x40\x95\x76\xd3\x71\x64\x75\x5e\xf8\xaa\xf3\xdc\xd4\xd2\x27\x75\xee\x7d\xea\x0e\x56\x5b\xd5\x47\x27\x92\x1c\x64\x9b\xc5\x1f\x20\xc1\xf6\x8c\x1f\xde\xac\x45\x5c\x67\xd7\x1a\x1c\xb8\x83\x7f\x46\x91\x44\x8b\xf0\xbf\x04\x4a\x46\xf1\x68\x5f\xbe\x22\xb1\xe0\x18\x77\xf7\x47\x7d\x34\x99\x40\x8c\x4c\x31\x65\x10\xce\x2e\x55\xb9\x80\x05"}, {{0x18,0x4d,0x0c,0xe2,0xe9,0xdb,0x7f,0x25,0x7a,0x8b,0xf4,0x64,0x6d,0x16,0xd2,0xc5,0xef,0xc2,0x70,0x2c,0xed,0x02,0x6b,0x69,0x06,0xd3,0xc8,0xc0,0x11,0x8f,0x22,0x61,},{0xe9,0xda,0xb8,0xfd,0x9d,0x94,0xdc,0x9b,0x24,0xcc,0x79,0xc6,0x35,0xcc,0x57,0xce,0x66,0x51,0x89,0x82,0xba,0x3e,0x24,0x47,0x24,0x07,0x41,0xba,0xc0,0x73,0x0e,0xc5,},{0xb1,0xe3,0xbf,0x5f,0xa7,0x4d,0x7e,0x44,0x2c,0xed,0x9a,0x98,0xd9,0x27,0xd8,0xc4,0x5e,0x0e,0x64,0xd8,0x74,0xf8,0xea,0x59,0x20,0xa3,0x60,0xa4,0xbf,0x42,0xd8,0x3c,0xe1,0x8a,0x92,0x4a,0xc7,0x96,0xe1,0xa7,0x7d,0x1b,0x02,0x08,0x29,0x4b,0x50,0xf8,0x22,0x17,0x7f,0xdb,0xdd,0x45,0x8c,0x74,0x35,0x6f,0xcf,0x6b,0xd7,0x94,0x51,0x06,},"\x6a\x9b\x87\x6b\x0b\xf4\x18\x9b\x3c\xc1\x5f\x9e\xb4\xfb\xe7\x93\x2b\x55\x77\x89\x2a\x22\x20\x0c\xe1\x07\x15\x68\x53\xd6\xd3\xca\x36\x3f\x02\x5a\xd7\xa2\xd8\x62\xaa\xdc\x74\x2d\x94\x15\xbd\x8d\x1f\xca\x13\xc9\xdc\xa3\x58\x60\x44\xe5\x5a\x8c\xf5\xde\xe1\xce\x56\x45\x76\xe3\xe8\xe3\x65\x54\x05\x46\x50\x1b\x34\xca\x67\x5c\xf2\x00\xe0\x77\x1a\x81\x8c\x73\xd3\x7f\xcd\xa8\xcb\x15\xe4\x8d\x5a\x0b\x9e\xa3\xbe\xec\x0f\xf6\x61\x0b\x2a\x8a\x21\x4c\xa4\xf7\xef\xac\x0e\x71\x38\x10\x52\xd9\xbf\x3c\x00\xc3\x29\x59\x34\x74\xeb\xd0\xa6\x87\xa0\xb4\x1d\x14\x4b\x5e\x7a\xb1\x41\x2b\x97\x0a\x74\xba\xba\x4d\x27\x4b\xb0\xdb\xfd\xb0\x2b\x11\xf7\xf6\x39\x64\xba\x6f\x3b\xa0\xad\x23\x34\x1d\x08\x3b\x91\xa4\x30\x82\x39\xe3\x3d\x50\x82\x43\x96\x12\x65\x88\xde\x72\xa2\x39\x0c\x1c\x0f\xc0\x67\x47\xc2\x87\x72\xf6\x30\xbf\x4d\x14\x3f\x7a\x11\x59\xf0\x28\xc0\x93\x40\x48\x94\xe6\xd1\x6f\x63\x46\x35\xd4\xfc\x33\x0f\x3d\x7a\x73\x13\xef\x75\x6f\x5d\x49\xd8\xf6\x20\x5e\xb1\xc7\x92\xa9\x49\x5d\xa1\x31\xb4\x33\x45\xa0\x09\x0c\x12\xca\x56\xe6\xad\xac\x5b\xe0\xcb\xca\xc3\x60\x9d\x69\xf7\x24\x15\xf6\xc3\x7f\x3c\xfb\x2c\xf7\x6b\x3e\x65\xf3\xc9\x3a\xc9\x2b\x63\xf2\xba\xa4\x66\x24\x90\x75\xbc\xa6\x9d\x4c\x1d\x1f\x3a\xde\x24\xab\x31\xef\xfc\xb9\x04\x69\xc2\x4b\xb4\x10\xab\x47\x23\xe1\xb7\xe1\xc8\x8b\x3a\x36\x43\x35\x63\xf7\x1a\x99\xaa\xd5\x8f\xe8\x05\x68\xf9\xc1\x02\xda\x89\xba\xd9\x79\x63\xe7\x7d\x66\x22\x48\x31\x66\xf3\xae\x26\x1f\x32\xa5\x2a\x86\x10\x1e\xbd\x64\x5f\x61\x42\xc9\x82\xe2\xcd\x36\x25\xcf\x8b\x46\xb9\xb2\x89\x12\x46\x92\x0f\x69\x7f\xca\xed\x39\x7c\xb9\x22\xc2\x74\x94\x51\x67\xa0\xe6\x19\xb0\xb5\x06\x37\x76\x06\xdb\x04\x57\x83\xb0\xb8\x8e\xa0\x4e\x93\x2d\x21\xff\xc0\x64\xa1\x2a\x40\xeb\xe9\xb4\x80\xf1\xa2\xc7\xdd\xd3\x95\xa9\xb1\x5e\xfd\xc4\x95\xc9\x71\x4f\x36\xfa\x99\x6f\x79\xf8\xeb\x8e\xfa\x52\xd9\x9a\x24\xab\xfe\xf4\x3b\x32\xa2\x37\xc5\xbc\x00\x18\xda\x3b\x16\x2f\x59\xb8\xd3\xd4\x74\xe2\xce\x08\xfa\x80\x24\xc5\x8a\xcc\x0a\x99\xff\x61\x4e\x6c\xd7\xfd\xd9\xca\x4e\x8f\x41\xa1\x44\x9a\xa6\x18\xd0\x33\x37\xe8\xa3\x74\xd5\x60\x55\xb2\x07\xa9\xdb\xe6\x9f\x59\x48\xf9\x01\xca\x7d\xb0\x41\x0f\x01\xaa\x37\x3d\x9e\x02\x27\x62\x35\x99\xbc\x21\x28\x45\xb0\x06\xe9\x42\xfa\xbc\x58\x2c\xd7\x26\xdb\x5c\x44\x3e\xb2\xdf\xfb\xc9\xe3\xe7\xf0\xe5\xcb\x67\x44\xf7\xad\x71\x60\x50\xfd\xf2\xc6\x0c\x7c\x77\xc2\x53\xab\x74\x5d\xb9\xc8\x55\x26\x55\x68\x3e\xa7\xea\x68\x0a\xa4\xaf\x34\xdf\x13\x25\xc2\x9b\x88\x74\xb6\x1b\xe2\x3d\xe4\xff\xba\x25\x42\x4f\x46\x19\xec\x68\x2c\x26\xb3\xa6\x7b\xda\x9b\xc4\xc9\x4b\x79\xa9\xfc\x4d\x82\xd3\x40\x49\x5b\x43\x7a\x1c\xbd\x6b\x60\x30\x7c\xfc\xb1\x00\x26\xf9\x64\xa0\x17\x62\x3e\x33\xdb\xf2\x33"}, {{0xd0,0x2b,0xbf,0x70,0xd5,0x13,0x51,0xe3,0xb4,0x7a,0xd8,0xe5,0xed,0x26,0x3d,0xbf,0x55,0x6d,0x14,0x98,0xfa,0x9b,0xd5,0xdb,0xd9,0x9f,0xb4,0x26,0x90,0x09,0xdc,0xed,},{0x8c,0xe4,0xb5,0x9f,0x94,0xce,0xd6,0xec,0x96,0x14,0xd6,0x7d,0x30,0x66,0xd9,0xd3,0xa0,0xdf,0x7a,0x46,0xb3,0x7b,0x4c,0x17,0x25,0xef,0x1e,0x57,0xbc,0x68,0xa0,0xd1,},{0x6e,0x7c,0x66,0xac,0xc9,0x54,0xff,0xd9,0xdd,0x4c,0x1c,0x63,0x35,0xab,0x4f,0xe7,0x9d,0xbb,0xed,0x78,0x2c,0x4a,0x47,0xec,0x30,0xd8,0x48,0xd8,0xbb,0x2b,0x4f,0x10,0x69,0xdc,0x62,0xe5,0x22,0xa1,0xe8,0x01,0x7f,0x54,0xa6,0x34,0x5e,0x17,0x28,0xc0,0x73,0xaf,0x64,0x47,0x85,0x6d,0x8c,0x1e,0xd3,0x58,0x78,0xb5,0x71,0xe5,0x23,0x0d,},"\x55\x45\x60\xf7\xa7\xfd\x1a\xe7\x75\x8a\x2f\xce\x7d\x78\x0f\x6b\x3f\x04\x3d\x3a\xf8\x9d\x4f\x19\xef\x57\x3c\x34\x99\x75\x54\xdf\x24\x3f\xaf\x2a\xaa\xb6\x5b\x2a\xfd\xd2\x86\x10\xd4\xa5\x1e\x9a\x4b\x46\x4d\xb6\xdb\x09\xeb\xf7\x3b\x7d\x24\x05\x4c\xc9\xb1\x28\x14\xbb\x29\xee\x99\xe1\xa7\x3b\xd6\x03\x89\x83\x60\xf9\xdc\xf0\x1e\x67\x08\x36\x28\x6f\x82\x36\xed\x8c\xef\x07\x5f\x3d\x56\x33\x12\xc1\x6c\x73\xfc\x37\xee\xdf\x25\x2f\x8f\x42\xd3\x0a\x13\xe7\xfb\xa3\xb1\x65\x23\x8c\x7f\x81\xea\xae\xb5\x31\x90\xf3\xec\x3b\x5d\x63\xf0\xee\x03\xe3\x98\x7e\x39\x0d\x1d\x81\xe8\x27\x7e\x9f\x6c\x1e\xe6\xec\x4e\xc3\xfa\x0d\x72\x0e\x9f\x53\xf9\xc2\x6f\x04\xaa\x2e\xd2\xb5\xef\x31\x60\x89\x59\x99\xea\xce\x29\xcf\x5d\xc2\x54\xad\x71\x10\x6b\xb7\xe8\xbc\x29\xa5\xb1\xd2\x41\x25\x93\xd0\x81\x94\xe8\x8e\x16\x59\xa7\x31\x59\xa2\xa2\x20\x33\xab\x06\x6e\x8d\x3d\x8c\x3b\xc8\x6b\x7b\x01\xde\x81\xa8\xc6\x60\x47\xb0\x7f\xe2\x4e\xd2\x40\x31\x8b\xa3\x7b\xa3\xef\xb6\xcf\x63\x26\x04\xca\x4f\x44\x6a\x75\xfd\x8e\x70\xc4\x53\xf0\xc6\x0e\xe1\x6e\xca\xf5\x24\xe7\x03\xf4\x7d\xf5\xc2\x82\xca\x32\x89\xb3\xaf\x61\xde\xe4\x70\x9e\xe0\x85\x32\x3b\x1e\x5c\x8a\x6b\xc0\x76\x62\x01\xc6\x35\x03\x14\x46\x89\x1f\x34\x94\xe9\xdb\x20\xdd\x4e\x9e\x08\x38\x24\x9a\x67\xe1\x38\xd1\x3e\xe2\xc9\x6f\x61\xe7\x71\x06\x15\x42\xaa\x16\xef\x20\xd8\x1e\x3a\x0f\x4e\x45\x21\xa6\xcd\x6c\x92\xfc\x26\xfe\xef\x03\xb6\x6c\x70\xe0\x35\xca\xfc\xc1\x9c\x96\xfb\x9d\x82\x91\x8f\xe1\x97\x78\x0e\xff\x0e\xda\x6e\x25\x12\xc5\x6e\x2a\x73\xd7\x70\x32\xb7\x68\x91\x9b\xea\x97\x72\xf5\x98\x9c\x8b\x6c\x65\xc3\xd1\xe9\x7a\x21\x80\xcc\x3a\x37\x57\x9d\xa7\x0c\xe9\x80\x6a\xc1\x28\x5a\x3e\xab\x41\x5c\x06\x07\xd8\x8c\xb8\x65\x42\xea\xb9\x0b\x9d\x2d\x67\xfa\xff\xfc\xad\x23\xa7\x14\x00\x0e\xe5\x9e\xd6\x8c\x95\x6e\x81\xc4\x45\x42\x88\x82\xf9\x7a\xf7\x4d\xb3\x62\xe4\x5c\x0d\x1b\xd8\x85\x6e\xed\x16\x6e\x4a\xec\x4b\xfd\xf9\x5e\xad\xb2\x51\xe2\xa1\xef\x80\x48\x52\xa9\xea\x77\xd3\x45\x77\xfe\x70\x83\x1a\x92\x8b\x10\x1b\x60\xac\x61\x3e\x7b\xa2\xe6\xba\x0a\x94\x01\x3a\x64\xc2\xf8\x21\x9f\xd3\x0b\xff\x40\x90\x99\x66\x7a\x78\x6f\x99\x32\x7b\xb0\x3e\x2f\x21\x87\xf4\x45\xb4\x6b\xee\xda\xb6\xd3\x25\xaf\xd9\x04\xe3\x95\x43\xe9\x3f\x4b\x6c\x54\x43\x24\x9d\x74\x4b\x2d\x1a\x43\xe1\x41\xe4\x76\x8b\xd4\x0a\xab\xe4\x05\x72\x44\xe1\xea\xdd\x9d\xae\xc1\x75\x71\x9e\x51\xa0\x93\xac\xe3\x2f\xe8\x2b\x2e\xac\xb5\xec\xb0\xda\x6c\x1f\xfe\x98\xc8\xce\xe7\x88\x6e\x30\x16\x70\xdf\xf8\x71\x13\xef\xed\x42\x82\x47\x1a\xfb\x6b\x8a\x0f\xdb\x50\x5e\x2e\x8e\x7d\xbc\x1a\x08\xa2\x2e\x96\x80\xbd\x09\x8b\xf1\x27\x58\x02\xbd\xb4\x59\x41\x3a\x3b\x23\x7d\x77\x13\xa1\xbb\xf5\x97\xe6\xad\xf2\xb6\x0e\xaf\x82\x37\x91\xb3"}, {{0xaa,0x0f,0xda,0xe2,0xa5,0xa4,0xc9,0xc0,0x45,0x21,0x91,0x30,0x04,0xcd,0x89,0xef,0xbc,0x88,0xb2,0xda,0xdf,0x5a,0xbb,0x24,0x6f,0x3c,0xa7,0xf6,0x92,0x35,0x44,0xaf,},{0xbf,0xfc,0xb1,0x7c,0x35,0xc1,0x30,0x4c,0xdd,0x9d,0x62,0x4f,0xf6,0x9b,0xee,0x60,0xec,0x7c,0x9e,0xc3,0x27,0xd1,0x23,0x50,0xd7,0x0f,0xac,0x12,0xb4,0x7c,0xc2,0x5c,},{0xf9,0x37,0x29,0x89,0x69,0xca,0x34,0xd9,0x75,0x84,0x44,0x89,0x07,0x35,0x8b,0x0f,0x47,0x84,0x1f,0x30,0x23,0xaf,0xc7,0xef,0x76,0x81,0x52,0x1c,0x5b,0xe0,0xf5,0xe5,0x62,0x8a,0x8f,0x60,0x7e,0x2f,0x31,0x63,0x6e,0xf6,0x36,0x46,0xb0,0xe9,0x89,0x8a,0x72,0xad,0x35,0x57,0x06,0xd2,0xc8,0x06,0x0f,0xbc,0x64,0x0e,0xfb,0x3d,0x66,0x05,},"\xb1\x41\x84\xcf\xdc\x4a\x5f\x0c\x7f\x83\xf9\x4a\x83\x2f\x58\x85\x07\xe2\xd7\x2a\x89\x32\x98\x70\x07\x85\x71\xd2\x08\xa0\xc4\x96\x0c\x2f\xdc\x4c\x23\x6c\xf8\x82\x29\x98\x1d\x12\xb1\x0a\x1b\x68\x84\xc8\x65\x0d\xda\xf1\xd4\xb2\xeb\x98\x15\x75\xb1\xe0\x19\xfe\x3f\x60\x42\x36\x76\xf8\x85\x6a\x99\x2c\xce\x36\xd6\xd0\xa3\xd0\x26\x63\x1c\x8c\x1e\x1f\xfe\x34\x13\x4b\x29\x6f\x40\x84\x2b\x6d\xf4\xf8\x6f\x83\x3e\x01\x75\xba\xe5\x0e\x86\xbf\x85\x6d\x1e\xe7\x99\x25\xf4\x34\xb8\xbf\x2c\x84\x51\x9f\x1f\x5d\x25\x38\x60\x49\xce\x3c\xa6\x17\x77\xe3\x0b\x70\x0a\x60\x2d\x39\x52\x50\xb6\x0f\xc6\x4a\xc6\xf8\xdb\x02\x7e\x8d\xa8\xb9\x55\x0f\x24\xed\x11\xa1\x1d\x9f\x9f\x9c\x5e\x0a\xf1\x45\xb8\x65\x97\x51\xac\x6b\x55\x86\x1f\x63\x88\xa6\x43\x36\xb3\x1e\xfe\x45\xc0\x80\x2d\x76\xa5\x34\x86\xa8\x1e\xba\x07\x31\x4b\x4d\x96\x1c\x14\x1a\xb3\x4e\x2f\x76\xed\xac\x0e\x6d\xe3\x14\x22\xdf\x79\x2a\xf0\x81\xe7\x69\xc7\xed\x05\xda\x9a\x5a\xf2\xfd\xf3\x6f\x14\x17\x69\x90\x8b\x70\x09\x37\xf0\xe1\x06\x8c\x13\x1f\x17\x6e\xb9\x6c\x67\xaf\xdb\xe7\x8f\x40\xd8\x60\x07\xfb\xcd\x47\xe4\x9e\x2e\x4c\x4c\xe0\x49\x93\x6a\xdf\xf1\xce\x3e\xac\x42\xb9\x6b\x34\x29\xb5\x62\x6b\x1a\xa6\x2a\xcd\xe0\x7f\x45\xa1\x3c\xe1\xbd\x21\x1f\x32\xbd\x7e\xfe\x47\x90\xc8\x37\x1e\xbf\x87\xc1\x64\x47\x7a\x5c\x9f\xa3\xe7\x8c\x2f\x88\x07\x7b\x09\x73\x44\xcf\xfa\x03\x1c\x44\x29\xc7\xf4\x2d\xca\x07\x73\x78\x50\xee\x7a\x76\x9b\x36\xd0\xf0\x62\x5a\xdf\x12\x0e\xa2\x3f\xf4\xe3\x93\xa4\xfd\xcb\x65\x58\xdb\xf9\xb2\x66\xa0\x32\xe3\xb0\x59\x9b\x9d\x66\x92\xfc\xeb\xd8\x15\xa3\x89\x76\x07\x85\x63\x25\xfc\xd0\x11\x5d\xc3\x10\xdb\x3a\x87\x92\xfb\xeb\xd3\x99\x49\x4c\x83\x71\xe5\x85\x72\x7b\x3d\x63\x24\x14\x49\x68\x93\xd0\x38\x13\xba\x1f\x99\x66\x1b\xce\xb9\xdc\x18\xec\x5d\xc2\x7f\x52\x67\x03\x18\x68\x77\x69\xfc\x67\x8d\xdc\x7e\x40\x22\x7c\x20\x05\x22\x01\x3f\x5c\x0e\xec\x0e\x47\x81\xe6\xfc\x15\x3a\x0c\x2f\x4f\x3f\x95\xe5\x17\xc8\x41\x99\x24\xab\x39\x99\x2a\xf8\xc1\x94\x65\x05\x7f\x13\x44\x86\x69\x6b\xa7\xfd\x46\x51\x76\x8b\x4e\x74\x9e\xf3\x6f\x02\x44\x46\x17\xcf\x97\xf0\xa4\x23\xe4\xc1\x3b\x7b\x66\xba\x2b\x6c\x45\x68\x78\xb0\xb5\x0c\xe2\xee\x5e\xc5\x64\xed\x88\x54\xf7\x82\xaa\x1d\x1c\x6a\xa7\x60\xf2\x52\x2c\x7d\x97\xb9\xb1\xab\xe0\xba\x81\x09\x59\xd7\xaa\x40\x3a\x99\x37\x5a\xa3\xe3\x9a\x11\x5d\x1f\xc6\xfe\xdd\x00\x2f\x38\x30\xa5\x0a\x83\x7d\xc7\x20\x32\x9e\xc0\xc7\x3d\x5b\xfd\x50\x03\x85\xc7\x36\x83\x82\x87\xe1\x92\x01\x52\x5d\x18\x9c\x3a\x08\x4c\xd5\xa3\xf3\x59\x87\x5e\x3b\x83\x25\x28\x9c\xed\x18\xb6\x3b\x00\xff\x9c\xd0\x70\xc3\xe6\x74\x44\xbd\x3d\x83\x46\x17\x40\x85\xcc\x45\x13\x5c\xaa\x0c\x67\xb3\x22\x6e\x4a\x52\xe9\xa1\xc5\x5a\xed\x7e\xc5\xfa\xde\x6b\xf1\x6c\x19"}, {{0x71,0x62,0xfe,0xf0,0xac,0xa4,0x97,0x4b,0x09,0x4a,0x6a,0x08,0x05,0x43,0x95,0xf8,0x77,0xff,0x94,0x33,0xf1,0xe3,0x3e,0x20,0xe8,0x8e,0xaa,0x90,0xf9,0x38,0x99,0x7d,},{0xa2,0x80,0x64,0x0f,0x13,0x9f,0x45,0xc3,0x5a,0x48,0x71,0x53,0x7e,0xef,0xe6,0xef,0x9d,0xb0,0x2d,0xe7,0x85,0xee,0x9f,0xd5,0x4f,0x80,0x5f,0xb5,0x7d,0x37,0x46,0xef,},{0xae,0x16,0x1c,0xce,0x95,0x40,0x33,0x84,0xb6,0x5c,0x6b,0xc9,0xb3,0x93,0xeb,0x07,0x25,0x64,0xc3,0x5f,0x3a,0x6c,0x04,0xfa,0x51,0x7a,0xb0,0x68,0xbc,0xd2,0x37,0x67,0xcc,0x0c,0x8e,0xdd,0x92,0xb1,0xa1,0x3a,0xe9,0xa9,0xce,0x48,0x64,0x13,0x7f,0xb8,0x9c,0x1f,0x37,0xb7,0x48,0xcf,0xc9,0x13,0x4b,0x67,0x41,0xba,0x1b,0x22,0x28,0x0d,},"\xc9\x0f\x45\x0b\xda\x1c\x6e\xfd\x8d\x12\x78\xde\xbd\x7a\xe0\x3e\x2e\xac\x27\x40\xa5\xa9\x63\xfc\xf9\x6c\x50\x4e\x31\xd4\xd6\xfc\xc5\xe2\xb5\x2a\x25\x18\xd2\x74\x1c\x55\xe9\x59\x18\x67\xb2\x42\x32\x28\xf9\xc1\x9f\x33\xc6\xf3\x87\x05\xc6\x20\x36\xd4\x80\xff\x53\xdf\x12\x07\x7e\x38\xfd\xb0\x73\xc6\x73\x10\x5d\xa1\xe1\x16\x19\xba\x53\x21\xa7\x1b\x5f\x49\x93\x23\x4a\x11\x94\x8e\xa1\x10\xcf\xa2\x42\xbc\x23\xfa\xc9\xaa\xe4\x62\x60\x6e\x39\x64\x1c\xa7\x14\x7e\xeb\xba\x1e\xec\x55\x3f\xce\x94\xe5\x3e\x4e\x01\xb0\x73\xdd\x78\x0a\x2f\xf6\x78\xb3\x15\x72\xca\x11\xee\x08\x77\xe7\x56\xbc\xdb\x66\x53\xe5\xe1\xb4\xcb\xfb\x56\x9a\x9d\x60\xe3\xee\x33\x61\x82\xdc\xb9\xb2\x5d\x1b\xe6\xdb\xf9\xb5\xc7\x14\x6d\x77\x55\x85\x83\x4c\xab\xde\x02\x78\xae\xe5\xd5\x7c\x85\xe9\x83\xf8\x4d\x88\x33\xa9\xe1\x5b\xcc\x11\x19\x8e\x1c\x1d\xa6\xba\x59\x28\x21\x29\xf1\xdb\x96\x6f\x54\x60\xc8\xfb\x65\x30\xfb\xc3\xa9\x8a\x31\xfc\x0f\x4e\x9b\x33\x73\x66\xee\xc1\xdc\xe1\x08\xc8\x26\xd4\x90\x45\xab\xfa\x12\xee\x88\x79\x7f\x08\xf0\x68\x3f\xef\x77\xed\xaa\x35\x43\xb9\x1c\xb1\x18\xe4\x24\xd9\xc4\x08\xda\x54\x74\x31\x12\x51\x07\xd9\xb0\x74\x4c\x24\x43\xce\x99\x17\xe1\xe3\x28\xd8\x18\x50\xba\xbb\xc9\x4d\x92\x0a\x1d\x06\xe5\x24\xdb\xb6\xc2\x3d\xd8\x2e\x17\x87\x82\x2d\x71\xc4\xcd\xc4\x09\xae\x85\xba\x4d\xeb\x58\x1f\x93\x47\x48\xf7\x5e\x7a\x76\x9b\x9d\x68\xc4\x58\x9e\x59\x4e\x65\xcb\x6c\x8f\x49\x03\xff\xba\xbd\x5a\x32\x6e\x89\x44\x1a\x54\x2f\x8a\xc2\x64\xcc\xc6\x4e\x95\xa8\x98\x2a\x71\x0b\x6c\x56\xff\x7d\x10\x91\x6a\xfc\x40\x9e\xa8\xa4\x1b\x74\x67\x9d\xd6\xa7\x66\xf5\x9c\x52\xb9\x30\x5b\xa7\x33\xb1\x3c\x9e\x81\x1e\xe1\x30\x83\x92\x5f\x42\x00\x68\x2b\xd0\x5d\xea\x33\x95\x32\x52\x29\x70\xaa\x14\x9d\x00\x4a\x2e\xa2\x0f\xf4\x61\xe9\xec\x0f\x3b\x62\x56\x5c\x1a\x10\x62\x59\xc8\x36\x60\x5c\xc2\x7c\xad\xc9\x51\x5c\xb9\x97\x9e\x89\xaf\x28\x7c\x02\x7d\x75\xed\xbf\x87\xd5\xcf\xf6\x3a\x7f\xec\x9b\xd1\x0e\x78\x77\xab\x9b\xf8\x68\xd7\x34\xbd\x3a\x23\x74\xce\xf7\x02\x5c\xc4\xda\xb7\x10\xe2\x54\x80\x66\x85\xa1\x36\xec\xd0\x3e\x36\x77\x03\x46\x51\x3a\x15\x14\x5b\x89\x0e\xee\xf4\x7b\x80\xea\x08\xe4\x6c\x81\xd2\x02\xe5\x33\xe9\xa0\x6a\x38\xa6\xf7\x6e\xf5\x7a\x9c\x73\x6e\xc7\x8d\x00\xb8\x08\xe3\xff\xd9\xc7\x9b\x9d\xc7\xa2\xe5\x89\x90\x76\x56\xc9\x32\xab\x8a\x8b\x57\xda\x1a\x49\x5b\xa7\x45\x20\x15\xe7\x92\x4b\x52\x69\xab\x1f\x67\xbd\xb4\x3a\x35\x83\x14\x87\xab\x90\x02\xf5\x2d\x78\xb1\x34\xcd\x37\x51\x92\x5a\xaa\xb0\xb4\x5c\x8e\x6b\x0f\x2b\xf0\xcc\x9a\x46\x59\x31\x71\x08\xfb\xa9\x13\x6a\xab\xb0\x92\x1a\x58\xfb\xb9\xb5\x0e\x51\x24\x3f\x9b\x53\x18\x47\xdc\x96\x57\xe9\x6f\xba\xf7\xaa\x69\x8f\xe6\xfe\x44\xf9\x05\x90\x14\x4c\x70\x33\x72\x50\xc5\x8b\xc5\xdd"}, {{0xde,0xa1,0x80,0xc9,0x1b,0x53,0x3a,0xaf,0x73,0x6b,0xc5,0xd3,0xc8,0xe4,0x74,0xd5,0xe5,0xd4,0x75,0xb7,0x5b,0x92,0xcd,0xe6,0xbd,0x1d,0x10,0xf3,0xb8,0xf5,0x5a,0xd4,},{0x30,0xb2,0x0f,0xb3,0x20,0xb0,0x0e,0x77,0xc4,0xe0,0xa8,0xeb,0x37,0x30,0xaf,0x3c,0x0b,0x1c,0x5f,0x5e,0xd9,0xee,0x2b,0x05,0x62,0x70,0x7e,0x4f,0x55,0xc4,0x93,0x8b,},{0xd0,0x83,0x33,0x3f,0xb8,0x4e,0x79,0xc9,0xb3,0x3e,0x55,0xe8,0x19,0x2d,0x57,0x1f,0xfc,0x8d,0xc5,0x07,0x45,0xb6,0xb5,0xfd,0xd8,0xc4,0x4d,0x92,0xa6,0x3f,0xd1,0x78,0xc4,0xe5,0x7c,0x2a,0xb3,0xa1,0x21,0x1c,0x0b,0xa2,0xd3,0x9d,0xa3,0x0b,0x06,0x62,0x9d,0x8d,0x1c,0xc1,0xd9,0xf2,0x59,0x32,0x63,0xd5,0x24,0xfa,0x5a,0x2e,0xbc,0x03,},"\x60\x61\x44\xb7\xd4\xf9\x6b\xef\x7f\x11\x2b\x6d\x41\xbc\xb5\x00\xd2\x13\x6c\x13\x4c\xed\xa2\x20\xe2\x4d\x0f\x15\x24\xec\xa1\x2c\x30\xf2\xb1\x02\xc7\xf3\x78\xd6\xbb\xa2\x59\xc5\xb4\xa5\xef\x8e\xc9\x30\x9d\x5c\x8d\xa7\xe8\xd2\xde\xd3\x79\x2a\xee\xea\x21\x08\xf7\x7d\x66\xb2\x30\x45\x93\x8e\xd6\x47\x51\xf2\x0d\x48\x32\x6b\xe2\xfb\x99\x62\x8c\xfb\x18\x73\xd7\xdd\x27\x58\x1c\x10\x5e\xc1\x32\x49\xa9\x52\xa5\x07\x84\xb8\xb3\x4c\xb3\xb2\xc1\xa0\x04\xfa\x8b\x62\x8a\x07\x67\xfa\x9a\xbf\x05\x8d\x95\x5d\xf8\x5d\x13\x4a\x0f\xc7\xf4\xb7\xd7\xfb\x0c\x8d\x31\xbc\xe3\x45\xdd\x0a\x42\x82\x14\x5a\xfb\x2f\xf1\x97\x51\xf2\xcc\x3a\x1c\xae\xa2\x42\xba\xaf\x53\x87\x49\xbf\x38\x80\x00\xe3\xdc\x1d\x73\x93\x59\xdf\xeb\xae\x64\xae\x1e\x10\xfb\x6f\xc1\x7c\xc9\xfb\x95\x05\x35\xc2\xde\x12\x95\x87\xa8\x68\x59\xb7\xbe\x36\xdf\xe9\xb6\xc1\x14\x1b\x25\xe0\x91\x5c\x8d\x4a\xa1\xcc\xea\xe7\x04\x6b\x3d\x7c\xfa\x94\x0b\xc9\x8d\x4d\x69\xfc\x5a\x30\xdd\xe1\xde\xe4\x2f\xb5\x27\x22\x81\xbf\x8f\x8e\x7f\x3e\x1a\x04\x39\x7f\xb4\xf3\xad\xef\xc5\x75\x32\xdd\xbd\xe3\x68\x33\xa6\x76\xe6\xf3\x9c\x82\xaf\xf6\xbf\x48\x32\xec\x97\x1e\x03\xbe\x38\x29\xc0\x2a\x20\x3c\x82\xd9\xeb\x8c\x16\x30\xee\x96\x93\xf4\x5d\x26\xf5\xf5\x1a\x31\x03\xca\x64\xd4\x68\xec\xea\xc1\xb2\x9a\xf4\xc4\x2e\xb2\x16\xd7\x6e\xc8\x99\x48\x36\xb4\xbe\xc7\x64\x89\xca\x50\x70\x68\x0c\x2c\x2e\xb4\x57\x21\x0a\x77\xc4\x7f\xdc\xbf\x60\x01\x72\x07\x3a\x53\xf1\x45\x3b\xb5\xc8\x04\x39\xc8\x82\xf0\x73\x6d\xe4\x06\x37\xb4\xf5\xab\x1f\x76\x1f\xf3\x55\xc6\xe9\xbd\x4a\xbd\xe7\x56\x0d\x5f\xc1\x13\xc8\x30\x15\x9a\x1b\x77\xc4\xe8\x7b\xc2\xc6\x98\x80\xa4\x0c\x58\x05\xec\xc8\xaa\xaf\x57\x57\x5b\xcc\xd8\x17\x7f\xc6\xb8\x35\x69\x23\x3c\x0f\x5c\xa2\x23\xac\x40\x13\xca\x10\x6c\xac\x28\x54\x70\x6a\xea\xd7\x14\xfa\x29\xf2\x86\x0a\x5f\x97\x53\x26\x8a\x36\x71\xd9\xf5\x9c\xde\x60\x48\xcf\x0b\x89\x86\x05\x0f\x7f\x54\x9e\x4f\xd7\x55\x7f\x2f\xc3\xfc\xdc\xcd\xdc\xef\xda\x58\x6a\x64\xb3\x00\x6e\x58\x25\xf2\x7c\xa3\x16\x87\xca\xf6\x63\xbd\x90\xa0\x5b\x11\x52\xd7\xc8\x8d\x7f\x10\x51\xa9\xd7\x91\x74\x86\x51\xd8\x88\xa6\xa1\x2f\x22\xd6\xc8\xc3\xf7\x8c\x2b\x86\xea\xf5\x39\x4b\x4e\xf7\xee\xfb\x89\x79\x7b\x25\xe5\x42\xdc\x93\x10\x2d\x02\x1a\x1d\x0b\xed\x6a\x7d\xcd\xd8\x10\x2b\x8f\x04\x30\xa0\xbc\x21\xd9\x04\xa3\xc9\x34\x6c\x01\x83\x43\xdd\x99\x37\xcb\x35\x25\x00\x07\xa2\x84\x82\x5d\xb0\x8e\x9a\x11\xfe\xe3\x1c\xff\x7a\x31\x4c\x48\xc4\x2d\x8b\x31\x4a\xcc\x27\x82\x2a\xf0\x3d\x19\x54\xc7\xcc\x8b\xf9\xad\x4e\x9e\x98\xf4\xad\x4e\xfb\x35\x52\x88\xda\xa8\xc9\x0d\xe9\x03\x7e\x64\xa7\x86\x1f\x5e\xe4\x3a\xda\x9f\x0f\xcc\xde\x34\xd0\xbc\xf5\x02\x88\x55\x0f\x70\x0f\x21\x5a\x79\x44\xa5\x38\x0e\x2a\x8e\x3f\x04\xf2\xb4\xf5"}, {{0x9d,0xaf,0x6d,0xbb,0x7f,0x76,0x29,0x66,0xe7,0xa5,0x7c,0x2e,0xc1,0x99,0x6e,0x9f,0x5b,0x55,0x5b,0x98,0x66,0xb8,0xe3,0x1d,0xea,0xab,0x43,0x56,0xeb,0x13,0x81,0x6e,},{0xf0,0x21,0xb5,0x5a,0x36,0xd9,0xfb,0xfb,0xf2,0x97,0x8b,0xc0,0xdf,0x73,0x6b,0x28,0x9c,0x82,0x41,0xd6,0x43,0x53,0x09,0x84,0x1a,0x13,0x4b,0x07,0xd4,0x7c,0xe4,0xed,},{0x49,0xb6,0xbc,0x46,0xb7,0xab,0xb5,0x69,0x4d,0xa9,0x42,0x15,0xef,0xc4,0xb3,0x0e,0xea,0x04,0xae,0x2e,0x73,0xeb,0x2d,0xa8,0xe8,0xc9,0xef,0x9b,0xe2,0x22,0x24,0x98,0xb1,0x7e,0x13,0x93,0x96,0x46,0xc2,0x9e,0x32,0xd6,0x45,0x58,0x46,0x40,0x64,0x15,0x90,0xb1,0xbb,0xdb,0xfe,0x24,0xf3,0x6c,0x6f,0x69,0x4b,0xf8,0x72,0x38,0xee,0x04,},"\x54\x45\x23\x90\x0d\xaa\x67\x78\xc0\x39\x1a\xe4\x04\x4a\x51\xc0\xc4\xa5\xe4\x44\x13\x3f\xbd\x77\x47\xd5\x39\xa7\x44\xfa\x60\xab\x5d\xc5\x4e\x18\x19\xdc\x8e\x56\x89\x9c\x56\xef\xd7\xef\x3d\xa3\x41\x79\x0e\xcc\x49\x64\x5e\xf3\x25\xc6\x56\x8a\xe9\x71\xd3\x0d\x21\xbb\x7f\x23\x46\x4f\x46\xa2\x4b\x80\xd4\x9b\xb9\x3c\x6e\x91\xde\x79\xb2\x43\x31\xd0\x70\x7f\x43\xd0\x66\x5d\x01\x97\x74\x3a\xdf\xf6\x90\xd6\x15\xa1\xc9\x25\x87\x77\xfc\x47\xd0\x21\x71\x42\x42\x6a\x47\x34\x89\x2e\xb6\x22\xab\x8e\x50\xbb\x12\x8e\xc3\xa8\x95\x26\x6a\x38\x61\xa3\x97\x68\xbc\x76\x09\x6f\x58\x1f\xd0\x82\xdf\x9b\x72\x23\xe8\x5a\x8a\xfb\xdb\x5c\xaa\x49\x22\xaf\x2a\x01\x4b\xf8\xa5\xcd\x11\xe5\xc5\xea\x93\xe9\x1c\xd4\x6d\x5a\x1b\x99\xb8\x5a\x26\x70\xe3\x21\xde\x2e\x32\x25\x5a\xfd\x67\xfe\x2c\x37\xfd\x93\x2c\xac\xa2\x2d\x24\x1f\xaf\x4c\xce\xfe\xff\x58\xd6\xbd\x04\xcf\xaf\x11\xde\xdd\x29\xc8\x71\x9f\xfc\xb0\x2e\xf6\x5c\x5d\x3e\xb7\x8b\x4f\xc0\xd1\x70\xa2\xe3\x43\x2c\xc8\x12\xf0\xd0\x41\xd9\x76\x0c\x13\xc1\x2f\x7c\x7f\x2f\x84\xfe\x5e\x0f\x70\x0c\x10\xb1\xa6\x9c\xa4\x66\xa7\x0b\xde\xff\x8d\xbe\xc7\xd3\x18\xfb\x09\xdd\xd8\x27\xef\x61\xca\xa6\x91\x0b\xbc\x06\x1c\xbd\xa2\xb5\x27\xef\x2e\x59\xed\x4c\x17\x22\x99\x72\xf8\x95\x67\xd7\x05\xde\x92\x31\x92\x4b\x41\xbb\x6e\x7c\x01\xfe\x85\x42\x64\x47\x4f\xa7\x6b\x1f\x88\xcd\x57\xea\xc3\x11\x17\x1a\xf1\x03\xd2\x30\x78\x42\x4a\x12\x67\x5f\x2f\xa3\x6c\x2d\xe0\xbf\x53\xc2\x95\xfe\xeb\x31\x57\xde\x95\x89\x22\x98\x6e\x32\x51\x3d\xfa\x33\xb3\x5e\x15\xc3\x94\xa1\x1c\x0f\xcc\x55\xb8\x2d\x6d\xd0\x59\x7c\xdd\xd2\x7e\xde\x7d\xe1\x29\x85\xa6\x16\xe6\x40\x26\xbe\xfb\x5d\x69\x04\x82\xb3\xff\x22\xc0\xdd\x21\xf2\x7a\x08\x6d\x37\xa0\x49\x9e\xa3\x6f\xe2\xc4\xb5\xa9\x59\xd1\x0e\x9a\x61\x0c\xab\x1f\xe0\xd2\x8c\xf1\x01\x3d\xca\xe6\x3d\x8f\xde\xe0\xec\xbd\x8b\x4e\x19\xd5\xd0\x40\xe2\xfa\xd7\xd0\x41\x3a\x38\xe8\xc4\xe7\x35\x52\xad\x46\x04\x7b\x5b\xbd\xd1\x5c\x09\xcc\x0d\x34\xe4\x8b\x91\xfd\xba\xe2\xa9\xd1\x62\xd4\xb2\x1e\xe2\x0a\x1e\xf5\x35\xea\x88\x35\x95\xbc\x49\x51\x69\x2a\x67\x16\x34\x54\xc7\x36\x7f\x13\x4b\xf6\x45\xd4\x8f\x99\x69\xe3\xd4\xf0\xf9\xea\xf4\x14\x4c\xe9\x80\xa0\xa2\xe3\x34\x2c\x74\x6c\x2b\xdc\x3c\xcd\xc2\xf8\xa7\xda\x57\xa0\xe8\x02\x87\x82\xd3\x0a\xf5\x85\x7d\x9e\xfb\x37\x66\x6d\xf6\x5d\x7c\xc3\x84\x71\x66\x61\xe6\x1f\xf5\xc0\x97\x52\x59\x5e\x94\x11\x2c\xa1\xa8\x40\xd6\xe4\xf6\xec\x0e\x55\x49\x4c\x5b\x44\xf7\xc0\xf0\xd4\xa9\x9c\xd7\x09\x05\xbf\x84\x85\x56\x17\x48\xf4\xdc\x0f\xd7\xa4\x4a\x1b\x13\x91\x13\xc3\x8a\x1e\x8e\xb5\xc7\xa2\x0f\x3e\x95\x2e\xae\xa8\xce\x38\xb2\x07\xc2\x8e\xd9\x72\x71\x8f\x03\x1f\x47\x7c\x62\x07\xce\x43\x3c\x51\x5f\x5a\xc2\x84\x0f\x49\x74\xf1\xf1\x69\x89\x62\x6c\x76\xbc\x98"}, {{0x71,0x86,0xf8,0xd1,0x68,0xd9,0xdd,0xf1,0x7e,0xdb,0xaf,0x0e,0x7b,0x1a,0xbc,0xb2,0x6d,0xa3,0xe4,0xc0,0x27,0x2d,0x98,0x79,0xc7,0xfd,0xff,0x64,0x21,0xc4,0xea,0x50,},{0x96,0xb4,0xa6,0x56,0x23,0x20,0x29,0xfc,0x1b,0x83,0x64,0x70,0x3c,0xbe,0xa7,0xa5,0xd7,0x38,0x75,0x18,0xa8,0x8c,0xed,0x1a,0x91,0x5e,0xc8,0xd8,0x86,0x84,0x81,0x32,},{0xa9,0xc0,0x49,0x9f,0xc2,0x16,0xa1,0x45,0x32,0xd7,0x36,0x36,0x5c,0x63,0x55,0xf9,0x38,0xf8,0xd8,0x19,0x4f,0xa1,0x13,0x28,0x48,0xf8,0x3e,0x49,0x04,0x54,0xd4,0xbb,0xf6,0x92,0x69,0xf1,0x22,0x59,0xfc,0x6c,0x07,0x4c,0x10,0x15,0xe4,0x25,0xe4,0xf4,0xf2,0x7c,0x02,0x9c,0x93,0x33,0x49,0x51,0x36,0x1a,0x35,0xad,0x11,0x76,0x54,0x0e,},"\xa3\xe6\xcb\x6b\x84\xcc\x5c\xf1\xfb\x1a\x84\x8b\x4b\x8e\xa7\xcb\x7c\x87\xe0\x44\x57\x50\xc6\x1f\x9a\xa5\xd7\x7d\xed\xdf\x94\x94\x63\xec\xd3\x9b\xfc\x71\xf2\x61\x0c\x2a\x94\x24\x84\x7f\xb7\x6f\x84\xc5\xda\x1f\xa1\x0e\xf7\x18\xa3\x45\x66\xce\xc1\xb3\xe8\x99\xe7\x25\x2e\x8d\x4d\x34\x60\x16\x49\x8f\xf1\x19\x97\x27\x50\x06\x16\x60\xba\xed\x31\x28\x27\x58\x31\x81\x07\x3d\x1d\xc7\x4b\x76\xc4\x30\xca\x30\xd4\x09\xe4\xe8\x43\x9c\x0f\xc4\x8c\x00\x68\x06\x29\xd4\x3a\xe2\xa7\x7d\x69\x22\x8f\x7f\x8a\x12\x53\xaf\x15\xbd\x2c\xb6\xbb\x1c\x16\x96\x55\x0c\x4c\x79\x0f\x44\x98\x69\x63\x0a\xb9\x2b\x9c\x11\xcd\xe1\xf9\x61\xaa\x21\x03\xec\x23\xf7\xd9\xf0\xfe\x9c\x3c\x41\x32\x58\x2e\xfa\x79\xa6\x6a\xe3\x42\x6e\x51\x05\xb8\x0b\xfe\x5e\x04\xdc\x8b\xb1\xe3\x8a\x31\x10\xcd\x72\x98\x4b\x3e\xf0\x2a\x0c\xa6\x2a\xb6\x38\xcb\xcf\xbc\x8a\x6b\x59\x3d\x26\x13\xdc\x06\xec\x86\xfe\xe3\x4f\x65\x18\xd4\xa3\xfb\xdc\x15\x72\x37\x17\x45\x64\xda\xeb\x66\x74\xcd\xc3\x4f\x4d\x65\x37\xcf\x81\xd8\xaa\x9b\xdd\xbf\x3a\xed\xa3\x12\xda\xae\xee\x33\x6f\x9e\xd8\xbf\xf8\x1e\x29\x4b\xc7\xd4\x4d\x25\xcd\x78\x70\x72\xe6\xcb\x41\x4b\x65\xfb\x7a\x84\x6f\xc0\x65\x36\x7b\xa8\xe3\x7b\xef\xfd\xf0\xb7\xba\x8f\x98\xcd\xf1\xeb\x87\x0f\x4e\x8b\x71\x30\xfa\x34\x29\xd2\xe2\x4b\xce\x59\x94\xda\xf1\xaa\x65\xe5\xf6\x03\xb6\x31\x05\x3d\xc5\x10\xb2\xf0\x97\xe8\x6e\x9b\x9b\x55\x23\x02\x75\x79\x68\xd0\x13\x6e\xe6\x75\x4c\x42\xa3\x2c\x99\x0a\xdd\x9c\xb5\x29\xbc\x89\x75\x1d\xfa\x4e\x5e\x3a\x0b\xad\xaf\x4c\xc4\x0b\x6a\x09\x50\x7f\x9f\xcd\x24\xc3\xca\x72\x25\x95\x99\xc6\xee\x58\xd8\x57\xb3\xa1\x89\xe0\x48\x90\x2e\x88\x5a\x36\x07\x42\x60\x93\xcb\x0f\xab\x43\x7c\x0f\xb0\xed\x2f\x1e\x96\xe9\x44\x1a\x7e\x95\x4f\xe3\xef\x76\x46\xe2\x6a\x39\xa0\x70\x33\xd0\xa1\x55\x5d\xfe\xed\x9a\x6f\x57\x79\x4a\xf3\xa2\xab\xf0\x05\x7e\x9f\x85\x3a\xe5\xc3\x01\x38\xfd\x80\xe2\xf2\x9c\x2f\x4a\x93\xad\x31\x45\xda\x10\xa3\xe3\x1c\xe9\xff\x97\x86\xac\x65\xd8\x60\x37\xd9\x8b\x7a\xa6\xd1\x1d\xe8\x80\x00\x10\xe1\x33\x86\x9e\xb6\x7a\x50\x39\xb9\xb8\xfe\xb6\xef\x90\x3d\x0c\xc7\x46\x41\x26\x07\xda\x72\x5c\xe2\xdc\x6a\x35\x21\x09\xdb\xc6\xa5\xe4\x0b\x17\x0c\x23\x05\x0b\xc4\xfb\x1e\xfa\x0c\x34\xfe\xc0\x0e\xae\x32\x19\xc2\x90\x40\xe8\xf5\x97\x8c\x93\x84\xee\x91\x5d\x8c\x93\x98\xdd\x12\x0d\x5c\x3c\xba\x38\xf8\x52\x6b\x06\x19\x7c\xb2\xc2\x61\xde\xc7\xd7\x26\xae\x13\x0f\x9b\xee\x17\x26\x17\x00\xe9\x99\x31\xfa\xc4\xb4\xdc\xa0\xf7\x58\x70\x1a\xcb\xf3\x70\x7d\x47\xdf\x53\x21\x13\x0e\xc1\x0b\xb3\xb1\x30\x78\xc4\xdc\x5d\xe3\x47\x0f\x15\x8b\x57\xdb\xeb\x87\x8b\x3a\x85\x24\xe0\xed\x2c\x95\x47\x54\x5f\x0f\xdd\xf1\x31\x25\xe4\x5b\xb2\x3d\x6a\x7b\x38\x3a\x18\x7f\x4c\x5d\x54\xa7\xb4\xc8\x3d\x59\x57\xf2\xcd\x7e\x6f\xbc"}, {{0xe8,0x6e,0x8c,0x62,0x56,0x6e,0x15,0x75,0x3b,0xd5,0x57,0x7e,0xaa,0xe7,0xf2,0x41,0x05,0xb7,0x40,0x55,0xa2,0x56,0x29,0x58,0x07,0x08,0xbf,0xc8,0x3a,0xeb,0xf0,0x6c,},{0x8c,0x8c,0xe8,0x82,0xd5,0xf7,0x65,0x86,0xd8,0xdd,0xcc,0xc5,0x57,0x9b,0xcc,0x1c,0xdf,0x4c,0xfd,0x71,0x62,0x30,0x4c,0xb1,0x0e,0x76,0x96,0x02,0x6e,0x70,0x7f,0x17,},{0x54,0xd2,0xfd,0x44,0xac,0xf9,0xe2,0x09,0xbc,0x7e,0x43,0x33,0x72,0xbd,0x73,0x07,0x4d,0x07,0x80,0x6a,0x77,0xc6,0xce,0x22,0x8e,0x9b,0xe9,0x94,0x41,0x8b,0x00,0xc7,0xec,0xbc,0xb7,0xac,0x00,0x6c,0x29,0x4a,0xec,0x9d,0xe6,0x68,0x57,0x2a,0xdd,0x51,0x7c,0x06,0xb4,0xeb,0x4f,0xe2,0xff,0x35,0x23,0xbf,0x04,0x3d,0xf4,0x4d,0x3d,0x0d,},"\x12\xfa\x63\x1b\x0e\x48\x2e\x9b\x9d\x63\x3e\x94\xb8\x2d\x8a\xb4\x36\xfe\x54\x8e\x5b\x95\xda\x92\x62\x46\x23\xd1\x3f\x2c\x70\xda\x77\x5b\xa1\x36\xc5\x22\x9c\x16\xa0\xc7\xa6\xfa\x91\x4b\x2f\xed\xa5\x64\xe1\x72\x19\xe4\x73\x70\xf9\x51\x5b\xb1\xd5\x9d\xe6\xe9\x58\x62\x04\xd9\x43\xdc\x56\x0d\x73\xe2\xe7\x57\xf7\xeb\x39\xbb\xc7\x11\x1b\xb4\x6b\xc6\x43\xc1\x3f\x60\x21\x12\x73\x9b\xec\x77\x8d\x7d\x4f\x49\xd0\x92\x56\x3d\x68\xf5\x77\x6e\x43\x0e\x3b\x0b\xf2\xdc\x1b\x01\xbe\xb3\x04\x01\x96\xda\x63\x02\x90\x8b\xfe\x91\xe0\xfc\x38\xe0\x4c\x15\x0e\xf9\x07\xdc\x73\x6c\x44\x5f\xf2\x1f\xdb\xd2\xdc\x1e\xac\x0a\x0f\x5d\x00\xa3\x0a\xf0\x28\xaf\xe2\xff\x61\x16\x2b\x75\x8c\x7d\xa9\xa7\x76\x66\x6a\x11\x23\x59\x43\x1c\x48\x85\x6a\x87\xca\x82\xd3\xdd\x1c\x8a\xf3\x76\x59\x86\x35\x43\x2b\xf8\x91\xbe\xcb\xc3\x3a\x8f\xda\x44\xce\x88\x3e\xa8\xaf\x4a\xd8\xb9\x1a\x92\x61\xce\x76\xb9\xe9\x39\xc4\x61\xfa\xc5\x3a\xe0\xf0\x76\xe8\x2d\x87\x9a\xac\xe8\xf3\x8f\x12\x0b\xc9\xb0\x4d\x81\x25\xed\x24\xbc\xd7\x79\xd9\xd2\x43\x86\xb1\xdd\x20\x17\xeb\xee\x81\x97\x37\x6e\x8c\x36\xfa\x3a\xef\x8c\x1e\x71\x3e\x2b\x8b\xce\x49\x66\xd8\x48\x88\x68\x1b\xa7\x84\x95\xfb\xd1\xd6\xcc\xa5\x86\x26\xe6\x85\x4c\xda\x60\x6b\x83\xd6\x29\x3d\x01\xe8\xe3\xe1\x3b\xbf\x4a\xac\x85\x1d\x9a\x1e\x00\xd0\x02\x4e\x26\x99\x3b\x0b\x30\x91\xbe\x7e\x80\x61\xbc\xbb\x3c\xbb\x23\x02\xce\xab\x96\x89\x7a\x8e\x1f\xf3\x67\xec\x86\x25\x69\x3c\xf3\x15\x34\x12\x4a\x9d\x5d\x72\x5b\xca\xe0\x01\xd6\x7b\xc2\x11\x1d\x0a\xb8\x11\x1f\xa1\xd2\x4e\x4e\xd0\x6d\x63\x58\x3c\xe6\x90\xf2\xa0\x46\x26\xd7\x91\xd2\x9e\x3e\x31\x5a\x41\x5b\xf2\xe8\x53\xa5\xf2\x97\x4c\x83\x3a\x3f\xe2\xe2\x90\x9c\xf6\x69\xc7\x3c\x1f\x59\x39\x2d\x30\xc3\x7f\x3b\x9c\x5a\x3d\xdc\xfd\x75\x62\x1f\xda\x36\xe4\xba\x2f\x16\x14\x78\x58\xf6\xf2\x06\xb9\xa1\x40\xf1\xdd\xc1\x46\x6c\x9a\x53\xed\x73\xf8\x24\x90\xbc\x95\x32\x2c\x95\x5f\x61\xd1\x1c\xb5\x1d\x5e\x8a\x58\xc6\xb3\xcb\x0f\xdf\x04\x19\x76\x32\x01\xbe\xea\x93\xa8\x51\x2b\x14\x05\x24\x5b\xfc\x38\x41\x55\xad\xc5\xce\x77\x8a\xa7\x4d\x00\xa3\x22\x72\x64\x65\x11\x9a\xf7\x95\x01\xf0\x40\xdd\x0a\x7a\x84\x06\x00\x01\xca\x89\xd2\xfe\x5e\x9c\xf9\x77\x9a\x54\x7e\x3e\xbd\x3b\xf8\x64\x29\x90\xa3\x69\x0e\x2b\x2c\x3e\x54\xcb\x7e\xee\xea\xbc\x24\x2b\x4d\xd9\x92\x74\xc4\x25\xa8\x67\x93\x1c\x92\x9c\xa7\x08\x08\x60\x1c\x39\x08\xcf\xd7\x88\x86\x7d\x68\x7d\xc3\x66\xe9\x76\x35\x0c\x9e\x70\x58\x4b\xd3\x90\xd6\x7e\xeb\x7c\xfe\xa2\x6c\x42\x68\x6d\x3d\x96\x20\xf6\x2f\x64\x10\x4e\xf4\x1e\xd1\xd1\x30\xd7\x9e\x32\x59\x38\x48\x62\x96\xb7\xab\x2d\x2a\xdb\x78\x52\x67\x43\xe4\x00\xac\xb2\xb7\xaf\x09\x62\x8d\x68\xcf\x94\x75\x10\x16\x25\xc2\x0e\x1d\xc0\x51\xd7\x3c\x99\x7c\x95\x2e\x12\x81\x2c\x80\x5b\x68\xff"}, {{0xa5,0xca,0xb2,0x72,0x7e,0x2f,0x13,0x1a,0x4d,0x63,0xfa,0xce,0xe7,0x99,0x33,0x66,0x63,0x93,0x0a,0xa0,0x7a,0xfd,0xa6,0xbd,0x5a,0x8e,0x98,0x5a,0x02,0xde,0xb1,0xea,},{0xac,0x35,0x5f,0x95,0x26,0x0f,0xbf,0xea,0x77,0x8c,0x55,0xb5,0xaf,0x8b,0x3f,0xd1,0xf2,0x4d,0x26,0x93,0xda,0x35,0xde,0x4e,0xe5,0x08,0xa2,0x7e,0xd3,0x50,0x39,0x1f,},{0x13,0x8c,0x7a,0x8e,0xca,0x5b,0x5c,0x37,0x15,0x88,0x13,0x84,0x3c,0x9a,0x90,0x4e,0x5f,0x53,0x0a,0xd9,0x71,0xee,0x43,0x2a,0x44,0xf3,0x44,0xf8,0xc6,0x4b,0xbf,0xaf,0x10,0x2f,0xf4,0x1d,0xaa,0x5c,0xf7,0x22,0xa4,0xbc,0x66,0x40,0x58,0x87,0x59,0xb8,0xf3,0x6f,0x9c,0x05,0x9e,0xab,0x93,0x6c,0xc4,0x5e,0xd4,0x79,0x63,0x94,0xa0,0x02,},"\x48\x34\x39\x15\x4d\xd5\xe5\xd1\x09\x85\x7c\x24\xd1\xc4\xe7\xfb\xbe\xfd\x2f\x38\x65\x1d\xa8\x12\x89\xf2\xad\x3d\x61\x54\x30\x65\x38\xb8\x2a\xc7\xdb\xa9\x21\x0e\x74\x07\x76\xed\xe4\xcc\xf5\x1d\x4f\x63\x09\x4b\x03\xe4\x6a\xd3\xaa\x3c\x31\x94\x7d\x8c\x36\xce\x6f\x94\xe8\x52\x96\xbd\xed\xcc\x1e\xad\x62\xea\xa1\x44\x1e\xcd\xe0\xa2\x25\xd0\xbf\x02\xed\xca\xcf\x86\x50\x14\x89\x9a\xf6\x6d\x98\x08\x04\x0c\x2d\x02\x00\x0a\x0f\x5c\xe4\xf1\x68\x3c\x1a\x49\x52\x76\xd9\xc4\xd7\x28\xc9\xec\xd6\xf0\x78\xdb\x8a\x0c\xfc\x26\x71\x87\x23\x85\x62\xab\x1a\x1e\xa2\x81\x3f\xb4\xf1\x2e\x87\x8e\x1b\xa1\x43\xf4\xd0\x6a\x3b\xc8\x10\x0c\x35\x50\x11\x8d\x69\xda\xe6\x7b\x55\xed\x69\x2a\xcf\x94\x44\xda\xa5\xc3\xe3\xc0\xa9\x8e\xe2\x8c\xf1\x72\xde\x0c\x58\x4c\x9f\x2e\xc9\xbb\x6e\x9b\x57\xf5\x72\xa8\x6f\xf8\x72\x9f\x65\xf4\xc6\x5b\x7f\xea\xcc\xaa\x21\x72\x0e\xd7\x9e\x90\x61\x8b\xca\xfb\xfd\x95\x33\xda\x85\x23\x2b\x45\x08\x83\xaa\x91\x9f\x82\x7f\x04\xc4\xa9\x7b\xf5\x13\x90\xd4\xf8\x56\x9c\x19\x17\x26\xf4\x4f\x7e\x39\xfb\x3d\xb7\x3b\xfc\x41\x5b\x6f\xfc\xa8\xb9\x1a\xca\xad\x69\x23\x85\x72\xf1\x4b\x49\x98\x5e\xa0\x3c\x98\xd7\xb1\xd4\x4b\x3a\x65\x54\x76\x5b\x19\xab\xf9\xb2\x52\x74\xe9\x7e\x46\x34\xe4\xb0\xf9\xe8\x02\xeb\x6f\x74\x3f\xff\x95\x07\x57\xee\x01\x3a\x69\x88\x22\x18\x81\xa7\x44\x3f\x1f\x32\xbc\xcb\x00\x7e\x99\x37\x9c\x7c\xa4\xf9\x06\xd5\xfe\x11\xcb\x12\xf6\x6b\x53\xa3\xd2\x1a\xc9\x47\xbe\x0c\x81\x50\xbc\xd0\x4f\x1c\x81\x6b\x3f\x0c\x07\xc5\xfb\xc0\x90\x5a\x71\x36\x95\x68\x49\xda\x03\x83\x6d\xae\xc2\x5c\x3e\x1a\x06\xec\x3a\xeb\x20\x56\x48\x17\x6f\x89\xf4\xa2\x91\xfa\xc4\xf1\xd3\x89\x9f\x56\xc9\x06\x5e\xeb\xb8\x76\x8b\x84\xb3\x1b\x7c\xc0\x31\x08\xbd\x08\x88\x33\x8d\x17\x74\x99\x49\x70\x29\x2d\x93\x50\x31\xfe\xa3\x35\xd9\xe7\x90\x8f\xe0\x25\x48\x89\xc0\xb1\x71\xcf\xe0\xaf\x2e\x6f\xde\x7a\x5e\xa3\xde\x1f\xdc\xda\xe5\x37\xb6\x31\x31\x19\xc2\x7f\x77\x20\x24\xef\x36\xe4\x5c\x8b\x89\xf2\x6c\x93\xd9\xee\xa1\x37\x25\xe1\x2d\x81\x0c\xf9\x82\x4a\xea\x04\xcb\x80\x2d\xa7\xe4\x58\xe8\x42\xca\x37\x5e\x36\x71\x34\x6e\x00\x89\xde\xc5\x71\xbe\x16\x9b\x0d\x90\x96\x6b\xf3\x68\xfe\x36\x98\xfd\x3e\x72\xbf\x16\x24\x9d\xd9\x00\xaf\x6d\x29\xff\xa4\x83\x51\x36\x0f\x12\x24\x17\x14\x58\x5f\x7a\x9b\x4c\x7b\xaf\xc9\x52\x22\x67\x35\xde\x14\x62\x74\x3d\x78\xab\xad\x0f\x67\x11\xf2\x49\x5f\x33\x13\xad\x4e\x0b\xa2\x16\xb0\xde\xa5\xdc\x15\x16\xa9\x54\x9f\x7d\xfc\xfe\xb9\x3e\x59\x1a\xbe\xda\x5e\xa3\xc7\x04\x59\x06\x52\x3b\x40\x86\x8c\xa5\x73\x5d\x6a\x33\x71\xc3\xc2\x94\xc1\x11\x26\xd0\x97\xf4\xc7\x08\xe9\x04\x64\xc1\xad\x91\x42\xfa\x0b\xed\xf0\x7d\xfc\x5f\x4c\xb6\x7d\x6e\xd8\x0f\x1b\xfe\x72\x68\x3c\xfb\x2a\xd6\x65\x30\xdc\x43\xd7\x02\x3f\x37\x90\xff\x42\xd9\x5b\xd8"}, {{0xcb,0x63,0x19,0x61,0x37,0x79,0xa4,0xef,0x66,0xbe,0x14,0x14,0x4b,0x28,0x40,0xad,0x01,0x67,0xc0,0x3f,0x3b,0x8d,0x04,0xff,0x59,0x2c,0xd1,0xd2,0xd7,0x22,0xe3,0x30,},{0x18,0xeb,0x03,0xf0,0xa3,0x34,0xb0,0x80,0xe1,0xaf,0x43,0x99,0xd8,0x37,0x6d,0x83,0xc5,0x33,0x31,0x6d,0xc6,0x87,0xcf,0x34,0x1f,0x0a,0xfa,0xb4,0x50,0x96,0x52,0x99,},{0xc1,0xb3,0x99,0xcd,0xc1,0x98,0xe9,0xa1,0x59,0xe6,0x84,0xfc,0x26,0x68,0x6d,0xe6,0x60,0xda,0x54,0xcf,0xe3,0x12,0xca,0x73,0x45,0xdf,0x0c,0x7d,0x15,0xa3,0x57,0x43,0x01,0x44,0x10,0xbd,0x2f,0x6c,0xd1,0x1e,0xef,0x33,0xa8,0x9b,0x3d,0x15,0xcb,0xc1,0x7c,0x7a,0x35,0x89,0x37,0xfd,0x99,0x72,0x05,0x05,0x1f,0x92,0x57,0xc2,0x56,0x09,},"\x87\x4a\x6c\x81\xd6\xdb\x71\x33\xa7\x91\x69\x76\x0c\x84\xd3\x6e\xea\x3d\x42\xea\x08\x92\xb7\xc8\xdd\xe8\x44\xa3\xa6\xb6\x0a\xa9\xf2\x66\x07\x26\xc9\xc4\xdd\x26\xa0\x1f\x4e\xd0\xdc\x1c\x53\xba\x60\x05\x46\x3f\x7e\xa6\x4a\x1e\xc6\x39\x53\xbc\x3d\x81\x05\x2a\x2f\x10\x84\x38\x9a\x77\x06\xdf\x74\xed\x41\x36\x08\x2a\xb5\xc6\xe8\xc7\xf4\x11\xdf\x9d\x3a\x0f\x3c\x40\xf5\xa6\x0e\x2d\x21\xa8\x54\x8e\x7a\x25\xde\xe3\x40\x30\xb3\xc3\xe7\x5c\xaa\x93\xdd\xaa\x9c\x19\x0c\xb6\xde\xda\x24\x13\xd5\x4e\x37\x3d\x43\x53\xdb\xa4\x3d\x39\x49\x1a\x2f\x56\xc8\xb3\x6d\x45\x01\x6f\x77\xd7\x47\x16\x91\x63\x45\x39\xe7\x6c\x4f\xb4\x19\x13\x47\x2b\x0a\x23\x05\x4f\x54\x8f\x54\xb1\xe7\x10\x9c\x8b\x65\x21\xb5\x7a\xe9\x81\xd0\x50\x31\x6a\x33\xc4\x9c\x71\x16\x26\x8d\xcc\x4b\x78\xc2\xba\xe5\x3a\x3a\xe4\xdd\x17\x8b\xb8\xb7\x6b\xb3\xbe\xfe\x19\xe4\x1a\x2c\xf1\x2c\xeb\xb7\x11\x68\xf9\x71\xf2\x02\x46\x1c\x63\xf7\xd6\xee\xf1\x07\xf5\xb1\x03\x0e\xdd\x4e\x75\x00\x9e\x91\x16\xc3\xcd\x0e\x8b\xdd\xc2\x99\xb4\x1f\x1a\x45\xe7\x84\xef\xa6\x46\xda\xda\x64\x06\x8e\x92\x48\xec\x98\x8f\x23\x26\x34\xad\x3d\x5a\xab\x19\x56\x0e\x83\x0a\x5b\xd6\x65\x45\x7c\x94\x29\x5e\x1a\xf0\x16\x0f\xbc\xe2\x72\xef\x48\x45\xdd\xf0\xc4\xf2\x4d\x97\x6f\x51\x86\x90\xea\x1f\x82\xff\x4d\xfa\x48\x13\x64\x1a\x67\x59\x8e\xa9\x84\x01\xe0\xff\x10\xa0\xe5\x82\xe2\xb9\x08\x67\xb4\xe6\x23\x2c\x34\xea\x49\x9c\x16\x99\x09\xa4\x41\x26\xf3\x77\xd8\xcc\x1c\x11\x90\x58\x66\x34\x0e\xfd\x1e\x7b\x07\x7d\xc7\x45\x6d\x59\xc9\xb9\x6a\x12\x4a\xac\x3b\x33\xbb\x22\x74\x41\xbb\x7a\x52\xe6\xc3\x14\x0d\x7a\x4f\x67\xca\x05\xbb\xc9\x3c\x93\x77\x5b\x92\x91\x19\xa2\x24\xed\x8f\x39\x00\x58\x20\xf4\x20\xcc\x6c\x53\x0e\x61\xe2\x0a\xdc\xa0\x1e\x93\x9c\xc0\x31\xdf\x49\xcd\xb1\xec\x8f\xf4\x93\xc9\xef\xbc\xad\x34\xc5\x71\x08\xef\xd7\x64\x55\x89\x66\xfb\x14\x70\xb0\x74\x5e\x69\x66\x19\x1a\x9a\x9e\x44\x58\x1b\x09\xfa\xf4\x69\xf9\x51\x53\x72\x03\xd9\x26\xbc\x8a\x55\xd0\x80\xa8\x05\x18\x1d\xd7\x29\x6e\xd2\x0a\x81\x82\x68\xf7\x55\xea\xa6\x6b\x08\x22\x42\xf4\xd0\x20\xf7\xcd\x67\x20\x89\x04\x84\xc0\x1c\x75\x7f\xe3\x5d\x87\xb5\xbc\x90\x6d\xea\xcc\x2e\x30\x71\xde\x46\x01\xbc\xf0\xdd\x6b\x83\x7c\x43\x31\x06\x04\x7f\xd8\xec\x9b\xd0\xe9\x8c\x9e\xe8\x06\xf7\xec\x8c\x5a\x10\xea\x21\x36\xf1\xf9\x0f\x90\x0b\x85\x3f\x95\x3f\x00\xb0\x76\xbd\x1e\xbd\x92\x9d\x08\xa3\x8b\xec\x68\xd8\x66\x43\x50\x47\xbc\xb6\x72\x1e\x06\xb6\x40\x85\xdc\x05\x58\xc1\xfa\x85\xa2\xc8\x3b\x0c\xaf\x4c\x81\x60\x84\xf1\x0a\x4c\x58\x85\x29\x5b\xca\x15\xff\x7c\x18\xe5\x96\xc6\x2c\x92\xee\x99\x21\xa2\x7c\x29\xd1\x95\xbd\x28\x22\x13\xff\x36\x60\xb6\xe7\x54\x6b\x4e\xaa\x77\x7c\xe3\x9f\xc5\xd2\x04\x84\xc7\x1e\xd6\xca\x06\xf9\xb7\x7a\xb1\xd8\x72\x39\x3a\xb2\xd1\x02\x55"}, {{0xb2,0x98,0xad,0xf3,0x8a,0x67,0x08,0xf8,0xd1,0x8f,0xf1,0xed,0x96,0xbf,0xba,0xb4,0x21,0x54,0x0d,0x09,0x6c,0x4e,0x43,0x51,0xb9,0x22,0x09,0xb5,0xe6,0xaa,0xab,0x65,},{0x77,0x0e,0xdf,0x42,0xb8,0xa0,0x39,0xc6,0xca,0xb9,0xba,0x65,0xeb,0xfb,0x13,0x5a,0xbc,0x2d,0xa3,0x14,0xa4,0xc3,0x09,0xf4,0x6a,0x8f,0x32,0x5b,0x52,0xd0,0x65,0x93,},{0xe5,0x5f,0x8d,0x30,0x41,0x22,0xdc,0x17,0x5c,0xf0,0x27,0x46,0x74,0xfc,0x9d,0xed,0xfe,0xc2,0xb5,0xf8,0xa2,0xee,0xb1,0xe3,0xe7,0xf8,0xe0,0xdf,0xba,0x0d,0xac,0x2d,0x32,0xf4,0xe7,0x04,0xce,0x91,0xcd,0x59,0x91,0x84,0x13,0x3c,0x3b,0xf1,0x06,0x3d,0x2f,0xae,0x63,0xd7,0x3a,0xcc,0x57,0x72,0xd7,0x18,0xd8,0x11,0x83,0x31,0x86,0x02,},"\x9d\xf4\xd5\xd7\x56\x5d\x2c\x05\x22\x62\xdd\x34\xd6\x00\x7d\x86\xd9\xc0\xf0\x7c\x70\x89\xaf\x61\x19\xe3\x04\xf4\xd8\x01\x1d\x7e\xaa\xd7\x7b\x3e\xf7\x0c\xc2\x80\x84\x7d\x59\xf2\x97\x20\x2b\x7e\x18\x61\xae\xf3\x34\xbf\x38\xde\x14\x74\x0e\x80\x73\xc9\x55\xa8\x51\xd2\xcf\x3d\xad\xc3\xed\xce\x15\xbe\x49\x0e\xaa\x84\x5b\xa5\x53\xfc\x6e\x87\x46\xe5\x29\x15\xe6\x55\xaf\x4b\x86\xc6\x29\xd4\xc5\x22\x78\x36\x35\xd4\x64\xa2\x82\x57\x77\xd8\x9d\x70\x97\x67\x7e\xf0\xe5\xee\xae\x38\x53\x7e\xcb\x65\x6e\x3b\x28\xdd\x07\x35\x8f\xd9\xfb\x2c\xd4\x62\x51\x72\x86\x65\x9a\xef\xc7\x9d\x37\x4d\x1d\x13\xed\x93\x96\x7c\x53\x0c\xde\xa4\xf3\x14\xa0\xf9\x1d\x62\x89\xb4\xc7\xa4\x27\x9b\x6f\x4c\x4a\xbc\xa3\x33\x57\xf6\x9e\xd8\x4b\x91\x19\x63\x7a\xdb\x7c\x18\xe6\x94\xcb\x3c\x56\xe7\x36\x37\xda\x91\x07\x35\xd4\x3c\x38\xaa\x80\x86\x67\x5a\x06\xad\x37\x0e\x57\x26\x88\x1d\xa5\xe1\xa1\xdc\x61\x44\xd6\xa6\x2a\xff\x7f\xb0\xc3\x52\xd8\x8d\xc9\x71\xa3\xd7\x2d\x30\x71\xe1\x4b\x47\x42\x53\x56\xaf\x1b\x01\x92\x33\x53\x82\x61\x45\x1a\x99\xa6\xcf\x4a\x07\xce\x9a\xb1\xc3\x99\x0d\xe6\xab\x8d\xe2\x11\x6c\x75\x61\x05\xc5\x12\xb7\xa3\xee\xb3\x15\x7b\x15\x8b\x32\x1e\x44\x4e\x80\x6d\x89\x0b\x38\x90\xed\x9d\xdc\x86\x9f\x17\x11\x72\x3b\xb9\x9a\x72\xbd\xb9\x23\xd1\x31\xba\x4e\xdb\xfb\xb6\xda\xe9\x9a\x5c\x7b\x32\x8d\x31\x0d\xf9\xa6\xd1\xdc\xd8\x59\x18\x96\x28\x33\xe8\x9e\x20\xf5\xc5\xe6\x33\x3a\xc8\x61\x09\x4a\xe9\xe7\x99\xc8\x64\x1b\x9b\xae\xa1\x1a\x2e\x0e\xc2\x34\xbe\x59\x30\xe0\x28\x80\x85\x9c\xde\xc0\xd9\x78\x23\x7c\xbe\xa5\xc7\xc3\x2c\x11\x1b\xaf\xdd\x4b\xfb\xff\xe4\xfb\x34\x85\xef\xfe\xcd\x51\xbd\x19\x5a\x71\x40\x4c\xa5\xb5\x9a\xfa\x25\x2d\x7b\x5f\xf9\xd0\x30\xf4\x8c\x6f\xaa\xdb\xdb\xa9\x18\xf2\x1a\x0c\xd3\x9a\xf5\x69\x66\xdc\xcf\xa2\x5f\xb5\xa5\xcf\x9a\x4b\x26\xa7\xf5\x44\x1d\xf6\xe3\x20\xe3\x4b\x27\x39\x3d\xe2\xec\xfb\xd6\x9a\x15\x94\x90\x9a\x6c\x68\x5e\xc6\x45\xfc\xf3\x04\x8d\x01\x48\xfa\x38\xd3\xe8\xa6\x4d\xc3\xc2\x1a\xe4\x4d\xa7\xe4\x6a\x5e\xa7\x93\x6c\x2b\xa0\x83\x68\x9a\x78\xca\x3a\xc6\x0b\x87\xbe\x6d\x23\xea\x40\xf5\x96\x15\x83\x74\x28\x42\xe3\x75\x25\xa4\x9c\x5f\xe8\xfd\x15\xd7\xb0\xc9\xe8\xfc\xcd\x07\x93\x6d\x19\x53\x82\x12\xf7\x37\x3d\xbb\xf3\xdf\x7d\x46\xad\xf9\xd9\xf5\xdb\x09\x52\x4c\x65\xb8\x83\xae\x6f\x6c\xef\xa2\x4b\x19\xec\x48\xce\x28\xcf\xa7\x34\xd9\xbd\x6e\x77\x83\x7d\x1a\x14\xd6\xa1\x9d\x34\x5b\xfb\xea\x55\x9e\x7e\x6b\xfb\x71\xdd\xad\x83\xcd\x8d\xee\xab\x68\x7f\xe7\x3c\x05\x74\x88\xf8\xf2\xb3\xe2\xe2\x6d\x13\x00\x9f\x4d\x23\xe6\x61\x9a\x23\xc0\x69\x2a\xf7\x66\x69\x21\x7d\x5e\xbd\x46\x08\x5b\x39\x88\x90\xe5\xc9\x1f\xdb\x4d\xb5\xba\x40\xe7\x77\x3d\x51\x8d\x3c\xf0\x0c\x0a\x5b\x5a\x4b\x0f\x1b\x85\xd6\x29\x16\xa5\x9e\x56\x07\xb7\xb1\xeb\x80"}, {{0xe9,0xcf,0x16,0xd6,0x96,0xf6,0x3b,0x59,0xe5,0xe2,0x5c,0x9e,0xe2,0xd7,0x5b,0xb0,0x5e,0xd2,0xba,0xa5,0x91,0xa7,0x55,0x7f,0x9f,0xb1,0x29,0xcf,0x98,0x3d,0xe0,0xba,},{0x6d,0x1a,0xe3,0x85,0xe8,0x0a,0x39,0x55,0xe8,0xd0,0xc5,0x93,0xa8,0x1f,0x43,0x1c,0xd4,0x32,0x67,0x1e,0x78,0xcd,0xba,0xfe,0x83,0xfe,0x58,0xdb,0xcd,0xb9,0x85,0x60,},{0x81,0x12,0xac,0x37,0xea,0xfb,0x74,0x9d,0x3f,0x4a,0x1e,0xa1,0x48,0x43,0x79,0xdf,0x3e,0x38,0x3b,0x01,0x9c,0x12,0xde,0x85,0x15,0xe3,0x49,0xe4,0xf6,0xf9,0x98,0x63,0x2e,0x30,0x96,0x83,0x47,0xa1,0xd1,0x5b,0x09,0xda,0x2e,0xb8,0x00,0xb0,0x3d,0x81,0x9d,0x20,0x2b,0xd1,0x0a,0x6a,0x46,0x3b,0xb0,0x2b,0x36,0x6d,0x68,0x55,0xfe,0x0e,},"\xa1\x0f\xea\x8f\xc9\x3e\xcc\xfe\x2a\x6b\x78\x26\x07\x95\x63\xad\xf8\xaa\x9a\x66\x64\x44\x93\x22\x00\xcc\xa9\x44\x7d\xd0\x27\xc5\xc7\x20\x4e\xa6\x2b\xf8\xf5\xe2\xe3\x91\x45\xac\x39\x48\xab\x3f\x31\x86\x88\x7b\x30\xbc\x60\x23\x30\x24\xb4\x83\xf3\xf5\x19\x03\x6a\x3e\x94\xc8\xd7\x51\x0a\x85\x3a\xc6\xe2\x0c\x6e\x52\x6e\xe3\xcd\xb7\x6d\xe6\x63\xf6\x73\x05\xad\x80\xdf\x23\x42\xc8\x50\x1b\x4f\x4a\x8e\xe3\x66\x5a\x79\x8f\xc4\x37\xdd\x81\x4e\x4e\x47\xe7\xa4\x66\x89\x0e\x0f\xfa\x8f\x51\x0f\x3e\x6e\x19\xc9\xc9\x69\xf7\x0a\x76\xe5\xcf\x30\x54\xd1\x7d\xe4\x59\xac\x8e\xe9\x95\x50\xbd\x38\x31\x9f\x36\xe4\x33\x43\x4a\x92\x6a\xd6\x8b\x96\x1e\x0c\xa1\x0a\xdd\x4b\xa9\x92\xb3\x65\x06\x60\xa2\xc3\xc2\x6f\x5d\x74\x0a\x31\xaf\xb7\x76\x3f\x54\x2f\x72\x3b\x8a\x3c\x92\xd8\xae\x92\xa5\x67\x76\x4e\xfc\x70\x53\x03\x12\xba\xab\xdd\x3f\xbb\xd5\x27\xfe\x0f\xcb\xca\x3f\x6a\x70\x64\xcd\xde\x18\x56\xe9\x7a\xb7\x86\xaf\x7d\x70\x22\xa9\xd4\x6a\x33\x8e\x8e\x17\x54\xaf\xd9\xad\xac\x85\x6a\x38\xde\x2a\x4c\x97\x66\xde\xe8\xdb\xc7\x09\xb0\x67\x1a\x6a\x6e\x6e\x1e\x5d\x12\x07\x4d\x22\x24\x5c\xd7\x3b\xee\xeb\x1b\xd8\xec\xfc\x1e\x85\xa2\x1b\xde\x25\x3f\x7c\x46\x5a\xbc\x1f\xea\xa9\x61\xc0\xff\x5c\xff\x2d\x89\x64\x72\xae\x17\xab\x84\x88\xe3\x3f\xfe\xfd\xb7\x2c\x10\x5e\x20\x4f\x94\x4a\xda\x51\xee\x13\x98\x1a\x13\x6c\x0f\x38\x42\x6e\x3e\x49\xb0\xe9\x18\x41\xc3\x27\x94\xd5\x2f\x13\x35\xdf\xa6\x37\xf1\x51\xc7\xe4\x0f\x9b\x83\x0a\xed\x53\x9a\xc5\x73\x1b\x81\xcd\xe3\x26\x4d\x22\xbe\xad\x31\xa6\xcc\x68\xd1\xa7\x31\x43\xb5\xba\x48\x16\x13\x92\x32\xf3\xf7\xf9\x79\x83\xf4\xec\xba\x64\xc4\x95\x53\xbe\x9d\x6d\x94\x3f\x91\xdf\xe0\x3d\x1e\xe8\x61\x8c\xd4\x0d\x2f\xb7\x23\x8a\x31\xd1\xbc\x38\xe7\x6a\x55\x1f\x9e\xee\x22\xe7\x3a\x27\xd7\xa4\x8b\x40\x87\x72\xea\x72\xc3\xed\x63\x7b\xb4\xb1\x68\xf9\xd7\xae\xad\x94\xea\x03\xbc\x11\x10\x99\x01\xc8\x89\x92\x7d\x51\xcd\xac\xf9\x62\x12\x59\x62\x55\x99\x79\xd3\xe4\xc8\xe3\xb5\xae\x58\x2f\x2d\xba\xd4\x99\x88\x02\x85\x6c\x4d\xf6\x9e\x8f\xb5\x49\x17\xe2\xf3\x6b\xb6\x7a\x19\xa2\x6e\x9a\x9a\x94\x85\xbc\xe9\x8d\xbf\xff\x0d\x2b\x02\xb9\x37\x7a\x91\x37\xa7\x34\xe5\x7b\x5c\xe6\x65\x05\x30\x17\xe9\x92\x67\x7a\x1a\xa0\x79\x24\x0d\x2c\xf9\x63\xcd\xf9\xbf\xea\x8d\x46\x00\x91\x23\x2d\xaf\x89\x80\x1f\xd7\x51\x71\xa6\x19\x5a\x5c\x04\x68\x15\x91\x4b\xe1\xf6\x28\x68\x78\x3d\x6f\x2c\xf2\x8a\xf9\x37\x8d\x6c\x68\x93\xe7\x5d\xe6\x41\x11\x1c\x68\x47\x27\xef\xfa\x31\xb8\xbc\x9b\x0a\x01\xdb\x9c\x9e\x81\xcc\xd8\xf4\xd4\xe8\x75\xd4\xbd\x90\xd2\x53\xf5\x89\x89\xa8\xa5\x2a\x20\x3a\x77\xa4\x96\xd6\x97\x98\x6b\x03\x1e\x9f\x69\x9b\xc6\xa1\x6c\xd5\xf9\xc3\x60\x18\xeb\xda\xa3\x6b\xad\x0e\x01\x4f\x4c\xf3\xb4\xb7\x46\x17\x1b\xf8\x93\x14\xe8\xb7\x2c\xbd\x47\xcc\x61\x6a"}, {{0x23,0x8a,0x6d,0x49,0x79,0x32,0x1a,0x14,0xa9,0x97,0x23,0x6f,0x45,0x85,0x04,0x6c,0xf7,0xa0,0x5c,0x0a,0xdc,0x6b,0xa1,0xfd,0xb1,0x9e,0xc2,0xa3,0x2f,0x62,0xbe,0xeb,},{0x0b,0x4b,0xa6,0x74,0xe4,0x01,0x66,0x5b,0x67,0x90,0xcf,0xda,0x08,0x07,0x04,0xcd,0x90,0xe2,0xf3,0xd3,0xef,0xab,0x25,0x3e,0xd8,0xdc,0xfb,0xd1,0x8e,0x40,0x67,0x89,},{0x29,0x42,0xf7,0x08,0xc0,0xed,0xe4,0xcb,0x0d,0xde,0xf1,0x3b,0x85,0xd7,0x1d,0x72,0x13,0xe0,0x38,0x3d,0xd2,0x94,0xf5,0x34,0x13,0x5f,0xd6,0x9c,0xaf,0xbc,0xfc,0x0e,0x33,0x09,0x0a,0x2a,0x0c,0xa3,0xfa,0x57,0x2c,0x72,0xcd,0xf5,0x59,0x2d,0xe9,0x03,0xb1,0x58,0x44,0x95,0xab,0x63,0x99,0x81,0x50,0xf2,0xb3,0x93,0xa3,0xb3,0x40,0x0c,},"\x97\xcd\x61\x9a\x22\x51\xed\xa9\x16\x64\x64\x31\xd4\xcd\x15\x98\xc2\xd4\x4d\x06\xaf\x3e\x48\xbd\x18\xe3\xde\x7f\xb4\xbd\x4f\x78\xe0\x0a\x69\xee\xab\xde\x3f\x82\x06\x5c\xfe\xe6\xcd\x71\x1f\x07\xd2\x26\x37\x16\x1f\xf6\x85\xf6\x5a\x7d\xdf\x54\x55\x31\x97\xfd\x31\xc5\xc6\xb7\x1d\x9e\x36\x5a\x94\x1d\xce\x4c\x3e\x22\x5d\x19\xcc\x63\x3a\x7e\x12\x86\x2c\xd2\x3e\xbb\x7c\x74\xa7\x04\x85\x0f\x76\x1a\xc0\x24\x1b\xe5\x17\xce\x7c\x36\x09\x36\xce\x07\x25\x0d\x9f\x2e\xb2\x78\x71\x15\xee\xc3\x77\xe1\x13\x4d\xc0\x8f\x44\xeb\x0a\x2a\x2a\x27\x16\xf0\x01\x44\xa4\x9f\x01\x2a\x57\xb3\xcd\x06\xef\xeb\x3f\xae\x92\x0f\x28\x5c\xff\xd9\xa4\x01\xa0\xb9\x86\x59\x4e\x17\xb2\xc9\xc8\xfd\xab\x83\x5d\x9f\x3f\x5d\x47\x4b\xe7\x33\xc1\x92\x5e\xe6\xf0\x93\x86\x71\x10\x66\xc3\xfc\xd6\x45\xee\xb0\xfb\xe7\x05\x41\x69\xeb\x70\x9d\x4a\x3f\x0d\x16\xf2\x8a\x1f\xf5\x06\x6c\x84\x2b\xc6\x3e\x35\x9e\x92\x48\x5b\x38\x75\x7f\xf4\x6c\x27\xf7\x9d\x0c\xdc\xf0\xe1\x6e\x97\xe3\xc7\xb7\xe2\x17\x8d\xff\xd2\x70\x28\x2d\xd6\x12\x05\xd5\x85\x4d\x84\x1f\x0e\x3f\xc0\xe4\x82\xcc\x1e\xe4\x85\x52\xcf\xe6\x58\x93\x5b\x54\x27\xc3\x66\x23\x0a\xef\x79\xae\xf4\x02\x1d\x6f\xab\x5f\x18\x75\xcc\x84\x9e\x32\x1a\x75\x50\x0e\x9e\x1b\xa5\xdd\x59\x6b\x43\x8c\xf8\x8b\x23\x5b\x01\xa6\x76\x25\xc4\xbf\x84\xd0\x72\x4a\xe6\x88\x0a\x37\x85\xe3\x3b\xd9\x23\x5f\xd0\xf5\x98\x18\x04\xd2\x1c\xbd\x63\x3c\xb1\x80\xf3\x44\x56\x46\x02\x07\xa2\x90\xa2\x54\xd9\xfe\x61\x06\x3d\x40\x63\x4c\xa3\x87\x2f\x09\x35\xfa\x28\x32\x87\x95\xca\x41\xb0\x06\xa2\x11\x1f\xc5\x93\x2b\x1e\x77\x9c\xe9\x66\xcc\x47\xad\xb7\xc0\xdd\x98\x73\x33\xba\x75\x29\xa1\xa4\x99\x6c\xe9\xf5\x6e\x05\x19\x81\xfe\x1f\x55\x3e\x57\x8f\x43\xc3\xba\x94\xbe\xac\xc9\x3c\x3e\x73\x96\x67\xc7\xa7\xc6\xfa\x27\xe1\xe0\x81\x69\x5d\x20\xba\x70\x5c\x3f\x10\xb2\x0d\xf5\x30\xcb\xb0\xec\xb8\x74\x56\x50\x11\x09\x68\x70\x19\x31\x84\x52\x78\x5d\x38\xe7\x66\xb3\xcd\x35\xb0\x07\xd7\xe3\xcf\xe0\xb2\xcc\xa8\xaa\x6e\xf7\x39\x55\x99\xdc\xb9\xc4\xd2\x8b\xcc\x35\xc7\x6d\xfc\x35\x34\x3c\xb1\x34\x8b\xa3\xe9\x62\xf1\x0e\xe8\x6f\x86\xf5\xb6\xd4\xca\xe2\xe8\xc2\xb1\x85\xe3\xea\xa1\xae\xb8\x7b\xcf\xcf\x2f\xb7\x6c\xc7\xfc\xc6\x89\x50\x71\xb1\x68\xe8\xb7\xf6\xca\xa0\xfd\x63\x98\xe7\x78\xcc\x07\x91\x2f\xf5\xd6\xe6\x10\x21\xa8\xa5\x9a\xe0\x35\x21\x60\xf5\x6d\x54\x88\xfe\x2f\x2a\xcc\x94\x03\xda\x9a\x9f\xfc\x66\x1c\x1e\x9d\xc5\xbe\x88\xc4\x20\xdb\x0f\xd7\x7d\x84\x5d\xc8\xdd\x9d\x8e\x58\xf9\x96\x1b\x79\xaf\xc6\x86\x24\xba\xa8\x6a\xa6\x43\xa8\xa3\xc7\xed\xf7\x1d\x55\x3c\xc0\xd3\x22\x4a\x60\x69\xec\x67\x4f\x52\xda\x29\xa1\xcb\x60\xc4\x19\x23\x01\xa2\x43\x47\xa8\xaa\x83\x26\x26\x9e\x0a\x14\x78\x0c\x95\x83\xcd\xff\x51\x59\x27\xfd\x5b\xef\x52\x8f\x9d\x23\x78\x7a\xeb\x80\x3d\x70\xeb\x91\x6b"}, {{0x59,0xd5,0x01,0x39,0x3d,0xc5,0x99,0x97,0x23,0x81,0x07,0x06,0xfa,0xd7,0xd6,0xef,0xd1,0x63,0xc4,0x47,0x10,0xc7,0x41,0xc1,0x85,0xc2,0x7e,0x04,0x25,0xe3,0xc0,0x5b,},{0x82,0x65,0xd4,0x3c,0xfb,0x07,0x35,0xb5,0xd7,0x25,0x0f,0xcf,0x0f,0xcb,0xd1,0x54,0xbf,0xc0,0xee,0xcb,0x13,0xb7,0xad,0x93,0xb6,0xb0,0x29,0x40,0x58,0x8b,0x84,0x3b,},{0xe6,0x46,0xf1,0x64,0xcf,0xed,0x8c,0x2e,0x06,0x07,0x10,0xdc,0xfb,0xc3,0xe9,0xfa,0x5e,0xb3,0x96,0x37,0x68,0x13,0x19,0x01,0x84,0xe3,0x46,0xf5,0x2b,0xb0,0xba,0x57,0x46,0xcc,0xb6,0xb5,0x95,0x22,0xb1,0xaf,0xf9,0x83,0x0f,0x2f,0x98,0xb9,0xe5,0xda,0xfc,0xd8,0x32,0x07,0x78,0x83,0xc4,0x4e,0x8a,0x35,0x38,0x8f,0x71,0x8b,0xf4,0x0c,},"\x56\x4e\xd2\x2c\x17\x2f\x5c\x3a\xfb\xb0\xb9\x5a\xd2\xfc\x64\xe4\xbe\x6d\x4d\xb1\xeb\xb8\xd3\x99\xc4\x3a\x5e\x16\x04\x8e\x7f\x87\x32\x18\x1e\x5d\x0e\xed\x8e\x63\x8e\xf2\xa5\x5a\xa0\xd7\xb6\x81\xfe\x02\xbb\x54\x23\xaf\x94\xbd\x35\x2d\x3c\x2d\xde\xc0\xf8\x47\x60\xa4\x11\x2b\x4f\xe0\x17\xcf\xbc\x50\x2f\x95\x43\xcf\xa4\x1f\xb2\xaa\xe7\x5a\x3a\x08\x1f\x8c\x49\x90\x33\xd1\xfa\xe5\xd9\xc5\x0c\xb4\x4d\xbc\x63\x60\x5a\x54\x39\x8f\xbf\x07\x98\x52\xeb\xa8\x6f\x2f\xdf\xc2\x72\xd0\xc4\x17\x9d\x7c\x13\xcb\xc1\xc2\xa3\xda\x0b\x82\x84\x5c\xf1\xa4\x6e\xbb\xe3\x1e\x79\xb6\x00\x97\x33\xc7\xbf\xe7\xaa\x4f\x9f\xfd\x71\x9c\x77\xdc\x7d\x74\x8e\x49\x2e\x14\xee\x5e\x41\x79\xbf\xa9\xe6\x49\xcf\x0d\x89\x53\x41\x86\x38\x5e\xe9\x94\x10\x05\x1d\x66\x56\xe6\x23\x43\x8c\xc7\xb2\xe7\x07\xe4\x8c\x84\x91\x55\x49\xae\x8d\x67\xa3\x06\xc6\x7b\x10\x6b\x7a\x25\xf4\x5f\x8e\x10\xdd\x7d\xd3\xea\xac\x31\xf1\x05\x22\x57\xeb\x6a\x75\x76\xb6\x85\xcb\x9e\x6c\x1c\xd0\xd7\x3c\x7a\x3c\xed\x5a\x8d\xd2\x73\x08\xae\x00\xf9\x5e\xab\xda\xe9\xd1\xc4\xaa\x89\x34\xe2\x42\x4c\x93\x28\xa5\x22\x8f\x4f\x82\xdd\x4a\x66\x55\x6d\x82\x17\xc5\xa2\x2b\x2b\xeb\x86\xa2\xa4\x34\x13\xee\x5e\x10\xf8\x83\xf2\xcd\x6c\x2e\x87\x49\xb5\x50\x88\x42\xec\xae\x5f\xfc\xcb\x79\x6d\x96\x33\xe8\x7e\xf4\xa9\x6c\x0d\xf7\xef\x47\xb2\x83\xd0\x96\x72\x3b\xa3\x13\x5b\xad\x75\xb2\xe1\x9e\xc0\x4f\x70\xa4\x78\x42\x8a\xd5\xd0\xaa\xc0\xdd\x2a\xb9\x90\x59\x13\xe7\xe5\xad\xe4\x08\x80\x1d\x5d\x3c\x54\xd9\xcf\x7b\x8f\x0f\x0c\x5e\xb0\x54\xc1\x47\x5c\xc2\x10\xa2\xc7\x98\xd8\xbd\x89\x93\x2f\xf9\xf3\x60\x42\x18\x58\x05\x3a\x70\x7b\x8b\xbd\x32\x05\x5c\x44\xb2\x07\x12\xa2\x67\x8a\x9a\x6a\xf9\xe3\x6d\x04\xdc\xff\x44\xf4\x31\xcf\x19\x30\xcd\x18\xfc\x93\x5d\x22\x67\x77\x5c\x69\x09\x67\x25\xed\x89\xa2\x91\xdd\x60\xe2\x1a\xc0\xb0\x12\x87\x34\x07\x29\x92\x82\x3e\xf8\x7b\x5e\xfa\x6c\xc5\xb0\x50\x17\x7f\x55\xf4\xce\xc9\x2a\x08\xa6\x5b\xca\xdc\xab\x9a\x41\xc3\x60\x86\x37\x0b\x7b\x9d\xd6\x29\x8a\xc7\xb0\xae\x6a\x09\xc9\x71\x0a\xbb\x46\x76\xa8\xfc\x87\xa3\x65\x12\x90\x14\x4b\x6b\x30\xef\x4f\x6f\xbe\x5b\x9a\xd2\x52\x37\xfe\x06\x05\xe3\xb9\xf1\x8a\x77\x18\xac\x9f\xca\x6f\x32\x5e\xa5\x5f\x49\xa8\x07\xfb\x80\xa2\x40\x2a\xe1\x34\x23\x08\x0d\x32\x77\x58\x64\x90\x23\x79\x8d\x57\x28\xe0\xdc\x64\xac\x88\xa6\xe2\x94\x5d\xbb\x3e\x3f\xfa\x9f\xdb\x4c\x7b\x58\xfb\xa3\xf5\xfb\xd6\x7c\x68\x6b\x29\x71\xbb\xd8\xba\x4d\x27\x5d\x57\x3e\xb7\x96\xeb\x91\x46\x77\x5d\x8c\xdc\xd5\xfd\x3e\xb5\xa8\x8e\xa5\xa9\x30\xec\x32\x44\xe6\xa3\x7c\x81\xf6\xa2\x55\x4e\x5b\xa7\x87\xf0\xe4\x53\x19\xfe\x4b\x8a\x2f\xfb\xfe\xd5\x07\x70\xe7\x82\x7b\x3e\x7b\xc2\xb4\x4c\xe5\x12\xae\x60\x51\xb6\xf9\xf1\x39\x31\xea\x6a\xcc\x09\x6b\x8d\xcb\x01\x96\xbe\x42\x24\x84\xdb\x5f\xcb\x29\x9d"}, {{0x83,0x9f,0xb1,0x32,0xe6,0x92,0x50,0xca,0x1a,0xd9,0x45,0x10,0x08,0x7f,0x92,0xce,0x06,0x87,0x69,0x21,0x3a,0x19,0xb2,0xa6,0xc8,0x94,0x90,0xf1,0xf5,0x78,0x80,0x7a,},{0xeb,0x58,0x66,0x19,0xb4,0x4a,0x15,0x37,0x9a,0xcc,0x46,0x21,0xa2,0xac,0x71,0xea,0x58,0x97,0x00,0x26,0xc2,0x8e,0x24,0x09,0xfc,0x1b,0xa2,0xbd,0x8b,0x23,0x6d,0x1d,},{0x66,0x43,0x7b,0x6b,0xc0,0x5e,0x75,0xdd,0x16,0x26,0xc3,0xc4,0xff,0x1f,0x72,0xe6,0xdb,0x38,0x1b,0xa1,0x59,0x09,0x48,0xf8,0xf1,0x6a,0xd4,0xd6,0x6e,0x59,0x91,0x65,0x9a,0xa8,0x44,0x05,0x56,0x8c,0xfb,0xc0,0xa7,0x7c,0x02,0x5e,0x59,0xe4,0x3f,0xd5,0x3a,0xb9,0xff,0xab,0xba,0x7b,0x25,0x8f,0x78,0x79,0x62,0x39,0xf9,0x0d,0x45,0x01,},"\xc5\x72\x32\xfe\x32\xf1\x1e\x89\x4b\x43\x7d\x40\x45\x62\x07\xcc\x30\x6d\xb4\x81\x69\xb2\x0e\x07\x81\x10\x3a\xff\xe8\x02\xf5\xaa\xbe\x85\x82\x95\x2c\xa8\xe9\x57\x45\xe9\x94\x0d\x53\x5e\x00\xff\x65\xab\x3c\x64\xbe\xd3\xd1\x17\x3a\x0f\x3d\x70\xce\x4e\xbe\x2b\x50\xd0\x48\xbb\x47\x16\x4d\x2a\x2c\xd9\xd9\x5a\x10\xcf\x0d\x07\x3e\xd1\xc4\x1b\x3d\xe3\x33\x52\x8e\xe3\x29\x68\x22\x3a\x0d\x84\x7c\xad\xbb\x5b\x69\xf3\x82\x16\x4e\x9a\x28\xd2\x3e\xc9\xbd\xe9\xa8\x28\xe8\x77\x1c\x9e\xb4\x92\x20\xaf\x54\x18\x55\x08\xaa\x07\x3a\x83\x91\x95\xf1\x03\xbc\x2f\x32\xfe\x04\xf9\x51\xca\x45\xbf\xbf\x30\xd2\xfb\x81\x14\x05\x6a\x73\x6a\xdd\xf2\x7e\xcd\x9a\xf0\xf6\xe5\xe9\x7e\x57\x73\xc4\xfa\x90\x22\x68\xc3\x2a\x15\x14\x10\x95\x5f\x3c\x76\xaa\xe2\x55\x54\x9e\x0f\x03\x3f\x89\xe1\xa7\x8f\x26\x5c\xba\xb6\xbe\xb7\x51\x6d\x4b\xad\xc4\x9c\xda\x45\x88\x31\x62\x25\xb4\xc8\x5e\xa9\xfa\x99\xc7\xd6\x76\x6e\x94\x90\xc4\x9d\xe5\x9d\xa7\x17\xf6\x67\x65\x35\x30\x07\x1d\xd2\xf0\xc5\x3e\x31\xd8\x76\x81\x56\xfe\xb0\x8f\xaf\x00\xdb\x0a\x04\x53\x3d\xf9\x79\x57\xa8\x4a\xa4\x6a\xeb\x7e\x36\xc0\xb0\xbe\x69\x01\x89\x46\xf1\x53\x8a\x6a\xea\x71\xdf\x53\x6f\x14\x42\xc2\x44\x4a\x43\xa0\x43\xd0\x46\xab\xde\x1a\x78\x2b\x0f\x4f\x5c\x6a\xa7\x20\xaa\x60\xaf\xed\x94\x7c\x0c\xee\x47\x7d\xbe\xc0\x05\x57\xb3\x72\x12\xd9\x33\x57\xca\x2b\x6b\x6f\x82\x71\x5b\xa0\xe4\x84\xf6\xda\xf2\xd0\xb7\xa9\x8c\x03\x35\x19\xce\x38\x26\x35\x86\x79\x6d\x5d\x31\xcb\x2b\xc3\xd1\x12\x5b\xc0\xcc\xd3\x29\xa5\xc2\x1f\xd2\x7a\x21\x8d\xed\x60\x7a\x0e\x75\x15\xb5\x71\xf1\x92\xc3\x3f\x5f\xba\x51\x4a\xfe\x4d\x45\x81\x00\xf3\xcc\xba\x3f\x38\xeb\x43\x0b\x4f\xc8\x8f\xae\xf9\x99\xfa\x71\xee\xe4\x88\x22\x89\x03\xbe\x29\xf2\x4d\xf8\x1d\xc9\x11\x04\x4e\x92\x4c\xda\xa0\x17\xcc\x7d\x87\xe5\x6a\x6c\xba\x87\x60\x85\x9b\xd6\x3d\xd2\xd4\xf5\x81\xb9\x55\xec\x92\x4a\x49\xaf\xb4\x7c\xa0\xd6\x3e\x78\x26\xfd\xc7\x12\xb4\x94\x3b\x73\x9e\x18\x57\x75\x5a\x33\xc6\x50\x36\x75\xfd\xde\xae\x06\x27\x06\xe3\x4f\x74\x4f\xd9\x32\x64\x8a\x56\x08\xce\x60\x8a\x61\x99\x57\x83\xf3\x33\x9c\xa3\xfe\x10\x7e\x19\x72\x74\x4b\xf6\xd4\xed\xaf\xbf\x47\xce\x02\x1e\x05\x82\x1f\xb1\x24\xc7\x08\x39\x30\xe6\x8e\x6f\x5c\x32\xd2\xd9\xfc\x4a\x88\x4c\x0b\xc8\x84\x04\xe4\xcf\xe3\xc1\xa2\x42\x0d\x41\x82\x3a\x38\x5f\xb3\x28\x8d\xb6\x5c\x89\x54\x5f\x6e\x73\xf0\xd8\x00\x4b\x2b\xa1\x2a\x4e\x07\x72\x75\x23\xef\x08\x56\x70\xda\xff\xaf\x41\xc2\x8a\x4c\x11\x57\xbd\xd2\x45\xe6\x87\x50\xdd\x20\x0e\x02\x3a\xf9\x0c\x67\x56\x1e\x0f\xe4\xba\x34\x0c\x43\x3f\x75\x5e\xef\xab\xd4\xb0\x39\xbf\xc3\x23\xdc\x11\xad\xb7\x5a\xec\xc4\x48\xa8\x69\xc7\xf2\xa5\x8b\x9d\x86\x17\xc6\x4b\x8f\x89\xfc\x58\x3f\x8c\x94\x8e\x2d\xf0\x25\x1a\x6c\x7d\x8c\x73\x8c\x3b\x5a\x42\xb7\x49\xad\x5e\x8e\x98\x6b\xd8"}, {{0xad,0xc1,0xe5,0x6c,0x3a,0xc9,0x4e,0x6c,0xda,0x04,0x11,0xcb,0xc3,0xce,0x2a,0xf1,0x28,0xd1,0x85,0xa2,0xa2,0x73,0xbd,0xb2,0xaf,0x8d,0x7e,0x50,0xfb,0x96,0xb5,0x26,},{0x5d,0xcf,0xec,0x1f,0x91,0x12,0x75,0x15,0x64,0xec,0xb6,0x07,0x15,0xeb,0xb2,0xc5,0x17,0xb5,0xec,0x37,0xb2,0x53,0x4f,0xd6,0x32,0x99,0x24,0x42,0x9b,0x7f,0xd5,0xc5,},{0xf0,0x2e,0x5d,0xbc,0xb6,0x87,0x04,0xaf,0xad,0x03,0xac,0xa8,0x10,0x61,0xdb,0xdb,0x99,0x85,0x70,0x04,0x9f,0x10,0xce,0x65,0x0e,0xc7,0xa2,0xef,0xf1,0x5c,0x79,0x3d,0xdf,0x5a,0x27,0x2c,0xb6,0x83,0xc2,0x2c,0x87,0x25,0x7c,0x59,0xbd,0xef,0x39,0xef,0xea,0x79,0xbd,0x67,0x95,0x56,0xea,0x15,0x05,0xed,0x00,0x36,0xcb,0x46,0x04,0x0c,},"\xd4\xf9\x59\x47\x4e\x0b\x89\xe2\xdc\xd0\x20\x66\x98\x4f\x88\xd7\x39\xdd\x11\x34\xa3\x33\x09\xf0\xa8\xb7\x80\x2e\xaf\x01\x33\x03\xc1\x35\x15\xdf\xeb\x46\x1e\xa3\xd2\x48\xe9\x98\xb9\xa4\xe5\x4d\xae\x5b\x00\x19\x0a\x45\xe7\x0d\xc6\x7e\x98\xf3\xd4\xcf\x90\x6c\x21\x4d\x4f\x63\x6d\x29\x52\x92\x5e\x22\xb1\xa8\x6a\x1a\xab\xb3\xa8\x92\xa9\xf8\xed\x45\x4f\x39\xc6\x3d\x35\xb7\x1e\x87\xa2\xda\x55\xa8\xe1\x67\xac\x83\xa8\x66\xad\x16\x7a\x17\xae\xd1\x83\xc0\x85\x18\xc1\x5e\x6b\xe3\x48\x58\xb4\xce\xe2\xb8\x42\x73\x14\x76\x0f\xff\xdd\xd5\x92\x38\x54\xb1\x74\x7f\x79\x6e\x1a\x52\x49\xfb\x30\x44\x89\x4e\xd6\x46\x82\x9f\x65\x43\x16\xee\x52\xf4\x01\x0c\x8d\xd3\x21\xfa\x1d\xec\x39\x7e\x50\x14\x5e\xd9\xe3\x16\x86\xfd\x52\x03\xf7\x23\x3b\x8d\xa7\x80\xac\xaa\x91\xee\x0b\x5b\x47\x20\x78\x66\xaa\xd8\x5f\x83\x7e\x03\xb4\xe6\xf6\xde\x8c\x04\xac\xaf\xd7\x07\xbd\xc1\xdd\x45\x50\x0a\xb5\x64\x80\x1b\xee\x9a\x58\xec\xe3\x60\xd0\x04\x82\x8b\xaa\xf5\x23\xe2\xf5\xab\x69\x32\x6a\x03\xaa\xbe\x01\x08\x78\xfd\x43\xff\xaa\x56\x87\x22\x44\xd7\x68\x1f\x16\x18\xe6\x23\xe3\xd4\x74\xc7\x3a\xf8\xb0\x80\xa6\x18\x21\xa5\x74\xef\x2f\xd7\x52\xd2\x3b\x60\x5e\xc5\x21\xc1\x9c\x15\x50\xde\x98\x0c\x09\x4d\x05\xe0\x23\x8f\x3e\x00\x8e\x6b\x19\x5a\xbf\xdd\x40\x28\xee\x1e\xe1\xd6\xc6\x6a\x76\xf1\x78\xf0\xb4\x31\xe4\xaf\x44\xdd\xcc\xfc\x52\x90\xed\xff\x36\xec\xe6\x3e\x83\x85\x56\x70\x13\xf4\x3a\x2a\xeb\xb6\x7e\x3e\xf4\x06\x30\x8c\x20\x48\x8a\x76\xd5\x8a\x21\x4f\x31\x39\xd9\x83\xb1\x9a\xfb\x12\xe3\x28\x36\x07\xfd\x75\x10\x7b\xd3\x1f\xeb\x62\x56\x17\x4b\x7a\x18\xae\xca\xc9\xf8\x56\x25\x82\x01\x8b\x0e\x6d\xe4\x05\x35\xe3\x5b\xef\x2b\x56\x25\x53\x88\x51\x29\x39\x75\x62\x90\x0d\x34\x17\xf9\x8c\xdd\x1e\x29\xd7\x31\xff\x48\x93\x3f\x29\x52\x95\x81\x63\xba\x67\xd5\x95\x61\x81\x1b\x83\x77\x2b\xd0\x57\x10\xb6\xe3\xcc\x04\x34\x60\x99\x37\x50\x72\x23\xab\xb7\x1a\x6a\x8c\x83\x8f\xec\xdb\x1d\x2d\x37\xc9\x5d\xc8\x06\xf6\x5f\x3f\x96\x63\xd9\x9f\x06\xe6\xc0\xf3\xc3\x2e\x95\xaf\x1d\xd7\x08\xe8\x11\x08\x63\x6a\x26\xb9\x68\xe9\x83\x39\xc7\x41\x28\xb6\xcf\x67\x13\x35\x88\x4a\xc7\x2f\x75\xb6\x37\x19\x5e\xa9\xec\xa0\x53\x60\x89\x96\xc3\x2e\xd4\x45\x41\x0f\x67\xfa\x10\x4b\x39\xf0\xfd\xf3\xc9\xb5\xc6\x15\x7b\x76\x80\x37\x56\xb2\x7f\x4c\x3b\xa1\xb4\x7f\x32\x85\x76\x24\x8e\x9b\xc5\x3e\x7b\x8a\xb0\xb2\xed\x97\xc2\xf9\x99\x8b\xcc\x7d\xfe\x39\xe2\x64\xaa\xd3\x0c\x6c\xfe\xf2\xb5\x55\x3f\xfb\x5a\x69\x9a\xa4\xbd\x0e\xab\xe4\x38\xce\x05\x22\xcc\x91\xfe\x4e\x72\xbf\x7e\xac\xba\x47\x71\xcc\xf6\x3a\x37\xaa\xfc\xad\xbf\xbf\x99\xdd\x76\xb8\x5b\x80\xee\x07\x5d\x3a\x7d\x1a\x90\xa5\x5b\x77\x29\xa5\x41\x6e\x5b\xe6\x96\xbf\x9f\xb7\xf3\x15\x8c\xfd\xb5\xcf\xda\xcd\xde\x81\x72\xee\x1a\xb9\x48\x6e\x24\xcc\xea\xd2\x9b\x45\x7a\xcf\x43"}, {{0xdb,0x89,0xdf,0x6a,0x23,0xd8,0x90,0xb7,0xf0,0x02,0x60,0xe8,0x1f,0x4a,0xd9,0x8f,0xd0,0x94,0x40,0x36,0x51,0x31,0xe8,0x5e,0x22,0xc7,0x95,0x1a,0x18,0x7b,0x02,0x18,},{0xc9,0x67,0x63,0x67,0x2e,0xe4,0xa2,0xcc,0x5a,0x93,0xb6,0xa6,0x83,0xdf,0x9b,0x5d,0xe4,0xd9,0x38,0x6a,0x79,0x08,0x35,0x68,0x1d,0x12,0x17,0xd1,0x92,0x96,0xbd,0xc8,},{0x80,0xb7,0xfc,0x8b,0x6a,0xe6,0xee,0xce,0x81,0x66,0xb7,0xea,0x53,0x4c,0xb5,0xb2,0x14,0xc9,0xea,0x99,0x73,0x92,0x1e,0xd0,0x5d,0xe4,0x0c,0x78,0xe1,0x4f,0x16,0x2b,0x09,0xe9,0x78,0xca,0x6d,0x86,0xee,0x43,0x4d,0x98,0x4b,0x8b,0x00,0x70,0x40,0x9d,0xd2,0xad,0x11,0xb5,0x31,0x78,0xe2,0x39,0xda,0xb5,0xbc,0x39,0xc7,0xba,0x46,0x0d,},"\x54\xc1\xc5\x11\x1e\x08\xc9\x82\x45\xba\x4f\x13\x18\xba\x1d\xb1\xdc\xc7\x4d\x14\xa5\xc9\x8a\xb9\x68\x9c\xba\x1c\x80\x2c\x68\xbc\xfc\x81\xfd\x87\xff\xc6\x1c\xaa\x94\x2f\x66\xd7\xe5\x15\x7f\x65\x53\x8c\x7e\x7b\x33\x17\x04\x84\xb4\xb6\x54\x3f\x36\x20\xff\x29\x63\x8b\x64\xd4\xda\xe7\xb0\x22\x21\xcf\x77\x83\xf1\x87\xec\x42\x31\xe6\xb6\x94\x6d\x82\x76\x20\x74\xf0\x9c\x32\x78\x1c\x2f\x38\x46\xde\x3e\x82\x17\xf6\xe1\xb6\xe0\xd2\xb5\x59\x5d\x74\x2e\x2c\x4e\x32\x5a\x28\x41\x92\x40\x44\xdf\xcf\x12\xb4\x79\xeb\x69\xf1\xbb\xd4\x0e\xab\xdd\xd1\xff\x54\xa9\x18\x4d\x36\x6d\xff\x9d\x8f\x2d\x86\x3e\x37\x8a\x41\xf1\x0c\xd1\xda\xe9\x22\xcd\x7f\xbb\x2a\x54\x4e\x47\xea\xbf\x47\xca\x0a\x38\xab\xba\x34\x45\x49\x19\xbb\x9a\x4e\xf0\x44\xbf\xb9\x7b\x70\x8c\x2f\x74\x28\xd6\x8f\x9c\x57\xc0\xee\x7e\x79\x25\xf7\xa2\xb5\xc6\xe7\xdf\x82\xbb\x26\x80\xc8\x62\xdc\x7c\xc6\x8b\x0f\x54\x53\x0e\x64\xaf\xe2\x76\x3d\x9c\x7b\xaf\x45\xcc\x6f\xe6\x12\xd1\xf7\x82\x77\x39\xc4\x41\x13\x98\x88\x8f\x73\x67\xc3\xd4\x37\x79\x07\xac\xc0\x6a\x06\xf9\x3f\x88\x72\x26\x79\x8f\x48\xaa\x54\x64\xf6\x01\xc2\xc1\xed\xda\x77\xed\xfe\xb9\xb9\xb5\xd5\xf9\xcb\x6f\xed\x37\x90\x05\x47\x47\x7f\xca\x1d\x09\xab\x52\xd6\x3e\x49\x1f\xeb\x12\xfd\x6d\xc8\x05\xa7\x8c\xee\x3b\xaa\xde\x43\x52\x98\x20\x61\xde\xa5\xa2\x65\x3d\xb8\xe7\x60\x77\x72\xe8\x34\xb3\xa5\x05\xc1\x6d\xd6\xe7\xc7\x1b\x91\x1e\x84\x2e\xba\x92\x5d\x77\xa3\x3c\x5c\x57\xce\x11\x84\x09\x80\x78\xca\x2e\x6a\x3f\x69\xaa\x6a\x14\x63\x9d\xc9\x7b\x4b\x30\xc9\x9d\xc4\xfa\x3e\x2c\xf6\x3c\x70\x1c\x30\x6c\x5e\x25\x3c\x51\x13\x85\x4c\x18\x5e\xbc\x8b\x47\x98\xf6\x8d\x1f\xd7\x80\x05\x4d\x3e\xed\x2f\x39\x4c\x45\x43\x04\x96\x6b\xdd\xbd\x12\x28\x08\x34\xec\x9b\x40\xc1\xe9\x8b\xc2\xd9\x8f\x48\x45\xf6\xeb\x44\xf2\x53\x15\xee\xdb\x3b\x79\xff\xca\x41\x80\xc1\xbd\xdd\x97\xd0\xc9\xaf\xfb\xac\x58\x81\x49\x37\x68\x26\x80\x07\x6f\xe5\xa3\xba\xbb\x65\xd2\x8f\x25\x17\x03\x6c\x0c\xfb\x42\xf0\x29\x3e\xb2\xac\xb1\x39\x49\xfe\x91\xe0\xad\x06\x78\xaa\x24\x3d\x77\x34\xa8\x9d\x99\x78\x70\xbf\x9a\x6a\x58\x4e\xd6\xe6\x28\x16\x3e\x39\xd8\xaa\x61\x0d\x46\xb9\x28\x5b\x9e\x1d\xd7\xe8\xf8\x07\xfd\xf5\xca\x2b\xbf\x6d\xe5\xe5\xe6\x8a\xf7\xcb\x7e\xbd\x43\xec\xce\x22\x7c\xd7\x0c\x7b\xf4\xee\x14\x33\xed\xfc\xfe\x88\x66\x14\x67\x0c\xdd\x19\x63\x43\xfb\x91\xe1\x54\x16\xd2\xf6\xac\xba\xe3\xea\xdc\x03\x02\x31\xee\x9d\x2e\xcc\x52\xa8\x8c\xe8\xdc\x7d\x09\x8e\x7f\xac\x77\x68\x5b\x4e\xb5\x40\xe3\x01\x93\x07\x14\x32\x21\xb8\xef\x77\xf3\x63\x2c\x89\x3d\x55\x6e\x0b\xb7\x43\xa1\x96\x3e\xc1\x58\x86\xc8\x54\x5e\x87\xc9\x5c\xc8\x25\xf2\x00\xd0\xf3\xcf\x4f\x55\xa3\xd6\x60\xa5\x36\xa2\x3a\xef\xcc\x42\x8a\x43\x20\x34\x85\xee\x84\x34\x2f\x5c\x00\x1e\xe8\x40\x4e\x75\x90\x17\x00\x62\x82\xab\x8b\xa8\x90\x3e"}, {{0x00,0xe6,0xbb,0x17,0xaf,0x3c,0x2d,0xf6,0x52,0xb3,0x4f,0x9a,0xbe,0x19,0xf9,0x90,0x19,0x07,0x42,0x33,0x68,0x6c,0x71,0x14,0xe3,0xa0,0xed,0xf0,0x83,0x09,0x93,0x4f,},{0x7b,0x82,0x32,0xa6,0x6c,0xec,0x2f,0x91,0x5a,0xaa,0x79,0x51,0xd2,0x9d,0x2b,0x9e,0xe9,0x3d,0x32,0x1d,0x15,0xb2,0x03,0xc5,0x1e,0x61,0xe8,0xce,0x83,0xd1,0x87,0xf8,},{0x04,0xb3,0xb8,0x50,0x1e,0x39,0x6c,0x4a,0x78,0x8e,0x14,0xac,0x49,0xf6,0x17,0x4c,0xdb,0x5c,0x85,0x5e,0x65,0x12,0x03,0xcf,0x68,0xd1,0xef,0xa8,0x9a,0xa5,0x86,0x78,0xd4,0xd1,0xf3,0x03,0xa9,0x87,0x7a,0x37,0x86,0xd2,0x03,0xc3,0x55,0xb0,0x9d,0x52,0x86,0xc1,0xca,0x0d,0xf0,0x4a,0x89,0xaa,0x06,0xcc,0x3f,0x9d,0x0f,0xd3,0x05,0x04,},"\x06\x32\x81\xe4\x1e\x8b\xa9\x70\x3e\xd0\x9e\xf3\xbf\x0e\xa4\x6e\x4c\xab\xdd\x6e\xbd\x76\x9d\x05\xdc\x04\x5d\x4f\x99\x0d\x69\xfc\x55\x41\x30\xa4\xe6\x1a\xa2\x1e\x2d\xe4\xc9\x2d\xb4\x8a\x20\xa3\x7b\x17\x47\xa7\xea\xc5\xeb\xb2\x73\x5a\x89\x38\x19\x7f\x13\x9f\xad\x14\x97\xb3\x51\xad\x06\x4c\x0f\x18\xf8\xfa\xf1\xfe\x11\xf6\x39\x79\xa6\x99\x68\xe2\x4c\xf9\x1e\x58\xa3\xab\x03\x26\x69\xe4\xef\xee\x27\x4f\x96\xb5\x8b\xe7\xd9\xe3\x91\xf3\x6f\xcf\x07\x09\xb2\xcb\x2d\x22\x69\x4a\x6c\xeb\x17\x24\x69\x45\xeb\xb3\xbc\x7f\x0f\x03\xbf\x0b\x08\xdc\x96\x26\xe3\xe7\x15\xc9\x91\x67\x1d\x53\xeb\xb9\xae\x83\xa7\xd0\x8d\x44\xf6\x36\x35\xc4\x0f\x8d\x48\x17\xf5\x8d\xe9\xeb\x77\xcb\x25\xb2\xac\xd6\xde\xf9\x69\xab\x56\x9e\x97\x4a\x8a\xda\xc1\x1a\x86\xb5\x8f\xe6\xc1\x00\x67\x49\x9f\xc9\x14\xdf\xf5\x69\x02\xcb\xc3\x93\xa7\x1c\xc2\x5e\x8f\x05\xc0\x3c\x94\xf1\x3b\x84\xa2\xb0\x1a\x58\xc1\x0d\xbc\xbb\x60\xeb\xce\xe4\x87\xf5\x29\x17\x74\x66\x29\x99\x25\xda\x50\xe2\xda\x5b\x55\x57\xf0\xae\xee\x3f\xd7\xf4\x7b\x5c\x2e\x3f\x84\xce\xfa\xb4\x67\x96\x91\x39\x4d\xd1\x22\x30\x3b\xb7\x69\xaf\xb3\xad\xfe\x83\x58\xb0\x2b\x67\x92\x73\xb3\x5a\xbd\xc6\x40\x25\x76\xcc\xce\x5e\x10\x44\x2a\x13\x7e\xf9\x45\x69\x39\xb2\x89\xef\x4e\x41\x7b\x1c\xc6\x23\x9f\x7c\xee\xdd\x68\xf1\xa8\x26\x41\x80\xe0\x68\xb4\x96\x6f\xd6\x7f\x2b\xad\x6e\xdd\x8b\x4a\x1e\x8d\x2b\x54\x2d\xaf\x26\xdb\x83\x1f\x1f\xb5\x1e\xb8\x6f\xfa\xde\xcc\xd9\xac\x3d\x66\x4f\x34\x6e\x7d\x04\x6c\x33\xa5\x72\x84\x1e\xa8\x33\x4e\x7f\x2f\x41\x7a\x05\x71\x2a\x9e\x33\x4e\x48\x7f\xd3\xae\x17\x54\x55\x16\x2f\xe8\xf4\x9c\xc0\x26\xa6\x40\xc6\xcf\x93\xcf\x58\x87\x50\x52\xf4\x1c\xc9\x82\x06\x15\x65\x3e\xa2\xd0\x84\xc8\x96\xea\xfe\x5a\xd4\x72\x55\x79\x65\x30\x84\x99\x4f\x95\x6d\x5c\x94\x59\x0a\x24\x09\x58\x1b\x6f\xc8\x6e\x40\xaa\x58\xbf\x6e\x60\x57\xa6\xf9\x0a\xf3\xb8\x7a\xea\xf3\x29\x94\xa5\x5a\x54\xf7\x9b\xdf\x3d\xbb\xf5\xce\x0f\xf8\x12\xe4\x86\xb0\x54\x5d\x9e\x9c\x2b\x0b\xce\x0d\x4c\x36\x47\xb1\x82\x72\x62\x49\x88\x34\xe1\x98\xa3\xec\x70\xf3\xb0\x3d\x6a\xad\x2c\x49\xeb\x80\xb5\xe2\x05\x14\x39\x22\x5f\xd9\xce\x94\x68\xd6\x9a\xf7\x0a\x26\x2e\xe3\xb8\xb6\x2a\x8e\x5b\x41\x34\x6d\xa3\x01\x2f\xfb\x45\x81\x6b\x7b\xec\xb0\xe7\x9a\x60\xbf\xf7\x16\x36\xa3\xe4\xbb\x1b\x35\xca\xf1\x95\xf5\x51\x17\x28\x0f\x78\x72\x17\xb3\xca\xa2\xe7\x93\x72\x6f\xc5\xa7\x4d\x11\x60\xdc\xad\x86\x89\x04\xc1\x97\x38\x11\x34\xed\x8c\x3d\xb3\x75\x0b\x75\x56\xf6\x9c\xcc\xe1\x8b\x77\x38\x8b\x58\xc5\xb8\x11\x3e\x59\x0a\xd6\xea\xc5\xb9\x1e\xce\x5a\x67\x05\x02\x5c\x80\x35\x3c\xeb\x1e\xd8\x4a\xaa\x1c\xc4\x8a\x41\x6b\xc0\x16\xae\xf1\x73\xbb\x80\xb2\xba\x28\xc5\x79\x60\xc6\xb0\x11\xb6\xb4\x95\xa3\xf3\x31\x1e\x79\xfe\x46\xbd\xb6\xa4\xc3\x81\xfb\x9d\xc4\x62\x8b\x0a\x83\x02\x35\x58\xf1"}, {{0xfb,0xdd,0xf6,0xe6,0x1e,0x20,0xd8,0x06,0xe5,0x59,0x17,0x75,0x6d,0xe6,0x0d,0x0c,0x9a,0x99,0x97,0x6f,0x64,0x67,0x16,0xff,0x2f,0xf1,0x31,0x2c,0x54,0xdd,0x97,0x1d,},{0xac,0x53,0x8f,0xab,0xad,0x43,0x80,0xe6,0x0e,0x97,0x71,0x26,0xe7,0x69,0x5e,0xed,0xa5,0x41,0x7d,0x85,0xf7,0xd2,0x3d,0xb2,0x1b,0xd0,0xad,0x11,0x11,0x16,0xf0,0x5d,},{0x8c,0x9b,0x77,0xaa,0x0f,0x1c,0xf5,0x2e,0x8f,0x7a,0x91,0x8b,0x21,0xb4,0x68,0xe6,0x23,0x35,0x91,0x1b,0xc5,0x93,0x06,0xb3,0x0c,0xe7,0x7b,0xf6,0x92,0xc1,0x10,0x59,0xb0,0xee,0x9c,0x5d,0xaa,0xf6,0x83,0x9b,0xb8,0x13,0x73,0xc6,0x1d,0x28,0xd0,0x72,0x70,0x2b,0x59,0x5e,0x4d,0xce,0x28,0xcb,0x99,0x38,0x22,0xb2,0x48,0x13,0x04,0x0b,},"\x3e\x99\x53\xca\x55\xd0\xcd\x23\x3b\x98\x83\x3e\xb1\xbc\x79\xd3\xb5\x5f\x18\xc8\xfa\x1c\x42\x02\x7b\xca\x25\x57\x91\x53\xb5\x5d\xa0\xc5\xa1\x78\xb8\x38\x69\x56\xd9\xa5\x41\x83\xb2\x4c\x91\xdc\x4b\xe9\x94\x84\x72\x37\xd3\x66\x6a\x0a\x01\x30\xfe\x19\x92\x4b\xc0\xee\x50\x89\x6c\x35\xa2\xe1\x6a\x29\xe2\xe2\xac\xf1\x80\xbd\xd9\x37\x93\x54\x68\x7f\x0e\xce\x68\x82\xd2\x6e\x98\x0e\x68\x66\x98\x04\x3b\xb1\xb0\x12\x13\xaa\x64\x4a\x4f\x8d\x61\xf9\xb6\x13\xe6\x2e\xaa\x35\x76\xce\xa0\xb0\xb8\x3f\x05\xce\x25\x58\xff\x63\x56\x49\x5c\x45\xed\xe4\xa8\xf6\x5b\x81\x4a\xb8\xa7\x30\x94\x03\xdf\xd4\x3c\xbe\xa9\x08\x93\x93\x9b\x78\x00\xaa\x00\x23\x2b\x5f\x6b\x77\x14\xeb\xdc\xd8\xbc\xf3\x4a\x5a\x7e\x82\x2a\xc7\xb1\xb0\x99\xac\x61\x5f\x13\x5f\x8c\x35\x1d\xc4\x1a\xe5\xf6\x6d\x5f\x9c\x26\x00\x45\x4c\xa0\x1c\x00\x9b\xa6\xde\x04\x16\x2a\xe5\xf1\xf2\x70\x89\x3c\xa3\x90\x7a\xff\x7f\x78\xe0\x33\x96\xe3\x2b\x62\x2f\xf3\x40\x53\x7b\xf1\x23\xe5\x59\x95\xe9\x20\x96\x09\x33\x0b\x2e\xee\x51\x12\x74\x84\xa4\x0e\x25\x07\x00\x82\x3f\xeb\x0b\xc9\x7b\xb5\x09\xff\x73\x26\x75\xde\xc3\x2e\xcb\x63\x5e\xd9\x2c\x7d\x78\xfe\x30\x50\x20\x0c\xf1\xd9\x41\xd6\xb3\x88\x80\x0a\x84\x19\xd9\x6a\x59\x5e\xce\xd5\xec\x4e\xfd\xcb\x6f\x98\x7f\x54\x72\xa5\xc4\x30\x58\xd3\xa3\xa7\xbb\x56\xd7\x98\x03\x65\xed\x43\xdb\xc2\xbe\x48\xf1\xd1\x8c\xe7\x6a\x89\x18\x54\x26\xfd\x5c\x69\xdf\x7e\x92\x91\xab\x78\x23\xc2\x3a\x76\x94\x1e\xd3\x83\x6a\xac\x7b\x58\xc0\xd5\xfb\x6b\x63\x6c\x42\x47\x1a\x4d\x17\x03\x51\x6f\x03\xe9\x35\xf3\x1f\x19\x54\x50\xe5\x37\xb2\xa0\x7d\x54\x5b\xa4\xb6\x8a\xfb\x06\x38\xc6\x5b\xb0\xff\xaa\x0c\xfd\x69\xd7\x10\x48\x19\x79\x66\x19\xd4\x83\xa0\x24\x5b\x4f\xd9\x01\x7f\x62\xa7\xd3\xa5\xfc\x3b\x72\x89\xd7\x57\x35\xf2\x87\xca\x0a\x95\x1a\xd5\x83\x44\xb2\xab\x7d\x7d\xf8\xdb\xd7\x92\x2a\x5a\xbb\x8d\x7c\x2e\x79\x14\x7e\x6d\x36\xee\x31\xf9\x30\x47\x3b\x07\x27\xdc\xfd\x58\xd6\x44\xd7\xd7\x0a\x0e\xd3\x1c\xa6\xa1\x3e\xd9\xdb\xd2\x24\x49\x2e\xfd\xa1\x9e\x4f\x8e\xed\x46\x18\x0f\xe7\x50\xf0\x7b\xbe\x8e\x99\x85\x4d\x13\xf5\x8b\xa9\x68\xce\x38\x59\xd6\x11\x89\xcd\x2b\x66\x7f\x3b\x2d\x06\x65\xb5\x74\xc4\xba\xc1\x9d\x9e\x37\xe5\xb7\xa8\x0e\xb3\x34\xe3\x68\x10\x53\x0a\xa5\xd1\x76\x63\x93\xf8\x11\x5a\x52\x09\x0c\x91\x82\x34\x28\xc8\x97\xa5\xf3\x5e\x12\xa8\xaf\x2c\xd4\xfb\x13\x90\x7c\xa6\x60\x3a\x4f\x76\xf5\xc2\xe0\x23\x74\xa8\xdc\x3a\x47\xc1\xbe\x6f\x1d\x1c\x8e\xbc\x59\xb3\x6d\x1c\xfa\x0a\xb2\x3e\x9b\x0a\xe9\xb0\xe6\x37\xee\xed\xb9\xc6\x6b\xea\x62\xdc\x63\x0c\xde\xfa\x71\x82\x39\x61\x7e\x31\x18\xe5\xb6\xde\xb7\xc2\x94\x47\x52\x82\xe8\xab\xe2\x4f\xd5\xa5\x4b\x78\x6f\xff\x90\x28\xc5\xa0\x33\x38\x4e\x4b\xc8\x01\x4d\xec\x8d\xa1\x00\xa9\x4b\x17\x8e\xf8\x8e\xc3\x57\xb6\x6d\x2b\x90\x98\xab\x64\x79\x16\x96\xb1\xa6\x6b"}, {{0x8a,0x55,0xe7,0x7b,0xb0,0xc8,0x74,0x0b,0x8c,0x2e,0x8d,0xdf,0xdf,0xdb,0x40,0xf2,0x7e,0x45,0xfe,0x81,0xfe,0x45,0x71,0x11,0xbf,0x1c,0x87,0x30,0xea,0xb6,0x16,0xb4,},{0x9f,0xf1,0xfd,0x0c,0x50,0xeb,0x24,0xf9,0x9f,0xe2,0xf7,0x71,0x1d,0x52,0x87,0x2d,0xfc,0x90,0x03,0x80,0xdd,0xdc,0xdb,0x86,0xfe,0x6f,0x4a,0x5f,0x35,0x0a,0x87,0x43,},{0x8a,0xae,0xba,0x53,0x5c,0x51,0x1c,0x31,0xd3,0xf8,0xe9,0x5c,0xb0,0x77,0xa9,0xa7,0xec,0x7d,0x08,0x44,0x1e,0x53,0x42,0xa6,0xab,0xe0,0xbf,0x2a,0x5d,0x7f,0xc9,0x30,0xb4,0x3d,0xac,0x3d,0x1e,0x8e,0xf2,0xcb,0x03,0x45,0x52,0xeb,0x4d,0x08,0x39,0xbc,0x8b,0xf2,0x94,0x55,0x1d,0xd2,0xd8,0x0c,0x53,0xfd,0x62,0x79,0x35,0x1a,0xc2,0x0c,},"\x20\xfb\x41\x4e\x26\x4a\x95\x47\x84\xf1\x12\xba\xce\x7e\x04\x74\xb3\x9c\xb3\xc9\xe5\x3d\xee\x0a\x21\xf4\xcf\x6d\x4a\x99\xb9\x34\x7d\xdf\xfb\xe2\x81\xa6\xc2\x30\xa7\x5d\x63\xa7\x2f\xd0\x5f\x6d\xb5\x3e\xa7\x01\x4e\xf7\x70\x9d\x18\xff\x97\x0f\x48\x5f\xe8\x3b\xa1\xd3\x71\x47\x33\x8a\xde\xd6\xda\x4c\xfd\xac\xc1\xe6\x9d\x2f\x3e\x0e\xf3\x62\xf4\x7b\x5b\xcf\xb7\x8a\x1e\x17\x9e\xb5\xc5\xb1\x06\xc8\xd8\x2a\x0a\x0b\x29\x0d\xf0\x75\xab\x27\x43\x69\x29\xcd\xe6\x56\xf0\x23\x09\xf9\x57\x50\xeb\x67\x65\x83\x26\x2e\x5f\x2f\x69\xf0\xff\x72\xa8\xe0\x57\x26\x63\x82\x26\x92\x05\x31\x87\x40\xbf\xe0\x6b\xf5\xc2\xcb\x45\x33\x90\x8e\xf9\xf9\xf2\x86\x9a\x75\xb9\x53\x35\x79\x82\x0e\x3b\xc0\xca\xff\xd6\x46\x17\x1c\x82\x86\xc3\xa4\xab\xa1\xff\x09\x15\xd9\x36\x11\x20\x5e\x23\x0f\x39\xff\x4c\x4c\xaf\x3f\x33\x3e\x75\x3f\xce\x2b\x71\x21\x3e\x53\xd6\x08\x41\x5e\xe1\x7f\xd4\x82\x12\xee\xdd\x88\x40\xf3\x37\x10\x1e\xf0\xd0\xb6\xf7\xbe\x4b\xff\xc0\x6e\xee\xfe\x80\x66\xdd\x27\xa0\x54\x1a\x46\x88\x31\xac\xdd\xc4\x90\x2e\x2f\xef\xef\xbe\xd1\x9c\x30\x8e\x56\x21\xe0\xbf\x46\xbc\xd5\x38\xaa\x13\xfa\xf0\x4d\x38\x07\x59\xc0\xe1\x07\xe9\x12\x00\x18\x39\xdf\xd0\xb6\x35\x44\x0e\x96\x38\xf5\x37\x7c\xa8\x45\x0f\x35\x0c\x01\x12\x9e\xe3\x37\x64\x41\x5c\x53\xcb\x2f\xfb\xf9\x68\xdf\x78\xb7\x42\xfd\x06\x65\xe7\x8a\x34\xab\xf4\xde\xcd\x1f\xd3\x86\x28\x9a\x13\x64\xe6\x45\x55\xee\xc5\x8b\x0a\xf9\xa4\xcd\x6b\x36\xd1\xd5\xc6\x11\xa2\x84\x6d\xfb\x55\x89\x34\x4b\xbb\xb0\x25\x60\x24\x1b\x74\xb9\x93\xa2\x5b\xef\x50\xfb\x1e\x73\x19\x08\x6e\x6a\x23\x98\x63\x00\x83\x4e\xd2\xdb\xa9\x8a\x16\x87\x21\xc2\xf7\x84\xdf\xb8\xd3\x80\x0d\x06\xa0\x54\xae\xf1\x4d\x17\x72\xb6\xc5\x74\xaf\x25\x63\xd1\x93\xef\x2e\x51\xbd\xc6\x2d\x2a\xbc\xe2\xee\xbe\xad\xa7\x92\x03\x49\x8e\x66\x86\xc2\x87\xf3\x7b\xd8\x8a\xeb\x16\x6f\x7d\xff\xc3\xe6\xad\x02\x94\x11\x7e\xf6\xee\x9d\xa8\x47\x9e\xd8\xa1\x6f\xe9\xbe\x24\x6d\x26\x68\x04\xf2\x96\x58\xdb\x75\xe7\xa0\x87\x3b\xe7\x1d\xc7\xd4\x07\xe3\x9f\xab\xd6\x6f\x98\x8b\x45\x74\x77\x42\x7f\xad\x81\x30\xf0\x9a\xb6\x65\xf1\x59\x7c\x90\x46\xe7\x37\x3a\xf9\xa8\x35\x2a\x86\x83\x0c\xb9\x2a\x80\x44\x88\x70\x0f\xe6\x89\x19\x24\xfe\x2a\x72\x01\x73\x3d\x95\xe5\x91\xee\x0a\x1f\xef\x1c\x26\x36\x07\x8d\x37\x0e\x7a\xd3\xb6\xa9\x44\xfe\xd2\xcf\x2b\x30\xab\xa2\xd5\x6f\x34\x95\xb2\x84\x9c\x03\xbb\x61\x4f\x48\xbc\x4e\x50\x7c\x39\x5a\x6c\x35\xd3\xee\xd4\xc7\xbe\x8e\x68\x0f\x2d\x45\xa3\x10\xb1\x87\xeb\x88\xcf\x0e\x8e\xd4\xde\x7d\x37\x24\x6a\x50\xa6\x36\x7b\x97\xee\x37\x84\x32\x2c\x0b\x71\x13\x1a\x28\x31\x98\xda\x48\x04\xde\x75\x1d\xcf\x70\xc4\xba\xd0\x0d\xd9\x8d\x87\x3a\x69\xdd\x1a\x09\xcf\x69\xdd\xfa\xd7\xae\x60\x35\x00\xb6\xa4\x62\x25\x80\x98\xd8\xb6\x6b\x85\x29\x35\x94\xe2\x08\x82\x9b\x52\x28\xfa\xe2\xfa\xfc\x39"}, {{0x16,0x3b,0x0c,0xb6,0xa1,0x2e,0x8f,0x07,0xb0,0xc2,0x9d,0x6a,0x63,0xf6,0xa6,0x52,0xce,0x49,0x72,0x70,0xb5,0xe4,0x6f,0xcf,0x83,0x3c,0x99,0xbd,0x84,0x3f,0x8c,0x64,},{0x68,0xa3,0x5d,0xe4,0xba,0x6f,0x0f,0x82,0xec,0xf4,0xb1,0xe0,0xdf,0x8e,0x24,0xcb,0x4f,0x18,0xf2,0x10,0x3f,0xf0,0x4d,0xc1,0xb5,0x33,0x39,0x91,0xb6,0xd3,0x14,0xba,},{0x17,0x73,0x8f,0x57,0x26,0x55,0x07,0x80,0x65,0x1d,0x60,0x19,0x9f,0xda,0x39,0xd9,0xc4,0x76,0x8d,0xb5,0x91,0x7e,0x32,0x39,0x36,0x31,0xc5,0x4a,0x41,0x9d,0x59,0xf1,0x8e,0xf9,0x60,0xdd,0xd4,0x39,0x38,0x0d,0xab,0xc3,0x14,0x76,0x1b,0xd0,0xcd,0xb5,0x7c,0xce,0x48,0x1e,0x61,0x09,0xfe,0xd0,0x95,0xde,0xa6,0xe8,0x65,0xaa,0x67,0x0b,},"\x56\xa1\x60\x3f\x72\x5b\xe0\x76\x13\x05\x8c\xdb\x3a\xcd\xc5\x23\x54\xe3\xbb\x1f\xf2\xbe\xd1\x3f\x89\x51\x75\xb1\x5c\x8c\x5a\x90\xff\xbe\x46\xb1\x1a\x06\xcf\xe3\x62\xda\xdf\x73\x23\xc9\x40\x41\x72\x55\xaa\x7a\xa5\x43\x12\x10\x3e\x71\x46\x3d\xaa\x0b\x5c\xda\xeb\xd0\xbe\x72\x3c\x73\x22\x73\xe3\xc3\xf5\xbf\x7a\xa3\x51\x9d\x69\xdf\x6f\x47\x70\xda\xa1\xdf\x82\x80\xbb\x3c\xd2\xc7\x14\xac\x03\x02\x00\x54\x65\x79\xf5\x6c\x60\xb9\x1a\xe1\x1f\x4c\xf8\x74\xa3\x5f\xc5\x9b\x35\x4b\xed\x80\xf5\x6e\x11\xa6\xcd\x62\xa8\x8c\xe6\xb4\xf6\xbf\x39\xd6\x4c\xe3\xd8\x04\x09\x82\x5f\x90\x16\x2c\x3d\x96\xd1\x0e\x47\x86\x07\x36\x5f\x7a\x24\x1e\x71\xaf\x98\x00\x42\xfe\xc2\xd6\x88\x91\xe0\xc8\xa3\x7c\x58\xec\x4e\x60\x0f\xd5\x81\xe7\x90\xb0\xaa\xe8\xe0\x9f\x35\xd4\xcc\x18\x76\xdf\x43\x4b\x80\xee\xe0\x53\x69\xf8\x48\xfc\x49\x30\x57\x7d\x16\x84\x27\x58\x88\xf3\x25\x9c\xb4\x73\x76\xc5\x16\x9c\x99\x37\xf8\x55\xa9\x6a\x9e\x74\x8a\xd0\xa6\x9a\xe4\xab\x2f\x2f\x17\x44\xa3\x92\xf9\xac\xc6\x20\x99\x75\xb7\x84\x98\x4c\xb1\x2f\x98\x29\x2c\x36\xa5\x32\x21\x99\x4a\xbc\x56\xf9\xa6\x6d\xae\x45\x60\xb7\x93\x56\xff\x47\xe1\x28\xc0\x79\x6a\x7f\xb0\xe0\xbb\xc9\x60\x0a\xf4\x8e\x49\xea\xa9\x42\x7c\xf6\xeb\x66\x20\xb1\x0c\xd2\xc0\x85\xb0\xb3\x42\x00\x4d\x5b\x0d\x3e\xdc\x11\xd2\x92\x42\xa4\x63\x87\x80\x76\x2c\x9d\xc6\x06\x9b\x66\xbd\x84\x97\x3b\x50\x11\x96\x1c\xe5\x6d\xb5\x8b\xda\xf4\x8e\x6b\xe1\x2a\xb9\xad\x24\x41\x62\x97\x00\x4d\x02\x91\x4b\x95\x9f\x54\xe0\x92\xf8\xcd\x43\x65\xfa\x6a\xb7\x8d\xdb\xff\x4c\xe8\xda\xd4\xe2\xf5\x3a\x05\xc0\xcc\x49\x9b\xfb\x47\x81\x4a\x27\x13\x55\x1d\xcd\x19\xd4\x47\xf6\x27\x57\x6e\xa4\xea\x4b\xbd\xa8\xba\xe1\x8a\x64\x65\xce\xd7\x47\xea\x17\x18\x0b\x00\x9f\x01\x21\x21\x60\x48\x2b\x04\x33\xaa\xc6\x8e\x67\x64\x4d\x00\xf4\x1f\xdf\x99\x90\xb9\xe1\x11\x17\x63\x4d\xeb\x13\x9b\x1a\x40\xad\x3f\xce\x42\x99\xa1\x7f\xe1\xdd\x22\x53\x01\xc7\xf8\xd8\x01\x0a\x79\x6d\xc7\x9c\x13\x30\x7d\x3f\xf9\x92\xa8\x8b\xe6\x64\xd4\xc8\x86\xd6\x8c\xa9\xe4\x47\x0c\xfb\xe6\x3e\xbf\xfc\x42\x40\x10\xe3\x72\xb6\x92\x2a\xa9\x5c\x80\x1d\x1e\x94\x06\xda\x4b\xc1\x88\xca\x82\x06\x64\x05\xbc\xdb\x3e\xaf\xc9\x37\x62\x9b\x32\x63\xdc\x7d\x50\xee\x52\x78\xcc\xec\x6f\x11\xd5\x51\x7f\x56\xbc\x26\x9c\x87\x36\x91\xe7\xeb\x53\xfa\xef\xf0\x75\x64\xab\x46\xb4\x03\xf1\x5d\x9e\x0e\x69\x24\x86\xee\x09\x8e\x7b\x51\xb4\x28\x13\x46\x9b\x82\x35\x04\x22\x33\xca\x3f\x9c\x4f\x8f\xf2\x4a\x57\x1f\x47\xe0\xad\xf9\x14\x4a\xea\x48\x8a\x2d\x2d\xd0\x01\xe3\x1f\xc9\x61\xe0\x5c\x3e\x85\xf0\xd9\x81\x40\x7c\x87\x31\x58\xbb\x0d\x35\xba\xfe\x4b\x60\x42\x2e\x67\x55\x1e\x97\x01\x65\xce\x3f\xc5\x99\xd0\xfc\xc9\x2b\x16\xac\x36\xa9\x2b\x2c\x1d\xc6\xb3\xf0\x33\xfe\x31\x0c\xd1\x96\xda\x04\xa4\xe6\x39\x03\x11\x77\xcd\x27\xd7\xc2\xfb\xec\x65\xa0\x0b"}, {{0x8c,0x83,0x93,0x81,0xb6,0xa7,0xce,0x26,0x49,0xc1,0xea,0x46,0x4a,0xe3,0xc2,0xd3,0xfd,0xb1,0xec,0x66,0x6d,0x7b,0x4b,0xe4,0xe2,0xa9,0x41,0xab,0x6d,0x65,0x57,0xa7,},{0x5c,0x72,0x4a,0x30,0xc6,0xfb,0x32,0x81,0x53,0x43,0xa8,0x0d,0xde,0xe6,0xee,0xe5,0x44,0x51,0x64,0x18,0xea,0x95,0xe1,0xba,0xc8,0x0a,0xfc,0x80,0x40,0xd6,0x3f,0xc6,},{0x5d,0x21,0x10,0xd1,0xd2,0xf3,0xed,0xd6,0x83,0xbd,0xfd,0xbe,0xa3,0xff,0xa7,0xcf,0x55,0x28,0xa4,0x0b,0x8b,0x3d,0x8d,0x8c,0x9b,0xfd,0x22,0xae,0xac,0x28,0xba,0xd4,0x71,0x66,0x6e,0x06,0x2f,0x7d,0x38,0xce,0xda,0x8b,0xb3,0x73,0x97,0xa1,0xc5,0xc3,0xf7,0x33,0xb5,0x37,0x96,0x70,0x45,0x70,0x64,0x78,0x43,0x7d,0x4d,0x18,0x7a,0x0a,},"\xcb\xcf\x89\xc3\x54\x89\x64\xc3\x8d\x70\xfd\x8f\x68\xe8\xec\xe3\x6c\xc3\x97\x55\xc9\x71\xd1\x4d\x7e\x05\x6f\x39\xb0\x23\xef\x16\x6d\x17\xf2\x43\x85\x22\xf0\x10\xd6\xd8\x35\xd8\x86\xe7\x1f\x47\x4c\x67\x27\xa4\x22\x1f\xd0\x3a\x75\x74\x57\x82\x89\xed\x54\x93\xac\x4c\x09\x47\xe3\xf4\x28\xd8\xfe\x06\x40\x06\xa2\x56\xce\xf2\x18\x11\xd7\x26\x78\xf5\xdf\xc6\xba\x66\xac\x29\xec\xd1\xb3\x2f\xf5\x55\x7c\xb0\x8c\x5f\x13\x05\x59\x21\x7a\x04\x13\xb7\x59\xc2\x4d\x83\x38\x8a\x2b\xb9\xb2\x9b\x6b\x91\xd1\xf3\x10\x1e\xd6\x25\x21\x1e\x4d\x73\x80\x51\x93\x47\x8c\xf9\x95\x39\x6c\x10\xb1\xc5\xaf\xfa\xcb\x00\x89\x9d\xa0\x4e\x3c\xce\x19\x3b\x49\x4e\x2a\x93\x3c\x4e\xeb\xe0\xa3\x7b\xfb\x8f\x1b\x83\x71\xbd\xe5\xfd\xa0\x9e\x80\x4e\x94\x0f\x34\x48\x96\xa5\x29\x46\x7a\xde\xe4\x5a\x8f\xeb\xf8\x5a\xb0\x36\xca\xb8\x80\x14\x3b\xe4\xf5\x9b\x77\x41\xd8\xe4\x50\x27\x8b\x06\x36\x55\x78\xd4\x0b\x19\xdc\xec\xc6\xe1\xee\x3d\xa3\x4a\xb2\x90\x13\xfa\x3a\xf7\x72\x92\x72\x96\x21\x10\xe3\x85\xab\x9a\x02\x2f\xae\x41\x46\xf8\x97\x16\xf7\xba\xb9\xd3\xdc\x68\x2f\x4f\xac\x77\x36\xd3\xe0\x89\x73\xc6\x85\xbb\xb2\x75\xbb\xf8\xf2\x17\x41\x9e\x5c\xae\x02\x19\xeb\xa5\x16\x6a\x5d\xe1\xb1\x1e\x3f\x9a\x90\x8b\x8a\xc7\xe6\x5b\xcd\x62\x3f\x8c\x18\xbb\x02\x4f\x60\x5d\xcb\xac\xda\x79\x0d\x83\x62\x95\x74\x44\xa9\x5c\x13\x0a\x37\xee\x9d\x56\x3d\x0c\xbb\x4c\xb2\xb0\xff\x71\x59\x1d\x93\x90\xb6\xc8\xfc\x28\x75\x3a\x0e\x40\x2d\x64\x87\xcf\xac\x60\x71\x35\x92\x7d\x89\x26\x75\x12\xb3\x4f\x87\x70\x57\xd9\x27\x1b\xcc\xc0\x24\xdf\xed\xcc\xc6\xc3\x2e\xdf\x75\xc8\xb7\x55\x1c\xdf\x80\x15\x4e\xe8\xe0\x8a\x0c\xc4\x30\x44\xe1\x03\x6b\xae\x01\x7e\xb4\x8b\x65\x02\xc7\xa9\xd6\x0c\x8b\x37\x0c\xf3\x79\x9c\x46\x4f\x96\x4a\x69\xee\x65\x95\x01\x22\x3e\x78\x9a\x64\x97\xb6\x34\x96\xdf\x1a\xda\x2e\x80\x8d\x24\x34\xfc\x8b\xb9\x79\x4e\x5e\x2a\x20\xbb\xf4\xd6\x92\x5c\xb3\xc5\xbb\x14\x84\x2f\x19\x20\x09\x05\xba\x93\x54\xe0\x0d\xc3\x3c\xff\x5b\x42\xd4\xe9\xd9\x66\x8b\x34\xe6\x61\xd4\x4b\xef\x76\xfe\xfe\x2e\xd5\x1f\x94\x42\x3a\x93\x3a\xc9\x4f\x15\x23\xbf\x37\x82\x3a\x23\x8d\x61\x6c\x6b\x17\x97\x34\x41\xe3\x5f\x94\x05\xa0\x4d\x99\xea\xa8\xf5\x04\x53\x4c\x8b\x5f\xa5\xe8\xe3\x35\xc7\x43\xbc\xf2\x1f\x5d\x49\x2b\x71\x12\xe0\x0f\xd8\x64\x2c\xb1\x2b\xfe\xc8\x49\xdf\x62\x12\x0d\xbb\x06\xbf\xc2\x94\x6a\x56\x01\xe2\x5b\xe7\x50\x11\xc6\xf0\x0c\x65\xd3\x5f\x44\xa4\x6a\xf9\xe4\xf7\x80\x9e\x57\x89\xa3\xa6\x1b\xa0\xa3\xb2\x13\x89\x04\x97\x29\x6c\x81\xe4\x2e\x88\xf0\xec\x0f\x5d\xef\xc1\xf5\xd3\x9f\xf2\xa4\x8b\x7e\x30\x26\xc9\xe5\x47\x20\x2e\xdc\x7e\xb7\x38\xc3\x4a\xd3\xa1\x5d\x37\x3e\xf8\x2a\x4c\x1d\x18\x1f\x28\x5a\x98\xbd\x33\x14\xc2\xc1\x94\x7c\x9e\x2c\x60\xac\xa5\x17\x50\xee\x7f\x94\x3c\xaf\x0c\x4e\x1e\x5c\x7d\xf7\x29\x1e\x97\x3b\x1f\x93\x6b\x73\x70\x76\x19"}, {{0xaa,0xbb,0xb2,0xef,0xed,0xb5,0x99,0x42,0x4a,0x5f,0x3e,0x08,0xf9,0x0f,0xa8,0x82,0x6c,0x5c,0x92,0x17,0x0b,0xe5,0x01,0xa1,0x18,0x1f,0xe8,0xe8,0xdf,0x97,0x4e,0x0e,},{0xce,0x73,0x19,0xef,0x88,0xb2,0x42,0x42,0x06,0x66,0xca,0x69,0x7b,0xa8,0x50,0x1d,0x27,0x4e,0xc4,0xa5,0xdc,0xf8,0x44,0x59,0x66,0x08,0xb9,0xdd,0x5a,0x8a,0x3a,0xcd,},{0xa0,0xb1,0x9c,0xfa,0x6c,0x80,0xde,0x77,0xbf,0xcd,0x32,0x10,0x30,0xbf,0x8c,0x03,0x89,0x3e,0x2b,0x21,0xac,0xe6,0xc6,0xba,0x1f,0xf7,0x40,0x8e,0x6f,0xf0,0x7d,0x84,0x7e,0x6b,0x2b,0x68,0x8d,0x4f,0xd5,0x1a,0xa9,0x32,0x70,0x1d,0xb6,0x40,0x2e,0xf2,0x23,0x22,0xe6,0xe9,0xfc,0x7e,0x32,0x0a,0xbb,0x4d,0x24,0xe1,0xac,0xc6,0xcf,0x06,},"\xfc\xc1\x5c\xc5\x79\x70\x56\x9e\x9c\xcf\xa5\xa7\x78\xfc\x7a\xed\x71\x97\x8a\x3f\x56\x24\x57\x7b\x6f\x57\xfa\x3f\x16\x7e\xa2\x23\xef\x31\x76\x4c\x48\x8d\x05\x9d\x06\x53\x1d\x01\x6b\xcb\x17\xd5\x44\xd4\x69\x77\xaa\x24\x1f\x8e\x07\xaf\x47\x87\xa0\x81\x0f\x98\xd7\x66\x46\x0c\x08\x41\xad\x81\xb8\x8f\x4d\x5d\x81\x64\x48\x5a\x12\x58\xa9\x46\x22\xc5\x49\x24\x28\xd6\xd5\x75\x94\x37\x15\x76\x6c\x2b\x0a\x86\x5b\xed\xba\x16\x7d\x5d\x34\x0e\xdb\x57\x9c\x47\xaa\x32\x45\x9b\x8f\xc9\x8a\x79\xbb\x0b\xed\x1c\x96\x0b\x4c\xcb\x7f\x2d\x4b\x56\x81\xa2\xa7\x0d\x50\x5b\x85\xb8\x1e\x3d\x99\x67\x27\x14\xe4\xea\xb4\x1f\x3a\xb0\xca\x87\x4f\x41\x71\x86\xfe\xb6\x9e\xd1\x3f\xb9\x11\xf4\x9d\x15\x84\x75\x8b\x2d\x18\xb4\x67\x3e\xdf\xae\x49\x5e\x68\xda\xd5\x13\xa7\xac\x0d\x47\xb2\x75\x3c\xb4\xed\xa7\x8f\xb4\x31\xf0\x4d\xda\x8f\xe8\x03\x0d\x7b\xb4\xe8\xdb\xcc\xb9\x69\xd7\xf5\x80\xd9\xc1\xef\x93\x5d\x07\x4d\x7a\x41\xd1\xf8\xb9\xdc\x45\xc9\xa2\xe4\x10\x6a\x55\x29\xa9\x8b\x95\x52\x9a\xb0\xed\xea\x0b\x57\x22\xdd\x68\x6f\x5a\x7f\x3c\xd8\xfb\x26\x24\xab\x26\xc4\x2d\xf1\x1f\x51\x0a\x10\x3d\x8a\x92\x98\x30\xad\x85\xf5\x21\x24\xe3\xd5\x82\x7b\xa6\x0b\xfb\xcd\x73\x6c\xb6\xc5\x90\xee\x77\x7e\xad\x7a\xa2\x22\x4d\x7a\xe4\x6d\x25\x7a\x90\x40\x72\x47\x96\x0c\x9c\xb0\x38\x60\xae\xaa\x7f\x54\xc1\xa8\xe1\x11\x60\xd1\x1b\xb4\x73\x06\x5e\x19\xb7\x07\x21\xc8\xf0\x72\xe1\x90\x9d\x53\x9e\x9a\xc9\x41\x85\x90\x4b\xbb\xfe\x54\x87\x37\x54\xae\x1c\xa7\xbc\xed\x6f\x40\x56\x1a\xf4\xb5\x05\xf0\x3a\xc9\x72\xa6\xf0\xbf\xa7\x3b\x5f\x83\x2f\xe2\x3b\x89\x8b\x2b\xbb\x05\x74\xa6\x66\x2e\xe9\x3b\x3b\x36\x0d\xa1\xec\x7e\x83\x8e\xb2\xc7\x7c\x7c\xb7\xfc\x16\x4f\x7c\x46\x27\x01\x04\x89\xc8\x58\x90\x07\x52\xc9\x2d\x9d\x75\xad\x54\x71\x67\xe4\xbd\xd1\x1a\x07\xd2\x8b\x65\x1a\xa3\x0f\x16\xa8\x50\xe0\x60\xdd\x28\x82\xfb\x82\x09\x19\xa3\x98\xe8\x05\xeb\x63\x69\x9f\x4f\xf5\x95\xf9\x91\x52\x47\x31\x64\x1e\xce\x25\xfb\x3f\x8e\x89\xad\xa5\x01\x19\x2b\x1e\xdd\xae\xcb\xac\xc8\xb8\x98\x52\x8f\x2d\x5b\x33\x12\x69\x4f\x5e\xc2\xdc\x91\x42\xe1\x51\x3f\x77\x7a\x5c\x83\x34\x09\xc1\x71\x63\x3f\xf9\xfa\x26\x09\xd0\x49\x7f\x5d\xf4\xfb\xf4\x8e\xf2\xb7\x7d\x55\xe2\x55\x19\xd2\xee\x79\xb5\xfe\x9d\x8f\xa4\x60\x00\xde\xcd\xb4\xf2\x5d\xfb\x3f\x2b\xaf\xb1\x9f\xbe\x2c\xbd\xac\x00\x2a\x35\x9a\x95\x4b\xc6\x9b\xdf\xe2\xfb\x36\xad\xfd\x9a\x15\x09\xf3\xe3\xa4\xc6\xb1\xf3\xf3\x6e\x7c\xf8\x0d\x58\x3d\x44\x0f\xf2\xa1\x44\x64\x30\x98\x97\x4d\x71\x49\x3e\xcb\x64\x17\xc0\xb8\x06\x5b\xd2\xc2\x1c\x1e\x34\xaf\x09\x24\x3f\xb4\x9e\x9d\x35\x29\x7e\xb0\xa5\x2d\x56\xdd\x27\x0f\xea\x6d\xc5\xc0\x80\xa0\x55\x99\xf7\x85\x81\xe9\x0f\xd8\xcc\x4c\xd1\x1a\x50\x5e\xdd\xe8\x4b\x89\x2d\x89\x53\xbd\xbb\x23\x79\xd3\x3a\xad\x64\x65\x8a\xe2\x06\x07\xdd\x35\xb0\xbf\x3a\x26\x37\xd2\x0c\x3f\x86"}, {{0xc2,0xe0,0x74,0xfa,0xa2,0x34,0xe9,0x9a,0xb2,0x0a,0xdb,0xbe,0xae,0x11,0xb8,0x10,0x97,0x23,0xb7,0x08,0xc5,0x45,0x86,0xdf,0x65,0x2b,0x40,0x2c,0x35,0xcd,0xd1,0x27,},{0x5e,0x52,0x4e,0xce,0x1c,0x69,0x6e,0x70,0x5a,0x35,0x14,0xdd,0x00,0x82,0xb8,0x40,0x79,0x5a,0x59,0xc3,0x6a,0x96,0xcb,0xc4,0x82,0xbf,0xf5,0xab,0x4e,0xf5,0x15,0xd1,},{0x65,0x7c,0x38,0x26,0xb3,0x48,0x3f,0xd4,0x2a,0xb6,0xdf,0x86,0x9d,0x1b,0x77,0xa8,0xc4,0xdf,0x67,0xa6,0xa5,0x90,0xc7,0xc6,0x77,0x29,0x69,0xe3,0xdf,0x33,0x12,0xae,0x06,0x54,0xfb,0x83,0x84,0x7a,0xf2,0x21,0x93,0x5a,0x05,0x12,0x29,0x16,0x36,0xec,0x05,0x95,0x70,0x08,0x79,0xeb,0xdb,0xa8,0xa1,0x46,0x7c,0x53,0xd4,0x0c,0x23,0x06,},"\x31\x29\x03\x38\xe4\x6d\x1c\xc2\x5c\xe9\x9c\xba\xcc\x40\x16\x03\x41\xb7\x85\x82\x3c\x82\x3c\x4a\xb9\xba\xee\x3b\x61\x25\x79\xf1\xc0\x11\x71\x67\x96\xe5\x6e\x26\x93\xf6\xdd\xad\x43\x92\x2a\xa7\x84\x7c\xbb\x41\x48\x10\x16\x51\xbb\xe6\x2d\x50\xbe\x90\x82\x5e\x8e\xab\x77\x7a\xa4\xb8\x02\x6d\xc5\x38\x5a\x97\xd3\xdf\x76\x16\x01\x91\xf9\x22\xcd\xd2\xf0\x7b\xa5\xf8\x5e\x95\xf4\x5d\xb2\x29\x28\xf9\x07\x34\xff\x52\x0c\x44\xdc\x8f\xe3\x90\x3b\x4c\x51\xcd\x23\xe0\x64\xf0\x1c\x82\x9e\xc7\x4f\xbf\xfe\x25\xfd\x0d\x36\x9d\x27\x65\x74\x0f\x43\x85\x6b\xd7\x39\x8a\x19\x11\xad\x74\x98\x36\x16\x0f\xd9\x8d\x04\xb2\x8e\xe8\x7e\x11\x1d\x40\x71\x8b\x5a\x16\x6f\x05\xc9\xa4\x71\xa4\x15\x66\x55\x70\x69\xf7\xa1\x4d\xe9\x88\xbb\xbf\x67\x77\x52\x1f\xcb\xa6\xdd\x65\xde\x4c\x06\x67\x4a\x11\x85\x3a\xf8\x3a\xcc\xb7\x0f\xb3\x28\xdd\x8f\xd6\x10\x5a\x7d\xf5\x26\x9c\x9f\xae\xc8\xd9\x00\x14\x7e\x92\x8d\x97\x0c\x36\xcd\x83\x4b\xd6\x05\x4f\x70\x65\x0d\xfa\xce\x94\xb7\x62\x9d\x16\xe3\x70\x3d\x76\x6c\xe7\x63\x8d\x0a\xd1\xe1\x7b\x77\x46\x9b\x95\x8d\x2b\xa2\xa1\xe6\x31\xa1\x63\x5e\xfd\xcb\x00\x6e\xbc\x6e\x5d\x8b\x9f\xaf\x7e\x5f\xb9\x89\xdc\x08\x96\xc5\x61\xa2\x6f\x3c\x25\xf0\x55\x71\x6b\x36\x71\x38\xea\x5d\xa1\xf8\x1d\xc7\x2c\xff\x7a\x55\xaf\xae\xe5\x83\x9e\xf5\xaa\x82\x2b\x29\x70\xaa\x18\xa8\x98\x21\x63\xbf\x5e\xed\x1b\x67\x7c\xca\xac\x12\x24\xff\x6c\x6c\xf2\x56\x37\x47\x80\xae\x65\x80\x3b\xf5\xc6\xe2\x3c\x80\xba\xcd\x76\xec\x3e\x2d\xdd\x3a\xb7\x19\x97\x50\x64\x48\xe1\x9d\xb1\x98\xef\xad\xc9\xf7\x57\x49\x1f\x1b\x09\x72\xc8\x2d\xb2\x94\x10\xe1\xe8\xbb\x67\xbb\xb2\x3d\x53\x56\x3b\x88\x07\xe5\xe0\xc2\xe3\x2e\xe5\x96\xb5\xb4\x40\x23\x28\xf9\xe1\x79\xe9\xce\x85\x6d\x3b\xd1\x99\xd5\x8d\xe6\xc5\xc2\x52\xe7\xa6\x12\x4d\x81\xfc\x9e\xea\xf2\x3d\x34\x7d\x2a\xb8\x89\x17\xaa\x68\x44\x50\xdd\x58\x30\x35\x16\xc1\xa4\xd2\xbd\xcd\xde\x22\x0c\x9a\xe3\x79\x0f\x29\x8d\x7d\x38\x4b\x70\xc2\xfe\x25\x88\x07\x84\x8f\xc3\x53\x20\xb5\x78\xb3\x35\x03\xb7\x5f\x38\xa1\xdf\x63\x0b\xd3\x3e\x6a\x85\xa4\xdd\x4d\xf9\xf6\xe5\x5a\x6e\x68\x67\xc7\x38\x01\xe5\x93\xe1\xd5\x91\xdb\x89\xba\x9a\x9a\xf0\xfc\x29\x2e\x06\xfb\x51\x5a\xc8\xa5\xe8\xe3\x43\xa8\x21\x33\x55\x75\xba\x48\xfb\xaa\xe3\xfb\x12\xde\xea\xae\xe6\x0f\x4b\x3d\x31\x7e\xc0\xa5\x54\xdd\xd4\x25\xc8\x49\x32\xc2\x7a\x7a\x12\xf2\x9d\x63\x71\x51\x07\x83\xbd\x75\xe6\x0e\x2f\x6d\xa2\x00\x52\x06\x9e\xd7\x1e\x69\x5a\x94\x31\x82\x19\x3c\xb6\x85\x1a\x7d\x2f\xa3\xc6\x66\xc1\x93\x02\x80\x15\xac\x8b\x7e\x7d\xaa\x6c\x52\x04\xf7\x7a\x62\x32\xb8\x8b\x4a\xbf\xfc\x53\x62\xfd\xe7\xde\xc3\x6b\x9d\x45\x48\x80\x84\x92\x83\xb1\x15\x63\x39\xea\x2e\x8c\x3b\x10\xe5\x1b\xfa\xbd\xf7\x25\x78\xc7\x26\x41\x9a\x38\x54\x2c\xf8\x64\x9d\xf9\xa0\x90\x9f\x58\x2d\xeb\xad\x5f\xd8\x9d\x8c\x81\xf8\x3d\x9e\x42\x3e\x75\x03"}, {{0xb9,0xda,0x4e,0x6a,0xf0,0x7e,0x39,0x8a,0xb4,0xd2,0x17,0x52,0xa3,0x2c,0x8f,0xfa,0x9b,0xe0,0xc3,0x10,0xd3,0x50,0x59,0xfb,0x66,0x1b,0xd7,0x3a,0xfa,0x97,0xe2,0xa8,},{0xf8,0x62,0x80,0x3c,0x96,0xcc,0x42,0xad,0xc8,0x25,0x28,0x84,0x54,0x72,0x30,0xb9,0x70,0x04,0x7b,0x7e,0x5d,0xa9,0x96,0x26,0x0c,0xcc,0x02,0x40,0xab,0x71,0xa6,0xec,},{0x62,0x5e,0x1f,0x42,0xc8,0x74,0x34,0xa2,0x5d,0x62,0x2d,0x80,0xd1,0x25,0x32,0x80,0x6a,0xfb,0x25,0x09,0x33,0x24,0x49,0xe6,0x96,0xb6,0x5e,0x1e,0x58,0x88,0x50,0x8f,0x11,0xc4,0xac,0x25,0xf5,0x9b,0x8d,0x94,0xd0,0xbf,0x27,0xe4,0xc8,0xd1,0x86,0x70,0x07,0xc4,0x08,0xda,0x57,0x30,0x82,0xdc,0xf1,0x9d,0x15,0xa9,0xd5,0xcc,0xcb,0x0c,},"\x6b\x95\xaf\x0e\xeb\xb6\xa0\x8a\xfa\xda\xa1\x96\x21\xf7\x6a\x83\x9b\xe8\x08\x51\xc6\xdd\x31\x5e\x82\x76\xf5\x01\x99\x5d\x4c\xe6\xd1\x34\xdf\x5e\x79\x8e\xd5\x17\xa2\xf0\xe6\x2a\xa1\xd6\xc9\x8c\x36\xef\x14\xbb\x1e\x5d\xdf\xc9\x8d\x5a\x7f\xcc\x81\x14\x0a\x13\xc2\x0d\x2c\xa0\xc4\xb4\x0e\x6e\x6a\x03\xee\xd8\xc8\x99\xf9\xd1\xf7\x92\x46\x81\x52\x19\x9f\x4b\x95\xa4\x32\x66\x89\x47\xa5\x1d\x7b\x8e\x10\x4d\x8d\x1f\x12\xaa\xcd\x96\x7e\x08\xb0\x8c\x41\xc3\xc8\xca\x3f\xee\xda\xa5\xb8\xb6\x3b\xce\xc0\x61\x38\x64\xd9\x53\xd8\x11\x43\xec\x81\x42\x5b\xde\x29\x16\x4a\x08\x76\xf2\x3f\x37\xac\x9a\xc9\x47\x36\x72\xce\x11\xa0\x8b\xd5\x47\x6f\x6f\x66\xd6\x65\xe9\xad\x61\x7e\x34\xeb\x32\xee\x56\xff\xa4\x59\xf2\x0d\x1b\x93\x53\xd7\x82\x12\x98\x54\x57\x50\xc6\xef\xf3\xe7\xd4\x07\x3d\xc3\x18\x5e\xde\x03\x91\xcc\xe0\x57\x5f\x8b\xa6\x37\xd8\x00\x06\x8d\x9d\x7e\x54\x03\xba\x70\x38\xd2\xdb\x77\xda\x14\x47\x84\xf2\xe8\xea\x76\xae\xdf\xe5\x21\xe7\xdc\x6a\x67\x4e\xde\x35\x57\x95\x95\x99\x3f\xb2\x0d\x44\xb4\x05\x27\x83\xf5\x6c\x8c\x0b\xbd\x04\x40\xb6\x9e\xab\xde\x84\x46\x8d\xd1\x3c\x67\x1f\xb1\xbb\xd5\xcb\x02\x2c\x2a\x4f\xcf\x35\x42\xd8\xb3\xbb\x51\x8e\x5a\xde\xbd\xdc\x84\xe7\x14\xb1\x3b\xe5\x2c\x56\xb2\x82\xb4\x2a\xc0\x89\x2a\x54\x59\x28\x1b\xe7\x16\x07\x29\xf4\x11\x2c\x7d\x99\xdf\x9b\xe5\x43\x4f\x82\x3a\x9c\xe0\x50\x17\x89\xde\x1d\x55\x0a\xd5\x0b\xb1\x8c\x8d\x89\xa3\x36\x68\x27\x0b\xff\x7b\x91\xff\x11\x8f\x5c\xd9\x90\x9a\xdd\xde\x90\xc0\x24\xa3\xad\x71\x39\x15\x17\x46\x74\xf2\x8a\xaa\x9f\x94\xa3\x22\xba\xa5\x43\x73\x8e\xda\xb4\x97\x33\x12\xb5\xbf\xa1\x21\x55\xde\xbc\xee\x16\x3c\xfe\x2b\x04\xac\x9c\x12\x2a\xc8\xa4\xe1\xbc\x41\x8c\x14\x95\x5d\x96\x10\x45\x5b\xd9\x45\xe9\x79\x3b\x91\x62\x67\xc9\xc5\xf9\xe5\x3a\xc0\x45\x18\x92\x6e\xc9\x8e\xcb\x84\xa4\xf0\x44\x5d\xcb\x12\x36\xc7\x6c\x3a\x67\x8c\x69\xab\xe4\xe9\x2c\x22\x97\x1d\x62\x21\x72\x01\xa1\xbd\xf0\x5c\x04\xdf\x84\x20\xa3\xde\x6a\x91\x7a\x85\xe7\x1e\x2b\x97\x25\xe7\x7b\x52\x29\x15\xd4\xc9\x94\x60\x77\x63\x7c\x2d\x88\x13\xf0\x10\xb9\x49\x1c\xf0\xed\xdc\x3d\x46\x68\xcc\x0f\x8b\xc8\xa6\x83\x57\x9b\xe5\x43\x93\x4d\xa2\x85\x3a\x16\xf5\x71\x57\x24\xf7\x79\x81\x9f\x44\x43\x9e\x1d\xeb\xca\xa4\x27\x0d\x9b\x85\x94\xba\x4c\x86\xe1\x06\x3b\x3c\xe4\x79\xd7\x1a\x54\x09\xbe\xf2\x7e\xf4\xe5\xc1\xd1\xc9\x6e\x8b\xe1\x38\x65\xaf\x7b\xb4\x3f\x09\x16\x2c\xcb\xc8\x3a\x2c\xa9\xe9\xb8\xa2\x32\x4e\x6d\x99\x65\x75\xee\xfe\xd3\x7e\xf4\x99\x08\x18\x57\x38\xb8\xea\xe4\x3f\x8a\xdc\xa3\x30\xc9\x9b\xc6\x6c\xc1\xfd\x52\xc5\x30\xd7\x37\x1c\x60\x86\x9c\xe4\x2c\x19\x7d\xca\x0a\xd1\x28\xb8\x5f\x61\xc8\x75\x8f\x0d\x54\x2f\x3d\x32\x98\xb6\x5e\x93\xc6\xe8\xa6\x8f\xa0\xe9\xa1\xd5\xe8\xc5\xfe\xc8\x05\xb8\x3a\xff\x43\x90\xe1\x15\xeb\x64\xf3\xf0\x78\xa0\xb9\xb6\x6c\x27\x38\x43\xfc\x6c"}, {{0x14,0x3f,0x7b,0x42,0x47,0xd5,0x49,0xf6,0xb7,0xc0,0x91,0x72,0x66,0xc5,0x0f,0x96,0x2c,0x28,0xa2,0xea,0x24,0x76,0x2f,0x53,0x7a,0xa0,0x6a,0xd1,0x5e,0x40,0xb3,0x5a,},{0xc9,0x95,0x9f,0x90,0xa2,0xd5,0xfe,0xac,0xba,0xe2,0xc4,0xc8,0x03,0xde,0xd5,0xde,0xab,0x86,0x98,0x76,0x37,0x06,0x43,0x37,0xaa,0x2a,0x0b,0x0d,0xde,0xf2,0xfd,0x86,},{0xc1,0xcf,0xae,0x58,0x51,0x57,0x13,0xea,0x72,0x8c,0xfa,0x09,0x09,0x0e,0x89,0x42,0xf8,0xdf,0x18,0x62,0x1b,0xa7,0x09,0x0e,0x3a,0x33,0x76,0xc3,0x80,0x27,0x75,0xa1,0xec,0xaf,0x43,0x6b,0x18,0x49,0x78,0x04,0x1e,0xbb,0x75,0x22,0x6f,0x97,0x0d,0xf7,0x1d,0x6a,0xd3,0x53,0xc0,0xfb,0x46,0x50,0x23,0xf9,0xe2,0x98,0xf6,0x4a,0x70,0x02,},"\xe2\x74\x20\x23\x47\xa0\xd0\x57\xa4\x8b\xf2\xa1\xf6\xe9\xf6\xcb\x42\x56\x07\x9d\x80\x03\x74\x09\x3c\x02\x0c\xbf\x52\x0e\x5f\xa2\x7f\xe9\x96\xff\x07\xf3\x3a\xd3\xb2\x1f\x74\xab\x0c\xd9\x3c\x86\x47\x5f\xf3\x7c\xf6\x22\xd3\xf9\xfa\x4d\x13\xbc\x99\xf0\x13\xe8\x50\x2b\x24\xe4\x6c\xc8\x7c\x47\xe6\xb2\xc3\x66\x2b\x50\xe9\x79\xa0\xf3\x45\xb7\x84\xff\x21\xa8\xa4\xd9\x2a\xdc\x65\xe8\x6e\x33\xb4\xdb\xe1\x7f\x52\x8c\xcd\xf5\xb4\x86\x46\x64\xba\x94\xff\xdb\x7c\x7d\x24\x12\xb4\x38\xe6\xe4\x3f\xa9\x66\x81\x47\xee\x33\x28\x22\x4d\x1f\x52\xa3\xf5\xb5\x43\x59\xb4\xf7\xfe\xf6\x9a\xf8\xf8\x67\xb4\x78\xf1\x30\xa1\x47\xbe\xa4\x2e\xd3\x98\x03\xbc\xbc\x25\x57\xbc\xa8\xc3\x99\x9f\x1d\x24\xf0\xa6\xb0\x3c\x98\x84\x60\x11\xf9\xec\x74\xf6\x66\x41\x7b\x95\x02\x0e\xb1\xfb\x2f\xb8\x8b\x63\x12\xe5\x00\x8c\xff\x03\xe2\xd7\x7a\x26\xaa\x53\x2d\x17\x80\xb5\x07\x7f\x9e\x8b\x82\x86\x74\x45\x5d\x6b\xc9\x57\x97\x5f\x7b\x2a\x50\xe7\xfd\x7c\x16\x12\xce\x02\x36\x2e\xfa\x4c\x55\x5a\x1e\xef\x68\xec\x34\xa5\xc0\x06\xa6\xda\x00\x8a\x31\xd4\x19\x3d\xc2\xcc\x64\x76\x85\xad\x3c\xfa\x3b\xd7\xc5\x60\xb7\xae\xd4\x5f\x0f\x1a\x3d\x1b\x5b\x36\x22\x68\xde\x53\x28\x57\x05\x5a\xb9\xd1\xd5\xd8\x58\xd9\xae\x9a\x75\x9a\x51\xbb\x94\x78\xe8\xf0\xee\x93\xc9\x84\xb5\x76\xb8\xb4\xab\x46\x02\x80\xbe\x3d\xe2\x05\xa3\x2f\x1d\xc3\xd5\x72\x92\x3f\xb2\x13\xac\x15\x12\xd8\x0e\xb5\xad\x5c\x18\x94\x4b\xe7\x7f\xc1\x7d\xef\x13\xa6\x1b\xbd\x31\xbc\x71\xac\xc2\x3d\x25\x0e\xc5\x89\x4e\xbc\x21\x4c\xfe\xc0\xc1\xb9\x06\x51\x6d\x32\xd8\x36\xad\xc8\x38\x80\x2e\x8d\xe3\x0d\xd7\x6d\xf6\xe6\x1c\x1b\xc4\x38\xb6\x8d\x2b\x02\x5a\x84\xf2\x11\xfa\xcf\x3f\x13\x84\xd2\x61\x2d\x0f\xae\xf5\xd1\x71\x31\xcf\xe0\xcf\xe8\x33\xfe\x95\x0e\x47\x9b\xc2\x9c\xbe\x7f\xd6\xda\x0c\xce\x30\x7c\xf0\xb1\xbd\x92\xc8\x0e\x87\x8e\x43\x2f\x63\x6e\xa0\xcd\x42\x48\x0c\x07\xe8\xb8\xe5\x7e\x69\xb2\xf9\x38\xb7\x81\x20\xf6\xaf\x4a\xbe\xbf\x7d\x4b\x05\xca\xcd\x6e\xed\x85\x44\x91\xc0\x29\x75\x5c\x4e\x66\x33\x89\x93\xed\x2a\xc2\x5d\x19\xa0\xc5\xb4\x0f\x5e\x32\xc8\xa8\xb1\xbc\xe3\x69\x71\x81\x86\xc9\x1d\x60\xed\xff\x24\xa8\x37\x7a\x99\x69\x75\x75\x99\x06\x7d\xd3\x12\x63\xa0\x6d\x6a\x61\x15\x47\x81\xf2\x96\x11\xab\x81\x2f\xf8\x2e\x81\x37\x39\x64\x62\x63\x70\x4c\xd6\x04\x63\x57\xa2\x3c\x04\x5e\x24\x07\xb7\xa8\x95\x08\x25\x93\x91\x31\x4f\x2f\xbe\xe4\x9a\xef\x08\x55\xc6\xe5\xe6\x3d\x91\x2a\x19\xdf\x15\xb1\x1e\xce\x34\xe2\x76\xdc\xb8\x8b\xf2\xf2\xe4\x75\x63\x58\xf3\x4a\x0e\xe3\x95\x2b\x68\x6f\xcd\x17\x57\x8a\x88\x41\x76\xd3\x4e\xa2\x91\x6c\x5d\x9f\xcd\x00\xeb\x9e\x0a\xa9\xf2\xcf\x0f\x16\xe2\x56\x4b\xfd\x28\xb6\xab\x59\x68\xb8\x44\x8f\x06\x83\x20\xe4\x18\x71\x60\xf8\x66\x57\x81\xb1\xe2\xed\x9d\x04\x9e\x1b\x54\xa7\xd7\x27\x20\xff\x9d\x4f\x07\x30\x51\x99\x6a\x9d\xb6\xf0\xc6\x82\x1c\x42\x4f\xa5\x1d"}, {{0x0d,0x1f,0xe9,0xd8,0xb9,0xa2,0xf0,0x4c,0x22,0xbb,0xb0,0xed,0xea,0x38,0x33,0xa0,0xce,0x43,0x33,0x93,0x47,0x53,0x1f,0xdb,0x67,0xed,0x51,0x3a,0x13,0xd3,0x6b,0x39,},{0x67,0xc4,0x9f,0x41,0x0f,0x48,0x53,0x29,0x3d,0x0c,0x4d,0x39,0xf4,0xc1,0xb3,0xd6,0xc6,0x10,0x3c,0x5c,0xfe,0x20,0xa9,0xa5,0x9b,0x53,0x93,0x20,0x43,0x51,0x73,0x69,},{0xb0,0x57,0x25,0xe7,0x37,0x1e,0xd0,0xa9,0x1e,0xbc,0x89,0xf3,0xc3,0x0b,0xaa,0x99,0x18,0x37,0x63,0xed,0xb4,0xce,0x34,0xfe,0x90,0x1a,0xf3,0x73,0x1e,0x00,0x1c,0xc5,0x4f,0x28,0x71,0x18,0x91,0x5e,0x90,0x36,0x5d,0x91,0xac,0xa8,0xfe,0xb1,0x70,0x87,0x69,0xf9,0xf1,0xd6,0xee,0xf5,0xaa,0x11,0x3b,0xee,0x00,0xb5,0xef,0xab,0x27,0x04,},"\x64\x21\x7a\xc8\x41\xfd\x4d\x64\x59\xbf\xc4\xa4\x9b\x88\x01\xd6\x92\x9b\xf1\x9b\x40\x8e\x8a\x53\x79\x0c\xeb\x51\xec\x34\x1f\x9b\x46\xa3\x51\xe8\xc2\xe5\x9d\x88\x7e\x1e\xac\xcb\x91\x42\x31\xcd\xca\x1d\x3e\x5c\x47\xd1\x66\xb4\xcd\xb9\xb5\x8c\x01\x3c\x59\xa3\xbd\x28\x3a\xd1\x0f\x6b\xd6\x2c\x0f\x15\xf7\x64\xce\x14\xf3\xb2\x65\xf5\x37\xc6\x3e\x73\xb6\xc4\xfa\x65\xe0\x6c\xe1\xe1\xf4\xae\x0d\x11\x48\x9d\xd2\x60\x2f\x95\xfc\x40\x2b\x77\x12\x05\x2a\xbc\x84\xbd\xc7\x78\xc1\x9f\x10\x00\x1b\x4e\x0d\x5f\xbe\x46\x30\x90\xe8\x3e\xf4\x38\xfe\x06\x8f\x3b\xb6\xfb\xc2\xc1\x39\xaf\x06\x78\xed\x2a\x11\xfa\xa1\xb9\xe4\x9a\xaa\x46\x20\xab\xfc\x08\x43\x9f\xbf\xe2\xc6\x18\x40\x76\x9e\x5f\xda\x26\x77\xf8\xe2\xf0\xa1\x45\x64\xf9\xf5\x04\x23\x2a\x9f\xc0\xd9\xda\x47\x1e\x67\xfb\xc5\x74\xc3\xd5\x6d\x2a\xeb\x93\x7a\x58\x6e\xd5\x58\x35\x56\x30\x8a\x99\x8e\xb1\xdc\x47\x6a\x01\x4f\x5a\x08\x22\x8d\xbe\xd9\x5a\x12\x08\xbc\x1d\x1f\x5d\x76\xb4\xe8\xd0\xb2\x43\x4b\x99\x5a\xd4\x58\xe4\x29\xee\x61\x42\xa0\xc9\x71\x76\x8c\xc4\x0c\x40\xbc\xb0\x8e\x96\x03\xf0\x96\x11\x47\x44\x71\xb3\x85\x9d\x7f\xd5\x84\x21\x9f\x02\x65\x7b\x43\x0e\x9e\x56\x95\x5b\x34\x67\xac\x56\xff\x2e\xab\x22\xcc\x49\x84\x89\x03\x6a\x57\x41\x20\xe2\xdb\x76\x9a\x3b\x21\x50\x03\x89\x14\x2c\x78\xa8\x7d\x06\x9f\x0e\x25\x76\xca\xfd\xa8\xcd\xdd\x79\x15\xa9\x22\x87\x73\xd2\xac\x9a\x07\x5c\xb3\x87\xf2\xa8\x98\x61\x72\x13\xb2\xcc\x50\x59\xd1\x19\x41\xbc\x4f\xe5\x86\x41\xe7\xc1\x75\x02\x67\xe5\x3e\x99\xc4\x21\xcb\x4c\xf2\x1d\x09\x8c\xa2\xd1\xf4\x16\x44\xf7\x90\x89\x83\xeb\x17\x4a\x23\xa7\x81\xcf\x15\xef\x38\xeb\x91\x16\xed\xa4\x12\x3a\x15\x22\xf5\x3b\x81\xfb\x73\x68\xe8\x07\x5f\xb8\x38\x59\xd2\xcf\x98\xd9\x21\x53\x5a\x70\x9f\xaf\xa9\x87\x3c\x4a\x03\x9a\xae\x68\x2f\x7e\x62\x86\xb8\x99\x25\x7c\x09\x24\x01\x6c\xa5\xbf\x6d\x31\x69\x09\x92\x11\xa9\xa4\xa6\x74\x5c\xdd\x31\x98\xf1\x33\x7f\x60\x92\x82\x27\xce\x3c\x7d\x60\x96\x0b\x53\xde\xdf\x01\x1a\x89\x40\xf5\xc4\x68\x20\x7a\x38\x94\xbb\x08\x72\xb3\x33\xcc\xde\xc9\xd5\xec\xd9\x11\xec\xbb\xb9\x6c\x9b\xc4\xbd\x48\x75\x32\x0e\x4d\x3e\x9c\x02\xd9\xdc\x76\x10\x9e\xc4\x5e\x61\xd1\xcf\x5a\xc7\x29\xf2\xe3\x4a\x96\x47\xb9\x5b\xce\x70\xb0\xc6\x33\x17\x1a\xda\xf0\xdf\xdb\x5a\xfb\xa4\x03\x5b\x3c\xce\x8c\xb7\x14\x1a\xd1\x42\xbb\x7a\xdd\x4f\xc3\xf9\x61\xd4\x2d\x72\x03\x75\x4a\x4e\x31\x32\x21\xd4\x87\x83\x1e\x32\x94\x7d\xa9\x11\x38\xab\x64\x8b\x59\x52\xef\x69\x56\xe2\x7a\xa5\xd2\xc1\x75\x79\x4b\xf8\x1e\xf2\x77\xfa\xa6\xb9\x05\xe1\x45\x02\x86\x68\x87\xd8\x78\x80\x60\x6e\x81\xb2\x7a\xf0\x1b\xb2\x63\xec\xf2\xc5\x82\x05\x85\xea\x6c\xe8\xd8\xb3\x91\xd8\x6f\xce\xda\xdc\xd1\x1f\xdb\xb5\x66\xfd\xf1\x47\xf4\x02\x01\x0f\xc3\x5f\x51\x57\xe0\x36\x14\x6b\x37\x36\xc8\xa4\x33\x59\x12\x7c\x26\x1f\x6b\xf0\xca\xd3\xbd\x8a\x34\xcb\x15\x09\xf7"}, {{0xc1,0x0b,0x5a,0xc6,0x05,0x5a,0x1d,0xdb,0xca,0x28,0x55,0x2e,0x5c,0x72,0xeb,0xd0,0x52,0x78,0xc9,0x22,0x39,0xb2,0xfc,0xd0,0xc1,0x35,0x36,0x51,0xa8,0xe5,0x59,0xa0,},{0xb2,0x18,0x3e,0x1b,0x00,0x81,0x6d,0x29,0x30,0x5f,0x74,0x68,0xe7,0xe4,0x5e,0xed,0x3f,0xd8,0xf2,0x3c,0x15,0xb3,0x05,0xf9,0xfd,0xa9,0x3e,0x81,0x2d,0x65,0xbc,0x27,},{0x8a,0x9a,0x32,0x17,0xfd,0xf0,0x64,0x3a,0xaa,0xa5,0xc8,0xfb,0x2a,0x88,0xa5,0x56,0x39,0x88,0x59,0xb8,0xfe,0xef,0xbc,0xb4,0x8c,0xcd,0x88,0xe5,0x85,0xa1,0x67,0xc9,0x4d,0xbb,0x5c,0x0c,0xad,0x24,0xd1,0x5b,0xca,0xbb,0xc1,0xed,0xb2,0x1f,0x02,0xa8,0xc4,0x57,0xc5,0x61,0x20,0xa3,0x23,0x4a,0xc3,0x35,0x77,0xb9,0xaf,0x2d,0xdc,0x01,},"\x35\x94\x90\x5f\x9e\xa4\x64\x61\x5f\x41\xb8\x7a\xbb\x9d\x16\x73\x37\xf2\x9d\x45\xd9\x7f\x7a\x14\x64\xec\x9f\x2e\xe5\x0f\x90\xf2\xe6\x73\x39\x87\x4d\x3f\x20\x93\xbe\x92\x26\x10\x77\x01\xec\x1a\xab\x94\x1c\x4e\x05\x9f\x1b\xb2\x6c\xe8\x6e\x14\x8d\x1d\x9f\x0d\xa2\xa2\xa0\xf9\x82\x9a\x36\x4f\xb4\xf1\x3f\x58\xb9\x60\xd0\xf8\xd7\x23\x23\x28\x3c\x44\x90\xef\xdf\x57\x87\x86\x45\x89\x0f\xf7\xbc\x50\x65\xda\xd6\xe5\x1d\xd1\xe5\xb9\xa5\x07\x51\x50\x97\x8b\x33\x67\xf1\xba\x84\xe4\x5f\xf1\xf1\x27\x6c\x57\x6e\x4b\xc7\x2b\xe8\xaa\x8e\x40\x5f\xc2\xb2\x7f\x81\x46\xb9\x99\x84\x5f\xaa\xa0\x59\x5d\x3c\xb7\x0e\x5d\x37\x12\xed\x54\xa0\xfb\x3e\x32\x2d\x45\x38\x0b\x5d\xe3\x60\x9b\x96\x7b\x95\x9b\xca\x5a\x58\x3c\xc5\x20\xcd\xcb\x7b\xcb\xb8\x29\xaa\x25\xd7\x93\x20\x95\xec\xb3\x03\x92\x3c\x25\x60\xaf\xc3\xfd\x73\x24\xb7\xb7\xac\xd0\x89\xa9\xf0\x0c\x03\xa7\x3d\x04\x3d\xc0\xcf\x0b\xa0\xd8\x41\x1e\x2b\x1b\x18\xd2\x1d\x2a\x32\xa7\x26\xa5\x30\x59\x14\x0f\x78\x4f\x7c\xed\xf2\xf3\x3c\xec\x66\xfe\x4a\xd5\xcc\x9e\xac\xcb\xe4\xae\x10\x03\x6a\xc3\x52\x3b\xac\x70\x0a\x11\x3a\x98\xb5\x98\xe6\xdf\x03\x04\xc6\xfa\x32\x12\xac\xc0\x4c\x4e\x3c\x7f\x66\x87\x36\x2e\xf8\x6d\x61\x7c\x6d\xd4\x83\xf8\xd8\x0c\xea\x66\xd1\x95\x11\x27\x42\x8a\x61\xc1\xe1\x55\xa6\x85\x0b\xb2\xaf\xb7\xf9\x1c\x82\xd7\x3e\xb2\xb0\x54\x3e\xe8\xfc\x1f\x38\xe1\xdc\xdb\x3c\x50\x3d\xdc\x9b\xa0\x81\x24\x56\xa5\xce\x2e\x11\xd5\x56\x48\x7a\x64\x69\x74\xa7\xbb\xf8\x6e\x80\x6c\x58\xc6\x8c\x42\x69\xa7\xc9\xbb\xca\xc0\xff\xef\x98\x35\xb3\x3d\xc4\x49\xa7\x54\x79\xec\xd2\x3f\x6d\x14\x9c\x1e\x5e\xa8\xb6\x92\x08\xff\x36\xe5\xfb\xd6\x82\x95\x55\x03\x18\xbf\xa0\xd3\xb1\xd6\xc1\xad\x42\x70\xbc\xab\x09\x04\xae\x53\x49\x1f\x9b\x1c\xa5\x02\xe0\x12\xee\xd7\x7c\x42\x7d\x49\xa0\x96\x2f\x10\x55\x12\x5d\xd7\xb5\x37\x33\xd8\x52\x89\x34\xb5\x58\x0d\xd5\xfd\x5b\xbe\x85\x49\x78\xba\xe3\xd2\x5b\xb4\xae\x94\x4e\x90\x65\xe8\xe2\xe0\x79\x46\x51\x8a\x6f\x54\x8e\x36\xe0\x56\xbe\x82\x4d\x9e\x02\xa7\xa3\xea\xad\xd3\x79\x29\xf5\x81\x01\xcb\x18\x53\xbe\x3d\x75\x47\xf5\x8f\x49\xe3\x8b\x01\x8a\x74\x8d\x3f\x19\xc4\x85\x82\xab\xbd\xbe\x95\x3a\x8a\x25\xba\x9d\x36\x5d\xea\x83\x59\x35\x89\x9c\x19\xfb\x0b\x51\x90\x6a\xa9\x72\xc5\xac\x45\xe9\x9c\x40\xb3\xb7\x6e\x35\xd3\x27\xe3\x21\xe8\xae\x23\x06\xa6\xeb\x3d\x8c\xb6\xec\x2f\xa5\x39\x9a\xdd\x19\xea\x00\x28\xa0\x17\x92\xc0\x8e\x27\xc1\x6c\xf4\xf8\x5a\xaa\xae\x72\xf9\x86\xb0\x99\xf9\xeb\xe4\xad\x0b\x25\xd0\x6d\x3d\xe4\x4a\x8b\xfa\x52\x84\x4b\xe4\xa9\x39\x44\x83\x3c\xe2\xad\xd5\x1b\xb5\x54\xb3\x56\xa7\xdc\x49\x74\x8d\xd4\x5a\xe7\xec\x9e\x8d\xb4\x26\xc9\x7a\x25\xda\x5e\xdd\x3b\x62\x1e\x4a\xdb\xde\x48\x19\x7a\x33\x14\xde\x1c\x50\xf4\xd6\x00\x20\x27\xdd\x75\x19\xdd\xe3\xe1\x57\x29\xe4\x86\x95\x5a\xc4\x0d\x9d\x66\x87\x6f\x90\x66\x8c\x68\x9d\x8a\xb5\x98"}, {{0x06,0x1b,0xdd,0xab,0x28,0x0b,0x0f,0xdc,0xb2,0x6b,0xfd,0x9a,0x0f,0xc7,0x21,0xf6,0x8f,0x88,0x34,0x3b,0x5d,0x39,0x83,0xa1,0x6b,0x6d,0xfa,0xa5,0xe7,0x69,0x69,0xf3,},{0x81,0x55,0x78,0xbb,0xa6,0xe7,0x07,0x0e,0xbd,0xec,0xa1,0x17,0x56,0x8b,0xd7,0x7e,0xbf,0xf9,0xe1,0x4c,0xb8,0xbc,0x20,0x0c,0x32,0xbd,0x87,0xdb,0x1f,0xb3,0x7d,0x6c,},{0xb8,0x32,0x97,0xcc,0xdd,0x6d,0x00,0x98,0xeb,0xf5,0xd1,0x32,0xd1,0x74,0xde,0x19,0x58,0x31,0x1a,0x76,0x6b,0xcc,0x4d,0xa1,0x5f,0x86,0x4d,0x80,0x1f,0x38,0xe0,0x9d,0x61,0x3e,0x7a,0xa8,0xc3,0x36,0x30,0x27,0x35,0xd7,0x5b,0xe4,0x16,0x6d,0x73,0xb0,0x18,0x4b,0x0e,0x0b,0xc5,0xef,0x39,0xed,0xbc,0xcb,0x6e,0x0e,0x61,0xaf,0xeb,0x0c,},"\xee\x76\xb4\x0c\xd4\x29\xea\xc7\xbc\x12\x83\x9c\xa2\xf7\xcd\x31\xf1\xe0\x09\x8a\x39\xc5\xfc\x19\x80\x5b\xe0\x33\x1f\x44\x79\x9e\x31\x8d\x12\x57\x1f\x06\xe2\x99\x37\x53\xa3\x68\x5c\xd2\xa9\x6b\x23\x01\xe2\x00\x24\x20\x9a\xdc\x5a\xdf\x74\x79\xff\x90\xc4\x77\xc3\x69\x5a\xbb\x99\xbd\x28\x57\x9d\xbc\x78\x31\xa1\x92\xbe\xed\x0c\xe1\x7b\x03\x8b\x20\x76\x48\x00\x65\x3a\xf7\xaf\x02\x4e\x2a\x10\x4e\xd0\xf3\xe5\x2d\x4b\xbd\x3e\x10\x9c\xf1\x26\x29\x1f\x49\xb0\xa2\x1b\xe4\x33\xc1\xc5\xa2\x58\x9e\xa5\x72\x99\x7f\x63\xd2\xbb\x39\x72\xd5\x32\xbe\x35\xa0\x47\x1e\xf0\x57\x3d\x79\x5c\x07\x2b\x6a\x86\x85\xb9\x5e\x47\xb0\x9e\xa9\xf4\x75\xd9\x3b\xf1\x2b\xbd\x77\xb7\xd2\xbf\x5d\x5b\xdd\xf0\xae\x02\x37\x53\x71\xd1\xd7\x99\xea\x92\x04\xbe\x38\x9e\x6a\x8e\x5d\xee\xdc\xd4\x92\x02\xe9\x2d\xf7\xc3\xe7\x61\xf9\x2e\xf8\xd7\x9f\xa7\x38\xd2\xc5\xbc\x28\x0e\xd3\x28\x79\x83\x2f\xf2\xb0\x26\x42\x45\x89\xcd\xbd\x52\xd1\x5b\x60\xf2\xaa\x35\x26\xb8\x98\x84\x9a\x34\xa8\x5f\xf1\xc4\x7d\xc6\x55\x4b\x85\xac\x76\xaa\x79\x35\xcb\xf3\xf7\xbc\x80\xad\x00\x91\x92\xa8\x75\xca\x20\x9b\x40\xfe\xb0\x47\xcc\x44\x69\x68\xf9\x70\xda\x47\xb8\xcd\x67\xda\x7e\xb4\xe5\x4a\x0e\x5a\xb2\x0c\xb3\x5b\xc6\xfb\x7f\x13\x30\x7c\xe6\x7e\xb6\x20\x4a\x67\xce\x9b\xb1\xd1\x39\xc1\xb4\xbd\x5d\xbe\xd5\x80\x10\xc8\x7b\xf8\x31\xe6\x52\x2e\xe1\x82\xda\xd9\x45\x80\x4b\x76\x7c\x4d\xf2\x55\x4f\x15\xb9\xe9\xaf\xd2\x59\x9e\xf2\x58\xc6\x7a\x22\xca\xeb\x92\xa5\x79\x88\x00\x6b\xbc\x72\xc1\x04\xfa\xc7\xe5\x41\x3c\xd3\xd3\xb8\x02\xc8\x3e\x63\x9e\xaf\xe2\x12\xa3\x8b\xb7\xef\x77\x9a\xf1\xa9\x4e\xe1\x37\xf6\xc6\x06\x67\xbc\x48\xf2\x7b\xf4\xa2\x22\x41\xbc\x44\xbb\x60\x33\x83\x62\x39\xbd\x6e\xaf\x3e\x2e\x22\x31\x87\x84\x1e\x46\x41\xb0\xf4\xe9\xff\x8d\x5a\x41\xdd\xbe\xab\xb4\x13\x8f\x6b\x58\x5a\xce\x0f\xb6\xb5\x3d\xc3\xc9\xed\xc0\x37\x3b\x60\x47\xf2\x7d\x83\x5e\x8e\x24\x66\x44\xfd\x83\x2c\xcf\xe0\xdf\x25\xc3\xd7\xda\x18\x7c\x9f\xa0\x54\x20\xd4\x34\x55\xf2\xd0\x8b\x57\x19\x29\x38\x6b\x59\xc6\xe0\xe1\x0a\x35\x60\x1d\xa8\x99\xb1\xb4\xdc\x3d\x95\xb6\x7d\xd9\xa8\x38\x18\xb0\xa3\x18\xbf\xdd\xa0\x64\x64\xb4\xa4\x2d\x3c\xb9\x85\xf3\x0e\xc9\x7d\x6a\x2a\xf1\x32\x91\x15\x5d\x60\xce\xc5\x7c\xbd\x58\xd5\xcf\xcb\x35\xc1\x85\x35\xe8\xd2\x99\xb5\xb0\x07\x59\x08\x92\xea\x94\x9d\x1b\x13\x7a\x62\xb3\x9a\x43\x6c\xd7\xe5\xb9\xf8\xd1\xb6\x93\x8d\xba\xa6\x2c\x22\x68\xd4\x59\xc6\x22\x0a\x3e\x6f\xcb\xf8\x0b\xa0\x11\x8a\xcd\x23\x42\x56\x3f\xbd\xbc\x1f\x7c\x9d\xba\x7e\xa2\xc0\x72\xaf\xc8\xae\x21\x28\xe3\xeb\xca\x06\x44\xff\xd8\x16\x3e\x80\xa1\xa5\x57\xd9\xd3\x90\x34\xcc\xd9\xdb\xd1\x2c\x88\x55\xa6\xf9\x16\x5b\x08\x01\x83\x9c\xf6\xe0\x7a\x9f\xba\x4c\x64\xd9\xc0\x99\xe1\x54\x10\xe2\x90\xe6\x77\x03\x1b\x65\xcf\x7d\xeb\x00\x79\xbd\xad\xc5\x73\xcc\x05\x6d\x76\x66\xd9\x5d\x03\x3a\x0b\x6b\xdb\xa7\xec"}, {{0x2c,0xab,0x5b,0xf5,0x5f,0xfa,0x91,0x4e,0x9a,0xd0,0x76,0x22,0x19,0x0d,0x34,0x3e,0xc5,0x5c,0x13,0xcd,0x91,0xb3,0x88,0xcb,0x75,0x00,0xff,0xe0,0x6d,0xf7,0xc1,0x80,},{0xb6,0x1e,0x43,0x2b,0xb9,0x7c,0xba,0xe3,0x88,0xa2,0x57,0x8a,0x74,0x84,0x99,0x8e,0x00,0xe9,0xad,0x3d,0xdf,0xd6,0xca,0xb8,0xd3,0xa5,0xfc,0x5b,0xa0,0x43,0x07,0xc8,},{0x4c,0xf0,0x8f,0x4f,0xab,0xbd,0x06,0xdc,0xcb,0xcc,0xe2,0xa7,0xa5,0x94,0x1f,0xe9,0xaf,0xdd,0xc4,0xd2,0xd0,0xbc,0x80,0x80,0x2e,0x93,0xb1,0x2c,0xb1,0x35,0xd3,0xac,0xf6,0x51,0x1e,0x0f,0xe4,0x11,0x3c,0x5e,0x3c,0x55,0x41,0xb2,0x7d,0x3a,0x21,0x50,0xa7,0x57,0x74,0x2a,0xc6,0x5f,0x95,0xa9,0xce,0x66,0x73,0xff,0x0c,0xd2,0x1c,0x0f,},"\x2c\x2d\x04\xdc\x3a\xd1\x98\x23\x59\xec\xd5\xbc\x3e\xe0\x35\xf3\x49\x8e\xed\xff\x61\x04\xa9\x3c\x60\x2a\xf2\x17\x9a\xeb\x2c\xb1\xf4\x1c\x5c\xdb\x0a\x77\xb1\x24\xf9\x46\xaa\x8a\x82\x4a\xa3\x07\x6c\x2e\x1a\xcf\xd4\x8f\x68\x07\x0b\x26\x27\x6a\x65\x6b\x4a\x47\x58\xab\x15\x1a\x6a\x9c\x41\xbd\x74\xe0\x9b\xbd\x9a\xdc\xce\x1e\x87\xa0\xa8\x0d\x17\xfd\x92\xe8\x5e\x4b\xda\x47\x2c\x98\x8b\x6b\xb1\x18\x3b\x7e\xe5\x9a\x09\xd8\x05\x70\x46\x6d\xb9\x0d\xd3\x74\x95\x79\xc4\xeb\x19\xab\x75\xfc\x15\x2e\xcd\xcd\x68\xcd\x10\x78\xef\x06\xe5\x93\xc7\x35\x16\xfa\x82\x91\x48\x1a\x66\x7d\x3f\x95\xbf\xeb\x14\x4b\xab\x59\xd6\xdd\xc7\x3a\x27\x95\xc1\x01\x7e\x09\x53\x6b\x31\x62\xe4\xbc\x58\xf8\xea\xd3\x89\x57\x01\x8c\xfe\xc7\x2b\xad\xbf\x22\x81\x9a\xb0\xb4\x06\xc6\x47\x30\xfc\x73\xfd\x9e\xe6\x1f\x74\x18\x7e\xda\x91\xed\x4e\x79\x93\xe6\x68\x84\xaf\x43\xef\x4c\x6b\xf7\xf7\xc3\x79\xe8\xf0\xf6\x3d\xcb\x80\x41\xe2\x6b\x8b\x82\x92\xb6\xb6\xd1\x90\xe4\xad\xf4\x30\xfa\x82\xdd\x74\xc5\x73\x85\xb9\x19\xc4\x46\xdb\x37\xb5\xe8\x76\x7e\x4a\x0c\x95\x01\x3b\xe8\x9b\x2b\xc4\xe9\xfd\x62\x75\x4a\x84\x44\x18\x40\x09\x68\xae\xd2\xdd\x32\x8d\x7b\x1d\xc9\x1e\x1a\x2b\x30\x09\xdc\x7a\xd1\x40\xa0\x68\x6f\x67\x31\x68\xa6\x0e\x88\xd8\x0c\x52\x0f\xc2\xdc\xfc\x56\xca\x9d\x4b\x0c\x88\x85\x90\x99\x23\x07\x14\xde\xc8\x3d\x26\xb4\x63\x05\x54\xdc\xb9\xc4\x90\x18\x95\xf7\x8f\x38\x34\xb0\x97\x66\xb6\x7a\x46\x5d\xe8\xc9\x49\x00\x65\xbf\x56\x83\x39\x24\x33\x99\xfd\xc9\xd5\x10\x03\x24\x66\x7c\x5a\xb2\x8f\x35\xc0\x0f\x61\x25\x63\x8e\x61\xda\xb7\x0d\x1e\xec\x48\x95\x1d\xe0\xfb\x3f\x7b\x23\xd3\xcd\x98\x24\x37\xc6\x34\x73\x41\x5b\xef\x37\x4a\x66\x32\x96\xf2\x98\x6b\x1a\xe9\x57\x9b\x9f\xfc\xe7\x1e\xc3\x5e\xec\xa1\x16\xd1\x94\xf8\xfb\xa9\xa4\x5a\x91\xba\xe2\x7a\xc4\x55\xdb\x71\xa6\xb0\x1a\x72\x9d\x0c\x13\x5f\xcd\xcb\xc2\x3e\x50\x4a\x29\x43\xc0\x0a\xa4\x20\x70\x51\x9d\x9c\xd7\x7a\xe6\x75\x4f\x31\xeb\x46\xa3\xe5\xbe\x9e\xeb\x3f\xc8\xd3\x1f\xf1\x82\xda\x9b\x08\x7b\xe3\x46\x2c\x84\x59\x12\x6e\x86\x29\x09\x23\x2f\xd5\xf2\xd8\x9c\x01\x81\x59\x57\x61\x1e\x6a\xe7\xca\xa9\x8b\x60\x53\x77\x6a\x77\x15\xc2\xf9\x3c\xcf\x03\x08\x87\x03\x0c\x56\xc2\xb8\x22\x6d\xae\x29\x77\x99\x5a\x6d\x3f\x1e\x9d\x79\x11\xa9\xc9\xd2\xa3\x03\xf0\xe0\x1f\x32\x33\x8e\xfd\xaf\x8e\xe6\x3f\xc4\x1b\x25\x39\x9c\xff\xd0\xb3\x5f\x7e\xe5\x67\x6b\xd8\xfd\x3d\xa2\xcb\xee\x4a\xe2\xea\x98\x08\xd7\xe7\x35\x83\xd9\x94\x33\x99\x31\x46\x67\x4a\x40\x40\xf4\x2f\x63\xd1\xb3\x13\x5c\xc7\x97\xa8\xd8\xf0\xb8\x85\x73\xa3\x28\x90\x69\x6c\xac\x94\x39\xd1\xe1\x5d\x19\x6d\x90\x90\xb6\x2b\x6d\xb7\xe6\x3c\x96\x47\x2d\x94\x6e\x66\x8c\xbd\xa1\xf4\xdb\x88\x93\x00\xcd\xcc\x25\xe8\x4c\x9f\x38\x57\xd1\xd9\xe5\x32\x41\xcf\x62\x5f\x39\x09\xaf\x1c\x8a\xaf\xf4\x30\x9f\x68\xf6\x54\xb7\xa1\x5b\x67\x71\x1c\x5b\x7f\x9d\xe7\x67\x75"}, {{0xdd,0x7b,0x59,0xa3,0x3d,0x97,0x0b,0xef,0x62,0xe0,0xe2,0x1a,0x7b,0x6e,0x4c,0x30,0x96,0x06,0x86,0xf1,0x7f,0x49,0xaf,0xdb,0x4a,0x9f,0x4e,0x80,0x8e,0x35,0x5c,0x7f,},{0x53,0xa0,0xe5,0x72,0x77,0xd9,0xbb,0xee,0xcf,0x99,0xc4,0xd1,0x38,0xfd,0x66,0xfa,0xfc,0xae,0xc7,0xbc,0x5f,0x56,0x7f,0x83,0x20,0x80,0x0c,0x4e,0x58,0x4f,0xf8,0x2e,},{0x87,0x29,0x4d,0x22,0xd4,0xad,0x0d,0x08,0x14,0xe2,0xd6,0xd5,0xfa,0xf5,0x57,0x49,0xe9,0xb3,0x98,0x03,0xb4,0xd4,0xb7,0x87,0x9e,0x60,0xb7,0x77,0xc1,0xfc,0x41,0x58,0x4f,0xe1,0x51,0x35,0xba,0x11,0x23,0xff,0x5f,0x20,0x0d,0xb3,0x5a,0x34,0x68,0xdd,0x4d,0x58,0xda,0xd7,0x7b,0xd9,0x6e,0xe2,0xb8,0x88,0xa5,0xa8,0xb1,0x8c,0x32,0x04,},"\x75\x58\x03\x67\x93\x05\x18\x16\x8b\x0a\x76\x4d\x09\x58\xbe\xc4\xfc\x46\xcf\x59\x19\x99\xeb\x37\x37\xe4\x2a\x02\xea\x72\xd2\x10\xda\xad\x53\xe5\x4a\x7c\x2c\x13\x4a\x6d\x47\x83\x37\xd2\x63\x33\x68\x54\x81\x70\xed\xef\x0d\x85\x17\x9f\x30\x23\xe1\x50\x38\x68\xa6\xe5\xe2\x77\x5e\x41\x2a\xc0\x5f\x05\x89\xd4\x2a\x37\x7e\x75\xaa\x6b\x8f\x52\x20\xa7\x69\x9a\xe8\xaf\xf0\x10\x94\xec\x46\x9d\x63\x61\xd3\xe8\xf3\x86\x15\xed\xcd\xa4\xd2\xd5\x28\x9a\xcf\x73\xdb\x64\x56\x98\x57\x80\xc9\x2e\x07\xf6\x2c\x77\xa9\x09\xfb\x6e\xf5\x98\x82\x20\x62\xbd\x57\x2b\xf7\x05\x8d\xcb\x83\x5e\xf3\x44\x3d\x3e\x47\xb5\xc6\x03\xd9\x27\x36\xdd\x1d\xf2\x6b\xe4\xb9\x28\x3b\x76\xe3\x21\xd5\x5c\xe2\xb6\x38\xcd\xe2\x25\x77\xca\x59\xc9\x63\xc2\x47\x95\x56\xc5\x75\xcc\xb0\xd6\xd1\x8c\x80\x4e\x2e\xb0\x1f\xf5\x35\x81\xeb\x04\x0f\xfd\x2c\xc4\x67\x60\x73\x7a\x74\x67\x2e\xa6\xbf\x78\x05\x8a\x6a\x0a\x1f\x5e\xbf\x56\xde\xcb\xf9\x4b\x54\xaf\xb2\x3c\x11\xd3\x41\x79\xbf\x09\x76\xb4\x15\x80\x17\xd4\x07\xc9\x5a\x40\x1f\xa6\xf9\x62\x4d\x77\x13\x5e\xae\x81\x41\xeb\xea\x9f\x35\xd5\xf5\x1b\x3d\xed\x99\x5c\x7f\x70\xc0\x25\xb0\x94\xad\xef\x2b\x07\x1f\x97\x11\x55\xd7\x79\x6d\x61\x3a\x55\x0d\x09\xe7\xf4\xdf\xc3\x45\x17\xb3\xf8\xfa\x43\x93\x28\x6a\x2b\x22\x80\x17\xda\xf2\xe0\x15\x38\x7e\x13\x52\x7f\x63\x66\x1d\x3c\x13\xe7\x8e\x90\xfb\x29\x55\xee\xe3\x45\x73\x91\x19\xb7\x91\xf0\x5b\x07\xc8\xf4\x2a\x43\x6e\xfc\xad\x1e\xc5\xea\x10\xf3\x08\xf8\xe2\x3c\xa9\x8b\xc6\x5a\x5f\xd9\x39\x3e\xfa\xaf\xe5\xcd\xef\xba\x81\x05\x81\x70\xcc\x54\x93\xc0\x0c\xed\xf2\x54\x09\x74\x35\xd2\xe2\xfd\xe5\x5f\x86\x6b\xb8\x2d\xbd\xfb\x91\x54\x34\x49\x74\x86\x63\x59\x16\x7b\x46\x6c\xaa\x90\x9b\x91\x53\x0c\x9c\x7e\xe8\xc5\x3f\xa9\x01\x64\xbb\xd0\xb1\xfa\xdb\xdc\xd0\x81\x27\xf1\x9b\xe5\x03\x30\x71\x51\x8d\x3c\xf1\x0a\xe6\xbd\x6f\x98\x27\xe1\x20\x6f\x5e\xc0\x95\xc1\x98\x61\x70\xe8\xd5\xd8\xe7\x2e\x57\xd4\x22\x87\x01\xdf\x2a\x48\xc9\x54\x87\x30\x56\xcf\xdf\xba\xaf\xb1\x0e\x46\xa0\xc1\xf1\x44\xb1\xa0\xea\xcd\xd2\xcb\x66\xbb\x91\x2a\xc4\x71\x78\x7d\xab\xe4\x83\x53\x85\x91\x20\xb0\x34\x03\x56\x7c\x41\x5d\xdb\x88\xfc\x0d\x7f\xba\x40\x69\xbb\xfe\xf4\x06\xee\xd7\x24\xa1\x1a\xbc\x04\x1e\x8e\x7b\xeb\x66\x3d\x0d\xc9\x9d\xce\xf3\xac\x6a\x14\x90\x07\xb4\x2d\xd1\xf2\x2a\x77\xdd\x52\x90\x18\x14\x32\x51\x72\x22\x4a\x27\x78\xf3\x66\xfb\x9e\xb0\x2c\x81\x2b\x84\x2a\x42\x84\x25\x61\xc6\x8f\x2a\xc2\x31\xc2\x6c\xe9\xe8\xb1\x9a\xe9\x1e\xbf\xad\x3c\x0e\x9f\x66\x36\x3a\x13\xec\xd8\xb8\x97\xa3\xd0\x0a\x26\xd2\x57\x64\x8d\x56\xc6\x74\x74\x41\xca\x1c\x6e\xe9\x9f\x08\xdd\xad\x25\xd1\x16\xdf\xad\xab\x03\x83\x00\x0d\x3d\x72\x25\xcf\x2e\xff\x70\x76\xb2\xad\xab\x95\x22\x29\x25\x55\xf3\x19\x32\x06\x78\x60\x00\xd4\x2c\xa3\x4d\x70\x8d\xc0\x42\x84\xa9\x4d\x17\x4c\xc9\x2f\x10\x2e\xfd\xdf\x31\x48\xc2\x99\x69\x16\xd4"}, {{0xd8,0x80,0xd2,0xfb,0x06,0x26,0x2f,0x57,0xab,0x87,0x78,0xe3,0x3d,0x16,0xb4,0x73,0x06,0x09,0x78,0xa6,0x54,0x9c,0xdb,0xcd,0x55,0x86,0xba,0x81,0x05,0xf5,0xac,0xa8,},{0x0d,0xe4,0x86,0xd2,0x11,0x5f,0xaf,0x2d,0x54,0x72,0x66,0x77,0x2e,0x43,0x0f,0xd9,0x72,0x7b,0xdc,0xac,0xe6,0xec,0xbf,0x2f,0xe2,0x3a,0xb6,0x0f,0x7b,0x52,0x54,0xb1,},{0x4c,0x00,0xa7,0x16,0x68,0xd3,0x21,0x3c,0x29,0xc7,0x04,0x1c,0x5a,0x03,0x7e,0xdf,0x13,0xc6,0x51,0x4b,0xd0,0xeb,0xc8,0x80,0xc9,0x09,0xca,0xff,0x15,0x06,0xa4,0x5d,0x27,0x80,0x9f,0xb7,0x4e,0x66,0x02,0xea,0x2a,0xad,0x0f,0x84,0x28,0x31,0xb7,0x4f,0xb3,0xd6,0x90,0x0c,0xcc,0x52,0x06,0x52,0xda,0x28,0x36,0x8f,0xd9,0x0c,0xa3,0x0e,},"\x11\x47\x43\xe8\x2a\x09\x93\xce\xc9\x70\x50\x67\xab\xd7\x7c\x16\x8b\x53\x67\x7e\xde\x5c\x15\x9f\xad\x36\xf0\x6f\xc1\xa1\x4a\xcd\x77\xf8\x83\x79\x9e\xd9\x88\x3f\x99\x15\xae\xa6\x38\xec\x17\x41\xf3\xf4\x21\x58\x55\xfb\x5b\x07\xdf\x37\x93\xbb\xe5\xb5\x68\xeb\x35\x94\x39\x1a\x9e\xf5\x72\x7f\xab\x93\xe5\x74\x69\xb3\x7d\xe1\x25\xb1\xe9\xf2\xe6\xfe\x2c\x3d\x1a\x10\xec\xf8\x7b\x6c\x0a\x66\x5c\x6d\x46\x0a\x17\x0e\xef\xb9\xbf\x71\x6c\xd8\xfa\xea\x97\x64\xf5\x79\xff\x34\xeb\xfa\x9c\x4c\xfb\x34\x70\x6d\x8d\xd7\xc9\xeb\x1d\x10\xb2\xdf\x46\x0a\x46\xbb\x57\x89\x43\x0b\xf4\x49\x15\x8b\x58\x24\xf2\xa3\xa7\xb9\x18\xb3\x3a\xcf\x2d\x9e\xbe\x90\x21\x6d\x1b\x7c\xbf\x4a\xf7\x70\xc5\xdb\x95\xfc\x62\xff\x3a\x3c\x38\x5c\x3a\x82\x17\x85\x3b\x73\x46\x63\x4a\xaf\x30\x60\x72\x88\xdb\x0c\x48\x3b\xd4\xc2\x22\xeb\x33\x2c\xb8\x9d\xc4\xa2\x17\xe6\x33\x4a\x26\x84\x13\xa3\x90\xbb\x37\x1a\xec\x35\x5f\xbe\x4c\x73\x6f\x7d\xa7\x5f\x9c\x88\x75\x41\xa2\xb7\xd0\xda\xc0\x18\xb6\x13\x8f\x02\x1e\x77\x26\x6d\xde\xce\x84\x68\x45\x2a\xda\x39\xf5\xe6\x3d\x02\x09\xb9\xd6\xda\xbf\x97\x54\x13\x25\x6d\xca\xa1\x5a\xc1\x4b\x60\x68\xe1\x77\x05\x6c\x7b\xf0\xf0\xf7\xc8\x84\xa3\x40\x20\x32\x29\x8c\xd5\x59\xa6\x31\x20\x39\x40\x06\x32\x32\x7f\x9c\x0e\x76\x3e\x52\x79\x8c\xb1\x77\xda\x44\x75\xe4\xb2\x40\x5c\x15\x7c\xa4\x27\x74\x11\x08\xd3\x3e\xd0\xb7\xa3\xf5\x34\x38\xce\x6b\x72\x5c\x6d\xd5\x81\x4a\xf5\x1c\xfa\x45\xdb\xce\xd5\x57\xf7\x26\xdb\x13\x0d\x55\xcd\xe7\x53\x3b\xc2\x09\x2d\x6b\x69\x9c\x2c\x87\x0a\xf2\x82\x73\x1e\x18\xd6\x51\xae\x85\xb3\xdb\x4b\xa0\x28\x53\xf8\xc8\x7f\xd5\xe3\xab\x69\xbc\x57\xb0\x8b\x81\xf8\x3c\x23\x9c\xcf\x22\xe8\x17\xe2\xad\xa4\xd0\xad\x14\x48\x7e\xd1\x46\x12\xc8\xb0\x97\x3e\xc0\x65\x0a\x55\xf6\xbf\x9a\xf4\xae\x92\x56\xad\x35\x46\xa3\xf6\x7d\xd3\x5d\x98\x7e\xf2\x19\x09\xa9\x4c\x50\xf0\xef\x06\x40\xe7\x55\xb1\xc4\xe1\xa0\x12\xaf\x0d\x31\x76\x6e\xeb\x5d\xf3\x1c\xd1\x04\xc6\x4e\xb6\x2e\xb4\xef\xb1\x39\xcf\x30\x57\x69\x40\x1d\x21\x3f\x96\xa4\x88\xd5\xee\x7e\x3c\xe3\x2b\x01\x92\xee\x8f\x08\x31\xbf\xbe\x8f\xe9\x5d\xe9\x56\x88\x6b\x52\x4d\x33\x19\xb7\x3f\xd5\x6d\xc6\x0e\x9f\x1c\x72\xd7\x81\x55\xa9\x7c\x6f\x43\x69\x7b\x20\x46\x6b\x3e\x7a\xeb\xd3\x57\xb9\x16\x96\xe7\x34\x8f\x45\x99\xb3\x4f\x35\x91\xed\xdf\xce\x2a\x7b\xd8\x49\xab\x16\xf7\xb4\x3e\xbb\x16\xe2\x3d\x6f\x52\x10\xef\xa3\x0a\xb3\xba\x8d\x32\xc4\x06\x62\xb8\x66\x2f\xd9\x11\x54\x4b\xc2\x45\x8c\x65\x69\xef\x75\xa9\xb9\xdf\x6a\x0f\x6d\x80\xd6\x58\xba\x86\xb2\x41\xca\x19\xce\x9a\x6f\xcf\x01\xd3\xda\xa9\x5a\xfb\x59\xc3\xd8\x9a\x18\xb9\x48\x62\x13\x94\x32\x7f\xc5\xe9\x20\xa7\x5f\x98\xf5\xe2\xb3\xd6\xc9\x5f\xd8\x52\xad\xf5\x67\xb6\xd3\x7c\x54\xd2\x97\x08\x56\xa5\x99\xf7\x49\xe2\xc5\x5d\xac\x7c\x23\xe3\xfb\x1a\x63\xbb\x4c\xc4\x7b\x8b\x94\xf3\xd5\x89\xac\x4b\xee\xf0\xaa\xd4\xe6\x29\x2f"}, {{0x58,0x58,0x71,0x94,0x1c,0xc2,0x82,0xe3,0x33,0xd5,0x7b,0xbf,0xc3,0xd4,0xae,0xda,0x86,0x2c,0xfa,0x0a,0x37,0x50,0x30,0xcd,0x59,0x4b,0x36,0x92,0x84,0x8c,0x5f,0x00,},{0x4f,0x34,0x38,0x16,0xcd,0x48,0x05,0x0b,0x67,0x8d,0x3a,0xdf,0x70,0x00,0x88,0x77,0xc9,0xfc,0xf5,0xcb,0x66,0x2c,0xc4,0xad,0x2b,0x93,0x86,0x4c,0x02,0x09,0x07,0x07,},{0x29,0x88,0x56,0xe5,0x70,0x18,0x8a,0xef,0xca,0xd8,0x1b,0xb9,0x70,0xf0,0x76,0x96,0x57,0x70,0xc2,0x67,0x62,0xfe,0x29,0xe6,0x55,0x4d,0xc7,0xaf,0xcd,0xb8,0x01,0x72,0x3b,0xf6,0xc7,0x63,0xb4,0xcc,0xd6,0x5f,0x4e,0x15,0xd7,0xd8,0xea,0x38,0xfc,0xf6,0x7e,0xa9,0xd2,0x85,0x90,0xc7,0x92,0x55,0xc1,0xcf,0xeb,0xa7,0xb5,0xe4,0x5a,0x00,},"\x65\x1c\x10\x1b\x3e\x2d\xfe\xf0\x78\x3c\xe9\xf6\x1b\xd0\xa8\xbd\xc9\x30\x7a\xc0\x48\x8b\x9d\xd7\x0c\xd9\x0a\x7e\xd8\xf1\x79\xa7\x89\x35\x55\x62\x95\xb9\x1c\xc2\xb9\x72\x11\xe3\xb9\x81\xb8\xda\xfc\xb3\xd0\x6b\x76\xd0\xb6\xed\xa7\xfc\x61\x94\x5c\x0e\xe2\x65\x2c\x5a\xc4\x54\x25\x64\x96\xcb\x82\xf9\x8c\xc1\xcc\x92\xd8\x18\x93\xb1\x08\x2b\x31\xb4\x7e\x6d\x22\xa2\xde\x60\x9d\xe4\xce\x8d\x7c\xc4\xf4\xa1\x52\xc4\x7f\x41\x0d\x7f\xc3\x7d\x38\xcc\xd6\x29\xa4\xb3\x3e\x62\x21\x89\x60\x81\x79\x7d\x07\x53\xdd\x4f\xaa\x8a\x8b\x44\xd6\xc4\x67\x71\x66\xdf\xb4\xd5\x21\x54\x46\x36\x0a\x3c\x28\xd8\xf6\x8e\x38\xab\x54\x60\x8b\x98\x82\x1b\x83\xc1\x87\xb5\x39\x3a\xd8\x74\xa7\x6f\x4f\x5d\x72\x94\x93\xa1\xfd\x74\xcc\x77\x19\xca\xea\x99\x1d\x22\x9c\x5d\x0c\x8c\x4c\x5f\x89\xd8\xe4\x34\x5f\x4f\x52\x21\x43\x13\x41\x0b\x8c\x06\xb3\x31\x5f\x45\xed\x0c\x2f\x91\x38\xab\x96\x6a\xec\x0a\x64\x5b\x6d\xba\x76\x38\x0a\x53\x91\x23\xe0\xf3\x3b\x97\xf3\xd0\x60\x39\x4a\x30\x53\x58\x1f\xfd\xef\x3e\x6d\x36\x53\x11\x66\xb5\x53\xa9\xdd\xe0\x31\x05\xc0\x4a\xf6\x97\xd9\x5e\x95\x21\x7f\xd6\xdc\x96\x8b\xf3\xb4\x48\xd5\xf3\xa8\xe4\xf5\xae\x7e\xdc\x30\xec\x78\xb1\xae\xa4\xf0\xdb\x18\x9a\x94\x9a\x12\x21\x38\xcd\xfb\x5f\x96\x93\xdb\x00\x4b\xae\xd1\xa4\x21\xdc\x44\x12\x2f\x32\x72\x87\xf7\x27\xcf\x98\x9f\xca\xe3\xcf\x3b\xe3\xe3\xdd\x9b\x9f\x53\x50\x2c\xf5\xd9\xfb\x18\x6d\xe7\x91\xd3\x10\xd1\x22\x86\x9c\x9f\xc3\xb6\x95\xde\xc1\x60\x74\x77\xf3\xe1\x49\xe5\x2b\x63\xcf\xdf\xb0\xd9\x83\xe8\x9a\xf2\xf7\x5a\x8f\x48\x98\x43\xec\x05\xc5\xea\x5f\x0e\x72\x1a\xca\xb3\x87\xc6\x80\x25\xf2\x0a\xbe\x0d\x27\xb4\xce\x29\xf4\xa6\x4f\xb7\xf8\xe8\xa3\x32\x87\x3d\x3e\xd1\x21\xfb\x49\x34\x14\xb8\xcb\x0c\x00\xad\x3a\xb6\x16\xc5\xbe\x52\x41\x47\x1a\xde\xe9\xf8\xf4\x69\x74\xea\xe8\x4a\x4a\x8c\xe6\xfa\xbb\x7f\x5d\x9a\x6b\x75\xa7\xe6\x70\x45\x6f\xcd\xcd\x1d\x98\x2e\x8f\x82\x7a\x4b\xbb\x69\xde\xc7\xe3\x05\x3d\xfe\x83\x5b\x70\x30\x1b\x7b\x76\x3f\x00\x04\xbc\x90\x6e\x14\x55\x42\xf4\x87\xb4\xdb\xa2\xed\x56\x1b\xd1\xa2\x03\x06\x23\x6a\xf4\xb3\x6e\x40\x68\xe8\xc0\x07\xb9\x45\x4f\x87\x41\xa5\xf8\xf0\x79\xec\x1d\xb8\x83\x5e\xb6\x54\x42\x90\xd6\xad\xb5\x2a\x70\xd7\x67\x5d\x85\xdf\x4a\x9a\x12\x55\xbf\xd9\x36\xc3\x31\xfe\x51\xc0\x97\x7d\x12\x4b\x5a\x50\x6d\x29\xc6\xee\xc3\x3c\xaa\x25\xd8\xeb\x28\x95\x2d\x6f\xfb\x9d\x6e\x3d\xa8\x90\x38\x2d\x88\x87\x96\xd3\x74\x60\x7f\x66\x43\xb8\x9e\x73\x26\xd9\xed\xc4\x9a\x0f\x53\xbd\xcb\x8c\xc7\x6f\xfd\x39\x3a\x77\x06\x52\x2d\x04\x17\x00\x36\xcc\xb6\x63\x30\xdb\xac\x9d\xa7\xe6\x16\x8c\xaa\x88\xcb\x62\x18\x1e\x55\xa7\xb6\xd5\x21\xa2\x11\x5e\x23\xe2\x02\xee\x24\x80\xb5\x87\xbe\x45\x01\x44\x79\x79\xa8\xd7\x36\xf9\x01\x2e\xcf\x00\xe6\x7b\x31\xe8\x10\x4f\x6e\x7d\xf0\x8a\x96\x83\xcd\xc8\x9c\x03\xa4\xe3\x7e\xe2\x29\x28\xd4\x5f\xa1\x90\x94\xe0\xd6\xe7\xb4\x0b"}, {{0x05,0x88,0xac,0xd4,0xe0,0x9b,0xa9,0x02,0x74,0xc8,0xf3,0xd1,0x57,0x5b,0x2b,0xf3,0x64,0xa7,0x76,0x88,0x4a,0x9a,0xeb,0x41,0x03,0x41,0x5e,0x16,0x3b,0xa0,0xbf,0x81,},{0x3e,0xca,0xe6,0x97,0xb4,0x25,0xd8,0x7e,0x34,0xa1,0xd9,0x44,0x09,0x8e,0x3d,0x32,0xe2,0xc1,0xec,0x56,0xc3,0x62,0x7d,0xf8,0x0b,0xa2,0xb8,0xa4,0x3d,0xdc,0x19,0x03,},{0xa1,0x11,0xb9,0x70,0x6d,0x24,0x2c,0xd3,0x6d,0x6e,0x87,0x41,0xcb,0xb0,0x97,0xb9,0xe2,0xff,0xfa,0x40,0xf4,0x3f,0xd6,0xf2,0xd3,0xd9,0x16,0x93,0x66,0x73,0x32,0xb5,0xf2,0xdb,0x5e,0xe3,0xea,0x20,0xb8,0x32,0x91,0xb8,0x40,0x57,0x95,0xb7,0x4d,0x63,0x3d,0x46,0xf4,0x75,0xab,0x7c,0x47,0x61,0x71,0x18,0x53,0x5b,0x80,0x51,0xd9,0x07,},"\xf8\x28\xf8\xc9\xda\xd2\x98\xc5\xb7\x19\xda\xa8\x52\xb1\x7e\x76\x25\x98\xa7\x0f\x4e\xcd\x16\xa2\xfc\x59\x6e\xb0\x26\x38\x99\xe9\x83\xd4\x4e\xdc\xc7\xbd\x24\x0c\xb0\x76\x10\x60\x0a\xe9\x6a\xac\x0d\xfc\x3b\xe3\x87\xb6\x16\x85\x08\x99\xb5\xcf\x44\xe1\x76\x7f\xfa\xca\x3d\xf3\x81\x58\x59\x84\x24\xf8\x07\x14\x14\xc7\x04\xe6\x0b\x42\x2a\xd7\x73\x77\xfa\x7f\x6a\x8c\x5d\x0e\xbc\x02\x35\xe2\xd4\x3a\x98\x4f\x3a\xdf\x75\x9e\xb1\x04\x47\xf3\xc2\xf6\xb8\x0d\x5a\x11\xef\x41\xd3\xa0\x98\x52\xc0\x93\x2a\x1b\x9a\xc2\x3e\x6f\x40\xa1\x67\xde\x21\x04\x1b\xec\x88\x85\xf9\x43\x3e\xb8\x0b\x95\xc9\x78\x59\x58\x04\x6c\xdb\x7b\xf1\x47\xa7\x99\x47\x82\x3b\x41\x49\xae\x05\x21\xd7\xe5\xaa\xbc\x15\x64\xfa\x40\x44\x10\x6e\x2e\x39\x2e\x9c\x34\x44\x57\xe9\x92\x93\x76\xea\x9b\x42\x29\xc6\xe7\x73\x8f\xe7\x90\x08\xd5\x54\xc4\x29\x39\x69\x14\xc3\x63\x87\xf5\x79\xb4\x6b\xab\x14\x6f\x6a\x95\x10\xeb\x6f\x8c\x85\x55\x1c\xbd\x84\xc7\xdc\x0d\x0b\x1c\x01\x0c\xcb\xa5\x96\x3a\x7f\x39\xf1\x81\xe4\x4d\xbc\x98\xe4\x95\xaa\x63\xc0\x10\x59\xcb\xe6\xa9\x9b\x07\xb4\x49\xe7\x75\x9c\x9a\xf9\xe0\xf8\xd9\x05\x4a\x67\xa3\x48\xfa\x19\xd7\xf9\x1e\xc0\xa4\xd4\xf2\xc7\x02\x6c\x3b\x84\x92\x59\xa3\x50\x41\x7f\xd8\x6c\xab\x21\x42\xe4\xcf\xe3\xc0\xaf\xbf\x25\x18\x2a\x2d\x52\xbd\x2e\x0b\xc9\x20\xe8\x50\x80\x83\x2b\x91\xb9\x27\xb6\x29\x48\xa6\x7c\x31\x7e\xb0\x90\x91\x46\x1d\x49\x3e\xea\x5f\xfc\x47\xbf\x08\x55\x82\x96\x82\x58\xa3\xc8\xdd\x81\xa8\x58\x27\x0b\xdd\xaf\xe7\x92\x56\x84\xa1\x5f\xfb\x51\xbc\xfa\xab\x93\x1a\xfa\x46\x5e\x30\x90\xe8\x6b\xe4\x1e\x35\x47\xcb\xa2\x34\xb8\x5f\xe7\xdb\x70\x04\x96\xa5\x05\x00\x2d\xf3\xca\x4e\xae\xc7\xb9\x62\x78\xc7\xd1\xa7\x7d\xb8\x34\xa9\x17\x97\xbb\xb8\x26\xd0\x92\xaa\x28\xb4\x95\x45\xed\x3b\x1e\xda\x23\xbe\x11\xa3\xf5\x28\xb9\x55\xcb\x0c\x4f\xa6\x6e\x16\xe9\x57\xe5\x70\x4c\xf3\x19\xe5\xf7\x9c\xc0\x9f\x2d\x05\x4e\x6d\xaf\x19\xe2\x92\x6b\x11\xe1\xe4\x13\xff\x82\x2c\xa1\x41\xf7\xc3\xd3\x85\xae\x95\xdd\x20\xb3\x46\xe5\x83\xcf\xb0\xc2\x29\xec\x39\xcf\x88\x9a\x54\x19\xcd\x37\xbc\x18\x4e\xf5\xfb\x14\x46\x22\x08\x0a\x30\x2d\x9d\x77\x45\xc4\x51\xf7\xd8\x82\x42\xcc\x26\xb9\x16\xa3\x56\x9a\xbc\x7d\x1f\x21\x6d\x57\x79\x7a\x47\x2b\xc6\x21\x76\x17\x58\xe8\x40\xeb\x8e\x29\xbc\x8e\xfc\xb7\xaa\xfc\x7c\xf8\xf4\xe5\x93\x30\xd3\x5e\xe1\x07\x49\x6d\xec\x6e\x71\x4b\x1f\xa4\x30\x98\x37\xbb\x47\xeb\x3a\x06\xb4\x60\x4d\xd2\x07\x33\xcc\x0e\xaa\xc2\x64\x9e\x18\xc0\x73\x42\xef\x55\xd1\x9b\x8d\x03\x95\x91\xac\x28\x69\xac\xc3\x4b\x6c\x3c\x1c\xa3\xcf\x26\x3f\xf8\x4c\xa4\x3a\x5f\x64\x65\xba\x34\x88\x8c\x10\x90\x13\xb3\x2b\xfc\x0d\x0d\x15\xf5\xa7\x6c\xec\x27\x0a\xb3\xac\x9a\x10\x63\x31\x31\x2f\x5a\x0a\x84\x28\x2c\x3a\x3d\x4a\xea\x1e\x7c\xf5\x3d\xbf\x8b\x24\x0b\xdd\x11\x1c\x34\xd2\xa9\x3d\xfd\x12\x58\xfe\x92\x67\x13\x3f\x75\x54\xdc\xc2\x1a\x8f\x43\x9c\x16\x5d"}, {{0x7d,0x14,0x02,0x3e,0xb4,0x8b,0xbd,0x43,0x76,0x49,0xa2,0x41,0x87,0x79,0x05,0xa3,0xc9,0x32,0xf1,0x46,0x40,0xf2,0x9a,0x0f,0xb1,0x34,0x11,0x4e,0x8f,0x33,0xf5,0x82,},{0xea,0x5c,0x11,0xb4,0xb2,0xc5,0xef,0x4a,0xb7,0x06,0xcc,0xa3,0x47,0x50,0x43,0xc9,0x58,0x18,0xeb,0x56,0x5a,0x79,0x7e,0x33,0x68,0x8a,0xfe,0xac,0xd6,0x8a,0xdc,0xca,},{0x31,0x33,0x9d,0xce,0x23,0x33,0x6d,0xf5,0xb2,0xb1,0x93,0x52,0x2a,0xa3,0xdd,0x2d,0x41,0x14,0xa6,0x6a,0xf1,0x65,0x62,0x89,0xc9,0x52,0xbc,0x11,0xc9,0xb2,0x10,0xf7,0x7a,0x54,0xd4,0x61,0x61,0xf4,0xe0,0xc5,0x2b,0x30,0x13,0xe4,0x0b,0x9e,0x9e,0x84,0x27,0xd8,0x51,0x32,0x5b,0xd7,0x1c,0x4d,0x99,0x35,0x3e,0xee,0xd7,0x51,0x08,0x0d,},"\x90\x01\xdb\x31\xf2\x79\xbe\x50\x53\x19\xb8\xe7\x2b\xde\x11\x99\x51\x29\x80\xdf\x65\xf0\xd8\xa9\xb4\x93\x04\x67\x41\x3a\x99\x7b\x97\xa3\x62\xb5\x72\xa4\xb4\x4b\xc9\x40\x48\x7f\x18\xb2\x08\xce\x6a\xc5\xc6\x87\x16\xd3\xaf\x1b\xce\xf1\x70\x38\x3b\x5c\x4b\x5c\x47\xe4\x47\x37\x72\x6f\x93\x83\xbc\x4f\x14\x47\x68\xbf\x5c\xaf\xb4\xe9\xdf\xe3\x97\x61\xe6\xed\x47\x89\x71\xd1\xc7\x0e\x6d\xab\x2f\xd0\x49\x9d\xff\x92\x93\xb2\x39\xd1\x6c\x96\x02\x61\xc6\x82\x18\xb9\xf5\xb1\xbe\xe6\x90\xf0\xd2\x40\xc1\xb3\xdb\x71\x1f\x9e\x82\x1f\x08\x09\xbb\xeb\x9a\xaf\x24\x9c\xcb\x16\x8c\x67\xd9\x65\x56\x2d\x24\xf8\x48\x51\x61\x40\xbf\xd9\xfc\x05\x0d\x4f\x20\xda\x5a\x17\x94\x46\x8a\x9c\x07\x25\xea\x5c\x66\x9d\x5c\x63\x0d\x93\x10\xe5\x74\x51\x07\xda\xd3\x72\x61\xb5\xd9\x1e\x38\xe0\x85\x12\xe6\xf3\x73\xec\x5d\xca\xd5\xca\x09\x07\x29\x07\xc8\xfb\x7b\xf3\xb9\x26\xc3\x33\x94\x90\xb3\xf5\x1f\x76\x44\xe7\x3a\xe2\xec\x01\xd6\x1b\xe7\xc6\x52\x65\x36\xb4\xff\xd1\xab\x68\x49\xfe\x0c\x2f\x40\xd3\xbd\xa2\xa4\x9e\x55\x50\xb8\xdf\x97\x90\x81\xda\x85\x16\x8d\x0f\x71\x58\x2b\x90\x36\x77\x52\x6d\x1f\x1b\x15\x11\xe1\x38\xb6\x84\xfc\x46\xaa\xc8\xbd\x80\xc3\xde\xf7\xee\x81\x38\x19\x04\x61\x80\x7c\x55\x36\x12\x5c\xb0\xe2\xc3\xd0\x83\xa1\x87\xc7\x26\x9c\xb5\x31\xec\x36\x78\x78\x7b\x32\x55\x5c\xf0\x4a\xb0\x93\xc9\x00\x2e\x7d\x79\x2b\x4d\x93\x3f\x2e\x30\x70\xf3\x9a\xc8\xcc\xf8\xd5\xf5\x45\x5f\x12\x10\x9d\x8a\x8a\xeb\x4e\x21\x2f\xad\x4a\x70\xb1\x47\xc0\x4a\x7b\x91\x84\x60\xb1\x31\x63\x76\xe6\x40\x20\x85\x95\x17\xeb\x7e\xe3\x0c\x29\x0b\xe8\xb8\xd6\xf9\x67\x39\x15\x25\x6c\x3b\x04\xb9\xd9\x05\x4b\x52\x33\x8e\x0d\x36\x07\x85\xe4\x6a\x18\x28\x44\xc5\xc3\x76\x6a\xea\x8e\xd3\x11\xb2\xd4\x81\xc0\xb7\xb2\x11\x4e\x41\x8e\xd1\x7f\x8d\xeb\xf0\x1a\x83\xff\x37\x51\x70\x24\xee\x9e\x28\xe0\xc9\x0d\xce\x6d\x05\x9f\xfe\xe4\x13\xd2\x7c\xd6\x27\x83\xa8\xb8\xb5\x01\x6a\xd2\x76\xe3\x9d\xfd\x8f\x8f\x3d\xdf\xc4\x28\x10\x18\x18\xce\x50\x7f\x00\x3e\xb5\x8c\x9a\x5c\xc8\xb1\xaf\xf0\x5a\xab\x8f\x0d\x7f\x1d\x1f\x6d\x4b\x87\x1d\xbc\xed\x1f\x3d\x28\x66\x23\x97\x52\xfb\x13\xf6\xe1\x80\x34\xbb\x2b\x5a\x66\x35\xca\xa6\xec\xc4\x62\xe0\x58\xeb\xe2\xfa\x65\x1d\x3d\x0f\x36\xe2\x0a\x31\xf7\x65\xe4\xb9\x58\x27\x0b\xd8\x25\xc6\x81\x8a\xac\x1a\xd7\x56\x31\x35\xae\xed\xf1\x4a\x2b\x6d\x39\x8b\x6e\x34\x00\x84\x01\xb2\x18\x46\x18\x20\x07\x1c\x5a\xf7\x78\x46\xcb\x9c\x32\x81\x90\xc0\x61\xd5\xaa\x6e\x0e\xcd\xe7\xef\x58\x56\xb0\xe6\x81\x4f\x83\x3f\x70\x40\x96\xdf\x08\x25\xfa\x4b\x46\xdc\xda\xcf\xa2\x7c\xd8\x7b\xd7\xbf\xef\xf7\xf8\xca\xe1\x66\xa3\xa0\x4d\x43\x7c\x7b\xe7\x16\xc4\x90\x45\xc7\xbd\x3d\x13\x49\x62\x7c\x9c\xbd\x04\xc1\x5f\x00\xa6\x96\xe3\xcf\xfb\xb4\x5a\xf2\x91\x22\x62\x7e\x7e\xd3\x3b\x42\x49\x91\x3b\xec\x00\xf0\xe2\x8a\xa1\x12\x98\xcc\xe8\xb6\x49\x08\x1f\xe3\xb1\x69\xb4\xaa\xea\xca\x48\x5b\xda"}, {{0xe8,0x30,0x6b,0xad,0xa6,0xd5,0x5e,0xb1,0x88,0xd9,0xf7,0x5c,0x81,0x5c,0xc9,0x14,0xe9,0x3c,0x9c,0x72,0x22,0x39,0x1c,0x15,0xbb,0xae,0xaf,0x93,0x54,0x43,0x79,0x35,},{0xbf,0x27,0x98,0xb8,0xe5,0x54,0xf5,0x1e,0x22,0x86,0xc3,0x03,0x4a,0x88,0xe5,0x77,0xff,0x23,0xfa,0x32,0xa6,0x72,0x44,0xea,0x82,0x45,0x91,0x2e,0x8b,0xf4,0x6d,0xa4,},{0xcc,0x66,0x27,0x30,0x8e,0x2f,0x42,0x43,0x83,0xfa,0x70,0x59,0x4f,0x57,0x57,0x91,0x60,0x05,0x40,0x02,0x7a,0x27,0x51,0x61,0x9b,0x28,0x3a,0xff,0xea,0xeb,0xc9,0xc9,0xd2,0x9a,0xc6,0xdb,0x28,0x6d,0xd2,0xc1,0xb5,0x96,0x58,0x7b,0x87,0x8d,0x1d,0xf4,0x78,0x1d,0x43,0x6b,0xb5,0x70,0xc1,0xc0,0xf0,0xd3,0x33,0x68,0xdc,0x66,0x52,0x0b,},"\xd7\x04\x38\x09\xc3\xe3\xdc\x00\xb1\x7e\xfd\x52\xc9\x13\x0b\x11\xb7\x86\xf1\xe2\x57\xb5\xe2\x2f\x81\xa7\xfa\xae\x60\x0b\xbc\xdf\xd5\x18\x53\x7f\xe8\x52\xc6\x42\x35\x97\x62\xfb\x75\xe8\xad\x85\x92\x49\xe6\xab\x49\xce\x1b\xb0\x4f\x24\x92\xf2\xaa\xc3\x54\x46\xba\x6e\xb0\x3e\x76\xde\x3a\xbd\x2d\x5f\xc7\xe6\x14\x68\x43\xad\xd0\x42\x86\x0a\x4a\x16\xb5\x9b\xdd\x7d\x03\x83\x78\xa3\x5e\x1a\x04\xb1\x21\x7a\x55\x71\x0d\x93\x7e\x2c\x90\x32\x23\x2e\xa2\xcd\xd1\xd2\x5a\x0b\xff\x71\xef\x5d\x3e\x0c\x05\x6b\x29\xcb\x92\xf6\xdf\x69\x2b\xde\x14\xdf\xa5\x0e\x13\x2b\xeb\xd8\x9e\x9f\x18\x33\x88\x0b\x65\x7a\x78\x1e\x94\xec\xb6\x03\x04\x17\x56\xe5\x51\x7d\x44\x23\xc5\x6f\xad\xc1\x3e\x2b\x31\x80\x88\xfe\xdd\xf3\xb5\xc8\x3c\x20\xb4\x6f\xdd\xbb\xa9\x23\x05\xe4\x86\x06\xda\xb7\x48\xce\x38\x48\xb8\x43\xf4\x71\x1f\x37\x0c\x3e\xc7\xd5\xe1\x9a\xb4\xc0\xac\x1a\xe1\x5a\xaa\xf2\x3d\x65\xfe\xce\xda\xbc\x08\x04\x9b\x9e\x29\x11\x3e\x57\x61\xed\x9d\x1c\x62\xeb\x07\x5c\xab\xb2\x67\x4c\xdb\xe1\xe3\xa8\x89\xba\xe4\xb1\xdd\x31\xb6\xa5\xb2\xea\x1b\x8d\xed\xcc\x3c\x51\x5e\xdc\x44\x67\xc3\x02\x31\x17\x6c\xd4\x4b\xec\x8a\x05\x79\x51\xab\x5c\xd3\x9a\x96\x23\xf8\xaf\x84\x73\xcd\x27\xd9\x33\x02\xbf\x8a\xa6\x24\xc9\xc3\xc5\x79\x9d\xa1\xdc\x49\x44\x94\xef\x8f\xf1\xdb\xe0\x18\x7e\xa5\x16\x26\x70\xb8\xd0\x98\xc3\xa9\x49\x19\x39\x8d\xad\xf7\x9e\x6c\x24\x91\xc4\x44\x39\x2c\x29\xcd\x50\xd5\x74\x35\x06\x32\x90\x84\x2b\xfa\x0e\x85\x30\xfa\xeb\xc0\x06\xd6\xea\x78\x01\x11\x7e\x0a\x3f\x01\x9e\xe2\x8f\xb3\x79\x22\x35\x40\x2e\x2f\x69\xb8\x7a\x43\xdc\x22\x7f\x9d\xe3\x16\x02\x97\x56\xc3\x16\x7d\x64\xa3\xa3\xf6\xd7\x31\x60\x33\x1d\x5a\x18\xee\xe5\xb0\xe6\xe2\x2a\x66\x3e\xfd\xcc\x8d\x67\xaf\x3b\xce\xd0\x41\xea\x84\x3a\x56\x41\x60\x3e\xc7\x2e\xfd\x64\x4e\x17\x3d\x19\x9a\x8c\x83\x0b\x2e\xa5\xfe\xc0\x37\x80\x27\xc3\x72\x25\xaf\xcb\x60\x4c\x4c\xdc\xf4\x09\xbe\x1c\x50\x9c\x9a\x37\x7b\xe0\xd0\x52\x41\x07\xc6\xd9\x2b\x5f\x09\xa2\x9e\xfb\x71\x09\x29\x56\x70\xbb\x1a\x1d\xd3\xea\x00\x8b\xb7\x91\x85\xf0\x9b\x98\xf0\x20\xc4\x3f\x14\x39\x68\x5b\x96\xf6\x19\x93\x11\xa0\x90\x87\x0f\x0d\x9b\x10\xd4\x95\xcd\x41\x0a\xa9\x5b\x7e\x53\x74\x9b\xe3\xa6\xc0\xfb\xc7\x29\xf9\x6c\xf8\x56\x43\x97\xb0\x9c\x13\x51\x40\x16\x82\x5f\x72\xf1\x4e\xb9\x32\x94\xd7\x01\x0a\xcc\xfd\x11\xf1\x7a\x6a\xc8\xf5\x44\x26\x3d\x60\x38\xd5\xc7\xdb\x29\x48\x62\x91\xb3\x0e\xa4\x9b\x6b\x54\xcf\x88\x82\x6d\xd2\x52\xcd\x9d\xbb\x57\xd8\x41\xb5\xa4\xcf\x70\x2a\x32\x64\xfa\xa4\xdc\xcc\x86\xab\x14\xda\xf1\x24\xef\x3d\x53\x35\xa6\x87\x8d\x06\x5c\x6b\xa2\x99\x91\x04\x57\x65\xee\x55\x42\xcc\x9f\x5d\x9f\x35\x4d\xcd\x2c\x6e\x0c\xf7\xff\x3a\x30\xf6\x49\xb5\x91\x2d\x97\x1d\x63\x35\x78\xf1\xe9\xf2\x63\x87\x4d\x05\x65\xc2\x47\x30\x1d\xcb\xd1\x5d\x76\x21\x1a\xe2\xd3\xd5\x06\xfc\x64\xde\xb7\xe0\x42\x56\x5d\x43\x8e\x2b\xfb\x24\x92\x43\xb7"}, {{0x36,0x3c,0x1e,0xa7,0xc3,0x2e,0xa3,0x28,0xa0,0x55,0xaf,0x7b,0xd8,0xb3,0xbf,0xd2,0x04,0xfb,0x0b,0xbd,0x4b,0xf4,0x2f,0xfe,0x26,0x2f,0x3a,0x5e,0xbd,0x54,0xda,0x55,},{0x7a,0x83,0xec,0xca,0x51,0xef,0x6e,0x5a,0xa0,0x43,0xa5,0xce,0x04,0xd9,0x28,0x8a,0xdd,0x49,0xa2,0x77,0x54,0x8b,0xd3,0x01,0x6b,0x69,0x3f,0xfa,0x79,0xa2,0x2e,0xdc,},{0x5f,0xd1,0xe5,0xf9,0x92,0x2a,0x12,0xf6,0x36,0xb7,0x2a,0x7d,0x62,0x17,0x09,0x1f,0x94,0x8a,0x55,0xbc,0xb1,0x82,0x6b,0x8f,0xca,0xf9,0x9d,0x26,0x41,0x6c,0x7a,0xb1,0x35,0x1c,0x10,0xf4,0x09,0x3f,0xfd,0x8a,0x2a,0xf8,0x69,0x14,0xa0,0xa9,0x81,0x84,0xec,0x7e,0x06,0xd2,0xde,0xe8,0x7f,0xdc,0x0f,0x4a,0x47,0xf8,0xc6,0x3c,0xf5,0x01,},"\xc4\x1c\x1e\x1f\xb7\x59\x54\xa0\xae\x0e\xbc\x29\x09\x0b\x9f\xc5\x33\xe6\x93\xe7\xc7\x10\x5c\xfe\x40\xef\x52\x6e\x4e\x12\xa7\x40\x52\x21\xf2\x18\xc7\xac\x01\x9e\x1d\x4c\x92\xda\x28\x53\xf2\xd7\x26\xaa\x62\x27\x79\x24\xdf\x0c\x34\x3f\xc3\xd4\x7c\xd5\xa9\x9a\x3e\x27\x9b\x26\xa1\xb1\x3b\x1f\x2a\xa3\x6f\x7c\xcb\x4b\x54\xfb\xef\x18\xbd\x87\xa5\x5f\x1b\xc4\x0c\xe7\xb2\x02\x91\x45\xee\x7a\xab\x39\x17\x95\xac\x68\xde\x61\x99\xf5\x05\x94\xfc\x79\x61\x1b\x85\x13\x1c\x14\x30\x21\xf2\x6f\xa3\x58\xda\x0c\x7c\x6a\x65\xdd\xe0\x76\xda\xb4\x88\x67\x5b\x72\x23\x09\xe5\xed\x97\x46\xd1\x8a\x89\x30\x99\x06\xa7\xa9\xdf\x23\x7d\xd2\x7b\xd5\x90\xcc\xc7\x7c\x40\x2e\xf6\xe1\x9c\xa6\x3c\xc8\x6b\x85\x16\x03\x30\xee\x6e\x1f\x1f\x47\xa2\xff\x80\x7e\xef\xad\xc0\x09\x63\x52\x0a\x1c\x60\x0a\x3e\x45\xaa\x7f\xb2\x55\x4f\x47\xd8\x97\xbd\x86\xd8\x1c\x3b\x08\x77\x10\x12\x22\xfa\x78\x50\xb8\x0c\xe3\xbc\x06\xc9\xe5\x8c\x0c\x96\xe3\x2f\xec\x85\x30\xc9\xfa\x1e\x41\x63\xf0\xef\x84\x56\x95\x2b\xf6\xdd\x58\x04\x5a\x36\x3d\x61\x88\x0e\x9a\xc9\x76\xa3\x60\x3e\xf7\x7a\x4c\x39\x5e\x6a\x07\xe3\x42\xf6\x02\x3b\x8a\xf1\x02\x25\xcf\xf2\x40\xef\xc0\x36\x6a\x79\x9f\xd8\x6e\x9d\x06\x20\x60\xd8\x72\x40\x33\xbd\xf6\x75\x88\xcd\x73\xac\x28\x4d\xe4\xc6\x94\x3c\xf4\x5e\xe4\xf7\x5f\x59\x37\xd9\x7d\x78\x10\x5f\x0b\xbe\xce\x04\xd3\xdc\xb5\xe4\x24\xef\xf8\x9b\x77\x3e\x5d\x6b\x4f\x37\xef\xa9\xa0\x65\x4c\xb3\xef\x34\x52\x78\xa6\x2d\x87\x6c\xfe\xf9\xa3\xdc\xdc\xeb\x70\x81\x44\x18\x77\xeb\xd5\xfa\x30\xc9\xd9\x54\xe3\x68\x4f\xa4\x76\xa4\xf4\x85\xd4\x26\xfd\x3c\x8c\x32\xbe\xa0\xf9\xcc\x20\xb1\x5e\x8f\xdf\xc3\xca\x4b\x30\x2c\x07\x4f\x50\x81\x32\xd1\x5d\xe6\x25\xc1\x0a\xe0\x73\x78\x11\x46\x3d\xcc\x55\xfc\xc4\x01\x4b\x20\x20\x8f\xff\xce\xfa\x9d\xd4\x52\x11\x9b\x16\x52\xde\x41\x34\x8f\x69\xf2\xc4\x88\xf5\xcc\x18\x56\xd6\xe7\x8a\x5c\xbe\x3e\x37\x3d\xd4\x59\x8e\x2d\x39\xf8\x76\xeb\x94\xe0\xb0\x1b\x21\xfa\x91\x29\xef\x41\xb6\x39\xf4\xe0\x5e\x69\xde\xb1\x83\x5e\xd4\x4b\x91\x12\xa6\x86\x2a\x5b\xce\xa0\x72\xc6\xe1\xb8\xf0\xf0\x58\xf4\x6b\xac\x2a\x84\x5a\x58\x2d\x14\x8f\x17\x76\x0b\x9e\x0a\x2b\xa6\x0b\xbb\xf3\x88\x4a\xf9\x4d\xd4\xc7\xec\x9d\xb0\x8e\x9a\x5b\xcc\x6d\xde\x13\x46\x44\x2e\xe1\xf4\x70\x7d\x1f\x79\xb6\x9b\xa8\x67\xf4\x18\xdc\x27\x91\x73\xf7\x7a\xdb\xc5\x8a\xb8\x5e\xa3\x93\xb9\xdc\x68\x26\x19\x00\xc1\xca\xa8\x2d\x2f\x50\x47\x4c\x42\xae\xc9\x11\x31\x42\x78\xc0\xaf\xfa\x2a\x6b\x6c\x36\xd1\xff\x88\xf3\xb4\x9f\xb2\xb7\xc3\x39\xd2\xa7\xc2\xb3\x04\x9f\x8c\x0a\x08\xd1\x6a\x9e\x8d\xf9\x3d\x13\x0d\xa4\x84\xbd\xba\x6d\xbe\xc5\x34\xcd\x51\x09\x7a\x04\x82\x21\x10\x6b\xab\x48\xd6\x7f\x95\x1b\x75\x05\xa1\x48\x48\x92\xb8\x57\x79\xc5\xa3\x11\x17\x02\x12\x4d\x95\x7a\xcf\x2d\xc3\x52\xef\x9b\xa2\x47\xbc\x80\xe2\xce\x96\x26\x9c\xe8\x5e\x78\xb9\xeb\xda\x98\x90\x76\xdd\x5f\xf7\x3e\x1e\xb2\x75\xe5\xd7"}, {{0xdb,0x22,0x28,0xff,0xff,0xa9,0xd2,0x53,0x4a,0xef,0x91,0x8f,0xb8,0x5b,0x82,0x1a,0xd3,0x60,0xe2,0xd3,0x9d,0xec,0x5a,0xeb,0x2d,0xb0,0xdf,0x02,0x49,0x7f,0x94,0x16,},{0x6d,0x01,0x95,0x77,0x7f,0x81,0x05,0xff,0x52,0x3b,0x79,0xc5,0x9e,0x3c,0x30,0x81,0xfe,0x89,0xdb,0x6f,0x87,0x03,0x3f,0x09,0x4f,0xa5,0xa9,0x40,0xce,0xf8,0x4b,0xb4,},{0x82,0x18,0x9d,0x34,0x0b,0xc1,0x1c,0xea,0xa4,0x00,0x41,0x0e,0x08,0xba,0xe9,0xd9,0x01,0xaf,0x05,0x91,0x25,0xe9,0x53,0x78,0x6f,0x8a,0x04,0x3d,0xdf,0x11,0xf7,0xb2,0xf8,0xe3,0xb6,0x17,0xac,0xcd,0x78,0xe2,0x93,0x9a,0xdf,0xab,0xf2,0xd2,0x47,0x1f,0xaf,0xd6,0xf5,0xbc,0x45,0xb1,0x40,0x75,0xb3,0x28,0xe3,0x4d,0x80,0x75,0xb2,0x07,},"\xfc\x07\xcd\x99\x04\x0f\x13\xe5\xa8\x4f\x94\x74\x6d\x6b\xb8\x68\xf7\x52\xb4\x48\xb6\x2d\x99\x59\x3e\xf2\x9e\x43\xcc\x82\x45\xf0\x47\x0f\x65\x55\x2d\x64\x32\x20\xf6\x71\x92\x85\xe1\x5c\x37\xa6\xd1\x74\xae\xf7\x60\x88\xcc\xda\x5f\x88\x68\x5b\x52\xda\xe2\x84\xc6\x5b\x38\x0d\xa3\x45\xa2\xe1\xaf\x2e\xd7\x64\x80\xd2\x69\xcb\x93\x4b\x43\x17\x62\x0b\x79\x2e\xbb\x39\xb2\xa6\x78\x24\x7d\x6d\x81\x5f\x2a\x5c\xb9\xaa\x56\x0e\x4b\xf6\xde\xba\x4c\x0a\x0d\xdc\x82\xd0\xe5\xa5\xa6\x5a\xcb\xc4\x78\xe1\xec\x6b\x06\x4d\x7b\xb7\x38\x8a\x73\xf6\xed\xa3\x0b\x0b\x6b\x73\xdd\x8f\x87\x92\x63\xad\x1a\x03\x48\x67\x1d\xcf\x21\x1c\xb9\x6e\xd0\x8e\xd5\x2f\x33\x17\xda\x68\x18\x5d\x6b\xb2\x58\x9d\xc1\x1d\x75\x5d\x47\xa3\xb6\xf6\xa0\x38\x6a\x85\x94\xd9\x57\x0b\x2e\x9b\x0d\x4b\x5e\x13\xdc\xcd\x9b\xb7\xac\xbe\xf0\xab\x27\x6a\x7a\xeb\xe1\x29\x31\xbe\x67\xf1\x0d\xe2\x67\xa0\x29\x89\x53\x01\xf5\x66\x25\x30\xad\x8a\xb3\xd2\x30\xb3\xb6\xd7\x09\x3a\xcd\xfb\xf2\x74\x75\x7a\x90\x78\xe2\x0c\x23\xbc\x82\x2d\xef\xfa\x61\x00\x54\x86\x10\x2c\x01\xab\x82\xbd\xc8\xcd\xcf\x1b\xb3\x7f\x9b\x56\xd3\x9e\x50\xfd\x5a\x68\x95\x41\x6e\x76\x7f\x4e\x36\xc1\xa4\x17\x78\x90\x81\x25\xb5\xca\x3f\x92\xa9\x0d\xa9\xad\xdf\xf1\x55\xfb\x1f\xd7\x76\x88\x08\xa8\x0f\x20\x3e\xd7\x37\xef\x00\x77\x63\xbd\x2f\xea\x9f\xf2\x8c\x84\xb4\x35\x51\xc9\xfc\x43\x8f\xfc\x47\xfc\xfc\xf6\x4d\xc7\x70\x06\x13\xaa\x8b\x3a\xf8\x63\x3a\xe8\xb6\x98\x74\x37\xc0\xaa\x47\x81\xbe\x1e\x82\x13\x96\xc5\x36\xcb\x30\x05\xd0\x55\x49\xb1\xcb\xa7\x01\x35\xaf\xb7\xfe\x30\x68\x96\x1c\xad\x3a\x14\x63\xcc\x0b\x55\x60\x68\x4e\x27\xbb\xa7\x7a\xef\x41\x9d\x82\x38\x68\xe0\xce\xba\xd1\xf1\xce\x0a\xe9\x02\x74\x4a\x15\x2d\xd2\x94\x51\xa1\x7e\x28\xa8\x9a\x71\x58\xa1\x83\x6e\xfc\xe4\xa3\xe5\xc7\xd1\xfa\xa4\xc3\x87\x5b\xc4\x6c\x4d\x9b\xe2\x2d\x66\xd3\x66\xac\x6f\x59\x53\x8a\x00\xb2\x75\xb0\x2f\xac\x6d\xa7\x55\xa8\x54\x08\x19\x97\xd5\xd1\xd0\xe6\xe5\x68\xa5\x95\x8c\xf3\x34\xc5\x18\xcd\x51\x7a\xb9\xd7\x3c\x48\xd6\xcb\xc4\xae\x4e\xea\x43\x53\x11\x3e\x7e\x4a\x7c\x05\x92\x0e\x68\x6b\xf0\x7a\xfb\xfb\x8d\xd2\xec\x4f\x18\xfa\x71\x38\xe5\x7d\x33\x2c\xd7\xa4\x22\x8f\xea\x73\xbc\x09\x25\x2f\x24\x42\x72\x94\xeb\xd3\x64\x5e\xe0\x99\x6c\x2e\x85\x1a\x8a\xa5\x1a\x7c\xd9\xfc\x2e\xab\x47\xc0\xab\x21\x3f\x4f\x51\xd2\x16\x09\x1e\xd0\x89\xe4\x59\x2e\x9b\xb0\x82\x8b\x85\x8f\x84\xf6\x0b\x93\xad\x84\xa0\xa2\x28\x27\xcb\xd2\x74\x14\xb7\x81\x32\x2a\x04\xd3\x96\x08\x28\xf6\x38\xdf\x28\x34\xc7\xf7\x83\x9d\x70\xdb\x12\x6b\xee\x5a\xf2\xee\x75\x59\xa8\xac\x4c\x01\xa6\xc3\x91\x39\x6a\xf9\x3f\xa0\x60\x89\x40\x29\x7d\xdf\x89\x00\xc5\xdd\xb4\x66\x34\x0a\xe5\x1c\x60\xc7\xea\xd7\x62\x44\x7e\x76\xd8\xbc\xcb\x57\x39\x97\xcf\x66\x14\xd1\x88\xa0\xb9\xa2\xf5\x6e\xed\x9b\x0f\x9d\x46\x3a\x19\x78\x7f\x40\x92\x58\x1a\x65\xc6\xbf\x78\x1b\x93\xc5\x60\x87\xe5\x4e\xe1\x34\x3a\xab"}, {{0x66,0xb5,0x0f,0x69,0x2e,0x39,0x5e,0xb8,0x33,0x86,0xe0,0x27,0xc8,0x2c,0xe3,0xfd,0xee,0x3b,0xd8,0x99,0xb0,0xd3,0x17,0x9d,0xb0,0x86,0xfb,0xf5,0x24,0xf5,0x74,0x59,},{0x44,0x85,0x36,0xe9,0x82,0x40,0x84,0x37,0xce,0x89,0x67,0x40,0x53,0xe3,0xc5,0x89,0xc9,0x8c,0x09,0x5c,0x60,0x02,0x1a,0x11,0x81,0x78,0xc6,0x26,0x1d,0x88,0x10,0xfe,},{0xbd,0x13,0xf6,0x36,0x2c,0x07,0x07,0x89,0x22,0xf3,0x0c,0x63,0x30,0x75,0x1b,0xf6,0xe7,0xcf,0x42,0xa7,0x69,0x16,0xee,0x65,0x3e,0xb1,0x7a,0xcc,0xff,0x1f,0xbb,0xca,0x35,0x25,0x8c,0x4c,0xbc,0x58,0x2a,0x5e,0x8c,0xc9,0x4f,0xd2,0xc7,0xed,0xeb,0x53,0x76,0x2f,0x1f,0xc2,0x31,0x23,0xd7,0xf4,0xf1,0x45,0x40,0x9b,0x31,0xcd,0x38,0x02,},"\x74\x28\xa9\x64\x21\x2b\xcb\xe8\xdf\x7d\x59\xe4\x8e\x92\x34\x80\xaa\x0e\xe0\x9b\x91\x0d\x04\xef\xb6\x90\x36\x62\xef\xc3\x10\x7a\xc8\xfd\xc0\xc5\xf3\x92\x72\x74\x0c\xd8\x77\xe1\x6c\xd7\x1c\x54\x92\x38\xc3\x37\x22\x0c\xe2\xf6\xb5\xa1\xfc\x6f\x7b\x0a\x1c\xd4\xed\x21\xd9\x38\x89\x08\x1e\x34\xfb\x7f\xde\xcf\x41\x78\xbb\xd4\x31\xe6\x11\xe5\x39\xd9\x00\xc3\xd0\xac\x3d\xc7\x10\x7b\x36\xb4\x1d\x6d\x0d\x5d\x32\xc1\x97\x27\xf9\x08\xb6\xeb\x36\x7f\xeb\xb3\x52\xa4\x93\x58\x1f\xf1\x28\xb5\x6c\x4c\xaf\x6f\xb8\xe0\x99\x81\xf0\xd3\x79\x57\xd1\x28\x20\x17\xfb\xb8\x07\x61\x4c\x20\xf4\x65\xdc\x02\xb0\xcd\x96\x99\x83\xbd\x5a\xe1\xeb\xf6\x57\x8d\x7f\xf3\xce\xff\x32\x0e\x25\x56\x21\x99\xde\xe9\x34\x75\x7c\xc1\xf5\x8d\x55\x40\xc4\x1a\xac\x1c\xe4\xf2\x11\xf0\xb8\xec\x41\x07\x17\x40\x30\xe7\x02\xbc\x6a\x8a\x9c\x85\xc5\x05\xc9\x31\x6a\xef\xea\x3e\x43\x72\x24\x2d\xe0\x19\xb3\x5e\x2b\xd3\xc5\xa9\x56\x52\x19\x71\xc1\x06\xa3\xad\xbb\xc1\x3c\xdc\x4f\x7f\x9d\x3c\x58\xb9\x6a\x34\x4b\x4a\xc3\xef\x6b\xd8\xac\xa6\xed\x98\x76\xb4\x3e\x64\x97\xfa\xf7\xfa\x4c\xf2\x7f\xbc\xb6\x65\x73\x0c\x09\x1e\x13\xaa\xf7\xe9\xef\xe7\xdd\x10\xe1\x4e\xb1\x9a\x92\x00\x42\x42\x10\xec\x8b\x8f\xba\x7e\x69\x44\x4c\xe1\xa9\xe3\xa7\xb2\x6c\x11\xf6\xb7\x14\x5b\x69\x83\xa7\x80\x57\x76\x48\x40\x31\xbf\xf5\x2e\x81\xae\x76\x9b\x70\xa2\x82\xb0\x94\xff\xb5\xfb\x55\x25\xdc\x1a\x87\x2e\x20\x7e\x82\x7a\x2e\x11\xf4\xec\xf7\xb5\x30\x8c\x74\x8a\x92\x78\xea\x7b\xd6\x61\x88\x19\x44\x00\x43\x0c\x8c\xd5\x96\xeb\xb8\x72\x21\xe5\x36\xf6\xaf\xe1\xf1\x50\x5d\x6a\x59\xf4\x1d\x16\xa2\xf0\x14\xe1\xcf\xa5\x13\xf7\xa6\x97\x31\xd7\xbf\xdb\x2a\xff\xce\xfe\x05\x37\xd4\x2c\x79\x6e\x3f\xd2\x7e\x41\xb7\xca\x72\x05\x1b\xef\x28\xbb\x7b\xde\x70\x10\xdc\xfe\xd8\xaa\x16\xef\x67\x6d\xb6\xe5\x20\xc3\xce\xf8\xd6\xf5\x8a\x9a\x28\x13\xcf\xf0\xf7\x04\x1f\x87\xfb\xfb\x84\x31\xe0\x20\xed\xe1\xd4\xea\xf1\x9e\x23\xb9\x83\x44\x5c\x59\x15\xb5\x4a\xdf\xb5\x57\xfc\x20\xd0\x05\x8f\x40\xf5\xe0\x98\x25\xdb\xa8\xd8\xf2\x0c\x00\xf4\x3b\x3a\xee\xbb\x61\x57\xbe\x32\xec\x54\x62\x7d\x5d\x42\xab\x81\x3c\xf9\x7f\x09\x5d\x26\xdb\x80\x36\xc1\x2e\x82\xcb\x96\x3e\x80\x01\x16\x7e\x61\xab\x39\x3b\x4c\xca\x75\x5e\xce\xa8\x69\x95\x4e\x32\x3f\xa5\x26\x2c\x5f\xda\x3e\x0b\xe9\xa5\x1e\x5a\xf5\x1f\xa6\x44\x48\x24\xfb\x83\x7c\xc6\x7b\xe5\x37\xa8\x75\x69\xc3\x0c\xf0\x11\x4d\x39\xa0\x39\x42\xde\x4e\x1c\xd5\x23\x35\x5d\xab\x1a\xf3\x60\x80\xa9\xa9\xa5\x48\xbe\x1c\x2a\x7f\xbe\x54\x33\x77\x23\x15\xd2\x83\xe5\x15\x6d\xf6\x48\xbe\xe4\xb7\xdc\xda\x74\xf1\x59\x05\xd5\x42\xbe\x54\x87\x3c\x15\xc5\x3f\xf4\x2a\xca\xbf\x8c\x56\xf2\x57\xd7\x64\x72\x2d\xb4\xe9\xc7\x18\xe1\x20\x98\xa3\x45\x74\x86\xa6\xc9\x47\xac\x2d\xe0\xaf\x53\xe8\x2c\xf9\x50\xbb\x37\xca\x29\xc8\xda\xdf\xa3\x64\x6d\xb4\x98\x2a\xf5\x72\xd3\x9b\x26\x8c\x7f\x96\xb0\x3e\xf6\xb6\x53\xc8\x79\x45\xf2\x9b\xc5"}, {{0x55,0x32,0x8b,0xe4,0xb3,0x70,0x82,0x27,0x33,0xff,0x39,0x89,0xa6,0xa3,0x28,0x2d,0x65,0xfe,0x8f,0x20,0x7a,0xb7,0x27,0x0d,0x7c,0x2e,0x72,0x7c,0xa3,0xcf,0xaa,0xc4,},{0x51,0x8e,0x02,0xee,0xf5,0x2f,0x5a,0xae,0xbd,0xe3,0xd1,0x08,0xea,0x79,0xec,0xad,0xfc,0x4d,0x99,0x4c,0xe1,0x95,0x36,0x21,0xe5,0x4b,0x7b,0x3b,0x12,0x1f,0xf8,0xff,},{0xf5,0x8d,0xb1,0x9f,0xd8,0x34,0xe1,0x51,0x94,0xc3,0xc0,0xf8,0xa6,0xa5,0x0e,0xbc,0x4c,0xf0,0x74,0xe8,0x0e,0xa2,0xe7,0x0c,0xda,0xf1,0xe1,0x69,0xbd,0x51,0xeb,0xd0,0x99,0x0b,0xad,0x77,0xc4,0xfa,0x20,0x8b,0x8d,0xd1,0xe2,0xc8,0x57,0x4c,0x01,0xb5,0xf5,0x96,0xc8,0xdf,0xa6,0xbb,0x8e,0x6a,0xe3,0xa4,0x7f,0xf4,0x12,0xe7,0xe2,0x09,},"\x6c\x24\xc9\xaf\xbb\xf1\x2d\xca\xee\x6f\x10\xe4\x08\x92\x52\xf2\xc6\x0b\x2a\xb9\x3a\x02\xc1\x60\x2f\xb5\xde\x4c\xe3\xbd\x92\x3e\xb0\x2f\xe1\x03\x9f\xdc\x15\x99\x6a\x44\x69\x15\xe7\x67\xde\xe0\x17\x6d\xdd\xb7\x8e\x9d\x6b\xbf\x06\x96\x75\x77\x5a\x82\x9d\xd8\x08\xd3\x76\xb0\xcf\x79\x20\xbf\x1a\x66\xe1\x30\x3b\xa5\x24\x19\x78\x5f\x25\xf2\x8b\xb3\x38\x99\xeb\xde\x84\x0c\x0a\xb1\x4b\x91\x9a\x65\x80\xcb\xaa\xc3\xa8\x05\x62\x7b\x9c\x4a\x77\xba\xa1\x6f\x82\x5a\x9e\xac\x2d\x6d\x36\x41\x65\x14\x93\x37\x0e\x50\xee\xe9\x4c\x74\x04\x97\x64\x36\x56\x05\xab\x4d\xac\x1a\x03\x02\x27\xa3\x30\xaa\x17\x8f\x2f\x8d\xa3\x77\xaf\x73\xf0\xbb\x04\x0b\xac\x12\x36\x6e\x65\xe0\x59\x10\x55\xf9\xf2\x3e\xac\xa3\x5e\x96\x88\xd8\x37\xa3\xc0\xd9\x9c\x16\x8f\xd8\x86\xac\xc9\x22\xcf\x37\xa7\x11\x8e\xf8\xa4\x4b\xb0\xa4\xfa\x42\x88\x04\x93\x09\xa7\xdc\x1b\xed\x80\x62\x1e\x10\x63\xe3\xe5\x92\xc0\xfb\xa4\x2d\x73\x98\xeb\x15\xf7\x40\x28\xac\x15\xd7\xed\x65\xa6\x36\x8a\x13\xb7\xf9\x56\xd1\x95\x47\xeb\x50\x6c\xe7\xec\x90\x73\x4e\xb9\x49\xcf\xf1\xd9\x8c\xe4\x14\xf1\x0a\xdc\xba\x8c\x00\x73\x20\x01\x87\x50\xa7\x1b\xd3\x6d\x3b\x6b\xfd\x61\x27\x05\x45\x08\xe3\xef\x65\xd9\x98\x48\x51\x4d\x33\xd6\x8b\x58\xe3\xa4\xb2\x24\xf7\x9b\x6e\x34\xdd\x48\x03\x40\x46\x7f\xe7\xf0\x25\xcc\x88\x21\x3d\x80\x8f\xbb\x5b\x91\xe2\xe4\x3c\xf9\xd9\x50\x64\x07\x98\x65\x92\x73\xd4\x7a\x25\xf1\xf0\x13\x2f\x68\x82\xfa\xad\xba\xfb\xa2\x8f\xee\x5f\xa1\x72\x72\xc1\xa9\x00\x11\x72\xb3\xab\x6f\xf2\xc3\x15\xf2\x6c\x07\x73\x44\x05\xb5\xee\x8b\x5e\x4f\x08\xe1\xe3\xb8\xae\xa0\x19\x46\x7f\xb0\x71\x88\x7f\x19\x19\x01\xa2\x1c\x59\x76\xc1\xca\x8a\xaf\x0a\x1d\x4a\x2e\x69\x8e\x76\x23\xe9\xbb\xe9\xca\x2a\x67\xa1\x53\xa1\x6f\x89\x5e\x6d\xd9\xea\x92\x44\x41\xb4\xbd\x0b\x67\x45\x52\xe3\x98\xb8\xd9\x70\x34\x3a\x9b\xc7\x76\xa3\xa3\xfc\x1a\x86\x60\xc5\x62\x5d\x60\x81\xb5\xd8\x7f\x0f\x8a\xc9\xf0\x7a\xb5\xab\xe7\x7c\xdb\x8e\x30\xd2\xfd\x1f\x6f\x46\x52\x5c\x75\xdd\x0d\xd1\xca\x32\x81\xcc\x89\x34\x6f\xb3\xe6\xd7\x38\x8e\xbe\xe1\x54\xcb\x59\xbd\x9e\x95\xed\x6a\x41\xd5\xdf\x66\x8b\x59\xea\x13\x78\x68\xeb\x12\x0b\x8a\x2c\xfd\xf4\x67\x44\x14\xfd\x27\x96\x99\xf2\x8b\x5a\x5c\xcc\x2e\x2f\xc8\x02\xa4\xc9\xe0\xb8\x5b\x76\xf2\x0f\x6b\xce\x2a\x49\x54\x88\x6f\xc4\x02\x67\x0a\x71\xef\xd2\x61\xf5\xdd\x7b\xca\x16\x88\x4a\x28\x7c\x62\x2f\xd4\x45\xf6\x8d\x44\x15\x1c\xc0\x13\x4b\x22\x9d\xa3\x8d\xaa\xab\x81\xb5\xc9\x60\xd5\x77\x00\xca\x92\xb2\x6d\x0b\x14\x21\x34\xce\x94\xb7\xbe\x6c\x18\x61\x0e\xa2\x13\x6f\x8b\xa8\x32\x9a\x2e\x8c\x00\x0b\x8f\x02\xfe\x05\xbc\xf7\x2c\xb7\x1f\x8c\x72\x53\x5f\xfc\xd8\x18\xe3\x8e\x79\x92\xa8\xf0\xc3\x2a\xc6\x21\x77\xd1\x52\x2a\xe5\x52\xc6\x0c\x1e\xe6\x16\xb7\x5e\x4b\x34\x42\xe7\x96\x57\xe4\xa3\x33\xc0\xb3\xd7\x44\xea\xf2\x60\xd0\xc3\x36\x93\x16\x86\xa6\xd6\x68\xc6\x4f\xef\x44\x00\x52\x35\x2c\x2b\x25\x8c\xfb\x65"}, {{0x7d,0xa0,0x5f,0x04,0xe5,0xd3,0x8b,0x98,0x9b,0x83,0xf7,0x2f,0x7a,0xb2,0x6c,0x13,0x87,0x76,0x75,0x8f,0x4f,0x57,0x7e,0x49,0xdc,0x73,0xd6,0x01,0x3f,0xf4,0x37,0x59,},{0xb1,0xde,0x51,0x67,0xf4,0xd3,0x30,0x80,0x4e,0xec,0x9e,0xb5,0x65,0xef,0x40,0x55,0xf1,0xb6,0x4d,0xd9,0x5e,0x1c,0x9b,0x27,0xc6,0x7f,0xfe,0xf9,0x14,0x82,0xcc,0xa8,},{0x05,0xf1,0x17,0xf9,0xbc,0x3e,0xa5,0x5d,0x45,0x5e,0x9e,0xf1,0x35,0xe9,0x2e,0x76,0x65,0xd1,0x80,0x70,0xd8,0xf5,0xe3,0x75,0xdf,0x67,0xbe,0x18,0x17,0xce,0x14,0x35,0x7a,0x55,0xe7,0x01,0x66,0xf3,0x26,0xb7,0x7d,0x85,0x24,0x32,0x27,0xcf,0x67,0xd8,0xf2,0xe0,0xbf,0x84,0x40,0xca,0xbf,0xb0,0x52,0x75,0xb3,0x73,0xf1,0xe1,0x19,0x0e,},"\xa6\xa8\x61\xd8\x94\x7c\x5c\xd6\xad\x08\x19\x60\x2e\x32\xea\x76\x81\xc8\xf7\x30\x10\xee\xe5\x53\xe5\xde\xfb\xf7\x98\x20\x98\xb5\xf7\xb3\x99\x24\xbb\x79\x59\xad\x64\xc3\x03\x26\xbe\xd5\x60\xbf\x51\xe9\x98\x3c\xda\x5d\xff\x4f\x31\x1e\xea\x24\xcb\xe6\x8c\x61\x06\xce\xac\x9b\x84\x3a\xa4\xe2\xad\x1b\x6f\x8a\xe1\xe4\xf9\x68\x71\xfc\x02\x5b\xe4\xa6\x16\x38\x5f\xf2\xd4\xb7\xf5\x68\x29\xab\xef\xaf\x6a\xac\xbb\x78\x0d\x6c\xbb\xc9\x51\xb6\xe0\x5a\x78\x7f\x88\x5e\x33\x25\x61\x16\x65\xec\xc9\x24\x27\x4a\xa5\x31\xbc\x13\x3f\x62\xc7\x6c\xb3\xad\x14\x8f\x3c\x95\x79\xa8\x15\xa1\x42\x00\xb7\x64\x8d\xae\x0b\x07\xb3\x27\xd3\xbf\xcc\xdb\x6f\xe3\xb6\xcb\xd7\x0e\xa6\x5e\x6c\x0c\xc2\x51\x6a\x89\x66\x96\xd0\x7b\x2e\x77\x71\x3b\x0b\xee\x3b\x92\xfb\x1b\x6f\x75\xb0\x82\x0a\x5c\xb6\x2c\x5f\xe6\x20\x40\x03\x94\x3e\x24\x85\x71\x66\xfb\xdf\x57\x1f\x11\x5d\x45\xf4\x2e\x75\x90\x1d\xf8\xb1\x2c\x32\x61\x8a\xac\xb0\xd2\x42\x86\xc8\xd3\x03\x96\x05\x1f\xc2\x72\xaa\x17\xf4\xd2\xd4\x74\x61\x15\x2a\xac\xd3\xfa\xa2\xb7\xb2\x08\x31\x22\x78\xe8\x09\x24\x05\x92\xd1\xd1\xaa\x58\x5c\x56\x28\x0e\x66\xff\xd9\x2b\x57\x17\xd0\xcd\x1e\xb9\xfb\x74\x01\xde\xf8\x79\x48\x7c\x37\x4e\x5c\x53\x0b\x6f\xeb\xf9\x11\x12\x25\x74\xd2\x4f\xe1\x04\xb4\xf4\x5c\x7c\x60\x1e\x6c\x91\x7d\x3c\x18\x82\xc1\xad\x3c\x55\x5d\x8f\x2c\xe9\x55\xb5\xa1\x0d\xb0\xd5\xa8\xb8\xac\x7a\x62\x66\xb2\xe6\xb2\x7a\xd0\xee\x34\xf4\x7a\xd8\x57\x36\x7d\x52\xf7\x09\x6d\x4b\xac\xef\x0e\x46\x72\x54\x88\x42\x4b\x93\xb8\x9a\xcd\x42\x9f\xfb\x5e\xf3\x3a\x0b\x08\x1d\xd0\x94\x79\x67\x91\x96\x02\x3c\x39\x67\xf4\x4a\xd4\x1e\xb1\xa2\x39\x55\x27\xfd\x3b\x79\x76\x8f\x1b\x88\x5f\x04\x29\xb4\x95\xab\x60\x52\x56\x91\xbe\x84\x65\x06\x32\xa2\xf6\x6c\xb6\x3a\xd5\xbf\x2f\x6a\xe7\x0b\x66\x8c\x5a\x19\x3f\x74\x99\xfc\x4f\xc4\x2c\xf8\xcb\x30\x8c\xe5\x02\x9a\x50\x27\xba\xbe\xf5\x5d\x19\x25\xec\xfb\xa9\xf2\x7e\xb6\x08\x16\x19\xed\x0d\xf8\x56\x9f\xd8\x0e\x9d\xa1\x04\xdb\x39\xb5\xb8\x14\x0b\xfe\xbe\xbd\x29\x08\x54\x40\x06\x58\x19\xde\xba\x8d\x46\x9a\xe8\xb3\xea\x6d\x3b\xac\x58\x91\xf9\xa4\xdd\xfb\x7f\x1f\x06\xd1\x3c\x31\xa0\x7e\xe5\x3f\xb5\x4b\xc9\x7b\xd0\x86\x96\x39\x4c\x38\xe7\xf3\x68\x0c\x0f\x02\xf9\x75\xf4\x69\x92\x11\x47\xa4\x09\x85\x90\x97\x81\x3b\x4c\x3f\xa4\x3d\x17\x4a\xc4\x02\xf1\xa5\x28\xcb\x5f\xc4\xb8\x07\x51\x84\x32\xef\xf3\x34\x07\xa1\x11\xca\x3a\x3d\x7e\x9e\x84\x13\x5a\xba\xc8\xa8\xf5\x2e\xa6\x31\xc8\x6d\x74\xa1\xc6\xe5\x74\x9e\xdd\x14\x91\xc0\x02\x4e\x7d\xe7\xfe\x52\x85\x68\x29\xb7\x2f\xd1\x3d\xa6\x3a\x1a\x23\x43\x34\x9d\xf6\x62\xab\x31\x63\x53\x60\x32\x34\x6e\x53\x47\xf0\x43\xff\xf5\x28\xbf\x67\x15\x09\x22\xff\xf2\x02\x6b\xab\x74\x2d\xb9\xca\xe7\xcb\x2e\x3c\x74\x58\x07\x19\x65\x2c\x28\x44\x7c\x5e\x20\x98\x23\x17\x97\xee\x6e\xf1\x23\x1f\x57\x92\x05\x4b\xc3\x35\x9a\x32\xc8\x6d\x2f\x94\xf8\x5f\xa7\xd4\xa7\x41\x9d\xd2\x41\xff\x66\x2a"}, {{0x1b,0x8e,0xc6,0x58,0x80,0xed,0xbf,0x03,0x9a,0x13,0xe9,0x70,0xb1,0x5a,0xa6,0x7e,0x19,0x2a,0xa0,0x2c,0xa6,0x5c,0xff,0x9a,0xda,0x17,0xd4,0x55,0x8f,0x40,0x13,0x7d,},{0x12,0xc1,0x19,0x1e,0x4d,0xe3,0xbd,0x44,0xd0,0x39,0x07,0x01,0x53,0xad,0xb7,0xb5,0x81,0xf6,0x00,0xe9,0xa1,0xdd,0x69,0xaa,0x89,0xf2,0x77,0xc7,0x06,0x9e,0x76,0xf8,},{0xbf,0xf2,0x69,0xa3,0x5d,0x6c,0x8e,0x55,0x2c,0xe7,0x16,0xd1,0x63,0x81,0x81,0xce,0x85,0x83,0xb4,0x5c,0x0e,0xc5,0x93,0xb4,0xe5,0x8c,0x40,0xac,0x76,0xe7,0xf8,0x5c,0xa1,0xda,0xff,0xfd,0x68,0x54,0x1e,0x62,0x3a,0x1e,0x35,0xa7,0xc0,0x97,0x26,0x88,0xb2,0x5e,0xed,0x72,0xf4,0xda,0x57,0xec,0xa1,0x68,0x57,0xa8,0x26,0x3c,0xaa,0x0b,},"\x37\xf1\x8b\x7f\x64\xc5\x13\x34\x79\xd6\xda\xe3\xbe\xf6\x79\xcd\xc2\x1e\xce\x3f\x5b\x57\x9a\x6a\x9c\x3f\xa2\xe5\x9e\x9b\xe8\x7d\x20\x09\xf7\x4e\x1c\xfd\xac\xcb\x1c\xe3\x7d\x00\x70\x23\x69\xbd\x16\x9d\x94\xfd\xcf\x85\xaf\x9f\xa3\x21\x7d\x27\xe6\xed\x6d\x1d\x8e\x5d\xf7\x61\x5e\x8e\x37\xea\x55\xde\x1f\xd0\xb0\x6d\x77\xb4\xc8\x3b\x92\x9d\x80\x58\x6f\xa0\x69\x4b\xe7\x2e\xc8\xb3\x65\xad\x2c\xbc\xdd\x2b\x1a\xd8\xcf\x7f\x03\x6d\xfa\x4d\xaa\x1a\x90\x36\xcd\xb1\x20\x43\x22\x27\xb1\xf0\x7b\x88\x66\xb1\x22\x12\x03\x09\xeb\x91\x4a\xb8\x4c\xdd\xeb\xa1\xde\xc4\x8a\xb9\x26\x36\x72\x85\x88\xfe\xdb\x3a\xaa\xd7\xe7\xdb\xb2\xac\x30\xe6\x3c\x6f\x5f\x90\xfc\x6c\xe6\x2d\x6d\x3b\xd8\x8b\x0d\x5a\xac\xfa\x61\xde\x9f\x32\x67\xb3\x00\x91\x7b\x57\xa4\x80\x36\xab\x20\xc9\xa0\x54\x46\xb8\x76\x74\x94\xaf\x24\x9e\x7d\xe7\xbc\x50\x7a\x22\x07\xcc\x95\x6f\x71\x84\x55\x5a\x7d\x5d\x88\x83\xbb\x4b\x3e\x93\xf2\xdc\xfc\x57\xb0\xda\x86\x38\x65\x8d\xcd\xce\x88\x5d\x44\xd9\xcc\x68\xb1\xd8\x17\x0a\x36\x77\xcc\x5e\x50\xcb\xf3\x3d\x54\x3e\xba\xe4\x47\x7d\x92\x39\xcf\x83\x38\x4e\xc5\x9b\x42\x33\xe8\xff\x33\x43\xf0\x6f\x30\x18\x77\x72\x9a\x53\xd4\x20\xbf\x01\xc6\x2e\x66\xab\x7f\xe5\x5d\xd8\x7e\xe8\x23\xa5\x8f\xcb\x87\x87\x0e\x1f\x52\xe8\x79\x17\x7c\xd4\x39\xc5\x33\xf5\xa2\x23\xe5\xa3\x43\x6f\xe9\xd6\x42\x65\x48\xda\xcf\xc8\x6a\x08\x46\xd3\xed\x23\xac\x04\x25\x63\xe8\x87\xff\x46\xaa\xd0\x05\xf4\xe1\xde\xe3\xee\x0e\xe4\xc2\x7a\x72\x51\x70\x9a\xe4\x0a\xbc\x5e\x25\x68\x64\xe4\x78\x5a\x4e\xdd\x8b\x2a\xdf\x1b\xc5\xb4\x01\x8e\x28\xd0\xb1\x75\x86\x7b\x02\xd0\x52\xa6\xe1\x7e\x41\x1a\x3d\x8b\xeb\x2a\x42\x08\xb7\x6c\xc6\x21\xfd\x18\xbe\x14\x8e\x23\x5d\x55\xaa\x71\x27\x70\x65\x57\xde\xc0\x53\xa1\x3f\x1a\x47\xdf\xda\x40\x5b\x3f\xe5\xbd\x28\xef\x5d\x34\x86\x19\xf5\x1e\x59\x5e\xf5\x05\x5f\x83\x9e\xfa\xf1\x10\xe4\x90\x16\x31\xac\x31\xa0\x2f\x4f\x7e\xe4\x24\xa3\xa2\xc3\xe0\x0d\x26\x02\xd2\xcc\x1e\x49\x29\x06\xee\xa4\x20\xa9\x26\x82\x38\xac\x66\x22\xa0\x89\x74\xe5\x73\x02\x92\xe6\xed\x51\x02\x56\xef\xde\x66\x7e\x0d\x9a\x0f\xf2\x21\x3f\x54\x12\x0c\xcd\x81\xff\xaa\x6b\x7c\xc4\x81\x41\xa2\xb7\x29\x85\x2a\xf5\x83\xd2\x6a\xa5\x1f\xbd\xe6\x7b\xe4\xdf\x14\xe5\x20\xc2\x25\x7a\x73\xc5\xc2\xe3\xc3\xd8\x7d\xfb\x25\x36\x11\x75\xfd\x18\xab\xd7\xe9\x9a\xa0\x9b\x85\xf8\x8f\x19\xc8\xd8\x2d\x45\x85\x8f\x31\x44\xc5\xdf\xb7\xa4\x9e\xde\x45\xb4\xef\xd8\x71\x05\x92\xa3\x72\x06\x36\xe7\xe8\x89\xc7\xe2\x2a\xd1\x3b\x2d\x44\xbb\x7e\x2b\x47\xb2\x96\x3a\x5f\xa3\xf2\x55\x7b\x85\xbc\x0c\x69\x3d\xe3\xd2\x2e\xf9\x46\x4f\x7b\x81\x4a\x20\xa4\x67\x6a\xd2\x6f\xca\xa0\x35\x44\xc6\xaa\xd4\x12\x83\x09\x5f\xcd\x12\x10\xaa\x8c\xc0\x29\xff\x5a\x26\x00\x5a\x89\x12\x26\xc2\x98\xe9\x4a\x52\xaa\x71\x33\x91\x3e\xc9\xd2\x2a\x5b\x2a\xc0\xbc\x6f\x15\xb2\x51\xd0\xb9\x38\x89\x21\x3c\xd1\xb1\xe5\xc6\xfd\x08\xf1\xa8\xf5\xcb\xd4\x21\x53\x29\xa3"}, {{0xe7,0x53,0x88,0x02,0x6a,0x6a,0x6d,0x6c,0x6d,0x19,0x9e,0x36,0x29,0x93,0xa5,0xb1,0x04,0x49,0x01,0xe1,0x8a,0x76,0xc2,0xfa,0xc7,0x26,0x1a,0x6d,0x1c,0x19,0xa4,0xf3,},{0xb9,0xce,0x14,0x25,0x1c,0x0c,0xdf,0x3b,0xdd,0xb2,0x06,0xdc,0x6b,0x8b,0x2b,0x7f,0x5b,0x7e,0x4d,0xd1,0xbe,0x2c,0xe1,0x86,0x3f,0xf1,0x88,0x06,0xae,0x00,0xf1,0xee,},{0x6d,0x0f,0x83,0xd9,0xc5,0x5d,0x84,0xbc,0xf9,0xa8,0x61,0x47,0xd9,0xb6,0xba,0x9a,0xd5,0x37,0x83,0x2f,0xd0,0xf9,0x9d,0xae,0x7e,0x72,0xc8,0x13,0x9a,0xfc,0xb3,0x0c,0x7b,0x24,0xf6,0xb2,0x92,0xe3,0x2f,0x98,0x47,0x09,0x75,0x51,0xb7,0xfb,0xfd,0x51,0x0c,0x84,0xe8,0x9b,0xe9,0x82,0x54,0x44,0x14,0x57,0xbd,0x08,0xe5,0xf0,0x53,0x02,},"\xb9\x9c\xdc\x84\x72\x11\xc0\x66\x42\xdd\x11\x1b\xc5\xe0\xbe\xca\x53\xa7\x4f\xfb\xa2\xe3\xac\x93\xaf\xb4\xb0\x94\x75\x18\xe8\x32\x35\x27\x33\x0a\x4e\xfe\xfb\xe4\xba\xfa\x00\xba\xfe\xcb\x43\x4a\xb1\xe5\xb7\xce\x65\x65\x6f\x7a\x4f\xd8\x56\xaa\x6c\x38\x5e\xd8\xd7\xbd\x62\x85\x58\x0d\x7d\xd6\x08\x82\xe6\x9c\x19\xda\x07\x69\x09\xd6\x47\xde\x09\x5a\x80\xe9\x8a\xd8\x9b\x81\x4a\xad\xcb\xbf\x6f\x03\x3c\x49\x20\x2f\x65\x6c\x09\x10\x50\x39\x59\xcf\x97\xcd\x0f\xa8\x2d\x5f\x6d\x22\xfb\xa3\x38\x99\x51\x29\x4c\x4f\x7c\xdc\x21\xeb\x82\x44\xbd\x65\x60\x63\x7a\x5e\xca\x62\xa8\xeb\xa1\xf4\xa9\x33\xd1\x87\xa7\x5f\x86\x71\x16\x43\xaf\x35\x88\x31\xc8\xc1\x6a\x9a\x0f\x09\xe2\x53\xb2\x39\x5e\x9c\xb3\x71\x61\x1e\xec\xdd\x66\xb4\xab\x52\x1a\xa9\x4b\x3f\x20\x23\x7e\xae\x41\xcd\x10\xc5\xe2\x1a\x45\x2d\x48\xe7\x48\x18\x7f\x35\x4a\x67\xad\xf6\x81\xb0\xfe\x61\xcd\xae\xc9\x4a\x5e\xaf\x01\x26\x9f\xce\xb5\x70\xd5\x14\xff\x3c\x55\xff\x1d\xba\x2f\xd2\xdf\x17\xf8\x6a\x8a\xeb\x74\x78\x38\x11\x3d\xee\x94\xa4\x3b\x13\x84\xcb\xe1\x33\xcd\xf6\x42\x7e\x8d\x12\x2e\x4e\x93\x37\x04\xda\x6e\x26\xcf\xce\xe9\x7f\xe3\xf6\x29\xb6\x0b\x91\xb2\xdd\x86\x38\x67\xfa\x79\x80\x1e\x2b\x91\x6e\xc4\xc0\xfb\x62\xe0\x71\x59\x42\x1e\x65\x79\x74\x30\x7a\x1d\x02\xf7\xf2\xed\x47\x24\xa8\xb5\x21\xa8\x61\xf5\x5f\x35\x52\x1e\x8b\x2e\x1a\x84\x90\x4c\x42\x8c\xfc\x5b\x60\x14\xbb\x0f\x8b\xa8\x43\x4c\x22\x09\xbd\x40\xac\xa3\x11\x30\xdb\x97\x74\x33\x33\x59\x7d\x23\x51\xd5\xf6\x81\x17\x41\xf6\x26\x88\x97\x3b\xd7\x73\xd3\x02\x66\xfd\x1e\xfb\xd8\x9d\x47\xa9\x64\xf9\xd0\x19\x97\x15\x3d\x08\x7d\x92\x69\x66\x16\xdd\x10\x3a\x93\x4c\xcb\xac\x4c\x1d\x14\x2f\x20\x75\xd4\xe2\x2c\x3d\xa4\xa0\xe9\x73\xb2\x38\x63\x19\x62\x87\xb7\x91\x74\xfa\x29\x75\x5f\xc6\xd9\xb5\xe1\x00\xac\xe0\xa4\x59\x75\xe5\x03\xb2\x54\xd3\xf1\x95\xc2\x61\x71\x09\x10\xfe\xf1\x06\x89\x2c\x08\xbb\x29\x6d\x23\x0c\xde\xa9\xf5\xa1\x1f\x91\xac\xaa\x6e\x7c\x05\xe9\x2c\x28\x1d\x2b\x31\x55\xfe\x44\x80\xb0\xaa\x5e\x0d\xb4\x1d\x10\xe0\x5c\xfd\xef\xa4\x36\x40\x51\xcb\x75\x5d\xc7\x2f\xfa\x97\x8c\x00\xb9\x4a\x5f\x21\x2d\xc6\x91\xf8\x39\xb4\x9d\xe9\x7e\x01\x39\xd6\x5e\x8d\x73\xb2\xb2\x89\xb2\x6a\x12\xc6\xcc\xd8\xed\xc0\x4a\xdb\x45\x2a\xf7\xff\x09\x4a\xa9\x01\xea\xf5\x76\x51\xeb\x1b\x87\xb8\x33\xd0\xa0\x9b\x4a\x4a\x64\x62\xf4\x06\x64\x62\x37\x69\xe9\x50\x79\xf3\xc9\x62\x85\x0c\xc3\xb4\x01\xbb\x00\x58\xb8\x47\x5b\x10\xc8\x62\xf3\x2f\x30\x0a\x2b\x14\x3b\x3d\xea\x26\x9d\xdc\xbe\xa7\xbe\x7d\xd2\x42\x6d\x0d\x42\x04\xeb\x66\xa3\x9f\x13\x18\x82\x2d\xcb\x9c\x56\x13\x98\x63\x7f\x4a\xb8\xde\x19\x67\x68\xac\xe7\x4f\x34\x8c\x01\x2d\xd1\xba\xbe\xc1\x7f\x53\x00\xff\xe0\xd7\xaa\xae\xaf\xef\x7d\xb6\x50\xa8\xf2\xf3\x09\xa9\x79\x3f\x52\xc6\x85\xc7\xe1\xd5\x13\x32\x74\x91\x57\x84\x89\x9c\x48\x1d\x48\x5c\x9b\xd3\x0e\x99\xfc\xdc\x97\xd9\x6e\xf0\x74\x87\xda\x66\x3b\xef\xe6\x82\x99\xdf"}, {{0x5b,0x32,0x3f,0xc0,0x1a,0x16,0xc4,0x5d,0x10,0x64,0x66,0x7d,0x2e,0xa4,0xa7,0xea,0x59,0xd2,0x03,0x42,0x56,0x2d,0x12,0xfb,0xc5,0x98,0xd5,0xaa,0x73,0x00,0x68,0x8e,},{0xd4,0x14,0x1b,0x45,0x5d,0x30,0x16,0x42,0xba,0xda,0x28,0x14,0xaf,0xcb,0x16,0x20,0xd5,0xeb,0x56,0xd9,0x2b,0x11,0x85,0xfe,0x5d,0xad,0xef,0x55,0x96,0x25,0xfa,0x71,},{0xe2,0xef,0xf6,0x07,0xf0,0x22,0x7a,0x29,0xd5,0x82,0xd6,0x9f,0x34,0x58,0xac,0xad,0xd3,0x22,0x6f,0xce,0xaa,0xc0,0xab,0xbd,0xae,0xd5,0x26,0x75,0xc5,0x16,0x30,0x07,0x3c,0xd3,0xa9,0x01,0x70,0x7e,0xcf,0x05,0xe8,0x93,0xf2,0xc3,0x6d,0xaa,0xf0,0xcc,0x49,0x01,0x11,0x69,0x46,0xb5,0x77,0x0d,0xc0,0x38,0x12,0x5f,0x6d,0x13,0x1b,0x09,},"\xad\x24\x66\x9e\xf5\x5c\x54\x0a\x8e\xd1\x62\xce\x1d\x28\xf0\x17\x60\xa6\x07\x19\xa0\x37\x73\x36\xeb\x00\xb1\xec\xbe\x6f\x61\x60\x1c\xd5\x64\xf9\x2c\x95\x68\x04\xf9\xbe\xd4\xe1\x47\x6b\x94\xe5\xea\x8c\xca\x80\xcb\x49\xa3\x04\xef\x85\x1f\x7f\x67\x5a\xbe\x58\xe6\x68\x1d\xc0\x12\xad\x55\xe5\x1b\x02\x1d\x98\x28\x56\x9d\x0b\xcc\x9e\x05\x27\xa3\xfc\x03\xc8\x91\xd1\x7a\x90\xe6\x33\x7a\x1e\xa6\x7f\x2f\x08\x81\x05\x87\x69\x38\x37\x08\x1e\x4c\x08\xa3\xd7\x2c\x53\x6c\x21\x40\xda\x20\x0b\xa4\x56\xc3\x76\xf6\x1d\x05\x65\x1f\x0c\x5f\x39\x57\x11\xf4\x1c\x0d\x6e\xae\x98\xc9\x06\x76\x4d\x1e\xbe\xf3\xf9\x04\x6c\xb7\xc8\x62\x26\x40\xfc\xaf\xaf\xbf\xb8\xf6\x2e\x1c\xd3\x2c\x66\xee\x1c\x55\x50\x94\x89\xa5\x38\xab\x61\x29\x99\xe7\x99\x7b\x77\x9c\x64\x22\xef\xf1\x09\xda\x4d\xf8\x29\x20\x93\x0d\x8d\x36\x3d\x78\x30\x90\x87\x95\xa3\x88\x8f\x25\xd6\x67\xe1\x4d\x15\x5e\xd4\x45\x81\xbe\x43\x0f\x79\x73\xb5\x74\xe2\xbc\x0b\x13\x4c\xf1\x39\xfb\x4b\xb0\x1d\xbd\xa4\x1b\x67\xb9\x81\x47\xd8\x01\x2f\x40\x67\x7f\x4b\x80\xce\x4a\x53\x4c\x90\xad\xea\xbf\x48\x4b\x21\xfa\x99\x4b\x7a\x17\x5f\x8a\x8b\x8a\x40\x75\x56\x44\x78\xdd\xb0\x50\x24\x58\x0b\xab\x03\x8c\xd9\xea\xa1\xdf\xda\x55\x2f\xb3\x12\x29\x42\x9b\x61\x4f\xa1\xd8\x0c\x52\x61\x4e\x84\xfa\xa2\x21\x7f\x26\x0f\xf7\xcc\xea\x8c\x7b\x06\xe3\xd7\x7f\xf8\x74\xeb\x81\xfc\x85\x97\xe5\xfc\xdc\xec\x95\x1b\x5f\xe6\x4a\x1a\xf8\x6e\x73\x19\x3a\x88\x24\x69\xeb\x3b\xa3\xc3\x82\x73\x4b\x28\x87\xb4\x19\x31\x6e\xa4\x48\xaf\xc2\x82\x47\x8c\x25\xf7\xbc\xa1\x84\x29\xcb\xbf\xfd\x88\x71\x17\x7c\x5e\xcc\x7d\x8a\xa9\xa1\xb9\xec\x87\x19\x2d\x29\xa5\x25\x39\xc0\x81\xc3\x59\x33\x32\x44\x4c\xbe\x66\x87\x2c\xf3\xd0\xe1\x97\x29\x2b\x82\xb0\xbe\x5f\xcd\x85\x8c\xd6\xca\x48\xb5\x3e\xe5\xb6\x16\x41\xbc\xaa\xf3\x1d\x81\x9c\x7e\x1c\xed\xaf\x9e\xe6\xb0\x7e\x09\xca\xed\xfb\x30\xb9\x20\x4a\x1d\x4d\xdb\x70\x56\x0c\xbe\x1e\xb0\xc0\xec\x43\xf1\xd1\x78\x20\x1b\x29\x08\x19\xfc\xdc\x92\xc6\x3e\x0d\xb6\x0f\xb8\x7d\xff\x00\xe5\x12\x64\x8c\x89\x58\xa8\x47\xef\xc3\x63\x46\x07\x3f\x1a\x4f\x1f\x23\x17\x06\x0f\x1c\x54\x3e\x6f\x01\xb4\x24\x85\xbe\xeb\x56\xca\xb3\xba\xb2\x6e\x6a\x0c\xa6\x93\x58\x02\xc7\x62\xb7\x99\x15\x9e\x32\x0f\x36\xb5\xe8\x3d\x4a\xca\x89\x62\xaa\x2c\x3c\x2b\x7a\x38\x70\xe9\xe0\x47\x31\xf3\x94\x8c\xf9\x41\xe2\x1d\x50\x96\x4e\x5d\x63\x5a\x35\xa5\x3e\x29\x98\x11\xb8\xca\xdf\xcb\x44\x16\xc5\x75\x98\xa3\xfd\x05\x41\x09\x10\xdb\xc0\xea\x2c\x78\xfd\xb9\x25\x74\x99\x7d\x58\x79\x62\x79\xea\xaa\x78\xb3\x6d\xce\xf1\xc9\xa1\x29\xee\xff\x82\x39\x9a\x26\xd0\x08\xff\xa3\xbf\x04\x18\xff\x7d\x39\xb6\x42\x7f\x34\x18\x95\x02\x4d\x16\xe2\x2a\x0c\x62\xa8\x2b\xeb\xa2\xe2\xba\xc2\x3d\xee\x18\xcf\xcd\x5d\xb2\x39\x7f\x37\x8c\x53\x67\x30\x90\x82\xc4\x4e\xb4\x3c\xed\xc1\x52\x20\x25\x3a\x62\x32\x03\x99\x66\x5f\x71\x34\x9c\xc1\xb9\x44\xf5\x8c\x73\xa1\x0a\x0b\xbf\xd4\xca\xf1\x28\x91\xe3"}, {{0xbe,0x1c,0x11,0x2f,0x78,0xcf,0x13,0xae,0xfc,0x5c,0xe7,0xe3,0x37,0x64,0xac,0xa4,0x48,0x1f,0x9f,0x88,0xb0,0x18,0xe1,0x22,0xdb,0x9f,0x8d,0xac,0x14,0x62,0x46,0x05,},{0xae,0x38,0x99,0x36,0xbb,0xf6,0xd1,0x6e,0x3c,0x1e,0xeb,0x64,0x74,0x29,0x89,0x70,0x86,0x6e,0x12,0xec,0x9c,0x1d,0x6a,0xea,0x2f,0xd9,0xdb,0x6b,0x56,0xaa,0x59,0xc4,},{0xf5,0xfc,0x5a,0xcb,0x17,0xe9,0x95,0x7e,0xa3,0x04,0xf1,0x23,0xb6,0x50,0xe1,0x44,0xc9,0xe4,0x37,0x72,0x83,0x50,0x9d,0x43,0x1d,0xa6,0xa2,0xbb,0xd5,0x27,0xbe,0xb3,0x82,0xc9,0xf5,0x87,0x45,0xa3,0xe5,0x6d,0xcc,0x65,0x5b,0xd2,0xeb,0xb7,0xae,0xef,0xc9,0x3e,0xdc,0x3f,0x20,0xd8,0xd3,0xc3,0x79,0x23,0x03,0x1e,0xec,0x0c,0xb4,0x07,},"\xd7\x7f\x9a\xee\xa0\xfe\x98\xed\x7f\xb7\x4d\x58\x2a\x40\x2b\xcb\x79\x31\x47\x4b\x4a\x95\xd5\x23\xf3\xfb\x76\x9f\xb7\x09\x7d\x2b\xe4\xc6\xec\x10\x52\x14\x01\x63\x22\x25\x53\xaa\x8f\x4f\x89\xe4\x21\x73\x00\x14\xec\x73\x46\x97\x20\xce\xa9\x67\xf8\x8b\x6a\x48\xd0\x2a\x2d\xdc\x1a\x12\x1f\xdf\xfb\x8a\xe1\x27\x73\x8e\x29\x3c\x4d\x6b\x1b\x74\xad\x03\x84\x4d\xe6\xbf\xe8\x21\x50\x6b\x3a\x7a\x81\xd1\x9c\x37\xa7\xf0\x1c\xa4\x81\x47\x12\x19\xef\xe2\xa7\xb9\x2c\x4b\xd2\xac\x07\x74\x3b\x49\x75\x69\x64\x41\x71\x4b\x84\xd6\x3c\x54\x9d\x7a\x6f\xb6\x1f\x16\xfb\xcd\xb7\x2b\x91\x4d\x78\x82\xd0\x91\xf9\x70\x6d\xa3\x8c\x1a\x81\xa1\xc6\xa4\x0f\xbe\xc0\xd8\xe2\x38\xb5\xd5\x6d\x46\x0e\x90\x9f\x85\x47\x9f\x7a\xd8\xb1\x19\xf3\x54\x55\xe3\x40\x10\xca\xa7\xe5\xd0\x1f\x38\xe3\x01\xad\x37\xe8\x00\x5f\x6e\xd2\x9e\x4a\x10\x2d\xb3\xf6\x1d\x84\x09\x3f\x78\xc4\x9a\x96\x48\xc9\x77\xbf\x4d\x5b\x68\x9f\x71\xf4\x06\xf8\xad\x7b\x9a\xeb\x1a\xe2\x21\x33\xa8\x4c\xe1\xb2\x78\xb2\xcd\xde\x46\x59\x01\xb2\x3a\x17\x9d\x07\x2a\x80\x87\x9d\x0a\x24\xd2\xaf\x19\x7b\x32\x2a\x07\xbf\x5d\x40\xee\xab\x3a\xf1\x21\x17\xf1\x30\x21\xdf\xc1\x68\x1a\xba\x5c\x08\x3f\x25\x96\xe3\x7f\x11\x23\x42\x2b\xbd\xca\x3b\x2c\x32\xcb\x59\x4f\x56\xc3\x25\xe0\xc5\x64\xa1\x73\x32\x88\x05\x34\x59\xc6\x24\x88\x92\x5c\xd8\x0e\x7c\x94\x4d\xb9\x98\xc3\xc7\xbe\x54\x6b\xf8\x9d\x7a\x51\x1c\xcd\xba\x4b\x80\x9e\xee\x0f\xc2\x87\x3d\xad\x72\xb4\xcf\x3b\xa0\x51\x28\x9b\xb3\xf4\xe9\x92\x57\x32\xe4\x5a\xe7\x74\x10\x58\xc8\xfd\x11\x59\x9d\xd8\x43\x92\x7e\x3d\x14\x59\x8b\xb8\x30\x52\xd3\x35\x69\xcf\xb0\x2a\xf0\xc8\x8f\xa7\xae\xa4\xbb\x46\x84\x1c\xd2\xdd\xbd\xf5\x98\x8f\xcf\x32\x5f\xf1\x04\xa5\xdf\xc4\xa3\x0d\x26\x9d\x2a\x94\x97\x30\xc3\x61\x3b\xdd\xd3\x67\x3b\x42\xf6\x09\x0e\x6a\x60\xe4\xa2\x53\x06\x24\x63\xa6\x5d\x7e\x7f\xc0\x03\x0b\xba\x76\x9c\xa3\x44\xbf\xa9\xac\x82\x3f\x58\xcb\x5c\xee\x8a\x5f\xc0\xca\x37\x22\x8d\xe5\xa4\xd9\x3e\x0e\xcf\x7f\x10\x82\x16\x59\xa2\x26\x1f\x7e\xf1\x59\x6e\xda\x4e\x41\x1c\xf3\xc9\x66\x9d\x81\xde\x74\x54\x7c\xe4\xbf\x83\x3e\xb4\x32\xf3\x85\xce\x90\x38\xfe\x84\x8a\x8c\x96\xda\x7f\x01\xfd\x95\xbe\xa0\x6d\x1d\x74\x7c\x8a\xe7\x36\x49\x5b\xba\x22\x85\xbe\x5c\x32\xaf\xea\x44\x95\x20\xcf\xe8\xe1\xce\x25\xf9\x07\x7e\xd0\xec\x0f\x65\x98\xa9\xb8\xf7\x38\x6f\x15\x35\x81\x70\xcc\xef\xc3\xd5\xff\xb0\x09\x28\x81\x54\xde\x87\x7c\x24\x09\xae\x5f\xd8\xfe\xf0\x09\x3f\x1c\x36\xb3\xa8\xf5\x47\x43\x2c\xd0\xf6\x2c\x40\x33\x24\x2a\xd9\x92\x1a\x8f\x11\xc0\x0f\x36\x6d\xa9\x39\x69\x30\xa8\x0c\x99\x7d\xf4\x29\xa4\xf5\xf4\xe4\x5c\x7a\x6d\x7e\x02\xaf\x03\x31\x86\x75\x7c\x73\xcb\xe6\x4d\x2d\x4e\x78\xea\xaf\xe2\x75\x39\x52\x80\x35\xf2\xcf\xcf\x8e\xaf\x0a\x42\xbd\x25\xf8\x8b\x2f\xc6\x9e\x42\x66\x8f\xae\x66\x77\xc9\xac\x90\x91\xd9\xd1\x5a\x41\xf3\xac\xe6\x5d\x90\xa0\x22\x98\x73\xdc\xf2\x54\x25\x6c\xca\x44\x9e\xd4\xc1\x7d\x54\x35\xba\xe4"}, {{0xbd,0x85,0x23,0xed,0xa8,0x99,0xb9,0x84,0x23,0x0e,0x32,0x88,0x75,0xb9,0x67,0x2e,0xdc,0x9f,0xcd,0x24,0xea,0x5c,0xc1,0x2d,0x7b,0x57,0x2d,0xa4,0xbe,0x01,0xfb,0x7b,},{0x02,0xb7,0x34,0xeb,0xbe,0x88,0xc1,0x3b,0xfa,0x95,0xa5,0xd9,0x64,0xfc,0x7e,0xf9,0xd3,0x95,0xbd,0x63,0x03,0xf0,0x65,0xdc,0x4e,0xe1,0x7b,0x3a,0xc1,0x54,0x8b,0x7b,},{0xfc,0xfc,0xdb,0x08,0x8d,0xcb,0xd0,0xa5,0x1b,0xd3,0x01,0xe3,0xe1,0x56,0x16,0x71,0x93,0x5d,0x8b,0x6f,0x71,0x9c,0x5d,0x92,0x69,0x06,0x40,0xd3,0xc9,0x1e,0x77,0x5b,0xf4,0x05,0x41,0x32,0xef,0xc0,0x5a,0x21,0x22,0xfc,0x20,0x9d,0xb3,0xc3,0x34,0x32,0x33,0xff,0x8a,0xec,0xeb,0xd5,0x2d,0xaa,0x2b,0x3b,0x21,0xee,0xb1,0x5f,0xd1,0x02,},"\x16\xc2\x16\xc9\xbe\x9f\x0d\x4b\x11\x54\x10\xbd\xfd\x15\x93\xc8\xe2\x62\x22\x1a\xb9\x7a\x2a\x39\x5a\x12\x19\x8f\x95\xc3\x02\x05\xb0\x89\x62\xd4\x89\x31\x18\xba\x9f\xf9\x9a\xb1\xc7\xa6\xe1\xf2\xf1\x75\x19\x10\x70\xac\x94\x53\x27\xad\x6c\x47\x0b\xab\xf7\x92\x8b\x07\xdd\x78\x8c\x85\xb6\x4b\x71\x2e\x0a\xae\x6c\x0e\xa2\x02\x81\xe4\x2f\xd5\x61\xe8\x3e\x3f\xba\xc6\x7f\x14\x00\x0e\xe5\x6d\x98\x1d\x2a\x2f\x0b\x9c\xa0\x0a\x9e\xa4\x7c\xa2\xf6\xfc\x8d\xca\x10\x35\xfc\xeb\x14\x2c\x3f\x26\xf2\x0e\x3c\x73\x22\x07\xff\xff\x11\xb7\x96\x95\xbd\xaf\xa4\x15\x21\x4a\x44\x99\x30\x23\x26\x60\x5c\xf0\xb8\xc8\x2f\x2b\x11\x39\x2e\xcc\x90\xcd\x74\xa7\xb4\x11\xb6\xd9\x07\xa3\xd5\xc1\x30\xc8\x79\xb7\xcf\x88\x0f\x22\xbb\xd7\xf0\xe9\x59\x33\x71\x8e\x96\xd7\xd1\x6c\xae\xa9\xf2\xc3\x9e\x89\xb1\x3c\xd5\x22\x66\x27\x36\x04\xa9\x6b\x51\xd6\xe3\x4f\x70\x67\x35\xdd\xd9\xfc\xa4\x4d\x09\xcd\x86\xbb\x72\x17\x60\x0e\x0d\x34\xd4\x16\xac\x24\x9f\x2e\x41\xbd\x0f\x4a\xbc\xbd\x25\x80\xad\xae\x21\xd7\xeb\xa5\xfa\x44\xf3\x9d\x78\x0f\x17\xeb\x85\xcc\xbe\xf5\x8f\xef\x90\x3a\x28\x0d\x95\xf8\xf3\x21\x07\x89\xfa\x12\xe1\x20\xe2\x1b\x6e\x8c\xad\x91\x78\x35\xbb\xdc\xc3\xb0\x7e\x84\x69\x39\x54\xe2\x3a\x94\xf9\x9f\x93\x7d\xdb\x0d\x4a\x18\xd4\x2c\x3e\xa8\xfc\xa7\xd1\xea\x6e\xd5\x3a\x00\x24\x6f\x99\xea\x52\x0e\x64\x05\xbd\x2a\xa5\x49\xb0\x6e\x7d\xa7\x22\xc1\xba\x74\xaa\x1c\x13\x6e\x8e\xa5\x8b\xaa\xf8\xd3\x76\x58\x69\x3f\x3e\x0b\x44\xf6\x31\xdd\x6d\x08\xff\xdf\x4f\x09\x18\x9d\x30\x35\xa3\xf0\x34\x68\xe2\x96\x96\xef\x05\xe0\x2c\xc1\xaa\xbf\xec\xbd\xa2\x30\x1b\x54\x0c\xb0\xeb\x0a\x75\xbc\xce\x73\xdb\x92\x73\xa9\x16\x1a\x98\xad\x89\x8f\xcd\x65\x79\xfb\x7e\x4b\x32\x79\x54\x4f\x2e\x0b\xd7\x74\xdd\x1a\x81\x57\xda\xa8\x8a\x70\x32\x11\x67\x70\x3c\x60\xa6\x08\xa4\xb5\x42\x16\x59\x03\x75\xe5\x97\xfe\x21\xae\xa9\x7b\x52\x18\x5d\x0e\x37\xa5\x3b\x63\x88\xa7\x07\xa2\xbc\x24\xac\xf9\x44\x25\xf8\x4f\x3d\x56\xbc\x9f\x7e\xe7\x41\x2a\x9e\x18\x33\xad\x55\xb7\xea\xe6\xda\x58\x16\x98\x16\x63\x83\xa2\xeb\xa8\xb6\xf5\x39\x20\xf5\x17\xa5\xc8\x0b\xd3\xe0\x3f\xaa\xd4\x08\x7e\x3e\xe8\xfe\xc9\xa7\x9a\x01\xc7\x79\x51\x21\x33\xd7\xb6\xe5\xf1\xde\xc7\x66\x30\x0d\xc4\x05\xcc\x21\xa8\xc5\x83\xfb\x73\xbc\x90\xcf\x24\x38\x5b\x08\x60\x49\xd3\xbf\x20\xc3\x00\x98\x3c\x0b\x35\x15\x38\xdc\xcb\x22\x7a\x14\xfa\xfd\x23\xac\x4b\x26\xbe\x81\xa2\xb1\x20\xcf\x21\x6f\xc5\x83\x54\xf9\xdc\xbf\x05\xf6\x63\x39\xad\x6d\xdc\x2c\xac\x14\x67\x7b\x90\xe2\x47\xeb\xb6\xc5\xc2\x29\x00\x7d\xc6\x0f\x37\x4a\x06\xd4\x04\xeb\x23\xeb\x1e\xc4\x99\x07\xc6\xe8\x81\x62\x9e\x18\x67\x26\x8c\xa6\xff\xfa\x59\xaa\x3c\xa8\xf6\xc2\x95\x16\x2b\x95\x36\xc2\xbe\x22\xbb\xe3\xb7\x23\x80\xef\x11\xb6\x1b\x35\x7a\x62\x53\x10\x0e\x30\xa5\x86\x81\x8b\xa0\x03\xfa\x3f\xfd\x1f\xc9\x19\x88\x1c\x05\x02\x2f\x94\x84\x85\x98\xf2\x17\xfe\xa2\x22\x50\x72\x20\xd1\x08\xa2\x8f\xc7\xbc\x39\xa8\xa1\x1c"}, {{0x33,0xa8,0x5a,0xe1,0x50,0xbb,0xf5,0x52,0xf4,0x16,0x63,0xb2,0x15,0x21,0xc2,0x96,0xd2,0x46,0xdd,0x6c,0xf8,0x19,0x5d,0xf8,0x51,0xc6,0x95,0xbd,0x15,0xf4,0xa5,0x02,},{0xc8,0xc9,0xc4,0x25,0x21,0x00,0x8d,0x5e,0xff,0xf5,0x76,0xc7,0xe4,0xa5,0x60,0x83,0xce,0xd9,0xa9,0x28,0xda,0x6f,0xd5,0xcf,0x93,0xfd,0xa5,0x72,0xa5,0xa2,0xd0,0xc0,},{0xbb,0xe4,0xcd,0x63,0x67,0x6e,0x26,0xd6,0x75,0xa1,0x91,0x15,0x1d,0x30,0xdb,0x72,0xb5,0xb8,0x4d,0x46,0x1e,0xec,0x65,0x64,0xaf,0x86,0x7a,0xb4,0x1b,0xae,0x99,0x31,0x14,0x78,0x85,0x51,0x9e,0xc9,0xd7,0xe6,0xc8,0x18,0x74,0x3c,0x8e,0xf6,0xd5,0x16,0x7b,0x35,0xb4,0x21,0x36,0x3c,0x09,0xb3,0x57,0x36,0x7f,0xe8,0xde,0x44,0x3a,0x06,},"\x93\x7e\x05\xf2\xf1\xfd\xbd\x41\x73\x15\x53\xe7\x7c\xf1\x81\xb5\x07\x97\x58\x94\x0a\xee\x8e\x92\x62\x3f\xb1\xd5\xf0\x71\x28\xb7\xd7\xf1\x7e\x48\x42\x70\x7a\x56\x2c\x45\xba\x69\x26\x4c\x0f\x73\x0a\x82\x1c\x7d\xb6\xbf\x82\x99\x0d\xc6\x51\x26\x9b\x29\x6c\x33\x51\x79\x11\x30\x53\xd6\xf8\x5b\xb0\x96\xb2\x91\x11\x65\xfa\x39\x00\xcb\x10\x24\x16\x48\x7b\xa8\x07\x86\x79\xc6\xb3\x36\xdf\xf3\x87\x63\xc0\x8d\xcd\x20\xfa\x66\xdd\xa4\x5c\x57\x5d\xf1\x50\xd8\x51\x16\x5a\x48\x04\x97\x38\x30\xf4\x36\xdf\x60\xb8\x13\x19\xf9\xcf\xb5\x64\xc0\x65\x28\x96\xed\x5f\x18\x49\xcb\x33\x54\xf5\x0f\x00\x12\xf2\x86\xe8\xa3\x0c\x21\x35\x28\x69\x34\x74\x00\x4e\x85\x04\x01\x2b\x94\x55\x60\xc0\x74\xa6\xa1\x63\x43\x2c\xf4\xac\x4b\xa7\x17\x5c\xf2\x60\x05\xdb\x71\x99\xee\x96\xd8\x93\xcd\x1a\xad\x3f\xdf\x5d\x57\x46\x0e\xf0\x2d\xda\x6d\x3a\x14\x08\x25\x19\x6f\x3f\x8e\x2f\x37\xda\x36\xb6\xfd\xad\x18\x4f\x27\x40\xf1\x16\xde\x75\x8a\x92\x91\x70\x30\xc5\xfb\x80\xf0\x26\x24\x96\xd2\xdf\x93\xc7\xe2\x76\xf2\x5d\xa7\xdb\xed\x8e\xb8\xdd\x4c\x56\x3a\xba\x55\xb8\x2a\xf6\xba\x3a\x70\xca\x5f\x85\x8b\x44\xa0\x33\xcf\xb7\x95\x60\x4d\xde\xe7\x46\xe7\xc8\xae\x79\xd2\x72\xfb\x9a\x23\x41\xa2\xa2\x02\xdf\x5e\xac\x08\xde\x75\xad\x80\xc6\x58\x0d\x92\xb1\x69\xf2\xe1\x31\x88\x57\xb1\xb1\x42\x1c\x30\xf3\xdd\x46\x10\x93\xde\x2d\x34\x5e\xde\x74\x04\xb7\x2a\x45\x0d\xe0\x7b\x16\xee\xe6\x8c\xe6\x28\x87\xb6\xea\xa4\x36\xee\xe6\x84\xbe\x75\xce\x0e\x1f\x96\x26\x3e\x8d\x87\x36\xf9\xba\x00\x0d\x88\xe9\xe5\x86\x0f\x32\x8a\xe1\xe2\xdc\x73\x09\x9d\x32\xfc\xeb\x1b\xd2\xc0\x12\x36\x98\xa4\x9b\xea\xd1\x90\xa0\x0e\xc9\xa6\xf8\x71\x33\xed\xdd\x45\x31\x6f\x65\xeb\x0d\x32\x9b\x07\xb9\xa6\x6b\xb9\xfe\x42\x58\x8b\xf7\xb8\xd0\x6e\xfe\xc1\x98\x6b\x82\xa0\x81\xed\x3f\x68\x02\xe9\xbe\x73\x46\x47\x84\x55\x9a\x4f\x2c\x09\x7b\xa1\x4b\x0b\xfd\x5d\x7e\x0a\xff\x65\xcb\x69\xab\xd0\x3f\x86\x16\xcd\x7e\xdf\x7e\xc3\x68\x21\x9e\xdc\xf8\x93\xe9\xee\x71\xda\xd9\xf1\x8d\x79\xe5\x68\x26\x5d\xdc\x67\x16\x22\x32\x13\x23\x5b\xb9\x28\xe9\x08\xde\xa8\x27\x78\x4c\xd1\xaf\x39\x6d\x59\x0c\x81\xf4\xea\xcd\xfc\xf8\x9c\x5c\xac\x96\xfa\x05\x00\x64\xa2\x28\x41\xea\x71\x5f\x8c\x89\xd6\xd5\xaf\xbf\x59\x7a\x4d\x00\x5d\xbc\x6b\x13\x85\x6d\x33\x5b\x42\xa9\xa8\x2e\xdc\xb9\x49\x83\x5c\xca\x20\xb0\xa2\x3d\xe5\x1c\xc3\xae\xc3\x55\x66\xef\xf0\xc5\xae\x1a\xb3\x75\x13\x20\xd2\xc3\x10\x49\x52\x38\xed\xa3\x83\xc3\x8a\x41\x63\x15\x2b\x88\x15\x69\x0b\x8f\xf0\x15\x03\x5d\x1d\x00\xea\x4a\x0d\x6c\xaf\x32\x4b\xb7\x1a\x66\x4a\x1b\xed\x31\x48\x07\x84\xa6\x8f\x43\x8c\xaa\x35\x9e\x8d\x26\x73\xc8\x57\xd4\xb8\xc0\xb6\xc6\x95\x84\x7b\x86\x80\x0e\xa3\xd7\x34\xb5\xec\xc4\xd5\x2b\x50\x7a\xc6\x9b\x3a\x67\x78\x91\x60\x16\xeb\xc2\x31\x5f\x44\xc9\x0b\xf0\xc3\xe7\xda\xe0\x1d\x49\xcb\xc3\x03\x40\x2b\xbc\x63\x4a\xe1\x19\x1f\x3f\x6f\xd6\x3d\x30\x3b\x0c\x0b\xe0\x33\xa4\x7b\x90\xf8\xd3\xa7\x7f\x0a\x44"}, {{0xba,0x9e,0x68,0x62,0x04,0x97,0x5c,0x3b,0xde,0xd4,0xc1,0xe9,0xf7,0x4c,0x7e,0x4c,0x7a,0x7e,0x3c,0x99,0x81,0xd0,0x1b,0xfc,0xa0,0xad,0x01,0x15,0xc3,0xf0,0xf5,0xc3,},{0x49,0x90,0xfc,0xe6,0x95,0x2e,0x8b,0x7d,0x0a,0xfc,0xf4,0xbf,0x9d,0xba,0x9b,0xce,0x1b,0xc4,0x81,0x5e,0x37,0x51,0x1d,0xa7,0xc2,0xad,0x48,0x92,0x58,0x1d,0xe0,0x3a,},{0xc7,0xd2,0x3a,0x58,0xe2,0xfb,0x2a,0x8d,0x4b,0x8e,0xd1,0xe9,0xea,0xe9,0x1e,0x11,0x29,0xc2,0xaf,0x8b,0xd0,0x5f,0x0b,0xd5,0x72,0xab,0xeb,0xbe,0x0f,0x30,0x82,0x59,0x25,0xf0,0xdf,0x71,0xcf,0xb7,0x21,0x8c,0x68,0x6e,0x55,0x48,0xd9,0x42,0x77,0x10,0xa6,0x90,0x36,0x6b,0xa8,0x55,0x41,0xc7,0x91,0x01,0xa5,0x8a,0x10,0xe8,0xaf,0x0a,},"\x46\xbb\x48\x95\x2a\xe5\x8f\x2b\xf5\x8f\x5b\xe8\xdf\x4f\x31\x6b\x50\xf3\x63\xec\x84\xee\xd8\xf8\x2f\xf4\xc0\x4b\x06\x92\xd0\x3a\xef\x26\xe8\xe1\xe6\xc9\x54\x9a\x22\x47\xd5\x40\xa6\xe2\x2f\xeb\x11\xe5\x7f\x4b\x80\x8a\x20\x97\xe8\xa7\xb6\xb3\xb7\xaf\x37\x69\xe6\xd8\x1d\x64\x88\x6e\x69\x62\x37\x2f\x4f\x39\xe4\x9c\xd4\x6c\x1b\x5f\x73\x5f\x38\x0f\x7c\x27\x7d\x09\x97\x76\xed\x1a\xea\xa5\x7a\x35\x9c\x0a\xa8\xc7\x2f\x40\xeb\x91\xa1\xbf\x07\xea\x15\x7f\x5d\xdb\x30\x40\x9d\x6e\x3a\xf9\x89\x90\xce\x7f\x30\xaf\xfd\xac\x5e\x22\x01\x06\x46\xdc\xa9\x6a\x54\x00\x60\xfc\x90\x8a\x31\x25\xb0\x00\xad\x1e\xd3\xa0\xf2\x55\xcd\x34\xf1\x5d\x7d\xd1\xfd\x68\x1c\x3c\x35\xa1\xcd\x65\x20\x56\xec\xc5\x26\x4d\x39\xaa\xf7\x2a\x9b\xb8\x3a\x55\x1c\xc9\x34\x88\x7a\xe1\x07\xaf\xdf\xef\x06\x32\x17\x27\x0d\x95\x96\x89\x14\x18\xbd\x46\x1b\xba\x63\xde\x65\xbe\x06\x7b\x1b\x78\x64\xfe\x46\x48\x4c\x7c\x9e\x96\x34\x9a\x7c\x03\xa8\x0f\xa0\x55\x05\x0a\xa1\x8a\xce\x2a\x44\xb4\xa0\x3c\x94\x78\x24\x17\x2b\x30\xe2\x10\x11\x15\x94\x43\xca\x3c\xef\xaf\x69\x6a\x7a\xa8\xf9\x80\x11\x26\x0c\x94\x36\xbf\x48\x99\x1f\x41\xd4\xd5\x07\xb9\x6c\xe7\x32\x3e\x53\x1a\xdc\xf6\x63\x47\xc5\x5c\x88\x55\x67\x3a\x9f\x2e\xc8\x9b\x5c\x80\x24\x46\x06\x17\xec\x72\x71\x77\x3b\x36\xd6\x4f\xc1\x4e\xb5\xd8\x26\x52\xc5\x3a\x30\x31\x45\x72\x27\x09\x3d\x11\x8f\xd8\xeb\x93\x84\xe8\x02\x29\x04\x1a\x96\xa6\x49\x34\x50\xf9\x7e\x67\x36\x26\x3a\xbf\x1e\xcd\x9e\x9f\xb9\xa4\xf0\xf6\xd6\x67\xfa\x82\x41\x51\x48\x5e\xdc\x37\xb3\x4a\xcf\x3d\x8c\x35\xf9\xc1\xbe\x48\xb5\xe9\x6a\x12\xaf\x8e\x2d\x35\xc2\x3a\x03\x58\x0f\x21\x1d\xa6\x31\x6b\x34\xc5\x6b\xee\x87\x2d\x47\x64\x1b\xca\x77\xda\x64\x0f\xdb\xba\xd5\xa9\xad\x8a\xb9\xdc\x79\x57\x91\x3d\xa7\x34\xad\x37\x49\x2b\xa4\xde\x8c\xf1\x36\xcc\xcd\xeb\x6b\xa3\xf1\xbd\x3f\x00\x3b\xe7\x26\x3c\x4f\x2a\x40\xc3\x3f\x24\xca\x33\x39\x59\x6e\x6c\x34\x28\x33\x81\x00\xeb\xcc\x07\x22\xd4\xf5\x0d\x30\xb3\x3b\x91\x2d\x4e\x7c\x1a\x9f\xe6\x5f\x66\x58\xa6\xf2\x39\x14\x0a\x62\xc3\x26\x1e\x10\x39\x2e\xd1\x93\x0a\xa9\x17\x65\x2d\x3b\xd2\xbe\x4e\x8a\x08\xab\x97\xe1\x45\xb9\x20\xab\xb3\x1e\xe4\xbc\xd5\xa0\xd7\x1f\x63\x81\x80\xf6\x1c\x24\x58\x23\xa3\x99\xa7\x34\xa4\xdc\xde\x09\x97\x88\x02\x45\xed\x71\xeb\x9b\xc6\x5e\x3c\x6f\xc9\x5a\xb9\x20\xb8\x02\x4c\x17\xd4\x4c\xed\x00\x37\xd0\x4a\x13\x3c\x26\x41\x78\x2f\x1d\x62\x2d\xf4\x52\x69\xb4\x91\xd3\xfa\x2a\x12\x27\x57\x9e\xaa\x38\x6d\xe3\xe7\xde\x7b\xc4\x55\xc6\xa1\x54\xee\xe5\x72\x7f\xff\x04\x37\xa2\x00\x76\xc5\xc3\xb0\x57\x7c\xac\x5b\x4b\x69\x34\xe2\x69\x38\x02\x22\x46\x1a\x60\xf9\x54\xe4\x89\x79\xc0\x67\x12\x17\xf1\x6f\x70\x27\x98\x30\x34\x12\x10\x93\x18\x6c\x78\x70\x5f\xc2\x7d\xc9\x2e\x2e\xda\x41\x16\xa6\xbf\x7d\x23\xe0\x54\x8d\x62\xb6\x7b\x25\xc4\x1e\xd0\x61\x92\xbc\x26\xef\x13\x97\xbf\x16\x01\xf3\xa6\xe2\xa0\xe7\xf6\x61\xfb\x05\x05\xee\x38\x2f\x27\xae\xc2\x80\x5a\x3e\x21\x17"}, {{0x59,0x07,0xa8,0xc0,0x84,0x04,0x38,0x75,0x23,0x8e,0xdb,0xdc,0xb7,0x83,0x2f,0xbb,0xa4,0xc0,0x5e,0xa3,0xc5,0xf8,0x8a,0x96,0xf1,0xfb,0xf9,0x50,0x40,0x1e,0xc1,0x64,},{0xe2,0xf4,0x95,0x09,0xd1,0x00,0x7f,0x61,0x8e,0xfe,0x4f,0x1f,0xd6,0x7e,0xaa,0x6e,0x2a,0xb1,0x8a,0xfb,0x2d,0xec,0xce,0xd5,0xa0,0xb2,0xba,0x83,0x63,0x78,0x92,0x60,},{0x8c,0x49,0x12,0xc0,0xf8,0x85,0xd7,0x6c,0x91,0x40,0x59,0x50,0x53,0x73,0xa6,0x4b,0xdd,0xd6,0x7d,0xd4,0x68,0x36,0x9a,0xb9,0x18,0xf2,0x3e,0xa2,0x8e,0x04,0xc1,0x91,0x77,0xa8,0xd4,0x61,0x14,0x4f,0x0a,0x8b,0x51,0xd2,0x15,0x17,0x6c,0xb0,0x8b,0xd6,0x53,0x01,0xc3,0xc4,0x62,0x37,0xb6,0x1b,0xb1,0x49,0x8c,0xa7,0x9d,0x4b,0xe7,0x0e,},"\x43\x3b\x24\x78\xe1\x8f\xad\x5c\xb8\x10\x67\x06\x1d\x22\x55\x28\x22\x97\x78\x30\x78\x85\x47\x54\x60\xfb\xe3\x13\x7a\x5b\x44\x02\x48\x94\xdd\xbe\x56\xfa\x6e\xd0\x21\x49\x6f\x07\x86\xe4\x2b\xc6\xc2\xd2\x79\x7e\xa0\xa6\xbf\x35\x5e\x88\x11\x5f\xaa\x55\xcd\x92\xed\x42\x13\x3d\x9d\xcd\xa6\xb9\xeb\xf6\x3c\xe4\xa9\x94\xd1\xa8\x2d\x2a\x49\x26\x75\x58\xbe\x54\x18\x2a\x6f\x85\x11\x2b\xd1\x2b\x24\x7a\xda\xcf\x14\x05\xfc\x7e\xc7\xa0\x15\xd4\x3a\xb4\x0b\x82\xc6\x77\xf7\xf8\x5a\x0e\x48\x19\x7c\x5b\x96\x57\x61\x99\xf4\xc3\x34\x3f\xf7\x65\x4d\x52\x3a\x30\xc4\x3a\x05\x4c\x3e\x46\x44\x51\x27\x80\x34\xb7\xf1\x96\xc3\x66\x76\x8c\x62\x8a\xf9\x4f\xc0\xcc\xfc\x9a\x29\x55\xf9\xd3\x23\x38\xb9\x44\x78\x0f\x8e\x32\x70\x85\xb1\x03\x78\x18\x68\xe4\xfb\x79\xd5\x61\x22\xd7\xf3\xf5\xab\x30\x9e\x5d\x63\x4a\xdd\x15\xda\x38\x2c\x0d\x23\x58\xe6\x47\x18\x2b\xe4\xde\x6e\x9a\x9e\x43\xe6\xa3\xa3\xb8\x21\x5b\x20\x4d\x95\x07\x61\x0d\x46\x16\x21\x00\x0f\xb1\x89\x37\x07\xaf\x7d\x25\x95\xbf\xef\x8a\x8c\x5c\x5c\xd0\x8f\x30\x9a\x5f\xb5\x5e\x45\x51\x9a\xea\x9b\x84\x74\x8c\xa5\xc6\x72\xbf\xec\xd3\x0d\x25\x65\x12\x34\xa3\xcc\x31\x9b\x43\xdf\xce\xfc\x1a\x07\xb5\x5b\x4a\xca\x71\x4c\x2e\x7e\xf9\x63\x8f\xe7\x88\x4a\x77\xb2\x22\x53\xa0\x1a\x22\x29\x50\x0e\x9c\xe1\x0f\xda\x73\xa8\x43\xc1\x9c\xc0\x96\x26\xd2\x45\x6c\x22\xa9\xc9\x01\x88\x1d\x52\x1f\x4b\x15\xd2\xf6\x13\xcb\x46\x9d\x30\x4d\x57\x92\x23\xbc\x5f\xf7\x38\x04\xdf\x63\x71\x51\x7e\xba\xa5\xb6\x77\xea\x91\x0f\xf1\xa0\x2a\x26\xfa\xfe\x48\xfe\xf4\x69\xed\x79\x9b\xed\x6d\x56\xce\x96\x18\x34\xa2\xed\xc2\xe2\x3c\x0d\x94\x26\xec\xcd\xcc\x93\x4f\x4c\x22\x0e\x37\x81\x5f\x7c\x33\x4b\x73\x83\x60\x7d\x43\x05\x20\x94\x6a\x88\x1a\x08\x32\x5b\x41\x64\x97\x9d\x5e\x82\xcd\x81\x34\xd7\x8c\xec\x48\x61\xc0\x19\xf6\xde\x30\x1c\x1b\x9a\xec\x52\xbb\x98\x20\x33\xfb\x79\xb2\xe9\x73\x1b\xab\x29\x68\xbc\x3f\x93\xfa\x56\x04\xb8\x93\xc6\x02\x8c\x20\x4c\x36\xbb\x8c\x6b\x07\x4b\xe2\x8c\x96\x4d\x28\x49\xb5\xbb\x19\xd7\xe0\xba\x24\xe2\x2a\x20\x4d\x4f\xda\x83\xb1\x01\x31\xd3\x83\xf1\x0b\x13\x6b\xd0\xdb\xa3\x9e\xc2\x6a\xf3\x0e\x3f\xfb\x4d\xbc\x0c\x92\x1f\x0c\xc9\x91\x07\x15\xd5\x1c\x81\xfe\x4c\x62\x95\x0e\x85\x55\x49\xa1\x7c\xd7\x3a\x09\xac\x91\xe0\x6d\x46\x15\x18\x37\x6d\x0f\xcf\xa1\x23\xdf\x0a\x83\x71\x03\x45\x8d\x9c\xe2\x21\x80\x8d\x1f\x9e\xf2\xed\xc5\xcd\x2e\x68\x23\x14\x5b\x52\x48\x94\xea\x48\x52\x6d\x98\x5e\xef\xd3\xf6\x06\x79\x39\x95\x48\xe1\xed\xea\xdb\x53\x95\xb4\x3d\x87\x04\x4b\x2b\xfe\x7c\x60\x37\x02\x9b\x34\x6a\x40\x22\x27\xea\xb8\x1f\x33\x3e\x10\xe7\x7f\x1d\xbc\x06\xa2\x11\xd4\x3b\x82\x55\x86\x76\xc2\xdc\xff\x90\x82\xb1\xdd\x53\x36\x8d\xf0\x02\xde\x13\x29\xaf\x30\x00\xb1\x71\xa6\x91\x43\x89\xbb\x80\xec\x0c\x9f\x3e\x41\x2a\x44\x1b\x80\x0a\xfc\xeb\x04\x86\x70\x9a\xda\xc6\x6c\xaf\xee\xf2\x48\x83\x93\x31\xf5\xd8\x92\x19\x7e\x25\x42\x0f\x1e\x37\xd7\xc0\x24\x7f\x66\x9f\x5f\xcb\xf0"}, {{0x60,0x20,0xae,0x27,0x3e,0x0e,0x05,0x37,0xba,0xc8,0x81,0xd7,0x54,0x9d,0x92,0x3e,0xb1,0xcc,0x20,0x0d,0x49,0xca,0x65,0xd4,0xbe,0x63,0x5e,0x39,0x17,0x3d,0xf9,0xda,},{0xda,0xaf,0x0e,0x69,0x9a,0x12,0xa9,0x2c,0x16,0xe0,0xde,0xd3,0xeb,0x34,0x50,0xa3,0x63,0x11,0x82,0x45,0x77,0xe3,0x61,0xf0,0x56,0x96,0x60,0x33,0x00,0x16,0x62,0x97,},{0xb1,0xba,0x88,0xfe,0xd7,0xe5,0xf4,0xb7,0x57,0xf3,0xfa,0x4d,0x1e,0xd9,0xb1,0x9e,0x49,0x8e,0x5d,0x2f,0x5e,0x6c,0xd4,0x6e,0x42,0x6f,0xe8,0xf0,0x39,0x88,0x2f,0x1b,0xe7,0x7a,0xc9,0xe5,0xa9,0x26,0x5c,0xbf,0x7e,0x3c,0xd2,0xa9,0xe9,0x92,0x6c,0x18,0x19,0x91,0x43,0x79,0x8d,0xa5,0xbe,0x47,0xa4,0x08,0x64,0x40,0x49,0x6b,0xa0,0x0f,},"\x6a\x80\x11\xde\x09\xaa\xc0\x0d\xb1\x6f\xf7\xe5\x5c\x2d\xe6\x7d\x8c\x98\x83\xfc\xb2\x04\x0d\xed\xbc\x1e\x32\x1c\xab\xa7\xbb\x03\x69\x71\x53\x01\x76\xd1\xdb\xba\xa9\x27\x52\x0b\xdf\xcc\xbe\xd8\x84\x01\x26\x04\x3e\xdc\x44\xcb\xb7\xfa\x35\x28\x68\x0e\x5f\x1b\x56\x64\x95\x1d\xc9\x01\x09\xae\xa4\xb9\xc3\x36\xca\x04\x3d\x82\x21\xa4\xc8\xd2\x01\x16\x56\xbf\x94\x4e\xfd\x36\xba\x0a\x10\xa4\xb3\x89\x19\x60\x55\x75\x0b\x0e\x38\x8f\xb5\x28\x70\xbb\xec\x8c\x55\x19\x81\x31\x44\x39\x45\xc0\x9f\x3a\xac\xe3\xe6\x91\x50\x14\x37\x40\x73\x26\x6f\x34\x88\x74\x42\xd7\x4f\x46\x8f\x8d\x70\x78\xbb\xa0\xbd\x81\x4c\xd6\xdd\x42\x3c\x97\xb5\x69\x05\x58\x7b\x15\x2d\x1f\xcf\xba\x0e\xb9\xfd\xe2\x11\x26\x91\xda\xfa\xf4\xf9\x21\x56\x2f\x24\x1b\x62\x84\x10\x01\x83\x4f\x6c\xe3\x66\x85\xf8\x2a\x8f\xaa\x3b\x7a\xfa\xd7\x3a\x5e\x59\xbf\x5f\x9e\x71\x3e\x59\x16\x3f\x31\xdb\xe6\x96\x11\x8a\xf3\x35\x06\xd2\xff\xea\x3d\x9c\x15\x56\xfb\x15\x2f\xd2\xb3\x21\xc3\x17\x57\xd0\xc3\xc0\xf6\x0e\xe1\x13\xed\xac\x02\xd6\x7e\xfb\xb3\x03\xdc\xe6\xfa\x88\xf7\xb9\x74\x6c\xa1\x10\xe6\xa0\xcd\x09\x9c\x08\x31\xf5\x3c\x55\xc2\x8b\x6c\x82\xaf\x44\x64\x56\xb8\x42\xb2\xc9\x50\xa5\x53\xee\x2c\x76\x5e\x97\x29\xe6\xb0\xc5\x46\xbf\xc2\x6b\xd6\xd4\x2d\x06\xb2\xed\x5d\x4c\x8c\xbb\xc7\x5f\x2a\x3a\xd8\x12\x93\x95\x79\x3d\x97\x9c\x03\x1f\xce\x7e\x20\xb3\x8b\xd8\x9c\x9b\x62\x47\x48\xb2\x01\x34\x23\xce\xba\xda\x02\xcd\xe2\x05\x2d\xa5\x66\x4c\x6c\x64\x26\xcb\xfc\x88\xf8\x4f\xf6\x02\xe2\xe2\x0d\xf9\x67\x8f\xbb\xa5\x77\xa4\xc1\x34\x51\x7e\xe0\x50\x68\x11\x51\x58\x0f\x7c\x5c\x97\x87\xb9\x6e\x55\xc4\x07\x5a\x26\xf4\xf8\xcc\xff\xbb\xb6\xea\x18\xde\x1b\x2c\xc8\xc4\x49\x6b\x16\x04\x27\x70\xb7\xec\x6e\xb5\x42\x9e\x7a\xc1\x89\x12\x32\xaa\x4e\x47\x46\x7f\x4e\x9a\x98\x5d\x80\x54\x7e\xcc\x4c\x6f\xd9\xf5\x97\x63\xed\xe9\x16\x71\xf2\xaa\x57\x36\xa5\xd1\x48\xe3\xa8\xff\xc8\x8e\x61\x25\x3a\x85\xb0\x95\x36\x54\x95\x8e\xb2\xd6\x94\x01\xcb\xea\xe7\x75\xf8\xcb\x8c\x3c\xa4\x2d\x21\x69\x3e\xbe\x29\x88\x38\xdf\x94\xc1\xd7\x7b\x12\x6a\x12\x05\xcc\x47\xd5\x0d\x53\x67\xb6\xf2\x76\xec\x8d\xb6\xb9\x53\x24\xa3\x1e\x8f\xd2\xed\x2e\x43\x42\x0c\x4a\xd0\x2e\xa2\x77\xdd\x94\x8a\x55\x19\x3d\x0f\x0b\x4d\x1c\xf2\x83\x86\xc7\x25\x97\x5c\xe5\xc1\x2d\x2a\x6f\x35\x67\x3c\xc2\x2a\x06\x94\xcc\xa4\xda\xf6\xaf\xbf\xd3\x26\xd8\x8c\x18\x50\xf8\x34\xc4\x2f\xf0\xe2\x92\xba\x4f\x13\xe5\xef\x07\x74\xa5\x96\xd3\x39\x04\xc0\x26\x2d\x31\xdf\x2c\x58\x4a\x0a\x4f\x45\x3f\x6a\xe4\xa8\x8a\x27\x5f\x7d\xe7\x9c\x13\xae\x1a\x73\x11\x5b\xe0\x2f\x42\x5c\x6f\x17\x7a\x1e\xc4\x63\x9c\x42\xa7\x92\x80\x9a\x2b\x09\x19\xeb\xd3\x21\xe3\x16\x00\x1d\x5b\x2f\x84\x89\x4f\xce\xbd\x50\xa1\xdc\xf4\x4d\x70\x2b\x92\x45\x32\xfc\x0e\x4d\x3f\x9f\xf8\x48\x6c\x0e\xd1\x80\xee\xcc\x3e\x09\xe2\x27\x2a\x94\xdc\x7d\x24\xa4\xe8\x7a\x93\x1f\xe2\x49\x5c\xbf\x99\x2c\x0a\xae\x92\x01\xe0\x79\x62\x98\xf9\x36\x3d\xba\xc4\x75\xe8\xed"}, {{0x93,0x2a,0x20,0x0e,0xce,0xe7,0x22,0x3f,0x24,0x14,0x62,0x83,0xa4,0x04,0x8c,0x67,0xa6,0xa2,0xd2,0xfc,0x4b,0xa0,0xf9,0x24,0x8b,0xdf,0xfd,0x82,0xc6,0xcc,0xe3,0xcb,},{0xec,0x9b,0xfb,0x7a,0x6d,0x04,0xe7,0x26,0xfc,0x1e,0xa0,0xc4,0x24,0x61,0x0d,0xcb,0x79,0x67,0xbf,0x15,0xd6,0xd6,0x62,0x68,0x58,0xd4,0x11,0x19,0x8d,0x40,0xe2,0x39,},{0xcd,0x1e,0x4b,0xdf,0x4a,0x3e,0x4a,0x31,0xd6,0x52,0x54,0x33,0x3c,0x8c,0xc4,0x08,0x7e,0x4c,0xc4,0x0b,0x02,0xe2,0xa3,0x47,0xd0,0x9a,0x3d,0xde,0x69,0x84,0x90,0xc0,0x87,0xd7,0x10,0x9a,0xd0,0x20,0x9c,0x53,0xe9,0x87,0x58,0x9c,0xbf,0x3c,0xe2,0x64,0x12,0xa2,0xb0,0x2c,0xb8,0xa3,0xbc,0x93,0xfe,0xc7,0x5a,0xb5,0xd2,0xc3,0x87,0x03,},"\xdf\x95\x32\x07\x04\x82\x13\xaf\xb8\xe2\xaf\x45\x2c\x88\x9a\x21\xca\x13\x6a\x68\xc9\x29\xbd\xc8\x24\xf9\xa8\x9a\xc5\x96\xdc\xb9\x00\x19\xa4\x6f\xb6\x82\xbc\xfd\x96\x2f\xcc\xb2\x7d\x00\xba\xf8\xec\xca\xf9\xd9\xa7\xd8\x18\x3c\xab\xd7\xdf\xa5\x06\xf7\xba\xfb\x49\x35\xab\x04\x59\x31\xff\x8f\xae\xb7\x16\x31\xf9\xed\x6b\xb8\xf8\x47\x3a\xd6\x29\x0d\x7c\xf5\x19\xdb\x31\x0a\x44\x42\xc4\x61\x11\x8f\x67\xd1\xa6\xd1\x03\xba\xe6\xf2\x69\x7c\x94\xb7\x42\x6d\x9e\x02\xe3\xcb\x95\x22\xfd\x0b\x44\xae\xf6\x00\xc9\x62\xfe\xff\x58\x73\xd9\x8c\x27\x90\x88\x7b\x8e\x88\xd1\x60\x82\x4f\x1b\xba\x22\x01\x76\x39\xf8\xdc\xe6\x8f\x74\x34\x80\xde\xea\x1f\x92\xaa\x1f\xd4\x13\x5d\xd0\x64\x57\xa6\x0f\x36\xb7\xd7\xf5\x17\xd4\x0c\x94\xc0\xdd\xdc\x2e\x46\x58\x47\xd9\x09\xb9\xf6\x82\x45\xff\x2b\x42\x1d\x59\x19\x00\x1a\xae\x5a\xef\x24\xe0\x2c\x00\x2d\xa9\x07\xe8\x60\x5f\x16\x0e\xa6\x09\x6b\x58\x0b\x75\xce\xa0\x22\xd4\x02\xf7\xf5\xfd\xc4\x64\xf8\x7f\x78\xc7\x90\x6a\x01\xe8\xe4\x8f\xb5\xb3\x51\x74\x61\x2b\x48\xac\x8b\xc7\x50\xe0\xf3\xae\xb0\xa1\x2f\x7d\xfc\x09\xb0\x84\x2c\x17\x80\xa5\xfd\x9c\x54\xaf\xb9\x39\x9b\x94\x08\xba\xac\xcd\xa2\x0a\xfb\xe3\xd6\x82\x24\x8d\x7b\xf1\xef\xde\xf4\x90\x5a\x31\x9b\x0f\xfb\x10\x8b\x75\x3b\x71\xcc\x97\xe9\xe2\x1e\xc9\xb3\xdd\x28\xce\xe0\x39\xd9\x41\x8a\x11\x35\xf0\xad\xd0\x92\xaa\x66\x31\x2e\xa2\x91\x33\x00\xd1\xcc\x89\x16\x52\x43\x02\xbd\x3d\x1b\x09\xe6\xb2\x9c\x68\x57\xcb\xdc\x56\xef\x4b\x3f\x35\xd8\xee\x67\x72\x08\xef\xfa\x84\x6f\xdb\x06\x6b\x05\xeb\x71\x7b\x4d\x45\x12\x0c\xab\x72\xa7\xdb\x7a\x7c\xa8\x46\xe8\x7b\x16\xb6\x90\x47\xeb\x76\xd8\xf1\x8d\xa8\xe1\x39\x9e\xc0\xa8\xc9\xc3\x28\xcb\xe6\x0e\x0b\xf4\x20\x44\xd2\xeb\xf2\x81\x8b\x3c\x04\x75\x88\x45\x2f\xcd\x2b\x3e\xfc\x1e\x10\x09\xae\x07\x68\x87\x27\xdb\x8f\xb6\xdf\x2a\x2f\xe7\x5d\x1c\xf2\x2f\x32\xba\xc0\x9c\x82\xa6\xa3\xd7\xee\xd7\xd0\x05\x08\xcb\xe5\xb7\x24\x60\xec\xfc\xdd\x3e\xe9\x11\xef\xe5\x89\x8d\xbd\x8e\x4c\xe8\x59\x13\x26\xdd\x15\x22\xf9\xd2\x55\xda\x86\x1b\xf9\xeb\x2a\x1d\x57\x25\xd7\xd5\xd4\x27\x34\x03\x41\x94\x5e\x7b\xca\x8c\xf2\xff\x8a\x99\x74\x50\x95\x3e\x77\xd2\x03\x68\x3e\x4b\x0d\xaf\xc3\x30\xe0\x56\x72\xd2\xec\xd1\x3a\x3f\x44\x2d\xf1\x37\x04\x4e\x0f\x55\x6f\xfb\xce\xff\xea\x26\xcb\xae\x26\xcb\xa6\xf2\x56\x8c\xf3\x9f\x90\x84\x89\xe1\xa9\x2e\x76\xaf\xbf\x29\x79\x95\xda\x4b\x2c\xb1\xab\xc9\xee\x1f\xe4\xdc\xa5\xaa\x83\x8b\x2f\xbd\xc1\x09\xe8\x9b\xef\x3c\xe5\xa3\x6e\x5b\x2f\x71\x2a\xc4\xc8\x89\x43\x82\x48\xfa\x5a\x21\x50\xca\xc6\xc9\x77\xb5\xe0\x54\x3f\x40\x10\xb7\x31\x47\x32\xfd\x18\xe7\xfd\x59\x82\xe8\x32\x76\x51\x9e\x78\x72\x5e\x5a\x5e\xeb\x86\xf4\x89\x20\x84\xae\x52\xda\x38\x49\xc2\x28\xc8\x09\xed\xbf\x69\xa2\xcc\x47\xc4\x78\xd1\x87\x19\xf1\x11\xd7\x37\x88\x7c\x7a\x2e\xb3\x25\x08\x98\xdb\x34\xe5\xe5\x07\x6f\xab\x9f\x4a\x9e\x6e\x19\x29\xa3\x48\x08\x36\xde\xa0\x7b\xa4\xd6\x3f\xce\xfc\xe5\x54\x34\x30\xa8"}, {{0x5c,0x48,0x3e,0x83,0x7e,0xb0,0x1e,0xd5,0xa4,0xad,0x5d,0xb3,0x79,0x26,0x99,0x82,0x4d,0xf1,0x3e,0x57,0x6b,0xe9,0x67,0xd1,0x21,0x15,0xc8,0x5e,0x02,0x86,0xe6,0x28,},{0xfe,0x1a,0xa8,0xb0,0x69,0xda,0x56,0xe6,0x76,0xef,0x3a,0x57,0xd9,0xbb,0xa8,0x83,0x05,0xea,0x03,0x28,0x08,0xee,0x63,0x52,0x73,0xb3,0x7c,0x5c,0x63,0x5d,0xef,0x4e,},{0xc1,0x7c,0x2f,0xbf,0x8c,0x00,0xbc,0xea,0x30,0x35,0xbf,0x0a,0x62,0xd3,0x02,0x29,0xdb,0x74,0x2c,0xab,0x11,0x99,0x67,0x7c,0x7e,0xb4,0xeb,0x0e,0xf5,0xc7,0xb5,0x1a,0xd4,0x87,0xa4,0x97,0x1b,0x63,0x1e,0x79,0x4a,0x58,0xbb,0x08,0x23,0xcc,0x0f,0xe6,0x26,0x10,0xfd,0xa6,0xa9,0xe0,0x3f,0x8c,0x4c,0x33,0x81,0xcb,0x15,0x4c,0xef,0x0b,},"\x58\xd5\xe2\xcd\x89\x9b\xa9\x85\x37\x8b\x3e\xc3\x3e\x9a\x86\x98\x22\xb2\x3d\x5d\x89\x6a\x28\xf4\x24\xfc\xd6\xe4\xcc\x28\xb8\x0d\x4a\xaf\x2d\xe8\x04\x36\x7e\xfd\xf5\xe4\x23\xb1\x23\x4d\x82\x1d\x63\xac\x05\xea\xed\x12\xc7\x3e\x8e\x36\x08\xaf\x0d\xdc\xcc\x83\x86\xb7\xd8\x42\xb1\x2e\x60\xd3\x0c\xed\xe3\x25\x53\x94\x5e\x78\x29\xe9\xb2\x3f\x5c\xcc\x2e\x71\x03\xa0\x8f\x2c\xdd\x9e\x75\xa7\xb3\x6f\x5e\x63\x72\x0e\xf0\xd4\x9b\x25\x92\xbe\xf3\x74\x02\x68\xc8\x9c\x86\xa6\xcb\xdf\xe2\x01\xde\x0d\xb9\x98\x5c\xeb\x19\x39\x9c\x9a\x1d\x5b\xb0\x58\x6a\xf3\xc8\xcd\xf2\x71\x32\x99\xeb\x04\x43\xa5\x41\xa4\x73\x84\x60\x72\x43\xc5\x4a\x05\x91\x50\x58\x36\x7d\x3f\x2d\xb3\x80\xed\x31\x7a\x8c\x12\xc7\xa6\x3e\x80\x9c\x2e\x84\xd4\xac\xb9\xd9\xee\xf5\x4c\x6f\x5a\xf7\xab\x59\xcb\x91\x68\xb1\x06\x8f\x9d\x2c\xcd\x97\x8f\xe7\x21\xba\xd6\x8a\x66\x9f\xfe\xde\xa3\xe9\x2c\x76\xb3\x2e\x31\x66\x65\x8e\xe3\xbd\x0d\xeb\x1b\x08\x41\x94\xce\x35\xd9\xa7\x41\xc5\x7f\xc2\x24\x1e\x68\xef\xaa\x65\x32\x0b\x23\xa1\xdd\x19\xea\x8b\x7e\xc8\x1e\x76\xf1\xe9\x16\x3f\x95\x92\xee\xee\x5a\xf8\xec\xed\x02\x72\xf3\x35\x12\xd0\xd4\xca\x06\x7f\x05\x55\x1b\x26\x53\x96\xe1\x00\x14\x78\x3c\xac\xac\x79\x43\x7b\x19\x84\x2d\xe6\xab\x91\xb9\xd9\x23\xbb\xeb\x50\x33\x25\xbc\x54\x86\x9f\x66\x3e\x6e\xa4\xae\x68\x97\x70\x1b\xe7\xe1\x1d\x16\xcd\xfa\xe0\xee\xe8\x61\x86\x20\x00\xe7\xa4\x16\x07\x81\x54\x7e\x42\x52\x6a\xf5\x1b\xa9\x69\x8d\x23\x4a\xaf\x51\x0d\xa8\x1a\x0d\xbf\x26\x43\x66\x15\x3d\x7a\x6d\x5e\xb3\xfb\x08\xb9\xbb\x5e\xa0\x65\xc2\xf5\xe5\xb6\xbb\x67\x9d\x2e\x21\x0b\x5b\x40\xe2\xbc\x82\xf7\x8d\xc9\xab\x58\x24\xb7\x4a\xad\xad\xd8\x9b\xf8\xa8\xb7\x3a\x0a\x2f\x43\xac\x74\x83\x78\x92\x1a\x73\xa2\x52\x70\x4a\x4a\xdb\xf7\x40\xcb\x99\xc1\xe1\x59\x4c\x37\xac\x9a\xcc\x19\xf5\x23\x15\xc6\xa8\x46\xa5\x7b\x36\x12\x8c\x64\xd7\x67\xaf\x44\xe9\xc8\x63\x05\xbf\x18\xba\x7c\xd5\x26\x80\x52\x3a\x3b\x10\x2f\xba\x6f\xe5\x55\x67\x06\x9d\x20\x47\xcb\xdd\x96\x05\xea\x12\xc8\x87\x7d\x39\x9c\x1e\x66\xe3\x38\x17\x73\x1f\x50\xb8\x4f\x81\x7d\x1f\x07\x60\xa4\x0f\x97\x46\x86\x18\x93\x41\x05\xeb\x00\xec\x50\xc7\x6d\xb3\xc5\x3f\xcf\x43\xfe\x17\x02\x90\x7d\x9a\x75\x6b\xcf\x43\x9f\x88\x31\xd0\xbf\xac\x92\xe7\x05\x8f\xb1\x57\xbe\x3e\x59\x1d\x37\xeb\x34\x16\x5e\x3c\x6f\xc6\x0e\x72\x29\x4c\x08\x3e\x47\x76\x26\xf9\x00\x1c\x1d\x73\x7c\x29\x03\x77\xdf\xa5\x8e\xa4\xea\xd3\x02\x8f\xc7\x62\xce\x8a\x3a\xfe\xc2\xe6\xe1\x32\xc6\x62\xdf\x60\x34\xab\x55\x4f\x93\xef\xac\x65\x7a\xd3\x4f\x61\x07\xd3\x47\xfc\x5c\x5e\x53\xf3\x73\x3e\x17\x8b\x76\x01\x4d\x2f\x9b\xbd\x06\xef\x2d\xfe\x60\xe2\x08\x3d\x88\x65\xf7\xf5\xb2\xac\xc0\x25\xd9\x12\xe5\xcf\x6c\xda\x6e\x79\x81\x43\xe9\xdb\xbc\x70\xa0\x21\x1d\x8e\x40\x03\xd7\x8b\x38\x3d\x66\xa6\xad\x29\x71\x7c\xa2\x4e\xdd\xef\x7d\xf7\xcd\x3a\x7e\xf6\x52\xab\xa5\x48\x7a\xfe\x5d\x02\x6c\x9b\x10\x28\x07\x29\x4e\xb2\x7d\x98\x24\xee\xb6\xb4\x0f\x08\x3d\xe7"}, {{0xb0,0xd0,0xab,0xdd,0x84,0x44,0xe1,0x0f,0x29,0x37,0x54,0xac,0x9f,0x16,0xe3,0x1b,0xdc,0xdd,0x97,0xb7,0x06,0x71,0x28,0xaa,0xe8,0xe4,0xd7,0xf1,0x12,0x89,0xe2,0xcd,},{0x1c,0x78,0xcc,0x01,0xbe,0xa1,0x53,0x52,0xb6,0x3c,0x56,0x97,0xf1,0xcf,0xe1,0x2f,0xfd,0xd1,0x6d,0xdc,0x1d,0x59,0xe7,0x79,0x51,0xb6,0xe9,0x40,0x8e,0xe2,0x28,0xad,},{0x64,0x40,0x8b,0xdd,0x2d,0x0f,0xc8,0x92,0xa5,0xb6,0x2b,0x5a,0xcf,0x8e,0x3b,0x3c,0x73,0xc0,0xb5,0xc4,0xfa,0x2a,0x72,0xe3,0x9d,0xd6,0x08,0xd4,0x93,0x7f,0x93,0x32,0xf7,0x3e,0x14,0xd0,0x8b,0xad,0xc6,0x27,0x01,0x14,0xd1,0xf1,0xa5,0x56,0xcc,0x6e,0xe8,0x48,0x8a,0xbb,0x90,0x7f,0x79,0xae,0x17,0x5c,0x35,0x2e,0x9f,0x11,0xee,0x05,},"\xaa\x27\x6c\xc5\x43\xfc\xc6\x2d\x70\xa7\x04\x60\x8d\x98\xce\x51\xb6\x45\xb5\xc2\x4a\x64\x0a\x5d\xf1\x0a\x55\x91\x41\x7d\x10\x89\x26\xdf\x3f\x0c\xe1\xb9\x21\x03\x33\x09\xeb\x8d\x86\x59\xf4\x89\xfd\x6f\x79\xaa\x1b\xf4\x88\x2d\x72\xac\x69\xcc\x58\xd3\xbc\xe0\xfa\x89\xb1\x64\x11\xe9\x75\x3e\xb4\x0c\x6c\x4d\x59\x8d\xc8\xf4\xab\xb0\xbc\x48\xf1\x37\x03\x71\x32\x6c\x9a\x86\xbb\xc2\xac\x62\x14\x47\x8e\x78\xa3\x84\x08\xbd\xda\xfa\xa9\x59\x26\x00\xc4\x9a\x12\x9c\x05\x39\x2f\x8a\x7d\x64\x2b\x49\x13\x7a\x20\xf3\xfe\x9f\x11\xee\x17\xcf\xa3\xaf\xd2\xaf\x71\x56\x5e\x9c\x40\x08\x0b\x60\xcd\x0d\xbc\x37\x8e\xda\x06\x2c\x7c\xbc\x7f\xe9\x72\xbd\xe4\x50\x9a\x1d\xe9\x5f\x14\xdf\x48\x2f\x48\xaa\xcc\x46\x3c\xd5\x94\xf6\x6d\x64\x8d\x37\x94\x73\x8a\xd6\xab\x49\x6e\x2d\xa5\x0b\x0d\xb2\xba\x7b\x65\x91\x85\xe4\x58\x7f\x18\x2e\x83\x3d\xe7\x50\xfa\xac\xdd\xf2\x1a\xf5\xe0\xcf\x4c\x9a\xf3\x85\xb0\x4f\x7b\xe2\x31\x49\x8a\xd0\xb7\x42\xd5\xa8\x7c\x06\x11\x5d\xb2\x30\x97\x3a\x51\x42\x7f\x20\x2f\xa3\x9a\xfb\x98\x28\xb5\xf0\x3f\xa3\x27\xcb\xd5\x2d\xfe\xc6\x6d\x71\xea\x31\x98\x65\xdc\xf6\x81\x0f\x18\x58\x47\x2d\x8b\xea\x3e\x44\x7a\xdf\xb4\xb6\x07\x58\xe8\x6b\x48\x13\x37\x09\x73\x2d\x2b\xcf\x51\xc7\x6c\xaa\x84\x7b\x65\x37\xfc\xb0\x5b\xb8\xc8\x7d\xc5\xe9\xfb\x02\x2b\x32\x60\xc1\xd7\x1b\x14\x98\x59\xc9\x66\x3d\xbd\xae\x6a\x7b\xbf\xd6\xde\xb9\xd1\x23\x80\x9c\x24\x14\x01\xaf\x10\x71\x9c\xf9\x1a\x6b\xed\x16\x08\x4c\x44\x46\x07\x35\x9e\xd8\xf0\x18\xdb\x11\x15\x11\x89\x2b\x46\xbd\xac\x6c\x9c\x61\x38\x41\xde\xd8\x86\xb9\xde\xc0\x6c\x01\xe8\x04\x87\xe4\x8f\xbe\x77\x8e\x9e\x97\x50\x8f\xfd\xa0\x57\x78\x53\xaa\xbd\xca\xca\x8b\x0b\xab\x6c\xe4\x15\x57\xaa\xb9\x63\x1c\x96\xd6\x09\x77\xe3\x57\x18\xb6\x05\x95\x27\x3f\xdb\xa1\x40\xf5\x50\x0a\x8d\x35\x76\xf5\xa9\xfc\x8f\x3c\xa4\xc0\x2c\x16\x7a\xf2\xe0\x3d\x25\x75\x0b\x42\xad\xb0\x3b\x14\x17\xf2\xb6\xd2\x19\xbe\x5f\x84\x29\x33\x1a\x26\xa4\x49\xb5\xd4\xdb\x2b\x1a\x09\x15\x2e\xea\x2b\x25\xd2\xdf\x7e\xf6\xfe\x0a\x32\xe2\x5f\xae\x79\x36\x0a\x9a\xee\x15\x11\xfd\xa8\x06\x45\x50\x93\x7a\x71\x30\x97\x19\x30\xc6\x73\xbb\x35\x8e\x5f\x55\x95\x1f\x50\xb1\x46\xd8\x5d\x38\x3f\x3e\x01\xc1\x51\xec\xe6\xc0\x6d\x83\x67\x01\x25\x32\x80\xfd\xcf\xf4\xe1\x39\xd3\x31\x9a\xb2\xe2\xca\x71\xbc\xc3\xfa\x0f\xaf\x7c\x70\x2c\x9c\x60\x4e\x56\x51\xde\x4a\xf5\x70\x0e\x9e\xde\x72\x58\xb9\xbc\x14\x8d\x55\x95\xcd\x34\x17\x0e\x3e\x5c\xf2\x92\x82\x83\x90\x90\x8f\xda\x96\x1f\x22\x30\xac\x0b\x8c\xac\x64\x73\x97\x32\x70\x6c\xe2\xd5\xe5\x9a\xbd\x6d\x5e\x20\x7b\xda\xfe\xa7\x4d\x28\xd7\xa7\x58\xf2\x20\x0e\x4e\x00\xa0\xbc\xf0\x30\x6a\x3c\xab\xda\x47\x02\x4f\xab\xea\xe4\x88\xab\x5c\x32\x37\x15\xcf\x3c\xa7\x72\x0a\xf9\xeb\xbf\x85\x82\xe1\x15\x8a\x09\x9d\x73\x6b\x56\x9b\x9d\x40\x29\x58\x17\xea\x25\x54\x06\x8b\xef\x32\x44\x2c\x11\x1e\xc8\x14\xc6\xed\x41\x59\x19\xba\x73\x52\x63\x34\xdf\x30\xba\xc6\x66\x08\x4e\x56\x01\xc2\x28\x1c"}, {{0x49,0x84,0x97,0xfd,0xcc,0x6a,0x10,0x58,0x91,0xe0,0x23,0xff,0x32,0xd7,0x5f,0x7c,0x37,0x48,0xd8,0xc5,0x2d,0x87,0xdd,0x3b,0x27,0x75,0xae,0xfd,0x81,0x60,0xa1,0x43,},{0x2d,0x79,0xae,0x9c,0xee,0x4a,0xc6,0x27,0x5b,0x05,0x74,0x9c,0x43,0x8e,0xbe,0x55,0x2b,0x41,0x3d,0x87,0x3c,0xc0,0x7f,0x14,0xf5,0xfa,0x13,0x01,0x77,0x21,0x4c,0x54,},{0xb0,0xa3,0x6a,0x2c,0x93,0x47,0x56,0x34,0x8e,0xb4,0x7c,0x25,0xa3,0x2c,0x3f,0x2a,0x5d,0xdb,0xd5,0x8f,0xcc,0x72,0xa0,0x8c,0x3c,0xea,0xd1,0xa2,0xd9,0x00,0x33,0x5c,0x30,0x01,0xe3,0x5b,0xfe,0x1f,0x3f,0xb5,0xa5,0x55,0x00,0x9b,0xa8,0xe9,0x68,0x74,0x49,0x4b,0x97,0xe8,0xb0,0x97,0x00,0xed,0xcb,0x1f,0x25,0x84,0xb9,0xd0,0xfe,0x03,},"\xbe\x38\xbc\x8c\xdf\x46\x19\x0e\x30\x4a\xb5\x3d\xd2\x9c\x2b\xc4\x09\x54\xfd\x4c\x6d\x2b\xb9\x90\xf9\x3b\x2b\x5c\x69\x1f\xdf\x05\x27\xc2\x60\xf5\x06\x61\x87\xf2\xd0\xf3\x1f\x43\xa0\x8b\x36\x0e\xa1\xed\x82\x00\x65\x17\x64\xb8\xfa\x49\x59\x5a\x15\x94\x10\x9e\x49\x67\x59\xab\x66\x23\xfa\x33\x37\x8d\x80\x0e\x61\x17\xe0\x79\xe1\x3f\xe8\x5c\x81\xb6\x3e\xbe\x24\x7b\x3d\xf6\xc1\x58\x4b\xc7\xcf\xfb\xdf\xa4\x5f\x2a\x2c\xe7\xc2\x37\xaa\xaf\xef\x8c\xbc\xa7\x0b\xca\xbc\xe0\xb8\x47\xd5\x51\xf4\x6a\x7d\x15\xce\x2a\x0d\x3d\x54\x5a\xba\xcc\x59\x30\x01\x0c\x53\x64\x88\x87\xd4\x76\xe0\xd1\x3a\x34\xfc\x1c\x54\xdf\x09\xd1\x06\xed\x75\x8d\xee\xdc\x76\x1d\x55\x7a\x73\xb2\xbc\xdd\xde\xfb\xa4\xed\x00\x59\x97\xb1\x92\x79\xb9\xd2\xde\x37\xd0\x41\xfe\x01\x3e\xef\x05\xa2\xe1\x1c\x9a\x23\x4e\x87\xcc\x0e\x16\xc0\xc6\xda\x42\xaa\xa5\xbf\x99\x64\x17\xbf\x64\xe5\xb7\x85\xd6\x7d\xc3\x25\x47\xc1\xf0\x52\x17\x8d\x69\x4c\xf2\x0f\x16\x98\x58\x9e\x7e\xd4\x9b\xe2\x9d\xd5\x9f\xd5\xc0\x1b\xa1\xd9\xf5\xfb\x06\xa7\x58\x95\xb7\xb1\xe1\x58\x95\x09\x7e\xbd\xe8\x4c\xad\x63\x03\xaa\x0a\x86\xdb\xc3\x24\x74\x7d\x97\x24\x5d\x70\xc5\x20\x3b\xe0\x1b\x06\xcb\xde\x06\xae\x03\x72\x04\xd2\x37\x30\xcd\x69\x61\x89\xf7\xac\x26\x7c\xf2\x02\x17\x99\x29\xce\x54\x10\xe0\xe3\xad\xe5\x13\xd2\x20\x1b\xfd\x20\xfe\xfa\x40\xb4\x47\x6f\x27\xbf\x90\x7c\x76\x2e\xb7\x26\x2a\x5b\xe1\x3c\xfc\x04\x7a\x84\x6d\x20\xa9\xf2\x31\x1b\x64\x69\xb0\x6a\xb5\x45\xf0\xec\x9f\xc4\x46\xea\x25\x0c\xd3\xb7\x3a\x7b\x6b\x96\x0c\x10\xca\x4c\x2d\x6c\x64\xa1\x56\xa1\x8c\x9f\xb8\x10\xe4\x9a\xfd\x0c\x36\xda\xab\x8b\x8b\x85\x66\x43\xa4\xcc\xaf\xa9\xad\x88\x6e\x91\xe5\x44\x53\x5b\x8e\xdd\xa2\x7c\x90\xc0\x6a\xb6\xbc\xc5\x36\x28\xbe\x18\xd7\xd6\x36\x9c\xa1\x80\x1f\x91\xc2\xe0\xb9\x5f\x36\xd7\x02\xf7\x72\x34\xb4\x10\x07\x19\xc0\x59\x95\x1e\x45\xb1\xf9\x16\x98\x39\x34\xe3\x2b\x4d\x4d\x8f\x29\xc0\xa3\x73\xf8\xd8\xf0\x91\x8b\x96\x78\x65\xcd\x0e\x4b\xec\xa0\x13\x27\xc9\x9d\x5f\xde\xd4\xc1\xa6\x9a\xc2\xd4\xd9\xb7\x8f\xfb\x83\x05\x67\x00\x21\x04\x02\x50\xcc\x27\x73\x7e\x75\xdf\x75\x76\x0f\xec\x8b\x8d\x30\xb2\x45\x65\x4f\x3c\x12\xf1\xf7\xce\xa0\xbc\xe7\x8a\xb3\x69\x35\x78\xaf\x3e\xa6\x1f\xfc\xcd\xf9\xba\xf7\xc3\xea\x65\xb8\x8f\xc8\x54\x12\x81\x26\x47\x67\x96\x89\x2c\x66\x3b\xd1\x45\x18\xc9\x91\x86\x29\xa1\x09\x5f\x61\x4e\x04\x92\x44\x6c\x3d\x84\xb1\x6e\xc9\x4f\x7e\xca\xda\xeb\x6b\x65\x9b\xbb\x48\x67\xb5\x79\x06\x17\x14\xfd\x5b\xb0\xfa\xa4\xad\x6b\xe0\xff\xb3\x88\x8b\xea\x44\x7e\x4e\x34\x38\xc8\xf0\xea\xe6\x44\xfb\xd4\x5a\x38\x02\xdc\x40\xec\x45\x1b\x21\x2b\xd5\x92\xda\xcd\x4d\xa9\x66\x86\xdc\x8b\x20\x24\x25\x7f\x25\xe9\xc8\x30\xbf\xf7\x95\xee\xe8\x5d\x87\xa0\x90\xc1\xa4\x23\x21\xe7\x10\x55\x57\x64\xed\x82\x57\xc9\x41\x5c\x7f\x22\x4b\x53\x75\x58\xce\xfd\xc6\x15\x12\x9f\x28\x35\x02\x67\xc0\x1b\xa0\x40\x3e\x07\xf5\xc6\x06\x7f\x91\xc8\x5a\x2c\x50\xc8\x66\xdc\x43\x88\xaf\x38\xd2\x16\x02\x03"}, {{0xd9,0x62,0xa6,0x71,0x9e,0x5c,0xc7,0x72,0x4c,0xa4,0xa1,0xd5,0x59,0x53,0x68,0x12,0xb4,0xe2,0x2a,0xa7,0xbc,0xb1,0x3e,0x4f,0xb1,0x72,0x2d,0x28,0xe0,0x45,0x21,0x7c,},{0xa9,0x44,0x59,0x2d,0xbc,0x7d,0x77,0x03,0x9d,0x72,0x02,0x56,0xc3,0xfd,0x34,0x0d,0x34,0xdb,0x89,0x2a,0xb1,0x3e,0x48,0x12,0xd6,0x62,0xe2,0x84,0x0c,0x28,0xb6,0xd0,},{0xdf,0xb9,0xb6,0x35,0xac,0x0e,0xdf,0x83,0xb7,0xb5,0x9d,0x0b,0x84,0x09,0xaf,0x47,0x5f,0x66,0xfc,0x99,0x46,0xaf,0x0b,0x7c,0x63,0xab,0x8c,0xf5,0x92,0x9d,0x47,0x01,0xa1,0xbf,0x66,0x95,0x9c,0xde,0x62,0xfb,0xcf,0x59,0xa4,0x8a,0xb3,0xbb,0xaf,0x0b,0x9a,0x61,0xb6,0xe0,0x0b,0x21,0x81,0xeb,0x93,0x42,0x82,0x07,0x0a,0x5d,0x53,0x00,},"\xa6\xaa\x7a\x19\x0d\x00\x3a\xb1\x75\x33\x2b\x8f\x58\xe7\xca\xeb\x69\x08\x54\xd9\xdb\x56\xdb\xb6\x95\x7b\x3f\xb6\x54\xe2\xe0\xda\x99\x1f\x31\x54\x21\x42\x04\x13\x5d\xf1\xe1\x10\x43\x17\xc9\xe3\xc5\x8e\xed\xff\x1f\xc6\x1a\xba\x57\x74\x4c\x0c\x7e\xf4\x86\x00\x0a\x70\xb2\xc1\x42\xeb\xad\xdc\x07\xab\x06\x5e\x2a\x85\x5d\xaf\x19\x8a\x68\x03\xac\x24\xef\x37\x24\x48\x7c\x13\x51\xdd\xed\xa0\x51\x39\x13\x45\x7d\x76\x86\x0d\x78\xa9\xb6\xbc\x3d\xba\x66\xc4\x0e\x5f\xc3\x49\xa8\x73\xad\x60\x65\xce\x7d\x7f\xdc\x2c\xc4\x83\xb3\xae\xfb\xf2\xf0\x3d\xd6\x69\xbd\x9c\xb8\xf6\x3c\xee\x47\x78\x5c\xac\xb0\x9d\x87\x2c\x9a\xeb\x83\xe9\x86\x84\x05\x25\x43\x24\x03\x79\x82\xe0\x86\x13\x45\x5d\x95\x21\xd8\x8e\xa2\xfd\xa0\x20\xbe\x73\x0c\xfc\x8c\x07\xcb\x0b\x37\x61\x4c\xcb\xa2\xfa\x3e\xc4\x98\xb8\x15\xbb\x5a\xdb\x99\x6e\x84\x8b\x38\xc0\x15\xa6\xa5\xc7\x52\xeb\xda\xc7\xb9\xee\xd8\xb6\x96\x19\xd8\xc8\x46\xb6\x6f\x78\x16\xd1\xdf\x1e\xbc\x21\x07\x1c\xef\x0b\x25\x1e\x2e\xab\x59\x82\x7f\x6d\x60\x55\x08\x43\x70\xfd\x27\xc2\x03\xe8\x6a\x18\x9f\x1e\xe1\x1e\x84\x03\xab\xdc\xbd\x1f\x45\x34\x1a\x82\x05\x25\xd8\x63\x7d\xc4\x84\xa5\x18\x5d\x65\x51\xcb\x88\x2a\x96\xb9\x98\x1a\x5f\x1a\x82\x1f\x27\xb6\x56\xff\xf9\x0e\x7f\x69\xbf\x28\x6f\x75\x2f\x97\x0f\xfc\xa5\xc5\x3e\x08\x50\xb2\x0b\x94\xf9\x43\x16\x27\x09\x4a\xce\xa9\x12\xa8\x80\xb7\x49\xa6\xf8\x0b\xb2\x06\xcc\xaa\x74\x6f\xa7\x0c\x83\x3c\x9f\x32\x30\x89\xce\x05\x58\xc9\xdc\x20\x0d\x57\x39\xd1\xe4\x99\x63\x4f\x2c\x16\xe5\x4b\x7f\x6d\x78\x19\xc4\x70\x71\xb6\x0b\xd5\x4d\xd0\xf2\x73\xa3\x19\x75\x0f\xd3\xc5\x10\xa4\x9a\xb5\x6f\x63\x0c\x7c\xe6\xd8\x02\x3d\x97\x86\x23\x46\x85\x9b\xc0\xb4\xd6\x05\x22\x49\x69\x70\x89\x03\x76\x03\x01\x40\x9c\x60\xab\x25\x17\x56\x11\xf0\xbe\x98\xb2\x3a\x8c\xd8\xac\x53\x5e\x35\x13\xbc\x77\xe1\x45\x21\x93\xda\xdf\x44\x35\xe6\x3c\x36\x29\xb6\x66\xa5\xea\x4c\x4b\xad\x36\xea\xca\xd2\x60\x14\x04\xea\xbd\x8d\x9a\x07\x95\x6e\xc2\xb4\xb7\xbb\x63\x36\xed\x75\xb8\xdf\x8f\x16\xde\x42\xc0\xfc\xae\x93\x65\x2e\x3c\x40\x7c\xbd\x45\xe8\xd4\x13\xef\x51\xe8\x54\x2d\xf6\x25\x12\xee\x79\x3e\x41\x35\x8a\x1d\xe1\x92\x46\xc6\x58\x6b\x3c\x14\x07\x41\x04\x21\xf6\xe8\x65\xc7\x5a\x9f\x4a\x6a\x47\x88\xf8\x4a\x9c\x78\x1d\x8f\x80\x24\xbf\xdb\xe2\x5b\xdc\x7d\x4b\x69\xcb\xaa\x77\x19\x62\x8c\x0b\x07\xec\x2c\x4a\x23\x4f\xff\x4a\xc3\xd4\x93\x5b\x9c\xe4\xc8\xa1\x69\x47\xab\xe7\x95\x1f\xf8\xd9\xac\x92\x15\xe3\x38\xfa\x0f\xe9\x12\x41\x76\xd1\x7b\xac\x1e\x05\x59\x2c\x43\x98\x68\xae\x5a\x4f\x75\xfd\x1e\xa8\x2a\xa4\x54\xc2\x0a\x93\x9d\xed\xa7\x29\xa0\xe1\x96\x46\xce\xbd\x82\x20\x49\xc8\x25\xc7\xe3\x1c\x6e\xfa\xd4\x5e\x30\x6f\x2d\x9f\x05\x69\xe0\x71\x73\x31\xf4\x80\x04\xc2\x6e\xbf\xe6\x8f\x38\x43\xe9\x0f\x80\x67\x03\x2d\x21\xe7\x86\xc8\x53\x9e\x01\xbe\x3c\xea\xc5\x95\x4a\x05\x46\xc8\x4b\x73\x4d\x99\x94\x56\xa7\xc4\x5f\x8c\xeb\xaa\x47\x8e\x54\x80\x07\xf9\xd3\xaf\x83\x6f\x75\x4d\xe4\x12\x3f\x2f"}, {{0xe1,0xd1,0x41,0x65,0x18,0x92,0x1d,0x07,0xc8,0xc3,0x9e,0x29,0x73,0xd8,0xea,0x12,0x49,0xca,0xa8,0xbf,0x65,0x9c,0xc3,0x6c,0x79,0x37,0xf8,0x4e,0xce,0x7a,0xd4,0xfc,},{0x48,0xbd,0xcc,0x3f,0x1a,0x5b,0x80,0x58,0xed,0x9a,0x32,0xef,0x1c,0xc4,0x8c,0xf7,0xa8,0xab,0x76,0xa6,0xe4,0x51,0x9e,0x5a,0x82,0x85,0x52,0x41,0xad,0x6f,0xff,0x8a,},{0x42,0x32,0xd2,0xa4,0x81,0x08,0x4d,0x11,0x96,0xdb,0x62,0xf2,0x2d,0xc7,0x4c,0xf2,0xea,0xf2,0xdb,0x0d,0xf0,0x5a,0xd7,0xcd,0xde,0x67,0xbf,0xc2,0x9b,0xff,0x56,0xcd,0xe0,0x19,0xac,0x9f,0x03,0xd8,0x1f,0x18,0x27,0xeb,0x1e,0x3b,0x0a,0xbe,0x02,0x04,0xca,0x7f,0x77,0xfa,0x87,0x4a,0xb5,0x26,0x83,0x54,0xff,0x08,0xbb,0x7f,0x48,0x00,},"\x3d\x26\x3d\xe1\xab\x91\xe8\xdd\x7b\x31\x7f\x7a\x27\xfb\x60\xa6\xe1\x83\x8c\x0c\x79\x3b\x03\xab\xbe\x70\x82\xb6\xbd\xa0\xc7\xc4\x60\x62\x26\x21\x92\xc8\x8b\x65\xc0\x26\xc1\x74\x58\x4d\x29\x64\x97\x10\x42\x9a\xe4\x4a\x46\x14\x0b\x4c\x82\xc8\xa0\xb7\x4d\x56\xa0\x04\xf8\xe2\xf5\xc1\x8f\x84\xf0\x46\x41\x53\x77\x2f\x83\x12\x63\x3f\xc6\xad\x28\xa7\xd9\xfb\x55\xf7\xd7\x8c\xd6\x48\x8c\xa5\x81\x17\xea\xf9\x23\xfa\x28\x87\x5e\x2b\x31\x89\x89\x31\x85\xaa\x3c\xcd\x04\x4d\x3f\x11\x0e\x2e\x7c\xab\xdf\x6f\x81\x4b\x9f\xdd\x67\x33\xbd\x5f\x30\x7a\x87\xbc\x73\xb6\x25\x0d\x58\x83\x93\x6d\xeb\x1d\xb0\xe0\xaf\x1b\xe7\xab\x32\x9b\x5c\x6b\xd9\x35\xbd\x8f\x8d\xc8\x88\xf0\xd1\xc4\x64\xed\xbc\x02\x3c\xbc\x08\x07\x53\xee\x8f\x79\x9f\x10\x72\xba\xd1\x14\x4d\xfa\xa6\x15\xa5\x9e\x2a\xed\xc6\x62\xe8\x3c\xb1\xf8\xe5\x20\x96\xa7\xee\x48\x3b\xf8\x73\xb2\x5a\x0c\x04\xc1\x85\x1a\x0e\x87\x37\x50\x63\xaa\x1a\x94\xfa\x83\x5c\x05\x26\x40\x36\x6b\x79\xf7\x35\xd3\x28\x61\x97\xab\x32\xeb\xdb\x51\x23\xf6\xb4\x7a\xd3\xf4\x42\xc4\x4c\x53\x0a\x68\xf8\x51\x27\x59\xe9\xcf\x38\x6f\xba\x07\xb8\x06\x4b\xc8\xfe\x83\xe2\x45\x49\x5e\xc4\x5f\x89\x38\xf8\x25\x9d\xc8\x01\x62\x05\xf7\x8d\x39\x54\x44\x2e\xc1\xb4\x45\xd8\x3d\x95\xad\x18\x05\xa5\xe0\xe8\xb3\xd5\x6b\x87\x0a\x20\xda\x18\xd7\x4f\x26\xf5\x50\xa9\xc7\x53\x4a\x41\x44\xdc\xbc\x1c\x3c\xdb\xbe\x47\x0c\xc1\x53\x90\x50\x43\x08\x8f\xac\xf1\xd3\x03\x55\x9d\xe4\x1e\x96\xc0\xab\x40\x9b\xb3\x6d\xcf\x38\xcc\x90\x38\xa6\xa4\x90\x8d\xea\x82\xa6\x53\x19\x5c\x16\xf2\x90\xa7\xc3\xac\x48\x76\x36\xcc\x5b\xcb\x18\xd1\x5a\x14\xac\x62\x4c\x70\xb6\xf6\x46\x2b\xf2\x49\xe0\x00\xce\xe9\x24\x01\x8b\xdf\x7d\xde\x39\x11\x4c\xb4\xf6\x52\xe1\x22\xe8\x74\x4d\xa2\x8b\x05\x89\xe1\x28\x4d\x70\xd9\xf1\x06\xde\x16\xd0\x73\x64\x80\x80\xe6\x43\x7f\xf3\x84\xe6\x81\x77\xd5\xcb\x71\x8e\x2c\xe3\xf1\x7b\xa1\xe9\x90\xae\x3c\xe9\x40\x66\x01\x30\xe9\x37\x50\xb8\x2e\x2f\xb4\x1a\xa3\x69\x77\x45\x68\xd7\xcf\x28\x67\x25\xe3\xc5\x8f\x63\xe7\x3f\x86\x97\xae\xec\xc7\x17\xc5\xcf\x1a\xf7\xad\x74\xf4\x46\x29\x2c\x90\x5d\x84\xe2\x2b\x23\xd4\xe0\xd2\x60\x4b\xff\x48\xfe\xfc\x40\xc6\x20\x4b\x5e\x34\xc0\x42\x29\x2e\x53\xbe\xc9\x36\x01\x59\xa5\xcd\x97\xb2\xdf\x57\x86\xb8\xf5\xa2\x92\xc0\xb3\x9d\x14\xa8\x70\xa4\x58\x8e\x67\xbd\x12\xb2\xc2\xf7\xa4\x40\x84\x62\x85\x1d\x2a\xa7\x87\x97\x1d\x93\x15\x19\x0f\x42\xcc\x58\x8a\xf0\xd2\xdc\xd9\x1f\x31\xbb\x71\x5e\x92\x50\xf1\x19\x28\x14\xf7\xb8\xa2\x1f\xef\x45\x17\xb0\xcf\x8b\xb8\xa1\xa1\xa5\xf5\x00\xee\x21\x9d\xfb\x46\x13\x2e\xfe\x8e\x90\xbc\x49\x09\x3a\x55\x59\xf9\x68\x1b\x4f\xb5\x9e\x5b\xa9\xef\x3f\x05\xd3\x4e\xed\x03\x4c\x14\xd7\x7e\xe9\x5e\xbd\x76\xff\xa5\xaf\x0b\xef\xcb\xa1\x8f\xdf\x93\x2a\xf4\x85\x45\x10\xb7\x5d\xb0\x0a\x72\x57\xb2\x34\x88\x7d\x49\x60\x7d\xfd\x16\x18\x0d\xb5\x16\xc7\xa2\x0c\xcf\xca\xed\xa6\xae\xdf\xb6\xa2\x37\x7f\xbf\x31\xe6\x7b\x51\x76\x55\xdb\x73\xca\x29\xe1\x18\x62\x4d\x60\x80"}, {{0x2b,0xf7,0x4f,0x00,0x4d,0x7d,0x0a,0xf7,0x3a,0x83,0xea,0x20,0x8c,0xc2,0x06,0x72,0x3d,0x18,0x8f,0x4c,0xf6,0x07,0xbc,0xad,0x4b,0x69,0x80,0x26,0x8f,0xf2,0x1f,0xa7,},{0x8f,0xdc,0xd9,0x93,0x52,0x43,0x8b,0xeb,0x52,0xf0,0xd1,0x74,0x2b,0xae,0x71,0x84,0x45,0x12,0xdd,0x06,0x85,0xaa,0xf1,0xc9,0x09,0xe3,0x8f,0xc4,0xb5,0xaa,0xb6,0xcc,},{0x3e,0xb5,0xb3,0x39,0xe1,0x91,0xa3,0xb6,0x16,0x85,0x45,0xda,0x5f,0xb0,0xca,0x9b,0xe2,0x09,0x04,0x39,0x19,0xb9,0xc7,0x0a,0x07,0xb4,0xa7,0xa3,0xbf,0x64,0xb1,0x02,0xf6,0xff,0xd6,0xd2,0xb0,0x25,0x59,0xdc,0x68,0x1e,0xd3,0xb9,0xc8,0x22,0x97,0xb2,0x01,0xdc,0x25,0xc4,0x97,0x38,0x80,0xe1,0x55,0xe1,0x3a,0x29,0x42,0x6e,0xb4,0x0d,},"\x89\x8e\x43\x03\xea\x5b\xeb\xd2\x00\xa5\xf7\x56\x2b\xe5\xf5\x03\x26\x40\xa3\xf5\xcc\xfa\x76\x42\x92\x04\x5a\x1a\x36\x8d\x02\xaa\x59\x10\x77\xd8\xf3\x04\xf7\x4d\xbd\xfc\x28\x07\x34\x45\x4e\xd8\xc2\x72\x7a\xff\x39\x2c\x10\x8c\x52\x6e\x52\x7e\x67\x2c\x53\x97\xb2\xd7\x7c\x01\xf7\x74\x1e\xf8\xdc\xc2\x51\x0e\xe8\x41\xb5\x9d\xd1\x0f\x4e\x1d\x3a\xc5\x01\xaf\x7c\xbd\xb8\x5b\xa3\x11\x29\xc2\x62\xfd\xe1\xa0\xc8\xbc\x83\xd6\xff\x94\x4b\x6b\xae\x3f\xa7\xfb\x62\x58\x7c\x68\x1d\x8e\x34\x29\x65\xc5\x70\x5f\xd1\xa6\xab\x39\xe5\xa0\x77\x0e\xe7\x79\x8d\x9f\xb6\xc0\x01\x8a\x51\x4d\x53\xaf\x84\x8d\xb6\x04\x7c\xd0\x2d\xb3\x52\xd5\x56\x3b\x53\x66\x23\x73\xb9\x71\x93\x5a\x1a\xc2\xb7\xb6\x36\x1d\xac\x67\x48\x77\x18\x13\xf7\x74\x93\x16\x69\x49\x61\xb9\x40\xff\x38\x05\x81\x1a\x49\xfa\x27\xa9\xba\x45\x7a\xd2\x88\x48\xc6\x97\x05\x0e\x01\x88\xd0\x77\x3e\x17\xfb\x52\x19\x4e\x19\x0a\x78\x72\xa3\x98\xf3\x1c\x0f\x0a\xe0\x65\x37\xa2\x73\xff\xb5\x0c\x2c\x81\x64\x45\xab\x88\x28\x11\x92\x2c\x06\x21\x55\x6c\x46\xa3\xa0\xec\x40\xbf\xed\xb4\x11\xe9\x0b\x6d\xb1\xdd\xd4\xbb\xeb\xb5\x7d\x10\xdf\x56\x6a\x63\xd7\x26\xa3\x33\x08\x51\x4c\xe3\xb4\x99\xd5\xe5\x26\xc2\x2b\x95\x6d\x8b\x99\x91\x3d\xcb\x13\xe4\x37\xe9\x47\xb6\x66\xc4\x1c\x54\xd8\xb3\xae\x23\x56\x64\x7e\x80\x17\xab\x67\x83\x86\xc9\x27\x21\x9a\xe7\xbd\xdc\x0d\x82\x12\x65\xf9\xdc\x4f\xf3\xf8\xce\x5b\xe6\x0f\x8e\x9d\xef\xc5\xca\x33\x50\x68\xee\x29\xfe\x83\x04\x91\x7b\x78\x87\x84\xa2\x38\x8a\x32\x01\x92\xf9\x32\x5d\x0e\x6c\xff\xfe\xa2\x1e\x6e\xaa\x29\xe7\x70\x7f\x63\xa9\xea\x4f\xbb\x25\x58\xe3\xd0\x83\x5b\xab\x1f\x52\x36\x10\x37\xae\x59\xe5\x03\xee\x96\xb9\xd7\x08\xa4\x7a\x3a\xe4\xba\xd1\x13\xe2\xa4\x60\xa2\x69\xcc\xf2\x5a\x00\x03\xcb\x3e\x68\xa5\x51\x86\x4e\x59\x84\x09\x14\x79\x11\x26\xf9\x54\x78\x8b\x25\xb5\xaf\x5a\xaf\x58\x6e\xbb\x87\xfa\x5f\x37\x7b\x4d\x7d\x7f\x84\xc0\x00\xdd\x2c\xb4\x40\xe2\x14\xd3\x8d\x5e\xcf\x70\xf2\x0e\x98\x81\x82\x8e\xda\xa1\xdb\xec\x37\x09\x3d\xb9\x60\x68\x6c\xa1\x23\xf1\xec\xba\x63\x36\xb3\x7f\x46\xcf\x76\x5b\xe2\x81\x4b\x9e\x67\x05\xbc\x9d\x6a\x49\x31\x81\x18\xc7\x52\x9b\x37\xc8\x4e\xc8\x8d\x58\xa8\x45\x3d\xcb\x69\x2c\x9a\x36\x01\x6b\x94\x8e\xbe\x6f\xb2\xc1\xd0\xad\xf5\xf1\x98\xee\x30\x97\xa6\xff\x0b\x8e\xeb\xba\xd8\xb0\x76\x93\x30\xb1\x86\x89\x51\x6b\xc0\xfe\x66\x8b\x0d\x05\xe3\xa5\x84\xfc\xf8\x9c\x49\xdb\x50\x1d\x61\xc2\xde\xf7\xed\x37\x22\x07\x01\x93\xa5\xb6\x83\xc5\x08\x7e\xf2\x74\xce\x6a\x19\x3d\xd4\xa3\x03\x53\x6c\x67\x93\x4b\x46\x60\xa8\x41\xee\x1b\x44\x6a\x68\x92\xb1\x4d\x0b\x0a\xa3\xe9\x8f\xdf\xfd\x43\xc7\x97\xad\xd3\x65\x83\xf7\x4c\x94\xd0\xe2\xd6\x8e\x2d\xe8\x18\xd9\xaf\x20\x05\x98\xf0\xb2\xbe\xae\x16\x9c\x8d\xfb\xc4\xd3\x97\xe6\xd1\xce\xb6\xda\xa6\xc9\xf6\xbb\xf4\xf8\x31\x1b\xa2\x6f\xfb\x19\x4d\x44\x21\x6c\x51\x30\x52\x67\x07\x4e\x85\x6a\x1d\x6e\x92\x27\x80\xf4\x79\x8e\x2f\x22\x02\x23\xff\xf1\xdc\x37\x0c\x8e\x34\x51\x4a\xba\x42\xdf\x51"}, {{0xf5,0xf7,0xd5,0xb7,0x3c,0x5a,0x65,0x30,0x1b,0x5b,0x4c,0x67,0x10,0xed,0x12,0xc1,0x6e,0x79,0x03,0x17,0x7d,0xb7,0x92,0xca,0x71,0x5e,0x23,0x38,0x9d,0x05,0xd8,0x3e,},{0x7c,0x47,0x62,0xe9,0x79,0xf0,0xc7,0xe2,0x07,0xbe,0x18,0x43,0xe2,0x66,0x6a,0xca,0x27,0xea,0x89,0xbf,0xf5,0xb6,0x1d,0x57,0x3c,0x98,0x5f,0xc7,0x02,0x5e,0x1e,0x28,},{0x58,0xfb,0x39,0x2f,0x82,0xd5,0xe5,0x2f,0xf0,0x72,0xcc,0x77,0xef,0xe0,0x48,0xf2,0x23,0x52,0x50,0xc7,0x11,0x25,0xee,0x82,0x1c,0x5f,0x3b,0x39,0x3b,0xcf,0x2f,0xa4,0x6b,0xe4,0xc5,0xd8,0xca,0xf1,0x3c,0xb5,0x19,0xef,0xe0,0xc2,0xfa,0xd9,0xee,0x23,0x1a,0xe9,0xb6,0xfd,0x1f,0xd5,0x09,0xc9,0x8c,0x69,0xc2,0xd3,0x6c,0x75,0x3e,0x0e,},"\x7c\x93\x18\xd5\x6e\x63\xf1\x65\x35\x43\x6f\xa4\x5a\xfe\x27\x8e\x74\xe6\x18\x81\xbb\x46\x89\x97\xd0\x41\x8b\xc7\x20\xb6\x30\xda\xdb\x81\x28\xb4\xb6\x5c\xa6\xe9\x21\xe5\x01\x81\x3d\xf9\xfe\x03\xb4\xef\x0a\xae\x80\x35\xdd\x08\xc5\xf8\x20\xce\x5d\xf1\x2e\xe1\x18\xd9\xc3\x6d\x3b\x15\x1a\x52\xc3\xf9\x6a\xe1\xca\x4c\x82\xfd\x19\xda\x66\x9d\xdb\xa9\x4f\xeb\xf8\xea\xc8\xc4\x2b\x44\x7b\xab\xc8\xa6\x0b\x36\xe8\x03\x62\x4f\x7d\x20\x47\xbd\x8d\x8a\x15\x36\x87\xf1\x0d\xc1\xca\x82\x10\x0b\x7c\x87\xd3\x23\x70\xec\x8f\x26\x71\xed\x7d\x06\x7c\xc8\x05\x87\xca\xb8\xdb\x3a\x71\xce\x5e\x40\x63\x27\xf7\x63\xec\x1b\x3c\x16\x67\x70\xa7\x55\x36\x63\x0c\x81\x5f\xd8\x26\x75\x82\xd1\xb5\x05\x1f\x0f\x82\x1c\x02\x15\x0b\x2e\xef\x34\x9b\x50\x59\x03\x14\xaa\x25\x70\x79\x3f\xa6\x4a\x76\xed\x2e\xd8\x3d\x2b\xa1\xf9\xb9\xf1\x16\x31\x54\x61\x2b\x49\xa6\x4a\xd8\xd5\x57\x3c\x25\xb1\xcd\x37\xc4\x1a\x44\xe3\xdf\x78\xf1\x05\x3d\x90\xb0\x68\xf0\xd3\x7a\xe0\x0c\x4a\x32\xb1\xa3\xff\x87\x4c\x41\xda\x4a\x70\x43\x39\x2f\x18\xef\xe5\x51\x8d\x76\xe8\x8b\x41\xce\xd6\x9e\x6f\x4c\x01\x4f\x06\xeb\xc5\x14\x6e\x61\xe8\x2f\xae\x1c\x49\xc3\x7c\x39\x4f\xea\x34\x19\x9a\xb8\x6c\x11\xa4\x46\x7a\x37\x4e\x40\x25\x5a\x05\xd4\x26\x97\x14\x30\xd5\x6c\xdb\xa2\x5a\x21\xad\x77\x9c\xc7\xf6\x2d\x22\xcd\x87\xb6\x0f\x08\x91\xbd\x85\x6a\x51\x7e\x14\xb7\x2a\x9a\xc7\x67\x2e\x4e\x8f\xb3\x74\xa9\x75\x8a\xb0\xc4\xe5\x96\x4a\xae\x03\x22\x89\x73\xf1\x73\xa5\xd4\x2a\xef\x9d\xb3\x37\x36\xc3\xe1\x8d\x8e\xec\x20\x4a\x1a\x17\xb9\xd0\x45\x93\xde\xa4\xd8\x04\xcb\xc8\x1b\x9a\xc5\x45\x80\x50\x49\x55\x39\x99\x9a\x99\x85\x48\x7e\x7c\xa1\x1c\x37\x58\x2e\xf8\x5c\x84\x1e\x8f\x06\x5e\xa9\x8f\xdd\x6b\x1c\x60\xde\xa1\xec\x28\x83\x52\x15\x68\x85\x6a\x6e\xbb\x27\x49\xf2\x07\x2e\xb4\x34\x48\xbe\x07\x05\xed\x47\x7c\xf4\xb2\x00\x48\x65\x21\x7d\xe5\xfa\xdb\xe2\xa0\xf9\xd6\xb8\x4b\x3f\xe7\xf7\xbf\x6c\x77\x53\x74\x96\x24\x6e\xc7\x96\xb8\xef\x2c\x04\xf6\x8a\xb5\xb1\x4f\xce\x0c\x6d\x28\x7b\x83\x62\x27\xd9\xf0\x8f\xa0\xee\x19\x72\x2f\x67\x98\xa5\xd8\x28\x0d\x10\x7c\xfc\x1b\xd5\x92\xd9\xdd\xc7\x24\xea\x86\xfc\x39\xdc\x94\xa3\x94\x01\x9e\x3a\x3d\xe9\xe0\xd1\xc7\x35\xe8\x62\xde\x2b\xb9\x52\x5b\x5f\xb4\xbd\x12\x12\x12\xbf\xaf\xf9\xff\x58\x6a\xc3\xc7\x5c\x5a\xce\x74\x6d\x9c\xa3\x07\xf7\x95\xff\x26\x97\xf2\xb4\x1a\x63\x46\xed\x23\x39\x7e\xb3\x88\x98\x69\x1e\x6f\x66\x84\x16\x37\xd0\xab\x0d\x96\x83\x09\xe0\x19\x40\x02\x30\x90\x15\x41\x6e\x74\x47\x2f\xe3\x24\x25\xd4\x5f\x07\xc7\x71\x19\x18\xb1\xe5\x79\x0f\x57\x2c\xe4\x44\x10\x42\xd4\x26\x03\x37\x92\x29\x7b\x5f\x81\xe0\x80\x9b\xd9\x69\x1f\x0a\x50\x5e\x32\x59\xfc\x03\xc9\xff\x10\x7e\xb9\xb4\x87\x95\xf4\x9f\xb0\x9c\x1b\xab\x56\x59\xd3\x9f\xfe\xcb\xdc\xc4\x03\xe3\x80\x3d\xc0\x12\x43\x8c\x2f\xb3\x6f\x68\x30\x15\xc5\xdf\x04\x82\xcb\x7d\x7f\xc5\x75\x73\x64\xa0\xa3\xc1\x0d\x0e\x12\x59\xc0\x1f\xcc\x4d\xd5\x49\x4b\x52\x90\xa6\x94\xae\xa3\xf6\xfa\xe5\x47\xac\x57\x6f"}, {{0x43,0xd4,0xbe,0x6d,0xe9,0xcb,0x00,0x89,0x8e,0x99,0xdd,0xcc,0x2e,0x15,0x30,0x11,0x0f,0xa2,0xcb,0xc4,0x37,0x6c,0x48,0x5e,0x9c,0xa5,0x7f,0xd6,0x55,0x86,0xd8,0xa3,},{0x36,0x32,0xad,0x38,0x9b,0xe2,0xfa,0xb3,0xfb,0xa0,0xd8,0x04,0xbf,0x63,0x45,0xcd,0x32,0x2e,0xdd,0xd6,0xa7,0x5d,0x8c,0x37,0xfd,0x4b,0x5b,0xa1,0xc9,0xc2,0x5e,0x8f,},{0x86,0xae,0x93,0x25,0xf8,0x0b,0x98,0x86,0xc8,0x38,0x1f,0x96,0xa1,0x8c,0x21,0x20,0xe6,0xdb,0x01,0x6a,0x0d,0x6c,0xa2,0x82,0xed,0x93,0xba,0x9b,0x61,0xca,0xec,0x02,0xde,0x88,0xef,0xca,0x8b,0x8e,0x91,0x6a,0x4b,0x16,0xa5,0x85,0x25,0xa2,0xf6,0x8d,0x21,0xe5,0xfb,0xe6,0x7d,0xb4,0xc4,0xd6,0x20,0x95,0x95,0xc4,0xab,0xc3,0x2b,0x09,},"\xd9\xd5\x5d\xab\x0f\xa6\xda\x76\xb6\x8e\x84\x1c\x24\xd9\x71\xba\xc1\xf7\x9a\xf5\x13\xd8\x34\xe4\x26\xa5\xd0\x81\x14\xce\x8b\x54\xce\x8b\x7a\xfe\x01\x6b\x0f\xad\x03\xee\x74\x50\xc6\xc3\x09\x71\x73\x68\x1a\x4b\x2e\xb9\xf9\xc1\x79\xa8\x8e\x7c\xc3\x68\x13\xf2\xf5\xd1\x5f\x79\x98\xaf\xa9\xfd\x4e\x54\x6c\x73\xbb\x42\xe7\xf9\x52\x2b\xe6\xaf\xab\xca\x8c\x7b\x64\xfe\xd0\xe2\x92\xe4\x37\x5f\x3e\x1e\x5f\xd9\xfc\xb5\x39\xf4\xe5\xe5\x43\xfb\x6a\x11\xa0\xdf\x32\x1e\x70\x08\x4a\xaa\xbb\x70\xa9\x95\x0c\xee\xe3\xd8\x79\xc3\x86\xef\xca\x1e\x59\xc3\xcb\x7c\x45\xb5\x60\x09\x5e\x7a\xf0\x0f\xf5\x2f\x8a\x1a\xaa\x9c\xcf\x09\x2f\x0b\xb8\x06\xd9\x76\x10\x74\x2a\xc5\x82\xa3\xab\xbe\xdd\xf3\x9f\x49\xd2\x29\xd3\x2a\x11\x86\xd0\x21\x51\x8d\x74\x72\x8d\x13\xd9\x62\x63\x5d\x63\xba\xa6\x74\x3b\x12\x6b\xf4\x58\xfa\x2a\xc7\x56\xfb\xf8\x80\x96\xc8\xd3\x34\x0c\x62\x23\x90\x53\x4a\x74\x3f\x18\x64\xd5\x4d\xea\xb5\xe5\x53\x63\x72\xce\x5a\xc9\x37\x62\x28\x74\x14\xea\xe1\x58\xa7\x6b\xf8\x1d\xf5\x41\x7c\xf4\xc0\x47\xbe\x3a\xc1\x47\x5c\x51\x7e\xbd\x3a\xc1\xd1\xd1\xbd\xda\x11\xb3\xf9\x9c\x18\x17\x3e\x03\x0a\xcd\x51\xd2\xb5\xcf\x79\x51\x65\x09\x41\x54\x05\x07\x75\x11\xbd\xd9\xcb\xe1\x7d\x04\xf4\x78\x05\xe9\x8d\x0d\x14\x5e\x60\xa5\xd0\xe0\xf4\x53\xcd\x9b\x5c\x1a\x24\xf1\x2b\x75\xe8\xcc\x34\xd5\xe0\x06\x91\xff\xac\xbf\xf7\x88\xfe\xa8\x34\xd9\xd7\x79\xc1\xe6\x10\x29\x4d\xce\x19\x17\x0d\x28\x16\x0c\xff\x90\x9b\xea\x5a\x0a\xa7\x49\x40\x17\x40\xea\x3a\xf5\x1e\x48\xb2\x7c\x2b\x09\xf0\x25\x44\x42\x76\xc1\x88\xc0\x67\x1a\x6d\xa9\x4b\x43\xd1\xe5\x25\xe6\xa4\xa8\xa1\xa7\x3d\xfe\xdf\x12\x40\x18\x46\xba\x43\x06\x8a\x04\x09\x2b\x12\x91\x22\x70\xd2\xb6\x0d\xf6\x09\x97\x79\x75\x6b\x8b\xbb\x49\xec\xe8\x2d\x55\xf0\xf8\xdb\x1b\x80\xfb\x4b\x59\xbb\xa8\x60\xbd\x18\xc7\x5d\x6c\x83\x4d\x69\x44\x2a\xe0\x31\x4c\xf2\x39\x9f\x53\x92\xa3\xc6\x72\x8c\x63\xe5\xc5\x16\xc4\x22\x2a\xac\x60\xf9\x16\xdd\x63\xd1\xd0\x51\x7e\x8e\xb1\x0b\xd0\xe1\x5e\xb9\x06\x14\xde\xb2\x96\x40\x3a\xd1\x5b\x8c\x12\xb9\xe9\x71\xef\x2f\x01\xe5\x9f\xc3\x5d\x90\xc5\x5a\x8e\x20\xe9\x43\x7d\xd4\x34\xb2\x6d\x5c\x2c\x6e\xc2\xd5\x3a\xce\xc1\x7e\x81\xe4\x78\x31\xdc\x2d\xe8\x21\x83\xd7\x13\xb5\x9a\x4d\x1f\x46\x96\x9d\xdc\xdd\xaf\x27\xf4\x4e\x5a\x31\x1a\xaa\xc3\x9c\x3d\x5a\x97\xbc\x90\xca\xd7\x12\xf4\x6f\x85\xe6\xc8\xfb\xf5\xd5\x8d\x8b\xc3\xec\x27\xd3\x10\xa9\xea\xf2\xc3\x69\xcb\x00\x64\x97\x70\x39\x0a\x3f\x98\x8f\x36\x2e\xfc\x15\x5f\x56\xa1\x46\xa6\x26\x50\x54\x7e\x91\x53\x25\x07\x01\xee\xad\x1b\xd0\x1c\x89\x46\x22\x72\xdf\xaf\x0a\x43\x1a\xf4\xbd\x7c\x3d\xb4\x51\xad\xa6\x03\x23\x3f\xda\xd3\xaa\x89\x99\xaa\x21\xe2\xd3\xa4\x3b\x0b\x56\xfc\x6a\x91\x24\xd3\x35\x98\xb3\x73\x7f\x4e\x5c\xb2\x58\xbe\xda\x75\x6a\xd2\xe1\x7d\x06\x91\xd1\x5d\x41\x6b\xb7\xcb\x07\xec\x8d\x8c\x7a\xf5\xde\x80\xe5\xb9\x39\x4e\x32\x0c\x4c\x6e\x43\xef\xaa\xe6\x84\xad\x00\xf6\xdd\x20\xa8\x75\x0e\x95\x9c\x2f\x04\x20\x6f\xc0\x23\xaa\x19\x0c"}, {{0x7d,0x01,0x0d,0x76,0x0f,0x24,0xe5,0xa2,0xde,0x34,0x08,0x9c,0x9f,0xdb,0x19,0xc3,0x3b,0x15,0x5b,0x0a,0x37,0xca,0x45,0x5a,0x5e,0x5b,0x1d,0xae,0x7a,0x07,0x31,0x76,},{0x4c,0x87,0x7b,0x3c,0x49,0x71,0xfb,0xb5,0x51,0x16,0x6e,0x21,0x4d,0x1c,0x76,0x24,0xc5,0x22,0x77,0x90,0x3c,0x59,0xa5,0x62,0xa8,0x0b,0x91,0xa8,0x54,0x83,0xfb,0x47,},{0x55,0x70,0x61,0x38,0x79,0xae,0x22,0x77,0x8b,0xd5,0x4f,0x14,0xfb,0x6e,0x8c,0x02,0x56,0xa7,0x1f,0x3d,0x79,0xc3,0xe5,0xcd,0x8e,0x41,0xae,0xa8,0xcf,0x77,0x3e,0x24,0xd2,0x9f,0x1f,0x1b,0x24,0xf8,0xc8,0x0d,0x29,0x49,0xe8,0x20,0x14,0x65,0xdb,0xde,0x89,0x40,0xb1,0xfa,0xb6,0x48,0x3b,0x08,0x5d,0x41,0x8e,0x25,0x10,0x14,0x20,0x0c,},"\x86\xe2\x11\x55\x72\xbf\x4c\x01\x3e\x6b\x4b\x04\xd0\xb0\x3e\x60\x6e\xe7\x0d\x92\x9c\xb8\xec\x36\xf4\xe2\xf3\x55\xdb\x3b\x5e\x15\x73\xd6\x58\xd1\x7b\xb1\xa3\x10\xc1\x69\x89\xa1\x6b\x95\x58\x92\x2e\xe4\x93\xf3\x59\x04\x21\x03\xc4\xdc\x1b\x40\xdf\xf7\x70\x99\x01\xfd\x58\x30\x13\x3f\x42\xc4\x65\x1e\xca\x00\x8b\x49\x9e\xe4\xf8\x4c\xd4\xec\x1e\xda\xa7\x82\x56\xed\xb6\x2f\x24\x02\x1a\x00\x76\x25\x69\x19\xe4\xe2\xce\x0a\x5a\x20\xf9\x21\xc2\x78\xcc\x29\x91\x59\x64\x4b\x5e\x3a\x3b\xbd\x08\x9d\xcb\xbe\xba\xd3\x76\x6a\xea\x77\xe9\xf0\x8e\xe5\xf7\xd4\xc1\x9d\x81\x70\xbc\x3d\xe1\xba\x77\x9a\x76\x99\x14\xf9\x65\xdb\xde\x2b\x61\xba\xd2\x14\xc5\x08\x18\x60\x41\xf7\x6c\x25\xbe\x95\x76\x56\xf5\xcf\xb7\x33\x4e\xb8\x38\xa3\xcf\xbc\x55\xcf\xba\xb6\x7a\xdf\x15\x52\x61\x99\x41\xb8\x35\xcd\x3e\x34\x10\x3b\x18\xb4\x91\x31\xe8\x20\x96\xf0\x5f\x57\x0b\x89\x98\x04\xba\xb8\xb6\xcb\xad\xdb\xbc\x02\xf9\xf3\xb5\x59\x73\x6d\x99\xca\x7b\x02\xd3\x26\x8f\xa2\x73\x99\x6f\xcf\x05\x71\x97\x7d\x1c\xc3\x00\x8c\x4e\xf8\x48\x97\x0e\xe3\x50\xb1\x58\xc4\x7e\xc2\x77\xad\xd4\x74\x2f\xa2\xbc\xbe\xa9\xbd\x55\x49\xc7\xbc\xa0\x38\x02\x0e\xce\x68\xf1\x88\xc1\xea\x3a\x62\xdd\x9a\x07\x3d\x4c\x13\x8c\xa8\xa9\xac\x04\x08\xdc\xfd\x46\xe3\x6b\xdf\xf7\x39\x88\xa5\x8b\x96\x17\xca\xa0\x8b\xd4\x1b\xf3\xe8\x12\xe7\x82\x4f\x0f\x7e\x81\x46\xa4\x44\xf3\x6b\xf5\x3a\x1c\xd8\x92\x03\x9c\xcd\x33\x5f\x5a\x2e\x79\x74\x5e\xac\x96\x14\x8c\x2a\x29\x99\x47\xf1\xb2\xe3\x28\xa3\x78\x9b\xf1\x3c\x6d\x73\x50\x6f\x3b\xdc\x68\xea\x48\xab\xf0\x02\x27\x0f\xe4\xee\x9e\xf9\xed\x6b\x10\xc2\xfb\xb4\xff\x12\x75\xb9\xd7\xdd\x35\xd8\xa5\x2e\x37\x17\x58\x57\x4c\xb4\x66\xc5\x7b\x5a\xbc\x24\x29\x76\xbe\xfc\x8d\x98\xa0\x13\x1b\x9b\xb8\x46\xb2\x19\xe4\x66\x91\x86\xa8\x3c\x05\x6c\xd8\x08\x06\x61\xde\x16\xb5\x1c\xe5\x76\x7b\x22\xe9\xa9\x32\x42\xbf\x8d\x32\x05\xc6\x6a\x67\x3c\xe7\x83\xd1\xc0\xd3\x7b\x63\x00\xfb\xf0\xd6\x12\x79\x40\xf8\x8f\x18\x19\xc4\x50\xdc\xc9\x05\x43\xed\x79\x4f\x1f\xd4\x4e\x65\x39\xfe\xba\xf1\x9a\x4c\xc9\x88\x70\x01\x4d\x7c\xca\xd7\x4d\x18\x76\xa1\x23\xec\xd1\x45\x51\x6c\x74\x3b\x4b\xba\x62\xd8\x21\xca\x9a\x79\x51\xe0\xdf\xb2\x3f\x38\xd9\xe3\xa3\x65\xfd\x83\x22\xf2\xee\x47\x99\xe9\xff\x11\xe1\xc5\xc3\x0b\x55\xa3\x55\xc8\xa5\xde\xea\x81\xa5\x45\xe3\x47\x05\xab\x56\xd1\x7b\x1f\xa0\x6e\xd7\x64\x15\x55\x67\x02\xf3\x64\x80\x82\x46\xf8\x63\xc3\x19\xf7\x5c\xdf\x6b\xd7\x48\x43\x8d\x1a\x2e\xaf\x42\x06\xc5\x60\xbf\xaf\xc2\x35\x67\x9a\xd6\x04\x9c\x1a\x01\x52\x6f\xcb\x9a\x3c\xe1\xb1\xd3\x9b\xe4\xdf\x18\xb1\x5f\xa0\xea\x55\x27\x2b\x17\xeb\xde\xdf\x6c\x30\x49\x8a\x8a\x14\xf2\x04\x2b\xe1\xc2\xcd\xb0\x9e\x9e\xf3\x84\x6d\x66\x59\xa9\xf6\xd6\x73\xdf\x9a\xfb\x7e\xde\xd0\x4b\x79\x3d\x97\x31\xf0\xac\xcc\x41\x46\x8d\xc1\xf3\x23\x6c\x99\xac\xad\xee\x62\x39\xc3\x61\xb8\xbd\x7e\x2d\x0c\xfe\x8b\xb7\xc0\x66\x87\xe0\x8e\x76\xb7\x1a\xd5\x7a\x03\x61\x79\xf2\x91\xd0\x96\xae\x2f\xa0\x81\x8e\xf4\xbf\x48\x66"}, {{0xaa,0xaa,0xbb,0x7c,0xe4,0xff,0xfe,0x4d,0xc3,0x57,0x47,0xba,0xea,0x2b,0xc5,0xf0,0x50,0xbe,0xf0,0x6e,0xe0,0xc1,0xfd,0x63,0x2a,0x06,0x7f,0xec,0xe1,0xef,0x4f,0xb5,},{0x82,0x0a,0x24,0x42,0xd5,0xf4,0x5f,0x3c,0x79,0x14,0x78,0xe0,0x98,0xfb,0x3b,0x06,0x8d,0xa5,0x2e,0xc4,0xe8,0xda,0xde,0xc8,0x50,0x65,0xc3,0x56,0x59,0xf4,0x37,0xe0,},{0x05,0x0a,0xe8,0xae,0xce,0xec,0x96,0x27,0xb8,0x01,0x37,0x35,0x7a,0x22,0x96,0x2a,0xc8,0xb4,0x50,0x48,0x66,0x17,0x08,0xd3,0x94,0xd0,0xa5,0x1a,0xad,0xc3,0x81,0xfe,0x85,0x35,0x02,0x3d,0x6e,0x1b,0xda,0x0e,0x72,0xb3,0x49,0xb5,0x0b,0x26,0xda,0x7c,0x3a,0x30,0x85,0xe8,0x1e,0x9d,0xd6,0xcf,0x12,0x78,0x68,0xfc,0x5b,0xae,0xab,0x01,},"\xf9\xd2\x85\x97\xa3\xe2\xb6\x4b\xa3\x27\xac\x5c\xd2\x9f\x08\x1e\x74\xbf\x46\x1b\x2e\xb2\xd3\xcf\xd9\xd5\xe9\x21\x58\xd2\x1d\x1d\x2a\x47\xab\x50\x98\x1c\xb1\x9f\xe3\xf8\xc6\xfe\x48\x82\x49\xb1\xc4\x9f\xb8\x97\xa0\xfe\x21\xab\x54\x04\x41\x4f\xd9\x14\x87\x5c\x22\x0f\x1c\xbc\x12\xf5\xc3\x8c\xfb\xa7\x9f\x7a\xc3\x03\xa5\x23\x1a\x37\x2b\x02\xfa\xd6\xc8\x46\x2f\x8c\xc4\x9f\x0f\x64\x96\x5b\x65\x1d\xcc\xef\x0b\xb9\x60\x82\x15\x09\x08\x49\x17\x7b\xe4\x7b\x2d\x30\x72\x94\x4d\x36\xe8\x56\xda\x18\x5c\x7b\x3a\x68\x9f\x7e\xde\xf9\x88\x33\x8e\x09\x63\xed\x31\xa6\xb0\xa8\x0d\x5c\xb0\xb1\xcc\xcf\x6f\x39\x48\x37\xaa\x6f\x8b\x2f\x3d\xa5\xef\xbd\xf4\xd3\x60\xd4\xbf\x4d\xd7\x08\xce\x64\x45\x58\x7d\x94\x2b\x79\x76\x1c\xe9\x51\xb1\xbb\x4d\x90\x50\x70\x36\x18\xa6\xd9\x30\xa8\x0c\x69\x57\x6f\xc4\xaf\x30\x6a\x2a\x56\xdb\xd8\x84\xa0\x5a\x1e\x4e\x9f\x31\x36\xcd\x0b\x55\xae\x47\x4b\xb5\xd3\xd0\xfb\xc9\xb0\x33\x9c\xec\x34\x4f\xdd\x08\x5c\x19\x28\x10\x14\x81\xc6\x87\x94\xf5\xc8\x90\x13\x71\x08\xce\xa7\x91\xd2\x1f\x81\x68\x3d\x3e\x1a\x9e\xec\x66\xac\xe5\xc0\x14\xd8\x9e\x69\x80\x8e\x5f\xa8\x3d\x38\x12\xee\x68\x0f\x5a\x99\x71\x68\x1b\x8a\xdc\xd4\xa1\x6e\x9a\x4c\x16\x5b\x5e\xf9\x93\x2c\x5e\xd8\x25\x23\x7f\xd5\x03\x7b\xcb\xef\xe4\xcb\x11\x56\x4f\xa7\x07\xc8\xa9\x32\x90\x75\x14\x14\x89\x1b\x1e\xdd\x33\x13\xc6\x5f\x8b\x91\xc2\xe9\x25\xa3\xc1\x2a\x9d\x3a\xa4\x5f\xd5\xa6\x67\xb7\x83\x93\xc3\xe3\x9d\xf8\x8a\x8f\x0d\x11\x48\xb5\x31\x1e\x3d\x87\xc4\xa9\x2e\x0a\x3f\xb9\x15\xbc\x90\xd5\x55\x8d\x05\xb4\x75\xa8\x83\x47\x78\xaa\x94\x3e\xa3\x9b\x8e\xaa\x95\xad\x18\x32\xe5\x91\x6e\xa3\x10\x2d\x7d\xe0\xb8\x36\xcd\xe8\xf3\x75\x9d\xbb\x3b\x9d\x56\xea\x81\x7b\x3e\x49\xc9\x83\x21\x02\x77\xc2\xc7\xc5\xb0\xdb\x18\x74\x22\x53\x2f\xca\x98\xa2\x8b\x3b\x65\x9c\x6b\x81\x5a\xc1\x26\xfa\xdb\xe2\xf4\x00\xc7\x3e\x9d\x2d\xed\xcb\xbd\x2d\x3a\x36\x5f\xfa\xd7\xe6\x66\xc8\x96\xe3\x1e\x61\xb3\x84\xed\x3a\x9f\xcf\x12\x90\x53\x8d\xf1\x1b\x94\x74\xc6\x28\x1c\xc5\x92\xc7\x1c\x88\x08\x86\x8b\x42\x92\xc1\x7e\xce\x6b\x3e\xdf\x5e\x35\x42\xa7\x0b\x91\x15\x93\xe9\x3f\x35\xec\xd9\x72\x9b\xd8\x88\x0a\x24\xea\xf4\x1f\xbc\x65\x74\xdf\xe1\x67\xec\x2d\x0e\x7a\xb3\xdf\x5e\xc3\x4b\x8b\x55\xd5\x48\xab\x93\x73\x8a\x2e\xea\xf2\x1c\x88\x4c\x5c\x85\x51\xdb\x2e\xdf\x2b\x04\x9f\x1a\x2a\x84\xfa\x72\xac\x89\x78\xa4\xc2\x78\x09\xf2\x09\xc1\xb2\x19\x5a\xff\x50\x4f\x69\x98\x56\xcc\x4f\x22\xd4\x4e\xbd\xd0\xfe\x50\x37\x44\x68\xd0\xb1\x79\x2e\x57\x4b\x51\x10\xa1\xf4\xcd\x0e\x22\x1e\x82\x4a\x78\xdd\xc4\x84\x5f\xeb\x46\xd6\x6d\x63\x3d\x23\xcd\x23\xf4\xb6\xfb\xe4\xc8\xce\x16\xcd\x1a\xf6\x15\x36\xda\x5f\xa6\x7b\x10\xac\x75\x55\xa6\x8c\x0e\x0b\xdb\xf2\xf8\xd7\x23\x09\xd9\x95\x51\x6b\x81\x18\xbf\x43\x83\x5d\x0a\x01\xc0\x8f\xfe\xba\x3e\xa3\xed\x05\xcd\x2d\x54\xf0\xea\xbc\xda\x05\xd0\x03\x7d\x52\xca\xed\x3b\x19\x37\x4f\xaf\x73\x99\x90\x94\xf7\x90\x55\x92\x4b\xea\x9a\xec\x44\x70\x13\x5f\x5e\x8b\xf1\x83\xc9\xd1\xc9"}, {{0xe9,0x5c,0xc2,0xa4,0xd1,0x19,0x3b,0x75,0x39,0xfc,0xbb,0xea,0xae,0xed,0x98,0x5b,0x6f,0xb9,0x02,0xdd,0x0e,0xfb,0xd6,0x38,0x74,0x57,0x55,0x0d,0x0d,0x6a,0x2f,0xea,},{0x72,0xa1,0xff,0x1e,0x9b,0xb1,0x1c,0x8d,0x88,0x96,0x8a,0x7b,0x16,0x96,0x37,0xad,0xee,0x43,0x8e,0x22,0x63,0xf0,0x06,0xdc,0xa4,0xfe,0x02,0xfe,0x06,0x6c,0xba,0xd3,},{0x1b,0x8d,0x7c,0xc2,0xad,0xf3,0x6c,0xae,0x16,0x31,0x25,0x0c,0x82,0x43,0x1b,0xd8,0x84,0x37,0x16,0x3a,0x63,0x49,0xad,0x96,0xe7,0xa8,0x64,0x44,0x7e,0x9f,0xee,0x75,0x3a,0xc3,0x65,0x5c,0x98,0x35,0xb4,0xd1,0xec,0xbb,0x30,0x6c,0x63,0x8b,0xa5,0x40,0x2a,0xd0,0x2b,0xa6,0xd2,0x25,0xd9,0x68,0x82,0x88,0x9f,0xe8,0xd2,0x04,0xa6,0x04,},"\x84\x26\x74\x39\x20\x1b\x05\x91\xdb\x60\xc0\xf1\x7a\x9c\x15\xe4\x54\x09\x29\x56\x52\xd5\xf5\x5b\x87\xfb\x35\x19\x67\xc8\x46\xa5\x67\xf5\xce\xba\xae\xd1\x76\x2b\xff\x54\x85\xf0\x48\x53\xca\x92\x69\xf4\x64\x09\x4e\x51\x2d\xf1\xf0\x2e\x13\xe5\x17\xb1\xda\xa5\x8d\x34\xca\xa2\xd5\xff\x9f\x9e\x79\xbc\xaf\xb4\xce\x96\xe8\xa0\x89\x25\x8a\xd6\x13\x43\xb4\x46\x62\x8e\xbc\x4f\x5b\x2a\x84\xd0\x3b\x72\xef\x3f\x73\x85\x89\xfa\x13\xc4\x25\x19\xa8\x28\x29\x9a\x3f\xae\xc0\x35\x03\x7b\xc1\x0b\x44\xe3\xbd\xfe\xd9\xe0\x87\x07\x17\xcb\xaf\x31\xbe\xf8\xb2\x2c\x4e\xa1\x6e\x81\x57\xfc\xbc\x63\xee\xfa\x39\xed\x82\x2e\xfd\x42\x15\xc2\x47\xdd\xa4\x87\x86\x27\x7e\xc0\x30\xa8\x6c\x0e\xf4\x85\x1d\x67\x3c\xfe\x75\x2d\x06\x77\x88\x3c\x2c\x45\x20\x38\x97\x0c\x09\xbd\x48\x17\x14\xbc\x3f\xbe\xcf\xa4\xff\x2a\x3c\x24\x56\x95\xd7\xec\xc2\xf4\xde\xc7\xf5\xed\xe0\x4f\xf6\xdb\x43\xe2\xbb\x91\xc0\x66\xb6\x49\xef\x73\xfd\x3b\xe8\x60\xcb\x83\xfa\x80\xb0\x74\x14\x9f\x43\x1e\xeb\xb9\x17\xec\x84\x78\xda\x87\x0c\x11\xe3\x17\x70\x38\x59\xf9\xf2\xf4\x00\x8a\x6c\x7c\x75\x4b\x06\xe1\xf7\xd2\x47\x96\x89\xda\x84\xe8\x89\x22\xf3\x82\x74\x98\x5e\x11\xce\x13\xcd\xbd\xb0\xf2\xec\xe6\x8f\xb6\x02\xad\xe0\x3d\xd5\x49\xa3\x62\x49\x1f\x4a\x20\x3f\xf8\x07\x44\xf6\x63\xc5\x23\xa0\x26\xb4\x31\xaa\xd4\x5c\x58\x29\xe0\x29\xad\x62\x56\xd1\x27\x6f\xd7\xb7\xa1\x2d\xdb\xf1\x72\x7d\x9e\x23\x3f\xb5\x34\x45\x73\x70\xa4\x26\xe5\x6f\xb3\x9c\xf4\x04\xa3\xec\xbf\x0c\x4b\x50\xbb\x52\x2d\xce\x98\x1e\x08\x30\xfd\x84\x06\xe6\xd9\x72\x5c\xeb\x1d\xdd\x3a\x19\x47\x93\x7d\x90\xe0\x4d\x76\x8a\xe1\xd1\x26\xe2\xae\xac\x21\xb8\xc9\xef\xc5\x4c\x40\x96\x1b\x7f\x4e\x9e\x88\x02\x5f\x7e\x0b\x9d\xe9\x01\xeb\xf0\x04\x9e\x74\x1b\x79\x79\x97\xd8\xdb\x78\xe9\x28\x3b\xbb\x5f\x90\xf3\x5a\x2c\x4d\xee\x27\x31\x42\xec\x25\x8c\x02\xad\x0e\xcc\x61\xcc\x5c\x9f\x12\x13\x2d\xb2\x8a\xf4\x1c\x1f\xb7\x8e\x52\x4b\xe5\x32\x7b\x5f\xfc\x35\x96\x27\x79\xfb\x11\xff\x0c\x5d\x3e\xe0\xa3\x1f\xf4\x7e\x73\xb1\x72\x9d\xfa\x46\xe8\x98\x6b\x1b\x89\xab\xc8\x8a\xd0\x6a\xbd\x5b\x6f\x76\x6d\x23\xab\xf6\x42\x25\x78\x94\xeb\xdf\xa7\x9e\x63\x09\xf1\x27\x23\x74\xee\x94\x33\x67\x7b\xa1\x3e\x45\x1b\xaa\x95\x33\x0e\x66\x0c\x80\x52\xae\x87\x2e\x0e\x32\xe2\xb2\xd1\x28\x6d\x01\xa0\xab\x58\x10\x42\x4e\xd8\xb9\x40\x54\x65\xbd\xeb\xa0\x3b\x69\x83\x84\x67\x6f\xe5\xea\x46\x4a\x03\x44\x6c\x4f\x7c\xd7\xb4\x33\x12\xec\xf1\x51\x36\x04\x64\x57\x1a\xd2\x86\x10\x58\x1f\xba\xdb\x94\x5a\x1d\x68\x18\x1d\xeb\x40\x3a\xa5\x6e\xba\x0b\xb8\x40\x32\x8e\xee\x36\x10\x3c\x7d\xe0\x73\xa6\x87\x9c\x94\x1c\x75\x54\xc6\xf6\xf2\xa0\x80\x80\x9e\xb0\xe5\xbd\x0e\x13\x0f\x29\xa2\x29\xe9\x30\xdb\x01\xfe\xca\xc2\xe0\x36\xbd\xf0\xe0\x01\xe2\xa8\xea\x32\x64\xf8\x64\x9d\x5b\x60\xc2\x91\x03\xf0\xb4\x9c\x24\xc9\x7f\xac\xaf\x7e\x81\x06\x9a\x2b\x26\xab\x3f\x93\x3f\x42\x7d\x81\x27\x2c\x6c\x8b\x7c\xd0\xdf\xb7\xc6\xbb\xe9\xc0\xea\xab\x32\xbb\xda\x22\x18\xb9\x62\x3a\x21\x19\xaa\xb1\xf3\xeb"}, {{0x77,0xad,0x0f,0x94,0x2c,0x37,0xf0,0x31,0x3e,0x6b,0x04,0x56,0xda,0xba,0xec,0x81,0xb2,0xd6,0x1f,0x6c,0x11,0x8d,0xdb,0x29,0xea,0xf3,0xac,0x5b,0xf1,0x95,0x04,0xd4,},{0x69,0x2d,0x2d,0xa5,0xa9,0x5f,0x48,0x61,0x1a,0x6d,0xa8,0x9c,0xfb,0x3b,0x35,0x40,0xf6,0xaa,0x0c,0x85,0x0d,0x6d,0x98,0xde,0xea,0x87,0x0e,0x39,0x7f,0xed,0xe3,0x28,},{0x69,0x6b,0xd5,0x52,0xdd,0x01,0xdb,0x80,0xb3,0xd6,0x7d,0x61,0xee,0xb7,0xec,0xc5,0x68,0x78,0x40,0x4a,0xb1,0x19,0x44,0x2a,0x1c,0x74,0x22,0x99,0x2c,0xfa,0x35,0xae,0xa9,0x20,0x82,0x5d,0x2d,0xaf,0xd8,0x92,0xad,0x7e,0xb6,0x82,0x5a,0xd9,0x99,0xae,0xe5,0xc8,0x3b,0x7b,0x50,0x79,0x06,0x53,0x4f,0x91,0xac,0xe7,0x59,0xc5,0x51,0x0c,},"\x87\xe6\xde\xad\x2c\x85\x54\x9e\x3d\x8d\x25\x88\xa0\xa3\x36\x06\x03\xa6\x24\xfb\x65\xae\xbb\xc1\x01\xbf\x7f\x1f\xec\x18\xd0\xb2\x8f\xbd\x5d\xba\xee\xd3\x87\x52\xcd\xf6\x35\x5c\xe8\xdc\x84\xe1\x8a\xc1\xa4\x39\x3d\x2a\xb8\x88\x88\x2c\x4f\xf1\xc9\xc8\x13\x7f\x83\xbe\xe3\x63\x36\xbc\xbf\xbb\x72\xd5\x04\x9e\x0a\x40\x08\x74\x51\x4f\xdc\x36\x33\x04\x6e\x89\x38\x3d\xde\xd9\x3c\xa3\x1f\xde\x0d\x89\x8e\x11\xe9\x26\x8d\x3d\x5c\x24\x06\x66\xed\x55\x27\x61\x3d\xa7\x9f\xb7\xe4\x96\x25\xb4\x4c\xde\x78\xb4\x1c\x67\x90\x2e\xb0\x21\x6b\x3a\x7a\x3e\x56\x0e\x26\x1d\x71\xd7\x64\xaa\xcf\x15\x95\x9c\x17\xfc\xd6\x17\x6f\xb2\x5e\x24\x9e\xe6\xbb\x1b\x3b\xd7\xbd\x90\xf6\x0b\x0b\x0f\xfa\x03\x15\xa0\x65\xa2\x4b\xba\xe8\xf2\x55\xbf\x29\x8d\x7e\x4d\x44\xf0\xb4\x30\xc4\x15\xb4\xfb\x36\xcf\xa6\x62\x6a\x83\xf4\x9a\x25\x67\xf6\x24\x4f\x40\xe9\x23\xad\xd1\xd4\x9a\x72\xf5\x7b\x15\x30\xf5\xb3\x79\xde\x3a\x91\xc2\xe9\xa1\xac\x79\xab\x37\xbc\x3b\x9b\xa7\x3d\x88\x28\x13\x6b\xcc\x87\xd2\xc0\x11\x90\xde\x54\x57\xfa\xcd\x90\xf3\x69\x55\x3f\x7a\xc5\x21\xc5\x67\x2b\x08\x67\xdf\xa8\xda\x3b\x95\x2a\xd9\x5b\x67\xda\xb9\x9b\x48\x20\x57\x2f\x2d\x4a\x29\x8e\x95\x18\x63\x77\x79\x28\x9c\x03\x1b\x79\x3d\xee\x85\x9c\xde\x7b\x24\xad\xd6\x49\xff\xf8\x71\x24\x8a\x66\x02\xd2\x51\x62\x79\xda\x60\x58\xcb\xb6\x96\xfa\x8b\x1d\x89\xa2\x0d\x20\x99\xe6\x46\x44\x32\x10\x48\x3e\x5d\x41\x34\xe9\x28\xfa\xeb\x38\xa3\xb5\x08\x19\x9e\x0d\x69\xbb\x55\xee\x34\x77\x42\x05\xc0\xa6\x12\x05\xb5\x0b\x08\xfe\xbe\xaa\x40\x1e\x6e\x3a\x51\xa2\xbf\x98\xef\xac\x78\xb7\xae\x2b\x85\x2c\x53\x95\xa1\x2c\x40\xe2\xc7\xdd\x1b\x20\x25\x04\xb5\xa7\xd2\xf7\xe4\xfd\x4f\x86\x10\x93\x0d\x28\x68\xcb\xa8\x86\x43\x39\xe0\x41\xda\x21\xc0\x71\x5f\x41\xb2\xb2\x3d\x14\xd0\xb5\x45\x48\x0b\xc3\xbd\x7d\x72\x15\xcf\x2f\x81\x6a\x33\x32\x08\x1e\xca\xa0\x8c\x0f\x8b\x99\x52\x52\x51\xf5\x72\x31\xb6\x75\x0c\x2d\xbd\x11\x09\xac\x41\x60\x48\x6b\x76\x83\x24\xb6\xba\xc8\x7e\xf5\xa2\x26\x44\x8c\x43\x12\x40\x32\x8f\x42\xcc\xa5\x86\xbe\x7a\xff\x3c\xbe\x76\x05\xfa\x34\x15\x14\xfc\xcf\xb9\x66\xaf\x3d\x45\x30\xe8\xcd\x90\x37\xa1\x1c\xe5\x93\xc2\xd3\x83\xe1\x03\x5a\x0c\x2e\xda\x09\x8d\xe9\x0d\x50\xc5\x18\x4a\x9c\x01\xb5\x7f\x26\xb9\x4d\xed\xd1\x45\x4c\x34\x06\x37\xec\xcc\xee\x70\x62\x57\x54\xa3\x28\xc6\x5f\x42\x64\x5b\x5e\x1a\x56\x55\xee\xf9\x7d\xfb\x1c\x63\x08\xed\xf4\x9f\xa3\x68\xd1\x7d\x17\xe0\x6a\xdc\x51\x2b\x39\x73\xea\x65\x2a\xc4\x0a\x99\x78\xe1\xbb\x1b\x2f\x86\xc5\xa9\xff\xbf\x60\xdc\xc4\xf6\xbb\xc9\x8a\x64\xf4\xde\x65\xe7\xec\x61\x72\x1e\xde\xb0\xe5\x23\x84\x56\xf7\x61\xd2\xd1\x29\x3a\xf0\xde\x9f\x79\x3b\x11\xd8\xca\xdf\x01\xa9\x43\x19\xa0\x2a\x42\x73\xff\xc4\xd3\xff\xa7\xb3\x4d\x74\xfd\x2e\x0b\x10\x0f\xca\x58\xb5\x32\x5f\x90\x7a\x74\x91\x93\xe7\x51\xd6\xc1\x16\x68\x7a\xee\x37\x47\xb5\x94\x60\xd4\xef\x15\x6e\x72\x47\x6e\xae\x1b\x84\x55\xd7\x6e\x71\xb3\x06\xb9\x81\x29\xb7\x2f\xe1\xcb\x5e\xb4\x05\xa7\xc2\xf4\x32\x7f\x38\x62\xd4"}, {{0x29,0x32,0x14,0x69,0xee,0x9f,0x2b,0xb1,0x65,0xa0,0x69,0x64,0x03,0x32,0xb4,0x89,0xbf,0x5c,0x3f,0xab,0x68,0x2e,0x93,0xda,0xe9,0xd8,0x63,0x17,0xbf,0x50,0xc5,0x2c,},{0x96,0xf7,0x30,0xf8,0xef,0x89,0x70,0x26,0x8d,0xba,0x0f,0x75,0x70,0x41,0x0b,0x61,0x88,0xa1,0xa3,0xc8,0x63,0x97,0x74,0x09,0x13,0xd5,0x3a,0xda,0x26,0x2a,0xb8,0x7e,},{0x4e,0x1a,0xff,0x84,0x63,0xbc,0xa1,0xb7,0xde,0xb1,0xd3,0x77,0x3d,0xf2,0xe7,0xa0,0x68,0x64,0x11,0x1b,0x6d,0xc4,0x2a,0x62,0xae,0x98,0xde,0xb2,0x31,0x39,0x43,0xb3,0x15,0x3e,0xe4,0x66,0x96,0xb1,0x5c,0x24,0xef,0xc2,0xa8,0x08,0xaa,0xba,0x81,0xc7,0x8e,0x3d,0xfa,0x4d,0xfb,0x50,0xca,0x9f,0xe8,0x44,0x45,0xea,0x68,0xbc,0x8e,0x0a,},"\x9c\x71\x2c\x83\xd5\x4f\x2e\x99\x3c\xa6\x8a\x96\x32\x84\x60\x04\x49\x9c\x51\x95\x44\x8d\xdc\x49\x1c\x3a\x0d\x2e\x3a\x66\x6d\x6b\x33\x09\x8e\x48\x64\xfd\xf8\x6e\x61\x9d\x50\xf1\x0b\x7c\xc6\xc3\x9b\x3f\xf2\x80\x1a\x94\x91\xf6\xfa\x97\xc5\xf1\xc4\xaf\xa7\xae\xff\x31\xd7\x38\xf9\xa7\x68\xa7\x9c\x73\xb2\x55\x77\x31\x0f\xb0\xad\x4f\xaf\x85\x43\xa0\x98\xf8\x59\x57\x1b\x61\x48\xe8\xb5\x29\x26\x44\x57\x57\xd5\x54\x9f\xd2\x5a\x26\x51\x85\x31\x56\x63\x79\xd1\xc2\x74\xe6\xc6\xa9\xd6\x41\x32\xe4\xac\x25\xac\x9a\xf9\x38\x1b\xcb\x88\x53\x32\x11\x3f\x43\x01\x4a\x13\x9a\x81\xf8\xd4\x3c\x8a\x6a\xb5\x4c\x11\xa5\xc9\x2e\x06\x19\x1c\x1e\x51\xb7\x57\xac\x9f\x11\xe3\xdc\x15\xdb\x44\x86\xd1\x67\xff\x9f\x2d\x65\xe2\x3e\x6c\x96\x22\x3d\x9a\xff\x8d\x10\xd1\x50\x2c\xf3\xdb\xce\x5e\x35\x7e\x6b\x12\xdb\xe9\xb7\xe9\x97\xc3\xd0\xa5\x07\xd3\xba\xe3\xcf\xef\x1f\xfc\x8d\x05\x6e\xf7\xdc\x72\xdd\xc1\xc8\x1e\x31\x0a\xd2\x05\xbe\x16\xe7\x7f\x27\x38\x35\x4b\x10\xb4\x84\xd3\x07\x6c\x27\xe6\xb4\xf1\x66\x38\x85\x81\xf3\x50\xbe\xfe\x22\xfb\xb0\x82\xb5\x41\x21\xee\x59\xec\xc7\xae\x5d\xec\xe8\x98\x82\xac\xf2\x6c\xb7\x47\xff\xaa\x3e\x2d\x05\xa6\x96\xf6\x0f\xd9\xe8\x29\xc7\x09\xd8\xf0\x2d\xaf\x53\x7b\x23\x69\xb8\x91\xfe\x6c\xcb\xf8\xdf\xcd\xd7\xf4\xa3\x64\xb1\x99\x85\xbe\x7e\xde\xc6\x7d\xdc\x1d\xb7\x13\xc0\xa9\x0f\xaf\xa4\x88\x37\x77\x25\x62\xde\xac\xc2\xd2\xa0\xe7\x89\xe1\x8a\x8b\x5b\x3b\xd9\xe0\x83\xea\x92\xff\xfc\x31\x83\xd5\xd4\x14\x15\x32\x59\xb3\x3a\x43\x29\xcf\xc8\x08\x24\xeb\xcb\xe0\x44\xa7\xe3\x3a\xb8\xa2\x4f\xde\x54\xbd\x95\x20\xae\xa2\x84\xb0\xc4\xc4\xfa\x94\x27\xd2\x51\xc0\xdd\xd0\x13\xec\xdd\x82\x90\xef\x55\x65\xf6\x08\x50\x8e\x36\x35\x89\xe5\x29\xd8\x4f\xf0\xf2\x6f\x9e\xcb\x03\x05\x2d\x58\x97\xfa\xbc\x91\x7e\x56\xe6\x01\xb6\x4a\xbf\xe5\xa1\x7c\x39\x50\x28\x9d\x0c\xdc\xaf\x1f\x60\x05\xa9\xf8\x10\x6f\x43\xe1\x7a\xdc\xaa\x2d\x1e\x26\x91\x66\x76\x2f\x80\x54\xde\x05\x13\x5d\x5d\x13\x93\xd7\x00\x0a\x15\xb8\x7b\xd6\x88\x46\xa8\x9d\x5b\xc2\x28\x63\x32\x51\x51\xaa\xc8\x43\xf7\x22\x78\xae\x6f\x4a\xf7\x2a\x4e\x44\x9a\xdb\x7e\xae\x6d\x43\x6a\x1e\xc7\xe5\x8e\x59\xb7\xb8\xbb\x9e\xf0\xdd\xaa\xa0\x01\x82\x6f\x8d\xcb\x44\x64\x79\xde\xaf\xd8\xb8\xd5\x42\x04\x1c\x19\xa0\x5b\x1e\x0e\xe4\x7b\x46\x40\x91\x0c\x31\x93\x0c\xa4\xe2\x0b\x10\x57\x58\xec\x75\xf1\x95\x03\x56\x94\x7f\x62\x61\xd0\x03\x7f\xe3\x07\x73\xa3\xec\xe6\xa9\x6c\x8d\x54\x33\x33\x3d\x82\x2c\x27\x77\xef\x7f\xf8\xbe\x60\x33\x34\x5b\x50\x55\xd5\x8f\x5e\xb3\x72\x9a\xf5\xae\x88\x24\xf3\x31\xee\x07\x31\xc8\x9b\x20\xac\x11\x8f\x55\x04\x27\xcd\x95\x8a\x55\xf6\xb1\xa2\x88\x8a\x08\x7b\xb7\xdb\x55\xbf\xc7\x3b\x29\x42\x9b\x44\x48\xdb\xe9\x11\x9c\x45\xa8\x73\x39\xb4\x49\x7a\x69\xa4\xcf\x83\x3e\x8f\x37\x70\xcc\xe5\xe0\x1f\xaf\x5e\x73\xbb\xaf\x62\x76\x83\xc0\xa2\x8c\x73\x05\x2f\xbe\xce\x20\x30\x43\x38\x9d\xfb\xfd\x45\x49\x5e\x51\xda\xb8\x6a\x25\x2e\x5b\xc1\xb4\xb7\xfe\x28\x07\xe3\xd0\xe2\x36\x3b\xea\xb5\x1c\x67\xfb\x31"}, {{0x04,0x65,0x77,0x50,0x49,0x7e,0x68,0x15,0x2c,0x43,0xce,0x34,0xa5,0x8d,0x21,0x06,0xe6,0x4c,0x55,0x7c,0xd7,0xa8,0x4e,0xf0,0x5d,0x9e,0xb8,0x2e,0x6b,0xcb,0x05,0xf5,},{0x3b,0x3a,0x19,0x47,0xb4,0xcb,0xf6,0x0b,0x82,0x6d,0x60,0x9f,0x19,0x2d,0xc2,0x30,0xaa,0x9b,0x9b,0xaf,0x4c,0xd6,0xa6,0x09,0x2e,0x49,0x5f,0x1d,0x2e,0x47,0xad,0x62,},{0x7e,0x2e,0xae,0x5a,0x29,0x3f,0x41,0x83,0x91,0xf6,0xd8,0x5a,0x79,0x94,0xb0,0x7c,0x45,0x22,0x80,0x01,0x7e,0xe6,0x53,0xbf,0x61,0x7a,0x8d,0x5b,0xe2,0x4c,0xbb,0x5d,0x0e,0xfd,0xfb,0x7f,0x7f,0x00,0x13,0x12,0x26,0x0f,0x34,0x4e,0x6f,0xb9,0x15,0xad,0x8d,0x7d,0xe9,0xc0,0x51,0x98,0x27,0xc0,0x57,0x26,0xf9,0xce,0x25,0x45,0xdd,0x0b,},"\x29\x48\x22\x7a\x89\x0f\x6f\x84\x5b\x77\x5e\x62\xc5\x3a\xf3\x80\x50\x64\xa1\x57\x64\x46\xf0\x85\xd9\x0f\x8b\x9a\x5e\xd6\x8d\xf1\xea\x39\x3c\xe4\x79\xc4\x41\x41\x49\xa9\xec\x5a\x17\x10\x36\x42\x4d\xff\x03\x44\xb4\x95\x8f\x61\x32\x29\x8d\x0e\x24\xc9\x26\xd2\x8a\xd9\xd7\x9f\x98\xc6\xe6\xbc\xf1\xc5\x76\x76\x06\xec\xd2\x91\xc6\xad\x47\xb4\xf9\xfb\x2b\x02\x01\x15\x5a\xda\x62\x7b\x7a\x1f\xd5\xb0\x74\x19\x87\x40\x83\x05\x9e\xb5\x2b\x2f\x6e\xc2\x28\x18\xb7\x82\x46\x22\x8f\x3f\xe6\x35\x5d\xfd\xa7\x0e\xbb\x9b\xbe\x73\x22\x93\x78\x73\x63\x99\x55\x7c\xe2\x4b\x30\xbf\x64\x5a\x14\xe2\x25\x6f\x70\x01\x9b\x33\x36\xb2\x03\xfb\x77\xc6\xec\x94\xa7\xa2\x63\x48\x88\xfe\xea\xd4\xd7\x2c\x23\x91\xe9\x9e\x8c\x8d\x53\x3f\xd8\xa4\x2b\x08\xc1\x1f\x88\x7a\xb2\xde\xb6\xeb\xbf\xe3\xd2\x51\xde\x63\x53\x6c\x36\xcd\x53\x42\x23\x98\xe5\x44\xcf\xf8\x7b\x07\xa6\x33\x49\xfc\x50\x85\xdd\xe9\x3a\x1b\xfd\x71\x71\x13\x3a\x20\x43\x98\x1f\x60\x75\x22\xc8\x13\x3c\x63\x42\x8d\x1b\x92\x62\x6c\x79\xb7\x35\x8e\x70\x21\xcf\x1f\x41\x2a\x78\xaf\xa7\xcb\x3f\x59\xff\xef\x92\x79\x88\x5a\x5b\xdb\x24\x66\xac\xd3\x4c\xd5\x15\x80\x83\x0b\x83\x51\xeb\xd4\x40\xa9\x66\x23\x90\x7a\xd1\xf4\xb5\x62\x03\xf5\xe1\x59\xa4\x29\xe3\x54\x6e\xad\x0c\x01\x1d\xbe\xd0\x90\x28\x71\x7e\x3c\x3d\xfe\xd3\x91\x97\x76\x4d\x4d\x24\x5e\xf2\x28\xb9\x80\x44\x71\x8e\xf4\xd8\x82\x2f\x21\xb2\xc5\x68\x50\x38\x47\x3b\xf9\x3d\xc0\x93\x74\x51\xeb\x02\xd3\x1a\x46\xc8\xdc\x7e\x94\xc3\xe8\x67\x8c\x83\xb9\x8a\x43\x81\x8f\x12\x5b\x52\x8b\x47\x6a\xad\x31\xd1\x58\x4f\xfd\x48\xf1\x49\xe5\x73\x6e\x58\xf9\x42\x05\xd3\x88\x9e\x56\x7e\x4d\xd1\xea\xc2\xfa\xc1\xf8\xf4\xdc\x54\x0e\x53\x22\x46\x0f\xb9\x40\xe1\x2e\x93\xc4\xc9\x8d\xed\x19\x41\xc1\x90\x4f\x96\x7f\xb4\x64\x36\x84\xc1\x9a\x4d\x5c\x44\x1d\x60\xb0\xe9\xf4\x08\x55\xe5\x23\xfe\x7f\x99\x10\x76\x57\xa6\x80\x76\x27\x5b\xf8\x4b\x7c\x69\xa3\xf2\xb3\x85\x5b\xc8\x02\x6b\xa9\xb0\x0b\xc6\xfe\x34\xb9\x9d\xa0\x63\x17\x00\xa6\x7f\x52\xb3\x4e\x17\x96\x33\x98\x87\xa4\x83\x05\x12\x1d\x53\xab\x44\x40\xfc\x4b\x5c\x9b\xf7\x23\x94\xd5\xed\x37\x2f\xf1\x8c\xa3\xf0\x07\xbd\x02\xdf\x65\x1d\xc3\xac\x43\x82\x75\xf1\xa3\xe5\x24\x22\xb8\x6c\x45\x86\x76\x6a\x21\xcd\x89\xf8\x05\x80\x5d\xbb\x44\xfd\x89\xfe\x24\xfb\x2c\x0b\x40\xd1\xb7\x54\xc3\x35\xdb\xaf\xfc\x3b\x3b\xb8\xbb\x46\xc7\x4c\x36\x37\x45\x04\x04\x2d\x86\x78\x92\x27\x59\x98\x62\x31\x2e\x99\xca\x89\xeb\x50\x4c\xc3\xd7\x5d\x19\x49\x5a\xa8\x6b\x20\xb2\x73\x6b\x12\x1b\xb2\x07\x5c\x88\xed\x4a\x3f\xbd\xaa\x6b\x2c\x3f\x76\xd1\xff\x55\x25\xd3\xa2\x86\x3e\x4d\x83\xc7\x2b\xfe\x01\xe1\x02\x78\x80\x94\x74\xe1\x82\x2d\xe2\xd9\x62\x83\x48\x93\x20\x02\x96\x11\xaa\x9d\xff\xc4\x82\x9d\x66\x86\x9e\x63\x49\x4f\x9a\xad\xe7\x0b\x77\xa7\xb8\x0f\xbc\x93\xe3\xde\x4d\x93\x59\x13\x75\x2d\x04\x5e\x13\xb3\x12\xc5\xd0\x82\xf6\x24\x2d\x49\x85\xb0\x53\xb3\x78\x3e\xb0\x2c\x66\x14\x96\x3d\xc0\xd5\x5d\x4c\xbe\x88\x7b\xae\x29\xcc\x18\x97\x9e\x5e\x2e\xa9\x45\xbc\xd4\x0d\x89"}, {{0x8b,0xd9,0x90,0x70,0xc5,0x0a,0x9f,0xa4,0x18,0xef,0x7f,0x75,0xc0,0x01,0x29,0x91,0x6a,0x41,0xc8,0x60,0x70,0x96,0x1c,0xcb,0x2b,0x20,0x2b,0xe1,0x8c,0x2d,0x10,0xd7,},{0xdd,0xd7,0x33,0x08,0xfc,0xe8,0xca,0x65,0x52,0xd0,0x39,0x42,0x8c,0x7a,0x1a,0x94,0x92,0x33,0x20,0xa3,0x1c,0x0f,0x58,0x0d,0x3c,0x23,0x52,0x80,0xf0,0x3c,0x18,0x30,},{0xb1,0x4a,0x7b,0x26,0x20,0x12,0xc5,0x90,0x9e,0x21,0xd5,0x87,0xfb,0x4f,0x29,0xa9,0x09,0x3c,0x8e,0x1c,0x29,0x99,0x81,0x6a,0x82,0x11,0x8f,0xef,0xbf,0x10,0xe6,0x8e,0xa8,0x98,0xbf,0x0d,0xa1,0x8e,0xbf,0xd0,0x34,0x1e,0xa8,0xf8,0x2a,0x18,0x44,0xc8,0xe0,0xdd,0x53,0x06,0xe5,0x09,0xb9,0xd0,0xc3,0x5b,0x47,0x3a,0x7d,0x20,0x95,0x07,},"\x48\x5f\x8d\x68\x0f\x79\xee\x2d\x82\x8b\xe7\xd0\x18\xa6\x5e\x0b\x64\xb0\xf0\x18\x48\x19\x86\x3e\x71\x10\xee\xa8\xf2\x99\xa7\x2c\x4d\xc8\x7f\x8e\xe8\xa8\xae\xaa\x81\xaf\x91\xdc\x71\xad\xea\x79\xfc\x97\x97\x42\x1c\xcc\x64\x6e\x6c\xd5\xdd\x48\xb4\xde\xc1\xde\x96\x86\x93\xfb\xce\x0d\x00\x21\xa3\xd9\x8d\x38\xa8\xbb\xc5\x81\x95\xe6\xdf\xc3\xb5\xe1\x46\x1b\x2a\x59\x41\x03\xe8\x0a\x29\x44\x1d\x5a\xaa\xf8\x89\xe3\x1c\xc8\x65\x14\x1f\x0c\x6b\x2c\x8c\x81\xf7\x21\x67\x9e\xa2\x39\x4e\xc6\xe4\x08\x1e\xc2\x03\xc2\xea\x39\x7d\x94\x84\x75\x7a\x7a\x0e\xcd\x53\xe6\x52\xdb\x9d\xf1\x7b\xea\x0e\x32\xfe\x8b\x2c\xbc\xe0\xd1\xd9\x7b\x96\x1e\xd7\x4e\x8e\x62\x2b\xcd\xd3\x55\x8b\x7c\x48\x69\x5a\xdf\x18\xaa\xe6\x11\x0e\xa9\xa3\x39\xb9\xda\x40\x7a\x9e\xda\xf2\xab\x08\x1a\x68\x1e\x18\x32\xcc\x21\x5b\x1f\x08\xa6\x7d\x55\x9a\x47\x44\xaf\x7c\xd5\x03\x18\xc2\x06\xee\x91\x15\x75\x82\xf8\x2e\xb6\xc0\xfc\x29\x02\x7b\x44\x61\xc3\x07\x33\xb8\x16\x9d\x14\x81\x32\x2c\x48\x60\x50\x9b\xa0\x96\xba\xcb\x71\xa5\x79\x24\x67\x51\xd5\x67\x54\x0e\x41\x43\x1e\x14\xf1\xb4\x6e\xf1\x6e\xba\x27\x61\x04\xbc\x01\x65\x0d\x5c\x49\x26\xe4\x7c\x9c\x60\x40\x78\x4b\x04\x3c\xd0\xaa\x48\x54\xef\xe8\x79\x7f\xd0\x46\x2d\x45\x39\xf3\x80\x35\xae\xf0\x8b\x45\x77\xc1\xa9\x11\x8d\x00\x4b\x6d\x01\x86\x2f\x52\x76\x77\x6d\xfe\xf1\x37\x18\x64\xf1\x55\xac\x0f\x07\x83\x89\xc2\x05\xcf\x05\x38\xd8\x5f\xa3\x48\x24\x4d\x7a\x42\x29\x11\x31\x0f\xf6\xc1\x01\x32\xb1\x59\x8b\xb4\x45\xc7\xe2\x07\x7b\x76\x3c\x47\x3d\x1e\x7a\x61\xa3\x8b\x64\x92\x9a\x64\x8b\x60\xb2\xe5\x43\x54\x37\x39\x22\x4b\x40\xfb\xf6\xd8\x7f\x10\x79\xc3\x0b\xc8\x73\xac\x38\x99\x1d\x51\xb8\x9e\x9d\x26\x1c\x4b\xcc\xb3\x75\x35\x5c\x07\x2c\x1e\xa2\x0e\x4f\xf9\x1d\x55\xd9\xf7\x54\x4e\x90\xd1\xc6\x64\x6c\x59\xaf\x72\x42\x4d\x8a\xaa\x8e\x0a\xed\x07\xb3\x88\x9d\x4e\x45\x0c\x12\x09\x68\x4c\xe1\x38\xd0\xc9\xda\x07\x95\x25\xf5\xaa\x02\x05\x0a\xf5\x70\xe4\x31\x5c\x2f\xa8\xb0\x99\xb7\x76\x5b\xfb\xb8\x94\xfa\xd3\x59\xb8\xe2\x48\x04\xec\xe0\x52\xac\x22\xa1\x91\x70\x53\x35\xe9\x88\x40\xa6\x24\xe4\xcb\xf3\xa1\xa1\xa3\x27\x81\x27\x85\xb2\xc0\xf5\xd6\x38\x14\x57\xb7\x2f\xdb\x63\x3e\x81\x93\x8b\xbb\x54\xb8\xc3\x7c\xcc\xb5\xd5\x9c\x58\x27\xc7\x68\x3a\x52\x47\x54\x49\x77\xe9\x84\x44\x21\x78\xd0\x85\x29\x06\xca\x6f\x94\x5c\x42\x29\xeb\x08\xad\x27\xe6\xc2\x75\xd7\xb4\xec\x8d\xc2\x5f\xb2\x81\x93\x37\xe5\x3e\xad\x6c\x7a\xa7\x87\xf9\x1a\x7d\xc6\xdd\xaf\xd5\x36\xee\xfc\xbd\xec\x2c\x50\x16\x7b\xe3\x43\x06\xa8\x2e\x16\xd5\xd5\x2b\x3b\x1b\xe0\x08\xa7\xa6\x11\x27\x4c\xe2\xcf\x8d\x62\xe3\xb9\x00\xc0\x99\x43\xbe\x70\xcc\xc7\x7b\x07\x06\x37\xc2\x50\x61\xd6\x1b\xe9\x10\xee\xf5\x0d\xf1\x87\x44\xc3\x3e\x76\xf6\x70\x1e\x0a\x8f\xf6\x29\x7f\xa6\x7e\x4b\x41\x08\xc1\x37\x56\x72\x7a\x9d\x74\xbc\x9e\x17\x98\x3e\xec\x08\xf8\x66\xb7\xc7\xff\xb3\x7f\x3c\xcb\x01\x41\xa8\x0f\xef\xf6\x32\x2b\x2a\xc6\x2b\x84\xce\x27\x97\xfd\x98\xd6\xff\x26\x9a\x41\xa0\xc3\x84\x82\xdb\x67\x98\x62\xa3\x8c\xd2"}, {{0x1a,0xf4,0xcf,0x6d,0x24,0xab,0x37,0x82,0x86,0x7d,0x96,0xa1,0xc2,0x75,0xce,0xeb,0x02,0x2c,0x69,0x1a,0x30,0x8e,0x62,0x45,0x66,0x5d,0x61,0x6b,0xf6,0x7c,0x2c,0x32,},{0x19,0xd3,0x17,0xea,0x98,0xd3,0x5b,0xa5,0xfa,0x67,0xc1,0x2e,0xcf,0xb3,0x27,0x50,0xdf,0x27,0x5d,0x7a,0x45,0xb8,0xe2,0x11,0xa7,0xac,0x47,0xed,0xe7,0x71,0x2d,0x9f,},{0x7e,0xb4,0x6c,0xd0,0xde,0x31,0x55,0xb4,0x37,0x47,0xd7,0x32,0xf1,0x04,0x5d,0x8e,0xf7,0x44,0x92,0xad,0x82,0x7a,0x22,0x45,0xbd,0x17,0x10,0x28,0x28,0x44,0x2e,0x43,0xa0,0xce,0x7e,0x8b,0x26,0x8e,0xd7,0xfd,0x8d,0x3e,0x7b,0x28,0xf0,0x72,0x79,0x5d,0xa3,0xe0,0x70,0xf1,0x2b,0xc4,0xe2,0x3e,0xae,0xf5,0x7b,0x85,0x3c,0xee,0x88,0x0a,},"\xf4\x45\xfd\xcf\xe2\x8c\x17\xbd\x44\x27\xae\xa5\x67\x6c\x0e\x12\x80\x84\x15\x97\xe9\xd6\x6d\xe7\xd7\xa7\x17\x23\x11\x09\x39\xbe\xd0\x0f\x4e\xba\xf9\x60\x3d\x53\xc9\xcb\xf6\x27\x1b\xe5\x47\xaf\x29\xb2\xa0\x45\xec\x41\x28\x8a\x7b\xb7\x9d\x66\x2d\xc2\x10\xe2\x15\x95\x7f\xa8\x46\x88\xc9\x16\x54\x3e\x56\x17\xf5\x60\xe4\xd3\x8f\x73\xba\xef\xc3\x7e\x11\x91\x4e\x47\xc5\x15\x06\x78\x51\xe8\xed\x21\x39\x3e\x13\xdd\x19\xed\x9b\x73\xd9\x89\x45\xfc\x82\x6a\x25\x8e\x95\x7d\xc0\x83\xdd\x8e\x53\x5c\x30\xa5\x4b\x42\x66\xdd\x71\xd1\x13\xce\x85\x6b\x46\x28\x2a\x18\x03\x36\x27\xa9\x8e\x64\x72\xcc\xb4\x63\xed\x3d\x96\xfa\x7b\x35\x5d\x3b\x2c\x2a\x2b\x60\x10\xdd\x14\xf4\xea\x39\x65\xdd\x87\xbe\x1c\x42\x9b\xde\xa8\x30\x0b\x4b\x0b\x44\x45\x86\x35\xb4\x97\x9f\x5e\x3e\x8e\xb5\xc6\x18\xd4\xe1\x3e\x1d\x68\x8b\xf8\x8c\x7e\x4a\x3d\x93\x8e\x84\x33\x6d\x67\xbe\x68\xdf\x34\x35\xc5\xc9\x90\x86\x32\x1c\x02\xe1\x3b\x4a\x12\x52\x4b\x34\xe4\x6a\x0b\x4d\x27\xf3\x0d\x7e\xd4\xf5\xce\xcb\x36\xde\xad\xf0\x9e\x7e\xfc\xc7\x55\xca\x66\x75\x68\x29\x79\x14\xc6\xbc\x24\x06\x27\xd9\xd0\x9a\xac\xf8\x54\x15\x41\x2c\x06\x35\x62\x34\x53\x27\x8d\x9b\xf0\xe1\x0e\xec\x65\xfc\x72\xaf\xff\xfa\x93\x92\xdc\x78\x81\xd1\xe5\xc7\x60\xa4\x02\x80\xf1\x6b\x14\x75\x12\x7b\x91\xb6\x9c\xcb\x65\xdc\x4b\x35\xde\x10\xf9\x43\x25\xc0\xcb\xe1\xc4\x70\x19\xa2\xea\xf2\xb4\xba\x92\xd7\x85\x22\x9a\xac\xfa\xd1\x82\x6e\xbb\xde\xbe\xfb\x7d\xad\x4b\x05\xf8\x82\x43\xe1\x5f\x27\x97\x66\xe3\x32\x1d\xd8\xdb\xa6\x50\x44\x4d\x81\xfb\x08\x78\x76\x7a\x9c\x63\x53\x4b\xb4\xba\x21\x28\x5a\x24\x16\xcb\x8f\x85\x6d\x11\xa9\x6e\x0a\x8c\x8d\xe1\xe1\xa7\x51\x32\xf1\x56\x4c\xd9\x94\x99\x56\x90\xbb\xed\x2e\xe1\x54\x53\x7f\xb6\xf2\x79\xfb\x09\xc8\xde\xa6\xf6\xaf\xab\xc6\x28\x56\xe3\xd1\x28\xfd\xfa\x79\xfc\x49\x76\x19\x3b\xb9\xb3\x36\x86\x1e\x47\xb5\x6d\xc2\x58\x23\x93\xd2\xe5\x44\x65\x1a\xc8\x5b\xc5\x8e\x9e\x6a\x94\xdc\x4c\x39\xc4\xef\x72\x53\x8a\x14\xf8\x56\xcd\x95\xc3\xe2\x79\x0a\xde\xe0\x3a\xb2\xe5\x2c\xa0\xae\x47\x1d\xe5\x02\xcb\x19\xe6\x76\xaf\x35\xf5\xf9\x3d\x84\x0f\xef\x96\x06\xcb\xe9\x2d\x8b\xc2\x50\x06\x10\x5d\x92\x34\x45\x88\x83\x88\x42\xc3\xbe\x50\x5c\x73\x50\xe3\x51\xb7\x35\xe6\xcc\x6f\xb7\x92\x75\xb2\x7b\xd9\xeb\xd3\x6b\xa4\xd0\x60\xac\xee\x73\xb5\xa3\x15\xce\xff\xab\x86\xd0\x6f\x21\x68\xa6\x70\x65\x57\x81\x96\xa0\xed\x04\xa4\xdd\x71\xd6\x73\x48\x37\xdb\x08\x38\x57\xab\x1e\xb5\xe0\xee\xc4\xff\xba\xc9\x54\x4f\x4e\xc1\x9b\xde\x19\x4d\xf8\x4b\x1c\x84\x83\x41\x57\x4b\xf1\x0d\xae\xe8\x5b\x81\x78\x19\x6f\xb6\x08\x12\x3a\x80\x81\x71\xd7\x3c\xe4\x20\x6a\xd6\x52\x16\xad\x1a\x5c\xbd\xe4\x0b\x19\xd6\xae\x7f\x40\xdf\x97\xab\x84\x32\xe2\xc5\x3a\x50\x4e\xd1\x22\xe2\x5f\xb7\xa5\x1c\x14\x35\x4a\xb3\x92\x8e\xde\xb3\x9c\x29\xeb\x24\x6b\x74\xa0\x76\xf8\x9d\x03\x50\x4f\x40\x1b\xd1\x76\xb5\xcf\xfe\xe4\xb9\xdb\x09\x7c\x45\x76\x4f\x51\xaa\x37\x67\x04\xb5\xa7\xf2\x10\xb3\xf1\xa9\x05\xe2\x5d\x67\x00\x2f\x65\x57\xeb\xb7\x49\x73\x7c\xda\x31"}, {{0x2a,0xac,0xc8,0x19,0x7f,0xf8,0xfa,0xe1,0xc1,0xcf,0x38,0x62,0xe3,0xc0,0x4a,0x21,0x78,0x29,0x51,0xf8,0xe4,0x8e,0x40,0xb5,0x88,0xf8,0xbc,0x74,0x60,0xc3,0x0a,0x03,},{0x9a,0x1b,0x01,0xe2,0x15,0x4f,0x1c,0x36,0xa8,0xe1,0x6b,0x79,0xee,0x7d,0x2d,0x05,0xb8,0x71,0x2e,0x0d,0x27,0xa0,0x61,0xa6,0xd4,0x1d,0x47,0x57,0x78,0xb0,0xdf,0x8c,},{0x64,0x7c,0xdd,0x6c,0x1a,0x67,0x29,0x0e,0x57,0x67,0x6a,0x78,0x11,0x3a,0xaa,0xdc,0xa6,0x9a,0xc5,0x7b,0x99,0x77,0x15,0xc5,0x09,0x89,0x5b,0x8c,0x5c,0x94,0xe8,0x2c,0x0b,0x6a,0xce,0xcc,0xf3,0xba,0x8b,0xd7,0xcf,0x61,0x75,0x2b,0x1b,0x19,0xd1,0x3b,0x49,0xf1,0x5f,0x8b,0xfa,0x04,0x6e,0xb4,0x42,0xa5,0x5c,0xd5,0xba,0xb1,0x42,0x02,},"\x5d\x82\x75\x2c\xe5\xda\x31\x80\xfa\xf4\x78\x7a\xed\xfb\x19\x29\x4b\x43\x48\xa1\xd9\x20\x2c\x85\x39\x83\x31\x32\x3e\x0f\x42\xb0\x83\x52\x27\xe6\x8e\x11\x56\xf2\xd4\xba\x2f\xe4\x50\xe6\xd6\xef\x2b\x92\xd8\x9b\xbb\xe4\x09\x6e\x12\xca\x83\x97\xeb\x2f\x45\xe6\x76\xf1\x67\x3a\xa4\x1c\x95\x9f\xcd\x30\xd5\x57\x88\x53\xb5\xdb\xd1\xc0\xd5\xb3\xa0\xf0\xd8\x70\xec\xa7\x1e\xa1\x33\x90\x11\x1b\x25\x8f\x65\x48\xb3\x2f\x37\xa0\x5e\x97\x44\xa6\x56\xfd\x77\x8d\x65\x72\x19\x65\xc6\xd9\xb3\x28\x60\x0b\x45\x70\x47\x70\xe0\x4b\x09\x97\x90\xaa\x78\x84\xf0\x0d\x7b\xb7\x65\x9e\x33\x72\x10\xbd\xc2\x3e\xaa\x71\xd7\xb0\x16\x03\x0a\xca\x62\x23\xb5\x56\x9b\xdf\xc2\x90\x81\x1a\xac\x40\x95\x24\xdc\xcb\xf9\xba\xbc\xbe\x4b\xf2\x09\x46\xb5\x44\x31\x7c\xa6\xf2\xf9\x18\x31\xc7\x9f\xb2\x73\xb6\x40\x4e\xb4\xe6\x1e\x1f\x7b\x10\x6e\xbd\x0d\xb9\xf2\xb1\x97\x4d\x2f\x03\x1b\xce\x25\x80\x36\x06\x55\x2c\x34\x41\x65\x5e\xfc\xf2\xc7\xea\x52\xad\xcb\x30\x99\x3d\x85\xf2\xdd\xa7\x96\x03\xe9\x41\x5a\x02\x32\x45\xa6\x6c\x07\xa9\x56\x93\x31\x46\xf5\x3c\x99\x3c\x08\x89\x18\x08\xb8\x16\x6b\x30\x72\x1f\xbd\x1f\x8a\x1b\x93\x7d\x14\x07\x0d\x78\x6e\x9e\xb4\x51\xf2\xab\x51\x42\xf8\x3a\x60\xf3\x5d\x76\xad\x8b\x81\xd6\xa5\x7c\xf3\x68\xfc\x6f\xca\xcc\x0c\x47\x58\x44\x0d\x9c\xd5\x95\xb1\xb0\x94\x2a\x36\x55\xe2\x50\xda\x98\x3b\x72\x41\x54\x6d\xcf\xbe\x0a\xe8\x10\x77\x65\x02\x95\x40\x9f\xf9\xe9\x09\x77\xfb\x99\x60\xcb\xf4\x0a\x2a\xf5\x17\x74\x02\xba\x2f\xaf\x50\xdb\x6f\x1a\x73\x65\xcf\x99\xe9\x92\x42\x9e\x38\xdb\x43\xea\x83\xfd\xdc\x95\xa6\x48\x67\x6c\x0b\x16\xbc\x95\x2b\x15\xde\x99\xd5\x2f\x6b\x52\x33\xda\x4e\xae\x19\x78\xe8\xba\x25\xe6\x23\x5a\xfb\xc5\x11\xc7\x6c\x4c\x87\x4c\x92\x37\x92\x2b\x1c\xef\x08\x47\xd0\x7a\x80\x20\x0c\xba\xe3\xc7\xc8\x1f\xcb\xd0\xd1\x72\x52\xed\x8c\x61\xad\x19\x54\xfc\x86\x2e\x1e\x04\x44\x4c\x32\x08\x6f\xee\x38\x0d\x1c\x17\x54\x13\x22\xb9\xa6\x0d\xa6\x62\x35\x2e\x21\x0e\x9a\xe2\x15\xe3\x53\x29\x6d\xb9\x22\x33\x9a\xa1\x7d\x21\x73\xec\x31\xf1\xc5\x30\xa2\x4b\x1f\x34\x8a\x31\x57\x2e\x14\x69\xca\xac\x80\x8f\x9c\x76\xec\x27\x31\x87\x3b\x80\x3e\xad\x3e\x54\xea\x24\xbc\x24\x49\x9b\x97\x04\xb3\xbd\xce\x81\x38\x9b\x9d\x14\xd4\x95\x27\xc0\x4b\x3b\xb9\xe3\xba\x6d\x94\x6c\xea\x58\xcf\x78\x6d\x4d\x28\xb8\x9b\x41\xc5\x82\x74\x03\x5a\x86\x90\x5a\xd9\x57\x58\xc3\x16\x13\x66\xab\x93\xda\x81\xe6\xb4\xc8\x08\x36\x4e\x08\x7d\xae\xea\x4c\x4c\x5c\x2a\xa6\x87\x19\x37\xc5\xfe\xab\xa2\x14\x9f\x01\xf7\x38\xf4\x53\x96\xe6\x6e\xa8\x06\x32\x21\xe1\xc8\x1c\x05\x25\x5b\xa5\x64\xad\x44\x0c\xb5\xd0\x7c\xbd\x4b\xab\x94\x1e\xa5\x93\x24\x49\x30\xbc\x5c\x28\x9b\x31\x65\xd3\xec\x88\x47\xeb\xc4\xb6\x74\xc0\xa4\x9f\x91\x69\xad\xef\x78\x6d\x77\x67\xbc\x8f\x21\x3d\xb7\xd9\x5c\x06\xe9\x9b\xc1\x1e\x20\x00\x55\xb6\x5e\xb7\x9a\xda\xa0\x1b\xcd\x2c\x85\xda\x43\xce\x63\x70\xe1\x2e\x34\x9b\xf6\xd4\x75\x48\x7a\xff\xdf\x92\xe2\x0a\x3a\xcd\xed\x1d\x76\xf9\xe8\x3e\x91\x9e\x98\xde\xf1\x95\x07\x2a\x50\xd0\xc5\x71\xdd\x25"}, {{0xff,0x86,0x21,0x56,0xc7,0xea,0xb6,0x81,0xc9,0x5e,0xff,0xf8,0x00,0x3e,0x00,0xa1,0x4f,0x1f,0x0d,0x50,0x5d,0x55,0x07,0xe6,0xe5,0xb3,0x91,0x79,0xdf,0x9b,0x1c,0xda,},{0xe1,0xb8,0x9f,0xb3,0x11,0x14,0xea,0x46,0x10,0x7f,0xfd,0x03,0x29,0xf1,0x06,0x64,0x28,0xde,0x54,0x70,0x8e,0xdb,0xec,0xf3,0xed,0x9d,0x47,0x08,0xcd,0x14,0x3f,0xe2,},{0x4b,0x81,0x37,0x04,0x2d,0x67,0x84,0x75,0x7d,0x4a,0x9c,0x06,0xbc,0x74,0x32,0xf4,0x80,0x9b,0x1c,0x6a,0x90,0x35,0x42,0x73,0x6d,0x9a,0x57,0x66,0x8c,0x20,0x84,0x5c,0x17,0xd4,0x68,0x55,0x70,0x85,0xc5,0x7f,0xb6,0x32,0x13,0xda,0xd3,0xbe,0x0f,0xa3,0x6a,0x11,0x8f,0x7c,0x1a,0xef,0xf2,0x56,0x2f,0xf4,0xb8,0x88,0x8c,0x26,0x90,0x0e,},"\xb3\xd1\xdb\x72\xa6\xa9\x85\xec\xd7\x0a\x2c\xff\x6c\x18\xc1\x79\xe2\x17\xd4\xf4\x10\xfd\x39\x34\x96\x96\x85\x90\x1b\xd0\x71\xbc\xe6\xc2\xfb\x67\x63\xe1\x0c\x6f\xa1\x6e\x75\xa1\x17\x60\x66\xb8\xec\x81\xae\x3a\x80\x39\xe7\x1d\xc2\xcd\xc6\x4a\x40\xfd\x62\xb7\xce\xe7\xbe\x4b\xa0\x33\x2f\xe4\x5d\x0b\x60\x15\x86\x52\xe3\x3f\x8d\x3a\xff\x3c\xb4\xd6\xb0\x21\x74\x4d\x0d\xd1\x78\xb1\xbf\x0a\x1c\xc1\xd3\xfe\x93\x21\xbe\x28\x42\x1e\xb8\x82\x63\xa1\x24\xf4\x97\x92\xd0\x79\x47\x5a\x8c\x55\x5f\xf5\x69\x08\x73\x51\x4b\x5d\x48\x3e\x53\x21\x7e\x0c\xbb\x12\x86\x2b\x85\x0f\xe3\x90\xc8\xf8\x30\x08\x08\x6e\x64\x9a\xc9\x04\xb0\x18\x35\x0a\xb4\x91\x57\xee\x9b\xca\xe6\xc0\x7a\x4b\x87\x8b\x48\xe2\x5e\x98\x4f\xbb\x4d\x36\xb6\x1d\x68\x9b\x13\x46\x8a\x28\xd1\xe3\x87\xe0\xe8\x86\x57\xf8\xc8\xac\x95\x86\xa6\xe2\x6c\xf9\x4d\xff\x6f\x82\x64\xe3\xff\x62\x58\x86\x5c\x6d\xcf\x85\x7b\x00\x14\x78\x86\xe1\x75\xdf\x04\x32\xe3\x2f\x04\x40\x0e\x29\x9f\x21\x18\x83\x12\xb3\x2d\xfc\x05\x0e\x7b\x7e\x87\xee\xaa\x0c\xba\xac\x6b\xe9\x93\x7a\x5e\x0c\xc3\x11\x13\xde\x7c\x8b\x23\x3e\x1c\xe8\xe5\xd9\xc5\x64\xfb\xe9\xf3\x7b\xbd\x41\x1d\xf7\xa5\xe4\x4e\x6c\x7e\xbb\x67\x6d\x85\x89\x4d\xcc\xf4\x86\x5e\x4d\xda\x0c\xad\xef\x2b\xbc\x55\x00\x0b\x3a\x29\xf1\xf7\x1e\xf4\x46\x1d\xdc\x3b\x33\x1d\x91\x56\x65\x34\xc5\xd6\xd8\x4c\x73\x13\x76\x29\x53\x20\xf8\x0a\xdc\x90\x28\x8f\x99\x53\x55\x4f\xcd\xf9\x21\x3d\xe6\xa9\x05\x21\x0d\x4c\x80\x64\xaf\x91\xcd\x98\x32\x5e\xf9\x18\x98\xd3\x3d\x70\x03\x82\x02\xe3\x2f\xb6\x70\x9c\xa3\xd7\x88\xfe\xcb\xd1\xb8\x41\xfa\x4e\x5e\x90\x62\xd6\x42\x67\xc3\x5c\xfd\x44\x4f\xb6\x9e\x2f\x60\x47\xf5\x8b\x1c\x2a\xf4\xcc\x7e\x4c\xac\x2f\x89\x08\x88\x36\x05\x92\x11\x3e\x96\xad\x3a\x85\x7e\xd0\x5e\xaa\xba\x6f\x91\x53\xef\x89\xb9\x3e\x00\xe8\x74\x37\x33\xec\x47\x2d\x9b\x0e\xec\x1c\xd8\xfa\x52\x42\x5c\x4a\x26\xbd\x7d\xf7\x3a\x27\x12\xbe\xbe\x51\xae\x3b\x25\xeb\x78\xdb\x82\x14\x90\x31\xfe\x7b\x28\x1a\xf6\xcb\x77\x14\xed\xf8\x9d\xe9\x15\xf3\x47\x0f\x15\x3e\xed\x7f\x45\x62\x43\xbb\x90\x34\x2e\x19\x0e\x64\x7f\x39\xe0\x46\x88\x3c\xe2\x8a\x89\x20\x03\x31\x5e\xa3\x79\x42\x9e\x95\x82\xa9\x35\xeb\x78\x96\x33\x96\xd1\x36\x84\x5f\x86\xc4\x66\xe8\xfa\xf2\x27\x2f\x43\xff\xef\xc2\xad\xa5\x60\x1f\x8a\x6b\x2a\xc4\xcc\x6b\x92\x82\x09\x17\xf2\xe0\x39\x3c\x8f\xaf\x98\x2d\x6c\x5f\x4f\x23\x0e\x27\xce\x22\x78\xa7\x23\x77\x47\xfa\x85\xa9\xc8\x57\xbf\x18\x02\xc3\xea\xe0\xd2\x35\xb5\xad\x58\x49\x7d\x66\xa0\xd3\xa9\xba\xeb\xcc\x41\x7f\x18\x33\xe9\xcc\x44\x60\xf9\x75\xd7\x28\x58\xcd\x11\x8d\x7a\xaf\xaf\x1c\x87\x82\x97\xca\xcf\x71\xac\x75\x67\x6d\xc1\xb4\xfb\x51\xc1\x77\x58\x10\xd0\x35\x37\xf2\xd7\x66\x27\x8b\x99\x71\xbb\x97\xd3\xc4\x9b\x51\xfe\xb2\x6d\x37\x5e\x0c\xb9\x10\x95\x74\xa8\x16\xf8\x4e\x76\xfc\x7e\xf0\x72\xd5\x79\x3c\x2f\x65\xab\x2e\xfd\x90\x52\xe6\xb8\x56\x9f\x28\x05\x86\x1c\x31\xa7\x34\x4a\x3c\x44\x06\x9a\x94\x32\x0d\x27\x4e\x27\x12\x71\xea\xfa\x3b\xfe\x64\xde\x75\x37\x84\x6a\x01\xe5\x1f\xda\xe0"}, {{0x58,0x26,0x19,0xab,0x3c,0xf5,0xa3,0xae,0x77,0x66,0x88,0xbf,0x6d,0xba,0xcb,0x36,0x33,0x0a,0x35,0xad,0x75,0x24,0xe4,0x9e,0xf6,0x63,0x68,0x77,0x64,0xcf,0x6e,0xc7,},{0x20,0x02,0xea,0x0a,0x38,0xa3,0x27,0xe0,0x38,0x4a,0xea,0xe4,0x68,0xdb,0x0f,0x6c,0x85,0x16,0xa6,0x96,0x09,0xaf,0x9e,0xee,0x93,0xe9,0xec,0xb9,0x4b,0x44,0x9c,0x66,},{0xfe,0x97,0x01,0xda,0x1a,0xa8,0x1c,0x55,0xba,0xc3,0x36,0x38,0xf7,0x75,0x54,0x2b,0x80,0x44,0x80,0xf3,0x4b,0x7b,0xfc,0x78,0xda,0x99,0x16,0xe5,0x24,0x6a,0x60,0x4d,0x39,0x0b,0xf9,0x20,0xc8,0x72,0xa7,0x79,0x24,0x24,0x6e,0xe8,0xd0,0x39,0x3b,0x20,0x2e,0x7b,0x25,0xb2,0x48,0x4f,0x65,0x4a,0xc3,0x67,0xcb,0x09,0x25,0xec,0xe3,0x05,},"\xca\x74\x28\x4f\x11\xc5\x6e\x25\x98\xd7\x8a\x4e\xcd\x03\xb4\x0e\x01\x7a\x55\x81\x76\x01\x2b\x26\xfd\xf6\x95\xc3\xde\x98\xa7\x4f\x8f\x40\xa4\x7d\x79\x78\xed\xc2\x4e\xe8\x09\x2b\xfe\x5e\x61\x59\x68\x34\xde\xed\x1d\x9d\x34\xa0\xf5\xcd\xae\xbe\x34\x21\xaa\x19\xe0\x12\xde\x86\x5b\x9e\xe1\xb7\x34\x79\xb2\xbd\x1a\xc9\x82\xf9\x7e\xd9\xc7\xcd\x20\x45\x9c\x60\xfb\xb1\x1e\x1e\x2b\x4e\xac\x5d\xb6\x84\x4c\x71\xd7\x29\x49\x50\x2b\xba\x50\x3a\xce\xc9\x05\xad\xba\x25\xf6\xb1\x19\xea\xf9\x63\x9f\xa8\xab\xb3\x02\xdf\xf9\x93\x2d\x85\x0c\xc4\x4c\x57\xcf\x90\xb2\xe5\x8a\x8b\x52\x51\xc1\x26\xa9\xe2\x8f\x5c\x76\x1b\x62\x80\xe2\xcd\xdd\x79\xcb\xd6\x8e\x53\xff\x4a\x62\x26\xd3\xbd\x4c\x96\x1b\x9b\x9e\x43\x45\xa2\x54\x58\x62\xc7\x97\x38\x66\xf0\x42\x0b\x89\x8e\x7b\xae\xa9\x0e\xa4\xee\x00\x40\x42\xef\x38\xa1\xfd\x95\x6a\x72\xfd\xf6\xfd\x43\x25\x7d\xa9\xfd\xb9\x66\x80\xef\x4f\xdf\x9e\x94\x3d\x26\x5c\xdc\xf2\xe5\x2e\x32\x01\xd5\x40\x8b\xc6\xce\x10\xe5\x70\x0a\xdf\x12\xb5\x5b\xa1\x4a\xa8\x29\xd8\x69\x1c\x31\xf2\x4f\xc4\xa5\x1c\xe6\xfa\xa1\xf3\xef\x2e\xad\x78\xe5\xe7\x53\x44\x6a\xd3\xfa\x4a\x84\xc1\x93\x97\x9a\xeb\xc8\x30\x9b\xad\x60\x81\x4f\x48\x59\xb9\x31\xd7\x04\x14\x76\x44\x91\xc6\xc9\xed\x8d\xb6\x73\xc5\x43\xd3\x51\x85\xcd\x28\x88\xaa\x21\xc1\xa9\x20\x34\x27\xe0\xac\x0b\x1f\xe3\x4c\x0e\x4a\x40\x01\xe0\x95\x6c\x13\xcb\x59\xa3\xba\xf8\x7c\x21\x09\xa8\x88\xa4\xc9\xe7\xaa\x48\x17\x67\xd8\x02\x0f\xf3\x5d\xd7\xc5\xcc\xec\x7c\x08\xe9\x71\xa7\xe2\x18\x13\x8c\x90\x54\x6a\x7d\xdf\x36\xad\x11\x4b\xe5\x85\x57\x43\x2c\x2d\xdf\x34\xce\xd3\x37\x9f\x70\xd4\x40\x7e\x58\x79\xf9\x84\x2f\x38\x17\x17\x05\x1b\x16\x85\xaa\x7a\xb0\xad\x38\x54\x1e\xc1\x68\xf5\x1c\xb6\x88\xf3\xcd\x1a\x01\x9a\x33\x6c\x9f\x4f\x3f\x82\xde\x78\x5c\x07\x48\x67\xfd\xc8\x80\x0f\xc7\x6f\xba\x04\xc8\xad\x8d\xe1\x0d\x2e\x9b\x43\x05\x81\xbe\x44\xc4\x1e\xcc\x8f\xc8\xa6\x16\x31\x43\x99\xd1\x8c\x64\x79\xf5\x7e\x57\x3b\x22\xa6\xee\x5c\xe2\xdc\xc0\x89\x48\xa0\xde\x1f\x0d\xd2\x5b\x65\x71\x5a\xb1\x8c\x70\xc7\x62\xfc\x3d\x7d\x60\x0c\xad\x63\x22\x60\x38\x50\x9c\x19\xab\x35\xb5\x49\x3e\xee\x73\xa7\x03\x73\x1e\xc5\x35\xc9\x0c\x6f\x06\xd9\x4d\x3e\x5f\x7e\x51\xa0\x9f\x9f\x8f\x42\xc5\x01\xb8\x50\x46\x86\x36\x5c\xee\xe9\xe0\xfe\x00\x13\x29\xf3\x03\x52\x21\x46\x71\x7c\x6a\x12\x58\xd0\xf1\x57\xcb\xea\x4b\x5a\x5e\x3d\x13\xbc\x90\x7e\x95\xfd\x6e\x8a\x71\x89\x6a\x02\xc3\x10\x6b\xd2\x6a\x51\x00\x51\xf1\xb3\x02\x58\xab\x27\xf8\x75\x67\x3b\x13\x37\xee\x36\xb7\x1a\x37\x6e\x0f\x9e\x78\x09\xa6\x7c\x67\xd9\xac\xc1\x6c\x25\x1d\xcb\x8c\x92\x6c\x8e\x93\x25\x16\xd3\x8b\x72\x33\xea\xc6\x15\x9c\x59\xca\xd0\x30\x7c\x59\x0e\x71\x31\xb6\x22\x19\x14\x5a\xaa\x35\x5b\xfb\x4a\xcb\x6a\xf0\xa5\x50\x00\x06\xcd\xd8\xb8\x13\xfe\x19\x08\x60\x2e\x08\x74\xc9\x62\x2b\xb3\x76\x73\xba\x1a\xcb\xa4\x14\x23\x16\x67\xbc\xc4\x90\x7a\xc8\x71\xf8\x7e\x6c\xe3\xf5\x91\xc1\x91\x71\x05\x7a\x9f\x45\x7f\x53\x62\xae\xda\x10\x5d\x18\xfb\x84\xf7\xd0\xf0\xa7\xda\x7e\xf8\xda\x91\x14"}, {{0x2b,0xbd,0x83,0x0c,0xe7,0xde,0xf3,0xfe,0xce,0xa1,0xec,0xd6,0xea,0x0a,0xe9,0xc9,0xf4,0xfa,0x8f,0xfc,0x3b,0x1f,0x19,0x38,0xc5,0x05,0x05,0x1b,0xab,0x40,0xcf,0x7a,},{0x0f,0xdf,0xed,0x8d,0xe3,0xc1,0xea,0xf8,0x91,0xce,0x37,0xe3,0x4c,0xb4,0xa2,0x44,0x1c,0xbb,0xae,0x08,0x83,0x38,0x3d,0x70,0xde,0x24,0x64,0x85,0x0b,0x4a,0x64,0x2a,},{0x13,0xeb,0xc9,0x79,0xa8,0x87,0x10,0xe3,0xc5,0xf3,0x45,0xcf,0xbb,0x82,0x48,0x13,0xb3,0x08,0xa9,0xd5,0xc6,0xde,0xe3,0x28,0xbf,0xd2,0x35,0xa9,0x7d,0xe7,0xb3,0x26,0xde,0x6c,0x73,0x8f,0x96,0xf6,0x98,0x31,0x94,0x92,0x09,0x99,0x68,0x52,0xdd,0x9c,0x09,0x8d,0x58,0x08,0x41,0x87,0x09,0xf2,0xbf,0x51,0x0d,0x46,0xb7,0xf0,0x36,0x06,},"\x5f\x1e\xde\xaa\x3c\x0b\x2a\x63\x31\x1d\x97\xf1\xc5\x4e\x7e\x2f\x68\x71\x70\xe6\xb4\x6e\x21\x69\xcb\xf5\x6c\x66\xf2\x31\xbf\xc4\xa5\x76\xbd\x2b\x84\x20\xbf\x35\x7d\x3a\x90\xf8\xf3\x2e\xa1\xad\x99\x39\xb4\x67\x25\x4b\x66\xa1\xdf\x1f\x5b\x4c\xba\xc6\x3a\x5c\x27\x24\x26\x0d\x24\xd8\xdf\x8e\xdb\x58\xae\x24\x7a\x25\x91\xe9\x20\xb1\xa4\x20\xcf\x8d\x85\x39\xea\x57\xdb\x0d\xad\xff\x1a\xd3\xe9\x8c\x31\x72\xd0\x33\x16\x3c\xb4\x34\xa7\x66\xb0\xc1\x18\xa5\x6a\xbd\xcc\xe7\x9c\x82\xaf\x7b\xac\x74\xed\x0e\xa0\x24\xac\x4c\xe0\x22\x2d\x0a\xa9\x14\xf4\x32\x09\x2b\x1b\x51\x78\x04\xdb\x59\x18\xa8\x45\xe9\xcc\xa5\x5a\x87\xdb\x7c\x28\x52\xf7\xdd\x2e\x48\x36\x01\x85\xcc\x44\x2c\x79\x30\xaf\xe1\x5d\xd6\x22\xcc\x02\xbc\xd1\xee\x77\x8b\x59\x70\x5f\x14\x33\x32\x41\x58\x8a\x52\x2d\xe2\x44\x07\xe8\xe6\xe1\x0d\x5e\xf3\xa8\x8e\x3a\x3c\x44\x38\xc1\x7f\x75\x04\x67\x4f\xd7\xe4\x18\xcb\x2f\x77\xad\x0a\x56\xd2\x38\x67\x03\x15\x5e\x9a\x40\x1c\x43\xdd\xb5\x1e\xad\x55\x20\xaa\x7b\xa0\x38\xe7\xde\x53\x31\x41\x8a\xd5\x52\xbd\xcd\x18\x5f\x50\x3a\x85\x48\xf5\x5b\x63\x86\xe4\x68\x7c\xa5\x15\xf7\xc0\xee\xa5\x70\x98\x3b\xfb\x24\xbe\x16\xf7\xb3\x00\x3f\xb7\x56\xe3\x26\x56\x2f\x2a\x32\xfe\x65\xff\x84\x4c\x39\x84\xc7\x2e\x40\xdd\x49\xe4\xf3\xae\x8c\x0f\x81\x9a\x79\x39\xb2\xe7\x36\xe3\x81\xf5\x82\x3c\xbc\x61\xb2\xed\x01\xd9\xb0\x5c\xf8\xb1\x46\x48\xa4\x8b\x0d\x7c\xbe\x88\x2a\xc1\x6c\xad\xd8\xc4\x2a\xa2\xc7\x02\x46\x34\x7b\x4d\x84\x95\x36\xa7\xac\x22\xc7\x20\xda\x3c\xf1\x78\x72\x5e\xe5\x57\xa9\x2c\x25\xb1\x2b\x8b\x95\x6d\x3b\xf4\x80\x2e\x9e\x8a\x15\xb5\xab\x75\x42\x35\xcc\xa0\xe5\xb7\xe5\x5e\x4a\xec\xe4\x5a\x47\xe0\x84\xce\x14\x47\x44\x05\x98\xef\x5d\x4f\x5f\xdc\x2c\x98\xa5\xad\x13\x6c\xff\xbf\x87\xd3\xcf\x52\xf6\x73\x8c\xca\x79\x48\x35\x60\x92\x07\x8f\xdf\x25\x45\x77\xf5\x59\x69\xa0\xc6\x52\x46\xda\xc8\x09\xa2\xfc\xa1\xf6\x0a\x1d\x92\x98\x77\xb9\xa6\x54\x0e\x88\xa9\xe6\xe9\x15\x59\x38\xd2\x2c\x68\x7e\x63\xb3\x87\x53\x4d\x38\x5e\x89\x61\xe5\x88\x67\x43\xf9\x5f\x4a\x70\x80\xd9\x16\x62\x45\x17\xb1\x53\x36\x03\x0a\x46\x71\x4b\x16\x8b\x83\xd6\xf9\xcc\xe0\x60\x66\x49\xc0\x1f\x0a\x1d\x0a\x2a\x53\xf5\xe3\x78\xf6\xaa\x98\xc3\x84\xaa\xfb\x3e\xef\xdb\x34\x21\xfa\x3a\xc9\x8a\x0d\x3a\x9c\x02\x9c\x23\x00\xae\x02\x41\x06\x7d\x1a\x4f\xc9\x2e\x43\x86\x88\xea\x88\x9f\xcb\x1a\x1a\x9e\x86\x34\xb9\x16\xc6\x0b\xaa\x0c\x18\xbf\xcd\x13\x9b\xfe\x30\x17\xbf\xbe\x16\x29\x13\x43\xce\x86\x05\xbb\x78\x72\x55\x8c\x6b\x5f\xd5\x6d\xfd\x22\x15\x77\xed\xcf\xfa\xa8\xbd\xa3\x4d\x7a\x11\xab\x8c\xb2\x78\x28\x8e\x58\x34\x84\x26\x76\xfc\xcf\xfa\xa9\x11\x1b\xce\xd2\xb3\x57\x5f\xdd\x49\x62\x1b\x76\xe8\xd1\x29\xb6\x17\x00\xee\xab\x03\x14\xef\x94\xd5\x50\x50\x6a\x4b\x8d\x1e\xe6\x55\x08\xd8\x9d\x0e\x99\xe9\x33\x6b\x41\xd9\xf7\x4a\xa4\xd7\x22\x11\x4d\xe0\xf3\x1e\xcf\x00\xb0\x97\xf5\x3c\x9a\xca\x9c\x7a\x28\x5b\x58\xa3\x5d\x70\x29\x8c\x5c\x34\xf7\x4b\x4a\x70\x53\x08\x03\x31\x00\x34\x9f\x0c\x62\xf9\xc2\xeb\xf7\xde\xad\x0a\x77\xb2\x98\xeb"}, {{0x1a,0x7a,0x3c,0x2f,0x54,0x81,0x13,0x1b,0xe5,0xf8,0x68,0x45,0x6a,0xa2,0xfa,0x90,0xe5,0x6d,0x52,0xcb,0x72,0x1c,0x71,0x84,0xeb,0xff,0x06,0xfe,0xd2,0xfe,0x68,0x5d,},{0x7c,0x2a,0xd0,0xf2,0xa5,0x70,0x55,0x03,0x26,0xfb,0x50,0xa8,0x50,0x83,0x58,0x21,0x67,0x6d,0xe1,0xde,0x12,0x7f,0x6d,0xe1,0x67,0x02,0x99,0xd8,0x14,0xf6,0xe3,0xce,},{0x97,0x61,0x60,0xfb,0x5b,0xbd,0xab,0xe5,0xc8,0x96,0x2f,0x23,0xba,0xba,0xcf,0x0b,0x0a,0xb4,0x1c,0x2b,0xb1,0x3e,0x9c,0x0d,0x44,0x90,0x67,0xb7,0xde,0xcc,0x7d,0xb4,0xe9,0x4e,0x76,0xa7,0x1b,0x9c,0x0a,0xc4,0xd6,0xaf,0x38,0x7a,0x72,0xa8,0xcd,0x73,0xe3,0xbc,0x63,0xb7,0xed,0x65,0x0b,0xee,0xbf,0x17,0x42,0x4c,0x49,0x0b,0xd6,0x0d,},"\xc6\x28\x34\xd9\xd5\x5d\x1a\x44\x03\xe9\x25\xd0\xa5\xb5\x52\xda\x17\x4c\x02\xf4\xe9\x45\xde\xc3\x38\xc1\xbb\xb2\xae\xb4\xff\x40\x02\x0e\xf7\x0f\xf5\x05\x20\x5c\xf8\x81\xb6\x29\x96\x0a\xbd\x62\x76\x4e\x5a\x54\xf2\xb5\x10\x56\x67\xb1\x1c\x7d\x5b\x7a\x4c\xcc\x3f\x48\x8b\xdd\xdb\x95\x8a\x7b\xe9\x54\x62\x07\xe6\xc4\x67\x18\x97\xc0\x53\x50\x8e\x1f\xd8\x32\x22\x13\x0a\x79\x33\x97\x6d\x2b\xec\x61\x4e\xd8\xf9\xb6\xa6\xb9\xf4\xef\xb2\xa5\x8b\x9d\x00\x5b\x94\x3e\x42\xf1\x71\xb7\x09\xa7\x31\x30\x70\xcb\x2e\x06\x8d\xa3\x9c\xf9\x99\x22\xb6\x9e\x28\x5c\x82\xad\x97\xf2\xd6\xc7\x79\x22\xca\xe2\xb5\xe3\x20\xe8\x35\x77\xc0\xd0\x88\x76\x1e\xc8\x81\x52\xc2\x97\x49\x29\x78\xa9\xd7\xa3\xff\x67\xed\xe4\x4c\x2a\x70\x7c\xf3\xe2\x35\x2e\x23\x2f\x53\xc8\x78\x2b\xa4\x89\x28\xa9\x7f\x8a\x36\xb2\x0a\x41\x68\x16\xe9\x45\x79\xb9\xd7\x25\x0a\x29\xdc\x84\x70\xf6\x3a\x70\x58\xe2\xd2\xa9\x9d\x6f\x0c\xcb\x53\x0d\xf5\x96\x95\x05\xef\x5c\x78\x44\xeb\x16\x7d\x20\xf4\x12\xa5\x08\xfa\xb1\xf8\xcd\x9c\x20\xc5\xeb\x9a\x41\x7a\x54\x12\xb5\xda\x6a\x57\x13\x57\x59\xfa\xb1\x7f\x63\x14\xf6\x8d\xf3\x5b\x17\x72\x42\x14\x43\x67\x6f\x31\x25\x79\xaf\x6b\x14\x11\x53\x5a\xda\x8f\x76\x01\x2b\x69\xbb\xeb\x60\xb2\x89\x7e\xe6\x60\x7c\xb3\x69\xcd\xf5\x2f\x4f\x6d\xdf\x88\xcd\xb2\x63\x0d\x78\x89\x6f\x13\x61\xfe\xa2\x2a\xe6\x34\x21\x76\x96\xff\x11\x4f\xb4\x2d\xbe\x4f\x43\x46\xf1\xbe\x5b\x57\xad\xb3\x84\xae\x7e\x49\xb4\x1f\x74\xb3\x1b\x9a\x62\xbc\x69\xdc\xa1\x65\x89\xc6\x34\xeb\x9d\x7c\x6c\x94\xf8\xec\xe4\x4b\x60\x62\x8f\x98\xe1\x02\x4c\xf3\x2e\x3e\x3d\xd6\xdc\xe5\x5a\x12\x22\x53\x2f\x49\x0d\x63\xe6\xa2\x75\x28\x1c\x0f\x3a\x6c\x10\x18\x91\xb8\xd5\x7a\x45\xde\x11\xde\x35\xeb\xb1\x51\xc0\xdc\xd7\x5e\x6c\x05\x0b\x3c\xd8\xba\xba\xe8\x45\xc3\x9f\x66\xc3\x6c\x77\xcd\xe0\x5b\x68\x3e\x4f\xb0\x10\x3d\x93\xe7\x65\x93\x35\xc8\x7f\xc0\xe3\x23\x5b\x2e\x82\x48\x8c\xda\xbe\xb5\xc5\xc8\x75\x80\x87\x45\xee\xa9\x2d\xe8\x6b\x8e\xfc\xb6\x3e\x16\xd0\x82\x91\x9a\xee\x2e\x92\x89\x9c\xb0\xbc\xf1\xc1\x42\x15\x77\xa4\xa0\xd9\xdb\x09\xee\x1f\x9f\xeb\x92\xa5\x38\x21\x03\xcf\x7c\x32\xcf\xe4\x63\x72\x5a\xe4\x86\x6d\xaa\xfe\xda\x05\x34\xc1\x69\xf8\xf9\xbe\x40\x4f\x3b\xaa\xe1\x23\xfa\x76\x8a\xce\x46\x17\x8d\x4b\x9b\xbc\x5b\xd7\xae\xec\x79\x03\xb0\xa5\xbc\x57\x53\x89\x86\xee\x09\xe0\x7e\x32\x07\x7b\x3b\x9d\xe5\x0d\xd1\x96\x7a\x37\x2c\x38\x5a\xc8\x86\x28\x7c\x18\x45\x1a\x64\xef\xb3\x7d\x05\x6f\x9f\x41\x94\xc0\x8b\x1e\x3e\xc9\x70\x22\x26\x7b\xf0\x04\x3c\x13\xd2\x6b\x9c\xe1\xf5\x39\x05\xf6\xe4\x1b\x3d\x99\xdc\x81\xb3\x31\x90\x9b\x72\x26\x66\xef\x24\x32\xe6\xaf\x8a\x45\x31\x07\x53\x12\x30\xce\x4a\x1a\xf8\xee\xd6\x26\xda\x22\x3d\xa7\x6b\x46\x50\x7e\x33\xd7\xcd\xbd\xe0\x2d\x41\x10\x40\xc8\x9a\x11\xd9\x51\x56\xed\x4a\xc2\x60\x5b\x82\x69\x39\xc6\xcf\x87\x7b\x4e\xe7\x36\xc5\xda\x77\xcf\x46\x50\xa9\x99\x7a\x3b\x9c\xf4\x6a\x82\xba\x2b\xc0\x13\x33\xc0\x44\x78\xb5\xc9\x2e\x24\x98\xbd\x00\x2f\x01\x31\x40\xae\xdb\x30\x1b\x95\x99\x3d\x1d\x75\x08\x70\xd9\x88"}, {{0x19,0x1a,0x1d,0x90,0x32,0x1c,0x7f,0x4e,0x74,0x94,0xbb,0x98,0x29,0x09,0xa9,0xeb,0x40,0xc3,0x34,0x1d,0xd3,0x2a,0xe4,0xd9,0x67,0x50,0xb7,0xd0,0x29,0x66,0xb4,0x0f,},{0x95,0x62,0xd9,0xe2,0x13,0xf1,0x45,0xc4,0x56,0x93,0x5b,0x70,0x31,0xc6,0x80,0x66,0x9f,0x8b,0xbd,0x31,0xa4,0xc2,0xed,0x3c,0x91,0xc4,0x00,0x2a,0x56,0x29,0xe9,0x7b,},{0x74,0xcb,0x02,0x8d,0xc6,0xb7,0x5b,0x37,0xa1,0xda,0xea,0x1c,0xf8,0x84,0x65,0xdb,0x83,0xa0,0x09,0x3f,0xec,0xb2,0x2d,0x99,0xba,0x85,0x5e,0x9a,0xb5,0x9d,0x05,0xcb,0x22,0xc8,0x7d,0x0b,0x09,0xdf,0x7c,0x11,0x62,0x13,0xba,0xa8,0xf1,0x89,0xb2,0x70,0x3f,0xf9,0x53,0xcd,0x20,0x2e,0xb9,0xde,0xa3,0x97,0x6e,0xe8,0x8f,0x5f,0xa7,0x03,},"\x85\x89\x0d\xb4\xe2\xfb\xce\x09\x3d\xde\x5a\x80\xbf\x8f\xe0\x9a\x98\x4b\x83\xa4\x9b\x7c\xcb\x5d\x4b\x06\xcd\xaf\xdd\xd3\x82\xe4\xb8\xa8\xa5\x05\x30\xe8\x2c\x20\x06\x12\xc9\xd7\xd8\xa0\x89\xbc\x8a\xa8\x45\xc3\xcf\xcc\x38\xa6\x19\x5d\x21\xc2\x61\x8c\x3d\xba\x2b\x57\x09\x20\xec\xcf\xcd\x23\x6f\x17\xf0\x8d\x81\x42\x68\xf8\x82\x24\x2d\xdf\x07\x02\xda\x87\x85\xf4\x07\xaa\x8f\x86\xfe\xcf\xa9\x03\xc4\x8d\xa8\x3f\x83\x97\x77\xeb\x6b\x4a\x2b\xbf\x5d\xf7\xa4\xda\x53\x47\x5a\xf1\xff\xe4\x4b\x5f\xe0\x07\x2b\x8f\xbf\x3d\x26\xe6\xd8\x9e\xa6\x7d\x8a\xc8\x45\x94\x92\x89\x0a\xda\x65\x7e\xb3\xdc\x24\x92\xb8\x8d\xe1\x75\xb4\xbb\xa1\xa5\x08\x06\x4d\x61\x96\x74\xaa\xae\x2a\xf0\x9d\x31\xa5\xc2\x7c\x8d\x5d\x5a\x29\xb0\x37\x79\xf4\x28\x6b\x89\x66\xce\x40\x7e\x6f\xf6\x92\xfb\x94\x25\x20\xa9\x93\x8d\x69\xcc\x70\xac\xb0\x6b\x01\x4b\x6d\xfc\x19\x83\x42\x06\xcf\x1a\xc6\xc4\x48\xae\x6f\x07\x80\x25\xb5\x5f\x3d\x82\x72\x01\x26\x8a\x92\xad\xd9\xad\x17\x8e\xf7\x6a\x29\x89\xfe\xdc\x6e\x39\xf4\xeb\xb9\xf9\x6c\x9b\x83\x52\x69\x4f\xa5\x4f\xa0\x22\x01\x9c\x0e\xc0\x01\x2d\x0d\x76\x9e\x23\x67\x80\x3f\x92\x5f\x17\x5f\x9f\xb9\xcb\xec\x4a\x0c\x9c\x1e\x2c\x83\xea\x57\xe6\xa9\x2a\x17\xf5\x55\xca\xb9\x34\x27\x1e\x72\xc8\xcc\x32\x15\xfc\xb8\x7c\x20\x53\x9b\xf1\x42\x77\xb1\xbf\xbd\x6e\x58\x80\xef\x95\x3f\xc7\x5f\x23\xc0\xdd\x4f\xcc\x1e\x0b\xe3\x40\xaf\x94\x7d\xe0\x2e\x87\x7f\xd5\xc7\x7d\xd1\xdf\x7b\x41\x4b\x5c\x0b\x40\xc7\x49\x56\xa5\x45\xa1\x15\xb0\xc6\x99\x3a\xb2\x33\xb7\xe7\x2c\x82\x2b\x6b\x33\x81\xbb\x1f\xc1\x08\x75\xbf\xfe\x3e\x2e\xd1\x19\x0f\xa3\x3f\xc1\x5d\xa0\x83\x79\x4f\xcc\x2c\x5b\xf5\xa0\x79\x09\x06\x3c\xb2\x89\xa0\x8a\x2c\x8a\x33\xd3\x43\x84\x2c\x2d\x6a\x3c\xfa\x2a\x16\xca\x2e\xaf\xca\xb7\xea\x10\x0d\x1c\x71\x4b\xaa\xbb\x71\x49\xf0\x7e\x25\xde\xe3\x23\xe7\x80\x75\x7d\xfa\x80\x16\xfa\xa7\xc0\x62\x62\x22\xc3\x65\xf8\xf2\xf6\x68\x7d\x1d\xed\x23\x4f\x79\x9c\xc5\x0d\x1c\xd2\x6b\x4c\xfa\x40\x45\x91\x70\x56\xfc\x79\xc3\xb8\x8b\x2b\x19\x08\xe3\x72\xdf\x66\xda\xc8\x73\x46\x31\x64\x83\x49\xbc\x37\xfa\x34\xb2\x5f\xff\x3b\x07\x47\xb6\xbc\x16\xb9\x4e\x3e\x58\x95\xe4\xbb\xd9\x3d\x47\x8a\x6c\x1f\x75\xe4\xfa\x30\xfa\xa9\x22\x04\x9e\xd4\xc5\x0f\x12\xf4\xb3\x12\xa8\x97\x4d\x0f\xed\x8d\x44\x25\x5d\xcb\x2b\xf0\xfe\xbe\x47\xfb\x3f\xb8\xed\x99\x03\xb5\xba\x4c\xa1\x8e\x3c\xc6\x76\x2c\xfa\x1e\xaf\x04\xdf\xa9\x44\xd4\x96\xe0\xfe\x8b\xb7\xdc\x04\x54\x51\x39\x6b\xfa\xba\x54\x85\xd9\xd5\xf3\x91\xa9\x54\xc3\x71\x42\x53\xcc\xd9\xb1\x99\x64\xd4\x28\x06\x80\x72\x07\x83\x03\x6b\x3a\xbf\xaf\x28\x84\x58\x3e\xa5\xbd\xbc\xf6\x9d\x08\x89\x7a\xb2\x88\x31\x46\x35\xab\xb4\xc2\x96\x4b\x71\xad\x92\x91\xfe\xb5\xb6\x1f\x80\xe9\xb0\xcc\x07\xf9\x12\xa8\xe5\x59\x8d\x55\x48\xde\xfe\x0e\xea\x1c\x44\x85\x73\x71\x0a\xac\xdd\xb1\x52\xf9\x3c\x7c\x6f\xd3\xf7\xe4\xed\x9f\x74\x42\xa6\xb9\x00\xf2\x3c\x3c\x54\x4c\xe5\xc9\xba\x5f\x5e\x92\xaa\xfd\x11\xc9\xff\x5f\x79\xc0\x8b\x9d\x04\x5f\xef\x07\x97\x06\x25\xf6\x2e\x2f\x43\x34\xa4\xd6\x64\xca\xf7"}, {{0x62,0x85,0x63,0xaa,0x3e,0xe2,0xfc,0x61,0x1b,0xcf,0xf7,0x8b,0xfb,0x2a,0x75,0xe9,0xfd,0x87,0x80,0xe8,0x7a,0x93,0x94,0x99,0xa6,0x1b,0xea,0xa6,0xa4,0xb7,0x19,0x13,},{0xda,0x20,0x61,0x6e,0xe4,0xa4,0x1c,0x2e,0xbf,0xdc,0x50,0xab,0x54,0x95,0x3b,0x6d,0x38,0x7b,0x06,0xc6,0xde,0xf7,0x57,0x96,0xb0,0x88,0x09,0x56,0x5c,0x6c,0xf8,0x05,},{0xc9,0xa6,0xaa,0xa9,0xb4,0xe1,0xcc,0xe1,0xb5,0x84,0x45,0x72,0x5f,0x61,0xf5,0x52,0xc8,0xfb,0x45,0x83,0x1f,0x03,0x48,0x27,0x98,0xf0,0x1f,0x66,0x3e,0x99,0x83,0xdb,0x1a,0x82,0xfd,0x33,0xab,0xa3,0xec,0xcb,0x96,0x22,0x64,0x26,0xd5,0x0a,0xe1,0x7c,0xc5,0x12,0x74,0xce,0x18,0xa3,0x88,0x60,0xf4,0x0b,0x2f,0x82,0x36,0x1b,0x5c,0x03,},"\x05\x6f\xb9\x54\xfb\xe6\xa6\x01\x4f\xad\xac\x1e\x1a\x9f\x56\xcc\x08\xaf\x37\x34\x8e\xba\xf6\x92\x06\x83\x38\x4e\xfa\x47\x62\x6c\xcd\xdf\xea\xd2\xd5\xe9\xe8\xcf\xff\x45\xf7\xac\x63\xde\x63\xf6\x9d\x12\x84\x8c\xe3\xc0\xef\x1f\x53\x0a\xde\x43\x0f\x0a\xfd\x5d\x8e\xcf\xd9\xff\xd6\x0a\x79\x74\x6a\x2c\x5b\xee\xdd\x3e\x67\x24\x99\x82\xf8\xb6\x09\x2e\xe2\xd3\x40\x47\xaf\x88\xa8\x1f\xea\xb5\xd5\x2b\x47\xd5\xb3\xf7\x6c\x20\x41\x72\x5f\x6f\x81\x32\x93\x05\x0a\xaa\x83\x4b\x01\xa3\xa5\x8f\x69\xaa\x4a\x8c\xa6\x1f\x5b\x74\x6f\x60\x0f\x3d\x45\x2c\x62\x82\xff\xdc\xa4\x42\x9b\x93\x38\x96\x7b\xa3\xa7\x26\x66\x90\xae\xc7\x5e\xbf\xbf\x7b\xe9\x8d\x99\x9b\x03\xed\xdc\x72\x92\x58\x1b\x0d\x69\xe3\x0a\x03\x51\xa1\x51\xdb\x70\x41\x2b\x0b\xfd\x43\xd3\xba\xa9\xd4\x56\xcb\x3e\x0b\x4f\xc1\x9c\xb0\x9e\x6c\xad\xcb\x6d\x3f\x3b\xe5\x13\x7c\xc7\xa8\xd3\x21\x9e\xc2\x03\x6e\xc6\x70\xed\x7e\xc5\x23\xb1\xb1\xc6\x87\xb5\x46\x53\x07\x88\x2f\xe3\x8d\x74\x72\xd0\xba\x87\xa4\x71\x86\x83\x09\xd2\xf7\x73\xff\x24\xc8\x7d\x39\xc1\x6b\x70\x8a\x4e\xd9\xaf\x43\xf7\x4c\x8d\x85\xcf\xe8\xab\x54\x06\x90\x7e\x94\x1a\x14\x97\x0e\x20\x9c\x29\xff\x7e\xd8\xa2\xf9\x35\xae\x41\x70\x9f\x27\x0d\x0d\x08\x55\x5e\xf7\xaf\x2e\xdf\xe4\x0d\xf3\x99\x22\x3c\x78\x5a\x43\xe7\xf3\x69\x15\x89\xe2\xea\x4c\x03\x6f\x11\xd0\x3d\x7d\x1e\xea\x14\xf6\x20\x03\x53\x25\xcf\x2b\x33\xba\xf3\x86\x39\x3e\x8a\x97\x2a\x7a\xf6\xcd\x9b\x85\x43\xb3\x2e\x25\x33\xd1\xfc\xc3\x17\x7f\xd9\x6d\x1e\x13\xbf\x8b\x68\xde\xb2\x22\xf9\x44\x97\x26\x5d\x3c\xcb\x34\x57\x51\xbd\x5b\x66\x90\x78\x08\x19\x98\xd6\x08\xca\x5f\xdc\x13\x48\x39\xd4\xed\x2b\xeb\xb2\x95\x2f\xea\x5a\x39\xc6\xf0\x33\xc1\x55\x8f\x69\x8c\xe4\x94\x6e\x4f\x6c\x08\xaf\x87\x4f\x27\x35\x7f\x87\x0e\xbe\xeb\x21\x99\x97\x6f\xfa\xef\xac\x95\x1f\x8e\x17\xfe\x7d\x08\x21\xe1\xb9\x2a\x90\xaa\x4e\x9d\xef\xd3\xfa\xfd\xa0\x52\xa4\x44\x47\x6d\xb1\xce\x38\xa9\xe1\x76\xe8\x41\x18\x9a\xbd\x8f\xec\xde\x0f\xbc\x5c\xb5\x5f\x51\x1f\x5f\xde\x07\xea\x97\xde\xb3\x9b\x7a\xa8\xdc\x84\xa3\x94\x6a\x6c\xf9\x26\xd3\x9b\x95\xc1\x1a\xf9\xd6\x4d\x98\xb8\x07\xf4\x70\x4d\x0a\x2b\xda\x97\xda\xd9\x88\x1a\xda\x1b\xf6\x63\x63\x66\xe6\x0a\x52\x2b\x48\x21\x04\x78\x61\xc7\xaa\xe2\x14\x6a\x02\xee\xf6\xb2\x5d\x51\x37\x1a\x0f\x17\xd2\x4b\xc1\x87\xdc\xdd\x05\xd5\x41\xc2\xf7\x22\x01\x42\x79\x15\xa3\x92\x8c\xd3\x78\x68\x91\x03\xac\x50\xb3\x3f\x87\xa4\x7e\x8c\xdf\xa6\x87\xa5\xf0\xaf\x8a\x56\x73\x1d\xab\xe6\x62\xf4\xf2\x83\x6d\xe0\xba\x8f\xaf\xd8\x6a\x38\x54\xbc\xa0\x12\xd7\x08\x8a\x00\xb9\x85\x4c\x2d\x3c\x70\x8d\xdf\x58\xfa\xa3\x55\xa8\x9a\xfc\x2c\x80\xf3\xf5\x33\x6d\xa0\x1d\x72\xa2\x77\x1a\x05\x58\x13\xfb\x35\x33\x0f\x7d\x2e\x01\xb1\xd1\x2d\xaa\x95\xed\x55\xd3\xbd\xc5\xdf\x77\x39\xcb\xc3\xca\x09\x7a\x41\xb6\xb2\xbd\x7f\x0f\xf9\xdd\x1d\x86\x58\x98\x3b\xa3\xff\x79\x20\xc1\x5f\x29\x2a\x1e\xf9\xfc\xad\xa1\xc6\x07\xec\xb4\x5d\x3a\x73\xc9\xff\xd4\x2f\x3e\x16\x02\x2f\xdf\xe1\x27\x44\x92\x63\x95\xf7\x4f\xb3\x11\x17\x93\xfa\x92\x81\x82\x1a\x66\xa0\x1d"}, {{0x91,0x41,0xf7,0x9e,0xd3,0x0b,0xf6,0x00,0x61,0x1a,0x13,0xf3,0x67,0xb4,0x03,0x96,0xf2,0xec,0x83,0x9c,0x56,0x12,0xbb,0xf1,0xe6,0xe4,0x97,0xf8,0x39,0x54,0xbc,0x88,},{0xf1,0x4e,0xda,0x96,0x26,0x40,0xbe,0xcb,0x66,0xc4,0xd1,0xf1,0xa0,0x21,0x11,0x02,0x51,0x91,0x7b,0x8b,0x1d,0x34,0x82,0x82,0x98,0xd3,0x21,0x45,0xba,0xf6,0xe5,0xd9,},{0xcf,0x20,0x2d,0x7f,0x2f,0x9e,0xd1,0x17,0xf4,0x29,0x50,0x2b,0x2a,0x5a,0xff,0x54,0xa7,0xf7,0x51,0xd2,0x17,0x15,0x15,0xa4,0xd2,0x03,0x75,0x34,0x46,0xdf,0x0e,0xba,0xc8,0x69,0x84,0xc8,0x8b,0xd4,0x2b,0xd1,0xfb,0x8d,0xcb,0x40,0x87,0x76,0x72,0x2a,0x38,0xf3,0x2c,0xce,0xb2,0x5f,0x32,0xa2,0x5d,0x73,0x93,0xf1,0x38,0xee,0xdf,0x0a,},"\x8f\xec\xaa\x7a\xe9\xa3\xd4\xa4\x85\x1a\x66\x36\x2b\x36\x6e\x16\x7b\x9f\x43\x00\xfd\xab\x20\x56\x54\x75\x19\x87\xf0\x85\xde\x61\xbe\xc9\x34\x4a\xa8\x6f\x5e\x5c\x64\x77\x51\x4c\x28\x04\xce\xd7\xac\x0c\xd0\x62\x85\x29\xa3\xa1\x59\x92\x36\xed\x67\xbe\xbe\x1f\x2e\x95\xaa\x15\x1f\xe0\xf3\xb3\x01\x1a\x1d\x4b\xe9\x90\x1c\xaf\xab\x2f\x18\x91\x90\x4d\x4b\xff\x01\x28\xc1\xd3\x5e\xce\xcb\x32\x2b\x3c\xc0\x1d\xac\xc5\xae\x3d\xca\x69\x14\xa7\xd3\x4d\xa8\xc9\x65\x7b\x95\x0f\x89\xd1\xd6\xae\xc3\x29\x9b\xb6\x90\x11\x10\x71\xfa\x87\x28\x27\x74\x94\x3d\x96\xa4\xab\x7c\x3d\x6d\xe7\xd1\xbf\x11\x93\x63\x06\x8c\xc8\x2d\x45\xe4\xb7\x64\x54\xc6\x08\xbc\x35\x66\xb7\xf9\xb3\x85\xcc\x7e\xb3\x8e\xe4\x29\xaf\xc2\xda\x99\x66\x9f\xc5\xc1\xbe\x82\x16\x1a\x1b\x0c\x33\xf7\xba\x9a\xd4\x41\x9d\x20\x62\x97\x19\x01\xdb\x00\x3b\xfa\x23\xc4\x47\x14\x99\x5c\xb0\x6b\xfa\x96\x6e\x50\x23\xaa\x93\x46\xfd\x37\x5a\xe2\xa1\xe8\x40\x84\x31\x4d\xf3\xf0\x8c\xe2\x08\x00\xc2\xc2\xad\xfb\xb8\x13\x66\xf6\xb1\x04\x24\x3d\x62\xd5\x04\x1e\x72\x73\x43\x3f\x17\x58\x1b\xf9\x3f\x4c\x61\x46\xfa\x96\x6f\x63\x8a\xb0\x7e\xa1\x66\x94\xa7\xce\x30\x5c\xc6\x09\xa6\xe1\x06\x23\xff\x7f\x6c\x79\x16\xb6\xe4\xdb\xde\xbb\x7b\x52\xec\xa7\xf0\xd5\x18\x7f\xf6\x64\xd7\xc3\x70\xed\x22\x88\x6a\xa2\x67\x13\x29\xd9\x28\xe0\xa3\xbe\xa3\xb4\x71\x1a\x12\x8b\x9a\xab\x90\x26\x6f\x86\x51\xd2\x20\xb9\xcc\x1c\xbf\x5b\x1c\xe7\x26\x59\x31\x80\x36\x90\xd3\x29\x1c\x01\xea\xd4\xdb\xc3\x32\x9a\x97\xe8\x5c\x4f\xe1\xd3\x56\x60\x8c\xc9\xe6\x0b\x05\xbc\x14\x83\x8a\x86\x08\x27\x9a\x00\x61\xde\x28\xff\x7b\x8e\x81\xf5\x9c\x8a\x8c\x55\x23\x92\x4c\x4c\x48\x5e\x6e\xa8\x0a\xc8\x17\x50\xbb\x0e\x41\x9e\xfc\x78\x58\xcd\x4a\xf5\x0c\x8b\x8c\x80\x65\x0f\xac\xab\x4d\x82\x58\xf9\xca\xfa\x03\x10\xa0\x07\xcc\xcb\xc4\x18\x5c\x82\xfd\x14\x6d\xf1\xd8\x11\x87\x9d\xa3\x65\x0d\x57\x16\xf1\x00\x4b\x71\xd2\xc7\xf2\xbd\x65\x03\xc3\x54\x58\x9f\x86\x02\xc9\x50\xa1\xf5\x13\x9f\x81\x14\x60\x75\x28\x80\xa3\x41\x11\x66\x30\xe4\xff\x84\x94\x8e\x74\xa9\xeb\x35\x0d\x64\xd8\x29\x30\x02\x20\x02\x33\xf2\x09\xb1\x7d\x78\x89\x7c\x7c\xe6\xce\x29\xe2\x9f\x82\xd4\xad\x6c\x61\xeb\x79\xf5\x73\x9c\xb6\x68\xb2\x1a\x74\x55\x55\xc9\x6e\x19\x52\x68\x45\xe8\x2c\x6e\xd2\xb1\xc6\xbd\xd6\x36\x4b\x8f\xc7\x9b\xa9\xa3\x2d\xbd\x3f\x8b\x97\x5e\xb9\x23\x62\x39\x58\xae\x0d\xaa\x4f\xfa\x13\x92\x17\xc0\x0e\x02\x1f\x93\x7e\x9b\x79\x1c\x37\x99\x1a\x35\xe5\x23\x1a\x19\x14\xc0\x45\xa7\x87\x43\x2f\x97\xb8\xe2\x06\x3d\xb1\x05\xe1\x4d\xa9\x79\xc1\xc4\xcb\xa7\x85\x21\x0e\xb0\x20\x11\x33\x4b\x23\x0c\xfb\x68\x31\x99\x8c\xcc\xe2\x53\x86\xf4\xf3\xba\x0d\xce\x20\x06\xe9\xc3\x94\x0b\x4d\x5a\x56\xaa\xcc\xdc\xab\x02\x71\x86\x89\x81\x63\x60\xf1\x88\x52\xfd\x19\x98\xa9\x9f\xce\x9a\x04\xda\x3f\x5e\x23\xaf\x94\xc6\xe8\xa5\xba\xdf\xd3\x93\x04\xb9\xe2\xa3\x76\xa1\xf9\xba\xc0\x9a\x85\xbd\x04\x24\x76\xe2\x6b\x58\xec\x73\xf1\x23\x6d\x41\xab\x4b\x4e\x7a\x54\xde\xf9\xd6\x6a\x38\xf8\xe5\x46\xde\x7b\x38\x8e\x1e\x7d\x66\x81\xe5\xe2\xa0\x96\xf1\x60"}, {{0x69,0x5c,0x96,0x0b,0xbb,0x0d,0xd5,0x7f,0xfa,0x36,0x15,0x1c,0x85,0xde,0x73,0x51,0x54,0xfe,0x5a,0xd5,0xf5,0xfc,0x77,0xd0,0x05,0xa0,0xa3,0x20,0x11,0xde,0xb3,0x0c,},{0x34,0x12,0x5e,0x4e,0x21,0xf7,0x89,0xed,0x0e,0x11,0x80,0xc1,0xf6,0x36,0x9c,0x72,0x1d,0xca,0xe9,0x85,0x9b,0x6f,0x7b,0x04,0xf9,0x57,0xe5,0x10,0x01,0xee,0xde,0x8a,},{0x4a,0xf4,0x1c,0x55,0x4d,0x99,0x08,0x12,0x68,0x6c,0x32,0x9a,0x87,0x5c,0x41,0xee,0x24,0xb4,0xa7,0xfd,0x7b,0x3d,0x4f,0x8c,0x8d,0x52,0x75,0xf2,0xe7,0xcb,0x24,0x2b,0x25,0x8b,0x58,0x58,0xa4,0x66,0xde,0x59,0x5c,0xe2,0xa2,0x17,0x7e,0x35,0x1c,0x7f,0x08,0xc7,0xfc,0x4e,0x0b,0xf9,0x7e,0xc5,0xfb,0x2d,0xcb,0x82,0x52,0xd2,0xc9,0x0a,},"\x37\x06\x69\x6c\x7a\x90\x66\x90\xd0\xd3\xb7\x1e\x7e\x21\x1c\x7b\x06\x71\x68\xf3\xa8\xf1\xed\x98\x4a\x0a\x5e\x60\x78\x59\x76\x62\xe4\xe7\x88\x9d\x52\xdb\x0f\x78\xe0\xd5\xef\x0e\x5f\x7a\x0a\x0f\x42\x63\xb6\x84\x8b\x07\x25\xca\xa4\xb1\xce\xa6\x98\x74\x09\x51\x1c\x8e\x5e\x98\x2d\x3f\x5b\x82\xbb\x56\xa4\xa7\x94\x71\x21\x93\x7f\x8e\x10\x5c\x5a\x14\xb5\x3e\x6c\x37\xcc\x71\x6b\x1e\xba\x92\x24\x21\x82\x8b\x04\x6f\x68\x56\xc4\x4f\xab\xf1\x3a\x75\x16\xc6\x2a\x5f\xf9\x85\x68\x45\x0c\xee\x78\xb1\x40\x33\x50\x47\xbf\x1c\xa7\x7e\x15\x49\xa8\x94\xfe\xeb\x07\x80\x45\xe4\x64\x18\x32\x25\x3b\xf6\x95\x48\x54\x52\xec\x36\x90\x65\xa6\x00\x29\xa6\xc9\x07\x7a\x37\x9d\xb2\x04\x85\xea\x2e\xdb\x6c\x96\x95\x47\xbb\x26\x53\x28\x9b\xc6\xe8\x1f\xfc\xb8\x4b\xdb\xf7\x73\xdd\xea\x4b\x37\x50\xe9\xa7\x23\x95\xd1\x17\xf6\x44\xb0\xe2\x20\x61\xd4\xf3\xbb\x7c\x5b\x61\x2e\x4b\x70\x39\x5e\x07\x79\x51\x6b\x46\x65\x91\x16\x90\x2f\xd0\xfb\xcd\x23\x40\xee\xa4\x5e\x9c\x23\xdb\x25\x64\xa5\xe1\x1d\xc7\x9e\x8f\x4b\x33\x2a\x44\x3e\xc3\x5a\xad\x96\x04\xfe\x79\x12\x52\x08\x82\x95\xe8\x4f\x65\xa3\x07\x31\x25\x50\xd9\xeb\xf6\x1f\x36\x7e\x4a\x0f\x2b\x56\x23\xe5\x3e\xf6\xbc\x13\x28\x25\xfc\x24\xeb\xee\x4e\xbf\x33\x8c\xbf\xb5\xdf\x69\xb3\x2d\x03\x0d\x44\x7c\x44\xf3\x13\xba\x96\xfe\x07\xbb\xfe\x5b\x01\x66\xea\xec\xbc\x61\x9b\xb6\xb2\xe5\x92\x40\x10\xba\x3e\xc1\x50\xff\x6a\x69\xfe\xc4\xde\xd9\xc4\x42\xf9\x8c\x15\xe7\x7f\x31\x9b\x48\x43\xb3\xb7\x48\xb5\xd2\x60\x89\xa7\x6c\x2b\x83\x4f\xf9\x3c\x41\x3e\x04\xca\x95\x50\xcd\x21\x1c\xe2\xd6\xa5\x83\xd7\x82\x57\x50\x66\xdb\x6d\xd3\x3e\x8d\x5e\x83\x74\x35\x5d\x06\x8a\x5e\xb9\x6f\x8b\x3d\xa8\xdd\xdf\xb5\xba\xf5\xc5\x96\xda\xaf\x55\x6a\x8f\x2c\xb5\x78\x1e\x50\x42\x32\x7f\x92\xae\x06\x21\xea\xe0\x88\xb5\xf0\x13\x59\x2e\x77\x87\x3a\x81\xd7\xe0\x68\xd7\xb8\x33\x7d\xb9\xf1\x09\xa8\x35\xb4\x75\xe5\xca\xf7\xce\xa5\xaf\x3b\x4a\xd6\xd9\x0b\xaa\xf1\xc7\x36\x55\xec\x67\x67\x47\xfc\xdd\x41\x77\x5b\x4f\xbe\x39\x24\xc3\xf4\x1d\x8a\x73\x75\x28\xd1\x2d\x61\x56\x65\x3a\x22\x35\x8c\x68\x21\x42\x6b\x2c\x0a\x33\xe1\x63\x4c\x62\xc7\xc8\x38\x56\x49\xbc\x23\x3e\x7d\xaf\x94\x39\xf0\x9d\xb9\xbd\x11\xea\x01\xe2\x8b\x77\xec\xbb\xc4\x59\x0e\x29\xfd\xcf\x0f\xdd\xe1\x52\xf6\x47\x81\x32\xfe\x4c\x3a\x5b\x45\xa7\x30\x5a\xf6\xe3\x81\xca\xdd\x72\x49\x6e\x66\xbb\xb8\x66\xce\xa4\x7f\x7e\x7d\x7e\x63\x34\x16\x00\xaf\x3f\x49\xce\x9c\x9e\x4e\x37\x39\x4d\xf5\xdf\x71\xdc\x10\xcd\x39\x1f\xdc\xb8\xa1\x93\xdc\x98\xfc\x19\x05\x9f\xa3\xac\x23\x0e\xc5\x47\x6b\xf9\x4d\x85\x55\x6a\xce\x6e\x1b\xa3\x24\x21\xbf\x59\xdc\xbe\x05\xc5\xe1\x5d\x34\xc6\x64\x4e\x27\xd0\xa0\x2b\xe9\x7f\xa8\x38\x7e\xe0\x37\x06\xf2\x2a\x8f\x4b\x3b\x40\x40\xad\x7d\x3f\x8a\x86\x97\x1a\x20\xa0\x9e\xc8\x1b\x76\x96\xd8\x34\xc5\x26\xb8\xe5\x1c\xb9\x7d\x27\x64\x3f\x9a\xbf\x5e\x29\xff\xd0\x33\x3f\x95\xde\x15\xd1\x10\xc2\x06\x4c\xa4\x94\x67\xc1\x4e\xf2\x27\xf4\xba\xbf\x1a\x55\xe7\xb1\xcd\xa0\x42\x9c\xff\x25\x6b\xe3\x1c\xf1\x16\x71\x9a\x81\xb9\xc5\xfb\x75\xfd\xf6\x4e"}, {{0x25,0xcb,0x17,0xfc,0x33,0xd2,0xbf,0x83,0x84,0xae,0x4d,0xf2,0x0c,0x1f,0xad,0x5c,0x35,0xfd,0x76,0x5a,0xff,0xde,0x04,0xb5,0x25,0x6d,0x4d,0xe0,0x1c,0xa8,0xde,0x14,},{0xb8,0x6c,0xa3,0x12,0xfe,0x59,0x85,0x20,0xc6,0x4b,0xe5,0xc7,0x2f,0x5b,0x23,0x81,0x65,0x07,0xf6,0x9e,0x07,0x0f,0x82,0x8e,0x02,0xd2,0xaf,0xcf,0xe1,0x1b,0xfa,0x01,},{0x8c,0xcb,0x0d,0xbc,0xf7,0xcc,0x03,0xe8,0x3e,0x21,0xc5,0x74,0x74,0xaf,0xd3,0xad,0x88,0x98,0x09,0x7b,0x97,0x2e,0xde,0x17,0x5a,0xca,0xae,0x48,0xe3,0xec,0x17,0xb2,0xdb,0x06,0xfc,0x82,0x77,0x6b,0x07,0x51,0xc0,0xf9,0x56,0xfd,0x71,0x96,0xf3,0xd1,0xc9,0x63,0x21,0xa6,0xcf,0x3d,0x89,0x24,0x15,0xd8,0xf8,0xee,0xb4,0xa1,0x41,0x08,},"\x4b\x4a\x71\xcb\xf8\xcb\xaf\x57\xa7\x7d\x4e\xa1\x88\xa6\xf9\x64\x84\x0f\x0d\x71\x4a\x5f\x38\xa0\x95\xa1\x3b\x4e\x57\x12\x97\xa8\x8b\x79\x24\x17\xd1\x61\x84\x42\x7f\x90\xe0\x43\xdd\x8a\x55\xb7\xf1\xc1\x3e\x00\xdf\xa6\x05\x16\x44\x5c\xbe\x77\x06\x8c\x79\xc8\xc3\x5e\xbe\xac\x33\x0c\x33\xf1\x12\x1d\x05\x73\x1a\x8f\x51\x32\xd6\x48\x00\x73\x27\x46\x41\x19\x5a\x75\x20\x21\x16\xff\xf1\xc3\x18\x81\x71\x78\xfd\xd7\x68\xbb\xdf\x10\x5f\xa0\x69\xc7\xa3\xd1\x43\xfd\xf5\xd1\x7b\xfa\xd7\xc0\x62\x4e\x52\x92\x06\x8f\xd7\xbb\x6d\x30\x3b\x4a\x27\xcb\x20\xa4\xe6\x18\x75\x07\x67\x87\xd1\x9f\xa6\xf7\x29\xc9\x4d\xc0\xba\x9b\x8c\x0b\xfd\x98\x66\xda\x5c\xb2\xe7\xa2\xcd\x2e\xdb\xdc\x95\xac\x34\x9e\x5e\x5c\x21\x72\xe5\xa4\xcf\x7b\xd9\x0c\xab\xe2\xc6\xe2\x24\x59\x80\xbd\x72\xd0\xf6\xf5\x47\x98\x81\xe8\xc4\xc3\x54\xf6\x8a\xa7\x28\x41\xd0\xc7\x3b\x98\x6b\xa5\x10\x21\x20\x31\x61\x02\x6e\xe3\xd7\x29\xdd\xf1\xa0\x49\xff\xe9\xeb\x25\x43\x98\x02\xf0\x30\x11\xd1\x44\xe5\x0b\x02\xbd\x4a\xca\x5e\x55\x06\xd3\x2f\xcf\x69\xe3\x2f\x54\x25\x44\x79\x8f\x4e\x87\xf7\x2b\xdf\x24\x33\xb1\xff\x32\x59\x29\x2e\x1d\x90\x81\x2c\xff\xd7\x9f\x6a\x54\x32\x70\xba\xf2\x4a\x3c\x39\xdd\x35\x98\xe1\xc6\x61\x61\x29\x22\x52\x2f\x38\x7d\x51\x59\x76\x92\xf3\x14\xc4\xd5\xac\x4b\xf1\x88\x3a\x61\x46\x36\x33\x6a\x55\x44\xd5\x9f\xf4\x1d\x1e\x0d\xbc\xf8\xe6\x62\x7e\x7c\x80\x85\x64\x63\x22\xdf\xc2\x0c\x33\x2c\xbd\xf3\x53\x70\xd4\x7d\xca\xbb\x80\x2e\x17\xca\x84\x78\x0e\xec\x66\x1c\x90\x4d\x5b\xfb\xc2\x40\xad\x6a\x14\xa7\x53\x3f\x71\xa2\x75\x00\xc6\x1d\xd3\xe4\x73\x98\x38\x87\xa8\x68\x35\x18\x7a\xbb\x0d\xf0\x8f\xa6\x2c\xda\x69\xdc\xe8\x6e\x21\xfa\x5a\xe9\x54\xc2\x2e\xdd\xb6\x0e\xe3\x13\x15\x04\xa6\x9b\x50\x48\x6a\x17\x76\x70\x91\x88\x37\x60\x63\x8a\x29\xc3\x80\x30\xe1\xe0\x5f\xdb\x28\xe1\x58\x63\x30\x10\x38\x5a\x62\x06\x13\xcc\x10\xd5\xa5\xf3\x50\x95\x5f\x4a\x34\x7c\x65\xed\xdd\xb7\xe2\x51\x59\xda\x8d\xcc\x26\x55\x92\x8a\xd6\xf6\xd8\xc4\xc1\xab\xb8\x17\xd7\xfe\xf3\xba\xe5\xde\x04\x02\xed\xde\xe7\xb5\x15\x21\xce\x28\x0a\x66\xb7\x96\x14\x0f\x56\xaf\x9b\xc2\x0e\x46\x58\x75\xce\x26\x28\xa8\xa1\x04\x77\xce\x9b\x2e\xac\xc7\xd8\x6f\x88\x27\x24\x57\xbf\xd4\x43\xe7\x12\x52\x69\x96\x25\x43\x80\xf0\x13\x52\x27\xe9\xfc\x15\x1c\x86\x95\xe9\xcc\x64\xd2\x72\xb2\x56\xab\x95\xc9\xa9\xf5\x68\xe9\x37\x16\xe0\xe5\x3d\x29\x88\x2e\x3c\xe7\x42\x61\x25\x7a\x02\xcd\x49\x7c\x37\xd7\x64\xd9\x0f\x7f\xd4\x78\xa1\x7a\x89\x0a\x8b\x2e\xa6\x1a\xb8\x1f\x68\x69\xb1\x20\xa2\xf6\x48\x4a\x88\xc1\x51\x95\x33\x91\xec\xa4\x45\x01\x53\x77\xb3\xa5\xdf\xfe\x4c\xfb\xac\xfb\x5b\xab\x2c\x47\xf6\x54\xf7\x2a\x9d\x19\xcb\xc4\xd2\x95\x37\x19\x84\x05\xe3\xa0\x4b\x4b\xfe\x11\xbc\xdb\x5c\x1f\x30\xd9\xac\x02\xf5\x48\x49\xc5\x7a\xa9\x6f\x7b\x56\x63\x61\x16\xf2\xbb\x6f\x25\x83\xd9\xaf\x94\xc8\x6a\xff\x5c\x13\x7f\x63\xce\x54\xe8\xf0\xc2\x1b\x6c\x25\xc1\xf0\x47\x2a\x22\x9c\x90\x81\x7e\x61\x62\xea\xc7\x1c\xcd\xa3\x09\xa1\x64\x3b\xd6\x31\x2a\x52\x63\xa2\xef\xe6\x46\xdf\xfe\x79\xeb\xd8\x15\x7a\x28"}, {{0x49,0xe2,0x4d,0x16,0x99,0x83,0x37,0x26,0xb1,0x8c,0x78,0xea,0x65,0x68,0x40,0x1a,0x97,0x1e,0x1c,0xa3,0x9d,0xd0,0x6d,0x75,0x63,0xac,0x8b,0x42,0x50,0xd4,0xa9,0xf5,},{0x71,0xcf,0x05,0xe9,0x0d,0x30,0x1a,0x6d,0x9f,0xad,0x7f,0x0b,0x38,0xec,0x8b,0xb0,0x44,0xfc,0xfd,0x97,0xc8,0x49,0xb0,0x4c,0x00,0x36,0x25,0xde,0x29,0xbe,0x86,0xbb,},{0xa0,0xb6,0xa2,0xaf,0x15,0xb6,0xbe,0x9e,0x95,0x1e,0xf3,0xf3,0x2c,0xbd,0x1c,0x67,0x02,0xe8,0xe0,0x17,0xfb,0xd3,0x15,0xa3,0xf2,0x59,0x9c,0x3f,0x1a,0x11,0x86,0x5d,0x46,0xe7,0x84,0x59,0xa0,0xd7,0xf7,0xbe,0x04,0x6a,0xae,0x29,0x3c,0xad,0x09,0x13,0x7e,0xc8,0x47,0xe2,0x69,0x28,0x10,0x6d,0x9a,0xa3,0x5e,0x09,0x82,0xb9,0x92,0x02,},"\x6d\x26\x05\xf6\x1e\x1a\x04\xb6\xae\x18\xc2\xc2\x5a\xe1\x00\xdd\x42\xa6\x1e\x66\x4e\x2d\xb5\xc3\x4d\x7a\xd1\xf8\x4a\xc5\x07\x55\x2b\x74\x1c\x20\x86\xc1\x7c\x85\x2b\xab\xe0\x7a\x91\xe1\x29\xa5\x06\xee\x59\xed\xb9\xce\x73\xbe\x1b\x1d\x06\xd1\x20\xec\x36\xa1\xe9\x4c\x62\x81\x05\x4e\x78\xce\xb1\xbd\xef\xfb\xcb\xf4\xf0\x10\x51\xed\x38\x1b\xfc\x8a\xd1\x76\x9f\x41\xe2\x40\xbf\x60\x59\xd9\x70\x4c\xac\xec\x66\x66\x11\xf4\x1e\x4d\xd4\x38\xb7\xf5\x02\x42\xea\x86\x75\x6b\xb1\xf8\x1e\x59\x42\xc0\x92\x12\x9f\xbc\x6d\xe4\x95\x5d\x28\xdf\xf3\x52\x37\xdb\x30\xe4\xa5\x03\x6a\x99\x14\xc9\xf8\x4d\xbd\x8c\xcf\x82\xba\x2b\x1b\x3b\x55\x54\xa2\xb7\xa7\x4c\xb0\xb2\xa1\xe1\x96\x33\x45\x28\x6e\x25\x8d\xc8\xe7\xd5\x67\x18\x03\x5f\x95\xf3\x13\x81\x1c\xfb\xd8\x52\xa0\xf8\xf4\x9a\x29\xef\x93\x3e\x7c\xda\x7e\xd9\xc7\xe8\xb1\x62\xcd\xba\x1a\x82\x26\x2c\xd4\xdf\x7c\xf8\xea\x4b\x58\x6d\xb4\x3d\xcc\x1e\x37\x64\x59\x8e\x9c\xa4\x66\x73\x82\x2b\xaa\x2a\xd8\x7f\xb1\x4b\x6f\xdb\x9e\x20\x32\xd0\xca\x51\xc2\x6c\x5e\xf3\xd9\xf7\x97\x85\xfa\xc2\x49\x1c\xdb\xf7\xc3\x99\xf3\xcd\x17\x74\xc1\xa6\xb1\xe4\xa6\x7f\x54\x36\xd8\x0d\xb0\x25\xf8\xfb\x64\x09\xe2\x75\xbd\x0e\xd5\x08\xb5\xe0\x39\xed\x2e\x4e\xec\x8b\x0f\x4d\x5b\xe9\x9d\xca\xfa\x6a\x14\x01\x25\x27\x32\xa6\x5b\x37\xc9\x43\xc0\x7e\xf3\xac\xbc\xfb\xb3\xdc\x06\xda\xd0\xa8\x8f\x2f\x5e\xb5\x51\xa3\x99\x7a\xd6\xc6\xee\xd9\x5e\xdd\x9a\x0a\xf4\xa2\x88\xd5\xe4\x32\x86\xb2\xac\x07\x29\x77\xc4\x36\xb7\xc5\xff\x7a\xb6\x1c\x94\x84\xf2\x57\xf5\x8e\x01\x0c\x9b\x6a\xd4\x15\x81\xd7\x42\xcd\x19\x75\x2c\xde\x54\xd2\xb4\x20\xd6\x43\x65\x4e\x90\x96\xa8\x1e\xb9\xdc\xf8\x04\xc7\xc2\xed\x0e\x38\xd1\x3a\x5c\xe3\x99\x78\xcd\xd0\x2b\x25\x35\x09\x45\xde\x78\xfe\xec\xc0\xc2\xc2\x2f\xfd\x70\x5c\x3b\xa8\x11\x32\x65\xc7\xb9\xa7\xc8\xdd\xb5\x91\x78\xbd\x21\xd7\xf6\xc3\x1c\x6b\xe2\xc3\x67\x49\xee\x0f\x9a\xb8\xbc\x1d\xcf\x5d\xa5\xcb\x2d\x2d\x59\x62\x35\x8f\x71\xf9\x6a\xb3\x79\x2a\x25\x2a\x51\x9e\x41\x53\x51\xf4\x3e\x7e\x12\x03\x5b\x03\x28\xf2\x82\x08\xcf\x4b\xe5\x29\xd2\x99\xaa\x5c\x12\x8c\x9d\x5e\xd5\x75\xbf\x90\xc5\x35\x05\x69\xea\xa6\xf2\xd5\x52\x1d\xe1\x18\x03\x09\xf6\x86\xc9\x7e\x9a\xd6\xfa\x1e\xc1\xdd\x86\x27\xae\x89\x51\x58\x1c\xf6\x04\xb8\xb9\x17\xc5\xba\x43\x4a\x63\x7b\xe1\xbc\x8b\x79\xf4\xac\xaf\x77\x95\xf4\xe5\x1a\xab\xdb\x88\x50\x77\xbc\x4f\x3c\x68\xfc\x33\x18\xde\x58\x23\xd7\xe0\x80\x4e\xe9\x95\xb7\x03\x87\x95\x0f\x79\x93\x53\x68\x23\x00\xd4\xe7\x97\xf3\xca\xd6\x11\xb4\xc5\x62\xc8\x64\x0f\xf2\xb3\xfe\x29\x29\x16\xa9\x70\xfb\x98\xc1\x47\x5c\x1f\x4e\x27\xb9\xb3\x3c\xfe\x0d\x3a\xd9\x32\xa1\xeb\xe6\xa2\x7f\xc3\xb4\x46\x62\x29\x54\xae\xe1\x68\x36\x68\xc8\xbd\x4a\x3f\x90\x3b\xe5\xc7\x7d\xfd\xb8\xe8\x91\x4c\xed\xc5\x1f\x65\xfe\xd2\xd9\xc4\xd0\x3e\x13\xa6\x68\xd4\xc7\xea\x5e\x31\x88\x3e\x1b\x3d\xb6\x43\x63\xe2\xac\x5c\xc5\x4b\x54\xce\x69\xc6\xad\x52\xf8\x74\x99\x9b\x5d\xd2\xc5\x78\x2f\x03\xc3\xd5\x15\x05\xdf\x53\x6a\x1f\xe0\xd8\x60\xd3\x3e\xab\xed\x64\x1a\x94\x00\x89\xf1\x29\x7d\xd0\xf5\x7f"}, {{0xf8,0xff,0x97,0x03,0x2a,0x34,0xcf,0x99,0x99,0x08,0x80,0x58,0xaf,0x56,0xff,0x70,0xb6,0xac,0xb2,0xed,0xf7,0x59,0xe1,0x31,0xfa,0xec,0x84,0x40,0xfd,0xec,0xf6,0xc4,},{0x54,0x38,0xb4,0xe3,0x3f,0x1c,0x5e,0xa1,0x12,0xfb,0x1b,0xaf,0xef,0x40,0x59,0xbf,0x09,0x5a,0x11,0x40,0x9b,0x64,0xd4,0x6b,0xfb,0x4d,0x25,0x47,0x3c,0x1c,0x08,0x74,},{0x50,0x9e,0x9e,0xad,0xfe,0x8d,0xde,0x79,0x14,0xac,0x20,0xca,0xfc,0x0b,0x0a,0xf2,0x2b,0x84,0xdd,0x8a,0x21,0x0a,0x48,0x12,0xcd,0x8c,0xae,0x39,0xb0,0xa2,0x72,0xe5,0x3e,0x02,0x24,0x6d,0xc8,0x93,0x9e,0x92,0x26,0x92,0x03,0x36,0xe1,0x40,0xb3,0x15,0x32,0xd0,0x68,0x13,0x7a,0x34,0x16,0x1e,0x59,0x9a,0x86,0x94,0xa9,0x5d,0xdf,0x01,},"\xdf\xb4\x1f\xb9\xd5\x37\x02\xcb\x2b\x9e\x3f\xfc\xad\x4e\xa6\x02\x71\x6f\x71\x8a\x7e\xa3\x3e\x21\x84\x3e\x2a\x6c\x05\x2c\x70\xc6\xc5\x14\x85\xd7\x2b\x53\xa5\xbb\x4e\x34\xe0\x3e\x3e\x1d\x1a\x52\x51\x8e\xb3\xe7\xf1\x8f\x2a\x1e\x1c\xaf\x78\xac\xb2\x11\x60\x89\xbe\xd4\xc6\x17\x13\x8e\x71\x6a\x91\x43\x1f\x2c\xf6\x44\xa1\x21\x0f\x6d\x19\x20\xd2\x85\x99\x42\x64\xd6\x46\x6b\x0d\x8d\x2c\x62\x63\x80\x44\x61\x6f\x57\x6e\xdc\x7d\x0d\x93\xcb\x66\x01\x31\xd4\xbb\x50\x87\x5e\x15\x36\x40\x12\x3a\x96\xf1\x5b\x75\xa5\xbc\xee\x46\xd5\xcc\x5e\xb1\xa4\x31\xc5\x9d\x2e\xad\xdf\xd5\x53\x15\x02\xfe\xb1\x55\x1b\xf7\x79\x1c\xd5\x98\x9d\x17\xd1\x02\x96\xd0\x1b\xa3\xae\x3e\x38\x4c\x67\x45\x26\xca\xb6\x2a\x7c\x24\xc0\xff\x67\x7d\xe7\x1c\xa1\x72\x62\x1a\x28\xa8\x5e\x01\xee\xfe\x07\xf6\xee\xf9\xc3\xec\xfd\x7f\x94\x98\xac\x42\xf4\x6a\x43\x71\x6f\x61\x53\x18\xa3\xb2\x87\x57\xc3\xa1\x5f\x4f\x1c\x38\x22\xae\x7a\x75\xc2\x03\xa2\x98\x25\x8d\x75\x36\x38\xcf\x42\x5e\x15\xbb\xc4\x62\x02\xb0\x93\xb8\xe4\xf3\xe6\x70\xfb\xb6\x63\xdb\x2b\x69\xc8\xfb\x0f\x62\x50\x74\xd8\x5a\x44\xd3\x50\xe0\x42\xbb\x1b\x74\x02\x1d\x19\x29\x97\xa2\xc2\x7d\xd6\xc8\x63\x48\x41\xd1\x00\xa0\x34\x4b\xae\xd7\x50\xa3\x9f\xf5\xdc\xd9\x84\x8d\xfc\xf0\x9e\x5c\x8c\x47\x96\x7b\x96\x55\x6e\x23\x32\xca\x17\xd8\xe4\x2d\xd8\xf3\x93\xa5\x44\x5a\x37\x22\x44\x60\x0b\x30\x01\xb8\xfe\x86\xc4\x5e\xaf\xc6\xe7\x38\xaa\x7e\x11\x7b\x4a\x79\xfa\x2e\x6b\x00\xf4\x64\x92\x8d\x18\x56\xc8\x3e\xcf\xe8\x7d\xd3\x4d\x15\x8f\x5c\xb4\xe4\xf4\xd6\x10\xf5\x97\x17\xec\x79\x0b\xd3\xff\x87\x20\x40\xb6\x7e\x8d\x39\x39\xe8\x04\xe3\xb5\xdb\x98\x5a\x09\x56\x21\xcb\xcc\xd6\x86\xc0\x93\x4e\xce\x3e\x27\xab\x2c\x6c\xe3\x3f\xb5\x2b\x11\x1f\x48\xe4\xf2\x74\xbd\xf3\x20\xd0\xb0\x23\x84\xc8\x3c\x49\xe1\xa0\x41\xbd\x23\x19\x10\x9c\x85\xa0\x6d\x80\x48\xa9\x93\x35\x7a\xbf\xd8\x11\xac\x2f\x38\x05\x9d\x07\x7a\xcb\xc3\x6a\xa9\x66\xc0\x28\x90\x37\x48\x62\x5f\x92\xe8\xf7\x9d\x51\xbd\xa1\x0f\x78\x52\x29\x77\xf7\x6e\xc4\xe8\x85\xe4\x9a\x46\xc6\x8d\xe0\x9f\x3d\xa8\xf8\x6b\x71\xae\x64\x23\xbd\x29\xde\xef\x1c\xc6\xa1\x13\xea\xc1\x15\xa6\xcd\xe2\xcc\xd0\x11\xfc\x1c\x0f\x0e\x34\x27\xf4\x3c\x3e\x96\xfc\x41\x56\xed\xf6\x2d\xdf\xb7\xb0\x83\x6b\x88\x8b\xab\x3c\x43\x45\x05\x5a\x6c\x41\x78\xe9\xe2\x28\x29\xfd\x8c\xfc\xe3\x9b\x0b\x84\x44\xeb\x26\x48\x7c\xc9\xdc\x82\x60\x6f\xea\xad\xaf\x49\x78\x69\x4e\x65\x64\xf2\x72\x9c\x1b\x13\xab\x37\xc9\x07\x2d\xb4\xe9\xde\x94\x0e\xe5\xf1\xd0\x58\x84\xae\x7f\xd9\xd9\xec\x9c\xb7\xde\x56\x34\x76\x00\xa8\x8d\xea\x92\x08\xa6\x34\x19\xfc\xe2\x9e\xe5\x00\x55\xa3\x74\xa8\xf2\x2f\x9a\xe2\xbe\x98\x05\xa9\xf4\x76\x15\xaa\x59\x57\x6b\x44\x04\x2f\xf1\x26\xa8\x98\x24\xe3\x6a\xd6\xbc\x58\xe0\x6b\xb9\x0f\xbe\xef\xba\xe5\xd6\xd7\xd6\x24\x30\xf3\x73\xb6\x29\x6f\xbf\xcd\x4d\x66\x20\x16\x83\x53\x58\x3f\xbd\x3d\x5a\x29\x2b\x95\x72\x51\x75\x34\xe2\xfb\x0b\xee\xf2\xfa\x98\xa4\x64\xe5\x91\x03\xe7\xa0\x42\x87\xf1\x5d\xad\x0f\xac\x54\x97\x0e\x77\x15\x07\x8d\x63\xec\x26\x36\x2f\x6f\xba\xbc\xdd\xea\xf7"}, {{0x2e,0x4c,0x39,0x21,0x9f,0xc9,0x2a,0x53,0x8e,0x48,0xe9,0x5f,0xbf,0xcf,0xef,0x30,0xf5,0xa2,0x1b,0x78,0x94,0x0b,0x81,0x05,0x3b,0xda,0xd4,0x60,0x2b,0x4c,0x96,0x90,},{0xf8,0xee,0xd8,0x92,0x17,0x66,0x20,0x43,0x4c,0x7f,0x0e,0xc5,0x3d,0xcf,0xf3,0x98,0x63,0x10,0x9e,0x7c,0xa4,0xd0,0xb3,0xc6,0xc4,0xb5,0x64,0x10,0xbe,0x01,0xe5,0x37,},{0x39,0x45,0x20,0x12,0x2b,0xb0,0xa5,0x64,0x64,0x8a,0x7a,0x8b,0xc8,0xdc,0x73,0x63,0x6c,0x51,0x77,0x46,0xa3,0xc8,0xa0,0x5b,0x90,0x1e,0x72,0x52,0xfe,0xf0,0xe5,0x02,0x3d,0x90,0x99,0x1e,0x31,0x1b,0x53,0x82,0xd4,0x91,0x00,0xe5,0x26,0x33,0xc7,0x0f,0xe9,0xc2,0x6c,0x14,0x50,0xe0,0x60,0x3e,0x6d,0x45,0x22,0x99,0xaf,0x4d,0xae,0x07,},"\xc8\x7d\x1f\xba\x9d\x94\xa6\xa5\x40\x89\x80\xfc\x80\x83\x98\x0f\xd2\xd2\x52\xfa\xe5\x40\xf6\xee\xc1\x9e\xd6\x74\x6c\x29\xe3\x39\xa1\xc2\x9f\x6f\x53\xbc\x23\xfd\x6b\xfa\x43\x85\x07\xef\xf5\xda\xf9\x03\x40\x3c\xda\x70\x7b\x4d\xc5\xe8\x44\x80\x5d\x6b\x1c\xeb\x4a\xff\xf4\xb2\x32\xe8\xe6\x9d\x7d\x27\x1f\x3c\x06\x7c\x48\x54\xf3\xd9\x4f\x27\xfe\x32\x55\x81\xfa\xca\x79\xd1\xf0\x2a\x26\x29\x0a\xd2\x3a\xf7\x11\x00\xc1\x2c\x09\x15\x76\x47\xca\x9d\xa4\x3d\x76\x90\xdd\xcd\x94\xdb\x65\xe0\x00\x98\x9c\x87\x8b\x75\xa0\xff\x22\xd2\xc7\x09\x62\x59\x4c\x9b\x08\x08\xf2\x78\x46\xcc\xac\x85\x67\xbc\xe5\xd2\xe3\xb7\x60\x28\x09\xf2\x3b\x59\xcd\x71\x8a\x08\x05\xd1\x08\xf3\x1a\x63\x2a\x05\xb8\xdf\xa5\x03\x5a\xb9\x46\x1a\xeb\xa4\x16\x00\x9d\x74\xfd\xf9\xe0\x07\x20\x28\x56\x89\x0d\x2c\xff\x80\xfa\x24\x0b\x97\x8a\x48\x27\x0f\xcb\x2f\x47\x36\x97\xbc\xba\x8e\x73\x0a\x55\xc2\x87\x61\x91\x9a\x23\xbe\x41\xda\x27\xff\xea\x09\xe3\x55\x9c\xaa\xab\xf9\x51\x9e\xc0\x8e\x1f\xfa\x86\x81\x7a\xa3\xe8\x87\x4f\xa8\x16\xe7\x71\x8c\x5b\x2f\x34\x49\x67\xba\x1b\xc2\x81\x9c\x4f\x04\x5a\x97\xb4\x05\x44\xea\x61\xd7\x17\x08\x3c\xca\xf1\x1e\x9d\xdc\x04\xa3\x59\x8e\xf1\x81\xe7\xbe\xf4\xac\xef\x45\xb6\x55\x1b\x47\x8a\x0d\x77\x31\xc4\xf0\x8c\xe5\x80\x2f\x78\x25\x8d\x41\x90\x17\x66\x10\x76\xd7\xd6\xd2\xef\x39\xe5\x7c\xf9\xcd\x93\x97\xdc\xc5\xde\xbf\x64\xab\x82\xb6\x61\x59\xf5\x78\x31\x6e\x74\xcd\x49\xf5\xad\x2c\x6f\xef\x83\xcf\x08\x68\x3b\x95\x70\xa9\x46\xad\x49\x03\xdf\x4e\x96\xec\x00\x8e\x14\xa5\x01\xfa\x93\x86\xbd\xaf\x2a\x63\x99\x3c\x6c\x9b\xdf\x23\x1f\xd0\x9e\xa6\xf9\x6e\xf4\xd4\xe2\x9a\x3a\x33\x27\xcb\xf7\x4e\xa8\x31\x05\x4e\x66\xca\x86\x68\x0c\x6c\xe5\x3b\x66\xf9\x46\x5d\x06\xb3\xfa\x07\x98\xbb\x69\x05\xae\x38\x45\x59\x34\xf2\xfb\x7e\x0b\xa4\x72\x32\x89\x89\xf0\x01\x30\x86\x71\xcc\xcb\x56\x6d\x22\x2c\x72\x16\x5b\xb3\xa7\x44\xfb\x98\xe2\x21\x0f\x96\x20\x68\x0d\xf3\xe3\xcd\x14\xa8\xbd\x94\xb5\x74\x5c\x00\x16\xdd\xa7\x7f\x05\x9f\x26\x05\x3b\x64\xcf\x45\x23\xc3\xd4\x29\x11\x2f\xb6\xb3\x28\x39\x8b\xc6\x30\xa2\xe9\x06\xb9\x5a\x6c\x57\x80\xcf\xdc\x06\x41\xbe\x47\x51\xbe\xbd\xdf\x77\x24\xdc\x9c\x27\xe7\x8d\x60\xed\x0f\xd7\x36\xd5\xab\xd8\x89\x29\xc1\x79\x5d\x47\x3a\xbd\x2b\x03\x20\xc5\x40\x47\x57\x28\x82\x18\x67\xa4\x09\xa2\xff\x13\xcc\x44\xce\x35\xe5\x98\x1e\x9f\x6b\x87\xa2\x8d\x4f\xa8\xb8\x67\x5e\x50\x3f\xae\xfc\xa7\xc1\xd7\x98\x47\x37\x87\x1f\xe9\x19\xac\x41\x4e\xea\x26\x5e\xe3\x1f\x9f\x78\xf5\x21\xf3\xf4\xf8\xd0\x0c\x3f\xb7\x91\x71\xf3\xc6\xa5\xdb\xf5\xe1\xac\x8b\xf6\x3b\x4c\x3d\x8d\x8b\xc1\x21\x03\x6e\x9e\x55\xbb\x70\x2e\xa6\xc8\x6e\x92\x5e\xc0\xb9\x84\xde\xd2\xc7\x1f\x3b\xfd\x49\x32\xe6\xc4\x1b\x58\x2f\xd0\x2c\xa5\x9f\x53\xce\x29\x74\x45\x78\x5c\xc4\xca\xc2\x47\xb0\xb8\x4e\x7f\xa0\xbc\xdc\xf7\x9b\x3e\x4a\x15\x5f\x98\x78\xc1\xf6\x43\xbe\x9c\x42\xf7\xa4\xf2\x72\x60\x44\x45\x05\xc1\x84\x5b\xd5\x3b\x55\x0a\x31\xd7\x95\x3c\xc7\x38\x86\x1f\x46\xbd\xf4\x87\x0f\x3a\x77\xac\xe1\x91\xab\xd6\x3c\x45\xad\xb1\x53\x90\x9f\xb5\x9a\xb5\xdb\x9b"}, {{0xf0,0x92,0xe6,0xbe,0x8d,0x2d,0x9a,0xd0,0x69,0xa3,0xe2,0xb9,0x76,0xd2,0x44,0xe3,0x4c,0x15,0xc2,0x8c,0x48,0xd3,0x2f,0x55,0x60,0xa5,0x41,0x85,0xd1,0x50,0x15,0x02,},{0xcf,0xeb,0x3e,0x74,0xe4,0xb5,0xc8,0x35,0x6a,0x81,0x75,0x7b,0x8f,0x1b,0xe4,0xb4,0x29,0xfc,0x18,0xfc,0xaf,0x49,0x7c,0xbf,0x8d,0x8b,0xc0,0x48,0x0f,0xf9,0x78,0xf9,},{0x63,0xcd,0x4c,0x0b,0xa3,0xbe,0x93,0x97,0xcc,0x0f,0x3c,0x1a,0xf3,0x48,0xec,0x4b,0x8a,0x91,0xe4,0x2f,0xee,0x67,0x5d,0xa1,0xd0,0x59,0x00,0xb9,0xa8,0x6c,0x13,0x8f,0x91,0x74,0xeb,0x99,0x6b,0xbd,0xf3,0x1c,0x42,0x95,0xe0,0xc5,0x78,0xac,0x0f,0x9d,0x53,0x76,0x41,0xa2,0xaf,0xd5,0xdf,0xf9,0x3a,0x39,0xc5,0xcd,0x9d,0x3c,0x48,0x0b,},"\x2c\x25\x5f\xb2\x5d\x45\xb0\x86\xc0\x71\xe0\x3e\x52\x5b\x4d\x72\x85\x78\xfb\xb6\xb0\xc6\x0d\xa9\x41\xe6\xbf\x2a\x48\x98\xb2\xd5\xb6\x98\x8c\x53\x30\x27\x85\xab\x7a\x3b\xc4\xbb\x2c\x20\x5a\xcd\x27\xd6\xa4\xcb\xdd\x1a\x0c\x08\x89\xde\xd7\x84\x26\x4c\xb7\xc0\x28\x89\xc5\xc7\x11\x3f\xc9\x0b\xbb\xcd\x31\xff\x00\x14\x32\xc0\x53\xf9\x71\x07\x3c\xf6\x71\x2f\x66\x7f\xce\x46\x98\x77\x6b\x98\xcc\x54\x44\xc6\x92\xab\xd1\x28\x81\x98\xbe\x5a\xd5\x67\x46\x09\xf7\xe1\x39\xad\x1b\x9c\xcb\x94\x3f\x8d\xfd\x9d\x12\xc5\x4e\xce\xe2\x78\x34\x1b\x2e\xe1\x27\x79\x91\xca\x62\xcd\x3b\xfe\x12\x8d\x13\x92\x96\x4e\x95\x88\xe2\xf9\x7c\x32\x17\x04\xa3\xde\x10\x61\x88\xc5\xeb\x33\x5a\xa5\xa1\x9a\xcc\x90\x67\xb4\xa9\x41\x29\xb9\xd1\xa6\x16\x7c\x4b\xbf\xb5\x6f\xb9\x76\x84\xcb\xbd\x72\x0c\x86\x86\x9e\x00\x20\xab\x07\x76\xcd\xc9\x95\x4f\xeb\xa8\x62\x12\x4b\x07\x3f\xba\x8d\xe9\xea\x9a\x38\xea\xcf\xa0\x03\xae\x4f\x1c\xdc\xbf\x15\xc3\x2f\xb6\xb9\x70\xc7\x31\x15\xdd\xff\xcd\x4f\xa3\xb7\x18\x46\x11\x0e\xde\xc2\x57\xfc\xae\xd6\x11\x36\x04\xf7\x19\x25\x72\x57\x72\x64\xb9\x90\x5c\xa6\xae\xd8\xda\xec\x13\x84\x03\xca\x41\xaa\x95\x42\x78\xa5\x72\x0b\x26\x7b\x90\xca\x16\x3a\x9b\xdf\x44\x7e\xad\xe8\xde\xb7\x69\xa3\xb4\x92\x37\xa7\x35\x16\x97\x7c\x28\x73\x45\x55\xdd\x23\x4c\xa7\xde\x49\x99\x26\x1b\xc7\x96\x0f\x53\x6b\xa8\xa3\x5a\xd3\xd0\x2c\x75\xf1\xc2\xbe\xa0\xa0\x61\x2e\x7d\x49\xc4\x03\x97\xdd\x6a\xf5\xff\x58\xba\xe6\xa6\x4b\x6a\x77\xe9\x81\xf9\x2d\x15\x9e\x0b\x2b\xd2\x05\xab\x15\x70\x52\xf4\x70\x17\xa3\xe1\x8a\xec\x94\x4d\x04\x65\xee\x00\x17\xe9\x61\x48\xa6\x12\x9f\x74\xd3\xcc\xb4\x89\xfe\xa1\x3a\x15\xa9\xb9\xac\xed\x58\xc6\xee\x0e\x6e\x84\xe0\x5f\xda\xdf\xae\x07\xb3\x34\xa9\x8f\xc3\x7f\x7e\x51\x1c\xd5\xa4\x4e\x9c\x74\xe4\x78\xd3\x49\xe3\x0e\x29\xae\xb4\x6a\x4d\xf0\x1e\x43\x07\xfe\x65\xe1\x39\x4a\x75\x8f\x6a\xda\x2f\xb1\x20\x22\x5c\xcd\x50\xa4\x90\x13\xe6\xc9\xf1\x75\xaf\x90\xf3\xfc\x8c\x57\xe7\xa6\xa9\x69\xa9\x16\xc3\xf1\xaa\xcc\x22\xf3\xe0\x1a\x07\x0c\xc4\x8e\x6f\xd8\x78\xe2\xbd\x07\x3d\xf9\xee\x6f\x05\x9b\x98\x56\x84\x04\xfc\x7e\xae\x7d\x4b\xf6\xfa\x16\xc0\xc8\x03\xc6\xbe\x84\xe8\xb7\x9c\x67\xaf\xfc\x8c\x88\xca\xbd\xee\xbc\x11\x34\xbb\x23\x86\xe2\x2b\xa4\xd2\xe9\xe0\xf3\xe1\xab\x3a\x0d\xac\x7c\x80\xdd\xee\xd7\x73\xcd\xa0\xc4\x1d\xc9\xde\xfa\x67\xfe\xa3\x77\x69\xcb\x4a\x1e\x15\x22\xd7\xe0\xb3\xd7\xc4\x63\x8b\xcd\x98\x31\x53\xd4\x78\xbe\x5e\xcf\x2b\x6a\xb1\xb4\x01\x24\xe4\x22\x2b\x8c\xaa\x46\x47\xbd\x50\xd7\x4d\x20\x39\x43\xab\x20\x93\x8d\x5f\x27\xd9\x08\xa6\x73\x67\x40\x46\xce\x2e\xf1\x8e\x85\x8b\x0a\x01\xa7\xe7\x53\x0d\xed\x0f\x8c\xc8\x9e\xf0\x9b\x73\xca\x59\x7c\xf7\x3a\xfb\xc9\xa2\x71\xa4\xd2\x3c\x92\xfe\x59\x18\x83\xc4\x40\x10\x9c\x4e\xf4\x16\x67\x0b\x7f\x2c\x59\x05\xb7\x7f\x65\xf5\x6d\x09\xd4\x02\x50\x35\x6f\x9b\x1d\xbc\xaf\x1e\xe2\xc0\xb6\x36\x96\xf8\x4d\x68\xdd\xbe\xa1\x60\x08\x51\x51\xa9\x52\x62\x74\xd7\xb8\x46\xcc\xeb\x6c\x43\x48\x09\x84\x84\xde\x3b\xb7\x23\xae\x5e\x85\x27\x6d\xf4\x9f\x56\x34\x13\x0f\xf9\x05\x75\x4f"}, {{0x01,0xa2,0x47,0x94,0x3a,0xfe,0x83,0xf0,0x36,0xb6,0xb6,0x0f,0x23,0xd9,0x77,0x74,0xfd,0x23,0x20,0x8e,0xdc,0x31,0xcf,0x3d,0x88,0x20,0xe9,0xdc,0x63,0x66,0x11,0x03,},{0x8c,0x97,0xa5,0x8b,0xe0,0xe8,0x47,0xc4,0x8a,0x6a,0x39,0x87,0xcf,0xe2,0x50,0xa8,0xd7,0xb0,0x7d,0x97,0xf9,0x61,0xf6,0xb7,0xb7,0x9e,0x7d,0x80,0x42,0xb8,0xbd,0x7b,},{0xed,0x2c,0xed,0x1a,0x4f,0xdd,0xb3,0x44,0x2a,0x63,0x73,0x48,0x17,0x9a,0x6a,0x5b,0xee,0xdc,0xb4,0x4c,0x8e,0x98,0x8c,0xa2,0x6f,0x78,0x93,0x6d,0x2c,0x8d,0xb5,0xc5,0x16,0xd5,0x4b,0x8c,0x4f,0x08,0xd9,0x1d,0xd7,0x04,0x2a,0xb6,0xab,0x26,0xd8,0x7f,0x23,0x0e,0xb2,0xb2,0x15,0x6f,0x3c,0xe2,0x99,0x4f,0xce,0x7c,0x2b,0x0f,0x10,0x0e,},"\x08\xd8\x14\x95\xda\x77\xf4\x07\x25\x5c\xc4\x1a\x81\x8e\xef\xa7\x27\xe2\xc4\x7a\xe4\x11\xf4\xb5\x41\xf0\x1f\x81\x1d\x90\x6d\x55\xfb\x1e\x3c\x9c\x48\x4d\xf3\x05\x65\x36\x4d\xe9\xdc\xb9\xfe\xa0\xaf\x66\x11\x2f\xe7\x5f\xd1\x1a\xe8\x1d\x26\x41\xb5\x47\x58\x9f\x8b\x97\x4a\x97\xe7\x97\x6e\xd6\x92\xaa\xd6\x40\xed\xd2\x88\xbd\x86\x3d\x11\xc4\xca\x98\x36\xf9\xd7\xc1\x15\xc3\xd9\x88\x30\xd6\x42\x47\xcb\x6f\x8f\xb6\x03\xc6\x98\x11\x33\x55\x2a\x32\x04\x04\x19\x61\xbd\xd8\x3e\x2f\x9d\xeb\xa7\x70\xc0\x39\x4f\x9b\x60\x2a\x45\x35\x51\x07\x49\x21\xa3\xde\x28\x32\x13\x69\xd7\xf8\xca\x64\x0c\x45\x10\x9e\x8f\x52\x2c\x97\xed\x9f\x35\xb9\x27\x7a\x35\x0e\x29\x59\x31\xb4\x2e\x01\x35\xe9\x4a\x92\xfe\xd3\x63\xd6\xca\xe3\x92\xf7\xc4\x51\x99\x32\x7e\x24\xb4\xcf\xa5\x89\x8a\xb5\x99\xae\x7b\xd5\x0b\xd3\xa0\x0c\x0d\x00\x7e\x95\xfa\xf8\xf2\xae\x10\x38\x02\xca\x7e\x53\xb2\x79\x18\x4d\x06\x90\x5f\x57\x48\xca\x8b\xe1\xf7\x2e\x66\x8c\xb8\x32\x83\xdd\x00\x40\x64\x91\xf8\xb9\xb4\xe5\xa9\xd4\xa5\x43\x8b\x2f\xa4\x37\x1e\x0b\x05\x68\x6f\x87\x57\x5b\xaa\x79\x6e\x30\x2f\x08\xff\xc4\x25\x66\x27\x50\xa3\x3a\x0c\x9c\xfa\xa4\xb4\xd7\x04\x1f\x92\x64\xfe\xd7\xbe\x4f\x9f\xde\x2c\xac\x68\xa2\x15\x82\x36\xf6\xac\x43\x04\x7e\x91\x1f\x4c\x4e\x8b\xc6\x63\xfd\xd5\x05\x17\xdf\xaa\x8f\xbc\xd2\x19\xdd\x7a\x0e\x93\x69\xf4\x3d\x0d\xd2\x5b\x4f\x0c\xf9\x30\xf2\x0b\x7b\x7c\x6d\xb9\xd5\xbe\x0c\x6e\x19\x60\x94\x1a\x3e\x04\xd1\x41\xc0\x3e\x59\x61\xaa\x33\xe9\x02\x44\x77\xd5\x33\xc9\x95\x37\x87\x96\xbf\x22\x92\xad\xe9\x22\x69\x5b\x14\x56\x9f\xc3\x39\xb3\xd9\x08\x5c\x63\xfc\x6e\x5b\xef\x4d\x99\x0c\x80\x33\x3a\x6b\x57\xaf\x47\x8f\x93\x8e\x3e\xe7\x38\xb1\xd1\x29\xbd\x97\x6a\xfe\x68\x61\x28\xbc\xac\x08\xcc\xbe\xb0\x34\x9b\x9b\x53\x73\x13\xbc\x7b\xf5\x91\xc6\x5d\x4a\x71\x23\xad\x30\xbd\xbe\x14\x86\xb4\x28\x08\x47\x48\xb6\x50\x7f\x6f\x5e\xf6\x7c\x26\xca\x86\x2c\xf7\x26\xaa\xc1\x40\xb8\x61\xae\x0d\xc7\x4b\xb3\xc0\xb4\x89\x78\x9f\x17\x14\x5e\x9a\x85\x5a\x3e\x2b\x5d\xaa\xc4\x18\xd8\x35\x37\x33\x23\x9e\xf6\x9c\x7b\x56\x5b\x53\x03\xeb\x87\xbd\x7f\x64\x9a\xbf\x40\xa2\xf1\x35\xa2\x9e\xd2\x7e\x3b\xe4\xc1\x2c\xd6\xdd\xd2\xe5\x41\x8a\x99\x97\x43\x83\x66\x3f\x58\x49\xbf\x3c\xe5\x53\x2b\xf6\x4a\x80\xaa\x52\x11\x91\xd2\x53\x90\xbc\x19\xa4\x5e\xed\x1d\x3f\xec\xa1\xd9\xfc\xc0\xdb\x03\x1b\xfb\x48\xe4\x50\xbe\x3d\x45\x93\x35\x6d\x5b\xa0\xf3\x10\x47\xb4\x57\x74\x5f\x21\xe3\x2e\xbe\xa3\xca\x6c\x35\xf0\x5d\x78\xd8\xc3\x16\x40\xb0\xfe\xcb\x94\x01\x16\x56\x75\xc7\xf9\xcb\xb1\x9b\xc4\xb5\x67\x7c\x2c\xce\xdc\x4e\x7a\xaf\xb8\x41\x84\xc1\x91\x99\xac\xa0\xdb\x21\xcf\x50\x67\xdc\x3a\xf7\x69\xbc\xc6\x29\x35\x5f\xf7\x25\x7a\x9e\xfd\x71\xa6\xa9\x2d\x13\x0d\x35\xab\xee\x6e\x70\x60\x5b\x5c\xab\x93\xc0\x28\xfa\xc3\xaa\x23\x44\xba\x86\x1a\xc1\xe8\xce\x9a\x4b\x07\x0c\x3d\xf7\x40\xd2\x8c\x5e\xce\x0f\x1b\xc3\x1c\x2d\x7d\x1e\x5e\xcc\x76\x10\x44\x80\x93\x91\x33\xa1\x86\x60\xe4\xa3\xe4\x84\x6b\x25\x17\xbe\x3b\x8e\x7a\xfa\xfe\x07\x83\x91\xd8\xaa\x8e\x5c\x30\x13\x7e\x85\xd9\x4d\x64\xa2\x79\xfb\xee"}, {{0x91,0xfd,0xef,0xcd,0xbc,0x99,0x0d,0x3e,0x8e,0xeb,0x60,0x17,0x04,0x34,0xda,0x10,0x83,0x1b,0x03,0x08,0x1f,0x6a,0xfd,0x0d,0x7e,0x12,0xb1,0x00,0x11,0xe0,0x2a,0xef,},{0xc5,0x8d,0x3e,0x20,0xb8,0xd4,0x7b,0xa4,0x55,0xb9,0x12,0x57,0x2d,0xc8,0x40,0x81,0x5e,0x3d,0x88,0x5f,0xa5,0x91,0x7d,0x1d,0xa4,0x84,0x08,0xb9,0xa9,0x56,0x40,0x98,},{0x51,0x01,0x12,0x22,0x3b,0x33,0xa5,0xab,0x15,0x64,0xf7,0x53,0x71,0x91,0xcd,0x29,0x2a,0x9d,0xbd,0x5a,0x32,0x3d,0x7a,0xdd,0x05,0x84,0xc1,0xb0,0xad,0x00,0xd0,0xac,0x71,0x99,0xc3,0xfb,0x75,0x8e,0x91,0x3f,0xf3,0xd7,0x16,0xc2,0xe9,0x0d,0xd9,0x0d,0x4e,0x8f,0x59,0x95,0x1e,0x87,0xef,0x8b,0x78,0x21,0x4a,0x51,0x75,0xc4,0xe6,0x08,},"\x5b\x0c\x1a\x3a\x95\xe0\xba\x74\x74\x76\x6c\x9b\xad\xfa\xe3\x4a\xb8\x60\xe0\xa6\xc0\x33\xa2\x2f\xba\x72\x11\x27\xf5\xbb\xee\xe8\xe2\xcb\xde\x1a\x1d\xfe\xb1\x8d\x55\x1c\x95\x99\x4d\x21\xe3\xeb\xc6\x8a\xfa\xe6\x85\x44\x4a\x3a\x41\x95\xbc\x75\x55\x38\x90\x3a\xcf\xa6\x71\x55\x92\xdd\xe2\x56\xe7\xa1\xb4\xc3\x63\xec\xa7\x1e\xf0\xf3\xa4\x8a\xe3\x44\x2d\x50\xd5\x66\x1b\x39\x40\x96\xb7\xec\x27\xbb\xf5\x29\x53\xf3\x04\x0c\xd2\x5b\x78\xce\x47\x55\x27\xe0\xcc\x59\xf1\xef\x9a\xe2\xe0\x59\x04\x31\x58\x2b\x2d\xf8\x14\x14\x99\x82\x9a\x2c\x5f\x7b\xbe\x35\x98\xe4\xc9\x6c\xc0\x1e\xde\x2f\x43\xb6\x56\x05\xb4\x88\x59\x37\x09\xc0\x94\xb5\xa0\x42\xb2\x85\x55\xfb\x52\x27\xa6\xd1\x56\x37\x6f\x3f\xf0\x7b\xd5\xc8\xbc\x68\x04\xd3\x9a\x32\x82\xac\x59\x70\xba\x08\xae\xbf\x75\x42\xb8\x45\xf6\xb5\xc2\x38\xc2\xce\x20\x44\x3f\x7f\x77\x55\xd7\x5f\xe4\xfa\x16\xb9\x64\x4c\xa3\xe2\x1d\x91\xa9\xa8\x7c\x68\x61\x15\x74\x8a\x16\xc0\xae\x4a\xe4\xe1\x6d\x1c\x71\xae\x60\x0b\x39\xcd\x25\xe5\x63\x3b\x39\x9f\xee\x7f\xf2\xe3\x62\xbe\xd2\x51\x25\xc6\xfd\x5c\x7f\x5f\xfa\x2d\xa2\x35\x3f\xd3\x5b\x78\x4a\x1b\x1b\x03\x19\x77\x47\x58\xb7\x39\x0c\x44\xdc\xc9\x2f\xca\x42\x01\xdf\xe1\xa3\x75\x69\xde\x05\xf0\x66\x4d\x08\xb9\x0d\x6e\x2b\xad\xc2\x1b\x92\xf9\xce\x87\x21\x42\x35\x7b\x96\x15\x08\x0a\xb7\x65\x9a\x24\x6f\xf0\x85\x2a\xdb\x17\xdf\xda\x70\xcf\x17\x54\x15\x7b\x13\xbc\x03\x2b\x4c\x5d\xeb\x8e\x10\x68\xb4\x69\x2b\x93\x16\x5d\xa3\x5e\xfc\x9d\xa8\x6a\xcb\xe6\xf8\x0f\x01\xbb\xc2\x6f\x57\x5e\xc5\xaf\x5b\x05\x0e\x98\x28\xaf\xde\x6c\x3b\x78\xe7\x33\xeb\x5a\x91\x24\x92\xf7\x65\xbc\xad\x73\x1b\x95\xe3\xab\x88\x96\xb6\x17\x58\xbf\x91\x3b\x9a\x15\x68\xf9\xc5\xb4\x60\x33\xcf\x45\xdc\xc1\x75\x0d\xa2\x06\x6c\x60\x8d\xc3\xd3\x43\x73\x8e\x84\x8d\xc3\x90\xcd\x47\x44\x32\xe9\x91\xd7\xaa\x2c\x5b\x27\x81\x42\x1e\xfe\x55\xe3\x6b\x0b\x42\xc1\xf4\x9a\xe2\x77\x48\x0b\x0f\xc5\xff\x68\x5b\xb5\xa3\x1b\xe3\xa0\xfa\x44\x82\x38\x16\x07\x70\x37\x54\x8a\x5c\x9b\x0e\x1c\xc6\xc6\x35\x04\xa4\x07\x57\x9a\x36\x32\xb3\xc9\x6f\xcd\x0d\xe5\xea\x1e\x4d\x6e\x87\xc0\xca\xf7\xb6\xca\xe3\x12\x0d\xb8\xb1\xf4\x61\x5c\xe6\xa7\x5a\x81\x65\x4f\x39\x04\x28\xb6\x4c\x21\x3e\x72\x7e\xec\x3a\xe7\xf9\xf4\x2d\xb9\x06\xf4\xde\x1f\xda\xdd\x34\xa3\xda\x2a\xeb\x12\xb4\xd9\xa1\x85\xf4\xa6\x0c\xb0\xc2\x67\x45\xf5\x30\xb4\x81\xfc\x97\x6a\x09\x3c\xe2\x4a\x30\x91\x6a\xf6\x05\xee\x94\xb0\x87\x85\x19\x3a\x94\x9d\x56\x9c\x4b\x7e\xf5\x96\x03\xbb\x62\x43\x60\xe7\xb4\x08\xd9\x8c\xa5\x09\xda\xf5\xa9\x2a\x6d\x40\x15\xbd\xb6\xf9\x7a\xd4\xff\x0c\xf0\x5c\x8f\x0c\xd5\x47\x6a\x93\x44\x26\xa0\x59\xf2\x44\x44\x46\xe5\x86\x4f\x08\x9e\x0f\x06\x75\x61\x59\x10\x66\x2d\x7c\x1e\x79\xa6\xc7\x5f\xa3\x14\xb7\xba\x2c\x64\x3b\x0d\x37\x65\x3e\xef\xe5\x93\x17\x2d\x1d\x33\x2c\x8d\xd6\x44\x92\xea\xf1\x04\xfb\x19\x57\xba\xa5\x20\x49\x44\x2d\x10\xb5\x6a\xf8\xea\xe8\xff\x82\xcd\x8f\x46\xa0\x49\x4b\xec\x2f\xcb\x9f\xad\xf1\x0c\xf7\x1a\x6e\xec\xd0\x54\x7d\xaf\xdc\x7a\xdb\xaa\x45\x03\x78\x3f\x94\x3a\x46\xb4\xad\x0e\x6d\xd7\xf2\xca\xb5\x56\x17"}, {{0xef,0x00,0xb3,0xc1,0x81,0xf6,0x32,0x7d,0x02,0x25,0x67,0x51,0xcb,0x51,0xc2,0xc3,0x6c,0x0c,0x0a,0x78,0x07,0x63,0x40,0x54,0x8f,0x5b,0xc0,0x70,0xd8,0x6d,0x9e,0x26,},{0xdb,0x14,0xcd,0x32,0x58,0x8f,0xd7,0x41,0xe8,0xf4,0x2e,0x51,0x21,0xcc,0x81,0x1a,0xd4,0x50,0x63,0xf2,0x81,0x41,0xe8,0x3c,0x66,0x8f,0x07,0xd9,0x12,0x28,0xf0,0x49,},{0x13,0x9f,0x9c,0xb9,0x9b,0x99,0x5b,0xe6,0x58,0x8c,0xdd,0xb5,0x05,0x16,0x94,0x83,0x8f,0x9d,0x82,0xa6,0x07,0x61,0xfd,0xe3,0x04,0xb0,0x02,0x7f,0xf8,0x65,0x84,0xbf,0x65,0xc7,0x3c,0xc6,0xd2,0x53,0xe5,0x60,0xf6,0x55,0x25,0xdf,0x04,0xbf,0xe1,0x46,0xc8,0x3b,0x42,0x26,0x9c,0xf3,0x78,0x0f,0x8b,0xc3,0x92,0x43,0x78,0x94,0xae,0x01,},"\x7d\x6a\xbe\xc7\xa1\x1a\xf6\x73\x24\xce\x17\xb1\xd2\x0b\xb4\x0c\x66\x8a\x21\x9b\xc9\x5d\xf0\x5e\x32\x5d\x86\xf8\x87\x95\xe2\x64\xd4\x54\xfc\x5f\xa7\xd9\xc8\xaa\xfe\x77\xe9\x0a\x6a\xf6\xb5\x74\x53\xd8\x5b\x97\x0b\x55\x2a\x85\x6b\xa6\x59\xab\x31\xbd\x8a\x66\x0e\xb7\xd3\x58\x7b\x45\x3e\x5c\x5f\xc6\xb7\x94\x72\xb2\x6e\x8f\xf7\xdd\x6d\xb6\xbe\x35\x72\x54\x8b\x0d\x75\x4e\xd4\xd9\x85\xb8\xd9\x96\x5f\x88\xb9\x52\xfc\x4f\xa3\xb7\x61\xcc\xff\xc3\x53\x54\xdb\x0e\xb9\xc5\xa1\x71\x71\x8a\x8a\x55\x92\x87\x02\x13\x82\x7d\x36\x91\xba\xe7\xfd\x9c\x63\xf2\x05\x03\xe0\x43\x19\xb5\xe9\x53\x57\x9d\xe4\x7e\x3e\xf8\xe1\x62\x85\x49\x50\x3c\xb4\xf6\x87\x1b\xa2\x5d\xb8\x73\x47\x08\x0e\x53\x1a\x51\x7a\x8b\x72\x21\xe6\xad\x84\xdf\xf8\x32\x56\xd9\xab\x9a\x43\x3d\xe8\x71\xb9\xcb\x9c\x50\x44\x58\x9e\x67\x20\x6b\x31\x7a\x52\x06\xae\xba\x96\xc9\x2f\xd6\x09\x40\x71\xc6\x44\xfe\x52\x65\x8d\xed\x92\x20\xcf\x6a\xbd\x50\xe2\x30\x5a\x1c\x90\xfd\x66\xaa\xcf\xb3\x8e\xb0\x5e\xaf\xf6\xca\x5f\x85\xf4\x29\xcd\x57\x71\x6e\xb8\x77\x39\xa0\x2b\x64\xcf\xfa\x08\xc4\xf6\x85\xb0\x03\x10\xb5\xb4\x84\x49\x20\xdf\x21\x5a\x9f\x24\xa1\x76\x13\xae\xf8\x5f\xec\x94\xf5\x11\xdc\x8a\x42\x94\xed\xdc\xea\x11\xc0\x8c\x0b\x39\x9a\x23\xd9\x16\x38\x3e\x29\xad\xeb\x98\xc6\x5d\x41\xc7\x05\xa5\x7f\x84\x05\x20\xfa\x80\x8d\x7f\xd2\x5f\xdc\xe1\x59\xf7\xa0\x84\xd0\x62\x97\x4b\x30\x13\x2a\x57\x12\x42\xba\xff\x41\x96\x24\x6d\x6d\x75\x7b\x31\x2e\x9d\x60\x85\x53\xd2\xdc\x53\xb6\x23\xb2\xe9\x5c\x75\x38\xfb\xc5\xde\xb6\x2b\xa7\x37\x76\xd8\x5e\x51\x18\xfa\x1a\x30\x2d\x4d\x07\x6d\x99\xe1\x00\xf0\xdf\x11\x9c\x33\xfc\x66\xcd\xfe\x6f\xd4\x4d\x71\x99\x7b\x78\xc8\xf7\x89\x0c\x70\x73\x46\x05\x62\x20\xd1\xe9\xde\x88\xbc\x17\x3c\xf0\xb7\x6c\xb3\x02\x87\x7e\xc1\x6a\xf4\x6e\x4c\x31\x63\x9f\x54\xee\xdc\x16\xda\x9d\x9e\xb0\xad\x95\xbd\xa5\x45\xdf\xc4\xa7\x32\xb6\xda\x98\x14\x13\x6a\xb1\xb9\x39\x2a\x07\x1b\x02\x24\x73\xb3\x49\x05\x57\x69\x8b\x77\xe7\x44\x7a\xc8\x59\x0d\xca\xf4\xf2\x42\xad\x3d\xfb\xc0\xdf\x71\x6c\xc0\xea\x75\x36\x26\x97\x3d\xf0\x8d\x93\x5d\x17\x8e\x33\x12\xfb\xe2\xa7\xba\x9c\x50\x93\xc5\x3b\x92\x55\xea\xca\x29\xb7\x25\x78\xe3\xba\x1b\xdf\xaf\x0c\x9e\xce\x21\xa5\xdf\xf6\xea\x42\x15\x24\xf7\x0f\xc1\x90\x4e\x9a\x2c\xf7\xc5\x18\xbf\xcc\x7e\x36\x73\xee\x87\xff\x27\xe1\xca\x2a\xc3\x2b\xcb\x40\x91\xcb\x34\xa8\x2a\x71\x56\x3f\xf6\xa6\xa1\x5d\xa0\xeb\xd5\xbd\x10\x25\x6c\xe9\x60\xf4\xea\xa7\xfe\x35\xe1\x28\x88\x60\x50\xd0\x49\xfe\xc3\xa4\xab\x16\xd5\xb0\xc1\x07\x26\x7e\xae\x1a\xb8\x01\xea\x5b\x91\x98\x38\x39\xda\x1c\x48\x8c\x12\xf8\x64\xd7\xc3\xa7\x7f\x2b\x6a\xe2\x7d\x54\x01\x09\xf6\x8d\x78\x36\x4b\xb6\x27\x18\x3b\xd5\x03\x91\x75\x47\xaa\xf3\xb3\xa1\x80\x9d\xa0\x25\x77\xb3\xf0\x3a\x9a\x3f\x5a\xf4\x8c\x88\x02\xe2\x97\xc8\xbb\x63\xdb\x6a\x86\xd3\xea\x72\x7a\x6d\x71\x48\xb3\xaa\x44\x4b\x8d\x16\x8f\x38\xc6\xc8\xf2\x40\x88\xa4\x9a\xf3\x31\x77\xa3\x44\xad\xab\x2c\xf6\xe0\x8e\x0c\xb0\x37\x1e\xd5\x2b\xde\xad\x13\x2f\x77\xe7\xae\x3e\xe5\xd8\xfb\x17\xaf\xc0\xa0\xbb\x73\x11\xb9\x56\x0b\x67"}, {{0xd0,0x71,0xd8,0xc5,0x57,0x8d,0x02,0x59,0x49,0x93,0x2a,0xa6,0xbf,0x6a,0x80,0xb1,0xcc,0x41,0x2f,0x10,0x6f,0x91,0x57,0x4e,0xe2,0x46,0x54,0xb4,0x45,0xee,0x9a,0x97,},{0x9b,0xcb,0xf7,0xd2,0x21,0x2f,0xb6,0x2c,0xcc,0xf8,0xb6,0xc7,0x68,0x03,0xa5,0xea,0x24,0x40,0x9d,0xa6,0x28,0x7e,0xfb,0xb8,0xb1,0xf0,0xc7,0xb3,0x0e,0xbd,0xd9,0x3e,},{0x0c,0x29,0x7a,0xbe,0x0f,0xd8,0xeb,0xcc,0x6b,0x77,0x19,0x98,0x75,0x5e,0x2c,0x6b,0xe0,0x7c,0x81,0x2b,0x5a,0x80,0x54,0x49,0x57,0x06,0x31,0x70,0xca,0x69,0x43,0x2e,0x72,0xb6,0x0d,0xaa,0xe3,0x22,0x95,0x8a,0x22,0x38,0xcd,0x6a,0x46,0x28,0x94,0xa3,0x87,0xee,0xf6,0x5b,0xf9,0x6f,0x63,0xf5,0x4c,0x08,0x56,0x87,0xa5,0x02,0x75,0x0e,},"\x3e\x8e\xe7\x0e\x51\xe5\x6e\xf5\x7f\x6e\x66\xb3\xa8\x84\xaa\x04\xa7\xb4\xd4\x59\x9f\xb9\xb4\x39\x96\xb3\x93\xa8\x68\x09\x35\x12\xea\x74\x1a\x0c\x6a\x94\xf4\x0c\xe4\x98\x62\xd2\xfd\x1f\x75\x51\xf4\x64\x7a\xbd\x80\x75\xbc\x1b\x74\x2a\xd4\x0e\x29\xa6\x04\x61\x30\x12\x24\xfe\x8f\x76\x92\xb1\x47\x72\x78\x2b\x4e\x89\x6b\x63\xfe\x05\xab\xd5\xff\x53\x14\xf9\xec\x80\x75\xf2\x8d\x90\x8c\xca\xaa\xce\x5e\x90\x5e\xa7\xf5\x7a\x49\x1b\x99\xb3\x59\x1e\xea\x54\xa6\xb7\x81\x91\x67\x74\x9d\x38\xa0\x47\x62\x06\x76\xa1\xa7\xaf\x11\xf4\x85\xa5\x5b\x7c\x87\x9e\x68\x50\x38\x08\x58\xc8\xf4\x5c\x0c\x1c\xcb\xd7\x40\x6e\xd0\x99\xd8\x4a\x74\x71\xb9\x35\x0c\x4d\xdb\x28\x47\x0b\xf5\xbf\x32\x7d\x5b\x3c\x22\xd8\x99\xb4\xc6\x60\x83\x9e\x10\x4a\x06\x22\xae\x85\xc8\x4a\xa9\xfc\x7f\x0a\x2c\x7c\xeb\x6e\x69\x1c\x49\xc0\x64\xb5\x31\x34\x99\x68\x3e\x8e\x03\xb2\x11\x5e\xda\x7d\xda\xd5\x5a\x49\xf9\xfb\xe6\x25\x44\xf9\x14\x51\x1c\xfb\xec\x6b\x84\xdb\xde\x7e\x80\x90\x9b\x45\xfb\x10\x50\x2e\x2c\xaa\xa7\x21\x24\xfd\x94\x56\xa3\x87\x2f\x95\x92\x70\x7e\x9a\x4c\x50\x12\xda\xa9\x72\xea\xf6\x5f\xab\xe5\x53\xde\xbe\x82\x57\x01\xef\xef\x5c\x75\x6b\xb4\x65\xe9\x66\xab\x68\xdd\x52\xf3\xdd\x00\xa4\x5c\xf6\xdc\x3f\x19\xb8\x6b\xb0\xdb\x4a\x86\xe4\x66\x98\x85\xa0\x74\x69\x6a\x67\xd8\xea\x21\x18\xc7\x66\xef\x62\x5f\x8a\x98\x02\x6f\x9f\x4a\x3c\x5c\xcc\xf9\x84\x6f\xdc\x90\xed\x93\xec\x7c\x1f\x3c\x70\x86\x95\x4f\xa2\xf0\xa4\xca\x96\xd4\x01\x84\xaa\x57\x54\x55\x27\xa1\xf9\x65\xc1\x1d\x84\x3c\x90\xc5\xa5\xe0\x8d\x7c\x11\xf2\xd5\x61\x00\x4e\x90\x57\x48\x52\xeb\x50\x46\xaa\x1e\xa7\xb6\x10\x09\xfd\x5d\xd7\xd6\x24\x2a\x8d\xf5\x8a\x9e\x8e\x55\x5c\x7f\x4c\xdc\x13\x0d\x69\x01\xbf\xe6\x79\x7f\xdc\x6c\x39\xbe\xec\xfb\xba\xb6\x62\x5b\x2e\x4f\xb9\xd8\x00\x02\x76\xd4\xa9\x4f\xc6\xfc\x10\x51\xfe\xff\xf5\xad\xeb\x72\x4b\x87\x09\x0d\xb0\xa2\xc6\x97\xd0\x56\x66\x4d\x99\x1f\xad\x80\xdc\x80\xfa\xb7\x00\xb1\xf1\xf2\xee\x27\x73\x4e\xbc\x26\xb2\xa6\x41\xc3\x2a\x0c\x91\x1b\x27\x0a\xc7\x6b\x0d\xa5\xc0\x89\x14\x97\x1c\x91\x12\x46\x3a\x70\x70\x9c\x0d\xda\xc7\x91\x00\x16\xf9\x13\xf6\x21\x00\x86\xd7\x25\x5c\xef\x11\x95\x57\x10\xf6\x51\x88\x9c\x83\x62\x1d\xd8\xa4\xfc\xd5\x36\x63\x02\xd6\xc9\xb5\x6e\xef\xcf\xac\x85\xc1\x4a\x94\x78\xb6\xd7\x18\x07\x54\x28\x80\x07\x60\x51\x5c\xab\x5f\x3d\x44\x55\xe2\xb9\x70\xdf\x9f\xe4\xbe\x83\x83\xd7\x04\x83\xbb\xdd\x75\x60\x71\xf5\x3b\x2f\x9c\x27\x5c\x7c\x85\x12\xd1\x63\x51\x8f\xe5\x55\x83\x75\x14\xc8\x67\x76\xc9\x47\xf2\x9a\x77\x57\x02\x87\x44\x6b\x69\xbe\x40\xc8\xd4\xab\xbd\x65\xef\x25\x07\x24\x9b\x5a\xec\x33\xac\xb7\xb8\xbd\x3f\x35\xbc\x85\x9b\xa4\xe3\x7b\xdb\x49\xcf\x91\x3d\x93\x98\x9c\x44\x38\xd2\xab\xcf\xa3\x88\xcc\x89\xd7\x8a\xc0\x62\x70\x65\x64\x92\xe7\x52\x8f\x29\xbd\xfe\x8c\xbb\x9b\xfa\x9e\x73\xc1\xda\x01\x3f\xc3\xce\x21\x05\x65\x76\x13\xff\x62\xbb\x0c\x3b\xf4\xde\xe3\xb0\xd2\x65\x9c\x72\x6e\x7b\xcd\x9e\x97\xec\xce\x92\x47\xd4\x60\x0d\xfe\xaf\x60\x44\x4e\xd8\x62\xb0\x0b\xa1\x1e\x70\xea\x88\xd4\xf0\xb6\xb5\x39\xfc\x9f\x36\xbb\x2a\x1a\x9e\xd2\xb3"}, {{0xe9,0xd4,0x86,0xc2,0x9a,0xe8,0x11,0xb9,0x42,0xe1,0x0d,0x81,0xf0,0xa6,0x71,0x63,0x17,0xb8,0x42,0xc2,0xc5,0xbf,0xde,0xf5,0x5c,0xc4,0x32,0xb7,0xfc,0xae,0xb8,0x18,},{0x43,0xa5,0x2d,0x15,0xb9,0xf7,0x31,0xd7,0x37,0xb1,0xc4,0xdb,0xc3,0x22,0x27,0xa4,0x80,0x96,0x30,0x91,0xd2,0xc6,0x28,0x6f,0x48,0x2e,0xf1,0xe8,0x36,0x70,0x54,0xe5,},{0x65,0x19,0x1a,0xa8,0x85,0xdd,0xab,0x9f,0x67,0x27,0x18,0x79,0x95,0x2f,0xc6,0xaf,0xfe,0x41,0xca,0x20,0xeb,0x3b,0xcd,0x86,0x67,0x31,0x61,0xb0,0x3b,0x53,0x26,0x94,0xd6,0xdd,0x88,0x90,0x8e,0xb1,0xb1,0xee,0xc0,0x03,0xcf,0xcb,0xe6,0x14,0x6b,0x45,0x38,0xe2,0x1d,0xf5,0x59,0x69,0x91,0x2a,0x0d,0x7d,0x88,0x18,0xad,0x79,0x59,0x0d,},"\x14\xfe\x1e\xd5\xbb\xbd\x76\xcc\x73\xdc\x56\x50\xbd\xa9\x2d\xe8\x63\x26\xe2\x4d\x2f\x1f\x62\x24\xba\x85\x68\x94\x4d\x6f\xe3\x44\x26\x75\xdb\x96\xf1\xd8\x49\x8f\x16\x34\xff\x9b\x6e\x50\xcb\xa9\xdb\x4e\xb0\xb0\xb0\x21\xb2\xbe\xcf\xce\x4b\xef\x33\xc4\xce\x0e\x32\xc8\xa9\x83\x89\xec\xa9\xe0\x59\xa6\x62\xd6\xf0\x37\xc5\x4a\xa4\x0c\x76\xcd\xee\xe8\x56\x50\xf0\x89\xea\x56\xe1\x38\x3a\xb0\xf5\xc3\x6f\x6d\x66\x45\xff\x7e\x87\x66\x73\x01\xf9\x44\xfd\xc2\xed\x35\xb0\xd2\xc3\x5c\xb2\xe4\xb4\x56\x36\xe7\x49\x8e\x92\x7f\x58\x46\xb3\xe1\xed\xfb\xd1\x60\xa4\xae\xf3\x32\x0c\x34\x28\x49\x6b\xda\xaf\x7d\x3e\xd5\x6e\xf0\xb7\x25\x4a\xc5\x97\xbe\x58\x9a\x70\x58\x44\x16\x30\x0c\x1a\xdc\xfb\xa4\xf2\x2c\xfd\x4c\xd6\x61\xe1\xf5\x0f\x15\x5d\x17\x2f\xa5\x74\x8d\x29\x6b\x29\xcd\xd7\xeb\x81\x21\x48\x3f\xf1\xd9\xfe\x95\x3f\x94\x51\xc7\xc7\xa5\x42\x00\x72\x85\xee\x72\x46\xbc\x0f\xde\xa9\x38\x81\x40\x29\xab\xce\x05\x7a\x0e\xcb\x97\x4b\x12\xd3\x60\xea\xb6\xaf\xd3\x07\x97\xd6\x14\x45\xad\x2b\xac\x7e\x52\xbc\xe4\x34\x63\x15\xf7\x8e\xb8\x75\x42\xd5\x95\x28\xb2\xf6\xc5\x6d\x66\x24\x1c\xb4\x42\x03\x3f\x64\x3d\x3d\x2a\x67\xcb\x63\x7d\x8d\xa9\x5d\x4f\xd1\x23\x4b\x03\x1a\x3e\x51\x72\x3a\x1d\x26\xe6\xf5\xca\x07\x98\x73\x21\xad\x11\xa9\x0f\xcc\x1d\x4e\x2b\x0b\x89\x66\x50\xc3\xa7\x51\x8d\x56\x55\x29\xbe\xa8\x06\xa0\x5d\x44\x7e\x08\xd2\xa6\xa3\xdb\xf1\xa3\x69\x15\xb2\x95\x7c\xa5\xb4\x0e\x58\xb9\x7a\xd0\x36\x97\x35\xc4\x28\xbd\x6d\x69\xbd\x21\x00\x44\xb6\x51\x41\x8d\x98\xb0\x59\xd9\x0c\x83\xe4\x60\x11\xf4\x1c\x03\x2c\x56\x55\xa5\xef\x21\xac\x2c\x8c\x2b\xc9\x4b\xe0\x7e\x45\x42\x6a\x7a\xe5\xd4\x7b\x45\xf2\x7c\xf4\x28\x9c\xa4\xdd\xab\xe0\x8a\x12\xb9\x10\x20\x7d\xab\xb3\x4a\x46\xab\x75\xce\x69\xb5\x8e\x7e\x17\x66\x4b\xf3\x35\x9a\x8f\xb6\x8e\xb0\x32\xc9\xea\xa6\xdf\x87\x38\x29\xf0\xe0\x84\x85\x53\xf7\x32\xe1\xc3\xc0\x84\xb3\x2b\x7a\xf7\x50\x74\xe7\xbb\xaa\x4e\xb5\xd7\xea\xd7\xaf\xf9\x75\x80\x10\x9b\x60\xf4\xc7\x92\xf9\xe2\xa6\x51\x37\xb0\xaa\x48\x17\x5b\x81\x15\xd9\x13\x05\xf4\xc7\x7e\x2d\x08\xe7\xe8\xd7\xe7\x78\x5c\x96\x68\x42\xc2\xe3\x50\xfe\xd4\xf9\xe3\x3b\xf6\xe1\x84\xc5\x50\xb4\xb0\x6e\x95\x74\x14\xed\xf5\x2f\xa0\x79\xe8\x19\x73\x45\x84\x61\xfb\xb9\xb7\xd7\xd3\x4b\xef\x15\x03\x57\xf4\x32\xca\xac\x3a\xe9\xf3\xdc\x96\xeb\x5a\x2d\x12\x3e\x09\xed\xa1\x70\x2e\x1d\x10\x70\x17\x7b\xb2\x20\xc4\x23\xc0\x96\xec\x24\x42\x43\x85\xc6\x79\xbe\x02\xef\x84\xd0\x9e\xd1\x02\xf4\x9c\xad\x3b\x1f\xd6\x70\x67\x9a\x39\x71\x4f\xf1\xd6\xe4\x22\x8d\x8d\x7d\x0e\x19\xed\x0e\xba\x13\x2f\x21\x28\xd4\x7b\xaa\x56\x9a\x8e\xcb\x7b\xd4\x8a\x82\x62\x82\xf9\xcf\xcb\xf6\x0d\xde\xce\xaf\x1d\x02\x13\x2c\x8a\xff\xed\x3a\x03\xd2\x34\x0d\xeb\x78\x7c\xd6\x49\xc5\x1c\x6e\xcb\x9f\xf7\x5d\x7a\x7b\x4e\xf9\xb1\x51\x39\xcf\xea\x27\x62\xab\x18\x61\x51\x97\xa6\xb5\x1f\x6e\x75\xdb\xd0\x45\x73\xa2\x44\x80\x94\xd0\xcd\xeb\x0f\xe4\x58\x58\x83\xff\x9b\x68\x82\x4a\x04\xb8\x3e\xc9\x1c\xf8\x4a\xcd\x6a\x74\x46\xcb\x1f\x5e\xe3\x7d\x5d\xf8\x0f\x17\xcb\x2b\xdc\x3f\x31\x22\xa8\xfa\xf7\x6e\xbd\x06\xcf\xe8\x17"}, {{0xe6,0xfa,0x10,0xdb,0xb4,0x78,0xe1,0xe3,0x6b,0x35,0xdf,0xeb,0x02,0x50,0xf6,0x3c,0x08,0x51,0x50,0x70,0xae,0x79,0xb2,0x2f,0x04,0x7e,0x27,0x17,0x08,0xd6,0x4f,0x5c,},{0xe0,0x2e,0x1f,0x2b,0xd8,0x79,0x2e,0xf4,0x83,0x48,0x1c,0x6d,0x11,0xf7,0xc7,0xc9,0xdb,0xde,0xec,0xc9,0x85,0x94,0x32,0xe7,0xf2,0x79,0xe9,0xd1,0x73,0xd3,0x11,0x64,},{0xc0,0x3c,0x47,0x03,0x59,0x12,0x7e,0x9d,0xe3,0xaf,0x0e,0x0e,0xd7,0xd3,0xb1,0x9f,0xae,0xe0,0xec,0x14,0x0b,0x79,0xc2,0x99,0xe2,0xcb,0x6d,0xac,0x0a,0x3e,0x7e,0x31,0x41,0x41,0xcc,0x85,0x4b,0x45,0x96,0xce,0x4c,0x51,0xc7,0xb0,0xde,0xc8,0xa5,0xc8,0xcf,0x09,0x36,0x20,0x53,0x61,0xd5,0x36,0x5f,0x4b,0xcc,0x07,0xc4,0x28,0x7c,0x07,},"\xad\x31\x60\x75\x8d\x8c\x08\xa6\x61\x52\x5c\x95\x28\x0a\x37\x18\x87\x49\x69\x85\x9f\x1c\xc9\x18\xe3\x4f\xec\x00\x8a\xcf\x23\xb8\x89\x6e\x8d\x50\xc3\xc0\x51\x23\x31\xdc\x89\x78\x0f\x8b\x10\xfc\x34\x9c\x67\x5c\x4c\xd8\x2a\x5d\xf8\x58\x6b\x43\xc8\x64\x44\x8f\xac\x00\xb8\x47\xb9\xc9\x80\x54\xab\x79\x3f\x63\xc7\x1a\xa5\xe5\x24\x8e\x22\xd0\x69\xbd\x3f\x85\x2a\x3b\x8c\x6e\x2a\xc8\xef\x86\x1d\x90\xbc\xd9\x84\xbf\xca\x87\x58\x3e\x59\xe9\xa7\x46\x8f\x29\xb8\x08\xdc\x2f\xe5\x30\x2a\x98\x9d\x6f\x2e\xcd\xe7\x58\x5c\xd9\xbe\x4e\x4c\x76\x1c\x4d\x4b\x3e\xea\xf4\x69\x9f\x65\x56\xef\x03\x9a\xf2\xb8\x0f\x94\x07\x60\x5a\xc3\x97\x35\x1d\xd8\x55\x95\x58\x44\x95\xba\xa1\x77\xb0\x8c\x88\xd2\xec\x1f\xc4\xe3\x2d\x1c\x0b\x8d\x7e\x7a\xc5\x83\x9d\xfb\x92\x3f\x09\xb3\x23\xe7\x8e\xce\xb7\xe9\x6c\x06\x04\xb0\x1a\x19\xe4\x9c\x9b\xea\xf4\xf2\x5e\xc4\xa8\x4c\x1a\x08\xf2\x38\x0e\xdd\xc3\xa7\xf0\x12\x18\x49\x59\xcc\xd1\x9e\xcb\xba\xc6\x5e\xac\xa1\x55\xce\xe9\xec\xfe\xc1\x1e\x7f\xee\x05\x8e\x17\x4f\xc4\xed\x7c\x67\x9f\x2c\x15\x63\x1d\x4e\x15\x27\xbc\xdb\x0e\x3b\xb0\x81\x5f\xfd\xff\xc0\xc8\x56\xbe\xf0\xdc\x0f\x5c\x82\x37\xf7\x09\x8e\x26\xbd\xb6\x9e\x87\x82\xd1\xca\x51\x11\xec\x3c\x7e\xdb\x42\x5d\xff\x80\x32\x02\x6c\xba\x3d\x2e\x08\x1b\x71\x31\x0d\xb9\xba\xda\xd1\xad\x02\xf1\xec\xcc\x53\x7d\x87\x4c\xd1\x8c\x6b\xb0\x12\x21\xf7\x1e\xe6\x62\x50\xd9\x4c\xf8\xec\xce\xaa\x96\xd3\xc5\x7e\xea\x2b\x0a\x8e\xc7\x24\x29\xd7\x60\x64\x88\xbd\xf1\x9e\xc3\xbb\x16\xe5\x08\x67\xc7\x93\x7d\xef\x09\xfc\x78\x3f\x20\xa2\xa5\xec\x99\x25\x3d\x6b\x24\x0d\xf4\x67\x7d\xd2\xd5\x27\x7b\x01\xc5\xb8\xe5\xbd\x6c\x7d\xf0\x87\x42\x05\xbc\x8c\x2f\xff\xdb\xa1\x31\x46\x74\xd3\x1c\x9b\x2c\x91\x99\x22\x8e\x19\xe0\x42\x18\x34\xc1\x65\x7d\x06\x98\x28\x69\x16\xc7\xe3\x92\xf0\xab\xd5\x54\x5b\x96\x3a\xc1\xff\xa9\x97\x21\x61\x6c\x23\x79\x6f\x85\xc3\x4a\x5c\x66\x4a\xe8\x1d\x16\xb2\x16\xa5\xb0\xcf\x5b\xc6\xb5\xa9\x08\x29\x72\x85\xd6\x16\x44\x12\x8f\x88\x6f\x38\xaf\x9e\xdd\x25\x19\x3d\x7e\xcc\x77\xa7\x99\x94\x27\x8d\xa0\x71\xf5\x44\x95\x93\x7f\xee\xf5\xa5\x19\x57\x52\x7c\x3e\xec\x7c\xb0\xb4\xe8\xaa\x7a\x4e\x85\x6d\xef\xd5\x7d\xd9\x23\x34\x15\x1b\x98\x6a\xa6\x9c\xa6\x92\x60\xd1\xe2\xd7\xb5\x3c\x05\x67\x7e\xe0\xd2\x16\xb2\x8d\x03\x62\x52\xdd\x30\x06\xde\xbe\x1b\x65\x74\xa2\x5e\x6b\x19\xdf\xb4\x8f\xa6\x43\x16\xaf\x8f\xd6\x8d\x78\x93\xb3\x97\xe7\xdb\x57\x80\xab\x27\xbf\x87\x26\xff\xf6\x05\xd3\xb4\x6d\x80\x05\x95\xb4\x62\x4b\xee\x30\x2c\x96\x43\x26\x03\x4b\x52\x34\xd1\x75\xdf\xdc\xc2\xce\x88\x2e\x65\xb3\xd9\x3a\x04\x38\xf6\x92\xe9\x69\x5d\xe1\xf2\x4c\x70\xa7\x9b\xee\xd2\x54\x15\xec\x5a\xae\xcf\x33\x91\x95\x3b\x2f\xfd\x45\x3a\x8f\x04\x67\x56\x1a\x4a\x47\xee\x14\x4a\x43\xfd\xff\x83\xdf\x2b\xea\x5f\x66\xa7\x22\xb5\x2a\xbe\x86\x13\xf2\x0c\x59\x4a\xf0\x98\x2e\xb3\xf0\x45\x05\xa5\x24\x61\xdd\x03\x4d\xa8\x6c\x36\xca\x16\x21\x77\x05\xc0\x48\x23\x91\x1d\x72\xa2\x47\x69\x51\x76\x33\x56\x28\x86\xf2\x50\xf2\xcf\x78\x8b\x8f\x32\x86\x4a\x94\x74\xf5\x7e\x62\xe5\x7d\xe8\xfd\xaf\x95\x9a\x6b\x72\x28\x74\x40\xa8"}, {{0x05,0x8e,0x36,0x80,0xb8,0xfc,0xc0,0xaa,0x14,0x90,0x08,0x9c,0x11,0x24,0x67,0x7f,0x98,0xd7,0x4b,0x1b,0xfb,0x71,0xee,0x86,0x63,0xf0,0x25,0xf0,0xd9,0x46,0xcd,0x20,},{0xec,0x72,0xce,0x0e,0x82,0xc6,0xa3,0xb2,0x12,0x43,0xd2,0xf0,0x0e,0x9e,0x88,0x3a,0xdb,0xc5,0xcb,0x63,0xb3,0xd9,0x36,0xef,0xa5,0x0c,0x07,0xcb,0x92,0x91,0x48,0xe2,},{0x57,0x34,0xec,0x50,0xa7,0xf8,0x2e,0x48,0x53,0x6b,0xdc,0x43,0x70,0xcf,0xef,0x2e,0x15,0x0a,0x63,0x1d,0xab,0xaf,0x89,0xed,0xcf,0x0f,0xda,0xbe,0x4f,0x58,0x39,0xf4,0xf5,0xfb,0xd8,0xdf,0x8e,0xc4,0xa3,0xac,0xd4,0x0a,0x8b,0xfb,0x96,0x3d,0x18,0x55,0xff,0x92,0x74,0xdb,0xc3,0x31,0x65,0xb5,0xe6,0xd3,0x7a,0x23,0x9d,0xac,0xe9,0x03,},"\xe6\x3d\x14\xf5\xbe\xa7\xa1\xab\xb8\xfe\xe6\x97\x74\x6c\x22\x80\xdf\xd0\x62\x2d\xe7\x35\x72\x26\xcc\x07\x42\x72\x2a\x32\x29\xbe\x12\x6b\x08\x3e\x86\x8a\xea\xf0\x7d\x2f\xc9\x7a\xdc\x33\x42\x70\x96\x74\x19\x3c\xa2\x81\x74\x4e\x85\x0e\xa1\x54\x40\x05\x0a\xec\x93\x0e\x45\xd7\xa8\x7b\x8a\xc8\x01\x5c\x89\x67\xc2\x00\x33\xa5\x32\xd2\x95\x91\xb1\x35\x58\x6c\xe0\xfd\xd2\xe6\x68\xb5\xc8\x64\xb3\xbd\xe7\x0c\x7e\x71\x9a\xd2\x41\x93\x12\x51\x86\x19\x33\xff\xbf\xa9\x64\x83\xff\x82\x85\x67\x48\xc5\x6d\xc2\x6e\x25\x7d\x69\x2e\x51\x34\xd8\x2f\xc7\x19\x1c\x11\x0d\x95\x90\xd3\xfc\x75\x1c\xd6\x36\xb0\xc4\x6f\x44\xf8\x80\x3e\x59\xe2\xf9\x3f\xa0\xcb\xe2\x47\xa1\xa6\x25\xb4\xbc\x2c\x7b\x1f\xdc\xeb\x5a\x2b\x22\x59\x1f\xa6\x13\x7c\x54\x04\xdf\xec\x6a\x69\x63\x9e\x3f\x63\x2b\x59\x76\xab\x9f\xe1\xc6\x3a\xa3\xda\x9d\x52\xb0\x44\x00\x8f\x3a\xe4\x4b\x7c\x36\x4f\x08\x56\x64\x32\x3a\x88\xeb\x45\x83\xe8\x71\x40\xf7\x63\x78\x2b\xff\x88\x19\xcf\x74\x1a\x87\x5d\x50\x6c\x92\x9d\x34\xbb\xd4\x30\x07\xde\x4b\x18\xf6\x87\xa7\x58\x11\x11\x28\xb1\xdb\x86\xfc\x5a\xd2\xfb\x9f\xca\xd1\x2c\x9d\xd2\x8f\xee\x5a\xd1\x0d\xe0\x73\x9f\x8e\xfd\x9b\xff\x66\xf8\x40\xb1\x1b\x3f\x91\xc5\xe0\x7c\x21\x45\x2c\xab\x24\x24\x2b\x6e\x32\x16\x5c\xd1\xe6\x95\x72\xbf\x21\x6e\x86\x04\x53\xda\xd2\xfd\x12\x9c\x33\x37\x58\x58\x0b\xb7\xd0\xf1\x95\x09\x74\x5e\x85\x14\x63\xd1\x27\xa5\xf9\xbe\x21\xfe\x54\x9c\xae\x55\xd5\x6b\x8b\xea\x80\xbf\xaf\xda\xc1\x0a\xcd\x83\x8e\xa8\xaf\x31\xc0\x07\xdc\x32\xbf\xd7\x40\x82\xd9\x11\x0a\x3e\x91\xe6\x1e\x03\x57\x58\x7e\x4e\xd3\x28\x27\xad\xe9\xb6\x91\x0a\x98\x8c\x1d\x3b\x2d\xd2\x2c\x0e\xe7\x6e\xf3\x5f\xe1\x5e\x09\x94\x04\xa4\x5d\x4b\x2a\xca\xb9\x12\x3e\xcc\x45\x55\x0a\x40\xfa\xf8\x33\x6b\x46\xc6\x30\xa9\x08\x03\x58\xff\x8b\x8e\x58\xaf\x0b\xcc\xbd\x35\x01\x0c\x1e\xcc\x12\x81\x66\x55\xa5\xec\xeb\xa9\x5a\xd3\xf5\x03\xa1\x8e\xc5\xbe\xce\x3a\x33\xf4\x69\xdf\xe9\x17\xe1\xc5\x5e\xf1\xd8\x1e\x5a\x75\x56\x1e\x6b\xbd\x99\xc6\x53\xa6\xd0\x95\xb9\xf3\x87\x91\x1e\x40\x33\x2f\x62\x16\xf9\x56\xa3\x5c\xf7\xd9\x9a\x9f\xdd\x0c\x44\xc5\x1e\x90\xa5\x64\xf1\xc3\x6b\xf3\xd4\x0a\x7f\xaf\x4b\xa2\x8b\x1a\x12\x0b\x32\x05\xfb\xac\x1a\x98\x56\x92\x90\xbe\x37\xc5\x8b\xbd\x74\x5c\xe0\xfb\x74\x83\x52\x70\xab\xa2\x25\x2a\xda\xec\x15\x7d\xc4\x24\x61\x22\x1a\x2c\xff\x68\x7b\x9e\x65\xce\xb5\x7c\x2d\x77\x70\x0a\xea\x63\x20\x48\x6c\x5b\x1b\xec\x9c\xc5\x3e\x7e\xf9\xe4\x8f\xcd\x1b\x77\x83\xac\xbe\x75\xa6\xbe\x02\x67\x27\x88\x12\xdb\xf3\xd2\x57\x6c\xf7\xad\x39\x11\x27\x1a\xce\xbe\x0f\x2c\x04\x60\x2a\x08\x0c\x8b\x96\xc1\x20\xfd\x86\xfd\xa2\x82\xaa\x4e\x1c\x13\x1f\xe9\x7c\x90\x7c\x15\x85\x5f\x87\x75\x5f\x51\x1c\x03\x7b\xef\xad\x0f\x56\xb3\x9f\x32\xa2\x13\x3a\x22\xf3\xd5\xa9\xbe\xc3\x44\x3f\x29\xa6\x94\xe9\x7f\xe0\x5e\x10\xfb\x8e\xf9\x99\x13\x02\xb9\xe0\xd8\x4d\x92\x9a\x19\xeb\x03\x47\x1f\x3a\x86\x13\xd3\x93\x68\xe1\x58\x83\xa7\xe4\x97\x0b\x53\xcb\xaf\x29\x29\xd8\xde\x43\x1b\x48\xb4\x35\xd7\x53\x3c\xaa\x2e\x36\xce\xab\x6c\xdd\xb3\x46\xe5\x35\xe5\x15\xc4\xb3\xdb\x76\xde\x07\xd9\x85\x54\x14"}, {{0x51,0xba,0x3a,0x4f,0x3d,0x85,0xd1,0x54,0x8c,0x2f,0x24,0x94,0xa3,0x51,0x1f,0x3b,0x95,0x15,0x66,0x3d,0x7e,0x85,0x37,0x0f,0xb6,0x15,0x02,0x37,0xe9,0xbc,0x98,0x0b,},{0x77,0x49,0xde,0x02,0x10,0xbc,0xe0,0x6d,0x48,0xf5,0x9b,0x95,0xae,0xb1,0x52,0x8f,0xd9,0xb4,0xe5,0x2c,0xdd,0xe2,0x2f,0xb8,0x19,0x3b,0xed,0xd5,0xdf,0x12,0x81,0x7c,},{0x16,0xfb,0x29,0x0c,0x91,0x3b,0x20,0xeb,0x1c,0x3d,0x7b,0x79,0x82,0x49,0xeb,0x84,0x59,0xd4,0xbe,0xe8,0x12,0x5d,0xb2,0xb3,0xf1,0xda,0xab,0x8a,0xf9,0xd9,0xa7,0x00,0xed,0x79,0x8a,0xdd,0xd8,0x02,0xdf,0xcd,0x29,0x7a,0x41,0x25,0x93,0xcd,0xa7,0xbe,0x99,0x79,0xa1,0xf0,0x93,0x50,0xe8,0x6f,0x69,0x8a,0xc3,0x38,0x0e,0x34,0x1d,0x07,},"\xd1\x8d\x0c\xbf\xc1\x6d\x0f\x9b\x67\xf2\x53\x9a\xd6\x20\x7c\xd9\x21\x7a\xd5\xed\x03\x33\xcd\xdb\x10\x41\xe0\xac\x2b\xdd\x92\x02\x76\x62\x96\x52\xb4\x9c\xbc\x98\x02\x59\x3e\xc3\x64\xea\x79\x5a\xbc\xd1\x58\x20\x85\xf5\x5b\xc6\x6c\x48\xfd\x3e\xed\xe6\x18\xd6\x36\x96\x17\x10\x0e\xae\xcc\xc1\x5f\x24\x9d\x6e\xee\x5b\xb2\xc4\x3c\x01\xb0\x62\x3f\xe6\x03\xce\xee\xe4\x9b\x40\xfb\x7c\x53\xfc\x68\x47\x36\x73\xc0\x9b\x1a\xc7\x7e\xa9\xbe\xb7\xe8\x53\x03\x79\xa8\x6d\x69\xec\xd1\xff\x11\x81\x3f\xbb\x88\xf6\x92\xf0\x5e\xf1\x32\x07\x42\xb4\xfe\x7e\x06\xd5\xba\x71\x65\x66\x46\xcd\x75\x00\xde\x19\xbb\x93\xd8\x44\x53\x66\x03\xf4\x0b\xd4\xae\xea\xf0\xc4\xdb\xc0\xac\xfd\x20\x2b\x28\x6b\x64\xaf\xb8\x3d\x4a\x37\x8d\xd4\x5e\xe3\xc1\xdf\x6b\x3e\xf1\x6b\x8b\x1a\xcc\xbc\x04\x06\x32\x50\xec\x47\xb8\x6a\xe5\xa7\x1d\x1d\xab\x38\xb5\xeb\x80\xd6\x63\xfa\xa7\x88\xf8\xb5\x9a\x75\x4c\x0f\x9c\x9f\x6d\x90\x62\x52\xaf\x46\xab\x1f\xff\xed\x27\x6d\x23\x88\xdb\xe7\x0d\x96\xba\x67\x47\xd1\xfe\xd4\xfc\x0b\x55\x29\x3d\x5f\x78\x7b\xda\x0c\x0d\xf4\x6a\x73\xf4\xaa\x7d\x29\xe1\xc9\xcc\x85\xcd\x04\x3e\x3d\xff\xe0\x57\x46\x2c\xa5\xfe\x5c\x64\x70\xe7\x39\x27\x6f\x8b\x53\x4c\x01\x72\xe4\x60\xf3\x40\x48\x7a\x56\x94\x68\xaa\x58\x90\xcc\x14\xf2\x0d\x67\xd7\x9c\x66\x1e\x87\xfe\xba\xc6\x27\x59\x71\xc3\x73\x08\x07\xeb\xf1\x75\xe0\xde\x10\x49\xbe\xe6\x7c\x89\x5e\x57\xb7\x1a\xb8\xa2\xf3\xcf\x36\x41\xfd\x54\x8d\x09\x41\x4f\x5f\xc3\x02\x6a\x0a\x35\xf6\xba\x95\x16\x73\x94\x49\x41\xcb\x23\x6f\x3d\x19\x76\xdc\x69\x07\x7d\x95\x14\x50\xe7\x66\x03\x16\x98\x8f\x6f\x2a\x6f\xbb\xff\x3b\x37\xce\xaa\x02\xfd\x6f\x02\x73\xbd\x80\x31\x85\xa1\x09\x03\x9c\x63\xf2\x51\x9b\x98\x3d\xaf\x65\x54\x25\x3b\xed\x54\x97\xc0\xb0\xbd\xaa\x0b\xd4\xa1\xfa\xc9\x00\x26\xad\xe3\xe4\x0c\x55\x4c\xff\x2c\xcb\x36\x99\x0e\x71\x55\x67\x08\xc5\xc4\x03\x92\x56\xff\xc7\x33\x7e\x5f\xea\x11\xf5\xe9\x0d\x3e\x4d\x93\x35\x91\x79\x11\x6a\x85\xc2\x41\x36\xca\x34\x83\x5c\xd3\x40\x12\xe4\xd7\xdd\xc7\xb7\x21\xc2\x46\xc7\x37\x00\xe2\x76\xdc\x2f\xf9\xf2\x77\x0b\x43\xc8\xe8\x0a\x17\xf0\x1d\x32\x68\x0b\xae\x22\x8e\x64\x23\xa8\x80\xc3\xfb\x99\x6a\xb8\xd2\x21\xbc\x62\x74\xac\x5f\xa7\x70\xd2\x05\xfc\x87\x8f\xba\x9b\xbd\x77\x6a\x3d\x79\xed\x77\x04\x89\x50\xf3\x6d\xc0\xaa\x3c\xcd\x28\xe4\x75\x6a\x99\x19\x04\xae\x05\x1b\x8a\x4b\x7d\xe3\xa1\xf2\xad\x0f\xb4\x5a\x33\xd0\xc6\x82\x25\x84\x1f\x8e\xb6\x5b\x6a\x16\xe9\x5f\x89\x35\x91\xe1\xaa\x73\xa6\x4f\x0d\x2e\xe9\x38\xab\x69\xad\xcc\x8c\x59\x51\x8b\xec\x50\x1c\x39\xf1\x39\x17\x4b\xbb\x00\x69\x9e\x1a\x0f\x0e\x0d\x88\x9a\xae\x54\x3a\x55\xe6\xac\x56\xd5\x20\x4c\x1a\xde\x1f\x27\xd8\x2a\x6a\x95\xe1\x4b\x2d\x69\x09\xdd\xa7\xbf\xaa\x7f\x48\x7f\xb6\x19\x59\x01\x4b\x78\x79\x5c\xb4\x63\x9f\x09\xf0\xd3\x29\xfe\xb3\x5c\xcf\x52\xed\xc2\xdb\x72\x19\x14\xe4\x23\x30\x68\x89\xa4\x83\xfe\xe8\x76\x36\x0e\xe3\x26\x33\x53\x19\x07\x0c\x56\x4f\x3a\x8b\x95\x3f\x52\xf4\x15\x13\xa2\x26\x08\x83\xc3\x8d\xd9\x78\xa2\x48\x60\x4a\x41\xbd\x4b\xfc\x9e\x84\x18\x4d\xc9\xe8\x4d\x25\x89\xf4\xaf\xff\x84\x17\x82\x4c\xe5\xad\xba"}, {{0x7d,0xde,0xc5,0x26,0xa4,0x97,0x1d,0x89,0x12,0xa6,0xbd,0x43,0xc6,0x9f,0x92,0xed,0x86,0x44,0x2b,0x15,0xf4,0x2f,0xba,0xbb,0xf2,0xd1,0x7e,0xff,0x98,0x99,0x31,0x61,},{0x0d,0xfe,0xff,0xb2,0x76,0x23,0x09,0xb4,0x73,0x4e,0x4c,0xe2,0x52,0x3c,0xf1,0x86,0x31,0x49,0xf7,0xe1,0x9a,0x7c,0x14,0x7e,0xc0,0x89,0x9e,0x11,0x0c,0xa9,0xd8,0x7d,},{0x9e,0x60,0x3b,0x01,0x5f,0x42,0x87,0x1b,0x78,0xeb,0x27,0x52,0x3f,0xbb,0x7c,0xe9,0x62,0xfc,0xa3,0x2a,0xe2,0x70,0xe8,0xe1,0x2d,0xca,0xdd,0x25,0xaa,0x85,0x2b,0x89,0x1f,0x6f,0xef,0x77,0xb5,0x9a,0x54,0x6c,0x9a,0x7a,0x7c,0xac,0xb5,0x5e,0x1d,0x32,0xad,0xc8,0x05,0xae,0x5f,0x61,0xa6,0x9e,0x67,0x64,0xc7,0xc0,0x82,0x92,0xeb,0x03,},"\xe8\x77\x4a\x45\xd4\xd8\xf8\x6d\xda\x5c\x08\x80\x2b\xa2\x47\x2e\xf3\xc8\xd3\x6c\x7f\x38\x3a\xc0\x46\x12\xa4\x64\x38\x2e\x9d\x6c\x07\xd8\xd3\x58\x22\xc5\x3f\x43\x88\xf5\x15\x36\x14\xfe\xfa\xf4\x63\x74\x74\x7b\x9d\x4f\xd4\x46\xa8\x64\x76\x9a\x4c\xad\xe8\x43\xc1\xea\xb8\x57\x43\x19\x11\x2f\x01\x79\xd2\xea\x9e\x3c\x19\x5d\xc0\x68\xf0\x69\x74\x62\xb9\xe0\x7c\x87\x94\x87\x0f\x8f\xb8\xff\xc0\x81\xe4\x58\x6a\xfb\xcd\xba\x7a\x4f\x59\x25\xe9\xfd\x9e\xc9\x42\xd8\x43\x47\x33\xc2\xdd\xd5\xe2\x9b\xbd\xfc\x73\x42\xb9\x28\x68\x71\x9b\x54\x40\x88\xa4\x8e\xba\x4c\x82\xf1\x87\xdd\xca\x8f\x47\x46\x25\xa7\x1c\xf6\xb7\xaa\x5f\x08\x1c\x74\xf7\x40\x8f\x53\xb7\x81\x63\x6e\x7e\x9d\x29\xb0\x7f\xdb\x6d\x9c\x35\xe5\xeb\x38\x2d\xb7\xa3\x1a\x8b\xa5\x16\x91\x5d\xf8\xde\xe9\xe1\xad\x3f\x18\x28\x43\x68\x3e\x8d\x1d\xc5\xd8\x66\x9d\xbf\xcf\x09\x54\x1a\x43\xc0\xa0\x46\x13\x38\x1a\x5b\x5e\x4e\x71\xb2\x3c\x5a\xd0\x9b\x8e\xaa\x51\xcb\x93\x8d\x0c\x75\x2c\xc3\xd3\xa1\x0f\x10\xb4\x2b\xe8\xee\x7f\x6b\xda\xc8\x07\x85\x68\x43\x49\x46\xbb\xf5\x6d\xa7\x0e\x7d\x54\x15\x7a\x6e\xfd\x48\x46\xeb\x15\x52\x78\xc9\x4c\x38\x88\x65\x8a\x7a\x2f\x8e\xa3\xba\xc1\x47\xaa\x89\x16\x92\xae\x8b\x23\xf1\xaf\xe7\x1e\xcf\xde\xca\xa6\xc1\x13\xb5\xca\xaa\xa1\x93\x98\xc7\xdf\xe7\x3f\xac\xb4\x15\x5f\xd6\xba\xc1\x8d\x5d\xf2\x12\x9e\x8b\x29\x07\xec\xee\x15\x1b\xdd\x14\x7a\x7c\x3e\x46\xea\x72\x75\x4d\xe3\x2c\xeb\x06\x6d\x9d\xb1\xc2\x6e\x80\xdf\x36\x31\x29\x2b\x16\x17\x4c\xfa\x6f\x1d\x9c\x08\x28\xb8\x49\xc2\x2d\x29\x65\x1a\x73\xe9\x10\xd9\x27\x58\x77\xf4\x64\xce\x93\x26\xc6\xe4\xed\x6b\x07\xdc\xb3\xa3\x53\x63\xc1\xaa\x64\x72\xe0\x2c\x5c\xd8\x55\xe3\x8a\xab\xe9\x65\xac\xe9\xf3\xf5\xa4\xf5\xde\x03\x00\x86\x94\xcb\x90\xaf\xe4\x16\xc9\xd4\x86\x88\xde\x7f\x75\xcf\xe2\x43\xff\x7f\x41\xe0\x59\x31\x09\x34\x90\x3d\xb5\x68\x84\x45\x08\x26\x2c\x89\x9d\xfa\x75\x0c\xd6\xa2\x82\x98\x24\xba\x02\x7a\xea\x1b\x6d\x01\x77\x72\x6a\x34\x3a\xdd\x4e\xcd\xc5\xf7\xe6\xe9\x09\xab\x7d\xe6\x15\xef\x28\x07\xf9\xe7\xd7\x1c\xe2\xf7\x8a\xcf\xf5\x7e\xba\x79\xc3\xf5\xe0\x7c\x8b\x66\x1c\x1e\x30\x27\xf8\x17\x6d\x28\xbf\xef\x76\x7d\xd6\x8d\x4e\x5d\x62\x8f\xec\x0b\xfe\x88\x79\x93\x41\xf3\x06\x12\x87\x34\xfa\xd2\x02\xaa\xfc\x9f\x11\x12\x3f\xb3\xe3\x63\xd1\x0a\xee\x0d\xb5\xe2\x7a\x15\x70\xdf\xae\xe4\x7e\x24\xda\x47\x3b\x07\xfe\xe5\x9a\x6c\x93\xf0\x98\x1d\xbe\x32\x5c\xd8\xcc\x2d\x2e\xd7\xdc\x17\x16\x6b\x26\x7c\x1b\x11\x05\x36\xf2\x63\x6b\xba\x34\x75\x1a\x78\xf7\xf6\x29\x81\x82\x44\x2d\x83\xc1\x23\xbb\xee\x4f\x50\xc5\xb0\xfa\xcf\xf0\x3e\x7c\x55\x6e\xd9\xe6\x4c\xa2\x7c\x4b\xca\x5a\xb0\xde\x0d\x5f\x9c\x2c\xbb\x54\xcc\x2d\x94\x73\xa3\x2d\xf9\x99\x39\x0a\xc2\xff\xee\xd3\xd4\xcb\xa3\x49\x73\xdc\xec\x3f\xba\xba\xfc\x4d\x54\xca\xe4\xe7\xe8\x5d\x4a\x6e\x8a\xfe\x45\xca\xcd\x71\xe0\xf2\xe6\xd0\x4b\x4f\x9d\x3b\xcf\x43\xd3\xfa\x41\xe9\x98\xcc\xbe\xd0\xf1\x50\xd5\xca\x1d\x52\x72\x93\x2d\x93\xec\xa1\x04\x95\xc6\x83\x34\xfa\x32\x68\xf3\x1d\xe5\x22\xcb\x12\xa7\x44\x9f\xfb\x5c\xb5\xe8\xf1\x46\x2c\xd9\xb5\x17\x70\xcc\xaf\x58\xb1\xe0\xd8\x2e\xf9\x29"}, {{0x0b,0x65,0x90,0xdd,0x7c,0x2f,0x15,0xf9,0x4a,0x56,0xe2,0x40,0x16,0x93,0x63,0xc2,0x67,0x32,0x30,0x2b,0x9d,0x44,0x0b,0x53,0x27,0x23,0x00,0x2e,0x15,0x5d,0x02,0xd9,},{0xcd,0x18,0xe0,0x32,0x57,0x7c,0x55,0x76,0xf2,0x23,0xf3,0xe3,0xd8,0xa1,0xfa,0x8e,0x9a,0x87,0x0f,0xef,0x09,0xe9,0x40,0x9f,0xaf,0x40,0xd7,0x14,0x3e,0x52,0xfc,0x44,},{0x64,0x2d,0x81,0xac,0xf3,0x8c,0xf0,0x99,0xa8,0x33,0xa7,0x4f,0x2d,0x80,0xb8,0x54,0x48,0xec,0x2b,0x1a,0x5d,0xdc,0x64,0x47,0x0b,0x21,0x3d,0x54,0xb7,0xbe,0x61,0x33,0x68,0x9a,0x71,0x94,0xf5,0xd8,0x97,0x92,0xe1,0x6e,0x5d,0xf7,0x55,0xa4,0xfd,0x9e,0xf4,0x68,0x9e,0xa9,0x52,0x92,0x6e,0x0e,0x4e,0xcb,0x3b,0xd4,0x81,0xfd,0x91,0x02,},"\x71\xfe\x0f\xd5\x5d\x5e\xd1\x20\x6f\x28\xee\x16\xe4\x19\xfa\xb6\xfa\x66\xa2\x51\xfa\x6b\x06\x01\xda\x26\x1e\x42\x9f\x55\xb8\xd5\xae\x3f\x3c\x52\xa1\x7f\xe1\xec\x73\x4b\x81\x0a\xb6\x3a\xad\xe4\x44\x70\x39\xca\x0a\xe4\x68\x7c\x24\x35\xf5\x61\xe4\x6c\x5b\x30\x97\x17\xab\x31\xe0\xf6\x40\x76\xb2\x16\x92\x11\x57\x2b\x74\xe1\x8a\x1f\x45\x25\xa6\x4f\xa7\x17\xa5\xed\xf1\x49\x75\x81\x29\xcb\x04\x03\x5e\x7e\x20\xba\x40\x05\xb7\x48\x09\xde\xc6\x44\x50\x4c\x24\x54\xa7\x7f\x99\xb2\x0c\x53\x74\xf3\xce\xe7\xd8\xc6\xb6\x8b\x24\x3c\xaf\xb3\x00\x98\xdc\xe9\x04\x90\xfd\xc3\xb9\x2f\x54\x94\x8f\x42\x46\x39\xe1\x9f\x8f\x20\x20\xd1\x55\x13\xda\xef\xad\xd9\xe9\xb1\x2a\x84\x76\x1e\x5e\xce\xa0\x88\xad\x56\x1f\x06\x20\x9f\xd4\x42\x3f\xcd\x00\x3f\xbc\xd1\x87\x3e\xa5\x49\x63\xa2\xfa\x07\xc7\x47\x6b\x13\x88\xf9\x01\x5d\x9e\xac\x30\x5b\xea\x5a\x3d\xe1\x94\xf5\x5a\x17\xb4\x2d\x59\x9e\x5c\xe6\x2c\x8b\x7c\x19\xe7\xe7\x09\x61\x37\xb9\xd0\xa6\x5e\x63\xc1\xa3\xb8\x45\x38\xca\x65\x36\x9a\x20\xe8\x82\x2f\xff\x5e\xcb\x57\xfc\x09\xb4\xe6\x84\x5b\x4f\x24\xd4\x88\x69\x71\xac\x1a\xc2\x8c\x77\x58\x0e\xa5\x67\x2a\xd1\x4c\xe4\x44\x17\x19\xc2\x14\x54\x6d\x07\x36\xcb\x7a\xd0\xbd\x9f\xb5\xb2\x6c\x6d\x9c\x53\x6b\xf8\xc8\x57\xae\x42\x57\x7b\x36\x34\x1d\x39\x2b\x43\x32\x3b\xda\xe7\xdf\xaa\x49\x19\x86\x87\x2a\x23\xd8\x27\xc6\xef\x8b\x57\xe7\xd0\x0f\xea\xe3\x83\x4c\x46\x64\x00\xaa\xd1\xd3\x67\x82\x39\x84\xaa\x02\xd2\xef\x49\x29\x14\xae\x11\x27\xe7\x55\x1b\x81\x25\x59\x37\x83\x05\xe4\xfd\x52\xd8\xbc\x7e\x41\x57\xec\xca\x45\x1f\x43\xee\x9f\x54\xc8\x21\x53\xc7\xdb\xfa\xf7\xec\x35\x23\x87\x73\x05\x1b\x4e\x58\x7d\xb1\x36\x95\x7e\xc5\x71\x38\x2b\x90\x59\x0b\x5d\x10\x26\x02\x45\x80\x96\x6b\x72\x52\xd2\xcd\x3f\x4f\x16\x25\xc4\x85\xba\x90\x6b\xff\x17\x59\x92\x18\x89\x78\xf2\xd6\x27\x4f\x3a\x03\x17\x49\xba\x7e\x70\x2f\x56\x54\x7e\xdc\x96\xec\x26\x7b\x84\x89\x28\x80\xd7\x50\xd7\x31\x0e\xbf\x6d\xb2\x41\x25\x3c\xab\xe4\xb2\x5a\x97\x74\x58\xc6\xff\xc9\xe3\x53\xe6\x2a\xdf\x05\xe6\xef\xc0\xfc\x1e\xbe\x89\xf5\x27\x70\x5b\xcc\x26\xb7\x01\x28\x56\x10\xd9\x8a\xa3\xbf\x23\x87\x2b\x69\x96\xd3\xde\x48\x0e\x8d\x09\xd7\x83\xc4\xa0\x8c\xd3\x83\xc9\x01\x26\x35\xaa\x68\x97\x8b\x50\x06\x81\x8b\xbd\xe4\x4f\x29\x87\x47\x9b\xcb\x2b\x71\x1c\x1b\xee\xed\x27\xcf\x09\x97\x0a\x16\x4e\x45\x4f\x71\x08\x22\xee\xf5\x55\xc1\xc7\xbf\x9f\x76\xd5\x25\x4c\xe2\x20\xc9\xaa\xa7\x16\x84\x7a\x24\x94\x88\xf9\xcd\xb4\x4c\x48\xf4\x52\xab\x52\xc4\x0f\x6d\x03\xad\xc8\xbf\x3f\x19\x7b\x25\xe3\xd1\x27\x83\x0e\x74\xfd\x81\xeb\x14\xf7\x54\x20\x5b\x3a\x48\x44\xc5\x96\xb6\xe3\xa9\x93\x6a\xd6\xfd\x9e\x80\xa1\x63\x20\xb3\x81\xc3\xff\xc7\xb6\x9e\xab\x54\x53\x6f\x55\xab\xe2\x2c\x91\xd8\x98\x40\x8e\x88\x0c\x6d\xbf\x0f\xa5\x64\x8d\x51\x77\x72\xca\xa5\x35\x3b\x25\xdb\x60\x50\xd7\x53\xfa\xf1\x98\xec\x1d\x37\x5d\xe0\xfa\x72\x18\x0a\x93\xba\xb0\x3d\xed\x77\x16\xcb\x87\x50\x5b\x68\xac\x6a\x35\xe7\x3d\x0f\xcf\x34\x45\x7e\xff\x82\x17\x89\x52\x14\x2c\x7b\xac\x9d\xfd\x87\x2a\x9a\x82\xf8\x5b\x24\xb8\x8f\xa4\x2d\x4b\xe0\xa0\xca\x0b\x2c\x70\xf4\xc6\x22"}, {{0xc6,0xd9,0xac,0xc5,0x17,0x5f,0xa2,0xb8,0x96,0x5c,0x15,0x8c,0x56,0xba,0x0a,0x5a,0x66,0x6a,0xd2,0xc7,0x40,0xcd,0x5b,0xb6,0x79,0xbb,0xa9,0xb1,0xdc,0x50,0x92,0x84,},{0xf5,0xcf,0xca,0x21,0x1b,0x02,0xfb,0xa7,0x72,0x03,0x47,0x70,0x3b,0xf1,0x63,0x1c,0xb3,0x08,0xfa,0xbc,0xda,0xa6,0x74,0x29,0x52,0x7c,0x5b,0x7b,0x67,0x6d,0xba,0xef,},{0x4d,0x2c,0xe7,0x07,0x09,0x0b,0x0f,0x3f,0x41,0x46,0x2f,0xd7,0x5b,0xd6,0x09,0xa2,0x72,0x4f,0xad,0xfe,0x5c,0xa3,0x90,0xe3,0x13,0xa4,0x2c,0xab,0x42,0x86,0x8e,0xd6,0xe9,0xa8,0x91,0x4d,0xc1,0x39,0x09,0xc0,0xd6,0xf6,0x1e,0x63,0x71,0x29,0x57,0xc7,0x6f,0x3b,0xd8,0xb7,0xf5,0x53,0x49,0x71,0x5a,0x3a,0x31,0x75,0x15,0xc0,0x71,0x08,},"\xf2\x45\x10\x0c\xd2\xd3\x16\x48\xf5\xf3\x51\xbd\xa5\x64\xc9\xdb\x4a\x35\x82\x0c\xc3\x0e\xf6\x51\x33\x7c\x4c\xd8\x88\x07\x05\x69\xd1\x17\xa9\x34\xb9\xc9\x18\xe5\xdf\x8b\x37\x44\xdd\x66\x20\xcc\xbc\x49\xf6\xb3\xe5\x78\x2a\x30\x33\x9d\xbb\x9c\xbe\xd0\x5d\xd2\xb3\xb8\xc5\xbf\x15\x46\xe7\x0a\xf6\x36\xe6\x61\x5c\x48\xb2\xc3\xc2\xd1\x9f\xe3\x54\x20\xdf\x53\x14\xf6\x3c\x48\x12\xb5\x8e\x82\xa2\xa6\x0b\x18\x02\xf3\x8e\x50\x5c\xe7\x48\x01\x7a\xfa\x97\x7d\x3f\x9b\x1b\x6b\xea\x21\x92\xac\xec\x73\xbd\xce\x12\xd6\x5e\x68\x4d\xa4\xd8\xb4\x1f\xa9\xa8\x6f\x11\x08\x6e\xdc\x2d\x52\x96\xf6\x7e\xfc\x53\xac\x84\x07\x0f\xde\x13\x69\x3e\xb2\x31\x8f\x5a\x8c\x3b\x11\x7c\x23\x34\x22\xad\xcd\xd3\x52\xf3\x28\xf0\xec\x69\x9a\x46\x50\xc9\x3f\x9b\x4a\x7d\x79\x5d\x7f\xc2\x62\x2a\x03\xd9\x9b\x64\xf7\xb3\xdc\x31\x94\xf6\xc3\xb1\xb6\x9d\x99\x07\xce\x09\x24\x01\x07\x3f\x47\xa2\x8f\x47\x99\xd2\x29\x09\x2a\x1b\x07\x41\x29\x95\x4b\xe8\x0c\xa4\xa3\xe6\x58\x2e\xe0\x5c\x30\x2c\xac\xb7\x43\x1d\x1c\xa6\xa4\x51\xaa\xed\x72\x78\xab\xc7\xf7\x85\x75\x24\x1c\x2a\x2e\xea\x2e\x84\xcb\xf9\xa3\x34\xdf\x40\x21\x09\xc0\x28\xe3\x45\x47\x3a\x13\xaf\x9b\x00\x8e\x20\xbc\x8c\xf0\xbc\xef\xbb\x7a\xa7\x27\xec\x85\x6e\x99\x25\xb4\xdd\xd9\x9d\xeb\xa8\xf2\x52\x91\x1a\x59\x01\x54\xb5\x79\xa8\xaa\xa3\x1f\x07\xdd\x50\x25\xdf\x5c\xd8\xa0\x9f\x74\x29\x64\xcc\x8c\x36\x5d\x8a\xff\x4e\xb1\xd7\x9f\x6e\x5a\x07\xda\xc5\xf4\xed\xe9\x2b\x4e\x2e\x61\xd3\x4c\xc2\xd4\xf0\xaa\xaa\xb0\x37\xad\x5f\xdb\x95\xde\x6c\xd5\x98\x4e\xba\xf7\xcc\xe7\xf0\x8d\x0c\xa0\xdb\xbe\x48\x3c\xe3\xcb\x35\xcd\x79\x0c\xa0\x42\x70\x65\xa3\x4d\xf7\xf4\xc2\xaf\x86\xef\xe9\xb7\x65\x71\x3a\xff\x25\x7f\x5c\x1d\x54\x70\x95\x27\xad\x18\xac\x33\xab\xcd\xee\xdb\x20\x80\x64\xeb\xae\xa4\x83\x5b\xe4\x94\x2b\x8f\xc6\x66\xad\x1b\x79\xb6\x65\x13\x09\xe5\xea\x1d\xa3\x02\xd7\xfb\xa2\xe9\x9f\x0e\x63\x19\xe8\x2b\x99\x05\xa1\xea\x48\x2b\xa0\x43\xb6\x80\x0b\x33\x0d\xc4\x8b\x33\x13\xf5\x9b\xb2\xf9\xe8\xa7\xf0\x7e\xb1\x80\x0a\x70\x27\x45\xdb\x14\xc6\x29\x9a\x98\x2d\xad\x89\x79\x54\x44\x5b\x7d\x98\xeb\x58\x37\xfd\x70\xbf\x19\x0c\x64\x95\x52\xc8\xe8\x6f\xeb\x7f\xf5\xb3\xed\x8e\x0a\x06\x70\x4d\x45\x53\xa3\xc2\xdd\x74\xf1\x8e\xa8\x23\x3a\xe0\xa5\x0d\x91\x4f\xe0\x8f\xbc\xd3\xa1\x43\x5f\xed\x56\xa9\xf3\xa7\xef\xfa\x14\x0f\xb5\x52\xdd\xd2\x1d\xff\xff\x7f\xa4\x73\x32\xdd\xfc\x1e\x53\x17\xf4\x17\x7d\x5e\x2f\x11\xa0\x6e\xc8\x4c\xcf\xb8\x9b\x65\x4e\xa8\x1b\xd4\x2d\x7e\x07\xa3\x87\x30\x1d\x0f\x40\x26\x4a\xbb\xf9\xf9\x10\x7b\x30\xed\xe8\x64\xcc\x76\x90\xc0\x6d\x2e\x24\x7a\x06\x0b\xb2\x24\x4a\xd7\x8e\xd5\xc5\x51\x5a\x1a\x2a\x61\x2d\x61\xe3\xd9\x31\xe2\x8b\xc9\x39\xb4\xd3\x43\x5e\xee\x4f\x73\x31\xb1\xf0\xf8\x53\x75\xd8\x2a\xc9\xa7\x7c\x43\x74\x00\x32\x05\x17\x46\xdc\x92\x69\x45\x8c\x14\x7d\x18\x8d\x84\x40\x19\x54\xa4\x89\xcb\x4f\xbf\x9b\xf8\x4b\xa7\xd8\xf1\x00\x90\x3c\xe6\x78\x31\xb4\x05\x4d\x0f\x58\xcd\x88\x3d\x54\x2c\x49\x33\x10\x3f\xf0\x70\xcd\xfc\x9d\xbb\x0f\xcc\x31\xef\xca\x46\x6e\x77\xa3\x3f\x1a\x81\x3d\xa6\xdc\x0c\x7c\x31\x58\x5e\x8f\x4f\xef\x1e\xbf\x42\xfb\xd1"}, {{0x7d,0xfa,0xe4,0x16,0x41,0x9d,0x7b,0x0d,0x4f,0xc1,0xf8,0x23,0x84,0x0c,0x3e,0x4b,0xd4,0xad,0xcd,0x4d,0xc2,0xdc,0x17,0xb3,0x86,0x37,0xac,0xed,0xac,0xbd,0xbb,0x45,},{0xbc,0x51,0xd7,0x74,0x59,0x31,0x31,0x7e,0x1e,0x34,0x6e,0x2e,0x7c,0x92,0x03,0x91,0x81,0xb6,0xbf,0x38,0xee,0x2f,0x5a,0x44,0xfb,0xe2,0x33,0x9c,0x4f,0x95,0x2a,0xb9,},{0xda,0x34,0xb1,0x98,0x3e,0x8c,0x55,0xe4,0x1f,0xda,0x8e,0xc8,0xab,0xf2,0x3b,0x36,0x7a,0x0d,0xa6,0x06,0xc8,0xcd,0xbb,0x1e,0x8b,0x57,0xe0,0x34,0x3c,0x05,0x57,0xa5,0xf0,0xe8,0x15,0xe7,0xf2,0x2f,0x86,0x05,0xae,0x93,0xb2,0x7d,0x03,0x77,0x6a,0xc1,0xf7,0xde,0x3d,0x79,0x2e,0xa2,0x93,0x3a,0xc2,0x2d,0x2d,0xc2,0x3b,0x32,0x3d,0x0c,},"\xec\x84\x3d\xc4\xdd\xa6\xe9\x02\xe9\xbe\x31\xb7\x0f\x11\x76\x3b\x75\x7a\xb6\xce\x73\x34\xdc\x00\x76\x4b\x2d\x08\x4e\x9d\xaf\x24\x84\x48\x59\x84\xee\x28\xa2\x83\x0f\xcb\x94\xc5\x41\xcb\x46\x94\x40\x03\x67\x31\xde\x80\xff\x56\x0f\x53\x0c\x9d\x9e\x6e\x1f\x7d\x9c\x4c\x5b\xdf\x50\xb0\x4f\x54\x03\xc2\x9f\x76\xd7\xe3\x6e\x00\xbb\xea\x35\xdb\x1c\xc6\x0d\xa8\xd7\x76\x52\x62\x66\xc3\x32\x4c\xe7\xef\xec\x64\x50\x85\x96\x09\x26\x68\x56\xd7\x01\xa4\x7a\x48\xde\xe8\xbf\x37\x40\x95\x65\xc7\xfb\xfa\x99\xa2\x04\xe5\x53\x0c\x97\x1c\x60\x5b\x44\x30\x5d\x5c\x74\x67\x89\x41\x14\x25\x3c\xf4\x3c\xdd\xf1\x8b\x62\x96\xdd\x25\x4a\x4d\x96\xac\x70\x00\x91\x81\x86\xdf\xd4\xbf\x45\x4e\xd3\x09\x74\xc5\x53\xd0\xae\x15\x1a\xd4\xcf\x54\x0c\xec\xaa\xa0\xb5\x94\x8b\x09\x85\xa9\xc7\xb6\xe7\x81\x59\x32\xba\xc1\x17\x32\xfc\x7d\x10\x26\x7f\x6b\xf8\xf1\xe7\xc0\x8d\x65\x0e\x56\x7b\x4e\xdd\x15\xae\x79\x58\x41\x0e\x42\xf1\xf5\x37\xfa\x73\x2f\x72\x7a\x26\x83\x88\x32\x1d\x53\x44\xc4\xe7\x8b\xb9\xa7\x4e\xab\x9d\x6a\xbf\x96\x89\x65\xc6\x66\x93\xd5\xf1\x12\xdd\x4c\x14\xfd\xfd\xd9\x60\x05\xea\xa6\x75\x7f\xa2\xcc\x10\x13\xfe\x43\x27\xab\x09\x99\xd1\x17\xf3\xdb\xf3\x25\xb0\x7c\xd4\x54\xd4\xb1\x41\x99\x1e\xf7\xe2\x3d\xb5\xee\x24\xbe\xda\x35\x88\x4a\xa3\x70\x48\x08\x64\x8a\xa4\x3c\xd6\x25\x62\x59\xf7\xd3\xdb\x5e\x05\x53\x11\xf2\x53\xe8\xb5\x7a\x4c\xda\x5a\xfe\x0b\x0a\xdf\xc3\x64\xe1\x60\xca\x37\xe8\xde\xc6\xb9\x5a\xa6\x15\x2e\x5d\x5d\xa6\xeb\x91\xbe\x0e\x44\xff\xe8\xe4\x95\x33\x26\x7b\x7e\xb7\x95\xf5\xf8\xe0\xb2\xc3\x5b\x29\xdf\xbc\x87\x58\x5f\x22\xbd\x5b\x90\x9d\xfd\x6a\x5e\xdc\x0e\x3a\x9d\x97\xb0\xc4\xf3\xad\xc5\x1e\x96\x99\x37\xc0\x8f\xd6\x5f\x53\x7a\xac\xda\x8f\x11\x27\x5a\xf0\x2c\x33\x54\x54\x26\x30\xf3\x92\x0c\x39\x3f\x5c\x42\xb9\xfc\x63\x3d\xe9\xd9\x4c\x72\xe3\xf2\x00\x02\x34\x9a\xd0\x41\x80\x35\xb3\xf2\x5f\x02\xca\x92\x8e\x5b\x2d\x40\xa7\x7a\x1c\x3e\x56\x22\x1f\x4b\x9d\xb0\xc2\x5b\x09\x6d\x6e\x5d\x0f\xe7\x58\xda\x2c\x69\x05\x3e\x8d\x08\x6d\xef\x4e\xdc\x6e\x34\x53\x78\x3f\xfc\x63\xa4\x96\x01\x22\xd9\x23\x67\x1a\x90\x60\x08\xba\xc1\x05\x61\xae\x62\x19\xd2\xb5\x1d\x53\x67\xbf\x13\xcc\xab\xf5\x93\x1b\x9f\x18\x6e\xb1\x09\xba\xcd\xe4\x0e\x1a\xf2\xb5\x64\x81\xe0\xc6\xdc\x6f\x5c\x54\x73\xf8\x00\x1c\xf3\x71\x91\x9a\xcb\x40\xce\xc5\xb9\x62\xeb\xba\x80\xe3\x2d\x6e\xba\xc4\x80\x6d\x04\xd2\x47\x68\xc2\xad\x2e\x3f\x92\xa8\xcb\xe4\x77\x54\xf9\xbf\x61\x59\x53\x52\x2b\x26\x3d\xc2\x49\x37\xfb\xd9\x32\xc8\xc4\x59\xeb\x8b\x10\x94\x43\xaf\x6c\x19\x5a\x59\xfd\x27\x21\xb0\x12\x56\x28\xf2\xb8\x14\x3c\xf3\xc1\x28\xbc\xec\x13\x92\xef\xd1\x6b\x73\x4c\x10\x71\x6d\x96\xba\x7d\x1f\x41\x39\x17\xcc\xaf\xa5\xbf\x5f\x83\xf5\x24\xfe\x84\x06\xa1\x52\x11\x5e\xa7\x70\xe1\x74\x5e\x82\xe8\xb5\x1d\x75\x2b\x8b\xd7\x85\xdf\x48\xbf\xc1\x20\x41\xbf\x87\x4f\xc7\x3a\xfb\x42\xca\x5d\x69\xc6\x41\x64\x79\xce\xb4\xaa\xa0\x49\x2b\x6f\xf2\x1e\xe1\x2d\xb2\x21\x3a\x42\x86\xfd\x56\x05\xc9\x3a\x7b\xb8\xa3\xb0\x71\xb0\xb2\x5f\xb0\x1d\x77\xab\xbc\x87\x71\x48\x94\x70\xa1\x07\xaa\xda\xe9\xf6\x40\xc2\x4d\xfd\x53\x28\xf6\x0f\x4b\x7d"}, {{0x70,0x94,0x16,0x07,0x49,0x97,0xb9,0xc9,0xaf,0x4d,0x37,0xa0,0x11,0x39,0xe8,0xa3,0xf9,0xf2,0xce,0x5d,0x72,0xa5,0x7d,0x80,0x5e,0x82,0x2a,0x81,0x18,0x6d,0x01,0x7e,},{0xae,0xe1,0x10,0xf1,0xf4,0xd4,0x6e,0xa6,0x06,0x49,0xd7,0x86,0xb1,0x50,0x05,0x2e,0x28,0x7a,0x9d,0xa6,0x01,0x22,0xc4,0x7b,0x09,0x08,0xfa,0x8b,0x2c,0xa2,0x8a,0x80,},{0x8e,0x4b,0x41,0xf0,0x97,0xd8,0x36,0x14,0x18,0x4b,0xa7,0xf5,0x2b,0xa2,0xfd,0x9f,0x05,0x65,0xf8,0xa6,0x37,0x21,0xef,0x55,0xf9,0x31,0x62,0x82,0x6b,0x9f,0x0a,0xc0,0x70,0xc0,0xe2,0x86,0x4b,0x5f,0xfd,0x8e,0xcc,0xc1,0x8e,0xfa,0xd1,0x8b,0x2c,0xe8,0x4b,0xe5,0x7c,0x0b,0x4a,0x41,0xc5,0x2e,0x20,0xef,0x37,0x72,0x23,0x77,0xc6,0x0f,},"\xed\xda\xa3\x69\xc0\xe3\x1a\x1f\xcc\x1d\xa4\x6f\x65\x36\x24\x42\xa0\xcc\x21\xc7\xdc\xdd\x5c\xd9\x0e\x0a\x2e\xe9\xf2\x51\x10\x81\x2b\xa1\x14\x93\x1c\x86\x8a\x70\x86\x07\xac\x16\x08\x4d\x79\x71\x5d\x13\xb3\x38\xc0\x5c\x6a\xef\x73\x43\xe7\xda\xd2\x82\xf9\x6f\xe2\x81\x93\x18\x8f\x0c\xc8\x93\xc7\xdc\xe8\x05\xfd\x3a\x7c\xd2\x68\xb7\x28\x94\x16\x0b\x52\x45\xfe\xd9\xfa\x99\x43\xb7\xc8\x0a\xdb\x3c\x2d\x1a\x35\x3d\x8f\x12\xdf\x25\xa3\x1d\xde\x7f\xa3\x85\xbb\xec\x35\x1d\xa6\x6f\x15\x30\x32\xe1\x77\x56\x27\x3f\x8d\x54\xe9\xa3\xb9\xea\x25\xae\x67\xd1\xe9\xc1\x8c\xc6\x8b\xe6\x01\xe3\xd6\x82\x82\x81\x8c\xe0\xe7\xcf\x88\xa4\xd1\x33\x64\x53\x02\x17\x32\xf0\x8d\x9e\x76\xcd\x23\x63\x79\x29\xb0\x91\x1d\x5f\x86\x14\xf4\x84\x2e\x67\x0c\x14\x28\x60\xaf\xc2\x65\xc5\x01\x72\xb1\x3b\xfd\x35\xad\x8f\xc5\x4b\x28\x65\x7d\xa3\x2b\xac\x15\x3b\xa9\xaf\xfc\x89\x7a\xfb\x3c\x72\x1f\x48\xca\xa4\x62\x40\x58\x57\x10\xb0\xf2\xd2\x4d\x5f\xf4\x96\x5d\x1d\x10\xf1\xa0\x7b\x06\xab\xea\x6a\x08\xe1\xd6\xf1\x50\x0d\xa1\x2c\x43\x4a\x6d\x77\x8c\x94\x10\x67\x10\x80\x00\x47\x5c\xe8\x31\xbc\xfe\x2d\x0a\xfe\x40\xb7\x41\x9d\x07\x05\x9b\xc0\xcd\x8d\xce\x4b\xe9\x58\x7f\xf2\x9a\xd8\xbf\x0b\x26\x8a\xe2\x3c\xe0\xda\x5b\xb5\xbf\x74\xff\x0b\x2b\x31\xb8\x21\x12\xa9\xfd\x5a\xbd\x9b\xfd\x0a\x90\xe6\xf4\x72\x35\x48\xc6\xbb\x2f\x99\xdc\x06\x1b\xa3\x2e\xba\x2d\x53\xe6\xbc\x79\xbf\x44\x1b\x23\xfb\x74\x60\xde\x04\xe8\xe8\xef\xbc\xd4\xd4\xcc\x73\x55\xde\x9e\x3b\x08\x61\xa6\x81\xb9\x83\x83\x9d\x44\x88\xe5\x51\x75\x1f\x23\xe9\xa6\xe2\xe4\xd4\x43\x27\x3b\x9e\x0f\xe6\x4d\x8a\xcd\x1c\x74\x8b\x55\x59\x43\x82\x23\xdd\x21\xb5\x18\x31\x89\xe0\xf3\xc0\xe8\xed\x41\x4c\x03\x56\xba\xb7\x7a\x65\x4d\xe1\xa5\x77\x14\x62\xef\x14\x34\x49\x70\xa4\x91\x51\x1a\x72\x29\x14\xf4\xa8\x9f\x4f\x1a\x82\x7e\x18\xcd\x84\x47\x9c\xc9\x25\x92\xea\xdf\x8d\xe2\xdf\x82\x4b\x97\x6d\xcb\xd2\x84\xa3\xba\x64\xbc\xdb\x0d\xf1\x5e\x8f\x41\xc0\xb2\x47\x15\x86\xb2\x6a\x06\x35\x3d\x90\x50\x28\x23\x5c\x1c\x6e\x5c\x45\x87\x22\x27\x25\xaf\x08\x3e\x11\xe7\x9c\x94\x3a\xa4\x44\xd4\xaa\x41\x21\x8d\x3e\x97\x43\x36\xe3\x72\x81\x3e\x99\xe2\xb0\xc5\xf0\xae\x81\x0f\xfe\xd9\xa7\xa3\xd6\xcb\x74\xc5\x47\x3d\x99\x0a\x59\x11\x32\x9b\x8e\x82\xec\x6b\xf2\xbd\x43\x21\xbb\x48\x73\x70\xf8\x73\x9e\x7a\x2a\x4a\x53\x43\x08\x33\xd4\x5b\x9f\xe3\xde\xb9\x3f\x79\xfc\x6a\x51\xd5\x63\x69\x5e\xcd\xb9\x78\x58\xd2\x13\xda\x58\x44\x34\xb7\xc7\x15\x46\xaa\xe8\xd9\x67\xe1\xc6\xd0\x08\x2b\x10\xd4\xa7\x2d\xe1\x74\x2e\x53\xc4\xb2\xf9\x2e\xb8\xb5\xc8\xc3\x5a\xb6\x53\x5e\xa8\x10\x0b\x37\x92\x4a\x0a\x91\xd2\xa7\x28\xd0\xf5\x64\x24\x37\xaa\x66\xc8\x2a\xb7\x4b\x5d\x07\x45\xec\x08\xf7\x70\x5c\xb8\x1f\xa0\x79\xd8\x9e\xcd\xc9\xaa\x1f\x8d\x7d\x82\xdc\x77\x46\xd3\x46\x15\x34\x3a\x69\x25\xdc\x31\x8f\x35\x2a\x2b\x45\x01\x24\x38\x42\x4f\x90\x98\xfd\xdf\x6e\x61\xfd\x1f\x8f\xb4\x9d\xa4\x0b\x3e\xec\xe8\x9a\x1a\xf1\x99\x6d\xe7\x0c\xd1\x69\x6c\xbf\xd9\xe3\x01\xea\x5f\x44\x37\xc7\x1a\xc2\xa0\x32\x25\x4c\x14\x0a\x90\xe8\x5f\xb8\xff\xc4\x66\x7f\xa1\x39\xc1\xee\x9b\xbf\x12\xee\xd9\x06\xa9\x67\xbc\x09\x21"}, {{0x3d,0xcb,0x7a,0xe7,0xd9,0xf0,0xf1,0x41,0xf1,0xd9,0xf0,0x78,0x83,0x63,0x5b,0x91,0x3e,0xd2,0x9f,0xb6,0x1d,0x0f,0x74,0x1c,0x9a,0xfd,0x05,0xa2,0x7b,0x04,0x5b,0x06,},{0xae,0x62,0xb7,0xee,0x1b,0x8d,0xb5,0x76,0x4d,0xaf,0xdd,0xd9,0x72,0x4a,0xcc,0x10,0x6d,0x6c,0x0a,0x4d,0x1e,0x85,0xd8,0x90,0x6f,0x75,0x84,0xb5,0x58,0xf5,0x77,0xdf,},{0x09,0xa1,0xe6,0xfe,0xdf,0x97,0x1b,0x3e,0xdb,0xfa,0xef,0xbe,0xb8,0x9a,0xa5,0x39,0xca,0x0b,0x02,0xb3,0x7e,0x7a,0xc4,0xea,0x89,0x20,0xd6,0xd4,0x34,0x8e,0xe0,0xcf,0x9a,0x2d,0x5e,0x96,0xfc,0xe5,0x17,0xc6,0x65,0xe7,0xc3,0x83,0x68,0xba,0xf2,0x49,0x79,0x24,0x9a,0x95,0xb7,0x0e,0xa7,0x43,0x6c,0x00,0x78,0x5f,0x16,0xa3,0xae,0x09,},"\x38\x11\x6a\x57\x26\x69\x07\x0d\xd5\x86\x32\x18\xc9\x1a\x77\xa4\xab\x47\x55\x36\x88\x48\x8c\x79\x28\x38\x50\x9e\x9a\xba\x25\x06\x7a\xdb\x7e\xa4\x24\x98\x48\x00\x9d\x91\x4a\xe9\x87\xa6\x03\x23\x48\xc1\xc0\x68\x1c\xf9\x77\xa9\x55\x2d\xd6\xbb\xf4\xe6\xff\x32\xac\xc9\xfa\x61\xcb\xee\x25\xa3\x93\x07\x65\x0f\x8b\xa6\xa7\xce\x42\x1e\xf2\xf7\x1b\xcc\xc0\x95\x81\x38\xf9\x32\x4c\x86\xbf\x2e\x52\x8f\xa3\xe4\xd1\xb1\x9f\x9f\x2c\xa5\x26\x84\x09\xb8\xcc\x19\xc6\x2d\xd9\x79\xb8\x96\x97\xe4\x57\xed\x2d\x98\xbd\x20\x96\xf6\x2d\x3d\x9e\x24\x73\x88\x79\x59\x27\x80\x3e\x79\xab\x71\xd4\xf7\x2f\x56\x8e\x94\x5a\x8a\x16\x21\x59\xd9\xb8\x48\x36\xe4\x58\x56\x44\xd4\x97\x9f\x61\x4a\xad\xa7\x3a\xd4\x13\xa8\x33\x91\xe9\xcf\x88\x0c\x42\xac\x2a\x98\x34\x3b\x6a\x82\xcd\x2b\x61\x58\x14\x56\xf6\xde\x5c\xeb\x24\xfe\x46\xb7\x62\x5d\x52\xab\x2c\x2c\x32\x4a\xc7\x47\x03\xd1\x5e\x15\xf1\xae\xff\x80\x55\xd2\xf7\x39\xf7\x36\x3e\x16\xec\x1d\x78\xbe\x2c\x62\x99\x43\x6c\x8c\x8d\x33\x6b\xd2\x92\x71\xa8\x97\xa6\xec\x93\x2e\xd0\x87\x25\xbe\x21\xb2\x8f\x9a\xa1\x4e\xaf\x4f\x71\x85\x31\x54\xdb\x14\x58\x7c\x93\x0a\xb3\xeb\x02\x27\xad\x7f\xfb\x45\xb3\xba\xa6\xa9\x99\x49\x9c\xc8\xa6\xe4\x5b\x1a\xb4\xd0\xb3\x39\x78\x2b\xcd\x9c\xfb\xcf\x88\xcf\x7e\xae\x89\x1c\xc8\x41\xe9\xc8\x8a\x1f\x6a\x69\x1f\x39\x48\xa6\xbc\x85\xba\x7f\x46\x11\x64\x2e\x84\x22\x3c\x3b\x17\x89\x46\xdd\xbe\xdd\xcf\xcd\xef\x4a\xe4\xc4\xe1\xa8\x14\xb9\xb1\xf0\x2b\x1e\xaa\x82\x4d\xb9\x3f\x44\xb2\x7d\x14\x20\x6b\x34\x04\x65\xa1\xce\xfc\xf5\x35\xc6\x3e\x55\xc4\x28\x72\x24\x26\x27\x33\xd9\x8a\xaa\xa1\x54\xf3\xad\x42\xcd\x85\x46\xa4\x61\xce\x0d\x46\xd8\x86\xd3\x46\x1a\x21\x50\xcb\x45\xdb\xe5\x64\x73\xff\x63\xd3\xdc\x7a\x2b\x95\x7b\x82\x39\x69\xf1\x9b\x59\x68\xe8\xb4\x24\xc8\x79\x74\x19\x26\xd8\x2c\x63\x86\x75\x3b\x0f\xa1\xf0\x80\x28\x4e\x55\x78\x94\x23\x63\xaa\xde\xb2\x1f\x8e\x1e\x89\x09\xfa\x6c\x38\x07\x64\x14\x9b\xc9\x15\xb2\x28\x60\x4e\xfc\x56\xd9\x2e\x4b\xeb\x72\x0e\xdc\x74\xc4\xd7\x8f\x92\x5d\x6c\xfd\xf7\xba\x2f\x14\xb5\x62\x37\x75\x81\x0d\x2d\x07\xbd\x38\x8c\x57\x3e\x36\x52\x3f\x21\x57\x38\xe6\x91\x14\xdc\xf8\xd8\x0f\x17\x0b\xfa\x67\x6e\x31\xfb\x62\x6a\x7d\x44\x9e\xd9\x66\x47\x36\x34\x75\x97\x0c\x8c\x47\x80\x97\x09\xbc\xb5\xe7\x20\x0f\x2a\x22\x7c\x7c\x8e\x7b\x00\x0f\x30\xc0\xbd\xe6\x1d\x67\xbd\x68\x95\x36\x16\x29\xa3\x6c\x8f\xdd\x5a\x56\xb8\x1e\xfb\xac\xf1\x5c\x1b\x35\x30\xa0\x8c\xde\xd5\xb1\xfd\x45\x7f\xbd\x2f\x03\x04\x2f\x56\xf1\xb3\x7e\xd1\x5c\xdb\x91\x2f\xa0\x29\x8c\x27\x67\x25\x08\x7e\xe2\x7d\x3c\xf2\x55\x0f\xe6\xe8\xa0\x33\x0a\xf4\x17\xf4\xf5\xba\xf0\x36\x27\xed\x67\xc5\xf8\x32\x33\x63\xab\xac\x5a\x1f\xe3\x48\x23\x18\x0e\x3e\x0e\x20\x80\xf7\x5b\xfd\x91\xc2\x07\xcf\x6b\xaa\x9a\x22\x9c\xf4\x43\xdd\x44\x2c\x59\x02\xe0\x67\x3f\x32\x52\xb8\x52\x63\x46\x58\x58\x72\xf6\xcd\x36\x60\x25\xa5\x69\x92\xb7\x0e\xde\x39\xbc\x8d\x32\x2f\x9c\x22\xa1\xdc\x59\x9e\x9f\x0d\x52\x4c\xb6\xd2\xea\x5a\xe2\x87\x8e\xf6\xbe\xd4\xb7\x02\x80\x7f\x1e\x1e\x73\xeb\xf2\x90\xeb\x6c\x0e\xeb\x85\xc1\x37\x16\xf6\x26\xaa\x90\xd3\x64\xb4\x90\x48\x37\xce\x05"}, {{0x29,0x73,0x11,0xdd,0xef,0xfe,0xc9,0xd2,0xbe,0x68,0xef,0x7b,0x2a,0x20,0xfe,0x2d,0x27,0x7e,0x1d,0x8e,0x51,0x64,0x8b,0x03,0x57,0x2a,0xda,0x27,0xec,0x1f,0x9f,0x43,},{0x6a,0x6c,0x28,0xe7,0x61,0x64,0x0c,0x40,0x08,0x33,0x3a,0xae,0x5a,0x33,0x66,0x30,0x2e,0x2f,0x46,0x77,0xa9,0x53,0xba,0x48,0x2a,0xb6,0xfb,0x4a,0x1d,0x70,0xb4,0x47,},{0x4b,0xf0,0xb9,0x2c,0x6e,0xe4,0xea,0xce,0x5e,0x8e,0xb1,0x03,0x70,0xff,0x9d,0x9c,0x68,0xa5,0x74,0x9d,0x59,0x89,0x9d,0x04,0x32,0x7a,0xaa,0x38,0xf8,0xf8,0x25,0xe0,0x32,0xe5,0x97,0x42,0xb3,0x7d,0xe2,0x31,0x07,0xa3,0xec,0xdd,0x3f,0x7a,0x0d,0x08,0x12,0x26,0x14,0xb7,0x8f,0xdd,0x37,0x29,0x3c,0x8d,0x05,0xe2,0x8f,0x5f,0x71,0x08,},"\x26\x52\xac\xfc\x3b\xdf\x09\xa5\x99\xec\x67\x86\xbb\xd9\x4f\xe5\x77\xcf\x57\x8e\x02\x63\xcc\x68\xd9\xf5\x7a\x6c\x83\x45\x8f\x80\xac\xd8\xa7\x5e\xf0\x30\x40\xa6\x35\x67\x2b\x96\x8f\xf2\xaf\xdb\x28\x8d\x28\xb9\x99\x6f\x64\x15\xb2\xf3\x17\x5e\x9e\xa3\x7a\xeb\x05\xdf\x81\x81\x2e\x38\xa4\xc9\x76\xeb\x92\x85\x6c\xed\xb9\x1a\x26\x9a\x46\xfc\xa5\xdf\x9b\xd7\x30\xfd\x84\x45\x2b\x4b\xd9\x35\x77\xc6\x1f\x42\xc1\x41\x13\x97\x98\x82\xa8\x6a\x9f\xe6\x32\xe4\x75\x6a\xfd\x89\x81\x6f\xc4\x67\x0a\x31\x05\x03\xfd\xaa\xd2\xdb\x76\x4c\x37\x21\x21\x3c\x3e\x60\xf2\x9c\x26\x68\xd4\xde\x8f\x42\xb0\x87\xf2\x5c\xd5\x6c\x69\xa4\xe4\x8f\x13\x4f\x55\x98\xcf\x14\x5b\xe6\x38\xa5\xc2\x31\x88\x63\x32\x90\x61\x72\x9a\xac\x91\xda\x6a\x19\x1f\xd7\x74\x88\x0c\xf9\xcb\x55\x5e\xec\x15\xb0\x04\x4f\x10\xe5\x43\x3f\xb4\x6a\x9b\x88\x92\xda\x8f\x6d\x24\xf1\x42\x58\x8b\x70\xff\x0b\x49\x20\x0c\x50\x6b\x88\xbe\xd4\x49\xad\x10\xd3\xf9\x2c\x2b\xae\xda\x6b\xbf\x58\x67\x6c\x5b\xbc\x67\xd3\x1f\x64\xfb\x12\xe8\xd5\xe7\x88\x76\xd5\xc8\x49\xfc\x31\x4b\x2c\xf8\x01\x0c\x51\x02\x04\xc8\x63\x3d\x0c\xc3\x18\x56\xec\x6a\x11\x4e\xa8\xa8\x9c\x48\x92\x7b\x07\xa3\x1a\xb8\x42\xc9\xb8\x35\x2d\x93\x67\x34\x51\x41\xa9\x9b\x40\x04\x9d\x5c\x48\xe7\xd2\x7c\xab\x42\x7a\xde\xfd\x1f\x0f\xc1\x13\x6b\x35\x3c\xb0\x1c\x3d\xef\x91\xff\xfe\xe8\xad\x91\xe8\x8f\x4b\xb7\xd2\x61\x5c\x0d\xcc\x95\x34\x4c\xd0\x19\x50\x93\x8e\xcb\x14\xb8\x44\x6b\x56\xa0\x6b\xf2\xf2\xf6\x5f\xb8\x73\x5e\x8a\x7b\xc9\x6b\xb4\x6c\xe9\xca\xc7\x1a\x88\xeb\x8f\xda\x5e\x69\xd6\x9e\xb2\x9a\xa4\x2a\x01\x6b\x85\x83\x89\x3e\x9d\x72\x77\xcb\x13\x59\xc5\x68\x7e\xed\xcd\x59\x9d\x8a\x46\xe6\xc1\x49\x63\x63\x7d\xb0\x4a\x92\x9f\x4b\xc7\x93\x04\xac\x2d\xae\x73\x3b\x3a\x83\x9e\xb7\x4f\xbe\x3d\xe5\x04\x2f\xd6\x55\xea\xec\xb1\x5f\x39\xb2\xfe\x16\xda\xd8\xa6\xff\x8d\xbc\x05\x4f\xed\x51\x28\x2a\x85\x6e\x9d\xa6\x31\x6f\xac\x6d\xb5\xd5\x6f\x77\xf1\x8d\xa8\x41\x2e\xb3\x77\xe5\xb1\xb8\xf4\xcb\x13\x54\xec\xfe\x8f\xe8\xfd\x54\xe6\x2d\x76\x7a\x80\xde\x04\xcb\x76\x20\x22\x9a\x88\x31\xdb\xc9\xec\xd4\x57\x8f\xfa\x2f\xf0\x6b\x54\x45\xe4\x40\xd6\x9a\xab\xc9\x4c\x47\xbd\x17\xf2\x2b\x69\xf5\x2e\xea\xe5\xcf\xcd\x01\xa5\xca\xfe\x05\x80\x07\x2a\xe9\x16\x6b\x95\x74\x3d\x68\xc3\x56\x4c\x5a\x7e\x46\xf2\x4b\xc4\x8a\x89\x8a\x1a\xb2\xeb\xe6\x3f\x36\x85\x1d\x2a\xac\xfa\x0c\x4f\x32\xd9\x93\x77\x1d\x31\x4e\x72\x5a\x43\xd9\x80\x5d\x13\x71\xcf\x72\x3e\xf1\x61\xd4\x2e\x63\xff\xca\x68\x8d\x7f\x0e\x21\xef\x5b\x3f\x9a\x56\x1a\x62\x10\x70\x2b\x85\xfb\xd1\xf8\xca\x75\x38\x9c\xc7\xa2\x27\x39\xba\xe4\xde\xd9\x37\x57\xf1\x52\x0d\xc3\x88\x44\xa1\xa8\x8b\xe8\xe0\x96\x45\x05\x91\x48\x80\x7b\x93\x37\x70\x87\x8c\xb8\xa9\xad\x92\x11\x31\x71\x31\xe6\x93\x24\x53\x2f\xd0\x27\x9b\x83\x18\x5b\x62\x8f\xc2\xf9\xe2\x15\x00\x38\x46\x93\xfa\x29\xf2\x6b\xd1\xb9\xc3\x01\x60\x13\x67\x66\x5f\x05\xf3\x72\xda\xb4\xe3\x10\x77\x26\xcd\x3f\x63\x9c\xa6\x2b\xf6\x3a\x75\xf7\x7e\xaa\x75\xf7\x13\x61\x57\xad\xa2\x37\x4e\x65\xfb\x4f\xd3\x49\xb4\x5e\x25\x44\x1f\xd2\x1b\x13\xe6\x91\x13\x66\xb9\x7c\xfb\x4d\x6a\xd5\x22\xb8\x50\xad\xf4\x0c"}, {{0x4d,0xb2,0xb5,0x81,0x44,0xa8,0xd2,0xd0,0xec,0x03,0xbb,0x9b,0xc2,0x9b,0x4c,0xa8,0x93,0x85,0x4c,0x80,0xb6,0x4a,0xfa,0x4a,0xf7,0xa9,0xc9,0x36,0x93,0x5e,0xcb,0x04,},{0xfc,0x5c,0xd7,0x50,0xe1,0x74,0xed,0x71,0x8b,0xd9,0x38,0xfa,0x8e,0xd9,0x9a,0x1b,0x9d,0x55,0x6b,0xa7,0x67,0x0f,0x2a,0x77,0xda,0xf1,0xc7,0x20,0x11,0x37,0x32,0xa5,},{0x42,0x45,0x17,0xaa,0xdd,0x85,0x3c,0xe3,0x98,0x57,0x59,0xa3,0x27,0xe7,0x76,0x0d,0x91,0x56,0xd3,0xb2,0x73,0x45,0x38,0x3f,0x0e,0x4a,0xd6,0x66,0x1e,0xe4,0xa3,0x72,0x4d,0x18,0xd8,0x20,0xf6,0xc5,0x57,0xf8,0x27,0x97,0xbe,0xb6,0x2d,0x2f,0x08,0x54,0x33,0x74,0x4f,0x89,0xa2,0xd8,0x52,0x93,0x79,0x64,0x81,0x86,0x2e,0xf8,0xa4,0x0f,},"\xc8\xd1\xdb\xc9\x36\x91\x1e\x12\x2c\xee\x18\xf9\x2b\x16\xa3\x9a\x2e\xef\x08\x23\xb2\x27\xf8\x98\xcd\xf5\x84\x2b\x93\xd5\x9f\xc0\x02\xed\xb5\x49\x8a\x20\x87\x2e\x19\x55\x4e\xf7\x39\x99\xeb\x3a\x7b\x3e\x2f\xdd\x90\x70\xe1\xef\xa9\x22\x8e\x9e\x93\xb2\x9a\x86\x8a\xe3\x79\x9e\x4e\x57\x23\x24\x83\x6b\x1a\xd5\xaa\x81\x2b\xf0\x0f\x84\x5b\xc2\x17\xeb\xbc\x3f\xab\xdc\x4e\x1b\x6e\x51\xef\x9e\xfa\xc2\x77\x0a\xa0\xa4\xa1\x1e\xe5\x2a\xb9\x56\xac\x64\x48\xaa\x26\x29\xcb\x61\xdb\xb1\xf1\xed\xb3\xbd\xe9\x9b\x48\x76\xda\x39\x2a\x6e\x0b\x9a\x0c\x31\x84\x9a\x58\x90\xae\xa9\x52\x2f\x56\xd0\x15\xa1\x93\x50\x15\xb9\x1b\xf4\xc6\xa0\x01\x1d\x23\x77\xd6\x71\xc3\xd0\xd7\x53\xc2\x7f\x8c\x76\xe4\x05\xd0\x23\x0f\x1f\x4b\x9b\x88\xfc\xeb\xba\x1e\xaf\x13\x77\x72\x35\xe5\x53\x24\xb7\xd3\xf8\x1e\x68\x61\x09\xd9\x1c\xe6\x89\x53\x0b\x90\xd2\xc5\xc7\x1d\xd1\x87\x72\xb3\x85\xd6\x2c\xcb\xfd\x2e\x08\x9a\x1b\x67\x09\x83\xf6\x0c\x21\xc4\x45\x5c\xb9\xd1\xa0\xdc\xaa\x74\xc8\x74\xe3\x52\x11\xf8\x22\x7f\xf7\xc2\x34\xdf\xf8\x5e\xc0\xb0\x7e\x36\x8c\xfa\x50\xa3\x43\x57\x83\x95\xa1\x4c\x68\xf1\xf8\x9b\xd4\xec\xbc\x17\x2e\xf8\x05\xe5\x83\x1e\xc8\x94\x75\xfc\xc8\xd6\x85\xca\x92\x55\xa7\x7e\x3b\xa3\xc1\x47\x50\x8e\xc9\x2d\x7b\xcc\xe8\x79\xaf\x0a\xbd\xd2\x41\x6b\x67\xb5\xf5\x05\x07\x33\x79\x14\xf3\x90\xbb\xe0\xb4\x50\xb6\xa2\xf1\x15\x93\x72\xc4\xbc\xce\xa3\x82\xce\x3d\x6d\x9f\xb2\x51\x5e\xcf\x79\x30\x05\x9a\x05\x52\xb7\x5f\x97\x88\x62\xbf\x97\xe8\x32\x5a\xf2\x4d\x1b\x8c\xe9\x51\x2b\xfc\x7c\xef\x88\x42\x32\x04\x23\x41\xd8\x2f\x9b\x5d\xad\x2e\x50\x2a\xc6\xac\x79\x5f\x99\xda\xc7\xfc\x60\xe3\xb8\x63\x9d\x0e\x15\x00\xde\xad\x4e\x78\xac\xa1\x09\x95\x7d\x57\x7a\x13\xc1\x92\x5d\x74\x03\xc1\xac\xf9\x89\xa9\xde\x67\x11\xe2\x3c\x67\xbf\x87\x22\xf5\x51\xb7\x74\xca\xda\x93\x1b\x5f\xd9\x73\x43\x4e\x3b\x71\x72\x81\x98\x83\xe7\x0c\x52\x78\x5e\x3b\x49\xd3\x23\xd0\x56\x36\x64\x11\x58\x64\x0d\xcf\x6a\x4c\x20\x0e\xb2\xc1\x3b\x1b\xee\xb2\xdc\x36\x03\x52\x47\x0d\x15\x38\x6e\x59\xe6\xfa\x60\x36\x7e\x5e\x7f\x17\x2b\x21\x15\x9d\x5e\xe7\xca\xb0\xd7\xf5\x86\x82\x39\x85\x8e\x2a\x93\x55\x04\x80\xfe\x8f\xb4\xdc\xaf\x4f\x22\x4c\x4b\x2a\xd5\x44\x87\x91\x63\x2d\xf3\x0e\x8e\x5f\xb9\x98\xb3\x5e\xa9\xae\xc8\xc9\x34\xa4\x40\x3a\xef\x82\x18\x7c\xa1\xab\xf8\x2a\x34\x4d\x00\xff\xb9\x93\xd9\xff\x34\x61\xd6\xfe\xcd\xaf\x5d\x3b\x48\x1e\x0d\x31\x15\x3d\xbf\x6a\xed\x28\x8c\x8a\xdd\x06\x4e\x83\x31\x55\x01\x41\xbd\x5f\x7a\x7e\x04\x7b\x86\x07\xd8\x46\xa6\xbf\xb7\x2d\x68\x34\x46\xa4\x45\x11\x46\x06\x25\x0d\x8d\x2d\x3a\x8b\x95\x08\xbb\x07\xd4\x62\x3c\xdf\x17\x88\xb5\x49\x9e\x9c\xb9\xa1\x37\x98\x49\xbf\xa1\x9c\x9a\x9f\x4c\xd3\xd9\x25\x3a\xdf\xfd\xa2\x5f\x47\xc8\x11\xbe\x83\x3b\x02\xf3\x32\x7e\xbb\xa8\x37\x30\x19\x5d\x61\x4b\xae\x6f\xe4\xe7\xa3\x83\x08\x15\xd2\xaf\x40\x0d\x20\xa9\x41\x7a\x09\x5e\x7e\x8e\xea\x10\x44\x91\x7c\xbe\x51\x2c\x40\x18\xd6\x56\xe2\xdb\x67\xbb\x98\x9c\x00\xe1\xe5\x07\x62\x3e\x82\x78\xd7\x29\x92\x5b\x84\xfb\x5c\x18\x6a\x7b\xac\x18\x9e\x6d\x6a\xb1\x4f\xd7\xb6\x2f\xdc\x63\x2b\xeb\xb5\xf7\x7c\xb5\xcc\x2f\x70\x7d\xf4\x05\x30\x99"}, {{0xc8,0x20,0x41,0x3c,0x24,0x56,0x74,0x71,0x04,0x66,0x2e,0xf4,0xdf,0xf3,0xac,0x23,0x3a,0xc4,0xb9,0x1a,0x76,0xd3,0xc4,0xea,0x75,0x44,0x90,0xbc,0x9b,0x1e,0x29,0x1f,},{0x89,0x93,0xce,0xa2,0xf7,0xf2,0x80,0x6c,0x77,0xb3,0x98,0x1b,0x54,0xbf,0xa9,0xbf,0x17,0x62,0x15,0x1b,0x41,0x8e,0x5e,0x72,0x53,0x71,0xca,0x2c,0x04,0xd2,0x23,0xee,},{0x7e,0xf7,0x0e,0x4a,0x14,0x95,0x4d,0x50,0x9f,0x11,0x7f,0x4b,0xd0,0x1b,0x22,0x0b,0xcc,0x19,0x2d,0x3b,0x5f,0xdf,0xc3,0x48,0x2f,0xbb,0xc3,0xb6,0x9d,0xc0,0x68,0xa7,0xc4,0x76,0x1d,0x1b,0xeb,0xc2,0x31,0x7d,0x6d,0xb7,0x4f,0x90,0x6a,0x15,0x56,0x42,0xb0,0xa3,0xc6,0x59,0x2b,0xdc,0x72,0xe6,0x4e,0xac,0x6f,0x20,0x3f,0xb7,0x4e,0x02,},"\xd2\x99\x2f\x83\x92\x4a\x59\x48\x87\xe6\xef\x13\xf2\xae\x80\x8f\xc8\x63\x9c\x7b\x2c\x99\x4f\xaf\x0f\x79\x5e\x36\x01\x6d\xab\x77\x00\xa0\xee\x53\x01\x70\xf0\xb9\xfe\x98\xab\x75\x88\xce\x03\xbc\x50\xc2\xba\xe6\x5e\x05\x26\x47\xe7\x56\x73\x5b\x35\xd0\xb5\x9c\x96\x4e\x91\x7d\x8c\x83\xe2\xf9\xfe\xcc\x4c\xb0\x55\x64\x28\x7f\x0e\x34\xc9\x49\x40\x05\xe2\x5b\x1a\x8b\x1b\x94\x2b\x54\xd8\x90\x35\xf1\xb1\xc3\xc9\x45\xfc\xc8\x4e\x4a\x39\xef\xa2\xca\x50\x95\x9b\x45\x9a\xf7\x4d\x21\xb6\x24\x2e\x2f\x56\x51\x8f\x70\xe8\x67\x92\x57\xc0\x89\xd2\x6c\x3b\xb7\x92\x68\x7c\x92\x33\x55\xb2\xc1\x8e\xe2\x13\x6d\x40\xcb\xa4\x5a\xcb\x64\x24\x0d\x96\x67\xf3\x9d\xba\x36\x39\xb6\x51\x6d\x4c\x49\x47\x57\x3e\xf4\xce\xd8\x76\xb5\xb2\xea\x34\x89\xea\xea\x53\x9f\x55\x7f\x58\xda\x20\x46\x91\xa7\x6e\x29\xc9\x4b\x8b\x05\x38\x23\x2c\x5f\x7d\x0b\xb0\xfd\xd0\x16\x91\x04\x31\x35\x4b\x3e\x1e\x7c\xe6\x2a\xd4\x36\x91\x7c\xd5\xc3\x15\xa5\xbe\x9b\x97\x1c\x80\xf9\x7b\xc9\xd5\xc1\x56\xff\xd6\x4f\xd4\xe3\x1d\xa5\x60\x83\xe0\x2a\x0c\x8f\xce\x55\x4d\xb6\x86\x74\xcb\x62\x70\x0b\xa9\x51\x75\x2b\x82\x9b\x03\xc5\x42\x32\x74\x12\xee\xc9\xcc\xc6\xa5\x0a\xdf\x47\xbb\xee\x15\x44\x66\x82\xda\x2f\xea\x42\x04\x89\x36\xd7\x63\x06\x0c\xd8\xf5\x39\x65\x26\x16\xdf\xa8\x08\xd6\x23\xff\x77\x7b\x41\x13\x65\x2e\x78\x9e\xc0\x25\xb8\x5e\x04\xef\xe8\xad\x4c\x96\x0b\x19\x0b\xf4\xa5\xa6\x32\x4d\x6f\x57\xc1\xad\x22\x01\x8c\x83\xcd\x7e\x7e\x09\x7f\xc6\x7b\x80\x26\x9c\x13\xb4\xdd\x97\x01\xca\x98\xf9\x87\x69\x58\xba\x76\x89\xc6\xf6\xf1\x0a\x73\x2a\x64\xbe\xf2\x2e\x8b\x98\xbd\x30\x4d\x5d\xbf\x4f\xb1\xf9\xe4\xca\x53\x9a\x5c\x4a\xa6\x19\xc4\x4d\x6f\x58\xf8\x24\xb2\xdb\xae\x77\xb7\xe8\x3b\x56\xdb\x5e\x5a\xa7\xb0\xae\x9c\xe1\xcd\x10\xa6\x9f\x04\xa8\x0f\x13\x79\xeb\x0c\x47\x4e\x47\x82\xdf\x0e\x3b\xa6\xa1\x48\x22\x6b\xd1\xa6\x62\xd9\x5e\xe2\xd6\x7c\x52\x07\x33\x3c\xb1\xd5\x41\x76\xd9\xe5\x06\x45\x94\x79\x02\x9f\x31\xdc\xac\xe2\x69\x93\x8f\x6b\xc5\x62\x78\x78\x41\xdc\xfe\x10\x1f\x4d\xb6\x0b\xd6\x60\x16\xe1\xee\xbb\x6b\xfb\xd9\xcd\x83\x04\x2d\xd1\x37\x9a\x46\x4f\x40\x5a\xaa\xe3\xc1\x18\x07\x84\x8c\xc4\xf9\x5c\x3c\xc6\xfa\x92\xab\x4e\xa5\x30\x58\x34\xeb\x86\xb8\x73\xfa\x30\xed\x1f\x7f\x47\x0b\xf6\x63\xf1\xa7\x0c\xf9\xe6\x0a\xb6\x80\xcd\x1d\xbb\xd0\x3a\xc0\x43\x3b\x3d\x4b\xb4\x82\xf8\xb3\x44\xd4\x6b\x3a\xa9\x34\xb8\x63\x3f\x57\x09\x0b\xea\x5f\xcc\xca\x64\x88\x79\x98\x35\xf1\x33\xf8\xbc\xf6\xe8\x87\xca\x59\xd1\x90\x76\xd6\xca\x19\xd4\xe2\x83\x49\x05\x1e\x01\x6b\x03\xe9\xa9\x20\xf4\x12\x0f\xb5\x23\xd1\x37\x1d\x0e\x38\x46\x73\x19\x54\x3f\x12\x7e\xd9\x14\xb4\x3a\xd0\x62\x22\x6a\x53\x65\x82\xdb\x72\x8c\xcd\x76\xe9\x83\xf1\x17\x66\xa8\x86\x3c\x2f\x42\x4f\x65\x50\x8d\xcb\x26\xfe\x0c\x5a\x80\x0c\x35\x09\x39\x60\xa1\x21\x97\x6e\x30\x51\xe2\xef\x1a\x2a\x99\xc1\x2f\xb7\xbd\x8b\xc0\x37\xa4\x39\x68\x68\x06\xeb\x72\x01\x7a\x07\x1a\x91\xb3\xe3\x9c\x90\xe8\x6b\xc3\x35\xf9\xbb\x54\x3b\x12\x7c\x98\x86\x73\x8c\xb5\x38\x06\xb9\xcb\x3c\x25\x94\xc7\xef\xfc\x2a\x59\x20\xaa\x83\x4b\xe6\x5c\x49\xf4\x79\x64\xe8\x9e\xec\x74\x72\x8d\xe7\x71\xf3\xd6\x75\xde\x9d\x1e"}, {{0x67,0x69,0xcc,0x8e,0x12,0x56,0x17,0xc2,0x2c,0xe5,0x72,0x37,0xa4,0xfc,0xa1,0x50,0x7f,0x94,0x12,0x34,0x66,0x1d,0xf7,0x43,0x28,0xd0,0x4a,0xb6,0x2e,0xf8,0x6c,0x47,},{0x05,0x11,0x2c,0xa6,0x0b,0xaf,0xf7,0x9b,0x49,0x16,0xc1,0xbe,0xe2,0xb9,0x39,0x0c,0x04,0x7a,0xf0,0x8c,0x35,0xeb,0xb3,0xc3,0x81,0xb9,0x74,0x8d,0x1d,0xd4,0xc4,0xfd,},{0xd3,0x9d,0x85,0x3d,0x2c,0x2c,0x5d,0x21,0xb5,0x87,0x1e,0xa5,0xa7,0x5c,0x04,0x10,0x48,0xd9,0x3a,0x47,0xdc,0x59,0x9a,0x5f,0xdd,0xc0,0x85,0x62,0x85,0xce,0x63,0x6f,0xcd,0xfd,0x85,0x64,0x08,0x3d,0x06,0xff,0x28,0x4a,0x52,0x4b,0xc6,0x33,0xcf,0xdf,0xc3,0xb0,0x37,0x16,0x3d,0x67,0x4c,0xb9,0xbb,0x5b,0xa3,0xbc,0x25,0xbe,0xd0,0x0e,},"\x68\x54\x89\x73\x9b\x98\x56\x47\x49\x58\x7f\xf1\xac\x96\xba\x68\x2d\xa3\x0b\x40\xa4\xde\x24\xf5\x4e\xc8\xb0\x83\xdd\xa4\x53\x33\x16\x21\x67\xcb\x3f\x97\xb2\xc7\x31\x4c\xe7\xa3\xf3\xf3\xd3\x19\xcc\xc3\x5b\xb6\xa9\xf0\x07\x7d\x56\x31\x61\xe2\x81\x46\x9c\xf0\x89\x68\xd9\xdc\xf7\xae\x5f\xff\x83\x0a\x5d\xb0\x0b\xc3\x80\x10\xe6\x66\x2d\x49\x4f\x3c\x86\x47\xc4\xf7\x0c\xe2\xd2\x9a\x9d\xa8\x46\x10\xa0\x80\xb5\x75\x9a\x3b\x58\x20\x52\xdf\xde\x66\xe4\xa7\xfa\x5f\xb2\x7f\x06\x50\x73\xfe\x72\x3d\x83\x70\x1d\x5b\xac\x06\xca\x43\xb4\x6d\x1e\x58\x09\x76\x70\xc1\x94\xa1\x3a\xf8\xb5\x73\xa3\x79\x1a\x96\x61\x55\x7c\xbc\x04\x27\x57\xab\x8a\xdd\x0e\xf7\xcf\x4f\x35\x43\x5a\x42\x12\x35\x3f\xcb\x3c\x20\x3c\x73\xdb\xc9\xd2\x68\x52\xd0\xe9\x17\x32\xe3\x62\x1c\xe8\x28\x92\x9c\xdc\xa4\xd9\x19\x20\x48\x75\x19\x22\xed\x22\x5e\xab\x29\x00\xcf\xf9\x71\xa2\xa2\xd3\x42\x46\x36\x48\xbb\xb1\x94\x43\x19\xa8\xef\x6d\x43\xdb\x62\x48\x0f\xbf\x1d\x72\x57\xd2\x26\x94\x53\x97\x93\xf2\x5c\x92\x79\x17\xca\xab\x25\xc1\x19\x3a\x2d\x2b\x23\xbb\x5c\xb8\x56\x9a\xef\xff\x4f\x0c\xa4\x23\xd1\x9b\xbd\x46\xfc\x5e\xf7\x52\x4f\xf8\xcb\x70\x6f\xfc\x47\x07\x65\x09\xc0\x5a\x81\x58\xaf\x77\xf9\x8d\xf6\xa9\xb5\xcb\x32\x44\xab\xa4\xb5\xc5\xf9\xce\x59\x7e\x7d\x29\xba\x07\x01\x3d\xca\xc1\x91\x1b\x6d\xe7\x11\x3c\x73\x6a\x40\x05\xc4\x59\x99\x29\x79\x01\x9a\x45\xb2\xdd\x80\x2a\x07\x66\x09\x09\xeb\x4c\xe2\x05\x40\x81\x70\xd8\x25\x45\xda\xcb\xa8\x68\x6d\xbd\xe9\x27\xdb\xc9\xc7\xd9\x62\x05\x8e\x9a\x95\xea\x66\xb8\xdf\xd3\xea\x43\x53\x57\xa9\x3c\x73\x94\x8c\xd3\x55\xf6\xac\x65\x52\x32\x3f\x17\xc2\xa6\x78\x66\x2b\xc0\xe9\x72\x6a\xd5\xa5\x25\x1d\xd2\x76\x47\x40\x4c\xbf\xe6\x1c\xea\xaf\xdc\xfc\x08\xa4\x75\xff\xd8\x7c\xb7\xf5\x97\xe5\x6a\xc1\x67\x04\x09\xdd\x94\x08\xae\x47\x70\x42\x0c\x6e\x5e\x6d\xd8\xe7\x48\xfe\x03\xa7\x2d\xc1\x28\x03\xd0\x27\x71\xd9\x2f\x47\xe6\xe7\x17\xcc\xc1\x44\xfc\x03\x72\x75\xb6\xf7\x45\xdd\x30\xda\x1a\x45\xd2\x9d\xb6\xd9\x07\x3e\xee\x50\x09\xcf\xd5\x46\x27\x33\x41\x4a\x49\x5f\x34\x9d\xb0\xb6\xdb\xf2\xce\xa9\xcc\xd5\x72\x38\xed\x5e\xe9\x1a\xd8\xbc\x86\x17\x9a\xd5\x69\x5a\x85\xa5\x04\x84\xe6\x17\x75\x1d\xe5\xef\x7a\x7d\x8a\x8d\xb9\x50\xa9\x8a\x6b\x7f\x7d\xee\x9d\x42\xa5\xdf\x69\x2f\xcc\xf5\x55\xc9\x40\xdc\x39\xcf\x2e\xac\x48\xcb\x9d\x15\xcd\xa1\x4d\xd2\xa7\xec\xc0\xb7\x6e\xbe\xc6\x8a\xd4\x17\x7d\x11\x17\xe0\x77\x66\xc4\x85\x90\xd4\x3c\xa7\x66\x28\x68\xeb\x97\x90\xac\x29\xf4\xf2\x39\x2b\x9a\x93\xf8\x97\x59\xe7\xba\x54\x6b\x92\x5b\xd8\x6f\x80\x7d\x8d\x16\xc7\xe6\x37\xdc\xc6\x66\xe9\x05\x90\xbf\x43\x0d\x98\x6a\x67\xf1\xb0\xc7\xc2\xc9\x49\x30\x84\x58\x69\xed\x8d\x8a\xdd\xe1\x8f\xc1\x88\x74\x56\x88\x1b\x4b\x26\xb5\x3d\xcb\xa7\xa5\x26\xf0\xec\xa1\x4e\x8b\xb6\x89\xd6\x6f\x0a\xa1\xb2\x53\xc3\xdc\xfc\xf5\x95\x40\xd5\xd2\xf5\xad\x61\x7f\x52\xc3\x09\x38\xa5\xa9\x2e\xa3\x85\x07\x7d\x75\xaa\x4a\xc0\x7a\xfc\x2b\x35\xfb\x8c\x1d\x5e\x78\xeb\x29\x5f\xc2\x0f\xe3\x7c\x41\xac\x06\x95\x9d\x3a\x17\x97\x84\x3a\xd7\x05\x6c\x1b\x41\x2d\xd0\xb4\x80\xaa\x3b\x39\xbc\xc2\x05\x87\xd9\xa0\xfe\xf9\x2c\x6c\x95\x0e\xbc\x5b\xb8\xe1\x42"}, {{0x1d,0xf7,0xac,0xfb,0x96,0x33,0x04,0xe5,0x1e,0xc4,0x71,0xca,0xf1,0x81,0x10,0x25,0x56,0x78,0x3c,0xb7,0xd9,0x1e,0xad,0x30,0xbd,0xc2,0x53,0x4d,0x07,0x8a,0x14,0x88,},{0x05,0xa3,0x1f,0xfc,0x70,0xe4,0xe3,0x56,0x9f,0xc2,0xbe,0x11,0x0c,0x64,0x3a,0xd5,0xf0,0x87,0x91,0x3c,0x7a,0xa4,0x76,0xdc,0xd8,0xd6,0xe4,0xbc,0x7e,0xc2,0x2d,0x24,},{0xb1,0x81,0x93,0x8d,0xe1,0x01,0x42,0xf3,0x24,0x07,0xb4,0xe7,0x86,0xcd,0xdd,0xe9,0x32,0xeb,0x11,0xdb,0xc0,0xbf,0x0e,0x5a,0xc5,0x09,0xfa,0xe7,0xa5,0xbc,0xc3,0x29,0x61,0xfe,0x34,0x48,0xf9,0x12,0xc8,0x50,0x0f,0xc6,0xdb,0x4e,0x1d,0x32,0x62,0xa8,0x3c,0x9d,0xbe,0x76,0x9b,0xb8,0xc3,0xa7,0x61,0x00,0x0f,0xe3,0x6c,0x0d,0x71,0x04,},"\xb0\xc3\xee\xb5\x7f\x14\x60\x6a\xb7\xab\xea\xb2\xee\x05\x73\x84\x3c\xa2\x2e\x6d\xb2\xfd\xf2\xc9\x06\x4c\xea\x51\x98\xdc\x58\x30\xeb\x15\x8d\xa8\xe2\xda\xa8\x88\x57\xaf\x8b\x8e\xef\xcc\xf0\xc2\x6c\x3e\xc0\xf3\x30\xe9\x2c\xff\x06\xbc\x05\xa2\x9b\xfc\x99\xf9\x40\xb6\x1f\x3c\xfb\x29\x64\xb3\x37\x09\x7a\x65\x50\xa3\xe9\xa3\x28\xc8\x5b\xe6\xf1\x60\xd2\xc0\xa5\x7f\xf6\xf1\xb3\xc5\xff\xcc\xa8\x90\x89\x42\x5a\xb6\xbe\x01\x72\xe1\x75\xba\xf4\x0c\xf1\x2b\x24\xa8\x15\xf7\x0f\x29\xa3\xa4\xcd\x0a\x6a\x13\x2f\x12\x00\x97\x75\x2f\x4b\xc7\x43\xed\xe0\x8f\x5f\x21\xd4\x2f\x28\x2f\x76\x71\xf7\x78\x3e\x27\xb2\xa8\xe2\xc1\x46\x92\xf1\xe0\xe5\xde\x82\x85\x5d\xab\xf9\x8a\x1a\x63\x97\x60\x06\xff\xbf\xe5\xf5\xa5\x79\xb4\x60\xe2\x6d\x06\xbd\x54\x28\x42\xa5\xf9\x26\x1b\xbf\x26\x04\x51\xd2\x32\x1c\x50\x89\x32\x01\x3c\xc6\xe9\x04\xf7\x9b\x5e\x46\x86\xd0\x33\xe1\x2c\x7b\xbd\x7e\xb1\xc9\x23\x79\xc5\xec\x34\x1b\xf6\x45\x7a\x3f\x17\x26\x4a\x7c\x27\x8b\x27\x50\x1e\xca\xed\xc3\x61\xeb\xa8\x44\x44\x23\x42\xb4\xb1\x0f\xa9\x4d\x26\x58\x65\x11\x6a\xcf\x43\xfc\xbe\xc9\x65\xd2\xab\x4b\xbb\xe6\x14\xc4\xf9\x0a\xb6\xb3\xe0\xd5\x38\x3f\xa0\x49\x88\xbf\xbb\x26\x03\x07\xdd\xe2\x2d\x84\x09\x8b\x63\x31\xd1\x55\x14\x1a\x92\x7b\xb7\x8d\x66\x4b\x34\x1d\x2f\x2a\x93\xe2\x91\xcf\x79\xba\xae\xcd\x26\x12\xf6\xb1\x04\xf3\xfc\x81\x37\x3a\x7c\x6a\x04\x5b\x59\x24\xbf\x95\x0c\xd5\x42\xf7\xb7\xac\xce\xf3\xaa\x7d\x72\x5d\xe0\x53\x05\x5d\x95\x1b\xd7\x68\x11\x13\x92\x59\x66\x38\xae\x09\x71\x70\xf4\x49\x2b\xa5\x0a\x46\x8f\x8e\x34\x77\x63\xdb\x61\x2d\x3c\x7d\xe7\xe5\x64\x59\xb2\x6e\xe0\x29\xc6\x30\x82\x7a\x35\x3a\xee\x73\xde\x68\xd6\xd7\x2b\x27\xaf\xd7\x5d\x22\x16\x45\x27\x94\x5c\x72\x26\x84\x4f\xab\x15\xb8\xdc\xc9\x14\x34\x9e\x31\x41\xc6\x13\x16\xad\xc8\x94\xde\xdc\xdc\x84\x39\x84\xd9\xc7\xfe\xae\x39\xdb\x33\x2d\xc3\x93\xe9\xe8\x96\x1b\xbd\xe0\x71\xc3\xd2\x85\x8b\x3c\xb5\xf3\x3b\x16\x4a\x15\x61\x6c\x6f\xe1\xbb\xc2\x4a\x35\xf2\x13\x36\xd2\x61\xc5\xd8\xcf\x75\x9e\x27\xe2\x2c\x91\x01\xc4\xae\xbd\xe3\xe1\x26\xcf\x64\x6c\xa7\xb2\xe0\x31\x28\x09\x5c\x59\x76\xbf\x3f\x6e\x49\x1a\xf0\xf0\xb6\x40\xc7\x31\x09\x66\xac\x59\xc5\x9f\xbc\x5b\xfe\x05\x48\xf8\x8e\xe6\x1a\xd9\xec\x40\xc1\xc0\x6d\xd2\x9d\x79\x4c\x44\xa3\xea\x22\xc3\xd4\x76\x26\x22\xec\x1e\x8b\x33\x3e\x45\x07\x4d\xb9\x37\x41\xfd\xa1\x93\xc9\x11\xf6\xdb\x58\x79\xe5\x5e\xe3\x6e\xf6\x02\x61\x4a\xe6\x4a\x5c\xde\x9d\x83\x06\xd2\x2f\xbc\x4a\xe9\xc8\x81\xa5\x94\xbd\xe6\x79\x61\x25\xfc\xb6\x28\xb9\xf3\xb6\xfb\x3f\xfd\x51\x1b\x35\x3f\x14\x6a\x27\x27\x2a\xfd\x3e\x5d\x28\xb7\x7f\x58\xa6\x7f\x1f\xd2\x72\x85\xc2\x5e\xcc\x1c\xcf\x64\xe3\x8d\x21\xf3\xb9\xff\x22\xe0\x0e\xe9\x00\x62\x9e\xf1\xa6\x3e\x71\x3f\x25\x88\x83\xdd\x91\x1f\x30\xc0\xd3\x98\xb7\x4b\xd7\x97\x14\x9b\xe5\xe2\x69\x67\x22\xda\x09\xd5\x2d\x4e\xbf\x3c\x67\x39\x29\xd2\x98\xaa\xc3\x4c\xe0\x5b\xea\x08\xea\x9a\x42\x4e\x93\x45\x9c\x2e\xb8\xfc\x22\x22\xc3\x1c\xc1\x3d\x80\x3b\x90\xa8\xa7\x0b\xcd\x0a\x30\xc2\x09\x21\x1d\xc2\xcc\xc8\x5b\x0b\xcd\x45\x82\xc6\x95\xf5\x8d\x80\xbf\x6e\xc4\x71\xa2\x50\x5f\x68\x84\x7a\x75\xf6\xe9\x11\xfd\x87"}, {{0x7e,0xd8,0x7c,0x36,0xdf,0xdb,0xae,0x60,0xc9,0x40,0xa3,0xb3,0x25,0xc1,0x9f,0xde,0xd8,0x14,0xd7,0x6a,0x54,0x48,0x20,0xa3,0x2f,0x28,0x6a,0x5c,0x0a,0xd7,0x1d,0x72,},{0x3c,0x4a,0xc5,0x10,0xb3,0x62,0x22,0xc2,0x52,0xa2,0xdc,0x1a,0xfc,0xb4,0x0f,0xb0,0xeb,0x85,0xbc,0xa9,0x03,0x91,0x19,0x6a,0x58,0x83,0xaa,0x2c,0xc9,0x12,0xb2,0xdf,},{0x57,0x9b,0x38,0x12,0x4b,0xd0,0x59,0x1a,0x59,0x7c,0xc9,0xa3,0x89,0x12,0x7c,0xea,0xf5,0x51,0x56,0x07,0x73,0x63,0xed,0xb8,0x11,0xd0,0xb6,0x55,0x52,0xac,0xfc,0xc6,0x77,0xb2,0x72,0x94,0x21,0x99,0xca,0x25,0xab,0x79,0x0d,0xe6,0xe0,0x84,0x60,0x3a,0xd1,0x05,0x2e,0xc2,0x10,0xcf,0x6f,0xcb,0x14,0x17,0x28,0x90,0x67,0xce,0x3c,0x08,},"\x62\xd3\x13\x91\x2a\xbb\xb0\x06\xb7\x77\x4a\x67\x37\x71\x4a\x34\x99\x70\xce\x04\x21\x11\x2f\x40\x04\x63\xd3\xdb\x0e\x2f\x7f\x12\x8d\x7b\x96\x93\x9f\x43\xc1\xe7\x10\x7b\x51\x18\xa7\x7c\x11\x96\x83\xd8\x66\xb7\xe3\xd7\x2a\xc2\x1f\x6b\x42\x72\xb4\xbe\x92\x89\xb6\x55\x6f\xe3\x1b\x60\x51\xa0\xb4\x2e\xd5\xea\x0c\xf3\x47\x69\x6d\x30\xfb\x8b\xff\x6b\x8b\x57\x27\x19\xde\x19\xa2\x31\xcc\x85\x45\x9a\x99\x0c\x37\x80\x1f\x08\x37\x18\x6c\xef\xbb\x55\x21\x56\x96\x66\x96\x7c\xd4\x24\x3d\x73\x07\xf1\xb0\xb2\x4c\x8e\x2b\x9b\x69\x23\x17\x30\x4f\xbe\x3d\xd0\xa2\x63\x65\x01\x91\xb3\x52\x16\xf5\x29\x16\x57\x3a\xf9\x05\x24\xf9\x1d\xb1\xa9\x24\x71\xd7\x58\xc9\x2d\xc6\xd1\x4d\x1a\x4b\x26\xf4\x1b\x40\x40\x3c\xa8\x7d\xcf\xab\xdc\xa4\x7b\x9f\xc2\x53\x35\x78\xf1\x61\xf3\xb0\x19\x9b\x5c\x69\x8e\x08\x07\x04\xb2\x1c\x9e\x61\x52\x69\xfc\xd0\xd4\x04\x39\xed\x8b\xc3\xbd\xfb\xc9\xaf\xb4\x4c\x11\xfa\x89\x27\x5f\x0e\xaa\xa5\xd0\x8f\xa9\x59\xd6\x37\x8d\x0d\xb8\x99\x10\xd4\x8f\x2d\x86\xa1\xeb\xfc\x5c\xbf\x10\xeb\x2d\x5a\xad\xf5\x1b\xbd\x83\x44\xff\x8b\xbb\x5b\x8a\xfe\x05\xa4\x50\x11\xb5\xe4\xb7\x2e\xb8\x64\xad\x26\x3e\x8a\x03\xa6\xc7\xf9\x8a\xee\xb3\x54\xf7\x30\xa3\x18\xaa\x30\xfb\x56\xd3\x3d\x80\x74\x8c\x98\xeb\xec\x15\x87\x8c\xcf\x3c\xe8\x22\xf6\x9d\x34\x56\x84\x3c\x40\x0d\xc5\x6b\x48\x1a\x95\xe6\x88\xb8\xa4\x73\x5b\xf3\x84\x3f\x58\x33\xdd\xa0\xef\xe0\x9e\x71\x75\xb5\x67\xc6\x61\x38\x7a\xfd\x2e\xbc\x07\x9a\x48\xe3\x49\x67\xec\x97\xb9\x27\xdf\xa5\x81\x88\x8f\x23\x1a\x98\xa7\xed\x33\x10\x3b\xfa\x8e\x8f\x9b\xa6\x51\x35\x27\x90\x0b\x39\xb8\x62\x31\xda\x79\x11\xa2\xfc\x93\x58\x88\xa7\x5f\x11\x29\x58\x4a\xff\xf2\x02\x52\x49\xc4\x18\x8f\x09\x05\x2f\x85\x68\x77\x06\xd0\x5e\x29\x91\x44\xd4\x0d\xe8\x89\x8b\x7c\x8b\x2d\xfe\xf0\xc3\x70\x85\x73\xd8\xb0\x56\x3a\x6b\xd0\xa5\x04\xc0\xb6\x74\x57\x02\xb1\xb5\x71\x21\xc6\xf0\x40\xaf\xf2\x71\x98\x94\x8b\xa6\x9c\x21\x25\x3a\x28\xd3\x9e\xba\x72\x62\x19\xbe\xda\x1f\x82\x09\xfb\x83\xe9\xad\xb0\x7a\xd4\x09\xfb\xd6\xd2\x55\x65\x88\x9a\xb4\x51\x23\xf9\xd9\x45\xec\xd7\xd9\xca\x70\x28\xec\xe0\x92\xe3\x5f\xbb\x7c\xb3\xf3\x28\x12\x6e\xfd\xda\xc5\xd8\x59\xf2\xb2\xc6\xeb\x09\x01\x33\x69\x0e\x20\xc1\x7d\xea\xf3\x88\x26\x85\xf0\x7e\x9e\xd2\x65\x3b\x80\x3b\x9b\x38\x3b\x70\x74\x8a\x1f\xa9\x2c\x86\xf8\x6d\x6c\x47\xea\x87\xb1\x0b\x12\xe3\x63\xba\x50\x80\x60\xf4\x7c\xe2\xa2\xf3\xb6\xa3\xee\xfc\xd4\xda\xcf\xc7\x1c\x41\xf4\x36\xfe\x0c\x2b\xc3\x4d\x4b\xaa\xd4\x95\x74\xe7\x44\x3c\x12\x6a\x58\x9f\x6e\xf7\xbc\xa4\x49\x54\xf0\xbb\x28\xec\x71\x51\xb0\x51\x1c\x23\xc6\xbc\x42\xd5\xe8\x59\x83\xec\x16\xbb\x5f\x50\xa3\x82\xd6\x88\x15\x0a\x49\x60\x9c\xbd\xe5\x69\x8e\x86\xdc\xbf\x02\x12\xc2\x29\x22\x99\xdc\x4d\xcf\x87\x42\x9f\x6c\xd2\xee\xc8\x09\x48\xce\x86\x7e\x25\xc9\x45\x84\xcd\xc6\x4b\x09\x90\x29\xeb\x85\x4e\xdc\x26\xea\x21\x42\x1e\xff\x48\xcf\x4e\x41\xf4\x9e\x2d\x89\x47\x8d\xef\x06\xc4\x2b\xea\x22\x0a\x13\x3e\x50\xf5\xc7\x44\x64\xc7\xe7\x3f\xb1\xc1\xa7\x7c\x50\x7c\xf6\xcd\xa8\x5b\xe4\x02\xb7\xe6\xd6\xd2\x1e\x81\x0d\x6d\x0b\x59\x72\xb9\xfe\x77\xe5\x4e\x74\xae\xe1\xf3\xbb\xfd\x6e\x7d\xe6\xb5\xc0"}, {{0x6a,0x29,0xf8,0x1b,0x8d,0x9a,0xa4,0x8a,0x1b,0x23,0x36,0x4e,0xac,0x8f,0x6a,0x4b,0xdd,0x60,0x7a,0x84,0xcf,0xe8,0xe8,0x8d,0x90,0x17,0x5d,0x80,0x64,0x3a,0x58,0xa8,},{0x4c,0x3b,0xe3,0xa2,0xa8,0x42,0x5f,0xf3,0x1c,0x3a,0x0d,0xb4,0xa5,0x2a,0x0c,0xb1,0x41,0x6c,0xeb,0x48,0xcc,0x3e,0x4c,0x28,0xa4,0xf2,0x28,0x4a,0xb3,0x46,0x07,0x15,},{0xdf,0x09,0xcb,0x9b,0x87,0x8d,0x3d,0xc9,0xe5,0x42,0xdb,0xac,0x28,0x94,0x3e,0x28,0xe4,0x1d,0xce,0xcb,0x92,0xcb,0x7e,0xa4,0x40,0x09,0x88,0x5e,0x46,0x49,0x97,0x43,0x33,0x05,0x61,0xba,0x1d,0x36,0xae,0xdd,0x46,0x76,0x75,0xfd,0xca,0x2b,0xaa,0xa4,0x70,0x1b,0x6f,0xad,0x97,0x9f,0xd8,0x39,0xc4,0x70,0xd1,0x3c,0x82,0xda,0xa9,0x05,},"\x78\x76\xa3\xf4\xeb\x69\xbb\x7e\x54\xe9\xff\x95\x4e\xbd\x3b\x10\xb9\x3a\x4c\x1a\xfe\xae\x92\xfa\x03\xc1\x03\xcb\x63\x13\xa2\x01\xc5\xb3\x3a\x9a\x72\x23\x75\x5c\xb5\x10\xe2\x5e\xc5\x82\xb5\x4e\x81\xb8\x49\x56\xf6\xc5\x3f\x1f\x08\xa6\x3b\xf0\xc4\xa2\x61\xaf\x45\x0e\x52\x3f\xe8\xf6\x1d\xdb\x3c\x0e\xea\xb8\x75\x10\x72\x68\x88\x01\xb2\xa4\x73\xb7\x1a\x2e\x38\x70\x8d\xa6\x8c\x2f\x37\x92\x5c\xb0\x5a\x20\xc4\x28\x3b\x3a\xf9\x7b\x6f\x0b\xa6\x5a\x54\x03\x55\x43\x75\xe2\x15\xd9\xe3\xaa\x1b\x0f\x9f\xdb\x0f\x84\x99\x23\xed\xbd\xaa\x0a\xb4\x81\xc5\x45\xa5\xdf\x8f\x51\xd1\xf6\x8b\x22\x35\x07\xea\x0e\xcc\xfa\xeb\xb5\xfc\xcf\x5e\x3d\xfa\x65\xa4\x4e\xea\x50\x45\x68\xa8\x81\x80\xa0\x60\xbb\x06\xc5\x15\x57\xb8\x1e\x66\x7b\x4b\x04\xe3\x21\x0f\xa4\xc3\x79\x87\x6c\x49\xf3\xe5\x6b\xf2\xbe\x1c\xf5\x19\xa7\x41\x83\x93\xd2\x40\xdc\x8a\x22\x4c\x6c\x38\xac\x2a\xb9\xd8\xfa\xdf\xc5\x36\x20\x30\xc7\x93\x0c\x3c\xe7\x79\x5b\x14\x7c\x26\xc8\xa2\x8c\x65\x34\x29\xd9\x0a\x17\x3a\x86\xa8\xb1\x8a\x00\x9e\x62\xae\xf6\xec\xa9\x5d\x39\xbd\xbe\x45\x64\x77\x78\xa2\x53\x2a\x41\x5a\xe1\x9b\xad\x23\x11\x29\x12\x78\x42\xfe\x1d\x0f\x11\xfa\xb4\xa1\xcf\x0b\x17\xe4\x98\xcd\x59\x52\xc9\x39\xe0\x90\x09\x02\x87\xb1\x44\x89\x5d\xff\x00\xce\xc8\xd6\xae\xda\xf6\x24\x81\xa4\x17\x83\xe0\x21\x08\x2c\xe3\x52\x06\x3e\x62\x81\x1f\xd9\x99\x90\x10\x4d\x8a\x46\xcd\xca\xee\x2b\xab\x45\x8e\x52\x47\xfb\x02\x3e\x92\x33\x30\xa4\x28\xc7\xbc\xfd\x20\xb0\x8f\x52\x0e\x89\x46\xdd\x65\x83\x47\x35\x2a\xe0\xc4\xbe\x73\xc3\xd5\xec\xcd\x11\x14\x9f\x3a\xb7\xb8\x05\x2c\xfd\x95\xc3\x5d\x41\x64\x54\x6f\x5d\x8f\x37\x75\x17\xa7\xf4\x32\xc0\xd5\x56\x3a\x7b\xcc\x7b\xd1\x19\xd3\x42\x1d\xfe\xba\xae\x84\x45\x99\xb2\x9b\x38\x3b\xb8\xd5\xdb\xf1\x40\xd9\xbd\x47\xa0\x78\xb7\xae\x7c\x6a\xa8\x7b\x1e\x29\x23\x6c\x9f\xcf\xd6\x54\xb7\xf8\x09\x79\x4c\xcc\xb2\x61\x58\x8e\x18\xde\xc6\xc4\x04\x6a\x93\x40\x67\xd0\xdf\xa0\x37\x91\xd0\x3d\x83\xb7\x18\xac\x4d\x24\xdc\xe7\x85\xa3\x02\x8d\xe0\xc9\x59\x2d\xba\x7c\x5c\x58\x45\x18\x4a\xfc\x9c\x0d\xfc\xf9\x40\x95\x86\x0f\x0e\xb8\x02\xeb\xea\x20\x17\x8e\x78\xb5\x64\x2e\x5d\xd6\x1c\x33\xb3\x97\x69\x05\x2d\x9d\x85\x4d\xce\x90\x2f\x47\x6e\x21\xf9\x6c\x65\x0b\x46\x3b\x7b\xc3\xd0\xff\x29\x96\xb6\x5c\x57\x83\x1f\x8b\x7c\x0f\xb9\x15\xf4\xdd\x72\x26\xac\x95\x5c\xbc\x7d\xfb\x03\xf9\xb7\x58\xdd\x3e\x0d\xfc\xe2\xe0\xe5\x80\xc9\x1a\x30\xc7\x83\xff\x56\x7b\x17\xf1\x2d\xfd\x5d\x31\x37\x64\x6e\x20\x01\x1c\xdc\xaa\xe1\x11\x02\xdc\x71\x68\x86\xcb\xf1\x23\xc0\x94\x88\xb1\x73\x63\x6a\xbd\x54\xe9\x62\xca\xee\xc9\x7d\x5e\xb9\x40\x68\x2e\x70\x3b\x73\x0f\x61\x56\x2c\xd1\x4b\x9e\x65\x61\xb5\xe9\x3f\x60\xcd\x0e\x1e\x86\xd1\xa1\xb4\x71\x9c\x5b\x50\x82\x42\xbd\x6b\x2d\x9a\x54\x8f\x59\xbb\xb8\x75\x07\x59\x69\xef\x20\x32\xf3\x19\x6b\x8a\xec\xcc\x45\xa4\x4d\x9d\xbd\xaf\x87\x8e\xd1\x6f\x1d\x85\x5e\x89\x18\xed\x65\xa4\x5e\xe5\xc7\xfa\x32\xa1\xec\x69\x32\xa1\x59\xcf\xb5\x0f\xfc\x87\xbe\x06\xdf\xcf\x72\x28\xae\x88\x70\xcc\xd3\x57\xfc\x65\x6e\x33\xfa\x4b\x6b\x8b\x7d\x1a\x72\x15\x55\x3c\xab\xac\xc7\x0a\x39\xc9\x80\xb9\x71\xe5\x1a\x17\xed\x63\x18\xb4\x3b\x29\xbb"}, {{0xef,0x12,0xdf,0x47,0x9d,0x98,0x3a,0xd9,0x6e,0x8b,0xa6,0x53,0x30,0xb3,0x6d,0x49,0xaa,0xdb,0x98,0x31,0x64,0xe1,0xc0,0xb4,0x52,0xb5,0x60,0xde,0xd1,0xd0,0x8d,0x60,},{0xf7,0x61,0xcf,0x28,0x26,0x92,0x7a,0x7c,0xda,0x8c,0xb0,0x4f,0xaa,0x2c,0x59,0xf8,0x42,0x5a,0x8f,0x7d,0x39,0x8f,0x76,0xe8,0x67,0x02,0x1c,0x95,0x1f,0x07,0x38,0x09,},{0x4c,0x80,0x10,0x86,0x6d,0x91,0x15,0xf0,0x52,0x93,0xb9,0x34,0xca,0xc6,0x81,0x04,0xcc,0x2c,0x34,0x37,0x56,0x8c,0xb9,0xd5,0xc5,0x70,0xb1,0xa8,0xbe,0xe7,0x06,0x60,0x30,0x75,0x53,0x70,0x33,0xbd,0x70,0x8a,0x9c,0x9f,0x3d,0x1e,0x25,0x19,0xa9,0x15,0xb1,0xc4,0xae,0x4c,0xcd,0xdf,0xcf,0x0e,0xd0,0xc0,0x49,0xd3,0x42,0xa0,0x2e,0x02,},"\xe5\x8f\x34\xda\xea\x75\x5a\xc4\xe4\x13\x33\xd6\xf0\xed\x01\x35\xf7\xdb\xce\x50\x30\x9b\xb1\x95\x6b\xc7\x1a\xcb\x12\xc7\x70\x67\xa6\x47\xff\xd8\x6a\xa5\x87\x0c\x0c\x00\x07\xe8\xf9\x95\xa2\x2b\x88\xc4\x67\xde\x22\x54\x44\x54\x42\x01\xc5\x57\x49\x5e\x25\x3e\x33\x19\xcc\x5c\xa3\x76\xd3\xe7\xcc\x1e\xb4\x67\x34\x6e\x52\xad\x95\x6a\x6f\xa7\x33\x72\x0b\x17\x11\x7b\x5b\x75\x85\xe4\xd5\x59\x40\x9a\xae\xfa\x95\x58\x0f\x91\xe5\x02\x01\x5f\x49\x7c\x5c\xdc\xb7\xd4\xd5\x61\xf5\x44\xef\xa3\x5c\x1e\x2a\x53\xb7\x2b\xdd\xec\xee\xc2\xd1\x05\x0f\x17\x7d\x48\x0f\x68\x74\x05\x66\x4d\xfd\xde\xc0\x6e\xee\x4b\xd1\x47\xa9\x12\xfd\xbf\x74\xf2\xa9\x5d\x1f\xd1\xe1\x12\x68\x69\x4c\xe4\xd4\xec\x4f\xff\xd6\xdd\xb3\x25\x4d\x36\x0f\x23\x6f\xab\x4d\x1a\x17\xf8\xd0\xd1\xa5\x11\xf9\x44\x69\x2f\x23\x96\x39\xae\x03\xd6\x4f\xac\xec\x65\x38\x42\x7a\xb7\x1f\x71\x27\xf4\xa2\x76\xf9\xbc\x45\xbb\xa6\x11\xdf\xcc\xe6\x44\x6c\xc1\x39\x68\x97\x6c\x8b\xb6\xd6\xfe\x21\x06\xd7\x05\x92\x2d\xca\xc9\x56\x96\x6a\x76\xd4\x8f\x2a\xff\x4b\x86\x51\x4e\x39\xa6\x7e\x16\x43\xfc\xc3\x21\x85\x80\x24\xe6\x93\x18\x98\x33\xc8\xad\x59\xb4\xb6\x25\x29\x8e\xba\xfe\x64\x62\x6b\x48\x0f\x32\x6f\x13\x40\x72\x3c\xb3\xd3\x83\xf4\xfc\xcb\xfc\x23\x7a\x3f\x4c\x4f\x7e\xcf\x0b\xa4\x36\xb3\x2c\x2f\xe3\x51\x79\xda\x93\x11\x1b\x48\xcc\x9e\xa2\x42\x02\xbd\xc1\xb2\xfb\x60\xa4\x31\x9d\xfd\x98\x64\x47\x0f\x73\xf5\x41\x37\x20\x6e\x0b\xf0\x07\xf5\xae\x88\xa8\x87\x47\x00\x8a\x60\xf4\x78\x9a\xd1\x67\x72\x4f\x17\x9c\x02\xb6\x3a\xed\x00\x25\x73\xd2\x8a\x6b\xcf\x88\xe0\x7c\xe8\xda\xea\x5d\x5f\x1a\xcf\x48\x7b\x4c\x5c\x16\xc2\xbf\xe1\x12\x31\xea\x5e\xa7\x63\xe8\xf3\x32\xcc\x73\xda\x1b\x2f\x8c\x19\x8e\xa8\x17\x3f\xd3\x3d\x4b\x2a\xe6\x9e\x5d\x4d\x1a\xad\xdd\xf2\xfd\x82\x1b\x85\xbe\x45\x15\x19\x62\xd1\xf9\x9d\xf8\x13\x08\x61\x88\x52\xad\x7c\xf4\x1d\x72\xda\x08\xa1\xb3\x9d\xf7\xd8\xb9\x94\xb4\xdd\xff\x37\xf9\xdf\xe8\xf3\x8c\xe3\x0e\x91\x06\x1d\x95\xd5\x8f\x7a\xe8\x26\xb0\x23\x85\x27\x2e\xc0\x9f\x01\xa7\xb3\xe4\xb3\x91\xd0\x9b\xce\xd6\x65\xda\xd6\x95\x05\xb4\x19\xda\x84\x81\xbc\x37\x92\xbf\x8b\x8e\x7a\xd6\x4b\x63\xf2\x45\x66\x6c\x8c\x32\xfd\x5c\x1b\x1b\x48\xc9\x95\x1e\x1c\x21\xa1\xeb\x5f\x50\x7c\xff\x13\x7c\xfb\x86\x2c\x2c\xc9\x87\x66\xe8\x78\xc9\x30\xa0\x83\x82\x8c\x9d\x8d\xb1\x8b\xf1\x67\x16\x68\x5f\x39\xd6\x57\x2a\x8c\xa8\xb2\xa5\x14\xf7\x70\x03\xd4\xe7\x5b\xc1\x54\xae\xbf\x14\x10\x37\x78\xf3\x65\xb1\xc3\xf0\x35\x41\xdd\xbd\x07\xd6\xe2\x3e\x56\x76\x2d\x97\x1e\xb0\x29\x83\xe9\x3c\x4e\x01\xba\x4b\x8a\x21\x78\x92\x8c\x43\x37\xd3\x02\xf3\x1c\x9c\xcb\x75\xb2\x49\xa8\x2d\xc9\x68\x21\xe9\x5a\x03\xab\x6b\x77\x0d\xf2\xc3\xdf\xdb\xf1\xfe\x97\x73\xf8\xbc\x1b\xc5\xb3\xaf\xa0\x44\x0b\x10\x25\x78\xf3\xd2\x13\xc8\xd0\x19\xcf\xf1\x24\xf7\x5c\xe4\xac\xcc\x8c\x66\x7f\xeb\x27\xc7\x51\xa6\x12\x00\x74\x81\x31\x04\xe0\xcd\x07\x0c\x9f\x5e\x45\x1d\xcc\xff\x4c\x80\xd7\x11\x07\xc9\x75\xab\xfa\xc0\x7d\x4d\x27\x0c\x72\x7d\x8a\x2f\xec\x34\x9b\x53\x39\x68\xe2\x71\x89\x2d\x2b\x62\xc1\x25\xfb\x79\x74\x60\x3c\x30\x5e\xa3\xbf\xa3\x0f\xb6\x10\xfc\x5a\x23\xeb\x68\xa8\x40\x64\x44\x39\x1a\x52\x13\x37"}, {{0xf7,0x31,0x31,0x7c,0xf5,0xaf,0xfe,0x58,0x70,0x4c,0x4d,0x94,0x97,0xae,0x86,0x0b,0xbf,0x73,0x9d,0x0f,0xd9,0x6b,0x7c,0x02,0xef,0xb6,0x77,0x7b,0x3c,0x85,0x8a,0x19,},{0xd7,0xd6,0x38,0xae,0xcc,0xe1,0x46,0x1e,0x31,0x42,0x55,0xaa,0x29,0xd9,0xa6,0xb4,0x88,0xae,0xa1,0x39,0x6e,0x96,0x82,0x69,0x5a,0x47,0x0e,0xff,0x23,0xf3,0xed,0x84,},{0x2a,0x4f,0xea,0x98,0xf9,0x24,0x01,0x71,0xa1,0x82,0x3f,0x2f,0x69,0x35,0x20,0x62,0x67,0x2e,0x6c,0x6e,0x66,0x52,0xd3,0x88,0xa8,0x77,0x14,0xd6,0x47,0x99,0x5d,0xf7,0x5b,0x6e,0x1e,0xd1,0x74,0x6a,0xf2,0xad,0xf4,0xe8,0x06,0x13,0x5d,0x60,0x75,0x4e,0x60,0xfe,0xa0,0x32,0x12,0x8e,0x35,0xab,0xc1,0xf1,0x61,0x51,0x81,0x12,0x5f,0x0b,},"\x16\xf5\x1c\x59\xe9\xae\xfc\x26\xb0\xda\x5e\x00\x85\xeb\x2e\x2f\x1f\x85\x6d\xef\x97\x25\x76\x9e\x3a\xf1\x2f\x86\x09\x05\xae\x13\x3f\x65\x07\x4d\xa7\x6d\xbf\x25\xc6\x7f\x62\x57\xd2\xdc\x66\xc0\x5f\x9b\x31\xae\x17\x7b\x69\x92\x9f\xc1\x83\xb5\x88\xc5\x19\xbc\xa1\x47\x96\xa0\x89\x6d\x29\x05\xfd\x94\x2d\x7a\xb4\xa3\xfd\x95\x41\xa5\x52\x9f\x72\x9c\x58\x51\x41\x9b\x5f\xbe\xf7\xb1\x34\xd6\x76\x2e\xb9\x7e\x8a\x95\x1a\x8f\xf5\x2a\xa0\xd7\xe6\x74\x44\xd0\x6b\x07\xaa\x55\xe4\xeb\x9a\xb8\x92\xf4\x7b\xfd\x11\x1d\xf5\xb6\x2f\x6f\x3f\xd1\xa5\xed\x84\x12\x5f\xee\xbb\x77\xda\x63\x7c\x05\xd5\x26\x5c\xed\x11\x3d\xfe\x87\x82\xdb\xd1\xce\xcd\x2c\x6c\x03\x2b\x8f\xa8\x85\x5b\x3a\xe7\x8d\xe7\x4f\xaa\x5a\xa2\x0a\x76\x14\x63\xc2\xa3\x0b\xe6\x6b\xd3\x8c\xde\xc7\x5f\x89\x57\xcb\x94\xc1\x13\xa4\x5d\x54\x6d\xaf\x47\x5d\x89\xaa\x14\x82\xf8\xd2\x80\x3a\x23\xc9\x39\x20\x20\x15\xa0\x8e\x94\xb1\x32\x72\x8f\xbe\x8f\x60\x19\xd7\x16\x8a\x08\xa5\x93\x01\x70\xe5\x63\x9d\x11\x0e\x47\x39\xdb\x85\xe6\x1e\x64\x49\x59\x44\xb5\x42\x3a\x74\xad\x5a\x8a\x0a\x51\x06\x12\xec\xe6\x55\xce\x18\x86\x40\x51\x52\x5b\x90\x8e\x0b\x19\x29\x0a\xbe\x8b\x11\x82\xc4\x8c\x70\x0d\x35\x05\x15\xfd\x34\x99\x56\xe8\x08\x73\x27\xf3\x0b\x6f\xc3\xf1\x31\xc2\x14\x4a\xbb\x3f\x0e\x9c\xa3\x31\x17\x2b\x35\x06\x4a\x82\x81\x1a\x68\xe2\xcf\x36\xb4\x3e\x3a\xd2\xe8\xdf\xa5\xb1\xce\xf5\x0e\x2a\x60\x29\x3f\xc5\xf6\x35\xc9\xa9\x99\x8d\x8c\x1a\xd2\x96\xe7\xc7\x8f\xc0\x58\x20\x22\xd6\x30\x67\x18\x6b\x65\xe7\x64\x82\x8c\xc0\xf5\xf7\x63\x2d\x5e\xef\x86\x3e\x6c\x6d\x90\xe3\x8c\xcc\x87\xd7\xb7\x47\xfa\xc8\x49\x1d\x63\x2c\xf7\xf5\x4b\x9a\x9e\xed\x16\xee\xbe\xc0\x1b\x6c\xc3\x3d\x24\x63\xf7\xf9\x50\xd8\x28\xb5\x5e\xe3\xf7\x7c\xbe\x97\x4f\x48\x94\x8e\xb7\x57\xae\xd4\xe0\xdb\xb0\x0a\xd9\x5e\xe0\x13\x23\x48\x6e\xba\x3c\x8d\xa8\x86\xed\x7f\x57\xbb\x40\x0d\x63\xa1\xb2\xeb\xea\xa2\xe7\x0a\xdf\x03\x79\xe3\x39\x30\x01\xba\x62\x6c\x0d\xd5\x4b\x7f\x0c\x9a\x25\xaa\xe6\xc9\x87\x5d\x4e\x76\x22\xf3\xed\x42\x8f\xb3\x12\x4b\x29\xc5\xdb\x9a\x7e\xf1\x6e\xbd\xdd\x68\x05\xf0\x95\xf5\xe7\x69\x82\x3c\x43\xf2\x62\x86\x8f\xf4\x3e\x3e\x05\x25\x74\x6d\x94\x97\xaf\x12\x4a\x01\xdf\xf6\x1e\xc7\x18\xaf\x3b\x5b\xb7\x46\xfc\xc0\x8a\xeb\xd1\x66\x84\xd4\x56\xae\x79\x32\xff\x5e\xd7\xd6\xb0\xf1\xb2\x5c\x7a\xde\xef\x59\x8b\x5d\x58\x87\x75\x90\xac\x1d\xc0\x59\x75\x15\x67\x96\x99\x87\x74\x08\x1e\x5b\x66\x82\x2a\x94\xa6\xa8\x02\xc3\xa2\xcd\x9f\x48\x9e\x16\x28\xaa\xf4\x65\x2b\xe1\x18\x4b\x0f\xc7\xc5\xee\x7f\x97\xce\x08\xb9\x23\x3b\x4b\x83\xd9\x36\x7b\xe5\xf4\xaa\xe9\x78\x25\x93\xa3\x52\x65\x15\x4d\xea\x4c\x37\x5c\x16\xf0\xca\xf6\xdc\x45\x94\xd2\xbd\xbf\xc3\x37\x5b\xb2\xa0\x43\x2c\x48\x2f\x13\x94\x1c\xe2\xaa\xab\x4d\x83\xe7\x4d\x11\x6f\x5d\xe4\xab\x28\xf8\xdc\x3d\x1c\xd1\x9d\x27\x1e\x56\xe1\x03\x98\xbd\x1d\xf5\xc8\x70\xfc\xbf\x93\xa7\xd1\xdf\x39\x39\x54\x7c\x10\x7b\xfd\x90\x64\x3f\x6f\x50\x01\xae\x7e\x06\x39\x7a\xe1\xa2\x71\xbb\x82\xa1\xf3\x8e\x09\x7b\xec\x66\x74\x66\xb8\x0e\xe3\xe5\x0d\xd4\xfc\x9d\x5d\x54\xf1\x8f\xaf\x7a\x5b\x55\xa8\x83\x45\x94\xef\x0c\xb7\xe5\x08\xbb\xd2\x8f\x71\xfd\x34\x23\x5b\xbf\xd3"}, {{0x49,0x8e,0x5a,0x21,0xa9,0xb0,0xc3,0x47,0xba,0x83,0xa4,0x7a,0xc1,0x00,0x69,0x45,0x7f,0x57,0x83,0xc2,0xe1,0xe6,0xe4,0x64,0x00,0x45,0xe5,0x94,0xb1,0xc6,0x93,0x32,},{0xfb,0x39,0x48,0xc8,0x11,0x99,0x56,0x91,0x05,0xcc,0x1b,0x7d,0x9c,0xeb,0x3b,0x41,0xa3,0x43,0xbb,0x00,0x57,0x55,0x38,0x59,0x2e,0x09,0x84,0xf4,0xf4,0x71,0x0a,0xbe,},{0x28,0x60,0x83,0x0c,0xcd,0x1d,0x41,0xd9,0x50,0x76,0x81,0x6a,0x39,0x84,0x24,0xf7,0xb7,0x39,0xc4,0x9f,0xda,0xcf,0x56,0x54,0x52,0x9d,0xa8,0x5f,0xe3,0x56,0x55,0x84,0xf6,0xaa,0xc2,0x61,0x4c,0x63,0xf7,0x74,0xb6,0x1d,0xb9,0x08,0x1f,0x14,0x10,0xfb,0xa8,0xe5,0x0a,0xb3,0xb4,0xc3,0x9d,0xc0,0x63,0x14,0x24,0x3f,0x3f,0x0d,0x8e,0x0f,},"\xe4\xfb\xea\x86\x4a\xa5\x11\x90\x82\x66\x45\xd2\xf7\x72\xcb\x0f\x9e\xdd\xd3\x03\x44\x73\xfa\x31\x77\xc7\xaf\x9a\x5d\x41\xe1\xa7\x3a\xd5\x78\x4c\x70\x96\x55\x9f\xcd\xdb\x7b\x7c\x85\x89\x1c\xf2\x4e\x82\xc5\x88\xd7\x47\x74\xff\xca\xc0\xc6\xb4\xee\xbc\x2f\x3f\xa4\x3e\x9d\x45\xf2\x59\xd6\x75\x64\x03\x0c\xfe\xea\xb9\x23\x6c\x66\x5b\x65\x0a\xf0\xc9\x2c\x87\x51\x89\xf5\xf9\x38\x35\x04\xb1\x53\x60\xa0\xb9\xa5\xa0\x0d\xa3\x1f\x63\x5b\x96\xf6\xc7\x3e\xf4\x7b\x6b\x06\xf0\x28\x11\xd1\xd1\x9c\x2e\x8e\x53\x55\x0c\xe2\x2e\x42\xec\x50\xa1\xeb\x2e\xa2\xf4\xcd\x03\xc4\x42\xd4\xaa\x43\x68\x94\x23\x8c\xeb\x18\x35\xfe\x99\xb2\x40\x35\x8a\xa0\x56\x2c\x24\x96\x98\xa3\xf1\x23\xc2\xc1\x7e\x59\x10\x10\xbd\x6f\xdf\xcb\xd7\xdb\xe7\x0b\x04\x52\x05\x02\xec\xe3\x7a\x9a\x1d\xfa\x1a\xe3\x37\x04\x17\xb0\x04\x21\x7a\x5b\x8f\xe9\x90\x3c\x9a\x3b\x9f\x4b\x6d\x5c\x46\xc0\xed\x0c\x53\x8c\xec\x22\xf2\xdf\xcb\x2a\x28\x0a\x42\xad\xc4\x89\xcf\x2e\x06\x29\x12\xbe\x99\x28\xf0\xc0\x60\x89\x1e\x43\x20\x91\x17\x75\x26\xf1\xb3\xa9\x68\x06\x9d\x4a\x57\xad\xe8\x28\x55\x98\x10\xae\x03\x60\x68\x1f\xf9\x93\x29\xfa\x0f\x59\xe7\xe5\x9c\xdf\x87\xf9\xf3\x3c\x40\xe9\x70\x31\xb9\xf8\x1d\x48\xfc\x12\x28\x6e\xfb\xb3\xd4\xe5\xa6\x2e\xf5\x7b\xc0\xd5\x2d\x53\x3b\x99\xc5\x10\x6a\xa7\x9c\xfe\x17\x93\xa9\x08\x51\x85\x96\xc3\x83\x48\x3e\xc4\x9f\xf9\x8e\xc5\x57\xbf\xff\x74\x90\xa4\x6d\xaf\x67\x14\xf2\xc2\xc3\x2f\x57\x93\x2c\xa0\xd7\x30\xf0\x3f\x38\x1d\x69\xde\xcd\xbd\x9a\x7a\x6d\x4a\xfc\x62\x40\x65\x43\xc8\xeb\xe9\x0a\xc7\x6e\x6a\xfa\xbd\xb8\x24\x92\xa2\x06\xa3\x69\xe0\x42\x86\xd3\x13\xe1\x11\x07\xd8\xcd\x9b\x4b\xf6\x8f\x81\x5d\xba\x4e\x99\x0b\x04\x9d\x79\x21\x6d\x36\x53\x13\x83\x42\xcd\x11\x8b\x13\x0f\x66\xb0\x06\xf3\xd8\x9a\xc3\xcf\x89\x83\x70\x48\xb0\xf8\xa6\x2d\x94\x05\x1d\x2e\xab\x89\x1a\xc5\xf4\x78\x88\x87\x9d\x88\xe5\x46\x67\x6d\x1d\xae\xeb\x4d\x17\x5d\x3f\x04\xa9\xd7\x4f\xfc\xdd\x47\x74\x60\x16\xf8\x4a\xd0\xd1\x12\xaf\xb5\x9a\xd1\x21\x87\xe9\x4f\x22\x53\x5d\x77\xe9\xe0\x51\x6f\xa4\x21\x85\xc1\x97\xba\x77\x4b\x39\x32\x27\xf7\x41\xfe\x68\x27\x3f\x42\x3f\xb0\xe0\xe0\x47\x4b\xfd\xaf\x2d\xa7\x8a\xeb\x1c\xd5\xb9\x8c\x1d\xc0\x83\x21\x24\x74\x2a\x47\x54\x12\x5f\xc7\x8b\x19\xc5\x59\xa5\xb3\xf7\x71\x1e\x06\x8c\x44\x0c\xc0\x46\x9a\x1c\xfa\x5c\x18\x64\xbe\x18\x73\x5a\xa8\xbc\xd4\x06\xc4\x37\x1e\xb8\x57\x75\x4d\x90\x8b\xf3\x79\xb9\x1f\xcb\x24\xe3\x43\x96\xbf\x87\xc1\x9a\x04\xa8\x3d\x59\xda\xe7\x1f\x3f\x38\x39\x82\x9d\x06\x22\x13\x01\xef\x59\x56\x96\xe7\x19\xd5\x6b\x79\x52\x0a\x0e\x50\x99\x29\x83\x3b\x1d\x80\x4a\x6a\x0e\xa4\x04\x00\xbb\x45\x02\x8c\xe5\xd3\x69\x33\x88\x3e\x17\x40\x6e\x27\xa8\x10\x90\x57\xb1\xa1\xa5\xe5\xda\x21\x0a\x69\x21\x99\x4f\x46\x7a\xb4\x1a\xa8\xf0\xd8\x87\x75\xa8\xa8\xeb\xb4\xec\x77\xd7\xc8\x0e\x45\xa7\xbb\x42\x2a\x4c\x00\xc9\x05\x83\x91\x14\x65\xe6\xb5\xf0\xfd\xcd\xea\xb7\x28\x71\xca\x54\x2e\x1d\x1a\x2c\xa9\x4d\xf4\xed\x2e\xab\xf9\x0d\xed\x00\x45\x29\x03\x24\xa9\xff\xfb\x30\x14\x54\x70\x20\x9f\x38\x26\x58\x09\x89\x34\x91\x99\xdc\x5a\xb8\xd4\xa2\x5d\xf7\xa0\x52\x9c\xf9\x14\x71\xe3\x08\x42\xab\xfa\xcd\x44\xab\x78\x1d\xfc\x13\x95"}, {{0xc2,0x4c,0xbf,0x40,0x1a,0xd0,0x3b,0xd8,0x8d,0xcc,0x7b,0x51,0x9e,0xcf,0x62,0x4d,0xb2,0x22,0x3e,0x99,0x02,0x89,0x30,0x9e,0x1e,0x9f,0x1f,0x8f,0x61,0x27,0xc6,0xc9,},{0xa7,0x46,0x66,0xf3,0x57,0x20,0x9f,0x71,0x89,0x90,0x37,0x88,0xf1,0x07,0x56,0x3e,0x50,0xc0,0x51,0xc3,0xd4,0x0c,0x3f,0x3d,0xad,0x10,0xd3,0xc3,0xcf,0xf1,0xe6,0x78,},{0x58,0x1e,0x6c,0x85,0xae,0xc6,0x23,0xb6,0x2b,0x3d,0x4c,0x9b,0xc9,0xc7,0x77,0x59,0xd5,0x49,0x27,0x22,0xe2,0x52,0xd4,0x4c,0x1f,0x8a,0xda,0x9d,0xa2,0xec,0xc6,0x7c,0x17,0x08,0x32,0x73,0xaa,0x09,0x1b,0xba,0xc0,0x46,0xae,0x63,0xc7,0x88,0x93,0x15,0x2e,0x14,0xd9,0x26,0xc4,0x1a,0xe3,0x5f,0x0e,0x6e,0x39,0x59,0x49,0x6b,0x13,0x06,},"\xe7\xfa\x35\x9e\x6a\x09\xb2\xc5\x4a\xab\xed\x3b\xba\xbf\xb7\x28\x53\xa8\x05\xaa\xbc\xf4\xd1\x8d\xda\xd3\x9f\x03\xf3\x46\x01\xe5\x5b\x6c\xe2\x63\xc9\xa3\xca\x6a\x3e\x5f\x14\x25\xc8\x21\x92\x8c\x61\xe7\xf7\x50\x91\x9b\xd3\xaf\x32\xbc\xb7\xb9\x4d\x45\x9a\x7a\x9a\x35\xf6\x1c\x94\x17\x92\xe2\xcc\x2e\x43\x27\xbe\xb3\x44\xa8\x41\xa0\x7f\x32\x06\x8a\xf1\x02\xb3\xde\x61\xea\xb6\x4e\xf6\xd5\xe6\x90\x62\xe3\x93\xab\x5e\xdf\x6a\xc9\xef\x7b\x38\xd4\x9a\x01\xbe\xf0\x00\x3f\x42\x11\x74\xc8\x88\x59\x75\xc0\x18\x32\x89\x9c\x31\x35\xe7\xa8\x6e\x5b\x55\xd9\xb1\x32\x8b\xb4\x28\x9b\x5c\x40\x20\x0f\x49\xe5\x52\x3b\x3c\x46\x1d\xc7\x17\x5e\x14\x65\x02\x22\x97\xc3\xd3\x80\xf2\xb1\xfe\xf3\x9c\xb8\x2c\x00\xfd\x16\x0f\x44\x7e\xb5\x12\x63\xfa\x25\xb4\xdf\x0f\xca\x41\xec\x0c\xa2\xec\xe7\x47\x22\x01\xaf\x86\xc3\x03\x8c\x49\xdf\x09\x9a\x9a\xef\xa1\xf8\x8d\x0e\xdf\xd1\x7c\x0b\x3c\x86\x04\x66\x29\xc0\x94\x54\x05\x4a\xa0\xfb\x2c\x69\x49\xdd\x9c\x13\x01\x85\xdf\xa5\xd9\x03\x89\x1e\x08\x74\x2c\xd0\x42\x94\x03\xf5\x7f\x40\x52\x15\x8b\x2f\x40\x1d\xa4\x75\x68\x54\xe4\xaa\xf0\x24\x22\x1e\x37\x51\x3c\xf6\x77\xee\x6a\x0b\x15\x9f\x50\x1d\x37\x7e\xa3\x2e\xb7\x1e\x77\x80\x04\xf2\x72\x03\xcd\x6d\x55\x3f\xda\x5d\x65\xe1\x87\x94\x77\x04\x6f\x3e\xa3\xd1\xd7\x5c\x9d\x0d\x30\x31\x14\x56\x70\x9c\xc7\xf6\xab\x68\xc7\xb0\xd5\x2b\xe4\x0f\x04\xcf\x65\x56\x55\x32\x32\x85\x31\x83\x29\xe8\x4c\x6a\x5b\x07\xe0\xce\xed\x5f\x78\xf7\xf1\xfa\x62\x29\xbe\xf8\x78\x79\x3c\x58\x47\x28\xab\xf4\x51\x0b\x7f\x27\x79\x4b\x59\x42\x91\x62\x54\xc5\x89\xa0\x9c\x8e\x91\x1f\x0b\x95\x42\x11\xa6\x36\x99\xa7\x52\x14\x7f\x2a\x4e\x1a\x18\x95\x66\x44\xbe\xa2\xca\x26\x92\xba\x18\x22\x80\xe0\x4a\x72\xdd\x89\xb0\xd1\x26\x85\x00\x93\x8f\x34\x7b\xf4\x3f\x2a\x24\x2e\xe9\xb9\xa6\xba\xac\x9b\x35\x0d\x65\x6f\xb1\x9e\xc8\x34\xab\xe3\x16\x44\x40\xf2\xd2\x07\x1f\xe5\xe3\x2c\x8e\x4c\xf9\x05\x53\x9b\x83\x9c\xee\xca\x26\x20\xfc\xb2\xa0\x87\xf7\x80\xe6\xc7\xf5\xe0\x5c\x50\x68\x88\x25\x0e\xa7\xc8\x56\xfb\x30\x98\x32\x00\xaa\x8f\x78\xfc\x17\x71\x05\x4a\xda\x0f\x3f\xac\x38\xae\x2f\x33\xdc\x4a\x4f\x85\x1b\x76\xed\x74\x0c\x09\x62\xa7\x6a\x4d\xe4\x40\x80\xdc\x62\x0a\x44\xad\x8f\x23\xd3\x46\x2b\x79\x2a\xb3\xaf\xb1\x9c\xb8\xa9\xf4\xd9\xe5\x9a\xd7\x65\xa7\x71\x89\x9d\xa8\xcb\xec\x89\xe5\x07\x7e\x85\xc0\xc9\x31\x26\x37\x6c\x94\x1b\xef\x1f\x8b\xb9\x92\xd3\xa3\x5f\x27\x07\x25\x84\x6f\xb2\x52\xf8\xb5\xfb\xb7\x56\x7e\x40\x6a\x1b\x53\xb6\x19\x76\x9e\x63\x2b\x2b\x40\x87\xcd\x4c\x27\x6e\x5d\x58\xff\x2b\x56\xe8\x9e\xde\xc4\x8c\xe5\x3a\x52\xe3\x29\xca\x15\x59\x53\x8f\x10\x90\x2c\x01\xa8\x5f\xbb\x3c\xd7\x2e\x6b\x82\x91\xe5\xfe\x63\x9b\xee\x9d\x47\xd3\x4c\x24\x9a\x7a\x07\xd7\xa1\x42\x7a\x01\xf6\x3d\x60\x98\x4c\x45\x0b\xef\x81\x9b\x19\xf6\x5e\x26\x14\xfd\x9c\x2f\xae\x7b\x92\x31\xa0\xbc\xa4\x14\xed\x94\xa5\xee\x7e\x66\x32\x7d\x2a\x99\xc8\x48\x78\xb7\xbe\xe0\x87\xe8\x91\xf2\x53\xfa\x1f\xec\xe3\x13\x64\x8c\x06\xc4\x5d\xb2\xd9\xf3\xbc\x85\x99\x93\x7b\x75\x2d\x38\xce\x50\x63\xd0\xed\x9a\x43\xec\x9d\x40\x15\x89\x3d\x43\xbf\x5b\x2d\x1c\x60\x47\x85\x10\x46\x89\x68\xb7\x96\xf0\x15\x37\x89\x59\x54\x41\x72\x2a"}, {{0x8b,0x3d,0xcd,0xe4,0xab,0xbf,0x4e,0x62,0x11,0xc4,0xa5,0x1c,0x4b,0x02,0x68,0x00,0xa8,0xa2,0xa0,0x61,0xcb,0x38,0xa2,0xec,0xc7,0xc9,0xcf,0x11,0x3f,0x92,0x70,0xbf,},{0x51,0x45,0x35,0x58,0x0f,0x0d,0xe3,0x59,0xbb,0x0d,0x41,0xf2,0xef,0xdd,0xaa,0x04,0xc2,0xec,0x95,0x01,0x19,0xf3,0x16,0x34,0xb2,0xc1,0xa3,0x2f,0x19,0x5f,0x69,0x68,},{0x4f,0x3d,0x4d,0x22,0x85,0x03,0x01,0x7e,0x74,0xa6,0xbb,0x58,0xaa,0xfa,0xe3,0x5c,0x3f,0x37,0xbd,0xee,0x4f,0xf6,0xbe,0x2e,0x62,0x40,0xb5,0x08,0x2f,0xed,0xdb,0x22,0x27,0x35,0xe1,0x2f,0x31,0xe0,0x56,0xfa,0x68,0x54,0x47,0xe5,0x38,0x48,0x03,0x00,0x7e,0xa7,0x91,0x0e,0x60,0x5c,0x1b,0x78,0x11,0x8c,0xd5,0xac,0xc5,0x87,0xa6,0x06,},"\x48\x14\x25\x02\x7d\xa6\x72\xb6\xf2\x6c\x91\xb8\x0e\x55\x58\x2c\xae\xf4\x7b\xb1\x5a\x2d\xe8\xfc\xa8\x52\x22\x17\x85\x18\x0b\x20\xa7\xfd\x6d\x49\x07\xb5\x88\x1c\xc1\xd6\xe3\x9a\xb9\x61\x2c\xc7\x4d\x69\x77\xe9\x14\x1f\x70\x87\xbb\x27\xab\x30\x84\xa2\x62\x85\x58\x6f\x84\x11\xdb\x1f\x50\x3a\xdf\x52\xdc\xb2\x5a\xb8\xff\xfd\x2e\xc1\x50\x4c\x17\x77\xb9\xd6\xdd\x4a\x29\xe2\x01\x9e\x5c\xba\xe1\xb7\xeb\x26\xf9\x5b\xbe\x07\xd9\x0c\x2f\x6f\xb0\x88\x4a\x59\xa8\xd5\x8d\xde\x51\x16\xed\xc3\xbc\x34\x9d\x37\xc1\x60\xb2\x7b\xef\xbe\x5a\x5c\x18\x1c\xe7\x25\x63\x92\x35\x4d\x22\x1b\x58\xc4\x7e\xb0\xbb\x10\x92\x9e\x74\x21\x79\x5f\x4b\x7a\x7c\x27\x5e\xdd\x08\xc0\x88\x56\x87\x72\xe9\x93\x21\x8d\xd6\xf3\xc2\xcb\x4a\xc6\x57\xa0\xa3\xf9\x1f\x31\x26\xb9\x91\xad\xf6\xcb\xe7\xd1\xb1\x9b\x8c\xd8\x3b\xe3\x60\x2e\xd1\x8f\x03\x96\x33\xfb\xd2\x38\x7b\xda\x69\xe2\xcf\x03\x87\xd8\x64\x4d\x97\xb3\x03\xfb\x00\x63\x9a\xee\xe7\xae\x46\x3f\x6f\xe1\xa2\xc4\xb8\x9a\xeb\xa3\xe9\x09\x4c\x11\xfc\x29\x11\x4b\x20\x28\x3f\x28\x7c\x6d\xd2\x8c\xb0\x98\xda\xe8\xda\xbc\x48\xe8\x5b\xb5\x9c\x0d\xc6\xe7\x8c\x95\x66\x05\xcb\x7c\xf0\x69\x42\x35\x3e\x7a\x22\xe9\x6f\x80\xa3\x7a\x66\xf7\x18\xd9\xe4\xdb\x8c\x52\x45\x2a\xa0\xa3\x57\x72\xe8\x1b\xa2\xb3\x03\x20\x5b\x41\x2d\xd2\xbf\xc1\x5c\xe9\xb4\x36\xf9\x9f\xbb\x32\x12\x6b\x63\xce\x9c\xb4\x31\x99\xf1\x57\xd8\x17\x51\xa7\xc4\x93\x7d\x13\xaf\x4c\x58\x29\x52\xb5\xd6\x06\xb5\x55\xb0\x46\xbf\x1d\xe0\x6c\xf3\x9b\x63\xa8\x02\x87\x37\x18\x03\x60\x9a\x38\x7e\xe8\x0f\x3a\x5d\x88\xb9\xd6\x21\x96\x50\xed\x17\xd3\xcc\x18\x3b\x2c\x70\xd5\xeb\x94\xe3\xbc\x52\xae\xa7\xaa\x7f\x53\xbe\x0e\x20\xb8\x97\x2f\x14\x3d\x8e\x20\x16\x2e\x80\x3e\xdb\x4a\xa8\x3d\x55\x53\xfd\xd5\x53\x39\x8b\x0f\xa1\x76\xb9\x59\xcb\xa1\x40\xd6\xe9\x80\xc9\x25\x1b\x0f\xa0\xb6\x5e\x90\x84\x17\xf8\x2f\x45\x1f\xf9\xf2\xde\x6b\x9c\xa5\xe3\xb5\xf4\x1b\xa4\x0d\x05\xa5\x4f\x3d\xab\x48\x86\xaa\xcc\xa0\x5c\x9c\x27\x98\x13\x9a\x4c\xb3\x3e\x96\xa9\x14\x94\x74\x99\x10\xa1\x7c\xe8\xb3\x92\xfc\x0f\xc7\x76\x29\x74\xd7\x9d\x33\xdb\x92\x4b\xfe\xf8\x65\x5a\x72\x37\x76\xff\x87\xf9\x50\xfd\xc5\x68\xb1\xe5\x26\x53\x45\x41\xf5\x72\x72\x3b\x84\x06\x63\xc1\x91\x88\xc4\x24\xf7\xc4\x89\x23\x5a\x42\x4b\x09\xfe\x25\xc3\x07\x27\xea\x1c\xb0\x49\x53\xd7\x06\xd6\x8b\xfe\x12\x10\x0e\xf6\xf6\x4c\x35\xc6\xb8\xde\x67\xed\xf0\xe3\xad\x01\x4a\x40\x0e\x82\x1e\xa3\x40\x24\x32\x19\x99\x86\x7b\x43\xc8\x2c\x45\x01\x84\xb7\x8f\x74\x25\xce\xbd\x73\x19\xdc\x6f\x65\xd3\x60\x66\x5d\xfb\xe7\xc3\x66\x74\xda\xc3\xa5\x4e\x96\xda\x91\x0c\x02\xd3\x64\x07\x80\xb2\x2d\x51\x2c\xa0\xe3\xca\x35\x87\xb9\x4e\xa9\xfc\xd7\xa3\x1b\x4a\xf6\x9f\xd6\x20\x7c\x68\xfe\xd2\x5f\x89\x92\x1c\x1c\xdc\xde\xfd\x1c\x09\x02\x04\x49\x2b\xff\x9b\xbb\x52\xe0\x88\x85\x82\x9d\x01\x2b\xc2\xdf\xb4\xfe\x8c\x35\xe5\x9c\xd1\x3b\xcb\x8e\xad\x34\x19\x3c\x40\xb0\x3e\xe4\xd8\x25\xee\x13\x22\xff\x4e\xf0\x71\x27\x95\x74\xcb\xae\xe7\xc0\x7f\x14\xbe\x60\x6b\x9c\xd0\xe2\x61\x11\x1e\xf2\x0d\x96\x81\xd7\x6c\xf7\x8c\x89\xa8\xc3\x97\xd6\xb8\xdc\x77\x8f\x49\x84\x16\x6a\xd5\xdf\x3a\x81\xaa\xf2\xe6\xde\x09\xf7\x00\x19\x5a\xe2\xc1\xd4\x60\x96\x47"}, {{0xd4,0xa7,0xa9,0x52,0x4d,0x30,0xa6,0x33,0x7c,0x0a,0x0b,0xe9,0x5c,0xa9,0x05,0x91,0xde,0x98,0x88,0x03,0x8e,0x3e,0x59,0xe1,0xb2,0x5a,0x41,0x81,0xef,0x94,0x66,0x29,},{0x9f,0xc3,0xeb,0xd1,0x39,0xcc,0x5b,0x7c,0x0e,0x05,0xaf,0x47,0xbf,0xf6,0x61,0x9b,0x81,0x28,0x15,0xbb,0x01,0xce,0xec,0x39,0x2a,0x3f,0xf0,0xae,0xc3,0x81,0x1d,0x2c,},{0xd1,0x57,0x88,0xbc,0xd8,0x8d,0x1d,0x81,0xb9,0xe6,0x1d,0x4f,0xe2,0x6e,0xa4,0x9e,0x66,0x81,0x9a,0x59,0xd2,0xae,0x48,0x32,0x32,0x1b,0x81,0x4d,0x50,0x62,0xfa,0xdb,0x87,0x80,0x7d,0xb6,0x85,0x2e,0x1d,0x82,0x95,0xe3,0x1a,0x29,0x1b,0x1e,0x78,0x5d,0x01,0xd8,0x34,0x89,0x5f,0x88,0xf4,0x00,0xdf,0x88,0x32,0xc1,0x60,0x7b,0x5b,0x0c,},"\x17\x19\x80\xc0\x3f\xdf\x7a\x72\x7b\xd5\xba\xb3\xba\x09\x45\xe6\xad\x5f\xaf\x0a\x7f\x50\x6a\x56\xd1\xd0\xed\xd9\xa3\x06\xb3\x15\x8d\x84\x32\x66\xd3\x09\x1f\xc1\xe4\x22\x81\xdf\x97\x55\x9a\x22\x01\xf5\xbd\xdd\xfe\x68\x3d\x0e\x10\x28\xd1\xd9\x5b\x2f\x31\x3b\x48\x4c\x39\x2f\xfd\xb1\xcd\xf8\x85\x08\xaf\xde\x3d\x6f\xd2\xa1\x28\x88\xba\xce\xde\xb7\x9f\xf3\xdb\x40\xc9\xac\x0e\xc3\xfb\x90\x1b\x22\x86\x98\xad\xf8\xd8\x45\xff\x4f\xce\x10\xde\x55\xd4\x24\x36\xdc\xe9\x30\x97\x3a\x34\xbe\x05\xd1\x40\x1f\x33\x4d\x4c\xe8\xe3\xa7\x93\x79\x9e\xaf\xdb\x94\xd0\xf2\xab\x09\x50\xb0\x79\xe6\x65\x3e\xeb\x49\x9f\xc7\x44\x7c\xcb\xee\xed\x8d\xbd\x54\x56\x80\x8c\xd7\xa3\x8f\x9a\x15\xa2\xa9\xc7\x38\xd6\x13\x34\xca\xb8\xce\xeb\xbb\xf4\xa4\x81\x4d\x94\xc6\x18\x59\x17\x87\x84\x60\x4e\x0c\x21\x54\x59\x7e\x72\xcf\x58\x7c\xd1\xf5\xda\xfe\x59\x22\x05\x18\x90\xe7\x6d\x61\x6d\x8c\xd5\xb0\x5d\x64\x78\xd0\x62\x6e\xa8\x3c\xe8\x08\xc4\x61\x43\xe6\xfb\x06\xb4\x18\x2d\x22\x8d\xa8\xf6\xd4\x13\x9e\xca\x5b\x8f\x3b\x1b\x98\xaf\x68\xc5\x9b\x4b\x5a\x53\xc1\x36\xee\x90\x43\x2a\xca\x2b\xb9\x15\x52\x9d\x26\x36\x79\x49\x82\x62\x33\xb4\x3e\x55\x80\x4b\x55\xfc\x9f\x21\x5e\xb0\xb0\xb7\x92\x91\x46\x5b\xb3\x4e\xda\xea\xdf\xfa\xbf\xe6\xcf\x41\xbc\x07\xb5\xdd\x4d\x01\x42\xf0\x36\x1f\x05\x8e\xe1\xb3\xb9\xfc\xc1\x96\xeb\x9b\x35\xb1\x34\xbe\x3d\x1d\x23\x20\x04\x48\x9e\x8f\x69\x93\xf6\x25\xa6\x30\x15\xbc\xd3\xf1\xe8\x75\x88\x32\x48\x58\xcc\xfb\x77\x0d\xdd\xd8\x94\xbf\x29\x7b\xd7\x63\xef\x58\x28\xe2\x1f\x5c\x89\xaa\x98\xcf\xbc\x1c\x08\x2d\xd7\xfb\xaa\x43\x07\xbd\xa4\x0b\x4a\x75\x8c\xa8\xf3\x9f\x4e\x4a\xae\xd3\x09\x04\x12\x68\xdb\xcf\x0a\xf3\x2d\xe0\xd7\xfa\x90\xa5\x23\x96\x3b\x78\x0b\x6a\x93\x2c\xf8\x94\x99\x02\x5f\x0e\x0d\x04\x74\xc7\x43\x48\x94\x75\x10\xe6\xc5\xec\x7c\x9e\x05\x06\x6e\xeb\x4a\x73\x52\x0c\x3d\x92\x7c\x39\xac\x26\xad\x75\x96\x32\x5b\x2c\xc4\x7c\x5e\x82\xa7\x75\x45\x5b\x7a\xf0\x31\x20\xb1\xcf\xbf\xd6\xec\x3f\xc0\xc3\xbe\x60\x78\xb0\x0c\xfd\xf8\x34\x2a\xe8\xbf\x14\x71\x59\xf5\x0e\x9d\x56\x4e\x2f\x68\x30\x6d\xae\x3c\xae\xdd\x10\x19\xf3\x23\xc4\x78\xa1\xe1\xf6\x75\x98\xdd\x83\x4b\xd1\xd1\xa8\x73\x3f\xd7\xfd\xd8\xa8\x76\x52\x6c\x53\x15\x18\x93\x6e\xdb\x72\xd0\x16\x56\xb3\x44\xc7\xd6\x5a\xc1\xce\xe3\x7c\xe5\x99\x7b\xa4\x8d\x3f\x4d\x06\x4d\x88\x05\x7e\xfe\x9a\x48\x2d\x9e\x00\xab\x5c\xae\xb5\xac\xa2\xd6\x60\xe3\x37\xbd\x15\x48\x73\x65\x69\x79\x56\xa5\xe4\x7b\x02\xab\xdc\x30\xd8\xe3\x53\xfe\xd4\xe1\xac\x41\xd2\xbc\x21\x20\x02\x11\x43\x63\x59\x35\xc6\x20\x18\x6a\x52\x2b\xde\x54\xbe\x04\x46\xfb\xd2\xdc\x88\xb5\x63\x04\xb3\xa6\x42\x27\xd0\xac\xd5\xf8\x5a\x6b\x67\x87\xa3\xad\xcf\x2d\x7c\xfc\x86\xc6\x34\xb4\xd7\xab\x43\x15\xb9\x7d\xe9\xe6\x66\xcf\xf3\xff\x1b\x88\xf3\x29\x5e\x7b\xab\x9e\x9f\xd4\x6f\xaf\xdd\xb4\xf5\xfa\xc5\x1c\xc0\x17\x01\x29\xc6\x51\xb4\xef\x4d\x39\x50\xd6\x94\x2f\xf0\x20\xd1\x66\x8a\x52\x8b\xde\x1d\xa9\x36\xc0\xec\x1a\xe0\x9e\x84\xf8\x20\x58\x61\xff\xf4\x91\x50\x2a\x87\x2c\x81\x54\xa9\x6e\x7e\xa2\x5e\xda\x95\x5a\x7f\xd2\xe4\xb4\xc7\xa8\xd2\x73\xf6\x0b\xc7\x4f\xab\x7b\x49\x68\xca\x6f\x75\xda\xea\x50\x40\xf8\x39\xfd\x56\xc2\xa9\x80"}, {{0xd0,0x8f,0x4b,0xab,0xba,0x3b,0x53,0x65,0xfa,0xf7,0x38,0x79,0x5c,0x9d,0xa4,0x5d,0xb1,0x86,0x2c,0xb2,0x8b,0x93,0xeb,0x66,0x35,0xd1,0x32,0x0d,0xa0,0xf4,0xd9,0x37,},{0xef,0x31,0xb4,0x54,0xf7,0x34,0xe5,0x2b,0x34,0x38,0xee,0x2f,0x1c,0xbc,0x35,0x63,0x1b,0x19,0x69,0xde,0x54,0xac,0x98,0xfe,0x46,0x33,0xf2,0xf5,0x00,0xac,0x87,0x12,},{0xac,0xeb,0xe4,0xc8,0x6f,0xa9,0xfe,0x2c,0x1a,0x5c,0x57,0x6a,0xc0,0x50,0x1e,0x8a,0xb0,0xf6,0x40,0xfa,0x40,0x38,0x05,0x36,0xfc,0xf9,0x50,0x59,0xd5,0x3d,0x4a,0x35,0x55,0xd2,0x20,0xac,0x36,0x35,0x87,0x17,0x5e,0x4b,0xde,0x16,0x3c,0x0d,0x00,0x65,0x0a,0x12,0x96,0x3d,0x46,0x76,0x6c,0x99,0xbb,0x62,0xbf,0x75,0x73,0xe2,0x87,0x0c,},"\xa3\x94\xd8\x85\x4c\xeb\x5c\x43\xaf\xee\x1a\x48\x92\x6b\xbd\x66\x85\xaa\x8a\xec\xfd\xcf\x85\x41\x33\x33\x39\x74\xd6\x24\xbf\x2f\x1f\x9c\x30\xf0\x05\xbb\xf3\x4c\xee\x3a\xfe\x2b\x29\x06\x00\xee\xae\x6f\x1d\xd1\x2a\x0c\x34\x6f\xbb\x2a\xb9\xc9\x16\xc5\xd5\xd8\x0d\xcd\x87\x88\x78\x75\xa0\xac\x84\x76\x78\x03\x9f\xdc\xd3\xa9\x79\x35\x41\xf5\xd6\x75\x14\x3a\x6a\xba\xdc\x3b\x18\xf0\xfe\xf5\x10\x8c\x19\xc2\xdb\xfb\x59\x71\x0e\xef\x98\x66\xa4\xf3\xf2\x97\xa0\x9e\xe4\x8c\x68\x03\x00\x7d\xd6\xba\x8f\xd4\xbe\x84\x1c\xfb\x10\xff\x05\x14\xc3\x0f\xc4\xdd\x49\xa3\xcd\x43\xbb\xd1\x6e\x46\x04\x43\xa1\x1a\xfe\x64\x9e\x90\x1d\x63\xd8\x9a\xf5\x98\xaa\x68\x6b\x2f\x60\x7e\xc1\x1f\x35\xe1\x7a\x79\x8a\x42\x13\xb7\x5a\x38\x78\x8d\xa4\xf2\x7c\xf2\xb0\x2c\xad\xdf\xe6\x1c\x37\x29\xa8\x7e\xc6\xe6\xb0\x98\xf6\x8e\x7a\xed\x28\xa8\x00\xc4\x84\xdf\xa0\x13\x04\x01\x20\x8f\x98\x6d\x79\x2f\x54\x63\x5a\xdd\x28\x48\xe1\x51\x26\x2a\x36\x5e\xb2\x1e\x27\x27\x19\x1e\x1f\x70\x0f\x3b\xf5\xc7\x3b\x0f\xb4\xc5\x46\xd0\x04\x8a\x15\x5c\x18\x71\x79\x20\xfc\x04\x25\xc8\xc8\xfa\x8f\x16\x7c\x43\xa2\x77\xbb\x36\x6e\x0a\xd7\x02\xc8\x9b\xc5\xaa\x06\xfd\x47\x09\x43\xbe\x05\xcb\x9e\x32\x59\x78\x72\x29\x71\x4c\x30\xa4\xe8\x7b\x00\xa6\x33\xaa\xf7\xbe\x6b\x58\x75\x01\x0d\x12\xe1\x07\xc9\xa5\x26\x1c\xa5\x62\xd6\x70\x25\xbe\xa0\xfe\x22\x34\x63\xed\xb9\x2e\xa0\x1c\xca\x92\xc4\x4f\xf2\x4d\xa9\xd8\xa8\x0a\x64\x21\xf3\xd4\x13\x5d\x64\x7d\x1b\xb0\xfd\x98\x8c\x46\xc8\xa1\x70\xce\xb4\xf3\x3f\xff\x9c\x0f\xfb\x6a\xba\xd1\x09\x2c\x84\xdf\xad\x82\x90\x89\x8b\x24\x95\x16\xa2\x92\xe8\xda\x96\xfd\x51\xa8\x10\x05\xee\xcf\xde\xbb\x05\x93\x30\x99\x27\x7d\x07\x3a\x48\x0c\x3f\x9e\xb8\xaa\x11\x96\x8c\x4d\x8d\xc0\x78\x7a\x9a\xec\x3e\x05\x27\xb7\xfe\x4c\x06\x35\x41\x13\x35\xa1\x81\x16\x89\xe8\x8f\x6d\x5c\xed\x0d\x40\xd6\xb4\x8b\x7f\x2d\x99\x29\x52\x93\x48\x94\x15\x30\x76\xa8\xd3\x73\x72\xfa\x00\xd9\xce\xfc\x5c\xf8\xc2\x6a\xdb\x5a\xcf\x32\x5a\x01\xcd\x00\x5a\xb8\xd4\x74\xa5\x2d\x67\x11\x40\x78\xc6\x51\x6a\xef\x80\x4b\xba\x19\xb8\x87\xa2\x8e\xd5\xe4\x6e\xe9\x99\x5e\x5a\xd3\xa8\x2f\xb9\xcd\x93\x28\x34\x33\x68\x09\x21\x11\x4b\x4d\x9a\xf8\xfc\xb6\xb2\xb5\x35\x83\x9c\x36\xde\x8d\xf1\x2b\x17\xea\x6d\xdc\xfc\xb3\x33\x4f\xf4\x0e\x6c\xf0\x4c\xcd\x5c\xa6\x40\x3b\xa0\xb6\x2b\x4c\xb7\x1b\xbd\xe9\x1d\x8b\xab\xda\x69\x15\x2c\x9c\x93\xae\x76\x9b\x55\x29\xc8\xd5\x2f\xd9\xa6\x90\x9a\x15\xe1\xa0\x60\x1a\x71\x46\x49\xc9\x6e\xc9\x96\xc1\x70\x6d\x10\x21\xb9\x74\x87\x98\x0d\x7b\x2c\x2a\x39\xbb\xb0\xe4\x70\xd8\xe4\x6a\xc4\xaa\x60\x9a\x09\x22\xc9\xbd\xc0\x16\x12\xea\xde\xac\xcd\x5f\xa5\x23\xb2\xa8\xd0\xe6\x2f\xfe\x56\x28\x16\x47\xd6\x1f\xff\xbb\xc8\x40\x53\x57\x45\xd1\x44\x25\x9c\xc8\x13\x00\xfe\x99\xdf\xbf\xfe\xa6\xb0\xb9\xbc\xd2\x84\x73\x98\x2d\x32\xe9\x3e\xd4\x66\x34\xa9\x98\x79\x06\xd6\xf4\x89\x39\xd8\xdf\xbf\xb3\x7d\x33\xb8\x88\xdb\x60\x8c\xb2\xff\xe3\x9a\x8c\xf6\x7b\x72\x64\x46\x11\xc7\xd3\x2a\x4a\x8d\xf6\x12\x46\x8c\xd5\xe5\xd7\x5f\xbb\xa7\x9e\x63\x8a\xa1\xda\xa2\x8c\x4e\x0e\xeb\x9a\x63\x7f\xf8\xa0\x8b\x65\xf7\xa7\x61\x24\x14\xdf\x76\xbc\x7b\x0b\x56\xb5\x53\x7d\x66\x6f\xac\xfd\xda\xf6\x5a\xf1"}, {{0x8f,0x47,0x4f,0x88,0xcf,0x86,0x3c,0x48,0x54,0x56,0xa5,0xa2,0x15,0x52,0x81,0xff,0x27,0xb2,0x84,0x59,0xf6,0x3b,0xc4,0xf1,0xdb,0x00,0xe0,0x03,0x10,0x64,0xf6,0x49,},{0x43,0x14,0x4a,0x32,0x9d,0x75,0x1d,0x04,0xe0,0x71,0x69,0xb7,0x79,0xee,0x92,0x0d,0xd0,0x29,0xcb,0x44,0x5b,0xf3,0x76,0xba,0x3a,0x66,0x85,0x72,0x18,0x23,0x44,0xa3,},{0xf6,0x1f,0x78,0x07,0xc3,0x3e,0x19,0x6d,0x0f,0xe1,0x82,0xef,0xa4,0xd4,0x51,0x6a,0x98,0x15,0xdd,0xd4,0x49,0x53,0x8b,0xba,0xa6,0xb8,0x6b,0x69,0x01,0xa0,0x5f,0x5d,0xdd,0xa0,0x60,0x1e,0xc9,0x0f,0x39,0xf1,0x55,0x47,0x79,0xdb,0x7a,0x09,0xa6,0x05,0x72,0xef,0xfd,0x4d,0x12,0x8d,0x0d,0x3c,0x2d,0xd4,0xe8,0x83,0x57,0x4b,0xc6,0x0b,},"\x84\x08\x91\xd9\x48\xec\x19\xc8\xc7\xf7\xc9\xd3\xc4\x77\x53\x62\xa5\x44\xa0\xec\x97\x45\x7a\xb5\xd1\x4e\x12\x5d\xc5\x4b\x59\xc8\xdc\x9a\x63\x5e\x7b\xad\xb6\xbe\x73\xc3\xa5\x8d\xc0\xe9\x92\x9f\x2b\x42\x0d\x83\x56\xd6\x17\xc3\xd4\x1b\xfe\x69\xb4\xe1\x58\xd4\xbf\x08\xfb\x17\xe6\x88\xd3\xcf\x3c\x94\x8b\x69\xb3\x5f\x0b\x6d\xb6\x62\x72\xa8\xeb\x2b\xd4\x10\xd6\x50\x9f\x6c\x82\x8b\x6a\x20\xd6\x58\x6e\xaf\x85\x76\x01\xed\x9d\x60\x54\x79\x9c\x25\x32\x0e\xba\x80\x77\xfe\x1a\xe2\x26\x71\xb3\x3a\x15\x88\xff\x2b\x23\x5d\x3c\x71\xa2\x7c\xe5\xc6\xc6\x6e\x18\x88\x91\x98\xd1\x16\x93\x36\x76\xbc\x4f\xb0\x71\x0d\xb7\xff\x1a\xc2\xf2\x0c\xe3\x69\xbe\xf5\x6b\x43\xcd\x1d\x40\x6c\xef\xda\xcf\x00\xf1\xf3\x48\xb8\xca\x7a\xa6\x14\xdb\x11\xa3\xa6\x40\xfd\xb5\x93\x89\xd1\xa6\xa3\x94\x75\x5c\x13\x3f\x1b\x01\x9c\x83\x08\xca\x5a\x95\x1e\x73\xb8\x10\xa1\x80\xf6\xff\x25\xb2\x9d\xbb\xcc\xef\x4c\x13\xa9\x75\x03\x39\x39\x07\xa2\xdb\xa0\x96\xa8\xce\x5c\x86\xc0\xee\x6f\x97\xc1\x44\x1b\x8d\x63\x31\xcb\xa5\x3b\x19\x60\x6b\x42\x1a\xf5\x2f\x65\xf9\xc6\x63\xe6\x3d\x39\x82\x71\x8f\x94\x8c\x6b\xae\x96\x1b\x8e\x4b\xf8\xcd\x9e\x31\xcd\x09\x92\x8e\x4e\x80\x61\x65\x97\xcc\xfa\xdc\xb8\xa6\x14\x15\x49\x33\xbc\x37\x58\x9c\x85\xc7\x76\xe3\x4e\x5a\x90\x66\x0f\x59\xa6\x5b\x5e\x93\xad\x43\x88\x42\xf9\x82\xd0\x2b\x04\x1e\x6d\xbd\xdf\x17\x10\x99\xf8\xdb\x70\x99\x57\x31\xa0\xdb\x8c\x46\x25\xc9\xbc\xa7\x10\x80\x59\x61\xfb\x17\x6d\xae\x81\x97\x68\xfc\xad\x7f\xf9\xbf\xce\x36\x40\x3c\xa7\xf7\x83\xe7\x61\x37\x26\xd7\xdc\x59\xf2\x4e\x24\x7c\xf1\x50\x68\xff\x3b\x19\xc7\x25\xfa\xd6\x5e\xa8\xe8\xa7\xf7\x22\xd5\x28\xc9\x5f\xce\xf1\xc0\xcc\x79\xd1\x8e\xf0\x7c\xee\x8b\x01\x1e\xea\xbd\x99\x21\x63\x4d\x76\xa6\x1a\x8a\x3c\x89\x31\xb8\x27\xe8\x18\x98\x81\xf8\x1f\x7a\x17\x5f\x21\xfb\x03\x78\xb8\x18\x8e\x58\xbd\xb2\x01\x7b\xef\x39\x0f\x18\x00\xd9\xd7\x4f\x26\x3a\x81\xdf\x8e\x67\x52\x2d\x09\x2e\x77\x5d\x01\xe0\x04\xe7\xf8\xd8\x28\x1a\xe2\xc2\xfd\xf8\xc3\xa4\x45\xf9\xef\xf7\xfd\xf1\x3f\x26\x1a\x77\x3d\xdf\x2d\xd9\xcc\x6b\xa5\x58\x5d\x99\x0c\x99\x5e\x6e\xb8\x9d\xff\xd9\xff\x0a\x9d\xbb\x76\xce\x5e\x10\xdd\x02\x72\xd5\x00\x14\x97\x88\x13\x66\xf5\xd6\x36\xa9\xcc\xea\xa2\x83\x22\x8d\x3a\xc6\x14\xdb\x21\x7a\xb8\x91\xd6\x68\x9d\xbe\xb9\x50\xe1\x20\x0c\x3d\xe5\x3b\xc5\xda\x07\xf1\xd3\x63\xda\xe9\xbe\x6e\xc3\x6e\xda\x6e\x68\x7d\x26\x29\x0f\x7a\xbc\xa2\x68\xa7\xfa\x03\xd9\x31\x88\x64\xed\xa9\xa1\x1e\x3b\x26\x14\x06\x05\x92\x0a\xc1\x3a\xde\xc1\xb5\x54\x8c\x9a\x7a\x32\x15\xa5\x87\x6b\x7e\x94\x1a\xfa\x1c\xb5\xd7\xf7\xf0\xc1\x16\x30\xcd\x42\x9f\x3b\x2b\x37\xdc\x76\xc6\xcb\xea\x4f\x3b\x72\x6a\xa8\xa5\xf8\xb9\xf7\x05\xb0\x5d\x7e\x94\x51\x95\x6f\x8a\xf1\x3c\xe0\xa8\x59\x55\xc7\x13\x5d\x64\xad\xe5\x49\x6e\xa5\x42\xe7\x0f\x8d\xa5\xb5\x73\xaa\xf1\x37\x08\x5d\xc9\x6c\x69\x27\x09\x96\x95\x67\x26\x68\xb3\xc7\xc6\xf9\x3c\x97\x7a\x4e\x8e\x9e\x77\x02\x95\xf2\x0d\x52\xdf\xf1\x87\xf8\xdb\xb2\x5e\xe7\xe7\x74\x02\x4e\xb9\xbe\x08\x12\x1e\xd7\x4b\x6d\x54\x62\xf4\xbb\x7d\xc2\x00\x38\x74\xca\xa3\x1b\xb7\x59\x5c\xd9\x3a\x99\xeb\xe1\xef\xf9\x28\xbb\x5f\xcb\x9e\x9c\x89\xdd\x31\xd4\x87\xfc\x0e\x20\xbb\xe1\x50"}, {{0xe4,0x2b,0x30,0xd4,0x9c,0x43,0xc4,0xfa,0xd8,0x3d,0xd5,0x1f,0xdc,0x2a,0x4a,0xc5,0x90,0x13,0x27,0xad,0xd8,0x00,0xb6,0x69,0x72,0xc8,0xc7,0x0b,0xde,0x18,0x0a,0xdc,},{0xf7,0x34,0xaa,0xfa,0xa4,0xdb,0xaf,0x31,0x5c,0x25,0x8c,0xca,0x8b,0xbc,0x1d,0x4f,0x34,0xe8,0x36,0x01,0x10,0x98,0x74,0x22,0x2a,0xa0,0x55,0x89,0xf3,0xa6,0x63,0x5f,},{0xff,0x8e,0x07,0x6e,0x34,0x3c,0x8b,0x73,0xaa,0x45,0x3b,0xfe,0xe9,0xb2,0xba,0xb6,0xd5,0xc2,0xf7,0x4c,0x35,0xe1,0xba,0xd1,0xe5,0x2a,0xe7,0x77,0xd6,0x9f,0x79,0x76,0x40,0x83,0xf9,0x94,0x36,0x8a,0x1a,0xc8,0x51,0xa6,0x41,0xcd,0x24,0x70,0x08,0xa3,0x4f,0x3b,0x60,0x89,0x62,0xf4,0xdd,0x51,0x09,0xac,0x71,0xcc,0xe9,0x78,0xec,0x02,},"\x0d\x49\x70\x51\x86\x1e\x22\xd8\xa9\xc6\x0e\x5f\x7d\xe6\xc8\x95\xcb\xa3\x35\xb2\xe8\x2e\x60\x21\x18\xad\x83\x42\xb4\xd4\xed\xaa\x80\xf9\x5e\xfb\xb5\x9c\xfd\xa1\xfc\xc0\x29\x17\x25\x70\x0e\x8a\x81\xbb\x12\xa0\xb8\x62\x3b\x1f\xe2\x89\x1b\x8d\x98\xf7\xa8\x4c\x59\xfd\x92\xf8\xa7\xad\xfc\x06\x50\x42\xf7\xf4\xfd\x7e\x1a\x79\xf5\x5a\x1d\x4d\x5e\x54\xe0\x4e\x67\x2f\x1c\x9e\x4c\x4c\xd8\xd0\x00\x3f\x3c\xd5\x4b\x76\xe2\x16\x3d\xd7\x37\xac\xb2\xde\x5c\x26\x3a\xc1\x02\xa4\x8f\x69\x6b\x60\xca\xf9\xbe\x39\xc6\x65\xcc\xe1\xe0\xf3\xd4\x98\x55\x3f\x57\x90\x61\x88\x9a\x5e\xc5\x60\x3e\x4d\x14\x1c\xfd\xed\xe8\xe7\x31\x75\x72\xcf\xe7\x6a\x0f\x48\xe4\xae\x06\x06\x2c\x91\x57\xb5\xea\xac\x34\x68\x93\x81\x92\xdb\x4b\x16\x10\x5c\x73\x64\xa9\x44\x32\xb2\x15\xa7\x17\x97\xfe\xe1\x4c\x3c\x9c\xe2\xf7\x46\xed\x79\x03\x02\xfc\x41\xdc\x49\x2d\x37\xd9\xef\x02\x4a\xb5\x1d\xa3\xbd\xaf\x0f\x81\xd9\xa9\x30\xaa\x0e\x02\x5c\x04\xfd\x71\x02\x6b\x6a\xfe\xb7\xed\x01\xa9\x1a\x1e\xfd\x6c\x39\xf5\xe4\x47\xc6\x6d\xd3\x8a\x76\x56\xc6\x13\xd0\x21\x26\xf3\x58\x5d\xfa\xa0\x2d\xf9\x30\x25\x3f\x83\xbd\x42\x19\x64\x63\xeb\xc5\x0f\x8c\xfc\x94\x9e\xd3\x50\x39\x2e\x61\xce\xec\x13\x09\xda\x15\xa4\x32\xf8\x0d\xfe\x94\x8e\x26\x1c\xe6\xd8\x42\x1c\x54\x59\xcd\x21\xf3\xff\xa2\xed\xb5\x00\x98\x2b\x2a\xbf\xa5\x2e\x82\x43\x7c\xa2\x30\xf6\x09\x11\x63\x20\xd9\x89\x3e\xb8\x2a\x14\xdf\x72\xb7\x73\x66\x67\x51\x6f\xc0\x12\xb2\x8a\x03\xc9\xdd\x88\xea\x43\x08\xd8\xce\xea\x44\xcc\x60\x44\x54\xcd\xfa\x2c\x79\x76\x15\xbc\x0a\x6b\x3e\x00\x89\xaf\x0a\x81\xbe\x54\xd1\xb1\x10\xa1\x3a\xb9\x11\xb4\x52\xc3\x42\x80\x0c\xee\x2a\xd2\x39\xa2\xb1\x88\xa7\xfa\x87\x5e\x94\x1d\xaa\xeb\xcf\xc8\x8b\x70\xae\x4b\x1c\x57\x5c\xdb\x6e\x6d\x89\x44\x81\x36\xf6\x0e\xe8\x1c\x70\x3c\x47\x82\x2d\x2c\x0e\x50\xc7\xf1\xe8\xb7\xfc\x7e\xbd\x80\x78\x9f\xcd\x7e\x06\xc7\xe5\x0b\x5f\xc8\xb7\x76\xe8\xb9\xa4\xcd\x59\x05\xa2\x90\x69\xbc\x3a\x55\x8d\x7c\xab\xce\x2a\xf4\xf3\x10\x76\x7d\x5b\x11\x7e\x30\x76\xb3\xa0\xd5\x27\x17\x55\x43\xb2\xcc\xea\x28\xd5\xf7\x16\xfa\xc3\x2e\xfe\xd3\xd2\xe0\x27\x6b\xe4\x4a\x89\x56\xfc\x82\x40\xf2\xdb\x33\x97\x61\x4f\x2f\x2d\xa0\x21\x66\x69\x4e\xc6\xa7\xfe\xec\x6e\xce\x39\xd7\x2b\x64\xbb\xc6\xb4\x76\xa4\xf8\x4f\x8d\x87\x93\x80\xa3\x84\x88\xe4\xd6\xe5\x8c\xac\x03\x90\xae\x25\xa5\xfc\xb7\x3d\x47\x41\x4b\x4c\x26\xbb\xb9\xb4\xcc\x66\xe4\x25\x94\xbd\x56\xd8\x41\xa3\x60\x92\x34\x91\xd1\x17\xbe\x2c\x6e\xb2\x32\x0f\x3c\x61\x75\xe4\x4e\x27\xb6\x65\x3c\x5d\xac\x6f\xae\x73\x60\x0b\x67\x96\x0d\xca\x50\xaa\x85\x5a\x89\xe0\xff\x51\x1e\xa0\x4f\x14\x3e\x89\xf1\xda\x02\x84\x76\xbe\x4b\xf6\xd9\x4c\x80\xff\x72\x63\x39\xe8\xbc\xfb\x7d\xd9\xf8\xcf\x20\x22\x59\xc0\xac\xb6\x27\x6c\x28\x1e\x38\x47\xc2\xcc\x8d\x2f\xba\x84\x43\x8d\x2d\x3c\x60\x31\xf2\xa7\xb9\x5c\x1d\x8f\x9f\x3c\xc8\x6a\x5e\xff\x65\xcc\x01\x1d\xe9\x5a\xd8\x96\x85\x8e\x1f\x7f\x6d\x6b\x94\xbf\x49\xdf\xff\x5d\xe2\xd7\xfd\x71\xef\x10\x81\x34\x28\x5f\x61\xae\x47\x54\x83\x44\x2d\xc9\x0b\xf0\x13\xfa\xed\xf3\x77\x1c\x47\xc5\xb9\x6d\xc3\xcf\x8e\x48\x51\x00\x60\xad\x8d\x45\xfd\x54\x61\x62\x27\x80\xd8\x69\xd4\x61\x7b\x57\xfe\x3c\xb5\xcc\x02\x03\x15\x3a\xae"}, {{0x5c,0xb5,0x14,0x21,0x74,0x82,0xbf,0x42,0xf6,0x11,0xfc,0xec,0x36,0xa5,0x28,0x68,0x07,0xc2,0xbd,0xbb,0x56,0x96,0x76,0x91,0x35,0x3f,0x54,0x31,0x0e,0x1a,0xd5,0x53,},{0x28,0x06,0x99,0x00,0x3d,0x5d,0x3e,0x1c,0x05,0xad,0x10,0xfb,0x10,0x95,0x9b,0xbc,0x59,0x5c,0xfe,0x21,0x30,0x69,0x96,0x5c,0xd8,0xcf,0x39,0xdd,0x42,0x6a,0x05,0x68,},{0xd5,0x3e,0xe2,0xe0,0xf0,0xfd,0x65,0x7b,0x20,0x52,0x47,0x8f,0xd1,0x5d,0xf1,0xd3,0x8f,0xe0,0xe9,0x3a,0x54,0x83,0xeb,0x4a,0x6e,0x7d,0xe9,0x3d,0x02,0xa4,0xcd,0x54,0x4d,0x8f,0xdd,0xdc,0xea,0x82,0x2b,0x71,0x57,0x6e,0xd0,0x28,0x53,0xd9,0xa6,0xb1,0x4e,0x1a,0x54,0x8a,0xef,0xe9,0x0d,0x92,0xf8,0x83,0x79,0x2b,0x7f,0x1d,0x86,0x09,},"\x2f\x57\x25\x8c\xca\x79\x32\xe5\x8b\xed\x54\x6c\xb0\x04\x11\x15\xbb\xad\x23\xd1\x83\x46\xef\x7a\xb5\xe3\x11\x00\x82\xb3\xa9\x71\x2f\x6c\xbe\x12\x70\xe6\xdc\x0c\xea\x33\x64\xa0\x6a\x5f\x2f\x28\x3e\xc3\x9b\x63\x05\x8d\x34\xd5\x99\x79\x07\x2f\xcb\xbd\x7a\x5d\x0f\x44\x2b\xbd\xf0\x82\xd5\xbf\xe2\x99\x8a\xeb\x51\xbd\x26\x12\x78\x03\xe5\xc7\x96\xc3\x88\x43\x20\x0a\xe2\xf6\xe6\x05\xaf\x31\x2f\x54\xfd\xff\x17\xed\x1d\xfa\xa8\x9d\x28\xfa\x67\xdc\xe4\x62\xde\x4f\xe2\x52\x68\x21\x2b\x28\x2e\x22\x2a\x44\x3e\x2f\x31\xe2\x69\x05\x41\x71\xaa\x73\xc7\x19\xa8\x96\xcd\xb7\xa5\x39\xdf\xd1\xd4\x29\x91\x97\x81\x97\xd7\xc4\xf2\xd3\x0a\x64\x1b\xe3\x4b\xf1\x38\x0a\x4f\x4d\xc6\xd9\xb1\x01\x63\x66\x36\xa4\x96\xbe\xb3\x57\xe3\x47\xc1\x66\x65\x16\xdf\x8e\xb5\x60\xa0\xe0\xd1\xe1\x52\x9c\xe3\x6a\x60\xe0\x0e\xd2\x78\xda\x38\x02\xbe\x19\x23\x42\x98\x9b\xb6\x11\xb4\xe3\xcb\xd9\xc3\x7e\x8c\xce\x07\xef\xc1\x2d\x29\xbe\xfd\x7e\x2f\x3a\xdb\x13\xd2\x8f\x70\x8d\x97\xb6\x3e\x10\x74\x82\xc8\x62\x95\x6d\x7c\xe8\xdf\xc2\xaf\x5c\xac\x8d\x51\x65\x92\x67\xb0\xbb\xed\xdd\x5e\xfa\x41\x4d\xde\xab\xd1\x7b\x23\xca\x6e\x84\x3f\xf4\x9e\xff\xc8\x2a\x5d\x07\xe3\x6a\x83\xb6\x7c\x2a\xd7\xe4\x8e\xb9\x99\x0b\x42\x1c\x55\x58\x00\x9b\xd6\x93\x4e\x86\xd5\x4a\x8a\x6a\xc4\x07\x87\x96\xe3\x05\xc7\xcc\x81\x0d\x3f\x66\xea\x6b\x95\x04\xfe\x0a\xe6\x75\x7c\x50\x4c\x55\x52\x53\x0a\x6f\x8b\xbb\x52\x40\x9b\xe0\x79\xd8\xe4\xa2\x8a\x6f\xd7\xdc\x89\x35\xf8\xeb\x94\x98\xad\xc0\xf2\x3d\x08\x07\xec\x86\x29\x5f\x48\x98\xf5\xd0\x5e\x15\x0b\xdc\x43\xaa\x8b\x7b\xdc\x89\x3a\x0a\x68\x4c\x30\x63\x89\x8b\x6c\x95\xe7\xd5\x6a\x4c\x10\x26\x90\x43\x8e\x9d\xf9\x97\x58\xa9\x0f\x47\xc6\x08\xda\xcc\x4c\xa2\x40\x26\x6f\xab\xa3\x5f\xa1\xeb\x2e\xaa\xbe\x28\x8d\x2c\x2a\xd5\x0b\x6c\xbf\x10\x7c\x00\x25\x75\xe9\x1f\xf4\x72\xa4\x41\x79\x40\x66\x7b\xe8\x18\x01\x73\x85\x4c\x93\xdf\x84\x46\x4b\xcd\x31\x2b\x7a\x7a\xe4\xdc\x2b\x90\x59\xfb\xe6\xf8\x3f\x53\x80\x64\x25\xbd\xff\x03\x1c\x6a\xed\x6e\xfa\xfd\x9d\xe8\xdc\xd0\xdf\xab\xea\x8e\x6f\xa6\x81\xe9\x91\x93\xfb\x3c\x64\x7e\x44\x21\x12\xc9\xa2\x3f\x59\x6e\x65\x41\x1d\x8d\x6b\xfc\x39\x23\x00\x4e\xce\x91\xea\x6d\xeb\x88\x11\x11\xb1\xdc\x29\x94\x3f\x57\x89\x81\xee\x8c\x3b\xce\x85\x25\xf7\x85\x65\xf3\x4b\x85\xff\x20\x01\x5f\xea\xe8\x46\xf9\x5b\x18\x70\x0b\xc5\xcd\xf1\x4b\x2d\xb6\xca\xc6\x98\x14\xd6\x3d\x74\xbf\x20\x32\x93\x03\xe5\xca\x9f\x04\x73\x1f\x68\x81\xce\xc6\xd3\xab\xf8\x7f\x5e\xac\x08\x73\x4f\xaa\x34\xcf\xf4\xd3\xcd\x9a\x4a\x11\xd7\xb1\x2f\x73\x25\x3b\x4d\xd0\xa4\x31\x78\xf0\xd3\xc1\x9c\x0c\x40\xd9\xed\x91\x8d\xd1\x76\x46\xf6\x16\xaf\x79\xfd\xf6\x19\x42\x62\xf0\xfa\x4f\x71\xb3\x18\x7d\xed\xca\x48\xd9\xcb\xcc\x19\x93\x1a\x15\x19\x67\x74\x56\x25\x6e\xd3\x83\x54\x56\x7c\x3a\x67\x57\x1c\xdf\x82\x17\x0a\x2c\x85\xbd\x2c\x5e\x68\xe0\x5a\x0f\x3b\x93\x90\x3f\x19\x1b\x89\x4f\x84\x94\x6f\x89\x00\x05\x68\x05\x4c\x1c\xea\x9f\xd0\xb8\xbb\x55\x01\x95\x06\xc5\x43\x41\xc2\x49\x31\x98\x45\x48\xba\x45\x8a\x4d\x81\x30\x89\x89\x6e\x86\xa2\xdc\x33\xd9\x46\x04\x00\x3f\x35\x4a\x7c\xc9\x41\xc7\x54\xaa\xea\x24\x25\x3c\xbe\x4c\xf2\x14\x7f\xfe\xc5\xe7\xb9\x50\xcb\xf2\x8e\x28\x44\x81"}, {{0x87,0xd3,0xba,0x95,0xc4,0x0d,0xf8,0x00,0x69,0xb1,0x79,0x7d,0xdf,0x68,0xe8,0x66,0xe6,0x6d,0x46,0xc5,0x1f,0xde,0x60,0xe7,0x68,0xa9,0xdb,0xc5,0xc9,0x2f,0x57,0xa9,},{0x2b,0x81,0x2b,0x2c,0x9b,0x60,0xff,0x31,0x97,0x5c,0x42,0x9a,0x86,0x73,0x6d,0xcc,0x17,0xa5,0x8d,0x3d,0xc1,0xda,0xa3,0x46,0x23,0xa4,0xbb,0xcb,0xe2,0xcc,0x05,0x81,},{0xfa,0x0d,0x12,0xcd,0x53,0x23,0x6c,0x41,0x08,0x6b,0xea,0x8c,0x0c,0xc6,0x0b,0x77,0x64,0xa3,0xed,0x72,0xbd,0xeb,0x9d,0x1a,0xe5,0xee,0xac,0xb4,0x88,0x11,0xfe,0x52,0x97,0x62,0xa2,0xc6,0xf2,0xbb,0x06,0xd9,0xb3,0x18,0x21,0x8d,0x96,0x8f,0x64,0x44,0x35,0x49,0x7a,0x1b,0xd0,0xd0,0xd8,0xc1,0x61,0x2a,0xb8,0x99,0x6d,0x98,0xd7,0x07,},"\xe1\x12\x56\xf8\x2a\xd7\x6f\x3f\x4a\x49\xd7\xba\xd3\xce\xd8\x71\x8d\x36\xd2\xf2\xbb\x3d\x31\xbb\x61\xed\xd1\xec\xbc\xee\x66\x21\xfd\x2e\xee\xd3\xe3\xde\xb5\x97\xb1\x49\xff\x71\xb8\x51\xf6\x1c\x8c\x68\x19\xe1\x31\xf9\xa2\xaf\x76\x73\xc3\xf2\x07\x02\xac\xfd\xc8\xb8\xf9\x06\x4b\x41\x5c\x9a\x3e\x35\x56\x8e\x37\x1d\x74\x0a\x38\x12\x7c\x1f\x27\xb3\x91\xb4\x5d\x07\x04\x5a\xea\xf0\x0a\x54\xe5\xb7\xfa\x54\x8a\xfb\x5f\x96\xfe\xb5\xf5\xb4\x4f\x60\xcd\x17\x07\xe8\xfa\x95\x67\xf7\x80\x6e\x15\xf6\xa0\x1a\xa0\x20\x77\x73\x3f\xe7\x38\xb0\x8f\x21\xef\xbc\xf9\x8c\x19\xd5\xb9\x70\xe6\x16\x3e\x5f\xe8\xf4\x80\x0e\xf9\xed\x22\xa0\xf9\xb5\x12\x6f\xf1\xeb\x1c\x7d\x65\x01\x9c\x8b\x44\x03\x91\x92\x70\x29\xb8\x13\xda\xb7\xc7\xe8\x63\xd4\x82\x29\xf8\xdf\x85\x39\x43\x45\xfc\xc8\x8a\x30\x0f\x60\xa8\xd5\x16\xd8\x77\xa5\xa3\xa7\xe3\xc4\x9a\x9e\xb0\x6c\xd9\xf2\x66\x5c\xe2\xa8\x90\x22\x96\x2b\x1d\x49\x59\x2b\x09\xc7\x54\x3d\xa8\x35\xce\x63\xbc\x9a\xbb\x82\x21\x45\x76\x2b\x71\xcb\xe1\x50\x29\x2c\xe5\xc8\x70\x4e\x5a\xd3\x4f\xb4\x59\x2f\x97\x20\x44\xe4\x3e\x69\xf0\xe1\x67\x2d\x6c\x83\xcf\x25\xaa\xc6\x8e\xfe\x3d\x27\xaf\x2a\xd3\x42\x74\xb9\xd2\xb7\x77\x42\xd9\xc6\xdf\xbd\x57\xf9\x2f\xf6\x4d\x3e\x4c\x67\xc5\x41\xd8\x50\x2a\x7d\x03\x18\x95\xaf\x85\x31\x9a\x4e\xae\x2d\x25\x43\x35\x83\x5e\xff\x11\xe7\xa3\x67\x1a\x6a\x0d\x21\xb7\x2c\xe1\xfc\x2a\xcb\xa1\xa9\x20\x18\x38\x34\xbc\x0a\x4b\x73\xf6\x39\xff\xcb\x0f\x6b\x81\xcd\x92\x0f\x2e\x94\x20\xd6\x12\x16\x6d\x56\x82\xa0\x60\x60\xea\x0b\x6f\xa6\x95\xfe\xcc\x77\x04\xbb\xe4\xb0\x52\xaa\x3e\xc8\xf7\x20\xf7\xd4\xf3\x2e\x8a\xff\x86\xb8\x0b\x8c\x1c\xc1\x27\x64\xa0\x48\x74\x03\x7c\x31\x03\xe9\xdf\xec\xb8\xf7\xab\xcb\x0e\x07\x3b\x23\xe6\x7c\xa0\xa9\xb1\xfc\x72\x99\x3a\xbf\x31\xdb\xc2\x4a\x8f\xee\x09\x5b\x32\x51\xc2\x26\x26\xaf\x5d\xd1\xb6\xd3\x4b\xe5\xea\x06\xa0\x2a\xe1\x76\xc7\xb8\xcb\x9d\x06\x35\x01\xbe\x6f\x61\x20\x82\x88\x9f\xdb\xdc\xbf\xad\xc3\x3a\x0d\x31\x1b\x08\x0b\x8d\x64\xe4\x9f\x16\xb1\x6d\xd8\xed\xd3\xb2\xed\x11\x93\xa7\x4e\x5b\xe5\x07\x60\x9b\x04\x27\x27\xcc\xf0\x8a\xfb\x05\xcc\x6c\x50\x52\x4e\xf0\xe2\x66\x46\x21\xdc\x8b\x05\xb1\x5f\xfa\x81\xab\x6f\x7e\x3c\x8a\x5b\xb3\xea\xb1\xf6\x8e\x36\x56\xc1\x19\xd9\x69\xe4\x14\x4c\xf3\x28\x5a\xf2\x3c\x04\xdb\xec\xc0\x38\xae\xfd\x91\x83\xc4\xe7\x24\x47\xb2\xaa\xa8\x31\x5f\x46\x96\xce\x6d\x1e\xf4\x29\xba\x0e\x5c\x3d\x5f\xfa\x7f\x05\x0b\xe3\x9c\x7f\x61\x2f\x4e\x10\xf8\xef\x07\x0d\xf7\x2f\x8a\xdd\xbe\xaf\x33\x39\xc1\xad\x8b\x5f\xc3\x9a\x2e\xcf\x29\xa8\x7f\x82\xe2\x9a\x01\x17\xba\xac\x66\x25\xad\x5c\x80\xcf\xe7\x59\xfa\x1d\xbc\xfa\xa1\x2b\x37\x44\x77\xd8\x0b\xfc\xf0\x67\x96\xc3\x0f\x2c\x39\xcf\x03\x03\xd0\x0d\xc5\x6a\x32\xd1\xd0\x39\x59\x2d\xdb\x06\xc2\x2a\xa0\x68\x84\x1c\x0b\x46\xfd\x48\xdf\x8f\xbb\x74\x92\xcc\xbc\x59\x0c\x56\x3c\x8f\xec\xce\x42\x63\xc8\xc7\x53\x92\x18\xbb\x97\xb3\x57\x11\x53\x7e\x98\x81\x95\xdb\xf5\xbc\xd5\xcc\xaf\x06\xfa\xf5\x08\x47\x09\x77\xa5\x35\x8e\x6f\x02\x60\x83\x49\xfb\xb9\x9a\x23\xfb\xe3\x6b\x8c\x97\x15\x5a\xdc\x24\x6a\xd7\xd9\x3a\x8c\x20\x3f\x75\x44\x6c\x83\xc4\x34\x2c\x35\xba\x10\x4e\xcc\x67\xe6\x69\xdb\x4a\x95\x46\x6e\xe6\x8f\x45\x8a"}, {{0x7c,0x27,0xae,0x47,0x07,0x2b,0x0c,0x9b,0x9c,0x2c,0x35,0x1f,0x13,0x27,0x89,0x98,0x95,0xef,0xa5,0x36,0xc9,0xc0,0x67,0xd0,0xe0,0xce,0x8e,0x82,0xe6,0x29,0x27,0x93,},{0xf9,0xfe,0xbd,0x12,0x1e,0x17,0xdb,0x72,0x29,0xb5,0x67,0x09,0x02,0x18,0x49,0xc3,0x5d,0x69,0xfa,0x08,0xb5,0x06,0x20,0xe6,0x67,0xf8,0x42,0xec,0x7a,0xc7,0x82,0xdc,},{0x32,0x71,0x96,0xdd,0xd4,0x3b,0xb6,0x02,0xd0,0x4d,0x19,0x64,0xcc,0xc0,0x59,0xed,0x62,0x7c,0xef,0x0a,0x88,0xd8,0xad,0x91,0xbe,0x49,0x31,0xf1,0x7c,0x25,0x0d,0x55,0x29,0xf5,0x52,0x79,0x4a,0x3e,0x26,0x9d,0x17,0xa6,0x3b,0xd3,0x29,0x33,0xeb,0x5e,0x51,0x9c,0x1d,0x50,0x65,0x74,0x77,0x0a,0xe4,0xa7,0x29,0x64,0xe0,0x6f,0x7d,0x00,},"\x15\x47\x87\x6a\x98\x8d\x1b\xe7\x14\xa4\x2f\xb9\x1c\xb0\x37\x63\xf1\x91\x3a\x89\x2e\xcb\xd4\xde\x2c\xcf\x83\x44\xd2\x07\x58\xb7\xb6\xd0\x02\x59\x10\x1f\xe9\x72\x25\xb2\x97\xf8\x7b\xfe\x22\x20\x04\x32\x5d\xb7\xf6\x32\xce\xaf\xfb\xd1\x34\xc9\x6c\xbd\x57\xe9\x85\xbe\xc8\x43\x4f\x81\xa4\xee\x6a\xf8\x5c\x3f\xad\xe5\x0e\x4c\x4e\xf2\x0c\xb0\x39\x35\x45\xe4\xd4\xa8\x6e\x1f\xa3\x9a\xaf\x33\x3f\xe4\xde\xd0\x54\xbf\xc0\x50\xa8\x98\x3a\x03\xdd\x1e\xcf\x2b\x5e\x95\x17\xba\xf9\xe1\x15\x21\x29\xa8\xa7\x59\x35\x71\x1e\xdb\x20\xaf\x5c\x8c\xf9\xc6\x94\xa3\x3c\xee\x45\x1c\xd9\x50\xb2\xff\xf0\x8e\x31\x58\xc5\xcf\xb7\xb1\x5c\xb3\xe9\x0d\x46\xf4\x94\xb6\xa1\x08\xd8\x88\x8d\x5e\xc2\x9a\x33\xc0\x66\x02\x3b\x49\x77\x09\xb2\xd9\x40\x1f\xea\xf2\xe7\x4f\xf2\x6c\x16\xd3\x6c\x39\xe6\x51\x7f\xf9\x54\xbd\x98\xbc\xe7\x70\x06\x71\x98\x8f\x66\xe8\x51\x07\x64\x4b\xa2\xea\x00\x7a\x13\x01\x8c\x1c\x14\x4e\x3c\x5b\xb8\x0d\xb9\x51\x1f\xcc\xa4\x10\x1b\xf4\x9f\x8c\x80\xff\x3c\xa7\xd2\x98\x25\x7c\xbf\xea\x62\x9f\x83\xd5\xe0\x66\x39\xd3\x1f\x63\x9d\xb4\xb8\x72\x6c\xbe\x22\x4d\x75\x88\x29\xba\xb1\x09\x05\x17\x1c\x9c\x0e\xc3\x70\xd5\x80\x31\xef\xe4\xcc\x5a\xe7\x2a\x49\x5a\xcf\xf6\xcb\x2e\xd9\xee\xc6\x58\xba\x11\x70\x88\xdd\x3c\x6e\xd1\xdf\x8f\x9c\xb1\x0b\xd4\xfe\x0e\x5e\x8a\xd9\xf5\x03\x4e\x34\x65\x2d\x98\x66\x8d\xb1\x5c\x85\x33\x39\x3a\x6e\x9e\xc0\x87\x0c\x35\x66\x6c\xe5\x4e\xfe\x2b\xcb\x45\xc3\x4a\x72\x30\xe6\xa7\x00\x67\x63\x49\xc7\xb3\xab\xf3\x1d\xe7\xb7\xb0\x52\x1f\x89\xb3\x0a\xc4\x03\x4c\x2a\x4b\xa8\x21\x8e\xef\xdf\x8d\x2a\x5c\x1f\x8e\xd9\xb7\x01\x57\x9e\x47\xaf\x8a\x52\x9a\x95\xa1\xff\x64\xd8\xfd\xb8\x85\xc3\x68\x39\xb4\xc5\xf6\xd7\x2a\x99\x25\x7e\x86\x78\xdc\xcf\x31\x27\x54\xb9\xd4\x61\x9b\xee\xce\xb8\x25\x52\x6d\xe6\x22\xbd\x96\x76\xfd\x5f\x35\x76\x93\xab\xab\x07\x8b\x9e\x03\xae\x21\xe8\x7c\xa1\x61\xe7\x78\xaf\x77\x09\x6e\xaa\xc2\xd2\xd3\x2b\xfe\xc8\xec\x94\xaf\x79\x65\xf6\x1d\x68\xef\x66\xa4\x52\x3c\x1c\xc7\x0c\x95\x19\xb0\x75\x0b\x3c\x9e\xed\x5a\xeb\xa9\xf0\xa9\xb7\xef\x52\xcd\x4a\x2d\xe2\x9b\x39\x5b\x70\x5f\xa5\x3f\x02\x8f\xa7\x66\x15\x9f\x20\xe7\x5f\x4d\x38\x4e\xc4\xfd\x66\xdf\x06\xe7\x44\xc9\x9a\xc8\x8c\xb8\x49\xc2\x85\x75\x7c\xc5\x57\xe2\xee\xdd\x86\x95\x9d\xa2\xc1\xb8\x1f\x5b\x27\x15\xa6\x51\x98\x48\x90\x1a\xe4\xf8\x9d\x09\x13\xc8\xde\x57\xc5\x3d\xad\xf2\xe5\xe1\xaa\x2a\x9c\x5f\x46\x4f\xc7\x61\x0e\x8e\xf5\xf5\xcd\xd8\x20\x3a\x67\xa9\x3c\x33\xa0\x6d\xab\x35\x8d\xc5\xae\x23\xed\xfe\xe6\x33\x42\x62\xf4\x7b\x19\xb1\x13\xd6\xca\xfe\xda\xc1\xb4\x39\x02\x53\x9d\x74\xfb\xa2\x9a\xaa\x7b\xce\x68\x88\x4b\x72\x61\x6a\x05\x42\xc9\xfc\x69\x54\x7c\xd1\x9a\xe1\xdf\x01\x72\x3a\xbd\xda\x65\xe9\xbf\xac\x5d\xa0\xd0\x42\x40\xc6\xa2\x17\x5c\x00\x62\xe4\xe1\xed\x8a\x5b\x39\x7a\xfc\xd4\xde\x38\xe8\x62\x09\x27\x2c\x7a\x42\x4b\x5a\xe8\xd5\xa4\x0b\x48\x4c\xe1\xb4\x70\x4a\xf2\x83\x16\x09\xad\x0f\x36\xe9\x0e\x07\xb2\xaf\xed\x01\xdc\x05\x57\x4a\xd3\x97\x17\x23\xc5\xb5\xc1\xdd\xd4\xfc\x8b\xd2\x63\xbc\xdf\x56\x8a\xf7\x5e\x73\xd8\xab\xd1\x00\x8c\x9e\xc7\x12\xf8\x0f\xfc\x65\xac\x34\xe2\xa7\x93\x04\xea\xde\x1d\x2a\x1d\xff\xec\x0e\x4c\x98\xc3\x58\x24\x68\xf3\x20\xbf\x8f\x66"}, {{0x08,0xed,0xdc,0xb5,0x62,0x5a,0xe1,0x9f,0xfe,0x7b,0x49,0xa7,0xdc,0x82,0x9c,0x89,0x3c,0x75,0x38,0xb0,0x88,0x5e,0x18,0xf9,0x8d,0xb7,0x8c,0x8b,0xeb,0x56,0x9c,0x26,},{0x83,0x47,0x8b,0x1c,0x58,0x57,0x6a,0x0d,0x18,0x34,0xb2,0x8d,0x46,0xfb,0x80,0x51,0x6d,0x6f,0xb6,0xf9,0xf5,0x91,0x69,0x4b,0x44,0x35,0x2e,0xec,0xd1,0xe7,0xe8,0x9a,},{0xec,0xe7,0x53,0x22,0x99,0x51,0x54,0xb2,0x92,0x43,0x7e,0x47,0xd3,0x8a,0x6a,0x70,0xaf,0x37,0xe2,0x02,0x07,0x16,0xfd,0xe4,0x6b,0xfd,0x39,0x3b,0x3d,0x36,0x9b,0xdd,0xb5,0x32,0x53,0xb5,0x56,0x62,0x1c,0xfb,0x34,0xc8,0xa9,0x02,0x54,0xe1,0x32,0xfd,0x28,0xec,0xd0,0x98,0x43,0x34,0x13,0xa2,0x1b,0xd3,0xa9,0x79,0x8c,0xa1,0xf3,0x09,},"\x01\x5b\x1d\x3e\xeb\x00\x92\x9e\xa8\x0b\xd8\x68\x7d\x18\x28\x6f\x0a\xdf\xe6\x45\xcc\xf2\x5a\x22\xb5\x06\x19\x21\xe2\xa0\x30\xfc\x76\xd0\x33\xfb\x53\xd0\x93\x7c\x69\xb3\x1c\x5b\xe4\x99\x13\xca\x1f\x2c\x3d\xca\x12\x1b\x2b\x87\xc5\x9b\x3c\x84\xc7\xae\x52\xaf\x19\xc6\xb9\xfa\x1b\xd6\x75\xfb\x6d\xd8\xb3\x29\xd5\x66\x87\x86\xdc\x78\x83\xe2\xd2\xe8\x58\x6f\xf4\x12\x8b\x90\xde\xe8\x4b\xe0\xab\x54\xd6\x81\x3f\x7a\x8c\x61\x34\x75\x71\x73\x98\x17\x75\xde\x84\xc4\xdd\x39\xe3\x36\xf8\xa4\xef\x8d\xca\xde\xc9\x43\xe9\x0d\x42\x1b\x22\x9c\x11\x78\x5f\xcd\x3f\xe9\x63\x03\x74\x58\xe7\x6c\x82\x0b\x3b\xc2\xc9\x47\x60\x01\x26\x2b\x26\x1d\x28\xb6\x5b\x48\x9d\x76\xb4\xbe\x23\x65\xe4\xa8\x0f\xa8\x71\xb0\xa5\x3b\x6a\x5f\xb2\x43\x68\x82\x35\xac\xc5\xf4\x77\x4d\xb1\x5d\x47\xb4\x2d\xd6\xc8\xd9\xe1\x2d\xcb\x0b\x5d\x98\x0d\xab\x0f\x3a\xd8\xa4\x96\xf7\x6e\x50\x06\xc2\xca\x82\x67\x5f\xf1\x94\xca\xf8\x07\x0d\x04\xbd\x38\x4f\x97\xe5\x83\xe7\x3c\xbc\x4f\x7f\x25\x73\x10\xa6\x1b\x1c\x80\x62\x32\x2d\xce\x81\x15\xf6\xdd\x93\xee\xe8\xa9\x3f\xfa\x5c\xab\x66\x34\x11\x6e\x1a\xb7\x05\xfa\x86\xc4\xa8\xea\xa5\x56\xc6\xc8\x9d\xbc\xad\x01\x04\x36\xbf\xfe\x45\x18\x22\x49\x1f\x1e\xa8\x6c\x20\x20\x7e\x4d\x12\xdf\xa3\x62\x61\x6c\x58\x9f\x97\x10\x7e\xa5\xd8\xbd\x8a\x72\x15\xc6\x00\xff\xc7\x0b\x80\xe2\xab\xb1\x5a\xcb\xe4\xbe\xcc\xa2\x0d\x72\x15\x5a\xbc\x3d\xbe\x8e\x37\xcf\xd7\x3f\x74\x20\xf2\x1c\x9b\xcd\x0c\x32\x73\x51\x3b\x50\x49\x67\x08\x74\xd5\x51\x9b\x3b\xc1\xdb\x52\x3c\x1d\x7e\x90\xc1\x65\x96\x7c\x4c\xb2\x84\x5a\x2e\x8b\x47\xb5\x88\x92\x54\xf5\x8a\x9b\xbb\x82\x6f\x94\x52\x1c\xdb\xd0\x41\x6f\x5f\x18\xff\x78\xa3\xfd\x0d\x7a\xb8\x97\x90\x62\x64\x48\x3c\xde\x64\x2d\x8e\x70\x3f\xd8\x2e\x5a\xe7\x0a\x9f\x97\x8f\x64\xee\x80\x52\x05\x54\x85\x05\x28\x58\x1c\xa9\xa0\xb3\x8c\x19\x6f\xd1\x66\xda\xe5\x87\x9b\x3f\x72\xf5\x9c\xde\x91\xcc\xa2\xc8\xbf\xaa\x47\x8b\x98\xd6\x24\xcd\x34\x72\x44\x02\xde\x57\x8e\x57\x54\x82\x5c\xe2\x27\xd2\x87\x1b\x45\xa5\x11\x71\x49\x51\x5b\xff\x81\xa9\x23\x24\x6f\x3b\x72\xd0\x7b\xd4\x58\x12\x5c\x70\xa1\x4d\x87\xc3\xfd\x13\x39\x2a\x3b\xda\x65\x53\x01\x6e\x8b\x2d\x07\xbd\xe9\x03\xcf\x68\x7b\x44\x5c\xfd\x6f\x76\x14\x92\xeb\xa4\x65\x22\xad\xa8\x4a\x96\x15\xd8\xda\x34\x98\xb2\x58\x06\x72\x69\xb7\x88\xe5\x59\xb6\x59\xd4\xb4\x8a\x87\xd8\x80\xd6\x37\x8b\xe6\xa8\x87\x46\xf3\x5b\x32\x2b\x04\x78\x45\xaa\xdc\x52\x3b\xea\xff\x30\x70\xf7\x21\xc3\xc0\x71\xea\xa3\x19\xb7\xa4\x7c\x1b\x20\xd3\x00\xdc\x03\x21\x90\x9b\x66\x9e\x57\xd3\x9a\x1c\xe2\xfd\xbe\xaa\xfa\xc2\x13\x50\xec\x2d\x6e\x6d\x5b\x88\x01\x86\xc0\x28\xa8\x61\x47\x4d\x50\x76\xa4\xad\xc5\x03\x2f\xec\x91\x40\x78\x7c\x36\x80\x6e\xf7\x9c\x72\xe3\xa1\x9d\x8c\x8b\x70\xbd\xaf\x20\x72\x95\x54\x2d\x96\x82\x5a\x5d\xe7\xdf\xe1\x08\xef\x57\x45\x99\xb8\xf1\x84\xc6\x3a\x5a\x13\x1d\xb1\x9b\x3b\xe5\x3f\x69\x9c\x10\xfc\x4c\xa7\xc6\x3f\x35\x00\x21\x1b\x35\x6a\x0a\xc6\x64\xdd\xfc\x1a\x92\x52\x59\x00\x26\x39\x5b\x47\x9b\xe9\xa5\xe4\x75\x84\x23\x56\x0b\x65\xbb\xce\x5b\xba\xde\x49\x3b\x13\xd0\x0c\xf8\xc1\xd3\xb7\xe9\x22\x13\x67\xe8\xf0\xea\xda\xb6\xe6\xd1\xb5\xff\xfd\xe7\xb2\xd7\x41\xfc\x2c\x83\x02\x24\xff\xf7\xff\x14\xae\x5c\x07"}, {{0x22,0x73,0x94,0x2d,0xb3,0xe5,0xd3,0x22,0x1e,0x80,0xd9,0x94,0xfd,0x5e,0x11,0x63,0xaf,0x55,0xf5,0x45,0x5a,0x8e,0x52,0xbe,0x85,0x2d,0xd3,0xad,0xf7,0x62,0xb4,0x40,},{0xbc,0x58,0x67,0x4e,0x99,0x6b,0x6f,0x3e,0x32,0x20,0xb3,0xe9,0x4f,0x00,0x67,0xbb,0x0e,0x9b,0x0d,0x97,0xd9,0xe1,0x05,0x9c,0xf1,0x39,0x97,0xa1,0x93,0xac,0x03,0x2a,},{0x87,0x4d,0xde,0xce,0x08,0xf3,0x0b,0x30,0xf0,0xd4,0xc8,0xb3,0xed,0x7c,0x61,0x51,0x49,0xb8,0xaa,0x74,0x0d,0xaa,0x34,0x7b,0x55,0x95,0x8f,0x1e,0x21,0x19,0x04,0x4f,0x69,0x5a,0x21,0x06,0x96,0x90,0x50,0x64,0x48,0xd8,0xe7,0x35,0x2b,0x90,0x46,0x51,0x1d,0x7f,0x39,0xa5,0x41,0x5b,0xb9,0xc5,0x70,0x50,0xfc,0x17,0x05,0x5c,0x38,0x08,},"\x8a\xa0\x50\x9e\x4b\x91\x41\x86\xff\xff\x07\xae\xb9\x7a\x04\xb5\x46\x27\x2d\xa2\xf9\xea\x7b\xfa\x65\x9a\x24\xcb\x50\x96\x6c\x23\xeb\x65\x42\xe4\xf2\x2d\xeb\xe3\x3b\x65\x76\x92\x45\xc4\xd1\xb5\xdc\xf3\xe6\x99\xc7\x0c\x5c\x2b\xaa\xd9\x73\x4e\x9d\x1e\xfe\x54\x48\xab\x71\xc8\x94\x6a\xec\xce\x52\x68\xd2\x6f\x19\xcf\x60\x5e\xb3\xbf\x38\xb0\xb3\x32\x26\x94\xac\x0d\xcb\x76\xb0\xf9\x46\x84\x2f\x6c\x5c\x68\xd7\x63\xfc\xe7\x47\x01\xbd\x6b\x78\xe7\x1c\x8c\x31\x42\xad\xd4\xed\x46\xe0\x96\x9b\xb9\x55\x5b\xe0\x36\x02\xd5\x62\xe4\xc8\x9f\x3a\x91\x99\x40\xe8\x83\xa9\x69\x40\x54\x2f\x27\x79\xfb\xf9\xec\x0a\x28\x5d\x9d\x8a\x72\x36\x01\x46\xe3\xff\xbd\xb7\x8d\x21\x03\x16\x03\x8d\x95\xd6\xab\x75\x71\x65\xaa\x94\x3c\x03\x3e\xeb\xb3\x21\xc0\x5a\x39\x95\x69\xbc\xf6\x6b\x4d\xdb\x0b\x2e\x0e\x33\xc4\x79\x3d\x81\x7c\xcf\xf5\x7f\x99\xb3\x18\x9c\x60\xd5\xd7\xb9\x41\x9d\x1e\xbc\x94\x3a\x79\xd4\xd8\xc3\x94\x56\x61\x80\x59\x4f\x55\x9a\x80\x52\x9c\xc1\xba\x28\x87\x7a\xf8\xf5\xc0\x50\x3e\x94\x3c\xd3\xaa\xd9\x98\x11\x64\x52\x72\xda\xfb\x49\xb9\xb3\xe6\x10\x7e\xb5\xe5\x18\x6e\x16\x08\x75\x71\x26\x05\x3d\xeb\xce\xc7\x5d\xd9\x56\x5c\xee\xa0\x6a\x13\x91\xa8\x22\x6d\x1f\x45\x93\x79\x22\x40\xcc\xd9\x7c\x67\xa6\xc2\xb1\x34\x4c\x22\xc9\x1f\x42\x03\x3a\xde\xf5\x28\x61\xf3\x2a\x4e\x07\x12\xa9\x17\x87\x9a\x0b\x05\x18\xb5\x42\x4b\xcd\xc0\x54\xb4\x4e\x97\x2e\xd2\x4d\x01\x68\x9f\x4f\x27\xf5\xf1\x76\xf0\xa5\x78\xab\x2d\x3c\x08\x78\x27\x2e\x8c\x08\xc2\x15\x82\x11\x86\x54\x12\x4d\xca\x39\x58\x53\x37\xc1\x3c\x18\x65\x81\x4c\xaf\x09\x96\xca\xdf\xa6\x5b\xe5\x80\xde\xe3\x22\xeb\xcc\xda\x70\x4b\x22\x80\x58\x26\x04\x06\x7d\xc3\xc6\xb1\xf7\xd8\xa2\x69\x78\xa6\x5c\xff\xd1\xed\x31\x96\xa2\xb0\x65\xfb\x3c\xaa\x79\xe6\xb5\xb6\x6c\x13\xd7\xbd\x7d\x0e\xc1\x4a\x3a\x4d\x58\x41\x3f\x21\x2f\x47\x1e\xca\xad\x3a\x84\xaf\x35\xe5\x98\xa8\x9f\xb3\x44\x7d\x33\x24\xf0\x20\xfb\xf1\xb7\x3e\x2a\x98\x6e\x0d\xa1\x6c\x01\x83\xbf\x92\xa3\x98\xc4\x19\xa0\xf9\xf3\x05\x37\xbe\xa0\xdf\x8d\xf2\xdc\x53\xc1\x54\xe8\xea\x16\x06\x89\xe7\xbb\x4d\x72\x9d\xd8\xab\x90\x03\x14\x27\xaa\x39\x45\x86\x3a\x85\xe8\x96\x52\xb9\x35\x38\x05\x16\x6f\x7c\x0a\x18\xc9\x39\x95\x4b\x27\x87\xc3\x70\x94\xf9\x25\x12\x72\x2e\x52\xb0\xc9\x76\xb9\xe4\x2a\xf4\x03\x9d\x2c\x05\x78\xff\x14\xfa\xe1\xd8\xc2\xd1\x39\x6b\xeb\x2d\x6a\xa6\xeb\xd5\x54\x74\xa9\x34\x98\x67\xa0\x3f\x3a\x99\xd7\x87\x80\x63\x4a\xb4\xb3\x5c\xfe\x1b\x87\xa9\x13\x32\x52\xa6\x98\xbc\x40\x7d\x63\x84\x28\x70\xe2\x2c\xcf\x39\x33\x62\x0a\xc0\x42\x3c\x3d\x1f\x68\x1d\xd7\x3c\x01\xd0\x6c\x3b\x94\x15\x06\xc9\x8e\xed\x9b\x78\x68\xe0\x17\xb7\xf9\x97\x16\xb0\xb7\x7f\x11\x32\x1e\x5a\xb2\x3d\xbf\xcf\xca\x93\x50\x84\x5e\xe1\x80\x44\x4c\x50\xff\x0a\x9c\x96\x5f\xcb\xf7\x77\x70\x8e\x4f\x34\xcc\xc6\x37\xc6\xa0\x8d\x85\x43\x84\xf8\xd3\xe2\x51\x69\x56\xc1\x51\xd0\x31\xbb\x1c\xbe\x71\x2a\x5e\xf9\xee\x16\x61\x92\x28\xbd\x29\x6f\x2a\xfe\x58\x2d\x99\x53\xd5\x90\xd1\x8b\xb2\x05\xf7\x0f\x84\x4c\x16\xc0\xa2\xd8\x31\x80\x37\xd4\x3d\xd8\x0f\x65\xc6\xa7\x53\xf2\xa8\xe2\x7c\x89\xc8\x3e\x7e\xd7\x0c\x52\xf7\x06\x2d\xfb\xb1\xf5\x44\xaa\x23\x6b\x5c\x70\x4e\x7b\x39\xce\x0a\x55\xfd\x46\x52\x80\x83\xca\x61"}, {{0xdb,0xfa,0x45,0xab,0xaa,0x55,0x41,0x52,0x38,0xb1,0x28,0x76,0x34,0xd5,0xee,0xc4,0x02,0xda,0xdf,0x62,0x2e,0x27,0x0c,0x04,0xa8,0x91,0x4c,0xed,0x27,0x0a,0x72,0xbe,},{0xc0,0xfe,0x32,0x35,0x81,0xea,0x29,0x67,0x50,0x79,0x7e,0xb5,0x50,0x8c,0xa1,0x9a,0x58,0x3b,0x53,0x7f,0xa7,0xdf,0x45,0x29,0xf0,0x80,0x4a,0x33,0xc1,0xa4,0xbe,0xf4,},{0xa4,0x62,0xa9,0xba,0xa5,0x6d,0xc0,0xf7,0xa7,0x1b,0xf8,0x7b,0x95,0xf4,0x8d,0x64,0x20,0x22,0xd9,0xd1,0x73,0x3e,0xe3,0x68,0x37,0x77,0xa3,0x78,0x22,0x28,0xac,0x85,0xfc,0xd8,0x30,0x26,0xbe,0x4c,0xa9,0x7a,0x34,0x5b,0x08,0x4f,0x50,0x87,0x4e,0x91,0x24,0xe1,0x6b,0xa1,0x7d,0xea,0xd4,0xad,0x85,0xc0,0xe5,0x6f,0x16,0xef,0x18,0x04,},"\xe2\x6e\x8d\xcb\x44\xe6\x41\xfc\x20\x08\x0e\x95\x47\x4b\xd3\x9d\x71\x6c\x5a\xfe\x5a\x1f\xfb\x05\x6d\x1e\xaa\xb0\xc4\x9f\x85\x70\x71\x7d\xb6\x43\x7a\x03\x22\x8a\x9a\xd9\xf4\xbb\x0b\x34\x3b\x95\xe1\x60\x23\xc0\x80\x7e\xb2\xa1\x51\x06\xa6\xeb\x12\xdc\x76\x68\x3e\x69\xdd\xa3\x36\x31\x48\xc5\xd7\xdd\x97\x13\xaf\x6f\x87\xa0\x94\x10\xea\x8f\x76\xb6\xb7\x8a\x11\x44\x29\xbc\x85\xf7\x84\x81\x2f\xca\x31\xac\xb0\x30\x95\x52\xcc\x18\x8c\x6e\x96\x97\x09\x3c\xf4\x04\xc6\xf0\xf4\xab\xe8\xa1\x60\x86\x73\xfd\xfa\x5e\xb7\x8f\x65\xfc\x1d\x49\xcd\xec\x40\x94\xb1\xbd\x23\x4a\x46\xe0\xec\x62\xa4\xb6\xd3\x1b\x82\x96\x11\x54\x01\x27\x87\x6b\xff\x4c\x17\x3d\xe0\x58\xcf\x61\x00\x4b\x01\x4a\x7b\xdf\x79\x3d\xfd\x6b\x63\xc5\x07\xd2\xb2\x3e\x0f\x56\xbc\x2f\xe6\xba\xf6\x37\xce\xe4\x0d\x18\x99\x22\x95\xd8\x48\xef\x49\x8f\x8a\x16\x1b\xd8\x7e\x60\xc9\x1f\x97\xa9\x1e\x9e\xf3\xf6\xd9\x7f\x2b\x2d\x21\x04\xba\x6f\xdd\xd6\xc6\x80\x70\x62\x73\xda\xe8\x7e\x6e\xec\x1a\xf2\xa4\x59\x84\x98\x50\x69\xe8\x09\xe8\xde\x32\xc1\x28\x89\x29\x9a\x32\xd4\x0f\x38\x77\x45\x99\xac\x33\x24\xb7\xcb\x0a\x4e\xa6\x32\xc5\xf9\x10\xad\x87\xf5\xad\xbf\xa5\xc3\xbb\x20\x49\x82\x79\xfd\x53\xc1\xc2\x67\xfe\x0a\x84\x77\x30\x85\xda\x26\x6b\x25\x3c\xd8\x53\xdf\x7e\x96\x35\x58\xcb\x06\x88\x07\x80\x97\x34\x23\xc5\x64\xcd\x0b\xcd\x6b\x93\x33\x4c\x19\x59\x53\xd7\xcd\x89\x9f\x8a\x54\x7d\x1a\x1a\x0a\x8d\xef\xf1\x38\x1b\x43\x21\x57\x47\x28\xcf\x71\xb9\x6f\xf2\x09\xe8\x99\xda\xa8\xf1\x3f\x41\xb2\x30\xe1\x7b\xff\xdf\xdd\x2a\x89\x43\xaa\x5d\x21\xe5\xf3\x6e\x1d\xa0\x7e\xdd\x6c\xee\x92\xdc\x48\xb5\xb2\xa7\x58\x01\x46\xa9\xba\xf7\x13\x95\x0c\xe6\x76\x25\x5a\x89\xe3\x4f\x87\x87\x54\x7d\x62\x86\x8d\xb1\x4b\xa4\x65\x94\xda\x31\x0d\x7e\x2d\x9e\x7c\x7d\xbe\x17\xdb\xd7\x1e\xb4\x7c\x56\xc5\x72\x1d\xc9\x6d\x69\x64\x70\x57\x37\x94\x80\x94\x11\xcd\xfa\x27\x6b\x05\x9d\x00\x07\xc2\x5d\x74\xb2\xa6\x7d\x38\x24\x6d\xe1\x1e\xf4\x6d\xfe\x26\x70\x92\x6f\xe4\xb6\x36\x56\x23\x1b\xc7\x26\x8b\xba\x23\xf3\x78\xe8\x4a\x42\x8c\x3c\xbf\x45\xcc\x53\x96\x78\xfd\x46\x7c\xd3\x3d\xd0\x75\x7c\xfa\x02\x4e\x54\xda\x1f\xf5\x4c\xe8\x20\x22\x9b\x77\x8b\x18\x4b\xe1\xfa\x2e\x84\x68\xcc\x19\x95\x59\x40\x73\x5e\xaa\xa8\x84\x02\x2f\x64\x18\xb0\xb1\xf2\x6b\xcc\xf1\x69\xf1\xbc\xac\x7d\x82\xa3\x5a\xb6\xef\x84\x7e\x1d\xba\x53\x7d\xca\xff\x57\x25\x0a\x8d\x1c\x71\xfa\xcb\x13\x4c\xd0\x6b\x01\xc4\x53\x19\x13\x27\x45\xdc\x48\x88\x88\xa1\xd7\x76\x1b\x84\x86\xa3\x7e\x69\x88\xa1\x12\x0b\xcc\x16\x82\xdb\xfc\x89\x14\x3f\xc3\x5b\x46\x93\x5d\x8a\xcf\x6e\xf3\xc4\x2f\x0f\x4b\xf6\x79\xdf\xd6\xff\x44\xb6\xad\xa2\x6b\x01\xa9\xf8\x9f\x37\x4c\x7d\x2e\xe4\x8d\xfe\x1a\x41\x0e\x89\x7c\xdf\xd9\x7f\x62\x6d\x26\x68\x50\x28\x14\x40\x07\x93\xb3\xb0\x7c\x87\x20\xbb\xdd\xc5\x9c\xb0\xf9\xde\x96\x4a\xe0\x75\xb4\xaf\x3d\xd4\xba\xf6\xd0\xe4\xf9\x4f\x29\x4e\x81\x09\xd6\x57\x7c\x4f\x8a\x9c\x7a\x5f\x7d\x69\x4b\xf8\x8f\x1a\x5e\xa7\xeb\xa0\xa6\x6d\xa6\xc7\x70\xc0\x8b\x3a\xbf\xfc\x53\x4d\xf2\x19\xdc\x3e\x33\x23\xb0\x22\xe9\x6c\xc8\x60\x02\xb1\x89\x18\x1a\x1d\x2b\x52\x7d\x27\x95\x0b\x7f\x42\x5a\x47\xda\x40\x13\x77\x8b\xd0\x0b\x71\x10\x59\x22\x20\x49\x21\xe9\xdc\x69\x2c\x23\x3f\x7b\xaa\x04"}, {{0xef,0x64,0xe1,0x7a,0x53,0xf7,0xfb,0xca,0xfe,0x3e,0xa4,0x68,0x76,0x84,0xa0,0xda,0xdb,0x18,0xd0,0x37,0x35,0xa4,0x0a,0x53,0xb3,0xed,0xb0,0x49,0x07,0xee,0x61,0x62,},{0x91,0x86,0xe6,0xbc,0x14,0x29,0x61,0xc4,0xd3,0xeb,0x36,0x9e,0x9e,0x11,0x57,0x82,0x92,0xde,0x5b,0x6a,0xf5,0x34,0xd4,0x23,0xff,0x24,0x0f,0xa2,0x6e,0x21,0xa7,0x81,},{0xf5,0x8f,0x39,0x6b,0xa2,0x7e,0x06,0x7a,0x5f,0xe0,0x03,0xe3,0x85,0x58,0x2a,0xe3,0x49,0x0e,0x05,0x95,0x77,0x15,0xd7,0x04,0xda,0x0d,0xa6,0x3a,0x64,0x19,0xd2,0xe4,0xf6,0xdc,0x66,0xb7,0xe8,0x8e,0x42,0x8a,0x6f,0x21,0xb9,0xea,0x20,0x22,0x99,0xa3,0xc3,0x6b,0x24,0x2b,0x0e,0xa0,0x64,0x76,0xff,0x12,0xd0,0xb6,0x58,0x0c,0x04,0x03,},"\x68\x82\x45\x6c\xc3\xd1\xad\x0d\xaa\x9b\x88\xef\xf0\x96\x9f\x15\xe9\x7b\x48\xd0\x51\x96\x7e\x13\x90\x84\x72\x25\xf2\x6a\xc2\x55\x59\xf0\x24\x6b\xf7\xd6\x83\xfa\x28\xec\xed\xad\x21\x49\x1d\x77\xbd\x26\x96\xfa\x83\x5d\x0f\xd1\x19\x88\x4f\xec\xe9\xd8\x03\x69\x1b\x2f\xd3\xde\x17\xee\x08\x7c\x74\x00\x7a\x7d\xe9\xbc\x65\x34\xbb\xfe\x95\xfd\x32\xe9\x7c\x37\x5f\x4c\xb6\x57\x31\xaa\x1e\x83\x46\xbe\xa2\x1b\xe9\xf2\xc3\xdc\x87\x4a\xf0\x43\x19\x06\xcc\xbc\x2c\x60\x01\x27\xf4\xd3\xb0\x69\xeb\x09\x1d\x16\x5e\xc4\x53\xe6\x72\xe9\x3c\xae\x8b\x72\xf0\x33\x71\xd8\xb8\xa8\x24\x4e\xc4\xec\x2e\x09\xf3\x1d\xf4\x02\x06\xa2\xb1\xc8\x4c\xaa\x1b\x99\x3c\xc6\x75\xfd\xe1\xc7\x9b\xd4\xa7\xd1\x59\x74\xfa\x29\xce\x2e\x89\x2c\x28\x99\xcf\x48\x2c\x3d\x96\x63\xf6\xd2\xa7\x97\x84\xf4\x1c\x1f\x58\x66\xd3\x7c\x85\x46\xf3\x57\xd5\x64\xd3\xc4\x21\x8d\xfa\x6d\x20\xb6\xc2\x82\xb4\x00\xfe\xdd\xe5\x24\x39\xd4\x72\x21\x2c\x57\x67\xa3\x5d\xa5\x20\x10\x32\xda\x87\x30\x96\x8b\x07\x20\xe8\xa6\x04\xde\x6c\x1b\xaa\x3f\x4e\x89\x6a\xc2\x61\x4f\xb1\xab\x6e\x3f\x6c\xf3\x87\xa8\xeb\x2f\xf8\xa9\x21\x47\xab\x34\x92\x38\x43\x2e\x50\x9d\x82\x9c\xb7\x5b\x2c\x17\x65\xc5\x12\x21\x84\x8e\x25\xaf\xff\x5f\x16\xe4\xdd\x0c\xd5\xc9\xf7\x13\xc4\xaa\xab\x2c\xe8\x36\xf8\x49\x45\x06\xb5\x30\x9d\xc2\xb0\xae\x74\x5b\xb9\xc4\x79\x80\x98\xfb\x86\x41\xd5\x20\xa0\x8b\x02\xf7\x5a\xd8\x0d\xbc\x2c\xe2\x9e\x89\x0b\x4d\x72\xa3\xff\xb2\xa1\xcb\xd5\x38\xe1\x22\x9f\x57\x9c\x29\xae\x66\xbc\xa8\x5e\x0f\xa0\x8c\x86\x47\xa1\xab\xcf\xe8\xa4\x9f\x5e\x50\x8d\x4d\x24\x95\x55\x66\x23\xd9\x26\xce\x49\xef\xa4\x35\x0a\xaa\xab\x5c\xec\x2c\xd8\x85\xbe\x1d\x63\x47\x5e\x3b\xab\x7c\x7c\xdc\x8d\x65\x61\x73\xb8\xd4\x56\x02\xf4\xb3\xd2\x81\x24\x1d\x17\x19\x03\x27\xb2\x4c\x38\x36\xb1\x93\x11\xa1\x93\xaf\x86\xa6\x76\x8f\x04\x85\x2a\xb0\x6e\x67\xc8\xea\xd5\x91\xcd\xcb\xf3\x78\x9c\x61\x32\x09\xcf\xe0\x3f\x58\xc0\x30\x5f\x63\x20\x3b\x48\x7f\x7c\x5f\xc0\x98\x87\x7e\xc9\x8a\x68\x9c\x9d\x35\xaf\x81\xe8\x40\x78\xd6\x6f\xe9\xe4\xec\xcb\xb1\xcc\x6c\x71\x99\x1c\x03\x01\x7b\xb8\x11\xf4\x1f\x07\xde\x68\xfa\xd1\x94\x14\x60\x61\x32\x4f\x3d\x0e\xf2\x17\xa5\x4c\xf3\x8f\x7a\x62\x5a\x38\x86\x9f\x67\xd0\xb7\x43\x1d\xf9\x37\xcd\xe3\x49\xc1\x75\xce\x8b\x26\xac\x88\xd3\x9a\x43\xe2\x79\xb0\x18\x76\x4e\xfa\x4d\xd6\x27\xcb\xf5\x91\xf6\x20\x9c\x4a\x5b\xb1\x9e\xbf\xa7\xc7\x13\x55\x92\xd0\x2e\x50\x1c\xae\x5e\x6b\x31\xc9\x0e\x72\xfa\xab\x47\xf7\xdc\xed\x2c\x48\xad\xf8\x84\x43\xb3\xed\xe6\x0c\xef\xb0\xd6\x37\x9d\x69\x22\xec\x43\x7f\x08\x6b\xad\x62\x17\xd4\xd4\xff\xef\x18\xe2\x25\x23\x66\x4b\xf4\xe9\xca\x1e\x65\xa2\x8c\x2a\x7a\x60\xc5\xf6\xbc\x90\x6b\x73\x7c\x29\x93\x5f\x90\x97\x46\x30\x48\x57\x5b\xef\xd1\xa2\x54\x9d\xc4\x74\xb1\x3e\x68\xae\xec\xf1\x66\x04\x3e\x07\x5a\xac\x51\x55\x40\xf8\x31\xb4\x30\x66\xce\xf9\x32\xe6\x3d\xcd\x5b\x37\xb6\x15\x78\xc3\x5b\x09\xe4\x5c\xc2\xa8\xde\xf5\x71\x03\xed\xfc\x5f\x64\x98\x31\xa8\x96\x1f\xe4\xa4\xb3\x72\x1f\x1d\x6d\xf4\xea\x9f\x03\x38\x81\xb4\x74\x30\x0e\x0f\x12\xcb\x9c\xd3\xba\xbd\xcf\xfb\xb9\x18\xdd\x9b\xb0\xe2\xf5\xb2\x10\x33\xe4\x30\x23\xa0\xd2\xe6\x6d\xa3\xab\x0f\x07\xee\x98\x8b\x16\x88\x9c\xa5\xd5\x1a\xbd\xc0\x5f\xde"}, {{0x33,0x47,0xdc,0x47,0xbb,0x3d,0x2e,0x5d,0x02,0x86,0xac,0x06,0xa5,0x4f,0xd9,0x21,0xc9,0xe9,0x6b,0x68,0x99,0x86,0x2a,0x54,0xe5,0xcc,0x81,0x15,0xd3,0xd0,0xba,0x99,},{0xd0,0x0b,0x64,0x5d,0x86,0xdb,0xb7,0xe5,0x24,0x75,0x7e,0xc7,0x78,0xc6,0x2b,0x7e,0x60,0xd0,0xb6,0x57,0x68,0x83,0x33,0x8c,0x9b,0x67,0xc2,0xc7,0xe4,0x50,0x92,0x68,},{0x9a,0xb4,0x29,0x9b,0x17,0x72,0x93,0x44,0x75,0x0b,0x69,0xdc,0x60,0x37,0x36,0x8c,0x98,0xf4,0x7b,0xe6,0x27,0xfb,0xd9,0xad,0xfd,0x8d,0xb3,0x9f,0x99,0x64,0xdd,0xb7,0xbc,0x92,0xd6,0x74,0xc7,0xbe,0x74,0x07,0x56,0x39,0x6b,0xaa,0xee,0xac,0xbf,0x74,0x94,0x7b,0x61,0x91,0xc6,0xed,0x1f,0x5d,0x32,0xa6,0x3d,0xf3,0x6d,0x54,0x26,0x01,},"\xe2\xf4\x8e\xdf\x9d\x64\x33\x20\xab\x99\x1c\x8f\xf9\xf6\xaa\x75\xfe\x06\x6e\x7d\x88\xff\x1e\x47\x2a\x5a\xc9\xc5\x18\xde\x1f\xb6\x29\x83\xb1\x00\x7f\x64\x22\x80\x91\x17\xbd\xbe\x8a\x0e\x57\x87\xf6\x6b\xb0\x57\xd2\x7f\x12\x9a\x20\x0b\x40\x57\x6e\x17\x19\xcf\x9e\x98\xfc\xb7\x2a\xf9\x4b\xb8\x2e\xe7\x0f\x37\x19\xa2\xe2\xcd\x9b\x64\x77\x7c\xea\x5e\x44\x64\x59\x87\x4b\x74\xbf\xbf\x56\xb2\xd2\x52\x64\x00\x59\x2a\x9b\x45\xa5\xcb\x79\x80\x92\xb6\x0a\x81\xb7\x1d\x82\xf0\x68\x5f\xae\x7f\x81\x0b\x52\xd2\x26\xad\xac\x7a\xd8\xa9\x18\x3f\x09\xfe\xbe\xe9\xd2\x50\x46\xc0\xfe\x30\x66\x81\xac\xe2\xbf\xf9\x1b\x34\x82\xb0\xbc\x30\xb2\x02\x1c\x43\x41\x64\x5d\x67\x51\x34\xfe\x30\x81\xc5\x1e\x5c\x59\xe4\x0b\x37\x5a\x14\x34\xf6\x3b\x42\x6e\x30\x53\x0d\xa9\x35\x3b\xb2\xa9\x42\x32\x20\x43\x4a\xe5\x9d\x7b\x6f\xdc\x14\x3f\x49\x82\xeb\x8c\xfa\x77\x51\xb7\x5b\xf3\xe9\xc9\x13\xc7\x3b\x76\x0b\x07\xd3\x95\x31\x0c\x59\xf3\xb7\x7e\xbf\x12\xed\x2d\x7b\x03\x59\x0d\x33\x17\xaf\x17\xdf\x42\x1e\x78\xb0\x84\x9f\xd5\x6d\x94\x5c\x56\x96\xa0\x40\xfc\xaa\x78\xa9\x3e\xcc\x16\xd5\xac\x34\x45\x06\x36\x11\xf3\x01\x3e\x9a\x3a\xe2\xe1\xc2\x70\xdd\x01\xa8\xff\xe3\xe6\x12\x6b\xc1\xe4\xc9\x5f\x65\x47\xa8\x65\x1f\x26\xb6\x40\x4e\x39\xee\x4c\xe7\x61\x89\x18\xf3\xf9\x37\xa5\x25\x73\xec\x27\x7b\x77\x1e\x91\xad\x09\x6f\xa1\x5c\x7a\x34\x0a\x80\x9b\x47\x03\x18\xa4\x63\x64\x23\xeb\x48\x88\xa1\x21\x60\xc4\x66\x3f\xce\x29\x96\xd6\x38\x89\x6c\x83\x9b\x2c\x7a\xd4\xb3\xa9\xb2\xe6\xcb\x71\xe9\x12\xfe\x39\xb8\x43\xc6\xe0\x83\x2e\xca\x22\xde\x93\x8b\x50\xae\x86\x3e\x48\x58\x2c\x10\x85\x12\x32\xf7\x5e\x52\x25\xb8\x89\x6b\x5a\x47\x0f\x81\x8b\x6f\xa3\x9e\xb7\xbb\x59\x03\x57\x67\x86\x12\xd2\x5f\xe1\xa4\x0e\xa1\xb9\xd7\x1d\x88\x09\x09\xc1\xbd\x4a\xd1\x76\xcc\x0c\xef\xfd\xce\xe7\x09\x9e\x78\x82\xa7\xc9\x07\xe4\xbe\xc7\x98\x30\xc6\x77\x1a\xcb\x89\x94\x4b\xd5\x4a\x51\x65\xb3\x18\x70\x91\x69\x21\xb1\x98\xac\xd4\x43\x2e\x7e\xed\x8c\xe1\xde\xb3\x45\xb1\x07\xed\xa7\x60\x26\x6f\xcb\xda\x3b\xa5\x22\x94\x00\xa3\x03\x60\xa4\x64\x5c\xa8\xdb\x38\xc3\xd5\xf4\xa8\xde\xf1\x57\xbb\xdb\xbf\x2c\x1f\xa1\xdc\x6b\x05\x14\xa4\xf5\xa0\x36\x4f\x92\x83\x81\xb4\x0f\x95\x57\x9a\x26\x46\x7f\x22\x82\xa8\xa2\x55\x75\x84\x02\xac\x9c\xa8\x0e\x89\xb9\xcc\x68\x60\xa3\x4b\xb3\xf9\x0c\x32\x37\x65\x7c\x21\x29\xea\x48\xc8\x52\xb9\x25\x69\xe8\x11\x06\xbc\xe4\x61\xe2\x02\x44\x54\x82\x1a\x91\x75\x92\xd1\x99\x1b\x5b\x69\xf2\x7b\xbe\x01\x99\x77\x52\x8a\x2f\xc0\x11\x92\xc5\x6b\x4a\xea\x87\x3c\xf8\xc5\x8d\xfd\x7c\xb4\xb0\xe9\x17\xe8\x7a\x87\x04\xc9\x92\x82\x0f\x98\xd7\x74\x04\xd3\xf1\xd2\x05\x0c\x67\x43\xf6\xe9\x3c\xdb\x51\xa6\x1a\xa6\xf4\x5b\x35\x1b\x26\x46\x1d\x13\x29\xf3\x15\x12\x72\xac\x39\x62\x34\xd0\xd6\x7c\x17\x8a\xcf\x91\xfc\x51\x0d\x86\x42\x9c\x69\xa8\x7f\xdf\x10\x11\x55\xda\x8d\x94\xde\x67\x22\x23\x8a\x6f\xb1\x70\x16\x86\x2b\x11\xd5\x02\xc6\x67\xee\x9c\xa0\xaa\xbe\x1c\x20\xb9\x77\x89\xf1\x86\x7a\xdd\x78\xb8\xb8\x7e\x9a\xb5\x19\x34\xc0\xb4\xa1\x6c\x2c\xbc\x4d\x2e\xfe\xdb\x79\xc0\x5b\x23\xe0\xcf\x78\x92\x01\xac\x75\xfe\x07\x6d\x31\x5f\xcb\xac\x20\xba\x0d\x31\xe4\xdc\x61\x69\x27\xd6\xea\xb1\xb1\xc8\x7a\x1c\x9c\x77\x8e\x4b\xd2\x85\x29\x58\x74"}, {{0xff,0x15,0xd6,0xe7,0x4e,0x28,0xe4,0x1d,0x05,0xa8,0x66,0x3a,0x70,0x2f,0x03,0x8d,0x5b,0x85,0x78,0xc4,0x27,0x5e,0x77,0x2b,0x73,0xba,0x44,0x0b,0xc5,0xf5,0x5a,0x06,},{0x47,0x47,0xe2,0xe9,0xb8,0x26,0x37,0xb3,0x84,0x4b,0x85,0xf7,0x5b,0x59,0xf7,0x13,0x6b,0x7f,0xdb,0x1a,0x62,0xe7,0xb7,0x0d,0x6a,0xac,0x17,0xb3,0xc5,0x75,0x2f,0x2f,},{0x42,0xc1,0x29,0x5f,0xaf,0xe2,0x6d,0xe3,0xea,0x34,0x92,0x6b,0xf1,0xef,0x80,0xbc,0xaf,0xe4,0x7b,0x21,0xb9,0x0e,0xae,0xd1,0x96,0x35,0xed,0x75,0x38,0xd7,0x67,0xcb,0xf3,0xa1,0xe5,0xde,0xda,0xab,0x82,0xad,0xf7,0x51,0x20,0x37,0x3e,0x92,0x32,0x02,0xf7,0xfd,0xa0,0x82,0x67,0x84,0x29,0x2e,0xba,0x8b,0x23,0x8b,0x6c,0xb8,0x83,0x04,},"\xce\x7b\xf9\x72\x84\x4f\x51\x84\xae\x8e\xac\x87\xb1\x2b\xe9\x20\x2c\x72\x39\x96\x1d\xc2\x3c\xd4\x1f\xf5\x5b\x9b\xfa\xac\x0c\xc0\x6f\x3f\x1d\xec\xfa\x95\x71\x09\x5c\x8e\x82\xb4\xeb\x6f\x8a\x1c\x52\xc8\xd3\xde\xaa\x61\xa9\xaa\x94\xe2\xec\xd9\xab\x5b\x80\x63\xf2\xda\x6d\x80\x15\xdf\x0a\x51\x44\xfa\x3a\x48\xe3\x05\xad\x9f\x41\xea\xa1\x1c\x4d\x74\x85\x43\x74\xec\xbf\x38\x2e\x30\x02\x57\x9a\x9a\x24\x9e\xfa\x1e\x1c\xa0\x4d\x33\x84\x47\xd7\xf2\x20\x67\x03\xe6\xca\xbf\x5b\xbd\x33\x2b\x42\x57\x3b\xcb\xd3\xb6\xf7\x1b\x7c\x3b\xf7\x3d\x4c\x77\x4a\xa0\x1e\x86\x68\x41\x43\x28\x29\xd0\x7f\x96\xe1\xf6\x1a\x20\x21\x6d\x96\x8c\x90\xe3\xed\x11\xf6\x63\xf7\xd6\x27\x16\x22\xfe\xfc\xf3\xab\x68\xf3\x44\x32\x85\x15\xd5\xcc\xe2\xce\x85\xe8\xbf\x3d\x1d\x09\x04\x36\x92\xe1\xfb\x8b\xbd\xdc\x07\xa4\xab\x0a\x3e\xef\x8c\xa6\xa4\x20\xe7\x4b\xff\x8d\x3d\x71\x55\x96\xaa\x82\x16\x82\x95\x4f\xe8\x96\x29\xae\x27\xc1\xbb\x03\xb6\xaa\x09\xf3\x6a\x39\xa3\xe3\x7b\xa9\x81\x32\xf4\xe2\x38\x88\xf9\xf3\x35\xe7\xbe\xaa\x2c\xb2\x72\x7a\xcc\x3d\x27\x77\x30\x9b\x85\x29\x52\x32\xe5\x4d\xa8\x8e\xbb\x6f\x10\x53\xd6\xde\x79\xac\x66\x09\x85\x2e\xb9\x3a\x0a\x35\xbc\x1a\x7b\xdc\x22\xd6\x28\xbc\x86\x12\x4d\x69\x6c\x3f\x98\x28\xb6\xf8\xb9\xaa\xde\x1a\x65\x21\x61\x77\x48\x6c\x25\x2a\x4b\x42\xd9\x0a\x4e\x0f\xea\x20\x93\x48\x9e\x24\x4d\x80\x8e\xf7\x02\x1a\x97\xd5\x60\x8c\x0a\xe1\xd6\x63\xc7\x75\xe8\xbb\x9e\x9a\x73\x15\xf1\xfe\xb6\xd1\x29\xb5\xa5\x41\xea\x59\x29\xa2\xc6\x33\xb6\xd8\xc3\xc4\x54\x41\x71\x79\x46\xcf\x87\x3e\x9b\x4c\x51\x21\x80\x13\x5d\x54\xf0\x53\xab\xe4\x4c\x6d\xf3\x9b\x7b\x06\x2e\xf7\x24\x01\x62\xcb\xd0\xb8\x51\xaf\xe5\xf9\x15\x36\xa9\x49\x94\x18\xe8\xbf\xf4\x99\x64\x73\xd8\x05\xeb\xc1\xae\x48\xda\x2d\x0b\x12\x9e\x8e\x82\x52\xf1\xd5\x3c\x32\x8f\x32\xdb\x25\x2d\xe3\xbe\xfb\xe5\xf3\x12\x80\x12\x11\x43\xa8\x00\x4a\x4c\xae\x63\x1c\x82\x74\x09\xe5\x20\xe3\x94\xcd\x0f\x89\x50\xcd\x4c\x3c\xf3\xf3\xdb\xd4\x95\x2a\x4d\xfe\x69\x87\x5f\x56\x53\x89\x06\x1a\xd0\xa0\xce\xe6\xb6\xaf\xf0\x9c\xec\xa2\x6d\x99\x0e\x89\x6a\x2a\xba\x9f\x3b\x26\x01\x5b\x63\x42\x37\x68\x68\x4c\x03\xed\x0d\xe6\xce\xe7\xac\x5b\xbd\xf9\xf4\x85\xc2\x27\x5c\xd1\x2a\xef\xa8\xf9\x07\xb8\x51\xa0\x2d\x51\xc3\x4f\x12\x1b\x77\xf3\xa5\x6a\x9e\xbd\x1d\x65\xff\xe8\x9b\xee\x38\x1f\xf2\xa7\x48\x0e\x89\x68\xcf\xf2\x5a\xc8\xd0\x4e\x14\x9a\x9d\x50\x27\xd1\x4b\x88\xf8\xae\x26\x04\xd2\xac\x22\xac\x67\xd1\x3e\x90\xad\xa6\x20\xc2\x04\x6d\x28\x29\x93\x84\xd0\x95\x9f\xb7\x6e\x22\x58\x87\x96\xce\x42\x7a\xae\xaf\x4e\x2a\x8a\xae\xc3\xe8\x7f\x84\xcc\xd0\x82\x52\x4c\x96\xd7\x66\xee\xc6\x6f\x0b\xec\x3e\x79\x95\x58\x14\x5f\x09\xd3\x30\x13\x4f\x1c\x63\xf3\x70\x53\xcd\x4b\xdc\x1c\x37\xfd\xe9\x72\x91\x85\x75\x51\xf5\x0a\xc8\xe1\x5f\x06\xac\x1c\x73\xda\xa1\xe8\xc5\xbc\x92\x77\xe3\xd6\x9c\xb4\x4a\x32\x37\xec\x57\xdb\xbc\xcf\xdf\x66\x85\xad\xa2\x0b\x74\xa1\xbc\x6b\x74\xab\x05\x69\x0e\xaf\x9b\xd0\xc4\xbe\x17\x04\x2f\x5c\xd3\x20\xcd\xd6\x13\xdc\x08\xd2\x9a\xf3\x46\xaa\x41\x91\xce\x0b\x4f\x85\xbb\x2a\xd7\xf3\xba\xc7\x38\xa9\x37\x7e\xc6\xb8\x40\x62\xcc\x70\xfc\xa9\xec\xfb\xe1\xf5\x7f\xe5\xb2\xce\x7a\x4f\x73\x9c\x81\xca\xbc\xde\x04\x64\x51\xdd\x61\xce\x1d\xbc"}, {{0x1e,0xd3,0x7b,0x61,0x0b,0x8b,0x35,0x41,0x7d,0x04,0xe5,0x9a,0xaa,0xda,0xc6,0x88,0xff,0x81,0xf1,0xe5,0x07,0xc8,0x9b,0x4f,0x40,0x01,0x60,0x94,0x19,0x08,0xcb,0x8c,},{0x48,0xe8,0xcb,0xeb,0x12,0x40,0xbd,0xeb,0xf0,0xa2,0xd9,0x29,0x53,0xaa,0x89,0xb2,0x82,0xc4,0x9a,0xab,0x2c,0x38,0xae,0x69,0x04,0x4c,0x51,0x51,0x5c,0x33,0x00,0xd5,},{0x86,0x08,0x81,0x5e,0x10,0x59,0x0d,0x55,0x04,0x87,0x4d,0x89,0x99,0xfd,0x6f,0x09,0x62,0x6f,0x95,0x0b,0xe2,0x0c,0x91,0x2c,0x27,0xc9,0xde,0x6e,0x79,0xb0,0xfa,0xf7,0x77,0xa5,0x33,0xbd,0x5b,0xb6,0x67,0xab,0x51,0x3a,0x49,0x45,0x8e,0xcd,0x67,0x87,0xa0,0x9e,0xc0,0xdf,0x6c,0x9c,0x9d,0x63,0x33,0xc5,0xe3,0xae,0x61,0xea,0x37,0x0a,},"\x1e\x67\x67\xdf\x97\xdb\x1c\xfb\x40\x88\xda\x7b\x20\x0d\x9f\x59\xec\x8d\xd4\x53\x3b\x83\xbe\x30\x9f\x37\x65\x00\x31\x06\x57\x27\xcd\x52\x02\xce\xf4\x84\x26\xa5\xf3\xa1\x1d\x50\xb3\x81\xf8\xbc\x22\xff\x10\x18\x27\x35\x9f\x2d\x0a\x61\x0a\x4f\x75\x54\x64\xa0\xc8\x91\xcb\xd9\x8d\x2d\xcb\x41\xd9\x77\x9d\x28\x8f\xcf\x1f\xea\x62\xe5\x21\x63\xae\x67\xe9\x04\x28\xb8\x63\x98\xef\xa2\x18\xf1\xb9\x82\x08\x1f\xc5\x13\x30\x5f\xd3\xe8\xec\xe7\xf9\xac\xb0\xe1\x0e\x00\x1d\x2e\xd2\x99\xa4\x8a\x80\x87\x0b\x3d\x5d\x8a\xb9\x00\x63\x09\xb3\x15\x91\xca\xf0\x58\x33\x80\x07\x3a\x2d\xb6\x1f\x45\x25\x4a\xb9\x65\xb5\xe4\x67\x2c\x4b\xfa\xa8\x6e\x33\x6c\x49\x27\x85\x52\x72\x9f\xb2\xda\x76\xff\xe5\x02\xec\x61\xe1\x69\x6c\x7f\xc9\xef\x19\xf7\xcc\x2a\x27\x75\xb2\x97\x00\xcb\x38\x42\x94\x06\x3a\x17\xfe\xd4\xfc\x63\x5b\xc1\x32\x82\xa9\x0d\xad\x0c\x00\xaa\xdb\xcd\x56\x9f\x15\x6a\x85\x4f\x8b\xa9\xe7\xd6\x07\xd2\x0f\x2e\x9e\x53\x37\x98\x11\x61\xd8\x04\x64\x46\x68\xd0\x64\xfa\x63\xdc\xeb\x9f\x58\x01\x35\x3d\x0a\xb9\xf4\x1d\x1d\x8b\xdc\x76\xc1\x3a\xb2\xf0\x23\xea\x01\xad\xbc\x4c\x81\x68\xd9\x39\xe9\x8f\x64\xfd\x89\x19\x38\x4a\xbe\x76\x70\x92\x63\xc0\xcd\x7c\x3e\xfa\xdc\x28\x01\xcc\x4a\xbd\x80\xa0\x9b\xb3\xed\x6b\xb7\x8c\xd6\x20\x96\x9c\xd3\x5c\x6a\x3a\x5d\x01\x48\x5e\xad\x4c\x45\xeb\xb6\xac\x6a\x83\x21\x2a\x7c\x76\x67\x54\x27\xb2\x1d\xa8\xa7\xa5\x04\x7b\x30\xa6\x10\x0c\xda\x02\x47\x6c\x18\x6e\x6c\xe4\x0d\x27\x68\xa9\x42\xc9\xf8\x73\x05\xe9\xd3\x63\xb5\x24\xc0\x09\x4a\x9e\x2e\x29\xf5\x85\x89\x4c\x0a\xdb\xfc\xd6\x06\x90\xfc\x7f\xb0\xa9\xc7\x17\xcf\x43\xb4\x84\xfd\x45\x15\x1b\x13\x04\x16\x9c\x26\x92\x1d\xb2\x27\x6e\xc0\x5a\xd2\x2a\xd1\x66\x85\x4f\xd2\xf9\x40\x85\x77\x8c\x47\x0d\xc4\x52\xe5\xcf\xa4\xae\xe0\x4f\xac\xb7\x70\x52\x6e\x1f\x24\x8d\x3d\x15\xc2\x72\x80\xfd\xfa\x1f\xd2\xc1\x04\x4b\xcb\xc8\x81\xc3\xd9\x98\x15\xc9\x7f\xbe\xa4\x61\x10\xbe\x02\xda\xb7\x74\xf3\xa6\x10\xe5\x80\x2a\xbf\x36\xa4\x98\x75\xc6\x82\x63\x8e\x0a\xe4\xcc\x82\x77\xc5\xe9\xaa\x73\x07\x44\x5e\x6b\xbc\xbe\x54\x9e\xec\x2a\x45\xb1\x59\x7f\x74\x47\x10\x7b\x62\xe2\xce\xe0\xa5\xfc\x51\xbe\xae\x3e\x1f\xe9\xbe\xfb\x18\x85\xd9\xb3\x0f\x9b\x4f\x1f\x56\x20\x6d\xee\x0d\x67\x77\x9c\x57\xf4\x84\xc8\xc3\xc8\x99\xa5\x15\xa9\xd1\xc1\x0f\x60\x59\x84\x0c\x1c\x73\xd3\xf0\x5b\xcb\x88\x59\x0c\x52\xf7\xda\x39\x18\x38\xdc\x2e\x73\x22\x8f\x09\x81\xc2\x89\xa4\xc2\x7f\x0c\x75\x7f\xaf\x7b\x3b\x89\x14\x6e\x33\xda\xfa\x49\x0d\x9e\x0f\x92\x75\xb0\xcf\xa6\xa7\x71\x0a\x73\x83\x14\x59\x59\x5b\xf7\x32\x11\x2b\x62\xfc\x86\x4c\xa4\xc8\x29\x78\x4a\x3f\x16\xee\xc4\xe1\x8f\x93\x69\x18\xa7\xb9\x89\x16\x69\xe9\x33\x22\x3f\x74\x5f\xda\x56\x2b\xc0\xa4\xe6\x1e\x3d\x14\xea\x45\xdf\xc3\x27\xe2\xfc\x0c\xdf\xe6\xf2\xf9\x75\x46\xc9\x0f\xce\x82\xf5\x22\x29\x14\x80\x11\x1a\x1e\x6b\x93\x88\x27\x2c\x0b\xe2\x8d\x20\xed\x84\xbb\x84\xd4\x9b\xc1\x99\xcd\x59\x99\x48\xb8\xf2\x03\x9d\x07\x82\x7a\x3f\x40\x75\xd3\xa6\x7e\xe5\x72\xa0\x13\x79\xa3\x62\x13\xfe\x11\x6e\x76\x8b\x41\x14\xe8\xa4\xb3\x13\x4c\x38\x18\x96\x07\x72\xd7\x27\xb0\xca\x6f\x7c\x99\x7c\xa9\x98\x43\xb7\xeb\x02\xff\xc0\x13\x97\x1c\xbe\x0e\x6e\x60\xd4\x97\x73\xf1\xe8\xc0\xb3\x06\x06\x13\x1c\xb1\x0c\x3e\x04"}, {{0x84,0x36,0x44,0x78,0xec,0x94,0xbd,0x25,0xc4,0xbd,0xb8,0x2d,0x29,0x62,0x29,0xe6,0xda,0xce,0x2b,0x13,0x59,0xd6,0xd2,0x1b,0xe2,0xb3,0xaf,0xcd,0x7b,0xda,0x19,0xc7,},{0xa1,0x81,0x4f,0x8c,0xe0,0xfc,0x3b,0x23,0x60,0x93,0xa5,0x0f,0x46,0x8c,0x13,0x16,0x21,0x1f,0xe6,0xc5,0x2e,0x23,0x45,0xd9,0xf0,0x76,0x6b,0x36,0x88,0xa0,0x3c,0xad,},{0xb4,0xc2,0x32,0x1a,0xde,0x3c,0x19,0xed,0x4e,0xd4,0xc6,0x39,0xd5,0xa4,0xd6,0xf2,0xbe,0x8e,0x2f,0xb1,0x3b,0xb7,0xbd,0x62,0x5a,0xd6,0xdc,0x87,0xe2,0xc2,0x0f,0x93,0xad,0x6b,0xe7,0xb7,0xe4,0x27,0x11,0xa8,0x78,0xdb,0x9d,0x76,0x05,0x4b,0xfd,0x7b,0xc2,0x5e,0x37,0x74,0xa9,0x3d,0xa1,0x54,0x3c,0x9b,0x4f,0x66,0x33,0xb0,0xbe,0x09,},"\x7b\xb7\x29\x3d\xe5\x5f\x05\x8f\xb2\xec\x22\xb6\x87\x26\x05\x43\xdc\xaa\x90\xf1\x40\xb9\xf4\x5e\xdd\xd4\xbc\x22\xe4\x09\x77\xe0\x0e\xd3\x3c\xd1\xef\x1b\xba\x13\xc1\xd0\x99\x08\x59\x00\x55\x69\xa8\x07\x67\xe4\x86\x4a\x2c\xd2\x88\xc8\x13\x93\xe0\x4a\xd9\x71\x78\x2e\x2b\xc4\x93\x10\x8c\xbe\x80\xda\xcf\x0b\x7b\x9c\xd5\x34\x98\x84\x07\xa4\xf9\x32\x7e\xc8\xe9\xc4\x04\x32\x84\xef\x6e\xe5\xa2\x6a\x5b\x41\x77\x65\xd3\xea\xbb\x48\xa0\x07\xe7\xc7\xf3\x29\x87\xd7\x0a\x13\x9a\xc4\x16\x78\xcd\xf7\xa5\x5c\xb8\x0c\xf9\xdb\x5e\xaa\x45\xf3\xde\x0f\xbf\xba\xdf\xfc\x40\x99\x63\x70\xe4\x8b\x1f\xf5\xed\xd9\x79\x40\xe7\x50\x79\x21\x64\x83\x6a\x4a\x5a\xc2\xe3\xff\x53\xe4\x8a\x1e\x55\x6d\xb9\xad\x0c\x5c\x0b\x94\x4f\x4a\xee\x51\x9a\x2b\x0a\x88\xbb\x1c\x1f\xc7\x45\x45\x24\xcd\x57\xaa\x53\x50\x98\x62\x43\xd3\x4f\xc5\x8e\x24\xe8\x19\xec\x0b\x85\x45\xd8\xdf\xcf\x6b\x20\x31\x14\x41\xd3\xa3\x5d\x3e\x71\xb3\xe3\xec\xd7\x88\x4d\xda\x84\x33\xa4\x05\xe3\xd9\x96\x90\x00\xc8\x20\xa8\x9b\x95\xd1\x97\x84\x1d\x98\xae\x73\x4a\x2e\x81\xda\xf6\xa7\xdc\xf5\x6c\xb2\xfc\x26\xf2\x16\x5a\x5f\x42\xb8\x6c\x7e\x9e\x5b\x11\x16\x17\x00\xa1\xab\x98\x31\xf3\xfa\xe5\x8e\x14\x20\x8b\xe1\xbf\x33\xb5\x8e\xcc\xe8\x1b\x0c\x6b\x7e\x02\xf8\x8a\xdf\x9a\xb0\x30\x26\x3e\x2c\xc9\xb6\xe3\x3e\xbc\xa3\xf4\x95\x49\x2e\x32\xbf\xe3\x72\x53\x7d\xe6\xc6\xb8\x76\x44\x82\x8f\x74\x94\x2a\x02\xb0\x07\xf1\x4c\x3f\xc5\xdb\xde\x76\x33\x3d\x36\xd0\x76\x31\xb7\xa9\x92\x4f\x71\x75\x50\x04\x06\x97\x92\x3f\xa7\xb9\x54\x6b\xfb\x02\x17\x02\x4e\xa3\xf2\x52\xb5\x15\xb5\xd6\x4a\x62\xc4\x8e\x02\x7c\xef\x67\x50\xbe\xda\x49\xa0\x24\x47\x03\x9b\x25\x0a\x0b\xda\x07\xdc\x06\x24\x91\xa6\x62\xe2\x68\x74\xc8\xd0\x0f\x80\xe6\xcf\xc8\xb3\x0f\x2c\x3b\xf7\x72\x0b\x57\xf2\x61\x5f\xc4\x78\xfe\xfa\xa6\xd3\x17\x05\xb4\x3c\x5a\x54\xf7\x58\x66\x6b\x30\x2a\x8d\x34\x95\x31\x31\x94\x1b\x79\x57\x73\x04\x76\x79\x4d\x0b\xd9\xd2\xdf\xa7\x2f\xd2\x03\xf2\x2d\xf5\xec\x6b\xba\xac\xe8\xb9\x39\x4b\xeb\xda\xea\xa5\x61\x46\x10\x11\xb4\xfc\xa6\x18\x5c\x9a\x38\x28\x3f\x54\x03\xfd\xac\x32\x6d\x1f\x73\x4c\x6a\x5d\xed\x67\x24\xd9\xf3\x84\xae\xbd\x6c\xab\xfc\xbe\xc1\x2a\xba\xb9\x82\x0d\x08\x07\x32\x51\x5e\x05\x00\xcf\x5d\x3e\x2f\x9e\xf8\x0a\x4d\x76\x46\xa7\xda\x9e\xff\x41\x0f\x50\x7c\x69\x87\x3b\x32\xd5\x40\xec\x32\xb2\x83\xef\x31\x79\xa4\xc6\x32\xb3\x66\x57\x6d\xff\x05\x8f\xaf\x8c\x8c\x70\xbc\x69\xbe\x80\x89\x82\xec\x14\x97\xae\x89\x11\xb0\x01\x65\xa6\x66\x95\xf4\xd3\xb9\x87\xe7\x39\x0b\x5c\xf8\x78\xe3\x5e\x67\x65\x41\x28\x5e\x4e\x13\xdf\xae\xb2\xf3\x68\xcb\x51\x1b\x77\x8b\x10\x6a\x42\x87\x78\xa1\xb8\xf2\xa7\xd2\xe0\x93\x51\x9b\xc9\xb5\x18\x8e\x38\xc6\x79\x3e\x96\xbd\x0d\x30\xe2\xa3\xdb\x9e\xe1\x46\x8c\x3d\xc8\x7c\xc3\x65\xc8\x10\xf9\xdb\xdf\x01\xa4\xb5\x14\x21\xf6\xfc\x8d\xfd\xa3\xa1\x6e\x2d\xa7\xca\x71\x59\xb6\x86\xa5\xe1\x67\x33\x89\x37\x88\x2f\xf7\x15\xd3\xe7\x50\xd9\x58\xfc\x9e\x4b\x1f\x05\x53\x12\x92\x99\xaa\x84\x30\x18\x3e\x50\x6c\xd7\xf2\xb2\x79\x07\x6e\x0e\x1c\xca\x97\x49\xcf\x12\x3c\xe5\x07\xfe\x07\xdd\xbb\xc4\xdc\xca\x6c\xdb\x9e\xf1\xb8\x33\xf6\x1d\x4b\xff\x00\xbe\xc0\x12\x15\x8f\x43\x2c\xeb\x75\xb4\xf2\xed\xb1\xbb\x84\xe5\xeb\xb9\x25\x9e\x09\xf9\x62\x5c\xe3"}, {{0x00,0xdb,0x37,0xad,0x2a,0x19,0x5f,0x08,0xa0,0x84,0x40,0xd0,0x59,0x25,0x9e,0x53,0x9f,0xeb,0x40,0xb4,0x74,0x92,0x82,0x55,0xe7,0xc9,0x4e,0xbc,0x3b,0x05,0x03,0x8c,},{0x04,0xf8,0x8b,0xf6,0x39,0xe0,0xf7,0x1a,0x57,0xd0,0xd0,0xaf,0xff,0x5f,0xe9,0x7d,0xde,0x38,0x09,0xff,0x28,0xec,0x68,0xeb,0x6f,0xc4,0x23,0xf4,0xfa,0xff,0x43,0x90,},{0xf4,0xd1,0xc8,0x0f,0x5e,0x7b,0x91,0xc5,0xc7,0xa8,0x2a,0x68,0x2d,0x49,0xba,0x6f,0xb1,0x9d,0x40,0x0a,0x29,0x97,0x48,0xa0,0xc9,0x69,0xbb,0x99,0x81,0x69,0x98,0xbe,0x63,0x4e,0x84,0xda,0x78,0x58,0x1b,0x06,0xe3,0x47,0x0e,0xfe,0xc3,0x98,0x04,0xfe,0xd9,0x3d,0x29,0x73,0x9f,0x04,0x39,0xa8,0x09,0x5a,0xc4,0x0d,0x9d,0x38,0x5e,0x04,},"\x5a\x94\xf7\x29\xd3\x0d\xd8\xaa\xe2\xa5\xc8\xc2\x85\x47\xbf\x45\x06\x29\x5d\xc6\x1b\xfe\xad\x97\x27\x74\x60\x82\xd4\x3b\x0f\x81\x14\xc8\xc1\x8c\x5e\xda\xf2\xfe\xc7\xca\xe8\x19\x35\x63\x38\xf0\xbf\x11\x5a\x17\xb0\x38\xac\xfd\x7c\x96\xba\x62\x62\xca\xbd\x57\x10\xfc\x0e\xfb\x43\xd1\x3d\xf4\x06\x5b\xec\xbf\x1b\x9e\x27\x9c\x03\xec\x9b\xbf\xed\x54\xd9\xa1\x3f\xe0\x6a\x55\xa3\xbd\x05\xc8\x07\x85\x8b\x41\xe1\x8d\xbd\xe1\x3b\x09\x07\xd4\x03\x41\x32\x26\x2d\x9c\x2f\x4d\x2d\x37\x6e\x16\x09\xad\x28\x0d\xe2\x0b\xa7\x09\x84\x4d\xbd\x12\x95\x02\x57\xf1\xb0\x7e\xf8\xcc\x33\x37\xc0\x1a\x70\x26\x93\xfb\x4d\x92\xd0\x47\xe6\x98\xc3\xa6\xdd\x46\xc4\xa9\x2a\x10\xd4\xc7\x80\xe5\x2e\x50\x25\xe0\x9d\x56\x53\x5d\x7e\xeb\x9f\xe7\xf0\x33\xe6\xe9\x26\x0a\x68\xf9\xd5\x4b\x6f\x37\xcc\x06\x96\x56\xe3\xbc\xee\x06\x92\x2b\x34\x96\x81\xa8\xe7\x75\x1c\xde\xcb\xe1\xec\xb6\x63\xfb\xc6\xf7\xc8\x61\xf8\x53\xdc\x31\x0f\x33\xde\xfa\x98\xee\x34\x3a\x68\x63\x2e\xc2\x2c\xaf\xec\xb7\xf3\x21\x2f\x81\xe7\x0b\x71\x84\x3b\x9f\xe8\xc8\x6a\x68\xb5\xc8\x6f\x03\x22\xd3\x48\xa7\x6d\xa7\xf1\xba\x0c\xa3\xcd\x7b\x6f\xd1\x5f\xf8\x92\x92\xb3\xf6\x36\xcd\x08\xcf\x62\x5c\x74\xd5\x10\x2c\xab\xb5\x71\xa3\xdb\xa8\x6a\x1c\x92\xf4\x1c\x72\x03\xb4\x49\x42\xf5\xa2\x46\x25\xac\x37\xd7\x7e\x49\xa5\x7f\x11\x82\x38\x69\x9d\x80\x7c\x25\x0d\x5b\xf4\x6f\x7a\x3c\xec\x57\x79\xa6\xe5\xae\x1a\x6c\xa1\x60\xcf\xf3\x7f\xb3\xb7\x83\x88\xfe\x9c\x03\x0c\x40\xe7\x15\x46\x01\x08\x1a\x51\x7f\xc0\xaa\x18\x02\xcd\x3b\x84\x5b\x94\x6e\xfe\x94\xaa\x8b\x9e\x03\xf6\x8a\x80\xde\xd0\xdf\xbf\xad\x4d\xae\xe4\x0f\xa8\x38\xc1\x33\x84\x1a\xe8\xa3\xce\x0d\x79\xfa\x8a\x2b\x94\x34\xba\xc5\xe1\xda\x6e\x0c\x71\x93\xe8\xde\xa4\x35\xa0\x3a\x85\xf7\x61\x84\xf7\xeb\xe2\xaa\x74\x9b\xe9\x41\x31\x04\xa1\x78\x68\x9b\xa6\xd2\x7e\x94\xfc\xcf\x61\xeb\x3a\xba\x0e\x6a\x5a\x63\xaf\x0c\xa8\xf0\x5a\x35\xcb\x63\x70\x51\x94\xe4\x4d\x92\x93\xde\x39\x29\xb0\xd9\x2b\xe6\xf8\xe6\x27\xc3\x50\xa8\x3f\xc9\x00\x0a\xa9\x5b\x93\x82\x0b\xe9\x79\x5c\x80\xb5\x66\x2c\xd7\xb3\x48\x22\x32\x80\x61\x35\x6d\xc5\x80\x57\x8d\x1a\x35\xb1\x01\x40\xdc\xd2\x48\xe4\x85\x31\x04\xd2\xc5\xb2\xc1\x3f\xf6\x83\xdd\x5c\x30\x79\x4b\xe4\xa7\x68\x58\xaf\x1c\x0d\x9a\xf3\x47\xce\x1d\xcd\x97\x2e\xe4\x9a\xac\x12\xbb\xcd\x89\x9c\x93\x29\x87\x1d\x3e\x7a\x06\x83\xd1\x75\x77\x9a\xfe\x35\xf2\x6a\x2d\x24\x8f\xd7\x80\xea\x85\x1d\xc4\xba\x6d\x21\xf8\xa1\x71\xaa\x6c\xb8\x69\x7d\x9d\x11\x21\x61\x54\x03\x07\xcd\x54\xf9\x31\x77\x5d\x70\xb3\x3d\x3b\x6d\xe1\x09\x1f\xc1\x75\x05\x31\xc0\x8f\xa7\x0f\x7b\xe3\x8a\xa1\x10\xd6\x74\x6b\xb5\x65\xdb\x7b\x47\x0f\x90\x08\x50\xfb\xbf\x1c\x66\x2f\xd6\x13\xe4\xf3\xa5\x68\x95\x49\xe3\x10\x7e\x9b\x0f\x17\xde\xf7\xa5\xbd\x7f\xd7\x59\x6c\x4d\x04\xc7\xf4\x8c\x77\x9f\xc3\x5e\x09\x33\x5e\x1d\xf7\x84\x08\x4e\x55\xd8\x55\x1d\x1f\xf4\x9d\xe5\xb3\x11\xcd\x35\x0f\x34\x7a\x0b\xd2\x86\x3a\x2a\x30\xe6\xea\x18\x3a\xd2\xe3\xee\xde\xbc\x18\xdd\x28\xc6\xa5\x96\xe6\x93\xdc\x33\x89\xf7\xd9\x0b\x71\x3e\x3a\x85\xa6\x25\x16\x30\x5a\x70\x66\x7f\xc1\xfb\x3c\xb1\x0e\x8a\x95\x57\x50\x27\x39\x43\xc5\x68\xe1\x07\x69\xce\xf7\x81\x99\xdf\x44\x50\xdb\xc4\x90\xfe\xf1\xb3\x04\xb0\x52\x22\x1b\x2d\xb9\xc4\x4f\xe0\x03\x45"}, {{0x6c,0xa1,0xa1,0x48,0x2a,0x07,0xf2,0xa6,0xc5,0x7f,0x04,0x11,0x97,0xb3,0x4a,0x51,0x19,0xe6,0x89,0x03,0xcf,0x6d,0xfb,0x51,0x71,0x1d,0x95,0x50,0x97,0x31,0x63,0xc0,},{0x80,0x34,0xa5,0x5e,0x3b,0x6e,0xd7,0x99,0xf4,0x9e,0x2e,0x70,0x3a,0x81,0xf4,0xac,0x02,0x57,0x3c,0x44,0x5d,0x76,0x5e,0x30,0x69,0xbe,0x42,0xf0,0x9c,0xbd,0x18,0xad,},{0xdd,0x9b,0xdb,0xad,0xd9,0xfd,0xc8,0x1c,0xe2,0x30,0x28,0x8c,0x4a,0x06,0x8d,0xf0,0x7e,0x18,0xb4,0xc7,0xcc,0x51,0xc0,0xca,0x48,0x11,0xdf,0xbd,0x04,0x76,0x5c,0x56,0xbc,0x88,0x32,0x40,0xe4,0x6e,0x3a,0x42,0xc0,0x1d,0x8d,0x24,0x24,0xfb,0xc3,0x32,0xb7,0xc5,0xa1,0x7b,0xce,0xb1,0xf6,0xe8,0xda,0xd0,0xbf,0xe5,0x62,0xca,0xd3,0x02,},"\x08\xfd\x84\x87\x50\x3c\x3f\x32\x96\xb6\xf1\xb6\x4d\x6e\x85\x90\x6f\xd5\x98\x6c\xf9\xc5\xd9\xfa\x8a\x59\xd9\x2f\x44\xe6\x47\x0a\xf3\x4b\xcd\xef\x33\x6f\xfd\xc8\x64\x56\xec\x7a\x7b\x57\x61\xf1\xad\xea\x02\x73\x26\x63\x0e\x68\xab\xc6\xb8\xcd\x5d\xdf\x40\xb6\x41\xa2\x59\xad\x02\x43\x21\xbf\x3e\xf9\x8e\x76\x32\x79\x71\x49\xc4\x92\xd5\x35\x94\x75\x2c\x55\x0d\xfb\xc4\xfa\x6b\xf4\x71\x76\xf4\x23\xa2\x70\x56\x93\x94\x7a\xa9\x0d\x68\xdd\xc8\xef\xb6\xcb\x9d\xbe\xca\xfd\x28\x30\xd0\x4f\xd9\x3b\x1e\x9e\x7c\x12\xb9\x3e\x0d\x0f\x3e\x26\x34\x90\x0f\x25\x86\x0d\xda\xdb\xae\xce\x17\x80\xff\x2d\x3f\x3d\x9f\xb8\x38\xfd\x0d\x5d\x66\xf8\xaf\xb3\x05\xff\x1a\x1a\xed\xca\x2b\x97\x4b\x63\xe4\x3f\x5b\x3c\xc9\xdf\xed\x1b\xcf\x11\x99\x91\x76\xed\x95\x85\xac\x82\x9b\xc6\x79\x4e\xf3\xac\xd8\x72\xe8\xd2\xe9\x26\x08\xb3\x20\xf8\x94\x99\x6a\x56\x2e\x1e\xb1\x77\xe2\x1b\xe5\x7c\x22\xc4\x1e\xc2\x59\xa3\xdf\xf9\xc7\xc9\x49\x1d\xb8\x38\xd7\x6c\xf9\xb0\x38\x31\x11\x59\x8e\x35\x7f\x44\xba\xbe\xbf\x12\x1b\xdb\x24\xee\x9d\x55\x7b\x7d\x5a\xf4\x91\xa0\xa0\x36\x5c\x90\x36\x1f\xe4\xf7\xe3\xd1\x3a\x17\xda\x3a\x39\xfd\x43\xf6\x90\xdf\xb0\xb2\xd8\x60\xca\xb4\x19\xf7\x75\xab\x71\x52\xcd\xc8\xf2\xaf\xdc\x50\xe8\xd5\xda\x5d\xa0\x17\x06\xee\xa2\xa2\xff\xad\x4b\xab\xee\x8b\x03\xda\x33\x6a\x4d\x84\x3d\x9d\x7e\x0a\x93\xf3\x6a\x92\xe6\x61\x0a\x36\x8b\x63\x13\x3f\x05\xa3\xfd\xc5\x5e\x3e\x1a\x44\x0b\x0f\x87\xa5\x33\x64\xc1\xd3\x72\x42\xc5\x7a\x10\x9e\x6d\xf6\x93\x45\xb0\x1c\x21\xc1\x08\x9e\x79\x0a\x66\xf4\xf3\x38\x0d\x3b\x76\xff\xb4\x20\xdf\xe1\xe6\x20\x0e\xac\xe5\x79\x26\x5a\x42\x7f\xbd\x35\x55\x14\xef\x95\x3e\x1a\x6e\x96\x8e\x37\x02\x1b\x3c\x6a\x29\x0d\xcd\x02\x93\xda\x67\x68\xda\xd7\xc6\x63\x11\x63\x30\x51\xc0\xac\xcb\x0b\x91\x65\x46\x4d\xfd\xdf\xde\xd2\x3b\xd1\x3e\xf9\x08\x74\x4f\x9c\x21\x11\xdc\x15\x31\x42\xd2\xf1\x05\x34\xd8\x93\xfe\x0b\x54\x5f\xec\x53\xfd\xb3\xb3\x5b\x51\x83\x98\xb0\x2a\xb2\x17\x91\xfa\x97\x7e\x30\xcf\x4b\x40\x4e\x7a\x29\x9d\x37\x87\x10\x8b\x83\x6a\xa0\xd5\x9c\x11\x4f\x1f\x36\x71\x9a\x7a\xcf\x85\xac\x99\x4d\x9c\xb7\x23\x06\xf2\x58\xf7\x8a\xc0\xa3\xb6\xc0\x53\x43\xe0\xb7\xa9\xaa\x72\x6e\x52\x26\x7e\xdf\x97\xf4\x97\x2f\x76\x64\xf4\x37\x20\xad\x33\xce\x6e\x61\x54\x40\xe3\x65\x37\xcb\xc5\x69\xbd\x6f\xf9\x4f\xfd\xae\xa5\x1e\x06\x02\x9d\xae\x78\xc5\xb9\x15\xc5\x37\xca\xea\x6f\x15\x04\x14\x79\x79\xb8\xaa\xae\x0b\xcd\x96\x18\x43\x7e\xbe\xd0\xb5\x5e\xfa\xec\x32\x0e\x84\xc7\x59\x59\xa3\x7a\x26\x0a\x02\xd4\xef\x1b\xb6\x26\x41\x52\x0f\x1a\x03\xdd\xea\x8c\x4c\x1d\xe8\xd7\xfa\xc5\x8d\xa4\x08\xb0\xab\x47\x57\xa1\x35\xf1\xd0\x75\xc9\xf7\xc9\x9f\xb9\x9d\xb9\x42\x7c\xe9\xb0\xd6\x26\xcb\x1a\xc1\x89\xad\x86\x63\xd7\xa7\x14\xfb\x5c\xd1\x58\x5c\x3b\xf9\x9a\x0a\xa4\x6d\x76\x39\x78\xd0\xb1\x2d\x65\xc4\x38\xbb\xb7\x3f\xea\xa5\x1b\xa2\x6a\x45\x9e\x7b\xea\x25\x43\x94\x66\xc0\x86\x13\xe4\x25\x40\xc8\xc6\xd5\x43\x67\xf2\x21\xfc\xce\x0c\x5e\xb6\xaf\x2f\xaa\x18\x1e\xa2\x15\x21\x80\x9b\xe7\x56\x49\xcf\x8d\xee\x76\x71\xdb\x7f\x94\x8f\x34\x6c\xbd\x03\x02\xbf\x9a\x06\xea\xbc\x72\xe2\xe5\x12\xb3\xdf\x88\x5f\x6d\xaa\x39\x8f\x93\xe3\x6d\xae\x2d\x6a\x04\x47\x81\x21\xf9\x77\x87\xd4\xce\xdf\xf6\xdb\x09\xaa\xf1\x0f\x27\xb1"}, {{0x27,0x84,0xdf,0x91,0xfe,0xa1,0xb2,0xd2,0x1d,0x71,0x3d,0xe2,0xed,0xc6,0x65,0x24,0x51,0xa0,0xc1,0x59,0x54,0xb8,0x65,0x60,0x62,0xea,0x1d,0xed,0xc2,0x44,0x5b,0x2a,},{0x95,0x56,0xdb,0x53,0x70,0xf8,0xfb,0x3c,0x74,0x78,0xde,0x03,0xd2,0x3d,0xf1,0xcd,0xa9,0x6f,0x27,0x40,0x11,0x8e,0xfd,0xd3,0xd1,0xa9,0xfa,0x4c,0x3b,0xfe,0x88,0x49,},{0x17,0xd1,0x71,0xd9,0x46,0xde,0x35,0x16,0x15,0x84,0x07,0xe1,0x32,0xcc,0x1a,0xce,0xca,0xef,0xd6,0xd0,0x92,0x11,0x2b,0xe6,0x53,0x99,0x95,0x23,0xe2,0x0b,0xd4,0x95,0xf7,0xb7,0xf6,0x00,0xe8,0xd5,0xa6,0x71,0x33,0x0d,0x32,0x69,0x3d,0x60,0x19,0xc0,0x8d,0x2d,0x00,0x3b,0x17,0x6e,0x63,0x19,0xc3,0x53,0x94,0x20,0x0e,0x02,0x7d,0x0e,},"\x2e\x3b\xc5\x4d\xf4\x16\x74\x1d\xbe\x79\x16\xad\x25\xf0\x4e\x48\xd5\xa9\xd7\x7a\x62\x3e\x57\xf9\xcd\x61\xec\xb4\x4f\x09\xf7\x68\x33\xeb\x2a\x3e\x9a\xb7\xaa\x89\xff\x5d\x2d\x56\x0c\x07\x17\x7d\x85\x4d\x7c\x49\xcb\xef\x49\x2b\x7f\x4f\x7e\x56\x7d\xe1\x27\x51\x24\xe1\x6c\xa4\xa7\x98\x01\x62\xfa\x0f\xd1\x62\xa8\xe5\xfd\x6f\x35\x61\x70\x07\x03\x4b\xce\xec\x57\xc8\xfa\xf7\x66\x4f\x4b\x3b\xaf\xfd\xea\x8d\x8f\xc2\xba\x22\xd5\x85\xe9\xe2\xd7\x39\xf5\xff\xc9\x9b\x4e\x0d\xbe\x9c\x36\x86\x54\x7e\xa0\x48\x15\xa5\x9c\x4a\x25\xb5\xf2\x39\x06\x68\xe4\x18\xba\x0f\xcb\xdf\x4c\x4a\x51\xf3\x39\x05\xc7\x4f\xbb\x83\x0a\x19\xf9\xbc\x86\x36\xdb\xaa\xff\x20\x99\x95\x44\x79\x96\xd2\xe5\xb1\xc3\x77\xb4\xcb\x87\xa4\xe1\xef\xe1\x2d\xe3\x4d\x33\x59\x9f\xf3\x97\xb7\x40\x17\xd7\x11\xed\xd3\xe7\x72\x15\x5b\xe5\xa4\x40\x6e\x74\xcb\xe2\x93\x1e\xf5\x13\x59\xaf\xd5\x1b\x5b\x1a\x7b\x3e\xa2\x2e\xe8\xed\xa8\x14\x76\xbc\xc1\x7e\xa7\x68\x0f\x6f\x31\x04\x70\x3b\x9f\x2a\x35\xcf\x26\x27\xeb\x74\x1d\x1a\x30\xaa\x4b\xee\xf6\x57\x9e\xc7\xd0\xb0\x7a\x4e\xf3\x2a\xbc\xb4\xd7\x56\x97\x0f\x70\xa3\x67\x8e\x17\xe6\xe5\x73\x18\x90\xae\xbc\x8c\x92\xb9\x56\xd4\xb3\xb5\xfe\x2a\xdf\xd7\x9b\x21\x1a\x18\x83\xdf\xc8\xc9\xa4\xb1\xb9\xc8\xc1\xbb\x26\x5e\x1f\x3d\xd3\x92\x44\x5e\xa5\x9b\x59\x0a\x01\x95\x51\xf8\x12\x18\x49\xf4\x35\xb3\xac\x1b\x29\x90\x2f\xc8\x39\x25\x54\x05\x6b\x93\x90\x3d\x5f\x26\x3b\x3d\x54\x08\x43\xd6\xaf\xa7\x5a\x2a\xd8\x30\x4b\x76\x90\xde\x99\xa7\x34\xc3\xd1\x30\xb6\x95\x47\xb1\x8b\x09\xe9\x8c\xbf\x25\x27\x30\xe4\xae\xdb\x6d\xc4\xb5\x8b\x22\x43\xfe\x55\xe8\x09\x39\xd3\x7b\x0a\x59\xd7\x22\x26\xd8\xa2\xcc\x51\x53\x09\x5e\x15\x99\x4a\xd6\x21\x95\xaa\x31\x0f\x2a\x64\x26\x67\x6b\x66\x1e\x47\xb9\xfc\xff\xfa\x04\xd6\xdc\x62\x5f\x29\xf4\x4c\x7c\xf6\x20\xb3\x78\xa6\x5d\x23\x83\x44\xb3\x80\x44\x8c\xd1\x19\xcc\x7f\x37\x3f\x62\xcd\xfa\xd6\x41\x49\x90\x63\x53\xf3\xa5\x41\x07\xc5\xdb\xa6\x5e\x3c\xc4\x94\xb0\x53\x1f\x4d\x64\x74\x93\x63\xf2\x30\x73\x8b\x2c\xfe\xed\x98\x35\x20\x22\x7d\xd5\xbc\x43\xbe\x59\xb3\x26\x8e\x28\x32\x16\xf6\xe9\xc7\x5e\x0c\x1c\x71\x27\x2e\x54\xfd\xb2\x9c\x78\x58\xd2\x87\xd1\xef\xa1\x91\x7b\xe3\x7c\x8e\xea\xb5\xe4\x4c\x3a\xd7\xb3\x6e\x8a\xc9\xf6\x69\x91\xeb\x82\xa5\x14\x8e\x59\x72\x03\x4a\xd0\x1c\x62\x61\x5a\x45\x15\x45\x79\xfa\x50\x86\x9e\x7b\xe9\x87\x6b\x56\x56\xea\xad\x2e\x43\x02\x5a\x62\xdd\x13\x4b\x61\x2d\x8f\x4d\x5e\xbc\xf8\x05\x6e\x19\x8b\x71\x34\x38\xe8\xe0\xe3\x47\xca\xfb\xfc\xb8\x9e\x39\x4a\xa3\x30\xd4\xc7\x88\xd4\x9c\x65\x8f\xcf\xc8\x0b\x3e\x00\x78\xf0\xe8\xe1\x9a\xa9\xb8\xfe\x8e\xb0\xba\xb9\x3d\xe7\x85\xd0\x43\xe0\xf4\x75\xae\xb6\x0d\x62\xe3\x8f\xb1\xf8\x38\x4a\x00\xb7\xa9\x02\xda\xee\x13\xd2\x13\x62\x69\xe5\x08\x01\xb8\x0a\x65\xb2\xf9\x13\xcf\xe3\xff\xb3\x65\xd9\xaa\x2f\xd1\x93\x72\xa0\xb0\x22\x56\x95\x44\x4e\x4b\xc5\x48\x71\xd1\x08\xe0\x9c\x7e\x1c\x2b\x42\xdc\xbb\xac\xce\x24\xea\x5b\xd5\xbf\x1f\xcf\x4a\xc6\x97\xa3\xfe\x09\xa5\x46\x77\xb7\xa8\xdc\x8d\x5e\xec\xb8\x6c\xc7\x92\xee\x9b\x6f\xea\x2d\xe1\x6a\x47\x32\x69\xfd\xc6\x5d\xbb\x73\xc2\x58\xc8\x21\x44\x04\x07\xc6\x42\xf7\xd3\xd3\xf5\xc7\x08\xd5\x53\x32\xda\x83\x43\x10\x6c\x19\xb2\x30\xa5\x14\x27\xf3\xb7\x71\x91\x6a\xe3\x68\x8b"}, {{0x4b,0xb7,0x92,0x36,0xfa,0xda,0x31,0x44,0xb6,0x82,0x96,0x49,0x9b,0xa4,0x4a,0xe5,0x34,0x07,0x4c,0xa9,0x4d,0x4b,0x58,0x1e,0x5e,0xdc,0xff,0xfe,0x13,0xb3,0xad,0x19,},{0x0a,0x83,0x99,0xf1,0xe5,0xa4,0x23,0xdc,0xf7,0xb2,0x5b,0x2f,0xb0,0xac,0x9e,0x1e,0x95,0x48,0x14,0x8b,0xea,0x84,0xd0,0x21,0xe0,0x42,0x87,0x60,0xe0,0x5d,0x58,0xbf,},{0x69,0x8f,0xab,0x68,0x51,0x0d,0xb8,0x12,0x1a,0x46,0x5d,0xb7,0x7e,0x4f,0x8b,0x58,0x6a,0xee,0x89,0x58,0x16,0xe6,0x3b,0xbf,0x0b,0xeb,0x24,0x2d,0xb4,0xe8,0x4c,0x15,0x7f,0x4b,0xe2,0x01,0xae,0x65,0x64,0x51,0x7a,0x87,0x0d,0x17,0xf6,0x0c,0x85,0x83,0x70,0xc0,0x1c,0xca,0x17,0x18,0x9c,0xb4,0x18,0x9e,0x81,0x43,0x91,0xd1,0x50,0x0d,},"\xad\x81\xab\xf6\x93\x7a\x7a\xcd\x7f\x18\x37\xf0\x4d\x3f\x10\xe7\x08\xc6\x1a\x5f\xbe\xde\xee\x4d\xb7\x6e\x15\x98\x57\x03\x84\xe6\xef\xec\xe9\x7c\x92\x5d\x2e\x5c\x34\x88\xca\xb1\x0b\x5b\x52\xb8\xa5\x48\x6e\x99\xd8\xff\xe8\x6c\x19\x81\xa1\xf1\xd5\x32\xdc\xd4\xd4\x89\xe5\x54\x6d\x86\x65\x32\x98\xe7\xa5\xf9\x6e\x81\x44\x55\x2d\xda\x8a\x18\xe7\x5b\x5f\x73\x55\xb1\x35\x41\x62\x11\x06\xe4\x97\xe5\x1a\x56\xd8\x65\x9d\x19\x8f\xe1\x00\x37\xe2\x21\x28\xaf\xc2\x71\x4a\x2c\xb5\xa1\x2c\xc5\xdb\x09\x68\xa3\x43\xef\x91\x8e\x87\x69\xdd\x6a\x3e\x5b\x9e\x32\xaa\xb6\x6c\xb0\x23\x9e\xbe\x4c\x17\xf1\x82\x18\xe2\x52\xeb\xa6\x16\x2e\x97\x70\x49\xeb\xac\x0b\x38\x04\x8b\x3a\xaf\xb7\xd4\xd7\x22\x63\xe9\x21\x28\x99\xa3\xbf\xe0\xa6\x9c\x99\xe2\x2a\xc6\x1c\x5e\x96\x12\x45\x63\x03\xd9\x24\x58\xb5\xc5\x02\x91\x6c\x34\xa8\xee\x5c\xd9\xa5\x82\xa5\x25\x76\xb6\xdc\x9d\x7d\x4c\x64\x2f\x21\x29\x98\xbf\x33\x58\xd4\xa8\xc2\xea\x67\x68\x6e\x55\xd4\x89\xf6\xa7\x6e\x6b\x07\x0e\x6e\x99\x5a\x74\x53\x26\xc9\xaa\x63\x63\x0a\x00\x33\xad\x30\x72\x1a\xa6\x5f\xac\x60\x4a\x6e\x58\xc7\x50\x72\x1a\x56\xca\x67\x60\xc9\x41\x34\xd6\x11\xfa\xb4\xd3\x54\xe4\xf6\x6a\x29\x67\x7b\x1a\x66\x66\x01\xe9\xda\x79\xf2\x13\xf5\x82\x03\x74\x33\xc0\x7f\x94\xd5\xf0\xde\x6a\xa9\xfa\xa0\xb3\x2f\x7b\x02\x3f\xb9\xfc\x13\x5a\x26\xf9\x70\x52\xac\x80\xb3\x9b\x30\x6a\xed\x13\x92\x6c\x28\x54\x19\xa2\x9b\x20\xe2\x37\x0d\x8a\x09\x5b\x32\x25\x8f\xa9\x89\x34\x89\xee\x21\x08\x9c\x75\x2e\xc0\x62\xe1\x20\x35\x9e\x2f\x35\x15\x12\x82\x54\xc8\x09\x8c\xca\x65\xa9\x1a\x02\x2d\xd0\x57\xa2\xc2\xa1\xb6\xb8\x5d\x13\x7c\x3c\x96\x7d\xcb\x70\xaa\x17\xa2\xff\x4b\x37\x67\x8b\x38\x29\x02\xf0\xf9\x31\xee\x74\x3f\xc3\x98\xac\x1b\x8c\x10\x46\x98\x67\x30\x84\x79\xe4\x0d\x7f\x2f\x04\xa4\xb0\x4c\x44\x89\x15\x84\x88\xdd\xb7\xbe\xc5\xa4\x7f\x20\xff\x35\x6d\x99\xa1\xb3\xe9\xd0\xb7\xfe\x9b\x0a\xd9\x49\xf2\x98\x96\x0e\xfa\x4d\x97\x28\xf8\x10\x1c\xf5\x3d\xa3\xbf\xfd\xd9\x52\x4b\xf4\x40\xa5\x8b\x32\x73\x8d\x0b\x62\x93\xe8\x53\xf4\x66\xff\xd4\x2c\x56\x07\xac\x9e\x35\x3b\xa0\x3e\xfb\x57\x8c\xc9\x96\x3d\x8a\xaa\x9d\x2e\x26\x6d\x1d\x2a\xe9\x29\x6f\x30\xc9\xef\x44\xec\x69\x10\x30\xd5\x96\xa4\x01\xb6\xce\xe7\x2a\x54\x0e\xf3\xc4\x2e\xc0\x17\x42\x66\xba\x54\x01\xf3\x54\xad\xc8\xe2\x54\x04\x43\x7e\x88\x8b\x08\x28\x69\x39\xbe\xde\x30\x8a\xcd\x30\x32\x7e\xbf\xf0\x62\x70\x09\x7c\xc2\x94\xf0\xa0\xf3\x9f\x9a\xa3\xc6\x65\x85\xca\x47\xe6\x0c\x4b\x8e\xa3\x60\x89\xeb\x8a\x90\x88\xbb\x18\xb0\x34\x31\x35\xbb\x6a\x45\x6d\x2f\x6a\x3b\xf3\x90\x72\x3e\x78\xb4\x2c\x03\x7c\x2d\xe2\xe1\x43\x2c\xaa\xd3\xa5\x94\x02\x12\x94\xd4\x3f\x5b\x15\xa2\xe8\x19\xdc\x74\x8e\x45\x1d\xe4\x00\x68\xc8\xf0\x32\xf1\x3b\x47\x11\x37\x70\x12\xed\xcd\x4f\x11\xde\xc1\x11\x1b\x12\xeb\x6e\x1b\x00\x63\x38\x18\x70\x6d\x71\x32\xd9\x91\xce\x20\xdf\x3b\x92\x1d\xb2\x18\x5e\xe2\x5b\xb6\xf5\x82\x75\x76\xec\x01\xad\x89\x0f\x79\x79\x3b\xaa\x35\x8c\x2b\xbf\xb6\xfa\xad\x11\xd8\xcb\x0d\x0d\x2d\x2b\x29\x81\xfb\xf4\xe3\x72\x34\x9f\xc6\xa0\x1c\x36\x07\x7b\x59\x32\x5f\x70\x2b\x38\x00\x59\xa6\x5c\xf2\xf5\xea\x98\xd6\xbd\xc8\x15\x20\x53\xb8\x5b\x28\xc8\x1e\x41\x3c\x4c\xac\x7e\x22\x6c\x13\xdb\x32\x67\xd2\x18\x30\xf0\xe5\x43\x11\x02\x91\x70\x05"}, {{0xaf,0xd7,0x65,0xe6,0xaa,0xc0,0x14,0x6d,0x48,0x11,0xef,0x95,0x97,0xbc,0x3f,0x44,0x76,0x3f,0x03,0x37,0x8b,0x7b,0xe0,0x33,0xd6,0xe6,0x4c,0xa2,0x9d,0xec,0xae,0xf9,},{0x6b,0xb7,0x61,0x23,0xd9,0x25,0x89,0x22,0x68,0x6c,0x53,0xfb,0x69,0x17,0xb9,0xa4,0x59,0xca,0xbd,0x30,0xbe,0x8c,0x43,0x97,0x0d,0x80,0xf5,0x35,0x0c,0x2d,0x98,0xef,},{0x3d,0xc9,0x19,0x4d,0x50,0x81,0x14,0x19,0x04,0x9e,0xaa,0x07,0xb6,0x55,0xb7,0xd4,0x06,0x4b,0xcb,0x0e,0x7f,0xb5,0xf9,0xe5,0x32,0x6b,0x5f,0xc8,0x56,0xfc,0x0a,0xb8,0x70,0x59,0x73,0xae,0x10,0x01,0xdf,0x55,0x37,0x39,0x77,0xdd,0xe2,0xd9,0xb8,0x10,0x79,0x55,0x14,0x14,0xad,0xc7,0x1c,0xc8,0x52,0xd4,0x99,0xb0,0xcf,0x82,0x4f,0x07,},"\x18\x3b\x10\x92\xc7\x90\x4e\x47\xa1\x42\x03\x17\xa2\x5d\x0f\x59\x11\x0a\xa8\x4d\x6b\x34\x19\xad\x45\x68\x65\xc4\x3b\x29\xe9\xd1\xda\xcf\x75\x5d\x9e\x5c\xf9\x4c\x55\x91\xd5\xd9\x12\xd0\x5c\xa9\xa5\x2d\x01\x5d\x6e\x8f\x5d\xc9\x4e\xfd\xce\x0d\x7c\xf5\x65\x12\x03\xb1\x1e\x54\x27\xa9\xf6\x79\x42\x9e\x00\x41\x4a\x48\xea\xb1\x3f\xd8\xe5\x8b\x87\xeb\xa3\x9d\x10\x25\xd6\xa1\x8b\x2c\xdc\xbe\x14\x74\x36\xdb\xf3\x8a\x1c\xe8\x64\x13\xae\x31\x87\x65\xe1\xbb\x1d\xf7\xe2\xb3\xbe\x97\xe9\x04\x08\xb1\x17\x17\xcf\x45\x9b\xcd\x0f\x3c\xac\x58\xb4\xa0\xd3\x5b\xff\xb5\x33\xe2\x0d\xf3\x74\x51\xc1\x14\x01\xce\x1d\xab\x02\x05\x5c\x7e\x08\xc5\xec\x46\x39\x0c\xd6\x17\xa6\xb5\xf2\x2f\x65\x18\x30\xa1\x11\x2a\x06\xed\xe4\xc4\x0a\xb7\x95\x78\x51\xd6\xc6\x6f\x17\x1c\xd1\x62\x41\x59\x09\x00\xb8\x52\xa3\xd0\x19\x95\x7b\xe1\xb7\xbb\x7a\xcb\x89\x23\xf2\xa3\x57\xc3\x26\x44\x56\xcf\xca\x9b\x42\x9d\x71\xfe\xcb\x7e\xda\xe3\x9b\x25\x2b\x4e\xb6\x10\xe8\xc7\x18\x83\x56\x99\x75\x4b\x8d\x41\x24\xb4\x92\x48\x8e\xde\x62\x61\x0c\xce\x44\xb5\x92\x18\x66\x3b\x6c\x96\x46\xa1\x4a\x84\x17\xed\xdb\xb6\xf4\xfb\xe5\xa4\xbb\xbb\x48\x2b\x37\xa4\x45\xe3\xc1\x6b\x65\xa1\x41\xcd\x3e\x12\xa5\xb2\xc0\x48\x1d\x61\x4d\x6d\x20\x84\x79\xb9\xb2\x09\xb8\x28\x85\x4d\xae\x0e\xa1\xed\xed\x50\x65\x55\xfe\x18\xe1\x85\x40\x05\xcf\x00\x1a\x80\x77\x08\x34\x98\xd2\x7f\xad\xf1\x18\x28\x6b\x53\xb8\x97\x4d\x69\xfa\x28\x25\xbe\x8c\xa3\xd6\x03\x6a\x92\xca\x52\xf9\x1d\xde\x6d\x5b\x1f\xfe\x28\x88\xf4\xd6\x07\x79\xfa\xd1\xfb\x41\xd8\xc0\x71\x40\x49\xaf\x68\x1b\x75\x5f\x2d\x42\x04\xee\xcd\x09\xe0\x77\x21\x0a\x48\xa1\x95\xe7\x2c\x80\xe1\x27\xc3\xd4\x87\x50\x95\xc6\x57\x0a\x1f\x78\x09\x59\x07\x52\x8c\xf7\x74\x6f\x31\xd9\x71\x11\xc6\xf4\xcb\x25\xb3\x74\x12\x99\xa7\x57\x48\x22\xd4\x6b\x6e\x79\xed\x23\xc2\xfe\x05\x7b\x3a\xc7\x29\x0b\x46\x0b\x16\x6e\xe9\x0a\x45\x56\x2e\xff\xed\xcc\x6b\xa8\xf4\x79\x5f\x73\x95\x81\x8d\xb5\x6b\x6e\xdd\x59\xca\x2c\xc4\xae\xa1\x84\x1f\xd9\x56\x5b\xec\xd6\xc0\x81\x04\xcd\xee\x26\xba\x9d\xe2\x00\x77\x3d\x09\x1b\xc7\x7a\x57\xc5\x47\xf1\xa6\xba\x0a\x2c\xd7\x17\xab\x32\x56\x1d\x74\x22\xea\x72\x35\xad\xb0\xcb\x36\xbf\x5c\xbd\xf8\x8f\xca\xe0\x66\x30\xa1\x56\x47\xd9\xa3\x57\xb4\xe0\xe5\x02\xd2\x73\xf3\x79\x6a\x51\xe0\xbc\x3f\xed\xbf\x7a\x1e\x64\xaa\xd7\x22\xaa\xc5\xfd\x02\x2f\xa7\x9d\x60\xfc\x70\x73\x25\xf1\x27\xeb\x1f\x03\x86\x87\x95\xcc\xdc\x0b\x4c\xb2\x6f\x20\x23\xd1\x52\x15\x3a\x97\xa2\x60\xbf\xf1\x17\x45\xd2\xe2\xcc\x0b\xf8\x60\xd4\xa6\xe3\x58\xa6\xd8\x17\x6d\x2a\xc1\x78\xa9\xae\x1a\x2d\xc7\x5e\x8b\x49\x04\x08\xff\x7c\xdf\x99\x13\x29\xf3\x3c\xb0\xc0\x5e\x1e\x35\x69\x25\x08\x7e\x0b\x8d\x96\xa5\x23\x51\xd1\xd1\x77\x68\xeb\x13\x4c\xdb\x21\xa1\x54\x6a\xae\xdc\xc6\x87\xdf\xa1\xb2\x2e\x92\xfb\x52\x41\xa8\x36\x77\xa1\x53\x44\x5b\x77\xd5\xe7\x03\x50\x8e\x2a\xbc\x58\x8a\x9f\x42\xe5\xbc\x71\x06\x73\xe4\xdd\x8a\xd7\x03\xfa\xb2\xd7\xdb\x1e\xb8\x42\x26\xc8\x9d\x87\x62\xa7\x09\xe3\xe9\x13\x8a\x1f\xa7\x90\xf2\x92\x9b\xff\x61\xbc\x1e\xa6\xe8\xaa\x1a\xd0\xe3\x88\x7d\x70\xa5\x6d\x4e\x65\x47\xfc\x60\x6a\x50\xd3\xbe\x3b\xd6\xdb\x03\x66\x3e\x00\xca\x9e\x4f\x24\xfe\x8c\xbf\xd7\xd8\xc9\x73\x8d\x63\x67\x55\x4b\x7b\x60\x1f\x74\x19\x0b\x59\x70\xa3\x98"}, {{0xeb,0x34,0x71,0x45,0xf3,0x39,0xed,0xd8,0x02,0x78,0x5b,0x6f,0xbe,0xcd,0x5c,0xb8,0x08,0x89,0xac,0x7c,0xe4,0xeb,0xad,0x2f,0x67,0x07,0x67,0x65,0xdb,0x93,0x9b,0xca,},{0x99,0x4a,0x45,0x6e,0xad,0xa0,0x30,0x20,0x92,0x1c,0x3d,0x10,0x9c,0x13,0x5e,0xb9,0x61,0xfc,0xd4,0xa0,0xa4,0x00,0xba,0xfd,0x32,0xca,0x06,0x1b,0xbc,0x86,0x25,0x43,},{0xfd,0xbd,0x15,0xe1,0xe6,0x46,0x9d,0xf7,0x20,0xd9,0x55,0x2c,0xb5,0xdd,0x17,0x7b,0xcb,0xd2,0x92,0xfc,0xda,0x83,0xcd,0x93,0xc8,0x8d,0x01,0x14,0x91,0x2d,0xc8,0x70,0x31,0x09,0xba,0xc0,0xd4,0x59,0xac,0xe9,0x95,0x7d,0xf2,0x29,0x3a,0xc1,0x6d,0x40,0xd5,0x14,0x89,0x35,0x56,0x85,0x32,0x99,0xb9,0x7b,0x4f,0xd4,0x13,0x7a,0x3d,0x00,},"\x5b\x8b\x31\xba\xf8\x84\x83\xf0\x95\xb5\xd0\x2e\x17\xd8\xb7\xb4\x6c\xf4\x64\x60\xe6\x4c\x6b\x02\xc5\x6d\x8d\xaf\xe3\x48\x23\x70\x6c\xb5\xc1\x5f\x33\x8a\xd9\xb5\x65\x86\xa9\x49\x71\x1a\xa7\x31\x2c\xc9\x34\x50\xd2\xfb\x9a\xf4\x61\x3f\xc3\x07\x93\xa6\x31\xa5\x5c\x14\xe5\x3c\x0c\xb1\x5f\x06\x11\x63\x99\x39\x8c\x8d\xd6\x18\x76\xc6\x29\x15\xf9\xf9\xe4\xcd\xf8\xf7\xd8\x9a\xde\x12\x9e\x6d\xde\x7d\x63\x67\x1a\x18\x63\xf5\xda\x8f\x42\xea\x64\xc0\x79\xec\xb9\xa2\xc1\xb1\xdd\x9a\xda\xe6\x0e\x96\xb9\xcb\xbc\x76\x24\x53\x2a\xa1\x79\x75\xeb\xa1\x7a\x7a\xf0\x2b\xfb\x21\x9a\xac\x02\xb3\xd4\x30\x6c\xd3\x89\x33\xa8\x50\x60\xcd\x62\xab\x51\x3a\x39\x65\xb0\x91\x50\xa4\x88\xc9\x2b\xf7\xca\xb0\x48\x2e\xee\x56\x46\x3f\x01\x39\x00\x9b\x9f\xbb\x3f\xf4\xec\xae\x21\x1f\x42\x8b\x5b\xfb\x88\x76\xf0\x04\x98\x3b\x90\xc4\x47\x84\x6c\xa4\xb7\x45\x66\xe9\x79\xbc\x30\xc9\x5e\x99\xfa\xab\x69\xa3\xeb\xbf\xe4\xda\x60\x34\xc8\x2d\x63\xe9\xc5\xcc\xaf\x84\x86\xaf\x3b\x5e\x0d\x38\x14\x22\x93\x8b\x0c\x22\xf5\x16\x95\x5b\xdc\x36\x94\x31\x73\xf5\x83\x27\x08\xa3\x3c\xf5\x2d\x88\x75\xd9\x7f\xde\x58\x5b\x49\x17\xe4\xad\xec\xdd\x1e\x79\x85\x67\x62\x03\x3a\xf2\x2f\x25\x4b\x50\xce\x9d\x0c\x70\x0e\x77\xa7\x31\x55\x4f\xa0\x11\x3a\x0c\x66\x66\x83\xf3\xfd\xb1\x9e\x3a\x42\x63\x02\x23\x0b\x63\xe3\x3a\x78\x5e\xf2\x4a\x92\x89\x45\x5b\x3b\x8f\xc6\x18\xff\xfe\xf4\x9c\x2c\x6e\x48\xfd\x4b\xb4\x22\xf5\x04\x14\x9d\xe2\xb4\xc0\x35\x5c\x36\x34\x08\xe6\x6d\xa8\x1c\xbb\x58\x15\x52\xa4\x11\xe3\x64\xfe\x3e\x4c\xa9\x6d\x70\x72\xab\x07\x2e\x75\x68\xc1\x3d\x35\xe4\x1c\x78\x25\xa1\x3a\x5c\x68\xfb\x9f\xb5\x98\x8b\xbb\xfb\x9a\x0b\x51\x16\x57\x64\x66\x0c\xdf\xa2\x41\x1f\x3d\x42\x16\x5d\xa1\x87\xc5\x8e\xde\xf0\x10\x5a\x6d\xb1\x77\x42\x05\x43\xe9\x58\xd5\xd5\xe8\xa3\x71\xf7\x98\x70\x51\xc4\xe1\x78\x6d\x01\x8e\xb3\xd7\x32\xc2\x10\xa8\x61\xac\xaf\x67\x1b\xe9\x5b\xb6\x3f\xbc\x88\xbf\x8b\xe7\xbe\x53\x90\x93\x9c\xd9\xfb\x2a\xcf\x39\x81\xdd\xa6\x1b\x78\x7a\x7b\xbd\x78\x46\x8e\x1d\x32\xca\x46\xaf\x8f\xb3\x2a\x18\x46\x3c\x18\x0f\x52\x4b\xe1\xda\x91\x0d\xa5\x50\x8d\x42\xa0\x05\x17\x41\x22\x7c\x9b\x62\xde\x6d\x19\xb3\x3c\x0b\xd4\x80\x67\xb0\x35\x85\x9a\xd9\xbd\xc2\xdd\xd9\x7b\xef\xca\x31\xe6\x5a\x88\x6c\xfc\x75\x3a\xfc\x4f\xf2\xa7\x21\x2a\x89\xd3\x7c\x04\x6c\xdf\x39\x99\xc0\x51\xff\x13\x96\xbd\x99\xcb\x54\x94\x56\x39\xeb\x64\x62\xdb\x9e\xce\x84\x07\x7b\x0b\x3d\x6b\x3d\xf3\x95\x2d\xd3\x67\x56\xc6\xda\xb2\xab\xc2\x5a\x51\xbf\x32\xc1\xe9\xcd\xd0\xa7\x28\xa7\x98\x5f\x7b\x7e\x0d\x9c\x1a\x6f\x66\xce\x12\x16\x37\x3d\x25\x2d\xaf\x59\x58\xf2\xe8\x97\x3f\xd2\x68\xfa\xd0\xef\xe2\x51\xce\x76\xfe\x47\xbd\x0a\x4d\x0c\x4f\x10\x17\x94\x9d\x4c\x2b\x16\x71\x72\x18\xe1\x49\x15\x4e\xd6\xfb\xe5\x6f\x86\xd8\x2e\x19\xef\x0a\x91\x63\x19\x12\xf2\xa8\xf3\xde\xbb\x00\x76\x6b\x61\x77\x80\x2f\x4b\x2e\x79\xf6\xe7\xbf\xa9\xc6\x2c\xfa\x2f\x75\xcd\xb6\x04\x92\x63\x0a\x85\xc9\xb4\x31\x77\xd2\xdd\x9b\xa8\xd0\x54\x8a\xbe\x24\x92\x3a\xe8\x44\x3e\xea\xdc\xd0\xf5\x8a\x7b\x82\xdf\xf5\x0d\x88\x40\x03\x88\x9c\xb5\x60\xf7\xac\x53\xe7\x10\xa7\x55\x75\x36\x24\x64\xb1\xaa\x43\xd2\xa9\xb2\x2f\x2b\xd2\x16\x2d\x30\x2f\xaa\x74\x52\x34\x4c\xe7\xad\xe9\x98\x36\x87\xb6\xc6\x8e\xca\x47\xdd\xdb\x28\x9b\x15"}, {{0x32,0x08,0x83,0x7d,0x15,0x54,0xb6,0x51,0x1a,0xdd,0xa0,0x9c,0xba,0xe5,0x65,0xda,0x78,0x43,0x9a,0x47,0x2a,0x5d,0x1b,0x10,0x7c,0xe0,0xa9,0xb1,0xd7,0x75,0x7d,0xb7,},{0x9b,0x52,0x5e,0x35,0x36,0x8a,0x92,0x1e,0x3a,0x2e,0x9a,0x35,0xa4,0xde,0x9e,0xa4,0xc4,0x36,0xca,0xba,0x27,0x12,0x3e,0x5c,0x36,0x9e,0x2a,0x6c,0xf5,0xc9,0x0a,0xb6,},{0x70,0x9d,0x1c,0xa9,0xca,0x2f,0x74,0x2a,0xb9,0xdd,0x0b,0x04,0x93,0x35,0xf5,0x44,0xcf,0xfb,0x2f,0x1a,0x36,0x93,0xd5,0xf5,0x3f,0x8b,0xa0,0x83,0xb9,0xb0,0xd8,0x6e,0x52,0x08,0xfa,0x8e,0x1e,0x81,0x56,0xc9,0xcc,0x22,0x42,0x77,0x5a,0xbb,0x7e,0x15,0xaf,0x30,0x85,0x86,0x8e,0xf4,0x57,0x63,0x4e,0x99,0x26,0xc4,0x04,0xec,0xf3,0x0f,},"\x43\x6a\x3c\x31\x76\x3f\x93\xd4\xd5\x46\xc6\xd1\xec\xfb\x7a\xe4\x59\x16\xaf\x75\x4f\x83\x9d\xcf\xe9\x6d\x6b\x69\xc6\x12\x14\xd0\x16\xfc\x84\x2f\x56\x46\x2a\x3f\x07\xf6\x61\xb2\xe2\x50\x5a\xcf\xaf\x48\x2a\x0b\x0f\x4f\x55\x01\xee\xc4\xb2\xd2\xd7\xd4\x44\x54\x4d\xe0\x00\xb9\x90\xf4\x36\x3d\x3f\x98\x3f\x5d\x4e\x09\x30\x97\x52\xff\x57\x9c\x73\x20\xc9\x15\x95\x1c\xc3\xa1\xe3\x23\x8c\x1b\xa7\xa1\x91\x30\xea\xbf\x6a\x37\xf5\xf0\xbc\x56\xe2\x52\x42\xf7\x52\x06\x1f\x3c\x63\xac\xad\x99\x2a\x75\x01\xe9\x67\xde\xb9\x25\xb3\x0e\xd1\x05\x43\x1e\x58\x21\x02\xfa\x4f\x30\x8c\x2f\x06\x83\x61\x2b\x56\x68\x6d\x52\xda\xed\x69\x43\xa7\x21\x9f\x3b\xee\xa2\xe0\xa2\x92\x42\xe8\x6d\x55\x62\xff\xab\x83\xb5\x6b\x26\x33\x26\x66\x4e\x02\x9e\x96\x1e\x70\x17\xd8\xe8\x9f\x5e\x3e\x1d\x10\xf5\x93\x28\x54\x55\x0c\xe6\xe5\xcd\x76\x97\x1f\xd2\x35\xcf\x9c\x00\x27\xd0\xcf\xed\x33\x15\xc2\xcb\xf1\x85\x08\x62\x4d\x8a\xcf\x04\x7f\x9b\x96\x8f\x90\x7d\x9e\x6f\x4c\xfa\x5e\x45\xc8\x0a\x27\x2c\x2d\xbb\x62\xc5\xd4\x19\x45\x80\xdf\xab\xed\xd8\x2c\xb4\xd7\x64\x92\x34\x4b\xe9\x6c\xcf\x5d\xaa\xf6\x1e\x6b\x2b\x55\xef\xdb\x3f\x65\x21\x0a\x3d\x6e\x1f\x36\x98\x87\xca\x0e\xa0\xd5\x8c\x3d\x14\x6a\xe3\xcf\x9b\x00\x00\x76\x88\x41\x15\xfa\x51\xb5\xfd\x66\xbe\xc0\xcc\xbf\x0d\x29\x20\x19\x6a\x7d\x7a\x38\x44\x5f\xbe\xd2\x2d\xfc\x75\x64\xdc\x56\xf6\x0d\x6e\x29\xe5\x92\x48\x53\x74\xc6\xbd\x1e\x5b\x15\x93\x1b\x69\xca\x6e\xe6\xb3\xaa\x25\x25\xc2\x35\x85\xf0\x92\x9f\x31\xcb\xd1\x1f\xb1\xa5\x33\x02\x16\xb9\x0a\xe5\xa6\x56\xdf\x7a\x07\x4c\xec\x64\xe5\x98\x18\x4f\x50\x3f\xb2\x3c\xc0\x5e\x65\xda\x9a\xe7\xe8\x44\x1f\x40\xe2\xdc\x26\xb8\xb5\x6d\x2c\xb5\x23\xa7\xc6\x35\xdc\x08\x47\xd1\xcd\x49\x8a\xbf\x75\x6f\x5a\x13\xea\x14\xf8\xfa\xb2\xc4\x10\xb1\xa4\x70\xf4\x9a\xa8\xdc\xa4\xac\x02\x56\xb1\x18\x00\xde\x0d\xd0\xec\x42\xb1\x42\xc5\x61\x12\x8d\x35\x7e\x78\x3b\x12\xf6\x1c\x66\x8f\x5e\x6e\x06\xb7\xb4\x8b\x7b\x22\x54\xde\x5b\xdc\x18\x04\xb7\x23\xd5\xfd\x6a\x0f\x4b\xc7\xc5\x9e\x7c\x50\x54\x18\x26\x13\xbb\xd2\xfa\x92\xb4\xc1\xda\x16\xbc\x8c\x97\xe1\x6b\xcb\x0d\xbf\x8c\x92\xb7\x48\x99\xb3\x7f\x31\x87\x57\x14\x0b\x6c\x4f\xd5\x35\xe2\xe1\xe0\x57\x0a\x50\x81\x8c\xf7\x8f\xb9\x88\xe1\xf4\xce\x40\xe7\x6e\x8f\xe3\xd6\x97\xd7\xa4\x58\x50\xf2\x93\xce\x17\x0f\xd8\xab\x07\xcf\x15\x34\xea\x5f\xfa\xd3\x4f\x6f\xcf\xa4\x2d\x0d\x21\xa9\x1d\xfb\xfe\x05\x97\xc7\x3f\xd9\xb9\x76\x76\x14\xeb\xdf\xd0\x2c\x3a\xc0\xc4\x9a\xd1\x0c\x94\xbe\x59\x69\xee\x08\x08\xc0\xa3\x0b\x2a\x1e\xaa\x90\xea\x43\xb8\x57\x5c\x30\x56\xf4\x23\xcd\x4b\x6f\x34\xae\x51\xc2\x22\x37\x65\xa9\xea\x21\xf6\x45\x73\xc1\xa1\x39\x61\x32\x12\x46\xe3\xb5\x34\x9e\xe0\x48\xfb\x62\xd5\xfb\x61\xb1\x71\x43\x91\x18\x25\x62\xb9\x15\x98\x36\x0e\x5f\x9b\xf4\xac\x80\xdb\x24\x64\x32\xaf\xb3\xa4\x3d\x34\x96\x50\xde\x03\xd3\x43\xc2\xe9\x7a\x8e\xef\xd1\xbf\x30\xc1\x0c\x25\x86\x7f\x53\x26\x6b\xd1\xf0\xdc\x14\xae\x1a\x6b\xe9\xef\xde\xcf\xf6\x7e\x7d\x29\x2c\x6c\xdf\xc9\x0d\x80\xb8\x86\x66\x8f\x04\xc2\xa0\xf5\xad\x7f\xa1\x7c\x17\x8b\x6e\x9b\x45\xa1\x1f\x4d\xdf\xe2\xd6\x69\x60\xa3\xf7\x51\x35\xad\x5e\xd1\x54\xe5\x13\xe1\xa5\xd1\x38\xe7\x37\x1e\x84\xd7\xc9\x24\x53\xe6\xc6\x2d\xc5\x9b\x8e\x1f\xa9\x3d\x77\x3a\x25\x40\xd9\x1c\x25\x7c"}, {{0x4e,0xc6,0x82,0x9b,0x43,0x99,0x70,0x56,0xd9,0x96,0x85,0x38,0x9b,0xd5,0x3c,0x52,0x8d,0xe7,0xe5,0xff,0x27,0x15,0xd6,0x5c,0x95,0x66,0x19,0x82,0x6e,0x3f,0xb5,0xb5,},{0x7d,0x92,0x2d,0x57,0xfd,0xb1,0x27,0x92,0x87,0x9a,0xec,0x4e,0x8c,0x65,0x14,0x63,0xec,0xe0,0x64,0x49,0x2c,0x72,0x17,0x53,0xd2,0x2e,0x11,0x55,0x09,0xfe,0xd7,0x06,},{0x15,0x9c,0xa4,0x04,0xf7,0xf7,0x41,0x17,0xc5,0x16,0x3c,0xf4,0x04,0x11,0x09,0x49,0xeb,0x57,0xae,0x2d,0x76,0x62,0xb1,0xff,0x41,0x78,0xcc,0x67,0x56,0xe9,0x0a,0xda,0xea,0xb7,0x1b,0x06,0x4c,0xe1,0xdf,0xf4,0x57,0xb2,0xdb,0xa7,0xe2,0xdc,0x13,0xc2,0x17,0xbc,0xae,0x8a,0x61,0xfc,0xf8,0xce,0x14,0x87,0xa6,0x49,0xc2,0x57,0xff,0x07,},"\xed\x26\xb4\x13\x0d\x4e\xbf\x3f\x38\x61\x49\x1a\xa3\xdd\x96\xa4\xeb\x69\x75\x21\x73\xfa\x6c\x84\xca\x65\xdf\xc9\x91\xc7\xfe\x44\xe0\x2b\xd6\x16\x50\x25\x2a\x1d\x23\x78\x66\x82\xec\x38\xc1\xfe\xe8\x2c\xc3\x50\xdb\x7c\x3c\x39\x49\xa1\xc9\x35\xff\xeb\xd7\xba\xa2\x4f\x35\xa3\x93\xfb\xd2\x7e\x7c\x34\xc2\xf9\xff\xda\x60\xa1\x8d\xf6\x6c\x3e\x46\x5d\x90\xed\x48\xfb\xba\xd3\xfa\x79\x47\xde\xe7\xe6\x59\xa3\xee\xad\xb8\x87\xf0\x96\x3f\x6b\xdd\x76\xc3\x6c\x11\xae\x46\xd0\x88\xee\x50\xbc\xa8\x18\x7a\x0a\x88\x32\xdb\x79\x84\xb7\xe2\x7c\xbe\x6a\xbf\x12\xd2\xc9\x4f\x33\x7e\xc7\x8c\xb3\x8b\x26\x24\x1b\xd1\xa3\xd2\xf5\xfa\x44\x07\xfd\xd8\x02\x27\xd2\xb1\x70\x14\x4b\x41\x59\x78\xe3\x72\x01\xd0\xfc\xf4\x31\x74\xb9\xd7\xb2\x11\x5d\x5e\xb8\xbc\xec\x27\x6a\x77\x5a\xea\x93\xf2\x34\x0d\x44\x25\xd3\x4d\x20\x47\x49\x4d\x91\x7e\x0d\xbe\x37\x85\x7e\x6c\x99\x85\x9b\x71\xc9\x14\xaa\xd5\xe5\x4f\x7b\x2b\x03\x3e\x59\x4e\x27\x2c\xc5\xcf\xe9\x19\xf8\x88\xe5\x5c\xb6\x15\x7a\xff\xcf\x35\x72\x46\xd0\x0b\x53\x2c\xc4\x71\xb9\x2e\xae\x0e\xf7\xf1\xe9\x15\x94\x4c\x65\x27\x93\x15\x72\x98\x53\xda\x57\x2c\x80\x9a\xa0\x9d\x40\x36\x5f\x90\x87\x5a\x50\xd3\x1c\xa3\x90\x0d\xa7\x70\x47\xc9\x57\xc8\xf8\xbf\x20\xec\x86\xbd\x56\xf9\xa9\x54\xd9\x98\x8e\x20\x6b\x44\x4c\xa5\xa4\x43\x45\x21\xbf\xc9\xc5\xf3\xa8\xa0\x61\x47\xeb\x07\xd1\x1d\xfe\x11\x71\xec\x31\xff\x55\x77\x15\x88\xb3\x33\xee\xe6\x21\x5d\x21\x6c\x47\xa8\x56\x6f\xbb\x2b\x18\x97\x46\x46\xac\x5a\x92\xc6\x99\xd7\x75\x84\xc0\xde\xfe\xfd\x2d\xfa\x58\xfc\xa2\x71\x99\xe4\x1e\xc5\x8a\x24\x63\x20\xb3\x5f\xaa\xb7\x5b\x97\x95\x19\x24\x22\x6d\xa4\xab\x28\xf0\x1b\x47\x07\x8e\x71\x2e\x4f\xd9\xf7\x7b\x25\x1c\x96\x67\x85\x8c\x28\xe3\x2e\xf1\xcd\x01\xfc\xbe\x43\x5c\x54\x2d\xba\xd0\xa8\x4a\x13\xcd\xbb\x57\x75\xe6\x2d\x81\x1d\xc6\x90\xd9\x55\x5c\x37\xf1\x5f\x91\x76\x7a\x56\x13\x57\xdf\x10\x6e\xef\xe0\x56\xe7\x36\x06\x70\x65\x0f\xb8\x18\xfc\x6a\xdc\x59\x97\x3e\x9a\xd5\xcd\xcd\x80\x98\x07\xab\x56\x39\x7f\x3c\x13\x94\x87\x32\xd9\x8d\x67\x6f\x4a\x44\x70\xa9\x5d\x8b\x51\x82\x37\xe2\x26\xf0\xcc\x5f\x47\x65\x16\x4a\x5c\x3e\xf0\x50\x71\x4b\xe0\x2a\x12\x6b\xe8\xf6\x65\x46\x48\x15\x81\xb9\xe9\x4a\x26\xaa\xd2\x4c\x69\x3b\x7f\xdb\xc1\x8a\xcd\x3e\xd7\xcf\xc4\x7d\x8a\xb2\x67\x45\xd7\x8e\x70\x1d\x0c\xf0\x5d\xd8\x44\xb5\xb3\x45\xa2\x9d\xab\x68\x4c\xbc\x50\x92\xba\x02\x2e\x3c\x58\x2d\xfc\x04\x4c\x31\x00\xad\x02\x75\x66\x97\xa8\x49\x82\x29\x15\xa1\x6e\x2a\x2b\x81\x0e\x68\x15\xf5\x44\x21\xd2\xf3\xa6\xff\xf5\x88\xc0\xd9\x01\x3c\x76\xf3\x3e\x09\xbe\xae\xef\x60\xd8\x77\x42\x30\xe8\xce\x71\x31\x28\x9a\xef\x2a\x40\x68\x6c\x81\x9f\xb2\x04\x0b\x06\x12\x4d\x3d\x9a\xa4\x19\xd5\x67\x88\xf1\x7f\xa7\xed\x9b\x9b\x57\xce\xaa\xd1\x33\x7a\x01\x01\xbe\xa0\x44\x0c\xff\x74\x5d\xdd\x97\x22\x05\x5d\x1f\x9b\xcf\xb0\x09\xce\x2c\x2f\x41\xa9\xe7\xe8\x68\x06\xb8\x72\xcd\xc2\x05\x9b\xc8\xec\x68\xf5\xee\x56\xc4\xba\xcf\x4b\xbd\x30\xea\x4c\x71\x55\x86\x4d\x60\x0c\x0e\x2e\xee\x73\xb3\x19\xbd\xa4\x37\x2e\x9c\x60\x3c\x77\x2c\x25\x89\x0c\x76\x10\x48\x99\x89\x47\x5d\x37\xa7\x7a\x45\x74\xa2\xba\x55\xbf\xd9\xc9\xcf\xd1\x46\xfb\x97\xe6\x16\x5d\xcc\x19\x55\x9f\x4f\x85\xdf\xca\x2f\x97\xf3\x70\x2e\xd8\xfa\x6b\x3c\x2a\x97\x41\x97\x4a\xa0\x7a\xb6"}, {{0xb1,0x50,0xa7,0x89,0x29,0xed,0x1e,0xb9,0x32,0x69,0x21,0x3e,0x1e,0xbc,0x22,0xe2,0xe4,0x0a,0x60,0x1b,0xdb,0x00,0x54,0x99,0xb7,0xbe,0xb0,0x58,0x91,0x7c,0x53,0x40,},{0x28,0x86,0x6b,0x6d,0x1c,0x39,0x3c,0xb0,0x8e,0x46,0x4c,0xf5,0x57,0x14,0x40,0xa6,0x49,0xe5,0x06,0x42,0x38,0x0d,0xdf,0x4f,0xfb,0x7a,0xd1,0x50,0x48,0x5c,0x10,0x8e,},{0x27,0x6d,0xd0,0x96,0x2e,0x6e,0xe6,0x4f,0x05,0x92,0x44,0x1a,0x8a,0xf0,0xe5,0xef,0x8f,0x93,0xbf,0x0b,0xae,0xba,0x20,0x50,0x4b,0x9d,0xb4,0xf9,0x5a,0x00,0xb9,0x39,0xea,0x38,0xde,0xf1,0xc7,0x97,0x86,0x28,0x98,0xca,0xbe,0x9d,0xc4,0x64,0x4f,0x0e,0x67,0x7e,0x87,0xc0,0xa3,0x3b,0x87,0xb6,0xa4,0xd2,0x2a,0x80,0x7d,0x0e,0x1e,0x02,},"\x1b\xf5\x5d\x27\xf9\xdd\xe6\xc4\xf1\xc0\xdd\xd3\x60\xa2\x5d\x94\x93\xc0\xff\xdc\xa7\x4a\x7e\xd5\xe5\xa5\x14\xe9\x55\x15\xcd\xa4\xaa\xd8\xf4\x5c\xd6\xed\x79\x01\xf8\xf2\x24\xa6\x3b\x38\x12\x1c\xbe\xac\x2f\x56\xda\xe2\x10\xdd\x05\x37\x50\xcb\x20\x75\x14\xa8\x89\x1e\x24\x5a\x5d\x07\xe7\xde\x78\xa2\xe3\x81\x44\x63\xf1\x48\xd2\xac\xb7\xdc\x71\xf9\x95\xc9\x29\x9a\xd0\xd6\x26\x6c\xfe\xfc\x94\x26\x96\x57\xfd\x47\xcf\x53\x12\xb9\x2a\xf2\x75\x06\x51\xc4\x79\x63\x6c\x9d\x36\xae\xf0\x8f\x7d\x11\x95\xe7\xfa\x1b\xa3\xab\xb5\xdc\xb9\x01\x36\xb0\xfb\x9a\x37\x66\x8b\x87\xa2\xdb\x88\xd1\xe2\xb6\x44\x0d\x3e\x6e\x60\x1e\x6d\x4b\xc1\x0c\xf1\xcb\xdf\x1d\x61\x69\xc0\xdc\x2c\x4a\xec\xde\xb6\xcd\xd4\x56\x7d\x42\x50\xb2\xaf\xa7\x15\xb1\x66\xc9\x46\x7f\x90\x7d\x3f\xa5\xa6\xda\xf2\x00\xb3\x09\xc1\x09\x37\x68\x30\x49\x9c\xaf\x31\x49\x00\x1c\xf3\x33\x94\x48\xca\x3d\x76\x52\x25\xd6\xb3\xc1\xcd\x26\x7c\xba\x93\x6e\x7a\xa4\x83\x25\x39\x46\x6f\xd2\x0c\xbb\x38\x32\x3c\xbb\x22\x28\xa2\x71\xf2\xd2\x82\x56\x1c\x73\xed\x79\xa1\xad\x04\x69\x8e\x27\xef\xe3\x93\x23\x5f\x34\x56\xc2\x95\x40\x7d\xa0\x96\x0f\x00\x34\xd8\xde\xef\xd1\xc1\x85\x73\x6f\xd3\xea\xf1\xf9\xa1\xe3\x2f\x09\x17\x4c\x1f\xe1\x27\x20\xb7\xc9\x6f\xeb\xdb\x33\xe0\x1b\x1b\x6a\x1c\x63\x71\x50\x19\x4b\xe4\xff\xab\x15\x9e\x45\xb2\x45\x85\x57\x68\x46\xbb\x64\x27\x4e\xca\x7b\x39\xa3\xed\x93\x57\xde\x7b\x08\x42\x13\x02\x4a\x9e\x85\x89\x26\x36\x00\xa2\x86\x7c\x2a\x7c\xf8\xb9\x90\x76\xa1\x2a\x07\xbd\x7d\xf8\xd5\x27\x7b\xb0\x4a\xd7\x2e\x63\x9b\x77\xea\xca\x1e\xc5\x8e\xf9\x63\x7e\x9a\x23\x76\xba\x87\x8a\x45\x72\x35\xa0\x6f\x78\xfd\xf0\xe0\xd9\x25\xcb\x2f\xd2\xa3\x8c\x77\x18\x8f\x60\x37\x2e\xf6\x00\x97\x92\x42\x43\x99\xc9\xb6\x79\x28\xda\x2e\x3b\xa9\x1c\xbd\xe4\x07\xe7\xe8\x76\xba\x98\x13\x9e\xd2\x2c\xa3\xb9\x83\xbe\xde\x00\x00\x52\x87\x96\x44\x8e\x4a\x10\x55\xac\xb2\xde\xaa\x56\xbc\x30\x82\x54\xc5\xbd\x49\x8c\x27\x5e\xce\xdc\x13\x57\xef\xe1\xfd\xa0\x1d\x34\xd9\x16\xdd\x4d\x86\x47\xe5\x77\x19\x95\xa6\x53\xe0\xf8\xa5\x28\x4c\xc7\xbf\x73\x15\x7b\x33\x49\xd5\x9e\x6f\x92\x0c\xad\x6c\xdd\x17\x19\xf0\x38\x02\x5c\x43\x00\xe0\x21\x0c\xe2\x49\xfa\xf3\xc8\x2d\xe1\xfd\x1c\xda\xbe\x61\xc1\x4e\xcb\x1d\xf0\x0c\x5c\x46\x6a\xa6\xa0\x12\xa9\xc1\x0d\xcf\xe5\x9b\x7e\x9d\x3b\x15\x5d\xab\x6c\x7b\x7c\x16\x08\xc1\xed\xd5\x1d\xbd\xad\xf6\xba\x58\x76\xb5\xe6\x0f\xdf\x7f\x19\xe6\xef\x71\x2c\xd1\xa7\xdd\x3a\x06\x2a\x65\x74\xa7\x43\x6b\x31\x9e\xfb\x94\x4e\x42\x23\xf5\x42\xb2\x50\x2c\x1b\xa9\x76\xbe\x91\xe0\x5b\x0f\x85\xa0\x9f\xd7\x93\xbe\xca\x88\x33\x75\xfb\x67\xcd\x13\x3f\x52\x84\xd8\x99\x84\xff\x3c\xaf\xa7\xe1\x1a\x9d\x85\xe7\x89\x32\x32\xa5\x24\xec\x54\xb2\x0f\x97\x5d\x3c\x0a\x11\x43\xa0\xef\x41\x17\x6b\x70\x51\xea\x91\xd4\x0c\x5f\x44\xfd\x9e\x10\x05\x58\xbf\x12\x12\xa7\xb8\x91\xe6\x8b\x55\xca\x61\xf4\xbe\x94\x52\x66\xd9\xa1\x00\x7a\x14\xaa\xeb\x68\xc4\x8e\x25\x7f\x0f\x46\x31\x0a\xd1\x64\x81\x46\x7e\xc1\x77\x35\x35\xd5\xfc\x08\x49\x15\xf5\xd0\x04\xba\x0d\xc7\x59\x1d\x21\x23\xc6\x22\x07\x90\x9d\x84\xf2\xb3\x82\xf5\xef\x12\x75\x9a\x95\xcd\x3f\x51\x89\x80\x6e\x27\x39\x60\xae\xe1\x62\xc0\x0f\x73\xe7\xfa\x59\x36\x39\x57\x65\x4b\xb1\x91\x6b\x57\x09\xbb\x0a\x9d\x04\x05\x14\xae\x52\x84\x95\x1e\x6b"}, {{0x9f,0xc7,0xc4,0x9c,0xb8,0xc4,0xf0,0x97,0x2d,0x6e,0xd9,0x70,0xae,0x2c,0x6a,0xc3,0x37,0xe6,0x75,0x42,0x5c,0xc8,0xdc,0xe7,0x30,0xfc,0x41,0x44,0x43,0x02,0x93,0x5d,},{0x47,0x82,0x52,0x0b,0x06,0xf9,0x33,0x44,0xaa,0x76,0x67,0x80,0xe5,0x44,0x01,0x36,0x3d,0xfd,0x7d,0x96,0x7c,0xc3,0xbf,0x06,0x48,0x8a,0xf9,0x09,0x20,0xa3,0x0f,0x85,},{0x5c,0x78,0x3a,0x86,0x0a,0xa6,0x68,0x18,0x4d,0xd2,0x2c,0x4f,0x9a,0x54,0x6b,0x5e,0xc9,0x6e,0xba,0xd2,0xe4,0xaf,0x00,0xf9,0x68,0xc6,0x88,0x67,0x13,0x54,0xe0,0xcc,0x9b,0x57,0x2c,0x73,0xbc,0x6f,0x19,0x93,0x7a,0x05,0xf1,0xba,0xf3,0x43,0x47,0x63,0x96,0x5c,0x96,0xe1,0x03,0x40,0x7f,0x0e,0xb6,0x42,0xc5,0x64,0x41,0x54,0x29,0x0b,},"\x82\xbc\x2c\x70\x0d\xb2\x22\xa4\xac\x91\x4a\xa2\xbe\x8f\xa2\x8e\x42\x20\x67\xf9\x4f\x33\x44\xf5\x36\x2b\xeb\xaa\xbe\xd7\x61\x2b\x0e\x46\x4a\x73\xa6\xc4\x56\x90\x35\x64\xb1\x53\x93\x48\x51\x40\xdd\x0f\x3a\xff\x90\xaa\x6e\x16\x61\xdd\xf6\x82\x85\x0d\x04\x90\xaf\xc3\xd7\x35\xde\xa0\x5b\xa4\x7c\x85\xd9\x7e\x83\x35\x33\x51\x4c\x19\x8b\x4c\xf6\xe6\x6d\x36\x0e\xe5\xbf\x00\xe1\x4a\x3a\xab\x1a\xd0\xe7\xb8\xab\x2a\xac\xc9\x64\xd4\x28\x30\xc7\x84\x53\xdf\x19\x55\xbb\xed\x1c\xd6\x8a\xda\x3d\xb0\xec\xdb\x60\x1a\xd7\x66\x7d\x5c\x5e\x2f\xd4\x9e\x36\xf7\x32\x8e\xaa\x33\x7d\xbd\x6f\xf7\x0e\x78\x98\xa3\xf9\x8c\x15\x9d\x04\x5a\x24\x27\xad\xe5\x33\x3c\x88\xfc\x4a\xfd\x38\x19\xdc\x82\xf4\xda\xa3\xc5\x23\xcb\x57\xe3\x5a\x2a\x5a\x72\x5d\x63\xd4\x02\xba\xef\x51\xe5\x1f\x1e\xf4\xf8\xf9\xa5\x95\xc9\x37\x9c\x9a\xba\x87\x3f\xb4\xe7\x65\xa9\x31\xda\x09\x14\x8a\xba\x6e\xc5\xb4\x48\x59\xb0\xe8\x1f\xf9\xfc\x22\x95\x98\xac\x9f\xbd\xb0\xbd\xbd\xdb\x56\x92\xa5\x22\x22\xdf\x52\xea\x38\x7b\xbb\xf3\x6a\xd6\x4d\x19\x46\xbd\x28\x2e\x32\x3f\xf4\x82\x2a\xd9\xda\x89\x7f\xf7\x3f\x01\xb3\x90\xcf\xe2\xe6\x4d\xe4\x92\xd5\x5d\xe7\x7f\x5d\x7d\x00\x60\xa6\x87\x2a\x01\x83\xcc\xba\x61\x0f\x53\x27\x4c\xcb\x29\xce\x6d\xce\x6a\x03\x6c\x53\x17\xa1\xed\x2a\x7c\x10\x68\xc1\xb2\x46\xfc\x1d\x58\x81\xd0\x0d\xe0\x6e\xb4\x01\xcf\xf9\x5e\x6b\x69\x14\x86\x99\xdb\x13\xe9\x4b\xb5\xb2\x80\x21\x2d\xff\x54\xc7\x0e\x56\xde\x23\x5a\x5f\x14\x00\xb5\xbe\xa5\x67\x72\xd0\x60\x17\x0f\x1d\x06\x57\x32\x15\x61\xe4\xb4\x91\x07\xeb\x96\xd9\xb3\xbc\x5a\xdf\x45\x1c\x2a\x52\x4e\xba\x4d\xb0\x03\xb7\x7b\x63\x2a\x5d\x89\x82\x7a\x62\x24\xcc\x79\x8e\x09\x6b\xa2\x7f\xb3\x3b\xf6\x1e\x3b\x8e\xaf\x18\xd0\x01\xae\x8e\xb5\x2f\x85\xc9\x0d\x9e\x12\x54\x48\x03\xe6\x7f\xf0\x20\x47\xe0\xd2\x3c\x22\xe7\xf8\xb9\x80\xc0\x1c\x3d\x48\x24\xb2\xa9\xa1\x4a\x2e\x8f\x67\x2a\x7b\x0c\xe0\x3b\xdb\xb3\xbd\x56\xd7\x54\xa0\x96\x4d\xb0\x1c\xa8\x99\xd4\x88\x00\x15\x08\x65\x7b\x7b\x02\x2c\xcf\x04\x2c\x38\xfc\x19\x49\xd0\xe0\x0a\xf4\xd3\x01\xd4\xf0\x0c\x3d\xea\x20\xe3\x08\xa0\xf9\xdc\xac\xb4\x32\x22\xb3\x82\x41\x44\xaf\x77\xbe\x18\xa5\x04\xaa\x8d\x26\x8b\x8a\x56\x00\x72\x5e\x7c\xc5\xf3\xa2\xe6\x25\x6a\x80\x74\xd1\xae\xbc\xa1\x23\xea\x53\xa0\x76\x7a\x92\xe1\x78\x3a\x49\x83\xc5\xef\x3d\x7d\xd7\xf0\x2a\xa9\xd1\xf4\xf9\xaa\xc6\xce\x25\x45\x93\xf0\x87\x92\x01\x4f\xb8\x67\xea\xf8\x79\xb8\x8a\x4e\xfb\x18\xe8\x9b\xa1\x10\x06\xad\x09\xd8\x54\x31\xcc\x26\x57\x5b\x53\x8d\x8e\x78\x90\x64\x6c\x59\x88\x64\x7c\xc1\x05\xd5\x82\x90\x7a\xe6\x25\xe0\x9c\xd0\x89\xf4\x72\x49\xe8\x18\x14\xda\x14\x04\x4c\x70\x14\xe8\x0e\x7a\x8e\x61\x9c\x7b\x73\x5f\x70\x16\x16\xb6\xa3\xc6\xf4\x92\xcd\xc6\xed\x46\x3e\x71\xa3\xd2\x22\x91\x48\x2d\x90\xa1\xde\x6f\x09\x7c\x4a\xe2\x54\x87\x61\x84\xc5\x62\xb1\x65\x75\xb9\xd0\xd1\x93\x13\xed\x98\x86\x4f\x49\xfe\x2e\x1d\x07\x4a\x21\x21\x1b\x2b\x2a\x6d\x27\xdd\xb2\x86\x11\x52\x0d\x5f\x71\x23\x05\x8f\xd0\x07\xbb\x01\x00\x1d\xef\x07\xb7\x92\xbb\x05\xbb\x74\x1c\x12\x9c\x6a\x36\x37\x6c\x38\x53\xb8\xbb\x4f\x66\xb5\x76\x0c\x8e\xb4\xec\xc7\x30\x6b\xa3\xa9\x0c\x70\xda\x47\xc9\x65\xf6\xdc\xcb\xdb\x61\xa7\xfd\xa1\x8e\xe9\x67\xcf\x8c\x5f\x05\x03\x11\x09\x2d\x0f\xde\xea\xed\xd1\x26\x5d\xef\xdd\x66\x0a\xbe\x70"}, {{0x08,0xbf,0x05,0x9b,0x4d,0xa9,0xaa,0x7f,0xfc,0x70,0x2f,0x5b,0x23,0x04,0xc4,0xf9,0x6c,0xa4,0x9b,0x7d,0xab,0xb6,0xaf,0xb4,0x1d,0xc9,0x1c,0x0f,0x00,0xc6,0x5b,0x78,},{0xa6,0x28,0x9b,0xa2,0x8e,0x80,0xe8,0xd1,0xa3,0x19,0x22,0x3e,0x41,0x65,0xdc,0x0b,0xce,0x73,0x52,0xaa,0xf2,0x42,0xf7,0x0c,0xc9,0x68,0xd2,0x1d,0x77,0x75,0x28,0x32,},{0xe2,0x47,0x65,0x86,0x01,0x37,0x68,0x9a,0xad,0x50,0xeb,0xee,0xfc,0x8d,0x6d,0xb8,0xe9,0x36,0xa4,0xcb,0xa6,0x2c,0xe8,0x7a,0x7f,0x58,0x02,0x09,0x38,0x4a,0x9d,0x7e,0xec,0x90,0x70,0x90,0x5f,0x60,0xad,0x63,0xa7,0xbe,0xfd,0x7c,0x70,0xf0,0xae,0x7c,0x81,0x09,0x16,0x9a,0xee,0x4e,0x51,0x8f,0xce,0xbf,0xac,0xa7,0x23,0xc5,0xb2,0x07,},"\xbd\x4f\xb2\x8a\x1d\xd0\x8b\x07\xba\x66\xe1\x7f\x0c\x4f\x21\x85\x3f\xef\xef\x1c\x9d\x20\xba\x79\x77\xf1\x54\x64\x1e\xa1\xa1\x8b\xec\xf6\xbb\xb8\x03\x88\x88\x62\x94\xe0\x75\x6a\x3c\x50\x8f\xfd\xfe\x90\xb5\x1e\x13\x56\xd1\x12\xd8\xcd\xe5\xee\x2c\xc6\x33\x2e\x61\xd1\x69\xcc\xc8\xcc\x93\x49\x94\xf1\xbb\x56\x0f\xa4\x66\x0c\x0b\x0f\xd4\xe8\x14\x9a\x22\x5e\xd4\x88\x3e\x68\xfb\xb6\x9d\xa7\xaf\x8a\x52\x4b\x17\x14\x1c\xcb\x76\xb5\x0c\xd8\xe1\xb6\x7d\x3c\xe0\x37\xde\xd7\xdf\xa5\x9b\xc7\xc2\x67\x42\x26\xec\x7e\x07\xb7\x8e\xa3\xf7\x82\xfd\xa3\xe5\xf1\xe9\xca\xea\xb6\x08\xca\x38\x7c\x30\x46\x54\xf8\x01\xd0\x0e\x10\xa7\xc2\x9f\x4b\x0d\xa3\xe5\xf8\x95\x13\xa9\x80\x37\x71\x9a\x1a\xef\x4c\x25\x06\xc1\x77\xaf\x54\x51\xa0\x07\x57\xa5\x9f\x16\x22\x9c\x4f\x44\x14\xdf\x51\x58\x0d\x48\x21\x0d\xab\xc9\x37\x73\x70\xb6\x06\x8a\x88\xe8\x1d\x3a\xd1\xbe\xd4\x98\x51\x55\xc3\x60\x0f\xf4\x87\x68\xb9\x03\x02\x2f\xe0\x2a\xe4\x80\xf2\xe6\x32\x9f\x0b\xcc\x91\xd7\x5f\x5c\x6a\x09\xfd\xf7\x7b\xde\x90\x49\x9f\x3c\xa3\x95\xcb\x20\x06\x2a\x09\x84\xad\x6a\x01\x41\xfd\x01\xc2\xd5\x4d\xfb\xb1\xee\x58\x46\x10\x64\x07\x73\x43\x9a\x16\x58\xd2\xc9\xf8\x62\xf1\x83\xbf\xef\xb0\x33\xa3\xbe\x27\x18\x12\xf1\x3c\x78\x70\x46\x57\xe7\xfb\x4f\x85\x01\x75\xfc\xd6\x3d\x3e\x44\x05\xd1\x92\x24\x2c\x21\xf2\x7c\x51\x47\x7f\x32\x11\xa9\xce\x24\x8e\x89\x2b\x42\xfb\x6d\x85\x82\x0f\x41\xb8\x97\x83\x6f\x20\xf8\x5a\x13\x11\x53\x4b\x5c\x40\x4f\x8b\x7a\x4a\x03\x19\xbc\x6c\xec\xaa\x57\xfe\x4d\x4f\x20\x60\x7c\x99\xc2\xdf\x22\xfa\x06\x76\xf9\x9d\x1b\xd8\x78\x86\xc9\x28\xc4\x98\x8c\x6e\x78\xc5\x7d\x75\x83\x30\xe6\x92\x2c\xbe\x03\xc1\x03\x40\x25\x3d\x0d\xd4\x83\x79\x2c\xe7\x5e\x6c\xd0\x9d\x12\xfb\xbb\x04\x1f\x02\x05\xe6\x5a\xd2\x5c\xe7\xc1\xb2\x4e\x77\xee\x8d\x6f\x91\x5e\x3b\xc3\xe1\x0d\x09\xfb\xd3\x87\xa8\x4b\xda\xab\xfd\x1c\xed\xb5\x2c\x0b\x17\x33\xb5\xf4\x70\x88\xc0\xd3\x5e\x0e\xf4\x58\xc8\x54\x14\xc2\xb0\x4c\x2d\x29\xf6\x3f\x77\x58\x61\x31\xee\x65\x53\x0f\x20\x9b\x51\x8a\x0f\x25\x7a\x07\x46\xbb\xd5\xfe\x0a\x2e\x0c\x38\x8a\x6c\x48\x0e\x1b\x60\x71\x4f\xee\x1c\x59\x41\xbb\x4e\x13\xf7\x07\xea\xc4\x87\xa9\x66\x6a\x72\x3b\x57\x93\x13\x4a\x26\x8b\x77\x59\x77\x86\xc3\xa3\x19\x3b\x46\xd3\x55\xdd\x08\x95\xfc\x62\x16\xc5\x36\xa5\x42\xff\xd7\xd7\xb0\x80\x10\xc8\x6f\x54\x7a\x5d\xaa\x38\x33\x5a\x8b\xfa\x26\x55\xd5\xf7\x1b\x4d\x88\x07\xf5\x0c\x85\x45\xc5\x83\xdd\x0b\x69\x00\x22\xee\x65\x87\x3a\xea\x3e\x8f\x1a\x56\x5f\x3b\x0e\x4e\x02\x95\xfb\x0d\x32\x1f\x5c\x0b\x39\x7f\x2f\xd0\x52\x8f\x86\xa0\xd1\xb7\x07\xf7\x37\xb1\x75\xc6\x9e\x9e\x7a\xe3\xc8\x4d\x4b\x2c\xf3\xa3\x8a\x63\x1a\xa8\x03\x2b\x3e\x65\xbb\x45\x28\xf6\x6d\x0b\xfd\x34\x47\x3e\xd0\x10\x1d\x2a\x61\x25\x5b\x21\x5b\xc1\xcb\xab\x9a\x26\xd2\xb9\x69\x32\x4b\x77\xc8\xa5\x46\x4e\x5b\x23\xdf\x6c\x51\x12\xf9\xd1\x7c\x58\x7d\x95\x55\x9d\xe2\x12\xad\x24\x1d\x8b\x12\x60\x50\xe5\xfd\xdf\xcc\x83\x9a\x7e\x5a\xa2\xfd\xa1\xca\x20\xc0\x91\x0d\x86\x34\x18\xf1\x95\xb3\x8a\xdf\xcc\x36\xe9\x2f\x23\x96\xac\x31\x44\xb5\x37\xb3\x0f\xbe\x4d\xde\x61\x49\x02\xf8\x99\x78\xb7\xfb\x42\xcd\x99\xf1\x3d\x99\xc4\x5c\x73\x4f\xb8\x2c\x32\x59\xf9\x0b\x88\xfd\x52\xbd\xcb\x88\xf7\xee\xec\xdd\xe4\xc2\x43\xd8\x80\xba\xc7\x61\x4e\x15\xcf\x8d\xb5\x99\x3f\xfa"}, {{0xdb,0xbd,0x0f,0x7e,0xcb,0x64,0x82,0xcb,0x01,0xc4,0xdb,0xdc,0x38,0x93,0xc0,0xdb,0x81,0xe8,0x31,0x35,0x3a,0x5b,0x01,0xcc,0x75,0xd3,0xb1,0x1f,0x2f,0xf3,0xc5,0x9c,},{0x2d,0x4e,0x58,0x8d,0x31,0xa3,0x84,0xb1,0x78,0x58,0xc0,0xd7,0x84,0xf6,0x71,0x2b,0xaf,0xd0,0xb4,0x12,0x04,0xcf,0x8f,0x0d,0x57,0x97,0x3e,0x59,0xc7,0x70,0xd3,0xda,},{0x96,0xc0,0x03,0x61,0xfb,0x71,0xc5,0x23,0x05,0xe1,0xab,0x77,0x07,0xe0,0x46,0x52,0x03,0xeb,0x13,0xdf,0x3e,0x06,0x55,0xf0,0x95,0xfb,0x33,0x19,0x42,0xa4,0x0b,0x15,0x58,0x41,0x43,0xb3,0x70,0xa7,0xdd,0x57,0x61,0xfb,0x03,0xc0,0x75,0xd0,0x4a,0x83,0x48,0x66,0x1c,0xce,0xa9,0xad,0xa5,0x33,0x65,0xb5,0x00,0x08,0x7d,0x57,0xec,0x0c,},"\xe0\xff\xf3\x59\x75\xeb\xa7\x8d\xa2\xb0\xff\xcc\x5c\x1b\x66\x36\x00\x88\x8e\x82\x55\xcd\x20\x8f\x6d\xce\x7e\x88\x95\x3b\x71\x42\x93\x73\x89\xa3\x37\xae\x82\xf4\xcf\xe3\x2f\xcb\x34\xf5\x52\xa4\x8f\xa8\x89\x9e\x1a\x65\x9e\x3e\xd3\xd3\xd2\x90\xef\xc9\xa0\xf7\xde\xdf\x33\xe2\x1d\x04\x8d\x8d\x91\x07\x57\x03\x7b\x76\xe8\xa7\xee\x9e\x4e\xca\x30\xf5\x29\xdd\xc0\x2c\xef\xfc\x26\xd6\x4f\xda\x73\x03\xcc\x0d\x89\x40\xe9\xef\x59\xdc\x98\x3c\x12\xcc\xd1\xd2\x71\x7e\x64\xd3\x00\x6a\xf8\x2a\xb1\x5b\xb8\x78\xbb\x89\xd1\x75\x8b\xe4\x43\x10\x42\x06\x38\xb9\x6a\x0b\x5e\x1e\x65\x00\x9d\x69\x39\x5d\x02\x7a\x5d\xa4\xa8\x5e\x90\x1b\xe9\xaa\x2c\x0b\x3a\xcc\x50\x8e\xe1\x85\x74\xc1\xb2\xfa\x9b\xd5\xd7\xae\x7c\x7d\x83\x07\x12\xda\x5c\xbf\x26\xbe\x09\xa3\x12\x84\x70\xa1\x2a\x14\x90\x9a\x80\xa2\x66\x65\x9b\xef\xda\x54\x8f\xd2\xb2\x2f\x24\xc5\xfd\xc2\x06\xed\x3a\x4e\x75\xf5\x32\x06\x82\xed\x0e\x4c\xe8\x17\xd6\x3d\x5c\x7f\x1e\xe2\xb4\x40\x64\x33\x55\xbe\x65\x42\xf5\x9d\xc6\xc4\x5a\xb1\x57\x72\xf2\x21\x9a\x81\x2e\xf7\x52\x76\x42\x01\x5b\xc7\x5f\xe4\x5b\xa9\x69\xe8\x10\x0c\x26\x8e\x24\xce\xef\x92\x05\xa8\x3a\x3f\x7b\x5a\xe8\x00\xad\x06\xe0\x95\xb9\xb1\x39\x21\x94\x89\x79\x3a\x7b\xce\x84\xeb\xeb\x65\x4a\xb6\x66\x9e\x28\x55\xcc\xbe\xb6\x94\xdd\x48\x65\x15\x05\xb9\x59\xd3\x2a\x77\x02\x0b\x86\x95\x33\xe3\x25\x6d\x40\x68\x5a\x61\x20\xba\xb7\x94\x48\x5b\x32\xe1\x16\x92\x56\xfb\x18\x8f\xe7\x6e\x04\xe9\xef\xa6\xd1\x0d\x28\x6a\xe8\x6d\x6f\x1c\x87\xe8\xfc\x73\xad\x9b\x59\xfe\x0c\x27\xee\x92\xa4\x64\x15\xb3\x9d\x78\x6d\x66\x32\x5d\x7f\xa6\xfd\xa7\x12\xf1\x99\xda\x55\x4f\xc1\xc8\x99\x44\xa4\xe8\x4c\x19\x6e\x97\x9a\x80\x75\x53\x71\x8c\xb8\x1c\x07\x6e\x51\x1e\x60\x9d\x5c\xac\x23\xd8\xf4\x5b\x38\xb9\x4b\xcf\xcf\x15\x8d\x0d\x61\x60\x22\x38\xd5\x2e\x3a\xe8\x4c\x81\x53\x22\xf5\x34\xf2\x54\xe6\x33\x89\xae\x15\x5d\xee\x2f\xa9\x33\x96\xf0\xea\x49\x9d\x5d\x08\xc2\x47\x59\x08\xc6\x48\xbd\xdc\xee\x59\x1e\x13\x37\xe9\x42\x1d\xc5\xa2\x57\xce\x89\xcc\xce\x4c\xee\xa8\x09\xd7\xe8\x71\x34\xe0\x39\xdb\x1b\xe5\x98\x19\x6d\x30\x89\xfd\xcf\xa8\x97\x8e\x02\xc1\x55\x58\x32\xda\x0a\x72\xb0\x8a\xd0\x7c\xdd\x07\x26\x27\x40\x9c\x87\x39\x37\xb0\xe8\x35\x71\x5b\xaa\xf2\x60\x8b\x23\x95\x32\x74\x67\xcf\x69\xa1\xcd\xcc\xe6\x37\x24\x18\x38\x3e\x7b\x89\xc8\xdf\x4d\x53\x1f\x58\x51\x49\x50\x9e\xad\x1e\x41\xb6\x62\x7f\xea\x81\xc7\x95\x8c\xb4\x9d\x2d\x3c\x3e\x2f\xc6\x91\xe0\xb8\xcf\x72\x67\x9c\x08\xb8\x90\x46\x54\x53\x1b\xc4\x36\x8f\xb6\x17\xac\x75\x57\xd9\xdb\x8d\x32\x9d\x77\xe4\x8d\x8f\xb4\xde\x73\xab\xe7\xcb\x93\x88\x27\x4a\xf5\x85\xf8\x75\xc0\xda\xb7\x93\xe4\x35\x35\x18\xbb\x24\x69\x53\x42\xaf\x0f\x5d\xf5\xbe\x4e\x9c\x7a\xd2\x15\xbe\x90\xe2\x55\x40\xda\x34\x89\x71\x7d\xd3\xd2\x92\x54\x58\x5a\x45\xc1\x3e\x6d\xcc\x7e\x9c\x8a\x3a\x79\xff\x75\x5c\xbe\x46\x5b\x25\xe2\x3a\x1d\xa6\x08\xe1\x08\x4f\xec\x83\xbf\xf8\x0c\xfb\x74\x42\xb1\x46\x01\x87\x30\x7a\xcd\x75\xe3\xf2\xd1\x28\x43\xa7\x70\x94\xac\xc3\x28\x88\xfb\xe5\xf1\xfc\x24\xc6\x15\xd1\x9a\x06\x53\x91\xd4\x17\x64\x74\x64\x42\x46\xb5\x34\x3d\xa7\x76\x26\xa2\xd4\x83\xfe\x20\x4f\x83\x93\x28\x77\x5b\x71\xa4\xcb\x56\x72\x73\xe1\x69\x64\x0a\xf9\x3d\xde\x3e\xca\x91\x16\xf4\x00\xe2\x3a\x7a\xd3\xd8\xfc\x3a\x28\xe5\x65\xf1\x25\xd6"}, {{0x74,0x8b,0xb3,0xcd,0x47,0x71,0x37,0xbc,0x88,0x0e,0xa7,0xc6,0x1d,0xf2,0x5c,0x1d,0xac,0x6e,0xbe,0xc9,0xe6,0xc3,0x19,0x3d,0x81,0xff,0xa6,0xf7,0xa8,0x1e,0xc6,0x67,},{0x10,0x6f,0x28,0xcf,0xed,0xf0,0x96,0x45,0x42,0x26,0xb3,0xb0,0x1f,0xc2,0x4a,0xb1,0xc9,0xbb,0xd7,0xf2,0xb0,0x97,0x3e,0x56,0xfe,0x2f,0x4c,0x56,0xa0,0xb1,0x47,0x5b,},{0xe1,0x3c,0xa8,0xe5,0xce,0x7c,0x26,0x80,0x90,0x90,0x8d,0x61,0xcf,0x2f,0x0a,0x3e,0x45,0x72,0x41,0x2b,0xf5,0xad,0xfc,0x5a,0xdd,0xfe,0x88,0x55,0x6f,0x14,0x8b,0x5f,0xcb,0xe3,0xe1,0xbc,0x65,0xff,0x16,0x11,0x7d,0x35,0xc9,0xd5,0xdc,0x3b,0x11,0x71,0x98,0xf8,0x84,0x92,0x5b,0x40,0x35,0xb2,0xc0,0xde,0x6c,0x40,0x2e,0xd4,0x7a,0x01,},"\x00\xde\x6d\x99\x0c\x84\x33\x8a\x39\x8f\xda\x5f\x4a\x2c\xca\x73\x3c\x56\xb2\xa2\xea\x39\x6c\x2f\xe6\x67\xc2\x68\xe3\x81\x45\x87\x85\x39\xbd\x41\xbc\x14\x0a\x2c\xdf\xe7\xe1\x83\x60\x41\x10\x48\xcc\xa6\x0f\x35\xce\x51\x09\x91\xdf\x26\x1c\xbf\x66\x90\x39\xd9\xd2\x56\x87\xa0\x7f\xc0\x47\x6a\x41\xf5\x0e\xcc\xf3\x81\x53\xee\x6a\xe9\xff\xd3\x92\xb2\xbe\xc0\xcc\x67\x10\x1e\xc3\x69\x6d\x7a\x2e\xc8\xcb\xd4\x47\xb6\xa6\xea\x06\x3d\x33\xec\x12\x8a\xe8\xb5\x75\x77\xde\xe1\x7b\x97\x16\x25\x63\xf1\x5e\x42\xb5\x5c\xa4\xbe\xdb\xdf\xb6\x31\xa9\xf6\x26\x2f\x94\xae\x35\xbb\x35\xf7\x95\xc3\x5a\x01\xde\xdb\x46\x45\xa7\x3c\xfa\x6e\xd9\xee\x52\x1e\x46\x31\xfb\x17\xbb\xc0\x6e\xe5\x73\x16\xbe\x52\x74\x27\xc8\xaa\x55\xc6\x31\x18\x74\x62\xd4\xb2\xc8\x82\x2c\xa4\xe1\x8b\x7a\x5d\x4c\x11\x4c\x11\xdc\x22\x06\x9b\xc8\x32\x65\x6d\x5f\x4d\x39\x54\x87\x18\xc5\x1f\x5e\x4f\xc8\x28\xf6\x0e\x37\xf0\x13\x07\x50\x52\x65\xac\xb2\x2d\x5e\x8d\x76\x7b\x9a\xa7\xb8\x66\xa1\x57\xc6\x43\x87\x3e\x09\x08\x4a\x1a\x40\x4a\x7b\xb5\x8c\xcc\x4b\x5a\x39\x0f\xd3\x06\x01\xc8\x96\x93\x5e\x35\x56\xf6\x0d\x2d\xc6\xbd\xff\xe4\x7d\xa0\xa6\x87\xc8\xec\xe1\x24\x1f\xf6\xc0\x7d\x77\x61\x11\xca\x65\x98\xfc\xa9\x68\xcb\x6a\xfa\x0a\x14\xa3\x4a\xb8\xf5\x4b\x95\xd3\xd8\x47\x3a\x17\x4b\xc7\x25\x52\x3f\x86\x74\xdf\xb2\xb1\x0f\x87\x42\x07\xfe\xe1\xb0\x8b\x42\xda\x1f\x58\x65\x53\x05\xa3\x59\x75\x7a\xa0\x25\x1f\x14\x13\x8e\xed\xbc\x28\x0c\xbd\x38\x5b\xf4\xbb\xf5\x53\x01\x14\xcc\x43\xb0\x47\x47\x79\xe2\x04\x96\x2f\x85\x60\xd4\xaa\x42\x3e\x17\xe6\xae\xca\xce\x66\xc8\x13\x78\x4f\x6c\x89\x8b\x5b\x9c\xb7\x46\xa9\xe0\x1f\xbc\x6b\xb5\xc6\x60\xf3\xe1\x38\x57\x4f\x59\xb9\x74\x54\x45\x48\x6c\x42\x2b\xc0\x6a\x10\xcc\x8c\xc9\xbc\x56\x45\x8e\xf8\x5e\x0e\x8a\x02\x7c\xb0\x61\x7d\x03\x37\xdd\xda\x50\x22\x0b\x22\xc5\xc3\x98\xf5\xce\x05\xec\x32\xf0\x9b\x09\x0f\x7c\xf6\xc6\x0f\x81\x8c\x6b\x4c\x68\x30\x98\x3e\x91\xc6\xea\xdf\x1e\xae\x4d\x54\xbd\xe7\x54\xf7\x5d\x45\x0a\xe7\x31\x29\xf6\xc4\xff\x5c\x4c\x60\x6f\x7c\xad\xbf\x4f\x78\xa1\x8d\xb2\x96\x1c\xc8\xc8\xdd\xab\x05\x78\xcf\xed\xfc\xf9\x5e\xf0\x88\x8a\xfd\x38\x55\x37\xd1\xd0\xa0\x76\x48\xa5\xce\x25\x22\xd0\x63\x35\x07\xd7\x75\x93\xe1\xa0\x36\x6d\x1e\xce\x84\x3d\xe6\x98\x67\xd7\xac\x44\x2b\xa7\xda\xd2\xa9\x0b\x59\xd8\x98\x4e\x4a\x94\x6b\xbe\x5f\x17\x2d\xa4\x27\x63\x8b\x2b\x61\x20\x90\x41\xff\xf5\x0e\x60\xec\x02\xec\x2c\x0b\x1d\xc4\xbe\x2e\xdd\x13\xe8\x7b\x64\xd1\xd1\x66\x31\x14\x57\x3c\xf5\x8a\x17\x73\x9f\x46\x3a\x1c\x3d\x6b\x21\x23\x39\x01\x83\xb5\x05\xc8\xee\xff\xb2\x05\x39\xbd\xfe\xeb\x40\x77\x6d\x20\xc4\x59\xba\xc4\x56\x99\x68\xfc\xaf\xe4\x4e\xa4\xcd\x62\x4a\x84\xbf\xcc\xd7\x87\x6d\xd7\xbf\x55\xf8\x3a\xc7\x04\x0e\x30\xf3\x26\xdc\xe3\x25\x58\x8e\x1b\xa5\xbc\x07\x90\x26\x5d\xfd\xba\x09\x83\x9e\xef\x57\x16\x41\xe8\xa1\x23\x4b\x6c\xfc\x3a\x36\xa8\x66\xbd\x6b\x92\xcd\x71\xec\x74\xe0\xd4\xde\xb9\xe7\x4d\x15\x82\x01\xaa\x50\x2f\x07\xc8\xba\x34\x8a\xc2\x6a\xaf\x9b\x3d\x07\x0c\x9a\x40\xb5\x2a\x44\xe9\x32\x55\x2b\x67\xa2\xdf\x05\xa7\xf0\xf0\x3c\x61\x7b\x48\xdc\x27\x82\x36\x6a\x23\x1e\x0c\x4e\x39\x38\xa4\x27\x4b\x36\xaa\x94\x50\xff\x93\x6b\xe1\x32\xdc\xb6\x92\x83\x8d\x65\x4c\x94\x54\x2c\x6e\x04\x7a\x7f\x78\xba\x71\x19\x19\xf9\x08\xa1\x5b\x30\xb9"}, {{0x39,0x3d,0x44,0xdd,0x0d,0xed,0x71,0xfc,0x08,0x47,0x7b,0xd2,0x5e,0xd0,0xe6,0x62,0x9f,0xa7,0xf8,0x8f,0x08,0x2e,0xbc,0xef,0x09,0x18,0x98,0xe5,0xc9,0xe3,0xd5,0xb8,},{0xc5,0x2a,0x99,0x3b,0x80,0x2d,0x84,0x54,0x0d,0x27,0x54,0x79,0xa1,0xaf,0x5e,0x28,0x7d,0x19,0xea,0x13,0xb3,0x80,0xfa,0x30,0x68,0xd2,0xf2,0xc6,0x8e,0xb9,0x7a,0x09,},{0x84,0xc7,0x16,0xe6,0x0d,0xe6,0x7b,0x02,0x0c,0xc1,0xa6,0xa2,0x4e,0x65,0x49,0xfe,0x56,0xc6,0xd9,0x41,0xa8,0xed,0xea,0xe4,0x07,0x62,0x66,0x66,0xc3,0x1c,0xb6,0x0d,0xee,0x6b,0xe5,0xa7,0x1e,0xbd,0x76,0xba,0xf7,0x1b,0x75,0x11,0x4b,0xcc,0xfd,0x37,0xd1,0x63,0xa9,0x68,0xbb,0xee,0xc1,0xf7,0x69,0x72,0x15,0x12,0x96,0xc4,0x7e,0x07,},"\x14\x2b\x6e\x82\x50\x13\x62\xd5\x5a\x04\xb8\x9d\x54\x1a\x79\x68\x63\xd7\x78\x38\x40\xd3\x4c\xbd\xfc\x51\x6a\x3c\x84\x77\x2f\x92\x44\x6f\x5f\x0d\xf4\xc4\x5c\x6e\x0d\xc8\xec\x1e\x9b\xb0\xff\x7e\xc1\x69\x6a\x09\xcd\x7a\xe3\x4c\x10\xf8\xe6\x1a\x9a\xca\xbd\x43\x03\xf0\xa9\x24\x72\x37\x62\x1c\x49\x0e\x8d\x9d\x0f\xe4\x44\x82\xc5\x60\xd0\x51\xb8\x2b\x07\x4a\xc3\xd8\xe4\x9b\xb2\xac\x71\x5a\xc4\xcd\xe3\xd4\x70\x9d\x0e\xa3\xaf\xc5\x1b\xfd\xef\x4b\x65\x67\x71\xfb\xd5\x5f\x89\xda\x9f\xa6\xdc\xaa\x62\xcb\xae\x56\x12\x08\xd9\x8c\xfa\x24\xcb\x81\x25\x2b\x89\x5f\x6a\x4a\x92\xc8\xe4\x07\xaf\x6c\x1f\x1e\xf4\x9d\x8d\xde\x15\x4f\xbc\xb1\xca\x45\x7a\x20\x4b\x5e\xa5\x43\x2e\x4d\x71\xfb\x7e\xb2\x4d\x43\xf6\xfe\x25\xe7\xb4\xc6\x59\xb0\xee\xbc\x4c\xbc\xc8\xb3\xcf\xde\x07\xc8\xf0\x7b\x18\xa5\x15\x70\xe7\x16\x3e\x33\xb3\x17\xb6\x13\x60\xf9\xce\x08\xd9\x5d\xe2\xc3\x15\x6a\xf1\xcc\xc9\xb5\x5b\xcf\x81\xea\xbf\x3c\x40\x43\x40\x46\xbb\xe8\x2e\x02\x99\x2a\x2a\xc8\xb3\xb4\x25\x68\x0a\x23\xd9\x34\x72\x6c\xb1\xb7\xbf\x26\xce\xb5\x2a\x39\x02\x2c\x00\xac\xf4\x25\x25\x71\x67\xb8\x21\x18\x5f\x68\xe3\xed\x17\x90\x3d\x8d\x22\x27\x54\x98\xc3\x9a\x9e\x8d\xf8\x84\xec\x00\x55\x8d\xcf\xa4\x3b\x8a\x11\x9c\x2e\x85\x3b\x9a\x03\x18\xbb\xea\x08\x7f\x9c\xec\x17\xca\x49\xb7\x08\x17\xb8\xd7\xc1\x70\xa8\x90\x6f\x3e\xe9\xe8\xf8\xcb\x27\xa1\xd0\xf5\x75\xab\xfa\x62\x7e\x88\xf0\x8c\xa4\xb9\x3c\x32\x97\xc4\xf3\x17\x07\x2f\x42\x1c\x5e\x60\x2e\x2f\x83\x1d\xfb\x82\x55\x1b\xdc\xe8\xd7\x12\x16\xf0\x5c\xf9\xa2\x77\x3b\x90\xfc\x93\xb9\xd8\x55\xa9\x1e\x35\xad\xe3\x32\xa5\x06\x1f\xdb\x82\xb3\x09\xba\xb4\xf5\x6e\x2d\x58\x6a\x84\xc6\x74\x81\xd1\x90\x2c\x26\x1b\x3f\x97\xdc\x30\xb1\x84\x61\x9d\xf9\xfd\xfc\x7a\x32\x9d\x06\x1a\x41\xdf\x33\x22\x02\x13\x3d\x8e\xae\xed\xdb\x4c\xfc\xee\x53\x53\x6e\x07\xaa\xd1\x15\x53\xdc\xf5\xed\x1e\x94\x9d\x45\x35\x5f\x9e\xf4\x2c\x78\x32\xb0\xde\x7c\x2f\x15\x26\xfb\xef\x86\xb6\x36\x49\xb6\xb8\x5a\xe5\xca\x86\xf0\xce\xa6\xdf\x9c\x12\x6c\x1d\x79\x48\x9c\xc3\xbf\xc6\xe8\xbf\x03\x46\xeb\x30\xd0\x16\x43\xc0\x10\x15\x0c\x5c\x8d\x0e\xb5\x01\x0a\x46\x11\x22\x15\x13\x79\x91\x08\x5e\x57\x49\x3b\x22\xe8\x35\x26\xb7\xb1\x72\xc6\xc7\x34\x1c\x40\x32\x1e\x9c\xeb\x7c\x82\xbf\xba\xa4\x8f\x3b\xd8\xf5\x13\x72\xd9\x6d\x47\x44\x4f\xf0\xd8\xbb\x2e\x5f\xd2\x65\x14\xeb\x63\x91\x05\xe3\x38\x95\xfd\xc4\x1f\x6d\xf1\xfb\xfd\xcb\x08\x46\x6e\xc2\xd2\x17\xfc\x99\xfb\x01\x2f\xe6\x54\x0c\x0c\x5a\x59\x66\xed\x3e\x66\xfa\xb1\x20\x2a\xb9\xda\xff\xe8\xe2\x7e\x8f\x74\x62\x82\x8d\x66\x26\x59\xea\x3b\x2c\x60\x8c\xf6\x8e\x30\xdb\xac\x62\xff\xd8\x22\x9f\x4a\x53\xf5\x9a\xe1\x68\x33\xb8\x1a\x15\x91\x61\xf1\x93\x69\xf6\x0f\x51\xc4\x3a\x21\x7e\xfc\x5e\xfd\x6a\xb7\xa9\x1f\xe2\x49\xc7\xb8\xa0\xc1\x4e\x9f\xae\xa5\x33\xde\x13\x38\x49\xa9\x24\x47\x67\x6f\x6c\xc1\x8b\xef\x4f\xec\x7f\x37\x31\x97\x59\xce\x80\xea\x3e\xac\x18\xfa\x2d\x9f\xa0\x23\x09\xe1\xce\x93\xac\x6c\xf4\xcd\x2c\xb2\xc9\x5f\x1e\x2a\xff\x7b\x2a\x88\x56\x40\x5a\x7b\x8e\xba\xbe\xb4\x90\x6d\x9b\x97\x34\xda\x9f\xb5\xe5\xd3\xf3\x22\xbb\x5b\x55\x9f\xa6\x1e\xc8\xf5\x15\xdb\x90\x65\xab\x4b\x91\xa7\xa3\x1d\x5c\x62\x50\x61\xc2\xfd\x2b\xcf\xe1\x7f\x94\xbb\xde\x47\x76\x30\x2b\x8a\xef\x3d\x5b\x52\xdb\x3b\xc7\x3a\xe4\xa3\x0c\xc4\x41\x7a\xcb"}, {{0x71,0x19,0x36,0x40,0xa0,0xa2,0xb2,0x2f,0xb2,0x2d,0x00,0xa8,0x0b,0x33,0xa5,0x51,0x4f,0x3d,0x10,0x00,0x03,0x4f,0xcc,0xd8,0x85,0xd8,0xea,0x86,0x38,0xf0,0xb0,0xf8,},{0xb1,0xd3,0x6f,0x72,0x3b,0x70,0x86,0xd9,0x23,0x11,0x9f,0x46,0x75,0x9b,0x39,0xfa,0x1e,0x40,0x38,0xc6,0x41,0x8c,0x37,0x9b,0xa9,0x8b,0x58,0x40,0xc7,0xea,0x50,0x68,},{0xa9,0x70,0x2a,0x33,0x95,0xac,0xd2,0x0d,0x75,0x43,0x73,0x09,0x5d,0xc6,0x14,0x45,0x58,0x4d,0x8e,0x57,0x10,0x80,0xe1,0x79,0xad,0xcb,0xa3,0x10,0x6b,0xb0,0x6a,0x7c,0xe4,0xd4,0x60,0xf1,0x26,0x1a,0xef,0x86,0x43,0xab,0x16,0x34,0xf4,0x7c,0x94,0x14,0xa3,0x2e,0x18,0x3a,0x32,0x76,0x91,0xe6,0x58,0x43,0xdd,0x6c,0x05,0x50,0x72,0x07,},"\xe0\x28\x79\x48\xbb\x85\xa3\x98\xe6\xaf\xfa\x2d\x25\xfc\xff\x8b\xdb\x93\x26\xf5\xd1\x4f\xde\xb6\x05\x49\xf5\xfb\xf0\xc1\x81\x6f\x11\xcb\xdd\x4e\x90\xfe\xa0\x39\xdc\xa6\x0f\xaa\xd1\x69\x60\x03\xf9\x15\x15\xc9\xb2\x72\x88\x2c\x95\xc9\xa4\xab\x6e\x27\x77\xbd\x92\x7e\x7d\x84\x42\xae\xa6\xce\xa6\x19\xc9\xb1\x52\x55\xfe\xd6\x12\xb5\xcc\x31\x58\xfc\x70\x5b\xb7\xa5\x06\xf4\xaf\xec\xf4\xe3\x4e\xd5\x17\xb2\xc1\x2b\x83\x62\x61\x0e\x5e\xa2\x70\x48\x5c\xcc\xb3\xc9\xaa\x97\xec\xd6\xcb\x19\x63\x09\x00\xf0\x7d\x94\xcb\x29\x3c\xb6\xe0\x89\xa9\xa7\x7c\x01\x94\x07\x3a\x7f\x71\x77\xb0\x23\x0d\x25\x76\x3a\x2e\xf9\x8d\x47\x70\x4c\xb2\xc3\xaf\x4c\x3c\x1b\x49\x56\x31\xb4\xa5\xb2\x1b\x2e\x56\xbf\xf2\xed\xe0\x3e\xa4\xfe\x7c\xf8\x29\x17\x34\x7e\x3a\x9d\x4d\xbe\xef\x37\xd1\xcf\x17\x61\x5a\xda\xa0\xfd\x17\x05\x79\x69\x91\x7d\x47\x8d\x03\xcc\xd8\xf8\xb8\x8e\x5e\x5a\xca\xe6\x73\x2a\x81\x61\xdf\xb5\xf7\xd0\x21\x23\xc8\xd5\xa5\x65\xcf\x4d\xd9\x8d\xfc\x9a\xaf\x5a\x33\x50\x58\xa9\x41\xca\x43\x07\x3f\x26\x59\x61\x5a\x72\xfe\x78\xc1\x01\xc4\x1a\xed\x07\xf3\xbc\xf9\x80\xb0\xa5\xb3\xfb\xaf\xdb\xbe\xa9\x2f\xd8\x89\xcf\xd5\x3d\x40\x32\x78\xbc\x15\xa5\x9a\xa1\x40\xc2\xd7\x73\xb8\x88\x9b\x96\x3d\xce\xa3\x65\x36\x2e\x42\x6e\xf4\x60\x98\x45\xc9\xbc\xe9\xf8\xae\xb5\x91\xd1\xa4\x69\xb0\x72\xb4\x12\x09\xf5\xa8\xb6\xdc\x23\x95\xad\x90\x60\xeb\x2e\x37\x09\x78\xae\x33\x11\xd1\xcf\x0a\x8f\x20\x51\x42\xd4\x36\xba\xb6\xb9\x59\x43\xa9\x7c\x23\xe6\x1b\xd1\x4b\x2d\x95\x67\x2c\xb9\x32\x5e\x9a\xb1\xfc\x9e\xee\xaa\xcc\xd5\x8b\x9f\x4a\xc1\x55\x0b\xde\xc8\x44\x9b\x03\x60\x39\x49\x6c\x5f\x07\xa5\xed\x64\xd5\xd8\x51\x71\x69\x01\x44\xdb\x5c\x81\xc8\x1c\xbc\x4c\x16\x71\x8d\x52\xc4\xdf\xd1\x95\x8c\xa5\xc9\xc8\xba\x58\x2c\xd9\xd7\x06\xf2\x7a\x74\x74\x4c\x3a\x05\xbf\x1c\xcd\x51\xf1\x09\x20\x10\xd3\x6f\x15\x78\xb5\x78\xae\x0e\x9f\xfa\x47\x07\x90\x55\xef\x94\xfa\xbc\x9f\xf7\x2f\x73\x8b\xef\x68\x46\x1e\xb3\x40\x4c\xce\xe9\x53\xf5\xee\x86\x4c\x97\x4c\xe7\x0e\x90\x37\xe3\x38\x8f\xba\xf2\x88\x9e\x13\x66\xca\xa0\xf6\x51\xe2\x1b\x33\x9e\x3d\x56\xb9\xd9\x5a\xc3\x0b\x35\x92\xa9\x48\x91\x2c\x90\xbf\x54\x47\x3c\xeb\xc4\x67\xb0\x9a\x39\x43\xdc\xac\x48\x68\xac\xb5\xb3\x5e\xa6\x91\xef\xf4\xd8\xcc\x1c\xda\x0c\x6c\x0a\x9c\x16\x9a\x4e\xe1\x00\x41\xf3\x5f\x43\x3f\xb5\x3d\x26\x06\x7b\x29\x10\x56\xb1\xda\x69\xff\x46\xfb\xea\x1c\xa7\x21\x36\x59\xa9\x90\xd5\xd5\xdf\x14\x06\xb0\x93\xda\x2a\x33\xc8\xdf\x95\xab\x3c\xe8\x11\xaf\xb9\xc9\x8c\x5b\xfd\x7c\x4e\x98\x1b\x3e\xa9\x4e\xef\xd2\xe2\xfe\x95\x70\x7d\x89\xf3\x07\xfa\x76\x82\x8b\x5c\x67\x74\x95\x0a\xee\x80\x62\x67\x14\x25\x6e\x19\x7d\xc7\xda\x97\x21\x58\xc7\x68\xbb\xee\x7f\xbd\x16\x9e\xc1\x5b\x4b\xb7\xbe\x72\x97\x6d\xbe\xd3\xe5\x12\x76\x6e\xf2\x2e\xf3\xb8\x12\xbc\xac\x4a\xa3\x11\x5a\xfe\x83\xd3\x12\x84\xaf\x8e\xac\xea\x4e\xe4\x9a\xfd\x42\xd9\xc4\x4f\xff\x2d\x86\x1c\x08\x62\x9b\x55\xda\xe0\x0f\xf6\x74\xfb\x02\x8e\x73\x8b\x05\xdc\xb3\x8a\xea\xa6\x96\x3c\xc3\xfa\xaf\xc7\xb6\x92\x45\xa2\xa1\x22\xa9\x6d\xd2\xf0\x3a\x82\x4d\x72\xb0\xfe\x0d\xd7\x98\xdf\x5c\x4b\xb7\x5a\x87\x32\x4e\x76\x4a\x50\xa5\xff\x52\x54\x7a\xda\x8f\x8f\x88\xe6\xf3\x8a\xee\x49\xd5\x8d\xdb\x01\x26\x48\x85\x4c\xd5\x9d\x0e\xc9\x7b\xc3\xd5\x8d\x0a\xd4\x49\x1f\x08\x59\x07\x67\xce\xb1"}, {{0xbf,0xc9,0x62,0x6c,0x91,0xf3,0x48,0xfd,0xaf,0x46,0x9d,0xef,0x23,0x02,0xe9,0xe3,0x8f,0x90,0x51,0xe7,0x34,0x9e,0x48,0xf8,0x50,0xcf,0x35,0x2a,0x83,0x31,0xa2,0x8b,},{0x4e,0x81,0x93,0x06,0x1c,0x9d,0x65,0xa8,0x2b,0xcb,0x25,0xda,0x08,0x9b,0x4a,0x80,0xba,0x41,0xb3,0xdd,0x2f,0x8e,0xd1,0xdc,0x81,0xe1,0xcf,0xd0,0x3c,0x84,0x91,0x15,},{0x66,0x02,0x42,0xc1,0xdc,0xf3,0x29,0x13,0x69,0xc6,0x5c,0x9d,0x7f,0x89,0x87,0x2e,0xab,0x48,0x22,0x00,0xe3,0x44,0xb2,0x96,0xe3,0x36,0xa0,0xa2,0xe6,0x31,0xfa,0x79,0x60,0x24,0xb6,0xe1,0x11,0x9c,0x27,0xd5,0x22,0x64,0xa4,0x98,0x15,0xdd,0x78,0x19,0x27,0xa7,0xdf,0x46,0x7e,0x88,0xb8,0x01,0xe6,0x84,0xfc,0x60,0x22,0x96,0x25,0x0e,},"\x2f\x11\xf4\x0b\x2a\x19\xf6\x40\xc0\x04\x4c\x7b\x13\x96\x80\xc3\xc3\xb6\x9f\x00\xff\x9f\x6a\x41\x86\xfd\x7d\xed\x56\x9c\x1d\x8c\x57\x20\xf1\x9d\xd3\x5c\x78\x16\xd0\x8a\x94\xc0\x82\x04\xe4\x76\x43\xe2\x64\xd4\x25\xe2\x1c\xef\xb8\x31\x29\xc9\x09\xa3\xd7\x8c\xaf\x72\xc4\x6b\xf1\xa7\x29\x76\x5e\xf4\xb8\xca\x80\x3f\xda\xf8\x05\x2f\xfc\x6c\xc4\xa6\xb5\x79\xa1\x60\xb7\x03\xb1\x53\x55\xc6\xfc\xd3\xb9\xa2\xec\xbc\x26\x7e\x60\xdd\x59\xf6\xa2\xb1\x94\x20\xe5\x57\x27\xa8\x0b\x0b\xb6\x41\x67\xc8\x3b\xa0\xc8\x05\xde\xed\x49\x1d\x93\xe7\x23\xf3\xb4\x32\x63\xd1\x74\x20\xb8\x5b\xe8\x6c\x16\x5c\x55\x27\x79\xdb\x96\x0e\x0a\xa9\xeb\x4d\x9f\x3a\x16\x4a\x5a\x21\xfa\xb3\xf5\x09\xa8\xf0\x19\x9a\x69\x43\xc4\xb2\x23\xcf\x9d\xac\xa7\xe1\x10\xe0\x56\xa8\x1d\x9c\xe0\xe0\xc0\x2a\xc2\x65\xee\xac\x05\xec\xd8\x44\x48\x46\x8a\x4d\x12\x2b\x87\xa3\xe0\x4c\x28\x37\xe4\x3d\x21\x27\x04\xfd\x41\xe7\xf3\xd1\x98\xa2\xe7\x6b\xec\xa0\xe7\x02\x9c\x43\x2a\x06\x54\xec\xd4\x4f\x98\x4c\x5d\xf0\x67\x41\x96\x4d\x83\x72\xc8\x6e\x16\x2a\x8c\x54\x18\x84\x9b\x41\xe5\x71\xfe\xb8\x3e\xb4\x2f\xbb\xcd\xdb\x8a\x08\x21\x43\x90\x9e\xaa\x50\x12\xb9\x79\x93\x1d\xc7\xe3\xcc\xcb\x44\xc7\x91\xe0\x4b\x80\x65\xee\x63\xf0\x56\x1d\xa1\xbb\xf3\x7b\xf6\x50\x34\x77\x87\x9c\xfb\xaf\x6d\x9d\x7d\x9a\x74\x75\x55\x3f\x53\x53\x5f\x84\x7a\x76\xdc\x3b\x2b\x7a\x3d\x1d\x47\x0b\xbe\x17\x12\x4a\x88\xe0\x3f\xe9\x94\xba\x10\xc2\x42\x21\xe3\x9e\x3d\x0f\xf5\x3c\x79\xe2\xfa\xaf\xa1\x90\x12\xd5\xef\x19\x2b\xc6\xd5\x26\x0b\x66\xf9\x97\xb6\x44\xcf\x48\xd9\x9f\x38\x99\xd7\xc4\x85\xe6\x84\xaa\x1e\x6e\x30\x85\x5c\xf7\x5c\x2d\x80\xc7\xa3\xee\x43\x54\xfe\x13\xc6\x76\x09\x1c\x86\x67\x37\x3d\x30\xe6\x0f\xf8\xe0\x9f\xed\xef\x17\x5a\x1a\x87\x39\x5f\xef\xa0\x72\x2b\xf6\xc0\x1c\x65\x55\xcf\xf0\x68\x89\x2a\xfe\x94\x86\xcb\x1f\xcc\x5f\xb6\x64\x1e\x82\xd8\x70\x79\xba\x5d\x7a\x9c\x13\x93\x55\xd6\xc1\x4c\x50\x7d\xbd\x59\x47\x24\xb5\x53\x51\x10\x09\x65\xbe\x9e\x5d\xbf\xa7\x70\x88\x78\xc4\xb2\x9f\x4d\x54\xc2\x17\x74\x6e\x32\x6a\xb2\xa5\x4f\x99\xb8\x81\xd7\xda\x5b\x11\xed\xb0\x8a\x6d\x79\xd8\x85\x69\x1b\x1f\x70\x85\x51\x73\x10\xb3\x09\xcf\x9b\x1b\x71\x4a\xab\xc5\xc1\x7a\x50\x9b\x14\x0b\x89\xb3\xf9\xdc\xee\x50\xca\xb4\x41\xbf\x5a\xd3\xbb\xc2\x99\x90\xf6\x27\x40\x61\x70\xa7\xa1\x0f\x2d\x47\xdf\xc9\x25\x61\x54\xf9\x62\x30\x8e\x76\x9a\x2a\xb1\xb2\xa0\x0e\x27\xe3\x27\xf0\xd1\xfa\x16\x4d\x1e\x38\xea\xd5\xce\xaa\xe2\x38\xba\x52\x6f\x54\xb8\x1b\x45\xde\xa6\xc8\x97\x41\x86\xb1\xb6\x72\x5f\xa4\xc8\x3e\x62\xf3\xe2\x54\xf7\x29\x87\x1b\xda\x4d\xc4\x44\xbc\xe7\x8f\x09\x03\xfa\x31\x8e\xaa\xc8\x22\xa9\x55\x32\xab\x01\x9e\x9c\xfc\x56\x19\xe2\xc2\x06\x7f\x25\x8f\x43\x75\xd2\xe0\x22\x2e\xa5\xbf\x96\xa2\x53\xa2\xa3\xfa\x9e\xea\x02\xc3\xee\xcc\xb0\x28\xc7\x6b\xc6\x0d\x38\x29\x8b\x95\xb9\xaf\xe6\x60\x31\xb1\xa2\xa2\x61\x52\xfd\xaa\x7e\xf4\xf8\x37\xab\xb5\x11\x85\xdf\x8b\x2e\xf8\x5a\xd2\xc9\xbe\x6d\xfb\xa7\x5e\x37\xdc\x7d\x12\xe1\x78\x7f\xc5\x5f\x86\x6f\xd0\x66\xf1\x22\x91\xdf\xf1\x97\x6a\xfc\x10\xda\x91\x31\x01\xe7\x04\x95\xd8\x78\x33\x48\xd6\x11\xb0\x11\xec\x67\x1c\x0d\xa7\x37\xbf\x96\x2c\xdc\xc9\xe4\xa8\x00\xb5\x13\x93\x5a\x56\xd0\x84\xea\x64\xa7\xd4\xe8\xe9\x9e\xe9\x44\x0a\x73\x61\x32\xe4\x2c\x90\x95\x03\xc2\x22\x4a\x14\x1b\x25\xce"}, {{0x39,0x3b,0x76,0x94,0x82,0x37,0x5b,0x82,0x14,0x27,0xa6,0x6d,0x16,0xe4,0xf5,0x51,0x85,0xb7,0xa3,0xb7,0x33,0x8f,0x1a,0x06,0xf6,0x7c,0xdf,0xa7,0xe3,0x5c,0x54,0x1c,},{0x84,0xaf,0xd7,0x06,0x78,0xff,0xa8,0x5a,0x9f,0x65,0x74,0xcb,0xcf,0xe3,0xb1,0x5d,0x04,0xa9,0xfd,0x15,0x01,0x6f,0xf8,0x55,0x0a,0x98,0x7c,0x4b,0x95,0x1c,0x71,0x22,},{0x31,0xf9,0x8c,0x0a,0x08,0xfd,0xa8,0xe7,0x35,0xb5,0x73,0x66,0xaa,0x1b,0x83,0xb9,0x3d,0xae,0x63,0xb5,0x81,0x0c,0x82,0x1d,0x99,0xcb,0x39,0xdf,0x52,0x1f,0xea,0xc0,0x7f,0x3c,0x41,0x0b,0x27,0xba,0x33,0x07,0x75,0x7d,0x60,0x49,0xf2,0x24,0x54,0xfb,0x6d,0xe9,0xe2,0xc3,0xc2,0x43,0x8d,0x68,0x31,0x90,0x97,0xd1,0x12,0xcf,0xdb,0x07,},"\x8a\xe8\x05\x3e\x03\xbe\xbe\xae\x54\x40\x43\xb8\x41\x4b\x38\x53\x64\xad\xd1\x67\x37\x37\xcf\x8a\xb2\x01\x93\xd4\xaa\xbc\x8a\x78\xe1\xd6\x9b\x9c\x7e\x52\x72\x9e\x69\x30\x78\x06\xe9\x27\xce\x38\x07\xb0\x7c\x68\xc8\x33\xc4\xfc\xf1\x6d\xb1\x5e\x7d\xce\x60\x4d\x17\x98\x91\x5f\xd4\x21\x16\x89\xb4\x86\x46\x42\x50\x2d\x38\xe9\x1b\x19\x97\xb7\x18\x23\x31\x8b\x69\xab\xe5\xbe\xd6\xf5\xe3\x01\x5b\xfb\x22\xdf\x30\xdb\x37\x1f\x22\x60\xc5\xc2\x2e\xba\x60\xdf\x39\xb3\xed\xd3\xc4\xd7\xa1\xe1\x11\xcd\x9b\x8a\xa4\x6f\x67\xbd\x0c\xf3\xa7\x17\xaf\x06\xec\x0c\xe5\x67\x02\x8e\x06\xe4\x79\x79\x34\xad\x69\xb1\xf5\xbe\x44\x0f\xf3\x7a\x8a\x03\x4b\x15\x33\xfa\x94\x64\x24\xac\x59\x54\x00\xad\x27\xd3\xbe\x76\xdc\x89\xba\x9d\x6c\x49\x93\x9a\x09\xf2\xe4\x01\xc8\xf2\x0f\x7f\x7b\x4b\x9e\x63\xb9\xd5\x52\x01\x53\x4a\xb4\xcc\x7b\xe8\x85\xf0\x43\x2a\x2c\x66\x73\xd2\xe7\x65\x19\x4d\xff\xd9\xb6\x09\x6d\xd2\xb2\x84\x39\x18\x75\x09\x59\xa8\xdd\xe4\xa3\xab\x40\x7e\xb2\xf7\xe1\xa4\x9c\x25\x97\xe3\x08\x05\xf8\x48\x0d\xd0\xcc\x82\x72\xa3\x20\xc0\x0a\xa2\xb2\x10\xf5\x76\xe4\x25\x77\xd3\xaa\x41\x97\x03\x69\x7c\xa4\x06\xd4\x3a\x1a\x4f\x99\xb0\x73\x36\x64\xf6\xd6\xb2\x40\x3c\xba\x1b\xdc\xc5\x1f\x54\x1c\xf2\x42\x36\x07\x05\x70\x54\x07\x55\xc7\xa8\x63\x1f\xcc\x2f\x18\x93\x8f\xa1\x1b\xc2\x91\x15\x5b\x39\xd7\xa7\x62\xa1\xff\x4d\xca\x97\xb4\x48\xf7\x0e\x2d\x3d\xe4\x47\xcb\x08\xf9\x18\xea\x20\xcb\x43\x3f\xa1\x15\xe3\x08\x80\xc9\x6c\x8c\xf5\xf0\xeb\xbc\xf4\x82\x30\x9d\xb6\xdc\x1f\xb6\x4e\x17\xc0\x4d\x7c\xdf\x7a\x90\xf4\x01\x4d\x15\xae\x76\x96\xb4\x44\x23\xb0\xba\x08\x4e\xed\x4d\x3f\xb2\x8c\x1e\xfb\x39\x82\x8a\xca\x2f\x40\xca\x6d\xf3\x42\xc2\x0e\x95\xf8\x00\x6b\x27\x67\xa8\x3f\x50\xc3\x1f\xcc\x15\x81\xa0\x97\x53\xe7\x82\x91\xf0\xd9\x93\x1d\x99\x2a\xd3\x60\x44\x73\xce\xb8\x85\xec\xbe\x78\x57\xcc\x52\xad\x55\x85\x33\x4d\x14\x85\xd0\x22\xe1\x06\xb7\x1c\x29\xbd\xfc\xf2\x3e\xe8\xa4\x75\xdf\x2c\x09\x05\x32\x35\x6a\x6f\xfc\x02\x23\x23\x17\x98\x8a\x2c\xbc\xfb\xc2\xa3\x6b\x4b\x48\x3c\xb4\x45\x10\xe8\x55\x99\xb6\x12\x59\x6b\x62\x65\x72\xb0\x99\x6d\x8a\x61\xc0\xee\x3e\xff\xf1\xf7\xc7\x1c\x05\xfb\x5a\x8d\x8c\x5d\x09\xd9\x24\xeb\xaa\xc8\x80\x04\x51\xc9\xdb\x24\x56\x71\x0a\x27\x9d\xfe\x2d\x22\xf6\xae\xa9\xde\x31\x80\x1d\xc7\x42\x53\x43\x62\xb0\xe8\x10\xe9\x9e\x84\x1d\xbb\x7f\x0c\xf9\xaf\x1a\xef\x54\x2a\x52\xc7\x76\xcc\x51\xf2\x87\x36\x8f\xbe\x6a\xd6\x51\xfa\xd5\x78\x7e\xf7\x7c\x73\x53\x5f\x3d\xfb\x36\x18\xcc\x8f\x0d\xbb\x54\x9d\xdc\xa9\xb9\xbf\x91\x13\x5a\x34\x56\x00\x1a\x46\x21\x5a\xde\x38\x8e\x7c\xeb\x9f\xcd\xfd\x0d\x2d\x0a\x03\x56\xaf\xbe\x2c\xec\x1c\x2e\x78\xb4\xd9\x98\xd4\x55\x4f\x46\x21\xf1\x15\x1d\xd3\xff\xd3\xba\x4c\x0b\xc8\x52\xf3\x11\x75\x8c\x5d\xca\x42\x5d\x18\xba\x15\xa8\xd6\x7c\xa4\x01\xd0\xe6\xcf\x28\x0c\xb8\x83\x84\xa2\xda\xd4\x9f\xae\x39\xba\x2a\x77\xb4\x67\xb3\x23\x8a\xa2\x8c\xfd\x13\x7e\x5c\x5c\x0f\xf9\x00\x0f\x8b\x06\xa2\x19\x2e\x16\x29\x20\x69\x22\x65\xdb\x24\xab\x6a\xed\xe5\x35\xe3\x1c\x20\x93\xbe\x57\xeb\xf8\x80\x5d\xf1\x78\x89\x14\xf3\xa8\x84\xf8\x84\x17\x90\x15\x80\x8d\xb4\xd3\x02\x0f\x3e\x78\xbc\x34\x28\x5d\x23\x37\x62\xe8\x99\xeb\xff\x28\x42\x82\x15\xe2\x44\x40\x4d\xe2\x91\x72\x8f\xbf\x41\x24\xce\x5b\x24\x35\x26\x0a\x8e\x34\x11\x80\x07\x5a\x56\x51\xe6"}, {{0x26,0xcb,0xc2,0x51,0x0e,0xe6,0xea,0x39,0x0a,0x2c,0xb9,0x48,0xa0,0x15,0xd1,0x31,0xab,0xf4,0xc0,0x95,0x49,0x15,0x62,0x0b,0x78,0x16,0xae,0xcf,0x4e,0x11,0xda,0x6d,},{0x14,0x5e,0x8d,0xd2,0x2b,0x44,0x00,0x28,0x9d,0xaf,0xb6,0x26,0xd9,0x5a,0x94,0xc2,0xf3,0xb6,0x9c,0x65,0x19,0x77,0x17,0xcb,0xdc,0xd8,0x50,0x98,0xc5,0x49,0x21,0x07,},{0x67,0x10,0xd0,0xdd,0x00,0x54,0x5b,0x44,0x4c,0xf7,0x14,0xb7,0x91,0x44,0xfe,0x79,0xf3,0x8c,0xb1,0xc0,0xf5,0xb7,0x42,0x48,0xd4,0xf0,0x1f,0xe3,0x60,0x11,0x7a,0x26,0xff,0xed,0x4a,0x3b,0xf2,0x13,0x23,0xb2,0x8a,0x39,0x3a,0xe9,0xde,0xe0,0x7d,0x69,0xe5,0x83,0xe3,0x16,0xc6,0xa5,0x73,0xd3,0x7c,0x64,0x4a,0x8d,0x62,0xc4,0x05,0x06,},"\x9c\xeb\xe2\x4b\x4f\x8a\xde\x86\x43\x0e\x27\x9a\x3c\x43\x3e\x4a\xe1\x7e\x00\x88\x52\xa2\x4f\x08\x69\x0c\xbc\x3d\x75\xe3\xb7\xf2\x00\xda\x89\x7c\x25\xf7\x48\x3b\x37\x63\x7d\x4b\xc1\x10\x08\xd9\x22\x4c\xd5\x81\xfb\xc0\x38\xad\xad\xa0\x2d\x27\x1e\xd2\xa5\xd2\x85\xd8\x43\xa0\xf8\xb7\x9e\x37\x94\x5d\xc3\x5b\xc2\x64\xbe\xcd\x80\x43\x07\xe1\xd4\x42\x18\xa6\x43\xe4\xb5\x9a\x93\x11\xde\x98\x5d\x24\xb4\xc2\x6f\xb1\x46\x03\xbe\x5d\xba\x18\x39\xee\x0c\x8d\x2e\xde\x6c\xb5\x0a\xf6\x7c\x80\x45\x19\x03\x7b\x1b\x16\x63\x31\x8c\xfc\x6e\x75\xd0\xf0\x51\xdb\xb5\xd3\xea\xf3\xaa\xd1\xf7\x8e\xf0\xcf\xf4\x8d\x5c\x55\xb2\xfd\x25\xdb\x15\x39\xd0\xf0\x2d\xae\x9f\x25\x14\x8a\x8d\x33\x8b\x97\x87\x9b\xbd\x39\xdf\x96\x1a\xa2\xc3\x96\x31\x5a\x2a\x86\xcc\x78\x35\x81\xe6\x7e\xa8\x44\xac\xfe\x86\x45\x42\x8a\x27\xb8\xd3\x2e\xa3\x06\x4e\x3b\xf6\x2d\xcf\x58\x01\x0e\xc4\x34\x88\x62\xfa\xc2\x5e\x3d\x9f\xcd\x4e\x5d\x65\xbe\x59\x90\x5d\x81\x6d\xfb\x96\x49\x92\xba\x7a\xce\xef\x8c\x20\x75\xa3\x12\xe5\xff\xc4\xf9\x53\x0e\xa2\x0f\x77\xf9\x3e\x81\xcf\x8a\x01\x9d\xc3\x94\x56\x34\x36\x4b\xab\xf7\x97\x72\x04\x5a\x0d\xba\xa7\x7c\x47\xa2\x2b\x77\x22\x3b\x70\x4d\xeb\xd2\xd0\x03\xf6\xa5\xc7\xbf\x6b\x19\xcd\x2c\x49\xb6\x14\xfd\x4d\x47\xfd\x25\x1f\xe6\x22\xcb\x98\x17\x85\xc1\x46\xbd\xb7\xc1\xd2\xea\x02\xb1\x16\x92\x3b\xf9\x8a\x1a\xfb\xb7\x85\x8a\xdf\x2d\xf9\x38\xa7\x90\xec\x1f\x90\x74\xad\xb8\xd1\xaf\xb5\x63\x3f\xa9\x61\xa8\x47\x64\x01\x0d\x3b\xde\xd1\xc0\x33\xd2\x5a\xbd\xb4\xb0\x0f\xb0\x5e\xd7\x64\x0f\xae\x61\x87\x9d\xf8\x8f\x0b\x09\xe3\xab\xd0\x57\xb9\xa5\x21\x08\xa9\xbc\x98\x5f\xb7\x3a\x5f\x29\xd8\x4d\x1c\xa6\x92\x1b\x62\xf1\xb7\x03\xc7\xee\xb4\x81\x5d\x9d\xd6\xd0\x66\x73\x8d\xb1\x18\xba\xf6\x1b\x04\x22\xf3\x88\xf1\xbf\xc9\xe3\xa9\xbe\xd8\x3a\x1a\x72\x7d\xcc\x26\x6a\x99\x88\x36\x48\x46\x80\x7f\x4d\x55\x18\xbc\x2e\xdd\x0e\xcb\x34\x13\xc2\x6f\xd0\xc7\x9b\x75\xd8\xcb\x5b\xcd\x85\xc0\x6f\xcc\xea\x4d\x03\xfb\x89\x88\xdf\xf3\xed\x0c\xc9\xdb\xae\x78\xd6\xae\x8d\x5f\xc4\x02\x46\x17\xa2\x3f\x52\xbd\x61\x53\x85\xd4\xee\xe0\x8f\x91\x34\xeb\x3b\x25\x0c\x8f\x82\x2b\x47\xd9\x1e\x8c\x4d\x4c\x29\x29\x80\x16\xe6\xfc\x81\xf1\xf1\x09\x92\x53\xd7\x94\x5e\x07\x98\x95\x5d\xa0\xdd\xe1\x4e\xbb\x93\x4e\xcf\xae\xea\xba\xe8\x78\x83\xe1\xcc\x39\x80\x67\x40\x0f\xe4\x62\xa2\xc4\xe9\xf2\x32\xdb\x5c\xdd\x61\xeb\xa9\x49\x18\x8c\xf0\x1b\x23\x8b\xe7\xad\xa9\x38\xf0\x02\xdc\x3a\xe3\x1f\xdf\xd4\x25\xc8\xd4\x6e\xa0\x32\x32\x3a\xaf\x20\xdd\x3d\xe2\x50\x7d\x36\xbb\x45\xfb\xb9\x1c\x40\x96\x9a\x9e\x5d\xa2\x0f\x7f\x93\x6b\x0f\x4b\x13\x7b\x62\xfe\x2b\xa3\xa6\x67\xbc\x03\x62\xd9\x3f\xc5\x0d\x3f\x22\x95\xe1\x67\xfc\xba\xb0\xfb\x3a\x39\xb7\xcb\x02\x4b\x57\x8f\x94\x90\xf7\x34\xb2\x8c\x9c\xcf\x71\x92\xf1\x83\x94\x7d\x5a\x51\x3e\xfa\x49\x16\xe4\xd8\x2b\x2a\xb4\xba\x7e\xc2\xff\xba\x21\x3c\xe8\x2a\xd6\xed\x3b\x10\xe4\x85\x53\xe7\x33\xc9\x40\xaa\x9b\x9c\xe7\x13\x37\xc6\xc2\x80\x5d\xfb\x8d\xd6\x61\x8b\x6d\x40\x90\xa3\xd6\xcc\x96\x3e\xce\xa2\x6d\x1c\xdc\x2b\xf5\xac\x99\x9c\x11\x27\x61\x68\xa9\x31\xd8\x16\x46\x9d\x79\x08\x3c\x24\x08\x1a\x50\xdc\xbd\x22\x27\x52\x38\x52\x67\xce\x1b\xfc\x1d\xb7\x6b\x15\x54\xad\x57\xe3\x47\x52\xb7\xf8\x98\x31\x47\xc1\x16\xd4\xa3\xfa\xe6\xf6\xd5\x7e\x65\x4f\xed\xd7\x37\x8d\x2b\x49\x89\xea"}, {{0xb1,0xf5,0x9e,0x3c,0x23,0x80,0xd7,0xaa,0x41,0x4d,0x0b,0xf9,0x08,0x93,0xa3,0x8d,0xdd,0xfc,0x29,0x38,0x59,0x30,0x3d,0x16,0xf0,0x0d,0x9e,0xae,0x6c,0xb3,0x45,0x0e,},{0x84,0xe3,0xf5,0xf7,0x2f,0x19,0x09,0x5b,0x0f,0x53,0x38,0x48,0xa5,0xa9,0x1d,0x0f,0x07,0x43,0xb8,0xe3,0xa3,0xe2,0xf5,0x2f,0xcb,0xd7,0xeb,0xe7,0xc5,0xb5,0xa9,0x98,},{0x60,0xaf,0xc1,0xe9,0x91,0xfd,0xd2,0x7c,0xc4,0x72,0xb9,0xac,0xc9,0xd4,0x05,0xb4,0xd2,0xb9,0x13,0x08,0x92,0x90,0xb3,0x11,0xc4,0xfa,0x89,0x1a,0xe2,0xee,0xa0,0x56,0x71,0xfd,0xe7,0xa0,0xef,0x86,0x55,0x7b,0xd8,0x67,0xd1,0xc0,0xb7,0x47,0xca,0xf3,0x52,0x29,0xd6,0xef,0x52,0x8f,0xe3,0xe0,0xd0,0xbc,0xf6,0x30,0x38,0x0e,0xa9,0x0e,},"\xc6\x17\x4c\x9a\xd3\x68\x5d\xd6\x48\x63\x60\x17\x83\x7b\x8d\x99\x22\x00\x31\x9e\x9a\x5a\x0d\x26\xd9\x4d\x2d\xa7\x5e\x2c\x3a\xff\x46\xf4\x2d\x7b\x3a\xba\x47\x2b\x7f\x86\x0b\x0f\xe1\xf6\x95\x52\x97\x31\xfd\xc8\xcf\x0d\xa7\x05\xd1\xd0\x9a\xca\xd0\x4f\x01\x08\x37\xec\xef\x41\x9d\x57\xe9\xea\x6c\xac\xf1\x68\xc5\x21\x56\x96\xf4\x71\xf3\xca\xa8\x97\x60\x7c\x62\x9d\x44\x3d\xe0\x99\xd3\x17\x53\xc2\x46\x77\xd8\xd7\x5f\x4b\xf1\x72\x46\x81\x8b\x58\xad\xc0\x42\x4b\x76\x2a\x19\x1e\xf3\x9a\x70\x76\xa5\xad\x12\x61\x4c\xf5\x4c\x47\xeb\x09\x08\xbb\x86\x65\x18\xc5\xfa\xc1\xca\x2d\x2e\x5b\x65\x75\x20\xa2\xb3\x69\x5c\x6f\xb3\x60\xf1\x6f\x4a\xb3\x57\x99\x8e\x4c\x0e\x97\x23\x1d\x6f\x89\xc9\x68\xdc\x29\xec\xc1\xaa\x91\xfa\x0d\x75\x43\xb5\xd2\x24\x7b\x0d\x85\xe4\x87\x43\xab\x7c\xc8\x15\xcf\xda\xa8\x2b\xf6\x8c\xa6\xd3\xe2\x25\x0b\xfd\xa2\x70\x24\xd6\x1b\x47\x4c\x6b\x81\x54\xac\x8d\x1b\x5a\x36\x20\x97\x82\x51\x5c\x16\x46\x68\x0d\x37\x06\x9b\x8b\x44\x12\xf9\x51\xb0\x25\xa4\xd5\x43\x62\x5d\xd0\x22\x90\xbf\x03\xc6\x73\x46\x13\xf9\x9b\x7a\x4c\x3a\xf5\xc5\xf9\xe9\xac\x34\x74\x46\x5e\x64\x84\x23\x01\x8d\x40\xa6\xad\xbe\x88\xa3\x30\x1d\x3d\x25\x9b\x04\xee\x44\xcc\x05\x62\xee\x0d\xed\x4f\x5e\x26\xad\x97\x7a\xb5\x63\x1f\x85\x76\x8d\xbc\xe5\x3f\x61\x6c\x02\x9a\x8b\x8f\x93\x3e\x2a\x92\x64\xb1\xc8\x1f\x51\x7e\x9f\xf5\x8a\xb9\xf4\x5a\x23\xee\xed\x42\x04\x35\x8f\x8f\xff\x0c\x8f\x97\x5e\xf1\xdf\xa5\x77\x6a\x5f\x77\x93\xba\xe2\xf2\x81\xd7\xb0\xcb\xef\x24\x0b\x3f\xc6\xbe\x05\x88\x21\xea\x2b\x80\x0f\xff\xe5\x5a\x7d\xe0\xaf\xc9\x3e\xde\x9c\x60\xc8\xde\x00\x5a\xbb\x9a\x2c\x88\xf4\xe6\x1e\x8d\xeb\x31\x70\xf1\x07\x8a\x36\xe2\xd8\xf2\xa5\x82\x39\xbd\xee\x49\x6e\x90\xd1\x37\xd2\x11\x0f\x0a\xd8\x57\xa8\x8b\x35\x27\x66\x4f\x78\x19\x39\xe0\xb2\xf7\x66\x34\xff\x9f\x6c\x57\xe1\xc4\x3f\x58\x24\x31\x71\xcd\x86\x2e\xf4\x28\x45\x76\x17\x2a\xf1\xf6\xc3\xbd\x37\xd5\xd7\x4b\x28\xa7\xa9\x86\x98\xbd\x74\xe5\x7b\xbc\x14\x2e\x67\xf7\x03\xf9\xd6\x2c\xde\x76\x1a\x02\x26\x8f\xec\xb3\x43\xfc\x01\x41\x88\x36\x41\x4f\x12\x22\xca\x24\xbc\xdd\x69\xd0\x05\x90\x1d\xa2\xa0\xf9\x44\x65\xe4\xd4\xba\x68\x89\x88\x16\xbf\x7e\x3e\x4b\xb7\x9c\x8c\xa5\x99\x7f\xba\x9a\x8d\xf8\x4f\xaa\x2d\x24\xb0\x44\xc4\xea\x61\x02\x9a\x46\xcb\xa7\x03\x42\x1e\x36\x1d\xfa\x52\xca\xaf\xf3\xbb\xaa\xb7\xfd\x75\x3f\x28\x56\xd7\xc0\x83\xae\xb9\x76\x8d\xa1\x1d\x82\x1e\x2d\x30\x9f\x7a\x73\x5c\x39\x96\x92\xda\xc2\xf2\x62\x84\x6b\x89\x1b\xf6\x46\x1a\xf2\x3c\x8c\x7c\xe1\xd4\xd9\x03\x2c\x3c\x14\x0f\x73\x9e\x55\x84\xc3\x6f\x05\xea\xf4\x34\x9f\xf4\x54\x5f\x28\x3a\x4e\x0f\xea\x49\x43\x0a\x1b\x18\x0d\x08\x71\xe3\x74\x2b\x88\xcc\xb5\x91\x12\x4f\xc4\x27\xed\x67\x3b\x5f\x27\xb0\xb0\xa6\xf5\x4a\xf2\x2b\xa4\xa6\xd1\xc6\xc1\xdb\x2a\x1f\xca\xa6\xd8\xa0\x30\x8b\x77\xef\x2d\x0c\x61\xbb\xf5\x1b\x95\xf1\xe8\xb6\xab\xc5\x04\x1d\x97\xb6\xb6\xf1\xb5\x69\xb3\xf6\x3c\xec\x05\xcb\x56\x7a\xae\xa1\x06\x72\x70\x96\xee\x8a\x9e\xa8\x7b\x88\x04\x90\x1f\x7e\x88\xa7\x40\x9c\x66\xf1\x52\xde\x9d\xbf\xcb\xe3\x19\x52\xe6\xfd\x83\xb2\x87\x7a\x77\x5f\xae\x42\x5b\x38\x51\xe0\xef\xf8\x79\x2f\xfb\x38\x48\xf8\x4a\x65\xcc\x31\x72\x53\xb2\x72\x47\x5e\x71\x7e\x49\xe9\xc6\xff\x6b\x78\x59\xd1\x1b\xba\x7c\x44\x28\xc8\x2d\x17\x89\xe0\xdc\xa5\xbc\xad\xca\x2f\xdb\x25\x9e\x98"}, {{0xdb,0x46,0x1b,0x9f,0x70,0x7e,0xb2,0xcd,0x77,0x48,0xc4,0x4c,0x99,0x56,0x2f,0x13,0x02,0x39,0x74,0x89,0x35,0x3d,0xf5,0xf3,0x03,0x79,0x7f,0xe0,0xd0,0xb5,0x8d,0xe1,},{0x63,0x51,0x16,0xda,0x8b,0xa5,0xa3,0x6a,0x37,0x77,0x28,0xe2,0x86,0x18,0xe7,0x5c,0x55,0x92,0xae,0xcc,0x18,0xe3,0x40,0x11,0xc4,0xc4,0x25,0x91,0x97,0x0b,0x73,0x66,},{0xdd,0x04,0x9c,0xa7,0x9b,0xeb,0x9e,0xac,0x32,0x5a,0xcf,0x44,0x67,0x2f,0xf5,0x78,0xa9,0x68,0x50,0x2f,0xe1,0xbc,0xf5,0xea,0x19,0xd5,0x2c,0x0f,0x67,0x78,0xc7,0xf1,0xc7,0xbb,0xf7,0x42,0x74,0x79,0x07,0x78,0x6e,0x60,0x81,0x23,0x91,0x1a,0x92,0x07,0x78,0xd2,0xf9,0x59,0x6f,0xe2,0x9b,0xe7,0xcc,0x28,0xfd,0x00,0x9d,0x7c,0x44,0x0e,},"\x1a\x2a\xc8\xc1\xb9\xea\x09\x9b\x83\x1a\x68\x12\xd2\xb4\x26\x13\x09\x05\x8e\xa5\x88\x3d\x70\xb1\xc6\x07\xb9\xcd\x3f\xdf\xdb\x86\xe7\x99\x02\xb0\xfe\x89\xe8\x0e\xa7\xc4\x78\x20\x76\x74\xb2\xd8\x03\xb0\xb9\xca\x14\x7f\xfe\x62\xe5\x94\xf5\x06\xc7\x96\xd6\x89\x97\xce\x48\x2b\x51\xa4\x6e\x49\xb4\xa5\xd8\x58\xcd\xea\xe2\xc6\xec\x9b\x69\x41\x98\xe6\x82\x2f\x0e\x33\xed\x57\xbe\xdb\x03\x35\xc7\x89\x0a\x72\xa7\xee\x3c\x23\x82\x3b\xe7\x9b\x7f\x94\x71\xe0\x33\xc7\x9a\xee\xd5\x2e\x57\x60\xfb\x0c\xcb\xb9\xd3\x8f\xde\xd8\xb4\x73\x83\xc1\x91\x03\xce\x44\x70\x58\x34\xc5\x9d\xdd\x86\xf7\x03\x39\x48\x61\x2d\x66\x62\xf5\x16\xce\x4e\x39\x9f\xf2\x03\x63\xcc\x72\x81\xa6\x9b\x2d\x5c\x30\x7b\x10\xb7\x04\x15\x01\x84\xec\xe3\x2f\x39\x0d\x77\x2c\xcf\xa7\x84\x83\xbb\x77\xa9\xfb\xa8\x44\x25\x36\x69\x84\x17\x1c\xc2\xbb\x60\xb0\xec\x6c\x62\x8d\x4e\x90\x30\x74\x6d\xac\x1c\xab\xca\x60\xf0\x56\x83\x81\x33\x46\xa1\xa5\xbc\x14\x72\x75\x49\x79\x5c\x1c\x92\x68\x69\xe1\xaa\x25\x09\x3d\x59\x1b\x43\xe0\x86\xe4\x3a\x04\xd1\x70\xd9\x42\xc4\x16\x5e\x1c\x5c\xe7\x6c\x3e\x64\x97\x3d\x91\x36\xf9\x32\x5b\xee\x82\x16\x82\xf1\x04\x3e\x95\x1b\x02\x76\x7f\x3f\xb4\x58\xd0\x24\x49\xad\xd3\xe8\xa6\x6e\x51\x6f\xdb\x1e\xd5\x80\xe0\x56\xe0\xf7\x8e\xe3\x3f\xd9\xee\x32\x80\x91\x2f\xae\x07\xfe\x1e\xa0\x25\x27\xcd\x00\x1d\x6f\x6f\x2f\x89\xee\x64\x9f\x51\x74\x14\xd5\x6f\x57\x35\x9a\x84\x68\x91\xf0\x22\x2c\x32\x1d\x7e\x70\x81\x79\x95\xa8\xcd\x8e\x94\x76\x0b\x6e\x74\x83\x2b\xab\x68\xd5\x5b\xc4\x64\x18\x84\x22\x1f\xd2\x9f\x12\x2d\x87\xa9\xa8\x68\xb6\xa6\x06\x0c\x87\xb2\x38\x2c\xf7\xbb\xdd\xa4\xcd\x6a\xaa\x1b\xbc\x8e\x6d\x63\x4a\xb5\x80\xc8\x65\xf5\xad\xd6\xa1\xd5\x4e\x61\xa6\x07\xdc\x2c\x37\xb0\x8a\x8c\xba\x6e\x61\x0c\x12\xcf\xeb\xef\x9c\x98\x9e\xef\x3b\x78\x2a\xcb\xd1\xbc\xec\x5f\x04\xe8\x35\xca\x10\x12\x98\xb5\xe9\xbd\xd8\x81\x3a\x71\xb0\xd4\x69\xfc\xf1\x27\x27\xd3\xde\x1c\x3f\x97\xdd\xbc\x6a\xb2\x65\x84\x40\xdd\x64\x21\x01\x9b\xc6\x8f\x35\x6d\x6f\x25\x53\x68\x65\x85\x1d\x92\xd9\x0f\xe9\x96\x9c\x3b\x7c\x35\xa2\xe8\x8c\xe1\x53\x47\x6e\xc3\x97\x3a\xf9\x35\x9f\x16\x77\xa4\xca\xf1\xcc\x48\x1c\x71\xbd\x90\x22\x8f\xf5\xfc\x6d\xd8\x3b\x8a\x69\x9f\xfe\x51\x49\x29\xf5\xc9\x5c\xb4\xf0\x4b\x00\xdd\x18\xa2\x87\x2c\x41\x86\x8d\x3b\xeb\x76\x49\x8d\xdc\x92\x34\xb6\x3f\x59\x9d\x70\x71\x80\x1d\xb2\xc2\x87\x8f\x7b\xef\x4f\xfd\xdd\x81\x32\x26\xf0\x6d\xb8\x4e\xb3\x02\x17\xa7\x18\x30\x82\xe3\xc1\x24\x2b\xb6\xd0\x1c\xd3\xa6\xce\x27\xbf\xf1\x6b\xfb\xfd\xd7\x5b\x7e\x51\x04\x31\x2c\x49\xc4\x3a\xad\xfc\xd5\xb4\xed\xba\x0f\xf5\x0d\x28\x90\xca\x3c\xd9\xcc\xa3\x3e\x4f\xc6\x94\xc0\x57\xc4\x7e\xbe\x1c\x20\xa4\xad\x11\x5f\x98\x5d\xc7\x44\x2c\x6f\x6d\xa7\xbe\x53\x0b\x69\x02\x28\x9c\xab\x9c\xa1\x39\xc6\xb2\x4c\xb8\x0f\xfd\xd7\x82\x32\x4e\x60\x2c\x45\x91\x0d\xb6\x3d\x8b\x5c\x44\xca\x29\xd2\x7f\x56\xdb\xf0\x01\x86\xba\x58\x3c\x34\xe1\x60\x31\xdf\x35\x75\x46\xb3\xab\x9a\x3d\xd6\x5e\x91\xd7\x12\x8c\x93\x91\x95\xe6\x46\xa0\xf0\xb8\x9b\xf5\xdf\x04\xba\x23\x3d\x6a\x12\xa2\x71\xf7\xe0\x4a\xa4\x5c\xda\x99\xb4\xa5\x5a\x21\xcb\xbb\x73\x85\x15\xe3\x2c\x56\xaa\xc2\x49\x62\x32\xb1\x00\x8a\x67\x61\xc8\x04\x5a\x1f\xe0\xf9\xa3\x64\x40\x47\xb5\x96\x6a\x58\xa6\x00\x46\x6c\x1b\x1d\x11\xdd\xad\x5a\xa5\x73\xc4\x3e\xbd\xa8\x87\xe1\x6a\x05"}, {{0xf5,0xc0,0xa7,0xf8,0xf6,0x58,0x4c,0x5d,0x2f,0x2e,0x1d,0x08,0x10,0xe8,0xe8,0x61,0x03,0xe4,0xe2,0xd4,0x5c,0xf9,0xa7,0x21,0xd8,0xc4,0x7f,0x67,0x49,0x33,0x96,0xa4,},{0x3c,0x6d,0x6c,0xce,0x49,0x63,0x31,0x41,0x07,0x86,0x96,0x13,0x1a,0x8d,0x84,0xed,0x82,0x3f,0x30,0x66,0x4b,0x28,0x9a,0xf9,0xdd,0x30,0xc6,0x40,0x7f,0x6f,0x03,0x13,},{0xd4,0xc3,0x0a,0x48,0xc4,0x52,0x3b,0x1f,0x84,0xb1,0x4b,0x65,0x7a,0xf8,0xf8,0x59,0x75,0x5b,0xba,0x63,0x59,0x98,0x8b,0x67,0x5c,0x6d,0x85,0xdd,0xf3,0x54,0x62,0x82,0x0d,0xa4,0x76,0xd8,0x4f,0x6c,0x40,0x2e,0x65,0xb0,0x20,0xd9,0xe8,0xa2,0xc2,0x85,0xc1,0x67,0x08,0xae,0x58,0xd1,0xf8,0xdb,0xc6,0x57,0x82,0xa8,0x98,0xa6,0x65,0x08,},"\xd6\x8a\xbc\x60\x9a\x7a\x0c\xe2\x56\x69\x9e\xb1\x70\x43\xde\xfe\x1e\xb8\x22\xc9\x70\x8f\x65\x71\x8a\x06\x58\x1f\xab\x21\x10\xec\x2d\xb0\x92\x13\xbb\x9e\x0f\x36\x12\xce\x4a\x3f\x8f\xdb\xe7\x57\xa9\xf0\xeb\x2c\x3e\xba\x43\x8a\x90\x88\xb1\x8f\x6c\x5c\xaa\xbb\xe5\xc8\x2f\x7a\x9a\xb2\xfe\xcf\x0f\x58\x59\xd1\x75\xe1\x39\x26\x30\x33\x74\x24\x58\xf8\x2a\x6f\x38\x75\x6c\xd5\xbc\xdf\x9e\x07\x36\xdb\x2c\xab\x20\xa0\xcd\x3f\x0f\x1c\xdb\xea\x85\x56\xd8\x49\x09\x35\x8d\xd8\xf6\x9f\x0d\xac\xd4\x9a\xbf\x8a\xc1\xbf\xe7\x59\x40\xd6\x93\x9e\x6a\x55\x38\x5b\x5a\xce\x7c\xe1\xfd\xe1\x20\x67\x9a\xb6\xea\x7a\x89\xd1\x42\x68\xd2\x9f\xfb\x46\xdf\x10\x5b\xf3\x90\x92\x42\xc6\x60\x5f\x3e\x3e\x2a\xb7\x44\x89\x37\xd6\xdb\x2b\xa0\x54\xc7\xb1\x4f\x43\x2d\xb4\x1d\xc1\x8a\x5b\x95\x73\x36\xb7\xf5\x2d\x97\x8e\xc0\x3e\x7d\x57\x64\xe9\xbd\x2f\x4b\x68\x95\x8d\x93\x7b\xf2\x98\x23\xb2\x7e\xfb\x31\xe2\x5b\x43\x92\x5c\x4d\xac\xbe\x67\x18\xa6\x0f\xea\x3b\x32\x70\xe7\xb7\x6b\x0d\xe0\xe7\x0f\x7f\xa3\xc1\x2c\x21\x5e\xf7\x2b\x95\xdc\x1b\x52\x76\x23\x81\x79\xdf\xc5\x2f\xc4\x88\x59\x64\x9f\xa5\x82\xd0\x5a\x60\xdf\x68\x59\x9a\x1c\xee\xa6\x4f\x64\x12\xd3\xf8\x49\x8a\xe2\xce\xdb\x12\x42\x45\x88\x3a\x24\x0b\xc0\x85\x1f\x0e\x32\x49\x65\xbe\x12\x04\x86\xe1\xea\x89\xa0\x18\x2d\xfa\x8e\xab\xd3\xb8\xfa\x66\xa9\x9c\x51\x49\x13\x89\xf3\xc8\x3a\x3c\xdb\x42\x67\xf3\xe4\xdb\xc9\x8f\x0c\x44\x85\x6b\x04\x4d\xc8\x8d\x90\xee\xee\x84\x15\xbf\x73\xde\x17\x1a\xfe\x84\xbe\x90\x35\xe0\xdc\x4c\x80\xcf\x04\x22\x46\x9f\xe0\xc9\xbd\x1c\x6a\xa6\x54\xa5\x9b\x5e\x34\xee\xd3\x51\xcd\xa2\x87\x12\x69\xac\x47\x8e\x8d\x38\x2e\x74\x0e\x9a\xc7\xab\x4d\xdc\x4c\x0d\xef\x0a\xea\xb7\x97\xb6\xf1\xa4\x27\xb8\xe4\xa8\x49\x7a\x0b\x97\x97\xda\xdc\xd3\x5c\x41\x4f\xd5\x5b\x78\x31\x30\xf6\xcd\xed\x38\xa4\x4c\x1a\x89\x28\x83\x07\xeb\x84\x25\x48\x41\x37\xa8\xae\xdb\x03\x0d\x54\xb6\x16\xa8\x2e\x3c\x5a\xcf\xfb\x08\xd6\xcc\x1a\x61\x74\x5c\x29\xaf\xc6\x8a\x0c\x18\x38\xb1\x39\x15\x9c\x5f\xa6\x67\x4d\x66\xb9\xe3\x38\x11\x5a\xad\x4b\x1b\x47\x10\xaa\x5d\x95\x17\xbc\xf7\xe1\xcb\x12\xd4\xe6\xa5\x1c\x11\x78\x9f\xdc\xae\x9d\x9b\xbe\x78\xf6\x9a\x33\xe5\x2d\xf1\x83\x3c\x87\x6b\x02\x68\x7a\x40\x4f\xac\xad\x32\x84\x1c\xb2\xd5\x25\x54\xe7\xb8\xe2\x20\x9e\x3f\x88\xfd\x94\x8c\x1e\xcf\x83\x95\x7c\x96\xf4\x3b\x03\x4b\xed\xa6\xc4\x76\x09\x6b\xcb\x09\x30\x1a\xd6\x1f\x83\x67\xcc\x43\xe1\x56\x13\x18\x62\xb4\x2e\xce\x28\x5b\xec\x2d\xcc\x2d\x02\xd0\x94\xd0\x42\xa1\x60\x72\xeb\x22\xab\x98\x88\x01\x3b\xe8\x23\x71\x56\x94\x00\xec\x1f\x8e\xc7\xe7\x91\x08\xc4\x1b\x85\x33\x65\x26\x8f\xa4\xcf\xbc\x62\xc4\xac\x12\xcc\x98\xd2\xec\x38\xa8\x7d\x60\x85\x85\x95\x67\xc0\xf2\x7d\x6d\x43\x1a\x04\x6e\x88\xa9\x81\x55\x58\x66\x07\x05\xfd\x05\xeb\x06\xc6\xc0\x5e\x5b\x7d\x62\x34\x7c\xee\xe2\x7d\xff\xed\x71\x41\x54\x0d\x60\x8c\xb9\x75\x07\x5a\x96\x44\xac\xc6\x32\x84\x39\xf9\xfa\x68\x2b\x22\x6b\x18\x61\x54\x54\x90\x11\xc3\xb0\xf0\xff\x4f\x74\xca\xa7\x1c\x19\x44\xe4\xcb\x83\x6c\xe8\x51\xd9\xb5\xd9\xe7\x27\xc5\x53\xe3\xc7\x23\xcf\x98\xc2\x73\xe5\x67\x5c\xab\x89\x9b\xb6\x6f\x46\x33\xa7\x6d\xea\x35\x73\x41\xf9\x83\xc5\x3d\x91\x58\xad\x31\x9a\xda\x75\x40\x8b\x41\xc0\x6f\x26\xb7\x43\x5b\x80\xdc\x3b\xc0\xaa\xf2\x2a\x83\x3d\xde\xdc\xd6\x78\x5c\x87\xd1\x96\xb0\xaf\x2c\x9a\x43\xd1"}, {{0x1a,0xb9,0x46,0xc0,0xc1,0xae,0xbf,0x9c,0xa3,0x7c,0x2f,0x4e,0x2a,0x4b,0x33,0x7d,0x5b,0x1e,0xbc,0xcd,0x24,0x73,0x4c,0x9c,0xb2,0xa1,0x60,0x8c,0x88,0x1e,0x57,0x57,},{0x9a,0xfc,0x63,0xdf,0xce,0x0d,0x48,0x9b,0x40,0x90,0x7a,0xee,0xd6,0xdf,0xfe,0x4c,0xd8,0xef,0x5a,0x6f,0xfa,0x22,0x98,0x95,0x56,0x44,0x5c,0xbf,0x9b,0x35,0x19,0xc2,},{0xbf,0xab,0xde,0xa4,0x18,0x10,0xa5,0x3f,0x8e,0x52,0x7a,0xcd,0x66,0xec,0x10,0x6c,0xe2,0xae,0x1a,0x67,0xff,0x6a,0x9b,0x52,0x2e,0x0f,0x08,0xfb,0xbf,0x12,0x52,0x68,0x2c,0xb3,0xa1,0xdc,0xc8,0x75,0x60,0x19,0x44,0xcb,0x88,0x00,0x0f,0x72,0xe1,0x39,0x07,0x00,0x79,0x03,0xa7,0x7c,0xd0,0xdb,0x03,0x16,0xd4,0x19,0xac,0x38,0xc2,0x04,},"\x9b\xb0\x71\xb6\x2c\x04\x06\x4b\x0c\x96\xe2\x43\xdd\x19\x8c\x39\x71\x7b\x25\xc9\x94\x48\xc2\xc0\x02\xb8\x4a\x99\x20\x4c\x5a\x6e\x23\xb4\xb9\x12\x02\x86\x75\xbf\xdc\x4d\xf9\x3c\x5b\x2f\xb8\x08\x81\xa2\x3e\x0d\x44\xba\x18\xbd\xe9\x91\x21\xee\xe8\x6a\xdc\x6f\x84\x28\x19\xd6\xeb\xc7\xa2\x88\x99\x2d\xa3\x28\x58\x05\xa8\xb8\xb6\xfb\xcd\x22\x67\xb6\x86\xb3\xe1\xbf\x79\x60\xb4\x5f\x24\x4f\x85\x2e\x82\x49\x29\x44\xe3\xd6\x18\xbc\xc4\x51\x4c\x17\xf7\x22\xba\x49\xac\xa7\xf2\xf3\xbb\x4e\x91\xf9\x40\xe9\xce\xf0\x15\x65\x0c\x3e\x40\xb0\xc8\x55\xa1\x7c\x42\xf1\x1e\x3a\x34\xac\xc8\x52\x87\xdb\xe0\xf9\x09\x3c\x00\x37\x3d\x50\xc0\xb3\x06\x4a\x5a\x5f\x2b\x1e\x89\x20\x65\x17\x52\x82\x95\xfd\x87\x17\x03\xa8\xe7\x62\xb5\xe7\x6f\xb9\xb7\x47\x3d\x21\x49\xb8\x5b\x94\x61\xf5\x58\x7e\xd7\xe7\xfc\x8b\x50\xaa\x09\x87\x6d\xee\xb6\xe2\x37\x07\x85\x02\x14\x2c\xec\x6b\xdd\xc7\x01\x40\xfe\x1d\x1f\x16\x58\xd5\xd3\xe9\x10\xfd\x70\x36\xa2\xf9\x24\xb4\x99\xdb\x17\x56\xf7\xc8\xce\x0d\x5f\x0d\x04\x5b\x39\xbc\x81\xc5\xc2\xf1\xa7\x61\xf5\x2f\xf3\x93\xe0\x64\x9b\x8d\xb0\xbd\x88\x54\xbd\x02\x6b\xe2\xc7\xc3\xcd\x63\x52\x6b\xa5\xa8\x0d\x48\x33\x5f\x03\x38\x32\xd6\x33\x76\x07\x1b\x63\x08\xf0\x59\x60\xcb\x3f\xc9\xfa\xc9\x32\xed\xd8\x37\x6d\xae\x51\xf2\xc6\x61\xf7\x5b\x7c\x6f\x4a\xc8\x56\x75\x3a\xca\x62\x06\x28\x77\x60\x9f\xc4\xa0\xff\x60\x67\x02\x82\xc0\x5e\x88\x2d\x1a\x03\x5b\xf9\x89\x0c\xab\x29\x6a\xc7\xa8\xdf\x24\x4c\x56\xf4\x90\x25\x0f\x02\x00\x54\xb8\xaf\x51\xbe\x4f\xc3\x18\xbe\xba\x50\x62\x32\xbf\x45\xe1\x7f\x5c\x74\x0c\xf0\x9d\x37\x51\x5a\x8b\xc8\x94\xbc\x95\x5c\x8a\x46\x08\x77\xc7\x85\x4f\x8b\xe3\x63\xb2\x19\x33\xe1\x62\x87\xae\x0c\xb7\x0f\x22\x2d\x4e\x36\xb8\xb4\x24\x97\x55\x59\xbb\x4b\xfc\x8d\xd1\xd5\x1b\x3c\x0f\xaf\x4a\x53\xe3\x02\x19\x6f\x9f\xed\xb5\x32\x87\xd0\x93\x15\xdf\xff\xa2\xbc\x4b\x3a\xcf\xf1\x37\xf9\xa7\x6d\x68\x56\x21\x7f\x79\xcb\xb2\x54\x33\xfc\x97\x89\x9f\xd6\x54\x0f\x18\x08\x8e\x84\x41\x7e\x48\x33\xe4\xa9\x1a\xab\xa4\x65\x8a\xe9\xad\x7f\x76\x0d\xd9\xc5\xb7\x19\x1a\x0d\x3c\x05\x54\x1b\x83\xc0\x25\xa7\x99\x21\x38\xe6\xd1\x08\x0d\xa1\x4c\x2c\x88\x7c\x6d\x67\x0a\xab\x37\x4d\x43\x6c\x27\x2f\x9e\x96\xf8\x5a\x9c\x42\x33\x79\xc0\xd4\x7c\x46\xdf\x6d\xe3\x34\xea\x20\x57\x15\x8d\x33\x23\x1e\x14\x26\xa6\x6d\x3c\x70\x82\x7a\xad\x55\x11\xb8\x46\xe0\x3b\x94\x92\x3d\x5f\x94\xba\xf1\xf8\xcf\x11\xa8\x61\x37\x3a\x5b\x80\xad\x5e\x31\x7e\xc2\xa5\x29\xe9\x4e\x63\x6c\xdc\x3a\xa2\x9e\x5d\xac\x20\x5a\x0c\x13\xf6\x8f\xb1\x98\xcf\x94\x56\xe6\x39\x0a\xea\xd4\xd9\x78\x2a\x10\x38\xf6\x47\x8d\x33\x9a\x81\xba\xe7\xaf\x2a\x04\x15\x1c\x2f\x22\xe8\xd3\x9f\xe0\x71\xe1\xa5\x21\x68\xd5\x7c\x84\xc3\x62\x93\x41\x3f\x8e\x6f\xf6\x93\x4f\x05\xe7\xef\xad\x6f\xa1\x20\xc8\xc1\xc3\x8a\xd1\x88\x6a\x3d\x00\xbf\xc3\x06\x45\x92\x03\xc0\x2c\xdf\x4f\x06\x65\x2b\xc8\xfa\x0e\x8b\x9c\xc7\x79\xd4\x3f\xbb\x78\x9e\x7d\xad\x5d\xc9\x9f\x41\xd4\xcc\x58\x8c\x1b\x65\x42\x6a\x4e\x77\x38\x9e\xdd\x04\x97\x75\x78\xf8\xf3\x16\xbc\xdd\x94\x61\xd6\x66\x47\x2c\xdd\x27\x6a\xa5\x69\x72\x1c\x65\x23\x22\x56\xba\x1c\xf0\xe7\xf5\xea\x55\x32\x17\x29\xbb\x0e\x03\x86\xa7\x7b\x86\x55\x32\x02\x46\x96\xed\xde\xf4\x85\xb7\xd7\xb2\x8c\x15\x73\xb9\x34\x7e\x41\x4d\x42\x61\x99\x54\x82\xe3\xb3\x12\xde\x13\x31\xf8\x4e\x75\x48\x60\x7a\x84"}, {{0x04,0xbb,0x88,0x7a,0x8a,0x31,0x84,0xff,0xc7,0xea,0x09,0xc9,0xbc,0x7c,0x1f,0x7c,0x34,0x11,0x55,0x6a,0x7c,0x7c,0x39,0x8c,0xb8,0xb2,0xd9,0x8f,0xfd,0x9e,0xe8,0x66,},{0x6a,0xb1,0xe4,0xae,0x4a,0xa0,0xd3,0x89,0x89,0xae,0xef,0xa8,0x05,0xb5,0x78,0x80,0x6e,0x2e,0x97,0x1a,0xc7,0xac,0x05,0x40,0x99,0x58,0xbf,0xe6,0x00,0x71,0xf4,0xa7,},{0xcd,0x84,0xf5,0x5e,0x5e,0xf4,0x53,0x19,0x24,0xc5,0xa2,0x18,0x1e,0xc8,0x7a,0x64,0x54,0x13,0x88,0xc1,0x05,0x94,0x06,0xbc,0x07,0xd5,0x31,0x57,0xa1,0x68,0xe2,0x03,0xcc,0x8a,0xa0,0xf0,0x06,0x9d,0x53,0xff,0x58,0xa9,0x5b,0x8a,0x8c,0xaa,0xfd,0xad,0x26,0x36,0x3c,0x7d,0x0f,0x80,0x45,0xc4,0x35,0x9e,0x97,0xb4,0x36,0x02,0xc6,0x06,},"\xb7\xab\x0c\x81\x63\xf4\x78\xc6\xca\xbf\x2b\xbd\x7c\xa3\x7c\xb0\x24\x56\xd7\x6e\x52\x7e\xea\x1b\x0d\x26\xdb\x24\x2e\x37\x87\x76\x32\x98\x5a\x3e\x3c\xa4\x1b\x52\xe2\x1d\x79\x01\x7b\xff\x81\xee\x55\x1a\xd7\x2a\xf2\x77\xb4\x10\xe4\x2a\xf8\x22\xc6\x08\xcd\x69\xd0\x0b\xf4\x40\xb7\x5b\x78\x7a\x8c\x91\x5d\x70\xb6\xc6\x37\x6c\x3f\x67\xfa\x64\xd6\x12\xa1\xb4\x49\xa7\xe2\x13\x4d\x9c\x23\x23\x01\x57\xd5\x76\xe0\x6a\x66\xa8\x42\x2a\x61\x1e\x2a\x0f\x09\x72\x86\xc1\x99\xea\x2a\x16\x28\x61\x86\x4b\xd0\x35\x07\x6a\xb2\x0b\xba\xe2\xb4\x40\x8a\x2c\x64\x33\xcb\x23\x43\x3a\x88\x9f\xe6\x59\x8f\x47\xbe\x53\xbb\xd2\xc8\x0f\x07\xa8\xfc\xcb\x8a\xae\x51\x11\x61\xe6\x09\xda\x4d\x18\x0a\xce\xa5\x44\x81\x1e\x94\x49\xc5\xdc\x22\x50\xe3\xe5\xa0\xcd\x41\xda\x33\xa2\xda\x63\x2e\x60\x38\xbd\x86\xf1\x6d\x5b\x7c\x1b\xe4\x9f\xc6\xdb\x49\x90\x76\xca\x91\xf7\xaa\x02\x8f\xe3\x85\x29\x70\x0b\x21\xd0\x72\xd2\xb7\x5d\xcc\x8b\x43\x78\x1d\x4b\xc4\xd3\xbb\x58\x4d\x9d\xa0\x1c\x3e\xcc\x85\xb1\xe9\x3f\xce\x04\x5d\xad\xce\xea\x51\x06\x46\x8b\xdf\xe5\xf7\x0d\x66\xa4\xfa\xd6\x0e\x4f\xb8\x64\xec\x15\xea\x50\xf6\xcb\x79\x72\x23\xc8\xc7\x56\xf7\xa1\x93\x1a\x39\x46\x4e\xbb\xb9\x67\x9f\x6b\x01\x68\x7c\x17\x4e\xaa\x32\xb9\x68\xb9\xcf\xac\xe8\xc1\x67\x12\x0a\xa7\xbd\x02\x42\xf0\x03\xa0\xc3\x77\x70\x25\x51\xb3\x0d\xa2\x48\x8e\xb2\x94\x40\x52\x93\x4a\xef\x4b\xfe\x11\x5f\x0a\xb7\x40\x5a\x3d\x5f\xa9\xbd\x79\x6b\x37\x17\x42\xbc\x11\x4a\x9b\xf2\x8c\x5b\xd2\x56\x26\x29\x5c\xe2\x61\xa6\xa8\x3e\xf6\x0b\x77\xd2\xd3\x2d\xd7\x10\x5f\xc8\x36\x64\xaa\x89\x76\x5b\x3f\x81\x91\xee\xee\xd8\x78\xf2\xeb\xff\x2f\xb9\x76\x63\xa6\x18\x77\xc0\x93\x93\x3b\xbd\x07\x31\xe6\x37\x57\x57\x1b\x0e\x37\xca\xc9\x9e\xd0\x1f\xd2\x14\xcb\xd4\xfe\xb9\x77\xe8\x56\xe0\xa1\xa7\xef\x0c\x40\x8c\x20\xe0\xdd\xaf\x1f\xd8\xf0\x28\xcf\xa0\x8c\x85\x0f\xa7\x09\x0d\xca\x8c\xdd\xe0\xcb\x69\x03\xda\x18\xc6\x29\x0c\x66\xa1\xc0\xae\x0a\x08\x4b\xf2\x50\xc5\x1a\x9d\x03\x5e\x5b\x16\xec\x61\x66\x36\xaf\xb9\xb5\xbc\xe3\x6a\x77\x5f\xe2\x17\x5b\xcc\x2e\xe0\x72\x20\x83\x4e\xeb\x31\xca\xee\x50\xe9\xf8\x06\x3f\xb1\xfc\x84\x68\xae\x25\xe3\x96\x67\x89\xa6\xd8\xdf\xfe\x08\xa6\xf7\xa1\xe6\x72\x6f\x93\xae\x74\x82\xde\x02\x62\xbb\x1f\x8d\xe0\xc9\x5a\x99\xec\xb9\x56\x84\xd4\x4b\x3f\x1a\x33\x2a\x18\xd2\xcd\x3d\xcf\x25\x3c\x33\xd7\x35\x52\x2f\x79\x6b\x65\x1c\x9a\x63\x3a\x8e\xbe\x95\xd0\x2b\xc0\x46\x58\x25\xee\x54\x1a\x7d\x92\x7b\xb5\xb9\x0a\x6d\xb5\x49\x9f\x8d\x99\x3a\xb4\x04\xb1\x65\x0b\x75\xe7\x92\xa7\xc8\x34\xeb\x41\xf0\x47\x01\x38\xb0\xf5\x78\xa0\x4c\x9b\xa5\xad\x95\x0a\xc7\xc9\xb5\xd3\x28\xf3\x40\x8b\x64\x5a\xd9\xc6\xbf\x19\x6d\xd9\x61\x44\x55\x96\xbc\x78\xf2\x84\xb8\x91\x4b\x2a\x8c\xf9\xb7\xbd\x3a\x71\x6d\x8f\x14\x4b\xb6\xb1\x5d\x83\x10\x23\x71\x3b\x5e\x41\xfd\xa9\xb5\x87\xff\x9d\x6c\xc4\x3c\x08\xd3\x5a\x70\x7f\x49\x52\x83\xe1\xac\xe9\x60\x48\x7e\x7f\x02\xb7\x54\x3b\x68\xa7\x31\xa2\x9b\xf3\xbe\x14\xb6\xe9\xc3\x71\x74\xa9\xf4\x6f\x56\x11\x99\xdb\xd2\x7b\x46\xbf\xe6\x22\x43\xe0\xc1\x1c\x0e\xdf\x13\xb6\x4f\x41\x1c\x8e\x8e\xce\xd3\x5d\x84\x28\xf7\x9f\x10\xea\xcf\xfb\x72\x34\xe5\x46\x41\x3d\x1e\xb0\xfa\xd8\x8c\x0e\x93\x85\x93\xb4\x3b\x5e\xe0\xe4\x28\x5d\x4d\xdd\xf5\x29\x5d\xbf\x1a\x3d\xdb\xe9\xf4\x13\x4d\xd7\x6d\x3d\xe7\x04\x62\xc2\xf0\x4f\xe0\xae\xbd\xf5\x9a"}, {{0x97,0x76,0xa4,0x67,0xfa,0x14,0x00,0x73,0x54,0x12,0xa7,0x9b,0x49,0x5f,0x9f,0xca,0x07,0x8c,0xe1,0xd8,0x7a,0x85,0x30,0xd8,0x5c,0x26,0x05,0x5d,0x3a,0x39,0x44,0x88,},{0xc7,0xdb,0xe0,0xe4,0x1c,0x0a,0x31,0xc0,0x94,0x27,0x93,0xff,0xd1,0x42,0xd8,0xb9,0x5c,0xc8,0x2e,0x5c,0xaa,0x92,0xa3,0x79,0xba,0x23,0xf6,0x44,0xed,0xf2,0x24,0xda,},{0xe1,0x31,0x7b,0xa2,0xa1,0x23,0xae,0x3b,0x29,0xe7,0xb6,0x0e,0x8e,0x93,0xbe,0xed,0xd7,0xa0,0x84,0x51,0xa0,0x13,0x69,0x5b,0x6d,0xcf,0x35,0x8e,0x40,0x34,0x02,0x6d,0xc7,0x40,0x37,0xaf,0xbd,0xd2,0x17,0xff,0x4b,0x14,0x8b,0x02,0x91,0x38,0xf4,0xbc,0xc8,0xf9,0x83,0x6a,0xbb,0xae,0x7e,0x62,0x76,0xe9,0xe7,0x69,0xdb,0xd8,0xf0,0x07,},"\xd7\x85\x53\xa1\xb7\x05\x5b\x58\xb2\x13\x10\x1b\x1c\x84\xc5\x3e\x16\x4e\x39\xc6\xe9\xd3\x6d\xb4\x3f\x30\xe1\x9e\x2a\x12\x5a\x9a\x67\x70\x9e\xaf\xef\x96\x4f\xa5\xba\xb7\x26\x1d\xdb\x3a\x8a\x01\x88\x45\x7d\xfb\xf5\x15\x9c\x40\xe5\x1d\xa8\x20\x84\x83\x24\x57\x81\xd7\x13\x1e\x23\xa8\xbe\xe5\xe5\x06\x33\x18\x16\xb9\xde\xee\xfe\x6e\x55\x6e\x3f\x0c\x95\xc6\x68\xd1\xbe\xdb\x7d\xa6\x35\x06\x54\x58\xad\x20\x46\x70\x12\xf5\x9f\x17\x13\x52\x06\x80\x20\xce\x3c\x75\x87\x86\x93\xf6\x43\x7b\xc4\xa0\x9f\x13\xb9\xb0\xf0\xcd\xda\xf1\x69\x1b\x87\x2f\x82\x00\x80\x93\xeb\xfb\xe2\x33\xd0\x31\x3e\x72\xc8\x63\x2d\x7d\x17\x93\xf0\xb8\x1c\x76\x88\xf5\x44\x70\x33\x0f\x04\xe6\x48\x60\xe6\x44\x6b\xfc\x6d\x96\xc8\x75\x69\xbf\x18\x2f\x0f\x43\x85\xaf\x48\x5d\x42\x99\xca\xc0\x4e\x06\xba\x47\x34\x65\x56\x6c\x47\x7f\x07\xb9\xdb\x27\x7a\xb4\xa9\xde\x2f\xb2\xde\xd0\xa5\x01\x1c\xd0\x6d\x67\x5c\x08\x00\xb3\x4f\x55\xbc\xf3\xec\x72\xd2\x1c\xa1\x50\xc8\xbf\x23\x61\x28\x7b\xe8\x1e\xfa\xbb\x96\xd8\x68\x8a\x1d\xee\x3f\x43\x0f\x06\xf6\x37\xdf\xd0\x6f\x15\x14\x64\xa0\x5c\x95\xf5\xfe\x76\xaf\x2e\x06\xd0\x12\x3f\x69\x48\xa2\x6b\x3b\xe8\x35\x04\x5a\xa2\x68\xcc\x1b\xe9\x76\x69\x71\x07\x77\x02\x08\xa7\x56\x8f\x02\x5c\x2d\x53\xc7\x19\xe5\x24\xcc\x36\x9d\x9b\x4a\x33\x7d\x8f\xd1\xef\x34\x5b\x9b\xca\x57\xfb\xd7\xb6\x5a\x6b\x99\x7c\xad\x3f\xce\x4c\xf0\x6f\x2c\xa4\x3e\xbe\x29\x86\xd0\x96\x82\xd4\x7c\x92\x2b\x2c\xb7\x56\x9d\x98\xde\x97\xa6\x16\x4f\x54\x70\xee\xc7\x1c\xed\xa5\x20\xcc\xec\x77\x32\xbd\x01\x68\x9e\xf8\x16\x56\xe9\xf6\xd0\xc5\x8a\x89\x55\x58\xae\xe8\x63\xf5\x46\x9e\x7a\xb9\x79\x15\xbf\xe0\xb8\x0a\x06\x4c\x65\x9b\x18\x30\x31\xf7\xf1\xa8\x6f\xb1\x1a\x9d\x52\x8c\x28\x15\xdc\xaa\x2f\x0d\xec\x3d\x21\xa8\x82\xe1\x06\xe2\x04\x93\xee\x0a\xcb\x77\x08\xea\xa2\x91\x25\x74\xae\x97\xbb\x28\x8b\x41\xfc\x09\x25\x05\x3a\x29\xb0\xbf\xbc\x0e\xba\xe8\xd6\x3c\xc0\xb4\x6e\x37\x38\x04\x6c\x5a\x20\x25\x30\xbc\xb1\x5b\x18\x7a\x72\x85\x4a\xa2\xd8\xa7\xa7\x6c\x89\xa8\x9a\x5d\xb4\x60\x32\x07\x4e\x1b\xd7\xde\x77\xef\x20\x65\xa0\x8f\x38\x9d\x78\x3c\xf7\x59\xeb\xd5\xa6\x3a\x44\xd9\x19\xf9\x48\xf5\x60\xc3\xe9\x4c\x42\x39\xe2\x74\xe0\x51\xa2\x04\x85\xa4\x30\xcb\xd5\x29\xf3\x13\xd9\xf7\xed\x67\x9a\x34\x18\x7b\x24\xf8\x41\x30\x87\xa9\x02\x1e\x47\x31\x73\x0f\x5f\x46\x1f\xc5\xaa\xd6\x65\x4d\xfa\x1c\x05\x04\xd2\x61\x24\x70\x7e\x63\xee\x57\xf9\x31\xb2\x78\x59\x08\xf8\x6b\x10\x4b\x3e\xcb\x96\x00\x02\x51\xd0\x6c\xe1\xfa\x45\xe4\xcd\x6d\xf9\x1a\xc1\x5b\xbf\x7c\xa3\xc3\xeb\x8e\xe0\x82\x76\x12\xa2\x9e\xcb\x7a\x36\xd5\x47\x0c\x40\x50\x51\x82\xfa\x9a\xc9\x13\x57\x0d\x0c\x10\x50\xd9\xa4\x34\x55\xcb\x7b\xdc\x17\xd1\x69\x80\x5f\x01\x89\x56\xf8\x54\xf8\x91\x9b\xbf\xb7\x19\xe1\x86\x7b\x36\xa6\x4a\xab\xcd\xb8\x07\xf4\x8d\xcc\xc0\x67\x2f\x67\x88\x74\x50\xb3\xf3\xe9\x58\xd7\x84\x99\xe0\xd1\xab\x36\x8a\xa4\x94\x42\xe5\xe8\xa3\x32\xbf\xfd\x44\xc1\x69\xea\x67\x62\x9c\x85\x72\x4d\xb6\xf1\x58\x6b\x6c\x6b\x5b\xe4\x86\x4d\xfd\x53\xda\x7c\x0f\x7b\x8b\xb3\x57\x31\x16\xbe\x50\x77\xd3\x32\xbd\x12\xa6\x30\x0f\x3a\x68\xa8\x98\x66\xb4\x79\xec\x2b\xaa\x27\x7f\x9f\x56\xf6\xe1\xd4\x9d\x74\x1e\xb3\x22\x03\x5f\xf8\xcb\x1d\xe8\x5c\x8d\xc8\x7a\xc8\xe6\xe4\xc5\xd2\x0b\xfb\x6d\x31\x7a\xb1\x25\x93\x0c\x42\x60\x9b\xe3\xae\x82\x24\x2a\x9e\xf0\x56\x88\x58\xd8"}, {{0x09,0xd8,0x12,0x26,0x97,0x12,0x6d,0xfc,0x7e,0x11,0x68,0x5a,0x04,0x12,0x3f,0xdf,0xb4,0x7c,0xcd,0xdb,0x44,0x99,0xd8,0xa3,0xae,0xf4,0x18,0xcb,0x65,0xae,0xd7,0xa7,},{0xf8,0xdd,0xb1,0xc0,0x0f,0x6e,0x0f,0x4b,0xea,0xa6,0xfc,0x38,0xe5,0xd0,0xa5,0x77,0x5e,0xe2,0x8c,0x80,0xdb,0xde,0x3f,0x0c,0x79,0x30,0xa3,0x3a,0xad,0x71,0x50,0xf3,},{0x18,0xcf,0xaf,0x6d,0xc8,0xe4,0xe8,0x58,0x2b,0xce,0xfe,0x0c,0xdc,0x6f,0xce,0xfe,0x6a,0x4a,0x87,0xea,0x62,0x95,0x85,0xf3,0x7d,0x2f,0xba,0x44,0x6b,0x3a,0xeb,0xd4,0x52,0x42,0x63,0x82,0xda,0x0d,0x49,0x1c,0x39,0xcb,0x7d,0x54,0xd2,0x73,0x00,0x5d,0xc1,0x32,0x12,0x15,0x68,0xd2,0xab,0x67,0x45,0x20,0xad,0xda,0x75,0x23,0x84,0x0d,},"\xa0\xd8\xd8\x79\x8e\xba\x22\xf5\x67\x60\xc3\x06\x43\xe9\xfc\x67\x95\x54\x7e\xa5\xf2\xf2\xbb\xd1\x1c\x03\x92\xb2\xeb\xf7\x11\xac\xa2\x2f\x08\x24\x19\x9f\xc3\x18\x8a\x45\xbd\xff\xde\x70\xec\xe9\xab\x15\xa5\xea\x89\x62\x2a\x58\x71\xe0\xef\x76\x85\xd1\x0f\x12\x74\xcc\x19\x5b\x4f\xda\x81\xf8\x79\xd1\xe9\xbf\x42\xf8\x73\xb2\x0a\x85\x9c\x23\x3f\x9e\x49\xad\xbf\x05\x77\x31\xe1\x13\x35\xe9\xb6\xd8\xed\x0e\x06\x9e\x13\x4e\xc4\x61\xca\x88\x90\xd7\xb0\x47\x3c\x40\x5e\x8a\x9d\x95\xd1\x57\x11\xb1\x24\x76\x10\x37\x62\xc6\x26\xd9\xf2\xaa\x5d\xd5\x19\xbd\x82\x5b\x60\xb3\x23\x4e\xbf\x65\x1e\x0d\x19\x33\x37\x1c\x52\xbf\xd8\xce\x33\xfc\x36\xbb\xa3\x28\xf7\xf3\xf2\xcc\xc0\x10\x00\xa8\x99\x04\xaf\x37\xe4\xe1\xe9\xe1\x5f\xff\xab\x5c\x2b\x0c\x47\xf3\x7c\xdc\xb0\x68\xdb\x33\xac\x36\xa5\xf0\xd6\xde\x12\x03\xfb\xf8\x94\x93\x24\xbd\x3e\xfd\xa0\xf9\x88\x9d\xb0\x0d\xa2\x31\x7b\x49\xfd\x18\x69\x99\xdf\x7f\xcd\xc3\xcb\x4e\x1d\x18\xfa\xa2\x54\x56\x1c\x25\x11\x78\xb8\xd3\x3f\xdc\x9d\xcc\xd8\xd2\xd7\x21\xb9\x3a\x53\x6c\xcd\x3c\x0e\x9c\x85\x63\x37\xf1\x95\xee\xe7\xda\x9a\x7f\x6b\x0a\x42\xb7\xc5\x41\xc6\xa6\x8c\x59\x5b\xf3\x47\x04\xd9\xfe\x3a\x56\xd2\xec\x84\x81\xd5\x77\xc9\x6e\xcc\x08\xb8\xe4\x0a\xcd\xbf\x05\x0e\x20\xc6\x83\xf3\x9c\x41\x4e\x8c\xbf\xcf\x4a\x01\x52\x31\x4c\x05\x98\x7a\x83\xbd\xe3\x02\x5b\x73\x5c\xca\x30\x23\xab\xc5\xfe\xb7\xe0\x0d\x02\x36\xb4\xf2\x4b\x15\xe6\x79\xdb\x05\x2c\x8d\x2f\xdd\xb3\xbe\xf8\x66\x3a\x6d\xf8\x19\xa9\x81\x55\x27\xa1\xa2\xf6\x0a\x0f\xa4\xe5\x07\x8d\xdc\x6d\x43\x5f\xe8\x92\x87\xb3\x0f\xfd\xeb\x5d\x9a\xe0\x5d\x1a\x86\x90\xfb\xc7\x59\x0a\xad\x57\xd4\x3d\x22\xc1\x2a\xce\x2c\x81\x96\x88\x8e\x35\x4e\x9f\x78\x2f\x5d\xbb\x44\x14\x9e\x83\xfb\x8b\xbc\x9d\xa6\xd8\x9c\xe2\x06\xc1\xe2\xb6\xb2\xb2\x8f\x93\x3f\x3e\x5f\xf1\x17\x5a\x31\xa8\xff\x5d\x31\xe6\x5c\x8b\x00\xc5\xba\x46\x22\x24\xa1\xe0\x9d\x4f\x09\xcb\x40\xfc\x87\xc3\x6e\x7d\x28\x5c\x77\x4a\x96\x97\x62\x03\x65\x18\x28\xe7\x83\x62\x88\x47\xac\x51\x2e\x5d\x1c\x35\xb3\x5b\x03\x01\x71\xf9\x23\x96\xf5\xff\xaf\xf5\x85\xce\xad\x04\xb6\xae\x21\x0d\x80\x70\x7c\xc6\x83\x2d\x98\xa2\x0d\x3a\x94\x76\x48\xda\x26\x04\x93\x7f\xef\xd2\x5a\x9f\xe0\xfc\x5c\xac\x08\x3d\xdd\x7d\x20\x75\x30\x7f\x4f\x38\x26\x64\xf6\x87\xdc\xe8\xc6\x55\xde\xd9\xc1\x2d\x48\xff\x76\x01\xdf\x2a\x48\xd3\x7f\xe2\x14\x97\x08\x44\xc0\x75\xf2\xea\xb0\x02\x05\x9f\xc2\x27\x1e\x61\x7c\x96\x57\xa0\x1b\xec\x1d\xd3\x8f\x6c\x28\xba\x8a\x61\x7b\xd3\x08\x51\xe3\xf9\xdb\xac\x90\x44\x18\xdf\x1d\x02\x15\xad\x45\xdf\xc9\xf0\x2b\x5c\x5e\x9f\x9b\xbc\x6d\xe8\xb0\x7a\xf0\xbd\x1f\x7f\xa8\x92\x25\x44\xf1\x2d\x2a\x3e\x1a\xad\xff\x7e\x9c\x6b\x93\x32\x0c\x3a\x61\xef\x33\xda\x07\xeb\x87\xb1\x61\x7f\x9e\x77\xd7\x70\x2e\x55\x8b\xc7\xd8\x12\x2e\x0d\xfe\x2a\xe8\x3e\x83\x6c\x5b\x1a\x62\xaa\x58\x5c\x0d\xff\xe7\x16\xf7\x46\x3c\x0b\x33\xda\x5b\x1e\xda\x55\x6a\x1e\xf1\xe4\x50\x42\xc7\x9b\xdd\x3e\xc3\xcb\x88\x63\xa7\xbc\x1b\x0f\x7e\x1c\x05\xbd\x99\x20\xf0\x5b\x4e\xda\x86\x51\x77\x05\xed\x07\xf6\xdc\xa7\xbb\x00\xae\x04\x56\xe6\x78\x7d\x9f\xae\x8e\xde\x4e\xcd\x0b\xc5\x72\xeb\x5c\xc6\xd1\x9e\x89\x1f\x1b\xcb\x22\x9e\x94\x09\xe0\x65\x74\xc7\xdf\x05\x81\x73\xcb\x58\xc3\xfd\xf2\x0f\x3f\xf1\x7c\x37\x05\xaf\x62\xd9\xb7\x22\x5c\x57\x43\xf6\x00\x60\x7f\x77\xcb\xe7\xd6\xe7\x61\x8a\xbc\x79"}, {{0x10,0x20,0x1b,0xf0,0x08,0x43,0x67,0x59,0x0d,0xe6,0x74,0xcc,0x0e,0xd2,0x64,0x8e,0xc2,0x5d,0x3b,0xa8,0xdb,0x40,0xd0,0x0e,0xde,0x15,0x33,0x98,0x50,0x8b,0xc1,0x26,},{0xba,0xdb,0xd0,0x5e,0x5f,0x79,0xe3,0x11,0x69,0xf7,0x40,0xba,0x46,0xa5,0x89,0x10,0xa1,0xb7,0x77,0x05,0xaf,0x45,0x71,0x7b,0x2a,0xf8,0x08,0x56,0x45,0x7c,0x58,0xc9,},{0xf1,0xd9,0x96,0x58,0x8b,0x29,0x8f,0x27,0x1e,0x97,0x0c,0xeb,0xd2,0xa1,0xb3,0x39,0x97,0x9c,0xd2,0x9d,0xdd,0xee,0x36,0x45,0xd0,0x7f,0xab,0x8a,0xb4,0x65,0xdd,0xe3,0xe9,0x86,0x67,0xec,0x01,0xad,0x7f,0x1c,0x0a,0x65,0x92,0xe0,0x69,0x7e,0x66,0x5c,0x72,0xfd,0x38,0x14,0xdb,0xe1,0x89,0xed,0x5f,0x4e,0x76,0xc7,0x94,0xe5,0x38,0x09,},"\x7b\xb1\x47\x06\x17\xd1\x1e\x45\xeb\x60\x2a\x82\x9a\xd7\x73\xee\x2b\xb7\xe6\xb8\x8d\xa4\xc0\x4a\x72\x16\xa4\x50\xf8\x49\x93\xa4\x98\xcb\xd3\xb9\x25\x40\x28\xf2\xf9\x9f\xc2\x1a\x23\x28\x8b\xdc\x1e\x15\x1a\x72\xa9\x13\x0c\x3d\xed\xda\x1b\xbb\xcc\xd4\xe6\xc0\xf4\x8a\xe9\xf3\x53\x18\xcb\xef\xc9\x59\xf4\x05\x04\x5e\x6e\x0b\x5f\xb2\xe7\x38\xf2\xb7\x65\xbe\x11\xb1\xb6\xa0\xf1\xe8\x31\x95\x49\xd9\x5f\xa8\xd1\xdf\x81\x67\xcd\x4a\x77\x17\xae\x16\x36\xa9\xdf\x54\xd9\x6e\xaf\x2d\x63\x23\x69\x00\xfd\x11\x33\x82\x52\xa5\x00\x8d\x5d\x48\x0e\x2b\x1e\x98\x61\xd1\xf7\x06\x88\xc4\x7e\xae\x46\x89\xda\x01\xa4\x7d\xa3\xdf\xb6\xd2\xba\xb3\xcd\xf5\x05\xee\x5d\x80\x1a\x15\x2c\x26\x70\x93\xd1\x7e\x9b\xf7\x13\x7a\x6e\xe7\xb8\x34\xd0\x08\x55\x00\xe4\x01\xc1\x7f\x32\x86\xc1\x57\x5d\x1c\x01\x00\xfa\x98\x07\x63\x0c\x4a\x99\x06\x54\xc1\xe7\x1a\x8b\x71\x56\x27\xbb\x13\xd4\x42\xc8\x4a\x44\x98\x44\xc4\x04\xb8\x72\xbf\xba\xc7\x18\xa4\x8d\x0e\xa0\x94\x5c\x77\x16\x6a\x53\x13\x9b\x0f\xf0\x09\x81\x34\x76\x4f\x9e\xcd\xb8\x8e\xab\xe0\x7c\xcb\x2c\xce\xd4\x95\x5e\x08\x24\x9b\x2f\x57\x70\xad\x41\xfc\xcd\x7b\x5b\xb3\x72\xe6\xc3\x37\x67\xe0\x7f\x5b\xe7\xd1\x07\x12\xde\x81\x84\x1b\x13\x4e\x19\x3d\xf0\x77\x6a\x0f\xc1\x56\xff\x5d\x0e\x96\xf4\x0a\x70\x47\x53\xe1\x14\x5e\x9f\xa0\x83\xc4\xdd\xee\xf4\x41\x62\x34\xf6\xe1\xa2\x38\x2c\x8e\x5b\x3a\xd4\x05\x45\x8e\x89\xd2\xf4\x93\xa4\xd7\xc2\x9a\x23\xde\x21\x07\x48\x5b\x7f\x56\x35\x01\x24\xe7\xe0\xd6\x95\xc5\x22\xb6\xde\x7a\x92\x47\xa2\x92\x4c\xe6\xf2\x86\x32\x36\xc1\x0c\xc2\x12\x64\xad\x54\x59\x0d\x31\x47\x63\xea\x1a\x19\xaf\xac\xd9\x0e\xba\x95\x58\x70\x40\x7e\x8c\x63\x65\xa1\x43\xa5\xc1\xb9\xa8\xbe\x5e\x4a\x4d\xca\xdb\x72\xe0\xd4\x76\x49\xbd\x53\xab\xd4\x6b\x5c\x69\x60\xea\xe2\xca\xb7\x73\x75\x3c\xc0\xe0\x4e\x99\x41\x4b\xc2\xcb\x30\xf4\x8b\xb5\x41\x39\xd0\x66\xe4\x3e\x2f\x0e\x1a\x4a\xe9\x63\x85\x8b\xef\x96\x7d\xf8\xc8\x41\x40\xd2\xd0\x92\x02\xb4\x06\xd5\xd8\x5c\xb7\xa9\x6c\xc5\x7f\x23\x3e\xb2\x18\x7f\xfd\x02\xf9\x4e\x92\x29\x7b\x5e\x69\xd9\x69\xd3\xa5\x93\x6e\xfe\x49\x29\x14\x4f\x25\x8b\xfb\x39\xdd\x0c\xe2\x63\x59\xc4\x54\x9f\xc2\x18\xa0\xaa\x54\xf3\x1b\xd5\x51\xb8\x78\x1a\xcb\xbf\x61\xcb\x3f\x73\x2c\xda\xf6\x22\xc6\xa6\x91\x88\xcf\x55\x7a\x3a\x92\xed\x15\x3e\x69\x12\x5a\x40\x90\xac\x45\x15\x36\xa0\xe9\xa6\x3a\x41\x78\x29\x10\xff\xcc\xb4\xe8\x50\x02\x11\x23\xff\xd1\xf3\xbf\x39\xc7\x34\x60\xa6\x5c\xcf\xe4\xdb\xa9\xbd\xef\xb5\xd5\xf4\xda\x6c\x46\x9a\xa1\x32\x2f\xa2\x70\x43\x23\x83\x63\xee\x72\x91\x86\x88\xd7\xca\x1c\x4c\x29\x52\xe4\x30\xd5\x63\x25\x6b\xb8\x6d\x35\x0a\x35\xee\x82\xe0\x15\x04\x74\x7f\x31\xd0\x2e\x03\xae\xdd\xa5\x46\xd0\xf1\xb2\xf4\x51\xb8\x70\x82\x16\x02\xd0\x0e\x81\x90\x36\xad\xe5\xa7\xc7\xfc\xd2\x1a\x6d\xe6\xaf\x35\xb1\xf9\x63\x2a\x70\xaf\x65\xdf\x64\x45\xf6\xfa\xdf\xbc\x0f\x41\x67\x55\xc8\x24\x66\x40\xe5\x6b\x85\x6b\x66\xdd\xd9\x2a\x60\xc0\x35\x38\x22\x1d\xc8\xfb\x14\x2c\xe2\xdb\xac\xdb\x74\x25\xf3\x3c\xb8\x5d\x85\x0c\xc0\x2c\x31\x5c\xfc\x11\x1f\x6f\x65\x1d\xde\x1b\xdb\x67\xfb\x20\x8e\x1f\x6b\xde\x78\x4d\xdc\xf7\xbd\x18\xc8\x05\x1a\x2e\x0b\xbf\x10\x18\xb8\xf3\x95\x36\xc5\x89\xde\x65\xea\xdc\x6c\xf3\x79\xb7\x7c\xad\x13\xf9\x08\x9c\xb3\x23\xfb\x2e\x94\x3d\x06\xcd\xd1\x07\x05\xc1\x21\x13\x4c\x65\x48\xdc\x53\x41\x5f\x8c\x37\x0e\xc6\x90"}, {{0xc4,0xaa,0x42,0x52,0x46,0xb5,0x17,0x3f,0x5e,0xf8,0x98,0x15,0x2e,0xca,0x3d,0x09,0x2b,0xb4,0xc2,0xdd,0x02,0x85,0x3f,0xcf,0xc7,0x17,0x83,0x99,0xf4,0xe2,0xf7,0x58,},{0x29,0xb7,0x7a,0x30,0x75,0xf4,0x19,0x24,0x3c,0x0c,0x1b,0xc3,0x96,0x59,0xd7,0x31,0x17,0xac,0x00,0xe5,0x5e,0x8d,0xe3,0x8f,0xe9,0x82,0x9a,0x87,0x9c,0xc5,0xb8,0xa0,},{0x5d,0x85,0x45,0xa4,0xbe,0x3f,0xd6,0xda,0x25,0x78,0xc2,0xec,0xcb,0x64,0x8d,0x83,0xfc,0xfe,0x58,0x71,0x33,0xfa,0x7a,0xe4,0xa1,0xcf,0xca,0x9a,0xe6,0xda,0xa4,0x92,0x59,0xc9,0x52,0x04,0x4a,0x85,0xa2,0x0b,0x6f,0x53,0x24,0xf8,0x27,0xdb,0xa2,0xd1,0xa8,0x38,0x8c,0x40,0xa9,0x28,0xb9,0x50,0x91,0x3c,0x63,0x4f,0xb3,0x09,0x27,0x07,},"\x7d\xf9\x78\xa1\xf4\x97\x68\x38\xff\xed\x74\x49\xa4\xdc\x13\x8b\x60\x4f\x4b\x2a\x4a\xe6\x89\xce\x75\x01\x8e\xbc\xcd\xab\x2e\xaa\x0b\x60\x76\x8f\x72\x08\x25\x7f\x2b\x28\xe7\xaa\x09\xbf\x6c\x05\x88\x8d\xa4\x6f\xd3\x96\xd1\xc8\x03\x01\x17\x50\xe3\x0e\xb4\x84\x87\x0c\x88\x06\x97\x76\x96\xf1\x2e\xbb\x9f\xee\xb4\xca\xf9\x2a\x02\xdb\xaa\x22\xbb\xff\x63\xf8\x42\xc3\xba\x14\x7b\xca\x7c\x00\x31\x42\x78\xac\xd0\xdb\x17\x35\x69\xf4\xe3\x65\x27\x95\x8e\xf6\xf1\x00\x2b\xd3\xcd\x01\xf4\x07\xa8\x65\x31\xed\xcb\xd9\xf3\x1b\x3a\x4a\xb8\x80\xa4\xf5\xb5\x2b\x42\xd0\xd4\xa1\xba\x66\xa2\x09\x86\x51\xae\x3e\x6c\x91\x51\xf4\x02\x73\x28\x5f\x7f\x6a\x4e\x81\x60\x6b\xf9\x80\xf6\x89\x50\x4b\x42\x08\x0f\xdb\x97\xc7\x28\x46\xfb\xa9\x04\x7c\x7e\x66\x0b\xa5\xc6\xbf\x12\x6a\x9a\x59\x9e\x25\x71\xfa\x13\x50\x5a\xf7\x58\x1b\xfe\xbc\x16\x51\x3f\x5c\x94\xdc\x71\x93\x7e\x6e\x61\xb3\xea\x10\x93\x9b\x02\xea\x10\x85\x9f\x32\xd7\x91\x2b\x9e\x38\x06\xab\xef\x61\x85\xfc\xff\xa6\x88\x21\x47\x80\x05\xcb\xfc\x1d\x63\x7d\xd0\x20\x42\x56\x20\xa3\x18\x07\x48\x98\xbd\xc3\x09\x31\xc5\x9a\xc0\xc6\x6c\x4d\x12\x38\xb0\x97\xcd\x5b\x17\x0f\x08\x44\x35\xd4\xba\xe4\x8a\x03\xd9\x2f\xd4\x8f\xc2\xca\xa4\xff\xc5\x05\xf1\xbc\xa5\x16\xfb\xd6\xe4\xf8\x88\xcc\xed\x98\x2a\xe0\xdd\xb8\x8f\xc2\x8a\xa6\x97\xb7\x07\x1d\x01\x5b\x0a\xcb\x28\x09\xb0\x1d\x1d\x9c\x7e\x7b\x53\xee\xe6\x82\x4c\xc3\x7c\xce\x5b\x69\x93\xd8\x8d\x83\xea\xfc\x2e\x92\x8a\x6f\x14\x7d\xb6\xeb\x80\xb1\xa6\x9f\x01\x60\x5b\x04\x6b\xd2\xfd\x1d\x92\xc5\x45\x9d\x6d\x33\x98\xa9\xca\xa2\x99\xdd\xd0\xc3\xba\x2e\x08\x94\x13\x07\xb1\x20\xcc\x13\x99\x2f\x70\x03\xac\xed\x14\xa4\xa4\xd9\x23\xbb\xb1\x2f\xc3\x93\xff\xcf\x92\x0b\x9f\x6d\x47\x75\xe9\x4d\x4a\x51\x22\x67\xfd\x26\xa6\x99\x7c\x60\x62\xb4\xc9\x90\x0f\x98\x62\xb9\xea\x0c\x8d\x7d\xf1\x9f\x05\xc2\xb6\x04\xaf\x5b\x98\x64\xfb\x27\x54\xa8\x07\x3b\xbb\xfb\x18\x23\x3e\x6e\x15\x0f\x72\xa5\x25\xe3\xa5\x76\x0f\xcd\xa7\xd3\x2a\x60\x03\x4f\x95\x6e\x3c\xbd\x34\x36\xc2\x00\x83\x0b\x3e\x7a\x14\x57\x12\x20\xbc\xb6\x27\xd5\xa4\xbe\x72\xc2\x0b\x23\x35\x1b\x2d\x92\x06\x02\xa5\x1c\x3e\xb3\x2c\x12\x37\x03\x9d\xfb\xff\x43\xc9\x87\xfd\x85\x63\x77\x7f\x0e\x5a\x39\xf8\x14\x6c\x16\x4b\xdf\xfc\xe4\x4f\x3b\x13\xee\x74\xd6\x4b\xfd\xcf\x98\x03\xf0\x3d\xd0\x17\x2a\xc4\xfa\x4b\xf6\xc7\x83\x9c\xb1\x1f\x3d\x34\xba\xef\x0e\x32\xb5\x49\x42\xfc\x4f\xa3\x8f\x47\x3e\x29\x66\xf4\x91\x1c\x0e\x80\xd7\x69\x37\xb2\x5b\x76\x32\x27\x5b\xa8\x83\x09\x63\x5a\x60\xdf\x13\x54\x89\x20\x8d\x3e\x73\x4b\x67\x2e\xda\x7d\x2b\xa2\x15\x79\xab\xa8\xd8\x86\x0e\xa7\x64\xfd\x67\xea\xf9\xc3\x8e\xa7\x63\x7d\x1b\xad\x57\xb2\xf3\xd7\x82\xb9\x1e\x1d\x5d\x92\xac\x30\x0b\xdb\xa7\xab\x91\x13\xce\x91\x3d\x0c\x79\x3c\x12\xa9\xa7\x26\xe3\xfc\xab\x05\xcb\x47\x99\x77\x87\x16\x40\x63\x0d\x45\x9e\x69\xe8\x1c\xa5\xcf\x56\xdd\xb2\xa0\x61\x1d\x61\xd4\x81\xc1\xb8\xce\xf3\x80\x4b\xd4\xe5\x75\x4a\x61\xeb\x49\xb1\x7e\xf2\xb0\x3c\x83\x05\x7b\x5d\x20\xd8\x82\x05\x8c\x00\xf5\x4b\x6c\xca\x86\xbe\x95\x35\x0d\xd7\xbc\xb2\x5e\x4c\x1c\x46\x58\xf4\x52\x29\xc8\xbb\x9f\x5c\xdf\xcc\x44\x79\x5c\x97\x8e\x33\x88\xd3\x25\x76\x01\x06\xe5\x2b\xe9\x83\x4b\xd8\x1f\xfc\x5c\x62\x48\x6b\x6f\x33\xc2\x74\x59\xdf\x17\x8e\xb9\x46\xe7\xa8\x2d\xb9\xce\x0d\x29\x5b\x92\x5b\xb6\x12\x6d\xd5\x5c\x31\xf4\x9a\x68\xdc\xef\xc7"}, {{0xf1,0x3c,0xaf,0xde,0x6f,0x39,0xb9,0x63,0xdc,0xa9,0x66,0x26,0x86,0x2f,0x4f,0xbc,0x5c,0x2e,0x00,0xdd,0xf0,0x8b,0xec,0xea,0xc7,0xa6,0xe2,0xfc,0xa9,0xe1,0xcc,0xf7,},{0xc1,0xb0,0x1a,0x91,0xe8,0xee,0x0b,0x9f,0x19,0xa7,0x2e,0x5e,0x7e,0x0a,0xef,0xcf,0xdc,0x44,0xa1,0x57,0x47,0x4e,0x99,0xfe,0xeb,0xd0,0xff,0x55,0x2d,0x73,0xb2,0xac,},{0x6c,0xa9,0xf8,0x0a,0x62,0x50,0x1f,0xaf,0x31,0x9f,0xb8,0x4a,0xf4,0x71,0xf6,0x76,0xae,0x3f,0xff,0x85,0x56,0x5c,0x97,0x98,0x1f,0x14,0x57,0xcb,0xb8,0xc4,0x9f,0x97,0xb2,0x66,0x31,0x6a,0x99,0x2d,0xb0,0xd4,0x2b,0xc5,0x02,0xf0,0x95,0xa5,0xf2,0xd9,0xa4,0xe1,0xcf,0xac,0x0c,0xc9,0x35,0xd3,0x88,0x2c,0x8a,0x3a,0x0e,0xa6,0xe1,0x0e,},"\x2b\xee\x73\xb7\x4f\x1b\x76\x22\xeb\x09\x6a\x28\xd8\x3a\x81\x9b\xce\xc2\x2d\x99\x99\xa3\x20\x62\x10\x3d\x60\x4a\xe6\xd7\x8e\xdf\x8f\x89\x38\x95\xd2\x22\x0a\xb7\x56\x90\x41\x0c\x58\xaa\xb5\x90\xa9\x8d\xdf\xf2\x3a\x94\xd2\x35\x0f\x88\x9e\x53\x46\x42\x00\xa5\x27\xd5\x4d\x62\x57\x11\x07\xb2\x7e\x57\x4f\x54\x2e\xba\xc2\x49\xb8\xe2\xe3\xce\x08\xd1\xbd\x27\xbd\x8d\x29\xf2\xe6\x12\x43\xde\xef\x0e\x69\x38\xe5\x2e\xe2\x99\x2f\xf2\x18\x7d\x7a\x7f\x52\x82\xed\xd9\x8f\xc4\x98\x5b\x61\x9a\xcb\x80\xaa\x9d\x03\xd6\xcb\x84\xb8\x21\x10\x6f\x40\xd6\xe5\xf4\xc3\x87\xab\x0a\xf6\xf2\x06\x61\x5d\x0a\x17\x5f\x7e\x60\xee\x27\x55\xae\xa3\x46\x75\xfd\xd8\x23\xeb\x24\x10\x9a\x9b\xd8\x18\xea\x2d\x9d\x9b\xd1\x99\xcf\x8d\xfe\x79\x62\x4b\x03\x72\xae\x85\xe9\x8c\x60\x20\x02\x34\xbd\x41\x3f\x4a\x62\xce\x68\xa4\x7b\x6c\x9b\x12\x85\x7c\x0d\x39\x9a\x44\x8e\x5a\x52\x80\xe9\xf2\x2f\x9b\x12\xea\x2c\xd3\xc6\x87\x13\xe7\x7d\x0a\x11\xf3\x62\x8d\x8e\xc5\xe0\x60\x63\x90\x31\xd3\xb6\x40\x02\x1c\x9c\x38\x80\x9d\xc5\xf4\x2d\x2e\x1c\x2e\x23\x46\xc8\x6e\x24\xee\xdc\x59\x84\xa1\x15\xa4\x2d\xe8\xde\x7e\x35\xc9\x91\x75\x39\xe8\x98\x85\xca\x91\x6e\x07\x2a\xfd\x5d\x46\x84\x6b\x2a\x93\x59\x61\xc2\xfe\x28\xe9\xeb\x3c\x8f\x89\x6b\x86\xfc\x12\x0c\xbd\x3a\xf2\xaa\x13\x9c\x49\x9d\x29\xcf\xc3\x69\x9d\xb7\x9c\x14\x48\x4e\x9e\xc2\x57\xa5\xf6\x43\x44\xb7\xad\x1e\x3d\xfb\x34\xee\xe7\x65\x4c\x6b\xf1\x2f\xd3\x8f\xbb\xa8\x0f\xe1\x76\x2a\xab\x57\x11\x2b\x3a\x94\xe2\xbe\xe7\x90\x41\xd1\xe8\x84\x40\xf8\x5f\xb7\x2d\xde\x68\xd4\x9e\x84\xbc\xed\x99\x8a\x2f\x63\x35\x44\x6e\x4a\x83\x5e\x70\xc5\xf8\x27\xfb\x3a\xd7\x82\x3d\x5f\xbe\x3b\xe5\xf6\xec\x7e\x43\x4e\xe5\x24\xcc\xd9\xff\x5b\x7e\x72\xa3\x2d\x09\x1a\x7e\x17\xc8\xb1\xae\x41\xa1\xaf\x31\x79\x3c\xce\x91\xd8\x4c\x36\x22\x67\x89\x69\xc8\xf5\x17\xdc\x26\xe3\xcd\x61\xd2\x44\x69\x12\x28\x3f\x93\x53\xbb\x5a\xd0\x3c\x11\x1c\x62\x33\xde\x31\x4c\x61\xb8\x31\xcb\xf3\x8b\x04\xfe\x58\xcf\x44\xf1\xd2\xd0\xb4\x5f\x25\xa6\xb4\xe0\x25\x68\x59\xcd\x5d\x83\x0f\xac\x5e\xc3\xc8\xd7\x63\x98\x55\x9e\x9b\x26\x01\x0f\x5e\x1d\xa5\xf2\x5d\x22\x00\x93\x54\x53\xff\xac\x5a\xea\x51\xf7\xe8\x1e\x72\xec\x8e\x5f\x04\xd2\xf8\x85\xc7\xb4\x5c\x63\xf6\x44\x56\xcf\xe2\x31\xb8\xcb\x24\xaa\x16\x20\xa9\x02\x63\x9c\xa7\x8d\xd3\x91\xaa\x4a\x3d\x03\xe1\x19\x75\xc8\x90\x7f\x96\x4f\xd5\x5d\xf9\xbb\xb1\x40\xe3\x8d\x6d\xb9\x32\x56\xb4\xb3\x9c\x2b\x7b\xcb\xe3\x5b\x11\x82\x6b\xbf\x8c\x08\xf1\xdc\xb4\x8e\xdc\x4b\xfb\x70\x46\x2a\x35\xea\x8c\xd8\xcb\xa7\x9f\xab\x8b\x4c\x44\xe7\x3b\xe7\xec\xfa\x11\x21\x66\xf6\xdc\xab\x70\xd8\xbb\x55\xd8\xb8\x42\x8c\x2d\xa7\x1a\xac\xa2\xfc\x3d\x90\xf3\xcc\x5e\xd0\x15\x51\x35\x8d\x60\x78\x9b\x9d\x57\x1e\xfe\x10\x89\x20\x27\xfa\x37\x40\x4a\xaf\x59\xec\x1c\x2d\x71\x11\xec\xc3\x59\x24\x67\xed\x1d\x9b\x8a\xba\x8e\x22\x9e\x32\xd2\xa0\x0c\x19\xdb\x71\x87\xfb\xcb\x12\x20\x61\x96\x1c\x1f\xda\xca\x30\x7e\x9c\x9c\x9d\xe9\x72\xad\x51\x40\x2f\xa6\x7d\xc1\xc2\xa4\x03\xb3\xc5\xe8\xb1\xe2\x46\x86\x2d\x6a\xd6\xa4\x98\xdb\x6d\x76\x1f\xb5\x66\xf6\x06\x59\x42\xb6\x0a\xd4\xb4\x30\x9d\x18\x2b\xc5\x15\x4c\xfc\x36\x86\x31\x85\xa8\x7e\x23\xab\xaa\x1d\x54\x1a\xb7\x63\xa4\xa1\x06\x6c\x0a\x7a\x8c\x3d\x82\x1a\xe3\x2f\xd3\x1c\x88\x92\x40\x10\x46\xd0\xa2\x0e\x91\xa6\x47\x79\xf4\xbd\xa8\x11\x20\xaf\x3f\xb3\x48\x6d\x3f\xc0\xa7"}, {{0xc8,0x46,0x34,0x42,0x61,0xa3,0x48,0x65,0x39,0x38,0x34,0xbf,0xaa,0x3a,0x15,0xa3,0xf5,0x3a,0xc9,0xe1,0x38,0x33,0xb0,0xb2,0x87,0x12,0x27,0x81,0xb7,0x9d,0xe3,0x92,},{0xeb,0xad,0xe0,0x22,0x61,0x95,0xae,0x25,0x4b,0x61,0x15,0xe2,0x16,0x96,0xa9,0xc6,0x5a,0x19,0xd5,0xe0,0x40,0x44,0x31,0x31,0xc2,0x2b,0x89,0xf0,0x2f,0x69,0xab,0x78,},{0xd5,0xe4,0x1b,0x47,0xad,0x0f,0x34,0x00,0x70,0x97,0x70,0xed,0x43,0x91,0x9b,0xaf,0xdf,0x24,0x38,0x1b,0x66,0x15,0x44,0xe5,0x1d,0x8b,0x5c,0xee,0x9e,0x97,0xb3,0x67,0x6a,0x4c,0x0f,0xfa,0xeb,0xb2,0xcb,0xd2,0xdb,0x79,0x85,0x32,0xb6,0x5c,0xf6,0x54,0xa5,0xb6,0xc1,0x66,0xef,0x88,0x6c,0xb0,0xfb,0xbf,0x4a,0x4f,0x84,0x4c,0x44,0x0b,},"\x5a\xbd\x13\xe9\x5b\x6e\xe1\xd5\x51\x47\x68\x28\x22\x00\xa1\x4f\x7d\x1a\x57\x1f\x34\x68\xe2\x2e\xfe\xc9\x93\x46\x30\x66\xa3\x7a\xec\x83\x73\xe5\xfb\x49\x95\x64\x19\x1f\x32\x94\xa9\xb3\x0a\xfb\x5f\x1a\x34\xd4\xd8\x8a\xbc\x3e\x9b\xc3\x03\xc1\xab\xa0\x5b\xd8\xfa\xca\x90\xee\x35\xd9\x7a\xc3\xdd\x91\x06\xf6\xfa\x3c\xa8\x1a\x38\x10\xec\xce\xfa\x6a\x20\x9e\xa3\xf3\xfc\x30\x49\xdc\xb1\xb0\x03\xc7\x28\xf7\xf6\x37\x4c\xa9\x8c\x58\x2d\xe6\xdb\x1a\xf7\x60\xf0\xa0\x21\x33\xca\x4a\x01\x03\x24\x30\x4d\x26\xa0\xe5\x0a\xf0\xd1\x3c\x13\x4d\xa3\x4a\x03\xa4\x1e\x83\xec\x8f\x10\xea\x5b\x85\x9b\xec\x1f\x51\xb0\x1c\xab\xb2\xd1\x6c\x1f\xc5\x2b\x05\x8f\x8e\x5d\xef\xae\xde\x12\x81\x71\xc2\xe0\x26\x90\x23\x16\xf8\x71\xb3\x5e\x32\x92\x65\x6f\x0e\x5b\x39\xbb\xbc\x81\xd0\xc0\x83\x0e\x6a\xc0\x1f\xac\x9b\x45\x39\xf4\x7f\x9a\xcf\xbd\x58\xb7\xab\x9f\x5a\x12\x56\x00\xf2\x51\xa2\x71\xd7\xbf\x16\x7f\x29\x54\xca\x8e\x1e\x0c\x96\xe1\x6b\x06\xe8\x30\x7d\xf8\x8b\xb8\xe9\xd5\x7d\x5b\xa0\x44\xf2\x7f\x3e\xaf\xf8\x1d\x9f\x15\x05\x54\xaa\x71\x22\xfd\x10\xd1\x1f\x35\xd2\xbe\x2b\x16\x24\xe3\xe1\xa1\xd7\x7f\xea\x4c\x5c\x7f\x8b\x98\x3e\x94\x5b\xa8\xc0\x8d\xc1\x54\x5b\x3e\x6b\x29\x73\xad\x04\x1c\x44\xd0\x61\x7e\xcc\xc8\x71\xa3\x82\x1a\x9f\xfe\xa9\xdb\x7c\x2b\x0d\x05\x5d\xa5\x5d\xe0\xb3\x50\x63\xe4\x22\x5a\xee\x6b\x22\x5a\xb2\xa7\x90\x6a\x8e\xe3\x29\xd1\xb3\x97\x2e\x0d\x1f\x70\x81\x7c\x50\xcc\xfe\x94\x03\xd1\x2a\xd6\x2c\x94\x92\x3b\x9a\xa2\xd7\xf8\x5a\x8d\xda\x47\xbe\x4d\xce\xc0\xdc\x2b\x0b\x58\xf7\xac\x19\x0a\xe0\x57\x9b\x9b\x13\xbb\xb8\xb1\x6a\x31\xb0\xab\x4d\x6f\x27\x91\x25\x3a\xb4\x75\x1b\x53\x6b\x88\xd3\xb4\x93\x7c\xc3\xa1\x10\xaa\x82\xa6\xff\xed\x68\x53\x52\x4b\x66\xb3\xef\xfc\xd2\xf6\x3c\x6f\x96\x45\xce\xa1\x3a\xa2\x3c\xd1\xc9\x9d\x9f\xfd\xa4\xcd\x3a\x9c\x5d\xf4\x5e\xc7\x47\x26\xc3\x47\x11\x28\xb7\x08\x9f\xbd\x82\x69\x4d\x2d\x3f\x08\xdc\x93\x06\xc0\xfc\x9c\xe7\xc8\x01\x13\x8e\xb1\xec\xb7\x56\xe5\x71\xe9\x05\x9b\x75\xed\x03\xf9\x2a\x31\x50\x2f\xbe\xb5\xfe\xc5\x1d\xe9\x35\x90\x10\xc4\x39\x7d\x28\xb6\x5e\x35\x6e\x38\x00\x1d\x0d\x51\xac\x96\x00\x72\x8c\x78\xb5\x76\x6e\x0f\x21\x79\x38\xb4\x10\xe7\x85\xb4\xc0\x1e\x86\xa3\x45\x2b\xcb\x38\x84\xac\xa4\x75\x40\x85\x9c\xc4\x9b\x00\x0f\x0b\x61\xfd\xbe\x72\x75\x25\x74\xb2\x7a\x22\xd4\xc4\x04\x13\xa4\x3b\x31\x09\x24\xb1\xbb\x14\x0f\xc9\xfd\xaa\xe2\x66\xd6\x59\x30\xe3\xf2\x34\xfe\x84\x1d\x82\xb2\x61\x76\xff\x86\xc5\xd2\xbd\x8d\x96\x5c\x52\xd7\x28\x06\x4e\xbd\xf6\x8d\xc8\xe4\x83\x49\x41\x80\x1c\xca\x0b\x2f\x25\x6d\x4f\x6c\x3d\xd1\x9d\x35\xd5\x36\x2b\xbf\x9b\x8a\x3a\x1c\x86\x3e\x09\x26\x89\xdd\x28\x52\xad\xd4\x88\xbf\x42\x68\x5b\x11\xe1\xe1\xad\x57\x45\xd0\x75\x62\x8d\x73\x1f\x91\xcf\xd7\x49\x15\x9e\x2e\x1c\x83\x7f\x4e\xf8\x3d\x80\xea\x1d\xd9\xbd\xed\x5f\x88\x01\x8c\xe1\xd4\xb3\x37\x1f\x95\x43\x53\xf3\xd8\x94\x37\x00\x62\xc0\x96\x5d\x67\x98\x6d\xbc\x48\x17\x15\xf4\x2d\xd2\xc9\x16\x07\xab\x8b\x5f\x0d\x89\xf6\x6e\x68\xd7\x3d\x50\xd6\x40\x52\x4d\x72\xe6\x91\x34\xb8\x87\x29\x8e\x5c\xd8\xc4\xb9\x05\xba\x5e\xfa\x0e\x9d\x68\x52\x14\xb8\x42\xf5\x0a\x2a\x39\x83\xa1\xaf\x58\x5a\xf2\xca\x43\xdb\xcf\x02\xc4\x08\x97\xae\x2e\x1a\xb5\x1d\xbc\xe5\x70\x34\x5e\x8e\x13\x5f\xb7\xb4\xeb\x0a\x1d\x6a\x0b\xb5\xa8\xa1\x80\x7e\x42\x5b\x2d\x62\x83\x60\x76\x80\x58\xe6\x1a\xd1\xcf\xaa\x20\x99"}, {{0xfa,0xaf,0x55,0xd3,0xc2,0x97,0x14,0xb6,0x5c,0x22,0x81,0xe2,0xc2,0x2d,0x61,0x34,0x97,0x1a,0x2e,0x74,0x00,0x8f,0xb9,0x40,0x89,0xa7,0x73,0xee,0xeb,0x44,0x83,0xa6,},{0x39,0x86,0x2e,0xac,0x6d,0xd5,0x2e,0x38,0x1b,0xb3,0x4d,0xc1,0x96,0xba,0x8a,0x37,0x4d,0xcb,0x7d,0xf6,0xcb,0x14,0x0f,0xd0,0xcf,0xa6,0xcf,0xa3,0x9b,0x8c,0x75,0x3f,},{0x5b,0x00,0x83,0xf7,0xa8,0x20,0x61,0xc6,0x5c,0xf6,0xc7,0x56,0x40,0xc8,0x1c,0x28,0xe8,0xd6,0xd2,0xe8,0x7f,0x6d,0x57,0x95,0xc9,0xaa,0x3b,0xb3,0xe3,0x90,0xe9,0x19,0x90,0xe8,0x2d,0xb6,0xf0,0x7e,0x61,0x4f,0x50,0x7a,0x56,0x0a,0xba,0xa1,0xec,0xa6,0x56,0xc6,0x78,0xdd,0xca,0xe8,0x19,0x82,0x51,0xe6,0xaf,0x0b,0x76,0xb8,0x8d,0x0d,},"\x94\xe6\x61\xc2\x52\x40\xa8\x9e\x82\x3d\x7f\x5d\xc0\xe6\x92\xed\xdd\x13\x70\xc3\x5a\xc4\x4d\x5a\x8c\x87\x98\xd0\xc9\xaa\xfd\xf0\xbb\xfb\x54\x92\x60\x56\x8d\xba\x1c\x69\x08\x6b\xee\x63\x6b\xe8\xed\xcc\xd3\xcb\xb2\x70\x16\x24\x4d\x54\xd7\xed\x2f\xeb\x7f\xa6\x46\x14\xd4\x54\x49\xd7\xe0\x58\xe7\x1b\x30\x6c\x22\xe6\x91\x1c\x2a\xc7\x42\x07\xba\xe5\xa8\x4d\x0f\xc2\x47\xbe\x49\xd3\x56\xe5\xd4\x35\x3b\xa5\x58\x6b\x6e\x4b\x2b\x97\xce\x9e\x23\x77\xb6\xee\xd9\x2c\x84\x9e\x67\x69\x44\xae\x90\xdc\x42\x08\xe3\x00\xe1\x9c\xc9\x1d\xc2\x6b\xbd\xd5\xa3\x0c\xfa\x92\x81\xa1\x5e\xfd\x87\x30\x66\xf8\x5a\xf3\xa2\x6f\x31\x06\x23\xe0\x09\x80\x48\x53\xcc\x68\x55\x90\x3e\xa6\x4a\x90\x98\x97\xe3\x15\xe7\x3d\x31\x29\x48\x98\x0e\xf6\x28\x9d\xb2\x1a\x5e\xbb\xec\x8c\x8e\xfe\x20\xd1\xd5\x3d\xfa\xad\x6d\x9f\x42\x96\x53\x2e\x88\x7c\x37\x35\x01\x05\xa6\x33\xab\xc7\x73\x18\x87\x51\xb2\x8c\x3a\x08\xf1\xb5\xee\x04\x72\xde\x46\x27\xe6\xb6\x1b\x68\x27\x8d\xd5\x1c\xed\x6a\x61\xec\xf3\x88\x86\xe4\x53\x39\xdc\x6c\x60\xc3\x1e\x85\x0e\xf8\x29\x6a\xe8\x0f\x9d\x31\x70\x17\x76\xeb\x9a\xf2\x16\x93\xf4\xc5\x2e\xc0\x62\x62\x57\x38\xd4\xe3\xaf\xbf\x71\xd1\xc8\x1f\xc4\x84\x63\x60\x36\x3e\xa5\x41\xa9\x76\x62\x3a\x5e\x4e\x6b\x6a\x67\x23\x7e\x92\x37\x17\x3f\x1a\x1d\x54\x33\x02\x85\x88\x85\x71\x4c\x2a\x59\x1d\x0a\x78\x62\x82\xa0\x28\x5a\x37\x11\xf7\xbc\x2b\x63\xca\x79\x87\xe9\xae\x7d\x02\x03\x55\x55\xcf\x3b\x6a\xd6\xf7\x1c\xa9\x8a\xa9\x28\x88\x3b\xf8\x1d\xd6\xf8\x64\x93\xea\xab\x56\x37\xb4\xdd\x56\x9d\x1e\xe8\xde\x6a\x44\xbc\xed\xb6\x2b\x97\x06\xb1\xdb\x89\xe3\xf0\x5d\xf1\x63\x10\x01\x7d\x89\xef\x3e\x4b\xc0\x99\xb7\x21\xa5\xc8\xd3\x80\x43\xd6\xe4\xa2\x2c\xf0\x40\x09\xc0\xfc\xee\x6b\xe6\x99\x37\x82\x99\x54\x94\x1b\x8b\x4a\x1e\xbf\x4d\xae\xa0\xd7\x74\xd0\x78\x2b\xe1\x76\xc8\xe5\x91\x90\x77\x56\xc2\xcf\x75\xde\xa6\xf7\x87\x7d\xd6\x87\x5b\x8f\xe1\x01\x2f\x30\x50\xcf\xb1\x28\x9c\xf0\x88\x66\x7e\x15\x22\xee\xed\xc9\x27\xac\x86\xbf\xe2\xc4\x07\x43\x2b\x4a\x81\x3a\x6a\x7a\x55\x04\xe9\x99\x20\x6d\xb1\x82\x7e\x25\xfa\xfd\x70\xce\xd3\x6d\xb3\xb2\x81\xb6\xf7\xb1\x4e\xd5\xba\xa0\x57\x23\x15\xa9\x39\xc5\xbf\x4a\xbb\x13\x3d\x2e\x7b\x16\xd5\x2d\xe2\x08\x17\xaf\x05\x5d\xf5\xf1\x41\x20\x77\x34\x61\x0a\x0c\x6e\xeb\xed\xaf\xff\xd9\xcc\x9f\x06\x9b\x67\xf9\xa1\xc0\x45\x4b\xe4\x1d\x54\xc1\x38\xbe\x54\x2e\x5e\x38\xcf\xe2\xf2\x93\xf7\xd2\xd3\xdf\x66\x97\x7a\xcb\x36\x6a\x42\xc1\x9b\x31\x85\xac\xfa\x1b\x36\x3c\x61\x31\xa4\xa8\x11\x1c\x3b\x1f\x4f\xd7\xac\x40\x6d\x0e\x69\x10\x3b\xa1\x5b\x8c\x4b\xf2\x9b\xc2\xed\x9c\x45\xcf\xd1\xd2\x79\xd8\xd9\x31\x44\x4b\x2b\x18\x49\x25\x2b\x8a\x70\xee\xd8\x0f\xd2\x60\xed\xf5\xa3\xc0\x1b\x96\x90\x16\x0d\x23\x11\x85\x1d\x21\xc9\x30\x2d\x98\x59\x86\xea\xee\xb3\xae\x2c\x07\xc7\xc7\x67\x20\x94\xf9\x1d\xb0\xbd\x50\xbe\x37\x7e\x4d\x1e\xb0\x7e\xe7\x6a\xf4\x9d\xc1\x36\xa1\x45\xa1\x1b\x17\x2f\x08\x11\xfe\x73\xd6\x25\x9b\xe3\x70\xc4\xdf\xca\xb6\xf1\x9e\x4a\x64\xb1\x51\xd0\xa6\xdb\x80\x50\xc3\xde\x2c\xc3\x25\xf5\xc5\xf6\x59\x4c\xf6\x24\x8e\xb0\x81\x20\x95\x39\xe0\x8c\xa3\x42\x29\x84\xe7\xbf\x80\x3d\xe3\xa4\x19\xb1\x44\x23\xf1\xe5\xa5\x42\x24\x04\x2c\xe4\xf0\x54\x88\xa6\x04\x4f\x40\x42\xbd\x64\x9b\x1a\x08\xce\x10\xc2\x00\x6e\xa7\x6e\xfa\xb4\x64\x1f\xef\x28\x97\xef\xd7\x24\xe6\x05\x4a\x3b\xd1\xa6\x9e\x39\xa4\xa5\xe2\xd5\x02"}, {{0x6d,0x78,0x55,0xe3,0x0f,0x7a,0x13,0xe2,0x37,0xb0,0x67,0x14,0x43,0x46,0x43,0x4b,0xb4,0xb0,0x51,0x78,0xc7,0xd8,0x8d,0x49,0x2e,0x79,0x02,0x7c,0x4b,0x0f,0x3c,0xdd,},{0x72,0x73,0x29,0x38,0x28,0xef,0xa3,0x49,0x82,0x23,0x92,0xdb,0xba,0xb0,0x78,0x79,0x57,0x7e,0x1a,0x77,0xa6,0xfd,0x6a,0xfe,0x33,0x75,0x3a,0x9e,0xec,0x88,0xc4,0xaf,},{0x0f,0xe2,0x8e,0xad,0xd9,0xe5,0xdd,0x57,0x4b,0x3f,0xaa,0xea,0x81,0x0d,0x44,0x52,0x2c,0x8b,0x1b,0xfb,0xb3,0xe3,0xd5,0x7e,0xd8,0x89,0xfa,0xed,0xec,0x91,0xd0,0xe1,0x4a,0x86,0xb9,0x14,0xc4,0xc7,0x66,0xf1,0xbf,0x9b,0x8f,0x18,0xb0,0xdb,0x89,0x0d,0xb6,0xc1,0xb1,0x25,0xd5,0x78,0x04,0x33,0x36,0x19,0xb1,0xe0,0x72,0x0a,0x33,0x00,},"\xf8\xb9\x36\xe7\x93\xb0\x17\x58\x0c\xc0\xe9\xcb\xda\x2a\xcb\x64\x74\x50\x7f\x4b\xca\x3a\xfc\x87\x83\xec\x46\xee\xb8\x2c\xcd\x4d\xd2\x52\x56\x76\xaa\x6a\xb5\xc0\xdc\xf7\xd7\x5f\x7e\x03\x11\xe6\xfe\x6b\xf2\x72\x63\xf8\x57\x8f\xeb\x55\xc5\x61\x2d\x1f\x28\xe8\x88\xb7\x66\x56\xc4\x1c\xcd\x8a\x70\xb9\xbc\x60\x4b\x42\x72\x4f\xa2\xbc\x41\x1d\x44\xc3\x1a\xb6\x8c\xe8\x4f\x83\x93\x39\x9e\x34\xd5\x40\x85\x79\xc2\xba\x29\x21\xf2\xf8\xd1\x14\x87\xaa\x7e\x52\x55\x7f\xee\xd9\x67\x57\x19\x9d\x3a\xae\x63\x77\x77\x01\x54\xb1\x7f\x35\x77\xc7\xac\x3d\x8c\x76\xcf\x74\x61\xb5\xe8\xd4\x2a\x71\x85\x07\x8e\xd4\xf8\x62\xfc\x57\x50\x2f\x61\x50\x75\x30\x7b\x6e\x10\x3c\x77\xc1\xf6\xc8\xbd\xa7\xaa\x17\xe4\x35\xe2\x1b\x94\x9a\xf4\x4d\xff\x5a\xa3\x0a\x62\xda\x71\x2f\xa9\x96\x6a\x61\x2f\xfc\xa1\x48\x71\xfd\x6f\x86\x0b\x4a\x96\x14\x01\x2c\x53\x69\x91\x0e\x0f\xfd\x6f\x0f\xbd\x88\x9a\x9c\x25\x7c\x32\xbd\xcf\x90\xbb\x80\x62\x7c\xb2\x72\xec\xd4\x59\x98\x97\x55\x59\x55\xe1\xfe\x08\xcd\x7e\xbb\x21\xc0\x71\xbe\x0f\x48\x98\x96\x96\xcb\x39\xaa\x82\xad\x11\xba\xa5\xd4\xac\x61\x3a\xbf\x1b\x6d\xb8\xa2\x0e\x68\x68\x36\x22\x28\x33\xf8\xb6\xdd\x2f\x00\x06\x22\x7b\xe4\x8e\x85\x80\xdc\xc8\xde\x62\x0d\xac\xb2\xf6\x5a\x69\x36\x75\xd6\xcb\x45\xba\x5d\xd1\xaa\x70\xdb\x76\xbc\x64\x1d\x4f\xb5\x67\xec\xbc\x71\x11\x44\x2e\x29\x41\x58\xbe\x57\x5c\x71\xdd\xc2\x6e\x94\xf4\x12\x66\xa2\xfd\x3a\x0d\x43\x57\x81\xfc\x09\x46\x48\xfa\xdf\x5f\x17\xcd\x41\xab\x89\x58\x21\x89\x4e\xc0\x80\x6b\x26\x2c\x39\x35\x34\xfe\x66\xf2\x1e\x37\x83\xc1\x4a\x96\xc8\x8f\x2e\x06\x53\xfe\x32\xe7\x5d\xce\x8a\x46\x3b\xb9\x7e\xed\x6c\x16\xf3\xf3\x22\x81\x69\xab\xb5\xb4\xbf\x9e\xa3\x27\x8c\x1f\xf0\xf8\x6e\xae\x71\x38\x9b\x64\x33\xac\xd0\x97\xee\xfa\x9e\x6e\x05\xf4\x95\x5c\xd5\x17\x83\x0b\x8d\x98\x70\xcc\xb5\x22\x74\x15\xe5\x0f\x23\xf6\x47\x32\x17\xa7\x45\x09\x64\x70\xdc\xa9\x3d\x2b\x34\x67\x3c\x5d\x6a\x57\xed\x02\xc8\xe0\xca\xe1\x19\xb3\xf3\x29\xd8\xab\x64\x98\x49\x4c\x29\x21\xbb\x6f\x49\x6d\xd0\x83\x81\xe7\xd3\x9f\x2d\xb5\x76\x3b\x14\xa2\x82\x1b\xef\xcc\xa0\xa9\xfd\x31\x25\x45\xde\x68\xab\xf2\x06\xd1\x2d\x8e\x02\xe7\x3b\xc7\xe3\xcb\x79\x6e\x7e\xe2\x6c\xc6\x3d\x74\x1e\xfa\xfc\x53\x45\xf8\x13\x29\x51\xbc\xfb\xfd\xdf\x63\x1f\xb7\xcb\x43\xef\x35\xb9\x45\x3c\x93\x90\xeb\x23\xb1\xf9\xd8\xb1\xc7\x2d\xeb\xd2\x4f\x09\xa0\x1a\x9d\xc6\x0e\xe6\x81\x53\x06\x18\x83\x57\x78\x1a\xf6\xe1\x82\x0a\xa3\x5e\x4e\xc1\x21\xb7\xca\x34\xd7\xde\x76\x11\xb2\x46\xa3\xe7\x03\xed\x48\xc7\xeb\x03\xa6\xfe\x8f\x85\x2e\xe7\xd3\x25\x45\xc9\xd8\x52\xd6\x4d\x5d\x75\x93\x0e\x5f\x1e\xbe\x21\xa3\x07\xef\xa7\x62\x2e\xda\xce\xd6\xd8\x79\x02\x6f\x0f\x85\xa9\x11\x20\x12\x80\x37\x05\x58\x22\x69\xd3\x9f\x14\x32\x34\xdf\x89\x09\xab\x3d\x94\x8e\x76\xd3\xda\xaa\x24\x22\x6d\x9a\xc6\x01\xee\xf2\x77\xfd\x2c\xfc\x4a\x19\xae\xdf\x43\x87\xa2\x16\x17\xb0\x3e\xc3\xd3\x84\x5a\x38\x55\x4f\x5e\x97\x03\x6e\x56\xec\x1c\xe6\x60\xdf\x9c\x06\x2c\x2c\x99\x3b\x77\xc5\xba\x6a\x6d\x05\x23\x1d\xae\x37\x64\x18\x3c\x3e\x96\xaa\x53\x9c\xfb\x34\x15\xfb\x16\x3c\x64\x5b\x23\x03\xb2\xd6\xd4\xbd\xa8\xca\x6c\x72\xbc\x03\xd5\x30\x5f\x9b\x11\x8e\x92\x5e\x27\xd2\x9a\xb7\xdc\xb1\x96\x47\x0e\x63\x39\x63\x1b\x23\x80\x74\x4c\x04\xd1\xda\x34\x8f\xc0\xfe\x27\x42\x77\xf8\x2f\x95\xbd\xfb\x0b\x64\xb4\xcf\x3b\x51\xe5\x71\xc0\xdd\xb3\xb5\x3c\xa6"}, {{0x7e,0xe4,0xe7,0xe9,0x8c,0x6a,0x40,0xf0,0xe7,0x44,0x13,0xf2,0x40,0x39,0xbd,0x22,0x0d,0xf1,0xf8,0xc7,0xf0,0x15,0x52,0x8d,0xbf,0x52,0x84,0xab,0x9f,0x7c,0x82,0xe2,},{0x4d,0x5a,0x80,0x0f,0x9b,0x22,0x07,0x0e,0x01,0x6e,0xe2,0x3a,0xf8,0xa3,0x10,0x90,0x2b,0x36,0x9d,0x58,0x9a,0x84,0x7f,0x34,0x5c,0x2e,0xa2,0x96,0x8d,0x6d,0x09,0x24,},{0xac,0x3b,0xfe,0x3a,0xdf,0x94,0x1c,0x93,0x4d,0x33,0x49,0xc4,0x92,0xde,0x70,0xd5,0x16,0x6b,0xe3,0x89,0xf9,0x55,0xbe,0x87,0xc2,0x88,0x3f,0x41,0xf2,0xda,0x14,0x6c,0x91,0x06,0x51,0xa3,0xb4,0x52,0xc2,0xd7,0x39,0xdc,0x9b,0x53,0x1c,0x57,0x45,0x56,0x5e,0x69,0xd9,0x83,0x59,0xf1,0xd7,0xd9,0x3e,0xbd,0x36,0xd7,0x0a,0xbb,0xf0,0x0d,},"\x8f\xb0\x13\x73\xc4\x2e\x69\x61\x4a\xea\x99\xaf\x49\x32\x37\x85\xf3\x38\x61\xb9\x4e\x90\xf5\x65\x38\x9e\xbf\x70\xe2\x19\xf5\xde\xc7\x32\xe0\x01\x0b\x58\xf7\x29\x05\x30\xdf\x22\x2a\xc9\xc7\x3e\x1c\x2e\x92\xa5\xe6\x06\x1d\xe5\x59\x0c\xaf\x9c\x0d\x50\x21\xd7\x29\xea\xa1\x15\x41\xfa\x1d\x08\x21\x60\xbe\xaf\x61\x1e\x7c\xfd\xc0\xeb\xb3\x15\xd3\x88\xe5\x38\xb4\xb5\x02\x8f\x9b\x30\xd3\xd9\x73\x34\x7f\xfd\x44\x26\x3e\xef\x08\x3b\x81\xb2\x1b\x82\xec\xa5\x75\x6a\x49\x4b\x1d\x81\xc0\x7d\xe8\x49\x50\x6d\x3e\x3b\x66\x87\x97\xa5\xc5\x44\x25\x4d\x4e\xbe\x5c\xf8\x17\x1b\x39\xf8\x72\x4c\xbc\x41\x89\x29\x1b\x3c\x53\xc2\x1e\xce\x49\xa1\xd7\x39\x56\x3c\x65\xb4\x90\x25\x93\x56\x47\xa7\x30\x3a\xe0\xef\x7f\x6d\x24\x55\x46\x45\xa4\x28\xdb\xbb\x42\x44\x9f\x53\x99\xe3\x6d\xc7\x87\xb7\xd6\x95\x8a\x02\xee\xbb\xb8\x36\xe5\xe5\x3e\x26\xe4\x87\x23\x9d\xe9\x4d\x1d\x25\x0e\x79\x43\xac\x0e\x22\xd9\x27\x50\xa0\xcf\x34\x73\xbe\x1a\x62\x25\xcb\xe7\x95\x45\x04\x82\x69\xf6\x23\x7e\xc9\xf9\xec\x30\x7e\x8a\x34\xb7\xbb\x34\xcd\x49\x06\xe4\x31\x62\xa3\x70\x8f\x32\x9c\x5b\x98\x9d\x7a\x7f\xcd\xe1\x09\x9a\x54\x25\x46\xfe\x9c\x33\x18\x2b\xa5\x1b\x84\x3e\x96\xd1\x1c\x79\xe9\x1a\xd2\x1f\x71\x70\xe2\x57\xfd\xc2\x81\x8e\x12\xf9\x16\x8a\x97\x4c\x96\x8a\x4d\x27\x3f\xa3\xff\xa9\xf3\x5f\xf9\x05\x98\x0e\xaa\xd3\x72\x1c\xae\x80\x2b\xee\x36\x21\x0b\x40\xb9\x93\x19\xbb\x66\x99\x82\xe9\x43\xb2\x70\xa4\xc4\xd0\xa9\x2e\xcb\x5b\xba\x2d\xd8\xb4\x0a\xc3\xd2\xf0\x32\x5c\x46\x9d\x5e\x9d\x48\x3f\x52\x41\x97\x40\x10\xc5\xc0\xda\x33\x5f\x16\xe9\x62\x19\x6c\x2e\xf1\x4e\xb2\x4a\xaf\xbb\x31\x1b\xfd\x5f\xa8\xdc\x8d\x2d\x61\xe6\x87\x8a\xd2\xcc\xe0\xdc\x99\x39\xe4\x45\x22\x72\x3d\x42\x7e\xf3\x2f\xb4\x3b\x96\x7f\x5e\x44\xfc\x66\x57\x92\x79\x6f\x8c\xf9\x34\xf0\x1c\x32\x5d\x63\xd5\x83\xdc\x3c\xa9\xd4\xfc\xc7\x57\xd9\x17\x85\x80\xda\xef\x53\xaa\x3a\xb2\x1d\x2c\xe4\x35\x95\x5d\x1c\x6d\x47\x63\x8c\x5e\xdb\x62\xff\x55\x61\x69\x3d\x1c\xbd\x10\xec\x9e\x39\x9a\x71\xbf\x9d\xb1\xc9\x96\x9f\xd5\x9e\x4e\xeb\x31\xaa\x59\xbf\x39\xe9\xf1\x84\x17\x8d\xef\x72\x46\xed\x4b\x8f\x4b\xe5\xba\xda\xa5\xdb\x4a\xf8\x67\xf4\xf2\xec\x39\xa1\x37\x04\x20\x2c\x87\x84\xfa\x16\x8c\xe9\x6f\x9c\xfa\xc7\x10\x17\x23\x62\x75\xfd\x85\x7c\xc3\xc5\x1a\x9c\x7a\xc2\x56\x21\x5e\x14\xb8\x43\xf7\x21\x4d\xc9\xf8\x24\xb9\x1d\x1a\x51\x70\xd0\xef\x1d\x37\x69\x6f\x93\xee\x96\x6a\x2b\x7d\xec\xe2\x2b\x4f\x3a\xfd\x39\xc1\x6d\x60\x1e\x5f\xf8\x40\x8d\x45\xc1\xa6\xce\x71\xf0\x60\x97\x6c\x5b\xe4\xc0\x42\xb1\xb7\x38\xdf\x95\x80\xba\x5a\xe7\x78\x80\xa7\x0c\x0b\x94\xf0\xe1\xc9\xf9\xaa\x34\xc0\x90\xd6\x12\xd5\x7a\x9b\x93\x1f\x50\xa1\x25\xfa\x35\xce\x40\xa2\xcb\x7f\xaa\xd5\x30\xf8\x09\x08\xc7\x3c\xb7\x82\x58\xaf\xd2\x63\x13\x90\x04\x1d\x92\x61\x7e\x9b\xf6\x4c\xe9\x6e\x8e\x4a\xc7\xf3\x12\x6d\x8a\xf8\xa0\x4c\x75\xff\xd4\x38\x76\x9d\xe0\x6f\x74\xc2\xfc\x20\xcc\x81\x92\xda\x35\x3e\x79\x06\x12\x83\xbb\xa0\x8a\x8d\x24\xe6\xe4\xe2\xe8\x3b\xa5\xb0\x8e\x42\x75\x22\x60\x62\x14\x8d\x8a\x02\xaf\xad\x65\xb6\xf6\x27\xcf\xbd\x29\xb7\x1c\xa1\x8a\xee\x5b\x1f\x97\x16\x9b\xf0\x22\x8b\x37\x6f\x41\x06\xb5\x0f\xd9\x1a\x38\xa6\x62\x11\xd6\x9e\xbb\x4a\x7a\xf0\xe1\xc2\x21\x7f\x1b\xa0\x14\xd1\xe0\xcd\x17\x50\x8d\x58\x15\x5d\x16\x3d\xd9\xde\x2f\xe1\xc6\x4c\x7f\x88\xd5\xb5\x53\xe9\xba\x1e\x1f\x25\x43\x0d\x7e\x12\x5b\x07\xa8\xc2\xed"}, {{0x1f,0x28,0xd9,0x09,0x1d,0x19,0x6c,0xba,0x3d,0x45,0x52,0xe5,0xa3,0x37,0xa4,0xd8,0xaf,0x3f,0x29,0x5e,0x62,0x9e,0x4b,0xa6,0xfe,0x99,0x70,0x31,0x20,0xae,0x41,0xe0,},{0x81,0x4d,0x34,0xbf,0x28,0xee,0x6d,0x90,0xf0,0x39,0x59,0x90,0x41,0xdb,0x81,0x0f,0x7c,0x9d,0xaa,0x91,0x8e,0x03,0xe9,0x61,0x97,0x41,0x4b,0xc9,0xaa,0x31,0xec,0xdc,},{0x5b,0xe5,0x52,0xfa,0x73,0x1e,0x83,0x67,0x93,0xf6,0xdd,0xa8,0x95,0xdc,0x9b,0x1e,0x2c,0xcd,0x66,0x9d,0xe1,0xc8,0x43,0xe0,0x0e,0xa6,0xfa,0x3c,0x5e,0xbf,0x97,0xa3,0x4b,0x26,0xf1,0xf3,0xac,0x7f,0xf2,0x22,0x5e,0xe4,0xa7,0xe4,0x30,0x07,0x2c,0x13,0xda,0x40,0x66,0xdc,0xdc,0xc0,0x5b,0xa2,0xb5,0xf6,0x1a,0x6e,0x8d,0x21,0x07,0x09,},"\xa6\x94\x68\xbc\x33\xeb\xfe\xf0\x61\x5c\x64\x3c\x49\xda\xc6\xe0\x4f\xdb\x6c\xfb\x8e\xc4\x58\x57\xbb\xb7\xa2\x7e\x52\x8f\xd6\x31\xfc\x34\x11\xba\xee\x65\xcc\x1f\x94\xfc\xc9\x4a\xed\x4a\x43\x32\xfa\x68\x61\xe0\x65\xe0\x61\x63\x54\x17\x09\xd7\x97\x28\xe0\x1b\xe2\xb1\x40\xa0\x22\xc8\x3e\x7b\x23\xb9\xed\x2a\xd2\x83\x21\x69\xdf\xc9\x56\x90\x91\x3c\xf3\x72\x01\x30\x65\x70\x80\xc9\xd5\xa7\x82\x7e\x56\x60\x75\x74\x52\xc5\xfc\x3d\xcd\x80\xcc\x6b\xe0\x98\xc6\x29\x22\x6d\x54\x66\xe0\x2b\x97\x12\x6b\xe7\x4a\x14\x52\xee\x16\x81\x50\x95\xde\xb4\x2b\xf0\x65\x66\x71\x50\x28\xc1\x18\x25\x82\x0a\x8a\x23\xc6\x0d\xa2\xb6\x8d\xd9\xa5\x5d\xad\x2a\x29\xa4\x96\x44\x43\x81\x7c\x07\xd7\x76\xb2\x44\xb1\x51\x86\x81\x9a\x3b\xbe\xd4\x14\xab\xf4\x57\x9a\x3e\xce\x3a\x3d\xc7\xb1\x05\xd0\xa9\xdb\xa3\x7b\x9e\xaa\x78\xbe\x8e\x46\xe1\x69\x8b\x59\xb0\x94\x0b\x01\xf3\x8b\x28\x3c\x33\xa9\xa4\xb1\xd4\xf8\x14\x4b\x16\xee\xb5\xfc\x0a\x7a\xf0\xd0\x81\x69\x66\x45\xa1\xea\xb3\xa7\x87\xcb\xcf\x88\xfa\xd9\x3d\xd6\xcd\x46\xd2\x95\xa8\x79\xa1\x77\x50\x33\xa9\x85\x63\x82\x2e\xf1\xf6\xb6\x9a\x58\x1e\x49\x73\x6c\x8d\x70\x1b\x44\x53\x96\x93\x40\x52\x1e\x4a\xd4\xbf\x94\xb9\x11\xb0\xe2\xd8\x6f\x34\xee\xce\x4a\x63\x85\xff\x1f\xe6\x32\x20\xcd\x3c\xc5\x92\xf3\x6d\x6c\x49\x1f\xa1\x8f\x7c\x14\x04\x36\x0d\x2a\x77\x53\xfe\x07\x3e\x09\xa2\xfc\x42\xa4\xbb\xea\x55\xbc\x96\xd7\xf0\x5c\x98\xae\xd2\xcc\x4a\x9f\xae\x8f\xd4\xa0\x19\x7f\xf0\x1f\xa7\xf0\x04\x6e\x3c\x3e\xb5\x9a\xaa\xbc\xa3\x13\xa4\xdd\xaa\x5d\x20\xd2\x7c\x2c\x5f\x1a\xc6\xd8\x7f\xd3\xcb\x4b\xd3\x5a\x1e\xc7\x5d\x10\x4f\x7c\x36\x73\x31\xa3\xe2\x95\xe5\x3c\x4e\x80\xba\xe1\x4b\x97\x92\xd0\xd5\x26\xf7\x40\xd4\xff\x03\x6f\xaf\x54\x87\x96\x7f\xfa\xbe\x8e\x88\x3d\x3f\xb0\xd1\x6f\xaa\xdb\x28\xe1\x28\x5d\xed\x41\x57\x0c\x0b\x07\xc2\x55\x9b\x53\x1e\x0f\x92\x54\xef\x88\xe5\xb1\x0f\x64\xf4\x83\x9a\x9a\x0b\x6c\x3c\x7f\x1b\x78\x50\xf4\xad\x9b\xf0\x99\x9a\x7f\x2a\xe7\xc4\x5a\x65\x8e\xa5\x30\x36\xfc\x70\x19\x98\x42\xb8\xe4\x9e\x60\xf9\x67\xde\x1f\xf3\xab\xff\xf6\xcd\x73\x5b\x7c\xd8\xb8\xf9\xe2\x48\xf1\x56\xf6\xc6\x54\x38\x69\xeb\x99\x82\x3d\xae\xa8\x8d\xeb\xaf\x79\xf0\x1e\x65\x21\xec\x63\xfe\x72\x72\x4e\xe3\xc8\x22\xb8\x8b\x39\x68\xb2\x48\x52\x09\x15\x83\xc4\x9a\xb3\xc1\x5f\xa1\xf7\x9b\x18\xd9\x8f\x04\xd9\xb6\x84\x1c\x9a\x7c\xa0\xde\x2f\xcc\x02\xf9\x5d\xd6\x49\x49\x2e\x8b\x56\xa3\x1e\xc1\xe2\x44\x33\x7a\xf6\xaa\xae\xde\x8b\xf9\x9f\xc8\x14\xef\x57\xc0\xd5\xe0\x8c\x3c\x7e\xcc\x18\x97\x98\x0a\xa1\x69\xa9\x92\x6d\x20\x69\x8d\xf6\x93\x0e\x21\x10\xcb\x46\x0f\x49\x39\x01\x00\x74\x10\x95\xf8\xed\x00\x41\x2a\xe6\x96\xd9\x8e\xfe\xfd\x29\x0d\xa5\xf7\xd0\xb7\x28\xd2\x0a\x1e\xbf\xa6\xbd\x7d\x27\x0f\x28\x1a\x98\xc7\xb1\xe4\x08\x43\x51\x25\xaa\x48\x3c\x6b\x7d\x63\x3f\xf7\x58\x8a\x94\x16\x58\xf6\x12\x95\x44\xd6\x29\x45\xb9\xb8\xaf\x71\xa8\xc6\x2c\x0a\x50\x07\x6c\xb8\x54\x1b\xa7\xe4\xbd\xe4\xed\xe4\x41\x72\x2c\x6e\xb9\xdf\x8c\xfd\x06\x56\x33\x9e\x86\xd2\x26\xab\xae\xa0\x5e\xa0\x47\xf6\xb8\x30\x77\x01\xf6\xc9\xa4\x4c\xc9\xcb\x83\x7b\x8e\xb6\x24\x45\x92\x5e\x8a\x88\x81\xd2\x53\x8f\xcb\x2b\x24\x9e\x4e\xe8\xb6\x86\xec\xfb\x49\xc4\xdf\x86\x40\x1d\x24\x9a\xac\x35\x84\x1e\x91\x40\x04\xf9\x45\x5d\x3f\xde\x37\x5d\x20\xa0\x1f\xba\x27\xb1\x97\xa6\x98\xd3\x84\xc7\x65\x05\x10\x68\x01\x62\x7e\x83\x36\xbd\x2d\x76\xd7\x61\xa8"}, {{0xc6,0x4d,0xd2,0x0d,0x42,0x62,0x75,0x26,0x19,0x8a,0x22,0x64,0x76,0x90,0xc8,0x95,0xb5,0xb4,0x5b,0x69,0x8f,0x57,0xa6,0x9d,0xfb,0xe4,0x8d,0xbd,0x42,0x6a,0xa4,0x70,},{0x2e,0x01,0xd4,0x04,0x16,0xf7,0x8a,0xcd,0xdb,0x34,0xb8,0x44,0x5e,0xa4,0xfd,0x0a,0xb3,0xfa,0x9e,0x66,0x43,0x04,0x47,0x52,0x21,0x3f,0x07,0xc7,0xf0,0xff,0x43,0xa0,},{0xde,0xac,0xc8,0xc2,0x32,0x18,0x72,0x76,0x76,0xd5,0x40,0xa2,0x3b,0xda,0xd7,0x81,0x02,0x11,0xe6,0xd5,0x7a,0xd2,0x94,0xc3,0x7d,0x4b,0x1c,0x9a,0xf6,0xb3,0x37,0xa5,0x3f,0x78,0x80,0xd2,0xba,0xfa,0x73,0xb3,0x05,0x08,0xc0,0x08,0x42,0x6b,0xf8,0xd7,0xc9,0x65,0xa1,0xf4,0xa4,0x22,0xa1,0xbc,0x7d,0x6a,0xd6,0x22,0x6f,0xd1,0x97,0x06,},"\x82\x1b\x9f\x7c\x16\x10\x4b\x53\x3b\xd1\x27\x18\x4f\xd7\x2a\xde\x09\x2b\x13\xbb\xd9\xac\xee\xd2\x9b\x8d\x10\xf1\x66\x88\x92\x2d\x16\x5f\x89\x31\xd5\x3d\xf5\x90\xfb\x71\x3b\x67\x4d\x80\x5c\xe0\xc9\xd6\xce\x6c\x43\xba\x69\x68\x19\x1d\x12\xbf\xa0\x8a\x8c\xe2\x2e\x8f\x33\x6b\x2b\x49\x1a\xf2\x5d\x1b\x16\x06\xf9\x30\xca\xeb\xe5\x22\x39\x2a\x87\xd4\x2c\xe7\xbc\x16\x7a\xa7\xb6\x10\x59\x72\x20\xaf\x31\xa6\x65\x35\x30\x71\xe8\xd9\xe5\xf4\x20\x78\xb9\xc3\x88\xbf\x04\x02\x58\xe2\x1f\x9c\x3a\xb3\x8c\x04\x27\x61\x8b\x2c\x28\xd3\x43\x0d\xf2\x79\x21\xbf\xc5\x84\x87\xb3\x46\x19\x78\xbf\xa8\xbf\x58\x6c\xfe\x83\x58\xe0\x92\xf8\xf4\x74\x66\xe7\x62\x45\x1d\x50\x16\x4a\x0d\x74\x36\x0f\x66\xb4\xcd\x3a\x35\x75\xda\x01\xda\x23\x75\x24\x30\xc0\x35\xda\x85\x9f\x57\x7d\xe2\x22\x90\xaa\xb4\xed\x7f\x34\xd2\x67\x40\x6a\xb5\x47\xeb\x44\x5c\xc6\x4d\xf5\x30\x19\x42\x7f\x4e\xb7\x2b\xca\x55\x39\x71\x53\xd0\x1c\xcf\x7e\xc9\x7d\x7a\x96\x7d\x9a\xff\x46\x23\x1d\x2e\x20\x27\xb3\x8f\x3b\x41\xbd\x2c\xb1\xb7\x98\xa4\xae\x88\xab\xf4\x89\x62\x16\xd3\x15\xbd\x53\x83\x02\x42\x59\xe5\x97\x42\x80\x2a\x91\x1b\xad\xcf\x84\x73\xdb\x91\xaf\x31\x97\x33\x32\x0c\xb9\x52\x1e\xf9\xce\x43\x72\x67\xb6\xea\x17\xbc\xaf\xe5\xd0\x90\x3b\x12\x3a\x35\xc9\x88\xf4\x98\x34\xf6\x1d\xd5\x52\x64\x0a\x32\x76\xda\x26\xaf\x17\xec\x21\xa2\x02\x96\x58\x6d\xd6\xf4\xb3\x6c\x7a\x4f\x0b\x89\x9d\x70\xb4\x2a\xf8\x9e\x29\x37\x01\x32\xed\xfb\x72\xd6\x83\x41\x94\xa1\x60\x93\x60\xb1\xf1\xfe\xab\x89\xb9\x6b\x8e\x8f\x0f\x68\x98\x7c\x57\xcc\xe0\xba\xb7\x68\x11\x37\x18\xfb\x17\x09\xde\x2d\xf3\x21\x77\xd4\x40\x85\xda\x5e\xfd\x9d\xa7\x0e\x1a\x85\x8c\x92\xf2\x45\xac\xfe\xe6\x4b\x71\xf3\xeb\x16\xe0\x4f\xc1\x39\x89\xe6\x93\x37\x99\x97\x01\xdd\x73\xab\xc2\x66\xc9\xfd\x4c\xff\x91\xa0\xfd\x04\xfb\xd8\xb1\x3b\x12\xe6\xf4\x50\x38\x57\x15\x84\x8e\x00\x7f\xa0\xd4\x63\x11\x9f\xd7\xde\x63\x25\xb6\x40\x04\x2b\x65\x42\x12\xe0\xdb\x8d\xa1\xad\xeb\xd2\xa7\x58\x9f\x77\xee\x4f\x75\x2d\x28\x2c\xa1\x11\x9c\x43\x1b\x17\xad\x0a\x02\x1e\xf2\xbf\x95\xe5\xac\x47\x04\xe6\x2d\x70\x39\xd0\xe6\x51\xe4\x56\xd6\x0e\x63\xba\xde\x40\x1c\xca\x77\xc9\xa8\x91\x63\x17\x4d\x50\x22\xd7\x45\xab\xdc\x76\xb9\xff\xe2\x54\x41\x55\x23\x5e\x30\x63\xe6\xe4\xae\xec\x44\xed\x5d\x8a\xb4\x08\xd9\x66\xfe\xc1\x20\x16\xc1\x30\x73\x0b\xbc\x55\x87\x32\x06\x5d\xa8\x00\xa7\x0c\xbf\xb0\xfc\xcc\xa4\x5d\x00\x28\xcb\xfd\x96\x32\xdd\xb2\xf0\xed\x12\xed\xae\x7b\x93\x0b\x10\x6c\x9d\x12\x85\xa4\xb8\x70\xde\x75\x07\x99\x9c\x74\x79\x3d\xd4\x97\x40\x87\x19\xc8\x98\xab\xe4\x9f\x7f\x33\xa3\x3e\x69\xb5\x0f\xa5\xaf\x94\x80\x06\x85\x66\xd1\xfd\xdf\x44\x82\xd7\x97\x04\xad\x8e\xf1\x1b\x88\xb4\x2c\xc6\x9f\xce\x8a\x55\x7b\x5b\xa5\x10\xe7\x08\xb9\x37\x51\x23\x03\x85\x68\x27\x0d\xe4\x07\x23\x2e\x95\x62\x1e\x2d\x04\x57\x0b\xec\x2c\x41\xec\xcf\xd8\x55\xb2\x1f\x0c\x9b\xba\xa2\x3b\x5c\x58\x15\xfc\x88\x8f\x7f\xbe\xd4\x82\xc3\x20\xff\xa1\xe0\x63\xe8\x7b\x55\xbc\x8f\x7e\xee\xa3\x74\x06\x3a\x9b\xe6\x5f\x7e\xd9\x22\x5b\xf6\xca\x34\xcf\xa3\x11\xb7\x9f\x3a\x25\x8c\x25\x2e\x63\x45\xed\x6a\xc8\x47\x48\xf4\x68\x07\xa5\x5d\x4b\xa4\x12\x66\x16\x9c\xd2\x62\xd4\xf7\x22\x79\xef\x0c\xaa\x77\xff\x44\x93\x35\x32\xbd\x13\x74\x75\x6c\x23\xec\x85\xf5\x5e\xfe\x9f\xc2\x33\x1f\x26\xf8\x81\x62\x9f\x80\xc2\x69\x2f\x7f\x53\xe4\xbc\x6f\x22\xef\xb4\x54\x57\xa2\x23\xf0\xd1\xc4"}, {{0x0f,0x8e,0x9f,0x35,0x26,0xb4,0xfa,0xea,0x92,0x76,0xf2,0x2a,0x17,0x79,0xe6,0xf8,0x27,0x09,0x80,0x8f,0x6d,0x0c,0x61,0x2a,0xdf,0xe3,0x2a,0x6e,0x8a,0x06,0x10,0x05,},{0xd4,0x8c,0x3f,0x0f,0xde,0xf3,0x82,0xd1,0xd8,0x03,0x13,0xe8,0x46,0xfc,0xa9,0x5e,0x41,0x81,0x76,0xbb,0x5d,0xfa,0x9d,0x39,0x8c,0x1d,0x21,0x24,0x77,0x6f,0x69,0x0a,},{0x2f,0x59,0xa2,0x93,0x60,0x73,0x91,0x38,0x34,0xeb,0x15,0xa0,0xe0,0xbc,0xb9,0xaa,0x80,0x40,0x89,0x46,0x8f,0x24,0xdd,0x1b,0x2d,0x37,0xa1,0x93,0x4a,0xe9,0xba,0x10,0x20,0xff,0x64,0xb7,0x2e,0xec,0x03,0x26,0x8d,0x0a,0x7c,0x01,0x2c,0x4e,0x79,0x63,0x00,0xf6,0xdf,0x7a,0xdd,0xa0,0x1c,0x8b,0xc5,0xe9,0x01,0x5c,0xcd,0xee,0x1a,0x00,},"\x0c\xcd\x37\xc4\xcf\xd8\xe7\x0c\xa3\xbb\x39\x46\xd0\x9d\x70\xd0\xf6\xa4\xb8\x1d\x6d\xfb\x07\x9d\x78\x73\x74\x80\x71\x58\x98\x80\x92\x73\x82\xf7\x43\x6a\x6e\xf8\xf5\x1c\x25\x54\x73\xdd\x01\xfe\xb5\x2c\x8e\xdb\xe4\xd3\x25\x57\x13\xe6\x8d\x64\x0f\x3d\xcf\x15\x8f\x2b\xfb\x9f\xbe\xcf\x71\xf0\x71\x9d\xfe\x8c\xe6\xb6\x01\x28\x1b\xa6\xc2\x0a\x56\xb4\xf8\xe7\xca\xa4\xaa\x9f\x86\x8f\xbf\xc5\xe4\x32\x1c\x22\xd6\x5f\x03\x82\xc4\x89\x6b\xf9\xbe\xbe\x35\x46\x94\x9e\x81\x85\xa4\xd8\x17\xe4\x5b\x5d\x12\x93\x95\x38\x21\xbd\xd9\x8e\xc2\x59\xf6\x4a\x3d\xe5\x38\x65\xb1\x49\xea\x01\xc8\xf6\x83\xec\xda\x61\xda\x5d\xc1\x0e\x7e\xbd\xdd\xfe\x74\x84\xf5\xeb\x10\x31\xb7\x91\x65\x87\xca\xa3\x99\xa0\x6b\x6f\xea\x4c\x5e\x6e\x0b\xe6\x50\xfb\xdf\x06\xc1\x03\x6d\xf2\xcc\x35\xf6\x2e\xa0\xea\x71\x3f\x52\x80\x9d\x77\xf4\x7c\x2e\x55\xc9\x23\x92\x48\x16\x80\xb6\x33\x20\x56\x22\x69\x13\xb0\xce\x88\xa6\xc5\x5a\x26\xbd\xb5\xb8\xba\xb3\xcf\x46\x95\xa8\xc5\x22\x30\x2c\x4e\xba\x37\xd3\x1f\xf7\x7e\x58\x30\x1b\xcc\xfc\x7c\x7b\xe8\x58\x0c\x63\x42\x68\x79\x95\xf4\x4a\xcd\x19\x09\x65\xae\x0d\x7b\xf0\x66\x95\x92\xb6\xad\x88\x74\x3e\xbb\x36\x0c\x73\xe0\x48\x4a\x23\xd2\xf9\xe9\x9e\x9e\xb0\x38\xdc\xbd\x87\xca\x9b\x1a\x49\x8f\x1b\x2d\x35\xfe\xdd\x7f\x8e\x1f\x7f\xd8\xca\x52\x64\x86\x91\x1e\x07\x6a\xea\xb4\x87\x7b\xba\xcf\x37\x8a\x28\x55\xf9\xc5\xac\x03\x91\x30\xdc\x69\x0e\x17\x7d\x67\xb2\x44\xcc\x8a\xd0\x32\x37\x9e\xf7\x1f\xe0\x5e\x9c\x86\x13\xd8\xf5\xd6\xea\x3d\x4e\x3e\x47\x22\x20\x29\xcc\x00\x42\x53\xbe\x47\xf8\x7f\xb5\xe3\x31\x4c\x48\x98\x13\x4b\x87\xac\xf1\x0b\x25\x38\xba\xd8\x97\xbd\xc5\x01\x2d\x8f\x97\x62\xc8\x71\xb6\x53\xd4\x00\xfe\xe0\xce\xed\x5e\xf6\xbd\xd1\x6f\xaf\x3f\x0a\xbd\xbd\x72\xcd\x0a\x12\x94\x05\x46\xf0\x99\x5f\xf1\x4b\x0f\x1b\xd5\x48\x56\xff\x74\xc3\x6e\xb4\xf2\x2d\x72\x87\xae\xfd\xc6\x09\x99\x8c\x1f\x41\xbc\xc3\xbb\x3a\x5f\xa4\x92\x34\xf4\xfa\x8e\x92\x9c\xd0\xf5\x54\xb3\x15\x39\x5d\xae\x87\x3c\x61\xca\x70\xe0\x41\x0c\x2f\xd5\xa1\x15\xd2\xa6\xff\x1f\x1c\x94\xb2\x7b\xa4\x50\xb8\x19\x4b\x21\xf0\x95\xc6\x1a\x5f\x21\x5e\x3c\x84\xf5\xd4\x3f\x0e\x73\x62\x86\xd3\x3b\x8c\x47\x81\x4d\xb9\x79\xf9\xdc\x00\x91\x98\x46\xbe\xe6\x85\x33\x7d\x99\x55\x5a\x24\x47\x2e\x6b\x00\xb3\xf4\xa1\x43\x11\xa6\xc7\xc9\x04\xba\x58\x89\xda\x6c\x1d\xdc\xc1\x11\x75\x80\xf5\xfb\xc4\x1f\x2b\x8a\x42\x68\xcf\x0e\x9f\xa5\xbf\x41\x25\x34\xc9\xe4\x05\x2a\xac\xb5\x04\xcb\x86\xe2\x14\x7a\xb8\x02\x3d\x58\x80\x0b\x76\x3f\x9a\xbf\x9d\x04\x40\x78\x8a\x51\xdf\xe5\xcb\xd4\x42\x30\xba\x52\x28\xf1\xf5\x96\x0e\xa3\xa4\xe4\x04\x4d\x36\xda\xf8\x11\xcb\xdb\xec\x5d\x69\x64\x63\xd8\xe9\x41\xf2\x72\x17\x56\x3b\xb4\x4a\x21\x18\xa4\xf5\xac\xd6\xe7\x94\xde\x17\xe0\x28\xcb\xde\xef\xde\xf2\xcb\xf0\x3d\xd3\x2e\x78\x99\xe6\x5a\x1c\xf8\x39\xf5\xd9\x0e\x1f\x8c\x36\x4b\x57\x7f\xe3\x10\x53\x53\xf6\x67\x68\xdb\xf7\xaf\x0c\x52\x1a\xa8\xa4\x9f\x7a\x22\x08\x2d\x88\xf9\x01\x49\x8c\x90\xb9\xd7\x77\x7e\xd2\xf9\xf0\xe8\xa5\x52\xd8\xa1\xfa\x5e\x96\x32\xed\x85\x32\x58\xc9\xc2\x15\xb6\xdb\xb4\x11\x1d\xcf\xca\x55\x4b\xfb\xc9\xbb\xa2\x2f\x88\xbc\x55\x55\x2c\x6d\x86\x25\x56\xd7\x41\xda\xd5\x9f\x21\x5e\x37\x28\x83\x46\xca\x7d\x7f\xd8\xc6\x5a\x38\x0d\x72\x0c\xaf\xf9\xef\xa1\x49\xf3\xfd\xa2\x32\xda\xa5\xb1\x2e\xf1\x1c\x0a\xf0\x86\x2b\xd0\x22\x9e\x07\x5a\x3c\x6b\x60\xef\x0b\xbb\x3d\xad\x7f\x29\x08"}, {{0xfe,0x7c,0xdc,0x79,0x66,0xd0,0xff,0xb9,0xc7,0x6f,0x4a,0x18,0xe7,0xf0,0xbf,0x90,0x69,0x0e,0xb7,0x6d,0xc3,0xd3,0xd5,0x08,0x84,0x64,0x8e,0x2e,0x39,0x37,0xd0,0x20,},{0xa1,0x2e,0xe9,0x81,0x2d,0x6a,0xf6,0xaa,0x48,0x79,0xfa,0x72,0xbc,0x0a,0x69,0x80,0x4e,0xa1,0xa8,0x5f,0x9b,0xc4,0xa2,0x6a,0x5b,0xa7,0xcf,0xbb,0x91,0x4d,0x0d,0xd9,},{0xb5,0x2d,0x03,0xfd,0xeb,0xcd,0x42,0x97,0x37,0xef,0x70,0x92,0x06,0x87,0x21,0x1f,0xbb,0x4c,0x04,0xf8,0x1e,0x35,0x5c,0xec,0x70,0x72,0xc5,0x05,0x41,0x75,0xd2,0xed,0x77,0xf3,0x8f,0x46,0x6f,0x00,0x14,0x22,0xda,0x8f,0xcd,0xf0,0x67,0xdb,0x14,0x51,0x00,0x7c,0xab,0x60,0x7f,0x04,0x9c,0x2e,0x26,0x07,0xb5,0x7d,0x44,0x71,0x3c,0x04,},"\xdc\xb9\x1c\xf1\x55\x46\x1a\x60\xdf\x07\xee\xc2\x9d\x98\x61\x6e\xd1\x72\x8b\x34\xef\xa9\xe1\xf7\x44\x5a\x91\x58\xa8\xf8\x8d\x7f\xaa\xae\x0e\x24\x72\x5a\xef\xf2\x63\xc3\xf7\x4f\x0c\x68\x4f\x18\x58\xf0\x5b\x69\x95\xd2\x84\x6b\x6a\x83\x2f\x67\x08\x5a\x42\x76\xd8\x66\x1a\xeb\xd3\xbf\xcc\x73\x18\x1f\x1f\x51\x02\x93\xb6\xde\x5e\x4b\xb2\x3f\xf2\xdc\xa1\xdf\x60\x8c\xb1\x4a\xe5\x22\xac\x4b\x51\xe1\xf9\xb9\x73\xab\x8b\xaf\xcd\x53\x4e\x71\xc5\x71\x81\xb1\x18\x96\xee\x10\x61\xfb\x36\x9c\xa4\xd2\x93\x9d\x1e\x57\x06\x0d\x9f\x4d\xb0\xa5\xc0\xb0\x7d\x52\x68\x7f\x15\x78\x17\xe6\x3e\x2f\xe7\xeb\xcc\x3e\x7c\x95\xef\xe0\x5b\x85\x99\x10\xc9\x5e\xed\xe8\x6d\x14\x39\x9e\x61\x62\x48\xa2\x8c\x24\xc4\x14\xdb\xb6\x93\xaf\x9b\xe4\x35\xa3\xa9\xcd\xc3\x3e\x0e\x2a\x58\x69\x18\xd9\x1b\x8a\x85\xce\xdd\x16\x12\xd7\xc1\xa2\x17\x92\xbd\xd4\x3a\x91\x5b\x15\x7e\x04\xbb\x3a\x44\xec\xbe\x23\xfa\x49\xcc\x55\xda\xab\xbe\xaa\x15\x5a\x73\x7f\x76\x5b\x8d\xdb\x0f\x3b\x15\xd4\xec\xf2\xce\xf7\x05\x4c\xa7\x3e\xc8\x7d\x91\x75\x2c\x2e\x99\x19\x5c\xdb\x19\x58\x84\x4f\x14\x4e\xda\xb8\x2a\x97\x54\x9f\xc9\xce\xc0\x8e\x87\x11\xcf\xf8\x63\xb6\x3f\xc2\x31\xa7\x7f\x76\x2e\x5c\xd9\xda\x9d\x59\x40\x92\x52\xe9\x9a\xb0\x4c\x42\xbc\x57\x09\x7e\x46\x4e\x3c\x6a\x48\xd8\x02\x41\xe6\x32\x5e\x3e\x40\x94\x98\x9b\x34\xc0\xe8\xb3\x2b\x1a\x78\x29\xd5\x4d\xf3\x2a\x05\x0e\xe8\x7d\x8f\x7c\x4f\xe3\xe4\xf4\xf7\x04\x9d\x1f\xee\xcd\xbe\xa6\x71\x08\x35\x0d\xb4\xe8\xed\xbe\x3c\x3f\xf8\xab\x2a\x25\xd1\x47\xb1\xc1\xc5\x82\x1b\x0f\x8c\x21\x04\x2d\x65\x5d\xb8\x31\x69\x1f\x59\x98\x3f\x27\xd2\xed\x1d\x49\x06\xc5\x44\xe2\x4e\x79\xbe\x68\x65\x3c\x9b\x22\x9a\x7f\xb6\x1e\xf5\x45\xba\xb1\x6e\x98\x81\xcb\x4d\x92\x65\xe2\x93\x59\x0a\x0b\xc2\xdc\x86\xba\xd2\x30\x07\xff\x40\xc9\x58\x61\x92\x3b\x49\x82\x41\xc1\x0d\x26\xbf\x48\x48\xf6\x2b\xa7\x38\x3f\x64\x9d\xc3\x8a\xf1\x84\x0d\x0d\xe9\x28\xa9\xbf\xee\x5e\x11\xb5\x14\x34\x16\x3a\x7a\xb1\xed\x53\x74\x15\xf1\xe9\x32\x85\xe3\x69\x92\x05\x72\x01\x58\xf9\x55\x7d\x86\x41\xed\x2b\xf4\x85\xb8\x21\x2c\x8f\x82\x66\x8b\xac\x3c\x22\x8e\x69\x24\xc1\x7d\x0d\x98\xf2\xe6\xd9\x23\x43\x71\xc4\x42\x5e\xb7\x58\x68\x9f\xdb\x0d\xc1\xce\xa1\x39\x4a\x28\x62\xe8\x7b\xb3\x8e\x62\x4c\x34\x79\x91\x68\x61\x32\x78\x22\x5f\xb5\xe1\x9c\x92\x47\xad\xa3\x55\x54\xf2\xc4\xad\xdb\xb6\x1d\x5a\x50\x2a\x70\x81\x27\xd6\xef\xbc\xa8\xf7\x35\x09\x0b\xdf\xdd\x88\xdb\x29\xfb\xd1\x4b\x69\xab\x12\x62\xf0\xc3\xe2\x6d\x26\x3a\x59\xc5\xae\x46\x39\x06\x53\x83\xd5\x25\x0b\x54\xcf\x59\x2b\xb7\xad\xfe\xaa\xe0\xd2\xfe\x81\x6b\x63\x81\xe8\x6e\xa2\xd1\xc7\x18\x13\xcb\xc3\xd8\xfe\x2d\x31\xde\x7b\x30\xfb\x6e\xc2\x29\x4f\xe4\x53\x6a\x36\xc6\xa1\x83\x5a\x71\x62\xab\x4b\xf8\x9d\x19\x46\x61\x19\x65\x7b\x0e\x46\x45\xae\xf5\x03\x50\x5b\x4d\x55\xdf\x97\x7b\xd2\xc9\x0c\x64\x40\x6f\x49\x70\xd5\xcf\xf2\x45\xb8\x35\x32\x2a\x6f\xbe\x23\x4e\x5e\xfb\xb5\xea\x45\xe8\xf0\xd3\x97\x3b\xe4\xaa\xa2\xaa\xda\xab\x07\x7d\x6c\x9b\x25\xbd\x44\x94\x40\x9e\x93\x47\x9d\x2d\x15\x07\xf6\x6b\xc8\xbe\xf8\x29\x99\xa1\x3c\x79\x43\xb4\x72\xb9\xe6\x1e\xc2\x9d\xeb\xef\xbf\x22\x41\x42\x3e\x0f\xaa\x42\xc1\xa3\x38\xa7\xa6\x13\x1d\xed\x93\x5b\xa0\x3a\x28\x66\x2e\x68\x59\x33\x68\xdd\xe5\x4b\x46\x2f\x2a\x5f\xb7\x46\x18\x5f\xf5\x50\x3e\x69\xba\x36\xbf\x16\xf7\x14\x58\xcd\xd0\x57\xe5\xc1\x72\x67\xf6\x74\x98\xd6\x52\x86\x0b\x46\x5e"}, {{0xf6,0xc9,0xab,0x5e,0xa7,0x5f,0x29,0x4e,0x8e,0x0c,0x07,0xc4,0xc0,0x9e,0xd8,0xee,0xa3,0x11,0x3b,0xdf,0xc2,0xef,0x75,0x9e,0x20,0xa2,0x64,0x57,0x16,0x04,0x10,0x8d,},{0xb1,0x2f,0xf5,0x5b,0xd3,0xec,0x42,0x61,0x0e,0xac,0xea,0x28,0xb3,0x13,0xa1,0x6e,0x19,0xc9,0xe8,0xb4,0x7c,0x2b,0x15,0x17,0x09,0x91,0xbe,0x08,0x8d,0x65,0xcf,0x63,},{0xa7,0xf9,0xd0,0x8b,0xa1,0x41,0x83,0xef,0x24,0x7f,0x2c,0x25,0xfe,0xcc,0x2b,0x83,0xed,0xa6,0xde,0x58,0x02,0x2e,0x46,0x6c,0xe7,0x8f,0xcf,0x50,0xf7,0x1c,0xe2,0x61,0x62,0x44,0x65,0x62,0xee,0xa4,0x5d,0x63,0xa2,0x1c,0x3b,0x22,0x56,0x1f,0xd4,0x68,0x00,0x58,0xac,0xb8,0x25,0x40,0x7a,0x15,0x40,0x8f,0x27,0x13,0x61,0xa1,0x46,0x0f,},"\x71\x62\x3b\x39\x74\x3e\x39\xc7\xe0\x86\x38\x80\x6d\x46\x8a\x1a\x8a\x6f\x35\xc2\xae\x38\x8e\xef\xc2\x73\x74\xbb\x52\x53\x88\x14\xc4\xb3\x6c\x9b\x8e\x38\x9a\xd8\x31\x83\xde\x02\xa1\xbb\xd0\x32\x57\x34\xe4\x61\x87\x54\x09\x23\x37\xd3\xe7\xdc\x12\x56\x92\x8e\x35\x28\x87\x0c\xa7\xf0\x06\x13\xa2\x5b\x71\xbb\x15\xd1\xd9\xea\xaf\xf9\xf2\x26\x9b\x71\xc1\x97\x69\xe0\x03\xce\x84\x56\x14\xb2\xec\x95\xed\x28\xca\x85\x5b\x52\x21\xd4\xcb\x80\xa6\xca\x94\x66\xaa\x33\xe2\x51\x0d\xdf\xf7\xdc\xe1\x86\x15\x9d\xa7\x0f\xc8\xb1\xfb\xac\x12\xa2\x6e\x1f\xc0\x94\x22\x76\x89\x2a\xd6\xe9\xb0\x03\xf5\x69\x59\xbd\x31\x3a\xf2\x89\xe7\xa0\x53\x2a\x66\x4b\x76\xb9\x6b\x91\x98\x54\xe0\x65\x0c\xb8\xc5\x2e\xc4\xc5\xfb\x50\x53\xaf\x2f\x0c\xf8\xc0\xf2\x2a\x52\x3f\x9e\x2c\x64\x19\xdf\x8d\x0b\x71\x4e\xe3\x77\x68\x00\xeb\xfa\x70\x77\x60\x84\x66\x7d\x6d\xcf\x54\x1f\x14\xcf\x16\x62\x62\xe0\xf6\x4c\x42\x76\xae\x28\x88\x5e\x6c\xfd\x09\x7b\x70\xc0\xd6\x18\x6e\xa5\xdb\xd0\x33\x32\x3c\x98\x76\x13\xda\x08\x64\x5d\xe0\x72\x08\xba\xe1\x2a\x17\x8d\x8f\x7f\x65\x0a\x25\xaf\xbd\x70\x1c\x85\xa1\xba\x63\x9e\xf9\xf1\x21\xc4\x0c\x5c\x12\x9a\x47\x37\x34\x33\x86\xa4\x81\x83\xff\x3c\x59\x13\x89\xd8\x9e\xcd\xa5\x26\xcf\xfb\x26\x74\xf1\x7b\xb1\xc2\x30\x90\x55\x4b\x13\x40\x84\x97\x96\xa6\xd4\x44\x46\x0b\xb4\x19\x42\x7e\x93\xe6\x58\x5b\x0f\x4f\x06\x5a\xd8\x7e\xe6\xed\xf5\x4b\xe6\x18\x8a\x1d\xd5\xac\xe1\x36\x4d\xef\xa5\x61\xf7\x4e\x26\x76\x9c\x9b\x29\x1e\xe7\x55\x52\x76\x50\x1c\x6a\x49\x08\x0d\xa0\x92\x4f\x37\x92\xc2\xa7\x28\xa5\x20\x07\xb1\xc0\x7c\x95\x57\x8f\xed\xaf\x40\x39\x96\x23\x9e\x9c\x55\xa9\xa4\x4c\x3d\xfc\xc3\x7c\xdf\x03\xfb\x48\x5d\xb5\xa0\x8d\xff\x15\xa7\xa4\xf7\xb7\xf1\x54\x74\x2e\x84\x31\x56\x4d\xc1\x7d\xbd\x43\x2e\x10\x33\x7c\x22\x76\xfc\xfd\x9d\x70\xf7\xc3\xd5\x70\x39\x3a\x0c\x19\xf6\x40\x51\xc7\x3a\x87\x0e\x20\x55\x84\x10\x65\x31\xd1\xfd\x2a\x1d\xd1\xc9\xd0\xfc\xe1\x4f\xfa\xaa\x07\x7b\xb7\xe2\x60\x25\x1e\xed\x6c\x62\xbc\x6e\xdc\x24\x22\x51\x94\x40\xc2\x24\x4e\xba\x38\x40\x46\xb0\xed\xda\xa6\xcf\x2c\x1c\x7e\xee\xbf\xcd\x78\xfc\xae\x18\xb8\x22\x90\x55\x2b\x59\xc0\x46\x3d\xc4\x50\x61\x8b\xa6\x7c\x77\x0d\xec\x0e\x22\x9b\x84\x60\x93\x6c\xa8\x19\x56\x2b\xcb\x36\x96\x9c\x8f\xf7\x0b\xf1\x13\xc1\x16\x71\xe0\x0b\x94\x13\x55\xbf\x01\xad\x54\xb0\x5c\xfe\x2a\x04\x8b\x38\x72\x8c\xbd\xd1\xb4\x98\x09\xe1\xf2\x07\xac\xa3\x09\x8d\x99\x42\xee\xc4\x7d\x6c\x9d\x41\x3b\x37\xc9\x14\xfe\xdd\x38\xac\xd5\xff\xe4\x96\xca\xc7\x57\xc2\xef\x8b\x77\xbd\x84\x03\xd1\x4b\x1f\xc9\x8a\x90\x3f\xe2\xb9\x79\x46\x82\x33\xa7\xf2\xae\xd6\xf8\xd5\x09\xd8\x74\xe1\xdc\xe0\x51\x49\xaf\x9d\xf3\xfe\x45\x95\xc7\x1e\x8b\xc4\x63\xde\xe9\x38\x4d\x5e\x05\x05\xd2\xa6\xb0\xa2\xb8\xa1\xed\x62\x16\xaa\xae\x9d\xcc\x76\x02\x48\x7a\x4c\x08\x51\xfd\xf0\x96\x29\xc1\xe9\x91\x18\x80\x9a\x95\x44\xa6\x57\x7a\xf9\xf9\x15\xd1\xe6\x5d\x81\x62\x20\xc4\x8c\x84\x90\xfa\x9b\x70\xda\x42\x2a\xd6\x80\x02\x23\xd6\xd8\xc3\x40\xf9\xea\xb2\xcc\x7e\x14\x93\x62\x12\x4a\x30\x0b\x40\xcb\xb8\xc0\xa6\x5d\xa3\x01\xdb\xba\x93\x1b\xa5\x64\xf3\x59\x73\xca\x8b\xf2\xd1\xed\xb5\x6c\x19\x46\x61\x95\x5b\x3b\x68\x38\x1f\xa1\x5d\x4b\x8d\xc6\xad\xa1\xa5\xce\xbd\xa3\xa4\xcc\xc5\x51\x23\xe0\x05\x7f\x4f\x82\x10\x41\x93\x7d\xd5\x49\x20\x9c\x82\xe1\x16\x57\x0b\xc9\x08\xa2\x8e\x32\x99\xa9\x44\x14\x43\x49\x8f\x74\xb3\xcc\x88\xe1\xa6\x2d"}, {{0x43,0x10,0x3d,0xf0,0x1a,0x48,0xa0,0x3c,0x57,0xf3,0x2f,0x52,0xd7,0x0c,0x68,0x49,0xee,0x44,0x58,0x0b,0x2a,0xb4,0xee,0x72,0xd5,0x48,0xd8,0x48,0x13,0x4f,0x7c,0xeb,},{0xa3,0xcb,0xe0,0xd6,0x4b,0x05,0x60,0xbc,0xb5,0xae,0x00,0x90,0x01,0xe3,0x14,0xd9,0xec,0x90,0x79,0x01,0xdd,0x74,0xa8,0x04,0xa0,0x05,0x90,0x22,0xed,0x9c,0x6d,0x04,},{0x19,0x54,0x47,0xbe,0xb1,0xde,0x4a,0x7e,0x36,0xea,0x89,0xa6,0xce,0x3c,0x99,0xbc,0xc8,0x94,0x11,0xdf,0x5e,0x0b,0x15,0xf7,0xba,0x0b,0x1d,0x11,0x0c,0x45,0x6a,0xbc,0x6b,0x3f,0x5f,0x1d,0xa6,0x10,0x6e,0xd8,0x87,0x86,0x4b,0xa5,0x6a,0xab,0x46,0x6a,0x8a,0x63,0xb3,0x35,0xcf,0xcf,0x4c,0x64,0xd6,0x5c,0x0e,0x6f,0xb4,0x80,0xb4,0x01,},"\x73\x8c\xbf\x06\xd0\x0d\x4d\xcd\x5e\x5f\x24\x3a\x1c\x18\xdd\x5e\xc2\x02\x78\x88\x46\x95\xa1\xcf\x3b\xea\x67\xbb\x5b\x05\xdd\x7e\x60\xa2\xa2\x4f\xd3\x25\xbe\x6b\xf4\x6b\x46\x28\x73\xec\x90\x7f\x9d\xe8\x8d\xc2\xc7\x62\x62\x0b\x7e\x0e\xf7\x27\x65\xd4\xbd\xa6\x62\x45\x49\x93\xc8\x28\xa1\x74\x6e\x9e\xd8\xd1\x9d\xff\x43\xc4\xc4\x85\x27\xac\x84\x5f\x21\x86\xa4\xad\x7c\x1d\x99\x2a\x16\x24\x5c\xd5\x73\x07\x3e\x09\x40\xdc\xee\xd3\x68\x11\x0b\xb5\xfd\x0a\x4c\x88\x34\xce\x88\xa7\x71\x25\xb9\x14\x73\x93\xc8\xb5\x8c\xb1\x6e\x5e\xbd\xc1\x82\x44\xeb\xfa\x48\xba\xba\x46\x97\x3f\xdc\xd4\x85\xb1\xb2\xe5\xf3\xb0\xe7\x09\x92\xcf\x19\x99\x58\x06\x38\xd8\x7f\x1f\x5b\x27\xc4\xd7\xf9\x1d\xec\xf3\x7d\xe2\xe7\x34\xe3\x19\x55\x35\xc6\x31\x08\x2b\x3e\xba\xa8\xce\x30\xa9\xc2\xc2\xdb\x01\x6d\x7d\x35\x47\xe6\x21\x61\x88\x50\xe2\x20\x40\x03\x8d\x0f\xe0\xfa\xea\x2f\x9b\xf5\x10\xb6\x82\xc4\xfd\x14\x75\x0e\x89\xb4\xc1\x99\xef\x0c\x99\x05\x00\x54\x3e\xee\xab\x5f\x0b\x50\x7a\x31\x31\x99\xc2\xa2\xa0\x26\x2d\x6d\x81\x4c\xbc\x09\x33\xc5\x92\xe2\x56\xc3\xe2\x9d\x52\x4b\x06\x6e\xa5\xa4\x54\x33\x61\xa1\x04\x50\xe0\xaa\x67\x5c\x61\x40\x8f\x30\x7f\x26\xee\x58\x96\x9d\x63\x27\x8f\x13\x5b\x7d\xcb\x66\x6b\x93\xf2\xca\xcf\xd8\x38\x73\x47\x1e\x97\x4a\x28\x6b\x09\x02\x3f\x50\x15\xfa\x1a\xaf\x18\xbf\xbf\xa5\xf7\x43\x85\xd0\xdf\x6b\x9a\xdd\x51\x6f\xfc\x0c\x31\x13\xe3\x7e\x09\x78\x38\x64\x6a\xc9\x30\x54\xff\x4d\x96\x02\x06\x67\x44\xba\x33\x96\x95\x3f\xd7\x81\x68\x13\x01\x70\xbb\x27\x5c\x15\x2b\xdd\x36\x6f\x73\x06\x5c\x0a\x7a\xd7\xad\x00\x75\x8c\xb9\x9a\x7a\xc1\xb7\x80\x9d\x26\xdf\xaa\xc7\x58\x46\x82\x01\xee\xb6\x0d\xea\x36\x8c\x33\xf2\x57\xaf\xe2\xf1\xb4\xc0\x2e\x37\xba\xfe\x40\xf5\xd7\xfd\x40\xc8\x7d\x1c\x56\xa0\xcb\x28\xe9\xd2\x83\x69\xa3\x92\x4b\xce\xf8\xb6\xd9\x99\xdc\xf4\x29\x4d\xd8\xc4\x14\x3d\x75\xc6\xc2\x5b\x5a\x45\x44\x48\x8d\xde\x72\x52\x48\xc7\x8d\x93\xc1\x5b\x81\x5b\x01\xcb\xd0\xf3\x1d\x1b\x00\xac\x04\x83\x7e\xf8\x5b\x40\x03\xfc\x96\xd4\x45\x7a\xc5\xa0\x23\x62\x3e\x67\xb6\x6d\xa4\x70\x0a\x08\x59\xf8\x3f\xdc\xcd\x3c\x7a\xae\x09\xde\x09\xa0\x57\xe0\x0d\xb4\x4a\x2a\x6a\xac\xaa\x21\x74\x6a\x49\xb8\x22\x46\x89\xa5\xcc\x18\x54\xba\x3d\xc4\xaa\x2a\xa3\x45\x24\xe7\xa5\xa8\x9d\x11\xee\xa3\x56\xaa\xea\x5e\xf5\xfb\xf5\x42\xc9\x9f\x54\x4d\xb9\x40\xf5\x08\x68\x38\xee\x2a\xb2\x18\xb8\xd3\xf2\xe1\x07\xd0\xb2\x9d\x4b\x04\x83\x0e\xed\x79\xc0\x76\x8e\x02\xc2\x84\x4b\x3c\xba\x32\x68\x95\xf4\xab\x38\xa3\x99\x4b\x83\xab\x30\x60\x0f\xf5\x11\xcc\xb5\x95\x99\x2f\x8c\xc0\xd2\x95\x48\x07\x97\x2d\xa3\x65\xb0\x6f\xbd\xab\x53\x9b\x2e\x03\x59\x8b\x34\xe5\x3c\xfc\xf9\x39\x90\xb9\x7a\xac\x1d\x32\x97\x83\x36\x6d\x45\x1f\x97\x2b\x8d\x8a\x00\xb6\xb8\xec\xdb\x37\x27\x96\x44\xce\xc1\x44\x7c\x09\x98\xee\x4f\x70\x90\xf3\x4c\x9c\xc8\x53\x05\x90\xca\xe7\x65\x36\x0a\xad\xb0\xab\x31\x35\x00\x49\x41\xc9\x23\x02\xcb\xb2\xb3\x50\xa1\x4e\x8f\x30\xaf\x53\x25\xc2\xb4\x38\x00\x5e\x3a\x9d\x45\x85\xe6\x32\x65\xc3\x27\xba\x72\x57\x54\xb3\x32\x56\x91\x7f\xb9\x65\xae\x9f\x02\xed\x21\x26\xb4\x81\x47\x3d\xc0\xe9\x31\xc2\x52\x2b\xf0\x0f\xe6\xa2\xec\x95\xc7\x92\x24\x7b\x1e\x03\x39\x61\x12\xf7\x83\x07\x0e\x2f\xe6\xc2\xcb\x98\x22\x50\xd1\x3f\x2d\x54\x60\xc7\x44\xfd\xe4\x53\x23\xe6\x31\xcc\xcb\x54\x0c\xd7\x25\xf2\xc5\x5a\x70\x58\xf2\x30\xe8\x2b\x79\xf3\x66\xaf\xcb\xb0\x25\xb4\x92\x55\x43\x95"}, {{0xf9,0x13,0x9e,0x57,0x9f,0xa9,0x6e,0xbd,0x62,0x87,0xdb,0x3b,0xab,0xcd,0xa6,0x0f,0x92,0xe7,0x31,0x53,0x56,0x6f,0x92,0x4c,0xb5,0xde,0x04,0xde,0x44,0x93,0x48,0x1e,},{0xc0,0x6c,0xe3,0x35,0x53,0x3a,0xf8,0xd8,0xf3,0x37,0xf2,0xb3,0x8e,0x0a,0xaf,0xa2,0xce,0x9b,0x27,0x22,0x3c,0xd9,0xdd,0xc5,0xef,0x32,0x02,0x7f,0x04,0x88,0x9b,0x7f,},{0x05,0x1d,0x8d,0x7f,0x0b,0x68,0xd2,0xee,0xc7,0x2c,0x81,0xad,0xfc,0xfb,0x31,0xae,0x85,0x58,0xf6,0x0a,0xb6,0x3c,0x9f,0x56,0x52,0xa8,0xdf,0x63,0x8f,0x66,0x6f,0x1e,0xbc,0x0c,0x6e,0x0b,0x41,0x19,0x53,0xbc,0xda,0x6b,0x51,0x51,0xb2,0xb9,0x3a,0x39,0xe3,0xc5,0x33,0x0a,0x85,0x73,0xe1,0x68,0x79,0x22,0x72,0xab,0xd3,0x6c,0x81,0x0a,},"\xb3\x30\x76\x4d\xdc\x62\x8e\x4a\xd6\x7a\xa4\x98\x2a\xe8\x6d\x45\x81\x07\x1c\x19\x3e\xc3\xc5\x8f\x81\x3d\x79\x21\xb8\x4d\x2a\x54\x56\x2b\xd8\x74\x17\xae\x1d\xe5\x90\xa1\xa4\x8c\x4e\xc7\xd5\x56\xad\x93\x1d\x65\xc0\x54\x3f\xdf\x06\x07\xc7\x49\x85\x9e\xe1\x2f\x99\x52\x02\x0c\x19\x5c\xf8\x74\x60\x95\xe1\x08\x7c\xc6\xc3\xc8\xef\x9d\x24\x05\x25\x60\xce\x81\x3d\x61\x39\xb7\xa7\x5c\x8f\x4b\x8e\xa3\x0a\x9c\x4a\xb8\x88\xd0\xa6\x34\x1c\x99\xab\xd3\x5e\x09\x03\xbf\xe5\x6c\x93\x15\x23\x40\xc4\x12\x76\xd7\xf2\x4e\x09\x12\xb1\x2a\x4d\xb3\xd7\xee\x44\x84\xdf\xa5\x3a\xfc\x0b\x1a\xea\x14\x09\xd1\xe0\x32\x8a\xa1\xc8\x60\x41\x27\xca\x2e\xb1\xa5\xe8\x1b\xf3\x1f\x8c\x7a\x51\xc6\x05\x2c\x53\x4e\xfe\x6b\x3d\x0e\xe7\x4f\xf5\xa9\xb1\x1c\x61\x57\xe3\x64\x77\xef\xa9\x38\x2f\x57\x51\xbe\x8c\x8c\x64\x54\xc4\x46\xd6\xf8\xdc\x7e\x92\x95\x25\xcc\x3d\xe7\x8c\xb1\xba\x4a\xba\x9b\xd4\xbe\x15\x26\x10\x43\x75\x82\xc9\x65\xee\xa4\x8c\xbd\x4c\xaa\x6f\x30\x8f\x85\xf4\xf8\xd0\x06\xa0\x42\xf6\x19\x20\x07\x62\xe1\xbb\x9b\xa4\x22\xe6\x54\x75\xb3\x3a\x94\x94\x29\x8c\xfb\xb7\x5a\x15\x2b\x36\xd2\xa0\x55\x01\x80\x77\x05\xb9\x52\x76\x53\x50\xcd\x14\x14\x1d\x35\xd4\x98\x66\x92\xd6\xc3\xbc\xfc\x6d\x61\xdf\x00\x52\xa6\x20\xaa\xb8\xcc\x13\x20\x5e\x75\x4c\x16\xf9\x3e\xca\x79\x20\xbb\xea\x51\x57\xef\x11\x2f\x0b\x64\xc1\x05\x4f\x90\xa5\xdd\xc1\x75\xa8\x9e\x29\x24\x2f\x57\x64\x6e\x74\xcc\x88\x5e\x81\xa1\xcc\x14\x4c\x3d\x78\x2d\x11\x52\xa9\xe4\xcf\xe7\x6c\xb3\xff\xab\xe7\xdb\xe6\x03\xfb\x38\x69\xec\xa8\x69\x96\x98\x70\x9c\xc8\x7f\xc9\x61\xc1\xe2\x99\xcf\xca\x22\xe3\x24\x2e\xae\x78\x8c\xff\x11\xbf\xca\x61\x02\x67\x45\xf4\x97\x62\x25\xb2\x6e\xe2\x00\xc4\xf1\x91\x0c\x4b\x83\xdf\x5c\xe4\x6e\xf4\x87\xd7\x48\xd9\xc4\xc5\x02\x14\x1b\x78\x74\xca\xf4\x1e\x5a\x29\x7b\x24\x8c\x2b\xac\x69\x90\xa1\x5b\x07\xb4\xcf\x81\x0e\x59\x28\x74\x42\xd9\xa3\x69\x6c\x02\xe8\xd7\x32\x4d\x3c\xf7\x30\xdd\xa5\x40\x53\x6b\xeb\x13\xcf\xde\xae\x61\x80\xdd\x74\x84\x83\x2d\xfa\x94\xe9\x4a\xa6\xcb\xa1\x17\xaa\xe1\x72\x70\xf4\x8f\x93\xb2\xf9\x8a\xe9\x58\x17\x18\x16\x3f\x44\x63\x54\x6c\x0a\xe0\xf2\x79\xc3\x6b\x92\xbe\xe6\x6f\x1c\xa2\xd6\xa4\xf7\x26\xd2\xdf\xee\x0b\xc1\x1c\x1d\x8a\x1f\xa6\x2c\x3c\xc8\xab\xa2\x66\xb9\x87\x59\x28\x6c\x10\x68\x48\x3b\x23\x76\xb4\x03\xc8\x87\xfb\xb6\x57\xdc\x0f\x25\x5d\xea\x90\xdb\xd2\x33\x08\xf7\xe0\xe8\x42\xb4\x98\xa8\xdf\xc7\xc9\xcd\x5a\xef\x0e\x87\xd5\x6b\xe4\x0d\x50\xfc\x1d\xd4\xc0\xaa\x7d\xee\x55\xae\xbe\x4d\x6b\x6a\x52\x05\x39\x62\xb8\x7b\x0f\x2e\xe0\x9a\x90\x81\x61\x55\x33\x3d\x5c\x57\xa1\x47\x24\xe0\x01\xbc\x3d\xed\x17\x84\x3b\x76\xe2\xc4\x7a\x17\x63\x39\xc8\xde\xfc\x54\xb5\x5b\x23\x58\xae\x7d\x01\xb0\xf6\xe0\x8f\x31\x21\x6a\xe9\x03\x40\x69\x41\x68\xa5\xa7\x9e\xe8\x83\xea\x78\x58\x00\x7d\x17\xc3\x73\x59\xc9\x9d\x65\x97\xef\xe4\x60\xc1\xa2\xf7\x73\x8a\xc3\x2c\x5e\xb5\xe3\x9e\x50\x0c\x49\xc0\xdf\xf9\xc4\x65\x9e\x8c\x50\xcc\x5c\xa7\x9d\x8b\xa4\xe5\x97\x2d\x67\x22\x54\x68\xfb\xa6\x41\x67\xa6\xb2\xc6\xf3\x68\x93\x5c\x7a\x04\x9d\x35\xd3\x55\xc7\x67\x25\x20\xd3\xc9\xe4\xe4\x3c\x67\x1c\x3c\xb8\xde\xe2\x59\x04\x74\x95\xde\x0f\x56\xdd\x71\x91\xd5\xbd\x4b\xbd\x29\x51\x7e\x36\x47\x92\xff\x89\xd3\x37\x99\xb6\xe7\x81\xc2\x01\x93\xf5\xa3\x16\xfb\x40\xde\x74\xfe\xe2\xac\xc2\x5e\x47\xf5\x12\x21\x4d\xe3\xb1\xe9\xb3\x82\xa8\x69\x29\xc1\x57\x3d\x37\x24\xc2\x50\x17\xc0\xe5"}, {{0xc8,0xee,0x95,0x4d,0xb5,0xa1,0x1b,0x29,0x2e,0xd9,0x77,0x64,0xfa,0xe6,0xb2,0x83,0x05,0x1d,0xb5,0x7d,0xcd,0xc0,0xaa,0x0d,0xf5,0x39,0x3b,0xb6,0x0c,0x11,0x2e,0xd3,},{0x5c,0x2f,0x81,0x82,0x4e,0x99,0x75,0xdd,0x7e,0xa3,0x53,0xbc,0x66,0x80,0x7d,0xed,0xc7,0x61,0x03,0x49,0x79,0x4e,0x2f,0xc0,0x8e,0x5a,0x31,0xe0,0x02,0xe3,0xfe,0x07,},{0xf3,0x07,0x7a,0x75,0x10,0x1e,0x12,0x1e,0x5c,0x3e,0x77,0xd8,0xed,0x97,0xb5,0x78,0xd2,0x39,0xbd,0x42,0x18,0x03,0xd3,0x45,0x5b,0x56,0x54,0x40,0x5a,0x4c,0x58,0x6a,0x60,0x92,0xe1,0x3a,0x85,0x29,0xba,0xce,0x46,0x8a,0x30,0x57,0x84,0xb3,0x73,0xe4,0x33,0xfe,0xe4,0xa3,0xdf,0x89,0x56,0xbe,0xfa,0x01,0x2f,0xd8,0xa8,0xee,0xd1,0x0c,},"\x7b\xa3\xfb\x56\x83\x15\xaa\x81\xe2\x1f\x19\x77\x80\xed\xc2\xc6\xea\x26\xd8\xd0\x6a\x43\x78\x91\x2f\xca\x23\x01\xcf\x1e\xab\x3d\x80\x3c\x84\x69\xde\xdd\xf3\x76\x70\x3d\xdb\x7c\xe0\x6a\x77\xda\xb2\x0e\x02\x34\x4f\xad\xcc\x50\x02\x2a\xb3\xc7\x13\xcd\x03\xc1\xda\xa9\x3f\x1c\x7e\xa5\x72\x62\x9f\x61\x0b\x5e\x3c\x51\x41\x1b\xb8\xc1\x96\x94\xbb\xce\x90\x3c\xac\x47\x05\xf9\xb5\xdd\x0f\x47\xbc\x5d\x0a\xa3\x25\x3f\x90\x88\x70\x29\x90\x27\xff\xbd\x34\x49\xee\xba\xd4\x53\x32\xb5\xd0\xc4\xf5\x33\xdb\xed\x18\xa9\x9a\x24\x98\xb9\x16\x4e\x24\x5f\xb6\x5c\x0a\xfa\x0b\x05\x37\x03\xa0\xcf\x95\x94\x0a\xc7\xa0\x19\x5d\x4f\x70\x46\x60\x9c\xf0\x43\x71\x33\x87\x06\xb9\xb1\x98\x6c\x0f\x11\x81\x75\xd2\xcd\xfc\xe7\x4a\x6f\x88\x65\x98\x25\x85\x4e\x94\xec\xe5\x8f\x51\x57\x63\x6d\x62\x35\xb7\x6d\x32\x74\x5a\x2a\x81\xa9\x67\x1a\x8f\x86\x02\x7b\xa9\xe0\x17\x63\x88\x8f\xc1\x71\xce\xf7\xc4\x51\xc3\x60\x72\xbc\x74\x99\x83\x9d\x43\x1c\xf1\x8c\xd7\xc6\xc9\xfb\xa3\xaa\x71\x2a\x05\x43\x28\xcc\xd6\x2b\xe4\x82\x0a\xbd\x5e\x78\x21\x62\x76\x46\x11\xd4\x53\x9b\xa2\xce\xbd\xc2\x09\xb3\xf4\xe4\xb6\x9c\x3d\x64\x07\x3e\x92\x0d\x21\x52\x14\xfb\x0f\xda\x44\x18\x5a\xad\xa5\xc3\x61\x27\xa1\x5b\xa1\x5c\xa2\x8a\x3a\xd0\x86\xe9\xd0\x33\x66\x86\x9c\x60\xc3\xfb\xce\xbd\x86\x9d\x2e\x40\x64\x3e\x83\x3f\x89\x48\x03\xf9\x80\xa2\xda\x7e\xa4\xe5\x9c\xe4\xd7\xc0\x6f\xd2\xaf\xf0\x87\xee\x7b\xcf\xdd\xaa\x3b\x32\x81\x7c\xe6\x3a\x63\x58\x7d\xba\xfe\xf3\x80\x01\x3a\x6f\x1e\xe3\x73\x4b\x94\xca\x3d\xf9\x64\x4d\xd0\x43\x43\x02\xec\xb3\x24\xaf\xe3\x5f\x46\x5c\x9c\x1c\x93\x1b\x27\x29\x4f\xc6\xee\x02\x72\xde\x22\x42\xae\x90\xd7\xf2\xe0\x67\x02\x7e\xf8\x64\x2e\x8f\x17\x1e\xd8\x80\xff\xab\xce\x8a\x20\xa1\xb3\xe3\x39\xad\x4e\x3f\x1a\x90\x01\xf2\x0f\x90\x02\x61\x88\xfd\xe3\x4b\x21\x7a\x6e\x26\xaa\xff\x18\x42\x2b\x7f\x84\x3d\x0f\xdd\xa3\x21\xc3\x19\xc7\x78\xf2\x31\x37\xf2\x0c\xcc\x1b\xda\x18\x90\xe5\xbc\x91\x6a\x54\x56\xd0\x68\xd3\x7b\x5a\xcc\x63\x47\x72\x0c\x56\xa5\xa4\x91\xbc\x34\x8d\x6c\x84\x8a\x9c\x8f\xec\xfe\x58\xc9\x2b\x1f\x30\x2f\xe1\x49\x19\x71\x8c\xd5\xe7\x8b\x7f\xd6\x01\xd0\x9d\xc0\x1e\x69\x04\x86\x1e\x8d\x68\xb3\xc5\x75\x35\xb6\x13\x66\x76\xcb\xc6\xe8\x39\xaf\x0d\xd7\x39\xdb\x89\xa7\xab\xd9\x13\xfd\xf6\xb0\x0e\x9c\xa0\x26\x02\xde\x6c\xa0\xaf\xd0\x91\x3d\x99\x2f\xba\xa8\xff\x82\x2b\x9d\x9b\x09\xdd\xa7\xa2\x9b\xe9\x19\x10\xd8\xfa\x3c\xaa\x2a\x5e\x51\x83\x46\xc1\x67\xc9\xf5\x19\x41\xcf\x73\x53\xf3\xf3\x4c\x1d\xab\x33\x48\x5d\x0a\x8c\x19\xda\xf9\x51\xfd\x3e\xf2\x0d\x0b\x11\x9d\x80\x38\xdf\x90\xc1\x14\xa2\x5a\x5b\x93\xae\x40\xec\x44\xb9\xa5\xd2\xbc\x1c\x65\x17\xc6\x82\x50\x0d\x4c\xdc\x19\x71\x42\xbe\xc3\xaf\x82\x32\xc0\x71\x42\x8d\xc5\x4c\x0d\x30\x45\x42\x72\xe7\x33\x6b\x0b\x58\x88\xa6\xe8\xfe\xcd\xe8\x59\xe2\xac\xcb\x7f\xb0\x94\xac\xc5\x4f\xfa\x48\x1f\x76\x23\xd9\x44\x69\x1f\x04\xfb\x36\x13\xa9\x95\x49\x80\xf1\x7e\x2a\xd2\x17\x3d\x68\xcf\x0e\xc1\xb6\x7d\x8a\x91\xd6\xec\x82\x94\x6b\xcf\x05\xcb\x90\x68\x1a\x71\x62\x7b\x59\x02\x38\x33\x4e\x3d\x5a\xb9\xda\x6a\x08\x9b\xd7\x26\x24\xdf\x90\x74\xcd\xd2\x30\x9e\x04\xdf\xca\xe0\x32\x81\x2f\xe8\x4f\x9d\xb8\x82\xcd\xea\xae\x69\xee\x5d\xaa\x5a\x66\xff\x42\x7f\xc4\x52\xed\xd0\x76\x9b\x6a\xab\xcc\x13\x9d\x0f\x70\xaf\x8b\x97\x43\x0e\x64\x4f\x58\xa4\x12\x87\xa9\x3f\x63\x1d\xed\xa8\x2c\xa0\x71\x6d\x79\x75\x4c\x5c\x50\x3e\x52\xa6\x65\xda"}, {{0x6d,0xbc,0x55,0x9e,0x4a,0xb1,0x93,0xee,0xbf,0x70,0xc5,0xc3,0x2d,0x79,0x7b,0xe0,0x0b,0x73,0x11,0xe8,0xe6,0x69,0x1d,0xa9,0xaf,0xcc,0x18,0x72,0x91,0xf2,0x50,0x1c,},{0x38,0xa7,0x03,0x44,0x76,0xfb,0x93,0x82,0xf1,0x41,0x77,0x68,0xc4,0x21,0x62,0x95,0x1a,0x26,0x36,0x90,0x2c,0x38,0x98,0xc0,0x29,0xbe,0x27,0x8a,0xb4,0xc3,0x1f,0x31,},{0x31,0xf1,0x6a,0x7c,0xaf,0x2b,0x74,0xf6,0x5e,0x05,0x7c,0x93,0x33,0xa1,0xa2,0x63,0x3d,0xac,0x73,0x46,0x33,0x8f,0x79,0x85,0x10,0x73,0x0e,0xb8,0xd5,0xd3,0x25,0xfc,0x10,0x80,0xdd,0x5a,0xad,0x5f,0xce,0x05,0x34,0xe9,0x54,0x3f,0x3c,0x93,0x58,0x68,0x04,0x46,0x4a,0xf5,0x88,0x6e,0x86,0x44,0x12,0x9c,0x77,0xeb,0xaa,0x48,0x5f,0x01,},"\x88\xee\x23\x65\xf7\xcf\x9d\xe3\x3a\xcd\x53\x56\x49\x68\xb2\xdc\x7f\x73\x70\xb7\xe7\x03\x3f\x4c\x66\x3a\x88\xc2\x5f\x60\xf7\xf7\x11\xd6\x19\x08\xeb\xf1\xf5\xbb\x72\x83\x55\x53\xc8\xaa\x8c\x8e\x4f\xcd\xec\xd3\x79\x78\x23\x82\x89\xbf\x6c\xa8\x48\x76\xd2\x28\x21\x7a\x28\xd8\x1b\x0b\x45\x7c\x92\x2e\x91\xec\xba\x8d\x3e\x1d\x2e\x66\x59\xc2\xb0\xae\xa0\x51\xb9\xc2\xe0\x9c\x7d\xfe\xb5\x1d\x30\xed\xe7\x67\x57\x03\x41\xff\xac\x1e\xcf\x0d\xe2\x0c\x82\xd1\xe9\xed\x07\x75\xde\xac\x72\xda\x7c\x2d\xec\x23\x48\x65\xde\xc8\x3f\x67\x15\xe1\xc3\xc5\x9d\xe2\x03\x3c\xc2\x4d\x86\xbc\x2d\x31\xaa\x16\x64\x96\x86\xed\xe0\xdb\xbd\x89\x64\xc3\xa6\x4a\x3d\xca\x55\x88\xd7\x24\x8b\x1f\x24\xdf\x8d\x75\xf0\x9a\xac\x62\xc0\x78\x28\xca\x43\x1a\x3a\x2d\x77\xa6\x0c\xc9\x3c\xfa\x34\x95\xca\xbe\xb1\x90\x4e\xd5\xb5\x63\x98\x4e\x8c\x20\x77\x7b\xac\x87\x74\x10\x8a\x64\xed\xa5\x8f\xb3\x20\x24\x4a\x3a\xdd\x3e\x3e\x7a\x76\xcd\x13\x7c\xfa\x4a\x09\xb6\xe6\xe9\x30\x11\xea\x0a\xe6\x51\x71\xaf\x13\x07\x11\x76\x6c\xd2\x5b\x3c\x74\xec\x54\xc0\xbd\xfa\x02\xb3\x12\x0a\xc2\x90\x87\xeb\xac\x98\x37\xfc\xa6\x5b\xa9\x71\xbc\x42\x81\xdd\x55\x7c\x50\x0e\x22\x5e\xa6\x6c\x3c\x3f\xd5\x22\x06\xc1\x9a\x9f\x93\x95\x46\x31\x69\xf8\xc7\xa8\x46\xbd\x9f\x83\x4d\x7f\x33\x7d\x0b\x61\xfb\x30\xbc\xe2\x94\xf4\x78\xae\x1f\x1d\x97\x7e\x45\x4e\x43\x3e\xe8\x72\x9f\xb0\x65\xcc\xe0\x3f\xb2\xe4\x35\xdc\xbc\xbf\xba\x01\x53\x7e\x7a\x67\x62\xe5\x5e\x7e\xd2\x25\x28\x30\x37\x04\xbe\xb5\xae\x38\x1f\x2e\x18\x10\x56\xf2\x51\x33\x27\x3c\xf1\x7d\xdf\x2b\x06\xe2\xd9\x47\x7f\x2c\x09\x75\x5f\xc8\xd9\xc7\x3c\xb3\x31\x00\x46\x8c\x64\x13\x1c\x68\x6c\xac\x79\xfd\x38\x45\x01\xe5\x0f\x8b\x0b\xee\x28\xba\x39\x58\x3f\x42\xe4\xfd\x37\x99\xe2\x4f\x60\xda\x5f\xd3\xc7\x79\xaa\xbf\x69\x9f\xfd\x23\x21\xed\x04\x5a\x85\xbc\x64\x24\xf6\x0f\xdc\xc4\x9c\x1c\xb3\x1f\x24\x9a\x42\x36\xc0\x94\x91\x76\x81\x81\xb9\x21\xf5\x86\x02\xfd\x41\x5c\x1e\xde\xb2\x6f\x39\x32\x4a\xdd\xff\x14\x77\x13\x24\x73\x7c\x67\x20\xcc\x92\x39\x1b\x94\x9d\xcb\x42\x12\xbd\x69\x31\xd4\xde\x51\x40\x1e\x7f\x95\x3b\x7b\x03\x6b\x22\x3f\x0a\xf7\xa8\xe4\x08\xb0\x4e\xa6\x35\xa2\x3f\xa0\x70\x9b\xa0\x42\xa5\xd9\x92\x95\x4c\x09\xd8\x58\x1d\xcc\xcf\x52\x56\x8a\xd2\x7a\x1c\xc7\x1d\x18\xaa\x27\x40\xf6\x21\x21\x2e\x7f\x4c\x5e\x5e\x5e\x5e\x45\x32\xd9\xa6\x7e\xc2\x77\x3a\xc2\x1c\x8a\x4b\x00\x2d\x65\x24\xf6\x18\x2d\xd3\x71\x73\x5d\x2c\x2a\xbe\x6c\x95\xc2\x81\xc6\xfb\x1e\x97\x6b\xc1\x7e\x38\x3f\xd5\x2a\xea\xaa\x9f\xbd\x4a\xbb\x82\xa2\xcc\x65\x39\x5f\x8c\x2c\xc7\xd8\x18\x2a\x0d\x25\x0c\x68\x5c\xfc\xba\x93\xa9\x51\xee\x7c\x50\x3c\x6e\x3e\xec\x23\x6c\xe3\x3e\x08\x6c\x61\x07\x28\x73\x7c\x1c\x3b\x3a\x24\x25\x2d\xa7\xf2\x16\x72\xd9\x28\xeb\xda\x99\x3a\x94\xc4\x58\xab\x99\x0f\x5d\x19\xd8\x00\x23\xc3\x6a\xa1\x6e\xaf\xca\xb1\x43\xf3\x52\xe9\x7d\x64\x09\xf3\x24\x99\x41\x11\x9b\xfd\x9f\x5f\x90\x84\x72\x4d\x9e\xba\xd3\x83\xb1\x0f\x34\xd3\x3a\xc8\x30\xcc\xe9\xe5\xcb\x8a\xec\xee\x6f\x40\x30\x1c\xbb\xe3\x09\xfd\x06\x15\x34\xa7\xd0\xc3\xed\xaa\xea\x02\xa1\x71\xd8\xb2\x34\x9d\xbe\xec\x62\x85\x20\xac\x33\x4a\x5b\xfe\x28\xa9\xd5\xf4\xc0\xd7\x40\xf7\xc7\x2d\x4d\x72\xd8\x9a\x97\x32\x6a\x03\x00\x2d\x1e\xf3\x85\x22\xbc\xd3\x7b\x42\x84\x7a\x31\x4b\xd8\x43\xec\x88\xd1\xf2\xf9\xd3\x9f\x57\xf2\xf1\xa1\x3d\x01\x40\xa8\x84\x74\x50\x44\x8c\x88\x0b\x3a\xe7\x65\x31\xe9\x5c\x43\x92\x97\x32\x50"}, {{0xc9,0xd4,0x16,0x83,0x0a,0xe2,0x02,0x8f,0x21,0x75,0xd2,0x2b,0x61,0x4c,0x79,0x19,0x8c,0x67,0x0c,0xfa,0xa0,0xe7,0xa3,0x61,0x50,0xef,0x0f,0xee,0x21,0xa9,0x5c,0xe6,},{0x6e,0x3e,0xb4,0xd0,0x18,0x73,0x07,0x2d,0xf9,0x46,0xf1,0x79,0x2f,0x71,0x06,0x33,0x08,0x95,0xe7,0xa7,0x6d,0xd9,0xae,0x27,0xf8,0xa9,0x88,0x03,0x94,0x90,0xfd,0x4b,},{0x47,0xfa,0xad,0x4e,0x65,0x52,0x93,0xed,0xa1,0x56,0xb2,0xa1,0xfa,0xbb,0xfb,0x7e,0x00,0x9f,0xc2,0x90,0xaa,0xfe,0xdb,0xd5,0x65,0x21,0x14,0xa4,0x78,0x53,0xbc,0x77,0xa8,0x23,0x3a,0x2b,0x17,0x9f,0x60,0x54,0x77,0xd7,0x87,0x87,0x8c,0xbb,0x15,0xea,0x61,0x24,0xdf,0x8d,0xc5,0x7b,0x2c,0xe7,0xbe,0x7d,0x18,0xb7,0x16,0x2f,0xb5,0x0d,},"\xff\x9a\xd4\x83\x7c\xd0\xbb\x77\xd6\x21\x0f\xdd\xdc\x75\x5e\x6c\x0f\x1a\x73\xc2\xbc\xd0\x3f\x7a\x58\x69\xe7\x34\x2c\xfd\x73\xcf\x70\x86\xf8\x65\x56\x15\x60\x27\x7b\xf6\xc3\x42\x1a\x91\x2d\x67\x65\x8b\x1f\xa9\x70\x57\xc4\x96\xf4\xbe\x8e\xdc\xbe\x18\xb5\xec\xd0\x8a\x1e\x7d\xb2\x52\x23\xab\xda\x20\x8f\xa5\x31\xf4\xb2\x80\xaa\x03\xb0\x4b\x60\x60\x34\x11\xd3\x74\xba\x7c\xbb\x02\x0b\xb9\xa8\xce\x4c\x0e\x45\xa7\xe1\x32\x14\x48\x43\xc3\x1f\x8b\x45\xc5\x8e\xb3\xea\x85\x3c\x2c\xeb\x61\x37\x6e\x9d\xf8\x1d\x97\x78\xe7\x21\xad\xac\x77\xb5\x03\x54\x93\x7f\x34\x37\x2f\xcc\xd5\x75\xe8\x8d\x9d\x05\x8e\x43\xdf\x94\x2f\x2c\x43\xb5\x23\xc8\x09\x8e\x6d\xd9\xe6\xbd\x21\xd5\xa6\x49\xb4\x72\xd4\x1e\x34\x5f\xcd\x5e\xfd\xdd\x49\xea\xb3\x02\x70\xcd\x87\x88\x40\x4f\x28\x51\x6e\x09\xd3\xac\xc4\x00\x48\xb3\x9d\x32\x46\xf7\x57\xe4\x82\xe1\x45\x9c\x62\x6b\x79\x9e\x04\xd0\x67\x27\x13\x73\x71\xe1\x20\xaf\xb9\xfe\xc3\x9a\x25\xf4\xe6\x76\x4b\xf9\x79\x2f\xe4\x92\xee\x0f\x21\x0b\x57\xdb\x9e\xbb\x9e\x8e\xf4\x1b\x02\xc7\xfe\xe9\xed\xd4\xb6\x17\x4c\x57\x0d\xe0\x20\xa3\x91\x28\x71\x33\xfe\x8c\xcb\x41\xa8\x3f\x91\xbd\x22\x38\x2b\x21\xe1\xd7\xeb\xc2\xc7\xe5\x01\x8e\xf5\x14\x2d\x82\x63\x7d\x02\x62\x0f\xbc\x05\x69\xcc\x09\xc4\x4e\x91\x11\x12\xbb\xae\x99\x06\x4d\x68\xd1\xc6\x9e\x77\xc9\x93\x0b\x0d\xe0\x30\xc8\xc1\xd7\x48\xc4\x14\x05\x9d\x5e\x29\x9b\x7e\xdc\x08\x94\x06\x51\x89\x4b\x30\x3a\x2b\x32\xdd\x2c\x36\x5a\x06\x7c\x97\x23\x58\x55\x94\x64\x4d\x3e\xe8\xde\x1a\x51\xfa\xea\x0e\x65\x0f\x21\x24\x88\x5a\x94\xcb\x99\xeb\x90\x3b\x7d\x45\x79\xbd\xe5\x91\x49\x7d\x95\x39\x30\xd3\x63\xdd\xdb\xda\xc6\x27\xb9\x7a\x91\xf4\x96\x82\xdf\x8e\x72\x50\xa7\x07\x3d\x38\x3a\x7a\x22\xcf\x11\x3f\x28\x58\xce\x6b\x63\x2a\x28\x92\xc4\xe8\x8a\xa9\xa0\xd2\x89\xeb\x57\x62\x9b\x00\x8d\x3b\x1b\x60\x81\xe6\xfe\x5d\x3c\x0a\x6c\x80\x21\x89\xb5\xf1\x08\xe7\x66\x31\x9e\x15\xb3\x3e\xaa\x5b\x8c\xed\x40\x27\xea\xec\x83\xb4\xac\x68\xb1\x4b\x82\x98\xbc\x51\xcd\x8e\xb3\x80\x9b\x7a\x2d\x68\x4f\xe3\x2b\xbd\x9f\xab\x5c\x91\x8e\xeb\x17\xcc\x44\x4d\x73\xf7\x30\xd4\xc8\xcc\x05\x7b\xd3\xa2\xf1\xf0\xae\xbb\x61\x63\x29\x34\xe6\x17\x02\x16\x88\x29\xcd\x7e\x91\xde\x81\x50\x96\x29\xd0\x1a\x8c\xde\xfe\x0d\x1a\xc4\x9e\x21\xf0\xc5\xfb\xe1\xb2\x24\x48\x27\x26\x8a\x0a\x27\x35\x7e\x15\x8b\xd7\x68\x84\xa2\x1e\x7f\x1f\xac\x1b\x62\x72\x16\x6d\x5a\x9f\x64\xf9\xb6\x72\x98\x9a\x87\x62\xf5\x12\xbf\x1d\xf4\xb2\xab\x69\x97\x65\xf2\xcd\x83\x96\xf4\x76\xe7\xf5\x99\x95\xde\xe7\xd8\x90\x20\x7e\xff\x0f\xd2\x72\x63\xec\x23\x2e\x37\xcf\xed\xfe\x7c\x44\x05\x55\xd4\xca\x74\xe5\x2d\xa2\x46\xc4\xb8\x37\x57\xbe\xaf\xd2\xab\x2a\x51\xef\xe1\x60\xbb\x02\xb9\x8c\x26\xd6\xb2\xc3\xf0\xc1\xaa\xcb\x2f\x3c\x34\xa5\xb2\xa3\xb6\x6f\xee\x17\x5b\x78\x75\x48\x07\x3d\x8b\x57\x77\xc6\xbe\x88\x0b\xdc\x19\x6b\x33\x74\xa2\x15\x4f\x94\xd9\x36\x0f\x77\x55\xac\x68\x15\xa2\x8a\xf2\x96\x27\x1e\x22\xa8\xf2\x35\x43\xc7\x49\x55\xa6\x09\x12\x5b\x02\xa5\x69\x21\x80\x11\x42\x02\x95\xcc\xf0\xd7\x35\x69\x99\xa5\xb8\x95\xcc\x88\x48\x3f\xad\xf7\x97\x0c\xec\x6c\x64\x24\x0f\x70\x79\xfd\xb1\x5f\xfc\x5c\x42\x27\xe5\x39\x26\xd2\x78\xba\x0f\xed\x3c\x39\x93\xbc\x86\x82\x28\x23\xdd\x58\x1a\x32\xab\x2e\x3a\x07\xf7\x94\x30\x22\x4b\x27\x4e\xad\xd8\x45\x59\x8a\x7d\x1d\x89\x67\x6a\xaf\x23\x67\x77\x74\xb7\xb0\x58\x3b\xcc\x83\x59\x9d\x15\x5d\x14\xb0\x9a\xdc\xf4\x9e\xd5\x05\xe8"}, {{0x2d,0x27,0x7d,0xd5,0x5f,0x57,0x19,0x5e,0xc0,0x72,0xb4,0x7c,0xb1,0x44,0x8c,0xb5,0x82,0xc8,0x35,0x73,0x9e,0x6c,0x98,0xba,0x71,0xab,0x12,0x8f,0x70,0xce,0x6b,0x79,},{0xdf,0xa9,0x25,0x93,0xef,0x0f,0x0d,0x97,0x4a,0x11,0x37,0x83,0x0a,0xd1,0x38,0x48,0xaf,0xef,0x3b,0x81,0x0c,0x2a,0x21,0xbf,0x77,0x91,0x78,0xce,0x4b,0x3a,0xb9,0x74,},{0x73,0xc1,0x06,0x06,0x49,0xa7,0xc0,0x14,0xed,0x01,0x94,0x58,0x51,0xb5,0x3e,0x28,0x53,0x24,0xe6,0x0d,0x06,0x1c,0x83,0x1d,0xda,0x41,0xf0,0x33,0xb5,0x65,0x83,0x06,0xa1,0xf1,0x12,0x32,0x7a,0xfe,0x93,0xca,0xa9,0x21,0x02,0x07,0x30,0xaa,0xe0,0x06,0x9c,0x9a,0x2b,0x45,0xee,0xf5,0x5c,0xbb,0x4a,0x5a,0x9c,0xd4,0x6c,0xda,0x80,0x08,},"\x14\x54\x9e\xdd\xd5\xf2\xb7\x90\x5d\xda\x19\xd7\x4a\xb2\x07\xaa\xc6\xfb\x3e\x3d\xf3\x29\x5d\x84\x52\x31\xef\x3a\xea\x6e\x1f\x04\xee\x03\x3c\x90\x38\xdc\xb4\xbd\x3d\x5e\x45\x2c\x54\x83\x4d\x0f\xf2\xb7\xde\x3f\x32\x2e\x56\x26\x94\x9c\xd6\x1d\x6e\x89\x01\x38\xff\x0e\xa8\xad\x84\x6e\x8f\xe8\x87\xae\xe1\x5f\xc4\x8b\xbe\x4f\xba\x42\x45\x5f\x5c\x17\x45\x7a\xe7\x89\xb4\x05\xaf\x85\x96\x11\xfe\x1f\x87\x46\x18\x5a\x65\xae\xf2\x13\x4e\xa4\xd8\xf3\x98\xd4\x8d\xf7\xc1\xbb\xa4\x30\x44\x08\xae\x7e\xfb\x35\x29\x24\x09\xd5\x08\xdd\x55\xce\x21\xde\x8c\x28\x16\x0d\xc9\xe8\x77\x70\x0c\x76\x3d\x06\xb0\x1b\x85\x42\x05\x2d\x7d\xdb\x63\x35\x54\xe3\x58\x42\x79\xc7\x96\x93\x70\x23\xc8\xea\xc3\x72\x77\xbe\x2b\x82\x04\xff\x3e\x0e\x10\x31\x19\x0a\x01\x01\x4c\xf5\xf5\xb4\xd7\xad\x99\x67\x27\xf9\x75\x31\xe0\x35\x5b\x87\xc9\xe6\x11\x52\x5a\xad\x07\x99\x58\xe9\xaf\xe2\xab\x10\xe4\xa3\xe7\xa1\xb6\xba\x0a\xff\x81\x5d\xa2\xcd\x81\xea\x9e\xb9\xf5\x36\x98\x66\x33\xf3\x16\xdd\x06\xc2\x50\x3c\x6b\x19\x8d\xc5\x93\x04\x80\x7b\x98\xb4\x29\x35\xf5\x1f\x63\x7d\xdb\x59\xe2\x33\xfe\xd5\x66\x43\x9c\x1f\xe9\x6c\xda\xaf\xa4\x9f\x44\x12\xd0\xc1\xe6\x54\xd8\xc6\x90\x42\x47\x0b\x3a\x59\xac\xb6\xbf\x67\xe4\x0b\x38\xa7\x70\x67\xd5\x99\x7b\x8d\x35\xed\x61\xd6\xeb\x3c\xc7\x8b\x8b\xdc\xb9\x57\x4b\x1c\xed\x9f\x6f\x33\x9e\x9e\x38\xf9\x41\x46\xef\x63\xf0\x49\xe6\xb8\x02\xbf\xed\x2a\x51\xab\x42\xe7\xd4\x89\xf3\x16\xff\x4d\x1c\xd8\x98\xbc\xf8\x50\x56\x51\x68\x74\x40\x74\x9c\x0f\xb7\xa5\x7d\xbe\xff\x72\xe6\x46\x89\xfa\xa4\x1c\x07\xb4\xad\xe5\x99\x33\xd2\xfa\xc6\xd5\x73\xde\xb7\x39\x54\x9e\xb7\x5f\x1e\x6f\x73\x85\xd8\xc6\x14\x28\x94\x97\x3e\xd6\x85\xeb\x8e\xd0\x80\xc2\xa4\x9f\x3a\xc6\x57\x11\x61\xaf\x96\x63\x5a\xd0\x57\xdf\x14\x86\xd3\x96\x77\x3a\xc8\x98\x32\x10\x97\x89\x86\xe1\xbf\x21\xa2\x08\x06\xd6\x67\xa4\x8a\x55\x5a\x96\x32\x21\xd5\x06\x14\xa8\x97\x6b\x2e\xec\x97\x51\x2d\xb1\x1a\x35\x81\x94\x49\x2a\xb5\x45\x58\x01\xba\xa1\x4a\x51\x1b\x26\xeb\x0c\x68\x28\x9d\x79\x05\x23\x71\x2f\x2f\xf8\x70\x98\x92\x69\x5c\x4d\xb9\xad\x31\x0d\xf8\xc6\xee\x7b\xd8\x3c\x87\x1f\x05\xae\xc3\x3b\x7a\xd3\x26\xf4\x46\x69\x2a\x42\xf7\x22\x23\x76\x24\x6d\x53\x6a\x32\x6c\x4d\x73\xeb\x57\x2f\xea\xda\x11\xb8\xac\x71\x14\xf6\xcb\x44\x4c\xa2\x78\xfc\xf0\x7b\x97\x0d\x2a\xd4\x65\x37\x2a\x68\x7d\x36\xb7\xda\xac\x47\x87\x48\xec\x6a\x93\x2d\xa2\x08\x43\x94\x8e\xfa\x39\x30\x97\x81\x42\x72\xe5\xca\x1c\x73\xe7\x11\x97\x3a\x52\x68\x3f\x98\xc0\x1e\x55\x24\x1c\x15\x4d\x28\xe3\x8d\x3e\xdf\xad\xe2\x30\x3a\x4e\x7c\x45\xc2\xa7\xa1\xc9\x96\xee\x11\x37\xaf\x86\x4a\x98\xb6\x98\x09\xfc\x92\x14\xee\xa8\xcf\x3a\xfe\x84\x2f\xee\x3e\xb9\xa9\x32\x2c\x3b\x82\xfd\xdb\x05\xd4\xd1\xa2\xde\x09\xc1\xce\x72\x73\x44\x53\xa8\xdd\x3a\x89\x20\xd0\xd0\xac\x96\xef\x77\x8b\x9e\x02\xc6\xa3\xf1\x28\x72\xe1\x7d\x3a\x81\xba\x75\xfd\x23\x3b\xaa\xdb\xe2\x16\xea\x0a\x58\xe9\xdd\xa0\x08\x40\x87\x02\x08\xae\x41\x35\x40\x03\x0b\x3c\x05\xe5\xd0\xb8\x32\xdf\x87\xc8\xee\x7f\x15\x34\x87\xaa\x11\xba\xd9\xf1\x39\xc7\xdd\x4b\xcf\x41\x8f\x4b\xcb\x95\xbe\xe8\x57\xd0\xe9\x60\x84\x47\x23\x87\xcb\x39\x12\x7a\x94\x71\x34\x50\x19\x63\xa7\x07\x1b\xdb\x34\xde\x69\x61\xbe\x2b\x6b\x06\xe4\x03\xe7\x59\x18\xe6\xf6\x9d\x08\x02\x1c\xf2\xa8\xac\xb8\x0a\x01\x11\xf4\xd5\x06\x10\xc1\x52\xd3\x9c\x66\x21\xc0\x57\x8a\xc6\x89\x95\x9b\x1c\xe6\xf3\x76\xf4\x3d\x18\xaf\x06\x2e\x4a"}, {{0x42,0x80,0x66,0xc5,0x24,0x45,0x72,0x6d,0x0e,0xa2,0x00,0x7e,0x50,0x46,0x37,0x27,0x4d,0x84,0xee,0x23,0x23,0x25,0xb5,0x05,0xf2,0xc5,0x16,0x35,0x7f,0x80,0x75,0x83,},{0xdd,0x40,0xfe,0x8f,0x67,0xc6,0x65,0x61,0x3b,0x3c,0x45,0x9f,0x6a,0xce,0x8d,0xc2,0x8d,0x34,0xe0,0xe7,0x7e,0x2f,0x6a,0xa0,0x60,0x59,0x28,0x19,0xbe,0x6a,0x9d,0x68,},{0xc9,0x38,0x82,0x9f,0x59,0x8b,0x1f,0xf1,0xb8,0x18,0x33,0x60,0xd2,0x23,0xf4,0x3c,0x59,0x47,0x30,0x60,0x68,0x76,0xa9,0x9a,0x3f,0x31,0xb2,0x06,0x5d,0x04,0xe6,0xf0,0x75,0xd1,0x39,0x6b,0x3c,0x8c,0xff,0xb0,0xe1,0xe2,0xea,0xab,0xda,0x7d,0xa5,0xe7,0x89,0xcc,0xd1,0xc0,0x20,0x83,0x5f,0xe3,0xa7,0x1d,0xcd,0xb6,0xaf,0x03,0x96,0x0c,},"\xe2\x79\x6c\x50\xd9\x3d\xf8\x12\xbc\xa4\x1b\xf2\xa1\xe1\xdd\x73\x7d\x8c\xf6\xf6\xb4\xf7\x62\x42\xe3\x91\x78\x18\x67\x58\xcb\xae\x08\x84\xe6\x0c\x6b\x4a\xaa\xdd\xae\xc9\xa8\x99\xa9\x12\xe5\xc5\xb9\x80\x4d\x7b\x04\x97\xba\xb4\x45\x8c\x58\x5d\x4f\x25\x92\x22\x49\x8c\xe9\xe8\x0e\xb6\xa7\x97\x9b\xbe\xd6\xd5\x2c\xc3\x80\x72\xf7\x45\xcb\x2c\x63\xe6\x63\xbc\x3b\x9d\x6c\xaf\x01\x2a\x60\x7f\x6d\x3b\x70\x6e\x15\x57\x57\x87\x17\xec\xbb\x97\x1a\xeb\x7c\x48\xe1\xdf\x95\x71\x1c\x55\x0e\x00\x69\x93\xbf\xfb\xa9\x11\xcb\x64\xad\x52\xd5\x17\xed\x18\xbe\x82\x36\x9e\x81\x58\x19\xd3\x17\x59\x47\xd4\xa3\x5b\x2c\xc7\xb9\xdc\x6c\x10\x05\x13\x26\xb3\xf1\xdc\x1e\xdb\x1b\x68\xba\x01\x5f\xf7\xca\x1d\xc3\x61\xd8\x96\x7a\xbc\xff\xd3\xc3\x1f\x7d\x6b\x0c\xb1\x39\x6a\xe5\x41\xf2\x97\x59\xc4\x13\x0b\xe5\x2e\xcc\x11\xd9\x92\x61\xc3\x65\xbf\x7c\xde\xc7\x81\x49\x4c\x5f\xa0\x52\x6d\xb4\xdb\xbe\x66\x0a\x43\x2b\xe5\x60\x43\xc6\x6e\xa0\x7c\x25\x62\x7a\x5f\x72\xb7\x81\x23\xdc\xf9\x86\xff\x71\xed\x1a\xff\xd1\x65\x9b\x13\x93\xd9\x62\x1f\x71\x1d\xfa\x63\xea\xda\x38\x34\x30\x79\x70\x58\xf1\x56\x6a\x00\x05\x2d\x67\xba\x53\xc1\x23\x7b\x56\x91\xde\x3b\x03\x9f\xd4\x47\x6f\x11\x51\xe5\xed\x5f\x5a\x98\x67\x2f\xa3\x3a\x1d\x85\x4f\xa0\x15\x66\xb3\x32\x31\xd4\x6a\xcd\x7f\x34\xb8\x03\x44\x79\x98\x18\x53\x76\x4d\xab\x87\xf4\x98\x44\xcb\x62\xc6\x3d\x53\x6f\xac\xa9\x20\x44\x7d\x8c\xd1\xe8\x11\x3e\xdb\xc8\x3e\x4a\x6b\x78\x15\xe1\x80\xcd\x78\xb9\x33\xd9\x68\x7f\xd5\xbe\x99\xd0\x51\x8a\x44\x66\x29\x89\xbc\x64\x01\x11\x24\xf1\x87\xd4\x39\x79\x99\x4a\x95\xe0\xc9\x03\xa0\x06\xc1\xc0\xbe\xf1\xc0\xf3\xdf\x1e\xb7\x00\xf9\x80\xc2\x8c\x3c\x1e\x99\x7d\x0c\x56\xd1\x13\xda\xe1\x96\x88\x2b\x05\x01\x8f\xca\xb3\x14\xd8\x11\x7f\xaf\xba\xbe\x77\x00\xb9\x32\xd4\x7c\x57\x36\x2b\x20\x35\xed\xdc\xe2\xd2\xef\x33\x64\x1e\xa9\x0c\x3e\xa3\xfe\xc6\xea\x5b\x87\xe1\x61\x01\x4c\x4f\x82\x14\xfd\x03\xce\xbf\x94\xab\xe1\x22\x53\x7a\x98\x70\x32\x39\xdf\x58\x21\xc5\xab\x63\x3f\x98\x36\x5c\xc6\x36\xe3\xf1\xd2\xf7\x4e\x0f\xf8\xf1\xfe\xe0\x6a\x3f\x73\x90\x7e\xe5\x04\xb3\x10\xfd\x52\x24\xad\x4d\x05\xcd\x23\xc3\x56\xdf\x8b\x34\x64\x72\x98\xc4\x98\x28\x72\x5b\xa5\xfd\x60\x61\x1e\x82\x9b\x63\x37\xbc\xc9\xdc\xf8\xe8\x97\x1c\xab\x3e\xe9\xc2\x63\x37\xd3\x8d\xfd\xfa\x03\x6b\xf6\x09\x6b\x63\x5a\xc1\xbd\x55\x25\xec\xd3\x77\xa1\x52\x72\xa8\xac\x9b\xbe\xf1\x33\x10\x7a\x42\x25\x8d\x8b\x19\xec\x69\xdc\x42\x61\xbe\x53\x00\xa2\xd2\xd5\xca\x99\xf3\x1e\xfd\xf2\x59\xf9\xd0\x79\x86\x9a\x34\x41\x37\x79\xf3\x02\x88\x24\xd7\x47\x68\x6c\x46\x0f\xfc\x49\x6f\x20\x10\xf4\x03\xe9\x03\xe2\x7a\x87\xdd\x07\x5a\xe0\xa7\xf1\x68\x94\x16\xd3\x1b\xcc\x15\xf4\x90\xca\xf9\x75\xc4\x0e\x71\x5d\x54\x99\x03\xe8\xbc\x0f\x7d\x91\x41\xe0\x20\xf4\x10\xf3\xca\x2b\x2c\x07\x97\xca\x0d\xc8\xd7\x39\x2b\xff\x24\x35\x28\xc7\xf3\xbe\x13\x89\x97\x18\x5a\x4b\x36\xf4\x53\x76\xd9\xfd\x70\xba\x20\x98\x9d\x2d\x1a\x91\x1d\x4b\x98\xd1\x60\xd2\xb8\xde\x59\x2d\xe2\xf4\xc0\x4f\x35\x86\x0d\xf3\x20\xc5\x48\x44\x0d\x5e\x3a\x34\x6a\x14\xd3\xa6\x3f\xe4\x85\xc2\x88\x91\x26\xb7\xf4\x1d\x55\xa6\xeb\x23\xd5\x62\x0b\xab\xf8\x56\x4a\xa7\x9d\x15\x6e\x98\x3f\x36\xd9\xed\x49\x8d\xa9\xca\x88\x8d\x94\x6b\x53\xcc\x47\x68\xa5\x89\x2d\x52\xd5\x41\x52\x69\x60\x28\x25\x24\xba\x61\x94\xda\x65\x94\x1d\x1e\xa3\x0f\x80\x6b\xb6\xd9\x7c\x74\x88\xb9\x3f\xd0\xa7\x70\xa9\xb1\x5e\xfc\xd1\x2c\x5c\x46\x94"}, {{0x31,0x45,0xbc,0x68,0xd8,0x29,0x79,0x40,0x8e,0x46,0x57,0xb7,0x75,0xf1,0x50,0xc6,0xd2,0x8a,0x32,0x4d,0x74,0x6e,0xa6,0xde,0x90,0xfd,0x72,0xb1,0x7a,0x25,0x79,0x82,},{0xc7,0x76,0x18,0x6c,0xe4,0x7f,0x30,0xad,0x08,0xfa,0x1d,0x2c,0x61,0x6a,0x36,0x44,0x66,0x5b,0xa5,0x4f,0xf7,0x30,0xfc,0x2f,0x4d,0xb1,0xdb,0xa3,0x8d,0xde,0xed,0xca,},{0x24,0xa4,0x33,0x33,0x76,0x83,0xbc,0x71,0xa6,0xca,0x3b,0xcc,0xd8,0xcc,0x24,0x00,0xc2,0x44,0x64,0xfa,0x67,0x71,0x4b,0x46,0x51,0x5f,0x2a,0x14,0x32,0x71,0x27,0x05,0xd5,0x70,0x61,0x4d,0xb6,0xd2,0x6b,0xbb,0xd3,0xf0,0x26,0x7c,0x14,0x27,0xca,0x1c,0x2f,0x40,0xdc,0x9a,0x6f,0x1f,0xb0,0xf0,0xfc,0x71,0x4a,0x02,0xe2,0x4b,0x47,0x08,},"\x2e\xa8\xdc\xe1\x48\x7f\x45\xd6\xff\x8e\xb8\x3c\x54\xfb\x7e\xdd\x76\xad\x6e\x60\x8b\xb8\xda\xf1\xa1\x82\x3d\xa4\xf4\xe4\xe9\x86\x31\x73\x89\x7c\x19\x7a\xc6\x58\x04\x82\x3b\xca\x95\x09\x1f\x59\xe8\x6d\x63\xc1\x8d\xbc\xdb\x85\x74\x3f\x88\x93\xee\x69\x4d\x81\x56\x01\xf8\xf2\x2f\x4d\x7d\xf0\x87\xf0\x11\x4b\xb2\x6c\x37\x95\xe1\xfe\x4b\x7f\x4a\x8f\xa3\x1f\xd9\xf4\xff\x10\xfe\x5d\xd4\x52\xc5\x4c\x55\x78\xc7\x52\xf8\x88\x21\x30\x76\xbe\x46\x7b\xa3\x0d\x2e\x2f\xbb\xee\x87\x7c\x4b\xe9\xb6\xec\x4f\x04\x02\x1c\x00\x6f\x92\x66\x31\x19\x43\xca\xb7\xce\xa9\x9a\x2a\xce\xbb\x69\xee\xc3\xe6\x18\xc1\x31\xf9\x74\x30\x07\x5f\x79\x75\xe3\x9f\x26\xd5\x31\x51\x78\xb6\x9a\x1d\xdf\x73\x17\x61\x05\x1b\x93\xfb\x8d\xf7\xe0\xe8\xb4\x1e\x82\xe7\xf4\xf7\x5e\x91\xd6\xc8\x90\xb1\x4c\xa5\x33\xe0\x94\xeb\x8e\xa4\x48\x6d\x38\x71\x85\x96\x6c\x98\x29\x5d\x3f\x58\xb1\x7e\xef\x6c\xc3\xb4\xd0\x7e\x93\xa3\xd9\xf4\x77\x2e\xe5\x2f\x18\xa5\xbb\x30\xaa\x39\x72\x85\x0e\x65\x81\x70\xbd\xdb\x67\x6f\x33\x26\x6c\x9f\xd1\x0f\x59\x90\xba\xd8\x91\xf0\xce\xb7\x82\x73\x6b\x40\xf0\x1b\xd8\x65\x09\xb0\x63\x04\xa9\x6d\x93\xda\x23\x3d\xbe\xd1\x8a\xfa\x18\x18\xaa\xf5\x7a\xf9\xbd\xbc\x86\x7b\x39\x7f\xf2\x35\xa8\x3e\x85\x72\x24\xb1\x50\x65\x22\x5e\xec\x03\x9d\xd4\xe2\xd6\x9a\x04\xee\x10\xbe\xa0\x69\x50\x41\xed\xa5\x9b\x05\x8e\xc0\x5f\x49\x04\x8e\xe3\x24\xd1\x6c\x4d\x61\x07\xb6\xec\xd0\x48\x75\xeb\x74\x4e\x93\x65\x47\x1b\x4c\x5f\xe6\x61\x1b\x26\x18\x93\xf9\xd2\xb1\x28\xe1\x35\xf9\x2e\x47\x41\x56\xb2\x71\xb3\xc8\x2e\x9a\x76\x63\xda\xd4\x95\x3d\x30\xe1\x0e\xda\x08\x62\x60\x7d\xec\x33\x72\xb3\x99\x70\xf2\xa8\x4b\x12\xf6\x0e\x6d\xae\x7f\x31\x79\x90\x86\xd3\x8a\x7e\x34\x94\x84\x19\xc1\xb0\x7f\x44\xc2\x15\x9c\x86\xb8\xc0\xcf\xe8\x74\x7f\xc2\xba\xd5\xbf\x47\x53\x56\xcf\xe6\x9d\xe2\xdc\x6a\xd5\xa5\x19\xfd\x65\xc1\x25\x64\x70\x1c\x05\xf7\xc2\x77\xec\xaf\xcf\x4c\x87\xb1\x48\xdf\x1f\x98\x79\xa9\xae\x44\x3c\x55\xae\xa5\x21\x38\xc6\xfa\x01\xef\x0c\x3a\xbb\x5f\x2d\xf9\x0a\x57\xab\x66\x24\x17\x8c\x73\x7b\x54\x91\x5b\x7a\xa2\x9e\xa7\x8e\x8e\x49\xef\x5a\x81\x6d\x8a\x92\xc2\xf8\x1b\x8a\x19\x63\x27\x79\xc8\x92\xd6\x6f\x75\x3d\x51\x8c\x41\xcc\xcc\x9e\x59\x3e\x50\x74\x26\x25\xbc\xaf\xa4\x68\x80\x5c\x37\xa2\x1f\x8e\x29\xa6\x96\x0d\xdf\x5c\x5e\x5c\xa1\x4a\x7b\x05\x2a\x7b\x60\x15\x69\x7a\x02\x10\xed\x6f\x01\x43\xe6\xb4\x84\xc3\xf5\xb3\xb4\x72\x6c\x60\x7d\x07\xbf\xb3\xd5\x4a\x09\xc9\x80\x43\xf2\x1d\xcc\x5c\xc2\x0b\xb4\x75\x4e\x2e\x5a\x73\xb2\xf8\x06\xc2\x20\x4b\x72\xf3\x6a\xb9\xe9\x6a\x62\xc6\x27\x7c\x0a\xd6\x6b\xe7\xab\xff\xc1\x63\xb4\xe8\xfa\xfc\xef\xf5\xe2\x02\xe5\x94\x3f\x4f\x0e\x6b\x92\xb4\xdd\xb9\x53\xcb\xb7\x91\xf8\x31\x66\x03\x69\x38\xe6\xc4\x4a\xd9\x1a\x59\x6a\x55\x73\x44\x0f\xb3\x07\x41\xe6\x60\xb6\xcd\x5f\x86\xff\xa7\x46\xe6\xe9\x72\xb8\x05\xc1\x0b\x7b\x7b\x9a\x63\xc0\x55\x1d\xb8\xeb\x4f\x84\x00\xcd\xe2\x86\x8c\x0d\x0d\x4e\xb4\xcf\x11\x7f\x8e\xc4\xab\x97\x44\xfc\x58\x79\xde\xa7\xf0\xef\x16\xc2\x91\xd5\x5c\x17\xf0\x8b\x73\x1b\x7c\x65\xd0\xc4\x41\xb6\x3b\xc8\xff\x5e\x94\x90\x4c\x02\x6a\x13\x61\xda\xcc\x80\xa9\x3a\x9b\x9f\xba\x3b\x40\x36\x17\xae\xb9\x4a\x56\x85\x41\x84\x80\x11\x95\x42\x34\xae\xad\x70\x0f\x03\x4c\x47\xc7\xde\xf8\x77\x90\x52\x55\xf1\x8b\xdb\x9a\x25\x7c\xe5\xbd\xcf\x0e\x17\x67\x0c\xda\xaf\x13\xb1\xc7\xe0\x9d\x58\xf9\x2a\x96\x63\xaf\x23\x9e\x22\x07\x8e\x18\x0a\x23\xcc\xb6\xf6\x4d\x64"}, {{0x5a,0x25,0xea,0x5e,0x18,0x2d,0x9b,0xf8,0xe9,0x30,0xa2,0x0b,0x6c,0xf5,0x5e,0x24,0xe8,0x38,0x62,0x78,0x9b,0x38,0x39,0xb1,0xce,0x9a,0x71,0xe9,0x38,0xc4,0x2d,0x37,},{0xc9,0x81,0xfc,0x36,0xf1,0xa6,0xd5,0xf7,0xd4,0x51,0xcd,0x5e,0xf3,0x9c,0xd3,0xab,0x02,0x08,0x7f,0xcc,0x6a,0xf2,0x7d,0xd7,0x8e,0xa8,0x27,0x49,0x7e,0x77,0x9e,0x21,},{0xa4,0xf3,0x5b,0x49,0xd7,0xe1,0x98,0xe5,0xd3,0x26,0xe3,0x53,0xfb,0xb0,0x1f,0xa1,0x3b,0x6a,0xe2,0x60,0xd1,0xe4,0x8e,0x30,0xc1,0xb9,0x67,0x73,0x7a,0x5e,0x79,0x93,0x6c,0x97,0xca,0x2b,0xa7,0x99,0xca,0x34,0xe5,0xe7,0x88,0xce,0xa5,0xac,0x8e,0xd1,0x0d,0x5c,0xd1,0x5d,0xae,0x53,0xe4,0x24,0x32,0x32,0x1c,0xc2,0x6d,0xc9,0x98,0x09,},"\x21\x4d\xd1\x92\x7f\x2c\xac\xd9\x88\x87\x14\x24\x9b\x85\x43\x46\x02\xac\x78\x45\x3b\x4a\xf5\x38\x6e\xee\x39\x29\x5d\x3d\x5a\x22\x67\x80\x6e\xb0\xcf\xf2\xc1\x32\xd3\x64\xc2\x42\x0d\x04\xe3\xf6\xcc\x0a\x96\x7b\xf0\x5a\x10\xff\xcf\x12\x17\xbb\xf3\x15\xe7\x5b\x98\x06\x0f\xd4\x58\xd6\x7e\xba\xad\x93\x80\xf4\xad\xc4\xdb\xdf\x74\xcb\xf1\xc6\x47\x92\x02\xbd\xd7\xfe\xd3\xa9\x46\x69\x7d\xc3\x84\x44\xd8\x8b\xfe\x51\xd4\x1d\x7a\x9b\x38\xda\x60\xb8\x50\xc5\x6b\x48\xba\x98\x4f\x6a\x18\x89\x51\x49\x55\xc0\xda\xdb\x69\xa8\xc7\x36\xcc\x76\xcd\xc4\x9f\x13\xf8\x5a\x8b\xfb\x79\x28\xff\x0a\x0c\x0c\x03\xf1\x7c\x74\xb5\xe1\x06\x2d\x75\x53\xfb\xeb\x9d\xd3\xd5\x08\x1d\xe1\xdf\xd8\xa6\xa9\x97\x66\x97\xc6\xa2\x59\xbc\xf7\xd4\xbe\xf1\xc2\x1e\x0a\xaf\x32\x98\xb0\x42\x1b\x91\x9f\xdd\xfc\x1d\xcb\x3e\xc6\x83\xd8\x6f\xf3\xd4\x23\xd7\x1c\x8f\x2d\x72\x3a\x42\xff\x68\xd8\x2e\x9f\x39\x17\x49\xb8\x29\x98\xdc\xfa\x11\x21\x60\xf5\x2a\x41\x3a\x23\xd9\x5f\xc4\x2c\x3b\xd2\x23\x84\xba\xd7\x77\x54\xa7\x10\xd8\xb9\xf8\x4a\xe0\xa8\x02\xfc\x46\x50\x9e\x7f\x2b\x07\x07\x90\x12\xb4\x3b\xfe\xea\xb7\x19\xbd\xe5\x6f\x00\xe5\x9b\x8e\xdf\x1c\x47\x28\x83\xb1\x98\x5b\x2f\xa6\x99\xa1\xae\x90\xcf\x45\xd7\xac\x58\x0c\xeb\x5f\x27\x97\xde\xf5\xb8\xbf\x4f\x2b\x9b\x35\x19\xa7\x27\xb9\xf2\xcd\x12\x56\xa2\xf0\x76\xed\x22\x96\x49\x5b\x5c\x2d\xf7\x88\x7f\xf8\x9e\x88\xe2\x36\xa1\x4c\xde\x63\x24\xf4\x3d\x68\xd9\x01\x72\xb0\xb8\x8b\xd2\x88\x03\xe9\x99\xdb\xed\xcc\x50\x1d\xb6\x54\x54\x4e\x17\x1e\xc1\xf9\xf3\x2d\x4d\x33\x21\xd5\x89\x39\x2e\x03\xca\x65\x9f\x96\x75\x2e\x1f\x08\xa5\x5d\xb5\x53\xd8\x66\x98\x55\x41\xf5\xbe\xf8\x4c\xe2\xee\x32\x3e\x17\xd1\xf7\xdc\x16\x4b\x50\x51\x5a\x28\x7d\x53\x05\xfc\x28\xc5\x98\x3b\x9e\x53\x98\xb2\x40\x7a\xe4\x72\x96\xfe\x4a\x48\x1d\x22\xff\xb4\xb8\x65\xa6\x6b\x97\xa6\xc2\x79\x35\xdd\x8e\xb8\x69\x94\xb7\x9d\x36\x83\x63\x71\x3f\x10\x1d\xc3\x7f\x42\x9e\xee\x0f\xee\x24\x41\xc2\xdc\x17\xbf\x43\x92\x4f\x0c\x04\x4f\x14\x32\x90\xea\xf3\xf9\xee\x4d\x94\x6d\xbe\x45\x83\x1a\x0d\x83\xc0\x76\xe7\x51\xc1\x4f\x3b\x1a\x72\x67\xf5\x44\x6c\x18\x86\x98\xd2\xb4\x6d\x87\xe6\xf3\xb2\x0b\xb3\xfd\xaf\xe2\x4c\xc0\x96\xbc\x31\x2d\x86\x78\xb3\x8a\x80\xc3\xf0\x52\xa0\xc9\x6d\x5a\xd8\x7a\x5d\xd8\xc1\x33\xcc\x9a\x15\xbe\x33\x57\x4c\xd9\x43\x08\xc2\x4d\xec\x1a\x9b\xdf\x18\x9b\xa6\x87\x19\x9f\x72\xef\x67\x09\x87\x8e\x10\xf8\x7b\xd8\xa0\x3d\xc8\x4c\x8f\xa9\x64\x20\x28\x58\x98\xca\x32\x11\xd8\xb0\xcc\xef\x64\x01\x1e\xc2\x4f\x38\xe5\x74\xda\x34\xda\xb9\xd2\xf0\x02\x10\x52\x27\x89\x0f\x92\x48\x8c\x62\x1e\x57\x13\xe4\x7d\xbc\xb1\xa8\x2a\x6d\xa6\x0d\x8b\x22\x01\xeb\x29\xd4\x94\x49\x33\x60\xed\x5a\x3f\x4b\x52\x25\xea\xe7\x70\x7e\xe0\xb4\xc0\x40\x73\x05\xc1\x67\x54\xc7\xf6\x30\xfc\x85\xc1\x3e\x49\x17\x04\x7b\xcf\xf3\xb2\xa2\x93\xfe\x95\x55\x06\xc7\x26\x4e\xa6\x5b\xf3\xa9\xb2\x5a\xcf\x34\x36\x00\xd8\xfa\x0c\x7c\x1a\x29\x0d\x02\x71\x10\x1b\x7f\x40\xb9\x6e\x7f\xda\xf2\x9d\xef\x9d\x93\x27\xa5\xae\x05\x44\x6c\xb5\xa6\xd3\x22\x45\x3a\x8b\x09\x8b\xcf\x3a\xee\x1f\x70\x4e\x14\xd0\x0b\xe3\x42\xb8\x93\x4d\x19\xe5\x29\x21\x88\x72\xea\x3a\x2f\xb2\x12\x4b\x52\x66\x7c\x01\xfc\xa5\x84\x1c\x66\xe1\xe6\x4a\x1e\x68\x0e\x09\xba\x18\x6e\x04\xd1\x05\x18\x6c\xf6\xeb\x72\x8b\x9d\x50\x2a\x66\xb8\x29\xfb\xc9\x92\xa3\x88\x10\x04\xec\xdc\x80\xad\xfd\x04\x4e\xda\x88\x0f\x8a\xf7\x2a\x14\xfb\x55\x0d\x7c\xc7\x41\x94\xa9\x45\x20\x7d"}, {{0x42,0x33,0x5c,0x30,0xb3,0xf6,0xb3,0x59,0xce,0xf5,0xaa,0xb6,0xa3,0xce,0x28,0x58,0xa1,0x51,0xb7,0xa4,0xfd,0x78,0xd2,0xfd,0x3e,0xe3,0x6f,0xc2,0x9d,0x24,0x94,0x04,},{0x30,0x1c,0x51,0x5a,0x02,0xa4,0xc6,0x6b,0xc6,0x40,0x10,0x80,0xc6,0xca,0x79,0x23,0xb7,0x83,0x1e,0x3c,0x9a,0x72,0xb5,0x5b,0x14,0x02,0x7e,0xb2,0xe7,0xb3,0xb1,0x52,},{0x67,0xb0,0xf1,0x74,0x49,0x03,0x9e,0x8c,0x79,0x7b,0xf9,0x13,0xaa,0xe6,0xe4,0xf0,0xbb,0x99,0xc7,0x4d,0x6d,0x10,0xc9,0x73,0xb9,0x90,0xff,0xe0,0x3e,0x7e,0xe4,0xab,0x5b,0x35,0x80,0x6d,0xb1,0x5a,0x98,0xc0,0x84,0x6a,0x82,0x7e,0x7b,0xcd,0x53,0x9c,0xd3,0xbc,0x09,0xdd,0x11,0x8a,0xb3,0xe5,0x26,0x63,0xa3,0x57,0xb1,0x29,0x91,0x07,},"\x6d\xa2\x25\x1e\x6f\x55\x95\x36\xb0\x9b\xfa\xfb\x81\x60\xa2\xe8\x10\x2d\x31\xf8\xb5\x93\x24\x08\x3e\x52\x27\xb2\x0c\x3e\x5c\x3a\x06\xe2\x39\x67\x68\xdc\xa3\xec\x76\xdc\x7f\xc0\xeb\x3d\x14\x5e\x62\xed\x07\xfc\x1a\x8b\x1b\x2e\x34\x70\x13\xa0\x52\x72\x74\xd0\xb2\x34\xfe\x72\x50\x26\xa9\xd1\x28\xf8\xdf\x20\xdb\xfa\x3b\x65\x03\x81\x8e\xde\xbd\x7f\x24\x93\x40\x80\x94\x5a\x7e\x1e\xa0\x22\x73\xfe\x48\xb6\xed\x1e\x83\xfd\x16\x8d\x79\x73\xfb\xb7\x94\x1b\x40\x37\xd3\xcd\xa5\x55\xe0\xe8\x9c\x2b\x94\x3f\xb1\xe2\x07\x65\xac\x7d\x4f\xa3\x77\x7f\x35\xa0\xa8\xbc\x11\x8f\x59\x9c\x84\x7b\xe3\xfd\xb2\xd8\xe2\x01\xae\x12\xa3\x0b\xde\xfb\x03\x4f\xf2\x4e\x3e\x2e\x70\x1a\x0d\x17\x33\x73\x40\x78\xbd\x1f\x9a\x69\xbb\xc6\x67\xe4\x61\x21\x1f\x2c\x76\x9d\x29\xdb\x7c\x4d\x62\xd6\xb1\xb9\x2b\x56\xf5\xf1\x8a\x93\x1a\x92\x60\x64\xb7\x8d\xa1\x46\xe1\x8b\x48\x13\x9b\x9b\x39\x86\x2a\xec\x37\xbc\xce\x12\xcb\x78\x94\x29\xe6\x8e\xa3\x81\x12\xd0\xb5\xcc\xe3\x0b\xd2\xd2\x6c\x5f\x7f\xd4\x15\xda\xf7\xca\x31\x7b\x33\x68\xb7\x61\x7d\x45\x25\xe5\xbc\x97\xd9\x46\x1d\x5d\x64\xf6\xb5\xd3\x18\xd0\xbc\x3b\x76\xf2\x5b\x06\x05\x42\x69\x09\xf2\xaa\x0c\xd6\x67\xa4\xf0\xe0\x75\xb9\xa9\xfb\x2e\x9a\x6c\x82\x70\x4d\x8a\x9f\x16\x66\x84\x4e\xdc\x32\xf6\x3a\x3d\x4e\x0f\xd9\xfd\xba\x30\xb5\x1b\x33\x36\xb9\x6e\x9e\xae\x39\x2a\x34\x2d\xe4\x9e\x9b\x5f\xa0\xf9\xb9\x01\x71\xbd\xe0\x9c\xf1\xe9\x46\x49\x91\x40\x00\x81\x59\xeb\x18\x65\x56\x3c\x28\x39\x4b\x03\xa8\xd7\xa5\x52\x27\x1b\x28\x76\x68\x75\x66\xb8\x0f\xd3\xbe\x2b\x66\x33\x2f\xca\xd1\x96\xca\xb8\x52\x7c\x56\xe2\x15\x36\xa1\x41\x65\x2c\xdc\x7f\xa7\x45\xb2\x6a\x33\x1d\x78\x7b\x93\xe5\xe8\x16\xd8\xd8\x51\xa5\x8f\x6a\xc0\x7a\x58\x27\xfc\xdf\x47\x2e\x86\x85\x43\x3a\x40\xca\xc0\xc4\x9a\xa5\x69\x31\x9a\x2e\x57\xb4\x1c\x99\x98\x16\x5e\x69\x72\x3b\xa7\x7e\x5c\x04\x23\xc4\xb4\xca\x07\x18\x7b\xb7\x44\x2e\x7d\x31\xca\xac\xb2\x77\x00\xc7\x1a\xe4\x8c\xd0\x55\xed\x2f\xe4\xda\x36\x3f\x44\x82\x11\x24\xcc\xa1\xbf\x2e\x63\xd9\xb8\xab\xd2\xfa\x41\xb1\x42\x2f\x52\xd5\x58\xbc\x5f\x11\x0c\x86\x3c\xc6\x00\x86\x49\x84\xed\x25\x9b\x73\xcd\xdd\x57\x96\xb3\x29\x79\xed\xdf\x76\xa0\x7b\xc5\x9b\x73\x68\xc4\x8e\x12\x9e\xcc\x0d\x45\x35\xdc\xce\xe2\xc3\xb8\xe5\x6d\xe5\x0e\x6f\x5c\xc6\xea\x51\x5c\xd6\xa0\xeb\xdf\x1c\xa7\x9a\xa2\x79\x48\x21\xad\x2e\x10\x9e\xdd\xa4\x50\xc9\xfc\x3c\x84\xd8\xc9\x6b\xc3\x8d\x4b\x43\x7a\x73\x8f\x81\x8b\x4d\xdc\xb6\x84\x38\x3c\x09\xb1\x1b\x36\x05\x2e\x9d\x2f\x76\xa6\x1e\xb4\xd6\x20\x49\xce\xd5\xf6\x16\x62\xc4\xb9\xec\xd2\x4a\x67\xf4\x51\x9d\x46\x52\x8c\x5b\x2e\xb2\x10\x05\xf4\x9c\x73\xa3\x37\x0c\x68\xe3\x7a\xc2\xb1\x8d\x48\x1f\xa1\x0f\x96\x71\x4f\xe0\x5c\x16\x8d\xf1\x1c\xda\x54\xf1\x4f\x49\x37\xe9\xfc\xe1\xf5\x16\xc0\x37\x1b\x36\xa2\xc0\xa0\x50\xba\xc7\xfa\x51\x22\xa6\xe3\x5e\xc9\xc4\x04\x36\x58\x5f\x31\x6e\x6c\x91\x1b\xdf\xd7\xdb\x4b\x80\xb4\x30\x64\x79\xb8\x2a\x2b\x24\x3a\x52\xb2\xd2\xb6\x27\x42\xed\x11\x28\x27\x90\xcf\x6f\xdc\x7c\x9c\x82\x43\x64\xcf\x25\x63\x6a\x85\x51\x50\xbd\xdb\xdf\x7e\x64\x0f\x9f\x95\x2a\x94\x7e\xc7\x97\x49\x25\xe8\x24\x50\x68\xb2\x92\x10\x1b\x1f\x4b\x20\x18\xe8\x5d\x07\x8c\x2f\xee\xf4\x49\x23\x49\x72\x9a\xd4\xac\xb3\x8f\x1c\x7c\x02\x70\xb6\x1d\x3d\xfd\x76\x36\xc6\xcb\xf1\x81\xe4\xc8\xa0\xe6\x4f\xa0\x61\x32\x55\x3c\x2b\x9d\xb7\x01\x9e\x3b\x3c\x48\x5d\x8d\x5b\x7d\xfd\x5f\x51\x5e\x4d\x71\xed\xe5\x35\xae\x7f\x2a\xae\xdc\x23"}, {{0xbe,0x6b,0x2b,0xab,0xdd,0xd2,0xdc,0xa1,0xb0,0xe1,0x0d,0x12,0xd2,0x0a,0x9c,0xe2,0x9c,0x67,0x85,0xda,0xc1,0xd6,0x0f,0x2e,0xdf,0xa9,0x4a,0xc2,0x78,0x4b,0xa7,0x66,},{0x39,0x8f,0x22,0xf0,0xef,0xbf,0x8c,0x38,0x35,0x5e,0x47,0x91,0xbf,0x67,0x08,0x98,0x95,0x1f,0xbb,0xd5,0x51,0x8f,0x0e,0x2a,0x60,0x5d,0x46,0x00,0x23,0xf6,0x13,0xf0,},{0x70,0x2a,0xb9,0xac,0xbf,0xa7,0x5e,0xa2,0xad,0xbe,0x4b,0xe2,0xb6,0x84,0x76,0x25,0xae,0xb4,0x09,0xee,0xf9,0x59,0x6f,0xab,0xe3,0x9d,0x2c,0x53,0x3a,0x03,0x43,0x1e,0x5e,0x57,0x95,0x52,0xe8,0xa6,0x4f,0xc4,0xfb,0x7d,0x92,0x6a,0xa8,0xff,0xfe,0x06,0x40,0x69,0x84,0x64,0xc4,0x45,0x4c,0xe3,0x5f,0xe8,0x3f,0xf2,0x63,0x05,0x1a,0x01,},"\x5c\x92\x95\x88\x1b\x7a\x67\x06\x69\xb0\x4c\xbe\x0d\xab\xd8\x96\x93\xb7\x7f\x7c\xce\x0d\x4a\x33\xf5\x2e\x02\xeb\x26\x95\x9e\x71\x3d\x9a\xef\x5f\x95\x44\x2b\xdf\x91\x72\x83\x83\x32\x52\x02\xaa\xcc\xc0\x37\x47\x7e\x36\x66\xfa\xca\xf2\x4e\xac\x95\x34\x87\x9a\xa3\xef\xe1\x8f\xfc\x1a\x5c\x54\xe3\x9c\x76\x87\xd0\x93\x7b\x24\x71\xba\xb3\x89\xb6\x46\xcb\xe6\xb3\xe5\xd5\x96\x1e\xa6\x3b\xd4\x52\xb4\x74\x33\x44\xce\x4c\x79\x33\x74\x52\x37\x95\xc7\x81\xee\x84\xd5\x11\xe2\x94\x11\x19\xba\xd1\xf4\xa7\x46\xed\x9d\xba\x89\xc8\xd0\x75\x1a\x64\x02\x71\x86\x35\xf6\xe3\x1d\x9e\x18\x68\x1c\x69\x56\xc5\x37\x32\x51\xd3\x5f\x53\xba\xa1\x98\x7c\xd4\x48\xc9\x03\x1a\x07\xf3\x2c\x80\x29\x11\x9d\xe3\xa9\x16\x31\xde\xde\x1d\x93\x3e\x0f\xa3\x26\x29\xaf\xe1\xb4\x2e\xb5\x91\xc2\x2f\x87\x33\x1e\x93\xcc\x08\x3c\x23\xf6\x4a\x6e\x5e\x58\x6f\xf3\x1c\xc0\x4e\x42\x3c\x56\xae\x3f\x6a\x73\x94\x6c\x48\xde\x4d\x85\xab\x00\x17\xba\x24\x45\x6d\x69\xb5\x9d\xca\x6d\x40\x3b\x64\xb0\x7c\x40\xd3\xb9\x0e\x12\x23\x21\x5e\x3f\x7e\x87\x6c\x67\x01\x11\x1e\x37\xe5\x17\x77\x08\x87\x31\x0c\xa8\x56\xf0\x09\xa0\xd6\x06\x54\x83\x5d\x94\xe6\x58\x7a\x43\x9d\xa5\xdb\x0a\x0c\x37\xd7\xc9\xd3\x7c\xa1\xd7\x03\xe1\xb3\x22\x76\x31\xad\xac\xaa\x79\x42\x1a\x1c\x43\x9d\x60\x34\x9a\xe5\x77\x41\xb7\xa8\xad\x09\xec\x29\x31\x23\x03\x0b\xf6\xba\xc0\x68\x9e\x53\x1c\xa7\xe7\x27\x18\x22\x3f\x9e\xa4\x3b\xec\xb0\xee\x9d\x9c\x1a\xb8\x45\xed\x1c\xae\x44\x3e\x3c\x5d\x4a\x9b\x1e\xde\x6d\xb3\x41\x7c\x3a\xce\x28\x11\x43\xf4\x2d\x85\xf5\x99\xb3\xb9\xd3\xd0\x5f\xa0\xed\x07\xc1\xec\x35\xff\xab\x03\x05\x16\x8b\x4e\x56\xe5\x8a\xfa\x06\x17\xf9\xa8\x6b\x1b\x5b\x20\x1d\xcc\xb0\x72\xb4\xce\xf0\xbb\x7b\x95\xc5\x2d\xae\xef\x9d\x9e\x74\x24\xa5\xc0\xf1\x48\xf9\xff\xe6\x0a\x5b\x23\xe0\xff\x82\xc7\x30\x99\x2a\xc9\xc1\x7f\x97\xf0\x65\xcf\x0a\xd5\x37\x7e\xac\xcb\x31\xd8\xbb\x92\x3b\xd2\x60\xea\x11\x9e\x6f\xa9\xbd\x69\x83\x48\x2d\x70\xd9\x21\x91\x02\x40\x2d\xc6\xa3\x49\x91\x93\xd0\xc1\xcd\x3e\xd2\xa6\x69\x21\xa9\x8d\xf6\x9b\x79\x14\x13\xf4\x97\x0b\xbc\xe0\x4f\x63\x9a\xf9\x09\xc6\x4f\x45\x60\xdb\x0a\xf6\x00\x3d\xc4\x62\x19\xe8\xad\x2b\x37\x2f\x8b\x5f\x81\xcf\xaa\x04\x1a\xb7\x1a\x34\x8c\x93\x1e\x8d\xfd\xbc\x40\x9c\x22\xd7\xee\x6e\x07\x62\x6e\x10\x4e\xc6\xcc\x7c\x6a\x41\x16\x17\x7f\x93\xaf\x16\xf1\x24\xf1\x96\xda\xb6\x19\xb6\xf6\x98\xc2\xd1\x91\x85\x8e\x96\x0c\x2e\x94\x7b\x51\xf3\xac\x48\x38\x75\x9c\x21\xfe\xf7\xeb\xae\x35\xda\x24\xf5\x5e\xbd\xa9\xb9\x87\x9a\xea\x17\xa6\xd8\xd9\x27\xde\x48\x7b\x17\x5f\xd7\xfa\xa2\x14\x38\xa2\x09\x23\xdd\xbb\xca\x72\xe6\x72\x69\x34\xbd\x6c\x21\xe8\x11\x80\x19\xf6\x5b\x38\x10\xa0\x7f\xa2\x7b\x1c\xba\x64\xd0\xf3\x9f\x0b\xfd\x49\xdc\xfa\xfd\xef\xe3\x79\xbd\xea\x82\xf3\x1a\x9c\x39\xf7\xe8\x1d\x29\x43\x37\xd1\x0f\x1e\x9d\x8b\x50\xeb\xa4\x58\xce\x7b\x75\x3d\x36\x96\x85\x38\x51\x3e\xdd\xb0\xe8\x45\x34\x41\x1c\x4a\xf3\xf0\x21\x46\x10\xee\x39\x01\xa0\xeb\xf3\x16\x17\x3c\xca\xf1\x5c\xd7\xee\x49\x6d\xbf\xc2\x46\x5e\xb8\x34\xdf\x62\x02\x9d\x62\x1f\xe9\x11\x82\x4d\x79\x87\xdf\x2d\x46\x34\x6b\x4d\xce\x1e\xce\x7d\x19\xd5\x51\x18\xc0\x37\xc9\x95\x51\x11\xd0\x7f\x1f\xc3\x62\xc7\x39\xf1\xea\x5b\x27\x5c\x71\xc0\xae\xbf\x59\x65\x5e\x2d\xef\x16\xe1\x23\xb3\xeb\x25\x26\xc3\xca\x5e\x83\xcb\x24\xd5\xb6\x8d\x7a\xc4\x0a\x67\x59\x33\x84\xc5\x63\xaf\xe0\xb5\x52\xad\xaf\x60\x80\x50\x35\xbe\x97\xb8\x06\x76\xad\xeb\x15\x76\x52\x08\x33"}, {{0xb1,0xe4,0x7c,0xa3,0x1c,0x64,0xb6,0x8a,0xaf,0xaf,0xb4,0x43,0x51,0x2e,0x66,0x78,0x7c,0x65,0x92,0xf3,0x34,0xaa,0x78,0xfa,0x21,0x9a,0x3d,0x93,0xc3,0x3a,0x4a,0xb3,},{0x58,0x11,0x9b,0x38,0xe6,0xa1,0x48,0xa9,0x36,0xbc,0x5f,0x92,0xf4,0xf2,0x9b,0x98,0x2f,0xf2,0xcc,0xa6,0x4a,0x5a,0xff,0xa1,0x4c,0xa1,0xb6,0xa6,0x2f,0xe3,0x28,0xc4,},{0xdf,0xac,0x86,0xdf,0x58,0x6e,0xc3,0x4c,0x7c,0xfe,0xa5,0xd5,0xa6,0xcd,0x11,0x40,0xe5,0x0b,0x6b,0xf0,0x50,0xf8,0xe4,0x1a,0x19,0x0e,0xbf,0xd3,0xb1,0x43,0x2b,0x95,0xa5,0x7d,0x56,0x52,0xdb,0xae,0x8f,0x53,0xe0,0x37,0xae,0x32,0x6e,0x7f,0x18,0xcf,0xef,0x7c,0x77,0x9f,0x40,0x34,0x6f,0x7c,0x0d,0x86,0x44,0x61,0x05,0x93,0xf2,0x09,},"\x76\x7e\xc1\xb3\xda\xf2\x04\x38\x7f\x3f\xd3\xb2\x00\x10\x78\x1a\xfb\x1f\x38\xf6\x14\x47\x42\x13\x28\x7f\xff\x11\x30\x7f\x5f\xf5\xae\x7e\xc9\x45\xa2\xb9\xb4\x87\x00\x49\xd4\x53\x2f\x8f\x61\xc1\xa7\xb5\xf2\x11\xfc\xa2\xe6\x7c\x37\x4d\x96\x21\x9d\x8e\xa9\xde\x73\xf0\xe3\x87\x04\xfc\x94\xc0\xe9\xe7\x2f\x2e\x15\xda\xba\x3f\x88\xf7\x49\xb1\xed\x70\x26\x60\xdb\x1a\x35\x2a\x26\x67\xd4\xdf\xd4\xe0\x0a\x18\xef\xa4\xc6\x60\x9e\xe9\xc9\xa8\x8a\xda\xcb\xbb\x98\x5d\x3d\xe8\xdd\xd1\x7d\x4e\x4e\xb7\xcf\x74\xa1\xda\x91\xed\xb3\x90\x85\x2e\xa4\xcb\x9a\x42\x4f\x7f\xa2\x22\x9e\x08\x30\x33\xa3\x40\x59\x11\x7e\x5e\xfa\x7b\x66\x13\xd7\x5e\x58\xb7\x02\xc6\xce\xe5\xd0\x04\xe8\x59\x9b\x97\x50\x3a\x5f\x10\xc4\xc4\xe5\xb9\x57\x73\x71\xd3\xd0\x5b\x2d\xfb\xf7\xcb\xef\xe6\xd0\x92\xd6\x5c\xbd\x40\x51\x38\xd9\xb0\x4c\x51\x86\x23\x59\x83\xfa\xb6\xd4\xce\x85\xb6\x36\x27\x62\x06\xd7\x4a\x2e\xe7\xdb\x61\x64\xda\xc4\x7c\xce\x78\xf5\x0d\xb9\x9a\xf6\xac\x6e\x70\x64\xc1\x3a\xab\x79\x3b\xe8\x7e\x66\x28\x9c\x94\xa0\x9f\xb0\xa3\x1d\x97\x97\x1e\xdd\x74\xea\x9c\x0c\xe8\x74\xd2\xb7\xd6\xc4\xab\xae\xff\x07\xf8\x70\x22\x51\x51\x94\x6a\x5c\x47\x6f\x6b\x97\x89\x96\xb8\x7d\x8c\x98\x46\x06\xc7\x91\x28\x7d\xa6\xba\xd0\xaa\x44\xb0\x13\x0b\xe8\x86\x71\xa5\x56\xe2\xde\x35\xc4\xcb\x03\x8e\xe7\x81\x27\x35\x30\xac\xe0\xa1\x04\xc2\x78\x09\xae\xe0\x33\xc8\xbf\x90\x29\xd9\x0f\xe7\xba\x06\xaa\xa9\x4e\x16\xa5\x2c\x64\x3d\xfd\x92\xa7\x62\x4f\xbb\xee\x77\xa7\x15\x8b\x2c\xc1\x51\xbd\x3f\x61\xa1\xa7\x6f\x32\xb2\x84\x89\x30\x7a\xcf\x0d\xd8\xc2\x6c\xc4\xad\xbb\xb8\xde\x43\x0d\xb4\xe4\xf5\x83\x08\xb6\xab\x90\x45\x61\x11\xde\xac\x29\x78\x17\x2f\xe1\xfc\x0c\xe4\x98\x08\x8a\xdd\x4c\x31\xc2\x1f\x24\x27\x90\x25\xfe\xb4\x8c\xbb\x7a\x92\x0c\xff\x2d\x28\x71\x05\x87\xaf\x52\xc8\x44\xdb\x8a\x7a\xeb\x7d\xf1\x0d\x43\x41\x1a\x3c\x8e\xee\xbb\x40\x6d\x6e\xfc\xb1\x92\x48\x88\x7d\x45\x0b\x57\x3d\x90\x30\x5e\x1f\x23\x75\x3e\x89\x05\x11\xdc\xc7\x7c\x74\x0e\x31\x6a\xd7\xf5\x2d\x49\x02\x07\x3d\xb3\x99\x8e\x4e\x4a\xcc\x4e\x01\x88\x5b\xd1\x18\x8e\xcd\x61\x65\xae\xde\xd1\xe7\x78\x70\x2b\x6a\x6a\x79\xa9\x49\x99\x10\x2d\xf7\x20\x18\xf7\x92\xf8\xf1\x62\x00\x7e\x81\x2a\xef\x8f\x95\x6e\x12\x32\x82\xbb\xdb\xd0\xc3\x56\x12\xc2\xd3\x47\x3f\x94\x4c\x6d\x76\xbe\x9e\x86\xff\xfa\x46\xcc\xb1\xae\x13\x50\x5a\x4a\x81\xf3\x1b\x84\x26\xb8\xb6\x0d\xe8\xe8\xa7\xc1\x6d\x1e\x16\x65\xb2\x71\x43\x46\x65\xc4\x42\xa9\xc6\xa9\x77\xce\x98\x6f\x69\x93\xb7\x43\x9a\xf0\x3b\x40\x2e\xea\xff\xf1\x45\x6d\x15\x15\x26\xd9\xc5\x8f\x51\x5f\xd2\x48\x5e\x0c\xbb\x32\x4a\x50\x3a\x8d\x49\x13\x44\xcd\xb2\xaf\xf4\xc4\x1a\xa8\xe2\xed\x66\xe5\x80\x83\xbf\x0d\x2f\xbf\x48\x77\xc8\x5a\x4b\xcd\x6b\x9c\xbb\x82\x12\x42\xc9\x41\x47\xe5\xfd\x8b\x7d\xd7\x92\xad\x0a\x28\xd4\x9d\x41\x10\x0b\x43\x1b\xb4\xd8\xc7\x83\x3d\x85\x05\xdd\x9e\x26\x49\xf9\xca\x70\x51\xbe\x68\x71\x2e\xf3\x63\x71\x02\x03\x6b\x00\x26\x49\x47\x3c\xe2\x59\x67\x7d\x82\xc6\x06\x28\x95\xe1\x61\x92\x8b\x75\x2f\x13\xc9\x1a\x45\x95\x5e\x80\xf0\x07\xde\x69\x0e\xdf\x8a\x0e\x5e\xee\x44\x22\xe1\x62\xb9\xd2\xb4\xa9\x21\xd3\xa6\x48\x45\x79\x3a\xa2\x22\x9e\x9c\x23\x9e\x57\xa6\xb1\xa9\x0a\x52\x54\xc3\x51\x2f\x99\x34\x53\x15\xac\x7d\x34\x57\xf9\x15\x42\x96\xc6\x68\x22\xab\xe1\x84\xd6\x4e\x57\x2b\x9c\x38\x49\x29\x58\xe2\x1b\x02\x92\x67\x54\x10\xe7\x34\x8b\x2b\x71\x8a\x0b\x75\x92\xca\xee\x94\x58\x1a\x94\x8d\x2f\x41\xfa\x03\xc6\x1e"}, {{0xfb,0xd5,0x5f,0xa7,0x43,0xc3,0xa5,0x91,0x0b,0x38,0x57,0xdd,0x0b,0x6a,0xa5,0x84,0xf3,0xb2,0x38,0xde,0x05,0x6b,0x76,0xab,0x76,0x17,0xae,0xb5,0x26,0x38,0xfe,0xf6,},{0xa7,0xa1,0x63,0xc4,0x18,0x3b,0xd8,0x4b,0x75,0x6d,0xf3,0xc8,0xaf,0xdf,0xb9,0xcd,0x5b,0x24,0x23,0x52,0xd9,0x49,0x9e,0xbd,0xab,0x90,0x78,0x5c,0x3b,0xd6,0xdb,0x2d,},{0xef,0xfb,0x29,0xda,0x69,0x85,0x97,0x1c,0x20,0x2e,0x24,0x50,0x30,0x1d,0x49,0x71,0x1b,0xed,0x25,0xfa,0xd8,0x5f,0x61,0x99,0xd1,0xeb,0x1e,0x71,0x91,0x4d,0x96,0x4c,0xbe,0x18,0xe3,0x4c,0xc3,0xe3,0x28,0x72,0xcd,0xec,0x02,0x6b,0xd1,0x19,0xa4,0x1c,0x1c,0x07,0xca,0x41,0xe8,0x2a,0xcb,0xa6,0x2f,0xb0,0xa7,0xc8,0x2a,0xed,0x80,0x0c,},"\xbf\x52\x52\xb2\xae\xca\x11\x63\x77\x1f\x76\x62\x78\x76\x80\x66\xf2\x19\x71\x35\x7e\xa7\x99\x61\x58\xa8\xd6\xe9\x08\xdd\x59\xb5\x99\x71\x34\x9f\xa1\x78\x82\xcb\x92\x24\xb9\x72\xd0\xff\xab\xe8\x55\x10\xdc\xf2\x5a\x9f\x9f\x9b\xde\xfa\xd2\xf4\xca\xdf\xbb\xda\xcc\x1f\xca\x9d\x94\x8c\xb5\x41\x2f\x47\x4c\xad\x23\xb5\xb9\x19\x9b\xf3\xc7\x37\x06\x41\x33\x9b\x75\x0e\x1f\x78\xc2\xad\xb4\x60\xaa\x5b\x21\xb1\xfa\x8f\x97\x71\x4a\xbb\x4e\xd5\xe9\xcb\x51\xd6\xde\x55\x81\x66\x18\xab\xd3\xfd\x2b\x28\x6b\xc1\x1c\x67\xba\x01\x12\x93\x73\xd4\x35\xb3\xe7\xe3\x91\xba\x37\x26\x14\xda\x83\x22\x87\x5e\x46\xa6\x75\xb6\x45\x15\x60\x24\xca\xd2\xdd\x13\xf9\xa0\x81\x61\x6b\xf1\x31\xa2\x43\x58\x89\x4e\x0e\xfa\x1d\x56\x64\x8f\xfb\x42\xef\xb5\x40\x31\xda\x7f\x37\xd1\x97\x61\x51\x55\xae\xdb\x69\xc4\xe7\x09\xc8\xbb\xbe\x7f\xbf\xcb\x59\x83\x47\xac\x5d\x0c\x63\x84\x07\x84\x7b\x28\x1c\xf1\x16\x43\x30\x97\xf5\x66\x21\x58\x71\x9f\xcd\xd3\x7b\xeb\x48\x92\x68\xce\x71\xde\x7d\x70\xed\x92\x5f\x74\x3f\xc6\x3a\x71\x5f\x7e\xee\x75\x49\xfd\xb9\x09\xcc\x45\x4c\x98\x8b\x30\xae\x4d\x77\xd6\x2f\x65\xa0\x7e\x2c\x8f\x93\x62\x38\x5d\x02\x8a\x60\x31\x08\xc9\x45\x87\x2f\x5e\x1a\x97\x41\x98\x78\xed\x49\x54\x2e\x28\x8e\xf0\x7b\x5c\x90\xf5\xc4\x15\x9e\x16\x23\x03\xd0\x80\xf6\xac\x2b\x05\x8d\xdc\xac\x60\x74\x6f\x9e\x1c\x9e\xc1\xdf\x8e\xda\x42\xd6\x27\x38\x58\x6d\x3f\xdd\x65\xdf\x55\xf4\x37\x4f\x32\x94\xe0\x86\x8d\x41\xef\x0b\xb1\xfd\x55\xe0\xcb\xf1\x95\xbb\xfc\xfc\xde\x5b\xdb\x41\xfa\xd9\xa0\x47\x7e\x4c\x90\xca\x27\xfa\x8c\xf5\x03\x36\x2a\x33\xfd\xec\xa5\xa4\xf0\xff\xea\x26\xe8\xd7\xe1\x34\xfa\xd3\xb1\xec\x3d\x05\x60\x55\xbb\xa5\xe6\x5d\x81\x15\x3e\xe8\x31\x87\x3b\x93\x8d\xf7\xd2\xc8\x3c\x2a\x52\xb3\xc2\x21\x82\x7f\x96\x1b\xd0\x08\x36\x22\x32\xd8\x82\xa0\x41\x2a\x04\x7a\xfd\xfb\x85\x97\xc8\x65\xa2\xaa\x2c\x2c\xf5\x18\x99\x34\xa8\x3e\xe6\xb7\x52\xa6\x26\x94\x1e\xdc\xe0\xc2\x0b\x6f\x7a\x69\xf1\xcf\x12\xf9\xa3\x31\xcd\xfa\x9e\xda\x24\xc8\xde\xfa\x76\x9c\xcc\xe2\xef\x74\x6c\x30\x7d\x8b\xb0\x48\x91\xfc\xef\xd4\x9a\xf3\xe6\xf9\x69\x91\xa7\xa2\x0f\x27\xb6\xc0\xaf\x12\x18\xbe\x31\x79\x1d\x1d\x02\x93\xe0\x81\xb9\x0a\xf3\xb9\x2e\xcb\x17\x5e\xc8\xc7\x89\xf7\xa8\x64\x2e\x04\x1e\xc3\xa6\x1a\xae\xfe\xf6\x2a\x80\x7d\x1a\x50\x54\xad\xf8\x32\x3b\xed\x94\x22\x41\x62\x37\x32\xa2\x05\x1d\xc0\x1f\x9a\x20\xa2\x9a\xa4\x8b\x3f\xdf\x26\x5d\x0b\xa6\xc1\x38\xfb\x57\x93\xe2\x87\x50\x02\xe7\xde\x3f\x5c\x3f\xf7\xe8\x3a\xd2\x7d\x11\x1c\x84\x8b\x7e\x6e\x2e\x5a\xd5\xf2\x8e\xb7\xc3\x63\xf9\x5f\x96\x0c\xbc\x42\x13\x36\xce\x98\x5f\x94\x6b\x05\x15\xb1\xbd\xd3\xa8\x32\xc3\xfe\x90\x3f\x7b\x44\xe2\x0c\x92\xea\x80\x82\x6f\xbf\x97\xe2\xa4\xfc\xaf\x2d\xb1\xa0\x86\x98\xdd\x62\xed\xd0\xa8\x45\x89\xd7\x46\x2c\x44\x7b\x4a\x89\x6f\xe0\x08\x60\x04\x24\x96\xbd\x51\xb1\x92\x5c\xb7\x9c\xc3\xb8\x29\x01\x6a\x4c\x7e\x62\x79\x0f\x80\x58\xc5\x46\xf2\x14\x5a\xaa\xef\x4d\x4b\x1e\x27\x3f\xf6\x13\x00\xf8\x00\x8e\x94\x6b\x62\x2f\x60\xe5\x05\xf5\xf6\x29\x0d\x51\xeb\x99\x7d\x20\xfc\x3f\xbb\x3e\x99\xed\xd6\x8f\xf5\xcc\xe9\xe8\xc2\x83\x88\x1c\x36\x4f\xf2\x15\xcb\x50\x04\x5e\x60\xf4\xa7\xee\x45\xb6\xc9\xd8\x64\x47\xf3\x81\x41\xd3\x42\xdb\xc5\x30\x8f\x8c\x66\xef\xc4\x7f\x7c\x45\xf6\xd2\x5e\x65\x64\x30\x9a\x86\x2d\xb9\x0f\x4d\xf3\x31\x78\x7e\xcd\xd8\x9d\x3a\xaa\x46\x05\x3e\x29\xf1\x02\x62\x4d\xdf\xe8\x0e\x8a\x3f\x99\x28\x7c\xec\x19\xfa\x83\xe4\x4d\x55\x7c\x04\x41"}, {{0x5d,0x66,0xce,0xb7,0xc6,0xe5,0x8c,0xac,0x91,0xe2,0x88,0x27,0x91,0x70,0xe8,0x18,0xe7,0x87,0x18,0x0c,0x6b,0x42,0xdf,0xa1,0x68,0x78,0x7d,0xd0,0x7f,0x80,0x9f,0xa4,},{0xef,0xc9,0xb3,0x5d,0xb8,0x1f,0x34,0x61,0x98,0xa7,0xac,0xc6,0x9f,0x65,0xfd,0xfb,0xf4,0xc2,0x2e,0x68,0xdd,0x76,0x12,0xe3,0xb8,0xec,0x68,0xd3,0x78,0x55,0x3b,0x8d,},{0x6e,0xf2,0x64,0xab,0xf8,0xb0,0xe5,0xc2,0xd7,0x93,0xb2,0xc7,0x52,0x79,0x61,0x4a,0x39,0xc7,0x75,0xeb,0x2b,0xcc,0x08,0x91,0x06,0x7a,0xbc,0x61,0xf6,0xd6,0x44,0xa6,0x9f,0xf8,0xf8,0x14,0xa3,0x05,0x22,0xcc,0xa9,0x05,0x36,0xf0,0x12,0xc6,0x28,0x3a,0x76,0xc3,0x2b,0x89,0xee,0xe1,0xbd,0x9a,0x43,0x36,0xf4,0xfd,0xda,0xc8,0xdc,0x0b,},"\x94\xd7\x2f\x6d\xec\x4f\x7c\x92\x06\xb4\x15\x10\xce\x71\xa0\x29\x55\x60\x4f\x3c\x5d\xe8\xe4\x47\xd5\x87\x18\x65\xa7\x58\x98\xa4\xd2\x07\xa2\x6c\xf3\x3d\x10\xca\xf0\x5a\x0b\x6e\xd0\xd3\x89\xfe\xe9\xed\x49\x27\x50\x98\xa8\x8e\x1c\x0d\x83\x04\xe8\x1b\x40\x74\x21\x4c\x7a\x5c\xe1\x57\xeb\x26\x17\xef\x04\xe1\x32\x4b\xa9\x42\x12\x9f\xaf\x32\xc3\x1c\xb4\xaa\xe4\xa5\x91\x6c\x75\x08\x08\x72\x68\x56\xf7\x18\x0e\x57\x97\xed\xe4\x43\x62\xd7\x47\xd7\x0c\xec\x15\x9d\x3b\x6a\xce\xc6\x3a\x51\x4c\x7e\xf3\x1b\x2e\xcd\x16\xdb\x7f\xe6\x8e\xa9\xc5\xea\xd9\xd8\x70\x92\x18\x00\x34\x8f\x69\x54\x12\xf3\x09\x3e\x61\x98\x5a\x31\xea\xdb\x79\xb5\x9d\x91\xdd\x9a\x37\xf8\xd4\xef\x7a\x5d\xdf\x22\x3d\x4b\x24\x77\x4c\x2e\x44\xe3\xf2\x71\xff\xb8\x50\x0d\x59\x53\x81\xb3\xdf\x2e\x8e\x6b\x79\xee\x65\x53\x5a\x51\x9a\x43\xea\xa5\xe5\x2b\x25\x6c\x26\x43\x30\x5e\x31\x70\xcb\xe5\x76\x06\xa0\x54\x5f\x85\x86\x56\x5c\xfb\x75\xbf\x5e\x95\x64\xc6\x2a\xf0\x5f\x15\xee\x6e\x62\xaf\xee\xf8\xc2\xc7\xa9\xda\xe2\x35\xc9\xed\xd1\xd7\xc2\x5c\xf4\x9a\xdc\x03\x3e\xe7\xb5\x83\xf5\x18\xbc\x16\x8e\xa4\x88\x36\xb5\x0f\xfe\xdd\x20\x32\xb3\xf6\x30\xcc\x56\xda\xad\xd5\x13\xeb\xda\x86\x48\x23\x61\x0f\xc6\x7a\x72\xb9\xa7\xd8\x11\x71\x05\xc1\xc7\x1d\x85\xa9\x6b\x1d\x27\xa4\x41\xfa\x1e\x7c\x6c\xf8\x02\x33\xa4\x9f\xe0\xe7\x6a\x40\x27\x8d\x06\xe3\x43\x47\xd8\x7b\xe7\x7b\x98\xde\xd5\xe2\xa3\xea\x1a\xfb\x13\xbe\xe1\xe6\xcd\x6c\xa6\x3b\xe5\x4f\xcf\x88\xa2\x0c\xcb\x7a\x9f\xc3\x24\xbf\x61\x43\x20\x1b\x44\x48\x3b\xcc\x96\x40\x33\xda\xb7\x1c\xf8\xf2\xa5\x91\xfc\x05\x0d\x57\x24\xe9\x5a\xa5\x0d\x32\x89\x6e\xec\x0f\x3b\x34\x31\x1d\x2a\x99\x34\xe9\xf8\x52\x97\x7e\x25\x3f\x15\x30\x4c\xae\x24\x16\xc2\xc4\xfc\xd8\xf1\xfe\xcc\x3f\x1f\x64\xbb\x79\x75\x99\x29\xab\xb0\xe8\xe8\xf5\xf7\x29\x3d\x69\x1a\xf2\x2a\xbd\x3b\x2a\x67\x70\xb0\xcf\x14\x46\x08\xf2\xd6\x2c\xc7\xe5\x2b\xfe\x33\x3b\x2e\xd2\xde\x39\xb9\x9a\xfd\x37\xe3\xac\xf0\x7e\xda\x37\xdd\xf0\xdf\x02\x9b\xff\x2e\xc2\x25\x44\xb6\x0b\xd7\xdb\x23\x8d\xf1\x97\x5f\xfa\x00\x75\xa8\x2a\xbd\x8d\x6b\x05\xb2\x67\x18\x0b\x87\x0e\x21\xab\xf3\x69\x81\xae\x77\x68\xde\x53\x99\x3b\x30\x4f\x1c\x54\x53\x87\x2f\xdf\xa8\xed\xad\x45\xf8\x00\x1a\xa0\xe7\x34\x2b\x3b\x58\xec\x0f\x38\x9d\xcb\xc2\x71\xfb\x0f\x90\x00\x62\x87\x57\xab\xba\x58\xc0\x57\xe1\xa0\x89\x9f\x6f\xaf\x15\xf3\x74\x0f\x31\x43\xf5\xc0\xb7\xa9\x15\x96\x80\xde\x8c\x55\x72\x66\x44\x1b\x3b\x01\xca\xac\x12\xec\x27\x8f\x5a\x10\x25\xdf\x53\xed\xb6\x13\x4c\x96\x66\x3a\x96\x66\xae\x3b\xaa\x90\xfc\x83\x51\x11\xef\x05\x1b\xd9\x12\xf6\x79\x67\x44\x91\x13\xb6\xa8\x5f\x71\xdf\x8c\x60\x37\x72\x4e\xb8\xfc\x7d\x83\x19\xbc\x03\x85\xbe\x9b\x0e\x99\xe9\x5f\x9a\xed\xca\xe8\xd4\x5a\x51\x44\x76\xf0\x5b\xcd\x72\x35\xc0\x13\xeb\xc3\xae\xa9\x12\x3c\x67\xaa\x6f\x3b\x79\xc8\x5e\xa5\xdb\x15\x9e\xef\xad\xfb\x75\xa5\x0a\xc6\xb9\x5b\x49\x6b\x55\x72\x58\x1a\x76\x11\x2f\xf6\xdb\x26\x3f\xc1\x4c\x58\x18\xaa\xd5\xbc\xa3\xb2\xcb\x3a\xc8\x11\x6d\x42\x94\x82\x78\x1e\x06\xf6\x1e\x75\x63\xe6\x50\x5e\x51\xc8\xff\x99\x8b\xf8\x4a\xed\xb5\x20\x2e\x2f\x9f\xf4\xc2\x68\x98\x20\x29\x6c\xc6\x96\x03\x09\x1b\x8b\x81\x8f\xbe\xb2\xaf\x5f\x4c\x57\x06\x0d\x98\xc1\xa9\x04\x84\x3a\x70\xbf\x97\x5b\x3c\x3c\xa6\x03\x1a\x4c\xad\x5b\x4b\xbf\xba\x7e\x9b\x47\x49\x1a\xb7\x40\xd9\xeb\xe4\x1d\x76\x88\x10\xcb\x8c\xc5\x1a\x93\x7f\x7e\x3b\x22\xe3\xcf\x07\xce\xae\x0c\xe2\x08\x31\x49\x5a\xfc\xdd\x8c\x1a\x98"}, {{0x62,0xed,0x86,0x82,0xbd,0x3a,0xb3,0x96,0x6e,0xba,0x3b,0xff,0xb7,0x75,0xa3,0x18,0xa0,0x3d,0x99,0x93,0x19,0x79,0xe9,0x9f,0xeb,0x2d,0xdb,0xd6,0x94,0x55,0xa0,0xef,},{0xd3,0x2a,0xda,0x17,0x8b,0x3e,0xc7,0x70,0x0c,0x47,0xdd,0x6d,0x36,0x53,0x22,0x03,0x3f,0xe4,0x31,0xc3,0x02,0xb4,0x6f,0x8d,0x58,0x79,0x8e,0xd8,0x33,0x71,0x56,0x6b,},{0x3d,0xa8,0xd1,0x4d,0xc4,0xe7,0x1f,0xe6,0xc3,0x2e,0xde,0x46,0x37,0x88,0xe4,0x1b,0x82,0x6b,0x4e,0x21,0x60,0xba,0x10,0xc9,0x5f,0x1c,0x8a,0x27,0x49,0xaa,0xd8,0xf1,0x2e,0x98,0xae,0x24,0x68,0x30,0x3b,0xaf,0x69,0x08,0xbd,0xb3,0x5e,0xf3,0x8a,0x5e,0xcd,0x77,0x74,0x1e,0x72,0xee,0x3a,0x42,0x7f,0xd9,0x04,0xda,0xe6,0x6f,0xcf,0x03,},"\x9e\xb1\x3b\xc7\xfa\xcf\x51\xa1\x80\x54\x1e\xc1\xdc\x5f\x5a\xcb\x14\x8c\x8d\x5e\xad\xcd\x2c\x4e\xf0\x68\xbc\xdd\x11\xb3\x49\x25\xea\xbf\xaf\xab\xfe\x82\xa2\x84\xbc\xba\xee\x13\x81\x15\x2a\xf8\xe5\xe0\x9f\x03\x7c\xf1\xbb\x64\x84\xac\x18\xe3\x73\x59\xbf\xaa\x4c\x87\xaa\x07\xd3\xd1\x4e\xd0\x89\xb0\x53\x91\x0d\x1f\xa4\x73\xf7\xbc\xe1\x43\xe2\xa5\x9c\x4d\xaf\x99\xb6\xc6\xe4\xe9\x29\x1d\x97\xc8\x64\x71\x2a\xf3\xea\xba\x53\xce\x25\x17\xa4\xf7\x5c\xd7\xec\xf2\x78\xf3\x4e\x22\xb7\xdf\xfd\x08\x8f\xa5\xec\xad\xc0\xdd\x22\x13\x5e\x42\xa5\x36\xc6\x84\xf2\x19\x5d\x31\x5f\x69\x24\x57\x1e\x46\x3f\x5c\xfc\x11\xb9\xf9\xd0\x5a\x7e\xa1\x1b\x98\xa1\x69\xa1\xe3\x93\x60\x97\x3c\x50\xad\x45\xc7\x49\x1b\x57\x13\x8e\xc0\x50\xf4\x3c\xbd\x5d\x17\xeb\x3f\xe0\x01\x3e\x3d\x28\xd5\x26\x05\x4e\x07\x63\x31\x52\x24\x6f\x16\x55\x4f\x30\x54\x74\x9e\xea\x68\x7b\x9c\x37\x1b\x40\x9c\xd3\xec\xef\xb1\x11\xa1\xd6\x00\x40\x73\x44\xe6\xd6\xec\x38\xc6\x0f\x6e\x54\x5a\x92\x38\x2e\x46\xc4\xd1\x13\x12\x5d\xbe\x5b\x98\x26\xe1\x27\xf1\x01\x81\xa3\x5a\xcf\xff\x28\xab\x37\x64\xca\x7f\x23\x8f\xf4\x79\xfd\xbc\x45\xb7\xa2\xad\x0f\xf5\x38\xc8\xac\xd0\x01\x8d\x44\x70\xfe\xbc\xc6\xa3\x07\x65\x1c\xb5\x83\x2f\x32\x6b\x19\x24\x1b\xe9\x86\x7e\x4e\xca\x6a\xe3\x6f\x0e\x2d\x83\xfd\x77\xb9\x72\x02\xb3\x64\x71\x6e\x36\xd1\x89\x5a\x36\x85\x3e\x7e\x76\xe8\x8f\x62\xdb\xbf\x77\x26\xc2\x18\x05\x69\xc6\x66\x73\x83\x7a\xd7\x2f\xf9\x36\xcf\x0e\x2f\xdb\x9e\xc6\xaf\xcc\x79\xf8\x82\x9e\x15\x7f\x95\x22\x88\xf4\xe0\x0d\x04\x10\xa7\x22\x53\xbf\x60\x5e\xdd\xce\xb0\x14\x40\xde\xe5\xdd\x32\xb5\xa8\x03\x43\x9f\x03\x8c\x06\xaf\x1c\x90\xb2\x7b\x5f\xe9\x84\x3c\x27\xae\x76\x60\x9c\xbf\x83\x28\x35\xc0\xe3\xc4\xbb\x59\x97\x6c\xce\xde\x44\x87\x86\xd9\x1e\x43\x8e\x07\x75\xc0\x6a\x92\xd0\xf0\xb8\xdc\x0e\xf6\x82\x60\xf7\xdd\x9e\x68\x71\xc4\xd0\xc0\xc0\x94\x63\x85\x26\x15\x21\x85\x16\xf4\xa6\xde\xbf\xdb\x46\x27\x3b\x28\x33\x82\xcd\x9c\xa7\x44\xab\xf9\xfd\x43\x91\x94\xb8\xcf\x1b\xdb\xb3\x17\x5c\xa9\xc5\x7a\x1c\x37\x3c\x41\xfc\xe9\x2b\xd5\xfc\x01\x2b\x19\xa0\x69\x8a\xef\x37\xba\xf8\x06\xae\x09\xad\xd8\xcb\x97\x2a\x9e\xf9\xa7\xa5\xa9\xb1\xfd\x9a\x41\xd8\x54\xc3\x0c\xca\x13\x96\x14\x0e\x20\xc2\xb9\x86\x54\xfe\x6e\x51\x1b\x62\x6a\x43\x91\x5b\x22\xfb\x2d\xad\x74\x7b\xa7\xfe\x74\x60\xd8\xce\xbb\x20\x06\xfe\xa1\x9b\x32\x84\xb0\x9c\x06\xa6\xf5\x2f\x17\x9a\x32\xbe\xb5\x63\x57\xb9\x29\xa6\x59\xf0\xfe\x6a\x26\xb6\x97\x03\x3d\xef\x58\xba\x60\x3f\x43\x0f\x74\xaa\x35\x07\x09\x81\xdb\x74\xcc\xf1\x91\x90\xa1\xfb\x05\x14\x4e\xc0\xa0\x9a\x51\xe5\x47\x65\x06\x97\x30\xb0\x9a\x7a\x23\x31\xff\xb3\xde\x2a\x7e\x02\xc5\xe1\x84\xda\x40\x13\xdf\xe9\x37\xc3\x71\x11\x75\x24\xf7\xb2\x10\xba\x60\xe2\x69\x2d\xcd\xce\xf3\x6a\xb2\x27\xb4\xc4\xf0\x2a\x9f\x48\x89\x72\xb8\x47\xf0\xd6\xb5\x9d\x02\xee\x54\xfe\xde\x88\x21\xdb\x6c\xf7\x31\xcc\x8a\xc8\x95\x35\x0a\xc5\xcd\x4d\x6b\xaa\x3a\xd0\x36\xf0\x6f\x20\xd1\x0a\x14\x0c\x4a\xd3\xd1\x0c\xa9\x85\x53\x2e\x31\x60\x46\x27\x73\x38\x5a\x2e\xb5\xe4\x64\xd5\x28\xe1\xe5\x9c\x29\xf6\x6b\x3d\xe5\x9e\x9e\xa2\x8a\xf3\xf9\x7b\xfc\x55\x89\x03\x57\x52\xa5\xa5\x52\x3d\xec\xd2\xdf\xf0\x1f\xc0\x0f\xf3\x1b\x30\x15\x2f\xf5\xda\xfa\x33\x1c\x6a\xb1\x58\x73\xaf\x41\xaa\x96\x0a\xac\xe7\xd2\xcb\x4f\x95\xc2\x3d\xf4\x4b\x9e\x6c\x6e\x2f\x86\x78\x8a\x87\x2f\xd3\xa5\xcb\xe4\xac\xc9\x58\x10\xda\xa0\x9d\xcc\x1d\xf9\x33\x46\x5e\xf0\x40\xc5\x3d\x9d\x95\x9f\x9d\xad"}, {{0x4e,0x57,0xf0,0x31,0x1f,0xff,0x0e,0x5d,0x53,0x88,0x49,0xb1,0x21,0x6f,0x69,0x5b,0x1a,0x52,0x77,0x94,0x17,0x08,0x20,0x4d,0xb2,0xf0,0xc1,0x5b,0x3c,0x73,0xc8,0x2a,},{0xe3,0x37,0x1f,0xe2,0x36,0xad,0x2f,0x6f,0x42,0xf9,0xe1,0xfa,0x4e,0x1e,0xda,0x2c,0x3e,0x29,0xc3,0x6c,0x8a,0xd2,0x21,0x8a,0x3c,0x03,0x79,0x82,0xf0,0xb5,0x79,0xec,},{0x4f,0xdc,0x7b,0x6e,0x28,0x27,0xf6,0x4b,0xa3,0xc0,0x33,0xc7,0xfb,0x6d,0x1b,0x35,0xdd,0x68,0x0f,0x53,0x29,0x99,0xa0,0xd7,0x7a,0xeb,0x27,0x6c,0x31,0xbd,0x9e,0x39,0xc6,0x70,0x97,0x8b,0xe4,0x72,0x43,0xc1,0x13,0x22,0x3a,0x57,0xaa,0x10,0x23,0x31,0x50,0x67,0x8b,0x40,0xdb,0x78,0x59,0x1c,0x04,0xd0,0x8d,0xf5,0x7a,0x70,0xa2,0x09,},"\x05\x2a\x1f\x41\xeb\xfd\x4b\xf6\x5e\xfb\x0e\xc8\xe7\x4d\xd7\xb3\x06\x5e\x9c\x48\x2c\x49\xb9\x92\x62\xe6\xdf\xa8\x40\x7d\x9e\x31\xed\x34\xd2\x29\xba\x41\xfc\x49\xa9\x4a\x13\x09\xf9\x90\xa9\x9c\xb9\x90\x2f\xb8\x4f\x4e\xde\x91\xbb\x64\x71\x45\x64\xa9\x13\xd5\x74\xd4\xa3\xc2\x86\xf0\xa1\x92\xa7\x8c\xe2\xd5\x5a\xae\x5c\x9f\xb0\x57\xff\x36\x12\x00\x18\xb2\xa8\xb5\x4d\x98\x08\x55\x37\xea\x64\xae\xa9\x99\xd5\x32\x1c\x78\x80\xb3\x6a\xb4\x30\x18\xea\x2c\x92\xa5\xe6\x83\x50\xd3\xde\x85\x26\xe2\xc8\xbc\x91\x41\xf4\x34\x9a\x18\xa3\x4f\x21\xde\x0a\xbb\xf2\x93\x09\x87\x56\x7f\x0a\xaf\x8e\xb1\x91\x45\x58\x0d\x71\x30\x6c\xe8\xa6\x9e\x79\xf8\xee\xa2\x6c\xfa\x0b\x8b\xeb\x49\xcc\x5a\xa2\xbc\x77\xb7\x97\xd4\xf8\xd5\x03\x26\xff\xb9\x37\x39\x9e\x94\xfd\xec\x85\xe1\x92\xf1\x27\x2a\x80\xe9\xa0\xeb\xba\xf5\xd0\x1f\x1b\x97\x06\x08\x02\xbd\x4a\xf3\x4c\x0f\x7d\x7e\x98\x54\x3f\x9d\x66\xd6\x0e\x0e\x6b\xc0\xbf\x9c\x99\x0b\xe3\x1e\xea\x19\x78\xff\xd1\x67\x33\xa8\xab\xe4\x95\x58\xb3\xad\xd0\xdc\xe6\xde\xfd\x64\xdc\x04\x3f\x15\x19\xb1\xe9\xbe\x66\xe0\x6e\x41\xec\xab\x16\x8c\x83\x39\xa8\x5e\x0b\x91\x38\x18\x64\x4e\xa7\xc5\x33\x44\x68\xfd\x71\x96\xa0\x1e\x1d\x4c\xe8\xdd\x1e\x7e\xe3\x13\xdd\x53\x50\xb8\xdc\xe4\xf5\xd7\xa6\xac\x09\x85\x7c\x4d\x3d\x0f\x10\xa3\xd9\x06\x26\x09\x75\x45\x92\xad\x10\x77\xb2\xe2\x09\x6f\xc9\xe5\xb1\x97\x8c\x98\xb5\x66\x0d\xdf\x51\xb4\x6e\xde\x9f\x9d\xcd\x41\xb2\xef\x44\xe7\x9f\x6d\xaf\xf7\xd3\x62\x68\x70\xe2\x24\x3c\xaf\xb2\xf4\x36\x79\x39\x10\x9e\xd9\xc0\x14\x84\xb7\x9e\xaa\x30\xa1\x89\x1e\xa1\x8f\x98\x4e\x16\x1d\xcd\xd1\xbd\xa3\x71\x34\xbf\x67\x35\xd2\xb2\x14\x9b\x48\x98\xda\xcb\xfd\xa6\x1e\x60\x02\xd7\x2a\x6f\xc5\xd2\x1f\x10\x98\x21\x32\x31\x13\x2d\x56\xdf\x68\xd6\xa9\xbf\xdf\x4e\xdd\xc0\x52\x4d\xb8\xfd\x8f\x24\x88\x52\x04\x9a\x68\x25\xa5\xed\xd2\x36\x0c\x00\x9a\xf2\x4f\x0a\x94\xc5\x07\x9d\xdf\x6f\xe7\x96\x94\x5f\xf9\x84\xaa\xc3\x64\x11\xce\x80\xd9\x87\xc6\xed\x67\xb6\xb0\xdd\xb6\xd4\x17\xf6\xe8\x09\x99\x1e\x72\x9d\x14\x7d\xd0\xd2\x1a\x09\x32\x41\x36\x3c\xf4\xef\x3b\x8e\x3b\xa0\x2d\x48\x66\x33\xb6\xb2\x17\xf5\x49\x3e\x2e\x43\x2b\x8c\x2e\x27\xd0\x0c\x5b\x56\xc9\xb6\x5f\x9a\xed\x49\xce\x93\xd7\x7e\x7d\x0b\xf5\xf9\x2f\x92\xf5\xbb\x4b\x59\x5d\x66\xf8\x87\xa4\x88\x01\x33\xf9\x70\x46\x3a\xb8\xb7\xf3\xd8\xc7\x94\xc0\x40\x6e\x88\xe3\xea\xb9\xae\x65\xf1\xa1\x85\xd6\xe3\x9e\x2d\xd6\xab\xb8\xa9\x3d\x2a\xc4\xb9\x20\x83\x98\xda\xb8\x9d\xbc\x07\xa4\x1a\x50\x26\x40\x26\x41\x2d\xa0\x22\xb5\x8f\x48\x9d\x4d\xba\x31\xfb\x88\x2f\xec\xb1\xff\x8c\xa1\x82\x0d\xda\x18\x65\xaf\x15\x51\xe4\x6c\xd6\x18\xb4\x4c\x4e\x6e\xb3\x03\x7a\x93\x33\xfd\xcc\xef\x4b\x89\x51\x89\xe4\x39\x0e\x93\x14\x5d\x26\x4c\xa5\xf4\x52\x02\xa3\xeb\x28\x53\x59\x3f\xee\xd6\xc6\x6d\xbb\x28\x8f\xf3\xa3\xc0\xfa\x83\x2b\x2a\xa7\xe5\x29\xb5\x56\x88\x97\xb3\x14\x94\x02\xa9\x07\xe7\x41\xe1\x01\x1c\xe0\x73\x1c\x91\x5f\x91\x44\x6a\xa0\xd5\xca\xf0\x59\x5f\x18\x16\x43\x4f\xa4\x57\x6d\xb3\xbc\x31\xe1\x0c\xc2\xaf\x33\xf6\x13\xf0\x3c\xa7\xb9\x49\x1a\x0a\x34\x05\x25\x27\x1a\xb5\x37\xf6\x2a\x11\xa8\x4d\xa0\x1c\x7f\x55\x81\xad\x57\x38\xc3\x72\xb5\x33\x5b\xab\x9b\x2b\x9d\xc2\xfe\x91\xe9\x33\x30\x4d\x94\x01\xba\x8e\x1c\xe8\xdc\x55\xc4\xfb\x46\x6b\x3a\x8e\xd7\xf5\x3a\x12\x2b\x83\x81\xd8\xf2\x90\x47\xd7\x26\x4d\x06\xfb\x51\xec\x3e\x70\x07\x1f\x27\x36\xa4\xe7\xe1\x53\x7a\x52\xfa\x25\x6a\x04\xee\x86\xfa\xd2\x7a\xd2\xd2\x8a\x9b\x36\x29"}, {{0x39,0xf0,0x55,0x6b,0x1c,0x5d,0xca,0xb3,0x87,0x10,0x41,0x81,0xbb,0x30,0x4d,0xe0,0xcf,0x81,0x59,0x20,0xb9,0x72,0xe8,0x71,0xd5,0xf0,0xfb,0x41,0x6d,0x8e,0x61,0x6a,},{0xd8,0x5f,0xb7,0x6e,0x78,0xc3,0xd5,0xbb,0x7c,0xa6,0xb0,0x5b,0x31,0x01,0x91,0x82,0x1a,0x4a,0x7d,0x2d,0x9b,0xdf,0x02,0x29,0x2c,0xc7,0xae,0xa5,0x64,0x2e,0x48,0x19,},{0x01,0x66,0xaf,0xed,0x5a,0x8f,0x7c,0x3f,0x7a,0xd6,0xf3,0xfd,0xd2,0x93,0x8e,0xff,0x00,0x89,0x8e,0xab,0x81,0x5c,0x54,0x55,0xac,0x90,0xfb,0x51,0xf6,0xe1,0x85,0x4f,0x0c,0x07,0x53,0x19,0x4b,0x76,0x29,0x59,0x4c,0xc1,0x27,0x1b,0x00,0x34,0x31,0x22,0x1c,0x57,0x4b,0x0c,0x0d,0x19,0x08,0x2f,0xee,0xda,0x51,0xb0,0x84,0xae,0x5e,0x03,},"\xa8\xd0\x34\xe1\x70\xfc\x22\xb5\x7a\x44\xaa\x62\x69\xed\x1f\x01\xcb\xa8\x01\xf3\x98\xdf\x1a\xdf\xe7\xdf\x04\x4d\x5f\xa4\x68\xbb\xfa\x8a\xf4\x74\x9a\xb5\x0d\x24\xd6\x2e\x31\x3a\xc0\xe7\x3a\x64\xb4\x28\x2b\x74\x62\x6a\xf2\xb4\xa4\xb5\x4c\x27\x4e\x5a\x6b\xc2\x80\xb6\xdc\x25\xdc\xfe\x07\x81\x4c\x9c\x81\x6d\x2f\x9e\x36\xc0\x5b\x9b\xfe\xdf\xf7\xc6\xb0\x3c\xdd\xeb\xd4\x73\x5e\x09\x93\xd3\xc3\xfd\xc6\x54\x04\x43\xc6\x00\x5e\x90\x0b\x40\x35\xe1\x40\x8a\x85\x01\x6a\xa1\xb8\x92\x02\x99\x0e\x5d\x84\xed\x99\x81\xc2\x9b\x77\x20\x6d\x7c\x11\x30\x52\xa2\x02\x98\x12\xc6\xea\x13\xaa\xe8\xbe\x0a\xca\x7a\x33\x06\xbf\x61\x72\x42\x29\x8e\x68\xbe\xcd\x0d\x5d\x16\xc8\x88\x7f\xd1\x95\x0b\x77\x85\xa4\x6b\xb0\x22\xb3\x9f\x76\x07\xcd\x89\x13\x71\x8b\x30\x17\xfc\x3f\x86\xd6\x93\x3f\x75\xee\xc5\x19\x1a\xd1\xf1\x98\x9a\x8d\x26\x17\x86\xf5\x6b\xe4\xa9\x88\x37\x0d\xb8\x29\x61\xa9\xfc\xc9\x53\x54\x2e\x51\xc2\xe0\x86\xdb\x0e\x02\xb4\xfc\x34\x66\x94\xab\xd9\x05\x9d\x5b\x11\x72\x26\x47\x66\x9e\x7f\x17\xb7\x45\xa6\x0b\x02\xf7\x33\x9f\xcc\x99\xbc\x35\xd5\x9f\xd0\xb9\x8b\x60\xc3\x14\xab\xd4\xbf\x8a\xa4\xb7\xea\xe0\x9d\xd0\x09\x7a\xcb\x91\x89\xf0\x2c\xf8\x5a\x25\x1a\xc9\x2a\xaf\x69\x1b\x15\xcd\x4a\x33\xb5\x8d\x76\x63\xab\xd0\xb0\x44\x43\x33\x04\x4a\xf5\xce\x20\xfd\x71\xcb\xaf\xfc\x0d\x29\x83\x58\x19\xf4\x92\x93\xfc\x26\xe7\xf9\x78\x7f\xc3\x68\xc4\xd3\x5c\xae\x92\x74\x7f\x21\xca\x1f\x3e\xfd\x87\xa0\xd8\x10\x41\x99\x41\x64\x82\xd0\x7b\xfe\xc1\x28\x1c\x66\xf5\x65\x28\x5b\xf6\x72\xd5\xe7\x48\x64\x00\x66\x0c\x01\x75\x55\xe9\xfa\x2b\xf6\xa4\xe7\x02\x7f\x0e\x7e\x5f\x44\x3e\xd6\x58\xb7\x5b\x59\x06\x12\xab\xde\x0d\x80\xd1\xa2\x6c\xb8\xbd\xe7\x6b\x99\x6e\xff\x6a\x74\xe3\xda\xfc\x59\xeb\x1b\x58\x4f\x45\x97\xa2\x39\xcd\x83\x9f\xa1\xf1\xb7\xbd\xa1\xa2\x4d\x15\x0c\x4e\x24\xb9\x1c\xec\x01\xee\x53\xa3\xac\x85\x2a\x91\x2d\xe1\x95\xa3\xc2\x9d\xd7\x07\x9a\xa7\xe8\x8a\xa8\x1e\x9d\x31\xb8\xfc\xcd\x43\x5e\xda\x11\x3c\x3f\x82\x45\x8b\x7f\x79\x33\x57\x2b\x77\x67\x53\xc9\x22\x40\xcc\x03\x61\x58\xa4\xba\x0e\x56\xef\xed\x53\xec\xb5\x3f\xc0\x93\xfe\xad\x14\x34\x34\x85\xae\x5d\x91\x05\xbb\x16\x3f\x26\x25\x14\xe4\x8b\xe7\x41\x59\xc9\xfa\xbc\xb7\x1d\x1a\x42\x80\xd9\xed\x70\xd7\xe4\x2b\x75\xf7\xfd\xad\xd0\x2d\x69\x19\x8f\x5f\x46\x5b\xf6\x04\xcb\x42\x54\x41\x7b\xac\x37\x14\xb3\xa9\x9e\x6f\x1a\xce\xc9\xe3\xb3\xd0\x97\xf9\x72\xfb\xc3\x6f\x2e\xda\x39\x26\xd5\x61\x12\xd4\xe9\x09\x7d\x89\xbd\xc3\x59\x37\xb9\xa3\x15\x8e\x7c\xdd\x5d\xa4\x01\xe1\x80\xd3\xed\xe6\xb1\xff\x02\x86\x41\x92\xeb\x72\x97\x81\x53\x4f\x49\x64\xdd\xf2\xaf\x11\x80\x0d\x8b\x5b\x6d\x01\xb2\x09\xaa\x33\x69\x36\x6c\x19\xa2\x8c\x79\xa8\x7d\x21\x74\xec\x22\xfb\x14\x89\xa6\x75\x5c\x34\x8a\x99\x6d\x0a\xa5\x6e\x0f\x60\xd5\x8e\x26\xbe\xfa\x23\xa8\x6b\xef\x4e\x35\x29\x51\x2e\x30\xa9\xd1\xc5\xe4\x88\x50\x18\xcb\x97\xae\xb7\xc9\x3c\x5c\x41\xca\xa3\x42\x36\x57\x5c\x22\x6f\x3b\x23\x5e\xdd\xba\x36\x4e\x28\x5b\x6e\x35\x27\x07\xbb\xb3\xb3\x39\xbb\xf2\xa6\x3a\x9c\xb9\xbd\x33\x3a\x77\xe7\x9b\xd5\x8a\x48\xe1\x4c\xe5\x88\x6e\xd0\xcd\x07\xc2\xd1\x65\xa8\x1b\x5e\x6a\x31\xa8\xae\x78\x06\xbc\xf2\xe0\xc4\xec\x29\xa9\x67\x72\x5e\x57\x7f\x17\x41\xee\x68\xf3\x45\xf5\xf7\xab\x0f\xad\x31\xc8\xb4\xb1\x8b\x43\x1c\x49\x77\xd5\xc5\x84\x00\x4b\x45\xf7\xcd\x19\x61\xaf\xfe\x87\x38\xe2\x4c\x38\x26\x10\xef\xe9\x98\x35\x3d\x7e\xba\xf9\x19\xb2\x79\xbb\xb6\x91\xc3\x05\x2b\x8b\x2c\x5f\x09\x80\x8e\xf3\xa6"}, {{0xba,0xb3,0xff,0x7a,0x44,0x48,0xd8,0xa0,0x3d,0x8a,0xcf,0xdb,0x91,0x3f,0x77,0xfe,0x77,0x80,0x43,0x95,0xc3,0xe5,0x4e,0xc2,0x35,0x11,0x79,0x27,0xe3,0x2b,0x50,0xd5,},{0x54,0x97,0x5e,0x35,0xe5,0xb1,0xd0,0x32,0x3f,0x2d,0x6f,0xb5,0xc6,0x15,0x8b,0xf6,0x65,0x4b,0x08,0x4f,0x76,0xbb,0xdc,0xfd,0x72,0x34,0x92,0x29,0xe8,0xe4,0xa6,0xe8,},{0xd6,0xb4,0x13,0x5f,0xc7,0xac,0xb3,0xd7,0xcd,0xf9,0x87,0x89,0x6d,0x91,0xb8,0xa9,0x0d,0xb5,0x84,0xd8,0x93,0x3a,0x6f,0x30,0x29,0xe3,0x26,0x1e,0xc1,0xc3,0x90,0xcb,0xac,0xfa,0xaf,0xef,0xf4,0x43,0xb6,0xda,0x4f,0xdb,0x1d,0x84,0xc6,0x4a,0x54,0x56,0x0f,0xef,0xfa,0x2f,0x1c,0x7a,0x91,0xbd,0xe9,0x73,0x02,0x22,0x92,0x3b,0x67,0x03,},"\xb6\x47\xb6\x7c\xf0\x1c\x2c\xac\xc3\x9d\xe5\x96\x9e\x19\x9b\xe6\xd9\x32\x01\x67\xa4\xce\xbb\xf1\x62\x59\x50\xb1\xe6\xb7\xad\xf5\xca\x24\xd1\x34\x95\x68\x86\x5f\xbb\xfd\x90\xf5\x13\xf0\x5f\x79\xf7\x0a\x63\xa2\x38\x73\xdc\x7a\x19\x5d\x4b\x28\x5a\x08\xf3\x0e\xe0\x61\xd0\xb8\xe6\xb4\xd6\xbf\x9b\x2e\xcf\x2c\x69\xf3\xd5\xa0\x7a\x67\x30\x53\x7c\xca\x4a\x4e\x4c\x7e\xe6\x84\x70\x2b\xff\x88\x3f\xab\x8b\xca\xf8\x93\x11\xc5\x49\x8b\xcc\xb5\xa0\xf7\xc8\xd4\x9b\x54\xf4\x82\xff\xfb\xca\x6e\x7d\xa2\x62\x45\x2b\xa5\x9a\x57\xa6\x87\x9d\x81\xb7\x3c\xd7\xad\xf7\x2a\x3b\xe2\x8a\x37\x3c\xd6\x33\x10\x40\x84\x61\xc2\x1b\x90\x7f\x63\xe0\x86\xb2\x92\xff\x02\x83\x3e\x8a\x2f\x46\xad\xbd\x67\x1d\x02\xb0\x3a\x69\xac\xa2\xe1\x1d\x28\x7c\x52\x2a\x95\x45\x20\x44\x2e\xce\xfa\xa9\x05\xdb\xfc\xc8\x25\x4c\x58\xc3\x95\x4a\x89\xbf\x56\xcb\xe0\x1a\xd5\x63\x19\x71\xeb\x39\xeb\x43\x2a\x85\x4e\x69\x19\x29\xdf\x7e\x48\xb9\x00\xca\x6e\x74\x0a\xcc\xf5\x78\xb3\x17\x95\xb4\x9a\x6c\xa7\x74\xbd\x8b\x99\x31\x06\xa9\xc4\x94\x8c\x18\x71\x49\x48\x31\x59\x90\xa5\xf1\x91\x69\x24\x20\xf2\x89\x32\x8a\xb7\x13\xec\x19\xb7\xea\x89\x4d\x16\xe6\x47\x61\x00\x87\x1c\xf3\x16\x8e\x4f\x93\x5b\x55\x05\xd1\xed\x5b\x0a\xa2\x9b\xe3\x6f\xa3\xa3\x46\xac\x3e\x76\xf1\x43\xc4\x6c\xa6\x91\x23\xb7\x9c\x36\x39\x9a\x0d\x2e\xd3\x02\x77\x24\x94\xad\xf4\x42\xbb\xaf\xbc\x4d\x01\x53\x26\x92\xc7\x85\x9d\xf0\x4d\x2c\xa7\x8b\xa5\x5d\x77\xfd\xf3\xe5\xad\x99\x37\x86\xa2\x4c\xff\x21\x99\xbb\x49\x38\x78\x73\xcc\x41\x4b\x4c\xf1\x13\x7a\xbb\x7e\x94\xae\x3d\xdb\xf9\x7f\x53\x4a\x18\xfc\x5a\xe5\x85\x23\xa3\xcc\x52\x28\x3d\xc7\xb0\x16\xf3\x1c\xd6\x55\x79\x81\xc5\x07\x6c\x77\x4f\x30\x3a\x47\xc4\x27\x87\x0e\x20\x7e\xd8\xbd\x66\x64\x0f\xf0\x92\xdb\x50\x3f\xa1\x24\xbf\xdc\xf0\x20\x05\x1d\xad\xd1\x06\xdd\x24\x58\x40\xb3\x19\x10\xb8\xa9\x06\x0d\x59\x86\xf0\x2b\x60\xaa\x5e\x33\xb4\xd7\x55\x09\x12\xcd\xc5\x77\x6c\x77\x2a\xac\x93\xae\x19\xc7\x3b\x7e\xcf\xca\x38\x9e\x62\x76\x81\xa8\x78\x1e\xb4\x7d\x84\xe9\x34\x60\xba\x89\x1d\x3f\xf6\xea\xdf\x8f\x2a\x90\x3c\x38\x34\x74\xbe\xaa\x42\xb9\x0e\x03\x22\x36\xdc\xd8\x98\xd0\x2a\x40\xef\xb4\x4e\x47\xea\xd5\x2b\x75\xb0\x9c\x7d\xa1\xcd\x6a\x2d\xfd\x4d\x1c\x04\x52\xde\x69\xf6\xac\xac\x1a\x68\xdd\x78\xda\xf9\x72\xae\x26\x08\x21\xe2\xec\x52\x2f\xb5\x74\x9b\xeb\xe0\xad\xb4\x52\xbf\xa4\xfa\xa1\xe9\x79\x11\xc1\x29\x9f\x16\x56\x8d\x68\xee\xf4\x05\xf4\xb1\xcd\xac\xab\xed\x59\xf7\xb0\xfb\xce\xab\x71\x9a\x34\xb2\x99\xf5\x8a\x4a\xe8\x15\x4f\x98\xf4\xd9\xf4\xf1\x40\xb1\xf0\x85\x00\x69\x46\x72\x5e\x7c\x29\xbb\x0b\xc6\xcc\xf2\x53\x44\x97\xc6\x1d\x4c\x16\x12\x62\x4a\x61\xd7\x0d\x26\xc3\xef\xb7\xd7\xc3\x51\x84\x86\x57\xf7\xf8\xee\xbf\x8b\x99\x07\x47\x74\x0e\x6f\x91\x0c\x97\xce\xf1\x50\x37\x57\x65\xc8\xc0\xb3\xb4\x49\xc0\xd0\x9d\x66\xf0\x08\xe6\x7c\xfa\x76\xea\x2b\x68\x08\xb6\xfe\x63\x2e\xaf\xe0\x58\x7f\x37\xe3\x6b\xe9\x8d\xcb\x17\xa3\xf4\xa1\x5b\x65\xa9\xf6\xfc\xf9\x64\x2b\x52\x52\x20\x77\xb1\xfb\x4c\xc3\xc0\x8d\xf4\xb4\x67\xca\x71\x6d\xb1\x6b\x73\x7f\x78\x2c\xdf\x38\x71\x70\xa5\xf1\xf6\xa7\xae\x0a\xb3\xf5\xb7\xc5\x85\xe3\xb0\x65\x5a\x64\x56\xa5\x03\x59\x5c\xe8\xea\xea\x25\x37\x85\x5e\x7f\x0d\x50\x61\xbc\x29\xb4\xe6\x7d\xaa\x82\x46\x3c\x19\x0e\x9f\xdd\xd5\x2f\x83\x22\xdd\xb4\xe0\xf2\x6b\x68\x77\x82\x28\xeb\x57\xe1\xa1\x85\xb7\x02\x5d\xa1\x49\x87\xd4\x4b\xaa\x76\x7b\x22\xee\x7f\x4c\x84\x59\x10\x32\xe8\x8e\xc1\x2e\xb8\xc5\xa4\xb9\xe1\x57\xec"}, {{0x48,0x6c,0x7b,0x43,0x6c,0x1d,0x43,0xd6,0xb7,0x03,0x51,0x22,0x83,0xc1,0x66,0xdc,0x86,0x3e,0x5a,0x33,0x80,0x2f,0x4e,0xa6,0x5f,0xc7,0x38,0x77,0x89,0x02,0xd0,0x14,},{0xb5,0xdc,0x94,0x7d,0x64,0x33,0x7c,0xae,0x82,0x12,0x2b,0xd6,0x8c,0xc8,0x08,0x40,0x59,0x6d,0xe3,0xbe,0x56,0xcb,0xd0,0xc8,0x33,0xaf,0x3f,0xaa,0x3a,0xdc,0x37,0x76,},{0x31,0xf9,0x5c,0xbb,0x74,0x63,0xb8,0x75,0x28,0x65,0x42,0x27,0xbb,0x13,0x97,0xbf,0x10,0x65,0xb4,0xf5,0x76,0x80,0x80,0x78,0x20,0x7d,0xfa,0xf0,0x6d,0x12,0x4b,0x41,0xf4,0xc3,0x18,0xf4,0xa9,0x31,0x5a,0x66,0x08,0x5b,0x9e,0x56,0x8a,0x71,0xe4,0x14,0xed,0x94,0x14,0x51,0x73,0x10,0xc6,0x99,0x94,0x6d,0xb0,0xc9,0x76,0x28,0x52,0x07,},"\xaf\x03\x60\x53\x67\x2d\xcf\x3a\xa2\x6e\x28\xec\x6a\xa6\x42\xce\x28\x4b\x89\x6c\x69\x88\x7d\xfd\xcf\x08\x24\x51\x5e\xb0\x84\x8d\x9d\x97\x0c\xa2\x72\xdf\x77\xa8\x6b\x3f\xf6\xdd\xaf\x3c\xba\xdd\x3a\xb6\x28\x3b\xc3\x7c\xdf\x7a\x56\x07\xd5\xdf\xc7\xcf\x96\x32\x92\x99\xcc\x53\xed\xbb\xe6\x57\xfd\xfa\x2c\xa2\x44\x67\x05\x0a\x0a\xeb\x8c\xff\xd7\xd3\x3d\x54\x3e\xc2\xc1\x91\xcc\x0b\xce\x89\xac\x37\xd3\x32\x93\xb1\x88\x8c\xcb\x76\xc2\x8a\xdc\x67\x1a\x49\x35\xa8\x46\xd9\x07\xe4\xad\xd0\x11\x0f\xeb\xbe\xe5\xae\xc8\x0f\x9d\x2f\xf7\x4e\x2a\xf4\xfd\xbe\xbb\xcf\x49\x10\x5a\x64\x69\xd7\x38\x00\x06\xb2\xca\x44\x36\x48\x14\x45\x4e\x44\x5e\x36\xdc\x00\x12\xf3\x39\xc9\x68\x54\xf8\x36\x44\x2a\x05\xa5\x0b\xec\x90\x73\x27\xf7\x4b\xa9\xf6\xfd\x79\x0f\xf0\xad\x37\x83\xd2\x97\xbd\xcc\xa7\x64\x60\x78\x37\x03\xeb\x5f\x2b\x1f\x51\xb0\xa7\x40\xce\x7a\x8f\x00\xa3\x87\xe3\x63\x62\x70\xa9\x71\xfa\x8f\x15\xb4\x49\x67\x30\xd8\x8a\xdd\x80\x7a\x7f\x7e\x98\x7c\xd4\x15\x95\xa2\xe7\x43\x5d\xf5\x19\x55\x76\xa3\x5f\x5e\x91\xb2\xfc\xfa\xc9\x4e\xd5\xd7\x76\x63\x78\x3b\x61\xe6\x67\x1d\x34\x83\x8b\x6b\x56\x44\xfb\xc1\xc5\x39\xfe\x15\x9b\x77\x92\xdb\x96\x7e\x83\x52\x61\x8d\xda\xca\x0c\xde\x73\x43\x7b\x59\xe7\x80\x1b\x49\xeb\x46\x09\xb1\x05\x77\xca\x26\x92\xdd\x6f\x9d\x5e\x9d\x4b\x5e\x5e\x62\xc5\x91\x3e\x7b\x87\xe6\xb3\x47\xbe\x61\x53\xb1\x71\x99\xc9\x16\xa1\x3f\x8a\x88\x5b\x37\x8e\xf0\x9e\x13\xca\xe4\xd8\xb0\x79\xd7\xd5\xcb\x90\x94\x19\x9b\x0f\x20\x53\x3c\x90\x08\x3b\xc3\xac\xb2\x66\x76\x97\xee\xd2\x2e\x36\x70\xab\xb4\xa5\x53\xe9\x95\xc9\xdd\x95\x94\xe5\x92\x39\x1a\x00\x04\xb6\x55\x65\x44\xf3\x56\x12\xc4\x97\x13\x59\x57\x7c\x47\x63\x82\xca\x53\xb3\xf2\x62\xa5\xe3\x3e\xd2\x6e\xec\x80\x9f\x4f\xdb\xa4\x89\x8a\x11\x36\x75\xcb\x6a\xf7\x17\xdb\x62\x57\x9f\x39\x80\xb2\x14\x63\xbe\x02\x9c\xb4\x16\x0f\xe5\xd2\x57\xc4\x6c\xd6\x66\x4f\x98\x61\xac\x50\xfe\x05\xc1\x44\x05\x7d\xce\x2f\x8d\xf1\x53\x2a\xa7\xaf\x58\x9f\x41\x27\x06\x01\xce\xf0\x6b\xbe\x4f\x35\xc3\x1c\x78\x2b\xb3\xcf\xff\x7d\x5a\xb6\x4a\x14\xec\x41\x73\x61\xf1\xd3\x2c\xbd\x38\xb6\xbd\x0e\x02\x50\x5d\x14\x16\x30\x2b\x85\x05\xae\x2a\x96\xe8\xd5\x33\x9c\x34\x6c\x2b\x06\x62\xd3\x50\x25\x9c\x50\xc5\xe4\x87\x95\x91\x4e\x6f\x88\xe9\x7c\x81\x1c\x39\x3b\xdf\x9a\xec\x7e\xf8\x20\x47\xca\x28\xee\x97\x1c\x17\x5c\x27\xe3\x6e\x10\x97\x27\x96\x0d\xdf\x1a\x1b\x97\x6a\xb4\x4f\x48\x51\x60\x7b\xd9\x66\x80\x8a\xc4\x6d\x54\x00\x31\x28\x29\x7f\x5f\x44\x87\x10\x8d\x6a\x02\xe7\xa1\x64\x13\xd2\xb7\x5e\xcb\x42\xfd\xdf\xb6\x69\xc8\x01\xd2\x3d\xe5\x0a\x6f\x7b\xf6\x58\xf7\x53\xc6\xb2\xb3\xb4\x7c\x06\x40\x10\x5d\x0a\x80\x1b\x32\xa1\x94\x3c\xdc\x15\xc8\x86\x55\x5e\xb7\x5b\xb7\x92\x7b\x93\xc3\x5c\x5b\xe1\xf9\x8b\x19\x6c\xaa\xc2\xda\xd9\x91\xb1\x04\x4e\xa8\x63\x94\x4d\x54\xd8\x83\xab\xc3\xc6\xde\x66\xed\x86\x8e\xe8\x4b\xcf\x9c\x34\xcc\xdb\x80\xfc\xd9\xcc\x04\x02\x74\x77\x32\xcd\x63\x0b\xbf\xa3\xbb\xe8\xb0\x38\xdc\x1d\xbd\xaf\x43\x6d\x9a\xc0\x0c\x02\xd5\x28\xec\xe2\xe7\x91\xee\x31\x2a\x86\x8f\xeb\x2f\x58\x7c\xa4\x4d\xb5\x73\x13\x84\xfa\x18\x31\x14\x20\x61\xb2\xea\xd2\xb8\x0c\x66\xbd\x2f\xa5\xdc\xca\xbe\x6a\x25\xf2\xa4\x93\xfe\xaa\xcd\x23\x1d\x2f\x40\x96\x46\xb9\x42\xa5\x78\x54\x5e\xa4\xfe\xea\x9a\x73\x47\x3f\x79\xdc\xf1\x3e\x0c\x9f\x1b\x49\xfd\x89\x12\xec\x48\x73\x28\x04\x5b\xd0\xfa\x22\x89\x22\xee\x6e\x97\x3e\x61\xf6\xe9\x33\x65\x29\x65\x78\xdc\xc2\x1c\x36\x14\x79\xee\x2d\x24\x87\x9f\x2e\x9b"}, {{0xa6,0xe6,0xad,0x2c,0x37,0x9c,0x6f,0xcc,0xad,0xb4,0xa4,0x9b,0x23,0x2a,0x91,0x42,0x61,0x8e,0xa3,0x01,0x03,0xc3,0x3c,0x22,0x6f,0xf6,0x28,0xbc,0xfd,0x81,0xf4,0x26,},{0xf7,0xc4,0x32,0x3f,0x5c,0x41,0x9d,0x9b,0x3f,0x34,0xa8,0xeb,0x42,0xae,0x7f,0x1f,0xaa,0x23,0x33,0x07,0x90,0x30,0xc5,0xd6,0x4f,0x9f,0xfb,0x1e,0x9b,0x16,0x00,0x2d,},{0x07,0xd9,0xfc,0x24,0x4f,0xda,0xb0,0x01,0x59,0xeb,0xec,0xc5,0xa0,0x08,0x83,0x45,0x3f,0x08,0x31,0x01,0x71,0x76,0x9d,0x29,0x70,0x01,0xe8,0x77,0x01,0x0e,0x3e,0xce,0xd9,0xfb,0x60,0xec,0x91,0xcb,0x4d,0x88,0xe7,0xba,0x40,0xc5,0x30,0xb1,0xf9,0x23,0x79,0x78,0xcc,0xd9,0x6d,0x5c,0xba,0x9e,0x4f,0xa2,0x7e,0x2a,0x0a,0xd9,0xd6,0x0c,},"\x2e\x85\x76\x76\xa5\xbb\x1c\x6e\x9e\x94\x50\x7f\x83\xc6\x0a\x67\xf5\x47\xc5\xde\x9e\x94\x56\x6b\x19\x7a\x6a\xf6\xcf\x47\x52\xe9\x3d\xbd\xef\x6b\x9f\x66\xd1\xfe\xbd\x95\x7e\x42\xa7\xf5\xad\x64\xef\x1d\xbc\xc4\xfe\x69\xae\x95\x25\xd1\xa4\xde\x67\x05\x4c\x88\xf2\x9c\x06\x47\xba\xcf\x8b\x82\xf3\x21\xff\x99\xfe\x9e\xed\xc9\x92\xed\x34\xc1\x17\x7f\xc5\x42\x12\x27\xcc\xac\x10\xfe\xb9\xce\xd4\x08\x2f\x56\x58\xda\x63\x71\x47\x23\x97\x97\x37\xe7\xdc\xbf\xe2\xe8\xb5\xd5\x0f\x91\xdf\xca\x83\xe7\xf9\x5f\x35\xd1\xad\x8d\xd5\x11\x44\x50\x2f\x3d\xf6\x72\x43\x26\x11\xf0\xe7\x66\xa9\x0d\xcc\x2a\x57\x39\xc8\x05\xd9\x5f\xe5\xb0\x41\xde\x9d\x7f\xb4\x7b\x44\x04\xaf\xc8\x03\xa3\xbd\x48\x04\xc7\x81\x7e\xbc\x5b\xdf\xef\x8a\xdd\x9e\x25\x0b\x50\x96\x6c\xa8\x93\x9b\x22\xb3\xc6\xff\x93\x6e\xaa\x65\x9a\x24\x0c\x0c\x84\x8b\x81\x0a\xce\xcf\x61\x81\xe0\xe4\xdb\x8e\x4c\xf8\xfc\xce\x7d\xe5\x59\xcb\xe8\xaf\xa9\xdb\x84\x99\x57\x09\x11\xa3\x88\x7e\x85\x0e\x50\x9c\xdb\x70\xde\xbc\x34\x77\xd1\x21\x75\x01\x4f\x79\xf8\x1b\xa1\x13\xd0\xb7\xb3\x35\x11\x8f\x85\xcf\x59\x99\x6f\x80\x67\x58\xeb\x90\x3c\xc4\x50\xf5\x2f\xee\x10\x2e\xfc\x01\x44\x1e\x9a\xe5\xfa\xe7\x4c\x23\x1d\xfd\x85\xeb\x6b\xad\x17\xd6\xb7\x0e\x93\x85\x84\xfa\xcb\x21\x72\xcb\x03\xbd\x5e\xa0\x7b\x7f\x0d\x37\x1f\xfa\x35\x1c\x0e\xe4\xef\xe9\xba\x4a\x3f\xd5\x43\x87\x46\x55\xe7\xd3\x9c\x53\xae\x86\x32\x98\x02\xe5\xc3\x85\xe9\x28\x3a\x29\x73\xca\xb8\xcf\x7a\xc7\xff\x0f\x91\xd1\xd4\x8b\x58\xab\xfd\xad\x65\x8d\x81\x2f\x07\x88\x16\x76\xbd\x22\x6b\xfe\x95\x7d\x7d\xf3\x0c\x41\x30\xa4\x48\x35\x4a\x6b\x94\x40\x5a\x41\x16\x50\xa9\xc8\xfc\x85\x11\x55\xec\x5a\x8a\x3e\x3b\x67\xae\x0c\x4b\x5c\xb8\x9b\xb7\x3f\xc8\x29\x74\xbe\x62\xda\x73\xf0\xe2\x30\x92\x93\x7d\x40\x5b\xa4\xaf\x6c\xab\x94\x65\xea\x43\xa6\x25\x3f\x44\x57\x08\x2a\x06\xac\x12\xb7\x5e\x88\xec\x68\x44\x87\xf9\x07\x63\x73\xfa\xb8\x89\x28\x59\xd8\xe8\xba\x43\x14\x23\xaa\x80\x5a\x22\x0c\xbf\xda\x43\x1b\x32\xb1\xe0\x31\x21\xf7\xfd\x4d\xe1\x85\x91\xf2\x50\x5c\xc0\xf5\xb2\xb1\xa7\x60\x5f\xbc\xc6\x37\x57\xb0\x7e\x29\x9f\xef\x5a\x2b\x73\x65\x23\x0c\x2e\x92\xa2\x59\x62\xc2\xe8\x01\x2a\xd3\xfa\x9e\xe9\x48\x82\x70\x96\x25\xba\x68\xc7\xb2\x13\x66\x4a\xe2\x53\x2b\x60\x9d\x7c\x9a\xa0\xe8\x3d\x49\x3d\xbc\xe7\x63\x2f\x35\x58\x0e\x06\xd3\x11\x1c\xed\x32\x0d\xd0\x19\x04\x41\xf6\x2d\x9e\x35\xf5\x0d\xe5\x9c\x27\x2f\xb0\x0f\x56\x8a\x00\xb0\x74\x6c\x33\xa9\xbd\x24\x90\xc0\x74\xb9\x1c\xdd\xc4\x87\xef\x2e\x45\xa0\xf0\x30\xe0\x8f\xdc\x18\x17\xbc\xa8\xa9\xce\x29\xd2\x92\x79\xe7\x55\xde\xbc\x28\xdf\xad\xc3\xc4\xd1\xb4\x58\x48\x6e\x3c\x8d\x0c\x43\x18\xe7\xe6\xf9\xeb\x5a\x36\x53\xb3\xf7\xc4\x95\x07\x07\x7c\xd5\xeb\x81\xf1\x0b\x88\x10\x7c\xc0\xf9\x31\x69\x32\xab\xe9\xb6\x4e\x88\x86\xd0\x68\x56\xa8\x5b\xe6\x3b\x0c\x2b\x47\x5c\x0a\xfc\xb0\x69\x44\x26\x86\x0f\xb2\x4b\x5c\x17\xab\x6a\xb7\x73\x3d\x5e\x64\x1b\xe7\x4f\xd5\xf6\xa1\xff\x18\xd2\xf9\xa4\x27\x70\xfb\x30\x75\x0f\x56\xf4\x85\x4e\x38\xd5\x8a\xef\x18\xa2\xa6\x1c\xbf\xb4\x9e\xe5\x76\xed\x97\x73\x7b\xc2\x8d\xf3\x26\x8a\x33\x41\x75\x51\x3d\x97\xaf\x00\x9c\xbb\xcf\xdf\xad\x50\x39\xd6\x9b\xb4\x6f\x70\x88\x67\xd9\xb3\xce\x0b\xf2\xf5\x69\xe3\xcf\xbc\xf6\x13\x6f\x88\x70\xd2\x52\x08\xb2\x1a\x3e\xdc\xb7\x33\x93\xdf\xcd\x41\x72\xc1\x40\x2c\x41\xf3\x6e\x3f\x82\xa4\xea\x6d\xcd\x89\x16\x86\xba\x66\xe1\x43\x20\xaa\x0e\x22\xba\x0c\x1e\xf0\x33\xd6\x62\xcd\xb8\x60\xcd\xfa\x3a\x40\xf6\xcc\x53\x2a\x08"}, {{0x9b,0x6d,0x7e,0x28,0xeb,0x05,0x15,0x97,0x32,0x4d,0xce,0xb7,0xa1,0x89,0x41,0x24,0x67,0x25,0xe8,0x8d,0x53,0xab,0x2c,0x34,0x77,0x11,0x05,0x33,0x0c,0xf1,0xf4,0xae,},{0x88,0x72,0xa5,0x0b,0x5f,0xe3,0x62,0xf8,0xea,0xd1,0xd4,0x0e,0x20,0x45,0xf0,0xd4,0x0b,0x2e,0x7b,0x50,0xb5,0x9d,0x80,0x90,0xbc,0x47,0xad,0x68,0xeb,0xee,0x09,0xed,},{0xc6,0xdc,0x5c,0xa1,0xe8,0x56,0x00,0x15,0xb4,0x93,0xaf,0xe2,0x66,0x6c,0xcf,0x6f,0xef,0xa8,0x03,0xd8,0x52,0x6c,0x83,0x7f,0xe7,0xf1,0x23,0xc7,0x99,0x14,0x27,0xab,0x03,0x0d,0x7c,0x77,0x0e,0x45,0xf6,0xde,0x84,0x81,0x52,0x3b,0x94,0xec,0xe9,0x7f,0x3f,0x16,0x1c,0xf5,0xb8,0xc7,0xae,0xa3,0x9f,0x5a,0xd8,0x26,0xbf,0x8d,0x0a,0x02,},"\xd1\xe1\x98\x7b\xff\x65\xf6\x2a\xd6\x76\x24\xc6\x65\x79\x24\xf5\xd6\x73\xb7\x82\x4e\xbe\x40\x40\x26\xc0\x56\x2d\xed\x31\x43\x44\x0b\xe6\x37\xf9\x8c\x9e\x01\xa6\xaf\xdf\xa9\xa4\x7d\xd4\x9c\x7c\xba\x6e\x3f\xd2\x3e\x45\x52\xf7\x63\x2b\x14\x38\x0b\x27\xcd\x3e\x96\x06\xcc\xe3\x50\xf1\x52\xab\x12\x6b\xea\xd0\xa5\xd3\xbc\xe4\xd4\x20\x92\xd9\x34\xc8\xca\x33\x7e\x98\x7e\x11\xd8\x6c\xfb\xfb\xd2\xac\xc3\x22\x3b\xd1\x67\x44\xa9\x27\x72\x8f\x48\x53\x72\x17\x5c\xc6\x94\xdf\x30\xa7\x3f\x9d\x33\x76\x5f\xf0\x14\xef\x00\x8d\x58\x63\x21\x03\x38\xcc\x34\x82\xcc\x27\xea\x31\x7e\xec\x92\x1b\x0c\x56\x8c\x38\xab\x27\xc4\xa5\x64\xe8\x02\xb1\xb9\x46\x68\xc6\x51\xe2\x0a\x0b\x55\xf3\xa7\x9d\x21\x5f\xc3\xa0\xd0\x49\x04\x01\x09\x32\xc4\xcc\x68\xc2\xa9\xe7\xd0\x0e\x5d\x38\xd8\x2d\xf5\x52\x06\xba\xb9\x5c\xf6\x97\xbe\xbc\x72\x06\xee\xde\xf6\xfd\x18\xd9\xa2\x0c\x2c\xbb\x28\x5b\x00\xef\xa7\x69\xa0\x8d\xab\x2b\x3a\xba\xdf\x00\xd1\x98\xb4\xf1\x92\xdd\x44\xbc\xb9\x14\x31\x82\x3a\xe6\xfd\xf9\x84\x58\xec\xa3\x9c\xd2\x92\x63\xf0\x99\x93\x03\xe7\x0d\xc6\x94\xfe\x01\xc5\x3a\x11\xc1\xd1\xc3\x4c\x1e\xe5\x06\x8a\x20\x1d\xbe\x7e\x10\x08\xd7\x64\x35\x89\x68\xb4\x02\xaa\x39\x85\x49\x50\x7f\x7b\xd1\x85\x08\x00\xe4\x11\xb1\xc4\xe2\x8d\xdc\x04\xa8\x59\xe1\x79\xbe\x8a\xd7\xe6\x67\x0e\x50\x9d\xb0\x27\xad\x7e\x51\x7e\x44\x25\x95\x4f\x5a\x80\x74\x14\xa6\xda\x26\x7a\x76\x4e\x71\x2a\x99\x84\x65\x06\x49\x82\xd8\x51\xa2\x65\xea\x3c\x4d\xfb\x74\xf9\x92\xa7\xcc\xcd\x9a\x82\x68\x7f\xa6\x1c\x32\x2c\x4f\x58\x9e\x86\xb8\x82\x52\x13\xbf\xa9\x51\xda\xe6\xaf\x35\x4a\xce\x18\xf0\x73\x99\x5a\xdc\x95\x83\x9d\xac\x01\x65\x51\x1d\x61\x75\x37\x91\xa5\x3e\x48\xe3\xa8\x27\x3d\x44\x82\x3d\x25\x96\xf2\xa2\xdb\x2e\x5f\x1a\xe5\x97\x22\x1b\xa7\xf3\xeb\xaf\x4a\x7b\x28\x88\x39\x50\x02\xbd\xaf\xf5\x1f\xa5\x4b\xfb\x97\x9d\xe1\x03\x14\x04\xca\x77\x89\xfe\x09\x5d\x4d\x17\xf0\x7a\x35\x55\x6b\x10\xfe\x8e\x14\x17\xc8\xa6\xa6\x31\xc2\xed\x36\xcb\x7a\x0e\x61\x81\x77\x62\x89\xc3\x44\x81\x4d\x42\x13\x1a\x73\xb1\x2f\xaa\x35\xd7\x78\x14\xc6\x81\xa6\x01\x37\x4b\xa7\x1c\xb9\xad\x53\x15\xfa\xd4\x2d\x3a\xcf\xc7\xc1\xd6\x28\x81\x02\x56\xda\xf7\xd8\xc3\xc9\xa2\xe5\xbd\xcf\xb7\x70\x08\x2f\xa6\x38\x16\x89\x58\x52\x3a\x1c\x3b\x03\x5d\xbc\x6d\x5a\xdf\x26\xdf\x89\xa7\xcc\xab\xed\x3e\x7d\xd3\x77\xc1\x6d\xa8\x41\xf1\x3c\x68\x94\xd4\x3c\xeb\xb4\xe3\x90\x22\xf1\xcc\xec\x22\x74\x44\x5c\x78\xb3\xad\xc7\xbb\xf7\x0d\x89\x0b\x80\x23\x6c\xc4\x46\x8f\x95\x69\xc5\x9a\x7e\x33\xb5\x70\xe6\x70\x38\x0d\x24\x4e\x4e\x31\x0e\x11\xc3\x92\xf1\xe3\x34\x05\x4b\x92\xc8\x38\x6c\x16\x1c\xe0\x41\x09\xb0\x37\xbd\x62\x8d\x91\x9d\xcb\x62\xda\x14\x35\xbf\x94\xe8\x8b\x0a\x88\x46\xd4\x86\xd1\x67\x78\xf7\xa3\xb8\x80\xe6\x60\xf4\x41\xfd\xf8\x6e\x56\xb8\xaa\x06\x61\xf5\x5a\xae\xce\x27\xf9\xdd\xaa\x0e\x2a\x22\xc2\x15\xb0\x40\x53\x97\x26\xb9\x85\x39\x15\xa1\x59\x2d\xff\xea\xe3\x2d\x7b\x5b\x67\xeb\x62\x05\xbb\x0b\xd7\x27\x9f\x78\x8d\x5f\x83\x3c\x40\x66\x78\x0c\xa0\xa4\x2d\x3e\x4e\x1a\xa2\x2b\xd0\x6b\xb5\xee\xd8\x9b\x94\x13\x77\x1e\xca\xb6\x44\xca\x72\xd1\x29\x1d\x00\xf7\x40\x90\x1a\x73\x11\xdc\x03\x67\x15\xd2\x3e\xbd\x9a\x59\x89\x16\x28\xf0\xd8\x7e\xd4\x89\x50\x2f\x06\xd7\x5b\xbd\x11\xcd\x16\x02\xa3\x5e\xe7\xe1\x33\x35\xd6\xa1\x44\xb0\x88\x30\xe6\x69\xc0\x2e\x65\x2f\x3f\x10\x0d\x39\x3e\xf9\xb4\xac\x05\x32\x14\x39\xbc\xe6\xce\x36\xff\xc5\xab\xca\x89\x0b\x87\x96\xcc\xb5\xe1\x63\x03\x55\x9c\x5d\x91\x17\xf0\xf3\x1d"}, {{0x70,0x09,0xed,0xd0,0x79,0x50,0x96,0xed,0xc4,0xfe,0xd5,0x5a,0x17,0xcc,0xf4,0x84,0x13,0x1e,0x60,0x8c,0x6d,0x5d,0x66,0x96,0xbf,0x33,0x76,0xe2,0x69,0x24,0x95,0x9b,},{0x77,0x57,0x4b,0xf0,0x69,0x52,0x71,0x45,0xe7,0x2d,0x3e,0x85,0xce,0x7d,0x4f,0xcd,0x67,0x1a,0x33,0xe0,0xa7,0x1e,0x6b,0xf0,0xda,0x7e,0xa4,0x71,0xdd,0x6e,0x86,0xa4,},{0xb7,0x01,0xb8,0xf9,0xa4,0x34,0xe0,0x6d,0x71,0x9a,0xd2,0x5d,0xcc,0x54,0x06,0x0c,0x79,0x86,0x64,0x7f,0x44,0xf3,0x88,0x4b,0xcb,0x6e,0x5e,0xe1,0xd7,0xa4,0x46,0xcc,0x26,0x5c,0xec,0x02,0x9b,0x53,0x7d,0xa7,0xf2,0x52,0x33,0x26,0x55,0x8a,0xc9,0xba,0x34,0xf4,0xcc,0x2a,0x97,0xcc,0xa3,0x45,0x2e,0x70,0x56,0x2e,0x7a,0x8f,0x55,0x04,},"\xb1\x2c\x12\x47\x05\x39\x54\x7c\x2d\xe6\xbc\x4e\xea\xc7\xb6\x3e\x50\x8e\xd7\x10\xf3\x56\x37\xd9\xfd\xd2\xdc\xca\x32\x2a\x7a\x50\x71\xda\xb2\xb2\x84\x5e\x30\x79\x28\x06\x03\x5c\x9f\xcd\xaf\xe2\x78\x3e\x3b\x67\x7d\x6b\xe5\xaa\xc7\x0b\x33\x91\x0a\x2b\x95\xe8\xb5\xd5\x9b\xda\x61\x59\x35\xa4\x17\xb7\xae\x19\xa7\x85\x37\x74\xe8\x9a\x12\xaa\x54\x7b\x41\x92\x97\x9a\x01\xef\x6e\xf3\x2a\x40\xde\x79\xd6\x80\x05\x7a\x83\xa0\x74\x61\x7c\xa6\x50\x1f\x59\xe7\x35\x64\x92\x7c\x38\xb5\x8c\x19\x58\x5a\x2c\x03\x65\x9c\x02\x6e\x4d\xe3\x80\x6d\x6c\x1c\xa8\x95\x8d\xee\x47\xbc\xb8\x89\xe7\x6d\x2c\x3a\x9a\xb5\xb8\xb6\xaf\xb2\xe8\x42\x29\x80\x56\x56\x7b\xf9\xb5\x89\x57\x41\x54\x83\x33\x62\x33\xef\x49\x20\xfa\x57\xf4\x96\xe1\xf0\x34\x8c\xca\x20\x36\x64\x96\xfa\xb3\xa7\x5b\xf4\x21\x4e\xce\x47\xa4\x5f\xea\xa1\x39\x2d\xb3\xf2\x54\xd9\x6a\x7f\x37\x40\x2c\x98\x11\x14\x0d\x73\x58\xb4\xef\x8f\x20\xa2\x98\xee\xef\x90\x4e\x37\xd6\x8f\x37\x8d\x33\xcb\x96\xd0\x0c\x03\x10\x9f\xc8\x3f\xd0\x6a\x87\x6c\x92\x48\x2f\x61\xab\x79\x14\xeb\x7c\x2e\x5e\x84\x06\x6e\x0e\x91\xe2\x1e\x42\xe9\xbe\x23\xdf\x12\xb5\xc7\x47\x97\x3c\xb8\x64\x42\xc3\x22\x91\xd3\xd1\xae\x71\x9b\x36\xa6\x2f\xaf\x3a\xba\xa2\x05\x3a\x31\x3f\x62\x5d\x85\xc5\x1a\x51\x98\x57\x19\x15\xef\x8a\x2b\x19\x9b\xa3\x7d\x25\x88\x45\x75\xba\x1b\x72\x84\x4c\xab\x43\x28\xb5\x7f\xab\x1e\xc9\x74\xee\x8e\xa1\xdf\x7c\xa9\xc7\x8a\x4d\x3a\x03\xbc\xb0\xab\x41\x69\xbf\x06\xa3\xa4\x38\xd9\x56\x6c\x6c\x50\x1d\x8d\x9c\xcc\xcb\x1a\xc2\x6b\x4d\xa4\xae\x1a\x9d\x8e\x8b\x9d\xf6\x62\x82\x1a\xd9\x75\xc9\xb0\x15\xfe\x26\xf6\x89\x8d\x22\xab\x91\x2f\x0e\x40\x5a\x5b\x27\xcf\xd3\x9d\x65\x7d\xcd\x92\xcd\xeb\xe6\x79\x19\x02\x71\x34\x84\x40\x6d\xdd\xce\x71\x18\x87\x31\xe4\x43\x19\x38\x1a\xf2\x7d\xaf\x76\x79\x22\x73\xb8\xc3\x52\x51\xd1\x1b\x83\x6a\xfe\x8b\x3c\xe9\xb4\x02\x73\xf6\x91\x5e\xbe\x6b\xc9\x5a\x75\xbb\x94\x1a\x42\x92\x09\x86\x7f\xba\x87\x64\xbf\x6c\x40\xdb\x6e\xec\xb4\xf2\x17\x47\x83\x7c\xf6\xae\x7f\xbf\xe3\x6d\x50\x23\xdf\x7f\xce\x2c\x0c\x3c\x57\xaf\x28\x98\x88\x53\x13\xc5\xc4\xbd\xa3\x5c\x7d\xa6\xcb\x29\x93\x2f\xb1\x99\x1f\x62\xbb\xb0\x80\xb3\x2e\x20\x50\x61\x93\x11\xae\x69\xab\xb3\x02\x2d\x91\x3f\xa9\xea\xbd\x5d\x5c\xb4\xdc\x54\xd7\x5d\xca\x63\x8c\xda\x9a\xf3\x31\xc0\xcf\x4d\x20\x07\xb6\xca\x39\xf6\x55\xa6\x1c\x01\x03\x9f\x12\xa4\xb9\x78\x2b\xc3\x9a\xec\x4d\x22\xef\x00\x93\x38\x8d\xd7\xd5\xb5\x6d\xfb\x8a\x7f\x9d\x86\x69\x00\x4e\x28\x78\xdd\x8a\x6d\x76\x85\x7c\x08\x45\x24\x50\x68\xfe\xe1\xc5\x31\x96\x31\xe7\x8d\x37\x85\x16\x5c\x70\xaf\xd6\x52\x99\x30\x13\x78\x55\x1e\xbf\x61\x35\x84\xc6\xa7\x62\x0a\x0e\x3b\x67\x79\xf3\x8c\x09\x40\x06\x24\x97\x00\x8e\xb2\x33\x87\x08\x68\xc2\x1c\xcc\xac\x23\x95\x01\xb6\x3b\x74\x9a\x85\x60\x2c\x28\xa0\x95\xca\xfc\x74\x9b\x05\x11\xa6\xc8\x78\xed\xb3\xb7\x80\xea\x17\x4d\x07\xb1\x21\xe3\x15\xa8\x26\xdd\xa6\xec\x8d\xc5\x43\x63\xe2\xcd\x2e\x63\x05\xa1\x94\x82\x5c\x0e\xa9\x0e\xfd\x7a\x9f\xd8\x9c\xd9\x7b\x99\xc4\x30\x0b\xd3\xbf\x93\x53\xd8\x2f\xbc\xce\xea\x71\xb4\xee\x3f\x1a\xae\x95\x39\xb4\xcc\xe9\x0c\xa4\x77\x59\x7c\x17\x4e\xf2\x0f\x4b\x9f\x4e\x62\xd0\x9a\x57\x0d\x31\x35\xaa\xbe\xe9\x55\x1f\xa6\x09\x83\x95\x8c\x0b\x7b\x8c\x37\x44\x55\x3e\xe1\x4e\x7f\x3c\xd1\x03\xa1\x92\x51\xc9\x9b\xf6\x38\x4a\xbb\x60\xa7\x6a\xfc\x66\x58\xb8\x0d\xfc\x51\x10\xad\xc4\xc7\x32\xfe\x0e\xe3\x29\x33\xfb\x28\x48\x28\xe0\x08\x88\x7a\xef\x80\xf6\xf8\x13\x34\x04\x46\xc0\x21\x7c\x12\xee"}, {{0x12,0xfe,0x8e,0x5c,0xe2,0x0c,0xaf,0xaa,0x32,0x79,0xda,0x7b,0x34,0xaa,0x87,0x75,0x2e,0xad,0x67,0x9f,0x15,0x61,0x28,0xaa,0xef,0xb4,0xaf,0xa5,0xdb,0x4f,0x2a,0x6f,},{0xe7,0x7f,0x44,0x20,0x6b,0xb0,0xc4,0xc5,0x9a,0x28,0x70,0xcf,0xc2,0xec,0xac,0x63,0x36,0x2d,0xee,0xcb,0xe8,0x11,0x5d,0xe5,0xcb,0x1a,0xfc,0x2d,0x9a,0x3d,0x47,0xf1,},{0x04,0xea,0xf9,0x00,0x96,0x6e,0x09,0x92,0xd3,0x6e,0x3c,0x22,0x0a,0x4b,0xd4,0xd8,0x2b,0xcc,0x6e,0xb9,0x98,0xed,0x05,0x1d,0xbc,0xb9,0x16,0x0b,0xcd,0x35,0x74,0x09,0x73,0x6b,0xcf,0xf7,0xe6,0x63,0x0e,0x96,0xf5,0x53,0x8a,0xec,0xa6,0xab,0x8b,0x0d,0x0b,0xd8,0x2c,0x0c,0xd7,0xc4,0x54,0x99,0x17,0xfe,0xbb,0x9c,0xba,0xda,0x08,0x0c,},"\x6b\x80\xcc\x6f\xbb\xd3\x32\xf8\xc6\x19\x7c\xdf\x2e\x6d\xc1\x9a\x21\x30\xfa\xa2\xec\x93\x8e\xf5\x58\xb8\x84\xba\x4f\xa5\xe1\x13\xe5\xb3\xe4\xb1\xaa\xf5\x1b\x69\x5f\x13\xef\xfe\x13\xf7\x7d\x39\xca\xb3\xc0\x7d\x04\xd6\x6d\x43\x0d\x99\x74\xb1\xda\x3d\x39\xdf\x12\x78\xc0\x0d\x6b\xcb\xfd\x4b\xae\x75\xb8\xc0\x76\x40\x4d\xbb\xb8\x34\x48\xfb\x49\x3d\xf6\x70\x00\xf9\x7d\x24\x7e\x8f\x23\xdc\x08\x1f\xce\x99\x2b\x65\xa2\x1b\x35\xd7\xbd\x7f\xa7\xdc\xcc\x54\xa5\x60\xaf\xd1\x4b\x1e\xc4\x36\xc1\x09\x46\xf6\xaa\x59\xea\xe1\xbe\x3e\xcf\x31\x1d\xef\x51\xe4\x6b\x6b\x4d\x1d\x08\x0d\x17\x84\xb2\x33\x4b\x80\xcf\xba\x72\xcd\x93\x1f\x55\xec\xd2\x98\xb0\x5d\xc8\x36\xab\x12\xd0\xad\x8b\x5d\x6e\x9b\x1e\x3c\xea\x3d\x84\x33\x68\xee\xf1\x9f\x5c\x14\xc6\xbb\xad\x94\x14\xcc\x7a\x4d\xb6\xa7\x26\xe4\xfc\xae\xd4\x44\x40\xa0\x19\xfe\x12\xa6\x05\x73\x40\x3c\x0e\x66\x2d\xc9\x02\xd1\xc8\x73\xff\x30\xc9\x31\xba\x7e\x43\xa3\xb3\xbf\x71\xd5\xb0\x94\xea\x50\x49\x71\x64\x7c\xa9\x43\x56\xf0\xa5\x3e\x44\x4b\x4c\x00\x8e\xe5\x97\x72\x04\x22\x1b\x40\x0d\xee\xc3\x7f\xc2\x73\x45\x25\x45\xf8\xf2\x18\xbe\x98\x87\x25\xbc\x38\xc8\x5d\xf2\x12\xea\x73\xdc\x0b\xc7\xcb\xba\xc9\x07\x98\x2f\xef\xad\x68\x0f\xbd\x97\x5c\x20\x93\xa7\xfe\x8e\x6b\x37\xc1\xcc\xed\x87\xf8\x1d\xaa\x57\x29\x1a\x5a\x18\x47\x6d\x11\xa1\x8e\xc4\xb5\xcb\xce\x5d\x55\xac\x9b\x62\x4b\x04\x84\x30\xf2\x54\xf6\x71\x07\x85\x06\xe6\x98\x9d\xf7\xc0\x92\x56\x52\x50\x39\x08\x5a\xb7\xc1\x30\xc2\x40\x00\x4a\xbb\xb3\xaf\x6b\x48\x1c\xc1\xa0\x61\x7e\x57\xe3\x88\xee\x4b\x1f\x05\x2f\x34\xa0\x03\xfe\x6b\xb2\x02\xcb\x87\xd2\x74\x1b\xd8\xe3\x45\x4c\xa7\x3d\x2f\x61\x20\x11\xec\xc7\x4d\x88\x34\x35\x10\xa6\x3c\x93\x13\xdd\xc3\x6c\x25\xd3\xfb\x03\xe1\x88\xf5\x60\xbd\x02\x9c\x80\x15\x85\xce\x55\x29\x88\xdc\x55\xb7\xd8\x52\x2a\x33\x96\xc0\x1d\x5e\x71\x5a\xe2\x6c\x62\x2c\x64\xfe\xd5\xb9\x8e\x9c\x55\x9e\x4a\xa7\x8d\x1e\xd3\xb7\xb8\x90\xd4\x77\xec\x8c\x50\xa0\xff\x10\x7a\x3f\x83\xb0\x7b\xd3\x5e\x9c\xe9\xa0\x8b\xcf\xc0\xf1\x68\xee\xc7\xaa\x31\x1f\x71\xc6\x6a\x71\xce\xb9\xd5\xa2\x19\x9a\x14\xbe\x36\x86\x5c\xa8\xd0\x7e\x18\x6b\x13\x92\xb9\x29\x0c\x57\x80\x04\xd5\x84\xf1\x91\xc8\x2a\x53\xd8\x50\x89\x0b\xcc\x0d\x12\xdf\xf8\x40\xe0\x43\xdd\xdc\x2e\x67\x0c\x83\x60\x20\x92\x4f\x58\xc0\x44\xb2\x18\x76\x3c\xa6\x19\x82\xbc\x33\x2d\x24\x7b\x2a\x00\x8a\xb5\x70\xb6\x56\x5a\x06\x89\x2a\x26\xcf\xb0\x85\x3d\x79\xda\x28\xef\x8b\x91\x0a\x93\x29\x54\x4b\x79\x2a\xe4\x45\x6b\xa7\x76\x50\x66\xb9\xd1\xb4\xa3\x00\x21\x04\x48\x66\x0a\xe4\x8b\x50\x44\x41\x01\x7c\xdd\xd1\xf6\xf0\x09\x38\xb1\x07\x2c\x8a\xb8\x24\xad\xfe\x8a\xe3\x49\x23\xc8\x2e\xec\x75\x4b\xee\x1a\x65\x50\xab\x1d\x3d\xa0\x86\xe3\xae\xbb\xf2\x11\x69\xc4\x44\x69\xe0\x3b\xba\xe0\xd7\x2c\xe8\x63\x45\x77\x84\xcf\xe1\xdf\xc2\x76\xf1\xaf\xad\x9e\xe5\x3e\xba\xb5\xa3\xc6\x57\x2e\xb1\xca\xe0\x99\xa4\xa5\xfe\x19\x31\x92\x90\xe6\xa1\xb8\xb0\xe7\x54\x1e\xd7\x35\xb3\xf2\x1b\x1e\x2c\x75\x09\xf8\x7f\xd1\xfe\xd0\x00\x07\x47\x9b\x3c\x1b\xb7\x84\x32\x46\x63\x02\xd2\x46\xd8\xd0\x31\x99\x63\x07\x26\x0a\x0c\x41\xa0\xe3\xec\xd1\xe7\xfd\x83\x4d\xac\x11\xa1\x3e\xb0\x36\xb3\x9c\x36\x99\x66\xfd\xef\x39\x4c\x18\x3e\x54\xe7\xb0\xcb\x3d\x0c\xeb\x19\x8b\xd0\xe6\x6c\x00\xd3\x8d\xb7\x03\xaa\xce\x30\xcb\xbd\xab\x36\x9d\xfd\x1d\x9e\x51\x4d\x09\x68\xf1\x00\xc9\xf0\x7c\x31\x50\x89\xad\xb3\xad\x02\xe5\x9c\x04\xb9\xbe\x46\xe9\x9f\xbf\x5a\x62\xc6\xbb\xec\xdf\xf5\xb3\x81\xe5\x51\x27\x82\x4d\xdb\x18"}, {{0xee,0x9b,0x6c,0x2e,0x0c,0x9b,0x01,0x47,0x2c,0xe3,0x2d,0x54,0xd1,0x76,0x2a,0xb0,0x30,0x33,0x17,0xd7,0x6d,0x3a,0xa7,0x8f,0x5e,0x08,0xa9,0x02,0x4c,0xa1,0xe0,0x83,},{0x01,0x6d,0xf0,0xf7,0x17,0xbc,0xb7,0xad,0xf6,0x26,0x95,0x8d,0x83,0xbf,0x8a,0xa3,0x25,0xc7,0x05,0x18,0xc6,0x8b,0xc7,0xef,0xd8,0x42,0x53,0xb7,0x5d,0xb0,0x87,0x88,},{0x4b,0x00,0x1d,0x96,0x42,0x83,0x5d,0x72,0x13,0x8d,0x68,0x01,0x98,0xe6,0xaf,0x70,0xb5,0xde,0x7a,0xf0,0x15,0x13,0x1e,0xa7,0x26,0xf4,0xe5,0x1b,0x5e,0x8b,0x6d,0x48,0xc2,0xa6,0xca,0x8e,0x87,0x09,0xcc,0x82,0x22,0xa5,0x04,0x7c,0x09,0xa6,0x6e,0x51,0x8a,0xc5,0xe8,0xb6,0xe5,0x35,0x48,0x94,0x82,0x61,0xf0,0x70,0x1f,0x68,0x73,0x08,},"\x77\x2c\xc2\x5c\x3b\x69\xbb\x3f\xf5\x65\x56\x64\xef\xa4\x78\xac\x41\x4a\xdf\xae\xa7\x0a\xc4\xa2\xa8\x87\xed\x39\x68\xc5\x4d\x34\xdb\xf1\xbe\x32\xcc\x9a\x9b\x54\x20\xa4\xad\x3c\x9a\x87\x7b\xc8\xcc\xec\x94\xad\x47\x3a\xa7\xa3\xc7\xde\x08\xa0\xfd\xb5\xed\x1e\x89\x87\x2b\xe7\x81\x70\xbe\x22\x1d\x27\x97\x76\xbb\xc6\xed\x9c\x5a\x67\x16\x89\x80\xd5\xea\xf8\x95\xe1\x34\x0f\x5d\xfa\xa3\xdf\x62\x2d\x65\x44\xb3\x99\xd7\x49\x45\xfd\x13\xbb\x11\x73\x62\x1e\x05\x61\x51\x46\x40\x13\x7a\xa7\xbc\x9c\xb7\xde\xbe\xff\x2c\x62\x69\x77\xd4\x47\x26\x3b\x7e\x57\xd4\x3d\x69\xef\xb2\x30\xcd\x25\x86\x5e\x4d\x92\x48\x28\xf5\xe3\x6f\x96\x4e\x40\x3e\x34\x93\xf3\x0d\x6d\xfe\xa6\xca\x3b\x78\x10\x75\xb5\xe3\xb2\x5c\x05\xac\x50\xe5\x55\xf1\x5b\xa1\x2b\x0e\x05\x9b\xff\x99\x64\x84\x12\x9d\xb6\xea\xfd\x88\x99\x3d\x6f\x0b\x7e\xcd\x15\xdc\xe2\xfc\x99\xf8\xb8\xe4\x35\x16\x35\x2d\xdb\x46\x1a\x04\xb9\xff\x34\x86\x45\x2e\x6a\xa6\xa5\x4b\x2d\x10\x62\xa7\x71\x42\x50\xcd\x2a\x88\xff\x6c\x4c\x17\xb6\xcc\x66\x52\xd8\xc5\xac\x27\xd4\x44\x3a\xeb\xf3\xd5\xfb\xaa\xee\x45\x21\xec\x76\xf0\x41\x3d\xb6\x44\x21\xec\x8d\x69\x49\x62\x67\x25\xfe\x56\x16\x0a\xb3\x07\xc0\xe7\x39\x06\xc4\x51\x55\xef\xab\xb4\x72\x22\x02\x1f\x22\x0d\x32\xbd\x3d\xb0\x71\x2a\xbd\xe2\x59\x9e\xa4\xff\x79\x97\x17\x81\x1d\xcd\xf8\x18\x2d\xf6\x71\x6d\x2a\x03\x8a\xee\x15\xd7\x78\xda\x55\xac\x20\xf0\x1f\x25\x30\x9c\xea\xd5\xb5\xb7\xb2\x23\x22\xe1\x82\x8e\xa7\xc9\x1a\xe6\x66\xf2\xdc\xd6\x84\x07\x31\x48\xe3\x1b\xb2\x24\x7d\x5f\x93\x50\x6e\xa8\x08\x52\x27\xad\xc9\xae\x19\x82\xe9\x50\xf0\x06\xa9\xda\x15\x8b\x9c\xec\xff\x89\x29\x76\x1c\x84\xf9\xd9\x76\xfd\xcd\x31\x7f\xfe\xd3\x6c\xbf\x6a\xcd\xa3\xe5\x0c\x9b\x73\xbd\x2c\x80\x85\x40\x9d\x11\x9b\x64\xce\xd7\x34\x9a\x26\x74\x26\x2a\x83\x2b\xec\xb0\x3c\x2e\xdc\xca\xc0\xec\x54\x12\x4e\x82\xf8\x10\x18\x17\x92\xda\x49\xea\x10\xbd\x94\x1f\x98\x95\xa0\x69\x59\xfd\xe0\xd3\xb0\xae\x84\xc3\x9d\xf0\x53\x90\xab\x33\xc3\x6c\x79\xca\x22\xe6\x59\x4d\x7f\xc6\xe3\xf8\x69\x22\xd7\x8e\xb7\xf5\xc2\x54\x95\xd8\x22\xa3\xb4\x10\x51\xb2\x4e\x57\xa7\x6f\xcf\xc1\x65\xcd\xe6\xd0\x96\xcc\x7b\x7e\x9d\x05\x5f\xe8\x64\xd5\x29\x42\xd6\x29\xa8\xac\x26\x1b\xe1\xdc\xd3\xa2\x1f\x89\x5f\x49\xb6\x7e\xe4\x7e\xab\x7c\xf1\x64\x4d\x57\x1d\x5f\xf3\x8c\x17\x9f\x5c\x6a\x54\xa3\x61\x2f\xb3\x47\x53\x41\x2a\x1b\x95\xbf\x62\xff\x31\x79\x80\x4f\xfb\xb9\x90\x51\xf2\xb0\x80\x56\x3a\x4a\xe0\xf2\x7c\xf9\x96\xea\x8b\xe3\xba\xe0\xa4\x33\x9d\xcc\xdf\xf6\xb6\x67\x15\x59\x26\x6e\xaf\xf4\xef\xf6\x82\xb8\xde\xe8\x9c\x9d\x2d\x45\xac\xdb\xec\x4a\xa6\xce\xcd\xbd\xb1\xd2\x84\x60\x9e\x65\xef\xb7\x7b\xb8\xf1\xa5\x1f\xc4\xd4\x56\x8a\x70\x5f\xb9\xc9\x7b\x23\x03\xc1\x46\x7d\xff\x8c\x8c\x5e\xe2\x75\x59\xb9\x3a\xd1\xc5\xb9\xc5\xc6\xc7\xc5\x29\xfa\x8c\x55\xc7\x5e\xbb\x59\xb2\xa8\x18\xaa\x9b\xda\x1e\x9e\x79\xbc\x66\x02\x97\x72\xf8\xae\xa1\x1b\xad\xd3\x22\x65\x65\xd5\x4f\xd0\x1b\xda\x8c\xb2\x70\xe7\x0d\xc9\x33\x9b\x46\x90\x0b\x58\x18\xe9\x32\x07\x5b\xe6\xc2\x8e\x73\xa1\x91\xd0\x2c\xbd\xc7\x45\x4b\xe1\x23\x87\xb0\xd4\x7a\x1a\xb1\x42\x32\xd2\x34\x2a\x6f\x15\x18\xea\x97\x09\x8b\x81\x5a\x1c\xa3\xf9\xc7\x0b\x25\x72\x2b\x1b\xcd\x7d\xac\xda\x63\x56\x22\xfc\x8e\x72\x95\x9f\x57\xf7\x67\xea\x56\x3d\xa4\xc1\x58\xee\xf7\x20\x01\x09\xf6\x14\x16\xc2\xe7\x04\x39\x92\x30\x62\x43\x7b\x1d\x08\x2a\x8c\x7f\x43\x94\x71\x3c\x1b\x7b\xa0\x58\x7b\x84\x1c\x11\x44\x75\xee\x3f\xf0\x59\xdf\x8c\xfa\x12\xa3\x21\xd9\x01\xcb\x47\xf5"}, {{0xa3,0xd2,0x35,0x05,0xd0,0x7c,0x5f,0x93,0x7f,0x13,0x63,0x9d,0xbd,0x81,0x8e,0x85,0x14,0x52,0x34,0xee,0x70,0x17,0xec,0xee,0x86,0x36,0xc7,0xba,0x76,0xeb,0xef,0x5b,},{0xfd,0x7f,0xdb,0x3d,0x02,0x2b,0xa3,0x6e,0xad,0xfe,0xd0,0xda,0xaa,0xe5,0xbf,0xf0,0x45,0x05,0x40,0x3f,0x17,0x14,0x73,0xe4,0xd3,0x61,0xee,0x8d,0x15,0x0a,0x0e,0xb4,},{0x67,0xa6,0x67,0xee,0x0d,0x62,0x54,0xca,0x0a,0x8f,0x21,0x25,0x82,0xc0,0xcb,0x8b,0x6e,0xd9,0x7c,0xc9,0x67,0xdb,0x02,0x12,0x96,0xad,0x6a,0xa9,0x9f,0x0a,0xd3,0xa9,0x44,0x97,0x8c,0xfd,0xaf,0xf1,0x3f,0xe5,0xf8,0xc6,0xe8,0x8c,0xbd,0x83,0x1a,0x54,0x73,0xd0,0x74,0x2e,0x37,0x34,0xb3,0xe2,0xdf,0x00,0xff,0x32,0x40,0xa5,0xde,0x02,},"\xbc\x29\x8e\xd6\x98\x92\x90\x40\x28\x72\x5e\x21\xb1\x14\x46\x2d\x89\xd8\xc0\x06\xdc\x88\x4b\x17\x87\x56\x83\x8a\xf4\x95\x4f\xf0\xf1\xb7\x95\x17\x30\x7a\x25\x8a\x0e\x76\x81\xe8\x79\xac\x47\xd7\x92\x02\x30\xb0\xcc\x1d\x66\x17\x1e\xb2\x14\xd7\x7c\xd9\x7f\x61\x7c\x40\x5e\x6c\x21\x72\xfc\x58\x9f\x16\x25\xcc\x5e\x1b\x59\x31\x10\x53\x1f\x6e\xb5\x3f\x1e\x6f\x48\x6d\x19\x64\x61\x24\x47\x75\x0a\x04\x1f\xe5\x1b\x33\x2e\xb3\xfb\xc7\x11\x61\x6c\xe3\x5f\x04\x04\x42\xb4\x31\x63\xb8\x0b\x75\x1e\x21\xec\x12\x45\xf1\x2e\x48\x83\xc7\x9d\x3b\x41\x32\x82\xc6\x9b\xfc\x6a\x46\x5d\x1e\x78\x96\xba\xb0\x38\xdc\x89\xb4\xcf\xc0\x32\xfc\xcd\xfc\x87\xb0\x7f\x06\x11\x0e\x1f\x50\x6a\xcc\xa8\x15\x7a\x32\x25\x43\xbf\x1e\xd8\x90\x67\x27\xf2\x8d\x0d\x68\x9b\xcd\x7d\xd3\xdf\x85\x93\x52\x04\xa9\x04\xab\x3f\x7a\x0d\x99\xc1\x6e\x5a\x54\x2c\xc2\xbc\xde\xbf\x5b\x50\x2d\xba\xbe\x33\xb9\x72\x48\x0e\x02\xe7\x1a\x43\x8a\x19\x80\xa8\x76\x6f\x10\x8b\xd8\xad\x51\x10\x42\x23\x99\x4d\x9b\xfb\x3c\x3a\x4b\x7a\x59\x23\x8c\xe2\xef\x7d\x72\x88\x38\x3f\xfb\xf2\x91\xe1\x60\x2b\x38\x4a\xf6\x07\x00\xd7\xda\xf0\xe8\xfe\x60\xf8\xca\xed\xe4\x3d\xb0\x6b\x3f\x4c\x8c\xff\xf7\x49\xae\xaf\xa4\x6f\xc6\x1c\x49\xb2\xd5\xa4\x12\x04\xcf\x86\xf0\x49\x25\x4d\x80\x9e\x94\x98\xaa\x9d\x4c\xfd\xb9\x4a\xcb\x2b\xab\xfc\xf7\x86\xdd\xfb\x03\x69\x15\x16\xb3\x83\x8b\x0d\x4f\x20\x1c\xb2\x59\x1e\xdb\xb0\xb0\xf6\x74\xe1\xe2\x82\x03\x16\xb7\x2e\x81\xb4\x8c\xc5\xa6\xb2\x93\x38\xbc\x36\x68\x1f\x8f\x7d\xca\x43\xee\x6c\x0b\xd2\xe4\x02\xaf\xbf\x96\x77\x97\x51\x64\x53\xbc\x01\xbe\x86\xbf\x42\x29\x9d\x1b\x73\x6a\x0d\x97\xbb\xc9\x22\xf5\xa7\x8a\xf2\xdf\x42\xe6\xf8\xc2\x8e\x95\x3f\x2c\xea\xda\xff\xc5\xe9\x30\x64\x04\x1e\x42\x5a\xd6\x97\x5f\x88\xc7\xaa\xdf\x81\xc3\x68\x69\x1a\x58\x1e\x88\x5f\x2a\x6b\xa7\x2e\xd6\x8b\x8f\xef\xbc\xd6\xce\x36\x86\x26\xd4\x48\x92\xa2\x02\x70\xb5\xf7\x09\xc2\xe3\x4b\x83\x35\xd4\x2e\xeb\xd6\x7a\x24\xdf\x73\xf4\x54\x55\xc4\x19\x44\x18\x7b\x66\x92\xf0\x54\xb2\xfc\x95\x91\x37\x3f\x19\xfc\x71\xaa\x7f\xa2\x7d\xf6\x00\x6a\x1d\x54\x9b\xbf\xae\x7d\x3c\x3e\xb3\x6e\x5a\xb2\xaa\xa1\x0a\xa5\x53\x8d\xa7\xef\x36\xc8\xff\x35\x4b\x60\x58\x13\x40\x04\xd6\x60\xa4\x03\x63\x21\xca\xad\x00\xa3\x0b\x1c\x49\x8b\xa3\xd8\x08\xc4\x40\x5e\xf7\x96\x18\xfc\x22\x12\xa7\xb8\x33\x96\xa3\xd7\xce\xdc\xeb\x86\x3c\x66\x37\x4d\xc4\x69\xae\x18\x3c\x7e\xd7\x4b\x3e\x70\xd6\x37\x4a\x06\x2d\xe0\x37\x9b\x21\xcf\x25\xd3\xc4\xc5\x76\x21\x15\xcd\xfe\x75\x55\x45\xe8\x9a\xd4\x05\x2b\xb0\x27\x9d\x93\x8e\x90\xde\x3a\xbf\x50\x44\x10\xca\xad\x72\xb7\xc2\x9f\x53\xd0\x1d\x9d\xd7\xf2\xec\x5e\x45\x9a\x04\x59\x2b\xdd\x66\x41\x66\x13\xe6\xed\xd0\x04\x56\x9e\x0e\x6c\x98\x82\x7b\x8c\x1d\x70\x02\xa6\xd1\xbf\x30\x3e\x18\x25\x95\x01\xdd\x89\xf6\xee\x94\x76\x6d\x18\xaf\x81\x04\x63\xeb\x13\xb2\xef\xdd\xf1\x72\x3a\xf7\x35\xa8\x87\x16\xe1\xfc\xb4\xb7\xb4\x3c\xb9\x7e\x1c\xc9\x03\xb2\x40\x8e\xf4\x53\xad\xa4\x16\x47\x86\xf0\x08\x45\xfb\xfa\x1f\xfc\xa5\xcc\x3e\x1c\x4b\xd9\x94\x0e\x7d\x99\xae\xf9\x19\x16\x6d\x05\x8b\x51\x45\x3c\x9c\x14\xfb\x9f\x32\x51\xec\x5f\xe4\xf1\x53\xc7\x0a\x44\x92\xdc\x34\x96\x29\x61\x86\xf2\x3a\xd4\x7e\xba\xd1\x3c\x66\xe6\x87\x27\xce\x50\xba\x94\x87\xf1\x80\x18\x90\xb6\x93\xef\xeb\xfc\x37\xbb\x5d\x95\xf8\xaf\x54\x8e\xc8\xd6\x49\x82\x89\xe5\x5f\x98\x83\xfc\x5b\xe8\x4c\x25\x6d\x2b\xc5\x48\x49\x38\xc7\x09\x82\x0d\x9b\x6b\x80\x59\xc0\xaa\x42\x67\xdd\xe6\x90\x78\xe4\x87\xc8\x86\x5c\x0b\x13\x0a\x0c\xa8\xca"}, {{0x6e,0x26,0x51,0x05,0xee,0x71,0x71,0xd1,0xbd,0x79,0x3e,0xff,0xd8,0x7d,0x1e,0x2c,0x79,0x45,0x0d,0x5e,0x18,0x8b,0x57,0xbe,0x3a,0xa1,0x62,0xe2,0xa5,0x25,0x28,0xad,},{0x1f,0x40,0x3c,0x7a,0x75,0x50,0x31,0xc1,0x3c,0xa6,0x3a,0xf5,0x76,0x35,0xdc,0x6e,0x2c,0x4f,0x23,0xbd,0x6b,0x1d,0x67,0xca,0x65,0xda,0x68,0xb0,0x99,0x43,0xc5,0x54,},{0xb5,0xa8,0x3a,0x11,0x7a,0x60,0x34,0x5a,0x67,0xe4,0xa6,0x65,0xf3,0x7d,0xe7,0x22,0xa6,0xec,0x03,0x91,0x38,0x29,0x38,0x99,0x59,0xf3,0x76,0xee,0x62,0x64,0x77,0xe6,0x54,0xac,0x8d,0x72,0x0f,0xc7,0x27,0xd4,0xbb,0x8f,0xe1,0x54,0x4f,0x5d,0x0b,0x0b,0x85,0x05,0x14,0x29,0x0b,0x24,0x27,0x3c,0x4c,0xd4,0xb7,0x3a,0xca,0x4a,0x53,0x00,},"\xf8\xb9\xd4\xb0\x27\xeb\xb1\x0e\xe5\x11\x81\x9e\x6e\x56\xfb\x1b\xa9\x58\x40\x18\x41\x8d\x82\x88\x5a\x38\xa4\x49\x08\x60\x07\xb8\x78\x5b\x51\x05\xca\xf7\x82\xbf\x9b\x36\xda\x03\x9c\xc6\x0e\x22\x7c\x7e\x16\x14\xf2\x9b\x64\x0b\x1e\x9b\x22\x74\x7e\xea\x7a\x67\x25\x61\x4e\x89\xe0\x78\x3e\xbe\xbb\xb7\xee\x55\x7e\xf3\x6b\x2b\x46\xcf\x64\x61\xe5\xbe\x2a\xd1\xd7\xa7\xc2\x71\x1a\x47\x5c\xa4\xfb\xc3\x30\x92\xba\x42\x56\x67\xe3\x4d\x09\x00\x60\x51\x8f\x2f\xec\x63\x6b\x04\x91\x23\x87\x6a\xb2\x1c\x8b\xd9\xc5\x0d\xcc\xb9\x84\xca\x01\x1a\x02\xee\xa0\x20\x56\x4f\xa8\x21\xfc\x36\x2b\xfe\x39\x2a\xab\x50\xc2\x73\xfc\x7b\x5a\x04\x21\x88\xe3\x31\x62\x1b\x9d\x2f\x74\x3e\x5c\x8c\xf3\xab\x1f\xaf\xfa\xfe\x2a\x00\x04\xc8\xef\x7c\xdf\x5e\x6d\xbb\x5e\xb5\x44\xe4\x28\x9f\x71\xa6\xfd\x15\xc6\x38\xce\x29\xd2\x8e\xfb\x9c\x03\x9e\x47\x74\x29\xa3\x49\x7a\x83\x82\x7e\x76\xce\x77\xa4\x98\x16\xd9\x0b\x41\xa8\xe1\x52\xf3\x7a\x09\xe6\x34\x0d\xfe\x06\x9a\x4a\xc6\xf2\x7d\xd2\xea\xc7\x47\xfd\x21\xe3\x15\x20\x88\xc1\xb1\xec\xd3\x2a\xc6\x79\x92\x74\x90\x75\x04\x88\xc2\x91\x78\x51\x47\xb6\x3b\x0b\x8f\xf1\x1d\x18\x9b\x90\x49\xb8\xa3\x96\xb6\x93\x2f\x85\xbd\x6a\x15\xef\xf9\xf0\xce\x18\x08\x41\x1a\xf0\xf9\xc8\xe6\xe9\x7b\x81\x4f\x11\x0b\xd4\xdf\x13\x86\xa9\x79\x7d\xc5\x11\xf0\xaa\xb6\xab\x65\x07\x1d\x9e\xa8\x36\x53\x2c\xec\x51\xb9\x2c\xa7\xfb\xdb\x8d\xe1\xc8\x43\x66\x58\xde\x2e\xb6\x5e\xdd\x86\x04\x4f\x6c\x1a\xba\x31\x78\x64\x7a\xd6\x78\x61\x2e\xe7\x4f\x04\x6c\xa3\xc7\xfe\x2f\x39\xc0\x9d\xd2\xe0\x7d\xf2\xb4\x22\x70\x85\xfe\x93\x6e\x79\x4d\x22\xfd\x5f\x40\xa2\x5f\x08\x77\x15\x80\xac\x80\x1d\x98\x89\xf5\xa7\x6a\xea\xe1\xf0\xcc\x4a\x9e\x1e\xdb\xdd\xa3\x75\x0c\x74\xc8\x50\x52\x4b\x32\xf4\x49\x33\xfd\x88\x3b\x53\x72\xbf\xb7\xe7\x61\xe0\x69\xfe\x7c\x1c\x0e\x7f\xbd\x4a\x7f\x58\x46\x7e\xa6\x88\x3f\x9d\x5b\x7f\x66\xd3\x86\xb0\x49\x9b\xb6\xfb\x5e\xad\x89\xc9\xa1\xfd\x2c\xce\xb9\x73\xe2\x87\x9b\x5d\x03\xea\xa4\x52\xe1\x60\x22\xd5\x96\x17\xda\xa0\x48\x6f\x4d\x4c\x11\x78\x07\xfd\xa8\x49\x9d\xfb\x7a\x28\x6f\xd2\xf7\x1a\x8e\xb5\xfe\x64\x06\x5c\x41\xe4\xe1\xe2\x36\x2a\xb4\xe4\x77\x96\x9e\x3a\x40\x8a\x24\x7e\x3a\x56\xfc\x86\xf2\xb0\x1e\xf8\xd3\xcd\xda\x87\x25\x82\x34\xbc\x7f\x25\xb6\x69\x07\xf3\x64\xb3\x7b\x62\x45\x29\x6c\x4f\xdf\x49\x9f\x20\x23\x7f\x48\x64\x85\x2f\xc5\xd8\xcd\x5d\x05\x41\x8b\xe8\xb1\x38\x59\xee\x9a\x43\xe1\x7e\x1f\x57\xa4\xc3\x5e\xa2\x82\xed\x68\xeb\xcd\xa6\x82\x81\x74\x24\x5a\x49\xc6\xcb\x65\x90\xeb\x1f\x2d\xcf\xb0\x07\xbf\xa1\xc3\x20\x77\x95\x6d\xa9\xac\xbe\x3e\xf0\x72\x37\x99\xfd\xb8\x69\xd8\xde\x30\x70\x6a\x9c\x02\x68\x14\xd1\x6a\x01\xe0\x33\xc9\x1b\x59\x07\x0d\xfe\x44\x5c\x5b\x84\x8a\x51\x66\x12\xe5\x13\x1f\xe8\x48\x69\x21\xe3\x6b\x8e\x7e\xf1\x57\xa8\x88\x22\x88\x6c\x68\x1b\x5d\xa7\x1f\xea\x94\xd9\x57\xda\xfe\xc2\x6f\x41\x47\xa3\xb2\xac\x38\x3a\x5f\x47\xc8\x58\x5e\xb1\x7a\x8a\xc6\x57\x90\x64\x1b\x42\x18\xd7\x55\xf8\xbe\xa4\xd9\x7a\xe2\xa4\x5b\xdc\xdc\x23\x23\x62\x94\xd8\x52\xc9\x5d\x08\x40\x6d\x2e\x9b\xd3\x0c\x32\x64\x52\x53\x8c\x1f\x5e\x50\x04\xd4\xa1\xa8\x27\x20\xda\x32\xe5\x9d\xc3\xab\x18\xea\x08\xa0\x58\xf7\x91\xd2\x44\x18\x55\x60\x86\xc1\xe4\xed\xce\x89\x82\xaa\x23\xb1\x18\xfb\x26\x6e\x60\xb5\x42\x78\x0a\x69\x33\xad\xd9\x13\x26\x55\x12\xc0\x7b\x11\x49\x78\xd4\x4a\xf7\x3b\x20\x30\xec\x47\xb0\x6f\xd0\x9d\xda\x8c\x4f\x1d\x4e\x31\x37\x75\x46\x8c\x45\x1f\x9e\xe6\x11\xe9\xcd\x4c\x08\x45\xc2\x50\x19\x48\xa7\xb1\x4e\xf1\xd4\xb5\xcf"}, {{0xc4,0x37,0x0d,0x2a,0xaf,0x35,0xac,0xd1,0x58,0xfc,0x0d,0x16,0x22,0xa3,0x99,0xc9,0x9f,0x41,0xb9,0xda,0x4e,0x97,0x0b,0x35,0x4e,0x5b,0xa0,0x5c,0xbe,0x84,0x4c,0xa8,},{0x35,0x45,0xd7,0xd4,0xc9,0x5c,0x3d,0xb6,0xa5,0x45,0x30,0x53,0x7a,0xfa,0xfa,0x4d,0x86,0xdd,0xec,0xf9,0xcc,0x7e,0x66,0xc3,0x19,0xba,0x9f,0x7d,0xd7,0xd0,0x7e,0xe7,},{0x9f,0xeb,0xab,0x5a,0xe1,0x61,0xd6,0x92,0xa6,0xa3,0x94,0x50,0x0a,0x28,0x90,0xd2,0x1c,0x7f,0x0e,0xe2,0x6f,0x46,0x40,0xaa,0xba,0x4f,0xe6,0x6b,0x90,0xb8,0x9e,0xdc,0xb8,0x0e,0xa4,0xcd,0xca,0xbb,0x4d,0x2c,0x3a,0x5c,0x41,0x54,0xe8,0xff,0x20,0xd0,0xe2,0x37,0xfe,0xfd,0x00,0xc7,0xba,0x97,0x82,0xe1,0x74,0x8f,0x64,0x88,0xac,0x01,},"\x61\x9f\x57\xde\x2b\x1d\xba\xee\x20\x9a\x82\x5d\x8c\xa9\x7f\x84\xee\x49\xeb\x12\xa0\xb1\x3d\xcd\xd2\xb3\xa4\xee\x45\xe0\x17\x6d\x47\x4c\xf0\x94\x60\xc8\x31\xa8\xae\x1d\x3f\x39\xbe\xeb\xd0\x88\x08\xb3\xed\x17\x61\x21\x3b\xa9\x53\x42\x18\x60\xcc\x07\xe2\xdb\x31\x2e\x68\x0d\xf0\x3e\x60\xa6\x87\x02\x64\xab\xca\x8f\xd5\x13\x01\xe1\xc1\x56\x20\x23\xd8\x02\xcc\xd5\xc7\xd1\x96\xdb\x39\xfb\xb8\x30\x4b\x0e\x59\xe3\x33\x16\x41\x92\xec\xc3\x33\x38\x7e\xef\x69\xc7\xa7\x8a\x5d\x11\x25\x88\x62\xd6\xc2\x81\xb1\x9c\x0b\xd3\x36\xcd\x3e\xdb\x2f\x9f\xaa\xd4\x02\x1a\xc2\xf2\x05\xc1\x68\x14\xb3\x85\x48\x43\x3f\xf9\xed\xdf\xd6\x11\x33\x77\x97\x69\xdc\x69\xaf\xac\x65\x8a\xfc\x1d\x1b\x41\x6d\x39\x0a\xd5\xb4\x5a\x1a\xd5\xcc\x4b\x00\xb4\xb2\x78\xfb\xe4\xb5\x9d\x52\xe6\x1a\x6a\x5f\xd0\x02\x41\xc6\xcb\xc3\x82\xd2\xd6\x21\xa3\xde\xd0\x02\x01\x9b\x33\x05\x60\xe3\x61\xfa\xab\x28\xf4\x1d\x1a\xf9\xc9\xc0\x02\x0f\x2b\xaf\x99\xe8\xd8\xee\x58\xe3\x12\x22\x02\x14\x7c\x0a\xdc\x57\xd6\x70\xc5\xb3\x80\xaf\x59\x4c\xc7\xed\x57\xb8\x7e\xc6\x67\x4a\xb6\x3f\x3a\x98\x49\x75\x3b\x94\x62\xaa\xb5\xde\x88\xc9\x48\xa8\xb1\x09\xaf\x4d\x49\x54\x92\x7a\xac\x58\xbe\xe9\x53\xbe\x0d\x8d\x7d\x71\xaa\x11\xd1\x1f\x1a\x87\xb1\x47\x7b\x91\x70\xbd\x73\x5c\xfc\x24\x49\xf0\x51\xb8\x2b\xc5\x9b\x0b\xee\x76\xa1\x72\xe8\xd3\x26\x70\xf5\x1d\xdd\xdb\x80\x4a\xd1\x10\xa5\x65\xe3\x84\xcd\xb7\x6f\xad\x04\xcf\xf6\x78\x93\x09\x1e\x41\xe6\x9c\xfd\xf7\x0e\xa9\x26\xc2\x63\x69\xa5\xb6\x19\x3b\x19\xab\x0a\x62\x55\x8d\xa5\x5f\xfa\xfe\xb8\x78\x97\x57\x71\x06\x44\xaa\x19\xf4\x74\xbe\x4a\xda\x9d\xc1\x84\x9b\x07\xd5\xe1\x7b\x85\xf9\x21\xe1\x01\x6a\x54\xaa\x60\x95\x77\x72\x53\xa7\x34\x26\xfc\x78\x64\xb9\x95\x5f\x04\x90\x70\x23\xdb\x20\x7f\x85\xdd\x21\xa6\x51\x06\xcf\x0d\x62\x23\x85\x87\x0c\x34\xc2\xda\x9a\x11\xe4\x72\x63\x95\x12\x1e\x4a\x67\x61\xfb\x52\x22\x29\xd9\xe5\xcc\x9d\xab\x35\xae\xb8\x7d\x0d\x79\x69\x3c\x00\x6f\xde\x1c\xfa\xf1\x16\x20\x8b\xba\x96\x20\x59\xcf\xc0\xd2\xd6\x37\x0a\xac\x77\x48\x36\x2e\xe6\xa0\xa3\xca\x7b\xf1\x33\xeb\xcf\xa2\x0f\x1c\x4e\xd8\x30\x7f\x80\x0c\xca\x7e\x6c\x4b\xea\xa3\xfb\x2a\xb0\x86\x12\x53\x64\x28\x5c\x44\xed\x1a\x73\x7a\x67\xcb\xf3\xb7\x63\xc9\xf8\xb1\x42\x7e\x89\xdf\xa9\x6d\x29\x0e\x9d\x48\x42\xfe\x63\x16\xaf\xef\x83\x4c\xd8\xcd\x1f\xdc\x1f\x12\x4c\xa3\xfe\x26\x26\x6d\xa6\x2e\x27\x5c\x0b\xf7\xfc\xc8\xe5\xf9\xbb\xa6\xc0\xd3\x8e\x23\xfa\xfa\xb1\xe0\x49\x48\x17\x94\xc1\x4f\x4a\x8c\x53\xbe\x1c\x96\xf7\x69\xc9\xb1\x3e\xac\xa3\x9a\x0e\x49\x36\x6d\x2c\x9f\xfe\x8f\x20\x63\x60\xa9\xd5\x03\xde\xc5\x98\x62\x11\x12\xe3\x77\x67\x13\xe7\xfc\x06\x49\x43\x3e\x25\x7e\x50\x3a\x54\x60\x59\xa9\x89\xda\x89\x15\x7d\x76\x47\x60\x05\xfd\x90\xe4\xb0\x7a\xaf\x0d\xb0\xbc\x0b\xc0\xb6\x7d\xb8\xdc\xba\xdf\xf3\x93\x74\xe1\xaf\xae\x55\x16\x34\xe0\xe3\x28\x31\xad\x0e\x5f\xa7\xd5\x21\x6f\xa7\xc6\x44\xf7\x3e\x1e\x8e\x07\x23\x83\x94\xa4\x16\xc1\x69\xaa\x9d\x53\x03\xf4\x69\xa5\xd4\x07\x43\x08\x72\x1f\xfd\xde\xff\x65\x59\xe5\xad\xf0\xc2\x77\x3b\x3f\x52\x64\xe7\xaa\xa8\xc2\xdb\x88\x8e\x28\xe8\x15\xc7\x10\x69\xc3\xb4\xce\x6c\x29\x03\x4c\x0a\xb3\xb5\xc1\x9a\x80\xa9\xd8\xc2\xe8\x74\x81\x35\x31\xc4\x22\x75\x2a\xd6\x2b\x3c\x5a\x1a\x3d\x6c\x5a\x5d\xb5\x87\x27\x06\x93\xaa\x75\xd5\xf1\x72\xee\xdd\xf4\xeb\x83\x9b\xd7\x93\xaf\xfb\x1c\x79\x6a\x1d\xf0\xe4\x42\xdd\xf9\x9b\x78\x0a\xa4\x1e\xea\x0f\xe6\xf8\x65\xbb\x53\x9c\xa5\x3a\xa4\x5d\xb9\xa8\x56\xcb\x75\xd0\x15\x1d\x35\xed\xea\x80\xf2\x94\x6d"}, {{0xbd,0x3d,0xe1,0xa1,0xd1,0x64,0xbd,0x6e,0x9b,0xe0,0xa6,0xd1,0x07,0xf7,0x03,0xa6,0xdd,0x91,0x4c,0x86,0x67,0xcd,0x34,0x1d,0x13,0x9f,0x19,0x57,0x8d,0x93,0x3b,0x16,},{0x9b,0x02,0x49,0x64,0xbd,0xfa,0x85,0x2e,0xb2,0xd4,0x14,0x4f,0x35,0xb7,0xcd,0xc2,0x67,0x81,0x14,0x3c,0x2b,0xd7,0xf6,0x60,0x23,0x3f,0x8b,0x8a,0xa3,0x60,0x71,0xee,},{0x13,0xcc,0x15,0x8f,0xd0,0x61,0x79,0x2f,0xce,0xd1,0x56,0x87,0x95,0x98,0x25,0x1d,0xd0,0x1d,0x57,0x5b,0x40,0x0f,0xe3,0xe3,0x9a,0x70,0x08,0x63,0xaa,0xe8,0xdb,0x1f,0x91,0x97,0xfa,0x50,0x1c,0x0c,0xf9,0x93,0xe4,0x4d,0x6a,0xc5,0x51,0x80,0xb8,0x69,0x83,0x8e,0x8a,0xe2,0x4b,0x21,0x4f,0xa3,0x5e,0x24,0x4b,0x7a,0x6c,0xff,0x6d,0x0d,},"\x17\x69\xfc\xdb\xf5\x12\x47\xed\x4c\x83\xa0\x0b\xbb\xf0\x2f\x44\x28\xda\x6f\xce\xdd\xd0\x16\x1a\x02\xfc\xcd\x15\x00\x97\x06\x65\xe1\xc7\x63\x0a\xd2\x2e\x3d\x97\x49\xc7\x92\xe7\x1a\x26\x0c\xff\xf6\x05\x32\x56\xe0\x2f\x5b\x47\xbb\xa1\x4b\x76\x1a\xe5\x3c\xa7\x21\x9e\xd2\x80\x1d\x2d\x78\x8e\x26\x41\x9f\x36\xc8\x1e\xf9\x2c\x23\x03\x68\x37\x35\xc8\xa1\x75\x6a\xda\xb6\xa4\x87\x92\x31\x53\xe4\x35\x60\x3c\x96\xb2\x39\x55\x3e\xdf\xde\xb0\x93\x29\x8f\x7a\xe7\xdc\x90\xf1\x6a\x7e\x56\x64\xb9\xe4\xc0\x2b\xa7\x31\xa2\x3c\xf2\x23\x4e\x25\x0a\xc9\x74\x26\x33\xa9\x32\xa9\x48\xbb\x83\xdc\x3d\x79\x4d\x05\x9f\xed\xf4\xec\x86\x18\xc7\x43\x3c\x5d\x8f\xe5\xe6\x2c\xf0\x7b\x57\x68\xc4\xd9\xb2\x61\xc7\x15\x36\x80\x4f\xe2\xe7\xca\x70\x98\x87\x65\x21\xd5\x76\x77\x36\x14\x24\xe4\x7f\x1b\x95\x92\x37\xf9\x07\x10\x42\x1f\x5b\xc4\xf1\x09\xf7\xd4\x89\xc7\x55\xe9\x4e\xef\xdf\xb3\xc8\x5b\x90\xec\x01\x31\x81\xa2\x3b\xb9\x53\x5f\xee\xa4\x94\x1d\x0a\x06\xa5\x40\xbd\x6b\x58\x8e\x55\xb7\xf3\x57\x57\x14\x9c\xa3\xe6\x40\x96\x5e\x1a\x0f\xf7\xf3\xc8\x25\x92\x59\x95\x7f\xf5\xda\xb9\xfb\x87\x32\xea\xe7\x19\xb6\x24\xa4\x49\x28\x78\x17\x9b\x5a\x83\xab\xe5\x1c\xaf\x02\x08\x3d\x73\x7c\xeb\x4f\xcf\x04\x2f\x2e\x60\xba\x02\x97\xac\x72\xb8\x7f\xe3\xe1\x4b\xa5\xfb\xc5\x4b\x48\x09\x10\x73\x89\x68\x23\xbf\xa2\x89\xce\x8e\x16\x87\x3b\x48\x81\x2c\x32\xbf\xea\x5f\xf6\xbb\x22\x1d\x1e\xa5\x46\x3d\x32\x5b\xbe\x31\x1e\x7f\xd1\xe7\x83\xde\x65\x0b\x79\x52\xea\xe4\x61\xd6\x3b\xc7\x47\x05\x22\xaf\x5b\x77\x89\xf8\xfc\x2e\xb1\x92\xd2\xcf\x77\x6c\x5c\x24\xb4\x4e\x29\xcd\xb0\xcc\xcb\x1d\x90\x36\x14\x38\xe4\x95\x0f\xf3\x4d\xbc\xb3\xcb\x0e\x81\xcc\x45\xf8\xd0\xff\x57\x09\x49\xf7\x80\x84\xe1\x06\x0f\xf5\x59\x4a\xd5\x16\xf5\x0f\x1c\xb0\xa7\x65\xe1\xc0\xe0\x38\xd5\x94\x3b\x93\x6e\x4a\x8b\x49\x33\x54\xe7\x9a\xbc\x91\x7b\xb9\x27\x12\x66\xee\xba\x77\xa9\x3a\x65\x7f\x9a\xd8\x7b\x29\x1a\xc7\xea\x38\x6f\x5d\x4f\xcb\xc5\x82\xe7\x2d\x5c\x23\xd9\x2b\xa9\x44\xb0\x06\x4c\x20\xe3\xe2\xdc\xf5\x04\xbc\xc7\xc6\x96\x6c\x63\xf2\x08\x08\x43\x60\x0b\xa3\x13\xec\x27\xcb\xa9\x5e\x7e\xf3\x18\x16\x8c\x90\x67\xdc\xe8\x6c\x1e\xf0\xd5\xd9\xeb\x7a\x61\x58\x48\x9d\xf3\x2e\xd5\x8b\x69\x31\x03\x08\x18\xf0\x07\x05\xa0\xdc\x55\xd3\xdb\xf8\x00\x6a\x85\x46\x64\x1b\x18\x65\xd9\x19\xbc\x24\x22\x02\xcb\x3a\xe3\x00\xbf\x86\x53\xe3\xb3\x78\x94\xc3\xdc\x0e\x47\x7b\x9d\x7c\x41\xba\xf8\xd3\x88\x7c\x2e\xb5\x9b\x1e\x4d\x50\xbb\xb6\xf1\x79\x2a\x1c\x93\x67\xc6\x5c\xdb\x45\x0c\x2d\xfa\x21\x45\xe6\x11\xa9\x7a\xd8\x1c\xff\x1f\xd8\x3c\x6c\xf7\x23\x09\x47\xea\xff\x4c\x21\xdc\x1b\xaf\xb7\x1e\xc4\x1e\x5b\xc7\x2b\x37\x45\xec\x3e\x38\xbf\x59\x30\xc1\x26\xd0\x60\xf0\xc5\x0a\x89\x5f\x00\x9a\xa1\x8e\x87\xf2\x17\x4f\x58\xab\x53\x79\xa7\x21\xfd\x83\xaa\xd5\x51\x7f\xd9\x9d\xff\x14\x6e\xde\xea\x61\x52\x12\x35\xe2\xf1\xa1\x6e\xe5\x83\x03\xe0\x91\xbe\x8d\x57\x90\x94\xc1\xd8\xa2\x0b\xc7\x4a\x55\x0d\x77\xc0\x0d\x08\x75\x71\x51\x7a\x63\xcd\x41\x26\x93\x3a\x4f\x09\xa0\x70\xbf\x8e\xa4\xff\xb8\x46\xa9\x78\x0e\x97\x34\x04\x3b\xac\x4c\x0f\xf4\x7b\x1a\xfc\xcf\x52\x93\xac\x14\xbc\x73\xeb\xf6\x71\x29\x65\x7e\x4b\x8a\x8b\x33\xdd\xac\x7b\x0f\x4d\x71\x9d\x2d\xc6\x5d\xf6\xea\x0a\x3f\x24\xcf\x44\xc8\x33\x8e\xd6\x01\xa3\x93\x9c\xa3\x58\xfc\x4b\xe1\x3e\x8e\xde\x02\x75\x39\x71\x2c\xa2\x3e\x3f\xfb\xa7\x06\xe8\xfd\xd6\x2a\x07\x4e\xe0\xad\x74\x20\xf7\x80\x60\xcc\x96\xfb\x2a\xbf\x30\xe9\xea\xa2\x41\xc0\xf8\x7e\xbb\xe3\xec\x73\x51\x75\x96\xf7\xc3\xc5\xa8\x0c"}, {{0xf6,0xae,0x51,0x6a,0x51,0x29,0x6f,0xc5,0x23,0xce,0xa5,0xf0,0x08,0xcf,0xbd,0x09,0xe7,0x3f,0x78,0xb6,0xfd,0xd3,0xb6,0x94,0x26,0x12,0x80,0x41,0xa5,0x60,0x4c,0xf9,},{0x37,0x6c,0x82,0xba,0x7b,0x87,0xaa,0x77,0x41,0x87,0x27,0xdb,0x33,0xd3,0x26,0xae,0x75,0x8b,0xf7,0xa1,0x35,0xc1,0x04,0x60,0xcd,0x8b,0xf8,0xfe,0xb8,0x3c,0x2b,0x10,},{0x0f,0xe4,0xdd,0x7e,0x1f,0x60,0x8e,0xe8,0x2b,0x7f,0xe8,0x63,0xd1,0xb0,0x3a,0x81,0x84,0x3c,0xe2,0x0c,0x76,0x2c,0xd8,0xbb,0x24,0xef,0xd4,0x6b,0xa0,0x25,0xff,0xf3,0x33,0x1d,0x87,0x57,0x52,0xca,0x72,0x20,0xc5,0x3d,0xd3,0xc7,0x1f,0x2b,0xc1,0xe2,0xc6,0x4a,0x2f,0x9c,0x58,0x86,0x5a,0x2a,0x24,0x48,0x09,0xf4,0x13,0x4e,0x53,0x07,},"\x83\x42\xf2\x5a\xc4\xb1\x7e\xba\xd6\xf7\x9b\x9a\x03\x31\x75\xc7\xf2\x8a\xf0\x9e\x65\x8e\x8c\xb9\x8c\x29\x4f\x15\xc3\xc8\x34\x26\x29\xcb\x2a\x32\x47\xdf\xc8\x75\xb8\x2f\x5b\x38\x0c\x5d\x11\x42\x6a\x2e\xeb\x62\x45\x0b\xd8\x85\x65\x01\x07\xc6\x83\x62\xa3\xb7\x2c\xe8\x23\xf2\xd1\x59\x42\xb7\xdd\xa3\x01\xd2\xfb\x63\x8f\x30\x2a\xa9\x57\x0b\x47\x91\x1d\xad\xd3\xbd\xdb\xfe\xd5\x54\xc1\xc8\x0b\xd7\x18\x07\x8b\x8b\xd2\xc9\xc3\x14\xa5\x16\x6f\x26\x5e\x82\x66\xee\x2d\xb3\x57\x56\x1a\x55\x85\xc4\x14\xa7\x84\x0b\xfa\xe6\x09\xd7\xcd\xdd\xe1\xfa\xde\x85\x56\x0f\x23\xd6\x38\xef\x3d\x52\xe5\x1f\x5c\xf3\x13\xa0\x72\xc5\xea\x0f\x81\x7f\x72\x81\xe2\xcb\xa5\xc5\xc8\xd2\x6c\x92\x85\x92\xb8\x1f\x0f\xf8\xcd\x18\xdb\x5a\x2c\x41\xd8\x80\xd7\x44\x73\x86\x3c\x7b\xbd\x00\x56\xfa\x4d\x4a\xfa\xbd\x17\xa3\xb8\x9d\x97\xd3\xfe\x5d\xc0\x6b\x0f\x61\x2a\x1d\x66\x42\x39\x23\xba\x8d\xfb\xb8\xec\x82\x46\x62\x4d\x83\x78\x4e\xba\x4f\x57\x36\xba\x38\x5e\x44\x22\x96\xc8\xcb\x0f\x1b\x68\xe0\x33\x42\xb2\xc6\xc1\x03\x34\x6f\x6d\xd7\x40\xe2\x6c\x3d\x13\xca\xef\x80\x1d\x1b\x26\x21\xd8\x9f\x06\x93\x91\xa0\x78\xd4\x3a\xe6\xff\x12\xee\xca\x66\xbc\x32\x63\x7b\x45\xf0\xac\x62\x7c\x2d\x7b\xbf\x8a\x49\xd9\x46\x81\x75\xe2\x68\x85\xe0\x28\x21\xd3\xa3\xba\xa2\xc3\xe3\xa6\xbb\x96\xb5\x75\x26\xe2\x24\xcf\x3d\x85\x9f\x66\x95\x73\xcb\xd5\xc8\x73\x93\x74\x61\x56\xf3\xd1\xc7\xa8\x03\x08\xdc\x1f\x24\x05\xbf\x0d\x40\xbe\x1c\xa7\x3b\x76\x7d\xed\xf4\x03\x13\x37\xc0\x81\xbf\xa3\xae\x6e\x54\xf6\x02\x3f\x42\xf0\xcb\xd8\x77\x62\xdb\x55\x91\x3c\x70\x72\x06\x03\x40\x10\xdf\x2a\xa8\x75\x3d\x03\x0f\x03\xc2\x67\xe7\x1a\x9d\xd2\xc6\xc1\x9d\xe3\xe1\x85\x1a\xbf\xac\xbb\xd5\xdd\x5b\xf8\x96\xfa\xb8\xe4\x15\x31\x7b\x49\xf1\xe4\x09\x6e\x3d\xa9\x9a\x5b\x5d\x0a\x3c\x42\xda\xf9\xde\x94\x84\x7c\x1e\x53\xc8\x81\x8a\x5b\x84\x33\x23\xf5\x01\xe3\xa7\xfa\x68\xdf\x89\xa5\xf4\x1f\x2c\x62\xc3\x8d\x17\xf2\x50\xb0\x2a\x67\xfa\xe4\x7d\xaf\x06\x3f\x55\x89\x42\x37\x7e\xf8\xa8\x90\x52\xf1\xa2\x15\xd7\x68\xf7\x91\x3a\x7e\xc1\x4e\x98\xb8\x1e\x4b\x2c\xcf\x26\xba\xca\xd6\xf3\x96\x64\xaf\xc0\xe9\x1a\x3c\xad\x69\x1d\xb2\xbf\x56\xa7\xab\x66\x77\xb4\x95\x96\xdb\x88\x7c\x97\xde\xf4\x35\x08\xa7\xa2\xec\x2a\xb7\x55\xec\x36\x8e\x2e\x53\xd1\xe1\x6b\x60\xff\xf0\x9c\x3b\x52\x26\x3f\x0f\x7c\x1e\xa9\xcc\x35\x37\x31\x97\xe9\x5c\x11\xe6\xd2\x2f\xa9\xd8\x29\x9c\x42\x37\x36\xf5\x81\x4f\x1e\x79\x8d\x22\x75\x18\x60\x0d\xf6\xa7\x90\x35\x8d\xea\xe3\x8d\x56\x39\xe1\x98\x3f\xe0\x18\x43\x6e\xa5\x8b\xa8\x46\x75\x48\xc9\x29\xef\xbb\x16\xdf\xea\x41\x02\x25\x3a\x35\x0f\xb8\x4d\x98\x31\xc4\xc2\xcb\xcb\x76\xe1\x8d\x7f\x3e\x95\x36\x41\xad\xa4\x14\x21\x39\x30\x91\xe6\x3d\xfe\x66\xde\x24\xc9\x92\x32\xc7\xd6\xa2\x83\x7a\x48\x98\x3c\xf5\xb1\x63\x31\xce\x00\x05\x0d\x1c\x71\x39\x58\xff\xce\x5f\x2e\x93\x48\xc5\x2f\x53\x12\x05\x79\xa7\xc9\xa1\x60\x08\xd1\x34\x83\x8e\x59\x61\x29\xc7\x02\xfc\xd2\x11\x48\xbd\xf9\x17\x4d\x48\xe2\xda\x0a\x8a\x66\x35\x9e\xde\xe0\x1c\x50\x09\xef\x67\x42\xfe\xc4\x1c\x1a\xce\xcd\x03\xef\xe1\xcc\xc9\xb1\x30\xd6\xe5\xac\x92\x57\x6a\x85\xcc\xb7\xcf\xc7\xd0\xe4\x23\x31\x06\x17\x29\x31\xa0\x86\x99\x79\x0b\xc4\x1a\xcf\xbb\x73\x1a\xdb\xb2\x6d\x56\xb3\x9a\xaa\x5b\x33\x3b\xc1\xa1\x0e\x2c\x70\x64\xca\x86\x11\x9d\x8c\x71\x71\x48\xf9\x24\x41\xaf\x24\xcd\x2a\xa8\xf5\x7c\x86\xba\x38\xa5\x9a\x10\x0b\x92\x76\xdf\x38\x27\xec\x7f\xb4\xd3\xfa\xf5\x8b\xe3\x1c\x6e\xca\xfd\x69\xcf\x1c\x64\x10\xa4\x9c\xd7\x08\x1f\xf6\xe9\xfc\x39\x7c\x2d\x20"}, {{0x83,0xf7,0x89,0x90,0x0f,0x04,0x0d,0xc6,0x2f,0x4d,0x18,0x78,0x4c,0xb6,0x4b,0x63,0xc8,0x8e,0x8d,0x18,0x00,0x16,0x96,0xbb,0xeb,0x47,0x07,0xc4,0x69,0xd1,0x1a,0x5b,},{0xed,0xfc,0x2b,0xab,0x7e,0x79,0xf4,0x00,0x37,0xfe,0x4d,0x90,0x41,0xde,0x48,0xda,0x9a,0xee,0x8f,0x97,0x80,0x98,0xd7,0xb0,0xae,0x17,0x92,0x90,0x25,0xe4,0x27,0x3d,},{0xea,0x65,0x82,0xcc,0x23,0xe0,0x46,0x09,0x17,0xf7,0x82,0xd9,0x64,0xe3,0xbb,0x6d,0xcd,0xe0,0xae,0xea,0xc4,0x2c,0xc1,0x49,0x19,0xd3,0x6c,0xe7,0x8a,0xa0,0xaf,0xd9,0x80,0x72,0xf5,0x4c,0x79,0x5f,0xbf,0xd7,0xa4,0x1d,0x99,0xd7,0x06,0x06,0xc2,0x8a,0x5d,0xcf,0x19,0xbe,0x38,0xa0,0xce,0x2d,0x09,0xbb,0x8f,0x84,0x4c,0x31,0xbf,0x00,},"\x6c\x11\x2a\x20\xd3\x06\x57\xab\x5f\x8c\x5c\x04\x47\x8d\x6c\x42\xd1\xc6\xbd\xef\x38\xcd\x4f\xe0\x06\xac\x2a\x57\xe2\x90\xff\x29\x28\x78\x96\xee\xa8\xc3\x0a\x01\x39\xc1\x8f\xc8\xc9\x75\x64\x56\x3e\x86\xc8\xd3\x40\x56\xa6\x71\x9b\xfe\x47\x9d\x9e\x87\xe8\x1b\x19\x45\x23\x31\xbf\xa1\x54\x80\x68\x82\xe5\x03\x9a\x20\xc9\xe9\x54\xb1\xfc\x7c\x01\x5d\xcf\x58\x15\xbd\x7c\xf7\xb6\x35\x7d\xf9\x28\x0b\x9b\xd4\x3f\x89\xff\xc9\x19\x45\x32\x3b\x5a\xcb\x2a\xe0\x02\x54\xd4\x16\x28\x68\xd1\xc8\x3e\xc6\xe0\xfc\xbe\x7a\x8a\xb9\x25\x41\x92\x14\x9c\x6b\xc9\xe5\xfe\x35\x06\x94\x16\x5d\x66\x38\x33\x1e\xb2\x4e\x3b\x13\x90\xc6\x98\xc4\x83\x83\x78\xc0\x1b\x2c\x61\xa3\xeb\xe2\xc0\x60\xb9\x8b\xa6\xee\x02\xb5\x19\xb4\xea\xc1\xe0\xbc\xc0\x9b\x23\x24\xcc\xf5\xb1\xa7\xfe\x8f\xd0\xb1\x54\x5a\x94\x27\x83\x2a\xbb\x25\x74\x4e\xeb\x36\x32\x6b\xe6\x4e\xfe\xd3\xa7\xb0\x7d\x63\x0a\x21\xc3\x08\x1b\x55\x26\x1c\x35\x32\x87\xc6\x6c\x57\x66\x3a\x99\xdb\x46\x6a\x5d\xee\x22\x74\x6b\x81\xc7\x50\xef\x85\xbe\x51\x14\x3e\x22\x1e\xcd\xf1\x14\xfe\xf1\xb3\x08\x2f\xf5\x4f\xd0\x44\xbc\x88\x4b\xfb\x3c\xc5\xc5\x33\x59\x97\x00\x98\x67\xce\x94\x91\xa8\x0f\xe6\x96\x82\x5f\x99\x42\x6d\xef\xab\x6a\x49\xba\xdc\xde\x40\x3f\x58\xe8\x31\x79\x66\x21\x07\x47\xb5\x67\x75\x4d\xe5\x30\x76\xb3\xec\xbf\x65\x34\x6c\xb8\x39\x05\x83\x2e\x16\xd0\x1b\x50\xb9\x3d\x37\xeb\x9b\xfe\x20\x17\x2a\x31\x63\x0d\x25\xf3\x21\x7d\x87\xd9\x34\x65\xfd\x8a\xc5\x54\xcb\xbb\x39\xd9\x82\xea\xd7\x21\x93\x91\x23\x4c\x88\x9f\x0b\x92\xa2\xe0\x41\x3d\x86\x6c\xac\x08\x7d\x62\x8c\xe3\x1c\x61\xc6\x32\x3e\xcb\x8e\x68\x95\x55\xaf\x10\xde\x2b\x65\x6e\x6a\xea\x2c\xde\x93\x2e\x24\x1f\x6d\x1f\x8a\x9e\x33\x16\xcf\x13\xf1\x35\xac\xef\x83\xa0\xc0\xcf\x22\xf9\x5c\xa8\x18\xe6\x1f\x92\x76\x87\x74\xc6\x30\xe0\x92\x5b\xe9\x9d\xbd\x32\xb4\x99\xc0\xfe\x7d\x84\xa4\x2e\x39\x32\x87\xf6\xf5\xce\x3d\x0b\x27\x1f\x17\x00\x45\xa6\xd4\x8e\xab\x31\x6f\xe1\x7b\x18\x58\xb1\xff\xee\xe9\x08\x88\xf3\xa3\x7a\x24\x80\xdf\xd0\x4a\x4a\x86\x29\xf8\x68\xb5\xc0\xa8\x0e\xe1\xf0\x37\x19\xf3\xa4\x7d\x40\x95\xbe\xf1\x0e\x02\x34\xfc\x30\x0e\x2a\xf4\x82\x28\x5d\x78\x93\x79\x68\x31\x9d\xa9\x4b\xeb\x6c\x40\xe0\x78\x57\x7c\x02\x4f\x3a\x5c\xda\x00\x84\xe2\xf8\x55\xa9\x39\x6a\xaa\x9e\xe9\xbf\xaf\x2c\xc7\x71\xfe\x68\xc4\x0b\x62\x9e\x8d\xcf\x11\x5e\xf0\x3e\x75\x7a\x2a\xc9\xee\xf0\x73\xf1\xbd\xf9\xc5\xa4\x41\x00\x31\x55\x8a\x6d\x38\x2b\x5f\x16\x02\x4b\x15\x1b\x1c\x01\xee\x78\x17\x41\x3a\x3c\x4d\xe9\xdd\x64\x78\x78\x5b\x81\x10\x1d\xf5\x52\x24\x30\x05\x87\x80\x20\x7e\x79\x0f\x61\x2d\x78\xe5\x70\x5c\xee\xd4\x6b\x0e\xc0\x75\xe7\xc1\xdc\x07\x3b\x17\xb2\xb4\x3d\x72\x53\x59\x27\xbf\xd2\x71\xe9\x2e\x3c\x93\x63\x8e\x40\xa9\x60\x1d\xc2\xc1\xab\x76\xd9\x1a\x41\x03\xdf\x65\x7d\x91\x1c\x82\x9e\xe8\xa5\xf7\x47\xf7\x64\x2f\x5a\x91\x5a\x5f\x40\xf6\x30\xb4\x30\x39\xc7\xd4\xbd\x2a\xd2\xb3\x21\x29\xd9\x4e\x5b\x2f\x03\xad\x4a\x3d\x45\x57\x7e\xb8\x1f\x36\x9c\x9e\x3e\x2a\x4f\x6a\x8e\x41\xac\xf8\x28\x3b\xe5\x84\x25\xea\x99\x3b\x8e\x98\xee\xa6\x33\x05\x56\x64\x86\x18\xda\xd9\x8f\xa2\x55\x62\x0d\x83\x6d\x3c\x7f\x29\xb9\x07\x89\x58\x49\x28\x61\x67\xc7\x18\x1e\x2c\xaf\x55\xc2\xc1\x84\xa9\xa9\x11\xf8\xe4\x1c\xb0\x42\xe2\xcd\x48\xb0\x54\x4e\xa7\x9f\xe2\xef\x38\x1e\xbc\x5b\x15\xe3\x9a\x9b\x5c\x6d\x99\x8f\xae\xaa\xa7\x77\x3c\xfe\xc0\x84\xc0\xbf\xae\xd1\xbc\xab\x96\x3a\x4e\xf3\xd9\x4d\xbb\x3d\xfe\x72\x4c\x04\x0c\xe4\xd1\xe2\xee\x7f\xc2\xda\x4b\x25\x12\x7c\xe3\xa5\xdf\x69\x3f\xcf\x5a\x6e\xd1"}, {{0x43,0xbf,0xf3,0xcd,0xd5,0x30,0x7e,0xd7,0xd2,0x5c,0xf9,0x6f,0xdb,0xba,0x64,0xab,0x18,0x11,0xc8,0xbb,0x93,0x4e,0x21,0x87,0xea,0x7f,0xfc,0x01,0x8d,0x85,0xe0,0xf2,},{0x00,0xf1,0xb5,0xd3,0xca,0xc6,0xe5,0x6c,0xa5,0xf8,0x94,0xd4,0xcd,0xbf,0x9b,0xeb,0xd9,0x68,0xd2,0x4d,0x5e,0xff,0xa5,0x05,0x8b,0x0e,0x20,0xbb,0x08,0x98,0xf6,0xf1,},{0xa6,0xb5,0x6b,0x76,0x86,0xdf,0x1d,0xc5,0xf4,0xed,0x54,0x4a,0x4d,0x97,0xe6,0x70,0x36,0x19,0x5a,0x32,0xb2,0x2e,0xcd,0x5d,0x31,0xea,0x17,0x30,0xe6,0xed,0x8f,0x81,0x0d,0x25,0x8b,0x44,0xc0,0x8e,0xa4,0x5f,0x03,0x2b,0x93,0x74,0x41,0xb7,0x2c,0xd0,0xdc,0x37,0x55,0x6f,0xd7,0x87,0x4e,0x9f,0xe6,0x4f,0x15,0x76,0x5c,0x52,0x10,0x03,},"\x64\x6f\x8b\x34\x18\x2d\x5e\x60\x2b\x51\xca\x73\x29\x34\x7c\x0e\x19\x8c\xb7\x47\xe4\xda\x0a\x6b\x80\xf3\xf6\xf9\xf3\x36\xf6\x70\x8d\x85\xcb\x42\x9a\xb2\xd6\xbe\xd3\x5d\x50\x13\x12\x9c\xd1\x00\x14\x2c\xdd\xce\xe8\x63\x51\x79\x02\x1b\x3e\x24\x92\x2b\x81\xae\xf1\x3c\x13\x70\x28\x69\x39\xd6\x3d\x6b\x6a\x41\x95\xed\xa1\xd8\x12\xca\x51\x82\x04\x76\x8f\x87\x34\x8c\x68\x89\x55\x2c\x63\xd1\x37\x2c\xde\x6a\x5e\x9d\xaa\x7f\x84\x45\xec\x8d\x61\x30\xa3\xf5\xae\xf0\xed\xea\xce\x01\x0b\x6c\x7f\x0b\x9d\x24\x16\x2a\x8d\x04\x45\x4b\x81\xd4\x8e\xa9\x09\x7b\xd8\xdf\x09\x34\x59\x71\x9c\xcb\x54\xaa\x10\xf5\x1c\x24\x6a\xa9\x9c\x58\x0b\xea\xf9\xc9\xc5\xbc\x60\xfa\xf0\xae\x5c\xec\x7f\x51\x37\xf6\xc5\xc1\x44\xdf\x45\xd1\x2e\xe9\x95\xad\xcc\xf2\x5a\x9d\xb8\x1b\x85\x58\xbd\xfb\x65\x83\x01\x86\xe7\xb9\xd4\xee\xd9\xf6\xb4\xd7\x32\xb1\xb5\x82\x2d\x03\xeb\x01\x7c\x07\x24\xf4\x8f\x87\xba\xaa\xe1\x04\x5d\x6f\xdb\x12\x5c\x91\x34\x06\x4f\xaf\x18\xdb\xed\x58\xd8\xfb\xac\xea\xcd\x4f\x09\x7d\xf9\xb3\x42\xe5\xc4\xa5\xbc\x85\xb2\x95\x97\xd4\xb6\x40\xf1\x55\x1c\x5b\x62\x4a\xb2\x1b\x48\xe9\x4a\x90\x30\x04\x9b\xe1\xf0\x5a\xa8\x51\xd0\x82\x7e\xaf\x87\x00\xdf\xe1\x47\xfd\xcd\xee\xdb\xc9\x8c\x4f\x15\x77\x4f\x01\x20\xfb\x59\x70\xa2\xf8\xb2\x17\x94\x34\x0b\x62\x83\x79\xa8\x02\xb9\xf7\xc0\x68\xb0\xdf\x63\x19\x3e\x51\x0f\xc7\xb2\xaf\x97\xee\x38\xde\x47\x92\x97\x85\x53\x55\x28\xd3\x50\xd8\x86\x20\x61\x0c\xfd\xb5\x5d\x24\x9e\x38\xfb\x73\xc8\x28\x71\x13\x91\x9c\xe3\x32\x67\xd7\xdb\x92\x4e\x49\x19\xa4\x4e\x6e\x29\xa9\x0d\xbe\x3b\x7b\x0d\x39\x21\x16\x3f\xeb\x5a\xc1\x05\x62\x4e\xd8\x52\xbe\xce\x35\x38\xe9\x91\x93\x30\x0c\x89\x33\x45\x69\x93\x50\xa8\xf9\x9e\x8c\x6a\x41\x09\x5f\xc9\xfc\x08\xda\x07\xf7\x57\x11\xf7\xdf\x03\x44\x06\xde\x14\xed\xd8\xe2\x2a\x63\x3a\x86\xe4\xa5\xa5\xc9\x75\xac\x5d\x34\x89\x1c\xcc\xfc\x85\x43\x77\x1f\xfa\x08\x0e\x0b\x45\xd6\x5a\xb8\x30\xa3\x61\xac\x4c\x42\x62\x94\xd3\x68\x5e\xa8\xc2\x60\x39\xc7\x1c\x90\xfc\x3f\xb5\x12\xbe\x9f\xc9\x48\x07\xd7\x6d\xbd\xaf\x8f\xfa\xa4\xfb\xf9\x84\x9d\x68\xe8\xa5\x7d\x30\xc4\xa0\xb9\x73\x5c\x23\xf0\x8e\xf2\xe2\x84\x45\x84\x67\xe1\x5d\x66\x53\x62\xcb\x64\x6f\xde\x69\x37\xec\xba\x53\x09\x12\x64\x63\x83\x57\xa7\x22\x42\x5b\xc6\x2d\x1e\x30\xec\x5f\x0d\xd8\xfe\xa2\x6b\x2e\xa4\xa8\x49\x00\x35\xde\x43\xf2\x74\x84\x6f\xb0\xcf\x02\x09\xec\x74\x37\xf3\xc3\xd0\xa5\x60\x37\x3d\x03\x4e\x5f\xd7\x9e\x25\xb6\x42\x4d\x9b\x2c\x17\x61\x63\x2b\x35\xa1\x21\x32\x52\x18\x27\x34\x5c\x55\xe4\xe7\x14\x2d\xd6\xfe\x94\xd6\x20\xfe\x51\x5c\x15\x3e\x83\x95\xb5\xd1\x30\xc7\x44\x13\x9b\x6a\x92\xef\xd3\x7f\x22\xba\x13\xfe\x4c\x09\x53\x73\x55\x0e\x2e\x4f\xcb\xa0\x32\x5b\x3e\xa3\xb9\xfe\x25\xcc\x7d\xd9\x2c\xbf\x42\xe1\x5f\x45\x54\xb7\x7a\xc2\x7a\x4a\x34\x63\x82\xff\x61\x00\x45\x15\x08\xd6\x02\xcf\x64\x3f\x60\xb6\xca\x42\x86\x35\x6f\x21\xa3\x11\x0d\x4e\x2c\x8a\x89\x62\xa7\x80\xfc\xff\x43\x9b\x3a\xa8\x04\x99\xdf\x27\x0f\xc3\xe6\xca\xd8\x89\x33\x48\x87\x2f\x0f\x70\x2f\x93\x90\x00\x0c\x7f\x6e\x06\x27\xd2\xbb\xb7\xb7\xce\xf5\xc4\xda\x25\xda\xdf\xea\x80\x32\xe5\x02\x32\x97\xa7\x0a\x65\x8e\x9a\xe7\x3b\xdd\xc3\xb2\x27\xa1\xc1\x17\x41\x13\x3f\x01\x2f\x0f\x48\xfe\x26\x44\x6f\xa6\x7e\x64\x72\x0f\xc8\xdc\x97\xf3\x0d\x0d\xd0\x26\xf6\xdc\x21\x64\xea\xd8\x57\x82\x4a\x0a\x7a\xeb\x20\xf1\x15\xd5\x0d\x1b\x65\xdd\x5d\x82\xe0\x9a\xbe\x83\x4e\x8c\xa8\x89\x57\xe3\x99\x84\x82\x49\x55\xa1\xa1\x3e\x3b\x94\xa0\x01\x57\x18\x6d\xcd\xc2\x89\xe3\x4b\x67\x8c\x91\xcb\x2a\x1a"}, {{0x06,0x3b,0x90,0x25,0xe3,0x21,0xe9,0x72,0xd6,0x53,0xa0,0x62,0xbe,0x34,0xf9,0x93,0x65,0xaf,0xfd,0xcc,0x98,0xec,0x9f,0xf4,0x3e,0xf4,0x22,0xbe,0x0f,0x80,0x44,0x60,},{0x10,0xd0,0x1a,0x63,0x01,0x2a,0xc0,0x99,0x56,0xba,0x9e,0xd6,0x1d,0xf3,0x5b,0xb7,0xaf,0xe3,0x65,0x8b,0xb3,0x00,0x48,0x52,0xe4,0x71,0x74,0xbd,0x07,0xdd,0x4d,0xe7,},{0x85,0xc8,0x1d,0x6b,0x0d,0x85,0x78,0xfa,0x58,0xe1,0x3a,0xb3,0x91,0x00,0x15,0x28,0xb4,0x6a,0x1d,0x63,0xa0,0x32,0x7c,0x7a,0x4a,0x04,0x08,0x7f,0xc6,0x68,0x75,0x8a,0xa6,0x5c,0x01,0xd5,0xa1,0x50,0xf9,0x35,0x67,0x4e,0xf3,0x07,0x50,0x7e,0x6f,0x4c,0x91,0xe1,0xfc,0x35,0x00,0xb2,0x6f,0x64,0x9b,0xee,0xa8,0x7d,0x27,0x56,0x37,0x04,},"\xa7\xee\xd2\x96\x52\x84\x4e\xe0\x04\x9b\xaf\xb2\xcf\x63\x40\x29\x71\x02\x0d\x7e\x65\xc1\x0b\x91\xac\x57\x26\xee\xa8\x6f\x40\xdb\xc5\x3c\x3f\x0a\xbe\xde\xba\xf6\xcc\x44\x9b\x4f\xea\x48\xc0\x15\xfe\x4d\x90\x7b\x3e\x55\x05\xcf\xf5\x0a\x12\x18\x19\xa2\xe4\xa8\xa2\x96\xd5\x75\x10\x15\xbb\xcd\x7e\xf6\xfb\x7c\x27\x27\xbb\x00\x0b\xe1\x34\x2a\x7d\x14\xbc\xa9\x79\x04\xed\xfe\x8b\x18\xdd\xb6\x39\x33\x41\x83\x27\xa5\xaf\x81\x7e\x95\xba\xd7\x4e\xb7\x90\x20\x36\x15\xd0\x82\xe7\x14\x93\xea\xd4\x7c\xcc\x09\x01\xa2\xca\x9f\x50\x13\x3c\x44\xef\x85\x08\xd5\x1f\xb7\x3c\x61\x6f\x01\x47\x53\x22\x45\x82\x2d\xd1\x02\xb3\x37\xa1\xb2\xaa\xe2\xef\xc7\x2d\xca\x7a\x94\x19\xd5\x98\xa6\x47\x52\x33\xdc\x1a\x4e\xe0\xec\x6d\x05\xda\x12\xa2\xb2\x87\xcb\x77\xff\xaf\xdd\xe2\xd0\xac\xc2\x81\x99\x93\x3e\x66\x21\xee\xc1\x6a\xb4\x24\x51\x70\xcf\x02\xda\x80\xd4\x92\x26\x31\xa2\x32\x72\x91\x51\x65\xad\x88\x72\x27\x50\x03\x5d\x2a\x09\x77\xbc\x79\x1d\x14\xfb\x3d\x8c\xb0\x2b\xc7\x7f\x7c\x71\xbe\x52\x42\x62\x9a\x4c\x9a\x58\x8d\xfd\xde\x95\x78\x49\x4d\x8b\xaa\x4e\x68\xf5\x19\x4b\x80\x02\xc8\xe3\x78\xa0\xe8\x33\xb7\xc1\xa9\x69\x81\xc4\xfb\x05\xe4\x57\xff\x48\x26\x0b\x72\x49\x3c\xbc\xb8\x2a\xe1\x16\x73\xd1\x4c\xee\x85\x28\x8f\x63\x70\xbd\x4b\xca\x92\x51\xa7\xe2\x14\xc3\xeb\x79\xe7\xbb\x6f\xce\xbb\x16\xc9\xe0\x56\xf2\x9b\x62\x72\x74\x3e\xfa\x6f\xe8\xbf\xd2\x55\x97\xce\x86\x89\x8a\xb3\x05\x9e\xb0\x23\x1c\x73\xb5\x30\x59\x03\xfd\x13\x19\xbd\xf4\x9e\x59\x9d\x8b\xbc\xd7\x4a\x8b\x97\x67\x30\x8b\x61\x56\x3c\xcb\xac\xd3\x8f\xc5\x0c\x83\xab\x44\xca\x75\x9d\xc9\xb6\x5b\x2a\x4b\x54\x7c\x50\x97\xf2\x20\xc1\xc8\x8b\x2b\x0a\x48\xf6\x5f\x91\xfe\x78\xb1\x50\x12\x78\xe1\xe3\x04\xde\x58\xb4\xc8\x2a\x5c\x39\x99\x81\x09\x8a\x17\x84\xeb\x90\x42\x50\x18\x59\xf2\xa9\x3f\x31\x7e\x41\x77\x2f\xd5\x2f\x97\x2e\x51\xb0\x7e\xd9\x4d\x31\x4e\x1d\x1a\xf4\xed\x82\x90\x9a\x0b\xef\x67\x1f\x54\xb5\x5d\xb7\xb7\x0d\xa1\xf7\x18\xc8\xe6\x48\xae\xdd\x6d\xa6\x4b\x05\x77\x05\x26\xf1\x2b\xc4\x3f\x68\xb9\x55\x48\xda\xc5\x08\x09\xa6\x87\xdb\x97\xd7\x3f\x06\xf4\x7e\xd0\x88\x31\xb6\x0a\x28\xe9\x82\x92\x06\x32\x05\x8f\x0e\x6c\x90\xc0\x18\x7f\xf4\x45\x64\xf8\x1e\xfd\x8f\xd9\x3e\x32\x7b\xc6\xd8\x0b\x49\x0e\x08\x8b\x9a\x10\x03\x6c\x80\xdc\xda\xd4\x9d\x2b\xe0\x74\xfb\xba\x31\xe0\x6f\x71\x80\xe5\xad\x1c\x88\x23\xd6\x09\x66\xa9\xce\x15\x50\x3c\xe6\x0d\xd4\x0e\x91\xee\xf2\x35\x9d\x83\xd7\x0d\x98\x40\x1d\xde\x7b\xe3\xc6\xb0\x7e\x57\xd4\xe4\x7d\x04\x21\x76\x33\xd8\xe2\x63\xca\x34\x8f\x81\xfb\xe9\xa4\xa6\x2f\x45\xd7\x7c\x84\x3b\x6b\x1a\xd2\x84\x66\xd9\xda\xfb\x1b\x91\x0b\x34\x8e\xd8\x7c\x68\x6c\xab\x29\x2d\x48\x0c\x19\x1d\x18\x7b\x40\x4a\x9b\x1d\x13\x2b\xa4\xe2\x93\xd3\xad\xa9\x91\x72\xac\xc1\x21\xfe\x66\xb8\x45\xb9\x8b\x16\x0c\x58\x23\xf6\x01\xc7\x75\x8f\xb2\x6c\xae\xe8\x57\x01\x59\x5b\x2d\x52\xca\xa2\xf5\x68\x8a\xa2\xbf\x2f\x6c\x4b\xb6\x37\xf8\xe0\x0f\x49\xab\x6c\x26\xbc\x6a\xd8\x9e\x13\x67\xfd\x28\xe4\x91\x7d\x25\x08\x93\xa7\xb3\x2d\x39\x66\x0b\xde\x8d\xb4\x9f\x08\x6f\xb7\x39\xe5\x60\x12\xc3\x6b\xea\x0b\x26\xcf\x6d\x93\x57\x94\x0b\x00\xd5\xa4\x52\x8f\x90\x59\xaa\xf0\x86\x69\xe5\xf4\x6c\x99\x5e\x60\xf8\x87\xb5\xc4\xab\x88\xac\x74\x42\xed\x01\xa1\x4c\x6a\x42\x00\x6b\xaf\x1f\x34\x3f\xef\xe3\xe4\xac\xa8\x43\xa3\x24\xe1\x76\xb2\xfe\x7e\xc7\x88\x3d\x1c\xbd\x06\x8b\xc2\xfc\x96\x2f\xfa\x60\x24\x4f\x65\x4c\x77\xac\x56\x50\x81\x7d\xc0\x84\x46\x55\x45\xa9\x23\x0a\x74\x82\x6b\x0c\x50\xeb\x85\x25\x2a\x88\x6f\xf2\xb1\xaf\xea\xf8"}, {{0x88,0x3c,0xc1,0x38,0x17,0x57,0xb0,0xfe,0x04,0x55,0xb7,0x7b,0xc9,0xcd,0x0d,0xd4,0x64,0xd2,0xb4,0xbf,0x0c,0x7a,0x3c,0x0c,0x2d,0xc7,0x75,0xfb,0x78,0xaa,0x37,0x32,},{0x83,0xa8,0xb6,0x69,0xcc,0xd0,0x12,0x45,0xce,0x3b,0x81,0x8d,0xcb,0x1b,0x58,0x8f,0x86,0x53,0x58,0x50,0xe6,0xc7,0x10,0xc7,0x92,0x17,0xfe,0x43,0x98,0x24,0xf3,0xfa,},{0xc7,0xcf,0xd5,0xc9,0xfe,0x93,0x0d,0x15,0xa1,0x1e,0xbb,0x34,0xe3,0x43,0x1f,0x48,0x9d,0xa0,0x10,0xeb,0x19,0x3e,0xdb,0xfa,0x6f,0x23,0xd5,0xd1,0x4d,0xd8,0xfe,0xab,0xd7,0x88,0x0d,0x2d,0x5a,0x56,0x00,0xd3,0x85,0x46,0xce,0x3b,0xc6,0x4a,0x86,0x29,0x1a,0x1c,0xe3,0x1f,0x27,0x2f,0xf0,0x20,0xdf,0x8c,0xb6,0xa0,0xfd,0x4d,0x3a,0x0d,},"\xff\xec\x29\x3d\x12\xea\x63\x6c\xa4\xc4\xa0\xa5\xe2\xdb\x15\x34\x26\x39\xc4\x76\x67\x4d\x2e\xbd\xab\x4a\xef\xd4\x04\x6b\x5d\xdb\x56\xae\xb2\x10\xc1\x19\xaf\xdf\xb8\xa8\x91\x28\xa3\x4f\x6d\x77\xf2\x61\xed\xea\x07\x72\xa2\xf8\xdb\x14\x0a\x26\x40\xfd\x8e\xca\xdb\x0b\x47\x92\x16\x9b\x6b\x28\x10\xae\xe2\xc5\xcd\x83\x52\x88\xbf\xf4\x93\xbc\xeb\xee\xea\x28\xa7\xa2\x48\xc3\x61\x16\x54\x0f\xa7\x17\x36\xd6\x6b\x0a\x47\x5b\x5f\xa9\x2c\x0d\x46\x00\x2f\xca\x7a\x1e\x69\xd1\xb5\x9e\x81\xa3\xa6\xd4\xf3\x39\x76\x9d\xae\xb2\x0b\x5f\x9d\x75\xc4\xc2\x8f\x69\x21\x32\xd2\x8d\x3c\x56\x4c\x09\xfe\x3d\xcc\xa0\x35\x9c\x3c\x63\xec\x37\x7a\x33\xf9\xee\x87\x4d\x8a\x78\x9d\x77\xc9\x6a\xc0\x5f\xdf\x3a\xb3\x8b\x2c\x82\x74\xa9\x02\xef\x8b\xb7\xf4\x67\xfc\x7e\x07\x3c\x77\xb1\xdb\x5f\xc8\xef\x96\x6c\x12\x0c\x4d\xae\x3f\xb7\xf5\xb7\x4a\xbb\x99\x01\x66\xc8\x12\xa5\x25\xd1\x23\xf7\x6e\xd5\x12\x12\x50\x80\xa1\x53\x4f\x3d\x8b\xdc\xcc\x54\x1f\xc9\x75\x90\x28\x75\x46\x09\x6f\xc8\x80\xbf\xcf\xdd\x00\xe6\x5c\x0e\xbf\x4a\x09\xfd\x64\x76\xce\x1b\x7c\x8f\xaa\xa5\xa1\xcc\x27\x86\x71\x9a\x30\xd8\x25\x58\x11\x18\x47\x52\xa8\x8b\x08\xac\x9f\x0f\xf1\xd6\x26\x2f\x25\x86\x94\x0a\xfe\x1f\xe4\x5e\x0b\x56\x34\x48\xa5\x5f\x30\x30\xe4\xc3\x9c\x1f\x3f\x86\xa7\x33\x67\x03\x80\xea\xb0\x88\xe3\x93\xde\x09\xd1\xf5\x08\xd2\xfb\xca\xfc\x64\x9a\xea\xe6\xb8\xc3\x0e\x32\x9e\xc3\xfd\x28\x29\xbe\x6d\xb0\xab\x8e\x63\x7e\xa1\x09\x5b\xdc\x3d\xf3\xac\xc2\x3d\x3c\xf7\x05\xa9\x54\x2c\x19\xe5\x90\x92\xec\x41\x3a\x4e\x2b\xd5\xde\xd2\x8c\xd3\x4d\xdb\x3d\x32\x94\x9a\xa4\x87\xf1\xc3\x37\xd6\x97\x9c\xf5\x12\x62\x2d\xbf\xb7\xda\x1c\xbb\x1c\x7e\x5a\xbe\xea\x70\x09\xe2\x94\x3f\xfb\xa2\x25\x2e\x1d\x86\xec\xa9\xd6\xd5\xc2\x46\xcd\x2e\x13\x4a\x3e\x5d\xad\x37\xef\xef\x71\xce\x39\x7a\xda\xfb\xd9\xe7\x2b\x3f\x9a\x86\xff\x0f\x5d\x81\x2c\x46\x22\x5b\xeb\xd0\x70\x3b\xc5\xcc\xe9\xc6\x45\x82\x00\x8f\x7e\x55\x8c\x40\xa3\xb3\x52\x20\x96\xd1\xaa\x2b\x61\xbc\x90\xcd\x88\xc6\x28\x5d\x94\x20\x87\xd8\xa4\x66\x5a\x0e\x64\xd3\x57\x2f\x74\x68\x9b\x4f\x24\xef\x40\x0d\x74\x1b\x57\x14\x06\x13\x47\x14\x44\xde\xcc\x65\x4a\xf0\xff\xb2\xed\xfd\xf9\xfd\xd0\x75\x09\x81\x90\xb3\x4c\xde\x28\xdd\x16\x68\x72\xc6\x08\x65\x67\xa6\x87\x61\xce\xf2\x5d\xa4\x0b\xd4\xc3\xd3\x4f\xdd\xd7\x2e\xe5\x65\xb0\xb9\x37\x67\x8e\xe8\x43\x49\xd1\x16\x0f\x5f\x07\x05\xf8\x95\xd0\xf1\x41\xce\x8f\x51\xa1\xe4\xfd\x2d\xc4\x70\x4b\x52\x7a\x40\x25\xa9\x39\xcb\x2b\xb7\x88\x57\xeb\x18\xd7\x88\x72\xed\xc9\xee\x70\xe6\x0b\x2a\x42\x70\x0a\x19\x8f\x4f\xff\x6c\x31\x92\x51\x68\xbe\x07\x7d\xc2\x3c\x32\x2a\xbb\xca\x97\x36\x1f\xec\xaa\x3f\xcb\x19\x6e\x65\x6c\x12\x8f\x39\x82\xfe\x11\xe5\x51\xa4\xa0\x88\x5d\xa6\x0d\x39\x7d\x0e\x40\xd0\xd8\x97\x26\x2f\x1b\x4b\x67\x2f\x78\xa2\xd2\xad\xfc\xdd\x6e\x15\x25\xc2\x6e\x71\x95\xfb\x9a\xc6\x06\xbb\x1b\xa4\xa9\x89\x08\x03\xb4\xbd\x84\x34\x6a\xe8\xd8\xc7\x19\x6c\x90\xae\xcc\xb2\x96\xa4\xc3\xeb\x4e\xfa\xcb\xfc\xb6\x2e\x38\x3b\x8a\x49\x4a\xc7\x23\x56\x2d\x0d\x8c\x37\x91\x87\xa9\x2e\x3b\xda\x6b\x15\x69\x47\x6a\xed\x21\xae\xd7\xa0\x56\xb4\xa5\x82\x67\x44\x01\x7c\xc0\x06\x0b\x4d\x55\xfa\x87\x72\xb5\xb1\xc1\x5f\x57\x48\xad\x72\x98\x00\x5a\xec\xbc\xbd\x90\xa3\xe5\xc6\x15\x9a\x86\x74\xab\xbb\xa3\x79\x14\x41\x50\x02\xb5\xa6\xef\x5d\xf3\xc6\x49\x42\x6e\xa1\x27\x5a\x01\xd8\x0a\xdf\x49\x0a\xc5\x46\x06\x2d\x93\x99\x9a\x6d\xcc\xac\xb9\x6a\x09\x04\xad\x33\xd9\x05\x76\xdc\x6a\x21\xb6\x72\xe8\xff\xb0\x66\x13\xfb\x3f\x14\xe6\xcb\xdd\xe8\x8c\x24\x37\xc9"}, {{0x5e,0x40,0xa7,0xaa,0xbb,0xb0,0x83,0x0a,0x9a,0xb0,0xfd,0x79,0x69,0x0e,0xe0,0x43,0x39,0x01,0xc6,0xcb,0x06,0x76,0xab,0xe4,0xbb,0xa0,0x6f,0x5b,0xbe,0x58,0xfa,0xc2,},{0x4d,0x4f,0x28,0xfe,0x09,0xc4,0xaa,0xbf,0xca,0x01,0xef,0x6e,0xe7,0xfd,0x63,0x72,0xfb,0x62,0xdb,0x61,0xaa,0xee,0x82,0x7c,0x43,0xfd,0x1a,0x6d,0x1c,0x25,0x90,0x32,},{0x59,0x76,0x72,0xab,0x8d,0x3a,0x60,0xde,0x54,0x56,0xfc,0xc9,0xc3,0x82,0x53,0xf5,0xf3,0x7b,0x80,0xe7,0x4a,0x00,0x7c,0x9f,0x6d,0xb9,0x09,0xd2,0x7d,0x0e,0xad,0x16,0x27,0x89,0x24,0x49,0x94,0xf3,0x5b,0x80,0xd6,0x1b,0xe1,0x99,0xc4,0x17,0xc7,0xea,0x90,0x1b,0x98,0xcc,0x63,0xfe,0x3c,0x50,0xfc,0x3c,0x63,0x38,0x49,0x0f,0xa2,0x06,},"\xfd\x4e\xc8\xb3\x4f\xc6\xb7\x43\x81\x3f\x59\xe2\xfd\x1f\xef\xa8\x70\xf5\xa9\x70\xe2\xeb\x75\x16\xef\x7c\x30\x6f\x4b\x82\x3f\xfe\xe9\x2d\x60\x1f\x76\x5d\x79\xca\x14\x6a\xba\x8b\xc6\xe7\x98\x44\x55\x99\x35\xcd\xdc\x24\x26\x49\xc0\x59\xec\xf2\xdb\x84\xfd\xc2\x19\x36\x66\x88\xa8\x8f\xc2\x5b\x85\x1c\x36\x61\xe5\x19\x88\xc2\xbf\x73\xbb\x8e\x3d\xc1\x6d\x22\x41\x5a\xb1\xa7\xb3\x55\x79\xda\xac\x73\x25\xe3\x19\x15\x7d\x7d\xa5\xfe\xe8\x7c\x93\xa4\xdf\xcb\xaf\xc9\x2f\xba\x7e\x17\xcc\x68\xe3\x90\x37\x33\xc6\xc8\x01\x57\x2d\x90\x73\x20\xb2\xfe\xb5\x17\x10\xe8\x56\xa1\xf7\x6f\x85\xa7\xee\x1a\x11\xe6\x2d\x2e\x45\xa3\x52\x93\x8d\xd8\xcf\xc2\xbc\xcb\x90\x2d\xea\x44\x4f\xaa\xae\x6d\x84\xc5\xf3\x91\xe1\x0a\xef\x76\x92\x8a\x45\x15\x3d\xb6\xcd\x25\xa2\xbf\x35\x3d\x80\xd9\x7b\xf4\xb3\x80\x86\x05\xe8\x98\x00\xd2\x98\x40\xea\x60\x97\x8d\x9e\xc9\xb2\xc3\x02\x74\x98\x88\xf9\xde\xbc\x84\xdd\x1e\x2a\x79\xaa\x0b\x6b\xa0\x2a\x03\x91\x93\x08\x1b\xdb\xff\x05\x99\xa1\x4d\x91\x8c\x0c\x8d\xea\xc4\xf6\x0b\x6e\x99\x47\x4a\xb5\x30\x11\x74\x10\x34\xfe\x2a\x20\xcf\xf4\xe0\xf0\x23\x42\x4c\x8e\x57\x97\x76\x8a\xd5\x3d\xf6\xd0\x1a\x24\x01\x1f\xa9\x0f\x0b\xb1\xd5\x06\x9c\xdb\x36\xb4\x50\xf4\x33\x11\x0c\x2c\x56\xf3\x4a\x1d\xe4\x26\x09\x14\xcd\x46\x96\xb1\x4a\x09\xc0\x26\x8b\x2a\xe2\xe9\x8e\x6b\x4e\x99\x2b\x91\x25\xf8\x78\xf1\xac\x09\x82\x31\x70\x62\x83\x88\xf0\xf6\xe2\x56\x25\x9c\xa7\x86\xbb\xe1\x44\x88\x4c\xb2\x98\xcc\x04\x3d\x02\xf5\xc3\xdc\x68\x4f\x78\x7f\xaf\x16\xc1\x0f\xdd\x84\x37\xa8\xc3\x09\x74\x63\xbd\xb9\x9b\x78\x03\x0f\x94\x74\xfc\x5c\x99\x51\xdc\x75\x26\x49\x05\x86\xfe\x1c\x2d\xb0\x54\x11\x34\x14\x60\x23\x9d\x5e\x8b\xc5\x30\x65\x90\x2b\x95\xfb\xa2\x82\xc2\x76\x65\xe8\x69\xa1\x9d\xae\x84\x60\x6d\x17\x26\x67\x51\x55\xd3\x80\x39\xb9\xe5\x5d\xb4\xd5\xce\xec\x95\xcd\x6d\x87\xf8\x5e\x99\xdd\xe5\x4a\x04\x76\x1e\x6e\xad\xa6\x61\x9d\xa8\x95\xb6\x54\xfe\x38\x45\xe8\xa6\x0f\x3a\x3b\x32\x48\x3d\x6d\x27\x97\x8a\xf5\x45\x02\xb2\x20\xe4\x78\xdb\x78\xcf\xf7\x7a\x9c\x97\xfb\x79\xfb\x5a\xcf\x56\x28\x9f\x38\x1a\xcb\x10\xde\x64\xc3\xf2\x38\x42\xb1\x2b\xf5\xf1\xb2\x83\xbd\x25\xd4\x8d\x09\x12\x8f\xb5\x5d\xda\xe2\x55\xbe\xb7\xc6\x6a\x74\xcf\x6f\x06\x95\xa4\xf8\x28\xcb\x29\xe4\xaf\xdb\xb3\xb4\x2a\x23\x5d\x4f\xdb\x66\xb9\x63\xac\x8f\x68\xe8\x2b\x00\xa1\xc4\x50\x08\x63\x29\x62\x47\x17\x8c\xfd\xef\x80\x3b\xb7\xb1\x14\xf0\xc0\x32\x76\xf6\x71\x66\x9a\x08\x7d\x92\x28\xa3\x7a\xe7\xb9\x9b\x06\x15\x49\xc1\xcf\x8e\xc1\x72\x46\xea\x1e\xe0\x3d\xbc\x88\xbf\x42\x64\x16\xd5\x86\x57\x2f\xf1\x0a\x31\x45\x60\x6f\x27\x84\xe4\x35\x7b\xe4\xed\xee\xc6\xc3\xa7\xbf\x11\xbb\x5b\x0e\x90\xcf\x50\xed\xaf\x89\x1e\x51\xd2\x63\x57\xbf\xc8\x53\xce\x23\xb2\x99\x15\x5c\x82\xc1\x03\x1d\xfa\x64\x07\x4d\x72\xa0\x9d\x29\x72\x0e\xad\x6e\xbb\xbf\x75\xd5\x73\x8e\x32\xcd\xa6\xb6\x46\x6a\x8d\xef\x6b\x50\xa1\xed\x9b\x86\x5a\x9a\x88\xa0\x80\x18\xac\xb5\x01\xa4\xde\x9d\xb5\x4d\x05\x22\xce\x9c\xec\x7a\x06\xbd\x9a\x5f\x86\xb0\xb4\x6c\x07\xbf\x3e\x7f\x5a\x42\x6f\xf6\xb4\xbb\xe1\xe0\x03\x13\xa5\xac\x27\x19\xa9\x59\xed\x44\xee\x0a\x44\xbd\x97\xda\x6d\xb2\xcb\x97\x1b\xd6\x83\x34\x90\x89\x49\xed\x85\x0f\xbf\x73\xd0\xe0\x20\x49\xda\x18\x1c\xce\x9c\x2d\x9c\xa1\xb6\x24\xc8\xd8\x7c\xf9\x04\xeb\x82\x1d\xc7\x95\x92\x95\xda\x57\x77\x92\x06\x60\xb4\x3c\xcc\x25\xcd\x38\x9f\x15\x7f\x67\xfa\x03\x90\xfe\xac\x97\xa7\x52\xc1\xac\x20\x4c\x21\xdf\x56\xbb\x0f\x4f\xc0\x16\x41\xb4\x80\xaf\x2b\x89\xb5\xd1\x6d\x4a\x0b\xcb\x0a\x50\xb8\x2b\x0e\x04\x84"}, {{0x3a,0x34,0x13,0x6a,0x97,0x34,0x80,0xd9,0x70,0x06,0xdc,0x27,0x93,0x58,0xe6,0x60,0x62,0x93,0xd8,0xcb,0xc1,0xa4,0x4e,0xe5,0x52,0x33,0xaf,0x2b,0x52,0x64,0xb9,0x0c,},{0xe5,0xef,0xfd,0x92,0x1b,0xe8,0xee,0xc5,0x30,0x75,0x2f,0xcc,0xc5,0x76,0xef,0x0d,0x9b,0xcd,0xe4,0xb3,0x2c,0xc6,0x49,0xd3,0xf7,0x95,0x47,0x17,0x56,0x28,0x60,0xcc,},{0x42,0x5f,0x27,0x22,0x12,0x83,0x57,0x55,0xad,0xcc,0x05,0x22,0xc6,0xf6,0xe0,0x5f,0x68,0x00,0x8a,0x3b,0xe9,0xba,0x59,0x74,0xe4,0x20,0xc4,0xc5,0xcb,0x56,0xe6,0xc5,0x5d,0xec,0x0d,0xe3,0x47,0xb1,0x6c,0xae,0xf8,0xbd,0x33,0xb7,0x1b,0x44,0xc8,0x35,0x7d,0x05,0xb6,0x32,0x1d,0x7b,0xf4,0x93,0xd2,0x58,0x61,0xdb,0x48,0x7b,0xd6,0x03,},"\x98\x1c\x8e\x10\x90\xe3\x96\x95\x1b\x07\x2e\xf8\x49\x70\x62\x02\x08\x97\xbf\x7d\xd7\xad\x50\x5b\x4d\x6d\xc1\x1b\x3e\x1d\xbc\xb0\xda\x24\x99\x84\xa1\x40\xe1\x64\xfc\x2e\x02\xb3\x1d\xa3\x98\x46\x55\x4a\xa8\x90\x5b\xc8\xb3\xdf\x8a\x76\xbf\x60\xeb\x5f\xfc\xf2\x2c\x97\xb6\x71\x22\x7d\x24\x90\x71\xda\x8f\xf6\xbb\xa7\x5b\x2f\x76\x68\xce\xc1\x9a\x89\xe6\x47\x5a\x12\x46\x3d\xab\xf3\x68\xb3\xca\x24\x45\xbb\x30\x35\xcc\x00\xfa\xe8\x5b\x70\x72\xfb\xcf\x59\x54\x01\x75\x5b\x80\x51\xe6\x09\x70\x65\xae\x42\x9f\x18\xee\xb1\x3f\xfa\x6d\xde\x59\xdf\x6f\x3c\x20\x6b\xfd\x9c\xe1\xf8\xa8\x00\xc8\x59\x0a\x40\x21\xd1\x60\xf6\x6d\x67\x40\xa3\x69\xae\x83\x56\x17\x53\x8b\x58\x90\x23\x1f\x13\xc5\x66\x7b\xaf\x51\x0a\x60\x6b\xda\xa8\x4b\x8d\x10\xee\x60\x15\xe1\x2a\x4c\x1e\xc0\xbd\x04\x21\xa2\x94\xc5\x1c\xf6\x3b\x5d\x1f\x05\x8e\x11\x53\xdc\x42\x5d\x10\xce\xe8\xb1\xb0\x84\xd6\xc2\x93\x47\xe9\x6f\x0f\x31\xb8\x39\x60\x7d\x07\x8b\x79\xa9\x0c\xa3\xd1\xf0\x63\x80\x7a\x46\x3b\x7c\x32\xf4\x5a\x53\x44\x98\xd7\x1d\x47\xed\xc3\xb1\x7a\x4d\xff\x27\xfe\xdc\xff\xab\x30\x1f\x34\xf1\xa6\x4c\x02\x78\xa5\x35\x89\x34\x9a\x23\x3a\xf3\x0b\x1e\xc1\xae\x41\x0f\x7b\x16\x30\xc7\x14\x5c\xa4\x2c\x96\x63\xf5\x12\xe8\xa5\x78\x26\x7d\xc9\x5e\x83\x28\x9c\x17\x03\x2e\x09\x78\x2e\x2f\xe8\xe1\x6e\xfb\x87\xf0\x3c\xa0\x3b\x11\x95\x61\x4f\x89\x96\x1c\xa3\x93\x9d\x3b\xdf\x73\x72\x21\xa2\x2d\x7a\x18\xec\x30\xfc\x12\x6d\x0c\xa6\x63\xe8\x8d\x60\x60\xd0\x4c\x6a\x44\xe5\x61\x6e\x55\x6e\x07\xd6\xd4\xa8\x47\xf1\x71\x1c\xf4\x37\x17\x81\x0c\x70\xaa\x4b\xe7\x30\x27\x8b\x3b\xd6\x55\x5c\x95\x4d\xc6\xed\xb0\x9d\xb0\x8f\x0e\x21\x18\x03\x59\x62\x80\xf3\xc7\x86\x8d\x23\x42\xcc\x23\x08\xea\xae\x4d\xa1\x91\x35\x14\x66\x4b\x1d\xb9\x62\xe9\x9c\x8a\x8c\xff\xe5\x79\x31\xf5\xdf\xcd\xdb\xc1\xcb\xb3\x6c\xe1\xc8\x42\xe2\xdd\xde\xad\xfd\x7e\x7d\x0a\x50\x48\xcd\xcb\x96\x1b\x14\xf3\x5f\x43\x5e\x73\xa6\x83\xc8\xce\x25\xc8\x16\x81\x25\x66\xfd\xf8\x17\xe0\xd3\x36\xae\x0b\xd2\x47\x32\x85\x12\xb2\xa8\x56\x76\x32\xbf\x20\x55\x3d\x9b\xd6\xfe\x15\x7f\x22\x0f\xfb\x0b\x46\xeb\xae\x89\xa7\x04\x59\x72\x8a\x57\xee\xd1\x79\x62\x56\xf1\xbd\x50\xb6\xd5\x47\xea\x3e\x25\xfa\x59\x13\xd3\x89\xa2\x25\x83\xe9\x15\xeb\x49\xde\x35\xa9\x7b\x5a\xcc\x52\x1d\xb0\xd0\x05\xc2\x95\x75\xe1\x66\x11\xa7\x55\xf2\x1a\x3a\x5a\x82\xa2\x0a\xa9\x00\xa7\x07\xce\x36\x82\x54\x92\xc3\xca\x15\x39\x5f\x17\x00\xb4\xaf\xab\x94\xda\xa7\xa0\x2f\x14\x53\xb1\xf9\xa6\xbd\x36\xef\xb2\x04\xd9\x28\xee\x1f\x4d\xcc\x86\x0f\x3a\x85\x9b\xad\xc0\x06\xfb\x30\x5f\xa1\x23\xd4\xc7\x9b\x23\xa2\x0e\x32\x29\x5d\x04\x0a\x7f\x8f\x6c\xac\xa2\x5d\x83\xf7\x1c\x62\xe3\xaf\x78\x36\xef\x76\xb9\x3a\x83\xd3\xc3\xb4\x93\xaf\x14\x17\x53\xda\x19\xe4\xcd\xcb\xa5\x66\x17\x27\x10\x34\xb4\xf4\xf3\x94\xc7\xc6\xb7\xd7\x96\x66\xf3\xaf\xb6\x92\x24\x4f\x06\x1c\x69\xa8\x88\x1d\x1b\x52\xb8\x84\x9f\xb5\x34\x99\x0a\xc2\x39\x19\x09\x47\x1e\xbb\xb7\x28\xe2\x9c\xd2\x0f\x42\x23\x54\xc4\x30\x97\x17\xeb\xff\x3e\xfd\x18\x33\x37\x08\x06\xd5\xbf\xb5\x3c\xa2\xda\x31\x6d\xac\xb5\x0a\xb7\xfb\x73\x96\x73\x23\x5a\x1d\xc5\x3a\xa8\x89\x30\x72\xd5\xb9\x1c\x9f\x6d\xb8\x3f\xc4\xea\x41\xd1\xee\xf4\x9a\xc2\x8a\xfc\x1c\xed\x8f\x36\x18\x90\xab\x9f\x77\x9d\x19\x30\x82\x83\x1c\xb8\xc4\x2f\xb2\x79\x2b\xee\x3b\x26\x29\x6b\x62\x95\xeb\x78\xa8\xd8\x53\x11\x76\x61\x62\x4e\x11\xf7\xf5\x7a\xfd\x60\x85\xa7\xb9\x12\x36\x79\xfd\xac\xa1\xcf\x2a\x78\xd3\x80\xbc\x4c\x36\x0a\xa7\xc3\xcb\xfd\xe0\xc0\x09\x1f\xe5\x3e\x22\x19\xc0\x70\xf2\xf0\x2f\x14\x83"}, {{0xcf,0x33,0xe7,0x97,0x4d,0x8f,0x0b,0xf8,0x99,0xac,0x5b,0x83,0x4c,0x7c,0xf9,0x64,0x79,0xce,0x1c,0xfd,0x45,0x3a,0xf0,0x7f,0x97,0x05,0x27,0xf3,0x6a,0xa8,0x5c,0x1f,},{0x57,0x8f,0x60,0x33,0x8b,0x1f,0x04,0x1a,0x97,0xd3,0x19,0xfe,0xcf,0xa3,0x0c,0xfa,0xed,0x36,0x93,0x03,0xcc,0x00,0xb3,0xec,0x8c,0x5c,0x99,0x04,0x11,0x58,0xe2,0x0c,},{0x97,0xa5,0xb6,0xd2,0x68,0xa5,0xb4,0x17,0x5f,0xb0,0x6f,0x1f,0x37,0xd0,0xa6,0x33,0x51,0x92,0x96,0xed,0xc3,0x00,0x11,0xc9,0x54,0xd8,0xf0,0xb9,0xbb,0xe2,0x64,0x18,0x00,0x39,0x6c,0x4b,0x35,0xd4,0xb0,0xd7,0xd2,0xa1,0xd1,0x7c,0xbb,0xeb,0xdc,0x55,0xa8,0x09,0x46,0x2d,0x6c,0xc1,0x9a,0x6f,0xad,0xbe,0x1b,0xd1,0xba,0xe8,0x8a,0x01,},"\xe8\x13\x14\x4b\xd1\x16\xf6\xac\x36\x38\x92\x17\xb5\x17\x1a\x90\x2f\x06\xb7\xdd\x7b\x14\x4d\xf4\xf9\x09\x15\x53\xc7\xc7\x83\x57\x53\xa2\x96\xcb\xb0\xd7\xfa\xb9\x9c\xef\x77\xb6\x1f\x34\xa0\x4c\x8a\xf0\x4e\x7d\x5d\x1f\x96\x13\x02\xde\x89\xe2\x00\x5f\x29\x9f\x5a\x4a\xa1\x79\x24\x61\x7d\x00\x66\x93\x93\x77\x45\x53\x9c\x30\x48\xee\x36\xb8\xc2\x3a\xfe\xc0\xaf\x9f\xea\xa0\x06\x6c\x8a\xf8\xe0\xa7\xf0\x90\x93\x49\x82\x10\xf6\xd8\xdc\xc0\xaa\xad\xa5\x66\x87\x86\x91\x0f\xf7\xc5\xb3\x48\xd4\xcc\xd6\xee\xef\xfa\x3a\xcd\x18\x16\xd9\x01\x1a\x4c\x40\x25\xf6\xc2\xfd\x2c\x02\x0a\x10\x59\x36\x27\x52\x0d\x4d\xd9\x9e\x07\xc6\x2d\x2d\xbe\xbe\x84\x13\x9e\x1c\x7d\x86\x7c\x09\x35\x74\xfa\x60\x1e\x4e\xe3\x07\xac\x92\x6e\x5d\x36\xb6\x2d\x7e\xd8\x4a\x26\x15\x88\xb7\xe2\x88\x3c\x79\x26\x61\x2b\x4c\xc6\x7e\x2b\xb7\x25\x44\xa1\x0d\x6b\x49\x29\xc8\x8e\xf6\xc4\x7c\x26\x25\xd2\xf6\x81\x6b\xd7\x3c\x3b\xae\x89\xd2\xe0\xc8\x61\x71\xac\x4b\xd0\x80\xae\x55\x5d\x62\x74\x0d\x1d\x2a\x76\x1c\xed\x86\xdf\xc3\x28\xec\xc2\x7e\xe3\xdb\x6d\x40\x41\x08\xef\x4e\x0b\x64\x90\x62\x53\xb4\xc0\xa7\x71\xad\xef\xed\xc8\xa2\xc5\xb5\x3c\x42\x5a\x70\xcd\x6f\x63\x95\x6f\x7a\x0a\x61\x9f\xdf\xbf\xd0\x0a\xa0\x78\x41\x8e\xb4\x65\x2f\x8b\xc6\xf3\xc2\x53\xbe\xec\x98\x38\xb7\x7f\x9c\xbe\x2e\xf2\xb8\x05\x5c\x57\x73\x53\x9e\x35\x6b\xd8\x19\x26\x06\xec\x10\x1e\x3f\x60\x58\xb1\xdd\x08\xa6\x8f\xdb\xc5\x49\xdf\xe6\xb7\x72\x5d\xc2\x54\x9e\x8e\x3f\x90\xdc\x5b\xe3\xcc\xfb\x0a\x38\xba\xf9\x37\x7c\xb3\xf6\x50\x1d\x2e\x15\xcc\xb3\x55\x6a\x89\x5c\xcb\x23\xf0\xb6\xdf\x9f\xe5\x93\x11\xcf\xf5\x53\x74\xc3\xfb\x3a\x32\x98\x1c\xa2\x6a\xb4\x26\xf3\x66\x3d\x04\xe3\x16\x7e\x53\xa5\x37\xb7\x58\x9a\x9f\xb7\x36\x79\x09\x0a\x20\x55\x32\xc1\x32\x90\x66\x34\x33\x4a\x7e\x87\x49\x79\x3f\x8c\x59\x3f\x3f\xd6\x27\x8c\xe0\x05\x03\x83\x48\x7f\x3b\x24\x50\x67\xaf\x94\x88\x1a\xa1\xae\x96\x8d\x0c\xae\xba\x5f\xa5\xc7\xbe\x5f\x4e\x4b\x72\x57\x51\x86\x95\xd8\x9b\xcc\xde\xc5\x07\xb9\x67\xb4\xfd\x64\xb6\x89\x3b\x3e\xe7\x80\x3c\x1d\x36\xea\x8a\x02\xfc\x42\x6f\x9a\xfc\x8e\x9f\x24\x32\x15\x27\xec\x98\x44\xbc\x3c\x54\xa0\xf7\x66\x7e\x03\x43\x00\xbb\xb4\xfb\x02\x0f\x6d\x5b\xb9\x54\xe7\xb5\xa3\xa7\x06\xa4\x93\x9d\xb3\x3c\x15\x48\x92\x64\x34\x76\xa2\x91\xd4\x7d\xc1\xe6\xf7\x2c\xe9\x1d\x13\x6f\x11\xdb\x26\xb9\xc9\xba\x73\x6e\x40\xdf\x0a\x15\xc1\xa8\x91\x49\x99\x6b\x25\x1d\xd9\x88\xb3\x90\x04\xe6\xef\x41\xbd\xc0\x61\xdb\x58\x0b\x7b\x74\xde\x2a\x65\x18\x10\xbd\x89\x17\x53\xb9\x73\x86\xd7\xf8\xcb\xdb\xb6\xec\x38\x6f\xa2\xc3\x42\xf5\xef\x20\xe6\xe3\xa8\xbb\x4d\x51\x49\xa7\xd4\xde\x12\x24\xdf\xf1\xd1\x72\xc8\x75\x70\xf7\x76\xd5\xef\x45\x95\x9b\xe0\x93\x8a\xd7\x9f\x5d\x33\x95\xcb\x27\x21\x62\x71\x22\x88\x7b\xd7\xa8\x98\x3b\x64\x77\x97\xbd\x41\xd8\x82\x64\x1c\x81\x43\x1c\xe8\xd9\xb3\x06\x7a\xde\xc4\xcd\xe9\x26\xc5\x13\x13\xf0\xcf\x84\xc5\x29\x25\x62\xdd\x49\x08\x64\x2d\xd2\x45\x28\x84\x84\xc5\x56\x8a\x78\x7d\x0c\xed\x36\xa3\x52\xf0\x32\xda\x4f\x7e\x4d\xe0\x6b\x11\x47\x3f\x65\x0e\xec\x65\xdd\xa9\x96\x39\xaf\x2d\x42\xd8\x4e\xe2\x30\xf4\xf8\x36\x23\xd9\xc9\xaa\xa3\xb1\x6b\xda\x10\xdd\xaa\xd2\x5a\xf5\xc1\xc1\x0f\x81\xc8\xc5\x1c\x81\x1a\x3a\xa3\xe3\xdb\x58\xa7\x02\x5e\x43\x80\xe2\x85\xda\x47\x4a\x61\xba\x59\x17\x3f\xf0\x42\xa4\x6a\x79\xab\x18\x4b\x07\x01\x08\x41\x6f\x9d\x61\x58\xcf\x96\xd0\xe6\xdb\x44\x76\x14\xa0\xd9\x08\x9e\xbb\x6a\xee\x4e\xf1\x07\xbe\x45\x93\xd7\x1e\x79\xf6\x79\x86\x68\xa7\x40\xae\x4b\xac\x5a\xc7\x59\x4e\xcb\xd5\xdc\x82\xe7\xd0\xf9\xcb"}, {{0x51,0xb1,0xad,0x0f,0xfc,0x21,0x49,0x7a,0x33,0xdb,0xdb,0x85,0xea,0x2b,0xc1,0xce,0x3d,0x0c,0x2d,0x95,0xd9,0x46,0x1a,0x39,0x09,0x73,0xfe,0xe3,0x77,0xfc,0x75,0xf4,},{0xba,0xd0,0x41,0x25,0x75,0xd3,0x80,0x13,0x01,0xed,0xee,0x6b,0xc0,0xf2,0x76,0xe7,0x87,0x35,0x7b,0x41,0x22,0xf5,0x2d,0xe9,0x81,0x88,0x58,0x51,0x88,0x42,0x49,0xcb,},{0xcf,0xb6,0x5b,0x6f,0xf0,0x37,0x7c,0xef,0x51,0x1f,0xd9,0x7b,0x90,0xc3,0xec,0xb8,0x08,0x33,0xf1,0x42,0xa7,0xcf,0x50,0x22,0xce,0xd3,0x0b,0x3f,0xb7,0x86,0x20,0x86,0xd0,0x13,0x39,0xb8,0x86,0x6a,0x23,0x8c,0xb0,0x70,0x27,0x6e,0x19,0x44,0xb5,0xfe,0x32,0xcc,0x40,0x99,0x47,0xcb,0x91,0xde,0xb1,0x43,0x2c,0x29,0x1b,0x60,0xfb,0x0d,},"\x78\x82\xe8\x6e\xf3\x40\x2f\x6d\xbc\x65\xcc\xe8\x31\x5b\x39\x76\x5f\xaa\x4b\x1f\xc8\x76\xfa\xd5\xf8\x22\x0c\xb2\x2a\x7d\xf2\xe3\x58\x0e\xab\x3a\x7e\x8f\xa7\xfb\xb6\xb5\x94\x82\xca\x0e\x36\x4a\x13\x13\x96\xdf\x79\x2a\x32\x41\xa0\x60\xe4\x41\x43\xb6\x76\x74\x93\xc6\xbf\x75\xf1\x87\xa9\x64\x3a\xa1\x1e\x11\xeb\xa7\xb0\xa8\x0f\x0a\x68\xb9\xf1\xb7\x9f\x75\xb6\x6c\xc5\x9d\x9d\xa7\x79\x55\xfd\x7e\x87\x99\xf9\x9d\x6e\xb0\x8f\x90\xd3\x18\xf4\xef\xcb\xfe\x71\x15\x9b\x10\xa8\x3a\xa5\xfd\x69\xbb\x75\x33\x6f\x5d\xf2\x96\xea\x06\x0a\x42\x6c\x95\x45\xdf\x94\x0b\xc1\x45\x4e\xfc\x1f\x9d\xc9\x65\xf1\xf2\x2d\x94\x73\x03\xfb\x8e\xc1\x24\x07\xff\xf6\xb1\xdb\xe4\x7e\x34\x21\xc3\x17\x64\xfd\x90\xc8\x3a\xc7\x11\xd1\x99\x26\xe2\x29\xa0\x64\xc6\x1f\xe3\x67\x6a\xf3\x00\xa1\x71\x6f\xab\xe4\xe3\x84\x22\x64\xad\xb3\x2e\x0d\x9c\x9f\x5d\x4a\x65\xd0\xd7\xb5\xc3\x77\x0d\x73\x7e\xe1\x3c\xbe\xd2\x1d\x7a\x1d\xa3\x6a\xaf\x7e\xc0\xf3\x6f\xcc\x47\x6f\x65\x96\x81\xe5\x16\x0a\x5a\x1f\x49\xe7\x59\xb9\xd0\xfc\xd4\xfd\xb8\x54\xec\xcd\x99\x17\x2a\x47\xd2\xc4\xef\xbe\x0b\x37\x57\x63\x1d\xf1\xba\xe1\x75\xf0\xfa\x74\xdd\x04\x8b\xb6\xa5\xfe\xd8\x43\x02\x84\x34\x9d\xa3\xd6\x7d\xf2\xa6\xf7\xe8\x26\x9b\xc7\x9f\xb2\xc5\xd5\xed\x60\x84\xe9\x07\x6f\x45\x5a\xb6\x38\x91\x90\x46\x36\x9a\x44\x6d\x57\xfc\xad\xa7\x01\x1c\xc7\x71\xbf\x6d\x87\x4a\x8e\x5d\x23\xc6\x87\x74\x7d\xe4\x1d\xd0\x4b\xff\xc7\x17\xd6\x12\x81\x83\x84\x6e\xb5\x94\xb3\xcb\x1c\x1a\x8a\xa0\x4f\x0d\x7e\xba\x53\xaf\x39\xcb\x1d\x4e\x6f\xec\xf3\x11\x3b\xd8\x42\x24\x16\xf4\xc4\x40\x37\xae\xee\x9e\x0f\xdc\x51\x7c\x48\x73\x1f\xd0\x4e\xe9\xc9\x9f\x5d\xbc\xa3\xd5\x74\x50\x9d\x7b\xaf\x32\x88\xf2\xc2\x30\xa0\x2d\x17\x03\xbd\xb1\x61\x1c\xde\x2a\x76\x6d\xac\x19\x3d\xe1\x67\x44\x3d\x20\x09\x0d\xc3\x4d\x29\x27\x7a\x86\xb1\xe9\x98\xb2\x45\x64\x51\x17\xe5\x11\x1f\x12\xf1\x46\x06\xc5\x54\x46\xdd\x91\x2d\x34\x75\xc1\x98\x76\xe1\x9a\xc5\x36\xd3\x17\x87\x6c\x4b\x0a\x2e\x0f\x98\x61\x61\x29\xa5\x68\x37\x32\xa4\x23\x17\xc5\xe8\x09\xdc\xa9\x56\xb2\xab\xb4\x84\xad\xa8\x10\xa1\x5c\x81\xcc\x85\x62\xb5\x55\xda\x94\x58\xf9\xb4\x43\x38\x49\x02\x30\xc7\x40\x4f\x3d\x48\x61\x1f\x84\x12\x7e\x73\xe2\x77\xd8\x8c\x62\x21\x2d\x2a\x3a\x35\x1f\xc6\x76\x65\xb1\x8d\x77\x21\x62\x30\x63\x2c\xbc\x78\x12\x88\xe1\x5c\xeb\xf3\xec\x33\xa7\x20\x5e\xb2\x2b\x9a\xbe\x4c\xdb\xc7\xdd\xba\xaa\x53\x64\x08\x75\xeb\x76\x3f\x52\x2c\x36\xcf\xff\x2e\xb2\x3e\xe5\x86\xd7\x75\x28\x62\x59\xfa\x94\xa4\x4f\xa7\xec\x01\x50\x96\xa2\xa4\x46\xb6\x73\x2b\x80\x02\x42\x67\xfe\x3d\x5d\x39\xd1\xc4\x85\x09\xb3\xec\xaa\x2e\x24\xe5\x4d\xe4\xd6\x1c\x09\x7b\x70\xf7\x53\xb5\xaf\x9a\x6d\xb6\xf9\x75\xd2\x5f\x4f\x83\xd0\x6f\x87\x9e\x17\xef\x7c\x50\x9a\x54\x14\x44\xba\x3e\xb6\x86\x78\x38\x09\x0e\x22\xda\xfd\xbb\x0e\xb3\xb0\x56\x5b\xe1\x57\x9c\xee\xcd\xed\x20\xf5\x44\x25\x6c\x7c\x4e\xde\x3b\x62\x84\x3c\x65\xb0\x46\x6b\xe6\xb7\xe2\x73\x05\xb9\x63\xca\x91\x4e\x3b\x7d\x21\x73\x61\x18\xed\xb3\xd6\x58\xd9\xd7\x6f\x50\x9d\xb3\xb9\xca\x2e\xae\x28\x96\x4a\x4b\x3b\x3c\x38\x4a\x81\xa4\x89\x0e\xe9\x6f\xbe\x93\x4a\x6f\x2a\xec\x8e\xeb\x6c\xfe\x59\xac\x9d\x3b\xbc\x16\x46\xba\x32\xa1\x14\x2f\xee\x59\xfe\xd6\xfb\x7b\xbc\x04\x98\xcc\x27\xde\xad\x41\x3b\x7b\x43\x51\xec\x20\x63\x43\xc0\xab\x89\xfc\xf8\x72\x43\xb1\xab\x45\x0e\x58\xff\x11\xa1\x14\x0a\x38\x3f\x19\x6a\xa3\x97\x6c\xe1\x7c\xf3\x45\x30\xf0\x49\xa1\xde\x90\xe3\x17\x53\xcd\x85\xe7\xf1\xfd\x5c\xf2\x04\x26\xc9\x37\x9f\xeb\x8c\x31\xb4\xbf\xec\x35\xea\x5a\x78\x95\x3d\x75\xc5\xcf"}, {{0xfa,0x2f,0x46,0x1c,0xe8,0xc7,0x12,0x62,0x18,0xc4,0x7c,0x91,0x56,0x9e,0x87,0x99,0x79,0x7c,0x83,0x36,0x8f,0xc8,0x42,0xb6,0xe1,0xc2,0x2f,0xd5,0x2a,0xec,0x70,0xbf,},{0x6b,0x89,0xb2,0x3f,0x1e,0x11,0xa7,0x5a,0x53,0xf9,0x92,0xf6,0xca,0x57,0x75,0x00,0x8c,0x6e,0x9e,0x7e,0x49,0xc0,0xd8,0x51,0x0b,0x0e,0x83,0x69,0xb7,0xa2,0x0b,0xcc,},{0x84,0xf7,0x9d,0x9e,0x8f,0x30,0xe5,0xbb,0x63,0x62,0x23,0x97,0x14,0x55,0x6b,0x04,0x73,0x6f,0xa4,0x44,0x65,0xca,0xba,0xad,0x23,0xbe,0xaf,0x5a,0x99,0xfc,0x45,0x1a,0xd4,0xae,0x5a,0x18,0xc7,0xf6,0xf9,0x64,0xfa,0x41,0x03,0x92,0x16,0x01,0x8e,0xc5,0xa2,0xac,0xca,0xe1,0x07,0x5a,0x6b,0xb3,0xa6,0xec,0xbc,0x1f,0xca,0x02,0xb9,0x04,},"\x79\x9b\x39\x80\x2a\x18\x27\xe4\x5c\x41\x12\xfe\xe0\x26\x03\x4c\x0e\x59\x8a\xff\xce\x2c\x55\x0c\x19\x3f\xee\x73\xf1\xdf\x8c\x30\xc8\xd3\x87\x33\x40\x08\x8c\xe8\x59\xde\x34\x71\xe9\xd0\x57\x68\x6c\x82\x9b\x54\x08\x79\x5e\x08\xb3\xdc\x7a\xa3\xb6\x37\xc7\xde\x9d\x21\x72\xad\x03\x33\xc1\xbe\xa8\x61\xa6\x23\x2f\x47\xf0\x5a\x10\xbf\x5d\xf8\x08\x15\xa2\x71\x25\x6e\x37\xe8\x08\xa0\xe6\x2f\x1f\x07\xd9\xe1\x0e\xbb\x94\x7d\x3e\xfa\xbf\x8a\x28\xfa\x9d\xcc\xd9\xa1\xd5\x99\xf5\xfd\x61\x65\x50\x8e\xfd\x67\x9c\xf3\x56\x01\x50\x58\xbf\x4b\x34\x11\x8f\x83\xaa\x3e\x5b\xc2\xce\x19\xec\xa8\x4f\x71\x83\x98\xad\xbc\x0a\x52\x76\xcf\x9d\x8c\xaf\xfc\x27\xe3\xe6\xab\xbe\x34\x5b\x0e\x9e\xcf\x89\xc6\x77\x1b\x0e\x75\xd4\x08\xba\x2f\xbb\x90\xfc\xfd\x70\xc5\x3f\x2e\x4d\x52\xba\x54\xd9\x78\x4c\xf7\x1c\x34\x9e\xf6\xf1\x4a\xe4\x97\x0d\xef\x6e\xfb\x5f\x30\xe9\x84\xd6\x01\x6a\x19\x6d\xea\xec\x7e\x04\xb4\x76\x19\xc4\x8b\xf4\x9d\xc0\x2f\x7f\xef\x3e\x13\xb7\x56\x17\x4e\x90\xd0\x5f\xcb\xdd\x5e\x13\xf0\xe4\x34\xef\xd5\x42\x1b\x09\x1d\x51\x79\x00\xed\x0d\x57\x85\x96\x88\x62\xb4\xbf\xe5\x09\x3a\xb6\x72\x17\x18\x0d\x97\x55\x4c\xcd\x9c\xc3\x14\x29\x32\x6c\xab\x42\xf3\xf8\x39\x80\x60\xc1\x9d\xb4\x88\xb5\xd1\xc8\x0b\x29\x09\x0a\xfd\x1c\x6b\xac\x36\x42\x26\x48\x00\x21\x1b\xc2\x78\xfc\xb9\x9d\xae\x9d\xbf\x49\xda\xf1\xb2\x4a\xb5\x69\xdc\xbb\x87\xd4\xd3\x54\x73\x35\xe3\x5d\xb9\x84\x00\xcd\xfc\xe6\x79\x06\x82\xe9\x36\x00\x22\x0e\xc4\x99\x24\x5f\xa4\xee\x15\xd8\x43\x83\x1b\x56\xcc\x26\x41\x80\x25\xbf\x87\x00\x16\x05\xc6\x69\x1c\xa6\xbd\x40\xa4\xe2\x48\xc3\x09\x80\x1b\x76\xa7\x95\xed\xe8\xad\x53\x08\xbc\xb6\xd1\x75\x4a\xb3\x37\x1f\x00\x03\xbb\x8c\x4e\x4e\x47\x19\x54\xe2\x8b\x1e\x98\x66\x37\x9f\x82\xe1\xfb\xac\xb7\x9d\x50\xad\xdd\xad\x5b\x97\x78\xb5\x58\xcd\xdb\xb0\x03\x8a\x5f\xf3\xd5\xc9\x55\x7b\x96\x5d\xe3\xa7\x08\x2c\x45\xa8\xec\xf3\xe7\x72\x1e\xb6\x90\xb6\xc7\x1f\x3d\x89\x75\xd5\x30\x0f\x67\xc4\xdc\x4a\x73\x68\x46\xe4\xcc\xd2\x6f\x93\x46\x3d\x5b\xc6\xf4\x6e\xdc\x48\x86\x64\xbe\x96\x96\xbe\x12\xb0\x2d\xd1\x04\xd1\x0c\xc6\xb1\xd8\x2e\x81\x17\x81\x12\x14\xa6\x48\x7d\x17\x36\x7e\x39\x5a\xde\x2e\xf6\xb2\x6a\x17\x83\xa7\xe2\xf2\x45\x21\x3b\xc0\x3a\x75\x5d\xf3\xee\x8e\xf9\xf1\xef\xf9\x72\xc6\x91\x90\x65\xcb\x7b\x75\x66\x78\xd4\xdd\xfd\x19\x3e\xdd\xc0\xb4\x2e\x86\x89\x61\x36\x43\x14\x6d\x74\x28\xca\x37\xbf\x31\xbd\xf1\x4e\x31\x86\x78\x58\xf3\x9d\x23\x23\x70\x9e\xb3\xb7\xd7\xf4\xe3\x97\x02\x23\x78\x42\x4b\xde\xe9\xbc\xb7\x4e\x9d\x5d\xfd\x37\x1f\x47\x34\x99\x8f\xc1\x8d\xf4\xcd\xfb\x4b\x5c\x21\xc2\xe5\x0f\x8d\x6c\x15\xbc\x14\xbf\x4f\xda\x6c\xeb\x9d\x80\x82\xca\xe4\x32\xdf\xc9\x8b\xfb\x3e\xcd\x16\xb8\xd7\x4f\x83\x0b\x64\x2b\x04\x28\x75\xe9\x21\xb0\x54\xbd\x1a\xaa\x58\x1f\x60\xd7\x18\xdf\x66\x9f\x56\xdc\x2f\x10\xd4\x78\x99\x77\x22\x16\x2e\x83\x94\x0e\x61\xa1\xb6\xe4\x2d\xf2\xa4\xa3\xa7\xcb\xcd\xd6\x11\xce\x96\xcb\xcf\xb5\xa9\x5c\xc4\x73\x23\x1c\xa1\x3c\x06\x09\xd0\xce\x1a\xe5\xdd\xb5\x46\x6d\x6d\x65\xee\xfa\xd9\xda\xf2\xa3\x69\x01\xbc\xc9\x45\x84\x7d\xa1\xed\x6e\x2e\x24\x0e\x84\x8b\x23\x1b\x7d\x0e\x1a\xcd\x06\x54\x3e\xc9\x3e\x76\x8e\x59\x98\x5d\x7e\x96\xc8\xc3\x1f\xcd\x12\x10\xf0\x96\x42\x71\xe2\x18\x77\x52\x5c\xb1\x34\xbc\x35\x36\x25\x7d\xbb\x11\xd3\x0a\x3c\x4f\x94\x9f\xb8\x2a\xe0\xc3\x1c\xcd\xfe\x41\x94\x32\x51\xe5\x0a\xa4\x35\x53\x92\xac\x30\x9e\xf6\x0f\xc1\x74\x32\xa2\xbe\x4b\xdb\x2f\xcb\x28\x60\x7c\xc4\x5a\x52\xb6\x00\x16\xbb\x1d\x2e\x23\x97\x2f\xf2\xc2\xa2\x47\xd7\x25\x58\x5b\x1e\xf2\xb1\x5f"}, {{0x1b,0xe2,0x94,0x9d,0x51,0xe7,0x20,0x81,0x75,0x82,0x62,0x13,0xee,0x6a,0xe3,0xc0,0x91,0x17,0x27,0x42,0xe8,0x8c,0xaa,0x02,0xed,0x0f,0x31,0x3e,0xcb,0xe5,0xd9,0x10,},{0xd7,0xbf,0x47,0x48,0xd6,0xdd,0xed,0x5b,0x57,0xa2,0xab,0xf7,0x97,0xfa,0xcc,0x56,0x0b,0x48,0x56,0x3d,0xfd,0x9d,0xcf,0xf4,0xbe,0x52,0x2c,0x71,0x7a,0x6c,0xfd,0xa9,},{0xf4,0x1f,0x2e,0xf6,0x59,0x5f,0x17,0x66,0x0b,0xb2,0xfe,0x93,0xe5,0x1f,0xc6,0xfa,0x9c,0x31,0xda,0xdc,0x9d,0xb9,0x0c,0x3f,0x46,0x60,0x7a,0x7f,0xb4,0x80,0x0b,0xb7,0x5a,0xd9,0x63,0x25,0xdc,0x7e,0xab,0x78,0x24,0x72,0xb0,0x4d,0xa6,0xd8,0xe6,0xfe,0x64,0x65,0x5d,0xea,0x55,0x1f,0xbd,0x50,0x49,0xe8,0x76,0xce,0x5a,0x40,0x5f,0x02,},"\x04\x5e\x2b\x0e\xc7\xbb\x20\x3a\x49\xbd\xcb\xa9\x41\xe2\xb7\x3c\x23\xc1\xfe\x59\xa1\x7d\x21\xa0\x12\x4e\xa2\x4b\x33\x7f\x92\xab\x9c\x92\x3a\x20\x57\x6b\x62\xd5\xd0\xf6\x24\xe7\x93\x2c\x11\x5b\x54\x74\xe0\xa4\x6a\x4d\xc9\xec\x51\xf6\xa0\xce\x8d\x54\x74\x4d\x1d\x52\x09\x33\x20\xe3\x9b\xe2\x03\xf7\x4a\x0f\x5d\xfa\xc5\x2c\xf0\xf9\x95\xc6\x6d\xf2\x91\x4b\x68\xad\x87\x1f\xbe\x81\x52\x5a\xd2\xd8\x8a\xc6\x99\x33\xa7\x5a\xea\x74\xac\xe4\xe3\x63\x43\xdd\xc0\x6d\x32\x08\xf1\x6d\x80\x5f\x5d\xd7\x86\xb4\xda\xaa\x16\x67\x48\xcf\xee\xc5\x71\x4c\x85\xc1\x04\x78\xb5\x97\xac\x7f\x6a\xe2\xc9\x88\x91\xe3\x8f\xd4\x14\xaa\x81\x1b\x76\x21\xd8\x05\xeb\x8f\xcc\x46\xcf\x4d\x56\x8a\x8a\x92\x58\x7c\xbb\xc1\xae\xcc\x12\xf1\x0d\x90\xac\x1e\x01\xae\x98\x6d\x14\xfe\x82\x95\x1c\x68\x2c\xea\xc8\xc9\x25\xfc\x66\x54\xd8\x38\xac\x93\x53\xae\x2f\x93\xf3\xc8\x8b\xf7\xb8\x2c\xbc\x43\xb1\xe4\x9e\x5c\xeb\xfb\x19\x49\xad\xe4\xb2\x2e\x4b\xcf\x1b\x40\x0c\x0a\x8f\xa8\xa6\xfe\x76\x70\xf6\x9f\xc3\xfa\xec\xd4\x80\x5b\x8c\x95\x4c\x01\xa5\x40\xd1\xa1\xe7\x88\x43\x6e\xae\x07\x3a\xe9\x56\xda\xe3\x17\x69\x05\xa8\xf0\xa3\xc6\x0f\xd9\x80\xda\xb4\x19\xd4\x1e\xc0\x6e\x52\x73\xfb\xb1\x3d\xb9\x38\x1f\x89\xb6\x63\xcc\xc4\xbd\x75\x3f\xd9\x0f\x14\xa7\x7b\x3d\x81\xc4\x5d\xd3\x56\x1c\xd1\xfa\x0e\x94\xd2\x34\xce\xf9\xd7\x85\x9a\x2e\xc9\x42\xbf\xc1\x88\x49\xd7\xf2\xad\xa3\xa5\xd6\x57\xbc\x19\x3d\x2e\x14\x91\x68\x2f\x16\x65\xa5\x34\xb1\xac\x20\x83\xb7\x38\xbe\x8f\x9e\x96\x3f\x59\x41\xed\x48\x3c\x6a\xcc\x82\xe9\x59\xb8\x1b\x8a\xf0\x2f\x47\x1c\x08\xf5\xf8\xb1\x2e\x10\xe0\x08\x19\x28\x98\xa4\x45\x02\x02\xaf\x73\x15\x92\xe7\x4e\xfe\x2a\x94\x8e\x51\xd0\x6e\x44\xde\x9b\x95\x6b\x7b\xc9\xa6\x9b\x6e\x74\x68\x7a\xb2\x06\xde\xc4\xd3\x5b\x31\x73\xfb\xc4\x38\x82\x9d\x50\x64\xbf\xbc\xf7\x43\xc1\xe2\xd4\x6f\x62\x8f\x2e\x51\xc6\x26\xd8\xe4\x16\xd7\xbe\x6e\x55\x5a\x24\x96\x91\xab\xb1\x67\xf1\xd9\x2f\x4f\xa3\x39\x2f\xde\x24\xe9\x93\xce\x7f\xf5\xc1\xb8\xe1\x57\x7a\x7c\x0e\x73\x02\x5c\xc6\xfc\xd7\x27\xa8\x2e\xf0\xc1\x29\xe9\x1e\x55\x33\xe0\x21\xa3\xcd\xbb\x99\xd5\x4b\xf7\xcd\xcd\x3f\xf1\x19\x15\x4f\x3f\xad\x92\x42\xb6\xed\x35\x0d\x10\x37\x2c\x97\x6f\xf3\xa4\x37\xd0\x97\x86\x7d\x9b\xfb\xa9\x1d\x84\xbd\xa5\x5a\x6b\xcd\x6e\x36\x41\xb2\x13\xa2\x18\xb3\x04\x15\x89\xc5\x5a\xfb\xb3\x44\xde\x6e\x97\xd8\xc3\x5b\x5c\x86\xcf\x3b\xe0\x63\xf9\x01\xff\xee\xa8\xcc\x91\x06\x99\x67\xd2\x34\x60\x35\xa9\x1e\xb5\x70\x6a\x3b\x53\xf6\xd1\xc3\x4d\x4d\x21\x16\x70\x6b\x65\xc2\x98\xec\x57\xde\x82\xab\xc4\x00\x3c\xe8\xcc\x5e\x0b\x88\xff\x71\x0d\xda\x1d\xce\xf6\xf1\x54\x27\x71\x06\xb8\x3e\xb4\x6c\x04\x5b\x08\x2d\x11\x3b\x36\x1d\x6a\x62\x58\x08\xc9\x13\x05\x84\xdf\xc9\x67\x07\xef\x89\x55\x90\x7b\xaa\x61\xcf\x88\xc6\x6b\x6d\x1f\x60\x58\x11\x19\xcb\x62\x17\xa8\x52\x15\x73\x36\x17\x8c\x68\x5e\x6e\xd4\x85\x26\xed\x5c\x4e\x3b\x79\x67\xd5\x1f\x99\xdf\x68\x76\xa1\xac\xfb\x84\x5c\x57\x1b\x89\x86\x56\xe5\xe3\xbc\x73\x98\x0b\x9b\xed\x11\x98\x86\x63\x59\xc9\xe9\xb1\xef\xa9\x15\xf8\x10\xd1\xef\x8a\xd6\xcb\x3f\xc2\x1f\xbf\xe6\x54\x30\x6d\xe6\xca\x13\xa3\xa6\xa4\x8e\x7a\x13\xed\x87\x46\xac\xbd\x07\xf4\x8e\xb0\x0c\x36\x37\x4b\x1e\xb4\xf3\xf0\x1c\x19\xe2\xe8\xd3\x7e\x9f\xc0\x64\xb3\x3c\x0d\x66\x9b\xba\x55\x4d\xdc\x68\x21\xa7\x7b\x40\x89\xca\xbd\xca\xfc\x97\xf6\x0e\x60\x50\xbc\xa4\x44\xae\x8c\xfc\x44\xd9\x3c\x40\xef\x53\x18\xbe\xe6\xf8\xcf\x0c\x06\x7b\x85\xcd\xdd\xc4\x59\x74\xa4\xea\xcf\xc3\xef\x51\x31\x5b\xa0\xf3\xf6\x29\x68\xc7\x00\x3a\x7f\xf4\x44\x61\x24\x00\xb1\x59"}, {{0x3b,0x6b,0xa6,0xd5,0xcc,0x9c,0xd6,0x24,0x1d,0x8b,0x00,0x97,0xa3,0x72,0x2e,0x4d,0x06,0x6f,0xea,0x3d,0x56,0x0a,0xea,0xb4,0x67,0x3e,0x86,0xf1,0xf8,0xec,0x60,0x26,},{0x8c,0xa6,0x52,0x07,0x17,0xcf,0x36,0x3c,0x4c,0xef,0xfa,0x76,0x32,0x8a,0x0a,0x16,0x6f,0xf8,0x3e,0x45,0xca,0x7d,0x19,0x1c,0xc8,0xef,0x6c,0xa6,0xe5,0x24,0x33,0x67,},{0x78,0x8c,0x9f,0x45,0x54,0xdd,0xba,0x5c,0x7d,0x64,0xba,0x75,0x9e,0xc4,0x56,0x94,0xec,0x79,0xfb,0x85,0xe8,0x23,0x68,0xa0,0x74,0xbd,0xd8,0xdf,0x34,0x42,0x13,0xa5,0x6d,0xd0,0x9f,0x33,0x4c,0xd9,0xac,0xb9,0x41,0xbe,0x28,0x3d,0x98,0xc4,0xb1,0x5d,0xcf,0xec,0xd1,0x4e,0x93,0xf6,0xa2,0xe3,0xcb,0x0c,0x1a,0xa2,0xde,0xe7,0xd9,0x0b,},"\x36\xde\x93\x0c\xc8\xe1\x88\x60\x83\x6a\x0c\x82\x9d\x89\xe9\x63\xa5\x8b\xdd\x9c\x6b\x6e\xf5\xbc\x61\xf7\x59\x92\xd2\x07\x52\x42\xdc\xa2\x3e\x28\xde\x20\x5a\x33\xdf\xea\x86\x1f\xc4\x4a\x32\x62\x8e\x8e\x7c\xdd\x3e\xd7\xff\x49\xea\x6a\x70\x97\xe0\x09\x0c\xfd\x9f\xf5\xec\xab\x1d\xe8\x22\xfc\x0a\x4c\x37\x76\xdd\x56\xc1\x91\x92\x04\x51\x6a\x94\xce\xc5\x63\x8d\xa1\xd9\x9e\x52\xb8\x66\xf5\xec\x41\x62\xa9\x12\xed\xb4\x1c\x1e\x92\xed\xfc\x35\x3f\x67\x05\xe1\xc1\x2c\xd4\x1c\xb6\x2d\xed\x4a\xd8\x15\x79\x40\x05\x9b\xfc\xf5\x07\x19\xd3\xf2\xad\x00\x84\x85\x40\xce\x89\xf3\xf9\xaf\xa6\x10\xcc\xba\x5e\xcc\x37\xe3\xe2\xc1\x53\x4f\xcb\x38\xfc\xd3\x9a\x2d\x14\xd5\xb5\xda\x6f\xea\x24\xe0\x06\x65\x4e\x30\x90\x47\xa2\x9c\xad\x0a\xe4\xda\x8e\x70\x8f\x97\xa1\x8c\xad\x5f\xbd\xc9\xac\x84\x40\x0c\x53\x2c\xed\x54\x88\x86\x53\x9e\xdd\x6c\x54\x10\x74\x79\x0a\xe4\x50\x2f\xdf\xe9\xf3\x27\x3a\x87\x6a\x21\x86\x23\xa2\x57\x06\xa1\x52\x5e\x67\xe5\x7a\x16\xd2\x2c\x21\xb6\xa4\x5e\x23\x84\xe2\x87\xac\x44\x52\xae\xc4\xe0\x63\x05\x6b\x4c\x17\x8a\xb0\xe5\xb2\xa5\xba\xd3\xf4\x63\xc4\x72\xc4\xea\x1f\x9c\x1a\x66\xe5\x27\x04\x73\xa8\x35\x09\x4e\x8f\x0e\xef\x68\x0c\xd7\xb2\x0d\x0e\x70\xf4\xd6\xc9\x58\xfe\xe0\x8a\x93\x60\xaa\x60\x66\x88\x8f\x4d\xd7\xce\x5e\xc2\x22\x59\xfa\x0b\x53\xfe\x92\x71\xc0\x83\xc6\xfc\xdb\x72\x83\xb0\x90\x61\x08\x8c\x52\xf7\x1b\xfd\xd2\x77\x7c\xe0\x80\x1f\x41\xa6\xc4\xce\x90\xef\x13\x1d\xe1\xe1\x83\xcb\x89\x49\xce\x32\x3c\x9e\xb1\x3a\x4b\x0c\xac\xf9\x9d\xef\xdf\xdb\x68\xd5\xed\x1f\x68\x91\xb4\x8e\x21\x04\x76\x68\xd6\x9d\xe8\xa8\x0f\x8e\x56\x34\xde\xd0\x87\x36\xa4\xfb\x54\x10\xcd\xea\x9c\x72\x59\x6e\x36\xdf\x68\x41\xf2\xee\xa4\x68\x50\xc8\x74\x73\xc8\x95\x54\x02\x05\xb0\x92\x19\x60\xff\xa5\xd9\xd8\xff\xb8\xe2\x9c\xde\x96\xa3\xed\xe0\x15\xac\xbc\x26\x97\x40\x04\xd3\xe4\x38\xa8\x5b\x2e\x33\x85\xf6\x4d\x18\x14\x00\x39\x41\xff\xd3\x63\x99\x2d\x39\x40\xc6\xe6\xd8\x1f\xf8\xe4\x5f\xce\xd6\xd3\x6c\xe1\x98\xd8\xcc\xbe\xfe\xe4\x32\xa7\x7d\x8f\xca\xdd\x73\xfb\x79\x9f\x6b\xaf\xef\xb5\x1a\x2d\xa7\x98\x72\x1c\x3d\x46\x5b\x16\x3e\xf1\x3e\x6e\xcc\x65\xe6\x03\xb2\x89\x3e\xe4\xcc\x9e\x1c\x6d\x1d\xe7\xa6\x5c\xab\x5c\xbd\xf5\x36\x85\x5e\x28\x8c\x3c\xcd\xa8\xd2\xfa\x3c\xe1\x0c\xf4\x93\x58\xa2\xef\x4e\xf0\x76\xe5\xbf\xa9\x1b\xbc\xf3\xd9\x66\xdf\xa3\xdc\x6e\x71\x2f\x19\x56\xd4\xe5\x8a\xa3\x6e\x71\x2d\xd3\x34\x71\x69\xb1\x9c\x8d\x44\xbe\xc5\xbc\xb7\x30\x77\x8f\xcc\xcc\x58\x9e\xd5\xd3\x50\xd4\x4c\x17\xbd\xe2\xee\xbb\x6f\x5e\xc5\x9f\xb2\x40\xd6\x7d\x81\xae\xa9\x26\x7f\x34\xf1\x5e\xee\x2d\xe3\xf4\xfa\x67\x39\x14\x79\xbd\xbb\x43\x0f\x48\x43\x70\xfb\x0e\x08\x95\xb9\xae\x06\x5b\xbd\xd4\x3e\x23\x0c\x62\xac\x07\x18\x4e\x8b\x06\xb2\x4b\x8b\x97\xec\x02\xdc\x6f\x37\xef\x61\x64\x1e\xd5\x6e\x3f\x5e\xb8\xd2\x08\x0b\x51\x44\xef\x76\x0b\x51\x87\x52\xe1\x97\x54\x79\x2e\x19\x34\x3a\x38\x55\xe1\xe2\xf7\xa7\xdc\x62\x35\x17\xee\xd2\xf5\xd2\x65\x48\xa6\x8e\xb8\xff\xd7\xbf\x70\xf7\x8f\xd1\x86\xdb\x63\x49\x28\xbb\x98\x13\x8f\x2b\x8f\xe8\x44\x81\xcc\x53\xf5\xaa\x35\xe2\x66\x6c\x63\x25\xe1\xd2\xb8\xac\x5e\x2d\xf2\x93\x5b\x7f\x64\x13\x95\x2d\x10\xd6\x07\x6f\xfc\x75\xbb\x6a\xf6\x3b\x29\xb0\xb9\x66\x3b\xec\x37\x24\x7b\x66\xb5\x08\xdd\xe4\x1f\x2f\x11\xb8\x43\x33\x55\x9d\xfa\xc7\x3f\x76\x1b\xcd\xa8\x4a\x48\xd2\x66\x07\x3a\xef\x16\x38\x46\x08\x49\xe7\xa1\x72\x06\xa2\x5f\x68\x00\x77\x0b\x91\x4c\xc0\x26\xba\xf9\xe3\x25\x59\x14\xe1\x32\x58\x44\x1c\xef\x35\xad\x1d\x66\x83\x3e\x98\x7e\xbe\x44\x31\xe6\xa6\xbb\x22\x2c\xbb\x65\xaf"}, {{0xdd,0x99,0x87,0xb1,0x8f,0x9a,0x92,0x2c,0x0f,0x6f,0xea,0x18,0xeb,0x00,0xb8,0x96,0xc7,0xa2,0xd3,0x09,0x3d,0xb3,0xea,0x31,0xd3,0x84,0x21,0xda,0x0d,0xe5,0x12,0x31,},{0x57,0x39,0x21,0xa9,0x55,0xfe,0xb6,0xdd,0xe4,0x1b,0x05,0x5c,0x8d,0xac,0xac,0xcd,0x1d,0xb7,0xfe,0x9e,0x36,0xb5,0x09,0xd3,0xc9,0xe3,0x6f,0x97,0x35,0x75,0x23,0x24,},{0x3e,0x9f,0x2b,0x00,0x7c,0x0e,0x29,0xec,0x87,0x59,0x95,0xa6,0x30,0x9b,0x97,0x3d,0xeb,0x8b,0xaf,0x11,0x3d,0xed,0x13,0xf1,0xe0,0x00,0x3e,0x9b,0x9b,0xf9,0x39,0x16,0xa4,0xdf,0xe4,0x79,0x37,0xda,0xdf,0xc7,0x8a,0xa6,0x63,0xc5,0x5f,0x67,0x4e,0xc3,0x5c,0x38,0x46,0x25,0x8f,0x18,0xe7,0xbb,0x93,0xfb,0xba,0x3e,0x82,0x6a,0x1f,0x0d,},"\x48\x16\x2f\xdc\x3a\xbf\x73\x19\xc6\xca\xab\x60\xcb\x8d\x05\x20\x87\x5c\xb4\xee\x8a\x07\x09\x27\x83\x16\x7d\x47\x33\xff\xe5\x20\x4e\x5f\xeb\xe7\xd2\x91\xe9\x53\x6b\xde\xa3\xdf\x06\x37\x15\x9a\x65\x3e\x09\xfd\x99\xaf\x66\x1d\x83\x00\xae\x74\x1a\x3e\x91\xa8\xbd\x85\xea\xd0\x5d\xc7\xd9\xe6\xf9\x29\x32\x33\x16\xed\xc4\xca\x62\x4e\xa7\x81\x8b\x25\xbd\xc0\x61\xf7\x14\x92\xfd\x22\xd4\x65\xab\x22\x6f\xd9\xa1\x0d\x8b\xab\xfc\x07\x4c\x68\x6c\x43\x6c\x24\xa3\xa5\x3f\x8f\xf3\x89\xce\x9c\xa1\xdb\xc8\x90\x74\x45\x88\x92\x41\xf8\xfd\xa3\xa7\xa3\xf5\x02\x4f\xa8\xcb\x0d\x04\x4b\xda\xf6\x71\x6d\x98\x3a\x6d\x83\x98\x14\xff\xe7\x0d\xdc\x55\xbb\xba\x11\xac\x97\x88\x7b\xdb\x4d\xad\xa9\x65\x65\xbb\x07\x5d\x5f\xc1\xd3\xc5\x24\x4b\x9f\xff\x77\xde\x58\x72\x9a\x05\x9a\x91\x1f\xb3\xe0\xeb\x16\x4f\xb8\x42\x9e\x26\x56\x85\xd1\x4a\x63\x23\x30\x46\xd2\x0e\xcf\x28\x9c\x55\x72\x31\x69\xa9\xd6\x3d\xda\x0d\x52\x55\x15\x3d\x9e\xf4\xa6\x1b\x92\x12\xf4\xb8\x20\x69\x7a\xe7\xc3\x08\xcf\xab\x40\x3b\x2c\x34\x31\x90\x62\x26\xe4\x5c\xe2\x19\x20\xdf\x52\x01\x60\x9d\xaf\x83\x0f\x28\xad\x79\x60\x05\xa9\xbd\x8e\xba\x62\x0c\xf8\x39\xc3\xba\x22\x7b\x96\x3c\x7b\xd0\x91\x48\x22\xdf\x2c\xa0\x3c\x22\x54\xd0\xcb\x8a\xca\xe0\xd5\x9e\x4c\x3e\x0e\xc2\x15\xc8\x36\x96\x9d\xcd\x1d\x49\xbf\xe1\x97\xe2\xf3\xee\xa3\xfa\x8a\x37\x3b\x55\x8d\x0f\xb9\x06\x3c\xf1\x56\x8e\x73\x9a\xad\x8f\x09\xfb\x43\x7c\xaf\xb5\xa2\x72\x37\x5f\x43\x60\x64\xee\xe1\x1b\xd9\x03\xd3\xaa\xea\xb4\xe3\xfd\xcd\x36\xbd\x20\x76\xee\xa1\x79\xa4\xf0\xd4\xfb\xc8\xdf\x42\xbf\x26\x60\xf0\x8d\xe7\xd5\xc6\x39\x7c\xae\x10\xb7\x27\x74\x58\xaa\x6c\xfa\x01\xe8\xa6\x73\x7e\xb1\x26\x22\x78\x56\x64\x66\x91\x68\x1c\x10\x6a\x15\x7a\x26\xae\xd2\x1b\x1a\xaf\x0e\xd2\x76\x64\x21\xcf\xc3\xd1\xc7\xdd\xfb\x72\xfc\xdf\x4b\x8b\x49\x0f\xc0\x9a\xce\x49\xae\xdd\x77\x12\xb2\x1a\xc5\x6f\x86\x01\xf6\x25\x56\x3c\x78\x43\x06\xf3\xb9\x17\x4a\xdd\xf7\x64\xe0\x51\xaa\xdf\xe1\x28\x31\xaf\x96\x69\xe6\x2c\xab\x12\x1c\x74\xdf\x34\x37\x24\x42\x9d\x6c\x26\x66\x02\x71\xc3\x2f\x40\xcf\x7c\x2d\x08\xbd\x0a\xfc\xc7\x28\xde\xf4\x13\x5d\x4e\xb5\x5b\x6a\x3e\x76\x29\xd8\x06\x86\x4a\x85\xb3\x6a\x32\xb9\xb2\x1a\xc0\xd3\x96\x80\xa2\xae\x4e\xc4\x18\x97\x09\x17\x8e\x34\x94\x97\xf3\x93\x99\xfb\xc7\x8b\x3c\x6c\xfa\xca\x6e\xde\xa7\xc3\x3d\xda\x3c\xc1\x1e\x43\x84\xf1\x58\x3d\x6c\xfc\x6b\x58\xf4\xea\xa2\xbc\x56\xab\xa4\x2f\x73\x8a\x42\x9b\x93\x58\x08\x50\xde\xe3\xfd\x25\x39\x94\xf8\xb0\xfa\x66\xee\x8e\x27\x3d\xec\xab\xd5\x32\x09\x5f\xb0\x4a\x4a\x3c\x34\x0a\xf0\xe5\x5b\x57\xef\xab\x43\x63\x0f\xc0\x2e\xf2\x0b\x42\x5c\xa2\x18\x7e\x3c\x6c\x5e\x10\xf1\x2d\x61\x8f\xd2\x43\xa2\x24\xf6\x50\x1e\xbe\xb9\xd3\x21\xc6\x38\x5b\x81\x27\xef\x9c\xdc\xd0\x97\xce\x7f\xa0\x21\xcf\x40\xd2\x1c\x39\x91\x23\x43\xf6\x7a\xcc\xe1\x82\x5e\x3a\x51\xb8\xa7\x18\xe8\xc3\x40\x62\x2f\xff\x65\xfe\x00\x53\xd2\x4a\xa3\x35\x1b\x6a\x24\x00\x18\x5d\x7a\xeb\x88\xe8\x7a\xc4\xa1\xd3\x94\x90\x9d\x49\x41\x4a\xef\xc2\x2b\xa0\x09\xaf\xf6\x96\x2c\x92\x17\xd7\x55\x69\x4e\x4d\x6a\xa8\xa5\xd6\xa8\x03\xce\xbb\x15\xde\x8f\x54\x16\x34\xb6\xfc\xeb\x0c\xac\x79\xdd\xa8\xa1\x8e\xef\xbb\x53\x7e\x70\xff\xe9\xaa\x5a\x6a\x6a\xaf\x92\x40\xfa\xc2\xea\xcb\xfb\xef\x01\xad\x6b\xdf\x50\x75\x87\x80\xf8\x6a\x4e\x48\x89\x85\x36\x2d\x58\x25\x01\x1f\x5e\x8b\x66\x42\x5a\x61\x6b\x7e\x10\x4e\xb2\x3f\xe8\xf1\x00\xcb\x02\x49\x82\x36\x62\xbd\xa3\xda\x47\xa4\xc3\xc1\xca\x2f\x91\x4b\x25\xb9\x73\x85\x34\x02\x60\x47\xdf\x6d\x7f\xf6\x31\xdf\x2c\x41\x31\xf6\x80\xe1\x37\x43\xc9\xcc\xf2"}, {{0x38,0xd2,0xef,0x50,0x9f,0x93,0x05,0x1f,0x14,0x51,0x67,0x73,0x7c,0x22,0xe1,0xa5,0xbf,0xe8,0xf4,0xa9,0x1e,0xba,0x0b,0xb8,0x7c,0x39,0xce,0x04,0xa8,0x9b,0xae,0xc6,},{0x01,0x11,0x5f,0x6d,0x89,0xa5,0xda,0xab,0x54,0xf8,0x92,0xbb,0x4a,0x4b,0xda,0x1c,0xe5,0xd8,0xf6,0xc9,0xc8,0x8a,0x50,0xce,0xe8,0x3b,0xd9,0x87,0xa2,0xc0,0xdd,0xf7,},{0xde,0xc4,0x62,0x53,0x50,0x9b,0x11,0xe4,0xb5,0x2a,0x6a,0xe4,0xf3,0x66,0xb6,0x80,0xdf,0xfc,0x28,0x0d,0x0a,0x04,0x4f,0xc0,0xcb,0x79,0x0b,0x6e,0x75,0x13,0x81,0x46,0x1e,0x1e,0x60,0x2a,0x89,0xe3,0xb3,0xd3,0x06,0x4c,0x40,0x7f,0x60,0x2f,0x1c,0x22,0x40,0x4b,0x68,0x23,0xbd,0x24,0x67,0x54,0x93,0x14,0xa0,0x00,0x01,0x66,0x4a,0x08,},"\x42\x7b\x5a\x01\xe8\x59\x7f\x04\xfd\x42\x2f\x0a\x66\x2d\x0b\xe2\xdf\xa8\x53\xed\x5f\x9d\x3f\x60\xff\x90\xf2\xc5\xee\x08\xbb\x59\xfd\x03\xd4\x02\xb7\x54\xca\xf5\x4d\x00\x58\xf5\xa2\xcf\x87\xaf\x4f\xef\x21\x77\xd5\x9e\x18\x22\x62\x93\xfd\x2a\xf3\x76\xbc\x98\x7b\xf7\xb3\x20\xb9\xd1\xe2\x49\xab\x9e\xfb\x75\x07\x8e\x6d\x3d\xf2\x9e\x03\x50\x47\x76\x35\x43\x44\xaa\x69\xe7\x2e\x1e\xbc\x52\xa3\xc3\x8a\x4c\x2a\x16\x73\xb4\xe9\x74\xa2\xe4\xe1\x2a\x2e\x78\xea\x3e\x3f\xe5\x0c\x53\x63\x0d\x09\x6d\xa3\xe2\xfe\x82\x99\xf7\x1a\x1b\x44\x1b\x4c\xf0\xca\xeb\x93\x7a\xfa\x4a\x0e\x39\x15\xcc\xab\x39\x96\xc9\xf6\xa8\xf4\xfd\x37\x54\x3e\x8f\x75\x90\x0c\xfd\x47\x17\x53\x70\xef\xb8\x52\xa5\xf6\x9d\x67\x36\x83\xf9\x98\xfd\xcf\xf8\x5f\xf8\xf3\x2b\xaa\x80\x70\x66\x60\x44\x22\x02\x7d\x51\xa4\x35\xdd\xf9\x88\xed\x2f\xd8\xeb\x19\x1f\x10\xb4\x68\x07\x42\x00\x08\x75\x6e\xb4\xe3\x00\xc4\x09\x9c\x2d\x64\x50\xbc\xc6\xa4\xe7\xd0\x67\x31\x56\xb8\x37\xf0\x50\x63\x38\xf3\xd1\xb5\x73\x4b\x16\x6c\xa5\xcc\x2f\x24\xa4\xef\x02\x6c\xda\x2c\x4a\xe3\x10\x5b\x63\xca\x85\x70\xd1\x85\x46\xcf\xac\xb8\x60\x42\x96\x6a\x00\xef\x52\xc7\x29\x90\x19\xf6\x8a\x2d\xf0\x8c\x8b\x70\x4e\x85\xe7\x13\xc3\x48\xd7\xf1\x67\x76\x60\xe1\x8e\xba\xb5\x9b\xf4\xe1\x2e\x6f\xf2\xd7\x83\xd8\xd5\xd4\x2a\xab\x6e\xf0\x17\xb7\xa1\x96\x6a\xee\x8d\xc1\x4d\xda\xbe\xd4\x9b\x4b\x64\x3d\xf4\xe9\xb0\xb6\x03\x83\xc7\xd8\xb4\xb8\x8c\x65\xa8\x98\xc1\xc7\x7d\x43\xd6\xbd\x68\xb2\xa5\x74\x3f\x1f\xed\xd6\x54\xdc\x84\x49\x6d\xa0\x2c\xeb\x69\xb9\xb4\xd3\xa8\xe0\x0c\xcd\x72\xe7\xc7\x5f\xc5\x0a\x8d\xd0\x87\xe1\x83\xe6\xc1\xf5\x79\xba\xeb\xc5\xc6\x3f\x28\x07\x93\x67\x91\xb5\xfe\x48\x47\xcd\xcf\x15\x17\x74\x23\x52\x05\xcd\x2d\x7b\x8b\xf4\xae\x88\x19\x22\x5e\xa7\x08\xb7\xba\xac\x66\x99\x8f\x0c\xba\xb2\xc7\xdd\xf2\x51\xf3\xb1\xde\x10\x17\xd3\x97\x69\x22\x05\xee\xa6\x39\xf1\x2d\x77\xbe\xef\x6c\x13\xbb\x12\x10\x0f\xf8\x90\x64\x70\xbc\x7b\x21\x29\x80\x53\xbe\x1a\x61\xb7\xb3\xa4\x99\xed\xc3\x10\x99\x6c\x8b\xc0\x87\x19\x07\xca\x46\x8e\x89\xed\x31\x1a\xdc\xa2\xe2\xb8\x29\x30\x97\x5b\x3e\xfb\xbf\xc0\x3c\xdd\xf4\xd9\x48\xc4\x76\x5e\x8c\x10\x59\x08\x82\x16\x9a\xcd\xdb\x8f\x8c\x36\xd8\x4c\x2d\xac\x3b\x79\x8e\x7a\xbf\x84\x47\x12\xfa\x45\x8d\x27\x7c\x24\xe8\x14\x04\x7d\x74\x23\x19\xa8\x34\xdd\x9f\x92\x7a\x2b\x44\x85\xef\x13\x74\x5f\x7a\x60\xdd\x6b\xb3\x37\x93\x63\x04\xc9\x7d\x3f\x9f\x14\x4e\xb2\x9b\xb6\x95\xb8\xdc\x31\xb9\xd8\x49\x10\x61\x1d\x28\xd5\x81\xca\xa9\x36\x5d\x6d\xff\x52\xd4\x10\xa4\xad\x52\xbd\x12\x17\x29\xff\xf5\x28\x88\xf4\xda\xae\x17\x07\xf6\xf5\x6d\xac\x61\xff\xb9\x96\x1c\xda\x71\x76\xaf\x44\x60\xa6\xd5\x54\x2a\x20\x44\x6f\xb5\x14\x7f\xce\x72\x72\x04\xce\xc6\x89\x9b\x9a\x3d\x4f\xf6\x22\x6b\xb8\xa1\xc7\x8e\x36\xfc\xdd\x9e\x50\xc0\x40\xd7\x2d\x0f\x40\x07\xd3\xfa\x9a\xa7\x67\xe4\xab\xd0\xad\xd6\x2f\xdb\xcc\xde\xff\x67\x21\xeb\x25\x9e\x00\xa7\x21\x63\x20\x06\xbe\xde\x0d\x17\x3d\x38\x34\x4d\xea\x44\xf9\x6b\x67\xd9\xa2\xee\xa1\xd2\xaf\x5f\x74\x8e\x8e\xbd\xb4\x41\xbf\xb4\xe5\x8e\x2d\x42\xfe\xc7\x40\x56\x6a\xcf\x73\xa3\x03\x35\x8f\x7d\x89\xc8\x15\x8c\xf2\x1f\xe8\x5b\x0d\x4a\x41\x7e\xbd\xc8\x6d\x04\x69\xf6\xb9\x1c\x24\xad\x61\x0d\x48\x6d\xed\xc2\x18\xb2\xce\x7a\x8b\x96\x75\x47\x23\x15\x1f\x0d\x00\x76\xff\xf9\xf1\x9d\x11\x2d\x9c\x05\x92\xfb\x8d\x92\xc9\x9d\xcb\x8d\xdf\xaa\x46\xfb\xe0\xd9\x2d\xf4\x6b\x8c\x00\xca\x43\x45\xad\xb6\x9a\x5a\xca\x69\x4a\x86\xcf\x30\x64\x64\x51\xbb\x17\xba\x6e\x60\x7a\x91\x2b\xf1\x09\xd5\xfc\x2d\x3e\x27\xd0\x0d\x94\x56\x00\xa8\xa5\x7c"}, {{0x43,0xbf,0xb3,0xdb,0xe4,0xd9,0xbd,0xaa,0x82,0xb3,0x54,0xdd,0x59,0x63,0x34,0xe6,0x60,0xd7,0x6f,0xc0,0xb2,0xeb,0x69,0x89,0x93,0xae,0xf3,0x76,0x7f,0x1c,0x7c,0x7f,},{0xd0,0x0a,0xec,0xef,0xf0,0xce,0xb8,0x32,0xc2,0x51,0xd1,0xfe,0x6b,0xcb,0xea,0xea,0xcb,0xb4,0x11,0x3f,0x52,0x81,0xba,0xba,0x4e,0x87,0x8f,0x7b,0x95,0xf9,0x3f,0x07,},{0xa9,0x99,0x55,0x23,0x02,0x0a,0x0d,0x22,0x2b,0xc4,0x8f,0x98,0xd0,0x55,0x04,0xe3,0x06,0x8f,0x30,0x4a,0x6d,0x19,0x70,0x06,0xcc,0x9c,0x03,0x5e,0xea,0xde,0x09,0x9e,0x7a,0xa9,0x7e,0x90,0x89,0x4e,0xad,0x17,0xe8,0xc3,0x0b,0x0a,0xa4,0xa9,0x80,0x88,0xf0,0x38,0xb9,0x22,0x44,0xc4,0xb2,0x0f,0xde,0x96,0x4f,0x85,0x34,0xe8,0xfb,0x03,},"\x3f\x3e\xed\xdc\xae\xf4\xe1\x66\x2a\xdb\x66\xbb\x1b\x20\x7d\x79\x3f\xcb\xef\x81\x50\x05\xe8\x26\x43\xed\x70\xc9\x85\x54\x03\xda\xc2\x8b\x52\x07\x27\xa9\x01\xa5\x32\xd2\x8b\x9b\xd1\x34\x8d\xb2\xf8\x96\x7b\xbb\x8c\x90\x98\xb0\x7f\x57\x0a\x2e\xae\x1e\xe4\x82\x64\x0c\x0b\x67\xa5\x2a\x38\x61\x21\x33\xa1\x5e\x25\x8e\xde\x38\xcd\xa8\x78\xff\x36\xed\x32\x1d\xff\x87\xcc\x6a\x01\x38\x3b\xa8\x40\x67\xd6\x0a\xf4\x17\x76\xac\xf8\x0a\x8a\x4e\xac\x77\xf7\xd8\x7c\x37\xa7\x04\xa3\xe2\xac\xa1\xe8\x81\x5e\x49\xfb\xca\xb7\x97\xc8\x56\x52\x95\x38\xbe\x07\xd5\x16\x96\x32\x1f\x69\xb0\x9b\x5d\xc5\xa1\x5e\x5f\x0e\x4c\x22\xd2\x28\x37\xf6\x2e\xe4\xc8\xbc\x7f\x25\xa9\x48\x7b\x96\x2c\xc2\x0f\x13\x3f\xcb\x87\x0e\xd1\x25\xcc\xa5\x85\xd1\x81\xbd\x39\xf9\xdf\xa6\x61\xf1\x9b\xe7\x6d\xa7\xf6\x5f\x22\xfb\xbc\x80\x75\x2a\xeb\x39\xe8\xd5\x9e\xd9\x6e\x14\xf5\x95\xd0\x49\x29\x40\x2b\x50\x29\xc6\x0c\xee\x37\xc0\x21\x7b\xc5\x31\xd8\x0d\xb3\x41\xda\xce\x3c\xce\x76\xe6\x43\xaa\xc5\x38\x87\x47\x3e\xdc\x6e\x19\xcb\x39\xfe\xcf\x6a\xf4\x24\xa2\x06\x63\x93\xd1\xc3\x3f\xc7\xb9\x36\x76\xd7\xe6\x10\x5b\x9b\xfc\x96\x7d\x1e\x29\xaf\xdc\x4c\xf1\x5b\xca\xfa\x09\xc2\x95\xa6\xf9\xde\xee\x33\x1a\xb3\xb0\xd4\x93\x12\x6e\x2b\x2f\xff\xb4\x2a\x6b\x68\xe7\x9e\x13\x8d\xb5\x50\x82\x72\x62\xe4\x87\xa8\x3f\x37\xf0\x1d\xd7\x92\x2b\xe7\x5e\x92\xfc\xf5\xd9\xd4\x80\x3b\x3a\xc2\xf3\x5d\xa2\x10\xfb\x38\xb2\x63\xb0\xff\xb6\xc2\x70\x8d\x4b\x55\xb7\x57\xaf\x52\x07\x7a\x7e\x31\x84\xd0\x1e\x82\xf6\x4d\x32\xcc\xe4\xfd\xee\x0f\x8d\x4e\x36\x4b\xcf\xb9\x58\xeb\xbf\xdb\xb6\x22\xb3\x8b\x51\xe9\x30\x27\x1c\x7b\x1b\x70\xaa\x9d\x4b\xb3\xaa\x4b\x99\x7c\x52\x14\x4d\x3a\xa6\x21\x62\x57\x3a\x3a\x1d\x9c\xe4\x6c\xdb\xee\xb8\x44\x9f\x12\x25\xc4\x49\x63\x1e\x88\x97\x52\x1c\xd0\xf6\x37\xb7\x21\xa1\x25\x2b\x8a\x10\xab\x0b\xe8\x70\xaf\xbc\xd8\x9d\x58\xb2\xeb\xb6\x32\x11\x95\x0c\xad\x7a\xb8\x2c\x81\x95\x02\x6b\x50\xea\x8b\x77\xb9\xe9\x0e\xd5\x59\xaf\x44\x84\x30\x88\x51\xa3\xa1\x56\x71\x68\x53\xa8\xac\x4e\xcb\x8c\x5c\xc7\xd9\x35\xb0\xf4\x66\x12\x41\x43\xb1\x17\x7f\x05\xd0\x8b\x97\xd1\xad\x54\x2e\xd2\xc2\x46\x5a\xf1\x85\xe7\xdb\x42\xb6\x9c\xb8\x02\xa7\x17\x94\xa3\x13\x98\x83\x02\x96\x70\xc9\x56\x74\x2a\xaa\xd7\x90\x7a\x71\xd9\x59\x85\xfc\x1d\x45\xb6\x59\x97\xb4\xec\x6c\xe8\x25\x5d\xe9\x59\x27\x0a\xfa\x7d\xe9\x0f\x29\x29\xde\x63\xf9\xb1\x72\x11\xd7\xf1\xae\x82\x0a\xda\x9c\xe3\xe4\x86\x49\x17\x9d\x60\xb0\x14\x94\x93\x48\x1f\x01\xd4\x59\xdb\x7d\xad\x05\x26\xb5\xbd\x9f\x4b\x33\x80\xd2\x5b\xa2\xc5\x02\xba\x8f\xa3\xc4\xd4\x13\x1b\x46\x62\xad\xde\xfb\x41\x82\x7f\x75\x9f\xa7\x1d\x44\x7d\x5f\x02\x92\x45\xf4\x8c\x62\x2e\xb7\xc6\x8c\x8e\x71\x08\x1f\x7f\x78\x9d\xe7\xa2\x83\xd2\xed\xa8\x3a\x7d\x17\x22\xa0\x5f\xb7\x2e\x17\x60\xc2\x40\x40\xc4\xd8\x34\xde\xf5\xdf\x5f\x74\x2e\x02\xb3\x04\x51\xc8\x93\xbc\xf7\xd7\x71\xdb\x78\x4c\xbb\xda\xec\x87\x6d\x8a\xc8\x67\x43\xb5\x29\xa2\x92\x00\x7a\xc7\x53\xc9\x9a\x57\x99\xcc\x32\x4f\xe5\xeb\xb5\x44\x8a\xb5\x54\xb1\x0d\x41\x36\x97\x4a\x12\x54\x2d\x25\xc6\x14\x7c\x67\xc5\xd2\x33\x6c\x9d\xb7\x5c\xba\x2f\xd6\x08\xcd\x43\xab\x95\xbe\xac\xd0\x43\xa1\x34\x9c\xef\xa8\x28\xe2\x3b\x5f\x0b\x6e\x0e\x29\x51\xf3\x35\x3b\xb9\x2b\xfd\x1f\x0a\x49\xc3\x3f\xb3\xcf\x37\x99\xa0\xb5\x43\x19\x8a\xd5\xd0\x3d\x26\x3c\x1a\x06\xc3\x5a\x26\xad\xe1\x51\x84\x91\xc8\xc1\xd2\x7a\x2d\xb0\x33\x80\x89\x32\xcd\x1c\x47\xb5\xa1\x26\x98\x5a\xcb\x8d\x88\x83\x60\xee\xcc\xfe\xb3\xbf\x51\xb0\xd1\x89\xb4\x19\x04\x40\x40\x4d\x12\xfb\xa6\x5d\x0a\x7a\x14\xc6\x20\xc5\x55\xf8\x22"}, {{0x51,0x4e,0x07,0x0b,0x01,0x90,0xd1,0x8c,0xbe,0x98,0x1a,0x5a,0x15,0x1e,0x77,0x53,0x39,0x8a,0x27,0x2b,0xcf,0x01,0x48,0x13,0xad,0x37,0x97,0x22,0xc3,0x6e,0x13,0x3d,},{0x6f,0xbd,0xe0,0x47,0x4c,0xc4,0x81,0x0e,0xff,0xa5,0x0a,0x07,0x82,0x0c,0x96,0x5a,0xa0,0x03,0x95,0xff,0x3a,0x5b,0x3e,0x2e,0xdd,0x7d,0x35,0x6b,0x7d,0x6a,0xef,0x2b,},{0xb6,0xc3,0x55,0xc9,0x58,0xb5,0xba,0xa7,0xeb,0xe9,0x77,0xa9,0x3f,0xcf,0x53,0x95,0x89,0xa3,0x66,0xd4,0x01,0x60,0xe4,0xe0,0x31,0xb8,0x8a,0xb9,0x64,0x02,0xc7,0xbd,0x57,0x7f,0xf6,0x35,0xfc,0x07,0x78,0x24,0x23,0x59,0x8d,0xca,0x43,0x66,0x81,0x24,0xa8,0xb2,0x87,0x51,0x0e,0x2c,0xfd,0x07,0xa1,0xe8,0xf6,0x19,0xf6,0xc8,0x54,0x0a,},"\x83\x14\x55\x76\x2a\x5d\x80\x09\x7b\xb2\x84\x50\x42\xf4\xc8\x76\xe7\x10\x85\x35\xbe\xd6\x83\xe8\xc4\x46\x19\xd0\x81\x54\xa2\x29\x44\x4b\x10\x1e\x3e\xd7\xc0\x15\x07\xe8\x70\x94\x14\x46\xaf\x97\x8c\x0f\x53\x41\xd1\xac\x1d\xd1\x5b\x14\xe8\x96\x67\x12\xdf\x19\xf5\x2f\xeb\x51\x03\xcf\x62\xb6\x63\x27\x56\x44\x6c\xc7\x54\xdf\x00\xa3\xf6\xdd\x71\x99\x68\xa2\xce\xf6\x6c\x3a\xdf\xb7\xd1\xfc\x49\x1f\xbb\xf3\xd5\x92\x94\xab\x34\x61\x9e\x17\x6d\xb0\xd4\x46\x15\x1e\x37\xea\xa3\xda\xf1\x72\x40\x6e\x98\x3d\x9d\x23\xa6\xb6\x9e\x92\x97\x60\x30\xf5\xac\x70\x40\xad\x51\x14\x12\x9f\xea\xf9\x7a\xf1\x5b\x22\x96\xfa\xe7\x04\x92\xdb\xbe\xb2\xb4\x82\x76\x87\xfb\x79\x87\x15\xc9\xbb\x2c\x32\x55\x7a\x81\xd8\x91\xb8\x97\x05\x29\x00\x70\x71\x59\x75\x1f\x07\xdb\x07\x4c\x77\xf0\x71\x96\x71\xf1\x76\x66\x89\x02\x9a\x3c\xdd\xf3\x9d\xf3\x48\x3c\xf2\xb0\x4f\x71\xc2\x5d\xe0\x5f\xc2\xd0\x2b\xb4\x8e\x53\x9e\xaf\x1a\x32\x16\x46\xcd\x80\xef\x2f\x0a\xc7\x03\xf4\x5e\x73\x89\x53\x08\x00\xe5\xd4\x17\xcc\xea\x8a\x5c\x08\x66\x82\xf0\x47\x45\xd5\x0b\x5d\xfc\x8f\x6e\xdc\x87\xa9\x5c\x7d\x20\x2a\x9c\xfd\x99\x87\x14\xb7\x46\x92\x0e\xbb\xe2\x33\x5b\xca\x1a\x01\x71\x76\x20\x16\xf5\xe4\xbd\xa8\x9c\x57\xd0\xed\xc6\x91\x0c\x6d\x22\xc8\xf9\x09\xda\x3d\xb1\x35\x2f\x0c\x8b\xd1\x8f\x3b\x5a\xac\x25\xf1\x93\xb8\x94\x70\xf9\x76\xbc\x4f\x1a\xff\xb3\xc6\x6b\xc5\x87\x6c\x6f\xe2\xac\x75\x08\x53\x3d\x97\xbb\xcf\x77\x11\x9d\x9a\xae\x19\x3f\x07\xe0\xb6\x4b\x46\x1c\x9c\x6c\x3b\x9d\x29\x3b\xd3\x7d\xe3\xd8\xe1\xab\x1e\x8d\x87\x2c\xd9\x4e\x6c\xf0\xeb\x68\x43\x9f\xdc\xd3\xb2\x5c\xe8\x48\x34\x60\xbd\x8b\x7c\xce\x88\x9f\xb7\x22\xb4\x36\x1e\x11\x8d\xa9\x83\xef\x4a\x9e\x45\xce\xbc\x0c\x1b\x82\x29\xea\x53\xe6\xf5\x55\x05\xf6\x44\xe0\x9a\xca\xa4\xc4\xb8\xcc\x64\x0b\x2c\xd2\xb3\x12\xe1\xc3\xa2\xc0\x26\x69\xe1\xf9\xc0\x63\x11\xc7\x8d\x36\x00\x09\xdb\x9e\x67\xc3\x9b\x49\xd1\xe5\xd7\x70\xc0\x1d\x28\x4b\x0a\x17\xa4\x1b\x4e\x7c\xa7\x45\xd6\x65\xec\x07\x50\x0e\x4d\x9f\xc8\xeb\xc1\xcc\x6a\xf5\x3a\x3f\xc7\x6b\x0c\x3f\x14\x31\xd4\x98\x43\xf2\x0e\x18\x27\x82\xc8\x2b\x3b\x5a\xae\x36\xfe\x20\xca\x64\x26\x18\x06\x8b\xe2\x33\xd4\xb5\xef\x9e\xae\xff\x40\x15\x36\xdc\x59\x3a\x2b\xc1\x83\x44\xf5\x5a\xc5\xd5\xfc\x7b\x3e\xb5\x06\xd1\x1c\xb3\x75\x33\x00\x63\xc6\x20\xc5\x33\x4d\x72\x3c\x7d\x1f\x04\x28\x16\xbc\x47\x85\xb3\x5a\xc0\xe6\xf1\x74\xf7\x36\x87\x8b\x7b\x49\x16\x58\xca\x67\xd8\xfc\xab\x53\x8f\xc6\xec\xd2\x77\xea\xd9\x0d\x95\x4b\x46\x0d\xa4\x25\x3a\x1c\x3a\x30\xb3\xd8\x92\x8f\x69\xac\x98\x76\xa2\x89\x19\x69\xfc\x2d\x06\xa6\x68\x99\x2b\x8e\x21\x15\xdf\xe5\x35\x8a\x71\x24\xba\x7c\xcf\x42\x1d\x80\x54\xea\x04\x34\x44\xcd\xeb\x40\xb7\x16\xdc\x7a\x36\x59\xa3\xca\x94\x34\x72\x93\x48\x90\x60\xe2\xcf\x67\x12\xa2\xa6\xc7\xb8\xad\x14\x67\x85\xfc\x40\xcc\xb9\xda\x28\x78\x30\xd0\x11\xd0\xd2\x4d\xf3\xe7\xaf\xbe\x97\x2d\x6f\x41\x7d\xe5\xcd\x75\xf2\x59\xea\x07\xca\xfd\xde\x20\x5f\xc0\xa3\x65\x13\x5c\x23\x2c\xbd\x7c\x1b\xc5\x39\xfa\x4b\x7e\x1c\xce\x35\x18\x52\x37\xc2\x3f\x80\xae\x97\xc1\x86\xd0\xd3\xb1\x05\x03\xd5\x98\x4a\x20\xec\x41\xc3\xcd\x04\x2c\x28\xa4\xc3\x1f\x95\x74\xb0\x6a\x87\x2b\xf9\x59\xab\x0a\xdd\x1f\x5d\xee\x14\xa1\xe7\x41\xef\x23\x8d\xfc\xde\xc0\x85\xaa\x08\x8d\xcf\x39\xa3\x6d\xda\x8f\x2a\x85\xed\x0d\x36\x2c\xcb\x00\x5d\x02\xe5\xac\xcc\x09\x2a\x37\x6d\xc1\x1a\x56\x61\x70\xd5\x83\xdb\x35\xf1\xde\x0b\xe3\xf1\x59\x08\x59\x6e\x9b\x78\x1a\xc8\x1b\xe0\x7b\x9b\xd2\xaf\x46\xc5\x6f\xb4\xd9\xd8\x42\x76\x01\x1e\x46\x18\xb7\xf7\x6f\x96\x79\x4c\xd0\xfd\x57\xed\x41\x4b\x63"}, {{0xbc,0x79,0x0a,0x73,0x85,0xdd,0x1d,0xdd,0xc7,0x62,0xe3,0xb2,0x02,0x21,0xdc,0x07,0x8b,0x6c,0x3d,0xa8,0x98,0x6d,0x41,0x80,0x94,0x07,0x27,0x25,0x7c,0xfd,0xcd,0xf1,},{0xc9,0x26,0x46,0x26,0xf6,0x8f,0xed,0xb5,0xb3,0x9c,0x28,0xf0,0x30,0x45,0x3b,0x54,0xd0,0xd5,0x1a,0x98,0xb1,0x77,0x21,0xf2,0x61,0x1d,0x7f,0x27,0x7e,0xf4,0x8b,0x81,},{0x6d,0x6b,0xd6,0x5f,0x37,0x26,0x79,0xfe,0x9d,0x94,0x5f,0xf5,0x65,0x16,0x33,0x3e,0xce,0x0b,0x7a,0x25,0xb1,0x5a,0xd2,0x48,0x73,0x81,0x67,0x0e,0x53,0x6f,0x52,0x46,0x77,0x5e,0xb3,0x9a,0x11,0x4d,0xb2,0xb9,0xcd,0x50,0xf3,0x12,0xb3,0x60,0xd9,0xd0,0xbe,0xa2,0x95,0xdc,0x37,0xb8,0x17,0xb3,0x32,0x89,0x0a,0xdb,0x65,0xe4,0xc4,0x01,},"\x14\x3d\xd7\xbf\xbf\xf2\xad\xc7\x1f\x5d\x12\x3d\x47\x4e\xa0\x69\xdf\x14\xae\x92\x3e\xd9\xbf\x8f\x98\x91\xe6\x0b\xae\x43\xf0\xc9\xf5\x55\x37\xac\x9d\x1a\xe5\x23\xce\x4e\xcf\xd3\x3b\x20\xae\x44\x5e\x9c\x42\x63\x72\x05\x0f\xa5\x21\x7c\x1e\x4f\xb0\x13\x53\xeb\xf2\xe3\x29\x04\xef\x7e\xef\xcf\x72\xe8\x02\x3b\xae\x06\xbb\xb6\x40\xcf\x77\x7d\x5b\x0e\x11\x52\x7b\xc8\x35\x49\x3a\xd6\x98\x0a\x15\x7b\xb2\xd5\x0b\xe2\x33\x65\xe7\x2c\xbf\x0b\x3f\x20\x9e\xf0\xc4\x4a\x00\xb4\x1a\x62\x26\x24\x88\x09\x6c\xae\x5a\x69\x6b\x4d\x64\xcb\xad\x34\x50\x0d\x41\xfb\x4e\x4b\xc7\x0f\x8b\xf6\x21\x44\xd0\x1c\x22\x75\xd6\xd2\x9f\x5d\xe7\x5b\x17\x21\xd5\x04\x6b\x68\x29\x16\x44\x43\xeb\xfd\x9c\x17\x81\x31\x9d\x88\xf5\x40\x10\xed\xc2\x96\xab\xbe\xd0\x2b\x7d\xad\x9b\xa5\x85\xb5\x52\xe0\x00\x5d\xcc\xa4\x00\xbf\x4f\x45\x9e\xed\x7d\xb8\x6e\xa8\x61\x2b\xe9\xe9\x18\xdf\xd4\xe2\x70\x0c\x47\x10\x08\x32\x83\x62\x6f\xac\x75\x44\x17\xe0\x08\x7d\x26\xba\x14\x5d\xfc\x45\xb1\xc9\xbf\x7b\x4d\xd7\x0e\x6c\x50\x87\x47\xef\x80\x5c\x9a\x02\x42\x5a\xeb\xc6\x42\x1e\x0d\xeb\x6a\x79\xd8\x9a\xce\xee\xe0\x1e\xce\xcc\x9f\x3c\xa3\x65\x38\x38\x26\x58\x4c\x43\x0e\xbd\x39\xec\xf0\xa7\x28\x66\xae\x0a\xce\xca\x5a\xd4\xf0\x40\x5b\x67\x77\x9c\x04\xc5\xde\x03\x30\x61\x4d\xa3\x47\x0b\x80\x5d\x78\x7c\xe7\x9a\xc5\xa6\x96\xdd\x6f\x6b\x55\x39\xb1\xa6\x51\xb4\x24\xce\xfb\x19\x49\x1d\xa6\xe0\x88\x92\x23\xcc\x98\x39\x8b\x42\xc0\x04\x14\xff\x8d\x6c\x06\x27\xeb\x97\xcf\xf2\x0a\x8c\xbe\x7f\xcc\xb4\x1d\x81\x0f\xcf\xe8\x58\xca\x74\x75\x24\x7e\xf6\x28\xe8\x4a\x09\xd0\x12\xfe\x12\x23\x5b\x38\xc1\xcc\x9d\x82\xe2\xb6\x9d\x01\xd6\x21\x8c\xfd\x48\xe8\x5f\x26\xae\xad\xd1\x95\x40\x8c\xdd\x4c\x2f\x80\x6a\x89\x04\x1f\xd0\x31\x7f\xb1\xa7\xb6\x20\x9f\x90\x42\x70\xd3\x4e\x60\x61\x95\x04\x72\x88\xb0\xfb\x11\xa5\x72\x29\x38\xf6\x7c\x22\xb3\x13\xf7\xf7\x4b\x20\x25\xc7\x5b\xcd\x1e\xcc\x5a\x9a\xdd\x4a\x64\x0a\x41\xf2\x99\x6e\xb6\x6e\x5a\xf1\x96\x19\x8d\xb5\x8a\x3f\xb9\x93\x8f\x34\x9f\x92\x2a\x24\xd8\x6f\x4e\xd8\xa9\x6a\x09\xa1\x96\xc2\x4d\x6d\x01\xed\x76\xf3\x81\x6c\x05\xc4\xf2\x6b\xac\xa9\xb9\xd6\xdc\xc7\x9b\x58\x0d\xfb\x75\xd6\xc9\x05\xd4\x80\xda\xd7\x69\x51\x85\x4b\xda\x1c\xaa\x7f\x4a\x81\x95\x43\xae\xd0\x1a\xe9\x56\xbf\x30\x58\xfe\x8b\x3c\x7d\x5d\x72\x49\x62\xf1\xa6\xa8\x31\x43\xdd\xad\x27\x4f\xda\x3a\xd5\x78\xe9\x8a\xa9\x67\xc4\x10\xee\x57\x57\x5e\xf0\x1c\x02\x58\x56\x0f\x0a\x1f\xa4\xb7\x93\x27\x79\x6d\xe9\x94\x20\xcf\xd0\xa4\x15\x50\x63\x60\xf1\x24\x2c\xcc\x58\xa6\x88\x09\x27\x75\x0d\xbb\xff\x13\xd7\xc1\xb4\xed\x51\x9c\xda\x35\x72\x10\xf1\x2f\xb0\xd1\xc4\xd4\x8f\x04\x11\xbd\x7e\x05\x8c\xc4\xcb\x93\xd3\xc7\x75\x97\xe2\x65\x3f\xfa\x28\x2d\x3c\x2f\x12\x8a\xc3\x3a\x23\x7a\xf2\xfc\xbc\x9e\xf9\xc8\x11\xf3\x78\x14\xba\x2b\x0b\x85\x09\x3d\x0f\xd1\x8b\x8c\x6f\xb0\x9a\x43\xce\x52\x25\x4d\x23\xd5\x5f\x32\xe1\xd3\x24\x2a\xed\x1f\x23\xd9\xcf\x20\x4a\xa0\xdf\xd4\x4a\x34\x6f\xe0\x9e\x55\xa4\xa0\x6c\xf1\xbe\xf8\xbb\xf3\x7b\xa1\xf1\x59\x8a\x58\xae\xf8\x95\x01\xec\xba\xc0\x45\x35\x43\xe4\x80\xed\x0a\xdd\xe9\x0c\x84\x1d\x95\xeb\xd6\xeb\x23\xba\xa9\xf7\x0f\x83\xc1\x49\xea\xb3\x2d\x09\x13\xc7\x9b\x09\x93\xd0\xe1\xd3\x57\x4f\x0f\x54\x2e\x56\xa2\x06\x16\xcf\xe4\xa8\xbd\x7a\xae\xeb\xe0\xb0\x83\xdc\x2c\xe0\x14\x61\x78\xc0\x74\x82\xa0\x11\x29\xbc\x6f\xef\xdc\x81\x41\xc1\x38\x48\x94\xb6\x9c\xbe\x2f\x29\xda\x18\x8f\x7f\xd4\xac\x34\x1a\x2d\xf6\xfd\x90\xde\xe6\xa4\x46\xd2\x74\x63\x24\xc7\x5c\x1e\xf5\xb1\xac\xe1\x87\xd3\xbc\x16\xd7\x05\x59\x89\x29\x75\xd7\xe4\x71\x38\xf0\x40\x63\x85\xea"}, {{0xdb,0x3a,0x44,0xdf,0x40,0xd2,0x55,0xa2,0x5c,0xf2,0x3f,0x53,0xc4,0x52,0x23,0xb7,0xd8,0xf1,0xf1,0xf1,0x11,0xba,0x07,0x40,0x6b,0x71,0xe1,0x84,0xa8,0xcd,0x06,0x12,},{0x6b,0x12,0xbd,0x95,0x80,0xae,0x20,0x7a,0x9b,0x0b,0xaa,0x82,0x87,0xb8,0xbb,0x86,0x66,0x93,0x73,0xee,0x5e,0x5a,0x62,0x5a,0xb4,0xa6,0xef,0x2d,0x08,0x71,0x25,0x97,},{0xcc,0x28,0xb5,0xef,0x4b,0x97,0x73,0x63,0x7f,0xae,0x7e,0x5f,0x08,0x4b,0x69,0x94,0xaa,0x35,0x98,0xf8,0xf4,0xa6,0x5d,0x0b,0xb2,0x01,0xd1,0x72,0xd8,0x61,0xa3,0x01,0x49,0xb3,0x33,0x8d,0x3c,0x3a,0xb7,0x5b,0x32,0xb2,0x55,0x95,0xcd,0x8b,0x28,0x96,0x30,0xc3,0x37,0x6a,0xcd,0x10,0xba,0x2a,0xb2,0x6b,0xc1,0xab,0xa9,0x00,0x84,0x0e,},"\x52\xdd\x8b\xa4\xff\xfa\x34\x4d\x1e\x08\x11\xd9\x67\x5c\x31\x3f\x9c\xc0\xe5\xa1\x38\x47\x86\x91\x98\x9d\x2b\x7f\x73\x89\x02\x50\x68\xfa\x35\xf7\x4f\x9a\xea\xf1\xe9\x56\x65\xec\xf8\xd5\x70\x7f\x75\xf6\x5f\x22\x56\xee\xa9\x33\x98\xbe\x59\xc0\xd5\x38\xf5\xe8\x58\x4b\xfb\xb3\xa2\x40\xf5\x01\x6d\x79\x27\x23\x4c\xb3\xea\xc3\x5b\x39\x1b\x8b\x53\xf2\x0e\xd8\xba\xe0\xba\x11\x08\x96\x94\xbf\xea\xde\x11\x07\x16\x56\xd4\xcf\x18\xef\x2d\x36\x81\x92\xe0\x4e\x08\xe3\x02\x4f\xc1\xd2\xfd\xa6\x31\x2a\xfc\xa6\x8d\x10\xc9\xc3\x36\xa0\xe3\x68\x50\xbe\x1a\x4f\x35\xb0\x33\xa8\x5a\x2a\x95\x49\xf2\x67\x3a\x99\x5f\x2a\x9a\xb4\xbd\x46\xc8\xfd\x2d\x83\x8e\x64\xf7\x61\x71\x34\x27\x32\x9c\x9a\xf5\xe4\x21\x1a\x22\xab\x20\x8a\xaa\xb8\x0e\x19\x4c\xd0\xf6\xa5\x02\xb3\x08\xfe\xd6\xc5\x83\x51\x78\x01\xa4\x8e\xd4\x33\x0e\x2f\xad\xdc\xd4\x18\x09\xc3\x91\x9b\x30\xe8\x4d\xb3\xc6\x87\x31\x03\x1e\x79\x85\x7d\xd9\xf9\x7f\xfd\x12\x54\x7d\xa7\x06\x67\x98\x07\x41\x51\xec\x88\xa5\xfa\x96\x3b\x9d\x9d\x83\xba\x2f\xee\x13\x58\x33\x95\x0e\xf7\xbc\x62\xb3\x40\x1e\xa1\x1b\xb3\x6f\x25\x56\x1b\xc0\x52\x2b\xb0\x2d\x8d\xad\x05\x43\xf6\x3d\x54\x7b\xe7\x7d\x0a\x4c\x9b\xf6\x5d\x42\xf3\xa2\x76\x14\x4d\x2e\x47\x4e\x29\x42\xf3\x79\x02\x21\xe2\x6f\xba\xe7\xca\x91\xef\xd8\x59\x21\x99\x08\x35\xfa\xfb\x6d\xc6\x74\x63\x5c\x96\x01\x82\x10\x38\xb5\x27\x11\x34\x3d\x1a\xa2\x5f\x1c\x46\xba\x4e\x3c\x6e\x71\x2b\xac\x19\xe5\x3e\xae\x30\xe5\x24\x6e\x4f\x04\xdd\xf2\xac\xdb\xb3\x41\x63\xc2\x43\x67\x76\x90\xbe\x0b\xf2\xe3\xfa\x16\x48\x70\xb5\xe6\xf5\x36\xb2\x2f\xb8\x9e\x5e\x8e\x1d\x87\xcd\xb3\x40\x44\x97\x7e\xd2\x83\x6e\x54\x4d\x7b\xa4\x93\xdd\x42\xa2\xb6\x49\xbc\xf3\x13\xc5\xb3\x9a\x1d\xbf\xff\x3e\x7f\x2a\x59\xad\xe8\x7d\x3e\x7b\x25\x8f\x58\xe5\x65\xfd\xba\x3e\x4d\x92\xb1\xed\xb8\xbf\xf5\x4d\xc4\x9d\x86\xc5\x3c\x03\x0c\xf5\x8b\x97\xef\x06\x6d\x24\x1b\x54\x05\x30\x21\x39\x05\x73\x9d\x8e\x1a\xa7\x2e\xd9\x0f\x68\x5d\x39\x58\xea\xa2\x42\xb0\xcb\xf7\xa2\xeb\x97\x6e\xe9\x6a\x63\xe6\x67\x86\x46\x41\x69\xa7\x42\xd4\x57\xe4\xd9\x11\x7c\x7d\x66\x42\x84\x45\xa4\x69\x30\xc2\x8b\xa7\xa2\x65\x82\x41\x80\x5e\xbe\x72\xc7\x8e\x02\x03\x5d\x26\x3a\x21\x1e\x59\x0b\x49\x0c\xdb\x84\x41\x50\x62\xee\xd1\x4f\x13\xb8\xa1\xa9\xe7\x7c\x8d\x7b\x75\x51\x5b\x18\xfb\x85\x38\x6e\x4a\x7e\x05\x39\x80\xd3\x0f\x48\x99\xe8\x38\x63\xbe\xe8\x75\x58\x58\x87\xc5\xf4\x8b\x51\x6c\xcb\x73\x1c\x4b\xca\xa3\xdf\x07\xd0\x47\x95\x81\x40\x96\xc7\x9d\x7c\x5f\xdc\x4d\xab\xf5\xe2\x6a\x4c\xa1\x83\x8e\x0e\x5d\x87\xdb\x71\x30\x9b\x81\xea\x7c\xe4\x61\xe5\xe4\x4c\x7a\xb2\xf1\x05\xad\x75\xc5\x43\xc1\xe9\x17\x9c\x36\xa5\xfa\x55\x5e\xc9\x22\xff\xed\x1b\x76\xd2\x58\x01\xdd\x74\xf8\x0c\xd0\xa6\xba\x7b\xc2\x0d\xb0\xad\x58\x0b\x7b\xbb\x9d\xdc\xfd\x93\xad\x1c\x5f\x20\xf3\xe2\x7c\x3e\xa3\xa1\xe7\x1e\xb7\x4f\xf5\xf9\x44\xcd\x3b\x98\xf6\xd0\x45\x29\x59\x30\x11\xc4\xae\xce\xf6\xdc\xaa\x60\xfb\x18\x36\x8c\xb1\x2b\x6e\x39\x1b\x3f\x5d\xf7\x65\xcb\xab\xff\x15\x89\x8c\x84\x79\x6f\xc2\xb5\x3f\xa4\x90\x0d\xad\x03\x4a\x13\xb0\xce\x14\x45\xad\xda\x4e\xf7\x19\xbe\x74\x14\x19\xe2\x31\xe9\x2f\x1f\x66\x7a\x32\x84\x2a\x42\xdb\x79\xbd\x7a\x01\x4a\x80\x9c\x81\x59\x6e\x82\x62\x73\xd1\x6f\xe5\xd4\x04\x58\x24\x2a\xe1\x0e\x12\xe6\x0b\x34\x89\x53\x0c\x66\x22\xb5\xbb\x44\x45\x4f\x29\x61\x6e\x47\xe9\xa2\x97\xce\x1c\xa0\x74\x13\x7f\xd9\xae\x13\xe3\xee\x8e\xdb\xcf\x78\xaf\x26\x54\x59\xdb\x1a\xf3\x42\xdc\x0b\x2f\xc8\x09\xbd\xa0\x15\xb5\xa8\x2b\x2b\x7c\x54\xef\xe4\xe5\xfc\x25\x2e\xb1\x3d\x66\xe8\x08\x93\x6f\x19\x10\xf4\xc4\x8b\xe0\xef\x7a"}, {{0x77,0x96,0x4d,0xad,0x52,0xb5,0x79,0xb8,0x96,0x67,0x53,0xda,0x31,0x86,0xd1,0xc5,0xe9,0xd3,0x3d,0x33,0xa4,0xdb,0x38,0xbc,0x0d,0x7a,0x1a,0x6c,0x11,0x2c,0x13,0xc2,},{0xfc,0x25,0x12,0x5e,0x78,0x29,0xf6,0x42,0x34,0x37,0x5e,0x52,0xae,0x9f,0x77,0xae,0x10,0x13,0xf9,0x9d,0xf5,0xf9,0x96,0x5a,0xd2,0xaa,0x16,0x58,0x95,0x96,0xd0,0x91,},{0x3d,0x1b,0x4b,0x4e,0x82,0x0d,0x25,0x0b,0xe2,0xa8,0xfa,0x97,0x1e,0x59,0x9e,0x1e,0x98,0x97,0x75,0x28,0xb2,0xf9,0x30,0x18,0x96,0x81,0xa9,0x3b,0x05,0xe1,0xa7,0x06,0xfc,0x80,0xef,0xfa,0x94,0xe9,0x29,0xbc,0x43,0x92,0x16,0x56,0x89,0x73,0x88,0x28,0x8a,0x9b,0x29,0x27,0x1f,0x37,0xa1,0x4b,0xe0,0x14,0xb8,0x73,0xc6,0x8f,0xc9,0x04,},"\xc3\x39\xe7\x18\xa7\x57\xf3\xf3\xbd\x1b\xab\xdd\x2e\x00\xaa\xa5\xcd\x7f\xc9\x00\x5e\xe3\x4b\x6f\xdc\x09\xd7\x1f\xbd\x9c\x92\x89\xab\x1d\xd1\x4d\xba\x2c\xad\x58\xcb\x80\x51\x16\x77\x7b\xd8\x0c\x85\x96\x64\x33\xad\x46\xf9\xca\x6e\x54\xf1\x3d\xd3\xca\x7e\x56\xe4\x7f\xea\x41\xe5\x48\x8a\x45\xad\x53\xbc\x5d\x65\x74\x27\xe1\xd7\x93\x8f\x55\x19\xf1\xb0\x9f\x5b\xdd\x98\xaa\xe5\xac\x96\x43\xef\x78\xeb\xa4\x93\x49\x25\x33\x9a\x15\x5d\xc6\x68\x28\x57\x10\x02\x09\x7a\x11\xa5\xce\xe7\xb5\x1a\x44\x1b\x75\x6b\x0c\xe6\x5b\x77\x9a\xfe\x19\xda\x6a\x18\xef\xc1\x45\xf6\x09\x0c\xe7\x70\xde\x9e\x0e\x91\xf5\x43\x27\x0a\x09\x85\xea\xb4\x75\x29\x3c\xcf\xdd\x31\x41\xc4\x14\x2e\x47\x22\x23\x3b\x26\x74\x99\x44\x76\x41\x23\x5d\x72\x8b\xd7\x5c\xd1\xad\xc0\xdb\x14\x2f\x73\x31\xad\xdd\xf8\xc5\xee\xa3\xd5\x76\x40\x5d\x86\x99\x15\xb5\x60\xf9\x64\xe3\xe0\x00\x3c\x91\xf5\xe9\x6b\xff\xbe\xee\xc7\x3e\x51\x02\x4e\xf5\x2c\x55\xc6\xdc\xb5\x4d\x58\x20\x3e\x62\xf4\xdd\xb6\xe1\x37\xeb\x08\xe1\xbf\x13\x26\x01\x8a\xfd\x1a\x86\xca\xb6\xc8\x41\xe0\x66\x1c\xe0\xa1\xa7\xae\x96\x7f\x24\xc1\xa7\x7f\xc7\xca\x50\x5f\x72\xe5\xf7\x93\x6e\x39\xc6\xf4\x83\x7e\x25\x95\x19\x5a\x69\xcd\x67\x65\x10\xa7\x16\x1a\x4d\xc5\xe3\x18\xf3\xd4\xf3\xac\x0a\xf0\x3f\x8c\x4a\xe5\xbc\xe3\x93\x24\xe9\x73\x8a\xea\x49\xf0\x02\xd3\x2d\x16\xde\x23\x17\xe9\x5a\x9f\x32\xee\x60\x4e\x13\xdb\x80\x38\xb2\x64\xcf\xc1\x7a\xed\x29\xc9\xde\xbf\x81\x91\xde\x9e\x0e\xfc\x95\x1a\xd6\xd5\x48\x67\x06\x8c\xf5\x0a\x26\x9c\x37\xa2\x41\xf8\x52\x06\x78\x8d\x23\x14\x31\x77\xf6\x59\xcc\xa6\x6c\xfc\xe0\x3b\xc0\x50\x22\x55\x33\x7f\x16\xb3\xda\xd6\xf7\x91\x32\xab\xf8\x0f\xf1\x2b\x6d\x22\x81\xe6\x37\xeb\x6c\x71\xf7\x6e\x26\x33\xa1\x14\x56\x52\x40\xee\xd0\x0f\xab\xea\x9e\xd8\xde\x28\xc8\x32\x21\xf8\xcb\x48\x5f\x51\x2d\x90\x08\xbf\xc7\x4a\x36\x6d\x4c\x2b\x4e\xd1\x72\xd3\x67\xe0\x24\x7c\xb6\x50\x98\xc1\x10\x28\x2e\x83\x1d\xf8\xe9\xbd\x4f\xbd\x5f\x4d\xd2\xb7\xf2\x42\x0c\x23\xb8\x5a\x63\x7a\xa2\x26\x2c\x3c\xb8\x84\x05\xf7\x07\x30\xc9\xab\x4c\x9d\x0f\x22\x7e\xe4\xfa\x4e\xf9\x1e\xfe\x9a\x59\xb3\xe6\xd8\x43\xdb\x87\x9f\x56\x50\x05\x9e\x99\xf0\xe4\xa0\x38\x68\x38\xe6\xf9\x87\x6f\x67\xd5\x0f\x89\x83\x2d\xda\x5f\x30\xa9\xcb\xfd\x71\x01\x34\xf9\xb5\xb5\x46\x27\x49\x6a\xa3\xa4\x32\x12\xb0\x7f\x03\xdb\x11\xd3\xd4\xf8\x75\xd4\x1d\x1f\x4a\xc4\x59\x69\xdd\xef\x69\xf8\x1a\x06\xd2\xb0\xc6\x46\xc9\xcd\x93\x1c\xf2\x50\x2f\xef\x0d\xd3\x2a\xbb\xf0\x95\x1e\xd3\x03\xf5\x28\x48\x25\x93\x43\x97\xfc\x22\xe7\x86\x98\xd3\x5a\xd8\x1d\x82\x25\x6b\xf9\xe1\x54\x00\xa1\x09\x16\x23\xa9\x82\x6f\x1e\x57\x79\x23\x67\x41\x7e\xf0\x25\x86\xd6\x4e\x65\x0d\xa9\xac\xe2\xf1\x8a\xa0\xa1\x26\xd8\x67\xca\xc4\xb5\xd4\xc9\x1b\xf5\x20\x9e\x53\x59\x55\x63\x86\xf8\x27\x08\x3e\xb5\x3e\x8b\x47\x09\xff\xfa\xbe\x92\xc6\x1d\x78\xff\xb5\xda\xf1\x02\x74\xe2\x42\xa7\x00\x91\xf3\xf9\xb9\xd5\x96\xc1\x25\x8c\x9a\x63\x38\x4f\x4b\x05\xb0\x28\x66\x12\x22\x18\x1c\x0f\xca\x96\x5f\x0a\x2c\xb5\x6e\x4b\x55\x6d\x6f\xbf\xf7\x1b\x64\xd9\xb3\x58\xda\x31\xaa\x37\xc7\x4f\xf5\x96\x2f\xb8\xd9\x6a\x38\x3d\x04\x97\x24\xc1\x9e\x24\x9c\x9e\xdb\xb2\xa3\x75\xb2\x3c\xe3\x10\x4d\xa0\xec\x58\xd2\x63\x5b\xa0\x3b\x55\x42\x3f\xa2\xdb\x7e\xb3\x49\xa4\xfc\x58\xa1\xef\x54\x0e\xe9\xa0\x2c\x2e\x70\x3c\x68\xd7\xf8\x47\x5f\x43\x4d\xdd\x32\x00\xdb\x1f\x06\x74\x57\x91\xa3\xac\xc3\x16\x0d\xba\x50\xa3\x93\x44\x7f\xfe\xef\x6d\xc7\xb9\x8f\xb0\x66\x84\xcc\x90\xfd\x85\x20\x3d\x11\x9d\xcd\x81\x99\xe4\xd9\xa8\x9a\xe3\x46\x7a\xe4\xbb\x19\xfb\x71\xcf\x74\x70\x29\xc2\x40\x96\xf9\xa5\x0e"}, {{0x5c,0xaf,0xd8,0x17,0xa4,0x41,0x0c,0xcb,0x27,0x12,0x17,0x23,0xef,0x32,0x07,0xc1,0x73,0x1a,0x08,0x61,0x94,0x5b,0xe9,0x62,0x71,0x4c,0x0e,0xd9,0x50,0x38,0xa1,0x95,},{0x4e,0xa0,0x86,0xbe,0x43,0xec,0xe1,0xc3,0x2d,0x08,0x05,0x9b,0xba,0xdc,0x9e,0x9a,0x2b,0x2f,0x4f,0x3f,0xe3,0x70,0xf1,0xf5,0xcc,0xd7,0xdb,0xde,0xc0,0xaa,0xf3,0x03,},{0x28,0x85,0x15,0xfa,0x72,0x59,0xf1,0xeb,0x58,0x7f,0xe8,0xa2,0xc4,0x03,0x43,0x4c,0x46,0xf8,0xd7,0xe7,0x5b,0x6d,0x22,0xbb,0x38,0x96,0x56,0x6c,0x01,0x7d,0x09,0xb6,0x98,0xc2,0xc8,0x07,0x79,0x9c,0x2f,0x65,0xf9,0xcd,0xb4,0xeb,0x58,0x15,0x1c,0xcf,0xc4,0x8d,0x10,0x80,0x61,0xa6,0xb3,0x14,0x84,0x32,0xb2,0xbf,0xc1,0xcd,0xab,0x05,},"\x50\xb2\xf0\x53\x42\x41\x80\x46\xd1\x6a\x30\xbe\x4f\xc6\x2b\x67\xda\xf6\xc1\x8d\x2a\x74\x24\x2b\x7c\xb5\x5b\xa9\x0a\xd2\x0b\x6c\xaf\xdd\x60\x15\x57\x37\xc2\x9d\xe4\x8a\xa5\xd7\x99\xfe\x54\x95\xfe\x59\xdf\x5a\x9b\x8c\x0a\x8e\x54\x18\x90\x47\x63\xfb\xad\x83\xea\x69\x86\x65\x1b\xac\x31\x11\x79\x39\xce\xf4\xe0\xc7\x99\x30\xd5\x2d\xfd\x7d\xb4\x3c\x31\xad\xda\xe3\xcf\x93\xe3\xef\xc5\xa9\x16\xef\xd0\xd6\x5f\xdc\x30\x90\x9f\xa3\x56\xcc\xbc\x52\x47\xd7\xaa\xa0\x67\x13\x1b\x6b\x48\x20\xfd\x02\xf8\xe3\x95\xf5\xa9\x70\x4c\x9b\xdd\x75\x60\xa6\x11\xd6\x25\x59\xa8\xdf\xe1\xd2\x85\x9c\x52\x48\x6c\xc1\x1e\xd3\x33\x19\x92\x48\x8f\x41\x75\x20\xd9\x20\xdc\x73\xa3\x2d\x4f\x08\x11\x00\x82\x50\x0f\x5a\x96\x2a\x30\x69\x32\xc6\xa7\x80\x29\x55\xce\xda\xd7\xab\xf5\x3b\x0f\x19\xfe\x47\x94\xa3\x1d\x6b\x85\x53\x80\x28\x43\x06\xcc\xff\x71\xa4\x00\x78\x59\xa2\x32\x8b\xb1\x90\x24\xc4\x3e\x10\xd7\x70\x64\xd8\x66\xd9\x62\x2d\x14\x2c\x27\x35\x4b\x84\xac\x3b\x4f\x82\x32\xf7\xa2\xf8\xaf\x64\x09\xd5\xcc\x75\x7a\x18\xef\x81\x3d\xfa\xf4\xb9\xbc\x04\x0c\xb0\x06\xd7\x7f\x14\x36\x41\xaa\x20\x36\xac\x7b\xc9\x28\xdc\x96\x58\x5d\x9e\x36\xc7\xbc\x9c\x56\x4d\x25\xf1\xc2\xcc\x0b\xea\xb9\xd5\xf2\x07\xe8\x4b\x21\x5f\x1e\x7a\xa6\xfc\x32\x82\x37\xb7\x9c\x39\x92\x3a\x4e\x09\xc7\xc7\x3d\xc6\xb2\x4b\x14\x16\x29\x4d\x79\x8a\x4e\xd5\xf7\x58\x33\x6d\x91\x5a\x87\x0a\x7d\x6b\x75\x92\xb5\xb8\x8a\xac\xe2\xdc\x5f\x26\x7b\xdb\x49\x11\x41\xcb\xba\xe2\xa6\x77\x40\x7c\xc0\x95\x5f\x96\x19\x62\x59\x93\x04\xba\x0b\x83\x96\x71\xa5\xc0\x00\xe9\x20\x10\x8a\x05\x29\x80\x87\xe4\x97\x70\xae\xee\xaa\xb3\x63\x27\x24\xcb\x0f\xc2\x28\x57\x96\xdc\x41\x48\x14\xfd\xa7\x8a\x54\xe6\x7f\x00\xa0\x2f\x77\xd3\xcc\xde\x1e\xd9\xd7\xb1\xde\xf1\x4e\xa1\xf6\x19\x10\xbd\xf3\x0a\x11\x96\xfc\x63\x51\xb6\x22\x54\xd6\x44\x5e\x6c\x90\x44\x5b\x16\xef\xaf\xe2\x89\xa2\x78\x4b\x92\xe4\x2b\x78\xa4\xa9\x00\xc3\x5f\x55\x63\x0b\xbb\x77\x62\xff\x9e\xb7\xfe\xf7\xd0\x4c\x90\xb9\x57\x1c\x4f\xc7\x60\xa4\x10\xdb\xfc\x25\x29\x91\xd0\xba\x27\xf2\xd4\x14\xfe\x64\xee\xfd\xff\x4a\xbc\x18\x81\x7c\x97\x06\xc6\x31\xbf\xa2\x03\x82\x1d\x3b\x92\xcb\x33\x8b\xaa\xf5\xd1\x23\x2b\x46\x26\x47\x95\x4d\x09\x02\x46\x2f\xb1\x69\x6e\x99\x1f\x07\xfa\x9c\x3d\xbc\xf2\x87\x29\x60\x83\x1b\x4d\xed\x92\xa4\x21\xcf\x21\xb7\x53\x16\x5f\xf3\x09\xef\xe2\xef\x54\x38\xc0\x12\x70\xd1\x0c\x6a\x03\xd3\x4f\x71\xeb\xc2\xda\xb1\xda\x90\xda\xa3\x57\x98\x4d\x24\x62\xbc\xb3\x5e\xe3\xde\x55\xc3\xa5\x5f\x8b\x98\xae\xc2\x11\x4f\x74\xc8\x43\x41\xa6\x41\x27\x86\x3c\x12\x0b\x5e\xca\xd9\xe3\x29\xa5\x75\x6a\xe4\xa2\x55\x5d\x84\x92\xcd\xa8\x35\x22\x5a\x8d\xeb\x3f\x9c\x15\x58\xf0\xd4\x25\xbc\x17\x2f\xf7\x64\x0c\xc7\x9d\x97\x80\x04\x16\xfd\x62\x94\xcc\xcc\x70\xcd\x1c\xf5\xb6\xa8\xe2\xaa\x07\x28\x9b\xd5\x22\xbf\x99\xdc\x96\xc3\x6b\xfe\xe8\x0e\x84\x6f\x5d\xd7\x46\xdd\x4c\x50\x03\xe4\xbf\x7d\x29\xef\xee\xa7\x50\x8a\x01\x61\x23\x68\x82\xc9\xa8\x2a\x56\xaa\x2c\x25\x74\x66\x96\x52\xc6\x30\x92\x3a\xb4\x70\xdd\xb9\x5d\x45\x6f\x7b\x8e\x8f\x07\x59\x9b\xa0\xd1\xd3\x8b\xc7\xf8\x17\x6e\x3f\xdf\x02\x09\xbd\x6f\x75\xd4\xcc\x11\x80\x3a\xfb\x18\x56\xcb\xc0\xe9\x1c\x73\x73\x0e\x4f\xb9\x8f\x3c\x94\x8a\x87\xd5\xa7\xed\xcc\x0a\x6a\x8a\xc8\x10\xea\x3e\xaa\x6e\x06\x3c\xec\x5f\x55\x66\xcd\x6d\xed\xc5\x37\xdb\x6d\x68\x6b\x80\x21\xf6\xea\x82\x5a\xd7\x47\x5e\xc7\xf1\xc5\xdb\xde\x45\xd3\xff\x4b\x5e\xe5\x1c\x0d\x04\xf1\xd7\x40\x18\xeb\x91\xe5\x04\x0d\x01\xc8\xb7\x1a\x4a\xab\xbd\xe6\x09\x4d\x4a\xfe\xcc\xb1\x8d\xfc\xde\xd7\x3e\xa7\x5e\x3b\x9f\x8c\xe1\x67\xdf\x62\x09\xae"}, {{0xd5,0xca,0xc8,0x55,0x21,0xaf,0x78,0x1f,0x3d,0x5f,0x66,0x86,0x2a,0x04,0xb0,0x87,0xd0,0xcc,0xdc,0xac,0x92,0x6c,0xfe,0x9e,0x74,0x7b,0xe8,0xd5,0xc2,0x63,0x3f,0x78,},{0x10,0x0d,0xcc,0x53,0x03,0x9b,0xf0,0x5e,0xa0,0xa9,0xf5,0x88,0x82,0x12,0x69,0x3d,0x4f,0x9e,0x0e,0x75,0x25,0x95,0xbb,0xcd,0x02,0x06,0x10,0xe0,0xae,0x21,0x35,0x96,},{0x5d,0xc0,0x33,0x63,0x41,0x4e,0xea,0xc0,0x08,0x6f,0xb6,0xfe,0xba,0x44,0x21,0x7c,0xef,0x4c,0x52,0x0d,0xb6,0x19,0x26,0xdf,0x68,0x0c,0xa6,0x02,0xdc,0x11,0x00,0x3c,0xe6,0xaf,0xbf,0x3d,0x13,0xc8,0xc5,0xb0,0x52,0x73,0xd2,0x14,0x15,0xe6,0x7c,0x14,0xa2,0xee,0x5d,0x0b,0x1d,0x53,0x52,0x41,0x9a,0xb9,0xb3,0x9c,0x00,0x3a,0x51,0x0c,},"\xd5\xe7\xdd\x59\x49\x09\x37\x5a\x4b\xe0\x8e\x74\x82\x5d\x59\x8d\x53\x5b\xf4\x6e\xc0\x84\xde\x52\xb5\x73\x91\xc1\x27\xef\xf5\x22\x4a\xb2\xd1\x94\xdf\xb2\x66\x33\x47\x8d\x02\xfb\xda\x74\xd1\xdc\x58\x21\xf7\x91\xbf\x96\x2d\x8d\xad\x9e\x4e\xf2\x42\x24\x89\x19\x07\xb0\x18\x9c\xcc\xc8\xb1\x33\xd3\xaa\x20\x78\x92\x6d\xae\xf2\x89\x8c\x19\xc2\xe0\xbf\xe0\x20\x41\xa9\x04\xb9\xf0\x4b\xe7\xcb\x50\xae\xd0\xd9\x62\xd1\xad\xd2\x0b\x40\xa8\x8a\xb7\xab\xad\x62\x6c\xf4\xda\x0a\x78\xf9\xf5\x36\x85\x50\x1f\xdf\xa5\x85\x43\xdd\xf2\xea\x0e\xea\x69\xe7\xba\x16\x0f\x8a\x17\x7a\x25\xfc\x21\xe8\xa2\x9c\x66\x16\x33\xe3\x0e\x52\x3b\x0e\xc0\x1b\x2a\xee\xe2\xd4\x26\xe4\xae\xad\x45\x74\x88\x10\x8f\xe5\xf5\x69\xcf\x6e\x2f\xdb\x68\xc2\x8f\x2b\x30\x52\x82\x35\x77\xcd\x93\x4e\x7b\x06\x2c\x8a\x34\x24\xcd\x43\x67\xfb\x31\x5b\x74\x4c\xa3\x52\x55\xd7\xf1\xaf\x4e\xdc\x9b\xc9\xd8\x83\x71\x23\xd9\x79\x03\xb4\x3d\xf3\x67\xc7\xd4\x18\xc7\x93\x47\xff\xaf\xe7\xc7\xb1\x72\x4b\xba\x34\xed\xe8\xd3\x56\x8d\xb5\x05\x98\x3e\xad\x47\xf6\x2b\x56\xe3\x61\x8c\x11\xdb\x8f\xf0\xbf\x49\x2a\xc6\x75\x97\xd2\xf9\x6a\x6f\x42\x0f\xf9\x85\x34\x1b\x78\x6a\xd6\xce\xae\xdd\x10\x5d\x0d\x15\x63\xb2\xd5\x35\x43\xd7\x8e\x72\x56\x72\x5d\x20\x4e\x82\xed\x3a\x2e\x6a\x6e\x83\xdf\x61\xfc\x28\x2a\x62\xca\x06\xe6\x21\x74\xb5\x5b\xef\x40\xa0\xbd\xf8\xd2\x3d\x1c\x33\x0c\x71\x44\x14\x85\xee\x85\xe7\x0c\xed\x12\x1e\xac\x60\x7f\x58\x06\x78\x16\x3e\x4b\xd7\x5c\x67\x09\xff\x3b\x41\xde\x80\x59\x4b\x9e\x2f\x2a\xa2\x78\xfe\xfc\x21\xd7\x3e\xe3\xf7\x28\x54\xb9\x58\xd9\xa8\xf6\x3e\x3d\x70\xf7\xfe\xad\x8c\x3d\xca\x8e\x71\xbf\x4b\x9c\x2a\x36\xf2\x12\xb3\x2e\xb3\x29\x2e\x63\x55\x80\x38\x65\x59\xee\x1a\x11\xdf\x15\x29\x3a\x0c\x21\xcd\x73\x60\x86\x98\x46\xba\x5b\x7b\xa8\x5c\x99\x4f\x5b\x2f\x9c\xc5\x0e\x5e\xea\x8e\x4b\x36\x91\xd8\x86\x06\x2a\x18\xcf\xb1\x82\xf1\xe8\xb6\x11\xfe\x1b\xc2\x63\x15\x9c\xb8\xa0\x86\x78\x7c\x81\x1b\xea\x48\x12\x53\x00\x08\xc7\x0c\xa0\xc4\x7e\x64\xeb\x2f\xba\xd5\xb0\x27\x27\xa6\x6f\x2c\xdd\x6d\xde\x86\xf5\xd2\xa9\x64\x5a\x1e\x9a\xa6\x6e\xe0\xe1\x5b\x97\xf5\xfd\x22\x95\x96\xee\x02\xe6\x61\xca\xb9\xa5\x4e\xee\x1b\x81\xf9\x8f\xe2\x56\xed\x6c\x54\xfe\xaa\xa0\xba\x04\x7e\xea\x35\x33\x44\xf6\xe5\xc6\x2b\xe1\xe9\xd5\xc0\x9a\x2a\x69\x94\x11\x11\x0c\x56\xd1\x94\x9e\x90\xc0\x7b\x19\x38\xba\x95\x55\xac\x1b\xe8\x51\x1b\x51\x02\x18\xd7\xcd\xe7\xe1\xd7\x4a\x68\xaf\xb6\x42\xf8\x17\x15\xfe\x9e\x6c\x96\xc5\x03\x81\xae\x5a\x9d\xf3\x06\x51\x87\x85\xdc\x4d\xbc\x3a\x64\xf6\x0f\x24\x5c\x56\x4b\x80\x29\x51\x2f\x38\x1b\x56\xee\x78\x77\x03\x42\x68\x03\xc8\x0a\xb1\xc3\x11\xf4\x77\xb8\x91\x70\x8b\x59\xfa\x74\x8f\x32\xde\xbf\x54\xd2\x41\x37\x71\x97\x8c\x26\x5c\x9b\x87\x11\x4a\xdf\x25\xb8\x33\x7a\xa9\x3b\x0e\x63\x2a\x5b\x6e\xda\x47\x4b\xec\x16\x32\x81\x59\xfb\xed\x06\x7b\x00\xb8\x7a\xdd\x61\x96\x54\x92\xec\xcc\x6f\xd3\x46\x1c\x10\x00\xe4\x03\x7a\xb1\xe8\xac\x89\xa8\x52\x4f\x78\xae\x09\xd3\x08\xea\x6c\x94\xff\x88\x37\x32\xb7\x12\xee\xc0\xef\x07\x71\x8d\x33\xc0\x11\xb9\x39\x8f\x8c\xfe\xa7\x33\x07\x5a\xf3\x31\xfb\x3f\x97\xcd\xc1\xe8\xc9\x9f\x6a\x10\x72\x5a\x68\xc5\xc5\x8f\xdd\x8b\x0b\xaa\x50\x22\x7f\x34\xd7\x3d\x23\x90\x52\x03\x69\x8e\xaf\xf6\x26\x65\x4c\xe8\x3d\x86\x51\x08\x49\x9b\xe6\x86\x1f\x61\x41\xbf\xa6\x21\x9d\x7a\xb8\xb5\x84\x51\x91\x99\xf8\x80\xcf\xa1\xb2\x6d\x91\x94\xd3\x01\x71\x1c\x30\xfb\x44\x6d\x6e\xa7\x64\xa4\x31\x0f\x70\xe4\xb8\x59\xcf\x95\xfd\x44\xaa\xf8\xc1\xe2\x40\xe8\x0a\x71\x61\x1d\xbc\xf5\x2d\xa5\x8e\xdc\x32\x03\x11\xde\x38\x8d\x5d\x9d\x76\x9e\xb5\x9b\xe0\x93"}, {{0x15,0x9a,0x9e,0xdd,0xea,0x5d,0xe6,0x34,0x03,0x98,0x7b,0x56,0x70,0xdb,0x6f,0xac,0x98,0xff,0xe5,0xec,0x3a,0x6c,0xf0,0x15,0x16,0xee,0x2c,0x70,0xce,0x3b,0x3b,0xe0,},{0xf6,0x1f,0x4a,0x04,0xa5,0xa1,0x2c,0xca,0xec,0xfa,0xf4,0x4c,0x1c,0x9c,0x18,0x88,0x47,0x5a,0x2c,0x89,0xfb,0x02,0xf2,0x6b,0xb8,0x1a,0xb5,0xf7,0x8f,0x4c,0xe3,0xa8,},{0x05,0x43,0x71,0x2c,0xef,0xa2,0x9a,0x22,0x0d,0x90,0xf8,0x1b,0xaa,0x4e,0x4c,0xf7,0x7a,0xc6,0x52,0x08,0xb2,0xd5,0xce,0x9f,0xd1,0x7c,0xe2,0x14,0xad,0x4a,0x93,0x7b,0x7f,0xc5,0xc7,0x86,0x41,0x3b,0x58,0x05,0x1c,0xca,0x3b,0xb8,0xb2,0xeb,0x55,0x65,0x7d,0x89,0x57,0x2b,0xc5,0x0e,0xa2,0xe5,0xec,0xdc,0x55,0x50,0x88,0x49,0x16,0x03,},"\xd1\x95\xe5\x90\x0d\xd3\x93\x14\x81\xbc\x01\x2e\x77\xbf\x06\x0a\xaf\x31\xcc\xcb\x0f\xe1\xa6\xc4\x0e\xaf\x28\x6a\x61\x66\xa1\x66\xb1\xea\x37\x05\x34\x26\x28\x4b\x92\x0c\x67\xfe\xe1\xd4\xb9\xd8\x6f\xb8\x61\xcc\x6e\xdd\x34\xe1\x0c\x52\x23\x37\x34\xd9\xcd\x92\xf5\xdb\xf4\x33\x51\x2e\xd2\x55\xac\x6b\x26\xe5\x6f\x5c\x66\x4b\xcc\xb2\x60\x69\x2c\xf4\x9d\x08\x36\x3e\xe9\x4e\x33\x6a\xcc\x48\x96\x00\xa6\xaa\x51\x2a\x04\x0f\x10\xeb\xf1\x8f\x7d\x2c\xbe\xe9\xca\xd1\x4c\x4f\xf8\x73\x77\xa3\x26\x34\x19\xd8\x29\x75\x29\x40\x1f\x15\x33\x7a\x4c\x4d\x23\x25\xed\x7d\xef\x76\x3a\x0d\x47\x9c\xaa\x40\x82\x66\x83\x4d\xa2\x42\xf3\xa1\x6b\x79\xa4\x58\x66\xb9\xd9\xd7\x1a\x48\x29\x31\x76\x74\xcf\xf7\xae\x6c\x8c\x58\x7b\xa4\xd4\x98\x0e\x81\x86\x13\xd3\xad\x82\x50\x7a\x7a\xb0\x32\xbb\xf9\x9c\x5e\x9b\x64\x03\x71\xbb\x41\xb9\x1e\x96\x5d\xc3\x1e\x8c\x7d\x4b\x3b\xaf\xd4\x95\x70\x52\x7f\xaa\xa8\x7a\xbb\xf6\x41\x6c\x47\xb1\xb1\xb0\x9d\x34\x01\x25\x31\x26\xcb\x24\x6a\xe4\x5a\xcf\x5f\x10\x0b\xb1\xf9\x2f\x11\xa5\xc6\xc9\x37\xe0\x58\x8d\x8b\x14\x6b\x3e\x4d\x3c\x7e\x5b\xf5\x74\x84\xe9\x84\xfe\x3a\xfc\x47\x72\xf2\x4e\xbf\x89\x4c\xdb\x39\x83\x7f\xbd\x46\x9a\x92\x1a\x96\xac\x5a\xf5\xe0\x70\xf6\xc9\x62\x4c\x58\x8e\x9d\x4f\xe6\xdd\xfe\xed\x1f\x8f\xe2\x0e\xb9\xc4\x60\xce\x6e\xe3\x8b\xf4\x71\xdd\x56\xdc\xf2\xe3\xee\x99\x8b\x8e\x7f\xdc\xf6\x12\xe7\x8a\x2e\x7c\x71\x73\xc0\x16\x09\x82\xbe\xde\xcc\x2c\x62\x1e\x5f\x66\x11\xb4\xef\x21\x02\xe3\x2e\x7c\x29\x80\x3a\x7e\x25\xfe\xe1\x51\x24\x31\x58\xa7\x6e\xe5\xd8\xc1\xbb\x2e\x7d\x8c\x88\x87\x1b\xa4\x33\xc5\xe5\x41\xc2\x60\x26\x93\xd9\x01\x10\xbe\x79\x5b\x52\x3a\x8f\xad\xb6\x05\xd8\xe3\xd7\xe4\x93\xfe\x24\x5d\x9c\xc5\x32\x0d\x32\xb8\x5d\x61\x35\xa4\x4b\x11\x68\x72\x94\x14\xc2\xca\x21\x56\x0f\xb4\xfe\xec\xde\xef\x0c\xf7\xd8\xe0\x71\x27\x4e\x88\x56\xc0\x04\x03\x3e\x80\x01\x3c\x73\xaf\x71\x77\xc3\x19\x78\x16\xa5\x03\x2d\x90\x59\xb1\xb6\xe4\x15\x2c\x38\x61\x92\xdd\x54\xb9\x0f\x9d\x30\x8b\xe9\x8e\xd7\xd0\xca\x9d\x12\xe8\xaa\xf6\xf9\xd8\x69\x38\x6a\xa9\xdb\xb0\x15\x93\xd3\x7e\x72\xf0\x90\x12\x4d\x34\x55\x29\x8e\x9b\x4c\x9e\xc3\xca\xe7\x3b\xb8\xee\x41\xeb\x63\xe3\x8c\x56\x13\x3e\xfd\xba\xf4\x49\xb8\x4e\x1e\x49\x1e\x49\x6f\x1c\x70\xa4\x4d\x06\x99\x86\xba\x88\x18\x42\x20\x69\x06\x1b\xb6\xeb\xcb\x7b\x20\x54\xe6\x3d\xf3\x81\xba\x03\xc6\xa7\x67\x4a\xbd\x61\x05\x0d\x69\x3d\x41\xbf\xe3\xca\x50\x46\xc6\x5f\xfb\x06\xa0\x74\x98\x09\xe5\x8d\x4c\x93\xa9\xff\x69\xed\x30\x95\x0b\xde\x1f\x99\x21\x6f\xff\x29\x9f\x22\xf1\x6b\x07\xc2\x54\xc2\x65\xae\x0b\x12\xe3\x13\x16\x3c\xcd\xf5\x03\x6d\x49\x05\x5f\x9a\x96\x67\xb0\xb7\x12\x92\xbc\x3b\x62\x60\xcb\x87\x56\x8f\xd2\x67\x17\x0b\xc9\x40\xc3\x33\x29\xd7\x29\xc9\xe3\x2d\x0f\x91\x80\xb1\x34\xbf\xf8\xae\x93\xb1\xbf\xeb\xfa\x38\x42\xfe\xf2\x0b\xc0\x4a\x29\x7b\x00\xa8\x4a\x0f\x42\x8d\x5f\x42\xfa\xb8\x61\x42\x99\x6d\x4a\xd9\xef\xab\xc4\x98\x52\xf8\x81\x2f\x3b\xfb\x5e\x57\x53\x9e\x21\x86\xeb\x8a\xe2\x29\x58\x0b\xc6\x04\x48\xac\xde\xf5\x72\x3c\x88\x15\x88\xb5\x37\x89\xf0\x5b\x91\xe0\x22\x89\x22\x32\x52\xd7\x53\xf7\x98\x13\x77\x9a\xce\x70\x5e\x04\xae\xd1\x52\x65\xd3\xbd\xf2\xa2\xe4\xb1\x56\x54\x77\x0a\x27\x58\x54\xe6\x4c\xf4\x43\x90\x60\x7a\x45\xd7\xbb\xa9\xaf\x3e\x1a\x2e\x28\x30\x67\xfc\xd6\xe6\x33\xaa\x2d\x24\x03\xbd\x81\xf7\xc7\x92\x76\x55\x10\xb5\x98\x41\x2f\x6b\xda\x07\xb2\xa9\x45\xb9\xf6\xd4\x6a\xb2\xf7\xc3\x20\x07\x5b\xc6\xb6\x0a\x80\xda\xa4\x4a\xf3\x91\xf4\xcd\x56\x21\x31\xbb\xdd\x40\x7d\x66\xf8\xdb\x12\x59\xbd\x76\xfa\x7e\x4d\x52\x64\xe1\x45\x54\x6c\x94\x2d\xfe\x90\x07"}, {{0xed,0xa0,0xfe,0xac,0x0f,0x2a,0xfe,0x01,0x74,0x49,0x15,0x52,0x48,0x7f,0x39,0x62,0x17,0x13,0x32,0xb8,0x22,0xdc,0x3d,0xa4,0x26,0xf9,0xa5,0xf6,0x2b,0xef,0x7b,0x8d,},{0xef,0xf2,0x7c,0xb5,0x1f,0x4d,0x39,0xc2,0x42,0xf3,0x23,0x01,0x9a,0x12,0x34,0x81,0x8e,0xf2,0xe4,0xcd,0x1b,0xda,0xbc,0x0f,0x2d,0x8d,0x21,0x34,0x58,0xdc,0x47,0x1a,},{0x6c,0xbc,0x7e,0x6f,0x5e,0x12,0x14,0x5b,0x01,0x68,0x7a,0xd9,0xca,0x6b,0xf6,0xe4,0x7f,0x94,0x17,0xc2,0xce,0xfa,0xd3,0xfb,0xd6,0x8f,0xd6,0x5d,0xd7,0x4f,0xaa,0x97,0x50,0xcb,0xa9,0x92,0xde,0x4c,0xeb,0xcf,0xcd,0x35,0x80,0x8c,0xbb,0x3f,0xf1,0x2c,0x8d,0x93,0x07,0x99,0xaf,0x36,0xef,0xe7,0x97,0x6b,0xf2,0xfe,0xa7,0x9e,0x3e,0x0e,},"\x90\x11\x19\xda\x4e\xd1\x81\xaa\x9e\x11\x17\x0b\x20\x62\x6e\x00\xab\xf0\xb5\x48\x24\x5e\x3d\xeb\xf9\x4b\xf5\xed\x50\xae\xef\xe9\x42\xb4\x02\xcc\x99\x48\x94\x78\x52\xde\xdf\x2b\x53\x04\x01\x76\x65\x74\x9c\xd4\x7c\x21\xfc\x65\x2e\xe9\x95\x67\x9f\xf9\x31\xe3\x0e\x94\xaf\x98\xb4\xa9\x8f\xd4\x4e\x84\x9e\x98\x47\x0f\xe0\xa7\x6c\xe8\x0c\x61\xf8\x3f\xb4\xe8\x5b\xa5\x23\xee\x3f\xd2\x5d\xb0\x00\x05\x3b\x49\xd0\x93\x0e\x3b\x07\x9e\x86\x6e\x15\x3f\x7d\x86\x36\x7f\x23\xa4\xc4\xab\xc6\x3b\x30\x75\x46\x1e\x90\xe4\xfd\x89\x6d\xa0\x49\x2e\x27\xd7\x14\x94\x1e\x96\x7f\x52\xc9\x3f\xfa\xec\x44\x80\x3f\x57\x87\x7d\x86\x6e\xb5\xf8\xc5\x28\x17\x85\xaa\x48\x26\x79\x2e\x39\x64\xc6\x65\x90\x82\x1e\xea\x66\x75\x20\x74\x26\x40\x18\xa5\x71\xf5\xb0\x13\xb3\x8e\x15\x2c\x95\xc0\x24\x8a\xe6\x03\x68\x22\xa6\x7a\xfc\x9e\x02\x69\x45\x73\x15\x2b\x86\x4c\x56\xc2\xf7\x30\xa0\x82\x10\xf8\x5e\xc4\x6f\x98\x4a\x64\x3d\x51\x6a\x15\xfc\xfa\xa8\x48\x40\xf5\x12\x04\x7d\x11\x0e\x07\x18\xd2\x93\x95\x5f\x01\x58\x25\x7f\xba\x0d\x78\xeb\x7d\xf2\xf0\xb7\x7e\x6e\xeb\x76\xdb\x5e\x71\x70\x73\x10\xe8\x27\x36\x1c\xd4\xe1\x19\x74\x0e\x63\x92\x2d\xb4\x2c\x2c\xeb\x5e\xe1\x75\xd5\x0d\xec\xc7\xb7\x49\xfd\x23\x25\xbc\xe1\xe6\xa8\xf7\x10\xff\xcc\x1e\x1c\x9b\x33\xc3\x80\xe5\x2a\x64\xda\xa9\x58\x5f\xab\xe4\x06\xd9\xcf\x24\x48\x8f\xe2\x6f\x3a\x49\x5f\xb0\xab\x50\xe1\xe2\xba\xd8\x23\x81\xaa\x22\x43\x10\x99\xcc\x8a\x56\x98\x13\xd7\x9c\x9d\x78\x56\x9c\x0d\x95\xda\x9a\xad\x2b\xfb\x57\x75\x8d\x52\xa3\x75\x27\x52\xe0\x23\xd6\x51\xc9\xcb\x66\xa4\x12\xa5\xc8\x0f\x6b\xa5\x47\x93\xf7\xec\x87\xb4\xc5\x98\xfe\xd2\xce\x24\xab\xd7\x60\x87\x08\x89\x5c\x46\x72\x73\x59\xff\xec\xa6\xd6\xc6\x2e\x10\xa6\x78\xca\xa7\x18\xb4\xcd\x26\x32\x92\xcf\xef\x53\x5b\x9f\xbe\x27\x56\xb7\x39\x6d\x69\x7b\x31\x46\xc5\x51\xe6\xaa\xc1\xf5\xf1\xc2\x4b\xe9\xb6\x7a\x1e\x2a\x2a\xff\x74\x53\x01\xba\x6a\x21\x22\x17\xc5\x3d\x68\x16\x81\xbb\xb4\x01\xbf\x4a\x43\x65\x6f\x5d\x15\xcd\xe9\x69\xc1\x78\x00\x99\xa3\x32\x37\xeb\x19\xa3\xb8\x58\x5d\x6b\x5d\xea\x2f\xb5\x77\x84\x5f\x25\xee\x2a\x82\xcc\xf4\xb2\x85\x02\xf9\x0f\xe8\x0b\x8c\xdc\xdf\x2c\xcf\x93\xc4\x34\xc0\xe6\xaa\x5d\x87\x52\xa4\x43\x43\xc2\xb1\x8d\x20\xfe\x40\x04\xc4\x70\x38\x65\x93\x56\xf8\x7a\xbe\xd5\x44\x50\x34\xd8\xe2\xd3\xd1\x47\x68\xf5\xef\x31\x2c\xf1\x02\xa9\x88\x46\x83\xbc\xc0\xcd\x8a\x71\xe3\xec\x36\xfb\xb6\x33\x4a\x1b\xba\xed\x5d\x2b\xf1\x04\x16\xd8\x2b\xd6\x53\x04\x75\x38\x0a\xb6\xe2\x57\x7b\xbc\x69\xce\xbd\xa7\x5f\xaf\x02\xad\x82\x7b\x54\x51\x82\x13\x20\x6f\xd4\xcd\x66\xf2\x52\xb2\x34\xac\xa9\xee\xde\x7e\x3e\xeb\x81\x5d\xdc\xd8\xd5\x19\xc5\xd7\xf5\xd9\xd1\xfb\x9c\xa0\xfa\x44\x67\x99\x00\x95\xfa\x46\x22\x0c\x20\xa2\x07\x1d\xfc\xaa\xd5\xf0\x24\xda\xe3\x41\x6f\x7c\x49\x2d\x75\x74\x88\xc4\x9a\x2e\x4d\xf4\x83\xbc\x9b\x80\x09\x8e\x0d\x5d\x68\x3f\xac\xb8\xc9\x60\x82\x9d\xff\x09\xb3\x03\x36\x9d\x46\xcb\x57\x33\x1f\xf2\x17\x91\xee\x25\xd6\xbe\x7d\xec\x7e\xba\xf1\xb3\x24\x79\xa7\xf5\x14\xdc\x64\x71\x05\xc9\x44\xc3\x6f\x7d\xbf\x0a\x5b\x58\x91\x28\xdb\xaa\xa4\x21\x71\xd6\x42\xf2\x5a\x98\x1c\xe1\xf8\x37\x9f\x91\x69\x0b\x36\xaf\x77\x46\x48\xd5\x62\x4c\x08\xdb\xd0\xa9\x0f\x70\x87\x16\xdf\xab\x20\x24\xda\xe8\x65\xb9\xc4\x9a\xb2\x74\x73\x82\x6c\xd4\xa0\x10\xbf\xdb\x52\x01\x1d\x8c\x7c\xb3\xf4\x21\xca\x8c\xa3\xcd\x04\x86\x88\x91\x88\xe6\x7d\xf0\x0f\xb8\xc2\xa6\x43\xe7\xad\xb2\xf8\x27\x9f\x76\x3e\x5b\x9a\x81\xb6\xdf\xc3\xf7\x21\xfc\x5f\x68\x49\xf6\x67\x36\x78\x8c\xc5\x57\xc4\xeb\xc6\xfc\x68\xd6\xf6\xac\x77\xbe\xdd\xa8\xac\xb3\x62\x24\x3b\xda\x74\xe7\xb2"}, {{0xec,0x05,0x9f,0xc6,0xbe,0x98,0x3c,0x27,0xec,0xa9,0x3d,0xdc,0xdc,0xb5,0x3a,0xf7,0x28,0x62,0x55,0xda,0x91,0xe2,0xa5,0x6a,0x68,0x4f,0x64,0x1e,0xc2,0xd0,0x9d,0x6e,},{0xff,0xc6,0xcb,0x75,0x1c,0x70,0x07,0x1b,0x65,0xec,0x2a,0xc6,0xb4,0x5f,0xd1,0xd5,0x5f,0xe8,0x36,0x96,0x5f,0x80,0xb3,0xe7,0xc7,0x84,0xfc,0x70,0x4a,0xcb,0xdf,0x69,},{0xa7,0xb8,0x8e,0x5a,0xbf,0x13,0x28,0x24,0xbd,0xde,0x77,0xc5,0xf8,0xdf,0x94,0xab,0x26,0x48,0x1f,0x6b,0xee,0x66,0x0e,0xa1,0x62,0x24,0x70,0x82,0xa2,0x50,0xd3,0x90,0xc7,0x1d,0x32,0x0a,0xd0,0x60,0xd8,0xef,0x34,0x1f,0xb6,0x9a,0x48,0x32,0x94,0xf0,0xd6,0xde,0x72,0x6f,0x0c,0x86,0x2f,0xa3,0x7e,0xa4,0xbc,0x6d,0xab,0x52,0x15,0x09,},"\xd1\xac\x63\x25\xa4\xe6\x90\xfa\x79\x53\x68\x83\xd5\xc2\x0e\xac\xb7\xd9\x64\xc0\x17\x8f\x74\x2c\x2b\x23\x72\x7d\xeb\x62\x64\x5a\xf7\xc8\x19\x22\xa0\xe7\x2e\x5e\x30\xb5\x83\x9a\x2e\xd5\xe5\x67\xec\x31\xce\x22\x41\x15\xb8\x2d\x2b\xf2\x51\xb7\x39\x3f\x01\xb0\xd0\x3a\x60\x2b\xc1\x20\xae\x62\xaf\x7f\xbc\x37\x9d\xfc\xf9\x5b\xbb\xba\x98\x4a\xab\xa3\x4f\xe2\x12\xac\x99\x00\x33\x28\xb8\x32\xc3\x53\x2d\x42\xee\xe1\xe1\x87\x4d\xc2\x2a\xd6\x7d\xb6\xc9\x1d\xbb\xfb\x2b\x45\x78\x5d\xbc\xd3\x99\x17\xd3\x6f\xb4\x8c\x1b\x5d\x6f\x38\xbd\xda\x5d\x28\xfb\xba\x64\x17\x55\x75\xaf\xea\x46\xc8\xed\x67\x57\xff\x30\x16\x4e\x0d\xf2\xe7\x21\x76\xe8\xb6\xc9\xdb\x5b\x5e\xf3\x90\xb7\x2f\x2d\x4d\x94\xe3\xb6\x6f\x0d\x44\xa7\xe0\xf0\x6e\x89\xde\xbc\xdf\x13\x63\xc0\xe7\x5d\x50\xdb\x5b\xb7\x01\x90\xd1\x9f\x66\xa3\x9c\x6f\x7d\xba\x70\xdf\xcd\x4a\x9f\xed\x02\xc2\xf1\xd0\x67\xe7\xc7\x88\xc5\x8f\xdb\x3e\x17\xa2\x37\x7c\xe4\x86\xec\x65\x82\xf3\xba\x99\x7b\xb5\xf7\x0c\xd6\x21\x00\x29\x56\xf5\x13\x1a\xa3\xa1\x61\x7c\x0c\xeb\xcc\xd9\x39\x1d\xe1\x30\x7c\x85\x97\x0a\x8b\xc1\x55\xf5\x19\x87\x26\x68\x45\x0c\x91\x48\x86\x89\xf5\x3c\x2c\x1a\x7e\xd5\x3f\x38\x8c\xb1\x3a\x2c\x38\x96\xfe\x5b\x7d\x3a\x0d\xc1\x68\x3f\x27\x66\x4c\x8b\xea\xea\x68\x0c\x8c\xc5\x4a\x90\xe4\xc6\xf9\x9f\xbf\x05\xf2\xc2\x2d\xf6\x0d\xe9\xae\xc8\x0c\x79\xb7\xd6\x62\x07\x05\x06\x67\xb4\x52\xd7\x85\x7f\x9a\x8c\xa7\x23\x28\x0d\xac\x79\x92\xe2\x07\x92\x67\xec\x3a\xd9\x11\x40\x46\x42\xc4\xe3\x26\xbf\xb9\x6b\x43\xc8\x94\x34\xba\x4b\xc7\x8c\x25\x2f\x4d\x4c\xa8\xd1\x3a\x88\x74\xc6\xfc\x82\x52\xea\x0b\x56\xc6\xbc\x78\x68\x47\xd4\x31\x83\x06\xe1\xc6\x52\xc4\x52\x58\x5e\xef\xd0\xbd\x9d\xd3\xc1\x48\xa7\x3b\xa8\x6e\xed\xea\x94\x5f\x01\x67\x13\xed\x7d\xf0\x85\xd0\x06\x66\x89\xe7\x92\xda\xcb\x2b\xfc\x1e\xb5\xc8\x24\x37\x2a\x26\xc5\xe9\x44\xaa\x74\x44\xac\x97\x73\xd4\xa1\x92\x1e\x49\xbd\xd4\xf8\xf6\xd7\x88\xc2\x63\xfe\xe0\x4c\x7b\x44\x4c\x53\x05\xed\xb6\x33\xe1\xff\xe0\xba\x4e\xa8\xda\x01\x1a\x62\xf2\xbb\xfe\xf4\xb8\x95\xad\x3f\x22\x4c\x3b\xa3\xbf\xf0\xc9\x5d\x75\x75\x0c\x9b\xcc\x66\xff\x8a\x20\xb6\xc2\x4b\xde\x75\x81\xa7\xec\x38\x66\xf8\x71\x6f\x78\x1f\x46\xdc\xad\x45\xa9\xeb\xcb\x6e\xd4\x69\x53\x36\x83\x97\x01\x17\x35\xd4\xb5\x2d\x00\xe8\xdb\x39\x79\x95\xdb\xdb\x3d\x4f\x42\x54\x68\x7f\x04\x68\x8a\x26\x8c\x30\x5b\x2b\x1f\x62\x2c\xf5\x1b\x17\x47\x75\xba\xd7\xf6\x67\x4a\xdc\x2e\x58\xe0\x5c\xce\x86\x5f\x12\xd7\x56\x9c\x8e\x9b\x35\xbc\xdf\x3c\xcc\xe6\x33\x0d\x08\xce\x53\x40\xa7\xc6\x30\xf2\x7a\x6c\x80\x86\xb5\x14\x6b\x29\x2f\xcb\xf5\x0f\xf6\xaa\xae\xf8\x84\x8a\x70\x7b\x25\x43\xc6\x18\xd1\x7b\xd9\x76\xc2\x40\xbc\x79\xd3\x3e\x00\x4e\x49\x53\x48\x29\x15\xe7\xe6\xef\x94\x96\x4b\xde\xa4\xe0\x2d\xd7\xc2\xf4\x75\x23\x5f\x2b\x99\xe4\x32\x29\xc9\xac\x3a\xba\x0d\xb5\x9a\xc2\xda\x03\xa9\xee\x4f\x37\xdb\xf2\x47\xa3\x3e\x6d\xfe\x5b\xe7\xc7\xf8\x25\x84\xf0\x4a\x46\xd4\x9f\x66\x21\xda\x31\xb9\x1a\xc3\xda\xa4\xd6\x8d\x48\xa5\x66\x59\xb4\x48\xc0\xed\x36\x5c\xb4\xaa\x0c\xfd\x90\x88\x53\xdf\x5b\xbf\xa8\x8e\x60\xe1\x0a\x5a\x00\x2c\x32\xab\x33\x33\xf2\xc3\x9b\xbf\x3e\xe0\x1a\x4a\xa6\x0d\x2d\x01\x42\x3e\x60\x97\xdc\x54\x30\x5f\x81\xa2\xd9\x3e\x2f\x6b\x4e\x8b\x35\x19\x71\xcb\xf2\x45\x7d\xc7\x6e\x1f\xb8\x92\x93\x38\x47\x98\xef\x28\x23\x4e\x9b\x1a\x47\xde\xdc\x23\x36\xf8\x6b\x8e\x13\xc4\xae\xf7\x90\xf5\xa1\x12\x39\xc7\x47\xd9\xd8\x65\xc9\xa1\x5a\xde\xb0\x71\x07\x02\x67\xe5\x34\x62\x56\x64\x8a\xdc\x0f\xa4\xdb\xdf\xd7\x87\xca\x14\x65\xfc\x24\x0a\x32\x4c\x3c\xaf\x29\x31\xda\x41\x49\x9e\x27\x5f\xd4\xb3\x5f\x6d\x08\xdb"}, {{0xf1,0x6a,0xbd,0xbc,0xc0,0xbc,0xc6,0x1a,0x1a,0xee,0x3a,0xbd,0x87,0x67,0xab,0x52,0xe5,0xf7,0x99,0x99,0xbb,0x77,0xa3,0x97,0x6c,0xbc,0x82,0x67,0x0d,0xfd,0x2f,0x73,},{0x10,0xf4,0x51,0x71,0x9d,0xb0,0xfd,0x21,0x37,0x6e,0x22,0x8a,0x41,0xc3,0x03,0x5c,0x8c,0x2b,0xc4,0x2e,0x5a,0xaa,0x92,0x6f,0xe6,0x08,0x87,0x8d,0xbb,0x0d,0xc7,0xab,},{0x33,0xd8,0x05,0x29,0x08,0x69,0xb8,0xe0,0x4f,0xf0,0x89,0xfa,0xa2,0xd1,0xfa,0xb8,0x37,0x43,0xba,0xda,0x68,0xad,0xe5,0xb3,0x8a,0xe5,0xf0,0xcc,0x58,0xc3,0x37,0x4e,0xba,0x43,0x94,0x3c,0x1f,0x51,0x10,0x67,0x8e,0xb3,0x9b,0x46,0x58,0x61,0x18,0x22,0xa2,0x6d,0x35,0xff,0xe1,0x9e,0x9c,0xfc,0xb9,0xba,0x95,0x89,0xe4,0xec,0x31,0x05,},"\xbf\xac\xd7\xdd\x4e\xea\x46\x7d\xcc\xe4\x04\xf4\xa3\x52\x0a\x45\xb9\x4e\xba\xa6\x22\x19\x7d\x02\xd6\x15\x29\xd2\xb3\xbf\x27\x3c\x4e\xe1\xfb\x95\xa1\x80\xc8\xf8\x7d\xe1\x90\xa2\xe5\xea\x70\xb8\x4a\xe1\xeb\x6f\xd4\x44\x7d\x8a\x3a\x8d\xed\x10\xf6\xed\xe2\x4f\x0e\xb9\x2b\xd3\x0b\xc6\x5d\x48\x71\xe8\xf5\xda\x08\xcb\xe8\xcd\x3c\x0a\xc6\x4f\xd5\xa5\x7a\x6b\x06\x4a\x89\xd5\x15\x9b\x42\xf8\xb3\xe5\xa1\x83\x8c\x9c\xb1\x9d\x88\x10\x6c\x07\x73\xa2\x75\xcd\x2a\x1d\x60\x99\x30\xbf\x6b\x30\xae\xca\x62\xb9\x7e\x31\x9b\xbf\xa9\x34\xf4\xd0\xa1\xe6\xac\x80\xba\xeb\xcb\xa2\xd8\xea\x4b\xed\x9c\xa8\x56\x2b\x4a\xcb\x56\x97\x9b\xf8\x85\x32\x4a\xc4\x0a\xb4\xa5\x0b\xfb\x9f\x34\x90\x49\xfc\x75\xa0\xe0\x3d\xe4\xcc\x43\xea\xe3\xc6\xa6\xcf\xfb\x5f\x6a\xe6\xc9\x45\x04\x41\x5e\x6c\x7e\xd3\x04\x5a\x93\x2f\x47\xfd\x20\xb9\xf3\x48\x3a\x77\xb6\xd4\x49\xd8\xdf\xd4\xa6\x38\xdb\xf5\x6f\x03\xf0\xf0\x31\x87\x90\x59\xb2\xfb\x49\x76\x79\x43\xf4\x6b\x38\x72\xe2\xde\x56\x7d\x5f\xef\x80\xb0\x29\x25\xe9\x86\x3e\x0f\x1d\x31\xa8\x0f\x4e\x64\x51\xc3\x25\x69\x4b\x80\xcf\x1f\x19\x18\xc6\xe4\x98\x87\x8e\xdc\x47\xc4\x53\x0c\xac\x46\x6f\x1a\x29\x4d\x55\xdf\x09\xaf\x4f\xdc\x80\x72\xad\xb1\xbf\x26\xca\x8c\x92\xf9\x12\xa2\xb9\xfe\xbc\x8b\x97\xb5\x8c\x1e\x9d\x32\xc7\x80\x32\x30\x52\x97\x2b\x6f\xbd\x53\x30\x4c\x05\x19\x3c\xae\xb6\x7c\x5b\xd3\xe6\x74\x79\x72\x5d\x29\x7d\xff\xb0\x68\x90\xab\xf8\xcd\x9e\x42\x45\x8e\x16\x8a\x61\x18\xf9\x05\xb1\xd5\x34\x86\x01\x6f\x85\xdc\xd9\x8d\xd3\x39\xe3\x46\x05\x33\xd0\xb8\xa4\x9f\xae\x6d\xc1\xa0\x71\x72\x5e\x6a\xe5\xf2\x94\x47\x9e\xe3\xbd\xca\xeb\x74\x06\x18\x41\xfb\x26\x08\xe8\x8a\x49\xfd\x0f\x38\x95\xb1\x8f\x85\xb9\x0f\x72\x41\xdd\x13\x87\x71\x00\x53\xfa\xa6\x2b\xae\x75\xe9\xae\x39\x36\x9c\x1c\x02\xde\x5d\x19\x24\x2e\xfa\x16\xe1\x1d\x44\xa4\xba\x57\x78\xce\x77\x22\xa9\x1c\xec\x0b\xc0\xa0\x8c\x06\x9b\xdf\xa1\x30\xd1\xc6\xc4\xb5\x6c\x6e\x93\x54\x24\x03\xcc\xf2\x76\x84\xde\xf5\x7d\xef\x26\xdf\x86\xce\xd5\x71\x28\x2d\xc9\x60\x97\x46\x18\xf0\xa7\x4a\x0c\xde\x35\xb6\x53\xcc\x6e\x77\x30\x43\x1b\x82\x5f\xfb\x9b\x8a\xaa\xb3\xc7\xa3\x97\xc9\x92\xbc\x2f\xa2\x32\x70\xfb\x11\xee\x43\x1a\xfd\x5f\x9a\x64\x44\x83\x01\x11\x73\x99\x3f\x19\x48\x5d\xd3\xcb\xdd\x18\x7b\xd3\xd9\x95\xeb\xf0\x03\x1b\x1b\x0d\xe4\xa8\xde\x9c\x14\xeb\x6f\x78\x0e\x36\xb8\x92\x57\x56\xb9\x79\x06\xa1\x96\x9d\x85\xe9\x67\xd8\x80\xe6\xe7\xdd\xa4\x2f\xd3\xc3\x00\x19\xf1\x1d\x70\x81\x07\x1e\xee\x66\x26\x42\x28\x36\xbb\xed\x27\xd4\x6d\xd0\xdf\x1f\xeb\x66\x10\xdc\x85\x9f\x51\x3c\x0b\xc6\x53\xd7\x02\x20\xfe\x04\x8d\x2e\x97\xc2\xe0\x6a\xf5\x30\xe1\x1b\xdc\x70\x29\xbc\xcc\x5c\x92\xed\xec\xef\x5e\x4a\x2e\x0b\xe2\xd2\x51\xf4\x41\x5d\xca\x3e\x55\xb3\xa8\x50\xf2\x63\x0b\x87\x9e\x4e\x03\x6c\xe8\x63\x3b\xf2\x09\x20\xb6\x80\x94\x21\x59\x29\xac\xcc\x7b\xe4\x0c\x57\x78\xbc\x55\x4e\x6e\xdd\x7e\x54\xc9\xe1\x45\xb2\xee\x07\xb6\x5d\x06\x1c\x11\xde\x0e\x83\xf3\x81\xce\x4f\x57\xc6\x48\x3f\x51\x06\x93\x63\x51\x10\x74\xc7\xa5\x77\x35\x3b\x45\xc6\xeb\x71\x19\x9d\xce\x50\x59\xfd\x2c\x46\x11\xb0\x54\x23\x8a\xaa\xdf\x2b\x6b\xa5\x34\xbf\xff\xc2\x72\x2a\xe3\xe3\x1f\xf7\x9a\xe2\xeb\xca\x99\xcc\x35\x07\xf8\xa0\x33\xcf\x4f\xea\x70\xc5\x2f\x7d\xb5\xde\x44\x2b\x42\xb8\xd4\x1e\x99\x01\x2e\x42\xca\x0e\x85\xa9\xfb\x6d\x4f\x16\x5b\x33\x0d\xe6\x38\x3c\x57\x26\xef\xca\x2f\xe9\x71\x34\x00\x02\xf5\x62\xdc\x6c\xb8\xf2\xfa\xf0\x66\x57\x25\xe0\x97\x79\x9d\x09\x60\x91\x86\x4d\x66\xa9\x50\xa5\x79\x09\x53\xee\x16\xb9\xea\x58\x20\x09\x21\x87\x08\xc4\xac\xcd\x81\x38\x13\x58\xa2\xc6\x89\xa0\x41\xd0\x2d\x78\x61\x21"}, {{0xbe,0x79,0xd1,0xae,0xea,0x86,0xe8,0x6f,0x39,0x81,0x37,0xe6,0x2f,0xfd,0x79,0xe5,0x0e,0xff,0x9f,0x31,0x3f,0x25,0x19,0x2f,0x89,0xe5,0x2f,0x0b,0x4b,0xbd,0x5d,0x32,},{0x18,0x7d,0xac,0x85,0x5c,0xa4,0x42,0xfd,0x9a,0x3d,0xdc,0x32,0x89,0xc2,0x4e,0xb2,0xd2,0x6f,0x7a,0x40,0xfb,0x29,0xd8,0xe7,0x44,0x31,0xb2,0x50,0x22,0xc3,0xa0,0xcc,},{0x6d,0xab,0x59,0x3b,0xb1,0xd4,0x48,0xc9,0x74,0xa6,0x5c,0x6a,0x0b,0x6f,0xad,0x22,0xb4,0x73,0x26,0x32,0xd0,0x04,0x89,0x17,0x6e,0xf1,0x26,0xaa,0x59,0x01,0x09,0xe0,0xa7,0x23,0xa1,0x13,0x10,0x7b,0x53,0xe1,0x7d,0x69,0x0a,0x0d,0x40,0xb0,0xfa,0x33,0x6c,0xc8,0x7f,0xd5,0xfc,0xe8,0xf5,0x41,0xac,0xce,0xc6,0x7f,0x7d,0x1e,0xbc,0x06,},"\x6d\x63\x2a\x7d\x3c\x9b\xe5\x36\x49\xd0\xd1\xa5\xee\xdf\x51\x9a\x41\x3b\x13\xac\x64\xe9\xad\x85\x4d\xfa\x04\xf2\xe1\x73\x29\xd8\x22\xbe\x57\x3d\x9e\x35\xac\x06\x6f\x02\x22\x13\xa3\x44\x62\x0b\xba\x28\x9f\x53\x31\x69\x55\x84\xd1\x34\x3e\x81\x54\x05\xae\xab\xe3\x86\x1d\x63\xb3\xa5\xb9\x2b\x8c\xd8\xee\xed\x22\x80\x22\x2a\xbd\xe3\x0a\x1b\xcc\xd3\xf3\xe4\x11\xaa\xb9\x22\xfa\x1b\xaa\x09\x7a\xa5\xc7\x80\xd0\xea\xef\x94\xea\x10\xfe\x21\xf7\xd6\x39\xb7\x6d\x47\x88\xae\xb5\x92\x4a\x9d\x26\x2d\xcb\xc5\x68\x8a\x3e\x43\x54\x4b\xec\x08\x8c\xa2\xe0\xd0\x6d\x77\xa7\x1f\xb6\x41\xd5\x52\x26\x61\x44\x52\xb1\xe0\x80\x7a\x9f\xcd\x3c\xa6\x9b\xf7\xf2\x5d\x80\x41\x47\x0c\xeb\x7b\x21\xea\xd0\x3e\xc0\x37\xa1\x62\x9b\xd5\x00\xaa\x23\x3b\x59\xbe\x44\x97\x82\x10\xb6\xa3\x66\xf2\x23\xac\xfa\x07\x97\x95\x40\x07\xb0\x0e\xfb\x4f\xfa\xdb\x5f\xc9\x2b\xdb\x37\x86\x3e\x50\x2d\x7d\x70\x68\x10\x39\xed\xf3\x37\x70\xdf\x3d\x1d\xe3\x43\xdc\x35\xf2\x26\xd5\xe7\x39\x44\xba\x02\x55\xe2\xa8\x8e\xf6\xc4\x1e\x47\x2b\x21\x45\x67\xc2\x49\x59\x4a\x50\x87\x8b\x67\x31\xc1\xae\xb5\xb1\x0f\xa9\x1f\xa7\x6a\x37\xe1\xf9\xf1\xc0\x0f\xdb\xfe\x34\x85\xde\xd5\x4a\x00\x9a\xb6\x13\x39\x27\x11\x56\x68\xb5\x9f\x51\x15\x50\x8d\xa9\x37\x0f\x6b\xc9\x2a\x11\x85\xc0\xd5\xca\x01\xd2\x91\xe1\x8c\x54\xac\xfa\xca\x73\x8b\xd7\x19\x68\xa3\x42\xa0\xcb\xa6\x2e\x4b\xb1\x04\xa5\xbb\x37\x9f\xc8\x3e\xe1\x82\x0d\x1d\xb9\x80\x25\x3d\x6c\xb3\x83\xe9\x5a\xf1\x5f\x53\xc8\x5d\x17\x58\x90\xdd\xe5\xe4\xed\x03\xd2\xd0\x13\x5e\x3d\x60\xb1\x82\x93\xf5\xb5\x64\x1e\xf8\x3c\x6e\xce\x3d\x52\x59\x8f\xc6\x35\x36\x86\xe6\xf7\xb0\x9f\xde\xc1\xf6\xf1\x53\x67\x2d\x34\xb4\x89\xb4\x8a\x0d\xb9\xe4\x2c\xed\xa7\x17\x55\x48\x1c\x04\x70\x16\xc2\x25\x34\xe9\x0c\x6d\x20\x1e\xd7\x85\x96\x02\x63\x6e\xa7\x7a\xe8\xc6\x73\x4b\x7c\x4c\x5b\xd9\x95\x79\xc5\x08\x73\x1c\x72\x46\xa2\x95\x86\xe4\x06\xe1\xd9\x32\xf6\x71\x30\x71\xd4\xbe\xa6\x3d\xc5\xe2\xa3\x76\x1e\x16\x02\x4d\x2c\x32\x84\xf7\x09\xa1\xf2\xba\x08\x5e\xad\x32\x00\xc7\x04\x62\x75\xcb\x96\xb6\x1a\x60\xb5\xac\x55\x9b\xc4\x88\xbd\x10\x64\x67\xc3\xde\x50\xbf\x5d\x74\x0d\x05\xc9\xcd\x70\x1d\x65\xb7\xda\xea\x29\xe6\x4d\xd5\xa9\x7a\xdb\x6b\x5c\x82\xcf\x7f\x23\x01\x7a\xa7\xca\x1a\xc9\xa3\x9e\x58\x27\xeb\x47\xe2\x0d\x35\x9b\x67\xc7\xd4\xe1\xa8\xe3\xe2\x7c\x52\xd3\x3d\x93\x03\xa5\x92\x62\x34\x84\xd7\x97\xb4\x02\xcb\xb4\x58\xd1\xac\x2e\xa5\x3e\x1c\x4f\x7a\xbb\x70\xcc\x02\x95\x54\xa2\x34\x57\x4d\xef\x9b\xc3\xb0\xd3\x83\x5d\xc3\x14\x90\x2e\x25\xab\xb2\x2d\xfd\xed\xdc\x67\x9a\x3c\xc8\xf0\x73\x40\xb1\x5f\x57\x62\xf4\x40\x7f\x38\x03\x42\x55\x4e\xd0\xc6\x2f\x73\xb6\x18\x16\xea\x8c\x52\x94\x61\xe1\xbf\x0e\x9d\x1c\x2d\x5e\x4c\x57\x46\x33\x6b\xc0\xe1\x32\x87\x3c\xde\x0d\xc2\x15\x8b\x54\xfa\x1b\x67\x8a\x00\x6b\x4d\x95\xed\xa8\xa9\x55\x71\x42\x73\xb7\xcc\x5c\xf2\xad\xd9\x09\x4d\x46\xe4\x9a\xbc\x09\x6a\x45\xf4\x18\xe2\xed\xbe\x99\xdd\x85\x29\x11\x68\x80\x64\xdf\x7c\xf0\x61\xd0\x7a\xee\xf4\x27\x95\x69\x0f\x48\xc9\xba\x19\x56\x54\x75\xd5\x46\x8a\x9e\xf4\x5d\x7b\xf7\x5f\xd7\x11\x82\xdd\x6e\x64\x01\x38\xf1\x82\xa6\xa0\xc6\xcb\xbd\x00\xc4\x95\xc4\x38\x95\x30\xac\x8e\x67\x96\x0e\xb5\xc5\x76\x3f\x54\x84\xea\xb1\xc1\xab\x85\x01\x40\xda\x04\x2b\xa4\x7e\xd8\x52\x88\x00\xd4\x17\x87\xf0\x75\xfe\x0d\x85\x50\x1a\x7a\xb7\x66\x35\xd0\x34\x10\xd2\x86\xc0\xe1\x7d\xb4\x02\x3a\x76\x39\x74\x68\xcc\xb0\x91\xcc\x5a\xc1\xf6\x43\x45\x87\x91\x3e\xab\x92\x2b\x50\xca\x55\x67\x01\x6d\xde\xa3\x2f\xb5\x32\x55\xbe\x67\xf2\xdc\xf9\xff\xa8\x5d\x11\x7f\x1a\x65\x5f\xa7\x0d\xd3\xa5\x4c\xf9\x91\x53\x1f\x19\x13\x0e\xaa"}, {{0x26,0x99,0x52,0x17,0x2c,0x3f,0xa9,0x76,0xde,0xfb,0xf4,0x0b,0xd6,0xed,0xd8,0xf1,0x5c,0xfd,0x4b,0xe1,0x0c,0x75,0x8e,0x37,0x41,0xd7,0x41,0x62,0xd8,0xea,0x22,0x9a,},{0x4a,0xea,0x57,0xc7,0x21,0xe3,0xdc,0xca,0x82,0x39,0xe9,0xad,0x9b,0x22,0xc1,0x9b,0xab,0x8d,0xf7,0x2c,0x88,0x79,0x3b,0x24,0xd8,0xdc,0x47,0xcf,0x97,0x40,0xfc,0xf8,},{0x3a,0xc8,0x0d,0x1e,0x8f,0x68,0xb4,0x05,0x8c,0x3a,0x04,0xda,0xd7,0x18,0x73,0x73,0x95,0x9f,0x26,0xa2,0x70,0x02,0x49,0x6f,0x8a,0xfa,0xac,0xcd,0x8b,0xea,0x09,0x01,0xc5,0x4c,0xab,0x87,0xb2,0xa2,0x30,0x2e,0x1f,0x36,0x25,0xc2,0xb0,0x6c,0x7e,0xbc,0xf3,0xce,0x96,0xde,0x3a,0xfd,0xf0,0x0f,0x51,0x94,0xa3,0x5e,0x05,0x52,0xc7,0x0e,},"\x7c\xcb\x6a\x05\x70\xc5\x33\x73\x7b\x9a\x53\x4a\x34\x1a\x7a\x96\xdc\x76\x52\x8b\x99\x7a\x9b\x48\xe6\xe0\xfd\xe1\x0f\x47\x4b\x27\xec\x98\x99\x12\xd1\x76\xca\xb7\x42\xd8\x9a\x84\x8b\x36\x66\xe9\x27\x7d\x69\x5b\x02\x2f\xd5\x3a\x9e\xb8\x9e\x88\xc7\x20\x39\x9e\x24\xed\x25\xdb\x9e\xb3\x5d\x6d\xa0\x09\xe9\xf0\x24\xef\x8e\x65\x51\x65\xbd\xef\x1c\x0d\x79\x7c\x74\xf0\x19\xcd\x59\x1a\x04\x42\xa1\x2d\x1c\xa8\x93\x83\x6c\xa2\x62\x8b\x33\xe8\x54\xf3\x42\x8e\xec\x4a\xa5\xed\x84\xf4\xbd\xd2\xee\xf8\xb6\xd2\x25\xca\xf9\x49\x6d\xf9\xed\xff\xd7\x35\xea\x54\xdb\x1b\xde\xa8\x83\xad\x5d\x47\xeb\x0b\xd4\xa6\x65\x3f\x0a\xb0\x37\xf0\x40\xa4\x15\x17\xa7\x74\x1f\x91\xe8\x2f\xdb\x6f\xda\x04\xf0\xdf\xa1\xbc\xf8\xb9\xb3\x7b\xf2\xbf\xbd\x87\x32\x7a\x63\x6f\x90\x7f\xdf\x96\x8d\x01\x89\xd1\xa1\x18\x09\xc4\x23\x0b\xa6\x9d\x5c\xbd\x84\xf5\x61\xbc\xac\x3a\xd0\x02\xe5\x58\xc5\xb9\xb0\x97\xa0\x19\x02\xf2\x9c\xe3\xf1\xec\x26\x41\x53\xd6\x68\xc7\x8b\x84\x51\x05\xb9\xcd\x2e\xf3\xc9\x43\x53\x1b\x75\xaa\x42\x8f\x17\x9e\x4b\x34\x18\xb1\xd5\xa4\xaa\x7a\xb1\x20\x3e\xfa\x49\x5c\x87\x69\x62\x8e\xb1\x06\x3a\x93\x7b\x73\xe4\xb5\xcd\x0c\xda\x33\xda\xb0\x1a\x50\xc6\x4f\xeb\xd9\x75\xc5\x7a\x1e\x84\x15\x08\xe8\x60\x60\x94\xd0\x82\x4f\xdd\x96\xcc\x6c\xfa\x18\xfa\x82\x09\xb3\x0f\x0a\x2a\x78\xea\xc9\xa7\x67\x17\x6f\x57\x3e\x78\xc0\x68\x80\x9b\x19\x9a\x69\xac\x6d\x33\x5d\x7c\x92\x09\x99\xc4\x0c\xba\xd8\x7c\xf4\xcc\x7c\xa5\xc6\x44\x29\x1d\x75\xad\x7a\x74\xbc\x1e\x63\x92\xd1\xce\x31\x1e\xcf\xd2\xeb\xc9\x16\xe3\x9e\xb6\xaa\x3e\x7d\x89\xfb\x80\x5a\x27\xa5\x5f\x17\x89\x12\xb1\x57\xbc\x01\xa0\x55\xf6\x7a\xef\xa7\x8e\x55\xc8\x06\xcb\xd9\xc0\x1b\xaf\x8e\xf9\x2c\xad\x22\x60\xb4\xbb\x14\xcf\xe6\x17\x82\xde\xe5\xc5\x99\x72\x50\x69\x41\xc4\x62\xa4\xda\x7e\xb8\x99\x53\x1c\xf9\x96\xbc\x98\xba\x36\x29\xef\xfe\x6f\xcd\x17\x06\xd1\xb4\xee\x4f\x2a\x14\xe9\x21\xbd\x40\x8f\x30\xe1\x2e\x73\xfb\x7a\xa8\x60\x53\x6b\x03\xe7\x7c\xa9\x37\x82\x32\x81\xa1\x64\x53\xfe\x82\x79\x35\x94\x32\x01\xe6\xec\x14\x3a\x67\xee\xfa\x4f\x94\xe9\xab\xf9\x4f\x7e\x3d\x41\xb7\x0a\x82\xbe\x69\xde\xd8\xa5\x30\x60\xc2\x30\x5f\x42\xf6\x2f\xe6\xa2\xf7\x04\xb6\x7a\x1e\x8f\xdd\xc7\xd9\x8b\xa7\xf3\x45\x71\x19\xb3\x11\xd4\x49\x66\x3e\xd9\xe3\x20\xd6\x18\xdc\x23\x68\xd4\x95\x08\x75\xb9\xc3\x8c\x5d\x8c\x03\x10\x4e\x2e\x32\xc4\x32\x5d\xed\xd2\xbc\x26\x7e\x2a\xcc\xb0\x11\x20\x18\xe9\xc5\xa8\x00\x7c\xca\xb2\xf6\xd7\xc7\x37\x79\x20\x02\xac\xb7\x30\xd7\x2e\x9f\x73\x08\x29\xeb\xc4\x2c\xa5\x64\xc1\xd9\x27\x1b\xf1\x86\x9c\x4d\x35\x83\x55\x89\xb7\x43\x1e\xf7\xa3\x1a\x07\x00\x60\xfe\x4a\x08\x9f\xb1\x1f\x2d\xd3\xdc\xe6\x5a\xe0\xfb\x45\xbc\x3a\x28\x60\x91\x7d\x93\x3b\xa2\xd0\x90\x56\x9e\xf5\xed\x43\xbc\x25\x32\xdb\x87\x9e\x0f\x1f\x22\x5e\xad\xcb\xef\x1c\x03\xd9\xed\x78\x29\x9e\x23\x3e\x4c\xf0\x7b\x06\x4a\x7b\xaa\xc3\x4c\x5a\x0c\x19\xfc\x3a\x55\x42\x08\x9f\x70\x16\x7b\xe2\xf8\x5b\x4a\x10\xe7\x78\x52\x52\x23\xbe\x8f\xfd\x5c\xff\x96\x48\xb1\x00\x5a\x09\x8b\x4b\x39\x24\x39\x8f\xb0\xbc\xab\xcc\x6e\xdf\x30\xc0\x61\xec\xe7\xae\xa3\x5f\xe9\x8a\x92\x03\xf8\x71\x13\x69\x53\x0f\xeb\x5e\x67\xbb\x2d\x4f\x59\xd9\xc8\xbc\x99\x38\x54\xdd\x47\x47\xcd\xe3\x99\xbd\x0e\x63\x74\x0c\x1c\xc8\x39\xad\x0f\x09\x8a\x38\xa8\x0b\xea\xdd\x64\x8e\x14\x36\xde\xee\x60\xe9\x31\xe6\x8f\x52\x97\x9c\xe4\x9f\x30\x1f\xe3\x9a\xfb\xb6\x15\x35\x20\x91\xc8\xb6\x58\x5f\xe8\x84\x47\xed\x6e\x59\xa0\x20\xb2\xbb\xe6\x6a\x94\x23\xae\x52\x28\xc2\x03\xbf\xd4\x84\x7b\x51\x81\xe2\xc3\xb4\xda\xd8\x3a\x6d\x4f\xa7\x69\x85\xee\xf7\x6a\xdd\xe3\xb3\x4e\xdb\xdd\x28\xd6\xa0\xb4\xa4\xee"}, {{0xcc,0x31,0x38,0xe5,0x02,0xa5,0xff,0x6f,0x80,0xd2,0x46,0x36,0x6e,0x84,0xd6,0x5c,0x59,0xf1,0x2d,0x4f,0x49,0x63,0x97,0xe6,0xeb,0x99,0xb5,0x26,0x7b,0x8c,0xbe,0x2a,},{0x9e,0x2d,0x3e,0x88,0xaf,0x7b,0x52,0xdd,0xcf,0x00,0xe6,0xd0,0xc7,0x75,0x9c,0x12,0x38,0xb8,0xfb,0x3e,0xb1,0x44,0x21,0xfe,0x82,0xc3,0x48,0x33,0x43,0x78,0x35,0xbd,},{0xa2,0x70,0x0e,0x38,0x95,0xed,0x0c,0xc2,0xaa,0xf0,0x12,0xa4,0x0b,0xc7,0xbd,0x0b,0xd2,0x9d,0xd7,0x9c,0x69,0xc0,0xb4,0xa6,0xed,0xd0,0x53,0x0c,0xf3,0xe2,0x67,0xc0,0xf8,0x2d,0xd8,0x4e,0xda,0xf1,0x74,0x4d,0xc4,0x11,0xd6,0x2c,0x00,0x28,0x71,0x52,0x58,0x82,0x2d,0x7b,0x63,0xd3,0x97,0x05,0x61,0x2b,0x3f,0xad,0x4b,0x5e,0xfb,0x04,},"\x58\x5e\xcf\x2f\x09\xeb\x92\x3d\xf2\x0a\x85\x55\x64\x2a\x2b\xc0\xb6\x8c\x6a\x5f\xcf\xd6\xb8\x40\x1c\x4a\x0c\xba\xbb\x4c\x6e\x6a\x20\x67\x62\xb7\xa3\x9f\x2c\x54\x55\xd7\x80\x8e\xbf\xbe\xd5\x6d\x67\x60\xa4\x31\xc7\xd2\x0c\x2d\xc6\xef\x1b\x73\xca\xa3\xc4\x94\x88\xe3\x0b\x1c\xa2\x52\x0a\xd2\x0b\x26\xa1\x97\x00\x78\x0e\x5e\xf3\xce\x01\x44\x38\x8d\x84\x07\xb6\xa7\x0c\x1c\xda\x37\xdb\x7f\x12\x09\x1d\x89\x2f\x2e\x91\xad\x40\x78\xbb\x4d\xb1\x76\x2e\x46\x28\x5a\x7b\x66\x4b\x2a\xd3\xa3\x4d\x26\xd8\xa9\x4d\x64\x58\x7a\x84\x52\x77\x22\xea\x83\xcb\x8a\xa8\x89\x84\xe1\x48\x97\x43\xb4\x21\x4e\xa6\x04\x1a\xa1\x8e\x55\x20\x09\x54\xef\xc7\xed\xb3\x19\xdf\x94\x7e\xfb\xfc\x6c\x8d\x0f\xea\x48\xa1\x31\x61\x34\x65\xd8\xf4\xc4\x94\x98\xf2\x26\x91\x45\xc6\xda\xe5\x04\x78\x05\x25\x98\xe1\xca\x3b\xe0\xe3\x36\x11\x57\x1f\xa3\x84\x77\x1e\xee\x40\x2c\xc2\xb1\xd8\x48\x36\xc8\xf1\xad\x28\xf2\xad\x23\xde\xe9\xff\x1d\x7e\x1f\x25\x21\x63\x58\x74\x11\x5d\xef\x4d\x93\xe8\x9b\xe7\x61\x80\xbc\x55\xf7\x61\x14\x43\x60\xa8\xb2\x22\x89\x2d\x64\xd1\x57\xcc\xb5\xd8\xf4\x85\x5d\xca\x56\x70\x14\x95\xa0\xe1\x00\x2d\x34\x0a\x4a\x46\x15\x6b\x9b\x7f\xe0\x6b\x7c\x07\x59\xe0\xb6\xdf\x55\x9b\x69\x1e\xde\x78\xb5\x5a\xf6\x4e\x7c\x8d\xd9\x08\xb7\x88\xdd\x6b\xa3\x5a\x90\x2c\x81\xdc\xeb\x37\x88\xb6\x15\xde\x22\x5a\xfa\x58\xa8\x11\x81\xab\x24\xa7\x37\x05\xee\x83\x8b\x6e\x86\x3f\xe1\xbc\xc2\x6c\x1b\x94\x32\x39\x23\x0c\x27\xc6\xb3\x97\xb2\x3d\x13\xde\x6a\x02\xc9\x7f\x36\x45\xda\x91\xd4\x13\xf9\x16\x47\x3b\x01\x8a\x61\x59\x4b\x6f\x51\xce\xa4\x44\x57\xda\x1e\x3d\xbb\xba\x6d\xe1\x68\x66\x65\x7e\x92\xef\x02\x02\x71\x8a\x84\xad\x03\x33\xe8\x33\x6b\x05\x2b\x00\x47\x33\xe8\xe9\x5e\xc1\x3e\x5f\x91\xb3\x80\x6a\x98\xd3\xdb\x72\x9f\xb7\x35\xb8\x14\x7c\x4a\x98\x2a\x2d\x5b\x4e\xfa\xe9\xc0\x9d\x0a\x9b\xf8\x91\xcb\xbc\x3c\x8f\x53\x1e\x76\xe4\x04\x4e\xc9\x1f\x4d\x7c\x5c\xf7\x73\x10\xe2\xb2\xcd\xe2\xe0\x7c\xcf\x3e\x0a\x19\xdd\x6a\xe1\xb3\xfc\xb2\xdf\x42\x18\x6e\x9c\x72\x92\x2d\x2d\x4c\xe5\x1b\x30\x6e\x81\xb1\x6c\xfc\xf8\xf0\x0d\x51\x3f\xbd\x2c\x52\x39\xb4\x5a\xfc\x65\x4f\x6f\xe2\x1a\xcb\x7e\x8a\x0c\x9a\xa8\x7b\x0b\x60\x50\x74\xdf\x95\x76\xa6\xdd\xd9\x00\xac\xa5\x67\x61\x7c\xb7\x96\x56\xb3\xb5\xec\xb9\xff\x68\xb2\xf6\x24\x1e\xd0\xd0\x24\xac\x27\xaa\x6e\xb4\x86\xb6\x9f\xdc\x0a\x0d\xb9\x20\x96\xab\xf8\x60\x02\xde\xc7\xaf\xd8\x47\xa0\x06\xa3\xf6\x95\x5b\x49\x56\x90\x53\xbe\x9f\x1d\x0a\x49\xb7\x93\xa5\x41\x1e\x59\x16\xf4\x18\xec\xab\x95\x32\x43\x55\x3b\x66\xe6\xba\xdc\x4e\x90\x9b\xe0\xef\x5c\xc7\xc6\xd2\x71\x99\xec\x3f\x21\x42\x3b\xc4\x57\x73\xfb\x40\xb9\x7b\x61\x18\x5b\x57\x08\x0e\x8f\x0b\x89\xa3\xea\x57\xc8\x44\x4a\xb2\x7e\xcf\x70\x06\xa7\x66\x04\x7e\xef\xf5\x4d\x85\x56\xcf\xed\x23\xde\xf1\xda\x2c\xc8\xae\xbb\x48\xc9\x4e\x77\x9e\x82\x03\xae\x2c\x90\x2b\x51\xde\x0e\xde\x04\x56\xfb\x73\xfb\x4d\x5f\x51\x4a\x4c\xeb\xc4\x7f\xec\x3f\x94\x84\x69\xa5\x45\xc6\xbc\x57\xb4\x13\x8d\xb3\x4e\x7c\xc0\x06\xde\x26\xef\x50\x7b\x54\xd2\x81\x47\x56\x7a\x8c\x29\xac\x1e\xce\xf5\xbb\x84\xfb\x99\xac\xeb\x23\xa2\x02\x94\xd7\x4a\x85\xae\x36\xb3\x34\x50\x66\x8a\x5c\x26\x09\xd3\xa9\x39\x34\x58\x6f\xf9\x0c\x3b\x6d\x27\x32\x9e\xee\xf3\xa7\x54\xe9\xa9\xcb\xd5\x61\x7e\xf3\xb0\x93\x97\xbd\xc9\x71\x37\x07\x66\x58\x9a\x12\xd8\x90\x05\x0d\x16\x51\x45\x8b\x3f\xc5\x33\xc8\x43\xbf\xfd\xf9\x75\x4d\x93\x2c\x4e\xd7\x61\x1d\x4d\x27\xc3\x2a\x08\x75\x55\xb5\xea\xa3\x7a\xe9\x0c\x49\x79\xef\x54\x29\x9c\x42\x0a\xb5\xe2\x9a\xe2\x84\x5d\x4d\xcf\x21\x78\x92\x0a\x86\x51\x75\xfb\x9c\xc0\xe6\xb8\xc5\x24\xb1\xee\x49\x58\x05\xd5\x17\xbf\xe0"}, {{0x5c,0x69,0x2c,0x68,0x11,0x98,0xb1,0x72,0xdf,0x2f,0xac,0x2a,0xec,0x3f,0xcf,0x70,0x15,0xc2,0xbb,0x68,0x30,0xf2,0xa9,0x8e,0x30,0xa3,0x96,0xb6,0x4a,0xf4,0x28,0x0e,},{0x33,0xb1,0x69,0xd4,0xca,0x27,0x10,0x40,0x92,0x6e,0xa8,0x78,0x35,0xe5,0x06,0x6f,0x9f,0x05,0x78,0x2f,0x08,0x7f,0xca,0x7a,0x55,0x6f,0x7b,0xf4,0xcb,0xa2,0xe8,0x86,},{0xad,0x8f,0x37,0x9c,0xaf,0x41,0xf7,0x2d,0xcc,0xad,0xc3,0xe9,0x15,0x35,0x7a,0xb0,0xcd,0x30,0x4e,0x10,0xf4,0x12,0x0e,0x0d,0xbb,0xfa,0xac,0x01,0xbf,0xfa,0xf2,0xbe,0x89,0x3f,0x70,0x07,0x2d,0xc9,0x64,0x06,0x91,0x81,0xbe,0xc1,0x7f,0xe0,0x25,0x10,0x55,0xb2,0x1e,0x23,0xde,0xe4,0x36,0x3b,0x27,0xef,0x1f,0xff,0x67,0xaa,0xfe,0x06,},"\xb1\x60\xee\x3a\x93\xcf\x6b\xc3\x45\x6e\x5b\xd0\x19\x7c\x09\xaa\x76\xc2\x25\x80\x52\xf9\xa3\x4d\xbc\x2e\xd5\x89\xf8\xdb\xe5\xff\x99\x69\xa6\x1c\xfe\x84\x6b\x2f\x67\x39\xdc\x7d\x4a\x14\x96\xe9\xad\x58\x60\x5b\x5a\x27\x58\xca\x07\x8c\x55\xa9\xfc\x1c\x4e\xeb\x54\x91\xa8\x4b\xfd\x46\x8a\x2c\xeb\x14\x1a\x77\x34\x93\xa9\xb3\xee\x82\x8b\x5d\xde\x9c\x00\xc2\x36\xff\x01\x56\xe4\xe2\xe4\x5f\xa0\x79\x31\xda\x68\xbb\xd2\x03\x0a\x88\x14\x05\xc4\xf7\x87\x28\x81\x3a\x5e\x04\x81\x24\x04\xc2\xa1\x9c\x9b\x87\xb1\xcf\xe9\xaf\x95\xe2\x73\xec\xf9\xc5\x18\xc5\x39\x35\xf8\x42\x56\x3b\x19\x2f\xae\x12\xa7\x3c\xef\x08\x5f\xe1\x9e\x89\x9e\x5b\xa0\x89\x79\xe3\x11\xfb\x28\x6f\xbf\xc7\xb2\x48\xaa\xbd\x40\xdc\x61\x61\x0e\x1d\x4f\xc9\x80\x6d\xd2\x12\x92\x39\x2d\xb2\xdb\x40\x42\x6c\x5d\x19\x6a\x48\x9c\x5d\xb7\x7e\x3e\x9c\xf0\xbd\x04\x1e\x3c\x23\xb5\xba\x1d\xb7\x81\xa1\x07\x90\xbe\x1f\xe0\x7a\x2b\x00\xca\x3a\xf8\x9c\xbd\x46\xef\xce\x88\x0e\x1e\xf2\x8b\x0c\xd7\x9d\x53\xb4\x2c\xd8\x0e\xaa\x13\x7e\xff\x7d\xf9\x0b\xcb\xcf\x95\xc9\x85\x8d\xc0\xcc\xc6\xd8\xca\x8a\xe3\x54\x7b\xdb\xf9\xff\x90\x24\xf3\xcf\x17\x01\x15\xeb\x28\xbf\x12\xb7\xd3\xb7\x01\x46\x0f\x48\xd1\xb4\xb2\x3d\x7f\x6f\xf7\x2f\xfd\xc9\xa6\xc5\x26\x24\xd1\x53\x12\xd7\xf1\x9d\xdb\x60\x26\xa1\x5e\xb5\x42\x95\xd3\x31\xfd\x79\x50\x91\x03\xbc\x59\xa3\xb6\xe1\xba\x7a\xc8\xc1\x12\xe4\xde\x28\x17\xe5\x1c\x1e\x16\x50\x7b\xa6\x6f\x25\x47\xbc\x89\x9f\x69\xc1\x20\x7a\xe5\xe3\x7b\xdb\x0e\x16\x1b\x15\xb6\x12\x30\x5b\xc0\x94\x0f\x9d\x1b\x38\x2a\x37\xec\x2d\xa6\x39\xa6\xec\xba\x1b\xcd\xfc\x51\x21\x4c\x32\x23\xc1\x1b\xba\xb7\x9f\x3f\xae\x3d\x55\xe2\xd4\xbe\x58\x4f\xd7\x60\x1e\x4e\x2e\x55\x8b\x3b\xe5\x70\x71\x15\xa6\x1f\x5a\x81\x5e\xc2\x4a\xac\x18\x09\x34\x57\xbc\x46\xc0\x5c\xfb\x7a\x3f\x25\x33\xea\xda\xdc\x9e\x6c\x1f\xe3\x10\x77\x9e\x69\x7f\x68\x30\x35\xce\x57\x87\x3d\xf5\x5d\x79\x1f\x6d\x2f\xb0\xe2\x10\x7e\x68\x66\xf8\x39\xc3\xa1\x26\xe9\x02\x38\x65\xce\xd1\xbc\xf6\x77\x99\x55\xaf\x54\x7e\x1d\x87\xeb\x32\xa9\xbf\x32\x28\x57\xfd\x12\x6b\x0c\xdc\x5d\x5e\x90\x4e\xb7\x6c\x67\x06\xe3\xc8\x97\xae\xfd\x6e\x47\x56\xfb\x8a\xca\x81\x70\xca\x5b\x39\x66\x90\x89\xaf\x1b\xb1\x41\xa2\x5d\x6b\x8b\x06\x03\x4d\x8b\x11\xab\xf1\xff\x8f\x8d\x43\x37\x58\x46\xfa\x8f\xa8\xa3\x4b\x5f\x26\x48\x20\x74\x4d\x31\x14\x9b\x7d\x57\x32\x6c\x59\xb1\xdb\x74\x13\x16\x78\xf6\x34\xe7\x23\x2c\xa5\xea\x51\x88\x76\x0a\x70\xdc\x35\xdc\x89\xf8\xe4\x53\xb4\xc6\x5b\x77\x2c\x2b\x6b\x62\x76\x8d\x83\x73\x23\x65\x51\xba\xaf\x24\xd3\xc3\x04\xc4\x1b\x62\xc3\x6e\x6a\x33\x83\xb3\xa1\x63\xb7\x3e\x78\xd8\xba\xdb\x75\x74\x1e\x50\x01\xd4\x19\xd3\x0e\x2e\xd7\x7c\x30\x96\xe8\xd8\xdf\x71\x3b\x93\x76\x2c\x97\x07\xbd\xd0\xf3\x65\xa8\x74\xb9\xda\x8a\xb7\x10\x49\x5d\xd5\x6a\xea\x93\xbb\x77\xfb\x22\x26\x35\xc6\x3b\xce\x9f\x63\xaf\x91\xfa\xc8\x9c\x66\x98\x6b\x8e\x21\x76\xdd\x45\x1d\x58\x33\x94\xc1\x90\x7c\xba\x17\x25\xf0\x6d\x25\xd1\xd0\x91\x2b\x3e\x5c\x6c\x7d\xcd\x34\x35\x8f\xad\x59\xdb\xc6\xf6\xb1\xc2\xef\x33\xd3\xca\x82\xf4\x35\x18\xfe\x4f\xf3\x13\x78\x01\x6e\x57\x8a\x7b\xab\x0b\x77\x67\x6e\xba\xe0\xd4\x8d\x08\x89\xd6\x90\x29\xd2\x09\xf2\x83\xce\x8f\xe0\xec\x23\xcd\x83\x2a\xdc\x12\xa9\xc3\xe3\xae\xc2\xd6\x03\x66\x95\x55\x6d\x93\x13\xf1\x2a\x89\x9d\xd5\x9a\x66\xbe\xf2\x8e\xde\x17\x5f\x8a\xae\xee\xb2\x94\x2b\xb9\x08\x92\xa0\x4b\x44\x0d\x04\xb6\x6f\x5e\xef\xf6\x1a\xda\x72\x79\x02\x94\xce\x55\xc8\x6c\x6d\x92\x78\x5d\xdd\x26\xc7\xa7\x31\x60\x3b\x06\x9c\x60\x3c\x92\xe4\xfe\x8f\xf7\x82\x54\x4c\x8e\x89\xb4\x0b\x8b\x55\xf9\x0e\x2a\x5e\x9a\x0f\x33\xc7\xfe\xc7\x7d\xad\x81\x52"}, {{0x9d,0x5f,0x85,0xd2,0xe7,0xdf,0xd0,0x3b,0xb6,0x89,0xd9,0x00,0x28,0x5f,0xd4,0x46,0x15,0x38,0xa5,0xf2,0x71,0x0a,0x13,0xed,0x21,0xc7,0x75,0xf6,0xef,0xf6,0xb3,0xff,},{0xb8,0x67,0x97,0xe4,0xbe,0x02,0x86,0xae,0x39,0xe4,0x4d,0xf0,0xa0,0x0c,0x01,0x6d,0xb4,0x55,0x5e,0xf8,0x6f,0x2f,0x05,0xd0,0xa3,0xed,0x89,0xd8,0x9a,0x4c,0x3e,0x5e,},{0x17,0x6b,0x95,0x92,0xf8,0xc2,0x51,0x35,0x29,0x2a,0xdd,0x4d,0xaa,0xcc,0x9c,0x4f,0xaa,0x21,0xd4,0xf4,0x9b,0x27,0x84,0x80,0xc4,0xe8,0x88,0x1c,0x01,0x62,0x4d,0xf9,0xa3,0x7e,0x23,0xe1,0x8e,0x84,0xca,0x32,0xd0,0xd8,0xcb,0x85,0x10,0x54,0x22,0x2f,0x10,0xa4,0x95,0x41,0x9f,0x19,0x7e,0x7b,0x3d,0x18,0xdf,0x0a,0xdf,0xb1,0xb3,0x07,},"\xf7\x0b\x5b\x05\x3a\x46\x72\x51\x2c\x24\xb3\x16\x83\x92\xf6\xa1\x7d\xd7\x7d\x86\x89\xc2\x1c\x86\xef\xc2\x58\x29\xa1\xa0\x4f\xab\x4f\x76\xc8\x52\x16\x84\xd3\x20\x10\x45\x59\x07\xa2\x69\x08\x67\x7b\x40\xdc\x69\x47\xd6\x54\xf2\x91\x4c\x30\xec\xee\x72\x4f\xa6\x84\x46\xb5\x9d\x09\x1e\x25\x8f\xc8\x62\x41\x1c\x96\x4d\x66\x8d\xef\x83\x03\x4b\x62\x7e\xd4\x16\xdc\x19\x0b\xb5\xa2\x63\xa6\xff\x8d\x55\x9e\x13\xb8\x93\x62\x25\xfb\x4d\xab\x4f\x7b\xda\x04\x68\xe5\x47\xe7\x08\xcb\x04\xce\xbe\x1e\x5c\xfc\x69\xf7\x6a\x1d\x28\x3f\x28\x16\x82\x86\xf2\x4e\xce\xa5\x53\x5e\x44\x90\xa0\xc5\x55\x67\xa7\x34\x5e\xf9\x53\xce\x42\x6b\x20\x9a\x3d\xe3\xdf\x59\x5e\x80\xee\x61\xe5\x72\xa2\x78\xab\x02\x21\x95\x51\xb7\x3d\xa4\x19\x84\x80\x82\x85\xa8\x35\x98\xa0\x2d\x9b\x28\x67\x12\x10\x00\x4e\x31\xd8\xaf\x92\x42\xc1\x6f\x90\xd5\xea\x8f\x63\xa1\xff\x66\xcf\xe6\x0e\xcb\xe5\x37\x24\x5f\xa1\x2a\x9b\x15\x41\x15\x29\x58\x06\xea\x2d\x11\xf3\x67\x17\x82\xb9\xaf\x4f\xa8\x6a\x12\x88\xe1\x23\xcf\xd2\x40\x9a\x5d\xc9\x8f\x41\xb8\xf6\xdf\x29\x9b\xbc\xc4\xbb\x64\x47\xdc\x03\xa6\xd6\x0e\x9b\x2c\x5b\x8f\xfc\x40\xd9\x83\x95\x6b\xe9\x77\x68\xdd\x06\x12\xd4\x7c\xbf\xa7\x57\x1c\x99\x69\x85\x6c\x15\x2c\xd3\xb4\x73\xac\xe0\xb8\xa1\x44\xaa\xc2\x09\x5c\x0f\x72\xf1\xd3\x14\x71\x52\xb9\x08\xef\x66\x26\xd5\x22\x28\x19\xb2\x0b\xb3\x35\x0a\x46\x45\x2f\x67\x54\x90\xc2\xa8\x21\x50\xee\xc4\x0d\x75\xb6\x6a\x32\x5d\x6e\x92\x9a\x90\x5a\xde\x1e\x31\x60\xab\x95\x01\x81\xef\xc6\x6e\x59\x23\x08\x65\xd5\xe5\x99\x69\x8a\x8a\x3f\xf5\x60\xc4\xc6\x01\xa7\xa9\xa5\xda\x3b\x5d\x89\xbc\xa9\x3f\x7c\xf5\xbc\xf5\xbd\x5e\xcf\xf8\xf1\xa1\x85\xc8\x22\x0e\x4c\x77\x82\x1e\x62\xad\xf9\x5a\x03\x7f\x2d\xf7\xce\xf4\x3a\x4c\x60\xac\x75\x80\x1e\x9f\xcc\xdc\x5b\x08\xee\xd3\x28\xdd\x93\x10\x09\x04\x11\x56\x45\xec\x1e\xe0\x85\xcc\x77\x8b\x0f\x4e\x46\xe1\x72\x98\x98\x4a\x70\x2e\xce\xb3\xe1\x52\x83\xd8\x20\x00\x4f\x74\xa0\x79\x52\x0d\x63\xa7\x5f\xae\x33\xec\x3f\x4b\x83\x64\x69\xe1\xaa\x99\xea\x24\x4a\xf1\xfb\x08\xb0\x0a\x8c\x9d\xfd\x03\x30\x8d\xfc\x20\x23\x5e\xa9\xc8\x28\x3f\x4d\xa4\x7c\xfb\xcd\xbd\x03\x1a\x02\xd1\x64\x16\x0f\x2a\x58\x98\x67\x00\xb1\x95\x26\xd4\x1e\x4d\x7f\xd4\x58\x43\x4d\x72\x64\xbc\x8e\xb6\x42\xe6\xd8\xdd\x27\x59\xce\x2b\x85\xc9\x7b\x37\x02\xe7\x0d\xa7\x1f\x18\xed\xc5\x3e\x91\x40\xa6\x45\x62\x7e\x02\x78\xe8\xe7\x05\x39\x03\x74\x84\xdc\xd1\x8c\x62\xfa\x33\x07\x17\xd6\x14\x8a\x0d\x62\x3f\xf8\xb6\x5e\xa8\x56\x7e\xc7\xfa\x04\xc8\x92\xe3\xa1\xec\xee\x96\xe8\x32\xf4\x15\x50\x74\xc8\x3c\xbc\x93\xe9\x8c\xc6\x7f\x1f\xa1\x12\xaa\x06\xe9\x91\x5f\xa4\xd2\xde\xa9\x31\x55\x1e\x7c\x62\x3a\xa8\xa3\xa7\x61\x9e\xa2\x4f\xf9\x14\xe2\x64\xf3\x1f\xc7\x3d\xfa\x8c\x43\x0a\xc4\x6c\xe1\x6d\xc9\x68\xc5\xa4\x08\x5d\x5c\x38\x0d\x30\xcd\xc6\xf4\x3d\xee\x80\x6f\x38\xd1\xdf\x42\x0a\x06\x55\x74\x14\x47\x37\x05\x6d\xaa\x62\xf0\xc0\x98\xc9\xc5\x2f\xcc\x04\xcc\xa6\x42\xc4\x5d\x68\x73\x45\xa0\x94\x61\x3d\x4a\x3c\x6c\x87\x88\xbf\xa2\x18\x53\x8a\xd7\xec\xe1\xbd\xb6\xc9\x39\x24\xee\xc4\xba\xaa\x3e\xb1\x5d\xc1\x49\x4d\x65\xff\xa1\xa2\x3f\xf8\xe9\x85\x26\x34\x08\xfb\x02\xbf\xe3\x9a\x8c\x55\xb3\x00\xb1\xa0\x2e\xd3\x6c\x67\x14\xdd\x5a\xb7\x50\xd4\x7f\x02\x1f\x65\xe0\x8c\x63\x5f\x1d\x6b\x7b\xaf\x39\x6c\xb4\xf9\x3d\x56\xc1\xca\x46\x1b\xb1\x2e\x94\xde\x7e\x5d\x98\x65\x9a\x8a\xf0\xbf\x01\x9f\xc4\x22\x80\xe1\x11\xe0\x48\x00\xff\x80\xe0\xc1\x57\x15\x0e\x16\x56\x09\x45\x42\x81\xb2\x00\x07\xe3\xed\xfa\xa1\xea\x85\x44\x65\x54\x7a\x00\x6a\x4c\x32\x36\x41\x14\x95\xda\x16\x60\x98\xaf\x28\x23\xa4\x59\xcf\x10\x0a\x1f\x3c\x92\xc6\x39\x0c\x60\x66\xcd\xbf"}, {{0x4a,0xaf,0x2d,0x13,0x28,0x84,0xf3,0x0d,0x11,0x27,0xcf,0x18,0x7e,0xe0,0x93,0x88,0xb4,0xa5,0xc4,0x4a,0x9a,0x92,0x67,0xe6,0x72,0x83,0x17,0x39,0x89,0x51,0xfb,0x61,},{0x83,0x72,0x7e,0x92,0x57,0x34,0x91,0x28,0x55,0x9e,0xbf,0x75,0x9f,0xdc,0x82,0x12,0x2c,0xce,0x76,0x74,0x66,0x39,0xc0,0xad,0xa9,0x76,0x1f,0x0d,0x60,0xb9,0x40,0xb1,},{0x5f,0x11,0xdf,0x39,0x06,0xa7,0x12,0xa9,0x53,0xf4,0x7c,0x85,0x98,0x06,0xb5,0x23,0x73,0x58,0xd0,0x8b,0xa9,0x5e,0x49,0xf9,0xe5,0x30,0xa3,0x71,0x65,0x83,0x5e,0x93,0x59,0xd9,0x76,0x9d,0xc2,0x1f,0xbb,0x4d,0x44,0x49,0x7b,0x93,0x90,0x5b,0xca,0x8d,0x99,0x17,0xc7,0x28,0x49,0x3f,0xee,0x3a,0xcd,0x5b,0x52,0x1d,0xbd,0x1e,0x24,0x08,},"\xd7\x3e\xaf\x11\x41\x3b\xf4\xd5\xbc\xcf\x6a\x2e\x80\x9c\xd6\x83\x2a\x51\x82\x3a\xa2\x2b\xd1\x6e\x09\xcf\x56\xff\x04\x5e\xef\x2d\x1a\xda\xdd\xa5\x0c\x2e\xbd\x67\xbb\xc4\xd7\x0e\x49\x3c\x96\x8c\xb4\xde\x49\x77\x06\x5d\x44\x63\x30\x06\x94\xc9\xca\xa5\x72\x06\xd6\x66\x46\x93\xd8\x46\x2c\x3c\x57\x6b\x52\x5c\xc7\xac\xf7\x9f\x26\xf9\x05\x5a\x1b\xcf\xa7\xd0\x77\xf4\x5e\xbe\x0b\x2d\x48\x1e\xbd\x63\xf7\x34\x0a\x33\xe4\xab\x68\xf1\x60\x49\x75\xec\x1d\xfe\xc4\x5a\x79\x1a\x2a\xbb\x10\x44\xd7\x5a\x4d\xb5\x5a\xdf\x59\xb8\x39\x4e\xbd\xe6\x82\x4c\x21\x14\x5b\x00\xef\x3b\x1b\x08\xed\x11\xfd\x51\xdd\xa5\x14\xed\x7e\x21\xe5\x4d\xba\xf6\xab\xb6\xd9\xe3\x17\xfc\xf9\xfd\x37\x5b\x18\x76\x4e\x64\xac\x9b\xe5\xb0\x8f\xec\x3b\x78\xab\xba\xb1\xd1\x2a\x2a\xb0\x9d\x55\x9a\xcd\xc7\x13\x3f\xb2\xe0\x00\x8e\x0c\x11\x4b\x7c\xad\xb4\xbf\x76\x30\x78\x67\x4d\x03\xe9\xc8\x07\xbe\xc1\xe2\xca\x71\xad\xcd\xaa\x31\x0d\x58\x7f\xa5\x69\x50\xfc\x0f\xb2\xe9\x79\x04\x3d\x50\xf9\xae\x23\xfa\x8f\x82\x1c\xd9\xd6\x23\x27\x89\xd0\xee\xcc\xfc\x4f\x47\xe3\xad\x80\x4e\x25\xcf\x5a\x42\x5f\x94\x37\x7d\x17\x87\x48\x33\xe6\xae\x36\x38\x17\x8c\x78\xb7\x95\x19\xd6\x4d\x97\x93\xf4\x50\x46\x06\xa0\xea\xb6\x87\x07\xf6\xe1\xf7\xcc\xcb\x51\x5b\xe3\xd1\x20\x1b\xcd\x19\xf2\xf0\xe2\x55\xc7\x22\xea\xb1\x2b\x43\xaf\xf8\xc8\xc5\x56\x11\x25\xfb\xca\x1f\x65\x42\x07\x6a\x06\x15\x2e\xb7\xe4\xb0\x78\x63\x24\xc2\x49\x5e\x79\xd7\x9c\x0a\x8e\x29\x5b\xb2\xe3\xdf\xd0\x5a\x90\x33\x19\x00\x65\xa2\x84\x55\x2a\x6e\x73\x60\x06\xac\xe4\x1f\x97\xcc\x43\x4a\x25\x12\x05\x1b\x72\x7c\xe5\xbc\x9c\x4a\x75\x52\x9e\xc5\x3d\xd7\xd1\xf1\x26\xe7\x93\x85\x77\x47\xb5\xba\x8d\x03\x15\x5d\x45\x55\xf5\x9e\x8b\xaf\x2f\x0c\xdb\xa8\x71\xac\x16\x0e\x75\x19\xa8\x52\xdb\x00\x4f\x70\x16\x41\xa4\x0a\x42\x2d\x4c\x38\xb6\xc0\xc3\xcc\x8f\xbb\xd0\x53\x22\xdd\xc0\x00\x1f\xb8\x67\x28\x6e\x29\x6c\xbd\x69\x86\x2c\xbc\xcc\x74\x47\x03\x8e\xb3\x0f\x8a\x81\x23\xb7\xb3\x13\x73\x98\x47\x02\xc3\xbe\x45\x7a\x4b\x8c\x54\xe6\xe5\x28\x04\x85\xa2\xc4\xff\x84\x52\x1f\x29\x8d\xde\xb3\xb3\xb2\xbc\x91\xf1\x14\xdd\xce\x67\x03\x02\x48\x04\x44\x69\xdc\x06\xf3\x62\xf2\x91\x9a\x3f\xec\xe5\x08\x23\x75\xd0\x40\x80\x37\x6f\xe2\x19\xd9\xb4\x57\x5b\x1c\xf1\xc9\xec\x4d\xca\xc5\x74\x9f\xc7\x78\xf5\x15\xdd\xa1\x3f\xa0\xd5\x86\xc2\x64\xb9\xbb\x61\x50\x33\x10\x76\x2c\x78\x9c\xa1\x16\x08\xd2\xfe\xe6\x74\xc7\x0a\xc4\xfc\x6d\x5e\xbc\xf6\x8c\x4a\xb8\x9b\xd8\x45\x55\xfc\x00\x75\x23\xc2\x8a\x7e\x1d\xd0\x8a\x98\x62\x04\x4d\x52\x45\xb9\x1a\x87\x78\xec\x9e\xe9\x84\xa4\x1a\x9e\x13\xb7\xab\xd6\x57\xae\x2a\x46\xae\x86\x01\x52\xc6\x44\xac\xd9\x53\x67\x67\x8f\xf6\x4c\xc5\x40\x06\xe3\x66\x14\x80\x5e\xd6\x18\xa7\xc6\xd0\xfd\x33\xa9\x08\x52\x30\x90\x84\x1c\x23\x0a\xf0\x98\x46\xd1\x32\xbb\x4c\x6b\x60\xe2\x44\x1f\x9d\x3c\x49\x87\x14\xf4\x70\xf6\xbc\x03\xa8\x0d\x14\xa2\x94\xb5\x65\xd1\xd5\xe7\x81\xcf\xfc\xb1\x30\x4e\xfd\xbb\xc7\xbf\xea\xbd\xed\xc8\x57\xac\xc4\x2e\x27\x62\xbb\xf9\x7a\xf8\x39\xa1\x66\x75\x2d\xa2\x95\x67\x28\x17\xf1\x0d\xbd\x47\x2d\x38\x1f\x53\x16\x55\x55\xac\x82\x22\xa7\x85\x35\xa8\x68\x05\xf1\xbe\xd4\x22\x88\x9f\x20\x61\x09\xaa\x74\x77\x2e\xdc\x0b\xb5\x1e\x8a\x98\x40\xcf\x62\xc9\x2f\xa6\x35\xb9\x0c\xae\x07\x6d\xd5\x0e\x5a\xed\x9d\xea\xc8\x43\xfa\x8a\x6b\x53\x99\x88\x28\x5f\xf1\xad\xab\xe4\xc7\xb8\x3d\x9e\x29\xac\x2d\x94\x09\x2d\xaa\xfe\xc9\xf6\x67\x36\x89\xba\x9e\x92\x52\xd8\x64\xd7\x57\x7a\xa8\x95\x05\xd3\x31\xfe\x78\x09\x86\x12\x77\x00\x2a\x0b\x44\xa9\x6b\xa6\xae\x4a\x52\xb3\x54\x8b\xf2\x68\xe7\x77\x78\x0c\x00\x20\x9b\x24\x5f\x8b\x14\x17\xee\x5e\x70\x1a\x12\x33\x4a\xd5"}, {{0x4b,0xc7,0xda,0xab,0xc5,0x40,0x7c,0x22,0x6d,0x19,0x20,0xdb,0x4a,0xfd,0x21,0xb2,0xa5,0xb3,0xe5,0x9b,0x8e,0x92,0x46,0x05,0x3f,0x6a,0x1a,0x6a,0xfa,0x54,0xe7,0xe7,},{0xdc,0x53,0x98,0x85,0xfc,0x7b,0xee,0x00,0x2a,0xc5,0xde,0xba,0xe1,0x6b,0xdd,0xbe,0x4b,0x55,0x3f,0xa1,0x5e,0x81,0xee,0x79,0x88,0x76,0x94,0x0f,0x38,0xcf,0xc4,0xc5,},{0xa7,0xa6,0x48,0x88,0x39,0xbb,0xae,0x04,0xde,0xc9,0x2f,0x96,0xd7,0x28,0xc4,0x64,0x68,0x5d,0x7a,0x96,0xdf,0x51,0x2b,0x00,0x51,0x16,0x3d,0x22,0x53,0x8f,0x74,0x54,0x6f,0xa9,0x86,0xb1,0xb6,0x0a,0x6d,0x8c,0xc7,0x66,0xa2,0x6c,0x69,0x84,0xc9,0xcd,0x26,0x88,0x39,0x58,0x98,0xe2,0xb2,0xae,0x72,0xdc,0x6a,0x2d,0x5a,0x9f,0x75,0x0e,},"\x6a\xcc\xe9\x98\x43\xb2\x41\xaf\xe6\xed\xd5\xd0\xab\x78\xd0\xfb\x21\xc8\xc3\x5a\xff\x88\x13\x89\xd5\x05\xf2\xf1\xdd\x91\xaf\x1e\xb2\xad\x22\x92\x54\x92\x7c\x7f\x0e\xcf\xb7\xa8\x14\x16\x90\x57\x3a\x65\x5d\x69\x85\x3d\x74\xd0\x70\x8b\xf8\xb1\xe6\x0a\x03\x96\x30\x28\xa6\x25\xb7\x9f\x3d\xfe\xa2\xb1\x13\xff\xca\xb4\x6f\x3c\xfd\x4a\x62\x1e\x8f\xd8\xff\x0a\x96\x81\x43\xb0\xae\x03\xcc\xb6\xf4\x2e\x25\xe2\xd7\x4d\xbf\x51\x5b\xc3\x58\x69\x9b\x63\x50\x09\xb0\x1d\x61\xfe\x59\x7f\x1d\xc2\xc3\x5a\x7b\xa4\x55\x52\x78\xee\x0e\xa4\x56\xc7\xd3\x5f\xa8\x75\x7a\x41\x79\x24\xb1\xd0\xa8\x35\x1f\x22\x6a\x13\xec\x29\xd0\x25\xb4\x26\x96\xec\x1d\x99\x25\xb7\x69\xcd\x59\xc8\xe2\xf9\xcd\x3c\xe4\xe5\xc0\x20\xe0\x51\xe7\xa3\x6f\x3f\x97\xc1\xe8\xec\x71\x97\x4b\xc1\x6a\xc4\xde\x46\x51\xad\x4d\xf2\xe9\xc0\xee\xd6\x86\x92\x42\x24\xfe\x6d\xe6\xc6\x0d\xd4\xac\xc2\x6e\x0a\xab\xd8\x0c\x21\xd5\x09\xd9\x59\xb8\x0b\x43\x53\x95\x8d\x00\xe4\x4c\x51\x1d\x23\xbc\xf4\x45\x52\x60\x8b\xfa\x56\xa9\xc5\xae\x79\xde\x62\xbb\x23\xf1\x1d\x74\x0f\x48\x24\x0c\x27\xe1\x01\x99\x97\x51\xf2\x53\x47\x42\xc0\xa6\x91\x3f\xf6\x4b\x68\x3a\x18\x99\x5a\xbc\x39\x3f\xeb\x9d\x57\xc7\x1f\x49\xa0\x80\x55\x72\x98\xcc\x40\x5d\x11\xb7\x98\x8d\x71\x16\x84\x0c\x5a\xda\xf5\x3b\xc6\x72\xb4\x69\x23\xcc\x45\x7c\x70\x39\x94\x0a\xd4\xd5\xbf\x07\x3c\x6c\x88\x6b\x13\x39\x52\x59\x26\xd2\x81\xdb\xd1\xa7\x97\x39\xb2\xe3\x64\x14\xcb\xd3\x21\xb1\x85\xfc\x88\xf1\x8d\x2f\x81\xc8\x09\x97\x5b\xe9\xa0\x93\x64\x4c\xc5\x59\xed\x2a\xe5\xcc\x0e\x35\xcb\xdd\x18\x11\xf7\x02\x86\x05\x7a\x3f\x70\x30\x67\xed\xdd\xf5\xeb\x16\x90\xa7\x42\x7b\xb7\x3f\xe3\x02\x4e\xd0\xdb\x82\xa5\xce\x8f\x17\x16\x42\x8a\x76\xfd\x29\x2b\xa9\x9a\x30\x0c\x4b\x2f\x36\x0d\xa2\x12\x46\x17\x59\x0b\x10\xe3\xb1\x62\xa6\xe6\x7d\xd5\xd5\xa5\x9b\xcc\xa1\x0f\x61\x0f\xa0\x64\xaf\xfd\x55\xf8\x48\x3b\x98\xa6\x8d\x07\x6f\x27\x8a\xbf\x88\x8a\x08\xa0\x14\xe0\xea\x49\x91\x80\xfb\xc7\x98\x40\xce\xed\x13\xcc\x6b\x24\x58\xbf\xab\x9b\x0d\xd7\xae\x9d\x86\x46\x1f\xe2\x15\xe7\xc9\xf6\x3f\x76\x8c\xee\x4a\x88\x2d\xf0\xdd\x84\xe3\xeb\x4f\x2d\x7f\x6b\x18\xfa\x57\xd8\xbc\x7d\x9a\xfb\x63\xc2\x1a\xc4\x65\xe7\x90\x3b\x9b\xfb\x86\x38\xa2\x93\x61\xf7\xeb\xfc\x6e\x54\xe5\x46\x5a\x6c\xef\x46\x3a\xe2\x26\x43\xae\x41\x02\x58\x77\x9c\xa7\x4b\x70\x40\x1a\x94\x55\xa4\xd1\x57\xd7\x4a\x70\x29\xef\xe6\xb5\x19\xa8\xc4\xbe\x69\x67\x56\xe0\x45\xae\x40\x81\xb7\x7d\xd6\x03\x1f\x0d\x25\x0f\xa7\x61\xe6\x0f\x85\x9d\x90\x63\xfc\x10\x5a\xa0\xa1\xa7\x45\x0a\xf1\x53\xe7\x05\x47\x77\x77\xc4\x42\x58\x6d\xf4\x07\x40\x2b\xa2\x38\x75\x2f\xae\xf7\x4f\x33\x45\xc2\x6a\x45\x33\xbe\x9a\x61\xf5\xfc\x6b\xde\x48\xe3\xcb\xa7\x5c\x04\xd6\xf7\xb3\x33\xe3\x70\x06\xdd\x0c\x94\xfd\x3b\x6a\x13\x0b\xd6\xfc\xdb\x3c\x6a\xbe\x21\xca\x60\xeb\x43\x1c\xc2\xd8\xa2\xec\xe7\x16\x9d\x2d\xcf\xce\x27\x60\x82\x56\x57\xfd\x4c\x26\xf3\xc3\xb8\x30\xac\xdf\xd5\x08\x01\x1d\x14\x76\x4b\x3b\xe9\x17\x15\x57\x1a\x31\x83\x01\x8e\x0d\x22\x1f\xb9\x53\x2b\xb2\xe1\x71\x1e\x72\x5a\x27\x3a\xe0\xcc\x2f\xac\xcb\xa7\xd5\x50\x49\x29\x45\x9c\x99\x25\x17\xb0\x5c\x1d\xdd\x03\xaa\xcc\xd9\x37\xb8\x6e\xb6\x7b\xc8\x20\x2d\x01\xca\xb3\xd4\x89\x58\x6e\xea\x1a\xcc\xa7\xdc\x20\xcd\x0b\x64\x75\xc2\x58\xff\x67\x36\x61\x49\x6a\x22\xea\x96\xb8\x9d\xb4\xbf\x3f\xca\xae\x3b\xb0\x4f\x67\xdb\x09\x6a\x47\xff\x7e\x1e\xe2\x39\x56\x2d\xc1\x0d\x40\xf0\x53\x94\x4f\x3d\x7b\xcc\x3f\xf4\xc0\xff\x76\x56\x54\xba\x5e\xa6\x4f\x0e\xa6\x3e\x45\xa2\x1d\x9b\x12\x94\x9f\x14\xf7\xea\x70\x74\xe9\xb6\x59\xc5\xc5\xd4\x48\x16\x84\x2d\xe8\x96\x98\xa8\xfc\xca\xce\x43\xeb\x6b\x41\x35\xe0\xb3\x33\xac"}, {{0xf2,0x6a,0xf2,0x10,0xe3,0xb2,0x01,0x73,0x99,0x0c,0x77,0x45,0x92,0x2c,0xdf,0x94,0x24,0x77,0x3a,0xbb,0x37,0x4d,0x77,0x7a,0x51,0x2c,0xf5,0xb9,0x7b,0x3a,0x00,0x0d,},{0x54,0x58,0x6a,0xbf,0x04,0x11,0x76,0xe0,0x6a,0xec,0x5b,0x60,0x10,0xe1,0x90,0x91,0x6d,0xa5,0x4a,0x8c,0x4b,0xde,0x28,0x8c,0xf2,0x4d,0x8c,0x10,0x7c,0xb3,0xb7,0x30,},{0xce,0x45,0x45,0x30,0xb9,0x22,0xba,0x5e,0xa1,0x62,0xf1,0xa4,0x52,0xe0,0x5c,0x00,0x36,0x3a,0x49,0xa9,0xdb,0x8a,0x56,0x94,0x97,0xc0,0x0c,0xaf,0x1c,0xbe,0xa9,0x91,0x80,0x77,0x05,0x54,0xed,0x4e,0x31,0x40,0xdf,0xca,0x45,0x55,0x15,0x9e,0xbf,0x48,0xef,0x5d,0x2a,0x50,0xf3,0x94,0xae,0xbd,0x78,0x21,0x16,0xed,0x65,0x69,0xa4,0x09,},"\x88\xe2\x6d\xa3\x5c\x54\x88\x4b\x47\x14\x6f\x4e\x3f\x01\x4a\xb6\x5b\x3d\x71\xaa\x7e\x3c\x33\x91\xad\xbe\xb1\x9e\xf2\xe7\xb9\x30\x2e\x28\x19\x91\xb2\x61\xb6\xa0\x99\x2e\x2e\x89\xa4\x9f\x48\x0c\xa2\xd8\xe6\x84\xb1\x2f\x9b\x15\x09\xb3\x8f\x6a\x7a\x98\xa5\xdd\xb4\xc2\xd8\x69\xfd\x03\x18\xe9\x8e\xcd\x8f\xd9\xdf\x49\x1b\xaf\x99\xa9\x29\x4d\xe4\x9e\x1c\xf8\xdd\x41\xee\x85\x73\x0a\xf0\x25\xa7\x01\x14\x3e\x4f\x0c\x8e\x3d\x92\xd5\x5b\x59\xca\x7d\x4a\x6c\x89\xad\x76\x0d\xff\xc0\xc2\x18\x92\x09\x50\x8e\xf6\xc2\x21\x4e\xdf\x99\x67\xb1\x7d\xef\x12\x3d\x86\x92\xc9\xe4\xe2\x0b\x1e\x98\x26\x88\x08\x70\x4f\x5f\x9f\xe1\xa6\xd6\x05\x5e\x32\xc8\x72\x56\x4b\xd1\x7e\xdb\x73\x59\x57\x86\x29\x01\x7f\x0c\x30\xfe\xab\x8b\x50\x4e\x22\x89\x23\xad\xc7\xe8\x1a\xe2\x0a\x85\x2d\xb0\xad\x67\x6a\x78\xe0\x81\x33\x6d\x6b\x04\x02\xf9\xcd\xc5\xd5\xe9\x01\x28\xca\x94\x5d\x10\x51\x5c\xa0\xc5\xef\x03\xf7\x31\xb1\xd4\x0a\x71\x07\x41\xd4\x1c\x1d\xd1\xca\x16\xb1\x06\x0f\xeb\xf2\xa0\x53\x2e\x6f\x5d\x76\x51\xef\x44\x63\x75\xec\x18\x09\x0c\xb8\x41\x8b\x82\x02\xf2\x5a\x03\x89\x03\x1b\x30\x7f\x22\x3c\x5b\x5f\x6a\xfe\x36\xa9\xad\xc1\x06\x8f\x2c\x6e\x0e\xa5\xb2\xb6\xcf\xeb\x8d\xc0\x04\xf7\xb8\x29\xc8\x04\x39\x06\x9b\x81\xa7\xbd\x90\x74\x77\xc6\x13\x5e\xf2\x82\xb7\x71\xf1\x41\xdb\xe7\x5a\x0f\xa0\x56\xe0\x6b\x8a\x1a\x1f\x98\xc2\x5f\xa5\x4d\x14\xc8\xfd\xb4\x2d\x65\x02\x59\x5c\x59\xd2\x5b\xac\xf1\xa1\x9a\xde\xfc\xc1\x31\x70\xf7\xa4\x31\x7b\x6a\xb6\x10\xb6\x09\xd4\x14\xb0\x07\x3e\xa0\x4a\xc2\x9e\xb1\x0e\xe7\x3c\xd7\x1a\x4c\xa6\x04\x09\xf8\xe7\x60\xe6\x0f\x93\x95\x10\x10\x0d\x0c\x8c\xd7\x6f\x26\x4b\xb3\x78\x11\xf9\x7a\xa5\x29\x9a\xc0\xb1\x2d\x41\x68\xff\x38\xec\xdf\xa8\x0b\x1e\x5c\x1b\x3b\xbd\x4d\x40\xd3\x54\x47\x35\xdf\x71\x67\xeb\x15\x8a\x9a\x9a\x23\x4d\x44\x5f\x1d\x66\x3d\xed\x71\x71\xed\xc6\x8d\x17\x2c\x92\x21\x4b\x82\xef\x13\xfe\x6b\x8c\x43\xaa\x89\xb7\x39\xb4\x99\x0a\xe9\x47\xa3\x4f\x02\x0a\x8d\x89\x43\xb0\xf7\xa5\xd6\x1d\xfa\x76\xad\xde\x02\x72\xe9\x8c\x11\x59\xc0\xfd\x8a\x1d\xe3\x3f\x2c\xef\x8e\xdd\x32\x85\x7b\x21\x89\xed\x96\x12\x80\x57\xeb\xde\xa8\x1f\x7a\x3a\x3d\xff\xe1\x89\x3b\x5b\xa8\x77\x55\x6c\x90\x38\x3f\xa2\xc5\xa6\xfd\x68\x0e\x8a\x67\xde\xe4\x80\x2d\x90\xdf\xe9\x71\x62\x3a\x7b\xe2\x2a\xb3\xca\x56\x06\x7b\x1e\x5c\x69\x4a\xa8\x4c\x19\xf1\x6d\x69\xe2\x84\xdd\xfa\x03\x9c\x10\x8d\x04\x35\x81\x38\x12\x39\x0d\x8e\xbc\x1e\x50\x13\x81\x76\xf2\x59\xdc\x0f\x26\xbc\xa1\x3b\xc9\x43\xf5\x0d\x5a\x35\x00\xb1\x8d\x59\x35\x74\xc6\x20\xfc\x09\x7a\xce\x43\x0f\xb8\x07\x28\xd3\xa1\xaa\x64\x4e\x50\x4b\x10\x09\xad\x67\x53\x6c\xeb\x01\x1f\x2a\x35\x7d\xbd\x00\x9e\x4a\x63\xf5\x24\xd5\xb5\x95\x7f\x33\x15\x67\xc5\xb4\xd1\x85\xa6\x1d\xf2\x2d\x70\x71\xd3\x1a\xe9\x21\x41\xe1\x99\xc1\x22\x89\x51\x5a\xed\x80\xc9\x10\x21\x45\x6b\xcd\x45\xcc\xc6\x34\x03\x7d\xcf\x69\xb4\x1d\x6b\x1f\xf5\x34\x71\x01\x0d\x99\xf1\x87\xf0\x46\x54\xf4\x36\x22\x28\x78\x71\xfe\xe6\xdc\xf5\xf3\x02\x3c\xbd\x09\x13\xd9\x9a\xff\x43\xfa\x95\xb3\x2e\xa2\xb1\x33\xb4\xc9\xac\x4b\x01\x7b\x7c\xf8\xf9\xbe\x50\x86\xfe\x92\xb4\x2c\xb8\xdb\xed\x5b\x63\x0b\xf0\x97\xc1\x8e\x2e\x55\xc3\xdd\x93\x27\x1e\x09\xc2\xd1\xcc\x6a\xf8\x7d\x83\xfd\xef\x3c\x3e\x3c\x4c\xba\xfb\xea\x9b\x60\xfd\x5e\x9c\xf0\x01\x1d\xe2\xe9\xe2\x6f\xbf\x09\xaf\xee\xf5\xc6\x98\x02\xa6\xc4\x6b\xdf\x54\xc1\x45\x86\x29\x44\x17\x3e\x01\x7e\x30\x14\x9e\xa5\xc0\x3c\x7a\xef\xa2\x8a\x9c\xac\x77\x67\x00\x2e\xa3\xfe\xfb\xde\xae\x5b\xae\x00\x5c\x37\x0d\xbc\x06\x42\x44\xd5\xb9\xbe\x55\x00\xa3\x57\x26\xa9\x9b\xc9\xe8\xc2\x75\x2d\x51\x0e\x13\x9a\xf2\x25\x58\x00\x98\xc8\x18\x9a\xa9\xc5\x20"}, {{0x39,0xbf,0xfe,0x00,0x7f,0x8d,0xf7,0xce,0x4e,0x56,0xfd,0x17,0x6b,0x10,0x2b,0x92,0x3b,0xa4,0x8a,0xeb,0x82,0x69,0xfd,0x0c,0xd5,0x20,0xc2,0x3a,0x7b,0x23,0x6e,0x6c,},{0x95,0x32,0x63,0x68,0x00,0x01,0x0b,0x3d,0xd4,0x01,0x2e,0x34,0x1f,0xca,0xd6,0xd2,0x9a,0xfa,0xd4,0x84,0xe6,0xfd,0x73,0x6e,0x89,0xd5,0xbc,0x02,0xba,0x0a,0xc8,0x53,},{0xa2,0x7c,0xca,0x4b,0x9f,0x5b,0x95,0xad,0x0e,0x44,0xe4,0x74,0x0c,0x15,0xde,0xae,0xb9,0x3f,0x22,0xa9,0xb2,0x54,0xeb,0xbd,0x23,0x29,0x36,0x5a,0x00,0x96,0x6c,0x9f,0x4e,0xc1,0xe5,0x5c,0x58,0x94,0xe7,0xbf,0xc2,0x3d,0x39,0x8d,0x39,0x70,0xb9,0x46,0x5e,0x98,0xa8,0xd2,0x3e,0x72,0xda,0xe8,0xe3,0x50,0xda,0x35,0x31,0xae,0x69,0x08,},"\x7a\x8c\x20\xbf\x2e\xff\x69\xaf\x8b\xad\x6b\xdf\xab\xc7\x90\x9c\x58\xce\x74\x6c\xc4\xdf\x78\xb6\x9b\x33\xc1\x05\xba\x3b\xd8\xda\x75\x24\x47\x58\xb5\x17\x2d\x5c\x45\x01\xbc\x39\x97\x01\x85\xee\x3d\x43\x70\x83\xa9\x95\x9f\x81\xe7\x66\x5b\x82\x9a\x69\xa5\xd7\x2e\x03\x4d\x35\x1a\xdd\xdc\xeb\x3d\x3f\xff\x58\x99\x88\xdf\x18\x2b\x46\xfa\x53\xd2\x6e\x7c\x9e\xac\x06\x22\x15\x78\x8f\x23\x37\xbf\x90\xf0\x17\x7d\x8c\xa7\x44\xf9\x5f\x28\xfe\xa8\x54\x59\x3c\x43\x62\xc8\x2e\x9d\xed\x19\xb9\x04\xff\x99\xd2\xbe\xa8\x24\x32\x82\x2e\x52\xc3\xda\x6d\x46\x2d\xa7\x54\xff\x1f\x8b\xd1\x09\x94\x2d\xf5\x1d\xba\x25\xb7\xcd\xe8\x38\xd5\xf5\x24\x23\x9f\x13\x31\xf4\x63\x19\x4e\x10\xff\x56\x79\x5b\x29\x68\x78\xfe\xb1\xf5\x5d\x43\xec\x7d\xaf\x0c\xa5\xab\x3d\x68\x4b\x55\xbb\x0a\xa4\xc7\x20\xd4\xb5\xc2\xe8\x30\xc8\x58\x69\x4d\x3d\x0f\xdb\xaa\xd0\xbf\x67\xd8\x73\x18\x2d\x95\xb2\x41\x2f\xce\x5e\x7b\x00\xfa\x6b\xfc\x38\xb1\x32\xef\xb9\x6f\x87\xbc\x6c\x10\x07\x0a\x57\x16\xec\x9b\x33\xa2\x69\x2c\xdf\x5b\xc4\x1c\x7f\x73\x7e\x28\xc4\x22\x03\x17\xa4\x89\xb7\x32\x3d\x5e\x20\xf6\x5d\x37\x5d\x76\x9f\x9e\x79\x37\x6f\xd0\x2d\x85\x36\x86\x71\xe7\xe0\x81\xeb\x75\x3f\x88\x85\x45\xeb\xe5\xc0\x00\xb2\xf8\x01\x43\xeb\x35\x8d\x43\x18\x5e\x2f\x1c\x29\x4b\x9f\x29\xc8\xbb\x91\x48\x2d\x43\x87\x49\x4a\xad\x17\x6d\xeb\x85\x54\x0f\xd0\x05\xc9\x7d\x13\xe6\x66\x3f\x09\x94\x4e\xb4\x3a\x46\xe6\x23\x67\x94\xbf\x6e\x21\xf8\x1d\x0a\x42\x09\x0f\x9c\xce\xf9\x0a\x6c\x48\x07\xb5\xff\x54\x13\x00\xe5\x93\x48\x81\xa8\xd9\x21\x96\xb4\xce\xe8\x5d\x28\x09\x2a\x82\x8e\xa3\xbf\xc6\xb7\x45\xad\x21\x9b\xe9\xf5\xe9\x57\x41\x17\xd0\x79\xe0\x2f\x4b\x74\x8e\x2c\xc0\x1a\x32\x82\x6a\x37\x08\x23\x19\x14\xd2\x77\x2c\x76\x41\x19\xfd\x99\xd5\x3a\xb5\xb5\xa2\xe9\xd8\x91\xa4\x8a\x9a\xaa\xac\xc2\x63\x38\xb1\x82\x48\xdb\x8a\xb2\xd5\x25\xda\xf1\x5f\xf5\x3a\xcb\xc3\xaa\x98\xd4\xf2\xd4\xa3\x37\xbb\xaf\x6d\x1b\xe2\x19\x85\xa4\xaf\x60\x0e\x29\xbb\xb4\x2c\x8d\x89\xe6\xb3\x89\xc6\x6f\x42\x27\x0c\x3a\x0b\x05\x1b\xdb\x62\x38\x81\xe0\x2f\x2f\x42\x94\xce\xc3\x47\x63\x86\x74\x7a\xba\xe6\xc7\x70\x0b\x8f\x9b\x03\x87\xcd\xdf\xb7\x36\x68\xfb\x57\x69\x3d\x84\x74\x19\x6b\x33\xab\xd1\x2d\xce\x59\xa5\x7c\xf7\x2e\xe6\xcc\x1d\xdb\xaa\xdf\xb1\x9e\x90\xaf\x81\x31\xb3\xa9\x0f\x98\x67\xf4\xc7\xe1\x5b\xdf\x9e\x21\x84\x77\x01\x6b\xd0\xad\x3b\xe8\xdd\x05\x96\x71\xff\x65\x6c\xbd\x4e\xd8\x98\x08\x6d\xe4\xd4\x23\xf3\xdf\xb2\x70\xbb\xf1\x9d\x9f\x53\xf7\xf6\xf2\xd2\x2c\x6a\xc9\x02\x5c\xba\xdb\xa4\x42\xe3\x1d\x98\x11\xe3\x7e\x84\x7d\xbd\x48\x4d\x80\xcf\x74\x30\x39\xff\xa7\x04\x84\x70\xfb\xdc\x60\x80\xf6\xd3\x81\xdc\x7e\x3f\xa2\x71\x22\xdf\x53\xcc\x06\x39\x4e\xa6\xfc\x44\x6e\x1b\xa7\x25\x38\x73\x3e\xd3\xab\xb6\x85\xf1\x6d\xfd\x5c\xcf\x58\x5a\xe8\xfb\xf9\x95\x4b\x50\xf1\x0b\x7e\x54\x32\xa2\x2b\x36\x94\x06\xa9\xb7\x08\x89\x61\xf0\xae\x20\x74\x95\xae\x71\x85\x39\x6d\xcc\xf2\x92\xdc\x46\x3f\x41\xf3\x76\xa1\xca\x89\xee\xfb\xae\x19\x26\x91\x52\x03\x1b\xfd\x81\x52\x88\xe8\xb5\xba\xf3\x48\xc4\xf8\xff\x3d\xff\x4f\xd6\xd1\x08\xf8\x71\xda\xa3\x52\x11\x0f\xa6\x41\x88\xb0\x1b\x85\x26\xa8\x45\xaa\xed\x13\x3e\x45\x6b\x4c\x83\xc4\xfd\x4b\xbb\x16\x5b\x40\x90\x30\x7e\x8e\xb1\x7d\xf1\x76\xc3\x22\x52\x0f\x37\x59\x9c\x21\x05\xaa\x81\x20\x75\x83\x94\xa4\x22\x24\x73\x47\x67\x64\xcf\x0a\xf7\xc5\x51\x83\xeb\xa9\x68\x3d\x72\x70\x63\x14\x43\xf3\xc5\x1f\xb8\xab\x0c\x13\x0a\xc4\x36\xab\x60\x3f\xf4\xf1\xd8\x65\x6c\xdb\xed\x22\x9a\x20\x2b\x40\x00\x8e\xa1\x0b\x17\x15\x42\xf7\x4a\x70\xb7\xbb\xac\xc4\x01\x6b\x7f\x63\x6a\xa8\x96\x33\xb7\x66\x80\x58\xf1\x33\x12\xf5\x7c\x51\x62\xd1\x8e\x39\x9e"}, {{0x3c,0x40,0x80,0xcd,0xa0,0xfc,0x3c,0x03,0xb6,0x14,0xd9,0x80,0xf2,0xff,0x83,0x1f,0x5b,0xe0,0xe7,0xa9,0x81,0xd5,0x38,0x1a,0x16,0x18,0xe0,0xb8,0xfd,0x00,0x17,0x76,},{0xf1,0xc3,0x26,0x9d,0x87,0x04,0x02,0xca,0xa4,0x38,0x82,0x13,0x5d,0x9d,0xba,0xdb,0xbb,0x16,0x2d,0xfc,0xa0,0xb3,0xda,0xd1,0x97,0xe6,0xb8,0xa7,0xee,0x67,0x9a,0x70,},{0xc9,0xd4,0xa4,0x72,0x8b,0x8f,0xdd,0x24,0x0d,0x9c,0x49,0x8a,0xa3,0x5d,0xe9,0x5a,0x4b,0xbd,0x51,0x78,0x5b,0x73,0xc8,0x40,0x3f,0xdf,0x04,0x0d,0xfa,0xed,0x94,0x47,0xef,0xad,0x00,0x69,0xb6,0x7c,0x78,0x3d,0x4b,0x81,0xd9,0x66,0xbe,0xf6,0xe3,0xd9,0xa8,0x08,0xa0,0x58,0x4b,0x98,0xec,0x2b,0x18,0x32,0x2c,0x4c,0x92,0x0e,0xb0,0x0a,},"\x0c\xee\xbc\x0e\x8a\x47\x72\x0f\x25\x83\x5e\x2b\x9a\xcf\x89\x1b\xcc\xa4\xbd\xa3\x86\x37\xf3\x63\x27\x44\x58\xba\xa9\xe2\xbb\xaf\xed\xd0\x93\x8f\x56\x88\x73\x4e\x22\xac\x50\xfb\x12\x0f\x66\x5f\x6c\x4c\x61\xc6\x53\x17\x39\xb9\x29\xac\x83\xcd\x77\xf8\x96\x3b\x75\x44\x88\xb9\xb8\x59\xc1\x38\x53\x63\x7c\xf0\x25\xc1\x4e\x8f\xdd\x11\x8f\xaa\x14\xcf\x39\x30\xce\xb3\x5f\x10\x4d\x95\x44\x1e\x56\x48\x94\x40\xf6\x20\x41\xef\x1a\xa7\xc4\xb0\x8b\x28\x07\xe3\x2b\xb9\x58\x4b\x90\x04\xd7\x6e\x76\x53\x33\x48\x50\x6d\x64\xf1\x12\xe1\xff\x6f\x93\x8f\x64\x22\x30\xbf\x38\xaf\x01\x0e\x41\x98\x72\x70\x24\x8b\x13\x63\x5a\x35\x67\xb3\x55\xbb\xa5\xb5\x74\x48\xc6\xd1\x3b\x74\xf3\xbe\xbf\x61\x79\x15\x82\x10\x28\xfc\xa5\xde\xfa\x4c\xe5\x42\x4c\xa1\x91\xcd\x54\xa2\x29\x44\xa3\xd9\x40\xe4\xee\x2e\x2b\xa5\xd5\x04\xc8\x5f\x95\x9b\x51\x4c\x4f\xab\x41\xcc\xb5\x74\x3d\x9c\xb2\xf9\xbf\x33\xd1\xd8\xc2\xa5\x86\x9e\x9f\x46\x60\xc3\xfb\x22\x4b\x39\x14\x1e\x31\x10\xc9\xee\x8a\xeb\x87\x1e\x14\xc6\x2c\x6b\xe3\x8f\xb9\xa4\x56\x8d\x73\x68\x10\xbb\x9d\x20\x73\x17\x8b\x6c\x7e\x87\xe3\x58\x2e\xfc\x62\xb5\x3c\x23\xc5\xd4\x65\x20\xba\x33\xff\xb3\xa9\xca\x64\x9e\xf2\x6f\xe7\x4a\x3c\xff\x61\x88\x42\x73\x26\xb8\xc9\x6f\x74\x35\x4c\xb3\xec\xaa\x61\x1b\x12\xcd\xed\x56\x5e\x59\xfe\x1f\x8f\x40\x00\x97\xe9\x3e\xa8\x59\x51\xb5\xb4\xe9\x00\x9e\xea\x7d\xb9\x37\xe4\x34\x9c\x4e\x5e\x00\xc4\x45\x6c\x6c\x5f\x4e\x57\x41\x1b\xaf\x4e\x46\xe7\x00\xac\x40\x02\x57\x76\x5f\x48\xda\xb0\x3e\x43\x9f\x76\xc1\x49\x9b\x51\x08\x04\x7c\x83\x01\x09\xdc\xe7\xf7\x40\xd1\x39\x37\x87\xe2\x9d\x37\x16\xd3\xc4\x7e\x75\x5c\xb8\x28\xe7\xd4\x40\xa9\x71\x97\x51\x97\xeb\xdb\x3f\x9b\x73\x7b\xa1\x1f\x7f\xd0\x38\x6a\x95\x92\x49\x01\x7d\xe7\x23\x4d\x5e\x5a\x9b\x47\x3b\xb9\x58\x3a\x37\x42\xc7\x74\xee\x55\x2a\x12\xa1\xf3\x6e\xb3\xf2\x6c\x88\x5b\xed\x22\xe9\x1c\x74\xcf\x32\xa8\xdd\x3e\xdb\x08\xb6\x74\xbf\x38\x6e\xf4\x27\x72\x79\x12\xd5\x7c\x5f\xaf\xaa\x1c\xfe\xb7\x40\xcd\x52\xb9\xde\xe9\x95\xe3\xd0\x16\x1c\xd9\x21\x3f\x38\xfd\x68\x1d\x53\x8a\xb8\xbf\x97\xb7\x45\xf5\x49\x80\x03\x0e\xf8\xb7\x26\x96\xd4\xe2\x74\x73\xfb\x0f\x1a\xcd\x5d\x0a\xae\x02\x97\x21\x16\x80\xea\x0f\xc5\x9d\x7b\x6d\x51\xc6\x32\x92\x58\x5a\x1d\x55\x3d\x0c\x89\x54\xb4\x2a\x4b\xd6\xfc\xd3\xa4\x95\x75\xbf\x5c\x88\x95\x3f\x1f\x4e\xa7\xfe\x0e\xd7\xa5\x79\xd1\x69\x7e\x64\x5e\x2a\x61\xc6\x9d\x1a\x56\xbc\x60\x5b\xb0\x40\x60\xa2\x77\x8d\x50\x9a\x8a\xad\xbf\x35\xd9\x46\x97\xcc\xee\x9d\x35\x43\xdd\x01\x28\x1a\x03\x1f\x2a\x0e\xb3\xa9\xeb\x13\xae\x56\xff\x44\xfa\x0a\xed\x4f\x34\x88\x74\x7d\x6a\xf8\x20\xf3\x98\x9b\x71\x33\xf4\x49\xea\x56\xd3\xa7\xf7\x31\xe7\x91\xb7\xed\x2a\x5d\xb9\x39\xbb\x75\x35\x2d\xe7\xda\xec\x50\x66\xfd\x57\x55\x71\x65\xad\xff\xa6\x31\xcd\x3f\x96\x7c\x3c\x7c\xfc\x11\xcc\x1f\x14\xfa\x23\xde\xfe\xc3\xeb\x02\x39\xb4\x5e\xd6\x01\xa3\xa8\x07\x8c\xcf\xc7\xf8\x38\x09\x02\xa8\x59\xee\x9c\xe2\xdb\x79\x5e\xfa\xca\x0a\x01\xdc\x08\x79\xd5\x06\xac\x97\xd1\x07\x04\xd7\x75\x7b\x3c\xcf\x3b\x37\xc3\x39\xb4\x2d\xb2\x37\x82\x27\x80\x23\xe4\xc2\xe7\x7d\x74\x24\x6c\x9e\x54\x41\x49\xa5\x5c\x0c\x92\x0e\xbf\x29\x86\xb4\xc5\xb4\xb3\x57\x2f\x74\x8c\x4b\x15\xc7\xf8\x63\x99\x9b\xc5\x13\x2a\xda\xd0\x97\x61\xeb\x76\x50\x50\x19\x76\x9f\xb5\x54\x22\xf6\x03\x18\x4e\x24\xc0\xd4\xf3\x76\x19\x87\xb5\xc5\x0f\xea\xfc\xce\x53\x30\x2a\x3a\x41\x5e\x20\xf5\x6a\x05\x48\x03\xe5\x53\xba\xcd\x24\x2a\x5e\x13\x64\xaa\x3b\x2d\x7c\xb3\xbc\x1e\x1b\x86\xa4\x74\x31\xcb\xd3\x96\x95\xb6\x7f\x55\x4c\x46\x45\xb7\x23\x69\x04\x09\x4c\x11\xaa\x1b\x40\x32\x6b\xa9\x1b\x8b\xf4\x87\x3e\x9a\x4d\xe0\x4e\x2b\xf4\x62\x59\x72"}, {{0x45,0x43,0x8f,0x91,0x46,0x5d,0x74,0xa2,0x82,0x5b,0x0f,0x66,0xa3,0x5b,0xd7,0xc8,0xd0,0x05,0x86,0x54,0x79,0xb3,0xdc,0x10,0xa9,0xb5,0x6f,0x29,0x7d,0x31,0xb9,0x26,},{0xf0,0x92,0xb5,0x88,0x03,0x30,0x87,0x1e,0x5a,0xaf,0xdd,0x3c,0xeb,0x38,0x50,0xee,0x7e,0x09,0x41,0xa2,0xa1,0xdc,0x89,0xf4,0xfb,0x47,0x71,0xd7,0x5a,0x22,0xf6,0xf2,},{0xd9,0x28,0x7b,0x7f,0xec,0x01,0x7f,0x2e,0xa4,0x0a,0x14,0xa1,0xf6,0x2d,0xca,0x78,0xb0,0x2a,0x3d,0x66,0x32,0xdf,0x7c,0x60,0xeb,0xd9,0x0f,0xc5,0xe4,0x92,0xc5,0xc6,0x2c,0x43,0x16,0x6b,0xf8,0x56,0x58,0xfb,0x30,0xa0,0x8b,0x57,0xa5,0x81,0x31,0x21,0xb8,0x03,0x97,0x57,0x1a,0x31,0x2b,0x6d,0xd1,0x1b,0x65,0x39,0x20,0x54,0x16,0x02,},"\x30\x71\xd4\xb7\x20\xdf\x10\x93\x65\x99\x67\xcd\x4e\xef\xef\x2e\xf9\x67\x84\x75\xf7\xde\xc5\x8f\xec\xec\x1d\x92\x8d\xea\xf8\x02\x45\x7a\x19\x34\xe6\x04\x55\xf4\x96\xcf\x42\x51\x82\x0e\xd6\x0a\x3d\x81\x33\xb6\x24\xd3\x3a\xf2\x6a\x26\x27\x84\xb5\xa2\xfb\xa7\x3c\xca\x2a\xa5\xe5\x19\xe1\xf5\x39\x58\x47\x80\x64\x98\x64\xba\x5f\xbc\x1f\x01\x1d\xdd\xac\x38\x1f\x8d\x48\xd0\xd6\x0c\xe8\x23\x17\x01\x17\x3c\x9d\x2a\x30\x7a\x76\x30\x2e\xbc\x69\xdc\xbc\x93\x0d\x28\x43\x14\x75\xb5\x16\xf9\x8f\x77\x8e\xd2\xe1\xff\xf2\x72\x90\x9a\x27\x2c\xc3\xfb\xb6\xb3\x1c\x80\x41\xa3\x7c\xb7\x77\xe0\x62\xe4\x96\x49\xaf\xad\x12\xc1\xb5\xf7\xfc\xb8\x06\x5a\x99\xe7\x42\x33\x62\xad\x16\x90\x60\x31\x26\x5d\xb7\xe8\xb8\x97\x51\xf8\xa4\xa4\x07\xf2\x50\x26\x50\xfe\xd7\x53\xe4\x2c\x8c\x91\x1e\x50\xb9\x4b\x38\x00\x69\x5b\x0e\xba\x7d\xff\x06\xb7\xa7\x10\x11\x7e\x49\x20\xd4\xb1\xc6\x05\xa3\xeb\xf3\x2e\x06\x96\x67\x16\xed\xa1\x4b\x30\x42\x99\x8a\x3c\x7a\x5e\x9f\x83\x54\x2d\x7d\xde\x65\xe5\x28\xbe\xd6\x10\x1d\xeb\x33\x1d\xeb\x94\xcd\xd4\x60\x44\xbe\xf8\x8c\x09\x7b\xaf\xd4\x0d\x69\x21\xa7\xc4\x84\xc8\xf9\x66\x84\xdc\x37\x16\x71\xd9\x4e\xee\x7c\xbe\x5d\x58\x77\x15\x31\x4c\xff\x0d\x18\x77\x27\x2d\x81\x90\xa9\x0e\x18\xbf\xb3\x21\xd5\x2b\xf7\x47\x05\x13\x7b\x2a\xbf\x91\x65\x73\x17\x67\xa1\x3a\xdc\x9c\x85\xe0\x39\x7b\x47\xae\xf9\x6b\xad\xb2\xca\x7f\xcb\x82\x93\xb0\x1f\xd1\xde\x31\x6e\xe1\xe6\x5f\x35\x6b\x9d\x6e\x8e\xa1\xfd\xd8\x37\xbd\x96\x08\x11\x49\xea\x2d\xcd\x73\xc4\x88\x1f\x32\xb7\xde\xeb\xc3\x71\x5e\x2d\x7c\xdb\x64\x3e\x0d\x98\xf4\xe8\x46\x50\x8b\x04\xb3\x24\x39\xff\x14\xb1\x16\x4f\x46\x84\x6d\xf9\xaf\xae\x44\x46\x4c\xf5\x50\x10\x4c\xd3\xaa\xb3\x81\x75\x40\x47\x0a\xaa\x2a\xb9\x55\x9a\x68\xb7\xff\x6b\x1b\x9c\x0c\xe9\xf5\x86\x9c\xbd\xcd\xd6\x17\x09\x09\x42\xe3\x53\xb4\xc7\x7f\x09\x39\x58\x96\xbe\xcd\xdf\xf1\xab\x7f\x07\x58\x6a\x51\x4d\x81\xfb\x09\x63\x61\x55\x75\x66\x87\x0f\x16\x91\x98\x34\x85\xa8\x0c\x34\x13\xda\x98\xb8\xd1\x9c\x78\xe6\x37\x9f\x94\x3e\x5b\xd5\xa5\x69\x7a\xa3\x3c\x5e\x6b\xfc\xfb\x7b\x8d\xf1\xe1\x57\x4e\xe4\x16\xfa\xb3\xc8\xa7\xd0\x88\xb3\xa0\x57\xcf\x86\x53\x21\xb7\x4e\x61\x03\x52\x6d\xd9\xad\x15\xca\x5a\xd3\xc0\xf6\x97\x18\xe2\x70\x81\xd4\xb3\x4a\x7c\x6d\x1a\xab\x6b\x96\xc0\xa7\x54\xb9\x89\xb4\x94\x06\x38\xc9\xed\xe3\xd1\x7b\xd4\x9f\x65\xbf\x78\x3d\xc8\x5f\x1c\x4b\x14\x48\x76\xcd\xbd\xb2\x28\x2a\x95\x64\xaa\x81\xb5\x70\x92\x08\x0d\x64\x48\xfb\x65\x80\xec\xf0\x9f\x82\xa7\x55\x01\x0d\x55\xd4\xa5\xe4\xf3\x05\xe2\x59\xdb\xe9\x95\x08\xb4\x79\x25\x0d\x80\xec\x17\xc8\x76\x0a\x93\xe0\x5a\x29\x57\x1f\x68\x56\x07\x30\x22\xc8\x70\x69\x13\xc4\x6a\x2e\xfd\x2e\x9c\xaa\xe4\xff\xa1\xb4\x22\x2e\x3d\x70\xe9\x79\xe8\x1a\x71\x95\x1d\x7c\xb8\x30\xbc\xbc\xf9\x01\xaf\x24\x4f\x64\xe4\xad\x9f\x52\xfa\x3b\x62\x03\x1e\x35\x16\xda\x50\xbc\x2b\xce\x78\xeb\x9d\x61\xbf\xed\xd9\xb3\xf5\x7e\x89\x35\x5f\x17\x7d\xb6\x16\x2b\xf6\x1d\xa0\xe4\x54\xc3\x42\x88\xb9\x67\xc3\xfb\x4c\x34\x1b\x32\xd4\xd1\x3a\x31\x98\x69\xb8\xe3\x60\x46\xf9\xe3\x38\xb5\xf3\x6a\x1f\xc1\xa7\xed\xa7\xd7\xb0\xd4\x38\xe0\xa7\x5d\x84\xbb\xe4\xd6\x8c\x87\x9a\xda\x80\xdd\xe2\x3f\x71\x55\xb5\x32\xcc\xcf\x7a\x63\xf1\xbe\xdf\x84\xf8\x2f\x44\x0c\x9e\xc3\xcb\x0e\x45\xf3\x2c\x92\xf7\x64\x38\xf5\xb4\xb9\x10\x44\x1e\x67\x38\xaf\x3f\x5d\x20\x50\xd5\x79\xee\x96\xb8\x8f\x3b\x00\x81\x0a\xb1\x26\xff\x3a\x8f\xef\xd9\x71\x04\x43\x24\xdd\x4e\xb3\x44\x7d\xac\x5b\x77\x80\x9c\xda\x8c\x71\x68\x25\x49\xd7\xcf\x2d\xce\xe3\x40\xed\xcf\x94\x94\xac\xa4\x29\x01\xe2\xc1\x1e\xd9\x77\x90\xaf\x48\xbc\xea\x29\x52\x1e\xf0\xe3\xd0\x3c\xda\xde\xcd\xc8\x94\xdd\x07\x56"}, {{0x72,0xcf,0xce,0xf4,0xc9,0xd6,0xa1,0x98,0x6d,0x19,0x03,0x11,0x84,0x0e,0x55,0xcb,0xaf,0xac,0xc8,0xa6,0xeb,0x5e,0xcc,0x72,0x93,0x4f,0xda,0x53,0x5b,0xdc,0xff,0xb2,},{0xa9,0x44,0x64,0xd8,0xcc,0x8f,0x3e,0x43,0x39,0x39,0x47,0x64,0x9f,0x91,0xc2,0x75,0x23,0x27,0xe4,0x0d,0xac,0xa1,0x1a,0x99,0x70,0xc5,0x18,0x1e,0xda,0x37,0xd6,0x06,},{0xdb,0x72,0x70,0xac,0xce,0x78,0xd7,0xfb,0x09,0x08,0x0a,0x32,0x79,0x41,0xbc,0xe7,0xeb,0x14,0x5b,0x9e,0x36,0x61,0x86,0x6a,0x86,0x83,0xf9,0xa1,0xa3,0xde,0x97,0xfb,0x02,0xb0,0x25,0xdb,0x9e,0xc7,0x6f,0xf3,0x25,0x60,0xfe,0x63,0x88,0x27,0x74,0x2e,0xa2,0xf4,0xeb,0xef,0x6b,0x7c,0xce,0x44,0xf9,0xaa,0xee,0x43,0x4f,0xd7,0xc1,0x08,},"\x66\xa6\xcb\xe8\x8a\x8a\xb9\xa3\x38\x47\x79\x7f\xc4\x80\xb2\x44\xe8\xa2\xb8\xec\x79\xe8\x0b\xc2\x63\x77\x53\xde\xb3\x6f\xa3\x01\x4f\x84\x3e\x22\xa4\x7d\xb0\xa3\x17\x78\x38\x5e\xc1\xf4\x55\x67\x2e\x0d\xff\x6c\xa2\x1c\xa4\xcf\xd2\xb9\x89\x47\x1b\x7f\xfc\x30\x78\x28\x13\x8b\x0a\xd4\xe6\x47\xc2\xd1\x3c\xef\x72\x44\x69\x05\x4a\xbd\x37\x40\x24\x5a\xea\x4b\x78\x9e\x24\x4e\x95\xcf\x9e\xcf\xd0\x8a\x0d\x13\xc7\xce\xd3\x93\x33\x27\x27\xa7\xf3\xd8\xfb\xda\xbd\x93\x9d\xe2\x8c\xaa\x41\xcc\x96\xc7\x08\x11\x98\xe2\x26\x53\xd9\x4e\x02\x4a\x61\xf5\xf3\xdc\x5a\xa3\x7f\xa9\xad\xdd\xc9\x6c\xf1\x69\xd3\x50\x62\xa0\xa2\x9b\xa4\x5a\x53\x9c\x87\xa6\x8a\x3a\x03\x04\x36\x13\x09\xd2\x13\xe6\x14\xee\x83\x73\xda\xfb\xa2\xa7\xd6\xed\x7d\x2a\xd3\x77\x04\xc0\x94\x6e\x4d\x09\x3e\x2d\x94\xd0\x61\x36\x4c\xc1\x23\x10\x63\x72\x91\x03\xa7\x7c\xcb\x50\x18\x91\xbb\xc3\x18\x54\x57\xbb\xd2\x86\x9e\xb6\x3d\xc6\x0f\x19\x6f\x10\xa3\x8b\x7b\x36\xcb\x3f\x64\x3d\x35\xdd\xbf\x43\x8a\x44\xbf\x0c\x8f\x57\x0f\xad\x41\xbd\xde\x26\x7f\x0f\xfc\xf1\xf2\xf9\x27\xd6\x26\xd1\xb0\xd9\x80\xa0\xce\x22\x3f\x2f\x00\x54\x84\x5a\xfe\x41\xd3\x9d\xe5\xa4\x57\x21\x9f\x27\x6c\x67\xe6\x9b\xe2\xd5\xc9\xe0\x70\x13\x16\x39\x56\x1c\x26\x75\x1f\xb0\x64\x35\xe0\xe4\x2e\x25\x08\xc5\xf4\x9c\xd1\x2b\x51\x7c\x98\x33\xff\x97\xf5\xe5\x1e\x1d\xce\xaf\xa9\x42\x6d\x3d\xc5\x2f\xd1\x37\x9c\x64\xcc\xaa\xbb\x26\xdb\x1a\xf6\xde\xd7\x15\x36\x28\x84\x2f\x0c\xbd\xbb\xbd\x6a\xa0\xcf\xa5\x40\x7f\x40\x94\x96\xc0\x65\x32\xdb\xea\xc9\x4d\xab\x9b\xab\xa0\xb3\xc9\x88\xfa\x03\xd3\x6f\x91\x1d\x80\xe4\x9b\x37\x0b\x68\x37\x03\x7f\xf2\x49\xe7\x6d\x69\x2c\xd1\x77\x37\xe0\xd0\x79\x65\xd3\x3f\x17\x04\x2b\xbc\xd1\xe9\x90\xe0\x40\xf7\x19\x36\xf6\xfc\xa2\x54\x2a\xe3\x37\x48\x36\x77\x87\xc0\x1b\xde\xa7\x5c\x9a\x0e\x66\x15\x02\x81\xc4\x68\xfe\x5c\x73\xaf\x9e\x5b\xec\x37\x2d\x50\x20\xc3\xd3\x7f\xa1\x03\x5a\x67\xe2\x24\xd0\x95\xf0\x66\xa5\x1f\xe1\xf6\x81\xc3\x07\x39\x39\x27\x2f\x6a\xf7\x75\x0e\xd8\xd1\x83\x49\x17\x8a\xb4\xa2\xee\xb4\xe9\xca\x82\xbb\x67\x29\x6e\x98\x90\xf3\x16\xc9\xd9\x49\x59\x53\xd6\x84\x36\xeb\x1c\x1a\x2f\xb6\xa1\xcc\xa4\x5a\x8e\x88\xa0\x9b\xdd\x65\xa5\x55\x80\x25\x61\x8b\x36\xd7\xf3\xcb\x38\x9d\x2e\x2a\xb1\xed\x23\x32\x28\xec\x92\xa3\x27\x97\x8c\x0a\xdc\xed\xdb\x6c\x96\x32\xd3\xab\xd7\x97\x16\x21\x71\x37\x54\x75\x8e\x21\x01\x3a\x0c\x3d\x00\x9b\x6e\x31\x93\xcc\x15\x2c\x57\xef\x73\x10\x7b\xd4\x35\x7d\x52\x8b\xe4\x08\x73\x02\x7b\xf1\x84\x0f\x68\x55\x36\x08\x0f\x12\xc5\xff\xa9\x3c\xa6\x29\x73\x67\x80\xe0\x15\xe8\x6d\x19\x09\xf0\xd8\xf3\x72\x01\x0c\x9c\xb7\x2c\x09\x89\x84\x5f\xc8\x83\x15\xe6\xb9\x37\x0d\xc9\x2d\x36\x83\xef\x44\xd3\xf7\x5f\xc9\x6c\x4b\x0e\x89\xe1\x3d\x68\x2d\x19\x88\xb6\x85\x71\x3e\xad\xa8\x42\xbe\x9d\x2b\xbe\x2a\x76\xbb\xa1\x5d\x38\xcb\xaf\xb6\x5c\x40\xc2\x15\x9b\x0c\xee\xb0\xd7\x69\xb9\xbe\x35\x55\x40\x73\x4f\xf3\x77\x36\xc0\xf0\xfa\xcb\x95\x15\x93\x09\x36\x5b\x96\x46\xbc\x4b\x34\x4f\xb1\x9a\x5c\x16\x39\xa8\x8e\x87\x31\x7b\xfb\x3b\x5e\x7b\x51\x30\xfa\x7d\x56\x43\xed\x4d\xa0\x64\x30\xc8\xa0\xc1\x85\x8c\xcf\x2f\x9a\x6e\x3d\x62\x01\x22\x53\xf0\x12\x2d\xba\xb4\xa3\x54\x75\xa6\xf6\x55\x89\xb2\xb0\x95\x99\x28\x26\xe4\xf1\xb5\x8f\xa0\x50\xb8\xf9\x5c\x4f\xeb\xa3\xfb\xaa\xdd\x2c\x22\x44\xad\x4a\xbd\x41\x01\x39\xad\xf4\xc1\x53\xcb\x5e\x69\x33\x7a\xf1\x76\xa7\x83\x7e\xea\xea\x99\xbd\xcd\x59\x38\x5a\xfd\xed\x34\xff\xba\x80\x63\xa3\x5f\x4f\x55\x8e\x4e\xeb\x48\xf1\x48\x7b\x56\xb1\xf8\xd1\xf7\x30\x67\x62\x1c\xb5\x48\xc8\x08\x75\x3e\x35\x26\xa2\xf2\xaa\xbd\xe1\x26\xbe\xa5\x21\xcf\x67\x3d\xea\xfa\x79\x2c\xa5\xbd\x22\x12\x79\x5b\xd6\x6b\x86"}, {{0xa6,0x33,0x7e,0x4d,0x3b,0x1a,0x49,0xb1,0x26,0x31,0x67,0x78,0xc6,0x13,0x51,0x6c,0x03,0xac,0x88,0xc9,0x6d,0x92,0xff,0x5c,0xc7,0xe0,0xc8,0x52,0x7c,0xce,0x1a,0x62,},{0xf5,0xea,0xc4,0xfe,0x0e,0xa1,0xa5,0xf2,0x36,0xb4,0x9d,0xa3,0x3a,0x24,0xe2,0xf3,0xa8,0x3d,0x4b,0x26,0x0c,0x54,0xd3,0x41,0x6c,0x64,0x4e,0x05,0xc8,0x38,0xbf,0x51,},{0x78,0x13,0x76,0xc9,0x51,0x2f,0xa3,0x3c,0x45,0x70,0x47,0xa1,0xf4,0xf0,0xda,0x31,0x76,0xe6,0x0e,0xe4,0x77,0x82,0x86,0x9b,0x7e,0x9f,0xa5,0x84,0x1d,0x96,0x4f,0x3c,0x1a,0xd6,0x6b,0x70,0xc1,0x14,0xb1,0x77,0x1c,0x32,0x4c,0x83,0xff,0x6c,0xd9,0x97,0xae,0xfc,0xcd,0xc5,0x9c,0x11,0x4d,0xb9,0xf2,0xf3,0xca,0x7d,0x84,0xa7,0xb6,0x0f,},"\xe3\x34\x30\xc3\x8c\x4a\x40\xb3\xc6\x6e\x20\xcf\x3b\x70\xe9\xfe\xa8\xcc\x50\x76\x1f\x2a\xfe\x24\x9e\xc0\x59\xc0\x7b\xc3\xb3\x7e\x5b\x94\xf4\xa4\x3e\x31\x00\x99\xb1\x9a\x85\xf5\x9d\xff\x73\xa7\xe4\x95\xc4\xdf\x31\xf7\x47\x80\xcd\xef\x7b\xd6\xe4\x7c\x39\x4c\x18\x91\xea\x30\x52\xe3\xcc\xf5\xd8\x4b\xae\x08\x2d\x24\xba\x71\x78\xac\x65\xd2\x29\xad\x18\xa8\x49\x40\xf6\xb4\xdb\xc5\x96\xee\x63\xc1\x81\xb5\x7b\x5b\x49\x69\x89\x79\xc1\x86\x32\xfa\x82\x1c\xa6\x1e\x35\xa0\xd0\x35\x1f\xe1\x3d\x69\xe0\x6d\xdc\xc8\xd6\x66\xdc\xa2\x45\x02\x17\x7f\x34\x4e\x2f\x44\x05\x75\xd3\x9e\xbf\xe5\xe7\xf1\x06\x53\xb6\x5b\xef\x29\x1d\xc8\x13\xa0\x43\x4c\x97\x5d\xe1\x64\xc1\xa7\x6b\xf6\xfc\xef\x98\xf2\x31\x81\xc0\x09\xb9\x18\x30\xb6\x18\xe4\x87\x48\x47\xd2\xe2\x1b\xbd\xb9\x3f\x20\xcd\x8b\x1f\x4b\xaa\xdf\x99\x42\x8a\x22\x67\x43\x86\xa6\x68\x15\x2b\x4b\x90\x39\xff\x06\xab\xcf\xe3\x34\xa0\x62\xf7\x94\x05\x61\x72\xec\xbc\x07\x94\xdf\x98\x27\x1b\x9a\xcf\xe4\xb7\xda\x55\x3a\x87\x63\x42\x37\x63\x00\x09\xa0\x5b\x25\x7c\x18\x4c\xbe\x23\xd9\xcd\x5a\x03\x86\x58\x01\x0f\x57\x48\x99\xf3\xb2\xd1\x54\xd1\x85\xee\x67\x23\x09\x13\x65\x0c\x3a\x05\xb5\x4a\x2e\xdc\x24\x3a\x42\x87\x39\x8e\x37\x69\x28\xea\x9c\x6b\x2c\xba\xf3\x71\x25\x25\x40\xe2\xb8\x04\x3f\xcf\x55\x68\x13\x19\x6a\xe5\x72\xc2\x7c\xfb\x5a\x46\xab\xb9\x72\x9a\xf2\xdc\xfc\x29\xe0\x33\xdd\x11\xf3\x3e\x86\xcc\x6a\xc3\xbc\xe6\xf3\xf9\x57\x7d\x36\x78\x1a\x69\xed\x7e\xaf\x8c\x82\x63\xa0\xf1\x8e\xba\x0f\xe8\xa4\x81\xf3\xe1\x5a\x55\x59\x94\x34\x19\x5f\x7c\xb0\x57\xdd\x36\x4e\xaa\x07\xdd\x0d\xfd\x26\x6b\x80\x7f\x53\xa2\x07\x0f\xd7\x91\xe8\x72\x42\x2f\xd9\x07\x13\x4f\x4a\x8a\x78\xa8\x76\xbd\xcb\x03\x1a\xc8\x60\xdf\xe0\xbb\x57\xe1\x05\xdb\x82\x87\xb3\x1a\x60\x4e\xb7\x12\x69\xbe\x5b\xa2\x29\x98\x5c\xea\xbc\x2b\xdf\x16\x5a\xc7\x41\x65\x0b\x1f\x01\x3a\x66\xc9\xbd\x24\x3d\x03\xa8\xb1\xc5\x08\x13\x81\xcb\x92\xe2\x3f\x90\x57\x77\x1f\xc0\x7c\xa3\x2d\xff\x1d\xb9\x4f\x5a\xdf\xd2\xf4\xff\x9a\xf3\x1d\x25\x0d\xd4\xf8\x6b\x22\x59\x2f\x60\xa7\x45\x75\x15\x62\x13\xf1\x08\x46\xc7\x46\xa9\x20\xfe\x39\x85\x1b\x32\xfe\x4c\x8b\x87\x58\x76\x5b\xc5\xb8\xb9\xd5\xb9\x92\x63\xdf\x36\xf9\x78\x88\x05\x3f\xd1\x0f\x1d\x68\xf5\x77\xae\xd5\x59\xbc\xfd\xe7\x44\xbc\x65\x11\x07\x6c\xaf\xd6\x89\x44\xa0\xed\x10\x55\x2d\x11\x34\x4b\xc7\xe4\xd9\xef\x93\x6d\xac\xce\xd5\x27\x43\x31\x32\x95\x9b\x1c\x73\x24\xad\x1c\x4c\xbc\x3a\x1a\x73\x6b\x1f\x02\xaa\xe8\xe0\x61\x1a\xe2\x3f\xdd\x47\x4f\x5b\x8e\xe7\x05\x6f\xcb\x5a\xf6\x13\x3e\xcc\x08\x4b\xb9\xf1\xf5\x0c\xbd\xac\x66\x24\x44\x37\xb4\x34\x8f\x4e\xdf\xe2\x37\xfc\x3c\x38\x29\xab\x94\xeb\x4f\x14\xca\xb1\xcc\xd6\xca\xee\x36\xfa\xdc\x20\xa3\x10\xcf\x06\x90\x62\x2c\xdc\xa8\x48\xae\xd0\x3f\xf4\x03\xa6\x63\x3f\x4f\x65\x79\x94\xb7\x80\xdd\x60\x48\x14\x9c\x3b\xfb\xc1\x78\x89\xe3\x7d\x90\xb1\xe5\x42\x0e\xb3\xd4\x59\x6b\x91\xba\x11\xbc\x02\x29\xc6\x5d\x05\xb9\x3c\xd7\xe0\x45\x4d\x1f\x3c\x6e\x1e\x80\x71\x98\x37\x92\xc4\xd4\x36\x8d\x07\x78\xae\xf4\xe1\x23\x33\x5f\xd2\x96\x2c\x65\x7b\xd0\x51\x35\x71\xa5\xfc\xe2\x11\xde\x62\x87\x4f\x27\xca\x10\xdc\x15\xba\x2d\x44\x5f\x1c\xf4\xbe\x5f\x83\x3c\xf0\xb5\x64\xc0\x22\x57\x6b\x98\xc0\xa2\x43\x49\xb6\x70\x85\xf9\x22\x02\x67\x5d\x7d\xac\x48\xb9\x5e\x3b\xfd\x65\x55\xa9\xec\xb7\xc7\x2f\x08\xbf\xec\x0d\x22\x02\x22\x49\x2f\xdc\x96\x36\xf0\x36\xec\x45\x08\xa3\x65\xb7\xb7\x09\x79\xf9\xeb\x4a\x72\x63\xa8\xba\xcb\x1c\x1d\x01\x55\x73\x86\x46\xcd\xd4\x6a\xb9\x23\x4a\x17\x03\x11\x50\x0d\x0b\xae\x6e\x55\xa8\x63\xbd\xaa\x56\xf5\x16\x45\xad\x85\x29\x7a\x73\x81\xf8\xd2\x0c\xf9\x6c\x47\x4d\x1b\xb8\x1f\xce\x13\x2b\x14\x55\x5d\x1a"}, {{0x10,0x7d,0xa9,0x8d,0x0e,0xe8,0xe7,0xc0,0x0f,0x6d,0x41,0xec,0x26,0x59,0x44,0xce,0x67,0xef,0x8c,0x8f,0xfb,0x51,0xf4,0xf1,0x1f,0x4e,0x5f,0x1a,0x27,0xfb,0xe8,0x05,},{0x3b,0xec,0x34,0xb1,0x61,0xb1,0xbc,0xff,0x00,0x9f,0x8c,0xfc,0x50,0xd8,0x4c,0xeb,0x6a,0x2d,0x5b,0x20,0x3b,0x52,0x38,0xa8,0xaa,0xd8,0xa8,0x36,0x18,0xb4,0x42,0xe7,},{0x53,0x25,0x2b,0x92,0x3a,0xd1,0x9c,0xc3,0x97,0x84,0xd3,0xa9,0xae,0x59,0xd6,0x2a,0x63,0x00,0xdc,0xc5,0x0a,0xc8,0xfd,0x07,0x13,0xcb,0x58,0x84,0x45,0x01,0xd8,0xd3,0x80,0x5a,0xfa,0x0f,0xda,0x64,0xc7,0x3e,0xa0,0xf6,0x0e,0x6a,0x8b,0x34,0x45,0xbf,0xff,0xe6,0xca,0x6b,0xfd,0xc8,0x7e,0x12,0x8b,0xaf,0x99,0xbf,0x62,0x68,0xfc,0x09,},"\x1a\x7b\x7f\x3e\x1c\x7c\x41\x49\x2a\x7c\xe7\x99\xef\xdb\x2d\x9d\xc2\xf2\x48\x9c\x84\xae\x28\xbb\x7d\x08\x4f\x32\xec\xa8\xfb\xb0\x66\x88\x5a\xc6\xf2\xef\x74\x49\xe7\x12\x26\xa8\x2e\x9f\x15\x37\x72\xa9\x93\xeb\x6b\x6b\xca\x64\x91\xd2\x6a\xca\x5d\xee\x98\xb7\x7a\x1d\xdc\x59\x92\x2b\x31\x45\xc4\x47\xde\x73\x7f\xaf\xac\xba\x5a\x75\xf2\xa8\x01\x37\xb5\x59\x46\x97\x22\x0d\x19\x61\x76\x74\xa6\x91\x13\xfd\xf7\x7c\x34\x3a\xf2\xb7\xe3\x86\x1b\x5b\x78\x22\xf5\x8d\x60\x08\x9c\x3c\xa5\x4c\x74\x9d\x27\xf8\x83\x79\xc0\x67\x59\x8f\x06\x39\x39\xba\x86\x31\xd1\xf5\x2d\xc9\xab\x45\x50\x45\xfb\x36\x0c\xc2\xa5\xb6\xb0\x12\x7f\xac\xfc\xf5\xb1\xb4\xc3\x3e\x3f\x19\x4f\xc9\x24\xb8\x54\x16\x8c\xb1\x16\x9a\xb1\x09\x97\xb4\x38\xb7\x1c\x80\x87\x83\x47\xbe\x88\x7a\xf4\x48\x10\x13\x4b\x51\x4c\x80\x69\x08\x20\x1a\x3d\x3e\x6d\x0c\x56\x12\x0c\x43\x14\x87\x4d\xc2\x94\x4d\x84\x44\xf0\x1b\xaf\xa3\x4a\xa6\x2e\xce\xf0\x98\x15\x45\xe5\xd0\x2f\x40\x16\xc0\xb1\x64\xfc\x05\xae\x18\xf5\x35\xc3\x1b\xf2\x0b\x86\xf3\x1f\x7a\x79\x4a\xba\x14\x89\x84\xc3\xff\x43\x3d\xc2\x22\xc4\x43\xb5\xd2\x6c\x1f\x66\xe6\xc5\xf1\x9d\x19\xcd\x6e\xad\xd4\xdc\x94\x10\x1b\x2f\x52\xb5\x8c\x9d\x45\x90\xcb\x10\xdb\xc5\xd6\xea\xcd\x11\xd4\x2e\xd0\x9f\x15\xbd\xe4\x4e\xe9\x27\x1d\xef\x29\x2f\x73\x1b\xf3\xb4\xac\x6c\xd1\x27\xe4\x88\x4c\x2c\xb3\x0b\x28\x5f\xc9\x24\x76\x38\xa2\x99\xe4\x16\x52\x06\x24\xd1\xec\x8d\x0d\xf2\x49\x89\x39\xc7\x19\xa9\xe7\xbd\x29\xa3\xc5\xc3\x2a\x3e\x82\x41\x36\x8d\x6e\x4f\x90\xfe\xa2\x9d\xc3\xa3\xf1\x47\xea\x9f\x76\xc5\x78\x0e\x73\x14\x3f\x55\xd3\xde\xc7\xb6\x63\x41\xd3\xf3\xea\xc1\xd9\x8f\x8e\x7d\x4e\x87\x75\x09\xb4\x43\x8c\x3a\x52\x46\x6d\x24\x2a\x10\xb4\xc2\x7c\x4a\x0d\xb9\x23\x2d\xad\x01\x14\x14\xeb\xfb\xd5\x79\x06\xf1\xa4\x10\x20\x7b\x52\x6b\x0d\x1f\x1b\x69\x86\xb3\xeb\xd7\x55\x0a\x2b\x3c\x15\xfc\x24\x09\xc7\x62\x6e\x0d\xd3\x30\xef\x67\x22\xe3\xba\x48\xb1\xd9\x20\x56\x52\xac\x19\x4c\x21\x47\x3c\xe2\x58\x55\x9d\xb5\x11\xef\xad\x3e\x5d\x55\xf2\xa7\x96\xd6\x5a\x6a\xb9\x7d\x86\x31\x06\x2a\x59\x3a\x13\xaa\xa0\x95\xdb\xc9\x3e\x62\x17\xce\xd6\x19\xcb\x16\xa5\x7e\x74\x43\x55\xa1\x6b\x15\xe7\x7d\x49\x79\x11\x92\x99\xbb\x04\x3e\x48\xfa\x3e\x61\x54\x60\xe1\x64\x88\x29\x84\xa2\x23\xd4\x18\xca\x95\x34\x0c\x5b\xfc\xda\x67\x3f\xcd\x13\xb2\x9f\x2c\x47\xd2\xf9\x7e\x3e\x8c\x61\x3b\x6c\x58\xdf\x0e\x62\xcf\x23\x06\x1d\x6f\x54\x5b\x75\x50\x33\xfd\x3d\xc1\x40\x5e\x5f\xef\x35\xa1\x3e\x01\x5f\x98\xb1\xcc\x42\xf7\x1b\x99\x68\x1f\x96\x81\x25\x82\x29\xa4\x47\x3d\x86\xea\xbb\x0c\x17\x92\x79\x41\xe5\x0c\x08\xf3\x4a\x76\xb4\x3b\xcc\x6d\x04\x2e\x56\x32\xef\x9c\xcc\x91\xb6\xe6\x95\x0f\x5d\x30\xf6\x70\xfb\x39\x02\xc3\xd4\x09\x31\x5a\x40\xb0\x82\x1c\xe8\xa9\x9a\x97\xfe\xca\x54\x78\xbf\xd7\x82\xe7\x87\x67\xb3\x11\xf3\x74\x16\x3f\x58\x96\xb0\xbe\xb9\x58\x38\xe6\x45\x87\x8c\x64\x99\x03\x85\x12\x3b\x61\x57\x5d\xd8\x42\xdc\x76\x35\x4b\xac\x9c\x6d\x5a\xcd\x99\x35\xb6\x09\xbc\xcc\xb8\x46\x3d\x39\x22\x5d\xa1\xaf\xb8\x91\x1d\x36\xe6\x09\x89\x2d\xd1\x72\x38\x52\xab\x9f\x82\x75\x8f\x3f\x1e\x4d\x28\xdc\xf0\x2c\xb0\x6e\xed\x26\x84\x4a\xae\x68\x82\xed\x44\xbc\xe4\x4a\xbc\xd1\xdf\xba\x63\x34\x18\xc9\xf1\x55\x87\x9c\x97\xab\x27\xf8\xae\x23\x83\x30\x39\x2b\xe5\x49\x1a\x07\x86\x62\xda\xaa\x02\xa3\xd5\x45\x8b\x77\xc5\x49\xc4\x9b\xe2\x01\x24\x5e\x7a\xae\xc0\xd9\x4e\x54\x37\xbe\xca\x6e\x5a\xb0\x46\xd6\x94\xe9\x6b\xf5\x1e\x04\xfb\x44\x37\x9b\x2b\x9b\x80\x16\x75\xfe\x14\x77\xf3\xe0\x89\x87\x4a\x60\x11\x71\xd8\xb6\x8f\x02\x02\x01\x46\x01\xa5\x3f\x81\x2f\x53\xe5\x81\xc3\xb9\x63\x12\xb3\x6b\x9e\xe0\x4f\xff\x11\xd9\xea\xb4\xe4\x51\x48\xdc\xc8\xf0\xfa\xb1"}, {{0x8b,0xc2,0x29,0xfc,0x23,0x46,0x53,0xb1,0x3c,0x92,0x47,0x10,0xcb,0x46,0x8b,0x8f,0xa9,0xb2,0x80,0xe2,0xad,0xb4,0x9c,0xb4,0xb3,0x6b,0xf5,0x9d,0x6f,0xa4,0xa6,0x39,},{0x46,0x14,0x69,0x75,0xdf,0x67,0x04,0xcb,0xf4,0x53,0x20,0xa5,0xe6,0xcb,0x6d,0xe8,0x13,0x46,0x9f,0x31,0x31,0xe6,0x1d,0x44,0x7b,0xbc,0xa1,0xa4,0x77,0xa0,0xc5,0x57,},{0xd2,0x43,0xb8,0x7d,0x13,0x97,0xd5,0x94,0x13,0x9d,0x83,0xc3,0x9a,0xcf,0x85,0x01,0xd0,0x73,0xbd,0x4b,0xe7,0x18,0xb4,0xc2,0x06,0x98,0x07,0x29,0xe7,0x20,0xa4,0xc5,0xb0,0xea,0x91,0xa2,0x8e,0xa1,0x26,0x04,0xa9,0x87,0xe6,0x95,0x91,0xc5,0x43,0x04,0x9f,0x29,0x73,0xbb,0x91,0xc1,0x70,0x21,0x3c,0x32,0xa6,0x4a,0x0f,0xac,0x82,0x04,},"\xba\xe2\xdc\x7f\x94\xab\x5c\xcd\xca\xa8\xcf\x49\xed\xbe\xf0\xf6\xd7\xae\xb1\xfa\x89\x07\x80\x05\x33\xaf\x44\x92\x61\x11\x94\xe5\x6c\xef\x37\xb1\xf0\x33\x30\x37\x38\xae\x2c\x3b\xc4\x58\x8f\x5c\xb3\xd5\x5f\x34\x5b\x9a\x40\x7e\x78\x77\x42\xa0\x6a\xf0\xb6\xee\x20\xde\xe3\xdf\xe9\xc9\x1d\x76\x2a\x3e\xbd\x19\xae\xd0\x79\x07\xbb\xb9\x1c\xd7\x76\x32\x65\x40\xde\xd9\xf7\xff\x7d\xda\x76\x61\x5f\x97\x8e\x94\x90\xf4\x06\xed\x2d\x91\x16\xe2\x09\x3f\xa7\x85\xe9\x71\xb5\x06\x2d\x31\xcb\x40\xff\xf9\xe3\xc5\x51\xa7\x3b\x20\x24\x5d\x46\xdf\x4d\x7f\xd1\x30\x3a\x28\x18\x01\x72\xd9\xa2\xbf\x55\x93\xc4\x79\x17\xb5\x86\x90\x91\x7c\x1f\xb0\xe1\xe2\x99\x4d\x1f\xa9\x77\x35\xae\x37\x8d\xe6\xea\xfd\x5c\x1a\x25\xab\xaf\xa3\xcf\xd2\xdf\x7a\xea\xbd\x6e\x68\xfc\x44\xed\xf8\x2f\xc8\x36\x94\xe5\xd8\x41\xa1\x5b\x14\x56\x8b\x61\x10\xbe\x64\x4b\xf2\x2b\x71\xfc\x47\xd7\xf0\x7e\x16\x66\x95\x7d\x0f\x87\xda\x17\xf1\x3f\xcd\x63\xc1\xc2\x96\x6f\x68\x7d\x25\xdc\xbd\x99\x63\xf0\x1e\xff\x13\x2d\x5f\x2b\x86\x67\x78\x16\x58\x8c\x12\x3e\x94\x57\xbe\xfc\xce\xd2\xd3\xcd\x1d\x1b\xeb\xe8\xdd\x8f\xbb\x15\x87\xe5\x53\xcb\xcc\x4c\x87\x62\x06\x4c\xd3\x2e\xf7\xa1\x70\x24\x10\xf7\x7f\x15\x24\x0d\x7e\x2b\xb5\x82\xc6\x78\xc0\xda\x88\xef\x45\x22\x83\x0b\x14\x36\x60\xac\x9c\x43\x4d\x95\x77\x2e\x6e\xee\xed\x60\x14\xae\x16\x82\x4c\xcd\xc4\xdf\x2d\xf6\x4a\xeb\x69\x80\xb5\x1d\x11\x89\x85\xdc\xbb\xd1\x96\x1f\x31\x5e\x6a\x94\x33\xf0\xb9\x6b\x1e\x63\x51\x25\x7e\xad\x83\xe0\x5b\x4c\xc8\x9c\x92\x4b\xf8\x35\x58\xba\x7d\x2e\x7c\xa3\x7c\x03\x17\x9a\x8f\x85\xb8\x31\xe7\x21\x7b\xf4\xc5\x53\x83\x87\x61\xd3\x26\x02\x85\x3b\x81\x59\x3b\x0e\xbf\x8e\x4b\x9f\xfa\xf0\xec\x40\x5b\x2a\x83\xaf\x7d\xe5\x55\x4d\xaa\xd2\x8b\x58\x2e\xe0\x8b\xd8\x4b\x37\x55\x50\xca\xe0\x8a\xe4\xa5\xbd\xa7\x15\x81\xfc\x3b\x7b\x54\x49\x8c\x4e\x1a\xfb\x96\x6b\x4a\xf1\xd9\xc8\x43\xa6\xb2\x5b\x34\xe0\x4c\xfd\x9b\xd2\x37\x42\x44\xf1\xfe\x20\xec\x62\xbe\x3c\xcf\xab\x4e\xde\xf7\x9e\xd6\x4e\x6b\x71\xaa\x92\x28\x12\x7c\x63\x59\xea\x1c\x4a\x80\x87\x89\x08\x96\xff\xa4\x6e\x00\x92\xde\xc7\xef\xbc\x96\x0a\x17\xb7\x70\x91\x6f\x95\x40\x70\x13\x2e\x26\xd9\x8d\x97\x74\xa2\xac\xdf\x80\x9d\x58\x6d\xf0\x25\x2f\x67\xcf\xe8\xd9\x85\xa3\xe2\x48\xdb\x0f\x90\x73\x1a\xce\x7a\xbd\x99\x9c\x74\x6b\x69\x64\x8d\x5c\x3b\x4b\xd6\x11\x37\xe0\x8f\xcc\x8b\x2e\xfc\x56\x76\xbc\xd8\x56\xa1\x3b\x36\x21\x51\x47\x4c\x4a\x1e\xfd\xed\xc5\x92\xcf\x3e\xad\x1a\xba\xbc\xd4\x8e\xe2\x04\xd2\x77\x26\xad\x1b\xda\x4f\xe4\xb0\x9a\xb5\x10\x89\xd0\x16\xde\x6b\xa2\x59\xea\x81\x80\x7f\xaf\x21\x1c\x87\xe4\xc9\xef\xbf\x6a\x4c\x75\x3e\x08\xf7\x80\xed\x55\x33\x8c\x0f\xde\x14\xfb\x99\xb3\x07\x22\xb5\x59\x4b\x3a\xbe\x02\x04\x7f\x46\x62\x42\x42\x1f\xb8\x11\x76\xc9\xc4\xf0\xfd\x2b\x5e\x7c\x5a\x0f\x65\xa0\xc5\x9a\xa8\xc3\xa9\x86\x08\x7d\xe7\xba\x40\xba\xca\x77\xbd\x36\xac\x21\xce\x34\xe9\xfe\x97\xfa\xcc\x4e\x29\x83\x30\xee\xce\x1c\x8e\xc6\x23\xe6\x6a\x4b\x0f\x23\x42\xd2\xc5\xa0\x2c\x5f\x5a\xbd\xdc\x5f\xf1\xf1\xf2\xd0\x3c\x1d\x4e\xe9\xb4\xb3\x42\xed\x3b\x1c\xc2\x65\x61\xf3\x21\x7b\xf8\x50\x0e\x08\xf0\x27\x57\x1c\x53\xc9\x23\x26\x05\xa5\x3f\x2b\xda\x02\x4e\x39\x92\x91\x63\xa8\xe0\x07\x91\xac\x06\x56\xbb\x07\x83\x82\x5e\x71\x05\xff\xa9\xd9\x09\x69\xdc\x09\x4a\xf4\x6f\x70\x2e\x85\xcc\x11\xe4\x42\xb3\xd5\x53\x4c\x1d\x32\x75\x20\x7d\x6d\x29\xa9\x42\xc3\x58\xed\x5f\xa0\x75\x57\xc3\xc0\x14\xcf\x54\x1f\x9a\xae\xea\x60\x25\xb4\x1e\xcd\xd8\x48\x51\x2b\xa2\x5e\x72\x1e\x43\xd3\x29\x18\x5f\x8f\x94\x89\x2e\x9e\x2d\x5e\x7c\xbb\x99\xe7\xad\x25\xf6\x9e\x5b\xef\x73\x2c\xfc\xeb\x07\x86\x11\x55\x3c\xc7\x83\x77\x37\x5e\x74\xe6\x6f\x1b\x9d\x8d\x20"}, {{0x3e,0xdb,0x50,0xff,0x07,0x4e,0xf9,0x71,0x7f,0x4f,0xb0,0xb6,0xce,0x25,0x2b,0xf4,0xbd,0x04,0x9c,0x90,0x83,0x77,0x5f,0x52,0x9e,0xaf,0x51,0xe9,0x75,0xcb,0x32,0x45,},{0x4b,0xc2,0x1f,0xe0,0x3e,0x67,0x9a,0xbb,0xfc,0xd8,0xc5,0xea,0x2b,0xcc,0x4d,0x83,0x8a,0x78,0x7d,0x48,0x40,0xc3,0xbc,0x39,0xde,0x4b,0x04,0xc4,0x17,0xc7,0x68,0xa5,},{0xde,0xb3,0xd9,0xfc,0x7b,0x2d,0x86,0xab,0x4b,0x92,0x6f,0x99,0x52,0x79,0x70,0xab,0xb5,0x18,0x38,0xbc,0xc2,0x91,0x9e,0x94,0xcd,0xa3,0x37,0x1f,0xd0,0xe7,0x69,0x3f,0xe3,0x7e,0x0c,0x40,0xe1,0x23,0x3b,0x09,0xff,0xa9,0x03,0xa0,0x34,0xdd,0xe2,0x87,0xc0,0x23,0x7d,0xc5,0x94,0xf5,0x3a,0xbc,0x87,0x84,0x48,0x69,0xdc,0xe9,0x20,0x02,},"\x97\x5e\xce\x4e\x81\xf0\x01\x5f\x5a\xc3\x04\x46\x09\xd0\xac\x3a\x8d\xf9\x14\x5b\x50\xc4\x28\x89\xdd\x31\x2f\x56\x3c\xf6\x12\x6e\x36\xff\xfa\xf2\x1e\xb6\xb8\x4f\xbd\xa1\x5a\xa8\x5c\x66\x14\x5f\x75\x41\xe5\xb4\x1a\x8e\x81\x70\x0b\xe3\x56\x22\x4f\xc1\x09\x32\x7a\x69\x19\x66\x56\x73\x53\x4f\x5c\x8a\x4a\x00\x17\x50\xb1\x99\xdb\xfd\x63\x06\x91\xaf\x55\x2d\x4d\x26\xa9\xd9\xaf\xb3\x3a\x16\xaf\x39\x11\x54\x12\x4b\x53\x42\x6c\x9f\x69\x50\x57\xb1\x81\x4f\xd6\xd3\x10\x29\x8a\xf6\xc8\x30\x68\x6a\x4a\x00\x7a\x14\xe0\x05\x7b\x72\xfb\xad\x5b\x80\x3a\xd3\x53\xd1\xc3\xfd\xb8\x90\xa9\xc8\x18\x08\xe8\x9f\x22\x91\x87\xbc\xb4\x4f\xee\x16\xa4\xeb\xca\xd5\xeb\xa4\x59\xb0\x28\x27\x2a\x56\x2c\x05\x07\x9f\xa7\xae\x3e\xca\xe8\x04\xa9\xe8\xc4\xf3\xf3\x15\x81\x3c\x5e\xe0\x84\x1b\xbc\xcf\xe4\xa9\x56\x23\xb5\x17\xa4\xb4\x2b\x2c\x6d\x97\xa3\xbf\x26\xac\xdb\xe2\xe9\x79\x63\x3f\x02\xaa\xc4\x66\x52\x6a\x3e\xbb\x14\xda\x19\xbc\x95\xf2\xc3\xfd\xf6\xbd\xb0\x8b\xe8\xbd\xe9\x7a\x86\x4c\x90\x7e\x91\x8c\x67\x9a\xb7\x26\xf8\x01\x77\x14\x58\x40\x21\x6b\x9d\xc3\xf9\x81\xef\x17\x87\x4f\x08\xb2\xfc\x66\x11\xa6\x34\x6c\x3d\xa6\xa5\x5e\xcf\xa7\x53\xc9\x91\x9f\x4f\x19\xe3\xc7\x90\x93\xbf\xd7\x8f\x86\x15\x98\xe4\x66\x6e\x1c\xab\x68\x8e\x46\x04\xd4\x6c\x9c\x58\x2e\xad\xb9\x2c\x98\x8f\x47\x8d\x16\x0f\x5a\x15\x18\x2b\x33\x40\x20\x17\x97\xd0\xb9\x55\x28\x2e\x4a\x21\x7b\x50\xb1\x4b\x10\xc9\xf4\x90\x67\xea\x3e\x84\xe5\x27\x4d\xca\xec\x74\x47\x4c\x57\x07\xc2\x8b\xba\x0d\xb8\xcd\xe3\xe8\x38\xd7\x31\x3c\x17\x1b\x85\xff\x2b\x9a\x3d\x2b\x16\x7e\x90\x61\xf8\x4d\xf3\xb1\x3b\xdd\x08\xb2\xd5\x01\xe5\x37\x92\xd6\x80\x54\xd0\x48\xab\xfe\x3b\xce\x98\xd9\x78\x25\x6f\x2f\xd2\xc6\xc4\xe7\x6f\x39\x68\x8c\xcc\xf0\xfe\x14\x9a\xf9\xd3\x47\xe7\xb0\x40\xef\x24\x1d\xd5\xa5\x3e\xaa\x5e\xab\x35\xa1\x8c\x68\xc7\x54\xa0\x6b\x03\x39\x9b\xbe\x56\xa2\x52\x68\xc8\x29\xa5\xba\x82\xb2\x81\x92\x04\x1d\x3b\xd2\x44\xeb\x08\xbf\x78\xe7\x6d\xef\x87\xcd\x09\xf3\x2b\xea\xc9\xbb\x63\x98\x23\xb3\x69\x67\xa5\x74\xd8\x96\x0d\x1b\xd0\x34\x35\x67\x9d\x93\xed\xdc\x55\x80\x63\xc5\x40\xb9\xc2\xf6\x09\xfe\xd2\xe2\xe3\x57\x6d\x19\xe6\x20\x9e\xab\x46\x6c\x20\x67\x91\xc3\xaa\x19\x96\x23\xfb\xae\x7d\x34\x97\xe8\x0f\xdd\x3f\xcb\xaf\x5b\x89\x11\x0e\xd7\x22\x44\x23\x4b\xe8\x5c\xca\x4b\x27\xa0\x9b\xb7\x0a\x26\xec\xe4\xeb\x8d\xd9\x70\xa2\x6e\x5b\x04\x36\x1f\xa5\x0e\x90\x38\x0e\xd6\x5f\x41\x4c\x1b\xe9\xf5\x06\x4f\x71\x42\x91\x16\x26\x7e\xdd\x69\x76\x42\x2a\xd9\x2d\xeb\x2b\x80\x4a\x92\xe8\x1c\x9f\x65\x22\xa0\xf3\xb5\xd8\xad\x36\xb4\xf8\x7d\xb5\x16\xa2\x28\x73\xe6\xf2\x72\x84\xf2\xca\x36\x0a\x2f\x40\xff\x3d\x8e\x23\xde\xc8\xef\x8a\x17\xa4\x3a\xcb\xb6\x12\x71\xa7\x27\xcb\x86\x90\xd2\x9b\xb8\x20\x16\x73\x6b\x31\x02\x62\x01\xdd\x3d\x38\x8d\x2c\x64\x3a\x73\xcf\xbd\x0a\x94\xe2\x05\x51\xfb\x5f\x8e\x1f\xfc\x39\x74\x12\x72\xaa\x23\x08\xdc\x8d\x21\x33\xa3\xfa\x9c\xf1\x09\x79\x6d\x69\xd2\xcc\x8a\xdd\xc4\x4a\xe2\x52\x77\x81\xee\x99\x3a\xf2\xa6\x37\xa8\x72\xf0\x2a\xff\x47\x4a\x70\x73\xf2\x9d\x9c\x89\x50\x77\x01\xfe\xcb\xbf\xd5\x10\x13\x53\x53\x7e\xba\x17\xc2\x96\x69\xda\xc0\x42\x7e\x38\xe2\x2d\xfa\xac\x91\xfc\x20\xd9\xe3\xfe\xe7\x91\xf4\x62\xa8\x63\xbb\x19\x08\xfb\x1e\x42\x04\xb6\x88\x80\x31\x4d\xda\xca\xaa\x35\xa1\x7a\xf5\xf5\x7a\x39\x9f\x19\x31\xe7\x8f\x5a\x37\x45\x4f\xd3\x8c\x57\xa6\x8e\x8d\x36\x78\x48\xa9\x73\x45\x18\x9c\x70\x07\x7f\xd1\xaa\x07\x54\xe7\x03\xe3\x52\x61\x80\x63\xb9\xe3\xfa\xf3\xb1\x4b\x5f\x0b\x27\x11\x36\x33\xc5\xd1\x73\x63\x74\x1e\x96\xa6\x7e\x81\x64\x01\xe8\x09\x8c\x17\xbf\xfe\x9c\x6f\x35\x87\x64\x6f\x40\xe9\xfd\xb6\x81\x9f\xd2\x2a\x74\x3a\x7a\x6e\x10\xfe\xba\x11"}, {{0xcd,0xa4,0xba,0x93,0x94,0x0a,0xa0,0xc0,0xc3,0x15,0x0b,0x39,0x29,0xb9,0x5e,0xe7,0x76,0x9c,0xe4,0x3f,0xd9,0x8e,0xca,0xff,0x9c,0x4a,0x50,0x9e,0x73,0x6d,0x5c,0x8e,},{0xf4,0xc7,0xa2,0x5f,0x1a,0x74,0x3d,0xaf,0x41,0x41,0x7e,0x47,0xe0,0x27,0x53,0x7f,0x24,0xf4,0x81,0xbd,0x1a,0x75,0xe6,0xb1,0xd3,0x3e,0xc4,0xc8,0x2c,0x55,0xa2,0xd3,},{0x31,0x04,0x8d,0x33,0x4a,0xf0,0x5a,0x4f,0x27,0x5f,0xf8,0x27,0x54,0x4e,0xa2,0x96,0xa4,0xa7,0x75,0xfa,0x59,0xef,0xa0,0x00,0xc5,0x76,0x13,0xfa,0x6e,0x5c,0x49,0x3c,0x3a,0x9b,0x79,0xe8,0xce,0x56,0xe7,0x22,0x5b,0x0f,0xa3,0x26,0x20,0x4f,0x03,0x36,0xc2,0x13,0x53,0x5a,0xe5,0x89,0x17,0x7a,0x8e,0xae,0xdb,0x6d,0xf8,0xb2,0x02,0x03,},"\x3a\x1d\x66\x8c\x66\x88\x41\x48\x96\xa7\x69\x7f\x3c\x2e\x43\x10\x98\xed\xfc\x45\x7e\x04\xd2\xda\x86\x95\x68\xad\x5b\x33\x10\xe5\x9e\x4c\x72\x7c\x90\x3c\xbf\x18\x17\x40\x88\x02\x31\x9a\x8c\x23\x1b\x58\x02\x3d\xfa\xe4\x94\xc0\x13\xaf\x0f\xdb\x78\xc9\x1d\x5b\x45\x7f\x8c\x47\xa3\xdc\x31\xd8\xc8\x59\x4a\xa0\x8f\x14\x62\x03\xfa\x2c\x28\xb3\xdd\x79\x6a\x11\xa9\x7a\xde\xde\x6a\x7a\x70\x9b\x5a\x19\x18\xef\x1b\xea\x83\x53\x3c\x78\x34\x73\x70\x33\x56\xf5\xbe\xea\x7f\xd1\x8a\xc4\x4e\xc6\x89\x04\x95\xed\x17\x0d\x03\xf1\x5b\x41\x86\x08\xa7\xd9\xef\xd5\x2f\xa1\x09\x18\x63\x80\x51\xc4\x48\xd9\x8d\x57\x24\xf5\x67\xc8\xc6\x7f\xd5\xb6\xec\x8c\x3d\x63\x60\x08\xb9\xba\xe5\xe8\xb1\xe9\x84\xf8\xff\xb8\xb6\x4b\xee\xbd\x63\x45\xa1\x05\xc1\xc1\x08\x31\x32\xfd\x45\x08\xd6\xac\x0d\x4e\x91\x45\x50\x12\x10\xe5\x17\xd9\xb2\x24\x78\xe2\x15\xb6\x02\x59\x9f\x80\x37\x62\xdc\xd5\xa4\x09\xb3\x46\x0e\x7f\x34\x0f\x47\xef\x77\x28\x1a\xd2\x38\x3d\xe0\x8c\x5b\x80\x95\x38\xaa\xec\x92\x2b\xfc\xa0\xd6\x75\x2f\x14\x79\x72\x64\x6d\x0a\x8d\x83\x40\x77\x2c\x87\x1d\x3b\x34\xab\xc0\x60\x37\xde\x3a\xb4\xe3\x71\x29\x86\x5d\x5b\xa7\x0b\x6f\x3c\xc9\xa0\x59\xef\xb7\xdd\xdc\x38\x82\xf4\xfc\xfe\x13\xf4\x48\xc9\xbc\x66\x48\x88\x58\x96\x03\xba\x98\x68\x3a\x93\xb4\xb3\xb1\x01\x49\x92\xa5\x5c\x8e\x4e\xa1\xba\xf9\xcc\x00\xd1\xba\xdf\xf5\xfd\x7f\x5d\xa5\xe3\x07\xfb\xd1\xb4\xc9\x84\xe0\xfa\x0e\xde\xc5\xd3\x0b\xfe\xf5\xf4\x77\x30\x12\x63\xb5\xd7\x52\x00\x1b\x85\xdd\x52\xdf\x3b\x4a\x7a\xc2\x3b\x93\x0a\x91\xc0\xa4\x57\x65\xa6\x64\x88\xd8\xeb\x59\x01\x85\x70\x60\x06\x7b\x82\x37\x81\x88\x54\x92\x88\xdd\xc6\x18\x31\xe5\xb6\x84\x1b\x34\x4c\xae\x22\x50\x04\x22\x19\xcf\xb4\xac\xe0\x23\xe6\x91\xf9\xe4\x8d\x00\x6e\x9a\x07\xc6\x7d\x24\x68\xf9\x35\x93\xb4\xaf\xc1\x61\xc0\x76\x8b\x6c\xeb\x74\x4c\x24\xc9\x23\xda\x34\xaf\x3d\x5e\xd5\x77\xcc\x7f\x85\xd4\x91\x56\x0f\x4c\x0b\xcb\xcd\x1d\x5e\x34\x21\xbd\x1c\xcf\xaf\xb3\x73\xd6\x51\xbd\x61\xed\x71\xc0\x9e\x99\xf6\x12\x00\x17\x04\xd0\xc6\x30\xd8\x54\x7b\xd9\x70\xb6\x6e\x7f\x5c\xe7\xa0\x14\xe0\xff\x5a\x33\x7d\xc5\xc5\x6a\x99\xf1\x31\xb9\x12\x91\x40\xee\xea\x39\x39\x7c\x48\xca\xa9\xa8\x08\x6f\x9f\xd9\x91\x50\xbe\x7e\xf8\x7b\x6d\x4b\x94\xb1\xbd\x52\x87\x8b\xf3\xbb\xfc\xce\xac\xc2\xcc\x45\xe8\x97\x1c\x3a\x4d\x4a\x3e\xb8\x6a\xf9\x87\x4d\x4f\xa5\xe7\xca\xa7\xf4\x5d\x15\x53\xff\xbb\x41\x64\x5b\xf0\xf5\xe9\xb2\x97\x72\xe3\xdc\x08\x1b\x25\xb5\x2e\x1c\xb7\xe2\x16\x74\x83\xd5\x4f\xba\x69\x0d\xdb\x29\xd5\x46\x2d\x2a\x27\xa3\x5d\x85\xf0\x07\xad\xed\xe2\xa3\xdd\x72\x81\xf6\x54\x33\x6a\xfa\xfb\x73\x70\x78\x2b\x29\xca\xd6\x43\xd9\xd9\xdb\x2f\x05\xf2\x81\xb5\x3e\x13\x3e\xc3\x0e\xec\x09\xfb\x0d\x06\x1b\x74\x58\x1a\x2b\xd2\x79\x0b\x13\x73\x91\xf1\x93\x28\x88\x0f\x64\xc5\x3b\xe7\x00\xd0\xfa\xdd\xb7\x0d\xc1\x65\xd2\xd6\x2e\x67\x1e\xb9\x44\x9a\x2e\x6e\x9d\xf2\xc1\x6d\x8f\x49\xfa\x4b\x5b\x84\x30\x9f\x73\x35\x13\x3d\xbe\x87\x2c\x5a\x8f\xdc\xfb\xc4\x98\x0a\xbf\xb3\xc9\x59\x7d\x5d\x66\x7a\xd2\xf6\x88\xc7\xab\x24\xc9\xe4\x40\x29\x8d\x72\xb2\x8b\x0f\xcd\xe9\xc6\xf0\x71\xbc\xcc\x93\xe8\xdd\xbb\xa7\xb6\x0a\x0b\x54\x4a\x2e\x06\xc3\x9c\x67\x23\xd4\xf7\xdc\x18\x5c\x21\x13\x5f\xd1\x3a\x72\x77\x0b\x97\x61\x19\xe4\x9a\x1f\x81\xed\x47\x6b\xe0\x7c\x44\x3d\xe0\xb0\xee\x76\xfb\xd9\x19\x38\x93\x28\xb3\xeb\x86\x07\xbc\x2f\xe3\x8f\x85\x74\x5e\x28\xad\xb7\x48\x2b\x70\x1c\xcc\x66\x90\xe4\xae\x5a\x93\x32\xea\x44\x61\x31\x79\x38\x7d\xc6\xfc\x47\xc1\xd1\xec\x36\x60\x35\xe9\x91\xe1\x40\x43\x23\xbd\xbb\xf5\x35\xf1\xc3\x3c\xf5\x7b\x67\x23\xf1\x3c\xa6\xca\x32\x9e\x2a\xaa\x4b\x46\xb4\x26\x07\x33\x99\x06\xc7\xef\x49\xb3\x2d\xb8\x2c\xdf\x6a\x87\xad"}, {{0x21,0x7e,0xcd,0x6a,0x7f,0xcc,0x98,0x71,0x92,0x10,0xc3,0x4c,0xc2,0xe1,0x4f,0x5e,0x2d,0x6b,0x5a,0x22,0xf2,0x68,0xc1,0x4b,0xc4,0xd8,0xa7,0xf2,0x81,0x72,0x00,0xc3,},{0xd5,0x91,0x91,0xce,0x28,0x2d,0x72,0xfe,0x3a,0xc4,0x58,0x78,0xe2,0x4b,0xb2,0xf2,0x8c,0x40,0x9b,0xa0,0x5d,0x76,0xce,0x9b,0xcf,0x22,0xf5,0x0b,0x0c,0x77,0x86,0x75,},{0xa0,0xb1,0x69,0xe8,0xe9,0xce,0x55,0x75,0x55,0xe0,0x33,0x4a,0x0d,0xe7,0x43,0x8e,0x55,0x36,0x75,0x48,0x9e,0xa4,0xba,0x9c,0xc6,0x3a,0x23,0x4d,0x00,0xde,0xd8,0xab,0x69,0x67,0xa3,0xbe,0x90,0xef,0x69,0xe0,0x76,0xdb,0x9e,0xa3,0xd5,0xca,0x23,0xb3,0x24,0x8d,0xd2,0x59,0x91,0xee,0x1f,0x4d,0x80,0x62,0x0b,0xf4,0xdb,0x43,0x8f,0x0e,},"\x9b\x53\x37\xe7\x8f\xb3\x82\xf2\x2e\xa6\x0e\x03\xc0\xbf\x3e\xe4\x70\x0b\x69\x78\xa9\x1e\xe6\xac\xdf\x6a\x40\x9e\x49\x18\xd1\x68\x48\x81\xfa\x1d\x11\x8c\x08\xc9\xf6\xf2\xca\x0c\xab\x56\x74\x02\xc9\x50\x10\xe7\xab\xdf\xe8\x48\xae\x79\xba\x24\x9a\xdc\xb9\x6e\xae\x1d\xfa\x08\x43\x95\x21\x39\xcf\x49\xb5\x88\x64\x78\x95\x69\x1a\x2e\x98\x80\x46\x6b\x7e\x77\xe5\x4f\x6f\x60\x81\x5e\xbf\xd5\xe5\x74\x8f\x41\x3c\x0e\x15\xf9\xd5\x76\x79\x9b\xcf\x31\x28\x47\x10\x63\x6f\x6e\x9d\xc7\x87\x85\x00\x79\x6e\xed\x80\xc8\xaf\x4b\xe2\x96\x19\x52\xea\x80\xbb\xed\x14\x04\xbd\x5d\xae\x9e\x6d\x05\xfd\x4f\x32\x5a\x3b\x83\xcd\x45\x28\xa0\x86\x9c\xef\x84\xb4\xd3\x0e\x02\xf9\x41\xd7\x49\xa8\xda\xc9\x7b\xb3\xfa\x83\x9d\x25\x73\x9b\x97\xec\x37\x45\x36\xbd\xea\x50\x04\x84\xa9\x41\xdb\x9f\x22\x99\x97\x06\x58\xd4\x11\x48\x29\x5c\xa0\x84\x6c\xa2\x36\x62\x38\xb6\x20\x1a\x48\xb3\xe4\x47\xed\xbe\xa7\xa4\xc8\xf7\x10\x20\x14\x27\x69\xe1\x5f\xa7\x2a\xe5\xf2\x87\x14\x0b\xc5\x95\x3b\x8a\x9a\x24\x2d\x20\x5f\xc0\x19\x09\x1f\x2a\xbe\xd0\xfd\xa4\x7f\x52\xd5\x9a\x02\x04\xce\x74\x01\xc1\x82\x9b\x58\x57\xb9\xa0\x91\x6f\xce\xbe\x2e\xef\x99\x1c\x41\x3a\xcd\x71\xb1\x8d\x85\x90\xd6\xb6\xd0\xfb\x39\x94\x30\x26\x78\xc2\x9f\x2b\x6a\x53\x02\x3f\x91\x87\xe4\x6c\x36\x79\x0b\xce\x73\x87\x3c\x54\x5a\x72\xbe\xb5\x53\x29\x4b\x1e\xe5\xd0\xd0\xdf\xf2\x39\xe2\x8e\xc6\x3b\x01\xe4\xd8\xfe\x0d\x6e\x69\xb1\x60\x1e\xfa\x24\x11\xf0\xc0\x60\x1e\x7e\x4f\x65\xc9\x84\xf8\x29\xf0\xdc\x2a\x84\x21\xe7\xf6\x6d\x93\x30\x53\x71\x51\xc7\x24\x3c\xa5\x24\xd7\xa5\x47\x35\xc6\xe3\x44\xf1\xfc\x93\x8e\xae\xea\x27\x79\xc9\x40\x89\x1d\x6d\x01\xaa\x55\xf4\x0c\xc1\xad\xba\x12\xe8\xa6\x7a\xd9\xa2\x7f\xe6\x3f\xb4\xf3\x8d\xc0\xf0\x18\x41\x92\x57\x18\x42\x72\x55\xbd\x66\x5d\x5e\xb3\xbc\x86\x98\x96\xdb\x86\x25\x20\x4a\xd4\xb0\x2f\x5a\x22\xaa\xee\xad\x6e\x30\x04\x71\xfe\xa6\x1d\xbb\x1b\x55\xc0\x71\x36\x5c\x58\xb1\x51\x1f\x38\xb0\x9a\x46\x71\xbd\x66\xb3\xfe\xdd\xa9\xc8\x7e\x43\xd1\xeb\xf3\x01\x76\x4e\x18\xfc\x0c\xf1\x6b\x2d\x2d\x67\xed\x23\x9b\x39\x3a\xc7\x19\x68\xa9\x03\xc0\x24\x77\xfb\x2d\xf9\xef\x01\xdb\xfc\x31\x67\xde\x72\x65\xf8\x91\xe4\xfd\x24\xd0\x2c\x63\x10\x35\x19\xb8\x6a\x70\x85\xb1\xec\x2f\xb4\x19\xdb\x76\x6b\xee\x7a\x64\x1a\x4b\xe4\x29\x61\x4a\xb8\x9f\x20\xf9\x75\x34\x10\x72\xbf\x04\x41\x9f\xb6\x9b\xe7\xa9\xee\x71\xa5\xb4\x9a\xf8\x3e\xd3\x22\xba\xc6\x8a\x42\x9f\xf5\xc5\x20\x67\x73\xbe\x54\x38\xb6\x5e\x53\xf6\x09\x72\x9f\x4f\x6a\x21\xc1\x33\x39\x11\x26\x4d\x63\x92\x70\x17\xe8\x13\x6b\x47\x25\xcd\x1c\xc9\x64\xe0\x8c\xa0\x93\x3a\x56\x1e\x7e\x3f\x59\x87\x76\x83\x30\xe2\xe5\x4f\x8d\x72\x8f\x59\xed\xfe\x2c\x91\xc4\xf9\x9a\xef\x97\xd1\x85\x59\x19\x5a\x3d\x8e\xb3\x15\xdf\xf9\x6f\xe2\x76\xda\x71\x37\xef\xf9\x30\x57\xac\x73\x1e\x06\xa6\x0a\x58\xbd\x8a\x9a\xe8\xc7\xcb\xaf\xf0\xcb\x33\x72\xc6\x8d\xaa\x17\x5c\x42\x8d\x52\xf1\x07\x3a\x38\xbf\x29\x46\x5d\x2a\x71\x28\xbb\x40\x07\x40\x06\xed\xcb\x72\x5a\x83\x1d\x81\x28\x64\xef\x43\xf3\xb8\x66\x7c\x9f\xb7\x10\x93\xa1\x67\x30\x49\xde\xc0\x5e\x09\x16\x9d\x86\xfe\xe9\x2d\xf2\x86\x00\x8a\xd9\x90\x65\xa2\x92\x97\x97\xa9\x13\xd0\x23\x3f\x4d\x1a\x95\xa2\x20\xbd\x91\xc1\x1d\xd9\xc4\x56\x85\xdc\xad\x38\x57\x80\xa0\xc4\x8b\x9c\x4a\xd2\xd6\x63\x03\xe8\xde\x4a\xf1\xdb\x3c\x04\xe4\xa3\xdd\x42\x19\xfe\x77\x3f\x83\xa8\x92\x4b\x0f\xcb\xff\xfc\xf2\x64\xab\xce\x32\x83\x29\x24\x03\x6b\xfa\xbb\xa6\x54\x6b\x1d\xf4\xe3\xf7\x88\xed\x8a\xd5\xc2\xcd\x92\xb2\x64\x1b\x47\x09\x0a\x10\x3c\xf5\xbd\xc4\x6d\x8b\x21\x43\x17\x47\x57\xda\x80\x1c\x36\x0a\x7a\xa1\x07\xfa\xc6\x54\xb3\x4c\x86\x0b\xd5\x4f\x76\xbb\xf4\x3c\x48\x47\x8d\xf4\xfe\x7a\xa5\x9c\xf9\x1d"}, {{0x08,0xd1,0xd0,0x6f,0x3e,0xc2,0x9e,0xb5,0x22,0x93,0x90,0x7b,0x70,0x5e,0xc5,0x6c,0x5a,0xb3,0x54,0xfb,0x78,0x67,0x37,0x73,0xae,0x61,0x25,0x30,0x94,0xb8,0x9e,0x82,},{0xc1,0xb9,0x9a,0x87,0xad,0x15,0xbd,0x46,0xf6,0xc8,0x48,0x45,0x2a,0xf0,0xfa,0x3c,0xcc,0xcb,0x5c,0xdf,0x6e,0x34,0x8d,0x81,0x6e,0x36,0xc5,0xd0,0xfc,0xa6,0x6e,0x66,},{0x0b,0x8e,0xdc,0xb8,0xb1,0x5a,0x8c,0xd0,0x74,0xc4,0x1d,0xc2,0xa1,0xba,0x29,0xd9,0x64,0x8d,0x6a,0xcb,0xdc,0x33,0x83,0x14,0x70,0x7e,0xca,0x6f,0xb4,0x71,0x4c,0x99,0x54,0x3b,0x49,0x07,0xb9,0xf8,0x5e,0x57,0xee,0xcf,0xfe,0x0f,0x7a,0x6b,0x70,0x73,0xa8,0x09,0x46,0xf8,0x08,0x75,0x53,0xf4,0x68,0x31,0x09,0x27,0x3a,0x60,0x4a,0x08,},"\x12\x0b\x35\x57\x3c\x34\x91\x4b\x37\x30\x51\x88\x0d\xa2\x7e\xd2\x41\x37\x7f\x0e\x78\x97\x2c\x98\xd0\xfa\xeb\xaa\x76\x7e\xb7\xa7\xc7\xe7\xc6\xfc\x34\x05\xa4\x33\x6e\xf9\x5b\xc5\xda\x92\x25\xbb\xd0\x9e\x9e\x11\xf2\xa1\xbf\x14\x2a\xf4\xe8\xa0\xf9\x24\xd3\x23\xdd\x5a\x49\xdf\xe5\x84\xf0\x90\x43\x9c\x08\xe5\x15\x11\x34\x4d\x47\x0c\x62\x00\xac\x7e\x7c\xa1\x50\xd0\x88\xa9\x1e\x47\xc4\xc9\xff\x74\xe3\x8a\x42\xa3\x32\x15\x5d\x81\x52\xae\x4a\xbd\x11\x61\xad\xca\x93\x4c\x23\x4c\xe4\x60\xaf\x87\x89\xe5\x3f\x10\x9d\x7d\x31\xee\xde\x0a\x90\x9b\xd1\x93\xfc\x8d\x3c\x2c\xfe\xc1\x0b\x14\x3c\x31\x47\x67\x11\xbb\xec\x27\xe1\x96\xa5\x49\x85\xbc\x34\x71\x67\xac\xd2\x33\x50\x88\x27\xba\xd3\x6e\x54\x8c\x88\x06\x42\xb8\x6a\x28\xc6\xd3\x40\x4b\x51\x1d\xa2\x4f\x11\xdf\xaf\x6a\x8f\x46\xdd\xcb\xc9\xde\x9e\x39\x15\x97\x66\x9b\xdd\xfc\xa6\x56\x0f\x91\xac\xd3\x45\x9f\x32\x9b\xb0\x71\xdd\x80\xda\xdf\x35\xf0\xe5\x0d\xf5\xb1\x0f\x88\xd2\x67\xac\x9d\x30\x62\x33\x0d\xd9\x9a\x6b\xcf\xa1\x31\x87\xf4\x5c\x0c\x21\x4d\xcd\xe2\xcd\xf9\xc3\xba\x4d\x59\xe6\x33\xa3\x54\xa4\xe2\x77\xc6\x77\xbb\xdf\xa2\x41\x91\x17\x9c\xbc\xaf\x05\xa1\x0d\x40\x78\xd8\xad\xd9\x3b\xc9\xed\x8f\x6c\x6c\x49\x97\x57\x40\x36\x55\x34\x1f\x90\x4e\x37\xd9\x27\x75\x0c\x69\x9c\x26\x9d\xc9\x0d\xc2\x6d\x00\x56\x25\xc3\xf4\x12\x4b\xff\x66\xfe\xca\x59\xd4\xab\xff\x41\x72\xba\x3d\xf4\x5a\x87\x43\x02\x23\x10\x30\xfa\x78\x33\x84\xf5\x09\x99\xe3\xc4\xba\xa5\xea\xdb\x45\x14\x52\xc8\x88\xb5\x19\x27\x2e\x90\xf7\x3c\x68\x72\x76\x8e\x0d\xe2\x0e\xe2\xe5\xf9\x50\x2f\x35\xe4\x9f\xec\xc2\x8b\x75\x20\x18\x87\xfe\xd2\x81\x8e\xff\x54\x53\x98\x39\x2f\x5e\x5b\x68\x76\xbc\x55\x6a\xc1\x3a\x19\x03\xad\xa1\xb9\xd7\x25\xb0\x4a\x14\x20\x4b\x59\x9e\xc3\x3d\x62\xb7\xdc\xae\xea\x8c\x52\x87\x7b\x2c\xfd\xc3\x55\x8a\x91\xd2\xc9\x15\x75\x00\xa3\xbb\x6d\x45\x2e\x5e\x2f\xf0\x93\x29\x4f\xc4\x33\xcb\xd6\x34\x65\xbb\x19\x13\x07\xed\x80\x1a\x15\xb8\x5d\xc2\xff\x0b\xb3\x83\x12\xf8\xb8\x17\xa4\x36\xd4\x22\xcf\x46\x07\xc6\x4e\xe7\x03\x59\x23\xdb\x6b\x96\xa3\x89\x99\x10\x14\x9b\x0d\xa4\xaa\x3e\x96\x68\x5d\x71\x63\xaa\xcf\x9e\x61\x9d\xc6\x08\x13\xce\x4f\x34\x4f\x30\x79\xb4\x3f\x18\x7f\xa3\x1b\xda\xcb\x9a\x1d\x77\x20\xb9\x39\xd5\xbd\x24\x1b\x96\xa1\x77\xd7\xb7\x76\x8f\xfe\xbf\x79\x04\x4c\xd2\x95\x6d\x6f\x88\xdb\x1c\x24\x3a\x10\xfe\xde\x68\x14\x85\x2c\xf4\x04\xb2\xcd\xcf\xa7\x74\x07\x6d\xc1\x25\xc7\x0a\x57\xc6\x90\x7e\x99\xaf\xe3\x96\x22\xae\x11\xf5\x57\xe7\xd3\x4b\x39\xaa\xaf\x45\xf8\x34\x05\x8d\x2f\xe5\xf1\x5b\x5e\xb7\x0a\xc1\x5a\x90\xa3\xde\x58\x50\xab\x1d\xcb\x48\xb0\x6b\x6c\xca\xa4\xb4\x2f\x85\x7e\x71\xec\x00\xb8\xa3\xd8\x97\x4b\x0b\xea\x68\xfa\x0f\x66\x55\x92\x11\x5b\x4f\xa5\x55\x72\xcf\x0b\x07\x38\x64\x1f\xc8\x68\xd4\xa2\xe7\x14\xdb\x3a\xd7\x21\x9a\x82\x3d\x54\xb7\xf7\xc2\x65\x6b\xa5\xc5\xee\xbe\x35\x94\xc7\xdb\x12\x29\x8c\x16\x25\x1d\x98\x45\xbf\x2f\x78\x00\xb4\x19\x0b\x74\x6e\x21\xb0\xc1\xa5\xc4\x7a\x3d\xf9\xa0\x59\xce\x09\x56\x67\x4e\xb7\x03\xde\xcb\x0a\x00\x45\x43\x7d\xa4\xda\x10\xf2\x86\xd7\x20\xd1\xb9\xdf\x05\xfb\x24\x41\x5d\x68\xe0\x65\x57\x0e\x6b\x31\x50\x31\x42\xd0\x33\x35\xa8\x07\xbd\xca\x30\x89\x2e\xdb\x5f\x55\xf8\x98\x9d\x9e\x64\x96\x59\xc0\x74\x4c\x54\x33\xbf\xb4\xde\xeb\x11\xc2\x62\x6a\x86\x50\xe5\x4d\x4d\x39\x8b\xa1\x9b\x64\xf6\x8b\xed\x06\xd7\xfc\x40\x8f\x47\x0a\xc7\x04\xe2\xac\x92\x2a\xc1\x41\x1f\xee\x24\x54\x3e\x56\xf2\xf5\x0b\x6b\x08\x95\x3d\xc5\x6a\x7a\x75\xed\xae\x43\x0a\x6d\xf2\x8a\x22\x7a\xda\xc9\x1b\xa2\x6f\x0e\x19\x85\x95\x32\x77\x39\xcb\xa3\x03\xe9\xaa\x39\x3e\xa6\x61\x8a\x84\xf8\xf5\x03\xd0\x05\x6e\xe8\xd8\x7e\x37\x96\xe0\x36\xcc\x51\xcc\xb7\x91\xde\xb7\x95"}, {{0xf0,0xc8,0x5c,0x76,0xb1,0x53,0x2e,0x89,0xae,0xa9,0x75,0x15,0x6d,0xdd,0xb1,0xd3,0xd0,0x66,0xf6,0x40,0x9f,0x84,0x1b,0xb4,0x41,0x09,0x22,0x72,0x5f,0x26,0x9d,0x86,},{0xfd,0x75,0xfc,0x75,0xc3,0x6f,0x83,0x49,0x8d,0x8f,0x08,0x27,0xf0,0x1d,0x3b,0x45,0x7f,0x8b,0xc4,0xd9,0xdc,0x55,0xe4,0xa4,0x62,0x74,0xdd,0xf0,0x03,0x4f,0xe1,0x6f,},{0x42,0x18,0xfe,0x4c,0x1d,0xce,0x79,0x5c,0xa9,0x2a,0x49,0xa6,0xf4,0x79,0x8e,0xb5,0x41,0x2d,0xc8,0x25,0x86,0x03,0x14,0xec,0x46,0x9f,0xed,0x45,0xde,0x3a,0x7b,0xf8,0xea,0x55,0xe8,0x53,0xa3,0x49,0x58,0x4b,0xd9,0x5a,0x82,0x6a,0x58,0x5a,0x50,0x3f,0xd5,0x0b,0xfe,0x4c,0x63,0x5e,0xf1,0x83,0xd0,0x73,0x01,0x36,0x7e,0x90,0x10,0x0a,},"\xae\x2e\xb0\x18\xd4\x8d\xbd\x4f\x21\x0b\x16\x77\x8b\x5b\xd2\xfd\x14\xc9\x4e\x6b\xbf\x2b\x3f\xf8\x55\x18\xe5\x60\xab\x8d\x3e\x72\x20\x1f\x43\x34\x20\xf0\x0f\x11\xbc\x78\xe0\xe9\xf3\x72\x08\x75\xb2\xe9\xdc\x11\xe0\x43\x25\xb8\xb3\xf0\xd4\x65\xdd\xab\x21\x51\x1c\x45\x7d\x6a\xca\xd8\xf2\xfd\x5f\xdc\x0d\x28\x23\xfe\x6c\xaa\x66\xa1\x91\xa3\xb6\x32\x6b\x32\xa1\x6b\xef\xd6\x4d\x15\xb3\x61\xa4\x15\x13\x64\x1b\xce\xba\x26\xbf\xe9\x3b\xdf\x85\x4a\x4f\x8f\x8a\x0b\x29\xf7\xe2\x82\x62\xe2\xd6\xe9\x8a\xa2\x4a\xc2\x7f\x6f\x78\x83\xac\x01\xa7\x4c\x40\xcc\xe9\x47\xeb\xac\x70\xe9\xfe\xf2\xa1\x6e\x62\x89\xe4\x68\x95\x0e\x39\x1e\x9e\x24\xef\x58\xe8\x8a\x44\x37\x72\x69\xce\xba\xfe\xd8\x98\x7d\x22\x0d\xca\xe2\xd8\xb1\x26\xb6\xbf\x81\x21\x67\xd0\x23\xd9\xba\xac\x95\x0d\x9d\xb8\xcf\x52\xde\x63\x06\xbd\x48\x99\x96\x10\xc0\xa4\x33\xfa\x9e\x17\x71\xcb\x83\x2d\x41\x97\xaa\x34\x0d\xd0\xcc\xd0\x74\x4f\xc6\xb6\x2f\x90\xbd\x3e\xbb\x53\x08\xca\xb5\xf9\x40\xe2\x91\x64\x23\xcf\x0f\x3b\xf0\x80\xc0\x6a\x94\xf0\x26\x91\x04\x60\xdd\xa8\x09\x37\x4e\x64\x57\xf0\x64\xf1\x78\xe3\x08\xe7\xa1\xb5\xaf\x4d\xef\x31\x90\x07\xd0\x41\x77\x8c\x3d\x6a\x41\x9f\x51\xba\xdf\x87\x66\x38\x79\x30\x2b\x53\xff\x26\x9d\xf4\x42\xd0\xe0\x5c\x95\x8d\x5b\xaa\xcc\xee\xd7\xf5\xf8\xaf\xc8\x11\xc1\x89\x00\xee\x3b\x0f\x61\xe5\xdc\xcf\xd5\xda\xc8\x53\x32\xd3\x2e\xbb\xa3\x71\xaa\x2d\x47\xa6\x06\xf5\x95\x46\xe4\xbb\xb6\x05\xa7\x46\x77\xb1\x9a\x0f\xe8\xe9\x5f\x9f\x77\xc0\xb8\xb7\x1d\x07\xe9\x83\x00\x4d\xc2\xab\x2c\xb3\x79\x3a\x32\x3c\x10\x8d\xfa\x79\x70\xda\x00\xdb\x19\x86\x74\xbd\x34\xbf\x73\x10\x76\x7f\x76\xa2\x24\xe0\x7b\xdb\xc6\x2b\x9d\x07\x8c\xbc\x75\x36\x7e\x2e\xba\xa2\xc5\xd2\x74\xbf\x34\x27\xf2\xa0\xcc\x5d\xbe\xf0\xaf\x4e\x63\xad\x88\x9e\x13\x1b\x12\xbc\x8c\xa3\x2d\x82\x7f\x72\x60\xb0\x44\x9d\x04\x43\xfa\x28\x84\x40\xef\xd1\x36\x4e\x3c\x98\x49\x47\x7e\x73\xee\x0b\xa4\x24\x0d\x49\x2a\xf5\xce\x13\xc3\x45\x61\xb4\x50\x10\xc1\x09\xd8\x42\xc1\xfe\xd1\xbe\x3f\xa9\xe1\x84\xaa\xa1\x40\x64\xf4\x3f\x6d\xea\x0b\x65\x9c\x5b\x97\x89\x3c\xf2\xa4\x33\xbc\xfb\x1d\x2a\x87\xeb\x56\x4b\xd9\x09\x2c\x26\x66\x70\x47\x31\xf8\x3e\x56\x43\x4b\x2a\x42\x99\x65\x0c\x70\x60\xf9\xff\x7e\x8a\xad\xcb\x45\x93\xf6\x09\x18\x8d\x8b\x46\x76\x46\xcf\xe9\x52\x70\x06\x7a\x1d\x35\xcd\x75\x9f\xe5\x81\xaf\x4e\x62\x60\x2c\x02\xef\x14\x74\x41\x43\xeb\x42\x4f\x2d\x9f\x33\xa6\x02\x88\xc1\xb2\x5f\x08\xe4\xb2\xf5\xfe\xae\x06\xcb\xcc\x2b\x20\x52\xbf\x38\x4e\x1a\x6f\xcd\x84\x71\xce\x5e\x56\x58\xd7\x7f\x40\xc3\x5c\x41\x5e\x2a\x9e\x09\xfb\x58\x3b\xb7\x47\x12\x58\xe7\xc8\x06\xf3\xc2\x18\x22\xdd\x10\xf5\x6a\x64\x0c\xdc\x00\x12\x8d\x3b\xa5\x56\xba\x51\xdc\xaa\xb4\x7c\x3b\xaf\x9f\x01\x97\xd3\x66\x3d\xe8\xd0\x93\xe8\x31\x73\x32\x5d\xef\x1e\x83\xa2\xf5\xf5\xac\xf1\x2a\xe0\x9f\x3c\xe9\x6c\xd8\x88\x03\x4d\xcb\xe6\x14\x7d\xc5\x99\x83\x62\xa4\xbc\x40\x6d\x28\x84\x6a\xb1\x50\x3c\x17\xc9\x4f\x9a\xfd\x90\x3c\x9a\x58\xe1\xce\xbb\x4a\xbb\x4f\xf6\xf2\xa4\x10\x24\xe0\x6d\xca\xad\x14\xf5\xb7\x0c\x1b\x26\xe6\x9f\x96\xec\xf1\x4b\x8d\xa3\x1c\x62\x1f\x9a\xd4\xe3\x0a\xeb\x98\x23\x78\x67\x1f\x7d\x1f\x2c\x4b\x57\x2c\x41\xbb\x88\x30\x84\x0a\xc5\xdd\xce\xd8\x81\xf8\xff\xf2\x10\xc3\xc7\xf2\x36\xd8\xc5\xf2\xcf\xda\xcd\xa2\x98\x93\x30\x2f\xde\x15\x28\x2d\xb5\x40\xcb\x54\x37\x37\xdd\x77\x85\x25\x69\x22\x1f\xdd\xcd\xd6\x8d\x87\xe2\x40\x21\x79\xd3\xa5\xa7\x77\x34\xc2\x75\xa1\xd5\x60\xa4\x62\xf4\x03\x18\xbb\x68\x19\x83\x7d\xa3\xd3\x05\xeb\x49\xb3\x86\x50\xef\xdc\x8f\xe4\x09\xd4\x0f\xb9\x4c\xd5\xdc\x3e\xb0\x27\x38\xf3\x88\x52\xf6\x71\xa0\xc4\x14\x14\xb7\x6f\xb4\x36\xf3\x41\x7b\x8e\xf3\x00\x92\x1c\x00\x9e\xbb\xd7\xcf\x8e\x11"}, {{0x18,0xe2,0x68,0xb1,0x5a,0x25,0x01,0xdd,0x4c,0x97,0x9d,0xc1,0x03,0xca,0x6a,0x84,0x22,0x16,0x13,0x2b,0x3b,0x50,0x81,0xd7,0x75,0xf8,0x86,0x40,0xf8,0x9c,0x80,0x41,},{0xb3,0x4e,0x19,0xc1,0xe2,0x08,0xfb,0x48,0xa8,0x85,0x07,0x9d,0x9f,0xbf,0x37,0xc7,0x4f,0x92,0x71,0x09,0x60,0xf8,0x32,0x15,0x4f,0xab,0x18,0x57,0x0c,0xfb,0x4c,0x1d,},{0xf2,0xdc,0xfc,0x06,0xef,0x1d,0x8e,0xcc,0xd8,0xe4,0x0b,0xdf,0x01,0x30,0x7d,0xd1,0x96,0x83,0xf2,0x14,0xd4,0xf0,0x84,0xe6,0xb6,0x93,0x4f,0x63,0x72,0x78,0x30,0x0d,0xbb,0x18,0x89,0xf2,0xd3,0x7f,0x53,0xb3,0xae,0xf2,0x6f,0xbb,0x3e,0x36,0xbd,0x75,0x98,0x5f,0xa7,0xc8,0xea,0x6d,0xdf,0xfa,0x72,0xc8,0xe4,0x06,0xf2,0x4b,0xb2,0x0e,},"\x42\x4b\xdc\xf0\xb2\x56\x00\x14\x39\xd1\x69\x58\xff\xf6\x48\xcf\x7a\x86\x04\xaf\x22\xcf\xa5\xb4\x43\x31\xb4\xdc\x35\x6d\xff\x25\xcc\x05\x63\xda\x9d\x64\x01\x33\xac\xb7\x0b\x6a\x11\x76\xc4\x82\xdb\xc9\x40\x8c\xd6\x79\x3d\x56\xbc\x29\xcc\x40\x88\x23\xd3\x88\xed\x88\xb2\x4c\xeb\x66\x21\xdb\xac\x00\x23\xee\x69\xf7\x6f\x82\x96\xa7\x39\x52\x11\x68\x5b\x3c\xea\xa9\x95\xf0\x35\x5d\x9a\xad\x3d\x97\x35\x8f\x4a\x37\x9e\x59\x20\xec\x54\x5f\x46\x96\x21\xcf\x76\x8a\xbf\x55\xd2\xa5\x54\xc9\x49\xb0\xed\x70\x18\x7c\x22\x05\xad\x03\x29\x85\xc9\xb5\xb2\xe4\xba\x57\xe0\xb4\xa4\x7d\x34\x45\x12\xb8\x4b\xfe\x9f\x3a\xa5\x60\xfe\x6e\xcf\xc5\xbd\xf8\xc3\xb4\x18\x45\x29\x35\x73\xf8\x1e\xd3\xb7\x0e\xdc\x63\xa3\x0c\x70\xcd\xa3\xf4\x55\x90\x13\x13\xf6\xd2\x3d\xb3\x09\x47\x8f\x03\xe3\x4e\x71\x35\x6d\x83\xfa\x5d\xb9\x28\x0c\xc2\xb4\x36\x9c\x3d\x24\xdd\x90\x38\xf2\x47\x59\x6c\x39\x1e\x48\xb2\xf3\xf8\x90\xa1\x41\xca\x1d\x12\x07\x7c\x69\x34\x47\x35\xa5\x9b\x1d\xd4\x07\x6b\x22\xe1\x61\x89\x99\x1e\x5f\x1b\xe4\xfb\x76\x95\xaf\x90\xeb\xea\x5d\xf2\x86\x13\x5c\xec\x2a\x6e\x99\xaa\x1d\xda\x32\x8e\x62\xc0\xdf\xb6\x37\x42\x20\x2d\x63\x62\x4d\xcc\x0c\x5c\xf1\xa5\xdf\x79\xe2\x87\x8d\xbc\x71\xfa\x96\x57\x66\x01\xaf\x22\x84\x4f\x54\x57\x33\x12\x6a\xf7\xd3\x98\x4c\x3e\xd2\x52\xe6\xa8\x76\x44\x5c\x92\x25\x9f\xbb\x47\x0a\x10\x56\x9b\x49\xe5\x79\x1f\xd0\x18\x2c\xfe\x1c\x3f\x88\x29\x7f\xac\xc8\xc3\x1a\x53\x32\xf1\xf4\xeb\x49\x58\xdb\x13\xb6\xc0\x79\xaa\x9c\x94\x94\x87\x26\x34\x03\x19\x0c\x83\xc1\x1a\x43\x19\x1f\xfe\xc6\x02\x3f\xb3\x4c\xfa\xb2\x52\x5b\xeb\x54\x6c\xf9\x20\x0a\x96\xf5\x85\x4b\x2f\x78\xec\xb2\xd9\xa5\x3a\xa9\xd2\x87\xa9\x0d\x4d\x41\x0a\x63\xad\xa0\xe9\x75\xd3\x04\xd5\x14\x83\x53\x46\x3f\xa8\x05\xb4\x80\x5f\xb4\x68\x7e\xd8\x85\x7d\xfc\xe4\xbc\x6e\x80\x83\x3c\x8f\x9a\x79\xcd\x4f\x02\x9a\x2d\x80\x2b\xfd\xc8\x19\xed\x0c\x0a\xc8\xf2\x10\x23\x28\x7f\x2b\x4b\xaf\xbc\xc8\x99\x93\xfe\x46\xd5\x2a\x9c\x62\x46\xde\xad\x61\x7d\xf7\x97\xd4\x8e\xe9\x85\xf0\xf0\xdf\x9a\xa8\x2e\xa2\x0e\x0d\x0d\xb2\x8a\x25\x4a\x9a\x25\x3f\x39\xf9\xcf\x01\xe3\xdb\x8f\x3e\xbc\xf7\xcb\x97\xce\xc5\x8c\x4e\xfe\x03\x12\x69\xb4\xb3\x7e\x4c\xbb\x36\x1f\x73\xab\x4b\x49\x80\xbd\x90\x08\x49\x53\x88\x44\xc5\x2c\xb3\xac\x75\x83\xb8\xf8\x96\x53\xa0\xde\x65\xa8\xbe\x91\x58\x2c\x55\x23\x9c\xb8\xf5\xd5\x31\x8a\x88\xd1\x60\xe1\xc8\x71\xe5\xea\x7e\x75\xf5\xa6\x9c\xba\x85\x38\x22\x1a\xb4\x2c\xe2\xa2\xc4\xd9\xc3\xb7\xec\x85\x7f\x23\x0d\x57\x37\x31\x13\x36\x86\xae\x8a\x7e\xd6\x40\xf4\x2f\x31\x02\x94\x89\xe4\xe6\xaf\x2b\x3e\xa4\xc7\x94\x8e\xd5\x37\xc0\xc5\x90\x67\x26\xc2\xb6\x25\xfd\x5f\x94\x9e\x3a\x7c\xf3\xb6\xe9\x98\xec\x76\x1d\xd6\xe2\xb5\x17\x1a\x68\x74\x97\x52\xe7\x21\xb7\x88\xc3\x47\x7f\xa1\x90\xcd\x6e\xa8\x1d\x57\x9d\xce\x64\x62\xd9\xc6\x62\xad\x89\x62\xe7\x93\x38\x71\x0c\xc8\xd2\x73\x8a\x5f\xb0\x4a\xdf\xdb\x3f\x14\x32\xcf\xd8\x0e\x2e\x96\x7d\xa0\x00\xd8\x3a\x0f\xa8\x5a\xba\xe2\x95\x2f\x3f\x36\x83\xe2\x54\xd8\x68\xf4\xbf\x80\x9e\xb2\xe3\x00\xe7\xb2\x09\x73\x4a\x3c\x89\x4e\x96\x6b\x16\x08\x8d\x5e\xd3\x54\xbf\xfb\xff\xbb\xf2\xec\x2b\xe9\x3a\x32\xa8\xbe\x5c\xfa\x18\xfa\x56\x53\x01\x2e\xda\xe5\xaf\xd8\x70\x9c\xa5\x5c\x0c\xf2\x3a\x55\x0d\x34\xca\x0f\x32\xd8\xf6\x66\xfb\x47\xa1\x2f\x2b\x73\x53\xa4\x0c\x53\x79\xf7\x53\x66\xc1\x3f\x4a\xb9\xf1\x4c\xf8\x0a\x94\xe1\xf1\x3d\x8b\x09\xb7\x6f\xd8\xd1\x4f\xfa\x53\x8f\x31\xfd\x8a\xeb\x49\xd3\x34\x33\xf4\xdf\x7c\x2c\xa6\x73\x99\x57\x9f\xe9\x90\x78\xaa\x72\x1d\x6b\x6f\xc0\xc5\x0e\x8a\x91\xfc\x71\xca\x25\xea\xc1\x37\x6f\xc6\x71\xbf\x61\x53\xe7\x20\xb2\x5c\x7e\x97\xa3\xd4\xef\x84\x42\xac\x67\xac\xf5\x8b\x50\x4b\x67\x15\x8f\x91\x30\x25"}, {{0x3c,0x39,0x3f,0x9d,0xf1,0xfb,0x0b,0x1e,0xec,0x09,0xb7,0xf2,0x70,0xb8,0x59,0x82,0xba,0x0f,0xd5,0xe4,0xb1,0x79,0x5e,0x1a,0x7f,0xa9,0x91,0x37,0xfe,0xe2,0x4d,0x7d,},{0x97,0x4f,0xe2,0x37,0x30,0xfc,0x17,0x94,0x56,0x70,0xfb,0xc1,0xf8,0x0b,0x93,0xf9,0x45,0x93,0xc8,0xd4,0x4b,0xc7,0x5d,0x18,0x9a,0x6b,0xbf,0xaa,0xba,0xf5,0xdb,0xd9,},{0x22,0x33,0x3e,0x56,0x41,0x0f,0xdc,0xbf,0x84,0xf6,0xa8,0xde,0x74,0x13,0x37,0x69,0x16,0x84,0x49,0x5b,0xa6,0x9e,0xff,0x59,0x6d,0xb9,0xc0,0x3a,0x28,0x12,0x10,0x88,0x1e,0x6c,0x91,0xef,0xa9,0x1b,0x21,0x83,0xc0,0xea,0xc9,0x16,0x15,0x28,0x17,0xa7,0x8c,0xa7,0x24,0xba,0x7c,0x8b,0x51,0xbb,0x4c,0xaa,0xde,0xa9,0xa3,0x41,0xeb,0x0e,},"\x54\xd8\xb8\xd5\xfa\xc2\x8c\xff\xa7\x7a\x09\x16\xd6\x33\x3c\x16\xed\xbc\x8b\xb7\x4a\xa0\x6e\x56\xdc\x00\xe4\x7e\x39\x29\xe4\x08\x64\xb8\x84\x0d\x91\x20\x79\x59\x7e\xac\xd8\x1d\xae\x43\xe2\x78\x5d\xfc\x68\x9f\x3e\x85\xf8\xc6\x65\x81\xef\xc5\xe8\x53\xd1\xfa\xaa\xc7\x44\x40\x0a\xb0\x8c\xbd\xb5\xd1\x61\x46\xfa\x60\xf9\x99\x05\xed\x84\xfd\x29\x36\xdd\x73\xf4\xbc\xa2\x57\x2b\x7c\xf5\x16\x05\x60\xff\xaa\x68\xda\x7a\x67\xe4\x0e\x08\xa7\xbb\x7a\xef\xc4\x04\x3e\xbe\xd5\xfe\x80\xa4\x14\x81\x7e\xdf\x2c\x63\xf6\x2f\xac\x0d\x47\x44\x6e\xd0\xbb\x58\x40\x58\xf4\x87\x2f\xec\xff\x62\x15\x59\x31\x1a\x27\x0a\xea\x37\xa6\x29\x68\x64\xe8\xd1\x68\xbf\x1e\x2f\x55\xcd\x3b\x27\x6e\xdf\xa6\x12\xb5\xd9\xc3\x36\x2e\x61\x8b\xe6\xe8\x2a\x6e\x5f\x82\x66\x79\x24\xf3\xd1\xd3\xdf\x82\x5f\x9d\x23\xf4\xd6\x14\x2d\x31\x00\xdf\xc7\x0f\x70\x60\x3a\xbf\x3f\xda\xda\xca\x69\xef\x6a\x18\xef\x90\x92\xb3\xc4\x1e\xc6\x58\xab\x27\x21\x6f\xc6\x14\x7a\x08\x0a\xcd\xa6\x0a\x84\x19\x84\xee\x83\xf4\x1a\xc4\x2a\x80\xea\xac\x91\xff\xfc\x82\x28\x39\x1e\xf5\x83\xab\x3e\xdd\xcf\x87\x65\x23\xc2\x02\x81\x35\x53\x00\xd8\x6c\x11\xa4\xe7\xc1\xad\xe8\xe5\x05\x60\xf4\x39\x06\xc9\xbc\x8c\xa5\xfb\xf8\x33\x9f\xbe\xbd\x02\xe3\x3e\x85\x18\xbe\xe5\xe8\x06\xb8\xc1\x0f\x82\x77\xf4\x10\x66\x47\x35\xa2\xbf\x55\x68\x39\x63\x54\x92\x45\x2e\x6c\xa0\x79\xde\xb9\x75\x1c\xfc\x67\x97\xf4\x9b\xca\x96\x13\xff\x2e\x7f\xdd\x36\x46\xf7\xc5\x23\x6a\x36\xbd\xf0\x05\x17\x45\xe5\x95\xdc\x00\x72\xfd\x66\x51\xd5\x76\x27\xa6\x00\x4c\x0f\x0c\xfa\xe8\x56\xbb\xc2\x8a\x12\x31\xcb\x83\x96\x65\xff\x04\x15\x2e\xc3\x1c\x00\x7b\x3e\x2e\xd0\xa9\x73\xb2\x4c\x93\x14\x9c\xe7\x01\xe6\xfd\x65\x39\x20\x6a\xe9\x1b\xec\x4c\xe6\x5a\x89\xdb\x26\xc7\xd3\x8c\xec\xb8\x91\x9f\x96\xfb\x6c\xb8\xf6\xc1\x93\x9d\x90\xfb\x3f\x90\xb8\x87\x78\x9f\x29\x57\x5a\xb2\x0e\x0b\x08\xbc\x35\x81\x53\xd8\xc0\x35\x21\xdc\x89\x18\x70\xb5\xf7\xee\xdc\xc1\xe6\x2b\xee\x7d\xa0\x63\xae\x66\xff\x0a\x4b\x7d\x98\xd1\xcb\x75\x8f\x69\x74\x3c\x3d\xb3\xae\x2a\x2c\x9b\xe1\xbe\x09\x4f\x17\xcd\x28\xf9\x2d\x8c\xcb\xca\x98\x3c\x74\x9c\x75\xc6\x10\xf8\x40\x83\x6e\x2c\x43\x0c\xcd\xef\xf0\xaf\xa5\x44\x44\xf1\x2b\x4a\x4f\x00\x2c\x60\x94\x51\x83\x42\x44\xc0\xc0\x7d\xf8\xe1\x22\x02\xa6\x5f\x94\x44\x7c\xd4\x90\x3a\xcb\x60\x6d\x77\x25\xa8\x6e\x4a\x23\x43\x98\x4e\x67\x9c\x4a\xf1\xb3\x67\x9c\x75\x5e\xa5\x0d\x0a\xbe\x2f\xcc\x0c\x1c\x33\x51\xa9\xee\x19\x6b\x46\x44\xc4\x24\x22\x2b\xe9\x9e\x2f\xb3\x73\xf9\x64\x1e\x3f\xae\xbf\xf4\x31\x70\xeb\x03\xfb\x8e\xc4\x55\x7d\x15\x1a\x55\xfa\xb6\xc4\x99\xd4\x44\xc8\x4b\xe8\x9f\x24\x47\x68\x2d\xe4\xe6\xf6\x35\x34\x75\xef\xcb\x8f\xc5\x32\x56\x76\x3a\x94\x8d\xc7\x5c\x51\x5f\xa3\x53\x54\x5d\x0c\xba\xd2\x9d\xf5\xe9\xdb\x5c\xc4\x57\xed\x30\x86\xcf\xfb\x3d\x75\xe8\x46\xc4\xe8\xd8\x81\x47\xfc\xd0\xd8\xaa\x5a\xba\xb4\x9b\x5e\x05\xc3\xd7\xfe\xef\x63\x79\x43\x34\x7a\xd3\xf4\x92\xee\x35\x6e\xf3\x48\x81\xcf\xd8\x5a\xbc\xe8\xa1\x44\xce\x77\x61\xe2\x84\xe8\xb8\xcb\x08\x96\x60\x49\x04\x7a\x99\x6e\x23\x55\x9f\x77\x6b\x1a\x9f\x41\xcb\xa3\x95\x41\x08\x48\x6e\x29\x27\xbe\xb6\x43\x3a\x36\xff\x8b\x2f\x03\xaa\x74\xb3\xd2\x09\xc4\x88\xe0\x77\xf9\x24\xf2\x31\xe2\x83\x45\x94\x2c\x7d\xcc\x2e\x61\xd7\xc9\xb5\x22\xb6\x59\xfc\xb5\x36\x62\xaf\xf3\x64\x8f\x66\xda\x3e\x83\xe5\x9b\x0d\xaa\x90\xb9\x4c\x51\x5d\xad\xab\x10\xd5\xa8\x39\xcb\x3a\x2f\x1d\x3c\xd0\x92\xde\x55\xd9\x95\x13\x8c\x3a\xc0\xb9\x07\xaf\x15\xac\x63\xec\x18\x74\x11\x43\x27\xe2\x19\x71\x34\x5e\xf1\x70\x31\xd5\x26\x17\xe7\x84\xda\x37\x71\x43\x9b\xe2\xe8\x41\x48\xbc\xfe\xa1\x32\xbd\xe1\x0e\x6f\xda\x54\x7d\xcb\xb1\xc4\xd8\xf7\x4d\xdc\xe1\xfc\xcf\x82\x13\xe0\xda\x6e\x97\xb8\x1f\x75"}, {{0xf8,0x66,0x9c,0x88,0xf1,0x68,0x5b,0xbf,0x04,0x80,0xcc,0x92,0x21,0xac,0x2e,0xad,0x8f,0x55,0x1b,0xfa,0x87,0xec,0xba,0x2f,0xd4,0xdd,0xf3,0xba,0x34,0x76,0xeb,0xda,},{0x34,0x72,0x3f,0xb8,0xe2,0x53,0xad,0x9c,0x71,0xce,0xfd,0xe0,0x36,0x28,0xd2,0x04,0xe5,0x35,0xde,0x47,0x9e,0x10,0x48,0xe5,0x18,0x87,0x62,0xa1,0xf3,0x37,0xfe,0x5f,},{0x37,0x46,0xda,0x6c,0xd8,0xca,0x10,0x8b,0xee,0xf0,0x64,0x87,0xbe,0xe6,0x35,0x84,0xf8,0x12,0xc8,0xe0,0x69,0x5f,0xc8,0x63,0xb8,0x6e,0x5d,0xb1,0x32,0x38,0x0b,0x62,0xff,0x85,0x44,0xf6,0xf3,0x74,0x82,0x5b,0x0e,0x3e,0xa0,0x62,0x0e,0xf8,0x54,0xc1,0x33,0x11,0x14,0xd6,0x67,0xdf,0x1f,0x9e,0xa7,0x76,0xc3,0x96,0x38,0x70,0x29,0x0d,},"\x5b\x49\x41\xbe\xec\x22\x41\xc9\xfb\x76\xd8\x48\x4f\x4f\x3f\x3a\xb4\xff\xe8\xec\xc8\xe7\xae\xc7\x6d\xe2\xab\x8c\x36\x85\x84\xd7\x51\xb0\xd3\xfe\xb8\xa1\xdc\x81\x68\xcd\xc6\x94\x96\x8f\x66\xb2\xa0\xb0\x52\xaf\xbf\x8b\xe3\xa7\xd9\x51\x63\xe9\xda\x91\x41\xc5\x9c\xa5\x59\x76\xc2\x92\xc5\xc7\x4d\x31\x31\x8d\x6a\x91\xe7\x81\x7c\x5a\x8b\x2f\x81\x21\x18\xcb\xeb\xa3\xa1\x33\x23\xcd\x97\x48\xbf\x86\xed\x1a\x85\xdd\x4e\xbc\x0d\xf4\x95\xcf\xa3\xd4\x62\x74\x34\xbf\x14\xaa\xe8\xab\x67\x81\x46\x7a\x56\xd9\x65\xd1\x0e\x63\x71\x98\x9d\xfa\x0f\x6b\xc0\xf7\x85\x9f\x37\x71\xeb\x90\x04\xb3\x43\x67\xdb\x27\x05\xdb\xd6\x0f\xa8\xf7\x89\x5c\x1e\xad\xf5\x9f\x53\xda\xb1\x68\xb4\xf9\x36\x39\x79\x02\x55\x01\xdd\xd9\x68\x0d\xeb\xc0\x7c\xd1\xca\x4a\x09\x97\x87\x6e\x92\x11\xf3\x07\xd9\xb7\xb9\xd9\x04\xe4\x8d\x28\x61\xa7\x78\xb8\x79\xad\x59\x0a\x9a\x2f\x14\x1b\xd5\x68\xe3\xa1\xbb\x24\x94\x62\x8e\x9e\xc0\xc6\x42\x55\xae\xea\x6f\x0e\xed\xca\x30\xad\x38\xa1\xf3\xff\xec\x3b\x2b\x5e\x94\x2e\x21\x94\x01\x04\xe9\x14\xd1\x1a\x44\xc0\x0f\xdd\x47\xda\x3e\x55\x13\xaa\x85\x30\xae\xe2\x47\xc9\x5c\xa6\x6d\x08\xa2\x60\x8c\x75\xba\x98\x58\xda\x14\xf9\xa8\xa3\x2b\xe7\x13\xd3\x09\xe0\xf5\x84\xc8\x1e\xf5\xbe\x04\x0e\x00\x65\xf0\x7b\x77\x5a\xe1\x75\xdf\xe2\xc8\xb9\x0a\x88\xcc\xda\x17\xfa\x4f\x21\xc7\x7e\xad\xf5\xd2\x5b\x6e\x40\x4b\xf0\x04\x47\x9e\x05\xa0\x1a\xc0\x04\x2b\x89\x93\x7e\xb2\x78\xc1\xc3\x4f\x33\x02\x8d\xb7\x80\xba\x3b\x61\x79\x18\x59\x5a\x39\xc0\xfc\xad\x67\x4b\x85\xc4\x0c\xac\x8d\x34\x5b\x7c\xa0\xbb\x48\xa2\x8e\x66\xc4\x4d\x8b\xb5\xf2\x79\x41\xe4\x0b\x0e\x9c\x70\x97\x97\x6c\x62\xdf\xef\x50\xc9\x8f\x17\x56\x6c\xcb\xac\xc8\x7c\xb0\x3b\x94\xdf\xdf\xaf\x32\xf1\xe5\x6f\xfa\x63\x9d\x63\x61\x1e\x21\x3c\xeb\xf5\x4c\xd0\xa3\xe2\x17\x2d\x81\x1c\x0e\xbd\x75\xb1\xa8\x64\x62\x64\xdd\x8b\x1a\xbd\x46\xe5\x48\x97\x2a\x1b\x26\x2c\xd9\x5d\x51\x15\x36\xdd\xdc\xb4\x97\x29\xfe\x7b\xd0\x0b\x38\x38\xbd\x2f\x20\xa1\x42\x64\x0e\xdb\x1b\x6e\x76\x5b\x65\xda\x72\xe7\x23\x32\x61\xc8\x89\x2e\x2f\x49\x49\xbb\x51\xf3\x2a\x1a\x5a\x3e\xe1\x49\xbe\xa2\x6f\xdc\xed\xb9\x91\xd2\xcd\x12\x66\x37\xe2\x97\x1e\x9b\x6f\x0b\x78\x5d\xf2\x8a\x48\xf3\x01\x70\x73\x49\x42\x3f\x44\xe8\x46\x22\x89\xd7\x25\x49\x82\x30\x48\x9d\xf1\xb5\x1b\xe3\x0f\x08\xd7\xe3\x25\x05\x65\xc6\xef\x82\x4b\xc5\x3a\x1b\xa7\x4a\x57\xa2\x5c\x06\x86\xad\xcb\x6c\x82\x5a\xb1\xca\x70\xc8\xa5\xd4\x6d\xbb\xc6\xfa\x60\x74\x61\xe2\x6d\x16\xfe\x93\xbb\x3d\x3a\x94\x3a\x3d\xc0\x5f\x30\xea\x6d\xc8\xbb\x12\xd7\x08\x21\xd3\x20\xf1\xad\xf1\xce\xba\x4b\xe6\x57\x19\x4f\x7f\xcc\xd2\x19\x90\xf8\x62\x9d\x74\x46\x01\xcf\x52\xea\x6d\x94\x05\xaa\xa2\x87\x8f\x1e\xec\x40\x03\xb4\x5a\x42\x18\xd8\xf8\x0b\xb0\xf5\xaf\x04\x73\x26\x48\x77\x52\xe2\xb7\x6d\x68\x87\x25\x20\xbb\xea\xe7\xb3\x09\xd7\x82\x82\xa0\x73\xfe\x0b\x1a\x1a\x7a\x98\xda\x23\xdf\x68\xca\xf8\xc2\x69\x9b\x1c\x7d\x0f\x47\xbd\x7d\xe2\xc0\xbb\x23\x36\x99\x63\xe6\x8a\x69\x74\xc8\xe2\xb5\x95\xb8\x29\x3a\x9f\x4d\x98\xdf\x7e\x9a\xe3\xad\xd2\xa3\xf6\x4e\x83\x03\x97\x39\x64\x2d\x19\x22\x04\xe8\x5e\x6c\x48\xd5\xd6\x71\xf6\xc7\x5a\x0a\x89\x57\xed\xbb\x74\x18\x76\x20\xf2\xab\xa9\x9c\x1c\x62\x58\x4c\x59\xac\x00\x64\x7e\x3f\xb4\x02\x92\xb9\xdc\x1a\x33\x46\x86\x85\x53\x39\x2f\xd3\xf1\x1d\x6d\xc6\xf5\xf2\xf4\xe8\x5e\xe2\x51\x25\xcd\xd6\x44\x74\x3c\x7d\x45\x28\x1e\xda\xc6\x38\x4c\x77\xcb\x98\xa6\x7d\x9a\xe6\xfc\x9a\x0a\x76\xb9\xf6\xfa\x69\x6f\xdf\x4a\xce\xab\x5f\x79\x4e\xe5\x21\xb1\xe5\xa0\xee\x57\xaf\x53\xbd\xf1\x76\x80\x1b\x4f\x45\xcf\xb3\xca\xe3\x28\x72\x34\x23\x4b\x77\xce\x21\xed\xf8\x68\x0d\x68\xc4\xa8\xee\xcf\x1b\x03\x53\x7e\xa5\x69\x9a\xcb\x56\x27\x77\xe4\x2a\x48\x6f\xe7\xcd"}, {{0xce,0xcc,0xc6,0x83,0x11,0xfc,0x45,0xb6,0xc2,0xa2,0xf1,0xff,0x9c,0xdd,0xe0,0x07,0xec,0x78,0x7f,0xdf,0x25,0xd0,0x2c,0xcd,0x2a,0x1c,0xad,0x9d,0xe3,0xfb,0x4c,0xff,},{0x6f,0x80,0x47,0x34,0xef,0x92,0x82,0x41,0x80,0xda,0x71,0xe5,0x5c,0xf3,0xbf,0x1a,0xfe,0xf6,0x5b,0xcf,0x56,0x09,0x62,0xe0,0xb0,0xac,0xbb,0x2d,0x8c,0xca,0x59,0x84,},{0x3c,0x44,0x62,0xaa,0x47,0x01,0x01,0x32,0xdb,0xb2,0x63,0x11,0xe4,0x44,0x72,0x72,0x79,0xed,0xad,0xe1,0x5a,0x4d,0x66,0x2c,0xf6,0x47,0xf3,0x27,0x5c,0xf3,0x25,0x3e,0x6d,0xe9,0x33,0x38,0x30,0xe0,0x51,0x7a,0xa5,0xfa,0x7b,0xc2,0xd0,0xe6,0x3e,0xa2,0x59,0x7a,0x94,0xb0,0xfe,0x92,0x70,0x6e,0xcd,0x17,0x2c,0x5e,0xc5,0xc7,0xf0,0x06,},"\xba\xc1\x86\xd9\xfe\x5a\xbd\xa7\x9c\x3a\x35\xa7\xa3\xc2\xea\xe6\xae\x6a\xb2\x82\x47\x91\x27\x70\xc8\x4e\xfd\x04\x8e\xbd\x3a\xba\x57\xc3\x7c\xf4\xc6\xc7\xf3\x0a\x79\xf6\x8a\x3f\x76\xb2\x0c\xd8\xc6\x63\x1f\xcc\x96\x67\x05\x22\x08\x0e\x6b\x62\xe8\x87\xae\x6f\x44\x36\xd4\xca\xf5\x69\x43\x13\x1c\x52\xdd\x28\x2b\x25\x1c\xd0\x75\xf1\xf7\xf8\xe0\xbd\xb6\xbe\xdf\xc9\xa0\x79\x6f\x55\x79\x04\x2b\x56\xe6\x93\x74\x96\x1b\x11\xdf\xd6\x1b\x12\xde\x2b\xb7\xd4\x9b\xfc\x50\x9c\xdb\x31\x38\xf3\x35\x6a\x0d\xde\xd9\x8f\x53\x01\xb7\xc4\xa7\x48\xbf\x89\xb2\x3d\xf4\xf7\x47\x2f\xf8\xb1\xf5\x05\xd7\x65\xc6\xff\x82\xdb\xad\x74\xb9\xd7\xae\xf2\x2f\xbc\xca\x0b\x7f\x35\x04\x2f\x9a\x76\x2b\xd0\x69\x02\xbb\x21\xc7\xf9\xf7\xf6\x6b\xef\x38\x90\x1d\x75\x01\x2d\x61\xd7\x44\xde\xe7\xaf\xd8\x9f\xc7\xe9\x08\xc4\x06\x85\xbd\x44\x0a\xed\xa4\x20\x4d\x00\x6f\x26\x30\x7d\x82\xa4\x96\x96\x31\x15\xf9\x0e\x09\xf7\x66\x88\x29\x1f\x4a\x67\xd6\x41\x1f\x76\xd1\x66\x17\x87\x5b\x2b\x99\x82\xdf\xdc\x5e\xe9\xb8\x3b\x98\x17\x00\x93\x19\x11\x0b\x54\x04\xc6\x31\x16\xfb\x6e\x94\x64\x84\x6f\xa0\x09\x55\x56\x32\xf0\x76\x98\x4c\x15\xe1\xf6\x08\x17\x33\xa0\xd4\x6f\x2d\x6a\x3c\xeb\xf7\x9e\xd9\x02\x0c\x9d\xec\x8d\xf1\x58\xa3\x34\x1f\x39\xea\xa5\xfc\xf1\xcf\x42\xa9\x48\x49\xb2\x35\x2c\x1a\x1e\xcd\x4f\xb8\x14\xc2\x0d\x07\xdf\xda\x31\x2b\xd4\xf2\xf5\x8c\x15\x76\xb4\xaa\x31\x5c\x96\xc8\x78\x6a\x4c\xfb\xb7\x36\xb2\xd2\x3c\x38\xb1\xd8\x1c\x46\x44\xea\x36\xaf\xa0\x76\xe0\x55\xbe\x59\x17\xcd\x7a\x92\x35\x0a\x7e\xd6\x6a\x5a\xb2\x25\x3f\x55\xc4\xfd\x1a\x0d\x0e\x6d\x4e\xda\xb5\xf7\x12\xed\xb4\x40\xc0\x6f\xac\x8f\x07\xe6\xd7\x3c\xc9\x0b\x2b\xa7\x13\xd7\x3c\x73\x80\x23\x61\xce\x46\xa4\xeb\x5e\xd1\x06\x0c\x4c\xf5\x32\x07\xd3\x01\xf0\xfc\xd4\xf0\xc9\xd1\x58\x0d\xb2\xfc\x10\x59\xd3\x72\x07\x64\x38\xa0\x11\x92\xa7\xf9\xfd\x6f\x78\x83\xf5\x64\x22\x86\x6f\xd9\xf0\xaf\xe5\x3f\xdc\x91\x0a\xfa\x5a\x75\x1c\xbf\xa3\x77\x59\x25\x79\x16\x5c\xb5\x6d\xc3\xeb\x4d\xce\x67\xe3\xdb\x33\xa9\x81\xa5\x6b\x7d\x9f\x7b\xde\xa7\x4f\xba\xea\x34\x78\xe6\xab\x2c\x64\x4f\xd7\x77\xb8\xbf\xa7\x2a\xa0\xf0\xa5\x21\x98\xd3\x6e\x5b\x63\x4d\x2c\x9a\x11\xb7\xfe\x0a\xb2\xf9\xa4\x09\x01\xc5\xb1\x48\xa0\x19\x2e\x95\xa1\x70\xba\xf7\xd5\x35\x0f\xe0\x1e\x56\x95\x42\xb9\x34\x85\xa4\x19\x71\x44\x34\x85\xfa\xf5\x7f\x67\xf5\x6d\xfe\x2c\x58\xe5\x39\xc9\xf9\xb4\x49\xc3\xf9\x12\x49\xa1\x0c\x1a\x1b\xe7\xe0\xb3\xea\xbe\x8e\xe0\xba\xb1\xf1\x1f\x89\x61\x4d\xce\xd4\x18\xc6\x2a\x07\xa0\xb5\x9a\x13\x70\xd6\x53\x1b\xa1\x77\x09\x1c\x6a\xd5\x95\xfb\x59\x48\x82\x04\xf6\x33\x44\x73\x6e\xa1\x01\x7a\xff\xbe\xb7\x53\xa9\x97\x86\xb1\xeb\x64\x51\x0e\x2e\x71\x7e\xc9\x0e\x02\x74\x4b\xc3\x52\xd3\xf1\xb2\xab\x7b\xe0\xeb\x65\x62\x3d\x04\xfb\x3a\x04\x6c\xe7\xf4\xda\x69\x7d\x82\x98\x28\xa5\x2c\x7b\x04\x3b\x2a\x82\xec\x97\xfb\x04\x1b\xf5\x19\xb4\xde\x31\x6f\x4e\x2f\x5b\x0d\xb6\x2a\xed\x0e\xed\x95\xca\xd4\x32\x0c\x19\x47\xc3\x5f\xd8\x84\x7a\x58\x67\x87\x28\x83\x56\x11\x19\xc0\x1b\x00\x89\x21\x3d\x84\xdb\x99\xd4\x39\xf0\xf6\x44\x4d\x87\x83\xdd\x4b\x64\xbe\x35\x77\xcd\x46\x1c\xf7\x53\xc8\xe6\x1c\x91\x2d\xe2\xe5\xd7\xa7\xe2\xba\xef\xa2\x58\x97\x5d\x16\xef\x31\x17\xda\x59\xa6\xc8\x93\xf3\x33\x91\x87\xdf\x31\x68\xb8\x9f\x0f\xb0\xb2\x19\x8b\xb6\xf1\x59\x4b\xb8\x8f\x3d\x61\x0f\xce\xc3\xe3\x6d\xe0\x4a\xe1\x03\x28\x11\x2e\x6f\xf7\x4f\x5a\x8c\xe6\x8d\x40\x71\x74\xb4\xc0\x69\x1c\x76\x02\xea\xb1\xbb\x10\xf3\xc4\x9d\xd2\x2b\x84\x50\x78\x2d\xea\xe9\xa7\x31\x5e\x3b\x88\xde\x79\xcd\x15\xe6\xc9\x26\x81\x65\xed\x3a\x0f\xb3\xf8\x9b\x18\x3e\x1a\x21\x21\x52\x00\x3f\x32\xa2\x66\x5d\x37\xcd\xd7\xf6\xb5\x6c\x24\x53\xe5\x58\x0c\x4d\x21\xf9\x98\x3f\x38\x79\x8e\x9b"}, {{0x7b,0x30,0xb4,0x2d,0xc2,0xc6,0x70,0xa1,0x95,0xfe,0x2a,0xf8,0x79,0xfc,0x5d,0xe3,0x74,0x02,0x45,0x88,0xfe,0x3d,0xe4,0x3e,0x2d,0xd5,0x08,0x44,0xf4,0x8f,0x42,0xbe,},{0x82,0xa2,0xac,0x60,0x79,0xf2,0x12,0xb5,0xee,0xdd,0x0c,0x19,0xe9,0x39,0x4f,0xaf,0xac,0xd7,0x4d,0x71,0x6f,0xde,0xfb,0xfc,0x6c,0xb8,0xa7,0xea,0xf4,0x1c,0x03,0x62,},{0x0a,0x63,0xb8,0x4f,0x46,0x93,0x5f,0xaf,0x3e,0xa1,0x64,0xb0,0x0a,0xf2,0x27,0xb0,0x08,0x68,0xa0,0x3f,0x56,0x12,0x93,0x5e,0x18,0x61,0x9a,0x84,0xa2,0xe5,0x7b,0x88,0x51,0xd7,0x46,0xe6,0x3f,0xd9,0x10,0x07,0x87,0xf5,0x33,0x8d,0x51,0xc1,0x07,0x3c,0x2f,0xc5,0x30,0x30,0x99,0xe1,0x87,0x3e,0x5e,0x3d,0x3e,0x5c,0x03,0x6f,0xbe,0x01,},"\xc6\x68\x7a\xef\xeb\xc5\xc8\x16\xd1\xa3\x34\x53\xbe\xca\x50\x20\xd3\xa9\x7c\xda\x1d\xac\x56\x62\xf0\xaf\x72\xba\xd4\x44\xe2\xfd\x11\x76\xa7\xb0\x4c\x1b\xd0\x9d\x83\x26\x18\x20\x9b\xf3\xe3\x3e\x52\x35\x38\xd6\xda\xa7\x53\x04\x6e\x87\x1d\xd3\xb3\xc7\xac\xad\x33\xe7\x9c\x1b\xb7\x89\x64\x07\x86\x5d\x16\x8d\x4b\xc3\x75\x7b\xde\x4f\x82\x3c\x08\x77\x86\x26\xf8\xc7\x1f\xb7\xcf\xcf\xdf\x03\xa8\x24\x97\xbd\x8b\xe7\xd8\xf8\xef\x64\x90\x30\xb5\xf3\x6a\x33\x94\x59\x96\x8e\x24\x6a\x1e\x42\x08\x53\xda\xce\x41\xca\x85\x0a\x4e\xea\xe8\x34\xae\x11\x96\x10\xca\x4c\xd0\x66\x2a\xac\x39\x62\x15\x86\x99\x80\x27\xef\x2f\x61\x48\x5c\x02\x85\x06\x71\x4a\xe0\x9c\x76\x39\x9d\x87\x3e\x80\x81\x58\x57\x8a\xa5\x9e\x82\x12\xf5\x88\x65\x31\x9f\x9e\x0d\x2b\x8d\xa7\xad\x52\x9e\x0a\xc1\xf1\xeb\x43\x5a\xec\xfd\x35\xf5\xab\xb9\x2b\xea\x50\x73\x49\x6b\xf4\xc0\xbf\x15\xba\xa2\x73\xbf\xc5\xc3\x10\x44\x74\xa2\xdc\xf1\x32\xc3\x33\xeb\x36\xec\x2c\xbf\x04\xfa\x95\x80\xb7\x68\xf5\xce\xa7\xb5\x61\x7e\x58\x80\xaf\xf6\x32\x01\xc2\x74\xd6\x69\x74\x3e\x1b\xc5\x56\xb0\x67\x90\x2e\xee\x29\xd2\x91\x11\x28\x89\x69\xcf\xfa\x87\x9f\xc9\xcb\xf6\x6f\xbf\x93\x26\xd9\xd9\x25\xac\x41\x02\xfa\x9f\x1a\x06\x08\x1a\xde\xc0\x79\xcb\xc9\x67\x46\xd7\x9b\x63\xa0\x12\xed\x77\xd8\x2c\x9f\xfd\x4e\x3f\x16\x1f\x6c\xea\x28\xcc\x23\xfa\xc2\xa5\x43\xf5\xb1\xd0\x64\x4e\xc0\x48\x38\x32\x7b\xcc\x65\x2b\x85\x8f\x93\xff\x46\x3f\x7e\x94\x9e\xec\x8c\x9d\xb6\x56\x9a\x86\x98\x4f\x83\x1d\xf6\xac\x6d\x95\xf3\x8f\x46\xce\xbb\x6e\x65\x83\x65\x7f\xac\xd2\x10\x8d\xbc\xd0\xaf\x23\xab\x01\x01\xa1\x30\x1b\xeb\x48\xa4\x4c\xac\xcb\x91\x09\x44\x73\xd7\xe5\xa5\xc8\x8c\x64\x4f\xd3\x42\x05\x73\xb6\x78\xf1\x7b\x51\x74\xcb\x14\xe9\x0f\xac\x69\x4d\x1d\xbc\x6c\x96\x32\xb5\x97\x4a\xef\x28\xac\x08\xd7\x20\xb2\xea\x30\x44\x0d\x2a\xfb\x04\x93\xb4\x0d\xb2\x4e\xfb\xdb\xf5\x3c\x43\x09\x21\xe5\x2a\x10\xb5\x46\x61\xe1\x49\xd1\x65\x59\x1a\x7c\xf9\x1d\x65\x08\xea\x47\x2f\xb3\xbe\x16\x39\x5e\x30\x31\x2f\x19\xb8\x7c\x47\xe4\x68\x04\xa0\xfa\x29\xb5\x6b\x5a\xc9\x50\x67\x7b\xc6\x02\x38\xb5\xe9\x9e\x03\x0b\x1e\x55\x21\x46\xa0\xe8\x8c\x29\x4c\xfc\xa8\x35\xc1\x01\xc5\x5f\x34\x23\x87\x4c\xc1\x28\x75\x6e\x73\xa5\xde\xbe\x8e\x97\xfe\x21\x66\xb6\x5c\xb4\x46\x42\x77\x0c\x6d\x1d\x23\x90\xaf\x1b\x0f\x31\xb9\x58\xc8\x30\xe9\xac\x4f\xe2\xf5\xad\x59\x05\x82\xfb\xb8\x92\xbf\x94\x95\x84\x47\x7e\xf7\xbd\xe2\x3f\x7d\xd0\x2b\x63\xf7\xc2\x90\x88\xa5\x72\x51\x00\x91\x32\xff\xbb\x78\xed\x14\xde\xfb\xef\xd9\xfd\x31\xfd\xca\xb0\x3b\xa8\x0a\x23\xf3\x33\x98\x37\x60\xab\xad\x4f\x16\xdd\xf9\xdd\x44\x14\xf0\x4d\x00\xdb\x56\xba\x72\xd6\x3a\x3a\x13\xd2\xc4\x42\xf5\x49\xfd\x66\xc9\x88\xd2\xe4\x60\x1d\x13\xb5\x2f\x77\x50\x0d\xd6\x92\xbe\xc9\xd6\xbd\x3b\xaf\xa9\x24\x2f\xdc\xfa\xeb\x69\xb9\x8b\x0b\x57\x89\xb2\x80\x38\x40\xde\xc6\x37\xb4\x9a\xf4\x38\x1a\xe3\xfa\x42\x9f\xb5\x34\x61\xa0\xc6\x74\xeb\x5a\xa1\x8d\xbd\x60\x7a\x2b\x77\xa9\x6d\x3a\xb4\x64\xec\xd9\x74\x92\xf6\xde\x46\x0c\x9f\x11\xb5\xc1\x75\x6c\xb5\x9c\xb1\x34\x8d\xfd\x77\x95\x6b\x71\x90\x7c\x54\x82\x1e\x30\x3c\xb8\xb1\x49\x06\xc0\x03\xe3\x48\x4b\xe4\xea\x05\xa6\x90\x1d\x69\xb0\x74\x85\xe8\x58\xf7\xb4\x71\xc6\x35\xf9\x03\x95\xb9\xa3\xe2\x24\x7f\x1a\xd1\x2b\x11\x8f\xfa\xfc\x72\x21\xa5\x7b\x10\xe3\x19\xb6\x1a\xf1\xc1\x36\x06\xa8\x16\x16\xce\x3f\x1d\x62\xba\x93\x2f\xf4\xe6\x3e\x74\xb8\x42\x55\xe3\xaf\x52\x10\xbb\xd5\x71\xbd\xa4\x4c\xbf\x44\xb7\x14\x42\x2c\xb4\x5c\x2e\xf2\x1f\x98\x13\x1b\xa9\x6b\x7e\xdb\x9b\x03\xe3\x3d\x7d\x18\x8d\x5b\x8d\x90\x4c\xb4\x13\x6f\xe2\x69\xdb\x14\x69\x88\x16\x8e\x7e\xe2\x45\x35\x63\x54\xf0\x02\xa5\xea\x8b\x35\xa3\xa9\x9e\x83\xa1\x32\x72\x27\x41\x44\xb3\x3a\x60\xca"}, {{0x66,0x56,0xf4,0xd4,0x71,0x81,0x57,0xc4,0xba,0xc3,0x8f,0xf7,0xab,0xe5,0xeb,0x1f,0x81,0x2c,0x0b,0x98,0x6d,0x9c,0x01,0x4a,0xba,0xd5,0xb0,0x9a,0xa6,0xc8,0xee,0x4a,},{0xf3,0x08,0x78,0x98,0xe4,0x52,0xbe,0x9e,0x30,0xae,0xcc,0x4e,0x8f,0xfe,0x0c,0x01,0x16,0x98,0x88,0x68,0x3f,0x62,0xa4,0x5b,0x8d,0xa3,0x82,0x99,0x01,0x4f,0x5b,0x4a,},{0x9c,0x2c,0x39,0x91,0x5a,0xed,0x6a,0xdd,0x00,0x4e,0x7d,0xd6,0x84,0xee,0x3d,0xcd,0xd1,0x0d,0x87,0xa4,0x87,0xf6,0x77,0xe7,0x3c,0x2b,0xce,0x0f,0xca,0x7d,0x50,0x87,0x96,0x46,0x41,0x50,0xa5,0x2a,0x44,0x0f,0x52,0x37,0x85,0x0a,0x00,0x9c,0x72,0x16,0x2d,0x9d,0x29,0x85,0x47,0x0a,0x33,0x49,0x0e,0x66,0xd3,0xc4,0x01,0x70,0x4c,0x05,},"\x94\xd9\xe5\xe5\xa7\xb7\x05\xd9\xd9\x76\xfe\x71\xe9\x4d\x3f\x7f\xa7\x86\x6a\xfb\xf7\xec\xe4\x24\xf1\x36\x32\x77\x99\xb2\xb2\x06\xce\x4e\xf4\xc3\xf3\xe7\x05\x55\x3a\xfc\x8f\xd5\xc1\x95\x2a\x4c\x16\x65\x8d\x4a\x78\xaf\xbb\x9a\x97\xf2\x71\x93\xc6\x5b\x65\xb8\x2e\x8f\x3b\x71\x51\x5f\xac\x82\x64\x0e\x0f\x8a\x5f\xb3\x5a\xe6\xfc\x6a\x3d\xb0\x51\xa2\x2d\x4a\x53\x00\x41\x3e\x6e\x33\xd1\x9c\x20\x13\xc2\x98\x3a\xca\x8a\xd6\xce\xc2\xce\x64\xa8\x14\x16\x4f\x06\x1a\x1a\x3c\x5a\x86\x10\xa7\x65\x0b\xfb\x54\x23\xd4\x36\x2c\xe0\x22\x06\xdb\xe4\xa6\xfa\x82\x6f\x03\xb4\x2a\xc3\xcd\x9e\xa4\xc6\x51\x40\x1b\x3c\xea\x82\xc3\x99\x3f\x6a\xf8\xb2\xc9\xe2\xe6\xff\xe6\x92\x80\xab\x3f\x09\xfb\xe9\x0d\xd5\x47\xcc\xda\x9d\x9e\x8e\x8a\x53\x7b\x3b\x36\x05\x54\x22\x7e\xd0\x70\x9f\x29\x31\x98\x98\x2e\xfb\x5e\xfb\x0e\x73\xe0\x00\x42\xd1\xa0\x63\xb5\x74\x52\x02\x7d\xce\x1a\x39\xe4\xb0\x06\x8f\x58\xb1\x11\xec\x5d\xc1\x42\xbf\x41\x9a\xd8\x93\xd5\x4f\x42\x60\xcb\xde\x76\x28\xf7\x83\xde\x84\x96\x38\x03\x06\xa4\xef\xf6\xd8\x28\x69\x10\x42\x59\xc9\x4c\x54\xad\x5a\xa8\xb0\x67\xc4\x24\x96\xcb\x88\xdd\x31\x15\x0e\xa0\x4d\x49\x9b\xfa\xc9\x1f\x4b\xb3\xe6\x8a\xf5\xaf\x7a\x56\x8a\x3e\x4c\xe7\xf1\x70\xd9\x86\x01\x16\x3f\x49\x52\xf1\xd2\x5e\x12\xe0\x0e\xf0\xa2\xd8\xf1\x11\xaf\xdb\x0f\xaf\xba\xd2\xbf\x8e\x8b\x9d\x49\x36\x3f\xca\x68\x18\x36\x17\xb5\x41\x27\x0d\xda\x46\x09\xb2\x61\x67\x29\xab\x1b\x8c\x42\xdb\xdd\x7b\xf9\x86\xaf\x8f\xba\x52\xe7\x33\xe4\x2b\xa0\x3c\x89\x2e\x1e\x1e\xc0\x6a\x90\xb1\x63\xf5\xa7\x9f\x61\x65\xeb\x73\x16\x97\x2a\xc1\xad\xbf\xcf\x1d\xca\xb0\x78\x47\xef\x82\xc2\xca\xb1\x01\x5d\xbb\x50\xaa\xdc\x79\xfe\x11\xc8\x32\x09\x8c\xac\xc3\x98\x20\xab\x08\x5b\x69\x63\xbd\x42\x16\x0e\xd6\x61\x3b\xae\x5e\x20\x1f\x17\xc0\xfd\x7f\x32\x35\x7a\xe3\x50\xce\x9c\xbb\xe9\x26\xfa\x42\xdc\xbd\x42\x2a\xc1\xbf\x09\xa1\x9a\xd1\xf6\x94\x69\xe4\xd1\xdc\xb1\x24\x11\x8e\xd4\x52\x2d\x35\x3c\x17\x42\x98\x65\x0f\xf8\x83\x82\xfa\x2f\xdb\xb2\x86\xc4\x5b\x18\xa9\xba\xf6\xf6\x76\x3a\xc2\x0c\x9c\xa4\x76\x7d\x34\x8c\x4b\x8d\xed\x63\x00\x76\x65\x7b\x85\xb1\x4c\x11\xae\x27\x37\xea\x29\xa4\x35\x15\xb7\xf0\x56\x74\xa0\xcd\x3e\xd4\xbf\x6a\x3d\x18\x9a\xe9\x72\x21\x8f\x87\x7c\xd8\xaa\x69\x49\x9d\x5a\x08\xc9\x9e\x44\x06\x94\xcc\xac\xcd\xf1\xf6\x42\xe1\x4e\x90\x10\x5b\xee\x6d\x98\xed\xee\xab\x3b\x4f\x33\x9f\x30\x01\x88\xae\xc0\xc1\x6b\xd6\x45\x21\xd9\x28\x73\x98\xe6\x48\xdb\x94\x33\x0e\xd8\xf6\xb9\xab\x6c\x7a\xd9\x3f\xfc\x43\xe8\x79\x2e\x63\x7c\x61\xbf\xf7\xd8\x56\xe5\x4e\xf4\x98\x73\x84\xe3\x12\xcb\x57\x01\x7a\x50\xea\xe5\x95\x2a\xbe\x19\xd8\x99\x9c\x8c\x82\xdf\xc4\x57\x98\xcc\x17\xc8\xd9\x49\x6b\xf5\x20\xec\xc5\xb7\x7f\xe2\x84\x91\x55\x66\xc4\x56\x85\xc3\x04\xa2\xac\xd5\x25\xef\x12\xc8\x6f\x38\xae\xf5\x54\xd8\xa2\x38\x47\x37\xcc\x41\x33\xfb\x7e\x2b\x65\xc1\x3b\xef\x31\x66\x8a\x6c\x2f\x60\xee\xcd\x84\x12\xee\xff\x7f\x6b\x60\x5c\xbe\x95\x08\x3e\x23\x3e\xc1\xa7\xbb\x36\xde\x23\x6c\x8a\x71\xba\x28\x72\xbe\x94\x6c\xd3\xb3\x89\x35\xf5\xda\x64\xc8\xfe\xc8\xe1\x4f\x45\xcc\xf6\x12\x4b\xab\x7f\x70\x56\x7c\x2f\x2b\xfd\xd5\x66\x67\x60\x95\x72\x03\x7c\x76\x14\x6c\x99\x17\x07\x65\x9b\x57\x09\xb0\x74\xe3\x45\x1f\x92\x1a\x2d\xf2\x83\xb9\x6a\xa2\x6a\xb4\x76\x62\x50\x16\xf1\x81\xad\x64\xc9\x91\x9c\xf4\x1d\x71\x4a\x1a\x9a\x5e\x2b\xb2\x6b\xaf\x87\x70\xb2\xeb\xa7\x7b\x77\x8a\x33\x26\x77\xa7\x57\x2e\xe3\xa2\xb1\xdc\x05\xf7\x35\x6b\xdc\xae\x5f\x55\xe3\x53\x29\xe3\x4c\xaa\x79\x43\x0b\x27\x0c\x03\x61\x60\xdc\x9f\xca\xab\x5b\x25\x45\x43\xac\x94\xb2\x46\x81\xf1\x71\x72\xb6\x15\x9d\x16\x62\x1d\x7a\xd0\xee\xbd\x89\x5a\x1e\x1d\x09\xb9\x16\xa8\x6f\xb4\x8e\x4c\x91\x66\x10\x57\xee\xe9\x5c\x08\x70\xed\x54"}, {{0x14,0x38,0x3e,0x6e,0x56,0x04,0xc9,0x9c,0x24,0x8d,0x39,0xbe,0x51,0xd1,0x64,0xb1,0x34,0x42,0xb0,0x5e,0x51,0xd7,0x8e,0xcd,0x99,0x93,0x64,0x22,0x1a,0x45,0x03,0x6b,},{0x2f,0xc1,0x61,0x38,0x22,0x0a,0xb7,0x4b,0x3b,0xd4,0x46,0xf8,0xa7,0x14,0xb5,0x8d,0x54,0x63,0xd4,0x0d,0x43,0x67,0x92,0x50,0x07,0x47,0x4c,0x5b,0x9e,0x35,0xd4,0x94,},{0x45,0xe8,0xed,0x1a,0x75,0x1d,0xfc,0x3b,0x9b,0x7b,0xd7,0xa1,0x0b,0xf5,0xbd,0xcf,0x8c,0xa4,0x61,0x86,0x5a,0x49,0x0c,0x10,0x5f,0x10,0x45,0x29,0x41,0xcf,0x87,0x72,0x12,0x14,0xbf,0xbf,0x3a,0x35,0x60,0x6b,0x7c,0xe3,0x5d,0x6f,0x70,0xaa,0xf2,0xd5,0xea,0xdc,0xc0,0xde,0x03,0x5e,0x9b,0x2f,0x6d,0x7b,0x86,0x2f,0xc2,0x84,0x90,0x04,},"\xc4\x75\x3b\x7f\x7a\x6f\x6d\xea\x25\x15\xc6\xe3\xd2\x95\x61\x50\x6f\x4f\x36\xe0\xde\x84\x99\x92\x21\xf2\x28\xe2\x0b\xd5\x12\x8e\xd9\x3b\xdb\x8d\x11\x93\x23\x7d\x8e\x29\x41\x69\xa2\xbc\x44\x8a\xf9\xdd\x36\x06\x63\x01\xef\xb7\xfe\x12\x31\x35\x3c\x06\x23\xff\xe1\x11\x5d\xeb\xb6\x90\x5a\xc6\x94\x6e\xe3\x82\xa2\x7c\x3c\x09\xe1\xb1\xf5\xc1\x14\x93\xdb\xa3\x7d\xa0\xff\x6e\xea\x75\xd9\xfa\xb0\xee\x92\x6d\x70\x1d\xac\x2f\xc5\xb7\xef\x57\x88\x80\xa5\xd5\xee\xec\xad\xc1\xf4\xbc\xc4\xcd\x4e\xc6\xf2\xf1\x4f\x52\xa8\xc1\x64\x07\x2e\x6f\xde\x5a\xb2\xee\x9c\xee\x0b\x48\xe5\x1a\xf0\x55\xf9\xfe\xc7\xc6\x37\x50\xfe\xdf\x72\x33\x2b\x23\x86\x3a\x1e\x54\xc5\x2b\x46\x1a\x21\x50\x6d\xfd\xfc\x63\x88\x0e\x22\xd8\x9c\x89\x44\x12\x66\x6c\x92\x98\x21\xc0\xe4\x39\xe7\x45\x41\x5f\x71\x79\x69\xe6\x05\x85\x54\xd6\x4b\x94\x7a\x4f\xc9\xd1\x6a\xca\xe3\xe4\x9a\xec\x08\x80\x1a\x09\xd9\x72\xf7\x9e\xad\x68\xd5\x29\x76\x80\x69\x73\x5c\xaa\x74\x2b\x45\xa5\x83\x05\x81\xb8\x0c\xa0\x61\xa6\xc1\x51\x5e\x3f\x7d\x5a\x93\x37\x87\x8c\x19\xfc\x94\xee\xf2\x26\x98\xea\x6c\x4d\x05\xf9\xed\x41\x1b\x6b\x8f\x05\x2b\x5f\xf1\x5d\xc2\x3a\x64\xbe\xea\xae\x99\xf8\x48\x93\xde\x3d\xf9\x40\xa4\xe0\xb8\xe9\x93\x93\x01\x39\x05\x2d\x99\xbe\x47\xbc\xa8\x77\x5f\x85\x63\xbd\x40\x26\xb7\x13\x43\xd5\x19\x68\xf2\x33\x75\x28\xf4\xc9\xdb\x8b\xbd\x0a\x29\x8a\xf0\x4b\x27\x69\x5d\x86\xb7\xf7\xba\x6c\x4c\xcc\x62\x73\xfe\xbc\xd8\xf7\x5c\xff\x26\x69\x95\x24\x4f\xc1\xfa\x13\xd8\xd8\x43\xf0\xbf\xf4\x9c\xc2\xd5\x08\xf4\xa2\xb3\xaa\xd1\xd9\x5f\xb2\x2a\x2b\xc6\xad\x1b\x96\x6b\x08\x12\xd9\x90\x70\xbb\xa0\x7c\x92\x3e\xe4\xd0\x81\x07\x48\x6d\xc0\x1a\x06\xdb\xa6\xf1\xd5\xf1\x05\xac\xea\xde\x33\xb1\x66\x51\x0e\x42\x7e\xbb\xce\x52\xa3\xe7\x83\x1f\x0f\x78\xa3\xc6\xe0\x72\x60\x83\x34\xd8\x02\x1c\x33\x8a\x73\xcc\x0c\x47\xf1\x9c\x9f\xae\x40\x3b\x97\x16\xd0\xd1\x5f\xbd\xf6\x46\x6b\x08\xf6\xac\xce\x3f\x50\xa7\x03\xb1\xde\xa8\xd8\x26\xdf\x84\x2c\xa1\xba\x20\xd2\x9f\x45\x48\xac\xfc\x75\x4c\xf0\x11\xf5\x70\x68\x1b\x59\xe4\xda\x25\x38\x5e\xbd\x6d\x5c\x3a\xdc\x93\x05\x29\xe1\x66\xce\x67\x05\xf6\x01\x02\x10\xdb\x10\x64\x62\xb3\x33\x32\x04\xe7\xad\xad\xee\x66\x06\xa5\x62\x06\xb4\x7e\xef\x20\x74\xb1\x16\xe2\x2a\x61\x54\x18\xec\x2c\xdc\x33\x1f\x1e\x19\xe0\x7e\x8a\x37\xb9\x2d\x69\xdf\x07\x34\xe0\x85\xda\xee\xb9\x01\xec\x6e\x8c\x35\xf1\x03\xf1\xd8\x6e\xf0\xd2\xa2\x65\x2b\x01\xd1\x83\x59\x7e\x4c\xfd\xee\xdf\xe5\xdf\x9a\x7e\xf6\x6a\x1c\x79\x6a\x37\xa2\x71\x13\xb9\x44\xdd\x7b\xa1\x7c\x46\x00\x15\xab\x8a\xce\x45\x1c\x57\x85\x0e\xc6\xc2\x90\xc5\x4e\x51\x13\xf5\x5e\x99\xa8\xe6\xe4\x71\x1e\x3b\x78\x17\xbf\x91\xa5\xad\xb3\x7f\xb9\x46\x1b\xe6\xb1\xb5\x5d\x58\x60\x46\xe4\x2a\x54\xc5\xde\xf4\x07\x6f\x1f\xf6\xc3\x1b\x80\x6f\xc6\x02\x47\x43\x56\xaa\x28\x99\xea\xe7\x0f\x5e\x5a\xbf\x1f\x75\xa7\xf2\x4c\x13\x4c\xde\x11\x79\x3b\xb1\x62\xe0\x3a\x58\x3d\x5b\xe0\x46\xac\xc7\x34\x56\xd1\x2d\x50\x9d\x92\xf7\x70\x57\x68\x68\x6f\x6c\x71\x4a\x4e\x57\xec\x88\xb7\x13\x98\xe2\x3e\x83\x5d\x6d\x65\x47\x22\x59\x96\xb7\xed\x08\xf3\xb7\x44\x3b\xb1\x7c\x89\x94\x09\x49\x3d\x0e\xfe\x84\x55\xbe\xc8\xe8\xc2\x84\xa3\xb1\x49\xa5\xb4\xca\x63\x1e\xa6\x20\xb1\xbb\x81\x7c\xed\xab\xa5\x0b\x04\x44\x11\x84\x9d\x26\x0a\x6f\x2a\x0d\x3f\x2c\xce\xec\x38\x42\x71\x9a\x5e\xa4\xfe\x18\xdd\xe0\xd4\x2d\xcb\x33\xad\x21\xe6\x45\x33\x25\xaf\x6f\x3c\x00\x9f\x2b\xb9\x78\xd3\x0c\xee\xae\x9a\xa4\x92\x8b\xf7\x37\x67\xcd\xa9\x29\x2a\xb8\x93\xce\x5f\xa3\xaa\x4c\x23\x21\x63\xb4\x5c\x64\xed\x79\x77\x77\x9b\x1c\x0c\xaf\xcf\xc2\xb9\xfa\x08\x4a\x32\x4f\x11\x3a\xde\xec\x21\x8b\x47\x35\xb6\xb4\x64\xdb\x6d\x46\xc2\x79\x1a\xf3\x45\x5f\x1c\xa5\xea\x1e\x9a\x04\x8c\x05\x1a\x54\xdf\xa0"}, {{0x59,0xb0,0x72,0x63,0xb2,0x2c,0x0a,0x38,0xbb,0xc5,0x91,0x05,0x95,0x94,0xb2,0xbd,0x92,0x7e,0x80,0x59,0x61,0xdd,0x07,0xe1,0xf9,0x42,0x45,0xb2,0x3a,0xa2,0xe0,0x16,},{0x0b,0x1e,0x4c,0xf5,0xaf,0xf2,0x78,0xec,0x65,0xb4,0x05,0xf5,0x10,0x8e,0x1b,0x5b,0x18,0xa9,0x69,0xad,0x1f,0x1e,0x63,0x81,0x91,0x2c,0x82,0xd6,0x98,0x90,0x7c,0xba,},{0x88,0x6d,0xa3,0x3e,0x35,0x53,0x28,0x5e,0xa5,0x9c,0x14,0x31,0xb6,0xe8,0x6e,0xa4,0x9b,0xb6,0x8b,0x2e,0x0e,0xfd,0x2b,0x15,0x7e,0x77,0x91,0xb7,0x4f,0x35,0xa2,0x42,0x1b,0xb3,0x59,0xf3,0xdc,0x1e,0x4c,0xe5,0xf1,0x1f,0x73,0x65,0x2e,0x03,0xbf,0xc0,0xb4,0x29,0xc5,0x8f,0x0f,0x2d,0x74,0x18,0xc7,0xc2,0x0b,0xce,0x2e,0x2d,0x19,0x01,},"\x08\xce\x0d\x4d\xb5\xc2\xaa\x50\x0a\x19\xef\xbc\x8d\xc8\x54\x92\x50\xf7\xdd\x46\xa7\xa9\xa5\x40\x74\x17\xb3\xd5\x18\x20\xe4\xb0\xd6\x12\x75\x58\x3f\x56\xf8\x97\xfd\x94\x2b\xdd\x73\x11\xad\x6b\xaf\x73\x81\x28\x56\x7a\xf6\x55\x8d\x75\x90\x6a\x02\xc4\x34\x3a\x99\x55\xd5\x9b\x11\x08\x8c\x58\x8d\xc7\xdd\x08\xf6\x79\x65\xc5\x60\x2a\x56\x92\x8d\xda\x4a\xe1\x64\x29\x31\x63\xb5\x17\xca\x17\xde\xd0\x4f\xe4\xab\x2f\x97\x89\x13\x0a\xe9\x6a\xb2\x31\xf0\x7e\x09\x01\x5b\x78\xf3\x84\x8c\xef\x43\x5d\xb0\xad\x9f\x35\xe0\xfb\xc9\x85\x1e\x3e\xcf\xc9\xfb\x18\x6d\x14\xd8\xda\x4d\xda\x45\xd0\xb3\xeb\x3e\xe4\x50\x0c\x10\x1e\x31\x94\xb5\x72\x14\x06\x89\xcd\x75\xda\x12\x87\xb2\x54\xf3\x74\xe3\xd9\x33\x26\xae\x5f\xaf\x11\x40\x18\xac\x71\x4b\xd0\x03\x75\xd9\x2a\x8b\xb6\x59\xc3\x29\x12\x83\x1f\x4f\x20\x77\x6e\x9e\x2c\x25\x02\x9f\x0a\xff\x39\xfd\xda\xc7\x24\x15\x43\xa0\x36\x6b\x84\xde\x7b\x1f\xf2\x3e\x8e\x4d\xc0\x93\xdf\x0d\x2d\xd5\xe5\x3e\x68\x47\x94\x8c\xf3\xd0\xff\x3f\x56\x4a\xd9\x4d\x9c\xc0\x0a\x5e\xa5\xb6\x95\xe4\x08\xbf\x50\xf5\xba\xb2\xf6\xea\x87\xba\x8a\xd3\xa1\x94\x01\x95\xcf\x1b\xc2\xb5\xb3\x48\x47\xad\x3a\x5e\xff\xb8\xa7\x82\x3d\xe9\x1e\xf1\x63\x38\x69\xd1\xf0\x46\x43\xaf\x4d\x82\x6a\x59\xe7\x8b\x9d\x18\x63\x12\xb3\xd9\x72\x26\x36\x54\xac\x55\x87\xb8\x0b\x71\x76\x46\xf3\x10\x03\xdb\x81\xac\x70\x86\x0d\x3f\xc8\xcd\x3a\x6a\x0a\x0d\x57\x6d\x25\x73\x1e\xf7\xb8\x96\x62\x63\xd7\xa0\x5b\x55\x00\x9e\x8a\x23\xda\xc0\xf9\xa2\x1a\x24\xb0\x6e\x13\x90\x0e\x44\x44\x46\xfd\xfe\x56\xcb\xc1\xa0\x26\xdf\x41\x06\x6b\x20\x1b\x14\x81\xe5\x61\x58\x92\x6c\x0c\x9e\xa9\x0f\x0c\x64\x5a\xab\x4b\xef\x12\xd4\xe0\x72\xcb\xfd\xc3\xc3\xd5\xe0\xc7\x2c\xf8\x8f\x16\x6d\xe0\x48\x87\x4f\x35\x34\xe0\x40\xc6\x2b\x16\x62\x82\x1b\xdd\x16\xb0\xe8\x58\x28\x17\x46\x1c\xb2\x68\x92\x79\xb4\x46\xd7\x0c\x8a\xc2\x0a\xd0\x3e\x59\x8c\xad\x49\x08\xc5\x2c\x35\x0d\x42\x43\xee\x8a\xed\xb8\x7a\x4a\xf9\x77\xf7\xdb\x57\xcd\x94\x7b\x47\xd6\xbb\x51\x40\x9d\x80\xd8\x1f\x6d\xb0\x3c\xb9\xa6\xa6\xb7\x98\x12\xf4\x70\x69\x0a\xfc\x18\x36\xa5\x31\x33\x80\x94\xcf\x26\xd3\xc1\x23\x2f\xd5\x60\x5d\x8f\x8c\x55\xb6\xf8\xa2\xa7\xef\x1e\x0c\x78\x15\x55\x94\xb2\x37\x95\x6d\x2a\xba\xd6\xa9\xad\xcd\x58\xe1\x1c\xcd\x35\xcc\x99\x5b\x9a\x0a\xec\xbf\x7f\x57\x41\xac\x05\x1b\x04\xef\x6b\x97\x44\xb5\x6f\xcc\xb4\x63\x98\x52\x8b\xb3\x1f\xbe\x84\xe0\x78\x84\x3e\x69\xbf\x33\x88\x98\xcd\xef\x69\xad\x41\x87\x23\x95\xe4\x6b\x59\x39\x04\x82\x55\x47\xe0\x0b\xda\xf2\x21\xf8\xfa\x58\x7e\xa2\x03\x7f\xfb\x9a\xc9\x30\x7d\xd3\xf8\xf3\x5e\xc5\x38\x6b\xa9\x66\x33\x3e\x2a\xc8\x72\x7b\x0e\x1b\x80\x61\x2d\x3c\x7f\x2c\xb8\x8b\xaa\xca\xdf\xe2\x16\x3b\xc3\x8c\x88\x84\x2e\x76\xa3\x94\x57\x1d\x40\x61\x0e\x8a\x29\x76\x02\x79\x37\x63\x29\x6e\x3e\xab\xf7\x20\xe9\x84\xb2\xed\xd2\x8c\xf5\xc4\xe0\xf9\xa0\xf7\x6a\xce\xba\x28\xcc\x1f\x1b\x69\xff\x1d\x35\xb4\xbd\x33\x47\xb7\xf9\xa9\x5a\x4c\x1e\xa1\x07\x34\xe1\xc9\x18\xeb\x96\x24\x9d\x0c\xc7\x0b\x47\x7f\x6f\x23\x80\x9b\xbd\xa9\x01\xd5\x3f\x48\x5a\x71\xf5\x08\x60\x02\xc1\xb7\x1e\xfc\xc4\x1c\xb1\xae\xb5\x12\x2a\x3f\x3b\xfc\x96\xc5\x1a\x55\xd7\x5c\x02\x98\x42\x88\xbe\x65\x78\x87\x85\x4c\xfa\x73\x89\x74\xbc\xd5\x44\x01\x46\xf9\xbb\x14\x04\x0d\xe5\x4f\x54\x44\xad\x43\xb7\x9a\xf9\xbd\xb2\x4e\xd6\xa4\x8e\xb2\xfd\xee\xd7\x1f\x31\xf0\xec\xe1\x02\xe9\x18\xe9\x56\x35\xc7\xa0\x38\x63\x3e\xe3\x48\xd8\xb5\x78\x16\x52\xd5\x05\x9d\x21\x5a\xc9\x7f\x30\xea\x20\xd2\x77\xeb\xbf\x15\x24\x69\x05\x42\x8a\x7b\xec\x02\xb8\xf9\x26\x31\x5b\xad\x67\x23\xfd\x64\xd7\x1f\xc9\x5f\x33\x33\x64\xcb\xe9\x0d\x46\x46\x33\x3c\x40\xdd\xa6\xd1\xd4\x33\xb7\xc1\x95\xa7\x58\xdb\xb4\x03\x8a\xf5\xdc\xc7\x23\x2d\x45\x47\xf5\x40\xe3\x94"}, {{0x5c,0xc1,0x15,0xd8,0x39,0xe0,0x58,0xcd,0xb6,0x51,0x8e,0xe9,0xc1,0x61,0xc0,0x04,0xd8,0x8b,0xd3,0x90,0x8d,0x3c,0xf6,0xd5,0x2c,0x8f,0x29,0x6a,0x1a,0x07,0x6b,0x9b,},{0x1e,0x8f,0x33,0x05,0xbf,0x2f,0xa1,0x1b,0x17,0xd9,0x24,0x16,0xab,0x0e,0xa7,0x62,0x39,0x6d,0x88,0xf2,0xf9,0x70,0xef,0x0b,0x10,0x0e,0xd3,0xbf,0x5c,0xc1,0x34,0x40,},{0x03,0x71,0xc2,0xd6,0x4c,0x5e,0xc0,0xc8,0x27,0x6c,0xa5,0xff,0xa6,0x15,0xef,0xf4,0x2f,0x9e,0xff,0xfc,0x58,0xdd,0x8e,0xcf,0xcf,0x67,0x62,0x0a,0x9b,0xcb,0x38,0xfa,0xf1,0x18,0x93,0x2b,0xf2,0xcd,0x5b,0x92,0x05,0xfa,0x55,0x13,0x34,0xdf,0x2a,0x75,0x7c,0x59,0x77,0x44,0xf7,0x91,0xf3,0x71,0xfb,0xed,0xd9,0x8b,0x21,0xf7,0x34,0x05,},"\x53\x3e\x49\xc1\xd5\xf3\x3c\x5e\xc4\xbe\x84\xc6\x19\xf4\xec\x64\x9c\x25\xfd\x70\xbd\xcf\xe2\x57\xa6\x3c\x33\x73\xa4\xd0\x89\xc8\x9a\xf6\xee\xb7\x16\x0d\xd7\x7a\xb6\x6b\x1e\xe7\xe1\x08\x50\xab\x4f\xc1\xf3\x51\x32\x33\x2b\x53\x78\x9b\x2b\x01\x40\xc4\xf2\x0f\x97\xf2\x14\x20\x72\xd6\x24\xaf\xf7\xaa\xd3\x24\xaa\xcd\x06\x8c\x03\x5a\xff\x52\xfa\x71\x2f\x4e\x74\x83\x2d\xe0\x31\xb2\x64\x23\x14\xd1\x71\x10\xde\xe6\xfb\x85\x76\x2d\xc3\x0d\x7e\x97\x78\x2f\xd1\xfb\xff\x71\x79\xf0\x09\x17\xf5\x5a\xf7\x50\x3a\x5b\x7e\x23\xc6\xea\xdb\x65\xe1\x04\xf1\x51\x7b\x66\x24\xc9\xe5\x20\x4b\x3f\xd2\x9a\x65\x85\xe9\x2c\xe3\xa3\xee\xe2\xc5\xae\x17\x79\x20\xf7\xb4\xab\x2c\xac\x87\xd6\x72\xab\x6b\xaa\xc1\x18\x6d\x90\x4a\xea\x34\x98\x53\x4e\xb5\xab\x23\xe4\xac\x4c\x0d\xdb\x0d\x82\xa5\xae\x53\x1d\x76\x54\x9d\x36\x76\x28\x57\x7b\xac\x42\x35\xe8\x97\xd9\xfe\x20\x55\x22\x04\x7d\x21\x4f\xf6\xcc\xf3\x11\xc4\xe3\x97\x82\x7d\x97\xf2\x86\x8e\x70\xac\x17\xd2\x8e\x33\x49\x99\x74\x4d\x35\x93\x76\xa4\x82\xfd\xcb\x41\x4b\x02\xb2\x68\x7b\x96\x2e\xe8\x08\x6e\x57\x3f\xe0\x00\xdc\x51\xde\xe0\x68\x79\xc6\x84\xe2\x5f\x94\xce\xe5\xe8\x61\x34\x7e\x7b\xe7\xfc\xa5\x49\xa0\xf7\x65\x13\x6a\x2f\x4b\x88\xfe\xde\x07\x02\x4d\xd2\xfc\xe1\xf6\xd0\xc0\x35\x4d\xa1\xa1\x6e\xf3\x66\xb3\x15\xb3\xf7\x23\x30\x31\xf9\x79\xb7\x0e\xac\x6e\x23\xbf\x3b\x34\x9e\xfb\xd0\xe4\xf5\x3f\x4d\x5c\x41\xfc\x00\x42\x76\xa5\x96\x70\x65\x9f\x69\x05\xef\x03\xd2\xfc\x09\x8d\x58\x9f\xcb\xc1\x32\x82\x82\xfa\x22\xb1\x0d\xb8\x3c\x5d\x70\x86\x59\x94\xfd\x19\xd7\x60\xa3\x9d\x47\x6e\x02\x33\x0d\x2c\x6d\x19\xe7\x42\x26\x7d\xd3\x65\xbb\xe1\xfe\x5c\x71\x1a\x95\xb1\x84\x50\x8c\xe4\x8c\x1c\x96\xd7\xe6\x39\x90\xb4\x08\xd4\x50\x89\xbe\x79\xe3\x2f\x9c\xb0\x16\x2f\xd1\xe7\xd0\xd1\x9d\x97\xd0\xae\x78\xff\x82\x4c\xc6\x98\x94\x86\xc0\xbd\x03\x83\x52\x55\x1f\x37\x49\x9e\x9e\x98\x26\x80\x4e\x9d\x26\x24\xad\x0c\x7b\x75\x34\x56\x0f\x45\xfd\x7d\x32\x4b\x8e\x51\x7e\x01\xc9\xb2\x74\x3c\x14\x97\x9c\xfd\x51\x2b\xc3\xfe\x66\x72\x79\xb3\xa2\x77\xfb\x46\x3e\x9d\x73\x49\xb6\x4f\xfc\x9f\xe6\x08\x84\xc2\x1e\x48\x10\x81\xed\x70\xe6\xda\x5a\x35\x39\xc4\x48\x97\x1f\x0d\x97\x87\x28\x9f\xcb\x00\x80\xf2\x19\xe9\x94\x49\xf8\x29\x8c\x42\x47\x5f\x87\xfd\x10\xae\xb5\x09\xc5\x30\xcf\x6a\x57\x74\x8e\xb8\xf3\x56\x21\x61\xfa\x48\x75\xea\x95\x3f\x09\x65\x9c\x7d\xf7\xa9\x95\x0f\x03\x17\x46\x7c\xb4\xe5\x36\x6e\x19\x6e\x32\xf5\xe2\x69\x67\x33\xa2\x5e\xac\xbd\xe4\x92\x10\x49\x07\x62\x06\x0e\xa2\x31\x37\x0d\x40\x90\x42\x9b\xb0\x6b\xb8\x67\x39\x9e\x8d\x37\xbf\x5d\x21\xa0\xe7\x21\x47\xe4\x96\xcf\x3b\x7d\xd6\xfe\x6e\x5e\xde\xa9\x66\x8d\x80\x21\x90\xa9\x1c\x60\x0e\x29\x52\x3f\x8e\xb9\x04\xe4\x8b\x70\x41\x2b\xc1\x0a\x70\x20\x98\x4c\x5f\xf0\xf5\xf3\x83\xf2\x14\xae\x59\x4d\xc8\x59\x71\xe4\x80\x37\x28\x48\xd0\xd7\xe7\xcc\x5c\x18\xff\x88\xba\x9b\x26\x2d\x78\x84\x69\x8a\x41\xc6\xc7\x81\x9c\x03\x19\xfd\xc6\xbb\x07\xb9\x1d\xc1\x69\x4d\xaf\xe3\xaf\x37\xa5\x38\xbf\x2b\x2d\x8c\xac\xb2\x7d\x24\xcd\xc6\xea\xdb\x8c\x6a\x2e\x6b\x7d\xf8\xa4\x65\x4a\xe9\x37\x85\x0c\x89\x0a\xd9\x30\x98\x0a\xfc\xc1\x49\x2d\xb8\xa0\x16\x8c\xbc\x9f\x10\x65\x7e\xb4\x8d\x2a\xc8\x7f\x51\x75\xd2\x3c\xae\xd4\xb5\xe6\xf1\x0b\xbe\xaa\x5e\x33\xfc\x5f\x64\x18\xd6\x3b\xa3\x74\xab\x1a\x3c\xbd\x36\xb7\x29\xdd\xbd\xab\xa9\x89\xd4\x64\x5e\x3a\x66\x13\x0b\xae\x41\x7c\xad\x08\x6d\xad\xd3\x08\x43\x35\x25\x14\xc3\x75\xf2\x57\x1a\xba\xf9\x3e\x9a\x07\x71\xfa\x10\x3a\xe9\x25\x85\xb0\x4f\x55\xc4\x34\x76\x9b\x43\xd6\xd2\x2f\x75\x3f\x93\x06\x03\x6e\x53\x52\x4f\x6f\x4d\x9c\xcb\xd2\xc3\x03\x17\xa8\xe8\x99\xf3\x16\x14\x90\x35\x89\x4d\xa9\x45\xb7\x6d\x90\x82\xbf\xee\x32\x8e\x7a\x31\xb6\x63\x28\xee\x8b\x94\xe0\x68\xc7"}, {{0x75,0xa5,0x03,0xf4,0x8f,0xfc,0x22,0x16,0x17,0x67,0x25,0x19,0x11,0x1b,0xf9,0x0d,0xa3,0x9d,0xa9,0xea,0xb2,0xe2,0x91,0x4f,0xd3,0x75,0x5f,0x10,0xf5,0x39,0x36,0x68,},{0xf6,0x80,0xcc,0x0f,0x63,0x58,0xcd,0xcf,0x53,0x7a,0xa7,0x11,0x28,0xcf,0xad,0xfc,0x0f,0x3a,0x89,0xc1,0x00,0xaa,0x34,0xbc,0xd2,0x42,0x7e,0x24,0x8b,0x6e,0xd5,0x0b,},{0xdf,0x28,0xe3,0xe6,0x30,0x36,0x08,0x67,0x86,0x4b,0xc4,0x1e,0x43,0xfd,0x7d,0xde,0xb5,0x28,0x76,0xdc,0xe9,0xb2,0x34,0xa3,0xfc,0xc3,0xd8,0x54,0x9d,0xb0,0x11,0x2e,0x17,0x63,0x90,0xa6,0x85,0xeb,0xd4,0x84,0x93,0x6e,0x25,0xc0,0x8c,0x8a,0x38,0x78,0xa3,0x7b,0x3c,0x4e,0x23,0x9a,0xd0,0xa0,0xe5,0x01,0x99,0x37,0xff,0xbc,0xd4,0x07,},"\x7b\x01\x09\x04\x23\x23\x6c\xb4\xb1\x3c\x41\x77\xfc\xe5\x2a\x7f\xf6\x58\x05\x88\xcc\x2e\xb5\xa3\xf3\x9f\xf5\xd0\xc7\x3e\x01\xe0\x1b\xf7\xbd\x74\xaf\xe4\x15\x12\x50\xc3\x91\x42\x6e\xa5\x07\x27\x1b\xea\x1d\x6d\x85\xf0\xb2\xfe\x35\xc4\x05\x00\xf9\x8d\x06\x56\xc6\x38\x8f\xc9\xef\xba\x18\x37\xdb\x22\xdf\xa2\x9d\x89\x26\x76\xf5\x0e\x57\x5f\xe8\x9f\xd2\x93\x89\xd0\x9d\x08\x0b\xad\x67\xba\x54\x4c\xac\xab\xf5\xa7\x73\x82\x37\xc5\x5e\x28\x75\xed\x49\x16\x30\x2a\x2b\x4d\xc4\x96\xe7\x42\x73\xbf\x05\x19\x11\x37\x81\x0e\x50\xe4\x81\x95\x26\x0b\xab\x6d\x81\xf9\xc8\x05\x62\xee\x73\xcc\xb9\x33\x3c\xd9\xb6\x1d\xaf\x5b\x00\x38\xa4\xe6\xc5\xc9\x58\xa9\x1f\x68\x50\x8c\x1d\x88\x25\x19\xc1\xaa\x4f\xfc\xc5\x35\x62\x46\x3a\x0a\xe3\x01\x63\x69\x6f\x84\xb9\x7c\xcb\xd8\x67\x98\x20\xed\xd3\x61\x7e\x7b\x89\x6e\xef\xfe\x34\x1e\xc6\xb5\xb0\x3f\x73\xb6\x25\xd7\x41\xc6\x55\xfe\x6e\x82\xd1\x1d\x47\x8a\x7d\x54\x3f\xf6\xc0\xfa\x3a\x3a\x8c\x94\xa6\x16\xfb\x84\x70\x70\xd1\xfb\xdd\xe6\x01\x0f\x02\x6b\x08\x9c\xd8\x63\xc3\xbd\x29\xb1\xc4\x26\x9f\x77\x65\x9e\x51\x57\x28\x89\x0c\x97\x3b\xe8\x7f\x0b\x83\x3c\xa5\xaf\x6b\x4c\x31\x33\xad\x4f\xa4\xf9\x16\x55\xc6\xad\xb5\xb7\x23\x5c\x27\xfe\x34\x82\x84\xf3\xf1\x33\x66\xa6\xa0\x3a\xd2\x2b\x87\xc6\xf5\x58\x4b\xde\xae\xa4\x8c\x70\x32\x5d\x6e\x33\xa4\x75\xf5\x05\x11\x06\x38\x75\x19\x2a\x87\xed\xc3\x88\x08\x9b\x84\x39\x53\x90\xc2\xa3\xad\x89\xa2\x25\x95\xdc\x4a\x71\x5a\x42\xa2\xc0\xef\xde\xf6\x7b\x35\x4b\x34\xfc\x75\xca\x98\xdf\x91\x3e\x75\x9e\x51\xc7\xf6\x25\xdd\xd5\x98\xac\x22\xd4\x21\xde\xcb\x57\xbe\xbd\x54\x22\x0e\xc6\xda\xa5\xec\xe7\x69\xd2\xe0\x1b\xe7\xb6\xbe\xe2\xff\x5a\x0b\x06\xb3\x2d\x6d\xa1\xd7\xbc\x05\x7e\x3a\xbf\xaa\xb2\x42\xa3\xf7\xe6\x64\x6a\x15\x9e\x4f\x50\x5e\x46\x62\x98\x2b\x13\xd0\xcc\x1f\xba\x91\xd1\x03\x09\xa4\x2d\xc1\x08\x7c\xf1\x0d\x36\xe3\x1f\x17\x06\x15\xa0\xac\xb5\x08\xbf\x68\x3e\x2d\xe0\x0c\x87\x64\x0d\x30\x4a\x94\x7b\xc4\x97\x1f\xf3\x61\x9c\x72\xab\xd8\x3c\x7b\x2c\xbb\x34\x64\xc4\x04\x0c\x26\x62\xb5\x85\x08\xb7\x46\x80\xcf\xa6\xde\x06\xe8\xd2\x1e\x3b\xec\x85\x11\x19\x93\x12\x68\x00\x09\x07\x1f\x70\x6b\x7b\x13\x3a\x24\x87\xd5\x74\x5f\xfa\xdd\x5d\xc0\xeb\x2b\x55\x3d\xf4\x40\x78\x7f\x01\x1d\xda\x37\x71\x9f\xa7\x13\x15\xe8\xb2\x91\xef\xd7\x7d\xa3\xba\x14\xfb\x99\x5f\x03\x57\x1a\x3d\xb5\x22\xb6\x3c\x60\xbe\x56\x19\x94\x16\x99\xb3\x92\x22\xb5\x9d\x0f\x23\xe5\xeb\x37\xea\xd4\xb7\xf7\x50\xed\x4a\xbf\x4d\xb8\x7c\x70\xda\x66\x5b\xef\x4d\x7a\x29\x21\xb2\xc9\x98\x97\xf2\x32\x1c\x9b\xe6\x07\x5e\x74\x4c\x82\x28\x63\x9a\xb7\x36\xdb\xeb\x2b\xea\xb4\x40\xc1\x56\xa3\x9a\x2e\xfd\x26\x1d\xb5\x08\x55\xe3\x04\xd9\xcf\xeb\x99\x14\x1c\x61\x35\x58\x10\x9f\x21\x47\x4d\x27\x2a\x2d\x90\x6d\x48\x93\x93\x4a\xff\x8e\x08\xa4\xfc\xee\x96\x4a\x5c\xd0\x07\x32\xfd\x33\xaf\x29\x84\x9c\x8d\xfc\xa6\x59\x79\x42\x18\x57\x18\x5c\xf6\x29\xf8\x68\x07\xa8\x59\x73\xd3\x44\x0a\x6b\xf8\x11\xa5\x8d\x04\x13\x87\x24\x98\x11\xec\x04\x7e\x5e\x8b\x34\x3b\x23\x87\xd0\x18\x1e\x0d\x0b\xd4\x61\xef\x10\xe8\x16\x4a\xae\x35\x7d\x9b\x29\xdc\x0a\xce\x3e\xc6\xd7\x43\xae\x34\x54\xab\x9f\x84\x2a\x28\xd5\x71\x02\x17\xdf\xfe\x50\x34\x4e\x8d\x93\x2f\x18\x01\xb0\xe8\xf9\x66\x19\x8e\xf1\xc9\xcc\x69\x69\xf3\x47\x34\xaa\x6a\x63\xae\xaa\xb4\x33\x9f\x75\xd3\x4f\xfa\x8a\xcb\x93\x7e\xd9\xc7\x30\x92\xa3\x09\xa9\xb8\x4a\x25\x01\x1e\x31\x14\xc2\x65\xe4\xf6\x02\x33\x7e\xb6\x99\xb5\xa2\x2d\x57\x2b\x03\xe4\xda\xd0\x3b\x04\x61\xc0\x0d\xb9\x67\x9b\x72\xfc\x5b\x49\x3e\xf4\x48\x6f\x85\x53\x5d\x81\x3a\x58\x08\x03\x85\xaf\xd4\xe8\xd8\x71\x82\x80\x34\x33\x4b\xfe\x44\x1d\x18\x98\x4e\x4d\xfc\xde\x02\x44\x03\xb5\xae\x66\xcc\x50\xa4\x73\x01\xb5\x7f\x9a\x32\xf7\x40\xbd\xc7\xff\x1d"}, {{0xd8,0xaa,0x2a,0x0a,0xa5,0x14,0xfd,0x84,0x5f,0x7a,0xa6,0x6b,0x83,0xc0,0xea,0xbb,0x9c,0x16,0x02,0x3a,0xbc,0x16,0x95,0x77,0x34,0x50,0xb2,0xbb,0x33,0x25,0x22,0xf2,},{0xe4,0xe8,0xd6,0xb2,0x98,0x24,0x8c,0x15,0xfe,0x08,0xf8,0x7a,0x3b,0xc6,0x08,0x4b,0xf2,0xd6,0x4d,0x7f,0x1e,0x4b,0x2d,0x51,0x59,0x9e,0x9f,0xad,0x9c,0xc9,0x10,0x92,},{0x14,0x6f,0x65,0xd4,0x3e,0x71,0x55,0x42,0x89,0x4b,0x79,0x00,0xa2,0xf8,0xcd,0x4b,0x17,0xd3,0x87,0x0a,0x61,0x00,0xe3,0x7d,0xe0,0x05,0xb0,0xdb,0x5d,0x81,0x51,0x24,0x6d,0xe4,0xee,0x38,0x42,0xd3,0xeb,0xca,0x20,0xa5,0xda,0x22,0xa3,0x63,0xa7,0x57,0x5e,0x7a,0x55,0x12,0x82,0x95,0xf2,0x72,0x11,0x48,0x4a,0xf5,0x7c,0xd5,0x31,0x09,},"\x08\xde\xb3\xb8\x32\xf5\x2d\x65\x56\xf7\x8c\x3f\x0a\xbe\x46\xf1\xef\xe4\x5e\x3d\x5d\x88\xe7\xf8\xed\xf8\x03\x67\x0c\xe4\x61\x29\x21\x74\x9e\x9e\xce\x63\xfd\xc9\xbe\xf2\xba\x48\x38\x12\xbb\x62\x2b\xe7\x44\xd4\x04\x04\xfd\x6e\x09\xc9\xe1\xcb\x7c\xe1\x9d\xe8\x1a\x9d\xad\xf5\x56\x35\x2e\xe8\x98\x10\xc7\x6a\x9b\x10\x47\xac\x62\xb1\x6e\xbb\x7d\xa2\x3d\xdc\x2d\x4a\xb7\x6a\x02\x05\x61\xd0\x2d\x41\xb5\x8b\x94\x95\x3a\x23\xfa\xaf\xdd\xd7\x81\xb7\xdc\xa7\xb7\xfb\xee\x70\x6e\xc1\x0a\x73\x12\x5b\xf7\x44\x36\x05\x6b\xf3\xb4\xf2\xa0\x70\x1c\xfe\xf0\x5b\xeb\xd3\xdd\x8e\xef\x30\x6c\x1a\xc1\xb0\x09\x50\x88\x1f\xf0\x5a\xb5\xc8\x24\x8a\xd1\x09\x6a\xc9\x1d\x52\x6a\xe5\x9b\xa0\x58\x3b\x27\xdb\x7d\x1e\x39\x0f\x57\xa5\x88\x9e\x27\x99\xa4\xa1\x51\x9b\x15\xd9\x3d\xbf\x0b\x21\xd4\x50\x87\x3c\x76\xba\x52\x04\x61\xe8\xbb\x5c\x83\xc9\x01\x2e\xac\xd5\x57\xbe\xa6\x40\x58\x6e\xfc\xb8\x69\x00\x76\x47\xd4\x49\xf9\x1c\xcd\x52\xaf\xe3\xa8\x94\x77\xde\x7c\x2b\x64\x7e\xcc\x9b\xf9\x67\xfb\xf5\x76\x9d\x74\x88\x94\x47\xd9\x52\x2d\x9e\x80\x69\xc3\x49\x9a\xf6\xa8\xa1\x09\x7a\x95\xd3\xbc\xc5\xf8\x34\x33\x93\x44\x84\x31\x4c\xb3\x07\x58\xb5\x25\xfe\x53\xe9\x07\x21\xdf\x5c\xbe\x03\xd9\x6f\x0d\x0f\x98\x52\x1f\x01\xa5\xfb\xe5\x7c\xe8\x80\x4d\xbd\x18\xf8\xf5\xea\xc8\xf7\xdb\xb5\x8c\x41\x78\x9a\x44\x43\x3f\x8a\x8d\x12\x45\xd2\xad\xda\x8c\x78\xd8\x81\xc6\x5e\xa6\x61\xab\x17\x8d\x4f\xc2\x63\x4c\xd6\xcb\x51\x4a\xb6\xf2\x54\x3e\x91\x12\x18\x3f\x3f\xf7\x3a\x3f\x45\x01\x06\xb0\xee\x8a\x34\x7a\x80\xcb\x82\x4a\xc1\xf8\x01\x64\xe3\xbb\x51\x23\x69\x8d\xe0\xe7\x47\x35\x9c\xa3\x5a\xca\xa3\xba\x0c\x94\x3b\xea\xcd\x7a\x9b\xdf\x8f\xf7\x39\x78\xe9\xfb\x00\x20\x45\xe8\xfe\x56\x48\xcc\x0f\x9c\xfa\x88\xb0\xd8\x12\xe8\x1a\xa6\x2e\x0d\x9c\x73\xfe\x61\x3a\xfd\x95\x39\xbc\xb6\x15\x72\x1f\xb4\x97\xd6\x2f\x65\xc8\x3b\x87\xa6\xd2\x14\x3f\x9b\x1c\x88\x0e\xc8\x67\x1b\xd4\x2c\x8d\xe9\x57\xb1\xa6\x8e\xe4\x92\x26\xff\x71\x7c\xcc\x6e\x74\xf2\xee\xe4\x9c\x30\xde\xa5\x3f\xec\x3c\xd4\xd9\x0f\x2c\xcc\xd8\xf9\x7c\x55\xd5\xc7\x52\x45\x4b\xe2\xba\x7b\x6f\xf2\x03\x0b\xe6\x7e\x0d\xf5\x0c\x5e\x88\x38\x43\xe7\x16\x12\xf2\xb9\x53\x59\x54\x3e\x2b\xa1\xbf\x2e\x98\xde\xbc\xf5\x76\x8f\x2b\xe6\xfd\x50\x4d\x97\x83\xce\x92\x1a\x81\xe0\x94\x16\xdb\xcf\x2b\xb6\x55\xa9\x24\xb1\xef\x01\x12\xd6\x71\xf0\x84\xa5\xb6\x90\xb0\xb6\x4a\x8b\x9b\xf5\x03\x33\xc3\x59\xff\x3f\xef\x19\x96\x94\xf9\xb6\x29\x24\x24\xf0\x06\x66\xce\xf6\xd0\x6d\x16\x1a\x79\xe3\xa1\xb9\xb9\x62\x9e\xea\x53\x50\x5f\x5e\x36\xae\xad\xfe\x0d\x75\x96\x72\xb0\xff\xe4\x98\x39\x7d\x90\xa5\x5d\x99\x44\xb3\x05\x41\xa7\xe1\xbd\xac\x53\x02\x06\x40\x13\x7d\xc2\x52\xae\xf6\x22\xf3\x81\x9d\x36\xab\x49\x8d\x76\x3e\x43\x27\xba\x85\x80\xdd\x9f\x7e\x5f\x47\xc2\x4c\xc9\x92\x87\x34\xb7\xe6\x21\x12\xc5\x7e\x3e\x0c\xfe\xde\xcd\xcb\xac\xcb\x0c\x45\xaf\x82\x19\x45\x5e\xe7\x22\x3c\x71\xe7\xe2\x04\x10\xc5\x24\x4e\xb8\x27\xaf\x2f\x39\x35\xce\x47\x55\x44\x47\x47\xaa\x94\x5f\x4c\x26\xdb\x3a\x29\x85\x19\xe7\x5f\xc6\xba\xce\x91\x52\x99\x72\xe8\x69\x1b\x69\x4d\x30\xaa\x8b\x5e\xc4\xc1\xa0\x28\xd3\xbd\x10\xbd\x0c\x8a\x40\x8f\xb7\xd9\xd7\x03\x49\x55\x53\xec\xea\x59\x8d\x06\x22\xdc\xc7\x4d\xe4\x89\xba\x71\x95\xcd\xae\x8d\x5c\xff\x98\x55\x92\x18\x37\xb5\x28\x43\x3e\xe5\x5c\x0b\x70\x90\x85\x7a\x0c\x27\x84\xd9\x31\x0b\x48\x25\xa7\x99\x3a\xd9\xc6\xf1\x8f\x83\xbc\xa5\xcc\x6a\x25\x04\x71\x68\xa8\x37\x6b\x06\x2e\x3a\x48\xea\x90\xca\xd8\x8e\x33\x11\x87\xc2\xb6\xf2\x81\x42\x6f\x81\xf7\x88\x04\xa8\x95\xc4\xec\x06\xc3\x41\xfe\x84\x6a\xf4\x52\x7e\xa2\x60\x69\xdc\xf6\x1d\x81\x3f\xdd\xf0\xfc\x43\xc7\x07\x35\x0b\xfb\x2f\xc1\xcf\xfc\xee\x7d\x7c\xcd\x7d\x75\xf7\xa4\x65\xa3\xd1\x4d\x57\x30\x2c\x14\x6a\xba\x3e"}, {{0xde,0x8f,0x1c,0x99,0xe7,0xf8,0x55,0x6d,0xf2,0x0b,0x59,0xb8,0x50,0x4c,0xff,0x7c,0x6c,0x52,0x41,0xa8,0xae,0xeb,0x30,0xb9,0x2e,0xab,0x97,0xbf,0x48,0x1d,0x0f,0xe9,},{0xe4,0x63,0x79,0x1d,0x0f,0x56,0x7e,0xe7,0x3a,0xbb,0xf4,0x7d,0xd5,0x71,0x67,0xa5,0x35,0x61,0x3b,0x05,0xcd,0x48,0xd9,0x2e,0xbc,0x7d,0x24,0xe6,0xeb,0xff,0x95,0x73,},{0x30,0xab,0xc4,0xe4,0xe4,0xb3,0x88,0x58,0x1e,0x66,0x8b,0xd4,0x09,0xee,0x18,0xa6,0xed,0xe8,0x1a,0x13,0x6c,0x28,0xa2,0x92,0x4d,0xf5,0xfc,0x00,0xd7,0xc2,0x80,0xd9,0x78,0x62,0xae,0x3a,0x67,0xa9,0x35,0xce,0x49,0x23,0x64,0x13,0x5e,0x65,0x9a,0xdb,0x5f,0xba,0xbe,0x68,0x98,0x16,0x59,0x1f,0x49,0xac,0x50,0x22,0xa3,0x87,0xcc,0x09,},"\x38\xd9\x3e\x5c\x98\x01\xdb\x90\x17\x97\xec\x75\xc6\xdd\xdc\x65\xae\x79\x80\xde\x21\x0b\xed\x43\xb3\x3e\xb4\x4c\xdc\x6d\xc9\x93\x3f\xb6\xbe\xc7\x42\x1d\xb1\x0f\x0a\x59\x32\x0b\x9e\x64\x2a\x21\xf1\xdd\x23\x56\x01\xfc\xd6\xc5\x3b\xe4\xa8\x77\xf4\xfe\xd3\xfa\x4a\x0a\xd4\xdc\x6e\x9b\x39\x1b\xcf\xa4\x34\x90\x69\x25\xba\x45\xec\xc5\xb4\x35\xd9\xab\x8c\xfa\xfc\x39\x4b\xdc\xca\x9b\x07\xd5\x66\x83\x93\x44\x6e\x34\x00\xe9\x03\x94\x35\xa1\xdc\x78\xcb\xc0\x88\x07\xa3\xfb\x24\xca\x8b\x19\xf6\x4e\xa0\x8b\x8b\xf6\xc2\x0a\x19\x5b\x51\xff\x80\x15\xf3\xe7\xc9\x1d\x08\xe4\xbc\x62\x41\x55\x95\xa5\xa8\x82\xfb\xa6\x51\xdc\x3a\x67\x51\x87\xaf\x61\x82\x49\x74\x7b\x46\x80\xd1\xd1\x5a\x20\x2e\xa9\xdf\x48\xb1\xc2\x14\xfd\x40\x34\x66\xfd\x1a\x26\x5f\x2d\xef\xaf\x8e\xd5\xa6\xbf\x0e\xb0\x8d\x18\x64\xf2\xa2\x8e\x94\x72\x14\x3c\x6f\xd1\x03\xb6\xb1\x08\xc0\xd1\xd1\x36\x3b\x99\xf9\x20\x2d\x11\xf0\x20\x56\xc2\x79\xcc\xa3\x15\xdb\x1a\xb6\xd3\x10\x18\x45\x8f\x57\xba\x33\x16\xcd\x27\x38\xe8\x0c\x49\x2d\x85\x7c\xb1\x74\x99\x25\xe3\x31\xc6\x58\x58\xb5\x09\x83\xcd\x98\x38\xcf\xd2\x18\x8a\x5e\x8f\x05\xb4\x71\xfd\x3c\xdd\xcd\x30\xd9\x69\x01\x19\x40\x20\xf1\x15\xfb\x46\x9a\xb5\x84\x90\x06\xdf\xfa\x2d\x54\x3a\x13\xb3\xb5\x06\xed\x65\xcc\x45\x75\x32\xb8\xaa\x3e\xe3\x1d\x9d\x8d\x9e\x52\x98\xd7\xac\x70\x7a\xc1\x5b\x82\x7a\x57\x8c\x81\xd4\x34\xf8\x4c\xb1\xb5\x61\x20\xd6\x67\xb2\xaf\xe6\xd1\x53\x0a\xfd\xdf\xb9\x66\xd9\x53\xbe\x7e\x32\xdf\x07\xde\x38\x9e\x2d\x04\xb2\x32\xd3\x51\x2c\x7d\xb9\x35\x8f\xc9\x44\xd1\xb1\x18\x07\x8e\x69\x99\xe8\x91\xbb\xfa\x4a\x43\x29\xf6\x5d\x80\x71\x88\xb5\x98\x58\xc4\x31\x21\x1b\x29\x57\x6f\x44\x96\x13\x8b\x7c\x0c\x12\x8f\x7b\xef\x5f\x79\xb0\xf4\x46\xfc\x6b\x4a\x0e\x20\xbc\xa4\xc4\x0a\x83\x57\x1a\x36\x64\x4a\xbf\xfa\xbd\x49\xcb\x58\x5f\xd0\x64\xc8\xe5\x09\xd9\xa0\xfc\xff\x46\x26\x76\xf0\xeb\xcb\x61\xce\xc6\x1e\x51\x2b\xe6\xf1\x82\xab\xd5\x9e\x09\xf6\x42\xaa\x61\x96\x34\x85\x34\x82\xec\xe8\xf8\x98\x00\xf9\xc5\xbc\xfb\x84\x14\x31\xca\x06\x91\xed\x8d\x80\xe0\xa2\xfc\xb7\x97\xa0\x36\x89\x7c\xfb\x65\x37\x58\x6b\x31\xc0\x0b\x79\x65\xef\xdd\xfd\xa7\x28\x61\x84\x50\x26\x45\x91\x57\xf7\x9e\xba\x1b\xca\xf6\xcd\x41\xd6\x18\xae\xb1\xbd\x8d\xa1\xbe\x98\xf0\xcd\xc7\xf2\xe0\x9b\x90\x3d\xe4\x9c\x0c\x1b\xe9\x1d\xcc\x17\x7b\x29\x80\x96\x83\x6d\xce\xa4\xf6\x01\xdd\x86\x69\x15\x55\x12\x83\x25\x43\x8b\xd9\xcc\xbf\xc0\xe7\x77\x92\x0a\xe8\xbb\xd5\x76\x34\xc6\x10\x4f\xe6\x9a\x3a\x72\x01\x2a\x23\x60\xb6\xe5\x52\x55\x0c\xff\xb4\xe2\xf0\xb4\x1f\xe1\x55\x37\xee\x0e\x6f\x37\xe7\x88\x0f\xb4\xd1\x2b\xef\x6c\xad\x26\x6c\xe5\x8d\xf9\x81\x6b\x35\x96\x0c\xd0\xbf\x86\x52\x86\x2e\xe7\x89\xcc\xc3\x1a\x7e\xfc\x21\xa8\x1b\xda\x46\x14\x6b\x11\x1f\xcf\xd9\x4f\x04\x85\x6a\xb6\x1a\x55\x7b\x1f\xf7\xc8\xe4\xea\x6d\x9c\x4b\xcd\xd9\x3b\x15\x1a\xa0\x84\x61\xc5\x68\xde\xfb\x2a\xef\xdf\xce\x96\x39\x4d\xc8\x22\xd4\xef\x6c\xc4\xb9\xa3\xe6\xc3\x32\x03\x9f\x65\x38\xaa\x0d\xf8\xde\x81\x26\xd9\x0c\x31\x2f\xf4\x96\x88\x74\x86\x11\x15\x65\x53\x43\x46\xa7\x46\x26\x25\xd6\x3d\xf6\x9f\xcb\x57\x41\x90\x6f\x19\xe0\x0f\xc8\x00\x3f\x08\xb9\x59\x85\xc3\x8b\x86\x74\xaf\x42\x3c\xa5\x6d\xe5\xf8\x81\xb5\x9c\x46\x62\x43\xa7\xad\xba\xdb\xa2\x9c\xaf\x57\xfa\x77\x71\x22\xe6\x18\x23\xb4\xe7\x08\x18\x2a\xaf\x37\x20\x6d\x7d\x5e\xd0\x51\xc1\x2a\x5c\x0f\x6b\x43\x71\x04\x3f\x56\x2c\xdc\x02\x9d\x5e\x1b\xa9\xb2\xbf\x5f\xfb\xf1\xf5\xf5\x23\xdb\x06\xfe\xca\x42\x7d\xb7\xa0\x88\x19\xff\xb2\xd0\x58\x52\x42\xe2\x0d\xa5\x8e\x32\x0b\x16\xb1\x6e\x44\x8d\x8b\xe0\xef\x74\x02\xd2\x4a\x71\x94\x25\x71\x33\xbd\xc9\x82\x31\x4d\x83\xad\xbc\xd1\x2e\x8a\xf3\x13\x03\x42\x6c\x59\xff\xd8\x26\x9c\xe4\xb9\x87\xca\x9b\x6f\x0f\xfd\xbb\x4d\x1d\x12"}, {{0x07,0x36,0xf8,0x01,0x72,0x0a,0x94,0x7c,0x5c,0x2f,0x32,0x58,0xce,0x0d,0x51,0x1c,0x3e,0x17,0xe9,0x4e,0x37,0xb3,0x0a,0xdf,0xa5,0x20,0x95,0x92,0x11,0x71,0xd4,0x00,},{0x4f,0x69,0x42,0x55,0x92,0x0d,0x0c,0x38,0xde,0x6e,0x72,0xe1,0x65,0xc3,0x3a,0xee,0x76,0xb1,0xcb,0xf6,0xf4,0x83,0x7a,0xa5,0x90,0x14,0x75,0x66,0x7a,0xcd,0x28,0x26,},{0xc0,0x3c,0x03,0x14,0x85,0x12,0x79,0xed,0xcd,0xe9,0x70,0xc2,0x3e,0xfa,0x23,0x6f,0x23,0x5e,0xda,0x96,0x0d,0x2c,0x27,0xd3,0xca,0x94,0x6f,0x65,0x0c,0x20,0x0b,0x4e,0xba,0x04,0xbe,0x66,0x8f,0xf6,0x2e,0xaf,0xfa,0x6c,0xea,0x35,0x1a,0xbd,0xfc,0x54,0x40,0x1d,0xcc,0xce,0x3d,0xba,0x78,0x00,0x4a,0xec,0x95,0x81,0xa2,0xcc,0xf4,0x0f,},"\x7f\x87\xb5\x1f\x6e\xad\x2d\x44\x02\xa3\xbd\x3c\x37\x69\xa2\x67\xac\x8e\x82\xf7\x79\xad\x7b\x98\x6d\xec\x82\xcb\xfc\x1e\xa5\x12\x91\x88\x43\x26\xd9\x22\x69\x67\xcb\x66\xa9\x68\x73\x18\x4f\x0e\x83\xb3\xab\x25\xa5\xab\x2f\xa8\x05\xfe\x3a\x0e\x7b\x19\x0a\x62\x2d\x46\x1b\x78\x30\xa3\xf6\x97\xc8\x31\xc2\x9e\xa7\xc0\xcd\x4b\x68\xd8\xe7\x7a\xa6\x97\x11\xcf\x86\x4d\xc1\xd5\x39\x4f\x48\x45\xe2\xfb\xb5\x07\x64\x04\xe0\x9a\x88\xb7\x9f\x05\x67\x05\x51\xbc\xe2\xef\x54\x68\xb7\x9d\x57\x88\x8b\x98\x52\xa4\xbb\x47\x9a\x4f\xd0\xbe\xb6\x81\xfd\x52\x3f\xc5\xbf\x44\x58\xab\xbc\x38\xec\xe7\x2e\x10\x6e\x00\x22\x20\x15\xa5\x7e\xbe\xc5\x5b\xf4\x75\x13\xe2\x5c\x3c\x45\x54\x84\x3b\xda\xcb\xcf\xe9\xf1\xb8\xd0\xae\x35\x4e\x48\xd0\x3f\xde\xbd\xf2\x0d\x65\x5b\x52\x68\xd8\xbb\xbf\x33\xb1\x28\x89\x10\xf0\x44\x4f\xcd\x56\xc0\xda\x7b\x89\x03\x36\x2b\x7e\x37\xa8\x64\x65\x42\x77\xcf\xfb\xe6\xc6\x08\x57\xf0\xb3\x51\x4d\x22\xa4\x0b\x9d\xd2\xd3\xfe\x5c\xae\xa5\x50\x7a\x0d\xe3\x05\x1b\xb3\xa4\x01\x5f\xa0\xfe\x4c\x46\x2b\x98\xfe\xf2\x35\x7d\xcf\x6b\x97\xdc\x75\xde\xf3\x82\xf9\x01\xf9\x6f\x4a\x04\xa3\xef\xc6\x02\x54\x20\x0a\x2c\x4c\xdc\x8a\x58\xb2\x5d\x94\xe3\x29\x54\xea\xff\x15\x11\xac\x46\xe3\x60\x66\x63\xb6\x87\x5f\x13\x64\x99\xda\x6a\x76\x90\x97\x87\x9a\x6e\x08\x34\xd5\x64\xfa\x7f\xdb\x99\x58\x11\x83\xed\x0c\x9d\x48\xfd\x19\x5d\x7e\xcd\x9f\x4d\xd4\x86\x55\x65\xfd\x17\xa0\x08\x71\x8d\xcd\x76\xf6\x8a\x54\xe5\x16\xa2\xb7\x30\xed\x3d\xba\x5c\x2c\xf4\x06\x30\xbb\xfe\x7f\xa0\x3b\xb7\xcd\xd9\x67\x69\x54\x95\xa7\xc8\x6e\x2e\x84\xcb\x01\x7e\xc6\x96\x01\x92\x46\x31\x59\x5a\xff\xaa\x8c\xfd\x04\x8d\x14\x26\x7c\x73\xe5\x4c\xfa\x53\x90\x47\xe7\x17\x69\x1e\x39\x97\x37\xfa\x50\xcc\x48\x44\x96\x12\x57\xc9\x3d\x72\x53\xd2\x32\x26\xb7\xcd\x0d\x1b\xd3\x1f\x3f\x0d\x2d\x89\x2d\x07\x3d\x8c\x50\x73\xc6\x02\xf6\x1a\x04\xd6\x43\x7c\x39\x03\xeb\x4a\x64\xa0\x1f\xbc\xc0\xc7\xe1\x59\x20\x1c\xdc\x4a\xa4\x2e\xf3\xb1\xff\x9c\x78\xfc\x27\x5c\xfb\x11\xa0\x5f\xfe\xd8\xf9\xf2\x2d\x85\xba\x92\x4d\x8d\x32\x23\x1c\x25\x4d\x89\x8d\xa7\xf0\x67\x9a\x64\xca\xb8\x40\x26\x90\x6e\x9e\x85\xf9\x5e\xfd\x8e\xe2\xa1\x72\x56\x33\xf4\xde\x2b\xa6\x7d\x99\xaa\x7f\x05\x50\xaf\x13\x9e\x9f\x8c\x52\x93\x78\x67\x27\xd8\x26\x30\x29\x6d\x5d\xaa\x9e\x83\x0a\xa1\xb3\xb5\xb3\x02\xb8\xb6\x62\xac\x83\x2e\x92\x13\x01\x6b\xa4\x93\xa0\x3a\x28\xcc\x3e\x95\x40\xd0\xd6\x5a\xcd\xdb\xfe\x12\x52\xb5\xc1\x6a\x84\xa4\x45\xce\x75\x41\x5c\x6c\xd8\xab\x16\xfe\x5e\xef\x11\x70\x97\xd7\x1e\xb5\x67\x6b\x9a\x95\xb3\x58\x82\xa7\xc3\x50\x6b\xc5\xd0\x2f\x03\x91\x0a\x63\xd4\x68\x46\xb2\x13\xc3\xc9\xbb\x2f\xc3\x4e\x6c\x69\x01\x7d\x20\x65\xa1\xad\x3c\xe3\xfd\x14\xab\x00\x14\xf5\x84\xe5\x7e\xa9\xd9\x03\xe4\x0a\xce\xb2\x30\xa8\x69\x3f\xa2\xe6\x36\x41\xc2\x54\x38\xff\x7a\x16\x38\x76\x04\x38\x84\x4c\xdf\x00\x11\x80\xf5\xb1\x77\xbe\x69\xed\xf7\xef\x66\xb3\x93\x12\x80\x52\x14\xcb\x17\x70\x6c\xef\xe5\x45\xbe\x5a\x77\x01\x9a\x5e\xc5\x2b\xbf\x78\x85\x0f\xa3\xd9\x7d\xe2\xd4\xd7\x4a\xa6\x8b\x58\xca\x81\x2a\x1b\x15\x6a\x0c\x40\x01\x12\x9f\x06\x72\x32\xa6\xec\x91\xa5\xed\x42\x70\xf2\xa4\xc6\xef\xee\xe7\x87\x00\x47\x70\xc8\x59\xe4\x50\xe8\x37\xef\xb0\x4d\xc9\x98\xbd\x27\x3c\x27\xa0\x98\x55\xe4\xec\xa1\xa2\x2a\x9b\x88\xc1\x7b\xdb\xf2\x53\xa7\x97\x61\x07\x0a\x76\x81\x7a\x7f\x74\xff\x3f\x07\xfb\x71\x8b\xff\xa0\xb4\xf3\x26\xf2\x84\xe6\x2f\x83\x68\x32\x42\x7b\xe8\x2f\x48\x33\x73\x51\x5b\x9b\xf5\x9a\xf4\xa7\x6a\x57\xe2\xf4\x0b\x91\x03\x4d\xd5\x68\xec\x14\xac\x10\xe2\x30\x9b\x87\xe2\x92\x2f\x9c\xd9\xfc\x1a\x46\xa4\x7e\xd3\xbc\x7e\x1b\x9f\xeb\x9e\xe0\x67\x07\x3f\xa5\xdc\xe2\xa6\x75\x30\x52\x6d\xe6\x7e\xe0\xe5\x09\x66\x3c\x44\x46\x7e\xeb\x59\x42\x01\x03\xeb\xcd\xff\xa7\x09"}, {{0xfa,0x75,0x65,0x04,0x91,0x04,0x74,0x28,0xd3,0x63,0xb5,0x82,0x22,0x22,0x12,0x2d,0xff,0xb5,0xa9,0xfd,0xdc,0x60,0x3c,0x33,0xc8,0xa6,0x08,0x61,0x83,0x75,0xdc,0xf3,},{0x98,0xc9,0x64,0x1f,0xa9,0xdf,0xa8,0xea,0x13,0xe0,0xd1,0xc7,0x16,0xb8,0x67,0x9e,0x26,0x4b,0xe1,0x5d,0xd2,0xd4,0xc0,0x6a,0xb4,0x3c,0xbe,0xe4,0x79,0x16,0xee,0x01,},{0x1e,0xff,0xbf,0x92,0x99,0xa1,0xb9,0x35,0x4f,0xe1,0xf1,0xde,0xc1,0x76,0x65,0x95,0xea,0x76,0x7a,0xb8,0xe4,0xda,0x9b,0xb5,0x7b,0x4f,0x69,0xbc,0xbd,0x8c,0xb3,0xd8,0x6f,0x76,0x83,0x92,0xf5,0x9b,0x39,0xfa,0xfa,0x8a,0x21,0x0a,0x65,0x09,0xfe,0x0d,0x60,0x08,0xd6,0x35,0x61,0x11,0xad,0xfb,0x37,0x99,0xc1,0xd5,0x59,0xc2,0x63,0x09,},"\xf5\x4e\x41\xb9\x39\xe3\x7d\xf1\x7c\x7d\x60\x43\xfd\xed\x14\xa9\x15\xd9\x34\xe8\x67\xc3\x45\x26\x9f\xdc\x01\x77\xf5\xbd\x10\xc4\x34\x8f\x31\x9e\x0a\xb9\xa6\x4c\xc0\xb7\xd4\xe0\xc9\x1c\xa9\xaa\xda\xab\x2e\xdc\xba\x54\x4f\x14\xed\x2c\xb5\x39\xca\x89\x75\x09\x7d\x87\x92\x70\x95\xb4\xeb\xd4\x90\x34\x43\x40\x06\x1e\xd9\x3c\x38\x16\x7e\xda\xa0\x96\xa2\x30\xdb\x59\x62\x4c\x67\xfb\x9a\x1e\x1d\xda\xc4\x02\x13\x3f\x4d\x47\xcf\xc1\x1e\x2f\xae\x6b\x3f\x3c\x50\x01\xcb\xa9\xa8\xae\xd9\x00\x73\x10\x32\x40\x22\x7e\x71\x6f\xf7\x1b\xf6\x8a\x59\x1b\xa2\xce\xff\x2d\x31\xb8\x6e\xf2\x1a\xb0\x12\xec\xcd\x40\x9a\xd5\xc2\x9d\x65\x9a\x1b\x37\xc4\xd8\x55\x05\x30\x41\x40\xfb\x2c\x34\x37\xa2\x06\x86\x8b\x13\x52\xc1\x02\xbb\xfa\x3b\x9a\x76\x52\x2a\x2b\xfc\x54\x06\xb2\x57\x69\x6d\xe7\x4e\xe7\xd3\x15\xc8\xe9\x9c\xaa\x96\xbd\x83\x80\x06\xc6\xda\x2a\x42\x33\x31\x5a\x85\x6a\xcb\x8e\x80\xc3\x31\x68\xb3\x33\x55\x1d\x91\xd0\x74\x05\x57\x34\x13\x0b\xd7\xd1\x4c\x56\x81\x1e\xba\xbf\x7d\x5a\x25\x0e\x60\x72\x59\x3d\x9f\x2f\x8b\x97\xc1\x2a\x70\x3c\x2c\x47\x9c\xb0\xb1\x5b\x7a\x27\x75\xc9\xdc\xd2\xca\x46\x24\x67\x23\x68\xa2\xe6\x14\x54\x67\xf3\xbe\x66\x15\xf9\x3b\x81\x20\xa0\xa1\x2d\xa1\x56\x06\x63\xa2\x6a\x61\x73\x19\x66\xb4\x4b\x29\x9e\xbf\xad\x2a\x95\xc6\x23\x60\xf3\x9c\xe0\x5d\x95\x58\xe3\x05\xee\x23\xa5\x2f\xa5\xce\x20\xf6\xbe\x5e\x26\x2a\xff\x3a\x86\x4d\x5d\xda\xbe\x23\xff\x94\x3f\x71\xd5\x99\x84\x93\xd9\x9f\xe2\xac\x23\x74\xb4\x64\xa6\x91\x83\xc3\xbc\x4f\x1d\xdb\x88\x36\x11\x14\x9d\x7d\xdb\xf1\xe8\x38\x0b\x54\x43\x35\xe2\xb8\x93\x95\x05\x4c\x9f\x25\x58\xdf\xc5\x6e\xa9\x3f\xf1\x4d\x0f\x15\xd2\xe0\xbd\x89\x37\xa5\x56\x38\x7d\xe9\x6e\x41\x8d\x8b\x3a\x7d\x66\x6f\xb1\x90\x36\x4b\x2c\x21\x90\xd3\xc2\x5f\x17\x52\xd5\x48\x3d\xcb\xb5\x96\x00\x64\xf0\xc8\x7f\xcf\x8f\x31\x3d\x28\x78\x1c\x11\x4a\x16\x9b\x69\x0a\x87\x01\xc5\x0d\x89\xc7\x73\x24\x53\x1c\x0f\x84\x9d\xba\xd1\x63\x3d\x92\x5a\xcd\x06\xc1\x6a\x9c\xea\x19\xa4\x34\xeb\xc4\x2a\xeb\xb1\xfd\xb9\xb0\xba\xcc\x93\xce\xc3\x99\x19\x94\x36\x64\xea\x1a\x95\x84\x06\xff\x9e\x49\x35\xc9\x2c\xa7\xc3\x97\x08\xf9\xca\xb7\x10\xa5\x83\x09\x6b\x4e\xd9\xf4\x8d\x9e\x09\x06\x47\x24\x0d\x76\xec\xcb\xab\xa5\x91\xf5\x5f\xe7\xe3\x6d\x72\xc2\x17\x27\xac\xba\x0f\x80\x30\x95\x4e\x62\xbc\x58\x0b\x8b\x67\x0c\x44\x57\xc3\x40\x3e\x36\x9a\xc2\x0e\x66\x0d\x66\x2f\x7f\x6a\x41\x42\x13\xea\x43\xf7\xc0\x10\x50\x09\xc1\xde\x81\x7a\xdf\x6f\xfd\x9c\xca\x3b\x45\xa6\x3a\x82\x22\x81\xc6\xe2\x77\x2f\xd7\xb7\x80\x96\x03\x18\x4b\x48\x79\xb1\x8c\x88\x79\x03\xf0\xfc\x8d\x8e\x1e\x2d\xbf\x6e\x77\x2f\x0b\x2d\x9b\x8a\x29\x92\x7a\xcc\x81\x71\x4a\x22\x56\xad\x8d\x7b\x73\x30\x52\x7d\x7d\xbf\x8b\xef\xd8\x2f\x8c\x9b\xb4\x01\xcf\x0a\x90\x24\x9a\x64\xca\x6f\x88\x33\xdb\x31\xbd\x03\xb9\xe7\x94\x6d\x06\xdd\x04\x38\x3d\x7c\x08\x2d\x70\xae\xb3\x7f\xf8\x4c\x2b\x05\x7d\x97\x3b\x89\x4b\x4a\x03\xec\x7b\xf0\x31\xae\xa6\x56\xa1\x90\x84\x88\x89\x4a\x4a\xda\x3f\xd7\xfa\xdf\x91\xed\xe9\x55\x0d\x38\x41\x5f\x82\xa0\x94\x55\xc0\xf4\x32\xfb\x55\x98\x71\x32\xf0\x00\x42\xaf\xd6\x0e\xa5\x1d\x1f\x1c\x6c\x1a\xfe\x0c\xf8\x7c\x34\x6e\x31\xe6\x3e\x26\xf4\x9b\x13\x71\x77\xb2\xd4\x7a\xb3\x0f\x07\xce\xa0\x71\x93\x12\x74\xcf\x01\x08\x36\xd6\x83\xff\xf3\xbe\x71\x34\xc7\x8b\x8b\xfd\x8b\x1b\x8f\xc2\x04\x9e\x18\xcc\xb1\xe1\x8a\x0a\x95\x85\xa7\xd8\xa1\xe2\x54\x92\x60\x86\x68\xc9\x6d\x62\xa0\xac\xa8\xef\x90\xe0\x48\xd2\x03\x78\xc1\x08\xd0\x6b\x03\xfe\x3e\xc4\xad\xb2\x75\x28\xae\x08\xf7\xde\xd9\x48\x78\x93\xae\x64\xca\x4b\x93\x92\x02\xaa\x4c\x17\xaf\xe7\x18\xcd\xca\x49\xff\x96\x16\xd0\xcd\xf8\x33\x4b\x6a\xee\x2d\x6d\x20\x94\x7c\xa4\xbd\x7d\xf5\x31\xdd\x1d\xa9\x95\x81\xff\x72\xea\x56\xfe\x62\xca\xa2\xc9\x5e\x35\x87"}, {{0xe1,0xc1,0x29,0x46,0xd2,0x21,0xa1,0x94,0xf2,0x2f,0x27,0x62,0xc0,0xe5,0x1c,0xbe,0x3f,0x98,0xb9,0x14,0xa4,0x7d,0x3d,0xc4,0x1a,0x1f,0x45,0xc5,0x43,0x70,0x63,0x7c,},{0x10,0x40,0x81,0x36,0xa6,0x8f,0xc5,0x6c,0x7d,0x3b,0x36,0xb7,0xfe,0xf1,0x22,0x09,0x4d,0xe0,0x81,0x03,0x11,0x89,0xcc,0x84,0xa4,0x88,0x06,0xaa,0xf6,0xcb,0x91,0x85,},{0x8f,0xd7,0xfa,0x40,0x0c,0x03,0x2f,0xcf,0xbc,0x40,0x29,0x42,0xfc,0x78,0x63,0x75,0x26,0xbe,0x97,0xab,0x82,0xf2,0x37,0xbb,0x39,0x3e,0xa3,0x9e,0x35,0x73,0x8c,0x67,0xd7,0x54,0x09,0x54,0x3a,0x8b,0x3c,0x05,0x5f,0x08,0xbf,0x69,0x19,0x9a,0xf6,0x3b,0x69,0x11,0xa4,0x82,0xfb,0x4f,0x65,0x80,0x80,0x2e,0xc9,0xd2,0xdc,0x3c,0x11,0x06,},"\x87\x0f\x4c\xd9\x7c\xfc\x0a\xaf\xad\xa4\x00\x72\x31\x2f\xb5\x4b\xcc\xc0\x76\x28\x71\x4e\x49\x62\xd4\xbe\xf4\xee\xb5\xde\x40\xa1\x9a\x24\x6b\x5b\x7d\x52\xd4\x87\xb7\xe5\x2d\x65\x6f\x2c\x64\x03\xb9\x16\xd0\x2e\x02\xa6\xd2\x91\xc1\xe1\x82\x8d\xd9\x45\xa5\x83\xb4\x38\x52\x8d\x1c\x39\x76\x5a\x57\x20\x31\xff\xa9\x16\xb6\x83\x21\xf3\x2e\x66\x46\xf0\xdc\xc1\xc6\x02\x35\xff\xaa\x32\x35\xf4\x84\xa5\xc4\x97\x8f\xa3\xe6\xbf\x14\x30\x1d\x53\xe1\x2f\x4c\xc5\x21\x18\xb1\xf6\xf0\x7f\x53\x36\xf5\xd0\xa9\x37\x89\xbb\x01\xd1\x62\xfb\x31\x26\xdc\xd7\x56\xe0\x64\x2e\x7e\x69\x89\x63\xc0\x34\x59\x11\xa5\xcf\x3c\x99\x53\xf7\x73\x19\x42\x6c\xea\x2c\xde\xda\x3e\xfe\x98\x9e\xcb\x63\xcb\x9e\xb8\xb9\x20\xde\x76\x6c\x4f\xcf\x63\x36\xe5\xbc\x43\x71\xa0\x68\x37\x1f\xed\x95\xc8\xc2\xb6\x1e\xe9\xb7\xc3\xe3\x83\x1c\x20\xbf\xfe\x87\x07\xc0\xc9\x8b\xe9\x61\x53\xc8\xa8\x73\xd7\xf2\x8a\xfc\xa1\xbf\x71\x08\x5c\xe0\xe3\x89\x9e\xef\x55\x91\xbd\xd6\x66\xdc\x2d\x07\x64\x17\x72\xd7\x45\xc5\x16\x44\xa2\x60\x81\x5b\x20\x8c\x4d\xd3\x05\xf0\x5f\xe4\x63\xd0\xd9\xd5\xa9\xee\xff\x97\x79\xf5\xb1\xd4\x4f\x26\x08\x30\x78\x56\x6d\x0e\x5f\xf5\x6b\x3a\xf0\xe6\x4c\xc3\x87\x08\xaf\x5a\x65\xf6\x54\x35\x2d\xf1\x04\x37\xf1\xdd\xf9\x45\xa0\xda\x1f\x4d\xef\x6a\x71\xa0\x60\xe0\xc4\xad\xec\xca\xac\xf8\x5e\x09\x0f\x70\x90\x37\x0a\xe2\x4e\x52\x38\xd7\x68\xa0\x8f\xe6\xb4\xbb\x5e\xc4\x97\xa6\x60\x31\x98\x60\x84\x15\xc7\xc6\x49\x00\x48\xaa\x36\x73\x7c\x08\x50\x30\x08\xae\xce\x0f\x49\x42\x19\xdd\xf8\x9b\x72\xea\x77\x17\x1c\x6d\x31\x17\x08\x9e\xb8\x89\x07\xe8\xc3\x3f\xb9\xe7\x0b\x0d\xc2\x81\xf6\x64\xb5\xf9\x65\xb5\xd2\xad\xb1\x25\x07\x10\xef\x23\x52\x02\x5f\xb2\x93\x39\x5a\xe1\xd2\x3e\xe3\xb5\x92\xb4\xc5\xf2\xd5\x55\x69\xa5\x45\x86\x54\xce\x3f\xc2\x5d\xd0\xe3\xf7\xe6\x75\x7a\xa7\xb3\x47\xc1\xff\xd3\xba\x4d\x4f\x2c\x4b\x6d\x36\xaf\xd5\x98\x63\xa3\x2a\x59\x4e\x74\x53\x7e\xce\x9b\x8b\x1e\xc2\x69\xbb\xc4\xcb\x54\xd7\x62\x38\x21\x1f\x62\xa9\x8a\x46\xa4\xaf\x66\x2f\xa8\x1e\xba\x6f\x30\xf5\x14\xb8\x66\xb7\x94\x2b\xc1\x73\xf7\x21\x1a\x6c\x01\x4d\xa1\x4e\x74\x13\x27\xa5\x68\x62\x3d\x14\xb8\xf8\x35\xef\x1d\x5d\x62\xb2\x52\x3c\xfe\x6a\x85\xbc\x69\xfa\x05\x20\x0d\xea\xc1\x56\x8b\x94\x6a\x81\x6b\x75\xc5\xd7\x60\x31\x74\xfd\x4e\x2f\x91\x01\xa7\x90\x63\x79\x1b\xc3\xd5\x92\x97\xcd\xc1\x0b\xda\xa6\x63\xab\xf3\xc1\xbe\x2f\xda\x17\xe4\xe5\xce\x39\x4e\x90\xbd\x76\xb1\xf9\xe0\x40\x5f\x56\x75\xb9\x9d\x63\x8a\xbc\x2c\x1b\x2d\x8b\x53\xa6\xfd\x3d\xc8\x37\x58\x55\xec\x54\xcc\xbd\xa2\x4e\x67\x25\x27\x72\x3b\x07\xbb\x59\x9d\xb5\x4e\x38\x79\x33\x91\xcf\x09\xef\x3b\x1f\xd7\x61\x49\x90\x06\x5b\xbd\x4a\x19\xe8\xd3\xd1\x04\x82\x53\xba\x4c\x97\x1c\x2f\x98\xd2\xb3\x59\xdf\x50\x90\x87\x32\x3a\xa6\x90\x50\x29\xf5\xcc\x5e\x1a\x0a\xaf\x2f\x7c\x01\x08\xdd\xb1\xa4\x0f\x56\x2b\xe6\x4e\x57\xe6\x95\xed\x21\xdc\x7d\xb1\x7d\x53\x36\x77\xef\x12\xfc\xbb\xe2\x9f\x3b\x23\x7b\xb6\x34\x4b\x11\x09\xb3\x2a\x94\x62\xab\xc3\xad\x3c\x07\x10\xb0\x4f\x38\xc6\xf5\x95\x2d\xb2\x75\xe7\x7e\x2f\x37\xe9\x5d\x55\x09\x6b\xba\xf3\xe3\x05\xd5\xd7\x43\xd3\x65\x95\xbf\x05\x67\x89\x2c\x21\x0a\xc7\xba\xe7\x37\x1d\x16\x45\x84\x78\x5d\xd8\x90\x17\x41\x59\xb3\x93\x0a\x9a\x6c\xe3\xa1\x66\xdd\xa2\x38\x3e\x6e\x2a\xf2\x8c\x1b\xf3\x19\x24\x47\xe9\x05\x11\xdc\xd8\x0e\xbd\xf9\xee\x2c\x9b\xde\xdd\xee\xb6\x10\x55\x86\x41\x53\x2d\x07\xcd\x13\xda\x61\x25\x41\x54\xcc\x0f\xd9\xd4\x81\xe3\xb0\xa2\x37\xaf\x2e\xc2\x62\x56\xd4\xab\x21\x9f\xaf\x15\xad\x2b\x7e\x8e\x57\xab\x72\x6f\xf2\x72\x32\x16\xa5\x74\x58\x5e\x2a\x63\x9d\x94\x8c\x2c\x4f\x69\xee\xaa\xd2\x83\xe3\xa4\x4f\xf2\x68\xea\xef\xd7\xe6\x6b\x73\xed\xe4\x73\xa8\x39\x7c\x76\xb4\x8d\x56\xcb\x3c\xcd\xab\xc9\x1a\x89\x29\xcf\x42\x99\x83\x50\xe0"}, {{0x76,0x2f,0x06,0xca,0x01,0xe3,0x14,0x71,0x5f,0x92,0xc9,0x0b,0xbe,0x72,0xa2,0x5b,0xf2,0x62,0x12,0xc8,0x1e,0xb1,0xd1,0xa0,0xda,0xe2,0xc3,0x11,0x30,0xf7,0xcd,0xbb,},{0xf9,0x62,0x6f,0xfd,0x69,0x27,0x31,0x92,0x5e,0x5a,0xac,0xfa,0x1b,0xde,0xd0,0x1a,0xa8,0xf7,0x30,0xb7,0x72,0xd5,0xe4,0x6a,0xdb,0xc3,0x15,0x56,0x5b,0x9b,0xf2,0xc9,},{0xe8,0x42,0xb4,0x9e,0x53,0x3d,0xbc,0x92,0x99,0x8d,0xc0,0x78,0xe5,0x97,0x93,0xa2,0xc2,0xfa,0x63,0x6b,0xdf,0xaf,0xdb,0x48,0x93,0x4c,0x93,0xcf,0x34,0x79,0x71,0x02,0x93,0x8d,0x13,0x7a,0xb7,0xea,0xd1,0xa0,0xf7,0x0e,0x94,0xa6,0x7d,0x57,0xef,0x6a,0x02,0xc9,0xec,0x77,0xd7,0x1f,0x70,0xcc,0x57,0xf1,0x53,0x3b,0xec,0x87,0x73,0x0e,},"\x94\x97\x48\x3a\x4f\xba\x78\x43\x3b\x38\xe9\xde\xb8\x91\x5c\x75\x0b\x6d\xa0\xf7\x8a\xf4\xa6\x8b\x62\xf9\xfc\x03\x91\xe3\x38\x87\x3b\x1d\x64\xb1\xb7\xf0\x9f\x12\xf0\x56\xa3\xc9\x16\x53\x49\x8a\xd5\x6e\x06\x9b\x8b\x16\x08\x87\xe8\xe3\x78\xa7\x6d\x8b\x3c\x66\x70\x83\xc0\xa2\xb2\xd2\x31\x7d\x3b\x87\x48\x57\xe5\x78\x62\xef\x0c\xb7\x04\x36\xa9\x02\x8f\x01\x91\xcc\xc6\x16\xe9\xd7\xc9\xbd\x86\x98\x08\xcf\x09\x48\x35\xff\x51\x86\x77\xb3\xfb\x08\x9f\x4c\x9d\x07\x7c\xc7\x74\x24\x05\xb4\x86\x3a\xc7\xa5\x96\x45\xc9\xcf\x54\x0d\x57\x39\x9d\xa6\xae\x9d\x07\xfd\x19\xfc\xa9\x5b\xc8\xa8\x6d\x8b\x8e\x24\xe4\x87\x33\xf3\x21\x58\xfd\x19\xa8\xa1\x11\x1d\x1d\xa1\xf9\xb5\x80\xa3\x9c\x10\x48\x46\x16\xcf\x2b\xc0\xec\x29\xf6\x3f\x77\xc8\x53\x56\x15\x8e\x16\xda\x59\x4b\x5a\x89\x0e\x55\xd0\xb6\x45\x99\xb3\x02\x93\xe9\x00\xed\x92\xad\x26\x19\x69\xe7\xdf\x4c\x4b\x1d\x0b\x60\x24\xbd\xce\xb6\x90\x67\xef\x48\x6c\x20\xfd\xcd\x22\xa1\x0d\x5d\xa4\x5f\xbf\x90\x5b\xa1\xe9\x35\xc9\x6f\x50\xaf\xb6\x35\x71\xbc\xff\x31\x30\x68\x4e\xda\x0b\x56\xe6\x0b\x26\xcf\x4c\x0e\xf9\x93\x8a\x92\x76\x8f\xc8\x63\x1f\xe3\x08\x23\x6b\x01\x2f\x92\xaf\x24\xa8\xf6\xe6\xec\xbe\x76\x62\x9b\xba\xf8\xff\xe5\x4c\xdb\xe8\x67\x1d\xe2\xba\x62\x4a\x7c\x0f\x61\x93\xbb\xa4\x11\x04\x12\x90\x2b\xac\x29\x90\x92\x2a\x9e\x5a\x81\x05\x3c\xf8\x76\xa4\xc8\x05\xa0\x4c\x56\xa8\x13\x9d\x34\x19\xe4\x54\xa6\x22\xd0\x34\x2b\xf4\x26\xe9\x80\x2c\x3d\xc1\xb4\x08\x0c\x75\x49\x2a\xfe\x9d\x7b\x15\x45\xfe\x08\x6d\x96\x35\x41\x32\x4f\xf5\x2a\x48\xc6\xbf\xae\xa2\x66\x68\xb3\xe0\x1e\x52\x36\xfd\x45\xfe\x54\x59\x45\x35\xc0\xb2\x3e\x28\x7e\xbd\x14\x28\xc8\xbe\x0a\xd1\x41\x60\x0e\x91\xcb\x51\xe1\xea\x66\x27\x1a\x64\x21\xfb\x68\x9e\x88\xa0\x79\x0a\x65\x1d\xbd\x21\xee\x20\x89\xb2\x74\x66\x6f\x66\x0c\xa0\x9c\xe2\xd6\x0e\x39\xe2\xee\x5f\x03\xb6\xeb\x82\xd1\x99\x76\x96\x6e\x79\x90\x0a\x81\x0f\x6d\x5b\x5c\x1a\x54\x8e\x50\x64\xf5\xc3\xd8\xa9\xf2\xde\xf0\x17\x9d\xf9\x9d\x14\x3f\xde\x69\xb0\x71\x2c\x09\x1c\x29\xe9\xb2\x5f\x40\xca\xfd\x57\xa0\x24\x65\x8d\x77\x74\x03\x76\x10\x34\x2f\x38\x00\xfd\x51\xf4\x9e\x79\xa5\xb3\xde\xcc\x11\x2f\x58\xd0\x3e\x3d\x29\x58\x75\x85\x88\xbc\x4b\x1c\x6a\x6c\xda\x7b\xc5\xf5\xbe\x18\x3e\x41\x51\x3c\x1f\x23\x0f\x3c\xc3\x64\x30\x4b\xf8\x24\x84\xb7\xcf\x19\xa0\x02\xe1\x50\xf9\x8c\x5e\x97\xc6\x16\x6e\xa1\x5b\x86\x34\x0b\x8c\x5e\xbe\x5c\x1a\x18\x3e\x55\x88\xe6\x6f\x55\x90\x50\x86\x31\x3f\x37\xa4\x09\xe8\x9b\x47\xdb\x31\xae\x97\x45\x3e\xdf\x69\xfe\xd7\xbe\x08\x11\x30\x71\xf3\x74\xb2\x6e\xc6\x04\x3f\x2a\x0e\x9c\xf8\xba\xd8\x02\xab\xad\x69\xe6\x17\xe7\x62\x43\xb3\xcc\x03\x4b\x09\x9d\x87\x29\xee\x40\x7a\x53\xeb\x03\xbd\xc6\x41\x0a\x03\x95\x04\xb3\xb1\x2c\x81\x9b\x64\x54\x5d\x40\x5c\x6a\x4f\x08\x49\x21\x93\x5b\xdf\xf4\x13\x0a\xe6\x29\xd9\x09\x62\x6b\x06\x26\x76\xe5\x38\xea\xfd\xff\xb1\xd6\x22\x9c\x08\x89\xd3\xcd\xdd\x33\x65\xdc\x3d\x65\x36\xf7\x24\x8c\x49\x31\x7c\xb5\x0c\x56\xfb\x57\x85\x55\x41\xd6\xfe\xeb\xac\x81\x6c\x99\x28\xfa\x66\x2d\x0a\xe8\x0a\x0f\x39\xe5\x70\xbb\x7d\x22\x41\x6f\x98\xf3\x71\xb6\x42\x47\x96\x89\x51\xa8\xa2\x46\xf7\x4b\x30\x61\x74\x3c\x9a\xf7\x68\x4b\xbb\x96\x6a\xe0\xbd\x78\xa8\x10\x49\x3e\xa4\xcc\xd7\x11\x74\x87\x1c\x82\xbb\x65\x2b\x27\x48\xe5\xbc\xcb\x0a\xb6\x38\x8a\x50\xf0\x53\xa0\x48\x08\x7f\xd9\x7e\xb1\x5c\x1a\x21\xb1\xee\x18\x25\xe5\x4a\xa1\x30\xd6\x63\x18\xaa\xf6\x61\xbb\xb2\x47\x63\x57\x7e\xb3\x7d\x31\x0e\x21\x9b\x0a\x9b\xba\x03\x75\xeb\x9c\x9b\x4a\xf8\xc4\xb9\x9a\x36\x99\xe0\xd3\x26\x67\x33\xb6\xe4\xe9\xc5\x34\x49\x0a\x13\x41\xcb\x19\x90\xca\x5b\x1c\x84\x7b\xc8\x12\x60\x26\xfe\xa9\x03\xa1\xf5\x49\xd6\x5a\xf8\xfe\x02\xa9\x16\x3f\xf8\xea\x28\x1e\x72\x26\x24\x3e\x2a\x15\x3b\x92\x18\x51\xde\x10\xf7"}, {{0xc5,0xcc,0x0b,0x95,0x81,0x8c,0x4b,0xf3,0x8d,0xa1,0xd6,0x5f,0x02,0x16,0x27,0xe9,0xe5,0x7d,0x26,0x2b,0x02,0xec,0x6d,0x91,0x7a,0x7d,0x46,0xb1,0x1c,0x7f,0xe4,0x8a,},{0x45,0x7d,0xa4,0xef,0x14,0x51,0x9d,0x54,0x1e,0xdf,0x92,0xca,0xbe,0xd9,0xb0,0x4d,0x8a,0x2f,0x2a,0xfd,0x15,0x10,0xa9,0x2f,0x00,0x9b,0xb4,0xe8,0x75,0x4f,0x1e,0xba,},{0x3b,0xa0,0xaf,0x8a,0xf1,0x27,0xc4,0x58,0x48,0x26,0x09,0x0e,0xcd,0xaf,0x48,0x5e,0xbd,0xf0,0x7b,0x82,0xbc,0x49,0x9c,0x9a,0x2b,0xef,0xca,0x28,0xd4,0x93,0x44,0x97,0x4a,0xdd,0xbc,0x8d,0x80,0xa5,0x25,0x60,0xe0,0xf3,0xd7,0x3f,0xf5,0xcc,0xcc,0x72,0xc7,0x4b,0x5b,0x47,0xad,0x2e,0x6d,0xe9,0x61,0x2d,0x1a,0x00,0xae,0xc9,0x27,0x01,},"\xd6\x60\x8b\xf5\xac\x00\x0e\xca\xf9\x5f\xc0\x9f\x9c\xb7\x49\x8c\x51\x8a\x6e\x02\x55\x58\x6e\x63\x37\x85\x3b\x1d\x7d\x9d\x7d\xe4\xdf\xe1\x24\x5d\x59\x03\x1a\x31\x7d\x4e\x2b\x6a\x73\xc4\xc3\xf9\x5b\x58\x2e\x72\xa6\x42\x02\x21\x58\x7b\xac\x12\x0f\xb8\xed\x73\x48\x07\x0f\x28\x60\xd8\x58\x66\xa0\x9f\xe7\x56\x74\x34\x97\xf2\x11\x9b\xc1\xbf\xdf\x57\x3b\xe3\x5d\x10\x91\xbe\x37\xf1\x8b\xcd\xa6\x74\x1c\x90\xd5\x66\xcc\x92\x4b\x72\x16\x4b\x74\x9a\xf9\xa6\xf4\x0f\x71\xd3\xea\x5d\x87\x64\xcd\xc8\x17\x14\xbd\x73\x95\xe5\xf6\x79\x97\x36\x36\xef\xf1\xdb\x1c\xf0\x01\x29\x83\xf7\x1a\x2f\x2b\x12\xd4\x5a\x29\x4e\x5a\x38\x9f\x4c\xd2\x48\x3e\xb3\x9d\xa0\xdf\x26\xb7\x36\xc7\xaf\x6e\x41\xdd\x35\xa7\x8e\x45\x29\x2c\x39\x4e\x34\x68\x95\x32\x88\x87\x21\xf8\x63\xc5\x6d\xb9\x7d\xa1\xcd\x10\xa6\x6a\x20\xa6\x70\xb2\x7f\xe8\xce\x55\x68\xa4\x2b\x89\x37\x79\x0c\x7b\xe1\xaa\x42\x0d\x20\x3d\x7a\x88\x5c\x17\x29\xcd\x6b\x8e\x19\x71\x89\xe4\x79\xd5\x42\xcb\xcb\x9b\x53\x65\x6f\x2b\x9f\x53\x9c\x32\x5c\x34\xaa\x59\x8f\xd9\x1e\x7d\xf7\x0f\x9a\x74\xab\xec\x46\x76\x54\xb1\xc9\xa3\xd1\x44\x38\xe7\xc0\x83\x60\x40\xb7\x93\x87\x1e\xcb\xe9\xe5\xf6\x68\x0c\xcc\xcd\x5d\x46\x96\xa8\x7e\x37\xe8\x9e\xab\x28\xb6\xbd\x67\x9e\x8f\xe1\x62\x7b\xdc\x9d\x37\x3b\x82\xf5\x2c\xd8\xc4\x9b\xe9\xba\xcd\xc6\x30\xa3\x2f\xd1\x28\x35\x25\x5a\x54\x2f\xb7\xb1\x23\x93\x77\x9d\x44\x98\xaa\x06\xa0\xe7\xe1\xa4\x97\x79\x39\x81\x7e\xb2\x08\x8a\xf1\xe1\x9b\xb0\xe5\xac\xa8\x54\xc1\x25\xdc\x60\x3d\x83\x57\x36\xa0\x3d\x93\x80\x51\x53\x0c\x9a\xb1\xaa\x3b\xc7\x79\xb3\xba\xe7\x45\x0e\xf5\x7d\x1b\x3f\xc0\x93\xa3\x7d\xbe\x9d\x1b\xd6\xd0\x40\xf2\xf8\xee\xba\x77\xf7\xfa\x88\xc1\x49\xf0\x65\xc7\xac\xe3\x32\x77\xaa\x99\x69\xc2\x66\xea\x6d\x85\xca\xd6\x2c\xfa\xf5\x50\x8e\x70\x32\x71\x6b\xe6\x84\xa2\x28\x56\x41\x3e\x0e\x65\xe4\x2b\x6e\x9e\x6d\x86\x5a\x87\x36\x3c\xbb\x62\xd5\xbb\xb6\xa3\x73\x1d\xdd\xa0\xfa\x6a\xd0\x29\x3a\xf9\x89\x3c\x09\xa9\xe7\x43\x09\x0f\x2c\xee\x2f\x44\x37\x73\x6d\xd4\x33\xe2\xac\x74\x28\xbd\xc8\xc7\x7c\xb9\x96\x43\x55\xfa\x44\x15\xcc\x38\x31\xd8\xc7\xca\x5a\xf9\x3d\x51\x75\x2e\x71\x8c\x60\x66\xec\xa1\x42\x6a\x87\xc2\x98\x08\x28\x1a\x85\xac\x7e\x0b\x40\x44\xff\x6e\x28\x0e\x28\x01\x4b\x93\x83\xd1\x9c\x9d\x38\x7d\x29\xdc\x14\xde\x43\x3d\xa2\x60\x78\x4a\x49\x44\xca\x76\xc2\xfe\x8a\x08\x0d\x09\x96\xd9\xa6\xc2\xa3\xd3\xa7\x07\x72\x80\xed\xce\xe0\x38\x9a\xa8\xe5\x36\x5d\x1d\x9b\x34\x6e\xca\x09\x47\xb0\xff\x52\x65\x94\x3c\xcf\x09\x93\x9a\x4b\x4a\x8f\x98\x5f\x6a\x5e\x72\x72\x3c\x79\x5d\xa0\xbc\x36\x0d\xce\x50\x1f\x67\x3a\xb6\xea\x84\x43\xf1\x29\x42\x79\x52\x45\x3e\xb7\x2b\x3a\x8d\x0d\x97\x6c\x27\x8c\x5b\xd1\xa9\x85\x3c\x91\x8e\x0c\x24\x0c\x3c\x73\x49\x32\x95\x3f\xdb\x50\x39\xfb\xb0\x46\x87\x93\x7c\x9f\xf0\xab\x74\xa1\x6e\xae\x21\x2b\xc6\xf2\x0e\x70\x0a\x77\xc0\x92\xd2\x3d\x2e\xfb\x58\x0e\x0c\x19\xd6\x5f\x30\x41\x29\xab\x8e\x6c\xc1\x2e\x58\x05\x22\x57\xba\x09\x44\x9f\x30\xd3\xd9\x74\x39\x1a\xff\xf5\x63\x3d\xef\x2f\x5c\x4e\xbd\x57\x3a\x9e\x44\x4b\xf3\xa3\xdd\xac\xed\xf0\x2c\x05\xf3\xcc\x2e\x75\x06\x64\xa8\x4a\x1d\x24\xc5\xd2\x8b\x49\x67\x0d\xe8\xa2\xf2\x09\x08\x39\x48\x3c\xa3\x89\x59\x99\x1a\x7d\x37\x27\xe2\x1a\x15\xe8\x20\x16\xc1\x5a\x09\xee\x71\xf4\xf4\x3c\x0a\x60\x8b\x48\x48\x5c\x99\x34\xa3\x86\x14\x79\x4d\x62\x91\xda\xa3\x9c\x01\xc4\x5d\x3d\xeb\xe5\x79\xb5\x82\x3b\xf3\x40\x64\x04\xb4\xc8\x0e\xe6\xff\x34\x2b\x46\xb3\x34\xb0\xb8\x83\xb4\x0b\xfd\x2f\x9a\x53\x59\x5a\xb6\x2f\xd1\x35\x1e\xbc\x88\x30\x83\x70\x49\x72\x18\xdf\xc9\x8c\xe0\x81\x40\x7d\xa8\x12\xa4\x6d\x64\x97\xd7\xaf\x9e\xc6\xd8\x3e\x1c\x60\xee\xb7\x12\xd8\x89\xdf\xbe\xd0\xc8\x05\xaa\x11\xcf\x81\x7d\xd8\xf0\x43\x96\xef\x87\x1a\x26\x11\x2d\xcb\x7c\x0e\x1d\x2e\x68"}, {{0x61,0xfa,0x86,0x77,0xee,0xda,0xde,0xd6,0x9b,0x16,0x5c,0x8d,0x27,0x7c,0x97,0x82,0x49,0x66,0x30,0x28,0x30,0x1d,0xf6,0x16,0x3e,0x39,0xb0,0x6a,0xc2,0xf5,0x62,0x5f,},{0x87,0x33,0x9e,0xb5,0x72,0x38,0xdb,0x2e,0x4e,0x60,0xf3,0xc2,0x8a,0x3f,0xd5,0xfb,0x61,0x1c,0x65,0xfd,0xdc,0x81,0xee,0xd7,0xcf,0x77,0x71,0xdf,0x34,0xd9,0x22,0x67,},{0xc0,0x4e,0xbd,0x11,0xc3,0xeb,0x09,0x39,0x6f,0xe8,0xd6,0x82,0x79,0x51,0x0a,0x9e,0xfe,0xe3,0x91,0xab,0xee,0x40,0x81,0xf0,0xd2,0x75,0x67,0x4a,0x30,0x47,0x94,0x83,0x5a,0xad,0x7f,0x3e,0x34,0x5b,0xcf,0x0a,0xf8,0x02,0x7f,0x97,0x47,0x7e,0x79,0xe6,0x79,0x2b,0x8f,0x29,0x98,0x46,0xae,0x28,0xcb,0x13,0xbd,0x88,0x75,0x37,0x99,0x0d,},"\x02\xc5\x81\xde\xe0\x3f\x2c\x60\x39\x35\xaf\x5e\xce\xec\xfa\x67\x71\x34\xa3\xe0\xae\xa5\x4f\xec\xaf\x42\x71\xfb\x52\x95\x1a\x27\xb7\x68\x77\xcc\xd4\x9a\xb4\x86\xdf\xc2\x27\xcf\x31\xc9\xd9\x57\xcc\x97\x30\x65\x73\xfc\x7f\xe1\xd3\x1b\x6c\x7d\xf3\xd7\x80\xf3\xa0\x5c\xa6\x39\x56\x57\xa9\x42\x43\x42\xc9\xc6\xb7\x03\x12\x7e\x03\x8d\xf0\x79\x21\x54\xe3\x0a\x49\x47\x61\x12\xcb\x92\xd0\xd5\xa2\xd2\x2e\x89\x57\x52\xa8\x6e\xdd\xdd\x91\x2f\xdc\x81\xb1\xe6\x4a\x7b\xb7\x50\xf0\x99\x18\x21\x32\xee\x48\x23\xfd\xe8\x45\x80\x2a\x94\x45\x39\xd4\x12\xb2\xa8\x1a\x15\xb0\x00\x71\xa9\x50\x50\x4c\x5b\x55\xa7\x1b\xdb\x8c\x5a\x58\x26\x39\xe8\x55\xe8\xbe\x24\x1c\xda\x1b\xa6\xb3\xb4\xf6\x45\x54\xd1\x78\x24\x90\x4c\xb3\x0c\xd7\xef\xd9\xac\x04\x9e\x39\x0b\xb7\x9f\x53\x59\x8e\xf1\xe8\xfc\x27\xdd\x7b\xf5\x99\xc9\x02\x8c\x9e\xbf\x92\xfc\x3b\xe1\x1d\xf3\x29\x61\x2a\x22\x8e\x0f\x56\x84\x68\x7b\xf4\x1f\xf2\x03\xe9\x7a\x76\x86\x12\x6a\x39\x36\x6b\xdc\x26\xd5\x0b\xe0\x25\xd5\x18\x7c\x6b\xa0\x66\x6e\x37\x9b\xe4\xa8\x0a\x9e\x62\xef\xfc\xd9\x16\xd7\xf9\x8d\xe6\x51\xe0\x0b\x97\xad\xf5\xd2\xd5\x3d\xaa\x7f\x8d\x69\x5a\x29\x15\x60\x75\x5c\x74\x44\x82\x36\x4c\x4f\x1f\xa4\x7e\xc0\xb1\xda\x16\x1a\xa3\x88\xf9\x59\x79\x89\xa9\x77\x26\xd3\xed\x2c\xec\x82\xf1\xa1\xbb\xc4\xac\x0b\xe0\xa0\x0c\xb4\xa8\xdb\x1f\xb7\xc1\x4b\xa0\x5d\x89\x63\x48\xdc\x05\x59\xd2\xa9\x0b\xea\xc2\x04\x1d\xd7\x7f\x82\xd6\xb1\x2a\xeb\x22\x43\xca\x0f\x41\x9a\x57\xd3\xca\x9c\x7d\x25\xa3\x0f\xf0\xe8\xbb\x0d\x94\x51\x55\xd1\xb3\x6a\xd1\x07\xb5\x5b\xea\xa9\x5b\x7d\x5e\x32\x00\x34\x07\x62\x9f\x15\x15\xf8\xa7\x08\x9e\x24\x88\xd0\xd7\x54\x4c\x2f\x7c\xc7\xc7\xf0\x98\x5d\xa4\x28\x40\xd4\x36\x8f\xf4\xf0\xfa\x4f\xa2\x98\xe3\xb7\x22\x93\x03\xab\xa5\x14\xae\x94\xe7\x02\x65\x35\xa3\xf4\x26\xff\xbb\x4e\x00\x1c\xd5\x0e\xd1\x2f\x21\x4b\x3a\xbe\xf9\x6e\x30\x16\x35\xc9\x87\xb1\x33\xfc\x5e\x61\x84\xe7\xb7\x57\x2b\xc3\xd9\x9a\x45\x23\xcb\xd5\xaf\xe5\x93\xce\xdf\x4c\x9c\xd0\x2f\xf2\xe3\x62\x37\xe4\xee\x12\xef\x1a\x22\xd1\x6d\x7c\xf4\xc0\x72\xdc\xed\x91\xcd\xd2\x6e\xe1\x44\xcc\x2b\xef\x49\x50\x02\x63\x49\xe9\x44\x47\x84\x08\x1f\xe4\xe0\x49\x8b\xc7\x5f\x72\xe6\x81\x8f\x45\x9b\xba\x90\x49\xc5\x61\x31\x6c\x9f\x49\x8e\x7b\x1a\x99\x4b\x0e\x93\x05\x5f\xe7\x3e\x44\x4c\xbd\xf9\x6a\xc3\x5e\x9c\x4e\x92\xe6\xb4\x9e\x3b\xc0\xe9\x9d\xe1\x71\x6d\xf8\xea\xca\xeb\x8d\x2f\xd7\x48\x70\x04\x4c\xb3\x9c\x0e\x36\x7a\x1f\xe3\x2a\x9b\xb2\x97\x44\x16\x36\x4e\x73\x0d\x52\x48\xdf\xb1\xdf\x16\x4a\x8d\x58\xca\xa1\x00\x5f\xdc\x91\xba\xc2\xbc\x01\xcc\x77\xde\xcc\x14\x89\x3e\xf9\x46\xfb\x3c\x81\xbe\x08\x32\xc7\x2f\xba\x37\x20\x62\xf8\x36\x0f\x4d\x8e\x6d\x5b\x74\x1c\xf7\x03\x2d\x8d\x89\xde\x2e\xdf\x4c\x71\x4a\x29\xf7\x5a\xbd\x8f\x5f\xf4\x3e\xcd\xd4\xb7\xa0\x4d\x7d\xb0\x88\x2d\x16\xe7\x44\x73\xa0\xfb\x79\xdb\x44\x4a\x78\xea\x44\xaa\x26\x31\xb8\xc0\xd7\xb0\x30\x0d\x55\xcb\x6a\xc4\x85\xf2\x4c\x0a\xcc\x64\x77\x47\xc4\x3d\xb3\xb2\xa8\x67\x7b\xaf\x65\x6f\xa7\x35\xa5\x75\xf1\x81\x3f\x36\x68\xa2\xac\xa9\x17\x57\x11\xb5\x25\xeb\x49\x6e\x9e\xf9\x71\x1d\x75\xf5\x90\xc7\xd9\xef\x99\xe0\xf5\x9e\x84\x83\xcb\xf9\xf2\x84\xe3\xf5\xa3\x3e\xe7\x78\x1e\x62\xb8\xb0\x55\x51\x77\x7e\xfe\x0f\xbf\xd1\x9e\x54\xb6\xbb\xd1\x42\x94\x4b\xc2\x95\x9a\x82\xeb\xd2\x95\xd2\x3d\x34\x43\xb6\xce\x65\x8c\x2d\x57\x9a\x76\x37\xb5\x49\x52\x04\x91\x90\x8e\x34\x28\x2e\xc2\x71\x69\x72\xe6\xf0\x35\x39\x29\x54\x7e\xf1\x53\x7a\xec\xc9\x6b\x2d\xf6\x16\x14\x85\x99\xb0\x9d\x9b\x81\x39\x4a\x13\xfe\x7d\xb8\x67\x60\xb1\xe2\xa0\x60\xef\xd4\x84\xe8\x18\x99\x39\xeb\xdf\x6f\x21\x64\x0d\x89\xd8\xe7\x36\xde\xe0\x82\xad\x72\xa0\x18\x4a\xde\xdd\x8d\xf2\x14\x74\xc9\xf5\x26\xbc\xfd\xf7\xe8\x56\x58\x19\x4b\xb6\xd9\x42\xe7\xf3\xfe\x96\xc2\x3f"}, {{0x70,0x48,0xc6,0x52,0x1a,0xef,0xaf,0xa4,0xea,0xc6,0xd6,0xc3,0xa7,0x02,0xb9,0x52,0x54,0x80,0xa6,0x64,0x82,0xe4,0x96,0x98,0x96,0x75,0x7f,0x2c,0xd1,0xac,0x7d,0x5b,},{0xed,0x93,0x11,0x3c,0x16,0x43,0xa5,0x3a,0xa0,0x64,0xca,0xa6,0x31,0xce,0xb6,0xe2,0x0f,0x6d,0x6e,0xc2,0xfc,0x6c,0x07,0x11,0xcb,0x8a,0x1f,0xe7,0x31,0x39,0xaf,0x93,},{0x7c,0x45,0x70,0x3e,0xd3,0x94,0x2e,0x44,0x04,0x1c,0x7f,0xa1,0x85,0x8a,0xa5,0xf1,0xdc,0x38,0x1f,0x49,0x3a,0x45,0x2d,0xfb,0x52,0x70,0x80,0x17,0x89,0x8f,0x71,0x0e,0x31,0x11,0x8e,0x33,0x1f,0x00,0xaa,0x64,0xcb,0x73,0x88,0x36,0x68,0x2b,0x7d,0x17,0x7e,0x97,0x95,0x5c,0x00,0x31,0x9a,0xbd,0x79,0xa4,0x9e,0x0f,0xcd,0x16,0xfe,0x00,},"\x53\xf7\x4c\x72\x4d\xb1\x57\x8a\x1a\x29\x6a\x7c\xca\xc9\x04\xa2\x50\x4d\xd9\x00\x53\x89\xb4\xf8\xd4\xea\x4b\x63\x07\x29\x8f\xc6\xdc\xce\x98\xa6\xbc\x07\x28\x0d\x20\x36\x4e\x40\x5a\x46\x7e\x73\x65\x78\x96\x52\x69\xc8\x14\x61\xd6\x1f\xc6\xb7\xe4\xba\xd6\x8d\x2b\x6d\xd0\x00\x58\x50\x10\x5f\x0a\x67\xbb\xc6\xee\x22\x3e\xc1\x75\x4a\xf4\xe3\xb9\xaf\xa5\x06\x2d\x1c\x18\x61\x04\x8f\x18\x5b\x12\x8f\x1a\x5c\x0f\xb2\x5c\x39\x19\xb4\x83\x3e\x29\xe2\x02\xbc\x94\x1a\x90\x5e\x63\xc2\xc0\x5b\x10\x14\x64\x7b\xd7\xed\xe5\xbe\x9f\x99\x66\x15\x18\x7a\x3d\x3b\xb2\xc7\xdc\x4c\x28\xf7\x05\x3d\xef\x9b\x28\xb2\x9e\x23\x31\xf1\x62\x96\xdc\xe8\xf1\xed\xe4\x84\xca\xec\x99\x67\x02\xbd\x99\x02\xe5\x26\x84\xc8\x12\xc8\x74\x40\xf6\x9b\xd1\x41\xc7\xe0\x0c\x69\x47\xd1\xfc\x7c\x3b\xdc\x0b\xc5\x50\x6b\x6e\xa4\x62\xe6\x5f\x9e\x74\x3b\x72\xc0\x07\xdd\xc7\xa3\x77\x49\x37\x77\xd4\xeb\x12\x62\x0c\xa6\xc0\x19\xc8\xbf\xc4\xc2\x9e\xc8\xaf\x38\x2f\xc3\xea\xc8\x41\x02\x1a\x74\xe4\x67\x4b\xa3\xe4\x3e\x5d\x7b\x41\xe3\xfe\xeb\x17\xda\x00\xa7\xce\x45\x5a\x1c\xec\x70\xb0\xbe\x6e\x56\xf8\x5f\xc3\x7f\x64\xcf\x07\x33\xb7\xe3\x12\x41\xde\x64\x1a\x8a\x8e\x5b\x91\x89\x7b\xc1\x58\xfe\x93\xd1\x02\xc0\x1d\x1f\x5e\x16\x6d\x40\x81\x65\xfe\x3f\xcb\x13\xd5\x30\x45\x90\xab\x8e\xf0\xdc\x8d\x5a\x8c\x1d\x8a\x93\xfc\xeb\x85\x4f\xc1\xfa\x36\xd0\xcc\x48\x0c\xf8\x51\x2d\x80\xbe\xe6\x9b\x06\x50\xa9\x57\xda\xed\x28\x3c\xd7\x63\x81\x55\xed\x77\x30\x86\xe8\x6a\x8f\xfb\x19\x8a\xcc\x74\x23\xb5\xd1\xa6\x09\xa1\x75\xa5\x6b\x94\xc9\x6b\x73\x18\x51\xb9\x3a\x94\x97\x71\x01\xe2\x55\xf1\xce\x92\xe2\x32\xa0\x5e\x2e\x33\x87\xfc\xb4\xdc\x13\xa3\x1b\xee\x6e\xe2\x55\x07\x32\x2c\x73\xc9\x88\x30\x80\xa7\x4c\x00\xf8\x03\xa9\x98\xdd\x53\x0a\x79\x12\x6b\xb1\x44\xed\x55\x74\xc4\xb2\x31\x80\xe3\x4e\x09\x92\x83\xb4\xbb\x1d\x28\x82\x2f\xce\x37\x17\x04\x6f\xf3\x2e\xf9\xe2\xcd\xf9\x67\xe3\x18\xea\x72\x6a\x2a\xee\xc5\x78\x06\x64\x3a\xd4\x80\x1d\x3e\x0d\xa5\x2a\x1d\x77\xbf\x04\x3f\x5a\xe9\xf3\xae\xa9\xe4\xbc\x4f\xa7\x95\xd0\x84\x01\x08\x5c\xa9\x4c\xfc\x4c\xe7\x19\xda\xbc\x7b\x23\x90\xd0\x3d\x29\x4a\x65\xb7\xaf\x9b\xc3\x90\x72\x28\x5b\x77\x7b\x2f\x13\x3d\xc1\x1a\x70\xc0\xa9\xf0\x60\xe1\x04\x41\xf4\x02\x16\xac\xb6\x41\x63\x7a\x2e\xad\xf1\xf7\xb8\xd2\x62\xfe\xc1\xb4\xd0\xf0\xf4\xfa\xa9\x3f\x3f\x73\x2c\xac\x38\x2d\x8a\xc4\x2e\x17\x8e\x22\x44\x99\x9d\x76\x4a\x9d\x0e\x98\x17\x14\x68\x6e\xb4\x92\x44\x97\xe5\x6b\x50\x15\x7e\x99\x39\x03\x2c\x9f\x88\xeb\x65\x7c\xfd\xe4\x4a\xd3\x47\x14\xaf\x4a\x51\x32\x4e\x5e\x77\xd0\xde\xea\x99\xc9\xf2\x44\xd2\xe0\x9e\xa4\x25\x82\x0a\x74\x6d\x88\x3a\x0c\xf4\xb7\x05\xc2\x9d\xf8\xc0\x37\x44\x81\x54\xdc\x08\xa4\xd4\x33\x74\x05\xfb\x87\x65\x82\x31\x14\x37\x0b\x37\xed\x86\x08\x6e\xc5\xf8\xbd\x6c\x72\xab\xf1\x3f\x51\x84\x30\x71\x0f\x59\x7b\x06\x10\x8f\x65\xb3\x0a\x48\x34\x96\xe2\xed\x81\xda\xb1\x0f\xee\x94\x7f\xe0\x4b\x54\x85\xf2\xe3\x07\x40\x49\xd2\x22\x84\x26\x66\x51\xad\x10\xdd\x08\x6a\xaa\x5d\x45\x2e\x0d\x1a\x61\x12\x9d\x1e\x77\xc6\x63\xc2\x6d\x08\x89\x62\xb5\x54\x56\x45\xb7\xa1\xa8\x71\x3d\x51\x32\x7a\x7a\x35\x9b\x12\xda\xad\xb8\x5a\x2c\xd4\xb5\x41\x0d\x5c\x20\x26\x7f\xa7\x66\xb8\xc4\x2a\x84\xdc\x42\x66\x45\x88\x87\x9b\x3e\xae\xfd\x4c\xc8\xdc\x69\x3f\x98\xac\x20\x56\x09\xe5\x70\x66\x5b\x01\xea\x46\x55\xe3\x94\x29\xa7\xa7\xe5\x42\xef\xb4\xf7\x89\x0d\xbf\x4e\x34\xc6\xcf\xf0\x7e\x4d\x35\xbd\x3e\xee\xdf\x5b\x46\x28\x0f\x4a\x0d\xa0\xc2\xe7\x3c\x94\xea\x81\xcf\xea\xe7\xf9\xbd\x04\xfe\x2d\x45\x97\x65\x00\xf7\xdc\xac\xb0\xdf\x2a\x5d\xc7\x36\xa8\x23\x67\x1d\xb6\x79\xbe\x66\xcb\x33\xc1\x62\xfd\x2c\x74\xae\x71\xfb\xf4\xd2\xb0\x5a\xf0\x42\xb3\xa9\x77\xf5\xb9\x44\xb9\xfd\xb6\xc3\x44\x24\x42\x1b\xcf\x4f\x62\x23\x76\x84\x28\xfa\x14\x0f\xd4"}, {{0x3e,0x63,0x73,0xb2,0x65,0xb9,0x67,0x89,0x00,0x7a,0xd2,0xa1,0x0c,0x30,0x9a,0x56,0x76,0x38,0xf2,0x55,0x87,0xd7,0x7e,0x28,0xb0,0x82,0x3a,0x4f,0x17,0x9a,0xe4,0xfe,},{0xa3,0x23,0x4e,0x5d,0x13,0xb0,0x34,0x72,0x16,0x50,0x36,0x40,0x4f,0x6d,0xe8,0x0e,0x70,0x28,0x39,0x50,0x0f,0x13,0xd9,0xc9,0x85,0xa0,0x77,0xd4,0x5c,0x69,0xff,0x45,},{0xf5,0x1e,0x0f,0x87,0x8a,0x5a,0x70,0x96,0x47,0xe8,0x5f,0xea,0x83,0x9f,0xd5,0x66,0xe6,0xf3,0x5c,0x8a,0x61,0x85,0xd0,0xc9,0xeb,0x13,0xe0,0xd5,0xb9,0xe6,0xe8,0xaa,0x95,0xc3,0x33,0xa8,0xf5,0x06,0x32,0xa4,0xd6,0x65,0x7b,0x51,0x8c,0xe4,0xcf,0xde,0x40,0xb8,0xf5,0xa0,0x5b,0x2d,0x9f,0x84,0x41,0xfc,0xc9,0xd2,0xd6,0x92,0xd5,0x09,},"\xb9\xd0\x68\xbb\xca\xe7\x72\x2f\x82\x8b\x0f\x8c\x98\xa7\x38\xe3\x6a\x7d\xf4\xc9\x97\xc7\x24\xba\x27\x53\x1a\xf3\x4a\x2f\x10\x6c\x75\x13\xa4\x4a\x46\x1a\x9a\xa4\x30\x9b\xc1\x5c\x4e\x0d\x42\x75\x91\x93\xea\x1c\xde\xa9\x56\xbb\x81\x59\x85\xf5\x78\x67\x14\x5e\x9e\x2c\x75\x85\xfc\x8d\x61\x02\x7e\x47\xd2\xd7\x35\xe2\x44\x8a\xf3\x78\x29\x09\x40\x4e\xde\xaa\xc0\xfd\x73\xf6\x04\x5d\xcd\xb0\x4f\x03\x77\x75\x8f\x02\x20\x4a\xae\x3a\x72\x20\x31\x1c\x0f\x47\x23\x58\x27\x10\xcc\x44\x0c\x36\xc9\x58\x7b\x5c\x9e\xbc\x40\x63\xfe\xa8\xca\x3f\x43\x19\x58\x94\xf7\x9a\x36\x50\x87\x13\x72\x82\x30\x2d\xbf\x2e\x7a\x0d\x41\x1a\xb5\x8b\x70\x26\xcc\xde\x19\x88\x69\xaa\x73\x43\x34\xc0\x52\x38\xe2\x75\xe3\xc3\xab\x21\x70\x83\x49\x57\x69\xe2\xfa\xd3\x74\x05\x14\x52\xd7\xf5\xb1\xdb\x0e\x78\x58\x36\xd4\xbd\x5e\x29\x78\xa3\xe9\x91\xaf\x0f\xf7\x16\xf4\x38\x89\xa0\x7f\x5d\xf2\x99\x60\x36\x21\xc3\x9e\x2c\xde\xe0\x89\x98\x5d\x9e\x6b\xf7\xb2\xfb\xd0\x23\x73\xae\x1b\x5e\x9b\x88\xf5\xb5\x4a\x07\x6e\x67\x6d\x77\x90\xbf\xc8\xf5\x7d\xcc\x59\xef\x52\x85\x0c\xe9\x92\xa7\x3b\xa7\xbc\x99\x1d\xeb\x4d\xde\x5e\xb0\xb2\x16\x70\xb1\xb3\xd4\xb6\x4f\x36\xcc\xa8\xe3\x07\x09\x85\x68\x49\x7d\x89\x16\xf6\xb5\xd0\xe9\xe8\x9f\x99\xf8\x60\x06\xf3\x9b\xd3\xa8\x10\x76\x9c\x8f\x78\x01\x77\x3c\x96\x38\xab\xcf\x5e\x27\x11\xb1\x9d\x11\x67\x59\x3a\xcb\xe8\x5e\x41\x61\x42\x89\x97\xa2\x19\x4d\xc5\xe7\xb7\x64\x0f\x0d\x2c\x1e\xb2\x05\x55\x3b\xe9\x16\x7f\xfb\xc2\x2b\x7c\x2e\x76\x98\xf3\xaf\xa1\x07\x54\xcb\x44\xd4\xb1\xd4\x5b\x83\x73\x03\xb1\x66\x90\x73\x41\x5a\x22\x60\x6b\x50\xf2\x1f\x82\x65\xe1\x39\xf2\x30\x5a\xc0\xe0\x12\x7a\xe0\x56\xce\x8a\xbe\xab\xa2\x0e\x1d\x26\x9a\x2b\x2e\x89\x9c\x49\x54\x72\x68\xa0\x69\x6a\xe4\x50\xdc\x02\x67\xf7\xf6\x3a\x8e\xdf\x07\x4c\x47\xd3\xc2\xdb\x1d\xa3\x63\x93\x73\x73\x04\xe6\xdd\x4f\xac\xcd\xb6\xab\x55\xe5\xf8\x52\x0c\x3d\xff\x5f\x6b\xea\xc3\x0b\xa8\x5b\x86\x08\x23\x51\xe3\xde\xd8\x40\x0a\xa5\x7f\x65\x0c\x0c\x33\x03\x6d\x65\xb3\x9b\x7d\x2f\xb6\x11\x28\x63\xd5\x9b\x72\x55\x82\x42\xe8\xb0\x45\xad\xdd\x35\x7d\xe6\xfd\x37\xa8\xf6\x61\x17\x65\xc9\xb5\xff\x19\xcc\x4d\xb7\xe1\x17\xc6\x5a\x00\x45\x89\x08\xb0\x24\x5d\x04\xf7\x90\x8f\xc7\x3b\x16\x5d\xff\x6e\x4b\xe4\xb4\x20\x32\xd8\xcf\xd7\xd6\xf7\x77\x2c\x1b\xfe\x72\x1d\x4b\xcf\xe2\xfc\x52\x79\x98\xf3\x4f\xb4\x41\x8a\x1f\xae\x1e\x6c\x37\x67\xc4\xd0\x78\x06\x21\xf9\x23\xda\x1f\x0a\x0d\x3d\x21\x9c\x03\x6a\xcf\xd3\x70\x9d\xad\x4c\xf2\x4d\x90\xbc\x69\x1d\x70\x0e\x6a\x9c\x80\xcc\xfd\x10\xbd\xe8\xe7\x91\xc0\xfe\xa8\x28\x80\xc0\x7b\xaa\xaa\x31\x1e\xef\x79\x24\x07\x84\xf6\x28\xa7\xd2\xa0\x91\x84\xe0\x16\xf8\x10\x08\xe7\x74\x29\xa8\x65\x8b\x15\x3e\x44\xe7\x9a\x98\xad\x24\x8f\x7f\xda\x23\xb5\x90\xd6\x46\xd7\xc1\xd8\x41\xf4\x92\x7d\x6e\x8b\xc7\x32\x14\xd1\x0a\x7f\x3c\x29\xc8\xf8\x39\xa8\x90\x8d\x20\xa7\x4e\x82\x7a\xf4\x67\xac\x5a\xbf\x0f\x1d\x0e\xd3\x9c\xdd\xd9\x69\xdd\xe9\xee\xb4\xa4\xb7\x52\x7a\xb3\xe2\x47\x5a\x19\x5e\x24\x47\x4a\x4e\x36\xb0\x90\x52\xe2\xda\xd4\xa5\xeb\x46\x91\xe2\x63\xb8\xc6\x1b\xbd\xe8\x77\x72\x20\x7e\x01\x1c\x4c\x1e\x14\x23\x5f\xb2\x4e\x4d\xa4\x38\x87\x5d\x18\x53\x0f\xef\x90\x26\x19\xdd\x48\x5d\x77\xb5\x45\xab\xb5\x6b\x69\xc7\x55\xaf\xe7\x58\x60\x69\x71\xab\x97\xdd\x3a\xce\x1c\x1a\x34\xa3\x37\x94\xc8\x15\x6d\xa7\x99\xe8\x22\x4d\x88\x5e\x18\x68\xf9\xcb\x46\x6d\x80\x2c\x82\x7c\xc3\xe1\xec\xd0\xae\x6e\x0b\x01\xf8\xf7\x91\xb1\x22\x08\xfc\xc0\xfe\xd3\x85\xb7\x96\xeb\x2f\x29\x08\xb5\x8d\x30\xb3\x73\x3f\x14\x70\xf2\xe2\xef\x12\xad\x43\xfe\xb7\x2d\x08\x16\xde\x3c\x13\xa8\xb5\xa5\x23\xe1\x4c\xdf\x5f\xf3\x72\x0b\xf8\x77\x69\xcd\xe7\x49\x5d\x22\x6b\xf3\x82\x38\xa8\x25\xf7\x5a\x09\xf6\xbb\x9a\xfc\xe5\x16\xa7\xbc\x70\x11\x43\x70\xbb\xc4\x0f\x17\xc7\xbc"}, {{0xf5,0xe8,0x59,0x7e,0xac,0x0e,0xbf,0xa9,0xd3,0x85,0xde,0x85,0xa1,0xfb,0xaa,0x35,0x14,0x63,0x95,0xb1,0x34,0x57,0xb5,0xb1,0x4d,0x36,0x70,0xda,0xca,0x69,0x05,0xe7,},{0xce,0x93,0xe6,0x42,0xc2,0xf1,0x50,0x84,0xbc,0x83,0xba,0xfd,0xaa,0x19,0x67,0x63,0xde,0x2a,0x3c,0x51,0x3b,0x0e,0x44,0xf6,0x8d,0xdb,0xde,0x37,0x85,0x14,0xc4,0x41,},{0x57,0x65,0x43,0xfc,0x21,0xab,0x0a,0x7c,0x5f,0x63,0xb1,0xcf,0xf0,0x1b,0xf8,0x45,0xdf,0x91,0x79,0x2e,0x7a,0x97,0x50,0xc5,0x50,0x8b,0x51,0x66,0x5e,0x7f,0x89,0xf1,0x7c,0x6e,0xc3,0x35,0x5a,0x0a,0xed,0x87,0xdb,0x8c,0x77,0xbd,0xb2,0x71,0xfb,0xed,0xc7,0x14,0xff,0xad,0xb7,0x8b,0x5e,0x0f,0x97,0x81,0x16,0x77,0x1b,0xa7,0xcf,0x0b,},"\x27\x33\x41\xf2\x19\xff\x5c\xf3\x81\xc7\x7b\x2d\xd2\x26\xc5\x8f\x8f\x33\xc4\x52\x70\x48\xcb\x00\x6a\xff\xef\x8c\xee\x15\x1e\x30\x0e\xfe\xf6\x29\xfe\xd2\x1b\x70\x45\x1f\x72\x92\x92\x62\x7d\x1f\x3f\x1b\x52\x57\x35\x9e\xe5\xa6\x71\xcf\x62\xae\x57\x32\x49\x40\xf2\xd0\xb1\x5a\xac\x76\xff\x39\x82\x20\xc0\x80\x24\xe2\x9a\x8c\xf3\x65\x04\xe1\x2a\x4e\x96\x43\x8f\x42\xc3\xda\x0c\x00\x05\x41\xbc\x11\xf0\x91\x38\x1b\x0b\x72\xb5\x8a\x92\x08\x3f\x44\x6e\xca\x19\x91\x99\x68\x78\xde\x35\x08\x1c\xc4\xab\x90\x95\x8c\x96\xcf\x5c\x99\x79\x6c\xba\x79\x51\xee\x18\x6f\x26\x52\x7a\xed\xe6\x9d\xb3\x04\xce\x29\x41\xba\x15\xcc\x00\xba\x2f\x14\x11\xf2\x08\xda\xd4\x5e\x87\xbc\xf6\x38\x79\x2d\xe0\xa6\x86\x24\xb6\x67\x29\x7c\x27\xa3\x43\xdb\x4b\xaf\x34\xa0\x22\x8e\xaf\x0d\x10\x22\x00\x9b\x5d\x06\x8b\x25\x34\xd9\x20\x30\x2e\x71\x31\x0f\xeb\xf0\xdf\x1b\xb0\x2c\x2e\xf0\xad\x1a\xe1\x49\xde\xad\xf8\xc1\x84\x37\x3c\x0f\x7e\xb6\xb2\x56\x95\xbe\x82\xd1\x2c\x71\xb6\xc8\x32\x67\xd9\xa2\x33\x66\x7e\x77\xbc\x20\x59\x83\xf8\xb8\xd8\x77\xd8\x5a\xea\xd3\xf6\x0e\x82\x0f\xfc\xb1\x7a\xdd\xdd\x92\xa7\x71\x2b\xbe\xb3\x4e\xe7\x19\x66\xda\xfd\x99\x07\xd1\x93\xdd\x9d\x72\x5a\x31\xa6\x13\xd2\x9e\x32\xbe\x72\x13\x28\x08\x92\x6d\x94\x37\x47\x7f\xee\x25\xed\xa6\x10\xae\xb1\xdc\xe1\x2e\xa3\x16\xc6\xae\xc6\x68\x9e\x50\x1c\x55\x19\x23\x82\x5a\x34\xb4\x2c\x4f\x06\x75\xb8\x6a\xb2\x6a\xde\xea\x2e\x60\xda\xe6\xc6\xd1\xcd\xd0\xcb\x3c\x34\x7b\x16\x38\x40\x39\xa8\xe3\xfd\x60\x87\x38\x13\x87\xcb\x4b\xc7\x2d\xdb\x5f\x25\xb3\x74\x85\x9b\x02\xe5\xbb\x1b\xa0\x6d\x3c\xc6\x9e\xc4\x4c\xec\x4b\x98\x5c\x84\x76\xe3\x50\x32\xe9\x9a\xbf\x00\x1a\x1d\x44\xdd\xc6\xe2\x88\x9c\x3c\x2c\x3e\xca\xce\xd6\x09\xb2\xb2\x68\x0e\x00\xb1\xef\xa7\xe9\xd2\x6d\x62\xf2\xb3\xab\x36\xf9\x21\x04\x47\x90\xab\xbd\x49\x36\x07\x56\xdc\xff\xcc\xf2\x30\xf6\x6d\xbb\x70\x1a\xa1\x64\xda\xd6\x06\x9a\xa2\xb8\xb3\x30\x9f\x2f\xe4\x4d\x5e\x0b\x25\xbd\x55\x64\x31\xf0\xdf\x4c\x2e\xa9\x7a\xe7\x9e\xd4\xa5\x75\x78\xd6\x6f\xc6\x93\x9c\x57\x62\x8a\x90\xca\xc9\x7a\xdf\xa8\x70\x2a\x4a\x1c\x89\x65\xba\x1a\x90\x26\x25\x67\x28\x66\x64\x00\x30\x03\x53\x3c\xc9\x31\x4c\xaf\x7d\x3b\x98\x2e\x0a\x43\x2f\xf5\xaa\x4e\xd5\x74\x19\x83\xd9\xb5\x43\x23\xac\x7e\x29\x9b\x2b\x49\x56\xc1\xa2\xc1\x91\x55\x7b\x27\xd8\x6b\xe7\x14\xb5\xb6\x8f\xcb\x1d\x41\xf7\x8c\xa5\xdd\xb6\xb5\x3b\x3d\xfc\x8e\x7d\x6b\x3c\x3d\xb0\x59\xaf\x9f\x2d\xd7\x65\xef\x04\xb6\xd1\x6e\x67\x37\xc7\x27\xaa\x11\xf3\xdf\x37\x74\xa3\xfc\x96\x18\x2e\x28\x2a\xcc\x3d\x23\x3e\xea\xbf\x8c\x72\xd3\xf2\x46\xae\x18\x45\x05\x28\x8f\xef\x39\xb3\x67\x66\xb1\x0d\xd1\xbf\xbf\xbf\xa7\x0f\x97\xb3\xc9\x01\x72\x6d\x1e\x0d\x0a\x83\x7d\x11\xf0\x12\x3a\x34\xab\xad\x1a\x79\xaa\xbe\x80\xb1\x25\xb1\x28\xee\x16\x0b\x51\x18\x48\xf7\xf0\x4c\x49\xc8\xd5\xc2\xf2\x04\x1d\xa7\xd9\x59\x9c\x29\xb1\xda\xc8\xc6\x80\x77\xef\xac\x3e\xca\x58\xbb\xc1\x63\x7a\xad\xce\x21\xc7\x74\xfe\xa4\x2d\x2b\xcf\x4a\x0b\x98\x92\x30\x7e\x36\xfa\x25\x0a\xce\xe7\x95\xad\x2b\xfe\xcf\xbf\x60\x31\x9b\x81\x66\x3e\x2a\x26\x57\x19\x46\xf7\x5a\x8d\x96\x9a\xf1\x6b\x3b\x57\xc3\xec\x3e\x66\x15\x8a\xaf\x42\xcc\xf5\xe5\x8b\x93\x7a\xae\xf6\x13\x31\x86\x06\x60\x33\x17\xe5\xaa\x31\x8b\xe7\x0f\x8d\xa3\xc0\xc1\x6b\xe6\xc2\x9e\x3e\xc9\xfe\xf4\xe4\x6e\x8c\xa2\x41\xd9\x41\xd5\x80\x49\xa0\x63\xd9\x0a\xfc\x95\x3c\xa3\x2e\x8a\x50\xa6\x47\x36\x32\x58\x8a\xc4\x1e\xae\x97\xf2\x0c\xe9\xb7\x41\xed\x41\xc9\xa4\xaa\x65\x51\xfd\x82\x3c\xe0\xc8\x11\xa5\xbb\x5a\x17\x1c\x1e\xa4\x23\x8a\x02\x46\x81\x1e\x46\x9c\xf4\x98\xb7\x96\x21\xc3\x23\xeb\xa7\x98\x53\x44\xfe\x11\xe6\x74\x99\xed\xf4\x96\x74\x91\xaa\x74\x9f\x8f\x3f\xe3\x99\x61\xd7\x68\x92\xc9\x3a\xac\x3b\x19\xfa\x4b\x4f\xc1\x74\xd7\xd4\xd4\xd8\xbd\x6e\xe4\x75\x47\x50\x08"}, {{0xcd,0xad,0xc5,0xb8,0x9c,0xb2,0xb6,0x30,0x8a,0x00,0x6f,0x2f,0x4e,0x95,0x5a,0x91,0xaa,0xf3,0xba,0x70,0x16,0x5f,0x2d,0x44,0x4e,0xf1,0xff,0xeb,0xbd,0xaa,0xa2,0x21,},{0x05,0x41,0x41,0x5f,0xf5,0x46,0x7f,0x28,0xce,0xac,0x83,0x9b,0x13,0xa1,0x76,0x6e,0x72,0xc9,0x9e,0x65,0x45,0x20,0x7d,0x9d,0x5d,0x96,0x97,0x41,0x1e,0xb6,0xbc,0xa7,},{0xff,0xed,0xe7,0x01,0xeb,0x18,0x29,0xce,0x23,0x61,0xcd,0xa2,0xc8,0xbb,0x63,0x33,0x85,0x39,0xd8,0xad,0x2f,0x66,0x77,0x58,0x55,0x31,0xe7,0xbf,0x1d,0x39,0x22,0x38,0x26,0x79,0xa1,0xae,0x84,0xff,0xeb,0x75,0x3f,0xc9,0x75,0x4e,0x50,0xc0,0x18,0x52,0xf9,0x55,0xe3,0xfd,0x60,0x9f,0xf6,0x4b,0xf0,0x5b,0xbe,0x70,0x75,0xcd,0xbe,0x00,},"\x91\x17\x27\x03\x6d\xb3\x09\xd6\xe2\xe3\x36\x9e\x4f\x17\xd9\x8d\x99\xec\x07\x0c\x33\x28\x3b\xb1\x24\x4e\xfd\x62\xe7\x6b\xd7\x0a\x69\xb9\x72\x3b\xd2\xb5\x20\x47\x2b\x98\xaa\x06\x59\x24\x36\x6d\xe7\x80\x90\x0b\xcd\x8b\x77\xb5\x0f\x87\xc3\xc3\x61\x87\x02\x4b\xbc\x59\xcc\xf4\x48\x2c\x7b\x4a\xad\xb5\x6e\x2e\x5e\xcc\x00\x03\xd9\x89\xd6\xaf\xc6\x3e\xc1\x02\x42\xe5\x74\x82\xfe\x39\x21\x52\x61\xd5\xfc\x95\xa0\x18\x5f\x95\xe9\x54\x0c\x55\xf7\x4d\x69\x60\x48\xbc\xa7\xab\x11\x26\x81\xa5\x55\x8e\xa9\x3c\x3b\x1f\x1c\xd3\x64\x65\x9e\x94\x33\xce\xee\xbe\x05\x4e\xe7\x13\xc4\x77\x60\xd7\xad\x13\x2a\x7f\x3f\x8f\xe3\xd5\x04\x1b\x81\x1a\x26\xb6\x5e\xfb\x1f\x34\x0e\x18\x1a\x4e\xc7\x20\xea\x13\x6b\x3a\xf3\xd9\xe5\x46\x1d\xd2\x43\x70\x33\x6f\x10\xe6\x35\x4c\x8c\x17\xac\xf9\x99\x85\x44\xce\xc0\x87\x3e\xfa\x68\x7c\xb1\x32\xae\xcf\x70\xae\xbb\xc5\x67\xba\x03\xc5\x36\x49\x9e\xf9\x6c\xc8\x41\x2e\x7a\xaa\xd5\xbf\x96\x42\x2b\xe4\x7c\xb9\x41\x36\x45\xdf\x2c\x17\x03\x19\x23\x47\xdc\xbb\x12\x31\x27\x45\x59\x71\xae\x15\x7e\x9f\xa2\xdb\xff\x88\x74\x5a\x96\xc6\x58\xb8\x65\xe4\x1f\x55\xae\xbf\x98\x39\x50\x05\xdd\xcb\xd5\x98\x3e\x6a\xe0\x2c\x4f\xbb\x5e\x17\x91\x67\x96\x32\x5f\x76\xed\xf5\xb6\x4a\xfa\x4e\xc5\xa7\x41\x8a\xfe\xd2\x3a\x97\xef\xad\xe6\x8b\x6a\x5b\x31\x45\xf0\x8a\x5d\x3d\xb9\xc2\x98\xa5\x12\xfa\xbd\xac\x68\x56\x2b\x3f\x55\x37\x7f\xf4\x4b\x00\xc1\xc2\xf3\xef\xd1\x81\x32\xda\x71\xf9\x71\xa9\x53\xa9\x31\x8c\x57\x52\x33\x61\xa1\x60\xf9\xb7\xe3\xb5\x1c\x52\x4e\x95\xdd\x5e\xf4\x56\x8e\xf1\x8a\x80\x07\x75\xe9\xd2\x6e\x07\x13\x19\x42\xd2\xbe\x4e\xf2\x2c\x0c\xbc\x13\xdf\x01\xc6\x8b\x1b\xcd\x3b\xce\x9b\xd5\x1c\x4c\xed\x65\x2a\xdc\x40\x07\xbe\x43\xb3\x7c\x67\xa5\xc5\x5e\xd4\x02\x9e\x8a\xd1\x5d\xef\x83\x05\xc9\x68\x62\x1a\xed\x4c\xd4\xbf\xe0\x79\xa6\xf4\x88\x84\xd8\x56\x80\x39\x2c\xa9\x2b\xa6\xe1\x2f\xea\x6f\x4a\x05\x6f\x79\xd6\x7b\x19\xb0\x5f\x90\xd6\x84\xbe\x7d\x45\x72\x5f\x79\x67\xc6\xa4\x67\xaf\x43\xb8\x6a\x6b\x1b\x9d\x9e\xed\x3a\x42\x48\x97\x1c\x76\xa7\xac\x29\xc2\x92\xdf\xba\x4d\x75\xc5\xf7\xba\x70\x9a\x39\x05\x8e\x96\xad\xf6\xdb\xd7\x60\xd3\xce\xf4\x02\x4b\xf3\xed\xc4\x41\xef\xbf\x11\x47\xa2\xc1\x08\xbd\x6f\x9e\xb4\x39\xc1\xc5\xc4\xd3\xa6\xea\x4e\xc3\xd9\x2c\xef\x38\x13\x61\x88\xbe\xc9\xe0\xb6\xc0\x51\x8d\x8b\x79\xba\x59\xc5\xdc\xba\x39\x3a\xed\xfd\xff\xb0\xb7\x0d\x77\x9c\x2b\x97\x65\xce\x44\x52\xe7\xe3\xb0\x8c\x44\x02\xb1\xa6\x08\x32\x08\x40\xfb\xe9\x6d\x1e\xb8\x65\x6e\xb1\xc2\x0d\x95\x51\xdd\xf5\x33\xb9\xf1\x5e\x4e\xb5\x78\x37\x56\xc5\x3d\xdd\x3b\x14\xd8\x07\xf8\x38\xac\x96\x80\xf8\x9f\x1a\xdf\xb7\x8d\x68\xcc\xb0\x67\x31\xa9\x0b\xea\xc5\xf0\xd7\x09\xd5\xb8\x8c\x75\x43\x7a\x66\x3c\xb9\x62\xd3\x7f\x96\xb8\xe8\x92\x84\x77\xb5\x61\x12\x28\x01\x5d\x33\x7f\x04\x9e\x8b\x62\xe4\xdf\xf8\xd0\xbb\x6c\xda\x24\xa5\xdf\x90\x83\xe3\x48\xbe\xf1\x25\x85\xf5\xf4\xc4\xd3\xbb\x3c\x7e\x78\xd5\x50\x19\x4a\x45\x25\x1a\x08\x79\xa1\x62\x4b\xf9\xdd\x35\xeb\x65\x5c\x39\x39\xfe\xa8\x90\x9f\x6d\xf3\x95\xbe\xbd\x02\xb6\x8a\x17\xa8\x97\xc9\xaa\xdd\xd6\xe2\xe2\x04\x61\xe3\x03\xf5\x7c\xde\xb0\x0a\xe0\xf2\x3e\x60\xa9\x4c\x19\xc7\x71\xd8\xaa\x60\x53\x3b\x93\xce\xdc\x1b\x76\xd2\x29\x0a\x01\xbf\x43\xb2\x72\x5f\x12\x5b\xef\xa5\x75\x15\x4e\x98\x6c\x9c\x62\x05\xa1\x59\x6c\xba\xa2\xd1\x34\x70\xc2\x34\x22\xf2\xdf\x7b\xec\xe4\xe6\xeb\xd7\x52\xe9\x38\x9a\xe6\x08\x57\xb5\x29\x69\xd2\xdd\xef\xa9\xc0\x34\xf1\xbf\x35\xae\x33\x16\x30\x4e\x94\x9c\x89\x90\x82\x0e\x26\xe6\xcf\xfa\xe4\xb3\x88\xd1\x50\x5f\x92\x37\x06\x29\x7f\x8d\xb5\x56\x53\x79\x19\xeb\xbe\x30\x86\x02\x3f\x12\xf4\xde\xd3\xb1\x1a\xcf\x2a\x6d\x97\x3d\xdd\x8e\xb2\x7b\x07\xc5\x80\xbf\x44\x8c\xaa\x5a\x2e\xa1\x16\xc5\xea\xf3\x6f\x7a\x6b\x17\xa8\x5b\x39\x55\xdc\x8a\x44\xa6\x20\xd8"}, {{0x2d,0xdd,0x79,0xe7,0x60,0x64,0xc2,0xe6,0xb3,0x22,0xaf,0xb0,0xc5,0xc6,0x85,0xcd,0xbe,0xc6,0x28,0x21,0xcd,0xfc,0x0c,0xb1,0x4d,0xb7,0xd0,0x1b,0xa3,0xbf,0x21,0xa5,},{0xf5,0x5b,0x4a,0xb6,0x4a,0x25,0x82,0x21,0x2b,0x96,0xcc,0xac,0x06,0x40,0xe2,0x71,0x94,0x4a,0x34,0xa2,0x86,0xd0,0x35,0x83,0x30,0x45,0x81,0x0e,0x34,0x18,0x24,0xbb,},{0xa4,0xc3,0x96,0xe1,0x9d,0xd4,0x2e,0x03,0x91,0x84,0xcd,0x25,0x11,0x88,0xff,0xa2,0x45,0xf0,0x36,0x7c,0x69,0xc0,0x2d,0x12,0x47,0x4e,0x5c,0xa9,0xe5,0xc7,0x68,0xa7,0xee,0x3a,0x3d,0x47,0xeb,0x22,0xd1,0xac,0x9e,0x04,0xb7,0x04,0xa7,0x4f,0x41,0x69,0x47,0xf3,0xf4,0x9a,0x32,0x42,0x59,0x4e,0x7b,0x63,0x90,0xe8,0x2b,0x60,0xd5,0x05,},"\xa5\x66\x74\xa1\xe1\xf0\x97\x95\x25\x1a\xbe\x54\xab\x43\xc2\x98\x20\x8f\xef\xc9\xbb\x91\x76\xfd\xb2\x3e\x1e\x9f\x60\xf0\x32\x64\x79\x15\x56\x7e\xbd\xcc\x2b\x86\x9e\xdb\x70\x55\xf4\xab\xa6\x7e\xcf\xe7\xfa\x19\xed\xa4\x5c\x06\x04\x7c\x7a\x51\x84\x8b\xe9\x97\x32\x51\xf8\x5f\xf7\x6f\x1c\x59\xe3\x65\x43\x82\x85\x8c\x9b\xe1\x23\xdb\x8a\x94\x90\xc6\xc9\xb3\x09\xb8\x2d\x1e\x2c\xa6\xf4\xa0\x7d\x00\x12\x02\x83\xc6\xc2\x95\x64\x49\x95\xa9\x66\x28\x61\x2b\x8d\x67\x91\x57\x35\x18\xe2\x55\x6a\x68\x8a\x09\xf1\x49\xbc\x84\x6a\x68\xbd\x0e\xf7\x92\x79\x03\x57\x10\x03\x1e\xf0\xa8\xfe\xd1\xdd\x0b\xf0\x26\x12\x5d\xc6\x64\x8f\x86\xf6\x43\x09\x94\x2e\x18\xf2\x3b\x12\xd1\xdc\x68\xc6\xf2\x77\x0c\xa8\xb5\x48\x5b\x36\x9b\x0c\x92\x00\x7a\x94\x61\xc1\x39\xfc\xbb\x41\x17\x5f\x31\x6d\x44\x67\x06\x0a\xb4\x3d\x12\x22\xf5\x80\x24\x04\xbf\x63\xc2\xdf\x7e\x00\x4b\xdc\x40\x0c\xa8\x0f\xe0\xd2\xcb\x68\xa2\x10\xfb\xc3\xfc\x0b\x90\x32\x09\xd5\x47\x6e\x7a\x56\xba\xef\xb8\xfa\xd7\xf3\x28\xb7\x2f\x32\x71\x13\xe1\x39\x41\x4b\xa6\xf3\x4e\x99\xc2\xec\xcd\xe0\x44\xe7\xa3\xac\x70\xc5\x80\xcd\x26\xc7\x45\x01\x92\xca\x4c\x82\x3c\x7a\xc5\xea\xe8\x76\xc0\xd1\xc8\xc7\x68\xc1\xcb\x0b\x7e\xa4\x1f\xc9\xb7\xd2\x94\x37\xbb\xad\xab\x18\xe0\xf5\xed\x1d\xef\xe0\xcf\x6c\x0e\xba\xa6\xb6\xd7\x77\xf4\xda\xd9\xab\xdd\xbf\xc0\xfd\x6a\xb5\xee\xea\x80\x3c\xfa\x01\xc0\xbd\x46\xf6\x5f\xef\xa4\x69\x01\xab\xbe\x0d\x89\x10\x4e\x3b\xc4\xae\xe1\xf0\x59\x9c\x69\xb6\x7b\xa5\x45\xab\x9b\x54\xf5\xde\xe3\x40\xac\x69\xd8\x82\x99\xe8\x68\x22\xac\xdd\xdd\xce\x60\x11\x22\x01\x2f\x99\x29\x97\x74\xaa\xf1\x7c\x96\x4e\xde\xcb\x95\xe1\x27\x7d\x46\x2d\xe6\x4e\x91\x15\xa6\x1a\xd9\x8a\xa3\xd2\x2e\x3b\xa6\xf8\xf1\xcd\x69\xb6\xb5\x2b\x83\x38\x28\x23\xf3\x0e\x96\x6b\xda\xd1\xff\x5f\xc1\x98\xae\x32\xe9\xb6\x80\x55\xd4\x39\x2b\xc7\xc3\xdf\x10\x15\xf1\x28\xae\xe1\xe4\xfa\x3d\x49\x99\xe3\x29\xf2\x2f\x0f\xf6\xaa\x77\x8b\xae\x02\x94\xa1\xdf\x74\x36\xcb\x16\xa2\xbf\xcd\x74\xb4\x63\xab\xe7\xcb\x4b\xac\x53\x62\xc8\x9c\x9d\x1a\x37\x8a\x2c\xb8\x85\xcc\x3b\x26\xab\x4b\xe8\x81\xef\x1a\xfc\x14\x43\x0e\x10\xd2\x65\x39\xca\x35\x8c\x36\x76\x28\x6a\xd8\x1c\xe1\xc9\xe7\x85\x92\xaf\x66\xf1\x82\xbb\x1f\x7f\x86\x2f\xe7\x55\xbf\xfb\x5b\xe5\xc5\xf2\xb7\x31\xc1\x32\xe2\x38\x8a\x76\xa1\xa7\xb1\xcd\xdf\x05\xae\xd2\xac\x9e\xc4\x08\x47\x52\x71\x94\x2c\xca\xdd\x32\xe4\x9d\x87\x91\xed\xf8\xb8\xde\x11\x75\x51\xce\x26\x4a\x60\xb8\x41\x05\xea\xe8\x7e\x66\xf6\xa4\x01\xd1\x32\x2b\xb2\x1a\x98\xe8\xac\xd2\x77\x49\x32\x54\xe5\x04\x00\x4f\x72\xc7\x6e\x79\x03\xd2\xfa\x38\xfa\xb7\x17\xe9\x4c\xe6\x27\x94\x7c\x4e\xa3\x26\xbd\x25\x75\xc3\x73\x10\xf3\xb4\xd8\x43\xb9\x0f\xa7\x7d\x32\xd9\x95\x21\x94\x15\x0b\x62\xf8\x50\x18\x7a\x4f\xdf\x38\x46\x6d\xfa\x06\x56\xc0\xa2\xe0\xb3\xf0\x74\x92\xac\x8e\x37\xe5\xd0\xdf\x95\xcc\x89\xdf\x30\x85\xa2\x69\x29\x1d\xc2\x51\x22\x10\xd3\xfe\x44\x24\x8d\x7a\xb9\x96\xbe\x09\x9a\xf6\x4c\x22\x75\x66\x66\xf8\xde\xa5\x6c\x00\xb9\x06\x77\xd1\x18\x25\x00\xdd\x27\x4f\xd0\x76\x92\x53\x82\x6d\x67\x7a\xb1\x6a\x55\x7b\x08\xb3\xc5\x22\x65\x49\x8d\x85\xc4\xcb\x2b\x60\x0e\xe0\x48\x1b\x7c\x1c\x47\x6a\x9d\xaa\x8b\x88\xc7\x1f\xc2\x1b\x6f\x89\xbf\xdf\xec\xe5\x8d\xa9\xe8\xd5\x65\x65\x2e\x43\x95\xbd\xf4\xc8\x11\xb4\xf4\xf2\x2d\x2b\x96\x13\x26\x1f\x88\xc6\x04\xc2\x97\x4d\x3e\x97\x7d\x14\x0d\x04\x6e\x1b\x66\x25\xb7\x07\x16\x40\xd3\x52\xcb\x7e\x7e\x65\xd4\x6c\x61\x34\x47\xbe\x8d\xc5\xa2\x00\xaa\x9a\xca\xb4\x6a\xfc\xcf\xeb\xb6\xb1\xc3\x19\x73\x24\x6c\x34\xfa\xaf\x8d\x26\xea\x5e\x83\xbe\x15\x71\x8f\x8f\xdb\x0c\xfc\x44\x4e\x2e\xb6\x0f\x36\x59\xb0\x20\x16\x1c\x22\x8e\x6b\x92\x40\xb7\xac\x39\x4c\xab\x81\x2d\xe1\x05\x15\x76\x6f\x22\x47\x3e\xcc\xa5\x35\x59\x4c\xe5\x28\xa5\x7c\xf5\xda\xb2\xeb\x32\xab\x84"}, {{0x3a,0xbb,0xdb,0x0b,0xa1,0x1a,0xa1,0x06,0x3b,0xd2,0x6b,0x02,0xc1,0x16,0x03,0x78,0x62,0x28,0x5b,0xab,0xd2,0x15,0xd2,0x40,0xbc,0x9c,0x09,0x26,0xf4,0xec,0xea,0x81,},{0xb8,0xfc,0x59,0x43,0x8f,0x8c,0xe9,0xe3,0x78,0x5a,0x47,0x3b,0x22,0xc8,0x89,0x2c,0x51,0xea,0xc2,0x56,0x8c,0x68,0x1d,0xcc,0x77,0xb6,0xf0,0xe0,0x79,0x9c,0x4e,0x33,},{0x98,0x1f,0x20,0x05,0x5a,0x45,0x75,0x25,0xae,0xe5,0x61,0x62,0x64,0xe6,0xaf,0x42,0xe8,0xb3,0x87,0xcb,0x08,0xf8,0xb4,0xa7,0x3f,0x9b,0xe0,0xb3,0x66,0xf1,0x03,0x5b,0xb3,0x0a,0x1c,0x87,0x48,0x94,0xcb,0xec,0xe0,0xa8,0x46,0xd8,0x49,0xb7,0xec,0xc5,0x56,0x58,0x5d,0x0d,0x3d,0x39,0x56,0x45,0x80,0x7f,0xf2,0xa3,0xca,0x5a,0x59,0x0c,},"\xdc\xcd\x55\xf9\x22\xcd\x27\x4f\x69\x75\x00\x0a\xdc\x8d\x98\x63\x0c\x6d\x75\x2c\x12\x02\xa9\xdd\x12\x10\x48\xb9\x39\x45\xaf\x2b\x11\x10\x96\x77\x88\xf9\x9e\xc0\x28\xe3\xd3\xb4\xcf\x82\xfb\x07\x17\x3e\xa4\x40\x1e\x3b\xb4\xb0\x7b\x7b\x0b\x24\xb0\x59\xa7\x66\x33\x95\x32\xd9\xdf\x3e\x31\xb7\x2c\x95\x8c\x11\x9d\x8d\xfa\x15\xa5\x07\xaf\x6c\x5f\x7e\x78\xfe\x27\x0f\xa8\x1b\x9d\xf0\xf2\xe4\xaf\x24\xbd\x99\xfb\xeb\x14\xe0\x03\x30\x84\xd7\xfb\xf8\x4d\xde\xdf\xd5\xce\x56\x75\x1d\x15\x90\x84\x75\xdf\x8a\xf0\x13\xd0\x91\x17\x3c\x13\x86\xb9\x13\x94\x26\xcc\x60\x81\xea\x16\x5b\x8c\xe4\x81\x94\xb8\xe1\x8a\x9b\x91\xa4\x63\x13\x44\xfe\x29\xc8\xe7\x28\x18\xb7\x1f\xa1\x5c\x92\x92\xd1\x3f\xdf\x5f\x9d\x18\xe2\x9b\xd0\x29\x1b\x81\x38\xde\x73\x8f\xd3\xa3\x6c\x35\x23\x90\x22\x36\x8b\x45\x6f\x1f\xac\xba\x90\xa0\xd8\x0d\x6e\x31\x1c\x5f\x6c\x6f\x04\x67\x7e\x92\x37\x3a\x5f\xc4\x73\x88\x94\xdb\xed\x20\x6c\x30\xda\x34\x1b\x3b\x19\x6c\x94\x78\x58\xa6\xd2\xad\xc6\x8a\xac\x3f\x20\xcf\xdb\xe0\x49\x79\x61\xda\xe3\x34\x70\x26\x6d\x17\xec\x71\x9a\x59\xf0\x58\x6f\x82\xf9\x9f\x1c\x90\xed\x70\x05\xa2\x07\x21\x9a\x55\xed\xc7\x60\xf4\xeb\x8f\x24\x02\x64\x7f\x6f\x77\x97\x1f\xf7\xb6\x34\x35\x7b\x6b\x29\xbb\xd7\xea\x05\xe2\xe2\x58\x54\xe9\x9c\x62\x0f\x4b\x8b\x64\x73\x90\x22\xff\x0b\x33\x8a\xfe\xf3\x5f\xb6\xf4\x1a\x53\x62\x9a\x51\x8e\xb9\x3d\x66\x02\x0f\xb3\x53\xae\xf8\xdd\x07\x1e\x09\xc9\x16\xd4\x70\x4a\xcd\xf7\x76\xb3\x8c\xa9\xc5\x9f\x21\x1f\xf8\x8c\x43\x0a\x57\xe8\xf1\x71\x39\x23\xb3\xf3\x0c\xa8\x69\x70\xa1\x4a\x52\xdb\x4b\xcb\xe6\x0d\xf4\xbc\x3c\xfd\xf2\x54\xbf\x10\xf8\xaf\xae\x87\xbd\x61\xb3\x58\xf4\x3c\xc2\x96\xc0\x41\x29\x64\xc4\xe0\x0f\x71\x21\x33\x97\x46\x85\x17\xcb\x01\x37\x9c\xb7\x29\xc7\xb9\xe3\x5b\xd5\x0b\xdd\x98\xc3\xd3\xb7\x62\x97\xa1\x38\xb5\x7c\xeb\x6c\x77\x74\x2d\xf0\x88\x1d\x07\x66\x8c\x08\xa6\x30\xa4\x4e\x6e\xd7\xeb\x20\x6d\x6a\x56\x44\x07\x10\x43\x8a\x51\x11\x42\x4b\x61\xaa\xee\xce\x40\xe9\x00\xf5\xe3\xc4\x57\xe9\xd6\xe3\x1a\x79\xec\x5b\x4b\x42\xb6\x8e\x66\xe1\x99\x30\x92\x87\xca\xd6\x53\x36\xfc\x7f\xe4\x3f\x43\xcd\x8c\x77\x3d\x3c\x65\x80\xd7\x21\x7e\x2c\xab\xec\xd3\xea\xbc\x48\x5c\x4a\xcf\x47\x71\x8c\x39\xb0\x2c\x78\x58\xff\x34\x7c\xec\x75\x35\xed\xdc\xd4\xfc\x81\x5d\xf8\x14\x56\x9a\x88\xae\x70\xf2\x73\x3a\x65\x39\xf2\x08\xc7\x9c\xf4\xe7\xc4\xf9\xea\x24\x1a\x92\xe9\x51\x51\x71\x36\x14\x18\xa4\xc2\xe5\x3c\x07\x6a\xaa\xbc\x47\xe4\xc9\x71\xbd\x04\xb1\x00\xc2\x62\x82\x30\x88\x57\xe0\x6e\x7e\x5f\xbc\x43\x42\x56\x4f\xb3\xb1\xea\x4a\x17\xa9\x25\xe9\x1e\xe6\x91\x22\x32\x1d\x39\x2b\x24\x69\x65\xb8\x6b\x54\xfd\x5c\x83\xfa\x5c\x47\x41\x63\xf9\x8a\x9f\x44\x7d\x88\xcb\x59\xfe\x2c\xdf\x9f\x54\x12\xfc\xbe\xb3\xef\xfa\xc8\x97\x67\x91\xc6\xa4\x7b\x66\x9a\x2f\xc5\x5a\xbe\x8e\x09\xe7\x41\x57\xef\xcd\x1c\xa7\x8f\xc1\x0f\xa6\x87\x01\x0c\x68\x26\xc6\xe8\x96\xef\x5c\xd7\x1d\x0f\xe4\xd1\xbd\x07\xc1\x0d\xac\x3b\x03\x48\x5e\xdd\x25\x69\xa7\xee\xcf\xbc\x4e\x5d\x2e\xe2\x37\x98\x59\xe2\x65\x26\x7b\xed\xaa\xd6\x9d\x93\xb7\xc1\xbd\x18\xf2\x7e\xa4\x24\x83\xc7\xe4\x10\x0e\xe0\x5b\x28\x30\x39\xbf\xb9\x89\x1d\x37\xc4\x67\xed\x83\xb8\x8c\x79\x4e\xab\x6b\xab\x9d\xc6\x77\x89\x26\x50\xe2\xd8\x96\xfb\xfe\xc1\xb1\xcd\xb7\x21\xbe\x30\xb0\xb8\xe5\x35\x87\x09\xe1\x65\xcb\xe3\xa1\x82\xc9\x3b\xc0\xa0\xce\xa2\xf8\xcf\x3a\x62\x57\xad\xf7\x64\x53\x40\x41\x20\x22\x41\xa5\x27\x9b\x66\x8e\x40\x12\x5f\xc0\x94\x58\x5a\x3c\x58\x8a\xba\x82\xb6\x7c\xd9\x1d\x48\x3e\x54\x30\x04\x28\x42\x68\x63\xa4\x23\x64\x04\x9d\x7c\x45\xa1\x69\x38\x5a\xa8\x9b\xf3\x77\xf0\xd3\x2b\x07\x80\x9b\x58\x71\x39\x5e\xc0\x53\xa2\x57\xd9\x3e\x48\xbb\xf4\x07\xeb\x60\x91\x40\x1e\x25\x65\x46\xe3\x1f\x9f\xcd\x24\xd2\xc5\xb3\x33\xcf\x65\x78\x50\x02\xf0\x8d\x54\x8d\xb2\x6a\xd1\xf3"}, {{0x8a,0x44,0xd6,0xaf,0xc6,0xc8,0xee,0xe1,0xbc,0x7d,0x5f,0x69,0xe4,0x95,0xb0,0xb1,0x8c,0xa7,0xae,0xe0,0x07,0xde,0xa7,0xcf,0x0d,0x17,0x14,0xd7,0x85,0xa9,0xf4,0xed,},{0xd4,0xf3,0x66,0xb3,0x37,0x7f,0xa3,0x9b,0x36,0xf9,0xae,0x14,0xda,0x40,0x4e,0x22,0x40,0x49,0x0d,0xbd,0x8d,0x79,0x6b,0x1a,0xb8,0x72,0xdf,0xcb,0x83,0xa5,0x95,0x40,},{0xe0,0x72,0x7e,0xb7,0x2e,0x84,0xd2,0xb8,0x2c,0xdb,0xd0,0xa6,0xbd,0x2f,0x49,0x49,0x63,0x16,0xaa,0xe8,0x35,0x1e,0x49,0x02,0xac,0xd5,0xe3,0xcc,0x57,0x34,0x6e,0x7e,0xba,0xfd,0xd9,0x2a,0x90,0xde,0xd7,0x6f,0xd0,0xc6,0x69,0x0d,0x68,0xbb,0x2f,0xed,0xd6,0x13,0xe4,0x4f,0xa2,0x22,0xbe,0x01,0x26,0xda,0x52,0x0a,0xcc,0x2c,0x41,0x05,},"\xde\x80\x32\x69\x66\x53\x6c\xe9\x49\x96\xaf\x2d\xe7\xa0\x76\x05\xcc\x4f\xcb\x9e\x75\xee\x0a\x67\xa1\xe2\x09\x32\x11\x1d\xe9\xb3\x56\xd5\xbe\xea\xe8\x6c\xc5\xf5\x64\xc1\x0d\x66\xe3\xde\x95\xa5\xb9\x9e\x84\x49\x28\xea\x8e\x77\x58\x6c\xf3\xc1\x0a\xd3\x63\x3d\xde\xeb\x1d\x9d\xcf\x3f\x94\xb7\x0b\xf1\xef\x63\xd2\x38\xdf\x20\x4d\x70\x5c\x0b\x17\x4f\x83\x28\x25\x45\xf5\xe4\x07\x5f\x8d\x69\xa4\x81\x79\xc2\x9e\xab\xf5\xc1\x74\x2e\xf3\x9e\x1a\xd9\x63\xbe\xbb\xb6\x6f\xce\x94\x91\xa9\x84\x65\x12\x15\xc2\xe7\x50\xe6\xee\x83\x65\x76\x64\x40\xa8\x44\x19\xe5\x2d\xcf\x67\x1f\x1c\x52\xea\xa2\xb9\x90\x2b\xcc\xa4\xb3\x7c\xff\xdb\xac\x8e\x7e\x7e\x6b\x0a\x5c\x87\x48\xef\xbf\x45\x2d\xf6\x16\x3f\x4c\xa0\x7b\x61\xf9\xa0\x5e\xc2\x0a\x2b\xd6\x33\x38\x9e\x67\x0b\xb5\x45\x4a\xcd\x6f\x3a\x06\x33\x5b\x5d\xa9\xec\x32\x62\x64\xe9\x62\xc7\xd9\xd0\x6c\xe7\xe9\xff\x04\xa0\xa5\xbb\xdf\xaa\x4c\x41\x08\x66\xa5\x72\x01\x16\x51\x43\x9f\x2d\xbc\xe5\xde\xe6\x67\x92\x4a\xc4\x93\x4d\x20\x54\x96\xbd\x1d\x4d\xf0\x8b\xd0\xcb\x3f\xd2\xde\x73\xa2\xef\x34\x2f\xf0\x09\x1e\x10\xe1\x5b\x3b\x76\x0a\x57\x5d\xf9\x3c\xf1\xc9\x7c\x01\xc5\xab\x11\xc0\x94\xbf\x34\x87\x82\x06\x71\x8f\x6b\x28\x5a\xa5\xcc\x51\x27\xbd\x7f\x98\x8b\x84\xa9\x04\x95\x30\x6f\xd9\xe9\x9d\x89\x55\xe6\x68\xd1\xa3\xff\x10\xf6\x5b\x7c\x47\x9f\xac\x24\x11\x9a\x3c\x10\x12\x2d\x4d\x18\xa8\x05\xb2\x47\xdf\x16\x8c\x0a\x51\x00\x16\x9b\x55\x72\xd1\x70\x12\xd7\x51\xa4\x2e\x83\x37\x61\x15\xe1\x15\x61\xc1\x60\xc1\x5e\xfa\xd7\x6d\x21\xf7\xab\xb4\x30\x36\x64\x75\x23\x86\x31\xf8\x4c\x88\xf8\x38\xb0\xac\x40\x4c\x91\x3d\x2f\xa1\x24\x50\x23\x84\x85\xc3\x02\xfc\x20\x1f\x44\x15\x1c\x19\xbc\xbd\xc1\x19\x0c\x12\xd1\x54\x08\x31\xfb\x19\x58\x1c\xb9\x31\x72\xb0\xd2\xff\x5c\x65\xf3\x1c\xaf\xf2\x0f\x81\x38\x81\xf8\x4e\x5e\xf9\xd5\xc1\x65\xe0\x96\xd2\x54\xca\xdf\x89\x52\x49\xaa\xb8\xd4\x49\x6c\x94\x0a\x40\xf9\x07\xbd\x40\x93\x5a\x94\xf5\xe5\x5b\x6d\xd0\x51\x15\x41\x00\xfe\x33\x17\x70\xef\xf2\xba\xd6\x54\x56\x19\xb8\xa3\x3e\xf6\x46\x2a\x50\xc0\xb2\xc4\xed\x2f\xba\x4e\x4e\x38\x3e\xbf\x29\x32\xe6\x19\x27\x66\xa4\xaa\xd1\xd6\xe2\xb6\x92\xd9\xf2\xbd\xc2\x33\x93\xe8\xaa\xcf\xba\x32\x3b\x53\x4f\x84\xed\xf2\xdc\xed\x7c\x94\xd5\x16\x87\xda\xa2\x71\x98\xa9\x14\x4b\x31\x2b\x71\x6f\xe1\x70\x14\xa7\xbe\xd0\xc1\x4a\x24\x38\x73\x3d\x55\x5c\x65\x64\xc8\xc1\xa3\xd9\x97\xeb\xae\x7b\x3d\xe8\x87\x7a\xf5\x3c\x1d\x1a\x50\x29\x15\x8a\x80\xaa\x0c\x87\x48\x9f\xef\x27\x0c\xdf\xfe\x10\xd3\x4b\x15\xc1\xa9\x69\x3a\xe0\x39\x02\x43\xe3\x14\xcf\xac\x06\xef\x6e\xef\xeb\xcc\xf4\x3d\x42\xea\xc2\x4c\xe9\x87\x94\x29\xd2\xfc\x72\x53\xb3\xed\x17\x58\x25\xbc\x4d\xa0\x76\x2b\x49\x33\xa9\x8a\xfd\xb9\x4b\x06\xf4\xfc\xd2\xad\x36\x11\xaa\x99\x9d\x7c\x1c\x8d\x85\x2d\x01\xdd\x9e\x52\x64\x84\x55\xa0\x4e\xb2\x33\x0a\x76\xfd\x94\x2c\x53\x1e\x51\x4b\x5e\xc0\x72\x8a\x89\xd3\x4c\xa5\x90\xea\x99\xc8\x8f\xaa\x20\xdf\xb7\xbb\xf6\x56\x54\xaa\x6c\x21\x2b\xeb\x8a\xd6\xbf\x7c\x77\x73\x91\xcd\x49\xc3\x9c\xf8\xab\x51\xb9\x5b\x41\x9e\x3d\xfc\x8d\x94\xa9\x3a\x1e\xf0\x22\x3c\x6d\xe9\x0b\xf9\x62\x18\xd8\x04\x5b\xd4\x95\x2a\x0d\x83\x72\xa5\x57\x8c\x6a\xaf\xa7\x4b\xa6\x62\xe3\x18\x8e\x6a\x6e\x56\x7e\x4d\x2f\xe8\x22\x7d\x07\x43\x98\x2a\x41\xeb\xfa\x0d\x31\x0f\xe7\x9f\xed\x27\x04\x17\x90\xef\xd5\xaf\xac\x22\x43\xe1\xd1\x50\xb1\x45\x01\x5d\x9d\xea\xb0\xed\xed\x63\x94\xac\x36\xfc\x5f\xb2\x01\xf5\x20\x4f\xbd\x42\x2a\x36\x04\x23\x30\x15\xbb\x0a\x48\xa9\x20\xe2\xe5\xe0\xd4\xde\xed\x67\x20\x25\xf2\x3c\xfb\xa9\x38\x89\x59\x7e\x50\x4c\x88\x87\xad\xd4\x6c\xfe\xf4\x02\x4a\xfb\x8a\x26\xee\xb7\xdc\xdd\xb2\x39\x7b\x44\xa1\x79\x63\x67\x34\x00\x42\x13\x70\x28\xc3\x30\x76\x26\x81\x6c\x29\x31\xe6\x1e\xbb\x6b\x69\xed\xcb\xcb\x61\x2c\x9b\x18\x1a\x28\x53\x01\xce\x46\xf8\x2f"}, {{0x8a,0x97,0x2d,0xd0,0xf1,0x19,0x0c,0x2b,0x9d,0x54,0x8f,0x4b,0xa5,0x82,0x64,0xbb,0x04,0x82,0x67,0x75,0x50,0x2a,0x8d,0x5c,0x2b,0x20,0x9e,0xe8,0x8d,0xce,0xa5,0xfb,},{0x6d,0x80,0x37,0x5f,0x3c,0xf1,0xaa,0xb2,0x83,0x55,0x1d,0xf4,0x45,0xd1,0x7e,0x7d,0x3b,0xaf,0x9b,0xcb,0xec,0xbb,0xb2,0x67,0x05,0x2e,0x02,0xfd,0xb6,0x91,0x44,0xd3,},{0xbd,0x45,0xb3,0xc0,0x45,0x85,0x0e,0xbe,0xf7,0xb8,0x0d,0xd1,0xde,0xab,0x48,0x03,0x7b,0x13,0x46,0xc7,0x1d,0xea,0xf1,0xe5,0x8f,0x2a,0x7b,0x16,0x26,0x74,0xf9,0x4d,0x1e,0xf3,0xd4,0x23,0x90,0x37,0x33,0x0b,0xd6,0x33,0x5f,0xe4,0xf0,0x14,0x92,0x50,0x90,0x1f,0x00,0xa8,0xe4,0x6b,0xe5,0xfa,0x0a,0xae,0xc6,0x9d,0xe0,0x6d,0x73,0x04,},"\x30\xb2\x89\x48\x93\x9a\xa2\x63\x43\x7e\x45\xc5\xc0\x25\x4f\xb2\x0e\x61\x7e\xd0\xf3\xfa\x7d\xac\xe5\xa0\xa8\xe0\xfe\x3c\x1f\xc4\xad\xb2\x80\x9b\x61\xc5\xe8\xd9\x2c\xd2\xf3\xde\x93\xb1\x73\xbe\x70\x7b\xad\xa9\x42\x40\xc6\x26\x2c\x16\x0e\x8c\x78\x21\x65\xbe\xef\x99\xd0\xbe\x8e\xcd\xad\x63\x16\xdc\xd7\x34\xbb\xb9\x0a\x66\xcb\xd5\xb1\xcb\x4f\xd8\xf2\x22\x6c\xea\x94\x8e\x4d\xf7\x6b\xbe\x25\x1d\x47\x8f\x5c\x3f\xe0\xd6\xde\x4b\xe5\x4f\x67\xf5\x02\xb2\x80\x4f\x62\x8b\x79\xa5\x50\xfb\x1a\xc4\x83\xad\x2b\xa1\x66\x37\xc4\xbc\x9d\xa6\x7f\xb4\xf9\x86\x59\xc4\xc4\x39\x4d\x16\xb6\xd1\x4b\x3e\x0b\x0c\x1e\x62\x5d\x71\x0d\xcc\x1c\x11\xdf\x5d\x34\x14\x7b\x1e\xc5\xa4\x17\xb9\xe2\x1f\x90\x8c\xfc\x52\x3d\x43\xe3\xf1\x81\xc7\x20\x9c\xc5\x6b\xdb\x5a\x21\x62\x86\x95\xed\x32\x0f\x8d\x4c\x07\xfd\x6d\x84\xaa\x03\x42\x6f\x21\x64\x4a\xae\xfe\xee\xc3\x11\xc7\x4e\x94\x99\x93\x60\x47\x35\x0a\x9b\xf5\xb7\x03\x96\x2e\x77\xce\x55\x13\x36\x83\x5f\xc3\x2c\xcb\xd2\xc9\x0a\xe5\x2e\x24\xd4\x7d\x8d\xcb\x98\x7a\xbd\x12\x1d\x3f\x74\x6b\x5d\xe2\x30\xf2\x64\x69\x60\x3f\xb0\xc4\xa8\xf6\xcd\x79\x73\xd7\xda\x88\x2e\xd1\xd6\xe4\xd9\xc5\xa4\x6e\xc2\xc2\x19\x40\xad\x33\x89\xa1\x86\x01\x4e\xe9\x72\x78\xe5\x35\x09\x88\xb1\x5e\xcd\x9e\xa7\x45\x6b\x3c\xb5\x5e\x4d\x30\x93\xf1\x3a\x87\x5b\x50\xd6\x51\x63\x78\xec\xaf\x58\xd7\x52\xc6\x37\x4e\xd1\x56\x38\x40\x93\x11\xfc\xd3\x79\xd1\x22\xc8\xd8\xc5\x9b\x86\xf4\xe8\xdc\x46\xad\xb7\x30\xa9\x33\x84\x6e\x0b\xd2\x48\xd3\x60\x82\x52\xd9\x70\xb5\x04\xc8\x13\xc6\xde\xa9\xfc\x88\xa3\xde\x64\x19\x56\xdc\xa2\x91\x20\x4d\x39\x0b\x6b\x39\x98\x1f\x8c\x0a\x6b\xcf\xc3\x1c\xa0\x74\x44\x20\x66\x2a\x9b\x35\xeb\x3f\xc2\x11\xf8\x10\xa3\xe8\x06\x25\x00\xb1\xe4\x9b\xdf\x85\x76\x65\xff\x32\xa9\xba\x76\x19\x4b\xbb\x77\xfb\x9c\x15\x41\x29\x64\x24\x4b\x98\x65\xf7\x3d\xed\x9f\x25\xb4\x9b\x42\x5a\xa2\x53\xd8\x07\xd9\x81\x82\x92\x76\x3a\x51\x3e\xc8\x07\x47\x34\x4f\xba\x0a\xcf\xe5\x93\xcc\x26\xb1\x33\x0b\xb9\xad\xe6\x6c\x4e\x88\xcf\x1b\xae\xd6\xd6\xe7\xb7\x50\xe6\xc7\x23\x9d\x7b\xcb\xfa\x3f\xbe\x45\x40\x5a\x63\xb9\x6d\x50\x34\xcc\x0c\x07\xff\xc3\xb5\x08\x58\x08\x1d\x19\x55\xe2\xd2\xfe\x5b\xe5\xfd\xa7\xa8\x99\x69\x43\x76\x8b\x05\x51\x70\xb7\xfd\x52\xf0\xa3\x20\x97\xfe\x1b\x7a\x94\xf1\xbf\x87\x9a\x0c\xba\xbe\x10\xac\x9a\x7c\xc1\xf9\xf5\x50\x68\xc4\x8e\x3c\xcc\x06\x51\x36\x43\x10\x18\xd3\x8d\x20\x10\x9d\xc9\x5d\x99\xcc\x2b\xbe\x7c\x62\x7a\xb1\xa8\xaa\x5f\x43\x16\x13\xb7\x90\xc2\xe6\x52\x6c\xf0\x4f\xdc\x9e\x55\xf5\x1c\x05\x5f\x3c\x20\x45\xa6\x75\xe3\xa1\xe5\x4b\xa4\x09\xf7\xae\xfa\x7e\x4a\xa0\x7a\x2b\xbd\x5e\x4a\xb1\x63\x21\xa9\xf0\x99\x69\x43\x91\xfd\xa6\x8a\x74\x58\x1e\x2f\x1f\x11\xdd\x9a\x6d\x52\x4b\x1b\x83\x26\x0d\xb5\x7b\x72\xef\x29\xc2\x8c\x8d\xb5\xc3\x7f\xd1\x85\xb7\xc2\xd8\x45\x50\x90\x65\x3a\xf3\x32\xdb\xc8\x2b\xfb\x0d\xb5\xdc\xca\xbf\xb6\xb2\x8c\xaa\x35\x05\x25\xcb\x54\xcc\x84\xe5\x53\xe1\xcf\x39\x54\xb6\x12\x39\x3e\x79\x93\xff\x7e\x8b\xf5\xec\xe3\xf1\x45\x09\x4d\xd7\xa2\x7c\xb4\x7f\x22\x74\x76\xf2\x89\x23\x52\x51\xf7\x72\xb3\xba\x77\x6b\xb7\x73\xaf\x0c\xc5\xf7\x86\xa3\xfb\x9e\x93\x1a\x53\x0c\xfb\xd8\x91\xcb\x5a\x5d\xfe\x25\x16\x9e\xf9\x33\xcc\x82\xc9\x08\x0f\x32\x39\x61\xa1\x20\x15\x8e\x4b\xbd\x71\x13\x4e\xf1\xf9\x01\x08\xb8\x15\xc2\x89\xd4\xe9\xa9\x58\x9e\xc6\x4c\x05\xfb\xb4\x2a\x21\xb2\x3d\x16\xe2\xa6\x46\x78\xae\xcf\xab\x65\xcd\x9a\x80\x6c\x59\x81\x03\xd4\x1f\x70\x09\x77\x63\x17\x83\x1f\xed\xdd\x1c\x90\x02\xd4\xa9\x22\x04\xf9\x7b\xa9\x49\x0c\x61\x46\x98\x03\x07\x21\x02\x52\x4b\x9d\xf5\x19\x00\x5f\x98\xaf\x54\xd6\x0c\xa5\xba\x60\xb5\x5b\x09\x6a\x4a\xc2\xb1\x6e\xb9\xcc\x81\x97\x3c\x31\x35\xd3\xfb\x68\x73\xdd\x96\x53\x80\x0a\x22\xbb\x5d\x0d\x61\x17\xca\x5d\x91\x65\x53\xbe\x39\xc9\xa3\xb5\x11\xeb\x3d\xb7\x30"}, {{0x12,0x38,0x0c,0x45,0xa7,0x9a,0xde,0x0f,0x48,0x3c,0x88,0x1a,0xaa,0x37,0x30,0x43,0x8b,0x08,0x35,0x90,0xf4,0x04,0xdc,0x9e,0x60,0x1f,0x76,0x15,0xf3,0x75,0xa6,0x28,},{0xd6,0x6f,0xc5,0x9a,0xe9,0x17,0xf7,0x6d,0x24,0xce,0x8a,0xb8,0xee,0x03,0xfb,0xcb,0x71,0x5d,0x5e,0xea,0x4b,0x08,0x39,0x2b,0x59,0x1e,0x64,0x85,0x91,0xc7,0x3c,0x89,},{0x02,0xb2,0x51,0x74,0xa3,0xdd,0x52,0x19,0xed,0x48,0xb2,0xc9,0x4c,0xa2,0x12,0xb6,0x3a,0x6a,0x3a,0x25,0x97,0x70,0x3c,0x07,0xb7,0xf0,0xc9,0x65,0xc3,0xc6,0xac,0x2e,0xb4,0x50,0xef,0xe3,0x87,0x16,0xa2,0xa2,0x8b,0x3f,0x89,0x84,0x6b,0x06,0xeb,0xdc,0xa4,0xbd,0x09,0xaa,0x58,0x1f,0x24,0xe8,0x4d,0x80,0xfc,0x10,0xac,0x1a,0x00,0x0a,},"\x68\x45\x23\xc2\xe7\xfa\x8b\x4b\xd7\x54\x8c\x4b\xac\xaa\x86\x78\xa3\x30\xdb\xbb\x96\x06\x32\x94\x01\x66\xb2\xcc\x9a\xfc\x15\x35\xc8\x0c\x11\x2c\x8d\xc4\xad\xa7\x62\x92\x33\xfe\x90\x90\x55\x23\x7d\x51\x3e\x29\x2a\xf1\x5a\xd7\x69\x2f\x11\x5a\xa0\x92\xda\x65\x75\x32\xf5\x18\x99\xc3\xf7\xf5\xd9\xd4\x07\xed\x5c\x16\x3e\xb3\x95\x04\x80\xa4\x12\x2a\x09\x92\x98\x1f\x07\x7b\xc8\x67\xf9\x06\x07\x54\x07\xba\x98\x49\xc4\xea\x04\x73\xce\x54\x0a\x79\x67\x44\xef\xa3\x86\x03\x78\xe1\xb8\x93\x43\xe5\x83\xd0\x80\x7e\x5a\x67\xc4\xd5\xbd\x7c\xe6\x41\x29\xfe\x90\x2b\x8c\xfa\xbd\x2c\x21\xfa\x3d\x2a\x10\xe9\xbf\x9e\xa5\xe5\x47\x3a\xe2\x50\xc9\x16\x05\x09\x97\x26\x78\xf9\xa7\x40\xe6\xca\xdb\x3b\x52\xf5\x02\xfa\x61\x6c\xff\xae\x1d\xef\x89\x3d\x54\xe4\x1e\x54\xd3\x26\x46\x4c\x9f\x43\x5c\x63\x50\x5f\xb1\x5e\x3e\xea\xf5\x02\x1c\x65\xdc\xd0\x10\xf8\x40\xaa\xb3\x17\xc8\x60\x5d\xfb\x1a\x0c\x8a\x3d\x55\x49\x86\x1b\x69\xaf\x2c\x93\xd8\x6c\x98\x1d\xf3\xa5\x1c\x5b\xf5\x78\x5c\x2f\x85\x26\x10\xe4\x4f\xa4\xff\x1c\x71\x61\x15\x2e\x56\x18\x38\x47\x44\xfe\x83\xba\xbf\x0b\xcb\x75\x61\x78\x9a\x02\x31\x25\xf6\x24\x2a\x18\x3c\xac\x95\x49\xc9\x32\x73\x3a\x86\x8a\xa1\x82\x65\x6e\x2b\xa0\xa8\xc0\xbe\x10\x69\x96\xa8\x5c\xeb\xf1\xbd\xad\x12\x3b\x98\x2b\x4e\x05\x55\x10\x87\x94\x82\x02\x1d\xae\xa9\xd8\xf2\x6c\x58\x8e\x6c\xd1\x01\x26\xcb\x31\x96\x88\x03\x56\xbe\xe8\xf2\x98\xbc\xa3\x06\xec\x56\x99\xc7\x57\x6b\x76\x50\x87\xc2\x53\xa6\x02\x14\x01\x0c\x6e\xd7\x0d\x87\x1c\xfc\x87\x38\x01\x8a\x0e\xdb\x57\xf1\x06\xb4\x21\x8d\x85\x5e\xab\x2c\x91\xf3\x9f\x85\x8b\x3f\x25\x90\x56\x31\xa0\xee\xe2\x98\x56\xfd\x34\xf7\xb8\xc9\xba\x51\xc1\xc4\xc6\xa7\x35\xd6\xc7\xa1\x3d\x22\x0d\x7a\x56\x6c\x3f\x50\x6c\x72\xbc\x74\x17\xab\x37\xf0\xd6\xd7\x96\xff\xc7\x1d\xf9\xdc\x7c\x6e\x13\x7d\xa5\x6b\x7a\x3e\x10\xcf\x0b\x1a\xbb\x3f\xfb\x70\xbc\x66\x29\x3b\x5d\x75\xb4\x05\xed\x8b\xec\x0d\x6f\xcd\x06\x92\x5c\x38\x11\x68\xac\x18\x8d\x0b\x8a\x1a\xf0\x83\x9f\x5b\xde\x84\x3b\x69\x91\xe5\xa5\xd6\xcd\x66\xfe\x6b\x0f\xde\x86\x7c\x08\x6e\xd4\x38\x76\x91\x9a\x1b\x72\x33\xd8\xd7\xe1\xd2\x74\x2f\x61\xc7\x7d\x8e\x59\x91\x68\x9c\x83\x28\x67\x66\x55\xb7\x6a\x37\x50\x56\x0e\x75\xd1\xc7\xe8\x5e\x3c\x00\x85\x05\x93\x31\x09\x4b\xba\x57\x10\x03\x2c\xf6\x79\xa5\x25\xc7\x8b\x31\x70\x0e\x6d\x91\xf7\x52\x94\xc4\x22\x48\x92\x97\xe1\x73\x59\x43\xe4\x17\xfc\xd3\x55\x80\x58\x2f\xdd\x02\x39\xb5\x11\x46\x53\x0c\xc0\x9d\x83\xb2\x8f\x0a\x1d\x64\x22\x20\xdf\xb9\x9b\xad\x62\xf3\x95\x41\x03\x50\x81\xd6\x5d\x77\x8d\xdf\x32\x39\xba\x0e\x6f\xa9\x91\x4b\x17\xb3\x97\xa5\x34\xcb\x8f\xd3\xb4\xff\x42\xa8\xd8\xc8\xee\x66\x15\x3f\xbb\x1f\xf0\xfa\x54\xf7\xbd\x03\x27\x85\x16\xe6\x34\x1a\xf8\x0f\xcd\x1f\xce\xe7\x0c\x35\x9d\x20\x53\x68\xac\x49\x0d\x75\xa3\x54\x51\x2d\xa4\x6b\xa7\x63\x4c\x15\xb2\x84\xb2\x44\x77\x80\x8f\x17\x63\x33\x60\xa4\xb4\x9f\xb3\xbc\xaa\x84\x18\x41\xcf\x92\x41\x7e\xb2\x4c\xe4\x82\xd5\xa2\x4b\xfd\x2d\xac\x37\x22\x31\xda\x53\x9a\x05\x42\x00\x02\xff\x7a\x20\xc4\x76\x09\x7d\xa0\x6f\x59\xf0\x33\x14\xe6\x05\x9f\xad\x88\xc5\x0c\x3b\xaa\xc0\x3c\xef\xa7\xcd\x82\x11\xd2\x46\x1b\x16\x60\xea\x6b\xcf\x47\x68\x38\xc9\x1a\x10\x07\x4e\xb4\xb4\x0e\x6e\x97\x4a\x94\x5a\x67\xf6\xee\x69\x04\x23\x1e\xf0\x41\x88\xf1\xea\xd5\xba\xf3\x56\x94\xef\xe3\x01\xed\xc7\xe8\x66\xda\x23\xb5\xa6\xc5\x8f\x01\xb2\xa5\x2c\xf3\xab\x80\x5e\xdc\x5c\x13\x68\x62\x6b\x95\xb9\x4e\xb4\x64\x5b\x69\x3e\xc8\x80\xf2\xb8\x11\x7a\x69\x3a\xfb\xdc\xd2\x48\x24\x31\x89\x0f\x41\x0b\xc5\x80\x53\x0f\xef\x37\x58\x79\xc2\xe4\x60\x49\xca\x89\x1a\x2c\x3e\xcd\x60\x43\xae\x80\xd8\xaf\x34\x66\x34\x67\x4c\x6d\xfe\x90\x59\x97\xde\x5d\x05\xd6\x20\x09\xee\xed\x27\x75\x02\xfb\x5a\x5a\x31\x55\xee\xee\xb6\x73\x48\xb6\x0d\x89\xa3\x4a\x78\x12\x63\x9f\x54\x1f\xfe"}, {{0xd1,0xb3,0x43,0x0d,0x4e,0x63,0xaa,0xbf,0xa9,0xef,0x96,0xbc,0xba,0xf1,0xfa,0x6a,0x9e,0xb5,0x21,0x9d,0xd4,0x4d,0xf3,0xb1,0xa6,0x15,0x63,0xdf,0xfe,0x1c,0xcb,0x28,},{0xc2,0x8a,0x05,0x19,0x52,0x45,0x29,0x0e,0xcd,0x38,0x53,0x55,0x85,0xce,0x51,0xf3,0xc2,0x35,0xc5,0xd6,0x50,0xc8,0xc5,0x7c,0x2f,0x79,0xbb,0x0a,0xc0,0xe8,0x08,0x34,},{0x4c,0xb6,0xff,0x5d,0xd7,0x06,0xb1,0xae,0x81,0x6c,0xdb,0xaf,0x9e,0x9e,0x1e,0xdc,0x80,0xa6,0x62,0x84,0xf9,0x46,0x52,0xd5,0x0e,0xc1,0x4e,0x28,0x3b,0x2a,0xdc,0x59,0x2f,0xd0,0x84,0x33,0x71,0x44,0xff,0xa7,0x12,0xdc,0x34,0xce,0x8e,0x61,0x06,0x68,0xa6,0x5e,0x96,0x9f,0x05,0xce,0xb5,0x47,0x86,0x30,0x4d,0x0d,0x58,0xd3,0x1a,0x08,},"\x07\x6c\x0c\x87\x62\xe4\xbc\x00\x3c\x36\x0a\x12\xa1\x95\x98\x05\x05\x51\xd1\x6b\x4b\x8d\xa0\xfb\x9c\x4a\xfc\xc8\x1a\xdb\xe6\x19\x95\xf2\x5c\xbc\x28\xdc\xa4\x20\xbf\xa9\x46\x10\x54\xd3\xee\x00\xad\x78\x18\x3e\x7f\x26\xdf\x68\x98\xaf\x9a\x4d\x22\x5f\xca\xb6\x7c\x04\x2e\x9a\x13\x52\x5d\x1f\x75\xff\x0e\x3d\x8d\xa8\x08\x96\xb7\x28\xf3\xe2\xdb\x65\x94\x4a\xe0\x71\x7d\x77\x59\x90\xb5\x9e\x5b\x70\x43\x4b\xd4\xb3\xee\x45\x2f\x10\xac\x06\x10\x57\x0b\x38\x22\x08\x32\x96\x8f\x54\x4d\x3e\x4d\x11\x9b\x1d\x4b\x50\x15\xc6\xcd\xf4\xcf\x22\x0b\x56\xb5\xc0\xcc\xd8\xe3\x98\xd5\xe4\xa5\x8d\xa3\xb0\xe2\xb2\x70\xa5\xd3\x9b\x82\xab\xb7\xf9\xd2\x7a\x41\x90\x18\x55\x0b\x62\x00\xae\x51\xc8\x48\x82\xf0\x86\xae\x7e\xa5\x35\x16\x71\xb6\xdd\x96\x09\x23\xad\x6b\xef\xc1\x34\x09\x87\x9a\x8d\xf6\x19\xbd\xf6\xc8\x8a\x6f\xe1\xec\xc0\xf0\xf3\xaa\x21\x9f\xb6\x19\x02\xbe\x48\xa5\x3d\xf2\xbc\x66\xc5\x6f\x1c\x1d\x17\xf7\xe6\x16\x7d\x25\x51\x65\xf1\x74\xba\xa9\xca\xf5\x3c\x73\xcb\xbb\x7c\xc2\xc7\xc0\x87\xf4\x3a\xbe\x2a\xed\x5a\x21\xfe\x42\x90\xb8\xd6\x79\x60\xa8\xa9\xcb\xc2\xa5\x7a\xbe\x22\x65\x4d\xc1\x84\xcf\xf9\x16\x8b\xb6\x97\x27\x03\x75\xfe\x88\xd5\xc4\x9c\xf9\x5b\x06\xcf\x9d\x0d\xac\x81\xfb\xd9\xc0\xd7\xb8\x2d\x05\xed\x2c\x3f\xd4\x9c\xcc\x29\x40\x44\x41\x71\x25\x45\xf9\xa9\x91\xe4\xf0\xdd\xb6\x21\x90\x83\x82\x96\xf9\x67\x29\x9a\x38\x60\x72\x26\xd8\xa6\x81\xf0\xa8\xf3\xc4\x38\x4f\xd1\x8b\x30\x25\x7c\x46\x3c\x0a\xbd\x0f\x4f\x6f\x12\x25\xa5\x1b\x76\x2d\x6d\x0a\xc7\xd5\x9c\xd2\xef\xd6\x98\xb8\xd1\x3e\x23\xd7\x04\x09\xf6\xb0\x7d\x69\x5c\x16\x71\xcd\x6f\x59\x44\x3b\x1d\xb0\xab\x35\xb9\xdc\x06\x40\xe4\xc6\xd1\xac\x50\x47\x5d\x28\xef\x94\xf8\x17\x90\xe2\xe5\xb2\x54\x55\x14\xb2\xa4\x9c\x5c\x21\x53\x45\x9b\xe5\x40\x89\x0f\x53\xbc\x18\xe4\xa1\x6d\xcb\x5d\xcf\x50\xf3\x7a\x95\xc6\x06\xfd\xf4\x85\x98\xe5\x2a\xf3\x17\x9a\x20\x48\x61\x5d\x93\xd9\x7e\x05\x99\xb7\x08\x8c\x11\x74\xbb\x9f\x15\xe3\x70\x18\xf9\x9a\xcb\xce\x5b\x13\x02\xf8\xd8\xce\x2a\xb8\x54\x37\xfe\xeb\x0c\xaa\x77\x84\xdc\x83\xc9\xe7\xc3\x6f\xe0\x59\x90\x6b\x03\x0a\x86\xa3\xde\xd0\xab\x9d\x8b\x73\x52\x9d\x47\x5e\x66\x1a\x08\x08\xd6\xd3\xf0\x90\x7f\x85\x28\x87\x3f\x08\xd5\x74\x8b\xe1\xd6\x97\x12\xe8\x52\x62\xd7\x7b\xdf\x13\xbf\xd1\x8a\x5c\xde\x6f\x71\x46\x26\x73\xab\x29\xb1\x61\x73\x15\xa9\xa6\xe9\x36\xa8\xe8\x1a\x8e\x43\xbd\x0f\x66\x44\xa5\xc6\x9e\xaa\xac\x89\xbd\xaa\x99\xcc\xa8\x03\x83\x37\x05\xe5\xaf\xa6\x9b\x3b\xd1\xd0\x25\x2b\x85\x46\x50\xf2\x19\x97\x91\xe6\xac\xa7\xc7\x5a\x86\x12\x83\x21\x62\x33\xa2\x63\x3a\x6a\xef\xf9\xd3\x01\xee\x5c\xb4\xdd\x72\xc0\x8a\x45\xcd\xae\x8f\x54\x58\xc0\x95\xb2\x2e\x75\x9c\x43\xb4\x9b\x98\xe9\xf4\xcb\x33\xd5\xde\xa8\x79\x44\x9e\xae\x73\xcb\x87\x4c\x73\x59\x43\x25\xeb\xf6\x8c\x1e\xd4\x06\x4b\x6f\x61\xab\x2f\x01\x4a\x2f\x19\xf3\x2e\x12\xb3\x3c\x5e\xaa\x8a\x29\x20\x4d\x5e\xba\x58\xdc\x07\x50\x72\xfe\x39\x9b\xe7\xd1\xab\x18\x08\x20\x8f\xb4\x08\x12\x3b\xdc\x0b\x4a\xb3\x13\x0f\x9f\x70\x6d\xc3\xeb\x19\x4b\x60\x5e\x73\xa3\x2f\x12\x5a\xe4\x91\x28\x5c\xe6\x03\x9f\xb6\x23\xc3\x8b\x81\xd5\xab\xa0\xf5\x59\x9f\x6c\x86\xe8\x72\x48\x6b\x4e\x96\x49\xda\xff\xe3\xa3\xd0\x6c\xb0\x73\xdd\x3b\xc6\xf4\xe1\x0a\x18\x70\x0e\x45\x72\x2d\x78\xa6\xb0\x97\x2d\xc9\x4d\x5c\x7a\x7b\x66\x41\x75\x7b\x79\x60\x75\x71\x9d\x7b\x8e\xc3\x6a\x1e\x79\x6f\xb5\xf8\xfe\x6f\x1b\x79\xa0\x85\x9c\xb4\xd6\x7c\xec\x05\xed\x91\x4c\xfa\x32\xc1\xdd\xfe\x21\x8e\xf9\x63\x43\x6c\x3a\x11\x48\xac\x2c\xf9\x09\xdf\x73\x59\x89\x06\x57\x46\x3a\x4e\xa2\x5f\xed\x59\x61\x8a\x06\x81\xa1\x21\x7e\x22\xd6\x4e\xf9\xd9\xb4\x55\x9d\x0a\x0f\x6b\x3c\xe8\xd8\x47\x93\x0b\x23\x23\x01\xca\xf4\x4c\xdf\x7a\x3f\x18\xa2\xac\x13\x0b\x92\xcf\xd9\xc0\x33\x60\x55\x7b\x5f\x7c\x47\x75\x46\x2a\x10\x71\xf7\x03\x44\xc7\x18\x37\x4b"}, {{0x03,0x3e,0x00,0x3d,0x7a,0xab,0x7b,0xc7,0xfc,0x8a,0xc2,0x04,0xc7,0x33,0x79,0x9a,0xe5,0x53,0xc3,0xfe,0xc5,0x3f,0x10,0xdb,0xf7,0x95,0xb5,0xf4,0xb8,0x7f,0x1c,0x95,},{0x68,0x2f,0x46,0xf5,0xc0,0x56,0xdd,0x45,0xba,0x0b,0x5a,0x78,0x20,0x31,0xf9,0x59,0x6a,0x73,0xaa,0x29,0x2c,0xa2,0x32,0x6b,0xed,0xa7,0x4a,0x52,0xfc,0x32,0xb7,0x16,},{0xed,0xb4,0xe0,0x20,0xd6,0x76,0xfa,0xc6,0xa8,0x45,0x53,0x48,0x80,0xbf,0x61,0x36,0x37,0x4a,0x8b,0x7f,0x2c,0x53,0x85,0xbb,0x9e,0xe2,0x25,0x38,0x1f,0x49,0x4e,0xfb,0x74,0xa5,0x5b,0x41,0x3a,0xe0,0xea,0x70,0xad,0xd6,0x1b,0xfd,0xfb,0x87,0xfb,0x42,0xd5,0xbc,0x0c,0x53,0x59,0xdd,0xdd,0x57,0x3d,0x53,0x8a,0xe9,0x3a,0x6b,0x36,0x09,},"\x59\x6a\xa2\xc4\x0b\x33\x18\x87\x89\x38\xeb\xc1\x38\xdb\x27\x4b\xb3\x8a\x52\x01\xeb\x7c\xaf\x87\x5e\x6c\x64\x57\x91\xda\xe0\x12\xbd\xef\xd4\x85\xe6\xbd\x9d\x84\x99\xc4\x2a\x2a\xe8\x6c\xf3\x2b\x18\x00\x2e\x76\xbb\x58\x2c\xca\x0d\xec\x48\x15\xde\xd8\xa1\x21\x1f\x8f\xc8\x85\x7f\xce\x1d\x57\xf6\x15\x1d\x88\x78\x7b\x97\x8f\xab\x56\xbf\x92\x6b\x15\x33\xe1\x94\x99\xe8\xbb\x99\x15\x8c\xdd\x6e\x98\x0f\x6b\xa5\x43\xae\x83\x1f\x9d\xd1\x34\xb0\xfe\x6d\x5c\x24\x88\x7d\xc7\xa8\xd4\x78\x1d\xd9\xb7\xfc\x5d\xc9\x46\x4b\x04\x5c\xbf\x9d\x1e\xf5\x03\x6b\x5b\xf2\x8b\x54\x9a\xc7\xaa\x8f\xaf\xb9\x1a\xdc\x9f\xec\xa7\xa1\x45\x54\xd1\x10\xe3\x10\xc7\x49\xe4\x85\x33\xf3\x59\xc7\x0f\x05\xfb\x7a\xed\xef\x13\x66\x36\xb8\xef\x72\x23\x88\x65\x39\x86\x4e\xe5\x2d\x34\x11\x8b\x4b\x8b\x74\xe0\x8f\xe6\xb6\x58\x96\xe4\xb1\x9b\x6d\x7c\x3f\x25\x28\x26\x55\x85\x48\x17\x10\xd2\xd7\x49\x48\xeb\x4b\x17\x08\xa5\x0f\xa7\x40\x21\xbd\xa4\xb3\x61\xbc\x68\xd2\xa5\xd2\x02\x10\x9f\x8d\x28\xd8\xaa\x67\xd7\x8c\x11\x36\xcd\x2e\x90\x3c\x8d\xfa\x17\x5a\xf7\xbd\x96\x3b\x73\xda\xe4\x95\x87\x3c\xcd\xae\x62\xbf\xef\x88\x56\x36\xdd\x83\x55\x0f\xf9\xc0\x5c\x37\xba\x33\x89\xd1\x54\x36\x85\xd8\x94\x83\xb0\xc1\x04\xe7\xef\xbb\x77\x02\xc5\xa0\x39\x8a\xc7\x20\x48\x4c\x50\x93\x68\x35\xee\x9d\xf2\x53\xf0\xef\x8c\xbe\xf3\xe0\x7d\xe9\x69\x51\x1c\xcb\xf8\x75\x57\x49\x3a\x0b\x97\x2e\xf0\xe8\xe6\x29\xcf\x38\x22\xdb\x21\x28\x6e\xd7\x27\x66\x1b\xd3\x17\x86\xfc\xa1\x42\x11\x06\xda\xcd\xee\x1c\xaa\xf4\x94\x54\xe8\x54\x79\x4f\x70\x4d\x22\xa9\x5a\x4c\x8e\x6b\x1c\x2f\xee\xa5\x7e\x56\x23\x8c\x20\x96\xf1\xcc\x57\x86\x47\xfe\xa5\x44\xd6\x76\x44\x82\xbd\xf5\x14\x88\x79\xa2\x5f\x94\x3d\xb1\x6f\x29\x02\x1b\x9e\xcf\xe3\xe0\x90\xb4\x25\xc8\x1c\x70\x09\x84\x2e\x1c\x7a\x02\xd9\x1c\xa6\x0c\x12\x01\xc3\xbd\xae\x9c\x53\x73\xaf\x03\xf2\xf4\xdb\xef\x40\xde\x8d\x9b\x21\xfe\xd6\x8d\xee\x51\x0d\xe0\x42\x72\x34\xca\xa1\xc2\x0a\x3a\xe5\x49\x95\x48\x34\xc9\x33\x73\xd9\x13\xb8\x75\x0f\x23\xa0\x37\x80\xd7\xa9\x45\x4e\xd6\xfe\x51\xfd\x2d\x27\x6b\x9d\x4a\xa3\x2d\xe0\x5e\x03\x81\x6e\x64\xe9\x46\x6f\x4f\x0e\x22\x46\x51\x42\x8d\x34\x2c\xbc\xc6\x97\x17\x0a\x47\xef\x99\x6b\xda\xcb\xce\x91\x11\x7c\xa1\xf8\x45\x5b\x25\xb2\xb0\x84\x43\xe9\x91\x4e\x3d\x90\xc4\x89\xee\xaa\x77\x31\xdd\xea\x21\x23\xd5\x5d\x67\xb1\x66\x83\xfb\x7c\x82\x36\xaa\xa5\xa1\xb0\xfc\xaf\x8d\x17\x00\x11\xdb\xe9\xaa\x28\x57\xbe\x61\x2c\xbb\x85\xef\x69\xe5\x68\x31\xb4\xda\xcf\xbc\x7a\x59\xb4\x65\xa6\x6d\xc7\x41\x2d\xdb\x3d\x6a\xf4\xeb\xfd\x70\x58\x64\xe7\xd4\xfb\x99\xa6\xcc\xb4\x8b\x11\x83\x68\xfe\xab\x02\xa3\x40\xc4\x32\x76\x8d\xe0\xe0\x67\x87\x1e\x9e\xa8\x08\xd6\xd9\x93\x81\x58\x29\xe7\x1f\x6c\x04\x2b\x66\x49\x95\x09\x8f\xee\x94\xd5\x43\xdf\x15\xe5\xb1\x69\x57\x03\x1b\xd2\x38\xbc\xad\xbb\xdc\xc5\x76\xaf\xfb\x64\x03\x03\xd6\x9c\x5b\x25\x0b\x3a\x53\x9a\xfd\x12\x7f\x7e\xe2\x60\x9e\x52\xe5\x15\x4f\xbd\xff\x3e\x45\xf9\xc4\x40\x66\x65\x6d\x56\x1e\x0f\x64\xdf\xf2\x80\x5d\xf8\x8e\x30\xa3\x80\x53\x08\x22\x41\x3a\x7a\xb7\x6a\x1b\x9a\x86\x53\x78\xd2\x47\x63\x06\x9a\x81\x40\x02\xa9\xa9\xd0\x37\x95\xca\x8d\x2b\x5b\xd1\x09\x03\x93\xe9\xe4\xb1\xff\x7d\x7f\x0e\xb8\x4e\x71\x2a\x01\x8f\x68\xc9\xe3\x84\xf0\xa0\xae\xf3\x96\x78\x79\x28\x4f\x40\x9e\x30\xd2\x36\x50\x86\xe6\x69\x52\x27\x8c\xa9\xb6\xf9\x0e\x8f\x69\xa4\x8d\x9b\x28\xbb\x4c\x4e\xd6\x32\xab\xca\x3a\xf4\x14\x4d\xa7\x42\x2b\xf5\x19\x92\xf7\x34\x73\x14\x53\xc7\xa3\x3e\x15\xe5\x9f\x53\x08\x12\x9d\x6a\x77\x4a\x94\x58\x6f\x72\x33\x11\x17\x91\x76\xc0\x94\x8f\xff\x4e\x30\xc1\xb9\x59\x81\x2c\xac\x97\x7c\xc7\x43\x47\xb0\x07\x94\x0f\x2f\xb9\x62\xa9\x0d\x66\x06\x6a\x6d\xe8\x80\x19\x84\xde\xe4\xa5\x32\xd4\xb0\xac\xd6\xdc\xaf\x06\x72\x7b\xab\x70\xb3\x86\x62\x32\x23\x4c\x91\x00\xbf\xdc\x66\x9f\x77\xca\x49"}, {{0xee,0x55,0xfc,0xf7,0x0a,0x27,0x5c,0x72,0x6b,0xd4,0x85,0x66,0x83,0xb3,0x47,0xde,0xcf,0xd4,0x22,0xf1,0x82,0x6c,0x07,0xa9,0x32,0xcb,0x85,0xbe,0x9f,0xa4,0xef,0x3c,},{0xdf,0xcf,0xfb,0x5e,0x15,0x53,0x78,0x9d,0x56,0xa9,0xf3,0x91,0x4b,0xce,0x50,0x0d,0x07,0xc5,0xac,0x31,0x1f,0x92,0x78,0x54,0xb2,0xcf,0x1e,0x58,0x33,0xc0,0x32,0x37,},{0x9d,0x8c,0xb2,0xea,0xf3,0xff,0x3e,0x0c,0x2b,0xc6,0x72,0xe1,0xd2,0x55,0xc5,0xb8,0xe8,0x07,0x31,0xbf,0xf6,0xf6,0xab,0xa5,0x17,0xe1,0x33,0x54,0xe8,0x51,0x08,0x0f,0x4a,0x8b,0xb8,0x12,0x1b,0x26,0x24,0x24,0x4c,0x9e,0xe9,0x5c,0x8a,0x09,0x2f,0x10,0x37,0x03,0xfb,0xe6,0x6f,0x9c,0xba,0x10,0x0d,0x2e,0x91,0xed,0x77,0x4a,0xc9,0x07,},"\xb8\xc8\x45\xcf\x7c\x54\x85\xf0\x62\x2d\x1d\xdc\x17\xf7\xa0\xf6\xf0\xfd\x70\x74\xfe\x19\x4b\x0e\x0c\xd4\x26\x50\xcf\xc8\x17\xf5\x7f\x09\x5f\x8c\xdf\xad\x1e\xbe\x0d\xfb\xc1\xbd\x76\x17\xab\x4f\x20\x4e\x9d\x55\xd8\x1a\x7c\x8a\x43\x39\x40\xec\x6f\x17\xc8\xa8\xe3\xd5\x6c\x1a\xfb\x0a\xf3\x74\xbd\x32\xd5\x4e\xf7\x13\x2d\x26\xb8\x9c\x47\x0c\x2a\xb5\xbe\x16\xfa\xbb\x4c\x75\x19\x3d\x6d\xa5\x9b\xa2\xfd\x15\x7e\x9e\xa4\xe0\xc5\xc0\x8a\x52\x02\xf5\xed\xc6\xa6\x17\x01\xf0\x8b\xb3\x44\xca\x64\x55\xd7\x5d\x14\x5a\xdb\x24\x4c\x53\x4c\x8c\xfc\x62\x3f\x4d\x4b\x67\x67\x59\x4b\x39\xa7\x69\x0b\xee\xec\x4d\xf9\x74\x6a\x57\xff\xee\x05\x14\x54\xc4\x27\x8e\xa4\x3c\x81\x0f\xf1\x3c\xd7\x69\x61\x5f\x9d\x05\xd4\xfe\x4a\x51\x58\x3e\x80\xc0\x15\xdc\xfe\xd9\xaf\x05\xf9\x3d\x05\x4d\x34\xff\xd9\x39\xbd\xd8\xf0\x51\x8f\xa3\x03\x0a\x96\x4d\xc9\xd8\x0d\xf0\x0f\x16\x35\x82\x40\x72\xcd\xf2\x9b\xc8\x02\x59\x20\x9d\x50\xf5\x6f\xca\x9f\xbd\x6a\xe1\x51\x4a\x67\x19\x89\xce\xa4\xf6\x84\x6b\xc1\x91\x79\x09\x7c\xca\x40\xc6\x24\xd7\xed\xbf\x91\xfb\x5b\x25\x39\xeb\xbd\x50\x2d\x36\x46\x71\x14\x30\xba\xe4\x23\xfd\x11\x58\x48\x09\x33\x18\xb7\xd0\x87\xef\x1e\x3b\x89\x4b\xc3\xb9\xea\x27\xaf\x85\x3f\xca\x85\x95\xd3\x6f\xb7\x29\x99\x69\x16\x2f\x2e\xd6\xa2\xb5\x50\x75\xb2\xc6\x30\x80\x28\x57\x17\x6d\xec\x4c\xb5\xac\xf2\xb1\x3a\x35\xa9\x94\x9b\x91\x2b\xb5\x7d\x81\xeb\x0c\x8a\x8a\xdf\x3c\xf6\x4c\xb5\x71\xbf\x5f\x3d\x71\xf9\x87\xd6\x4d\x74\xe9\x19\xa0\x03\x36\xe5\x7d\x35\xee\x4e\xec\xfc\x65\x70\x00\xdd\x5b\x12\x99\x5e\xe1\xb1\x16\x59\x1c\xe5\x8e\x56\xde\x25\xb2\x9c\x94\x82\x9d\x1d\x68\x52\x1b\x95\x58\xe4\x72\x5e\xc7\x70\x39\x06\x9c\x0c\xd1\x7b\x2a\x00\x33\x59\xe9\xe1\xe1\x12\xc7\x59\x01\x76\xce\xbc\xe7\xf0\x01\xf1\xd1\x36\xe8\x18\xf4\x81\x8c\xfd\x94\x74\x5a\xfa\xab\x56\xf1\xa4\x06\xf9\x7d\xd9\xe6\x1b\x73\x52\x66\xd6\x82\xad\x7d\xf2\x6d\xd7\x0c\xde\x0b\x57\xfe\xa7\xdb\x2d\xf8\x32\xfa\x88\xa3\x5f\x53\x97\x94\x88\x4d\xdc\x41\x21\x84\x03\x01\x6c\xb6\xd5\x22\x1f\x3f\xeb\x5d\x3a\xee\x4a\x98\x40\xa9\x13\x07\x2d\x29\xf8\xd1\xa9\x36\x7b\xb0\xbb\xf5\x45\xf7\xda\xe7\xc0\x0a\x0d\x0c\x03\x42\x23\x1a\xe4\x62\xbb\x74\x2e\x14\x98\xee\x58\x4a\xe6\xc8\x3f\x2f\x1f\x2d\x04\x52\xbe\xad\x98\x22\x68\xcd\x3c\xfd\xe7\x8f\xf4\x22\xe2\x26\xbf\x7b\x2a\xf1\x13\x77\x57\x79\x7f\xb0\x2e\x52\x75\xc3\x48\x09\xd5\x4c\xa9\xee\x2a\x65\x27\x5e\x6e\x5c\xff\xdd\x20\xad\x1f\xa1\xee\x0b\xd8\xb2\x1e\x04\xce\x82\x9e\x02\xcd\xb6\x3c\x48\xbf\xcd\xd8\x6d\x3a\x08\xc5\x97\x89\xc9\xd7\x8e\x36\x18\x1d\xef\xeb\x72\x27\x10\x72\x75\xed\x6b\x5c\xcb\x12\x7c\xd7\x2b\x37\x4e\x17\xf5\xee\x0b\x5e\x47\xb4\xb3\xe1\x4a\x8e\xc6\xd8\x6b\xb7\x50\x71\x87\xf2\x8d\xb3\x2b\x3f\x3f\xa1\xca\x13\x44\x6f\xe5\x25\x3e\xe7\x83\x64\x5e\x79\x42\x72\x79\x9a\x86\x3b\x4f\xca\x99\xe4\x43\xcb\xaa\x05\xde\x3c\x50\xed\xf3\xd5\xcd\x7c\x10\x52\x9c\x6c\x09\xa0\xc1\x45\x34\x06\xac\x7e\xca\xfa\x9b\x3a\x1f\x36\x9d\x68\xf3\xc6\x18\xf5\x8e\xfc\x35\x9d\xf2\xf3\xfc\xd2\x47\x8b\x55\xa4\x1a\x11\xf2\x48\x7e\x7f\x70\xec\x29\x3b\x3e\xcc\xc7\x00\xef\x44\x4a\x33\xd1\xea\xe9\x84\x9c\x5b\x76\xd2\x9a\xfd\x5a\x23\x86\x1a\xef\x4f\x2a\x7b\xa3\xf6\x66\x30\x1f\xde\xb5\xd3\xd8\xf0\xdc\x9e\xe2\xe0\x14\xb2\x4c\x74\x65\xde\xe3\xc0\x96\x4e\xdd\x49\xed\x49\xed\xab\xb5\xca\x7a\xfb\x99\x57\x4d\x00\x1e\x58\x12\xa0\x85\x23\x1f\x24\x1b\x6b\x08\xc7\x3e\x80\xfb\x44\xbb\x2a\xdf\x55\x4f\x14\xfd\x6d\xce\x94\xa6\xf6\x36\x23\xd9\xc1\xde\xb4\x1a\xd1\x01\x65\x1a\x6b\x67\xae\x52\x34\xda\xae\x81\x97\x9f\xbd\x82\x33\x89\x64\x9a\x3b\x0a\x06\xc6\x8b\x80\x46\x8a\x99\x1d\x30\x07\x74\x87\x51\xfa\x69\x28\x1d\xb1\xb9\x4d\x6c\x16\x0a\x1c\xab\x50\x94\x3c\xdb\xb8\xde\xa5\x75\x09\x06\xb3\xc6\x59\x5b\xb5\x80\xde\xdb\xfa\xe5\x74\x64\xcc\x7a\x65\x1d\x4c\x51\xdb\xb5\xfa\x98\x05\x97\xd1\x76\x69"}, {{0x49,0xc2,0x98,0xa2,0xdb,0x3d,0x25,0x89,0xc9,0xfe,0x16,0xa4,0xe5,0x71,0xe5,0xaa,0x23,0xcb,0xaa,0x77,0x7b,0x86,0x47,0x02,0x90,0xa3,0xed,0xa7,0xa5,0xd3,0xe9,0x6b,},{0xda,0xc5,0x23,0xd6,0x37,0x4c,0x8f,0xf1,0x5f,0xc4,0xdd,0xc7,0x13,0x71,0x5a,0xc3,0x5c,0xf5,0x54,0x7f,0xc1,0xb1,0xb2,0x64,0x6b,0x63,0xfb,0x41,0xa7,0xf2,0x16,0x21,},{0x2a,0x43,0x9c,0x73,0xc9,0x81,0x17,0xfb,0x29,0x52,0xe2,0xb1,0x61,0xf7,0xf3,0xb9,0x9e,0x7d,0x39,0xbc,0x69,0x7f,0x79,0x40,0x75,0xdb,0x7b,0x63,0x4d,0x29,0xf1,0xff,0x57,0x24,0xf6,0x77,0xf8,0x31,0x2a,0xd5,0x15,0xb0,0x97,0xcc,0xa9,0xdf,0xc3,0x0e,0x79,0xee,0x8a,0x7c,0x9d,0xd7,0x28,0xbd,0xd4,0x5d,0xf8,0x59,0xc7,0xbd,0xe3,0x0a,},"\x35\x82\xee\xb0\xd3\x71\xdf\x38\x5d\xe8\x8b\xaa\xd3\x80\xcb\x0c\xdb\x60\xea\xb2\xba\xeb\xb3\xc7\x98\x37\x75\x3d\x08\xe1\xcb\x78\xc0\xbd\x76\xdd\x11\x04\x45\x49\x56\xd5\x71\xce\xb7\xe6\xb5\x71\xa5\x23\x68\x35\xd7\x84\xb5\x0f\xf6\x60\x57\xb1\x35\x95\xe7\xd0\xc8\xf2\x5d\x08\xae\x8b\x54\xb6\x12\x3b\xa0\x81\x51\xac\x7d\xb0\xc5\x6a\x98\x0f\x7f\x0b\xb3\x9a\x54\xb4\x37\xf5\x48\x51\x97\x99\x86\xab\x13\x67\x83\x5e\x5c\x4f\x3a\x3b\x3d\x76\x0d\x38\x27\xe7\x6c\x56\x8a\xe7\xae\xbb\xb6\x12\xe7\x75\xbd\xde\xcc\xd3\x34\xac\x6b\xcd\x32\x53\xab\xc2\x9d\x4b\x7c\x3f\x10\x36\x26\x66\xf6\xae\x75\x08\x03\x70\xa3\x6c\xba\x55\xdb\x3a\x91\xcb\x57\x89\xe4\xd6\xf9\xef\xea\x4d\xf1\xdd\x77\x30\xa5\xe2\x79\x60\xd5\x3b\x51\x21\x94\x8c\xce\x5a\xf6\x53\xff\xf1\xd5\xb4\xe5\xb0\xa8\x8c\x71\x8c\x49\xb3\x1c\x79\x3d\x88\xc1\xcc\x45\xab\x8d\xa2\x9d\x05\xe9\x06\xcd\x05\x94\xb5\xf6\x63\x8c\x8e\xc3\xf1\x76\x0b\xa4\x23\xb5\xab\x1d\x08\xa5\x87\x70\xaf\xb0\xf1\x39\xab\xd3\x49\xc1\xbf\x16\x0d\x89\x02\x23\x9c\xe2\x4f\x19\xb4\xe1\xbe\x09\x5f\x7e\xd1\x65\xf3\x93\x1e\x3c\xbc\xc3\x07\xe9\xfc\x5c\x65\x80\x31\x22\x8e\x55\xcb\xbe\xec\x0d\x0b\xcf\x8f\x69\x51\x54\xa9\xee\xd1\xbe\xf3\x52\x28\x78\x9b\xfc\x0d\x23\x8b\x83\x72\xd3\x18\x32\x8c\x13\x39\xfe\xa0\x88\x14\xdb\x86\x21\xab\xca\x3a\xeb\x82\x09\x8b\x5a\xa8\x7b\xb9\x8f\x5e\x40\x52\x2a\x08\x88\x53\x2c\x17\x48\x45\x3d\xb2\xd2\xb3\x94\x3e\x4a\xbb\x31\x2d\xe3\x19\xae\xc4\x8c\xc1\xc9\x47\x75\x97\x29\x53\xfb\x64\x96\xb8\x16\x89\x37\x62\x35\x10\xcd\x48\xc8\xb2\x47\x95\x6d\x31\x68\x48\x6c\x17\x6a\xe7\xa4\xcb\x38\x4e\xac\xfd\xab\xfa\xdd\x9f\xba\x30\xa2\x3b\x81\x1b\xd7\x79\xf3\xcb\xa5\x43\x38\xc2\x8b\xb3\x38\x22\x38\xed\x3b\x8d\xd2\x1b\xea\xb2\xf5\xca\xde\x28\xc5\xe0\x9b\x31\xa4\x54\x80\x8a\x53\x48\x12\x2e\x3a\xe3\x81\x22\x96\xf7\x86\x9c\x38\x65\xc3\xc9\xd8\xfe\x18\xbd\x81\x2f\x2e\x60\xe9\x14\x97\x5c\xfe\x1b\xef\x8d\xbb\x80\x97\x00\x6f\x0d\x7c\xf3\xfc\x15\xeb\x95\xc2\x78\x54\xb1\x43\x12\xb8\x8d\x52\x80\x15\xaf\x69\xfb\x75\x05\xb8\xf3\x27\x03\xf6\x4e\xb1\xc9\x58\xf0\x46\xdd\x25\x12\x42\xf8\xbe\xa7\x46\x7f\xc7\x29\x1d\x09\x5e\x96\x96\xe1\x1a\xa4\x5a\xbe\x79\x24\xe8\x56\x35\x15\x35\xaa\x07\x73\xd3\xd9\xe6\x1c\xc9\xa2\xd8\x9b\x5b\x07\x74\xd7\x64\x5e\xe1\xaf\x7e\xb6\xfc\xd4\x40\xbc\x69\xd4\x3e\xde\xaa\xf9\x35\xfd\x2a\x52\x95\xac\x19\xa9\x7d\x70\xaf\x92\x98\x83\x0f\x81\xc0\xa5\x09\xf2\x42\xf4\x73\x37\x24\x78\xfa\x58\x79\xfb\x2c\xb8\x51\x10\x80\xfc\x2e\xcd\x82\x59\xb8\xc3\xce\x9e\x8b\x64\x07\x61\xdc\x79\x27\xc3\x2e\x7f\x5b\xae\x97\xa8\xb8\xac\x93\x56\x62\xe5\xf4\x5d\x14\xca\xd6\xd3\x4a\xff\xc9\xa1\x94\x14\xc4\x56\x6f\x45\xf9\x77\x39\x67\x10\x89\x4c\x53\x99\xed\x44\x80\xf1\x8e\x90\x95\x7f\xaa\x76\xcc\xb5\x12\xa2\xd0\x75\x73\x05\x8a\x95\xb4\x2f\xe1\x81\x02\x49\xd1\xc8\x5e\xc4\x31\xa0\x49\xd1\xae\xcb\x0f\x11\x83\x79\xbd\xc3\xf1\xee\x49\x0b\xc8\xa0\x54\xc3\x2c\x3d\xac\x76\x59\x96\x6c\xdb\x66\xf9\x95\xac\x40\x3d\x5e\x79\xeb\x6b\x25\xb3\xf3\xf6\x5a\x6c\xee\xc2\x20\xd6\x6c\x05\xf8\xa8\xa9\x8b\x80\x79\x9b\xa4\xf2\xc6\xdb\xbb\x4d\xfb\x58\x62\xc9\xa4\x6b\xca\x01\x3e\xbd\xfa\xba\x74\x94\xa3\x0c\xe1\x46\x06\xaf\xc0\xb0\xf9\x93\x14\x3f\xed\xee\x78\x96\xd9\xa6\xbb\x81\x49\x91\x66\xed\x02\xe9\x41\x86\xaa\xf3\x21\x87\xae\xb6\xe2\x82\x50\x1b\xca\x43\xb5\x7b\x7e\xfa\x09\x39\xc9\x34\xbc\x8f\xbb\xd2\x6c\x44\xb6\x18\x33\x5a\x35\xc6\x92\xff\x99\x6a\x5b\x95\xd3\x27\xdf\x9b\x2a\x66\x21\xb3\xb0\xf1\x90\xdb\x1f\x36\xd9\x11\xd1\xa6\x63\xa4\xeb\xf9\xa2\x85\x4b\xb4\xf4\x06\x10\x95\xb6\x98\x12\xc8\x2c\x2f\xfe\x3f\x92\xe9\xb4\x4d\x2e\xa6\x31\x69\x88\x1c\xae\x84\x53\xd6\xee\xf7\xcf\x69\xc2\x5a\x28\xb3\xf8\xdd\xc7\x01\x48\xef\x26\x72\x1a\x3c\x1f\x2e\x62\xd9\xd1\x0c\xea\x42\xfc\xa3\xfa\xcd\x74\x67\x3a\x4e\x7f\x33\x50\x73\x64\xaa\x28\x6c\x0f\x38\xd7"}, {{0x82,0x3f,0x0c,0x29,0xfb,0xfd,0xd3,0xd1,0x82,0x8f,0x30,0x55,0xe9,0xec,0x01,0xff,0xd1,0xb5,0xa3,0x75,0x11,0x8d,0xdd,0x7e,0x4e,0x0c,0x43,0x71,0x9f,0x57,0x3f,0xf7,},{0x73,0x12,0x5f,0xc8,0x3a,0xbb,0x8b,0x7c,0x65,0x85,0x59,0xfc,0x12,0x73,0x93,0x23,0x1d,0x03,0xca,0x58,0x46,0xe0,0xc8,0x81,0x18,0xd1,0x3d,0x55,0xca,0x44,0x78,0x9d,},{0xfa,0x74,0x7b,0x6f,0xe3,0x38,0x1a,0xd6,0xbc,0x82,0xa9,0x56,0x43,0xc1,0xf4,0xa2,0x0b,0x76,0xba,0x73,0xbf,0xf0,0x0e,0x63,0x5d,0x64,0x20,0x2d,0x8b,0x0d,0xf0,0x3d,0xbc,0x56,0xb0,0x13,0x8b,0x3a,0x6d,0x41,0x98,0xff,0xaf,0x58,0xcc,0xd3,0xd3,0x88,0xed,0x25,0xeb,0xcf,0x77,0x04,0x43,0xe4,0x1e,0x9d,0x21,0x47,0x95,0x0a,0x30,0x0b,},"\x80\x2c\x39\xce\x7f\x2a\x50\xbd\x81\x62\x2a\xdd\x0d\xf4\xe0\xfe\x03\xec\x3d\x2d\x30\x5a\x45\xa6\x16\x52\x71\xed\x79\xad\xd2\x43\xb9\xa0\x0e\x52\x18\x31\x92\xfe\xb2\x4c\x4f\xdb\xd2\x2c\x80\x7a\xe1\x00\xef\xcf\x16\x5b\x9c\x99\x61\x94\xe0\x0f\xa8\x17\x76\x5e\xa9\x4a\x03\x07\x0e\x48\x66\x86\xb4\x45\xfc\xb2\x63\xcc\xfe\x1f\x58\x62\xf3\xb8\x4b\x10\xf3\x90\x08\x0b\xfc\xae\x44\x7a\xe0\x06\x97\x42\xb8\x61\x8f\xa9\x57\x5f\x7e\x63\x7a\xd5\x4e\x83\x4c\xaf\x03\x94\xd7\x45\x03\x2c\xe1\xe2\x55\xc0\x27\x32\x50\xf1\x50\x4b\x37\xa0\xad\xd9\x4a\xa2\x45\xc7\xde\x52\xc8\x0e\x05\xd6\xe0\xa9\x6a\x14\x41\x05\x43\x82\x6a\x49\xe9\xb9\x45\x62\x6d\x4e\x89\xf5\x50\x27\x16\x3d\x4b\xd6\xd0\xe9\xbd\x1a\x24\x77\xf6\x7d\x3d\x56\x68\xa4\x2e\x94\xd8\xb6\x11\x93\xd8\x21\xe0\xd1\xb2\x30\xfc\xad\xc5\x36\x13\xb7\x5b\x02\xcf\xb8\x15\x84\x56\x07\x7e\xbd\xf5\xa5\xf0\x0c\x3b\x5b\x18\x63\x70\xca\xfe\xc4\xa2\x1c\x69\xdc\xe1\xf0\x1e\xfe\xf2\x3c\x37\xab\x90\xf8\x58\x23\x8a\xef\xbe\x21\x2b\x55\x6d\x2f\x07\x34\x06\x55\x9f\x1a\x51\xd8\x4e\xff\xfd\xce\x07\xb0\x0d\x01\xbb\xf3\x37\x71\xcc\x12\xc9\x60\xac\x89\x36\x5a\x9c\x82\xc5\x23\x43\xf7\x60\x33\x81\xb8\x90\x23\xc1\xa6\xe7\x02\xa5\xb1\xe4\xbd\x19\x1e\xa6\x97\x0b\x5e\xa4\x51\xea\x05\xb5\x9b\xf8\x3e\x55\xf2\x9a\x1f\x80\x32\x12\xbb\x2e\x58\xf0\x61\x63\x33\xd9\x11\x47\x08\x52\x9e\x8b\x6c\x60\x81\xde\xeb\x7c\x29\x9a\x5a\x2a\x53\xcc\xd2\x4e\xd5\x8f\xfb\xfe\x50\x3d\x80\x61\x4a\xdb\x05\xca\x11\xcf\x29\xde\xd0\x09\x04\xea\x12\x39\xf8\x2b\xa4\x0c\x79\x3e\xbc\x33\x97\x75\xf8\xb0\xfe\x39\x01\xf5\x48\x2e\x31\x0c\x79\x3c\x6e\x2c\xf0\x1d\xc1\x57\x72\x7a\xf2\x38\xf4\x9c\x98\x62\x80\x4b\x04\x75\x51\xfd\x88\x6f\x4a\x48\x99\xe2\x2a\x6a\x65\x70\x11\x17\xa3\x85\x80\x55\xbb\xfe\x96\x6e\x37\x0e\x73\x3e\x17\xef\xad\xa2\x85\x9f\xd8\xff\xa9\xe0\x1f\xce\x56\x06\xa2\x55\x36\x76\x78\xf4\xbd\x4e\x21\xe5\xda\x0f\xef\x30\x75\x7f\x34\xe3\x89\xf7\x6b\x7d\x57\xc4\xe4\x10\xa0\x02\xe9\x00\xe4\x8f\xb2\x18\xc8\xf2\x77\x8f\x14\x8f\xee\x56\x96\x5f\x5b\x47\x3e\x25\x25\x6c\x23\xa7\xaf\x19\x83\x42\xcf\x3e\xf0\x2b\x84\xdf\x2c\xd5\x80\x0a\x46\x1c\x1b\x07\xbd\xa2\xf4\x26\x28\xa6\x8a\xd2\x9d\xbb\x82\xa4\x70\x96\x7d\x73\x02\xc9\x93\xb2\x34\x13\x6e\x5b\xf2\x55\xe6\x24\x8b\x10\x2c\x2b\xff\xb2\x01\x72\x37\x1f\x1c\xa3\xe1\x0b\x08\x10\xe8\x64\x95\x03\x54\x6d\x9a\x73\x1c\xf1\x9b\x08\x33\x57\xd4\xcf\xec\xc8\x9b\xed\xb5\x35\x06\xfe\x19\x9b\x67\x03\x91\xa6\x20\x06\x9a\x30\x81\xf2\x53\xb4\xd7\x90\x88\x0a\xa2\x3b\x53\xe9\x7c\x75\xdc\x0c\x36\x05\x40\xe5\xb0\xa3\xef\xb1\xac\xcf\xfd\x13\x74\x14\xff\x84\x23\xd5\x46\x46\xfc\x56\xba\x5f\x53\xbd\x84\xc7\x26\x7c\x2f\x7e\xe3\xe3\x76\x07\x54\x41\x54\x36\x5f\x9f\x85\x08\x1d\xd7\xd2\xee\x75\xd3\x02\x27\x5c\x79\x9e\xf2\x42\x7c\xa6\x49\x63\x55\xdc\xda\x1d\x44\xe0\xd9\x77\xbf\x68\xdb\x30\x06\x50\x0a\xe3\xf4\x00\xd6\xa8\xc7\xcf\x47\x05\x7d\x4f\xc8\x7e\xee\xcb\x02\x11\x6b\x73\xee\xd6\xce\x1f\xcc\xef\x6e\x8f\xb8\xae\xa3\x63\xb2\xf6\xf5\x32\x2a\x5f\x07\x53\xf4\x58\x99\x53\x76\x46\xd5\x86\x51\xbe\x90\x37\xbf\x91\x42\x3c\x29\x86\xf5\xcc\x2b\xcb\xce\x4f\xae\xc9\x03\x49\x8b\x40\xfc\x2d\xea\xb6\x60\x3d\x6e\xea\x58\x5d\x27\x20\xd2\x1b\xb2\x72\x2b\xc0\x5b\x35\xae\xd2\xbc\xc0\xe8\x04\xfe\x9d\x23\x9f\xaf\xda\x7d\xda\xfe\x1d\x78\x60\xab\xb0\xfb\x28\xf4\xbf\x2b\x1f\xbb\x62\xa7\x86\xe4\x55\xbe\x02\x4b\x19\x3b\x78\x30\xbe\x0d\x55\x8f\x02\xc9\xf3\xae\x31\xdc\x10\x7e\xe9\x42\x1d\xc5\xf0\xb0\xf8\x94\x02\xb7\x1a\x45\x81\x40\x15\x36\xbc\x47\x30\x85\x06\xd9\x69\x39\xa2\x06\x36\x27\x44\xe2\x7d\xde\x94\x4f\x40\x96\xa1\x2b\x5f\x63\xda\xb6\x4d\x04\x14\x84\xd3\xfd\x91\xa6\x2c\x2f\x0e\xf9\xae\x78\x74\x22\xeb\x27\xfe\xd0\x80\x2e\x25\xf9\xbc\x77\x5c\x49\x15\xa8\x37\xfe\x3e\xb7\xb9\xd5\x84\x3e\x4d\x82\x10\xc6\xb4\x94\xb6\x12\x81\x63\x7a\x6b\xe3\x20\x52"}, {{0x65,0x67,0x66,0x33,0x37,0x42,0x14,0xc4,0xac,0x4b,0x7b,0xce,0xa9,0xf1,0xcc,0x84,0xb1,0xb7,0xe7,0x94,0x11,0xe3,0x10,0x52,0x5a,0xce,0x38,0x5f,0x45,0x66,0xc1,0xd5,},{0x0e,0x6e,0xc5,0x80,0x1d,0x8b,0xd6,0xb1,0xeb,0x42,0x14,0x21,0xa1,0x40,0x8f,0x13,0x4c,0xf7,0x12,0x33,0x8e,0x0f,0xfc,0x24,0xcd,0xcc,0xdc,0x4f,0x7f,0xa3,0x1d,0xbe,},{0xe0,0xb8,0x67,0xc9,0xdb,0xda,0x35,0x32,0x34,0x33,0xc0,0x46,0xe0,0x83,0x0c,0x25,0x1b,0x43,0x46,0xc5,0x39,0x59,0x72,0x28,0x6b,0x3a,0x72,0x31,0x0e,0xd4,0x52,0x6e,0x54,0x5d,0xc0,0x9d,0x39,0x18,0xf2,0xeb,0x99,0x20,0xbc,0x9b,0x24,0x1e,0x90,0x50,0xd8,0x48,0xd3,0x83,0x02,0x88,0x65,0x15,0x91,0xf9,0x36,0xd3,0xba,0xe4,0x53,0x01,},"\x9d\x62\x2c\x20\x67\x87\x69\x40\x93\xc6\xf2\x9f\x93\x61\x9f\x21\xbb\x64\xc0\x39\x41\x6d\x20\xdc\x70\x8a\x08\x4a\x9d\x2e\x49\x0c\xf5\x65\x8e\x13\xd6\x2c\xb0\xd2\x1e\xab\x00\xe4\x2d\x85\x1b\xc6\xec\x75\xda\xf4\x05\xd2\x37\x32\x46\xee\xa4\x15\xe8\x66\x29\x1b\xab\xf7\x64\x97\x68\x0a\xaf\x04\x42\x5a\x42\x55\x2b\x10\x7d\x58\xcd\x18\x56\x1c\x8c\x94\x83\xf7\x40\x74\x4c\xbf\xa6\x05\x4c\x1b\x12\x6f\x5a\x76\x65\x9a\xc1\x9d\xdd\xad\x4a\xb5\xa0\x91\x55\xd8\xc0\x50\xb5\x35\x4e\x06\xa4\xdd\x3e\xe3\xa6\xf9\xc9\x1e\x8b\x4c\x7a\xf2\x74\x96\x64\xe7\xab\xe9\x70\x61\x58\x9e\x15\x3c\x58\xe2\x7c\xf2\x99\xa2\x5f\x2b\x53\x0c\x06\x07\x31\xec\x0f\x43\x66\xbd\x1d\xeb\xeb\x4d\x4e\x91\x2e\x76\xe5\x08\x53\x4d\x43\x3e\xc4\x8f\x96\xb6\x2e\x15\x0d\xe9\x39\x63\xa1\xb3\xe6\xc8\x09\x1b\x49\x5a\x96\x51\x8c\xe3\xd3\xb9\xa8\xdb\xdc\x2a\x13\xfd\xd0\x77\xf2\x23\x1d\xe8\xd7\x6f\x56\xd9\xab\x1c\x2f\x9e\xfa\xbc\xe4\x63\x83\x64\xf8\xfb\x2a\x2c\x68\x3c\xa8\x19\xb7\x03\xab\x45\x3b\x11\xd3\x7a\x69\xfa\x4b\xcb\x80\x23\x98\x08\x34\xf7\xb9\x02\xad\x18\x19\xfc\x02\x92\x12\xfd\xea\x0a\xbf\x11\xde\xc8\x8c\x55\xd6\x8e\xf8\x7a\x26\xdb\xb1\x5d\xc3\xd3\xdf\xbc\xdd\xdd\x5e\xd7\x1b\xe8\x6f\x32\xc7\x6e\xe2\x22\x1d\x92\x43\x68\x3d\xf9\x51\x65\x64\xb2\x6b\xab\x5c\x84\x5d\x4d\xfe\x0a\xdc\xc7\xcb\x9f\xe1\xee\x2c\x05\x1a\xf5\x90\x8c\xe0\xcc\x3a\x90\x90\x4d\xbc\x0d\x36\x80\xed\x49\x92\xf4\x6c\xe2\x5c\x2e\xe8\x51\xc4\x14\xf0\x18\x7d\x89\x3e\x5c\x3b\x01\x89\xa7\xbb\x68\x93\xd6\x83\xf5\xe3\x39\x4c\xc0\x46\x29\x9a\x16\xa1\xc1\xb5\x69\x59\x33\xa8\x9b\xb1\x30\x30\x85\x5b\x81\xb3\xc7\x46\x85\xf7\x19\xde\x01\x60\x57\x5a\x0f\xf0\xa9\x1f\xd9\x43\x47\xb8\xbc\xbe\x12\x5d\x1d\x3f\x9c\xe7\x72\xa8\x12\x6e\x00\xf5\x63\xb3\x18\x96\x56\xd5\x52\x2c\x18\x7a\xb8\x31\xa7\xad\xe7\xac\x06\xfd\xca\xc7\xf1\xd4\x58\x82\xe5\x1f\x9b\xf5\xb4\x4a\x2d\xab\xa4\xa5\x3d\xbb\x31\x97\x0b\x4a\x0f\x12\x72\xfe\x14\x08\x7e\x0c\x3c\x7e\x45\x42\x31\x2f\xe7\x4d\x76\x7f\x21\xe7\xea\x48\x7d\x52\x84\x28\x4f\x46\xf2\x0f\x32\xc5\xb1\x6e\x1e\x0a\xc8\xd7\x96\xab\x2f\x80\xb3\x44\xe7\xa8\xd8\x4d\x5d\xe8\x23\xa5\x08\x97\x75\x2d\xc5\x49\xa4\x8f\xc1\x0b\xcd\x43\x6a\x7a\x93\xe9\x7c\xd0\x5d\x78\x30\x13\x8f\x32\x38\x79\x68\x0c\x34\x3c\x16\x46\x7d\x26\x4d\x74\x9b\xf4\x5e\x40\xf3\x9f\xbc\x3a\x00\xc4\x3b\x00\x69\x3b\x01\x56\x76\x8f\xf2\xe3\xf8\xad\x9e\xb6\x40\x50\x22\xf5\xca\xda\x66\x94\xe8\xa3\x3c\xdc\x59\xc6\x67\x3c\x44\x11\x72\x44\xeb\x03\xfd\x7f\xd6\x75\x93\x0c\x29\x4e\xdd\x29\x40\xf5\xf1\x80\x95\x3d\x91\x0c\x55\x48\x5b\x20\x57\xae\x0c\x93\x02\xf4\xa8\xe8\x31\xa5\x53\x0e\x3c\xbb\xf6\xf4\x72\x22\x40\x83\xa9\x52\xa8\x39\x0a\xb0\x0d\xc0\xf6\x9d\xfd\x88\x0e\xea\x2d\x73\x9d\x21\x8d\x6a\x66\xf2\x37\xf1\x0d\x44\x01\xaa\x75\x8f\xf8\x12\x0c\x0a\xe2\x76\x61\x27\x84\x90\x24\xf5\xa4\xcc\x57\x4a\x5b\x02\xb9\x35\x96\x68\x12\xcd\x1f\xb6\xd7\x9d\x0c\x4f\x59\xff\x80\xf0\x35\xa0\xb1\x09\xcc\xcb\x22\xfb\x08\x53\x5b\x87\x41\x49\xed\xf2\xa0\x97\x0c\x14\x88\x84\x27\xd0\x7d\x1e\xaf\xa6\x84\xa6\xd3\x45\x4e\x49\xb2\x25\x18\x4c\x6b\x99\x3e\xc8\xdd\xb8\xb5\xa3\x5e\xe4\x5f\x87\xf6\x92\x66\xd4\x90\x96\xa3\x17\xd8\x6a\xde\x27\xf4\x52\x9f\xe7\x23\x64\xd0\xb9\x58\x00\x72\x99\xd9\xde\x87\xd6\xff\x9f\xb0\x4d\x57\x3a\xea\x46\xba\xc8\xeb\x76\x47\x52\xeb\x46\x5c\xaa\xab\xa6\x89\xa6\x46\x0c\x11\x07\x30\xbd\xd0\x8b\x16\x89\xde\x7b\x05\xde\x59\xaf\x9f\xe2\x44\xac\x36\x3e\x95\xc9\x8b\x66\x93\x59\xaf\x90\x31\xa3\xa9\x3b\xa6\x31\xab\xf1\xf6\x1d\x20\xef\x7f\xc6\x88\x3b\x48\x40\xfc\x92\x67\x12\xe1\x3d\x87\x4b\x72\x2f\x6a\x79\xb1\x60\x70\xc0\x31\x13\x25\xe9\xa7\x0f\xcd\x86\x91\x6c\xfa\x1d\xa7\xf9\xd0\x56\x3a\x22\xfe\x9b\xfe\x85\x4b\x0c\x18\x6c\x86\x63\xb0\x61\xb6\x5b\xc0\x71\xe8\x39\x93\x8d\x8f\xdd\x7c\xf8\xf6\x95\x2a\x64\x67\xfa\xd8\xe5\x84\x90\xed\x2b\x26\x81\x33\x01"}, {{0xd2,0xed,0xed,0xcd,0x85,0x32,0x06,0xcb,0xf5,0x9b,0xd7,0x4a,0x25,0xa3,0x03,0xfa,0x2d,0x6c,0x39,0x36,0xbb,0x48,0xeb,0x42,0xf6,0xd9,0x00,0xcb,0xe8,0x07,0x72,0xbe,},{0x22,0x44,0x11,0x1e,0x2e,0x76,0x9e,0xab,0x81,0x87,0x1e,0x06,0xc5,0x80,0x17,0x8c,0x23,0x5c,0x7b,0xf4,0xa5,0x2d,0x2e,0xcc,0xe1,0x18,0x87,0xa9,0xb4,0x6c,0x45,0xc8,},{0xbe,0x3c,0x2b,0x56,0x7f,0xe8,0xc2,0x08,0xc9,0x8e,0x71,0x97,0x11,0x7e,0xb0,0x1b,0x3c,0x19,0x7b,0xdf,0xc8,0x58,0x56,0x2d,0xc5,0xcd,0x90,0xf8,0xe2,0xc0,0x35,0x70,0x42,0x30,0x39,0x95,0xba,0xba,0x2f,0x40,0xb7,0x34,0x5c,0x56,0xdb,0x0b,0x46,0x25,0x58,0x0a,0xa8,0xdc,0xc4,0x8d,0xf6,0x01,0x9d,0x23,0xa8,0x38,0xea,0x71,0x72,0x02,},"\x80\x70\xbc\x0d\xb0\x89\xa5\x92\x54\x46\x01\x9b\x7e\x40\x3c\x74\xec\x78\x90\x3e\x4b\xd5\x4b\xc1\xd0\x8a\x54\xa6\xf0\xed\x75\xa8\x5b\x76\x3f\xf5\x4d\xc3\x3a\x26\x00\xcc\xb4\x57\xfd\xba\xea\xe5\x48\x47\x7f\x6d\x69\x47\xae\x26\xde\xb7\x1e\xac\xd1\xd2\xd6\x22\x82\xa0\x83\x84\x3b\xe4\xe5\x93\x1d\x91\xc9\x3b\x62\x82\xc5\x88\x07\xce\x8f\x0d\x88\x0b\x14\x38\xda\xd8\xfd\xcb\xa8\x61\x2d\xf7\x3b\x9f\xaf\xf3\xa9\xf7\xdb\x30\x05\x25\x05\x36\xaa\xbd\x98\xae\x02\x7a\x89\x5e\x10\xb5\xcb\x7b\x69\x87\x5c\x0f\x39\x93\xaf\x24\x51\x92\xf4\x39\x3e\x9c\x4d\x34\x05\x74\x6e\x31\x1d\x3a\x91\x44\x7f\xcd\xbd\x73\x06\xb6\x02\x0c\x93\x3b\xba\xb9\xe3\x9d\x13\x49\x16\x25\x03\x5c\x9c\x63\x6e\xfa\x17\x39\xc3\x58\x87\x10\xa8\x79\xd9\xe3\xce\x17\x64\x61\x6f\x10\x82\xe8\xdf\xf5\x75\x59\xc3\xf5\xa5\xd7\x6d\xd3\x01\x12\x4f\xa4\x89\xfb\x94\x9e\x9e\x03\x9d\xd4\x62\x1b\xda\x60\xf0\xb8\x6b\x31\x1e\x78\xed\x0a\xb3\xb5\x28\x96\x50\x44\xb2\x3d\x78\xee\x2f\x81\x06\x1f\x8e\xdb\xd6\x92\x99\x33\xd1\x8c\x02\x07\xde\xc4\xb5\xb6\xb2\xfa\x4a\xca\x27\x47\xcf\x5b\x11\x0d\xf0\x0b\x0c\x98\x27\xbd\xb3\xd9\xdb\x2c\x7b\x03\x28\xd4\x0d\x99\xe1\xf6\xb2\x28\xe4\x0d\xad\xae\x78\xae\xda\x02\x89\xb6\xa2\x3d\x4e\xb5\x83\x70\x88\xe5\xd8\x84\x13\x63\x2c\xcc\x22\xe2\x1a\x73\x76\x8c\x67\x32\x01\xe9\xa8\xd8\xdc\x6e\xb6\xf7\x39\x7f\xed\xbd\x39\x8d\x26\xf9\x69\x2c\xa7\x2f\x6d\x6c\xf0\x56\xaa\xac\x50\xac\x2f\x3b\x26\x6d\xbe\x5e\x7b\xe7\xa0\x24\x77\x45\x78\xea\xd5\x85\x24\x5d\xaa\xa7\x3e\x0a\xaf\x83\x3c\x07\x0b\xa4\xb2\x04\x4c\xcb\x5e\x5c\xd1\x6f\x9c\x0a\xd9\x2e\xa8\x44\x80\x55\xdd\x82\x8c\x79\x93\x5a\xa6\xc0\x74\x1f\x9e\x2b\x81\x03\x24\xfd\xc6\xe6\x1e\x84\x2f\x94\x57\x22\x68\xbf\x7d\x5a\xdf\xa7\xab\x35\xb0\x7f\xb1\x9e\x78\x15\xa8\xaa\x5d\x81\x13\x01\x30\xac\x5c\xda\x8a\x47\x51\xee\x76\x03\x8c\x0a\x6b\xc2\xfa\xba\x4c\x49\x7e\x62\xb9\xf1\xf1\x94\xb8\xa5\x99\xb0\x77\x01\x81\x4b\x6d\xfb\x7d\x84\xbc\xdd\x5b\x7b\x5b\xc2\x24\x9f\x1d\x38\x45\xef\xf9\xef\x8c\xc7\x32\x85\x35\xd7\x0d\x53\xc7\xaa\x0c\x73\x05\x90\x1d\xe7\xc4\xed\x2f\xe1\x83\x82\x65\xd4\xa4\x17\xb8\x76\xad\xbd\x88\xeb\x93\x3f\x27\xc9\xaa\x48\xc8\xc7\xe3\x4e\x48\x14\x7c\xcf\xfb\x2f\xb6\x1a\x34\x8f\xea\x13\xef\x67\xcd\xf2\xe0\x39\xe3\x3f\xd8\x9e\x2c\x1a\xd2\xa4\x25\x4e\x3b\xf7\x48\x45\x2a\xa8\x3e\xfe\xca\x46\xe7\x80\xed\xe1\xd1\x3f\xf4\xcc\x5e\x7d\x01\xed\x45\xeb\x8c\x74\x81\x8d\x48\x60\xaf\x47\x59\xa8\x3e\x14\x88\x96\xab\x68\x73\x43\x95\x76\x0e\x00\x14\x6b\x79\x3c\x3e\x72\x89\x8a\xa0\xb3\xc5\xe0\xc1\xd3\xfd\xf1\x21\x58\xd2\xe8\xff\x11\x23\xa3\xa0\xc6\x4c\xf6\x37\x4a\x7f\x44\xf1\x1a\x57\x5e\x48\xa3\x79\x18\x1b\x30\xa4\x86\x5c\xfd\x02\x2a\xa9\x83\x27\x56\x35\xce\x4f\x2c\xc4\x0b\xfe\x06\x60\x67\xec\x4f\xe2\x41\xfa\x04\x7b\x55\x27\x0a\x1a\xd0\x77\x6c\x5f\x96\x86\x10\x14\xcb\xf4\x0a\x04\x32\xc5\x59\xf2\x2d\x79\x34\x2b\x79\xf8\xe7\x04\x2d\xcc\xfb\x1c\xf5\x0f\x83\x08\x5f\x80\x63\xfb\x18\x87\xed\x2d\xfc\x9d\xb7\xef\xc9\x6d\xaa\x0f\xf2\xbc\x4f\x52\x33\x5b\x02\x11\x2d\x16\x39\x2e\x13\x4c\x02\x23\xde\x45\x8f\xc0\x72\xcc\x22\xbf\x9e\x7e\xab\xc0\x62\x08\x18\x0a\x57\xe7\xce\x48\x05\xee\x4e\x0f\xc0\x15\x84\x09\x98\xfd\x56\x86\x44\xa0\x38\x6b\x3d\x8e\x7d\xda\x52\xab\xf6\x4f\x7d\xd0\x08\x68\xfc\x84\xf0\x36\xca\x8a\x78\xe9\xba\x81\x71\xca\x90\x26\x7c\x74\xe6\x15\x9a\xca\xc7\xaf\x5b\xf2\x37\x59\xab\xc5\x3d\x82\xe7\x93\xdb\x87\xfd\xad\xe1\x36\x33\x54\xff\xdc\xb0\xbd\x4c\xc9\x21\x3f\x5c\x84\x54\x45\xfc\x64\x9b\x2a\x1f\x32\x9f\x9d\x41\xd8\xa0\x31\xab\x46\xb4\x72\x16\x0f\x03\x43\x4b\x4b\x6b\xc5\xa4\x01\x52\x4d\x61\x79\xad\x66\xf9\xe2\x21\xc9\x06\x7f\xc8\x7f\xe4\xa7\x7e\x21\xe8\x02\x3b\x61\x69\xeb\xf1\x09\x0c\xd5\x56\xa9\xbe\x50\xb9\x18\x7f\xe4\x60\x7c\x59\x25\xe6\x0b\x41\x4f\x6a\x5c\xbf\x8a\xfa\x15\xed\x0e\xb3\x4b\x67\xb4\xc9\xc5\xd5\x4a\xdb\xe6\x40"}, {{0xb5,0x69,0xf7,0xc1,0xaa,0xdf,0x56,0xed,0x1b,0x5f,0xa1,0xb6,0xfa,0xd6,0x48,0xd0,0xdc,0x54,0x4f,0xf8,0xfc,0xd1,0x73,0x78,0x0d,0xe4,0x1a,0x7d,0x4d,0xe6,0x0c,0xb6,},{0x9e,0xff,0xa4,0xae,0xd9,0xc6,0x58,0xe4,0x34,0x60,0x71,0x43,0x44,0x68,0xa0,0xb8,0xa0,0x4e,0xcf,0x78,0x41,0x69,0x9d,0x63,0xe8,0x88,0x7c,0xe2,0x05,0x57,0x0c,0xea,},{0x2e,0x32,0xba,0x05,0x56,0xbd,0xe9,0x74,0xd7,0xa1,0x9b,0x3b,0x9a,0x1e,0x92,0xf1,0x83,0x92,0x4c,0x4b,0x74,0xc5,0xd7,0x51,0xb5,0xab,0x3d,0x00,0x79,0x67,0x01,0x6e,0xc0,0x3a,0xfe,0x91,0xd7,0x42,0xfb,0x22,0xb6,0x3e,0x5e,0x55,0xb2,0xfc,0xb6,0xc6,0x1a,0x46,0xe9,0xdc,0xe7,0xfe,0x9f,0xa3,0x0b,0xbf,0x66,0xae,0xf4,0xb8,0x5f,0x09,},"\x7c\x5a\xa4\xdc\x80\x78\xaa\x77\xe8\xb3\xb7\xfe\xe6\x10\x84\xcf\xad\x76\x47\x62\xf1\xef\x26\xd8\xde\xb7\xf2\xf3\xb1\x86\xdf\xc7\x72\x48\x75\x50\x19\x78\x45\xfb\xa2\xf4\xc2\x3c\x83\x5b\x9b\x58\xdd\x0b\x63\x5c\x64\x91\x35\x13\x7f\x24\x8f\x5e\xf7\x13\x56\x4d\xe3\xc9\x66\xef\xa5\xf6\xdb\x6b\xea\x9e\x30\x97\x07\x49\xf8\xe8\x72\xd8\xd7\xae\x45\x35\xb7\x5e\x17\x6e\xa0\x48\x9b\x91\x5f\x34\x71\xd8\x27\xeb\x5b\x44\x45\x86\x48\x8c\xfc\x3f\xa6\xa4\x50\x82\xda\xcb\x82\x64\x95\xe5\x0a\x3b\x5d\xc6\xbb\x93\x0a\x33\x1f\x30\xc3\x85\xbc\x3b\x24\xce\x70\xb8\x95\x96\xdb\x6b\xfb\x68\x7d\x99\xa5\x81\x98\x7c\xa8\x76\xea\x0e\x75\x76\x96\xb3\xfc\x03\x77\x9a\x65\x81\x30\xc4\x10\xb3\x44\xed\xac\xc4\x27\x7d\x44\x84\x54\x99\xd6\x78\xe1\x41\x4f\x15\xf3\x6e\x16\x63\x35\x18\x95\x69\xce\xf3\x56\x7a\xc2\xe3\xab\x82\x1c\x91\xc9\x32\x74\xf5\xc2\x8a\x5d\x1f\x7c\x1b\xf5\x09\x9b\x10\xf8\x4e\xcb\x13\xa4\xe4\x53\x8f\x66\x49\xbf\x74\xf7\x39\x4b\x70\x3e\xf5\x36\x49\xd8\x15\x16\xcb\x1d\xb5\x21\x41\x60\x65\xcf\x9f\x27\x6a\xb8\x0c\x93\x08\x89\x7a\x27\xdf\xe3\x7e\x5e\x14\x2f\x18\x19\xb8\xd3\x48\xdf\x50\xa0\x46\xa1\x28\x88\xe3\xb7\xf2\xdc\xc7\x0f\x52\x18\xd1\x5e\xbb\x9a\xa7\x29\x1a\x1a\x92\xac\x44\x5c\x51\xd3\xa5\x3d\xd6\x91\xef\xff\xcf\x5a\x01\xe8\x76\xa7\x2a\xa4\x81\xeb\x4f\x12\x1a\x07\x23\x97\xd8\xcc\x93\xbb\xc2\xc9\xa6\xc2\x8c\xc8\x9b\x11\xff\xc0\xe9\x10\xd8\x2d\x9d\x62\x98\xa3\x67\xa0\xe1\xe3\xe8\xc8\x65\xe4\x32\x6a\x31\x9b\x22\x66\x6e\x52\x9f\x19\x98\xf1\xb3\xc8\xef\xb5\xfc\x21\xcc\xe9\x70\x40\xfb\x62\x47\xda\xa0\x00\x0a\xc5\x55\x4d\x89\xe7\xb2\x71\x59\xdd\x0b\x18\x00\xb7\x60\xb7\x9c\x91\xef\x6e\x97\x0b\x1e\x6c\x5f\xf4\x24\x42\xb1\xb3\xae\x4d\x3c\x43\x9e\x08\xec\x2f\x6b\x94\x17\x73\x87\xca\x5c\x01\xdf\x6f\x07\xf8\xe3\x4d\x25\xed\xbd\x49\xd8\xb7\x4e\x31\xa5\xe6\x5d\xec\x1f\x87\x60\xfa\x22\xc0\x0e\x6f\xb1\xcd\x55\x5b\xe6\x8b\x0a\xb4\x35\x99\xf0\xb9\xf4\xa5\x4a\x7c\xcb\x06\x26\x83\x89\x5d\x5e\xf6\x6d\x24\xdf\xb1\x67\x8c\xb0\xd0\xe8\xc8\x01\xd8\xe5\xff\xe7\x9b\x91\x39\xfc\x96\xd1\x18\xeb\x39\xb9\xc8\xd4\x40\x44\x89\x32\x5d\x45\xb4\xa3\x20\x2b\xea\xdc\xa6\x6f\x83\x1c\x68\xef\xb8\x15\x94\x15\x81\x93\x0e\xad\x29\xfd\x5f\x21\x1b\x90\xe7\xa3\x9f\x0d\x4f\xf4\x8c\x62\xa5\x45\xe2\x8a\xc2\xce\x29\xbe\xdc\x35\x6d\x92\xfc\x00\x34\x71\x76\xd7\x76\x23\xe0\xe1\x80\x9e\xff\x3f\xe6\x2b\x75\xa7\xd9\xde\xb7\x27\xd8\x61\x72\xd1\x4e\xdb\xf2\x78\x9a\x57\x14\x3c\x69\x92\x5c\x91\x7d\x43\x3b\x46\x83\xb0\x69\x3b\x3c\xd9\xe7\xe3\x77\x99\x64\x10\x72\x7f\x5e\x6f\xb8\xf5\xcc\xd1\x86\x0a\x20\x29\x4e\xcf\x33\xfa\xf9\x7a\x1e\x0f\x85\xb7\x61\x44\x7d\x47\x61\xb9\x6e\x4d\xf1\xb3\x12\xbd\x41\x4c\xab\xcf\x49\x84\x97\xb0\xea\xd6\x7c\xd1\xe5\x90\x1b\xbf\x3a\x16\xa8\x89\x1c\xcc\xed\x8a\x90\x7d\xf8\x87\x26\x95\x2d\x4a\xb3\x70\xa6\xb7\xdf\x29\x42\xcf\x13\x61\x5a\x5b\xc1\x2b\x4e\x10\x6d\xc3\x01\x3c\x68\xb8\xfb\x90\x63\x99\xdf\x15\xf1\xaa\x90\xd5\x6a\xa9\x74\xb1\xd2\xb2\x8c\x1a\x84\x53\xb9\xbf\x07\x92\xa5\x1c\x97\xce\x8a\x12\xaf\xc9\x34\x1b\xb4\xc0\xc3\x7b\x12\xdc\xb1\x2c\x63\x94\x49\x77\x5d\x9a\xc5\xc2\xec\x49\x67\x3d\xa5\xaa\xf7\x49\x3e\xd5\xf1\xf2\x11\x6e\xae\xf7\x2b\xb7\xfb\x1e\x09\x3e\xde\x2c\x26\x31\x7f\x4f\x4b\x6a\xd5\x85\x34\x62\x05\xdf\x91\xa6\xe9\x6b\xc6\x6d\x30\x64\xbc\xe9\x52\x39\x8f\xfc\xe8\x80\x71\xed\x9f\xf2\x75\x0c\x65\xc0\xc3\x04\x12\x5a\xc2\xca\xdc\x4f\xef\x71\xa8\x18\x73\x24\x96\xa8\x4c\xa5\x74\xd4\x82\xd5\xa3\xbb\xa2\x0e\x16\xdd\x2f\xa2\x4d\x32\x70\xf6\xc6\x09\x92\xf7\xf6\x3e\x88\xf5\x2e\xff\x62\x22\x99\x8e\xb4\x41\x67\x27\x38\x43\x75\xf5\x9f\x00\xe4\x75\x12\xee\x46\x4c\x31\x84\xac\xea\xff\x3c\xcf\xb0\x6b\xd1\x5c\x18\x3c\x5e\x48\x59\x26\x28\x8b\x99\x7b\xfa\xaa\xec\xf6\xec\xbb\xf7\xd2\xab\xf4\x90\x6d\xf7\x6b\x12\x77\xc5\xf5\xa8\x7e\x68\x17\xb1\xc6\x36\xe9\x1e\xfd\x7e\xcc\xf6\x4f"}, {{0x32,0x34,0x65,0xd0,0x31,0x3d,0x10,0x01,0xa2,0x61,0xab,0xfd,0x44,0xfe,0x65,0xc3,0x8c,0x9a,0x00,0xca,0x0f,0x20,0x33,0x5d,0x65,0x53,0xde,0x49,0x26,0x99,0xfc,0x46,},{0xe2,0x2f,0x16,0xbd,0x4c,0xc7,0xe9,0x4c,0x46,0xba,0x31,0x96,0x1a,0xf8,0xc5,0x83,0xf9,0xd2,0x71,0x8c,0x68,0xf7,0x3d,0x85,0x06,0x9f,0x60,0x8e,0x15,0xba,0x87,0x66,},{0xda,0x3a,0xad,0xb3,0x43,0x60,0xb2,0xda,0x0c,0x26,0x54,0x2e,0xa7,0x1d,0xef,0xa8,0xa0,0xbf,0x7f,0xbd,0xae,0x3e,0xe9,0xe1,0x1c,0x84,0x08,0x4a,0xd0,0x5c,0xce,0x7b,0xa7,0xd9,0x4d,0xe2,0x5d,0x85,0x63,0x98,0x26,0x16,0xbc,0xdb,0x5b,0xb6,0x39,0x5f,0xac,0x4a,0x7e,0x84,0xbc,0x77,0xe2,0x1e,0xd3,0x6d,0xf7,0x5d,0xec,0x99,0x0b,0x06,},"\xbb\x10\x82\xe1\xcf\xdc\xd2\x9b\xfc\xa2\x46\x4d\x5c\xe4\x46\xb5\xba\x65\x4b\xa5\x8c\x22\x53\x8d\xa9\x26\xb8\x30\x3c\xab\xfd\x28\x4a\x7b\xd5\x99\x4a\x78\x6f\xa6\x6a\xed\xf0\xe1\x5f\x20\xc3\x82\xcd\xac\xf3\xd1\x45\x57\xff\x7a\x82\x67\xfa\x04\x67\x2c\xac\xab\x76\x70\x08\x65\x0a\xa9\xb4\xa7\xc9\x07\x1c\x47\x99\xf1\xff\xa4\x5c\xa4\xd5\x86\xe0\x20\x47\x44\x4c\x14\x23\x19\x43\x46\x7a\x3a\xba\xef\xa5\x39\x59\xda\x22\x6e\xb0\xc1\x53\x92\x01\x97\x60\x15\x96\x97\x74\x82\x93\xc0\x25\x56\x87\x83\x58\x8a\x39\x10\xe7\x8e\x5e\xa4\x27\xc4\x40\x7a\x89\x01\x06\x1b\x8b\x99\x2b\x82\xa2\xdf\x58\xc0\x4a\x1b\x2c\x5f\xad\x11\xc6\xb3\x79\x85\x6c\x2e\x0f\xef\x8a\x95\x0d\xe7\xe0\xfc\x22\x31\x03\x09\xe0\x8b\x13\x2b\x0c\xce\x4f\xc1\xec\xbf\x94\x57\x4a\x38\x8d\x4a\xe3\x66\x75\xd3\x29\x9a\x95\x15\x54\xeb\xf1\x80\xeb\x38\x1e\x1b\x5d\xf9\x77\xd9\x38\x43\x38\x91\xbc\x47\x8d\x76\x81\x85\x0b\x9d\xc9\xc5\xc7\x69\xd4\x05\xf5\xd8\x83\x9f\xc9\x73\x61\xd6\xcb\x30\x6c\x20\x30\x26\xcf\x2e\x2b\x3d\x39\x84\x9e\x1f\x4b\x12\x25\xeb\x25\xef\x8a\xcd\x40\xb0\x06\xf2\x0c\x64\x4d\xb6\x50\xc7\x5d\x38\xc0\xfc\xdd\x48\xf5\x98\xc7\xb4\xa6\x01\x06\xe6\x9e\x19\xcd\x71\x25\x89\xce\xdc\xcf\x50\x86\x4e\xa5\xf9\xe9\x5e\x01\xf1\xdd\x85\xc7\x51\x4f\x2c\x94\xb2\x83\x59\xde\x41\x32\xb8\x8c\x3e\xe1\xd1\x0a\x80\xa9\xfa\xdf\xb6\x90\xe3\xd8\x86\x41\xb3\x16\x8f\x0b\x89\x6a\xf8\x99\x0a\xdb\xf0\xe4\xf8\xe9\xd3\xf9\xd4\xcd\x31\x4e\x12\xc3\xbc\xe0\xcc\x87\x38\xe0\xcf\xc1\x90\x5b\xe5\xef\xa0\x71\xf7\x10\xb3\x2f\x8e\x58\x98\xc6\x0e\xb1\xbb\x8f\xee\xb7\x40\x00\x56\x0f\x41\xcb\x2e\xbc\x32\xb2\x60\x0b\x69\x80\xa2\xa4\x06\x4d\xfa\xa3\x79\x7e\xc4\x4c\xfb\x72\xd3\x79\xf8\x09\x73\x79\xca\xd6\x7e\xcd\xc0\xc3\x24\x14\xfa\x41\xc7\x2b\x1b\x9e\x4e\xdf\x55\x18\xcb\x39\xfe\x90\x92\xb4\x39\xaf\x3a\x4e\xbd\x5a\xfe\x79\xbe\xdc\x0e\xa8\xbf\x17\x47\x9a\x28\x21\xf5\xe9\xbd\x91\xd7\xf4\xaa\x5e\x38\x46\x99\x52\x37\x19\xb6\x95\x7f\x82\x36\x7c\xd8\x5f\xea\x9d\xed\x62\x36\xa2\x07\xc9\x4c\xb3\x73\xe3\x39\x3c\xb4\xfe\x11\xf9\x0a\x1b\x87\x79\xe4\xab\x4c\x34\x66\x13\x6b\xf2\x1e\x2a\xab\x78\xf7\xd2\x72\x6d\xb6\x41\x4f\xa5\xc4\xa3\xf7\x31\x3a\xd2\x11\x6a\x6d\x7c\xe4\x0a\xaa\x10\x01\xc2\x70\x4d\x5b\x05\xae\x54\xc7\xcc\x6f\x56\x72\x17\xf1\xa4\x7b\xfd\x0e\xe7\x38\xea\xea\x5e\xad\xb5\x37\x10\x75\xbe\x07\x6c\x87\x50\xae\xce\xfc\x41\x7e\xa7\xbf\xda\xac\x3c\xc3\x8b\xf1\x6c\xc2\x6d\xf7\x60\x0e\x3c\x7e\x8e\x43\x1f\x26\x76\xfc\x2a\x8c\x43\xa6\xa1\x43\x68\xba\x62\xbb\x32\x43\x9a\x06\xbe\xac\x38\xa0\x47\xb3\x74\x5e\x26\xf4\x07\xad\x82\x3d\x6a\xd1\xc0\xb6\xa4\x43\x41\xe1\x5f\xc9\xb3\x31\x21\x4f\xfc\x89\x69\x82\x11\xb0\x51\x33\xd6\xd3\x43\x3b\x5d\x59\xf7\xab\x4d\x10\x9e\x54\xe4\xc5\xd6\xf3\x2f\xcf\x72\x30\xfa\x4e\x25\x28\xc8\x61\xbb\x21\xcc\xc9\xe3\x10\xe9\x49\x7e\x07\x7e\xa6\x75\x51\x0d\xa7\x12\xb1\xa5\xdf\x57\x5c\x5d\x1b\xf7\x36\x2d\x07\x11\x80\x03\x9a\xec\xfa\xa5\xc8\x57\x3c\x24\xc0\xf4\xeb\xe8\x1c\x2f\x88\x9a\xed\x3d\xe5\xa0\x00\xbe\x12\xfe\x3d\x0a\xf2\xdc\x2c\xd4\x24\x0e\x31\x4a\x17\x6c\x55\x3e\xfd\x5c\xba\x79\x8d\x9f\xf1\xe3\xd4\xbd\x9e\x90\xbb\x81\x13\xe3\x84\x9d\x73\x5a\xfa\x4a\xf6\x94\x5c\xc5\x7d\x4c\x37\x8d\xb8\x4f\x20\x6e\xf7\xea\xb1\x1c\x63\x7a\x7f\x72\x60\xf1\x22\xa9\x7d\xff\x67\x47\xe9\xb4\xc1\x74\xed\x0d\x64\xf9\xef\xd7\xfc\xcc\xf9\x81\x51\x9e\xc5\x80\xa8\x18\x25\x47\xd1\x79\x68\xc4\x01\x51\xfd\xf6\xd5\x4b\xc5\x7a\x91\x15\xf0\x40\xfa\xb5\xc1\x00\xde\xb0\x39\x12\x2b\x7d\x2b\xfd\x98\xb6\xad\xf3\x8f\x42\xb2\x96\xea\x3b\x37\x8a\x90\x42\x59\xb7\x5d\x60\x70\x3b\x48\x40\xb3\xf5\xda\x09\x62\x0a\x54\x77\x62\x80\xe9\xca\x9e\x8c\xd9\x24\xae\xd2\xb5\xdd\x2b\x49\x83\x4e\x58\x1c\xae\xd5\x27\x1c\xd7\x8c\xe0\x8e\x4b\xba\x49\xb5\x9c\xd7\x7c\x1b\x62\x76\x64\x91\x48\xab\x72\x47\xf9\x7f\xc0\x13\x16\x35\xde\x47\x4d\x3c\x23\x49\x3c\xa9\x8d"}, {{0x60,0xff,0xdb,0xae,0x00,0x3f,0xa2,0x79,0x4f,0xca,0xbb,0xf8,0xf5,0xb4,0x16,0x44,0xfe,0x3a,0x7f,0x44,0xed,0x6c,0x83,0x41,0x93,0xda,0x07,0xa9,0xdc,0x5e,0x26,0x65,},{0x35,0xb5,0xeb,0x31,0xab,0x55,0x64,0x92,0x57,0x8b,0x3d,0xbd,0x6c,0xf1,0x68,0x7d,0x1f,0xdb,0x21,0x6a,0x72,0x58,0x18,0x07,0x96,0x63,0x48,0x2f,0x22,0x1c,0xe4,0x21,},{0xb8,0xf3,0xe1,0xf3,0x78,0x5a,0x2a,0x39,0xbb,0x08,0x6c,0xa4,0x65,0xc0,0xab,0xf0,0xa3,0xe8,0x74,0x43,0x22,0x5a,0xc6,0xe9,0x66,0xed,0x9b,0x45,0x31,0xc5,0x4a,0x89,0x4a,0x9a,0xbd,0x01,0xac,0x31,0xb8,0x57,0x57,0xfe,0x75,0x30,0x8c,0x95,0x94,0xff,0x65,0xf9,0x7c,0xdd,0x91,0xe8,0xd8,0xa9,0x3c,0xf1,0x2b,0x9e,0x6d,0xbe,0xe9,0x0b,},"\x3f\x8f\xf2\x0b\xb4\xf0\x08\x34\xc8\x0f\x2e\xe6\x89\x3d\x6f\x73\xbf\x7a\xce\x27\x29\x60\x1b\xb2\x6a\x0f\xb2\x72\xa4\xd0\xee\xa1\xfa\xe1\xd3\x06\xac\x2c\x5f\x32\xad\xd6\x01\x35\x85\x1d\xa2\x7e\x4f\x12\xe6\x4e\xa5\xe9\xe9\x96\x0b\x13\x83\xb0\x4c\xe0\x5a\x98\xb0\x41\x4d\xad\x97\x1e\xa9\x89\x44\x87\x1d\x41\x5c\xc2\xc4\x6d\xa4\x03\x97\x6d\x9f\x21\x93\x89\x58\xd4\xea\x8c\x79\x03\xb1\x4f\x2a\x44\x85\xfd\x69\xaf\xb2\x4a\xbe\x10\x2d\x8f\xec\x26\x6f\xb4\x68\xb4\x11\xeb\x20\xa3\x39\x67\x7d\x88\xeb\x31\xc9\x97\xb4\xdc\x88\x56\x13\xf0\xbe\x7c\x70\xda\xf8\x56\xa3\xdf\x92\xda\x96\x02\xfb\xa2\xe6\x74\x9d\x2f\x42\x6b\xee\xf6\x86\x62\xd5\xb0\xc2\xfd\x31\x32\x1b\x22\xb5\xec\x59\x7d\xa5\xd7\xe6\xa2\x88\xeb\xd9\x44\x3c\x5f\x39\xeb\x87\xdc\xf4\xa5\xad\x9d\x56\xc6\xba\xf6\x08\x09\x96\xa7\x79\x36\xbd\x87\xdc\x3c\xb4\x2e\xd4\xc4\xd4\x26\x88\xa9\xe1\x93\x82\x9b\x76\x1f\xf3\x20\xe2\xa6\x6c\xc6\x76\x48\xe7\x0e\xea\x3a\x1f\x2f\x9b\x9d\x5b\x42\x02\xfb\x5a\x39\xe9\xad\xc6\x09\x08\x6a\x9b\xe2\xa8\x32\x3a\xc6\x69\x31\xbd\xf6\xc5\x04\xd3\x33\x62\x11\xe4\x6f\xde\xfc\x48\x1f\xbf\x17\xf6\x13\xda\xb1\xfc\x5c\x09\x7c\x92\xdb\x06\x09\x90\x6d\x78\xb2\x5a\x45\x5a\x30\x45\x71\x8e\xfd\x3e\x3b\x14\xe2\x52\xb1\xae\x59\xc7\xc3\x89\x3e\x31\x91\x3b\x2c\x26\x4c\x0f\xfc\x3b\x60\x6c\xa1\xb0\x1d\xc4\x7e\xe8\x28\xa0\x8e\x46\xaf\x60\x4e\x59\x0d\xef\x44\xd2\x7a\xab\x93\xa4\x03\x25\x1f\xca\x07\x72\xe9\xdf\x0f\xab\x7a\xf0\xcb\xc5\x18\x1e\xfd\xa4\xda\x91\x3d\x8e\xb6\x45\x2f\x6c\xec\xbd\xa2\x04\xbc\x72\xd7\xc9\x90\xf6\x0c\xe0\xdd\x83\xc6\x34\xe9\x12\x23\x60\x91\xb0\xa6\x67\x3a\x7c\x89\xea\x59\x30\x8d\x55\xbd\x7e\x63\xa8\x52\x67\x74\xcb\xdd\x7a\x13\x39\xfa\xc2\x12\x4c\x90\x22\xab\xd6\xfe\xce\x7f\x2d\xae\xdf\xd8\x7f\xa6\x83\xdc\x0e\x3e\xf4\x08\x06\xa0\xab\x19\x87\x69\xd3\xa9\x9f\xe8\x1a\x99\xb6\x86\x00\x31\x90\x87\xaf\xa4\xea\x79\xd7\xee\x45\xda\x9c\xd4\x08\x09\xf4\xee\x8f\x4e\x25\xa0\x17\x75\x21\xee\x9d\xba\x8b\x56\x21\x2e\x88\x71\x9b\xb7\x36\x73\x36\xf4\xa7\xbc\x71\x22\xb4\x1a\x7d\xfa\xa2\x67\x2f\x92\xf2\x34\x03\xa1\x0c\x4f\xb2\x53\x88\xc6\xb2\x00\x81\x09\x3d\x49\xf3\xbe\x8a\x9e\x1c\x63\x4e\xf7\xba\x96\xb6\xd5\x23\xdd\x6f\xf6\x13\xc0\xa2\x3b\x60\x45\x70\x26\xcd\x48\x5b\xa8\xdb\x61\xd8\x0a\x0d\xc6\x59\xd9\xaf\x42\xa3\x8c\xae\x77\x7f\xec\x68\xe3\x9c\x52\x98\x6f\xf9\xfc\x20\x78\x9c\x10\x58\x51\x07\xc0\x40\x47\xb6\x6b\xa1\x4e\x93\xfb\x90\x4e\xa9\x0d\xf7\xac\x9f\x01\x54\xc9\x6f\x32\x36\xac\xf6\xdc\x8b\x44\xf5\x54\xc0\xcd\x51\x31\x93\xe5\xdf\xd8\x7e\x08\x5a\xd4\xb3\x8a\xa4\xc5\xe3\x6b\x24\x27\x72\x20\x88\x81\x6e\xcd\x2b\xc3\xa3\xdd\xa0\x1e\x4f\xb3\xff\x5e\xec\x7a\x64\x17\x32\x2b\xa6\xa2\x77\x73\xd2\x44\x95\xa8\x39\x19\x4a\x4a\x58\x2f\xe5\xab\xdb\x8b\x5d\x53\x3a\x24\x26\x25\x89\x24\x1f\xc8\x1f\xdf\x5e\x79\xfd\x26\x77\x64\x28\xf8\xe1\xce\x9e\x92\x6c\xf2\x72\x71\x6e\x75\x83\xab\xfc\x67\xa9\x4a\xae\x08\x16\xc1\x00\x0a\x19\x61\x70\xbb\xff\x1f\x45\xe5\xed\x9e\x26\x7a\xce\x1e\x4d\x91\x5d\xce\x72\x16\xc5\xf4\x04\xde\xf6\xfe\x2b\xd8\xb2\x8b\x2e\xcc\xf3\xe2\xae\xa0\xc0\xd6\x62\x63\x90\x27\x4e\x47\xe7\x45\xed\x3a\x23\xbc\xfd\x21\xd2\x84\xc3\x95\x37\x9d\xc0\x20\x80\xf0\x79\x36\xbc\x15\x4e\x7b\x99\xee\x73\xdb\x18\x8b\xd2\xa3\x94\xe0\x3a\x01\xff\xe2\xd1\xb3\x30\xce\xb7\x21\x58\xf9\x58\xc7\x16\xa8\x17\x11\xdb\xf6\x5a\xff\x8c\xd1\x2f\x5d\xfa\x53\xb3\x76\xeb\xb8\xb9\x8f\x86\x28\xf1\x7e\xf8\xb2\xab\x9c\x0b\xb6\x84\x12\xf4\xe3\x47\xa6\x33\xe2\xf8\xda\x1a\x55\x6d\x96\xf4\xaf\x72\x11\xc0\x78\x07\x9c\x10\x54\x1c\x07\xdc\x37\x22\xd1\x8d\xab\x8f\xa8\xbc\x49\x25\xab\xa5\xc9\x66\xf8\x05\x04\x03\x22\xdf\xbb\xbe\x87\xfb\xfe\xb1\x96\x1f\x5c\xcd\x40\xa9\x1b\x99\x7e\x54\x31\x5a\x7e\xef\xc3\xa4\x7b\xb0\xc8\x7d\xc2\x37\x55\xce\x72\x27\x57\x49\x96\xf4\xbe\x7a\xa3\x44\xfe\x0d\x17\xb9\x7b\xc5\x0c\x58\x38\xf9\x92\x92"}, {{0x17,0x4e,0x99,0x3d,0x9b,0x81,0xf2,0xaf,0x67,0xe9,0xff,0xb8,0xeb,0xd5,0xda,0x41,0x79,0x66,0xa9,0xe7,0x7f,0x66,0xc6,0x5c,0x76,0x77,0x38,0xfe,0x83,0x57,0xd0,0x7c,},{0x3b,0xb7,0x38,0x6f,0x1b,0x1c,0xbf,0xae,0x55,0x37,0x03,0x83,0x3e,0xbc,0xbf,0xe2,0xdf,0xff,0x8c,0x89,0x9a,0x07,0x92,0xd7,0xce,0x23,0x22,0xb5,0xba,0x64,0x5a,0x5f,},{0xe6,0x07,0xbc,0x9a,0x53,0x60,0xb3,0x1d,0xa5,0x6b,0xe1,0xc5,0x44,0xc2,0x00,0x02,0x84,0x95,0x1d,0x86,0x89,0xf4,0xb7,0x22,0xbc,0x46,0x73,0xa0,0xc8,0x48,0x9b,0x84,0x48,0x3e,0xd8,0xe7,0x6e,0x29,0x7e,0xa0,0x46,0xe8,0x5b,0x37,0xba,0x56,0x30,0x58,0x5e,0x53,0x75,0x56,0x6a,0x18,0x7a,0xfb,0x56,0x96,0x66,0x1e,0x5b,0xfd,0xc1,0x0e,},"\xa4\x01\x75\x0a\xfc\x48\x37\xdf\xe3\xaa\xcc\x28\x4a\x59\x71\x45\xdf\xef\x02\x62\x9e\xf8\x7b\xd0\x93\x8d\x44\x39\x79\xdf\x76\xf2\x9f\xcd\x66\xa5\xb7\x1e\xa8\xab\x78\x72\x77\xe3\x05\x6f\x6e\xa1\x1b\x08\xbd\x23\x89\x79\xf9\xd3\xb0\x62\x53\x8c\x4d\x60\x40\xa8\x6b\x6e\x32\x04\x7a\xec\xc5\x9c\x23\x77\xad\x0e\xa4\xc4\x0c\x79\xff\x9f\xe9\x8c\x95\x8b\x2b\xf2\x5f\x2f\xd6\x34\x24\x32\x63\x6f\x5f\x7d\x5b\xb0\xd2\xec\xf1\x81\x83\x42\x6c\x73\x14\x79\x84\xd9\x5b\xbe\x16\x2e\x11\x97\x2d\xdb\x78\xa2\xa7\xc3\x45\xc5\xc0\xbb\xba\xba\x9c\xf3\x8a\x2d\x5d\xd5\x09\xa7\xdf\x8b\x84\x28\x74\xa9\x6e\x64\xb5\xd6\x4f\x5c\x41\xa2\x1d\x20\x8d\x14\xce\xa7\x06\x6c\xf2\x2d\xee\x0c\xa4\x1a\xa4\x6a\xb9\x21\xd4\xce\xec\x89\xec\x87\x3f\x77\x96\x0e\xda\x60\xd9\x67\x6c\xfd\x0d\xbf\xae\xc8\x72\xc2\xad\xe8\xfb\xa4\x28\x5a\xac\xd5\x27\x14\x3a\xe0\x34\x1d\x67\xd0\x07\x81\x19\x65\x3b\x5d\x23\xd4\x6e\x6e\xf7\x02\x64\xb1\xb0\x91\x38\x70\x87\x76\x23\x71\x6d\x0f\x1a\x59\x02\x1b\xe7\x4c\x91\x4b\x43\x24\x71\xa4\x3a\x29\xf2\xb6\xdb\xeb\x6a\x22\x3e\x2d\xba\xab\xb8\x20\xb4\xad\xbe\x33\x78\x29\xe1\xde\x0c\x18\x4d\xd0\xd0\x9f\x9d\x01\xd4\x25\x27\xe5\xd4\x0a\xbb\xda\xcc\x8a\xc0\xf1\xb2\xc5\xc1\xcb\x2f\x23\x87\x6d\x2d\x1b\x6b\x43\xdf\xe4\x82\xf9\xd4\x5a\x18\xf5\xc2\x2b\x15\xf1\xfe\x52\x1e\xf5\x7b\x08\xae\xc6\xa3\x03\x39\x25\xc7\x45\x4c\x93\xe6\x31\x9e\x77\x8a\xc4\x94\xfb\x14\x0a\xe5\xf1\xa3\x1c\xc8\x32\xca\x24\x88\x65\x10\x04\x06\x3b\xcf\xf8\xfd\x9a\xe9\x26\x6a\xf5\x27\xf2\xc3\x1f\x6a\xcb\x8f\x3d\xeb\xd9\x97\x8e\xf9\xdf\x01\x08\xe3\xd5\x0c\x49\x19\x90\xc9\x0d\xd8\xee\x9d\x64\xea\x4e\xbf\xd7\x11\xc9\x9d\x90\x44\xec\x11\x34\x2c\x53\x83\xca\x39\x23\x2e\xd9\x7a\x07\xe4\xdc\x51\xdb\x4c\x1f\xe9\x47\x34\x8d\xff\xe7\x0a\x95\xc9\x9d\xb1\x47\x51\x31\x48\x01\xf1\x3f\xa2\xbf\x42\xd8\x67\x37\x5a\x08\xee\x9b\x3b\x79\x9e\x0b\x15\x27\x8e\x95\xe9\x1a\x89\x68\x06\x4d\x6d\xfd\x8f\x51\x15\x43\x8c\xcb\x8b\x51\x6c\xa0\xc4\x1d\xbb\x19\x87\x3c\x6e\x10\xa2\x36\xec\xc2\xda\xd5\x22\xf8\x0f\x01\xc1\x4e\x2f\xa1\x4a\x0d\x79\x2b\x9f\xc4\x86\xc6\xfb\x0e\xfb\xdf\x21\x30\xf0\x2d\xf1\x49\x7d\xb5\xab\xa8\xbe\x61\xca\x70\xb2\x93\x88\xe4\xee\xc7\xe0\x69\x4a\x38\xc0\xd0\x3c\x59\xbb\x6a\x2d\xc3\xcc\xd6\xdd\xe1\xe2\x9e\xe2\xc1\xb3\x25\xac\x72\xaa\x8e\x6f\xab\x91\x38\xf8\xb6\xf5\xd3\x24\xd4\x6a\xf3\xa3\x54\x2c\x8b\xd8\x7c\xb0\x4f\xaf\xc5\x4b\x5d\xb8\x27\xde\x60\x67\x62\xa0\x97\xb6\x22\x79\x9c\xa8\x27\xbd\xa9\xc1\xc0\xbb\x26\x7e\xba\x82\x54\xa8\x1c\x6b\x85\x8a\x37\x5b\x94\xbd\x09\xf3\x9e\xeb\x88\xcb\x14\xb8\xd4\x6e\x47\x40\xdc\x1a\xb4\x2a\x89\x5f\x86\xd2\xc5\x7f\xc2\x8b\x07\xb7\xf6\x0f\xc4\xf8\x84\x7b\x8b\xc8\xad\x83\xa2\x48\x1a\x28\xf2\x9b\xca\x35\x10\xff\x8b\xf1\xdd\x75\x81\xe3\x35\x71\x64\xf4\xfe\x92\x0f\x9d\xe8\x39\x37\x6d\xe0\x64\x90\x0d\xc7\xf8\xbc\xf5\x11\xdc\x57\x2e\x0f\x0f\x6a\x75\xb9\x29\x79\x7d\xa4\x1c\x52\xea\xe6\xfe\x13\x75\x0c\xe3\x51\xe8\x76\x76\x30\xba\xdf\x6d\x7d\x4e\xab\x90\xcd\x19\x04\xc9\x6c\x04\x8a\x9a\xcb\x21\x3a\x9e\x5b\x86\x46\x15\x73\x8a\x84\xf2\x22\x98\x6a\xc2\x35\x54\xcf\x4c\xe5\x4e\x80\xab\x57\x33\xc0\x65\xb8\x04\x59\x92\x1d\xd3\xd8\x37\x2d\x0e\x85\x94\xd4\x36\x43\x51\xbf\x04\x1c\x14\x6f\xa8\xd2\x3a\x19\x3e\xb8\x07\xec\xe2\x3f\x24\xab\x65\x95\xe9\x32\xc9\xce\x1a\x75\x9b\xf7\x88\x91\x4d\xb0\x08\xe8\x70\x98\xdd\x81\x46\x5e\x26\x10\x64\x7a\xc3\x8e\x08\x86\x66\xf6\x0e\xc5\xd0\xe2\x17\x33\x20\xa4\x0c\xd9\x85\xf0\xe0\x0d\xbc\x2b\x45\x70\x72\x74\x83\xa8\xc2\x5f\x6f\xc1\xe0\x93\xbb\x57\xcc\xaf\xd1\xca\x20\x2f\x29\x86\xc7\xc5\x54\x0a\x7c\x3e\x10\xc4\xa6\xfc\x26\xd1\xd6\x2c\x2c\xa5\xaf\x83\x05\xce\xeb\xe4\x2f\xf9\x6e\x7d\xc5\x48\x21\x43\x75\xe8\xa7\xf9\xf7\x12\xba\x8b\xd8\x75\xe4\x3c\xa1\x0c\xf9\xb1\x83\xf0\xc8\x51\x95\x12\x92\x85\x38\xa4\x78\xcb\x98\x25\x9b\xd8\xb3\xe3\x34\xbc\xc4\x63\x55\x95\xca\xd3"}, {{0xe5,0x37,0x15,0xfe,0xc9,0xd3,0xb2,0x0e,0x9c,0x29,0x91,0xe5,0x4b,0x5e,0xb0,0xa8,0xcc,0x81,0x87,0x55,0x69,0xc9,0x5e,0x22,0xa2,0x00,0x13,0x60,0x02,0x17,0x60,0x04,},{0x53,0x51,0x89,0x9b,0x69,0xb2,0x11,0x6b,0xc7,0xf8,0xa8,0x81,0x4d,0x1e,0x5b,0x9f,0xc7,0x85,0x69,0x8b,0xeb,0xd9,0xab,0x14,0x27,0x7c,0x3e,0xcc,0x01,0xef,0x8b,0x1d,},{0x3d,0x0a,0xdc,0xe7,0x7a,0x4e,0x04,0x6f,0xcb,0x9b,0x49,0xad,0x5e,0x6c,0x68,0x09,0xc8,0xac,0x33,0x6c,0x73,0x34,0x04,0xe5,0xd3,0xf0,0x15,0xc9,0x22,0x5c,0x3d,0xf4,0x6e,0xf2,0x1e,0xa3,0x4c,0xff,0xb3,0xaf,0x69,0x97,0x4f,0x8b,0x7e,0xab,0x2d,0x23,0xfc,0xd5,0xa1,0xe1,0x75,0x3a,0x40,0x23,0xde,0xb3,0x81,0x86,0x29,0xa9,0x8a,0x0b,},"\x84\x31\xcd\x16\xd5\xc0\x93\x77\x5e\x18\xc0\x82\x52\xc4\x3f\x95\xb1\x01\x7e\xb7\x11\xfc\xaf\x73\xe1\xe0\x0c\x0c\xd6\xf3\x44\x87\x44\xab\x9b\x0e\x64\x33\x55\x18\xc4\x83\xae\x94\xde\xb9\x76\x77\xf8\x18\xf0\xe8\x1a\x74\x90\x61\x5b\x71\x41\xb9\xc3\x5f\x80\x55\x6e\x69\x71\xce\xa2\x8e\x9a\x32\xc3\x28\xcc\x26\x69\xfc\xa5\xb1\x23\xcb\x66\x2d\xeb\xab\x2b\x98\x15\x77\x64\x66\x80\x70\xe1\x8e\xdf\x76\x1a\xe1\x96\xbd\x4b\x24\x4f\xea\x7b\x74\x98\x45\x16\xbe\x2c\x00\x73\x9e\x76\xe6\xc4\xb6\x21\xcb\x39\x83\x76\x5a\x20\xd8\x47\x78\xd5\xa4\x35\x0b\x16\x8f\x6a\x0f\x71\x2a\x98\x20\xa8\x5a\x63\x6f\xaf\x92\xc7\x89\xc4\x28\xcf\xd2\x96\x2e\xd2\x07\xc3\xac\x88\x99\xc2\x58\xca\xc1\xad\xb5\x15\x9f\x76\x4b\xa3\x72\x29\xc5\xcb\xf7\x83\xfc\x9a\xa4\xd1\xea\x46\xec\xc8\x5f\xe0\x96\x14\x85\xd4\xfc\x5c\xb2\x1d\xf0\x01\x2a\xc9\xb9\x55\x37\x3b\x14\x22\xe5\x1a\xfa\x1c\x55\x09\x88\x86\x2c\x86\x13\x3b\x76\x0a\xa6\x30\xfc\x0a\xce\xe8\x98\x91\x17\xd1\xdd\x96\xe3\xe6\x28\x7b\x69\x28\x7c\x59\x0b\xdc\xa9\xcb\xc8\xee\xce\xf2\x81\xee\x6d\x1c\x8d\x88\x82\x2b\xfe\xa5\xfa\x0f\x53\x0f\x23\x27\x80\x93\xc7\xc8\x5a\x0d\x44\xc3\xa7\x74\x04\xee\x79\xf1\xc8\x36\x8c\xd7\x32\x1b\xf1\x48\xfd\xa4\xdc\xf2\xeb\x07\xe4\x63\x0e\xa4\x22\x58\x75\x86\x37\x17\x80\x51\x45\x36\xb8\x94\xc5\x24\xe6\xb8\x3d\x5a\x76\xa1\x5c\x83\xe9\x5a\xb3\x14\xe0\x7b\x34\xb9\x8c\xd9\x9e\x07\x70\xb4\xeb\x9b\x3f\x3f\x50\x5b\xae\x8a\x06\xf7\xf9\x50\x25\x8d\x79\x07\x48\x10\x71\x95\xeb\x4f\x6b\x84\x84\x0f\x8c\x05\x90\x72\x73\x96\xed\x14\xe3\xf5\x32\x39\x47\x6c\x4d\x2a\x72\x69\xb2\xe1\xf9\x72\xfb\xff\x33\xe4\x72\x44\x26\x74\x5e\xc8\x86\xa3\x29\x16\x29\x5e\x70\xd4\x68\xd0\x6c\x7d\xbb\x5f\xf9\xa3\x54\xe1\xac\x90\x3b\xb4\x5c\xa5\x26\xf0\x8b\x49\xa6\x5e\x82\x29\x7d\x8d\xd3\xfb\x25\xaa\x42\x8f\x64\x34\x5b\xca\x97\x40\xd9\x07\x8d\xac\x9e\x11\x38\xc9\x21\xbd\xd7\x48\x81\x67\x3d\x49\xd0\xcd\x20\x06\x81\x17\x23\xde\x28\x7c\x6c\x95\x83\xe4\x56\xa0\x1a\xb1\xa3\x4d\xfa\x1e\xaa\x96\x3b\x71\xe8\xbc\x7f\xa8\xa9\x8c\xad\x4f\x94\x1e\x4b\x37\xb6\x0e\xef\x92\x3b\x32\x94\x88\x23\x50\xb3\x8e\xa4\xea\xc0\xe9\x23\x2e\x93\xc5\x32\xdb\x5d\x7e\xec\x8e\xcf\xae\x65\xe0\x80\x47\x30\x78\x77\x7d\xdf\xdd\x11\x50\x8a\x6e\x59\xf0\xeb\xaa\x3f\x60\x44\x1f\x82\xa7\x1a\x73\xc8\x4b\xca\x06\xa3\x71\xff\x5c\x9f\x77\x21\x3a\x2d\xb7\x95\xd4\xa8\x89\x78\x23\xd8\x8f\xd9\x2a\xe3\xe0\x57\xe8\xbb\xd8\x0c\x99\x0a\xf8\x38\x6b\xdf\x26\xf1\x2d\x97\x3c\x8c\x5f\xf9\xed\x6f\x7b\x2d\x8e\x61\x83\xcf\x6e\x68\xf3\xbb\x89\x8f\x59\xa9\x3e\xc4\xde\x3b\xea\x60\x5a\x5d\x8b\x15\xdf\xab\x71\x3f\x35\x85\xc4\x8d\xc9\xa5\x76\x82\x42\xb3\x31\x01\x43\x80\x30\xe7\x04\x48\x80\xd1\x7c\x2e\xe8\x4f\x89\xd2\x6a\x1f\x7b\x19\x86\x19\x3f\x96\x63\xc5\x87\xd5\x0c\xa9\xdd\xf6\x18\x6a\x51\x76\xaf\xef\x1a\xdb\x24\x81\xb7\x92\x54\xb7\x8d\x3b\x34\xc6\x97\x90\xeb\x28\xb9\x0b\x14\x61\x17\x0c\x3d\x73\x81\x83\x76\xcd\xf3\x71\xaf\x0a\x0f\xea\xf1\x4f\xdf\x70\x16\xed\x6e\x7f\x08\xc0\xc1\x4b\x52\x70\x5c\x86\xd4\xf0\x00\x3b\x5e\x45\xf9\x74\xc0\x64\x16\xcc\xb5\xca\x3e\x9d\x52\x9a\xa9\xd4\x15\xc2\x5a\x44\x6f\xa2\xd6\x9e\x82\xf4\x99\x4e\x57\xe9\x22\xc1\x7c\x1c\x34\x2d\xd7\x28\x1e\x41\x00\x52\xd9\xe4\xaa\x1b\x30\x9b\x7d\x47\x0d\x45\x8c\x66\x3e\x17\xff\x25\x00\xd0\xbb\x8e\x46\xa9\xc4\x36\x7e\x09\x1c\xaf\x87\xdd\xfc\x06\x2a\xae\x08\xa6\x5c\xb9\xe0\xea\xa7\x1c\x99\x45\x9c\x5e\x7c\xb1\x12\xa2\xee\x98\xa5\xe4\xcb\xee\x0d\xc5\x20\xf8\x7c\x30\x22\xda\x65\x49\xbe\x1e\xe7\x0a\x0a\x73\xad\x84\x99\xc9\x7d\xd0\x6a\xa1\x4c\x9f\xd8\x62\x8a\x92\xca\x6d\xb4\x87\x32\x2d\xb9\x59\x8a\xda\x1f\xce\x28\xf4\xb9\xfc\x1d\x3c\xc3\x9d\xcf\x2e\xd1\xdf\x3d\x86\x2d\x87\xf5\x5c\xc1\x01\x6f\xb9\xe7\x3e\x7c\xc8\x97\xb9\x70\xd5\xff\x35\xac\xfe\xb0\x5c\x1c\x89\x19\x28\x08\xae\xeb\xfb\x2c\xd1\x7c\xb1\xc9\x4f\xab\x05\x98\x98\xfe\xdc\x2f\xbd\x44\xcc\xef"}, {{0xab,0xfd,0x69,0x7b,0xfb,0xc5,0xb6,0xff,0x2b,0xdf,0xf3,0xbc,0xe1,0xd7,0x77,0xe0,0x5f,0xbe,0x3e,0xc8,0xb9,0x5c,0xe6,0x93,0xd6,0x23,0x93,0x12,0x09,0x31,0x3d,0x4f,},{0xa7,0x09,0x32,0x1a,0x02,0x10,0xcb,0x80,0xab,0x58,0xbf,0x95,0x5e,0xcd,0xeb,0x8a,0xaf,0x9e,0xe4,0xc3,0x75,0xf9,0x59,0xc5,0x30,0x89,0xd4,0x37,0x48,0x8c,0x08,0x2d,},{0x8c,0x36,0xb5,0xa1,0x11,0xc5,0xa8,0x11,0x9f,0x2d,0x9d,0xb5,0x7e,0xbb,0x59,0x2d,0xae,0x86,0xad,0x4b,0xf6,0x78,0xc1,0x49,0x2e,0x26,0xf3,0xc1,0x0f,0xbe,0x03,0xf1,0x05,0xca,0xe0,0xdc,0x68,0xb5,0x52,0x59,0xb9,0xb5,0x98,0x92,0x89,0xdb,0x33,0xd9,0x5d,0x2e,0xe6,0xb7,0x56,0xc7,0x60,0xf9,0xd3,0xaa,0x0e,0x68,0xa1,0x89,0xde,0x02,},"\x89\x6b\x7a\xb8\x41\x3f\xfe\x43\x9a\x2f\x44\x87\xec\x49\xd6\x4e\x31\xc7\x4f\x50\xac\x83\xf5\x5d\xa6\x1a\x70\x03\xaa\x71\x6c\x2a\x9d\xf6\xb4\x38\xe6\x2f\x53\xd8\xf0\x19\x2f\x37\x36\x32\x47\x60\xd7\xe8\xc4\x4a\xc0\xba\xca\x3a\xe2\xa6\xfb\x93\xf1\x3d\x96\x88\x67\x99\xfd\x2c\x45\x51\xb0\xab\x36\xf1\x73\x08\x55\x55\x12\x65\xa5\xa3\xc3\xc2\x1d\x95\x16\xa2\x37\xf5\xdb\xc1\xc8\xe7\x29\x99\xb7\x82\xc5\xca\x41\xa4\xf6\xe9\x30\x8e\x64\xaf\xde\xe0\xbf\x47\x9e\x54\x6b\x89\xc5\x1b\xc5\xe4\xf7\x1e\x57\xfb\x24\xce\x43\x7a\x8b\x81\xb9\x1d\xc7\x98\xb5\xab\x36\xf2\x9a\xfd\x5b\x48\xe8\x1c\x17\x6a\xe5\xed\xf9\x53\x71\xba\x32\x46\xfb\x43\x94\x05\xbd\x10\xee\xd3\x67\x8e\x3e\xc6\x23\x07\xa3\xb3\xdc\x1b\xad\xba\x05\x1f\x16\x77\x4b\x85\x08\x81\x88\xc2\xa9\xe3\x20\xa1\x61\x8d\x5f\x26\xce\x94\xee\x2b\x93\x3c\x30\x5f\x6d\x95\x84\x95\x8e\xea\x31\x56\xc3\xd1\xe0\xef\x39\xa1\x86\x27\x5e\xe6\x2c\x40\xf3\xc1\xac\xd1\x5d\x8b\xe6\xe0\x74\x35\x1f\x53\x49\xce\x3d\xf6\x95\x17\x50\x5f\x45\xfa\x06\xa8\x15\xc6\x9c\xa1\x8f\x45\x0f\x42\xb5\xcf\x4e\xbd\x99\x26\x84\x45\xe0\xf6\x81\x04\xa7\xde\xeb\x0a\x11\x5b\x81\x7b\x99\xe1\xa7\x3e\x0f\xa9\xd8\x7d\xb7\x1f\x8e\xc9\x4f\x87\x08\xc9\xbc\x2e\x62\x2b\x96\x33\x65\xeb\xcf\xb9\x7c\xfe\x73\x32\x63\x00\x70\xe9\x65\x4e\xaa\x60\x36\x1a\x45\xd4\x02\xdc\x0a\xb2\x97\x66\x52\x42\x66\x7f\xbd\x99\x40\xf6\xcd\x33\x19\x52\x46\xa8\xc2\x86\x9a\xf7\x59\xa8\x62\xd4\xb6\x41\xdb\x14\x4d\x57\x32\x36\x6b\x20\x63\x6c\x40\x27\x78\x7f\x55\x80\x27\xd7\x6f\xcb\xf8\x43\x2e\xb9\x3e\x6d\x14\x56\x7d\xf8\xdb\xf2\x11\xda\xeb\x56\x55\xdb\x10\xac\xdd\xd0\x5e\xca\x06\xac\xce\xe9\xfd\xa8\xd3\xb7\x0c\xa1\xe6\xdc\x58\x7f\xa4\xb7\x8f\x63\xcd\x66\x3f\xf0\x24\x38\x70\x57\x0f\x4d\xcb\xaa\x3f\xb6\x26\xb4\xe1\x13\xbd\xe4\x7d\x5c\x9d\xb2\xb4\xba\x6e\xc6\xdb\xf9\x18\xac\x05\x69\x49\xef\x3c\xfc\xb1\x15\x56\x16\x15\x77\x1a\x03\x5a\x43\xd3\x3b\xa2\x65\x1d\xbe\xb4\x63\x48\x26\x1c\xe3\xc4\xc9\xf2\x46\xd2\x3f\x94\xdb\xc2\xd0\xc1\x9b\x92\x1e\x24\xc7\x7d\xa5\x99\x2f\x1b\x4b\xdf\x2e\xde\xa4\x99\xf5\x41\x11\x68\xac\x0c\x12\xe9\x6f\x3b\x15\xd2\xe1\x2a\xc8\xd7\xb3\xed\x8d\x1e\x07\xc4\x26\x7a\x25\xd3\xa3\xc3\x53\xa4\x20\x8b\x74\x06\x27\x8a\xab\x9e\x70\x0f\x7b\x20\x6f\x48\xe6\xea\x7c\xc9\x7e\x55\x4f\x15\xc9\xbe\x34\x9d\xd9\x15\x14\xdb\xe8\xd8\x89\xf2\xdc\xbb\xfa\x18\x2c\x9f\xaf\x58\x07\xa6\x9b\x2e\x97\xfa\x77\x1a\x6f\x23\x1a\x4c\x7b\x31\xd1\x17\xb8\xed\x0e\x63\x0c\xdf\x13\xe0\x82\xbb\x4f\x63\xc3\xf9\xac\xb3\x55\x32\x04\xcc\xd7\x6e\x18\x35\xc4\x6e\xec\x3d\x43\xc5\x61\xbb\xf1\x7c\x92\x21\x4a\x6d\xb1\x21\x2b\x60\x03\xcf\x2c\xc2\x6c\x7a\xe6\x75\xfc\xd0\x53\xb9\x47\xe7\x22\xf9\xe8\x57\x62\xce\x8a\x16\xe4\x65\x4e\xc6\x34\x2f\xc6\x46\xe5\xca\xb4\x72\x79\x7e\xab\xf6\x58\xba\x4a\xfd\x14\x2f\xc8\xfc\x4c\x8f\x98\xf2\x3c\x24\xdc\x99\x84\x7a\xe8\xce\xf0\x87\x9e\x1a\xb3\xbb\x80\x97\xe4\xc3\x52\x9a\xdd\x2d\x8e\x8e\x2c\x20\x69\x21\x0f\x50\xac\xe1\xae\x32\xa6\xc8\xe6\x38\x4a\x2b\xf7\xd7\x9c\x66\xc7\x46\x14\x9c\x84\xad\x75\xa3\xa1\x76\xe4\x5e\x13\x6d\x94\x69\x5a\xed\x4b\xfd\x08\xb4\x26\xea\x8c\x4b\x93\x79\xf3\x74\x25\x50\xe1\xcf\x5a\xc8\x4c\x18\x17\x4d\x68\x0e\x92\xaf\x2c\x18\x74\xac\x1c\x13\xd2\x82\x32\xde\x19\x37\x68\xe5\x61\x94\x7c\xbd\x6b\x79\xe9\xb9\x9d\xa6\x5c\xfb\x74\xff\xb3\x2f\x7d\x3d\x20\x25\xc6\x07\x63\xdc\x07\xf5\x55\x39\xb4\xd2\x53\xde\x1e\x6c\x25\x82\x3a\x62\x58\xc7\xa9\xce\xd1\x50\x1d\xce\x27\x86\x89\x8a\x3e\x05\xc9\xbf\xf8\xfc\x5b\x21\x25\xd0\xf4\x71\x08\x8a\x13\x4b\x48\x73\xc8\xd5\x5c\x04\x45\xf6\xca\x39\x6b\x3d\x7b\x4b\xc2\xbf\x5c\x4d\x22\x40\xda\x41\x82\x93\xaf\x6a\x3e\xd8\x53\xde\xdd\x3b\xf6\x68\xd9\x37\xb3\x5a\xa0\xc2\xac\xbf\x23\x76\x6f\x9f\x3e\x96\x82\x84\x75\xab\x08\x64\x96\x61\x7a\x6e\x81\xd6\x53\x58\x9b\x2f\xe5\x0b\x7b\xa8\xf0\xcf\x1e\x5a\x44\xd8\xd6\x2f\x08\x37\x7a\xbf\xc2\x62\x97"}, {{0xdc,0xfa,0xd5,0x9f,0xc6,0xb6,0x97,0x10,0x9e,0x72,0x7f,0xf6,0x6a,0x5f,0xe9,0x3a,0x6a,0x22,0x6f,0x63,0x1a,0x64,0xe5,0x79,0x7a,0xd8,0xd8,0xc8,0xb6,0x35,0x87,0x34,},{0xe7,0x9f,0x4f,0x51,0x13,0x72,0xe3,0x55,0xe7,0xe9,0xe0,0xe8,0xb5,0x34,0x6f,0xdb,0xcd,0x2d,0xf1,0xfc,0x5c,0x3a,0x18,0x90,0xd2,0x7f,0xa1,0xfa,0x92,0x8d,0x27,0xa6,},{0x05,0x2f,0xf7,0x95,0x40,0x73,0x74,0x56,0xc6,0xa4,0x2c,0x41,0xc9,0x7d,0x6b,0xf5,0x17,0xb8,0xcf,0x28,0x9b,0xc7,0x8b,0x50,0x3d,0xee,0x6a,0x30,0xef,0x51,0x68,0xb3,0x8f,0x75,0xbe,0xac,0xa1,0xe1,0x4d,0x97,0x1f,0x87,0x73,0xe3,0x94,0x1b,0xd6,0xdf,0x5c,0xb9,0x77,0x8d,0xea,0x12,0x5a,0x4c,0x4f,0xe0,0x11,0x6b,0x70,0xee,0x84,0x0b,},"\x7d\x92\xdd\xd8\x13\x3c\x61\xc6\x10\xc1\x30\x8c\x23\xae\xaf\x99\x38\x84\xa4\xe6\x7f\x7b\x94\xbb\x88\x6d\xad\x50\x98\x69\xa9\x32\xec\x4a\x27\xd4\x10\xd2\xc2\x9c\xa7\xae\xae\x6f\x92\x80\xcf\x6c\x4b\x06\x7e\xc7\x51\xe5\xe8\xc3\x9f\xf4\x44\xd4\x22\xce\xab\xae\x14\x5d\x42\xf0\x47\x45\x3d\xd4\x02\xd1\x79\x74\x05\x03\x34\x09\xe7\x2c\xc1\x9f\x79\x3d\x5d\x26\x8f\xb3\xfd\x2c\x11\xea\x2c\xb0\xd7\x04\x36\xe1\x8f\x9e\x88\xa0\x15\x15\xdc\x86\x5f\x6a\x1e\xb2\x36\x90\x32\x8f\xd7\x5d\xe2\x63\x21\xa3\x8f\x12\x19\x7a\x97\x20\x1b\x1d\x84\x52\x94\x4f\xbc\x54\x1c\xb6\x8c\x77\xd4\x95\x15\xdb\x53\x26\xf2\xb1\xd0\x76\x3e\xda\x06\xd2\x50\xce\x2a\x5e\x0b\xbd\x7d\x16\x76\xd7\xd4\x1f\xb3\xab\xe8\x8b\xdb\xe3\x72\xf9\x6b\xf7\xbb\x52\x6d\x6b\x65\xa2\x51\x5e\x83\xa5\x77\x04\x5b\x54\x79\xb3\x8b\x85\x2f\xe4\xab\x01\x1c\xbf\x21\xc0\x85\xef\x5f\x0a\x7c\x1b\xed\x76\x57\x2b\x0f\x86\x02\x28\x06\x7a\x89\x9f\x89\x5a\xe7\xf6\x25\x6e\xb6\x51\x40\x87\xf9\xd6\xf5\xc3\x55\x96\xc1\xf4\x80\xc7\x31\x13\x54\x6c\xb9\xcc\x30\xf5\x6a\xb0\x74\xa9\xff\x28\xac\xab\x7e\x42\x65\x0a\x96\x1d\xa3\x25\xac\x5b\x65\x94\xb8\x1c\x93\x25\x0a\xe7\xd3\x92\x67\xa1\x9c\x97\x62\x54\x07\xed\xda\x04\x04\xcb\xe5\xa3\x6e\x95\x9f\xc8\x20\xb2\x7e\xf5\xca\xd7\x96\xc1\x1e\xaf\xf1\xc0\xe2\xf9\xd4\xb3\xc6\x49\x15\x02\x19\x5d\xe0\x36\x59\xb3\x64\xe4\xe8\x7b\x2b\x2d\x73\x3e\xc2\x5e\x6f\x9b\x63\xd5\xf6\x91\x79\xe0\xd2\x7b\xd4\xae\xcc\x8f\x12\xa5\x07\xa9\x1b\xaa\x48\xd9\x9b\x3a\x42\x6c\xec\xeb\xae\xf3\x7d\x73\x61\x10\x6a\x84\x90\x64\x43\x09\xf6\xeb\x4d\x25\x96\x44\x3b\x6b\x01\x18\xb9\x45\xac\xec\xc6\x44\x3e\xa6\x1f\xcd\x15\x5b\x54\x32\x5b\xc2\xc3\x1b\xe0\x25\x0f\x94\x82\xe1\x3f\xd8\xeb\x44\xe2\xae\xd7\x6b\xe8\x12\xaf\x54\x53\xcb\x7f\x86\x32\x45\x8f\xc8\xa0\x2a\x2f\x45\x48\x0d\x79\xb0\x6c\x7d\xda\x38\xb4\x69\x5d\x08\xb5\xa4\x30\x50\x4f\x1a\xe2\x27\x5b\x05\xc9\x1e\x79\x9d\x44\x70\xf3\x8a\xbe\x77\x73\x6d\xfa\x89\x5c\x19\x7e\xa4\xb6\x3c\x2d\xf1\x8e\xfe\xb1\x41\x84\x83\x7b\x8d\xdf\x48\x90\x95\x20\xd9\x10\x45\xb9\xd9\x65\x5c\x22\x5a\x83\x17\x39\x60\xb4\xd7\xcd\x0d\x8b\xae\x30\x23\x75\x57\xf8\x69\x70\x8b\xe1\x38\xad\x52\x46\xc8\x66\xc6\xc0\x59\xdc\x59\x7a\xbf\xd4\x94\x32\x37\x37\x68\x96\x73\x6b\x97\xb7\xe0\x28\x9e\xf9\xbb\xd2\x94\x77\x74\x5c\xb6\x0f\x46\x20\x2f\x1d\xe9\x84\xf5\x09\xb1\x80\x88\x33\xf5\x80\x18\xcd\xe8\xc2\x6b\xef\x4c\x00\x5b\xdc\xa3\x85\xb0\x57\x35\x11\x0c\xa0\x2e\x56\x2b\x50\xed\xdf\xf6\xfd\xe9\xfb\xb8\xd0\x30\xce\xdf\x70\x31\xbb\xeb\x32\xb1\x2b\x24\x2b\xe4\x9f\xde\x01\x60\xc1\xfb\xde\x99\xb0\x3c\x06\x2a\x1a\x47\x06\x23\x45\xc9\x2e\x0b\x60\x4d\x08\x0f\xac\xce\x92\x43\x48\x15\x29\xc7\x05\x97\xdf\xd6\x43\x82\xcb\x54\x06\x91\xb5\x9b\x71\xb0\x94\x33\x2b\xaf\x0b\xbb\x12\x5b\x63\xa4\x46\xbb\x97\x49\x1c\x04\x64\x32\x8c\xab\xd7\x62\x7c\x46\xf3\x92\xf3\xb1\x24\x82\x2f\x20\x13\xc6\xe1\x6d\x3c\xa8\x7c\xc5\xbe\xcf\x56\xb0\xfc\x6e\xb2\xbf\x99\x23\xb3\x01\x2b\xa2\xb6\x12\x50\xa6\x33\xa4\xd2\xee\x39\x12\x56\xc5\x20\x95\x73\x82\xaf\xf9\x70\xc5\xd2\x23\x85\xc3\x34\x4c\x6d\x4b\x45\x61\x57\x1c\x96\x32\x9b\xf7\x56\x15\x29\x75\x16\xb9\xf2\xce\xb9\xf9\x97\xa3\x95\x23\xaa\x0f\x58\xb4\x88\x77\x2d\x82\xfc\x0d\x78\xc5\xdd\x52\xec\xfa\x6b\xfa\xc6\x3a\x76\xe1\x48\x08\x8b\x36\xf2\x4a\x88\xe6\x83\x85\x49\x6d\xda\xdf\x30\x23\xf7\x2d\x87\xc2\xef\xa2\x6e\x87\x7d\x32\xf1\xda\x97\xcd\xb4\x2c\x8f\x15\x71\x89\x88\xe4\x28\xcd\x02\xf4\xd0\x95\x43\xbd\x0b\xd5\xb2\xf4\x09\x96\x3d\x0f\xa3\x73\x53\x1f\x78\xb5\x92\xbd\x13\x7e\xea\xea\x0b\x4e\x7f\x91\x82\x08\xe1\xd5\x90\x08\xa8\xaf\x50\x58\xf5\xd9\x23\xc4\xf3\x2d\xf1\x99\x90\xf1\x0d\xd3\xf0\xeb\x20\x62\x93\xb2\xb3\x44\x3f\x4a\x5d\x2d\xcc\x5f\x7d\x3b\xba\xf6\xaf\x43\xfe\x45\xf5\xdb\xbe\x53\xec\xf4\xbf\x1b\x4a\x13\xe2\xd4\x6e\xf8\x02\x98\xd4\xf0\x1c\x40\x2e\x21\x0f\xcb\x9f\xf2\x08\x4e\xc0\x3e\x42\x00\x8d"}, {{0x69,0x6d,0xc4,0x81,0xf6,0x19,0xa9,0x49,0x85,0x63,0xc8,0x3d,0x0d,0x0e,0x55,0x56,0x5c,0x14,0xa0,0x78,0x45,0xfe,0x4a,0x66,0xab,0xa2,0x24,0x7b,0x11,0x3f,0xf8,0xef,},{0xc9,0xd7,0x37,0xab,0xc4,0xa9,0xe7,0x3c,0x14,0x9e,0xad,0xc1,0x95,0xa8,0x37,0x89,0x9f,0x2c,0xd5,0x01,0x93,0x73,0xc3,0x0e,0xca,0xf6,0x2e,0x5f,0x8e,0x14,0xb6,0x45,},{0xde,0xd5,0xd9,0x91,0x93,0x5c,0xd1,0xf9,0x39,0x0f,0x1e,0x85,0x92,0x9c,0xa1,0x6d,0xab,0xfc,0x83,0xe6,0x5e,0x43,0x27,0x2e,0xb1,0x75,0x16,0x71,0xaa,0x31,0x93,0x0c,0x72,0x85,0x55,0x34,0x14,0x30,0xce,0x7c,0x80,0x48,0x5d,0xe5,0x80,0x06,0x42,0x71,0x29,0xa4,0xd3,0x4f,0xd6,0x81,0xd5,0x2d,0x84,0x0a,0x16,0xba,0xfa,0x15,0x30,0x02,},"\x2d\x4b\x3a\xd0\xcc\x99\xf9\x83\xe4\x1f\x9b\x48\xc4\xa8\x18\xef\xf7\x5f\xcf\xb9\x3a\x12\x29\xec\x27\x40\xed\x19\xc1\x07\xd6\x21\xdf\x78\x05\x8d\xe7\xc2\xdd\x72\x51\xf5\xff\x45\x43\x40\x86\x5f\x6c\x86\xda\x65\x83\x1f\x66\x72\xdb\x23\x17\x26\xfd\xfe\x4b\x9e\xe3\x15\xd9\x3c\x72\x44\xa9\x20\xdf\x37\x05\x4c\x82\x44\x9d\x31\x0f\x89\x29\x32\xdd\xba\xd9\x4c\xc9\xbb\x39\xac\x89\x37\xcc\x76\xc9\x65\x21\xd3\xfd\xc0\x28\xba\x23\x41\x0b\x29\x02\x3e\x81\x38\xfd\x3f\x52\x43\x19\x88\x4e\xe5\xda\xd0\xd2\x34\xc8\xdf\x66\x1f\x88\x24\xbe\x47\x7e\x21\x69\x9f\x63\x69\xb1\x5f\xf3\xff\xef\xc1\x51\xaa\x55\x5b\x3c\x3d\x76\xad\xb4\x5f\x25\x67\x2d\x38\x0d\x47\x2b\x31\x48\xda\xbd\xef\x42\x45\xb6\x8e\x82\x85\x62\xf2\x5c\xc5\xb8\x1d\x9b\xbb\x24\x1b\xca\x9d\x19\x34\xea\x35\x3f\x95\xf7\xdb\xf3\x64\x64\x33\xe8\x1a\x35\x4e\x1e\x20\x56\xb8\x1c\x15\xaa\x1f\xa8\xed\x7a\x9d\x1a\xf9\x92\x38\xcd\x5a\x5a\xe9\xe8\x41\xc4\x8d\xc3\x48\xae\x1d\xe7\xc4\x1a\xca\x23\x32\x82\x36\xbc\x38\xb4\x7f\x47\xc7\x36\xb2\x57\xa3\x07\x8d\x57\xd5\x74\xb6\x47\xa7\xfc\x8c\x4d\x01\xbc\x50\x30\x21\x50\xd5\x03\x2b\xfa\xcb\x04\xbb\x0f\xd1\x55\xd9\x4d\x92\x06\x66\x77\x20\xe1\x80\xa6\x45\xaf\x46\x24\x59\xe3\x32\x6d\x46\x0d\xa3\xc4\x8e\x75\x72\x67\x8e\x19\x19\x26\x8d\x3e\x47\x40\xd6\x2a\x26\xf7\xc8\x55\x9c\x1c\x43\x9b\x4b\x0b\x0c\x59\x42\xa6\x20\xcf\xdb\x93\xcc\x68\xaa\x15\x52\x0f\xf2\x86\x42\x69\xd7\xa0\xc1\x55\x78\x0a\xdc\x6c\x18\x8e\x0b\x56\x5f\xb9\x59\x43\x19\xe6\xf5\x1d\x15\xca\xf6\xb2\x80\xe7\x15\x8f\x25\x79\x94\x07\xf3\xba\x0d\xd1\xce\xea\x64\xb9\x32\x6d\x2c\xfd\xef\x01\x7e\x1f\x17\x2f\x4d\xde\x0f\x7e\x46\x13\x50\x1a\xf0\x1e\xe0\xac\x30\x09\x5f\x48\xb5\x95\x90\x90\x2b\x1a\xec\xfe\x09\x34\x13\x91\x8d\x83\x5a\xdf\x96\x2e\xcf\x18\x58\x0d\x16\xf9\xfd\x4f\x6f\xa1\x09\x8a\xf1\xd8\xa2\xbc\x24\xdc\x86\xf7\x1d\x0a\x61\xff\x15\x00\x10\x86\x7d\x08\x69\x87\xb5\x1d\xd0\x30\xf5\x0a\xb6\xe3\x74\xb8\xe0\x11\x84\xb3\xe2\xb2\x14\xab\x1c\x7f\xdf\xae\xdb\xc5\x45\xe3\x8c\x3c\xd2\xf6\x98\x29\x79\x54\x1f\xe0\xff\x88\xbe\xd6\x75\x06\xda\x95\x72\x7a\xf1\xa2\x03\x8f\x32\x40\xae\x5b\xfd\x30\xee\x09\x21\x0e\x00\xfd\xcf\x2a\x06\x4d\x5d\xb4\x61\x49\x46\xbd\xa9\x72\xc6\x70\x08\x1a\x6e\xe6\xa1\x0b\x63\xf6\x73\xc8\x3c\x91\x5c\xa5\x57\x3e\x0e\xd6\x87\xb0\x06\x7c\x40\x07\x92\xa9\xbc\xc3\x34\x4e\x0e\x43\xf5\xdf\x63\xfe\xd5\xef\xa8\x5e\x9a\xaf\x85\xe4\xd7\xa2\xc5\x3a\x6c\x92\x82\x8e\x07\xfe\x63\xe2\xd2\x3f\x1b\xdf\x97\xd8\x4a\xdc\x36\xe9\xfc\x95\xfa\xad\xf0\x3e\x06\xd6\x5a\x19\xc5\xe2\x85\xef\xfd\x0e\xa0\xcf\xa8\x39\xd5\x5a\x0a\x0d\xbf\x6d\xa2\x87\x85\xc7\x7f\x5c\x04\xbf\xd5\x99\x74\xef\x37\x93\xcd\xc3\x98\xdf\x7a\x1b\xbc\x9c\xfc\xfc\x3a\x51\xff\xa9\xa2\x0d\x60\xc4\x7b\x24\x5d\xaf\xa3\xe4\x46\x23\xcd\x71\x1d\x77\x62\xc5\x0a\x67\xd6\x50\xc7\xe8\xc4\xfd\x3b\xeb\xc0\xc4\x98\xd2\x15\x2a\xb9\x82\x7c\x70\x0c\x7b\x28\x61\x56\x57\x49\xb5\x86\x4f\xec\x95\xb7\xf6\xb1\x99\x4e\x78\xd8\xf8\x5d\x06\x9c\xc1\x1f\x85\xbe\xd9\x71\x2f\x7a\x9f\x06\x0b\x0b\xf6\x75\x32\xe8\x8e\xb9\xdf\x3e\xb4\xa8\xd2\xfb\xba\xa8\x5e\xda\x92\x6d\x81\xc4\x9f\xb8\x6e\x73\x73\x1b\x7e\xd2\xa1\x90\x50\x78\x51\x3f\x7c\xa0\xfd\xcc\x3b\x1d\x57\x6e\x6a\x60\x12\x4c\x44\x61\x8d\xf1\x89\x0e\x16\x97\x94\x95\x6c\xb1\xec\x50\x1b\xa2\x04\x99\x70\xc8\xe7\x4c\xc1\x80\x06\x4c\x18\x44\x68\xbe\x4f\x08\x9a\x3a\xe2\x26\x3c\x85\x58\x63\xb6\x2c\x28\x31\x3d\xdf\x9c\xa8\x5b\xf6\x6b\x08\xa2\x64\x15\x5a\xd7\xc3\x28\x23\x8d\xfe\x61\x4a\x07\xed\xe9\x15\x5a\x09\xcc\xaf\xf9\x22\x92\x24\x93\x41\xba\xed\xcb\xe0\xe6\x46\x6e\x2c\x76\x04\x5e\x46\xda\xd2\xfc\x89\x9a\x17\x82\xe0\x09\x98\xe7\x9a\x83\xab\xfa\xe9\xb7\x06\xf7\x07\xf5\x8e\x73\x02\x03\xe1\xd2\xcc\xa0\x28\xc9\x22\xbe\xb6\xd1\x57\xfa\x7a\x98\x13\x2a\x92\x1a\x3d\xa2\x1f\x2f\x76\x9b\xb6\xc1\xf5\xf1\x9e\x9e\x85\xa1\x3b\x78\x1a\xf1\x41\x03\x9d\x51\x4e\xe1\x07"}, {{0xf3,0xf8,0xd6,0x2f,0xee,0x3a,0xf3,0x75,0x66,0x96,0x30,0xcb,0xf0,0x63,0xbf,0xa9,0x30,0x18,0x9a,0xf1,0x36,0xcd,0x75,0x91,0xe2,0x4d,0x57,0x8d,0x73,0x66,0xbf,0x61,},{0x47,0x14,0xc6,0x04,0xaa,0x95,0xe1,0x82,0x8a,0x28,0x36,0x7b,0xa7,0x87,0x60,0xb5,0x89,0x64,0x31,0x68,0x3e,0xe9,0x96,0xcf,0xf9,0x68,0x71,0x77,0x32,0x91,0x95,0x3c,},{0x8d,0x6f,0x7c,0xee,0xb9,0x30,0x8b,0x4a,0x30,0x38,0x79,0xfc,0x6c,0xfa,0x5c,0xa8,0xe0,0x5d,0xfc,0x3d,0xef,0xc2,0xb2,0xcd,0x29,0x10,0xdd,0x4b,0x17,0xc9,0x4e,0xae,0xe8,0x45,0xab,0xe6,0x5f,0xd7,0x15,0xdf,0x05,0xb0,0x12,0x8e,0x43,0x16,0xe2,0x33,0x47,0x99,0xc6,0xe8,0xfa,0x74,0x7e,0xbc,0x8a,0x04,0x0c,0x74,0xf5,0xa1,0x48,0x0c,},"\xe1\xdd\x1f\xfd\x73\x7a\xc6\xdc\x24\xb3\xb9\xce\x3b\x79\xe8\x35\xbf\x69\x8e\x93\x13\x03\xd8\x09\xce\xa1\x78\x2d\xc3\xaf\x63\xa0\xd5\xe6\x73\x92\x82\x3d\x14\x39\xe7\xb6\xe3\x37\xb0\x1c\x8b\x21\x54\x34\xc2\x78\x2b\x3b\xe7\x44\x3c\xb5\xc8\x81\xe5\xfb\x6c\xf3\xbb\x24\x41\x28\xb4\xda\x6a\x6f\x42\xb2\xbb\x2c\xd7\x51\x29\xd5\x64\x18\x85\x43\x48\xc3\x39\xdc\xd9\x12\xb4\x55\x57\xa9\x15\xe9\xfd\x7f\x37\x91\x62\x36\x51\x0c\xb6\xc3\x31\xc1\x40\xb8\x7d\x22\x53\x11\x60\x0b\x8d\x13\x2a\xc4\x74\x73\x83\x9c\x72\x0f\x9f\xf0\xf9\xc1\xdc\xaa\x85\x81\x5a\x9d\x27\xb9\x75\x8c\xd9\x1d\xc5\xd3\xe5\x33\x26\xfc\xdf\xb2\x73\x0e\x52\xbe\x31\x03\x95\x7a\xc8\x91\x49\xa4\xc3\x00\x4c\xb6\x03\x8c\x0d\x80\xfa\x72\xac\x63\x0d\x33\x3b\xe5\xad\x4a\xdb\x58\x5a\xeb\x71\xae\xf1\xcd\xfd\x57\xb9\x15\xfa\xc4\xf1\xaf\x78\xe7\xa5\x97\xf8\xd1\xba\x06\x67\x2b\x19\xc0\xb6\x58\x08\xa8\xa0\x71\xff\x84\x09\x03\x43\x79\x58\x9f\x3d\x41\x30\x2d\x2d\x39\xb3\x31\x8e\x8c\x00\x90\xfa\x36\xcb\x95\x88\x57\xff\x5b\x21\x1c\x96\x66\xe2\x7b\xc8\x95\xab\x9d\x00\x6a\xba\xf5\x95\x0a\x03\xff\x17\xea\x98\x21\x78\xa4\x46\xdd\xa2\x46\x6f\x5a\x40\xb8\xf8\x95\x50\x9e\x4f\x4d\x4a\x6a\x27\x39\x99\x7f\xbd\x49\x68\xf8\x94\x36\xce\xe3\xd8\xed\xb8\xa6\xda\x9b\xd3\xd5\x5b\x06\x64\x90\xe8\x33\x9c\x78\x93\x5b\x77\x88\x3f\x95\xb9\x32\xfa\x5e\x6b\xb7\xdf\x30\x3b\xe3\x0f\xa5\x67\x24\x9f\xff\xb4\x73\xa1\xe4\x64\x32\x2d\x7c\x10\x3f\xe8\x22\x4c\x7e\xc5\x7b\xd3\x9b\xcd\x03\x0b\x96\x78\x7a\xeb\xcd\x20\xe9\xad\x65\x1c\xfa\x2b\xf0\x4b\xa7\x0a\x1c\xf6\x48\xe0\xa5\x44\x95\x67\x20\x2a\x93\x7a\x45\xbe\xcb\xb6\xfc\xde\xd3\x0c\xf9\xb5\xc7\x48\xf8\x82\xb5\xdc\x2a\x4d\x65\xbe\x69\xfd\x7d\x9c\x38\x1e\x83\xd0\xdc\x2a\x34\xb6\xde\xe9\x12\x20\xba\x90\x6e\x51\x2f\xcd\x63\x36\x8e\x2c\xe7\x33\xe4\x66\xb4\xb8\x2b\x84\xfb\x0c\x71\x7d\xc8\x94\x5c\xaf\x6d\x46\xac\x1c\x2f\x64\x18\xf7\x72\x9e\xf4\xc3\x5e\x40\x24\x22\xd6\x4b\x1c\x3e\xbd\x1b\x32\xa3\x0f\xc4\xc5\xee\xce\x7d\x44\x08\xff\x67\x9f\xf0\x1a\x1c\x7b\x03\xca\x51\x7b\xe5\x2e\x6a\xe7\x65\x0f\x7b\xad\x38\x90\x1e\x34\x8a\x55\x93\xbc\x99\x8f\x7c\xf2\xea\x97\x72\x9c\xb0\x04\xf5\x61\xb3\xb5\x8f\xe5\x98\x09\xa4\x1f\xd4\xb3\xb7\x66\x60\x90\x6a\xd9\xed\xa2\x3b\xf9\x25\x43\x7e\xf4\x52\xb1\x6f\x54\x0b\x3b\x80\xa3\x5a\x70\x93\xc2\x73\x4e\xef\xe6\xfa\x97\xd8\x81\xd7\x9e\xf5\xb7\x67\xd9\x88\x9f\x11\x84\x77\xb7\x3f\x58\xa4\xc0\xcb\x15\xe0\xac\x81\x01\x12\x05\x71\xca\x32\xce\x87\x1f\x30\x8a\xd9\x05\x7a\x80\xc8\x28\x15\x4f\xb1\xbc\x2b\x20\x1d\x0c\xd1\x00\x6e\x02\x2d\x44\x4d\xc9\x3f\x1b\xcf\x22\x4d\xb7\x4a\x5b\x37\x3e\x15\x3e\x85\x18\x54\x94\x8b\x6d\xa1\x47\xb7\x32\x87\xcf\x17\xd1\xfb\x72\xb4\x82\x76\x11\x10\x36\x09\xca\xb2\xa1\x77\x9e\x97\x93\xb9\xa7\x08\x20\xfc\x6f\x38\x28\xa6\x4c\x9e\xac\x35\xef\x7a\xa7\xb1\x76\x09\xd8\xef\xf8\xa9\xe5\x2e\x4e\xbc\xd8\x6b\x1e\x14\xfd\x14\x0b\xea\x47\xc6\xb8\xdd\xc4\x1e\x8c\xd2\x71\xeb\x92\x28\x7c\xbd\x06\x10\x51\x22\x42\xf7\x6a\x1e\xf3\xea\xc1\xe4\xbb\xbc\x1a\xda\xe5\x00\x34\xa7\xa2\x64\x7e\x08\xb2\xfd\x20\xaa\x93\xa9\x3c\xb2\xff\xde\xbf\x2e\x46\x1e\xcc\xef\xbb\xd1\xfe\x89\x4c\xe7\x0a\xdf\x79\x01\x73\xba\xe9\x6f\x5a\x55\xa1\x88\x7e\x9a\xe0\x9f\xce\xd1\xd4\x30\x6c\x29\x1c\x6b\x19\xec\xac\x47\x07\xe9\xef\x71\x3e\xa1\x8a\x75\x62\xc6\x67\x83\x26\x22\x89\x92\x07\x7a\x46\x69\x73\x49\x66\x10\x80\x00\xb4\x14\x4f\x45\xa0\xc3\xa2\x86\x3a\x4c\x6a\x3c\x07\x63\x2c\xb9\x3e\xb1\x97\xd2\x94\x88\x4d\x9c\xa3\xdd\x4b\x21\xf3\x9d\xb7\x07\xf6\x3a\x7f\x9a\x57\x0f\x7f\x0f\xeb\x99\xb2\xca\x7d\xa7\xdf\x92\xa1\x77\xab\xcf\xe8\x6e\xc6\x61\xd3\x0b\xcd\xcf\x15\x22\xbd\xb1\xfe\x11\x67\x32\x58\xdf\x7e\x46\xef\x4d\x32\x66\x65\x09\x31\x56\x55\x3f\x28\xb3\x56\x3f\xe7\x19\x2f\x72\xf5\xf9\xb3\x90\x3d\x79\xfe\xa0\x4e\x2c\x48\x8b\x46\x5b\x49\x78\xd6\x9f\x26\xe0\x5a\x59\xd5\xed\x4e\xf4\xca\xb2\x32\xac\xfd\x56\x4f\xc6"}, {{0x86,0x5a,0x43,0x2e,0xcc,0xe7,0xe7,0x8c,0x42,0x70,0x9f,0xc1,0xe5,0x31,0xdf,0x5e,0x39,0x59,0x13,0x2b,0x2b,0x6f,0x31,0x8f,0xd1,0xc3,0x45,0x21,0xf9,0xa2,0x6e,0x3b,},{0xc7,0xa8,0xca,0xf8,0x93,0x0b,0x62,0x2a,0x50,0x13,0x37,0xf9,0x28,0x40,0xed,0x96,0x61,0x1a,0x32,0x20,0x80,0xfd,0xe5,0xe4,0x9f,0x0a,0x2f,0x6e,0x33,0xb8,0x82,0x83,},{0x32,0xbb,0x75,0x20,0xe2,0x63,0x9c,0x6c,0xca,0x19,0xa2,0xb9,0x83,0x6b,0x08,0xf8,0xb0,0x83,0xca,0x33,0x36,0x9d,0xdf,0x5f,0x9a,0x87,0x7d,0x4c,0x7a,0x9e,0xb0,0x5f,0x9c,0x3d,0xc3,0x4e,0xd4,0xcf,0xa4,0xb2,0x83,0xe5,0x19,0x22,0xb0,0x94,0x06,0x6c,0xe9,0xff,0xa4,0xd9,0xdf,0x62,0x19,0x10,0xca,0x37,0xb0,0xb3,0x7f,0xba,0xbb,0x0e,},"\xb2\x31\xb6\xd2\xec\xde\x49\xf5\x13\xb0\xdf\x25\xaa\xfc\x3e\x5d\xa4\x5b\x6a\x99\x58\xd6\x0f\x54\x64\xca\x59\x3c\x03\x00\x5e\xcf\x36\x1e\xf1\x69\x6b\xb6\xe5\x5d\x65\x38\xe3\x4b\x38\xf3\x24\xc2\x1c\xea\x5c\xc8\x1a\x00\x73\x27\x8b\xb9\x27\x27\xef\xf8\x1a\xf5\x61\x80\x2d\xce\xf3\x3b\xec\x10\xad\x65\x94\xe2\x2d\x9c\x44\x18\xaf\x39\x88\xa4\x3e\xd0\x87\xb9\x95\x4b\xf8\xd6\x28\x3e\x4b\xea\xe8\xc0\x96\xde\x66\x06\x75\x1c\xbe\xd6\x85\x84\x6c\x66\x30\xb9\x52\x8f\xf3\x64\xa7\xc4\x84\x64\x11\x34\x72\xc9\x86\x0b\x33\x71\x96\x3c\x91\x14\x95\xa9\xc6\x28\xa3\xe3\xe4\x7a\xb0\x99\x1f\x10\xdd\x1d\xd3\x31\x61\x52\x52\x62\xd6\x3b\xab\x64\x88\x19\xd5\x7d\x12\x69\xe1\x14\x82\x5c\x54\x34\xe6\xb2\x84\x5f\x42\x79\x5d\x4f\xb0\x83\xad\x79\x40\x1f\x2a\x07\x61\xc6\x34\xa5\x45\xae\xc7\xcd\xb1\x3b\x5b\xe4\x49\xf1\xd8\x29\x32\x63\x78\xed\x1f\x49\x3f\xe8\xc8\xe9\xb0\x68\xcc\x1d\xbc\xf1\x65\x55\x0b\x81\x32\xc3\x19\xda\xc4\x87\xb8\x7b\xb2\x2a\x54\xcd\xf6\x0a\xac\x71\x51\x61\x82\xa4\xe6\x9b\xa0\x83\xf6\xe8\x6d\x1a\x4f\x05\x08\x3a\x77\x61\x9e\xf2\x39\xf7\x02\x39\x6d\x7e\x46\x96\x8c\xc0\x4a\x3b\x34\xdf\x32\x65\xec\xf1\x61\x57\xab\xe1\x5c\x64\x2c\xd7\x42\x70\x96\xd8\xd4\x0d\xb0\x02\xd1\x96\xca\xb1\xbe\x30\x4b\xcf\x32\x2d\x9d\x1a\x24\x51\xb6\xc1\x1e\xea\xf3\xe8\xe3\xd9\x29\xf4\x80\xb6\xb7\x78\x04\xfe\x84\x49\x6c\xa7\x57\xe0\x43\x37\x91\x4c\xe9\x44\x75\xd7\x99\x0c\x74\x57\xc8\xe6\x06\xf8\xbc\x20\x7d\x2d\x48\x11\x9c\x80\xa6\xb4\xa9\xe0\x7b\x22\x92\x26\x57\x0d\xcd\x99\x49\x89\xfe\xcc\x69\x4c\x6c\x2f\xb5\x97\x5c\x9a\x6a\x9b\x74\xe8\x15\x9c\x27\xdd\x36\x77\xdf\xd5\xcb\x65\x1f\x1e\x32\xad\xfa\xfd\x81\x0b\x6e\x5d\x5e\xfb\xac\xe3\x1a\xe6\xd9\xb1\x21\x91\xe8\x93\x98\xda\x06\x3f\x13\x8b\x75\x84\xc5\x8e\x77\xe7\xf9\xfd\xd7\xfb\x9e\xf5\xd6\x8a\xe4\x9c\x6c\xca\xd2\x8d\x18\xbc\x60\x09\xd4\x18\x7e\xd1\x42\x02\x24\xa5\x65\x8a\xad\xf1\x35\xb5\xa9\x53\xf2\xdc\x3c\x8b\xfc\xaf\x66\x9e\xd5\xda\x38\xd0\x14\x4f\xd9\x66\x5e\x6f\x06\x77\xd3\xfc\x88\x04\xe2\x1c\xc2\x5f\xd5\xe0\x1a\x3f\x3f\xa8\x3e\x57\x1e\xb2\xf8\x82\xa7\x65\x9c\xe5\xd8\x64\xd8\xbb\x54\x07\x2b\x09\x86\xa8\x54\xf1\xa7\xf2\xd2\x72\x0d\xf8\x57\xe6\xd4\x21\x96\x30\x84\x1b\x1c\xcd\xcf\xc6\x72\x6b\x91\xbf\xc1\x7e\x18\xc3\xe3\x48\x0c\x23\xa2\xc0\x5e\x4b\xfe\xdd\xd4\xdb\x9e\xf4\x23\x88\xf2\x34\xfd\x3e\x4f\x3d\xad\x66\x60\x26\xe2\x78\x06\x12\x37\x41\x61\x31\x6a\xfc\x76\x65\xf9\x41\x1b\x6c\x5a\xa7\x89\x33\xb1\x80\x21\xc0\x12\xb0\x84\xf3\x24\x47\x60\xa4\xea\x1b\xcf\x31\xcc\x9f\x5c\x40\x44\xa9\xbc\xc7\x5a\x98\x67\x07\xf3\x8f\x45\xac\x1c\x7f\xa1\x39\xee\x95\xa6\xd8\xf1\x6c\x3c\x1e\x12\x76\x4c\x4b\x0b\x11\x94\xc0\xfc\x5f\x7e\xef\xf9\xa8\x48\xc4\x05\x0b\x0e\x65\x16\x84\x71\x9d\x43\x8a\xad\x56\x01\x91\x64\xfa\xe4\xf4\x88\x82\x20\x5e\xce\x0b\x99\x73\x67\x91\x08\x4a\x75\x3b\xa7\xd5\x6e\x88\xfc\xee\xa5\x33\x56\x6c\x3a\x2c\xa4\x8d\xd6\xef\xc4\x9b\x27\xdb\xf1\x4f\x26\x16\xce\xd6\x52\xe1\x38\x33\xab\x90\x28\xad\xa4\x54\x43\x1c\x89\xb3\xcb\x74\x41\xfd\xb8\xf2\x3e\x12\xb6\x0a\x1a\x10\x4a\x2a\x8c\xf4\xa6\x4e\x87\x8a\xa2\x6f\x54\xe8\x88\x1a\x4b\x15\x1a\x16\xa9\x6d\xe8\xb9\x80\x7e\x72\x93\x96\xeb\xe3\xe3\xd3\x94\xf8\x08\xbd\x74\xb7\x31\x2f\xe6\xb8\x4b\x13\x12\xaf\x8a\x1e\x41\x33\x59\x9d\x07\xbd\xf3\x3d\xb2\x1e\x01\x6b\x5c\x19\x6c\x1b\xa3\x11\x57\x08\xf5\x81\xbb\x82\xf4\xb5\x7a\x6c\xa1\xa5\x29\xe6\x4d\x19\x30\x42\xc1\xdc\x5f\xaa\x0a\x03\xab\xf5\x38\x49\xe1\xbd\xef\xba\xb6\x4b\x1c\xb6\x0f\xe1\x0a\x3f\xc1\x82\x3a\x23\x4c\x45\xf3\xb0\xdc\xe6\x6a\x46\x73\x9c\x01\xae\xad\x12\xde\x6f\x03\x13\xc7\xbe\x71\x40\x5f\x3f\xdc\x4a\x50\x7a\x9d\x84\xe8\x68\x6f\x6f\xc9\x26\x35\xdb\x0f\x78\x56\xc7\x37\x3a\x61\x8a\x72\x52\xc1\x29\xa7\x76\x0e\x20\x29\x54\x3d\x72\x62\x28\xc2\x1d\x00\xad\x4a\xc5\x2e\x5b\x1a\x6e\x31\x20\x09\x17\xf1\x5a\xf5\x15\x85\x9e\x08\xf2\xa7\x9a\xce\x67\x99\x1e\xd6\x90\x44"}, {{0x2b,0xe1,0xf9,0x8c,0xe6,0x55,0x3c,0x91,0x5b,0x6a,0x09,0x33,0xec,0x0d,0xe3,0x47,0xb3,0x70,0xe2,0x9c,0xa2,0x94,0xe8,0x00,0x55,0x41,0x23,0x9f,0x63,0xb4,0x30,0xd0,},{0x7a,0x6f,0x44,0x69,0xc3,0x0a,0x63,0xf5,0x60,0xf9,0x87,0x34,0xfc,0x19,0x06,0xeb,0xd1,0x37,0x1e,0xd8,0x01,0x25,0xfa,0x3e,0x4c,0x86,0xb4,0x3f,0x26,0x2c,0xab,0xbc,},{0x8e,0x65,0x9a,0x3f,0x53,0x5a,0x58,0x9a,0x5f,0xd2,0xd2,0x17,0xcb,0xcb,0x8b,0x77,0x7e,0x5a,0xf2,0x0b,0x23,0x44,0x32,0xf7,0xda,0xc2,0x9f,0x81,0x0a,0x2b,0x47,0x37,0xc5,0xca,0xb1,0x0b,0x59,0xdf,0xd0,0x14,0x4f,0x30,0x90,0xf5,0xf9,0xe0,0xe6,0x67,0xf0,0xe2,0x1a,0x9f,0x57,0x3f,0xe1,0x3b,0x1c,0x28,0xec,0xcb,0xb5,0x31,0xa2,0x05,},"\x62\x68\x20\x1f\x93\x2a\x7c\xd3\xf8\x79\xae\x6a\xb8\x38\x55\xa2\xf5\x02\x91\xde\x78\x4d\x7d\x9e\x9a\xda\xa1\xb9\xaf\xed\x6f\x5a\xea\x20\x24\x0e\x59\xfe\x93\xe5\xa7\x08\x8c\x95\xec\x8e\x15\x74\x5f\xb8\xfd\xeb\x91\xdf\x01\x51\xc7\xb4\x60\x50\x67\x56\x1e\xa0\x8d\xbf\x00\xc4\xff\xe1\xfd\x0a\xcf\x10\x36\x56\xa7\xb5\x4f\xad\x0f\x25\xab\x16\xb4\xbd\xa3\x47\x17\x9e\xd1\xca\xdb\x7b\x98\xbe\x08\x95\xe0\x50\xdc\xbc\x37\x9d\x1f\xd5\x53\xe9\x97\x95\x92\x8b\x67\xa7\x52\xf8\xd2\xec\x1b\x9d\x66\xbf\x6a\xc9\x97\xe7\x44\xdc\x32\x7f\x24\x22\x30\xf9\x2e\x79\xae\x31\x27\x45\xa5\xab\x6d\xde\xc1\x99\x8f\xb6\x3d\xc4\xf6\xb0\x5f\x14\x72\x22\xd4\xb6\x5a\xce\x90\x17\xdc\x1b\xcd\x67\x5e\x49\x5f\x9e\xab\xb5\xf6\x02\x13\x3f\x6c\x72\xe0\x53\xe9\xf4\xae\x30\xd8\x72\xd7\x8b\xf7\x1f\xeb\xa3\x7a\xcc\x59\x50\x55\xc3\xbe\xa5\x3a\x05\xef\x0c\x7f\x21\x2d\xcf\x4e\x0a\xf8\x38\xea\x29\x28\xf4\xcd\xc9\xfd\xc8\x37\xda\x25\xf2\x69\x66\xb2\x45\x6a\xbe\xa6\x6a\x5d\xfb\x8f\xaa\x8f\xa0\x91\xf7\x33\x1d\x54\x36\xe9\x8a\x8d\x63\x23\xcc\x9e\x9a\x91\xd5\xa0\x2a\x49\x51\x17\x14\x84\x9b\x47\x45\x4b\xaf\x99\xc5\xf8\x50\xa0\x8d\x3d\x98\x41\x0e\x93\x9a\x9e\x89\xb1\x50\x53\x82\x5f\x3e\x9a\xee\x71\x44\x74\x16\x14\x07\x82\xe1\xbf\x3b\x0d\x8b\x4f\xf6\x2e\x77\xa4\xa0\x3f\x71\x0a\x8a\xb7\x6c\xf6\x35\x92\xc0\x5c\x44\x0c\x8f\x06\x47\x70\x09\x91\x63\xc1\x22\x70\xf3\xd5\xec\x9a\x6b\xc9\x71\x5b\xff\xfe\xc7\x69\x61\x1d\x21\xfa\x00\x3c\x3c\xc8\x35\x6c\x97\x5d\x37\xb6\x2b\x88\xaa\xbb\x85\x97\xda\xca\x19\x6c\x96\x48\xa3\x1d\x15\xbb\x0b\x86\xcf\x07\x0e\xe0\x1e\x51\x1e\xf3\x73\xb4\xa4\x4c\x6a\x00\x16\x0a\x79\x7f\x2e\x82\x0b\x71\x6f\x5c\xa6\x44\x64\xe4\x18\x9a\x00\xfe\xe9\x78\xd3\x5b\xf2\x04\xf7\x1d\xb1\xf5\x01\xf9\xb6\xe5\xdf\xc8\x21\xa8\xaf\x5d\xbf\xef\xd3\x53\xad\x36\x81\xf9\xbc\x3c\x22\xc6\x7c\xb2\x11\xb4\x30\xb6\xa5\x5f\x3e\x73\xda\x7c\x3a\x07\xce\xb7\xd2\xfe\x25\x4b\x10\xc2\x70\x3a\xb2\xe2\x29\x4d\xd0\xd3\x15\x2d\xc7\xb2\x1a\xab\x87\xb1\x50\xf7\x37\xa9\x47\x46\x3f\xb2\x04\x17\x5d\xe8\x54\x32\x36\xfb\xb0\xda\x5c\x7d\x48\xc5\x7f\x61\x74\x4d\xe6\xf9\x84\xaa\x8e\x61\xb9\x70\xc6\x2d\x0e\xeb\x84\x9d\xa7\xe8\x9a\x61\x22\x2d\x43\x20\x79\xcb\xcf\x5f\x8a\x2b\xa9\x30\x30\x16\x83\xc0\x78\x5c\x26\xfd\xf8\x5d\xa3\x02\x08\x74\x60\x45\x99\xac\x6c\x84\x7e\xc2\x60\x86\x58\xb5\x78\x8c\x7b\x8d\x3a\x37\x44\xfd\x54\x42\xe2\x4c\x8e\xec\xcd\x42\x07\x56\xbd\xd8\xb8\xa7\x7c\xfd\x80\x58\x96\x05\xdc\xed\x9a\xfd\xa2\xbd\xb6\x30\xa0\xcb\x61\x2f\x73\x9c\xe6\x17\xd5\x4e\xde\x6c\xcf\x36\xaa\x31\xe7\xe3\x73\xd8\xa0\xfb\x1b\x7c\x99\x06\xf7\x6b\x5f\x9d\xe8\xc2\x68\x91\xde\x00\x6e\xb7\x97\xea\xd4\xa8\x6f\x70\x16\xf3\x4b\xcd\xe9\x2f\x94\xac\x3e\x92\x0b\xa5\x8d\x6d\xff\x77\x20\x78\xd8\x02\xa9\x4f\x56\xcb\x26\xbf\x79\x4f\xd9\x0c\xa0\xad\x4f\x2e\x7a\xcd\xc5\x92\x9b\xc7\x36\x49\x97\xde\xd9\x8c\xa6\x9c\x57\x39\x91\xbb\x9a\xb8\x5f\x23\x5b\x63\xe7\x6f\x77\xe0\xab\x45\xe7\x89\x12\x38\x98\x69\xaf\x21\xe7\x4e\x66\xf7\xc4\x56\xb8\x27\xe6\x70\xbe\xb0\xf0\x72\x66\x88\xbb\x1f\x90\x36\xd3\x8d\xa0\x7d\x69\xea\x36\x66\xf7\x6b\xd6\x05\xd8\x2e\x2d\xd6\x38\x7e\xce\x6e\x82\x4a\x56\x97\x00\xf0\x1b\x19\x5d\x1a\x9b\xdc\xb0\xf9\x6a\xb5\xc5\x4e\x06\xc2\x11\x9b\x40\x6b\xc4\x88\x84\x80\x66\x04\x18\xbb\x42\x88\xea\x2f\xda\x96\x63\x1b\x0e\x1f\x60\xac\x86\x1d\x6c\xcc\x4c\x84\x4b\x64\x7a\x7d\x74\x03\xbc\x2d\x15\xba\xfe\x4a\xf6\x77\xe8\x56\xfe\x0d\x2b\x5f\x66\x3b\xe4\xe4\x80\xb3\x8f\x6b\x76\x6a\xdc\xd3\xd0\x52\x98\xef\x13\x98\xd0\x4d\x15\x23\xa6\x8b\x91\xdd\x31\xcf\x5d\xc4\xb7\x3d\xec\xbf\xd7\x21\x3f\x98\x1b\x20\x7e\x1f\x6e\xf2\x25\xd7\x94\x8a\x1a\xa1\x7d\x8d\x57\xa1\x12\xf1\xd4\x46\x8d\x2d\x28\xf7\xec\x2e\x54\xb7\x4a\x69\x2c\x59\x58\x02\x2e\x82\x03\x1a\x41\xb3\x15\x09\x0e\xd4\xd5\xbd\x7b\xd0\xb4\x51\x47\x63\x38\xf7\x39\xa7\xd7\x03\x1a\xf2\xd3\x6c\xaa\x09\xff\xdb\xb7\xc3\x96\x50\x7c\x75"}, {{0x10,0xbb,0xe6,0xe7,0x61,0xa7,0x5c,0x93,0x5b,0x51,0x7f,0x09,0x36,0xfe,0xcb,0x9e,0xc6,0xfc,0x21,0x5e,0x58,0x13,0x08,0x00,0xea,0x18,0xd1,0xff,0x44,0x2a,0x4f,0x13,},{0x86,0x43,0xdd,0xf8,0xaa,0x8d,0x9c,0x8a,0x78,0xb6,0xeb,0x69,0x9f,0xd2,0x0a,0x57,0xf6,0xf1,0x86,0x36,0xb0,0x6c,0xe6,0x9d,0xac,0xdc,0xa1,0x26,0x7a,0xcb,0x39,0x54,},{0xf0,0xf3,0x57,0x41,0x03,0x73,0x31,0x3b,0x7c,0x62,0x52,0xd6,0xd9,0x66,0x00,0x36,0x0c,0x23,0x75,0x2d,0x43,0x1c,0xa8,0x07,0x5b,0xcf,0xb7,0x72,0xd4,0x9c,0xd6,0x09,0xb6,0x5c,0x9c,0xd8,0x38,0xd6,0x34,0xd8,0xd9,0xb9,0x5d,0x1e,0xe3,0x0e,0xde,0xcc,0x13,0xe3,0xca,0x99,0x7b,0x24,0x37,0x30,0x3f,0x8a,0x33,0xa1,0xff,0xc8,0x33,0x06,},"\xe8\x10\x8c\x6d\xe4\x13\x37\x33\xdc\x19\x9a\x73\x39\x2e\x22\x6f\x71\x2c\x36\xa2\x4f\xa9\x1d\x6f\xb0\x9f\x92\xdf\x21\x8d\xeb\x2d\x28\x30\xa6\x68\xfd\x69\x4b\x48\x09\xd0\x25\x35\x07\x23\x12\x47\xc7\xf2\x58\xb4\xd6\x5c\x56\xbb\x69\x34\x5e\xf6\xaa\x97\xe7\xc5\x9e\x81\x53\x77\x5a\x5a\x3c\xf1\x09\xc4\xbc\xa9\x81\x55\x69\xda\x69\x32\xe8\x21\x83\x42\x5b\x42\xd7\x48\x3c\x9d\xbf\xcb\xd8\xeb\x38\xc8\x47\x29\x57\x1e\x8e\xc9\x39\x82\xc3\x17\x71\x67\x59\x59\x8c\x4f\x6a\x1b\x7f\x8d\xa7\x30\x6a\x78\x15\x72\x1c\xaf\x02\xe7\x02\x46\x71\x23\x14\xf7\x66\xbe\x9c\xb1\x77\xcd\x2f\xa3\xbd\xa2\x2c\xd6\x76\xc5\xd2\xe8\x6e\x8d\x79\x8f\xd3\x4f\x54\x3c\x9b\xe3\x12\x96\x51\xf2\x73\xf4\x84\xf0\xb9\x46\x7b\x14\x09\x55\xcd\x29\x81\xff\x26\x03\xc0\xbd\xbb\x43\x6a\xc0\x95\x5a\x11\x6c\x5e\x5f\xc3\x04\x25\xe1\xfe\x78\xf6\x41\x0f\x6e\xf7\x57\xf6\x04\x66\x88\x54\xba\xe7\x9b\xfe\x22\xe1\xa8\x5c\xe5\xee\x5d\x64\x34\xb4\x61\x01\x20\xea\x7e\x5d\x3d\x13\x7c\xe2\x07\x51\x4f\x85\x34\xad\x9b\xf3\x92\xb7\xdc\x53\x55\x51\x4b\x59\xf8\x35\x46\x6c\x8e\xb5\x6f\x44\xed\xdc\x5b\xad\x20\xcf\x0b\x48\x0b\x2e\x82\x2a\x6f\x46\xfd\x95\xf3\x0f\x18\x3c\x7b\xb3\x14\x3e\x4e\x61\x00\xe2\xdb\xc9\xf2\xbf\x0d\x43\x07\x3e\x0f\xe6\x5f\x01\xbc\xce\x6a\x1a\xe4\x01\xc1\x25\x41\xbe\x3a\xe6\x8c\xde\xac\x2a\x4a\xc7\x1f\x16\x63\xb5\xfd\xfc\x2e\x50\xf0\xe0\x77\xfb\x3a\x0a\x8b\x8e\xee\xad\x62\x7c\x1c\x3e\x79\xdd\x73\x61\x04\x6f\x7e\x57\xc1\x74\x36\xc3\x2d\xc4\x43\x2f\x05\x00\x28\xcc\x7a\xa4\x40\x8c\x2d\x29\xd1\xd7\x99\x8f\xdc\xdd\xa3\x2b\xb3\x2f\x70\x4d\xc2\x63\xdb\x9b\x8e\x06\xc5\x76\x30\x87\x0f\x8b\xb6\xec\x66\x1f\xde\x1b\x7d\xa9\x4d\x53\xb0\x47\x70\x1a\x45\x88\x47\x8c\x1c\x66\x23\x46\x74\x1a\xea\xc4\xc2\x53\x38\x55\x6a\x3d\x84\x8d\xe5\xb2\xa2\x3e\xce\xa6\x1b\x77\x6b\xd0\xe8\x03\x7e\xfb\x85\x01\xef\xf2\x39\xc7\xfa\xcc\xa6\xc8\x36\x7e\xd7\xc8\xad\xce\x91\x9f\xef\x1a\x15\x5a\xe0\xd5\x47\x8a\x98\x00\x2c\x95\xa1\x6f\xbf\x4c\x0e\xd0\x16\xea\x5d\x38\x66\xfe\x1d\xe4\x54\x83\x2a\x4e\x95\x65\x97\x6b\x60\xb3\xdd\x2e\xaf\x7f\xee\x61\x2f\x2b\xc0\x40\xd9\x39\x75\x43\x5e\xeb\xd1\x2f\x06\xeb\x09\xec\xea\x2c\x66\x76\x83\x08\xf5\x8c\x77\xac\x51\xed\x7b\xd2\x16\x36\xfc\x9c\xc3\xfd\x14\x87\x0b\xd0\x6b\xdf\x12\x8a\x81\xb1\x47\x92\xe6\x08\xc4\x7e\xa2\xd5\x35\xca\x7a\xa2\x1e\xb8\xa8\xa5\x6d\x76\x99\x16\x63\xa8\x19\x0a\x95\x05\x7d\x33\x67\x1e\x73\xc7\xcb\xce\x5a\x98\xd3\x1e\xf0\xd7\x3b\xd0\xb1\x63\x78\x7b\x7f\xdc\xd2\xdd\xfc\x72\x96\x0f\x2b\xe3\x20\x84\x6d\x4b\x29\x08\x0d\x7a\xeb\x5b\x7e\xa6\x45\xa2\xad\x5a\x59\xc0\x12\xbf\x7b\x95\x15\xd8\x59\xe1\xc1\x47\x2e\xf8\xa4\xd3\xc9\x5e\x71\x1a\xf9\x7a\xe4\x61\x8e\xfb\xab\x3d\xff\xe8\x8c\x9f\x6a\xf4\xa0\x9b\x0e\x73\x38\x7e\x25\x1b\x77\xd7\xbf\xf5\x21\x4f\x79\x18\x62\xdb\x69\x88\x41\x1e\x2a\xe2\xc7\x5b\xf2\x8d\x28\x60\x2a\x63\x7c\x26\xf4\x9c\x18\xd3\x09\xd2\xfc\x58\xa1\x26\x66\x7a\xd3\xc2\xec\x16\x0c\x99\xba\x40\xfb\xda\xc1\x7e\x7e\x4c\x21\xa5\xd5\x07\x85\x97\x62\xeb\xa0\x9c\x41\x60\xdf\x66\xf5\xfe\xef\xe6\x71\x5a\x28\xc5\x29\x6c\xf4\x3e\x5e\x77\x1f\x31\xfc\xe5\x13\x3b\xe9\x7c\xab\x57\x30\x1b\x4c\x9d\xf9\xcd\x9a\x4a\xcf\x1c\x33\xfa\xc9\x46\xfa\x15\x96\xfa\x65\xc8\xf3\x65\x8b\xe4\x7a\x47\x3a\x62\xc5\x21\x81\xec\xa1\x83\xe4\x24\x6c\xd6\x24\xd8\x78\x3d\xcc\xe5\xfd\xcc\x1f\xea\x17\x3f\x80\x71\xf7\x07\x4f\x55\x89\x7d\xe9\xbf\xe8\x4a\x6c\x4f\xdf\x80\x2d\x50\x26\xb8\x14\x5e\x6c\x8c\x89\x50\xaf\xc5\xb4\x0f\xd0\x35\x6f\xc5\x5e\xe1\x7e\x1f\x85\x3a\x4c\x2f\xcc\x34\xa1\x36\x9b\x87\xd2\x8d\xc2\xfd\x20\x10\xf1\x99\x03\xaf\xf8\xe4\x6d\xe0\x49\x38\xf4\x94\x82\x45\xd5\xb4\x25\xd0\x74\xac\xdf\x2b\xd8\x0b\xfc\x37\x35\xcc\x34\xa2\x25\x90\xf1\x94\xaf\x93\x13\xee\xf4\xab\x5f\xde\x61\xf1\xf9\xb5\x85\x78\x63\x8f\xcb\x4f\x28\x50\xb2\xfc\xe6\xe0\x3d\xb4\xd0\xa8\x34\x84\x81\x63\xc4\xb2\x7e\x12\x9f\x5c\xc7\x4f\x67\xf0\x08\xa2\x71\x2d\x1d"}, {{0x18,0x6d,0xcc,0x7e,0xfc,0x5e,0xd7,0xe6,0x1a,0xe5,0x3d,0xc4,0x20,0x93,0xba,0xe8,0xf1,0x5d,0xd9,0x9f,0x0f,0x03,0x33,0x26,0xc5,0x76,0xff,0x75,0x69,0x50,0xd0,0x6d,},{0xc8,0xd1,0x41,0xac,0xb6,0x42,0xaa,0x9b,0xfb,0xd5,0x43,0x27,0x7c,0x2d,0xca,0x8a,0xa9,0x88,0x8e,0xef,0xf0,0x45,0x43,0xb3,0x78,0x9b,0x21,0xf2,0x6a,0xeb,0x0f,0x71,},{0x89,0x45,0x06,0x97,0x87,0xc1,0xc6,0x76,0xa8,0x4a,0x70,0x3c,0xae,0x1e,0x0b,0xac,0xae,0xff,0xd3,0x3e,0x91,0xbe,0xc3,0x60,0x3e,0x1f,0x13,0xfb,0x17,0x0e,0x31,0xe6,0xd7,0x04,0x9e,0xda,0x2b,0xf6,0x27,0x18,0x0f,0x45,0x6c,0x3f,0x7a,0xab,0xfc,0xd3,0x6c,0x49,0xa8,0xc0,0x4f,0x8a,0xe6,0x92,0x9e,0xc5,0xad,0xa0,0x7b,0x65,0x72,0x08,},"\x97\x43\x64\xd6\xc8\x38\x84\x2c\xcc\x4e\x74\x9e\x6a\xfd\x53\x71\x70\xdc\xd8\xcc\x50\xd6\x66\x54\xd1\x05\x48\x23\x39\xca\xbd\xf7\x4e\x32\x93\x5e\xe2\x19\x27\x2e\xa1\x68\x4f\xb9\x3c\x1f\xab\x42\xb5\x63\x18\x39\x24\x35\x91\xbd\x07\xd3\xbe\x94\x9b\x0d\xd1\x5e\x31\x96\xdf\x19\x6b\xa7\x52\xad\x11\x21\xac\x71\x12\xd5\x66\x94\x4e\x15\x3a\x4e\x06\x19\xb3\xa2\x32\x24\x1f\x02\x0b\xe0\x71\x9f\x6b\xec\x91\x8b\x26\x82\x8e\xb1\x67\x0e\xcf\xc7\x3c\x66\x84\x4e\xa3\xe4\x04\xc6\xa2\xfc\x01\xbe\xb4\x03\xc9\xd6\xca\x55\x1a\xd8\xa6\xe7\x1f\x46\x64\x7f\xa6\x05\x3f\x03\x14\xf8\x12\x4d\x8d\x2b\xc1\x2c\xc8\xfa\x8d\xb9\x5f\x2b\x73\x53\x75\x20\x1b\x81\x6a\x9c\xf4\x0f\x83\xee\x4b\x86\x71\x61\x80\x32\xde\x22\x9c\xe7\x62\x71\xd0\x3d\x26\x72\xa1\xae\x4a\x28\x8c\x85\xdc\xd2\x7f\xb8\x45\x2a\x81\x32\xe9\xff\x29\xe1\xe8\x9b\xf1\x1b\x1c\x83\x51\x92\xc0\x4b\x13\xbe\x14\xf3\xcd\xe5\xd3\x7c\xe9\x6f\x1d\xc2\xa9\xcc\xda\x0c\x4d\x73\x7b\xca\x1f\xa2\x20\xd2\x1b\xf3\x60\xb9\x05\x15\xbb\xd2\x26\xbb\x2a\x6c\x8d\x5f\x2a\xb0\x18\xd4\x08\x4e\x24\xee\x33\x3c\xe4\xe3\x9b\xcb\x6b\x46\xe7\xae\xb4\xdb\x9b\x6c\x65\xb2\x44\xd9\x82\x82\x3a\x77\x0f\x9c\x62\xa0\xbd\xe2\xcb\xb7\xec\x36\x84\x0d\x45\x51\x87\xfa\xff\x4e\x48\x8a\x5c\x60\x8e\xbd\xb7\xdb\x84\xd8\x7d\xad\x38\x67\xe3\xb0\xd0\x4b\x64\x71\x5e\x16\x56\x0a\x62\xf1\xee\x03\xdf\x61\x83\xfd\x5e\x37\x55\x5d\xa1\x97\x2f\xca\x06\x2d\x12\xbb\x84\x20\xe0\x82\xda\xcb\x8d\xeb\xb9\xc1\x43\x85\x41\xd0\xda\x24\x64\xef\x7e\xc5\x22\x63\xfb\x9b\x9a\x4c\x46\x9c\x83\x32\x3e\x48\x19\xdf\xdf\x4f\xa0\xa7\x70\xc3\xa7\x09\x25\x4e\x05\x31\x48\x30\xe8\x7f\xbb\x67\x36\xc7\x2d\x9d\xab\xe0\x1a\x31\x0e\x91\xeb\xbf\xae\x76\x7a\x1f\xcb\x62\xf6\x4f\xa3\xba\x8d\x53\x40\x0d\x64\x69\xad\x1c\xcb\x81\x1f\xb9\xe1\x15\xf1\x41\x27\xb1\x3e\x83\x64\xaa\x2f\xe8\x0b\xbc\x88\x6a\x10\xdf\x1b\x9c\xc4\xae\x46\x01\xf5\x46\x1a\xf0\x91\xf5\x26\xd2\x72\xda\x9b\x20\x38\x57\xa4\x44\x7e\xab\xde\xf4\x39\x83\x04\x96\xa5\x75\x9c\x21\xde\x65\xba\x3a\x3c\x8b\x8e\x93\x9c\x46\x13\x32\xa9\x24\x85\x2c\x20\x5c\x77\x11\xf3\xa6\x8a\x23\x67\xa9\x45\xde\xf4\xfb\xe5\xf8\x1c\x60\xcb\xb7\xe3\x94\xa2\xa4\x9b\xe9\xec\x2a\xae\xb1\xf3\x30\x57\x59\x79\x44\x6a\xd9\xd0\xd5\x4a\xbd\x43\x6f\x28\x60\xf0\x42\x34\x26\xf4\xbb\xc2\x6b\x3b\x9f\x65\x0d\x69\xb1\x00\x72\xd7\x47\xa3\x9e\x47\x8f\x45\x5e\xaa\x12\xc7\xc6\xe1\x2b\xfc\x45\x36\xa3\x59\x43\x44\xbd\x02\xb6\x20\xe3\xe2\xb4\xe0\xd5\x34\x08\x9d\xd7\xb0\x4f\xa6\x34\x80\x45\x67\x58\x6c\x62\xbe\x03\x91\xc7\xbd\xb0\xa9\xfb\xc1\xef\x3b\x33\x21\x1e\xdb\xf8\xef\x58\xc2\xb7\xa4\x9d\x06\x66\x79\x59\xd7\xe5\xd4\x46\x71\xee\x73\x57\xa1\x0b\xa0\xcb\x1a\x44\x5a\xe5\xd7\x09\xce\x25\x5e\x92\xde\x71\x59\x75\xaf\x94\xb8\x9d\x4a\x29\xc7\x1f\x9d\x88\xc8\x5b\x6c\xd1\x1d\x8b\x33\x5b\xf8\xf2\xc6\x58\xe6\xdd\x7c\x3f\x6c\x80\xad\x4d\x0e\x5a\x6c\x87\xdb\xa7\xb5\xb8\xa8\xa4\x7e\x72\xf4\xd1\xd3\xc7\x43\x63\x1d\xf9\xad\xfc\xfa\x45\xce\xe0\x49\x8d\x5a\x44\xa9\xf7\x5c\x83\xb7\x5b\x2a\x3c\x23\x0f\xf0\x76\x7d\x38\x88\xf9\x41\xee\x1b\x66\x24\xdd\x0e\x12\xd0\x6e\xd1\xab\x8b\xb1\x35\xff\xd3\x79\xe9\xde\x37\x88\xbe\x54\x1a\xad\xb2\xd6\xa7\xcc\x60\x13\x16\xf2\x1e\xb9\xaa\xa9\x22\xf5\x6a\x8e\x35\x26\xc9\xbd\x11\x77\xfe\xfc\x2f\xbe\x3e\x43\x0b\x62\x8e\xeb\xd6\x66\x1e\x3b\xa2\xd6\x31\xc6\xa8\x42\x2c\x24\x1e\xcd\x96\x99\x72\x41\x2f\x74\xda\x6b\x12\x43\xbf\x0f\xbe\xe8\xa8\x4d\x52\xe4\x0a\xee\x3f\x1e\x4f\xc8\x31\x40\x2c\x62\xf3\x57\x6b\x22\xe8\xe3\xc3\xdc\x4e\x16\x0b\xc3\xb6\xb9\xd2\xce\x00\x58\x53\x81\x2e\xaf\xc0\xa4\xe2\x5b\xa7\x12\x27\x9b\x00\xba\x3f\x91\x30\xff\x36\xe3\xef\x19\x71\xdd\xe7\x50\x8b\x27\x92\xfe\x64\xd4\x75\x68\x8f\xc6\xf3\x31\x3a\xad\xb7\x85\x30\x2e\x6b\x7f\x9a\x84\xf2\xdb\xc2\xf3\xcf\x06\x0e\xe0\x8b\x46\x37\x36\xf8\x36\xdb\xb2\x62\xd3\x29\x68\x4c\x20\x84\x92\xd1\x7d\x81\x12\x21\xbe\x02\xb6\x5e\xe2\x8e\x11\xb5\x46\x92"}, {{0x07,0x05,0xb3,0x36,0xc8,0x9c,0xa3,0x5f,0xfd,0xde,0x0a,0xf0,0xf9,0x06,0xea,0xcf,0x62,0x3c,0x56,0xc3,0xf7,0x67,0x38,0x16,0x8e,0x76,0xfc,0xd5,0x88,0x2d,0xf7,0x9e,},{0xea,0xaa,0xf2,0xa1,0x5f,0x44,0xb6,0x34,0xce,0xf1,0x5a,0x63,0x8b,0x80,0x20,0x7f,0x61,0x09,0x9a,0x07,0x96,0xf5,0xd4,0x3f,0x3e,0x9d,0x04,0x8e,0x6a,0xe7,0x96,0xc1,},{0xd4,0xa9,0xba,0xe8,0xec,0xc4,0x72,0xc3,0x76,0xba,0xb8,0x05,0xc2,0xce,0x0c,0x1c,0x2e,0xd5,0xfc,0x77,0x37,0x15,0x46,0x8c,0xb1,0xa4,0x93,0x45,0x64,0xda,0xce,0xcf,0x43,0x8b,0x1d,0xd2,0xac,0x1b,0x5c,0x5e,0x33,0x6a,0x1e,0x20,0x70,0x1d,0x5d,0xcf,0x3c,0x8e,0xe3,0xad,0x22,0x3b,0x13,0x9f,0xa9,0x0a,0x1b,0x55,0x2e,0x1b,0x77,0x07,},"\x61\x6f\xe1\x5f\xcc\xb3\x31\x0f\x9e\xc7\x45\x64\x47\xda\xda\xf8\xe0\xa5\xfb\x26\x9b\xe1\x69\xb0\xc3\xea\x2c\xfd\xaa\xa5\x5d\x37\x93\x7f\xe7\x5b\x78\x32\x4a\xc2\x78\xa6\x50\x47\xe0\xae\x4f\x32\x7e\x97\xef\xfc\xb7\xbe\xd9\x1d\x09\xda\x72\x0b\x0a\x10\x1b\xe9\xe9\x6d\x0b\xa8\x5b\x1f\xf4\x9d\x8d\x1d\xf3\x62\xd3\x45\x4f\x0d\xb6\x82\x55\x96\x10\x1c\x97\xe5\xda\xca\xd0\x7e\xc4\x92\xd3\x0f\x2d\x0c\xb7\xe7\xde\x4e\x74\x4b\xb6\xa6\x10\x0b\x75\x4d\xa8\x47\x41\x1d\x09\xaa\xce\x8d\x5d\x41\x07\x58\xb8\x30\x87\xdb\x4b\x5e\x62\x97\x97\x9a\x21\xfb\x65\xaf\x39\x09\x52\xc4\xf9\x36\x26\x0e\x72\xd7\xc7\x83\x27\xb9\x4a\xa6\xcd\x61\x72\x78\xb0\xce\x9e\x1b\xd3\xfb\xed\x93\xb6\x9b\xc6\x49\x85\xdd\xe0\xe2\xc4\x35\x7b\x50\x2f\x05\x5e\xe7\xb0\xa0\x38\x84\x74\xda\xe0\x2d\x6c\x1a\x73\x1f\x87\x78\x5d\x75\x3a\xeb\x0d\x9c\xfd\xf8\x50\x02\xdf\x56\x6f\xc2\x50\x7d\xe7\xba\x6f\xd0\x35\xbe\xe1\x7a\x2e\x80\x8b\x4a\x75\x88\xc5\x83\x37\x5c\x82\x40\x7a\x40\xae\x9e\xeb\xdf\x94\xdf\x2f\xb8\xca\xbf\x17\x60\x6c\x43\x9e\xa7\x04\x59\xb2\x12\xaa\xe4\xa3\xf5\x30\xec\xad\xc5\xe8\x8e\x25\x48\xfa\x64\x3c\x7d\xdf\x50\x63\xb2\xe1\x06\x73\xe5\x9d\x07\xfe\x90\x68\x92\xb6\x7e\xb5\x8f\x93\x88\xa5\x6b\x37\x04\x52\xe9\x97\x77\x55\xfc\x04\xdf\xbc\x77\xda\x6c\x05\xbe\xdd\xeb\xf0\x36\x52\x56\xb5\x2c\x9a\xef\x8a\x82\x17\x3b\x8c\x89\xfb\xd9\x8c\xea\x36\xa8\xb8\x96\xfe\x66\xd3\x7c\xa7\x9b\xec\x7f\xbf\xe9\x58\xfe\x89\xf6\x76\x50\x85\xb3\x35\xdc\x77\x03\x43\xe2\x30\xca\xdd\xfa\x28\x33\xda\xa6\x62\xfe\x82\x08\xdd\x88\x5a\x6f\xdf\x72\xe3\x6e\xcf\x22\xbb\xbb\xcb\xe7\x9d\x37\x06\x50\x23\x69\x40\xbc\x2e\x6d\x4a\xc7\x4f\xe4\xd5\x54\xc9\xbc\x23\x2f\x07\xd2\xaf\x62\x20\xd1\x57\xbd\x2d\xa6\xa6\x61\x2a\x08\x1b\x4c\x99\x04\xa2\x86\x9b\x13\x7e\xe3\xa0\x85\x6f\x12\xb2\xeb\x87\x62\xdb\x94\xed\x0b\xa1\x36\xf2\x3e\x7f\xb4\xbd\x1f\xcd\xee\x10\xdd\x84\xe2\xcd\x3b\x0a\x49\x14\x8a\xc7\x4d\xb4\x66\xdb\xee\xf8\x1e\x6a\x8c\xe0\x86\x11\x02\xde\x9b\x1a\x3e\x1d\xcf\x5c\x6b\x03\x08\xa8\x2e\x3a\xc7\xc2\x28\x3c\x7c\xc2\xf3\x4f\xfa\x14\x5b\x9f\x74\xb7\x99\x04\xb3\x2b\x79\xe9\x60\xb8\x14\xaa\xde\x63\xa0\xdf\x01\x67\xdc\xd2\x4e\xd9\x0a\x8d\xa7\xb9\x34\xc7\x72\x93\x2f\x5a\x47\x8f\xe2\xa7\x2f\x94\x5a\x13\x09\x6e\xc3\x7c\xe7\x64\xb5\x81\xeb\x89\xe5\xf6\xb2\xbd\x7e\xb8\x8b\x85\xa8\x95\x87\x77\x4d\x45\x8c\x58\xcd\x87\x94\x57\x97\x3d\x64\x8e\xf7\x71\xc5\xf1\xde\xb2\x7a\x0c\xc5\xb2\x92\x46\xac\x2f\xa1\x2d\x18\xdd\xc6\xb9\xf9\xac\x9c\xf1\x46\xc3\xf2\x2b\x1e\x44\x99\xad\xee\xfb\xcd\x22\x49\x74\x0e\x13\xa2\x24\xe7\xb6\xb3\xef\x15\x60\x5e\x7e\x74\xe6\x8d\x7b\x72\x64\x24\x09\xb9\x0c\x4e\xc1\x61\xeb\x24\xc9\xb4\x0f\xf9\xc7\xe6\xe5\xda\x98\x32\x2a\xca\x52\xc4\x6a\x8d\xdc\x19\x0f\x1c\xab\x15\x7c\x4c\x76\x19\x60\x1a\x6b\x33\xdf\x6a\x50\xda\x66\x1b\xc7\x53\x60\xdf\xf6\x97\x50\xd3\x45\x74\x09\xcc\x02\x41\xc3\xe8\xc4\xb3\xe5\x06\xd4\x26\xaf\x52\xb7\x02\x31\xcd\x6c\x91\x26\x0c\xc4\x31\xe4\xcc\xfd\x49\x6c\xa1\x4c\xea\xae\x1c\xda\x78\x72\x1e\x16\x33\x9d\x52\x68\x2b\x69\x51\xf9\x66\xc7\xda\x5c\x6e\x10\xd9\x19\xae\x66\xa9\xf5\x2d\xec\x10\x86\x75\x38\xd3\xdf\x6d\x59\x3a\x32\xdb\x69\x5a\x8d\x77\x45\x70\x35\x16\xea\x56\xf8\xc1\xc8\xf0\xef\x53\xbd\xeb\x7f\x53\xc2\xd9\x44\xf5\x11\x94\x0c\xcb\x90\x62\x49\x22\xac\x59\x9f\x46\x19\xc3\x04\x62\x07\xd6\x05\xf6\xff\x94\xde\x78\x8d\x25\x34\x22\x29\xdc\x8a\xf9\x2b\x5f\xdf\x0d\xd7\x1d\xf2\xb4\x46\xcd\xf1\xd9\xa2\x05\x24\x33\x9e\xe1\xc3\x18\x26\x28\x7e\xf7\x27\x81\xa7\xa3\x52\x89\xf8\x5a\x15\xba\x57\xc7\xfd\x5d\x88\x5b\xd0\x55\x3a\xb4\x08\x05\xf5\x17\xe8\xf1\xb1\xb3\xc4\xfc\x67\x71\xe6\xf2\x24\xbc\x03\x11\x24\xb9\xc9\xae\xb1\x9c\x5a\x96\xbf\x14\x88\xe1\xe6\x6c\x6e\x88\x80\x92\x30\xc8\x3a\x74\x15\x55\x54\xa2\x19\xec\x37\x9a\xe5\x4a\x9f\xe7\x9d\xbe\xde\x3d\x57\x60\x42\xa6\x35\xd1\x97\xf4\xd8\x18\xc7\x78\x75\x5b\x8b\x45\xe5\x13\xde\xac\x88\xf6\x04\x25"}, {{0x95,0x17,0x4a,0x09,0x15,0x68,0x4c,0xdb,0xb6,0x19,0xb0,0x55,0x49,0x5b,0x00,0xf1,0x92,0x82,0xcf,0xfc,0x3b,0x05,0x01,0x9e,0x6a,0xb7,0x09,0xa4,0xa1,0x74,0x2b,0xab,},{0xaa,0x8c,0x87,0x2d,0x7e,0x10,0xb6,0x7f,0x7f,0xf2,0x41,0x72,0xc3,0x63,0x7e,0x80,0x82,0x5a,0x0a,0x71,0xee,0x0c,0x48,0x86,0x3a,0x2a,0xcd,0xcb,0xe8,0xda,0x45,0x9a,},{0x78,0x0f,0x40,0xc2,0x0f,0xea,0x3b,0x11,0xc9,0x42,0x2a,0x43,0xb9,0xa6,0xf7,0x96,0x11,0xe7,0xf1,0xf5,0x9d,0x14,0x88,0xc1,0x5a,0x5f,0xd2,0xd3,0x2c,0x07,0xda,0xdc,0x39,0x1c,0x38,0x95,0x3e,0xdf,0x0d,0xe4,0x8b,0xe5,0x2d,0xa2,0xaf,0x33,0x5c,0x47,0xb8,0xd2,0xe4,0x4a,0xb9,0xd3,0xdf,0xb7,0x6b,0xa5,0x38,0xb0,0x66,0x49,0x52,0x08,},"\x5e\x1a\x74\x00\x45\x6c\xad\x4f\x9b\xa8\x66\x43\xbc\x7c\xbf\x3b\x35\x68\xdc\xb5\x22\xb3\x70\x55\xe8\xc3\x9d\x3c\x80\xf2\x28\x42\x38\xe5\x72\x7f\xd7\x51\x3c\xc8\xb3\x1c\x57\xae\x7b\x40\x50\xaa\x81\x9f\xc2\x36\x09\x30\xeb\x0d\xd6\x77\xa5\xb2\xc7\x29\xfe\xb2\xda\x3a\xd7\x9a\xe7\xfc\xcd\xdd\xb6\xc0\x84\x46\x26\x1e\xc9\xbb\xe5\x9c\x64\xe9\x9a\xbb\xc8\x6d\x3c\x48\x35\xf0\x0f\xef\xe5\x27\x43\x3a\x50\x1a\x3b\x6d\x57\x2c\xf5\xe1\x2a\x88\x01\x0b\x46\xa4\x72\xb9\xbd\x86\x91\xa4\x07\xc3\x65\xf9\xf7\x16\x34\xb4\xd9\x7e\xdf\xdf\xf0\x63\x14\xc0\xc1\xb4\xeb\x93\xc7\x60\x7f\x1d\x6f\xa3\x54\x65\x93\x22\xc2\x84\x07\x3f\x42\x60\x25\x18\xc5\x4f\xdf\x26\xea\x2c\x27\xc8\x0a\x6d\xfa\x20\x56\x83\x91\xab\x35\x72\x82\xc0\x6b\x23\xbe\xdc\x1d\xf1\x26\x4b\x61\x1c\x1e\x9c\xf1\x8a\xeb\xe2\x49\xfd\x86\x17\xc6\xe3\xee\x98\xc5\x3c\x0f\x6f\x21\x75\xc5\x7e\xf8\xe2\x06\xbd\x3c\xf1\x05\x62\x7a\x98\x92\xeb\x68\x99\x20\x21\x3a\xae\xb6\x3d\x87\x66\x3d\xbf\xa5\x3f\x0f\xb2\x81\x62\x69\x48\x29\x6b\x2d\xbc\xdd\xe1\xc5\x1a\xf8\x62\xee\xcf\x1c\xfe\x8a\x46\xa2\xc4\xb2\x8c\xfe\x71\x30\x33\x0a\xd1\x73\xf8\x71\x27\xaa\xca\xff\x43\xc0\xbd\xde\xa4\x8b\x00\x38\x97\x6e\x66\x2c\x04\xb6\xb0\x4a\xd0\x3d\xe1\x24\x62\xc2\x76\x5d\xb5\x35\x04\x95\x20\xcc\x11\x4a\xfd\xb6\xc9\x25\x49\xb0\x54\x6a\x90\x27\xd4\x49\x75\x5b\xeb\x8d\x4c\x17\xe6\xa2\xa4\x75\xf9\x67\x6a\x33\x7b\x4e\x86\x6d\x96\x32\x5e\x38\x9a\x52\xc1\x6c\x51\xe1\x8e\x0d\x81\x03\x34\x0c\x84\x17\xb2\xc5\x7a\x55\xd0\x42\xff\x5e\x5f\xc6\x5d\xf4\x23\xe0\x09\x2b\x0e\xa8\x8b\x96\xa9\x07\xc9\x51\x21\xc5\x47\xa6\x80\x61\xf2\x7b\xcf\xb5\x8c\xe6\xc0\x77\x28\xd4\x84\x6b\xdc\xbf\x0c\x62\x54\x10\xed\xf8\xde\xa8\xcb\x4c\x9d\x0b\xbe\xef\xcd\xe1\x92\x73\x36\x5f\x48\xd7\x5a\xec\x07\xd1\xc2\x2c\xcd\x23\x06\x8a\x97\xc3\xfe\x75\x2e\x87\xa3\x01\x18\xfe\x2d\xfd\x52\x18\xb6\xb1\x25\x15\x4e\x0e\xa3\x86\xcf\x23\x9e\x31\x37\xf8\xca\x6d\x8b\x74\x6b\x6a\x67\xd5\x08\xcf\x8c\x1a\xb6\x3e\x57\x15\xe6\x72\x1e\xda\x5c\x2b\xc3\x93\xa4\x93\xdb\xd2\xf9\xa1\xfa\x92\x6b\x9a\x59\xe4\x5a\x18\x0a\xee\xb0\x25\x99\xa8\xcd\xd6\x86\xf8\x89\xb4\x85\x27\x23\xcb\x6d\xbf\xb5\x01\x4c\xab\x5f\x65\x8a\x30\x9a\x47\x22\x39\x36\x0e\xea\xf6\x4f\xc8\x20\x3a\x3c\x70\x89\x70\xe1\x5c\xbc\xf1\x36\x25\x5d\x96\x44\x6c\x39\xa9\x27\x03\x1d\x26\x7d\x69\xec\xd5\x1d\x7a\xf6\xe9\x1f\xb4\xae\xf9\xd7\x8c\x33\x35\xe9\x07\x11\x33\xcf\xb8\xe2\x12\x99\x90\xc6\x46\x37\xc7\xad\xf1\xda\xef\x2d\xc2\x6c\x11\x63\x39\x9f\x3f\xe1\xe7\x92\x33\x80\x92\xef\x6f\x8d\xfa\xf2\x57\x30\xdd\x2f\xe8\xd9\x78\xf6\xf7\x70\xf5\x2b\x68\x23\x81\x76\x56\x4c\xee\x5f\xbb\x98\x50\xb3\xb3\xa0\x4d\x94\x84\x60\x41\x78\x26\xeb\x2e\xb2\x4f\xcc\x5f\xe3\x53\x34\xbb\x95\x21\xe8\x7b\xc4\xdb\xde\x2a\xc9\xe1\xc9\x89\x49\xdc\x2d\x29\xad\x27\x9e\x38\x84\xb9\x05\x26\x8e\xbd\x08\x08\xbf\x41\x82\x57\xe7\x5e\x26\x2b\x4d\x01\xb0\x24\xa6\xe9\xaa\x7b\xd5\x01\xdb\xa9\x4f\xf5\x06\x39\x4b\x4b\x0a\xe6\x08\x1e\xa7\x30\x30\xc4\x3a\x6a\x91\x76\x6e\x80\xf9\xf4\x2c\x0b\x68\xb9\x84\x19\xad\x4e\xee\x4e\x9a\x72\x8a\xde\xfb\xd7\x9e\x83\x1f\x70\xf4\x1e\x62\xb4\x3f\x0b\xf4\x2b\x3b\x2c\xd5\x3b\x55\x89\x11\x76\x64\xbc\xeb\xc4\x09\xa7\x64\x5b\x1e\xed\xda\x48\x2f\x6b\x68\x95\xa6\x57\xba\x78\x9b\x89\xe5\x02\xd6\x99\x87\x51\xd6\x30\x3d\xed\x5f\xa1\x56\xee\x7c\x7e\xaf\xe5\x46\x26\xd1\x03\x2c\x4d\x7d\xff\x97\x7f\x1d\xcc\x86\xaf\x89\xb1\xe6\x46\xa4\xaf\xc2\x42\x7e\xd0\x2c\x0a\xf5\xd3\x28\x90\xf9\x5f\x13\xf9\x8c\x1a\x5b\x1d\x9f\xbb\x78\x1a\x9a\x89\xb2\xd7\x90\xc1\x46\x5c\x2d\x15\x20\x92\x6f\xdf\x28\xc1\x7d\x9b\xa1\x58\x7a\xd7\x61\xf0\x65\xd3\x39\xbd\xbe\x38\xf4\x13\x3f\x45\xbb\x59\x78\x74\x26\x42\xf9\x0c\x06\x5e\xe4\x89\x25\x73\xf6\x05\x9f\x8b\x4c\xe2\xc1\x3e\x73\xb8\x91\xcd\x05\xf2\x37\x31\xed\x9a\x07\xe2\xb8\xff\xdc\x96\x3b\x06\xa5\x10\x20\x9c\x32\x99\x80\x94\x9f\x40\xd8\x07\x3a\x01\x3e\xf8\x43\xdf\xcc\x4a\x33\x94"}, {{0x5a,0x84,0xaf,0x28,0xa5,0xdf,0xbb,0x32,0x33,0xa1,0x2f,0x08,0x37,0xf6,0xe8,0x65,0x4e,0x7b,0x0d,0xe1,0x6b,0x02,0xab,0x3c,0xd1,0x78,0x64,0x43,0x1e,0x27,0x46,0x67,},{0x80,0xd4,0xba,0x78,0x9f,0x8a,0x4b,0x20,0x47,0xad,0xaf,0xa5,0xed,0x26,0xcd,0x8c,0x54,0x67,0x33,0x29,0x2e,0x8b,0xf6,0x93,0xcf,0xd1,0x7e,0x28,0x4e,0xfc,0x68,0x71,},{0xa0,0xb8,0x4c,0xa5,0xaf,0x76,0x46,0xe6,0xf6,0x2a,0x69,0x35,0x37,0x94,0x73,0xfa,0x6e,0x4c,0x27,0x69,0x58,0x51,0xfc,0xbd,0xae,0x29,0x17,0xb2,0xdc,0x68,0xd7,0x96,0xe2,0x78,0xd7,0x0c,0xd6,0x7f,0xce,0xdf,0x6c,0xa6,0x29,0xb8,0x81,0xf7,0xc4,0xf2,0xaa,0x25,0x59,0xb2,0x0d,0x67,0x06,0x11,0x76,0x6b,0xd6,0x5a,0xa4,0xfe,0xf2,0x04,},"\x8a\xac\xd1\xb8\xa3\x9b\xf0\x8f\xd5\xc9\x18\x44\x6b\xe5\x76\xe6\xa3\xf2\x7f\x36\x11\x16\x07\xf2\x7b\x56\xa9\x12\x14\xe7\x63\xf9\xa8\x7f\xb1\xd1\x84\x48\x98\x96\x17\x97\x64\x44\x60\xbf\xf5\x48\x8c\x10\x3a\xf6\x05\xe8\x74\x0e\x46\x58\x8f\xb9\x3e\x44\x3c\x3b\xb2\x3b\x92\xc0\x98\x70\xa5\x57\x65\x3a\x1f\x22\xc2\x18\xcc\xbc\x2f\x07\x3a\x27\x2d\x17\xa8\x42\x23\xef\x14\x3f\x4c\x7c\xa2\x58\x46\x0b\x79\x81\x69\x67\x3d\xa1\x07\xd7\x1d\x53\x56\xce\x9f\x75\x59\xa9\xb0\x38\x39\x99\x51\xf5\x75\xc7\x7e\x5b\x9d\x05\x29\x57\x8e\xca\xa2\xe2\x08\x92\x66\xfc\x52\x6c\x5d\x40\x9f\xbd\x46\xbb\x86\x84\x1c\xb5\x54\xf5\xbd\x3c\x99\x71\x3b\x04\x3e\x40\x46\x53\xa7\xd0\x13\x44\xd4\xdb\x83\x1a\x21\x72\x82\xc4\xb3\x36\x40\x56\x53\xb8\x5d\x27\xa4\x6b\x25\x9c\x85\x5c\xdd\x85\xad\x6f\x7a\xed\xd8\x35\xff\x55\x00\xcc\x8b\xaf\x0f\xb2\xf0\x18\x09\x10\xc6\x46\x72\xb8\xa8\xd4\x9d\x98\x4a\x78\x29\x3c\xf5\x77\x9c\x91\x0c\x3a\xcb\xbc\xa4\x55\xa8\x54\x66\xe5\x35\x04\x4f\x34\x80\x26\x2c\x09\x0f\xbf\x4e\x0b\x0d\xb4\xd1\xef\x87\x59\xda\xaf\xdd\x8d\x05\x90\x74\x82\x46\x1f\xf9\x10\xc4\x37\x19\x5d\x5c\x7f\xed\x9d\x82\xcb\x94\xe7\xe4\xec\x24\xda\x05\x3e\x47\xf6\x2b\x48\x8e\xb7\xb2\x44\x65\x5c\x7d\xbb\x20\xed\x60\x7e\xed\x45\x31\x44\x9e\x07\x80\xe6\x1c\xfd\x57\x40\x86\xff\xc5\xdc\x52\x42\x83\x77\x5c\x44\xf7\x54\x7c\xda\xb0\x4a\x51\xee\xe4\xe1\xb7\xb6\x5a\x57\x57\x3a\x92\x48\x4a\x35\x90\x0a\x90\x9f\x81\xe4\x15\x02\x9d\x22\xca\x93\x7a\x3a\xcd\x9e\x61\xf8\xc0\xe6\x86\xb2\xd2\xad\x03\x77\xaf\x8e\xe1\x66\xe4\xa2\x0a\x82\xaf\xf4\x51\xe1\x51\x10\x3e\x0a\x17\x67\xb2\x71\xfa\x9c\x2b\x1d\xd1\x20\xf8\x05\x85\x3b\x3b\x8a\x56\x0f\xc8\xb9\x37\x62\x83\xb5\x11\x24\x32\x4a\x28\x4a\x0e\x9a\xc4\x9d\xf6\x9f\x52\x4c\x8e\x04\x2d\xf8\x2e\xfb\xcd\x16\x88\x1e\xc1\x31\xa1\x52\x10\xdf\x73\xde\x02\x94\x34\x47\xf2\x2a\x2e\xa1\xdc\x8b\xf9\x68\x29\x8e\xe9\x7f\x3a\xd5\x46\xd7\x8b\xc6\x60\x89\x7e\x08\xd2\xa2\x8b\x2b\xa6\x8b\x54\xb9\x54\xf1\x47\x64\x51\xc6\x92\x07\xe5\xdd\x24\x8a\xe4\x7e\xf3\x56\x94\x99\x0e\x6f\x05\x8b\xc0\x01\x7b\x74\x95\x10\x5c\xc8\x73\x90\x66\xaf\xb1\x1e\x1f\x26\x60\x19\x42\x54\x6a\xe8\x49\xff\x2f\x56\x73\x0f\x13\x26\xbb\xee\xa6\x40\xee\x17\x8f\xa2\x47\xad\xff\xef\xc0\x46\x49\x4f\xc7\xff\xc0\x77\x7d\x5d\xbe\x8a\x55\xda\xee\x61\x40\x6f\xe3\xc7\x08\x8d\x43\xd9\xe1\x4d\xa2\x1c\xa5\x2f\xd8\xc1\x60\x09\x1c\x8f\x99\xa6\x7d\xad\x65\xc6\x4f\xea\x9d\x18\xb1\x53\x7d\x06\x1f\x5d\xce\x87\x9e\x0b\xc4\x26\x48\xd2\xea\xa0\x2d\x97\x21\x85\x75\x3c\xb2\xf6\x22\x5d\x8d\x03\xbb\x07\xf9\x44\xb1\x0c\xf4\xea\x22\x27\x5c\x3d\x70\x84\x80\x20\xf3\x0c\x82\x3b\x76\x14\x3a\xcf\x54\x59\x99\xa2\xcc\x4b\x58\x98\xd9\x4b\x4a\x25\xef\xbe\x5a\x60\x33\x1c\xc0\x09\xfe\xc0\xa2\x5b\xc9\x89\x47\xb1\xb7\x13\x9e\x22\xd2\x32\x80\xff\x88\x54\xa1\xec\x76\x22\x1b\x1b\xf3\xd1\x08\x32\x8c\x8a\xc4\x63\xc6\x52\x63\xa2\xd7\xca\x74\x33\x48\x29\x31\xa1\xd8\xfc\x14\x4b\xbe\x9b\xef\x67\x8c\x92\xe1\xc2\xd1\x09\x21\xb6\xad\x43\xa7\x5c\x53\xbc\x07\x58\x54\xed\x2d\x99\xd8\x25\xf3\x0a\x5e\x10\xd5\x17\x43\x8e\x4d\x4f\x71\x13\x42\x9f\x1e\xdb\x38\x7d\x6b\xd7\xaa\xd2\x92\x74\xf8\xd2\xdc\x88\x9b\x7e\xfb\xeb\x58\x68\x6f\x8d\x66\x9c\xea\xef\x92\xc7\x5e\xd5\x30\x7f\x0c\x03\xf5\x90\x01\x81\xce\x57\x3c\x8f\xa2\x86\x75\x20\x5f\xb1\x05\x7f\x62\x6a\xa2\x30\xd0\x3e\x2e\xaa\x8c\xff\xcd\xe2\x00\x81\x47\x5d\x80\xb2\x45\xa1\xca\x60\x45\xba\x20\x4a\xb0\x00\x69\x07\x9c\x63\x7f\xc3\xfb\x3e\x80\xca\x04\x62\xe7\xa4\xcd\xd9\x28\x3f\xf9\x00\x85\x30\x36\x48\x16\x79\x2f\xdf\x3b\x9a\x4e\x4d\xc8\x37\x92\x28\xed\xcb\xb1\x54\xbe\xf3\x87\xd3\x77\x60\xd7\x9a\xfb\xb7\x36\x26\x0a\x1d\xb1\x01\x38\x36\x1f\x24\xb8\x26\xdb\xcd\x5f\x0f\xc9\xe7\x83\x0d\x26\xd8\x0c\x52\xa7\x92\x18\x92\x76\xbc\xe3\x47\x60\xfb\x77\xbe\x13\x12\xac\x8c\xf9\x7d\x92\xcb\xf3\xd0\x77\x80\x28\xdb\x5e\x8e\xae\x89\xe0\xb9\xbc\x87\x78\xae\xb1\x27\x8f\x04\x71\xcb"}, {{0x79,0x3a,0xc8,0x8d,0x7d,0x3b,0x6f,0xa7,0xf4,0x7d,0xee,0xc3,0x1f,0x68,0xdd,0xcc,0xb7,0x01,0x82,0x0f,0x1b,0x13,0xdd,0xc6,0x52,0xf7,0xc6,0xa8,0x5b,0x60,0x52,0xa5,},{0x91,0xb6,0x22,0x7a,0xcd,0xd1,0x83,0xda,0x62,0xc5,0x19,0x65,0xc6,0x35,0x35,0x8b,0x20,0x4d,0x68,0x3e,0xe0,0x64,0x43,0xcb,0xd4,0x0e,0x71,0xc1,0xf7,0x6a,0xd1,0x02,},{0xa8,0x4f,0x55,0x2b,0xf4,0x43,0x22,0xa6,0xdb,0x24,0x5c,0xa0,0x06,0xd1,0xcf,0x78,0x0c,0x61,0x68,0x0f,0xe7,0x42,0x9a,0x89,0x47,0xc3,0x5f,0x21,0xbc,0x4b,0x44,0x22,0x8b,0xa3,0x0a,0xea,0x0c,0x74,0x4b,0x86,0x64,0x59,0xd3,0xb8,0xac,0xad,0x45,0x3b,0x06,0xac,0xe2,0x47,0xba,0x69,0x52,0x8c,0x6b,0x3b,0xc4,0xb2,0x0e,0x75,0x63,0x0e,},"\xec\x50\xaf\xad\x8a\xde\x74\x05\xe2\xc6\xf5\xc6\x24\x7b\xbb\xcc\xfb\x2c\x17\x16\x6f\x78\x84\xfe\xae\x10\xd9\x0f\x5d\x83\xc4\xb6\xf0\xbf\x76\xde\x2f\x78\x97\xba\x11\x94\xd6\xd3\x44\x9d\xdb\x80\xae\x74\xeb\x8e\xd6\x8f\x04\x9b\x35\xc6\xf2\x19\x16\xdb\x4d\xfc\x27\x24\xdc\x3a\xf7\xad\x8d\xd5\xc4\x4f\x60\xd2\xf4\x9f\xad\xd7\x00\x4d\xa1\x59\x30\x93\x94\x2c\xae\x52\x08\xbf\x54\xcf\x90\x3b\xee\x64\x69\x05\xfc\xe2\xeb\x2e\x37\x0d\x0d\xca\x48\xd8\x20\xad\xea\xb1\x6a\x3b\x67\x5e\x5a\x4a\x8e\x26\x7e\x34\xff\x96\xf3\x12\x2b\x18\xde\x0c\xad\x92\x92\xab\x63\xd2\x6e\x5f\x31\x0f\xa2\x16\x8c\x29\x66\xbd\xb6\x3b\x0d\xe0\x86\x26\x76\x7b\x37\x9d\xe4\x63\x3b\x9f\x3e\xda\x79\x17\x28\x1d\xad\x66\x1e\x9f\x77\x2b\x84\x4a\x79\xe8\x00\xfd\x84\x27\x02\x44\x6e\x4a\xa7\x31\x75\x71\x07\xf3\xfd\x65\x47\xbf\x40\x75\x96\x3d\x5f\xd5\xf5\x8e\x80\x85\x3f\xc4\x27\x51\xdc\xa0\x78\xa9\xfa\x8d\x5b\xb3\xd9\xa3\x4a\xbc\xab\x02\x93\xd6\xce\xae\xc4\x89\x67\xa1\xe6\x22\x43\x98\xca\xd0\xf6\x05\xa3\xbe\x8e\x67\x58\xea\x8f\x29\x20\x9d\x8e\x4c\x4c\xa1\x89\x3b\xaa\xd9\x1e\x37\x9b\xa3\xb1\x73\x30\xc1\x2a\x5b\x6f\x21\x9b\x38\x4a\x8a\xb9\x78\xbf\x1b\x37\xc3\x73\x1a\x1b\x47\x4b\x24\xb5\xd6\x7d\x4c\xec\x28\xaa\xc6\x51\x0b\x11\xf2\xcf\x21\xbc\x16\x96\x3d\x51\xf5\x53\x87\x27\x71\x8f\xc4\xe2\xe5\x17\x2e\x3c\x0c\xda\xbc\x27\x7f\x0d\x70\x37\xc3\x4c\xa6\x8f\x73\x28\x88\x48\xb9\x26\xbd\xe0\xcf\x47\xab\xfa\x66\x60\x09\x16\x94\x6f\x07\x65\x1c\x28\x0a\x20\x86\xb1\x4d\x52\x57\x0c\xc8\xa4\xb7\x43\x58\xb5\x9c\x30\x2b\x9d\x00\xe1\xb4\x98\xf3\xbc\x33\xee\x4e\xcf\x2b\xce\x2c\x65\xed\x7e\x8b\xa7\x4d\x35\xb7\x51\xd3\xc9\x9f\x40\x86\x19\x68\xc2\xb7\xf3\xa5\xbe\x34\x8c\x57\xd9\x3b\x40\xff\xd0\x51\xed\xd7\xca\xca\x6e\xe6\xbc\xa7\x21\xdc\xba\x8d\xb8\xd0\x06\x4f\x54\xd3\x6e\xc5\xe8\xd6\x2a\x71\xfd\x1c\x90\xf1\x49\x24\xf4\x1c\x16\x3f\x00\x7a\xfc\x6f\xbb\xfe\x86\x45\xfa\x47\xc3\xc9\x80\x24\x6d\x1b\x92\x27\x43\x85\x95\x3c\x53\x41\xcd\x64\xc3\x4a\xe9\x71\x7c\xc2\xc3\x7f\x58\x35\x9c\x0a\x99\x91\xc2\x3f\xe6\x37\xde\x6c\xdf\x08\x62\xf7\xd0\x32\x9f\xe7\x58\xaa\x89\x2a\xd4\x58\x3b\x9d\xf2\xf3\x33\x7d\x5b\xe5\x70\xba\x65\x49\x98\xed\x29\x2f\x11\xf0\x17\x72\x38\x2a\x04\x34\x2f\xdd\x99\xe6\x9e\x0d\x97\xc4\x3f\x10\xac\x9b\x96\xf1\x40\xa6\xf8\x3c\x47\x29\xe7\xa9\x00\x47\x1f\x2b\x1d\xf2\x40\x1b\xc5\xc6\x80\x42\x2b\x13\xb0\xc8\x00\x7d\x63\x68\x1f\x66\xa0\x59\x5a\x1c\x5d\x3a\xcd\xe5\xb7\x79\x42\x6e\x73\x6b\xc1\x00\xc5\xe6\xf5\x26\x08\xdc\x39\x1e\x3e\xf9\xb1\xbb\x6a\xf1\x3d\x24\x9b\x7d\x32\xce\x06\x80\xc3\x68\xf5\x4d\x5f\xe0\x39\xcf\xe1\x01\x30\x25\x1e\x4d\xb1\x4c\x79\xc8\xd0\x44\x06\x04\x65\x82\x29\x90\xd8\x80\x93\xcd\x73\x65\x32\x85\x2e\x44\x78\x89\xdb\x89\xcc\x60\x05\x29\x96\xa3\x2a\x64\x36\x5c\x07\x26\x05\x1c\x11\x9e\xda\x90\x1d\xe5\x76\xb3\x34\xfc\x70\x49\x48\x23\x92\xe2\x62\x0b\x0a\x3a\x13\xfa\xb1\xd3\x6f\xc0\xa5\xf2\x3d\xb1\x47\xfd\x85\x7b\x26\xa6\x98\x04\x8f\x8b\x81\x1e\x23\xd7\x22\xe2\xe9\x02\x7e\xd4\x12\x4b\x48\xdc\x5e\x57\x8a\x7a\xeb\x19\xa1\xb4\xf9\x48\xee\x5b\x46\xf6\x5b\x97\x96\x46\xe2\xbe\x07\x47\x14\x11\x8b\xaa\x4b\xfc\x15\xb0\x89\xa0\xe0\x66\x27\xda\x46\xe4\xbb\x06\xaa\x3c\x7c\x5d\xd6\x48\xe0\x3c\x9c\x2d\xec\x3f\xac\xd9\x56\x26\x56\x2f\x30\x00\x88\x32\x30\xd2\xb0\xa1\xf8\xa7\x47\x8c\xb7\x7f\x93\x9a\x5f\x18\x8f\x45\x8d\x10\x37\xb9\x01\x76\x66\x4d\x86\xea\x85\x0b\x8a\xf5\x08\x7f\x86\x60\x5a\x77\xe0\x25\xef\x6c\x7e\x6a\x2a\x59\xf0\x06\xcb\xa1\x89\xfa\xd9\x33\xf4\x2c\x53\x27\x08\x10\x9b\xc1\xaf\x81\x48\x19\x59\x5f\xfc\xb9\x5f\xbf\x5b\x7e\x93\xa7\x11\x97\xe4\x77\xee\x7c\x04\xb8\x51\xc1\xc3\x66\x22\xcd\xd8\xe6\xc8\x60\xd9\xab\x2c\xac\x56\xd2\xdc\x98\xfa\x69\x12\x4f\x2b\xb2\xa6\x47\x1e\x1c\x73\xb6\x61\xf0\x71\xf5\xd8\x6d\xe7\xd1\xde\xaf\xa4\xed\xcd\xc7\xbf\x1f\x70\x5c\x56\x30\x0a\xff\xd0\x58\xb9\x69\x77\x91\x41\x9e\x5f\xb2\xa5\xb7\xf7\x8c\xe3\x40\x1f\xf5\x50"}, {{0x89,0xde,0x74,0x42,0xd7,0x4b,0xa9,0x38,0x59,0x69,0xc9,0x65,0x1a,0x88,0xfe,0x28,0xe0,0x40,0xd5,0x93,0x90,0x7d,0xac,0x1a,0x39,0x87,0x41,0x8b,0xdf,0xdb,0xad,0x89,},{0xfd,0x3b,0xa9,0xfa,0xd3,0x20,0xeb,0xa4,0x5d,0x07,0xb8,0x4a,0x49,0x7b,0xe1,0x7d,0x3f,0xc7,0xdd,0x99,0x99,0xc9,0x68,0x88,0x3c,0xd6,0xac,0x13,0xb0,0x66,0x9b,0x17,},{0xba,0xb5,0x72,0x84,0xd2,0x0e,0xe5,0x4c,0xc7,0xf9,0x70,0x8d,0x71,0x77,0x06,0xd8,0xfa,0xf6,0xe4,0x63,0x32,0xb0,0x69,0x1d,0x6f,0x21,0x3a,0x8d,0xb8,0x01,0x15,0x5b,0x4e,0x33,0x8c,0x13,0x61,0xb5,0x92,0xbe,0x75,0x85,0x01,0xb1,0x82,0x17,0x93,0xae,0x52,0x27,0xcc,0x3b,0xa8,0xdf,0x8a,0xdf,0xc6,0xed,0x9a,0xca,0xb5,0x4c,0xc4,0x01,},"\x9d\x52\x72\xf0\xb7\x84\x88\x2b\x94\xc7\x6d\xfb\x9d\x46\x0c\xa4\x95\x02\x5e\x0a\xec\x5d\x52\xcc\xff\xfe\xce\x9f\x81\x73\xc1\x05\x58\x26\x6c\x49\x85\x25\x89\x1a\x97\xbf\x38\x78\xe3\x3c\x3d\xe2\xfc\x2e\x52\x55\x0b\x43\x15\x62\xcb\xe4\xa3\xd0\x11\xec\xc9\xe7\x7e\xc3\x6a\xd3\x83\x41\x35\x8c\x88\x32\x1c\x03\xd0\x8b\xb4\x26\xa7\xd5\x85\x41\x71\xc0\x27\xec\x48\xd5\x78\x19\xa9\x1a\xfd\x02\xa6\x18\xcc\xbc\x25\xe6\x8e\x53\x09\xd0\x47\xb1\x56\xe3\x57\x05\x37\x3a\xda\x2e\xb8\x31\x32\x1a\x20\x3e\x1b\xd8\xf0\xef\xec\xc0\x96\x18\x64\x7b\x41\xdf\xf2\x2b\x39\xd0\x22\x35\xf8\x71\x53\x2f\x60\x85\xe9\xcc\x52\xec\x00\x9b\x33\xee\xbc\xdc\x26\x7d\x77\x67\xc9\x0c\x92\x7e\x15\x4f\x72\xf3\xf4\x8a\x34\x95\x63\x19\xb2\x93\xc8\xa8\xb3\xe3\x4e\xfc\x5f\x62\xf2\xb4\xe8\x01\x9b\x50\xa0\x8f\x5c\xcf\x95\xbc\x83\x1b\xaf\x40\x81\x1d\x87\xe5\xed\xbd\x2f\xd5\x36\x5b\x26\xa4\x31\xae\x95\x80\x0f\xf3\x81\xcd\x62\xca\x40\xe1\x86\x6d\x95\x0d\xce\x14\xf0\x30\x91\x8a\xba\xc6\x8e\x79\x16\xdd\xb9\x5a\xdc\x19\x71\x28\x78\x74\xd0\x7e\xb0\xed\xef\x64\x29\x66\x52\xc4\x80\x44\xb0\xc5\x52\x1a\x8d\x27\x0d\x53\xd7\x4e\xc6\x3b\x89\x0f\x33\x63\xf9\x20\x7f\x66\x52\xae\x8e\x78\x35\xc3\x82\x0a\xd6\xd9\xe3\x63\x3f\x4b\xfd\x53\x79\xa4\x4f\x29\xd6\x5f\x36\x09\xfe\x35\x58\x17\xdc\xa5\x51\x8d\xfe\x3b\xd7\x69\x32\x0a\x03\x19\x02\xe9\xcf\x66\x69\xc2\x4f\x88\xb0\x1e\xb3\x69\x95\xbd\xb8\xdb\xed\x6e\xe0\xc9\xb7\xf3\x22\x95\xc6\x1b\xa8\x90\x5e\x55\x98\xf3\xc9\xe1\xc8\xbf\x72\x64\xf9\x82\x93\xfa\xea\x17\x74\x7f\x88\x44\x0c\x31\x81\x8c\x43\x3e\xa3\xd2\x3c\x01\xf4\xf7\xe9\xc3\xdd\x3d\x5f\x32\xec\x9e\xac\xd7\x1a\x09\xe3\xa9\x97\x38\x1f\x1c\xbf\xfd\xf4\xb5\xba\x49\x79\xde\xb7\xb0\x98\x41\xaf\xa3\xb0\x3d\x1c\x93\x11\x09\x7b\x86\x2c\xae\x11\x70\x7c\xbd\x3a\x4a\xe6\xc8\xa2\x6a\x30\x6a\x68\x7c\x41\x4a\x4e\xa1\xe8\x12\xf1\x15\xf6\x0f\x70\xbd\xa7\xf8\xfb\xe7\xbc\x2d\x50\xcc\x55\x0b\xba\x29\x1d\x5e\xc5\x23\x22\x9a\x08\xed\x56\x8b\x5c\xee\x18\xfe\x6f\x46\x78\x2c\x17\xcd\x82\x88\x01\x63\x92\x15\xbc\x5e\x9b\xe4\x55\x5c\x9a\x18\x00\x97\x67\xa6\xc5\xc7\x4a\x82\x29\xd2\xff\xaa\x39\x9d\x8e\x64\x32\x4e\x88\x42\x23\xd5\x07\x0f\x73\x5a\x75\xd8\x5f\xf6\xc9\x4a\x9f\xbc\x2b\x36\x51\x38\x6d\xe5\xa2\x3c\xce\x95\xc8\x78\x81\xc7\x93\x99\xae\x71\xf0\x90\x73\x7e\x21\x87\xfe\x90\x4a\xab\x1d\x92\xd6\x18\x67\x95\xc9\xb4\x6c\x62\xa5\x91\x4f\x36\x30\xfd\xcb\xac\x3b\xd4\xb0\xda\x4e\xc3\x13\x6a\x1f\xb2\xba\x40\x32\x2d\x7c\xc4\x08\x5e\x16\x70\x09\xcf\x74\x50\xfc\x6a\x28\x6c\x2f\x79\x51\xd5\x1a\xae\x23\xb8\xf3\x30\x20\xef\xb5\xe3\x24\x5b\xa6\xa3\x54\x3a\x2b\xde\xc4\x47\xd5\x1a\xe0\x0b\x5e\x16\x78\xb7\x60\x93\xcf\x21\x6b\x95\x07\xc9\x63\xeb\xfc\x02\x4c\xcd\x6e\xf6\xc7\x8c\x45\x72\x27\x3b\xea\xaf\x55\x07\x6d\xc4\x4a\x22\x4b\x58\x61\x57\x05\x79\x19\x65\x30\x7c\xef\xd4\x86\x72\xc0\x81\xbc\xcf\xbc\x1d\x15\xb0\x62\xb3\x8b\x4f\xba\x9b\x9b\xec\x95\x6c\xd1\x44\x44\xee\x43\x7e\x79\x60\xcc\x60\x1e\xdd\xc0\x2f\x1a\x76\xb6\x85\x74\xd5\xf8\x84\x31\x50\xc0\xb9\x00\x99\x34\xa2\xbf\xaf\x60\x57\x70\xc1\x36\xba\x29\xf3\xdc\x7e\x29\x59\x7a\x24\x80\xdb\x23\xe2\xb2\x67\x7e\xc6\xc5\x1b\xd3\x01\xf2\xb5\xa3\x9d\xfd\xa7\xb4\x77\xbe\xdd\x1c\xda\xed\x10\xe2\x9d\x29\x54\x62\x9b\x98\x76\xf8\xee\x54\xe4\x04\x73\x69\xd5\x34\xca\xb5\x4a\xea\x44\x1d\xc9\x47\xeb\x3f\x59\x38\x2b\x21\x83\x60\x57\x2f\x26\x59\x58\x31\x53\xc0\xe2\xb9\x12\xcf\x30\xc8\x15\xb2\x6f\x05\x85\x3d\xd3\x05\x51\xee\xcf\x64\xb8\x58\xa4\x41\xbb\x8c\x6d\xb8\xa9\xfd\xe7\x7a\x32\xa7\xb4\x6a\xf6\x6f\x8c\xb9\xf3\x5e\xe0\xfa\xfb\x0b\xd4\x2d\x9e\x65\xb2\xa9\x05\x82\x41\xa3\x1b\x8c\xa1\x11\x54\x34\x23\x76\x70\xaa\xb4\xef\xf3\x60\x10\xed\x03\x71\xf4\x65\x95\xda\x1b\xdd\x57\x9b\xbb\x67\xaa\xdb\x68\xe7\x7a\xd3\xa3\x8c\x8f\x26\xd2\xaf\x5a\x71\x03\xba\x5f\x22\xb4\x2c\xc1\x2a\x8c\x3c\xe5\xc9\x21\xc9\x1c\xfc\x0e\x63\xdf\x90\x27\xd2\x62\x29\xb1\x04\x7c\xbc\x18\xf6\xb0"}, {{0x26,0x22,0xbd,0x9b,0xbe,0xf7,0xff,0x4a,0x87,0x62,0x9e,0xa0,0x15,0x3d,0xc4,0xd6,0x08,0xc3,0x1f,0xa5,0x84,0x79,0x88,0xff,0x50,0x0d,0x88,0x06,0x81,0xf1,0x13,0x72,},{0x19,0x97,0x58,0xa9,0xc3,0xd0,0xee,0x3e,0xeb,0xcb,0xbd,0xa3,0xe1,0xef,0x54,0x55,0xff,0x46,0xd7,0x36,0xbb,0x4e,0xf0,0xc0,0x6a,0x73,0x9f,0x9a,0xc5,0x84,0x83,0x95,},{0x43,0x78,0x96,0x6b,0x78,0x31,0xde,0xf4,0xae,0xcb,0x49,0x89,0xbc,0xaf,0x9c,0xae,0x99,0x46,0x1c,0xb9,0xb5,0x9d,0x19,0x51,0x8c,0xc1,0xec,0x7b,0x83,0x51,0xbc,0xd1,0xf7,0x23,0xaa,0xc5,0xf0,0x61,0xb3,0x83,0x63,0x57,0x4f,0xf9,0x6b,0xa1,0x0e,0x19,0x6b,0x1b,0x05,0x31,0xe1,0x18,0x30,0x36,0xa4,0x25,0xe6,0x9c,0x45,0x98,0x04,0x0c,},"\x89\x1e\x82\x12\x25\x47\xd6\x1e\x83\xb0\xab\xaf\x27\xc7\x30\x3f\x05\x22\xa2\xec\x4a\xf4\x4e\xf0\xac\x19\x6a\x99\x78\xb1\xc6\x23\xef\x1f\xa7\x2b\xaf\x70\x91\x0a\x5c\x51\xc4\xf7\x8e\x0f\xe9\xfe\x37\xe2\x43\x9c\x47\x95\x91\x6c\xfa\x22\xab\x47\x1a\x25\x57\xcc\x7b\xa6\xb6\x69\x56\x06\x3d\xde\xb3\x9c\x50\xf1\x4f\x06\x34\x8f\xa6\x6b\x60\x64\xdc\xff\xca\x50\x43\x96\x7f\x05\x25\x4d\x57\x7a\xbf\x22\xae\x8c\x90\x00\x0c\xe2\xe6\xa1\xa8\xb2\xe3\xa6\xb3\xab\xc5\x63\xeb\xff\xb2\x04\x45\xf0\x91\x1c\xc4\x2a\x98\x7f\x84\x56\xef\xba\x41\x30\xe6\x8f\x01\xfc\xdf\x7b\xf7\x71\xfc\x1d\x35\x37\x1a\x0d\x75\xdd\x5f\x90\x00\x2c\x90\xb6\xcb\xad\xe4\x0d\x5b\x23\xfd\xb4\x9a\xba\xcb\x72\x19\xae\x27\x56\x1a\xa2\xa8\x79\xda\x88\xdf\x34\xa8\xc5\x81\xf0\xc6\x71\x98\xff\xc6\x08\xfe\x91\x95\xb5\x55\x5c\x8a\xe9\x34\xc8\x30\xaa\xe2\x88\x5b\xea\x87\x48\x74\x48\xe1\x1b\x4f\x2f\x17\x2e\x4d\x5c\xfe\x4f\xd1\x13\xf9\xd2\x01\x6c\x24\xa7\x34\x51\x2b\xb9\x18\xf5\x75\xe7\x54\x13\x97\x18\xe3\xd2\x0e\x79\x0a\xbb\x94\x2c\xba\x3e\xc8\xb2\xdb\x59\x07\x96\xdc\x43\x5f\x13\x9f\xc6\x4d\xdc\x85\xa2\x24\x94\xef\x2b\xfa\x1f\x5c\x0f\x18\x75\xea\x58\xe8\x4e\xb3\x74\xec\xf8\xce\xc6\x46\x8b\x6b\x09\xd1\xe7\x4f\x15\x41\xed\x45\x4a\x28\x07\xd3\xf4\x05\x35\x66\xb0\xe4\xe2\xc6\xae\xce\xd1\x0d\xc0\x07\xe9\xdf\x41\x6f\x26\x7f\xcb\x3f\xe1\x7b\x8b\xac\xe0\x3f\x07\x43\xe0\xe6\xd4\xa4\x8c\xe7\x6e\xdf\xf6\x0c\x0e\x3a\x30\x84\x56\x99\x54\x13\xc1\x07\x6f\xf3\x7e\xcf\x23\x81\xa0\xd4\xe9\xe4\xa9\x13\xa2\x58\xd9\x83\xb9\x69\x6b\x5c\x45\xaf\x37\xc8\x68\x40\x70\xe4\x00\xb8\xf8\x65\xa5\x04\x04\x3f\x45\xd7\x8b\x97\x13\xf3\x35\xaa\x41\x6a\x46\x16\x64\x10\x73\x5f\xb5\xd8\x22\x10\x45\x8d\x5a\x08\xa1\x04\xd4\x00\x2a\xb6\x11\x88\xf9\xdf\x45\x7d\xd7\xed\x59\x37\xca\x50\x77\x60\x6b\x41\x8b\xbc\x86\x84\xa1\xd5\x25\xbf\xa5\x51\x08\x76\x40\xb1\xd1\x77\xca\x6d\x4f\x64\x71\xb3\x9b\x2c\xe4\x3a\xfb\xf8\x28\x5e\xcd\x68\x7e\x43\x8f\x44\x25\xdf\x56\x8a\xb8\x6f\xa2\x31\x63\x49\xa1\x10\x2b\x41\x43\xd7\x1e\xf4\xe2\x4f\x5c\x53\x0c\x77\xaf\xb0\x10\x07\x88\x63\x64\x40\xe7\x40\x67\x5a\x61\x74\xc5\xf0\x57\x10\xb2\x53\xa4\x11\x17\x3f\x9e\x82\xce\x6e\x22\xf4\x09\x5e\x77\x14\xb8\x73\x7e\x14\x7a\xa0\xf2\x31\x91\x57\x8f\xfd\x93\x82\x3c\xe4\xbf\x91\xc1\xd1\x10\x98\x2a\x5d\xa0\xe4\xb8\x1b\xd2\x5b\x9b\x9c\x21\x42\xa7\x67\x1e\xe9\x37\xc9\x0f\xd0\x71\x5e\xc9\xaf\xa4\x4d\x86\x04\x68\x98\xb4\x2f\x75\x35\x89\xd2\x26\x8d\x2a\xaa\xa9\x85\xcc\x90\xe0\xf9\xe8\x27\xa3\x92\x3e\x77\x16\x34\x6f\x4f\x89\x31\xc7\x28\x21\xb3\xeb\x64\x5d\xaa\x74\x52\xc8\xaf\xc8\x98\xd7\x97\x55\x45\xc1\x2d\xa1\xbd\xb2\x09\x04\x5c\xb0\x0f\x4b\xfd\x53\x83\xdf\x01\xf0\x03\x68\x0b\x97\x34\x40\xf1\xa3\x9c\x9d\x82\x09\x59\xef\x6f\x85\xbd\x33\x63\x90\x65\xae\xfd\xc8\xbc\xfe\xcb\xd9\xb9\x55\x40\x49\x73\x8a\xf2\x9f\x12\x94\x63\x9d\x39\x15\xd6\x32\x99\x5e\x8f\xaf\x71\x3e\xf2\xee\x3c\x29\x8b\x55\x96\xfa\x10\xc9\x9f\x94\x6d\xdb\x32\x34\x06\x95\xdf\x1c\x19\x45\x94\xea\xf3\x77\x8d\x73\xc8\xba\x60\x40\xc0\x4e\xb3\xa4\xff\x86\x77\x93\x6b\x88\xe0\xc5\xf0\x44\x14\x80\xd1\x07\xd7\xac\x22\x02\xb3\xb6\x94\xe5\x7c\xcc\xa6\xd8\x25\xe2\xa0\x7e\x81\x2e\xd2\x9b\x2c\x20\xd5\xc6\x05\x47\x15\x79\xe3\xed\xff\xc2\x23\xf2\x42\xc5\x93\x91\xdb\x41\xe9\x8d\x5f\x3d\x6c\x5b\x1e\x32\xac\x82\x37\xfc\xfd\x10\x20\x54\x3a\x40\x41\xe0\x3d\x92\xad\x3e\x2e\xc5\x52\x91\x47\x07\xc7\x7c\xd0\x1f\x3e\x48\x01\x14\x44\x28\x3f\x09\x68\xfa\x4d\xee\xee\x55\xc4\x56\xed\x1f\x87\x7a\xde\x04\xac\x8e\x8d\x2c\xb6\xc8\x58\x20\xb4\x92\x9b\x25\xbf\x31\xe9\x25\x43\x5d\x6b\xcc\x50\xd3\xe2\xe9\xb8\x51\x02\xe9\x70\xd7\x89\x5c\x25\xad\xe5\x21\x61\xa3\xb6\xbf\x50\x1a\xb0\x19\x61\xcb\x63\xed\x99\x0a\xeb\x93\xed\xa3\x82\x8b\xf0\x4c\xa5\x28\x53\xc7\xb6\xb8\xe9\xe4\x9e\x34\x9d\x69\xb5\x3b\xe0\x74\x85\xf5\x42\xb7\xcd\xd0\x6b\x52\x7d\x41\xdd\x11\x9c\x70\xb5\x64\xf1\xa9\x3a\xec\x62\xae\x74\xe6\xe8\xf8\x55"}, {{0xae,0xb1,0x3c,0xcb,0x90,0xc8,0xcb,0xef,0x90,0xd5,0x53,0xda,0x3f,0x69,0x01,0xb3,0xd7,0x5c,0x13,0x01,0x1f,0x02,0x49,0x74,0xda,0xf7,0x9a,0x17,0x89,0xc8,0xc6,0x32,},{0x5f,0xaa,0xfe,0xb5,0x95,0xf1,0x6d,0x33,0x8f,0x1c,0x72,0xa9,0xf3,0xe4,0x98,0xf3,0x8b,0xab,0x69,0xa8,0x1b,0x37,0xd2,0xd0,0x92,0xb7,0xbf,0x7e,0x50,0x5d,0x82,0x0d,},{0x06,0x11,0xb1,0x9a,0x74,0x72,0xa4,0x43,0xe8,0x7e,0x54,0xd7,0xc6,0x64,0x7f,0xaa,0xb1,0xb7,0x9a,0x83,0xfd,0x43,0x71,0xc9,0x2b,0x97,0x54,0x00,0xfd,0x62,0x8a,0xcf,0xc3,0x25,0x77,0xcc,0xbb,0xaf,0x03,0xd8,0x8f,0x89,0x3c,0x88,0xf2,0xca,0xc7,0x84,0xc7,0x22,0xa0,0x8f,0x38,0x7a,0xbc,0x31,0x9a,0x70,0x2c,0x86,0x84,0x79,0x65,0x0b,},"\x86\x1a\x10\x18\xd6\xbd\xc4\x80\x5a\x5c\x4d\xf8\x7e\xfa\xa4\x62\xc6\x8b\x4b\xf4\x06\x5c\x68\x4c\x2a\xf1\x31\xc6\x37\x73\x88\xba\xee\x58\xc6\xc8\xf8\x84\x23\x62\xec\x6e\x3b\xce\x07\xc8\xaf\x55\x88\x5e\x82\xdb\x87\xa1\x52\x27\x80\x0d\xd3\x3a\xfc\x5e\x5f\xd1\x57\x01\xe9\x5f\x53\x50\x1b\x1a\x6f\xf8\x3c\x64\xe8\x51\x71\x49\xbf\x3f\xf0\x11\xb0\x94\xa0\x9c\x67\x3d\x0f\xc4\xa3\x9e\xe5\x5e\x69\xf0\x71\x17\x7b\x8a\xa3\x64\xe1\xe2\x56\x06\x4c\xf7\x02\x79\xcc\x76\x69\x5a\xe4\x9d\xaf\xcd\x80\xca\x0a\x14\xe1\x69\x1d\xb9\x46\x42\x2e\xc7\x5a\xb4\xf7\x86\x59\x15\xa6\x9b\xd4\x8d\x89\xb1\x2a\xdf\x48\x7d\x4d\xb9\xbe\x87\xcd\xdc\xa2\x11\xaa\x88\xe9\xbb\xe8\x49\xda\x21\x39\x89\xeb\x08\x44\x59\x2a\xd6\x3e\x28\x1b\x2e\x4a\xfe\x6a\x88\x36\x00\x66\x09\x92\x6c\x0f\x78\x7e\x84\xf2\xa9\x5b\x46\xb6\x6f\x0e\x45\x55\xc9\x48\x3c\xe2\x17\x6f\xc6\x3f\x7c\xc9\xf4\xf2\xa2\x2d\xb0\x55\xaa\xe2\xe6\x8b\x30\xa0\xda\x5f\xeb\x80\xc2\xa6\x0e\xa1\x0d\xbf\x67\xfb\xbc\xdb\xe0\xbe\x33\xf2\xe9\xc1\x3c\x46\x9e\x77\x68\xf2\xff\x59\x60\xa5\x5e\xb4\x82\xec\x11\xd4\x7e\x15\x4b\x7c\x42\xa5\xfb\x75\x6c\x8a\xd5\x39\xb3\x3d\x12\x5a\x4a\x65\x19\x2c\x6c\x9b\xd5\x76\x23\x8c\xa7\x2a\x73\xcd\x17\x9e\x8c\xf5\xcd\x04\x8e\xd3\x30\x21\x38\x23\xab\xba\xfc\x36\x82\xb2\xb7\xf6\x8c\x5b\xc4\x6f\xd0\x9a\x8c\xb2\xa3\xfd\x09\x95\x73\xee\x2e\x6f\x28\xc8\x2e\x27\x1b\xb5\xef\x93\x4b\x0b\x0c\x38\x1c\xfa\xae\xc6\x66\xd7\x17\x10\x6a\x87\x4a\xf3\x0a\xa7\x41\x25\xea\xe9\xac\xc2\xf1\xf2\x41\x18\xcb\x4e\x68\x3a\x73\x1e\x37\xe5\xe4\x64\xa1\xea\x3d\x2a\x53\xcc\x0d\xca\xd4\xc1\x7c\xea\x9a\x43\xe2\x36\x5f\x3a\xe3\xdd\x89\xeb\x39\x97\x74\x20\x04\x55\x50\x74\x5f\xc2\x67\xfc\x7d\xcc\x56\x02\xe9\x14\x97\x2a\x4d\xa6\xeb\xeb\x68\x7f\x68\xa0\xcd\x7d\x8b\x4f\xdd\x73\x72\x21\x06\xa8\xe4\x36\xb9\x3e\x5b\x58\xf5\x98\x2a\xce\xcd\xec\xfd\xb3\x82\xfe\x98\x53\x82\x61\x42\x6b\xa6\x40\x52\x55\x76\x43\xce\x9f\xec\x71\xea\x43\xcf\x5b\x6c\xba\xde\xb4\x95\x31\x93\xff\x3e\xd1\xa1\xf9\x22\xa9\xaf\x2e\xc6\xf3\x38\xe7\xfb\x0a\xff\xe3\xd1\x3c\x33\xe3\x95\x87\x3e\x4a\x7a\x7f\xb0\x44\x98\x1e\x05\xa6\x71\x97\xb9\x96\xb1\x99\xb4\x30\x11\x11\x93\x63\xe5\x61\xd5\xb8\xa5\x17\x84\xfd\xff\x58\xab\x80\xed\x4c\x49\xe9\x3f\x0c\xf4\x19\x24\xf9\x83\x5e\xfb\x09\xf6\x44\x63\xb6\x55\x17\xb6\x7b\x15\xdc\x3f\x28\xad\x9a\x9b\x2d\x29\x46\x8d\xe2\xc6\x3e\x62\x00\x4b\x6a\x3f\xd0\xc5\xc2\xe2\xaa\xa6\xcf\xa1\x5e\x4f\xaa\xfa\x1e\x2c\x71\x3e\x98\xd3\xfd\x25\xca\xb9\xe5\x17\x03\x59\xc8\x36\x51\x52\xb4\x74\x27\x6e\xd0\x03\x7c\xdf\x77\x18\x28\xe2\xfb\x7c\xce\xc4\x89\x5f\x21\xad\xcc\x5b\x68\x87\xc8\x6e\x51\xad\x05\xf2\x55\xf6\xe9\xda\xd2\xc4\x1f\x56\xb9\x8b\x7b\xbb\xf9\xfc\xb6\xba\x8c\xad\xfd\x38\xad\x8c\x62\xf9\x2d\xd8\x77\x40\xfa\x1e\x1b\xd1\x70\xc0\x0b\x20\x49\xc5\x13\x0f\xe7\x33\xf1\x6b\x1f\x2c\x7f\x00\xb2\xef\x97\xb3\xa9\x54\x58\xc5\x3f\x19\x9d\x46\x53\x36\xd5\xff\x59\x77\x80\x6e\x1a\xfd\xe3\xea\xa2\x46\xd8\x5c\xab\xf7\xe1\x23\x48\x1e\x23\x92\x99\x76\xed\x19\xc4\x0e\x29\xff\x33\xd8\x0e\x7d\xea\xb1\x92\x71\xde\xcd\x5e\xe0\x61\x72\xb0\xb0\xa1\x39\xbd\x62\xa2\xe7\xc8\x3a\x8a\x65\x60\x1d\x0a\x05\xd6\x1a\xf9\xc6\x03\x2d\xf5\x80\x01\xd4\x73\xe2\x0d\xd6\xc6\xaf\xd7\x8d\xdb\xd7\xcd\x17\x8e\x9c\x27\x1e\x05\x72\xf8\x59\x82\x82\x3c\xe6\xc4\x02\x93\x0c\xf8\x0f\x5e\x0c\x7c\xda\x85\x12\x2a\x76\xd1\xce\x02\x1b\x1e\x3d\xe2\x55\x6d\x1b\x45\xac\x7b\x01\xb5\x9c\xad\xa2\x52\x91\xd6\x38\xa5\x2a\x5e\x7d\xbc\xdd\xf9\x6b\xb1\x77\x4a\xb0\xb0\x77\xe4\xb3\xda\x5a\x95\x8f\xe1\x1d\xee\x4a\x02\xe6\x9b\x91\x8d\xdb\xfa\x1c\x5b\x3b\x7d\xca\x9f\x87\x84\xbb\x6b\x0b\x9d\x5a\x7f\xee\x74\xbb\x03\x74\x7f\x61\xc2\xb2\xf1\xb4\x92\x45\x2d\x3b\x56\x0b\x48\xd3\x9d\x87\x21\xe9\x83\x75\x25\x56\xd4\x4d\xa6\xb0\x28\xd9\xae\xf8\xbf\xf9\xaa\x37\x9c\x8e\x2b\x0a\x63\x6d\x74\x88\x60\xab\xd8\xe6\x4f\xc8\xe9\x65\x20\xa3\x4a\x27\xf7\x67\xaa\x97\xa8\xf7\x7b\x60\x95\x21\x8e\xad"}, {{0x73,0x87,0x2b,0x14,0x76,0x2f,0x68,0xda,0xe4,0xfc,0x10,0xdf,0xd6,0xf4,0x2d,0x3f,0x96,0x22,0xbf,0x2a,0xfe,0x6b,0x34,0xa9,0x56,0x49,0xaa,0x38,0x74,0x24,0xee,0x6c,},{0xdf,0xab,0x2c,0xe1,0xab,0x99,0x81,0xaa,0x7c,0xbf,0x32,0x07,0x35,0x00,0x07,0xfa,0x6c,0xe6,0xca,0x60,0xa2,0xed,0x7b,0x59,0x0f,0x3c,0x2f,0x62,0x92,0x2d,0x8f,0x61,},{0x85,0x25,0xc3,0x46,0xca,0x3a,0x6a,0x6c,0x5f,0x65,0xc4,0x17,0x78,0x59,0x93,0x77,0x65,0x98,0x70,0xcb,0x6d,0xf9,0xa4,0xa0,0xe5,0x5b,0x40,0xc3,0x5b,0xeb,0xa5,0x5c,0x8e,0x00,0x9e,0x56,0x00,0xb6,0x44,0x7d,0xc7,0x40,0x2b,0xa2,0x77,0x49,0x29,0x7e,0x8f,0x95,0x28,0x69,0x18,0x56,0xf7,0x2d,0x2a,0xd7,0x61,0xed,0x1b,0xc1,0x53,0x09,},"\x43\x3d\x71\x78\x1c\xea\xb2\xb4\x7d\x82\x6e\x67\xd3\x9f\x9b\x80\xd2\xff\xd7\x25\xf8\xc5\xae\xb4\x0c\xbe\x4f\x9b\x5f\x48\xef\x93\x52\x1c\xce\xc6\x04\x36\x0b\x96\x47\x32\x31\x90\xbf\xef\x75\xac\x93\x15\x62\xd2\x7f\x4a\x4e\x31\xf4\x6e\x57\xbc\x99\xfa\x51\x58\xc8\x2e\x12\xb7\x37\xe4\x5c\x5d\xe9\xf7\xdd\x7c\x86\x22\xd4\xa7\xea\xad\xf7\x20\x2f\xb4\x9d\x81\x9c\x9a\xd2\x4f\x88\x07\x31\x3c\x5f\x37\xdc\x20\x45\x3b\xdf\x05\xc9\xbf\x1a\x3c\x21\x17\xc9\x3e\x7f\x3c\xc8\xa2\x54\x20\x98\xe8\xfc\x1c\x64\x2f\xa4\x7b\x05\x54\x36\x57\xb8\x5f\x48\x0b\xc8\x6e\xc4\x28\x00\xbb\x14\x22\x35\x9c\x7c\x3e\x8f\xf4\xbe\x59\x8b\xd5\x4f\x1d\xc5\x86\xac\xae\x45\xa4\x74\x06\x22\xb9\x62\x74\x2b\xc8\x6e\x17\xcf\xa6\x3e\x77\x53\x54\xe7\x70\x7e\x50\x79\x58\x9e\x8d\x10\x8b\x1f\x11\xda\xce\x05\x75\xcb\x9a\x6d\x26\xb5\x9f\xce\x98\x14\x65\xd9\xbc\x34\x4e\xa6\x94\x5a\x95\xb8\x62\x79\x63\x84\xfa\x81\x70\x56\x08\x57\x45\x7b\xef\xf9\x5a\x9b\x5a\xc3\xd6\xad\x28\x2d\x44\x92\x9a\x30\x30\x26\xb4\xbb\xed\xd6\x0e\x2e\xf0\x55\xa3\x1f\x52\xd7\xce\x8d\xf2\xca\x5d\x18\x51\xc5\xb1\x67\xdb\x08\x09\x25\x9b\xb8\x12\x56\x90\x74\x10\x5c\x73\x4c\x85\xd6\x23\x12\x73\x75\x5f\x3a\x8b\x56\xdc\x50\x8d\xb5\xc2\x3d\xac\xb7\xa0\x61\x67\xbd\xa5\x1b\xc0\x13\x50\xf0\x16\xcd\x41\xb2\x1e\x8c\xc5\xbc\x93\x34\x3a\x9b\xb6\xea\x47\x38\xc5\xc8\x4b\x78\xfa\x96\x3c\x41\x0e\x43\x3d\xc5\x98\x19\x6c\x22\xe5\xb7\x91\xe1\x2a\x4b\x34\x3f\x7c\xd4\x7b\xbb\x0e\xb0\x78\x2b\xdb\x1a\x4e\x46\x68\x46\xa0\x30\x52\x8e\xeb\x89\x05\x6f\x73\x25\x71\x93\xad\xaa\xbc\x1b\x22\x98\x62\x03\x48\x78\xc3\x25\x8a\x53\x25\x48\x76\x2e\x29\xec\xc0\x01\xab\xd9\x89\x64\x9d\xa5\xe1\x44\xcf\x35\xd4\x86\x99\xf2\x3b\xc4\x6c\x5b\x34\xe0\x4a\x53\xe7\x27\x24\xb2\xb0\xb8\x78\x98\x25\x75\xd6\x88\xe2\x3c\xbe\x3a\x34\x06\x7f\x49\x71\xe5\x55\x97\x2e\xc2\x90\x8a\xe5\xf0\x3e\x88\x31\xec\x67\x75\x5b\xe9\x56\x87\xce\x63\x72\x93\x9e\x1e\x2f\xb6\x95\x1e\xc9\xec\xf4\xbf\x7d\x15\x35\x43\x1e\x25\x9f\x29\xad\x43\x12\x22\xb5\x4b\x65\xaa\x7d\x07\xcf\xb5\xdf\x16\x2a\x87\xc4\xd0\x34\x81\xeb\x44\x1f\x22\x1d\x7f\x58\x62\x7a\x14\x16\x4e\x7f\x4c\x2e\x3a\x1d\x50\x7e\x89\x9d\x53\x58\xe0\x08\x29\xb0\x8c\xf3\xae\xcb\x8a\x75\xb2\xa3\x1c\x31\x85\xa5\x80\xe1\x2b\x13\xf0\x64\x28\x69\xff\xfb\x05\x67\x23\xe9\x61\xaa\xf6\xfe\xfe\x67\xb4\xa7\xc4\xc9\x3d\xb3\xfe\x1f\x61\xad\xcc\x76\x55\x69\xa9\x9c\x09\xa3\xc8\x24\xed\x4a\x98\xba\xbe\xae\x43\xef\xb1\xf3\x51\xba\x13\x0e\x22\xaa\x97\x81\x19\x86\xbe\x92\x3c\xc4\x18\x0a\x7c\x4b\x78\xbc\xc1\x40\xce\xc1\x55\x74\x65\x4a\xa6\xd6\x5a\x06\xb9\x7e\xcf\xa5\xf3\xa9\x35\x5f\x96\xe4\xee\xaa\x76\x89\x21\x7b\x66\x3f\xba\x4d\xab\x0d\x99\xb1\x9c\x8d\x8d\xbf\x47\xa1\x57\xe5\xd5\x96\x9a\x35\xef\x84\xdf\xf9\x56\x2e\xdd\x43\x4e\x73\xae\xe7\xd0\xd8\x92\xdd\xa7\x2a\x36\x2a\x22\xa7\xe9\xfa\x86\x34\xa5\x7e\xeb\xd1\xa9\x07\x48\x5c\xa8\x92\x1b\xdc\x19\xee\x9e\xe5\x88\xf3\x95\x68\x7d\x3f\xc8\xf8\xc2\x5f\x2e\x95\x76\xca\x60\x31\x3f\xbb\x2c\x26\x5a\x99\xf2\xcd\xd5\x57\x5b\x1d\xd5\x30\x60\x4e\x9a\xd6\x69\x5c\x9f\xb3\x59\x94\xa8\xb8\x7d\x5c\x85\x70\x54\x9a\x4d\x32\x9b\x9f\xe0\x87\x06\x9a\xb7\xeb\x0d\x71\x4a\x94\xe1\x92\x61\xf8\x6e\x44\x8f\x2d\xa9\xb1\xcb\x0c\x0d\xbe\x41\xd4\x4c\x3a\x82\x47\x83\xd1\xbd\xbd\x73\x26\x05\x1a\xeb\x10\xad\xab\x80\x5c\x5c\x59\xd0\xe8\x3b\x1c\x11\xa2\xfd\xd3\x5e\x44\x4a\x49\x9e\xd1\x5d\xaf\xd8\x38\x62\x77\x5f\x6c\xdf\xc6\x75\x95\x81\x84\x07\xbe\x55\xec\xbf\x7b\xf8\x6c\x73\x06\x9a\xac\xe5\x77\x62\x6a\x85\x63\x53\x6f\x60\x50\x42\xcf\x7c\xaa\xf6\xfc\x8e\x3b\x54\x5b\x77\x41\x4d\xf8\xd9\xf6\x49\xb9\x9e\xe4\x25\x41\xda\x38\xc3\xaa\xe6\x27\x20\x78\x45\xb8\xf4\x14\xa8\x07\x4d\x70\x86\x8a\x5c\x0b\x07\xb0\x70\xc3\xc6\x53\xbe\x04\x07\x6b\x83\xca\xd7\xb0\x30\x5d\x95\x00\xaa\x44\x45\x5c\xb8\x60\xdc\xc7\x64\x00\xaf\x93\xc3\xd2\xef\xb4\x2a\xe0\x56\xf1\x42\x8b\x65\xf1\x22\xe1\xc7\xb9\x58\x4d\x81\x4d\x50\xac\x72\xef\xdb"}, {{0x67,0xcf,0x27,0x15,0x52,0x87,0xbe,0x6b,0xfa,0xb6,0x62,0x15,0xe0,0x17,0xc3,0x46,0x63,0x22,0xf2,0x1e,0x6e,0xb1,0x40,0xbe,0x4f,0x1b,0xde,0xcf,0x55,0xab,0xfd,0xc1,},{0xd0,0x70,0xaa,0xb2,0x95,0xa8,0xaf,0x93,0x57,0x27,0xc3,0xbe,0x44,0x2b,0x25,0x1d,0xb9,0xe7,0x74,0xd2,0xf4,0x4b,0x3c,0x24,0x24,0xc5,0x2f,0xc8,0x96,0x56,0xe1,0x69,},{0xc9,0x34,0xa3,0xa1,0xaa,0xab,0x78,0xd9,0x26,0x9d,0x1e,0x9d,0x13,0x39,0x2f,0x72,0xc6,0x37,0xbc,0x5d,0xe5,0x4f,0x04,0x69,0x1e,0xfc,0x29,0xd4,0x73,0xb4,0x75,0x02,0x5d,0x8d,0x8f,0xe3,0xc5,0x23,0xd2,0xd2,0x9c,0x41,0xc5,0xf3,0xde,0xc6,0xca,0x38,0xce,0x6d,0x68,0xd7,0xff,0x09,0xb6,0x13,0x5b,0xa2,0x4d,0x0d,0x32,0xcc,0x15,0x02,},"\x0f\xf0\x52\x97\x03\x1c\x89\x27\x74\xcb\x2c\x01\xe8\xca\x60\xdd\xd0\xce\xac\xc0\xb8\xd5\x91\xa8\x91\xe3\x3b\x19\xe1\xbe\x9e\x36\x3b\xc6\x42\x0d\x6f\x52\x9f\x04\x84\x0b\x3b\x08\x85\x3c\x83\x5a\x03\xe0\x36\x97\x8b\x04\xa4\xf9\xec\x6b\xe4\xae\xf3\x31\x95\x61\x90\x99\x6d\xea\x27\x26\x19\xf1\x68\x6d\x33\xbe\xf0\x3d\xbc\x08\x5a\x92\x3a\x0f\x11\x5b\x78\xf6\x53\xfe\xeb\x60\xbb\x9e\x45\xf3\x4f\xb8\xbe\x5a\x4c\xbb\x64\x8c\x7d\x29\x95\x6f\x0d\x0e\x96\xbd\xd3\xc8\xd0\x64\x97\x20\x62\x4c\xbc\x20\x79\xe8\x4f\xd6\xd0\x10\x24\x11\x24\x09\x84\x59\xf1\x2a\xf2\x99\x1d\x38\x28\x77\x0f\x50\xb1\x04\xea\x6e\x5f\x51\xfd\xad\x30\xa9\xb8\x07\x9d\x21\x59\xe4\x6d\x64\xaf\x91\xd0\x7c\x10\xed\x19\x81\x4d\xf2\xaf\xe6\x60\xd7\xd8\xf2\x40\x35\x34\xe9\x2c\x62\xe1\xea\x6d\x68\x82\x03\xbc\xa3\xd9\x7c\x2a\xfd\xa8\x3b\x25\x55\x20\xff\xe9\x2a\x33\x62\x57\x72\x51\x3b\x1f\xe3\x4f\xaf\xe3\x2b\x6a\x9b\x8c\xf9\x94\xdf\x7e\x63\x4e\x68\x65\x91\xe5\xf0\x07\x3a\xba\xbc\x64\xa8\x92\x10\xba\x53\xa4\x99\x1c\x11\x55\x7e\x03\x34\xe6\xc6\xa5\x03\x6c\x64\x2a\x31\x8f\x22\x95\x11\x71\x39\x08\x5f\xb3\x40\x75\x64\x70\x06\x75\x8e\x32\xbc\x00\xad\x10\x9f\xe8\x03\xf7\xee\x9f\x5e\xc2\xaf\x4d\x25\xc3\x07\x0a\xbc\x51\xcf\x4d\x78\xe1\x3a\x7c\xe2\x83\xd4\xfb\x4e\xb4\x1d\x3e\x8c\xe9\x02\x38\x50\x0a\xe0\xce\xda\x32\x0e\xc5\x92\x2e\xfa\x10\xb9\x03\x74\x8e\x1e\x85\x3a\x37\x29\xd2\x4c\x10\x54\x39\xdf\x2f\x70\x00\x12\x3d\xb9\xb2\xc0\x15\x33\xbb\xf0\xd0\x28\xeb\xb2\xfc\x00\xdc\xe3\x8a\xd0\x63\x28\xee\x9e\xcd\x84\x9a\x6e\xfc\x3a\xe8\x84\xef\x69\x33\xcf\xeb\xed\x05\x5b\xb2\x96\x8a\x0b\x06\x76\xb5\x72\x92\x16\x17\x8c\x75\x19\xef\x07\x88\x59\x3f\xc0\xdc\xff\x50\xd7\xe0\xb1\xeb\xb3\xcf\x49\xbb\xd1\xbf\xa5\xc3\x0e\xa7\xb8\x8c\x36\xe1\xa1\x59\x3a\xef\x0b\xb3\xf9\xe2\x09\x1c\x85\x89\xf7\x41\x4b\xee\xd8\xdf\x46\x6a\x2e\xd8\x7b\x2c\xb5\xf3\x5f\x1d\x31\x24\x6c\xeb\x96\x86\x09\x25\x36\x15\xd7\x80\x43\x51\x73\x79\xee\x69\x74\xa6\x69\xcb\x48\xda\x6a\xc2\xf9\x6d\x70\x0b\x7e\x44\xa4\x35\xcf\xef\xec\x40\x2a\x1e\x31\x10\xe7\x69\x81\x92\x4f\x26\x01\xc0\x1d\xc0\x35\x46\xfd\x4f\x51\x16\x49\x30\x2f\x06\x33\xdf\xbd\x25\x65\x1c\x5a\x59\x9c\x90\x95\x44\x89\xc7\x6a\x65\xec\x05\xa7\xe4\xcc\x74\x61\x6c\xe2\x56\x01\xcc\x37\xb8\x04\xe1\xf0\xbc\xc8\x65\x10\x23\xb1\x2e\x13\x56\x84\x41\xe8\xb8\xef\x4c\x30\x5f\xcd\xad\x3d\x2b\x13\xfa\x08\x03\x24\xb2\xfd\x6b\x61\x99\x8c\xf8\x64\xb6\x58\xbc\x7f\xef\xcc\x48\xa5\xa7\x68\x1d\x7c\x86\x6c\x34\x2c\x7f\x5d\x6c\xf1\x08\x81\x52\x2c\xc7\x10\x25\x7d\x25\xa4\xc1\xe3\x52\xd2\x70\xe9\x02\x08\x2a\xb9\x54\x1d\x59\x00\xce\xff\xa0\x91\x4b\x16\xb5\x5e\x0d\xd3\x78\x6e\x98\xd4\x17\x20\x87\x5a\x14\x8e\xb4\xab\xdb\x01\x53\x85\x66\x79\xfb\x98\xc0\xec\x48\x5e\x5f\x45\x8d\x63\x5b\x78\x61\xa2\xb3\xa8\xba\x5e\xc2\xc1\x44\x4d\x35\x39\x80\x20\x0e\x5e\x07\x18\x08\x85\x4a\x26\x8c\xc7\x6c\x60\x5c\x94\xf3\x73\x29\xc3\x61\x87\xa4\x1f\xdd\xf9\x2a\xab\xdb\x49\x96\xa0\xe1\x0b\x31\x55\x26\xaf\xea\xc8\x0e\xb2\xfa\x32\xaf\x78\x6a\x34\x31\x6b\x36\x11\x1e\xe9\x35\x21\x08\x14\x4d\x70\xf7\xd1\x72\x3b\x32\xf4\xdb\xaa\x82\x20\x13\x53\x41\x1d\x65\x77\x13\xe5\x5e\x35\xdf\x78\x58\x0b\x1b\xc0\x86\x80\xf0\x15\x9f\xa1\x16\xfa\xf4\x63\x56\x6a\xaf\xe8\xae\xa6\x98\x57\xe7\x2e\x44\xac\x80\x9a\xc4\x3f\x5c\x45\x93\x9d\x85\xa1\xa5\xf4\xa3\x70\xa1\x89\x96\xc8\x51\x4a\x46\xf3\x43\x71\xef\x9e\x5f\xb2\x04\x42\x2c\x93\x4a\x1d\x29\x3d\x10\x1b\x8c\x16\xf9\x9c\xc0\x73\xea\x36\x6a\x13\xa4\x5c\x43\x7d\x62\x0d\x13\x2b\x74\x40\x9c\xbf\x8b\x9c\x07\x5b\x41\x63\xf7\x26\xaa\x67\xe5\x09\xa2\x48\x74\xfc\x1b\x1f\xb6\xfb\x7c\x73\x55\x15\x9c\x02\xaa\x13\xe6\x4b\xad\xf1\x50\x35\x6b\x18\x41\xb3\x21\xf8\x04\x1e\x13\xed\x77\xe8\x46\x1c\xfb\xb8\xe8\x28\x48\x8b\xf5\x17\xa5\xd2\x9f\xf8\x2e\x73\x67\x48\x0a\x8e\xdd\xde\xb5\x35\x0e\x7a\x83\x42\x3b\xd0\xb1\xc5\x5f\x7b\xb4\x24\xca\x04\xc2\x05\x72\x3c\xd5\x40\x56\x71\xe7\x33\xf3\x91\x60\x0a"}, {{0x18,0xc2,0x1c,0x0d,0x0d,0xe1,0x3d,0x4c,0x64,0x49,0x7e,0xf0,0x26,0x0d,0x66,0xcf,0xd3,0x42,0x16,0x98,0x1a,0x1b,0x49,0x39,0x1a,0xe5,0xcb,0x0e,0x41,0x43,0x6e,0x9f,},{0xf7,0xd4,0xdd,0x1e,0x05,0x9c,0x36,0xf6,0xd1,0x21,0xc0,0xaf,0xfe,0xb2,0x1f,0x0c,0x57,0x2b,0x45,0x99,0x2f,0x84,0x94,0x8b,0x09,0xaa,0xfb,0xcd,0x86,0xbb,0x53,0x5c,},{0xc9,0xc0,0x99,0xe2,0x1d,0x09,0x5a,0xfa,0xdd,0x4e,0x71,0xc9,0xab,0xf6,0xb7,0x08,0x33,0x24,0x77,0x62,0x25,0xb5,0x87,0xb6,0x0a,0x0e,0x60,0x92,0xec,0xb3,0xd3,0x3c,0xff,0x39,0xc6,0x7d,0x34,0x77,0x6a,0xe9,0x9d,0xda,0x75,0x4a,0x3c,0x2b,0x3f,0x78,0x11,0x35,0xa3,0x8c,0x78,0xed,0x64,0x55,0xaa,0xf0,0xae,0x0c,0x31,0x3b,0x62,0x05,},"\x68\xab\xca\x7c\x16\x6a\xfe\x06\x3e\x47\x7b\x80\xe3\x7d\xb2\x24\xe1\xa2\x35\xde\x8f\xcd\xeb\x7f\x42\x7a\xf6\x7e\x00\x12\x47\xcc\x5e\x05\x71\x82\xfd\x9b\x6d\xb8\xba\xba\xa6\x58\xcf\x3b\x3f\xe4\xb0\x76\x3b\xf8\x8d\x67\x31\x1b\x11\x90\xbe\x83\x40\x18\xcf\x57\xa3\x32\x92\x24\x13\x76\x46\x20\xac\xe0\x54\x45\xee\x01\x9a\x06\xdf\xf9\x8b\x23\x89\x79\xad\x6d\x30\x90\x1b\xef\xa3\xc6\x4f\x6b\xd8\xc6\xeb\x09\x2c\x2e\x62\x84\x13\x88\xfd\x8c\x4e\x84\x19\xe2\x77\x89\x84\x89\x67\x37\xed\x90\xa2\xcd\xb2\x19\x96\xae\xf7\xc2\x16\x38\xd6\xcb\xe6\x80\x32\x2d\x08\x99\x65\x97\xa9\xe3\x03\xf6\xf5\xf4\x79\x40\xf8\xc5\xba\x5f\x5f\x76\x38\x3e\x7e\x18\x06\x4a\x3d\x2d\xff\x5f\xdf\x95\xe9\x0c\x5e\xb3\x0f\x4d\x8d\x45\x9e\xe1\xd5\x06\xa8\xcd\x29\xcd\xc6\x9b\x67\x54\x96\x3b\x84\xd6\x74\x94\xb3\x53\x05\xd1\x0d\x12\xb9\x48\x74\x17\xb2\xce\x28\xad\xcb\x10\xb6\x5c\xc9\x31\xfb\x33\x81\xae\x02\xe7\xaf\x79\xa0\x2b\xf9\x9e\x25\x8a\x56\x36\x10\x90\xe0\xb7\x12\x22\xb3\xac\x60\xbf\x2f\xb7\xba\x83\x2d\x03\x4f\x5b\x6b\xc6\xfa\x66\x3a\xe7\x41\xf7\x6d\x97\xc1\xac\x32\xbc\xb7\x41\x15\x07\xd5\x18\xd2\xf6\x05\x4b\x57\x83\x28\xc5\xf6\x7f\x75\x8a\xc0\x1b\xfe\x6f\x4d\x35\x90\x0f\x50\xa5\xdc\xd3\x0d\x2f\x92\x61\xb6\xbb\xec\x4c\x1d\x1f\xc1\x8d\x2a\x7e\x70\xc4\xd3\x6c\x21\xfa\xf8\xcf\x94\xa5\x87\xc3\xa0\xd1\xa9\xcd\xe7\x83\x1a\xe6\x26\x77\x54\x68\xdd\xcd\x40\xa8\xba\x18\xf4\x2b\x34\x18\x8d\xe5\x74\x1e\x1b\xe8\x30\x7b\x10\x84\x58\x65\x15\xec\x01\x5e\x4e\x37\x1d\x29\x44\x3a\x40\xb0\xc0\x69\xc6\x41\xd8\xce\xe5\xe4\x61\x18\x62\x98\x7c\x3e\x35\x6b\x12\x93\xb0\x51\x8b\x4a\x4c\x8e\xa9\x7f\xc5\xa4\xdb\x1f\x01\x29\xab\xee\x72\xfb\x80\x92\xea\x35\xc2\xda\xb6\x75\x73\x85\x02\x07\xb8\xe8\x27\x18\x99\x9a\xd9\x9c\x4c\x83\x9e\xac\x14\x63\x6b\xd5\xe4\xd8\x43\x6a\x27\x0d\xd9\x0b\x8e\x32\x13\x02\xe5\x2a\x92\xd8\x91\xff\x18\x91\x54\x2a\xe2\xca\xa0\xd6\x6e\x0f\x66\x1e\xae\x37\xb2\x5b\x08\xbb\x2e\x0e\xee\xc4\x83\x80\x09\x77\x8c\xd5\x25\x98\x43\x80\x98\x3b\x2b\xaa\xdd\x71\x02\xa1\xe3\x56\x73\x4e\x41\xd7\x61\x83\x82\x9e\xa9\xab\x82\x44\xc3\x36\x59\x7c\xa2\xd6\x79\x88\xf2\x81\x43\x84\x67\xe4\x53\xf5\x62\xc6\x7b\x22\xd0\xa4\xdd\x9f\xcb\x46\xa5\xf8\x0d\x29\x9d\xb5\xf0\x1f\x59\x16\x0a\x19\xd7\x4c\x64\x4f\xa5\xa9\x40\xe3\x2c\x9d\x8d\x98\x3b\xab\x7e\xfb\x0d\x7c\x7d\xa4\xe3\xfd\xa1\xcd\x0d\x18\xa4\x55\x8e\xb9\xfe\x46\x40\x8a\xab\x50\x85\x91\x2b\xf2\xf4\x6a\xb6\x3a\x93\x54\xf9\x02\x7c\x93\x69\x12\x23\xff\xaa\xb8\x46\x3b\xac\x4c\x4b\xc3\xb1\x1a\xbc\x46\xba\x68\x71\x7c\x91\x78\x0d\x3f\x30\x47\x0d\xbd\xd8\x8b\x37\x80\xa1\x94\xc8\xa4\x0a\x2c\x0a\x81\xa4\xd5\x6d\xec\x2d\x89\x62\xc3\x4d\x2a\xb7\x33\x69\x02\x8e\x1b\xfe\xaa\x6b\xb5\x82\x41\xff\x4f\x89\x8f\x80\xad\x3b\xb1\xc6\x91\xb8\x64\x7f\x2c\x69\x83\x95\x4c\x1c\x77\x95\x74\x58\xee\xbf\x1c\x50\x55\xc3\x16\x93\xab\xce\xd0\x53\x84\x73\x5a\x4f\x74\x19\x68\xbd\x6a\xc3\x15\x65\xcf\xee\x71\xc8\x84\xc1\xe2\x9e\x9e\x7a\xe0\xf7\xec\xd0\x4d\x46\x3b\x1d\xc3\x89\xc3\x60\x37\xe8\x14\x58\xdc\xec\x61\xd0\x76\x40\x32\xdd\x58\x9b\x92\xaf\xda\x2f\xc9\x02\x8f\x41\xab\x53\xcc\xa2\xd0\x4e\xc6\xa9\x56\x59\x55\xcb\xcf\x1a\x34\x63\x98\x9c\x71\x39\xbb\x90\x2a\x59\x21\xe8\xb2\xc9\x9c\x48\xe1\x37\x11\xf0\xbc\xc3\x99\x25\x95\x16\xc8\x1a\xe9\x42\xa6\x79\xd4\xba\x33\x97\x9e\xb1\x2f\xcd\x28\x60\x60\x2e\x47\x24\xb1\x33\x0f\x1c\xd2\x57\xb5\xb2\x89\x1d\xae\xe8\xef\x4c\x92\xfc\x3b\xfd\xb3\x4e\x53\x2d\x58\x70\xf3\x80\x59\x86\xac\x97\xb5\x03\xfd\x85\x87\x35\x48\xe3\x09\x50\x00\x0f\x8a\x70\xbe\x51\xfa\x75\x76\x03\x50\x1f\x2d\x30\xe8\x52\xef\xea\xc4\x82\x68\x62\xae\xd7\xf6\xd2\x0c\x9a\x8c\x8d\xbe\x36\x2d\xfe\xe4\x18\x93\xf2\x7e\x6f\xd5\xe9\x1d\x0e\x7e\x3d\x4f\xd8\x15\x5f\x44\xfd\x8e\xf1\x7a\xf1\x4a\x84\x8d\x44\xa8\x76\x31\xae\xee\x75\x14\x62\xb2\xa5\x40\x87\x06\x8d\xae\xab\x3e\xa3\x28\x9e\xce\x62\x12\xb3\xb5\x2c\xe7\xa8\x88\x6d\xf2\xa7\x27\xb7\x2a\x57\x0c\x2f\xb9\xc5\x03\x41"}, {{0xdb,0x9a,0xae,0xe1,0x98,0xcd,0x26,0xa5,0x2b,0x11,0x81,0xfa,0x3f,0xd9,0x2a,0xbe,0x42,0x5e,0x66,0x6d,0x89,0x0b,0xf9,0x69,0x46,0x7d,0xd2,0xce,0x28,0x0e,0xd4,0xa7,},{0x3c,0x89,0x7c,0xaf,0xe2,0xb4,0x99,0xec,0xb2,0xe1,0xdd,0x01,0xea,0x55,0xf3,0xfc,0x88,0xf6,0x8c,0x25,0xb6,0x4a,0x63,0x6b,0x31,0xa1,0xfd,0x1c,0x78,0xf3,0x7f,0x3f,},{0xb2,0xe3,0xd9,0xc5,0xd0,0xff,0x32,0x99,0x96,0xbc,0x89,0xd2,0x6f,0xb3,0xac,0x12,0x6b,0xde,0xd3,0x13,0xcb,0xf8,0xdf,0x86,0x71,0x86,0x38,0xc1,0x99,0xe0,0x57,0x27,0x3d,0x09,0xeb,0x16,0x3c,0x6c,0x18,0x1f,0xd8,0xbc,0xe5,0x1f,0x72,0xd4,0xd9,0xd2,0xe8,0x4a,0xbb,0xe0,0x83,0x30,0x77,0x3b,0x9f,0xcc,0x21,0x66,0xf1,0x40,0xd6,0x0e,},"\x47\xfb\x62\x15\x61\xf8\xb7\xee\xce\xc6\x03\x3f\x2b\xcb\x6f\x43\xac\x68\xc9\x58\xdf\xd2\x65\x6f\x52\xa0\xc2\x9b\x4a\xcd\x44\xf4\x30\x4c\x6b\xf7\x7e\xea\xa0\xc5\xf6\xd3\xb2\x2d\xb1\x96\x99\xc3\xdc\xde\xde\x69\x8a\xbd\xe6\x23\xec\x4b\x2b\x90\x91\x0c\x80\xac\x3a\xf3\x9c\x55\x0b\x6d\xd4\x09\xe6\x3d\x77\x70\x66\x55\xa9\x19\x9c\xb5\xc0\x25\x8f\x5b\xa3\x82\x85\xff\xdc\x64\xb8\xa8\xf3\x73\xd1\xfb\x29\xba\x87\xf8\x4d\xdf\x5f\x34\xd8\xf1\x40\xbb\xc1\x7b\x39\x61\x68\x2d\xf5\xd0\xa8\xf9\x10\x2e\x37\x9a\x99\x98\x13\x9d\xfe\x40\xab\x8c\xe7\x53\xbf\x56\x26\x10\x82\x37\x77\x1a\x7d\x8e\x10\x9e\x9e\x0a\xfe\x9b\x66\xd0\x42\x09\x42\xe1\x63\xa4\xf3\xc0\x3f\x71\x81\x3e\xe0\x78\xbd\x09\x0a\xc3\xd0\x77\x2e\x26\x22\xc2\x59\xe6\x82\x55\x2c\x75\xb0\x8d\xd0\x55\xa4\xa5\xeb\x5e\x60\x94\x40\xbc\xd3\xf3\xa6\xfe\xb8\x76\xfd\x16\x92\x15\x20\xc6\xcb\x68\x84\x71\x0d\x2e\x15\xcd\xad\x6d\xaa\xee\xd9\x59\x62\xdd\xa2\x1c\x67\x88\xf7\x84\x91\x79\x17\x98\x2e\x1c\xcb\xb5\xfd\xd9\xbd\xc1\x76\x9d\xb6\xb6\xdb\x57\xca\x35\x4e\x01\xa1\x33\x9d\x8e\x77\xe9\xdb\xbb\x58\x12\xfb\xab\x6a\x14\xc5\x40\x85\xc0\x65\x95\x99\xf1\x50\xe2\x24\x72\x47\x0f\x1e\x5e\x67\x2c\x42\x5f\x37\x5f\x9e\x0d\x6e\x8d\x52\xfa\x17\xb7\xa8\xd7\xa4\xd7\xca\x3e\x12\xf4\xdb\x53\x83\x6a\xed\x2b\xeb\xd7\x45\x89\xba\xca\x8c\xe9\x10\x02\x91\xbf\xb7\xe4\x56\xdb\x7f\x2f\x0a\x84\xdc\x0a\x74\x88\x85\x13\x66\xa9\xa5\xfe\xa0\xe3\xef\xc7\x4b\x9c\xdd\x4b\xd9\x7b\x65\xab\xf3\x61\x39\x3c\xe1\x70\x3d\x85\x71\x80\x5e\xe6\x8a\x13\xd3\x65\x4f\x03\xdc\xec\xfb\x77\xa5\x34\x30\xd0\x94\x96\xad\x73\xec\x01\x75\x99\x57\xe5\x10\x46\xaa\x73\x96\xf5\x92\x33\x86\x50\x11\x7a\xc7\xb4\xdd\x35\x73\xeb\x53\xd9\xc9\xf9\xdf\xa6\x2e\x23\x69\xc7\x7a\xf9\xc0\xd4\x2f\x61\xba\xe7\x4b\x28\x7d\xdf\xa2\x7b\x7f\x1c\x1b\xe9\x88\x3a\x04\x46\x91\xd5\x6d\xc1\x37\x34\xad\x4e\xe3\xa3\x2a\x9f\x40\xe3\x28\xc5\x00\xd0\xfe\xd8\xea\x05\x10\xe9\x38\xf2\x75\x80\x04\x02\x2b\xca\xa6\x90\x2b\xda\x10\x14\xb8\xae\x33\x65\x27\x28\x29\xed\x94\xfa\xba\x63\xcb\x14\xa3\x6c\xf8\x13\x90\xec\xa8\x3f\xc1\xc6\x27\x17\x20\x13\x26\x1b\x39\x93\x77\x9a\xa0\x76\xa5\xc5\xd8\x1d\x90\xd2\x70\x62\xe1\xa6\xd9\x0b\x5c\xf1\x00\x5c\x70\x19\x17\xb7\xad\xac\x18\x0c\xb7\x5b\xbc\xe0\xf2\x7f\x2f\x18\x0e\x2c\xb9\x01\x40\xc1\x4c\xc6\x00\x9d\x2d\x41\xaa\xb1\xdb\x94\x18\xf9\x1d\x4c\xf3\x94\x00\x2c\xd7\x0a\xc9\xdc\x11\xce\x86\x53\x47\xfa\x3f\x56\xf8\x7c\x14\x9e\x2b\x17\xd2\xc7\x2b\x66\x3a\x58\xe3\x18\x7b\xb1\x9b\x9b\xac\x2d\x11\x48\x3b\xa1\x2f\x77\x0a\xc0\x4d\xc4\x6d\x38\x85\x18\xfa\x54\xdc\x15\x2e\x9a\x9d\xfb\xff\x14\xf1\x4c\x61\xcb\x37\x58\x97\xe3\x0c\x53\xe6\xde\x42\xd5\xe1\x40\x1d\xae\x1b\x22\xba\xaa\x0e\x8a\x41\xc6\xaf\x9d\x0e\x0b\x13\xa9\x1a\x23\xd9\xb7\xd5\x55\x20\x47\x02\x9a\x35\x21\x94\x6c\x71\x20\xd3\xd2\x58\xb3\xae\xfc\xf7\x54\xd1\x95\x94\x87\xa1\xfe\x77\x43\xac\x7e\x1c\xc8\x9e\x36\x8b\x19\x78\x09\xc3\xa2\x73\x17\xe0\xec\x48\xd5\x46\xdb\x1e\x21\xeb\x62\x9a\x29\xbc\x62\x47\xcd\xd4\xa1\x37\x14\x37\x56\x3e\xdd\x12\xfa\xea\x2c\x5c\xb7\x7e\xed\xed\xbf\xc5\x80\x08\xfa\xd1\xf6\x5a\xf3\x58\x43\xfa\x27\x4c\x73\x4e\x3f\xbb\xaa\x9c\xc5\x0d\x68\x37\x48\xb7\x5a\x48\x5f\x94\xd6\x30\xb0\x32\xa5\xf1\x06\x7d\x1d\xeb\x30\xe9\xd2\x21\x8c\x93\x5c\x98\x1d\x01\xc0\xc5\x47\xfd\x68\x41\x31\x36\xed\xf4\xc0\xc7\x70\x28\x6e\x82\x34\x42\xe1\xc5\x13\x65\x19\x29\x21\x3c\x12\x1c\x1d\xe7\x00\x98\x91\x41\xab\x4a\xf3\xb3\xfe\x74\x04\xb4\xd2\xa3\x8c\x53\x0b\xaf\xb4\x98\xe6\x49\x53\xce\x1c\x0f\xb7\xd3\x40\xe2\x11\x35\xbf\x8a\xfd\xd8\xdd\x65\xb1\xb1\x8c\xf1\xc8\xfb\x9f\x40\x2b\x26\x70\x40\x0b\x86\xdd\xaf\xb1\x84\xcc\x51\xd5\xfd\xa2\x73\xb8\x0c\x26\x52\x1f\x91\x2f\x35\x83\xb4\xae\x30\x1d\xae\x15\x1c\xb5\x5c\x75\x70\x3a\xad\xef\x03\x24\x15\x22\x7d\x53\xe3\x95\xdb\x6c\x15\x0a\x1e\xe8\x39\xad\x26\xba\xe5\x52\xe1\xab\x73\x62\x14\xdc\x04\xb0\xf3\xc4\x1b\x7c\xfb\xd0\x49\x68\x1b\xc8\x4c\x3d\x16\x53\x07\x68"}, {{0xa8,0x04,0xc3,0x3b,0x4d,0x38,0xcb,0x3c,0xe3,0x1c,0xf3,0xba,0xc1,0x04,0x9e,0x0d,0x4e,0xc6,0x3a,0x1a,0x0b,0x7b,0x59,0xfd,0x8a,0x36,0xee,0x37,0x54,0x16,0x56,0xaa,},{0x60,0x72,0x25,0x6d,0x65,0x74,0xa2,0x93,0xbd,0x7c,0x22,0x1c,0x55,0x1c,0x32,0xcf,0x2f,0x77,0x15,0xe1,0x9e,0x43,0x3a,0x49,0xd9,0xb8,0xb0,0x49,0x0e,0x56,0xef,0x62,},{0xb1,0xb4,0x4a,0x14,0x2a,0x7c,0x4c,0x3d,0x0b,0xf4,0x66,0x1e,0xda,0xc5,0xb7,0x67,0x00,0x57,0x26,0xc1,0x4a,0x27,0x69,0xb7,0xc2,0x14,0xfb,0x58,0x73,0x7e,0xc2,0xe4,0xbc,0x51,0xc3,0xa1,0x95,0xd2,0xba,0x1b,0x74,0xa5,0x4e,0xff,0x4c,0x33,0xa9,0x0f,0x41,0xcc,0xde,0xfa,0x9e,0x93,0x65,0xfd,0xe8,0xdd,0x85,0x9f,0xd3,0x97,0x8c,0x0a,},"\xdb\xfe\x30\x7f\x2a\xae\x9e\x07\xec\x7c\x4b\x68\x21\x06\xd2\xc9\x36\x7b\x0c\x4a\xaa\x58\xae\x80\x4e\x0a\x39\x04\x75\x4e\x6c\xf8\xfe\xe7\x3c\xf9\xe2\xd4\x5d\x02\x89\xe5\x07\x82\x93\xdf\xc4\x69\xd4\x6e\xa6\x70\x26\xc5\xaa\x69\x2d\x2f\x2c\x9f\xb4\xec\x57\xcd\xab\x4c\x04\x3f\xf9\xae\x61\x85\xf2\x7a\x70\x44\x54\xe5\xf5\x39\x50\xaa\xbd\x25\xc9\x91\x04\x74\xd4\x5a\xf8\x83\x68\x62\x72\x3e\x0e\x6a\x27\x82\x3d\x82\xbc\xbb\x68\xa9\x60\x52\x42\x2a\x18\x19\x51\x2e\x3b\x43\x40\x8c\xf4\x89\x57\xad\x6a\xe2\x35\xb7\x23\x3d\xf1\x82\x84\x74\x91\x53\xdf\xa5\x7d\xe3\x50\x74\xa3\x0e\xdf\xab\x8a\x56\xdf\x28\xab\x2e\x29\x40\x30\x6c\x22\x1a\xa5\x54\x90\xcc\x66\x4e\x14\x68\x3f\x30\xee\x61\x5e\x2d\x93\xfd\xf9\x71\xf5\x96\x66\x34\x65\x84\x3b\x3a\xdd\x63\x92\xba\x33\x90\x31\x1e\xf8\xdc\x59\xf2\x51\x44\x5d\x66\x9e\x10\xa0\x06\x19\x91\xe1\x13\x56\x19\x23\xaa\x21\x52\x44\x46\x3d\x82\x64\x19\x9a\xc5\x88\x92\x4e\x23\x1e\x84\x19\xd8\x68\x5f\x33\x8e\x59\x9b\x5f\x40\xbf\x9b\xd1\xae\xce\x77\x25\x35\xbb\xbc\xb8\xf6\x88\x1c\x2e\x80\x04\x91\xab\x3b\x57\xb4\x4b\x8a\xe4\x3a\xeb\x5c\x4a\xe5\xe7\xed\xeb\x22\x8f\xed\xc9\xf6\xb9\xca\xde\xa1\x76\xe1\x34\x93\x6d\xed\x60\xaf\x1c\x22\x87\x34\xfb\x00\x57\x0f\x23\x74\xbb\xbf\xa1\xbb\x17\x07\x85\x80\x5d\x6b\x6c\x70\x1e\x82\x09\x52\xea\xe4\x5b\x8c\x23\x66\x11\x3a\x1d\xfb\x2e\x35\x85\x2a\xf4\x19\xb7\x54\xf9\xcf\x7a\x08\x1c\x3d\xde\x6c\x80\x53\xbf\x1c\xe0\xc8\x53\x39\xd5\x69\x9c\x42\x24\x76\xfc\x21\xf2\x6c\xe7\x5d\x2a\x7f\xed\x09\xfc\x0f\x41\x75\x78\x98\x47\xd8\x76\xc5\x1a\xa4\xe0\xbf\x7c\xe8\x42\xb8\x30\x8d\xc7\xa2\x8c\x82\x39\x52\x07\x14\xdc\x23\x31\x36\xe0\x9f\x55\x7c\x7e\xf3\xe0\xf8\x3b\xad\x63\xcb\x28\xac\x61\x6d\x39\x28\xf3\x83\x7d\xce\x1d\xd5\x8a\xcb\x8d\xdb\xc7\x2e\x82\x2d\xee\xe4\x5f\x00\x77\x6a\xcc\x88\xe0\x0c\xd3\xa9\xdb\x48\x6d\x92\xd5\x35\xa5\x7a\x0f\xdc\x4f\x90\x3b\x62\xe5\x17\x22\x1c\x30\x8c\xba\x2e\x30\xff\xe7\xb9\x19\x37\xa9\x94\x17\x72\x1f\x56\xfe\x6d\xf4\x48\x40\xe9\xe4\x11\x36\x92\x9c\x0c\xa3\xdc\x28\xdd\xf2\x37\x9e\x4d\xcf\xde\x83\x72\x3e\x2d\x4c\x9e\x23\x29\x9c\x05\x6a\xfb\x31\xd3\xe7\x0d\x08\x5d\x0a\x31\x2c\x5c\xd5\x70\xb6\x99\xde\xa8\x71\x74\x58\x53\x13\x48\xc9\x6f\x6e\xb5\x2d\x7e\xe6\x1d\x56\x60\xf6\x5e\x90\x9a\x14\xce\x10\x33\xdc\x85\x3f\x2f\x25\xd0\x9c\xf4\xe4\x0d\x07\xef\xf7\x2e\x15\xa3\x90\x56\x4a\x2b\xe3\xc0\x42\xd8\x9a\x68\x66\x0a\x97\xff\xac\xec\x49\x67\xa4\xb6\x18\x71\x2d\x70\x60\x75\x65\x20\xc2\x9e\xe8\xd9\x22\x0a\xd8\x61\x5c\x4f\xcf\x39\x69\xbd\x3b\x2e\x09\x47\xe1\xf0\xbe\x7e\x2d\x80\xe0\xa6\x14\x80\xc3\x16\x6d\xb5\x58\x22\x18\xbb\x0a\x8b\xe9\x84\x8e\xfd\x41\xb6\xce\x0c\xd7\x95\xc4\x86\xab\xb6\x72\x10\xbe\xb6\x0c\xd0\x78\xb4\x6a\xeb\x7f\x4f\x48\x50\x31\x90\x2b\xcd\x71\x31\xe0\x0b\x70\x35\xaa\x2d\x43\xfe\xe0\x63\xf7\xf3\x0b\xd5\x70\xda\x1d\xbb\x65\xc0\xca\x92\xa4\x81\x26\x32\xe4\x32\x77\x85\x53\xe3\x5e\x85\x6c\xaa\x82\x18\x22\x1f\xd6\x31\x6a\xb0\x86\x91\x73\xb3\x84\x09\xbc\xef\xe6\xd2\xdb\x92\x10\xf9\x02\x41\x73\xb6\x6d\xbb\x92\x67\x7c\xbc\x71\xc8\xa1\xcd\x58\x3f\xa6\xf3\x54\xd3\xc9\x3f\xa8\xb1\x6c\x71\x37\x4f\x25\xa0\x0c\x33\x2f\x85\xa8\xbe\xfd\x54\x03\x88\xfb\x50\xdb\x9f\x5d\x96\xe4\xe4\xe6\x98\x83\x3c\xe3\xd6\x3c\x10\xb8\xee\xc7\x0a\x24\x3b\x90\x15\xdb\x45\x94\x31\xb6\x2f\x56\x68\xbb\xa6\x0f\x07\x04\xf6\xbd\xfe\x95\x46\xea\x47\x5c\xef\x2e\xbc\xcb\xa4\xb7\x68\x08\x48\xe8\x2b\xef\xf5\x85\x4e\x49\xf6\x5b\xb7\x73\xa4\x92\x2e\x90\xf9\xb8\xaf\xc7\xcf\x81\x87\x30\x58\x8e\xd5\xaa\x7b\x39\x98\x26\xaa\xdd\x54\x37\x2f\xcb\x76\x14\x58\xb6\x4d\xe6\x68\x57\xf4\xad\xac\xd4\xc3\x29\x00\xcb\x77\x13\x6a\x53\x5d\x7b\xbb\xb5\x54\x59\x7a\xec\xf3\x9f\xf6\x98\xb4\x5e\x6a\x21\x8d\xf1\xd2\xab\xe6\x15\xeb\x8d\x9e\x18\x24\xc0\xbe\xcc\xe9\x07\x67\x89\x9e\xbf\xd2\xc7\x30\x14\x4b\x32\xc7\x46\x04\xc0\xe5\x3e\x25\x05\xbb\x15\xd2\x80\x07\xa8\x7b\x99\x31\xd6\xee\xc0\xa6\xcb\x5b\x0f\x96\xd3\x19\x4b\x24\x23"}, {{0xf8,0x20,0xe6,0xf2,0x4a,0x84,0x18,0xb6,0xac,0xda,0x16,0x5f,0x29,0xa3,0x60,0xf7,0x67,0xcd,0xed,0xde,0x8f,0x64,0xd7,0x68,0xb9,0x5f,0xc2,0xa5,0xf3,0xf4,0x04,0xe7,},{0x79,0xc4,0xb2,0x63,0xb2,0xe5,0x8f,0x67,0x86,0x28,0xd4,0xea,0x82,0xb1,0x75,0xac,0xa2,0x30,0xb9,0xa2,0x02,0x85,0xc8,0x28,0xf9,0x4e,0x1f,0xfd,0x63,0xd7,0x5b,0x23,},{0xf9,0xfd,0x72,0xf3,0x21,0xca,0x21,0x33,0xbf,0x85,0x85,0x90,0x8d,0x9c,0xa7,0xb8,0xe3,0x36,0x22,0x7e,0x3f,0xfb,0x37,0x49,0xa1,0xfb,0xe8,0xc9,0xb1,0xe5,0xd5,0x0e,0xf0,0x1f,0x9d,0xb5,0xf0,0xd2,0xa7,0xc7,0xc1,0x39,0x9b,0x97,0xc9,0x04,0x4e,0x1b,0xc1,0xad,0xc3,0x2b,0x8b,0xea,0x46,0xda,0xd7,0xb8,0x10,0x26,0x46,0x96,0x03,0x03,},"\xab\x6b\xd4\x5b\xb0\x6d\xfb\x90\x69\x11\x8f\xf9\x98\xf3\xbd\x39\x3e\xa8\xe9\x44\x97\x9e\x89\xe0\x49\xf2\x50\x5c\xd8\x93\x1b\x93\x08\x6b\x7e\x9d\x8e\xe7\x64\xe9\xb4\x47\xea\x4e\xa1\x21\x38\xbb\x45\x27\x5a\x21\xa1\x98\x43\xf7\x5d\xc5\x42\x1d\x61\xff\xd8\x61\x83\x8e\x58\x33\x82\x5d\x67\x16\x2f\x32\x59\xc2\x64\x47\xbe\x51\xdc\x18\x02\xef\x5a\x04\xba\x73\xb7\x83\x93\x57\x06\xab\xb4\x2c\x51\x3b\x65\xf2\xbb\xc4\x4f\x83\xda\x10\x61\x24\x2f\x2d\x5e\x51\x98\xf3\x8c\x10\x71\x7a\x86\xa3\xa1\x97\xe7\xcd\x90\x34\xf6\x36\x11\x44\x99\x03\x72\x77\xac\xb4\x72\x2c\x06\xa9\x1c\xb2\xf6\x5e\x21\xeb\x8d\x22\xd3\x6a\xd7\x3b\x42\x65\xf7\xa7\x94\x7e\x00\xe7\x22\xbd\xa6\x70\x43\xcd\x12\x81\xbc\xd8\x7e\x76\x3f\xc9\x7b\x54\xc8\xf8\x68\x36\xcd\xbf\x08\xc9\xa1\xf7\x00\xf4\xea\xed\x9e\xa5\x9a\x6f\xc1\xbc\x0d\xf8\xc9\xec\x1f\xc2\x97\x7c\xad\x60\xf9\x78\xab\xc0\xc8\x38\x1a\xa9\xfb\x06\x0e\x3f\x99\x37\x8a\x51\xb2\xd9\xaf\xbe\xf3\x58\xd5\x51\x62\xa3\x89\x22\xeb\xb8\x7d\x2a\x3e\x0f\x0f\x40\x00\xb1\xc3\x9b\x15\x02\xe9\x59\x45\xe8\xac\x9f\x4a\x3e\xa7\xc9\xdd\xb5\x81\xa5\xec\x06\xc0\x0b\xa8\x7a\x73\x70\x84\xb3\x84\xfa\xba\x09\xc8\x48\x71\xdd\xd6\x7d\xc1\xbe\xbb\x2f\x7f\xbd\x94\xa5\x59\x7d\x01\x9f\xe6\x29\xe5\xbf\x12\xbe\xa2\xe3\x3c\xa8\x4c\x68\x0d\xc5\xa3\x98\x9b\xbf\x3a\xf9\xee\xec\xe8\xab\x8f\xc8\x61\xe3\xb8\xbf\xc1\xe6\x7e\x2a\xee\x32\x6b\x37\xfb\x9b\x51\xcf\xa0\xb5\xf5\xfc\x16\x00\x69\xb4\x50\xb7\x04\xe0\xfa\xb7\xfb\x6c\x5a\xb3\xc4\x0b\x8f\x0b\x3d\x09\x30\xb9\x11\x2d\x64\xb9\xda\xca\xb4\xdd\x87\x5f\x29\xd8\xc5\x8c\x5d\x20\x53\xad\x91\x48\xff\xde\x22\xd9\x0b\xc0\xd5\x0f\x5d\xec\xa6\x8d\x3e\xa2\x5c\x5b\x4c\x76\x88\x87\x1c\x0c\x77\xdb\xce\xea\xcb\xd0\xa4\x22\x9f\x49\x70\xec\x87\xb3\x44\x99\xe2\x78\x30\x3c\x06\x69\x4c\x30\xac\x68\x52\x4d\x11\xb1\x72\x79\x4b\x48\x12\x73\xa5\xda\xc4\x61\x22\xd2\x47\x20\x95\xa5\x63\xa4\x35\xd1\x85\xd5\xe9\x1d\xa7\x26\xe7\x45\x92\x99\x9c\xda\xc6\x88\xa3\x3f\x38\xf7\xc0\x35\x58\x8f\x62\x5d\xc6\xac\x73\xd0\x04\x7a\xb3\xd6\xd1\x2f\x1a\xe3\x3d\x8b\x62\xd6\xd6\xc6\xca\xcf\xf0\xbd\xd8\x94\xb5\x7e\x31\x89\x12\xac\x0c\xf4\xa5\x34\x76\x2b\x2f\x6d\x26\x3c\x93\x58\x04\x42\x3e\xd8\x68\xcf\x8c\xfb\xb8\xbe\x8f\x6d\x8a\x71\x4a\x26\x8a\x39\x0e\xdc\x2d\xd5\x09\xd2\xdc\x96\x85\x1d\x1b\xd4\x32\x49\xbd\x0f\x69\xb0\xc4\xcb\x2f\xf4\x08\x0d\x1f\xd5\x62\x2b\xc2\x38\xdd\xa6\xe9\x30\x02\x5d\x8a\x2b\x12\xb9\x72\xf9\xeb\xa1\x74\x21\xd4\xce\xa6\x42\xf4\x0a\xd9\xea\x85\x47\xae\x59\x49\x8c\x3a\xd1\xb9\xa0\xc3\x4e\xd8\xc0\x1a\xae\x3b\xd2\x1a\xc1\x77\x43\xb5\x77\xf9\x51\x5c\xfb\xdd\xe2\x70\x4d\xc5\x7e\x80\xf1\x25\x32\x3d\x55\x10\x0b\x9f\x69\x79\x27\xd4\x31\xdf\xe7\x36\x31\xb5\x8e\x52\xaa\x6a\xeb\x04\x78\xbf\x45\x95\x52\x43\x86\x89\xfb\xeb\x9c\x60\xd8\x7a\xae\x09\x95\x43\x62\xcd\x02\xa2\xb0\xb4\x79\xef\xd3\x8f\x17\x82\x1a\xf3\x9b\x21\x92\x6e\xe0\x2f\x7d\x97\x2a\xd0\xf5\x4e\xa6\x57\x2c\xc3\xeb\xd0\x20\xb1\xee\x26\x88\x25\x33\xbd\x19\x11\x43\x23\x81\x5f\x67\x2e\xc8\xc9\x05\x68\x73\x0a\x58\xe4\xe1\xe3\x5f\x68\x21\x21\x9a\x32\xb8\xa6\xc5\x2c\xed\x6f\x95\x73\xd9\xf3\xbe\xb2\x85\x13\xba\x62\xfb\x20\x1f\x7f\xd4\x1b\xb1\x0c\xa3\x4b\xb1\xc7\x0f\x2f\xd7\xbb\x92\x99\xa7\xc5\xf7\xf2\xe0\xfa\x1d\x1a\xf0\xe9\xae\xf5\xed\xe7\xc1\x69\x50\xe8\x60\xec\xd6\x1f\x18\x42\xa1\xa2\x2c\x98\x31\xc0\xc0\xd4\xed\xa8\x40\xb0\x88\xa5\x45\x20\xc9\xb1\x8c\x76\xeb\xa9\xbe\xbc\xd5\x91\x38\x1c\x18\x0d\x7f\x86\xa0\xe5\x8a\xdd\x92\xb9\xb0\xc8\x07\x6a\x7c\xdc\xab\x60\xde\xa4\xc1\xaf\xb1\x8c\x8b\x94\xb1\xb3\x92\xcc\xfb\x4d\xae\x27\x11\xe7\xd1\x2d\x2b\xc7\xc7\x82\x5f\x63\x99\x2e\xc3\x24\x71\x63\xc2\x83\xb1\x07\x5e\x32\x24\x5f\x69\xcf\x47\x24\x0a\xef\x0d\xb4\x3e\xfa\xe8\x6f\xc1\xfd\x3b\xb9\x9c\xf5\xb7\x89\xf5\xbc\xba\x95\x04\x65\x7d\x9e\x62\x2a\x4a\xa1\x6f\x01\xd4\xd8\x44\x41\x31\x24\x44\x7d\x6d\x1a\x44\x23\xe7\xb5\x5d\xb7\xe6\xa3\x1a\x31\x9f\x4b\xac\xae\x43\x0a\x33\xa9\xbd\xd4\xef\x36\x80"}, {{0x0a,0x05,0x6b,0xe0,0x39,0xfd,0x55,0xda,0xda,0x44,0x1d,0x03,0x73,0x61,0x27,0x3f,0x20,0x6e,0x00,0x0a,0x74,0xa0,0x5c,0x51,0xc0,0xcb,0xb6,0x27,0x43,0xf1,0xf3,0x40,},{0x73,0x14,0x02,0x17,0xa4,0x93,0xa1,0x78,0x66,0xff,0xf5,0x15,0x48,0x32,0x27,0x3d,0xf7,0x9d,0x58,0x11,0x54,0x3c,0x22,0x2a,0x39,0xd0,0x56,0xb8,0xc9,0x70,0xdb,0xfa,},{0xfa,0xb8,0xe5,0xd9,0x3d,0x7d,0x46,0xc6,0x5e,0xe1,0x17,0xc5,0x37,0x5e,0x73,0xc9,0x70,0x5f,0x87,0x54,0x17,0x7f,0xdd,0x46,0xef,0xed,0x47,0x37,0xc2,0x87,0x68,0xcc,0x4b,0x95,0xa9,0xc8,0x4c,0x52,0x9b,0x4b,0x91,0x6b,0x28,0xda,0xbd,0x87,0x41,0x18,0x31,0x44,0xbc,0xdb,0x48,0x3d,0xf9,0x8a,0xf8,0x9d,0x82,0x40,0xcf,0x09,0x46,0x04,},"\xa5\xab\x14\x76\x84\xe4\xd4\xa7\xbc\xb5\xa9\x6f\xb3\x98\x18\xe2\x3f\x56\xc2\xd8\xa7\x44\xe9\x12\x3d\x62\x08\x39\x30\xab\x1d\x0b\xb5\x32\xe6\x87\x14\xfc\xec\x7e\x6c\x41\x13\x4b\x6b\x19\xdd\xd8\x67\xfe\x63\x5c\x9e\xd6\x53\x93\xee\x39\xc5\xe8\xfa\xb4\x56\xcb\x5b\x32\x79\x78\x83\xf3\xcd\x9a\x09\x02\xb9\x79\x63\x48\xee\x66\xc6\x91\xfb\x4f\x2b\xb1\x47\x64\x41\x06\x57\xc7\x4a\xb3\x64\x56\x78\x79\xb6\xfa\x0a\x6f\x4d\xaf\xd9\x30\xd9\x23\x4c\xd7\x83\x4f\xb9\xd0\xee\xdf\xbb\x5a\x39\x4b\xf0\x84\x6e\xc6\x96\x9c\x2e\xf7\xce\x39\xe3\x85\x38\x95\xff\x5b\x4d\xa3\x1e\x54\x34\x1b\x42\x72\xe4\xa2\x60\x49\x18\x9f\xf2\x82\x41\xce\xef\xfb\x7d\x2e\x1f\xaf\x4f\x77\x9f\xa6\x5c\xac\x0f\x57\x83\xc6\x0a\xe7\x7d\xe3\x0a\xd4\x46\x5f\xdb\x39\x0d\x42\x57\x1e\xff\x4a\x63\x13\x63\x49\x93\x7d\x6c\xae\xef\xcd\xae\x22\x9e\x2f\x28\xce\xa8\xab\xf3\xff\xae\x3c\x3e\xcc\xd9\x06\x70\xa4\x21\x2a\x2b\xee\x1c\xa6\xa5\xb5\x4f\x09\x4f\xc3\x23\x10\x58\xf5\xcb\x9e\xce\xb9\x99\x3b\xe4\x70\x27\xd5\x1c\x18\xde\xca\x41\xcd\xda\xf4\xe8\xbc\x56\xa9\x9f\xd2\x70\x35\x5f\xf4\x59\x71\x95\x0e\x34\x37\xa1\x98\xcc\xc3\x25\x41\x68\xdf\xc1\x57\x40\x80\x80\x2e\xe1\x01\xa6\x17\xfb\x60\x4e\x86\x8f\x8f\xa8\xfb\x30\xda\xeb\x43\x07\x4d\xe1\x1f\x24\x83\xd9\x16\xde\x56\x43\xb7\xca\xc2\x3d\x93\x40\x50\x8a\x3f\xd6\x21\xec\xd2\x50\x04\x35\x6a\x53\x55\x4a\xd3\xad\x7d\x5d\x25\x81\x7a\xd7\xc9\xa6\x10\x00\x8c\x67\xac\x16\xba\x42\x11\xc4\x2f\x5d\xad\xf8\x6c\x2c\x3a\xed\x82\x5c\xf2\xa9\xb5\x23\xbf\xc0\x3d\xd7\xde\x40\x0c\x67\x80\x7e\x13\x9e\xa5\xdb\xce\x4e\xe1\xf7\xd3\x18\x88\x9b\x01\xa9\xf4\x48\x03\xc3\x22\xac\x3b\x61\xe2\x0e\x63\x12\xd0\xa0\x3b\xf9\x92\x7f\xa3\x3f\x04\xed\x7e\x20\x7b\x16\xf2\x65\x02\xc2\x98\x3a\x3a\x96\x1f\x22\x44\x61\xfe\x9b\x64\x92\x3b\x1d\x09\x18\x94\x76\xae\x8d\x00\x1d\x0e\xca\xae\x4d\xf6\x0d\xb3\x5f\x44\x8b\xb6\x12\xf9\x65\x5a\x5f\xb1\x44\xdf\x11\xd8\x3a\xa6\x93\x68\x86\xc3\x04\x94\x9e\x59\xaa\x46\xdf\x65\xc2\x2c\xe7\xbf\x28\x9b\x3c\x77\xc2\x5d\x89\x6b\xe6\xd5\x1d\xee\x10\x74\x82\x61\x68\x8c\x8b\x07\x1c\x85\x6f\x99\x62\xc6\x67\x75\xdd\xf1\x60\x83\xda\xe0\x65\x87\xe3\x2a\x63\x61\x19\x9d\x72\x09\x7e\x38\x3a\xd7\x43\x94\x91\xb5\xa5\x63\xa3\xe6\xd5\x8d\xa3\xd5\xab\xb1\xde\x84\x89\x0a\x36\xb4\x21\xce\x03\xd4\x84\xdf\xd6\x00\x39\x63\x8d\x46\xed\xfb\x60\x65\x9e\x3a\x25\xac\x6e\x9a\x93\x5a\xd6\xda\xd5\x0f\x92\x7b\xcc\x2f\xf9\x9f\x99\x24\xa5\xb7\x99\x5d\xc2\x3c\x8f\x30\x1c\xcc\x77\x69\xf7\x1c\x18\x26\x09\x04\xa3\xdc\xfb\x81\x7d\x2d\x80\x5c\xb1\xf1\x96\xbe\x8b\x6e\xcf\x35\x2b\xc2\x96\xbc\x3f\x76\xea\x91\x35\x3f\x8c\xf3\x5b\xcd\x2b\x57\xeb\x59\x42\x77\x3d\x68\x34\xac\x50\xee\xad\xc7\xe6\x64\x61\xd1\xda\x09\x8c\xce\xc7\x5f\xf7\x20\x52\x15\xf5\x24\x59\xd9\x76\x20\xf9\xf0\x28\x9e\x93\x91\x1d\xb3\x9b\x21\xdf\x81\x8f\xdf\x0b\xed\x45\x50\x92\x44\x63\x3d\xf0\x1c\xdd\xdb\x4b\x75\x97\x2f\xa7\xea\x6f\x73\x28\x1c\xbd\xbb\xd1\xbc\xb0\x0c\x3b\xc1\xb1\x72\x8e\xea\xe0\xbb\xa1\x72\xb1\x31\xf5\xd3\x08\x90\xa3\x41\xe6\xb7\x2f\x7e\x89\xdd\x4b\x6d\xb3\xe7\x9b\x69\x27\x58\x6c\xf2\xc8\xac\x38\xdd\x14\xf3\x74\xd7\xf5\xbb\xa9\xf4\x35\x3d\xef\x10\xdd\xc9\x4d\x3d\x11\x18\xc5\x69\x9e\x38\xb6\xb5\x04\x91\x8e\x58\x9e\xfe\x3f\x7e\x97\x3f\xb4\x0e\x2e\xbd\x05\x7d\xe1\x38\x5e\x39\xd6\x99\xa8\xf6\x83\xb9\x62\xfa\xe4\xf3\x90\x28\x81\xf1\xaf\xbe\xd7\xc7\x83\x82\x35\x58\xc3\x6d\x68\xc6\x87\x5d\x16\x6f\xa2\x43\xeb\x2a\xe1\x4f\x7e\x63\x15\xa6\xd2\xab\x4e\x79\xea\x8e\x16\xe6\x9d\x30\xed\xc7\x08\xf1\xe7\xaf\x7a\xda\xfe\xdc\xd3\x16\x88\x98\xb3\x31\x87\x81\x78\xc4\xba\x88\x33\xd2\x0b\x3c\xac\x9d\x32\xb8\x88\x8c\xc6\x78\x32\x06\x39\x74\x70\xa2\xe7\xcc\x4c\x98\x09\xff\x79\xce\xac\x9d\xc2\x4c\xa1\x43\x8c\x91\x9c\x8a\x41\x5e\x82\xf0\x90\x2b\x4d\x9c\xf4\xcc\xd5\x76\x96\x8d\x5b\xee\x81\xc5\xf1\x9c\x7d\x57\xb9\xba\xda\x8e\xab\x47\x56\xea\x27\x0d\xd2\x61\x29\xe6\x12\x2e\xe2\xd6\x15\x24\x2b\xc7\xfa\xbf\xf4\xf8\x31\x2e\x68\x6c\x8f"}, {{0x22,0x05,0x24,0x86,0x0c,0xb8,0x9a,0xb2,0x95,0xbd,0x88,0x4f,0x98,0x8a,0x57,0x91,0x18,0x68,0x69,0x3d,0x6b,0x10,0x5a,0x80,0xb2,0x30,0xf2,0x1e,0x57,0x80,0x5a,0x7d,},{0x4a,0xb3,0x2b,0xc1,0x56,0x6a,0x76,0x77,0xe7,0x99,0x73,0x4d,0xc8,0x41,0x81,0xfb,0xb6,0x54,0xb8,0x13,0x37,0x91,0x80,0xf1,0xdd,0x35,0xae,0xf2,0xd3,0x24,0xc1,0x2c,},{0xdb,0x1c,0xc0,0xc5,0xdb,0x77,0x3e,0xc5,0x16,0x89,0xbe,0x28,0x84,0x2f,0xa6,0x79,0x1a,0x7d,0x75,0xe2,0x9c,0x22,0x8a,0xe9,0x59,0x3a,0x58,0x0e,0x08,0x75,0xb1,0x67,0x0f,0x09,0xb0,0x34,0x42,0x92,0x9a,0x18,0xf1,0xe9,0x41,0x4e,0xa3,0x43,0x15,0xff,0x09,0xd9,0x1d,0x92,0x2e,0xe4,0x7f,0x10,0xf7,0x1d,0xa4,0xab,0x13,0xb7,0xd9,0x01,},"\x02\x4a\x54\xac\x5e\x01\x63\xb3\xa4\xfd\xd0\x2f\x59\x36\x88\x8a\xe2\xf9\xb7\x4a\x64\x14\xb5\x3c\x63\x81\x17\x3b\x09\x5a\x4d\xda\xcf\xc3\xa6\x9f\x19\x16\x7d\x0f\x1a\xe0\xc1\x20\xbb\xa7\xe9\xfc\xb7\xcc\xfc\x79\x6d\x89\xea\x46\xef\x80\x58\x86\x6e\xf6\xda\x7d\x01\xa6\xa1\x42\xea\x69\xd7\x20\xc4\xf8\x05\xac\x54\x05\xa8\x01\x2c\x3c\x2a\x82\x63\xb5\x37\x2d\x59\xbf\x7f\x40\x99\x29\x90\x13\xd2\x62\x59\xdf\xd5\x19\x3e\xce\x56\x17\x97\x77\xbe\x51\xb8\x6b\xd1\xce\x5f\x1f\xc9\x15\x6f\x2b\x3a\x32\xc0\x9d\x86\xbc\x61\x32\xde\x57\x61\x02\xe2\xf0\x3c\x71\x6d\xb5\x36\x6c\xcb\xe7\x42\xae\xe3\x55\x2a\xc3\xb3\x9d\x0e\xc7\xd4\xe4\xe9\x62\x6b\xf8\xec\xe0\x31\xd6\x78\xd3\x48\x09\x05\xc0\xe3\x38\xfb\x7c\xc0\x26\xe3\xe7\x9c\xf2\xc2\x78\x1a\xc2\xa5\xa4\x0d\xf4\x28\x4e\x23\x5a\x03\x89\xe9\x28\xfc\x63\x55\x7d\xc6\xf1\x99\xfc\xec\x5f\x36\x1e\xa2\x47\x59\xfa\x7c\x5f\x71\x97\x8c\x0b\xa2\x45\xe4\xb0\x3a\xe4\x35\x94\x1c\x86\xc8\x1a\x51\x43\x0c\x2d\xc9\x92\x7e\x3b\x0f\x4e\xc4\xeb\xa7\xc2\x74\x5b\x49\x39\x87\x15\x4d\x7d\xa8\x5b\x67\xde\x21\xc5\x98\x40\x7f\xb2\xa7\x60\x80\x4a\xd0\x5b\xfd\xfa\x45\xa6\x13\x22\x4b\x22\xa0\x85\x88\xcc\xea\x3c\xbd\xf4\x7a\x19\x8b\xeb\xf8\xcf\xed\x86\x49\xd6\xd5\xf3\xfa\x50\x13\x76\xbd\xfb\xa4\x00\x3d\xac\x22\x37\xdc\xac\xe5\x31\x5b\x7f\xef\xb8\x79\xa8\x9a\x85\xbc\xe6\xda\x52\x6f\xc3\x60\xcb\xb4\xfd\x55\x4e\xf0\x13\xf3\x3b\x73\x84\xcd\x2b\x22\xa8\x85\x77\xf3\xa2\xd3\x66\x42\x2a\xae\x46\x41\x7b\xa9\x16\xe1\x64\x6e\x24\x40\x4a\x88\xb5\xd5\x3f\xf1\xae\xd2\xa4\x7b\xaf\x81\xfc\xb4\x28\x63\x97\x99\x13\x94\xb2\xec\xc3\x96\x67\xac\x46\xc2\xbd\xb6\xd0\x23\xb3\x3d\xb0\x13\x45\x7c\x40\x05\xd8\x39\x01\x5d\x88\x51\xf0\x28\xac\x33\x4f\xb2\x4b\xba\xd2\x90\x2a\x4d\x63\xae\x68\xe0\xec\xa7\xea\xea\x1e\x85\x65\x29\x64\x7b\xaf\x14\x12\x21\x37\x54\xed\x50\xaf\x3f\x43\x6e\x9b\xaf\xc1\x60\x16\x39\xb3\x9d\x3e\x52\xa9\x3a\x89\x8f\xb6\x01\x9f\xd5\xed\x6e\x7d\xfc\x05\x0e\x7c\xe5\xf3\xd3\x5c\xeb\x50\x67\x02\x1c\x0f\xbd\xc7\x08\xd3\xf2\x6b\xd6\x05\x68\xd1\xed\x2b\x61\x2b\x69\x62\x35\xd5\x33\x33\x18\xf9\xa6\xc9\x87\x23\x5a\x7a\x07\xf8\xc6\xa9\x35\x4f\xb8\xe7\x34\x76\x30\x65\xaf\xcd\x4d\x93\x77\x64\xa4\xf0\x37\xcc\x7e\x7e\x2b\x93\x21\x7f\x16\x41\x68\x4f\xa8\x1b\x7f\xf7\x98\x6a\x28\xb3\x8e\x95\xb3\x32\xe7\x46\x49\xe8\x3d\x0d\xed\x79\x5c\x57\xf2\x4c\xf2\x76\xe0\x14\x39\x01\xba\xfe\xf0\xf1\x69\x3f\xe7\xcf\x10\x90\x4f\xb0\xd8\x80\xd7\x2e\x44\x71\x6a\x70\x69\xda\xaa\xe7\x42\xcf\x0f\xf3\xed\x92\xf5\xf7\xd1\xe1\x0e\x04\x9d\x8d\xf0\x43\x63\x1e\xd0\xed\x4c\x4a\xc4\x02\x2d\x84\x03\xcb\x04\x21\xb4\x54\xcb\xfb\x6f\x48\xa3\x0e\x9e\xe1\x60\x9a\xd7\xb6\x82\x11\x97\x7a\xcb\x33\xb9\xc1\xa1\xbe\x73\x58\x14\xc5\x8f\x66\xdb\x5f\x0b\x8a\xc7\x73\xb1\xd5\x8d\x4e\x6b\xc4\x5d\xfd\x48\xa2\x94\xbb\xd2\x5e\x92\x67\x1f\x56\xf3\x02\xf2\x9b\x50\xd8\x04\x31\xc8\xf2\xea\x33\x99\x62\x57\xb2\x08\xe0\x57\xea\x76\x72\xcc\x2d\x1c\xd4\x20\x4b\x85\xb2\xab\x50\x90\x27\x13\x13\x59\xae\xb4\x2e\x3e\xcc\xdb\xae\xcf\xe2\xcd\x3e\x5a\x33\x13\x26\x6e\x76\x11\x94\xff\x69\xca\xe9\xe3\x7e\x51\xcc\x0a\x54\xf0\x86\xdd\xe1\x3c\xb3\x31\x18\xe3\x4f\xe3\x3c\x74\xd7\x35\x58\x27\x52\xd6\x8d\x21\xc7\x9e\x5c\x3a\xae\xa9\x4b\xa1\x07\xcb\x7e\xe8\xa7\x0a\x3f\x9a\x01\xe9\x80\x8c\x0a\xeb\xa6\x66\x53\x15\xb4\x56\x25\x84\x0a\x03\x3a\x6e\x2a\x87\x54\x95\x05\x79\x42\xed\x9b\xb2\xce\x6e\x4e\xe6\x0b\xed\x47\xcd\x9d\x58\x4b\xc2\x45\x24\x39\x7a\x10\x94\x98\xee\x2a\x97\x3a\xad\x6a\x29\xb7\x0a\x1c\xfb\xfe\x9a\xa5\xc7\xcb\x9f\x35\xf0\xfa\x00\x22\x7f\x43\x98\x8d\x07\x61\x9b\x6f\xb2\xf6\xd3\xbe\xe2\x8e\x10\xee\x70\x53\x47\x01\x5a\x92\x2e\x2e\x88\xd3\x4f\xb0\xce\x51\x5b\x08\xdf\x3a\x1b\x63\x4f\xf9\xec\x15\xd0\x59\x41\x82\xc8\x6e\xbb\x0d\xb7\x83\x61\x2a\x7d\x19\xe4\xb2\x2e\x82\x2d\x56\x62\x45\xae\xd7\x2e\x69\x4c\x3d\x10\x1b\xfa\x4c\xa8\x79\x86\x2e\x5f\x99\xc2\x3a\x5d\x66\x08\x3c\xe0\x6d\x87\xf3\x99\xaa\x78\x88\xab\x83\xb8\x66\x44\x72"}, {{0x4e,0xf6,0x0f,0x06,0x91,0xd7,0x37,0xe6,0x4d,0x43,0x7b,0xfd,0x33,0x98,0x33,0x0e,0x55,0xe3,0xc0,0x94,0xcf,0x41,0xfc,0x55,0x7b,0x0f,0xe0,0xb6,0x43,0x90,0x9a,0xb8,},{0x30,0x6a,0xb1,0x46,0xe5,0xc8,0xcd,0x63,0x0f,0x9b,0x48,0xbf,0x8b,0x68,0x5d,0xb0,0xb6,0xb5,0x53,0xef,0x69,0x68,0x68,0x53,0xb6,0xb5,0x31,0x96,0x01,0x18,0x54,0x8c,},{0xcb,0xf7,0xcf,0x22,0x08,0x1c,0x5f,0x23,0x5d,0xba,0x35,0x63,0x0f,0xb3,0xf0,0x40,0x8f,0xce,0xcc,0xef,0xeb,0x28,0xb9,0x9d,0x74,0xdb,0xd9,0x8c,0x90,0x2c,0x7d,0x99,0xba,0x9c,0xa7,0xfa,0xb3,0x74,0x7c,0x50,0x4c,0xc2,0x19,0xf4,0xdd,0x10,0x10,0x81,0xf5,0x8c,0xe6,0x16,0xe2,0x92,0x80,0xe3,0x62,0x53,0x9f,0xe4,0x9f,0x34,0xd7,0x05,},"\x0a\x18\x8a\xc2\x6f\x3c\x5d\x89\xf3\xd5\x88\x37\x4f\xac\x5e\xcf\x9a\x46\x7e\x21\x65\xb3\x1d\x0b\x0f\x23\x50\x1b\xd2\x2e\x62\xbf\x35\x55\xff\xba\x94\x63\x1d\xe7\x4a\x6a\x3c\x3c\xf6\x3b\x03\xac\x1b\xbb\x37\xd2\x33\xec\xa5\x99\x3b\x09\x70\xa0\x22\x0d\xe8\xd6\xc4\x1a\x97\x03\x07\x30\x9a\x52\xda\x05\x76\xdc\x33\x4d\x80\x64\x47\xaa\x09\xd0\xb2\x45\xea\xcd\x0b\x42\xc4\xe1\x9f\xa3\xd6\xfb\xdc\x22\x94\x30\xeb\x3c\x75\x58\xaf\x53\x31\xc6\xe7\xfc\xc2\xe5\x52\xce\x35\xd5\x79\x07\x3b\x54\x8d\xc1\x15\xbb\xd2\x7e\x5a\x33\xce\x1c\x47\xfc\x84\x61\xe3\x91\xb6\xd7\x67\x95\x34\x87\xcc\x52\xee\x67\x3b\xc4\xbe\x96\x56\x9c\x85\x57\x36\x9e\xbb\x6e\x02\xf7\x92\x38\x10\x8c\x3b\x58\x56\xee\x38\x1a\x79\xff\x46\x4c\x8f\x60\x09\xfd\x47\xe6\x7b\x4c\x80\x20\x1e\x11\xe6\x1a\xb8\xf5\x9b\xa5\xd0\x7b\x15\xac\xe3\xfb\x37\x4c\x64\xb6\xb4\xc3\x45\xe2\xb0\x0e\x91\x51\xab\x8e\x1c\x5c\x98\x56\x8b\xc5\x8d\xd0\x81\x2a\xaa\x3b\xee\xe1\x65\xe7\xea\xe5\x8f\xbd\xe6\x30\x77\x20\x3c\x4f\xd6\xe1\x60\x68\xd7\x6e\x3d\x3a\x13\xf1\xcd\xd7\x32\x88\xbd\x5e\x4d\xa4\x4e\xb1\x19\xa0\x4c\x4d\x32\xef\xa2\xf1\x3e\x74\x26\xa2\xf4\x1c\x56\x23\xc9\xb0\x66\xb1\x30\x36\x39\xb8\xfc\xea\x0d\x87\x74\xcc\x08\x04\x5f\x7e\x34\x63\x65\xff\x31\xd3\xb1\xed\x99\xe9\x7b\xca\x5f\x25\xc9\x2b\x28\x43\xac\x58\x5d\x02\x19\x3a\x2f\xd3\x94\x66\xf7\x3a\xaa\x98\x9b\x1f\xa0\x5b\x9a\x15\x7f\xd0\x27\x7c\x5e\x74\x5d\x25\x8e\x02\x78\x03\xa5\x24\xad\x94\x30\x94\x25\xc3\xf4\xde\xc3\x1c\x0e\xfc\x54\x77\x52\xf4\xc7\x19\x4c\xbb\x27\x2f\x84\x9a\x52\x16\x9c\x6a\x07\x8d\x20\xed\xe1\x43\x20\x16\x52\x84\x77\xb5\x8c\x2b\xdf\x60\x63\xf9\x44\x7e\x33\x83\x7c\xcb\x43\x7d\x8d\x6b\x95\xcf\x4c\x44\xbe\x70\xc8\x19\x3a\xd9\x80\xa1\x05\xf3\xdb\x6f\x99\x30\xba\xb4\x67\x8c\x77\x63\x42\xfa\xf1\x70\xed\xf7\x42\x48\xd3\xb1\xca\x96\xf7\x31\xb9\xd0\x26\xd8\xf0\xf7\xc3\x4e\xd3\x72\xc1\xcd\xe1\x76\xf5\x5f\x55\x86\x75\xcc\x31\x80\xc2\x39\x02\xf4\xba\x95\x08\xd1\xc9\x1c\x3c\x9e\x68\x87\x30\x32\x7f\x3f\x7b\x63\x7a\x8f\xee\x54\x37\x37\x59\xfc\xb1\x7c\x92\x17\xea\x44\xce\x43\x69\x1a\x8f\x64\x63\x64\x0a\x4a\x5e\x15\x1e\x62\x54\xc4\xef\x12\x62\x3b\x49\x39\x4d\xa7\xcc\x79\x45\x26\x93\x81\x7d\x6b\xae\xa9\xa0\xa7\x58\x76\x94\x8b\x1f\x8d\x3b\x71\x7f\x9e\xc3\x67\x53\xf5\x32\x63\x71\x03\x83\xb9\x82\x62\xae\x63\x54\xff\x2a\x22\x83\x22\x0a\xd4\x2c\x5c\xb2\xcb\xbd\xf1\x2c\x87\x95\x13\x71\x0b\x16\xbe\x85\x6f\x3b\x13\x55\xb3\x6f\x4b\x80\xc0\x17\xc2\x1b\xe8\x5e\x96\x05\x3d\xa0\x50\xc4\x03\x12\x10\x0a\xbb\x64\x0b\x87\x3d\x88\xfb\x6e\xe0\xd1\x9e\x9e\x61\xb0\x4c\x97\x0b\xd1\xf0\x60\xdd\x31\x1b\xbb\x9a\x6e\x35\xb9\x85\xfd\xca\x17\xca\xee\x8c\xd5\xdb\x63\x7a\xcd\x90\xcb\x8e\x82\x32\x55\xc0\x56\x01\x8f\xef\x59\x20\xdb\x64\x0d\x22\x01\xc5\xed\xdb\xd8\xa9\xc9\x47\x4d\xa8\xde\xf7\xe1\x32\x5b\x3c\xc4\x36\xc7\x4f\x81\x5d\xb1\xe4\x2b\x42\x1f\xaa\xb6\x26\xa4\x37\x8c\x2d\x84\x26\x1b\xf6\x49\xa5\x3b\x32\x1f\x59\x8c\x44\xbb\xd3\x00\x2b\x06\xcf\x7f\x1f\xde\xf8\x4a\xb3\x5f\x73\xed\x7d\xc6\x50\x96\xcb\x1d\xc0\xcc\x0e\x34\xc5\x61\xc8\xa1\x5c\xf5\x27\x9a\xbb\xed\x9b\x16\xff\x24\xa9\x74\x4e\x3f\x5e\x64\x9c\xc9\xd8\x88\x4f\x89\x1c\x3f\xb7\x89\x02\x03\x1f\xfe\x0e\x01\x21\xc7\x20\x80\xad\x10\xc2\x47\xb7\xc9\x3a\x9e\xbb\x2d\x84\xd4\xf8\x77\x75\x0d\x7b\x34\x16\x39\x3d\x03\x04\x52\x26\xbb\x79\x94\xee\xa5\x8e\x27\x2d\xc1\x8c\x46\xb3\x82\xd1\xf9\x7b\x23\x76\x5f\xda\x7a\x8c\xe2\x1f\xc6\xb9\x8d\x72\x3f\xfc\xcd\x99\xac\x46\x55\xcc\x5d\x10\x10\x5a\x2a\x5b\x7c\x8c\xfb\xfb\x90\xe2\x7a\x9a\x80\x9e\x41\xae\x64\x00\x63\x28\x64\x05\xa9\xbe\x83\xac\x5d\x29\x07\xa4\x5f\x16\x3c\x77\x64\xb0\x9f\x99\xa5\x55\x93\x22\x0d\x69\x01\x29\x2b\x9b\x58\x03\xa0\xfe\x71\xb0\xe4\x44\x1c\xbf\xef\x84\x1c\x33\xce\xbc\x98\x36\x4d\x66\x6e\x5a\x9f\x5e\x7e\x69\xa1\x50\x8e\x43\x80\xed\x36\x13\x45\xb7\x24\x8a\x4c\x1c\x1c\xe0\x87\x69\xbc\x71\x52\xdd\xb3\x32\xfb\xa1\x76\x20\x0f\x5a\xbb\xae\x38\x12\xf4\x06\xda\x72\xdd\xe5\xdb"}, {{0x19,0x7e,0x15,0xdc,0xe4,0xc4,0x7d,0x73,0x4d,0xbc,0xe4,0x68,0x8a,0x7a,0xd5,0xfe,0x41,0xeb,0xf2,0xaa,0x29,0xa2,0xbd,0xdb,0x2b,0xee,0x62,0x84,0x29,0xc1,0xbc,0x02,},{0x30,0xfa,0xc3,0x23,0x04,0x8b,0x0c,0x78,0x1a,0x9f,0x63,0xc1,0xee,0x69,0xf2,0xb9,0xe7,0x5a,0x27,0x06,0xd2,0x49,0x51,0x2a,0x27,0x39,0x60,0x7f,0x26,0xdb,0x13,0x8f,},{0x2c,0x3c,0x8c,0xd2,0x99,0xc9,0x06,0x0b,0x65,0x99,0x9b,0x03,0xa6,0x57,0x9b,0xc5,0x0e,0xf1,0xfe,0x0d,0x85,0x1f,0x23,0xbe,0x9c,0xb5,0x8f,0x8f,0xb8,0xc6,0x72,0xee,0x08,0x6a,0x53,0x9e,0xad,0x94,0x9e,0x08,0x7d,0xf0,0x91,0x12,0x2d,0x26,0xfa,0xaa,0xd2,0x06,0xa5,0xc5,0x2f,0xcd,0x58,0xb5,0x14,0xd7,0xa9,0x35,0xbe,0x01,0x79,0x08,},"\xfd\x97\x1d\x48\x94\x6b\x51\xff\xed\x7b\x62\xc5\xd0\x99\xc1\xe5\x6b\x13\x58\xb9\x22\x35\xe1\x01\x0e\x3f\x23\x84\x4d\xdb\x73\xbc\xee\x8d\x2e\x1c\x99\x77\x35\x3b\xc9\x6a\x22\x1c\x05\x60\x29\x31\xfa\x16\xcc\xc2\xab\x6d\x0f\x01\xc8\x46\xc2\x92\x0e\x99\xde\x02\x6d\xc2\x89\x7f\x3d\x5f\x3c\xee\x17\x4c\xe7\x51\xd4\xa8\x05\xee\x19\x59\xa3\xc6\x9c\xfd\x42\xd7\xc9\xaf\xd3\x1f\xa9\xb1\xcf\x05\x78\x6d\x8f\x90\x42\xa4\xf9\xf8\x1c\xf7\xac\x9c\x1c\x39\xb3\x6f\x1e\xe9\x5b\x98\xcf\x7e\xe3\xf4\x3e\x2c\x34\x37\x33\xd1\xd8\x2c\xc0\x8b\x2c\xde\xb7\x8d\x98\x20\x34\x08\x5f\xf4\xdc\x65\x36\xcd\x15\x4a\x79\x0c\x85\xc8\x61\x3e\xc4\xe5\xe1\xdc\x37\x7d\x38\xa7\x45\xd9\x38\xcf\xb1\x5c\x8b\x8a\xa8\x61\x21\x83\x5f\x2e\x25\xe9\xe6\xd0\xde\x68\x02\x5d\x81\x0c\x3d\xc9\xdf\x99\x1d\xad\xad\x39\xdc\x69\x81\xfd\xba\xc1\xff\x9b\x7a\x79\x1c\x39\x60\xd8\x56\x43\x66\xe5\xaa\x39\xa9\xe9\xc7\xcb\xf1\xd3\xf0\xf8\x20\xd1\xb9\x01\x08\x75\x1a\xc7\x64\xda\xbe\x05\xc5\x1c\x18\x52\x9d\xa1\xb0\x34\x96\x14\x66\x84\x24\xab\x4e\x93\x64\x40\xc4\xa2\x51\x3b\xe5\x28\x53\x93\x72\xee\xe7\x87\x54\x58\x9d\xbe\x79\x94\xfa\xa1\xf6\x22\x91\x24\xf8\x39\x95\x0e\xd0\x92\x3f\x43\x23\x31\x5a\xc9\x63\xbb\xe4\xc8\xe1\x77\xda\xc5\x16\xe7\x34\x22\x38\xf1\xcd\xf1\x40\xbe\xfc\x8a\xcd\xca\x3d\x00\x2b\x16\xc1\x39\x8d\x86\x86\x00\x30\x4c\x7e\x98\x53\xb2\x3a\x51\xb1\x7d\x9f\xd0\x61\x56\xe1\xd1\xd0\x8a\x28\x46\x09\x09\xfa\x20\x9c\xcc\xcc\x4c\xec\xbd\xb1\xa4\x63\x48\x08\x91\x15\x31\x86\x81\xa9\x5a\xe5\x80\xab\x67\x66\x04\x13\x84\x65\x1c\xc4\xe6\x14\x51\x03\x92\x3b\xdf\x4a\x32\xa9\x3d\x93\xee\xd3\x18\x79\x1f\x20\x80\x5f\x7e\xa8\x4b\x74\x3e\xe1\x1e\xad\x9e\x4c\xa0\x3d\xa7\x6d\xdd\x24\x9f\xd4\x47\x5f\xc1\xa3\x53\xc7\x0a\x83\x38\x9b\xfa\xc5\x20\x98\xdb\x06\x6d\x10\x29\xc4\xef\xfb\xed\x86\x4e\xbe\x7f\x10\x7e\x01\x03\xb3\xa8\xf3\xfd\x1d\x6a\xb4\x36\x0b\x99\xe8\xb1\x40\xc5\xea\x13\x3e\x92\x3c\x39\x2b\x8e\x40\x63\xaa\x6e\x52\x26\x38\xf6\x1d\x7a\x71\xc9\x22\x58\x97\xd9\xf8\xa1\xe1\x6c\xfc\xc8\x01\xe7\xd5\x41\x04\xeb\x10\xe6\x1a\x5a\xe6\x3c\x5c\x85\xa5\xb2\x93\x92\xab\x3a\xb8\xe5\xc0\x39\xf1\x00\xd0\xf4\x60\x0c\x61\x0e\x02\x09\x43\x6e\xf2\xec\xe4\xd0\xbd\xb0\xba\xb4\x37\xb2\xdb\x5f\x37\x08\xfd\xdf\x96\x66\x0f\x6f\xb1\xa9\x0d\x60\x48\xd3\x95\xaf\xaf\xa7\x60\xcc\xaf\x15\xde\xaa\x0e\xff\xeb\x26\xec\x17\x68\x1d\x17\x2c\x13\x30\xf7\x8e\x78\xa8\x73\x6b\x28\x5f\x61\x5f\x15\xd4\xf2\xc3\x13\xd2\x5f\x30\xae\xe9\xd1\xdb\x39\xf5\x35\xfc\xdd\x0e\xbc\x8e\x71\xb8\x9c\xe6\xb3\xfc\xb5\x67\xcd\x0f\xa2\x88\xf4\x8e\xd3\xa7\x59\xbb\x2e\xd2\x00\xfd\xc2\x30\x91\x50\x2f\xd9\xca\x65\x1c\xe5\xe3\x42\x2a\x98\x33\x5a\x81\xd7\x4a\x65\xcc\x15\x00\xe9\x07\x0a\xbb\x60\x9c\x1c\x1f\x68\xfc\x2c\xa9\x4c\xdd\x55\x0f\x99\xbc\xb2\xd0\x92\x41\x6b\x9b\xd3\x88\x41\x0b\x8f\xe7\x48\xfb\x8c\x9a\x5a\xb8\x61\x5f\x2e\xd9\x68\xf8\x5d\xcb\x27\x27\x72\x69\x84\xbe\xad\xa7\xa1\x8a\xfd\xb0\xc7\x2a\xa6\x5d\xe7\xab\xb7\xa8\x6f\x11\x16\x9a\x6e\xad\xf1\xc2\x1d\x61\x4e\x52\xc0\xc8\xf0\x19\x74\x7d\x34\x1a\x05\xd8\x5e\x37\xbf\x58\xd8\x32\x7e\x99\x39\xc2\x38\x7c\x27\x44\xed\xf8\x38\x56\x3c\xb3\x7f\x0b\x16\xe8\xa0\x6f\xc6\x28\xa9\x72\x30\x50\x6f\xa4\x18\x39\x54\xdc\x74\x81\x5f\x3b\xe2\xeb\x2a\xff\x4a\x13\xc0\x65\xf7\x43\xb7\xd8\x5d\xe8\x04\xeb\x28\xef\xe5\x70\xed\x5e\xcc\x71\xab\xa9\x7f\x97\x63\xb4\x36\x17\x32\x47\xf3\x8e\x0c\xf6\x29\x72\x09\xb6\x51\x28\x46\x5a\x38\x26\x64\xce\xd8\x01\x1f\xcc\x3d\x0e\x56\x3f\x15\x5b\xc6\x3c\x94\xdd\xe7\x3c\x7b\x17\x24\x7b\x8c\x3a\x4e\x80\x34\xeb\xd4\x36\x46\x35\x18\x5c\xe9\xc7\x08\x1d\xbd\xbe\x85\x45\xf7\x9d\x01\xaa\x53\x2a\x0d\xc5\x2c\xb7\x90\xa3\x1f\xc2\xff\x41\xac\xeb\xad\x27\xcc\xe9\x24\x45\x54\xdb\x65\x2f\xa2\x87\xba\xe7\xde\xcb\xcc\x8c\xe9\xe0\x1d\x1a\x88\xab\x41\x2b\x6c\x65\x78\x20\x3b\x42\xde\xc9\x82\xb7\xf3\xb8\x23\x14\xdb\x2c\xc7\xc5\xc3\xdc\x1d\x3d\x8b\x17\x14\x4d\xa7\xfe\x60\xe7\xa8\x72\x5f\xd0\xa9\x7c\x61\x06\x07\xcf\x41\x3c\x72"}, {{0x08,0xb5,0xfd,0x4e,0x41,0x9d,0x23,0x70,0xc0,0xfc,0xd6,0xc3,0xb9,0x2f,0x8d,0xb3,0xaf,0xd4,0x22,0x68,0xf5,0x33,0x08,0x5d,0x9f,0xce,0x32,0xb5,0x22,0x82,0x4e,0x34,},{0xcd,0x0d,0xa6,0x99,0x37,0x9e,0x4f,0x94,0x25,0xe8,0x4b,0x97,0x57,0x30,0x0a,0x51,0xa1,0x63,0xf3,0x58,0x73,0x4c,0xc3,0x7a,0x91,0xff,0x0e,0xa4,0x88,0xd2,0x97,0x79,},{0x42,0xa1,0x37,0x56,0xb7,0x5c,0x67,0x22,0x48,0x5f,0xa3,0xf6,0x94,0x04,0x1b,0x39,0xb7,0xd7,0xc5,0xfd,0x40,0xeb,0xc0,0x6a,0x52,0xe0,0xff,0x34,0xce,0x14,0xd8,0xd4,0x0f,0xa8,0x2a,0x95,0x08,0xb5,0x68,0x53,0x7d,0x26,0xd0,0xdd,0x7c,0x0a,0x31,0xbe,0x71,0x0d,0xa8,0x0a,0xab,0x35,0x19,0x6a,0x03,0x9b,0x60,0x64,0x1d,0xb1,0xe1,0x01,},"\x3c\xee\xee\xa3\x0f\xa4\x01\x56\x3d\xf3\x6b\x19\x8b\x9b\x59\x69\x8c\x10\xe1\x00\xa2\xf3\x0e\x6f\x78\xfe\x62\xb9\x2e\xca\xc9\x89\xe8\xaa\x09\xec\x76\x0e\x89\xca\xc0\xa1\x6b\xde\x3c\xac\x73\x62\x2a\x86\x27\xef\xed\xfa\x4e\xc0\x9b\x87\x3f\x7e\x10\x00\xe7\x69\x82\x91\x0c\xa0\xaa\x4a\xfb\x1f\xf5\xa8\x44\x8b\x76\xf7\xb0\xd2\xa2\xd5\x2a\x7f\x40\xde\xde\xfc\x68\xd6\x0c\xe6\x62\x2c\xa0\x80\xd6\x69\x8e\xa6\xc3\xbd\x72\x10\xb3\xb6\x48\xf5\x32\x52\x29\x14\x94\xb3\x5a\x55\xff\x40\xfa\x1a\x63\x1a\x57\xc5\x10\x01\x1a\x46\xbf\xb9\xe2\x71\xba\xe1\xe7\x8c\xe6\xc6\xea\x60\xc5\x5b\xa0\xcc\xe3\x60\x59\xbf\xb0\x1e\x39\x45\x56\x98\x7f\x74\x4b\x72\xae\xbb\xdb\x4b\x1b\xdb\xb3\xbb\xaa\xee\x1b\x8b\x2f\x31\x74\x50\x6a\x79\x3f\x0a\x51\x1b\x2b\x56\x90\x49\xb3\x0a\x2e\x08\x41\x42\x41\x84\xa4\x8e\xca\x9e\x2d\x83\x78\x3a\xc5\xb6\x1e\xb9\x47\xcb\xd8\xba\xb7\xad\x38\xb0\xc6\x84\x27\xd8\xf9\x4a\xe2\x85\x19\x0d\xbb\x6e\x0c\x6d\x58\x0a\x25\x14\x23\x94\xbe\x94\x81\x58\xd8\xda\x83\xb4\xf3\x4a\x8d\x25\x8b\x97\x07\x56\x32\xb3\xc2\x8b\xfa\xe3\x10\x5e\xd1\x87\x2e\x35\x6e\x43\xae\xd5\x93\x97\xb9\x11\x0b\xbf\x9d\x8c\xa2\xa0\x44\xd5\x27\x1e\x6c\xc3\x61\xe1\x4e\x69\xa9\x32\x51\x76\x83\xec\x81\x81\x8f\x02\xcf\xa0\x29\x5e\x56\x61\xce\xa3\xe5\x86\xaf\xc0\xdb\x41\xba\x95\x55\x3e\xe7\x5b\x20\x0b\x0f\x97\x90\x11\x1d\x37\x57\xa7\x39\xe5\x63\x55\x7a\xff\x9b\x70\xca\x14\xe8\x7b\x79\x54\x37\xba\x91\xa9\x5d\xd0\x7e\xa6\x9a\x11\x35\x9f\x36\xca\x03\x29\x8e\x0b\xfa\x4f\x91\x2f\x64\xa2\x92\x4a\xd9\x01\x97\x5a\x2a\x96\x0b\xa1\xbe\x89\x92\x1b\x1f\x54\x85\x49\x6b\x7e\xa5\xda\x6d\x8a\x69\x37\xac\x10\x5b\xf3\x76\x0e\x48\x76\x99\x0a\x0f\x5c\x5a\x63\x4f\x74\xcb\x57\xdf\x7c\x17\x2c\x8a\x41\x53\x72\xe6\xd9\x03\x29\x87\x17\x49\x96\x16\xf8\x97\x1c\x68\xbb\xec\xe9\x2e\xa8\x78\xa1\x8e\x23\xf3\x27\xc3\x64\x9b\x6a\x85\x2e\xf2\x3b\x7b\x3e\x60\x3c\xdf\x80\x45\x2d\xbf\x1b\xe2\xfb\x77\xe8\x14\xd2\x52\x54\x96\xbb\x31\xfb\x6e\x4e\xd2\x53\x32\x48\xb3\x9d\x5f\xbe\x23\x90\xa9\xb6\xfc\xca\xba\x99\x7e\x8b\x49\xb5\x98\x36\xe3\xe0\x95\x29\xea\x5e\x41\x13\xee\xe4\x51\xc9\xc6\xbb\x26\x74\x1d\x0e\x4c\x58\x6f\x53\xd6\x04\xc6\xea\x0c\x0e\x60\xdb\x02\xe5\x10\x9f\x37\x34\xf5\x1c\xdd\x89\x85\xaf\xeb\x3e\xca\xff\x65\xe0\x59\xe3\x12\xcd\x50\xfa\x34\x9f\xf2\x8b\xdc\x9b\x70\xb7\xf5\x32\xdb\xab\x1d\xf4\x3b\x03\x16\x7c\x1d\x2e\x3f\xa6\xee\x8c\x9b\x17\x4a\x0b\x2c\xf8\xaa\x9f\xfa\x40\x6b\xf5\xbd\x72\x88\x78\x0c\x9c\x4a\x6b\x69\x79\x49\xb4\x86\x38\xd4\x20\x79\xc8\xc6\x6e\x14\xd9\xb5\x72\xa2\x10\xa0\x93\xea\xf1\xd2\xf7\xa7\x03\xb5\xcd\x20\xad\xc4\xf9\x92\x7a\x6e\xa8\xea\x78\xfa\xa6\x1b\xc6\x2b\x3c\x5c\xbd\x3a\x53\x25\x25\x66\xd0\x43\xba\x55\x65\x90\xd9\xa7\x63\xbe\x7f\xea\x4b\x20\xe1\xe9\xcf\xbe\xbf\xae\x15\x43\x9b\x33\x4d\xc5\x39\xb1\x7d\xad\xa2\xe4\x34\xe9\xc8\x32\x25\xb1\xe8\xf6\xbe\xb7\xd5\x56\xb4\x7d\x7f\x69\xf7\xeb\x7d\xf5\xed\xe2\xee\xbd\x84\xe2\x50\xb7\xc9\x46\x8c\x21\xfd\xc0\x17\x0e\xa8\xdf\x66\x2d\x61\x80\x58\x1f\x65\x7f\xe7\x6c\xef\x18\x58\xb6\xb0\x2f\x73\x25\xc7\x21\x96\x43\xfb\xa2\xf7\xe9\x96\x3a\x33\x32\x2d\x65\x04\xab\x91\xbf\x10\xa9\x78\xfa\x07\xb4\x7d\x5d\xb0\xbe\x00\x0d\xcd\x00\x2b\xdd\xaf\x67\x6b\x77\x25\x9c\x9f\x60\xad\x0b\x11\x67\x1c\xd5\x77\x7c\x1e\x80\xb1\x3f\x82\xeb\x0f\xb6\xa1\x80\xb5\x66\x62\x93\xa4\x32\x40\x86\x2f\xbf\xa3\x97\x8d\x95\x31\x19\x71\xaf\xab\x9e\x1c\xc8\xab\x14\xa8\x76\xb6\x57\x2a\xc8\xa4\xb7\xe0\xb4\x0a\xaf\x6b\x52\xa1\xcf\x4c\x1e\xbc\x6c\x1c\x48\x7d\xf5\xa3\xcb\xc4\x00\x5a\x0e\xe3\x29\xca\xbc\x28\x6d\xb1\x0f\x17\xd0\xf1\x78\x2e\x07\xd3\x32\x4f\x0c\x73\xef\xbd\x3c\x2f\xb5\x2b\x71\xf9\x8a\xd9\x5d\xb9\x50\x62\xd9\x14\x25\xe7\x34\x67\xbc\x1e\x4e\x9b\xf5\x52\xe8\xa2\x44\x29\xd9\x7d\xb1\xd6\x6d\xd4\xd9\x95\xe5\xf8\xd2\x4e\x9c\x91\x0b\x2e\xb1\x75\x8e\xf7\x55\x25\xc3\xd6\x5a\x3f\x43\x0a\x02\x73\x48\x82\x0c\xe3\x05\x3b\x6f\x3a\xf4\xec\x96\xd0\x49\x37\x31\xc8\x18\xc6\xb1\xa7\x0c\x25\x0a\xc6\x86\xa4\xfc"}, {{0x1e,0x85,0xc9,0xe4,0x51,0xb7,0xac,0xf8,0x01,0xd1,0x6b,0xc8,0x26,0x8e,0xb4,0x2a,0xe8,0x5c,0x72,0xc6,0x8e,0x9f,0x90,0x92,0x7a,0xa0,0xf3,0xb5,0x0b,0xef,0xd2,0x29,},{0xa6,0x9d,0x05,0x7f,0x4b,0x74,0x38,0x11,0xe0,0x7a,0xc7,0x45,0x61,0xc2,0x25,0xbe,0x03,0x81,0xc7,0xd5,0x84,0x9e,0x60,0x18,0x79,0x37,0x01,0xa8,0xcb,0x6c,0x99,0xb5,},{0x6c,0x36,0xda,0x9a,0xd6,0xc4,0x56,0x34,0x3c,0xe6,0x42,0xac,0xa4,0x54,0x92,0x3a,0x52,0xa2,0x84,0x4c,0xe5,0xee,0x58,0x94,0x7c,0x8d,0xf7,0xba,0xb2,0xeb,0xe4,0x67,0x82,0x3c,0x56,0x33,0xe5,0x30,0xb1,0x67,0xd7,0x1c,0x47,0xad,0x95,0x49,0xdf,0x05,0x94,0x3f,0x99,0x42,0x1e,0x17,0x47,0x5c,0x4d,0x4f,0x08,0xde,0xdf,0x6f,0x32,0x05,},"\x18\x9e\xa9\xc8\xd9\xed\x14\xb0\xde\x82\xb4\x4c\xbd\xd5\x87\x57\xa2\x7c\x68\x38\x3f\xba\x59\x77\x61\xf9\xe8\x62\xe0\x8d\xe1\x5b\x1e\x44\xc3\xdb\x1b\xad\xbd\xe7\x69\x80\xee\x39\xe6\x99\x62\x9f\x6f\xcf\xef\x32\xd3\x6b\x33\x93\xda\x2c\xa5\xa8\x1f\x95\x9c\x8b\x0f\x1b\x80\x1b\x5f\xa4\xc4\x7c\xa3\x95\x91\xe6\x12\xa2\x43\x5c\x5b\xaf\xd7\x7a\x5c\x7a\xb7\x43\x59\x21\x09\x06\xf4\x75\x33\xb1\x87\x9e\x2a\x5a\xf5\x86\x4d\x96\x1c\x81\x46\xe2\x5d\xac\x77\x25\x55\xe0\x42\xa8\x87\x26\x14\x19\xab\x8c\x9f\x6f\x62\x56\x25\x48\x1d\xa5\xb9\x35\x26\xa1\x31\xf3\x7b\x53\x4a\x00\x50\xa8\xa4\x62\xb3\x3f\x20\xa7\xe9\x4b\x89\x15\x30\xb1\x9b\xf6\x54\xee\x95\x34\xc9\xa8\x36\x1d\x03\x63\x5d\x8d\x27\xd4\x6b\xe7\xbf\x84\x78\x1a\xd0\xd4\x2d\x1e\x7c\x48\x54\xa4\x9b\xa1\xba\x45\x82\x62\xfe\x5e\xa1\x90\x21\xb9\x35\xa6\x94\x94\x92\xd7\x0b\x60\x5e\x15\x19\x89\xef\x26\x41\xb2\xbf\x81\xec\x4b\x92\x02\x0f\xc7\x07\x4c\x2a\x63\x22\x9d\x51\xa9\x44\x18\x6a\x28\x89\x5e\x8e\xa9\x52\x92\xc2\xf8\x72\xbb\x21\xa3\x14\x93\x99\xe2\x3c\xcd\x8e\x2f\xc4\xf1\x7a\x46\xb5\x9c\x28\x2c\x51\xb5\x8d\x00\x26\x6a\x5c\x16\xb1\xce\x35\x0d\x54\x85\xe8\xd8\x01\x6d\xd0\xa5\x0a\x59\x84\xcc\x94\x81\x54\xcd\x5c\xe7\xcd\xa0\xee\x0a\xb1\xd7\x25\x1b\xdc\x70\xa1\x78\x5b\x8e\x91\x03\x91\x7f\x4b\x91\x7a\xb2\xb4\x94\xf3\x48\x33\x89\xa2\xf9\x23\x75\x41\x84\x9e\xd3\xbd\x56\x5c\xff\xac\x9e\x75\x6d\xb5\x6e\xf5\xe2\x34\x95\xbc\x77\x1e\x88\xbf\xfa\x87\x07\xce\xea\x5c\x09\xbe\xca\xdd\x05\x9a\xb8\x89\xd1\xdf\x7e\x88\x7b\x71\xa9\xe6\xc2\x38\x37\x8f\xbe\x0c\x36\x30\x38\x66\x16\x36\x3f\x20\x7b\x16\xc3\x27\x0d\x39\xac\xde\xd5\x11\x52\x99\x92\xf4\xe5\x98\x78\x91\x21\xd3\x16\x13\x58\x10\x63\x6b\xaa\xde\x8a\x28\xed\xc6\x6b\xbf\x5e\xde\x3f\x40\x4a\x70\xb4\x7d\x35\x98\x8b\xe7\x06\xb4\xea\xa0\x30\x23\xa3\x90\x93\xd5\x83\xcd\x4c\xd8\xbf\x4c\x74\x34\x1a\x02\x8c\x19\xd6\x0d\xa3\x1b\x6a\x7a\x03\x4c\x08\x1a\x2b\x03\x0f\xeb\x3c\xd2\xf0\x3d\x0f\xaa\xbf\xfb\x58\xe3\xfc\x36\xc0\x06\xcf\xb9\x29\x47\xa7\xde\x5b\xa8\x74\x76\xc1\xb0\x51\xe1\x82\x83\xc0\x3e\x9c\x6e\x5a\x5c\x3c\x27\x77\xd9\xa0\x75\x73\x72\x37\x96\x64\xe8\x2f\x84\x85\x82\x4f\xed\xb7\x0a\x4b\xc4\xe3\x56\xed\xd1\xb5\xce\x0f\xb6\xe4\x1d\xe0\x17\x16\x21\xb8\x4f\xaf\xa0\x01\x89\xaf\xa8\xa6\xa9\x00\xb1\x4c\x70\x75\x8f\x7a\xa4\xfb\x82\x40\x0e\x0d\x18\xab\x3c\xd7\xe4\x8a\xcf\xd4\x89\xca\xb0\xe7\x2e\x71\x9f\x79\xa0\x7d\x06\x6c\x53\x1a\x89\x1c\x55\x29\x1f\x22\x45\xdb\xbe\xe4\x4e\x52\xb1\xdf\xc8\x72\x7a\xae\x38\x7a\xb9\xe7\x19\x94\xa3\x85\x4e\x1a\xdd\x73\xd9\xa7\x96\x5c\x77\x55\x21\xc2\xf5\x40\x84\x22\x76\xdd\x30\x9e\x2f\x6a\x34\x1e\x7f\x0f\x37\xf2\x2b\xb6\x62\x7b\x6e\x9c\xb2\x5b\xa2\x4c\x6c\x4f\x4e\xb9\xf5\xe7\x62\x2d\x88\xda\x19\x84\xe2\x9c\x5d\xa0\x01\x03\x9c\x44\x04\x2b\x59\x35\x14\x06\xa4\x13\x36\xdd\x77\x2d\x49\x7d\x3f\xc8\xaa\xc4\x11\x72\xeb\x5a\xa6\x41\x7f\xe4\x22\xec\x7c\x15\x0b\x96\xb0\x45\x4e\xe3\x31\x24\x7c\xb1\x53\x8a\xef\xf3\xec\xa2\xd5\x0e\x53\xd6\xd1\x31\x70\xa7\x6a\x00\x49\xea\x0c\x05\x90\x4a\x63\x90\xed\x14\xce\x74\x91\xe9\x7f\x75\x4c\x52\x22\xda\xc4\xb6\x11\x8b\xa3\x81\xf5\x52\xe7\x3e\xa8\x49\x1e\x3b\x7a\xc9\x49\x56\x9b\x56\x9c\xf2\xd2\x9a\x80\x41\x0e\x06\x5b\x5c\xc4\xa4\x66\xbb\x04\xeb\x7a\x15\xf5\x96\x79\x2e\x84\x90\xba\x70\x02\xec\x36\x15\x71\xaf\x5d\x8f\x57\x67\x5c\x95\x64\x49\x47\x0a\x2f\x99\x55\x40\x73\x67\xe4\x09\xa2\x32\x89\x95\x53\x12\x0a\x27\x7d\xb8\x63\xe9\xa8\x2d\xda\xba\xe8\x7b\x78\x91\x45\xba\x89\x8d\xf3\xc2\x8b\x96\xfb\xe3\x01\x4c\xd0\x85\xc6\xe6\x0e\xe8\x83\x17\x01\x03\x6d\x99\xc5\x42\x5d\x58\xe8\xbc\xc9\xfd\x92\x71\xd4\x6a\xec\x1e\xb9\x55\x13\x01\x02\xea\xaa\xb4\x4e\x07\x70\xc3\x0b\x2b\x12\x7e\xfb\x0e\x5f\x8a\x3f\x7a\x0c\xa3\x4e\xc9\x98\x4a\x46\x01\x1b\xc2\x6b\xfd\xe0\xc0\x81\x9b\xb5\x47\x06\xb5\x65\x63\x8b\x75\x42\xdc\x4b\x8b\xf8\x09\x8d\xc0\x1f\x16\x1b\x3b\x12\x96\x18\xb5\x9a\xde\xd3\x3c\xb5\x9c\xe9\x18\x9a\x67\x62\xdb\xae\x5b\x0d\x34\xb7\x1c\x8d\xbf"}, {{0x51,0xcf,0x86,0x8f,0x82,0x0e,0xed,0xa0,0xdb,0xd1,0x01,0x80,0xf7,0x77,0xe6,0x06,0x5c,0x93,0xa4,0x83,0xc5,0x8a,0x77,0x8b,0x67,0xe7,0xd8,0x42,0x30,0x2f,0xb7,0x67,},{0xab,0x08,0x8f,0x50,0x2f,0xbc,0xf2,0x15,0x0e,0x48,0x46,0xb3,0x4d,0x2c,0x80,0x97,0xff,0x01,0x3c,0x02,0xa8,0xb9,0x7c,0xfc,0xf2,0xb9,0x5a,0x1c,0x72,0xdf,0x3e,0x24,},{0xe1,0x53,0x42,0xa1,0x1c,0xaf,0x89,0x28,0x95,0xe4,0x66,0x22,0x88,0x63,0xd0,0x83,0xb0,0x69,0x2f,0x01,0x06,0x10,0x74,0x8c,0x23,0xdf,0x2f,0x11,0xd2,0x94,0x75,0xba,0xfc,0xe9,0x27,0xca,0xfe,0x7f,0x07,0xef,0xb8,0xc3,0x47,0xed,0x56,0x63,0xe7,0x3b,0xea,0x89,0x53,0x1c,0xed,0xc0,0xc3,0x48,0xe7,0x9b,0x6e,0x58,0xa7,0x57,0x49,0x07,},"\x7c\x2d\x8e\xe8\x2d\x9a\xbf\x8a\xa9\xc7\x24\xc7\x5b\x90\x99\x04\x73\xf1\x31\x76\x3f\xe9\x3b\x30\xcb\x04\x72\x35\x88\x62\x1d\xa2\xa3\x27\x92\x8b\x22\x64\x9f\xa0\x62\xcd\xea\xbd\x77\x76\x15\x38\xb2\x70\x9b\x8f\xb7\xa2\x00\x6e\x50\x35\x09\x13\x4c\x92\x9c\x30\x11\xe1\xd7\x28\xa5\x7a\x4e\x17\x51\x98\x07\x5e\x21\x42\x53\xf3\xf3\x0e\x01\xb6\xe0\x4e\xab\xd4\xde\x06\x78\x95\x58\xe6\x98\xb1\x86\xef\xe3\x4b\x32\x12\x95\x68\xb3\xe8\xd0\xd7\xea\x3f\xf0\x0b\x3f\x25\xa4\x22\x36\x89\x3a\xa8\xa4\x1b\x67\x4a\x0a\xb5\xf4\x1e\x7b\x28\xcf\x5a\x7c\xb7\x65\xe1\x8e\xad\x6d\xe6\xa3\x53\xa7\x82\x4a\x3c\x49\x78\x60\x38\xd6\xf4\x93\x7f\x32\x64\xd6\xcc\xf0\xc0\xa2\x46\x5b\xb6\x93\xe5\x2b\x3d\x1e\x6e\xb9\xae\x4c\xb6\x5d\x09\xcf\xf5\x48\x42\xe8\x53\x62\x85\x7a\x59\xf7\x19\x8a\x68\x8a\x3d\xf3\x85\x13\xcd\xd6\x1e\x21\xdf\xd8\x59\x14\x2c\x83\x44\xa3\xb8\xb2\xa7\xc7\xdb\x17\x0f\x39\xf8\x7c\xa3\xff\x8e\xd4\x27\x96\x2b\x2b\x1a\x14\xd1\x22\xfa\x2d\x5a\xea\x2a\x66\x40\x11\x7d\xd2\x58\xfa\x0f\xc5\x4a\xc6\xe9\x40\xbc\x16\xd2\x11\xec\x9a\xdf\x91\x4a\xb1\x65\x78\xf5\x21\xf6\x55\xd2\x12\x7e\x79\xe8\x71\xbf\x7f\xa7\x54\x47\x19\xd5\x8e\xd8\x47\x85\x0c\xb2\x7b\x99\xeb\x8f\x29\xb1\x6c\xdc\xc2\x8b\x15\xc1\x25\x9a\xb4\xd5\x89\x70\x5a\x40\x66\x88\xf6\x05\xa2\xeb\xf5\x80\x51\xc4\x3a\x77\xc4\xe0\x1f\xd6\xf7\x49\xd3\x2d\xb4\xe8\x9f\x26\x3c\x2c\x16\xde\x18\x1f\x0e\x6b\xdd\x0a\x6a\x64\xff\xe6\xf1\x82\x94\x44\x09\x6d\x9f\x3e\x2b\x67\xe4\xbb\x00\x66\x50\xb5\x92\x9d\x1f\x82\xeb\x11\xbb\xed\x24\xe8\xf1\x01\x8a\x73\x84\x60\x5a\x3c\xf2\x9a\xb5\x98\x33\x79\x39\xc7\x6a\x3b\xe8\x61\xe4\x83\xc5\x80\x5e\xc3\xce\xe4\x5e\x34\x24\x84\x7a\x08\x55\x8d\xcc\x99\x49\x9f\xb9\x38\x2a\xca\xe5\x6c\xdc\x87\xfb\xd5\xb2\x6f\xf9\x4c\x86\xf2\xe1\x08\x79\x43\x83\x50\x1c\x8b\x33\x36\x68\x50\xa7\x6a\x0d\xfc\x0a\x7c\xd7\x89\xa0\x3f\x01\xa3\xe9\xd9\xe9\xae\x39\xfd\x72\x45\xdc\x29\x29\x9d\x24\xf3\xb4\xb1\x67\xca\xcc\xd2\x23\xa9\x9b\x6b\x20\xa3\xb6\x73\xdc\x5f\x74\x66\xd0\xb2\xf8\x15\x09\x8a\x49\x7c\xca\xf8\x04\x20\x16\x8e\xdd\xbf\x4d\xa5\x7b\x86\x66\xe9\xd3\x3c\x48\xeb\x30\x4b\x4c\xfc\xf4\x57\xcd\x76\x59\x54\x3f\x6d\x1e\x66\x18\x90\xf5\x62\xb4\x3b\x8b\x6d\x1c\x4d\xcc\x07\x7b\x60\xbf\xa5\x33\xff\xab\x92\x8d\xbf\xd9\x55\xdc\x51\x16\xd7\x70\x95\x0b\x69\x0e\x21\x06\xad\x52\xd4\x2c\x31\xc2\x2b\x88\x48\x89\x43\x32\xb5\xc6\x99\xe5\xc3\x31\xfb\x38\x1e\x58\x12\xe7\x52\x6f\xdf\x4b\x8a\xa2\xda\xaa\x2c\xa2\xcf\xb9\xc9\x21\x11\xb6\x1c\xbc\x3d\x1e\xef\x6c\x8c\x67\x37\xf0\x55\x88\xf0\x44\x67\xdb\x83\x30\x84\x3a\xcc\x98\xdc\x1a\x16\xfb\xd9\xd9\xd9\x4b\xd8\xbf\xde\x26\xc3\xf7\x1d\xee\x72\xb5\x09\x10\xc3\x6b\x24\x0f\x80\x2a\x61\xca\x16\x37\x2f\x6f\xfa\xad\xb2\xbe\x4e\x85\x3c\x5e\xd6\x9a\x3d\x1f\x6c\x7b\x2d\xe5\x13\xc5\x3a\x3f\xdd\x0a\x67\x6f\x83\xd0\x9d\x5c\x51\x17\x60\x47\xd9\x20\x07\x16\xbf\x22\xba\xe4\x5f\xe0\x1b\x3e\x0c\x2c\x51\xc1\x6e\x46\xad\x06\x37\xf7\x9f\x9b\x4d\x83\x86\x77\x04\xfe\xda\x9f\x22\x78\x31\xde\xa2\x63\x39\x9c\xa2\x77\x1a\x4e\x78\xb4\xdf\x8a\xc0\xde\x6a\x94\x1e\xab\x37\x0b\x1f\xdb\x47\xda\xf6\x64\x2a\xae\xaa\x63\x17\x0f\xa9\xb3\xd1\xe1\x62\x8f\x7c\x4e\x7c\xf0\xea\x8b\x8a\x8e\x51\x8c\xba\xce\xf9\xad\xe8\x4d\xf0\x32\x48\x48\x47\xff\xb6\x1b\xbd\x07\xe8\x72\x7c\xc4\xc2\x5d\xa5\x77\xb2\x64\x51\x9b\x49\x99\xfa\x7c\x0b\xc3\x23\xd4\xf3\xf9\x73\x9f\x78\x0b\x9b\x2c\x23\xc7\x78\x55\xee\x5f\x6d\xcc\x40\x15\x44\xd6\xb6\x4b\x27\x70\x15\x8f\xdc\x6c\x12\xf4\xd8\x9b\xeb\x04\x4e\x0e\x85\xac\x7a\x68\xd4\x29\x17\xb1\x34\x51\x14\xb9\xa6\x72\xd1\x23\x1b\x2c\x6c\x0f\x96\x9f\x20\x35\x31\xe7\x1b\xbb\x40\x05\xb1\x03\xa7\xdc\x3a\x58\xb5\xb8\x24\xa7\xe0\x1b\x6e\xb9\xf4\x96\xdf\xa6\x4d\x64\xd8\xc6\x77\x7f\x53\xaa\x58\xd5\xda\x04\x6d\x72\x6f\x55\x45\x4c\x88\xb6\xd7\xd4\xab\x0d\x21\x98\xa8\x97\x09\xf1\x18\xa6\xb3\x24\x60\xb9\xeb\xce\xff\x3f\xdd\xc6\x05\xda\x77\xef\x3d\x1b\xa3\x0f\xec\xf0\x7b\xe2\xf5\x31\x3f\x4e\xe6\x35\xaf\x5e\x95\x61\xd8\x77\xe9\x9c"}, {{0x54,0x3d,0x5f,0x1d,0x4a,0x6e,0x10,0x29,0xb1,0x91,0x41,0x38,0xfb,0x1f,0x46,0x59,0xe6,0x94,0x56,0x55,0x72,0x07,0x40,0x66,0x88,0xa2,0x03,0x5c,0xbb,0xb2,0xa6,0x8a,},{0x3c,0x83,0x79,0x0c,0x3b,0x45,0x53,0xde,0xae,0x4f,0x84,0x3b,0x50,0x1d,0x26,0xf6,0x16,0x70,0x93,0xee,0x54,0xe2,0x79,0x75,0x9f,0xfa,0xd8,0xcb,0xc0,0x61,0xe7,0x20,},{0x55,0x20,0x11,0x94,0x02,0x6f,0xd6,0x44,0x8b,0x1d,0x52,0xf8,0x3e,0xd2,0x0a,0xc2,0x84,0xe7,0xe7,0x7f,0xa9,0x2d,0x52,0x95,0xd3,0x38,0x25,0xce,0xa3,0xac,0xa4,0x7e,0xc7,0xaa,0xca,0x2f,0xc0,0x86,0x79,0xf9,0xac,0xfc,0xed,0xb3,0x76,0xfd,0xa4,0x61,0x9b,0xe3,0x27,0x2c,0x74,0x45,0xe8,0x70,0x5c,0x30,0x61,0x41,0xcd,0xe1,0x6c,0x0f,},"\xfe\x00\x57\xf0\x62\xfc\x87\x13\x24\xb8\xbd\x5d\x42\x7e\x9a\x52\x76\x23\x1b\xd3\x09\x90\x7e\x58\x81\xd7\xae\x53\xb1\xf3\x70\xc2\xa4\x33\x02\xa1\x65\x10\xb4\x60\x64\xa3\x07\x36\xba\xc9\x09\x51\xf1\xd9\x88\x1a\xf6\x2c\x70\x14\x83\xeb\xb9\x27\x2a\xd7\x72\x12\xee\xb5\xfc\xbc\x7e\xc2\x28\xd9\x69\xf8\x90\x27\x32\x11\x3b\x98\xe3\xbf\x82\xdf\xea\xdd\x0d\xe5\xe7\x65\xd2\x87\x0b\x12\xd1\xf9\xb5\xa2\x82\x97\xc9\xfd\xd1\x49\x5c\xf8\x77\x89\x19\x6a\x7d\x64\x4e\xec\xd9\x35\x87\xdb\xf2\x0c\x28\xeb\x09\xda\x28\x66\x03\xc5\x82\xd2\x12\x9a\x65\x7d\xb2\xd1\x7a\xdd\x35\x58\xdd\xe0\x29\xce\x27\xb8\x83\x52\xde\x3f\x95\xab\xa1\x7e\x1e\xd1\x91\x37\x22\xdb\x08\xa7\x95\xdf\xbb\x70\xd6\x2a\x88\x02\x72\x4c\xb0\xf5\x35\xf8\x48\xd0\x52\xaa\x3d\xde\x91\x66\x96\x3a\x80\x41\xfc\xcc\x4e\x60\xbf\xb1\x1d\xe2\xbf\x28\x6e\xb6\x02\xa4\xaf\x84\x2f\x4d\x1a\x34\x0d\x78\xbb\xbc\xb2\x85\x7f\x0c\x30\x8f\x44\xbb\x10\x1e\x7b\xc8\xb7\x41\xd5\x06\x09\x4e\x27\xbb\xaf\xa7\x24\x28\xef\x66\x6e\xa6\xea\x16\xf7\x99\xb4\xee\x58\x27\x8f\x04\x59\x74\xd8\x6d\xc7\x2c\xf5\x26\x0d\x96\xf9\xc0\x9b\x2f\x11\x81\xe1\xa4\x50\x0f\x92\x83\xdc\x67\x7f\x38\x4f\xf6\x4e\x51\xe8\x9f\x76\x58\x20\x20\x32\x6c\x38\x8c\x08\xa0\xfd\x00\xde\x73\xd5\xd4\x9c\x06\xc0\xc6\x84\x19\x1a\x26\x4f\xff\x72\x6d\x87\x2d\xc3\xae\x49\x6c\x7b\x47\x8c\xfc\x61\xb5\x17\x14\x19\x2f\x76\x46\x3e\x3d\x0a\xab\x41\x0e\xa1\x15\xe8\xbe\xfe\xdb\x99\x7d\xdd\x16\x99\x21\xb3\x20\x7e\xa6\x6c\x1f\x59\x45\x0b\x76\x23\x12\x9f\xd1\xe2\xdd\x3d\xa8\xf5\x20\x63\x91\x17\x13\x38\xea\x0e\xc8\xef\x3c\x59\xed\x8a\xfc\x69\xf3\x86\x5c\x29\xa0\x72\x3a\x9b\xbe\x95\xa7\x42\x68\x1e\xf9\x85\x7e\x81\xab\xc8\x0c\x92\xd2\xa7\x18\xa8\x04\xf5\x30\x4f\xef\x3c\x63\xd7\x99\xa6\xef\x87\x82\xa7\xdb\x46\x68\x1d\x0d\xe3\x50\x64\x46\x98\x22\x67\xb2\x15\x2b\x0c\x32\x18\x69\xe2\x3c\xce\x8c\x4e\xbe\xbe\xaf\x4a\xa1\xeb\xe9\x28\x3b\x69\x26\x05\x26\x0f\xf6\x21\xb0\x3c\x10\x82\x2a\xa5\xf6\xd0\x3b\xde\xf4\x9c\x46\x2a\x68\xd4\x71\xe8\x49\xe1\x64\xe3\x87\x4f\x6e\x9f\x6c\xb3\xb5\xf2\x93\xeb\x38\xae\x52\x45\xa1\x59\xec\x42\x61\xa9\xbf\x6b\x5f\x7b\x76\x15\xfd\x33\x9e\xa1\x27\x33\x11\x3c\xe7\x67\xf8\x83\xae\x66\x75\x41\x7f\xc7\x70\xb5\x0b\xd6\x0e\x6f\x20\xad\xdb\x29\xc1\xf7\x50\x62\x33\xe3\x2a\x7e\xbf\xad\xab\xff\x98\xcf\xd0\x9b\x2b\x3b\xbd\x3e\xae\x00\x69\x54\x8b\x9d\x89\x87\xaf\x46\xca\x98\xeb\x09\x5b\xac\xbd\x87\x47\x24\xba\x10\xf3\x63\x3a\xa0\x8a\xb6\xec\x26\x49\x4d\xdf\x68\x54\x30\x9b\x55\xd4\x3b\xdb\xd2\x9a\x75\x56\xf1\x2d\xfb\x23\xcd\x0d\xb4\xeb\x39\x37\xa6\x5c\x4a\xed\x96\xe8\x7b\x34\x65\x55\xf9\xfc\x68\x97\x94\x3a\x0f\xae\xe6\x5c\xcf\x39\x4b\xd8\x9b\x38\x1b\xee\xce\x25\xd1\xba\x68\xf8\xfe\x32\xc2\x3b\x33\x54\xf5\xbe\x7e\x3e\xa3\xc0\xde\xc0\xf7\xec\x2d\xd8\x3f\x92\xb7\x30\x58\x89\x2b\x63\x8d\x4c\x3b\x72\x42\xbb\x8f\x55\xbf\x08\x7b\xa4\x5a\x19\x0a\x69\x8b\xae\x67\x5e\x0c\xd5\xe8\x44\x6f\x2b\x21\xae\xb6\x3d\x2c\xae\xa0\xf6\x79\xa8\x37\xe7\x93\x57\x30\x8d\x9f\x0b\x8a\xf3\x1f\x9d\x08\x00\x8c\x39\xee\x8d\x34\x75\x28\x71\x3c\x88\x50\x01\x7a\x7f\x4a\xb9\x8a\x35\xc7\x53\x19\x40\xfa\x76\x21\xe6\x72\x03\xee\x78\x2d\xb3\xa2\xfa\xa3\x0f\x3a\xa8\x50\xa5\xff\x7a\xae\xd8\x4c\x00\xff\xd2\x14\xf2\xc9\x26\x17\x35\xfa\xc3\x25\x9d\x50\xe0\x3c\x26\x52\x50\x52\x79\xd9\x12\x51\x92\x7d\xe5\xe5\x6a\x8b\x90\x64\xcc\xf9\xf4\x5d\xcb\xef\x46\xe1\x18\x9c\xed\x2b\xc7\x9e\x6f\xf6\x52\xe6\x90\x97\xac\xe5\x56\x8b\xb2\xd5\xbe\xf3\xce\x21\xa2\x5b\x3f\x79\xee\x27\x5e\xa3\x4e\x62\x13\x80\x56\x6d\x70\x4c\xd9\x3f\x24\xdd\x90\x20\x93\x2c\xc0\x52\x18\xc2\x3b\x5b\x22\xff\xfa\x7e\x99\xee\x7f\xe4\x57\x87\x6a\x5e\x33\x64\xc9\xa8\xe8\xb0\x49\xcf\xa2\x09\x69\x77\x4f\x50\x6d\x19\x96\xcb\xe6\xef\x5a\x37\x79\x3e\xcd\xb0\x4c\xfd\xea\xed\x7d\xcf\x79\xab\x27\x84\x74\xdd\x77\x08\x22\xd4\xb3\x6f\xc6\x8e\x4b\x2d\xd6\x61\xef\x99\xde\x01\xde\x6e\xec\x57\xfa\x57\x3e\xde\x10\xfb\xbd\x5a\xc6\xfd\x6c\xd8\xbb\x4e\xee\x50\x9d\xbb\x46\x10\x37\x44\x01"}, {{0xf8,0xd2,0x57,0xfd,0xfc,0xf9,0x97,0x96,0xf8,0xce,0x4d,0x8a,0xad,0xe3,0xb2,0x25,0xa5,0x3c,0x26,0xfe,0xec,0xef,0x39,0x5b,0x95,0x61,0xd9,0xd5,0x87,0xf5,0xa3,0x3c,},{0xf6,0x6b,0xd4,0x87,0x7d,0xf7,0x8a,0xec,0x04,0xca,0x7e,0x77,0x73,0x28,0x99,0xde,0x06,0x77,0x7e,0x69,0x86,0x29,0xf2,0x99,0x69,0xf8,0xfa,0x9c,0x2f,0x47,0xab,0x9e,},{0x92,0x35,0xd4,0x48,0x07,0x86,0x98,0x16,0xe2,0x8e,0x42,0xc8,0x1c,0x80,0x1f,0xfb,0x12,0x1d,0xe8,0x26,0xc0,0xd3,0x3d,0xcc,0x4a,0x4e,0x1c,0x93,0x2d,0x52,0x28,0xb6,0x39,0xbb,0x29,0x4e,0x16,0x09,0x0a,0x93,0xd1,0xf6,0x90,0x4a,0x70,0x04,0x22,0x2f,0xda,0x0a,0x55,0x44,0x6d,0x99,0x01,0xc7,0x23,0x40,0x00,0x7b,0xb4,0x5a,0xe1,0x03,},"\x23\x3e\x1e\xf9\x01\xab\xcb\x69\xfb\x48\x60\x85\xd8\xdb\x02\x33\xff\x78\xf3\x7b\x13\x6f\x0a\xfe\x24\xf7\xda\xc1\x94\x4c\x36\x78\xe7\x4f\xed\x58\xa1\xad\x54\x83\x5b\x7d\xbc\xb4\x6f\xff\x6c\x35\x24\x31\x22\x73\x30\x0b\x6d\x87\x8a\x93\xe0\x60\x8a\x4a\xba\xca\x4e\x31\x94\x72\x2b\xb9\xe2\x3d\x17\x19\x4d\x86\x67\xb8\x4f\x2d\xb0\x38\xc2\x4e\xfb\x8f\x53\x40\x9c\xf5\x59\x4f\xdd\xb8\xbc\xd6\x1f\x74\xcf\x07\x26\xb5\x1c\x65\x1c\xe0\x1e\xb6\x6a\x59\xb4\x55\xf7\xd8\xa7\xd6\x0d\x39\x27\xe0\xc6\xc5\x4b\x13\x8e\x01\x92\x53\x71\xd2\xd9\xd9\x62\xaa\x98\x2f\x5e\x60\x85\x28\x0c\xc0\x5f\x35\x69\x93\x91\x1f\xd2\x03\x9d\xfc\x34\x21\x17\x97\x02\x91\x38\x1d\x82\x02\x7d\xb3\x6c\x79\x91\x00\x05\x7d\x93\x52\xb2\xcd\x87\x9d\x9c\x82\xaf\x73\x4b\x7f\xa2\x97\xd2\x11\x49\xc9\x78\xaa\x5e\x12\x5b\x20\x37\x2a\x9b\x2e\x0e\xd3\x57\x33\x7e\xfa\xea\x13\x91\xf3\xb9\xef\x11\xe3\xe5\x13\x5b\xb7\x0b\xdb\xe3\x2a\x9b\xdb\x7c\x3c\x42\xd5\xd5\x7c\xc8\xda\xb6\x81\x16\x28\xa0\x10\x89\x49\x5c\xb8\xa4\xa7\x6a\x48\x29\x6c\xd8\xdf\xaf\xc0\x05\xad\x49\xd7\x0b\xb1\x9f\xac\xa2\x08\x4a\x1b\x6f\x5e\x48\xd2\x3c\x03\xfb\xcf\x6f\x10\x6d\xb7\x70\xf0\x7c\x33\xe8\xe7\xf4\x75\x7d\xa9\x04\xa4\x4d\xd0\xe7\x38\xf3\xd5\x73\x3a\x32\x93\x75\xce\xd7\x4f\x3c\x42\xbf\xcd\xbb\x91\x01\x00\x45\x5d\x6a\xa7\xd2\xe3\xe3\xaa\xa5\x8a\x82\x96\x30\xd3\x76\xb0\xb4\x66\xdc\x85\xaa\xc4\x8f\xe2\x69\x94\x6a\x7b\xc7\x2d\x91\xeb\x37\xde\xd2\xf4\xa7\x7c\x68\x4b\xe0\x10\x93\xfd\x12\xde\x9d\x9d\x83\x19\x9c\xcc\x50\x95\x9a\x48\xd6\xe9\xa4\x14\x27\x56\x60\x92\xf0\x4a\x0f\x95\xca\x52\x37\x2e\x07\x62\xb9\x66\xce\x62\x32\x05\x5a\x4f\xd7\x57\xc6\x1b\x8b\xad\x83\xba\xef\x91\xa3\xc2\x77\x2f\xb3\x2e\xad\x8f\x59\x1a\xc1\xe0\x2b\xbf\x90\xa7\xf6\xc3\x90\x79\xb8\x6f\xb8\x14\xcc\x24\x2e\x98\x0f\x0b\x8b\x1a\x2c\xec\xb8\xe6\xd4\xe8\xa5\x21\x1b\xf8\xba\xbf\x38\xe8\x29\xab\x98\x83\x60\x8b\xd6\xd5\x9e\xa5\xe8\x36\xa9\xb4\xa4\xfb\xed\xed\x1b\xea\x2f\xfe\x97\x7e\x8c\xf3\x61\x5c\xa4\xa5\x0f\xea\x1f\x05\xf1\xfe\x53\xc8\xea\xc5\x00\x32\x3e\x1f\x52\xa8\x06\x83\x15\x39\x95\x79\x88\xd7\x9a\xcc\x7b\x54\xf7\xd0\x2b\x48\x0c\x46\x9f\xd6\x95\x40\xfe\xa4\xbd\xd6\x8c\xbd\xc6\x8c\xf9\xc7\x87\x2f\xd7\x92\x59\x1b\x01\xe9\xd9\x90\x2d\x8a\x61\x4f\x4c\x21\x82\x3f\x23\x50\x8f\xfd\x49\xff\x21\x8b\xea\x92\x2e\xc1\x41\xef\xf6\x0d\xa1\x77\xcc\xad\x7d\x7b\x9d\x44\x4f\x3b\x03\x45\x81\x15\xf1\x16\xcc\x6e\x37\x62\x5c\x39\xcb\xad\xf0\x93\x62\xf3\x1d\x33\xf4\xc1\x3c\x33\xb6\x29\x20\x07\xf2\xca\xfd\x19\x4f\x62\xc6\x43\xe7\xa2\x55\x71\x56\x4f\xeb\xad\x7d\x33\xe3\x64\xb6\x33\xd0\x08\xb0\x90\xd7\xa0\x91\x35\x8b\xc6\x9c\x56\x7b\x95\x22\xb5\xc1\xcd\x01\x21\x8d\x38\x52\x9a\xeb\xb0\x3d\x9c\x2a\x5e\xb2\x28\x5a\x71\x76\xf9\x8c\x28\x03\x6f\x21\xe1\x9e\x92\xb4\x06\xe9\x48\x95\xfa\x28\x1b\x35\x22\x8f\xbf\x76\xe7\x3e\x17\x58\xaf\x1b\x43\x4a\x4d\xf9\x8e\x8c\xc5\x56\xb9\xd8\x3f\x6b\x0b\x7f\xf5\x2c\x68\x0f\x65\xef\xe4\xe0\x0c\x59\xb4\x6c\xe5\x93\xbf\x98\x89\x98\x05\xd0\x2b\x91\x65\xb7\x42\x98\x49\xe7\x39\x53\x77\x0a\xe3\x93\xe4\xf1\xf9\x7c\xb9\x0c\xd6\x15\x9c\xc9\x39\x52\xae\x8a\x4d\x3d\x56\xa9\xa9\x5d\xf7\xcf\xab\xac\xd4\xd0\x30\xd7\x36\xea\x45\x4d\xfa\x4b\x4a\xed\x1b\xcd\x88\x5d\x2f\xbe\xa5\xff\xa2\xcf\x29\x27\xc1\x37\xc8\x6b\xe4\xfe\x01\x64\x12\x62\x8f\xe7\xa0\xa0\xf0\x2b\x6b\x6a\x9a\x21\x68\x93\x2b\x94\x3f\xf8\xb2\x8d\xd5\x87\xe7\x72\x87\x79\x0a\xaa\xa6\x9a\x98\x50\x6c\x76\x4e\x6f\x5b\xa6\x33\x8c\x09\xf3\x82\xe1\xb9\x87\xd9\x9f\x14\xa3\xe1\x95\x8c\xb6\x2a\xe6\x70\x5a\x57\x7f\x9f\xfc\x67\x30\x64\x01\x12\x87\x41\xa8\xd0\xaf\x03\xc0\xaa\xaf\x6a\xf0\x6b\xd8\x8e\xe4\xb0\xaf\x67\x03\xe0\xea\x60\xb0\x40\x9a\xce\x24\x57\x2f\xb3\x86\xe0\x7e\x9c\x22\xc9\x68\x6b\xdc\x66\xd4\xfc\xf3\xc7\x46\x1d\x38\x33\xa4\xc3\x01\x32\x43\x60\x7d\x4d\x15\x82\x17\x18\x73\x26\xdf\x51\x72\x5a\x6b\xc5\x11\x6e\x99\x0b\xef\x8a\x5a\x95\x79\x60\x02\x07\x20\x6b\xfc\x3a\x6d\xcf\x07\x46\xef\x75\x6f\xd9\x39\xe1\x87\xf6\x68\x75\x07\x16\xc0"}, {{0x8d,0xa9,0xf5,0x4d,0xa0,0xb6,0xa5,0xa3,0x89,0x85,0xb8,0x8b,0x71,0x33,0x9d,0xc7,0x38,0x4c,0xfd,0x5a,0x60,0xbe,0xe1,0x59,0xc3,0x94,0xc2,0x23,0x63,0xbc,0x7e,0xdd,},{0x1a,0xc1,0xa8,0xed,0xeb,0x21,0x7a,0xe9,0xb3,0xa3,0xde,0x53,0x0d,0x24,0xd8,0x3e,0x11,0xfb,0x65,0x38,0xcc,0x70,0x9b,0x52,0x99,0x4f,0xa9,0xc3,0xf1,0xfa,0xdd,0xc8,},{0xf6,0xdc,0xc2,0xd2,0x7b,0xaf,0x16,0xc4,0xf4,0x81,0x7f,0x87,0x49,0x91,0x57,0xd3,0xac,0x1f,0x84,0xed,0x39,0x8a,0x5e,0x8b,0x0d,0x50,0xf4,0x2e,0xdd,0x73,0x85,0xcf,0x06,0x33,0x7a,0x02,0x36,0x10,0x99,0x70,0xb7,0x9c,0xa0,0x9d,0x7c,0x98,0x31,0xc8,0x76,0xa8,0x02,0x79,0x94,0x21,0xc2,0xab,0xd0,0x75,0x87,0xf5,0xeb,0x66,0x16,0x0f,},"\xbd\x53\xba\xba\x66\x57\xd8\xdb\x8b\xec\xae\x6e\xab\xff\xa5\x2b\x01\x5a\x5a\x05\xfd\xd2\xe0\x70\x64\x7d\xe9\x6f\x9c\xa4\xdd\x21\x9f\xe0\xda\x60\x8f\xa0\x44\x7f\x46\xd1\x7c\x9a\x35\x82\x44\xcd\x54\x08\x59\x65\x82\xcc\xd3\xcd\xd0\x15\x1d\x6f\x09\x23\xe6\x3d\x16\x68\x37\x84\x5f\x27\x3f\xca\x7a\xf6\xc8\x9d\x8d\x52\x46\x17\x5c\x21\x67\xfb\xb9\xc2\xeb\xf6\xa7\x59\x54\x91\xf9\x7a\x97\x13\xb0\x2b\xdf\x41\x3e\x20\x9a\xb2\x2d\xb7\xdd\x2b\x37\xfc\x49\x43\x69\x18\xcc\xeb\xe5\x74\x6b\xc6\x4d\xdd\x6d\xce\x19\xec\x45\x58\xc4\x0e\x08\x96\xe2\x19\x09\x28\x0c\xba\x06\xd1\x6b\x72\xf3\x1d\x98\x76\x85\xd0\x71\xdb\x81\x55\xe9\x9e\xbc\xc6\xc8\x21\xd9\x26\x83\xfd\xce\xe0\x86\x68\xa5\xed\x58\xf8\x39\xd9\xed\xaf\xb9\xf1\x45\x9d\x48\xde\x8e\x1b\xb6\xf7\xce\x84\xda\x0b\xe4\x11\xc8\xf7\xbe\x1b\x9a\x24\xbc\x5d\x0f\xe3\xa9\x6b\x02\x35\x07\x50\xa5\xcb\x25\x0b\x49\x55\x5a\x48\x76\x72\xbd\xff\x3c\x3f\x78\x4e\x3f\xb6\x3c\x1c\x97\xba\x6a\xe4\x3a\x10\xe1\x96\xf1\x88\xdc\xc6\x35\xe2\x14\xe2\x9d\xf5\x09\xe5\x60\x8a\x53\x67\xaa\x28\x00\xc1\xa9\x6a\xd9\x36\xa9\xe2\xa5\x79\xb8\x59\x2e\xc1\x3a\x35\x93\x36\xa6\x27\x88\xc3\xec\x55\xc0\xff\xd6\xa7\xd4\x9e\xcb\x7c\x68\x2e\xfa\x30\x81\x99\xf7\x08\xd7\x9d\x0e\x88\x56\x36\x6d\x26\x9f\xab\x24\xeb\x1a\x07\x5c\x96\xc8\x81\xca\xb8\x97\x08\xce\xd2\x79\x23\x0d\x3f\x1f\x3e\xe1\x73\x67\x22\x83\xeb\x8d\x8a\x82\x40\x38\xf6\x48\xac\x43\x72\x75\xd7\x5a\x0e\x15\xf7\x1c\xe5\x6a\x8a\xeb\x77\x1f\x07\xa7\xf3\x2a\xfc\x9d\x61\x2a\x13\xbd\x83\xb7\xf9\x39\x90\xd3\x8f\xc3\xf4\xf4\xab\x8a\xa9\x43\x0c\x65\x73\x6e\xb6\x4b\x16\x80\x6e\x99\x5c\x1c\xe9\xdc\xf4\xc5\x54\x4e\x7b\x3d\x01\x54\x1c\x57\x21\xbb\x4b\xe4\xcf\x0a\xe3\x82\xa0\xc1\xb1\x69\xd8\xe4\x18\xde\xfd\x55\x94\x42\xac\xea\x14\xb0\x0d\x70\x5b\xcf\xa7\x8b\xe0\x75\x6a\x8f\x37\x7c\xbf\x18\x3b\xf2\x59\x06\x87\x41\x15\xd8\xce\x4c\x3b\xa8\x74\x10\x29\x38\xa4\xea\x16\x03\x6d\x91\xa4\x2c\x5f\x8f\x18\x86\x55\xca\xcb\x00\xc8\x8e\x3a\x68\x50\x88\x16\xe5\xe1\xc3\x1d\x27\x18\x0b\xbb\xa9\x51\x8a\x96\x30\x72\x6d\x7d\x04\x7d\xd8\xd2\xc0\x40\x12\x19\xe1\x4e\x6b\xad\xfc\x9b\x95\xb7\x7a\x6a\xce\x9b\xea\x71\xd1\xb4\x7c\x21\x89\x03\xa1\x15\xad\x02\x9e\x7f\x20\x39\xea\x23\xcf\xd1\xfa\x6a\x44\xd0\x89\xfc\xac\xb6\x78\x15\x3d\x67\x4c\x0e\x08\x17\x64\x99\x55\x95\xcb\x68\x94\x89\x5f\x08\xe2\x5b\x98\x4e\x3a\x69\x4c\x92\xfc\x7c\xbe\x0f\xfc\x46\x97\x23\x0b\xcb\x0c\xa4\x08\xc2\xd7\x08\x5c\x11\xba\xde\xb3\xe6\xc0\xe7\x5e\x6c\x49\x8d\xb1\xbe\xc1\xed\x2a\x3e\x24\x45\xc3\x2b\x19\x13\xa8\x95\x00\xf6\x9e\x7f\x23\xf4\x1d\x62\xe5\xc1\x89\xf3\x9a\x05\x6c\xb9\xfc\x68\xa4\x52\x02\x3a\x33\x3f\x75\x22\x0c\xb9\xb9\x44\x84\xac\xac\x6b\xbc\x67\x1f\x59\xff\xa0\x72\xb7\x1a\x18\x96\xa1\xb3\x06\xe9\xdc\x55\x8d\xa0\xec\x20\xf3\x73\xe4\xc3\x55\xe0\xc5\xec\xcb\xbf\x13\x50\xc8\xc0\x79\x14\x89\x2c\x45\x4d\xef\xce\xfb\x71\x7b\xe3\x4d\x08\x7a\xeb\x24\x4a\x86\xff\x49\xa6\xc4\x70\xaf\xb3\x6b\x40\xfe\x8b\x71\xc5\x05\xa4\xff\x7a\xf2\x98\x4c\x65\x28\x49\x38\xec\x0e\x40\x52\x31\x52\x1f\x48\x10\x14\x7d\xc4\xe3\x73\xfd\xab\x66\x47\xb8\x6f\x79\x82\x75\x02\xfd\x08\x7e\x27\xf3\x10\xd6\xb3\x12\x36\x31\x13\x84\x21\x55\xc5\x7a\x32\xba\x03\xb6\xcf\xf9\x65\x53\x0b\xd7\x95\xfc\x29\x2e\x24\x1c\x9b\x6c\xa0\x85\x14\x00\x32\xef\xe7\x46\xf3\x7d\x57\xe9\x58\x42\x11\x84\xb8\xa4\xc1\xa6\xa1\xe3\x7d\x45\xe0\x77\x31\x98\x33\x06\x8d\xdc\xb8\x9d\x38\xc7\x5b\xeb\xa1\xa6\xe8\xe4\x05\x28\x88\xec\x18\x16\x2d\xd6\xff\x0c\x59\xa2\xfd\x0b\x47\xf3\x11\x91\x95\x68\x0f\xfc\xcd\xdf\x5f\x76\xb3\x5f\x02\x2a\xa6\x6b\xd1\xac\x56\xf1\xae\x33\x3e\x9b\x9d\x04\x6f\x0b\x79\xa8\x92\xec\xc4\xf8\xd2\xf3\x1e\x17\x53\x6c\x4c\x62\xa9\xb5\xe0\x63\xdd\x2d\xce\x37\xd3\xd0\xac\xb4\x20\x23\xeb\x2f\x2e\xa3\x29\xd3\x87\x6c\x23\x86\xa0\x22\x76\xff\xf9\xd3\x08\xab\xba\xdb\x72\x74\x30\x1a\x69\x62\xec\xae\xeb\x20\xbe\xf5\xe3\x6a\xff\xfc\x38\x7c\xa8\xe1\x85\xe5\x62\xb8\x65\xb4\x92\x04\xc1\x7b\x2a\x70\x11\x9b\x06\x1c\x29\xc0\xfe\x90\x04"}, {{0x7a,0x2e,0xfd,0x39,0x01,0x24,0xd3,0xfb,0xef,0xc5,0x4a,0x57,0x71,0x06,0xe7,0x4b,0x2d,0x1f,0x5d,0xd5,0x04,0xc0,0x50,0xd0,0xd3,0x59,0xe5,0x3c,0x0f,0x5c,0x87,0x2b,},{0xef,0xc3,0x03,0xd9,0x22,0xe8,0x8f,0x70,0xf3,0x8c,0x1a,0x2b,0x92,0x06,0x84,0xef,0x66,0x30,0x34,0xa1,0xb2,0x3a,0xb9,0xd6,0x9b,0x6c,0xe8,0xed,0x87,0x06,0xf7,0xf7,},{0xc2,0x8b,0x34,0x80,0x48,0x05,0xd8,0x1f,0x7a,0xef,0x78,0x49,0x70,0x67,0x0e,0xda,0xa4,0x17,0x23,0x2b,0xcc,0x67,0xda,0x9b,0x51,0xe9,0xc3,0xd7,0x4f,0xc4,0x99,0x1b,0xde,0x97,0xa0,0x6b,0xd5,0x3f,0xa0,0x0b,0xb4,0x40,0xfd,0x56,0x16,0xcd,0x0d,0xe6,0xe9,0xb0,0xd1,0x9f,0x2f,0x68,0xbf,0xaf,0x9d,0x4c,0x51,0x72,0xc4,0xe5,0x20,0x0a,},"\x23\x8f\xbe\x9f\xb3\x5c\x72\x5c\x6c\x1f\x32\x92\x48\x09\x4b\xc7\xda\x1b\x27\x3e\xdc\x76\x99\xa7\xe3\x45\x2b\x57\x88\xd8\x78\x67\xde\xfc\x40\xa0\x05\x90\xe8\x75\x80\xd2\xc0\x27\x5d\xf5\xab\xcc\xe0\xe1\xaa\xa1\x82\x90\xbf\x93\xb4\x4e\x5a\xd9\xd7\x60\xdd\x21\xf1\xaa\xca\x38\x31\x78\xf9\xff\xf9\x13\x0f\x73\x18\x7b\xa9\xd3\x1e\xa3\x60\x4a\x1c\xdf\x39\x11\xe1\x43\x77\xa0\xce\x8b\x44\x18\x9a\xda\xa7\xaa\xc2\x3b\x6c\xdc\x7a\x42\x5b\x7e\xa7\x45\x50\x84\x55\x70\x4f\x9a\xd7\xa8\x95\x27\x18\xc3\x98\xb4\x21\xb6\xe0\x9c\xb7\x8c\xb5\x2a\x18\x14\xee\x2e\x96\x39\xec\x68\xd3\x61\xf0\xa3\x20\x41\xd6\xe7\x42\x5b\x4b\xb3\x3c\x70\x19\x6e\x24\x00\xeb\x81\x2d\xb8\x50\x6c\x9f\x32\x45\xbd\x98\x8f\xbc\x89\x1b\xe2\x0c\xb0\x69\x15\x59\xfc\x91\x6b\x57\xff\x96\xc9\xb1\x44\x89\xe0\x99\x3c\xb7\x39\xa3\x9d\xa2\x46\xd0\x1a\x6e\xbd\x07\x58\x35\x81\xf2\x50\xbf\x48\x0b\xc4\x4b\x2c\x33\x91\x54\x2d\x59\x5e\x4d\x39\x94\x90\x19\x5f\x84\x45\xdf\x63\x8f\x34\x69\x8f\x1a\x96\xed\x27\xb3\x53\x3e\x3e\xb6\x7e\x8f\x86\x58\x65\xfa\x95\x55\xed\x34\xdf\x11\x15\x76\x41\xa0\x0e\x6d\x60\xcf\x62\x3f\xec\x1a\x92\xb8\x7a\x15\xd7\x65\x18\x5f\xd9\x05\x5a\xcb\x38\xd7\x5c\x99\xdb\x4f\xce\x7b\x0e\x39\xfd\xc3\xf8\x51\xda\xf6\x5c\x7a\x33\xf4\x64\x81\x69\x31\x83\x9f\xef\xe8\xe5\x8d\x9a\xb7\x42\xb8\x61\x87\x3f\xd2\x29\x18\x9e\x59\xcd\x4c\xe8\x23\x9f\xc9\x54\x3f\x53\x9d\x2d\x29\x61\x14\x26\x6e\xa8\xc6\xfd\x15\x2a\xc6\xb3\x42\xe5\xd1\xa5\x57\xab\x35\xca\xc5\x1e\x2d\x12\x12\xee\x31\x7c\x4d\x26\x71\x68\x29\xe2\x57\x46\xdf\x17\xd2\xa6\x22\xc2\x43\xf3\xec\xbb\x65\xf5\x7a\xb0\xf4\x27\x0e\x3d\x06\x68\xa9\x62\x50\x22\x45\xb9\x4c\x06\xdf\x0c\x5e\x39\xe3\x53\xaa\x84\x2e\xa0\x80\xcf\x50\x27\x08\xb1\xdd\xa2\xd0\x01\x82\x4d\xe4\x58\xd3\x77\x62\xaf\x2c\xdf\xd5\xa6\xd3\xf3\x5e\x08\xa1\x8e\x14\xaa\x7a\x64\x2c\x51\xe4\x04\x7e\x63\x75\x17\x84\x6d\xf6\x46\xd0\x73\x36\xfb\x17\x24\x34\xe0\x88\x3e\x2b\x77\xd8\xed\x1c\x52\xc9\xcc\x63\x6a\x56\xa1\x9e\x57\xa5\xf1\x61\xb9\x2d\x1d\xcb\xfa\x49\x6f\x34\x4a\xe6\xd4\xdf\xdc\x95\x69\xad\xe4\x57\xa4\x90\x91\x36\x2e\x5a\x0c\xdd\x81\xb3\x75\x32\x43\xfd\xac\x30\xa2\xd2\x7e\xa0\x26\xa5\xe6\x01\x44\x1e\xcd\x55\x37\xa7\x20\x1b\xdc\xb7\xfd\x58\xb2\x40\xd0\x22\x9f\xdd\x9b\xab\xf1\x12\xb5\x69\x48\x12\x25\x0e\x76\x8d\x7c\x0c\xe6\xca\x56\x5a\xd0\x6a\xb8\xf7\x8a\x5c\x99\x50\xee\xf5\x38\x72\x6f\x57\x6c\x4b\xd2\xe0\x75\x5c\x7f\x98\x39\x29\x37\x2a\x5f\xe1\x1c\x73\xf9\xe1\xfa\x45\x3a\xb5\x4b\x58\x17\xaa\xd3\x59\x67\x56\x12\x7d\x84\xe3\x11\x94\x53\xe8\x82\x5b\xb8\x46\x0d\x85\x1f\x1f\x7e\x4a\x28\x38\xa2\xbe\x78\x6b\x23\x35\x04\xa6\x91\xdb\x0f\xa2\x2a\x5f\x41\xfe\x3f\xd3\xc9\xb5\x38\xb0\x4f\x40\x9e\x09\x18\x09\x48\x6b\x28\xad\x0d\xed\xa7\xb3\x8a\x42\xce\xfc\x48\xde\x7d\x86\x79\xc0\x3b\xf8\x77\x23\x85\x11\x82\x0d\x07\x70\xcc\x8d\x7b\x41\x72\x37\x78\x23\xa0\xb9\x91\x49\xab\xb8\x91\x8b\xfb\x66\xd5\xab\xfc\xd1\x00\x60\xb0\x5c\xb4\xf2\x39\xdd\x42\x81\xd9\x34\x83\x50\x4b\x73\x1e\xaf\x5a\xdd\x51\x5f\x1f\x3c\x3b\x52\xb4\xe3\xbd\xaf\x97\x6a\x17\xb3\xc9\xec\x61\xbf\xc8\xe7\x71\x16\x71\x58\x04\x53\x2c\xf2\xdb\xf2\x0b\x7b\xa5\xea\xd8\x5a\xfb\x95\x2b\xee\xc2\xfc\xcf\xf8\x5f\xf5\x07\x2b\xa4\xed\x6b\x54\x38\xab\x15\x20\xc6\xef\x4b\x0b\x26\xf1\x2e\x84\xae\xdd\x65\xce\x5c\x7b\xbe\x6a\xcb\x67\x72\xf5\x93\xa6\xb4\xf8\x1d\xdd\x9d\x50\x27\x46\x50\x50\x47\xc8\x12\xa0\x06\x7a\xfc\xeb\x8d\xc9\xbf\xf3\x0d\x40\x87\xf8\xd5\xa3\x75\xec\xa6\x05\xa0\x62\x27\x84\xd8\xfe\xa2\x78\xcd\x1a\x52\x41\xad\x4b\x3f\x1b\x91\x4f\x74\xf7\x3b\xc3\x6e\xe7\xcc\x82\xd9\x6e\xfd\xa6\x3a\x3b\x67\x99\x73\x0f\x20\x65\x6c\x12\x35\x6c\x79\x06\x9b\x2b\xe6\xf9\xb7\x7b\xe1\x01\x98\x31\x18\x82\x3e\xa6\x6e\x7c\x20\x98\xfb\xc7\x2f\xc9\xc0\x39\xdf\xe3\x0f\x2d\xab\xa1\x3c\x3b\xde\xfb\x8a\x78\x0b\xeb\x5c\xb1\xb6\xc2\x86\xa6\xb3\xef\x48\xfd\x15\xc6\x6c\x04\x5b\xa2\x9f\x09\x70\x41\x3b\x98\x8d\x0e\xa0\x04\xab\x84\xc9\x39\x19\xf0\x4f\x9b\xf8\xca\xf5\x8c\x4e\xb4\x78\xf3\x58\xef\x8b\x68"}, {{0xef,0x36,0x48,0xcb,0xe7,0x34,0x02,0xab,0x45,0x0c,0xd6,0xec,0x37,0xe5,0x45,0xd0,0xcd,0x2c,0x99,0x9e,0xcc,0x1f,0xa3,0x81,0xa4,0x5c,0x66,0x0e,0x18,0x53,0x30,0x32,},{0x52,0xa1,0xa4,0x52,0x73,0x87,0x26,0x76,0x58,0x2c,0xc7,0x67,0x33,0x99,0x26,0x41,0x4c,0xd5,0xd0,0x3d,0x98,0x0c,0xf6,0x29,0xdd,0xa2,0xd1,0xa2,0x05,0xe9,0x83,0x0a,},{0xf6,0x70,0x79,0x29,0x42,0xec,0x41,0x44,0x28,0x47,0x56,0x38,0x85,0x3c,0x42,0x72,0x8e,0x86,0xba,0x12,0xbb,0xe8,0x59,0x48,0xb3,0x91,0x34,0xcf,0x6e,0x2b,0xd1,0x28,0x13,0xe0,0xd8,0x3e,0x51,0xe6,0x57,0xc9,0x01,0x07,0xad,0x93,0xa4,0x78,0x8a,0xa3,0x83,0x13,0xfa,0x96,0x2f,0x67,0x67,0xa8,0xf7,0x80,0x5b,0xde,0x65,0xca,0x42,0x0d,},"\x6a\x93\x37\x8f\x88\x0c\xf0\xff\xdb\x8e\x07\xd6\x83\xcc\x35\x2e\x2a\x10\x33\xc4\x50\xba\xa0\xe8\xc4\xe1\x62\x05\xfd\x0c\x02\x74\x3b\x0e\xa0\x64\x97\x1d\x91\x1e\x49\x47\x13\xe6\xd9\x4a\x02\x17\x2e\xd0\x14\xd5\x06\x59\x2e\xc6\xc7\x0a\x9c\x97\x85\x52\x46\xbf\x3d\x26\xf3\xcf\x74\xf4\x93\xc1\xb6\x97\xa0\xc4\x14\x16\x0c\x34\x14\x12\x83\x09\x85\x43\x08\x06\xa0\xcb\x3c\x84\x75\xe7\xe5\xa9\x73\x68\x6c\x24\xd5\xef\x1b\xe7\xd0\x06\x50\x96\xfe\xb5\x2e\xab\x26\x0b\x5c\x48\x8a\xf0\x92\x70\xde\x6d\xec\xd3\x3f\xea\x85\x89\xdd\x10\x21\xba\xf4\x1e\x3f\x25\x5f\xb8\xfa\x19\x16\xeb\xd8\x53\x1e\xeb\x2f\x88\x6b\xb3\xb3\xb0\x4f\x9a\xf6\xb2\x76\xc3\x59\x23\xf1\x0d\x3a\x0a\xf1\xe3\xf5\x8b\x0d\x15\xae\xd1\x65\x04\x5f\x20\x6f\x3f\x43\x0a\xbd\xff\x09\x44\x90\x97\xe4\xb2\x6d\x00\xa8\xf9\xf1\xe8\xf7\xa1\x9f\x38\x58\x81\x24\xc3\x28\xec\x43\xa9\xcf\xb4\x3d\x3b\x2c\x6b\xdf\x6a\x3c\x1a\x10\x2e\x0e\x33\x3d\xe1\xac\x21\x4a\x6d\xf7\x6d\xab\x44\xba\x76\xbf\x03\x52\x73\xb7\xff\x62\x38\xec\x82\x48\x3b\x2d\x2d\x9d\x54\x29\x1a\x72\x27\x0f\x88\x93\x3b\x78\x6c\xac\x05\x1d\x99\x0b\x3c\xf7\x40\x84\x5f\xed\x3a\x67\x86\x7d\x7c\x7c\x05\x67\x4e\x7c\xb0\x2c\xa5\xb7\xac\xdf\xba\x38\x52\x80\x3a\x3d\x56\xc4\xd5\xc1\x3b\xb1\xd7\x72\x34\x67\x74\x1e\xac\x1f\x2a\x7a\xcd\x3a\x95\xf3\xa5\x16\x10\xa4\x86\xfc\x53\xa9\x85\x16\x28\xc5\x57\xd3\x6d\x8a\x4c\xd3\x7a\xae\x9c\x41\x74\xdb\xbd\xb6\xbd\x88\x5c\xf4\x0b\x38\x2b\x8d\xed\x24\xa4\x52\x2a\x27\x8f\xef\x76\xc4\x53\x19\x06\x7e\x55\x28\x6e\x7b\x08\xc6\x03\x48\x6e\x38\xa0\xac\xf4\x7e\xde\xf8\x48\xec\xbe\x94\x2e\xce\xad\xb8\x63\x6c\x83\x3f\xeb\x88\x2a\x51\xa4\x59\x5e\x24\xf6\x07\xca\x3c\x9d\xa1\xb2\x40\x4c\xe5\xc7\x47\xe0\x62\x64\x17\x4d\x64\x50\x43\x31\x70\x9b\xef\x30\x05\x5a\x5d\x69\x5e\x09\x53\x7c\x8f\x8c\x1e\x5a\x3a\x5d\xb0\x65\x99\xe3\x19\xdf\xdb\x28\x72\x96\x65\x27\x3b\xf8\x68\x95\x5e\xa5\x64\x27\xf0\x8b\xac\xd7\x77\xf1\x79\xb3\x02\xf3\xf6\x8d\x04\xf3\xf3\x88\x3d\x34\x49\x55\xb6\x55\xdd\xc6\xd5\x28\x2b\x6d\x4d\xf1\xd8\x36\x30\x21\x0e\x69\x91\x78\xe1\x1f\x72\x2e\x9e\x5c\xda\x67\x28\x92\xae\x9b\x23\xe8\x16\x9c\xbb\x54\x80\x93\xb8\x3e\x64\x3e\xb4\x99\xd9\x37\xd2\x8f\x38\x11\x59\x7b\x64\x84\x10\x2f\x0c\x8e\xb8\xc8\x88\x8c\xda\xc2\x29\xae\xbf\x89\x08\x6a\x64\x95\xac\x55\x1f\x3b\xbd\xf2\xd1\xc9\xa9\x3e\xd1\xd3\xa8\x61\xee\xcd\x9e\xb8\x39\x94\x9b\xfb\xe6\xa4\xf6\xe6\x48\x6e\xde\xda\xb5\x22\x9d\x53\x2b\x58\x97\x6d\x67\x51\x2f\x9f\x71\xae\x79\xb4\x14\x5c\xa2\xfa\x49\x7a\x16\x5f\x11\x07\x17\x66\x6c\xa3\x34\x0b\xbd\xa8\xdf\x1f\x82\xb8\xc0\x54\xcf\x76\x54\xc3\x56\x90\x16\x8f\x96\x27\x7d\x41\xc1\xc2\x36\xb6\x81\x98\x17\x3c\x6e\x2b\x0a\x20\x8e\xf8\x3c\x02\xa4\x3e\x47\x3d\x90\x68\x6a\xce\x75\xb5\xbd\x32\x1b\x3f\x54\x28\x13\x27\xa6\x73\xca\xd4\xd4\xad\x30\x40\xd4\x8c\xf4\x93\xea\x23\x1b\x3f\xec\x06\xf3\x99\x32\xd7\xf7\x0a\x38\x42\x8d\xf8\xfe\xe4\x37\x05\x32\xae\x5f\xb1\x12\x05\x9f\x0a\x1d\x4f\xbe\x11\xb5\xa2\x3b\xb8\x76\x35\x42\x9e\xd3\x3a\xd1\xf6\x14\x80\x14\xcb\xc1\x60\xd9\x3c\xa2\x59\x20\x53\xa6\xe9\x53\x78\xd6\xcd\x3f\x50\xdb\x52\xbe\x92\x8e\x40\x92\xfe\x5d\x2b\x70\x95\xa9\x56\x68\x64\xad\xfd\xa5\x9f\xd5\xf2\xfb\x62\x54\xbd\x59\x17\xb7\x0f\xa1\x46\x99\x66\x5a\x37\x29\x7c\x98\x3c\x1b\xb9\xef\xe1\xc6\x7b\x41\x3d\xd1\xa8\x53\x0c\xbf\x22\x72\x97\xa8\xbb\xf9\x3a\x8a\x02\x45\x4e\x8e\x46\x1a\xc2\x12\xb8\x46\xa7\x0d\x5d\x56\xd6\xc3\xa6\xe6\x5a\x03\xbe\x05\x80\x21\x9b\xdd\xec\x88\xd4\x03\x89\x11\xfd\x95\x74\x56\x3f\x33\xe0\xf9\xe6\x04\x46\x88\xd3\xdd\x48\xfa\xc7\x03\x86\x9a\xa0\x9d\x96\xef\xee\x7d\x6c\x68\x07\x1d\x99\x22\xd5\xe8\xed\x8d\xc4\x0f\x1b\x79\x8f\x1c\x58\x0f\x78\x59\xcb\x84\xf1\xe1\x4b\x5e\x74\xdd\xea\x16\xad\x5c\xbe\xea\x4c\x48\xfb\xcf\xfd\x29\x53\x1a\xcc\xc0\x63\x39\x38\xe3\xbc\xb2\x21\x26\x76\xb6\x1e\xf9\x01\xe9\xc8\x31\xa4\x17\x74\xd8\x31\x7e\xf3\x5a\xf7\x69\x90\xbd\x24\x93\x1f\xde\x6d\x40\x7e\x22\xe7\x63\xcf\x6a\x57\x90\xb2\x37\x61\x90\x8e\xee\x60\x96\x37\xa2\xc1\x10\x59"}, {{0x2c,0x8e,0xe7,0xfa,0x9b,0xa2,0x8c,0xe7,0x04,0x96,0x76,0x08,0x7b,0x11,0x63,0xb2,0x41,0x11,0x8d,0x34,0xcd,0xf5,0x34,0xae,0xbe,0x8b,0xa5,0x92,0x82,0xa6,0x2a,0xc2,},{0x24,0x4c,0x24,0xf5,0xec,0xb2,0xdd,0x1d,0x14,0x63,0x51,0x22,0x21,0x32,0x5d,0x73,0xc8,0x1e,0xe4,0xd8,0xad,0xb8,0xe0,0x1e,0x23,0x34,0x5c,0xaf,0x9c,0xa5,0x35,0x3b,},{0xca,0x0b,0xb6,0xc1,0x23,0x56,0x55,0x5f,0x6e,0x1d,0x8f,0x5c,0x8a,0xa7,0xb5,0xe8,0x0c,0xd2,0x80,0xe8,0xb1,0xb9,0xba,0x2e,0xc9,0x55,0x0f,0x62,0x2f,0x48,0x2c,0x3a,0x9a,0xd3,0xbe,0x03,0xa4,0xc9,0xdf,0xc1,0x0d,0x01,0x12,0xb0,0x18,0x9d,0xe9,0x4b,0xff,0xaf,0xd7,0x03,0x41,0x14,0xe0,0xe0,0xd4,0x2c,0x23,0xf3,0x2d,0xc8,0x18,0x07,},"\x07\x66\x9a\x89\x64\xf0\x63\x80\xd2\xd4\x98\x2c\xb6\x34\x9d\xe5\x50\xb3\x8c\xbc\x35\xdb\x2c\xe5\x72\xde\x88\x7f\x66\x30\x55\x73\x6f\xaa\xc7\xec\x07\xc3\x2d\xf6\x0e\xe2\x59\x84\x22\xbf\x37\xe7\xcf\x31\x9a\xb3\xc9\x05\x56\x08\xca\x0c\x49\x75\x7d\x76\x88\xe2\x01\x3b\x82\x44\xf3\x54\x04\xf4\x5a\xc2\x19\x49\x7f\xe9\x24\xde\x93\xa5\x8d\x0f\x72\x1a\xed\x78\x25\xf6\x3b\x26\x67\x07\x7c\x16\x1e\xb4\xdd\x8b\xf7\xdd\xbd\xbb\xc1\x9a\x9e\xae\x59\x78\x97\x8d\x5a\xeb\x33\xa0\x6d\xde\x18\xe6\x12\xe0\x5b\xdb\xca\xe0\x16\x1a\xa2\x38\x90\x38\x02\x64\x29\x96\x0d\xda\x3a\xa1\x7e\x96\x7d\x10\x77\x3c\xa4\x97\x35\xd8\xec\xd7\x40\x9b\xe1\x65\xc0\x9b\xb0\xb5\x09\x69\x1d\x59\x1c\x18\x5c\x93\xcd\xee\xae\x95\x35\x23\x16\x54\x46\x80\x52\x38\x21\x45\x8c\xac\xcf\x52\x8a\xc0\x45\x4e\x4c\xdd\xc6\xdf\x0d\x1e\xa5\xf1\xf5\xcc\x1e\xee\xe0\x5e\x19\xa2\xad\x0b\x6a\x49\x73\x6e\xd8\x55\x23\x36\xfc\xfc\xad\xbd\x93\x1b\x0b\x8e\x96\x3b\xe0\x5c\x8e\x70\x37\x38\x85\x52\x51\x2b\x68\x23\x58\x3e\x4a\x14\x38\x4c\xef\x50\x29\x23\x2d\x3e\x0b\xaf\xe4\x66\x35\x1b\x4b\xb3\xf5\x67\x54\x5a\xb4\x1f\xa4\x6b\xff\xaf\xa8\x77\xa1\x2b\x38\xa2\x7a\xbd\x64\xf7\x7f\xbb\x4d\xb4\x66\xff\x7f\x70\x65\x04\x14\x1d\x3a\xdd\x0d\x73\x72\xf1\x6f\xe3\xd8\xc6\x9f\x62\x99\xd9\x39\x66\xd6\x24\xa3\x07\x0e\xad\xb8\xb4\x9f\x29\xfa\xb4\x84\x4c\x75\x28\xa2\xa4\x0b\x66\x98\x70\x60\x69\x5c\xaa\x66\xb8\x67\x18\xc5\x10\x49\xac\xf4\xcf\xad\x38\x53\xed\xb4\x92\xe3\x68\xcb\xd0\x73\x96\x8e\xca\xa4\xa1\xee\x60\x46\xb5\xe8\x26\xe9\x01\xf4\xa8\x08\xc0\x42\x7c\x02\x6f\xe2\xf7\xb2\xe1\x96\x86\x67\xb5\x3a\x7d\x36\xd7\x02\xf2\xff\x82\xc6\x42\xd3\x49\x19\xf8\xe9\xaa\xaf\xe4\x62\xa3\xd4\xf9\x26\x92\xde\xac\x75\x2b\xe3\x48\xf5\x4c\xf0\x89\xdd\x9c\xd0\x51\x84\x6b\x04\xb7\x19\x31\xe1\x9e\x89\xd1\x25\x86\x4b\xfa\x89\x48\xac\xe0\xef\xf3\x3c\x45\x11\x05\x69\xa0\xdf\x37\x53\xf4\xc5\x8d\x80\x02\xb5\xbc\x38\x10\x2e\xc2\xec\xf6\x95\xfa\xfa\x89\x16\xda\x90\x02\x38\x7e\x44\xf9\x6d\xab\xf8\xa9\x82\xc5\x3c\x9b\xad\xbc\x37\xbd\xe4\x37\xf1\x46\xf7\x7d\x8f\x7b\xaf\x12\x87\x31\x96\xb0\xc3\x61\x93\xaf\x55\xf5\x42\xd9\x96\x8a\xed\x80\x69\xab\x9f\xbc\xd6\x81\x4e\xc4\x72\x79\x9a\xd0\x9c\x73\x0d\x41\xed\xde\xca\x3b\x62\x69\xd3\x1a\xb5\x23\xb5\x95\x47\x07\x73\x76\x34\x5b\x05\xf2\xae\x69\xb4\xee\x72\x8c\x86\x3d\x1b\xc0\x4e\x9b\x7d\x3d\x0f\xcc\xeb\x35\x9c\xbd\x08\x58\x59\x7a\xf2\xd6\x06\x3e\x25\x3f\xae\x2c\x3f\x25\x03\x4c\x33\xed\x59\xed\xd2\x78\x28\x68\x29\x86\x81\xca\xf5\x64\xdb\x8d\x19\x36\x6f\x34\xea\xe8\x5b\xa7\x3c\x1e\x23\x89\xb0\xdd\x78\xa9\xd2\xca\xa0\xf2\x3c\x9a\xd5\xf6\xcd\x9f\x2c\x4a\xd5\xd5\x89\x46\xad\xb7\x18\xcb\x83\xda\x58\xe2\xfc\xbb\x60\x25\xbe\xf4\x66\x0a\x83\xe0\xaf\x55\xe2\x03\x08\x02\x93\x2f\x2a\x89\x6a\x09\x60\x79\xb7\x54\xc9\x9f\x7b\x64\x23\xb4\x5a\x86\x47\x2e\x67\x23\xef\x88\x96\xc4\x32\x4c\x73\xd3\x4a\xd5\x8a\x4c\x01\xb3\x8a\x97\xc7\x3b\xe5\xaa\x7f\x74\xa2\xfa\x4d\x07\x95\xaf\x6d\xbf\xcd\x6d\x4e\xb4\x42\xa7\xe2\x04\xdb\x4e\xcb\x1f\x8a\x22\x6b\xdf\xa2\x1b\x6e\xb1\x71\xc9\xe5\x9f\x1a\x19\x2e\x23\xa7\x6c\x35\x2b\x04\xd8\xa8\x02\x33\x98\x5b\x77\xa2\x9c\x02\x01\x19\xce\x65\x1c\x7f\x41\x83\xd0\xe9\xc1\x9f\xe1\x8a\xa1\x02\x0c\x25\xe4\x58\x9d\xee\x34\xb9\x01\xbd\xaf\x9f\xf9\x45\x0c\x91\xaf\x3c\x1d\xb6\x70\xb4\x77\xe0\xac\x21\x07\x69\x6c\x9e\xc0\xd3\x1d\x82\x64\x7b\x68\xea\x19\x49\x9f\xe3\x4a\x8e\x2e\x7b\x37\x8d\xc7\xe7\x54\x24\xe8\xc4\x56\x45\xb0\xc2\x81\x8e\x9f\x88\x5a\x1c\x58\x41\x5b\xba\x1c\x3f\x2a\x77\x54\x9b\xdc\x46\x80\xdb\xcd\x16\x50\xc7\x5d\x0f\x45\x2a\x6b\x20\x85\x91\xdf\x0f\xa6\xe1\x81\xda\x2a\xbf\xab\x44\x46\x21\xd5\xf7\x7c\x2c\xd7\x95\x56\x46\x72\x46\x44\x7a\x89\xf0\xaa\xac\xad\x66\x0c\x9a\x92\x5e\xba\xfb\xad\x43\xc4\x78\xa3\xc8\x50\xa2\x7e\x01\x01\x9d\x88\xa5\xb1\xdc\x81\xb5\xd2\xe9\xf7\x40\xa0\x28\xcc\xb7\x2c\x1a\xcf\x89\x7e\xa5\xad\x89\xe0\xf9\x44\x88\x88\xd5\xb1\x5c\xe6\xe4\x29\x77\xf7\xa7\x29\x15\x5a\x28\x4d\x11\x87\x58\xac\x65\xf3\xfb\xb9\x8d\xeb\x65"}, {{0xdd,0xd8,0xe9,0xff,0x85,0x56,0x79,0x89,0x6a,0x13,0x97,0xb4,0x27,0xdb,0x85,0x43,0xab,0xe8,0xbb,0x5d,0xd1,0x22,0xe3,0xe3,0x02,0xcc,0xfc,0xe5,0xfd,0xc6,0x3e,0x12,},{0x5a,0x9a,0x31,0x2e,0x89,0x2a,0x10,0xb9,0x8d,0x0d,0xcd,0xd2,0x8d,0xb3,0x48,0x1c,0x3c,0x28,0xad,0xd5,0xad,0x0b,0x19,0x46,0x16,0xda,0x4a,0x3d,0xf7,0x66,0x01,0x09,},{0xdf,0x84,0x9b,0x7b,0xd2,0x97,0x45,0xf8,0xbe,0xcd,0xdd,0xf6,0xc9,0xba,0xf0,0x94,0xd7,0xa9,0x8c,0xc9,0x33,0x8c,0x34,0x4e,0xca,0x17,0xfd,0xe0,0x75,0xfd,0xa8,0xd1,0x54,0x32,0x99,0xf6,0x25,0x98,0x23,0x17,0xdb,0x7b,0x3c,0x77,0x3b,0x64,0xf7,0xd1,0xf2,0x86,0x92,0xac,0x45,0x3b,0x81,0xd7,0xec,0x7b,0x7e,0xc3,0x41,0x7a,0xce,0x04,},"\x5e\x8f\xee\xc5\x09\x35\x0d\x2e\xe7\x95\x5b\x6f\x3e\x27\x82\x78\xa4\xcb\x48\xae\x72\xb4\x65\x89\xe4\x78\xbe\x59\x74\x7d\xf5\x39\x4a\x16\x9f\x19\xe1\x0d\xb5\x32\x02\xa6\xa5\x23\x20\xb6\x3a\x9a\x2b\x72\x3f\xd3\x1a\xa2\xdb\x6d\x58\xc5\x73\x32\xda\x31\x78\xbc\xf9\x66\xc5\x3a\xbd\xa3\x5f\x12\xda\xef\x9e\xdc\xf3\x99\xe4\xa8\xc5\xf8\x3d\x36\xf4\x4a\x17\xd7\x98\x46\xbf\xc9\x6c\xe6\x90\x19\x4c\x21\x9a\x29\x89\x2f\x03\x67\xa7\xab\x38\x44\x83\x78\x79\xe3\x81\x8d\xb8\xd7\x0c\x4e\x3f\xba\x4d\x28\x07\x34\x64\xdf\x20\x85\x95\x10\x38\xfe\xa4\x32\x81\xb6\xb6\x06\xdc\x88\x46\xb3\x0b\x07\x63\xf2\xca\x82\xbd\x50\x21\xf9\x11\x70\x35\xa7\x7b\xcd\x10\x75\x47\x7c\x5f\x43\x21\x43\x34\xd4\xd4\xce\xdd\x18\xf7\x38\xd6\x76\xc7\xb5\x1a\x18\x5f\xfa\x8d\x04\x10\x11\x86\xa4\x95\x2b\xbd\x87\x22\xf5\x39\x90\xb6\x06\x37\x04\x1e\x11\x4a\xeb\x8c\xe7\x11\x11\x31\xd4\xdb\x3f\xb4\xd3\x5d\x99\x5a\xd8\xd6\x65\x0c\x0c\x4c\xcd\xce\x9d\xcc\x39\xdb\x18\x8a\x68\x78\x55\x62\x74\x06\x26\xb3\xae\x3e\x02\x3f\x40\x77\x2d\xed\x87\x6a\x45\xcb\xef\x74\xa0\x58\xfd\x78\xc1\xa1\xff\x2c\x24\x51\xe1\x11\xac\x1b\x4b\x7e\xe4\xc8\x1c\xd7\x63\x10\xd4\xd2\x98\xfb\x3c\x49\xf5\xe6\x40\x19\x08\xa6\x30\xfa\x85\xdb\x74\x71\x80\x4f\xe9\x90\x84\x7f\x0f\x75\x94\x72\xf5\x93\xdc\xf0\x2e\x11\x3e\x15\xe5\x64\xd3\x0d\x59\x84\x69\x2d\xa5\x5b\x0b\x7f\x22\x19\xc4\xac\x16\x26\x51\x1a\xcf\x19\x4d\xc7\x02\x6e\xb9\xd3\x67\xa4\xa2\xf1\xdf\xb5\x15\xcb\x2c\x08\xda\x4f\xe5\x95\xc8\x58\x11\x12\x0c\xba\x2a\xe7\xb6\x6e\x67\xc9\x1f\xb8\xfb\xcb\x9d\x99\xf1\x3e\x50\xfd\x67\x46\x4d\x90\xc8\xdc\xf6\x93\x55\x23\xcf\x6d\x13\xfd\xd1\x06\x35\xb9\x23\x2b\x7a\x61\xdc\xec\x9a\x2b\x92\x10\x61\x41\x0d\xf1\xde\x6a\x45\x16\x7f\xb9\xf6\xf1\x09\xdc\xc0\x88\x91\xf2\x03\xb2\x74\xa3\xb6\x82\x71\xb3\xf3\x5e\x74\xf9\x4b\xdc\xed\x0c\x5f\xf8\x63\x71\x73\xa1\x76\xe7\xda\xcc\x81\xf2\xcd\xc4\xfb\x0d\x52\xd1\xdf\xa7\xf2\x7b\x55\x2f\xd8\xd8\x7a\x1c\x55\xd6\x94\x7f\xd9\x2e\xd3\x25\x3f\x95\x94\xdb\x7d\xf1\x7a\x7f\xc6\xa7\x5e\xcf\x4f\xaa\x4d\x1e\x21\xb6\x76\xb3\x72\x7d\x77\xfb\xd4\x3f\xa7\xbe\x76\xbf\xb5\x8f\xc3\x09\xe5\x67\x5f\x0a\x85\x9c\xc4\x7f\x37\xb1\xbf\x45\x59\x32\xd8\x24\xe8\x63\x78\xde\x7a\x7e\x8c\x40\xce\xd2\x20\x90\x04\x4d\xbb\xf9\x1c\x70\xe5\x28\xea\xcd\xef\x37\x85\xba\x3c\x69\xa3\x73\x5a\xf6\x70\x9c\xd7\x6a\xab\x28\xa6\xac\xa6\xe8\x44\x97\x4b\x10\xb3\xfb\x7b\x09\x86\x00\x7a\x72\x7c\x2c\x8f\xc9\x5b\x25\xf3\x1f\x14\x6b\x36\xac\xd4\xc5\x37\x07\x49\x20\xaf\xf2\x47\xde\x0f\x17\x9c\x13\xca\x57\x79\x0a\x6a\x71\xd6\x2e\x23\x32\x1c\xcc\x75\xb7\xf3\xb0\xaf\xa0\xd0\x35\x27\xc9\x11\x4a\x7d\x4e\x30\xc1\xac\xe6\xd7\x71\x20\x13\xde\xe6\x66\x99\xaf\x9c\x56\x1c\x44\xae\x61\x98\xed\x39\x10\x4e\x60\x61\xae\x2c\x45\xa9\xa3\xc7\x4b\x5d\x0f\xbc\x4a\x33\xe8\xdf\xe2\xa8\xac\xc9\x51\x1e\xf7\xe6\x56\x71\x33\xf9\xfe\x35\x54\x28\x4a\x75\xa0\x59\xa6\x49\xdd\x24\xec\x04\xa5\x77\x30\xc6\xd2\xe9\xbf\x11\x4e\xa5\x8a\x89\x94\xab\xdb\x0c\x19\x43\x24\x15\x72\xc7\x9e\xad\x04\x3a\xd1\xc8\xca\xaf\x5c\x9d\xa5\x3d\xd0\x55\x22\xfe\xbc\x40\x33\x54\xd6\x2f\xe3\xff\x93\x88\x2d\xf7\x5f\xb2\x94\x58\xd2\x2e\x69\x96\xc3\x5b\x69\xfa\xae\xf2\xe0\xc4\x16\x38\x86\xcb\x3c\x3d\x0f\x60\xe1\x50\xd3\x63\xd6\xdb\x59\xfe\xfc\x62\x6b\x1b\xbb\x1e\x05\x2a\x62\x41\x4c\x4b\x78\x56\xd7\x20\x93\x43\x2b\x08\xf8\x21\xbc\x78\x4a\x5a\x6b\x0b\xc2\x64\x9c\x2d\xaa\x50\x86\x58\x98\x0d\x80\x22\x91\xe7\x34\xab\xaf\xf0\x6a\xfb\xf2\x79\x5e\x4e\x35\x4d\x52\x21\xdc\x4f\x52\xcc\x96\xd6\xb8\xcf\x18\x08\xb1\xa8\x20\x8d\xb7\xda\xa8\x0a\xb7\x10\xc5\x6a\x8b\x0e\x9c\xb8\x08\x1d\xee\x93\xf5\xf0\x15\xf0\x76\x64\x46\x3a\x3d\xcc\xff\x7c\x8a\xd1\x99\x23\xa9\x7e\x39\x04\x5b\xcc\x4d\xce\x0a\x73\xd4\x9c\x56\xd5\xe9\x37\xbd\x11\xe6\x18\x23\x40\x1c\x06\x62\x06\xe3\x13\xe6\x0b\x47\x53\x7e\x34\x70\x4d\x7d\x35\x15\x55\x9b\xb9\xd0\x53\x2d\x02\x8e\x28\xa5\x7a\x87\x9f\xd6\x17\xcc\x61\xf7\xf7\x76\xbd\x6a\x00\x8c\xd4\xf8\x12\x37\x8e\xd3\x7f\x39\x4b\xb9\x7e\x6e\x75\x6d\xa8\x19"}, {{0xa8,0x86,0xf4,0xd3,0xf3,0x4e,0x32,0x0e,0xc6,0xd5,0xf4,0xca,0xa8,0x63,0xf8,0x14,0x77,0xdf,0x77,0x2e,0xff,0x97,0xe6,0x4a,0x37,0xa0,0x5f,0x42,0x11,0xd1,0x90,0xa8,},{0xe9,0xbc,0x96,0xc8,0x1e,0x87,0x81,0x10,0x26,0x8b,0x55,0xde,0xf7,0xea,0x40,0x07,0xa4,0xef,0x9f,0x54,0xd3,0x83,0xd5,0xfb,0x0f,0x6d,0x43,0x43,0xe1,0x01,0x0f,0x38,},{0xab,0xf2,0x83,0xdb,0x1f,0x80,0xc5,0x4c,0x58,0x3b,0x49,0x9d,0xbe,0x20,0xaa,0x04,0x24,0x8c,0x1d,0xce,0x12,0x1f,0x39,0x11,0x67,0x78,0x13,0xac,0x3e,0x01,0x1f,0xd1,0x59,0xad,0x0b,0xf7,0x6b,0x1a,0xa7,0xcc,0x7b,0x14,0xd7,0xb5,0x50,0x84,0x86,0x88,0x25,0x2a,0xcc,0x7f,0xec,0xe9,0x04,0x87,0x24,0x0c,0x3d,0x39,0x9d,0xd3,0x43,0x08,},"\x8b\x83\x1b\x87\x7b\xc3\xa9\x9f\x61\x3c\x89\xcd\xa6\x98\xb3\x75\x9d\x64\x38\x22\xb5\xa8\x8f\xaf\x38\x22\xec\xb2\xce\x98\xf6\x71\xd7\x55\x43\x21\xb2\x4b\x74\xb4\xe3\x0a\x66\x3f\x7a\x55\x70\xae\x91\x7f\x47\x9b\xda\x29\x89\x4b\x1a\x8c\x02\x8c\x9d\x19\x3e\x4e\x7a\xc1\x19\x16\xdd\x8e\x9c\x3f\x0e\xc0\xef\x80\xbd\x27\xfd\xfe\xee\x80\xc1\x70\xc7\x81\x40\xb2\x4c\x15\x27\x14\x15\xac\xf7\x5c\x26\x95\x6a\x4d\x4b\xf9\x9d\x40\xe8\x61\xe9\x07\x83\x20\xd0\x97\xe1\x25\x9e\x5e\xc1\x7b\x58\x3a\x95\xe5\x24\x30\xdd\x8c\x00\x8e\xd8\xc7\xdd\x1d\xe1\xbe\xcd\xd1\xe6\xbf\xec\x4b\xf3\x34\x7a\x22\xdd\x24\x9f\x3a\xc3\x07\xa2\x94\x5e\x91\x37\xfa\x4a\x8c\x26\xc8\x02\x10\x77\x23\x9c\xb3\x24\x81\x6a\x8d\xad\x32\xb0\x1e\xe3\x4a\x08\x90\x30\x98\xcb\x9c\x42\x45\x29\x1b\x90\x3c\x96\x27\x07\x40\x95\x24\x9e\x78\x28\x13\x47\x70\x32\xba\x32\xef\x04\x1a\x07\x48\x6e\xb4\x47\x8c\x57\xb9\xd5\x32\x26\x9a\x4a\x47\xcb\x5e\x97\x4d\xf7\xe0\x10\x96\xfb\xe4\xf1\xcc\xd4\xe6\x63\x66\x34\x87\x97\x4c\x62\xcd\xd9\x4d\x77\x71\x6c\x84\x79\xd7\x9f\x6b\x6a\x7d\x9c\x15\x59\x88\xcf\x39\x02\xfb\x69\x74\x24\x96\x3e\xc4\xec\x34\xff\x2a\x35\xd7\x42\xc4\x45\x5a\x59\x3b\xac\xff\xc4\xd9\x69\x9b\xa7\x62\x6c\x76\xcb\x1a\x61\x62\x53\x75\x18\x87\xf6\xff\xe2\xbe\x20\x8c\x71\x3d\xf1\xab\x63\x6d\x72\x2e\xa0\x6c\x1c\x03\xa5\x7f\x2c\xec\x08\x03\x86\x6c\xca\x33\x35\xc2\x8b\xf4\x1c\x7d\xef\x81\xac\xb3\x88\x58\xdc\x10\xe5\x94\x67\x20\x86\x24\x96\x7e\x2e\x22\xd9\xe5\x66\x1b\xb9\x45\xf9\xe0\x51\x76\x87\xdc\x80\xf9\xb8\xfd\xec\xc8\xa9\x76\x00\xb6\xc2\x19\xa3\xb2\x3a\x90\xb6\xd1\x8a\xaa\xce\x2c\x78\x40\x0f\xf3\x8c\x8c\x05\x96\x7f\x54\x4b\x6a\x60\x6c\x71\xac\x19\x9e\xaf\xd0\x7e\xb5\x84\x8d\xf1\x65\x7e\xfb\x23\x3f\xba\xba\xe6\x3a\x05\x63\x81\x91\xa0\xaf\x74\x84\xa1\xba\xe1\x58\x13\x75\x67\x2c\x57\x1e\x26\x4f\x60\x42\x25\x17\x3a\x54\xa3\x8d\xd6\x2a\xe7\x13\x0d\x05\xdd\x29\x1a\xd1\x23\x54\xde\x86\xa6\xe1\x13\xe8\x3f\x6d\x66\x85\x16\x15\x7b\x79\x67\x02\x0d\xc6\x51\x7d\x8c\xf4\x2d\xd7\xb1\xa8\x97\xfe\x1b\x4e\x04\x55\x3c\xe2\x6e\x29\x99\x80\xaa\x5f\x7c\xe0\x17\x9b\xf4\x95\x4f\x01\xc2\xa2\x36\x54\xe5\xe9\x73\x1e\x14\x47\x34\x7f\xa4\x3a\xa8\xb2\xcb\xd6\xd4\xb2\xdf\x93\xfa\x54\xaf\x71\xe5\x02\x8a\x6d\xa8\xc7\x1e\xf3\xc5\x0c\x0d\xe2\x4d\xca\xee\x78\x56\x78\xe9\x2a\xaf\xab\xeb\x23\x3b\x01\x1f\x45\xc1\x06\x49\x65\x08\x5d\x25\x47\x05\x0f\x21\xc6\x52\xaa\x53\x3a\xfe\x91\x8a\xa0\xf9\xbd\xaa\x26\x07\xb8\x73\xcc\xd3\xdb\xd1\xd3\xa8\xcc\x62\x17\x2c\xeb\x43\xb9\x21\xef\x6b\x25\xc0\x6b\x09\x92\xe4\xdf\x2b\x91\xe3\x71\xb0\xef\x2b\x39\x47\x38\x8d\xae\xc8\xec\x6f\x7e\x38\x67\xd1\xf6\x10\x72\xaf\x59\x01\x54\xfa\x61\x9a\x07\xf8\x7e\x02\xbd\xdc\x74\x06\x31\x42\x70\xaf\x1c\x15\xe8\xee\x88\xb3\x9c\x01\xbe\x60\x2e\x4f\x0b\x52\xd9\xa0\x72\x4e\x71\xed\xdd\x7f\xa9\x13\x41\x69\xc5\xfa\xab\x91\x59\x79\xee\xa9\x36\x2d\x0f\x1f\x91\x60\x26\x81\x62\xdd\x38\xdb\x02\xfc\xfb\x41\x35\x0a\xa0\x8e\x1e\x14\x09\xb2\x28\x8d\xb1\xfe\x4a\x0e\x58\x6b\x59\x10\xf4\xde\x89\x4b\xf9\x97\x4f\x6a\x49\x83\x01\x3a\x19\x0e\x7a\x73\x6d\x14\xec\x54\xc3\x64\x4a\x3e\xe9\x58\xa5\xbd\xfb\xcb\x62\x97\xab\xa4\x3a\xf6\xc7\x27\x46\xbb\x13\x54\x10\x50\x7d\x8f\xdd\xe7\x3a\x2a\x48\xb7\x46\xf9\x18\xbe\xf9\xed\x92\xc5\xbe\x62\xdd\x55\x23\xfe\x14\xb1\x6d\x63\x84\xca\x46\xef\x59\xb2\x18\x5f\xe9\x33\x38\x3a\x2c\x7a\x9b\xf0\x2d\xa9\xd0\xfd\x8b\x0c\x7d\x7b\xde\x6b\x43\x9f\x99\x60\x15\x5e\x34\x5d\x68\x5d\x4d\xc3\xc7\x14\x04\xd6\x56\x81\x19\x23\xaa\x3c\x47\xd4\xb0\x9a\x0b\xae\xf0\xa1\x2e\x75\xb6\x43\x9b\xa8\x13\x5d\xb1\x58\x65\x87\x42\x22\xcd\x7a\xa4\x28\xf5\xca\x5c\xe5\x14\x0e\x22\xff\x92\x69\x7f\x37\xfc\x70\xb5\xb4\xc9\x4d\x33\x14\xe6\xaa\x16\xb2\x14\x6b\xca\x4f\xc9\x41\x57\x95\x1f\xc4\x92\x45\xda\x53\xf6\xc4\x3d\x1b\xeb\xd8\x94\xe3\x1a\x13\x49\x88\x4d\x71\x1b\x55\xdb\xe7\x78\xff\xa7\x27\x16\x5c\xf7\xcb\x67\x64\x35\x86\x6c\x2d\x2c\xb8\x39\x74\x5c\xa4\x01\x66\xa2\xf7\xcf\xc7\x7a\x84\x24\x68\xb5\x1a\x8e\x76\x57\x5f\xc9\xdd\xfb\x5f"}, {{0x49,0x7e,0x3e,0xbd,0x9e,0x4c,0xaa,0x81,0xc5,0xa8,0x97,0x3d,0x52,0xf1,0xd2,0x3f,0x60,0xc1,0x34,0xca,0x53,0xf6,0x2a,0x85,0x3a,0x0a,0xc0,0x43,0xe5,0x1c,0xb5,0x17,},{0x71,0xc0,0xca,0x7c,0xfa,0x05,0xca,0xfa,0xbb,0x14,0x3d,0x84,0xae,0x41,0xde,0x83,0x84,0x6f,0x42,0xc7,0x7c,0xaa,0x7a,0x91,0xa2,0xe3,0x48,0x39,0x7d,0x07,0xd5,0x2f,},{0x12,0x74,0x08,0x39,0xb3,0xc9,0xf1,0xba,0x87,0x98,0x96,0xdf,0xf6,0xd7,0x25,0xe8,0x4e,0x04,0x43,0xef,0x96,0xc3,0x49,0xef,0xf9,0x4d,0xc4,0x83,0x31,0x43,0xe5,0xb4,0x19,0x80,0x4d,0xa9,0xdb,0x11,0x8a,0x95,0x92,0xb1,0xb1,0xca,0x48,0xaf,0x18,0xf7,0x5b,0xef,0x1c,0xa4,0x68,0xa1,0xa5,0xc7,0x4c,0x7a,0xc8,0x13,0xbb,0x2c,0xf3,0x06,},"\xe1\x32\xf9\xd6\x7b\x17\x29\x38\x9b\x82\x8a\x9f\xae\x05\xa6\x7a\xa5\x7f\x0e\xf7\xe7\xd4\xd1\xba\x24\x4d\xec\x87\x04\xdb\x96\x95\x65\xd1\xca\xb8\x09\xe4\x8f\xc0\xab\xf9\x50\xbc\xd4\xa3\x7d\x97\xae\xac\xe6\xda\x54\x6d\x49\x14\xcb\x5b\x86\xd6\xab\x18\x1d\x83\x18\x70\xc3\x09\xbc\xa6\x16\x46\x8f\x2a\x34\xd3\xdf\xaf\xcd\xbb\x75\x80\xb0\xc5\xd9\xff\x98\xe2\xc5\x4e\xc8\x03\xbe\x0d\x3f\xda\x1d\x4b\x8c\x0d\x77\x09\xc8\x9e\x68\x0b\x00\x8b\xf9\xb8\xd9\x03\xb5\xe9\x34\xb0\x19\x70\x5f\xe0\xb0\xc8\xcf\xbc\x3c\x09\x67\x84\x3b\x0a\x1f\xa1\xb3\xf1\x62\x77\x6e\xbe\x96\xb7\x40\xed\xd6\x4a\xd7\xc3\x5b\x3f\xd1\xa0\x85\xc9\x9d\x16\xf5\x41\x67\x82\xde\x17\x35\x85\x87\x47\x0d\xd1\x3b\x51\x94\xf2\x0f\x23\x23\x2b\x2f\x70\x2f\x10\xaa\xfc\xaa\x59\xc7\x06\x6f\x24\xc4\xc4\x71\xe4\x2f\xa8\x6c\x6b\x9c\x5c\x3e\x1e\x8f\x83\x65\xf4\xdd\x75\xac\xb3\x2f\xff\xc0\x53\xc9\xaf\x41\xc6\xfd\x2e\xfa\xc3\x0e\xcf\x6a\x2d\xd0\x08\x5d\xe9\xb1\xd8\xcd\xc5\x0b\x16\x60\xa8\x66\xdf\x77\x67\x19\x8b\xd9\xc8\x73\x70\x61\x5d\x2b\xca\x99\xf7\x7b\x84\xd9\x8d\x7b\x24\xc9\xc2\x0f\xd7\x76\x8f\xd0\x38\x0d\x6b\x37\x36\x03\x40\xd1\x35\x98\x04\x78\x20\xdc\xed\x88\xa8\xd4\x2d\x57\x29\x37\xb6\xef\xa1\x69\x21\xa1\xb2\xb2\xd0\xeb\x93\x16\x73\x07\x08\x38\xe6\x11\xe6\xc0\x23\x29\x0d\x86\xfe\x90\x2f\x14\xac\x3a\xcd\x02\x9e\x33\x97\xfe\xb9\x7b\x17\x16\x62\x45\xab\x40\x7a\x76\x6d\x2e\x09\x04\x42\x4d\x33\xcd\x3d\x6e\x2e\x62\xa5\x2c\x65\xdf\x7c\xf0\x04\xd1\x41\x5c\x0b\x43\x0c\x11\x27\x62\x3d\xab\x27\x2a\x2c\x2e\x2b\x43\xe0\x2b\x48\x1b\xe9\x28\xe8\x99\x54\x27\x28\x32\xbe\x09\x8b\x50\x2b\x8b\x56\x43\xc6\x74\x82\xf5\xde\x44\x03\x03\x25\x81\xf0\x8a\xfb\x0a\xea\x48\x86\x85\x82\x60\x7b\xb3\x91\x98\xc1\xbf\x13\xa8\x69\xb6\x32\x58\xa7\x58\x90\xb6\x94\x45\xff\xd3\x45\x64\x02\x3e\x47\xf8\xb1\x88\x4a\x5e\x49\xb7\xd9\x42\x5f\x28\xd5\x15\x30\x13\xfe\x37\x55\xc6\xcb\x11\x4d\xb1\x80\xe6\x0b\x3d\xc4\xad\xb3\x6a\x21\x42\x81\x28\x00\x5a\x77\x2f\xb5\x71\x89\x34\x55\x65\xbb\xd1\x75\x98\x13\x52\x3b\xad\x62\x85\x5e\x79\x28\xee\xf5\x88\x0d\x3b\xff\xf1\xd0\xec\x65\xc2\x45\x92\x33\x5c\xda\x47\xcf\xcc\x5b\x5f\xa6\x52\xb4\x72\x63\x22\x52\x24\x84\x6a\x20\x9a\x3d\xd7\x76\x66\x61\xfc\xa4\xcc\xca\x59\xc4\x56\xfc\x9c\xc3\xe1\xcf\x80\x42\x55\xaa\x5f\x39\x7b\xab\x19\x98\x04\x33\x6b\xde\x29\xe5\x5c\x6c\x37\x7d\x58\x3f\x08\x2c\xe6\x47\x23\x73\x9e\x4f\x02\x46\x06\xf9\x06\xc1\x10\xd0\xa5\xb6\x10\xe5\xfe\xd9\x6d\xab\x5f\x08\xf4\xcb\x3c\xfc\x40\xa3\x55\x57\xe1\xa7\x40\xb8\xc7\xc0\x1f\x7d\x32\x79\xdd\x9c\x4e\x87\x64\xc9\x0b\xc1\x4f\x41\x61\xdb\x5a\x37\xf0\x98\x9b\x7b\xd8\x03\x5f\x8b\xea\x39\x4e\xa1\xd6\x00\x2c\xe9\xc3\x4f\x1e\x9c\x52\xc6\xa1\x5d\x15\xbc\x5b\x25\xc6\xc1\x5a\xb0\x0d\xfd\x6a\x5b\x1b\xc9\x17\xaf\x0b\x1b\x05\xfd\x10\xd0\x61\xb3\x68\x3d\x75\xb5\xf9\xef\xfb\x22\xae\x72\x08\x5b\xe4\xf6\x79\x7b\x58\xcb\x0c\xab\x56\x18\x44\x12\x1f\x98\xbf\xd9\x58\x3e\x0b\xcc\xb7\x0f\xad\x76\x98\x0a\x7a\x73\xb2\x3c\x70\xb3\xfd\x02\xf7\x75\x7c\x11\xa3\xc2\x1d\x19\xe0\x56\x50\xff\xb8\x2b\x9e\x0d\xf8\xa6\x73\x5d\x48\x01\x56\xf4\x79\x49\xd4\x45\x85\x1b\xae\xaa\x5e\xe2\x38\x14\xa4\x1b\x25\x23\x4f\xb9\x2c\xc0\xdf\x19\x80\xd0\x23\xd5\x1b\x5c\xf4\xc3\x11\x85\xc1\x18\xe3\xee\x3c\x0c\x0a\x46\xe0\xa2\xbe\x6f\x1d\x3a\xe4\x52\xcb\xb6\x6f\x0f\xd9\x19\x71\x34\x2d\xa7\xb1\xb9\x96\x58\x9d\x94\x09\x67\x81\x55\x21\x95\xc4\x33\xca\xf1\x9c\x37\xf9\xf1\x4f\xa0\xae\x15\xae\x0b\x02\xb9\x39\xe4\x02\x03\x4f\xf8\x18\x85\x93\x9d\x94\x4e\x60\x4f\x47\x4f\x21\x52\x43\x89\x39\x0f\xda\xda\x06\xe3\x0d\x69\x06\x8c\x88\x48\xcf\x0a\x95\x1e\xab\x25\xc4\x91\x25\x62\x94\x4f\x40\x24\x68\x18\x7a\x23\x23\x9d\x33\x63\x2f\x29\x12\x3d\x49\xb7\xde\x13\x08\x33\x98\xdb\xa9\x7d\xed\xe1\x2f\x79\x59\xb9\x52\x47\xa0\x8f\xc8\xe4\xb5\x39\x9d\x1c\x03\x5c\x08\x94\xcc\x75\xae\x98\x1c\x2d\xd4\x93\x54\x13\xbb\xeb\x68\x53\xfe\x04\x65\x5c\x77\xd1\x58\xc1\x23\x7b\x3e\x0d\xec\xa5\x63\x6d\x69\xe0\xdb\xc5\xac\xaf\x72\xb6\x0c\x10\xbb\x98\xcc\xdd\x60\x09\x8a\x03"}, {{0x85,0xb4,0xd7,0x64,0x16,0x91,0x28,0x62,0x6f,0xd9,0xc7,0x82,0xad,0x61,0x16,0x22,0x9e,0xdd,0x77,0x63,0x1c,0x2b,0xc9,0xb8,0xee,0x54,0xb3,0x65,0x42,0xc1,0x49,0xeb,},{0x6a,0x09,0x89,0x7e,0x62,0x9b,0xb4,0x37,0x04,0xde,0xbb,0x67,0x15,0xc9,0xde,0xa5,0xd8,0x92,0xb6,0x34,0x30,0x64,0x40,0x99,0x7c,0x3c,0x9e,0x94,0xbe,0x8a,0xb5,0x47,},{0x4a,0x79,0xc4,0x42,0xa4,0xc3,0x9c,0x62,0x89,0x26,0x17,0xef,0x8e,0x80,0xb4,0x09,0x11,0xc4,0xb9,0xd3,0xff,0x0a,0x56,0x73,0xb5,0x7b,0xdb,0x84,0x54,0xad,0x73,0x67,0x69,0xdf,0x27,0xc7,0x8a,0x4b,0xf7,0xad,0x56,0x60,0x40,0xe7,0x47,0x27,0x8b,0x11,0xeb,0x65,0xcf,0x9e,0xc7,0xeb,0xa8,0x66,0x12,0x0a,0x36,0x54,0xf4,0x71,0x6e,0x00,},"\xb2\xa0\x49\x3d\x47\x1c\x33\x91\xf7\xad\xd1\xe2\xcf\x0b\xfb\x32\xab\x05\xdb\xcb\x14\xf6\xe4\xf5\xf3\x46\x3a\xa8\xd9\x95\x52\xf4\x33\x02\x20\x46\xd2\xf8\xeb\x76\x3c\x01\x71\xfc\xb1\xe7\x4a\x04\x9f\xfe\xb4\xb8\xf0\x10\x0b\x82\x10\xfc\xe8\x56\xb2\xe1\xa8\xe7\x39\xd2\xf9\x36\x73\xef\x8f\x8f\x40\x49\x8b\x30\x81\xfa\x1f\xd7\x85\x19\x8c\x6d\x37\x0e\x16\x2d\x41\xab\xe8\x31\x86\xf2\x32\x97\x83\x40\x8b\x9b\x88\x0d\x00\xf8\x1d\x53\x10\x0b\x42\xd2\x7a\x26\x1f\x20\xcd\xee\xd1\x9c\xc5\x8c\xb8\x63\x12\x81\xd8\x0d\xb1\x92\x53\x10\xe2\x35\xe4\x49\x66\x30\x9b\x87\x9b\xdf\xc2\x32\x22\x14\x33\xba\xe5\xca\xe4\x66\x90\xcb\x52\x7b\x67\x79\xe1\x1f\x1b\xd2\xa5\x6b\x59\xc5\x6e\xd4\xd9\x4f\xdf\x7a\xa8\x9d\xfa\x9b\xf2\x0d\xbf\xa6\xa4\x39\x8b\x98\x38\x45\x17\xe1\xdd\x5d\x2c\xd9\xce\x52\x4a\x47\x36\x2e\xf3\x2a\xc7\x92\x74\x2a\x12\x9c\x9e\x06\x13\x08\x76\xab\x5a\xd5\x51\x8e\xab\xc5\xe8\x0b\x02\x2d\x8f\xa1\x3e\x50\xd5\x5d\xed\x58\x95\x33\xe6\xea\x32\x24\x2c\x1b\x3f\xd7\xe6\x5f\x80\xde\xe7\x20\xb6\xd8\x7d\xcf\xf3\xe3\xdf\x04\xc8\x02\xd2\xe9\x14\xa8\x7a\x36\x29\xc9\x0b\xb6\x9e\x0a\x6f\x8b\xbb\x5e\xe5\x05\xf1\x43\xc9\x97\x73\x75\xad\xb0\x65\xc3\xe3\xd3\x91\xf9\x05\xfa\x3c\x33\x6c\x9d\xa4\x1e\x4a\x23\x20\xbc\xf4\x60\x97\x6f\xc7\xeb\x1f\xb6\xc6\xa3\xc3\x95\xdb\xd1\xd2\x8a\x1b\x09\xcd\xb9\xae\x9f\x9a\xae\xe4\xd9\xc5\x66\xa2\xac\x40\xad\xd8\x70\x47\x9f\xaf\x54\xad\x1b\x76\x97\x71\x0b\x4e\xb6\xf7\x32\x02\x44\xb5\x97\x57\xd1\xea\xc3\xd9\x22\xb7\xa7\x30\xb1\xac\xf0\xde\x9a\x45\xd4\xac\x87\x9d\x21\xfc\x61\x6e\xf3\x96\x5d\x74\x34\x5e\xd7\x07\x79\xeb\x68\x32\x80\xce\xe2\x5b\xf3\x73\x9b\xeb\x6b\x4c\xdf\xa2\x5d\x20\x2d\xa1\x3a\x4a\x67\x30\x40\xd9\x70\x48\x65\x8b\x92\x05\x47\x95\x05\xd0\xbe\xe4\x88\x0a\x73\x99\x7c\x70\x82\x5a\x6e\xc5\xfd\x9f\x95\x2e\x65\xfa\x02\x22\x54\x45\xfc\x3b\xdf\x4a\xde\xa3\xd4\xd2\x25\x51\xcb\xac\xeb\x38\x74\x79\x8d\x6a\x33\xa6\x66\x3f\xe3\x75\x70\x81\xd6\x24\x3d\xfd\x7c\xd2\xee\xbf\x60\xa3\x89\x9f\xa1\xf8\xf6\xc9\x56\xa3\xb1\x83\xf8\x9b\x9e\x7d\x2c\xa3\x64\x48\x58\x4d\x53\xaa\x8b\x44\xe6\x5a\xd3\xe5\x27\xf7\x87\x23\xfa\x6f\x59\x22\x42\x98\xdf\x31\xd5\xe8\xad\xa5\x67\xc8\xd1\xb1\x1f\x3b\x13\x14\x75\x53\x31\xc1\x73\x2d\xc5\x4a\x12\xa4\x35\x6e\xdd\xa4\x7e\x3c\x13\x0b\x32\x52\x82\xa3\x54\xbf\xe1\x5c\x30\x00\xd2\x07\x82\x29\x31\x79\x41\x87\xe0\x97\x3a\xb8\xef\x87\xbf\x89\xc3\x54\xa0\x35\xa8\x1f\x45\x91\x12\x23\x56\x3b\xfd\x99\xf9\x0a\x75\xe5\x3d\x01\x0d\x89\x29\xf4\xf8\x5a\x5a\x5a\x4f\x9f\xcc\x1c\x78\xf0\xa2\xfc\x46\x6f\x5f\x1c\x65\x22\xcf\x62\xa7\xbe\x37\x88\x07\x96\xe9\xb3\xca\x09\x11\xec\xca\x3f\x22\xc3\xb2\x4d\x5d\x9d\xaa\x68\x88\xf8\x9a\x8f\x71\xa1\x58\x59\x35\x9c\xea\x46\x8e\xf2\x38\xec\xf6\x46\x19\x27\x83\xa2\x57\xad\xda\xde\x90\x47\xe1\x3e\xdd\x8b\xcc\x1f\xd4\x17\x7c\xb2\x0f\x88\xd1\x19\x98\xd9\xc7\x26\x2d\x64\x8c\x2b\xf6\x6f\xb2\x27\xb9\xb3\xa9\xed\x46\x96\x2d\x22\x57\xa4\x20\xf6\x4b\xea\xd9\xe2\x86\x57\xb5\x21\xdb\x2e\x22\x16\x52\x87\x79\x1f\x3a\x1b\xec\x4c\x78\x22\xa6\xca\xbd\xe5\xec\x77\x01\x88\xcb\x74\x49\x8a\x4f\x08\xe5\xa3\xa7\x63\x9d\x24\x0a\xe3\xf4\xfd\x03\x53\xc0\xdd\xa8\xae\x41\x0b\x9f\xa7\xf4\x3f\xee\xd1\x3e\x9f\x13\xe6\xc9\x41\x0a\x1d\x24\xcd\xfc\x2c\x8e\x64\xa1\x5a\x12\xf7\x55\x45\xb0\xa5\x75\x71\x35\x23\xd4\xdf\xa1\xa4\x74\x27\xa8\x85\x1b\xa9\xac\xcc\xad\x78\xb4\xef\x6a\x18\x5f\x5c\x3b\x00\x11\x90\xdd\x8f\x37\x08\x8a\x00\x0a\xcc\xf4\x48\xbe\x8d\x49\x37\x1d\x9d\xa2\xe1\xcb\x5f\xfe\x07\xd4\x1a\x5c\x22\xe9\x46\x60\xac\x37\x13\x5a\xc8\x58\xcb\x17\x69\xcb\x66\xe8\x26\x9f\xd5\x33\x58\xec\xac\xf5\xdd\x92\xc7\xeb\x61\x86\xb4\xd4\xd6\x13\x0a\x73\x2d\xc1\x0b\xbb\x2b\xe3\x2f\x9b\x1d\x69\x51\x01\x4a\x63\x5c\x12\xd2\x2f\x0d\xc5\xbd\x5c\x2a\x3f\x96\xae\xc6\x2e\x77\x77\x94\x7e\xaa\x02\x28\x12\xca\xce\xd3\x3a\x5b\xef\x9f\xf8\x83\x5f\x88\x03\x67\xa3\x7b\x0b\x76\xd2\xdd\xe3\x96\xc6\x14\xe1\xa4\x72\x1e\x00\x0c\x00\xf1\x61\x93\x5b\x14\xa7\x38\xa1\xb7\x0f\x6e\xa5\x42\x55\xb7\x95\x18\x69\x64\x62\x12"}, {{0x33,0xd4,0x77,0x60,0x2f,0x29,0x63,0x05,0xa6,0x71,0x9e,0xa6,0x94,0xc0,0x44,0xe9,0x0d,0x23,0x3c,0x2d,0xea,0x85,0xc4,0x6a,0xbe,0x19,0x20,0xe8,0x8c,0x31,0x78,0x49,},{0xff,0x6f,0xee,0xa0,0x28,0xec,0x34,0x6d,0xd4,0x91,0x07,0xbb,0x71,0x3f,0xdd,0xbb,0x28,0x2e,0xbc,0xd0,0x34,0xe2,0xea,0xfc,0x7c,0xdb,0x1c,0x5a,0xdf,0x92,0x63,0x90,},{0xca,0xa2,0x87,0x98,0x95,0xd4,0xf6,0x20,0xb9,0xeb,0x5f,0xed,0x22,0xb4,0x56,0x2e,0xeb,0x1a,0xd6,0x38,0x22,0x96,0x8f,0x76,0xad,0x91,0x07,0x6b,0x16,0x6c,0x05,0xee,0x20,0x86,0x4d,0x98,0xbb,0xbc,0x6e,0x79,0xdd,0x03,0x62,0xca,0xcf,0x7a,0x21,0xb4,0xcf,0xc2,0x30,0xd6,0x35,0x5d,0x43,0x12,0x0c,0xff,0xfb,0x94,0x8b,0x8f,0x6c,0x0e,},"\xcf\xea\x07\xa7\x79\xf1\x53\x7e\x49\x81\x23\xc6\x76\x29\x05\x73\xef\xcc\x5d\xb7\x02\x45\xd9\x3d\xea\x5c\x05\x72\x6f\x87\x13\xd0\x02\xae\x66\xc1\xc9\x69\x07\x47\xca\x92\x30\xb1\x62\x9d\x36\x62\xab\x73\xd6\x6b\x94\x98\x79\x16\x4b\x21\xa3\x5f\x40\xcf\x37\x99\x04\x19\x08\xed\x6f\x92\x29\xec\xb3\x90\xc5\xf2\x22\x34\xe1\xc5\xf2\x6b\x3a\xb5\xba\x59\xe7\x8c\x64\x96\x98\x71\xb4\x28\xb7\x85\x16\x77\x75\x55\xaf\x4e\x89\xc6\xfb\xc1\x93\xa9\x46\x95\x22\x6c\x6d\x32\x99\x91\xa1\x1b\xd5\x80\xd1\x89\x56\x08\x9b\x58\xa0\xe4\x2c\xa3\x5f\x6c\x6d\x26\x09\xad\xe0\xd0\xb6\x19\xd4\x89\x25\xc6\x8c\xd9\xd2\x25\x0d\xff\x27\xcf\x2f\x0d\x44\x44\x87\x09\xb6\x79\xf3\x5b\xbd\xce\x0f\x49\x6b\x0a\x16\xca\x67\xea\xce\xec\x25\x8b\x1a\xec\x91\x77\x5a\x3a\x2e\xe8\x01\xb1\xc9\xa2\x26\xa6\xb0\x01\x92\x6a\x05\x7a\x06\x30\x67\x27\xee\xda\xe8\xc5\x77\x53\x1d\xf0\x4a\xc0\x9b\x5b\x49\xbc\xde\xab\xde\xb8\xac\x4e\x8e\x82\xcf\x1e\x7a\xf8\x35\xfc\x61\x1c\xa7\xa6\x84\xb8\x35\x26\x04\x24\x15\xb1\xd6\x65\x2e\x86\x34\x31\x1e\x19\x46\x27\xea\xe7\x8d\x01\x1e\x6f\x40\xf6\x45\x79\x4e\x36\x89\x5a\x23\xe1\xbd\x84\x88\x3a\x39\x3e\xcf\xe5\xa2\x48\x02\x6a\xea\x86\x44\x70\x59\xf7\xa4\x29\x36\x8f\x21\xc8\x9e\x01\x45\x20\x79\x78\xb9\x13\xc8\x0a\x22\xd7\xca\xf2\x67\x3f\x7c\x76\xf6\xc2\x6c\xf8\x84\x41\x2e\x17\xd0\xc2\x55\x43\x0f\x50\x2b\xce\x74\xe3\xa3\x10\xd1\x7f\x6f\x4d\x48\x5d\xa2\x80\xed\x5b\x5e\xea\x6c\x49\xba\x74\x8d\x76\x48\x14\xb9\xe3\xda\xf6\xfc\xc2\x18\xc2\x74\x0c\xa7\x70\x18\xf7\x13\x44\x51\x9d\xa8\x2a\xda\x31\xe0\x01\x92\x4f\xc7\x76\x79\xe3\xe9\xff\x9f\xab\x67\xdd\x09\xa6\x19\x24\xc8\x21\xa1\xfd\x99\x9f\x74\xdf\xa3\xf8\x19\xad\xb3\x1d\x15\xe5\xed\x8a\xaa\x52\xc1\xbd\x7c\xca\x26\x67\x11\xa7\x4d\xd6\x21\x04\xef\x3c\x2b\xf7\x37\xfc\xe6\x94\x2b\x34\x8a\x33\xc3\xdf\xd6\xd9\x2a\x72\x4b\x6d\x58\x78\x42\x1a\xeb\x23\x0a\x53\x3f\xe2\x1c\x8b\x2f\xd3\xda\x59\x6a\x61\x80\xa4\x5c\x98\x6d\x7e\xce\x4c\xdc\x8a\xd6\x81\xea\xd6\x90\x64\xbb\xdd\xfc\x20\xf3\xc5\x21\x25\xf8\x33\x95\xbe\xd1\x55\x7f\x67\x18\x2b\x9f\xe9\x91\x38\xaf\x3c\x35\x6c\x5e\x65\x29\x78\xdd\x23\x8b\x76\x1c\x74\x2f\x81\x58\xe2\x31\x4b\x96\x42\x08\x33\x09\x78\xb0\x62\x0a\x13\xa1\x6d\x76\x1d\x52\xf0\x6e\x46\x6a\x40\x94\xb6\x5c\xd6\xf2\x68\x54\xae\xd6\xf9\xa8\xc2\xa8\x84\xa0\xd0\xbf\x4e\xe5\x87\xee\xb8\xb6\x02\x48\x72\x39\xa7\xe5\x81\x72\xc8\x09\x98\x3a\x8d\xb1\xc1\xfc\x7c\xe8\xc4\x8b\xc8\xa6\xfb\x81\x2d\x6a\xa9\xe8\x3a\x3a\xb4\xdd\xf7\xa8\xd4\x0d\x3f\xe0\x0e\xa1\x6e\x04\x06\x2b\x8a\xce\xb9\xc9\x9e\xef\xa4\x1f\x4f\x87\x44\x78\x28\x12\x6d\x0d\x9c\x9f\x86\x05\xe8\x46\x7c\x5e\x4d\x67\x1d\x5c\x6d\x9f\xa7\x0d\x74\x70\x98\xd9\x41\x21\x12\x23\xb9\xbc\xf2\x61\x93\x8d\x67\x04\xa3\x2d\x22\xc6\x1e\x30\xf3\x57\x0a\x1f\x5d\x09\x98\xb4\x79\x10\x80\x88\x2a\xa5\x62\x31\x67\xb6\x3a\x23\xf3\x40\xf0\xe7\xc6\xf9\xa8\x30\xa7\x5b\x74\x63\x1f\xa5\xb5\x7a\xfd\xb1\xe6\xbc\x22\x69\x9b\xb0\x31\x56\x67\x5d\x59\x83\x53\xa5\xd1\xb5\x58\x97\xe4\xc1\x10\x61\xdd\x14\x5f\x23\xe8\x53\x7c\x63\x2f\x75\xc1\x0d\xf0\x5b\x25\x54\x72\x38\x57\x40\x17\xfe\x7b\x64\xb8\xe9\x98\x69\x15\x7f\xee\x35\xf7\xad\x7e\x63\xe9\x95\x93\x30\x29\x29\x50\x3a\x96\x76\x80\x23\xb4\x12\x5a\xd7\x49\xdf\xf4\xb9\x92\xee\x5c\x2b\x4f\x3a\xda\x48\x89\xe4\xae\x62\xec\x15\xd2\xdb\x59\x69\xd7\x30\xdb\x30\x75\x47\xf6\x38\xc3\x18\x50\x32\xb1\x2f\x75\xfb\xb3\x17\xe4\x7d\xf7\xb9\x29\x2a\xe9\xe7\x6a\x2c\x0a\x06\xfc\xad\x10\x8c\xdd\x23\x5f\x6e\x38\xd9\x67\xb6\x37\x95\x11\xff\x69\x65\xc2\x2f\x2c\x66\x80\xa1\x2b\x03\x04\xeb\x2b\x29\x6c\x99\xa7\x6c\x27\x29\xd9\x8e\x0a\x78\x24\xb6\x7f\x3f\xe8\x42\xd6\xf6\xab\x27\x3e\x89\x48\x45\xb3\x2d\xc6\xdd\xfc\x7a\x22\x0f\x76\xbd\x96\x5c\x69\x85\x81\x83\xc8\xf3\x57\x39\x5f\xc5\x7d\xc8\x29\xde\xfa\xac\xb5\x60\x3a\x75\x78\x68\xd5\xe5\x62\xf9\x78\x1e\xe3\x9e\x0e\x94\x68\x8a\xd3\x54\x5b\x32\xdd\x73\x66\xb6\xb0\x47\xe8\xd1\xd3\xd5\x65\x99\x7b\x23\x6e\x7f\x75\x96\xc5\xf8\xd7\xc1\xc1\x1b\xcf\x4a\x24\x46\x20\xcb\xd2\x1d\x55\x9a\x7c\x9b\x3f"}, {{0x70,0x74,0x56,0x86,0x11,0xa6,0x6d,0xfc,0xa8,0x30,0x7c,0xae,0x60,0x8b,0xb2,0x69,0x95,0x84,0x4d,0xf4,0x35,0xe5,0x30,0x0e,0x5b,0x4d,0x72,0x91,0xcc,0x22,0x90,0x7f,},{0xdd,0xab,0xdd,0xd1,0x5e,0xaf,0x83,0x11,0x5d,0xdd,0x06,0x5d,0x7e,0x22,0x0b,0x1e,0xfc,0x26,0x2a,0x61,0xc5,0x2e,0x91,0x43,0x47,0x44,0x2b,0xde,0x6d,0x00,0x25,0x06,},{0x7f,0x65,0x31,0x34,0xc0,0xb9,0x0f,0x44,0xa4,0x89,0xf0,0xb0,0x5f,0xc4,0x07,0x07,0xad,0x9f,0x13,0x98,0xf3,0x40,0xb4,0x47,0xa3,0xc9,0x86,0x1f,0x51,0x1c,0x9f,0x15,0x68,0x80,0x3b,0x76,0x84,0xa0,0x4a,0x89,0x8c,0x45,0x15,0x4d,0xd4,0x86,0xbd,0x50,0x75,0x89,0x98,0xe1,0x26,0x43,0x93,0x78,0xb3,0xf5,0x9f,0xf3,0x67,0x49,0x2a,0x0a,},"\x6c\x13\x74\x23\xea\xc7\x90\xb8\xe8\xe4\x18\xb2\x90\xe0\x57\x9c\x7b\x86\xb1\x4a\xed\x81\x8d\xe8\xce\x53\xce\xa3\xf3\x40\xa1\xa9\x53\x91\xf9\x84\x96\x8f\x2b\x42\x29\x28\x2a\x81\x61\xc0\x9a\xb1\x49\xcd\xac\xd6\x69\x70\xb4\x01\x3f\x52\xe5\xe6\x8e\xa8\xc9\xdb\x68\x5b\x2c\x53\x07\x35\x00\xe5\xb3\x5e\x29\xea\x0b\xa1\xf4\xd1\x59\xa5\x58\xd3\x61\xb0\x65\x16\x83\x6c\xf7\xb9\xea\x50\x1f\xa0\x50\x6b\x98\x5f\x03\x6a\x82\xd9\xe0\x84\x48\x9d\x3b\xfe\xd3\x40\x93\xe2\xd6\xd9\xed\xf5\x57\x85\xed\x35\xa9\x0c\xe5\x6c\x76\x16\x86\xcc\x3e\xa1\xa2\xc7\x6a\xda\x5e\xc8\xc1\x45\xd8\x18\xb0\x47\xcc\x51\x6e\xec\x5d\x2d\x6a\x93\xa5\x55\x92\xd8\x92\xe3\xd5\xcd\x10\xc2\x50\xc0\x4b\x04\x9b\x38\xfc\x7e\xc0\xf3\x9a\xba\x15\x82\x40\x07\x33\x6c\x2b\x0f\x7f\x81\xd6\x4d\x5c\xa3\xe2\x9d\x6f\xda\x4c\x23\xd9\xba\x65\xd9\xfe\x3c\xb4\xe0\x39\x13\x69\x72\x87\xb4\x6a\x0b\x1f\xcc\xd2\x62\x4e\x39\x7a\xe9\x5c\x52\x54\xbc\xd8\x8d\x2c\x7c\x8f\x70\xfd\xc8\x17\x3f\x64\xc1\xde\x32\x28\x1a\xb4\x18\x46\x93\xb4\x8a\x34\x9e\x67\x82\xbc\x89\x92\xb4\x3c\x7d\xe7\xcb\x9d\x33\x92\x9b\xf9\x53\x06\xc2\xaf\x7e\x93\x8d\x84\x86\xb3\x86\xf9\xfd\x3f\x0f\x71\x61\xe0\xe6\x86\x2d\x4f\x92\x81\x44\x68\x65\xa1\xc9\xbe\x24\x60\xef\xbc\x20\x15\x1b\x06\xe7\x9d\x01\x46\x17\xd0\x30\x0e\x67\x1d\x48\x76\x74\x58\x59\x66\x25\xb7\x6d\xff\xc5\x58\xaa\x9b\x40\x61\x21\x96\xec\x82\x7e\x1c\x6f\xff\x51\x8f\xb7\xad\x4b\xf8\xc4\x6f\xcb\x27\x88\x85\xaa\x49\x1b\x77\xa2\x89\x95\xcf\xb9\xd7\x96\x40\xaa\xd1\x74\xc6\xdf\x43\x93\x8e\x3f\x13\x85\x20\x5c\x54\x59\x5b\x33\xde\xde\x50\x14\x37\x46\xa1\x70\x5e\x7e\x0b\x69\xaf\x4a\x26\xc3\xb7\x65\x15\x05\x18\x92\xb1\x5c\xa6\xe4\x8c\x3d\x91\xfb\xc7\x5e\x8f\xe4\xa0\xfe\x8e\xd2\xc2\x6c\x10\x73\xbe\xb7\x0e\xa3\x8d\x09\x27\x02\x92\x78\x40\x67\x55\xae\x6e\x11\xda\x37\x86\x53\x64\x95\x15\xe0\x08\x5b\x5e\xa7\xdb\x32\x49\x20\x8e\x33\xa6\xc8\xb6\xae\x8c\xd8\x0c\x9b\xd6\xb9\x83\xe7\x3e\x9b\x91\xdb\xec\x09\x1f\xae\x99\x5f\x80\x32\x42\x7e\xde\xc0\x2c\xad\x90\x55\xeb\x8b\x7d\xbc\xfa\x80\xd4\xf6\x4f\x57\x27\xa1\x52\xf1\x1c\x47\xe5\x2d\x75\x3a\x57\xb6\xe5\xfd\xdf\x77\x4c\xea\x4d\xa9\x10\x02\x68\x19\xc4\x1e\x32\xb4\xf1\x99\x72\x7e\x23\xc5\x4a\xb5\xd7\x01\x42\xb8\x54\xa2\x7b\x04\xe6\x4c\xf4\x4a\xf2\xa8\x99\x5e\x12\x00\xbd\x11\x7c\x7a\x16\x74\xed\xef\x59\xbc\x53\xf7\x3a\xda\xf6\x38\xe0\x77\x3b\x85\xb5\x63\x34\xaf\xf6\xe1\x17\x43\xe3\xa3\xd3\x61\x4a\xa8\xa3\x75\xb3\x78\x1e\xc8\x14\xcc\x08\xe7\x1e\xfa\x78\x18\x51\x9c\xb2\x4a\xf8\x2c\x33\x1d\xfd\x6a\xc7\x8e\xc1\x7f\xd7\x17\x4b\x61\x02\x1e\x8c\xf9\x01\xa2\xaa\xa6\xad\xbc\x90\x2a\x91\x6b\x2a\x2f\x4f\x79\xe5\x51\x50\x1f\xbf\x01\xdf\x6b\x85\x18\x50\x4c\x1e\x94\x64\x69\x38\xbe\xd1\xa8\x50\x9c\x2a\x38\xfb\x6a\x79\x8a\x78\x58\xf4\x09\xb0\xf2\xfb\x9b\x3f\x48\x17\xe5\x68\xc5\x2d\x9a\xbf\xe2\x16\x8c\xc3\x65\x0f\xc4\x3e\x0f\x99\x75\xfe\x29\xe3\x3a\xed\x1a\x7b\xf3\x0d\x86\x31\x15\x07\x90\x65\x0a\x3c\xb7\x8c\x36\x8f\x1a\xea\x9a\xc6\x0c\x5e\xeb\x96\x9a\x45\xf8\x4a\xa3\x73\x66\xa8\x39\x77\x19\x0f\x41\xae\x42\x1e\x0c\x46\xfd\xa3\xfa\x01\xb9\x26\xfc\xef\x82\x24\xfd\xa3\x6d\xf4\xf8\xa8\x77\x01\xfe\x79\xfe\x06\x28\xef\x0c\xc0\x2d\xf2\xbd\x78\x32\x07\xc7\xdb\x87\x11\x9a\x03\x69\xfe\x16\xee\xb3\x8f\xdc\x9f\xb3\x5d\x9e\x19\x5f\xe1\x4f\x8c\x10\x38\x20\x8a\xb9\x77\x00\xaf\x79\xf2\xe2\xe0\x54\x96\x83\x02\x07\xc7\xda\x8d\xbe\x8e\x9b\xb7\x3b\xc4\x71\xa4\x3f\x1b\xe6\x50\xfa\x92\x81\x9a\xeb\x5d\xc7\xee\xd7\xee\xd8\x17\x12\x70\xd2\x19\x25\x7d\x19\x61\x0b\x89\xd2\xd6\x2d\x3f\x5b\x64\x8e\x13\x9e\xed\xf1\xff\x74\xbe\x01\xa5\xef\x1d\x95\xf8\x12\x92\x26\x01\xee\x92\x51\x51\x57\xc4\xec\xad\xfa\x3e\xef\x9f\x2a\x67\x7c\x00\x3c\xa4\xab\x9b\x2c\x45\x47\x2c\xe5\x5e\x18\xf4\x0a\x21\xfe\x1b\x0d\x45\xb5\x0b\x50\xc5\x2a\x0b\x1a\x5d\x7c\x37\xd8\xeb\xc1\x5e\x02\x05\x84\xd9\xed\xd7\xb5\x65\x05\xf8\x20\x78\xe0\xf8\x99\x38\x91\x35\x01\x4c\x86\xd1\xe2\xed\x49\xf9\xcd\x31\x90\x76\x94\x35\x53\xa3\x12\xae\x05\xab\x33\x35\x26\xe1\x36\x71\x4f\x09\xa4\x02\xb3\xc8"}, {{0x7d,0x7c,0xa8,0xe8,0xd3,0xb8,0x43,0x44,0xa5,0xe4,0xde,0xa0,0x8b,0x33,0x8d,0x8f,0xaa,0x5f,0xfc,0x11,0x9c,0xe5,0x66,0xef,0x65,0x6f,0x0f,0x45,0x84,0x77,0x5b,0x21,},{0x0b,0xde,0x34,0xb7,0x46,0xd2,0xc5,0x49,0x08,0x53,0x06,0x4d,0x48,0xc6,0xb4,0xc1,0xcb,0xbc,0x3e,0xe7,0xbe,0xff,0x5e,0x8f,0x68,0x4c,0x12,0x0f,0x31,0x5d,0x7e,0x4e,},{0xd0,0xc3,0xe2,0x48,0xa8,0xcb,0x2d,0xdc,0x7e,0x9f,0x21,0xc9,0xc5,0xb0,0x09,0xf7,0x0e,0xa2,0x9d,0xa6,0x89,0x7c,0xd9,0x2c,0x26,0x0f,0x04,0x7e,0xd6,0x8a,0xa1,0xc8,0xb9,0x65,0x7f,0x9d,0x82,0x6e,0x88,0xf4,0xa5,0x12,0xc5,0x00,0x3b,0xe6,0x40,0x68,0x80,0x74,0x12,0x63,0xae,0x7c,0xe6,0x86,0x0e,0xfe,0x73,0xad,0x54,0xd4,0x82,0x04,},"\x0b\x72\x70\x75\x34\x5d\x61\x9f\x5c\xdc\x7f\xc4\xc4\x3c\xdc\x19\x10\x58\x11\xd9\x5d\x06\x9f\x81\xc0\xa6\x2f\xe1\xe1\x17\x8c\xf1\xc3\x5d\xb0\x5e\x2d\xe8\x7d\x11\xae\x1a\x6f\x53\xef\x38\xb3\x9b\xf4\xed\x8f\xbf\x56\xef\x01\x7a\x1d\x3c\x15\xb6\x4f\xe4\xb2\x61\x0b\xf6\x9b\xd1\x9a\xc7\xaf\xd4\x6a\x2b\x87\xb4\x88\xb6\xc7\x8a\xd4\x56\x81\x1c\x1d\xd6\xbd\x4a\x6b\x5d\xa6\x98\x73\x9f\xd1\xa1\x4c\xeb\x9f\x27\xf1\x24\xb6\x9f\x6b\xd1\x6d\xe5\x53\x7a\xad\x80\x68\x1c\x56\x33\x58\x03\x94\xda\x3b\x84\xe9\xb7\xa5\x5e\xba\xb8\x52\x2d\x2d\x6b\xf1\xaa\x4e\x7b\x15\x9c\xbf\x4e\x20\xb5\x0b\xfe\x9c\x71\x1a\xa0\x47\x11\x9f\x1d\xad\x87\x49\x26\x0b\x87\x63\x9e\x9c\x14\x1d\xef\x62\x02\x6a\x99\x03\x73\xdc\xfd\x99\xf7\x7b\x0f\x5e\xa6\xad\xfd\x8f\x59\x4b\x9c\xe4\x10\x64\xa5\xed\x30\x7b\xf2\xd8\xd1\x73\x70\x49\x8a\xd7\xf4\x5f\x9c\x4d\xd2\x6c\x42\x0f\x45\x0f\x53\x62\x3b\xb6\xd7\xf3\xf4\x6a\x14\x9d\x8f\x13\x5b\xc2\x91\x33\x10\xfb\x8f\x90\x43\xd0\x99\x27\x8b\xbe\xba\x39\x17\x9f\xa3\x67\xb0\x16\x73\xe1\xc9\x53\xef\xfd\x2c\xae\xa7\x31\x1c\x47\xc0\x37\x27\x44\x09\x5b\x1c\x8f\x90\xee\xf5\xf1\x92\x9d\xb1\x99\x6c\xd5\x84\xf6\x15\xd5\x6f\xae\x3a\xec\xac\x3e\xe8\x8b\xd0\xb2\x96\xf4\x49\xcc\x27\x13\xc5\x2d\xa6\x95\x24\x8f\xaa\x8e\x38\x9b\x05\xa0\xbc\xac\x69\xdc\xe9\x71\x97\x23\x19\x4f\x43\x3b\x02\x97\xeb\x08\x59\x01\x9f\x14\x1a\x20\x7c\xe8\xcc\xb5\x98\x82\xca\xa6\xe1\x8f\x0b\x43\xbd\xdd\xb9\x0a\x0a\x85\xff\xd5\x77\xd6\x39\x4a\x1d\x80\x48\x94\x10\xf9\x2a\xfb\x85\xba\x50\x6a\xa9\xf3\xf4\x27\x44\x5d\x21\x22\x4b\x9c\xb0\x46\xc0\x5f\x1b\xac\xd7\xb7\x49\xfb\x7b\x10\x24\xd0\x92\xe4\xee\x4b\x30\xa4\x6e\xdf\x71\x84\x70\xc9\x94\x91\xc6\x8f\x48\x79\xd6\x2b\xfc\xe7\x04\x6d\x81\x38\xcb\xb9\xe7\x21\x29\x99\xa4\x49\x8b\x45\x5f\xc9\x0a\xc2\x83\xe9\x35\xde\x04\xdf\x6f\xc9\x99\xe4\x43\x4b\xe1\x10\x63\xd6\xe4\xee\x9e\x09\x6a\x87\xbc\x71\x6d\x2c\x81\x99\x16\xc3\x7a\x4e\x62\x98\xc4\x99\x45\x36\x6e\xc3\xf5\x00\x72\x0b\x06\xdc\x99\xd3\xd8\xac\x30\x3e\x6c\x26\x4e\x28\xa7\xc2\xd4\x19\xec\x62\x2a\x97\xa7\x11\x54\x4f\xb1\xf4\x73\x5b\x11\xf8\xbb\x1d\x7e\x2c\x81\x6a\x15\x62\x87\xb4\xcc\x0c\x65\xaa\xa2\x80\xb8\x37\x73\x7f\x0a\x84\xe3\x6d\xe2\xdf\x2f\xc3\xa5\x0d\xf9\x80\x91\x8f\xb9\xe5\x83\x4b\x42\xac\x0e\x0c\x72\x78\xd7\xfe\x8d\xb4\xdb\xde\xca\x01\x41\xd5\xfe\xf5\xdc\x61\x51\xf8\x7b\x86\x34\xc2\x41\xa8\xfa\x0a\x82\x71\x78\x99\x77\x3a\xe8\x9f\x53\x78\x90\xb9\x15\x5a\x7a\x05\xbc\xe4\x78\x66\xec\x20\x28\xa4\x78\x98\xd4\x85\x82\x3a\x2e\x99\x23\x19\x68\x0e\xb6\x99\xb0\xdd\x53\x58\xf5\x46\xfc\x53\x7c\x73\xd3\xa4\xb2\x23\xa0\x94\x15\x18\xb6\xd1\xe6\x6b\x27\x67\x6c\x1b\x1f\xc7\x6a\x08\x32\x05\x24\xa7\x2e\x29\x7f\xce\x17\xaa\x80\xd8\xea\x7b\x38\x8a\x55\x16\x8e\x7d\xad\xb8\x36\xe9\xde\xe7\x07\xed\x25\xc0\xee\x4d\xb2\x5b\xee\x3c\x48\x5b\x39\x64\x92\x04\xef\xaf\x28\x20\xb2\x73\x63\x68\xfc\x77\x3c\xe0\x90\xc3\x85\x37\x80\x02\xc4\x71\xb0\x94\x79\x5c\xb2\x66\xd3\x9e\xb7\x58\x0d\x70\x1b\xe4\xc8\x91\x6f\x6b\x38\xbf\xe2\x5f\xdf\x36\xd6\xc4\xad\xaf\xa9\xae\x98\x64\xc5\x7b\xb7\x37\xb4\x95\x06\xed\x38\xd6\x2d\xe6\x0c\xc0\x59\x9e\xc6\xbb\x1a\xcf\x24\xb1\xd3\x7d\x60\xef\xde\xb7\xd9\x42\xc5\x36\x03\xa2\xf0\x47\x6e\x95\x12\xc9\x38\xb2\x8d\x49\x5a\x6f\x26\xa9\x07\xc3\x96\xb8\x41\xae\xdd\x8e\x14\xac\x44\x7b\x49\x5d\xf1\xf6\x76\xda\xcc\xd5\xa7\x40\xc0\x42\xf5\x77\x2b\x7d\xb1\x7f\x4f\x1a\x3a\x1c\x8e\x7c\x48\x83\x70\xe7\x36\xb5\x1e\x69\x0f\xd2\xdd\xcb\x5a\xa6\x19\x57\xa7\xc7\x97\x5a\xcb\x2d\xcb\x91\x5d\x07\x4d\x74\x42\x79\xea\x1c\x41\x69\xf8\x68\x87\x3a\xc5\xc2\x08\x90\x16\x2c\x1d\xf9\x65\x64\x19\x97\x5a\x43\xd3\x19\x8e\x18\xc3\x09\xa1\xeb\x7c\x1d\x87\x87\x3f\xb1\x5c\x6d\xa4\x7f\x54\x8a\x01\xf6\x9b\xda\xb9\xc3\x9e\xf0\x0d\x41\x8a\x6f\x61\x9d\xd7\x3d\x7d\xb4\x5c\xbb\x6a\xd2\x25\xa2\xde\x78\x7b\xa7\x77\xbc\x73\xd2\x8f\xc3\x04\xf1\x00\x09\xf4\x02\x2c\x2c\xf8\x4d\xe0\x08\xd7\x0f\xcd\xc8\xba\x7f\x10\x7c\x36\x98\x59\xe9\xc9\x0c\xa8\xa3\x93\xb5\x53\xf2\x66\x05\xff\xd7\x23\x0c\x92\x14\x90\x70\x0f"}, {{0xd2,0x1f,0xdd,0x7b,0x10,0xe5,0x4a,0x8b,0x6b,0xe9,0x5a,0x02,0x24,0xad,0x70,0x66,0x4d,0xd9,0x21,0x12,0xe2,0x68,0x3a,0x4f,0xd2,0x79,0xc4,0x07,0xdb,0x38,0x71,0xbb,},{0xf8,0x9c,0x27,0x2e,0x7d,0x1c,0xc9,0x3d,0x69,0xf6,0x94,0xde,0xc9,0xcc,0xe0,0x5a,0xc2,0x47,0x73,0x45,0x04,0x82,0x9c,0x56,0x99,0x74,0x13,0xc8,0x95,0x8b,0x93,0x30,},{0x6d,0x69,0xe8,0x3b,0x3e,0x7e,0xd5,0x5a,0x85,0xf9,0xfc,0x9d,0x25,0x19,0xda,0x0b,0x0a,0x1e,0xb4,0xda,0xae,0xe9,0x91,0xa6,0x65,0x1f,0x5c,0x89,0x19,0x0c,0x0d,0xe7,0x23,0x73,0xcd,0x98,0x9d,0x46,0xbe,0x13,0x67,0xf9,0xda,0xf1,0xb9,0x2f,0xed,0x3b,0x52,0xbb,0xa5,0x4a,0x1e,0x4c,0xca,0x5b,0xc8,0x72,0x6e,0xd0,0x7f,0x30,0x25,0x01,},"\xb8\x64\x4a\xdb\xef\x9c\x7c\xab\x91\x20\xac\xed\xc8\xe7\x5c\x43\x3d\x03\x6f\xfa\xe0\xf9\x55\xbe\x6a\x48\x8f\x1f\x42\x7a\x68\xa8\x90\x2d\x02\x6e\x63\xdd\x6c\x9b\xf9\xd9\x7d\xe7\x86\xb3\x1d\xd4\xf4\xc9\xa4\xf8\xa6\x22\xf1\xff\xc8\x4d\xa6\x96\x7c\xa7\x74\x33\xc3\x98\xf4\xd3\xf1\xc4\x43\x49\x89\xb7\xac\x9d\x0f\x3b\x1b\xe0\xc8\xb3\x52\x82\x4f\x4e\x7a\x08\x3f\x34\x2e\xc1\xbe\x1d\xa8\xfb\x75\x52\x42\xa6\x54\x88\x0e\xf2\x98\xf0\x59\x79\xff\x02\x6d\xdc\xc0\x44\x86\x0e\x67\x57\xa2\x9c\xfa\xa2\x22\xa3\x59\x7e\x38\xf1\x77\x99\x62\xa4\x1a\x4c\x8c\xe6\xa6\x5b\x87\x81\x99\xb4\xd8\x0f\x4a\x03\x90\xca\xc1\x9c\x22\x6e\xea\x4b\x60\x36\xe5\x7a\xd8\x30\xec\xfc\x00\x69\x3e\x26\x13\xd3\xed\xf4\x65\xfc\x8c\x4f\xa2\x93\xfd\x8c\xfc\x36\xdc\x8e\x37\xbc\xeb\xab\xec\x03\x49\xeb\xd8\x84\xe1\xb2\x8b\xce\x82\x4e\x0d\x55\xb6\xd0\x15\x38\x38\x01\x66\x8b\x34\xf5\xba\x72\x3d\x2a\xc0\xa2\x64\xfa\xb2\xc7\x28\x60\x8f\x16\x2d\xe0\x11\x79\x25\x9b\xe2\xcc\xb0\x81\x50\x02\xfd\xed\x8e\x0d\x78\xb0\x28\x07\x31\x3e\x91\x0e\xb3\xa7\x33\x7c\x53\x4e\x84\x6f\x9e\xe1\x55\x42\x6e\x4a\xef\x64\x36\x61\xb0\xed\xb4\x45\x96\xfd\xdc\xd0\xb3\xe8\x14\xc1\x37\x81\x7a\x42\x2b\xaa\x40\xc9\x05\x3d\x03\x86\xc6\xec\xdb\x58\x90\x52\x59\x47\x42\x67\x7c\x48\xdc\xfc\x8c\xd4\xa9\x36\x67\xed\x4d\x87\x64\x60\x01\xed\xa0\x79\xe8\xb9\x9d\x52\xba\x21\xc5\xec\x56\x69\xfe\xdf\x6f\x40\x44\x7a\x7f\xf8\x90\x1d\xb0\xef\x18\x47\xd3\xca\xcf\x01\x98\xa2\xf3\xbd\x7b\xcf\x2d\xd8\x11\xa0\x97\xfc\x5e\x51\x88\xb0\x3f\xdf\x54\xe5\x17\x63\x7a\x14\x50\x10\x00\xd0\xd3\x55\x16\xca\xf0\x69\x94\x02\xb4\x8f\x8d\x8c\xc3\xaf\xb1\x7a\x56\x13\x2d\x08\x23\x70\x35\xa0\xc9\x54\x90\xbf\xe5\xd7\xb7\xfb\x40\x17\x8f\x28\x1e\x4d\x87\x2e\x47\xa0\xe9\x55\xce\x97\x36\xf3\xc3\x33\xa6\xad\xf5\x0a\xd3\x19\x94\xeb\x9f\x45\x32\x7f\xac\xc8\xc5\xd1\x13\xfa\xd4\x71\x3f\xe7\xf1\x98\x01\x0d\x42\x04\x6b\xbf\xe6\x8b\x0d\xaa\x79\xdc\xb8\x75\x59\x29\xbe\x92\xf9\xca\xa1\x50\xdf\xbd\xe3\xfc\x9e\x39\x2b\x2b\x70\x1c\x30\x21\xc2\x40\xe4\x67\x9d\xe4\x11\x24\xb1\x88\x8e\x5d\xb5\xa8\x3d\x05\xce\xaf\x49\xeb\x44\x0d\xc4\x50\x26\xd4\x50\xbc\x98\x4b\x8d\x6f\x02\x85\x0e\xcb\x57\x0e\xee\x0a\x38\x19\xb1\x2b\xc2\x63\x67\xb5\xb9\x8e\x1b\x14\x1c\x9b\x0a\x96\x90\xea\x4a\x37\x00\xda\xd1\x23\x95\xf9\x75\xd1\x1c\xd7\x7f\x96\x36\x88\x31\xf2\x1f\x4e\x96\x8c\xc5\xba\x9e\xf8\x24\x74\x03\x8b\xc7\xaa\x26\x12\x2d\x21\x8b\x74\x30\x41\x50\x6a\xeb\xbd\x1f\x98\x79\x59\xfd\x16\x0d\x6e\xb7\xd5\x8d\x4f\x57\x6f\x8c\x0c\xa8\xaf\x86\x8e\x39\xb5\xea\x87\x20\x39\x37\xe0\x30\x8a\xcb\xea\xe9\x1e\x10\x60\x7e\x44\xe8\xab\x49\x5b\xc0\x1d\xd5\x73\xfb\xad\xc9\x44\x79\xff\x92\x08\x2c\x7b\xb7\x51\x34\x79\xc7\x0f\x04\x07\x76\x90\x25\xd3\x4d\x72\x14\x0c\x25\xd8\x21\xf0\x34\xa3\x98\x51\xa9\x3c\x62\x3b\x71\xc9\x40\x0e\x94\x26\x39\xf2\x8b\xbd\x03\x2e\x1d\x8d\x3c\x05\x9f\x7c\x2c\xd3\x1d\x74\x76\x46\x2d\x27\x76\x03\x5d\x07\x88\x02\x02\xdb\xfe\x9e\x07\xd1\x54\x62\x2d\x7a\xc6\x17\x5a\x5a\xfa\x79\xfe\xd4\xdc\xc1\x37\x12\x62\x0c\x41\x99\x4e\x11\xd9\x24\x30\x8f\xb2\xff\x3a\x1e\xda\x44\xc7\x61\xbc\x73\x6f\x34\x51\x22\xf0\x2a\x40\xae\x6f\x7d\xbd\x03\xd9\xfe\x96\xee\x3d\x7a\x3b\x4a\x5e\xef\xbf\xcc\x56\xdc\x42\xef\x27\xbd\x80\x85\x17\x60\x38\xb9\xeb\xae\x63\xaa\x75\x03\x52\x75\xec\x34\xe4\x18\x57\x39\xd6\x36\x24\x67\x70\xac\xcc\xc6\xdc\x62\x0e\x2f\xc9\x15\x6f\xa9\x48\x3e\x0d\x9c\xae\x0e\x8c\x46\x39\x48\xa3\xd9\x7a\xe8\xdd\xa5\x96\x6c\x88\xf0\x70\x93\x29\x2c\xce\x22\xbb\xda\x06\x2b\xaa\xfa\x7f\xe8\x4d\x0b\xa2\xd2\xdd\x29\x5b\x23\x45\x8b\xca\xeb\x2e\xf7\x42\xa2\xed\x1c\x83\x44\x83\xcd\x70\x93\x85\xaf\xea\xdc\xbc\x0a\x9c\x6a\x4f\x38\x7b\xab\xf7\xe3\xdc\x36\xc8\x10\xdb\x20\x9b\xeb\x66\xc8\x66\x64\x04\xc6\x61\xdf\xe9\xd3\x2c\x4c\x08\xaf\xc6\xf3\xb1\x25\x7d\x64\x84\xa7\x55\xf5\xac\x70\x1e\xb1\x3f\x87\x76\x3f\xee\x33\x0f\xfa\x04\x22\xcd\x80\xa9\x20\x38\xc6\xf4\x52\x92\xbd\xee\x5f\x89\xe9\x4c\x7a\x65\x21\x97\xfc\x19\x06\xb4\x82\x58\x37\x24\x49\xb1\x08\x1c\x6b\x97\x13\x4c\x43\xc8\x9e\xe2"}, {{0xd3,0x36,0xfd,0x84,0x08,0x19,0x6d,0x22,0xfb,0x69,0x8e,0xb2,0x5b,0x76,0x54,0xfd,0xa4,0x6f,0x5d,0xe4,0xc9,0xb4,0xd0,0x49,0x50,0xc3,0x98,0xb5,0x9a,0x44,0x29,0x0a,},{0xf3,0xcd,0x96,0x34,0x7c,0xea,0x63,0xe5,0x00,0xa4,0xc9,0x2c,0x3b,0xf2,0x15,0x66,0x2d,0xd0,0x40,0x07,0x84,0xdb,0xf8,0xb5,0x95,0xdd,0x3d,0x39,0x5f,0x90,0xcc,0x12,},{0xaf,0x7e,0x2d,0xf7,0x52,0x9f,0xd1,0x8d,0x1b,0x21,0xb8,0xfd,0x4c,0x06,0x81,0x50,0x59,0x18,0xe2,0x51,0x14,0x34,0xfe,0x4e,0x49,0x54,0xe7,0x43,0xc1,0xcf,0xa4,0x5e,0x41,0x09,0xd3,0x6c,0x3e,0xec,0xf2,0xe2,0x5d,0x20,0x9b,0x9b,0x5d,0x25,0xf7,0xcb,0xc3,0x80,0x29,0x6d,0x64,0x77,0x52,0xe3,0x0d,0x3b,0xea,0x3b,0x92,0x9b,0x09,0x03,},"\xfb\x49\xc1\x9b\xc4\x44\x4c\x28\xeb\x26\x25\xf3\x1d\x99\x6d\x5e\x36\xc5\x7f\xa6\xfd\xd7\x72\xe6\x7b\x71\x99\xce\xc6\x7e\xda\x54\x51\x71\x2d\xf7\xa6\x9d\xbb\xd5\x6e\x7c\x39\x87\x96\xb2\x00\x1d\xef\x65\x1c\x4b\x9c\x05\xee\x31\xd9\x56\x79\x53\x5c\x81\x2a\x37\xd3\x1d\xdb\x30\x73\x19\x9c\xd7\x04\xff\x7c\xa2\x98\x1f\x7b\x9c\x92\x7a\x7f\x7d\x77\x6f\xb6\xf6\x09\xf7\x27\xe6\xea\x70\x9c\xe7\xf4\x3a\x60\x79\x35\x04\x16\x9a\x89\x05\xd9\xb2\x31\x09\xf0\xd8\x67\x96\x6a\xa3\xe3\x00\xc7\xe1\x1d\xde\xdb\x9c\xc1\x17\xb9\x04\xf6\x29\x27\xe4\x8e\x4d\x73\xfe\x1a\x6c\xec\xcc\x4c\xeb\x08\xe6\x4a\xb5\x5f\x25\xc9\x82\x16\xce\xc9\x37\x60\x8a\xd7\x93\x14\x69\x98\xf1\x4c\x29\x85\xe6\xc2\x91\x0d\xf7\xb1\x38\x8f\x9d\xd8\x63\xf1\xe4\xd7\xd1\x62\x14\x79\xb8\x51\x2c\xdb\x34\xe6\x73\xeb\x02\xa4\x89\x34\xe3\x9c\x2d\x18\xd7\x0f\x96\x6d\x67\x6a\x2b\xd7\x5d\xb5\x43\xd2\x5c\x5d\xcd\xc3\xef\x3b\x8b\xc8\x20\x18\x48\xc3\x09\x61\xe9\x15\xd9\x68\xbd\xc3\x19\x46\xb0\xd1\x8e\xde\x7c\xb0\x16\x6d\xbe\x1f\xfe\xff\x94\x39\xc9\xc3\x40\x4a\xf6\x01\x6c\x73\xed\xeb\x25\x3d\x93\xf5\x62\xa1\xa6\xcd\xd5\x78\x98\xa9\xb3\x42\x25\x87\xd5\xf5\x6a\xf3\xd0\x6b\x3f\x6c\x25\x75\x1f\x44\x46\x0f\xb3\x29\x96\x56\xdc\x11\x22\x7e\xf4\x83\x7a\xab\xdd\xee\x40\x0f\xa5\x3f\x69\xe5\xce\xd0\x53\xc7\x6d\xce\xcd\xf0\xad\xc9\xef\x80\xf4\xb3\x30\x54\x2f\xf1\xfa\x2d\xf0\xb8\xd4\x3c\xd1\xc3\x11\xb1\xb9\x95\x5c\x63\x2c\x8e\x5f\x04\x91\x93\x1c\x04\xde\x43\x4d\xf8\xf7\xa3\x94\xe5\xfe\xf0\x16\xdb\x2e\xb7\xc8\x7b\x2a\xc7\xa4\xa7\x30\x43\xbd\x7f\x98\xad\x0a\x4d\x45\x3a\xbf\xb0\xbe\x8b\xe4\xcb\x14\x57\x42\xaa\x56\xaa\x5e\xf2\xdf\xf1\x22\x30\xa5\x10\xe3\xb7\xf8\x2f\x78\x47\x70\x0e\xee\xa5\x90\x5b\x02\x89\x69\x6c\x4c\x14\x2b\xf3\x4b\xcf\x81\xa9\x62\xd7\x5b\x8d\x09\x10\x55\x73\x37\x79\x33\x5b\x7f\xd4\x7a\x20\xd1\x7c\x94\x8a\xb7\x32\x94\x78\x32\x67\x43\x71\xe2\x2e\x71\x11\x34\xf5\xc9\x19\x79\x23\x57\xf7\x9b\xf7\x0c\x44\x70\x78\x75\x28\x43\x4f\xc0\xb4\xca\x09\x3e\xe9\x25\x43\x42\x0d\x1c\xa8\x11\x24\xf5\x58\x53\x17\xe2\x50\x82\x1a\x4f\x3d\x8c\xe0\xf9\x19\xde\x9f\xbf\x01\x27\x08\x7e\x67\x69\x03\xf6\xcb\x39\x02\x5b\xcc\x73\xa0\x76\x29\x54\xb7\x2e\x66\xa6\xbe\x9b\x96\xc9\x7b\x6f\x60\x30\xbf\x5c\xa0\xbc\x27\x27\xa9\xa1\x79\xcf\x9d\x94\x05\xf3\xfe\x18\xf3\x49\x23\x89\x07\x9a\x5b\x65\xbc\xb1\x3a\x0d\x5e\xf4\x1c\x2c\xd9\x7e\x70\x2c\xee\x4a\x2f\xeb\x1e\x67\x02\xbd\x4c\x63\xfe\x0a\x4a\xe9\x94\xc4\x28\x7a\x83\x7b\xc3\xf6\x4c\x2d\x89\x88\x57\xcd\xb3\x2a\xcd\x4b\xd1\x33\x67\x6e\x51\xf7\x7b\xc7\x11\x0e\x3c\xe5\x2d\x92\x04\xfd\x26\x91\xa6\xd3\x70\x78\xf6\x8e\x7b\xce\xf3\x0f\xc9\xc4\x83\x98\x58\x22\xb6\x61\x11\x92\x38\xe4\x0f\x9c\xfd\xca\xbe\xf2\xd7\xb1\x6b\x05\x9a\xb2\x4a\xdc\x05\x00\x37\x12\xbb\xb1\x28\x09\x6e\x37\xf9\x1b\xc4\xc5\xc8\x15\x08\xbe\x27\xfa\x0b\x84\x94\x0b\xe3\x6b\xce\xd2\xe6\x5c\xd3\x6b\x39\xfb\xdc\x5e\xa6\x86\x14\x15\x92\x28\xca\x65\xc5\xd8\x40\x7b\xaf\x66\x3b\x52\x8e\x7d\x87\x73\x4c\x7b\xc7\x7d\xc8\x43\x1a\x1d\xd6\x87\x3c\xfd\xdf\xc3\xe7\x57\xd9\xad\x1f\xed\xd3\xc7\x98\xf1\xfe\x60\xe7\x15\xee\x48\xa6\xbc\xbb\x13\xb6\x16\xa8\x9a\x38\xe3\x36\x48\x9d\x3d\x6c\xcb\x72\x69\x14\x11\x2a\x1b\xc5\xd9\x77\xc9\xb2\xa3\xfa\xc1\x07\xad\x09\x4b\x03\x8a\xb7\x54\x68\x26\x3c\x34\xbd\xa8\x17\xc0\x56\xe0\x7a\x6c\x56\x69\x7c\xb6\x4a\x0b\x1f\x96\x6f\x6d\xe0\xbb\x1c\x0a\x71\xc8\xa5\xfe\x13\x3b\xa2\x03\x6d\x24\xda\xcc\xad\x3f\xa0\x3b\x39\xcd\x27\xf8\x32\x75\x27\x51\x05\x5a\x81\x55\x91\x3d\x04\x0f\x51\xda\xe7\x8d\x71\x94\x6c\xa0\x4d\x83\xc7\xc8\x94\xc2\x80\xaa\xec\x28\x55\x43\xe5\xfd\x5e\x32\x7a\xcc\xca\x9a\xbe\xf1\x56\xa1\x3b\x95\x71\x44\x6b\xd8\x00\x7f\xf9\x2d\xbc\x0f\xba\xf2\x3a\x94\x41\xb5\x3c\x1c\xd7\x40\xc3\x4c\x28\x29\x29\x10\x1a\xd2\xea\x8b\x85\xd7\x00\x52\x99\x1b\x77\x4e\x92\xff\x75\xcc\x85\x11\x3e\x09\x00\xb5\x1b\x86\x3e\x1f\x2a\xda\xab\x2d\xbc\xf4\x6a\xf4\x79\xea\x24\x8e\xc2\x88\x9a\xfb\xfe\x73\x74\x08\x39\x3a\x2b\x1b\x33\x01\xf6\x5c\x1f\xac\x8b\x67\x67\x95\xab\x5b\xf4\x47\xf0\x5e\x0d\xaf\x67\x76"}, {{0x65,0x73,0x22,0x78,0x41,0xf6,0xf9,0x28,0x31,0x14,0x6c,0x44,0xc0,0xe4,0x80,0xcd,0xf5,0x44,0xbb,0x87,0x65,0x52,0xcc,0x5f,0x9d,0x42,0xf1,0x5b,0xdc,0xc0,0x44,0xb8,},{0x19,0x22,0x57,0xa5,0x4c,0xe5,0xd0,0x4c,0x19,0x43,0x9f,0xdc,0x9e,0xde,0x18,0xec,0x85,0x6e,0x29,0x87,0x0e,0x24,0xd3,0x73,0x1f,0xe2,0x22,0x47,0x99,0x94,0x9b,0x7e,},{0x53,0x8e,0xac,0xe4,0x93,0xde,0x53,0x38,0x4b,0x1e,0x98,0x5b,0xb9,0x07,0xc0,0x94,0xf8,0x16,0x84,0x30,0xda,0xb1,0x4d,0x37,0x79,0x1b,0xe6,0xe7,0x8f,0xf3,0xf5,0xa3,0x06,0xec,0x70,0xdc,0xac,0x86,0xd9,0x93,0xa4,0xc1,0xf7,0x58,0x50,0x78,0x6d,0x79,0x5f,0x02,0x2b,0x79,0xbe,0x6a,0x54,0x77,0x69,0xe4,0x15,0x69,0xc5,0xa9,0xa3,0x0a,},"\x6e\x7c\x6b\x12\x2a\xb3\x6b\xd1\x35\xf6\x9e\x2b\x85\xe7\xfc\xce\xfb\x07\x2c\x12\xcf\x08\x8a\x32\x29\xd8\x76\xef\xf5\x32\x38\x9f\x05\x77\x11\x6f\x7a\xf2\x9f\x11\x95\xe3\x82\x88\x39\x38\x13\x80\x46\x71\x78\xb2\x29\xc5\xa1\x8d\x7c\x49\x43\xec\x97\x0d\xd1\x8b\xce\x72\x3b\xd0\xca\x91\xff\xa9\x55\x63\x54\x6a\x32\x4f\xe0\xb9\xbf\x6c\x04\x55\xd4\x27\x60\x39\xe8\xd2\x91\xfc\x72\x76\xaa\x55\xa1\xcd\x3e\xa0\x52\x82\x65\x4a\x7f\x97\x00\xad\xcb\xc7\x80\x77\xc5\xdd\x0f\xc8\x6e\xce\xd4\x8f\x4a\x60\xcc\xb7\x6b\xfb\x8b\x45\x62\xba\xc2\x2a\x02\xd1\x9e\x44\x89\x39\x4a\xb9\x71\x9f\xc1\x44\xf5\xdb\x2e\xf0\x39\xb3\x7f\x3b\x51\xd1\xd6\x57\xa0\xcf\x83\x5d\x71\xf1\xa4\xaf\x01\xeb\x9f\xd8\x85\xc6\x04\xa6\x24\xcb\xe9\x10\xbf\xde\x09\x3a\xd3\xf0\xcb\xfd\x9a\x48\x30\x73\x29\xd4\x42\x34\xbd\x01\x19\x1d\x56\xe5\x22\xd7\x2b\x54\xe1\xfe\x47\x33\xda\x3a\xec\x68\x27\xea\xb3\x55\x48\x98\xe0\x3e\x57\x7b\x4e\x7b\x9d\xd3\xf3\x08\xe6\x16\x80\x8d\x02\x94\x49\x9f\x28\x86\x29\x5e\x54\xc3\x60\x19\x9c\xa8\x3a\x83\xff\x46\x19\x5e\xa3\xc4\x84\xa6\x68\x38\xd5\x1a\xcb\xe9\x61\x1e\xee\x03\x6a\xe2\x81\xc6\x79\x3c\xbd\x45\x1f\x92\x71\xfb\x5d\x25\xea\x7c\x18\x99\xab\x5d\x43\xed\x8b\x9d\x06\x7b\xc5\x6d\x8d\x4a\x15\xf1\xda\xb8\xd8\xd9\x5d\x1b\x17\xaf\x64\xcb\x18\xc1\x14\x75\x51\x14\x7a\xdd\xcb\xdd\x53\xfb\xcc\xd9\x02\x6f\x85\x55\x47\x13\x1b\xee\x95\x07\x16\x39\xf6\x49\xf2\xd0\x35\xa2\x5a\x3e\x42\xe3\x8e\x22\xbb\xf0\x38\x10\x6c\xe8\xbc\x4a\xd6\x76\x8a\xb9\x2c\xd5\x7a\xfa\xcd\x04\xee\x55\xcf\x07\x14\xb7\x68\x95\x2d\xac\x24\x0b\x1e\x9b\x28\x35\xec\xf7\xb0\xd6\xc4\x07\xc8\x25\x24\xa9\x23\xb9\xf5\x4d\x1b\x8f\x12\x56\x4a\x87\x21\x44\xef\xad\x3f\x3a\x7d\x23\x97\xcd\x12\x17\xdc\x5a\x9c\x96\xe4\x3b\x29\x60\xa8\x42\x5e\x97\xe0\x7a\x02\xb0\xda\xc9\x0f\x34\x6b\x91\xa3\x46\xa2\x3e\xd2\xbb\x7f\xe6\x91\x9c\x22\xdf\xf0\x3f\x62\xda\x7d\xba\x17\x6e\x8d\xdb\x22\xf3\xf3\xa6\x68\x89\x1d\x3f\x4e\x69\x54\x8d\x0a\xc4\xe7\x1e\x6d\x28\xed\x5a\x67\xab\x5a\xc6\x11\xd4\x60\xb6\x7a\x20\x1f\x4f\x56\xa5\x00\x3c\xa7\xa7\xd1\xcd\x1d\xb6\xc1\x00\x75\xb0\x92\x27\xcb\x8c\x5d\xc1\x66\x6f\x8b\xe7\x10\xb4\xb7\xbc\x2b\x95\xae\x60\xda\x4f\x64\x17\x9a\x50\xd2\xf8\x87\x44\x36\x15\x91\x67\x1d\x36\xb7\x29\x63\x15\xf6\x99\x64\x39\xad\x79\x82\x1d\xa8\xe7\x72\xdf\xbf\x55\xa9\x0d\x5d\x52\xef\x7d\x76\xb3\x5f\xfe\xbd\x42\xe3\x52\x5f\x45\x30\xc5\x4a\x0f\x23\xb4\xd0\x7c\x5f\x59\x74\x47\x0e\x89\x40\x4d\x17\x6e\xef\xf9\xef\x23\x33\x61\x96\x91\xc5\x9b\x7a\xad\xd4\x2c\x29\x6b\x1d\x0d\x32\x8d\x9a\x3b\xd5\x9a\x54\xbb\xa9\x3a\x0c\x1f\x1d\x62\x41\x8c\x21\x90\xc3\x81\x74\xb6\xab\xea\x02\xdb\x66\xe8\x18\x32\x0e\xc4\xb8\xba\xc1\xc1\x2f\x18\xf3\x0d\xad\xe2\x7e\x63\xc5\x8f\x9e\x7c\xaf\x4b\xf6\x9b\x26\x5a\x2f\x9d\x91\x80\x08\x61\xac\xf4\x79\xe6\x5e\xc1\x7e\x68\x05\x77\xe0\x58\xcb\x16\xc1\x09\xbc\xf9\xb2\x90\x9f\xce\x33\x61\xa2\xc2\x68\x5c\x10\xbe\x85\x40\xa1\x22\x2d\xb5\xec\xf0\xcc\x4d\x53\xa4\x21\x4b\x7b\xf6\x24\x8a\xdc\x3a\x86\x1e\x34\x84\x1a\x37\x79\xc4\x60\x46\xc5\x36\x4f\x1e\xa9\x1a\x78\xc9\x70\x0d\x46\x2e\xcf\xaa\xe3\x6b\xa7\x60\xc1\xbd\x6a\x23\x7c\x96\x1e\xdf\x40\x22\xce\xde\xfe\x5e\x93\x7b\xbe\xd7\x05\x1a\xe6\x1b\x96\xd0\x8b\x04\x87\xce\x05\x68\xff\x0d\x32\x74\x0b\xbd\x49\xad\x0d\xb8\x6e\x09\x10\x2a\xb2\x1a\x91\x56\x16\xe9\xdf\xdd\xc8\x1e\xbf\xb3\x6c\x90\x3e\x07\xa4\x0c\xd2\xdd\x11\x9f\xf4\xa5\x0b\x93\xfc\x6f\xdf\xc0\xf3\x6e\x59\xe0\x14\x8f\xcf\xf3\xfe\x8e\x2c\xd6\xd3\x0a\x9e\x4b\x8f\x01\x55\x67\xd1\x18\xb6\x27\x4e\x1e\xd7\x5b\x22\xe4\x4c\xa9\xd9\xdb\xfc\x16\x07\x42\xcf\xac\x58\x1e\x1a\x0b\xf5\xff\x33\x26\xbc\x5f\x78\x96\xb9\xca\x05\xa8\x11\xd5\x5e\x97\xc8\x34\xd3\x7a\x64\x95\xcc\x26\xcf\x44\x2b\xd2\xd9\x01\x29\x89\x5e\x9c\xc0\xed\x01\xe2\x15\x52\x93\xf4\x7a\x07\xab\x58\x80\xc6\xca\x29\xed\x44\xd9\xcc\xbc\xaa\xda\x7f\x3e\xb6\x04\x02\x18\x14\x88\x65\x4e\x04\x91\x15\x78\xb1\xaa\x9c\xdd\x4b\x86\xb0\xdd\x24\x50\xdf\x3a\x43\x08\x1e\x41\x10\xab\x58\xde\x76\x39\x24\xd3\xc8\x91\x52\xe9\x92\x93\xe6\x38\xf9\xac\xd8\xd7"}, {{0xa6,0x3c,0x1f,0x54,0xb2,0xca,0x05,0x8f,0xed,0x2e,0xe2,0x50,0x4b,0x98,0x3f,0xf3,0x3d,0x57,0x0a,0x9b,0xab,0xa5,0x83,0xc0,0x86,0xce,0xfe,0x19,0xf4,0x3e,0xc4,0x9d,},{0x32,0x9b,0x86,0x6b,0xca,0x41,0x94,0x29,0x7f,0xc1,0xad,0x5a,0x0e,0xba,0x0d,0xf9,0x56,0x69,0x9c,0x74,0xab,0x7d,0xa5,0xfa,0x54,0x62,0xbd,0x06,0x61,0x47,0x10,0x20,},{0x28,0x33,0x59,0xbe,0x41,0x29,0x0a,0x51,0xe6,0xa7,0xc5,0xd5,0x72,0x5c,0xa4,0xea,0x0a,0x68,0xf1,0x4a,0xca,0x14,0xb0,0xf0,0x25,0x66,0xde,0xe2,0x1f,0x49,0x0d,0xa3,0xc7,0xe9,0x5f,0x7a,0xb7,0x39,0xbc,0x35,0xa7,0xf4,0xf2,0x32,0xe9,0x71,0xaa,0x15,0x76,0x57,0xa6,0x33,0xeb,0xa0,0xe7,0x2d,0xc9,0x7a,0xf3,0x2c,0xdb,0x92,0x87,0x02,},"\x79\x1b\x86\xfd\x58\x77\x13\x47\x8f\x92\x34\xff\x30\xce\xfc\x12\x3c\xd7\xc3\xeb\x12\x5f\xa7\x4e\x4c\x6d\xb6\x4e\x78\x44\xf7\xc8\x5b\x16\x86\xe7\x1e\xd0\x8d\x1a\x6a\x04\xe0\xeb\xbd\xff\x4a\xb1\x60\xc9\x76\xc8\xab\x9b\x50\x5f\x6a\x7e\xb0\xa1\x84\x27\xe9\x99\xa8\x82\x8d\xf1\x06\x84\xf8\xc7\x5b\x6a\x6b\x0a\x64\xc0\xaf\xa4\xbb\x22\xbe\xd1\xcb\x93\x25\x35\x9c\xac\x3b\x8c\x50\x8d\x98\xbc\xb0\xeb\xcd\x74\x8d\xc1\x32\xf1\xd6\xa3\x60\xa4\x45\x0d\x12\x92\xa1\xfe\xfc\x4e\x57\xe4\x10\x7a\x22\x3f\x42\x1e\x7d\x14\xa3\x84\xb8\x5c\x18\x84\x4d\x0b\x9e\xed\x2e\xcb\x81\xbb\x74\xe8\xa1\x26\x52\xd9\x85\x05\x79\x5a\x01\x31\x16\xa7\x07\x6c\xcb\x54\x93\xd6\xa7\x11\xf7\x63\x7e\x97\xa7\x80\xe7\x4d\xa1\xb3\x9b\x15\xcc\x7b\xbd\xe2\xe6\xc4\xd0\xd3\xe8\x30\x05\x97\xc8\x36\xe8\x0b\xcb\x8d\x80\x81\xd9\x74\xe0\x24\x32\xea\xc8\x83\x68\x21\x1d\x3a\xaa\xe8\x9a\x14\x41\x71\x08\xe1\xff\x67\x37\x08\x38\x49\xc6\x25\xb4\x0d\x63\x1f\x6c\x83\x57\x22\x0c\x7f\x37\x38\x0b\x3b\x2c\xc5\xd0\xe2\xdf\x6b\x4d\x11\x96\x57\x9d\xbc\x57\xb6\xc9\xea\x0d\x41\xf4\xfa\x0e\x55\x6f\x94\x3c\x94\x48\xef\x42\xfc\x78\xdf\x59\x96\x64\x8c\xe2\xf3\xde\x04\xd8\xa6\x63\xf9\x67\xf3\xd9\x33\xd4\xf6\x53\x57\xab\x29\xba\x5b\x64\x05\xfb\x16\x29\x72\x57\x8d\xdb\xb2\x36\x7b\xed\x14\x3c\x85\x4c\x10\x88\xde\x92\x1d\x79\xf5\xa9\x2a\x85\x48\x37\xeb\x77\x02\xe1\xba\x92\x5c\x6e\xac\x23\xd1\x34\xba\x1b\xaf\xc5\xd4\x6d\xe2\xa1\x94\x2c\x7f\x36\x6f\x70\x1b\x0a\xfa\xbb\x75\xcb\x1d\x80\x8e\x1a\x1e\x4e\x3a\xe5\xde\x88\xe8\xe9\x98\x97\x57\x45\x8b\xdd\xd8\xa8\x06\xc1\x10\xcc\x3a\x73\x3d\x1d\x4a\xc5\x8a\x40\x5c\x4d\x81\x13\x4f\xbc\x24\xcc\xde\x7d\x5a\xfe\x42\x0f\x9f\x17\x85\xf0\xa5\x02\x0f\xaf\xbb\x22\x61\x22\x25\x08\xaa\x05\x28\xb7\xb4\x8b\x56\x72\x00\x95\x84\x25\xef\xcb\x42\x93\x4a\x88\x0b\x13\x34\x44\xbb\x10\x9f\x2a\x95\x4c\xfa\x35\xa2\xd1\x7c\xb0\x5e\xe3\xf1\x6d\x06\xb3\x21\xa1\x5f\x91\x33\x9a\xbe\xda\x24\x3a\xd6\xc0\x91\x9f\xac\x51\xe9\x07\xe0\x53\xfd\xee\xd1\xcf\x03\x00\x37\x34\x13\x77\x93\x94\x1b\x8a\xdf\x9a\xb6\xaf\x81\x9c\x24\x5d\x6d\x56\xf1\x69\x64\xc8\xa7\x5b\x07\x56\xa8\xcb\x0c\xa8\xc1\x2a\xc6\xe6\xb3\x94\x2e\xeb\xec\x2f\x86\x88\x35\xf8\x1b\x10\x9d\xb4\x98\xa4\xca\x2e\x02\x1f\xa7\x65\x60\x8d\x23\xd8\x03\xde\xdc\x9e\x51\x45\x3f\xc1\xd2\xa6\xa3\x8a\x4a\xab\x25\x7c\x0f\xe7\xd6\x7d\x32\xa5\x41\xe0\x14\xb6\x0e\x10\x13\xa9\x2c\x1b\x3a\xd9\xe6\xf1\x1b\xe2\x93\xb2\x46\xf9\xa0\xc6\x44\x0b\x0b\x54\xfe\xe7\x5f\xed\x2f\xb7\x5c\xc9\x1e\xcb\x32\x73\x8c\x49\x58\x31\x58\x6a\x11\x24\x2d\x87\xdc\xb4\x88\x3e\xdf\x67\x57\xa5\x0b\x18\x84\x37\x59\xb9\x8d\xd0\xce\xf4\xa3\xfe\x10\xd7\x63\x70\xec\xda\x8c\x83\xfa\xb8\x7e\xee\x26\x56\xc5\xf2\x61\xc3\x40\xea\x91\xa5\x60\xd0\xe2\xc6\x42\x89\x26\x7f\x00\x36\xba\x35\x94\x48\x00\xa5\xa0\xae\xf3\xf1\xdf\x83\x9a\x72\x4e\x18\x1d\x79\xb8\xa3\xc1\x6f\x65\xae\x27\x95\x3c\x4a\xae\x8c\xcd\x30\xff\x5a\xcc\x4b\x31\xe4\x76\x5c\x68\xfb\x38\x31\x9f\x10\xac\xf8\x92\x47\xb5\xa3\x9b\x3b\x08\xa1\x91\x75\x4a\x24\xac\xa9\x59\x6a\x1f\x8a\x70\xb6\xe4\xf0\x3a\x20\x04\xa9\x08\x6f\xf6\xed\x07\x65\x2a\x92\x6e\x1e\x2d\xf7\xbd\xcc\xd5\xbe\xc1\x6e\x5c\x4e\x96\x83\x64\xa0\x9a\xbf\x9d\xed\x93\xdf\x5f\xca\x0b\xcc\xa5\xc8\x12\x97\x6e\x5c\xfb\x3c\x34\x93\xfc\x17\x5d\x1d\x92\xee\x8d\x1c\x98\xfb\x33\x82\xb3\xab\x90\xc5\xc0\xe4\xbd\xf6\xa3\xac\x94\x76\x7b\x68\xd4\x7e\x6b\x9c\x24\x42\x65\xe3\xb1\xab\x06\x23\xa8\xf0\x10\x02\x73\xf2\xc6\x07\xde\x89\x61\x2c\x72\xd3\x9b\xe4\xc0\xb4\xd7\x7a\x3c\x61\x36\x8d\xf4\x0b\x36\x08\x65\x29\x89\xd1\xe1\x9c\x0a\xaf\x0e\x3c\x25\x3e\x56\x2c\x64\x09\xfe\x64\x48\x92\x9b\x33\x75\x3d\xe1\x62\xe6\xde\x5b\xd4\x66\xa5\x11\x4f\xc0\xe5\xf5\x71\x02\x75\x5e\x29\x54\x4f\x03\xb2\x8d\x4f\x78\xde\x9a\x02\x4d\xd4\xc4\xe8\xc3\xc2\xd4\x41\x15\xa7\xae\x15\xed\xb4\xf5\x58\xaa\x7d\xba\x64\x26\xe7\xe3\x72\xc5\x4f\x79\x40\xbd\x77\x14\x46\x7f\x8c\x3a\x1a\xdd\x3c\x64\x01\x89\xc3\x16\x60\xd8\xcc\x01\xd3\xc5\x38\x2e\x42\xab\xc1\x04\xc7\x23\xf9\x48\xa8\x04\xca\x85\x30\x47\xb6\xb8\x7b\x5b\x6e\xf4"}, {{0x5b,0x67,0xa6,0xd7,0xc6,0x50,0xdd,0x92,0xdd,0xd0,0x36,0xce,0x7a,0x30,0x5b,0xc9,0x59,0xa4,0x97,0xc5,0xe5,0x15,0xa6,0x84,0x93,0x03,0x5c,0xb3,0x85,0x0e,0xe0,0x3d,},{0x4c,0x6f,0xc1,0x64,0x05,0x05,0xfb,0x46,0x66,0x9f,0x93,0x04,0x8f,0x8e,0xf5,0x57,0x09,0x9f,0x3f,0xd9,0x2a,0x53,0x06,0x4b,0x16,0x33,0x63,0xa3,0x1b,0x7f,0x00,0xaa,},{0x0f,0x07,0x3c,0x9a,0x58,0x6f,0x6f,0x5e,0x08,0x38,0x9a,0x2a,0x5e,0x18,0x08,0xe2,0x70,0xf0,0xed,0xb6,0xaf,0x10,0x44,0x96,0xf9,0x37,0x57,0x62,0x3f,0xea,0x53,0x13,0x3a,0x73,0x1c,0x44,0x5a,0xc2,0x35,0x78,0xcd,0x56,0xa3,0x88,0x3c,0x08,0x95,0x86,0x68,0x63,0x1f,0xed,0xf1,0x44,0x6c,0xe3,0x4f,0x85,0x7f,0x90,0x82,0x2b,0xa8,0x0a,},"\x62\xcc\xde\x31\x77\x2c\x57\xe4\x85\x3a\xaf\x2a\x81\x81\xfd\xb5\x3f\xb8\x27\x90\xea\x65\x01\xbf\xc8\xf5\xd4\xae\x8d\xbd\x52\xde\x42\xce\x2e\x89\x61\xac\x17\x31\xf4\xbc\x08\x5f\xb5\x61\xef\x09\xa2\x44\x29\x70\xb6\x29\x79\x01\xae\xaa\x2e\xe5\x55\xb7\xd5\xe3\x95\x1c\x7c\x35\x12\x39\xdd\xee\x95\xff\x54\xf9\x24\xda\x95\xca\xe7\xb1\x5b\xa6\xa9\xa1\x33\x7b\x8c\xe4\x92\x1e\xd9\x13\xcd\x79\x1c\x1c\x69\x41\x08\x0e\x54\x8f\x3c\x36\xe8\x45\xac\xbf\xd8\xd8\xce\x35\xe2\xfd\xc2\xa2\xad\x6c\x7e\x24\x61\xbf\xcb\xf1\xaa\xbc\x55\xcf\x0f\xae\x42\x88\x85\xbe\x5e\x86\x53\x33\x08\xc9\x75\x68\x05\x21\x9a\xbd\x7f\xfc\x16\x57\xb6\xf4\x63\x29\x20\xa0\xc1\x0e\x0e\x36\x33\x19\xd9\x00\xfc\xd6\x1e\x7d\xdb\xcd\x6e\x76\x2a\x7d\xb9\x24\x80\xc3\x63\xb2\xc0\x64\x0c\x6b\xf3\x2d\x69\x0d\xd8\x29\xd8\x40\x5f\xa6\x6e\x47\x83\xeb\xe1\xcb\xde\x95\x47\x95\x4a\x90\xba\xad\x9f\x77\x4e\x94\x54\x9a\xbb\xff\x2c\x1f\x5c\xae\xc2\xbf\xd2\x8e\x41\x5d\x36\x42\x9d\x58\x51\x8c\x3e\x17\xe8\x69\x9e\x19\x89\xd4\x7b\x8d\x62\x7e\xf9\xab\x4d\x1e\x7d\x12\x0b\x37\x2c\x21\x41\x30\x4f\x7f\xab\xd0\x26\x5b\x8b\xe4\x1f\x54\x67\xf4\xde\x9e\x65\xc1\x25\xee\x1f\x27\xa2\x89\xc4\xf7\xc9\xa1\xfb\xf2\x5b\xfc\x2f\x8d\x30\x8e\x7f\xf5\x21\x91\xcb\x76\x44\xc6\xaf\x20\x45\x22\xf2\xac\x87\xb5\xf4\x05\x25\xfd\x43\xd3\x08\xc8\xdb\xc6\xa8\x61\xd2\x5d\xb2\x3e\xe2\x76\x67\x8a\x1b\x6e\x8e\x91\x28\x3b\xe0\x24\x70\x48\x2e\xd6\xcc\x9f\x6e\x39\x63\x51\xd1\x1b\x1c\x7e\x22\x32\x9c\x09\x1f\xe7\xd3\x68\xf6\x06\x53\xf9\x3b\x0f\x6a\x3f\x71\x2c\x20\xf9\xd2\xd8\xa9\xa0\x81\x98\x72\xf0\xc7\x1d\x7b\x1c\x0b\xc1\x68\x3a\x15\x2b\x48\x4b\xc2\x1c\xf5\x56\x09\x3a\xb4\xc0\xac\x16\xd3\x22\xff\x0b\xf4\x52\xe5\x58\x1e\x1e\x72\x41\x67\x38\x84\x02\x3c\x7d\x6e\x17\xe2\xde\x80\x59\xf6\x0e\x4c\x18\xe1\x3b\xd5\x5f\xcf\xee\x62\x3f\xd0\x46\x9c\x0d\x09\x11\x61\x1d\x09\x9a\x25\x70\x20\xf2\xf3\x1b\xf5\x07\x8e\x6e\x65\xa1\x35\xd5\xbf\x40\x76\x20\x23\x6d\x6c\xc7\x59\x31\x0f\xa7\x28\xff\x8b\xb5\xec\x56\xab\xbe\x1a\x3c\xd1\x51\x53\xf8\x92\xd9\x58\xd3\x0d\x16\x2d\x01\xee\x66\x5f\x5b\x56\x27\x81\xd8\xdc\xf8\x42\x80\x59\xe5\xfd\x22\x5a\xd7\x8a\x99\xea\x76\x0f\xe5\xd9\xee\x82\x19\xc9\x5a\xcb\x18\xd0\x56\x22\xe1\x0a\x9b\x6c\x67\xf6\xd4\xf6\xed\x11\x63\x5c\x5e\x2e\x0f\x85\xdd\x5d\x3c\xbd\xa6\x5a\xa4\x23\xd5\x94\xa8\x0b\x40\x42\x7b\xc3\x21\xe0\xee\xf9\xaf\xd2\xbc\x87\x46\xab\x73\x99\xff\x6d\x0e\x12\x87\xb6\x61\xdd\xc4\x06\x2d\x07\x20\x18\xf4\xc1\x0e\x86\xcf\xae\xd7\x2d\x9e\x68\x6e\xd0\x9d\x52\x55\xd3\x60\xe3\xee\xa2\xc2\x9b\x9e\xae\xa0\x5f\xc7\x8c\x8c\xdb\x8c\x9d\x4a\xfc\x7a\xdc\x6d\x4a\xa0\x67\xb7\xab\xfb\x0a\x4e\x94\x0a\x77\x58\x0e\xc2\x06\x45\x6c\xb9\xe9\xf9\x5f\x6d\x56\x5d\x53\x6e\x53\x5a\x16\x7e\xde\x8e\x20\xec\x36\x08\x1e\x2f\xc5\x5a\xef\xaf\x24\xd2\x27\xff\xfe\x5e\x6c\xb0\x30\x93\xf4\x43\xb4\xc5\x16\x55\xd9\x1c\xa6\xf2\x75\x95\x9d\x1a\x80\x2a\xde\xab\x44\x70\x1b\x31\xe8\xb0\xfd\x02\x22\xc4\x99\x96\x6c\x72\xd1\x02\x0a\xd9\x37\x0e\x28\x02\xbe\x04\xc9\x93\x3f\x6b\x77\x4f\x6e\x8c\x69\xfc\x0b\xfd\x31\x59\x39\xa1\x27\xb4\xe0\x6d\x0f\x6f\x5e\xde\x67\x1c\xe1\x16\x12\x12\x6b\x51\x87\xb5\x33\x29\xb0\xa9\xcb\x7d\xa3\xb1\xcc\xd6\x7b\x8c\x07\xba\xb9\x9a\x66\x2d\xf8\xce\x85\x1f\x50\x2f\xc4\xe1\xed\x16\x32\xb6\xba\x55\x55\x44\x01\x8f\x75\x27\xe3\x62\xef\xc7\xe3\xb2\xba\x6f\x75\xa1\x25\x4f\x42\x8b\x3b\x7e\x0b\xea\x69\x54\x9e\x7f\x9c\x73\x62\x75\x55\x00\x80\xae\xe3\xaf\x59\x14\xe3\xa3\x4b\xe6\x56\xc7\x7f\x6b\x29\x42\x0e\x54\x33\xf3\xdf\xf3\x81\x1f\x35\x28\x20\x8e\x9d\x85\x0a\xa3\xc2\x9b\x0f\x77\x8a\x24\x27\xd5\xfd\xe3\x07\x32\xdf\xe5\x04\x43\xa9\xc1\xad\x55\xc7\x2a\x08\xab\x26\xff\xaf\x8e\xfb\x90\xbc\xaf\xd3\x72\x6b\x00\xc0\x05\xc8\xc0\xf0\xdb\xf2\xa1\x35\x30\x86\x72\x1e\x44\x65\x45\xb8\x13\x44\x11\x94\xa7\x55\xfd\x26\xb9\x63\xaf\xd9\x77\x27\x8d\x1b\x10\xf0\x90\x01\xc7\xed\x97\x54\x03\xc1\x5c\xbe\x7f\x99\x2a\xb0\x7b\x84\x70\xc9\x39\xf8\x66\xf4\x20\xf7\x7d\xb7\x79\xaf\x83\x97\x00\x32\x9e\x07\x77\xa6\x11\x63\x65\xd7\x6c\x36\xd0\x9d\x86\x04\x72\xa5"}, {{0x26,0x31,0xc8,0xc3,0x4d,0x29,0x48,0xdd,0xd5,0x99,0x6b,0x41,0x49,0xce,0xfd,0x23,0x8e,0xa7,0x45,0x2e,0xc2,0x2e,0x24,0x61,0x24,0xdf,0xa2,0x79,0xcc,0xc2,0x7d,0xb8,},{0xc3,0x90,0x67,0x86,0xff,0xb8,0xa7,0xc2,0x7c,0x44,0xc2,0x44,0x7f,0x9d,0xde,0x7d,0x66,0x6d,0xfe,0x58,0x8c,0xfc,0x54,0xf2,0xd2,0x50,0x40,0x51,0x2a,0x37,0x1b,0xc1,},{0x0a,0xdc,0x6f,0xa4,0x0f,0xfb,0x81,0xf6,0xef,0x4e,0x41,0x87,0x55,0x49,0x17,0x77,0x5c,0xf4,0x65,0xe7,0xb5,0xe8,0x57,0xf2,0xe1,0xe7,0xf4,0x00,0x97,0x71,0x06,0xd2,0x37,0x7e,0xbc,0x76,0xab,0xb1,0xdb,0x92,0x4c,0x64,0x86,0x7e,0x3c,0x6f,0xe3,0x8c,0x0b,0x4f,0xcb,0x1d,0x0f,0x94,0x68,0xe8,0xfb,0x23,0x50,0x29,0xa8,0x1c,0xe6,0x04,},"\x6f\x9b\xdc\xe1\x44\x3f\x28\x56\xd4\xa2\xf2\x27\x82\x83\x50\x12\xb7\x81\x8a\x0e\x02\x0d\xbc\xc2\x2a\x82\x16\x58\x30\x5f\x13\x42\x34\xd1\x4c\xea\x63\x61\x00\xed\x89\x6c\x2a\x8f\xb0\xe8\x70\x48\xec\x6f\x8b\x31\x48\x4f\x78\xeb\x17\x10\x45\xad\xd7\x2c\x85\x71\x0e\xc9\xf9\xb5\xd4\x36\x23\x41\x7b\x56\x53\xbe\x86\xe7\xfb\xf8\xb4\xff\x91\x11\x0a\x80\x8c\xb4\x1a\xcf\x66\xd4\x36\xe8\x9a\x73\x7f\xae\xa4\xef\xf3\x54\x49\x60\xf1\x14\xb8\x33\xb0\xb4\xeb\xc2\xc1\x40\x70\xb0\xbf\xb7\xb0\x05\x7e\xeb\xb8\x42\xbd\x1c\x1e\xd4\x58\xad\x34\x28\xf8\xf7\x2a\x1d\x1d\xb3\xc4\xcb\x47\x97\xa3\x99\xd4\x7a\x1e\x6d\xb7\x4d\xcb\x2e\xe2\x4a\xe8\x15\x85\xcf\x66\xef\x6d\x9b\xd2\x23\xf0\xf5\x4b\xc8\xc1\xce\xc1\xbb\x44\x60\xbe\xf4\xff\xd3\x2e\xe8\x05\xc3\xca\x5e\xe9\x76\xff\x9c\x14\x55\x9f\x8d\x75\x66\x62\xa2\xbc\x19\xe4\xc5\x98\x54\x06\xa0\x73\x05\xc9\x95\x0d\x86\x6c\x9a\x79\xa3\xe5\xf6\xc5\x96\x97\x53\xa1\x70\xe0\xfc\x4c\xc0\x9c\x6d\x87\xa1\x2b\x44\xcd\xf3\xbe\x16\x23\x15\x9e\x90\xca\xb7\xa8\xa3\xe6\xf0\x1f\x26\x85\x95\xb0\x21\xb1\xef\x7d\x00\x76\x94\x77\x27\x0d\x55\x84\xc9\x12\xe2\x2a\x36\x74\x38\x27\x7f\x59\xdf\x20\xc5\x62\x0d\xd5\xbe\xaa\x9b\xb6\x0b\xee\x47\xf4\xaf\x52\x7d\x89\x29\x57\xb2\xd1\x2b\x67\x8b\x52\x79\xa3\xf8\x32\x64\x65\x4c\x0a\x0f\x8d\x21\xe7\x09\x66\x8f\x30\xfb\x6e\x68\xf0\x47\xd0\xd9\xa7\xc2\xae\x9a\x28\xf7\xcb\x9d\xbf\x18\xf6\x3f\xc1\x66\x1f\x07\xd3\x10\xe5\x40\xc7\x76\x31\xf5\xbd\xac\x58\x24\x68\x5d\x7c\x9a\xba\x0f\xe1\xd0\x94\x07\xa9\x66\x2e\xf1\x8e\xb3\xe2\x8f\xd1\xe8\xbc\x89\x26\x57\xbc\x38\x24\x3a\x2e\x64\x53\xbd\xae\xab\xb2\x79\x1f\xc5\x48\x95\x21\x29\x54\x57\xad\x04\x18\x0c\xa8\x71\xf6\x31\x87\x92\xbd\x15\xfd\x18\x00\xce\x59\xdd\x3e\xcc\x7e\x0b\x72\x97\x92\x67\xd8\x18\x3e\x80\x4f\xdd\x45\xda\xad\x84\xfc\x4c\xaf\xeb\x56\x1e\xa8\xd6\xa7\x4a\x7c\xde\x72\x2d\x96\x25\x3a\xb3\xe7\x5f\x0a\xdd\xe0\x2a\x61\xfd\x5e\x1f\x59\xcb\x1f\x5f\x1b\x2e\x05\x26\x43\x58\x9a\x9e\x4b\xe4\xdd\x6e\xe6\x45\x38\xcb\x0b\x10\x9a\x11\x3f\x30\xa5\x8b\x35\x65\x62\x40\x43\x66\x2a\xbe\x17\xf6\x0e\x31\xe8\x9c\x36\xc9\x95\xe0\x0a\xe0\x7f\x56\xa9\x11\x8a\x31\xae\xc2\x4a\xd5\x44\xbc\x96\x58\x11\x21\x8d\xf8\x27\xc1\x73\x0b\xb9\x04\xbb\x79\xb6\x86\x13\xf6\xc9\x94\x67\x9b\x69\x90\xd7\x75\xb5\xcb\x32\xdb\x97\x19\x4b\xd8\x10\x19\xbe\xa4\x1f\x3a\x7e\xef\x50\x1b\xf8\x49\x1b\x0e\xa8\x59\x38\x84\x52\xe3\xec\xbe\x16\xaa\x7d\x56\x91\x51\x0a\x66\x06\xc4\x93\xe4\xc2\x93\x96\x1b\xf4\x0b\x4c\xd3\x00\xd9\xd2\x2e\xa1\xa7\x72\x4c\x07\x8b\x8b\xab\x1f\xd1\x65\x04\xe9\x89\xb1\x36\xd9\x25\x1a\xc9\xf1\xed\x94\xa5\xe9\xac\xbd\x9c\x04\xf8\x05\x8a\xfe\x03\x04\x9a\xed\x8b\xa2\x9f\xa2\xe8\xfb\x44\xf8\xe8\xc0\x4e\x87\x27\xf3\x99\xe7\x35\xe6\xc1\x49\x6a\x91\xa9\xb2\xcd\x2a\xb0\x2d\x43\xb2\x85\xe9\xd7\x61\x02\x93\xb6\x74\x9d\xf1\x04\x4b\x30\xe2\xda\x99\xa5\x64\x42\x9a\x23\xe6\x8c\x96\xfc\xe9\x2b\x08\xa0\x0b\x7b\x74\x2b\xa9\x7a\x62\xee\x58\x77\x6d\x7d\xd5\x65\xa4\x90\x07\x1d\x4b\x19\xdc\x64\x8e\x03\x32\x9c\xc5\xc8\x25\xd3\x87\xeb\xa4\x9e\x2e\xff\x6c\x43\x41\x86\x5c\x46\x4f\x13\xf1\xbe\xb1\x82\x7a\x7f\x26\x8c\xc1\x5a\x98\x24\x80\xbf\x08\x4f\xe3\x65\x2c\x1b\x0e\x0b\x4a\xd2\x62\x55\x85\x9a\xbf\x1c\x8a\x7f\x9b\x3b\xef\x09\x8a\x94\x07\xfd\xea\x0a\x53\x9e\xb0\x08\xfd\xd7\x49\xfa\x01\x86\xcc\x01\x69\xd9\xd9\xe6\x8f\xe5\xe5\x4c\xac\x32\xce\x57\xb5\xc8\x4c\x2d\x80\x5e\xca\x39\xc2\xdb\xbd\xd2\xe0\x2f\x7d\x22\x88\x26\x71\x2f\xf4\xa6\x14\x11\xca\x0a\xeb\x6f\x01\xa1\xf8\x0e\xf2\x9e\xeb\x07\x1a\x43\x22\x2d\x94\x97\x18\x4b\xd8\x5d\x9e\x44\xb1\x66\xbe\x97\xcf\xd2\xa7\x32\xaf\x4a\x23\x34\x63\xd3\xab\x54\x3a\x7a\x3c\x7a\xec\x55\x56\x56\x56\x88\x40\xf4\xdf\xea\x21\x7f\x65\x53\xaa\x98\xaf\x32\x4c\x12\xb2\xc3\x21\x4e\xe7\x6e\xec\x70\x06\x70\xaf\x68\xc8\xc1\xf3\x69\x46\xef\xd7\xff\x09\x33\xe5\x45\x3f\x12\x8e\x97\x15\xfd\xb3\x34\x4a\xc1\x0c\x4b\xb7\xec\x8f\x10\xdd\xf5\xdb\x71\xf1\xcf\x0e\xfe\x40\xf7\x5e\x5b\x63\x34\xef\x8c\xf8\x42\x9b\x32\x91\xe6\xe4\xce\x37\x9c\x17\x8a\xff\xcb\xc6\x10\x30\xeb\x89\x6d\x74\x4d"}, {{0x39,0x76,0x9a,0x66,0xf0,0xca,0x12,0x90,0xfd,0xa1,0x43,0x75,0xb3,0x5c,0x66,0x3f,0x6a,0x4b,0x2a,0xb3,0x60,0x71,0x79,0xab,0xd9,0x90,0x63,0xe2,0xef,0xa2,0xc6,0xa8,},{0xf9,0xfd,0x4c,0x19,0x1f,0x38,0xf1,0x21,0x90,0xd3,0x28,0x5e,0x20,0xc6,0xce,0xe5,0x4c,0xfd,0x6f,0xf3,0x15,0x30,0x0a,0x4e,0xfd,0xc8,0xa9,0x0e,0x80,0xaf,0x40,0x83,},{0x14,0x42,0xde,0xa2,0x80,0x7e,0x03,0x11,0x59,0xec,0x6a,0x41,0x2d,0x8e,0x07,0xbb,0x3e,0x29,0x93,0x08,0x09,0x0f,0x21,0x8f,0xa7,0xc1,0x0a,0x9c,0x50,0x68,0xef,0x9b,0x64,0xef,0x11,0xca,0x9f,0xb9,0x2b,0xe1,0xd0,0x21,0x6b,0x99,0x31,0x8f,0xf0,0xf0,0x3c,0xb8,0x71,0xcd,0x7d,0xd6,0x3a,0x38,0xae,0x17,0x02,0x31,0x3e,0x5b,0x25,0x0c,},"\xff\x4d\x89\x87\xe3\xfa\x36\x01\x2b\x75\x86\x73\x6b\x79\x3d\x65\x97\x54\x69\x8c\xd1\x2b\x65\xe5\xba\x9d\x75\x8c\xac\x16\x49\x28\x8d\x20\x22\x43\x77\x28\x3e\xa5\x42\x5d\xec\x10\xab\x99\x17\xd1\x8c\xd1\x3d\x1b\xdf\x4a\x76\x9f\x37\x04\x4c\x84\xfa\xa2\xa4\x49\xc6\x89\xe0\x04\xc1\x4e\x00\x5c\x49\xda\x41\x06\xff\x75\xce\x13\x03\x36\x1c\x6e\x3e\x34\xcc\xfe\xe7\x5e\xe9\xc3\x1c\xbd\x06\xa4\xbc\xdb\xb4\x2f\xd6\x49\xbe\x4d\xfc\xd6\x64\x00\x6d\x6a\x5f\x61\x07\x7c\x04\xa6\xa8\x1d\xb3\x6b\xe8\x6b\xa4\x2c\x29\x51\xf0\x51\xae\xda\x64\xac\xea\x49\x6c\xb9\x24\x98\x2b\x9f\x7d\x23\x4a\xc9\x72\x3f\xef\x98\xa8\xe1\x27\x55\xe3\x26\xa5\x2f\xbe\x35\x85\x1f\x41\x1e\xeb\x86\x76\x06\xd4\x5b\x51\x3f\x54\x52\x63\x91\xc5\x54\x63\x5c\x18\x0b\x8f\xd0\xee\x45\x1a\xfc\x96\xe4\xef\xd3\x60\xb6\x1e\x6b\xaf\x03\xdd\x6d\x19\xba\x51\x5c\x31\xec\x1c\xdd\x3a\xff\xff\xdb\x27\x35\x4e\x3e\x6b\x56\xe9\xe1\xa1\xa1\xb7\xd4\xb5\x7d\x9d\x76\x89\xbb\x2f\xea\x6c\x8d\x3f\x9c\xe0\xdf\x2d\x9e\xe9\x19\xc4\x23\x0a\x1f\x20\xb8\x5d\xfe\xfe\x1e\xa3\xd7\xf7\x7d\xb4\x70\xe4\x02\x24\x29\xef\x60\x9b\x0f\xf4\x49\x46\x44\x0a\xcb\x44\xcd\x13\x44\x5b\xcf\xa3\xf2\x05\x03\xc2\x6c\x2f\xb6\x63\xc8\x90\x65\xfb\x93\x34\xa6\x03\xeb\x9a\xb7\x15\x2e\x62\x62\x92\x33\xc4\x4c\xb0\x0e\x77\x71\x6d\x9b\x72\xc8\x4f\xd1\xb3\x40\x63\x4f\xf1\xce\xa3\x47\x50\x15\x76\x10\x0e\xcb\x0f\xd1\xbb\x76\xae\x0d\xff\x1c\x2b\x09\x48\xeb\x71\xee\x2c\xc3\x1e\x79\xd3\x01\x5d\x72\xdb\xee\x22\x4a\x98\x0e\x0f\x95\xa6\x9f\x79\x3d\xa8\x3a\x2d\xaa\x56\xef\xe5\x7b\x2f\x8c\xea\xac\x9e\x55\xf4\x43\xca\x9e\x73\x2b\x48\xc7\x5f\xac\x21\xc3\x6f\xa7\x72\x73\xc3\xf3\x48\x35\xff\xd8\x3c\x96\xf0\x0a\xc6\xe8\x6c\xff\xed\x08\x15\x36\x46\xc1\xce\xa2\x23\xda\x9c\xa3\x60\xca\xb9\x7e\x03\xb2\xb6\xc8\xfb\xa7\xc1\x95\xa3\x9a\xe5\x2e\xb2\xee\x86\x43\x00\xae\x56\xa1\x0f\x54\x7f\x99\xa3\x16\x98\x72\x24\x9f\x97\x77\x4b\x17\x98\x93\x55\x36\xf2\xf5\xf0\x11\xce\x57\x61\x3a\x94\xfc\xb7\xe7\x28\x6a\x6d\x49\xc1\x0f\xd9\x29\xd7\x67\x1c\xbb\x8c\xf1\x7d\xfc\xad\x4b\x24\x85\xc3\xd8\xfd\x79\x12\x87\x21\xe5\x5d\x84\x80\x87\x63\xc2\xaf\xa9\xc5\x5e\x3b\x0c\xd7\xbf\x2f\x0a\x66\xb5\xe4\x67\xbe\xc5\xee\x89\xad\x57\x0b\x60\xf1\x88\xb3\xf7\xb4\xa5\x11\xff\x85\x93\x12\xde\xd0\x78\xd8\xd0\x09\x11\x34\xfd\x49\xbc\x79\x2d\x2d\x7d\x60\xb3\x04\x94\x1c\x7f\x23\x20\x6f\x99\xe8\x63\xb1\xe2\xd8\xc9\xec\xff\xd2\xff\x0a\x3a\x3c\x75\x49\x85\x61\x5a\x9a\x92\xed\xce\xad\x00\xfe\x0e\x05\x49\x3b\x19\x8d\x1f\x7c\x90\x08\x84\x46\xbb\xa4\x60\x38\xa7\x1f\x32\x65\x3b\x59\x12\xb2\x4f\x43\x13\x77\x48\xb7\x5a\xec\x2c\x15\xfe\x4b\xf5\xa6\xf8\x6b\x8a\x6c\xdd\x9c\x74\x47\xf2\xeb\xb0\xf4\x3b\x01\xca\x15\x23\xe0\xd4\x96\x24\x00\x06\xad\x7f\xff\xfa\xfe\x0d\xf5\x75\x4b\x34\x2c\xaf\xf3\x55\x5d\x72\xa2\x7d\x0b\x92\xca\x16\x67\x66\x5c\xec\x43\xbf\xb5\x83\x07\x7a\x9c\x17\x41\xfa\x49\x2c\xe3\xdc\x2c\x75\x29\xcd\xed\x81\xb8\x28\x1a\x3f\x37\x59\x48\xb8\xa7\xce\xd0\x96\xb2\xfa\xcc\x25\xe3\x90\x29\xe2\x21\xb6\x6a\x53\xd3\x97\x9e\x1f\x40\x5f\xd8\x8a\xfc\x06\xec\x6e\x43\x09\xdc\x85\xe6\x9d\x6e\xf2\xb4\xb4\x92\x66\x16\x4a\x9d\x9d\x1c\x31\xee\x39\x21\x12\x7b\x13\x38\x1b\xfb\x74\x0d\xd3\x8d\xc1\xc7\x31\x59\x21\xf9\xc2\xfe\x58\xb6\x1b\x63\x1a\x7d\x9f\xde\x2d\xd8\xa4\xbe\x3d\xed\x04\x90\xae\x3b\x83\x76\x79\x19\x55\xc1\xc4\xb4\xfe\xd0\x0b\x9f\x4c\x38\xab\x73\x50\xfc\x2e\x37\xa3\x15\x0c\x18\x16\x2b\x1f\xaf\x03\x37\x89\x4b\xc2\x3e\x74\xf5\x95\xe4\xbe\x33\x46\x6d\xea\xb3\x54\x58\xbe\x97\xb4\xf7\x56\x58\x97\xf0\x68\x52\xf7\x1c\x60\xfe\xf9\x10\x1d\x72\x6b\x72\xe0\x10\x2a\x97\xb2\xca\x52\x11\xe3\x80\x68\x34\xb0\xac\x1a\x7d\xf8\x7c\x2a\x07\x8d\xf2\x63\xef\x8b\xa4\x57\xdc\x89\x1b\x7f\x2e\x62\x78\x11\xab\x62\x2b\x99\x46\xf8\xc6\xb7\x31\xf2\x40\x78\xd1\x7b\x06\xb2\x00\xc3\x44\x7f\x80\x32\xaa\x3e\x7a\x24\x3e\xe4\x22\xdd\xa2\xe6\x52\xfd\x75\x71\x3a\xfb\xce\x8a\x59\xef\x85\x36\x65\x3a\x48\xdc\xf4\x2a\x70\xe7\x62\x1f\x9b\x28\x02\x40\x9b\xe1\xc1\xa6\x1f\x32\xe3\x67\x89\xa5\xc5\x05\x5e\x1a\x82\x68\xe9\xdc\x43\x8c\x2e\x15\x27"}, {{0x0c,0x80,0x8b,0x06,0x6f,0x0c,0x8e,0x8d,0xbb,0x1c,0x23,0xd6,0xc2,0xce,0xdd,0x0b,0xe8,0x66,0xd8,0x42,0x5f,0x24,0x1a,0x92,0x85,0x70,0x0e,0xa5,0x45,0x36,0xcf,0x6d,},{0x44,0xee,0x72,0x90,0x04,0x50,0xc5,0x6a,0xb2,0x1f,0x26,0x86,0xd2,0x95,0x25,0xd0,0x66,0x3e,0x0b,0xdd,0x87,0x72,0x5b,0xea,0xc5,0xd6,0x8b,0xac,0xeb,0x69,0xf1,0xd2,},{0x38,0xc6,0x82,0xce,0xde,0xfb,0x13,0xe4,0x6b,0x11,0xf7,0xb5,0xf8,0x00,0xcc,0x81,0x20,0xd4,0x5a,0x83,0xcd,0x8d,0x8d,0xec,0x10,0xc5,0x77,0xbb,0x01,0x53,0xd5,0x09,0xba,0x4f,0xdf,0x40,0x09,0x98,0x78,0x8b,0x70,0x60,0x07,0xce,0x16,0x2b,0x96,0x94,0x5c,0x71,0x40,0xbe,0xee,0x74,0xe1,0x9d,0x07,0x43,0xaf,0xa4,0xec,0xfd,0x25,0x0a,},"\xc9\x45\x71\x41\x00\x58\x1f\x4e\x24\xda\x11\xfc\x0f\x6c\x6d\x02\x10\x43\x3f\x97\x77\x52\x51\x24\xc5\x5e\xe0\x72\xd8\x5d\x79\x8b\x70\x5f\x9d\x31\xc8\xf9\x77\xdb\x6e\xdf\xb7\xa6\x5c\x78\xad\x2d\x7d\x31\xd6\xb7\xb5\xbe\x40\xff\x11\x78\xd3\x03\xb6\x83\x9b\xb0\xc6\x32\x10\xc1\xd3\x38\xc1\x03\xaf\xa0\xd4\x53\xec\xa1\xbc\xa2\x77\xd9\x30\x77\x8a\xd5\x08\x02\x27\x2f\x03\xdb\xe2\x18\x4f\xc3\x1e\xf8\xea\x6a\xbe\x21\x69\x97\x19\x9f\x7c\x1b\x33\x77\x37\x96\x89\x07\x27\x2a\xa5\x1b\xd4\x9c\x07\x38\x9c\x95\x46\x8c\xef\x4f\xd9\x9a\xe7\x8c\xa4\x54\x2a\x2b\xbc\x0e\x8a\xa9\x52\x14\xad\x1c\xff\xf9\xd5\x08\x5a\x43\x43\x94\x47\x3b\x84\xb7\x4b\xe9\xbf\x2f\x02\x02\xad\x1e\xe4\x61\x66\x04\xca\x1d\xd7\x5f\x4a\x19\x53\x42\xeb\xbf\x8f\xc5\x9f\x3f\x79\x61\x65\x54\xdc\x7b\xfd\xd5\x56\xbe\x43\x72\x21\xc1\x0b\xfa\xd3\x9e\x11\x9e\x06\x04\x5b\xe5\xfe\xd6\x83\xd3\x53\x4f\xb6\xcf\xed\x33\x89\x1c\x96\xf9\xc3\x30\xf2\x8b\x68\x4f\x8f\xba\xd4\x7c\x01\x41\x8e\xab\x6c\xee\xcc\x2e\xd7\x77\xf4\xc2\x18\xa2\x7a\xc2\x25\x82\x39\x23\x15\xc5\x3a\xa7\x30\x9e\xc5\x4c\x61\x75\x23\x6e\x44\x24\xdc\x97\x84\x65\xab\x62\x8d\x95\x44\xb0\xbe\x84\x10\x3e\xb5\x6f\x1b\xaf\xe5\xe5\xea\xed\x04\xc9\x8b\xfe\x2e\x8a\x24\x18\xc6\xc5\x2a\x61\xea\xce\x85\x23\x6b\x66\xc7\xb3\xb8\x70\x7e\xd5\x56\x41\xdd\x9d\x5d\xa9\x7c\x99\xc1\x1c\xbe\xb9\xaa\x2d\xb1\x47\x82\x0d\xc7\x24\x80\x0a\x9d\x80\xf5\x05\xfa\x5a\xf2\x09\x21\xca\xd2\x43\x56\x83\xbb\x4f\xc6\x0b\xdd\xd4\x75\xf8\x63\xe2\xf5\x95\x0d\x23\x63\x99\xd8\xd7\x5b\x40\x4b\x39\x4a\x54\x67\x37\xf9\x3a\x62\x40\x87\x00\xb3\xab\x3c\x1e\x92\x2b\x1a\x85\x9a\x29\x15\xc2\xd3\x53\x68\x81\x5c\xd4\x5b\x85\xb2\xac\x08\x31\x21\xff\x00\x0f\x05\x0d\xcd\xf4\x15\xe5\x27\x5a\x5c\x42\xda\xe3\xb1\x54\x00\xf3\xdd\xaf\x93\x39\xf2\x0a\x12\x61\xa8\x8c\xd9\x02\x05\x63\x97\x63\x21\x11\x52\xdf\x41\x4a\x9a\x6a\x62\x18\xf5\x6b\x35\xa2\xde\x9e\x84\x82\x44\x9f\x6d\xa7\x7c\x9e\x3d\x4a\xf0\x49\x30\x15\xa7\x26\x21\x7f\x82\xac\x58\x95\x4f\xe3\xe2\xe3\x44\x40\x35\x6b\x11\x2e\x06\xa6\xf6\x71\xfb\x5a\x6e\xf4\x61\x9a\x6e\xa7\xb4\xe0\x4d\xb3\x75\x7f\xb6\x64\xc3\x96\xb3\x41\xca\x89\x00\x1d\xc1\x60\x4b\x51\xfa\x91\x53\xf9\x13\x0c\x10\x20\xff\x88\x90\x92\x87\x82\x3a\xb3\x91\x5c\xcc\x85\xc4\xe3\x5d\xf6\xc2\xf8\xe6\xf9\x02\xbe\x82\xba\x21\x29\x7f\xd3\x83\x5a\xff\x5c\xe0\x2f\x3c\x07\xdc\x09\x3f\xcb\x1a\xba\x26\xe0\x6d\xfe\x6f\x02\xdf\x79\x29\x1a\xac\xa0\x69\xec\xab\x93\x81\x40\x4c\x9c\x3e\xa1\xad\x40\x9a\xdf\x29\x2a\x91\xe3\xa5\x82\xd5\xa7\xb6\x8f\xfb\xe1\x0a\x03\x05\x24\x8e\x09\x67\xe6\xdf\x37\x2f\x28\x1b\xd1\x92\xe1\x39\x97\x9c\x98\x66\xca\x8f\xe1\xe1\x0e\x06\x16\xdc\x2d\x4f\x85\xe1\x19\xe0\xcb\x4b\xfe\x8c\xc3\x1d\x9f\x5c\x01\x8b\x65\x40\x85\x24\x00\x0a\x30\x16\xa2\x3d\x99\x14\xd5\x7e\x95\x55\x76\xe2\x66\x0b\x0e\x0d\x96\xc8\x49\x5a\x12\xc3\xd7\x31\x22\xd2\x00\xb0\xf0\xe5\xeb\xd4\x46\x56\x2b\x08\xf4\x79\x34\xab\x49\x9a\x96\x99\x1d\xcf\x99\xc9\x6a\x62\x88\x07\x39\x84\x5d\x29\x82\x01\x50\x55\x3e\xae\x9b\xe0\xbb\x41\xd5\x3d\x3a\xf0\x1d\x98\x67\xbb\x47\x32\xc9\x0b\xf6\xe1\x37\x31\x6e\x3b\x1e\xdc\xc2\x09\xa8\xa0\x9f\xb0\x62\xa6\xef\x05\xf3\x7e\x57\xf2\xc5\xd1\xd0\xca\xba\xf0\x7a\x8e\xd7\xd4\x14\x55\x40\x7b\x09\x67\x54\x18\x0a\xa9\x6d\x3d\x96\x59\x19\x45\xdd\x7a\x10\x40\xa2\xde\x60\xd8\xe1\xc0\x54\xf7\x85\x46\x52\xb7\x32\xe7\xa8\xf5\xb6\x47\x4c\x3b\xaa\x18\x40\xfb\xe8\x1b\x1e\x6b\x54\xe2\x01\xef\x0b\xc8\xd0\xf2\x13\xd7\xce\xc1\xd8\x24\xd2\x22\x09\xac\x72\x52\x5a\x64\xb9\x03\xe7\x73\xb8\x3f\x1b\x68\xf6\x40\x27\x9f\x15\x05\x3d\x21\xec\x15\xce\x2f\xf7\x59\x22\x17\x6b\x75\x84\xa1\x6b\xf1\xa1\xf0\xd6\x36\xb7\x94\x2a\x3d\x61\x86\x2f\x6f\xd1\x30\x99\x72\xd3\x14\x1e\xb7\x69\x31\x4c\xa9\x75\xd0\x20\xbf\x02\xbf\xdd\xf1\x7d\x14\xb6\x0e\xb7\x86\xbf\x9f\x55\x98\x9f\xe4\x73\x32\x0d\x44\x29\x67\x7e\x30\x1c\x68\x26\x33\xf8\x13\xff\x26\xc0\xa3\xda\x92\xf6\xd0\x68\x06\x16\x10\x5b\x04\x25\xaf\x33\x8c\x2e\xa6\x15\x3b\xdd\x52\x16\xfa\xe2\xaf\xe4\x61\xe9\x24\x9c\x05\xe3\x2f\x76\xad\x7c\x42\x9d\x92\x53\x4b\x68\x6d\xd1"}, {{0x04,0x9d,0xac,0x3c,0x97,0x7d,0x9d,0xf5,0x03,0x49,0x6b,0x43,0xd7,0x6e,0x55,0x40,0xe3,0x15,0x00,0x1a,0xd5,0x7f,0x15,0xea,0x9f,0x08,0x70,0xca,0xd2,0xd4,0xf9,0xe9,},{0xfc,0x6f,0x4b,0x7e,0xb3,0x9a,0x71,0x16,0x80,0xf9,0x66,0xd4,0x68,0xa6,0x1a,0xbb,0x13,0xa9,0xb6,0x44,0x9b,0xb9,0x9f,0xda,0x3d,0x12,0xce,0x1b,0x50,0x6d,0x1b,0x4b,},{0x75,0x32,0xd1,0xa6,0x1a,0x98,0x1f,0x30,0x3d,0x7c,0x24,0x54,0x35,0x4f,0x99,0x54,0x0c,0xd4,0x84,0xcd,0xe9,0xab,0x33,0x7d,0x6f,0x7b,0x51,0xf1,0x79,0x22,0x0f,0x7f,0xa2,0x07,0x34,0x76,0xb4,0x1c,0x71,0x52,0x9f,0x98,0x36,0xdb,0x6b,0x1d,0x0f,0x5a,0x48,0x2b,0xbb,0x4c,0x68,0x36,0x61,0x76,0xed,0x14,0xd4,0xd8,0xee,0xfa,0xde,0x0d,},"\x7f\x31\xe3\x46\xf6\x8d\xa7\x37\x16\xaa\xcb\x16\xee\xa1\x9b\xb2\x41\x42\xdc\x28\x3e\x72\x63\xff\xc3\xf7\x04\xa2\x2a\xe5\x27\x5a\x0e\xf9\x5f\x06\x69\xba\xe5\xa5\x4c\x7f\xeb\x84\xbc\x74\x87\x3c\xca\x0f\x33\x5d\x6c\xff\x3d\x8b\x4a\x20\x05\x6c\x64\xf5\xe8\x82\xcb\xbb\xd2\xac\x74\x20\x76\x76\x46\x7e\x54\x66\xdd\xd5\x6a\xed\xf5\x6e\x09\x7c\x7f\x59\xd9\x45\x91\x5e\xb0\xeb\xd0\xc3\xc8\x3d\x48\x88\x8d\x3e\x9e\xde\x51\xad\x2d\xd8\xa0\xee\x1e\xab\x4c\xf8\x7f\xfa\x78\x63\x5a\xfc\x4d\x6e\xf3\xe8\x7d\xda\x3b\x65\x56\x5c\x29\x85\xa4\xad\x0a\xcf\xdf\xb8\x1c\xb0\xe6\x1c\x67\x82\x6a\x6e\xa0\xbe\xd4\xc0\x8a\xa1\xa5\x41\xde\x60\x45\x87\x04\xac\x21\xca\x12\xf1\xc8\x11\x8b\xb3\x09\x2c\x35\xa4\x0c\x92\x1e\x68\x45\x64\x56\x2c\x2c\x10\x49\xdc\xdc\x2b\x8d\x6a\x97\xe3\x56\x7d\x35\x6b\xff\xb5\x69\x2a\x41\xd8\x9d\xdd\xa0\xec\x35\x52\x15\x2a\x27\x57\x7f\x1c\xce\x57\xd0\x09\x86\xdc\xa7\x7e\xdf\x5e\x25\x18\x15\x82\x00\xad\xf6\x90\xaf\xfb\x31\xaa\xf2\xb5\x74\x83\x68\x39\x44\x09\x99\xf1\x57\x91\xce\xa8\x53\x42\xac\x94\xa9\x6c\x7a\xf7\xa1\x9e\x49\x43\x10\xae\x26\x67\x5f\x43\xc3\x52\x58\xe8\x5b\x68\x40\xb9\x9c\x6b\x09\xcf\xa5\x8d\x19\xf1\xe4\x3a\x77\xe3\x97\xb0\x8c\x0d\xb1\x83\x0b\xca\x67\xb3\x9e\xcd\x87\x52\xda\x61\x1e\x08\x32\xc6\xca\xe7\xbb\x8c\xe7\x4a\x82\xe7\xe7\x33\x0b\xe5\x06\x2e\xd0\x5a\xa5\xc8\x44\x57\xb0\x07\xfb\x5c\xcd\xc2\x0a\x55\xd5\x4d\x8e\x04\x09\xc8\xbd\x83\x88\x3d\x2e\x02\x9d\xff\x26\xea\x5d\xb2\x75\xdc\xe0\x99\xe4\x18\x65\x9a\x04\x00\xf1\x3b\xe9\xff\xdc\x14\xe7\xd6\x45\xa9\x46\x77\xca\x84\x69\x70\xb7\xe6\xac\x52\x7f\xa0\x09\xa3\x59\x45\x4b\x3c\x49\x36\x49\x05\x18\x9f\xb4\x9c\x9b\xac\xb6\x50\xc0\x3c\xd8\x28\x75\x89\x4e\x35\x46\xba\x03\xc3\x2e\x33\x6f\xc6\x51\x6a\x87\x67\x6c\x50\xd5\xb8\x0b\x30\x54\x27\x3b\x15\x7c\x5d\x76\x75\x14\xe5\x45\x74\xb8\xa1\x01\x98\x5a\x8e\x96\x7e\x95\xda\x8f\x92\x98\x00\x26\x0e\x08\x14\x8b\xee\xe2\xd7\x78\x1e\x9e\x85\xd4\x63\xa9\x4f\xfe\xfd\xbb\x75\xc2\x8f\xa8\x89\x80\x15\x68\x09\x99\x42\x9c\xee\x79\x8b\x3f\xd2\xd9\x67\x37\x86\x8a\x26\x3f\xba\x9f\xb6\xf4\xaa\xd5\x6a\x15\xc6\x41\x2f\xf8\x5e\x7d\x37\x52\x10\x2d\xaa\xf2\x5e\x74\x5f\xa5\xf6\xf1\x74\xa2\x31\xfc\xce\x86\x24\xdd\x70\x85\x6f\x9b\xab\xcc\x20\x91\x44\xff\x68\x64\x64\x8d\xea\x0d\x68\x84\x56\x6a\x4c\x39\x14\x78\x05\xbe\x08\x4e\x47\x40\xbc\x50\x93\x09\xbc\xb1\x42\x96\x4b\xb0\xcf\xcf\x67\x26\xa0\xe0\x4b\xbf\x32\xae\x68\x34\x73\x2b\xda\x03\x84\xce\xa8\xf4\xa4\x84\x9b\xba\x0d\x18\x64\x6c\x1c\x34\x47\x18\x96\xb5\xbe\xf1\x49\xf8\xca\xb9\xec\x83\x72\x2b\x0f\xb2\x09\xef\xe8\xa0\x4c\x4a\x23\x5d\xc8\xdd\xb2\x0a\xcd\x92\x76\x5a\xfb\xf3\x05\x87\x40\xea\x70\xb9\xc1\x0d\x9c\x5a\xef\x86\x06\x29\x8f\xe4\x15\x15\x93\xb2\x1f\x79\x7d\x92\xae\x9f\x1e\x08\x81\xb0\xd2\x71\xb0\xd5\xb1\x0c\x6e\xd8\x3c\x34\x9e\xc2\x47\x3f\xbf\x2f\xf7\x80\xdc\xd0\x76\xd8\xcf\x0a\xea\xfa\x71\xfe\x2b\x8c\x51\x28\x01\x5f\x8f\xbb\xcf\xec\xd5\x28\x1c\xd5\xea\xcb\x6f\xe9\xac\x6e\xaa\x6e\x47\xd6\x67\xb9\xad\x4b\x7e\x41\x1e\x6c\xb7\x46\x3d\x56\x76\x07\xaf\xbf\xd0\x41\x8c\x4e\xb0\x6a\xfe\x84\x7f\x5e\x40\xb4\x99\x44\x38\x28\xd5\xa2\x73\xa4\xa8\x7e\x46\xde\xf2\x1a\x91\x9d\x73\x86\x3a\xf0\x05\x4a\x09\x9e\x3a\xdc\x54\x50\xb8\xe3\x2f\x51\xea\x52\xc5\x99\xa4\xa2\xa3\x53\x51\x78\x8a\xf7\xcb\x71\xe5\xc4\x4b\xcb\x8d\xf5\x4a\x60\x1e\x6e\xc2\xc1\x82\x8b\x48\xc4\xb1\xae\x44\x63\x10\x6f\x10\xef\xa5\xca\xf3\x09\x1a\xbf\x99\xaa\xba\x52\x52\xf4\x84\xd3\xbb\xc6\x2b\xfa\x6b\x2a\x80\x6d\x23\xc6\x33\x1a\x62\xfc\x46\xbc\x62\x76\x79\xe7\x3e\xc8\x2d\xcc\x08\xf7\x91\x43\xf4\xb7\x1e\xcf\x35\x7e\xa2\xf0\xd7\x4e\x6d\x30\x58\xe6\x06\x04\x3f\x6e\x8f\xed\x70\x42\x82\xc1\x6b\x1f\x98\x8f\xfa\x36\x5c\xfa\xe9\xa3\xcf\x79\x2e\x0c\x5b\xaa\xd7\x0c\xa7\xe2\x57\x76\x01\x8b\x5e\x7f\x0e\x95\x44\xe1\xd7\x3f\x3e\x5d\x1e\x41\x6a\x5e\x50\xfb\xed\x29\x6d\xc1\xbf\x4b\x29\xa3\xfb\xe3\x2e\xfb\xd7\xe9\x9c\x83\x01\x5d\x27\xf5\x35\xad\xec\xf1\x75\xfc\x36\xc1\xea\x4f\x44\x23\xb3\x6d\xcd\xc0\x54\xba\x99\x32\x78\xe8\x5a\xc3\x62\x2d\x43\x5f\x52\x37\xba\x61\xb4\x9a"}, {{0xf0,0x7d,0x61,0xb5,0xca,0x1c,0x27,0x00,0xcb,0x50,0xf9,0x00,0xc2,0x6b,0x7c,0x28,0xf6,0xc6,0x94,0x08,0x08,0xc7,0xba,0xff,0xf7,0x4f,0xca,0x4b,0x11,0xf4,0x25,0xd4,},{0xeb,0x24,0x3d,0xfa,0xcc,0x2d,0xc6,0x43,0x57,0x76,0xd5,0x54,0xec,0xed,0x8b,0xf9,0x23,0x90,0x60,0x4b,0x35,0x55,0x7c,0xda,0x51,0xfd,0x20,0x3e,0xdd,0xb4,0x93,0xfa,},{0xc1,0x9b,0x53,0x2b,0x82,0x48,0x56,0x39,0x32,0x63,0x97,0x01,0xbf,0x15,0xbc,0x01,0x5f,0xae,0xbb,0x17,0xbb,0x98,0xd8,0x71,0x61,0x6e,0x10,0x48,0xd6,0x4c,0xa5,0xf9,0x55,0xf5,0x58,0xf6,0x3b,0x53,0x53,0xa1,0x57,0x6f,0xa1,0xac,0xae,0xf3,0x9b,0xcb,0xc9,0x02,0x17,0x56,0xdf,0x5d,0x1a,0xb3,0xbc,0x74,0x1a,0xcc,0xf9,0x05,0x9b,0x04,},"\xc1\xc6\x78\x43\xd6\x9a\x0e\x62\xe7\xbf\x71\xf9\x02\x06\xa3\xd5\x59\x5c\xa3\xc4\x82\xaa\xa7\x67\xe9\x31\xb0\xd6\xc2\xf4\x75\x2a\xb8\x69\x91\xf0\x35\x83\xbb\x13\x8e\x9f\x72\xfa\xb5\x8f\xd6\x02\xa4\xb6\xb2\x96\x02\xcf\x89\x14\x08\xaf\x5a\x1b\xfd\x33\x98\xc0\x17\x8c\x44\x14\x61\xe3\xf4\x9b\xc8\x1d\x64\xc0\xd9\x7f\x5d\xed\x69\x2c\x75\xd4\xd6\x4d\xac\x5d\x80\xd6\x3b\xd4\xdc\x52\x10\xc1\xd9\x35\x0b\x14\x2b\xa6\xe7\x68\xf1\x50\x80\x7a\xb8\xa8\x6c\xac\xdb\x59\xd8\x4d\xdf\x66\x0b\xe5\x62\x03\xc0\x14\xfb\xa1\xe0\xdc\x16\xfa\x6d\x32\x69\x4e\x14\xb1\x28\xed\xd1\xf6\xc6\xab\x44\x5a\x3a\xd3\x41\x74\xfa\x9e\x4b\x01\xf2\x5b\x1d\x5e\x6e\xb7\x69\x83\xb4\x29\x5c\xe4\x91\x4d\x3a\xe4\x8c\x70\x4a\x30\xe5\x54\xfc\x1f\x86\x8b\x62\x72\xef\xf0\x6d\xa2\x4b\xfe\x17\xe4\xe0\xf0\xfa\x46\xbb\x08\xff\xb9\x07\xcb\x61\xbe\xbe\x52\xdf\x31\x1a\x64\xcb\x57\x8b\x30\xfd\x62\x7d\xf1\x12\x21\xae\x40\x03\xa0\xb0\xc6\x8e\x3c\x6f\x95\xa2\x1c\x85\x00\xd4\x1b\x2c\x58\x9c\xc4\x6a\x13\x9c\xac\xff\x57\xdc\xf0\x07\x59\xf5\x2e\x9c\xa3\xda\xbd\xb1\x78\x8a\xb6\xb3\x8a\x50\x48\xf5\x8e\x08\xe0\x5c\x39\x4f\x9d\x3c\x72\x11\x3d\x45\x2b\x70\x84\xc5\x19\xf8\x6c\x16\x89\xff\xdb\xae\x50\x6e\xd8\x45\x05\x22\xcb\xe4\x3d\xe2\x7a\xa3\xbf\xdd\x92\xa9\x1b\x71\xe5\x2a\x3c\xbf\x77\xc1\xbd\x28\x93\xea\xbd\x40\x7a\x57\xfe\x5e\x14\x68\x73\xbf\xb2\x04\x3f\x4a\x61\x47\xdf\x08\x3e\x54\xa2\x20\x8d\x19\x25\x81\x3f\xa4\x04\xe4\xc4\x74\x06\xe7\x72\x86\x43\xeb\xfb\x0b\x10\x14\x2f\x90\x9e\xf8\x56\xfd\x3a\x91\x6b\xc0\x85\x15\x43\xb8\x2a\x55\xf8\xcd\x52\x9b\xd2\x1d\x9e\x29\x09\xd6\xd7\xe7\x7b\xdc\xea\x46\x73\xe5\x45\xff\x4a\x67\xfa\x37\xd6\x5f\x1f\x63\xf1\x1d\x5d\x0d\x55\x97\x4a\x30\xab\xe1\x88\x33\x5d\xb5\xdc\xbd\x35\x66\x58\xf9\xb7\x76\x82\xd9\x6d\xab\xb2\x58\xea\x95\x95\x1a\x05\x59\xae\xa4\x06\x4d\x5e\xa1\x68\x05\x01\xdc\xb4\x22\x8f\x2c\x95\x6f\x81\xd2\x10\x11\x44\xaf\x74\xc7\x16\xbc\x8b\xf4\x29\x6d\xc3\xb8\x31\x72\x5c\xc1\x7d\x3b\xfd\x90\x66\xa2\x99\x53\xb2\xec\xd7\x50\x59\x43\x5b\x49\xa2\x5a\xc5\x25\xb4\xfb\xab\x17\x79\x02\x2d\xfb\x6d\xe5\x25\x14\x9d\xcd\x90\x2a\xc8\xa7\xe2\x1f\x34\x4f\x5f\x01\x01\x48\x06\x92\xd6\x16\x08\x95\x2c\x71\x41\x3e\x30\x03\x79\x45\xe2\x06\xc5\xee\xad\xfc\x3e\xdc\x4b\xae\x0d\x79\x6c\xa0\xc5\xf5\x6d\x6f\xfb\x3f\x09\x69\xdf\x9d\xf8\xa7\x94\xf5\xdc\x83\xa3\xb2\xf5\xc3\xab\x36\xbb\x90\x1b\xcc\x31\x55\x1c\x55\x0c\x63\xfa\x41\xd6\xa8\xd5\x7b\xdb\x9b\x5c\x65\xbc\x61\x0c\x3a\x98\x97\x52\xab\x28\xa0\x15\xe7\xc2\xf6\xb2\xfb\xf1\x99\xa7\x6b\x97\x50\xc0\xd3\xd5\x92\x11\x9c\x8b\x40\x22\xfa\x45\xba\xde\x2f\xbb\x41\x43\x26\x79\xb5\x2a\xcb\x46\x08\xa9\x5c\x34\xaa\x40\xbf\xfe\xc1\x0b\xc9\x8f\x47\x29\xdf\xcc\xb6\x50\xb2\xa0\x52\xdf\xb0\x68\x95\x9e\x64\x8a\x92\xd5\xaa\x4d\xd2\xd1\x7d\xde\x67\xcd\xf2\xe6\x37\x7a\xf0\xd4\xae\x37\x96\x07\x38\x9d\x7e\x35\x96\x44\x1b\x9f\x42\x22\xcf\xf6\xaf\x73\xb3\x30\x02\x70\xce\x54\x80\x0b\xd9\x34\xa9\x10\x9a\x02\x56\x3a\xdc\x56\xae\x46\x58\x44\x51\xcd\xaf\x4a\x77\x53\x81\x57\xe5\x87\x0f\x4a\xe1\x2d\xbc\x81\x87\x0f\x5d\xb4\x1a\x2c\xb5\x5e\x00\xdb\x3d\x22\x31\x62\x8f\x17\x27\xc3\xac\xb9\x9e\xd3\xac\xd8\xb6\x71\x56\xa8\x00\x5a\x4c\xc8\xf3\xd3\x55\x5b\x79\xa0\x37\x73\xa9\x31\xf1\x4e\xeb\xce\x40\xb9\xfe\x46\xed\xe5\xda\x08\x81\xfb\x22\x07\x17\xe4\x18\xe8\xb5\xa0\xfe\x5e\x47\x7e\x72\x85\xc5\x54\xe8\x59\xe1\x64\x41\x67\x2b\x48\x99\x34\xa3\xa9\xee\xb8\x8d\x78\xfc\xc5\xc1\xdb\x2d\x1f\xbd\xde\x39\x27\x73\xf6\xc9\x39\x97\x2e\xe8\xfa\x31\x89\xf4\xe9\x87\x2b\x4a\xbd\xc8\x3b\x37\x9c\x0c\x10\xe8\x18\xdc\xff\x75\xc8\x3d\x68\x70\x72\x92\x84\xce\xd4\x1f\x2f\xf5\x5a\x87\xc9\x60\xe6\x3d\x12\x11\xf0\x80\x71\x29\x3f\x6a\xc6\x3f\x9b\xde\xf3\x8f\xd5\x91\x9c\xa9\x0b\x3f\x5e\x25\xa6\xc0\xc6\x64\xc4\xec\xf8\x31\xc6\x4e\x2d\x4c\x6e\x79\x8a\x98\xa3\xa0\xf7\xbe\x7a\x24\x63\xea\xda\xa6\xa2\xa3\x48\xf9\xa4\x94\x71\x71\x23\xcc\x0a\x28\xc0\xa5\xea\xe3\xf5\xb5\x85\xf2\xcb\x8c\xb2\x60\xc2\xc5\x03\xe4\x15\x78\x57\x3c\xd9\xb7\xcb\xa1\x40\x8d\xca\x9d\x86\x0a\xe4\xf8\xc3\xd3\xf3\x22\xa4\x5b\x58\xa2\xc4"}, {{0x50,0x86,0x4a,0x75,0xaa,0x0c,0x69,0xb5,0x93,0x50,0x07,0x7c,0x20,0x4b,0x20,0x75,0x7f,0x2b,0x8b,0x68,0x55,0xc3,0x7e,0xd7,0x21,0xb4,0x9f,0x2a,0xc9,0x17,0xd6,0xb2,},{0xcf,0xf3,0xeb,0xd5,0xea,0x0c,0x8b,0x55,0x31,0xd9,0x21,0x1e,0x22,0x19,0xe4,0xcf,0xe5,0xde,0xd9,0x91,0xd8,0xec,0x42,0x4d,0xf5,0x4c,0xf5,0x3c,0x83,0x76,0xf9,0xbd,},{0x17,0x74,0x55,0xa7,0x16,0x94,0xf1,0x2b,0x76,0x2f,0xd1,0x7e,0x08,0xbd,0xf0,0x10,0xa7,0xfc,0x91,0xd1,0x91,0x41,0xd7,0xae,0x23,0x99,0xbd,0x24,0x1a,0x99,0x8a,0x6a,0x50,0xa9,0x72,0x2a,0xc1,0x23,0x2c,0x59,0xe4,0xe2,0xaa,0xa8,0x28,0x07,0x8b,0x2b,0x92,0xf4,0xa5,0x4c,0xdf,0x0e,0xfe,0xbb,0xa2,0xc1,0x6d,0xbe,0xaf,0x07,0x22,0x03,},"\xb3\x65\xf4\x76\xac\x92\xe7\x60\x12\xa7\xff\xd8\x78\x2a\xf1\x5a\x3f\x5e\xe1\x47\xf6\x03\xa3\x67\xad\xf2\xf9\x72\x46\x13\xe8\x76\x5b\x03\x7a\xc0\xeb\x1f\x67\x37\x36\xe1\x13\x63\xe3\x52\xed\x5a\xe9\xeb\x5a\x67\x12\x5e\xd8\x18\x90\x03\x42\xae\x93\x37\x1c\x43\x3b\x91\xf6\x02\x1d\x4b\xe2\xa0\x52\xb0\xda\x43\xb3\x68\x2e\x7f\x74\x0a\xe8\x01\xd0\x54\x10\x57\x85\x8e\xb0\xc9\xc2\x8d\x98\xf0\x3b\x45\xe1\x28\xaa\xa3\x42\xc6\xb6\x02\x77\x67\x92\xaa\x81\x24\x1c\xad\x06\xf1\x33\x8f\xa0\xc7\x17\x57\x18\x0f\x58\x8c\x83\x01\xd9\x1c\x27\x67\x9b\x50\x21\xcd\x75\xd7\xf6\x17\x1e\xe9\xf8\xd5\x6e\x43\x77\x67\x98\x12\xf6\xec\x5e\xd4\x65\x38\xca\xed\x50\x0c\x1d\x15\xf5\xfc\x86\xea\xf9\xed\x9c\xf9\xa0\x60\x6b\x22\x61\x4f\xaf\x67\x64\x62\x13\x4e\x3d\xb3\x58\x23\x32\xb4\x83\xdf\xa5\x4c\xa2\x9a\x5e\xb0\xd6\xba\xe3\x38\x0e\x19\xd0\x60\x11\x34\x53\xf3\x2b\xba\xb7\xe1\x18\x62\x7b\x40\xbc\xab\xf1\x71\x1b\xcf\xea\xb8\x95\x7d\xe3\x39\x43\x6c\x70\x88\xbb\x88\x31\x01\x53\x9a\x09\xd3\xbe\xf0\x88\xfc\x1f\x84\x07\x64\x03\x6f\xfb\xb3\x3d\xec\xd1\x2a\xac\x57\xfd\x26\xf8\x48\x23\xe1\x95\x53\xd4\xd6\x7e\x00\x0e\x94\x36\xca\x32\x3d\xe0\x99\xbc\x1c\xe7\x5e\xbf\x5d\xdc\xcb\x44\x8c\xd7\xa2\xe4\xbb\xd6\xb3\x2e\x3f\x20\x24\xf9\x6c\xc5\xc7\x15\x2b\x8b\xe8\xed\x0b\xd8\xe4\x36\xd3\x24\xd1\xce\x1d\xd3\xcf\xcc\x45\x2a\x28\xc7\x3a\x95\xaf\x84\x82\xaa\x77\x2a\xe5\x3d\x5b\xe1\x29\x2e\x39\xd1\x71\x6b\x43\x75\x8f\xe5\x63\xc8\xaa\x3b\x74\xbb\xa5\xc0\x2d\x04\x77\x8d\x91\xe3\xd4\x3d\xcc\x72\xbb\x7c\x7b\x04\x3c\x05\xc8\x74\x5b\x70\x5e\xe7\x5b\x5a\x4e\xc7\xb9\x5b\x65\x43\x59\xfb\x5e\x85\x33\x38\x21\x98\x51\xd4\x0a\x8a\xfb\xb4\xf9\x1e\xcb\xb4\x1e\xb8\x15\x34\x19\x6c\xc0\xcc\x9d\x3e\xb7\x14\x39\x6c\xaf\x04\x5b\x23\x17\x22\xd4\x48\x65\x03\x64\x04\x19\x98\x84\x80\xa7\x81\x58\x08\xbe\x97\x42\x87\x37\x2c\xfc\x48\x99\x65\xaa\xc5\xb8\x09\x5c\x63\x75\x81\xeb\x91\x0f\x90\x55\xcd\x1c\x0a\x0a\x3b\x0b\x33\xac\xa9\x0f\x7c\x5b\x8e\x6e\xf6\x83\xab\xf0\xce\x53\xae\xba\x51\xbe\xc4\xfc\x7b\x42\x7a\x23\x47\x36\x0f\xca\x86\x36\xd3\xf1\x46\x92\x84\xf2\x69\xa9\xab\xf0\xcb\x1a\x24\x4a\x15\xd6\xb4\x04\x65\xe7\x5c\xf8\x90\x92\x47\x4a\x8b\xed\xa0\x33\x39\x1d\xd3\x11\xc4\x99\x51\x9a\x08\xc4\xf0\x34\xe7\x19\x18\xd7\xca\xd4\x18\x45\x32\x7c\x89\xe7\xb1\xe9\x4a\xfb\x07\x23\x78\x2c\xe5\xc5\x53\xef\x36\x79\x1b\xba\x63\xde\x17\xd7\x46\x49\x18\x94\x01\x2c\xeb\xd8\x7b\x18\x37\xa8\x21\xef\x5c\x62\x4b\xbc\x84\xcc\x50\x35\xf5\xe7\x0c\xd9\xf2\x1b\x42\x21\x9a\x2d\xce\x30\xe0\xe6\x5c\x25\x0d\x0d\x19\x4d\x2b\x52\x48\x6b\x03\xee\x66\x33\x29\x81\xa5\x22\x51\x74\xdb\x17\xe5\xa8\xbb\x4a\x10\xed\x9c\x8a\x44\x5c\x41\x44\x2f\x3b\xcd\xb6\xb4\xf4\x9e\x4e\x1d\xc8\x76\x61\xa7\xb6\xe4\x1f\x35\xf5\x5d\xd6\x7b\xd4\xcb\xc6\xff\x58\xbf\xbf\xfa\xff\xd2\xc3\x82\xfc\xad\x0c\xae\x8f\x0d\xf9\xaf\x6a\xcf\x09\x40\x00\x76\x18\xa5\x4a\xee\x31\xd9\x32\xcb\xd8\xe8\xb4\x1c\xa0\x38\x21\xc4\x28\xa0\xef\x8e\x58\xd2\x43\x5e\xec\xd5\x03\xc5\x4d\xa9\xc1\x62\x8f\x3c\x74\x9b\x77\x05\x19\xf5\x3b\xf2\xd5\x7e\xd7\x12\xd0\x75\xd3\x73\x37\xb7\x7a\x2b\x10\xa7\x2d\x2d\x59\x0c\x20\xd5\xce\xc2\xca\xcc\x6c\x3a\x8d\xc1\x13\xe2\xd1\x6e\xf2\xd1\xb3\x90\xed\x96\xe4\x03\x6a\xcd\x30\x4e\x0c\x7c\xef\x9d\x43\x1f\x88\x21\x8a\xa1\xf8\x38\x28\xdd\xa6\x36\xb9\x4a\xa7\x61\xc7\x31\x7e\xcf\x11\x6c\xbf\xc6\x11\xe5\xba\x6d\x94\xc5\x0e\x99\x46\x93\x02\x3b\xdf\x2d\x24\x8e\xd6\x03\xf8\x5b\xe7\x3a\x00\x08\xb7\x5a\xde\xf9\x51\xdc\xcf\xa3\x0e\x42\xe9\xf5\xbb\x05\x02\x3a\xde\x79\x75\x06\xcb\xf9\x0b\xb6\xdc\xe4\x3c\xf3\xa1\xc3\x14\x1a\x5c\xc5\xfd\x9a\x4f\x3c\xc5\x57\xb9\x0e\x18\x04\x9b\x3c\x13\x0f\x46\x1e\x4f\x32\x29\x9f\xa1\xd1\xcf\x9c\x7f\x2e\xa2\x05\x35\x65\xe8\x16\x0a\x34\x1c\xdd\xf9\x9a\xcd\xdd\x49\x16\x97\xfa\x70\x51\x24\xab\xda\xb4\x2a\x5e\x8f\xcf\x04\x8d\xd9\xf1\x79\x38\x4e\xc9\x2a\x46\x9a\xeb\x11\xe8\xbc\x62\xb6\x9d\xbc\xfc\xec\x66\x81\x75\x47\x57\xe4\xc5\xd0\xfd\xd9\xb9\xcf\xda\x49\xaf\x09\xb8\x3a\x5a\x4a\x10\xae\xd9\xa4\xcf\x7d\xdf\xa2\x89\x20\x9d\x47\x5a\xb3\x31\x8c\xd4\xb9\x65\xe0\x07\xdc\xe1"}, {{0xe5,0x5f,0x22,0x0f,0xff,0x80,0x79,0x14,0x8b,0x25,0x41,0x89,0xbb,0x29,0x41,0x74,0xf8,0xe2,0xc5,0x75,0xe5,0x7f,0x39,0xd4,0xba,0xc8,0x16,0x5c,0x5e,0x56,0xe7,0x69,},{0x7f,0xd5,0x07,0xd0,0x3f,0xe1,0xd6,0xe3,0xf9,0x11,0xf0,0x59,0x59,0x7b,0x0e,0x29,0x2e,0xa0,0x96,0xf5,0xbc,0x85,0x18,0x52,0x91,0x6b,0xf1,0x21,0x7c,0xaf,0xdc,0x6c,},{0xc1,0x02,0x3a,0x70,0x68,0x74,0x3e,0xc4,0x66,0x8f,0x49,0x5e,0xb7,0xbd,0x4d,0xb5,0x81,0x29,0xc1,0x1e,0x58,0x29,0x9e,0xa8,0x7d,0x6f,0xac,0xd3,0x02,0xbf,0x29,0x6a,0x98,0xe2,0x98,0xfd,0xb4,0x8e,0xdd,0xf9,0xc4,0x4e,0x79,0xae,0x86,0x41,0xf7,0x34,0x50,0x3b,0xb8,0x3d,0xc0,0xb3,0x1f,0x61,0x0d,0xf1,0xd1,0xe9,0xd6,0x19,0xa7,0x05,},"\x1e\x2c\xe8\xbf\x0e\xa7\x87\x5d\xf2\x85\xb1\xdb\xd3\x4b\xbe\x67\x30\x7f\x2e\x8a\xc8\xbc\x14\x2c\x3b\xa3\x14\xc1\x64\x2c\x65\xa2\xd6\x2e\xb2\xc7\x83\xf9\x16\x28\x3c\xa4\xec\x3e\x53\x6d\x3e\xeb\x65\xcf\xdc\xc0\x54\x9a\xc4\xf6\xa4\x5f\x53\x9a\xc5\xdf\x79\xa6\xd5\x76\x82\x19\x73\x9d\x0c\x9a\x0c\xdb\xb3\x12\x42\x29\x6c\x33\x12\xb7\xed\x56\x00\x43\xf5\x36\xcd\x1d\xe9\xa9\xc2\xb2\x89\x64\x1a\x1c\x2d\x84\xf9\xa6\x8b\x7c\x03\xb8\xb8\x56\x7e\x5d\xc7\x13\x8c\x2c\xb9\x67\xc6\x28\xaa\x25\xb2\xea\xb4\x34\xd4\x49\x0b\x23\x50\x74\x09\x71\x7c\xde\x94\xda\x59\xdc\x1d\xc2\x5c\x7b\xe4\x2a\x8a\xa0\x2e\xdc\xf4\xd9\x95\x36\x8e\x6b\xa0\xee\x1f\x95\x36\x00\xdb\x98\xd2\x2d\xe0\xf8\xd2\x57\x02\x0e\x0a\x40\x6e\xe1\x66\x9b\xd5\x27\xb9\xfe\x1c\x61\x1f\x9b\xe5\xa3\xd7\x52\x8e\x8b\x61\x51\x67\x0a\x86\x63\xd2\xed\x1a\x58\xd3\xe3\x69\xbb\x72\x2a\x63\x02\xd7\xc1\x72\xa1\x9b\xda\xf3\x57\xee\xdb\x02\x27\x91\x56\xe3\xb9\x03\x44\x31\xa7\xd6\x8a\x39\x52\x8e\xb4\x02\x35\x87\x57\x3e\xb8\x8f\x30\xf9\x4e\x83\x3e\x8a\x23\xb9\xd0\xac\x7b\x5c\xa8\x78\x24\x59\x6b\xbb\x0a\x3d\x0c\xa1\xb1\x6a\x68\x78\xfd\xf7\xe2\xce\xa3\x4a\x6f\xfb\x95\xa9\xff\x4e\x88\x8a\x97\x59\x37\x35\xb8\x68\xda\x75\xd8\x70\x7b\xbf\xdb\x1d\x93\xeb\x86\xa5\x1e\x2d\x21\x5f\x1d\xd9\xdc\xf7\x83\x88\x72\x9a\x3e\xb0\xf0\x66\xdd\xc9\x41\xe9\x50\xc9\x21\x27\x19\x8b\xce\x63\xa5\x48\x68\xd9\x97\x02\x95\x72\xff\xa6\xf6\xfe\xa1\xd3\xa6\x91\x64\xc9\x99\x69\x53\xdc\x8b\x6f\x9d\xad\x06\x35\xc9\xb0\x81\xf5\x5f\x98\x33\x40\xf0\x81\x4b\xf5\x47\x08\x03\x09\x0e\x79\x97\xf7\xab\x79\x6c\x2b\x15\xad\xaf\x40\x21\xd6\x7c\xff\xaf\x6e\x1e\xf6\x28\x67\x50\x39\x45\xc2\x1a\x32\x96\x64\xe0\x8a\x95\xa4\x15\x82\x30\x0d\xa9\xbe\xd2\x08\x44\x4c\xe6\xaa\x12\xb3\xf8\x67\x79\x5c\x6e\xe4\xc4\xc9\x25\x70\x18\x62\x73\x61\x29\x3b\xd5\x27\x82\x1a\x29\xa3\x39\xb4\x04\xa2\xda\x4b\xd9\x94\x4f\x87\x70\x40\x79\x8b\xb5\x4a\xbd\x2d\x76\xcb\xb1\x8d\xf4\x29\x7f\x4c\xe3\x33\x7f\x64\xd2\x05\x80\xaa\x64\xbd\xec\xac\x37\x6a\x6a\x4f\xf7\x4d\x01\x44\xb2\xfe\x74\xce\xf8\x2d\x50\xa5\xe6\xbd\xd7\x99\xe5\x5f\xf6\x96\x62\xba\xc5\x37\xad\xcb\x68\x81\x22\x8c\xb6\x37\x04\x50\x0c\x14\x3a\x4f\x4d\x1d\xb2\x8d\x45\x56\xbe\xe6\x04\xa3\x99\xff\xd2\x06\x54\x65\x97\xde\xe9\x22\x52\x54\x7f\x6c\x65\x7f\x36\x84\x1a\x87\xd5\x65\xf6\x55\x27\x16\xc2\x5a\x21\x15\x14\x77\xbe\xe9\xef\x96\x18\x55\xfb\x1a\xf2\xda\x80\x68\xf2\x8c\xe9\xff\x70\xd5\x25\x2c\x7a\x63\xa2\xe1\x4d\xed\x6b\x89\x77\xb1\xd7\x69\x1a\x77\xed\x2e\x57\xd2\x2f\xf2\xe1\xfc\x4c\xdb\xce\xb5\xe8\x05\x85\x8d\x90\x38\x96\xea\x67\x07\xe4\x8b\x34\x5f\x60\xe2\x81\x8b\x2f\xce\xc4\xdb\xa4\x8c\xae\xa9\xef\xa3\x82\x79\xfb\x83\xd5\xb0\xf4\x6a\x45\xe4\x2c\x41\x76\x5d\x01\x71\xba\xac\xd8\xd6\xdd\xa7\x99\x13\x14\xb3\x4e\x15\xfd\x36\x12\x7c\x46\x7d\x1d\xe0\x1c\x01\xa3\xa7\x8a\x8c\x1b\x10\x3b\xee\x17\xa7\xa0\xb7\xac\x55\x76\xfd\xc2\x26\xdd\x24\x59\x77\x31\x46\xcf\x38\x26\x14\x17\xca\x19\x13\x5d\xbd\xa9\xbd\xbe\x54\xcd\x17\xaa\x7d\xdd\x38\xfd\xca\xc2\xab\xa3\x96\xb3\x65\xce\xae\x98\x91\x9f\x6c\x51\x77\xfc\x58\x3f\x5b\xee\x3f\x48\x70\x49\x14\x30\x6a\xa1\x9e\xe9\x0e\x3f\xd0\xde\x55\x91\xc6\x69\xff\x35\xab\x16\xfe\xf3\x8d\xee\x18\x7b\xae\x1e\x5a\xaa\x56\x6d\xf1\x05\x44\xb7\xd6\xd4\xeb\x00\xda\x7e\xbe\xb4\xec\xdc\xc4\xd8\xe3\x2b\x49\xcb\xbd\xc6\xe6\x66\x40\xbd\xb0\xf7\x2e\x05\x91\x8a\x05\xc3\x5d\x9b\xff\x7e\x0e\x88\xf2\x41\xd7\xc6\xc8\xcb\x2f\xed\xcc\xdf\x65\x56\x0a\xf0\xe7\x83\x3e\xfe\x34\xaf\x79\x0d\xb6\x31\x89\x02\x2c\xfd\x71\xfc\x8a\xcf\x88\x86\x01\x27\xbd\x4f\xbf\x02\x6b\xcb\xe3\x60\xe3\x3a\x89\x95\xe6\x36\xd0\x3b\xb8\x6d\xfd\x01\x98\xad\xa9\x59\x34\x2d\x8e\x9c\x9e\xd9\x3e\x23\x29\x7d\xa9\x8d\x66\xa0\xd4\xfc\x96\x51\x62\x73\x3b\xc8\x65\x41\xb9\x5a\x6c\x90\x97\xcb\x55\xa9\x73\xc6\xfa\xc1\x94\xe8\xf8\xa1\x64\x27\x4c\x47\x9c\x51\x0e\x62\xd8\xa0\x35\xeb\x75\x11\x81\xb5\x02\xaf\xb6\x14\xd8\xc4\x46\x7b\x54\x45\xc2\x68\xdc\x3d\xd0\xab\xbd\x57\x70\x04\xc0\xbc\x47\xb1\x5f\xcb\x80\x1b\x79\x35\x97\x57\xb5\xea\x89\xcf\x8c\xf7\x7f\xc6\xd1\x60\xe6\xcd\x73\xc4"}, {{0xd5,0xe3,0xa4,0x06,0x71,0xbd,0x45,0xf0,0x88,0x42,0xdd,0xc7,0x8a,0xbe,0x57,0xde,0x3b,0x9c,0xe5,0x64,0x6b,0x73,0x0d,0x2e,0x59,0xfe,0xcf,0x5a,0x7d,0xf8,0x0f,0x40,},{0x41,0x6c,0x37,0xae,0x1a,0xd1,0x5b,0x63,0x2b,0x0e,0xa4,0x39,0x32,0xc1,0x76,0x37,0x28,0x2c,0xd9,0x1d,0x59,0x79,0x55,0x2e,0x5e,0xeb,0xb9,0x9a,0x41,0x9d,0x5c,0x97,},{0x63,0xde,0x6a,0x98,0x11,0x42,0x36,0x5a,0x3e,0x59,0x26,0x31,0xc8,0x27,0x72,0x37,0x80,0x97,0x39,0xd1,0xc9,0x8f,0x5a,0x1c,0xb2,0xcc,0xcd,0x34,0x06,0x7d,0x1c,0xa5,0xdc,0x8f,0x2f,0xc6,0x3b,0x8a,0xe1,0xa6,0x89,0xdc,0xaa,0x29,0x1b,0xa6,0xb6,0x9b,0x1a,0x67,0x95,0xc5,0x79,0xa5,0xdb,0x6d,0xcc,0xee,0x73,0xf6,0xa4,0x20,0xac,0x0a,},"\x09\xfe\x6f\xfa\x8b\xf0\x94\x2a\x64\x92\x13\x57\x65\x9d\xbc\x6e\x4f\x8b\x63\xca\x3b\x9e\xa4\x75\xea\x39\xd7\x92\x52\x90\xa1\x48\xd8\x7b\xb1\x55\x74\x1d\xfa\x28\xae\x1b\xea\xdc\x1f\x3e\x1a\xb7\x67\x37\xeb\x5d\x5d\xda\xde\xd0\xbb\x38\x2d\x7e\x11\xea\x81\xa5\xe7\x80\x16\x12\x69\x62\x60\xba\x3b\xd0\x9c\x80\xb6\x23\xf6\x36\x38\x0a\xa0\x20\x8f\xee\x0a\xff\x70\x81\x2d\x53\x07\xb2\x71\x83\x83\x23\x43\xde\xba\xa3\x60\x5d\xda\xd1\x7d\xdd\x70\xd6\x11\x40\x0d\xdd\x10\xd6\x38\xaa\x3d\x6c\x68\xa2\x8c\xf0\xe9\x7c\x1d\xed\xf6\xcc\xd9\xc7\x31\xa8\x4f\xf0\x40\x5a\x3a\x22\xdc\xba\x00\xab\x44\xd5\xb2\x18\x44\xf1\x4d\x13\x74\xac\x0c\xb1\xe5\x8d\xf4\xa9\x0c\x41\x25\x63\xcf\xe6\x9d\x88\x2d\x35\x0f\x6a\xaf\xbf\xa6\x4f\xa2\xf9\xff\x82\x60\x32\x32\x67\x80\xae\xcf\x93\x05\xd8\x21\x7c\x17\x9d\xbb\x63\xc1\x51\x54\x12\x32\xeb\x65\x97\x92\x65\xd8\x76\xc4\xbc\x43\x05\xc0\x2f\x40\xbc\x1d\x05\xdb\xaf\x7d\xcf\x4f\x7d\xd9\x23\x2c\x17\xee\x0f\x7a\x05\x55\xf5\x04\xba\x37\x74\x54\x84\x88\x93\x3e\x75\x71\xeb\x3f\x71\xc4\xcb\xb2\x0c\xc4\xe4\xa7\x32\x2f\x35\xac\x0e\x79\xa5\x91\x55\x79\x8d\xd0\xf5\xb3\xc1\x13\x19\xb7\xd8\xf3\xea\x79\xee\x3a\xcc\x68\xbd\xb9\xf3\x7c\x7d\x4c\x8f\x9c\xab\xa1\xeb\xf8\xeb\x7f\x43\xb4\x62\xae\xfd\x38\xe8\xc0\xd4\xc6\x39\x79\xcf\x66\x31\xde\xc3\x1a\xb5\xce\xd3\x93\x7e\xf5\xb2\x36\x2c\xb0\x9c\x71\xdd\x09\x66\x57\x70\x0f\xd9\x6b\xda\x55\x5e\x22\x71\x2f\x71\xae\xc1\x1a\xe5\xe9\x1b\x24\xbd\x16\x49\x49\x8b\x8d\x9f\x86\x7f\xb6\xc4\x1e\x07\x60\x80\xf7\x40\xd0\x74\xc2\xa2\x55\x72\xd3\x4e\x66\x6b\x63\x67\xbf\x7c\xbb\x3d\xd4\x2a\x23\x82\xdc\x19\x73\x96\x12\x68\x60\x53\x96\x81\x0a\x45\x6a\xc0\x81\xbb\xfd\x3a\x54\xb4\x48\x81\xfc\xfc\x45\xb4\x24\x5e\xe7\x24\x65\xb4\x87\xd0\x7f\x2e\xf3\xf7\x4a\xdd\x71\xcd\xfd\xd1\x6e\x92\xfe\x25\x7d\x33\x46\x45\xb0\xa9\xbc\x7d\x07\x26\x13\xfb\x9c\x0c\xde\xa9\xdb\x4c\x72\xbc\x87\x10\x9e\x10\x2d\x7c\xba\xf3\x66\xec\xd6\x7f\xbe\x3d\xed\x32\x74\x73\x07\xa7\xae\xef\x61\x73\x5a\xd3\xaa\x5c\xe9\x5d\xee\xcc\x16\xa1\x6e\xb2\xa0\xbc\xc7\xad\xc0\xa1\x1d\x88\x80\x32\x26\x0e\x7c\x7e\xc9\xe5\x4f\x5a\x25\x31\x70\x2a\x7e\x5d\xfb\x87\xc3\x6c\xe3\x13\xa3\x14\x75\x88\xae\xf9\x62\xc7\x2f\xa9\x66\xd2\x41\x63\x7c\x38\x8b\x83\xdd\xec\x93\x43\xbb\x86\x34\x3e\x92\x0b\x12\xce\x1c\xc9\x15\xc8\x3b\x31\xe9\x98\x62\x69\x06\x74\xea\x49\x35\xa4\x88\x09\xd4\xd2\x79\x05\x41\x37\x54\x63\x92\xad\x9f\x08\xe7\xb8\xde\x61\xae\x73\xe8\x1e\x48\x3d\x3c\x63\xb5\xae\x73\x4e\x18\xe7\xa2\x2f\xee\xd1\x23\x3d\x0c\xa6\x33\x55\xf3\xa4\x8a\x33\x06\x7e\x1a\x0e\x19\x71\xf3\x6a\xa9\x29\xfe\x06\x13\xc2\x1c\x4a\xef\xf9\x41\x84\x29\xc3\xb0\x72\xa5\x98\x49\x59\x28\x7a\x5e\x5c\x40\xbe\x02\xbd\x22\xb9\xa7\x9c\x7f\x3f\x53\x59\xd2\xbb\xe4\x93\xf5\x56\xda\xcb\xb0\xcb\x4c\x29\x3c\x7d\x94\x12\x65\xe7\x77\x39\x2d\x14\x8d\x68\xc0\x7a\x13\xc8\xde\xc8\xe5\xd1\xe1\xc7\xf0\x41\xe8\x98\x3e\xdd\xda\xa4\x64\x9d\xac\x15\x72\xa3\x9a\xe4\xc6\x48\x0c\xa5\x50\xe2\xe4\x46\x2d\xcc\x84\x9c\x1b\xab\x78\x1d\x28\xa3\x55\x2b\x2d\x98\xe0\x2e\x15\x18\xe6\x55\x53\x40\xfb\x76\xd6\x8d\xb5\x89\x16\xd5\x56\xa7\xb8\x15\x63\xab\xa8\x1d\x9a\x57\xae\x50\xf0\x4c\xf5\x68\x60\x21\x84\x7d\x79\xb6\xbb\x3d\xa8\x01\x7a\x60\xb1\xc3\xbe\xef\xd4\x8d\x2b\x3c\xd3\x9c\x6f\x53\xc0\x8b\xcc\x96\x7d\x93\x06\x9f\x56\x2b\xb3\x6e\x0c\x4f\x4c\xa6\xbc\xcc\x5e\x57\xd3\x59\x03\xcd\x80\x0a\x61\x78\x5a\x93\x77\x0e\x37\x7f\x4f\xe8\xe9\xf4\xb6\x66\x80\x98\x49\x68\xf9\x64\x9e\x10\x5e\x7a\x11\x9d\x97\x63\x6f\x3a\x05\xca\xea\xb1\xd7\xea\x0b\xc8\x13\x34\xb4\x2d\x5c\xc0\x80\x83\x0e\xc2\x4d\x36\x9c\xf8\x67\x3a\x49\x0d\x59\xeb\x4c\xb0\x81\x81\xda\x39\xa4\x6d\x96\x6e\x23\xfe\xd8\xd3\x8a\x5f\xab\xc7\xe8\x43\xbc\xfb\x01\x5a\x44\x74\xbf\xd4\x6d\x4a\x43\xff\x4a\x51\xa9\x56\x76\x61\xe2\x69\x6d\xb8\x7c\x37\x58\xd3\xb5\x4c\xe7\x84\x6d\x13\x91\xd7\xf4\x65\x26\xef\x30\x84\x4d\x49\x32\x00\x18\xd7\x49\xb5\xd4\xdf\xd3\x0d\x38\x0c\x6e\x57\x3f\xc4\x14\xd8\xfe\xfc\x5d\x71\x04\x70\x75\x6b\xec\x00\xd8\x8a\xc4\xaf\xc9\x25\xd1\xed\xe3\x7e\xae\xe6\x00\x4a\x23\xea\x0e\xf8\xb6\x0e\x48"}, {{0x4e,0xd7,0x04,0x8a,0xa1,0x28,0x4d,0xbb,0xcc,0x24,0x89,0x38,0xb4,0x0c,0x35,0x74,0x21,0x93,0x59,0x7a,0xdd,0xaf,0xdd,0xe0,0x64,0x13,0xb8,0xd4,0xcc,0xfb,0xe1,0x37,},{0xbf,0x84,0x1f,0xe4,0x44,0xad,0xd1,0xf7,0xc3,0xea,0xcd,0xfd,0x07,0x84,0xb4,0xe8,0x55,0xd2,0x40,0x5f,0x40,0x21,0xcd,0x9d,0x82,0x66,0x07,0x1c,0x32,0xc8,0xa2,0x73,},{0x10,0x6a,0x9d,0xeb,0x23,0x27,0xf3,0x38,0xcc,0xb7,0x1b,0xcc,0x94,0xe2,0xfe,0x3d,0x2e,0x97,0x3c,0xe6,0xdd,0x8f,0xa7,0xba,0xca,0x80,0x8b,0x41,0x11,0x81,0x3e,0x3b,0xc3,0xb4,0xd8,0x8e,0xfa,0x6a,0x00,0xc4,0x71,0x0b,0xbf,0xe5,0x31,0x96,0xf9,0xab,0x3a,0x15,0x0b,0x16,0x54,0xb9,0x08,0xfe,0xac,0xf9,0xc1,0x3d,0xf2,0xd6,0x38,0x02,},"\xdc\xff\x95\x87\xd6\x04\x6c\x11\x32\xbe\x07\xdf\x26\xdf\x63\x82\xff\x92\xcf\xc8\xeb\x53\x45\xc5\x1d\xd5\x0d\xd1\x88\xee\x76\x9f\x10\xa4\xde\x5e\x88\x83\xd1\x16\x96\x7b\xea\x97\xd3\xb3\x2b\xc8\xae\xbb\x9f\x01\x3d\x6d\xf9\x52\xf2\x51\xc1\xa3\x12\x34\x6e\x72\xce\xe1\x35\xa1\xbf\xd7\x6b\xf3\x08\x0a\x35\xc8\x38\xb4\x4d\x75\x5f\x26\x3d\x21\x03\x10\xfa\x8d\x28\xc4\xca\x52\xf0\x8c\xac\x5b\x83\xa8\xa3\xb1\xdf\xc4\x6d\x9b\x75\x2d\x9f\xc7\x36\x49\xd0\x0b\xb9\xee\x99\x26\x50\x63\x9c\x22\x5d\xea\xc1\xf3\x9b\x9e\x80\x36\x89\xd1\x9e\x6d\x9f\x8e\xf4\xf5\x1f\x1d\x11\x60\x1f\xac\xf4\x10\xdb\x64\x8b\xcc\x82\xbf\x64\x87\x69\xa7\xdd\x59\xc6\xe8\xa2\x37\xdb\x23\x9d\x3f\x66\x1d\x78\x52\xc4\x26\xd3\x94\xa9\x05\x09\x52\x6a\x85\x9b\x47\x64\x59\xde\xdb\xe6\xd8\x99\x36\xc0\xf3\x98\x99\x95\x51\x1d\x4a\x57\x6e\x54\x2c\xce\x5e\x0d\xd7\xee\xef\xeb\x03\x26\xd3\x3f\x25\xc2\x2a\xb6\xe7\x69\x06\x33\xf4\xc9\xed\x2a\xad\xf1\xd2\x4f\x94\x86\x21\x23\xa4\x64\x04\x2c\xea\x19\x3a\x2f\x04\x79\xd3\x9b\xcd\x1b\xbd\x1c\x7a\x0c\xa7\xe6\x25\x8e\xd3\x73\x23\x72\xf5\x4e\x0e\xd5\xe3\xf1\xe2\xe4\xd4\xa0\x4c\x51\x0b\xee\x08\xd1\xc6\xd5\x70\xcf\xd6\x3a\xbf\x14\xb4\xee\xf0\xb9\x6f\x39\xca\x29\xe4\x3c\x52\xf2\xca\x3d\xfd\x46\x0f\x66\xe3\x02\x35\xb1\x59\xaa\xef\x2c\xc1\x56\x01\x29\x69\xfd\x3d\x15\x99\x78\xd6\xca\xa0\xa9\x45\x22\x29\x1f\x79\x89\xd8\xaf\x10\x83\x19\x96\x13\x7b\x68\xd9\x7f\xc1\x7f\x6a\x9b\xc2\x84\x5e\xf3\xdd\x47\xcb\xc3\x86\xe8\x97\x7a\x86\x54\x36\x34\x12\xda\xc3\xac\x51\xc6\x38\x17\xb7\xc0\x51\x87\x8d\xcf\x45\x8a\xb3\x63\x0d\xd7\xae\xf6\x8d\x27\x0f\x8d\xa7\x88\x0a\x46\x7b\x33\x04\xf5\xba\xed\xfb\xa9\x17\x3e\x7e\xfd\x00\x7c\x41\x2d\x17\x20\x9c\x56\xd2\x39\x68\xe3\x40\xb8\xa0\xed\xb4\x1b\x7e\x2a\x40\x88\xbe\xc0\x1b\x53\x2d\xf8\x9b\x52\x15\x81\x31\x31\x10\x7b\x7b\x47\x4f\x03\xc2\xe4\x7d\x43\x17\xf1\x1c\x4f\x51\x60\x90\x43\x04\x99\x7e\x76\xa1\x21\xa9\x56\x02\x35\x20\x8d\x79\xb2\xda\xb4\xf7\xe1\x96\x79\x32\x02\xc0\x90\x2c\xe9\xc4\xbf\xc1\x0b\x8f\xe3\x97\xe3\x5c\xa0\x25\x64\x54\x66\x2a\xe8\x78\xef\xb0\xa0\xa6\x06\xfa\xc0\xa9\x52\xc9\xf6\xba\xae\xb2\xd4\x5b\x25\x8c\x61\x75\x59\xc0\xed\x25\x28\xa8\x8b\x49\xaa\x44\xee\x43\x03\x5b\x0d\x79\x3a\xad\x39\x53\xc1\xa5\xa3\x46\x38\x66\xbc\x81\x5b\x1f\xfc\xe2\xff\x2b\x65\xe0\xfd\x47\xdb\xc1\x5f\x4e\x7a\x06\xbf\xab\xc2\x90\xfc\x62\x09\x0b\xf7\xd9\x48\x53\xf7\x7c\x04\x44\xa9\xb9\x0e\xfe\x77\xd1\xce\xb4\xbd\x39\xe2\x03\xbc\x88\x40\x11\x62\x4e\x68\x46\xe2\xa3\x71\x05\x8d\xab\xa6\x3c\x23\xf8\x6c\x42\xc3\xe3\x1e\xaa\x4b\xd7\xd7\xa4\x2a\xf2\xd5\x24\x89\x6e\x31\xba\xa3\xe2\x07\x63\xf8\x5d\xcf\xd5\x27\x75\xf2\x80\x72\xd8\x9f\x0b\xd4\xfa\xe3\x0d\x0b\x13\x7e\xe3\x7a\xb0\x63\xba\x06\xfe\x9d\x4e\xc6\x2a\xbb\x2f\xea\x0f\x81\xb8\xcb\xee\xfc\x03\x00\x80\xb8\x02\x6a\x58\xfd\x18\x67\xf6\x6b\xe1\x15\x4e\x65\xbf\xea\x7d\xce\xc5\x5f\xe3\x2d\x51\xfb\x0b\x4a\x8a\x5a\x8a\x04\x42\x63\x94\x3d\x6a\xc8\x01\x1c\x6e\x67\x01\xbe\xec\x3a\x88\x65\x58\x40\xc4\x89\x2d\x45\x0d\x31\x2b\x76\x52\xd2\x51\x47\x69\xf2\x3b\xfd\x6e\x70\x46\x46\x7d\xf2\x9a\x28\x7f\xf3\xc4\xc9\xd0\xe6\x4e\x6d\x9e\x4e\xde\xe1\xb9\x35\xd0\x76\x81\xd4\x70\x04\x35\x28\x86\xe8\x47\xb0\xc6\xd5\x76\x2f\xd4\x5a\x81\xa5\x3c\xce\x94\x76\xc8\x87\x22\x1a\xea\x6c\x0c\x82\xbb\xf3\xb2\x97\x93\x2e\x5b\x11\xe5\x38\xa3\x24\x5d\x63\xd7\xb7\xb0\x91\xdf\xa1\xd7\xb9\xa0\xe2\xdb\x66\x98\xa4\xc5\xe9\xfe\x93\x16\x62\xd7\xc6\xec\x6d\x9d\x5b\x92\xbc\x7e\x04\x15\x55\xdf\x4d\xf0\xca\x11\xca\xbc\x48\x5f\x9c\x55\x61\x38\xa7\x17\x45\xf0\x3b\x97\x83\xbb\x20\x0b\x72\xd2\x33\x69\x7e\x8b\xcf\x6b\x41\x17\xee\x67\x63\xd7\x92\xd7\x42\x22\x64\x85\x2f\x4f\x30\xf8\xd1\x89\x0e\x2e\xa0\x80\x98\x04\x0f\x7f\x28\x8e\x4a\xbe\x90\xb6\x3c\xab\x2c\x14\x37\x30\x60\x84\x0e\xf8\x27\xec\xc8\x46\xcd\x56\x0e\x90\xa2\x0b\x83\x05\xf4\x63\xc3\x6e\xa0\x38\x84\xa5\xdf\x4c\x25\xf1\xba\x9e\xa1\x25\x95\x2d\xc0\x91\xb9\x75\x16\xde\x1d\x28\x7c\x0e\x2b\xf5\x29\x77\x5b\xa6\xd2\xf8\xed\xe0\x3c\xb4\x2c\x1e\x40\x0e\xc8\x04\xa9\xdf\x08\xe4\x6f\x44\xb5\x06\x63\x46\xe3\xf7\xc7\xa1\xa8"}, {{0xc7,0xec,0xa8,0x3e,0x94,0x85,0x76,0xbd,0x9f,0x27,0x8f,0xd7,0xb8,0x28,0x00,0xa4,0x1d,0x92,0xda,0x9b,0x72,0xd5,0xa1,0xcc,0xdb,0xbc,0x65,0x58,0x10,0x52,0x56,0x8b,},{0x07,0x6b,0x83,0x52,0xdc,0xa8,0x03,0x1e,0x85,0x3c,0x8d,0x90,0x99,0xc2,0xef,0x57,0x93,0x37,0xcc,0x7b,0x2b,0x4c,0x75,0xd1,0xa0,0x63,0xea,0x3e,0xc7,0x25,0xb7,0xfd,},{0x86,0x99,0x6a,0x1b,0x8e,0x49,0x5d,0x42,0x52,0x77,0xe9,0x7c,0xc0,0x83,0x05,0x49,0x34,0x9b,0xc2,0xb6,0xf3,0xdc,0xda,0x60,0xf3,0xb7,0xd3,0x50,0x1b,0x8b,0x50,0xb5,0xb4,0x58,0xcd,0xa5,0x8b,0x43,0x6e,0x23,0xc0,0x2c,0xd4,0xa2,0x2b,0x23,0x48,0x13,0xaa,0x9b,0xcc,0x3c,0x61,0xf9,0x83,0xc0,0xb7,0xef,0xec,0xa0,0xf1,0xbe,0xc2,0x0d,},"\x8d\x8c\xef\xd6\x73\x85\x5c\xcd\x8e\xb8\x53\x4c\x31\x2d\x33\x80\x05\xbb\x05\xf5\xb9\x50\x7d\x58\x85\x9e\x1e\x95\x3b\x0a\x4d\x91\x3b\xe7\x59\xd8\xed\xfa\x92\x89\x8c\x6e\x70\xa5\x3f\x81\x95\x4f\xc3\x44\xb4\xad\x62\x46\xb0\x10\x94\x81\xba\x6f\x73\xae\x63\x31\xab\xf2\xdf\x10\x8e\xb2\xe8\x5c\xeb\x08\x7c\x1f\x6f\xcf\xc9\xde\x2c\x1f\x13\x9b\xa1\x77\x1b\x72\x68\x03\x02\xd8\x11\xcc\xd0\xcc\xd4\xe0\xc7\xfe\xb0\x13\x2e\xb2\x0b\x33\x4e\x5a\xab\xe5\xf6\x11\x9f\xd8\x94\x7d\x9e\x88\x52\xe1\xeb\x1b\x74\x10\x7e\x17\x41\x00\xe3\xe6\xdf\x0c\x3a\x68\x13\x0c\xa6\x30\x94\x02\x59\x4b\xb5\x0c\x1c\x8e\x27\x74\xf1\x32\x14\x49\x6a\x7b\x1f\x34\x83\x85\xea\xbf\xbc\xcb\xac\x16\x5a\x5a\x2e\x7d\x9d\xea\x5f\xfd\x58\xb0\xbd\x88\xb4\x9c\xb3\x31\xec\xb7\xf4\xe9\xd6\xba\xe9\x79\x1a\xd7\x88\xe6\xab\x89\x26\xc1\xcc\x16\x15\xde\xaf\x4c\xc4\x00\xc7\x7a\x31\x61\x97\xbc\xa1\x90\x49\x95\xe1\x36\x5d\x1b\x97\x02\x64\x83\x76\x11\x69\x30\xf6\xf9\x11\x66\xe6\x14\x86\x29\xe7\x5b\xe2\xd0\x68\x95\xf6\xa8\xd1\x5d\x5a\x94\xca\x69\xb7\x12\xf3\x3b\xcf\x95\xbe\x0c\x1b\xe6\x90\x2b\xb7\x8b\x8a\x23\x0d\x7a\x85\x60\xc4\xd8\x4e\x23\x89\x55\x2a\x81\x57\x1a\xa6\x65\xc1\x9c\x2e\x93\xb0\xd4\x3e\x8c\x2c\xbd\x9e\x88\x5d\x70\x52\x51\x8b\x77\xc4\x7e\x84\x1d\x11\x9d\xc2\x8b\x65\xa7\x50\x4f\x66\x42\x71\xf0\x6c\x7f\xf3\x93\xf8\x25\xb1\xe5\x93\x0d\x02\xb9\xc7\x00\x35\xe2\x92\x41\x1c\x4a\xed\xf6\x60\x47\x00\x69\x70\xe3\x49\xdf\xca\x7f\xb4\x1c\x10\xfd\x53\x7e\x35\x25\x2e\x10\x9e\x33\x36\xd7\xa8\x2a\x14\xde\x5d\x55\x40\xc6\xfc\x65\x71\xd5\x77\x4f\x39\xb7\xc4\x03\xe7\xb8\x87\x5e\xc2\x15\x87\x7e\xfc\x6c\xc8\xea\x48\xb1\x86\xb4\x68\x21\xea\x5e\xf2\xba\x8b\xac\xd4\x0d\x79\x7e\x6a\xdd\x06\x41\x32\x83\x14\x5b\x60\x46\x2b\x35\x03\xc5\xb8\x81\xd7\x9a\x59\x29\x55\xd1\x8a\xfa\x08\x96\x9e\x31\x45\x7f\x5b\x27\xda\xec\x01\x03\x38\xed\x86\x7f\x30\x08\x78\xfd\x87\xce\x32\x18\x80\xb8\x60\xa0\xc6\x42\x84\xca\x2d\xc1\x5f\x5e\x53\x10\xe1\x0e\x6a\x73\xa7\xea\x65\x0e\xa9\xd3\x73\x69\x4d\xa4\xdd\x42\x9a\xe7\x41\x2e\xf9\xb2\x9c\x83\xb3\xb0\x68\xc7\x47\x69\xf4\x31\xce\x06\x15\xf9\xff\x4f\x82\xba\xac\x47\xb4\xbc\xe9\x04\x49\xec\x41\xc2\xa2\xd5\x73\xd9\x2b\x92\xe0\x56\x31\x48\x61\x65\xbc\x71\x0e\xf5\x84\x0f\x80\xda\xe9\xf9\xdd\x5c\xff\xd4\xeb\xf5\xd1\x07\x46\x51\x0c\x5f\xcb\xfe\x62\xcb\x97\x03\xc0\xb1\x54\xc8\x6f\x10\x81\x66\x72\x49\x76\x70\xa3\xb0\x15\x0b\xb4\xe1\xb0\x3b\x3b\xd5\x44\xc1\x2a\x90\xc3\xed\xcc\xd7\x90\x0e\xbb\x5b\x31\xc9\x11\x17\xcc\x82\x81\xa3\xc4\xed\x04\x99\x8e\x99\xae\xd4\x1b\xb4\x1f\xce\x99\x90\xa4\x06\x48\x5b\x14\xdb\xe3\xbc\x1a\x5f\xcf\x77\x19\x50\x79\x90\xda\x3b\x0b\x3c\x68\xad\x40\xd8\x95\x0c\x0d\x49\xce\xd1\x01\x93\x19\xa3\xf3\x6a\xff\x6c\xaf\x75\xd7\xf9\xa0\x93\x3d\xd3\xab\xdd\x76\x92\xa1\x56\x2f\x06\x13\xfe\x4a\x27\x8d\x5c\xe4\xc8\xda\xfb\xb5\x5b\x2e\xc2\xaf\x2b\x24\xe8\x39\x6f\x58\x7b\x17\x0c\x9c\xa6\x54\x75\x08\xfa\xcd\xe7\x34\x90\xdf\xb0\x1e\xb6\x65\x7e\x3f\x4f\x27\x23\x04\xb7\x0b\xf0\x47\xa4\x3a\x2b\x58\xe5\x56\x8b\xc5\x2b\x2c\x8d\x4c\x03\x21\x9a\x5a\x8b\xd3\xdc\x06\x43\x18\x59\x13\xc0\xaf\x74\x11\xf8\x1b\x77\xbe\x2a\x9b\xfd\x5c\xb2\x69\x77\x11\x3d\x26\x58\xa9\x71\x92\xb4\x1c\xf6\xc7\x01\x1b\x0f\xf6\xa1\x1c\xbf\xf3\x50\x55\x46\x32\x2f\x0b\xef\x60\x97\xe4\x6b\x36\x49\x2b\x01\x6a\x45\x62\xe0\x92\xb6\x7c\x3f\xcc\xc7\x78\x0e\xa2\x74\xd9\x6d\x59\x58\x49\xf7\xe2\xa5\x6d\x79\xed\xcb\x32\xd7\x84\x04\x9f\xc1\x32\x4a\x5b\xee\xfc\x24\x19\x3a\x66\xe1\xca\xc4\xa1\x3a\x81\x1b\x90\x95\x83\xcc\x91\x0c\xf0\x8d\x4b\x10\x4d\xbd\xb8\xa6\xf2\xb2\x1f\xbc\x1d\xb1\x17\x5a\x1a\x23\x56\xa6\x3d\x3e\xea\x9d\xbb\x85\x37\xd2\xc6\x86\x27\x54\x3d\xf0\xd1\xf8\xfd\x8d\x57\xa1\x8b\x0d\xbd\x69\xb9\x20\xcb\x9b\x28\x6e\x3c\x07\xae\x44\xae\x2e\x1b\xee\xc0\x1c\xee\x6b\xa9\x88\xb5\xd1\xaf\xb9\x97\x90\xb1\xdd\x91\x06\x55\xc4\x3d\x7f\x2a\x3e\xd3\x75\x4b\xa4\x65\x16\xd2\x78\x70\x55\x59\xf5\x74\x16\x22\xa9\xab\xb5\xc8\xf2\x3f\xa9\x76\xa9\xd1\x46\x94\x8a\xde\x6b\xa6\x60\x8a\x35\xe4\xe0\xd3\x30\xe8\x2e\x96\xa2\xbe\x6c\x78\xad\x0c\xd4\xd8\x70\x4e\x57\xce\xa1\x46"}, {{0x7b,0x46,0x9d,0xf9,0xc8,0xf7,0x84,0x89,0xab,0x47,0xcc,0x70,0xa8,0x85,0x03,0xf1,0xb8,0xf3,0xd9,0x29,0xc3,0x3f,0xea,0xb1,0xc5,0x03,0xf0,0x96,0x9a,0x3a,0xc3,0x7b,},{0xa8,0x14,0xc7,0xe3,0x73,0xd0,0x11,0x3b,0x90,0x62,0x4a,0x8a,0xb2,0xbc,0xa5,0xcf,0x53,0xbf,0x52,0x8e,0x39,0xfc,0x3d,0x36,0x7d,0xe1,0x54,0xb9,0x4b,0xb2,0x2f,0x1d,},{0x18,0xfa,0xf8,0x2d,0x08,0xe1,0x06,0x8e,0x9f,0x98,0x3d,0x81,0x2f,0x05,0xfd,0xb6,0x92,0x9d,0x27,0x23,0xdb,0x1f,0x77,0xc4,0x5a,0x74,0xbb,0x09,0xcf,0xf2,0x77,0x73,0xb5,0x4c,0xe8,0xf4,0x3b,0x30,0x15,0x41,0x91,0x12,0xe7,0x25,0xea,0x7a,0xcd,0xa4,0xb2,0x3b,0x81,0x20,0xe7,0xb0,0xcf,0x42,0x01,0x53,0xe5,0xb0,0x3d,0xd0,0x61,0x09,},"\x1c\x0f\xd7\x45\x0e\x29\x67\x5c\x93\x09\x16\x38\xc2\xac\x93\x3c\xa9\x97\x76\x6e\x38\x0e\xc3\x3a\x92\xb8\xa7\xe1\xa1\xed\x98\x21\xc7\x5f\xcc\xb5\xc5\xf3\x76\x0e\x76\xd0\xe8\x81\x03\x11\xdd\xc6\x24\xea\x87\x42\x13\x1c\x1c\x43\x08\xf4\x17\x8e\x04\xd0\x49\x60\x69\x3d\x84\x6c\x1f\x51\xd8\x77\x3b\x6d\xeb\x34\x43\xd8\x74\xb9\xe2\xde\x3b\x77\x78\x51\x85\x51\x8b\x2e\x9e\xe7\x36\xc6\x3a\x39\xc8\x21\x2c\xa8\x66\x9e\x16\x1d\x13\x1b\x1a\xb2\x26\x4f\xdd\x72\xdc\x56\x28\xb1\x1c\x06\xf2\xaf\x9f\x07\x89\x04\x7b\xdd\x4e\xbb\x5d\x55\x89\x9f\x74\xdc\x4e\x12\xe7\x97\x53\x63\xf6\x3a\x8d\xa7\x6b\x55\x85\xc1\x6b\xb6\xd5\x5b\x05\xfa\xde\x87\x13\xd1\x9c\xad\x1a\x21\x16\x40\x26\x26\x91\xaa\xc9\xb4\x37\xa9\xec\xf8\x9a\x92\x46\xec\xdb\xa1\xff\x0b\xea\x78\x49\x4c\xee\x15\x29\x62\x16\xea\x6b\xb8\x82\x47\x9d\x24\x37\xc9\x49\x4a\xc7\xfa\x4f\x30\x15\xd1\xd3\x14\x9d\x55\x64\xd7\xc1\x1a\x7e\x7b\x61\x4f\x7d\x3e\x9d\x45\x4f\x0a\x05\xb0\x40\xa1\xe0\x6f\xe7\x83\x7c\x2a\x9d\xa2\x79\x4d\x91\x8b\xff\xa9\xe6\x1a\x0c\x3f\x08\x9f\x6c\x9f\x7e\xea\xc5\x86\xe3\x4b\xf9\x44\x70\xd9\x13\xda\x41\x37\x1c\xac\xdf\xc7\xee\x8b\xd1\x13\x56\x55\x56\x69\x24\xea\xdf\x09\x6a\xc0\x30\xa6\x59\x02\xc1\x03\xb1\x72\xd1\x2e\x88\xf0\x53\xfc\x56\xee\x73\xf3\x18\x70\x81\x70\x83\xaf\xa8\x02\xf7\x66\x8b\x81\x5e\xe7\x90\xf7\xd4\x0b\x43\x7a\x2e\x6d\xb2\xf0\xfb\x26\x83\x6b\x4b\x23\x31\xeb\xa5\x55\x39\x61\x4c\x0f\xe1\x72\x40\x24\x2d\xd3\xaf\x73\x83\xbc\xff\x7d\x3f\x47\xd6\x54\x4b\x08\x72\x0c\x0a\x52\x44\x1f\x74\x11\x93\x5d\xd4\xa9\x52\xd3\x86\x51\xa8\x00\x05\xfa\x3e\xb0\xea\xec\xc7\x35\xd2\x90\xe8\xbd\x5e\x31\xb7\x40\x14\x0e\x13\x6b\x2c\x00\x25\x23\xd8\xeb\x2a\x0a\xb5\xbd\x68\x70\x02\xb3\xb9\x26\xf7\x5e\xb6\x90\xd1\xda\x73\xad\x23\x58\x92\xf3\xb2\x3a\x75\x6b\x60\x5a\x43\x7c\x00\xe0\x62\x13\x04\xe8\x10\xf9\x9e\x31\x4c\x4d\x63\xe3\x22\xd9\xb6\x98\x15\xf3\x82\xff\xa1\xec\x62\x80\xfc\x0e\x64\x1c\x8a\x6f\x6f\x7f\x61\x98\x5b\xd3\x56\x7e\x0f\x44\x0d\xe9\xf7\x62\x17\x15\xda\xcd\x07\x42\x8c\x00\x90\x15\x4d\x59\xce\x6d\xb4\x01\x69\xc6\x58\xac\x5b\xf4\x4b\x67\x67\x1f\xe1\x9e\x4b\x5b\x38\xaa\xd2\xd3\xd4\xe1\x90\xa5\x50\xaa\xd4\x18\x83\x52\xf7\x98\x1a\x6d\x88\x06\x25\x02\xdf\x86\x79\x13\x50\x39\x2d\x41\xce\xfa\xcb\x24\xe3\x7b\xc7\x00\xcb\x02\x91\x90\xc3\xb1\x82\x14\x77\xe1\x17\xd5\xa4\x62\xfb\x3e\x79\x13\x3b\x10\x73\x59\x89\x66\xf5\x2b\x63\x25\x6d\xbf\x32\x6a\xce\x14\xdb\x0c\x80\x05\x8c\xf0\x0d\x68\x9a\x0a\x58\x11\x1a\xf1\x69\x27\x44\xbf\x79\x1b\xcb\xb4\x27\xa3\x72\x24\x6e\x95\x01\xa8\x5c\xd5\x20\xc6\x1a\x1e\x59\xee\x18\x0e\x8c\x97\x19\x2f\x60\xfa\x5d\x3a\xb0\x5d\xf8\xd8\x55\x1c\x1a\xc6\xca\x0a\x9a\x01\x2f\xfe\xce\xb3\xc1\xf5\x21\x41\x1e\xdb\x65\x09\xbc\x27\x8a\x65\x1e\x12\x9e\x96\xb0\xad\xc7\xae\xd7\x07\x22\x1c\xae\xac\x22\x98\x84\x41\x3d\xaa\x10\x59\x5d\x22\xd1\xdb\x70\x82\x12\x5f\x4f\x96\x95\x00\xa1\xd4\x8d\xac\xda\xe8\x0f\x40\x29\xc1\x63\xdc\xd7\x9d\xdc\x64\x68\xfc\xda\x16\x37\xb8\x7d\xdc\xf2\xa3\xd9\xb4\xd2\x99\xa0\xe5\x39\x4d\xf9\x0e\xd0\x3b\x62\x13\x7b\xa6\x7b\x9f\xea\x8a\xe1\xf0\xd2\x2f\x91\xc6\x3a\x24\xb5\x93\x4f\x74\xc2\x65\xc4\x3f\x1b\x92\x3d\xb9\x80\xad\xfc\xee\x83\x13\xda\x52\x01\x76\x73\x0e\xf9\x73\x6b\x27\xe6\xba\x32\xd1\x7e\xa6\x9d\xca\xc6\xf4\xa0\x16\xed\xfe\x2d\xb5\xa5\xbb\x3b\x64\x93\x2f\x70\x11\xf1\xc4\x53\xbb\xe8\x8b\xba\xc8\xc7\x03\x5f\x93\xfe\x39\xb5\x81\xfc\xaa\x7a\xaf\x08\x2f\xbe\xd0\x04\xfd\x1f\xd5\xa4\xe2\xd9\xc1\x97\x16\x60\x4b\x19\xce\x19\x9e\x21\x69\xa7\xbe\x51\x8d\x5f\xad\xd2\xac\x31\xb9\x54\x78\x08\x2a\xc9\x13\x06\x00\x8d\xe4\xec\x0e\xf4\xc9\xf9\xd6\xf9\x6d\x2f\x66\xd6\x2f\xaf\xc2\x19\x40\x82\x80\x8a\xf0\xd6\x7b\x9f\xba\x0d\x18\x9b\x05\x5f\x06\x1c\xca\xc2\x4b\x27\x61\x0b\xfb\xd5\xa2\x23\x2d\xd6\xf3\xc8\x90\xa9\xb1\x26\x64\x71\xb3\x22\xe9\xe1\xbf\x97\x75\x7b\xef\x72\xab\xce\xe9\x3b\x05\x1f\xc9\x23\xcf\xd4\xe7\x23\xbe\x3e\x17\x14\x3f\x38\xee\xbb\x90\x0b\x5b\xbc\xf7\x30\x47\x32\xb9\xc0\xa1\xc5\xfc\x95\x09\xa6\x93\x58\x0a\xe7\x3a\x4c\xdf\xc5\xfb\xf2\x0c\xe8\x1e\xbc\x83\x5c\x6c\x90\x9d\x83\x11\x41\xb1\x94\xf6"}, {{0xdf,0xec,0xde,0x7a,0x56,0xa1,0x8c,0x1f,0x19,0xd8,0x0a,0x19,0xa4,0xf1,0xda,0xdd,0xd0,0xbc,0xec,0xb0,0x1e,0xec,0xad,0x6d,0xfc,0xa0,0xf9,0x57,0xa9,0x14,0xed,0x7a,},{0xaf,0xba,0xa6,0xe7,0x3e,0x85,0xb0,0x2b,0x25,0xa4,0xb5,0x87,0xec,0xb8,0xc4,0xdf,0xb7,0x9a,0xa9,0x20,0x27,0x61,0xef,0xa8,0xd1,0xdf,0x2c,0xd0,0xaa,0x63,0x16,0xc4,},{0xb4,0xfd,0xe5,0x5b,0x91,0x6c,0xf6,0x00,0x68,0xf1,0x9b,0x25,0x35,0x1c,0x14,0x10,0xdc,0xf6,0x6b,0xfc,0x40,0xf9,0x6d,0x1b,0xa2,0x36,0x8b,0xc2,0xb9,0x11,0x5a,0xaa,0x5b,0x2d,0x1c,0xf0,0xe3,0xdf,0xca,0x02,0xac,0x90,0x2a,0x94,0x3e,0x24,0x89,0xa5,0x68,0x1b,0xba,0xfe,0xd3,0x9c,0x6e,0x33,0x21,0x1a,0x9c,0xb2,0xff,0x6e,0x54,0x09,},"\xae\x6e\x8f\xf6\x5c\xcd\xe6\xf2\x64\x84\x95\x08\x26\xb4\x36\x23\x05\x8a\x5e\xfe\x02\x0b\xb1\x9b\x7d\x8b\x4e\x25\x76\x8b\x69\x27\x34\xfe\x07\xc9\x13\xb9\xe8\x81\x26\xbe\xcb\xf1\x4a\x0f\xd0\x20\x5b\x39\xfc\xc2\xae\xc3\x73\xf8\xc1\x84\xc6\xa9\xbb\xbb\x84\x44\x9a\x7c\xa3\xb9\x20\xad\xa0\x88\x01\xdf\xc6\x6f\xf1\x9a\xeb\x92\xf2\x55\x53\x99\xa4\x30\x27\x7a\xe2\x2d\x23\x75\x4e\xaa\xce\x3c\x73\x84\x67\x97\x53\x6d\xd7\x1a\x56\xf4\xb5\x84\x2c\x0f\x41\x0d\x19\x89\xac\xac\x5d\x80\x5d\x26\x57\x2c\x0f\x3a\x64\xdd\x20\x71\x66\x22\x12\xd5\x2f\xe9\x9e\x59\xd9\x66\x04\x77\x77\xf9\x03\x0f\xa4\xfd\x2e\xe7\x4b\x7a\x7c\x9f\x7c\x34\xa6\xdc\x7e\x03\x59\x3a\x13\xd6\x4c\xe6\x24\x53\xee\x3c\xa3\x0d\x84\x67\x28\x39\xf1\x9f\x1c\x15\xd0\xc4\x5d\x27\x55\xbb\x39\x4a\xcf\x4d\xcb\x7f\x7f\x07\x11\xac\x40\xea\x46\x61\x2e\xa3\x7a\x76\x07\xad\x32\xe8\x18\x26\x5f\xab\x19\x33\xf5\x09\x4e\x2d\x03\xbc\xfa\xa5\xf6\x16\x67\xf3\xb3\x7f\x00\xc4\xc5\x8d\x9b\x41\xb9\xaf\x39\x00\x48\x2b\x0f\xfb\x4f\xa4\x37\x6a\xa0\x40\x00\x9d\xec\x2f\x45\x25\x79\x9c\xb0\x05\xf3\x9d\x74\xcb\x2d\x8d\xce\x8c\x20\xc2\xc3\xf5\x40\x97\x03\xaf\x15\x6c\xfb\xa2\x8a\x9d\x91\x64\x39\xcb\x29\xf8\x3d\x24\x29\xce\x62\x23\x51\x9e\x75\xe1\x5c\x7c\x7f\xa2\x15\x11\x9e\x07\x3f\xa7\x97\x4d\xb1\x4f\x7a\x01\x09\x3f\xaa\x94\xad\x52\xab\x1e\xad\xce\x1a\x89\x36\x6c\xa1\x3a\xdb\x89\x06\x64\x38\xa2\xbe\xb7\x30\x34\x17\x0a\xa4\x2d\x9c\x2d\xdb\x97\xc1\x4a\x17\xc3\x09\x43\x76\xd2\xa3\xff\xd8\x09\x5f\xc4\x05\x3d\x91\xd1\x6e\x06\xd2\x76\x93\xa1\x31\x0f\x01\xa7\x51\x11\xcf\xed\xa8\x92\xc3\x97\x2a\x13\x3a\x09\xad\xda\xa8\xf7\x41\x45\xf8\x86\x81\xb6\xd2\x77\x96\x4b\xfe\x38\x55\x1a\x2c\x61\x9f\xa3\xca\xe3\x94\xac\xb2\x9c\x94\x10\xb4\x5e\x10\x1b\x17\x40\xe8\xb2\xaa\x6f\xeb\xc3\xa4\x5d\xad\xb9\xd9\x58\x9d\x59\x7e\x57\xcd\x94\x7b\x68\x4c\xc3\x55\x24\x6c\xe6\xc3\x26\xdd\x98\xcf\x92\xb6\xee\xa3\xba\x5a\xb0\x37\x00\x62\x26\x36\x32\x4d\xc1\x22\x2c\xd7\x48\xfa\x07\xbf\xd3\x9a\x1e\x06\x98\x09\xe5\x67\x14\x1a\x61\x3e\x2e\x8b\xe9\xdd\x39\x8a\xb6\xbe\xaa\xfd\x85\xff\x36\x28\xee\x2a\xa3\x2d\x0a\x57\xbb\xac\xf9\x56\x19\x0b\x5c\x42\x42\xeb\x5b\x85\x87\xd2\xfd\xcb\x07\x41\xb9\x41\x6a\x05\xf5\xfe\xcb\x1f\xb2\xd6\x47\x88\xdc\xe7\x83\xc1\xf6\x3e\x60\x64\x1f\xce\x5e\x1d\x2b\x18\xa9\x50\x0c\xd6\xa1\xfd\x33\x5c\xc1\xdb\x46\xef\x04\x75\x2b\x2d\x22\x07\x2e\x6d\xfc\xfc\xfa\x56\x9b\xb2\x5e\x45\x7a\xfe\xb6\x3a\x4f\xbe\xdc\x29\x3a\xd9\xd1\xab\xa4\xe3\x94\xaa\x10\x97\xe1\x2b\x0f\xc9\x0c\x89\xf7\x6d\xf0\xd6\x44\x1f\xa9\x98\x08\xb6\x0b\xe0\x7d\xfc\xc7\xf9\x01\x0b\xbf\x90\x33\x55\x6d\x5e\xe2\xd4\x48\x93\x7b\x78\x34\x93\x92\x0f\x68\x1e\x4d\xa7\x08\x67\x10\x97\xe1\x99\x48\x1b\x8e\xf0\xe0\x15\x0d\x7c\x28\x51\xdf\x44\xc5\x45\x12\x2f\x9b\x0e\x5b\xa2\xee\xff\x2d\x98\x8d\x56\xd9\xbb\xb5\x5d\x98\x96\x11\x11\x51\xa4\x36\xaf\x06\x5e\x0c\xad\x17\x8a\x2c\x9f\xa8\xf6\x97\x4e\xcd\xf0\x9a\xdf\x01\x33\x00\xcf\xfe\xda\xf4\xb8\x79\x1b\x46\x7b\xa7\x93\x3a\xda\x5d\x63\x2d\xb4\x4e\xd6\xdc\xf2\xaa\x64\x89\x17\xbe\x63\x37\xd2\xe2\xd2\x06\x85\x6d\x08\xf9\xee\x7b\x5e\x2f\x14\xdd\xc6\xd3\xac\x42\x92\x15\xa8\x79\x23\xad\x32\xd5\xdc\xfe\xe3\x68\x63\x16\xdd\xd1\xb2\x7b\xb1\x93\xa5\xfc\x05\xc8\x93\xa9\x39\xa5\xb9\x89\x87\x36\x6c\x82\x9e\x39\x2f\x48\x5e\xa1\x5e\x22\xcd\x8f\x85\x7a\x13\x4a\xfa\x98\xf3\x72\x15\x57\x6d\xdc\x5a\xab\x4f\x2d\x10\xca\xaf\x05\x00\x59\xa3\x35\xf2\x4b\xcd\xcb\xac\x81\x9f\x66\xdb\x07\xaa\xbd\xfb\x76\x27\x1d\x17\xbc\xe2\x2c\xba\x46\x3a\x80\xaa\x89\x2d\x0d\x8e\x05\x5f\x94\x8d\xf7\xf6\xe6\xc3\x00\xda\xef\xfd\x3a\x23\x6d\xdd\xcf\x23\x8f\xe1\x06\x66\xa5\x7c\x6e\x3a\xe7\xe3\x67\x3d\x35\x57\x8f\x8b\x8e\xa6\x9d\x3c\x08\xe0\x14\x0a\xfd\x3e\xe0\x30\xb2\x2a\x37\x21\x60\xf9\x08\xa3\x78\xf8\x10\x1b\x5f\x59\x69\xfe\xa3\x10\xee\xd3\x7a\x00\xd9\x73\x02\xd5\xc2\xdb\xe8\xcc\x60\x00\x75\xdc\xcd\x33\xad\x63\xd2\x65\xaa\xf6\x0e\x24\x1c\xe3\x11\xbe\xd7\xdd\x5e\x27\x45\x24\x1a\xe0\x2a\xe5\x32\xd1\x5c\x18\x88\x6e\x81\x81\x38\x75\x1a\xfc\x51\x85\x0e\x50\x6c\x6d\x31\xa8\xee\xf4\x51\xad\xfd\x4b\x3d\x26\x6b\x41\x5a\x7e"}, {{0x07,0x82,0x8c,0x58,0x0e,0xbf,0x9e,0x1d,0x82,0x5a,0x59,0xc3,0xbf,0x35,0xf0,0x72,0xae,0x12,0x33,0x55,0xbd,0xcc,0x24,0x9e,0xec,0x7f,0x2f,0xc5,0x75,0x5e,0x29,0xb5,},{0x58,0xe5,0xed,0x85,0x10,0x0b,0xbd,0x9b,0x22,0x21,0xaf,0xc9,0xc9,0x31,0x84,0x33,0x0a,0xd5,0x9e,0x13,0x85,0x60,0x62,0x44,0xbf,0x00,0x3b,0x8d,0x20,0x18,0x50,0x1b,},{0xbb,0x09,0x36,0x04,0x39,0xa8,0x2d,0xee,0x5c,0x7d,0x85,0x77,0x9e,0x54,0xc1,0x3f,0x88,0xe0,0x6d,0x38,0xf4,0xb9,0x49,0x60,0xfe,0x17,0xa1,0xeb,0xca,0xa3,0xee,0x2f,0x33,0x0c,0x64,0x91,0x54,0xbb,0xc8,0x75,0xa4,0x07,0x6c,0xf0,0xbb,0xf7,0xee,0xbf,0x7b,0x8d,0x08,0xd5,0xaa,0x4b,0xe7,0x41,0x38,0x81,0x24,0x5f,0xc2,0xd2,0xb6,0x01,},"\x0e\xda\xd5\xca\xe6\xed\x98\x43\xe9\x1c\x50\xd9\x34\xcf\x55\xdd\x65\x8f\x3d\x25\x20\x39\xcd\x6c\x75\xbe\x4f\x6b\x86\x6f\xb7\x5f\x35\xc8\xf9\x8f\x17\x21\xd7\xe6\xd9\xd9\x8a\x22\xe0\xb4\x93\x4d\xcc\x12\x92\x61\xbf\x67\x23\xb2\xfa\x7a\x99\x5e\x35\xc4\xbd\x79\xc5\x81\x6a\x32\x16\x07\xd9\xdc\xce\x39\xfe\xfa\x1d\x55\xde\x4e\x76\x17\x54\x8e\xc3\x85\xc3\xde\x01\xe3\x66\xbf\x50\xc4\x57\xa5\x55\xe9\x32\x07\x0e\x2a\x5a\x01\x97\xb7\x9e\xfb\xe7\x00\x6f\x0c\xec\x78\xb6\x0e\xbb\x8f\xa8\x78\x1d\x8e\xb7\x32\x6e\xdc\x30\xe6\x2d\x32\x97\xa1\xe0\xa1\x11\x71\x08\xc4\x6e\xe5\xdb\xef\xc6\x59\x42\x89\x33\x5e\x78\x0d\x55\xa0\x84\xf5\x52\xda\x3f\x36\xd3\xc4\xc6\x17\x8b\xa7\x4d\x4d\xec\xef\xc5\xa3\xb8\xc4\x7c\x16\xf5\x34\xbd\xb6\x08\x95\xd3\xd5\x4c\xd2\xbb\x26\x6b\x39\x9e\x4d\x4f\xb4\x8d\x7a\x8c\xde\x17\xf4\x24\x12\x56\x07\x37\xd3\xc0\x6e\x29\xdf\x52\x4d\x0c\xbd\x30\x93\xef\xca\x1c\x8f\xed\xca\xa1\x24\xab\xb2\x7a\xbd\xac\x6a\x29\xe0\xe8\x24\x6a\xbd\x6f\x5f\x53\x19\x50\x03\x7f\x76\x32\x3a\xa5\x6c\xc3\xfe\xfa\x60\x30\x41\xd5\x5f\x19\x29\xe2\x77\xe7\x2c\xda\x1f\x96\x54\x1d\x2a\xf3\xe9\x0c\x0f\x0e\x28\xbe\x19\x6d\x8f\x69\x21\xf3\xcd\x57\xa7\x92\x6b\x86\x0a\xa1\xbc\x40\x35\x76\x89\x2a\x96\xb9\x31\x90\xae\x38\x3f\x63\x1b\x72\x80\x26\x58\xb2\xe8\x45\x1d\x52\xa2\xf4\x5d\xb4\xf8\xbc\x3b\x0e\x4e\x50\xb6\xd6\x03\xa5\xbd\xd3\x0c\x23\x42\x00\xad\x7d\xeb\xb9\x63\xf5\x8a\x4f\xa2\x03\x30\xb3\x69\x64\x49\x44\x5a\xa3\x71\x82\x48\x42\xfb\xf3\x26\xd9\x01\xdf\xe3\xbe\x04\x54\x52\xa3\x74\x0d\xd1\x60\xe7\x27\x33\xf6\xe2\x73\x35\x25\xa2\x9a\x86\x5f\x6f\x50\xd5\x3b\xf7\x19\x1c\x59\x9c\x87\x6f\x5c\x9c\xa1\xe3\xfa\xd7\x96\x06\x48\xe0\xd4\x71\xf7\xd5\xc0\x1c\x67\x3f\x42\xd6\x59\xbc\x3d\x98\xdb\xf0\x7d\x8f\xeb\xfb\x99\x5d\x17\xf9\xa0\x2c\xd6\xc3\x9f\x2d\xdc\xd0\xf1\xd2\x22\xb9\xe1\x1f\x2d\xd7\xd3\xc7\x51\x82\x24\xbb\x6b\xfb\x8b\x7c\x58\xfe\x8a\xc1\x05\x40\x59\x03\xa1\xb9\xda\x75\x16\x71\x5b\x7a\xfc\x38\xa5\x55\xe6\xbb\xcd\xba\xd4\x6e\x34\xe5\x76\xfe\xa3\x4c\xe3\x57\x34\xed\x20\xaf\x5d\x88\xee\xb1\x04\x7a\x26\x60\x64\x8b\xbb\x11\x3a\xd9\xdb\x8c\x53\xed\xb6\xed\x98\x71\xa1\xe4\x4c\x9e\xd2\xdf\x56\x56\xfb\x2b\x28\x06\xec\xf0\x3b\x1e\xca\x9e\xab\x50\xa6\xea\xab\x55\xb9\x33\xb2\xdd\x1f\x21\xd4\x50\xde\x9d\x5c\xb2\x23\x2f\x07\xa3\x92\x08\x1b\x0b\x4b\x88\x5d\x54\x78\x9e\x2f\x75\xbf\x2c\x4c\xda\xd8\x78\x98\x9b\x1d\x6d\xab\xd9\xed\x23\xc7\xc5\xb0\x35\x6a\x7d\x9e\x73\x35\x29\x0d\x7c\x85\xb9\x66\xe8\x01\x84\xbd\x07\x99\x86\x02\x88\x6d\x70\x76\x19\x35\x65\xc8\x1c\xcc\xda\x4c\xc7\xd3\x3c\x85\xd9\x05\xb1\xbe\xb6\xe8\xe7\x41\x8e\x8a\xca\xed\xf0\xd9\xa3\x2a\x7d\x29\xd0\x7c\xf4\x4d\x31\x19\xd4\xe7\x89\x68\x20\xb7\x7d\xe6\x4b\x65\x5e\x4f\x14\x88\x00\x43\x4a\xf7\xbd\xb2\xa5\x6b\x25\xeb\x94\xea\x39\xf2\x16\x95\x96\xbb\x2b\x11\x76\x1f\x08\x2b\xae\xc0\x88\x85\xf4\xa0\xeb\x6c\x95\x76\x71\x35\xa7\xf7\xcd\x72\xe7\x43\xd2\xdf\xf1\x44\xdd\x8b\xaf\xb1\xb3\x18\x00\x6e\x58\x76\xf8\xe2\xcb\x44\xaa\x58\x8f\x90\x62\x66\xac\x67\x11\x9c\x17\xf5\xde\x11\x4e\x72\xe4\x2a\x1f\xb3\x99\x44\x32\x1a\x11\x1f\xa7\x95\xff\x70\x17\xf2\xfb\x8c\xaf\x48\x2f\x55\xd7\x7a\x80\x85\x54\x28\xde\xd7\xec\x20\xac\xec\xca\x83\xf8\xd1\xeb\x13\x7b\x58\x8c\xcb\x74\x5c\x10\x5f\x2b\x2c\xa4\x1c\x3a\x9f\x49\xd3\xc6\xe9\xd7\xc6\x48\xb0\x03\xb9\x70\x7c\x90\x64\x62\xed\xad\x61\x7a\x8c\xfb\xf9\xbc\xc6\xc5\xfb\x6f\xa9\x84\x32\x5d\x65\x82\xe2\x8f\x62\x00\x53\x83\xf3\x38\xdf\x5b\x38\xfa\x9d\x19\xc2\x2a\x2a\x7e\xa1\xd6\x8a\x92\xd1\xd9\x3b\x7f\xb0\xb8\xf3\x3b\xc8\x76\x0f\x28\xae\xb1\x43\x9a\x8b\x07\xf3\xda\x58\xdd\xb1\x55\xb4\x98\xcb\x09\xc7\x5a\x55\x96\x83\x8a\x65\x01\x3e\x24\xd5\x64\x0d\x08\x42\xa7\x69\x93\x22\xcf\x3f\xfc\xb5\x70\x3f\x41\x4f\xfd\x16\x88\x60\xba\xd3\xe3\x08\xb2\xb5\xbf\x3c\xdf\x7f\x36\x3b\xf9\xaa\xf4\xb3\xbc\x42\x4c\x14\x6c\x6f\x54\x21\x43\x0f\x9f\x47\x6a\xa3\x4a\x0c\x6e\xe8\x01\x31\xfc\x4d\x4d\x97\x07\x23\xa2\x18\x6a\xe3\x62\x5e\x28\x6d\x17\xdd\xdc\x43\x5c\xcb\x00\x83\x16\x78\xab\xa5\x84\xa6\x2d\xbf\xf0\x02\xbe\xad\x6e\x11\xe2\x3c\x54\xd3\x3c\xf3\xa4\xb2\x31\xa9\x08"}, {{0xf0,0x8e,0xe8,0xda,0xa7,0x3e,0x1f,0xeb,0x61,0xa8,0x8e,0x06,0x2d,0xfb,0x10,0x03,0xc8,0x57,0x8a,0x0d,0x53,0xbd,0x3b,0xc9,0xe5,0x89,0xef,0xb9,0x2f,0x68,0xbe,0x14,},{0x76,0x69,0x2c,0xe8,0xd1,0x16,0xec,0xcb,0x89,0x70,0x77,0xed,0xca,0xaf,0xdd,0x3e,0xb4,0x4e,0xa1,0xa4,0x86,0xb9,0x0e,0x49,0xe9,0x7f,0x96,0x69,0x01,0x01,0x55,0x02,},{0x66,0xdf,0xa4,0xc1,0x57,0x5b,0xef,0xf2,0xf5,0xa2,0x30,0xb2,0x8c,0x58,0xc3,0xee,0xa0,0x73,0x6d,0xf3,0x79,0xd7,0x55,0x59,0xbc,0x9d,0x37,0xa9,0x57,0x9d,0x12,0x1c,0x05,0xc3,0x73,0xe8,0x48,0x4c,0x97,0x47,0xef,0x44,0x77,0xe8,0x0c,0x4b,0x2c,0xb4,0xdd,0xf1,0x6a,0xe9,0xfd,0xfa,0x08,0xa0,0x75,0x47,0xd1,0x07,0xdc,0xea,0x12,0x03,},"\x64\xde\x90\x04\x4d\x0e\x76\xbc\x02\xfc\xff\xcb\x75\x26\x36\x67\xb3\xbd\x73\x3b\x40\xbf\xb2\x6c\x6c\x52\xfd\xb4\xb0\x78\x22\x78\xca\xba\xe4\x1e\x21\x29\xea\x40\x17\xe9\x4d\xe8\x60\x87\x96\x4f\x66\xd8\x62\x07\x98\x74\x67\xa1\x68\x8f\x9f\xab\x3f\xfb\x2f\x1d\x00\x63\xbf\x62\x6c\x94\x13\x67\xc1\x2e\x31\x9a\xb7\xca\x30\x20\xc9\xb3\xa7\x21\x5a\x19\x30\x3e\x2d\x0e\x89\x88\x79\x1d\xe0\xd8\xe1\x63\x2d\xaa\x38\xc7\xf3\xe7\xf6\xe4\x8c\xe1\x22\x14\x3d\x1e\x2c\xb6\x61\xba\x77\xc6\x9e\x6a\x71\x09\x11\x64\x4b\xc1\x10\xff\x58\xbb\x00\xb5\x29\x08\x20\xce\x30\x97\x0e\x7f\xde\x18\x9e\x14\x0e\x5c\x70\xc7\x83\xee\xd5\x3f\x0e\x2a\xc7\xec\xae\x4f\x27\xdb\x81\xd1\x5b\x86\x46\xfa\xa9\xc5\xa3\xae\x2b\x7f\x47\xcd\x58\x0d\x77\x07\xb0\x02\x49\x9b\x4c\xfe\xb8\xc5\x91\xaf\xdf\x1c\xc6\x2a\xf2\x59\x5c\x18\x4a\xbc\xf0\xb2\x62\x3a\x1b\xae\x60\xaf\x70\x26\xb2\x8d\x05\x40\xb4\x15\x26\xe3\x02\x0f\x81\xb8\x94\xeb\x3f\xe3\x1b\x72\xb2\x1a\x32\x60\xda\xe3\x21\x0c\x4c\xe4\xfd\x69\xe2\xe5\xea\x0c\x86\x32\xa5\x83\x26\x2a\x12\xb3\xa8\xb1\x6c\x9c\x12\x06\xad\x73\x02\x30\x37\xcf\x30\x65\x3c\xb8\x0a\xa7\xdf\x83\x14\xb0\xf5\xbc\x6e\x9d\x5f\xa0\x0b\x00\x9d\x55\x52\xd8\x3b\x79\x70\xb5\xbc\x4b\x99\x84\xf6\x9d\x1c\xca\x9c\xe4\xcb\x74\xdd\xd2\xd8\x79\xd3\x73\x12\xa0\xe1\x59\xd7\xa6\xaf\xb7\x7a\xc5\x85\xe6\xb4\x59\xc5\x51\x30\x4e\x1e\xeb\xfb\xca\xb4\x3a\x10\xb5\x05\x92\x4e\x03\xea\x33\x2f\x5d\x02\x0a\x55\xc7\xaa\x68\x3c\x54\x1d\xcf\x77\x90\xa2\x40\xaf\x07\x9b\xab\xa9\x40\x96\xb4\x60\x60\xfd\x7a\xfe\x90\x56\xca\x99\xe6\x88\xdf\x28\x0a\x9b\xe8\xc8\xc7\x3e\x6e\x6f\xb0\x52\xa3\x3e\xb3\x32\x8a\x7f\x60\x25\x42\xfe\x28\x0c\x89\x0e\x3c\xca\xf2\x2c\x7f\x34\xf8\x7b\x5e\x5b\xa7\x84\xb4\x72\xb1\xe1\xa9\x93\x47\xa9\xe0\xd2\x40\x85\x8d\x12\x77\xa5\xc6\xb3\x49\x38\x3f\xe4\xfd\x55\xcf\x92\xe6\x9f\xaa\xd3\x26\xb8\xd6\xdb\x46\x23\x30\x26\x22\x1e\xe6\xd0\xa1\xc4\x24\x65\x33\xc4\xa0\xe5\xbd\x17\x2e\xb8\x93\x6a\x9c\x0d\x30\x06\x65\x38\xe3\xeb\x4a\xd5\xcb\x98\x77\xfd\x86\x1b\x48\x2b\x30\x15\x0a\x06\x10\x41\x61\x64\x7e\x01\xd0\x04\xd9\x97\x40\x3e\xe0\x67\x26\xcb\x97\xe2\xe2\x5f\x18\xc6\x68\xee\xe4\xc5\xbf\x72\x52\x98\x03\x18\x9e\xe6\xa7\xae\xc2\x38\xd5\x90\x6e\xa5\xae\x10\x72\x2c\x9a\x61\xa7\x8a\xea\x52\xaf\x33\xea\xac\x75\x40\x6b\x1a\x60\xbe\xfb\xaa\xd4\x84\x76\xd9\xff\x88\x7f\xd2\x83\xeb\x16\x55\xbc\xc0\x7c\xf7\x53\x33\x14\x36\xdb\x5b\x3b\x13\x03\x2f\xf9\xc3\xd6\x96\x38\x0e\x9f\x5a\xbf\x50\xd3\x55\x6f\xda\x0d\xf0\xb5\x38\x97\xa7\x37\xac\x7a\x3b\x87\xc2\xa8\x32\xb0\xc7\x27\x3e\xa9\xfc\x54\xa7\x67\xf1\xa8\x12\xbf\x01\x64\xbf\x75\x21\x63\x0b\x81\xb9\xdd\x93\x0d\x92\xee\x2c\xa2\x8e\x32\x03\xb7\x7b\xc0\x82\xce\xb3\x7d\x55\xed\xbc\xb7\x1d\xf0\xb7\x92\x36\x78\x9a\x25\xd4\x18\xcb\xb9\x55\x44\xe2\xce\xf3\x3b\xbd\xeb\x27\xa3\xf7\x90\x9c\x1f\x49\x8f\x47\x13\x5a\xe9\x03\x3a\xdf\x25\x0a\xd4\xf6\x57\x53\x61\xe4\xcf\xcc\x9b\xcf\x4b\x90\xc3\xad\x47\xa3\x44\x22\x97\xa2\x23\xcc\xa8\x43\xd7\x20\x5e\xd0\x8a\x9b\x87\x16\x0a\x6d\x01\xb4\x6a\x7d\x1c\x84\x4e\x8d\x1f\x18\xf6\x18\x68\x2b\xfb\x22\x95\x5f\x39\x5b\x2a\x57\x90\xa5\x1a\x69\x64\x99\xd9\xe7\x1a\x50\x1f\x3f\xa5\x46\xde\x9b\x10\xae\x47\xbc\xee\x42\xba\x7f\x86\x9f\xb9\xce\x4e\xd7\xc6\x45\x33\x26\xc0\x34\xcf\x05\xd9\xf1\xe3\xc2\x00\x70\x1b\xa7\x52\xda\xbb\xd8\x68\x52\x1c\x3d\x8f\x80\x67\x2d\x42\xf6\xcf\x45\x64\xf0\x8c\xd7\xb3\x90\xe6\xd4\x9d\xd9\x00\x90\xaf\xdb\x84\x48\x6f\xfc\xaa\x4e\x84\xd8\x86\x82\x74\x4d\xc0\xa8\x78\xfa\xa7\xcd\x44\x0a\x8b\x27\x67\x10\x90\x20\x81\xf4\xdc\x84\x17\x46\x19\xa6\x6e\xa3\xa3\x71\xf9\x55\x05\x40\x0d\x99\xfa\x99\x90\x17\x71\x0c\x8e\x27\x14\xbe\x60\x94\x9d\x46\x13\x10\xf7\xd4\x3a\x0d\xc1\x23\x51\x6d\x77\xd3\x62\x21\x3f\x9f\x75\xa5\xa1\xc3\x93\xaf\xfc\x49\xea\x15\x1d\x46\xa8\x1f\xfa\xd2\x39\xf2\x8c\x07\xf6\x5f\x59\xea\x07\x7d\x9a\x4d\x9c\x75\x2d\xe4\x9b\x9e\xf3\x6b\xe6\x0d\x11\x2d\x79\x5f\x58\x8b\x00\xef\x6e\x77\x30\xde\xa6\x5e\x10\x16\xda\x0d\xd4\x62\x37\x0e\x0b\xa5\xc6\x60\x00\x1e\x45\x7c\x08\xb4\x36\xda\x29\x03\xb6\x29\x06\x93\x20\x84\x72\x8c\x81\x67\x1c\xbf\xb0\x79\xbb\x29"}, {{0x27,0x2d,0x64,0xde,0x50,0xb1,0x31,0x2b,0xee,0x23,0xd7,0xf4,0xce,0xa5,0x08,0xa8,0xfc,0xcf,0x3e,0x9b,0x32,0x4e,0x97,0xb1,0xc8,0xe7,0x25,0x02,0xf6,0x1f,0xbf,0x45,},{0x33,0x49,0x8c,0x3b,0x71,0x2a,0xb9,0xc0,0x1e,0xc7,0x6b,0x2e,0xfe,0x2b,0x83,0xad,0xd1,0xe1,0xf2,0xb5,0xeb,0x78,0xf2,0x16,0x92,0x32,0x34,0x51,0x82,0x0c,0xbe,0x10,},{0x33,0x81,0x4c,0x6e,0xf3,0x75,0xab,0x96,0x37,0x69,0xb2,0xde,0x4a,0x25,0xe7,0x02,0x0f,0xcd,0x97,0xf7,0x8f,0x8f,0xc9,0x34,0x55,0xc4,0xb1,0xc2,0xbd,0x45,0xd4,0xb0,0x1e,0x19,0x29,0x00,0xe3,0x12,0x22,0x65,0xfc,0x55,0x2c,0xd5,0xc5,0xf0,0x0e,0x93,0x1e,0x3a,0x18,0x3c,0xca,0x5b,0xa0,0x80,0x2d,0xaf,0xde,0xbb,0x79,0xeb,0xeb,0x03,},"\xd6\x26\x0d\x7e\xec\x5d\x43\x62\x08\xe7\xe7\x37\x65\x5e\x09\x71\x81\x42\x70\x19\x44\x05\xe3\x6e\x39\xf8\xf1\x7b\x64\x9f\xbc\x16\xc0\xf3\xd7\xf2\xbe\xf5\xeb\xc0\x2b\xb1\xc4\xdf\x48\xe8\x47\x0a\x3e\xae\x8a\x3c\xca\xf6\x40\xab\xcc\x09\x4a\xa9\x11\x50\xff\x1a\x8c\xf1\x16\x96\x93\xeb\xf5\xac\x00\x34\xb9\xb9\x19\xec\xf1\x7d\xb7\x91\xdf\xe5\xfe\xdc\x90\x91\x8b\x23\xe5\x4e\x90\x04\xa1\xae\x77\x1c\x21\x3e\xd7\xed\x73\x34\x43\x4e\x5b\xc0\x2c\x0d\xda\x2b\xd1\xa8\x76\xfb\x82\x4a\x19\x7b\xc9\x96\x13\xb1\x40\x9e\x70\x52\x31\x0b\x08\x20\xda\x71\x44\x69\x29\xae\x7c\xfd\x3a\xfb\xa0\x42\xde\x54\x57\x8a\x5b\xfd\x94\xc1\x54\x43\x91\xa3\xd9\xac\xbd\x56\x63\xef\x65\xc6\x92\x0d\x78\x51\x6d\xec\x1c\xd5\x5f\x6e\xb7\x29\x0b\xa0\xaa\xf9\xa1\x71\x65\x82\x00\xb2\x4a\x47\xa0\x71\xb9\x6f\xea\x03\xc6\xca\x7e\xd0\xd6\xfe\x67\x5d\xd6\x37\x61\x83\x3d\x75\xbc\x5e\x58\xa9\x58\x58\x2d\xb0\x2a\x60\xc6\xce\x0a\x63\xf4\x2b\xa8\x37\xae\x77\xc1\x7a\x32\x70\x5f\xd9\xca\xfa\x58\x7b\x55\x5d\xd4\x61\x98\x51\x07\x97\x94\xe2\x4e\xb4\x46\x08\x83\x5a\x6f\x48\x24\x92\x0d\x57\x7a\x27\x03\x96\xc9\x57\x3b\xc7\xd8\x2f\xe2\xaa\x04\x65\x95\x66\x13\xa2\xc5\x08\xcf\x24\x32\x33\x7a\x36\x5e\x6c\x98\x4c\xba\x91\x7f\x0c\xf8\x42\xaf\x12\x2d\xc8\x9d\xea\x95\x8d\x41\x8c\xae\x44\xa6\xe4\xed\x26\x3a\x41\x5f\xf9\x94\xa5\xff\xb2\xff\x13\x91\x3d\xf2\x14\xbb\xfe\x90\xa3\x4b\x24\x7e\x71\xab\x73\xf7\xff\x00\x4c\x23\xac\xfd\x90\xc7\x67\x61\x1a\xa5\x58\x14\xc6\x69\x64\x16\x8e\x56\x8b\xa7\x5b\xf3\x49\x03\x59\x7c\xdc\xac\x78\xc2\x4b\xb9\xf1\x4f\x5c\x86\xa5\x1f\x36\x4f\x9a\xb4\x1e\x46\x4a\xee\x64\xfa\x50\xa1\xc1\x59\xcb\xd8\x50\x83\x2c\x50\x4a\xb4\x2a\x58\x4a\x96\xd5\xae\xe0\x82\xd8\x2c\x1e\xdd\xa1\x93\x38\x16\x0b\x8d\xcf\xa3\x41\x9b\x3a\xf6\x4d\x9c\xfb\x10\x4f\x98\xf9\xd3\x5e\x53\x94\xe2\x32\x28\xe2\x75\xc8\x7d\xb5\x0c\xa8\x67\x54\x0b\x88\x0c\x7a\xf2\x9f\xbf\x53\x42\x94\x58\x1c\x22\x24\x0b\xcd\x4d\x7d\x2c\x20\xff\xc3\x67\x33\xad\xa2\x76\x53\xd3\xae\x1a\x8c\x22\x03\xea\xc6\x26\xe2\xe9\xbb\x4b\x52\xce\x52\x3e\x5a\xdb\x3b\x2c\x10\xdc\xf7\x8c\x2a\x1e\x62\x6a\x16\xeb\xfa\x1b\xdb\x8c\x16\x14\x93\xa5\xaa\xa2\xd8\x4b\xfa\xa0\xf2\x02\x7f\xfe\x4e\x9e\xae\xb3\x32\xeb\xda\x7c\xbb\xb6\x77\x76\x9d\x78\x51\x7a\xdf\x72\xf8\x23\xa7\xf8\x44\x16\x5a\x07\x98\x78\xd2\x58\xfd\x95\x22\x5c\x21\x17\x78\x37\xe6\x9c\x19\x68\x5a\x05\x1c\xa9\x2b\x12\x0b\x7d\x86\xd7\x85\x95\x47\x1f\xfc\x42\xa5\xe6\xe6\x43\x1b\xe7\xb6\x4f\x80\x76\x45\x8b\xac\xd6\xc7\x29\x03\xcc\x34\xfc\x63\xa4\x0c\xf3\xdf\x00\xef\xf9\xd6\xee\x9a\x8f\x39\xd2\x5e\xad\x81\xa8\x12\x88\x88\xb0\xa1\xac\x0e\x5e\x3a\xd9\x27\x71\x2c\x14\x14\x6a\xdf\x82\x87\x70\xff\x95\x87\x09\xeb\x19\x28\x8e\x77\xbb\x70\x73\x48\x81\xe9\xe0\x16\xcd\x29\xe7\xd0\x89\x93\x41\xff\x6b\x29\x7a\xc7\x96\xbb\xde\x48\x6e\xc3\x59\x49\xf6\xa3\x2b\x2c\xa6\x47\x38\x59\x15\xec\xba\x3b\x9f\x02\x25\x08\x71\x45\xc1\x8d\x65\x59\xd3\xa3\x1d\x6f\x22\xfc\x49\xf8\xa6\x31\x5f\x1d\x32\xab\xee\xb7\xcf\x2c\x2c\x77\x6e\xa7\x35\x0f\xd5\xeb\xc0\xe0\xf2\x65\xba\xcc\xc2\x69\x7a\x7c\x8c\xa4\x0c\x13\x5f\x6c\xfc\xb0\xb5\x8a\x61\x43\x19\x60\xff\xa9\x06\x57\x09\xa9\x61\xa6\x33\xd5\x70\xb7\x3f\xb4\x49\x1d\xe5\x2a\xd0\xd7\xb2\x04\xb6\xe9\x97\xb0\x37\xed\xe3\xf7\xec\xa8\x20\xa7\xcd\xb2\xc6\x9a\xc2\x91\x48\xbe\x35\x23\x50\x8a\xe7\xe4\xc3\xd1\xa7\x17\xf5\x5a\x82\x1d\x14\xc3\xb6\x4f\x08\xca\x9a\xe4\x96\x13\xb1\x15\x77\x3e\xf6\x18\xd3\x21\xc9\x08\xbd\x21\x56\x71\x7a\x43\x4e\x50\x89\xa5\x94\x8c\x04\x5c\x8d\xa8\xa4\xbd\x86\xed\x5f\xab\xc6\xb1\x34\x66\xe6\xde\xda\x58\x32\x07\xd2\xad\xa2\xb2\xab\x9c\xb1\x54\x3d\xf7\xa3\x73\x4d\xfb\xc6\xfc\x42\x81\x06\xd4\x84\x47\x24\xa1\x3d\xf4\x2f\xaa\xb1\x8c\xa8\x9d\xb2\x0a\xc9\xbc\x27\xb8\x53\x94\x66\x7c\x5a\x27\x79\xca\x63\xed\x7a\xc2\xb7\xc0\xd4\x12\x23\x91\xee\x46\x02\xd6\x1e\xa0\x38\x17\x64\xfb\x72\xdc\xc2\x24\xe6\x5e\xae\x2b\xc4\x50\x6b\x0f\x09\xe2\x32\x05\xd0\xbb\x21\xc7\x7d\x82\x87\xc1\x65\xe0\xb4\x2c\x55\x15\x79\x77\x8a\xcb\x72\x58\xa2\x47\x9d\x7c\xf2\x5b\x90\x2e\x8d\x0d\xa4\x29\xbd\xe3\x6b\x45\x90\xda\xe9\x6f\x52\x54\x81\xac\x83\x78"}, {{0x0c,0x9f,0xe5,0x59,0xad,0x1e,0xd3,0xba,0x16,0x4d,0xac,0xea,0xcb,0x02,0x35,0x67,0xb2,0x43,0x03,0x20,0xb6,0x71,0x5d,0xe7,0x32,0xa0,0x3c,0x59,0xc7,0x30,0x31,0x30,},{0xe7,0x0f,0xc4,0x66,0xfb,0x2a,0xcd,0x74,0xe0,0x99,0xc3,0x6e,0x2c,0x22,0xfa,0x51,0x29,0x0b,0xdd,0xe9,0x6d,0xf9,0xc3,0x1b,0x6d,0xfb,0xfd,0xc2,0xe2,0xc1,0x4a,0x40,},{0x6c,0xd8,0xae,0xd9,0x7d,0x9c,0x62,0xd5,0xfd,0xae,0x59,0x7d,0x06,0x1c,0x0c,0x2b,0xc3,0x7e,0x42,0xdf,0x06,0xb8,0x32,0x7a,0x46,0x8f,0x92,0xb3,0xf4,0x38,0xa1,0xe6,0xb6,0xb1,0xef,0x2b,0xe7,0x85,0x49,0xa2,0x89,0xfd,0x3f,0xc1,0xa6,0x29,0x9e,0x5a,0x33,0xd5,0x39,0x6c,0xb4,0xfa,0xc1,0xe8,0xe9,0x98,0x2f,0x0c,0xb3,0xd2,0x0d,0x07,},"\x26\xeb\xc6\x48\xcf\x8c\x79\x65\xec\x6e\xbe\x96\x5d\x9c\x79\x2b\xed\x90\x65\x5a\xd4\x40\x18\x3c\x6d\x70\xea\x64\x67\xbb\x8e\x6f\x04\xec\x84\x3f\x33\x31\x56\x91\x7b\xf4\xc5\x1d\x0e\xd0\xf2\x8b\x7c\xd3\x1b\xc1\x2c\xf8\x40\x68\x6b\x82\xb0\xc2\xc3\x50\xbb\xda\xc8\x05\x33\x37\x25\xd6\xb6\x9c\x2a\xb7\xf3\x4e\xe5\x93\xfa\x1c\xcc\xed\xf3\xf0\x64\x2a\x68\x8f\xcc\x1c\xd9\x8b\x09\x87\xd0\x1f\x71\x3a\x2f\xa6\x41\x6c\x96\x19\x21\xde\x0c\xc2\xc9\xec\x7a\x55\x58\x55\xe7\xfc\xd4\xc7\xdd\xaa\x14\xfd\x91\xec\xb0\x42\x24\xe1\x76\x1b\x7d\x6b\x35\xf4\xaa\x56\x18\xa5\x00\xca\x00\xd1\xca\x24\x51\xb5\xd3\x68\xaf\xde\x3a\x40\x7e\x78\x31\x35\xf3\x90\x19\xa5\xb9\x84\xe8\x2a\xc2\x79\xc0\x5e\x48\xc2\x95\xeb\xd1\x56\x38\x21\xa0\x74\x3c\x52\x24\x6b\x5d\x2b\x20\x34\xe3\xae\xb6\xce\x7c\x5c\xf9\x19\xe7\x4a\x9c\x7b\xbc\x9e\x25\xda\x30\x43\x0e\xb1\x6e\xcf\x38\x37\xeb\x38\xa0\xf5\x59\x79\x2a\x72\x98\x90\xba\x83\x10\x26\x0f\x8a\xeb\x9b\x5a\xf0\x0e\xb6\x33\xc1\x2d\xee\x02\x26\x28\xba\x41\x8d\x75\xcf\x18\xde\x2f\x2e\x65\xe4\x9b\x1a\x69\x68\x4d\x61\x27\xef\x48\x1c\xa8\x61\xec\xbc\xe3\xbe\x86\x49\x7e\x65\xdf\x4c\x5f\xcd\x08\x17\xc9\x71\x6b\x59\xf2\xa2\x63\xd5\xe9\xeb\x60\x68\x39\xf8\x5c\x5a\x36\x58\x37\xb0\xfb\xe2\xc4\x27\x4d\x66\xcb\x2c\x65\xed\x36\x5f\xab\xf5\x8f\x15\xbe\x52\xb5\x1c\xb6\x01\x18\xca\x4f\x73\x0d\x44\x73\x59\xf7\xef\x34\x6b\x75\x02\x17\xd4\x7b\x2e\x79\xc8\x6c\x0c\x62\x81\x6a\x0c\x7c\x18\xa2\xce\x2b\x68\x8e\x0c\xce\x0d\x75\x23\x21\xe7\x9b\x42\x38\x57\xda\xc5\x9f\x8f\xbe\xb0\x94\x11\xe7\x16\x69\xef\x9a\x26\x43\xf2\xe9\x9f\x38\x7a\xc1\x83\xe0\xb0\xac\x72\xc5\x9a\x0c\x3c\x18\xc0\xde\x8b\x01\x08\x78\x07\x4a\xcc\x1a\x2b\x39\xf9\xdf\x99\xd9\xf8\xf8\xb5\x2f\xef\xe4\x94\x3c\x52\x5f\xd4\xd0\x6a\xd8\x78\xe4\x66\x08\xab\xf2\x7a\x54\xbc\x50\x06\xf6\x47\xdb\x72\x48\x51\xdb\x7c\x45\x78\xae\x66\x58\x3d\xc4\xbb\x51\x8e\xf0\x28\x89\x03\x47\xe8\xfc\xe0\x92\x7d\x7d\x9a\xf3\xab\x5d\x0d\x2d\x20\x2a\x40\x26\xaa\x2e\xa7\x48\x79\x62\x67\x6a\x60\x32\x98\xe7\xd2\xe7\xb9\x09\x21\xee\x1b\x52\x80\x6d\x71\xa7\x64\xe0\x3e\x25\xdd\xd6\x84\x8f\x61\xd4\x6f\xad\x3d\x00\x8e\x10\xee\x5c\xd5\xa3\x39\x0f\x9d\x15\x8a\x44\x37\xef\x61\x5f\xc9\x0a\xc5\xbf\x3a\x9d\x68\x2e\x12\xc3\x39\x8a\xc7\x76\x80\xd2\x2c\xd1\xa6\xa5\x6e\xc3\xb2\x5c\xed\xe8\x67\xed\xd3\x83\x15\x9c\x61\x64\xd6\x3e\x9c\xd1\xc9\x56\xac\x72\x35\xff\xfa\xe9\x36\x16\x6c\xcd\x35\x89\x8e\x29\xc9\xb4\xca\x4e\x29\x25\xda\x32\x3b\x6f\xbf\x67\xcf\xd5\x96\xc8\x8a\x1a\x35\xa8\x35\x98\x51\xdd\xcb\xa8\xf6\x13\x4a\x9f\xaa\x24\x4d\xcb\x47\xe6\x91\x27\x6e\xe6\x25\xcc\x20\xad\xce\xc2\x1c\xbe\x77\xa3\xac\xb9\xba\x72\xf0\xc9\xd3\xda\x7e\x9c\xd5\xbe\x3b\x95\x99\x0b\xa5\x4a\x9f\x31\xaf\x17\x1f\x95\xae\xea\xd3\x33\x1c\xb1\x88\xa5\xb2\xc6\xf5\x39\xac\xb4\x8b\x98\xb3\xf7\x34\x1f\x60\x25\x1c\xb6\x04\x29\xcc\xd9\xcf\x32\xf0\x09\x20\x5f\x27\x53\xfb\xbb\x26\xaa\x53\x17\x43\x42\xad\x18\x4d\xab\x68\x70\xc0\xfb\x52\x93\x01\x19\xd9\xf9\x7d\x84\x89\xa6\x00\x76\xaa\xdb\x2e\x96\x05\x4a\xc7\xcb\x7f\x84\xe1\x3c\x75\xbb\xf9\xe4\xd9\x24\xd2\x27\x2a\xfe\xf0\x87\x19\x15\xe2\x43\xce\x66\xfc\x2a\x88\x88\x51\x35\x35\xb1\x0b\xb4\x07\x9c\x80\x6b\xd9\x49\x28\x1e\x28\x28\x35\x23\xd0\xd2\x10\xb3\x1e\xf6\x2a\x95\xdc\xae\x0c\xd2\x52\x90\xc7\xed\xf2\xc2\x4b\x43\x28\x22\xde\xbe\x34\x7f\x1c\xae\x94\x5f\x57\x28\xc7\x1b\x54\x03\xef\x14\xe7\x2c\x3d\x83\x42\xe1\x98\xb3\x62\xee\x20\xf8\x09\xe4\x6a\xca\x01\x5f\x35\x47\x7f\xf8\x9a\xc4\xb3\x7e\x66\x15\x85\x6f\x7e\xa2\x51\xfb\xfe\x13\xf9\x06\x52\x59\xb0\x94\x6a\xae\xf2\x49\x43\x27\x0a\x85\x4d\xe8\x89\x78\x00\x33\xd6\x3d\xda\x54\x47\x99\x8a\x3e\xd7\xe5\x06\xae\xb5\x1e\xa3\x7b\x68\x1a\xc3\x07\x67\x97\xac\xdb\xfc\xc2\x78\x83\x63\x0a\xdb\x72\x26\x0a\x46\xaf\x0a\x60\xd5\x3f\x66\x54\x56\x6e\x20\xd6\x08\x8c\xd4\x8e\x23\xb2\x8d\x81\xf0\xee\xd2\x05\xb9\x2a\xaf\xd9\x61\x64\xd6\xd3\xca\x3f\xc8\xb1\x71\x80\x4e\xe9\xfc\xe7\xab\xae\xd2\xea\x4d\xdf\x9c\xb2\xb3\xae\x73\xa7\x0e\xd6\x3d\xe4\x5e\x14\x10\x14\x28\xd0\xa7\xa2\x26\xdb\x39\xab\x6c\xd0\x43\x74\x08\x0e\x69\x83\xf0\x18\xce\x93\xda\x4c\x89\xac"}, {{0x15,0xd7,0x5a,0xd8,0xe4,0xaf,0xb1,0x26,0x34,0xcc,0x8e,0x60,0x0f,0x1a,0x42,0x67,0xef,0x95,0x84,0xf4,0xc4,0xac,0x44,0xff,0xfe,0x4b,0x9f,0xcb,0x88,0x5c,0x9d,0x2a,},{0x09,0xd1,0x26,0xf0,0x17,0xe0,0x16,0x97,0x74,0xe8,0xc3,0x7a,0xb3,0x79,0x26,0x3a,0x80,0x75,0x74,0x61,0x27,0xc2,0xd1,0x1e,0xcb,0x0e,0x4c,0xb4,0x54,0x70,0x9f,0xf1,},{0xa8,0xf2,0xf4,0xb9,0xe2,0x07,0x2c,0xa9,0xfa,0xde,0x37,0xfd,0xd6,0x2d,0x8d,0x02,0x42,0xfd,0x4d,0xaa,0x09,0xfd,0x85,0x6e,0x75,0xf4,0xe3,0x43,0xc7,0x26,0x0e,0xa6,0x77,0xf7,0x53,0xa6,0x27,0xae,0xd0,0x8c,0xb9,0x6c,0x44,0x4e,0x29,0xbd,0xb5,0xb5,0x38,0x5d,0x43,0x84,0x3b,0xbe,0x79,0xa3,0xdd,0xa3,0x6e,0x1e,0x11,0x01,0xc5,0x0f,},"\xd1\xce\xa2\xb7\xe9\xaf\xc1\xf0\xfa\xb8\x90\xd2\x70\x0a\x5a\xe4\x1e\x15\xe7\xd3\x4d\x3b\xf1\x9d\x0f\x34\xd9\xf9\xf0\xab\x98\x12\xdc\x7c\x2a\x8d\xc4\x4c\x8e\xe7\xf3\x78\x87\x61\xec\xd9\x88\xee\x72\xc7\x36\xb6\x2a\x7c\xac\x3c\xc9\xb7\x38\xe9\x38\xdf\x77\x87\x37\x7e\xb9\xff\xd1\x20\xd4\xff\x58\xcf\x1c\x06\x75\x63\x3f\x7e\x83\xc4\xb1\x15\x54\x8f\x14\xd2\xf7\x0c\x6d\x48\x22\x11\x44\x3a\x84\x99\x59\x95\x58\xc1\x42\x77\x98\x0f\xa4\x2a\x78\x42\x79\x07\xf7\x3a\x41\xf5\xf6\x69\x3b\x2f\x75\xfe\x5e\x7a\x6f\xf0\xa6\xc3\xa4\xe2\xed\x1d\x0d\x96\x8d\x5c\xc9\xd6\xf1\x3d\x41\xc3\xd2\x91\x39\x6a\xe7\xe4\x34\xe6\x64\xb2\xff\x24\x3e\x7f\x6d\x88\x01\x02\x10\x07\x8c\x39\xb5\xa5\x76\xca\xf4\x09\xbb\x47\x11\xb3\xee\xfc\x48\x6b\x67\xb7\xff\xea\xe0\xcb\xac\x6a\x0f\xbd\xf5\x34\x3f\xb2\xae\x4e\x05\x7e\xdc\x8c\x9d\x2e\xd3\x1e\xae\x9e\xc8\x3d\x2b\xed\xd2\x19\xeb\x98\x9b\x2d\x44\x19\x61\x8c\x2d\x3c\xe4\x49\x0e\x35\xfb\xca\xd4\x32\xb0\x12\x47\x95\xf9\xc5\xcb\xdc\x1e\xb0\xc3\x07\x2b\x4a\xa8\x01\xd2\x6f\xbc\xc7\xb0\x7b\x82\x57\xf5\xfe\x47\xac\xd9\xbc\x58\x7b\x56\x57\xcf\x07\xca\x54\x5b\xb5\x68\xc9\xe4\xe7\x3c\xdd\xf6\x25\x4e\x22\xf7\x8a\xb2\xf8\x06\x45\x19\xf8\xab\xfd\x16\xfc\xfa\x90\xf8\x76\x87\xdb\x0c\x42\x09\xbe\x2c\x6c\x79\xa5\x52\x1f\x44\x18\x96\x78\xd9\x32\xc5\x45\x85\x70\x0a\x24\x37\x70\x2e\x56\xaa\xb5\x88\xa1\x7c\xb2\xcc\x94\xc0\x0e\x87\x57\x0e\xf3\xac\x51\x33\xd7\x53\x03\x8a\xa4\x65\x10\xa2\x60\xc1\xfe\x80\x47\x9b\xc0\x2e\xed\x9a\x8d\x1d\xe9\x93\x54\xac\x26\x48\xb4\x8b\x96\xab\x1b\x80\xcc\xa6\xca\xe1\x87\x7f\x37\xd7\x04\x28\xbb\x50\x85\x0e\x03\x08\xdb\x0b\x42\x30\x87\xbf\x7d\xde\x27\x9e\x09\x67\x66\xf2\xab\x3a\xb2\x38\x5b\x04\x64\xa5\xbe\xd7\xbb\xd8\xd4\x57\xe9\x35\xe2\x00\xaa\xaa\x8d\x95\x15\x70\xe0\x53\x07\x6d\xb1\x8a\x6a\x62\xf7\x2b\x31\x95\x79\x88\x4a\x08\x26\xba\x2b\x43\x63\x71\xdd\x21\x8b\x01\xa0\xc5\xe5\x8d\x0c\xd5\xff\x98\x25\xe4\x46\x6f\xe9\x66\xdf\x05\xcc\x31\xc8\x03\xe5\x21\x21\x83\xdd\xf2\x9c\xef\x7f\xb9\x16\x48\xa4\xf8\xee\x19\xfd\x5f\x8d\xbd\x8a\x56\xbe\x7a\xbf\x33\x65\x9a\x92\x24\xa1\xe2\x7a\x10\x24\xef\xfd\xfb\x88\xe8\x80\x61\x48\xd0\xd1\x78\x09\x06\xaf\x1e\xbe\x3e\x5f\x14\x36\x31\x90\xd8\x8c\xc6\xe5\x08\x94\x44\xf1\x25\xd0\x63\x15\x5d\xcf\x86\xca\x92\x63\xf2\xf5\xf1\x83\xc2\x69\x74\xfe\x00\x0b\x93\x42\xd2\x4c\x78\x1e\x20\x58\x28\x7c\xb6\xf3\xf1\xe3\x27\x0c\x22\xb7\x70\x7b\x83\x23\xa5\xcc\x8d\xb8\x1a\xa9\x06\xbb\x59\xd6\x96\xcb\x97\xcc\x74\xe3\x59\x59\x5f\xfb\x83\x73\xca\xd3\x71\x0e\xa0\x9e\xa9\x74\x4c\x20\xe9\xa1\x2e\x05\xbe\x5a\x95\xf0\x85\xac\x56\x16\x78\xd7\xda\x43\x2e\x4c\x7c\xb5\x3e\x12\x71\xdf\x5c\xd5\xa3\x39\xd2\xd7\x52\x0f\x1c\x18\x48\xd1\x50\x71\xd8\xc6\x98\x46\xb2\x3c\x5d\x24\x32\xc7\x38\x90\xf2\xed\xed\x37\xc3\xd2\x96\x4a\x4b\x5b\x55\x22\x58\x88\xe8\x92\xf5\x26\xd1\xca\xc3\x1e\xac\x35\x6f\x36\x1c\x2b\xf3\x36\xc4\x62\xd6\x0c\x82\xe8\x2b\x61\x6f\x2a\x51\x9c\x2f\x67\xbf\x01\x29\x03\x69\xbe\x9b\x55\xe9\xf5\xc8\xce\xc4\xf2\xe1\xb2\xab\x30\x25\x06\xc9\x03\xdc\x3e\x7b\x9c\x97\x81\x41\xdc\x90\x4b\x01\xb1\xc2\x3d\x25\x00\x43\x99\xbf\x8b\x73\xd6\x9c\xd5\x39\xc7\x9a\xf5\xe9\xa0\xa5\x11\xec\xa2\x21\x07\x8a\x1f\xf7\xb0\xf6\x04\xae\xa8\x42\x46\xc3\xcb\x32\xdb\x93\x81\xbe\x12\x17\x67\xe0\x97\xbe\xa5\x17\xbf\xcd\x82\xdf\xe9\x21\x37\x98\x40\xef\xb4\xb6\xf0\x2a\x48\xec\xda\xf1\x2d\x2c\xd3\x89\x30\xd4\x47\x3a\xdf\x97\xcd\x71\xdc\x4e\xa1\x03\x82\xf4\xf5\xd1\xdd\x75\x62\xcd\x4b\xf5\x11\x59\x32\xf6\xc4\x70\x0a\xa8\xfe\x8d\xec\xa9\xd5\xe7\x27\x79\x02\xb8\xf8\x86\x52\x97\x65\xdb\x24\x86\x07\x4b\x23\xa1\x9f\xd4\xb0\x43\x56\xbf\xa6\x22\x6c\x82\xba\xf6\x9a\x08\x7d\x9c\xa1\x88\x23\xf8\xe3\xe6\x83\x08\xe1\x6b\x80\x4c\x36\x3d\xf5\xb6\x30\x7e\x76\x24\x0d\xb1\xed\x84\x1b\x61\x2d\x65\x54\x8d\xdf\xbe\x83\x67\xda\x60\x77\x2c\x6a\xff\x55\x4d\xc8\x5d\x04\x19\x48\x34\x5e\x56\x7d\xa9\x33\x31\x51\x85\x8f\xdf\x69\x93\x27\x39\x25\xbf\xdc\x71\x81\xb5\xf6\x46\xd0\x63\xa8\xc8\xf3\x10\x56\x9b\x0e\xd0\x93\xbd\x9d\xff\x04\xfe\xbf\x0b\x41\xc6\xdc\x55\x16\x9a\x14\xa3\xc8\x62\xe5\x41\x6f\x1e\x58\x2f\xde\xe8\xfe\x87\xdc"}, {{0xbf,0x3c,0x0c,0xbb,0xbe,0x20,0xbe,0x2a,0xcf,0xaf,0xb2,0x7a,0x36,0x11,0xb4,0x89,0x21,0xa7,0x28,0xab,0x17,0x33,0x4b,0x8a,0xfd,0xee,0x83,0x05,0x17,0x8f,0x61,0x3b,},{0x45,0x00,0xa0,0x3c,0x3a,0x3f,0xc7,0x8a,0xc7,0x9d,0x0c,0x6e,0x03,0xdf,0xc2,0x7c,0xfc,0x36,0x16,0xa4,0x2e,0xd2,0xc8,0xc1,0x87,0x88,0x6d,0x4e,0x6e,0x0c,0x27,0xfd,},{0x8f,0x87,0x03,0xbc,0xf4,0xc0,0x32,0x94,0x17,0x33,0x9e,0xb0,0x26,0xf2,0xb7,0x2d,0x31,0x4d,0x92,0x2e,0x9a,0xcc,0xb5,0xd8,0xbb,0x7e,0xec,0x87,0xe0,0x7e,0x61,0x38,0x55,0x16,0x72,0xa6,0x13,0x2c,0xb4,0xf8,0x75,0x50,0x8e,0xd3,0x29,0x95,0x67,0xb4,0xa7,0x41,0x34,0xd2,0xbd,0xf0,0xd8,0x57,0xf9,0x80,0x86,0x1d,0x18,0xbe,0x7e,0x01,},"\x8f\x30\xba\x2f\x79\x2e\x9a\x97\xf6\xea\xfe\x29\xf9\x76\xa4\x80\x28\xcb\x88\x57\xb5\xc7\x98\xbc\x2b\x61\x68\xc4\x64\x44\xc0\xce\x69\x60\x70\x37\x4c\x5e\x6a\x40\xc3\xd1\x8a\x5d\xc7\x66\x9f\xc4\x1d\xb9\xa8\x1c\xff\x75\x9b\x8c\xa0\x15\x98\x71\xc3\x44\x2e\x8c\x75\x12\x69\x8f\xa4\x47\xb5\x78\x3e\xe0\x1d\x1b\x61\x14\x49\xab\xad\x23\x71\x62\x92\x2b\x02\xd1\xae\xc5\xde\x1d\x66\x6f\x17\xda\x16\x13\x10\x63\x01\xd3\x05\x86\xd1\x16\xe2\xac\x09\x00\x7d\xd7\x1e\x81\x23\xed\xe4\xc5\xa6\xa9\xac\x07\x7f\xe3\xd9\x39\x09\xda\x62\x8e\x86\x58\x70\xa4\xe2\x5c\xb3\x55\x91\x67\x5a\x06\x90\xbe\xc4\xaf\x02\x81\x71\x4f\xe6\x66\x1b\xd5\xc0\x0a\x27\xd7\x9f\x95\x9f\xb4\xd4\xfb\x16\x36\xa6\xa3\x57\x5f\x4f\x01\x47\x06\x63\x89\x9d\x73\x74\x72\xb0\x96\xbe\x4d\xb7\x23\x71\x53\x67\xa4\x1a\x3a\x4c\x13\xf7\x42\xd9\x08\xf4\xd9\x21\xcf\xdd\x15\x6e\x75\x86\x82\x61\xba\x9c\x10\xd8\x58\x74\xca\x2d\x6c\x0c\x9e\x72\x95\xe5\x66\x2b\xd9\x16\xa3\x63\xc7\xa7\x96\xea\xd6\x17\xc4\x25\x1e\x67\x94\xda\x06\xc3\xd0\x8f\x2f\xdc\x38\x86\x94\x4a\x75\x09\xe6\x40\x9c\x90\x6b\x59\x31\x13\xb4\xb1\xf9\x85\x01\x32\x96\x0d\x9f\x3a\x4e\xeb\x73\x86\xfa\x59\x2f\x61\x93\xbe\xab\x8e\x0f\xf0\xf2\x89\x08\xa0\xd5\x48\xdb\x87\xba\xe9\x78\xb0\x5a\xbb\xca\x9b\x3e\x96\xd8\x79\x5b\x88\x07\x7f\x62\x0f\x21\x24\xe3\x15\x90\xeb\x09\x9e\x94\xe0\xe6\xe3\xcd\x62\x0a\xe6\x29\x0f\x3e\x2d\x01\x46\x7e\x5b\xef\x4f\xab\xde\xf7\x9d\x9a\xb9\x23\x9e\x75\x3e\xc4\xfa\x0b\xb1\x10\xff\x1d\x39\x3f\xca\x02\x24\x35\x02\xd7\xe9\x87\x99\x1e\xb7\x6d\x08\xf8\xbe\x7e\xb2\xb1\xee\x00\xc3\xb6\x8b\xbf\x72\xa6\x23\xba\xa1\x5b\xe8\x96\xb3\x21\x5e\xbe\x8a\x82\x31\x31\x09\xfc\x62\x9b\x0c\xce\x64\x91\xf8\x13\xc2\x49\x70\xe4\xff\xe6\x86\x9e\x40\xb4\x6b\x4e\xd2\x29\x86\xd0\x04\x21\x55\x27\x6c\x23\x0d\xe4\xc0\x5d\x67\x85\x52\xf2\xe8\x51\xca\xcf\x5a\x47\x21\x57\xdb\xb1\xa9\x9a\x2b\x42\xff\x40\x37\xf0\xdc\x63\x80\x67\x29\x21\xc9\x09\x20\x6e\x80\x05\x0e\x61\xa6\xb3\x05\x6b\x17\xe3\xae\x83\x50\x09\xb2\x04\x19\xa3\xb9\x84\x6d\x37\x48\x92\xe7\x19\xf1\xb3\x5b\xc1\x25\x7d\xa9\x3c\xcc\x6d\x8f\x8f\xca\xa8\xe6\x09\xa8\xd2\x04\xdf\x10\x8b\xe7\x19\x34\x67\xe7\xf1\x05\x93\x52\x82\xc3\xfe\x66\x70\xa5\x32\x94\x42\xea\x3e\xdd\xa2\x37\x6a\x03\xa1\xcf\xe8\x72\x3a\x90\x9c\x06\x4d\x30\xfe\x9b\xb0\x21\x2c\x33\xaf\xe2\xbe\xa3\x0c\x91\x43\xc0\x01\xda\x01\xc7\xed\x50\x45\x59\xb9\x7f\xe2\xce\xa0\x9b\xeb\x9d\xb5\x19\x00\xdc\x13\x67\x05\x92\x1e\x20\x29\x78\x45\xba\x72\xa9\x7a\xa7\xc9\x53\x81\x45\x71\xbe\x3f\x08\xce\xf9\x68\x04\x5a\x5a\xc3\x40\x04\xf6\x7f\xbf\xa5\x4e\x99\x6b\x31\x1b\xd8\xdc\x52\x7d\x89\xe1\xd4\xf5\x34\x53\xa6\x71\x37\x20\x10\x1c\x45\xa6\x0e\xe3\xa0\x5c\x2e\xe6\x6f\x13\x4b\x5a\xf4\x0e\x4b\x70\xef\x37\xba\x3f\x0a\xfd\xef\xc0\x39\xf3\x42\xc2\x8a\xf9\x19\x82\x51\x38\x1a\x10\x79\xa5\xdd\x03\x5a\x8c\x28\x97\x6c\x6b\x7f\x4d\xb0\x9e\xa3\x83\xa3\xa8\x7f\x0f\x85\x1f\xd3\x31\xae\xa7\xfa\x4b\xfc\xd9\x56\x31\xd6\x52\xfa\x2f\x50\xf1\xc2\x3f\xf2\xbc\x13\x7a\x06\x04\xe3\xd9\xf3\x9c\xcb\x96\x51\x45\xbc\xa4\x8b\x06\xdc\x8a\x81\x75\x47\xb6\x25\xef\xfa\x79\x6d\x00\x0c\x37\x74\xba\xd1\x98\xdb\x12\x41\xbe\x7a\x2c\x0d\xc4\xa4\x64\x1b\x9a\x8c\xb9\xcb\x8c\x8c\x38\x87\x57\x6f\x52\x72\xc3\x3a\xaf\xfe\x45\x61\x5f\x51\xa9\x6f\xae\x76\xcf\x51\x25\xbc\x69\xad\x0a\x40\x38\x79\x07\x99\xb5\xc2\x62\x44\x21\xa6\x43\x3d\xba\xb3\x9c\xcc\xb0\xb1\x78\x7b\x5b\xce\x28\x95\x94\x48\x9d\x17\xed\xb5\xf9\x31\x03\x74\x80\x7d\x36\xc6\xe6\x73\x47\x26\xbb\x33\x00\x4e\xca\xe8\xbb\x69\x1d\xcd\x38\x76\x01\xf4\xea\x91\x1b\x4b\x90\xeb\xff\x75\x6d\x7d\x8d\x9e\xb4\x22\xcb\xb9\xaa\xf7\xf4\x77\x2e\x0a\x54\x36\x43\x06\x85\xe5\x7b\x69\x74\x54\xe8\x2e\xea\xdc\xe4\xab\xa0\x62\xb7\x76\x82\xcf\x21\x9b\xe1\xfd\x9b\x00\xf1\xcb\x11\x35\xa1\x02\x13\x49\x53\x9a\x4b\x93\xae\x21\x3f\x19\x3d\x29\x32\x73\x8e\xf7\x29\x20\x49\x9b\x7b\xe2\xa8\x1c\x9b\xaa\xed\x17\xc5\x46\x41\xa5\x97\x4d\x27\x22\x32\x41\xe3\xc6\xa0\x95\x22\x6b\xd2\x37\xe0\x59\x1e\x00\x2b\x3a\xf0\x56\x5d\xf3\xe9\x76\x42\x0f\x97\x64\xa0\x9a\xe8\xbf\xa2\x79\x5f\x8f\xad\x7f\xc6\x87\xbd\x2d\xe2\x3d\x14\x88\xf4\x49\xd8"}, {{0x28,0x7f,0xaf,0xd2,0x13,0x74,0x57,0x2f,0x57,0x81,0x00,0x47,0xd0,0xd9,0x8c,0xb1,0xff,0x3d,0x01,0x20,0xfa,0xa4,0x88,0x61,0x32,0x24,0x57,0x32,0xc1,0xa6,0xab,0x78,},{0xe8,0x25,0x20,0x63,0xf5,0xad,0x7e,0x95,0xbd,0x05,0xc5,0x02,0xa8,0xbc,0x4a,0x17,0x55,0x63,0x60,0x86,0x9b,0x9d,0xe0,0xa3,0xb8,0x58,0x93,0x8e,0x11,0x11,0x76,0x19,},{0x62,0x01,0xe3,0x05,0x91,0xd3,0x6b,0x7b,0x22,0x6e,0x36,0xfd,0xf5,0x64,0x34,0xc4,0x7c,0xd3,0x05,0x18,0x37,0xaf,0x31,0x31,0x3a,0x99,0x17,0xfd,0x02,0xdd,0xed,0x2b,0x5b,0xbb,0x4b,0xbc,0x36,0x8b,0x3b,0xd1,0x5d,0x06,0x20,0x45,0xf1,0x05,0xb6,0xe7,0x34,0x1b,0x15,0x15,0x0d,0x36,0xf9,0x00,0x87,0x59,0x1d,0x83,0x99,0x01,0xb8,0x01,},"\xb3\xc4\x43\xe4\xe5\x89\x9c\x16\xd3\x9e\x81\xb4\xf8\x07\x40\x42\xa9\x04\xa7\x35\x07\x4b\x27\x95\xd9\xac\x06\xb1\x37\x9e\xf7\x61\x8d\x2a\x53\x4b\x6b\xef\x81\x56\x9e\x60\x71\x92\x67\xbf\x29\xcd\x9d\x16\xac\xc9\xa1\x74\xd8\x02\x6b\x14\xb1\x27\xd0\xd2\xd8\xb4\x58\x39\x98\x89\x5a\xd7\xef\x72\xfe\xdc\x53\xb8\xf0\x8a\x22\x50\x10\x0e\x1f\x1f\x0a\xab\x48\xbc\x70\x74\x64\x34\x88\xe6\xb6\x70\xe1\xb0\x72\x7c\x38\x5a\x34\xff\x65\xa0\xd7\xe8\x3b\xa8\x60\x83\xb8\x73\xdf\xf0\x55\x92\x09\xb1\x4b\x2a\xc4\x2b\xf7\xc5\x72\xd0\xc5\x91\x7a\xc4\x2e\x4a\xe4\xda\xe1\xdd\x42\x35\x79\x52\x76\xa0\x76\x13\x2c\xfe\x3e\x0c\x35\x0b\x26\x58\x0f\xbb\x3a\xf8\x17\x77\xb9\x3a\xd9\x5c\xb7\xff\x17\xc2\xd9\x80\xce\x0d\x49\x2f\x6d\x40\xfa\x90\xba\x3f\xca\xa2\x1b\xb6\x87\x35\xee\x1e\xf2\x08\x49\x5e\xbf\x7b\x02\x27\x6f\xfa\x1e\xfc\x08\x16\x58\xbb\x44\xcd\x27\x61\xef\x5e\x3e\x1c\xa6\x0e\xc8\xb5\xd8\x16\xd4\xab\xac\xd0\xbc\xc8\x02\x68\xd8\xf4\xdf\x8b\x3a\x52\x04\x9d\xb0\x15\x7e\x2b\x6e\x81\xac\xd6\xf3\xf2\x89\x47\xc0\x76\x27\x95\x5c\xda\xc9\xea\xa1\xde\x17\xd4\xb9\xda\xa3\x61\xfb\x49\x78\x26\x64\xd7\xd6\xd2\xca\x5c\xec\x6d\x14\x89\x3c\x3e\x80\xb6\xd1\x6d\xaa\xcf\xfc\xc0\xb7\x59\x37\xe8\xbe\xf6\xf9\xe1\x12\xa8\x7f\x4b\x03\x5f\x90\x36\x07\x0a\x2c\xcc\x55\xc2\xaa\xd9\x39\xdf\x67\x4f\x7e\x4e\x12\x68\x5e\x01\x6e\xa0\xe4\x90\x2a\xaa\xaf\xaf\xfe\x38\xdd\xb2\xf9\x0d\x9c\xf7\x85\x37\xf6\x13\x91\x69\x6f\xf0\x33\x0a\xe8\xf7\x9a\x1c\x1e\xd5\xd5\x2b\x4e\xe2\xa6\x2d\x90\xfb\x82\xd9\xa4\x83\x93\xfa\x33\x81\x0b\x40\xd0\x45\x59\x02\xd5\x74\xff\x05\x20\x03\xe0\x16\x0c\x0f\x47\xb5\xe5\x80\xa0\x78\xbc\xee\xf0\x60\x73\xdd\xa8\xb2\xd1\xf1\x04\xa5\x95\xe9\x0b\xb6\xa4\x8e\xdd\xd8\x65\xf1\xca\xe4\xf1\x78\xfe\x22\xe7\x5f\x2f\x61\x24\xa9\xda\x06\x82\x44\x71\x12\xb3\xdb\x5b\xe8\xc4\x24\x72\xb2\x41\xe9\x44\xfd\x23\x70\xc2\xdc\x27\x15\xc0\x5a\x41\xbd\xbc\x89\x0c\x41\xc6\x5f\xb0\x8c\x2f\x59\x31\x74\x39\x1a\xc8\x80\xf3\xcb\x67\xd1\xb7\x4f\xf8\x02\xef\x96\x2a\xfe\xf7\xb9\xf3\xea\x32\x6f\x95\x27\xe7\xfb\xa6\x98\x18\x79\x24\xb6\x4c\xcd\xd0\x86\x62\x48\xc7\x6e\xe6\x4c\x79\x06\x9b\xe0\xa0\x57\xb1\x0a\xe1\x90\xf3\x8f\xf5\xab\xa8\x44\xe3\x93\x31\xcf\x1d\xb1\x3c\x90\x09\x06\xbe\xe0\xd7\xe7\x54\x6e\xf5\x23\x24\xe3\x7c\x59\x06\x75\xf1\x39\xf5\x8f\x57\x3a\x49\x4f\x4a\xe8\x2c\x4e\xc8\x10\x66\xa6\x8e\x2d\x92\x90\x01\x91\xc4\x7d\x30\x62\xf0\xf9\xaa\xed\x19\x11\x37\xcd\xa9\xb8\x3c\xd1\x30\xe8\x26\x29\x60\xe6\x24\x4f\x8f\x6e\xf3\x9f\x15\xa4\xfe\xd1\x3c\xb6\x69\xed\xc1\x9f\x5c\xe1\x62\xce\xb8\xd2\x42\xb9\xad\xdb\xfb\xa8\x77\x2c\xe7\x49\x85\xa5\xf3\x72\x0d\x59\x0a\x92\x0e\x1d\xca\x75\xa8\x79\xb1\xaa\x45\x9f\x74\x62\xff\xf2\xe9\x50\x72\x76\x1b\x20\x92\x54\xfe\x38\xc5\x4d\x83\x3a\x8e\x2c\xb8\xfc\x40\xc5\x98\xf3\xc7\xf7\xd6\xc5\x70\x57\x15\xd0\x30\x8d\xc3\x0e\xaa\x84\x67\x6d\x20\x9d\x7b\x7b\x31\x34\x47\x56\xe6\x9a\x9a\x4c\xb4\xe4\xa2\x51\x81\x7a\x37\x86\xfe\xa6\x72\x8d\xd6\x08\x22\x33\x6b\x45\xae\x5d\x47\xc7\x04\xb4\x5c\x4c\xad\x38\xc1\xe0\x1a\xb9\x3d\x14\x16\x92\xd5\x5d\x12\xfd\xb9\x74\x0f\x1d\x18\x15\x82\xf1\xc4\x8c\xe5\x43\x48\x60\xd9\x30\xf0\xe7\xe7\x0e\xdc\xff\xb8\x55\x60\xa5\x3d\xba\x95\xd5\x7b\x31\xe8\x92\x41\x37\xbc\x2c\x19\xe3\x4b\xb9\xc9\x86\x68\x77\x17\x42\x80\xe8\x0c\x23\x97\x8d\x57\x79\x58\x64\xa7\x37\x4a\xef\x38\x3f\x3b\xf6\x37\x53\x59\xbf\x63\x56\x47\x40\x09\x84\x61\xa6\xc7\x6e\x8f\x23\x89\x13\x28\x87\x69\xa1\xcb\x1c\x95\xb2\x2c\x32\xa9\xeb\xb3\xec\xeb\x04\x8e\xe3\x24\xcf\x0d\x7e\x85\xa3\x89\xb0\x4d\xed\xbb\xcb\xee\xf2\x98\xd0\x52\x78\x16\x08\x5c\x0c\x83\xef\xaa\x29\x85\x46\xe8\x39\x0b\xd1\xbf\xe4\x65\xec\x1b\xaf\xae\x69\xee\x52\x18\xe7\x2c\xae\xdb\x9b\x64\x9c\xf7\x3e\xec\x45\x4a\x2b\x48\x49\x65\x17\x96\x72\xde\xbc\xf9\x44\x13\x63\x99\x5a\x8a\x90\x7d\xe1\x7d\xc0\x68\x4f\x2a\xea\x57\x9a\x2f\xb4\x48\x41\x95\xdb\x41\x15\xca\x32\xe9\x70\x52\x6d\xc0\x0a\x5c\xac\xaf\x58\x87\x11\xdb\xd4\x69\xce\x80\xbd\x29\x7c\x4f\x41\xd6\xfa\x28\xa5\x97\xc6\x37\x2c\x0d\x21\x49\x60\xb5\x45\x98\xcd\x8b\xc8\x49\xeb\xdc\xa3\x6d\x62\x25\xb2\x0d\xec\x0d\x03\x11\x69\xce\xbb\x36\xea\xdc\x3a"}, {{0x9a,0xd0,0x49,0x10,0x08,0x51,0xd0,0xf7,0x9b,0x71,0x12,0x25,0xc9,0x88,0x47,0x79,0x5a,0xcf,0xc3,0x60,0x1c,0x14,0xb8,0xa9,0x77,0x8d,0x62,0x70,0xcd,0x4c,0x05,0xed,},{0xe7,0xca,0xcf,0x4f,0x37,0x14,0x54,0x3c,0x27,0xa3,0xe9,0xed,0x83,0x3b,0xaf,0x3b,0xde,0x4c,0x09,0x56,0x3b,0xef,0x59,0xe7,0x63,0xfa,0xb7,0x1f,0xb5,0xe4,0xff,0x56,},{0xfe,0xc0,0xaf,0x34,0xcb,0xc5,0xcf,0xfc,0x56,0xe9,0x6d,0xd5,0xed,0x59,0x68,0xe5,0x2c,0xbd,0x42,0x69,0x84,0x4f,0xc3,0x0e,0x3a,0xb0,0xd3,0x47,0x2b,0x5d,0x18,0x0c,0x8d,0x1b,0x76,0x90,0x51,0x8f,0x41,0xf1,0x44,0x38,0xe7,0xf3,0xa8,0x3d,0x5e,0x89,0x76,0xcb,0x9a,0x26,0x15,0x1f,0xc4,0x14,0x9a,0x32,0x98,0xd7,0xe4,0x2c,0x05,0x03,},"\xc2\x84\xbd\xd8\xf8\x27\x5b\x49\xac\x80\x8c\x39\x04\x5e\x50\xe1\xed\x50\xc8\xa1\xaf\xd0\x11\xaf\xe5\xdb\x3d\xda\x62\x0b\xe8\xae\xc3\x7f\x45\x60\x57\x62\xe2\x25\xd0\x41\x11\xf2\x1b\x49\xfc\xef\xca\x3f\x3d\x5f\x81\x3b\x20\x20\xa5\x2c\x49\xf9\x5c\x4a\xd6\x1c\xa2\x14\x61\x8a\xde\x7e\xed\x6c\xd8\xd3\x14\xdc\x4c\x63\x55\x95\x52\x77\xd4\x57\x46\x2f\x03\xb9\xfb\xa2\xe2\x25\xb1\xb5\x37\xcd\x4b\x52\x37\x50\x5c\x90\xd4\x32\x05\xe1\x71\x5c\x39\x63\xcc\xfb\xec\x37\x9e\x6c\x17\x05\xe0\x80\x34\xa3\x1a\xfc\xe6\x46\x72\x7e\x78\xa2\x0e\xed\x88\xae\xb0\xdc\xda\xbc\x5c\x86\xe8\x69\x79\xe6\x3a\x5c\x26\xc3\xe2\x17\x79\x73\xb6\x98\x3c\xeb\xfe\xda\x9f\x31\x47\x93\x61\xb6\x61\x76\x3a\xa7\x26\x1c\x09\x39\xca\xd4\x8b\x71\x90\x8e\xa9\x07\x68\xbb\x6c\x95\x83\xd8\xea\xeb\x9e\x03\x38\x51\x5a\xca\x12\x42\x62\x6d\xc6\xbe\x04\xec\xc4\x42\x9e\x4c\xbb\x4f\xf3\x36\x09\x61\x92\xf7\x50\x1e\xc4\x71\xb5\x96\xa9\x9d\x4c\x02\x75\x82\xcc\x69\xe2\x04\xb6\xfb\xcd\xdf\x59\xf5\xbf\x74\x62\xdd\xcd\x59\x89\x12\x1f\xd1\x0f\x11\xa0\x67\x5b\x6c\x4e\x4f\x65\x20\xd2\x7d\x7c\x61\x43\x1b\xa7\xd1\x74\xf5\x73\x95\xa0\xbf\x72\xd3\x8c\x11\x42\x73\x6d\xed\x6b\x91\xe4\x81\x1c\x0e\x85\x41\xa6\xc0\xd9\x96\xc5\xa1\x7d\xc9\x7d\xb3\x88\xf7\x21\xd2\x35\x7d\x3c\x6a\xf5\xc8\x6b\x1d\x5e\x47\x6e\xa0\xac\x0b\x1c\x11\xd4\x38\x7f\x76\x90\x39\xbd\xf5\x38\xa0\x21\x6e\xdd\x00\x45\xee\x6d\xd8\x9e\xef\x82\xa4\x25\xa8\x3f\xaa\x1b\x12\x80\x70\x38\xca\x19\xeb\xec\x00\x2e\x8b\x3c\x15\x34\x4c\x61\xcf\xd1\xe5\xf0\xe3\xb0\x27\x3d\xeb\x37\x27\x8c\xf1\x97\xd8\xa8\x3b\x13\xd9\x92\x30\x8a\x51\x37\x3e\xb3\x81\x14\xc9\xe4\x5b\x43\x87\x80\x27\x7d\x1e\x32\xf3\x97\x29\x62\xa3\xe1\x4a\x8d\x08\xdb\x9f\x09\xae\xc3\xdd\x32\xa5\xb9\x94\x23\xe6\x1f\x5e\x79\x94\x4a\xb5\x7a\x36\xf6\xec\x07\xcc\x32\x04\xf9\x16\x5e\xe0\x21\xad\xa9\x3e\x6f\xec\xb7\xec\x45\x6a\xa0\x28\x8c\x37\x8a\x75\xaf\xd6\xe9\xda\xd6\xc6\xf8\x8e\x95\x9a\x2c\xf2\x8b\xfe\x56\xd2\xe6\x1b\x2a\xda\xec\xf0\xd8\x6d\xd8\x92\x8b\xce\xda\x26\xb0\x54\x02\x46\xb7\x33\x7f\x5c\xdc\xec\x11\xfb\x0c\x1a\x59\xd6\x31\xfc\xca\x19\x40\x8f\x95\x22\xb6\x8a\x39\xf8\x6e\xf9\x70\xb8\x83\xa0\xf0\xbd\x6b\x7b\x14\x15\xec\x9a\xa0\x43\xb5\x2e\x19\xba\xc1\x76\xd6\x7b\x79\xe2\xa5\xdc\xa8\xbf\xd2\x91\x02\xac\x60\x8e\x47\x3e\x9f\x98\x2c\x3e\xc8\x93\x2d\x8a\xa8\xcd\x56\x52\x84\x49\x1d\xe5\x2f\x51\x6b\x9e\xbf\xb7\xdb\xe1\x29\x95\x11\xae\x73\x2c\x2a\xd1\xee\x49\x92\xb0\x77\xfa\xff\xc6\x5f\x48\x8f\x1b\xa2\x15\xda\x69\x79\x60\x09\x71\x19\x6d\x0f\xf3\xa0\x8a\xd9\xf0\x0e\x82\x9c\x1d\xe1\xaf\xca\x10\xca\x47\x6b\xe6\x64\xaa\xd2\x61\x88\x9b\x0e\xb7\xae\xb6\xed\x86\x37\x61\x89\x00\xac\xf4\x81\xe2\xd2\x24\xec\x64\xa6\xe6\xcf\x4f\xa4\xdf\x73\x1b\x7a\x4f\xee\xff\x25\x80\xc9\x9b\x6d\x75\xb4\xdc\xd0\x97\x69\x65\xcb\x2b\x0b\x56\x35\x22\x78\x42\xd0\x8a\x7d\x90\x7a\xae\xbc\x2f\xde\xd8\x00\x98\x11\xdc\xdd\x73\x35\x49\x21\x75\x3b\xc5\xde\xc0\x17\x68\x93\x35\xf5\x6d\x0f\xb7\xae\x21\x3b\x41\x79\x2b\x1f\x4e\xb1\x4a\x24\x53\x59\x77\xa3\x05\xb1\x9e\xb9\x83\x8d\xc6\xb5\x15\x28\xb9\x8a\x39\xbd\xa0\x60\x10\x71\x7a\x20\x8c\x34\x7a\xa1\x58\xee\xcd\xfd\x9a\x04\x72\xd3\xb8\xd9\x20\xf9\x69\xe1\x2b\x65\x91\x9b\xda\x38\xb4\x61\x94\x98\x50\xcc\x9c\xc1\x8d\x8e\x3b\xaa\x8c\x88\x6d\x93\xcd\x09\x6a\x20\x9d\x54\x3c\xa3\x37\x5f\xc4\xe7\xd6\x51\x03\xcb\x64\x24\xbe\xab\x44\xe8\xbc\x4a\x5b\x62\xc2\x9a\x01\xbc\xf4\x4d\xcc\x61\xe7\x67\x5c\x02\x5d\xec\x07\x24\x20\x01\x94\xbd\xe7\x4d\x72\xc0\x2e\x94\xa9\x46\xa7\x52\xf3\x60\x84\x57\xfd\x91\xf2\x92\x71\x57\x71\x48\x7d\x26\xca\xd4\xe5\xcf\x6e\xf7\xc6\xf7\x16\x27\xa4\xda\xf8\xa4\xc9\xb8\x91\xc1\xee\x8f\x04\xae\xaa\x99\xfe\x0c\x8b\x4e\x83\x3b\x76\x09\x06\x6b\x61\x32\xa9\x68\x89\x0e\x26\x95\xda\x22\xb2\xd8\x57\xc8\xc0\xad\x91\x87\xc9\x60\x69\xe4\x76\xe2\x7e\x46\x32\xc4\x47\xee\x76\x71\x4a\x31\xd1\xe5\x14\x9e\xcb\x33\x7e\xe1\x32\xf3\x55\x2d\xa3\x3a\xb2\xd6\xfa\x9d\x7e\x93\xf6\x8a\x77\xcb\xf1\x91\xcb\x06\xbc\x22\xf3\x47\x0a\xf6\xd7\x58\x1e\x3a\xcc\xbe\xca\x0b\x6f\xeb\x08\xa1\x4b\x9a\x80\xc1\xef\x59\x37\x4c\xcd\xc0\x52\x3c\x36\x84\x50\x4c\x01\x04\xbb\xa2\x2c\x10"}, {{0xde,0x54,0xe1,0x3f,0x9e,0x2c,0xc7,0x54,0x54,0x6c,0x99,0xb3,0x3b,0x3d,0x72,0xf4,0xd1,0xf7,0x71,0x50,0x38,0xa9,0x65,0x9f,0x33,0x63,0x65,0x77,0xbb,0x52,0x6a,0xdb,},{0x36,0x33,0x8d,0xb3,0x32,0x6b,0x00,0x5e,0x5c,0x61,0xff,0x78,0x2b,0xe2,0xea,0xb1,0x66,0xd4,0xeb,0x72,0x34,0xa9,0x8e,0xa1,0xcd,0x85,0x5e,0x1a,0xd5,0x35,0xe9,0x4c,},{0x37,0xac,0xa8,0xf2,0x48,0x39,0x4a,0x9e,0x04,0xd0,0x6a,0x7d,0xa8,0x4a,0x7d,0xef,0xa3,0x9d,0xe4,0xda,0x2b,0xcb,0x18,0xd5,0xf6,0x4c,0xc3,0x4d,0xb0,0x86,0x51,0xaf,0x4a,0xbb,0x19,0xfa,0x2a,0x92,0xa7,0xdd,0xa5,0x6e,0xc9,0x93,0x0b,0x81,0xae,0xbd,0x23,0x99,0x05,0x11,0xf6,0x84,0xc6,0xd1,0x5b,0xa5,0x95,0xf7,0xd4,0xa2,0x74,0x0e,},"\xdc\x40\x41\xad\x61\x42\x3a\x12\xa0\x41\x13\x18\xa6\xe6\x2a\x5e\xf6\x4a\x19\xab\xe2\xd9\x85\x22\x97\xbe\x2d\x4a\x35\xeb\x86\x70\xca\x36\xc5\x21\x53\x1b\x30\x38\xac\xda\xee\xa2\xea\x01\xa0\xb6\x18\x78\x62\xa4\xe1\xa8\x9d\x4b\x81\xc5\x31\x8e\xd4\xd6\x71\x31\xbc\x38\xf8\x41\xa1\x42\xa2\xf6\xf3\x16\xdf\xf0\x76\x93\x9d\xc0\xeb\x81\xb2\x30\xfe\xa9\x88\x1f\x8f\x0f\xf7\xed\x0b\x29\x3f\x69\xb2\x89\xfe\x77\x08\x81\xfb\x37\x10\x80\x8e\x8e\x59\xe6\x4e\x19\x0c\x1e\x37\x9b\x9d\xd3\x48\xb0\x2c\x23\x47\xd7\xe2\x06\x96\x79\x0b\x62\x77\x6a\x2e\x82\x5b\xed\x69\x17\x03\x7c\xb6\x35\xc9\x2f\xbc\x76\xb4\xc5\x85\x10\x27\xe7\xf1\x38\x52\xee\x7e\x7c\x52\x57\x3a\x90\x30\xb7\x9f\x22\xb6\x0d\x58\x69\xef\xe6\x80\xc0\x16\x64\x92\x9f\xe9\xa0\x6f\xa3\x33\x05\x2b\xe1\xd6\xaf\x3a\x0b\x48\x2c\x33\x2e\x18\x05\x1e\x78\xb3\x33\x83\x9d\x6c\xb9\x3d\x93\xeb\xfb\x27\x7e\x42\x68\xfb\xee\xee\xba\x1e\x8f\x96\xa5\xc9\xe3\x28\xc4\x26\x72\x12\xca\xc2\x51\x21\x5b\xfa\xa7\x8f\xd8\x8a\x87\x41\x7a\x80\x60\x2d\xcd\x88\x28\xe8\x04\x00\xda\x30\x4e\x98\x98\x62\xd1\x32\x01\x08\x2d\xe3\x53\x09\x25\xe0\xed\xc2\xc1\x30\xa9\xa4\x19\x07\x1b\x31\x08\x8d\xa6\xf6\xff\x40\x56\x30\x1c\x12\x9f\xc2\x13\x52\x33\x62\x8d\x16\xd8\xbf\x16\x0f\x6c\xe8\x6d\x83\xcd\x4e\x29\xae\x0c\x73\x84\x3d\x70\xb5\x30\x56\xc5\xaf\x3f\x3d\xc5\x61\x27\x1c\xb5\xaf\xf3\x93\xf0\x80\x3a\xde\x07\x2d\x9c\xeb\x74\x5b\x61\x87\xb2\x8d\x24\x69\x67\x67\xd5\xc2\x1f\x4d\x4a\xc5\x8d\x5b\xb6\x6c\x5c\xad\xfe\xfb\x16\x26\xef\x93\xf7\x14\xc7\x82\xb6\xef\x3c\xcf\x4b\x44\xee\x75\xf0\xbb\x75\x7a\x25\xd9\xb4\x6a\x9d\x93\x1a\x03\x72\x7d\x49\x6a\x22\x81\x0c\x63\x4f\x5c\x1a\xe6\x0c\xbd\xf2\xf1\xea\x29\xb5\x46\x07\xcf\xf5\x0d\x9f\x8e\x03\xa0\xa4\x51\x3c\xf6\x8d\xfb\x61\x97\x73\x41\x1b\x61\x80\x95\x9a\x8a\xac\x30\xb2\xee\xe4\xad\x32\x79\x15\xf6\x0a\xe5\x2b\x90\xe0\x4a\x9b\xce\xf8\xdc\x67\xe7\x1e\xa1\x0a\xca\x55\x3d\xb9\x89\x5c\xd8\x00\x84\x57\xd7\x6f\x02\xce\xb5\x35\x00\x21\x11\x09\xe8\x96\x03\xf3\x04\xd8\x80\xaa\xf0\x28\x61\xfe\x37\xc9\x53\x4a\x9d\x67\x2d\x83\x71\x3c\xd3\x26\xc9\xab\x81\xc3\x53\x76\x4c\xa5\xad\x5a\xc0\xe7\xf1\xff\x88\x0f\xb4\x8a\xcd\x9c\xbb\x94\x90\x64\xe2\x11\x83\xbc\x38\xfb\x1d\x90\xcf\xe6\x19\xa8\xb8\xfb\xf5\x32\x18\x89\xbb\x15\xc0\x2a\x53\xe4\xd3\x67\xfc\x66\x88\x77\xb6\x62\x28\x1c\x4a\x2a\xf6\x78\xf8\x6e\x69\x1d\xaa\x8a\xfd\xca\xc1\xb8\x20\x18\x9f\xe5\xc2\x50\x8c\xe3\x6e\xdd\x9c\x6f\x8f\x51\x57\x50\x71\x83\x94\x39\xa0\x03\x35\x2c\x15\x73\xe1\x27\x68\xdd\x6d\xeb\xdf\x1e\xd4\xf9\x4a\xc7\x9d\xf1\xab\x6a\x0b\xc2\x50\x79\xc0\x93\x54\x77\xd9\x14\x99\x88\xec\x3b\x87\x93\xef\xcd\xa8\x59\xac\xc3\x92\xab\x3f\xa9\x94\x93\xd7\xae\x0a\x65\x75\xb6\x95\xa1\xce\x07\x65\x32\x86\x02\x87\xdd\x49\x89\x67\xc4\x6f\x7a\xdd\x49\x49\x4c\x02\xe7\x44\xc4\x02\x80\x19\x57\x82\xe2\x42\x44\x76\x16\x5e\x72\xce\xe2\x36\x42\xe5\x1c\xec\x43\x21\x91\x11\x6a\xec\x59\xb5\x9f\xcf\x0a\x36\x83\xb9\x5f\x76\x07\x60\xa2\x0b\xd6\x74\x54\xd8\xde\x64\x7c\x0f\x9f\xfc\x4f\x90\xf6\xe4\x5a\xc9\x3d\x80\x2f\x33\x82\x99\xef\x28\x0d\x3b\xb7\xa4\xa8\x9d\xb8\xc5\x9a\x12\x52\x6f\x27\x83\x02\x4c\x8a\xde\x90\x02\xf0\x0e\x3d\x52\x9b\x78\xdc\xdd\x49\x03\xda\xf5\x76\x7a\x2b\xed\x75\x14\x53\x96\xef\xb6\x97\x90\x71\x2d\xe6\xa5\x90\x1e\x6d\x8c\x15\x28\x01\x82\x38\x82\x85\x02\x1d\x0e\x70\x92\x92\x15\xd9\xf2\xb7\x99\xbb\x92\xf2\xca\x56\xf4\x8e\x8c\xbb\xa2\xf1\x9b\x08\x58\x45\x12\x65\x67\xcf\xaf\xa6\x03\xc2\x94\x6e\xa1\xe7\xd2\x74\x55\x4a\x38\xbf\x7d\x86\x51\x1f\x3e\x47\x4f\x9f\xa5\xcb\x11\x10\x5f\xb5\x2f\xc6\x81\x77\xf3\x38\x5f\xe1\x39\x7b\xe5\x84\xa7\x00\x89\xdc\x74\x1b\x4b\x00\x95\xbf\x7e\xb2\x99\x3b\x41\x8d\xf8\x7b\x14\xa1\xf9\x79\x26\xe8\x68\xdf\x6e\x56\x8b\xec\xa2\x21\x5f\x2d\xd7\xce\x8a\x3c\x9e\xe8\x49\xcb\x41\x34\x6c\x68\x4f\x7f\xfe\xf0\xa7\x92\xed\xf4\x33\xca\x99\xef\x34\xc7\x3f\x92\x72\xa7\xeb\x97\x58\x7c\x8f\xce\x4a\x51\x36\x44\x47\x37\x13\x8d\x53\xea\xdf\x3a\x84\xf5\x01\xbb\x10\x45\x6e\x8e\x4a\x40\x47\x08\x2c\x9e\x14\x35\xf5\x76\x52\x6c\x21\x64\x71\x4d\x70\xb3\xd0\xa6\xe9\xc0\x8a\x53\xe3\x23\x84\x0f\x4d\xcf\xe8\xf2\xd1\x9f\x0b\xe2\xc8\x8e"}, {{0x85,0x04,0xfb,0xca,0xab,0xa6,0x76,0x83,0xf8,0x15,0x49,0x92,0x82,0xb6,0xeb,0xd4,0x97,0xa8,0x1a,0x91,0x56,0xf5,0x3e,0x02,0x5c,0x2d,0x3e,0xce,0xe0,0xdb,0x65,0x59,},{0xe6,0x2d,0xa8,0x64,0x93,0xa0,0xca,0xf5,0x29,0x21,0xd5,0x60,0x2f,0xbd,0xc3,0xdd,0x3a,0x84,0x36,0x94,0x1f,0x6b,0xe2,0x40,0xb3,0x15,0x09,0x68,0x12,0x38,0x74,0x6d,},{0xc0,0xea,0x07,0x4b,0xf9,0xad,0xde,0xe2,0xe3,0x35,0x0a,0x96,0x9e,0x7c,0x56,0x9e,0x3a,0xea,0x1a,0x41,0x88,0xee,0x5a,0xf3,0x4c,0xb7,0x3f,0x38,0x82,0x98,0x65,0x3d,0x29,0x9b,0x5d,0xbd,0x94,0x16,0x3f,0xba,0x20,0x9e,0x8f,0x7d,0xc2,0xe2,0x63,0x4d,0x3a,0x52,0xa0,0x28,0x10,0xa8,0x8c,0x61,0x52,0x94,0x5b,0xc1,0x6b,0xbd,0xfb,0x0c,},"\x6c\x63\xed\xbd\x40\xa0\x38\x74\xec\xae\xf8\x16\x02\xcd\x68\x50\xc0\x9f\x49\x15\xb7\xaa\xf4\x18\x25\x8c\x56\x83\x64\x53\x8e\x83\x92\xa8\xc3\x79\x83\x8b\x0c\x95\x34\x5b\xf6\x4c\x3d\xbc\x17\x58\x53\xfb\x64\x1f\x35\x0f\x0b\x53\xa0\x5a\x8e\xc2\x90\x28\x8c\x03\x26\xd4\x35\xff\x77\x6f\x86\x83\xa2\x73\x33\x3f\x9b\xb2\x80\x21\x84\xec\xc5\x3b\x06\xb2\x8c\x2c\x40\x2a\x54\xbf\x13\x4c\x1a\x23\x29\x97\x49\xa6\xce\x2b\x51\xa7\xba\x22\x23\x21\x48\x79\x7e\x99\x3f\xf2\x58\x28\x6e\x94\x77\x78\xa8\x74\x2d\x3f\x36\xcc\x78\x42\x97\x60\x43\xfc\x23\xda\x8a\x97\xec\xb9\x71\x5f\xc0\x5f\xb0\xf2\x3f\xa7\x32\x1d\xdc\x19\x32\x86\x16\x31\x60\x4e\xba\x2e\xf2\x5d\x8b\x75\x6c\xe4\x73\x36\x56\xbf\xd1\xe1\x47\x08\x92\x3a\xc7\xc6\x0a\x79\x84\x61\x36\xd7\x41\x97\x3b\xa5\x51\x41\x89\x72\x0b\xc0\xf7\x77\x4b\x7b\xd3\x57\x45\x95\xbd\xe2\x51\x50\x31\xb2\x5b\x62\x65\x4b\x16\x10\x35\x77\x80\x70\xac\xe1\x49\x71\xdf\x1f\xe0\xbe\x4e\xa1\xef\x55\xcf\x87\x47\xd3\x71\x6c\x1c\xe7\x07\xb1\xa7\xc8\x52\x0e\x6d\xeb\x33\x4e\xb1\x86\x33\x8f\xc9\x30\x00\x76\x8e\xb2\xbe\x40\xc6\xe0\xdc\x3f\x5d\xf8\x31\xb3\x2c\x3a\x2c\x33\xe2\x88\x98\xd6\x76\x2a\x15\x22\xd3\xd4\x8d\xae\xe5\x6a\x02\x69\xbd\xdf\x6c\xfc\x9d\x73\xf8\xd1\x78\xae\xcc\xbf\xfe\xf7\xce\x16\x4f\x98\xaf\xea\x22\x4a\x9b\x60\xed\xe4\x6a\x95\xfa\xdc\x9f\xc5\xd9\x4d\x20\x9c\x16\x6d\x9b\x8d\xe2\x53\x38\x1e\xa2\x24\x88\x62\x94\x6b\x9c\xf5\x34\x94\x74\x55\xc2\x44\x58\xcf\x56\x68\x3a\x0e\xc4\x7a\x2c\x65\x07\x5c\x69\x4c\x7c\x3d\x6a\xdf\x9a\xe5\xe8\xad\x31\xac\x76\x9f\x83\xaa\x26\xe3\x12\xc5\xb0\x1a\x9a\x09\x40\x4b\x15\xb8\x14\xba\xa7\x66\x6b\x3e\x03\xf0\x6a\x8d\x63\x48\xab\x8c\xcb\x9b\x60\xa4\xa4\xfa\xf8\x6f\x71\x35\xdf\x03\x9d\x95\x5c\x07\xbd\x92\xe7\xb8\xe3\x27\xee\x6c\x1b\x40\x19\x6a\x28\xb4\x44\x6a\xa5\xa9\xb2\xb9\x77\x3a\xb7\x6e\x3c\xe2\x11\x80\xf0\x9d\x6c\x08\xd2\x77\xc6\x77\x1d\x67\xe2\x2d\x84\x54\x0f\xa4\x3b\x38\xf6\x34\xcf\xc4\x6e\x5b\x8c\x33\xf1\x5a\x56\x8a\x77\xe4\x91\x4a\xad\x9a\xb8\xc9\xf7\xfe\xa4\x7f\x76\x77\xc0\x18\x80\xb3\xe8\x5d\x2d\x0e\x3f\xbd\x6d\xc6\xe9\x9e\x43\x7d\xdc\x73\x6f\x92\xb5\xa2\xff\x29\x27\xe0\xb4\x42\x14\x2f\x08\x97\xd0\xb8\xa1\x9a\xc2\x03\x63\x3d\xf4\x13\xfe\xaf\x8e\xf5\x0a\x5f\x76\x7b\xed\xaf\x20\xf1\xc1\x3f\x3b\x89\xd1\xe8\xb7\xbd\x18\xd5\x91\xf9\xde\x11\x6e\xe3\x4f\x98\x24\xe4\xea\xd1\xae\x9d\xa2\xe8\xca\xae\xf8\x8b\x29\x51\x6a\xa9\x42\xde\x77\xa7\x46\x7b\x6f\xb2\x6a\x66\x6f\x30\x64\x8c\x71\x5a\x2e\xe9\xf9\x46\x74\x3b\x54\x3a\x44\x28\xe0\xdf\xd0\x61\x78\xe7\xe9\x3e\xc6\xf2\x6e\x00\x3e\x05\x8b\xec\x14\xa4\xaa\x2e\x3b\x8d\xe1\x12\x95\xa7\x64\xca\xb3\x0b\x31\x3f\xcc\x57\x43\xb2\xfb\x89\x96\x2d\xdc\x5c\xdc\x6a\xa0\xd2\xe4\xa3\x06\xe7\x7a\xf7\x6a\x05\xa5\x98\x92\x3f\x62\x8a\x85\xdf\x1c\xc7\x3a\xd3\xbc\x01\xc4\xb9\x79\xbd\x7c\xb2\x96\x59\x0a\x88\xb0\xa4\x1b\x44\x5d\x50\xa0\x84\x23\xe4\xed\x80\xf1\x76\x3c\x71\x6b\x6c\x45\x7d\x84\x5d\xfa\xa6\x8d\x12\xb0\xd0\x3c\x55\xfd\xe8\xae\x6b\x2b\x92\xbc\x63\x22\x94\x3d\xbe\x54\xc7\x06\xbc\x8e\x5f\xce\xe7\x06\x54\xb2\x6f\x3b\xfd\x87\x7f\x5f\x53\x39\xac\x18\x2d\x54\x17\xbd\x4c\x07\x35\xd8\x25\xbf\x70\xe8\x5e\xab\x82\x16\xed\xda\x63\x2a\xe7\xe2\x2b\x3e\x53\xd0\x78\xa8\xb2\x0b\x5a\x7e\x23\x85\x33\x7c\xf9\x2b\x3c\x16\xb0\x23\x56\x3e\x11\xcb\x50\x43\xb7\x04\xd3\x7e\xb5\xed\x9e\x85\xfc\xdc\x95\xcf\x7a\x6e\xad\xe4\x08\x03\x17\x5a\x00\x8e\xf6\x53\xac\x61\x36\xf1\x61\x29\xab\xae\x11\x37\xc5\x82\x34\x00\x74\x8a\x81\x25\x62\x54\xd3\x17\xcf\xc9\x39\xe2\x6e\xa0\xce\xf9\xf6\x54\x8d\xb4\x28\x90\xc4\x8b\xeb\x04\x79\x10\x3b\xa0\x89\xe5\x14\x11\x80\x38\xb1\xb9\x09\x43\xd7\x16\xf7\xa8\xd4\xcd\xa5\x98\x3a\x67\x4b\x83\xa0\x02\xd8\xac\x9c\x65\x73\x4a\x28\xb7\x7b\x76\x0c\x8e\x38\x03\xf8\x78\x1e\xa9\x19\x9f\x79\x7c\xe7\x29\xe0\x6b\xff\xfe\x8c\x29\xb2\x0b\xc8\x52\x27\xc0\x9c\xc0\x52\x19\xff\x2b\xa3\x8e\x18\x05\x10\x83\x73\x2f\x83\xcb\xfc\xcc\x31\x07\x56\x45\x0b\x26\x1d\x5b\xe1\x83\xd9\xfb\x44\xec\x18\x52\x9f\x2c\xc9\x84\x8c\x40\x11\x9c\x60\x76\x76\xbc\x4d\x90\x15\xfd\x4b\xd2\xfc\x91\x8d\xc8\x03\x1e\xc1\x9a\x05\xff\x36\x2c\x18\x40\x43\xbe\x7f\xe0\x66\x01\x9a\xc5"}, {{0xea,0xc0,0xf0,0x6c,0x2c,0x14,0xf3,0x7d,0x43,0x4b,0xc9,0x98,0x97,0x22,0x5d,0xd2,0xe3,0xf1,0xed,0x74,0xaa,0x74,0x42,0xc5,0x50,0x33,0x9d,0xf7,0x7d,0x0b,0x7b,0x32,},{0x43,0xe6,0x20,0x55,0xdb,0x6e,0x13,0x49,0xc9,0x4d,0x89,0x02,0x91,0x87,0x88,0x20,0x20,0xcb,0xcf,0x9d,0x75,0xe0,0x3e,0xb6,0x56,0xfa,0x0a,0x15,0xb1,0x90,0x02,0xd7,},{0x45,0xf2,0x80,0x3a,0xfe,0xb0,0xfc,0x44,0xd3,0xaa,0x96,0x5b,0x12,0x65,0x9b,0xf5,0x02,0xe4,0x72,0x95,0x70,0x61,0x84,0xb2,0xa1,0xc6,0xf1,0x6d,0x05,0x06,0x13,0xf5,0x96,0xa2,0x00,0x13,0x94,0xe0,0x0e,0x2a,0x44,0xc4,0x6c,0xf6,0x50,0x5d,0x5c,0xf5,0xb8,0xab,0x84,0x12,0xf0,0x7e,0xda,0x95,0x1a,0x15,0x00,0x5e,0x33,0x8f,0x3c,0x0e,},"\x27\xb7\xfd\x0e\x71\xad\xf1\x94\xcf\x54\x07\xb6\x77\x17\x93\x06\x0d\xe0\xfc\xa7\xca\x0a\xe6\x48\x35\xc4\x31\x87\x40\x8a\x70\x4f\x53\x3d\x5e\xa0\xc8\x3a\x65\x43\x87\xba\x7d\xb1\x6e\xd5\x8e\xc8\x37\x22\x6d\xf5\x7c\x1f\xe6\x38\x2c\x59\x19\xe9\x22\x13\xf6\xf1\x8c\xbb\x57\x35\xd1\x78\xa4\x76\xaf\x35\xd3\x90\xb7\xcd\x25\x56\x21\x7c\x53\x0f\x3a\x1f\x8a\xb2\x33\x9c\x1a\x5e\x8d\x96\x93\x87\xef\xd3\x94\x14\xb5\x6b\xb7\x84\xdf\xd5\xeb\x89\xb8\x59\xe1\xf4\x03\xa2\x38\xec\xa2\xa9\x41\xe6\xdb\x56\xac\x45\x6b\x73\x45\x06\x98\xd1\x45\x5e\xc1\xe9\xb3\x9a\x1e\x90\x7d\x6b\xc7\xe6\xcf\xf4\x24\xa2\x8e\xed\x57\x9a\xf1\x63\x10\x11\x5b\x67\xf5\xfc\xf7\xf8\x34\x6b\x3f\xa0\x26\x0c\x6d\xa2\xe2\x77\x55\xac\xa5\x70\xba\xbb\x3d\x30\x3c\xc8\x32\x46\x0c\x96\x3b\xfd\xd5\xc1\xff\xb2\xfc\x19\x92\x19\x29\xdd\xa2\xa7\x17\xfb\xcb\xeb\x2b\x85\x25\x76\x1b\xd6\x60\xce\x4a\x0f\x76\x85\x28\x5d\x7f\xad\x61\x15\xab\x09\xf8\xe6\x3f\x5f\x77\x39\x14\x49\x4e\x20\xbe\x1b\x51\x2d\x11\x14\xcc\xe3\xf0\xf6\x8c\x7d\x94\xf5\x48\x57\x69\x4f\x22\xaf\x4c\x69\x8d\x78\x2c\xe8\x37\xb0\xc1\x72\x2b\xb7\x31\x3b\xb2\xc4\x1f\x6d\x3d\xd1\xa0\x28\x77\xfb\x42\x96\xd8\x66\x2a\x9e\x86\x25\x98\x4d\xc1\xfd\x1a\x95\x10\xeb\xa9\xd6\x43\xac\x58\xa8\x86\xa0\x45\xcd\x0e\x53\xc0\x56\xa8\x33\xf9\x68\xb3\x5d\x01\x32\x0e\x9c\xc0\xb4\x35\xd3\xf6\xbf\xad\x26\xf9\xeb\x57\x54\xd3\x8d\xdf\x6d\x5c\x4b\xf6\x15\xa7\x64\x4a\x23\xf9\x82\x6b\xcc\x97\x60\x92\xd8\x2d\x81\xd5\x47\x00\x0d\xe0\x08\x1b\x7a\x40\xa9\x3f\xbd\xda\xc1\x3f\x7d\x99\x70\x8c\xcd\xee\xb9\x40\x5c\xd6\x34\xca\x07\x48\xca\xd2\xc1\xd8\xf1\x64\xf5\xd7\x7a\x4f\x36\x4a\xe4\x88\xbe\xdc\xf1\xf2\x0e\xb9\x54\xbc\x8a\x27\x8a\xf8\x14\x32\x41\x78\x56\xa9\x00\xf8\xf1\x52\x92\x1a\xfb\xe1\x79\x14\x22\x9a\x51\x3b\xd7\x1a\xb7\xe6\x61\xcd\xe1\x29\xaf\x93\xe2\x50\x94\xc5\x61\x18\xed\x1f\x22\xdb\x64\x44\x28\xb4\x74\x65\x1f\xe3\x6b\xe8\x2f\xa3\x69\x5c\x41\xfc\x86\x99\x66\x7e\x05\x37\x43\xb0\xa4\x11\x55\xc3\x1f\x1e\x26\x79\xc6\xe8\xcb\x9c\x9d\x1f\x5f\x4b\x40\xa3\x20\xa9\xfd\x9f\x47\xda\x9b\x94\x21\x1b\xa6\x01\xb2\x2a\x11\x52\x10\xd9\xf5\x59\xc4\x49\x6f\x01\x73\x24\x58\xf4\x9a\xc3\x4e\xb3\x86\x63\x6c\x8b\x6c\x68\xc7\xbb\xc0\x07\x8a\xb6\xf3\x98\xa6\x24\xb8\xba\xfb\x1c\x62\x29\x58\x56\x2d\x23\x1d\xff\xd4\xdb\x09\x61\x96\xbb\x87\x47\x9e\x42\xea\x22\xac\xbd\xcd\xe8\xde\xb1\x0e\x31\x16\x32\xf0\x2f\xca\x14\x78\x7f\xd3\x14\x05\x69\xb9\x42\x89\x91\x54\x3e\xc6\xe8\x34\xe1\x0b\x14\x9f\x23\xc7\x4b\xb9\x9a\xc7\xb3\x79\x9a\x20\x96\xd2\x2e\x38\x7a\x71\x2b\x6f\x90\x11\xea\x34\xc5\xbe\x4c\x46\x85\x81\xac\x62\xce\x66\x20\x63\x25\x2e\x06\x6a\x9a\x3b\x15\xc9\x57\x0d\x06\x5d\xc1\x61\x99\x29\xf0\x6b\xc7\x5a\x31\x79\x46\x8b\xc8\xa1\x6e\x3d\xdc\x4f\xe1\x85\xce\xba\x0a\x92\xa5\x46\xb8\x67\x5f\xc1\xad\xe5\x63\x07\x15\x0c\x7e\x4c\x84\x4f\x6a\xa5\xf1\xed\xbf\xb5\x4a\xc6\x32\xca\x2b\x25\x9c\x32\xa3\x3e\xe2\x86\x78\x56\xc3\x39\x0a\x67\x40\x36\x4c\xb0\xdf\xb9\x76\xe5\x3d\x0c\xc6\xc4\x2a\x10\x6a\x1c\x26\x91\x8c\x8a\x6a\x03\x3b\x2a\xa3\xc7\xf2\xe4\x39\x2e\x79\xf8\xec\xa5\xb3\x36\xba\xc5\x06\x1d\x76\x98\xa3\xbf\xe7\xc2\xc2\x92\x89\x25\x54\x03\x0d\xe6\xce\x7c\x0d\x06\xee\xfc\x54\x90\x6f\x81\xe0\x09\x7f\xcf\xf2\x7d\x14\xb9\xb7\x99\x4a\x79\x70\xe1\xa5\xf5\xc6\xb6\x40\x5d\xca\x22\x03\x3d\xff\x0e\xae\x13\x8a\xd8\x99\xf6\xee\x68\x12\x0b\x8f\x22\x74\x4b\x02\x69\xa9\xa8\x98\x9b\x6f\x7e\x08\xaf\xfa\xe7\x7b\xca\x21\x68\xad\xe2\x40\x58\xae\x68\xa7\xf8\x00\xe0\x2e\x7c\x38\x39\x1b\xaf\x56\x5d\xd4\x0b\x55\xfa\x3a\xb3\xc2\x47\xb9\xce\xb4\xd9\x67\x47\x17\x75\xe6\x63\xd6\xa1\xc6\xc7\xe1\x73\x50\xbb\xd6\xb9\xa3\xeb\x1e\x48\x4a\xc2\xe7\xa7\xa5\xc8\x4f\x50\x83\xe5\xac\xe8\x73\x0d\xe8\x9c\x47\xe8\xdc\xf8\x34\x1e\x40\xba\x34\x5d\xbd\x66\xba\xe0\xf7\xf0\x76\xa7\x05\xb1\xbb\x7f\x47\x0e\x3e\xdf\xb2\xb7\x8e\x4d\x63\x59\x41\x3d\x18\xd3\x32\x80\xb4\x54\xa0\xdb\xb8\x81\xd8\x60\x67\x26\xfa\x9b\xea\x27\x24\x75\xe7\x9f\xea\x6a\x54\xcb\x4c\x06\x19\x54\x1b\x4e\x77\xc1\x70\xc8\x61\x68\x74\xb9\x54\xbe\xb8\xd1\x05\xb8\x6b\xd1\x91\x7e\x25\xcf\xba\x92\x67\x18\x7e\xe2\x03\x8b\x3f\x00\x78\xf4\xc3\x18\xb5\x87\xcf\x44"}, {{0xe6,0x08,0xd5,0xde,0x97,0x97,0x90,0x7d,0xb6,0xd9,0x8e,0x03,0x45,0xd5,0xca,0xf2,0xad,0x33,0xe0,0xed,0xde,0xbf,0x18,0xb8,0x1d,0x61,0xe8,0x37,0x3e,0xcf,0xb4,0x99,},{0x60,0xe0,0xc1,0x6a,0xda,0x58,0x6e,0x36,0x46,0x91,0x2a,0x5f,0x2b,0xb3,0x18,0xfb,0xc3,0xd5,0x0b,0x57,0xd3,0x6f,0xab,0xb6,0x37,0x69,0x6f,0x9d,0x8d,0x4d,0xc7,0x61,},{0x0d,0x8f,0x09,0x5e,0x42,0xa2,0x73,0x0a,0x3c,0x7b,0xed,0xf4,0x2d,0x5c,0x83,0x39,0x8b,0x5c,0x0e,0xe9,0xc7,0x7c,0x5a,0x61,0xd9,0x82,0x29,0x13,0x96,0xa9,0x18,0x2a,0x08,0x02,0xa3,0x7f,0x32,0x4b,0xc4,0xfb,0x5d,0x4a,0xa4,0xed,0x60,0x44,0x4b,0x66,0x14,0x4b,0xac,0xbc,0x86,0x51,0x05,0xd7,0x69,0x0f,0x14,0x06,0x50,0x69,0x1d,0x03,},"\xe6\x10\xfa\x7d\x83\x85\xc0\x9c\x78\x98\x9e\xd5\xef\x7a\x23\x05\x47\xf0\x13\xcb\x7e\x8d\xdf\x31\x74\x9f\xfc\x31\xce\xe1\x0a\xb3\xef\xac\xa3\xf1\x4e\xa1\x94\x51\x0f\x09\x85\xa8\x18\xef\x8b\x04\x0e\x10\xc3\xa5\x11\x4d\xe1\xac\x08\x0f\x14\xc3\xd6\x5d\x3c\x24\x4f\x92\x42\xf7\x54\x92\xca\xba\xe8\x00\xfc\xfc\x9b\xc2\x75\xea\x1f\x27\x72\x8c\x92\x0c\x25\x8f\xe7\xaa\x73\x94\x80\x60\x29\x9c\xb8\x78\x35\x79\x2e\xdc\xc0\x72\x15\x0b\x73\xce\xfe\xb0\xd5\x15\x62\xe5\x3b\x46\x81\x0e\x27\xa4\xd7\xf6\xab\xd3\x2e\x95\x9f\x7d\x73\x1d\xde\x01\xd9\x4b\xc4\x1e\xd8\x35\xef\xcd\x42\xc9\x22\x43\x70\x37\xa8\x7d\xd3\x66\xff\xad\x2e\xec\xab\x6a\xba\xeb\x4f\xcf\x07\x39\x2b\x3a\xb4\x0c\xfa\xef\xea\xa4\x26\x6b\xc5\x37\x67\x16\x93\xc9\x09\x3d\xab\xe8\xa0\x53\x8c\xaf\xd1\x2c\x63\x9a\x04\xbd\x2b\xa8\x0c\xe0\xf2\x9a\xdb\xfc\x66\xbd\x46\x37\xca\x05\x43\xa5\x3b\x0e\x37\x1d\x0e\x2e\x47\x0d\x31\xba\x36\x06\x42\xa4\x5a\xb4\xcf\xe3\xe7\x90\xf5\x87\xf6\xc5\xa5\x58\x3f\xd1\x5b\x18\x99\x78\x38\xa2\x00\x92\x1c\x1c\x39\x9c\x0b\x16\x27\x8b\x7d\xd6\xd3\xaa\xab\x6f\x32\x5b\x16\xaf\xdf\x76\x1a\x1b\xbf\x86\x7d\xe2\xbd\xd4\x86\x15\xf1\x5b\x52\x67\x70\xed\x20\xd7\x9f\x0f\x30\x71\x4b\xee\xed\xa5\x8f\x52\xa3\xcc\x0c\x5a\x61\x83\x15\xe5\x22\xb9\xeb\xe7\xcd\x99\xb6\x5e\xd5\x32\xa6\x2e\x0f\x0d\xf7\x27\x64\xd6\xec\x6d\x6d\x1b\xa4\x0e\xf4\x0e\x05\x42\x63\x60\x79\x5d\x6d\xd8\x5b\xb3\x9f\x73\x21\xd3\xfb\x06\x27\x5d\xe0\x96\xaa\xe4\xa2\xfa\x22\x93\xf3\x1b\x33\xf4\xad\x4d\x7c\x25\x1a\xc1\x3e\x8e\x15\xc2\xbf\xb1\xf9\x8f\x49\x62\xc5\x4b\x6c\xe0\x33\xb0\x8a\xa6\x26\xf2\x90\x5d\x46\x3f\x55\xb7\x1c\xbd\xad\xec\xdb\x3e\x0b\x36\x5d\xae\x07\xb1\x70\x30\x19\x83\xae\xb8\x3b\x1e\x9f\x2f\x28\xcf\x65\x41\x9f\xd6\xb0\xa1\xa9\xc2\x6c\xb5\x4b\x59\x49\xf4\xbc\x01\xa9\x86\x81\x84\x4b\x43\x03\x4c\x37\x2a\x45\x3d\x38\xf0\x47\x3d\x0d\xdc\x70\x9d\x9f\x49\xc8\x75\x3a\x75\xb8\x56\xc7\xe9\x77\x55\x17\xdf\x57\x4a\x09\xa3\x95\x3b\xde\x5d\xae\xdf\x8e\x4a\x8d\xa9\xd7\x73\xa2\x15\x12\x0e\x26\x9f\xa1\x86\x11\x33\xcd\x4c\xea\xeb\x91\xd5\xcc\xa2\x60\x63\x25\x45\x8e\x50\xcb\x96\x6d\x14\x05\x5b\x22\x44\x7e\xb6\x5d\xc1\x01\x18\xda\x08\x31\xdf\x28\xc3\xb4\xee\x8b\x11\xf0\x73\x2f\x15\x21\xbb\x94\x82\xb1\x1f\x5a\x86\xb2\x2f\x18\xe8\x3d\xd1\xd9\x67\xd3\x94\x42\x85\xe5\xd6\x3a\x5a\x98\x98\x17\xab\x24\x18\xbc\x7e\xd8\x91\xa3\x73\x84\x67\x47\xa1\x2b\x52\x7c\x2f\x44\xee\x01\x97\xb9\x46\xc6\x7e\x67\xfa\x4a\xa1\xc2\x9f\x33\x79\xd4\x6f\xe0\x7d\x3a\xab\x83\xda\x17\xf9\xd7\x6b\xed\xd3\x84\x36\xa0\x55\xe3\x4c\xa1\xd3\xaf\x5a\x87\x54\xd3\x8c\x17\xb9\xba\x4e\x64\x19\xcb\xab\x51\x5f\x43\x1a\x25\x95\x95\x4e\x42\x8c\x26\x70\xfa\xe3\xbe\xd6\x2b\x45\x96\x17\x9c\xb5\x9e\x21\x10\x87\x08\xd0\x71\xbc\xf9\xc6\x21\xc6\xdf\xf0\x3d\x3c\xdc\x92\x02\x02\x94\x54\x01\x3b\x9d\x13\x38\x47\xf2\x65\x44\x81\x1c\x01\x69\x77\x0f\xdc\x6f\xe5\x63\x8b\xfd\x7a\x72\x0d\x8b\x38\xf7\xe3\x0a\x7e\x68\x79\x06\x0b\x5f\x28\xc8\xab\x17\xb0\x02\x00\x71\x32\x07\xe8\x63\x7b\xff\x48\x44\xd8\x42\xd9\xca\x78\x83\x91\x34\x01\x98\xa3\xfe\x01\x72\xdf\xa7\x4d\xe1\xe5\x5a\xde\xfb\xc2\xe9\xbc\x7e\x88\x54\x76\xd1\xb9\xc0\x55\x81\x34\x08\xa4\x75\x28\x43\x43\x55\xbf\x03\xfd\xd4\xe2\x7d\x8b\x34\x61\xb0\xfb\x66\xab\x3e\x15\xa8\x79\xa1\x84\x45\x7e\x9e\xd9\xea\x6c\x51\xb6\x63\xb3\x1e\xdc\x8c\x4a\x3c\xd4\x54\xf6\x9d\x9c\xe5\x18\xd1\xb8\x78\x88\xee\x3d\x9d\xd5\x41\x6e\x43\xe1\x14\xac\x05\x72\x13\x52\xdf\xfc\x2c\xa8\x85\x97\x37\x7b\xbc\x41\x40\x09\xb0\xc2\xfd\x36\x9b\xe5\xba\x35\xa6\xdc\xe3\x47\x8b\x6c\x11\xb3\x3c\x0a\x33\x91\x8b\x6e\xe5\xac\x4c\xd4\xc2\xf1\xca\x6b\xd1\x90\xa0\x00\xa8\x38\xda\x38\xf5\x30\x77\x56\x03\x35\x59\x6d\x13\x58\x93\x77\x93\x96\x38\x10\xa7\x9a\x21\xb8\xd4\x61\x40\xe7\x68\x89\x8d\xcd\xa8\x8a\x0f\xaf\x8d\xdd\x0d\x63\x38\x47\xaa\xea\x0e\x03\x0b\xe6\x45\x5b\x41\xe3\xed\xe1\xe2\x87\x37\x30\xeb\x84\x81\xac\xaa\x7a\x51\x9c\xf9\x19\x58\x47\xa8\x6a\xfa\x57\xf9\x07\x1d\x44\xf4\xaf\x4c\xa0\xd3\x43\xc9\x0c\x0d\x22\xd9\x46\x14\x65\x85\xf0\x0e\xf3\xae\xf5\x7f\x0f\x9e\x55\xe8\x18\xc0\x12\x8a\xe2\x55\xdb\xc3\x11\x6c\xf0\xfe\x02\x16\x6d\x54\x85\x9d\xec\xbf\xdc\xcc"}, {{0x0e,0x86,0x87,0x2c,0x78,0x62,0x0f,0x10,0xcb,0x6d,0xfc,0x46,0x3d,0x2c,0x28,0x72,0xc4,0xda,0x66,0x07,0x48,0xc9,0xcd,0xa0,0x1a,0xb1,0x45,0x69,0x58,0xaf,0xba,0x7f,},{0xde,0x49,0x89,0x98,0x92,0x69,0xca,0xbd,0x8f,0x4f,0x40,0x9c,0xf1,0xa4,0xd9,0x74,0x03,0x8b,0x27,0x55,0x02,0x27,0x35,0x57,0xf3,0x12,0xd5,0x55,0x3f,0xab,0x93,0xc3,},{0x20,0x37,0xe9,0x77,0x41,0xc3,0xe6,0x40,0x9c,0x66,0xfc,0x67,0x82,0xaa,0xb3,0x89,0xc5,0xd7,0x78,0x09,0x7a,0xc7,0x78,0x99,0x9e,0x85,0x76,0xe4,0x9e,0xf4,0xf6,0xa0,0xc7,0x73,0x0b,0xd9,0xe0,0x93,0xdd,0x3c,0x0a,0xe7,0xec,0x76,0x20,0x33,0x80,0xda,0x65,0x71,0x47,0xd3,0x3a,0x8d,0x9d,0xd6,0x5e,0xd0,0x0c,0xf7,0x62,0x24,0xd6,0x01,},"\xa9\x00\xf3\xe9\xc6\x43\xa5\x64\x9b\x07\x6f\xb6\x9c\x3b\x2a\xc0\x84\xd5\x2c\xcb\xaf\xcd\xca\x5a\x9d\xb1\xda\xa7\x05\x00\xde\x99\x33\xd2\x3d\x15\x3f\x74\x95\x4e\x1b\xd5\xf5\x7b\x89\x9f\xe8\xa4\xb1\x34\xc1\x95\x41\x2b\x49\x83\x3b\x6e\x50\x95\xa6\x55\x4e\xaa\x6d\x84\x4b\x11\xf1\x58\x4c\x85\x05\x5b\x87\xf4\x1c\x99\x96\x69\x04\x6c\x71\xae\xb5\xc0\x45\x3f\xd6\xa3\xc4\x37\xf8\x15\xf0\x68\x98\x7c\x38\x68\xcc\x07\xaa\x2a\xf6\x58\x19\x04\x6c\x30\x7b\xaf\xb7\x53\x0d\xe8\x4f\x71\x30\xae\xa7\x8e\xf0\x05\xd5\xff\xf5\x2f\x8d\xea\xf1\xd5\xe9\xc3\x26\xd3\x21\x7f\xc5\x5b\x94\xf6\x28\xaa\x10\x4f\x6a\x24\xa3\x95\xe6\x2d\x1b\x62\xbd\x9c\x0d\x82\x43\x63\x19\xc5\xd7\x3e\x57\x65\x43\x5f\x3b\xa8\x56\xa4\x73\x4f\xd6\x0a\xe6\x17\xf7\xf0\xc3\xba\x57\x22\xa7\x33\x66\xc8\x8a\x6d\xfe\xca\x85\xc4\x44\x63\x9f\x44\x1f\x2c\x55\xfd\xc4\x64\xec\xb2\x99\xee\xe3\x6d\x8e\xae\x06\x3b\xb9\x4b\xb2\x43\x9d\xa0\x4f\xa5\xeb\xc5\x09\x23\x38\xa5\x03\x5e\x48\x0f\x08\x34\xae\xee\x8d\x71\x1f\x28\xc4\x6d\xc9\x60\xde\x1b\xe9\xdf\x30\x7c\x18\xc5\xc1\x78\xb2\x62\x96\xdc\x56\x7f\x15\xbf\x60\x86\x3a\x36\x71\x08\x67\xe9\x2f\xd5\x10\x48\x86\x56\x74\xc2\xaf\x0c\x53\xb2\xe7\xa2\x48\xae\x5b\xd0\x9a\x49\xaa\x03\x06\x18\x49\x5f\x82\x48\x0c\x42\x0a\xe1\x06\x88\x9b\xec\x00\x62\x78\xb9\x22\x72\x07\x57\x09\xfe\xc9\x54\x87\xcf\xb1\x00\x61\xe6\x72\x2b\x93\xee\xbf\xc0\xbc\x58\x7b\xf7\xba\x5f\x66\x92\xb0\x74\xf5\x5a\x98\xd5\xc3\x02\x76\x0b\x1b\xf1\xd0\x9f\x7e\x86\x68\x47\x9c\xa6\xf0\x1e\xed\xa2\xfd\xaf\x58\x4a\xc2\x05\x8f\xbf\x7c\xf3\x10\x0d\x06\xb8\x09\x1b\xfe\xab\x51\xc0\xc0\xb1\xd4\xee\x3a\x82\x57\xf6\x9b\x16\x17\x60\x4f\xce\x95\x3b\xb5\xf7\xf2\x71\xc6\xa1\x88\x0e\xa1\xb3\xf6\x62\x67\xe2\x43\x9f\x34\x58\x06\x28\x91\x78\x77\xc6\x6e\xc0\xfe\xd7\x6e\x44\xe8\xbb\x2b\x91\xa8\x80\x6d\xf4\xba\xca\x6c\xc9\x28\x89\xb8\x80\x50\x70\xc9\xa6\x17\xf8\x07\x15\x75\x30\x75\x1c\xc1\x7c\x47\xb0\x9e\xeb\xa9\x4d\x22\xb4\xe5\x47\xc3\x70\xce\x7a\x49\x6f\xca\xa3\x41\x2a\xff\xff\xb8\xc9\xb4\xde\x89\xb9\xf1\x21\xaa\xec\x5f\x54\x4b\x0c\x72\x5e\xc5\xee\x9d\x4b\x34\x76\xad\xc9\xd0\x50\xed\xb0\xfd\xba\xf0\x2c\xa9\xe3\x8a\xf1\x5f\x51\x50\x15\xa2\x67\x29\x2e\xc9\xaa\x54\x44\xed\x1d\xec\xd9\xcd\x9e\x1e\xad\x64\x87\xa0\xcc\xef\x99\x5b\x1c\x60\x0a\x03\x69\x35\x83\x86\x60\xac\xab\x27\x6d\x8b\x0e\x5b\x07\xd9\xf3\x63\x53\x21\x4b\xf8\x0f\x94\x1a\xc8\x8c\xf4\x0a\x08\xaf\x91\x79\x26\x23\x41\x12\xec\xcd\xaa\x16\x2d\xc9\x9d\xe3\xe2\x5b\xaf\xf6\x5b\xb0\x1e\x49\x89\x89\x86\x33\x2b\xdc\x2d\x70\x5d\x5a\xea\x40\xf9\xbc\x4f\xbb\x28\x06\x89\x44\x96\x03\x8d\xa2\x36\xe9\xdc\x29\x60\x0c\x9c\xed\xea\xc3\xb6\x16\xcc\x56\xd8\x9e\xc2\xfa\x67\x38\x96\x66\xc6\xc4\xfe\x23\x3b\x63\x91\x05\x02\x3e\x10\x1b\x87\x4a\x63\x30\xfe\x57\x3f\x80\xac\xe5\x5d\x03\x7c\xc6\x12\xe6\xdf\xd5\xa6\xe6\x86\xf9\xa8\x30\x54\xfc\x46\xe1\x5b\xb6\xda\x45\x3d\x81\x0c\xf1\x38\xa1\x78\xbf\x03\x9d\x1e\x18\x16\x14\xff\x40\xcb\xe6\xbb\x3b\x47\x36\x63\x75\x2e\xa8\x02\x5f\xf7\xf7\x39\xee\x4b\x67\x11\x0f\x96\x80\x89\xb2\x47\x3c\xd0\x44\xd4\x8b\x00\x9d\x06\x77\xf7\x91\xf5\x4e\x2d\xf6\xaf\xdc\x3a\xcb\x9e\x99\xdd\x69\x58\xa4\x50\xc0\xe1\xb6\xdd\x5e\x97\xa2\xcc\x46\x29\x8b\x4f\x48\xac\x6a\xda\xf0\x13\xd7\x5b\x2c\x42\x07\x2d\x2e\xe1\x3f\x73\x36\x87\xee\x83\xc3\xf7\x0c\x4f\xdd\x97\x20\xfd\x17\x98\xc6\x62\xfe\xf3\xba\x01\x2b\xed\xd4\x45\xc4\x72\x9f\x21\x30\x48\x4f\xe7\x7a\xc1\xb4\xc4\xdd\xeb\x81\xfa\xf6\x0f\x76\xe3\xbd\x7d\x21\xa9\xa6\xc5\x7a\x69\xa9\xcd\x9c\xc2\x03\xfc\x63\xb5\x9e\xe8\x4b\x89\x15\xb3\xc1\x8a\x59\x54\xe2\x27\xc8\x6e\xbb\xb7\xd4\xc4\xc1\xa0\x8d\x0c\x5e\x46\x7c\x68\xa0\x69\x70\x75\x1e\xf5\x84\xbd\xd6\x11\xe1\xdd\x1b\x48\x90\x0a\xb3\x54\xb9\x9c\xec\x6e\x1d\xf3\xbd\x41\x46\xea\x07\x55\x35\x0d\xc1\x1c\x3a\x3f\x60\x0d\x47\x0a\x74\xf4\x75\xe4\xfe\xed\xaf\x08\x65\x27\x6f\xa8\xa9\x77\x13\x47\x1d\x0c\xa9\x95\x5c\x71\x35\x88\x33\x9d\xee\x79\x65\x6e\x56\x7e\x6a\xb1\xdb\xf9\x83\x07\x03\x81\x7a\xe6\x20\x92\x9a\x06\x84\xa5\xca\xf2\x0f\xef\x81\xa8\xee\x89\x7b\xe7\xe5\x05\xad\xe6\x49\x6b\x9a\xef\x02\x72\xbd\x8f\x35\x08\x60\x23\x3b\x33\x8c\x2e\x36\xd3\x13\x8d\xb6\x95\x38"}, {{0x52,0x03,0x54,0xd8,0x5a,0x87,0xd7,0xc2,0x2c,0xa6,0xf7,0x84,0x71,0x44,0x10,0xec,0x98,0xbf,0x6a,0x65,0xf8,0x03,0xef,0x93,0x79,0xbd,0xc8,0x04,0x35,0x9b,0x23,0x49,},{0xd8,0x51,0x1c,0xea,0xc2,0xfd,0x66,0x1a,0xcb,0xff,0xb0,0x1b,0xa2,0x74,0x1c,0xad,0x88,0x99,0x34,0xde,0x63,0x92,0x96,0x1b,0xde,0xc6,0xfa,0x46,0x12,0x3b,0x7f,0x0f,},{0x75,0x4e,0x60,0xd3,0xf6,0xf4,0xab,0x4f,0x5d,0x0d,0xdb,0xb0,0x01,0x53,0x20,0x09,0x16,0x63,0x88,0x48,0x7f,0x78,0x0b,0x76,0xf6,0x0b,0xd0,0xbc,0x9f,0xef,0xab,0xfa,0xab,0x6b,0xe2,0xae,0x78,0x69,0x57,0x3a,0x64,0x79,0x6e,0xf2,0x84,0x6e,0x85,0xe5,0xcd,0xae,0x52,0xdb,0x10,0x44,0xfe,0xfa,0x79,0x6b,0xac,0xf4,0x8b,0x96,0x8b,0x0d,},"\xa1\xd4\xad\x48\x6e\xbb\x7c\x1a\x0a\xcb\x8f\x11\x70\x13\xe8\xe4\x74\x67\x89\xc6\x24\x4a\x56\xc9\xed\xfb\xf1\xef\x37\xac\x13\x09\xaa\xf5\x1c\x93\x75\xfc\x12\xca\xcd\x68\x97\xa4\x47\x95\x45\xf2\xbf\x39\x0a\xb7\xc0\xc0\xe5\xc5\x92\xf5\x50\x6e\x99\x38\x37\x8a\x11\xb6\x36\xbf\x85\x70\x29\xb9\x68\x54\x7a\xa5\x06\xc4\xa0\x82\x9a\x15\xfd\x39\x95\xfe\xad\x4f\x86\x0f\xd7\xc6\x23\xc6\x3e\x86\x95\x43\x6e\xae\x55\x81\x64\x14\x77\x83\x47\x09\x2f\x5f\x4d\x42\x2b\xb1\xb5\xe5\xa0\x69\x66\x24\x1e\xfe\xc1\x4f\x1e\x4f\xca\x06\x63\x91\x14\x71\x8c\x30\xeb\xca\xdd\x4c\x6d\x8a\xbe\x7f\xe9\x3b\x25\xd1\x71\x73\x53\x39\x54\x18\x8b\x1a\xb0\x3f\xcb\x77\x92\xcb\x63\x5c\xe3\x6e\x9b\xdb\xdd\xe7\xa5\x61\xc5\xf6\x69\x20\xd9\x10\xcb\x26\x9c\x8c\x1c\x3f\x59\x32\x65\x09\x00\x72\xc4\x89\x32\xe6\x92\xa9\xc7\x38\xc7\x04\x89\x74\x89\xa7\x15\xc2\xb3\x94\xd5\xa8\x6f\x70\x36\xa4\xca\xc5\xdc\xb5\xb8\x5c\xfa\x16\x21\x56\xe0\xbc\x6b\xfe\x02\xfb\x4c\x38\x60\x8c\xfb\x23\xc9\x2b\x8b\x6a\x3c\xb4\x6e\x48\x7d\x60\xe0\xdc\x97\xaa\x2e\x33\xe3\xda\xda\x92\x5e\x4e\x66\x12\xcc\x5a\xf1\x25\xe5\xac\xa4\x58\x17\xa2\xfd\x6c\x3f\xf1\x0b\x18\x93\x8b\x44\xbd\x4d\xd2\x0d\x7f\xcc\xf7\xf2\x6b\x40\xa6\x6f\x48\xaa\xff\xc9\xa5\x41\xe6\xd3\x71\x38\xfc\x55\x46\x98\x68\xe2\xd1\x03\x65\xef\xf3\x7f\xac\x36\x0f\xab\x3d\xc5\x54\x37\xac\x2d\x8f\xea\x74\x74\x40\x5f\xb3\x63\x0f\x79\x63\xd2\xd4\x59\x58\xf9\x09\xd1\x48\x30\x28\x6f\xf1\x52\xaa\x75\x2f\x51\x0c\xe9\x80\xbd\x57\x54\xe3\xfa\x32\xc6\x99\x24\xdd\x95\xd5\xc1\x52\xa7\x37\xa8\xfa\xdc\xfd\x0a\x45\x60\xe0\xb1\x14\xf8\xe8\xaa\xa6\x18\xd4\x38\xb9\x87\x71\x11\xda\x17\x40\xef\x81\x7c\x44\x19\x39\xec\xec\x79\x9b\xa1\x6b\x1b\x17\x1c\xa9\xb6\x49\xb7\xd7\x8f\xa0\x52\xd1\x49\x7a\x50\x76\x88\xbe\xde\x49\x00\xab\xc5\x3a\x96\x48\xda\x59\x17\x03\x5c\xef\xfe\x0d\xa2\x1c\x25\xc0\x9b\x06\xd6\x18\x5b\xdd\xa2\xd7\x78\xf7\xed\xe6\x15\x3e\x3e\xaf\xf4\x95\xc9\x79\x6d\x4d\x16\x6d\x2d\x2e\xa4\x18\xe4\xa4\xaa\x6e\x67\x8f\xaf\x06\x96\xe7\x52\xa0\x9e\x02\xea\xad\xe7\x63\x07\x0e\x08\x8e\x99\x64\x91\x9f\xf4\xaa\x4c\x82\xf8\x62\x9a\x3d\x5c\x79\x7c\x2a\x64\x59\x4d\x20\x68\x35\xda\x0b\xfa\x43\xcc\xd9\xdd\xfc\xdb\x6a\xac\x4d\x48\x6e\x03\xc8\x41\x22\x37\x59\x39\xa5\x27\x0b\xc1\x51\x9e\x07\x07\xe5\x1c\x3f\x46\xf1\xe5\xc5\x66\xb3\x3a\x24\x5f\xa0\xc2\x02\x83\x84\x72\x36\x3d\xe9\xf0\xed\xde\x2e\x79\x1d\x82\x29\x30\x95\xf7\x50\xbf\xf5\x45\xe6\xc3\x47\x39\xdc\xc5\x4d\xb0\xa3\x6a\xe2\xe2\xaa\x39\xb0\x7c\xb4\xf6\xa9\x64\x62\x40\xd2\xd3\x14\x88\xf6\x78\x15\xb2\x95\x45\xd2\x20\xbe\x92\x9e\x33\x39\xf8\x28\x1a\x93\x7e\x05\xa8\xc5\xc3\x88\x7e\x06\x04\x8e\xa7\xb1\x8a\x48\xf8\xd9\x1b\x1e\x3a\xf5\xca\xb5\xce\xda\x0e\xbd\x71\xbf\x54\xed\xec\x20\x3d\x37\x16\x5e\x4c\x9f\x9f\x80\x46\x1c\xd2\x9f\xcd\x99\xdd\xea\x43\x96\x93\x94\x1b\x5d\x53\xff\x94\x37\x9c\xf6\x42\x57\x1d\xd5\x59\xa1\x1f\x8f\x38\x3d\x94\x3f\x22\x55\xcf\x71\x58\x00\xaf\x77\x6b\x10\x45\xbf\x19\xa9\xc9\xbb\x09\x51\x55\xdf\xb6\x46\xb6\x5f\x4a\x28\x0f\x2a\x97\xef\x92\x7d\xda\xbe\x24\xa2\xf9\x71\xa8\x17\x0d\xd4\x2a\x08\x92\x76\x82\x5c\xb9\x14\x8c\x01\x5a\xae\x1e\x9d\xad\xf2\x2c\x10\xe7\x54\x8c\x59\xbf\x6b\x86\x8b\x20\xe8\x6c\x83\xa9\xe7\x34\x3a\xec\x27\x54\xee\x62\x25\xf9\xfd\xce\xaf\x8e\x51\xc4\x0e\x95\x5b\xda\x49\xc3\x5d\xed\x38\xfa\x8b\xcc\x1e\x6c\x8f\xc9\xc2\x41\x2e\x91\x04\xc5\xc2\x36\x8b\x1f\x99\x23\xe0\x10\xfa\x2e\xde\x91\x1d\x42\xb1\x39\xf4\x00\x7e\x34\x26\x92\x2f\xfb\x61\x58\xec\xa9\x7b\x47\xcf\xc9\x97\x85\x35\x12\xbb\x9d\x4c\xa2\xf0\x17\xc2\xc2\x63\xdc\x19\x9f\x3b\xf1\xeb\x4f\x15\x08\xef\x82\x8b\x0e\x00\xdb\x21\x00\x27\x36\xa7\xf2\x2e\xc9\x12\x98\x19\x45\x83\x13\x9a\xd7\x5f\x58\xe2\x1b\x51\x8d\xaa\x49\xa4\x07\x6c\x63\x75\xfa\xa6\x08\x91\xa6\x9e\x52\xa6\x56\x69\x9d\x80\x34\xa7\xab\x7f\xcb\xe4\x21\x75\x49\x14\x41\xfe\x61\xb1\x78\x3e\x83\x78\x57\x52\x22\x15\xa5\xfa\xc5\x59\x0b\xed\x2e\x9d\x20\x66\x06\x09\x6d\x3b\xe8\xee\x92\x87\x3b\xfc\x30\xca\xb1\x5c\xe9\xf9\x91\x0d\x01\xa1\x17\xf8\x99\x26\xcc\x3a\xfa\x8d\x10\x4f\x79\x9f\xf3\x80\x98\xde\x28\xb8\xff\x0f\x03\x87\x25\xc2\x90\x3b\x24\xc1\x42\x9c\xea\x49\x25\x24\x9d\x87\x81"}, {{0x06,0x1b,0xcf,0x1a,0xa6,0xfd,0x98,0x98,0x97,0xb3,0x22,0xe5,0x91,0xcc,0xef,0x54,0x54,0xef,0x4a,0x5a,0xdb,0x1a,0x48,0x00,0xf3,0x26,0x11,0xcf,0xf2,0xb5,0xbc,0x78,},{0x73,0xc8,0x0b,0x73,0x4b,0xfc,0x94,0x17,0xd5,0x76,0x89,0x0c,0x20,0x16,0x6d,0xa5,0xc7,0xfa,0xbd,0x61,0x3f,0x75,0x47,0x4f,0x76,0x49,0x73,0x2e,0x00,0x29,0x5b,0xe2,},{0x5a,0xda,0xa9,0x43,0x30,0xa0,0x35,0x37,0x12,0xa3,0x4d,0xbe,0x97,0x3b,0x75,0x18,0xf9,0xa2,0xc7,0x13,0xf8,0xaa,0xd1,0x00,0x25,0x1b,0x08,0x6a,0xe8,0xde,0x26,0xf6,0xd2,0xb6,0xcc,0xf0,0x52,0x8c,0xc5,0xde,0xdc,0xa3,0x18,0xdf,0x19,0xcc,0x7e,0x45,0xde,0xae,0x28,0x1e,0x13,0x24,0xb9,0x6e,0x32,0xfe,0xf4,0x5a,0xaf,0x60,0xb1,0x0c,},"\xd6\x3b\xb9\x20\x8c\x1f\x4c\x7d\x43\x32\x6c\xf3\x5f\xa5\xd8\x39\x33\x15\x18\x04\xab\x89\x1d\x49\xb0\xbd\xaf\x42\x9e\x4c\x39\xa3\x21\x42\x8e\x0d\x90\xaa\x00\x31\x8b\x97\xe0\x8c\x70\x24\xc9\x12\xcf\x38\x88\x79\xf3\xcf\x97\x4b\xb2\x53\xa1\xe7\xa4\xc8\xee\xc1\x93\xbf\x4c\x14\xaf\x6f\xb9\x79\x4d\xf0\xd4\x97\x85\x0e\xdb\x04\xd5\x74\xc9\x7e\xd7\x6c\x70\x21\x39\x96\x84\x01\xb4\x0e\xb5\x43\x94\xef\x4c\xfa\xa7\xe5\xd3\xcd\x94\x3a\xf1\x21\x92\x53\x8d\xde\xe5\x93\xc2\xa2\x4a\x26\x7a\xfa\x13\x71\xfd\x77\xfe\xee\x20\x71\xf4\x36\x9f\xbe\xf8\x79\x76\xe7\xeb\xd8\x1d\x1e\x5b\x31\xd6\xe0\x9e\x02\xd8\x30\x35\x7d\x36\xbf\xf8\x59\x67\x03\xe4\x14\x6d\x08\x27\xbe\xc9\xc0\xf8\x7b\x26\xf3\x11\x95\xc9\x6c\x93\xb6\xd8\xc4\x67\x67\xec\x1b\xc6\xde\x39\xf0\x00\x8a\x41\xff\x87\x5d\xa0\x50\xa3\xf8\x65\xab\x92\xcb\xf2\x9c\x38\xa2\x80\xf3\xbf\x69\xf6\x8e\x92\xb5\xf4\x30\xcd\xee\x35\x01\x98\x1d\x0b\x3d\x18\x90\x96\xe0\xae\xac\xd6\x4c\x33\x10\x24\x21\x34\x88\x12\x15\x8b\xb6\x1e\x51\xae\x93\x65\x92\xb2\xf8\xf1\xb9\x10\x94\x9e\xf3\x72\x32\x58\xa9\xb4\x4e\x4e\x1b\xda\xdf\x1a\xe2\xcf\xc1\x8e\x37\xd2\xed\x0d\xd1\x73\x44\x04\xb8\xba\xa5\xf3\x93\xcd\x56\x06\x9e\xce\xbf\x7e\xdd\x7c\x06\xcf\x6c\x8a\xa3\xe8\xe1\x2f\xbf\x94\x6d\x7b\x32\xd8\x45\x3b\x6f\xbb\x65\x35\x52\x6c\x8f\xb8\xfc\x1d\x58\x15\x56\x0b\xb3\x1b\x99\x5d\xf2\xad\xbd\x83\x6a\xdd\x92\x9a\x56\xfd\xd9\x3a\x17\x47\xd9\x3a\x40\xc0\x5e\x12\x9e\xb6\xf8\x58\x3c\x29\x21\xcc\x9d\xbd\xda\x42\x25\xe1\x76\xdb\x38\x6a\x02\xec\x40\xaf\x10\x32\xc9\xb6\x2e\x95\x14\x70\x25\xf4\xac\x8d\xd5\x84\x33\xb6\x4a\xc0\x73\x15\x0c\x69\xb9\xc4\x15\x4d\xcb\xb0\x03\x44\xf3\x08\x11\x3c\xd9\x19\x9c\xcf\xb5\x07\x58\x01\xc7\x05\xb8\xfc\x43\xb7\xc8\xbc\x16\x73\x65\xe4\x62\x93\xd0\x6c\x4f\x48\x35\xc6\x4e\xe5\xd5\x38\x3f\x68\x90\xca\x35\xa8\x0a\xf9\x17\x74\x81\x62\xdf\x25\x18\xab\x14\x68\xf1\x53\x62\x98\x99\x40\x6c\xde\x66\xce\x07\xfa\x7d\x29\x93\xda\xbe\x0c\x60\x08\x9c\x91\x89\x24\x88\xf3\xbc\xaa\xec\x40\x8a\x0c\xd0\x8c\x9a\xa9\x8e\x09\x37\xe0\x2c\x41\xad\x52\xd2\x41\xa9\x98\x33\xe3\xb8\x3f\x7d\x3f\x1b\x07\x8c\x31\xd4\x5c\x34\xfa\x01\x75\xab\xbd\x0f\x32\x2b\x8f\xd2\xdc\x83\x49\x1d\xa2\x92\xad\x00\x76\x2e\x3e\x57\x7b\x9e\xee\x0a\xae\x08\x72\x90\x70\xac\x25\xe3\x3b\xc9\x45\x25\xbc\x0d\x2a\xb5\x97\x04\xef\xec\x5c\x01\x48\x42\x1a\x47\x92\x8d\x34\xb1\xe4\x5c\xe7\x21\xee\x64\x47\xfb\x08\x2a\xc4\x00\xb3\xe6\x84\x6d\x20\x4f\x7f\x9d\xb6\xf0\xa3\x2b\x2a\x69\x73\x8b\x3e\xe9\xdd\xbb\x0d\xbd\x7e\x0f\x04\x1d\x7e\xa5\x3a\x5d\x64\x7f\xb5\x0b\x39\xae\x24\xd7\x8c\x8b\x07\xcf\xc4\xe0\x52\x71\x1f\x0d\x46\x39\xe7\x21\xd5\xc3\x6f\x31\xb5\x88\x86\x67\x12\xb7\x57\x10\x8a\x40\xcc\x7a\xbb\xb9\x91\x30\x83\x30\x3a\xae\x05\xa0\xf1\xaf\x0e\xc6\x87\x84\x41\xa2\x5c\xf8\x72\x9a\xba\x42\xa3\xa9\x4c\xe9\xb7\x38\x88\xa0\xf5\xc9\xe4\x0c\x9f\xc4\x54\x10\xf0\x68\x1f\xa7\xf9\x08\x98\x56\x2c\xcb\x4b\xbc\x55\xf0\xab\x1f\xe9\xc7\x0e\xa6\x60\x26\xdd\xa8\xd7\x09\x0f\x7b\x38\xed\xb5\xae\xc1\x55\x7b\x11\x66\x98\x7c\xd4\x1a\x70\x59\xcd\xee\x60\x9b\x74\xd8\xfe\x06\xb7\x05\x9b\x77\x24\xbf\xf5\x30\x07\xf7\xe1\x10\x46\x2f\x06\xad\x14\xd0\x7e\xe1\xb4\xd6\x9a\xc8\x23\xbc\xf5\x76\xd2\xfa\x9e\x2e\x8e\xd7\xf3\x19\x80\x40\xd4\x71\x29\x60\x63\x13\x7c\x98\x1a\xdb\xf3\x64\xcb\x20\xf0\xa1\xad\x20\x54\x47\x2f\x7c\xee\x25\x27\xf9\x98\x09\x61\x5d\x2e\x4b\x73\x4b\x06\xf3\x5d\xee\xcb\xd6\x26\x19\x66\x3d\xde\x81\xd6\xe2\x35\x28\xb0\xc9\x71\x32\xaf\x0a\x23\xba\xd6\x3d\x9c\x08\x14\x2a\x26\xe2\x74\x3f\x86\x18\xec\xfe\x72\x3b\x19\xff\xdd\x0b\x19\xab\xd9\xa3\xf4\xfe\x21\x0b\x1e\x71\xac\xdf\xe3\x8a\xbe\xbe\x23\xf7\xfd\xef\x66\x38\x1c\xbc\x75\xf3\x07\xe5\x57\x72\x35\xb0\x2e\x4c\xd9\xcf\xaa\x15\x03\x08\x68\xed\x14\x53\xda\x58\xf7\x83\xb7\x35\x2b\x04\x65\x68\x44\xc0\x42\x44\x1e\xfe\x6a\x3b\x4f\x8f\xec\x8f\x7d\xe8\x07\x44\x54\x0c\x4f\xc7\xa1\x07\xf4\xe1\xbf\xcb\xd9\x9d\xa2\x5b\x97\x46\x09\x5d\xdf\x01\x25\xd5\x6d\xa7\xe7\xf8\x60\x3f\x04\xd3\x59\xa0\x88\xb4\xc0\x44\xf9\x36\xcc\xb7\xd8\xf8\x9e\xd5\x3c\xc9\x91\xa3\x49\x7c\xa9\x52\x09\x4f\xf3\xc3\x30\x46\xf2\x60\x9d\x07\xb2\x9b\x63\x39\x81\x36\x9c\xb2\xf0\xee\xcd"}, {{0x2e,0x19,0xcd,0x44,0x2f,0x22,0xa4,0xa9,0x9d,0xff,0xc5,0x5e,0x7b,0xf6,0x25,0xf8,0x9d,0x13,0x44,0xb5,0x63,0xf6,0x78,0x53,0x13,0xa7,0xee,0xe9,0x73,0xb4,0xaa,0x36,},{0xee,0x3d,0xa7,0x6a,0x8f,0xcf,0x40,0x3a,0x29,0x58,0xd4,0x55,0x1d,0xa0,0xa7,0x2b,0x2e,0x73,0x85,0x22,0xb2,0xe6,0xb2,0x0f,0xba,0x6a,0xa2,0x6b,0x32,0x30,0x73,0x57,},{0x28,0x32,0x6b,0x5b,0x97,0x8e,0x0d,0xbd,0xab,0x5d,0xde,0x70,0x37,0x85,0xa6,0x67,0xa7,0xef,0x43,0x9d,0x81,0xea,0x47,0xe0,0x66,0xb0,0x89,0xd1,0x16,0xc2,0x5a,0x34,0xbb,0x63,0x3f,0x26,0x0d,0x55,0xf4,0x5b,0xdf,0x6b,0xcd,0xa7,0x48,0x03,0xd7,0x62,0x4b,0x19,0x27,0xce,0xc1,0x8e,0xb1,0x99,0x22,0x60,0xbe,0xef,0xc3,0x99,0xd9,0x0e,},"\x1b\xfc\x5c\x6a\xa6\xa5\x35\x4f\xbb\x86\x14\x69\x79\x63\x48\xac\x63\x19\x12\x4d\xa3\xf1\x0d\x20\xd5\x0b\xbd\xc7\x15\x9d\x41\xb5\xab\xb1\x36\xc7\x99\x6a\x77\x37\x97\x12\x2b\x52\x5e\x8e\x2d\xca\x19\x54\xf6\x39\x17\x07\x30\x1d\x90\xf2\x10\x1b\x46\xc7\xb0\x86\xef\xa1\x58\x77\xca\xdc\xd0\x58\x12\xdb\x34\xb9\x96\xcb\x4f\x53\x1a\xbc\xd1\xe9\x8d\xb0\x8a\x5c\xf1\x36\x8e\x8f\x4b\x11\x09\x14\x2e\x95\x62\xbd\x00\x85\xff\xae\x5e\x66\x0f\x59\xc9\x30\x79\x3e\xbd\xb6\xe8\x0b\x0a\x2f\x4f\x3f\x59\xbf\x9d\x39\x5c\x48\xd2\x6e\x0a\x72\xa6\x0f\x9d\x1f\xf8\x7f\xd2\xd7\xa3\xf5\x38\x3a\xa9\x02\xad\xed\xed\xeb\xc6\xcd\x1b\xef\xd0\x38\x33\x61\x62\x74\x9d\x91\xa9\x57\xca\x2e\x3d\xd4\x70\x91\xc5\x59\x31\x13\xda\x87\xc3\xd6\x6a\x02\xc8\x0a\x6e\xdd\xb5\x35\xc4\x8c\xa1\xf3\x4a\x97\xfd\x1c\x95\xeb\xc2\xe5\x70\xfc\x8f\xaf\xe6\xe5\xd6\x54\x6d\x1f\x3a\x9b\xa8\xda\xac\x33\x4c\xf4\x7b\xf1\x17\xe1\x28\x0d\x0e\xbd\xf1\x4b\x0f\xcd\xbb\x43\xb8\xd2\x48\xcc\x6b\x61\x32\x0f\xdb\x04\x49\xed\x5f\x5d\xe8\xba\xb1\x21\xaf\x0d\x85\x54\x95\x6e\x6a\x12\x01\x6b\x42\x67\x7b\x44\x36\x78\x92\xc3\xb2\x0a\xfc\xc2\xcb\x9c\xfb\x5b\x10\x0a\x95\xb5\x1e\x8b\x07\xda\x9f\x51\x41\x5f\x4c\xd7\x78\x1a\x31\x37\x65\xe2\x0d\xb2\x7f\x23\x43\xe0\xf7\x19\xec\xea\x9a\xf0\x26\x95\x6f\x33\x87\xe9\xea\x7e\xd0\xa2\x93\x75\x9b\x4a\x26\x22\x02\x80\x7b\x41\x30\x9f\xb8\x0f\x50\x18\x5d\xb6\xa5\xf8\xbd\xca\x17\x88\x41\xbe\xc0\x6a\xdd\xc7\x61\x0d\xf7\x60\x17\xb5\x14\xbc\x41\x42\xf2\x6a\x36\xbf\x5b\xac\xec\xb0\x12\xfa\x41\x71\x0d\xd8\x49\xbe\xf7\xa7\xe4\x51\x43\x28\x36\xfe\x9b\x32\x65\xfd\x5b\x59\xee\x40\xb0\x4d\xad\x85\xcf\x48\xf8\x91\x46\x5a\x84\x2c\xd4\x50\x0a\x10\x24\xee\xfd\xf0\xf5\x54\xf0\xca\x17\xec\x9f\x7b\x71\x52\x56\xa9\xb9\xdb\xe2\x79\x66\x38\x6d\x8a\xc3\x7d\x3c\x51\x58\x96\xde\x0f\x7c\xdf\x7c\xf5\xb3\x20\xff\x7a\x8e\xf6\xb3\x4b\xa8\x20\xab\xa9\x06\x6d\xd2\x53\xc5\xb7\x76\x37\x77\xf9\x4b\x2d\x6a\xd8\xc7\x10\x22\x1e\x11\x37\x53\x5d\xff\x8a\x1b\x75\x65\xec\x81\xbd\x8d\xde\xb5\x02\xe3\xd5\x8f\xf8\xf1\xfe\x6e\x86\xb8\xdc\x15\xa3\xaa\xec\x68\x8b\xbb\xec\xd4\x68\x82\x81\xdb\x0f\x81\x8d\xe0\xf7\x26\x1b\xa9\xcc\x58\xc8\xbc\x0d\x02\xe0\x66\x32\xef\xe7\x28\x7a\xd7\xa8\x43\x31\xa8\x24\xd9\x28\x73\x44\xef\xaa\xa7\x4f\x1f\xc5\x76\xd0\x26\x94\x30\xf8\x56\xa8\x56\x52\x65\xb9\xd6\xef\x71\xfe\x13\x4d\x25\x10\xab\x06\xb6\x0b\xf3\xc1\x53\xb5\x7e\xcf\xd2\xe6\x34\x24\x03\xfe\x67\x8b\x58\x86\xb6\xb7\x34\xb7\xd3\x69\x06\x62\xb6\xc8\xc6\xf6\xe2\x50\xe5\xaf\x6a\x81\x83\x16\x6d\xdc\xd0\xa1\x7f\x0c\xdd\xc8\x63\x6e\xf1\xa6\x84\x98\xbe\x50\xb6\x59\x95\x39\xd4\x6b\x4c\xea\x97\x13\x0e\x08\xf9\x4c\xa5\x3e\x88\x46\x44\xed\xa7\x5d\x23\xcd\x2c\x03\x8a\x5f\x17\xb5\x91\xe2\x13\x69\x37\x8c\xd3\xfb\x57\x62\xd1\xa7\xc3\xe6\x6a\x11\xae\x6e\x91\xcb\xae\x61\x6a\xd0\x55\xe3\x9d\xc4\x1e\x15\x4f\x4f\xce\xd7\xb2\x69\x6d\x9d\xc6\x73\x80\xbb\x8e\xef\x47\x4e\x9a\xa8\x3c\xec\x47\xfa\xfa\xfb\x94\x1d\x62\x65\x64\xb2\x07\x5b\xcc\x08\x56\xda\x8d\x6e\x1b\x0b\x8f\x18\xba\xf7\x51\x3b\xbd\x14\xe4\x91\xed\x51\x79\x68\xc4\xf7\x24\x1a\xf2\x50\x98\xee\x8d\xf1\x30\xb7\xa3\x4d\x59\x73\x6d\x78\x36\xd3\x23\xfe\x3f\x43\xf5\x08\xcd\xcb\x75\x58\x95\xf5\x9a\x00\xc8\x04\xed\x16\x4c\xc3\x39\x92\xf3\xae\xe9\x62\xae\x9e\x99\x0b\x74\x27\x2e\xb9\x87\xb1\x2d\x90\xb2\x73\x14\xd5\x74\x00\xe7\x37\xd1\x34\x3e\x97\x09\x85\xc4\x27\x10\x60\x87\x6a\xbc\xd7\x04\x9e\x7c\x9f\xe2\x44\xff\x3e\xf9\x85\x60\x99\x5b\x74\x82\xd3\x1b\xc7\xc0\x9d\x99\x69\xf7\xcd\x41\xf4\xe4\xe2\x52\x75\x0d\xc1\x6c\xcd\xb2\x9b\x98\x53\x14\xa0\xb6\xe7\x49\xc9\x5f\x9b\xd2\x83\x8d\x5a\xc4\x9e\xe0\x31\xfd\x07\x9b\xec\x30\x28\xdd\x9d\xd0\x7d\xb6\xfa\x62\x2a\xd6\x21\xb3\xb1\xe1\x27\xe8\xfc\xa3\x7b\xd1\x46\xe3\xcf\x70\x3e\x91\x17\x01\xb7\xa1\x6c\x2d\x30\x36\x9c\x94\x64\x8e\xcc\x03\xdf\x10\xd7\xdd\x5c\x05\x58\xfa\x95\x93\x42\x5d\x94\x87\x27\xd6\x86\x0c\x3a\x14\xf8\x11\x24\x51\x06\x61\x6d\x2a\x5f\xa9\x81\xc6\xb7\xf4\x7e\xc9\xde\xf6\x54\x12\xd1\x32\xac\xc6\x91\x9d\xa4\xe8\x85\x97\xaa\x91\x90\xca\x61\x4b\x21\x80\x66\xa0\xf7\xb1\x69\x97\xee\x74\x7c\x5a\x09\x78\x5e\x50\xd0\xa8\x91\xd9\x59\x37\x86\x3d\x61\x3c\xef\xf7"}, {{0x82,0x10,0x90,0x99,0xd1,0xea,0xfe,0xed,0x5a,0x85,0x20,0x60,0x46,0x49,0x1b,0x34,0xd0,0x6d,0xcd,0xe3,0x3f,0x08,0x09,0x60,0x28,0x7b,0x10,0xfb,0x23,0xff,0x9f,0x78,},{0x08,0x1c,0xfd,0xf2,0xd7,0x58,0x65,0x4c,0x41,0xc4,0x47,0xe1,0xe6,0x27,0x38,0x10,0xf8,0xa7,0x38,0xa7,0x33,0xaf,0xc4,0x22,0x94,0xa2,0xb1,0xbb,0xb7,0x69,0xef,0xce,},{0xb3,0x98,0x7f,0x32,0x4b,0xc7,0xe7,0x76,0xc0,0xf2,0x87,0xfa,0x13,0xad,0x28,0x74,0x16,0x95,0xe2,0xe7,0xbc,0xe8,0xd1,0x43,0xe2,0x9f,0xad,0x5d,0x00,0x99,0x47,0x58,0xe2,0x25,0xfb,0x80,0x21,0x00,0xd2,0x3f,0xd6,0xcc,0xaf,0xee,0x8e,0x0a,0x95,0xbc,0x47,0x9b,0xe8,0xc2,0x3a,0x11,0x31,0x97,0x45,0x76,0x5b,0x7c,0xd4,0x7e,0x70,0x06,},"\x84\xf4\x7d\xd7\x94\x97\x7a\x6c\x15\x05\xac\x8c\x05\x68\x0c\x56\x15\xa2\xd5\xb0\x57\xe3\x9b\x04\xf8\x5e\x3f\x9f\xf0\x49\x60\xe0\xe0\x16\x68\x5a\x86\xee\xbc\xec\xf6\xfb\xce\x5f\xdd\xcd\xac\x1a\x47\x4c\x8a\x0d\x50\x2c\x40\xe1\x0f\x94\x86\x46\xfd\xac\x6c\x81\xf1\xff\xbb\x17\x7a\x2a\x49\x63\xb6\x78\x25\x90\x3c\xde\x65\xb5\xdb\xe0\xd8\x94\x1d\x54\x6c\xff\xa2\xbf\x8a\x8c\xa8\xd6\xc6\x40\x85\x30\xa6\x29\x0f\x5d\x08\x82\xf1\xa1\x67\x2d\xbf\x97\x8e\x10\xc5\xc8\xaf\x5e\x0a\x62\x39\xf0\x65\x5e\xe7\xfd\x9e\x66\x96\x30\x77\xa0\xe8\x47\x13\x73\x97\xd1\xf0\x69\x99\xdc\x6f\x8a\x94\x5c\x60\x03\xea\x4e\xa7\xfd\x58\x37\x8a\xcb\x44\xed\x57\x80\xea\xa3\x67\x79\x6b\xee\xa3\x7d\xdc\x23\x69\x99\xd0\x12\xd6\xa7\x16\xd7\x91\x56\x49\xcc\x28\xe5\x88\x75\x64\x7e\x9f\x5a\xc0\x55\x3c\x0f\x54\x4d\xf5\x64\x69\xc6\x70\x81\xd5\xe3\x03\x95\xf3\xe9\x60\xe6\xa5\x2f\x08\x33\x19\x2c\x54\x8c\xd5\x7c\x92\x6b\x82\xdb\x48\xc3\x61\xbd\xe7\x03\x33\xa3\x70\x08\x3e\xaa\xa0\x68\xdc\x2a\xe4\x52\xd2\x1e\xf1\x33\x1a\xed\x19\x0b\xd3\xe1\x28\x9a\x10\x4c\xf6\x67\x83\x43\x77\xcf\x7b\x5a\x29\x77\x48\x07\xc3\xf1\xea\x9e\x7b\x28\x83\x1d\x0f\x6c\x42\x94\x78\x58\x67\xb1\x37\xb6\x50\x28\xc1\x4f\x93\x2a\x1b\xa8\xe6\xf9\xf5\x96\x24\xfe\x0c\x39\x68\x43\xea\x19\xe4\x6f\xba\x09\x14\x2c\xf9\xd4\x24\x97\x31\x2f\x36\x02\x44\x03\x2f\x1e\x00\xf3\x8d\xd0\xde\x29\xf9\x63\xb5\xcc\xc1\xef\x12\xb2\xcc\x62\x04\xb9\x94\xaf\x1f\x3b\xaf\x19\x6d\x9e\x21\xe8\xfa\x4f\x09\x73\x20\xc6\x44\x04\xd0\xb7\xd5\xab\x38\x56\x0c\xa0\x65\x53\x64\xb0\xb0\x9c\xd6\xdc\x0f\x0e\x05\xb8\xc9\x11\x03\x64\xf1\x42\x4a\x96\x72\xb7\xef\xdf\x7e\x1f\x37\x8e\x23\x45\x50\x56\x6d\xbe\x13\xb0\x15\x78\xb0\x41\x53\xe9\xc3\x7b\x55\x3e\x32\xa4\x44\x1b\xc9\x7e\x29\x53\xbe\xc2\xe4\x14\x55\x51\x0f\x98\x02\xef\x94\x8d\xcb\xf1\x3f\xad\xdd\x72\x2e\xde\x57\x36\x27\xb2\x58\xd5\x5e\x83\xc0\x89\x5b\x22\x91\x9e\x4b\xe5\xce\x8d\x81\x9c\xe6\xad\x84\x3b\x2d\xd0\x9d\xf6\x40\x04\xc8\x26\xc1\xdd\xe7\xce\x64\x80\xa2\x71\xa8\x58\xa1\xdb\x16\x9e\x14\x94\xd4\x46\x90\x32\xbc\xc1\xcc\xd8\x96\x53\x19\x8b\x7c\x07\x3f\x76\xa2\x6a\x29\x99\xb5\x64\x8c\xba\xdc\x15\x74\xc7\x8e\xad\x8e\xec\xe8\x3b\x91\xe1\x29\xc4\x37\xf9\xee\xec\x04\xc8\x07\x45\x90\x02\xe6\x6d\xcc\xa9\xbf\xc2\xca\xed\x9e\x6c\x0b\xa2\x3d\x23\x55\xde\xf7\x56\x65\x74\x94\x30\xee\x92\xc5\x32\xa6\x95\x47\x9f\xec\x92\x91\x74\xf4\x40\xec\xb6\x1a\x5a\xe8\xb2\xb7\xe9\x58\x92\x05\x58\x26\x89\x78\xf7\xfb\x4d\xa1\xb3\x8b\x12\x01\x4f\x5d\x61\xb0\xfd\xd7\xf6\x13\x6b\xa4\x28\x1b\x41\xa3\xa3\xcd\x18\x80\x52\xb6\x98\x76\x5b\x6f\x05\xe4\x1e\x78\x37\x3e\xa8\x30\x46\x97\x87\xa3\x75\x10\x99\x3d\x12\xf9\x3e\x96\xc7\x2d\x72\xf4\x46\x19\x84\xf6\x91\xa4\x1c\x7d\x33\x97\xdd\xd5\xa1\xb3\x92\x37\xd1\x30\x88\x64\xd4\x15\xfc\x6c\x22\xb6\x3f\x37\x6c\xed\xde\x37\xf5\x25\x2b\x51\xec\x72\xe5\x15\x5f\x3b\xdb\x4f\xcd\x54\x12\x49\x8b\xd2\xe0\xc1\xf9\x85\x0b\x3a\x85\xd1\xdf\xd2\x51\x67\xa3\xcd\x77\x1e\x8e\x4c\x9d\x86\x8c\x95\xa7\x17\x5e\x37\x75\xf6\xce\xf1\x7e\x4e\x36\x49\x7c\xe9\xe4\x55\x32\xbd\x7f\x44\xb2\x77\x6e\x40\xf9\x1a\x07\xca\x4f\xa1\xb9\x5d\xbe\x81\xcf\x8f\x49\xe4\x6b\x6c\x82\xa6\xee\x43\x47\x91\x8a\x76\x43\xb0\xd9\xa3\x88\x57\x21\x2c\x69\x3e\xad\xac\xfd\x37\xa5\xf1\xd9\x15\x58\xf5\x45\x4d\xcd\xd0\x59\x35\xf2\x90\xe6\x2d\x7e\x65\x00\x6c\xd5\x49\xf6\x55\x3c\xe7\x41\xdf\x44\xd3\x96\x44\x00\x1e\xb4\x79\xca\x69\x56\x8a\xd1\xf2\x3b\xba\x09\x9a\x41\xa4\x72\x94\xdb\x93\x87\x31\xc5\x30\xaf\x1c\xeb\x92\x17\xd2\x9b\xc2\x70\x56\x13\xc1\xa1\xfe\x9c\x20\x8d\x0b\x01\xba\x6f\x4d\x9b\x4c\x7b\xa8\xf0\x21\xdf\x91\xea\x2d\x57\x8c\xe0\x83\x12\x3e\x83\xba\x4b\x9c\x50\x40\x7f\x66\x66\xfb\xe6\x11\x58\xb0\xd1\xb9\x57\x77\x72\xe3\xea\xff\x8f\xb4\x29\xd0\xf6\xd2\xe3\x84\x12\x61\x30\xf2\x1b\x44\x9f\xb1\xdc\x17\x0d\xb4\x5a\xf5\x05\xbd\x31\x82\x67\x8a\x9b\x5f\x9f\xdf\xf6\x5f\x04\x13\xb6\x72\xc4\x78\x63\x40\xfc\xf2\x52\x2e\xa7\xf3\xd8\xad\xe8\xa0\x59\x52\x96\x49\xdb\xda\x9c\xe5\x1f\xf0\x5a\x2a\x2a\x3d\x66\xd2\x16\x6b\xf2\xc9\xc6\x77\x2b\xa0\xef\x41\x05\xe6\x8c\x05\x5e\x02\x13\xd4\x2c\x1e\xe1\x23\xb3\xc1\x21\x78\x43\xe6\xec\x57\x5d\x75\x4d\xf3\xc9\x0a\x75"}, {{0x65,0xfc,0xbd,0x62,0x6d,0x00,0x21,0x11,0x33,0x4b,0xaa,0xd4,0xe6,0xa8,0x00,0x6e,0x47,0xa1,0xf9,0x13,0x97,0xbe,0xe6,0xdd,0x6c,0xd7,0xda,0x5a,0x0e,0x02,0x48,0xa4,},{0x20,0x40,0x9a,0x14,0x6b,0x42,0xc9,0x6b,0xea,0xb0,0xb4,0x2e,0xa7,0xf2,0xc2,0x51,0x93,0x11,0x9d,0x0d,0xf4,0x4d,0xc2,0xbf,0x14,0xd1,0x1a,0x32,0xfd,0x73,0x36,0x15,},{0xbc,0x78,0xe1,0x6b,0xa6,0x74,0xe0,0xa7,0xdb,0xa5,0x7a,0x19,0x09,0x4f,0x97,0x33,0xc5,0x5d,0x74,0xb9,0xd1,0x5f,0x8a,0x44,0xd1,0xbb,0xc0,0xa0,0x23,0xf7,0x01,0x55,0xde,0x29,0x77,0x11,0x1a,0x41,0x7e,0xef,0xa8,0xcb,0x30,0xec,0x12,0xab,0xc8,0x38,0x42,0x28,0x16,0x7c,0x70,0x98,0x2a,0x82,0x06,0xb1,0xff,0xb7,0x21,0x74,0xaf,0x01,},"\xe4\xc0\x94\x7f\xc8\xca\x78\xfa\x88\x63\xf4\xd0\x44\x49\x9d\x03\x6e\x2e\x7e\xf8\xc1\x7e\x83\x8f\x2f\xac\x02\x67\x5b\x7b\x53\x81\xe5\xf9\xab\xce\xaf\xd0\xd8\x88\x6a\x92\x9d\x9d\x9b\x49\xfc\xb7\x38\x61\xb2\x9d\x15\x18\xac\x5f\x83\xf7\xf8\xfc\x26\xbd\x1c\xeb\xc2\x2d\x87\x3a\x9a\x08\x23\x14\x06\xfb\x03\x2e\x48\x66\xe5\xf5\x5c\x7c\x04\x41\xc5\x19\x04\x1b\xb2\xcc\x73\xf9\x22\x6d\xd5\xd0\x7e\xce\xb6\x60\xd6\xc9\x67\xdb\x23\x36\x55\x74\xbe\xe8\xfc\x10\x22\x29\x28\x76\x77\x13\x57\x1a\x71\xc9\x3a\x85\x27\x8d\x42\x29\x9a\x70\x59\x9c\xa9\x93\x26\xcc\x86\xf6\xd9\x8d\xaa\xc0\x00\xfd\xfa\x71\x05\x62\xf4\x81\xfa\xa0\x20\xc7\x2a\x76\xe2\x06\x7d\x15\x4c\x23\x5a\x7a\x4f\x29\x70\x8c\xc5\x44\x53\x3b\xd7\x99\xed\x63\x63\xeb\x3b\x56\xaa\x4a\x6d\x0e\x37\x9b\xbf\x07\x60\x05\x95\xc2\x3a\xb1\xf3\xf9\xf1\x70\x8e\x00\x70\x26\x1b\xbb\xf4\xbf\xea\xf6\xd6\xce\xd4\xd7\xff\x72\x2c\x9c\xc5\x2d\x91\x33\xea\x68\xd4\x95\xdc\x94\x89\xc3\xed\xf6\x83\x02\x31\x35\x1f\x65\xcb\x52\x72\xf5\x39\x6e\x2c\x4a\x1a\x5c\x88\x66\x1a\x10\x18\x92\x24\x9e\x23\xd6\xce\x9f\xdb\x6a\x9a\xbf\x74\x27\x2c\x2f\x59\xc3\xd8\xfd\x87\x43\xcc\xe4\x61\x12\x6c\xa0\xa8\xb8\x32\xb4\xb2\x18\x33\x6b\x1a\xe1\x4d\xa6\x77\xba\x7f\x1b\x2c\xc5\xca\x3c\x71\x58\xf7\x27\xa9\xe1\xb8\xfd\xd9\xed\xf5\xc2\x18\x7f\xcb\x83\xdb\x86\x2a\xd0\xc6\xb3\x92\x16\xde\x31\x16\x91\x95\x56\x46\x51\x00\xad\xe0\xa4\x2b\xd6\xba\x10\xd9\x54\x18\xb6\x9a\x3e\x00\x5e\x9f\x10\x45\x89\xea\x59\x48\xb2\xb5\x1b\xc7\xb1\xa9\xa0\x74\x9d\xa8\xf0\x13\x78\x1b\xc0\x5c\x80\x5b\xb5\x1e\x18\x77\x61\xac\x24\xc7\x64\x14\xf6\x68\xeb\x45\xfb\x0a\x50\x24\xdf\xe5\xa5\xca\x06\xf0\x40\x3a\x02\xe3\xb2\xfe\xf7\xa2\xc4\xbc\xfb\x1d\x07\x5d\x31\x0d\x51\x97\xe6\x59\xcd\x14\x02\x3f\xae\xc2\x0e\x04\x5c\xab\xcb\x86\xb2\x21\xa1\xd4\x82\x71\x13\xff\x32\x67\xa6\x4d\xeb\xe9\x93\x90\x04\xca\xba\xc8\x5e\x5c\x74\x61\xe7\xe8\x2a\x97\x5a\xcf\xae\x0b\x6c\x51\x6a\x1c\x60\x53\x74\xcf\xea\x7d\x81\x90\x44\xef\xd6\xd7\x46\x54\x42\x4f\xd5\xc9\x0f\xf2\x57\x4f\xcd\x8e\x00\x77\x40\xd9\x75\x86\x1d\x0d\xf5\x25\x9f\xe4\x3e\x43\x63\x9e\x36\xe5\x28\x95\x43\x9b\xa2\xc2\x7c\x1e\x88\x9c\x93\x09\x41\x04\xfe\x91\x49\x21\xbd\x6f\x25\xd3\x98\x5a\xb1\xf2\x2c\xa5\x57\xb0\xe4\x9a\xfc\x73\x75\x24\x3c\x52\x1c\x6d\x5f\xaf\xe0\x38\x1c\xce\xa8\x28\xe8\x8e\x64\x7f\xd9\x09\x76\xb3\xfb\xec\x19\xfe\x9a\xdb\x11\x3c\x64\x04\xbd\x35\x2b\xfc\x00\x04\x46\xd2\x10\x05\xb5\xf9\x50\xae\x07\xe5\x1c\x76\x8c\xa3\xff\x61\x77\xb2\xea\xc5\x0f\x10\xdd\x2e\x64\x61\x0f\xa8\xab\x57\x88\xfa\xee\xe2\x9d\x12\x90\x09\xd7\xfe\x46\xaa\x3d\xa6\xb9\xd8\x6c\x73\x06\x5e\xb5\x16\x1f\xbd\xbd\xfa\xc5\x77\x7c\x4e\x75\x45\x2e\x6e\x16\xae\x9f\xd6\x6b\xb7\xd9\xaa\xa4\x26\xbc\xb7\xa6\x91\x5f\x0f\xf4\x4a\x1f\x8e\xc7\x13\x94\xe9\x35\x2f\xdf\x20\xe0\x2f\xaf\xe1\xe0\xce\xfe\x50\x74\x4c\x31\x94\x95\x6f\x92\x8f\x82\x53\x37\x55\x37\x38\x38\xdc\xc1\x29\x6a\x89\x1a\xdf\x64\x1c\x73\x82\xd6\x9b\x4f\x5a\x43\xd4\xaf\x77\x72\xa4\xa1\xee\x87\x92\x92\xd7\xa4\xf3\x2a\xc3\x5e\xe1\x21\xc6\xc3\x4c\xa5\xf9\x84\x87\xa9\x41\xfc\xb1\xe6\x5b\x44\xd4\x45\x61\x27\xee\xdb\x2f\xcc\x1c\x3f\x48\xef\xf9\x30\x09\x81\xe5\x2a\xc3\x8b\x49\x6a\xb8\xbb\xce\x14\x4a\x85\xeb\x9c\x07\x63\x8b\x31\xfd\xaa\x78\x17\x44\xbc\xe1\x7e\x8d\x93\xdc\xdc\x60\xaf\xed\xa4\x88\x80\x76\x17\xf8\x8d\x6a\xa5\x44\x22\xfd\x34\x7d\xda\xdd\xef\xf3\x7a\x56\x3d\xbf\x19\x97\x4b\x2a\x23\xbe\x30\x0f\xbf\xa6\xc7\xfc\x41\xf8\x4c\x69\x05\x41\x52\x69\xf1\x95\x99\x0b\x5b\x4d\xe1\x26\x68\xc7\x1c\x87\xb5\x04\xf4\x11\x24\xbf\x94\x43\x6f\x33\x30\x45\x63\x15\x18\x15\x2c\x51\x62\xa2\x47\x5c\x40\xef\xb6\xcb\xda\xaf\x9a\xf4\x28\xfe\xd3\x25\xb3\xa7\xd9\x4c\x17\x52\x0f\xd8\x9e\x00\xdd\xf0\x8b\x22\xad\xf6\x61\xf0\xac\xd7\x23\xb3\x96\x9d\xc6\x43\x4e\xa6\xf9\x2e\xf5\x8e\x8d\xfa\xe5\xb0\xcc\x28\x85\xba\x98\x7e\xa1\xd1\x6c\x39\xb3\x4e\xf6\x50\x23\x00\x9d\x63\x45\xe4\x8e\x36\x91\xa4\x1f\x02\xa7\x7b\x7f\xe1\x33\xea\x9d\xe7\x56\x5f\x15\x7a\x20\x78\xae\x98\x8b\xbb\x26\x6d\x22\xd5\xfa\x91\xa7\xb2\x63\xe9\x8a\xd2\xdc\x07\x31\xfe\x5a\x29\x02\x5a\x0c\xb4\x36\x86\x4a\x5a\x60\xdb\x25\x7f\x1e\x76\xb5\xc6\x08\xf2\x5c\xde\xcc\x87\xea\xe6"}, {{0xb5,0x00,0x76,0x8a,0x28,0x23,0x91,0x5c,0x4a,0x68,0x48,0xd3,0x5f,0x64,0x87,0xd4,0x3b,0xd7,0x66,0xd2,0xce,0x09,0x45,0xf8,0xa3,0xcc,0xdb,0x8d,0x82,0xa3,0x89,0x2b,},{0xb8,0xce,0xa2,0x15,0xa0,0x12,0x4e,0xed,0x27,0x00,0x57,0x25,0xd8,0x97,0x78,0x1e,0xa0,0x64,0xdc,0xef,0xb2,0x14,0x22,0xc8,0xbd,0x24,0x02,0xc5,0x6a,0x10,0x57,0x1c,},{0xe3,0xdb,0x47,0xa1,0x1e,0x10,0xe7,0x88,0x92,0x5d,0x14,0xb1,0xe2,0x8b,0x54,0xc9,0xfc,0xf9,0xb6,0xac,0xc1,0xdf,0x8c,0x14,0xf6,0x83,0xa5,0x67,0x2f,0xd5,0x04,0xdd,0x4a,0x47,0x5a,0x33,0x93,0xb3,0xef,0x8b,0xce,0xac,0x23,0x61,0xdb,0xba,0x35,0x30,0xaf,0x25,0xc2,0x46,0xc3,0xec,0x4c,0x05,0x89,0x9b,0x51,0x7f,0x6c,0xd3,0x4f,0x0a,},"\x0a\x9f\xda\x8b\x8c\xfc\xa7\xa5\xb0\x5d\x78\x11\x6f\xce\xe1\x9a\xb8\x03\xc1\xc6\x01\x0c\xe1\x1d\xaa\x8e\x93\xa6\x6d\x12\xc1\x2e\x47\x4e\xb9\x1c\x26\x40\xd9\x7a\x81\x3d\x9a\x83\x0d\x26\x88\x68\xeb\x2e\x37\x70\x42\x5f\x10\xc7\x58\x40\x46\x8e\x66\x9d\xc7\xf6\x1d\x3b\xe2\xde\x88\xae\x0e\x54\x2b\xc8\x09\x67\x91\x13\x95\x7a\x14\xda\x4e\xaf\xf5\x49\xbf\xde\x63\x7d\x7c\xaf\xdc\x6a\xa8\x39\x94\x83\x73\x97\xf8\x6e\x4f\xde\x86\xd4\x02\xfa\x9a\xef\x7f\x65\x54\x9a\x21\x43\x73\xe5\x60\xe6\xd7\xa1\xc2\x76\x9e\x0c\x7d\x5a\x01\x71\xe7\xcc\x00\xdf\xf3\x6e\x04\x29\x79\x8b\x53\xaa\x62\x16\x24\xbd\xa7\x4d\x6d\xf0\xbf\xff\xfb\xd8\xfd\x7b\xef\x1a\x64\xf3\x6c\x00\x07\x82\xf6\xed\x03\x1a\xf5\xc2\xa7\x4a\x18\x96\x35\x98\xc9\xba\x06\x23\x92\xde\x96\x02\x03\x67\x94\xb7\xb5\xe6\x8c\x25\xc9\x3f\xe7\xcf\xad\x47\xa7\xc5\xb9\x79\xd4\x76\xcd\x51\x3a\x12\xbf\x03\x07\xcb\x16\x31\x74\x00\x42\xa9\xfb\xf3\xeb\x0b\xe5\x17\x06\x20\xda\xfd\x5f\x16\xed\x89\x34\x2c\x26\x25\xd7\x83\xe7\x4e\xe0\xd7\x84\xbf\x05\x19\x43\x74\x0c\x88\xb0\xbe\xf7\xbc\x85\xe1\xa6\xa4\xa5\x17\xd4\x92\xfb\x73\x7e\x77\x66\x99\x59\x0c\x93\x22\x4c\xd4\xd9\x24\x5d\x4e\x93\x71\xa3\x67\xc0\x71\x2f\x87\x49\x0f\x92\x47\xc4\x9a\xdd\x93\x13\xf2\x77\xa4\xd9\xf2\x6b\x75\xaa\xe4\xde\xd6\xa3\xde\xf8\x5f\x83\xfc\x99\x59\x10\x40\x55\x48\xaf\x67\x0e\xd8\xaa\xa3\x05\x24\xab\x82\x9c\xcb\x56\xa5\x00\x5b\x58\xbc\xe8\x68\xc9\xe8\x07\x4f\x07\xdd\x7f\x38\x18\xf2\x99\xe4\xe0\x86\xbe\xd9\xea\xb9\x02\xcf\x11\xb3\x98\xd5\x31\xb8\x63\x2e\x7d\x52\x3a\x8f\x87\x76\x95\xf4\x6c\xcf\x9c\xe2\x4e\x62\xca\xb2\xc7\xcd\x0a\xae\xe1\x7d\xb5\x26\x76\xa4\xb5\x05\x8e\x9c\x1d\x7c\x47\xbf\xfc\xb6\x41\xb0\xea\x2b\x09\x44\xf3\x9a\x75\x66\x5a\x7e\xf2\x9b\x7f\x02\xa8\x78\xdb\x82\x38\x83\xbd\xac\xfb\x0f\xbe\x5d\xfe\x5a\x9b\xed\x9f\xda\xc7\xe4\x14\x2e\x3e\xb5\x0d\x5e\x84\x0b\xd0\xac\x0b\xec\xf4\xfa\x97\xe1\xfc\x48\x27\xc3\x97\xa5\x24\x65\xd9\x16\x88\x99\x54\xb3\x70\x1b\x0f\xac\x61\x15\x9b\x23\x09\x2f\x46\x85\xf4\x78\x8b\xad\x35\xd0\x0d\xa2\x67\x9e\xcc\x54\x92\x1f\x1a\x86\x47\x10\x16\x57\xab\x49\x47\x74\x20\x56\x7a\xed\x67\xc8\x60\x59\x30\x44\x4b\x5d\x07\x92\x7c\x17\xef\xf1\xf8\x57\x0c\xf2\xaf\x29\xe7\x19\xf8\x5c\xa7\x84\x9b\x89\x55\x49\xf1\x3d\xfe\xca\x68\xbb\xef\x71\xe3\xce\x8b\x6c\xed\xd2\xff\x68\xd3\x2b\x02\xca\xf5\x95\x1a\x0b\x3e\x6b\x0b\xae\x6a\x96\xc0\x20\x58\x19\x1f\x30\x5e\x09\x07\x11\xc4\x6d\xad\xdc\xd5\xae\xee\x76\x9c\x3a\x10\x5e\x9a\x82\x7b\xbd\x19\x5d\x32\x92\x31\xc2\x62\x38\x47\x9a\x9b\xb0\x07\x1a\xfb\x16\x0e\xf9\x55\xe8\x74\xd7\xa4\x20\xc5\x67\x85\xf4\x4a\xe0\xa1\x8c\x52\xd8\x28\x0c\x59\x98\xcf\x38\x88\xfe\xaf\x89\x89\x81\x34\xbc\x8d\x41\x1f\xc9\xf6\xc5\x76\x8e\xa7\xa2\x49\x72\x94\x13\x73\x9e\x53\x2b\x64\x39\x37\x15\x2c\xdf\xb8\xd2\xff\x87\xfd\x48\x08\x4d\xd8\xae\xeb\xea\xf0\xf7\xb1\x0d\x87\xb6\xe4\x42\x32\x28\xc9\xfc\x8d\xc5\xe3\x85\x2a\xa8\xb8\xac\xc5\x45\xd1\x8f\x25\xc5\x5d\x73\xda\x1b\xb8\x2e\x3e\xb3\x76\xf9\xef\x05\xb2\x74\xd7\xec\xb1\x84\x5d\x65\xca\x0c\xd2\x62\x9f\x03\x8a\x2d\x66\x4d\x7a\x69\x78\x1c\x84\xe9\x8d\xe2\xc2\x09\xc4\x6e\xfc\x51\x16\x21\x72\x85\x66\x49\x46\x9e\x67\x33\x08\xdc\xc1\x45\xea\xf7\x83\xf5\xcb\x5b\x4b\xe7\xd9\xfd\x58\xee\x09\x74\xc9\x81\xa3\x8f\xea\x8e\x31\x26\x7a\xbf\xa4\x10\xe6\x9e\x46\x48\x2f\x51\x34\xf3\xda\x1f\xfe\x38\x1b\xd6\x9d\x8d\x0b\x78\xea\x90\x9b\x4a\xf9\x39\x6d\xca\xff\x89\x96\x0a\x04\x9e\xda\x69\x46\x61\x6f\xc2\x7c\xcf\x9a\x9e\x5b\xa1\xa0\x13\x57\x64\xf3\x77\x19\xda\x4d\x28\x07\x81\x85\xd0\x4d\x72\x41\x9c\x2c\x70\xf2\x90\xd9\x7e\x1f\x82\xb8\x79\xf7\x1b\x9e\x19\xd5\x04\xd3\x64\xcd\x3b\xa2\x2c\xf9\x05\x25\x0f\xd3\x7d\x58\xe5\xfe\x40\x20\x9f\x60\x72\xa0\x6d\x8b\x5b\xa7\x01\x96\x23\x05\x77\x87\x7e\xc4\x61\x53\x16\x7a\x7c\x7a\xea\x27\x0f\xa1\x09\x8a\xba\x9e\x3a\x74\xac\xb3\x6a\x11\xb0\x9b\xd0\x7a\x3b\x88\xea\x65\x4e\x26\x83\x65\x62\x5b\x58\x9b\x22\x06\xc7\x10\xd9\x60\xf4\x2e\xa4\x19\xb7\xe4\xe3\xda\x47\x59\xfc\xbc\xa5\x0e\x4b\xf4\xcc\x55\xcf\x88\xf7\x0b\x31\x80\xc8\x05\xa7\x04\x50\x86\xaf\xa0\x4c\x6b\xe2\x32\x23\xec\xae\x5f\x82\xc1\x46\xd5\x43\x11\xd1\x80\x7c\x2e\x4a\x53\xf9\xe0\xa4\x48\x2b\x4e\x1e"}, {{0x9e,0xb5,0xc9,0xef,0x13,0x53,0x5f,0x80,0x81,0x09,0xf4,0xa4,0x3c,0xfa,0xd5,0x68,0x4f,0x80,0xda,0xf0,0x2e,0xed,0x54,0x10,0xac,0x0b,0x0a,0x09,0xa6,0x08,0x2d,0x69,},{0x36,0x7e,0xea,0x1e,0xcb,0x4e,0x5e,0xec,0xdf,0x7e,0x47,0x1b,0x90,0xbb,0x34,0xf9,0xb7,0x98,0x2c,0x8c,0xd6,0x6d,0x42,0x55,0x5c,0x24,0x0b,0x41,0xcd,0x87,0x39,0xdb,},{0x42,0x9c,0xe1,0xfe,0x84,0x6d,0x25,0x08,0x49,0xec,0xa7,0xd4,0x56,0xf8,0xc5,0x9f,0x86,0x75,0xb1,0xf4,0xc1,0x3f,0x2b,0xe4,0x16,0x88,0xdf,0xb8,0xca,0x2a,0x3b,0x24,0xae,0x29,0xd5,0xb6,0xbf,0x47,0x11,0x57,0xbc,0xb6,0xe2,0xec,0x9d,0x4a,0x26,0xb0,0x38,0xe6,0xec,0x28,0x58,0x4c,0xc2,0x3f,0x2a,0x03,0x55,0x6d,0xbb,0x37,0xe9,0x00,},"\x2d\x7c\xb0\x5e\x61\xdb\xae\x26\x25\x8e\x38\x61\xc6\x39\xef\x0e\x1d\x17\xfc\x71\x1a\x00\xf3\x35\xba\x3c\x02\x71\x37\xe0\x07\x08\xd7\x08\xc1\xff\x45\x7f\xf2\xc6\x51\x12\xf7\xdc\xd7\xd0\x2f\x24\xd5\x6f\x07\x21\x58\xea\x1c\x71\x83\x25\x50\xa5\x83\x66\xfd\x91\x97\x29\x6b\xbe\x61\xaa\x4d\x00\xde\x18\xa4\x53\xef\x91\x74\xfa\x81\x96\x83\x05\xc4\x1c\x34\x55\xf4\x2d\x44\x7a\x92\x34\xf0\x6e\x13\xbf\x8b\xca\xa1\xba\xbb\x11\x69\x5f\xaf\xdc\x08\xf7\xa5\x84\xb2\xea\x1f\x61\xe9\x38\x92\x60\xce\x73\x35\xa0\x7d\xe7\x2c\x89\x11\xa5\x8a\x31\x3f\x10\x88\xdc\xdf\x5c\x8d\x4c\x45\x6c\xba\x2d\xcb\x4f\x2d\x15\x6b\x49\x43\xb9\x5b\xd4\x93\xea\x4f\xe1\xa8\x2d\x4e\x3e\xa0\x2a\xa0\x29\x72\x40\x0b\x5e\xe1\x78\x42\x83\x2d\x59\x97\x9f\xc1\x79\xf8\x43\xc4\x4b\x03\xeb\x3c\x30\x24\x16\xd0\xcd\xaf\x11\xc4\xca\x8a\x66\xcc\xbb\x69\x97\x39\x5e\xdf\x6f\xca\x2e\xa0\x04\xcf\x34\x86\x97\x10\x04\xa4\x20\x42\xaf\x8e\xce\x00\x5b\x94\x46\x1d\x86\xdc\xde\x21\x2a\x2e\xb1\xbe\x3b\x91\x4c\x78\x3e\x48\xac\x1a\xd4\x6c\xac\xd7\x3e\x1e\xb4\x48\x36\x83\x22\xd2\x67\x8e\xfc\xb2\xab\xff\x52\x09\x3d\xb0\xf2\x59\xdc\xe5\xc1\xe1\x9a\x51\x28\x20\xf2\x35\xd6\xae\xaf\x0e\x1a\x72\x3c\x2c\x65\x0c\xff\x1e\xe3\xb6\xb4\xf4\xcc\x98\x9c\x0b\x7d\x6d\xe3\xcd\x7e\x6d\xaa\x39\xbb\x69\x07\x10\xdf\x00\xa7\x19\x4c\x17\x20\x1f\x0e\x81\xbe\x64\xb6\x73\x9e\x1c\x1e\x81\x76\xb7\xe1\x2a\x35\x34\x27\xc0\x67\xc1\x93\x14\xdb\x64\x2e\x5c\x76\x26\x6b\x64\x0e\xb1\xcc\x0c\x73\xf8\x4f\xc0\x22\x7e\x5a\x96\x06\x0d\x81\x40\x71\xcd\xe2\xfe\xd9\x44\x76\x7b\x74\x66\xf9\x00\x1d\xfc\x22\x36\x85\x42\x9b\xc4\xe5\xe4\x8f\x5c\x13\xa6\x3a\x4e\x0d\x82\x61\x33\xad\x92\x0d\x11\x77\x21\x45\xad\x6e\x13\xc9\x38\x97\x39\x8a\x8a\x40\x1f\x93\xdb\xd1\x03\x00\x5c\x7d\xae\x44\x38\x7f\x3e\x80\xb7\x93\x60\x7d\x05\xd2\xd8\xbc\x0d\x03\x51\xa3\xa4\x52\xb8\xce\x75\x9c\x1a\xd4\x8d\xf7\xb9\xba\x9e\x4a\x17\xdf\x61\xfd\xab\xb9\xb5\x77\xb5\xce\xc3\xe9\x46\x1f\xbb\x5e\x12\x81\x55\xa3\xc9\xc8\x9f\x8f\x6b\xeb\xb7\x32\x2a\x16\x67\x8e\x8e\xcb\x98\x95\x3d\x95\x83\x10\xdb\x1b\x06\x34\x48\xc3\x49\xf3\x6e\x16\x8f\xac\x48\x4c\xb3\xc0\xd4\xcb\x2c\x25\x1b\xd9\x2e\xf8\xe9\x26\x2b\x44\x09\x3d\x7e\x65\x0a\x7d\x3b\xed\x37\x91\xfa\x88\x10\x0f\xee\x6e\xf0\xd5\xe2\x3d\x1e\x9a\x80\x99\xcc\x03\x35\x20\x2a\x4f\x10\x6c\x24\x77\x7e\x98\xf8\x1d\x26\xef\xba\x15\xc9\xad\x15\x41\xe0\xad\xbf\x1d\x1d\x76\x07\x6b\x0d\xfd\x7b\x7d\x6c\x8b\x82\xf9\xc0\x93\x46\x8c\xd1\x96\x67\x2d\xc5\x47\x8e\x91\xce\x70\x1c\xdd\x7b\x68\xb3\x53\xc9\x71\x11\xf0\x42\x97\x60\x63\x57\x62\xf8\x68\x3a\xe9\x70\x56\x4b\xce\xba\x91\x20\x51\x76\x42\xe8\xb3\xa2\xba\xaa\x85\xc2\x5b\x54\xa9\x43\x76\x61\x84\x90\x4c\x72\xd9\x29\x63\x4e\xc5\xf0\xc2\x84\x73\x41\x5f\x12\x53\x89\x06\xc6\x78\xfc\xa4\xe6\x82\xdb\x48\x79\x75\x84\x92\x53\x7e\x78\x50\xb9\xbf\xef\x3e\xb9\x05\x3b\x43\x92\x0d\x81\x0e\x55\xbe\x96\x6a\xec\x68\xc9\xdd\x3b\x62\xcc\xf5\x7e\x81\x78\xcb\x5e\xf6\xd1\x6d\x17\x2a\x56\xdd\x92\x4f\x00\xf2\xd3\xb5\xe9\x3a\xaa\x92\xb2\x9f\xb8\x33\x6d\x73\xe2\x9e\x59\xd1\xc4\x7e\xa6\x23\x0c\xda\x1d\x5b\x03\xbb\xa5\xdf\xdb\x33\x1f\xeb\x19\x44\x3f\x12\x3d\x2a\x03\xff\x4f\x10\xec\xa1\x66\xc2\x99\x85\x88\xf1\xe5\x84\xed\x19\x4d\xd6\xf7\x3c\x8a\xca\x84\x66\x31\x90\x4d\x9f\xe4\xa9\x8b\x36\x78\x23\xe4\x6e\xdb\xa2\x88\x51\x29\x87\x9e\x92\x77\xe1\x50\xf0\x29\xb8\xfa\x7b\xd1\x1e\xab\x9c\xe1\x33\x67\x77\xc8\x0b\x56\xb3\xa1\xf0\x81\x1a\xdb\xca\x0f\x5b\x40\x25\xa5\x50\x3c\x81\x96\x66\x1a\xee\x90\x00\x6e\x9c\x85\xbb\xfa\x4c\x5a\x0e\x90\x28\x85\xc8\xce\x51\x21\x2e\xe6\x7f\x0f\xe0\xb6\xaf\xbc\x8b\xad\x45\x37\x27\x54\x3b\x3c\x68\xb8\x90\xdd\xab\xa2\x69\xd2\x5f\xc1\x64\x3f\x54\x83\x51\x36\xa1\xa2\x5b\xa1\x8d\x91\x6c\xed\xd6\xa4\x7f\xc0\x7a\xdf\x6f\xc6\x9f\xa5\x08\x94\x9d\xc1\x0d\x9d\xc5\xe0\x26\x1b\x52\xf3\x65\x71\x70\x38\x4e\xcc\xd9\xc8\x05\x41\x35\x4b\x1c\xe0\xf6\xfb\x5e\xd3\xe8\xd5\x4a\xf0\xb5\xbf\x0a\x92\x83\x51\x25\xc7\xd9\xbc\x4f\x09\x2f\xf3\x80\xe5\xe8\x96\xfb\xf3\x02\x55\x2b\x14\xd5\xb6\x1a\x22\x4d\x86\xe3\x01\xc7\xa6\x6a\x66\xe4\xe4\x32\x9a\xac\x0a\x66\xb1\x56\x77\x23\x74\xdc\x1c\x71\x68\xd5\xb5\x61\x65\x2f\x8f\x43\x87\xe4\xf2\x89\xb6\x36\x6a"}, {{0xef,0x09,0x48,0xe1,0x32,0x81,0xf3,0xcf,0x35,0x2c,0xbf,0xaf,0x8d,0x89,0xd1,0x17,0x76,0x85,0x52,0xd5,0xa1,0x54,0x8e,0xcb,0xaf,0x37,0x41,0x2e,0x97,0x67,0x0f,0xac,},{0x58,0xc2,0x45,0x7f,0x5a,0x5e,0x3c,0xfb,0xf4,0x71,0x19,0xa8,0x7f,0x2a,0xff,0x19,0x18,0xf1,0xe6,0x7a,0xe6,0xfa,0x91,0x71,0xd3,0xf4,0x1e,0xee,0x07,0xa8,0x68,0x72,},{0xcc,0x12,0xf6,0x9d,0xb6,0x3a,0x67,0x8e,0xc4,0x77,0xa6,0x05,0xa5,0x05,0xc5,0x7d,0xc2,0xb8,0x10,0xef,0x85,0xe3,0xe3,0x45,0x19,0xcb,0x25,0xc5,0x10,0x63,0xaa,0x66,0x35,0x5d,0x3f,0x1e,0x29,0x74,0x69,0x58,0x66,0xed,0xf6,0xf1,0x71,0x71,0xce,0x37,0x84,0x2f,0xba,0xb5,0x07,0x5f,0xc8,0x95,0xd1,0x8e,0xd7,0x43,0xc5,0x46,0x08,0x0c,},"\x7e\xc4\x7f\x2f\x1f\xe3\xb7\x0a\x6d\x1d\x82\xc7\xcd\x92\x4b\x4b\xf9\xb2\x02\x9f\xc1\x2c\x52\xa6\xe1\xcc\x06\xcf\x5a\xbf\xc0\xa4\x42\xe7\xcf\x14\x5c\x15\x42\xb9\xb1\x35\x04\x96\x65\x71\x10\x35\xe3\xc2\x9a\x91\xd4\xfd\xae\xd6\x12\x70\x57\xa8\x12\xc2\x2c\xd7\x5a\xd1\x87\x9b\xe1\xd2\xc6\x11\x0e\x79\xe9\x87\x52\x4e\x4e\x8f\x27\xf1\x6e\xda\x90\xcb\xd4\x73\x3f\x11\x18\x25\xb5\x16\xd1\x06\x7f\x81\xec\xa5\xe6\x94\x85\x76\xd5\xbf\xed\xb3\x27\x7c\x1a\xbc\x1e\x60\xf3\x74\xd0\x70\x1b\x32\xcc\xfd\x6a\x5e\x9c\x8d\x16\x59\xaa\xf3\xd0\x81\x86\x13\x61\x3b\x7e\x28\x8d\x84\x5e\x9a\xaa\xba\x2e\x3e\x9b\x41\x1d\x50\x1d\xff\xe8\x56\xfd\x31\x3e\x9f\xcc\x9e\x74\x30\xb9\x98\x3f\x20\xab\x4e\xbf\x4e\xb6\x16\xbd\x63\xe2\xc5\x77\x43\x65\x89\x95\xed\x0a\x14\x9a\xe6\x20\xa3\x95\x61\x37\x19\xb3\xed\x7c\xed\x45\x88\xd5\x91\x5d\x70\xa2\xf0\xc6\x87\x68\x0e\xc3\x4f\xe3\xe9\xf7\x23\x92\xe1\x89\xe1\x3a\x47\x49\xd5\xca\x9f\xac\x65\x1b\x92\xc0\x84\xc4\x06\x6f\xdf\x98\xa8\x69\x22\x3e\x4e\x0c\x9b\xec\x58\x12\xb5\xc1\x90\x0e\x6e\x60\xd3\xa1\x88\xd4\x8a\x74\xdf\xd4\x15\xb5\xca\xd2\xe9\x1f\xf7\x6d\xf7\x50\x89\xd2\x0a\x75\x5f\x26\x07\x56\xc8\xf1\x38\x2a\x29\xf7\xb9\x37\x26\xe7\x31\x07\x1c\xd4\x77\x45\x8c\x6f\x20\x22\xdf\xad\x7d\x4f\xc7\xab\x23\x80\x54\x18\x64\xf6\xb5\x87\x74\xf9\xae\x8e\x5f\x07\x7c\x1a\x8d\xa0\x73\xc3\x98\x53\xeb\x2f\xd4\x77\x22\x0b\x45\xa3\xd9\x22\x63\xdc\x7e\x14\xd3\xbb\x2b\x36\xfc\xa4\x66\xc7\xef\x8a\x24\x75\x38\x72\x5f\x2f\xce\x5c\x72\x21\xbc\x75\x1c\xde\x13\x94\x60\x4f\x59\x31\xd7\x33\x36\x0c\xcd\x47\xce\x08\x77\x12\x95\x81\x80\xad\x84\xfa\xe7\x13\xb5\x43\xf0\x5e\xef\x6a\xbc\x06\x61\x43\x31\x21\xed\x3b\x45\x06\xa1\x46\x50\x25\x31\x6f\xb8\xf9\xd6\x45\x35\xcc\x45\x38\xac\xd4\x06\x4d\xd5\x76\xb0\x74\x0e\x1b\xeb\x13\xbc\xea\xf1\x55\x54\x3d\xc8\x90\x97\xca\x5c\xa1\xcf\xfa\x0a\xd6\x5a\x10\xbc\xb7\x59\x35\x4e\xab\x8a\x42\xde\x73\x4a\xf9\x09\xc2\xfe\xba\x38\x0d\x66\x40\x9f\x32\x5d\x5f\x17\xaf\x9c\xa7\xf8\xcb\x41\x34\xfd\x6a\x2b\x6a\x52\x8d\x9e\x60\xd9\x61\x2b\x8e\x8b\x40\x62\xf8\xe0\xfa\xd1\xe7\xee\xb9\xcb\xfe\xf6\xe9\x73\x8e\xc7\x97\x3e\x1c\xb2\xba\x23\x27\xde\xca\x4e\xa4\x65\x68\xf3\x1e\x12\xf7\x30\xe2\x47\xc1\xd0\x70\x29\xfd\x44\x22\xb2\x98\xff\x23\x98\x02\x3b\x41\x20\xa3\xa4\x25\xff\xb6\x52\x88\x0c\x19\xea\x69\xf3\x63\x9e\x0f\x6d\xf4\xf0\x08\x76\xcc\x45\x28\xe2\x67\xe8\x1d\x59\x43\x19\x9d\x0f\xeb\x6c\xb4\xe1\xba\xf4\x04\xbb\x6f\x8b\x39\xb1\x2d\xbc\xe9\xfd\xc3\x5d\xc1\x58\x06\x6e\x99\x75\xae\x5b\xd3\xb5\x5f\x2a\x41\xa7\x91\xba\xf3\xe8\x35\x1e\xc6\x04\x94\x47\x90\xa2\x2c\x93\x3c\x80\xb1\x59\x0b\xa1\x97\xa4\x70\x6f\x7f\x51\x28\x68\x2e\xdc\xd7\x4d\xd7\x8d\x43\x5e\x78\x7c\x2b\x76\xa5\x7b\x3f\x4e\x7d\x7b\xe2\xef\xd2\x6d\xa5\xf9\xa8\x29\x11\x9b\x01\x50\x8b\x70\x72\xc7\x69\x9c\xe5\x2b\xb5\x78\xcc\x5b\x1b\x93\x66\x1b\x51\x72\xfb\x84\xda\xf1\xba\x36\x4d\x2c\xbd\x80\xe2\xc9\x9b\xca\x9c\xae\xa8\x73\xcc\x0a\x16\x29\xea\xc3\x84\xe9\xb2\x06\x84\x2a\x6e\x61\x83\x38\x75\x91\xb4\xaa\x34\xa9\x5f\xd8\x9b\x49\xd8\xd1\x5d\x91\xe2\x19\x40\xe1\x7d\xca\xf1\xef\xf8\xa0\xa4\x7a\x0d\x7a\x95\xda\xea\xd8\x2a\xa3\xdf\x82\x04\xa0\xcd\x20\x69\x24\xae\x51\x0f\xec\x8a\x9c\x4e\x8d\x85\xd4\x66\xfd\xb4\xdd\x36\x5d\xc9\x93\x36\xb2\x2c\xe0\xb9\x56\xb5\xee\x00\x17\xf2\x9d\x25\xee\x66\xfb\xdc\xec\xb0\xd9\x96\xff\xb9\x7c\x8d\xef\xde\x40\xa9\xff\x99\x93\x19\x3c\xa8\xf1\x68\x50\x67\xc1\x9c\x52\x6e\x0e\xfe\xd2\x36\xf8\xed\xb8\xde\xf6\xc2\xa0\x3e\x21\x95\x2c\x86\x12\xd6\x24\xe6\x88\x6a\x31\x1f\xfb\x9e\x2f\x15\xda\x44\xab\xe1\x80\xd2\x6a\x14\xb1\x5f\x63\x56\x1e\x09\x7a\x73\x0e\xca\xbb\x79\x2c\x7c\x23\x5f\xdd\x36\x0f\x57\x1f\x27\xef\x68\x67\x7a\x7d\x63\xbe\xb4\x97\x59\x82\xcb\x19\x9a\x56\x0f\x81\x6e\xe1\x29\x89\x44\x5f\x7f\x75\xb8\x3e\xb2\x78\xd6\x28\x25\x94\x7d\x84\x09\x9a\xf2\xa6\xff\x2e\xad\xbb\xf5\x89\xb5\xeb\x2f\x72\xed\x11\x4c\x73\x15\x11\x53\xae\x00\x22\xbc\x95\x64\xd1\x5c\x2d\x5c\xdb\xba\xab\xbe\xf6\x38\xf0\x30\x95\xf5\x3e\xeb\xac\x96\x83\x40\x9a\xd3\x06\x0c\xfb\x7c\x70\x37\xb9\xb0\xbe\xfe\x06\x9c\x92\xa0\x2b\xe9\x53\x38\x8e\x9e\xa4\x5d\x36\xdd\xf4\xf5\xa8\x38\x94\x32\xcc\xf5\x04\xc5\x08\x08\xb0\x7f\x69"}, {{0x90,0x3f,0x3b,0x53,0x99,0x89,0x2e,0x29,0xcc,0xfa,0xfb,0xaf,0xbd,0x7c,0xc4,0x53,0x3c,0x15,0x4a,0x62,0x56,0x82,0x40,0x6c,0x89,0xbf,0x89,0x4c,0x88,0x9e,0x43,0xf4,},{0x8f,0xa5,0xff,0x5b,0x6b,0x26,0xbd,0x67,0xdf,0x86,0x40,0x46,0x42,0x9d,0xf1,0x24,0xb5,0x23,0x00,0x5d,0xd8,0x94,0x44,0x27,0x5c,0x8a,0xb7,0xeb,0xdd,0xb6,0xf4,0xdb,},{0x49,0x5a,0x8f,0x99,0x19,0x41,0xc6,0x29,0xbd,0x64,0x1a,0x67,0x47,0x1a,0xb8,0x60,0xbf,0xd3,0x9b,0x72,0xf2,0x33,0x55,0xf7,0x27,0x09,0x09,0xd5,0x30,0x7c,0x77,0xb1,0xb9,0x4b,0xae,0x3e,0xd1,0x94,0x50,0x78,0x0e,0x90,0x85,0x30,0x5f,0x31,0xb1,0xe1,0x68,0x3f,0xac,0xf0,0xd1,0xfc,0x88,0x40,0xae,0xc7,0x7d,0xf6,0x7a,0xea,0xb3,0x02,},"\xa2\xc1\x1b\x5f\xb8\x84\xa8\x22\xfa\xe6\x4d\xa8\xdc\xb4\x45\x2c\xfd\x7a\x04\xca\x6d\x7a\x5a\xbc\x8d\x82\x71\xe9\x3f\x93\x44\x9e\x1f\xeb\x8e\x02\x97\x5f\x49\x6b\x90\x34\x40\x0d\x35\x99\xab\x97\xaa\x39\x97\xda\xd1\xc9\xff\xab\x5b\x9f\x8d\xf4\xaa\xa5\xb8\x40\xd9\x0d\x86\x2f\xff\x7f\xf0\xcf\x73\xa6\x0c\x66\x15\x00\x09\xe0\x1c\x93\x7b\xd1\xaf\x68\x07\xb5\xba\x2e\xf6\x12\xee\x13\xd6\xde\xf4\x0b\xb0\x9c\x46\x81\x1a\x2d\x4e\x46\x8e\x03\x8b\x32\x30\x55\xf9\xdf\xbd\x01\x82\x9a\xe2\xf1\xa5\x35\xef\x02\x95\xca\x1e\xd1\x76\xe4\x6d\xe9\x96\xcc\x87\xba\xce\x45\x35\x62\x33\x21\x18\x35\xb6\xf4\x75\x7c\x99\xbd\x52\x7e\x76\x6a\x5f\x0b\x12\x7c\x8c\xff\x8e\x6d\x66\xf8\xba\xb8\x6d\x00\x00\x45\x2c\xd7\xf6\x7b\xe5\x57\x78\x85\x13\xec\x07\x09\xb5\x37\xb0\x07\xb4\x20\x16\xe7\xa8\x96\x83\x46\x9b\xd8\xff\x8d\x21\xeb\x10\xc1\x49\x17\xd4\x7f\x2d\xc4\xf8\x26\x32\x4f\x7c\x01\xb2\x4f\x8d\xcf\xf0\x4a\xa6\xd8\x50\x95\xd9\xab\x15\x4b\xa5\xc3\xbd\x91\x9c\x9d\x72\x8d\xbd\xc9\x90\xd1\x9c\xeb\x23\x7b\x45\x29\x07\xbd\xbe\x21\xf9\xf0\x8c\xdd\xae\x5b\xe4\x79\x27\x67\x09\xb8\xae\x73\xf8\x97\x4c\x4b\x11\x38\x41\xad\x53\x5d\x6f\xf6\x22\x3e\xea\x47\xd1\x85\xc8\xe8\xa6\x5f\xde\xe2\xc2\xd4\x58\x00\xc1\x7c\xb5\x56\xea\xfd\x67\x66\x47\xd9\x96\x8e\x55\xca\x9c\x59\x23\x2b\x97\x70\xad\x10\xf9\x55\xfc\xb5\x85\x8e\xdf\x0b\x74\x83\xad\xc1\x81\x7c\x0f\x8d\x02\x24\x04\x82\xca\xa7\x6f\x43\xc6\xd2\xe9\x6a\x4f\xf9\x59\x1c\xd7\xb8\x78\xea\x61\x9e\xa5\x6d\x1b\x58\x86\x31\xe7\x63\x3c\x5e\xcb\x2b\xa6\x99\x83\x98\xcb\x06\xe3\xcf\x75\xae\xb3\xe0\x8d\xab\x19\x63\x2d\x45\x4f\xf7\xdc\x0e\x2a\x41\xf0\x97\x37\xe8\xee\x82\x3d\x1b\x9e\x24\xdd\xa8\x4a\x2c\xe0\x31\x3c\xb9\xfc\xe3\x1c\xb6\x63\xc5\x5c\x05\x64\x5e\x63\x40\x17\x56\xe8\xad\x38\xf5\x17\x4c\x02\xa6\x63\xd8\x15\xad\x64\x42\x2f\xf7\x72\x7d\x4f\xda\x16\xe4\x8d\x4b\xf8\xf6\x60\x2e\x72\x60\xda\x62\x33\x0e\x68\x78\xc3\x47\x64\xe1\x29\xaf\xbd\x55\x22\x08\xf6\xbe\xd4\xf7\xce\xe9\xb6\x71\xf4\x88\x38\x88\x15\xd7\x4b\x49\x51\xb8\x68\x2c\xe7\x6c\xfe\x31\xe9\x38\xc4\x70\xb8\xf7\xa4\x5f\xd6\x3a\x96\x91\xf4\x26\xa7\x5c\x58\xed\x3d\xbc\xe3\xae\x8f\xd9\xd1\x0a\x83\x52\xe4\x7c\xc1\xb1\x2c\x91\x92\xac\x86\x26\xd1\xb3\x84\xb7\x7a\x18\xb9\x86\xe7\x1a\x99\x86\x46\xc1\x37\x99\x2b\x67\xc4\x81\x7e\x34\x63\x45\xfa\xf5\x0a\x26\x59\xfd\xc5\xca\xd5\xc7\x19\x64\x8e\xfe\xe3\x84\x7c\x0f\xf6\xbd\x70\x95\xc2\x8b\x4c\x51\x95\x96\x7c\x90\xcf\x84\xe1\xef\x68\xa1\xad\xa0\x1f\x62\x74\xed\xe3\x63\xfb\x82\xe0\xb5\x49\xa8\x70\x24\x5d\x60\x8c\xae\x82\x34\xf6\xd8\x4a\xbe\xb6\x1b\x71\x84\x66\x09\x36\x20\xd8\x5c\x58\x4a\xb0\x1e\xed\xa0\x91\xee\x8a\xff\x1c\xf6\x7a\x46\x75\x67\x9a\x1f\x40\x03\xe6\x6a\xaf\x43\x87\x1b\x88\xec\xda\x6a\x16\xdc\x5a\xcb\x05\x39\x5f\x2d\xa9\xdf\x70\xd3\xbd\xb6\x14\x38\xe1\xc3\xd4\x09\x81\xe0\x34\x62\x7d\x02\x6e\xe1\xd2\xe7\x9f\x65\xcb\xb8\x18\x9f\xcb\xb3\xcc\x8b\x5c\x2e\x7e\x79\x6b\x5d\x28\x89\x41\x1d\x56\x41\xfb\x86\x9c\x7b\x0a\x58\x9c\x43\x25\x4f\x8c\x54\x38\xaa\xf5\xac\x42\x38\x32\xf0\x18\xd7\x9a\x51\xb9\x6f\x24\x2e\x2d\xe0\xc8\x51\xcc\x5f\xc2\xb2\x06\xbc\xa4\xb5\xbe\x83\x61\x25\xac\xa1\x44\xbb\xc3\x8c\x8c\x63\x8b\xe0\xd3\xbb\xe0\x25\xa1\xbe\x8b\x3d\x03\xd5\x92\x9b\xaa\x64\x9c\x35\x44\xa3\x2a\x91\x5e\x92\x6a\x38\x79\x1b\x13\x4a\x97\x1b\xc5\x2d\x1b\x6c\xa6\x25\xef\xb7\xc2\xf3\xbb\x47\xab\x51\xd4\x3c\x8e\x37\x4d\x16\xcd\xa8\x82\x20\x4b\x71\xca\xfe\x90\x93\xcb\x60\x78\xef\x2b\xdf\xad\x59\xed\xea\xf3\x6d\x0c\x1a\x4d\xc4\x25\xb9\xe7\x18\xc4\x51\x85\x22\x5a\x9c\x30\x84\xb7\x82\xbf\xe1\x63\x49\x2f\x8e\x84\x82\xec\x9a\xa0\x73\xf6\x90\x1f\xf3\xd1\x11\x7c\xe9\x17\xe1\x91\x22\xfa\x67\x65\x0d\x85\x8f\x8f\x82\xb3\x76\x69\x72\x3c\x22\x6d\x72\x16\x97\xe7\xae\x33\x59\xf5\xa6\xb0\x24\x24\xee\x87\x94\xcb\xea\xa6\x41\xed\xbb\xf7\x53\xb1\x03\xa5\xfe\x15\x8b\xe0\xba\x60\xd8\xa2\x12\xd4\x2f\x8c\x5c\x2a\xf2\x54\xbf\x1b\x9c\x80\xdf\x6f\x1c\xf0\x9d\x70\x79\x3c\xae\x1a\xbb\x46\x27\xb1\x78\x0f\x1b\xce\x7f\x61\x7e\xe5\x0f\x6b\xd4\xb0\x83\xb2\xfc\x7c\xd8\x44\xaf\xb7\x23\x80\xd5\xcb\x6b\x25\x5b\xf4\x7e\xa7\x1c\xad\x6c\x6c\x4d\xf0\x21\xf8\x1b\x54\x8f\x43\x2c\x18\xac\x36\x6c\x6a\xec\xd0\x3b\x6c\x8c\xe2"}, {{0xee,0x81,0xe0,0xfb,0x05,0x2e,0x23,0xad,0x75,0x9d,0xe6,0xaa,0x98,0x38,0xde,0x98,0xe3,0x6d,0x48,0x20,0xdc,0x0e,0x1b,0x7b,0x3e,0xf1,0x14,0x1a,0xb9,0xde,0x33,0x40,},{0x98,0xf3,0xc9,0x88,0x07,0x94,0xde,0x64,0xfa,0x26,0x9b,0xdf,0x33,0x60,0x95,0xe0,0xe0,0x1b,0x1a,0x3b,0x37,0x5f,0x96,0x5b,0x93,0x70,0x0b,0xbd,0xf4,0xb9,0x68,0x69,},{0xf0,0xd8,0x73,0xbe,0x15,0xcf,0x45,0x4c,0x74,0x34,0xde,0xab,0x71,0xde,0x25,0xcf,0xe9,0x9e,0x81,0xa4,0x8d,0x2d,0xce,0x6a,0x35,0xd1,0x63,0x37,0x14,0xdf,0x0f,0x8b,0x40,0x29,0xe0,0x58,0x25,0x11,0xef,0xc4,0xd0,0x68,0x92,0xf6,0x72,0x85,0x02,0x46,0xbc,0xf0,0x70,0xc4,0x6f,0xad,0xc2,0xfa,0xab,0x44,0xdc,0x43,0x50,0x45,0xde,0x00,},"\x28\xd9\x9e\x95\x18\xb8\x82\x83\xc2\x20\xe7\x6d\xe2\x05\xd7\xb6\x16\x23\x59\xb1\xdf\xec\x1f\xba\xab\x98\xec\x0e\xf1\xdf\x8d\xa4\x0b\x6b\x7a\x77\x5e\x97\x28\x45\x0a\xeb\x23\x51\xfe\x5c\x16\xaf\xda\x3a\xec\x0d\x71\x04\x9d\xa4\xcb\x7d\x4c\x63\x71\x3a\x24\x10\xab\xb0\x22\xf8\x16\x11\xcc\x06\x45\x87\xc8\x04\x7d\x43\x83\xc0\x0c\x3c\x56\x2e\x9c\xee\xa3\x57\x75\x09\x53\x91\xb5\xf3\xdd\xa0\xe3\x73\xc4\xa7\x7f\xf6\x18\xa2\x8e\xf6\x87\x87\xeb\xfc\x3e\xbc\xcc\xc5\xd1\xce\x32\xdd\xf4\x3b\xfc\xe5\x72\x03\xda\x76\xa8\x66\x4b\x3c\x61\x6a\x88\x69\x28\x2d\xb0\xb7\x28\x11\xb5\xfd\x5a\x2a\x03\xa4\xff\x66\x72\x4b\x04\x89\xea\x2e\x10\x73\xd7\x81\xc3\xf1\x89\x11\x5d\x79\xba\x20\xa4\x6d\x1d\xfa\xf5\xb1\xa5\x84\x7b\x2a\x2e\x31\xb2\x80\x87\x37\x56\x9e\x60\xb5\x72\x31\xe6\xa9\x9a\xf2\x6f\x58\xaf\xeb\x15\x77\x08\x10\x47\x48\x12\xfe\x4a\xfa\xcf\x88\x45\x06\xb8\xc3\x14\xbc\x67\x51\xbb\x42\xb4\xbd\x6e\x87\xd2\xe5\xde\x70\xfe\xc5\xf0\x01\x4c\x42\x57\xb1\x34\x72\xa3\xb0\x11\x1a\x7a\x8c\xf8\x3b\x1d\xc0\xcf\x96\x20\x22\xcd\x44\x46\x8a\x3a\xb1\xf0\x01\x6b\x70\xca\xfb\x1d\x02\x46\xac\xd7\x05\x39\x37\xc9\xac\x40\x20\x7c\xf1\x3b\x50\xdd\x15\xe2\xa2\xe1\x5f\x50\xa0\x5b\xca\x2f\x28\xe7\x70\x26\x23\x71\xda\xce\xe0\x2e\x25\xb2\xa5\x96\x58\xed\x90\xc0\x60\x0f\xa2\x65\xb7\xde\x3d\x44\xf8\xef\x07\x21\xbf\x39\xec\x4d\x4e\xca\x58\x88\x52\x7b\x77\x80\x67\xb1\xd6\x59\xc0\x05\x14\xc8\xd7\x05\x62\x73\xa2\x94\xcb\xaf\xe4\x50\x90\xd0\x69\xbb\xd0\x9f\x92\xf4\x61\xe6\x48\xf3\xe6\x82\x88\x2c\x71\x57\x6e\x97\x4d\xeb\xb0\xcb\x7e\x0e\x83\x16\x40\x66\x60\x15\x0d\xab\xb5\x8e\x76\x24\x66\x14\xa2\x91\xc1\x2c\xe9\xe0\x34\x6c\x02\x77\x4d\x4d\x09\xce\xcc\x23\x69\x67\x12\xfe\xe2\x50\xc0\xbb\x5d\xf7\xa2\xa4\xc4\x3a\x55\x63\x33\x1b\xcb\xbf\x84\xbe\x3f\x2e\xeb\x06\x54\x53\x2e\x85\xec\x59\x7b\x53\xb3\x2f\x39\x54\xcc\xaf\x0c\xd4\x26\xde\xf9\x1e\xc4\xb2\x08\x41\x69\x48\xaf\x27\xde\x04\xd8\x32\x70\x58\x97\xa0\x4c\x5e\x24\xa2\xe8\x8b\x20\x04\x0f\xd4\xec\xa3\x08\x9f\xdb\x91\x8a\x92\xe3\x5c\x4d\x31\xda\x26\x85\x0b\x9d\xd3\x41\x18\xc7\x44\x49\xa8\x55\xff\x4b\xc9\xff\xf0\xd1\x44\x78\x39\x65\x4b\x00\x41\x79\x99\xfa\x4e\xb8\x91\x02\x13\x3c\xd3\x20\x40\x91\x53\x58\x49\x57\xc1\x04\x89\xdb\x4b\x72\x44\xc9\x59\x07\x98\x8e\x83\xdc\x82\x12\x71\xdc\x1a\xb6\x43\xd6\x99\x2d\x0f\xd8\x20\x49\x2a\xe6\x42\xe2\x4d\x19\xa1\x79\xfa\x75\xd9\x36\x3b\x32\x16\x62\x60\x6f\xd9\x4a\x47\xfd\xb2\xe6\x8d\x3f\x30\xc0\x46\x73\xf8\x09\xde\x01\x44\x94\x5e\xa4\xd4\x18\x3d\x48\xf1\x75\x07\x9e\xed\x50\x32\x3c\x6b\x19\x2e\x02\x0e\x16\x2a\x35\x03\xaa\x58\x2f\xb0\x8b\x40\x36\x24\xa2\x3e\x35\x7e\xed\xa0\x8d\x90\x43\x86\xf3\x58\xc3\x6c\x64\xd3\x14\xc7\x7c\xd9\xd4\xd2\x3d\x58\x1e\xe5\x3d\x81\xff\x97\xad\xa0\x19\xcf\xcf\x04\xeb\x9d\xcc\x1d\xe9\xb7\x4c\x3d\xb6\xb8\x11\x57\x8b\xd4\xf2\x19\xc5\xca\x48\xef\x4c\x82\x6b\x09\xe6\xc9\x6d\x03\x1f\x65\xdd\x48\xb6\xe7\x3d\x0c\x10\x05\x86\xb2\x1d\xf0\x29\x3a\x03\xd2\xed\x7e\x50\x09\xad\x02\x53\x40\xc2\x1d\x09\x06\x06\x91\xf5\xcd\x8a\xf2\xab\x12\xf9\xb8\x60\xee\x87\x81\x5e\x1a\x9f\x40\x0c\x2a\x6f\x63\x4e\xa8\xf9\xb3\x42\x5a\x08\xd1\x0b\x3c\x81\x53\x67\x38\x8f\x4d\x1b\xe3\x56\x31\x8e\xcf\x90\x35\xd0\xee\x97\x5a\xff\xa8\x59\xca\xac\x28\xeb\xcc\xd0\x59\x9b\xb2\xf6\xf3\x52\x36\x61\xbd\x17\x8f\xc9\xe4\xca\xc3\x78\xbb\x9d\xd4\x71\x6b\xb0\x69\x23\xfd\x2b\xbd\x56\xc9\x59\xc4\x2b\x95\xd5\x01\x93\xf8\xbf\x29\x9f\xcc\xa3\xb2\xee\xa9\x4e\xc5\xf9\x85\x83\x92\x4c\x08\x04\x16\xe2\x8b\x54\xfe\x57\x65\x84\x58\xb0\x55\xce\x4d\xe8\xa7\x5f\xc8\x27\x15\xca\xe9\x1d\x37\x5c\xf6\x92\x81\x37\x80\x51\xbb\x61\xfd\xd7\xbb\x00\x68\xf6\x3e\xfa\x6d\x6e\x83\xd8\xfd\x42\x57\xaf\x80\x97\x0f\x4a\x9e\x69\x24\xb2\xde\x0a\xd9\x66\xdf\xfe\x6f\xa4\xa1\x13\xb0\xe7\x72\xf1\x76\x87\x85\xb3\xb4\x20\x49\xf7\x6c\x48\xad\x80\xf2\xc6\x7f\xb0\xf9\x1a\x5f\xc4\x10\x79\x12\x52\x0d\x8d\x68\x3c\x06\x2c\x3a\x22\x2b\xcd\xa7\xe7\x10\xba\xcd\x47\x8e\xe8\x83\x67\xb6\xa0\x59\xa4\x52\xfd\x26\xf1\x14\xa5\xac\xbd\x69\x79\xba\x01\x9f\x7d\xa6\x8a\xc0\x4a\x19\x30\x26\xbc\x1c\x27\xe4\x83\x7b\x1d\xe2\x9c\xce\x09\x0e\x33\x80\xd5\x05\x1a\x58\x64\x09\xe6\x28\xe3\x14\x56\x65\xbb\x1d\x84\xec\xd8"}, {{0x69,0xd0,0x1d,0x82,0x91,0x13,0x08,0x1c,0xbf,0x5d,0x0c,0x6e,0xf7,0x7b,0x21,0x77,0x5c,0x8d,0x9b,0x68,0x00,0x00,0x05,0x6f,0x03,0xc7,0x5a,0x7d,0x0a,0x05,0x87,0xd2,},{0xee,0x84,0x69,0xdd,0x61,0xcf,0x5d,0xe4,0x00,0xda,0x7d,0x7a,0x47,0x9a,0x44,0x18,0xe6,0x77,0x2e,0x69,0xff,0x53,0x30,0xce,0x5c,0xa7,0x78,0x59,0xfe,0x27,0x17,0x55,},{0x40,0x8c,0xef,0xcf,0x01,0x41,0x7e,0x2d,0xc6,0xa8,0xa1,0x82,0x84,0xe4,0x11,0x65,0x7f,0x03,0x92,0x50,0xc3,0x12,0x78,0xdb,0x28,0x19,0xf9,0xea,0xea,0x42,0x93,0xfb,0xf6,0x83,0x1a,0x28,0x01,0xfc,0x1e,0xa6,0x87,0x16,0x57,0xb8,0x41,0xe1,0x73,0xf4,0x51,0xb0,0xd5,0x75,0xa9,0x37,0x9e,0x35,0x85,0x7e,0x8c,0x72,0x97,0xfa,0x14,0x04,},"\x0b\x9e\x11\x0f\x29\xd1\x98\x16\xa1\x7b\x2c\x75\x47\x8f\x13\xce\xe9\x53\x81\x1a\x19\x83\x01\x4c\xb7\xeb\x0f\x75\x52\x69\x12\x04\x4c\x3e\xa6\x82\x97\x80\xe6\x57\xf8\x17\xc5\x59\x7d\x46\x61\x08\x0d\x90\x34\xc9\x77\x87\x22\x41\x8f\x2c\x3a\xee\xca\xef\x6b\x69\x0c\x5b\xd3\xb5\x93\x70\x10\x86\x98\x8e\x43\x40\xae\xc3\x4e\x01\x72\x75\x8e\xb2\x40\x87\xd0\x3a\x8f\x76\xe7\xcb\xca\x53\xaa\xaf\xc4\xd2\x15\x5c\x75\x32\xab\x54\xbe\x48\x87\x26\x53\x06\x6f\xa1\xfd\xd5\x4a\xcf\xe9\xda\xae\xca\x35\x6c\x29\x0e\x6b\xe6\x33\x55\xb6\xd9\xfc\x52\xeb\x5e\x4f\xcc\xbb\xc6\x08\x35\x07\x13\x2d\xe4\x85\xbf\xae\x9f\x42\xe1\x97\x12\x23\x2b\x71\x64\x02\xc2\x3f\xea\x74\xef\xa6\x9d\x73\xc8\xc2\xe3\xa8\x66\x2b\x8b\x65\xb0\xfd\x00\x77\x41\x01\x3e\x1f\x6e\x3c\xfe\x43\x45\xd5\xc8\x30\x68\x2f\xe6\x00\x21\xd7\x08\xe1\x0a\x9e\x9f\x40\x52\xff\x7a\x6a\xbf\x28\xac\xb1\xd6\xb5\xfb\x03\x8e\xed\x3f\x72\x51\x3c\x35\x5b\xbf\xd5\xc2\x27\x4f\xa8\x5f\xc4\xf4\x46\x97\x4b\x2d\x1b\xc0\x36\x50\x7a\x1e\xb5\xfc\xf5\x5d\xbd\x44\x21\x0e\x53\x82\x74\xde\x80\x8b\x90\x0b\xf1\xc0\xfc\xc0\x24\x12\x70\xdb\x8d\xbd\xcd\x88\x34\x9d\x67\x22\x4f\x08\x7e\x5f\x07\xf6\x99\xb0\xba\xe6\x8b\x2e\xbc\x9a\x4e\x27\xc7\x0d\x3a\xc7\xd9\x96\xfa\x7d\x4d\xab\xd5\x68\x37\x8e\x3f\x93\x90\x5b\x1c\x89\xc6\x52\xd3\x84\xc1\x6c\x2b\xcb\x1c\x98\x44\xc3\x8f\x71\xbb\x13\xe0\xc6\xa2\xea\x95\xb6\x12\xe3\x90\xc5\xf8\x6d\x24\x8e\xa5\x31\xf2\xec\x6f\x63\x9a\x40\x2d\xfa\xcc\xf3\x72\x17\x00\x53\x44\x03\x07\x45\xd1\xf1\xe5\x20\xcc\x19\x5d\xaf\xdd\x7f\x29\x5f\x37\x7b\x8d\x61\x47\x16\x70\x38\x36\x21\x9b\xb7\xb0\x9f\xea\x7a\xae\x9a\xc3\x3e\x42\xdc\xab\x65\xcc\x61\x42\xfc\xd8\xce\x15\xe9\x77\x17\xfd\xb3\x3e\x95\x38\xc4\x4f\x6c\xd9\xc1\xc6\x5d\xb6\x27\x51\xf5\x52\xf8\x70\xf1\x01\x42\xc9\x6f\x9d\xf1\x85\x5a\xbb\x39\xe4\x27\x06\xa5\x63\xab\x15\x45\x11\xfd\xce\x68\x7c\x95\x76\xf9\xed\xc3\xb4\xba\x55\x34\x6c\xe6\x68\x02\xff\xfe\xf4\xb1\xb5\xe1\x20\x15\xce\x8b\x57\xde\x54\x58\xca\xa0\xda\xf3\x41\x96\x81\x28\x58\x42\x88\xc2\xf2\x7c\xbf\xb7\x6e\xab\x28\x6b\xac\x5f\x66\xaa\xd0\x04\x9e\x0c\xa6\x0a\x90\x14\xe1\x79\x01\xc4\x13\x0e\x83\xce\xae\xb4\xc2\x71\x3e\x97\x1a\x23\x5e\xff\x99\x5a\x81\x3a\xe4\xea\x64\xa5\x83\xff\xde\xfd\xac\x82\xac\x76\xea\xf4\xd4\x7c\x4a\xc8\x25\x0f\xcb\xaf\xd6\xb8\x8f\xae\xb4\x80\x15\xf5\xb4\x2b\x53\x34\xa5\x0b\x31\xd4\x50\x2e\xa4\x91\xda\x90\xdc\xe9\x3c\x08\xfd\x56\xf5\xc5\x8e\xed\xb3\x79\x16\x6a\x23\x76\x2b\xe5\xe4\xad\xea\xa6\xf4\xae\x1c\x24\xe0\xca\xc4\xdd\xca\x03\x83\x45\x85\x60\xcd\xc4\x8b\x8c\xd1\xf4\x2a\x3b\xa2\xf6\xff\xb6\x07\x79\x09\xfc\xb2\x94\xad\x1e\xf4\xa4\x4c\x22\xec\x4b\x39\x87\xdd\xbe\xef\x32\x5b\x98\xce\xd5\x68\x15\xea\x7d\x5f\xcc\xf5\xaf\xdf\xe9\x8e\x0e\x6d\x92\x0f\x7a\xda\x2e\xb5\xc9\x16\x24\xc7\x6c\xbb\xa2\x99\x3a\x9c\x7a\x55\x02\x1d\x12\x7a\x66\x7b\x39\xe2\x35\xdf\x4f\x81\xde\xe7\xdd\x14\x28\x98\x77\x8d\xbd\x92\x13\x5b\x70\xb3\xac\xf5\x9f\x6c\x29\xa2\xc9\xd4\xa7\x00\x6e\xf1\x1a\x91\x8b\x3a\x29\x06\x26\x4a\x15\xd6\xb5\x29\x30\x8c\xbc\x89\xf8\x56\x01\xfc\x1e\xa1\x31\x4d\x67\xf7\x56\x6c\xf1\x09\x16\x5c\x7f\x92\xde\x1a\x18\xd7\x0d\xeb\xe0\x24\x34\x9d\xb3\x56\x0a\x6e\x52\x7e\x2a\xc3\xe0\x67\x89\x46\x87\x04\xe6\xb8\xf1\x87\x1f\x16\xba\xe9\x82\x73\x92\xb4\x18\xf1\x08\x6c\xc4\x97\x08\x6c\xed\x14\xb1\x24\x9d\x6d\x87\x94\xf2\x3b\xb8\x77\x9d\x41\x86\x48\xf2\x15\x56\x56\xa6\xfd\xa7\x44\x0c\x56\x28\x4d\x9b\x21\x88\xfa\x7d\x17\x36\xbc\xcc\x9c\xff\x0b\xe5\xb1\xe1\xf5\x51\xff\x81\x37\xff\x59\x66\xed\x9d\x0f\x7f\x01\xc3\xdf\xf2\x98\xe9\x10\x2f\xfb\xd3\x24\xbf\xca\x5f\xfe\x09\x68\xe6\x6f\x9d\x82\xf4\x87\xd3\x03\x93\x4f\x27\xf7\x8b\x28\x37\x8e\xb7\x2c\x38\x27\x29\x62\xa5\xf7\x35\xd7\x39\x2e\x5d\x33\x3f\xd8\x6d\xe1\x67\x26\x9c\x17\xa1\x65\xb9\x2d\x31\xa4\x88\x0a\x41\xe1\x36\xf7\x18\x96\x0a\x91\x9b\x3d\x7c\x4e\x74\xcb\xd7\x3c\x73\xf9\x21\xbe\x51\x3f\x73\x9a\xff\xb2\xe4\x1f\x80\x42\x6b\xb8\xcf\xb4\x56\x4b\x98\xfc\x4d\xe5\x32\x55\xce\x3f\x98\xb4\xd2\x2a\xe6\xfc\xe9\x19\x0b\x55\xbf\x2c\x93\x86\x1c\x1d\xca\xc1\x01\xb5\xe1\x6c\xf0\x99\x91\xc5\xde\xfa\x33\xf8\xd5\x10\x56\xd9\x34\xbb\x4b\x47\x7b\x65\x20\xd4\xc7\xae\x22\xea\x7f\xb3\x10\x9d\xe7\xf4"}, {{0x4b,0x8e,0xd2,0x97,0x31,0xf1,0x04,0x79,0x5e,0x97,0xde,0xe7,0xc8,0xb4,0x01,0xa0,0x2a,0xfa,0xa9,0xa7,0x95,0xe6,0x13,0x35,0x3d,0x2b,0x95,0x00,0x17,0x65,0x02,0x7a,},{0xf2,0x22,0x98,0x21,0x0b,0x09,0xfd,0x61,0x7f,0xc8,0xb3,0x50,0x74,0xca,0x18,0x01,0xe6,0x07,0x5d,0xc9,0x2a,0x8f,0x50,0x34,0x4b,0x80,0xe8,0x54,0x05,0xa0,0x38,0xf5,},{0x23,0x45,0x88,0x66,0x86,0xeb,0x39,0xb5,0x19,0x9c,0xaa,0xa9,0x61,0x5b,0xc6,0xb4,0x89,0x6f,0x07,0x6e,0x8b,0xd7,0x36,0xc0,0x03,0x8a,0x65,0x17,0xf9,0xc2,0xb1,0x67,0xe7,0x59,0xf3,0x73,0x72,0x26,0x8a,0x69,0x7e,0x9b,0x78,0x60,0x5f,0x2e,0xd9,0x47,0x25,0xf6,0x90,0x5a,0x79,0x00,0x15,0x3f,0xc9,0xe8,0xbe,0xed,0x31,0xff,0xae,0x05,},"\xcb\xb5\xf1\x3a\x0e\xf2\x83\x7b\x80\x5d\x3b\x78\x51\x09\xf9\xf2\xe0\xd0\xa0\x17\xbf\xe7\x69\x2d\x91\xec\x23\xdd\xab\x78\x17\x33\x0b\xef\x24\x7f\xd9\x1a\xb2\xc7\x7d\xd4\x41\x25\x19\xcb\xd3\x84\x75\xce\x0c\xb3\x9b\x14\x80\x09\x2b\xc7\x38\xd4\x15\x2b\x8a\x6d\x55\x24\x8e\x3b\x9f\x32\xcd\xcd\x15\xec\x5d\x05\x9e\xc3\xc8\x84\x75\x54\xee\x47\x00\x53\x94\x97\x4d\x8e\xb2\x35\x92\xd1\x7f\x5a\x39\x6e\x3c\x19\xf8\xe8\x98\x37\x06\x79\xfe\xf5\x31\x8c\x4d\xd2\x99\xc6\x21\x7d\x6a\xbc\xc9\xb6\x1a\x5b\x2d\x0c\xfe\xf6\x95\xd1\x70\xca\x20\xa8\x3d\x6f\xd3\xc6\x66\xc8\xfd\x1c\x10\xad\x97\x0e\x2f\xa6\xaf\x10\xff\x0e\xd0\xcb\xfe\x75\x22\x46\xd0\x3f\x3a\x3c\x60\x32\xdb\xb3\x19\xbc\xfd\xac\x4d\xaf\xc5\x0b\xc3\xe6\xbf\x59\x5f\x49\x1d\xec\x38\x8b\x34\x41\xb8\xce\xe0\xdf\x91\xf5\x5c\xc7\x80\x7d\x07\xf8\xf5\x41\xed\x73\x22\xff\xc3\x9d\x18\xf8\x95\x60\xe4\x12\x3a\xec\x1d\x77\x96\x9c\xf1\x87\x77\x86\xf4\xcf\x94\xb1\x77\x0b\x10\x90\x65\x5e\x8c\x72\xee\xce\xa4\x57\x2e\x46\xf5\x80\xf9\x63\x96\x6d\xb2\xa1\x08\x5e\xea\xbc\x57\xbf\x4a\x84\x72\x4b\x9c\x85\x99\xa4\x33\xab\xf5\x8b\xca\x80\x40\x91\xd3\xd5\xe6\xe5\x04\x8e\xc2\x7b\xf8\x12\x9b\x67\x0c\xc2\xc8\x8d\x9c\xac\x47\x18\x59\xf4\x69\xb9\x18\xf3\xf6\xd7\x0f\x7d\x66\x63\x50\x1f\xfb\xef\xef\x02\x6d\x79\xea\x70\x92\x7c\xcf\x60\x75\xee\x51\x05\x42\x33\x21\xe1\x1a\xee\x9a\xd1\x6f\x98\x7e\xfb\xdd\x00\xb6\x2a\xff\x69\x8e\x52\x1a\xdf\x92\x03\xb1\x5e\x9f\x0f\x3a\xd0\x7d\xca\xd9\xdd\xcc\xaa\xe9\xb4\x90\x24\x7f\x12\xc3\x11\xde\xe6\xb7\x3b\x8f\x91\x24\xfd\xce\x12\x99\xb4\x7f\xb1\x91\x4c\xee\x7e\x3a\x07\x81\x4e\x31\x2c\x3c\xe5\x69\x27\x67\x2c\x51\xb3\x18\x59\x80\xcd\xe5\x7f\x3a\x75\x9b\x50\xbc\xfc\x4c\xb0\x75\x3b\x95\x4d\x97\x13\x5d\xeb\x2a\x05\x32\xe9\x8b\x66\xf3\x9a\x7c\x08\xcf\x4d\x54\x85\x39\xe2\xeb\x9f\x42\x2f\x66\x49\x65\x88\x93\xa7\xc3\xc2\x5a\x4f\xc9\x01\xf8\xc3\x98\xb8\xc7\x27\x33\x91\x1a\x00\x72\xed\x6b\xd2\xf4\x18\x93\x89\xae\x10\xa8\x14\xf6\x48\xd7\x1f\x69\xc3\x7e\x82\x95\x78\x44\x28\x18\x3b\x93\xc8\x01\x3b\x96\x4a\x9f\xef\x86\xb4\x8f\x48\x93\x16\xbc\x22\x2e\x96\xb3\xbd\x15\xff\x14\x9b\x96\x82\x03\x29\x55\x1c\x15\xe0\xd0\x95\xd1\x56\x9b\x1e\x21\x31\xc7\x87\x51\x56\x5c\x30\x41\xf2\x97\x85\x39\x5b\x97\x15\x13\x17\xf6\x2e\x35\x82\xe4\x07\xb1\x64\x9e\x60\xd0\x3a\x85\x99\x12\x0a\x30\x2a\x46\x95\xfa\x86\x2b\x41\x20\xf9\x4d\x22\xec\xae\x72\x39\x8d\x20\x94\xd1\x08\xad\x2d\xbc\x1b\x95\x97\x35\x90\x21\x42\xaa\x5f\xe6\xe7\x99\x65\x59\xf6\xf6\x01\x44\x8a\xea\x02\xf3\x56\xf8\xdc\xdd\x14\x43\x40\xeb\x36\x19\xf9\x86\x5b\xf7\x67\x2a\xea\x32\x6c\x4e\x93\xc9\x9f\x0e\xd1\xf9\xed\x86\x6b\xe1\x5d\x3a\xf2\x67\x5f\x6d\xd6\xe2\x96\x60\x2c\xa3\x73\xa8\x15\xb0\xbe\x46\xbc\x2a\x3f\xbb\xa0\x6b\x88\x05\xc7\x31\xfe\x08\x00\x7d\xaa\x06\x05\x09\x61\xb2\x4d\x14\x69\x3a\x72\x89\x8c\xcf\xb8\xb8\xfe\xdc\x60\xa4\xee\xf8\xff\x79\xb6\xdd\x75\x92\x59\x18\x33\xb5\x76\xef\x48\x29\x4e\x5e\x04\x85\x94\x2e\x57\xc1\x19\x60\x2e\xdd\xf8\x8b\x1f\xae\xa5\x17\xf2\xfc\x2e\x3d\x14\xd2\x46\xa5\x2c\xbd\x71\xa1\x08\xc6\x6b\x6c\xc4\xf2\xd4\x58\x04\xa2\x82\xec\xed\xb1\xb0\xad\x3d\xc3\xb4\x88\x0a\xb2\xff\x78\xb8\xdd\xde\x48\xf7\x46\x6c\x14\xfe\xd3\x49\xe9\x5b\x50\x53\xab\xf1\xbf\x09\x91\x12\x60\x31\xd9\x75\x47\xd1\x43\xc2\xae\x16\x49\x28\xb6\x1c\x07\x08\xaf\x8c\xa3\xe4\xf5\x51\x54\xd1\x3d\x75\xe9\x7d\xb4\xba\x3e\x69\xd3\x6e\x9b\x37\x08\x23\x68\xc2\xf7\x21\xbd\x3f\x95\x12\x6a\x1e\x00\x4e\xb2\xa1\xbf\x26\x83\x43\xae\x21\xd2\x99\x50\x44\xa2\xca\xdd\x67\xff\xac\x9e\x15\x38\x17\x5b\x3c\xc4\x4d\xb5\xd2\x6f\x1d\x5c\xc8\x9c\xa0\xe1\xc1\xee\x85\x37\xa8\xa9\x1d\x32\x4c\x2e\x02\xe1\x8b\x9f\xb9\x73\x0d\x6d\xda\x55\xf7\x2d\x84\x33\x89\x69\x3e\xbf\xcb\xa7\xfb\xe1\xa0\xbc\xff\xb9\xaa\x28\x4f\x4a\xe6\x6f\x44\xa8\xb8\x93\x02\x98\x3b\x22\x73\x6d\x0c\x72\xd6\xa0\x44\xe4\x29\x16\x24\x24\x3a\x4e\x0c\xe6\x5d\x5e\x53\x46\xd6\x7f\xed\x37\x60\xdd\xb0\xc5\x10\xb5\x0f\xf3\xee\xf0\xa1\x8a\x26\x7d\xe7\x30\x47\x6d\xd8\x2d\xff\x70\x72\xcb\xa0\x98\x48\x25\xa0\x04\xdd\x4b\xcd\x8c\x37\xfd\xaf\x1f\x68\x3d\x1d\x93\x80\xe1\x35\xa9\x5d\x24\xb8\x9f\xad\x0b\xe9\x41\xc5\x48\x25\x1b\xec\x90\xcc\xae\x01\x5b\xc0\x56\x7d\xa8\x4b\x37\x1e\x50"}, {{0x08,0x0d,0x7f,0x76,0x18,0x2e,0xe6,0xbc,0xea,0x89,0x4b,0x1e,0x00,0x60,0x55,0x8b,0x3b,0x12,0x5a,0x34,0x99,0xdf,0x39,0x73,0xb8,0xdd,0x66,0x93,0x40,0x8e,0xe4,0x69,},{0x41,0x24,0x71,0x3d,0x7c,0x2d,0xf5,0x0f,0x93,0x05,0x57,0x30,0xd1,0xb2,0x81,0xda,0xec,0x30,0x28,0xcf,0x2c,0x1e,0x48,0x58,0xd1,0x28,0x70,0x7a,0x23,0xd6,0xde,0xb0,},{0x18,0x5f,0xb1,0xb6,0xd8,0x6d,0xc4,0x44,0x48,0x10,0xcf,0x5e,0xc6,0xfe,0xf0,0xab,0xda,0xfa,0x2a,0x6f,0xcc,0xb4,0x5d,0x11,0xcf,0xb5,0x4b,0xa1,0x6a,0x68,0x43,0xf2,0x80,0xd3,0x80,0x47,0x10,0x02,0xae,0x0d,0x71,0x50,0x85,0x56,0xc7,0x8e,0xd5,0x41,0x5e,0x42,0x33,0x8c,0x16,0x1f,0x2b,0x62,0x1e,0x74,0xcb,0xa4,0xf6,0xa1,0xd4,0x02,},"\xab\x0a\x6d\xe2\x35\x1b\x9a\x84\x98\xf6\x82\x72\xd9\xa0\xa7\xa0\x57\x36\x5d\x34\xef\xa0\xfd\x34\xcc\x3b\xf8\x62\xe4\x9c\xdc\x30\x2b\x2b\xd5\xa3\x0d\x60\x1a\x13\x0e\xc4\x03\x2f\x54\x1a\xe6\xcb\x7b\xa9\x7f\x84\x18\x3d\x2d\x25\x81\x28\x7c\xa7\x01\xd7\xd7\xa9\xab\xa1\x10\xce\x58\xb9\x46\xac\x08\x24\x30\x5d\xf7\x92\x9f\x3d\xd7\xfc\x9c\x87\x32\x23\x86\x37\xe2\xb1\x81\xd6\xe1\x16\xc7\xf6\x6e\x32\x26\xaa\xe3\xce\xd1\x61\x02\x62\xda\x1a\x0a\x4a\xa5\x0a\x1b\x94\x43\xec\x82\x83\x29\xe4\x73\x4d\x28\xfc\x25\xab\x9c\x1d\xe9\xb8\x98\x7e\x5d\xc0\xc8\x13\x19\x16\xc5\xf1\x89\x28\x70\x4a\x71\xe8\x06\x22\xb1\x49\x2b\xf2\xfe\xc5\xd4\xb6\xdb\xe4\x15\xc8\xaf\x2c\xe3\xef\x10\x9b\x34\xdd\x5e\x64\xd5\x68\x46\xf0\x85\x93\x5a\x4a\x5d\x10\x73\x49\x7f\xb3\xfb\x8f\xb7\x7e\x8f\x5d\x5e\x3f\xd0\x0c\x30\x65\x2e\x3c\x5c\xde\x40\xa3\x35\xd1\x4e\x54\x25\xff\xba\x94\x28\x85\xed\x17\xbd\x36\xdf\x50\x69\x24\x23\x7e\x75\xbe\x84\xda\x82\x19\x50\xb9\x14\x24\xfd\x9f\x16\xc1\xb2\xc7\x83\xe9\x0f\x8c\xc2\xcc\xc7\x98\x0c\xe9\x15\xc7\x69\x6b\x06\xa5\x86\x73\x02\x59\xe6\xd1\x45\x88\x58\x2b\xab\x9d\x2a\x39\xf6\x9e\x98\xe7\xf2\xae\x9b\xc0\xc2\x61\x0d\x7e\x04\x57\xf2\x6a\x5d\x66\x54\x3b\xe1\xd6\x5b\x79\xc4\xb7\xc0\xd8\xee\x73\xd0\xc2\xb6\x7b\xf5\x0d\x80\x82\xf0\x06\xf9\x6d\x11\x95\x05\x87\x31\x93\xdf\xdb\xd4\x32\xbb\x1c\x9e\xe0\xd0\x3e\xe5\x4c\xf9\x5d\x20\xe9\x1f\x7f\x3a\x06\x9b\x62\x56\xf4\x21\x59\xcd\xc1\xe6\x00\xa9\xa1\xc2\xf5\xa8\xe4\x67\xd5\xc2\xa9\xdf\xf8\x73\x0e\x6b\xe8\x26\xfb\x2a\x1e\x64\x48\xbf\xc4\xfc\xaa\xaa\xcd\xaa\x76\x62\x35\x1f\xaa\xdc\x91\xf7\xca\xa7\x73\x7d\xc8\x2e\xc3\xd4\xb2\x19\x36\xbc\xa1\xbd\x7c\xe3\x73\xad\x66\x26\x4a\xf1\x32\x41\x16\x75\x49\x31\x8c\xdd\x78\xe5\x63\x82\x7f\x85\xea\xb2\x0e\x0b\x42\xbc\x55\x4a\x71\x2c\x00\x51\xa5\x01\x0d\xc2\xf2\xc7\xdb\x85\xac\xf6\x54\x9f\x9d\x10\x2c\x90\x3c\x1b\xe5\xa0\x52\x92\xc3\x0f\x21\xab\x1b\x2b\x8a\xbc\xbb\xf1\x04\x72\x3c\x63\xf0\xeb\xc5\x54\xfb\xee\x42\x02\x0c\xcb\x14\xf4\x43\x47\x8d\xf7\x7c\x6a\xa4\x4d\xb9\xa5\x7f\x8f\xd4\x4d\x97\xea\x09\x9e\x47\x74\x82\x3e\xbe\x12\x3f\xcf\x50\x16\xa6\x6e\x83\x7b\x2f\x65\xc1\x84\x5e\x68\x1e\xe2\xa7\x05\x9f\xb1\x29\x0c\xd0\xa9\x33\x12\x98\x55\xcc\x83\xc8\x7e\x0b\x3b\xb6\x1e\x44\x13\x4a\xdd\xd3\x63\x78\x50\x24\x6c\xdc\xda\xa2\x9f\x15\xc4\x1a\x3d\x4d\xd2\xc1\xd7\x60\x06\x21\x24\x33\x31\x24\xcf\x09\x14\x35\xfd\xce\x71\x1f\x52\x31\x63\x68\x99\x9b\xef\xa4\xc8\x0a\x39\xb3\x75\x0e\x4e\x38\x62\x89\xe4\xe2\x85\x5e\x97\xb6\x19\xb0\xa2\x57\x99\x91\x24\x08\xb7\xd5\x8a\x4d\xd9\x81\x95\x71\xe9\x01\x43\x0f\x6d\x55\x55\x29\xdd\x63\x0a\x18\x67\x45\x9b\x80\x22\xd0\xe0\xad\xd6\xab\x4f\x12\xf6\x0b\xaa\xc7\x59\x79\xbb\xff\x7f\x62\x58\xd2\x8d\x67\x60\xb1\xff\x24\x3c\x39\xe4\xbb\xd6\xcf\x9b\xea\x57\x2a\x9c\x08\x2d\x05\xad\xcf\xd4\xcc\xf9\xfa\x02\x6f\x2c\x90\x4b\x6e\x78\x2e\xd7\x09\xdf\x77\x48\xa3\x07\xcd\x2d\xc3\xa0\xfc\x41\x23\xdf\x58\x0c\xbf\x49\xe0\x5c\xee\xab\xc9\xf3\x9e\x57\xb7\xf3\x00\x90\x5d\x8b\x31\x00\x91\xfb\x95\x3f\x3d\xef\x36\xde\xb3\xe8\xbf\x37\x2f\x59\x16\xb5\x15\x97\xdf\x02\x4c\xe8\x5c\xc4\xc3\x6e\xab\xdc\x58\x0b\x5c\xf1\x52\x99\x46\x48\xf1\xd7\xf3\x5f\xed\x5c\xd1\x0f\x6e\x29\x49\x16\x1a\x33\x59\xb3\x03\x4d\x45\x0e\xa6\xf6\x1c\xdf\x1d\x5a\xf7\x6d\x40\x10\x2b\x60\x29\x4f\x4e\x49\x07\x82\x49\x02\x6d\x62\xfe\x35\xfd\xf2\x24\x92\x8b\x0c\x49\xba\x2b\x53\x39\xeb\xb1\x92\xc5\xab\x7f\x05\xcd\xb9\x46\xe3\x7d\x67\x1a\x4a\x5e\xf2\xa5\x82\x72\x20\xb4\x43\x8c\xbd\xa0\x57\x36\x29\x28\x06\x64\x8f\x5b\xdd\x52\x42\x0f\xa7\x6b\x84\xa6\xad\xdb\x12\x63\xeb\x0c\x50\x0e\x81\x56\x6d\x71\x8d\x50\x66\x02\x6d\xa0\x97\x05\x4a\x86\x63\x10\x16\xdd\xfb\x70\x6a\x56\x77\xd5\x02\xef\x84\xaa\x73\xb5\x86\x3b\xc4\x0f\xdc\x42\xcb\x73\x21\xac\x5f\x00\xe2\x92\x8f\xed\x7b\x04\x18\x59\x6d\xb4\xb6\x15\x1d\xd6\xbc\x6e\x81\x8f\x02\x53\x55\x2b\xf1\x37\x41\xe6\x96\x80\xe9\x66\xc9\x2c\x29\x3e\x13\xc9\x0f\x7c\x99\x99\xbd\x1e\xc6\xaf\xe3\xb4\xaf\xfb\x47\x34\x0c\x89\x85\x98\x29\xfe\xb5\x99\xdb\x3a\x8c\x3d\x33\xfc\x8d\x45\xfa\x53\x81\x07\x8a\xe9\xf7\x5d\x85\xc1\x49\x6f\x5f\xb5\xad\xdf\x4e\x40\x09\xb7\x64\xbc\xc9\x11\x8e\x92\x75\xdc\x72\x19\xf2\x81\xd0\xd1\xef\x71\x58"}, {{0x49,0x84,0x6a,0xda,0x7a,0xe6,0x84,0x97,0x1d,0xd9,0x17,0x10,0x79,0x90,0x90,0xb3,0x7f,0xe5,0xad,0x56,0x1d,0x72,0xa3,0x5f,0x2e,0xfb,0x40,0x5f,0x19,0x6a,0xb0,0xec,},{0x4d,0x37,0x0a,0x81,0x94,0xa3,0x04,0x5b,0x09,0xb3,0xbd,0xaf,0xa2,0x7f,0xb9,0xac,0xd5,0x99,0x43,0xa5,0x4a,0xe1,0x4c,0xba,0xaa,0x22,0x00,0xeb,0x0f,0x3d,0xa7,0x1b,},{0xa5,0xc8,0x09,0xd1,0xca,0x4c,0xfb,0xb3,0xdc,0x70,0xa2,0xa3,0xa1,0xf2,0x67,0xc2,0x73,0x30,0x42,0x07,0x19,0xe3,0x60,0x62,0x18,0xa1,0x47,0x1c,0xac,0x57,0xcb,0x67,0x4b,0x9b,0x42,0x82,0x7c,0x5e,0x9a,0x7b,0x25,0xc8,0x13,0x9c,0x13,0xdf,0xf6,0x0b,0xde,0x6c,0x2d,0xba,0xd3,0xa8,0x36,0x11,0x97,0xc1,0xfb,0x19,0xd2,0xcd,0x52,0x0b,},"\xab\x39\x8d\x94\xf9\x28\xb1\xd4\x21\x02\xa3\xe5\x13\xcc\xd1\xcb\x10\x89\x90\x11\x03\x94\x10\xa8\x88\x8b\xba\x26\xdf\x1a\x03\x72\xbd\xba\x0c\xe8\xd8\x54\xaf\x51\xe9\x33\x0a\x8d\xaa\x93\xc1\x05\x80\x90\x6a\x8a\xc7\x2d\x29\x4a\xeb\x95\x66\xfe\x1c\x78\xba\x84\x71\xc0\x6c\x4a\x8a\x75\x11\x3b\x34\x89\x3f\x62\x76\xed\x81\x32\x92\x05\x3b\x95\x6a\x46\x5d\x84\x7d\x2e\xce\x86\xe2\xda\x8a\x9f\x0f\xe3\xdb\x52\xa5\xaa\xc7\x46\xef\x96\x48\x5e\xf8\x1f\x13\x62\xb5\xa4\x2e\xaa\xee\x1f\xbb\x06\x46\x70\x44\x71\xa2\x1b\xf7\x63\x67\xbe\xaa\x07\x81\x2b\x3d\x32\xad\xcd\xed\xde\xd7\x53\x9e\x3a\x50\x1b\x83\xc0\x5b\x19\xa4\x9b\x52\x0e\xde\xdc\x9a\x78\xa5\xfc\x2d\x50\x12\xf1\xd4\xe3\x81\x84\x4e\x79\x2e\xd9\x0b\x0f\x57\xbc\xe3\x75\xc7\x5a\x65\x8b\x2c\x78\xc6\xff\x7d\x9e\xfc\xd4\xbf\xa3\x5c\x47\x68\xcb\xb1\x95\xe4\x82\x3d\x9b\xbd\x83\x5a\x37\x4f\xa0\x4c\xa1\xea\xae\x9c\x56\x6d\x8f\xd5\xaa\x7c\xa5\xef\xe0\xdf\xc3\x17\xff\xfa\x40\x9e\xf1\x02\x2f\x1c\x3b\x37\x6a\x93\x5a\xf5\x57\x08\x3e\x95\x28\x7b\x07\xa9\x8a\xc6\xc1\xb7\xbd\x8b\xb2\x6b\x60\xfa\x7c\x4b\xc9\x19\x73\xb2\x01\xb2\x99\x22\xb4\xb9\xd0\x3d\xd6\x88\x2a\x0b\xd3\xb7\xd9\xe5\xb8\x1e\xe7\x4c\x36\xbe\xc6\x65\xe4\x34\x3c\x8c\x9a\xd3\x36\xda\x38\x50\xc9\xb2\x69\x7f\xe1\xcc\xe2\x9c\x37\x86\x22\xa3\x3c\x24\x8f\x44\x8c\x88\xf4\x8d\xf0\x26\x01\x43\xb2\xa3\x42\xf1\xdd\xee\x74\xd3\xb9\x7c\xa3\xe1\x16\x6b\x15\x69\x93\xda\xd3\x0c\x49\xd8\x10\xd7\x40\x48\xbc\x6d\x46\x76\x52\x00\x4d\x7e\xdb\x65\xc6\xda\xc3\xa2\xc5\xd3\x00\xb9\x7e\xe3\xa1\x0a\x9e\x14\xb6\x9f\x3c\xad\x67\x59\x72\x96\x2e\x1f\x8e\xd9\x75\x47\xad\xed\xc4\x7d\x1c\xf3\x47\x1e\xf3\xb2\x2f\xdb\xf7\x8e\x34\xf3\x1a\x3b\xb7\x66\x9c\x41\xbd\x92\x92\xc3\x80\xbc\xe9\xa4\x2d\x84\xbc\x27\xac\x92\x8b\x8b\xfc\x3c\x63\xd2\x0c\xcd\xb4\x78\xdf\x7d\xdf\x42\x1f\xb1\xcd\x90\x5f\xfc\x4c\x04\x78\x6f\xd9\xae\xf0\x6b\x89\x38\xab\x8e\xf5\x22\x21\x7b\x2c\x04\x51\x5f\x61\xa1\xc3\x12\xea\x83\x25\x3f\x84\x58\xc0\x91\x8f\xcf\xe8\x74\xe6\xe7\xfb\x11\x27\x5d\xb2\xa2\xec\x79\xa2\xd8\x68\x30\x32\x33\xc1\xb6\x97\x95\x2a\x3b\xfd\x3a\xd0\xa6\xf6\xcd\xd5\xe7\x2c\xc9\x40\x9f\x74\x10\xa4\x0d\x5b\x45\x36\xdd\x46\xeb\x16\x11\xae\x86\x70\x36\x71\xb3\xa0\x51\x5a\x03\x77\xbe\xa1\x56\x54\xba\x0a\x0d\x1e\x4e\x96\x02\x63\x28\x42\xf2\xac\xd4\xef\x99\x32\x36\xe9\x93\xf2\x65\x0d\x59\x92\x3f\x24\xe2\xcd\x30\x93\x2d\x8b\xf8\xae\xec\x64\x44\x72\xba\x46\xa0\x78\x81\x49\x6c\x92\xa0\x13\x5c\x67\x5a\xeb\x0c\xe6\x18\x10\x88\xdb\x8f\x15\x6c\xfe\x74\x35\xca\xc6\xc9\x7d\xa6\x37\xdb\x4a\x89\xf5\x13\x31\xda\x13\x73\x1e\x74\x1f\xcc\xc0\x35\x55\x42\xce\x11\xef\xa6\x9d\x05\x38\xd3\xef\x12\x7a\xa6\x87\x45\xed\x30\x85\xd2\x9d\xa9\x0d\xc5\x83\x70\x1b\x6b\x3a\x70\xa3\xef\x3e\x16\xa9\x24\xb3\x32\x03\xb9\x23\x96\xc4\xb9\x45\xf1\x27\xa7\x88\x8f\xa0\x50\x15\xc0\x60\x30\x07\x56\x67\x29\x23\x7c\xc0\x78\x2b\x30\xc0\x20\xd9\x95\x95\x47\xfe\xec\x9f\x4d\x67\x64\x60\xbf\xe0\xc5\xc1\x9c\xea\xba\xee\x06\x82\xdb\x8b\xe6\x91\x35\x18\x1e\xc0\xfd\xd9\xf7\xa6\x6d\x50\xbd\xc3\x79\xe4\xa2\xc5\x98\x17\x8f\x95\x93\x94\x6a\xca\x64\x05\xb1\x77\xfc\xad\xe0\xf8\x64\x21\x58\x3e\xd6\x7e\xba\x18\x72\x22\xa1\xe4\x44\x95\xb3\xae\x54\x4f\xdc\xa2\x8e\x2c\x14\x48\x5e\xab\x04\x71\xaa\xa8\x03\xc2\x9a\x9d\x8a\x48\x92\x67\x64\xfc\xa1\xdf\x51\x40\x7a\xd3\x3e\xc1\x7e\x94\x1e\x6e\x26\x17\x23\x7a\x84\x30\x98\x73\xdc\x71\x36\x55\x87\xbd\xe4\x27\x4b\x5d\xc3\x27\xcc\xb1\xe1\xe9\xc8\x57\xe0\x42\xcc\xca\x8d\x85\x52\xba\x28\x8c\x97\x8c\xfa\x0a\xf9\x9d\x67\xcd\x03\x40\x60\x62\x8e\x23\x52\x5d\xbc\xa2\x07\x67\x9c\xe2\x96\x90\x87\x84\x48\x55\x3c\xd3\x86\x75\xbc\xe0\x7b\xf9\x7b\x93\x17\xdc\x44\x46\x8b\x76\x8b\x15\x8b\x0c\x11\x1d\x63\xa5\x72\x23\x56\x55\xc4\x0e\x16\x59\x7c\xa0\x59\xf4\x0c\x3d\x8a\xc5\xbd\x61\xa4\x87\xc1\x53\x13\x84\x6a\x70\x4a\x78\x11\xb8\xbc\x0c\xee\x61\xe3\x47\x62\xb6\xc1\xb7\xce\xa1\xc4\x6e\x60\x87\xe9\xa3\x6f\x89\x91\x8a\x25\x8b\x3f\xa7\x76\x20\xbe\x10\xc1\x84\xc3\xfc\x39\x73\x90\x24\xe9\x82\x78\xfd\x65\xb8\x2c\xad\x83\x69\x9f\x3a\xd8\xc6\xec\xcb\xec\x8b\x7b\x1b\xd7\x91\x4d\x3f\x6c\x3d\x02\xbf\x40\x28\x3b\x1c\x1f\x1e\x98\xe3\x08\xbe\xae\xbb\xf8\x94\xb8\xf5\xe9\x1b\xbb\xc6\x25\x35\xf9\x23"}, {{0x83,0x34,0x3e,0x37,0xad,0x09,0x1a,0x85,0xee,0xc3,0x70,0x70,0x1b,0x81,0xa5,0x8f,0x93,0x70,0xa4,0xb0,0x42,0x3a,0x07,0x0d,0x60,0xf9,0x2d,0x8d,0x18,0x09,0x84,0x4e,},{0x50,0xb6,0x8b,0xf7,0x26,0xea,0xbc,0xa5,0x3a,0xc6,0xc9,0x0d,0x4e,0xac,0x55,0x47,0x03,0x71,0x2d,0x22,0x10,0x55,0x54,0xf0,0x5b,0xf7,0x9f,0x9d,0x08,0xfc,0xc4,0x93,},{0x9c,0x69,0x89,0xcb,0xe1,0x7e,0x16,0xca,0xa2,0x53,0xff,0xb1,0xa6,0x4a,0x10,0x6f,0xb0,0x17,0x82,0xc9,0x9b,0x17,0x22,0xba,0xf1,0xac,0xaa,0x42,0xae,0x5b,0x36,0xb7,0x9b,0x2a,0x2c,0xd8,0xfc,0x91,0xf5,0xad,0x89,0x23,0x81,0x70,0x25,0xa7,0x78,0x25,0xa0,0x5d,0xf8,0xc4,0x17,0xec,0x53,0xc4,0xa3,0xaa,0x1c,0x0e,0xfd,0x5b,0xbe,0x0f,},"\xc7\xda\xdc\xac\x5d\x87\x95\xe1\x74\xb6\x91\x38\x91\x2e\x70\xff\x41\xe7\xa7\x25\xfa\xf3\x85\xb7\x73\xed\x15\x09\x89\x72\xb3\x0d\x9b\x73\x93\x72\xd9\x75\xb4\x80\xcc\xfd\xfc\x58\x0e\x2e\x2d\xdf\x5e\x3c\x27\xee\x79\x12\x79\xab\x95\xe4\x38\x2b\x14\x59\xdd\x8d\x41\xae\x36\x0d\x4a\x87\x88\x46\x69\x29\x24\xfe\xef\x39\x0c\x0d\xbb\xfa\x35\xe4\xb8\x2d\x7c\xbc\x33\xee\x15\x81\xc5\x2b\xd9\x49\x38\x5b\x2e\xe4\x02\x63\xa5\x7d\xa1\x17\x4b\xb4\xac\xad\x37\xcd\x8a\xe2\xa6\xb4\x5f\x7a\x6d\x6b\xbe\xf5\xa7\x98\xce\x85\xb9\xe0\x5e\x76\x47\xe3\x34\xec\xfc\x77\x63\x78\xde\x17\x4c\x49\x7c\x0f\x40\x75\xe6\x25\xaf\x7a\xed\x50\x2c\xd1\xcf\x7f\x58\x8d\x0d\x80\x7f\x02\xe3\x2f\x43\x00\xf2\x28\xa5\x0a\x66\x7b\x5a\xd1\xfb\xbc\x17\xe0\xb3\xc5\x70\x51\xdd\xc6\x02\xf5\x76\x07\x9f\x6f\xc5\x88\x9b\x7f\x29\x00\x71\x13\x34\x42\x0f\xc6\x66\xf6\x6d\xba\xff\x41\x26\x33\x6c\x35\x3f\x1e\x5b\x56\x4a\x66\x45\x37\xf8\x37\x86\xda\x5c\x56\x27\x74\x54\x06\xd7\xb2\xfe\x32\x33\xbf\xd5\x8e\xf4\x64\xa0\x6c\x95\xcf\xd0\xb9\x88\xa7\x6d\x05\x3a\x64\x4b\xcc\x15\x9c\xad\x53\xa7\xc5\xdb\xb4\x0e\xef\x5c\xd0\x47\x05\x6a\x3f\x09\x26\x5b\x13\x25\x69\x9c\x7d\x15\x9d\x5c\x90\x24\x40\x17\x33\x57\xff\xab\x8f\x7a\x5e\x38\x9f\x46\x8c\x33\x3b\x78\x2f\x80\x17\x0a\xe9\x09\x83\xaf\x15\x3f\x2e\x73\xbd\x2b\xef\x12\x5e\x3d\x38\x68\xc2\xab\x9e\xcf\x03\xaf\xf7\x6e\xcb\xeb\x18\x16\x7c\xa2\xf7\x11\xcd\x56\x58\x51\xd7\xf0\x4e\xe9\xd9\xb0\x1b\x6d\x83\xa7\x60\x57\x22\x62\x0d\x28\xc8\x4d\x6c\x1a\xf4\x2f\x6a\x76\x92\x58\xf5\x3c\x1f\x66\xda\x36\x66\x6d\xa5\xca\xa9\xbd\x9e\x8f\xbc\x16\x92\x11\xb1\xae\xd9\xc2\x55\x8f\x6a\xaf\x5b\x14\x5a\xbc\x72\x1a\xbb\x00\x72\x01\x94\xe0\x27\x03\x54\x68\xbd\xe3\xfe\x0b\x88\x88\x4f\x4e\x9b\x26\xe7\x71\xe6\xc7\xa0\xa5\x5e\xa3\x6f\xc5\x0d\xec\x8c\xef\x16\x2f\x9b\xba\x5b\x4b\x16\x10\x5a\xfd\x6e\x37\x4e\x03\x8d\x5c\x85\x87\xcf\xd7\xdd\x88\x29\x0b\x2c\x9c\xab\x45\xa2\x64\xd6\x54\x0e\xa1\x41\x6e\x6e\x4e\x74\xa1\x2f\x45\xa2\xef\x13\xcc\x8a\x36\xe7\xb0\xa2\x6b\x90\x2c\x3d\x96\xe2\xe2\x22\x92\x02\xe2\x57\x65\x69\x4b\x94\x33\x73\xd1\x6e\x60\x0b\xd7\x86\xd9\x55\xa4\xb3\xf1\x02\x16\x40\xc3\x9a\x0b\x6c\x69\x15\x00\x28\x1a\xe0\xd0\x98\xcc\x7f\x38\x5e\x18\xa0\x7e\x62\xfa\x4a\x10\x1e\xf5\xb7\x85\x51\xfa\x29\xbd\x15\xee\x03\x53\xa1\xa5\xef\x9b\x21\x6e\x8b\x0f\xa5\x07\x50\xa3\x41\x62\xb6\x35\xa0\xbc\x5e\x5d\x72\x30\xaa\x19\xaf\xa1\x28\xab\xa6\x42\x2d\x38\xeb\x77\xa3\xf0\xbb\x9d\xd8\xe4\x65\x2f\x12\x07\x0a\x37\x36\x1c\x37\x25\x50\x3c\x9d\x22\xe2\xfa\xce\x2e\xa7\x4a\x70\x02\x40\x62\x47\xdd\x86\x97\x5f\x07\x57\x5c\x9e\x7c\x6f\x41\xb5\x3b\x26\xd5\xcf\x52\xc5\xac\xc2\xc5\xd9\x82\x71\x43\x4e\x9f\xa5\x09\xc6\xdf\xbd\x72\x43\x72\xaa\x5c\x13\x45\x1a\xae\x39\x3d\xe0\xa1\x86\x46\x4f\x5d\x33\x7e\x9f\x62\x7b\x4f\x1c\x29\x09\x46\x70\x65\xe8\x9a\x42\x2e\xc4\x0e\xe1\xd8\x0a\x13\x39\x00\xa6\x2f\x4e\x4f\x7e\x94\xeb\x72\x61\x5e\x7e\xc2\x99\x6c\x6c\x24\x30\xc3\xe9\x57\xce\xae\x21\x05\xa1\xe9\x0e\xae\xac\x0d\x31\xaf\xfa\x9f\x57\x92\x6d\x71\xd9\x72\xa9\xa2\xde\x11\x25\x8c\xc1\xe7\x28\x59\x9c\x9f\xb3\x87\x24\x91\x84\x7e\x10\xc6\x7e\xfa\xef\x6b\x69\x6a\x03\x0f\xf0\x53\x3a\x58\x3b\xea\x1d\x04\xdf\x25\xf7\xee\xf3\xa1\x3b\x8e\x31\xaa\xd1\x33\x85\x7d\xf1\xb4\xe5\xff\xbd\xee\x37\xf4\x0f\x38\xd2\x24\xc7\x0a\xe0\x4e\xf3\x3b\x41\xb0\x2e\x71\x91\xa8\x66\x56\xb0\xd7\x2b\x2c\xbb\x53\xc4\x90\x8c\xa2\x06\xf7\x57\x34\xb2\x77\x08\x15\x4f\xcd\x8a\x97\x42\x9c\xfd\x1f\x2d\xa2\x42\x97\x78\x43\x80\x03\xf5\xb5\xb9\xc2\x1d\x9e\xd2\x3b\x8a\xd8\xa2\x28\xeb\x4f\x65\xc2\x4c\x1c\x59\x69\x9a\x5c\x90\xaf\xf7\x73\xe5\xc6\x76\xdb\x36\x2a\x19\x30\xba\x16\xab\xa7\x6e\xf8\xda\xa4\x2b\x3e\xb2\xcc\xc4\x5c\x93\x4d\x23\xd4\x92\x9a\x7a\xd9\xe3\xef\x46\x8b\x06\xa4\x99\x5c\x80\xdd\x23\x6a\x7b\xcf\x38\x79\xd8\xb7\x94\x67\xf7\x2b\x33\x84\xc1\x60\xcc\x18\x17\x14\xe9\x2f\x20\x35\xe7\xb9\x72\xa2\xcc\x52\x42\xd9\x32\x52\x5e\xae\x7c\x50\xbd\x26\x3b\x0f\xa0\x9c\xbd\x9d\x6f\x98\x4b\x9c\xf6\x15\x2d\x9a\x13\x3c\x27\x84\x32\x02\xd1\xe8\x7f\xa5\xa6\xe1\x23\x5d\x9c\x75\x6b\xb8\xe6\x8b\x05\xb9\x8d\xa5\x41\x95\x22\x3f\xdf\x02\x10\x25\x32\x50\x63\x3c\x11\xc5\xf6\x0b\x5e\x67\xd7\xee\xfc\xaa\x6c\x2d\xaa\x52\x31\x37"}, {{0xda,0x01,0x32,0x21,0xb2,0xf5,0x88,0xaf,0x40,0xe2,0x11,0xa0,0xf9,0x75,0xd4,0x4f,0x9d,0x65,0x02,0x81,0x60,0x51,0x4c,0x39,0x61,0x89,0xf2,0x7c,0x7b,0x06,0x66,0xea,},{0x07,0x11,0x7c,0x6b,0x0d,0xb5,0xb6,0xfd,0xa1,0xed,0xc4,0x39,0x6c,0x47,0xc2,0x2b,0x54,0xee,0x0c,0xe5,0x37,0x5c,0x3e,0xc6,0x33,0xc8,0x3a,0xfc,0x53,0xad,0x6c,0xe4,},{0x10,0xcb,0x52,0xd6,0x10,0xe4,0xa8,0x1d,0x32,0x86,0x9b,0xff,0xce,0x38,0x07,0xe6,0x39,0x1f,0x78,0x2f,0xcd,0x53,0x8b,0x55,0x4d,0x09,0x03,0x7f,0xda,0x72,0x28,0x5b,0x96,0x62,0xb1,0xb1,0x10,0x7c,0x40,0x81,0x78,0xac,0x00,0x9f,0x05,0x25,0x96,0x73,0x88,0xa7,0xd8,0x5f,0xa1,0x23,0x59,0xd3,0xce,0x38,0x75,0x03,0x7d,0xcf,0x6a,0x04,},"\xbc\x93\xee\x1e\xc4\x72\x8a\xc6\x36\xa6\x24\x8f\xcc\x45\x51\xc9\xd1\x59\x80\xdb\x8e\x5f\x54\xb0\xef\x07\x5a\x71\x97\x0e\x17\x6a\x3c\xb9\x18\x2e\x32\xda\x7a\x8c\x2a\xc0\xcd\x7e\x59\x57\x74\x57\x5f\x9c\x83\x50\x6a\x60\x6f\xac\xe8\x95\x12\x13\x5d\x03\x2a\xb0\x5e\x39\xff\xf9\xc8\xca\x6c\x25\xcd\x5d\x78\xec\xc3\xac\x32\x32\x90\xc9\xc8\x16\x26\x73\x5e\x19\x0e\xb5\xae\x34\x5c\xa7\xa9\x58\x40\x9f\x77\x43\xb0\xb1\x61\x49\x16\x83\x22\x17\xc5\x7e\xee\x1b\x4f\x8e\x62\x2a\xc0\x52\xa9\x3d\xd5\xb3\x9d\x07\x61\xe4\x0e\x9f\xbd\x83\x96\xf6\x0a\x3b\xf6\x66\x0c\x5f\xa9\x9c\xd8\x13\x9f\x68\xcb\xe0\x89\x4e\x5c\x67\xe1\x68\xcc\x74\xb2\x72\x4e\x9d\x91\xd6\x00\x0a\x0c\xec\x58\x7a\x11\x46\x3f\x72\xee\x6e\xd2\x55\xbd\x87\xeb\x30\xfd\x45\x75\x96\xf6\x88\xca\x0e\xa7\x3f\x30\x49\x72\x38\xde\x21\xc9\x3f\xbb\x12\x94\xdb\x61\xe4\xa5\x60\x89\x10\x6d\x1c\xf7\xce\x5a\x65\xec\x3d\x12\x17\x0c\xe7\x84\x0f\x08\x8a\x8d\x0e\x3a\xef\x17\xe5\x31\xde\x47\x80\x03\x57\x02\x58\xe9\x27\xf1\x56\xe7\x96\x10\x65\xaf\xa6\x66\xaf\x38\x58\x2b\x35\x3c\xc4\x77\xba\x77\x5c\xae\x45\x94\x6d\x08\xdb\x75\x21\x59\x14\xda\x32\x61\xb6\x22\x94\xe9\x2a\xfb\x38\x14\x59\xc2\x1d\xda\x4e\xa6\xed\x79\x5f\x79\x25\x7c\x09\x4d\xd6\x08\xdc\x8e\x1b\x7c\x40\xcd\x29\xfe\xa2\x22\x08\x8f\x65\x69\x7e\xa8\x88\x95\xd1\x0a\xce\xa8\x79\x73\x60\xdc\xba\xce\xe2\x69\xc6\x06\x60\x0a\xdf\xfd\xcf\x9c\x7c\x38\x1d\x0a\xd6\x69\x69\x67\xd9\xff\x03\xe6\x1a\x24\x90\x65\x02\xb2\x95\xe7\x6f\x4d\x08\x75\x65\x5b\x01\xe6\xff\xca\xcc\x8e\xf0\x11\x29\xc7\x2a\x58\x46\xb6\x0e\xc8\x00\x17\x37\x4e\x75\xd3\x06\x40\x3d\x9e\xcc\xf2\x64\x95\xd2\x98\x12\x0a\x06\x33\x83\x5c\x5d\x1e\xff\x17\xc9\xc6\x24\x76\xf7\x52\xc8\x97\x10\xad\xfa\x4d\x51\x61\x7b\x59\x18\x17\x3c\xba\x72\x25\x40\xe3\x88\xff\xbf\xfb\x96\x68\x74\xdb\x00\x40\x4d\x06\xb0\xce\x11\x39\xba\x74\x14\x3c\x76\xb8\xf4\xd3\x3b\x21\x16\xe1\xcc\xe1\x75\x17\x3a\x96\xfc\x15\x1e\xa2\x39\xbf\xc2\x0d\x66\xfb\xb6\xf5\x2a\x66\x6c\x0e\x81\xcc\x2b\x80\x20\x91\x06\xe2\x48\x0e\x41\x11\xc7\x0e\x7b\xe4\xaa\xbb\x68\x42\x2f\x0b\x8c\x6b\xa1\x5c\x14\x2f\x82\xe6\xc7\xf3\x78\xd7\x80\x0a\x09\xea\xa4\xda\x25\x3c\x2f\xd9\x1e\x12\x63\xc6\xb6\x55\xbf\x70\x25\x5d\x7e\x3b\xb4\x77\x55\x23\xa0\xa9\xe7\xff\x03\x79\x7e\xe3\xff\xca\x8a\x50\xd1\x0f\x20\xd5\xe5\xa8\x89\xec\x5e\x33\x4e\xf2\x6c\xf7\x99\x8b\x08\x36\xf6\x56\x45\x68\x88\xe1\x37\xf3\x9d\x3e\x43\xe2\xce\x3c\x6e\xf5\x40\xd9\x5d\x9a\x20\xc4\x2c\xb8\xae\x2d\x9d\x0f\x25\xa8\x91\xc3\x63\xea\xd9\xcc\x42\x3f\x9a\x32\x3f\xe2\x32\x28\x1f\xb6\x7f\x5b\xe1\xc0\x78\x43\x61\x46\x04\x68\xa8\x7e\x95\xdf\xa3\x5d\x7f\x0f\xfa\x22\x11\xbe\x6b\x5f\xb3\x2d\x42\xba\x65\x18\xab\x6e\xa9\x37\x80\xf4\x31\xd3\x00\x67\x31\xbe\x44\x40\xe7\x12\x97\x4f\x74\xba\xea\x41\x9f\x40\x22\xfa\x25\x02\xe1\xb2\x39\x8e\x93\x86\x16\x7d\x93\xec\xa9\x2c\xa6\x0d\xd7\xd9\x1f\xe8\x23\x24\xf6\x82\xd9\x4a\xa7\xa8\x6a\xb0\x34\xf8\xa9\xe9\x52\xe8\xfc\x95\xbf\xf4\xdf\xed\x6a\x43\x31\x3a\xbb\x92\x40\x1b\x30\xc3\x3c\x79\xa7\xba\x3e\xfd\xbe\x16\x28\x04\x0f\xba\xf4\x43\xf3\xf9\x80\x84\x6f\xdb\x28\x3d\xcc\xd9\x3f\xab\x09\x70\x8b\x7d\x54\x86\x1d\x74\xb1\xfe\x8f\x10\x70\x1f\x21\x1b\xa3\xd3\x90\xe8\xa6\xae\x40\x77\x39\x64\x6a\x79\xa5\x83\x37\xa7\x17\xa8\x72\x00\x9c\x2d\xf6\x76\x1c\x24\x25\xa3\x2a\x00\x18\xaa\xf9\x64\x64\x70\xcb\xc8\x7c\x3a\x65\xc0\xe0\xef\xfb\xaa\x52\x8f\xe4\x78\x3c\x77\x2a\xb2\x66\xb8\xf2\x82\x68\xcf\x14\xaf\x23\x4b\x15\x81\x6d\x1a\x3a\x49\x1a\xf5\xf2\x97\xe3\x3d\x57\x29\x71\x5d\x51\x2c\x37\x3f\xef\x5e\xcc\x3f\x39\x54\xa6\x0a\x2a\x0f\x64\xd8\x29\x47\x41\x19\xca\x1a\x18\xf1\x05\x78\xd0\x4d\x63\x8d\x5e\xea\xfc\x37\x1a\x94\x6f\x6c\xe7\xef\xbd\x2a\xcc\xe3\x4e\x20\x44\x1c\xde\x9a\x37\xd5\xa8\x7d\xc6\x19\xb0\xa7\x27\x59\x6c\xd1\x2e\x15\xcd\x97\x84\xbb\x91\xf1\x39\x9a\x59\xfc\x0a\x7a\x4a\xf6\x8b\x0d\x57\x5d\x93\x38\x71\x72\x97\x33\x75\xc4\x65\xdf\x5d\x2d\x5e\x06\x1a\x2a\x9b\x23\xb4\x91\x5a\x0a\x8b\x8c\x1f\x09\x42\x09\x4a\xf7\x28\xc8\xc3\x11\x45\xfa\x7a\xaf\x74\xa2\x1a\x3b\x03\x2b\xb0\x9c\x39\x22\x05\xbf\x09\x5b\xda\x98\x6e\x5d\xd6\x62\x7c\x1e\x41\x7f\x65\x03\x26\xdf\xe3\xa9\xc9\x99\x4c\x6e\x0e\x01\x27\x6f\x91\xf2\x98\x7d\x2b\x85\xde\xda\x96\x54\x91"}, {{0x5a,0x86,0x8f,0xb7,0x5e,0xa0,0x72,0x1f,0x7e,0x86,0xc7,0xbc,0x10,0x6d,0x74,0x13,0xc8,0xcf,0x4d,0x03,0x3c,0xe1,0x40,0x05,0xdf,0x23,0xce,0x4c,0x15,0x5b,0xbd,0x27,},{0x6d,0x1e,0x29,0xf3,0x9d,0xed,0xa2,0xbb,0xfb,0xb5,0x7c,0xb0,0x1c,0xb3,0x9e,0x58,0x80,0x82,0x78,0xe5,0x19,0x6a,0xda,0x1c,0x02,0x76,0x46,0xf2,0x04,0x87,0xd2,0x52,},{0x38,0xc4,0x8d,0xba,0x99,0xa6,0x52,0x4a,0x18,0x8d,0x5c,0xd7,0x8a,0x98,0xe6,0x77,0xdd,0x26,0x3e,0xf6,0xb4,0xdf,0x44,0x6b,0x31,0x0b,0x3d,0xd8,0x9c,0xaf,0xdd,0xb9,0xb1,0x7a,0x65,0xbb,0xa8,0xe1,0x39,0x68,0xbd,0xc2,0x5b,0x1d,0x84,0xb6,0xe2,0x43,0x6e,0xdf,0x31,0xaa,0x75,0x6e,0x3a,0x48,0x72,0x6d,0x6f,0x91,0xc8,0x08,0xee,0x0e,},"\xd5\xaa\x11\x82\x5b\x99\x44\x8c\x80\x63\x06\x23\xd8\xc7\x46\x01\x7c\xfe\x3d\xe6\xfa\x8a\x0c\x6e\xd6\x62\x71\x27\xcf\xc1\xf8\x4d\x4e\x0a\x54\xe6\xa7\xd9\x08\xd3\x71\x9f\x14\x21\xd1\xd4\xc7\x8b\x3c\xdd\x94\x76\x9a\xb6\x03\x3b\xce\x97\x9d\xd9\x0e\x10\x68\x02\xeb\xa9\xa0\x32\x95\xd4\x8f\x9b\x9a\x95\xd5\x7e\xe7\x74\x54\x02\xa4\x80\x23\xbf\x3b\xdd\xd5\xc6\xb9\x1c\x77\x3e\x49\x19\x13\xa3\x8a\xc3\x46\x26\x05\xcf\x28\x2d\xea\xc7\x57\x42\xfb\xd2\x75\x29\x27\x6e\x81\xdc\xce\x8d\xff\x96\x05\x03\x5e\x8c\xf0\x5d\xf6\xa4\x3d\xb1\x51\xf0\x41\x57\x65\xbc\xbd\x1f\x1b\xb6\x68\xad\x62\x73\xb8\x91\xc0\xdc\x4f\x3d\xba\x59\x0e\xa8\x2f\x83\x63\x76\x9b\x9c\x77\x51\x19\x47\x11\x73\x75\xdc\x49\x04\xd4\x8b\x88\xb6\x8a\x25\x5b\x28\x01\x1b\x11\x04\x81\x94\x09\x3e\x98\x20\x7a\xb1\xcf\x75\x6a\xb8\x33\x1f\x8d\x6f\x9d\x5b\xe2\xe1\x19\x05\x73\xe9\x5e\x71\x0f\x2a\x35\x01\xb5\x3a\xa0\x82\x5d\x6c\x12\xdc\xfb\x94\xac\x80\xdc\x10\x82\xcb\x4a\xd2\x62\xe6\xd4\x93\xad\xce\xb6\xbc\x19\x14\x5f\xbf\x73\x8d\xf7\x6f\x21\x34\xfa\x04\xcb\xbe\x44\xff\xc5\x5f\xfe\x5f\x9d\x3e\x9b\xeb\xd1\x59\xa0\x01\xaa\x9b\xf7\x88\x92\xa1\x65\x38\xa5\x20\x82\x3c\xde\x5d\x61\xe2\x9a\x56\xa7\x7a\xb9\x6e\x49\xe3\x00\xd9\x86\x59\x62\xc7\xe7\xfb\x8b\xcf\x5d\xe0\xb9\x38\x29\x7c\x3f\x4d\x6f\x60\x21\xe2\x4d\xfd\xad\x98\x61\x65\x2f\x34\x0f\x42\x1e\x7a\xf2\xc7\x1e\xd9\xa7\x15\x87\xfc\x75\x3b\x11\x55\x49\xb2\xf7\xf7\xcb\x29\x69\x0e\xa2\xb1\x58\xa9\x4c\xd2\xbc\x42\xe7\x06\x3d\x61\x9b\x93\x9d\x52\x3e\x3c\x23\x7e\xb1\xf4\x08\x10\xde\x0b\x44\xaa\x69\x37\x86\x3d\x62\x9e\xdd\x55\x75\xe6\xc0\x47\x52\x61\xb6\x27\x47\x30\x92\x77\x5c\x84\x36\x00\x11\xd5\x7c\x57\x20\x9c\x2e\x87\x5a\x3f\x89\x63\xe8\xb2\x41\xa7\xaa\x75\xef\x30\xc4\xa7\x18\xac\x4d\xd4\x66\xdc\x7a\x3e\x40\xe5\x87\x4f\x15\x7a\x84\x9e\xd3\xa3\xa9\xd4\xae\xb7\xd9\x4d\xf0\x9b\xb5\x5a\x0b\x2b\xc9\xf8\xb6\x95\xc3\x71\x79\x30\x23\x67\x60\x63\x67\xc5\xf3\x24\x82\x8c\xe7\x5a\x94\x4f\x50\x70\x3a\x47\x90\x6a\x80\x88\xf3\xa1\x1c\xfe\x4a\x85\x4e\x01\xf1\x74\x12\x52\xc4\x86\x33\x7d\x06\xb1\xcc\x6c\x6b\x9b\x12\x95\x43\x1e\xe0\x73\x59\x35\x7b\x3a\x78\xef\x50\x75\xb6\x5d\x7f\xed\x5e\xb7\x42\xe5\x10\x15\x98\x44\x4b\x46\x62\x3f\x89\xa3\x03\xac\xc1\x0c\x73\x24\x49\x51\x3b\x70\xdc\x45\x6a\x79\xd3\x7c\x48\xe5\xe7\x26\xc2\xf5\x58\xda\x0a\x1c\x46\xef\xbd\x2d\x92\x03\x26\xa6\x78\xb8\xa2\x2f\x09\x44\xbe\x4a\xf5\x5b\x6c\x71\xf4\x53\xfb\xae\x40\x0e\x6a\xcc\x04\xe0\xe9\x5c\xa2\x00\x16\x7e\x96\xee\x98\xea\x83\x93\x16\xda\x93\xa1\x2c\x2d\x76\xf1\x1a\xee\xbe\xb7\x8e\x65\xea\x48\xf7\xfe\xeb\xbb\x13\x7b\x2a\xc6\x7e\xae\xf0\x2a\x2d\x9e\x64\x71\xdd\x63\x4a\x03\x7d\x4f\x5d\x35\xa2\xf7\x8a\xf4\x1a\x8e\xa5\xaf\x5b\xc8\x15\x0a\x99\xed\x68\xa6\xa0\xcc\xff\x2b\x1d\x79\x65\xd8\xbc\x3e\xf9\x28\x5b\xa6\x42\x1d\x87\xc3\x3a\xad\x81\x03\xa5\x87\xbe\x01\x92\x68\x45\xbf\xbd\xdb\xaf\xc6\x9c\x4b\x92\x52\x88\x67\x20\xd4\x18\x50\x9f\x40\xf3\xdc\xf5\x57\x65\xdc\xcc\x3d\xee\xd8\x27\x72\x15\xe6\x9f\x05\x6b\xa3\x1b\x8a\x30\xb5\x00\x94\xea\x8f\x14\x47\x20\x76\x0c\x8f\x8c\x05\x5c\xf1\xa8\x69\x64\xff\xcb\xb8\xee\x1b\xb2\x18\x12\x76\xea\x99\xa7\xb8\xe7\x10\x67\xfa\x31\x0b\xa4\x47\x1e\x84\x27\x90\x37\xbc\x49\x2a\x55\xde\x20\x55\x48\xe7\x7b\x01\x45\x04\xee\x66\x64\xc4\x98\x8c\xbb\x9e\xd9\x1f\xf3\x2e\x22\x59\xed\x4c\xfd\x61\xa1\x97\xd0\xdb\xc3\x2c\x68\xf6\x54\x9c\x0d\x29\xfc\x45\xf3\x6a\xcb\x26\xb1\x64\xde\x97\xcc\xdc\x37\x90\x0d\x93\xcd\xbc\xf9\x68\x7e\xf5\x3f\x1f\x4d\xa1\xb1\xae\x42\x25\xb8\x84\x20\x9e\x81\xba\x43\x11\x52\x04\x77\xed\x42\x11\xb0\x92\x40\xbd\x7b\x82\x5e\x54\x73\x9f\xe2\x5d\x86\x24\xaf\x04\xb8\x6f\x6d\x11\x06\xd1\x81\x70\xe5\x06\x4d\x1a\x73\xc1\xfb\x1a\x27\xb2\x89\xa9\x48\xd7\x71\xa2\xf6\xb8\xb0\x9a\x63\x5d\xb9\x6c\x62\x51\xc3\x5a\x18\x76\xd3\x69\x62\x66\x99\x41\x6c\x0e\x40\x29\x8a\x68\x1f\xda\xf5\x25\x5f\x58\xc2\x55\x77\x59\xd8\xf5\xdf\x14\x8d\xec\x9d\xbe\x1c\xe6\xdf\x04\x1c\x36\xf8\x3e\x69\xcc\xfb\x4a\xac\xa5\xcb\x48\xfa\x6a\x85\xc8\xff\x66\x06\x15\x24\xd8\xb1\x1b\xd7\xff\xae\xd9\x9d\x0c\xd4\x5c\x42\x01\x0f\x21\xd3\x6c\xc3\x16\xca\x86\x09\x55\x63\x5b\xff\xaa\x7d\x9a\xac\x57\x2d\xcc\xf3\x15\x3d\x42\xee\x8a\x2b\x12\xba\xa5\x7c\x16\x0b\xd0\xad"}, {{0xc5,0x4b,0xd3,0x43,0x1f,0x26,0x59,0x28,0x1d,0x31,0xe9,0x3b,0x30,0x78,0x76,0x68,0xbc,0xba,0x6e,0x5e,0xe4,0x7d,0xb4,0x6e,0x50,0xde,0xab,0xe3,0xf4,0x8c,0x9e,0xd8,},{0x1e,0xba,0x6e,0xb3,0xf7,0xf2,0x4c,0xdf,0x80,0xab,0xf8,0xa1,0x9d,0x30,0x8c,0x24,0xf1,0xe2,0x5b,0xa1,0x59,0x70,0xed,0xa7,0x11,0x67,0x07,0xb0,0xf1,0x2c,0xf9,0x32,},{0xdf,0x45,0x41,0xdf,0xf1,0xa9,0x79,0x7f,0xeb,0x61,0x7f,0x98,0xe4,0xb5,0x7a,0xa7,0x71,0x41,0x31,0xee,0x8f,0xf5,0x45,0xed,0x50,0x82,0xe3,0x56,0x8e,0xfd,0x1c,0x39,0x9c,0xdc,0x56,0xf5,0x58,0x29,0x91,0xeb,0x87,0x85,0xfb,0x33,0x86,0x4e,0xef,0x7f,0x55,0x3f,0x3e,0x24,0x82,0x62,0xed,0x54,0x8a,0x1a,0x68,0x88,0xf9,0x2e,0x92,0x0e,},"\x6f\x8c\xdd\x75\xe1\xb8\x56\xbb\xbe\x9c\xdc\x25\x53\x7f\xdf\x7e\x82\x36\xcb\x02\x9a\xcd\x39\x84\x49\x21\x10\xd0\xc3\x04\x41\xd4\x21\x84\xb5\xfb\x18\x3d\xa9\xf3\x14\x03\x78\xdf\xa7\xd7\x4c\xcc\x9e\xf5\x00\x19\x3c\xc9\x57\x9f\xff\xa6\x0b\xd2\xa8\xab\x9e\x09\x58\x15\x00\xcf\x06\xcd\x35\xab\xc1\x71\xd9\xd1\x2c\x65\x80\xd9\x68\x2f\x9f\x49\xfe\x36\xd0\xa3\x17\x72\x38\xfa\x50\xe7\xeb\x4c\x27\xe4\x60\xf5\xe4\x58\x0a\x56\x56\x8a\x19\xe0\x3d\x95\xb0\xff\x4f\x4a\x23\x18\x24\xcd\x2f\x34\x42\xe0\xba\x40\x0b\xc1\x1b\x7a\x98\x9d\x50\x1f\x5d\xf3\x5e\x43\x01\x50\x8f\x72\xa8\x52\x01\x4b\xfb\xf4\x00\x1e\x28\x09\x54\x73\xd9\x65\x9e\xed\x60\x67\xba\xf6\x8f\x92\xbe\xf3\x12\xc0\x9b\x19\xaa\xf7\xc4\xfb\xa3\xd9\x02\xb9\xf6\xcf\x95\x2e\xb9\xb9\xa5\x3c\xa8\xbc\xbd\x04\x2d\x84\x2e\x98\x53\xb6\x72\xa1\xd0\x09\xd8\x23\x83\x8b\xeb\xe5\x63\x7c\x4c\x07\xed\x1b\x19\x48\x55\x4b\x23\xb3\x2d\xe1\xd6\xc1\x16\xf9\x33\xb3\x54\xf2\x8b\xbb\x77\x9f\xa6\x54\x8c\x48\x29\x2b\x61\x2c\x7f\x55\x1a\x75\xfb\xc4\x6c\x02\x73\x6b\xf9\x9e\x9c\x8e\xad\x56\xf0\x5a\xb0\x42\x7a\x6e\xc6\x16\xe3\xdc\xc7\x75\x7e\xfd\xb7\x62\x8d\x4e\x96\x32\x5f\xe0\xae\x25\x4c\xef\x5c\xb7\xa7\x04\xb3\x5a\x92\x0c\xb3\xfa\x2a\x03\xe9\x61\xda\xf3\x71\x82\x1b\xe0\xb3\x0f\x19\xae\x49\x52\x44\x1e\x08\xa7\xd2\x2f\x54\x31\x39\x0a\x5b\xe8\x09\x7f\xd5\x79\x7a\x1a\x62\x97\x66\x4d\xa4\x2c\x20\x08\xd0\x32\x10\x60\xeb\xe3\x18\x1e\xb7\x95\xa7\x28\x92\x58\x08\xda\x78\x67\x29\x3b\x72\x08\xf3\x77\xd3\xa7\x71\x18\x5e\x6d\x2c\x1c\x8c\xe1\x83\x76\xfe\x3c\x0c\x14\x58\xc7\xf5\xbe\x34\xf4\x28\xa0\xd5\x75\x93\x10\x74\xc9\x7c\xbf\xce\x8a\xd8\x13\x13\xec\xca\x73\xa9\xf3\xdb\x43\x4f\xba\xd4\xbb\xbf\xf5\x02\xbf\x72\x97\xe1\x7a\x97\xa8\x86\x42\x11\xe6\x78\x9b\xa1\x92\x03\x6e\xa5\x9a\x34\xd8\x4f\xf2\xa1\x11\x07\x4c\x3f\x23\x73\xb1\x01\x11\xb5\xda\xa7\x89\x56\x0c\xb3\x54\x90\x95\x4c\x88\xea\x00\xc4\x10\xdf\x85\x0a\xd0\x0c\xae\x2f\x28\xe7\x19\xfb\x06\x71\x69\x88\xa9\xbb\x0b\xfc\x6c\x98\x9d\x58\x7e\x56\x85\xae\x88\x3c\x2c\x2e\x74\xdd\xbf\x91\x5c\x98\x56\xaa\xe8\xf3\x28\x8f\xc6\x25\xbf\xb2\xfe\x26\x8d\x74\xf5\x9f\x8b\x7d\x83\x63\x74\x97\x69\x16\x90\x07\xd5\xe6\x7b\x7d\x0b\x8c\x8f\x5a\x9d\x9f\x9c\x7b\x74\x5c\x0a\x42\x94\x76\x2c\xbe\xca\x42\xd5\x38\x49\x61\xe9\x21\xa7\xef\xb6\x5d\xa8\xd1\xe0\x3b\x67\x45\xcd\xf3\x08\x09\x7f\xb1\x3d\x64\xfd\x2f\x8c\x10\xfa\x95\x09\xeb\x2d\x91\x38\x7f\x00\x64\x5c\xa7\xd0\x48\x3b\x2c\xd1\x4c\x20\x6b\x8d\x7a\xe0\xa3\xfb\x7c\x09\xbc\x68\x43\xd1\x02\xad\xcd\xa1\x9f\x8b\xbd\x85\x1e\xb6\x83\xc4\x43\x5c\xeb\x4b\x3d\x23\xd3\x8f\x56\xd4\xd1\x11\x4e\xef\x0f\xc6\xf2\x4d\xf5\x27\x70\xd8\xf1\xf3\xf8\x2f\x47\x20\xe8\x92\xb3\x15\x24\x4e\xf5\x6c\x36\xb2\x3f\xcd\x40\x79\x78\x52\x41\x40\x38\x2e\x11\x74\x0f\xd4\x6f\xe4\x29\x99\x23\xf5\x2b\x88\xb4\xa9\xcf\xf4\xb2\xb4\xb2\x3a\x2e\x76\x0a\xd8\x1c\x78\xba\x87\x69\x31\xd9\xaa\xa4\xbe\xed\x40\xfb\x10\xa7\x99\xeb\x30\xd3\x7f\x75\x47\x78\xba\xc8\x5b\xf0\x63\x1d\x85\x2b\xe7\xd7\x4a\x64\x31\xf3\x84\xa4\x02\x5c\x10\x91\x42\x1d\x67\xa4\xe9\xc9\x4c\x1b\xe3\x69\x0c\x6b\xf8\x1d\x06\xbd\xaf\x32\xfe\xab\xba\xf1\xdc\x26\x3f\x27\x3a\x0b\x9e\xd6\x54\x60\xba\xef\xce\xfc\xf6\xac\xcc\xda\x0e\xdd\x23\xdf\x9e\x05\x12\x8e\x29\xd6\x61\xc4\xb4\x4b\xd9\x2d\x64\x0f\xaa\x85\x3a\xfd\x83\x70\xe5\x63\xb4\x0a\xe0\x14\x9a\x14\x28\xe0\x6e\x3d\xd8\xe6\x6b\x79\xda\x21\xcc\x75\x3d\xdc\x47\x6e\x3d\x76\xe2\xf3\x6f\x2b\x6c\x6b\xc1\xb6\x50\x87\xd5\xf8\x6c\x8a\xc3\x54\x71\x1a\x8c\x08\xf3\x48\x6e\x47\x9d\x6a\xe9\x43\xf8\x84\x63\x32\xd4\xe5\xb4\xbb\x2e\x82\x57\xe3\x08\x3d\xf4\xf8\x1d\xd4\xf0\xc1\xee\x1d\x97\x18\x21\x66\x16\x1a\x18\x59\x7e\xe0\xb9\x59\xde\x1c\x45\x59\x1a\xbf\x7c\x51\x03\x3d\x7c\x66\x35\x2d\xee\xb6\x82\xe7\x77\xae\xae\x2f\xa8\xd3\xa7\x7f\x47\x0d\xb7\x8d\xdc\x1b\x1f\xc8\x28\x40\xc4\x06\x57\x76\xd9\xbf\xca\x9d\x39\x2d\x92\x88\xee\x91\x32\xaa\x3e\x4f\x2d\x19\xd0\xd9\x3e\x01\xb6\x66\xf3\x64\x7a\xba\xf2\x25\xc2\x92\x41\x9c\x8a\x82\xeb\xa3\xe1\x1a\xb1\x03\x84\x6f\xcd\x49\x35\xf4\x12\x41\x47\x7c\x0f\x15\x2b\x79\x65\xad\x54\xbb\x72\xbc\x3d\xe2\xe0\xb7\x9d\x62\x25\xe8\xfa\x7a\x62\x86\xb5\xfc\xcb\xb3\x58\x22\xe8\x0c\x8b\xfe\xa7\x4c\xb4\x8a\x22\xd2\x41\x38\x53\x95\xc2"}, {{0xea,0x60,0xda,0x01,0x79,0xbc,0xaf,0x6b,0x21,0x81,0x42,0xb1,0x11,0x90,0x46,0xff,0xe6,0xd8,0x5a,0x74,0x1b,0x0d,0x16,0x62,0x30,0xbc,0x6d,0xe3,0x30,0x4f,0x67,0x73,},{0x50,0x6b,0x2e,0xbb,0x49,0xbd,0x9b,0x9f,0xf6,0x6e,0x6b,0x7b,0x1f,0xab,0x96,0x68,0xcb,0x18,0x1b,0x4f,0xb5,0xe4,0x34,0x3d,0xdd,0xd3,0xf8,0xa9,0xd7,0x02,0x03,0x1c,},{0x27,0xfb,0x6b,0x5f,0x06,0x52,0x8a,0x64,0x19,0x8a,0x3e,0x7d,0x67,0xc7,0x38,0x84,0x0a,0x8c,0xff,0x4b,0x48,0x2b,0x4d,0x52,0x4b,0x12,0x2d,0x17,0xd2,0xae,0xbc,0xc0,0x38,0x9b,0xe2,0xc6,0xe2,0x8e,0x2c,0xdf,0xc4,0x84,0xc1,0x8d,0xe4,0x25,0xdb,0x56,0xcd,0xfa,0x56,0x1c,0x50,0x7c,0xd9,0x70,0x60,0x2d,0x3a,0x38,0x5d,0x3a,0xea,0x0f,},"\x61\x2d\x6e\xf6\xe4\x34\x9f\xfa\xe5\x16\xe9\x83\xe8\xfa\x7b\x52\xd9\xfd\x13\x42\x82\x24\x0d\x95\x14\x38\x24\xbd\x4a\xae\x03\x23\x4b\x76\xa8\xcd\x6d\x40\x68\xcf\x00\x9e\x48\x1c\x26\x85\x36\x1c\x75\x50\x42\xc4\xe6\xab\x87\x03\xec\xbf\x8f\x02\x0c\xf5\x73\x9a\x4c\x2a\x03\xc3\x73\x1e\x9c\xf7\x5a\xee\x25\x96\x61\x53\xb9\x71\x15\x15\xc6\xc3\x9a\xfa\x95\xf2\x21\xac\x33\x95\xb0\x89\xc9\x7a\xc9\xb5\x14\xe1\x7d\x55\xf7\x96\xa3\xec\xc1\x35\xfa\xaa\xee\x90\x7a\xab\x10\x29\x64\x7b\x48\xac\x81\x74\x9b\xab\x26\x62\x7c\xf7\x09\x5d\x74\xc2\xfc\xee\x35\x67\x1c\x8b\xb4\x60\x53\xf5\x15\x1b\x0c\x2e\x5d\xab\xe0\xf2\xd6\xaa\x20\x41\x33\x05\x02\x0b\x2a\xfd\x9e\xe3\x38\x7b\x2c\x9e\xd0\xbc\x3f\xe2\x90\x2a\xf4\x10\x0c\xec\x23\x32\x7b\x0f\x1e\x4c\xa3\x9e\xf6\xea\xf6\xfd\xf5\xd5\xac\xf9\x3f\xc8\x68\x53\x6d\x8c\xba\x40\x17\x69\x32\x9f\xbe\x93\xef\xfc\x7e\xe6\xbf\x93\xa6\xe5\x88\xbd\x55\x1e\xaa\x51\x28\x53\x95\x2c\x81\xb2\x45\xe5\xd2\x29\xd2\x94\xe4\x13\x70\xb8\x67\x80\x86\x67\x88\x7a\x6f\x9e\xba\x2a\x8d\x56\xa7\xa7\x04\xe6\x6b\x1c\x02\xf9\x6e\x73\x89\x5f\x48\x3e\x44\xa5\xc5\x66\xcb\x1a\xf2\x65\x73\xbf\xe2\xaf\xce\x06\xb1\xfb\x58\x77\xe5\x1e\xf3\x12\x6a\x3f\x21\x0f\xbf\x21\x3e\xd6\x5d\x5c\xa4\x6c\x46\xce\x4a\xa9\x45\xbd\x8c\xa6\x11\xe3\x83\x62\x50\xf5\x64\xf7\xea\x35\x42\x39\x82\xf9\x70\x5f\xcd\x6b\xef\x46\xae\x16\xcb\x0f\x6b\xc9\x12\xc3\xf2\x86\x42\xb8\xd8\x77\x75\xb8\x18\xe4\xe4\xe8\x06\x11\x67\x89\x9b\xd2\x7a\x7e\x2f\xb8\x18\x7e\xe9\x91\x7d\x2d\x58\x6b\xf9\xd4\x99\xe8\xfa\xbc\xa8\x3d\xdf\x58\xc7\x43\x7e\xaa\xce\xc4\xf4\x44\xfb\x2b\xf7\x45\xdc\xcd\x8c\xae\x38\x94\x45\x71\xde\xde\x20\x37\xdc\x41\xf0\x81\x8a\x3d\x91\xe3\x02\x0a\x72\x74\xc6\x67\x42\x47\x87\x60\x83\xd0\xe3\x97\x46\xc9\x68\x40\x61\xbf\x74\xad\x58\x84\x36\xce\x1b\x76\x3d\xbf\x4b\xfc\xf8\xde\x6e\x35\xc5\xa7\x62\x66\x75\xc1\x27\x29\x2b\x21\xdf\x3c\x16\xf8\x10\x63\x32\x2a\x75\xf3\x43\x88\x86\xf1\xf0\xce\xbf\xc1\xa9\x6f\x41\x38\x4c\xbd\xd8\x61\xb0\x4f\x51\x9f\xf6\xa9\x34\x4d\x94\xf3\xd3\xa0\xab\xa8\x40\x9d\xfc\xf1\x8d\x01\xf2\xb5\xb4\x55\x17\x16\x39\xee\xa7\x7d\xee\x70\x6e\xa8\x3d\xcd\x2b\x8b\x1f\xc5\xec\x0d\x74\x07\x61\xa5\xf0\x5f\x7e\xc8\xd8\x7a\xd1\xf2\x92\xa5\x0c\x8b\xae\x0a\xd3\x2b\x03\x41\x9a\x95\x0d\x9f\xe3\xb3\xec\xc4\xd8\xd3\xaa\x95\xe0\x2b\x51\xb1\x83\x1d\x83\xea\xde\xaa\x44\x23\x86\x35\xf9\xc6\x5e\xfe\x2f\x67\x44\xa7\x0b\x9a\xe4\x1e\xf1\x5d\x97\x90\x8c\x05\x33\x93\x44\x12\xf7\x95\x83\xd0\xe9\xb3\xd7\x06\xa1\x28\xe8\x8f\xb5\x1e\xed\xb6\x5e\x46\xd8\xa2\xb3\x8b\xbd\xd6\x45\x55\x54\x96\x7a\x8d\xc0\xc6\x8b\xdd\xfe\xae\x0f\x8f\x72\xf0\xb8\x86\xc3\xc7\x41\xfa\xc4\xf9\x1e\x5c\x49\x1d\xba\xe9\xda\x45\x94\x83\x6c\xf1\xd9\xfb\x6e\xe1\x30\x02\x50\x89\xae\xd3\x50\xef\x24\x7b\xc9\x88\x7a\x20\x50\x15\x9d\xde\xd1\x42\x8f\xfd\x9b\x07\xb9\xec\x2e\x3d\x4b\xbd\xc2\xdd\xb5\x4e\x87\x3b\x63\xf2\x47\x52\x33\xe1\x91\x33\xa1\x4b\x66\x58\x50\x94\x57\x00\x81\x86\xd6\x22\x59\x95\xa9\x67\x26\xb5\x29\xf4\x42\x81\xaa\x24\xfe\xfd\x1c\xff\x8f\x81\x5d\x93\xa5\x98\x69\x31\x66\x22\x90\xb3\xee\x16\x83\x3c\x60\xf0\xaf\xce\xf2\xcb\xc0\x00\x62\x3f\x39\x31\x90\x9c\xa9\x76\xa0\x94\xe2\xb0\xfd\xb7\xdc\xf7\xc4\x85\xe1\x49\x88\xa3\x6f\x19\xb6\x64\x25\x38\x5f\x56\x32\xce\xf6\x5d\x1d\x34\x14\x62\x3a\xe3\xee\x81\x6e\x76\x3a\x5f\x60\x64\x66\x62\x2b\xe6\x60\x21\x14\x50\x29\x51\xcf\x0c\x09\x7c\x16\x48\xa7\x2e\x2c\x43\xd9\xaf\xa9\x68\x9f\x2c\x3c\xfe\x02\x6c\xdc\xe3\xbd\x1b\xf9\xeb\xf7\x77\x56\x2e\xcd\x8f\xf1\xb0\xd7\x75\x30\x6d\x90\x04\x43\xf3\x0a\x84\x33\x10\xb8\xde\x6a\x38\xff\x10\x8b\x72\x39\x13\xd7\x89\x9b\x9f\xbe\x7c\x3d\x76\x6e\xf8\xbd\xfb\x6d\x8b\x0b\x52\x95\x6c\xb1\xce\xc9\x93\x6d\x70\xb4\x87\xc0\x14\x40\xa8\x42\xb2\xfa\xbe\x38\xe7\xb8\x85\x1a\x38\x7d\x35\x8b\xe7\xef\x12\xa7\xe4\xf2\xb5\x27\xe8\x30\x90\xd6\x7e\xb0\x13\xc9\xc2\xcf\xd3\xde\x5a\x1a\x3f\x99\x74\x8a\x41\xf4\x81\x9d\x90\x36\xe5\x00\xc5\x04\xc9\x88\xbf\xd2\x4f\x61\x7d\x6e\xbd\xca\xb2\xdd\xea\xa6\x15\x79\x41\x4f\x36\x0b\x46\x9a\x33\xa6\xde\xd9\x6b\xa1\xd8\xc1\x40\xc4\xff\xc9\x49\x90\xd8\xad\xf7\x8c\xd3\x87\x80\xbd\x68\x66\x3d\x1a\x0e\xe3\x3f\x53\x7c\xdf\x89\x2d\x56\x2e\x82\xdc\xd1\xd9\x12\xca\xd3\x8d\x65\x56\x7d\x29\x14\x06"}, {{0xb6,0x2c,0x24,0x18,0x78,0x27,0x35,0x13,0xe0,0xbf,0x6f,0x33,0xd2,0x10,0x43,0x65,0xb2,0xce,0x9c,0x5a,0x1b,0x78,0x60,0x58,0xe9,0xc5,0xb4,0xd1,0xd1,0x92,0xf8,0x7f,},{0xbb,0xf6,0xfc,0x51,0x98,0xf3,0xfb,0xa5,0xab,0x00,0x7f,0x8a,0x63,0x2d,0x28,0xd1,0xaf,0x86,0x5d,0x29,0x0f,0xa0,0xa9,0x0f,0xaa,0x9a,0x9b,0x5b,0x9c,0x13,0xf3,0xfb,},{0xc5,0x90,0x39,0x58,0x7b,0x38,0xdc,0x14,0x1e,0x05,0x5a,0x93,0x85,0x01,0x04,0xd6,0x29,0xe3,0x80,0x70,0x5b,0x8f,0xc9,0x18,0x84,0x7c,0x5e,0x2a,0x35,0x2d,0xa3,0xa0,0x2f,0xce,0x7f,0x71,0x99,0xf4,0xae,0x2b,0x1e,0x2a,0x59,0x48,0x34,0x18,0x93,0x2e,0x18,0x5f,0x7e,0x45,0xb5,0x05,0x0c,0x64,0x2c,0xec,0xc7,0xe7,0x81,0x99,0x85,0x07,},"\x26\xa3\xc2\x6a\x5a\x18\x9c\xad\x40\x7c\xba\xa3\xa6\x86\x7a\xc0\xa2\x60\x88\xc7\x5f\x9d\x0f\xa1\x9b\xd5\x02\x74\xce\xc5\x75\x5a\x49\x71\x09\xa4\x73\x28\x4d\x6f\xc8\x1a\xd4\xb9\xec\x29\xfa\x7e\xc9\x76\x4f\xd3\x09\x9f\x06\x0e\x36\x83\x65\x52\xff\x24\x13\xe3\xd5\x09\x5f\xe0\xb1\xa8\xbf\xcf\x67\xee\x06\xaa\x90\x32\xe7\xbb\x32\x49\x69\x80\x47\x71\x4d\x28\x14\x15\x27\x3c\x98\x34\xad\x9e\xb6\x65\xa7\xd9\x72\x20\xe7\x2d\x9c\xa7\x3f\x31\xaf\xa7\x73\x86\x75\xba\x31\x62\xef\xef\xe7\x47\x9a\x5b\xc4\xbc\xe2\xe8\xb7\xaf\x47\x41\xd7\x03\xdc\x9b\xbd\x60\xb4\xcf\x4b\x90\x87\xf6\xcf\x86\xcf\x53\xae\xd0\x2b\xf4\xca\x6a\x18\xf6\x07\xcb\x52\xa3\x03\xd7\x8e\x85\xad\x88\xfd\xfc\x86\xdc\xb7\x18\x77\x27\xb0\x3b\xe2\x27\x74\x5b\xea\x74\x4f\xd0\x06\x52\x5b\xc5\x9a\x4d\xdd\xab\x91\x5c\xef\x40\xa8\xf3\x08\x02\x91\x3b\x79\x13\xea\xf9\x74\x33\x65\x52\xe2\xf1\x45\x6a\xd8\x03\xdc\x58\xc9\xb4\xb1\x8e\xfa\xf7\xf7\xe3\x57\xe2\xcd\x77\xd1\x38\xd9\x00\x80\xe2\x96\xd1\x36\x4a\x2f\x32\x4d\x3e\x0d\x6e\xdc\x20\xb8\xbd\xaa\x9d\x2e\x87\x1f\x5e\x7b\x05\x1f\xb6\xfc\xdb\x55\x95\xf2\x1d\x3f\x8d\xe2\x9f\xb7\x86\x78\xfa\x47\x9e\xaa\x32\x57\x9c\x78\x4d\x51\x3a\xc5\xf8\x36\xd9\x54\xd0\xd3\xfc\x0e\x5f\xc8\xa6\xee\xab\x90\x20\x2b\x4c\x4a\x2b\xec\x24\xcf\x63\xea\x67\xc4\x70\x09\x62\x18\xcd\x43\x1e\x88\x31\x05\xfc\x9c\x27\xf9\xea\x77\xc1\x8e\xda\x69\xbc\x00\xa2\x24\x2b\xd4\x20\xf0\x95\xc9\xb9\xa9\x2d\x95\x6c\xcc\x5a\x85\x72\xb0\x57\xa7\xfe\x17\x3e\xeb\x2a\x31\x66\xcb\x20\x89\xd1\x13\xa8\x16\x46\x2b\x25\x80\x5b\x8a\xba\xff\x5b\x0b\x22\x87\xc5\x08\xec\x2b\x8c\x34\xb2\x19\x5c\x33\x28\x70\xd3\xcc\x39\x60\x17\xa1\x6b\x9e\x0d\xa6\x18\x2d\x07\x1d\x3b\xf3\x63\xd3\xf1\xe7\xb7\xda\x11\xd7\x11\x25\x0a\x58\xaf\xd7\x4e\xd3\xe3\x15\x8d\x47\x18\xba\xd4\xd2\x74\xbb\x34\x44\xcf\xc3\x18\x07\x4b\x53\xbe\xba\x44\xa2\xa3\x4f\xf8\xeb\x72\x6e\x4a\x1d\xaa\x91\x10\x51\x62\x16\x51\x89\x8b\x88\x71\x69\xf6\x2b\x9c\x0f\x40\x20\x48\x3e\xf5\x44\xf8\xf5\x72\xfa\x6a\x66\x40\xa4\xcf\xfc\xe9\x76\xcb\x70\x24\xf8\x47\xbd\xc9\x5d\x1d\x7c\xe6\x53\x50\x5d\xeb\xfc\x69\x88\xed\x28\x9d\xd4\x7a\x9e\xb2\x61\x25\x9e\x3e\x65\xe4\x5f\xc9\xd7\x14\x94\x69\x35\xcd\x8e\xa1\x3b\xc6\xdb\x5e\xaa\xb9\xe8\xb1\x0d\xae\x0f\xdd\x69\x79\xc2\x03\x5c\xfb\x80\x98\x25\x2f\x22\x05\x44\x3b\x80\x88\x16\xbf\x77\x87\xb7\xf1\xe7\x8b\xc9\x8a\x72\x85\xe7\x33\xd4\x5f\xc4\x61\x0c\x20\x97\x7c\xa3\x22\x98\x89\xbb\x8c\xd2\xb6\x94\xce\x9e\x3f\xe7\x83\x03\xaf\x83\xe1\x06\x42\x25\x42\xfb\x79\x61\xd3\x2e\xb1\xd2\xc5\xfb\xe6\x07\x51\x67\x4b\x07\x47\x73\xee\x06\x16\xe0\x29\x73\xf6\xa7\x4a\x3a\xe4\x66\x4a\x26\x50\x91\x5a\x3e\x10\x49\x3b\x9e\x66\xa3\x9f\xa5\xc8\x9c\x61\xd4\x47\x35\xf1\x07\xd3\x37\x57\xae\x67\x9b\x43\xa8\xd4\x3a\x01\x75\x7a\xe1\xf3\x27\x9e\x86\x24\x42\xe1\x50\x71\x55\x50\xee\x82\xe4\x9c\x0d\x49\x43\xfa\xf1\x3f\x22\x79\x1f\x0e\x66\xf2\x4a\xc5\x0a\xb3\xc0\x03\x85\x2b\x21\xe1\x5b\x2f\x00\x6e\xdc\x2c\xd6\xa8\x79\xc4\x76\xab\x5b\x35\x2e\xb1\x09\x9d\xad\x4c\x50\x37\x24\x00\xfa\xa5\x49\x8d\x78\xc6\xb8\x57\x03\x4c\x25\xca\xf7\xb9\x33\xfa\xf6\xbd\x7c\x59\xfa\x3d\xa5\x73\x97\xb6\x03\xde\x9c\xb9\xd8\x0e\x51\xf7\x99\x7b\xaa\x46\x2a\xcd\x53\x7e\x2c\x41\x94\xc7\x6c\x7e\x0b\xe6\x51\x2b\xce\x4d\x63\x66\x0b\x36\xc7\xcc\x46\x63\x1f\xb9\x67\x1a\xd8\xc5\xd2\x8e\x2f\x2e\xe2\xed\xce\x81\x95\x44\x21\xb8\xa3\xd9\xff\x6f\x66\x69\x9f\x4b\xce\x88\xbc\xb8\xef\x19\x2c\x26\x2a\x74\xab\x7e\x19\x1e\xee\x91\x01\xa2\x8d\x4b\x66\x28\x2b\x51\x22\x09\x3d\x14\x1c\x64\x96\xc7\xab\xa4\xd3\x52\xe4\x72\xee\x74\x40\xe0\x5a\xf6\x0d\xa0\xcf\xc9\x3e\x30\x36\x42\xba\x8f\xb8\xe5\xc5\x68\x68\x7a\xbd\x63\xaf\xb3\xed\x6a\x32\xb6\xda\xe5\x6a\x7e\x5d\x73\xde\xba\xf4\x1d\x35\xca\x36\xad\xb9\x7a\x22\xc0\xad\xbe\x71\x8b\xec\x1f\xa5\x19\x98\xde\x9b\x4b\x96\xa7\x9c\x5b\x96\x55\xb0\x16\x5d\x5e\x1b\x9a\x8c\xc5\x52\xe8\xc9\x32\x9e\xde\x58\xdf\x74\xc6\x7b\x2b\xa1\xa8\x42\xfd\x3e\x81\x58\xc1\xfe\xa3\xa9\x9b\x56\xa2\xc2\xa9\x62\x07\x85\x3d\x26\x02\x2c\xec\x17\x0d\x7e\x79\x94\x4d\x2f\x56\xaa\xb1\xf1\x91\xbf\xd4\x8d\x72\x54\x90\xca\x82\xb8\xd9\x06\xf0\x68\x0e\x69\xee\xb9\x57\x57\x74\xfb\x9d\x60\x45\x13\xfb\xc2\x6f\x5d\x30\x3b\x68\x85\xca\xc0\xbf\x8e\xfe\xe0\x53\x8f\x92"}, {{0x0f,0x77,0xf7,0x7a,0x1c,0x7e,0x04,0xbd,0xa8,0xe5,0x34,0xf4,0xe3,0xef,0xf9,0xa2,0x38,0xcc,0x14,0x87,0x6b,0x7e,0x3e,0xca,0x8b,0xed,0xe1,0x92,0x3a,0x33,0x64,0x06,},{0x10,0x45,0xea,0x9f,0xe2,0x14,0x58,0x3a,0x0c,0xdb,0xc4,0x94,0x93,0x2b,0xc4,0x4a,0xfe,0xeb,0x08,0x0b,0xec,0x48,0x5c,0xc2,0x34,0xfd,0xdc,0xff,0x13,0x9c,0xce,0x00,},{0xb2,0x0b,0x9c,0x42,0x46,0xf0,0xd2,0x97,0x01,0x38,0xaf,0x7d,0xc9,0xaf,0x62,0x9b,0x68,0xfb,0xc3,0x7d,0xf8,0x7a,0xfd,0xca,0xdc,0xb5,0x45,0xc1,0x76,0x83,0x76,0xa0,0x9c,0x3b,0xab,0xc3,0xeb,0x1a,0xf3,0xb7,0x51,0x98,0x52,0xf7,0x5f,0xab,0x1c,0x9c,0x11,0x9c,0x66,0x2c,0x58,0x77,0xfb,0x2f,0x72,0x99,0xca,0xb5,0x7f,0xad,0x3d,0x0e,},"\x0e\xcb\x74\x6d\xbd\xb0\x16\x14\x21\xaf\xeb\x7a\xde\xa7\xa3\x7c\x2e\xa4\x40\x8a\x59\x2c\x9d\x78\x1e\xd6\xac\x6f\x4e\xe5\xcc\x65\xd5\x27\x0e\x4c\xf2\x76\x32\xf7\xc5\xc1\x33\xd4\x39\xb7\x8d\x1f\x71\xaa\x6d\xd8\x07\x13\xd9\x0b\x15\x1e\x19\x12\x1b\xfa\x87\x71\x0e\x84\xa4\x85\x0a\x3b\x5b\x02\x65\xba\x26\x03\xd0\x71\x6e\x9b\x7e\x11\x22\x10\x9c\x39\xc6\xf1\x02\x7f\xce\x18\x79\x8c\xbb\x4f\x6b\xc5\xe4\xd7\xac\xa4\x70\x46\x90\xf5\xc9\x81\x51\x08\x71\xc3\x13\x59\x57\x98\x33\x86\x81\x10\x7f\x2b\x57\x94\xd4\x6f\x6e\x0b\xde\x2c\xd0\x64\xb3\xb1\xfc\x00\xca\x47\x18\x8b\xbb\xc1\xf4\xa0\xce\x30\x5c\xc6\xd8\xa8\x96\x92\x0e\xb9\xeb\xae\x57\x9f\xd3\x38\x5f\x8f\x1f\x35\x97\x62\x88\xf4\xc5\x8f\xfc\x47\x60\xf3\x59\xb0\x03\xc8\x72\xe9\xa2\x40\x55\x35\x5e\xa9\x58\x5e\x95\x10\x69\xdc\xa2\x5f\xd0\xcc\x0b\x9d\xb5\x2a\xae\xaf\x19\xd4\x3f\x2e\xab\x4f\x83\x56\x03\xad\x12\xd2\xdc\x49\xb3\x10\x25\x6b\x94\xbe\xd5\x48\x96\xa1\x6b\x69\xb0\x9c\xb4\xc8\xff\x5c\x23\xcc\xe5\x59\x3d\x87\xad\xe2\xa8\x2a\xda\x50\x85\x9e\x15\x44\xc1\x86\x18\xa6\x5c\x00\x7e\xf4\x24\xc9\x85\x4a\x17\x5b\x6e\x6c\x0e\x64\xb2\xc8\xeb\x8a\xd4\xd2\x8b\x97\x7d\x68\xe7\x81\x69\x91\x51\x98\x97\x53\x94\xd3\xb9\xb2\x69\xca\xb0\xd3\x26\x1b\x2b\x56\xcd\x2c\xc4\xbd\xdb\xd4\xf1\x43\x9e\x0d\xbe\x2c\x9b\x3f\x3f\x75\x14\xed\xac\x5e\xbb\x46\x22\xb9\x2a\x69\xa8\x40\xa9\x02\x85\x50\xb2\x21\xdb\x59\xdd\xfb\x00\x13\x96\xf8\x63\x92\xa1\x7f\x08\xcc\xb1\x94\xcd\x9e\x1a\x00\x81\xd7\xdd\x9c\xca\x23\x57\xfe\xb8\xb7\x95\xe5\x17\x02\x9f\x79\xc8\x2a\x3b\xe6\xf9\xa0\x31\xdd\x1a\xf1\xe7\x9e\x49\x82\xbf\x8e\x76\xb3\x10\xf9\xd3\x55\xef\xcd\x5b\x1e\xfa\x9f\x35\x9c\x17\xcf\x3b\x51\x0d\x51\x3e\x8c\xd5\x78\x6a\x0d\x34\x45\xdc\x59\xa8\x43\x3a\x46\x48\x86\x87\xb0\xf5\x8b\x1b\xd6\x56\x7c\x2a\xf4\x87\x3b\x51\xfc\x84\x5e\x76\x7e\x24\x30\x05\x19\x2f\x8f\x06\x74\xf2\x81\x26\x5a\x55\xd7\x6c\xea\x32\x22\x60\xc9\x32\xce\xa6\x71\x7a\xdb\x98\xa2\xdd\xa8\xc6\x98\xe2\xe8\x92\x55\xfe\xb7\x7d\xa7\x64\x81\x67\xbc\x1e\x58\x87\x7f\xeb\x72\xd1\xd1\x4b\x0c\x30\x4f\x07\x37\x2d\x95\x56\x75\x23\x7c\x49\xf7\xa6\xdb\xc9\x15\xe6\x81\x4a\xba\xe6\xcc\xe4\xca\xf9\xf4\x80\x87\xe9\xdf\xb2\x82\xd8\xf3\x40\x37\x7c\x1e\x29\xc6\x73\x1c\xcc\x26\x67\xda\x66\x95\xb7\x12\xbe\x03\x12\xd8\x65\x11\x19\x34\xf1\x68\xd5\x54\x43\x65\xdd\xae\x27\xab\xc6\x4a\xef\xbc\xb3\x22\xdb\x7d\x97\xd9\x0d\x95\x7a\x63\x7b\xd8\x26\xc2\x27\xe9\xeb\x18\x0b\x45\xa4\x31\x62\x6a\x6f\xd8\x90\xc0\xe5\xf4\xed\x7e\x85\x64\x74\x75\x2f\x80\xb5\xae\xf6\xe7\x3e\xfd\xaa\x6c\x2c\x45\x1b\xd7\x4c\x1e\xf4\x66\xca\x3a\xaa\x25\x73\xbb\x52\xcb\x2b\x1c\xa9\x6a\x1b\x57\x44\x03\xce\xae\x1c\xf0\x5f\xfc\x53\x43\x0e\x1e\x4c\xd5\x59\x3b\xd1\xef\x84\xbc\xbf\xe2\x19\xf0\x81\x60\xd1\x66\xf2\x73\x1d\x99\xb8\xd7\xa3\x2b\x12\x99\x1f\x77\x77\x5a\x26\x7e\xc0\x82\x97\xec\x51\x2d\x7b\x72\x43\x56\x32\x52\x5c\x04\x00\x0f\xb0\x0a\x79\x3f\x8b\x5f\x8f\x37\x47\xb5\x53\x59\xdf\x21\xb7\xe2\xc4\x9f\x2b\x0b\x9a\xe0\x82\xaf\xc7\x0a\x14\x68\x71\x37\x0b\x8d\x50\x08\x6d\xe0\x0f\x94\x48\xbe\x89\x02\x17\x4b\xa2\xcc\x85\x1f\xa3\x79\xdd\x70\x31\xca\x45\x7a\x88\x69\xaf\x4b\x6c\x27\x29\xda\xc5\x19\x55\x6b\x8b\xb4\xab\x51\x9e\xf1\xbb\x02\x4e\xa8\xb7\xf0\x17\x71\xc9\xaa\xb7\x48\xe5\x73\x81\xa0\x19\x2a\x6e\x39\x8c\xbe\x6d\xd9\xf3\x67\xcc\x7b\x33\x54\xf8\x3b\x79\xbc\xda\x46\xb7\x93\xa4\xad\xa8\x55\x49\xc8\xd6\xbd\xd6\x16\x81\x24\x36\x2f\xf9\x08\xaa\x1a\x0c\xb7\x8a\xa3\x30\xc4\x2d\x5a\x5d\x48\x12\x35\xac\xac\x3a\x91\x9b\x96\x9c\x50\x98\x72\x66\xd4\x04\xd1\x5d\x0e\x70\x6f\xd9\x00\x76\x34\xf6\x9e\x13\xc5\x6e\xc4\x71\x33\x88\x4f\xca\xdd\xc1\x6b\xee\xee\xd1\x9e\x0c\xd9\x17\xaa\x49\x63\x67\x86\x7d\xfc\xea\x27\x4e\x1a\x47\xda\x77\x4f\x3c\x93\x63\x02\x1e\x7c\x8d\x6b\xf8\xf0\x00\x53\xfa\xcc\x11\xcb\x68\xa9\xd6\xe1\xfc\x2d\x6d\x19\x17\x5d\x63\x24\xff\x7c\xa6\xc2\x30\x58\xb8\xb6\x93\xd8\xfd\x4e\x0b\x51\xdc\xbb\x11\x35\x43\xf2\xfc\xc0\x45\x2e\xb9\xd9\x67\xac\x0f\xa9\xb2\x3e\x9e\x0b\x1d\xa8\xd8\x3a\x3c\x1f\xc9\xe9\xec\x97\x1f\x0f\x67\xfc\x74\x5b\xb1\x73\x76\xbc\x46\x24\x5f\x52\x8c\xb6\xe5\xfe\xe1\x1b\xcd\xda\x86\x7b\x7f\x79\x01\x9c\xf9\xdb\x59\x18\x58\x23\x0a\xec\xb4\xd1\xe9\x3d\x16\x7c\xd8\x6b\x42\xdd\x87\x9a\x13\xfa\x0e"}, {{0xc5,0xa5,0x05,0x34,0x77,0xae,0x31,0x15,0x8e,0x74,0x69,0xdd,0x15,0x04,0x86,0x76,0x50,0xd4,0x6f,0x15,0x89,0x06,0x7f,0x5c,0xd8,0x81,0xca,0xf2,0x5c,0x26,0xcb,0x21,},{0x70,0xf8,0x5d,0xb9,0x80,0x7b,0x26,0xfc,0xf3,0xe6,0x69,0x0b,0x91,0x72,0x4f,0x7a,0xe3,0xd2,0x0e,0xc3,0x60,0x4a,0xb7,0xd6,0x30,0x8d,0x90,0x94,0x30,0x8b,0x2d,0x59,},{0xf5,0x19,0x1b,0x44,0xbd,0x6c,0xc3,0xea,0x28,0x17,0x71,0xdf,0x12,0x54,0x9b,0xa2,0xbe,0x22,0x8b,0x51,0xeb,0x79,0x1b,0x9e,0x5e,0xd2,0x81,0x5f,0x86,0x2a,0xa6,0x30,0xb5,0x69,0x67,0xcd,0xef,0x8b,0x6a,0xf0,0xb9,0xd2,0x1a,0xb8,0xc9,0x7a,0x6d,0xff,0x68,0x1c,0xce,0xd9,0xf5,0x01,0x97,0x13,0xd4,0x35,0x7c,0xb3,0xe5,0x4c,0x0d,0x08,},"\x85\x71\xff\x39\x03\x48\x6a\x43\xa6\x12\x6c\x32\x3e\x7b\x3a\x74\x14\x1d\x13\x85\xd4\xbd\x70\x3f\x19\xe2\xd1\xb6\x4b\x50\x28\x1d\x27\x16\x8a\xe3\xe7\x69\xc6\xdd\x9d\xf7\xd9\x78\x64\xfb\x37\x82\x2f\x00\x21\x85\x2e\x31\x68\xab\x7d\x84\x5a\x65\x45\xed\x0c\x37\x7d\x9f\x7c\x04\x8a\x2b\x96\xe8\xdc\xf4\x45\x77\x96\x84\xa0\x58\xc2\xb9\xc2\x1a\xc6\x8a\x0c\x34\x1d\x1d\x6c\x09\x81\x45\x64\x57\x45\x8e\xb7\xce\xbf\x66\x67\x87\x40\x77\x7e\xca\x26\xe0\x1e\x1c\x8f\x53\xb5\xd4\x75\x6c\xc5\xf0\xb9\x0f\x0c\x5d\xb0\x53\x93\xcd\x4b\x8e\x44\xf6\x81\x0c\xaa\x5a\x11\x6a\x33\x57\x77\x24\x39\x5d\x41\x3a\xf6\x19\x63\x2a\x6f\xed\x14\xe2\x15\xc2\xf1\x9d\x10\x5c\xe2\xbf\x14\x98\xe6\xd2\xab\x4f\x65\x0f\x61\xba\x5c\xf6\xd0\xc7\x3b\xbb\xde\x98\xe3\x04\x29\x91\x0a\x4e\x67\xdf\xbc\x71\x7c\xb0\x91\x18\x2d\x59\x70\x58\xb5\xd7\x65\xd0\x97\xe6\x87\x58\x31\xb5\x88\xaa\xeb\x3e\x73\x27\xe8\x56\xb4\x2f\xa9\x83\xfd\x25\x4e\xf1\xf9\x18\xb0\x43\xd1\xdd\x3d\x7b\x7e\x30\xb3\x15\x38\x6e\xec\x91\xe7\xf9\x4d\x59\x8f\x4b\xeb\x3b\x27\xb4\x2f\x4e\xe1\xfb\xf7\xaf\xb4\x86\xbd\xcc\x60\x81\xcc\xb8\x67\xf0\x41\x11\x04\x4f\x4b\xbb\xe3\xc8\x12\x2e\xde\xad\xef\xa9\xd6\x93\x90\x6e\x0d\x6e\x13\x3b\xf6\xf2\xda\x61\x58\xfe\xed\xbd\xa0\x24\x41\x0f\x12\x08\x6e\x7a\xcc\xf1\xc6\x8e\x15\x57\xf0\x0c\x14\xe9\xc7\xea\x76\xa5\xed\x13\x37\xa0\x54\xac\x2c\x94\x9c\x05\x97\x7e\x03\x02\x74\xf6\xa4\xf2\xa6\xb3\x0a\x15\xc5\x70\xec\x94\x33\xf7\x4f\x47\x52\x80\x87\xc9\xce\x9a\x62\x92\x95\x1c\x54\x35\x49\x96\xfb\x28\x3c\x0d\xc4\xcf\x33\xc0\x01\xbc\x96\x87\x5e\xa6\xe1\xf4\x6f\x83\x7f\xf1\x8d\xd9\x54\x5f\xb9\x93\x46\x55\x34\x2b\x12\xc2\x99\x0b\x9f\x1c\x6f\xf4\xd6\x64\x89\xd6\xae\xdc\xe7\x5c\x7c\xb0\x3a\xc1\x34\xbf\xd3\x9b\x18\x1d\xfb\x7f\x9a\x97\xce\x73\x7f\xe5\x70\xad\x5f\x81\x34\x59\x39\xa6\xde\x5a\x40\xa3\x3a\x0e\x44\xbf\x95\x75\x03\xd5\xca\x02\x83\x51\x2e\x57\xfb\xa8\xa3\xa6\xf2\xc3\x90\x68\x7b\x1b\x77\x08\x67\x6e\x0f\xd0\x3b\x7c\x18\x8d\x45\x61\xc1\x87\x91\x63\xea\xf2\xb5\x96\xdd\xd5\xf3\xc1\xf4\xda\xdb\xc1\x39\xc2\x16\x48\x92\x82\x0b\x2f\xe0\x9c\xbc\x3d\x19\x08\x80\x76\x36\x45\x10\x25\x4f\x2b\x6d\x41\x03\x29\xe7\x0f\x2e\x5a\x94\x5b\xba\xcd\x2c\xa8\x9b\xd4\xb6\xe1\xf5\xe2\xe1\xd4\xf4\xed\x2f\xe0\x11\x3b\xcf\x32\x96\x2f\x00\xd5\xc3\x3b\x1d\xf9\x88\x40\x2b\xa0\xdc\x88\x04\xc1\xaf\x66\xcc\xae\x26\x70\xef\xa3\x13\x4c\x67\xfc\x90\xfe\xed\x8d\x8d\xee\xdc\xcf\x6a\x46\xf2\x29\x40\x45\x4a\xf2\xbb\x67\x54\xcf\x23\x5d\xdb\xb0\x00\x1c\x6c\x74\x1b\xf8\x74\xbc\xd8\xd4\x1d\x9d\xba\x81\x62\x58\x1c\x37\x46\xd7\xf3\x0e\x73\xde\xf6\x94\x15\xaf\x51\x81\xc1\x49\x91\x42\x95\x12\x2d\x45\x98\x2f\x94\x94\x3e\x20\xb0\xff\xc7\xfe\x6d\xdf\x19\xa0\x22\xe8\x7a\x52\x13\x33\x57\xa1\xe8\x0f\x37\xf2\x8a\x4c\x4a\x8a\x61\xc1\x48\xdd\x87\x5c\x1e\x8e\xcd\xcd\x84\x0d\xd8\x63\xe4\x4d\x9b\xcb\x16\xb6\xe5\xaf\x01\x47\xb3\x4a\x7a\x90\x52\xc8\xd3\xf4\x52\x01\x3d\x2d\x35\x4f\x68\x03\xf9\xea\xf6\x05\x6f\x3b\x01\x3c\x61\x6e\x47\xf3\x98\x81\x91\x46\x32\x0a\x5e\x3d\xbd\xf1\x68\x43\xea\x29\xde\xf2\x62\xcc\x9a\x34\x36\x72\xcf\x96\xbc\xcc\x6e\x87\xe6\xa6\xba\xf0\x71\x2e\x6e\xe8\x9a\xa6\x04\x89\xf1\x7c\xb7\x2d\xdc\x44\xba\xd1\x61\x58\x7d\x87\xf5\x4d\x67\xcc\x0a\x27\x78\x49\x7d\x83\x10\x88\x31\x5f\xfe\xee\x3d\x26\x8c\x59\xbe\xfe\x88\x4c\x3a\xa0\xe0\xae\x22\x96\xbb\xb6\x0e\xac\x90\x97\xcd\xf8\xdc\x09\x87\xce\xb1\x74\x2b\x05\x86\xdf\xce\x79\xec\x10\x42\x5b\x28\xf4\xe6\x45\x20\xd7\x12\xe3\xf4\x6e\xa8\x3b\xe2\xde\x6a\x15\x74\x07\x3b\xc5\xc7\x55\x7b\x8e\x25\xb6\x41\x11\x84\xea\x28\x3d\x88\x00\x23\x2c\x79\x06\x94\x21\x81\x1f\x88\x3c\x29\x94\xe7\xb7\xe2\xad\x9f\x8d\xc4\x89\xc9\x34\x77\x24\x39\x46\x09\xc9\x89\x09\xa6\xc2\x60\x17\xb5\x0f\x20\xd5\x0c\xca\xcb\xde\x36\xb7\x6b\xa6\x46\xa7\x6d\xc6\xa5\xb0\xf5\x06\x49\xc5\x65\x8b\xbd\xfd\xd3\xb5\xca\xfc\x54\x79\xa2\xf4\x8e\xe5\x15\x42\xf2\x3e\x9f\xc9\x21\x32\x06\x0f\xd6\x35\xef\xf4\x52\x11\x1c\xda\xf3\xef\xbd\xb7\xdb\x9e\x7d\x47\x16\xd0\xd6\x01\x1c\x29\x11\x8a\x55\xd4\xc1\xa4\x36\xab\xe2\x4e\x3c\xbf\x40\x23\x5b\x76\xdd\x19\x23\x50\x3c\x5f\x35\x98\x12\x4e\x2d\xf5\x5a\x2d\x1f\x24\x6e\x90\xde\x4b\x71\x64\x5d\x51\x75\xb6\x1b\x01\x74\xe7\xe5\x7d\xf1\x28\x5c\xcf\x8c\x86\xb8\x38\x2c\x25\x80\x79"}, {{0x05,0xc7,0x19,0xca,0xe0,0x6e,0x2b,0xb7,0xd8,0x78,0x63,0xab,0x31,0x50,0x27,0x2c,0xb2,0xf8,0xc3,0xaa,0x24,0x21,0x91,0x2d,0x87,0xf9,0x8e,0x75,0x89,0x63,0x8c,0xe9,},{0x90,0x21,0x17,0x96,0xfe,0xd3,0xd5,0x3b,0x81,0xf8,0xfe,0xeb,0x1b,0xad,0x1f,0xfc,0x93,0x3e,0x5f,0x10,0xd3,0xbc,0x1b,0x36,0xdd,0xf2,0x10,0xa4,0x79,0x23,0xdf,0x03,},{0xba,0x6e,0xb7,0x51,0x37,0x1d,0xf7,0x21,0xb7,0x70,0x7a,0x5b,0x33,0x39,0xed,0xb5,0x5f,0x13,0x86,0x40,0xb9,0x7b,0xe6,0x33,0x4d,0x6c,0xda,0x51,0x91,0xa3,0xff,0x63,0x67,0x91,0x17,0x61,0x88,0x2a,0x4a,0x00,0x7f,0x16,0x1b,0x74,0x8c,0xec,0x95,0xb1,0x9e,0x99,0x5f,0x28,0x58,0xc2,0x57,0xcd,0x61,0x69,0x25,0x66,0x62,0x30,0x11,0x02,},"\xec\x24\x19\x18\x41\x8e\x60\x52\x20\x42\xe6\x73\x39\xe6\x64\x94\x99\xf3\x1a\x6c\x7c\xf8\x92\x5f\x1f\x61\xdd\xe8\x94\x60\x36\x02\xae\x8b\xb5\xf5\x88\x09\x82\x1f\x83\x34\x4f\x23\xcd\x31\xe6\x4e\xc9\xff\xe7\x9a\x98\x6b\x7e\x29\xe4\x31\x9a\x63\x41\x43\x16\xbd\x6e\xe2\x0e\x02\xa5\x0d\xa4\x40\x12\xbd\x2d\x6f\x9f\x67\x9e\x88\xed\x0c\x8b\xb1\xe2\xca\xd5\x5e\x56\x57\x89\x88\x33\x45\xb7\x54\x6f\x3d\x54\xb1\xb3\x62\xb1\xc6\x50\x50\x2c\x01\x9d\x73\x13\xaf\xbc\x82\x68\x9b\x23\xa3\xa5\x2d\x8f\x1a\xf9\xf8\x1e\x18\x8d\xbd\xf2\x03\xfb\x53\x00\xb4\x22\x5b\xfb\x67\x73\x33\x7b\xe6\x75\x0b\x3d\xb8\x8c\xe0\x97\x34\x3f\x62\xee\x2c\x11\x85\x74\xef\x15\x0c\xbd\x4c\x62\x76\x0c\x3e\x43\xdc\xbc\x39\x21\x8b\xd6\xd9\x85\x65\xfa\x38\x98\x11\xb1\xa6\x74\xf6\x17\xfd\x75\x67\x33\xdc\xb5\x67\xa9\x2d\xbf\x38\x55\xb5\x7b\x1f\x4a\x46\xd5\xb8\x97\x4b\x39\xac\x0d\x0e\x24\xd9\x9d\x20\x37\xc0\x4f\x60\xd9\x14\x0f\x64\xb0\x7a\x77\xd7\xea\xa1\xce\x8a\x78\xe8\x44\xb1\xdc\xf0\xe3\x74\x24\xf3\xf9\xd2\x53\xa5\x48\x56\x1a\x03\x75\xa8\xd4\x34\x12\x97\xbf\xed\xb7\x04\x8c\x79\x35\xe1\x48\x14\x18\xf9\xbb\xa9\x27\x1f\x9f\xd6\x02\x62\x24\xe7\x8e\x05\x5d\x8a\x09\x39\xfa\x2f\xe1\xdb\xc0\xfc\x7b\x58\x3e\x4c\xff\x34\x90\xe1\xd0\xf6\x10\xb2\x52\xe3\x0d\x84\x97\xd0\x0e\x4a\xac\xb3\x75\xf1\x9a\x47\x19\xf7\x9c\xa1\xea\x58\x3a\x2f\x8b\x14\x06\xa4\xaa\x5c\xb5\x5c\x08\xb6\x59\x3b\x67\x6e\xb5\xc3\x4a\xbe\x89\x39\x2d\x62\xd2\x33\x08\xa3\x34\x8b\x57\xaf\xfb\xba\x77\x39\xcd\xe8\xe1\x90\x9d\x34\x25\xee\xb2\x09\x26\xa9\x77\xd3\xa9\x4a\x86\xe0\xba\x10\xb3\x86\x92\x66\x98\x82\x7e\x86\xb4\xfd\x6c\x61\x80\x04\x7c\x87\xec\x3b\x31\x61\x9d\x05\xa9\xdf\x34\xef\xd3\xd7\x6a\x83\x69\x62\xb2\xef\x60\x4d\x07\xaf\x09\x75\xeb\x8f\x3d\xd2\x25\x94\x32\x38\x02\x56\x4c\x92\x9b\x3f\x65\xda\xcb\x57\x2b\x32\x55\x3d\x69\xb3\x1a\x19\x76\x90\xa9\xbb\x86\x0b\x08\x0a\x77\xcf\xbb\x3c\x17\x5a\xaf\xce\x01\x46\xa8\x2a\x4d\x06\xe8\xc7\x50\x52\x1b\x72\x6e\xf1\xcb\x29\xd0\x21\xe5\x91\x5e\x5e\x84\x62\xed\xe5\x39\x54\x45\x24\x5c\x9a\xe8\x82\xee\xc4\xb1\x74\x5e\x11\x79\x1f\x76\x21\xd3\xfe\x70\x2c\xac\x15\x25\xe1\xf7\xb4\x6e\x11\x05\xcd\xd0\x6d\xa2\xaf\xde\x26\x47\x5d\xc1\xf7\x8d\xf8\xe2\xd7\x2b\x0e\xc3\xef\x7d\xd9\x56\x19\x3c\x99\x68\x42\xa4\x32\x69\x65\x38\xcf\x12\x3d\x76\x87\x21\x1f\xfc\xd0\x90\xb9\x38\x1e\xab\xec\x87\x9f\x76\x9a\xac\x0d\x35\x64\xe1\x6d\xf7\x94\xfa\x24\x72\x8d\x71\x72\xfd\x07\x73\x2e\xab\x07\x7e\xd8\x1c\x22\x08\x4f\x6f\x78\x1b\x62\x6d\xac\x67\x42\x8a\x9d\xdf\x3b\x0d\xb0\x46\x52\x51\x22\x0d\x18\xb8\xbf\x62\x04\x64\xc5\x1a\x57\x8d\xec\xcc\xbb\xab\xa5\x45\xed\x44\x2c\xf1\x2c\x4c\x66\xf6\xcb\x6e\x69\x01\xea\x54\xae\xda\x23\x6e\xc4\x5e\xef\x88\x6a\x7d\xdd\x2c\x04\x1c\xab\xa3\xa6\xce\xe3\x39\x71\x5b\x6c\xe9\x7e\x76\x5e\xc3\x47\x9f\x3d\x52\x82\x4a\x81\x94\xbe\xc2\xa8\x96\x47\xe8\xc6\x3f\xf7\x64\x5f\xf6\xd0\x53\x67\xc7\x67\xbc\x48\xcc\x96\xba\xf0\x5d\x6a\x41\x5b\x2a\x5a\xff\x9b\xfb\x21\x79\x48\xfa\xd3\x57\xb9\x8f\x47\xdf\xed\x62\xff\x12\x85\xeb\x9f\x46\x8f\x0f\x29\xed\xd7\x5a\xdc\x0c\x8c\x2f\xf6\xa5\x65\xed\xb8\xed\xfb\x48\xbe\xa0\x3b\x70\xc4\x47\x36\x9c\x52\xd8\x81\xee\xa0\xee\xdb\x08\xc3\x15\xcd\xf0\xbf\xeb\x97\x9c\x1c\x02\x50\x94\x6b\xb1\x00\xc2\x86\x6b\x41\x69\xb8\xcb\xd4\x4d\x65\x8f\x02\x36\xe1\xe9\xf3\xaa\x13\xbb\x8e\x80\x22\xa3\x8c\xe9\x97\xc9\x4b\x5b\xaf\x97\xe0\xba\x62\x1f\x7e\x09\x67\x1c\xe6\x38\xc2\xa3\x9e\xe6\xc6\xe2\x5a\x68\x80\x19\xdd\x16\x76\x75\xce\xae\xc2\x1c\x6b\x42\xa7\xc8\xc4\x76\xd1\x29\xdc\xc6\x93\xc3\x92\xa0\x2b\xe9\x1b\x87\x43\x7a\x08\xa0\xeb\xf1\xa7\xbd\x97\x6b\xa2\x37\x74\x76\x68\x38\xb8\xd6\x02\x4f\x5b\xb9\xb0\x7f\x3c\x6b\x71\x9b\x4d\xe1\x5b\x72\x44\x80\x48\xab\x70\xdb\x3d\x4b\xea\x77\xba\x35\x9b\x51\xb1\xec\x17\xdb\xe8\x01\x0a\xef\x02\x44\xa8\x07\x9c\xa8\xb9\xa2\xa7\x97\xf3\xb1\xfe\x04\x7c\x8d\xd5\xca\xb7\xfb\x48\x68\x29\x23\x9c\x4e\xf6\xd9\xa3\x83\x70\xd4\x88\xc4\x7b\x7c\x03\x0e\x49\xa5\x50\x0c\x9a\xbb\x39\xa9\xa5\xab\xfe\x72\xe9\x18\xb7\x63\x84\xec\xaa\xfe\x16\x27\x26\x6c\xd1\x4e\x69\x6c\x09\xd2\x51\x2e\x31\x25\x82\xa8\xa9\x11\xe7\xb7\xbf\xa0\x4c\x21\x81\x9a\xf6\x87\xf0\x4c\x5e\x0c\xbe\x9a\x2c\xe2\x4d\x4d\x3f\xd1\x21\x90\xb2\x53\xda\xbc\x12\xc6\x3c\xab\xfa\x94"}, {{0x53,0x11,0xf3,0xc9,0x61,0x01,0xcb,0x8b,0x7a,0xbc,0x62,0x2b,0xb9,0x32,0x6b,0x8f,0x51,0x3c,0x2b,0x16,0xd2,0x94,0xdf,0x79,0x7f,0x56,0xdf,0xd8,0x20,0x3d,0xda,0x27,},{0x23,0x0b,0x70,0x02,0xf5,0x7c,0x79,0xae,0x2e,0x6b,0xfd,0xb8,0xdf,0x30,0xdb,0x3e,0x90,0x07,0x56,0xb5,0x4a,0xf3,0x96,0x8c,0x67,0x0e,0xe2,0xf3,0x2b,0xb1,0x1e,0x0a,},{0x3c,0xbb,0xb2,0x60,0x88,0x70,0xde,0xa1,0xef,0xee,0xbb,0x3f,0xbf,0x68,0x1e,0x27,0x70,0x5c,0x35,0xe4,0xdd,0xee,0xa8,0x6c,0x1b,0x34,0x2a,0x77,0xdc,0x29,0x6b,0x49,0x84,0x19,0x80,0x8e,0xac,0xbc,0x78,0x85,0x56,0x11,0xff,0xbc,0x92,0x65,0xa7,0x47,0x98,0xe5,0x18,0x27,0xe6,0xe5,0xd8,0x11,0x81,0x6d,0x3c,0xa2,0x1e,0x8b,0x9c,0x06,},"\x61\xb1\x5b\xe3\x7c\x4e\xb3\x97\xd9\xe7\x7e\x00\x15\x1a\x28\xed\x3e\x86\xd5\x0a\x95\x52\xbb\x48\x50\xb6\x21\x76\x3f\x01\x2e\x7e\x77\xbb\x5d\xb8\xf3\xdf\x7d\xcf\x76\x9f\x2d\x1d\x46\xd8\xd6\x0b\xae\x40\xc8\xca\x6e\x25\xc6\x41\x0b\x60\x07\x8a\x93\xfd\x05\x90\x21\x14\xbd\x91\x04\x5c\x06\x19\x2c\x70\xc4\x2c\x9f\x41\xf8\x16\x1c\xa4\x65\x64\xeb\xc2\x1a\x4b\xdd\x81\x90\xeb\xa2\xae\xb3\x09\x82\x30\x72\xec\x2c\x02\x00\xce\x64\x98\xf9\xd7\x2b\x37\xb3\xfb\x46\x67\x74\x32\x6d\xf3\x7a\xd8\x80\xd8\xed\xdb\x32\xaf\x67\x3e\x45\xd8\x8e\xec\x49\xb1\x57\x7b\x43\xb8\x63\x91\x11\xc2\xe0\xb9\x41\x87\xd2\xd4\xe0\x17\x3c\x00\x0f\x4c\x37\xbe\x84\x5d\x68\x81\x0b\x78\x89\xff\x2a\x04\x9f\x3f\x9f\x24\x5e\xc7\x0f\x21\xde\xf9\x77\x80\xb6\x11\x40\x0a\x83\xc3\x1a\x79\xd9\x3a\x8e\x98\xb6\x08\xfd\xcf\x24\x88\xb0\x68\xfe\x1a\xe4\x21\x72\x93\xa9\x36\x7b\xb7\x34\xb5\xbc\x7b\xd8\x81\x9b\x37\x7f\x09\x0b\x4f\x8f\xdb\xff\x50\x79\x9c\x76\x88\x0d\x19\x13\x35\x80\xe1\xdd\xfc\x2b\x9b\xaa\xdd\xba\xb3\x4f\xc6\xfd\xc0\x78\x01\x4b\xd1\xff\x73\x9d\xaa\xfe\x54\x76\xf3\xf7\x9d\x4d\xbe\xc2\x16\xfa\x76\x80\xee\x8e\x84\x00\x2d\xcb\x9d\xdb\xc7\xfc\x1e\x1c\x8e\xf4\xf1\xb2\xa2\x08\x1b\x92\x82\x24\x3d\xa6\x15\x3c\x1f\xce\x09\x05\xcf\x35\xf8\x3a\x68\x4c\x01\xb0\x45\x57\xec\x84\xf7\xe9\xa9\x4f\xc2\x88\x2e\x2f\xf1\x9f\xea\x21\xd2\xce\x61\x67\x86\x1c\xe0\x1d\xf8\xb8\xd3\xc3\xe8\xd2\x55\x61\x0b\x7a\xf2\x59\x6c\xd5\xcf\x00\x16\x73\x49\x42\xcc\x71\x4c\x27\x2c\x05\xfd\xa9\xd3\x47\x23\x62\x66\x46\xa4\x61\x30\x18\x2c\xeb\xcf\x17\x9e\xc0\x0a\x6a\x17\x3b\xd8\x57\x7f\xa8\x45\xc4\x4d\x19\xc6\x99\x79\x44\x75\x5f\x2b\x4e\x46\x85\x63\xa7\x5e\x90\x16\x52\x3b\x87\xdd\xac\x3e\xee\x21\xbc\xbc\xa0\x8f\xcc\x29\x54\x6a\x43\xcb\xe0\xd8\xd1\x0a\x0e\x8d\xdc\xba\x17\x2d\x1d\xed\x15\x03\x78\xe1\x8b\x36\x8c\x77\x63\x91\x3e\x4b\x40\x70\x12\xfd\x76\xa8\x72\xd2\xcb\x04\x93\x0b\x8e\x22\xb3\x08\x24\x3d\x4c\xc2\x78\xfd\xf2\xe1\xf9\x40\xae\x89\xac\x89\x1b\x9e\x06\x61\xae\xe5\x53\x93\x7b\xf3\x50\xb4\x07\x07\x0a\x1b\xdf\xc4\xf7\xa3\x78\x7e\xf3\x99\xd2\xca\xf4\xec\x74\x43\x9c\x58\x73\x76\xc7\x7b\xe0\xc3\xde\x53\x9d\x3a\xc2\x60\x89\x76\x5b\x9b\xe1\x0b\x90\x38\x69\x46\x36\xe2\x62\xd7\xba\xa0\xb3\xa8\x94\x1a\x20\x15\x96\x76\x39\xf6\x04\x4c\x67\xe5\x9b\xc8\x1c\xf2\xfb\xa7\x04\xac\x0d\xf4\x8d\xa6\x03\x74\x05\xa8\xe8\xb8\xa7\xce\x3c\x58\xef\x38\xa8\x83\x53\x8b\x24\x7f\xfe\x18\x09\x7a\xf0\x95\x24\x2b\x05\x8b\xdd\x1e\x3e\x24\x5e\xec\xe0\xa7\x1b\x75\xb9\x7d\x52\xf2\x0d\x6d\x51\xbb\x97\x66\xb0\xda\x0f\xc0\x9c\x8a\xc2\xa3\x0f\xb6\xe7\xb3\x2e\xe0\x6d\xad\xf4\x6d\x73\x59\xcc\x06\x6a\xa9\x47\x85\xd8\xa8\x82\xff\x09\x7d\x78\xa8\x6b\xe2\xd4\x56\x00\xdd\x3d\x30\x60\x12\x5f\x01\xc0\x63\xe4\x88\xd5\xc3\xef\xee\x1b\xca\x1e\x58\x51\x64\x55\xff\xca\xec\x1b\x81\xef\x43\x38\x76\xbf\x09\xff\xa5\x1d\x6f\x50\x18\x58\x52\x24\x57\x9c\xb6\x7b\x56\xce\x1c\x21\x6e\xc0\xa8\x83\xe0\x6c\x8e\x15\x63\x42\x1e\xa7\x2b\x0c\x10\xd4\xbb\x31\xe4\x91\xc2\xae\x2f\xe8\x13\x9f\x24\x9e\xc9\x27\xd8\x06\xba\x08\xdb\x52\xb1\xb5\x06\x66\x90\x47\xf0\xc1\x16\xff\x37\xac\x5b\xa6\xcd\xb1\xea\xaf\x33\xfd\xad\xb0\x70\x5c\x79\x9d\x35\xac\x6d\x9c\x80\xda\x90\xc1\x43\x8b\x58\x5f\xfd\x59\x35\x0a\x26\x86\xb1\xec\x35\x16\x6c\xb9\xb6\x9a\xd0\xf5\x65\x86\xaa\x03\x27\x4d\x78\x2e\x3f\x85\x8d\xb6\x4a\xdf\xbf\x04\xd5\x22\x8a\x7b\x1c\x4a\x20\x48\xbb\xcd\xb9\x41\x15\x3a\x43\x6d\x74\x2c\x38\xb5\x8b\x4d\x7d\x13\xc9\xf1\xd6\x0e\x15\x2a\xa2\x79\x23\x49\xa3\xd9\x4e\x7e\x6b\x11\x04\xaa\x1b\x87\x09\x98\xc1\x8d\xd7\x06\x56\x54\xa8\x52\x81\xbb\x6f\x02\x7f\xaa\xd5\x56\xb1\xf5\x32\xe7\xa1\xe2\x2d\x56\x40\x69\x28\x95\x87\xa0\xef\xc9\xc1\x58\x5d\x13\x5f\x31\x23\x3c\x41\xf4\x40\x46\x6e\x71\xfe\x90\x12\xe5\xf9\xa0\xd7\x4a\x72\x82\xee\x39\x2f\xb0\x16\x5d\xb7\x9f\xf1\xd3\x17\x6e\xd0\x8a\xfe\x1d\xaa\x66\xcf\xbf\x43\x05\xae\x16\xac\x17\x92\x33\x43\x99\xf7\x1b\x19\x17\xdd\xec\x27\x0a\xcf\xf6\x65\xea\x05\xd1\x84\xc2\xc5\xcd\x2c\xcd\x90\x2b\x22\xf9\xb7\x19\x5e\x66\xa6\x55\x56\xca\x88\x4b\xa6\xf5\xda\x04\xdc\xd4\x61\x7f\x33\xdc\x2b\x44\xa0\xea\x74\x2a\xeb\x2b\x93\xf3\xa4\x1d\xf7\x95\x7a\x02\x67\x97\xa5\x85\xce\xee\x81\x4b\x19\x75\xf5\x23\xd2\xdb\x5d\xbb\x9b\xe0\xca\x64\x9d\x1d\x45\xdc\xfd"}, {{0xd2,0x90,0xff,0xd9,0x33,0x95,0xbd,0x5f,0xc5,0x87,0xd1,0xab,0x51,0x18,0x66,0xe7,0x2b,0x37,0x1a,0x17,0x35,0x73,0x2d,0x9d,0x5c,0x6a,0x18,0xdd,0x46,0x5e,0x93,0x63,},{0xfd,0x4a,0xad,0x73,0xb0,0x32,0x46,0x1c,0xa0,0xaa,0xe8,0x71,0xca,0x70,0x16,0x38,0x3b,0x2b,0xe0,0x16,0x90,0x53,0xfd,0xbf,0x6c,0x59,0x14,0xfd,0xd6,0xdd,0x6f,0x92,},{0x21,0x70,0x4d,0x5e,0x62,0x6d,0xcf,0x6a,0x9d,0xcd,0xef,0x93,0x54,0x29,0xeb,0x7f,0xb5,0xb2,0x57,0xee,0xcd,0x7b,0xf7,0x4a,0xcb,0x0c,0xd3,0x0e,0xcf,0xcf,0x60,0x8d,0x0c,0x5b,0x63,0x3a,0x4a,0x8a,0x9b,0xa2,0xcc,0x82,0xa2,0x1e,0x03,0x35,0x5e,0x01,0xd8,0x5d,0xae,0x7e,0xca,0xc8,0x89,0x6d,0xc1,0x5d,0xae,0x04,0x85,0x70,0x71,0x04,},"\xeb\xd9\x00\xbc\x91\x0c\x5e\xcc\x4d\x97\xda\xf7\xcb\x5e\xbb\x54\x91\x50\x0b\x7a\xd1\x16\xe3\x06\x60\x95\x07\x09\xd8\x08\x4b\xb6\x43\x4c\x5b\xea\x4a\x8c\xcc\x1e\xd5\xa8\x01\xbe\xbb\x1a\x11\x78\x78\xc0\x37\x47\x00\x3e\x14\x8e\xd9\x14\x34\x83\x2e\x89\x66\x24\x1a\x7f\xff\x22\xfe\x1d\x6d\x8c\x3c\x3d\xdd\x72\x15\xa1\xef\xaf\x4b\x07\xaf\xee\x1b\x25\x67\x3a\x14\x39\xea\xac\x32\x4e\x89\x5d\x4b\xe8\x39\xe9\x76\xc0\x3a\xc0\x01\x25\x48\x76\x88\x8c\xca\xaf\x39\x12\x72\x7a\x60\x10\x6a\x87\xbe\x69\x24\x7c\x9e\x43\x8c\x31\xfc\xa8\xd9\xc6\x1b\xae\x36\x8c\x83\xe4\x09\x01\xa9\x97\x00\xdf\xf8\x39\xb5\x13\xba\x8d\xc4\x2d\x93\xce\x09\x87\xa2\x33\x34\x70\xa9\xf9\x83\x31\x3f\x91\x98\x86\x59\xda\x54\x03\x9e\x49\x9c\xd1\xaf\x2b\x8f\xa0\xeb\xe7\x50\xe2\x4d\x55\xc2\xa5\xbd\x1a\xde\x3f\x68\x00\x92\x54\x2b\xd1\xbe\x0b\x97\x35\xba\x39\x3a\xd5\x69\x7d\x24\x1e\x8e\x8b\x28\x64\x6d\xb2\x7d\x2f\xb5\xa9\x40\xe8\xfa\xea\xf0\xb6\xc9\xef\xda\x88\x61\x5d\xec\x89\x1c\xe7\x32\x93\x08\x13\xbf\xbb\xd0\xbc\x5f\x82\x10\xab\xe8\x43\xbe\xb5\xe4\xf0\x28\xf4\x9b\xea\x34\xf1\xe5\xb0\x9e\xac\x4c\x66\x62\xc7\x4f\xba\x39\xde\x4a\x96\x02\xa9\x69\x4a\x85\xc7\xc1\x37\x5f\xda\xdf\xda\x6a\x19\x57\xfc\x5b\x59\x87\xa6\x87\xb0\x39\x95\xe5\x16\x97\xa1\xab\x5b\xb6\xcb\x11\xb6\x63\xc1\x37\x2f\xad\xe4\xc0\xac\xa8\xfb\xeb\xb4\xeb\x54\xce\x7c\xe3\x6c\x69\x04\xea\xf6\xea\xb2\xf3\x4f\xac\xd8\xc7\x68\xc8\xd3\x6d\xa2\x39\x7b\x1a\x02\x73\x5a\xea\x72\xcf\xaa\xd0\x39\x34\x10\xdb\x52\x7a\x8a\xb2\x36\xd4\xcd\xab\xdc\x88\x8f\xac\x6f\x18\x21\x48\xb1\x32\x61\x44\x25\xd3\x90\xff\x03\x6e\x54\x85\x5e\x42\x03\xc5\x12\x03\xc1\xf4\x3e\x37\xbb\xf6\xb9\xbf\x27\xf5\xb7\xe7\xc6\x65\x15\x14\x65\x40\x1a\xc3\x2c\xbe\x9e\x33\x50\x53\x5e\xdf\x48\xa7\xbc\x36\x03\xe2\x23\x2e\x93\x8f\x9a\x81\x5a\xc4\xd1\xde\xec\x99\x1e\xf9\x62\x09\x48\x44\x1f\x7a\x2f\x4a\x46\xe2\xc4\x00\xab\x91\x4c\x4b\xe5\x1d\xca\xad\x8e\xd8\x23\x9c\xbb\xe9\x77\xa9\xf0\x9c\x02\x69\x83\x19\xd9\xfe\x2a\x8c\x6e\xb6\x0b\x79\x9f\x29\xae\x76\x59\x97\x0d\x2e\xbd\xff\x3c\x6c\xf7\x09\xbb\xf6\xf4\xbb\x55\xb9\xdf\x4f\x61\xa2\x41\xde\xc1\x44\xb5\x99\x3f\x08\x7e\x78\x4b\x97\xbe\x1e\x53\x60\x8c\x2e\x81\x7c\xe3\xd9\xaa\xf9\x14\xe6\xb7\x23\xf5\xb4\xaf\xff\xd2\xa6\xb9\xfe\x9d\x2d\x73\x91\x5c\x7a\xd1\xff\xb1\x3e\xfc\xb7\x3c\x56\x23\x81\x95\x64\x52\x03\x98\x4c\x99\xaa\xfd\x02\x35\xf7\x3b\x3f\x88\x2e\x07\x39\x39\xbf\x78\x66\x57\x28\x01\x38\xdb\x05\xb8\x6f\xcc\x94\x60\xb3\x85\xef\x45\x59\x20\x4e\xcd\x81\xe2\xf1\x2f\x5f\x06\x2a\xa4\x48\xdc\xcc\x82\xea\x8d\x89\x46\x6d\xd1\xbe\x46\xf8\x2c\x4f\x87\xbf\x0d\xb2\xb8\x78\xac\xbb\x0d\x91\x12\xc8\xdb\x6f\x51\xd3\x5f\x6d\x42\xf7\x49\x85\x6b\x99\xe5\x50\xb6\xc4\x54\xe9\xe8\xbe\x4d\xa1\x75\xf0\xb5\xe8\x6b\xe6\x6c\x97\x9f\xd8\x78\x23\x7e\x57\xf6\x91\xf0\xd2\xac\xd0\x28\xfb\xff\xa5\xb0\x66\x87\x75\x03\x4d\xb1\xf2\x1d\xdb\xe7\x11\x4e\xe3\xdc\x0b\x44\xda\xca\x64\xc5\xa0\x3a\x2f\xee\xae\xab\xeb\x70\x63\xbf\xcc\xcc\x55\x9b\xaf\x27\xf1\xcc\xb2\x20\x2f\xa4\xd1\xb2\xbf\x44\xc0\x4b\x2c\x2f\x81\xf9\x4e\x28\x1b\x1a\x5a\xdc\x85\x0d\xa1\xb9\x47\x9f\xca\xbd\xda\xde\xa5\x6a\x11\x5b\xb5\xf0\x6c\xc0\x16\xf1\x41\xc0\xfc\xb5\xe8\x3a\xb2\x48\xea\xec\x90\x15\x8d\x8b\xe6\x47\xaf\xf1\x2e\x7e\xeb\x5e\x57\xdb\xcc\x29\x3c\xb3\xb6\xaa\xcb\x55\x23\x6d\x4a\x83\x9a\x06\x20\xf4\x76\x23\x87\xdd\x17\x14\xdf\x5c\x13\x5e\x3d\x9d\x68\x24\xf9\x3b\x7c\x90\xd3\xae\x38\xc5\x18\xd6\x07\x12\x0c\x83\x95\x70\x41\x3b\x46\xb8\xcc\xd7\x37\x04\x92\xd8\xae\x5c\x60\x9e\x00\xcf\x82\x51\xe2\xe7\xdf\x81\xe5\xb4\xf9\xc1\x6a\x5a\x53\x9f\x0a\xfc\xce\x41\xbb\x43\x62\xe5\xea\xa5\xf9\x40\xa1\x70\x6f\x4a\xfb\x6b\x14\x43\x2c\x81\xd4\xba\x1a\x33\xd3\x22\xdb\xf1\x06\x45\xab\x63\x73\x7e\xad\xc8\x6f\xe6\xe0\x97\x6f\x76\x33\x97\xfb\x89\x86\x37\x59\x5d\xfd\x36\x93\x47\x92\xd7\x79\xe2\x4c\x2a\x3f\x0b\xac\xf5\x3e\x04\x73\xc5\xfd\xa9\xc6\x12\x84\xe4\x41\x9b\xdc\x0e\xef\x5d\x22\xf4\xd9\xbf\x42\xe8\xc0\x49\x33\xbb\x93\xb5\x3c\x29\x5d\x7a\xc9\x39\x5a\xbb\x6d\xcb\xd7\x42\xb1\xe1\xbc\x3b\x0e\xa4\x43\x4e\xa2\x1b\x8e\xca\x9a\xe6\x82\xd3\x31\x5a\x41\xe9\xc3\xc3\x37\x18\x40\x76\x1d\xc5\x9c\xac\x45\xda\x7e\x38\x13\xe2\x87\x88\xdc\x89\xde\x35\x5b\x5a\xee\x08\x80\x90\xa3\x8d\xd3\x9d\x83\xe5\xe4"}, {{0xd7,0xfd,0x73,0xd1,0xd2,0x29,0xa6,0x58,0x94,0x42,0x0e,0x4b,0xa7,0x34,0x27,0x0d,0x5a,0x20,0x75,0x83,0x64,0xde,0x89,0x7d,0x85,0x55,0xe2,0x41,0x97,0x45,0x3c,0x19,},{0x3c,0x22,0x77,0x2a,0xec,0x0a,0x0c,0x15,0x59,0x07,0x7f,0x2c,0xfd,0x1f,0x24,0x65,0xd4,0xb4,0x84,0x95,0xc5,0xd0,0x5f,0x1f,0x83,0x7c,0x31,0x84,0x5f,0x34,0xca,0xd1,},{0x40,0x0c,0x35,0x05,0xf1,0xdf,0xa8,0x0d,0xf4,0xb2,0x6d,0xb2,0x4c,0x02,0x7e,0xb8,0x19,0x77,0xf0,0xfb,0x9b,0x5a,0xca,0x52,0x4a,0xd5,0x12,0x00,0xf4,0xbf,0xb1,0x33,0xdb,0x83,0x48,0x23,0x31,0x41,0x95,0xf4,0xed,0xc2,0x92,0xd5,0xf5,0x30,0xd0,0x85,0x56,0xe7,0x80,0x9c,0xaf,0x23,0x39,0x76,0x8a,0xa3,0x80,0x29,0xfd,0xbc,0x28,0x0f,},"\xc9\x22\x58\x59\xd5\x55\xbc\x42\x01\x1a\xf1\xb4\xf1\x49\x98\xe6\xe9\xb0\xa6\x5e\x21\x72\x71\x3e\x96\x83\x80\xfb\x6c\xee\xdd\xa2\x2e\x02\x2c\x51\x30\x30\x31\xd9\x93\x1c\xce\xf2\xf7\xbc\x70\x5c\x9e\x21\x5c\x1d\x08\x9d\x48\x8d\xad\xda\xee\x15\x5c\x93\x9b\x62\x02\xca\x53\xbf\xc7\xf6\xe8\x8e\x15\x29\xd8\x2f\xb4\x5e\x02\xb5\xd0\x5a\x82\xbb\xb9\xdb\x5f\x41\x5c\x58\xba\x8b\xd5\x6c\xff\xd9\x22\x70\xb2\x47\x49\xe5\x6d\x12\xc9\x9a\xe9\x0c\x78\x00\xf5\x4f\x55\x25\x4e\xa4\x2d\xa5\xdc\xfb\xe0\xe1\xd9\x89\xcd\x2f\x68\x97\xe2\x32\xdf\x04\x70\x7b\x34\xaf\x75\xfa\x7f\xec\x33\xe5\x5e\xd5\x6a\xee\x39\xc2\x2b\x04\x5b\xed\xd1\x61\x08\x3b\xc5\x51\x4c\x1f\x81\xca\x90\x7b\x7c\x76\x03\x17\xa7\xfd\x5a\x5a\x02\xa5\xd4\x0e\x2e\x82\x3e\x24\xad\x96\xae\xf6\xda\x8e\xa9\x82\xb5\x16\x1c\xc3\x9d\x84\xaa\x2f\xfd\x95\x44\xc1\x1b\x63\x40\x37\xab\x0a\x1c\x8e\x36\xac\x63\x01\x9d\xa1\xb2\xd9\x95\xcb\x7b\xd3\xd6\x2f\xe5\x74\xde\xab\xcc\xbd\x0d\x3a\xe7\xa5\x6e\x5b\xec\x91\xe4\xba\x3f\x3d\xb8\xbf\xea\x88\xe6\x7d\xa6\x2e\x88\x27\x8a\x6e\x3b\x41\x8d\xce\xea\x05\x89\xf2\x5f\x7d\xd8\xad\x19\xdd\x84\x50\x89\x41\x9b\x47\x2e\xfc\xcc\x87\x9c\x17\x2b\x32\xee\x4a\x4d\xbc\x2e\x6c\x2e\x86\x5b\xb3\xb8\xca\x0a\xdc\xb7\x1f\xdf\x89\xe1\x97\x39\x10\xef\x24\x29\x15\xf3\x3e\x23\x6d\x2f\x7c\x8e\x9f\x1e\xe5\xb0\x7c\x6e\x3c\x25\x36\x0f\x8c\xb1\x46\x0b\xe8\x7d\xb3\x1a\x29\x1d\x4d\xee\x34\x95\x3e\x75\xc6\x75\xbf\x18\x1b\xb7\xa0\xb7\xb5\xc1\xbe\xfd\xc8\x6a\xda\x07\x2a\x48\xf6\xac\x75\x5d\x49\x9b\xd6\x8d\x62\x5d\x85\x14\x52\x5c\xc3\xab\x8f\x54\xce\x15\xa8\x71\x29\x17\x78\xde\x13\x05\xd2\x21\x93\x61\xaa\x30\xe3\x32\xa2\xe0\x69\x07\x7c\x5c\x53\x45\x75\x20\x37\x9d\x8b\x90\xd2\x4b\xd8\xa3\xa7\x70\x0f\xf7\x66\x23\x1c\xb5\x69\x7f\x9a\xce\x52\x1a\x99\xe8\x96\xda\x54\xc4\x07\x93\xbc\x7c\x1f\xb1\x58\x4b\xb1\xc8\x61\x94\xd2\xfb\x7a\x4b\x80\x2f\x30\x88\x5e\x0e\xe8\xaf\x88\xd6\x88\x6e\x3a\x3a\x4d\x4c\x85\x46\x49\xcc\x01\xab\xdf\x35\x31\x9a\x08\x56\xcc\x65\xd0\x92\xa3\x86\xf8\x86\x96\x25\xcd\x0a\xca\xc0\x87\xe9\x35\x17\x90\xcc\xb4\xa8\x65\xf6\x51\xa8\x81\xc3\xeb\xf1\x09\x07\x27\x74\xf9\x40\xf5\xaa\x98\xa2\xa2\xaa\x3d\xd3\x66\x47\xd0\xde\x83\x00\x1a\xa7\xcd\xc0\x31\xcc\x4a\x4d\x75\xdc\x11\xce\x55\x16\x76\xa2\xad\x43\xa3\xf6\xa1\x6a\x4b\xc5\xae\xe8\x0e\x53\x64\x20\x60\x87\x36\x4e\xb8\xb2\xb1\x5f\xb7\x05\x38\x0a\x07\x2d\x7c\x8b\x51\x99\x59\x43\xaa\x76\x2e\x8d\xeb\x4c\x56\x8c\xda\xa1\x41\x1a\xb6\x8f\x28\x48\x9e\x13\x23\xbb\x61\x56\xce\x25\x00\xb0\x6e\x77\x93\xc5\x10\xa3\xde\x29\x15\x08\x40\xbf\xdb\x0b\x2b\x7b\x21\xc2\xbb\x8a\x77\x46\x16\x7c\x92\x9d\xd0\xad\xad\x44\xfe\xd8\xf3\x6e\x83\x81\xb3\x42\x08\x0b\x2a\x7d\x82\xa3\xf8\x1f\xf7\x26\x30\xcb\x78\xdf\x91\xf7\xb6\x5a\x44\xef\xf6\xed\x64\xd4\x8a\xfe\xd1\x09\xdd\x7a\x69\x3a\x1b\xa8\xc3\x7e\x00\x8f\xcb\x15\x7e\x37\x29\x7d\x32\xeb\xa7\x65\xa6\xc7\x19\x3e\x73\xbd\x97\x64\x79\x85\xb1\x60\x38\xc7\x4a\x08\x4a\x8f\x25\x65\x4c\xd8\xcd\x2c\xdd\x27\xff\x17\x33\x4e\x06\xad\xaa\x05\x82\x64\x01\x7a\x3b\x2d\xa7\x8e\x57\x38\xa2\x7e\x35\x0d\x88\x2f\x5f\xae\x19\x92\x78\xd4\xe5\x0b\x8b\xad\xf5\x7c\x21\x41\xdf\xdc\x3c\xff\x99\xdf\x5d\xe8\x6f\xec\x29\x3c\x76\xcb\x94\xb6\xb1\x9b\xa3\x03\x4e\x46\x0f\x84\xc2\x80\xa2\xe6\x41\x2f\xab\x56\x98\xce\x89\x02\x07\xca\xba\xbc\xa0\xa9\x5b\x5a\xd5\x33\xce\x11\x4b\xf7\x1a\x40\x4a\x87\x59\x0d\x35\xfa\x7c\xed\xba\x43\x13\x1c\x4e\xe9\x23\x44\x83\x9f\x25\xcb\xfa\xeb\x12\xae\xeb\xc8\x04\x08\x93\x95\x1a\x34\x6b\xd2\x8f\xdd\x16\x7b\xd2\x0f\x71\xa1\xe5\x9f\xb6\x0d\x55\xe1\xc5\x67\xf4\x78\xf0\x27\xcf\x67\x9a\x37\xd1\xd9\xdb\x86\x7e\x17\xbf\xdd\x60\xb3\x47\xd8\x9d\x32\x26\x39\xd3\x15\xbb\x7a\x2c\x91\x34\xf0\x0e\xa0\x3a\x36\x7f\x30\x5e\xa4\xd6\x0d\xc9\xd5\x67\xcf\x92\x48\x51\xe4\x69\xea\x95\x4e\xd3\xea\x63\xea\x86\x06\xf7\x9f\x07\x73\x39\xbf\xa2\xb5\x1a\xe4\x9b\xaa\x0f\xb2\x53\x77\x82\x1d\x7c\x11\xef\x9a\xd4\xbb\x4c\x0f\xe4\x89\xac\xba\xb0\xef\x00\x0d\x61\x8c\x7a\xf5\xef\xd2\x05\xd6\x85\x99\xfc\xbd\xd9\x5e\x28\xf8\x36\xe0\x91\x6f\x9f\xf5\x48\xd0\xba\x17\xda\x62\x53\x6e\x74\x64\x68\x01\xee\xb6\x12\x2b\xa3\x2c\x41\x07\x3a\xe0\x4e\x42\xc6\xc1\xd5\xd8\xd2\x29\x76\xa5\x62\x26\xdd\xf4\xb6\xac\x95\x45\x5f\xb5\x30\x99\xf2\x02\x15\xb2\xeb\xc9\x07"}, {{0xfd,0xa7,0xcb,0x08,0x40,0x16,0xba,0x51,0x3c,0x7c,0x4f,0x8f,0x71,0x80,0x48,0x0b,0xb1,0x81,0xe9,0x56,0x95,0xea,0x68,0x73,0x7f,0xa3,0x4a,0x40,0xec,0xbd,0xf3,0xef,},{0xa2,0xde,0x3a,0x0e,0xf9,0x72,0x98,0xfd,0x71,0x61,0x06,0xe2,0xf3,0xf5,0x45,0x13,0x05,0x7a,0x40,0x07,0x2d,0x23,0x4c,0x35,0x18,0x15,0x4c,0x1b,0xd1,0x2d,0xe0,0x37,},{0x33,0x61,0x4b,0x7a,0x94,0xf7,0x5e,0x03,0x65,0x34,0xd7,0x6e,0x30,0x14,0x7e,0xcc,0xdd,0x2a,0x04,0xe0,0x0c,0xd4,0x70,0x4a,0xb6,0xe8,0x07,0xd6,0xa2,0xac,0xc1,0xe1,0xd9,0x63,0xb8,0xee,0xe0,0x81,0x0d,0x41,0x2d,0x9d,0x56,0xe5,0x45,0x56,0x30,0x2b,0x10,0x73,0x0c,0x15,0xab,0xf8,0x9c,0x29,0xa0,0x27,0x30,0x3e,0xa8,0x8a,0xe7,0x01,},"\xc2\x1b\xb3\xf8\xe3\x7b\xef\xa3\x67\xc9\x13\x67\x31\x01\xba\x30\xd3\xb5\xc7\x4b\xd8\xbd\xb0\x9c\xd2\x86\x40\x01\x2d\xb4\x11\x20\xc2\xbc\xc4\x08\x5d\xe2\xa0\xf9\x5c\x92\x15\xdd\xef\x8c\xb5\xfc\x8d\x8b\x12\x51\xb4\x15\x27\xc6\x7d\xfa\xa3\xf9\x5b\xa3\x57\x83\x91\xea\x5a\x66\x29\xa7\x33\x09\x5f\xd0\xa4\x3f\xdb\xa4\x0f\xfe\x26\x0f\xff\x82\xac\xee\x2e\xbe\x98\x0e\x9e\xce\xcc\xfe\x7e\x10\xb2\xed\x8c\x2e\x6b\x41\x0d\x54\x7a\x12\x86\x57\x1d\xf3\xd7\x01\x17\x4e\x57\x9f\xcf\x19\xd3\xbd\x80\x86\xc0\x42\x3f\x37\x11\x77\x89\xf3\x05\xd9\x67\x0a\xd2\x8c\x99\x67\x4f\x52\xcf\x64\x21\x1a\x08\x1d\x0c\x6c\x30\x96\xda\x2c\x71\xbf\x5f\x57\x99\xa7\x91\x0e\x6f\x38\x10\x4a\x37\xa6\x55\x7c\x2d\xae\xf3\x40\x81\x4a\x1f\x83\x0d\x59\x37\x73\xc6\xcf\x48\xd8\x3e\xa0\x72\x94\xb9\x4e\xb0\x80\xb8\x5d\x69\x70\xe2\x8f\x40\x51\xd5\x06\x6d\xb1\x0e\x96\x19\x73\xa6\x26\xa8\x26\xae\xaf\x8a\x06\xec\x0d\x56\x6b\x7e\x0c\x4e\xf6\x0f\x0c\x56\x78\xfc\xbb\x5b\x2a\xc6\x3f\x7b\xed\x06\x44\x8a\x24\x7b\x3d\x42\x7b\x87\x08\x6d\x33\x57\x3f\xb2\xd7\x22\x8c\x5c\x34\xea\x66\x40\xee\xfa\x95\x64\x48\x5a\x79\x63\x8e\x9c\x97\xc0\xaf\x84\xcf\xee\x7c\xe4\xa7\x39\x22\x0c\x84\x29\xe0\x67\x14\x39\x53\xd5\x50\x66\x8d\xad\xc8\x4e\x7b\xed\x9a\xb0\x70\xa5\x94\x33\x90\xc6\x11\xd7\x5b\x1c\xb1\x28\x73\xa3\x7d\x98\x50\x66\x1a\x00\x77\xbf\xa9\xca\x9b\x8b\x26\x37\x66\xc1\x49\xff\x0e\xe4\xb4\xad\xba\x25\xea\xf7\xd7\xf5\x01\xf3\x62\x45\x42\x56\xbc\x12\x69\x37\x8e\xf3\x35\x9a\x8e\xd6\xb9\x60\xb8\x66\x21\xfa\x3b\x61\x3e\xb1\x32\x12\x2f\x49\xf2\xeb\x2c\xeb\x68\x32\xa3\x99\x1e\x96\x1c\xb0\xe7\x8b\x74\x2e\xf4\xd6\x5e\x8d\xe3\x46\x96\x66\xfe\xc7\xc5\xb8\x74\x78\x95\x71\xc5\xc9\x9a\x2c\x02\xa0\x53\xff\x7d\x2f\xc9\x00\x76\xba\xfe\x1f\x26\x7f\xa8\x1a\x39\x90\xf2\x7f\xf1\x4f\x03\x00\x0a\xf0\x0c\x59\x28\x6c\xb9\xbb\x98\xe2\x04\xe9\x01\x90\xae\x2a\x50\xed\xef\x04\x9e\xa9\x2a\x1f\x78\x50\x88\xf9\x4a\xdf\x65\x88\xfb\x43\xbb\x40\xfb\xe2\x32\x42\x35\xcc\x7e\x16\x8b\x80\x26\x4b\x06\x9f\x94\x4f\x50\x36\x92\xc9\x49\x23\x4d\x5b\x76\xbc\xff\xab\xe2\x9f\xf9\x06\x4b\xd7\xcb\xed\x9e\x00\xe5\xb7\xfd\xda\x43\x12\xeb\x80\x14\x65\xf1\x27\xd0\xca\x68\x83\x2a\x7f\x4e\xd0\xea\xed\x8f\x55\x9c\x16\x31\xcd\x4d\x34\xf0\xdc\x41\x4d\x9f\xcf\xe8\x49\xa9\x1e\x25\xf3\xe0\xff\x01\x3a\x8c\xff\xa8\x06\xed\x8e\x93\xd0\x8a\x1e\x5a\x75\x76\x82\xca\x3d\x26\xab\xc8\x69\xc7\x6f\x1c\x79\x00\x7d\x55\x9d\xfe\x67\xe7\x8d\x8a\xf0\x19\x58\x08\xb0\xe7\x71\xc7\x1e\x64\xb5\x71\x6f\xb3\x63\x09\xc2\x50\x25\xfa\xe6\x41\x4c\x28\xbb\xdb\xd4\xde\x59\x7a\x74\x99\x6c\x9d\xa9\x74\x92\x0d\x59\xe6\xf4\xc2\xed\xfe\x11\x0f\xf8\x17\xfd\x48\x0a\x50\x80\x97\x80\x48\x86\x57\x12\x05\x8c\x5f\xe7\xb5\x60\xb1\x2b\x67\xf7\x37\xea\x6e\x2a\xf9\x24\x2c\xf0\x7a\xd0\xa8\xa6\x79\xf2\x64\x30\x04\x6a\xdc\x3e\x70\x66\x4c\xc9\xc0\xee\x5a\xbc\xef\x6d\x72\x6b\x4e\x04\x17\x60\x48\xb7\x95\xbe\x12\x85\x1b\xdb\x74\x00\x3a\x13\x20\x41\x19\xb8\x68\x64\xd6\x53\x5b\xa0\x95\x04\x0a\x85\xd9\x78\x1c\xf4\xf3\x48\x0a\x30\x4e\x22\x7f\x78\x7a\xd5\x38\xe6\x8f\x4b\xab\x01\x41\x79\xe3\x0d\x3f\xde\xf9\xef\xf1\x1b\xcf\x47\x1f\xa3\xa0\xbc\x74\xb5\x57\x6f\x30\x2d\x3a\x6b\x49\x9f\x11\xf2\xef\x32\x6a\xc0\x26\xc9\x8d\xb1\x0e\x27\x41\x41\x3f\x32\x22\x28\xb3\xcf\xf0\xf3\x37\xba\x2f\x29\x4c\x78\xef\x73\xf0\xe8\x77\x87\x8f\x8f\xc7\xff\x6d\x10\xbc\xe6\x6a\xd6\x28\x43\x79\xb8\x0c\xa8\x93\x27\xd4\xdb\x0b\xf1\x4e\x6d\x8f\x01\xb2\x2a\xb2\x02\xb7\x16\xcc\x07\xe3\xc8\x86\x6d\x16\x8a\x50\x94\xba\xc5\xa4\x95\xe7\x38\x68\xee\xdc\x27\x22\x2e\x64\x44\xf8\x3b\xcf\x65\xac\xdc\x3e\xc8\x91\x20\xbb\x50\xe8\xab\xfc\x28\xb7\x8e\x6d\x98\x0c\x77\x5f\x48\x49\xa0\xe8\xca\xda\x80\x24\x0b\xca\x24\x5e\x39\x96\x6e\x89\xa0\x34\x4d\xf8\x36\x3a\x7d\xcc\x81\xb2\x01\xce\x9c\x75\x3a\xd5\x44\xe1\x12\x4e\x21\x02\x0d\x4c\x62\xde\xda\x9e\xd9\xb9\xd1\xf2\xfb\x7c\x54\xca\x7a\xb0\x9f\x38\x3b\xef\x48\xcf\xc6\x84\x8c\x27\x13\x02\xa1\x0f\xa6\x87\xf5\x6e\x00\xe0\xa7\xd0\x93\xc9\x27\xb4\xfd\xd8\xf1\xbe\xdf\x62\x88\xa0\xe3\x02\x84\x8a\x80\x12\xf1\x27\xa7\x9d\x2d\x30\xa0\x6c\xe1\x7d\x94\xaa\x6f\x7f\x8a\x1e\x6e\xb9\xd0\x68\x1c\x37\x74\xf6\x14\xcc\x6d\xbc\xb2\xa8\x13\xf9\x25\xc6\x30\x6a\x63\x05\x72\xa8\x3e\xc1\x09\xd5\xf5\x33\xc0\x58\x4c\xb4\x21\xd9\x19"}, {{0xa1,0xac,0x48,0xaa,0x5f,0xfa,0x3d,0x80,0x08,0x19,0xd0,0x3b,0x7f,0x62,0xba,0xbf,0x29,0x1f,0x20,0x90,0x4c,0x11,0xa6,0x40,0x0e,0x4f,0x45,0x20,0x5f,0x10,0x3e,0x38,},{0x08,0x54,0xe0,0x34,0x0f,0x81,0x49,0x85,0xfb,0x12,0x2b,0x78,0x72,0x94,0x79,0xe3,0xfd,0xe8,0x55,0xc2,0x11,0xca,0xde,0xae,0x56,0xf0,0xd4,0xdc,0x08,0x28,0xd5,0xfa,},{0xc5,0x7e,0x3c,0x09,0x1e,0xd2,0x4e,0x5e,0x84,0x66,0x5b,0xd9,0xbb,0x10,0x2d,0xb4,0x97,0x97,0xdf,0x90,0x08,0xf0,0x55,0x57,0xfa,0x0d,0x5a,0xd7,0xa2,0x95,0xe5,0xe4,0xd2,0xa4,0x71,0x6b,0x17,0xf8,0xc9,0x1c,0xb1,0x2f,0x5a,0xbf,0xb1,0xaf,0x02,0x7f,0xb0,0x41,0x11,0x99,0xac,0xc5,0xd2,0x85,0xd8,0x42,0xa4,0xb6,0x5b,0xde,0x49,0x02,},"\xd6\xf1\x24\xed\x75\x20\x21\xc1\x09\x26\x97\x2a\x0c\x26\xf3\xb1\x83\x8b\x3c\x7a\xf2\x47\xc1\x80\x09\xa2\x31\xec\xce\x96\x4b\xf6\x69\x86\x37\x83\x3f\x60\x7d\xca\x83\x6f\x8a\x60\x6c\x72\xae\x3c\xb1\x70\x17\x44\x47\xa2\xcc\xe5\x83\xf6\xe2\x44\xdb\xc1\x63\xe2\x15\xb9\x82\x0d\xe7\x49\x6f\xfc\x5b\x70\x50\xc4\x8f\x28\x30\x24\x66\x78\xcb\xa4\xdc\x5c\xaa\x07\xc1\x45\x85\x63\xaa\x2d\x10\xdc\xb7\x77\x0e\xf8\xfe\xde\x02\x7d\xd7\xf2\x0d\xdc\x8c\xc7\x8c\x3a\x2e\x2e\x95\x8b\xd1\x8c\x00\x06\xcf\x8f\xb8\x2d\x44\xe5\x3e\x1d\xa7\xaa\x80\xfd\x10\x06\xf3\xb2\x30\x0c\x9b\x07\x9d\x8a\x66\xf1\xe4\xa3\xf4\x70\x61\xf9\xe2\xf4\x5d\xae\x35\xdc\x29\x52\x04\xb1\x94\x60\xca\x57\x07\xab\x57\xce\x21\x5a\x24\xc1\x0f\xaa\xb3\xfa\x20\xbc\xcd\x10\x1e\x7a\x7d\x70\x07\x75\x99\xf3\xd6\x72\x57\x07\x55\x21\x29\xca\xd7\x57\xd6\x51\x4c\x1b\x28\x99\x7e\x47\x1f\x94\xb0\xfd\xed\x8f\xbb\xd0\x65\xde\xad\x19\x6d\x2c\x07\xd3\xdf\xa7\xb9\xfb\x3b\xae\x76\x80\xf7\x66\x21\x20\x0d\x09\x9e\xeb\xeb\xbe\xa0\xe8\x95\x7d\xf5\xb5\xe2\x04\xca\x3e\x9e\x29\x52\xb8\xa3\x0f\x0a\x13\x1a\x68\x67\xb1\x38\x1e\x39\x4b\x1b\x44\x43\x10\xf0\x76\x32\x66\x56\xcf\x93\x41\x67\x80\x08\xe9\x52\x51\x47\xd8\xd6\x1c\xe9\x3d\x3b\xf5\x39\x00\xca\xb9\x12\x66\x37\x17\xe0\x98\x72\x93\x83\x3d\x19\x02\xd7\xfb\x04\x7b\x99\x7b\x86\x02\x6c\x46\x7d\x7b\xb1\x7c\xf4\x57\x96\x73\x8f\x7a\x77\x4a\xc1\x26\x76\x4e\xd4\xeb\x45\x12\x43\x09\xf4\x58\x62\x60\x17\x6b\xa4\x65\x91\x8d\x48\x33\x0a\x9c\xc1\x8c\x4e\xce\xa0\xdd\xaf\x38\x94\x6a\xcc\x0e\x36\x1d\xd4\x0a\x7e\x91\x33\xce\xb5\x0e\x1c\x31\x7e\xa4\x2b\xd0\x98\x0a\x72\xb8\xba\x3d\x8a\x6c\x76\x93\xdd\x56\x02\xf3\x74\xf2\x66\x4d\xf4\xba\x56\xdf\x01\xe8\x82\xfc\xa4\x2c\xb4\xdb\x62\x1f\x47\x6c\x76\xe1\xea\x9f\xd1\x05\x91\x1a\x74\xb7\x79\x52\xd9\x91\x4a\x5a\xc0\xf9\x8a\x90\x0c\x1b\x2e\x1a\x56\xc4\xea\x85\x18\xa9\xee\x47\xc4\xed\x14\xd0\xbd\x35\xec\xa5\x60\x31\x9c\x8e\xa2\x47\x55\xd7\x1a\x4e\x03\x08\x50\xbc\x4d\xc6\x03\x89\xf3\x25\x80\x40\x21\x20\x4c\xce\xbc\x25\xfe\xdb\xd3\x2e\xdd\x8d\x84\x46\xaa\x23\xce\x56\xa8\x5f\x77\x9e\x85\x8d\x36\xaf\x7c\x07\x3c\x11\x5e\x34\x1f\x41\x2c\x66\x0f\xab\x80\x0f\xe7\x4c\x50\xe7\x14\xee\x08\x6e\x2f\xbc\x8d\x7a\xbb\xf3\xe9\x8f\xb4\x0c\xa2\x7f\x1f\x01\xa9\xaa\xdd\x8c\xc2\x27\x5c\x2d\xd3\xf7\x6e\x4c\x1d\x81\xc4\xb7\x92\xda\xec\xc9\xfe\x66\x04\x49\x41\xb8\xb2\x91\x84\x86\xdd\x4a\xcb\x56\x2a\x7b\x58\xad\x8c\x60\xc2\x1b\x83\xcf\x48\xae\xfa\x72\x56\xa1\xed\x80\x9e\x66\x98\x11\xf4\x84\x36\x49\x70\xbc\x56\x95\x08\x99\x19\xbc\x32\xd2\x8e\xa7\x52\xe8\xe3\x18\xce\xff\x46\x7f\x77\xae\x19\x77\xc5\xff\xd7\x9c\x17\xc2\xda\x8b\xc7\xf8\x23\xdd\x94\x39\x86\x83\x18\x99\x45\xf8\xb7\x92\x38\xa4\xe8\x15\xb1\x42\xb8\x66\xac\xbd\xbc\xb7\xae\xa7\xf1\x43\xff\xfb\x7c\xc2\xb4\xb5\x4b\xbf\x36\x1a\xfd\xa9\x13\xad\x6d\xf1\xe4\x9d\xfd\x6b\x53\x26\x42\xe6\x3f\x55\xd8\x93\xa4\x70\xd4\x03\x70\x66\x5c\xfb\x74\xef\xd3\xf5\x9c\xb0\xff\x60\x06\x17\x4c\xa3\x5f\x53\xb9\x7c\x54\x3e\x08\xaf\x4b\xf5\xbb\x75\xff\x90\x31\x61\x06\x52\xa3\xf6\xf2\xa0\xcf\xe9\x7e\x7a\x52\x1f\x3d\x2a\x28\x91\x14\xde\xd3\x47\x72\xb0\xe4\x98\x17\xbd\xe1\xcb\x92\x4f\xf5\x14\xe2\x86\x6a\x09\xe3\xed\xe0\x78\x2d\x2c\x0c\x98\xe6\x81\x4b\x8c\x1e\x77\x8c\xf8\x30\x63\x48\xc9\x33\xad\xb2\xe4\x72\xdb\xa0\x9d\xb9\x54\xff\x49\x64\x83\x73\x39\x5a\x2f\x01\x81\x95\x8f\xeb\x1e\xa2\x83\x4c\x99\x53\x28\x73\xdb\x5c\x88\xeb\x52\x89\xc7\x7e\x90\x01\x52\x03\xef\x50\x2a\xc8\xe1\xc4\x8f\xa1\xa0\x6d\xaf\xa6\x51\x9d\x52\xda\xe3\xc5\x56\x75\x70\xdd\x24\x34\xe6\x71\x92\x7c\x66\x36\x3f\x78\x31\x56\x89\x3f\x13\x8a\x84\xc7\x56\x64\xb3\x0a\xe4\x27\x51\x12\x73\x6d\x53\xd4\xf3\x99\xdd\xda\x3d\x23\x06\x7c\x07\x3f\x52\x1a\xfb\xa1\xf7\xbe\x58\x55\x13\xc2\xce\xc9\xc8\xf0\x8d\x2a\x22\xc3\xc8\x53\x92\xcd\x2a\xe5\x0f\x39\x28\x25\x1f\x86\xb3\x10\xc6\x9a\x0f\x8c\x4e\x85\x3a\xb3\xf3\xe8\x12\x9b\x05\x66\xef\x4b\xbb\xe8\x0b\x8c\x02\xc8\x92\x8a\x4d\xe5\x6c\x0d\x11\x9a\x45\xbb\xf5\xaf\x18\x08\xd4\x88\x85\x2d\x8a\x45\xbe\xb0\xd6\x83\x24\x8a\x4d\x65\xde\x15\x26\xb3\xd1\xd2\xff\xc1\xf2\x22\x15\xb6\x08\x46\x8c\xbc\x3b\xd3\x95\x14\xb3\x97\xfc\x0d\xb0\xf1\x13\xdb\xe6\xfc\xe4\x65\x2e\x82\xff\x89\x5b\x2b\x43\x87\xe0\x41\xd7\xe4\xe7\xbd\xe4\x69\x47\x69\x66\x5e\x81"}, {{0xf5,0xe5,0x76,0x7c,0xf1,0x53,0x31,0x95,0x17,0x63,0x0f,0x22,0x68,0x76,0xb8,0x6c,0x81,0x60,0xcc,0x58,0x3b,0xc0,0x13,0x74,0x4c,0x6b,0xf2,0x55,0xf5,0xcc,0x0e,0xe5,},{0x27,0x81,0x17,0xfc,0x14,0x4c,0x72,0x34,0x0f,0x67,0xd0,0xf2,0x31,0x6e,0x83,0x86,0xce,0xff,0xbf,0x2b,0x24,0x28,0xc9,0xc5,0x1f,0xef,0x7c,0x59,0x7f,0x1d,0x42,0x6e,},{0x0a,0xab,0x4c,0x90,0x05,0x01,0xb3,0xe2,0x4d,0x7c,0xdf,0x46,0x63,0x32,0x6a,0x3a,0x87,0xdf,0x5e,0x48,0x43,0xb2,0xcb,0xdb,0x67,0xcb,0xf6,0xe4,0x60,0xfe,0xc3,0x50,0xaa,0x53,0x71,0xb1,0x50,0x8f,0x9f,0x45,0x28,0xec,0xea,0x23,0xc4,0x36,0xd9,0x4b,0x5e,0x8f,0xcd,0x4f,0x68,0x1e,0x30,0xa6,0xac,0x00,0xa9,0x70,0x4a,0x18,0x8a,0x03,},"\x08\xb8\xb2\xb7\x33\x42\x42\x43\x76\x0f\xe4\x26\xa4\xb5\x49\x08\x63\x21\x10\xa6\x6c\x2f\x65\x91\xea\xbd\x33\x45\xe3\xe4\xeb\x98\xfa\x6e\x26\x4b\xf0\x9e\xfe\x12\xee\x50\xf8\xf5\x4e\x9f\x77\xb1\xe3\x55\xf6\xc5\x05\x44\xe2\x3f\xb1\x43\x3d\xdf\x73\xbe\x84\xd8\x79\xde\x7c\x00\x46\xdc\x49\x96\xd9\xe7\x73\xf4\xbc\x9e\xfe\x57\x38\x82\x9a\xdb\x26\xc8\x1b\x37\xc9\x3a\x1b\x27\x0b\x20\x32\x9d\x65\x86\x75\xfc\x6e\xa5\x34\xe0\x81\x0a\x44\x32\x82\x6b\xf5\x8c\x94\x1e\xfb\x65\xd5\x7a\x33\x8b\xbd\x2e\x26\x64\x0f\x89\xff\xbc\x1a\x85\x8e\xfc\xb8\x55\x0e\xe3\xa5\xe1\x99\x8b\xd1\x77\xe9\x3a\x73\x63\xc3\x44\xfe\x6b\x19\x9e\xe5\xd0\x2e\x82\xd5\x22\xc4\xfe\xba\x15\x45\x2f\x80\x28\x8a\x82\x1a\x57\x91\x16\xec\x6d\xad\x2b\x3b\x31\x0d\xa9\x03\x40\x1a\xa6\x21\x00\xab\x5d\x1a\x36\x55\x3e\x06\x20\x3b\x33\x89\x0c\xc9\xb8\x32\xf7\x9e\xf8\x05\x60\xcc\xb9\xa3\x9c\xe7\x67\x96\x7e\xd6\x28\xc6\xad\x57\x3c\xb1\x16\xdb\xef\xef\xd7\x54\x99\xda\x96\xbd\x68\xa8\xa9\x7b\x92\x8a\x8b\xbc\x10\x3b\x66\x21\xfc\xde\x2b\xec\xa1\x23\x1d\x20\x6b\xe6\xcd\x9e\xc7\xaf\xf6\xf6\xc9\x4f\xcd\x72\x04\xed\x34\x55\xc6\x8c\x83\xf4\xa4\x1d\xa4\xaf\x2b\x74\xef\x5c\x53\xf1\xd8\xac\x70\xbd\xcb\x7e\xd1\x85\xce\x81\xbd\x84\x35\x9d\x44\x25\x4d\x95\x62\x9e\x98\x55\xa9\x4a\x7c\x19\x58\xd1\xf8\xad\xa5\xd0\x53\x2e\xd8\xa5\xaa\x3f\xb2\xd1\x7b\xa7\x0e\xb6\x24\x8e\x59\x4e\x1a\x22\x97\xac\xbb\xb3\x9d\x50\x2f\x1a\x8c\x6e\xb6\xf1\xce\x22\xb3\xde\x1a\x1f\x40\xcc\x24\x55\x41\x19\xa8\x31\xa9\xaa\xd6\x07\x9c\xad\x88\x42\x5d\xe6\xbd\xe1\xa9\x18\x7e\xbb\x60\x92\xcf\x67\xbf\x2b\x13\xfd\x65\xf2\x70\x88\xd7\x8b\x7e\x88\x3c\x87\x59\xd2\xc4\xf5\xc6\x5a\xdb\x75\x53\x87\x8a\xd5\x75\xf9\xfa\xd8\x78\xe8\x0a\x0c\x9b\xa6\x3b\xcb\xcc\x27\x32\xe6\x94\x85\xbb\xc9\xc9\x0b\xfb\xd6\x24\x81\xd9\x08\x9b\xec\xcf\x80\xcf\xe2\xdf\x16\xa2\xcf\x65\xbd\x92\xdd\x59\x7b\x07\x07\xe0\x91\x7a\xf4\x8b\xbb\x75\xfe\xd4\x13\xd2\x38\xf5\x55\x5a\x7a\x56\x9d\x80\xc3\x41\x4a\x8d\x08\x59\xdc\x65\xa4\x61\x28\xba\xb2\x7a\xf8\x7a\x71\x31\x4f\x31\x8c\x78\x2b\x23\xeb\xfe\x80\x8b\x82\xb0\xce\x26\x40\x1d\x2e\x22\xf0\x4d\x83\xd1\x25\x5d\xc5\x1a\xdd\xd3\xb7\x5a\x2b\x1a\xe0\x78\x45\x04\xdf\x54\x3a\xf8\x96\x9b\xe3\xea\x70\x82\xff\x7f\xc9\x88\x8c\x14\x4d\xa2\xaf\x58\x42\x9e\xc9\x60\x31\xdb\xca\xd3\xda\xd9\xaf\x0d\xcb\xaa\xaf\x26\x8c\xb8\xfc\xff\xea\xd9\x4f\x3c\x7c\xa4\x95\xe0\x56\xa9\xb4\x7a\xcd\xb7\x51\xfb\x73\xe6\x66\xc6\xc6\x55\xad\xe8\x29\x72\x97\xd0\x7a\xd1\xba\x5e\x43\xf1\xbc\xa3\x23\x01\x65\x13\x39\xe2\x29\x04\xcc\x8c\x42\xf5\x8c\x30\xc0\x4a\xaf\xdb\x03\x8d\xda\x08\x47\xdd\x98\x8d\xcd\xa6\xf3\xbf\xd1\x5c\x4b\x4c\x45\x25\x00\x4a\xa0\x6e\xef\xf8\xca\x61\x78\x3a\xac\xec\x57\xfb\x3d\x1f\x92\xb0\xfe\x2f\xd1\xa8\x5f\x67\x24\x51\x7b\x65\xe6\x14\xad\x68\x08\xd6\xf6\xee\x34\xdf\xf7\x31\x0f\xdc\x82\xae\xbf\xd9\x04\xb0\x1e\x1d\xc5\x4b\x29\x27\x09\x4b\x2d\xb6\x8d\x6f\x90\x3b\x68\x40\x1a\xde\xbf\x5a\x7e\x08\xd7\x8f\xf4\xef\x5d\x63\x65\x3a\x65\x04\x0c\xf9\xbf\xd4\xac\xa7\x98\x4a\x74\xd3\x71\x45\x98\x67\x80\xfc\x0b\x16\xac\x45\x16\x49\xde\x61\x88\xa7\xdb\xdf\x19\x1f\x64\xb5\xfc\x5e\x2a\xb4\x7b\x57\xf7\xf7\x27\x6c\xd4\x19\xc1\x7a\x3c\xa8\xe1\xb9\x39\xae\x49\xe4\x88\xac\xba\x6b\x96\x56\x10\xb5\x48\x01\x09\xc8\xb1\x7b\x80\xe1\xb7\xb7\x50\xdf\xc7\x59\x8d\x5d\x50\x11\xfd\x2d\xcc\x56\x00\xa3\x2e\xf5\xb5\x2a\x1e\xcc\x82\x0e\x30\x8a\xa3\x42\x72\x1a\xac\x09\x43\xbf\x66\x86\xb6\x4b\x25\x79\x37\x65\x04\xcc\xc4\x93\xd9\x7e\x6a\xed\x3f\xb0\xf9\xcd\x71\xa4\x3d\xd4\x97\xf0\x1f\x17\xc0\xe2\xcb\x37\x97\xaa\x2a\x2f\x25\x66\x56\x16\x8e\x6c\x49\x6a\xfc\x5f\xb9\x32\x46\xf6\xb1\x11\x63\x98\xa3\x46\xf1\xa6\x41\xf3\xb0\x41\xe9\x89\xf7\x91\x4f\x90\xcc\x2c\x7f\xff\x35\x78\x76\xe5\x06\xb5\x0d\x33\x4b\xa7\x7c\x22\x5b\xc3\x07\xba\x53\x71\x52\xf3\xf1\x61\x0e\x4e\xaf\xe5\x95\xf6\xd9\xd9\x0d\x11\xfa\xa9\x33\xa1\x5e\xf1\x36\x95\x46\x86\x8a\x7f\x3a\x45\xa9\x67\x68\xd4\x0f\xd9\xd0\x34\x12\xc0\x91\xc6\x31\x5c\xf4\xfd\xe7\xcb\x68\x60\x69\x37\x38\x0d\xb2\xea\xaa\x70\x7b\x4c\x41\x85\xc3\x2e\xdd\xcd\xd3\x06\x70\x5e\x4d\xc1\xff\xc8\x72\xee\xee\x47\x5a\x64\xdf\xac\x86\xab\xa4\x1c\x06\x18\x98\x3f\x87\x41\xc5\xef\x68\xd3\xa1\x01\xe8\xa3\xb8\xca\xc6\x0c\x90\x5c\x15\xfc\x91\x08\x40\xb9\x4c\x00\xa0\xb9\xd0"}, tor-0.2.7.6/src/ext/ed25519/donna/ed25519-hash.h0000644000175000017500000001532312621363245015175 00000000000000#if defined(ED25519_REFHASH) /* reference/slow SHA-512. really, do not use this */ #define HASH_BLOCK_SIZE 128 #define HASH_DIGEST_SIZE 64 typedef struct sha512_state_t { uint64_t H[8]; uint64_t T[2]; uint32_t leftover; uint8_t buffer[HASH_BLOCK_SIZE]; } sha512_state; typedef sha512_state ed25519_hash_context; static const uint64_t sha512_constants[80] = { 0x428a2f98d728ae22ull, 0x7137449123ef65cdull, 0xb5c0fbcfec4d3b2full, 0xe9b5dba58189dbbcull, 0x3956c25bf348b538ull, 0x59f111f1b605d019ull, 0x923f82a4af194f9bull, 0xab1c5ed5da6d8118ull, 0xd807aa98a3030242ull, 0x12835b0145706fbeull, 0x243185be4ee4b28cull, 0x550c7dc3d5ffb4e2ull, 0x72be5d74f27b896full, 0x80deb1fe3b1696b1ull, 0x9bdc06a725c71235ull, 0xc19bf174cf692694ull, 0xe49b69c19ef14ad2ull, 0xefbe4786384f25e3ull, 0x0fc19dc68b8cd5b5ull, 0x240ca1cc77ac9c65ull, 0x2de92c6f592b0275ull, 0x4a7484aa6ea6e483ull, 0x5cb0a9dcbd41fbd4ull, 0x76f988da831153b5ull, 0x983e5152ee66dfabull, 0xa831c66d2db43210ull, 0xb00327c898fb213full, 0xbf597fc7beef0ee4ull, 0xc6e00bf33da88fc2ull, 0xd5a79147930aa725ull, 0x06ca6351e003826full, 0x142929670a0e6e70ull, 0x27b70a8546d22ffcull, 0x2e1b21385c26c926ull, 0x4d2c6dfc5ac42aedull, 0x53380d139d95b3dfull, 0x650a73548baf63deull, 0x766a0abb3c77b2a8ull, 0x81c2c92e47edaee6ull, 0x92722c851482353bull, 0xa2bfe8a14cf10364ull, 0xa81a664bbc423001ull, 0xc24b8b70d0f89791ull, 0xc76c51a30654be30ull, 0xd192e819d6ef5218ull, 0xd69906245565a910ull, 0xf40e35855771202aull, 0x106aa07032bbd1b8ull, 0x19a4c116b8d2d0c8ull, 0x1e376c085141ab53ull, 0x2748774cdf8eeb99ull, 0x34b0bcb5e19b48a8ull, 0x391c0cb3c5c95a63ull, 0x4ed8aa4ae3418acbull, 0x5b9cca4f7763e373ull, 0x682e6ff3d6b2b8a3ull, 0x748f82ee5defb2fcull, 0x78a5636f43172f60ull, 0x84c87814a1f0ab72ull, 0x8cc702081a6439ecull, 0x90befffa23631e28ull, 0xa4506cebde82bde9ull, 0xbef9a3f7b2c67915ull, 0xc67178f2e372532bull, 0xca273eceea26619cull, 0xd186b8c721c0c207ull, 0xeada7dd6cde0eb1eull, 0xf57d4f7fee6ed178ull, 0x06f067aa72176fbaull, 0x0a637dc5a2c898a6ull, 0x113f9804bef90daeull, 0x1b710b35131c471bull, 0x28db77f523047d84ull, 0x32caab7b40c72493ull, 0x3c9ebe0a15c9bebcull, 0x431d67c49c100d4cull, 0x4cc5d4becb3e42b6ull, 0x597f299cfc657e2aull, 0x5fcb6fab3ad6faecull, 0x6c44198c4a475817ull }; static uint64_t sha512_ROTR64(uint64_t x, int k) { return (x >> k) | (x << (64 - k)); } static uint64_t sha512_LOAD64_BE(const uint8_t *p) { return ((uint64_t)p[0] << 56) | ((uint64_t)p[1] << 48) | ((uint64_t)p[2] << 40) | ((uint64_t)p[3] << 32) | ((uint64_t)p[4] << 24) | ((uint64_t)p[5] << 16) | ((uint64_t)p[6] << 8) | ((uint64_t)p[7] ); } static void sha512_STORE64_BE(uint8_t *p, uint64_t v) { p[0] = (uint8_t)(v >> 56); p[1] = (uint8_t)(v >> 48); p[2] = (uint8_t)(v >> 40); p[3] = (uint8_t)(v >> 32); p[4] = (uint8_t)(v >> 24); p[5] = (uint8_t)(v >> 16); p[6] = (uint8_t)(v >> 8); p[7] = (uint8_t)(v ); } #define Ch(x,y,z) (z ^ (x & (y ^ z))) #define Maj(x,y,z) (((x | y) & z) | (x & y)) #define S0(x) (sha512_ROTR64(x, 28) ^ sha512_ROTR64(x, 34) ^ sha512_ROTR64(x, 39)) #define S1(x) (sha512_ROTR64(x, 14) ^ sha512_ROTR64(x, 18) ^ sha512_ROTR64(x, 41)) #define G0(x) (sha512_ROTR64(x, 1) ^ sha512_ROTR64(x, 8) ^ (x >> 7)) #define G1(x) (sha512_ROTR64(x, 19) ^ sha512_ROTR64(x, 61) ^ (x >> 6)) #define W0(in,i) (sha512_LOAD64_BE(&in[i * 8])) #define W1(i) (G1(w[i - 2]) + w[i - 7] + G0(w[i - 15]) + w[i - 16]) #define STEP(i) \ t1 = S0(r[0]) + Maj(r[0], r[1], r[2]); \ t0 = r[7] + S1(r[4]) + Ch(r[4], r[5], r[6]) + sha512_constants[i] + w[i]; \ r[7] = r[6]; \ r[6] = r[5]; \ r[5] = r[4]; \ r[4] = r[3] + t0; \ r[3] = r[2]; \ r[2] = r[1]; \ r[1] = r[0]; \ r[0] = t0 + t1; static void sha512_blocks(sha512_state *S, const uint8_t *in, size_t blocks) { uint64_t r[8], w[80], t0, t1; size_t i; for (i = 0; i < 8; i++) r[i] = S->H[i]; while (blocks--) { for (i = 0; i < 16; i++) { w[i] = W0(in, i); } for (i = 16; i < 80; i++) { w[i] = W1(i); } for (i = 0; i < 80; i++) { STEP(i); } for (i = 0; i < 8; i++) { r[i] += S->H[i]; S->H[i] = r[i]; } S->T[0] += HASH_BLOCK_SIZE * 8; S->T[1] += (!S->T[0]) ? 1 : 0; in += HASH_BLOCK_SIZE; } } static void ed25519_hash_init(sha512_state *S) { S->H[0] = 0x6a09e667f3bcc908ull; S->H[1] = 0xbb67ae8584caa73bull; S->H[2] = 0x3c6ef372fe94f82bull; S->H[3] = 0xa54ff53a5f1d36f1ull; S->H[4] = 0x510e527fade682d1ull; S->H[5] = 0x9b05688c2b3e6c1full; S->H[6] = 0x1f83d9abfb41bd6bull; S->H[7] = 0x5be0cd19137e2179ull; S->T[0] = 0; S->T[1] = 0; S->leftover = 0; } static void ed25519_hash_update(sha512_state *S, const uint8_t *in, size_t inlen) { size_t blocks, want; /* handle the previous data */ if (S->leftover) { want = (HASH_BLOCK_SIZE - S->leftover); want = (want < inlen) ? want : inlen; memcpy(S->buffer + S->leftover, in, want); S->leftover += (uint32_t)want; if (S->leftover < HASH_BLOCK_SIZE) return; in += want; inlen -= want; sha512_blocks(S, S->buffer, 1); } /* handle the current data */ blocks = (inlen & ~(HASH_BLOCK_SIZE - 1)); S->leftover = (uint32_t)(inlen - blocks); if (blocks) { sha512_blocks(S, in, blocks / HASH_BLOCK_SIZE); in += blocks; } /* handle leftover data */ if (S->leftover) memcpy(S->buffer, in, S->leftover); } static void ed25519_hash_final(sha512_state *S, uint8_t *hash) { uint64_t t0 = S->T[0] + (S->leftover * 8), t1 = S->T[1]; S->buffer[S->leftover] = 0x80; if (S->leftover <= 111) { memset(S->buffer + S->leftover + 1, 0, 111 - S->leftover); } else { memset(S->buffer + S->leftover + 1, 0, 127 - S->leftover); sha512_blocks(S, S->buffer, 1); memset(S->buffer, 0, 112); } sha512_STORE64_BE(S->buffer + 112, t1); sha512_STORE64_BE(S->buffer + 120, t0); sha512_blocks(S, S->buffer, 1); sha512_STORE64_BE(&hash[ 0], S->H[0]); sha512_STORE64_BE(&hash[ 8], S->H[1]); sha512_STORE64_BE(&hash[16], S->H[2]); sha512_STORE64_BE(&hash[24], S->H[3]); sha512_STORE64_BE(&hash[32], S->H[4]); sha512_STORE64_BE(&hash[40], S->H[5]); sha512_STORE64_BE(&hash[48], S->H[6]); sha512_STORE64_BE(&hash[56], S->H[7]); } static void ed25519_hash(uint8_t *hash, const uint8_t *in, size_t inlen) { ed25519_hash_context ctx; ed25519_hash_init(&ctx); ed25519_hash_update(&ctx, in, inlen); ed25519_hash_final(&ctx, hash); } #elif defined(ED25519_CUSTOMHASH) #include "ed25519-hash-custom.h" #else #include typedef SHA512_CTX ed25519_hash_context; static void ed25519_hash_init(ed25519_hash_context *ctx) { SHA512_Init(ctx); } static void ed25519_hash_update(ed25519_hash_context *ctx, const uint8_t *in, size_t inlen) { SHA512_Update(ctx, in, inlen); } static void ed25519_hash_final(ed25519_hash_context *ctx, uint8_t *hash) { SHA512_Final(hash, ctx); } static void ed25519_hash(uint8_t *hash, const uint8_t *in, size_t inlen) { SHA512(in, inlen, hash); } #endif tor-0.2.7.6/src/ext/ed25519/donna/ed25519-donna-impl-base.h0000644000175000017500000002375412621363245017227 00000000000000/* conversions */ DONNA_INLINE static void ge25519_p1p1_to_partial(ge25519 *r, const ge25519_p1p1 *p) { curve25519_mul(r->x, p->x, p->t); curve25519_mul(r->y, p->y, p->z); curve25519_mul(r->z, p->z, p->t); } DONNA_INLINE static void ge25519_p1p1_to_full(ge25519 *r, const ge25519_p1p1 *p) { curve25519_mul(r->x, p->x, p->t); curve25519_mul(r->y, p->y, p->z); curve25519_mul(r->z, p->z, p->t); curve25519_mul(r->t, p->x, p->y); } static void ge25519_full_to_pniels(ge25519_pniels *p, const ge25519 *r) { curve25519_sub(p->ysubx, r->y, r->x); curve25519_add(p->xaddy, r->y, r->x); curve25519_copy(p->z, r->z); curve25519_mul(p->t2d, r->t, ge25519_ec2d); } /* adding & doubling */ static void ge25519_add_p1p1(ge25519_p1p1 *r, const ge25519 *p, const ge25519 *q) { bignum25519 a,b,c,d,t,u; curve25519_sub(a, p->y, p->x); curve25519_add(b, p->y, p->x); curve25519_sub(t, q->y, q->x); curve25519_add(u, q->y, q->x); curve25519_mul(a, a, t); curve25519_mul(b, b, u); curve25519_mul(c, p->t, q->t); curve25519_mul(c, c, ge25519_ec2d); curve25519_mul(d, p->z, q->z); curve25519_add(d, d, d); curve25519_sub(r->x, b, a); curve25519_add(r->y, b, a); curve25519_add_after_basic(r->z, d, c); curve25519_sub_after_basic(r->t, d, c); } static void ge25519_double_p1p1(ge25519_p1p1 *r, const ge25519 *p) { bignum25519 a,b,c; curve25519_square(a, p->x); curve25519_square(b, p->y); curve25519_square(c, p->z); curve25519_add_reduce(c, c, c); curve25519_add(r->x, p->x, p->y); curve25519_square(r->x, r->x); curve25519_add(r->y, b, a); curve25519_sub(r->z, b, a); curve25519_sub_after_basic(r->x, r->x, r->y); curve25519_sub_after_basic(r->t, c, r->z); } static void ge25519_nielsadd2_p1p1(ge25519_p1p1 *r, const ge25519 *p, const ge25519_niels *q, unsigned char signbit) { const bignum25519 *qb = (const bignum25519 *)q; bignum25519 *rb = (bignum25519 *)r; bignum25519 a,b,c; curve25519_sub(a, p->y, p->x); curve25519_add(b, p->y, p->x); curve25519_mul(a, a, qb[signbit]); /* x for +, y for - */ curve25519_mul(r->x, b, qb[signbit^1]); /* y for +, x for - */ curve25519_add(r->y, r->x, a); curve25519_sub(r->x, r->x, a); curve25519_mul(c, p->t, q->t2d); curve25519_add_reduce(r->t, p->z, p->z); curve25519_copy(r->z, r->t); curve25519_add(rb[2+signbit], rb[2+signbit], c); /* z for +, t for - */ curve25519_sub(rb[2+(signbit^1)], rb[2+(signbit^1)], c); /* t for +, z for - */ } static void ge25519_pnielsadd_p1p1(ge25519_p1p1 *r, const ge25519 *p, const ge25519_pniels *q, unsigned char signbit) { const bignum25519 *qb = (const bignum25519 *)q; bignum25519 *rb = (bignum25519 *)r; bignum25519 a,b,c; curve25519_sub(a, p->y, p->x); curve25519_add(b, p->y, p->x); curve25519_mul(a, a, qb[signbit]); /* ysubx for +, xaddy for - */ curve25519_mul(r->x, b, qb[signbit^1]); /* xaddy for +, ysubx for - */ curve25519_add(r->y, r->x, a); curve25519_sub(r->x, r->x, a); curve25519_mul(c, p->t, q->t2d); curve25519_mul(r->t, p->z, q->z); curve25519_add_reduce(r->t, r->t, r->t); curve25519_copy(r->z, r->t); curve25519_add(rb[2+signbit], rb[2+signbit], c); /* z for +, t for - */ curve25519_sub(rb[2+(signbit^1)], rb[2+(signbit^1)], c); /* t for +, z for - */ } static void ge25519_double_partial(ge25519 *r, const ge25519 *p) { ge25519_p1p1 t; ge25519_double_p1p1(&t, p); ge25519_p1p1_to_partial(r, &t); } static void ge25519_double(ge25519 *r, const ge25519 *p) { ge25519_p1p1 t; ge25519_double_p1p1(&t, p); ge25519_p1p1_to_full(r, &t); } static void ge25519_add(ge25519 *r, const ge25519 *p, const ge25519 *q) { ge25519_p1p1 t; ge25519_add_p1p1(&t, p, q); ge25519_p1p1_to_full(r, &t); } static void ge25519_nielsadd2(ge25519 *r, const ge25519_niels *q) { bignum25519 a,b,c,e,f,g,h; curve25519_sub(a, r->y, r->x); curve25519_add(b, r->y, r->x); curve25519_mul(a, a, q->ysubx); curve25519_mul(e, b, q->xaddy); curve25519_add(h, e, a); curve25519_sub(e, e, a); curve25519_mul(c, r->t, q->t2d); curve25519_add(f, r->z, r->z); curve25519_add_after_basic(g, f, c); curve25519_sub_after_basic(f, f, c); curve25519_mul(r->x, e, f); curve25519_mul(r->y, h, g); curve25519_mul(r->z, g, f); curve25519_mul(r->t, e, h); } static void ge25519_pnielsadd(ge25519_pniels *r, const ge25519 *p, const ge25519_pniels *q) { bignum25519 a,b,c,x,y,z,t; curve25519_sub(a, p->y, p->x); curve25519_add(b, p->y, p->x); curve25519_mul(a, a, q->ysubx); curve25519_mul(x, b, q->xaddy); curve25519_add(y, x, a); curve25519_sub(x, x, a); curve25519_mul(c, p->t, q->t2d); curve25519_mul(t, p->z, q->z); curve25519_add(t, t, t); curve25519_add_after_basic(z, t, c); curve25519_sub_after_basic(t, t, c); curve25519_mul(r->xaddy, x, t); curve25519_mul(r->ysubx, y, z); curve25519_mul(r->z, z, t); curve25519_mul(r->t2d, x, y); curve25519_copy(y, r->ysubx); curve25519_sub(r->ysubx, r->ysubx, r->xaddy); curve25519_add(r->xaddy, r->xaddy, y); curve25519_mul(r->t2d, r->t2d, ge25519_ec2d); } /* pack & unpack */ static void ge25519_pack(unsigned char r[32], const ge25519 *p) { bignum25519 tx, ty, zi; unsigned char parity[32]; curve25519_recip(zi, p->z); curve25519_mul(tx, p->x, zi); curve25519_mul(ty, p->y, zi); curve25519_contract(r, ty); curve25519_contract(parity, tx); r[31] ^= ((parity[0] & 1) << 7); } static int ge25519_unpack_negative_vartime(ge25519 *r, const unsigned char p[32]) { static const unsigned char zero[32] = {0}; static const bignum25519 one = {1}; unsigned char parity = p[31] >> 7; unsigned char check[32]; bignum25519 t, root, num, den, d3; curve25519_expand(r->y, p); curve25519_copy(r->z, one); curve25519_square(num, r->y); /* x = y^2 */ curve25519_mul(den, num, ge25519_ecd); /* den = dy^2 */ curve25519_sub_reduce(num, num, r->z); /* x = y^1 - 1 */ curve25519_add(den, den, r->z); /* den = dy^2 + 1 */ /* Computation of sqrt(num/den) */ /* 1.: computation of num^((p-5)/8)*den^((7p-35)/8) = (num*den^7)^((p-5)/8) */ curve25519_square(t, den); curve25519_mul(d3, t, den); curve25519_square(r->x, d3); curve25519_mul(r->x, r->x, den); curve25519_mul(r->x, r->x, num); curve25519_pow_two252m3(r->x, r->x); /* 2. computation of r->x = num * den^3 * (num*den^7)^((p-5)/8) */ curve25519_mul(r->x, r->x, d3); curve25519_mul(r->x, r->x, num); /* 3. Check if either of the roots works: */ curve25519_square(t, r->x); curve25519_mul(t, t, den); curve25519_sub_reduce(root, t, num); curve25519_contract(check, root); if (!ed25519_verify(check, zero, 32)) { curve25519_add_reduce(t, t, num); curve25519_contract(check, t); if (!ed25519_verify(check, zero, 32)) return 0; curve25519_mul(r->x, r->x, ge25519_sqrtneg1); } curve25519_contract(check, r->x); if ((check[0] & 1) == parity) { curve25519_copy(t, r->x); curve25519_neg(r->x, t); } curve25519_mul(r->t, r->x, r->y); return 1; } /* scalarmults */ #define S1_SWINDOWSIZE 5 #define S1_TABLE_SIZE (1<<(S1_SWINDOWSIZE-2)) #define S2_SWINDOWSIZE 7 #define S2_TABLE_SIZE (1<<(S2_SWINDOWSIZE-2)) /* computes [s1]p1 + [s2]basepoint */ static void ge25519_double_scalarmult_vartime(ge25519 *r, const ge25519 *p1, const bignum256modm s1, const bignum256modm s2) { signed char slide1[256], slide2[256]; ge25519_pniels pre1[S1_TABLE_SIZE]; ge25519 d1; ge25519_p1p1 t; int32_t i; contract256_slidingwindow_modm(slide1, s1, S1_SWINDOWSIZE); contract256_slidingwindow_modm(slide2, s2, S2_SWINDOWSIZE); ge25519_double(&d1, p1); ge25519_full_to_pniels(pre1, p1); for (i = 0; i < S1_TABLE_SIZE - 1; i++) ge25519_pnielsadd(&pre1[i+1], &d1, &pre1[i]); /* set neutral */ memset(r, 0, sizeof(ge25519)); r->y[0] = 1; r->z[0] = 1; i = 255; while ((i >= 0) && !(slide1[i] | slide2[i])) i--; for (; i >= 0; i--) { ge25519_double_p1p1(&t, r); if (slide1[i]) { ge25519_p1p1_to_full(r, &t); ge25519_pnielsadd_p1p1(&t, r, &pre1[abs(slide1[i]) / 2], (unsigned char)slide1[i] >> 7); } if (slide2[i]) { ge25519_p1p1_to_full(r, &t); ge25519_nielsadd2_p1p1(&t, r, &ge25519_niels_sliding_multiples[abs(slide2[i]) / 2], (unsigned char)slide2[i] >> 7); } ge25519_p1p1_to_partial(r, &t); } } #if !defined(HAVE_GE25519_SCALARMULT_BASE_CHOOSE_NIELS) static uint32_t ge25519_windowb_equal(uint32_t b, uint32_t c) { return ((b ^ c) - 1) >> 31; } static void ge25519_scalarmult_base_choose_niels(ge25519_niels *t, const uint8_t table[256][96], uint32_t pos, signed char b) { bignum25519 neg; uint32_t sign = (uint32_t)((unsigned char)b >> 7); uint32_t mask = ~(sign - 1); uint32_t u = (b + mask) ^ mask; uint32_t i; /* ysubx, xaddy, t2d in packed form. initialize to ysubx = 1, xaddy = 1, t2d = 0 */ uint8_t packed[96] = {0}; packed[0] = 1; packed[32] = 1; for (i = 0; i < 8; i++) curve25519_move_conditional_bytes(packed, table[(pos * 8) + i], ge25519_windowb_equal(u, i + 1)); /* expand in to t */ curve25519_expand(t->ysubx, packed + 0); curve25519_expand(t->xaddy, packed + 32); curve25519_expand(t->t2d , packed + 64); /* adjust for sign */ curve25519_swap_conditional(t->ysubx, t->xaddy, sign); curve25519_neg(neg, t->t2d); curve25519_swap_conditional(t->t2d, neg, sign); } #endif /* HAVE_GE25519_SCALARMULT_BASE_CHOOSE_NIELS */ /* computes [s]basepoint */ static void ge25519_scalarmult_base_niels(ge25519 *r, const uint8_t basepoint_table[256][96], const bignum256modm s) { signed char b[64]; uint32_t i; ge25519_niels t; contract256_window4_modm(b, s); ge25519_scalarmult_base_choose_niels(&t, basepoint_table, 0, b[1]); curve25519_sub_reduce(r->x, t.xaddy, t.ysubx); curve25519_add_reduce(r->y, t.xaddy, t.ysubx); memset(r->z, 0, sizeof(bignum25519)); curve25519_copy(r->t, t.t2d); r->z[0] = 2; for (i = 3; i < 64; i += 2) { ge25519_scalarmult_base_choose_niels(&t, basepoint_table, i / 2, b[i]); ge25519_nielsadd2(r, &t); } ge25519_double_partial(r, r); ge25519_double_partial(r, r); ge25519_double_partial(r, r); ge25519_double(r, r); ge25519_scalarmult_base_choose_niels(&t, basepoint_table, 0, b[0]); curve25519_mul(t.t2d, t.t2d, ge25519_ecd); ge25519_nielsadd2(r, &t); for(i = 2; i < 64; i += 2) { ge25519_scalarmult_base_choose_niels(&t, basepoint_table, i / 2, b[i]); ge25519_nielsadd2(r, &t); } } tor-0.2.7.6/src/ext/ed25519/donna/ed25519-donna-portable-identify.h0000644000175000017500000000553612621363245020775 00000000000000/* os */ #if defined(_WIN32) || defined(_WIN64) || defined(__TOS_WIN__) || defined(__WINDOWS__) #define OS_WINDOWS #elif defined(sun) || defined(__sun) || defined(__SVR4) || defined(__svr4__) #define OS_SOLARIS #else #include /* need this to define BSD */ #define OS_NIX #if defined(__linux__) #define OS_LINUX #elif defined(BSD) #define OS_BSD #if defined(MACOS_X) || (defined(__APPLE__) & defined(__MACH__)) #define OS_OSX #elif defined(macintosh) || defined(Macintosh) #define OS_MAC #elif defined(__OpenBSD__) #define OS_OPENBSD #endif #endif #endif /* compiler */ #if defined(_MSC_VER) #define COMPILER_MSVC #endif #if defined(__ICC) #define COMPILER_INTEL #endif #if defined(__GNUC__) #if (__GNUC__ >= 3) #define COMPILER_GCC ((__GNUC__ * 10000) + (__GNUC_MINOR__ * 100) + (__GNUC_PATCHLEVEL__)) #else #define COMPILER_GCC ((__GNUC__ * 10000) + (__GNUC_MINOR__ * 100) ) #endif #endif #if defined(__PATHCC__) #define COMPILER_PATHCC #endif #if defined(__clang__) #define COMPILER_CLANG ((__clang_major__ * 10000) + (__clang_minor__ * 100) + (__clang_patchlevel__)) #endif /* cpu */ #if defined(__amd64__) || defined(__amd64) || defined(__x86_64__ ) || defined(_M_X64) #define CPU_X86_64 #elif defined(__i586__) || defined(__i686__) || (defined(_M_IX86) && (_M_IX86 >= 500)) #define CPU_X86 500 #elif defined(__i486__) || (defined(_M_IX86) && (_M_IX86 >= 400)) #define CPU_X86 400 #elif defined(__i386__) || (defined(_M_IX86) && (_M_IX86 >= 300)) || defined(__X86__) || defined(_X86_) || defined(__I86__) #define CPU_X86 300 #elif defined(__ia64__) || defined(_IA64) || defined(__IA64__) || defined(_M_IA64) || defined(__ia64) #define CPU_IA64 #endif #if defined(__sparc__) || defined(__sparc) || defined(__sparcv9) #define CPU_SPARC #if defined(__sparcv9) #define CPU_SPARC64 #endif #endif #if defined(powerpc) || defined(__PPC__) || defined(__ppc__) || defined(_ARCH_PPC) || defined(__powerpc__) || defined(__powerpc) || defined(POWERPC) || defined(_M_PPC) #define CPU_PPC #if defined(_ARCH_PWR7) #define CPU_POWER7 #elif defined(__64BIT__) #define CPU_PPC64 #else #define CPU_PPC32 #endif #endif #if defined(__hppa__) || defined(__hppa) #define CPU_HPPA #endif #if defined(__alpha__) || defined(__alpha) || defined(_M_ALPHA) #define CPU_ALPHA #endif /* 64 bit cpu */ #if defined(CPU_X86_64) || defined(CPU_IA64) || defined(CPU_SPARC64) || defined(__64BIT__) || defined(__LP64__) || defined(_LP64) || (defined(_MIPS_SZLONG) && (_MIPS_SZLONG == 64)) #define CPU_64BITS #endif #if defined(COMPILER_MSVC) typedef signed char int8_t; typedef unsigned char uint8_t; typedef signed short int16_t; typedef unsigned short uint16_t; typedef signed int int32_t; typedef unsigned int uint32_t; typedef signed __int64 int64_t; typedef unsigned __int64 uint64_t; #else #include #endif tor-0.2.7.6/src/ext/ed25519/donna/ed25519-donna-basepoint-table.h0000644000175000017500000036222012621363245020421 00000000000000/* multiples of the base point in packed {ysubx, xaddy, t2d} form */ static const uint8_t ALIGN(16) ge25519_niels_base_multiples[256][96] = { {0x3e,0x91,0x40,0xd7,0x05,0x39,0x10,0x9d,0xb3,0xbe,0x40,0xd1,0x05,0x9f,0x39,0xfd,0x09,0x8a,0x8f,0x68,0x34,0x84,0xc1,0xa5,0x67,0x12,0xf8,0x98,0x92,0x2f,0xfd,0x44,0x85,0x3b,0x8c,0xf5,0xc6,0x93,0xbc,0x2f,0x19,0x0e,0x8c,0xfb,0xc6,0x2d,0x93,0xcf,0xc2,0x42,0x3d,0x64,0x98,0x48,0x0b,0x27,0x65,0xba,0xd4,0x33,0x3a,0x9d,0xcf,0x07,0x59,0xbb,0x6f,0x4b,0x67,0x15,0xbd,0xdb,0xea,0xa5,0xa2,0xee,0x00,0x3f,0xe1,0x41,0xfa,0xc6,0x57,0xc9,0x1c,0x9d,0xd4,0xcd,0xca,0xec,0x16,0xaf,0x1f,0xbe,0x0e,0x4f}, {0xa8,0xd5,0xb4,0x42,0x60,0xa5,0x99,0x8a,0xf6,0xac,0x60,0x4e,0x0c,0x81,0x2b,0x8f,0xaa,0x37,0x6e,0xb1,0x6b,0x23,0x9e,0xe0,0x55,0x25,0xc9,0x69,0xa6,0x95,0xb5,0x6b,0xd7,0x71,0x3c,0x93,0xfc,0xe7,0x24,0x92,0xb5,0xf5,0x0f,0x7a,0x96,0x9d,0x46,0x9f,0x02,0x07,0xd6,0xe1,0x65,0x9a,0xa6,0x5a,0x2e,0x2e,0x7d,0xa8,0x3f,0x06,0x0c,0x59,0x02,0x68,0xd3,0xda,0xaa,0x7e,0x34,0x6e,0x05,0x48,0xee,0x83,0x93,0x59,0xf3,0xba,0x26,0x68,0x07,0xe6,0x10,0xbe,0xca,0x3b,0xb8,0xd1,0x5e,0x16,0x0a,0x4f,0x31,0x49}, {0x65,0xd2,0xfc,0xa4,0xe8,0x1f,0x61,0x56,0x7d,0xba,0xc1,0xe5,0xfd,0x53,0xd3,0x3b,0xbd,0xd6,0x4b,0x21,0x1a,0xf3,0x31,0x81,0x62,0xda,0x5b,0x55,0x87,0x15,0xb9,0x2a,0x30,0x97,0xee,0x4c,0xa8,0xb0,0x25,0xaf,0x8a,0x4b,0x86,0xe8,0x30,0x84,0x5a,0x02,0x32,0x67,0x01,0x9f,0x02,0x50,0x1b,0xc1,0xf4,0xf8,0x80,0x9a,0x1b,0x4e,0x16,0x7a,0x34,0x48,0x67,0xf1,0xf4,0x11,0xf2,0x9b,0x95,0xf8,0x2d,0xf6,0x17,0x6b,0x4e,0xb8,0x4e,0x2a,0x72,0x5b,0x07,0x6f,0xde,0xd7,0x21,0x2a,0xbb,0x63,0xb9,0x04,0x9a,0x54}, {0xbf,0x18,0x68,0x05,0x0a,0x05,0xfe,0x95,0xa9,0xfa,0x60,0x56,0x71,0x89,0x7e,0x32,0x73,0x50,0xa0,0x06,0xcd,0xe3,0xe8,0xc3,0x9a,0xa4,0x45,0x74,0x4c,0x3f,0x93,0x27,0x9f,0x09,0xfc,0x8e,0xb9,0x51,0x73,0x28,0x38,0x25,0xfd,0x7d,0xf4,0xc6,0x65,0x67,0x65,0x92,0x0a,0xfb,0x3d,0x8d,0x34,0xca,0x27,0x87,0xe5,0x21,0x03,0x91,0x0e,0x68,0xb0,0x26,0x14,0xe5,0xec,0x45,0x1e,0xbf,0x94,0x0f,0xba,0x6d,0x3d,0xc6,0x2b,0xe3,0xc0,0x52,0xf8,0x8c,0xd5,0x74,0x29,0xe4,0x18,0x4c,0xe6,0xb0,0xb1,0x79,0xf0,0x44}, {0xba,0xd6,0x47,0xa4,0xc3,0x82,0x91,0x7f,0xb7,0x29,0x27,0x4b,0xd1,0x14,0x00,0xd5,0x87,0xa0,0x64,0xb8,0x1c,0xf1,0x3c,0xe3,0xf3,0x55,0x1b,0xeb,0x73,0x7e,0x4a,0x15,0x33,0xbb,0xa5,0x08,0x44,0xbc,0x12,0xa2,0x02,0xed,0x5e,0xc7,0xc3,0x48,0x50,0x8d,0x44,0xec,0xbf,0x5a,0x0c,0xeb,0x1b,0xdd,0xeb,0x06,0xe2,0x46,0xf1,0xcc,0x45,0x29,0xb3,0x03,0xd0,0xe7,0x79,0xa1,0x32,0xc8,0x7e,0x4d,0x12,0x00,0x0a,0x9d,0x72,0x5f,0xf3,0x8f,0x6d,0x0e,0xa1,0xd4,0xc1,0x62,0x98,0x7a,0xb2,0x38,0x59,0xac,0xb8,0x68}, {0xa4,0x8c,0x7d,0x7b,0xb6,0x06,0x98,0x49,0x39,0x27,0xd2,0x27,0x84,0xe2,0x5b,0x57,0xb9,0x53,0x45,0x20,0xe7,0x5c,0x08,0xbb,0x84,0x78,0x41,0xae,0x41,0x4c,0xb6,0x38,0x31,0x71,0x15,0x77,0xeb,0xee,0x0c,0x3a,0x88,0xaf,0xc8,0x00,0x89,0x15,0x27,0x9b,0x36,0xa7,0x59,0xda,0x68,0xb6,0x65,0x80,0xbd,0x38,0xcc,0xa2,0xb6,0x7b,0xe5,0x51,0xa4,0xe3,0x9d,0x68,0x91,0xad,0x9d,0x8f,0x37,0x91,0xfb,0xf8,0x28,0x24,0x5f,0x17,0x88,0xb9,0xcf,0x9f,0x32,0xb5,0x0a,0x05,0x9f,0xc0,0x54,0x13,0xa2,0xdf,0x65,0x78}, {0xb1,0x21,0x32,0xaa,0x9a,0x2c,0x6f,0xba,0xa7,0x23,0xba,0x3b,0x53,0x21,0xa0,0x6c,0x3a,0x2c,0x19,0x92,0x4f,0x76,0xea,0x9d,0xe0,0x17,0x53,0x2e,0x5d,0xdd,0x6e,0x1d,0xbf,0xa3,0x4e,0x94,0xd0,0x5c,0x1a,0x6b,0xd2,0xc0,0x9d,0xb3,0x3a,0x35,0x70,0x74,0x49,0x2e,0x54,0x28,0x82,0x52,0xb2,0x71,0x7e,0x92,0x3c,0x28,0x69,0xea,0x1b,0x46,0x36,0xda,0x0f,0xab,0xac,0x8a,0x7a,0x21,0xc8,0x49,0x35,0x3d,0x54,0xc6,0x28,0xa5,0x68,0x75,0xab,0x13,0x8b,0x5b,0xd0,0x37,0x37,0xbc,0x2c,0x3a,0x62,0xef,0x3c,0x23}, {0xd9,0x34,0x92,0xf3,0xed,0x5d,0xa7,0xe2,0xf9,0x58,0xb5,0xe1,0x80,0x76,0x3d,0x96,0xfb,0x23,0x3c,0x6e,0xac,0x41,0x27,0x2c,0xc3,0x01,0x0e,0x32,0xa1,0x24,0x90,0x3a,0x8f,0x3e,0xdd,0x04,0x66,0x59,0xb7,0x59,0x2c,0x70,0x88,0xe2,0x77,0x03,0xb3,0x6c,0x23,0xc3,0xd9,0x5e,0x66,0x9c,0x33,0xb1,0x2f,0xe5,0xbc,0x61,0x60,0xe7,0x15,0x09,0x7e,0xa3,0x34,0xa8,0x35,0xe8,0x7d,0xdf,0xea,0x57,0x98,0x68,0xda,0x9c,0xe1,0x8b,0x26,0xb3,0x67,0x71,0x36,0x85,0x11,0x2c,0xc2,0xd5,0xef,0xdb,0xd9,0xb3,0x9e,0x58}, {0x5e,0x51,0xaa,0x49,0x54,0x63,0x5b,0xed,0x3a,0x82,0xc6,0x0b,0x9f,0xc4,0x65,0xa8,0xc4,0xd1,0x42,0x5b,0xe9,0x1f,0x0c,0x85,0xb9,0x15,0xd3,0x03,0x6f,0x6d,0xd7,0x30,0x1d,0x9c,0x2f,0x63,0x0e,0xdd,0xcc,0x2e,0x15,0x31,0x89,0x76,0x96,0xb6,0xd0,0x51,0x58,0x7a,0x63,0xa8,0x6b,0xb7,0xdf,0x52,0x39,0xef,0x0e,0xa0,0x49,0x7d,0xd3,0x6d,0xc7,0xe4,0x06,0x21,0x17,0x44,0x44,0x6c,0x69,0x7f,0x8d,0x92,0x80,0xd6,0x53,0xfb,0x26,0x3f,0x4d,0x69,0xa4,0x9e,0x73,0xb4,0xb0,0x4b,0x86,0x2e,0x11,0x97,0xc6,0x10}, {0xde,0x5f,0xbe,0x7d,0x27,0xc4,0x93,0x64,0xa2,0x7e,0xad,0x19,0xad,0x4f,0x5d,0x26,0x90,0x45,0x30,0x46,0xc8,0xdf,0x00,0x0e,0x09,0xfe,0x66,0xed,0xab,0x1c,0xe6,0x25,0x05,0xc8,0x58,0x83,0xa0,0x2a,0xa6,0x0c,0x47,0x42,0x20,0x7a,0xe3,0x4a,0x3d,0x6a,0xdc,0xed,0x11,0x3b,0xa6,0xd3,0x64,0x74,0xef,0x06,0x08,0x55,0xaf,0x9b,0xbf,0x03,0x04,0x66,0x58,0xcc,0x28,0xe1,0x13,0x3f,0x7e,0x74,0x59,0xb4,0xec,0x73,0x58,0x6f,0xf5,0x68,0x12,0xcc,0xed,0x3d,0xb6,0xa0,0x2c,0xe2,0x86,0x45,0x63,0x78,0x6d,0x56}, {0x34,0x08,0xc1,0x9c,0x9f,0xa4,0x37,0x16,0x51,0xc4,0x9b,0xa8,0xd5,0x56,0x8e,0xbc,0xdb,0xd2,0x7f,0x7f,0x0f,0xec,0xb5,0x1c,0xd9,0x35,0xcc,0x5e,0xca,0x5b,0x97,0x33,0xd0,0x2f,0x5a,0xc6,0x85,0x42,0x05,0xa1,0xc3,0x67,0x16,0xf3,0x2a,0x11,0x64,0x6c,0x58,0xee,0x1a,0x73,0x40,0xe2,0x0a,0x68,0x2a,0xb2,0x93,0x47,0xf3,0xa5,0xfb,0x14,0xd4,0xf7,0x85,0x69,0x16,0x46,0xd7,0x3c,0x57,0x00,0xc8,0xc9,0x84,0x5e,0x3e,0x59,0x1e,0x13,0x61,0x7b,0xb6,0xf2,0xc3,0x2f,0x6c,0x52,0xfc,0x83,0xea,0x9c,0x82,0x14}, {0xc2,0x95,0xdd,0x97,0x84,0x7b,0x43,0xff,0xa7,0xb5,0x4e,0xaa,0x30,0x4e,0x74,0x6c,0x8b,0xe8,0x85,0x3c,0x61,0x5d,0x0c,0x9e,0x73,0x81,0x75,0x5f,0x1e,0xc7,0xd9,0x2f,0xb8,0xec,0x71,0x4e,0x2f,0x0b,0xe7,0x21,0xe3,0x77,0xa4,0x40,0xb9,0xdd,0x56,0xe6,0x80,0x4f,0x1d,0xce,0xce,0x56,0x65,0xbf,0x7e,0x7b,0x5d,0x53,0xc4,0x3b,0xfc,0x05,0xdd,0xde,0xaf,0x52,0xae,0xb3,0xb8,0x24,0xcf,0x30,0x3b,0xed,0x8c,0x63,0x95,0x34,0x95,0x81,0xbe,0xa9,0x83,0xbc,0xa4,0x33,0x04,0x1f,0x65,0x5c,0x47,0x67,0x37,0x37}, {0xd9,0xad,0xd1,0x40,0xfd,0x99,0xba,0x2f,0x27,0xd0,0xf4,0x96,0x6f,0x16,0x07,0xb3,0xae,0x3b,0xf0,0x15,0x52,0xf0,0x63,0x43,0x99,0xf9,0x18,0x3b,0x6c,0xa5,0xbe,0x1f,0x90,0x65,0x24,0x14,0xcb,0x95,0x40,0x63,0x35,0x55,0xc1,0x16,0x40,0x14,0x12,0xef,0x60,0xbc,0x10,0x89,0x0c,0x14,0x38,0x9e,0x8c,0x7c,0x90,0x30,0x57,0x90,0xf5,0x6b,0x8a,0x5b,0x41,0xe1,0xf1,0x78,0xa7,0x0f,0x7e,0xa7,0xc3,0xba,0xf7,0x9f,0x40,0x06,0x50,0x9a,0xa2,0x9a,0xb8,0xd7,0x52,0x6f,0x56,0x5a,0x63,0x7a,0xf6,0x1c,0x52,0x02}, {0x94,0x52,0x9d,0x0a,0x0b,0xee,0x3f,0x51,0x66,0x5a,0xdf,0x0f,0x5c,0xe7,0x98,0x8f,0xce,0x07,0xe1,0xbf,0x88,0x86,0x61,0xd4,0xed,0x2c,0x38,0x71,0x7e,0x0a,0xa0,0x3f,0xe4,0x5e,0x2f,0x77,0x20,0x67,0x14,0xb1,0xce,0x9a,0x07,0x96,0xb1,0x94,0xf8,0xe8,0x4a,0x82,0xac,0x00,0x4d,0x22,0xf8,0x4a,0xc4,0x6c,0xcd,0xf7,0xd9,0x53,0x17,0x00,0x34,0xdb,0x3d,0x96,0x2d,0x23,0x69,0x3c,0x58,0x38,0x97,0xb4,0xda,0x87,0xde,0x1d,0x85,0xf2,0x91,0xa0,0xf9,0xd1,0xd7,0xaa,0xb6,0xed,0x48,0xa0,0x2f,0xfe,0xb5,0x12}, {0x4d,0xe3,0xfc,0x96,0xc4,0xfb,0xf0,0x71,0xed,0x5b,0xf3,0xad,0x6b,0x82,0xb9,0x73,0x61,0xc5,0x28,0xff,0x61,0x72,0x04,0xd2,0x6f,0x20,0xb1,0x6f,0xf9,0x76,0x9b,0x74,0x92,0x1e,0x6f,0xad,0x26,0x7c,0x2b,0xdf,0x13,0x89,0x4b,0x50,0x23,0xd3,0x66,0x4b,0xc3,0x8b,0x1c,0x75,0xc0,0x9d,0x40,0x8c,0xb8,0xc7,0x96,0x07,0xc2,0x93,0x7e,0x6f,0x05,0xae,0xa6,0xae,0x04,0xf6,0x5a,0x1f,0x99,0x9c,0xe4,0xbe,0xf1,0x51,0x23,0xc1,0x66,0x6b,0xff,0xee,0xb5,0x08,0xa8,0x61,0x51,0x21,0xe0,0x01,0x0f,0xc1,0xce,0x0f}, {0x44,0x1e,0xfe,0x49,0xa6,0x58,0x4d,0x64,0x7e,0x77,0xad,0x31,0xa2,0xae,0xfc,0x21,0xd2,0xd0,0x7f,0x88,0x5a,0x1c,0x44,0x02,0xf3,0x11,0xc5,0x83,0x71,0xaa,0x01,0x49,0x45,0x4e,0x24,0xc4,0x9d,0xd2,0xf2,0x3d,0x0a,0xde,0xd8,0x93,0x74,0x0e,0x02,0x2b,0x4d,0x21,0x0c,0x82,0x7e,0x06,0xc8,0x6c,0x0a,0xb9,0xea,0x6f,0x16,0x79,0x37,0x41,0xf0,0xf8,0x1a,0x8c,0x54,0xb7,0xb1,0x08,0xb4,0x99,0x62,0x24,0x7c,0x7a,0x0f,0xce,0x39,0xd9,0x06,0x1e,0xf9,0xb0,0x60,0xf7,0x13,0x12,0x6d,0x72,0x7b,0x88,0xbb,0x41}, {0xbe,0x46,0x43,0x74,0x44,0x7d,0xe8,0x40,0x25,0x2b,0xb5,0x15,0xd4,0xda,0x48,0x1d,0x3e,0x60,0x3b,0xa1,0x18,0x8a,0x3a,0x7c,0xf7,0xbd,0xcd,0x2f,0xc1,0x28,0xb7,0x4e,0xae,0x91,0x66,0x7c,0x59,0x4c,0x23,0x7e,0xc8,0xb4,0x85,0x0a,0x3d,0x9d,0x88,0x64,0xe7,0xfa,0x4a,0x35,0x0c,0xc9,0xe2,0xda,0x1d,0x9e,0x6a,0x0c,0x07,0x1e,0x87,0x0a,0x89,0x89,0xbc,0x4b,0x99,0xb5,0x01,0x33,0x60,0x42,0xdd,0x5b,0x3a,0xae,0x6b,0x73,0x3c,0x9e,0xd5,0x19,0xe2,0xad,0x61,0x0d,0x64,0xd4,0x85,0x26,0x0f,0x30,0xe7,0x3e}, {0xb7,0xd6,0x7d,0x9e,0xe4,0x55,0xd2,0xf5,0xac,0x1e,0x0b,0x61,0x5c,0x11,0x16,0x80,0xca,0x87,0xe1,0x92,0x5d,0x97,0x99,0x3c,0xc2,0x25,0x91,0x97,0x62,0x57,0x81,0x13,0x18,0x75,0x1e,0x84,0x47,0x79,0xfa,0x43,0xd7,0x46,0x9c,0x63,0x59,0xfa,0xc6,0xe5,0x74,0x2b,0x05,0xe3,0x1d,0x5e,0x06,0xa1,0x30,0x90,0xb8,0xcf,0xa2,0xc6,0x47,0x7d,0xe0,0xd6,0xf0,0x8e,0x14,0xd0,0xda,0x3f,0x3c,0x6f,0x54,0x91,0x9a,0x74,0x3e,0x9d,0x57,0x81,0xbb,0x26,0x10,0x62,0xec,0x71,0x80,0xec,0xc9,0x34,0x8d,0xf5,0x8c,0x14}, {0x27,0xf0,0x34,0x79,0xf6,0x92,0xa4,0x46,0xa9,0x0a,0x84,0xf6,0xbe,0x84,0x99,0x46,0x54,0x18,0x61,0x89,0x2a,0xbc,0xa1,0x5c,0xd4,0xbb,0x5d,0xbd,0x1e,0xfa,0xf2,0x3f,0x6d,0x75,0xe4,0x9a,0x7d,0x2f,0x57,0xe2,0x7f,0x48,0xf3,0x88,0xbb,0x45,0xc3,0x56,0x8d,0xa8,0x60,0x69,0x6d,0x0b,0xd1,0x9f,0xb9,0xa1,0xae,0x4e,0xad,0xeb,0x8f,0x27,0x66,0x39,0x93,0x8c,0x1f,0x68,0xaa,0xb1,0x98,0x0c,0x29,0x20,0x9c,0x94,0x21,0x8c,0x52,0x3c,0x9d,0x21,0x91,0x52,0x11,0x39,0x7b,0x67,0x9c,0xfe,0x02,0xdd,0x04,0x41}, {0x2a,0x42,0x24,0x11,0x5e,0xbf,0xb2,0x72,0xb5,0x3a,0xa3,0x98,0x33,0x0c,0xfa,0xa1,0x66,0xb6,0x52,0xfa,0x01,0x61,0xcb,0x94,0xd5,0x53,0xaf,0xaf,0x00,0x3b,0x86,0x2c,0xb8,0x6a,0x09,0xdb,0x06,0x4e,0x21,0x81,0x35,0x4f,0xe4,0x0c,0xc9,0xb6,0xa8,0x21,0xf5,0x2a,0x9e,0x40,0x2a,0xc1,0x24,0x65,0x81,0xa4,0xfc,0x8e,0xa4,0xb5,0x65,0x01,0x76,0x6a,0x84,0xa0,0x74,0xa4,0x90,0xf1,0xc0,0x7c,0x2f,0xcd,0x84,0xf9,0xef,0x12,0x8f,0x2b,0xaa,0x58,0x06,0x29,0x5e,0x69,0xb8,0xc8,0xfe,0xbf,0xd9,0x67,0x1b,0x59}, {0xfa,0x9b,0xb4,0x80,0x1c,0x0d,0x2f,0x31,0x8a,0xec,0xf3,0xab,0x5e,0x51,0x79,0x59,0x88,0x1c,0xf0,0x9e,0xc0,0x33,0x70,0x72,0xcb,0x7b,0x8f,0xca,0xc7,0x2e,0xe0,0x3d,0x5d,0xb5,0x18,0x9f,0x71,0xb3,0xb9,0x99,0x1e,0x64,0x8c,0xa1,0xfa,0xe5,0x65,0xe4,0xed,0x05,0x9f,0xc2,0x36,0x11,0x08,0x61,0x8b,0x12,0x30,0x70,0x86,0x4f,0x9b,0x48,0xef,0x92,0xeb,0x3a,0x2d,0x10,0x32,0xd2,0x61,0xa8,0x16,0x61,0xb4,0x53,0x62,0xe1,0x24,0xaa,0x0b,0x19,0xe7,0xab,0x7e,0x3d,0xbf,0xbe,0x6c,0x49,0xba,0xfb,0xf5,0x49}, {0xd4,0xcf,0x5b,0x8a,0x10,0x9a,0x94,0x30,0xeb,0x73,0x64,0xbc,0x70,0xdd,0x40,0xdc,0x1c,0x0d,0x7c,0x30,0xc1,0x94,0xc2,0x92,0x74,0x6e,0xfa,0xcb,0x6d,0xa8,0x04,0x56,0x2e,0x57,0x9c,0x1e,0x8c,0x62,0x5d,0x15,0x41,0x47,0x88,0xc5,0xac,0x86,0x4d,0x8a,0xeb,0x63,0x57,0x51,0xf6,0x52,0xa3,0x91,0x5b,0x51,0x67,0x88,0xc2,0xa6,0xa1,0x06,0xb6,0x64,0x17,0x7c,0xd4,0xd1,0x88,0x72,0x51,0x8b,0x41,0xe0,0x40,0x11,0x54,0x72,0xd1,0xf6,0xac,0x18,0x60,0x1a,0x03,0x9f,0xc6,0x42,0x27,0xfe,0x89,0x9e,0x98,0x20}, {0x7f,0xcc,0x2d,0x3a,0xfd,0x77,0x97,0x49,0x92,0xd8,0x4f,0xa5,0x2c,0x7c,0x85,0x32,0xa0,0xe3,0x07,0xd2,0x64,0xd8,0x79,0xa2,0x29,0x7e,0xa6,0x0c,0x1d,0xed,0x03,0x04,0x2e,0xec,0xea,0x85,0x8b,0x27,0x74,0x16,0xdf,0x2b,0xcb,0x7a,0x07,0xdc,0x21,0x56,0x5a,0xf4,0xcb,0x61,0x16,0x4c,0x0a,0x64,0xd3,0x95,0x05,0xf7,0x50,0x99,0x0b,0x73,0x52,0xc5,0x4e,0x87,0x35,0x2d,0x4b,0xc9,0x8d,0x6f,0x24,0x98,0xcf,0xc8,0xe6,0xc5,0xce,0x35,0xc0,0x16,0xfa,0x46,0xcb,0xf7,0xcc,0x3d,0x30,0x08,0x43,0x45,0xd7,0x5b}, {0xc2,0x4c,0xb2,0x28,0x95,0xd1,0x9a,0x7f,0x81,0xc1,0x35,0x63,0x65,0x54,0x6b,0x7f,0x36,0x72,0xc0,0x4f,0x6e,0xb6,0xb8,0x66,0x83,0xad,0x80,0x73,0x00,0x78,0x3a,0x13,0x2a,0x79,0xe7,0x15,0x21,0x93,0xc4,0x85,0xc9,0xdd,0xcd,0xbd,0xa2,0x89,0x4c,0xc6,0x62,0xd7,0xa3,0xad,0xa8,0x3d,0x1e,0x9d,0x2c,0xf8,0x67,0x30,0x12,0xdb,0xb7,0x5b,0xbe,0x62,0xca,0xc6,0x67,0xf4,0x61,0x09,0xee,0x52,0x19,0x21,0xd6,0x21,0xec,0x04,0x70,0x47,0xd5,0x9b,0x77,0x60,0x23,0x18,0xd2,0xe0,0xf0,0x58,0x6d,0xca,0x0d,0x74}, {0x4e,0xce,0xcf,0x52,0x07,0xee,0x48,0xdf,0xb7,0x08,0xec,0x06,0xf3,0xfa,0xff,0xc3,0xc4,0x59,0x54,0xb9,0x2a,0x0b,0x71,0x05,0x8d,0xa3,0x3e,0x96,0xfa,0x25,0x1d,0x16,0x3c,0x43,0x78,0x04,0x57,0x8c,0x1a,0x23,0x9d,0x43,0x81,0xc2,0x0e,0x27,0xb5,0xb7,0x9f,0x07,0xd9,0xe3,0xea,0x99,0xaa,0xdb,0xd9,0x03,0x2b,0x6c,0x25,0xf5,0x03,0x2c,0x7d,0xa4,0x53,0x7b,0x75,0x18,0x0f,0x79,0x79,0x58,0x0c,0xcf,0x30,0x01,0x7b,0x30,0xf9,0xf7,0x7e,0x25,0x77,0x3d,0x90,0x31,0xaf,0xbb,0x96,0xbd,0xbd,0x68,0x94,0x69}, {0xcf,0xfe,0xda,0xf4,0x46,0x2f,0x1f,0xbd,0xf7,0xd6,0x7f,0xa4,0x14,0x01,0xef,0x7c,0x7f,0xb3,0x47,0x4a,0xda,0xfd,0x1f,0xd3,0x85,0x57,0x90,0x73,0xa4,0x19,0x52,0x52,0x48,0x19,0xa9,0x6a,0xe6,0x3d,0xdd,0xd8,0xcc,0xd2,0xc0,0x2f,0xc2,0x64,0x50,0x48,0x2f,0xea,0xfd,0x34,0x66,0x24,0x48,0x9b,0x3a,0x2e,0x4a,0x6c,0x4e,0x1c,0x3e,0x29,0xe1,0x12,0x51,0x92,0x4b,0x13,0x6e,0x37,0xa0,0x5d,0xa1,0xdc,0xb5,0x78,0x37,0x70,0x11,0x31,0x1c,0x46,0xaf,0x89,0x45,0xb0,0x23,0x28,0x03,0x7f,0x44,0x5c,0x60,0x5b}, {0x89,0x7c,0xc4,0x20,0x59,0x80,0x65,0xb9,0xcc,0x8f,0x3b,0x92,0x0c,0x10,0xf0,0xe7,0x77,0xef,0xe2,0x02,0x65,0x25,0x01,0x00,0xee,0xb3,0xae,0xa8,0xce,0x6d,0xa7,0x24,0x4c,0xf0,0xe7,0xf0,0xc6,0xfe,0xe9,0x3b,0x62,0x49,0xe3,0x75,0x9e,0x57,0x6a,0x86,0x1a,0xe6,0x1d,0x1e,0x16,0xef,0x42,0x55,0xd5,0xbd,0x5a,0xcc,0xf4,0xfe,0x12,0x2f,0x40,0xc7,0xc0,0xdf,0xb2,0x22,0x45,0x0a,0x07,0xa4,0xc9,0x40,0x7f,0x6e,0xd0,0x10,0x68,0xf6,0xcf,0x78,0x41,0x14,0xcf,0xc6,0x90,0x37,0xa4,0x18,0x25,0x7b,0x60,0x5e}, {0x18,0x18,0xdf,0x6c,0x8f,0x1d,0xb3,0x58,0xa2,0x58,0x62,0xc3,0x4f,0xa7,0xcf,0x35,0x6e,0x1d,0xe6,0x66,0x4f,0xff,0xb3,0xe1,0xf7,0xd5,0xcd,0x6c,0xab,0xac,0x67,0x50,0x14,0xcf,0x96,0xa5,0x1c,0x43,0x2c,0xa0,0x00,0xe4,0xd3,0xae,0x40,0x2d,0xc4,0xe3,0xdb,0x26,0x0f,0x2e,0x80,0x26,0x45,0xd2,0x68,0x70,0x45,0x9e,0x13,0x33,0x1f,0x20,0x51,0x9d,0x03,0x08,0x6b,0x7f,0x52,0xfd,0x06,0x00,0x7c,0x01,0x64,0x49,0xb1,0x18,0xa8,0xa4,0x25,0x2e,0xb0,0x0e,0x22,0xd5,0x75,0x03,0x46,0x62,0x88,0xba,0x7c,0x39}, {0xb2,0x59,0x59,0xf0,0x93,0x30,0xc1,0x30,0x76,0x79,0xa9,0xe9,0x8d,0xa1,0x3a,0xe2,0x26,0x5e,0x1d,0x72,0x91,0xd4,0x2f,0x22,0x3a,0x6c,0x6e,0x76,0x20,0xd3,0x39,0x23,0xe7,0x79,0x13,0xc8,0xfb,0xc3,0x15,0x78,0xf1,0x2a,0xe1,0xdd,0x20,0x94,0x61,0xa6,0xd5,0xfd,0xa8,0x85,0xf8,0xc0,0xa9,0xff,0x52,0xc2,0xe1,0xc1,0x22,0x40,0x1b,0x77,0xa7,0x2f,0x3a,0x51,0x86,0xd9,0x7d,0xd8,0x08,0xcf,0xd4,0xf9,0x71,0x9b,0xac,0xf5,0xb3,0x83,0xa2,0x1e,0x1b,0xc3,0x6b,0xd0,0x76,0x1a,0x97,0x19,0x92,0x18,0x1a,0x33}, {0xc6,0x80,0x4f,0xfb,0x45,0x6f,0x16,0xf5,0xcf,0x75,0xc7,0x61,0xde,0xc7,0x36,0x9c,0x1c,0xd9,0x41,0x90,0x1b,0xe8,0xd4,0xe3,0x21,0xfe,0xbd,0x83,0x6b,0x7c,0x16,0x31,0xaf,0x72,0x75,0x9d,0x3a,0x2f,0x51,0x26,0x9e,0x4a,0x07,0x68,0x88,0xe2,0xcb,0x5b,0xc4,0xf7,0x80,0x11,0xc1,0xc1,0xed,0x84,0x7b,0xa6,0x49,0xf6,0x9f,0x61,0xc9,0x1a,0x68,0x10,0x4b,0x52,0x42,0x38,0x2b,0xf2,0x87,0xe9,0x9c,0xee,0x3b,0x34,0x68,0x50,0xc8,0x50,0x62,0x4a,0x84,0x71,0x9d,0xfc,0x11,0xb1,0x08,0x1f,0x34,0x36,0x24,0x61}, {0x8d,0x89,0x4e,0x87,0xdb,0x41,0x9d,0xd9,0x20,0xdc,0x07,0x6c,0xf1,0xa5,0xfe,0x09,0xbc,0x9b,0x0f,0xd0,0x67,0x2c,0x3d,0x79,0x40,0xff,0x5e,0x9e,0x30,0xe2,0xeb,0x46,0x38,0x26,0x2d,0x1a,0xe3,0x49,0x63,0x8b,0x35,0xfd,0xd3,0x9b,0x00,0xb7,0xdf,0x9d,0xa4,0x6b,0xa0,0xa3,0xb8,0xf1,0x8b,0x7f,0x45,0x04,0xd9,0x78,0x31,0xaa,0x22,0x15,0x38,0x49,0x61,0x69,0x53,0x2f,0x38,0x2c,0x10,0x6d,0x2d,0xb7,0x9a,0x40,0xfe,0xda,0x27,0xf2,0x46,0xb6,0x91,0x33,0xc8,0xe8,0x6c,0x30,0x24,0x05,0xf5,0x70,0xfe,0x45}, {0x8c,0x0b,0x0c,0x96,0xa6,0x75,0x48,0xda,0x20,0x2f,0x0e,0xef,0x76,0xd0,0x68,0x5b,0xd4,0x8f,0x0b,0x3d,0xcf,0x51,0xfb,0x07,0xd4,0x92,0xe3,0xa0,0x23,0x16,0x8d,0x42,0x91,0x14,0x95,0xc8,0x20,0x49,0xf2,0x62,0xa2,0x0c,0x63,0x3f,0xc8,0x07,0xf0,0x05,0xb8,0xd4,0xc9,0xf5,0xd2,0x45,0xbb,0x6f,0x45,0x22,0x7a,0xb5,0x6d,0x9f,0x61,0x16,0xfd,0x08,0xa3,0x01,0x44,0x4a,0x4f,0x08,0xac,0xca,0xa5,0x76,0xc3,0x19,0x22,0xa8,0x7d,0xbc,0xd1,0x43,0x46,0xde,0xb8,0xde,0xc6,0x38,0xbd,0x60,0x2d,0x59,0x81,0x1d}, {0x5f,0xac,0x0d,0xa6,0x56,0x87,0x36,0x61,0x57,0xdc,0xab,0xeb,0x6a,0x2f,0xe0,0x17,0x7d,0x0f,0xce,0x4c,0x2d,0x3f,0x19,0x7f,0xf0,0xdc,0xec,0x89,0x77,0x4a,0x23,0x20,0xe8,0xc5,0x85,0x7b,0x9f,0xb6,0x65,0x87,0xb2,0xba,0x68,0xd1,0x8b,0x67,0xf0,0x6f,0x9b,0x0f,0x33,0x1d,0x7c,0xe7,0x70,0x3a,0x7c,0x8e,0xaf,0xb0,0x51,0x6d,0x5f,0x3a,0x52,0xb2,0x78,0x71,0xb6,0x0d,0xd2,0x76,0x60,0xd1,0x1e,0xd5,0xf9,0x34,0x1c,0x07,0x70,0x11,0xe4,0xb3,0x20,0x4a,0x2a,0xf6,0x66,0xe3,0xff,0x3c,0x35,0x82,0xd6,0x7c}, {0xb6,0xfa,0x87,0xd8,0x5b,0xa4,0xe1,0x0b,0x6e,0x3b,0x40,0xba,0x32,0x6a,0x84,0x2a,0x00,0x60,0x6e,0xe9,0x12,0x10,0x92,0xd9,0x43,0x09,0xdc,0x3b,0x86,0xc8,0x38,0x28,0xf3,0xf4,0xac,0x68,0x60,0xcd,0x65,0xa6,0xd3,0xe3,0xd7,0x3c,0x18,0x2d,0xd9,0x42,0xd9,0x25,0x60,0x33,0x9d,0x38,0x59,0x57,0xff,0xd8,0x2c,0x2b,0x3b,0x25,0xf0,0x3e,0x30,0x50,0x46,0x4a,0xcf,0xb0,0x6b,0xd1,0xab,0x77,0xc5,0x15,0x41,0x6b,0x49,0xfa,0x9d,0x41,0xab,0xf4,0x8a,0xae,0xcf,0x82,0x12,0x28,0xa8,0x06,0xa6,0xb8,0xdc,0x21}, {0xc8,0x9f,0x9d,0x8c,0x46,0x04,0x60,0x5c,0xcb,0xa3,0x2a,0xd4,0x6e,0x09,0x40,0x25,0x9c,0x2f,0xee,0x12,0x4c,0x4d,0x5b,0x12,0xab,0x1d,0xa3,0x94,0x81,0xd0,0xc3,0x0b,0xba,0x31,0x77,0xbe,0xfa,0x00,0x8d,0x9a,0x89,0x18,0x9e,0x62,0x7e,0x60,0x03,0x82,0x7f,0xd9,0xf3,0x43,0x37,0x02,0xcc,0xb2,0x8b,0x67,0x6f,0x6c,0xbf,0x0d,0x84,0x5d,0x8b,0xe1,0x9f,0x30,0x0d,0x38,0x6e,0x70,0xc7,0x65,0xe1,0xb9,0xa6,0x2d,0xb0,0x6e,0xab,0x20,0xae,0x7d,0x99,0xba,0xbb,0x57,0xdd,0x96,0xc1,0x2a,0x23,0x76,0x42,0x3a}, {0xfa,0x84,0x70,0x8a,0x2c,0x43,0x42,0x4b,0x45,0xe5,0xb9,0xdf,0xe3,0x19,0x8a,0x89,0x5d,0xe4,0x58,0x9c,0x21,0x00,0x9f,0xbe,0xd1,0xeb,0x6d,0xa1,0xce,0x77,0xf1,0x1f,0xcb,0x7e,0x44,0xdb,0x72,0xc1,0xf8,0x3b,0xbd,0x2d,0x28,0xc6,0x1f,0xc4,0xcf,0x5f,0xfe,0x15,0xaa,0x75,0xc0,0xff,0xac,0x80,0xf9,0xa9,0xe1,0x24,0xe8,0xc9,0x70,0x07,0xfd,0xb5,0xb5,0x45,0x9a,0xd9,0x61,0xcf,0x24,0x79,0x3a,0x1b,0xe9,0x84,0x09,0x86,0x89,0x3e,0x3e,0x30,0x19,0x09,0x30,0xe7,0x1e,0x0b,0x50,0x41,0xfd,0x64,0xf2,0x39}, {0x9c,0xe2,0xe7,0xdb,0x17,0x34,0xad,0xa7,0x9c,0x13,0x9c,0x2b,0x6a,0x37,0x94,0xbd,0xa9,0x7b,0x59,0x93,0x8e,0x1b,0xe9,0xa0,0x40,0x98,0x88,0x68,0x34,0xd7,0x12,0x17,0xe1,0x7b,0x09,0xfe,0xab,0x4a,0x9b,0xd1,0x29,0x19,0xe0,0xdf,0xe1,0xfc,0x6d,0xa4,0xff,0xf1,0xa6,0x2c,0x94,0x08,0xc9,0xc3,0x4e,0xf1,0x35,0x2c,0x27,0x21,0xc6,0x65,0xdd,0x93,0x31,0xce,0xf8,0x89,0x2b,0xe7,0xbb,0xc0,0x25,0xa1,0x56,0x33,0x10,0x4d,0x83,0xfe,0x1c,0x2e,0x3d,0xa9,0x19,0x04,0x72,0xe2,0x9c,0xb1,0x0a,0x80,0xf9,0x22}, {0xcb,0xf8,0x9e,0x3e,0x8a,0x36,0x5a,0x60,0x15,0x47,0x50,0xa5,0x22,0xc0,0xe9,0xe3,0x8f,0x24,0x24,0x5f,0xb0,0x48,0x3d,0x55,0xe5,0x26,0x76,0x64,0xcd,0x16,0xf4,0x13,0xac,0xfd,0x6e,0x9a,0xdd,0x9f,0x02,0x42,0x41,0x49,0xa5,0x34,0xbe,0xce,0x12,0xb9,0x7b,0xf3,0xbd,0x87,0xb9,0x64,0x0f,0x64,0xb4,0xca,0x98,0x85,0xd3,0xa4,0x71,0x41,0x8c,0x4c,0xc9,0x99,0xaa,0x58,0x27,0xfa,0x07,0xb8,0x00,0xb0,0x6f,0x6f,0x00,0x23,0x92,0x53,0xda,0xad,0xdd,0x91,0xd2,0xfb,0xab,0xd1,0x4b,0x57,0xfa,0x14,0x82,0x50}, {0x4b,0xfe,0xd6,0x3e,0x15,0x69,0x02,0xc2,0xc4,0x77,0x1d,0x51,0x39,0x67,0x5a,0xa6,0x94,0xaf,0x14,0x2c,0x46,0x26,0xde,0xcb,0x4b,0xa7,0xab,0x6f,0xec,0x60,0xf9,0x22,0xd6,0x03,0xd0,0x53,0xbb,0x15,0x1a,0x46,0x65,0xc9,0xf3,0xbc,0x88,0x28,0x10,0xb2,0x5a,0x3a,0x68,0x6c,0x75,0x76,0xc5,0x27,0x47,0xb4,0x6c,0xc8,0xa4,0x58,0x77,0x3a,0x76,0x50,0xae,0x93,0xf6,0x11,0x81,0x54,0xa6,0x54,0xfd,0x1d,0xdf,0x21,0xae,0x1d,0x65,0x5e,0x11,0xf3,0x90,0x8c,0x24,0x12,0x94,0xf4,0xe7,0x8d,0x5f,0xd1,0x9f,0x5d}, {0x7f,0x72,0x63,0x6d,0xd3,0x08,0x14,0x03,0x33,0xb5,0xc7,0xd7,0xef,0x9a,0x37,0x6a,0x4b,0xe2,0xae,0xcc,0xc5,0x8f,0xe1,0xa9,0xd3,0xbe,0x8f,0x4f,0x91,0x35,0x2f,0x33,0x1e,0x52,0xd7,0xee,0x2a,0x4d,0x24,0x3f,0x15,0x96,0x2e,0x43,0x28,0x90,0x3a,0x8e,0xd4,0x16,0x9c,0x2e,0x77,0xba,0x64,0xe1,0xd8,0x98,0xeb,0x47,0xfa,0x87,0xc1,0x3b,0x0c,0xc2,0x86,0xea,0x15,0x01,0x47,0x6d,0x25,0xd1,0x46,0x6c,0xcb,0xb7,0x8a,0x99,0x88,0x01,0x66,0x3a,0xb5,0x32,0x78,0xd7,0x03,0xba,0x6f,0x90,0xce,0x81,0x0d,0x45}, {0x75,0x52,0x20,0xa6,0xa1,0xb6,0x7b,0x6e,0x83,0x8e,0x3c,0x41,0xd7,0x21,0x4f,0xaa,0xb2,0x5c,0x8f,0xe8,0x55,0xd1,0x56,0x6f,0xe1,0x5b,0x34,0xa6,0x4b,0x5d,0xe2,0x2d,0x3f,0x74,0xae,0x1c,0x96,0xd8,0x74,0xd0,0xed,0x63,0x1c,0xee,0xf5,0x18,0x6d,0xf8,0x29,0xed,0xf4,0xe7,0x5b,0xc5,0xbd,0x97,0x08,0xb1,0x3a,0x66,0x79,0xd2,0xba,0x4c,0xcd,0x1f,0xd7,0xa0,0x24,0x90,0xd1,0x80,0xf8,0x8a,0x28,0xfb,0x0a,0xc2,0x25,0xc5,0x19,0x64,0x3a,0x5f,0x4b,0x97,0xa3,0xb1,0x33,0x72,0x00,0xe2,0xef,0xbc,0x7f,0x7d}, {0x01,0x28,0x6b,0x26,0x6a,0x1e,0xef,0xfa,0x16,0x9f,0x73,0xd5,0xc4,0x68,0x6c,0x86,0x2c,0x76,0x03,0x1b,0xbc,0x2f,0x8a,0xf6,0x8d,0x5a,0xb7,0x87,0x5e,0x43,0x75,0x59,0x94,0x90,0xc2,0xf3,0xc5,0x5d,0x7c,0xcd,0xab,0x05,0x91,0x2a,0x9a,0xa2,0x81,0xc7,0x58,0x30,0x1c,0x42,0x36,0x1d,0xc6,0x80,0xd7,0xd4,0xd8,0xdc,0x96,0xd1,0x9c,0x4f,0x68,0x37,0x7b,0x6a,0xd8,0x97,0x92,0x19,0x63,0x7a,0xd1,0x1a,0x24,0x58,0xd0,0xd0,0x17,0x0c,0x1c,0x5c,0xad,0x9c,0x02,0xba,0x07,0x03,0x7a,0x38,0x84,0xd0,0xcd,0x7c}, {0x17,0x04,0x26,0x6d,0x2c,0x42,0xa6,0xdc,0xbd,0x40,0x82,0x94,0x50,0x3d,0x15,0xae,0x77,0xc6,0x68,0xfb,0xb4,0xc1,0xc0,0xa9,0x53,0xcf,0xd0,0x61,0xed,0xd0,0x8b,0x42,0x93,0xcc,0x60,0x67,0x18,0x84,0x0c,0x9b,0x99,0x2a,0xb3,0x1a,0x7a,0x00,0xae,0xcd,0x18,0xda,0x0b,0x62,0x86,0xec,0x8d,0xa8,0x44,0xca,0x90,0x81,0x84,0xca,0x93,0x35,0xa7,0x9a,0x84,0x5e,0x9a,0x18,0x13,0x92,0xcd,0xfa,0xd8,0x65,0x35,0xc3,0xd8,0xd4,0xd1,0xbb,0xfd,0x53,0x5b,0x54,0x52,0x8c,0xe6,0x63,0x2d,0xda,0x08,0x83,0x39,0x27}, {0x13,0xd4,0x5e,0x43,0x28,0x8d,0xc3,0x42,0xc9,0xcc,0x78,0x32,0x60,0xf3,0x50,0xbd,0xef,0x03,0xda,0x79,0x1a,0xab,0x07,0xbb,0x55,0x33,0x8c,0xbe,0xae,0x97,0x95,0x26,0x53,0x24,0x70,0x0a,0x4c,0x0e,0xa1,0xb9,0xde,0x1b,0x7d,0xd5,0x66,0x58,0xa2,0x0f,0xf7,0xda,0x27,0xcd,0xb5,0xd9,0xb9,0xff,0xfd,0x33,0x2c,0x49,0x45,0x29,0x2c,0x57,0xbe,0x30,0xcd,0xd6,0x45,0xc7,0x7f,0xc7,0xfb,0xae,0xba,0xe3,0xd3,0xe8,0xdf,0xe4,0x0c,0xda,0x5d,0xaa,0x30,0x88,0x2c,0xa2,0x80,0xca,0x5b,0xc0,0x98,0x54,0x98,0x7f}, {0x17,0xe1,0x0b,0x9f,0x88,0xce,0x49,0x38,0x88,0xa2,0x54,0x7b,0x1b,0xad,0x05,0x80,0x1c,0x92,0xfc,0x23,0x9f,0xc3,0xa3,0x3d,0x04,0xf3,0x31,0x0a,0x47,0xec,0xc2,0x76,0x63,0x63,0xbf,0x0f,0x52,0x15,0x56,0xd3,0xa6,0xfb,0x4d,0xcf,0x45,0x5a,0x04,0x08,0xc2,0xa0,0x3f,0x87,0xbc,0x4f,0xc2,0xee,0xe7,0x12,0x9b,0xd6,0x3c,0x65,0xf2,0x30,0x85,0x0c,0xc1,0xaa,0x38,0xc9,0x08,0x8a,0xcb,0x6b,0x27,0xdb,0x60,0x9b,0x17,0x46,0x70,0xac,0x6f,0x0e,0x1e,0xc0,0x20,0xa9,0xda,0x73,0x64,0x59,0xf1,0x73,0x12,0x2f}, {0x11,0x1e,0xe0,0x8a,0x7c,0xfc,0x39,0x47,0x9f,0xab,0x6a,0x4a,0x90,0x74,0x52,0xfd,0x2e,0x8f,0x72,0x87,0x82,0x8a,0xd9,0x41,0xf2,0x69,0x5b,0xd8,0x2a,0x57,0x9e,0x5d,0xc0,0x0b,0xa7,0x55,0xd7,0x8b,0x48,0x30,0xe7,0x42,0xd4,0xf1,0xa4,0xb5,0xd6,0x06,0x62,0x61,0x59,0xbc,0x9e,0xa6,0xd1,0xea,0x84,0xf7,0xc5,0xed,0x97,0x19,0xac,0x38,0x3b,0xb1,0x51,0xa7,0x17,0xb5,0x66,0x06,0x8c,0x85,0x9b,0x7e,0x86,0x06,0x7d,0x74,0x49,0xde,0x4d,0x45,0x11,0xc0,0xac,0xac,0x9c,0xe6,0xe9,0xbf,0x9c,0xcd,0xdf,0x22}, {0xd9,0x0c,0x0d,0xc3,0xe0,0xd2,0xdb,0x8d,0x33,0x43,0xbb,0xac,0x5f,0x66,0x8e,0xad,0x1f,0x96,0x2a,0x32,0x8c,0x25,0x6b,0x8f,0xc7,0xc1,0x48,0x54,0xc0,0x16,0x29,0x6b,0xa1,0xe0,0x3b,0x10,0xb4,0x59,0xec,0x56,0x69,0xf9,0x59,0xd2,0xec,0xba,0xe3,0x2e,0x32,0xcd,0xf5,0x13,0x94,0xb2,0x7c,0x79,0x72,0xe4,0xcd,0x24,0x78,0x87,0xe9,0x0f,0x3b,0x91,0xba,0x0a,0xd1,0x34,0xdb,0x7e,0x0e,0xac,0x6d,0x2e,0x82,0xcd,0xa3,0x4e,0x15,0xf8,0x78,0x65,0xff,0x3d,0x08,0x66,0x17,0x0a,0xf0,0x7f,0x30,0x3f,0x30,0x4c}, {0x85,0x8c,0xb2,0x17,0xd6,0x3b,0x0a,0xd3,0xea,0x3b,0x77,0x39,0xb7,0x77,0xd3,0xc5,0xbf,0x5c,0x6a,0x1e,0x8c,0xe7,0xc6,0xc6,0xc4,0xb7,0x2a,0x8b,0xf7,0xb8,0x61,0x0d,0x00,0x45,0xd9,0x0d,0x58,0x03,0xfc,0x29,0x93,0xec,0xbb,0x6f,0xa4,0x7a,0xd2,0xec,0xf8,0xa7,0xe2,0xc2,0x5f,0x15,0x0a,0x13,0xd5,0xa1,0x06,0xb7,0x1a,0x15,0x6b,0x41,0xb0,0x36,0xc1,0xe9,0xef,0xd7,0xa8,0x56,0x20,0x4b,0xe4,0x58,0xcd,0xe5,0x07,0xbd,0xab,0xe0,0x57,0x1b,0xda,0x2f,0xe6,0xaf,0xd2,0xe8,0x77,0x42,0xf7,0x2a,0x1a,0x19}, {0x31,0x14,0x3c,0xc5,0x4b,0xf7,0x16,0xce,0xde,0xed,0x72,0x20,0xce,0x25,0x97,0x2b,0xe7,0x3e,0xb2,0xb5,0x6f,0xc3,0xb9,0xb8,0x08,0xc9,0x5c,0x0b,0x45,0x0e,0x2e,0x7e,0xfb,0x0e,0x46,0x4f,0x43,0x2b,0xe6,0x9f,0xd6,0x07,0x36,0xa6,0xd4,0x03,0xd3,0xde,0x24,0xda,0xa0,0xb7,0x0e,0x21,0x52,0xf0,0x93,0x5b,0x54,0x00,0xbe,0x7d,0x7e,0x23,0x30,0xb4,0x01,0x67,0xed,0x75,0x35,0x01,0x10,0xfd,0x0b,0x9f,0xe6,0x94,0x10,0x23,0x22,0x7f,0xe4,0x83,0x15,0x0f,0x32,0x75,0xe3,0x55,0x11,0xb1,0x99,0xa6,0xaf,0x71}, {0x1d,0xb6,0x53,0x39,0x9b,0x6f,0xce,0x65,0xe6,0x41,0xa1,0xaf,0xea,0x39,0x58,0xc6,0xfe,0x59,0xf7,0xa9,0xfd,0x5f,0x43,0x0f,0x8e,0xc2,0xb1,0xc2,0xe9,0x42,0x11,0x02,0xd6,0x50,0x3b,0x47,0x1c,0x3c,0x42,0xea,0x10,0xef,0x38,0x3b,0x1f,0x7a,0xe8,0x51,0x95,0xbe,0xc9,0xb2,0x5f,0xbf,0x84,0x9b,0x1c,0x9a,0xf8,0x78,0xbc,0x1f,0x73,0x00,0x80,0x18,0xf8,0x48,0x18,0xc7,0x30,0xe4,0x19,0xc1,0xce,0x5e,0x22,0x0c,0x96,0xbf,0xe3,0x15,0xba,0x6b,0x83,0xe0,0xda,0xb6,0x08,0x58,0xe1,0x47,0x33,0x6f,0x4d,0x4c}, {0xc9,0x1f,0x7d,0xc1,0xcf,0xec,0xf7,0x18,0x14,0x3c,0x40,0x51,0xa6,0xf5,0x75,0x6c,0xdf,0x0c,0xee,0xf7,0x2b,0x71,0xde,0xdb,0x22,0x7a,0xe4,0xa7,0xaa,0xdd,0x3f,0x19,0x70,0x19,0x8f,0x98,0xfc,0xdd,0x0c,0x2f,0x1b,0xf5,0xb9,0xb0,0x27,0x62,0x91,0x6b,0xbe,0x76,0x91,0x77,0xc4,0xb6,0xc7,0x6e,0xa8,0x9f,0x8f,0xa8,0x00,0x95,0xbf,0x38,0x6f,0x87,0xe8,0x37,0x3c,0xc9,0xd2,0x1f,0x2c,0x46,0xd1,0x18,0x5a,0x1e,0xf6,0xa2,0x76,0x12,0x24,0x39,0x82,0xf5,0x80,0x50,0x69,0x49,0x0d,0xbf,0x9e,0xb9,0x6f,0x6a}, {0xeb,0x55,0x08,0x56,0xbb,0xc1,0x46,0x6a,0x9d,0xf0,0x93,0xf8,0x38,0xbb,0x16,0x24,0xc1,0xac,0x71,0x8f,0x37,0x11,0x1d,0xd7,0xea,0x96,0x18,0xa3,0x14,0x69,0xf7,0x75,0xc6,0x23,0xe4,0xb6,0xb5,0x22,0xb1,0xee,0x8e,0xff,0x86,0xf2,0x10,0x70,0x9d,0x93,0x8c,0x5d,0xcf,0x1d,0x83,0x2a,0xa9,0x90,0x10,0xeb,0xc5,0x42,0x9f,0xda,0x6f,0x13,0xd1,0xbd,0x05,0xa3,0xb1,0xdf,0x4c,0xf9,0x08,0x2c,0xf8,0x9f,0x9d,0x4b,0x36,0x0f,0x8a,0x58,0xbb,0xc3,0xa5,0xd8,0x87,0x2a,0xba,0xdc,0xe8,0x0b,0x51,0x83,0x21,0x02}, {0x14,0x2d,0xad,0x5e,0x38,0x66,0xf7,0x4a,0x30,0x58,0x7c,0xca,0x80,0xd8,0x8e,0xa0,0x3d,0x1e,0x21,0x10,0xe6,0xa6,0x13,0x0d,0x03,0x6c,0x80,0x7b,0xe1,0x1c,0x07,0x6a,0x7f,0x7a,0x30,0x43,0x01,0x71,0x5a,0x9d,0x5f,0xa4,0x7d,0xc4,0x9e,0xde,0x63,0xb0,0xd3,0x7a,0x92,0xbe,0x52,0xfe,0xbb,0x22,0x6c,0x42,0x40,0xfd,0x41,0xc4,0x87,0x13,0xf8,0x8a,0x97,0x87,0xd1,0xc3,0xd3,0xb5,0x13,0x44,0x0e,0x7f,0x3d,0x5a,0x2b,0x72,0xa0,0x7c,0x47,0xbb,0x48,0x48,0x7b,0x0d,0x92,0xdc,0x1e,0xaf,0x6a,0xb2,0x71,0x31}, {0xa8,0x4c,0x56,0x97,0x90,0x31,0x2f,0xa9,0x19,0xe1,0x75,0x22,0x4c,0xb8,0x7b,0xff,0x50,0x51,0x87,0xa4,0x37,0xfe,0x55,0x4f,0x5a,0x83,0xf0,0x3c,0x87,0xd4,0x1f,0x22,0xd1,0x47,0x8a,0xb2,0xd8,0xb7,0x0d,0xa6,0xf1,0xa4,0x70,0x17,0xd6,0x14,0xbf,0xa6,0x58,0xbd,0xdd,0x53,0x93,0xf8,0xa1,0xd4,0xe9,0x43,0x42,0x34,0x63,0x4a,0x51,0x6c,0x41,0x63,0x15,0x3a,0x4f,0x20,0x22,0x23,0x2d,0x03,0x0a,0xba,0xe9,0xe0,0x73,0xfb,0x0e,0x03,0x0f,0x41,0x4c,0xdd,0xe0,0xfc,0xaa,0x4a,0x92,0xfb,0x96,0xa5,0xda,0x48}, {0xc7,0x9c,0xa5,0x5c,0x66,0x8e,0xca,0x6e,0xa0,0xac,0x38,0x2e,0x4b,0x25,0x47,0xa8,0xce,0x17,0x1e,0xd2,0x08,0xc7,0xaf,0x31,0xf7,0x4a,0xd8,0xca,0xfc,0xd6,0x6d,0x67,0x93,0x97,0x4c,0xc8,0x5d,0x1d,0xf6,0x14,0x06,0x82,0x41,0xef,0xe3,0xf9,0x41,0x99,0xac,0x77,0x62,0x34,0x8f,0xb8,0xf5,0xcd,0xa9,0x79,0x8a,0x0e,0xfa,0x37,0xc8,0x58,0x58,0x90,0xfc,0x96,0x85,0x68,0xf9,0x0c,0x1b,0xa0,0x56,0x7b,0xf3,0xbb,0xdc,0x1d,0x6a,0xd6,0x35,0x49,0x7d,0xe7,0xc2,0xdc,0x0a,0x7f,0xa5,0xc6,0xf2,0x73,0x4f,0x1c}, {0xbb,0xa0,0x5f,0x30,0xbd,0x4f,0x7a,0x0e,0xad,0x63,0xc6,0x54,0xe0,0x4c,0x9d,0x82,0x48,0x38,0xe3,0x2f,0x83,0xc3,0x21,0xf4,0x42,0x4c,0xf6,0x1b,0x0d,0xc8,0x5a,0x79,0x84,0x34,0x7c,0xfc,0x6e,0x70,0x6e,0xb3,0x61,0xcf,0xc1,0xc3,0xb4,0xc9,0xdf,0x73,0xe5,0xc7,0x1c,0x78,0xc9,0x79,0x1d,0xeb,0x5c,0x67,0xaf,0x7d,0xdb,0x9a,0x45,0x70,0xb3,0x2b,0xb4,0x91,0x49,0xdb,0x91,0x1b,0xca,0xdc,0x02,0x4b,0x23,0x96,0x26,0x57,0xdc,0x78,0x8c,0x1f,0xe5,0x9e,0xdf,0x9f,0xd3,0x1f,0xe2,0x8c,0x84,0x62,0xe1,0x5f}, {0x1a,0x96,0x94,0xe1,0x4f,0x21,0x59,0x4e,0x4f,0xcd,0x71,0x0d,0xc7,0x7d,0xbe,0x49,0x2d,0xf2,0x50,0x3b,0xd2,0xcf,0x00,0x93,0x32,0x72,0x91,0xfc,0x46,0xd4,0x89,0x47,0x08,0xb2,0x7c,0x5d,0x2d,0x85,0x79,0x28,0xe7,0xf2,0x7d,0x68,0x70,0xdd,0xde,0xb8,0x91,0x78,0x68,0x21,0xab,0xff,0x0b,0xdc,0x35,0xaa,0x7d,0x67,0x43,0xc0,0x44,0x2b,0x8e,0xb7,0x4e,0x07,0xab,0x87,0x1c,0x1a,0x67,0xf4,0xda,0x99,0x8e,0xd1,0xc6,0xfa,0x67,0x90,0x4f,0x48,0xcd,0xbb,0xac,0x3e,0xe4,0xa4,0xb9,0x2b,0xef,0x2e,0xc5,0x60}, {0xf1,0x8b,0xfd,0x3b,0xbc,0x89,0x5d,0x0b,0x1a,0x55,0xf3,0xc9,0x37,0x92,0x6b,0xb0,0xf5,0x28,0x30,0xd5,0xb0,0x16,0x4c,0x0e,0xab,0xca,0xcf,0x2c,0x31,0x9c,0xbc,0x10,0x11,0x6d,0xae,0x7c,0xc2,0xc5,0x2b,0x70,0xab,0x8c,0xa4,0x54,0x9b,0x69,0xc7,0x44,0xb2,0x2e,0x49,0xba,0x56,0x40,0xbc,0xef,0x6d,0x67,0xb6,0xd9,0x48,0x72,0xd7,0x70,0x5b,0xa0,0xc2,0x3e,0x4b,0xe8,0x8a,0xaa,0xe0,0x81,0x17,0xed,0xf4,0x9e,0x69,0x98,0xd1,0x85,0x8e,0x70,0xe4,0x13,0x45,0x79,0x13,0xf4,0x76,0xa9,0xd3,0x5b,0x75,0x63}, {0x53,0x08,0xd1,0x2a,0x3e,0xa0,0x5f,0xb5,0x69,0x35,0xe6,0x9e,0x90,0x75,0x6f,0x35,0x90,0xb8,0x69,0xbe,0xfd,0xf1,0xf9,0x9f,0x84,0x6f,0xc1,0x8b,0xc4,0xc1,0x8c,0x0d,0xb7,0xac,0xf1,0x97,0x18,0x10,0xc7,0x3d,0xd8,0xbb,0x65,0xc1,0x5e,0x7d,0xda,0x5d,0x0f,0x02,0xa1,0x0f,0x9c,0x5b,0x8e,0x50,0x56,0x2a,0xc5,0x37,0x17,0x75,0x63,0x27,0xa9,0x19,0xb4,0x6e,0xd3,0x02,0x94,0x02,0xa5,0x60,0xb4,0x77,0x7e,0x4e,0xb4,0xf0,0x56,0x49,0x3c,0xd4,0x30,0x62,0xa8,0xcf,0xe7,0x66,0xd1,0x7a,0x8a,0xdd,0xc2,0x70}, {0x0e,0xec,0x6f,0x9f,0x50,0x94,0x61,0x65,0x8d,0x51,0xc6,0x46,0xa9,0x7e,0x2e,0xee,0x5c,0x9b,0xe0,0x67,0xf3,0xc1,0x33,0x97,0x95,0x84,0x94,0x63,0x63,0xac,0x0f,0x2e,0x13,0x7e,0xed,0xb8,0x7d,0x96,0xd4,0x91,0x7a,0x81,0x76,0xd7,0x0a,0x2f,0x25,0x74,0x64,0x25,0x85,0x0d,0xe0,0x82,0x09,0xe4,0xe5,0x3c,0xa5,0x16,0x38,0x61,0xb8,0x32,0x64,0xcd,0x48,0xe4,0xbe,0xf7,0xe7,0x79,0xd0,0x86,0x78,0x08,0x67,0x3a,0xc8,0x6a,0x2e,0xdb,0xe4,0xa0,0xd9,0xd4,0x9f,0xf8,0x41,0x4f,0x5a,0x73,0x5c,0x21,0x79,0x41}, {0x2a,0xed,0xdc,0xd7,0xe7,0x94,0x70,0x8c,0x70,0x9c,0xd3,0x47,0xc3,0x8a,0xfb,0x97,0x02,0xd9,0x06,0xa9,0x33,0xe0,0x3b,0xe1,0x76,0x9d,0xd9,0x0c,0xa3,0x44,0x03,0x70,0x34,0xcd,0x6b,0x28,0xb9,0x33,0xae,0xe4,0xdc,0xd6,0x9d,0x55,0xb6,0x7e,0xef,0xb7,0x1f,0x8e,0xd3,0xb3,0x1f,0x14,0x8b,0x27,0x86,0xc2,0x41,0x22,0x66,0x85,0xfa,0x31,0xf4,0x22,0x36,0x2e,0x42,0x6c,0x82,0xaf,0x2d,0x50,0x33,0x98,0x87,0x29,0x20,0xc1,0x23,0x91,0x38,0x2b,0xe1,0xb7,0xc1,0x9b,0x89,0x24,0x95,0xa9,0x12,0x23,0xbb,0x24}, {0xc3,0x67,0xde,0x32,0x17,0xed,0xa8,0xb1,0x48,0x49,0x1b,0x46,0x18,0x94,0xb4,0x3c,0xd2,0xbc,0xcf,0x76,0x43,0x43,0xbd,0x8e,0x08,0x80,0x18,0x1e,0x87,0x3e,0xee,0x0f,0x6b,0x5c,0xf8,0xf5,0x2a,0x0c,0xf8,0x41,0x94,0x67,0xfa,0x04,0xc3,0x84,0x72,0x68,0xad,0x1b,0xba,0xa3,0x99,0xdf,0x45,0x89,0x16,0x5d,0xeb,0xff,0xf9,0x2a,0x1d,0x0d,0xdf,0x1e,0x62,0x32,0xa1,0x8a,0xda,0xa9,0x79,0x65,0x22,0x59,0xa1,0x22,0xb8,0x30,0x93,0xc1,0x9a,0xa7,0x7b,0x19,0x04,0x40,0x76,0x1d,0x53,0x18,0x97,0xd7,0xac,0x16}, {0x3d,0x1d,0x9b,0x2d,0xaf,0x72,0xdf,0x72,0x5a,0x24,0x32,0xa4,0x36,0x2a,0x46,0x63,0x37,0x96,0xb3,0x16,0x79,0xa0,0xce,0x3e,0x09,0x23,0x30,0xb9,0xf6,0x0e,0x3e,0x12,0xad,0xb6,0x87,0x78,0xc5,0xc6,0x59,0xc9,0xba,0xfe,0x90,0x5f,0xad,0x9e,0xe1,0x94,0x04,0xf5,0x42,0xa3,0x62,0x4e,0xe2,0x16,0x00,0x17,0x16,0x18,0x4b,0xd3,0x4e,0x16,0x9a,0xe6,0x2f,0x19,0x4c,0xd9,0x7e,0x48,0x13,0x15,0x91,0x3a,0xea,0x2c,0xae,0x61,0x27,0xde,0xa4,0xb9,0xd3,0xf6,0x7b,0x87,0xeb,0xf3,0x73,0x10,0xc6,0x0f,0xda,0x78}, {0x6a,0xc6,0x2b,0xe5,0x28,0x5d,0xf1,0x5b,0x8e,0x1a,0xf0,0x70,0x18,0xe3,0x47,0x2c,0xdd,0x8b,0xc2,0x06,0xbc,0xaf,0x19,0x24,0x3a,0x17,0x6b,0x25,0xeb,0xde,0x25,0x2d,0x94,0x3a,0x0c,0x68,0xf1,0x80,0x9f,0xa2,0xe6,0xe7,0xe9,0x1a,0x15,0x7e,0xf7,0x71,0x73,0x79,0x01,0x48,0x58,0xf1,0x00,0x11,0xdd,0x8d,0xb3,0x16,0xb3,0xa4,0x4a,0x05,0xb8,0x7c,0x26,0x19,0x8d,0x46,0xc8,0xdf,0xaf,0x4d,0xe5,0x66,0x9c,0x78,0x28,0x0b,0x17,0xec,0x6e,0x66,0x2a,0x1d,0xeb,0x2a,0x60,0xa7,0x7d,0xab,0xa6,0x10,0x46,0x13}, {0xfe,0xb0,0xf6,0x8d,0xc7,0x8e,0x13,0x51,0x1b,0xf5,0x75,0xe5,0x89,0xda,0x97,0x53,0xb9,0xf1,0x7a,0x71,0x1d,0x7a,0x20,0x09,0x50,0xd6,0x20,0x2b,0xba,0xfd,0x02,0x21,0x15,0xf5,0xd1,0x77,0xe7,0x65,0x2a,0xcd,0xf1,0x60,0xaa,0x8f,0x87,0x91,0x89,0x54,0xe5,0x06,0xbc,0xda,0xbc,0x3b,0xb7,0xb1,0xfb,0xc9,0x7c,0xa9,0xcb,0x78,0x48,0x65,0xa1,0xe6,0x5c,0x05,0x05,0xe4,0x9e,0x96,0x29,0xad,0x51,0x12,0x68,0xa7,0xbc,0x36,0x15,0xa4,0x7d,0xaa,0x17,0xf5,0x1a,0x3a,0xba,0xb2,0xec,0x29,0xdb,0x25,0xd7,0x0a}, {0x57,0x24,0x4e,0x83,0xb1,0x67,0x42,0xdc,0xc5,0x1b,0xce,0x70,0xb5,0x44,0x75,0xb6,0xd7,0x5e,0xd1,0xf7,0x0b,0x7a,0xf0,0x1a,0x50,0x36,0xa0,0x71,0xfb,0xcf,0xef,0x4a,0x85,0x6f,0x05,0x9b,0x0c,0xbc,0xc7,0xfe,0xd7,0xff,0xf5,0xe7,0x68,0x52,0x7d,0x53,0xfa,0xae,0x12,0x43,0x62,0xc6,0xaf,0x77,0xd9,0x9f,0x39,0x02,0x53,0x5f,0x67,0x4f,0x1e,0x17,0x15,0x04,0x36,0x36,0x2d,0xc3,0x3b,0x48,0x98,0x89,0x11,0xef,0x2b,0xcd,0x10,0x51,0x94,0xd0,0xad,0x6e,0x0a,0x87,0x61,0x65,0xa8,0xa2,0x72,0xbb,0xcc,0x0b}, {0xc8,0xa9,0xb1,0xea,0x2f,0x96,0x5e,0x18,0xcd,0x7d,0x14,0x65,0x35,0xe6,0xe7,0x86,0xf2,0x6d,0x5b,0xbb,0x31,0xe0,0x92,0xb0,0x3e,0xb7,0xd6,0x59,0xab,0xf0,0x24,0x40,0x96,0x12,0xfe,0x50,0x4c,0x5e,0x6d,0x18,0x7e,0x9f,0xe8,0xfe,0x82,0x7b,0x39,0xe0,0xb0,0x31,0x70,0x50,0xc5,0xf6,0xc7,0x3b,0xc2,0x37,0x8f,0x10,0x69,0xfd,0x78,0x66,0xc2,0x63,0x68,0x63,0x31,0xfa,0x86,0x15,0xf2,0x33,0x2d,0x57,0x48,0x8c,0xf6,0x07,0xfc,0xae,0x9e,0x78,0x9f,0xcc,0x73,0x4f,0x01,0x47,0xad,0x8e,0x10,0xe2,0x42,0x2d}, {0x9b,0xd2,0xdf,0x94,0x15,0x13,0xf5,0x97,0x6a,0x4c,0x3f,0x31,0x5d,0x98,0x55,0x61,0x10,0x50,0x45,0x08,0x07,0x3f,0xa1,0xeb,0x22,0xd3,0xd2,0xb8,0x08,0x26,0x6b,0x67,0x93,0x75,0x53,0x0f,0x0d,0x7b,0x71,0x21,0x4c,0x06,0x1e,0x13,0x0b,0x69,0x4e,0x91,0x9f,0xe0,0x2a,0x75,0xae,0x87,0xb6,0x1b,0x6e,0x3c,0x42,0x9b,0xa7,0xf3,0x0b,0x42,0x47,0x2b,0x5b,0x1c,0x65,0xba,0x38,0x81,0x80,0x1b,0x1b,0x31,0xec,0xb6,0x71,0x86,0xb0,0x35,0x31,0xbc,0xb1,0x0c,0xff,0x7b,0xe0,0xf1,0x0c,0x9c,0xfa,0x2f,0x5d,0x74}, {0xbd,0xc8,0xc9,0x2b,0x1e,0x5a,0x52,0xbf,0x81,0x9d,0x47,0x26,0x08,0x26,0x5b,0xea,0xdb,0x55,0x01,0xdf,0x0e,0xc7,0x11,0xd5,0xd0,0xf5,0x0c,0x96,0xeb,0x3c,0xe2,0x1a,0x6a,0x4e,0xd3,0x21,0x57,0xdf,0x36,0x60,0xd0,0xb3,0x7b,0x99,0x27,0x88,0xdb,0xb1,0xfa,0x6a,0x75,0xc8,0xc3,0x09,0xc2,0xd3,0x39,0xc8,0x1d,0x4c,0xe5,0x5b,0xe1,0x06,0x4a,0x99,0x32,0x19,0x87,0x5d,0x72,0x5b,0xb0,0xda,0xb1,0xce,0xb5,0x1c,0x35,0x32,0x05,0xca,0xb7,0xda,0x49,0x15,0xc4,0x7d,0xf7,0xc1,0x8e,0x27,0x61,0xd8,0xde,0x58}, {0x5c,0xc5,0x66,0xf2,0x93,0x37,0x17,0xd8,0x49,0x4e,0x45,0xcc,0xc5,0x76,0xc9,0xc8,0xa8,0xc3,0x26,0xbc,0xf8,0x82,0xe3,0x5c,0xf9,0xf6,0x85,0x54,0xe8,0x9d,0xf3,0x2f,0xa8,0xc9,0xc2,0xb6,0xa8,0x5b,0xfb,0x2d,0x8c,0x59,0x2c,0xf5,0x8e,0xef,0xee,0x48,0x73,0x15,0x2d,0xf1,0x07,0x91,0x80,0x33,0xd8,0x5b,0x1d,0x53,0x6b,0x69,0xba,0x08,0x7a,0xc5,0xef,0xc3,0xee,0x3e,0xed,0x77,0x11,0x48,0xff,0xd4,0x17,0x55,0xe0,0x04,0xcb,0x71,0xa6,0xf1,0x3f,0x7a,0x3d,0xea,0x54,0xfe,0x7c,0x94,0xb4,0x33,0x06,0x12}, {0x42,0x00,0x61,0x91,0x78,0x98,0x94,0x0b,0xe8,0xfa,0xeb,0xec,0x3c,0xb1,0xe7,0x4e,0xc0,0xa4,0xf0,0x94,0x95,0x73,0xbe,0x70,0x85,0x91,0xd5,0xb4,0x99,0x0a,0xd3,0x35,0x0a,0x10,0x12,0x49,0x47,0x31,0xbd,0x82,0x06,0xbe,0x6f,0x7e,0x6d,0x7b,0x23,0xde,0xc6,0x79,0xea,0x11,0x19,0x76,0x1e,0xe1,0xde,0x3b,0x39,0xcb,0xe3,0x3b,0x43,0x07,0xf4,0x97,0xe9,0x5c,0xc0,0x44,0x79,0xff,0xa3,0x51,0x5c,0xb0,0xe4,0x3d,0x5d,0x57,0x7c,0x84,0x76,0x5a,0xfd,0x81,0x33,0x58,0x9f,0xda,0xf6,0x7a,0xde,0x3e,0x87,0x2d}, {0x09,0x34,0x37,0x43,0x64,0x31,0x7a,0x15,0xd9,0x81,0xaa,0xf4,0xee,0xb7,0xb8,0xfa,0x06,0x48,0xa6,0xf5,0xe6,0xfe,0x93,0xb0,0xb6,0xa7,0x7f,0x70,0x54,0x36,0x77,0x2e,0x81,0xf9,0x5d,0x4e,0xe1,0x02,0x62,0xaa,0xf5,0xe1,0x15,0x50,0x17,0x59,0x0d,0xa2,0x6c,0x1d,0xe2,0xba,0xd3,0x75,0xa2,0x18,0x53,0x02,0x60,0x01,0x8a,0x61,0x43,0x05,0xc1,0x23,0x4c,0x97,0xf4,0xbd,0xea,0x0d,0x93,0x46,0xce,0x9d,0x25,0x0a,0x6f,0xaa,0x2c,0xba,0x9a,0xa2,0xb8,0x2c,0x20,0x04,0x0d,0x96,0x07,0x2d,0x36,0x43,0x14,0x4b}, {0x7a,0x1f,0x6e,0xb6,0xc7,0xb7,0xc4,0xcc,0x7e,0x2f,0x0c,0xf5,0x25,0x7e,0x15,0x44,0x1c,0xaf,0x3e,0x71,0xfc,0x6d,0xf0,0x3e,0xf7,0x63,0xda,0x52,0x67,0x44,0x2f,0x58,0xcb,0x9c,0x52,0x1c,0xe9,0x54,0x7c,0x96,0xfb,0x35,0xc6,0x64,0x92,0x26,0xf6,0x30,0x65,0x19,0x12,0x78,0xf4,0xaf,0x47,0x27,0x5c,0x6f,0xf6,0xea,0x18,0x84,0x03,0x17,0xe4,0x4c,0x32,0x20,0xd3,0x7b,0x31,0xc6,0xc4,0x8b,0x48,0xa4,0xe8,0x42,0x10,0xa8,0x64,0x13,0x5a,0x4e,0x8b,0xf1,0x1e,0xb2,0xc9,0x8d,0xa2,0xcd,0x4b,0x1c,0x2a,0x0c}, {0x47,0x04,0x1f,0x6f,0xd0,0xc7,0x4d,0xd2,0x59,0xc0,0x87,0xdb,0x3e,0x9e,0x26,0xb2,0x8f,0xd2,0xb2,0xfb,0x72,0x02,0x5b,0xd1,0x77,0x48,0xf6,0xc6,0xd1,0x8b,0x55,0x7c,0x45,0x69,0xbd,0x69,0x48,0x81,0xc4,0xed,0x22,0x8d,0x1c,0xbe,0x7d,0x90,0x6d,0x0d,0xab,0xc5,0x5c,0xd5,0x12,0xd2,0x3b,0xc6,0x83,0xdc,0x14,0xa3,0x30,0x9b,0x6a,0x5a,0x3d,0x46,0x96,0xd3,0x24,0x15,0xec,0xd0,0xf0,0x24,0x5a,0xc3,0x8a,0x62,0xbb,0x12,0xa4,0x5f,0xbc,0x1c,0x79,0x3a,0x0c,0xa5,0xc3,0xaf,0xfb,0x0a,0xca,0xa5,0x04,0x04}, {0xd6,0x43,0xa7,0x0a,0x07,0x40,0x1f,0x8c,0xe8,0x5e,0x26,0x5b,0xcb,0xd0,0xba,0xcc,0xde,0xd2,0x8f,0x66,0x6b,0x04,0x4b,0x57,0x33,0x96,0xdd,0xca,0xfd,0x5b,0x39,0x46,0xd1,0x6f,0x41,0x2a,0x1b,0x9e,0xbc,0x62,0x8b,0x59,0x50,0xe3,0x28,0xf7,0xc6,0xb5,0x67,0x69,0x5d,0x3d,0xd8,0x3f,0x34,0x04,0x98,0xee,0xf8,0xe7,0x16,0x75,0x52,0x39,0x9c,0x9a,0x5d,0x1a,0x2d,0xdb,0x7f,0x11,0x2a,0x5c,0x00,0xd1,0xbc,0x45,0x77,0x9c,0xea,0x6f,0xd5,0x54,0xf1,0xbe,0xd4,0xef,0x16,0xd0,0x22,0xe8,0x29,0x9a,0x57,0x76}, {0x17,0x2a,0xc0,0x49,0x7e,0x8e,0xb6,0x45,0x7f,0xa3,0xa9,0xbc,0xa2,0x51,0xcd,0x23,0x1b,0x4c,0x22,0xec,0x11,0x5f,0xd6,0x3e,0xb1,0xbd,0x05,0x9e,0xdc,0x84,0xa3,0x43,0xf2,0x34,0xb4,0x52,0x13,0xb5,0x3c,0x33,0xe1,0x80,0xde,0x93,0x49,0x28,0x32,0xd8,0xce,0x35,0x0d,0x75,0x87,0x28,0x51,0xb5,0xc1,0x77,0x27,0x2a,0xbb,0x14,0xc5,0x02,0x45,0xb6,0xf1,0x8b,0xda,0xd5,0x4b,0x68,0x53,0x4b,0xb5,0xf6,0x7e,0xd3,0x8b,0xfb,0x53,0xd2,0xb0,0xa9,0xd7,0x16,0x39,0x31,0x59,0x80,0x54,0x61,0x09,0x92,0x60,0x11}, {0xaa,0xcf,0xda,0x29,0x69,0x16,0x4d,0xb4,0x8f,0x59,0x13,0x84,0x4c,0x9f,0x52,0xda,0x59,0x55,0x3d,0x45,0xca,0x63,0xef,0xe9,0x0b,0x8e,0x69,0xc5,0x5b,0x12,0x1e,0x35,0xcd,0x4d,0x9b,0x36,0x16,0x56,0x38,0x7a,0x63,0x35,0x5c,0x65,0xa7,0x2c,0xc0,0x75,0x21,0x80,0xf1,0xd4,0xf9,0x1b,0xc2,0x7d,0x42,0xe0,0xe6,0x91,0x74,0x7d,0x63,0x2f,0xbe,0x7b,0xf6,0x1a,0x46,0x9b,0xb4,0xd4,0x61,0x89,0xab,0xc8,0x7a,0x03,0x03,0xd6,0xfb,0x99,0xa6,0xf9,0x9f,0xe1,0xde,0x71,0x9a,0x2a,0xce,0xe7,0x06,0x2d,0x18,0x7f}, {0xec,0x68,0x01,0xab,0x64,0x8e,0x7c,0x7a,0x43,0xc5,0xed,0x15,0x55,0x4a,0x5a,0xcb,0xda,0x0e,0xcd,0x47,0xd3,0x19,0x55,0x09,0xb0,0x93,0x3e,0x34,0x8c,0xac,0xd4,0x67,0x22,0x75,0x21,0x8e,0x72,0x4b,0x45,0x09,0xd8,0xb8,0x84,0xd4,0xf4,0xe8,0x58,0xaa,0x3c,0x90,0x46,0x7f,0x4d,0x25,0x58,0xd3,0x17,0x52,0x1c,0x24,0x43,0xc0,0xac,0x44,0x77,0x57,0x7a,0x4f,0xbb,0x6b,0x7d,0x1c,0xe1,0x13,0x83,0x91,0xd4,0xfe,0x35,0x8b,0x84,0x46,0x6b,0xc9,0xc6,0xa1,0xdc,0x4a,0xbd,0x71,0xad,0x12,0x83,0x1c,0x6d,0x55}, {0x82,0x39,0x8d,0x0c,0xe3,0x40,0xef,0x17,0x34,0xfa,0xa3,0x15,0x3e,0x07,0xf7,0x31,0x6e,0x64,0x73,0x07,0xcb,0xf3,0x21,0x4f,0xff,0x4e,0x82,0x1d,0x6d,0x6c,0x6c,0x74,0x21,0xe8,0x1b,0xb1,0x56,0x67,0xf0,0x81,0xdd,0xf3,0xa3,0x10,0x23,0xf8,0xaf,0x0f,0x5d,0x46,0x99,0x6a,0x55,0xd0,0xb2,0xf8,0x05,0x7f,0x8c,0xcc,0x38,0xbe,0x7a,0x09,0xa4,0x2d,0xa5,0x7e,0x87,0xc9,0x49,0x0c,0x43,0x1d,0xdc,0x9b,0x55,0x69,0x43,0x4c,0xd2,0xeb,0xcc,0xf7,0x09,0x38,0x2c,0x02,0xbd,0x84,0xee,0x4b,0xa3,0x14,0x7e,0x57}, {0x0a,0x3b,0xa7,0x61,0xac,0x68,0xe2,0xf0,0xf5,0xa5,0x91,0x37,0x10,0xfa,0xfa,0xf2,0xe9,0x00,0x6d,0x6b,0x82,0x3e,0xe1,0xc1,0x42,0x8f,0xd7,0x6f,0xe9,0x7e,0xfa,0x60,0x2b,0xd7,0x4d,0xbd,0xbe,0xce,0xfe,0x94,0x11,0x22,0x0f,0x06,0xda,0x4f,0x6a,0xf4,0xff,0xd1,0xc8,0xc0,0x77,0x59,0x4a,0x12,0x95,0x92,0x00,0xfb,0xb8,0x04,0x53,0x70,0xc6,0x6e,0x29,0x4d,0x35,0x1d,0x3d,0xb6,0xd8,0x31,0xad,0x5f,0x3e,0x05,0xc3,0xf3,0xec,0x42,0xbd,0xb4,0x8c,0x95,0x0b,0x67,0xfd,0x53,0x63,0xa1,0x0c,0x8e,0x39,0x21}, {0xf3,0x33,0x2b,0x38,0x8a,0x05,0xf5,0x89,0xb4,0xc0,0x48,0xad,0x0b,0xba,0xe2,0x5a,0x6e,0xb3,0x3d,0xa5,0x03,0xb5,0x93,0x8f,0xe6,0x32,0xa2,0x95,0x9d,0xed,0xa3,0x5a,0x01,0x56,0xb7,0xb4,0xf9,0xaa,0x98,0x27,0x72,0xad,0x8d,0x5c,0x13,0x72,0xac,0x5e,0x23,0xa0,0xb7,0x61,0x61,0xaa,0xce,0xd2,0x4e,0x7d,0x8f,0xe9,0x84,0xb2,0xbf,0x1b,0x61,0x65,0xd9,0xc7,0xe9,0x77,0x67,0x65,0x36,0x80,0xc7,0x72,0x54,0x12,0x2b,0xcb,0xee,0x6e,0x50,0xd9,0x99,0x32,0x05,0x65,0xcc,0x57,0x89,0x5e,0x4e,0xe1,0x07,0x4a}, {0x99,0xf9,0x0d,0x98,0xcb,0x12,0xe4,0x4e,0x71,0xc7,0x6e,0x3c,0x6f,0xd7,0x15,0xa3,0xfd,0x77,0x5c,0x92,0xde,0xed,0xa5,0xbb,0x02,0x34,0x31,0x1d,0x39,0xac,0x0b,0x3f,0x9b,0xa4,0x77,0xc4,0xcd,0x58,0x0b,0x24,0x17,0xf0,0x47,0x64,0xde,0xda,0x38,0xfd,0xad,0x6a,0xc8,0xa7,0x32,0x8d,0x92,0x19,0x81,0xa0,0xaf,0x84,0xed,0x7a,0xaf,0x50,0xe5,0x5b,0xf6,0x15,0x01,0xde,0x4f,0x6e,0xb2,0x09,0x61,0x21,0x21,0x26,0x98,0x29,0xd9,0xd6,0xad,0x0b,0x81,0x05,0x02,0x78,0x06,0xd0,0xeb,0xba,0x16,0xa3,0x21,0x19}, {0xfc,0x70,0xb8,0xdf,0x7e,0x2f,0x42,0x89,0xbd,0xb3,0x76,0x4f,0xeb,0x6b,0x29,0x2c,0xf7,0x4d,0xc2,0x36,0xd4,0xf1,0x38,0x07,0xb0,0xae,0x73,0xe2,0x41,0xdf,0x58,0x64,0x8b,0xc1,0xf3,0xd9,0x9a,0xad,0x5a,0xd7,0x9c,0xc1,0xb1,0x60,0xef,0x0e,0x6a,0x56,0xd9,0x0e,0x5c,0x25,0xac,0x0b,0x9a,0x3e,0xf5,0xc7,0x62,0xa0,0xec,0x9d,0x04,0x7b,0x83,0x44,0x44,0x35,0x7a,0xe3,0xcb,0xdc,0x93,0xbe,0xed,0x0f,0x33,0x79,0x88,0x75,0x87,0xdd,0xc5,0x12,0xc3,0x04,0x60,0x78,0x64,0x0e,0x95,0xc2,0xcb,0xdc,0x93,0x60}, {0x6d,0x70,0xe0,0x85,0x85,0x9a,0xf3,0x1f,0x33,0x39,0xe7,0xb3,0xd8,0xa5,0xd0,0x36,0x3b,0x45,0x8f,0x71,0xe1,0xf2,0xb9,0x43,0x7c,0xa9,0x27,0x48,0x08,0xea,0xd1,0x57,0x4b,0x03,0x84,0x60,0xbe,0xee,0xde,0x6b,0x54,0xb8,0x0f,0x78,0xb6,0xc2,0x99,0x31,0x95,0x06,0x2d,0xb6,0xab,0x76,0x33,0x97,0x90,0x7d,0x64,0x8b,0xc9,0x80,0x31,0x6e,0x71,0xb0,0x28,0xa1,0xe7,0xb6,0x7a,0xee,0xaa,0x8b,0xa8,0x93,0x6d,0x59,0xc1,0xa4,0x30,0x61,0x21,0xb2,0x82,0xde,0xb4,0xf7,0x18,0xbd,0x97,0xdd,0x9d,0x99,0x3e,0x36}, {0xc4,0x1f,0xee,0x35,0xc1,0x43,0xa8,0x96,0xcf,0xc8,0xe4,0x08,0x55,0xb3,0x6e,0x97,0x30,0xd3,0x8c,0xb5,0x01,0x68,0x2f,0xb4,0x2b,0x05,0x3a,0x69,0x78,0x9b,0xee,0x48,0xc6,0xae,0x4b,0xe2,0xdc,0x48,0x18,0x2f,0x60,0xaf,0xbc,0xba,0x55,0x72,0x9b,0x76,0x31,0xe9,0xef,0x3c,0x6e,0x3c,0xcb,0x90,0x55,0xb3,0xf9,0xc6,0x9b,0x97,0x1f,0x23,0xc6,0xf3,0x2a,0xcc,0x4b,0xde,0x31,0x5c,0x1f,0x8d,0x20,0xfe,0x30,0xb0,0x4b,0xb0,0x66,0xb4,0x4f,0xc1,0x09,0x70,0x8d,0xb7,0x13,0x24,0x79,0x08,0x9b,0xfa,0x9b,0x07}, {0xf4,0x0d,0x30,0xda,0x51,0x3a,0x90,0xe3,0xb0,0x5a,0xa9,0x3d,0x23,0x64,0x39,0x84,0x80,0x64,0x35,0x0b,0x2d,0xf1,0x3c,0xed,0x94,0x71,0x81,0x84,0xf6,0x77,0x8c,0x03,0x45,0x42,0xd5,0xa2,0x80,0xed,0xc9,0xf3,0x52,0x39,0xf6,0x77,0x78,0x8b,0xa0,0x0a,0x75,0x54,0x08,0xd1,0x63,0xac,0x6d,0xd7,0x6b,0x63,0x70,0x94,0x15,0xfb,0xf4,0x1e,0xec,0x7b,0x16,0x5b,0xe6,0x5e,0x4e,0x85,0xc2,0xcd,0xd0,0x96,0x42,0x0a,0x59,0x59,0x99,0x21,0x10,0x98,0x34,0xdf,0xb2,0x72,0x56,0xff,0x0b,0x4a,0x2a,0xe9,0x5e,0x57}, {0xcf,0x2f,0x18,0x8a,0x90,0x80,0xc0,0xd4,0xbd,0x9d,0x48,0x99,0xc2,0x70,0xe1,0x30,0xde,0x33,0xf7,0x52,0x57,0xbd,0xba,0x05,0x00,0xfd,0xd3,0x2c,0x11,0xe7,0xd4,0x43,0x01,0xd8,0xa4,0x0a,0x45,0xbc,0x46,0x5d,0xd8,0xb9,0x33,0xa5,0x27,0x12,0xaf,0xc3,0xc2,0x06,0x89,0x2b,0x26,0x3b,0x9e,0x38,0x1b,0x58,0x2f,0x38,0x7e,0x1e,0x0a,0x20,0xc5,0x3a,0xf9,0xea,0x67,0xb9,0x8d,0x51,0xc0,0x52,0x66,0x05,0x9b,0x98,0xbc,0x71,0xf5,0x97,0x71,0x56,0xd9,0x85,0x2b,0xfe,0x38,0x4e,0x1e,0x65,0x52,0xca,0x0e,0x05}, {0x9c,0x0c,0x3f,0x45,0xde,0x1a,0x43,0xc3,0x9b,0x3b,0x70,0xff,0x5e,0x04,0xf5,0xe9,0x3d,0x7b,0x84,0xed,0xc9,0x7a,0xd9,0xfc,0xc6,0xf4,0x58,0x1c,0xc2,0xe6,0x0e,0x4b,0xea,0x68,0xe6,0x60,0x76,0x39,0xac,0x97,0x97,0xb4,0x3a,0x15,0xfe,0xbb,0x19,0x9b,0x9f,0xa7,0xec,0x34,0xb5,0x79,0xb1,0x4c,0x57,0xae,0x31,0xa1,0x9f,0xc0,0x51,0x61,0x96,0x5d,0xf0,0xfd,0x0d,0x5c,0xf5,0x3a,0x7a,0xee,0xb4,0x2a,0xe0,0x2e,0x26,0xdd,0x09,0x17,0x17,0x12,0x87,0xbb,0xb2,0x11,0x0b,0x03,0x0f,0x80,0xfa,0x24,0xef,0x1f}, {0x96,0x31,0xa7,0x1a,0xfb,0x53,0xd6,0x37,0x18,0x64,0xd7,0x3f,0x30,0x95,0x94,0x0f,0xb2,0x17,0x3a,0xfb,0x09,0x0b,0x20,0xad,0x3e,0x61,0xc8,0x2f,0x29,0x49,0x4d,0x54,0x86,0x6b,0x97,0x30,0xf5,0xaf,0xd2,0x22,0x04,0x46,0xd2,0xc2,0x06,0xb8,0x90,0x8d,0xe5,0xba,0xe5,0x4d,0x6c,0x89,0xa1,0xdc,0x17,0x0c,0x34,0xc8,0xe6,0x5f,0x00,0x28,0x88,0x86,0x52,0x34,0x9f,0xba,0xef,0x6a,0xa1,0x7d,0x10,0x25,0x94,0xff,0x1b,0x5c,0x36,0x4b,0xd9,0x66,0xcd,0xbb,0x5b,0xf7,0xfa,0x6d,0x31,0x0f,0x93,0x72,0xe4,0x72}, {0x4f,0x08,0x81,0x97,0x8c,0x20,0x95,0x26,0xe1,0x0e,0x45,0x23,0x0b,0x2a,0x50,0xb1,0x02,0xde,0xef,0x03,0xa6,0xae,0x9d,0xfd,0x4c,0xa3,0x33,0x27,0x8c,0x2e,0x9d,0x5a,0x27,0x76,0x2a,0xd3,0x35,0xf6,0xf3,0x07,0xf0,0x66,0x65,0x5f,0x86,0x4d,0xaa,0x7a,0x50,0x44,0xd0,0x28,0x97,0xe7,0x85,0x3c,0x38,0x64,0xe0,0x0f,0x00,0x7f,0xee,0x1f,0xe5,0xf7,0xdb,0x03,0xda,0x05,0x53,0x76,0xbd,0xcd,0x34,0x14,0x49,0xf2,0xda,0xa4,0xec,0x88,0x4a,0xd2,0xcd,0xd5,0x4a,0x7b,0x43,0x05,0x04,0xee,0x51,0x40,0xf9,0x00}, {0xb2,0x30,0xd3,0xc3,0x23,0x6b,0x35,0x8d,0x06,0x1b,0x47,0xb0,0x9b,0x8b,0x1c,0xf2,0x3c,0xb8,0x42,0x6e,0x6c,0x31,0x6c,0xb3,0x0d,0xb1,0xea,0x8b,0x7e,0x9c,0xd7,0x07,0x53,0x97,0xaf,0x07,0xbb,0x93,0xef,0xd7,0xa7,0x66,0xb7,0x3d,0xcf,0xd0,0x3e,0x58,0xc5,0x1e,0x0b,0x6e,0xbf,0x98,0x69,0xce,0x52,0x04,0xd4,0x5d,0xd2,0xff,0xb7,0x47,0x12,0xdd,0x08,0xbc,0x9c,0xfb,0xfb,0x87,0x9b,0xc2,0xee,0xe1,0x3a,0x6b,0x06,0x8a,0xbf,0xc1,0x1f,0xdb,0x2b,0x24,0x57,0x0d,0xb6,0x4b,0xa6,0x5e,0xa3,0x20,0x35,0x1c}, {0x4a,0xa3,0xcb,0xbc,0xa6,0x53,0xd2,0x80,0x9b,0x21,0x38,0x38,0xa1,0xc3,0x61,0x3e,0x96,0xe3,0x82,0x98,0x01,0xb6,0xc3,0x90,0x6f,0xe6,0x0e,0x5d,0x77,0x05,0x3d,0x1c,0x59,0xc0,0x6b,0x21,0x40,0x6f,0xa8,0xcd,0x7e,0xd8,0xbc,0x12,0x1d,0x23,0xbb,0x1f,0x90,0x09,0xc7,0x17,0x9e,0x6a,0x95,0xb4,0x55,0x2e,0xd1,0x66,0x3b,0x0c,0x75,0x38,0x1a,0xe5,0x22,0x94,0x40,0xf1,0x2e,0x69,0x71,0xf6,0x5d,0x2b,0x3c,0xc7,0xc0,0xcb,0x29,0xe0,0x4c,0x74,0xe7,0x4f,0x01,0x21,0x7c,0x48,0x30,0xd3,0xc7,0xe2,0x21,0x06}, {0x8d,0x83,0x59,0x82,0xcc,0x60,0x98,0xaf,0xdc,0x9a,0x9f,0xc6,0xc1,0x48,0xea,0x90,0x30,0x1e,0x58,0x65,0x37,0x48,0x26,0x65,0xbc,0xa5,0xd3,0x7b,0x09,0xd6,0x07,0x00,0xf3,0xf0,0xdb,0xb0,0x96,0x17,0xae,0xb7,0x96,0xe1,0x7c,0xe1,0xb9,0xaf,0xdf,0x54,0xb4,0xa3,0xaa,0xe9,0x71,0x30,0x92,0x25,0x9d,0x2e,0x00,0xa1,0x9c,0x58,0x8e,0x5d,0x4b,0xa9,0x42,0x08,0x95,0x1d,0xbf,0xc0,0x3e,0x2e,0x8f,0x58,0x63,0xc3,0xd3,0xb2,0xef,0xe2,0x51,0xbb,0x38,0x14,0x96,0x0a,0x86,0xbf,0x1c,0x3c,0x78,0xd7,0x83,0x15}, {0xe1,0x7a,0xa2,0x5d,0xef,0xa2,0xee,0xec,0x74,0x01,0x67,0x55,0x14,0x3a,0x7c,0x59,0x7a,0x16,0x09,0x66,0x12,0x2a,0xa6,0xc9,0x70,0x8f,0xed,0x81,0x2e,0x5f,0x2a,0x25,0xc7,0x28,0x9d,0xcc,0x04,0x47,0x03,0x90,0x8f,0xc5,0x2c,0xf7,0x9e,0x67,0x1b,0x1d,0x26,0x87,0x5b,0xbe,0x5f,0x2b,0xe1,0x16,0x0a,0x58,0xc5,0x83,0x4e,0x06,0x58,0x49,0x0d,0xe8,0x66,0x50,0x26,0x94,0x28,0x0d,0x6b,0x8c,0x7c,0x30,0x85,0xf7,0xc3,0xfc,0xfd,0x12,0x11,0x0c,0x78,0xda,0x53,0x1b,0x88,0xb3,0x43,0xd8,0x0b,0x17,0x9c,0x07}, {0xff,0x6f,0xfa,0x64,0xe4,0xec,0x06,0x05,0x23,0xe5,0x05,0x62,0x1e,0x43,0xe3,0xbe,0x42,0xea,0xb8,0x51,0x24,0x42,0x79,0x35,0x00,0xfb,0xc9,0x4a,0xe3,0x05,0xec,0x6d,0x56,0xd0,0xd5,0xc0,0x50,0xcd,0xd6,0xcd,0x3b,0x57,0x03,0xbb,0x6d,0x68,0xf7,0x9a,0x48,0xef,0xc3,0xf3,0x3f,0x72,0xa6,0x3c,0xcc,0x8a,0x7b,0x31,0xd7,0xc0,0x68,0x67,0xb3,0xc1,0x55,0xf1,0xe5,0x25,0xb6,0x94,0x91,0x7b,0x7b,0x99,0xa7,0xf3,0x7b,0x41,0x00,0x26,0x6b,0x6d,0xdc,0xbd,0x2c,0xc2,0xf4,0x52,0xcd,0xdd,0x14,0x5e,0x44,0x51}, {0x51,0x49,0x14,0x3b,0x4b,0x2b,0x50,0x57,0xb3,0xbc,0x4b,0x44,0x6b,0xff,0x67,0x8e,0xdb,0x85,0x63,0x16,0x27,0x69,0xbd,0xb8,0xc8,0x95,0x92,0xe3,0x31,0x6f,0x18,0x13,0x55,0xa4,0xbe,0x2b,0xab,0x47,0x31,0x89,0x29,0x91,0x07,0x92,0x4f,0xa2,0x53,0x8c,0xa7,0xf7,0x30,0xbe,0x48,0xf9,0x49,0x4b,0x3d,0xd4,0x4f,0x6e,0x08,0x90,0xe9,0x12,0x2e,0xbb,0xdf,0x7f,0xb3,0x96,0x0c,0xf1,0xf9,0xea,0x1c,0x12,0x5e,0x93,0x9a,0x9f,0x3f,0x98,0x5b,0x3a,0xc4,0x36,0x11,0xdf,0xaf,0x99,0x3e,0x5d,0xf0,0xe3,0xb2,0x77}, {0xde,0xc4,0x2e,0x9c,0xc5,0xa9,0x6f,0x29,0xcb,0xf3,0x84,0x4f,0xbf,0x61,0x8b,0xbc,0x08,0xf9,0xa8,0x17,0xd9,0x06,0x77,0x1c,0x5d,0x25,0xd3,0x7a,0xfc,0x95,0xb7,0x63,0xa4,0xb0,0xdd,0x12,0x9c,0x63,0x98,0xd5,0x6b,0x86,0x24,0xc0,0x30,0x9f,0xd1,0xa5,0x60,0xe4,0xfc,0x58,0x03,0x2f,0x7c,0xd1,0x8a,0x5e,0x09,0x2e,0x15,0x95,0xa1,0x07,0xc8,0x5f,0x9e,0x38,0x02,0x8f,0x36,0xa8,0x3b,0xe4,0x8d,0xcf,0x02,0x3b,0x43,0x90,0x43,0x26,0x41,0xc5,0x5d,0xfd,0xa1,0xaf,0x37,0x01,0x2f,0x03,0x3d,0xe8,0x8f,0x3e}, {0x94,0xa2,0x70,0x05,0xb9,0x15,0x8b,0x2f,0x49,0x45,0x08,0x67,0x70,0x42,0xf2,0x94,0x84,0xfd,0xbb,0x61,0xe1,0x5a,0x1c,0xde,0x07,0x40,0xac,0x7f,0x79,0x3b,0xba,0x75,0x3c,0xd1,0xef,0xe8,0x8d,0x4c,0x70,0x08,0x31,0x37,0xe0,0x33,0x8e,0x1a,0xc5,0xdf,0xe3,0xcd,0x60,0x12,0xa5,0x5d,0x9d,0xa5,0x86,0x8c,0x25,0xa6,0x99,0x08,0xd6,0x22,0x96,0xd1,0xcd,0x70,0xc0,0xdb,0x39,0x62,0x9a,0x8a,0x7d,0x6c,0x8b,0x8a,0xfe,0x60,0x60,0x12,0x40,0xeb,0xbc,0x47,0x88,0xb3,0x5e,0x9e,0x77,0x87,0x7b,0xd0,0x04,0x09}, {0x9c,0x91,0xba,0xdd,0xd4,0x1f,0xce,0xb4,0xaa,0x8d,0x4c,0xc7,0x3e,0xdb,0x31,0xcf,0x51,0xcc,0x86,0xad,0x63,0xcc,0x63,0x2c,0x07,0xde,0x1d,0xbc,0x3f,0x14,0xe2,0x43,0xb9,0x40,0xf9,0x48,0x66,0x2d,0x32,0xf4,0x39,0x0c,0x2d,0xbd,0x0c,0x2f,0x95,0x06,0x31,0xf9,0x81,0xa0,0xad,0x97,0x76,0x16,0x6c,0x2a,0xf7,0xba,0xce,0xaa,0x40,0x62,0xa0,0x95,0xa2,0x5b,0x9c,0x74,0x34,0xf8,0x5a,0xd2,0x37,0xca,0x5b,0x7c,0x94,0xd6,0x6a,0x31,0xc9,0xe7,0xa7,0x3b,0xf1,0x66,0xac,0x0c,0xb4,0x8d,0x23,0xaf,0xbd,0x56}, {0xeb,0x33,0x35,0xf5,0xe3,0xb9,0x2a,0x36,0x40,0x3d,0xb9,0x6e,0xd5,0x68,0x85,0x33,0x72,0x55,0x5a,0x1d,0x52,0x14,0x0e,0x9e,0x18,0x13,0x74,0x83,0x6d,0xa8,0x24,0x1d,0xb2,0x3b,0x9d,0xc1,0x6c,0xd3,0x10,0x13,0xb9,0x86,0x23,0x62,0xb7,0x6b,0x2a,0x06,0x5c,0x4f,0xa1,0xd7,0x91,0x85,0x9b,0x7c,0x54,0x57,0x1e,0x7e,0x50,0x31,0xaa,0x03,0x1f,0xce,0xd4,0xff,0x48,0x76,0xec,0xf4,0x1c,0x8c,0xac,0x54,0xf0,0xea,0x45,0xe0,0x7c,0x35,0x09,0x1d,0x82,0x25,0xd2,0x88,0x59,0x48,0xeb,0x9a,0xdc,0x61,0xb2,0x43}, {0xbb,0x79,0xbb,0x88,0x19,0x1e,0x5b,0xe5,0x9d,0x35,0x7a,0xc1,0x7d,0xd0,0x9e,0xa0,0x33,0xea,0x3d,0x60,0xe2,0x2e,0x2c,0xb0,0xc2,0x6b,0x27,0x5b,0xcf,0x55,0x60,0x32,0x64,0x13,0x95,0x6c,0x8b,0x3d,0x51,0x19,0x7b,0xf4,0x0b,0x00,0x26,0x71,0xfe,0x94,0x67,0x95,0x4f,0xd5,0xdd,0x10,0x8d,0x02,0x64,0x09,0x94,0x42,0xe2,0xd5,0xb4,0x02,0xf2,0x8d,0xd1,0x28,0xcb,0x55,0xa1,0xb4,0x08,0xe5,0x6c,0x18,0x46,0x46,0xcc,0xea,0x89,0x43,0x82,0x6c,0x93,0xf4,0x9c,0xc4,0x10,0x34,0x5d,0xae,0x09,0xc8,0xa6,0x27}, {0x88,0xb1,0x0d,0x1f,0xcd,0xeb,0xa6,0x8b,0xe8,0x5b,0x5a,0x67,0x3a,0xd7,0xd3,0x37,0x5a,0x58,0xf5,0x15,0xa3,0xdf,0x2e,0xf2,0x7e,0xa1,0x60,0xff,0x74,0x71,0xb6,0x2c,0x54,0x69,0x3d,0xc4,0x0a,0x27,0x2c,0xcd,0xb2,0xca,0x66,0x6a,0x57,0x3e,0x4a,0xdd,0x6c,0x03,0xd7,0x69,0x24,0x59,0xfa,0x79,0x99,0x25,0x8c,0x3d,0x60,0x03,0x15,0x22,0xd0,0xe1,0x0b,0x39,0xf9,0xcd,0xee,0x59,0xf1,0xe3,0x8c,0x72,0x44,0x20,0x42,0xa9,0xf4,0xf0,0x94,0x7a,0x66,0x1c,0x89,0x82,0x36,0xf4,0x90,0x38,0xb7,0xf4,0x1d,0x7b}, {0x24,0xa2,0xb2,0xb3,0xe0,0xf2,0x92,0xe4,0x60,0x11,0x55,0x2b,0x06,0x9e,0x6c,0x7c,0x0e,0x7b,0x7f,0x0d,0xe2,0x8f,0xeb,0x15,0x92,0x59,0xfc,0x58,0x26,0xef,0xfc,0x61,0x8c,0xf5,0xf8,0x07,0x18,0x22,0x2e,0x5f,0xd4,0x09,0x94,0xd4,0x9f,0x5c,0x55,0xe3,0x30,0xa6,0xb6,0x1f,0x8d,0xa8,0xaa,0xb2,0x3d,0xe0,0x52,0xd3,0x45,0x82,0x69,0x68,0x7a,0x18,0x18,0x2a,0x85,0x5d,0xb1,0xdb,0xd7,0xac,0xdd,0x86,0xd3,0xaa,0xe4,0xf3,0x82,0xc4,0xf6,0x0f,0x81,0xe2,0xba,0x44,0xcf,0x01,0xaf,0x3d,0x47,0x4c,0xcf,0x46}, {0xf9,0xe5,0xc4,0x9e,0xed,0x25,0x65,0x42,0x03,0x33,0x90,0x16,0x01,0xda,0x5e,0x0e,0xdc,0xca,0xe5,0xcb,0xf2,0xa7,0xb1,0x72,0x40,0x5f,0xeb,0x14,0xcd,0x7b,0x38,0x29,0x40,0x81,0x49,0xf1,0xa7,0x6e,0x3c,0x21,0x54,0x48,0x2b,0x39,0xf8,0x7e,0x1e,0x7c,0xba,0xce,0x29,0x56,0x8c,0xc3,0x88,0x24,0xbb,0xc5,0x8c,0x0d,0xe5,0xaa,0x65,0x10,0x57,0x0d,0x20,0xdf,0x25,0x45,0x2c,0x1c,0x4a,0x67,0xca,0xbf,0xd6,0x2d,0x3b,0x5c,0x30,0x40,0x83,0xe1,0xb1,0xe7,0x07,0x0a,0x16,0xe7,0x1c,0x4f,0xe6,0x98,0xa1,0x69}, {0xbc,0x78,0x1a,0xd9,0xe0,0xb2,0x62,0x90,0x67,0x96,0x50,0xc8,0x9c,0x88,0xc9,0x47,0xb8,0x70,0x50,0x40,0x66,0x4a,0xf5,0x9d,0xbf,0xa1,0x93,0x24,0xa9,0xe6,0x69,0x73,0xed,0xca,0xc5,0xdc,0x34,0x44,0x01,0xe1,0x33,0xfb,0x84,0x3c,0x96,0x5d,0xed,0x47,0xe7,0xa0,0x86,0xed,0x76,0x95,0x01,0x70,0xe4,0xf9,0x67,0xd2,0x7b,0x69,0xb2,0x25,0x64,0x68,0x98,0x13,0xfb,0x3f,0x67,0x9d,0xb8,0xc7,0x5d,0x41,0xd9,0xfb,0xa5,0x3c,0x5e,0x3b,0x27,0xdf,0x3b,0xcc,0x4e,0xe0,0xd2,0x4c,0x4e,0xb5,0x3d,0x68,0x20,0x14}, {0x97,0xd1,0x9d,0x24,0x1e,0xbd,0x78,0xb4,0x02,0xc1,0x58,0x5e,0x00,0x35,0x0c,0x62,0x5c,0xac,0xba,0xcc,0x2f,0xd3,0x02,0xfb,0x2d,0xa7,0x08,0xf5,0xeb,0x3b,0xb6,0x60,0xd0,0x5a,0xcc,0xc1,0x6f,0xbb,0xee,0x34,0x8b,0xac,0x46,0x96,0xe9,0x0c,0x1b,0x6a,0x53,0xde,0x6b,0xa6,0x49,0xda,0xb0,0xd3,0xc1,0x81,0xd0,0x61,0x41,0x3b,0xe8,0x31,0x4f,0x2b,0x06,0x9e,0x12,0xc7,0xe8,0x97,0xd8,0x0a,0x32,0x29,0x4f,0x8f,0xe4,0x49,0x3f,0x68,0x18,0x6f,0x4b,0xe1,0xec,0x5b,0x17,0x03,0x55,0x2d,0xb6,0x1e,0xcf,0x55}, {0x58,0x3d,0xc2,0x65,0x10,0x10,0x79,0x58,0x9c,0x81,0x94,0x50,0x6d,0x08,0x9d,0x8b,0xa7,0x5f,0xc5,0x12,0xa9,0x2f,0x40,0xe2,0xd4,0x91,0x08,0x57,0x64,0x65,0x9a,0x66,0x52,0x8c,0xf5,0x7d,0xe3,0xb5,0x76,0x30,0x36,0xcc,0x99,0xe7,0xdd,0xb9,0x3a,0xd7,0x20,0xee,0x13,0x49,0xe3,0x1c,0x83,0xbd,0x33,0x01,0xba,0x62,0xaa,0xfb,0x56,0x1a,0xec,0xc9,0x9d,0x5c,0x50,0x6b,0x3e,0x94,0x1a,0x37,0x7c,0xa7,0xbb,0x57,0x25,0x30,0x51,0x76,0x34,0x41,0x56,0xae,0x73,0x98,0x5c,0x8a,0xc5,0x99,0x67,0x83,0xc4,0x13}, {0xb9,0xe1,0xb3,0x5a,0x46,0x5d,0x3a,0x42,0x61,0x3f,0xf1,0xc7,0x87,0xc1,0x13,0xfc,0xb6,0xb9,0xb5,0xec,0x64,0x36,0xf8,0x19,0x07,0xb6,0x37,0xa6,0x93,0x0c,0xf8,0x66,0x80,0xd0,0x8b,0x5d,0x6a,0xfb,0xdc,0xc4,0x42,0x48,0x1a,0x57,0xec,0xc4,0xeb,0xde,0x65,0x53,0xe5,0xb8,0x83,0xe8,0xb2,0xd4,0x27,0xb8,0xe5,0xc8,0x7d,0xc8,0xbd,0x50,0x11,0xe1,0xdf,0x6e,0x83,0x37,0x6d,0x60,0xd9,0xab,0x11,0xf0,0x15,0x3e,0x35,0x32,0x96,0x3b,0xb7,0x25,0xc3,0x3a,0xb0,0x64,0xae,0xd5,0x5f,0x72,0x44,0x64,0xd5,0x1d}, {0x7d,0x12,0x62,0x33,0xf8,0x7f,0xa4,0x8f,0x15,0x7c,0xcd,0x71,0xc4,0x6a,0x9f,0xbc,0x8b,0x0c,0x22,0x49,0x43,0x45,0x71,0x6e,0x2e,0x73,0x9f,0x21,0x12,0x59,0x64,0x0e,0x9a,0xc8,0xba,0x08,0x00,0xe6,0x97,0xc2,0xe0,0xc3,0xe1,0xea,0x11,0xea,0x4c,0x7d,0x7c,0x97,0xe7,0x9f,0xe1,0x8b,0xe3,0xf3,0xcd,0x05,0xa3,0x63,0x0f,0x45,0x3a,0x3a,0x27,0x46,0x39,0xd8,0x31,0x2f,0x8f,0x07,0x10,0xa5,0x94,0xde,0x83,0x31,0x9d,0x38,0x80,0x6f,0x99,0x17,0x6d,0x6c,0xe3,0xd1,0x7b,0xa8,0xa9,0x93,0x93,0x8d,0x8c,0x31}, {0x19,0xfe,0xff,0x2a,0x03,0x5d,0x74,0xf2,0x66,0xdb,0x24,0x7f,0x49,0x3c,0x9f,0x0c,0xef,0x98,0x85,0xba,0xe3,0xd3,0x98,0xbc,0x14,0x53,0x1d,0x9a,0x67,0x7c,0x4c,0x22,0x98,0xd3,0x1d,0xab,0x29,0x9e,0x66,0x5d,0x3b,0x9e,0x2d,0x34,0x58,0x16,0x92,0xfc,0xcd,0x73,0x59,0xf3,0xfd,0x1d,0x85,0x55,0xf6,0x0a,0x95,0x25,0xc3,0x41,0x9a,0x50,0xe9,0x25,0xf9,0xa6,0xdc,0x6e,0xc0,0xbd,0x33,0x1f,0x1b,0x64,0xf4,0xf3,0x3e,0x79,0x89,0x3e,0x83,0x9d,0x80,0x12,0xec,0x82,0x89,0x13,0xa1,0x28,0x23,0xf0,0xbf,0x05}, {0x0b,0xe0,0xca,0x23,0x70,0x13,0x32,0x36,0x59,0xcf,0xac,0xd1,0x0a,0xcf,0x4a,0x54,0x88,0x1c,0x1a,0xd2,0x49,0x10,0x74,0x96,0xa7,0x44,0x2a,0xfa,0xc3,0x8c,0x0b,0x78,0xe4,0x12,0xc5,0x0d,0xdd,0xa0,0x81,0x68,0xfe,0xfa,0xa5,0x44,0xc8,0x0d,0xe7,0x4f,0x40,0x52,0x4a,0x8f,0x6b,0x8e,0x74,0x1f,0xea,0xa3,0x01,0xee,0xcd,0x77,0x62,0x57,0x5f,0x30,0x4f,0x23,0xbc,0x8a,0xf3,0x1e,0x08,0xde,0x05,0x14,0xbd,0x7f,0x57,0x9a,0x0d,0x2a,0xe6,0x34,0x14,0xa5,0x82,0x5e,0xa1,0xb7,0x71,0x62,0x72,0x18,0xf4,0x5f}, {0x9d,0xdb,0x89,0x17,0x0c,0x08,0x8e,0x39,0xf5,0x78,0xe7,0xf3,0x25,0x20,0x60,0xa7,0x5d,0x03,0xbd,0x06,0x4c,0x89,0x98,0xfa,0xbe,0x66,0xa9,0x25,0xdc,0x03,0x6a,0x10,0x40,0x95,0xb6,0x13,0xe8,0x47,0xdb,0xe5,0xe1,0x10,0x26,0x43,0x3b,0x2a,0x5d,0xf3,0x76,0x12,0x78,0x38,0xe9,0x26,0x1f,0xac,0x69,0xcb,0xa0,0xa0,0x8c,0xdb,0xd4,0x29,0xd0,0x53,0x33,0x33,0xaf,0x0a,0xad,0xd9,0xe5,0x09,0xd3,0xac,0xa5,0x9d,0x66,0x38,0xf0,0xf7,0x88,0xc8,0x8a,0x65,0x57,0x3c,0xfa,0xbe,0x2c,0x05,0x51,0x8a,0xb3,0x4a}, {0x93,0xd5,0x68,0x67,0x25,0x2b,0x7c,0xda,0x13,0xca,0x22,0x44,0x57,0xc0,0xc1,0x98,0x1d,0xce,0x0a,0xca,0xd5,0x0b,0xa8,0xf1,0x90,0xa6,0x88,0xc0,0xad,0xd1,0xcd,0x29,0x9c,0xc0,0xdd,0x5f,0xef,0xd1,0xcf,0xd6,0xce,0x5d,0x57,0xf7,0xfd,0x3e,0x2b,0xe8,0xc2,0x34,0x16,0x20,0x5d,0x6b,0xd5,0x25,0x9b,0x2b,0xed,0x04,0xbb,0xc6,0x41,0x30,0x48,0xe1,0x56,0xd9,0xf9,0xf2,0xf2,0x0f,0x2e,0x6b,0x35,0x9f,0x75,0x97,0xe7,0xad,0x5c,0x02,0x6c,0x5f,0xbb,0x98,0x46,0x1a,0x7b,0x9a,0x04,0x14,0x68,0xbd,0x4b,0x10}, {0x67,0xed,0xf1,0x68,0x31,0xfd,0xf0,0x51,0xc2,0x3b,0x6f,0xd8,0xcd,0x1d,0x81,0x2c,0xde,0xf2,0xd2,0x04,0x43,0x5c,0xdc,0x44,0x49,0x71,0x2a,0x09,0x57,0xcc,0xe8,0x5b,0x63,0xf1,0x7f,0xd6,0x5f,0x9a,0x5d,0xa9,0x81,0x56,0xc7,0x4c,0x9d,0xe6,0x2b,0xe9,0x57,0xf2,0x20,0xde,0x4c,0x02,0xf8,0xb7,0xf5,0x2d,0x07,0xfb,0x20,0x2a,0x4f,0x20,0x79,0xb0,0xeb,0x30,0x3d,0x3b,0x14,0xc8,0x30,0x2e,0x65,0xbd,0x5a,0x15,0x89,0x75,0x31,0x5c,0x6d,0x8f,0x31,0x3c,0x3c,0x65,0x1f,0x16,0x79,0xc2,0x17,0xfb,0x70,0x25}, {0x75,0x15,0xb6,0x2c,0x7f,0x36,0xfa,0x3e,0x6c,0x02,0xd6,0x1c,0x76,0x6f,0xf9,0xf5,0x62,0x25,0xb5,0x65,0x2a,0x14,0xc7,0xe8,0xcd,0x0a,0x03,0x53,0xea,0x65,0xcb,0x3d,0x5a,0x24,0xb8,0x0b,0x55,0xa9,0x2e,0x19,0xd1,0x50,0x90,0x8f,0xa8,0xfb,0xe6,0xc8,0x35,0xc9,0xa4,0x88,0x2d,0xea,0x86,0x79,0x68,0x86,0x01,0xde,0x91,0x5f,0x1c,0x24,0xaa,0x6c,0xde,0x40,0x29,0x17,0xd8,0x28,0x3a,0x73,0xd9,0x22,0xf0,0x2c,0xbf,0x8f,0xd1,0x01,0x5b,0x23,0xdd,0xfc,0xd7,0x16,0xe5,0xf0,0xcd,0x5f,0xdd,0x0e,0x42,0x08}, {0x4a,0xfa,0x62,0x83,0xab,0x20,0xff,0xcd,0x6e,0x3e,0x1a,0xe2,0xd4,0x18,0xe1,0x57,0x2b,0xe6,0x39,0xfc,0x17,0x96,0x17,0xe3,0xfd,0x69,0x17,0xbc,0xef,0x53,0x9a,0x0d,0xce,0x10,0xf4,0x04,0x4e,0xc3,0x58,0x03,0x85,0x06,0x6e,0x27,0x5a,0x5b,0x13,0xb6,0x21,0x15,0xb9,0xeb,0xc7,0x70,0x96,0x5d,0x9c,0x88,0xdb,0x21,0xf3,0x54,0xd6,0x04,0xd5,0xb5,0xbd,0xdd,0x16,0xc1,0x7d,0x5e,0x2d,0xdd,0xa5,0x8d,0xb6,0xde,0x54,0x29,0x92,0xa2,0x34,0x33,0x17,0x08,0xb6,0x1c,0xd7,0x1a,0x99,0x18,0x26,0x4f,0x7a,0x4a}, {0x95,0x5f,0xb1,0x5f,0x02,0x18,0xa7,0xf4,0x8f,0x1b,0x5c,0x6b,0x34,0x5f,0xf6,0x3d,0x12,0x11,0xe0,0x00,0x85,0xf0,0xfc,0xcd,0x48,0x18,0xd3,0xdd,0x4c,0x0c,0xb5,0x11,0x4b,0x2a,0x37,0xaf,0x91,0xb2,0xc3,0x24,0xf2,0x47,0x81,0x71,0x70,0x82,0xda,0x93,0xf2,0x9e,0x89,0x86,0x64,0x85,0x84,0xdd,0x33,0xee,0xe0,0x23,0x42,0x31,0x96,0x4a,0xd6,0xff,0xa4,0x08,0x44,0x27,0xe8,0xa6,0xd9,0x76,0x15,0x9c,0x7e,0x17,0x8e,0x73,0xf2,0xb3,0x02,0x3d,0xb6,0x48,0x33,0x77,0x51,0xcc,0x6b,0xce,0x4d,0xce,0x4b,0x4f}, {0x84,0x25,0x24,0xe2,0x5a,0xce,0x1f,0xa7,0x9e,0x8a,0xf5,0x92,0x56,0x72,0xea,0x26,0xf4,0x3c,0xea,0x1c,0xd7,0x09,0x1a,0xd2,0xe6,0x01,0x1c,0xb7,0x14,0xdd,0xfc,0x73,0x6f,0x0b,0x9d,0xc4,0x6e,0x61,0xe2,0x30,0x17,0x23,0xec,0xca,0x8f,0x71,0x56,0xe4,0xa6,0x4f,0x6b,0xf2,0x9b,0x40,0xeb,0x48,0x37,0x5f,0x59,0x61,0xe5,0xce,0x42,0x30,0x41,0xac,0x9b,0x44,0x79,0x70,0x7e,0x42,0x0a,0x31,0xe2,0xbc,0x6d,0xe3,0x5a,0x85,0x7c,0x1a,0x84,0x5f,0x21,0x76,0xae,0x4c,0xd6,0xe1,0x9c,0x9a,0x0c,0x74,0x9e,0x38}, {0xce,0xb9,0xdc,0x34,0xae,0xb3,0xfc,0x64,0xad,0xd0,0x48,0xe3,0x23,0x03,0x50,0x97,0x1b,0x38,0xc6,0x62,0x7d,0xf0,0xb3,0x45,0x88,0x67,0x5a,0x46,0x79,0x53,0x54,0x61,0x28,0xac,0x0e,0x57,0xf6,0x78,0xbd,0xc9,0xe1,0x9c,0x91,0x27,0x32,0x0b,0x5b,0xe5,0xed,0x91,0x9b,0xa1,0xab,0x3e,0xfc,0x65,0x90,0x36,0x26,0xd6,0xe5,0x25,0xc4,0x25,0x6e,0xde,0xd7,0xf1,0xa6,0x06,0x3e,0x3f,0x08,0x23,0x06,0x8e,0x27,0x76,0xf9,0x3e,0x77,0x6c,0x8a,0x4e,0x26,0xf6,0x14,0x8c,0x59,0x47,0x48,0x15,0x89,0xa0,0x39,0x65}, {0x73,0xf7,0xd2,0xc3,0x74,0x1f,0xd2,0xe9,0x45,0x68,0xc4,0x25,0x41,0x54,0x50,0xc1,0x33,0x9e,0xb9,0xf9,0xe8,0x5c,0x4e,0x62,0x6c,0x18,0xcd,0xc5,0xaa,0xe4,0xc5,0x11,0x19,0x4a,0xbb,0x14,0xd4,0xdb,0xc4,0xdd,0x8e,0x4f,0x42,0x98,0x3c,0xbc,0xb2,0x19,0x69,0x71,0xca,0x36,0xd7,0x9f,0xa8,0x48,0x90,0xbd,0x19,0xf0,0x0e,0x32,0x65,0x0f,0xc6,0xe0,0xfd,0xca,0xb1,0xd1,0x86,0xd4,0x81,0x51,0x3b,0x16,0xe3,0xe6,0x3f,0x4f,0x9a,0x93,0xf2,0xfa,0x0d,0xaf,0xa8,0x59,0x2a,0x07,0x33,0xec,0xbd,0xc7,0xab,0x4c}, {0x2e,0x0a,0x9c,0x08,0x24,0x96,0x9e,0x23,0x38,0x47,0xfe,0x3a,0xc0,0xc4,0x48,0xc7,0x2a,0xa1,0x4f,0x76,0x2a,0xed,0xdb,0x17,0x82,0x85,0x1c,0x32,0xf0,0x93,0x9b,0x63,0x89,0xd2,0x78,0x3f,0x8f,0x78,0x8f,0xc0,0x9f,0x4d,0x40,0xa1,0x2c,0xa7,0x30,0xfe,0x9d,0xcc,0x65,0xcf,0xfc,0x8b,0x77,0xf2,0x21,0x20,0xcb,0x5a,0x16,0x98,0xe4,0x7e,0xc3,0xa1,0x11,0x91,0xe3,0x08,0xd5,0x7b,0x89,0x74,0x90,0x80,0xd4,0x90,0x2b,0x2b,0x19,0xfd,0x72,0xae,0xc2,0xae,0xd2,0xe7,0xa6,0x02,0xb6,0x85,0x3c,0x49,0xdf,0x0e}, {0x68,0x5a,0x9b,0x59,0x58,0x81,0xcc,0xae,0x0e,0xe2,0xad,0xeb,0x0f,0x4f,0x57,0xea,0x07,0x7f,0xb6,0x22,0x74,0x1d,0xe4,0x4f,0xb4,0x4f,0x9d,0x01,0xe3,0x92,0x3b,0x40,0x13,0x41,0x76,0x84,0xd2,0xc4,0x67,0x67,0x35,0xf8,0xf5,0xf7,0x3f,0x40,0x90,0xa0,0xde,0xbe,0xe6,0xca,0xfa,0xcf,0x8f,0x1c,0x69,0xa3,0xdf,0xd1,0x54,0x0c,0xc0,0x04,0xf8,0x5c,0x46,0x8b,0x81,0x2f,0xc2,0x4d,0xf8,0xef,0x80,0x14,0x5a,0xf3,0xa0,0x71,0x57,0xd6,0xc7,0x04,0xad,0xbf,0xe8,0xae,0xf4,0x76,0x61,0xb2,0x2a,0xb1,0x5b,0x35}, {0xf4,0xbb,0x93,0x74,0xcc,0x64,0x1e,0xa7,0xc3,0xb0,0xa3,0xec,0xd9,0x84,0xbd,0xe5,0x85,0xe7,0x05,0xfa,0x0c,0xc5,0x6b,0x0a,0x12,0xc3,0x2e,0x18,0x32,0x81,0x9b,0x0f,0x18,0x73,0x8c,0x5a,0xc7,0xda,0x01,0xa3,0x11,0xaa,0xce,0xb3,0x9d,0x03,0x90,0xed,0x2d,0x3f,0xae,0x3b,0xbf,0x7c,0x07,0x6f,0x8e,0xad,0x52,0xe0,0xf8,0xea,0x18,0x75,0x32,0x6c,0x7f,0x1b,0xc4,0x59,0x88,0xa4,0x98,0x32,0x38,0xf4,0xbc,0x60,0x2d,0x0f,0xd9,0xd1,0xb1,0xc9,0x29,0xa9,0x15,0x18,0xc4,0x55,0x17,0xbb,0x1b,0x87,0xc3,0x47}, {0x48,0x4f,0xec,0x71,0x97,0x53,0x44,0x51,0x6e,0x5d,0x8c,0xc9,0x7d,0xb1,0x05,0xf8,0x6b,0xc6,0xc3,0x47,0x1a,0xc1,0x62,0xf7,0xdc,0x99,0x46,0x76,0x85,0x9b,0xb8,0x00,0xb0,0x66,0x50,0xc8,0x50,0x5d,0xe6,0xfb,0xb0,0x99,0xa2,0xb3,0xb0,0xc4,0xec,0x62,0xe0,0xe8,0x1a,0x44,0xea,0x54,0x37,0xe5,0x5f,0x8d,0xd4,0xe8,0x2c,0xa0,0xfe,0x08,0xd0,0xea,0xde,0x68,0x76,0xdd,0x4d,0x82,0x23,0x5d,0x68,0x4b,0x20,0x45,0x64,0xc8,0x65,0xd6,0x89,0x5d,0xcd,0xcf,0x14,0xb5,0x37,0xd5,0x75,0x4f,0xa7,0x29,0x38,0x47}, {0x18,0xc4,0x79,0x46,0x75,0xda,0xd2,0x82,0xf0,0x8d,0x61,0xb2,0xd8,0xd7,0x3b,0xe6,0x0a,0xeb,0x47,0xac,0x24,0xef,0x5e,0x35,0xb4,0xc6,0x33,0x48,0x4c,0x68,0x78,0x20,0xc9,0x02,0x39,0xad,0x3a,0x53,0xd9,0x23,0x8f,0x58,0x03,0xef,0xce,0xdd,0xc2,0x64,0xb4,0x2f,0xe1,0xcf,0x90,0x73,0x25,0x15,0x90,0xd3,0xe4,0x44,0x4d,0x8b,0x66,0x6c,0x0c,0x82,0x78,0x7a,0x21,0xcf,0x48,0x3b,0x97,0x3e,0x27,0x81,0xb2,0x0a,0x6a,0xf7,0x7b,0xed,0x8e,0x8c,0xa7,0x65,0x6c,0xa9,0x3f,0x43,0x8a,0x4f,0x05,0xa6,0x11,0x74}, {0x6d,0xc8,0x9d,0xb9,0x32,0x9d,0x65,0x4d,0x15,0xf1,0x3a,0x60,0x75,0xdc,0x4c,0x04,0x88,0xe4,0xc2,0xdc,0x2c,0x71,0x4c,0xb3,0xff,0x34,0x81,0xfb,0x74,0x65,0x13,0x7c,0xb4,0x75,0xb1,0x18,0x3d,0xe5,0x9a,0x57,0x02,0xa1,0x92,0xf3,0x59,0x31,0x71,0x68,0xf5,0x35,0xef,0x1e,0xba,0xec,0x55,0x84,0x8f,0x39,0x8c,0x45,0x72,0xa8,0xc9,0x1e,0x9b,0x50,0xa2,0x00,0xd4,0xa4,0xe6,0xb8,0xb4,0x82,0xc8,0x0b,0x02,0xd7,0x81,0x9b,0x61,0x75,0x95,0xf1,0x9b,0xcc,0xe7,0x57,0x60,0x64,0xcd,0xc7,0xa5,0x88,0xdd,0x3a}, {0xf2,0xdc,0x35,0xb6,0x70,0x57,0x89,0xab,0xbc,0x1f,0x6c,0xf6,0x6c,0xef,0xdf,0x02,0x87,0xd1,0xb6,0xbe,0x68,0x02,0x53,0x85,0x74,0x9e,0x87,0xcc,0xfc,0x29,0x99,0x24,0x46,0x30,0x39,0x59,0xd4,0x98,0xc2,0x85,0xec,0x59,0xf6,0x5f,0x98,0x35,0x7e,0x8f,0x3a,0x6e,0xf6,0xf2,0x2a,0xa2,0x2c,0x1d,0x20,0xa7,0x06,0xa4,0x31,0x11,0xba,0x61,0x29,0x90,0x95,0x16,0xf1,0xa0,0xd0,0xa3,0x89,0xbd,0x7e,0xba,0x6c,0x6b,0x3b,0x02,0x07,0x33,0x78,0x26,0x3e,0x5a,0xf1,0x7b,0xe7,0xec,0xd8,0xbb,0x0c,0x31,0x20,0x56}, {0x43,0xd6,0x34,0x49,0x43,0x93,0x89,0x52,0xf5,0x22,0x12,0xa5,0x06,0xf8,0xdb,0xb9,0x22,0x1c,0xf4,0xc3,0x8f,0x87,0x6d,0x8f,0x30,0x97,0x9d,0x4d,0x2a,0x6a,0x67,0x37,0xd6,0x85,0xe2,0x77,0xf4,0xb5,0x46,0x66,0x93,0x61,0x8f,0x6c,0x67,0xff,0xe8,0x40,0xdd,0x94,0xb5,0xab,0x11,0x73,0xec,0xa6,0x4d,0xec,0x8c,0x65,0xf3,0x46,0xc8,0x7e,0xc7,0x2e,0xa2,0x1d,0x3f,0x8f,0x5e,0x9b,0x13,0xcd,0x01,0x6c,0x77,0x1d,0x0f,0x13,0xb8,0x9f,0x98,0xa2,0xcf,0x8f,0x4c,0x21,0xd5,0x9d,0x9b,0x39,0x23,0xf7,0xaa,0x6d}, {0x47,0xbe,0x3d,0xeb,0x62,0x75,0x3a,0x5f,0xb8,0xa0,0xbd,0x8e,0x54,0x38,0xea,0xf7,0x99,0x72,0x74,0x45,0x31,0xe5,0xc3,0x00,0x51,0xd5,0x27,0x16,0xe7,0xe9,0x04,0x13,0xa2,0x8e,0xad,0xac,0xbf,0x04,0x3b,0x58,0x84,0xe8,0x8b,0x14,0xe8,0x43,0xb7,0x29,0xdb,0xc5,0x10,0x08,0x3b,0x58,0x1e,0x2b,0xaa,0xbb,0xb3,0x8e,0xe5,0x49,0x54,0x2b,0xfe,0x9c,0xdc,0x6a,0xd2,0x14,0x98,0x78,0x0b,0xdd,0x48,0x8b,0x3f,0xab,0x1b,0x3c,0x0a,0xc6,0x79,0xf9,0xff,0xe1,0x0f,0xda,0x93,0xd6,0x2d,0x7c,0x2d,0xde,0x68,0x44}, {0x9e,0x46,0x19,0x94,0x5e,0x35,0xbb,0x51,0x54,0xc7,0xdd,0x23,0x4c,0xdc,0xe6,0x33,0x62,0x99,0x7f,0x44,0xd6,0xb6,0xa5,0x93,0x63,0xbd,0x44,0xfb,0x6f,0x7c,0xce,0x6c,0xce,0x07,0x63,0xf8,0xc6,0xd8,0x9a,0x4b,0x28,0x0c,0x5d,0x43,0x31,0x35,0x11,0x21,0x2c,0x77,0x7a,0x65,0xc5,0x66,0xa8,0xd4,0x52,0x73,0x24,0x63,0x7e,0x42,0xa6,0x5d,0xca,0x22,0xac,0xde,0x88,0xc6,0x94,0x1a,0xf8,0x1f,0xae,0xbb,0xf7,0x6e,0x06,0xb9,0x0f,0x58,0x59,0x8d,0x38,0x8c,0xad,0x88,0xa8,0x2c,0x9f,0xe7,0xbf,0x9a,0xf2,0x58}, {0x68,0x3e,0xe7,0x8d,0xab,0xcf,0x0e,0xe9,0xa5,0x76,0x7e,0x37,0x9f,0x6f,0x03,0x54,0x82,0x59,0x01,0xbe,0x0b,0x5b,0x49,0xf0,0x36,0x1e,0xf4,0xa7,0xc4,0x29,0x76,0x57,0xf6,0xcd,0x0e,0x71,0xbf,0x64,0x5a,0x4b,0x3c,0x29,0x2c,0x46,0x38,0xe5,0x4c,0xb1,0xb9,0x3a,0x0b,0xd5,0x56,0xd0,0x43,0x36,0x70,0x48,0x5b,0x18,0x24,0x37,0xf9,0x6a,0x88,0xa8,0xc6,0x09,0x45,0x02,0x20,0x32,0x73,0x89,0x55,0x4b,0x13,0x36,0xe0,0xd2,0x9f,0x28,0x33,0x3c,0x23,0x36,0xe2,0x83,0x8f,0xc1,0xae,0x0c,0xbb,0x25,0x1f,0x70}, {0xed,0x6c,0x61,0xe4,0xf8,0xb0,0xa8,0xc3,0x7d,0xa8,0x25,0x9e,0x0e,0x66,0x00,0xf7,0x9c,0xa5,0xbc,0xf4,0x1f,0x06,0xe3,0x61,0xe9,0x0b,0xc4,0xbd,0xbf,0x92,0x0c,0x2e,0x13,0xc1,0xbe,0x7c,0xd9,0xf6,0x18,0x9d,0xe4,0xdb,0xbf,0x74,0xe6,0x06,0x4a,0x84,0xd6,0x60,0x4e,0xac,0x22,0xb5,0xf5,0x20,0x51,0x5e,0x95,0x50,0xc0,0x5b,0x0a,0x72,0x35,0x5a,0x80,0x9b,0x43,0x09,0x3f,0x0c,0xfc,0xab,0x42,0x62,0x37,0x8b,0x4e,0xe8,0x46,0x93,0x22,0x5c,0xf3,0x17,0x14,0x69,0xec,0xf0,0x4e,0x14,0xbb,0x9c,0x9b,0x0e}, {0xad,0x20,0x57,0xfb,0x8f,0xd4,0xba,0xfb,0x0e,0x0d,0xf9,0xdb,0x6b,0x91,0x81,0xee,0xbf,0x43,0x55,0x63,0x52,0x31,0x81,0xd4,0xd8,0x7b,0x33,0x3f,0xeb,0x04,0x11,0x22,0xee,0xbe,0xb1,0x5d,0xd5,0x9b,0xee,0x8d,0xb9,0x3f,0x72,0x0a,0x37,0xab,0xc3,0xc9,0x91,0xd7,0x68,0x1c,0xbf,0xf1,0xa8,0x44,0xde,0x3c,0xfd,0x1c,0x19,0x44,0x6d,0x36,0x14,0x8c,0xbc,0xf2,0x43,0x17,0x3c,0x9e,0x3b,0x6c,0x85,0xb5,0xfc,0x26,0xda,0x2e,0x97,0xfb,0xa7,0x68,0x0e,0x2f,0xb8,0xcc,0x44,0x32,0x59,0xbc,0xe6,0xa4,0x67,0x41}, {0x00,0x27,0xf6,0x76,0x28,0x9d,0x3b,0x64,0xeb,0x68,0x76,0x0e,0x40,0x9d,0x1d,0x5d,0x84,0x06,0xfc,0x21,0x03,0x43,0x4b,0x1b,0x6a,0x24,0x55,0x22,0x7e,0xbb,0x38,0x79,0xee,0x8f,0xce,0xf8,0x65,0x26,0xbe,0xc2,0x2c,0xd6,0x80,0xe8,0x14,0xff,0x67,0xe9,0xee,0x4e,0x36,0x2f,0x7e,0x6e,0x2e,0xf1,0xf6,0xd2,0x7e,0xcb,0x70,0x33,0xb3,0x34,0xcc,0xd6,0x81,0x86,0xee,0x91,0xc5,0xcd,0x53,0xa7,0x85,0xed,0x9c,0x10,0x02,0xce,0x83,0x88,0x80,0x58,0xc1,0x85,0x74,0xed,0xe4,0x65,0xfe,0x2d,0x6e,0xfc,0x76,0x11}, {0x9b,0x61,0x9c,0x5b,0xd0,0x6c,0xaf,0xb4,0x80,0x84,0xa5,0xb2,0xf4,0xc9,0xdf,0x2d,0xc4,0x4d,0xe9,0xeb,0x02,0xa5,0x4f,0x3d,0x34,0x5f,0x7d,0x67,0x4c,0x3a,0xfc,0x08,0xb8,0x0e,0x77,0x49,0x89,0xe2,0x90,0xdb,0xa3,0x40,0xf4,0xac,0x2a,0xcc,0xfb,0x98,0x9b,0x87,0xd7,0xde,0xfe,0x4f,0x35,0x21,0xb6,0x06,0x69,0xf2,0x54,0x3e,0x6a,0x1f,0xea,0x34,0x07,0xd3,0x99,0xc1,0xa4,0x60,0xd6,0x5c,0x16,0x31,0xb6,0x85,0xc0,0x40,0x95,0x82,0x59,0xf7,0x23,0x3e,0x33,0xe2,0xd1,0x00,0xb9,0x16,0x01,0xad,0x2f,0x4f}, {0x54,0x4e,0xae,0x94,0x41,0xb2,0xbe,0x44,0x6c,0xef,0x57,0x18,0x51,0x1c,0x54,0x5f,0x98,0x04,0x8d,0x36,0x2d,0x6b,0x1e,0xa6,0xab,0xf7,0x2e,0x97,0xa4,0x84,0x54,0x44,0x38,0xb6,0x3b,0xb7,0x1d,0xd9,0x2c,0x96,0x08,0x9c,0x12,0xfc,0xaa,0x77,0x05,0xe6,0x89,0x16,0xb6,0xf3,0x39,0x9b,0x61,0x6f,0x81,0xee,0x44,0x29,0x5f,0x99,0x51,0x34,0x7c,0x7d,0xea,0x9f,0xd0,0xfc,0x52,0x91,0xf6,0x5c,0x93,0xb0,0x94,0x6c,0x81,0x4a,0x40,0x5c,0x28,0x47,0xaa,0x9a,0x8e,0x25,0xb7,0x93,0x28,0x04,0xa6,0x9c,0xb8,0x10}, {0x9c,0x28,0x18,0x97,0x49,0x47,0x59,0x3d,0x26,0x3f,0x53,0x24,0xc5,0xf8,0xeb,0x12,0x15,0xef,0xc3,0x14,0xcb,0xbf,0x62,0x02,0x8e,0x51,0xb7,0x77,0xd5,0x78,0xb8,0x20,0x6e,0xf0,0x45,0x5a,0xbe,0x41,0x39,0x75,0x65,0x5f,0x9c,0x6d,0xed,0xae,0x7c,0xd0,0xb6,0x51,0xff,0x72,0x9c,0x6b,0x77,0x11,0xa9,0x4d,0x0d,0xef,0xd9,0xd1,0xd2,0x17,0x6a,0x3e,0x3f,0x07,0x18,0xaf,0xf2,0x27,0x69,0x10,0x52,0xd7,0x19,0xe5,0x3f,0xfd,0x22,0x00,0xa6,0x3c,0x2c,0xb7,0xe3,0x22,0xa7,0xc6,0x65,0xcc,0x63,0x4f,0x21,0x72}, {0x93,0xa6,0x07,0x53,0x40,0x7f,0xe3,0xb4,0x95,0x67,0x33,0x2f,0xd7,0x14,0xa7,0xab,0x99,0x10,0x76,0x73,0xa7,0xd0,0xfb,0xd6,0xc9,0xcb,0x71,0x81,0xc5,0x48,0xdf,0x5f,0xc9,0x29,0x3b,0xf4,0xb9,0xb7,0x9d,0x1d,0x75,0x8f,0x51,0x4f,0x4a,0x82,0x05,0xd6,0xc4,0x9d,0x2f,0x31,0xbd,0x72,0xc0,0xf2,0xb0,0x45,0x15,0x5a,0x85,0xac,0x24,0x1f,0xaa,0x05,0x95,0x8e,0x32,0x08,0xd6,0x24,0xee,0x20,0x14,0x0c,0xd1,0xc1,0x48,0x47,0xa2,0x25,0xfb,0x06,0x5c,0xe4,0xff,0xc7,0xe6,0x95,0xe3,0x2a,0x9e,0x73,0xba,0x00}, {0xd6,0x90,0x87,0x5c,0xde,0x98,0x2e,0x59,0xdf,0xa2,0xc2,0x45,0xd3,0xb7,0xbf,0xe5,0x22,0x99,0xb4,0xf9,0x60,0x3b,0x5a,0x11,0xf3,0x78,0xad,0x67,0x3e,0x3a,0x28,0x03,0x26,0xbb,0x88,0xea,0xf5,0x26,0x44,0xae,0xfb,0x3b,0x97,0x84,0xd9,0x79,0x06,0x36,0x50,0x4e,0x69,0x26,0x0c,0x03,0x9f,0x5c,0x26,0xd2,0x18,0xd5,0xe7,0x7d,0x29,0x72,0x39,0xb9,0x0c,0xbe,0xc7,0x1d,0x24,0x48,0x80,0x30,0x63,0x8b,0x4d,0x9b,0xf1,0x32,0x08,0x93,0x28,0x02,0x0d,0xc9,0xdf,0xd3,0x45,0x19,0x27,0x46,0x68,0x29,0xe1,0x05}, {0x5a,0x49,0x9c,0x2d,0xb3,0xee,0x82,0xba,0x7c,0xb9,0x2b,0xf1,0xfc,0xc8,0xef,0xce,0xe0,0xd1,0xb5,0x93,0xae,0xab,0x2d,0xb0,0x9b,0x8d,0x69,0x13,0x9c,0x0c,0xc0,0x39,0x50,0x45,0x2c,0x24,0xc8,0xbb,0xbf,0xad,0xd9,0x81,0x30,0xd0,0xec,0x0c,0xc8,0xbc,0x92,0xdf,0xc8,0xf5,0xa6,0x66,0x35,0x84,0x4c,0xce,0x58,0x82,0xd3,0x25,0xcf,0x78,0x68,0x9d,0x48,0x31,0x8e,0x6b,0xae,0x15,0x87,0xf0,0x2b,0x9c,0xab,0x1c,0x85,0xaa,0x05,0xfa,0x4e,0xf0,0x97,0x5a,0xa7,0xc9,0x32,0xf8,0x3f,0x6b,0x07,0x52,0x6b,0x00}, {0x1c,0x78,0x95,0x9d,0xe1,0xcf,0xe0,0x29,0xe2,0x10,0x63,0x96,0x18,0xdf,0x81,0xb6,0x39,0x6b,0x51,0x70,0xd3,0x39,0xdf,0x57,0x22,0x61,0xc7,0x3b,0x44,0xe3,0x57,0x4d,0x2d,0x08,0xce,0xb9,0x16,0x7e,0xcb,0xf5,0x29,0xbc,0x7a,0x41,0x4c,0xf1,0x07,0x34,0xab,0xa7,0xf4,0x2b,0xce,0x6b,0xb3,0xd4,0xce,0x75,0x9f,0x1a,0x56,0xe9,0xe2,0x7d,0xcb,0x5e,0xa5,0xb6,0xf4,0xd4,0x70,0xde,0x99,0xdb,0x85,0x5d,0x7f,0x52,0x01,0x48,0x81,0x9a,0xee,0xd3,0x40,0xc4,0xc9,0xdb,0xed,0x29,0x60,0x1a,0xaf,0x90,0x2a,0x6b}, {0x97,0x1e,0xe6,0x9a,0xfc,0xf4,0x23,0x69,0xd1,0x5f,0x3f,0xe0,0x1d,0x28,0x35,0x57,0x2d,0xd1,0xed,0xe6,0x43,0xae,0x64,0xa7,0x4a,0x3e,0x2d,0xd1,0xe9,0xf4,0xd8,0x5f,0x0a,0xd8,0xb2,0x5b,0x24,0xf3,0xeb,0x77,0x9b,0x07,0xb9,0x2f,0x47,0x1b,0x30,0xd8,0x33,0x73,0xee,0x4c,0xf2,0xe6,0x47,0xc6,0x09,0x21,0x6c,0x27,0xc8,0x12,0x58,0x46,0xd9,0x62,0x10,0x2a,0xb2,0xbe,0x43,0x4d,0x16,0xdc,0x31,0x38,0x75,0xfb,0x65,0x70,0xd7,0x68,0x29,0xde,0x7b,0x4a,0x0d,0x18,0x90,0x67,0xb1,0x1c,0x2b,0x2c,0xb3,0x05}, {0xfd,0xa8,0x4d,0xd2,0xcc,0x5e,0xc0,0xc8,0x83,0xef,0xdf,0x05,0xac,0x1a,0xcf,0xa1,0x61,0xcd,0xf9,0x7d,0xf2,0xef,0xbe,0xdb,0x99,0x1e,0x47,0x7b,0xa3,0x56,0x55,0x3b,0x95,0x81,0xd5,0x7a,0x2c,0xa4,0xfc,0xf7,0xcc,0xf3,0x33,0x43,0x6e,0x28,0x14,0x32,0x9d,0x97,0x0b,0x34,0x0d,0x9d,0xc2,0xb6,0xe1,0x07,0x73,0x56,0x48,0x1a,0x77,0x31,0x82,0xd4,0x4d,0xe1,0x24,0xc5,0xb0,0x32,0xb6,0xa4,0x2b,0x1a,0x54,0x51,0xb3,0xed,0xf3,0x5a,0x2b,0x28,0x48,0x60,0xd1,0xa3,0xeb,0x36,0x73,0x7a,0xd2,0x79,0xc0,0x4f}, {0x7f,0x2f,0xbf,0x89,0xb0,0x38,0xc9,0x51,0xa7,0xe9,0xdf,0x02,0x65,0xbd,0x97,0x24,0x53,0xe4,0x80,0x78,0x9c,0xc0,0xff,0xff,0x92,0x8e,0xf9,0xca,0xce,0x67,0x45,0x12,0x0d,0xc5,0x86,0x0c,0x44,0x8b,0x34,0xdc,0x51,0xe6,0x94,0xcc,0xc9,0xcb,0x37,0x13,0xb9,0x3c,0x3e,0x64,0x4d,0xf7,0x22,0x64,0x08,0xcd,0xe3,0xba,0xc2,0x70,0x11,0x24,0xb4,0x73,0xc4,0x0a,0x86,0xab,0xf9,0x3f,0x35,0xe4,0x13,0x01,0xee,0x1d,0x91,0xf0,0xaf,0xc4,0xc6,0xeb,0x60,0x50,0xe7,0x4a,0x0d,0x00,0x87,0x6c,0x96,0x12,0x86,0x3f}, {0xde,0x0d,0x2a,0x78,0xc9,0x0c,0x9a,0x55,0x85,0x83,0x71,0xea,0xb2,0xcd,0x1d,0x55,0x8c,0x23,0xef,0x31,0x5b,0x86,0x62,0x7f,0x3d,0x61,0x73,0x79,0x76,0xa7,0x4a,0x50,0x13,0x8d,0x04,0x36,0xfa,0xfc,0x18,0x9c,0xdd,0x9d,0x89,0x73,0xb3,0x9d,0x15,0x29,0xaa,0xd0,0x92,0x9f,0x0b,0x35,0x9f,0xdc,0xd4,0x19,0x8a,0x87,0xee,0x7e,0xf5,0x26,0xb1,0xef,0x87,0x56,0xd5,0x2c,0xab,0x0c,0x7b,0xf1,0x7a,0x24,0x62,0xd1,0x80,0x51,0x67,0x24,0x5a,0x4f,0x34,0x5a,0xc1,0x85,0x69,0x30,0xba,0x9d,0x3d,0x94,0x41,0x40}, {0x96,0xcc,0xeb,0x43,0xba,0xee,0xc0,0xc3,0xaf,0x9c,0xea,0x26,0x9c,0x9c,0x74,0x8d,0xc6,0xcc,0x77,0x1c,0xee,0x95,0xfa,0xd9,0x0f,0x34,0x84,0x76,0xd9,0xa1,0x20,0x14,0xdd,0xaa,0x6c,0xa2,0x43,0x77,0x21,0x4b,0xce,0xb7,0x8a,0x64,0x24,0xb4,0xa6,0x47,0xe3,0xc9,0xfb,0x03,0x7a,0x4f,0x1d,0xcb,0x19,0xd0,0x00,0x98,0x42,0x31,0xd9,0x12,0x4f,0x59,0x37,0xd3,0x99,0x77,0xc6,0x00,0x7b,0xa4,0x3a,0xb2,0x40,0x51,0x3c,0x5e,0x95,0xf3,0x5f,0xe3,0x54,0x28,0x18,0x44,0x12,0xa0,0x59,0x43,0x31,0x92,0x4f,0x1b}, {0x51,0x09,0x15,0x89,0x9d,0x10,0x5c,0x3e,0x6a,0x69,0xe9,0x2d,0x91,0xfa,0xce,0x39,0x20,0x30,0x5f,0x97,0x3f,0xe4,0xea,0x20,0xae,0x2d,0x13,0x7f,0x2a,0x57,0x9b,0x23,0xb1,0x66,0x98,0xa4,0x30,0x30,0xcf,0x33,0x59,0x48,0x5f,0x21,0xd2,0x73,0x1f,0x25,0xf6,0xf4,0xde,0x51,0x40,0xaa,0x82,0xab,0xf6,0x23,0x9a,0x6f,0xd5,0x91,0xf1,0x5f,0x68,0x90,0x2d,0xac,0x33,0xd4,0x9e,0x81,0x23,0x85,0xc9,0x5f,0x79,0xab,0x83,0x28,0x3d,0xeb,0x93,0x55,0x80,0x72,0x45,0xef,0xcb,0x36,0x8f,0x75,0x6a,0x52,0x0c,0x02}, {0xbc,0xdb,0xd8,0x9e,0xf8,0x34,0x98,0x77,0x6c,0xa4,0x7c,0xdc,0xf9,0xaa,0xf2,0xc8,0x74,0xb0,0xe1,0xa3,0xdc,0x4c,0x52,0xa9,0x77,0x38,0x31,0x15,0x46,0xcc,0xaa,0x02,0x89,0xcc,0x42,0xf0,0x59,0xef,0x31,0xe9,0xb6,0x4b,0x12,0x8e,0x9d,0x9c,0x58,0x2c,0x97,0x59,0xc7,0xae,0x8a,0xe1,0xc8,0xad,0x0c,0xc5,0x02,0x56,0x0a,0xfe,0x2c,0x45,0xdf,0x77,0x78,0x64,0xa0,0xf7,0xa0,0x86,0x9f,0x7c,0x60,0x0e,0x27,0x64,0xc4,0xbb,0xc9,0x11,0xfb,0xf1,0x25,0xea,0x17,0xab,0x7b,0x87,0x4b,0x30,0x7b,0x7d,0xfb,0x4c}, {0xfe,0x75,0x9b,0xb8,0x6c,0x3d,0xb4,0x72,0x80,0xdc,0x6a,0x9c,0xd9,0x94,0xc6,0x54,0x9f,0x4c,0xe3,0x3e,0x37,0xaa,0xc3,0xb8,0x64,0x53,0x07,0x39,0x2b,0x62,0xb4,0x14,0x12,0xef,0x89,0x97,0xc2,0x99,0x86,0xe2,0x0d,0x19,0x57,0xdf,0x71,0xcd,0x6e,0x2b,0xd0,0x70,0xc9,0xec,0x57,0xc8,0x43,0xc3,0xc5,0x3a,0x4d,0x43,0xbc,0x4c,0x1d,0x5b,0x26,0x9f,0x0a,0xcc,0x15,0x26,0xfb,0xb6,0xe5,0xcc,0x8d,0xb8,0x2b,0x0e,0x4f,0x3a,0x05,0xa7,0x69,0x33,0x8b,0x49,0x01,0x13,0xd1,0x2d,0x59,0x58,0x12,0xf7,0x98,0x2f}, {0x56,0x9e,0x0f,0xb5,0x4c,0xa7,0x94,0x0c,0x20,0x13,0x8e,0x8e,0xa9,0xf4,0x1f,0x5b,0x67,0x0f,0x30,0x82,0x21,0xcc,0x2a,0x9a,0xf9,0xaa,0x06,0xd8,0x49,0xe2,0x6a,0x3a,0x01,0xa7,0x54,0x4f,0x44,0xae,0x12,0x2e,0xde,0xd7,0xcb,0xa9,0xf0,0x3e,0xfe,0xfc,0xe0,0x5d,0x83,0x75,0x0d,0x89,0xbf,0xce,0x54,0x45,0x61,0xe7,0xe9,0x62,0x80,0x1d,0x5a,0x7c,0x90,0xa9,0x85,0xda,0x7a,0x65,0x62,0x0f,0xb9,0x91,0xb5,0xa8,0x0e,0x1a,0xe9,0xb4,0x34,0xdf,0xfb,0x1d,0x0e,0x8d,0xf3,0x5f,0xf2,0xae,0xe8,0x8c,0x8b,0x29}, {0xb2,0x0c,0xf7,0xef,0x53,0x79,0x92,0x2a,0x76,0x70,0x15,0x79,0x2a,0xc9,0x89,0x4b,0x6a,0xcf,0xa7,0x30,0x7a,0x45,0x18,0x94,0x85,0xe4,0x5c,0x4d,0x40,0xa8,0xb8,0x34,0xde,0x65,0x21,0x0a,0xea,0x72,0x7a,0x83,0xf6,0x79,0xcf,0x0b,0xb4,0x07,0xab,0x3f,0x70,0xae,0x38,0x77,0xc7,0x36,0x16,0x52,0xdc,0xd7,0xa7,0x03,0x18,0x27,0xa6,0x6b,0x35,0x33,0x69,0x83,0xb5,0xec,0x6e,0xc2,0xfd,0xfe,0xb5,0x63,0xdf,0x13,0xa8,0xd5,0x73,0x25,0xb2,0xa4,0x9a,0xaa,0x93,0xa2,0x6a,0x1c,0x5e,0x46,0xdd,0x2b,0xd6,0x71}, {0x80,0xdf,0x78,0xd3,0x28,0xcc,0x33,0x65,0xb4,0xa4,0x0f,0x0a,0x79,0x43,0xdb,0xf6,0x5a,0xda,0x01,0xf7,0xf9,0x5f,0x64,0xe3,0xa4,0x2b,0x17,0xf3,0x17,0xf3,0xd5,0x74,0xf5,0x5e,0xf7,0xb1,0xda,0xb5,0x2d,0xcd,0xf5,0x65,0xb0,0x16,0xcf,0x95,0x7f,0xd7,0x85,0xf0,0x49,0x3f,0xea,0x1f,0x57,0x14,0x3d,0x2b,0x2b,0x26,0x21,0x36,0x33,0x1c,0x81,0xca,0xd9,0x67,0x54,0xe5,0x6f,0xa8,0x37,0x8c,0x29,0x2b,0x75,0x7c,0x8b,0x39,0x3b,0x62,0xac,0xe3,0x92,0x08,0x6d,0xda,0x8c,0xd9,0xe9,0x47,0x45,0xcc,0xeb,0x4a}, {0xc9,0x01,0x6d,0x27,0x1b,0x07,0xf0,0x12,0x70,0x8c,0xc4,0x86,0xc5,0xba,0xb8,0xe7,0xa9,0xfb,0xd6,0x71,0x9b,0x12,0x08,0x53,0x92,0xb7,0x3d,0x5a,0xf9,0xfb,0x88,0x5d,0x10,0xb6,0x54,0x73,0x9e,0x8d,0x40,0x0b,0x6e,0x5b,0xa8,0x5b,0x53,0x32,0x6b,0x80,0x07,0xa2,0x58,0x4a,0x03,0x3a,0xe6,0xdb,0x2c,0xdf,0xa1,0xc9,0xdd,0xd9,0x3b,0x17,0xdf,0x72,0x58,0xfe,0x1e,0x0f,0x50,0x2b,0xc1,0x18,0x39,0xd4,0x2e,0x58,0xd6,0x58,0xe0,0x3a,0x67,0xc9,0x8e,0x27,0xed,0xe6,0x19,0xa3,0x9e,0xb1,0x13,0xcd,0xe1,0x06}, {0x23,0x6f,0x16,0x6f,0x51,0xad,0xd0,0x40,0xbe,0x6a,0xab,0x1f,0x93,0x32,0x8e,0x11,0x8e,0x08,0x4d,0xa0,0x14,0x5e,0xe3,0x3f,0x66,0x62,0xe1,0x26,0x35,0x60,0x80,0x30,0x53,0x03,0x5b,0x9e,0x62,0xaf,0x2b,0x47,0x47,0x04,0x8d,0x27,0x90,0x0b,0xaa,0x3b,0x27,0xbf,0x43,0x96,0x46,0x5f,0x78,0x0c,0x13,0x7b,0x83,0x8d,0x1a,0x6a,0x3a,0x7f,0x0b,0x80,0x3d,0x5d,0x39,0x44,0xe6,0xf7,0xf6,0xed,0x01,0xc9,0x55,0xd5,0xa8,0x95,0x39,0x63,0x2c,0x59,0x30,0x78,0xcd,0x68,0x7e,0x30,0x51,0x2e,0xed,0xfd,0xd0,0x30}, {0xb3,0x33,0x12,0xf2,0x1a,0x4d,0x59,0xe0,0x9c,0x4d,0xcc,0xf0,0x8e,0xe7,0xdb,0x1b,0x77,0x9a,0x49,0x8f,0x7f,0x18,0x65,0x69,0x68,0x98,0x09,0x2c,0x20,0x14,0x92,0x0a,0x50,0x47,0xb8,0x68,0x1e,0x97,0xb4,0x9c,0xcf,0xbb,0x64,0x66,0x29,0x72,0x95,0xa0,0x2b,0x41,0xfa,0x72,0x26,0xe7,0x8d,0x5c,0xd9,0x89,0xc5,0x51,0x43,0x08,0x15,0x46,0x2e,0xa0,0xb9,0xae,0xc0,0x19,0x90,0xbc,0xae,0x4c,0x03,0x16,0x0d,0x11,0xc7,0x55,0xec,0x32,0x99,0x65,0x01,0xf5,0x6d,0x0e,0xfe,0x5d,0xca,0x95,0x28,0x0d,0xca,0x3b}, {0xa4,0x62,0x5d,0x3c,0xbc,0x31,0xf0,0x40,0x60,0x7a,0xf0,0xcf,0x3e,0x8b,0xfc,0x19,0x45,0xb5,0x0f,0x13,0xa2,0x3d,0x18,0x98,0xcd,0x13,0x8f,0xae,0xdd,0xde,0x31,0x56,0xbf,0x01,0xcc,0x9e,0xb6,0x8e,0x68,0x9c,0x6f,0x89,0x44,0xa6,0xad,0x83,0xbc,0xf0,0xe2,0x9f,0x7a,0x5f,0x5f,0x95,0x2d,0xca,0x41,0x82,0xf2,0x8d,0x03,0xb4,0xa8,0x4e,0x02,0xd2,0xca,0xf1,0x0a,0x46,0xed,0x2a,0x83,0xee,0x8c,0xa4,0x05,0x53,0x30,0x46,0x5f,0x1a,0xf1,0x49,0x45,0x77,0x21,0x91,0x63,0xa4,0x2c,0x54,0x30,0x09,0xce,0x24}, {0x06,0xc1,0x06,0xfd,0xf5,0x90,0xe8,0x1f,0xf2,0x10,0x88,0x5d,0x35,0x68,0xc4,0xb5,0x3e,0xaf,0x8c,0x6e,0xfe,0x08,0x78,0x82,0x4b,0xd7,0x06,0x8a,0xc2,0xe3,0xd4,0x41,0x85,0x0b,0xf3,0xfd,0x55,0xa1,0xcf,0x3f,0xa4,0x2e,0x37,0x36,0x8e,0x16,0xf7,0xd2,0x44,0xf8,0x92,0x64,0xde,0x64,0xe0,0xb2,0x80,0x42,0x4f,0x32,0xa7,0x28,0x99,0x54,0x2e,0x1a,0xee,0x63,0xa7,0x32,0x6e,0xf2,0xea,0xfd,0x5f,0xd2,0xb7,0xe4,0x91,0xae,0x69,0x4d,0x7f,0xd1,0x3b,0xd3,0x3b,0xbc,0x6a,0xff,0xdc,0xc0,0xde,0x66,0x1b,0x49}, {0xa7,0x32,0xea,0xc7,0x3d,0xb1,0xf5,0x98,0x98,0xdb,0x16,0x7e,0xcc,0xf8,0xd5,0xe3,0x47,0xd9,0xf8,0xcb,0x52,0xbf,0x0a,0xac,0xac,0xe4,0x5e,0xc8,0xd0,0x38,0xf3,0x08,0xa1,0x64,0xda,0xd0,0x8e,0x4a,0xf0,0x75,0x4b,0x28,0xe2,0x67,0xaf,0x2c,0x22,0xed,0xa4,0x7b,0x7b,0x1f,0x79,0xa3,0x34,0x82,0x67,0x8b,0x01,0xb7,0xb0,0xb8,0xf6,0x4c,0xbd,0x73,0x1a,0x99,0x21,0xa8,0x83,0xc3,0x7a,0x0c,0x32,0xdf,0x01,0xbc,0x27,0xab,0x63,0x70,0x77,0x84,0x1b,0x33,0x3d,0xc1,0x99,0x8a,0x07,0xeb,0x82,0x4a,0x0d,0x53}, {0x25,0x48,0xf9,0xe1,0x30,0x36,0x4c,0x00,0x5a,0x53,0xab,0x8c,0x26,0x78,0x2d,0x7e,0x8b,0xff,0x84,0xcc,0x23,0x23,0x48,0xc7,0xb9,0x70,0x17,0x10,0x3f,0x75,0xea,0x65,0x9e,0xbf,0x9a,0x6c,0x45,0x73,0x69,0x6d,0x80,0xa8,0x00,0x49,0xfc,0xb2,0x7f,0x25,0x50,0xb8,0xcf,0xc8,0x12,0xf4,0xac,0x2b,0x5b,0xbd,0xbf,0x0c,0xe0,0xe7,0xb3,0x0d,0x63,0x63,0x09,0xe2,0x3e,0xfc,0x66,0x3d,0x6b,0xcb,0xb5,0x61,0x7f,0x2c,0xd6,0x81,0x1a,0x3b,0x44,0x13,0x42,0x04,0xbe,0x0f,0xdb,0xa1,0xe1,0x21,0x19,0xec,0xa4,0x02}, {0xa2,0xb8,0x24,0x3b,0x9a,0x25,0xe6,0x5c,0xb8,0xa0,0xaf,0x45,0xcc,0x7a,0x57,0xb8,0x37,0x70,0xa0,0x8b,0xe8,0xe6,0xcb,0xcc,0xbf,0x09,0x78,0x12,0x51,0x3c,0x14,0x3d,0x5f,0x79,0xcf,0xf1,0x62,0x61,0xc8,0xf5,0xf2,0x57,0xee,0x26,0x19,0x86,0x8c,0x11,0x78,0x35,0x06,0x1c,0x85,0x24,0x21,0x17,0xcf,0x7f,0x06,0xec,0x5d,0x2b,0xd1,0x36,0x57,0x45,0x15,0x79,0x91,0x27,0x6d,0x12,0x0a,0x3a,0x78,0xfc,0x5c,0x8f,0xe4,0xd5,0xac,0x9b,0x17,0xdf,0xe8,0xb6,0xbd,0x36,0x59,0x28,0xa8,0x5b,0x88,0x17,0xf5,0x2e}, {0xdc,0xae,0x58,0x8c,0x4e,0x97,0x37,0x46,0xa4,0x41,0xf0,0xab,0xfb,0x22,0xef,0xb9,0x8a,0x71,0x80,0xe9,0x56,0xd9,0x85,0xe1,0xa6,0xa8,0x43,0xb1,0xfa,0x78,0x1b,0x2f,0x51,0x2f,0x5b,0x30,0xfb,0xbf,0xee,0x96,0xb8,0x96,0x95,0x88,0xad,0x38,0xf9,0xd3,0x25,0xdd,0xd5,0x46,0xc7,0x2d,0xf5,0xf0,0x95,0x00,0x3a,0xbb,0x90,0x82,0x96,0x57,0x01,0xe1,0x20,0x0a,0x43,0xb8,0x1a,0xf7,0x47,0xec,0xf0,0x24,0x8d,0x65,0x93,0xf3,0xd1,0xee,0xe2,0x6e,0xa8,0x09,0x75,0xcf,0xe1,0xa3,0x2a,0xdc,0x35,0x3e,0xc4,0x7d}, {0xc3,0xd9,0x7d,0x88,0x65,0x66,0x96,0x85,0x55,0x53,0xb0,0x4b,0x31,0x9b,0x0f,0xc9,0xb1,0x79,0x20,0xef,0xf8,0x8d,0xe0,0xc6,0x2f,0xc1,0x8c,0x75,0x16,0x20,0xf7,0x7e,0x18,0x97,0x3e,0x27,0x5c,0x2a,0x78,0x5a,0x94,0xfd,0x4e,0x5e,0x99,0xc6,0x76,0x35,0x3e,0x7d,0x23,0x1f,0x05,0xd8,0x2e,0x0f,0x99,0x0a,0xd5,0x82,0x1d,0xb8,0x4f,0x04,0xd9,0xe3,0x07,0xa9,0xc5,0x18,0xdf,0xc1,0x59,0x63,0x4c,0xce,0x1d,0x37,0xb3,0x57,0x49,0xbb,0x01,0xb2,0x34,0x45,0x70,0xca,0x2e,0xdd,0x30,0x9c,0x3f,0x82,0x79,0x7f}, {0xe8,0x13,0xb5,0xa3,0x39,0xd2,0x34,0x83,0xd8,0xa8,0x1f,0xb9,0xd4,0x70,0x36,0xc1,0x33,0xbd,0x90,0xf5,0x36,0x41,0xb5,0x12,0xb4,0xd9,0x84,0xd7,0x73,0x03,0x4e,0x0a,0xba,0x87,0xf5,0x68,0xf0,0x1f,0x9c,0x6a,0xde,0xc8,0x50,0x00,0x4e,0x89,0x27,0x08,0xe7,0x5b,0xed,0x7d,0x55,0x99,0xbf,0x3c,0xf0,0xd6,0x06,0x1c,0x43,0xb0,0xa9,0x64,0x19,0x29,0x7d,0x5b,0xa1,0xd6,0xb3,0x2e,0x35,0x82,0x3a,0xd5,0xa0,0xf6,0xb4,0xb0,0x47,0x5d,0xa4,0x89,0x43,0xce,0x56,0x71,0x6c,0x34,0x18,0xce,0x0a,0x7d,0x1a,0x07}, {0x0b,0xba,0x87,0xc8,0xaa,0x2d,0x07,0xd3,0xee,0x62,0xa5,0xbf,0x05,0x29,0x26,0x01,0x8b,0x76,0xef,0xc0,0x02,0x30,0x54,0xcf,0x9c,0x7e,0xea,0x46,0x71,0xcc,0x3b,0x2c,0x31,0x44,0xe1,0x20,0x52,0x35,0x0c,0xcc,0x41,0x51,0xb1,0x09,0x07,0x95,0x65,0x0d,0x36,0x5f,0x9d,0x20,0x1b,0x62,0xf5,0x9a,0xd3,0x55,0x77,0x61,0xf7,0xbc,0x69,0x7c,0x5f,0x29,0xe8,0x04,0xeb,0xd7,0xf0,0x07,0x7d,0xf3,0x50,0x2f,0x25,0x18,0xdb,0x10,0xd7,0x98,0x17,0x17,0xa3,0xa9,0x51,0xe9,0x1d,0xa5,0xac,0x22,0x73,0x9a,0x5a,0x6f}, {0xc5,0xc6,0x41,0x2f,0x0c,0x00,0xa1,0x8b,0x9b,0xfb,0xfe,0x0c,0xc1,0x79,0x9f,0xc4,0x9f,0x1c,0xc5,0x3c,0x70,0x47,0xfa,0x4e,0xca,0xaf,0x47,0xe1,0xa2,0x21,0x4e,0x49,0xbe,0x44,0xd9,0xa3,0xeb,0xd4,0x29,0xe7,0x9e,0xaf,0x78,0x80,0x40,0x09,0x9e,0x8d,0x03,0x9c,0x86,0x47,0x7a,0x56,0x25,0x45,0x24,0x3b,0x8d,0xee,0x80,0x96,0xab,0x02,0x9a,0x0d,0xe5,0xdd,0x85,0x8a,0xa4,0xef,0x49,0xa2,0xb9,0x0f,0x4e,0x22,0x9a,0x21,0xd9,0xf6,0x1e,0xd9,0x1d,0x1f,0x09,0xfa,0x34,0xbb,0x46,0xea,0xcb,0x76,0x5d,0x6b}, {0x94,0xd9,0x0c,0xec,0x6c,0x55,0x57,0x88,0xba,0x1d,0xd0,0x5c,0x6f,0xdc,0x72,0x64,0x77,0xb4,0x42,0x8f,0x14,0x69,0x01,0xaf,0x54,0x73,0x27,0x85,0xf6,0x33,0xe3,0x0a,0x22,0x25,0x78,0x1e,0x17,0x41,0xf9,0xe0,0xd3,0x36,0x69,0x03,0x74,0xae,0xe6,0xf1,0x46,0xc7,0xfc,0xd0,0xa2,0x3e,0x8b,0x40,0x3e,0x31,0xdd,0x03,0x9c,0x86,0xfb,0x16,0x62,0x09,0xb6,0x33,0x97,0x19,0x8e,0x28,0x33,0xe1,0xab,0xd8,0xb4,0x72,0xfc,0x24,0x3e,0xd0,0x91,0x09,0xed,0xf7,0x11,0x48,0x75,0xd0,0x70,0x8f,0x8b,0xe3,0x81,0x3f}, {0xfe,0xaf,0xd9,0x7e,0xcc,0x0f,0x91,0x7f,0x4b,0x87,0x65,0x24,0xa1,0xb8,0x5c,0x54,0x04,0x47,0x0c,0x4b,0xd2,0x7e,0x39,0xa8,0x93,0x09,0xf5,0x04,0xc1,0x0f,0x51,0x50,0x24,0xc8,0x17,0x5f,0x35,0x7f,0xdb,0x0a,0xa4,0x99,0x42,0xd7,0xc3,0x23,0xb9,0x74,0xf7,0xea,0xf8,0xcb,0x8b,0x3e,0x7c,0xd5,0x3d,0xdc,0xde,0x4c,0xd3,0xe2,0xd3,0x0a,0x9d,0x24,0x6e,0x33,0xc5,0x0f,0x0c,0x6f,0xd9,0xcf,0x31,0xc3,0x19,0xde,0x5e,0x74,0x1c,0xfe,0xee,0x09,0x00,0xfd,0xd6,0xf2,0xbe,0x1e,0xfa,0xf0,0x8b,0x15,0x7c,0x12}, {0xa2,0x79,0x98,0x2e,0x42,0x7c,0x19,0xf6,0x47,0x36,0xca,0x52,0xd4,0xdd,0x4a,0xa4,0xcb,0xac,0x4e,0x4b,0xc1,0x3f,0x41,0x9b,0x68,0x4f,0xef,0x07,0x7d,0xf8,0x4e,0x35,0x74,0xb9,0x51,0xae,0xc4,0x8f,0xa2,0xde,0x96,0xfe,0x4d,0x74,0xd3,0x73,0x99,0x1d,0xa8,0x48,0x38,0x87,0x0b,0x68,0x40,0x62,0x95,0xdf,0x67,0xd1,0x79,0x24,0xd8,0x4e,0x75,0xd9,0xc5,0x60,0x22,0xb5,0xe3,0xfe,0xb8,0xb0,0x41,0xeb,0xfc,0x2e,0x35,0x50,0x3c,0x65,0xf6,0xa9,0x30,0xac,0x08,0x88,0x6d,0x23,0x39,0x05,0xd2,0x92,0x2d,0x30}, {0x3d,0x28,0xa4,0xbc,0xa2,0xc1,0x13,0x78,0xd9,0x3d,0x86,0xa1,0x91,0xf0,0x62,0xed,0x86,0xfa,0x68,0xc2,0xb8,0xbc,0xc7,0xae,0x4c,0xae,0x1c,0x6f,0xb7,0xd3,0xe5,0x10,0x77,0xf1,0xe0,0xe4,0xb6,0x6f,0xbc,0x2d,0x93,0x6a,0xbd,0xa4,0x29,0xbf,0xe1,0x04,0xe8,0xf6,0x7a,0x78,0xd4,0x66,0x19,0x5e,0x60,0xd0,0x26,0xb4,0x5e,0x5f,0xdc,0x0e,0x67,0x8e,0xda,0x53,0xd6,0xbf,0x53,0x54,0x41,0xf6,0xa9,0x24,0xec,0x1e,0xdc,0xe9,0x23,0x8a,0x57,0x03,0x3b,0x26,0x87,0xbf,0x72,0xba,0x1c,0x36,0x51,0x6c,0xb4,0x45}, {0xa1,0x7f,0x4f,0x31,0xbf,0x2a,0x40,0xa9,0x50,0xf4,0x8c,0x8e,0xdc,0xf1,0x57,0xe2,0x84,0xbe,0xa8,0x23,0x4b,0xd5,0xbb,0x1d,0x3b,0x71,0xcb,0x6d,0xa3,0xbf,0x77,0x21,0xe4,0xe3,0x7f,0x8a,0xdd,0x4d,0x9d,0xce,0x30,0x0e,0x62,0x76,0x56,0x64,0x13,0xab,0x58,0x99,0x0e,0xb3,0x7b,0x4f,0x59,0x4b,0xdf,0x29,0x12,0x32,0xef,0x0a,0x1c,0x5c,0x8f,0xdb,0x79,0xfa,0xbc,0x1b,0x08,0x37,0xb3,0x59,0x5f,0xc2,0x1e,0x81,0x48,0x60,0x87,0x24,0x83,0x9c,0x65,0x76,0x7a,0x08,0xbb,0xb5,0x8a,0x7d,0x38,0x19,0xe6,0x4a}, {0x2e,0xa3,0x44,0x53,0xaa,0xf6,0xdb,0x8d,0x78,0x40,0x1b,0xb4,0xb4,0xea,0x88,0x7d,0x60,0x0d,0x13,0x4a,0x97,0xeb,0xb0,0x5e,0x03,0x3e,0xbf,0x17,0x1b,0xd9,0x00,0x1a,0x83,0xfb,0x5b,0x98,0x44,0x7e,0x11,0x61,0x36,0x31,0x96,0x71,0x2a,0x46,0xe0,0xfc,0x4b,0x90,0x25,0xd4,0x48,0x34,0xac,0x83,0x64,0x3d,0xa4,0x5b,0xbe,0x5a,0x68,0x75,0xb2,0xf2,0x61,0xeb,0x33,0x09,0x96,0x6e,0x52,0x49,0xff,0xc9,0xa8,0x0f,0x3d,0x54,0x69,0x65,0xf6,0x7a,0x10,0x75,0x72,0xdf,0xaa,0xe6,0xb0,0x23,0xb6,0x29,0x55,0x13}, {0x18,0xd5,0xd1,0xad,0xd7,0xdb,0xf0,0x18,0x11,0x1f,0xc1,0xcf,0x88,0x78,0x9f,0x97,0x9b,0x75,0x14,0x71,0xf0,0xe1,0x32,0x87,0x01,0x3a,0xca,0x65,0x1a,0xb8,0xb5,0x79,0xfe,0x83,0x2e,0xe2,0xbc,0x16,0xc7,0xf5,0xc1,0x85,0x09,0xe8,0x19,0xeb,0x2b,0xb4,0xae,0x4a,0x25,0x14,0x37,0xa6,0x9d,0xec,0x13,0xa6,0x90,0x15,0x05,0xea,0x72,0x59,0x11,0x78,0x8f,0xdc,0x20,0xac,0xd4,0x0f,0xa8,0x4f,0x4d,0xac,0x94,0xd2,0x9a,0x9a,0x34,0x04,0x36,0xb3,0x64,0x2d,0x1b,0xc0,0xdb,0x3b,0x5f,0x90,0x95,0x9c,0x7e,0x4f}, {0x2e,0x30,0x81,0x57,0xbc,0x4b,0x67,0x62,0x0f,0xdc,0xad,0x89,0x39,0x0f,0x52,0xd8,0xc6,0xd9,0xfb,0x53,0xae,0x99,0x29,0x8c,0x4c,0x8e,0x63,0x2e,0xd9,0x3a,0x99,0x31,0xfe,0x99,0x52,0x35,0x3d,0x44,0xc8,0x71,0xd7,0xea,0xeb,0xdb,0x1c,0x3b,0xcd,0x8b,0x66,0x94,0xa4,0xf1,0x9e,0x49,0x92,0x80,0xc8,0xad,0x44,0xa1,0xc4,0xee,0x42,0x19,0x92,0x49,0x23,0xae,0x19,0x53,0xac,0x7d,0x92,0x3e,0xea,0x0c,0x91,0x3d,0x1b,0x2c,0x22,0x11,0x3c,0x25,0x94,0xe4,0x3c,0x55,0x75,0xca,0xf9,0x4e,0x31,0x65,0x0a,0x2a}, {0xc2,0x27,0xf9,0xf7,0x7f,0x93,0xb7,0x2d,0x35,0xa6,0xd0,0x17,0x06,0x1f,0x74,0xdb,0x76,0xaf,0x55,0x11,0xa2,0xf3,0x82,0x59,0xed,0x2d,0x7c,0x64,0x18,0xe2,0xf6,0x4c,0x3a,0x79,0x1c,0x3c,0xcd,0x1a,0x36,0xcf,0x3b,0xbc,0x35,0x5a,0xac,0xbc,0x9e,0x2f,0xab,0xa6,0xcd,0xa8,0xe9,0x60,0xe8,0x60,0x13,0x1a,0xea,0x6d,0x9b,0xc3,0x5d,0x05,0xb6,0x5b,0x8d,0xc2,0x7c,0x22,0x19,0xb1,0xab,0xff,0x4d,0x77,0xbc,0x4e,0xe2,0x07,0x89,0x2c,0xa3,0xe4,0xce,0x78,0x3c,0xa8,0xb6,0x24,0xaa,0x10,0x77,0x30,0x1a,0x12}, {0x97,0x4a,0x03,0x9f,0x5e,0x5d,0xdb,0xe4,0x2d,0xbc,0x34,0x30,0x09,0xfc,0x53,0xe1,0xb1,0xd3,0x51,0x95,0x91,0x46,0x05,0x46,0x2d,0xe5,0x40,0x7a,0x6c,0xc7,0x3f,0x33,0xc9,0x83,0x74,0xc7,0x3e,0x71,0x59,0xd6,0xaf,0x96,0x2b,0xb8,0x77,0xe0,0xbf,0x88,0xd3,0xbc,0x97,0x10,0x23,0x28,0x9e,0x28,0x9b,0x3a,0xed,0x6c,0x4a,0xb9,0x7b,0x52,0x2e,0x48,0x5b,0x99,0x2a,0x99,0x3d,0x56,0x01,0x38,0x38,0x6e,0x7c,0xd0,0x05,0x34,0xe5,0xd8,0x64,0x2f,0xde,0x35,0x50,0x48,0xf7,0xa9,0xa7,0x20,0x9b,0x06,0x89,0x6b}, {0x0d,0x22,0x70,0x62,0x41,0xa0,0x2a,0x81,0x4e,0x5b,0x24,0xf9,0xfa,0x89,0x5a,0x99,0x05,0xef,0x72,0x50,0xce,0xc4,0xad,0xff,0x73,0xeb,0x73,0xaa,0x03,0x21,0xbc,0x23,0x77,0xdb,0xc7,0xb5,0x8c,0xfa,0x82,0x40,0x55,0xc1,0x34,0xc7,0xf8,0x86,0x86,0x06,0x7e,0xa5,0xe7,0xf6,0xd9,0xc8,0xe6,0x29,0xcf,0x9b,0x63,0xa7,0x08,0xd3,0x73,0x04,0x05,0x9e,0x58,0x03,0x26,0x79,0xee,0xca,0x92,0xc4,0xdc,0x46,0x12,0x42,0x4b,0x2b,0x4f,0xa9,0x01,0xe6,0x74,0xef,0xa1,0x02,0x1a,0x34,0x04,0xde,0xbf,0x73,0x2f,0x10}, {0xc6,0x45,0x57,0x7f,0xab,0xb9,0x18,0xeb,0x90,0xc6,0x87,0x57,0xee,0x8a,0x3a,0x02,0xa9,0xaf,0xf7,0x2d,0xda,0x12,0x27,0xb7,0x3d,0x01,0x5c,0xea,0x25,0x7d,0x59,0x36,0x9a,0x1c,0x51,0xb5,0xe0,0xda,0xb4,0xa2,0x06,0xff,0xff,0x2b,0x29,0x60,0xc8,0x7a,0x34,0x42,0x50,0xf5,0x5d,0x37,0x1f,0x98,0x2d,0xa1,0x4e,0xda,0x25,0xd7,0x6b,0x3f,0xac,0x58,0x60,0x10,0x7b,0x8d,0x4d,0x73,0x5f,0x90,0xc6,0x6f,0x9e,0x57,0x40,0xd9,0x2d,0x93,0x02,0x92,0xf9,0xf8,0x66,0x64,0xd0,0xd6,0x60,0xda,0x19,0xcc,0x7e,0x7b}, {0x0d,0x69,0x5c,0x69,0x3c,0x37,0xc2,0x78,0x6e,0x90,0x42,0x06,0x66,0x2e,0x25,0xdd,0xd2,0x2b,0xe1,0x4a,0x44,0x44,0x1d,0x95,0x56,0x39,0x74,0x01,0x76,0xad,0x35,0x42,0x9b,0xfa,0x7c,0xa7,0x51,0x4a,0xae,0x6d,0x50,0x86,0xa3,0xe7,0x54,0x36,0x26,0x82,0xdb,0x82,0x2d,0x8f,0xcd,0xff,0xbb,0x09,0xba,0xca,0xf5,0x1b,0x66,0xdc,0xbe,0x03,0xf5,0x75,0x89,0x07,0x0d,0xcb,0x58,0x62,0x98,0xf2,0x89,0x91,0x54,0x42,0x29,0x49,0xe4,0x6e,0xe3,0xe2,0x23,0xb4,0xca,0xa0,0xa1,0x66,0xf0,0xcd,0xb0,0xe2,0x7c,0x0e}, {0xa3,0x85,0x8c,0xc4,0x3a,0x64,0x94,0xc4,0xad,0x39,0x61,0x3c,0xf4,0x1d,0x36,0xfd,0x48,0x4d,0xe9,0x3a,0xdd,0x17,0xdb,0x09,0x4a,0x67,0xb4,0x8f,0x5d,0x0a,0x6e,0x66,0xf9,0x70,0x4b,0xd9,0xdf,0xfe,0xa6,0xfe,0x2d,0xba,0xfc,0xc1,0x51,0xc0,0x30,0xf1,0x89,0xab,0x2f,0x7f,0x7e,0xd4,0x82,0x48,0xb5,0xee,0xec,0x8a,0x13,0x56,0x52,0x61,0x0d,0xcb,0x70,0x48,0x4e,0xf6,0xbb,0x2a,0x6b,0x8b,0x45,0xaa,0xf0,0xbc,0x65,0xcd,0x5d,0x98,0xe8,0x75,0xba,0x4e,0xbe,0x9a,0xe4,0xde,0x14,0xd5,0x10,0xc8,0x0b,0x7f}, {0x6f,0x13,0xf4,0x26,0xa4,0x6b,0x00,0xb9,0x35,0x30,0xe0,0x57,0x9e,0x36,0x67,0x8d,0x28,0x3c,0x46,0x4f,0xd9,0xdf,0xc8,0xcb,0xf5,0xdb,0xee,0xf8,0xbc,0x8d,0x1f,0x0d,0xa0,0x13,0x72,0x73,0xad,0x9d,0xac,0x83,0x98,0x2e,0xf7,0x2e,0xba,0xf8,0xf6,0x9f,0x57,0x69,0xec,0x43,0xdd,0x2e,0x1e,0x31,0x75,0xab,0xc5,0xde,0x7d,0x90,0x3a,0x1d,0xdc,0x81,0xd0,0x3e,0x31,0x93,0x16,0xba,0x80,0x34,0x1b,0x85,0xad,0x9f,0x32,0x29,0xcb,0x21,0x03,0x03,0x3c,0x01,0x28,0x01,0xe3,0xfd,0x1b,0xa3,0x44,0x1b,0x01,0x00}, {0x0c,0x6c,0xc6,0x3f,0x6c,0xa0,0xdf,0x3f,0xd2,0x0d,0xd6,0x4d,0x8e,0xe3,0x40,0x5d,0x71,0x4d,0x8e,0x26,0x38,0x8b,0xe3,0x7a,0xe1,0x57,0x83,0x6e,0x91,0x8d,0xc4,0x3a,0x5c,0xa7,0x0a,0x6a,0x69,0x1f,0x56,0x16,0x6a,0xbd,0x52,0x58,0x5c,0x72,0xbf,0xc1,0xad,0x66,0x79,0x9a,0x7f,0xdd,0xa8,0x11,0x26,0x10,0x85,0xd2,0xa2,0x88,0xd9,0x63,0x2e,0x23,0xbd,0xaf,0x53,0x07,0x12,0x00,0x83,0xf6,0xd8,0xfd,0xb8,0xce,0x2b,0xe9,0x91,0x2b,0xe7,0x84,0xb3,0x69,0x16,0xf8,0x66,0xa0,0x68,0x23,0x2b,0xd5,0xfa,0x33}, {0x16,0x1e,0xe4,0xc5,0xc6,0x49,0x06,0x54,0x35,0x77,0x3f,0x33,0x30,0x64,0xf8,0x0a,0x46,0xe7,0x05,0xf3,0xd2,0xfc,0xac,0xb2,0xa7,0xdc,0x56,0xa2,0x29,0xf4,0xc0,0x16,0xe8,0xcf,0x22,0xc4,0xd0,0xc8,0x2c,0x8d,0xcb,0x3a,0xa1,0x05,0x7b,0x4f,0x2b,0x07,0x6f,0xa5,0xf6,0xec,0xe6,0xb6,0xfe,0xa3,0xe2,0x71,0x0a,0xb9,0xcc,0x55,0xc3,0x3c,0x31,0x91,0x3e,0x90,0x43,0x94,0xb6,0xe9,0xce,0x37,0x56,0x7a,0xcb,0x94,0xa4,0xb8,0x44,0x92,0xba,0xba,0xa4,0xd1,0x7c,0xc8,0x68,0x75,0xae,0x6b,0x42,0xaf,0x1e,0x63}, {0x9f,0xfe,0x66,0xda,0x10,0x04,0xe9,0xb3,0xa6,0xe5,0x16,0x6c,0x52,0x4b,0xdd,0x85,0x83,0xbf,0xf9,0x1e,0x61,0x97,0x3d,0xbc,0xb5,0x19,0xa9,0x1e,0x8b,0x64,0x99,0x55,0xe8,0x0d,0x70,0xa3,0xb9,0x75,0xd9,0x47,0x52,0x05,0xf8,0xe2,0xfb,0xc5,0x80,0x72,0xe1,0x5d,0xe4,0x32,0x27,0x8f,0x65,0x53,0xb5,0x80,0x5f,0x66,0x7f,0x2c,0x1f,0x43,0x19,0x7b,0x8f,0x85,0x44,0x63,0x02,0xd6,0x4a,0x51,0xea,0xa1,0x2f,0x35,0xab,0x14,0xd7,0xa9,0x90,0x20,0x1a,0x44,0x00,0x89,0x26,0x3b,0x25,0x91,0x5f,0x71,0x04,0x7b}, {0x43,0xae,0xf6,0xac,0x28,0xbd,0xed,0x83,0xb4,0x7a,0x5c,0x7d,0x8b,0x7c,0x35,0x86,0x44,0x2c,0xeb,0xb7,0x69,0x47,0x40,0xc0,0x3f,0x58,0xf6,0xc2,0xf5,0x7b,0xb3,0x59,0xc6,0xba,0xe6,0xc4,0x80,0xc2,0x76,0xb3,0x0b,0x9b,0x1d,0x6d,0xdd,0xd3,0x0e,0x97,0x44,0xf9,0x0b,0x45,0x58,0x95,0x9a,0xb0,0x23,0xe2,0xcd,0x57,0xfa,0xac,0xd0,0x48,0x71,0xe6,0xab,0x7d,0xe4,0x26,0x0f,0xb6,0x37,0x3a,0x2f,0x62,0x97,0xa1,0xd1,0xf1,0x94,0x03,0x96,0xe9,0x7e,0xce,0x08,0x42,0xdb,0x3b,0x6d,0x33,0x91,0x41,0x23,0x16}, {0xf6,0x7f,0x26,0xf6,0xde,0x99,0xe4,0xb9,0x43,0x08,0x2c,0x74,0x7b,0xca,0x72,0x77,0xb1,0xf2,0xa4,0xe9,0x3f,0x15,0xa0,0x23,0x06,0x50,0xd0,0xd5,0xec,0xdf,0xdf,0x2c,0x40,0x86,0xf3,0x1f,0xd6,0x9c,0x49,0xdd,0xa0,0x25,0x36,0x06,0xc3,0x9b,0xcd,0x29,0xc3,0x3d,0xd7,0x3d,0x02,0xd8,0xe2,0x51,0x31,0x92,0x3b,0x20,0x7a,0x70,0x25,0x4a,0x6a,0xed,0xf6,0x53,0x8a,0x66,0xb7,0x2a,0xa1,0x70,0xd1,0x1d,0x58,0x42,0x42,0x30,0x61,0x01,0xe2,0x3a,0x4c,0x14,0x00,0x40,0xfc,0x49,0x8e,0x24,0x6d,0x89,0x21,0x57}, {0xae,0x1b,0x18,0xfd,0x17,0x55,0x6e,0x0b,0xb4,0x63,0xb9,0x2b,0x9f,0x62,0x22,0x90,0x25,0x46,0x06,0x32,0xe9,0xbc,0x09,0x55,0xda,0x13,0x3c,0xf6,0x74,0xdd,0x8e,0x57,0x4e,0xda,0xd0,0xa1,0x91,0x50,0x5d,0x28,0x08,0x3e,0xfe,0xb5,0xa7,0x6f,0xaa,0x4b,0xb3,0x93,0x93,0xe1,0x7c,0x17,0xe5,0x63,0xfd,0x30,0xb0,0xc4,0xaf,0x35,0xc9,0x03,0x3d,0x0c,0x2b,0x49,0xc6,0x76,0x72,0x99,0xfc,0x05,0xe2,0xdf,0xc4,0xc2,0xcc,0x47,0x3c,0x3a,0x62,0xdd,0x84,0x9b,0xd2,0xdc,0xa2,0xc7,0x88,0x02,0x59,0xab,0xc2,0x3e}, {0xb9,0x7b,0xd8,0xe4,0x7b,0xd2,0xa0,0xa1,0xed,0x1a,0x39,0x61,0xeb,0x4d,0x8b,0xa9,0x83,0x9b,0xcb,0x73,0xd0,0xdd,0xa0,0x99,0xce,0xca,0x0f,0x20,0x5a,0xc2,0xd5,0x2d,0xcb,0xd1,0x32,0xae,0x09,0x3a,0x21,0xa7,0xd5,0xc2,0xf5,0x40,0xdf,0x87,0x2b,0x0f,0x29,0xab,0x1e,0xe8,0xc6,0xa4,0xae,0x0b,0x5e,0xac,0xdb,0x6a,0x6c,0xf6,0x1b,0x0e,0x7e,0x88,0x2c,0x79,0xe9,0xd5,0xab,0xe2,0x5d,0x6d,0x92,0xcb,0x18,0x00,0x02,0x1a,0x1e,0x5f,0xae,0xba,0xcd,0x69,0xba,0xbf,0x5f,0x8f,0xe8,0x5a,0xb3,0x48,0x05,0x73}, {0xee,0xb8,0xa8,0xcb,0xa3,0x51,0x35,0xc4,0x16,0x5f,0x11,0xb2,0x1d,0x6f,0xa2,0x65,0x50,0x38,0x8c,0xab,0x52,0x4f,0x0f,0x76,0xca,0xb8,0x1d,0x41,0x3b,0x44,0x43,0x30,0x34,0xe3,0xd6,0xa1,0x4b,0x09,0x5b,0x80,0x19,0x3f,0x35,0x09,0x77,0xf1,0x3e,0xbf,0x2b,0x70,0x22,0x06,0xcb,0x06,0x3f,0x42,0xdd,0x45,0x78,0xd8,0x77,0x22,0x5a,0x58,0x62,0x89,0xd4,0x33,0x82,0x5f,0x8a,0xa1,0x7f,0x25,0x78,0xec,0xb5,0xc4,0x98,0x66,0xff,0x41,0x3e,0x37,0xa5,0x6f,0x8e,0xa7,0x1f,0x98,0xef,0x50,0x89,0x27,0x56,0x76}, {0xc0,0xc8,0x1f,0xd5,0x59,0xcf,0xc3,0x38,0xf2,0xb6,0x06,0x05,0xfd,0xd2,0xed,0x9b,0x8f,0x0e,0x57,0xab,0x9f,0x10,0xbf,0x26,0xa6,0x46,0xb8,0xc1,0xa8,0x60,0x41,0x3f,0x9d,0xcf,0x86,0xea,0xa3,0x73,0x70,0xe1,0xdc,0x5f,0x15,0x07,0xb7,0xfb,0x8c,0x3a,0x8e,0x8a,0x83,0x31,0xfc,0xe7,0x53,0x48,0x16,0xf6,0x13,0xb6,0x84,0xf4,0xbb,0x28,0x7c,0x6c,0x13,0x6f,0x5c,0x2f,0x61,0xf2,0xbe,0x11,0xdd,0xf6,0x07,0xd1,0xea,0xaf,0x33,0x6f,0xde,0x13,0xd2,0x9a,0x7e,0x52,0x5d,0xf7,0x88,0x81,0x35,0xcb,0x79,0x1e}, {0xf1,0xe3,0xf7,0xee,0xc3,0x36,0x34,0x01,0xf8,0x10,0x9e,0xfe,0x7f,0x6a,0x8b,0x82,0xfc,0xde,0xf9,0xbc,0xe5,0x08,0xf9,0x7f,0x31,0x38,0x3b,0x3a,0x1b,0x95,0xd7,0x65,0x81,0x81,0xe0,0xf5,0xd8,0x53,0xe9,0x77,0xd9,0xde,0x9d,0x29,0x44,0x0c,0xa5,0x84,0xe5,0x25,0x45,0x86,0x0c,0x2d,0x6c,0xdc,0xf4,0xf2,0xd1,0x39,0x2d,0xb5,0x8a,0x47,0x59,0xd1,0x52,0x92,0xd3,0xa4,0xa6,0x66,0x07,0xc8,0x1a,0x87,0xbc,0xe1,0xdd,0xe5,0x6f,0xc9,0xc1,0xa6,0x40,0x6b,0x2c,0xb8,0x14,0x22,0x21,0x1a,0x41,0x7a,0xd8,0x16}, {0x15,0x62,0x06,0x42,0x5a,0x7e,0xbd,0xb3,0xc1,0x24,0x5a,0x0c,0xcd,0xe3,0x9b,0x87,0xb7,0x94,0xf9,0xd6,0xb1,0x5d,0xc0,0x57,0xa6,0x8c,0xf3,0x65,0x81,0x7c,0xf8,0x28,0x83,0x05,0x4e,0xd5,0xe2,0xd5,0xa4,0xfb,0xfa,0x99,0xbd,0x2e,0xd7,0xaf,0x1f,0xe2,0x8f,0x77,0xe9,0x6e,0x73,0xc2,0x7a,0x49,0xde,0x6d,0x5a,0x7a,0x57,0x0b,0x99,0x1f,0xd6,0xf7,0xe8,0x1b,0xad,0x4e,0x34,0xa3,0x8f,0x79,0xea,0xac,0xeb,0x50,0x1e,0x7d,0x52,0xe0,0x0d,0x52,0x9e,0x56,0xc6,0x77,0x3e,0x6d,0x4d,0x53,0xe1,0x2f,0x88,0x45}, {0xd6,0x83,0x79,0x75,0x5d,0x34,0x69,0x66,0xa6,0x11,0xaa,0x17,0x11,0xed,0xb6,0x62,0x8f,0x12,0x5e,0x98,0x57,0x18,0xdd,0x7d,0xdd,0xf6,0x26,0xf6,0xb8,0xe5,0x8f,0x68,0xe4,0x6f,0x3c,0x94,0x29,0x99,0xac,0xd8,0xa2,0x92,0x83,0xa3,0x61,0xf1,0xf9,0xb5,0xf3,0x9a,0xc8,0xbe,0x13,0xdb,0x99,0x26,0x74,0xf0,0x05,0xe4,0x3c,0x84,0xcf,0x7d,0xc0,0x32,0x47,0x4a,0x48,0xd6,0x90,0x6c,0x99,0x32,0x56,0xca,0xfd,0x43,0x21,0xd5,0xe1,0xc6,0x5d,0x91,0xc3,0x28,0xbe,0xb3,0x1b,0x19,0x27,0x73,0x7e,0x68,0x39,0x67}, {0xa6,0x75,0x56,0x38,0x14,0x20,0x78,0xef,0xe8,0xa9,0xfd,0xaa,0x30,0x9f,0x64,0xa2,0xcb,0xa8,0xdf,0x5c,0x50,0xeb,0xd1,0x4c,0xb3,0xc0,0x4d,0x1d,0xba,0x5a,0x11,0x46,0xc0,0x1a,0x0c,0xc8,0x9d,0xcc,0x6d,0xa6,0x36,0xa4,0x38,0x1b,0xf4,0x5c,0xa0,0x97,0xc6,0xd7,0xdb,0x95,0xbe,0xf3,0xeb,0xa7,0xab,0x7d,0x7e,0x8d,0xf6,0xb8,0xa0,0x7d,0x76,0xda,0xb5,0xc3,0x53,0x19,0x0f,0xd4,0x9b,0x9e,0x11,0x21,0x73,0x6f,0xac,0x1d,0x60,0x59,0xb2,0xfe,0x21,0x60,0xcc,0x03,0x4b,0x4b,0x67,0x83,0x7e,0x88,0x5f,0x5a}, {0x11,0x3d,0xa1,0x70,0xcf,0x01,0x63,0x8f,0xc4,0xd0,0x0d,0x35,0x15,0xb8,0xce,0xcf,0x7e,0xa4,0xbc,0xa4,0xd4,0x97,0x02,0xf7,0x34,0x14,0x4d,0xe4,0x56,0xb6,0x69,0x36,0xb9,0x43,0xa6,0xa0,0xd3,0x28,0x96,0x9e,0x64,0x20,0xc3,0xe6,0x00,0xcb,0xc3,0xb5,0x32,0xec,0x2d,0x7c,0x89,0x02,0x53,0x9b,0x0c,0xc7,0xd1,0xd5,0xe2,0x7a,0xe3,0x43,0x33,0xe1,0xa6,0xed,0x06,0x3f,0x7e,0x38,0xc0,0x3a,0xa1,0x99,0x51,0x1d,0x30,0x67,0x11,0x38,0x26,0x36,0xf8,0xd8,0x5a,0xbd,0xbe,0xe9,0xd5,0x4f,0xcd,0xe6,0x21,0x6a}, {0x5f,0xe6,0x46,0x30,0x0a,0x17,0xc6,0xf1,0x24,0x35,0xd2,0x00,0x2a,0x2a,0x71,0x58,0x55,0xb7,0x82,0x8c,0x3c,0xbd,0xdb,0x69,0x57,0xff,0x95,0xa1,0xf1,0xf9,0x6b,0x58,0xe3,0xb2,0x99,0x66,0x12,0x29,0x41,0xef,0x01,0x13,0x8d,0x70,0x47,0x08,0xd3,0x71,0xbd,0xb0,0x82,0x11,0xd0,0x32,0x54,0x32,0x36,0x8b,0x1e,0x00,0x07,0x1b,0x37,0x45,0x0b,0x79,0xf8,0x5e,0x8d,0x08,0xdb,0xa6,0xe5,0x37,0x09,0x61,0xdc,0xf0,0x78,0x52,0xb8,0x6e,0xa1,0x61,0xd2,0x49,0x03,0xac,0x79,0x21,0xe5,0x90,0x37,0xb0,0xaf,0x0e}, {0x2f,0x04,0x48,0x37,0xc1,0x55,0x05,0x96,0x11,0xaa,0x0b,0x82,0xe6,0x41,0x9a,0x21,0x0c,0x6d,0x48,0x73,0x38,0xf7,0x81,0x1c,0x61,0xc6,0x02,0x5a,0x67,0xcc,0x9a,0x30,0x1d,0xae,0x75,0x0f,0x5e,0x80,0x40,0x51,0x30,0xcc,0x62,0x26,0xe3,0xfb,0x02,0xec,0x6d,0x39,0x92,0xea,0x1e,0xdf,0xeb,0x2c,0xb3,0x5b,0x43,0xc5,0x44,0x33,0xae,0x44,0xee,0x43,0xa5,0xbb,0xb9,0x89,0xf2,0x9c,0x42,0x71,0xc9,0x5a,0x9d,0x0e,0x76,0xf3,0xaa,0x60,0x93,0x4f,0xc6,0xe5,0x82,0x1d,0x8f,0x67,0x94,0x7f,0x1b,0x22,0xd5,0x62}, {0x6d,0x93,0xd0,0x18,0x9c,0x29,0x4c,0x52,0x0c,0x1a,0x0c,0x8a,0x6c,0xb5,0x6b,0xc8,0x31,0x86,0x4a,0xdb,0x2e,0x05,0x75,0xa3,0x62,0x45,0x75,0xbc,0xe4,0xfd,0x0e,0x5c,0x3c,0x7a,0xf7,0x3a,0x26,0xd4,0x85,0x75,0x4d,0x14,0xe9,0xfe,0x11,0x7b,0xae,0xdf,0x3d,0x19,0xf7,0x59,0x80,0x70,0x06,0xa5,0x37,0x20,0x92,0x83,0x53,0x9a,0xf2,0x14,0xf5,0xd7,0xb2,0x25,0xdc,0x7e,0x71,0xdf,0x40,0x30,0xb5,0x99,0xdb,0x70,0xf9,0x21,0x62,0x4c,0xed,0xc3,0xb7,0x34,0x92,0xda,0x3e,0x09,0xee,0x7b,0x5c,0x36,0x72,0x5e}, {0x7f,0x21,0x71,0x45,0x07,0xfc,0x5b,0x57,0x5b,0xd9,0x94,0x06,0x5d,0x67,0x79,0x37,0x33,0x1e,0x19,0xf4,0xbb,0x37,0x0a,0x9a,0xbc,0xea,0xb4,0x47,0x4c,0x10,0xf1,0x77,0x3e,0xb3,0x08,0x2f,0x06,0x39,0x93,0x7d,0xbe,0x32,0x9f,0xdf,0xe5,0x59,0x96,0x5b,0xfd,0xbd,0x9e,0x1f,0xad,0x3d,0xff,0xac,0xb7,0x49,0x73,0xcb,0x55,0x05,0xb2,0x70,0x4c,0x2c,0x11,0x55,0xc5,0x13,0x51,0xbe,0xcd,0x1f,0x88,0x9a,0x3a,0x42,0x88,0x66,0x47,0x3b,0x50,0x5e,0x85,0x77,0x66,0x44,0x4a,0x40,0x06,0x4a,0x8f,0x39,0x34,0x0e}, {0xe8,0xbd,0xce,0x3e,0xd9,0x22,0x7d,0xb6,0x07,0x2f,0x82,0x27,0x41,0xe8,0xb3,0x09,0x8d,0x6d,0x5b,0xb0,0x1f,0xa6,0x3f,0x74,0x72,0x23,0x36,0x8a,0x36,0x05,0x54,0x5e,0x28,0x19,0x4b,0x3e,0x09,0x0b,0x93,0x18,0x40,0xf6,0xf3,0x73,0x0e,0xe1,0xe3,0x7d,0x6f,0x5d,0x39,0x73,0xda,0x17,0x32,0xf4,0x3e,0x9c,0x37,0xca,0xd6,0xde,0x8a,0x6f,0x9a,0xb2,0xb7,0xfd,0x3d,0x12,0x40,0xe3,0x91,0xb2,0x1a,0xa2,0xe1,0x97,0x7b,0x48,0x9e,0x94,0xe6,0xfd,0x02,0x7d,0x96,0xf9,0x97,0xde,0xd3,0xc8,0x2e,0xe7,0x0d,0x78}, {0xbc,0xe7,0x9a,0x08,0x45,0x85,0xe2,0x0a,0x06,0x4d,0x7f,0x1c,0xcf,0xde,0x8d,0x38,0xb8,0x11,0x48,0x0a,0x51,0x15,0xac,0x38,0xe4,0x8c,0x92,0x71,0xf6,0x8b,0xb2,0x0e,0x72,0x27,0xf4,0x00,0xf3,0xea,0x1f,0x67,0xaa,0x41,0x8c,0x2a,0x2a,0xeb,0x72,0x8f,0x92,0x32,0x37,0x97,0xd7,0x7f,0xa1,0x29,0xa6,0x87,0xb5,0x32,0xad,0xc6,0xef,0x1d,0xa7,0x95,0x51,0xef,0x1a,0xbe,0x5b,0xaf,0xed,0x15,0x7b,0x91,0x77,0x12,0x8c,0x14,0x2e,0xda,0xe5,0x7a,0xfb,0xf7,0x91,0x29,0x67,0x28,0xdd,0xf8,0x1b,0x20,0x7d,0x46}, {0xad,0x4f,0xef,0x74,0x9a,0x91,0xfe,0x95,0xa2,0x08,0xa3,0xf6,0xec,0x7b,0x82,0x3a,0x01,0x7b,0xa4,0x09,0xd3,0x01,0x4e,0x96,0x97,0xc7,0xa3,0x5b,0x4f,0x3c,0xc4,0x71,0xa9,0xe7,0x7a,0x56,0xbd,0xf4,0x1e,0xbc,0xbd,0x98,0x44,0xd6,0xb2,0x4c,0x62,0x3f,0xc8,0x4e,0x1f,0x2c,0xd2,0x64,0x10,0xe4,0x01,0x40,0x38,0xba,0xa5,0xc5,0xf9,0x2e,0xcd,0x74,0x9e,0xfa,0xf6,0x6d,0xfd,0xb6,0x7a,0x26,0xaf,0xe4,0xbc,0x78,0x82,0xf1,0x0e,0x99,0xef,0xf1,0xd0,0xb3,0x55,0x82,0x93,0xf2,0xc5,0x90,0xa3,0x8c,0x75,0x5a}, {0x95,0x24,0x46,0xd9,0x10,0x27,0xb7,0xa2,0x03,0x50,0x7d,0xd5,0xd2,0xc6,0xa8,0x3a,0xca,0x87,0xb4,0xa0,0xbf,0x00,0xd4,0xe3,0xec,0x72,0xeb,0xb3,0x44,0xe2,0xba,0x2d,0x94,0xdc,0x61,0x1d,0x8b,0x91,0xe0,0x8c,0x66,0x30,0x81,0x9a,0x46,0x36,0xed,0x8d,0xd3,0xaa,0xe8,0xaf,0x29,0xa8,0xe6,0xd4,0x3f,0xd4,0x39,0xf6,0x27,0x80,0x73,0x0a,0xcc,0xe1,0xff,0x57,0x2f,0x4a,0x0f,0x98,0x43,0x98,0x83,0xe1,0x0d,0x0d,0x67,0x00,0xfd,0x15,0xfb,0x49,0x4a,0x3f,0x5c,0x10,0x9c,0xa6,0x26,0x51,0x63,0xca,0x98,0x26}, {0x78,0xba,0xb0,0x32,0x88,0x31,0x65,0xe7,0x8b,0xff,0x5c,0x92,0xf7,0x31,0x18,0x38,0xcc,0x1f,0x29,0xa0,0x91,0x1b,0xa8,0x08,0x07,0xeb,0xca,0x49,0xcc,0x3d,0xb4,0x1f,0x0e,0xd9,0x3d,0x5e,0x2f,0x70,0x3d,0x2e,0x86,0x53,0xd2,0xe4,0x18,0x09,0x3f,0x9e,0x6a,0xa9,0x4d,0x02,0xf6,0x3e,0x77,0x5e,0x32,0x33,0xfa,0x4a,0x0c,0x4b,0x00,0x3c,0x2b,0xb8,0xf4,0x06,0xac,0x46,0xa9,0x9a,0xf3,0xc4,0x06,0xa8,0xa5,0x84,0xa2,0x1c,0x87,0x47,0xcd,0xc6,0x5f,0x26,0xd3,0x3e,0x17,0xd2,0x1f,0xcd,0x01,0xfd,0x43,0x6b}, {0x44,0xc5,0x97,0x46,0x4b,0x5d,0xa7,0xc7,0xbf,0xff,0x0f,0xdf,0x48,0xf8,0xfd,0x15,0x5a,0x78,0x46,0xaa,0xeb,0xb9,0x68,0x28,0x14,0xf7,0x52,0x5b,0x10,0xd7,0x68,0x5a,0xf3,0x0e,0x76,0x3e,0x58,0x42,0xc7,0xb5,0x90,0xb9,0x0a,0xee,0xb9,0x52,0xdc,0x75,0x3f,0x92,0x2b,0x07,0xc2,0x27,0x14,0xbf,0xf0,0xd9,0xf0,0x6f,0x2d,0x0b,0x42,0x73,0x06,0x1e,0x85,0x9e,0xcb,0xf6,0x2c,0xaf,0xc4,0x38,0x22,0xc6,0x13,0x39,0x59,0x8f,0x73,0xf3,0xfb,0x99,0x96,0xb8,0x8a,0xda,0x9e,0xbc,0x34,0xea,0x2f,0x63,0xb5,0x3d}, {0xd8,0xd9,0x5d,0xf7,0x2b,0xee,0x6e,0xf4,0xa5,0x59,0x67,0x39,0xf6,0xb1,0x17,0x0d,0x73,0x72,0x9e,0x49,0x31,0xd1,0xf2,0x1b,0x13,0x5f,0xd7,0x49,0xdf,0x1a,0x32,0x04,0xd5,0x25,0x98,0x82,0xb1,0x90,0x49,0x2e,0x91,0x89,0x9a,0x3e,0x87,0xeb,0xea,0xed,0xf8,0x4a,0x70,0x4c,0x39,0x3d,0xf0,0xee,0x0e,0x2b,0xdf,0x95,0xa4,0x7e,0x19,0x59,0xae,0x5a,0xe5,0xe4,0x19,0x60,0xe1,0x04,0xe9,0x92,0x2f,0x7e,0x7a,0x43,0x7b,0xe7,0xa4,0x9a,0x15,0x6f,0xc1,0x2d,0xce,0xc7,0xc0,0x0c,0xd7,0xf4,0xc1,0xfd,0xea,0x45}, {0x2b,0xd7,0x45,0x80,0x85,0x01,0x84,0x69,0x51,0x06,0x2f,0xcf,0xa2,0xfa,0x22,0x4c,0xc6,0x2d,0x22,0x6b,0x65,0x36,0x1a,0x94,0xde,0xda,0x62,0x03,0xc8,0xeb,0x5e,0x5a,0xed,0xb1,0xcc,0xcf,0x24,0x46,0x0e,0xb6,0x95,0x03,0x5c,0xbd,0x92,0xc2,0xdb,0x59,0xc9,0x81,0x04,0xdc,0x1d,0x9d,0xa0,0x31,0x40,0xd9,0x56,0x5d,0xea,0xce,0x73,0x3f,0xc6,0x8d,0x4e,0x0a,0xd1,0xbf,0xa7,0xb7,0x39,0xb3,0xc9,0x44,0x7e,0x00,0x57,0xbe,0xfa,0xae,0x57,0x15,0x7f,0x20,0xc1,0x60,0xdb,0x18,0x62,0x26,0x91,0x88,0x05,0x26}, {0x04,0xff,0x60,0x83,0xa6,0x04,0xf7,0x59,0xf4,0xe6,0x61,0x76,0xde,0x3f,0xd9,0xc3,0x51,0x35,0x87,0x12,0x73,0x2a,0x1b,0x83,0x57,0x5d,0x61,0x4e,0x2e,0x0c,0xad,0x54,0x42,0xe5,0x76,0xc6,0x3c,0x8e,0x81,0x4c,0xad,0xcc,0xce,0x03,0x93,0x2c,0x42,0x5e,0x08,0x9f,0x12,0xb4,0xca,0xcc,0x07,0xec,0xb8,0x43,0x44,0xb2,0x10,0xfa,0xed,0x0d,0x2a,0x52,0x2b,0xb8,0xd5,0x67,0x3b,0xee,0xeb,0xc1,0xa5,0x9f,0x46,0x63,0xf1,0x36,0xd3,0x9f,0xc1,0x6e,0xf2,0xd2,0xb4,0xa5,0x08,0x94,0x7a,0xa7,0xba,0xb2,0xec,0x62}, {0x3d,0x2b,0x15,0x61,0x52,0x79,0xed,0xe5,0xd1,0xd7,0xdd,0x0e,0x7d,0x35,0x62,0x49,0x71,0x4c,0x6b,0xb9,0xd0,0xc8,0x82,0x74,0xbe,0xd8,0x66,0xa9,0x19,0xf9,0x59,0x2e,0x74,0x28,0xb6,0xaf,0x36,0x28,0x07,0x92,0xa5,0x04,0xe1,0x79,0x85,0x5e,0xcd,0x5f,0x4a,0xa1,0x30,0xc6,0xad,0x01,0xad,0x5a,0x98,0x3f,0x66,0x75,0x50,0x3d,0x91,0x61,0xda,0x31,0x32,0x1a,0x36,0x2d,0xc6,0x0d,0x70,0x02,0x20,0x94,0x32,0x58,0x47,0xfa,0xce,0x94,0x95,0x3f,0x51,0x01,0xd8,0x02,0x5c,0x5d,0xc0,0x31,0xa1,0xc2,0xdb,0x3d}, {0x4b,0xc5,0x5e,0xce,0xf9,0x0f,0xdc,0x9a,0x0d,0x13,0x2f,0x8c,0x6b,0x2a,0x9c,0x03,0x15,0x95,0xf8,0xf0,0xc7,0x07,0x80,0x02,0x6b,0xb3,0x04,0xac,0x14,0x83,0x96,0x78,0x14,0xbb,0x96,0x27,0xa2,0x57,0xaa,0xf3,0x21,0xda,0x07,0x9b,0xb7,0xba,0x3a,0x88,0x1c,0x39,0xa0,0x31,0x18,0xe2,0x4b,0xe5,0xf9,0x05,0x32,0xd8,0x38,0xfb,0xe7,0x5e,0x8e,0x6a,0x44,0x41,0xcb,0xfd,0x8d,0x53,0xf9,0x37,0x49,0x43,0xa9,0xfd,0xac,0xa5,0x78,0x8c,0x3c,0x26,0x8d,0x90,0xaf,0x46,0x09,0x0d,0xca,0x9b,0x3c,0x63,0xd0,0x61}, {0x66,0x25,0xdb,0xff,0x35,0x49,0x74,0x63,0xbb,0x68,0x0b,0x78,0x89,0x6b,0xbd,0xc5,0x03,0xec,0x3e,0x55,0x80,0x32,0x1b,0x6f,0xf5,0xd7,0xae,0x47,0xd8,0x5f,0x96,0x6e,0xdf,0x73,0xfc,0xf8,0xbc,0x28,0xa3,0xad,0xfc,0x37,0xf0,0xa6,0x5d,0x69,0x84,0xee,0x09,0xa9,0xc2,0x38,0xdb,0xb4,0x7f,0x63,0xdc,0x7b,0x06,0xf8,0x2d,0xac,0x23,0x5b,0x7b,0x52,0x80,0xee,0x53,0xb9,0xd2,0x9a,0x8d,0x6d,0xde,0xfa,0xaa,0x19,0x8f,0xe8,0xcf,0x82,0x0e,0x15,0x04,0x17,0x71,0x0e,0xdc,0xde,0x95,0xdd,0xb9,0xbb,0xb9,0x79}, {0xc2,0x26,0x31,0x6a,0x40,0x55,0xb3,0xeb,0x93,0xc3,0xc8,0x68,0xa8,0x83,0x63,0xd2,0x82,0x7a,0xb9,0xe5,0x29,0x64,0x0c,0x6c,0x47,0x21,0xfd,0xc9,0x58,0xf1,0x65,0x50,0x74,0x73,0x9f,0x8e,0xae,0x7d,0x99,0xd1,0x16,0x08,0xbb,0xcf,0xf8,0xa2,0x32,0xa0,0x0a,0x5f,0x44,0x6d,0x12,0xba,0x6c,0xcd,0x34,0xb8,0xcc,0x0a,0x46,0x11,0xa8,0x1b,0x54,0x99,0x42,0x0c,0xfb,0x69,0x81,0x70,0x67,0xcf,0x6e,0xd7,0xac,0x00,0x46,0xe1,0xba,0x45,0xe6,0x70,0x8a,0xb9,0xaa,0x2e,0xf2,0xfa,0xa4,0x58,0x9e,0xf3,0x81,0x39}, {0x93,0x0a,0x23,0x59,0x75,0x8a,0xfb,0x18,0x5d,0xf4,0xe6,0x60,0x69,0x8f,0x16,0x1d,0xb5,0x3c,0xa9,0x14,0x45,0xa9,0x85,0x3a,0xfd,0xd0,0xac,0x05,0x37,0x08,0xdc,0x38,0xde,0x6f,0xe6,0x6d,0xa5,0xdf,0x45,0xc8,0x3a,0x48,0x40,0x2c,0x00,0xa5,0x52,0xe1,0x32,0xf6,0xb4,0xc7,0x63,0xe1,0xd2,0xe9,0x65,0x1b,0xbc,0xdc,0x2e,0x45,0xf4,0x30,0x40,0x97,0x75,0xc5,0x82,0x27,0x6d,0x85,0xcc,0xbe,0x9c,0xf9,0x69,0x45,0x13,0xfa,0x71,0x4e,0xea,0xc0,0x73,0xfc,0x44,0x88,0x69,0x24,0x3f,0x59,0x1a,0x9a,0x2d,0x63}, {0xa6,0xcb,0x07,0xb8,0x15,0x6b,0xbb,0xf6,0xd7,0xf0,0x54,0xbc,0xdf,0xc7,0x23,0x18,0x0b,0x67,0x29,0x6e,0x03,0x97,0x1d,0xbb,0x57,0x4a,0xed,0x47,0x88,0xf4,0x24,0x0b,0xa7,0x84,0x0c,0xed,0x11,0xfd,0x09,0xbf,0x3a,0x69,0x9f,0x0d,0x81,0x71,0xf0,0x63,0x79,0x87,0xcf,0x57,0x2d,0x8c,0x90,0x21,0xa2,0x4b,0xf6,0x8a,0xf2,0x7d,0x5a,0x3a,0xc7,0xea,0x1b,0x51,0xbe,0xd4,0xda,0xdc,0xf2,0xcc,0x26,0xed,0x75,0x80,0x53,0xa4,0x65,0x9a,0x5f,0x00,0x9f,0xff,0x9c,0xe1,0x63,0x1f,0x48,0x75,0x44,0xf7,0xfc,0x34}, {0xca,0x67,0x97,0x78,0x4c,0xe0,0x97,0xc1,0x7d,0x46,0xd9,0x38,0xcb,0x4d,0x71,0xb8,0xa8,0x5f,0xf9,0x83,0x82,0x88,0xde,0x55,0xf7,0x63,0xfa,0x4d,0x16,0xdc,0x3b,0x3d,0x98,0xaa,0xcf,0x78,0xab,0x1d,0xbb,0xa5,0xf2,0x72,0x0b,0x19,0x67,0xa2,0xed,0x5c,0x8e,0x60,0x92,0x0a,0x11,0xc9,0x09,0x93,0xb0,0x74,0xb3,0x2f,0x04,0xa3,0x19,0x01,0x7d,0x17,0xc2,0xe8,0x9c,0xd8,0xa2,0x67,0xc1,0xd0,0x95,0x68,0xf6,0xa5,0x9d,0x66,0xb0,0xa2,0x82,0xb2,0xe5,0x98,0x65,0xf5,0x73,0x0a,0xe2,0xed,0xf1,0x88,0xc0,0x56}, {0x17,0x6e,0xa8,0x10,0x11,0x3d,0x6d,0x33,0xfa,0xb2,0x75,0x0b,0x32,0x88,0xf3,0xd7,0x88,0x29,0x07,0x25,0x76,0x33,0x15,0xf9,0x87,0x8b,0x10,0x99,0x6b,0x4c,0x67,0x09,0x02,0x8f,0xf3,0x24,0xac,0x5f,0x1b,0x58,0xbd,0x0c,0xe3,0xba,0xfe,0xe9,0x0b,0xa9,0xf0,0x92,0xcf,0x8a,0x02,0x69,0x21,0x9a,0x8f,0x03,0x59,0x83,0xa4,0x7e,0x8b,0x03,0xf8,0x6f,0x31,0x99,0x21,0xf8,0x4e,0x9f,0x4f,0x8d,0xa7,0xea,0x82,0xd2,0x49,0x2f,0x74,0x31,0xef,0x5a,0xab,0xa5,0x71,0x09,0x65,0xeb,0x69,0x59,0x02,0x31,0x5e,0x6e}, {0xfb,0x93,0xe5,0x87,0xf5,0x62,0x6c,0xb1,0x71,0x3e,0x5d,0xca,0xde,0xed,0x99,0x49,0x6d,0x3e,0xcc,0x14,0xe0,0xc1,0x91,0xb4,0xa8,0xdb,0xa8,0x89,0x47,0x11,0xf5,0x08,0x22,0x62,0x06,0x63,0x0e,0xfb,0x04,0x33,0x3f,0xba,0xac,0x87,0x89,0x06,0x35,0xfb,0xa3,0x61,0x10,0x8c,0x77,0x24,0x19,0xbd,0x20,0x86,0x83,0xd1,0x43,0xad,0x58,0x30,0xd0,0x63,0x76,0xe5,0xfd,0x0f,0x3c,0x32,0x10,0xa6,0x2e,0xa2,0x38,0xdf,0xc3,0x05,0x9a,0x4f,0x99,0xac,0xbd,0x8a,0xc7,0xbd,0x99,0xdc,0xe3,0xef,0xa4,0x9f,0x54,0x26}, {0xd6,0xf9,0x6b,0x1e,0x46,0x5a,0x1d,0x74,0x81,0xa5,0x77,0x77,0xfc,0xb3,0x05,0x23,0xd9,0xd3,0x74,0x64,0xa2,0x74,0x55,0xd4,0xff,0xe0,0x01,0x64,0xdc,0xe1,0x26,0x19,0x6e,0x66,0x3f,0xaf,0x49,0x85,0x46,0xdb,0xa5,0x0e,0x4a,0xf1,0x04,0xcf,0x7f,0xd7,0x47,0x0c,0xba,0xa4,0xf7,0x3f,0xf2,0x3d,0x85,0x3c,0xce,0x32,0xe1,0xdf,0x10,0x3a,0xa0,0xce,0x17,0xea,0x8a,0x4e,0x7f,0xe0,0xfd,0xc1,0x1f,0x3a,0x46,0x15,0xd5,0x2f,0xf1,0xc0,0xf2,0x31,0xfd,0x22,0x53,0x17,0x15,0x5d,0x1e,0x86,0x1d,0xd0,0xa1,0x1f}, {0x32,0x98,0x59,0x7d,0x94,0x55,0x80,0xcc,0x20,0x55,0xf1,0x37,0xda,0x56,0x46,0x1e,0x20,0x93,0x05,0x4e,0x74,0xf7,0xf6,0x99,0x33,0xcf,0x75,0x6a,0xbc,0x63,0x35,0x77,0xab,0x94,0xdf,0xd1,0x00,0xac,0xdc,0x38,0xe9,0x0d,0x08,0xd1,0xdd,0x2b,0x71,0x2e,0x62,0xe2,0xd5,0xfd,0x3e,0xe9,0x13,0x7f,0xe5,0x01,0x9a,0xee,0x18,0xed,0xfc,0x73,0xb3,0x9c,0x13,0x63,0x08,0xe9,0xb1,0x06,0xcd,0x3e,0xa0,0xc5,0x67,0xda,0x93,0xa4,0x32,0x89,0x63,0xad,0xc8,0xce,0x77,0x8d,0x44,0x4f,0x86,0x1b,0x70,0x6b,0x42,0x1f}, {0x01,0x1c,0x91,0x41,0x4c,0x26,0xc9,0xef,0x25,0x2c,0xa2,0x17,0xb8,0xb7,0xa3,0xf1,0x47,0x14,0x0f,0xf3,0x6b,0xda,0x75,0x58,0x90,0xb0,0x31,0x1d,0x27,0xf5,0x1a,0x4e,0x52,0x25,0xa1,0x91,0xc8,0x35,0x7e,0xf1,0x76,0x9c,0x5e,0x57,0x53,0x81,0x6b,0xb7,0x3e,0x72,0x9b,0x0d,0x6f,0x40,0x83,0xfa,0x38,0xe4,0xa7,0x3f,0x1b,0xbb,0x76,0x0b,0x9b,0x93,0x92,0x7f,0xf9,0xc1,0xb8,0x08,0x6e,0xab,0x44,0xd4,0xcb,0x71,0x67,0xbe,0x17,0x80,0xbb,0x99,0x63,0x64,0xe5,0x22,0x55,0xa9,0x72,0xb7,0x1e,0xd6,0x6d,0x7b}, {0x92,0x3d,0xf3,0x50,0xe8,0xc1,0xad,0xb7,0xcf,0xd5,0x8c,0x60,0x4f,0xfa,0x98,0x79,0xdb,0x5b,0xfc,0x8d,0xbd,0x2d,0x96,0xad,0x4f,0x2f,0x1d,0xaf,0xce,0x9b,0x3e,0x70,0xc7,0xd2,0x01,0xab,0xf9,0xab,0x30,0x57,0x18,0x3b,0x14,0x40,0xdc,0x76,0xfb,0x16,0x81,0xb2,0xcb,0xa0,0x65,0xbe,0x6c,0x86,0xfe,0x6a,0xff,0x9b,0x65,0x9b,0xfa,0x53,0x55,0x54,0x88,0x94,0xe9,0xc8,0x14,0x6c,0xe5,0xd4,0xae,0x65,0x66,0x5d,0x3a,0x84,0xf1,0x5a,0xd6,0xbc,0x3e,0xb7,0x1b,0x18,0x50,0x1f,0xc6,0xc4,0xe5,0x93,0x8d,0x39}, {0xf3,0x48,0xe2,0x33,0x67,0xd1,0x4b,0x1c,0x5f,0x0a,0xbf,0x15,0x87,0x12,0x9e,0xbd,0x76,0x03,0x0b,0xa1,0xf0,0x8c,0x3f,0xd4,0x13,0x1b,0x19,0xdf,0x5d,0x9b,0xb0,0x53,0xf2,0xe3,0xe7,0xd2,0x60,0x7c,0x87,0xc3,0xb1,0x8b,0x82,0x30,0xa0,0xaa,0x34,0x3b,0x38,0xf1,0x9e,0x73,0xe7,0x26,0x3e,0x28,0x77,0x05,0xc3,0x02,0x90,0x9c,0x9c,0x69,0xcc,0xf1,0x46,0x59,0x23,0xa7,0x06,0xf3,0x7d,0xd9,0xe5,0xcc,0xb5,0x18,0x17,0x92,0x75,0xe9,0xb4,0x81,0x47,0xd2,0xcd,0x28,0x07,0xd9,0xcd,0x6f,0x0c,0xf3,0xca,0x51}, {0x0a,0xe0,0x74,0x76,0x42,0xa7,0x0b,0xa6,0xf3,0x7b,0x7a,0xa1,0x70,0x85,0x0e,0x63,0xcc,0x24,0x33,0xcf,0x3d,0x56,0x58,0x37,0xaa,0xfd,0x83,0x23,0x29,0xaa,0x04,0x55,0xc7,0x54,0xac,0x18,0x9a,0xf9,0x7a,0x73,0x0f,0xb3,0x1c,0xc5,0xdc,0x78,0x33,0x90,0xc7,0x0c,0xe1,0x4c,0x33,0xbc,0x89,0x2b,0x9a,0xe9,0xf8,0x89,0xc1,0x29,0xae,0x12,0xcf,0x01,0x0d,0x1f,0xcb,0xc0,0x9e,0xa9,0xae,0xf7,0x34,0x3a,0xcc,0xef,0xd1,0x0d,0x22,0x4e,0x9c,0xd0,0x21,0x75,0xca,0x55,0xea,0xa5,0xeb,0x58,0xe9,0x4f,0xd1,0x5f}, {0x2c,0xab,0x45,0x28,0xdf,0x2d,0xdc,0xb5,0x93,0xe9,0x7f,0x0a,0xb1,0x91,0x94,0x06,0x46,0xe3,0x02,0x40,0xd6,0xf3,0xaa,0x4d,0xd1,0x74,0x64,0x58,0x6e,0xf2,0x3f,0x09,0x8e,0xcb,0x93,0xbf,0x5e,0xfe,0x42,0x3c,0x5f,0x56,0xd4,0x36,0x51,0xa8,0xdf,0xbe,0xe8,0x20,0x42,0x88,0x9e,0x85,0xf0,0xe0,0x28,0xd1,0x25,0x07,0x96,0x3f,0xd7,0x7d,0x29,0x98,0x05,0x68,0xfe,0x24,0x0d,0xb1,0xe5,0x23,0xaf,0xdb,0x72,0x06,0x73,0x75,0x29,0xac,0x57,0xb4,0x3a,0x25,0x67,0x13,0xa4,0x70,0xb4,0x86,0xbc,0xbc,0x59,0x2f}, {0x5f,0x13,0x17,0x99,0x42,0x7d,0x84,0x83,0xd7,0x03,0x7d,0x56,0x1f,0x91,0x1b,0xad,0xd1,0xaa,0x77,0xbe,0xd9,0x48,0x77,0x7e,0x4a,0xaf,0x51,0x2e,0x2e,0xb4,0x58,0x54,0x01,0xc3,0x91,0xb6,0x60,0xd5,0x41,0x70,0x1e,0xe7,0xd7,0xad,0x3f,0x1b,0x20,0x85,0x85,0x55,0x33,0x11,0x63,0xe1,0xc2,0x16,0xb1,0x28,0x08,0x01,0x3d,0x5e,0xa5,0x2a,0x4f,0x44,0x07,0x0c,0xe6,0x92,0x51,0xed,0x10,0x1d,0x42,0x74,0x2d,0x4e,0xc5,0x42,0x64,0xc8,0xb5,0xfd,0x82,0x4c,0x2b,0x35,0x64,0x86,0x76,0x8a,0x4a,0x00,0xe9,0x13}, {0xdb,0xce,0x2f,0x83,0x45,0x88,0x9d,0x73,0x63,0xf8,0x6b,0xae,0xc9,0xd6,0x38,0xfa,0xf7,0xfe,0x4f,0xb7,0xca,0x0d,0xbc,0x32,0x5e,0xe4,0xbc,0x14,0x88,0x7e,0x93,0x73,0x7f,0x87,0x3b,0x19,0xc9,0x00,0x2e,0xbb,0x6b,0x50,0xdc,0xe0,0x90,0xa8,0xe3,0xec,0x9f,0x64,0xde,0x36,0xc0,0xb7,0xf3,0xec,0x1a,0x9e,0xde,0x98,0x08,0x04,0x46,0x5f,0x8d,0xf4,0x7b,0x29,0x16,0x71,0x03,0xb9,0x34,0x68,0xf0,0xd4,0x22,0x3b,0xd1,0xa9,0xc6,0xbd,0x96,0x46,0x57,0x15,0x97,0xe1,0x35,0xe8,0xd5,0x91,0xe8,0xa4,0xf8,0x2c}, {0x67,0x0f,0x11,0x07,0x87,0xfd,0x93,0x6d,0x49,0xb5,0x38,0x7c,0xd3,0x09,0x4c,0xdd,0x86,0x6a,0x73,0xc2,0x4c,0x6a,0xb1,0x7c,0x09,0x2a,0x25,0x58,0x6e,0xbd,0x49,0x20,0xa2,0x6b,0xd0,0x17,0x7e,0x48,0xb5,0x2c,0x6b,0x19,0x50,0x39,0x1c,0x38,0xd2,0x24,0x30,0x8a,0x97,0x85,0x81,0x9c,0x65,0xd7,0xf6,0xa4,0xd6,0x91,0x28,0x7f,0x6f,0x7a,0x49,0xef,0x9a,0x6a,0x8d,0xfd,0x09,0x7d,0x0b,0xb9,0x3d,0x5b,0xbe,0x60,0xee,0xf0,0xd4,0xbf,0x9e,0x51,0x2c,0xb5,0x21,0x4c,0x1d,0x94,0x45,0xc5,0xdf,0xaa,0x11,0x60}, {0x3c,0xf8,0x95,0xcf,0x6d,0x92,0x67,0x5f,0x71,0x90,0x28,0x71,0x61,0x85,0x7e,0x7c,0x5b,0x7a,0x8f,0x99,0xf3,0xe7,0xa1,0xd6,0xe0,0xf9,0x62,0x0b,0x1b,0xcc,0xc5,0x6f,0x90,0xf8,0xcb,0x02,0xc8,0xd0,0xde,0x63,0xaa,0x6a,0xff,0x0d,0xca,0x98,0xd0,0xfb,0x99,0xed,0xb6,0xb9,0xfd,0x0a,0x4d,0x62,0x1e,0x0b,0x34,0x79,0xb7,0x18,0xce,0x69,0xcb,0x79,0x98,0xb2,0x28,0x55,0xef,0xd1,0x92,0x90,0x7e,0xd4,0x3c,0xae,0x1a,0xdd,0x52,0x23,0x9f,0x18,0x42,0x04,0x7e,0x12,0xf1,0x01,0x71,0xe5,0x3a,0x6b,0x59,0x15}, {0xa2,0x79,0x91,0x3f,0xd2,0x39,0x27,0x46,0xcf,0xdd,0xd6,0x97,0x31,0x12,0x83,0xff,0x8a,0x14,0xf2,0x53,0xb5,0xde,0x07,0x13,0xda,0x4d,0x5f,0x7b,0x68,0x37,0x22,0x0d,0xca,0x24,0x51,0x7e,0x16,0x31,0xff,0x09,0xdf,0x45,0xc7,0xd9,0x8b,0x15,0xe4,0x0b,0xe5,0x56,0xf5,0x7e,0x22,0x7d,0x2b,0x29,0x38,0xd1,0xb6,0xaf,0x41,0xe2,0xa4,0x3a,0xf5,0x05,0x33,0x2a,0xbf,0x38,0xc1,0x2c,0xc3,0x26,0xe9,0xa2,0x8f,0x3f,0x58,0x48,0xeb,0xd2,0x49,0x55,0xa2,0xb1,0x3a,0x08,0x6c,0xa3,0x87,0x46,0x6e,0xaa,0xfc,0x32}, {0xf5,0x9a,0x7d,0xc5,0x8d,0x6e,0xc5,0x7b,0xf2,0xbd,0xf0,0x9d,0xed,0xd2,0x0b,0x3e,0xa3,0xe4,0xef,0x22,0xde,0x14,0xc0,0xaa,0x5c,0x6a,0xbd,0xfe,0xce,0xe9,0x27,0x46,0xdf,0xcc,0x87,0x27,0x73,0xa4,0x07,0x32,0xf8,0xe3,0x13,0xf2,0x08,0x19,0xe3,0x17,0x4e,0x96,0x0d,0xf6,0xd7,0xec,0xb2,0xd5,0xe9,0x0b,0x60,0xc2,0x36,0x63,0x6f,0x74,0x1c,0x97,0x6c,0xab,0x45,0xf3,0x4a,0x3f,0x1f,0x73,0x43,0x99,0x72,0xeb,0x88,0xe2,0x6d,0x18,0x44,0x03,0x8a,0x6a,0x59,0x33,0x93,0x62,0xd6,0x7e,0x00,0x17,0x49,0x7b}, {0x64,0xb0,0x84,0xab,0x5c,0xfb,0x85,0x2d,0x14,0xbc,0xf3,0x89,0xd2,0x10,0x78,0x49,0x0c,0xce,0x15,0x7b,0x44,0xdc,0x6a,0x47,0x7b,0xfd,0x44,0xf8,0x76,0xa3,0x2b,0x12,0xdd,0xa2,0x53,0xdd,0x28,0x1b,0x34,0x54,0x3f,0xfc,0x42,0xdf,0x5b,0x90,0x17,0xaa,0xf4,0xf8,0xd2,0x4d,0xd9,0x92,0xf5,0x0f,0x7d,0xd3,0x8c,0xe0,0x0f,0x62,0x03,0x1d,0x54,0xe5,0xb4,0xa2,0xcd,0x32,0x02,0xc2,0x7f,0x18,0x5d,0x11,0x42,0xfd,0xd0,0x9e,0xd9,0x79,0xd4,0x7d,0xbe,0xb4,0xab,0x2e,0x4c,0xec,0x68,0x2b,0xf5,0x0b,0xc7,0x02}, {0xbb,0x2f,0x0b,0x5d,0x4b,0xec,0x87,0xa2,0xca,0x82,0x48,0x07,0x90,0x57,0x5c,0x41,0x5c,0x81,0xd0,0xc1,0x1e,0xa6,0x44,0xe0,0xe0,0xf5,0x9e,0x40,0x0a,0x4f,0x33,0x26,0xe1,0x72,0x8d,0x45,0xbf,0x32,0xe5,0xac,0xb5,0x3c,0xb7,0x7c,0xe0,0x68,0xe7,0x5b,0xe7,0xbd,0x8b,0xee,0x94,0x7d,0xcf,0x56,0x03,0x3a,0xb4,0xfe,0xe3,0x97,0x06,0x6b,0xc0,0xa3,0x62,0xdf,0x4a,0xf0,0xc8,0xb6,0x5d,0xa4,0x6d,0x07,0xef,0x00,0xf0,0x3e,0xa9,0xd2,0xf0,0x49,0x58,0xb9,0x9c,0x9c,0xae,0x2f,0x1b,0x44,0x43,0x7f,0xc3,0x1c}, {0x4f,0x32,0xc7,0x5c,0x5a,0x56,0x8f,0x50,0x22,0xa9,0x06,0xe5,0xc0,0xc4,0x61,0xd0,0x19,0xac,0x45,0x5c,0xdb,0xab,0x18,0xfb,0x4a,0x31,0x80,0x03,0xc1,0x09,0x68,0x6c,0xb9,0xae,0xce,0xc9,0xf1,0x56,0x66,0xd7,0x6a,0x65,0xe5,0x18,0xf8,0x15,0x5b,0x1c,0x34,0x23,0x4c,0x84,0x32,0x28,0xe7,0x26,0x38,0x68,0x19,0x2f,0x77,0x6f,0x34,0x3a,0xc8,0x6a,0xda,0xe2,0x12,0x51,0xd5,0xd2,0xed,0x51,0xe8,0xb1,0x31,0x03,0xbd,0xe9,0x62,0x72,0xc6,0x8e,0xdd,0x46,0x07,0x96,0xd0,0xc5,0xf7,0x6e,0x9f,0x1b,0x91,0x05}, {0xbb,0x0e,0xdf,0xf5,0x83,0x99,0x33,0xc1,0xac,0x4c,0x2c,0x51,0x8f,0x75,0xf3,0xc0,0xe1,0x98,0xb3,0x0b,0x0a,0x13,0xf1,0x2c,0x62,0x0c,0x27,0xaa,0xf9,0xec,0x3c,0x6b,0xef,0xea,0x2e,0x51,0xf3,0xac,0x49,0x53,0x49,0xcb,0xc1,0x1c,0xd3,0x41,0xc1,0x20,0x8d,0x68,0x9a,0xa9,0x07,0x0c,0x18,0x24,0x17,0x2d,0x4b,0xc6,0xd1,0xf9,0x5e,0x55,0x08,0xbd,0x73,0x3b,0xba,0x70,0xa7,0x36,0x0c,0xbf,0xaf,0xa3,0x08,0xef,0x4a,0x62,0xf2,0x46,0x09,0xb4,0x98,0xff,0x37,0x57,0x9d,0x74,0x81,0x33,0xe1,0x4d,0x5f,0x67}, {0xfc,0x82,0x17,0x6b,0x03,0x52,0x2c,0x0e,0xb4,0x83,0xad,0x6c,0x81,0x6c,0x81,0x64,0x3e,0x07,0x64,0x69,0xd9,0xbd,0xdc,0xd0,0x20,0xc5,0x64,0x01,0xf7,0x9d,0xd9,0x13,0x1d,0xb3,0xda,0x3b,0xd9,0xf6,0x2f,0xa1,0xfe,0x2d,0x65,0x9d,0x0f,0xd8,0x25,0x07,0x87,0x94,0xbe,0x9a,0xf3,0x4f,0x9c,0x01,0x43,0x3c,0xcd,0x82,0xb8,0x50,0xf4,0x60,0xca,0xc0,0xe5,0x21,0xc3,0x5e,0x4b,0x01,0xa2,0xbf,0x19,0xd7,0xc9,0x69,0xcb,0x4f,0xa0,0x23,0x00,0x75,0x18,0x1c,0x5f,0x4e,0x80,0xac,0xed,0x55,0x9e,0xde,0x06,0x1c}, {0xe2,0xc4,0x3e,0xa3,0xd6,0x7a,0x0f,0x99,0x8e,0xe0,0x2e,0xbe,0x38,0xf9,0x08,0x66,0x15,0x45,0x28,0x63,0xc5,0x43,0xa1,0x9c,0x0d,0xb6,0x2d,0xec,0x1f,0x8a,0xf3,0x4c,0xaa,0x69,0x6d,0xff,0x40,0x2b,0xd5,0xff,0xbb,0x49,0x40,0xdc,0x18,0x0b,0x53,0x34,0x97,0x98,0x4d,0xa3,0x2f,0x5c,0x4a,0x5e,0x2d,0xba,0x32,0x7d,0x8e,0x6f,0x09,0x78,0xe7,0x5c,0xfa,0x0d,0x65,0xaa,0xaa,0xa0,0x8c,0x47,0xb5,0x48,0x2a,0x9e,0xc4,0xf9,0x5b,0x72,0x03,0x70,0x7d,0xcc,0x09,0x4f,0xbe,0x1a,0x09,0x26,0x3a,0xad,0x3c,0x37}, {0x7c,0xf5,0xc9,0x82,0x4d,0x63,0x94,0xb2,0x36,0x45,0x93,0x24,0xe1,0xfd,0xcb,0x1f,0x5a,0xdb,0x8c,0x41,0xb3,0x4d,0x9c,0x9e,0xfc,0x19,0x44,0x45,0xd9,0xf3,0x40,0x00,0xad,0xbb,0xdd,0x89,0xfb,0xa8,0xbe,0xf1,0xcb,0xae,0xae,0x61,0xbc,0x2c,0xcb,0x3b,0x9d,0x8d,0x9b,0x1f,0xbb,0xa7,0x58,0x8f,0x86,0xa6,0x12,0x51,0xda,0x7e,0x54,0x21,0xd3,0x86,0x59,0xfd,0x39,0xe9,0xfd,0xde,0x0c,0x38,0x0a,0x51,0x89,0x2c,0x27,0xf4,0xb9,0x19,0x31,0xbb,0x07,0xa4,0x2b,0xb7,0xf4,0x4d,0x25,0x4a,0x33,0x0a,0x55,0x63}, {0x37,0xcf,0x69,0xb5,0xed,0xd6,0x07,0x65,0xe1,0x2e,0xa5,0x0c,0xb0,0x29,0x84,0x17,0x5d,0xd6,0x6b,0xeb,0x90,0x00,0x7c,0xea,0x51,0x8f,0xf7,0xda,0xc7,0x62,0xea,0x3e,0x49,0x7b,0x54,0x72,0x45,0x58,0xba,0x9b,0xe0,0x08,0xc4,0xe2,0xfa,0xc6,0x05,0xf3,0x8d,0xf1,0x34,0xc7,0x69,0xfa,0xe8,0x60,0x7a,0x76,0x7d,0xaa,0xaf,0x2b,0xa9,0x39,0x4e,0x27,0x93,0xe6,0x13,0xc7,0x24,0x9d,0x75,0xd3,0xdb,0x68,0x77,0x85,0x63,0x5f,0x9a,0xb3,0x8a,0xeb,0x60,0x55,0x52,0x70,0xcd,0xc4,0xc9,0x65,0x06,0x6a,0x43,0x68}, {0x27,0x3f,0x2f,0x20,0xe8,0x35,0x02,0xbc,0xb0,0x75,0xf9,0x64,0xe2,0x00,0x5c,0xc7,0x16,0x24,0x8c,0xa3,0xd5,0xe9,0xa4,0x91,0xf9,0x89,0xb7,0x8a,0xf6,0xe7,0xb6,0x17,0x7c,0x10,0x20,0xe8,0x17,0xd3,0x56,0x1e,0x65,0xe9,0x0a,0x84,0x44,0x68,0x26,0xc5,0x7a,0xfc,0x0f,0x32,0xc6,0xa1,0xe0,0xc1,0x72,0x14,0x61,0x91,0x9c,0x66,0x73,0x53,0x57,0x52,0x0e,0x9a,0xab,0x14,0x28,0x5d,0xfc,0xb3,0xca,0xc9,0x84,0x20,0x8f,0x90,0xca,0x1e,0x2d,0x5b,0x88,0xf5,0xca,0xaf,0x11,0x7d,0xf8,0x78,0xa6,0xb5,0xb4,0x1c}, {0x6c,0xfc,0x4a,0x39,0x6b,0xc0,0x64,0xb6,0xb1,0x5f,0xda,0x98,0x24,0xde,0x88,0x0c,0x34,0xd8,0xca,0x4b,0x16,0x03,0x8d,0x4f,0xa2,0x34,0x74,0xde,0x78,0xca,0x0b,0x33,0xe7,0x07,0xa0,0xa2,0x62,0xaa,0x74,0x6b,0xb1,0xc7,0x71,0xf0,0xb0,0xe0,0x11,0xf3,0x23,0xe2,0x0b,0x00,0x38,0xe4,0x07,0x57,0xac,0x6e,0xef,0x82,0x2d,0xfd,0xc0,0x2d,0x4e,0x74,0x19,0x11,0x84,0xff,0x2e,0x98,0x24,0x47,0x07,0x2b,0x96,0x5e,0x69,0xf9,0xfb,0x53,0xc9,0xbf,0x4f,0xc1,0x8a,0xc5,0xf5,0x1c,0x9f,0x36,0x1b,0xbe,0x31,0x3c}, {0xee,0x8a,0x94,0x08,0x4d,0x86,0xf4,0xb0,0x6f,0x1c,0xba,0x91,0xee,0x19,0xdc,0x07,0x58,0xa1,0xac,0xa6,0xae,0xcd,0x75,0x79,0xbb,0xd4,0x62,0x42,0x13,0x61,0x0b,0x33,0x72,0x42,0xcb,0xf9,0x93,0xbc,0x68,0xc1,0x98,0xdb,0xce,0xc7,0x1f,0x71,0xb8,0xae,0x7a,0x8d,0xac,0x34,0xaa,0x52,0x0e,0x7f,0xbb,0x55,0x7d,0x7e,0x09,0xc1,0xce,0x41,0x8a,0x80,0x6d,0xa2,0xd7,0x19,0x96,0xf7,0x6d,0x15,0x9e,0x1d,0x9e,0xd4,0x1f,0xbb,0x27,0xdf,0xa1,0xdb,0x6c,0xc3,0xd7,0x73,0x7d,0x77,0x28,0x1f,0xd9,0x4c,0xb4,0x26}, {0x75,0x74,0x38,0x8f,0x47,0x48,0xf0,0x51,0x3c,0xcb,0xbe,0x9c,0xf4,0xbc,0x5d,0xb2,0x55,0x20,0x9f,0xd9,0x44,0x12,0xab,0x9a,0xd6,0xa5,0x10,0x1c,0x6c,0x9e,0x70,0x2c,0x83,0x03,0x73,0x62,0x93,0xf2,0xb7,0xe1,0x2c,0x8a,0xca,0xeb,0xff,0x79,0x52,0x4b,0x14,0x13,0xd4,0xbf,0x8a,0x77,0xfc,0xda,0x0f,0x61,0x72,0x9c,0x14,0x10,0xeb,0x7d,0x7a,0xee,0x66,0x87,0x6a,0xaf,0x62,0xcb,0x0e,0xcd,0x53,0x55,0x04,0xec,0xcb,0x66,0xb5,0xe4,0x0b,0x0f,0x38,0x01,0x80,0x58,0xea,0xe2,0x2c,0xf6,0x9f,0x8e,0xe6,0x08}, {0xad,0x30,0xc1,0x4b,0x0a,0x50,0xad,0x34,0x9c,0xd4,0x0b,0x3d,0x49,0xdb,0x38,0x8d,0xbe,0x89,0x0a,0x50,0x98,0x3d,0x5c,0xa2,0x09,0x3b,0xba,0xee,0x87,0x3f,0x1f,0x2f,0xf9,0xf2,0xb8,0x0a,0xd5,0x09,0x2d,0x2f,0xdf,0x23,0x59,0xc5,0x8d,0x21,0xb9,0xac,0xb9,0x6c,0x76,0x73,0x26,0x34,0x8f,0x4a,0xf5,0x19,0xf7,0x38,0xd7,0x3b,0xb1,0x4c,0x4a,0xb6,0x15,0xe5,0x75,0x8c,0x84,0xf7,0x38,0x90,0x4a,0xdb,0xba,0x01,0x95,0xa5,0x50,0x1b,0x75,0x3f,0x3f,0x31,0x0d,0xc2,0xe8,0x2e,0xae,0xc0,0x53,0xe3,0xa1,0x19}, {0xc3,0x05,0xfa,0xba,0x60,0x75,0x1c,0x7d,0x61,0x5e,0xe5,0xc6,0xa0,0xa0,0xe1,0xb3,0x73,0x64,0xd6,0xc0,0x18,0x97,0x52,0xe3,0x86,0x34,0x0c,0xc2,0x11,0x6b,0x54,0x41,0xbd,0xbd,0x96,0xd5,0xcd,0x72,0x21,0xb4,0x40,0xfc,0xee,0x98,0x43,0x45,0xe0,0x93,0xb5,0x09,0x41,0xb4,0x47,0x53,0xb1,0x9f,0x34,0xae,0x66,0x02,0x99,0xd3,0x6b,0x73,0xb4,0xb3,0x34,0x93,0x50,0x2d,0x53,0x85,0x73,0x65,0x81,0x60,0x4b,0x11,0xfd,0x46,0x75,0x83,0x5c,0x42,0x30,0x5f,0x5f,0xcc,0x5c,0xab,0x7f,0xb8,0xa2,0x95,0x22,0x41}, {0xe9,0xd6,0x7e,0xf5,0x88,0x9b,0xc9,0x19,0x25,0xc8,0xf8,0x6d,0x26,0xcb,0x93,0x53,0x73,0xd2,0x0a,0xb3,0x13,0x32,0xee,0x5c,0x34,0x2e,0x2d,0xb5,0xeb,0x53,0xe1,0x14,0xc6,0xea,0x93,0xe2,0x61,0x52,0x65,0x2e,0xdb,0xac,0x33,0x21,0x03,0x92,0x5a,0x84,0x6b,0x99,0x00,0x79,0xcb,0x75,0x09,0x46,0x80,0xdd,0x5a,0x19,0x8d,0xbb,0x60,0x07,0x8a,0x81,0xe6,0xcd,0x17,0x1a,0x3e,0x41,0x84,0xa0,0x69,0xed,0xa9,0x6d,0x15,0x57,0xb1,0xcc,0xca,0x46,0x8f,0x26,0xbf,0x2c,0xf2,0xc5,0x3a,0xc3,0x9b,0xbe,0x34,0x6b}, {0xb2,0xc0,0x78,0x3a,0x64,0x2f,0xdf,0xf3,0x7c,0x02,0x2e,0xf2,0x1e,0x97,0x3e,0x4c,0xa3,0xb5,0xc1,0x49,0x5e,0x1c,0x7d,0xec,0x2d,0xdd,0x22,0x09,0x8f,0xc1,0x12,0x20,0xd3,0xf2,0x71,0x65,0x65,0x69,0xfc,0x11,0x7a,0x73,0x0e,0x53,0x45,0xe8,0xc9,0xc6,0x35,0x50,0xfe,0xd4,0xa2,0xe7,0x3a,0xe3,0x0b,0xd3,0x6d,0x2e,0xb6,0xc7,0xb9,0x01,0x29,0x9d,0xc8,0x5a,0xe5,0x55,0x0b,0x88,0x63,0xa7,0xa0,0x45,0x1f,0x24,0x83,0x14,0x1f,0x6c,0xe7,0xc2,0xdf,0xef,0x36,0x3d,0xe8,0xad,0x4b,0x4e,0x78,0x5b,0xaf,0x08}, {0x33,0x25,0x1f,0x88,0xdc,0x99,0x34,0x28,0xb6,0x23,0x93,0x77,0xda,0x25,0x05,0x9d,0xf4,0x41,0x34,0x67,0xfb,0xdd,0x7a,0x89,0x8d,0x16,0x3a,0x16,0x71,0x9d,0xb7,0x32,0x4b,0x2c,0xcc,0x89,0xd2,0x14,0x73,0xe2,0x8d,0x17,0x87,0xa2,0x11,0xbd,0xe4,0x4b,0xce,0x64,0x33,0xfa,0xd6,0x28,0xd5,0x18,0x6e,0x82,0xd9,0xaf,0xd5,0xc1,0x23,0x64,0x6a,0xb3,0xfc,0xed,0xd9,0xf8,0x85,0xcc,0xf9,0xe5,0x46,0x37,0x8f,0xc2,0xbc,0x22,0xcd,0xd3,0xe5,0xf9,0x38,0xe3,0x9d,0xe4,0xcc,0x2d,0x3e,0xc1,0xfb,0x5e,0x0a,0x48}, {0x71,0x20,0x62,0x01,0x0b,0xe7,0x51,0x0b,0xc5,0xaf,0x1d,0x8b,0xcf,0x05,0xb5,0x06,0xcd,0xab,0x5a,0xef,0x61,0xb0,0x6b,0x2c,0x31,0xbf,0xb7,0x0c,0x60,0x27,0xaa,0x47,0x1f,0x22,0xce,0x42,0xe4,0x4c,0x61,0xb6,0x28,0x39,0x05,0x4c,0xcc,0x9d,0x19,0x6e,0x03,0xbe,0x1c,0xdc,0xa4,0xb4,0x3f,0x66,0x06,0x8e,0x1c,0x69,0x47,0x1d,0xb3,0x24,0xc3,0xf8,0x15,0xc0,0xed,0x1e,0x54,0x2a,0x7c,0x3f,0x69,0x7c,0x7e,0xfe,0xa4,0x11,0xd6,0x78,0xa2,0x4e,0x13,0x66,0xaf,0xf0,0x94,0xa0,0xdd,0x14,0x5d,0x58,0x5b,0x54}, {0x0f,0x3a,0xd4,0xa0,0x5e,0x27,0xbf,0x67,0xbe,0xee,0x9b,0x08,0x34,0x8e,0xe6,0xad,0x2e,0xe7,0x79,0xd4,0x4c,0x13,0x89,0x42,0x54,0x54,0xba,0x32,0xc3,0xf9,0x62,0x0f,0xe1,0x21,0xb3,0xe3,0xd0,0xe4,0x04,0x62,0x95,0x1e,0xff,0x28,0x7a,0x63,0xaa,0x3b,0x9e,0xbd,0x99,0x5b,0xfd,0xcf,0x0c,0x0b,0x71,0xd0,0xc8,0x64,0x3e,0xdc,0x22,0x4d,0x39,0x5f,0x3b,0xd6,0x89,0x65,0xb4,0xfc,0x61,0xcf,0xcb,0x57,0x3f,0x6a,0xae,0x5c,0x05,0xfa,0x3a,0x95,0xd2,0xc2,0xba,0xfe,0x36,0x14,0x37,0x36,0x1a,0xa0,0x0f,0x1c}, {0xff,0x3d,0x94,0x22,0xb6,0x04,0xc6,0xd2,0xa0,0xb3,0xcf,0x44,0xce,0xbe,0x8c,0xbc,0x78,0x86,0x80,0x97,0xf3,0x4f,0x25,0x5d,0xbf,0xa6,0x1c,0x3b,0x4f,0x61,0xa3,0x0f,0x50,0x6a,0x93,0x8c,0x0e,0x2b,0x08,0x69,0xb6,0xc5,0xda,0xc1,0x35,0xa0,0xc9,0xf9,0x34,0xb6,0xdf,0xc4,0x54,0x3e,0xb7,0x6f,0x40,0xc1,0x2b,0x1d,0x9b,0x41,0x05,0x40,0xf0,0x82,0xbe,0xb9,0xbd,0xfe,0x03,0xa0,0x90,0xac,0x44,0x3a,0xaf,0xc1,0x89,0x20,0x8e,0xfa,0x54,0x19,0x91,0x9f,0x49,0xf8,0x42,0xab,0x40,0xef,0x8a,0x21,0xba,0x1f}, {0x3e,0xf5,0xc8,0xfa,0x48,0x94,0x54,0xab,0x41,0x37,0xa6,0x7b,0x9a,0xe8,0xf6,0x81,0x01,0x5e,0x2b,0x6c,0x7d,0x6c,0xfd,0x74,0x42,0x6e,0xc8,0xa8,0xca,0x3a,0x2e,0x39,0x94,0x01,0x7b,0x3e,0x04,0x57,0x3e,0x4f,0x7f,0xaf,0xda,0x08,0xee,0x3e,0x1d,0xa8,0xf1,0xde,0xdc,0x99,0xab,0xc6,0x39,0xc8,0xd5,0x61,0x77,0xff,0x13,0x5d,0x53,0x6c,0xaf,0x35,0x8a,0x3e,0xe9,0x34,0xbd,0x4c,0x16,0xe8,0x87,0x58,0x44,0x81,0x07,0x2e,0xab,0xb0,0x9a,0xf2,0x76,0x9c,0x31,0x19,0x3b,0xc1,0x0a,0xd5,0xe4,0x7f,0xe1,0x25}, {0x76,0xf6,0x04,0x1e,0xd7,0x9b,0x28,0x0a,0x95,0x0f,0x42,0xd6,0x52,0x1c,0x8e,0x20,0xab,0x1f,0x69,0x34,0xb0,0xd8,0x86,0x51,0x51,0xb3,0x9f,0x2a,0x44,0x51,0x57,0x25,0xa7,0x21,0xf1,0x76,0xf5,0x7f,0x5f,0x91,0xe3,0x87,0xcd,0x2f,0x27,0x32,0x4a,0xc3,0x26,0xe5,0x1b,0x4d,0xde,0x2f,0xba,0xcc,0x9b,0x89,0x69,0x89,0x8f,0x82,0xba,0x6b,0x01,0x39,0xfe,0x90,0x66,0xbc,0xd1,0xe2,0xd5,0x7a,0x99,0xa0,0x18,0x4a,0xb5,0x4c,0xd4,0x60,0x84,0xaf,0x14,0x69,0x1d,0x97,0xe4,0x7b,0x6b,0x7f,0x4f,0x50,0x9d,0x55}, {0xd5,0x54,0xeb,0xb3,0x78,0x83,0x73,0xa7,0x7c,0x3c,0x55,0xa5,0x66,0xd3,0x69,0x1d,0xba,0x00,0x28,0xf9,0x62,0xcf,0x26,0x0a,0x17,0x32,0x7e,0x80,0xd5,0x12,0xab,0x01,0xfd,0x66,0xd2,0xf6,0xe7,0x91,0x48,0x9c,0x1b,0x78,0x07,0x03,0x9b,0xa1,0x44,0x07,0x3b,0xe2,0x61,0x60,0x1d,0x8f,0x38,0x88,0x0e,0xd5,0x4b,0x35,0xa3,0xa6,0x3e,0x12,0x96,0x2d,0xe3,0x41,0x90,0x18,0x8d,0x11,0x48,0x58,0x31,0xd8,0xc2,0xe3,0xed,0xb9,0xd9,0x45,0x32,0xd8,0x71,0x42,0xab,0x1e,0x54,0xa1,0x18,0xc9,0xe2,0x61,0x39,0x4a}, {0xa0,0xbb,0xe6,0xf8,0xe0,0x3b,0xdc,0x71,0x0a,0xe3,0xff,0x7e,0x34,0xf8,0xce,0xd6,0x6a,0x47,0x3a,0xe1,0x5f,0x42,0x92,0xa9,0x63,0xb7,0x1d,0xfb,0xe3,0xbc,0xd6,0x2c,0x1e,0x3f,0x23,0xf3,0x44,0xd6,0x27,0x03,0x16,0xf0,0xfc,0x34,0x0e,0x26,0x9a,0x49,0x79,0xb9,0xda,0xf2,0x16,0xa7,0xb5,0x83,0x1f,0x11,0xd4,0x9b,0xad,0xee,0xac,0x68,0x10,0xc2,0xd7,0xf3,0x0e,0xc9,0xb4,0x38,0x0c,0x04,0xad,0xb7,0x24,0x6e,0x8e,0x30,0x23,0x3e,0xe7,0xb7,0xf1,0xd9,0x60,0x38,0x97,0xf5,0x08,0xb5,0xd5,0x60,0x57,0x59}, {0x97,0x63,0xaa,0x04,0xe1,0xbf,0x29,0x61,0xcb,0xfc,0xa7,0xa4,0x08,0x00,0x96,0x8f,0x58,0x94,0x90,0x7d,0x89,0xc0,0x8b,0x3f,0xa9,0x91,0xb2,0xdc,0x3e,0xa4,0x9f,0x70,0x90,0x27,0x02,0xfd,0xeb,0xcb,0x2a,0x88,0x60,0x57,0x11,0xc4,0x05,0x33,0xaf,0x89,0xf4,0x73,0x34,0x7d,0xe3,0x92,0xf4,0x65,0x2b,0x5a,0x51,0x54,0xdf,0xc5,0xb2,0x2c,0xca,0x2a,0xfd,0x63,0x8c,0x5d,0x0a,0xeb,0xff,0x4e,0x69,0x2e,0x66,0xc1,0x2b,0xd2,0x3a,0xb0,0xcb,0xf8,0x6e,0xf3,0x23,0x27,0x1f,0x13,0xc8,0xf0,0xec,0x29,0xf0,0x70}, {0x33,0x3e,0xed,0x2e,0xb3,0x07,0x13,0x46,0xe7,0x81,0x55,0xa4,0x33,0x2f,0x04,0xae,0x66,0x03,0x5f,0x19,0xd3,0x49,0x44,0xc9,0x58,0x48,0x31,0x6c,0x8a,0x5d,0x7d,0x0b,0xb9,0xb0,0x10,0x5e,0xaa,0xaf,0x6a,0x2a,0xa9,0x1a,0x04,0xef,0x70,0xa3,0xf0,0x78,0x1f,0xd6,0x3a,0xaa,0x77,0xfb,0x3e,0x77,0xe1,0xd9,0x4b,0xa7,0xa2,0xa5,0xec,0x44,0x43,0xd5,0x95,0x7b,0x32,0x48,0xd4,0x25,0x1d,0x0f,0x34,0xa3,0x00,0x83,0xd3,0x70,0x2b,0xc5,0xe1,0x60,0x1c,0x53,0x1c,0xde,0xe4,0xe9,0x7d,0x2c,0x51,0x24,0x22,0x27}, {0x2e,0x34,0xc5,0x49,0xaf,0x92,0xbc,0x1a,0xd0,0xfa,0xe6,0xb2,0x11,0xd8,0xee,0xff,0x29,0x4e,0xc8,0xfc,0x8d,0x8c,0xa2,0xef,0x43,0xc5,0x4c,0xa4,0x18,0xdf,0xb5,0x11,0xfc,0x75,0xa9,0x42,0x8a,0xbb,0x7b,0xbf,0x58,0xa3,0xad,0x96,0x77,0x39,0x5c,0x8c,0x48,0xaa,0xed,0xcd,0x6f,0xc7,0x7f,0xe2,0xa6,0x20,0xbc,0xf6,0xd7,0x5f,0x73,0x19,0x66,0x42,0xc8,0x42,0xd0,0x90,0xab,0xe3,0x7e,0x54,0x19,0x7f,0x0f,0x8e,0x84,0xeb,0xb9,0x97,0xa4,0x65,0xd0,0xa1,0x03,0x25,0x5f,0x89,0xdf,0x91,0x11,0x91,0xef,0x0f} }; tor-0.2.7.6/src/ext/ed25519/donna/modm-donna-32bit.h0000644000175000017500000005124012621363246016227 00000000000000/* Public domain by Andrew M. */ /* Arithmetic modulo the group order n = 2^252 + 27742317777372353535851937790883648493 = 7237005577332262213973186563042994240857116359379907606001950938285454250989 k = 32 b = 1 << 8 = 256 m = 2^252 + 27742317777372353535851937790883648493 = 0x1000000000000000000000000000000014def9dea2f79cd65812631a5cf5d3ed mu = floor( b^(k*2) / m ) = 0xfffffffffffffffffffffffffffffffeb2106215d086329a7ed9ce5a30a2c131b */ #define bignum256modm_bits_per_limb 30 #define bignum256modm_limb_size 9 typedef uint32_t bignum256modm_element_t; typedef bignum256modm_element_t bignum256modm[9]; static const bignum256modm modm_m = { 0x1cf5d3ed, 0x20498c69, 0x2f79cd65, 0x37be77a8, 0x00000014, 0x00000000, 0x00000000, 0x00000000, 0x00001000 }; static const bignum256modm modm_mu = { 0x0a2c131b, 0x3673968c, 0x06329a7e, 0x01885742, 0x3fffeb21, 0x3fffffff, 0x3fffffff, 0x3fffffff, 0x000fffff }; static bignum256modm_element_t lt_modm(bignum256modm_element_t a, bignum256modm_element_t b) { return (a - b) >> 31; } /* see HAC, Alg. 14.42 Step 4 */ static void reduce256_modm(bignum256modm r) { bignum256modm t; bignum256modm_element_t b = 0, pb, mask; /* t = r - m */ pb = 0; pb += modm_m[0]; b = lt_modm(r[0], pb); t[0] = (r[0] - pb + (b << 30)); pb = b; pb += modm_m[1]; b = lt_modm(r[1], pb); t[1] = (r[1] - pb + (b << 30)); pb = b; pb += modm_m[2]; b = lt_modm(r[2], pb); t[2] = (r[2] - pb + (b << 30)); pb = b; pb += modm_m[3]; b = lt_modm(r[3], pb); t[3] = (r[3] - pb + (b << 30)); pb = b; pb += modm_m[4]; b = lt_modm(r[4], pb); t[4] = (r[4] - pb + (b << 30)); pb = b; pb += modm_m[5]; b = lt_modm(r[5], pb); t[5] = (r[5] - pb + (b << 30)); pb = b; pb += modm_m[6]; b = lt_modm(r[6], pb); t[6] = (r[6] - pb + (b << 30)); pb = b; pb += modm_m[7]; b = lt_modm(r[7], pb); t[7] = (r[7] - pb + (b << 30)); pb = b; pb += modm_m[8]; b = lt_modm(r[8], pb); t[8] = (r[8] - pb + (b << 16)); /* keep r if r was smaller than m */ mask = b - 1; r[0] ^= mask & (r[0] ^ t[0]); r[1] ^= mask & (r[1] ^ t[1]); r[2] ^= mask & (r[2] ^ t[2]); r[3] ^= mask & (r[3] ^ t[3]); r[4] ^= mask & (r[4] ^ t[4]); r[5] ^= mask & (r[5] ^ t[5]); r[6] ^= mask & (r[6] ^ t[6]); r[7] ^= mask & (r[7] ^ t[7]); r[8] ^= mask & (r[8] ^ t[8]); } /* Barrett reduction, see HAC, Alg. 14.42 Instead of passing in x, pre-process in to q1 and r1 for efficiency */ static void barrett_reduce256_modm(bignum256modm r, const bignum256modm q1, const bignum256modm r1) { bignum256modm q3, r2; uint64_t c; bignum256modm_element_t f, b, pb; /* q1 = x >> 248 = 264 bits = 9 30 bit elements q2 = mu * q1 q3 = (q2 / 256(32+1)) = q2 / (2^8)^(32+1) = q2 >> 264 */ c = mul32x32_64(modm_mu[0], q1[7]) + mul32x32_64(modm_mu[1], q1[6]) + mul32x32_64(modm_mu[2], q1[5]) + mul32x32_64(modm_mu[3], q1[4]) + mul32x32_64(modm_mu[4], q1[3]) + mul32x32_64(modm_mu[5], q1[2]) + mul32x32_64(modm_mu[6], q1[1]) + mul32x32_64(modm_mu[7], q1[0]); c >>= 30; c += mul32x32_64(modm_mu[0], q1[8]) + mul32x32_64(modm_mu[1], q1[7]) + mul32x32_64(modm_mu[2], q1[6]) + mul32x32_64(modm_mu[3], q1[5]) + mul32x32_64(modm_mu[4], q1[4]) + mul32x32_64(modm_mu[5], q1[3]) + mul32x32_64(modm_mu[6], q1[2]) + mul32x32_64(modm_mu[7], q1[1]) + mul32x32_64(modm_mu[8], q1[0]); f = (bignum256modm_element_t)c; q3[0] = (f >> 24) & 0x3f; c >>= 30; c += mul32x32_64(modm_mu[1], q1[8]) + mul32x32_64(modm_mu[2], q1[7]) + mul32x32_64(modm_mu[3], q1[6]) + mul32x32_64(modm_mu[4], q1[5]) + mul32x32_64(modm_mu[5], q1[4]) + mul32x32_64(modm_mu[6], q1[3]) + mul32x32_64(modm_mu[7], q1[2]) + mul32x32_64(modm_mu[8], q1[1]); f = (bignum256modm_element_t)c; q3[0] |= (f << 6) & 0x3fffffff; q3[1] = (f >> 24) & 0x3f; c >>= 30; c += mul32x32_64(modm_mu[2], q1[8]) + mul32x32_64(modm_mu[3], q1[7]) + mul32x32_64(modm_mu[4], q1[6]) + mul32x32_64(modm_mu[5], q1[5]) + mul32x32_64(modm_mu[6], q1[4]) + mul32x32_64(modm_mu[7], q1[3]) + mul32x32_64(modm_mu[8], q1[2]); f = (bignum256modm_element_t)c; q3[1] |= (f << 6) & 0x3fffffff; q3[2] = (f >> 24) & 0x3f; c >>= 30; c += mul32x32_64(modm_mu[3], q1[8]) + mul32x32_64(modm_mu[4], q1[7]) + mul32x32_64(modm_mu[5], q1[6]) + mul32x32_64(modm_mu[6], q1[5]) + mul32x32_64(modm_mu[7], q1[4]) + mul32x32_64(modm_mu[8], q1[3]); f = (bignum256modm_element_t)c; q3[2] |= (f << 6) & 0x3fffffff; q3[3] = (f >> 24) & 0x3f; c >>= 30; c += mul32x32_64(modm_mu[4], q1[8]) + mul32x32_64(modm_mu[5], q1[7]) + mul32x32_64(modm_mu[6], q1[6]) + mul32x32_64(modm_mu[7], q1[5]) + mul32x32_64(modm_mu[8], q1[4]); f = (bignum256modm_element_t)c; q3[3] |= (f << 6) & 0x3fffffff; q3[4] = (f >> 24) & 0x3f; c >>= 30; c += mul32x32_64(modm_mu[5], q1[8]) + mul32x32_64(modm_mu[6], q1[7]) + mul32x32_64(modm_mu[7], q1[6]) + mul32x32_64(modm_mu[8], q1[5]); f = (bignum256modm_element_t)c; q3[4] |= (f << 6) & 0x3fffffff; q3[5] = (f >> 24) & 0x3f; c >>= 30; c += mul32x32_64(modm_mu[6], q1[8]) + mul32x32_64(modm_mu[7], q1[7]) + mul32x32_64(modm_mu[8], q1[6]); f = (bignum256modm_element_t)c; q3[5] |= (f << 6) & 0x3fffffff; q3[6] = (f >> 24) & 0x3f; c >>= 30; c += mul32x32_64(modm_mu[7], q1[8]) + mul32x32_64(modm_mu[8], q1[7]); f = (bignum256modm_element_t)c; q3[6] |= (f << 6) & 0x3fffffff; q3[7] = (f >> 24) & 0x3f; c >>= 30; c += mul32x32_64(modm_mu[8], q1[8]); f = (bignum256modm_element_t)c; q3[7] |= (f << 6) & 0x3fffffff; q3[8] = (bignum256modm_element_t)(c >> 24); /* r1 = (x mod 256^(32+1)) = x mod (2^8)(31+1) = x & ((1 << 264) - 1) r2 = (q3 * m) mod (256^(32+1)) = (q3 * m) & ((1 << 264) - 1) */ c = mul32x32_64(modm_m[0], q3[0]); r2[0] = (bignum256modm_element_t)(c & 0x3fffffff); c >>= 30; c += mul32x32_64(modm_m[0], q3[1]) + mul32x32_64(modm_m[1], q3[0]); r2[1] = (bignum256modm_element_t)(c & 0x3fffffff); c >>= 30; c += mul32x32_64(modm_m[0], q3[2]) + mul32x32_64(modm_m[1], q3[1]) + mul32x32_64(modm_m[2], q3[0]); r2[2] = (bignum256modm_element_t)(c & 0x3fffffff); c >>= 30; c += mul32x32_64(modm_m[0], q3[3]) + mul32x32_64(modm_m[1], q3[2]) + mul32x32_64(modm_m[2], q3[1]) + mul32x32_64(modm_m[3], q3[0]); r2[3] = (bignum256modm_element_t)(c & 0x3fffffff); c >>= 30; c += mul32x32_64(modm_m[0], q3[4]) + mul32x32_64(modm_m[1], q3[3]) + mul32x32_64(modm_m[2], q3[2]) + mul32x32_64(modm_m[3], q3[1]) + mul32x32_64(modm_m[4], q3[0]); r2[4] = (bignum256modm_element_t)(c & 0x3fffffff); c >>= 30; c += mul32x32_64(modm_m[0], q3[5]) + mul32x32_64(modm_m[1], q3[4]) + mul32x32_64(modm_m[2], q3[3]) + mul32x32_64(modm_m[3], q3[2]) + mul32x32_64(modm_m[4], q3[1]) + mul32x32_64(modm_m[5], q3[0]); r2[5] = (bignum256modm_element_t)(c & 0x3fffffff); c >>= 30; c += mul32x32_64(modm_m[0], q3[6]) + mul32x32_64(modm_m[1], q3[5]) + mul32x32_64(modm_m[2], q3[4]) + mul32x32_64(modm_m[3], q3[3]) + mul32x32_64(modm_m[4], q3[2]) + mul32x32_64(modm_m[5], q3[1]) + mul32x32_64(modm_m[6], q3[0]); r2[6] = (bignum256modm_element_t)(c & 0x3fffffff); c >>= 30; c += mul32x32_64(modm_m[0], q3[7]) + mul32x32_64(modm_m[1], q3[6]) + mul32x32_64(modm_m[2], q3[5]) + mul32x32_64(modm_m[3], q3[4]) + mul32x32_64(modm_m[4], q3[3]) + mul32x32_64(modm_m[5], q3[2]) + mul32x32_64(modm_m[6], q3[1]) + mul32x32_64(modm_m[7], q3[0]); r2[7] = (bignum256modm_element_t)(c & 0x3fffffff); c >>= 30; c += mul32x32_64(modm_m[0], q3[8]) + mul32x32_64(modm_m[1], q3[7]) + mul32x32_64(modm_m[2], q3[6]) + mul32x32_64(modm_m[3], q3[5]) + mul32x32_64(modm_m[4], q3[4]) + mul32x32_64(modm_m[5], q3[3]) + mul32x32_64(modm_m[6], q3[2]) + mul32x32_64(modm_m[7], q3[1]) + mul32x32_64(modm_m[8], q3[0]); r2[8] = (bignum256modm_element_t)(c & 0xffffff); /* r = r1 - r2 if (r < 0) r += (1 << 264) */ pb = 0; pb += r2[0]; b = lt_modm(r1[0], pb); r[0] = (r1[0] - pb + (b << 30)); pb = b; pb += r2[1]; b = lt_modm(r1[1], pb); r[1] = (r1[1] - pb + (b << 30)); pb = b; pb += r2[2]; b = lt_modm(r1[2], pb); r[2] = (r1[2] - pb + (b << 30)); pb = b; pb += r2[3]; b = lt_modm(r1[3], pb); r[3] = (r1[3] - pb + (b << 30)); pb = b; pb += r2[4]; b = lt_modm(r1[4], pb); r[4] = (r1[4] - pb + (b << 30)); pb = b; pb += r2[5]; b = lt_modm(r1[5], pb); r[5] = (r1[5] - pb + (b << 30)); pb = b; pb += r2[6]; b = lt_modm(r1[6], pb); r[6] = (r1[6] - pb + (b << 30)); pb = b; pb += r2[7]; b = lt_modm(r1[7], pb); r[7] = (r1[7] - pb + (b << 30)); pb = b; pb += r2[8]; b = lt_modm(r1[8], pb); r[8] = (r1[8] - pb + (b << 24)); reduce256_modm(r); reduce256_modm(r); } /* addition modulo m */ static void add256_modm(bignum256modm r, const bignum256modm x, const bignum256modm y) { bignum256modm_element_t c; c = x[0] + y[0]; r[0] = c & 0x3fffffff; c >>= 30; c += x[1] + y[1]; r[1] = c & 0x3fffffff; c >>= 30; c += x[2] + y[2]; r[2] = c & 0x3fffffff; c >>= 30; c += x[3] + y[3]; r[3] = c & 0x3fffffff; c >>= 30; c += x[4] + y[4]; r[4] = c & 0x3fffffff; c >>= 30; c += x[5] + y[5]; r[5] = c & 0x3fffffff; c >>= 30; c += x[6] + y[6]; r[6] = c & 0x3fffffff; c >>= 30; c += x[7] + y[7]; r[7] = c & 0x3fffffff; c >>= 30; c += x[8] + y[8]; r[8] = c; reduce256_modm(r); } /* multiplication modulo m */ static void mul256_modm(bignum256modm r, const bignum256modm x, const bignum256modm y) { bignum256modm r1, q1; uint64_t c; bignum256modm_element_t f; /* r1 = (x mod 256^(32+1)) = x mod (2^8)(31+1) = x & ((1 << 264) - 1) q1 = x >> 248 = 264 bits = 9 30 bit elements */ c = mul32x32_64(x[0], y[0]); f = (bignum256modm_element_t)c; r1[0] = (f & 0x3fffffff); c >>= 30; c += mul32x32_64(x[0], y[1]) + mul32x32_64(x[1], y[0]); f = (bignum256modm_element_t)c; r1[1] = (f & 0x3fffffff); c >>= 30; c += mul32x32_64(x[0], y[2]) + mul32x32_64(x[1], y[1]) + mul32x32_64(x[2], y[0]); f = (bignum256modm_element_t)c; r1[2] = (f & 0x3fffffff); c >>= 30; c += mul32x32_64(x[0], y[3]) + mul32x32_64(x[1], y[2]) + mul32x32_64(x[2], y[1]) + mul32x32_64(x[3], y[0]); f = (bignum256modm_element_t)c; r1[3] = (f & 0x3fffffff); c >>= 30; c += mul32x32_64(x[0], y[4]) + mul32x32_64(x[1], y[3]) + mul32x32_64(x[2], y[2]) + mul32x32_64(x[3], y[1]) + mul32x32_64(x[4], y[0]); f = (bignum256modm_element_t)c; r1[4] = (f & 0x3fffffff); c >>= 30; c += mul32x32_64(x[0], y[5]) + mul32x32_64(x[1], y[4]) + mul32x32_64(x[2], y[3]) + mul32x32_64(x[3], y[2]) + mul32x32_64(x[4], y[1]) + mul32x32_64(x[5], y[0]); f = (bignum256modm_element_t)c; r1[5] = (f & 0x3fffffff); c >>= 30; c += mul32x32_64(x[0], y[6]) + mul32x32_64(x[1], y[5]) + mul32x32_64(x[2], y[4]) + mul32x32_64(x[3], y[3]) + mul32x32_64(x[4], y[2]) + mul32x32_64(x[5], y[1]) + mul32x32_64(x[6], y[0]); f = (bignum256modm_element_t)c; r1[6] = (f & 0x3fffffff); c >>= 30; c += mul32x32_64(x[0], y[7]) + mul32x32_64(x[1], y[6]) + mul32x32_64(x[2], y[5]) + mul32x32_64(x[3], y[4]) + mul32x32_64(x[4], y[3]) + mul32x32_64(x[5], y[2]) + mul32x32_64(x[6], y[1]) + mul32x32_64(x[7], y[0]); f = (bignum256modm_element_t)c; r1[7] = (f & 0x3fffffff); c >>= 30; c += mul32x32_64(x[0], y[8]) + mul32x32_64(x[1], y[7]) + mul32x32_64(x[2], y[6]) + mul32x32_64(x[3], y[5]) + mul32x32_64(x[4], y[4]) + mul32x32_64(x[5], y[3]) + mul32x32_64(x[6], y[2]) + mul32x32_64(x[7], y[1]) + mul32x32_64(x[8], y[0]); f = (bignum256modm_element_t)c; r1[8] = (f & 0x00ffffff); q1[0] = (f >> 8) & 0x3fffff; c >>= 30; c += mul32x32_64(x[1], y[8]) + mul32x32_64(x[2], y[7]) + mul32x32_64(x[3], y[6]) + mul32x32_64(x[4], y[5]) + mul32x32_64(x[5], y[4]) + mul32x32_64(x[6], y[3]) + mul32x32_64(x[7], y[2]) + mul32x32_64(x[8], y[1]); f = (bignum256modm_element_t)c; q1[0] = (q1[0] | (f << 22)) & 0x3fffffff; q1[1] = (f >> 8) & 0x3fffff; c >>= 30; c += mul32x32_64(x[2], y[8]) + mul32x32_64(x[3], y[7]) + mul32x32_64(x[4], y[6]) + mul32x32_64(x[5], y[5]) + mul32x32_64(x[6], y[4]) + mul32x32_64(x[7], y[3]) + mul32x32_64(x[8], y[2]); f = (bignum256modm_element_t)c; q1[1] = (q1[1] | (f << 22)) & 0x3fffffff; q1[2] = (f >> 8) & 0x3fffff; c >>= 30; c += mul32x32_64(x[3], y[8]) + mul32x32_64(x[4], y[7]) + mul32x32_64(x[5], y[6]) + mul32x32_64(x[6], y[5]) + mul32x32_64(x[7], y[4]) + mul32x32_64(x[8], y[3]); f = (bignum256modm_element_t)c; q1[2] = (q1[2] | (f << 22)) & 0x3fffffff; q1[3] = (f >> 8) & 0x3fffff; c >>= 30; c += mul32x32_64(x[4], y[8]) + mul32x32_64(x[5], y[7]) + mul32x32_64(x[6], y[6]) + mul32x32_64(x[7], y[5]) + mul32x32_64(x[8], y[4]); f = (bignum256modm_element_t)c; q1[3] = (q1[3] | (f << 22)) & 0x3fffffff; q1[4] = (f >> 8) & 0x3fffff; c >>= 30; c += mul32x32_64(x[5], y[8]) + mul32x32_64(x[6], y[7]) + mul32x32_64(x[7], y[6]) + mul32x32_64(x[8], y[5]); f = (bignum256modm_element_t)c; q1[4] = (q1[4] | (f << 22)) & 0x3fffffff; q1[5] = (f >> 8) & 0x3fffff; c >>= 30; c += mul32x32_64(x[6], y[8]) + mul32x32_64(x[7], y[7]) + mul32x32_64(x[8], y[6]); f = (bignum256modm_element_t)c; q1[5] = (q1[5] | (f << 22)) & 0x3fffffff; q1[6] = (f >> 8) & 0x3fffff; c >>= 30; c += mul32x32_64(x[7], y[8]) + mul32x32_64(x[8], y[7]); f = (bignum256modm_element_t)c; q1[6] = (q1[6] | (f << 22)) & 0x3fffffff; q1[7] = (f >> 8) & 0x3fffff; c >>= 30; c += mul32x32_64(x[8], y[8]); f = (bignum256modm_element_t)c; q1[7] = (q1[7] | (f << 22)) & 0x3fffffff; q1[8] = (f >> 8) & 0x3fffff; barrett_reduce256_modm(r, q1, r1); } static void expand256_modm(bignum256modm out, const unsigned char *in, size_t len) { unsigned char work[64] = {0}; bignum256modm_element_t x[16]; bignum256modm q1; memcpy(work, in, len); x[0] = U8TO32_LE(work + 0); x[1] = U8TO32_LE(work + 4); x[2] = U8TO32_LE(work + 8); x[3] = U8TO32_LE(work + 12); x[4] = U8TO32_LE(work + 16); x[5] = U8TO32_LE(work + 20); x[6] = U8TO32_LE(work + 24); x[7] = U8TO32_LE(work + 28); x[8] = U8TO32_LE(work + 32); x[9] = U8TO32_LE(work + 36); x[10] = U8TO32_LE(work + 40); x[11] = U8TO32_LE(work + 44); x[12] = U8TO32_LE(work + 48); x[13] = U8TO32_LE(work + 52); x[14] = U8TO32_LE(work + 56); x[15] = U8TO32_LE(work + 60); /* r1 = (x mod 256^(32+1)) = x mod (2^8)(31+1) = x & ((1 << 264) - 1) */ out[0] = ( x[0]) & 0x3fffffff; out[1] = ((x[ 0] >> 30) | (x[ 1] << 2)) & 0x3fffffff; out[2] = ((x[ 1] >> 28) | (x[ 2] << 4)) & 0x3fffffff; out[3] = ((x[ 2] >> 26) | (x[ 3] << 6)) & 0x3fffffff; out[4] = ((x[ 3] >> 24) | (x[ 4] << 8)) & 0x3fffffff; out[5] = ((x[ 4] >> 22) | (x[ 5] << 10)) & 0x3fffffff; out[6] = ((x[ 5] >> 20) | (x[ 6] << 12)) & 0x3fffffff; out[7] = ((x[ 6] >> 18) | (x[ 7] << 14)) & 0x3fffffff; out[8] = ((x[ 7] >> 16) | (x[ 8] << 16)) & 0x00ffffff; /* 8*31 = 248 bits, no need to reduce */ if (len < 32) return; /* q1 = x >> 248 = 264 bits = 9 30 bit elements */ q1[0] = ((x[ 7] >> 24) | (x[ 8] << 8)) & 0x3fffffff; q1[1] = ((x[ 8] >> 22) | (x[ 9] << 10)) & 0x3fffffff; q1[2] = ((x[ 9] >> 20) | (x[10] << 12)) & 0x3fffffff; q1[3] = ((x[10] >> 18) | (x[11] << 14)) & 0x3fffffff; q1[4] = ((x[11] >> 16) | (x[12] << 16)) & 0x3fffffff; q1[5] = ((x[12] >> 14) | (x[13] << 18)) & 0x3fffffff; q1[6] = ((x[13] >> 12) | (x[14] << 20)) & 0x3fffffff; q1[7] = ((x[14] >> 10) | (x[15] << 22)) & 0x3fffffff; q1[8] = ((x[15] >> 8) ); barrett_reduce256_modm(out, q1, out); } static void expand_raw256_modm(bignum256modm out, const unsigned char in[32]) { bignum256modm_element_t x[8]; x[0] = U8TO32_LE(in + 0); x[1] = U8TO32_LE(in + 4); x[2] = U8TO32_LE(in + 8); x[3] = U8TO32_LE(in + 12); x[4] = U8TO32_LE(in + 16); x[5] = U8TO32_LE(in + 20); x[6] = U8TO32_LE(in + 24); x[7] = U8TO32_LE(in + 28); out[0] = ( x[0]) & 0x3fffffff; out[1] = ((x[ 0] >> 30) | (x[ 1] << 2)) & 0x3fffffff; out[2] = ((x[ 1] >> 28) | (x[ 2] << 4)) & 0x3fffffff; out[3] = ((x[ 2] >> 26) | (x[ 3] << 6)) & 0x3fffffff; out[4] = ((x[ 3] >> 24) | (x[ 4] << 8)) & 0x3fffffff; out[5] = ((x[ 4] >> 22) | (x[ 5] << 10)) & 0x3fffffff; out[6] = ((x[ 5] >> 20) | (x[ 6] << 12)) & 0x3fffffff; out[7] = ((x[ 6] >> 18) | (x[ 7] << 14)) & 0x3fffffff; out[8] = ((x[ 7] >> 16) ) & 0x0000ffff; } static void contract256_modm(unsigned char out[32], const bignum256modm in) { U32TO8_LE(out + 0, (in[0] ) | (in[1] << 30)); U32TO8_LE(out + 4, (in[1] >> 2) | (in[2] << 28)); U32TO8_LE(out + 8, (in[2] >> 4) | (in[3] << 26)); U32TO8_LE(out + 12, (in[3] >> 6) | (in[4] << 24)); U32TO8_LE(out + 16, (in[4] >> 8) | (in[5] << 22)); U32TO8_LE(out + 20, (in[5] >> 10) | (in[6] << 20)); U32TO8_LE(out + 24, (in[6] >> 12) | (in[7] << 18)); U32TO8_LE(out + 28, (in[7] >> 14) | (in[8] << 16)); } static void contract256_window4_modm(signed char r[64], const bignum256modm in) { char carry; signed char *quads = r; bignum256modm_element_t i, j, v; for (i = 0; i < 8; i += 2) { v = in[i]; for (j = 0; j < 7; j++) { *quads++ = (v & 15); v >>= 4; } v |= (in[i+1] << 2); for (j = 0; j < 8; j++) { *quads++ = (v & 15); v >>= 4; } } v = in[8]; *quads++ = (v & 15); v >>= 4; *quads++ = (v & 15); v >>= 4; *quads++ = (v & 15); v >>= 4; *quads++ = (v & 15); v >>= 4; /* making it signed */ carry = 0; for(i = 0; i < 63; i++) { r[i] += carry; r[i+1] += (r[i] >> 4); r[i] &= 15; carry = (r[i] >> 3); r[i] -= (carry << 4); } r[63] += carry; } static void contract256_slidingwindow_modm(signed char r[256], const bignum256modm s, int windowsize) { int i,j,k,b; int m = (1 << (windowsize - 1)) - 1; const int soplen = 256; signed char *bits = r; bignum256modm_element_t v; /* first put the binary expansion into r */ for (i = 0; i < 8; i++) { v = s[i]; for (j = 0; j < 30; j++, v >>= 1) *bits++ = (v & 1); } v = s[8]; for (j = 0; j < 16; j++, v >>= 1) *bits++ = (v & 1); /* Making it sliding window */ for (j = 0; j < soplen; j++) { if (!r[j]) continue; for (b = 1; (b < (soplen - j)) && (b <= 6); b++) { if ((r[j] + (r[j + b] << b)) <= m) { r[j] += r[j + b] << b; r[j + b] = 0; } else if ((r[j] - (r[j + b] << b)) >= -m) { r[j] -= r[j + b] << b; for (k = j + b; k < soplen; k++) { if (!r[k]) { r[k] = 1; break; } r[k] = 0; } } else if (r[j + b]) { break; } } } } /* helpers for batch verifcation, are allowed to be vartime */ /* out = a - b, a must be larger than b */ static void sub256_modm_batch(bignum256modm out, const bignum256modm a, const bignum256modm b, size_t limbsize) { size_t i = 0; bignum256modm_element_t carry = 0; switch (limbsize) { case 8: out[i] = (a[i] - b[i]) - carry; carry = (out[i] >> 31); out[i] &= 0x3fffffff; i++; case 7: out[i] = (a[i] - b[i]) - carry; carry = (out[i] >> 31); out[i] &= 0x3fffffff; i++; case 6: out[i] = (a[i] - b[i]) - carry; carry = (out[i] >> 31); out[i] &= 0x3fffffff; i++; case 5: out[i] = (a[i] - b[i]) - carry; carry = (out[i] >> 31); out[i] &= 0x3fffffff; i++; case 4: out[i] = (a[i] - b[i]) - carry; carry = (out[i] >> 31); out[i] &= 0x3fffffff; i++; case 3: out[i] = (a[i] - b[i]) - carry; carry = (out[i] >> 31); out[i] &= 0x3fffffff; i++; case 2: out[i] = (a[i] - b[i]) - carry; carry = (out[i] >> 31); out[i] &= 0x3fffffff; i++; case 1: out[i] = (a[i] - b[i]) - carry; carry = (out[i] >> 31); out[i] &= 0x3fffffff; i++; case 0: default: out[i] = (a[i] - b[i]) - carry; } } /* is a < b */ static int lt256_modm_batch(const bignum256modm a, const bignum256modm b, size_t limbsize) { switch (limbsize) { case 8: if (a[8] > b[8]) return 0; if (a[8] < b[8]) return 1; case 7: if (a[7] > b[7]) return 0; if (a[7] < b[7]) return 1; case 6: if (a[6] > b[6]) return 0; if (a[6] < b[6]) return 1; case 5: if (a[5] > b[5]) return 0; if (a[5] < b[5]) return 1; case 4: if (a[4] > b[4]) return 0; if (a[4] < b[4]) return 1; case 3: if (a[3] > b[3]) return 0; if (a[3] < b[3]) return 1; case 2: if (a[2] > b[2]) return 0; if (a[2] < b[2]) return 1; case 1: if (a[1] > b[1]) return 0; if (a[1] < b[1]) return 1; case 0: if (a[0] > b[0]) return 0; if (a[0] < b[0]) return 1; } return 0; } /* is a <= b */ static int lte256_modm_batch(const bignum256modm a, const bignum256modm b, size_t limbsize) { switch (limbsize) { case 8: if (a[8] > b[8]) return 0; if (a[8] < b[8]) return 1; case 7: if (a[7] > b[7]) return 0; if (a[7] < b[7]) return 1; case 6: if (a[6] > b[6]) return 0; if (a[6] < b[6]) return 1; case 5: if (a[5] > b[5]) return 0; if (a[5] < b[5]) return 1; case 4: if (a[4] > b[4]) return 0; if (a[4] < b[4]) return 1; case 3: if (a[3] > b[3]) return 0; if (a[3] < b[3]) return 1; case 2: if (a[2] > b[2]) return 0; if (a[2] < b[2]) return 1; case 1: if (a[1] > b[1]) return 0; if (a[1] < b[1]) return 1; case 0: if (a[0] > b[0]) return 0; if (a[0] < b[0]) return 1; } return 1; } /* is a == 0 */ static int iszero256_modm_batch(const bignum256modm a) { size_t i; for (i = 0; i < 9; i++) if (a[i]) return 0; return 1; } /* is a == 1 */ static int isone256_modm_batch(const bignum256modm a) { size_t i; if (a[0] != 1) return 0; for (i = 1; i < 9; i++) if (a[i]) return 0; return 1; } /* can a fit in to (at most) 128 bits */ static int isatmost128bits256_modm_batch(const bignum256modm a) { uint32_t mask = ((a[8] ) | /* 16 */ (a[7] ) | /* 46 */ (a[6] ) | /* 76 */ (a[5] ) | /* 106 */ (a[4] & 0x3fffff00)); /* 128 */ return (mask == 0); } tor-0.2.7.6/src/ext/ed25519/donna/ed25519-donna-64bit-tables.h0000644000175000017500000002421412621363245017546 00000000000000static const ge25519 ge25519_basepoint = { {0x00062d608f25d51a,0x000412a4b4f6592a,0x00075b7171a4b31d,0x0001ff60527118fe,0x000216936d3cd6e5}, {0x0006666666666658,0x0004cccccccccccc,0x0001999999999999,0x0003333333333333,0x0006666666666666}, {0x0000000000000001,0x0000000000000000,0x0000000000000000,0x0000000000000000,0x0000000000000000}, {0x00068ab3a5b7dda3,0x00000eea2a5eadbb,0x0002af8df483c27e,0x000332b375274732,0x00067875f0fd78b7} }; static const bignum25519 ge25519_ecd = { 0x00034dca135978a3,0x0001a8283b156ebd,0x0005e7a26001c029,0x000739c663a03cbb,0x00052036cee2b6ff }; static const bignum25519 ge25519_ec2d = { 0x00069b9426b2f159,0x00035050762add7a,0x0003cf44c0038052,0x0006738cc7407977,0x0002406d9dc56dff }; static const bignum25519 ge25519_sqrtneg1 = { 0x00061b274a0ea0b0,0x0000d5a5fc8f189d,0x0007ef5e9cbd0c60,0x00078595a6804c9e,0x0002b8324804fc1d }; static const ge25519_niels ge25519_niels_sliding_multiples[32] = { {{0x00003905d740913e,0x0000ba2817d673a2,0x00023e2827f4e67c,0x000133d2e0c21a34,0x00044fd2f9298f81},{0x000493c6f58c3b85,0x0000df7181c325f7,0x0000f50b0b3e4cb7,0x0005329385a44c32,0x00007cf9d3a33d4b},{0x00011205877aaa68,0x000479955893d579,0x00050d66309b67a0,0x0002d42d0dbee5ee,0x0006f117b689f0c6}}, {{0x00011fe8a4fcd265,0x0007bcb8374faacc,0x00052f5af4ef4d4f,0x0005314098f98d10,0x0002ab91587555bd},{0x0005b0a84cee9730,0x00061d10c97155e4,0x0004059cc8096a10,0x00047a608da8014f,0x0007a164e1b9a80f},{0x0006933f0dd0d889,0x00044386bb4c4295,0x0003cb6d3162508c,0x00026368b872a2c6,0x0005a2826af12b9b}}, {{0x000182c3a447d6ba,0x00022964e536eff2,0x000192821f540053,0x0002f9f19e788e5c,0x000154a7e73eb1b5},{0x0002bc4408a5bb33,0x000078ebdda05442,0x0002ffb112354123,0x000375ee8df5862d,0x0002945ccf146e20},{0x0003dbf1812a8285,0x0000fa17ba3f9797,0x0006f69cb49c3820,0x00034d5a0db3858d,0x00043aabe696b3bb}}, {{0x00072c9aaa3221b1,0x000267774474f74d,0x000064b0e9b28085,0x0003f04ef53b27c9,0x0001d6edd5d2e531},{0x00025cd0944ea3bf,0x00075673b81a4d63,0x000150b925d1c0d4,0x00013f38d9294114,0x000461bea69283c9},{0x00036dc801b8b3a2,0x0000e0a7d4935e30,0x0001deb7cecc0d7d,0x000053a94e20dd2c,0x0007a9fbb1c6a0f9}}, {{0x0006217e039d8064,0x0006dea408337e6d,0x00057ac112628206,0x000647cb65e30473,0x00049c05a51fadc9},{0x0006678aa6a8632f,0x0005ea3788d8b365,0x00021bd6d6994279,0x0007ace75919e4e3,0x00034b9ed338add7},{0x0004e8bf9045af1b,0x000514e33a45e0d6,0x0007533c5b8bfe0f,0x000583557b7e14c9,0x00073c172021b008}}, {{0x00075b0249864348,0x00052ee11070262b,0x000237ae54fb5acd,0x0003bfd1d03aaab5,0x00018ab598029d5c},{0x000700848a802ade,0x0001e04605c4e5f7,0x0005c0d01b9767fb,0x0007d7889f42388b,0x0004275aae2546d8},{0x00032cc5fd6089e9,0x000426505c949b05,0x00046a18880c7ad2,0x0004a4221888ccda,0x0003dc65522b53df}}, {{0x0007013b327fbf93,0x0001336eeded6a0d,0x0002b565a2bbf3af,0x000253ce89591955,0x0000267882d17602},{0x0000c222a2007f6d,0x000356b79bdb77ee,0x00041ee81efe12ce,0x000120a9bd07097d,0x000234fd7eec346f},{0x0000a119732ea378,0x00063bf1ba8e2a6c,0x00069f94cc90df9a,0x000431d1779bfc48,0x000497ba6fdaa097}}, {{0x0003cd86468ccf0b,0x00048553221ac081,0x0006c9464b4e0a6e,0x00075fba84180403,0x00043b5cd4218d05},{0x0006cc0313cfeaa0,0x0001a313848da499,0x0007cb534219230a,0x00039596dedefd60,0x00061e22917f12de},{0x0002762f9bd0b516,0x0001c6e7fbddcbb3,0x00075909c3ace2bd,0x00042101972d3ec9,0x000511d61210ae4d}}, {{0x000386484420de87,0x0002d6b25db68102,0x000650b4962873c0,0x0004081cfd271394,0x00071a7fe6fe2482},{0x000676ef950e9d81,0x0001b81ae089f258,0x00063c4922951883,0x0002f1d54d9b3237,0x0006d325924ddb85},{0x000182b8a5c8c854,0x00073fcbe5406d8e,0x0005de3430cff451,0x000554b967ac8c41,0x0004746c4b6559ee}}, {{0x000546c864741147,0x0003a1df99092690,0x0001ca8cc9f4d6bb,0x00036b7fc9cd3b03,0x000219663497db5e},{0x00077b3c6dc69a2b,0x0004edf13ec2fa6e,0x0004e85ad77beac8,0x0007dba2b28e7bda,0x0005c9a51de34fe9},{0x0000f1cf79f10e67,0x00043ccb0a2b7ea2,0x00005089dfff776a,0x0001dd84e1d38b88,0x0004804503c60822}}, {{0x000021d23a36d175,0x0004fd3373c6476d,0x00020e291eeed02a,0x00062f2ecf2e7210,0x000771e098858de4},{0x00049ed02ca37fc7,0x000474c2b5957884,0x0005b8388e816683,0x0004b6c454b76be4,0x000553398a516506},{0x0002f5d278451edf,0x000730b133997342,0x0006965420eb6975,0x000308a3bfa516cf,0x0005a5ed1d68ff5a}}, {{0x0005e0c558527359,0x0003395b73afd75c,0x000072afa4e4b970,0x00062214329e0f6d,0x000019b60135fefd},{0x0005122afe150e83,0x0004afc966bb0232,0x0001c478833c8268,0x00017839c3fc148f,0x00044acb897d8bf9},{0x000068145e134b83,0x0001e4860982c3cc,0x000068fb5f13d799,0x0007c9283744547e,0x000150c49fde6ad2}}, {{0x0001863c9cdca868,0x0003770e295a1709,0x0000d85a3720fd13,0x0005e0ff1f71ab06,0x00078a6d7791e05f},{0x0003f29509471138,0x000729eeb4ca31cf,0x00069c22b575bfbc,0x0004910857bce212,0x0006b2b5a075bb99},{0x0007704b47a0b976,0x0002ae82e91aab17,0x00050bd6429806cd,0x00068055158fd8ea,0x000725c7ffc4ad55}}, {{0x00002bf71cd098c0,0x00049dabcc6cd230,0x00040a6533f905b2,0x000573efac2eb8a4,0x0004cd54625f855f},{0x00026715d1cf99b2,0x0002205441a69c88,0x000448427dcd4b54,0x0001d191e88abdc5,0x000794cc9277cb1f},{0x0006c426c2ac5053,0x0005a65ece4b095e,0x0000c44086f26bb6,0x0007429568197885,0x0007008357b6fcc8}}, {{0x00039fbb82584a34,0x00047a568f257a03,0x00014d88091ead91,0x0002145b18b1ce24,0x00013a92a3669d6d},{0x0000672738773f01,0x000752bf799f6171,0x0006b4a6dae33323,0x0007b54696ead1dc,0x00006ef7e9851ad0},{0x0003771cc0577de5,0x0003ca06bb8b9952,0x00000b81c5d50390,0x00043512340780ec,0x0003c296ddf8a2af}}, {{0x00034d2ebb1f2541,0x0000e815b723ff9d,0x000286b416e25443,0x0000bdfe38d1bee8,0x0000a892c7007477},{0x000515f9d914a713,0x00073191ff2255d5,0x00054f5cc2a4bdef,0x0003dd57fc118bcf,0x0007a99d393490c7},{0x0002ed2436bda3e8,0x00002afd00f291ea,0x0000be7381dea321,0x0003e952d4b2b193,0x000286762d28302f}}, {{0x00058e2bce2ef5bd,0x00068ce8f78c6f8a,0x0006ee26e39261b2,0x00033d0aa50bcf9d,0x0007686f2a3d6f17},{0x000036093ce35b25,0x0003b64d7552e9cf,0x00071ee0fe0b8460,0x00069d0660c969e5,0x00032f1da046a9d9},{0x000512a66d597c6a,0x0000609a70a57551,0x000026c08a3c464c,0x0004531fc8ee39e1,0x000561305f8a9ad2}}, {{0x0002cc28e7b0c0d5,0x00077b60eb8a6ce4,0x0004042985c277a6,0x000636657b46d3eb,0x000030a1aef2c57c},{0x0004978dec92aed1,0x000069adae7ca201,0x00011ee923290f55,0x00069641898d916c,0x00000aaec53e35d4},{0x0001f773003ad2aa,0x000005642cc10f76,0x00003b48f82cfca6,0x0002403c10ee4329,0x00020be9c1c24065}}, {{0x0000e44ae2025e60,0x0005f97b9727041c,0x0005683472c0ecec,0x000188882eb1ce7c,0x00069764c545067e},{0x000387d8249673a6,0x0005bea8dc927c2a,0x0005bd8ed5650ef0,0x0000ef0e3fcd40e1,0x000750ab3361f0ac},{0x00023283a2f81037,0x000477aff97e23d1,0x0000b8958dbcbb68,0x0000205b97e8add6,0x00054f96b3fb7075}}, {{0x0005afc616b11ecd,0x00039f4aec8f22ef,0x0003b39e1625d92e,0x0005f85bd4508873,0x00078e6839fbe85d},{0x0005f20429669279,0x00008fafae4941f5,0x00015d83c4eb7688,0x0001cf379eca4146,0x0003d7fe9c52bb75},{0x00032df737b8856b,0x0000608342f14e06,0x0003967889d74175,0x0001211907fba550,0x00070f268f350088}}, {{0x0004112070dcf355,0x0007dcff9c22e464,0x00054ada60e03325,0x00025cd98eef769a,0x000404e56c039b8c},{0x00064583b1805f47,0x00022c1baf832cd0,0x000132c01bd4d717,0x0004ecf4c3a75b8f,0x0007c0d345cfad88},{0x00071f4b8c78338a,0x00062cfc16bc2b23,0x00017cf51280d9aa,0x0003bbae5e20a95a,0x00020d754762aaec}}, {{0x0004feb135b9f543,0x00063bd192ad93ae,0x00044e2ea612cdf7,0x000670f4991583ab,0x00038b8ada8790b4},{0x0007c36fc73bb758,0x0004a6c797734bd1,0x0000ef248ab3950e,0x00063154c9a53ec8,0x0002b8f1e46f3cee},{0x00004a9cdf51f95d,0x0005d963fbd596b8,0x00022d9b68ace54a,0x0004a98e8836c599,0x000049aeb32ceba1}}, {{0x00067d3c63dcfe7e,0x000112f0adc81aee,0x00053df04c827165,0x0002fe5b33b430f0,0x00051c665e0c8d62},{0x00007d0b75fc7931,0x00016f4ce4ba754a,0x0005ace4c03fbe49,0x00027e0ec12a159c,0x000795ee17530f67},{0x00025b0a52ecbd81,0x0005dc0695fce4a9,0x0003b928c575047d,0x00023bf3512686e5,0x0006cd19bf49dc54}}, {{0x0007619052179ca3,0x0000c16593f0afd0,0x000265c4795c7428,0x00031c40515d5442,0x0007520f3db40b2e},{0x0006612165afc386,0x0001171aa36203ff,0x0002642ea820a8aa,0x0001f3bb7b313f10,0x0005e01b3a7429e4},{0x00050be3d39357a1,0x0003ab33d294a7b6,0x0004c479ba59edb3,0x0004c30d184d326f,0x00071092c9ccef3c}}, {{0x0000523f0364918c,0x000687f56d638a7b,0x00020796928ad013,0x0005d38405a54f33,0x0000ea15b03d0257},{0x0003d8ac74051dcf,0x00010ab6f543d0ad,0x0005d0f3ac0fda90,0x0005ef1d2573e5e4,0x0004173a5bb7137a},{0x00056e31f0f9218a,0x0005635f88e102f8,0x0002cbc5d969a5b8,0x000533fbc98b347a,0x0005fc565614a4e3}}, {{0x0006570dc46d7ae5,0x00018a9f1b91e26d,0x000436b6183f42ab,0x000550acaa4f8198,0x00062711c414c454},{0x0002e1e67790988e,0x0001e38b9ae44912,0x000648fbb4075654,0x00028df1d840cd72,0x0003214c7409d466},{0x0001827406651770,0x0004d144f286c265,0x00017488f0ee9281,0x00019e6cdb5c760c,0x0005bea94073ecb8}}, {{0x0005bf0912c89be4,0x00062fadcaf38c83,0x00025ec196b3ce2c,0x00077655ff4f017b,0x0003aacd5c148f61},{0x0000ce63f343d2f8,0x0001e0a87d1e368e,0x000045edbc019eea,0x0006979aed28d0d1,0x0004ad0785944f1b},{0x00063b34c3318301,0x0000e0e62d04d0b1,0x000676a233726701,0x00029e9a042d9769,0x0003aff0cb1d9028}}, {{0x0005c7eb3a20405e,0x0005fdb5aad930f8,0x0004a757e63b8c47,0x00028e9492972456,0x000110e7e86f4cd2},{0x0006430bf4c53505,0x000264c3e4507244,0x00074c9f19a39270,0x00073f84f799bc47,0x0002ccf9f732bd99},{0x0000d89ed603f5e4,0x00051e1604018af8,0x0000b8eedc4a2218,0x00051ba98b9384d0,0x00005c557e0b9693}}, {{0x0001ce311fc97e6f,0x0006023f3fb5db1f,0x0007b49775e8fc98,0x0003ad70adbf5045,0x0006e154c178fe98},{0x0006bbb089c20eb0,0x0006df41fb0b9eee,0x00051087ed87e16f,0x000102db5c9fa731,0x000289fef0841861},{0x00016336fed69abf,0x0004f066b929f9ec,0x0004e9ff9e6c5b93,0x00018c89bc4bb2ba,0x0006afbf642a95ca}}, {{0x0000de0c62f5d2c1,0x00049601cf734fb5,0x0006b5c38263f0f6,0x0004623ef5b56d06,0x0000db4b851b9503},{0x00055070f913a8cc,0x000765619eac2bbc,0x0003ab5225f47459,0x00076ced14ab5b48,0x00012c093cedb801},{0x00047f9308b8190f,0x000414235c621f82,0x00031f5ff41a5a76,0x0006736773aab96d,0x00033aa8799c6635}}, {{0x0007f51ebd085cf2,0x00012cfa67e3f5e1,0x0001800cf1e3d46a,0x00054337615ff0a8,0x000233c6f29e8e21},{0x0000f588fc156cb1,0x000363414da4f069,0x0007296ad9b68aea,0x0004d3711316ae43,0x000212cd0c1c8d58},{0x0004d5107f18c781,0x00064a4fd3a51a5e,0x0004f4cd0448bb37,0x000671d38543151e,0x0001db7778911914}}, {{0x000352397c6bc26f,0x00018a7aa0227bbe,0x0005e68cc1ea5f8b,0x0006fe3e3a7a1d5f,0x00031ad97ad26e2a},{0x00014769dd701ab6,0x00028339f1b4b667,0x0004ab214b8ae37b,0x00025f0aefa0b0fe,0x0007ae2ca8a017d2},{0x000017ed0920b962,0x000187e33b53b6fd,0x00055829907a1463,0x000641f248e0a792,0x0001ed1fc53a6622}} }; tor-0.2.7.6/src/ext/ed25519/donna/ed25519-donna-batchverify.h0000644000175000017500000001673412621363245017664 00000000000000/* Ed25519 batch verification */ #define max_batch_size 64 #define heap_batch_size ((max_batch_size * 2) + 1) /* which limb is the 128th bit in? */ static const size_t limb128bits = (128 + bignum256modm_bits_per_limb - 1) / bignum256modm_bits_per_limb; typedef size_t heap_index_t; typedef struct batch_heap_t { unsigned char r[heap_batch_size][16]; /* 128 bit random values */ ge25519 points[heap_batch_size]; bignum256modm scalars[heap_batch_size]; heap_index_t heap[heap_batch_size]; size_t size; } batch_heap; /* swap two values in the heap */ static void heap_swap(heap_index_t *heap, size_t a, size_t b) { heap_index_t temp; temp = heap[a]; heap[a] = heap[b]; heap[b] = temp; } /* add the scalar at the end of the list to the heap */ static void heap_insert_next(batch_heap *heap) { size_t node = heap->size, parent; heap_index_t *pheap = heap->heap; bignum256modm *scalars = heap->scalars; /* insert at the bottom */ pheap[node] = (heap_index_t)node; /* sift node up to its sorted spot */ parent = (node - 1) / 2; while (node && lt256_modm_batch(scalars[pheap[parent]], scalars[pheap[node]], bignum256modm_limb_size - 1)) { heap_swap(pheap, parent, node); node = parent; parent = (node - 1) / 2; } heap->size++; } /* update the heap when the root element is updated */ static void heap_updated_root(batch_heap *heap, size_t limbsize) { size_t node, parent, childr, childl; heap_index_t *pheap = heap->heap; bignum256modm *scalars = heap->scalars; /* sift root to the bottom */ parent = 0; node = 1; childl = 1; childr = 2; while ((childr < heap->size)) { node = lt256_modm_batch(scalars[pheap[childl]], scalars[pheap[childr]], limbsize) ? childr : childl; heap_swap(pheap, parent, node); parent = node; childl = (parent * 2) + 1; childr = childl + 1; } /* sift root back up to its sorted spot */ parent = (node - 1) / 2; while (node && lte256_modm_batch(scalars[pheap[parent]], scalars[pheap[node]], limbsize)) { heap_swap(pheap, parent, node); node = parent; parent = (node - 1) / 2; } } /* build the heap with count elements, count must be >= 3 */ static void heap_build(batch_heap *heap, size_t count) { heap->heap[0] = 0; heap->size = 0; while (heap->size < count) heap_insert_next(heap); } /* extend the heap to contain new_count elements */ static void heap_extend(batch_heap *heap, size_t new_count) { while (heap->size < new_count) heap_insert_next(heap); } /* get the top 2 elements of the heap */ static void heap_get_top2(batch_heap *heap, heap_index_t *max1, heap_index_t *max2, size_t limbsize) { heap_index_t h0 = heap->heap[0], h1 = heap->heap[1], h2 = heap->heap[2]; if (lt256_modm_batch(heap->scalars[h1], heap->scalars[h2], limbsize)) h1 = h2; *max1 = h0; *max2 = h1; } /* */ static void ge25519_multi_scalarmult_vartime_final(ge25519 *r, ge25519 *point, bignum256modm scalar) { const bignum256modm_element_t topbit = ((bignum256modm_element_t)1 << (bignum256modm_bits_per_limb - 1)); size_t limb = limb128bits; bignum256modm_element_t flag; if (isone256_modm_batch(scalar)) { /* this will happen most of the time after bos-carter */ *r = *point; return; } else if (iszero256_modm_batch(scalar)) { /* this will only happen if all scalars == 0 */ memset(r, 0, sizeof(*r)); r->y[0] = 1; r->z[0] = 1; return; } *r = *point; /* find the limb where first bit is set */ while (!scalar[limb]) limb--; /* find the first bit */ flag = topbit; while ((scalar[limb] & flag) == 0) flag >>= 1; /* exponentiate */ for (;;) { ge25519_double(r, r); if (scalar[limb] & flag) ge25519_add(r, r, point); flag >>= 1; if (!flag) { if (!limb--) break; flag = topbit; } } } /* count must be >= 5 */ static void ge25519_multi_scalarmult_vartime(ge25519 *r, batch_heap *heap, size_t count) { heap_index_t max1, max2; /* start with the full limb size */ size_t limbsize = bignum256modm_limb_size - 1; /* whether the heap has been extended to include the 128 bit scalars */ int extended = 0; /* grab an odd number of scalars to build the heap, unknown limb sizes */ heap_build(heap, ((count + 1) / 2) | 1); for (;;) { heap_get_top2(heap, &max1, &max2, limbsize); /* only one scalar remaining, we're done */ if (iszero256_modm_batch(heap->scalars[max2])) break; /* exhausted another limb? */ if (!heap->scalars[max1][limbsize]) limbsize -= 1; /* can we extend to the 128 bit scalars? */ if (!extended && isatmost128bits256_modm_batch(heap->scalars[max1])) { heap_extend(heap, count); heap_get_top2(heap, &max1, &max2, limbsize); extended = 1; } sub256_modm_batch(heap->scalars[max1], heap->scalars[max1], heap->scalars[max2], limbsize); ge25519_add(&heap->points[max2], &heap->points[max2], &heap->points[max1]); heap_updated_root(heap, limbsize); } ge25519_multi_scalarmult_vartime_final(r, &heap->points[max1], heap->scalars[max1]); } /* not actually used for anything other than testing */ unsigned char batch_point_buffer[3][32]; static int ge25519_is_neutral_vartime(const ge25519 *p) { static const unsigned char zero[32] = {0}; unsigned char point_buffer[3][32]; curve25519_contract(point_buffer[0], p->x); curve25519_contract(point_buffer[1], p->y); curve25519_contract(point_buffer[2], p->z); memcpy(batch_point_buffer[1], point_buffer[1], 32); return (memcmp(point_buffer[0], zero, 32) == 0) && (memcmp(point_buffer[1], point_buffer[2], 32) == 0); } int ED25519_FN(ed25519_sign_open_batch) (const unsigned char **m, size_t *mlen, const unsigned char **pk, const unsigned char **RS, size_t num, int *valid) { batch_heap ALIGN(16) batch; ge25519 ALIGN(16) p; bignum256modm *r_scalars; size_t i, batchsize; unsigned char hram[64]; int ret = 0; for (i = 0; i < num; i++) valid[i] = 1; while (num > 3) { batchsize = (num > max_batch_size) ? max_batch_size : num; /* generate r (scalars[batchsize+1]..scalars[2*batchsize] */ ED25519_FN(ed25519_randombytes_unsafe) (batch.r, batchsize * 16); r_scalars = &batch.scalars[batchsize + 1]; for (i = 0; i < batchsize; i++) expand256_modm(r_scalars[i], batch.r[i], 16); /* compute scalars[0] = ((r1s1 + r2s2 + ...)) */ for (i = 0; i < batchsize; i++) { expand256_modm(batch.scalars[i], RS[i] + 32, 32); mul256_modm(batch.scalars[i], batch.scalars[i], r_scalars[i]); } for (i = 1; i < batchsize; i++) add256_modm(batch.scalars[0], batch.scalars[0], batch.scalars[i]); /* compute scalars[1]..scalars[batchsize] as r[i]*H(R[i],A[i],m[i]) */ for (i = 0; i < batchsize; i++) { ed25519_hram(hram, RS[i], pk[i], m[i], mlen[i]); expand256_modm(batch.scalars[i+1], hram, 64); mul256_modm(batch.scalars[i+1], batch.scalars[i+1], r_scalars[i]); } /* compute points */ batch.points[0] = ge25519_basepoint; for (i = 0; i < batchsize; i++) if (!ge25519_unpack_negative_vartime(&batch.points[i+1], pk[i])) goto fallback; for (i = 0; i < batchsize; i++) if (!ge25519_unpack_negative_vartime(&batch.points[batchsize+i+1], RS[i])) goto fallback; ge25519_multi_scalarmult_vartime(&p, &batch, (batchsize * 2) + 1); if (!ge25519_is_neutral_vartime(&p)) { ret |= 2; fallback: for (i = 0; i < batchsize; i++) { valid[i] = ED25519_FN(ed25519_sign_open) (m[i], mlen[i], pk[i], RS[i]) ? 0 : 1; ret |= (valid[i] ^ 1); } } m += batchsize; mlen += batchsize; pk += batchsize; RS += batchsize; num -= batchsize; valid += batchsize; } for (i = 0; i < num; i++) { valid[i] = ED25519_FN(ed25519_sign_open) (m[i], mlen[i], pk[i], RS[i]) ? 0 : 1; ret |= (valid[i] ^ 1); } return ret; } tor-0.2.7.6/src/ext/ed25519/donna/ed25519-donna-impl-sse2.h0000644000175000017500000002704712621363245017170 00000000000000/* conversions */ static void ge25519_p1p1_to_partial(ge25519 *r, const ge25519_p1p1 *p) { packed64bignum25519 ALIGN(16) xz, tt, xzout; curve25519_mul(r->y, p->y, p->z); curve25519_tangle64(xz, p->x, p->z); curve25519_tangleone64(tt, p->t); curve25519_mul_packed64(xzout, xz, tt); curve25519_untangle64(r->x, r->z, xzout); } static void ge25519_p1p1_to_full(ge25519 *r, const ge25519_p1p1 *p) { packed64bignum25519 ALIGN(16) zy, xt, xx, zz, ty; curve25519_tangle64(ty, p->t, p->y); curve25519_tangleone64(xx, p->x); curve25519_mul_packed64(xt, xx, ty); curve25519_untangle64(r->x, r->t, xt); curve25519_tangleone64(zz, p->z); curve25519_mul_packed64(zy, zz, ty); curve25519_untangle64(r->z, r->y, zy); } static void ge25519_full_to_pniels(ge25519_pniels *p, const ge25519 *r) { curve25519_sub(p->ysubx, r->y, r->x); curve25519_add(p->xaddy, r->x, r->y); curve25519_copy(p->z, r->z); curve25519_mul(p->t2d, r->t, ge25519_ec2d); } /* adding & doubling */ static void ge25519_add_p1p1(ge25519_p1p1 *r, const ge25519 *p, const ge25519 *q) { bignum25519 ALIGN(16) a,b,c,d; packed32bignum25519 ALIGN(16) xx, yy, yypxx, yymxx, bd, ac, bdmac, bdpac; packed64bignum25519 ALIGN(16) at, bu, atbu, ptz, qtz, cd; curve25519_tangle32(yy, p->y, q->y); curve25519_tangle32(xx, p->x, q->x); curve25519_add_packed32(yypxx, yy, xx); curve25519_sub_packed32(yymxx, yy, xx); curve25519_tangle64_from32(at, bu, yymxx, yypxx); curve25519_mul_packed64(atbu, at, bu); curve25519_untangle64(a, b, atbu); curve25519_tangle64(ptz, p->t, p->z); curve25519_tangle64(qtz, q->t, q->z); curve25519_mul_packed64(cd, ptz, qtz); curve25519_untangle64(c, d, cd); curve25519_mul(c, c, ge25519_ec2d); curve25519_add_reduce(d, d, d); /* reduce, so no after_basic is needed later */ curve25519_tangle32(bd, b, d); curve25519_tangle32(ac, a, c); curve25519_sub_packed32(bdmac, bd, ac); curve25519_add_packed32(bdpac, bd, ac); curve25519_untangle32(r->x, r->t, bdmac); curve25519_untangle32(r->y, r->z, bdpac); } static void ge25519_double_p1p1(ge25519_p1p1 *r, const ge25519 *p) { bignum25519 ALIGN(16) a,b,c,x; packed64bignum25519 ALIGN(16) xy, zx, ab, cx; packed32bignum25519 ALIGN(16) xc, yz, xt, yc, ac, bc; curve25519_add(x, p->x, p->y); curve25519_tangle64(xy, p->x, p->y); curve25519_square_packed64(ab, xy); curve25519_untangle64(a, b, ab); curve25519_tangle64(zx, p->z, x); curve25519_square_packed64(cx, zx); curve25519_untangle64(c, x, cx); curve25519_tangle32(bc, b, c); curve25519_tangle32(ac, a, c); curve25519_add_reduce_packed32(yc, bc, ac); curve25519_untangle32(r->y, c, yc); curve25519_sub(r->z, b, a); curve25519_tangle32(yz, r->y, r->z); curve25519_tangle32(xc, x, c); curve25519_sub_after_basic_packed32(xt, xc, yz); curve25519_untangle32(r->x, r->t, xt); } static void ge25519_nielsadd2_p1p1(ge25519_p1p1 *r, const ge25519 *p, const ge25519_niels *q, unsigned char signbit) { const bignum25519 *qb = (const bignum25519 *)q; bignum25519 *rb = (bignum25519 *)r; bignum25519 ALIGN(16) a,b,c; packed64bignum25519 ALIGN(16) ab, yx, aybx; packed32bignum25519 ALIGN(16) bd, ac, bdac; curve25519_sub(a, p->y, p->x); curve25519_add(b, p->y, p->x); curve25519_tangle64(ab, a, b); curve25519_tangle64(yx, qb[signbit], qb[signbit^1]); curve25519_mul_packed64(aybx, ab, yx); curve25519_untangle64(a, b, aybx); curve25519_add(r->y, b, a); curve25519_add_reduce(r->t, p->z, p->z); curve25519_mul(c, p->t, q->t2d); curve25519_copy(r->z, r->t); curve25519_add(rb[2+signbit], rb[2+signbit], c); curve25519_tangle32(bd, b, rb[2+(signbit^1)]); curve25519_tangle32(ac, a, c); curve25519_sub_packed32(bdac, bd, ac); curve25519_untangle32(r->x, rb[2+(signbit^1)], bdac); } static void ge25519_pnielsadd_p1p1(ge25519_p1p1 *r, const ge25519 *p, const ge25519_pniels *q, unsigned char signbit) { const bignum25519 *qb = (const bignum25519 *)q; bignum25519 *rb = (bignum25519 *)r; bignum25519 ALIGN(16) a,b,c; packed64bignum25519 ALIGN(16) ab, yx, aybx, zt, zt2d, tc; packed32bignum25519 ALIGN(16) bd, ac, bdac; curve25519_sub(a, p->y, p->x); curve25519_add(b, p->y, p->x); curve25519_tangle64(ab, a, b); curve25519_tangle64(yx, qb[signbit], qb[signbit^1]); curve25519_mul_packed64(aybx, ab, yx); curve25519_untangle64(a, b, aybx); curve25519_add(r->y, b, a); curve25519_tangle64(zt, p->z, p->t); curve25519_tangle64(zt2d, q->z, q->t2d); curve25519_mul_packed64(tc, zt, zt2d); curve25519_untangle64(r->t, c, tc); curve25519_add_reduce(r->t, r->t, r->t); curve25519_copy(r->z, r->t); curve25519_add(rb[2+signbit], rb[2+signbit], c); curve25519_tangle32(bd, b, rb[2+(signbit^1)]); curve25519_tangle32(ac, a, c); curve25519_sub_packed32(bdac, bd, ac); curve25519_untangle32(r->x, rb[2+(signbit^1)], bdac); } static void ge25519_double(ge25519 *r, const ge25519 *p) { ge25519_p1p1 ALIGN(16) t; ge25519_double_p1p1(&t, p); ge25519_p1p1_to_full(r, &t); } static void ge25519_add(ge25519 *r, const ge25519 *p, const ge25519 *q) { ge25519_p1p1 ALIGN(16) t; ge25519_add_p1p1(&t, p, q); ge25519_p1p1_to_full(r, &t); } static void ge25519_double_partial(ge25519 *r, const ge25519 *p) { ge25519_p1p1 ALIGN(16) t; ge25519_double_p1p1(&t, p); ge25519_p1p1_to_partial(r, &t); } static void ge25519_nielsadd2(ge25519 *r, const ge25519_niels *q) { packed64bignum25519 ALIGN(16) ab, yx, aybx, eg, ff, hh, xz, ty; packed32bignum25519 ALIGN(16) bd, ac, bdac; bignum25519 ALIGN(16) a,b,c,d,e,f,g,h; curve25519_sub(a, r->y, r->x); curve25519_add(b, r->y, r->x); curve25519_tangle64(ab, a, b); curve25519_tangle64(yx, q->ysubx, q->xaddy); curve25519_mul_packed64(aybx, ab, yx); curve25519_untangle64(a, b, aybx); curve25519_add(h, b, a); curve25519_add_reduce(d, r->z, r->z); curve25519_mul(c, r->t, q->t2d); curve25519_add(g, d, c); /* d is reduced, so no need for after_basic */ curve25519_tangle32(bd, b, d); curve25519_tangle32(ac, a, c); curve25519_sub_packed32(bdac, bd, ac); /* d is reduced, so no need for after_basic */ curve25519_untangle32(e, f, bdac); curve25519_tangle64(eg, e, g); curve25519_tangleone64(ff, f); curve25519_mul_packed64(xz, eg, ff); curve25519_untangle64(r->x, r->z, xz); curve25519_tangleone64(hh, h); curve25519_mul_packed64(ty, eg, hh); curve25519_untangle64(r->t, r->y, ty); } static void ge25519_pnielsadd(ge25519_pniels *r, const ge25519 *p, const ge25519_pniels *q) { ge25519_p1p1 ALIGN(16) t; ge25519 ALIGN(16) f; ge25519_pnielsadd_p1p1(&t, p, q, 0); ge25519_p1p1_to_full(&f, &t); ge25519_full_to_pniels(r, &f); } /* pack & unpack */ static void ge25519_pack(unsigned char r[32], const ge25519 *p) { bignum25519 ALIGN(16) tx, ty, zi; unsigned char parity[32]; curve25519_recip(zi, p->z); curve25519_mul(tx, p->x, zi); curve25519_mul(ty, p->y, zi); curve25519_contract(r, ty); curve25519_contract(parity, tx); r[31] ^= ((parity[0] & 1) << 7); } static int ge25519_unpack_negative_vartime(ge25519 *r, const unsigned char p[32]) { static const bignum25519 ALIGN(16) one = {1}; static const unsigned char zero[32] = {0}; unsigned char parity = p[31] >> 7; unsigned char check[32]; bignum25519 ALIGN(16) t, root, num, den, d3; curve25519_expand(r->y, p); curve25519_copy(r->z, one); curve25519_square_times(num, r->y, 1); /* x = y^2 */ curve25519_mul(den, num, ge25519_ecd); /* den = dy^2 */ curve25519_sub_reduce(num, num, r->z); /* x = y^2 - 1 */ curve25519_add(den, den, r->z); /* den = dy^2 + 1 */ /* Computation of sqrt(num/den) */ /* 1.: computation of num^((p-5)/8)*den^((7p-35)/8) = (num*den^7)^((p-5)/8) */ curve25519_square_times(t, den, 1); curve25519_mul(d3, t, den); curve25519_square_times(r->x, d3, 1); curve25519_mul(r->x, r->x, den); curve25519_mul(r->x, r->x, num); curve25519_pow_two252m3(r->x, r->x); /* 2. computation of r->x = t * num * den^3 */ curve25519_mul(r->x, r->x, d3); curve25519_mul(r->x, r->x, num); /* 3. Check if either of the roots works: */ curve25519_square_times(t, r->x, 1); curve25519_mul(t, t, den); curve25519_copy(root, t); curve25519_sub_reduce(root, root, num); curve25519_contract(check, root); if (!ed25519_verify(check, zero, 32)) { curve25519_add_reduce(t, t, num); curve25519_contract(check, t); if (!ed25519_verify(check, zero, 32)) return 0; curve25519_mul(r->x, r->x, ge25519_sqrtneg1); } curve25519_contract(check, r->x); if ((check[0] & 1) == parity) { curve25519_copy(t, r->x); curve25519_neg(r->x, t); } curve25519_mul(r->t, r->x, r->y); return 1; } /* scalarmults */ #define S1_SWINDOWSIZE 5 #define S1_TABLE_SIZE (1<<(S1_SWINDOWSIZE-2)) #define S2_SWINDOWSIZE 7 #define S2_TABLE_SIZE (1<<(S2_SWINDOWSIZE-2)) static void ge25519_double_scalarmult_vartime(ge25519 *r, const ge25519 *p1, const bignum256modm s1, const bignum256modm s2) { signed char slide1[256], slide2[256]; ge25519_pniels ALIGN(16) pre1[S1_TABLE_SIZE]; ge25519 ALIGN(16) d1; ge25519_p1p1 ALIGN(16) t; int32_t i; contract256_slidingwindow_modm(slide1, s1, S1_SWINDOWSIZE); contract256_slidingwindow_modm(slide2, s2, S2_SWINDOWSIZE); ge25519_double(&d1, p1); ge25519_full_to_pniels(pre1, p1); for (i = 0; i < S1_TABLE_SIZE - 1; i++) ge25519_pnielsadd(&pre1[i+1], &d1, &pre1[i]); /* set neutral */ memset(r, 0, sizeof(ge25519)); r->y[0] = 1; r->z[0] = 1; i = 255; while ((i >= 0) && !(slide1[i] | slide2[i])) i--; for (; i >= 0; i--) { ge25519_double_p1p1(&t, r); if (slide1[i]) { ge25519_p1p1_to_full(r, &t); ge25519_pnielsadd_p1p1(&t, r, &pre1[abs(slide1[i]) / 2], (unsigned char)slide1[i] >> 7); } if (slide2[i]) { ge25519_p1p1_to_full(r, &t); ge25519_nielsadd2_p1p1(&t, r, &ge25519_niels_sliding_multiples[abs(slide2[i]) / 2], (unsigned char)slide2[i] >> 7); } ge25519_p1p1_to_partial(r, &t); } } #if !defined(HAVE_GE25519_SCALARMULT_BASE_CHOOSE_NIELS) static uint32_t ge25519_windowb_equal(uint32_t b, uint32_t c) { return ((b ^ c) - 1) >> 31; } static void ge25519_scalarmult_base_choose_niels(ge25519_niels *t, const uint8_t table[256][96], uint32_t pos, signed char b) { bignum25519 ALIGN(16) neg; uint32_t sign = (uint32_t)((unsigned char)b >> 7); uint32_t mask = ~(sign - 1); uint32_t u = (b + mask) ^ mask; uint32_t i; /* ysubx, xaddy, t2d in packed form. initialize to ysubx = 1, xaddy = 1, t2d = 0 */ uint8_t ALIGN(16) packed[96] = {0}; packed[0] = 1; packed[32] = 1; for (i = 0; i < 8; i++) curve25519_move_conditional_bytes(packed, table[(pos * 8) + i], ge25519_windowb_equal(u, i + 1)); /* expand in to t */ curve25519_expand(t->ysubx, packed + 0); curve25519_expand(t->xaddy, packed + 32); curve25519_expand(t->t2d , packed + 64); /* adjust for sign */ curve25519_swap_conditional(t->ysubx, t->xaddy, sign); curve25519_neg(neg, t->t2d); curve25519_swap_conditional(t->t2d, neg, sign); } #endif /* HAVE_GE25519_SCALARMULT_BASE_CHOOSE_NIELS */ static void ge25519_scalarmult_base_niels(ge25519 *r, const uint8_t table[256][96], const bignum256modm s) { signed char b[64]; uint32_t i; ge25519_niels ALIGN(16) t; contract256_window4_modm(b, s); ge25519_scalarmult_base_choose_niels(&t, table, 0, b[1]); curve25519_sub_reduce(r->x, t.xaddy, t.ysubx); curve25519_add_reduce(r->y, t.xaddy, t.ysubx); memset(r->z, 0, sizeof(bignum25519)); r->z[0] = 2; curve25519_copy(r->t, t.t2d); for (i = 3; i < 64; i += 2) { ge25519_scalarmult_base_choose_niels(&t, table, i / 2, b[i]); ge25519_nielsadd2(r, &t); } ge25519_double_partial(r, r); ge25519_double_partial(r, r); ge25519_double_partial(r, r); ge25519_double(r, r); ge25519_scalarmult_base_choose_niels(&t, table, 0, b[0]); curve25519_mul(t.t2d, t.t2d, ge25519_ecd); ge25519_nielsadd2(r, &t); for(i = 2; i < 64; i += 2) { ge25519_scalarmult_base_choose_niels(&t, table, i / 2, b[i]); ge25519_nielsadd2(r, &t); } } tor-0.2.7.6/src/ext/ed25519/donna/ed25519-donna-32bit-sse2.h0000644000175000017500000004432012621363245017143 00000000000000#if defined(ED25519_GCC_32BIT_SSE_CHOOSE) #define HAVE_GE25519_SCALARMULT_BASE_CHOOSE_NIELS DONNA_NOINLINE static void ge25519_scalarmult_base_choose_niels(ge25519_niels *t, const uint8_t table[256][96], uint32_t pos, signed char b) { int32_t breg = (int32_t)b; uint32_t sign = (uint32_t)breg >> 31; uint32_t mask = ~(sign - 1); uint32_t u = (breg + mask) ^ mask; __asm__ __volatile__ ( /* ysubx+xaddy */ "movl %0, %%eax ;\n" "movd %%eax, %%xmm6 ;\n" "pshufd $0x00, %%xmm6, %%xmm6 ;\n" "pxor %%xmm0, %%xmm0 ;\n" "pxor %%xmm1, %%xmm1 ;\n" "pxor %%xmm2, %%xmm2 ;\n" "pxor %%xmm3, %%xmm3 ;\n" /* 0 */ "movl $0, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movl $1, %%ecx ;\n" "movd %%ecx, %%xmm4 ;\n" "pxor %%xmm5, %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "por %%xmm4, %%xmm0 ;\n" "por %%xmm5, %%xmm1 ;\n" "por %%xmm4, %%xmm2 ;\n" "por %%xmm5, %%xmm3 ;\n" /* 1 */ "movl $1, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movdqa 0(%1), %%xmm4 ;\n" "movdqa 16(%1), %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "por %%xmm4, %%xmm0 ;\n" "por %%xmm5, %%xmm1 ;\n" "movdqa 32(%1), %%xmm4 ;\n" "movdqa 48(%1), %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "por %%xmm4, %%xmm2 ;\n" "por %%xmm5, %%xmm3 ;\n" /* 2 */ "movl $2, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movdqa 96(%1), %%xmm4 ;\n" "movdqa 112(%1), %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "por %%xmm4, %%xmm0 ;\n" "por %%xmm5, %%xmm1 ;\n" "movdqa 128(%1), %%xmm4 ;\n" "movdqa 144(%1), %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "por %%xmm4, %%xmm2 ;\n" "por %%xmm5, %%xmm3 ;\n" /* 3 */ "movl $3, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movdqa 192(%1), %%xmm4 ;\n" "movdqa 208(%1), %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "por %%xmm4, %%xmm0 ;\n" "por %%xmm5, %%xmm1 ;\n" "movdqa 224(%1), %%xmm4 ;\n" "movdqa 240(%1), %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "por %%xmm4, %%xmm2 ;\n" "por %%xmm5, %%xmm3 ;\n" /* 4 */ "movl $4, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movdqa 288(%1), %%xmm4 ;\n" "movdqa 304(%1), %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "por %%xmm4, %%xmm0 ;\n" "por %%xmm5, %%xmm1 ;\n" "movdqa 320(%1), %%xmm4 ;\n" "movdqa 336(%1), %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "por %%xmm4, %%xmm2 ;\n" "por %%xmm5, %%xmm3 ;\n" /* 5 */ "movl $5, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movdqa 384(%1), %%xmm4 ;\n" "movdqa 400(%1), %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "por %%xmm4, %%xmm0 ;\n" "por %%xmm5, %%xmm1 ;\n" "movdqa 416(%1), %%xmm4 ;\n" "movdqa 432(%1), %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "por %%xmm4, %%xmm2 ;\n" "por %%xmm5, %%xmm3 ;\n" /* 6 */ "movl $6, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movdqa 480(%1), %%xmm4 ;\n" "movdqa 496(%1), %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "por %%xmm4, %%xmm0 ;\n" "por %%xmm5, %%xmm1 ;\n" "movdqa 512(%1), %%xmm4 ;\n" "movdqa 528(%1), %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "por %%xmm4, %%xmm2 ;\n" "por %%xmm5, %%xmm3 ;\n" /* 7 */ "movl $7, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movdqa 576(%1), %%xmm4 ;\n" "movdqa 592(%1), %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "por %%xmm4, %%xmm0 ;\n" "por %%xmm5, %%xmm1 ;\n" "movdqa 608(%1), %%xmm4 ;\n" "movdqa 624(%1), %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "por %%xmm4, %%xmm2 ;\n" "por %%xmm5, %%xmm3 ;\n" /* 8 */ "movl $8, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movdqa 672(%1), %%xmm4 ;\n" "movdqa 688(%1), %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "por %%xmm4, %%xmm0 ;\n" "por %%xmm5, %%xmm1 ;\n" "movdqa 704(%1), %%xmm4 ;\n" "movdqa 720(%1), %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "por %%xmm4, %%xmm2 ;\n" "por %%xmm5, %%xmm3 ;\n" /* conditional swap based on sign */ "movl %3, %%ecx ;\n" "movl %2, %%eax ;\n" "xorl $1, %%ecx ;\n" "movd %%ecx, %%xmm6 ;\n" "pxor %%xmm7, %%xmm7 ;\n" "pshufd $0x00, %%xmm6, %%xmm6 ;\n" "pxor %%xmm0, %%xmm2 ;\n" "pxor %%xmm1, %%xmm3 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movdqa %%xmm2, %%xmm4 ;\n" "movdqa %%xmm3, %%xmm5 ;\n" "pand %%xmm7, %%xmm4 ;\n" "pand %%xmm7, %%xmm5 ;\n" "pxor %%xmm4, %%xmm0 ;\n" "pxor %%xmm5, %%xmm1 ;\n" "pxor %%xmm0, %%xmm2 ;\n" "pxor %%xmm1, %%xmm3 ;\n" /* store ysubx */ "movd %%xmm0, %%ecx ;\n" "movl %%ecx, %%edx ;\n" "pshufd $0x39, %%xmm0, %%xmm0 ;\n" "andl $0x3ffffff, %%ecx ;\n" "movl %%ecx, 0(%%eax) ;\n" "movd %%xmm0, %%ecx ;\n" "pshufd $0x39, %%xmm0, %%xmm0 ;\n" "shrdl $26, %%ecx, %%edx ;\n" "andl $0x1ffffff, %%edx ;\n" "movl %%edx, 4(%%eax) ;\n" "movd %%xmm0, %%edx ;\n" "pshufd $0x39, %%xmm0, %%xmm0 ;\n" "shrdl $19, %%edx, %%ecx ;\n" "andl $0x3ffffff, %%ecx ;\n" "movl %%ecx, 8(%%eax) ;\n" "movd %%xmm0, %%ecx ;\n" "shrdl $13, %%ecx, %%edx ;\n" "andl $0x1ffffff, %%edx ;\n" "movl %%edx, 12(%%eax) ;\n" "movd %%xmm1, %%edx ;\n" "pshufd $0x39, %%xmm1, %%xmm1 ;\n" "shrl $6, %%ecx ;\n" "andl $0x3ffffff, %%ecx ;\n" "movl %%ecx, 16(%%eax) ;\n" "movl %%edx, %%ecx ;\n" "andl $0x1ffffff, %%edx ;\n" "movl %%edx, 20(%%eax) ;\n" "movd %%xmm1, %%edx ;\n" "pshufd $0x39, %%xmm1, %%xmm1 ;\n" "shrdl $25, %%edx, %%ecx ;\n" "andl $0x3ffffff, %%ecx ;\n" "movl %%ecx, 24(%%eax) ;\n" "movd %%xmm1, %%ecx ;\n" "pshufd $0x39, %%xmm1, %%xmm1 ;\n" "shrdl $19, %%ecx, %%edx ;\n" "andl $0x1ffffff, %%edx ;\n" "movl %%edx, 28(%%eax) ;\n" "movd %%xmm1, %%edx ;\n" "shrdl $12, %%edx, %%ecx ;\n" "andl $0x3ffffff, %%ecx ;\n" "movl %%ecx, 32(%%eax) ;\n" "shrl $6, %%edx ;\n" "andl $0x1ffffff, %%edx ;\n" "xorl %%ecx, %%ecx ;\n" "movl %%edx, 36(%%eax) ;\n" "movl %%ecx, 40(%%eax) ;\n" "movl %%ecx, 44(%%eax) ;\n" /* store xaddy */ "addl $48, %%eax ;\n" "movdqa %%xmm2, %%xmm0 ;\n" "movdqa %%xmm3, %%xmm1 ;\n" "movd %%xmm0, %%ecx ;\n" "movl %%ecx, %%edx ;\n" "pshufd $0x39, %%xmm0, %%xmm0 ;\n" "andl $0x3ffffff, %%ecx ;\n" "movl %%ecx, 0(%%eax) ;\n" "movd %%xmm0, %%ecx ;\n" "pshufd $0x39, %%xmm0, %%xmm0 ;\n" "shrdl $26, %%ecx, %%edx ;\n" "andl $0x1ffffff, %%edx ;\n" "movl %%edx, 4(%%eax) ;\n" "movd %%xmm0, %%edx ;\n" "pshufd $0x39, %%xmm0, %%xmm0 ;\n" "shrdl $19, %%edx, %%ecx ;\n" "andl $0x3ffffff, %%ecx ;\n" "movl %%ecx, 8(%%eax) ;\n" "movd %%xmm0, %%ecx ;\n" "shrdl $13, %%ecx, %%edx ;\n" "andl $0x1ffffff, %%edx ;\n" "movl %%edx, 12(%%eax) ;\n" "movd %%xmm1, %%edx ;\n" "pshufd $0x39, %%xmm1, %%xmm1 ;\n" "shrl $6, %%ecx ;\n" "andl $0x3ffffff, %%ecx ;\n" "movl %%ecx, 16(%%eax) ;\n" "movl %%edx, %%ecx ;\n" "andl $0x1ffffff, %%edx ;\n" "movl %%edx, 20(%%eax) ;\n" "movd %%xmm1, %%edx ;\n" "pshufd $0x39, %%xmm1, %%xmm1 ;\n" "shrdl $25, %%edx, %%ecx ;\n" "andl $0x3ffffff, %%ecx ;\n" "movl %%ecx, 24(%%eax) ;\n" "movd %%xmm1, %%ecx ;\n" "pshufd $0x39, %%xmm1, %%xmm1 ;\n" "shrdl $19, %%ecx, %%edx ;\n" "andl $0x1ffffff, %%edx ;\n" "movl %%edx, 28(%%eax) ;\n" "movd %%xmm1, %%edx ;\n" "shrdl $12, %%edx, %%ecx ;\n" "andl $0x3ffffff, %%ecx ;\n" "movl %%ecx, 32(%%eax) ;\n" "shrl $6, %%edx ;\n" "andl $0x1ffffff, %%edx ;\n" "xorl %%ecx, %%ecx ;\n" "movl %%edx, 36(%%eax) ;\n" "movl %%ecx, 40(%%eax) ;\n" "movl %%ecx, 44(%%eax) ;\n" /* t2d */ "movl %0, %%eax ;\n" "movd %%eax, %%xmm6 ;\n" "pshufd $0x00, %%xmm6, %%xmm6 ;\n" "pxor %%xmm0, %%xmm0 ;\n" "pxor %%xmm1, %%xmm1 ;\n" /* 0 */ "movl $0, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "pxor %%xmm0, %%xmm0 ;\n" "pxor %%xmm1, %%xmm1 ;\n" /* 1 */ "movl $1, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movdqa 64(%1), %%xmm3 ;\n" "movdqa 80(%1), %%xmm4 ;\n" "pand %%xmm7, %%xmm3 ;\n" "pand %%xmm7, %%xmm4 ;\n" "por %%xmm3, %%xmm0 ;\n" "por %%xmm4, %%xmm1 ;\n" /* 2 */ "movl $2, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movdqa 160(%1), %%xmm3 ;\n" "movdqa 176(%1), %%xmm4 ;\n" "pand %%xmm7, %%xmm3 ;\n" "pand %%xmm7, %%xmm4 ;\n" "por %%xmm3, %%xmm0 ;\n" "por %%xmm4, %%xmm1 ;\n" /* 3 */ "movl $3, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movdqa 256(%1), %%xmm3 ;\n" "movdqa 272(%1), %%xmm4 ;\n" "pand %%xmm7, %%xmm3 ;\n" "pand %%xmm7, %%xmm4 ;\n" "por %%xmm3, %%xmm0 ;\n" "por %%xmm4, %%xmm1 ;\n" /* 4 */ "movl $4, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movdqa 352(%1), %%xmm3 ;\n" "movdqa 368(%1), %%xmm4 ;\n" "pand %%xmm7, %%xmm3 ;\n" "pand %%xmm7, %%xmm4 ;\n" "por %%xmm3, %%xmm0 ;\n" "por %%xmm4, %%xmm1 ;\n" /* 5 */ "movl $5, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movdqa 448(%1), %%xmm3 ;\n" "movdqa 464(%1), %%xmm4 ;\n" "pand %%xmm7, %%xmm3 ;\n" "pand %%xmm7, %%xmm4 ;\n" "por %%xmm3, %%xmm0 ;\n" "por %%xmm4, %%xmm1 ;\n" /* 6 */ "movl $6, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movdqa 544(%1), %%xmm3 ;\n" "movdqa 560(%1), %%xmm4 ;\n" "pand %%xmm7, %%xmm3 ;\n" "pand %%xmm7, %%xmm4 ;\n" "por %%xmm3, %%xmm0 ;\n" "por %%xmm4, %%xmm1 ;\n" /* 7 */ "movl $7, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movdqa 640(%1), %%xmm3 ;\n" "movdqa 656(%1), %%xmm4 ;\n" "pand %%xmm7, %%xmm3 ;\n" "pand %%xmm7, %%xmm4 ;\n" "por %%xmm3, %%xmm0 ;\n" "por %%xmm4, %%xmm1 ;\n" /* 8 */ "movl $8, %%eax ;\n" "movd %%eax, %%xmm7 ;\n" "pshufd $0x00, %%xmm7, %%xmm7 ;\n" "pcmpeqd %%xmm6, %%xmm7 ;\n" "movdqa 736(%1), %%xmm3 ;\n" "movdqa 752(%1), %%xmm4 ;\n" "pand %%xmm7, %%xmm3 ;\n" "pand %%xmm7, %%xmm4 ;\n" "por %%xmm3, %%xmm0 ;\n" "por %%xmm4, %%xmm1 ;\n" /* store t2d */ "movl %2, %%eax ;\n" "addl $96, %%eax ;\n" "movd %%xmm0, %%ecx ;\n" "movl %%ecx, %%edx ;\n" "pshufd $0x39, %%xmm0, %%xmm0 ;\n" "andl $0x3ffffff, %%ecx ;\n" "movl %%ecx, 0(%%eax) ;\n" "movd %%xmm0, %%ecx ;\n" "pshufd $0x39, %%xmm0, %%xmm0 ;\n" "shrdl $26, %%ecx, %%edx ;\n" "andl $0x1ffffff, %%edx ;\n" "movl %%edx, 4(%%eax) ;\n" "movd %%xmm0, %%edx ;\n" "pshufd $0x39, %%xmm0, %%xmm0 ;\n" "shrdl $19, %%edx, %%ecx ;\n" "andl $0x3ffffff, %%ecx ;\n" "movl %%ecx, 8(%%eax) ;\n" "movd %%xmm0, %%ecx ;\n" "shrdl $13, %%ecx, %%edx ;\n" "andl $0x1ffffff, %%edx ;\n" "movl %%edx, 12(%%eax) ;\n" "movd %%xmm1, %%edx ;\n" "pshufd $0x39, %%xmm1, %%xmm1 ;\n" "shrl $6, %%ecx ;\n" "andl $0x3ffffff, %%ecx ;\n" "movl %%ecx, 16(%%eax) ;\n" "movl %%edx, %%ecx ;\n" "andl $0x1ffffff, %%edx ;\n" "movl %%edx, 20(%%eax) ;\n" "movd %%xmm1, %%edx ;\n" "pshufd $0x39, %%xmm1, %%xmm1 ;\n" "shrdl $25, %%edx, %%ecx ;\n" "andl $0x3ffffff, %%ecx ;\n" "movl %%ecx, 24(%%eax) ;\n" "movd %%xmm1, %%ecx ;\n" "pshufd $0x39, %%xmm1, %%xmm1 ;\n" "shrdl $19, %%ecx, %%edx ;\n" "andl $0x1ffffff, %%edx ;\n" "movl %%edx, 28(%%eax) ;\n" "movd %%xmm1, %%edx ;\n" "movd %%xmm1, %%edx ;\n" "shrdl $12, %%edx, %%ecx ;\n" "andl $0x3ffffff, %%ecx ;\n" "movl %%ecx, 32(%%eax) ;\n" "shrl $6, %%edx ;\n" "andl $0x1ffffff, %%edx ;\n" "xorl %%ecx, %%ecx ;\n" "movl %%edx, 36(%%eax) ;\n" "movl %%ecx, 40(%%eax) ;\n" "movl %%ecx, 44(%%eax) ;\n" "movdqa 0(%%eax), %%xmm0 ;\n" "movdqa 16(%%eax), %%xmm1 ;\n" "movdqa 32(%%eax), %%xmm2 ;\n" /* conditionally negate t2d */ /* set up 2p in to 3/4 */ "movl $0x7ffffda, %%ecx ;\n" "movl $0x3fffffe, %%edx ;\n" "movd %%ecx, %%xmm3 ;\n" "movd %%edx, %%xmm5 ;\n" "movl $0x7fffffe, %%ecx ;\n" "movd %%ecx, %%xmm4 ;\n" "punpckldq %%xmm5, %%xmm3 ;\n" "punpckldq %%xmm5, %%xmm4 ;\n" "punpcklqdq %%xmm4, %%xmm3 ;\n" "movdqa %%xmm4, %%xmm5 ;\n" "punpcklqdq %%xmm4, %%xmm4 ;\n" /* subtract and conditionally move */ "movl %3, %%ecx ;\n" "sub $1, %%ecx ;\n" "movd %%ecx, %%xmm6 ;\n" "pshufd $0x00, %%xmm6, %%xmm6 ;\n" "movdqa %%xmm6, %%xmm7 ;\n" "psubd %%xmm0, %%xmm3 ;\n" "psubd %%xmm1, %%xmm4 ;\n" "psubd %%xmm2, %%xmm5 ;\n" "pand %%xmm6, %%xmm0 ;\n" "pand %%xmm6, %%xmm1 ;\n" "pand %%xmm6, %%xmm2 ;\n" "pandn %%xmm3, %%xmm6 ;\n" "movdqa %%xmm7, %%xmm3 ;\n" "pandn %%xmm4, %%xmm7 ;\n" "pandn %%xmm5, %%xmm3 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm3, %%xmm2 ;\n" /* store */ "movdqa %%xmm0, 0(%%eax) ;\n" "movdqa %%xmm1, 16(%%eax) ;\n" "movdqa %%xmm2, 32(%%eax) ;\n" : : "m"(u), "r"(&table[pos * 8]), "m"(t), "m"(sign) /* %0 = u, %1 = table, %2 = t, %3 = sign */ : "%eax", "%ecx", "%edx", "%xmm0", "%xmm1", "%xmm2", "%xmm3", "%xmm4", "%xmm5", "%xmm6", "%xmm7", "cc", "memory" ); } #endif /* defined(ED25519_GCC_32BIT_SSE_CHOOSE) */ tor-0.2.7.6/src/ext/ed25519/donna/ed25519-donna-64bit-x86-32bit.h0000644000175000017500000003763112621363245017651 00000000000000#if defined(ED25519_GCC_64BIT_32BIT_CHOOSE) #define HAVE_GE25519_SCALARMULT_BASE_CHOOSE_NIELS DONNA_NOINLINE static void ge25519_scalarmult_base_choose_niels(ge25519_niels *t, const uint8_t table[256][96], uint32_t pos, signed char b) { int64_t breg = (int64_t)b; uint64_t sign = (uint64_t)breg >> 63; uint64_t mask = ~(sign - 1); uint64_t u = (breg + mask) ^ mask; __asm__ __volatile__ ( /* ysubx+xaddy+t2d */ "movq %0, %%rax ;\n" "movd %%rax, %%xmm14 ;\n" "pshufd $0x00, %%xmm14, %%xmm14 ;\n" "pxor %%xmm0, %%xmm0 ;\n" "pxor %%xmm1, %%xmm1 ;\n" "pxor %%xmm2, %%xmm2 ;\n" "pxor %%xmm3, %%xmm3 ;\n" "pxor %%xmm4, %%xmm4 ;\n" "pxor %%xmm5, %%xmm5 ;\n" /* 0 */ "movq $0, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movq $1, %%rax ;\n" "movd %%rax, %%xmm6 ;\n" "pxor %%xmm7, %%xmm7 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm6, %%xmm2 ;\n" "por %%xmm7, %%xmm3 ;\n" /* 1 */ "movq $1, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 0(%1), %%xmm6 ;\n" "movdqa 16(%1), %%xmm7 ;\n" "movdqa 32(%1), %%xmm8 ;\n" "movdqa 48(%1), %%xmm9 ;\n" "movdqa 64(%1), %%xmm10 ;\n" "movdqa 80(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 2 */ "movq $2, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 96(%1), %%xmm6 ;\n" "movdqa 112(%1), %%xmm7 ;\n" "movdqa 128(%1), %%xmm8 ;\n" "movdqa 144(%1), %%xmm9 ;\n" "movdqa 160(%1), %%xmm10 ;\n" "movdqa 176(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 3 */ "movq $3, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 192(%1), %%xmm6 ;\n" "movdqa 208(%1), %%xmm7 ;\n" "movdqa 224(%1), %%xmm8 ;\n" "movdqa 240(%1), %%xmm9 ;\n" "movdqa 256(%1), %%xmm10 ;\n" "movdqa 272(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 4 */ "movq $4, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 288(%1), %%xmm6 ;\n" "movdqa 304(%1), %%xmm7 ;\n" "movdqa 320(%1), %%xmm8 ;\n" "movdqa 336(%1), %%xmm9 ;\n" "movdqa 352(%1), %%xmm10 ;\n" "movdqa 368(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 5 */ "movq $5, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 384(%1), %%xmm6 ;\n" "movdqa 400(%1), %%xmm7 ;\n" "movdqa 416(%1), %%xmm8 ;\n" "movdqa 432(%1), %%xmm9 ;\n" "movdqa 448(%1), %%xmm10 ;\n" "movdqa 464(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 6 */ "movq $6, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 480(%1), %%xmm6 ;\n" "movdqa 496(%1), %%xmm7 ;\n" "movdqa 512(%1), %%xmm8 ;\n" "movdqa 528(%1), %%xmm9 ;\n" "movdqa 544(%1), %%xmm10 ;\n" "movdqa 560(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 7 */ "movq $7, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 576(%1), %%xmm6 ;\n" "movdqa 592(%1), %%xmm7 ;\n" "movdqa 608(%1), %%xmm8 ;\n" "movdqa 624(%1), %%xmm9 ;\n" "movdqa 640(%1), %%xmm10 ;\n" "movdqa 656(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* 8 */ "movq $8, %%rax ;\n" "movd %%rax, %%xmm15 ;\n" "pshufd $0x00, %%xmm15, %%xmm15 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa 672(%1), %%xmm6 ;\n" "movdqa 688(%1), %%xmm7 ;\n" "movdqa 704(%1), %%xmm8 ;\n" "movdqa 720(%1), %%xmm9 ;\n" "movdqa 736(%1), %%xmm10 ;\n" "movdqa 752(%1), %%xmm11 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pand %%xmm15, %%xmm8 ;\n" "pand %%xmm15, %%xmm9 ;\n" "pand %%xmm15, %%xmm10 ;\n" "pand %%xmm15, %%xmm11 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm8, %%xmm2 ;\n" "por %%xmm9, %%xmm3 ;\n" "por %%xmm10, %%xmm4 ;\n" "por %%xmm11, %%xmm5 ;\n" /* conditionally swap ysubx and xaddy */ "movq %3, %%rax ;\n" "xorq $1, %%rax ;\n" "movd %%rax, %%xmm14 ;\n" "pxor %%xmm15, %%xmm15 ;\n" "pshufd $0x00, %%xmm14, %%xmm14 ;\n" "pxor %%xmm0, %%xmm2 ;\n" "pxor %%xmm1, %%xmm3 ;\n" "pcmpeqd %%xmm14, %%xmm15 ;\n" "movdqa %%xmm2, %%xmm6 ;\n" "movdqa %%xmm3, %%xmm7 ;\n" "pand %%xmm15, %%xmm6 ;\n" "pand %%xmm15, %%xmm7 ;\n" "pxor %%xmm6, %%xmm0 ;\n" "pxor %%xmm7, %%xmm1 ;\n" "pxor %%xmm0, %%xmm2 ;\n" "pxor %%xmm1, %%xmm3 ;\n" /* store ysubx */ "xorq %%rax, %%rax ;\n" "movd %%xmm0, %%rcx ;\n" "movd %%xmm0, %%r8 ;\n" "movd %%xmm1, %%rsi ;\n" "pshufd $0xee, %%xmm0, %%xmm0 ;\n" "pshufd $0xee, %%xmm1, %%xmm1 ;\n" "movd %%xmm0, %%rdx ;\n" "movd %%xmm1, %%rdi ;\n" "shrdq $51, %%rdx, %%r8 ;\n" "shrdq $38, %%rsi, %%rdx ;\n" "shrdq $25, %%rdi, %%rsi ;\n" "shrq $12, %%rdi ;\n" "movq %%rcx, %%r9 ;\n" "movq %%r8, %%r10 ;\n" "movq %%rdx, %%r11 ;\n" "movq %%rsi, %%r12 ;\n" "movq %%rdi, %%r13 ;\n" "shrq $26, %%r9 ;\n" "shrq $26, %%r10 ;\n" "shrq $26, %%r11 ;\n" "shrq $26, %%r12 ;\n" "shrq $26, %%r13 ;\n" "andl $0x3ffffff, %%ecx ;\n" "andl $0x1ffffff, %%r9d ;\n" "andl $0x3ffffff, %%r8d ;\n" "andl $0x1ffffff, %%r10d ;\n" "andl $0x3ffffff, %%edx ;\n" "andl $0x1ffffff, %%r11d ;\n" "andl $0x3ffffff, %%esi ;\n" "andl $0x1ffffff, %%r12d ;\n" "andl $0x3ffffff, %%edi ;\n" "andl $0x1ffffff, %%r13d ;\n" "movl %%ecx, 0(%2) ;\n" "movl %%r9d, 4(%2) ;\n" "movl %%r8d, 8(%2) ;\n" "movl %%r10d, 12(%2) ;\n" "movl %%edx, 16(%2) ;\n" "movl %%r11d, 20(%2) ;\n" "movl %%esi, 24(%2) ;\n" "movl %%r12d, 28(%2) ;\n" "movl %%edi, 32(%2) ;\n" "movl %%r13d, 36(%2) ;\n" /* store xaddy */ "movd %%xmm2, %%rcx ;\n" "movd %%xmm2, %%r8 ;\n" "movd %%xmm3, %%rsi ;\n" "pshufd $0xee, %%xmm2, %%xmm2 ;\n" "pshufd $0xee, %%xmm3, %%xmm3 ;\n" "movd %%xmm2, %%rdx ;\n" "movd %%xmm3, %%rdi ;\n" "shrdq $51, %%rdx, %%r8 ;\n" "shrdq $38, %%rsi, %%rdx ;\n" "shrdq $25, %%rdi, %%rsi ;\n" "shrq $12, %%rdi ;\n" "movq %%rcx, %%r9 ;\n" "movq %%r8, %%r10 ;\n" "movq %%rdx, %%r11 ;\n" "movq %%rsi, %%r12 ;\n" "movq %%rdi, %%r13 ;\n" "shrq $26, %%r9 ;\n" "shrq $26, %%r10 ;\n" "shrq $26, %%r11 ;\n" "shrq $26, %%r12 ;\n" "shrq $26, %%r13 ;\n" "andl $0x3ffffff, %%ecx ;\n" "andl $0x1ffffff, %%r9d ;\n" "andl $0x3ffffff, %%r8d ;\n" "andl $0x1ffffff, %%r10d ;\n" "andl $0x3ffffff, %%edx ;\n" "andl $0x1ffffff, %%r11d ;\n" "andl $0x3ffffff, %%esi ;\n" "andl $0x1ffffff, %%r12d ;\n" "andl $0x3ffffff, %%edi ;\n" "andl $0x1ffffff, %%r13d ;\n" "movl %%ecx, 40(%2) ;\n" "movl %%r9d, 44(%2) ;\n" "movl %%r8d, 48(%2) ;\n" "movl %%r10d, 52(%2) ;\n" "movl %%edx, 56(%2) ;\n" "movl %%r11d, 60(%2) ;\n" "movl %%esi, 64(%2) ;\n" "movl %%r12d, 68(%2) ;\n" "movl %%edi, 72(%2) ;\n" "movl %%r13d, 76(%2) ;\n" /* extract t2d */ "xorq %%rax, %%rax ;\n" "movd %%xmm4, %%rcx ;\n" "movd %%xmm4, %%r8 ;\n" "movd %%xmm5, %%rsi ;\n" "pshufd $0xee, %%xmm4, %%xmm4 ;\n" "pshufd $0xee, %%xmm5, %%xmm5 ;\n" "movd %%xmm4, %%rdx ;\n" "movd %%xmm5, %%rdi ;\n" "shrdq $51, %%rdx, %%r8 ;\n" "shrdq $38, %%rsi, %%rdx ;\n" "shrdq $25, %%rdi, %%rsi ;\n" "shrq $12, %%rdi ;\n" "movq %%rcx, %%r9 ;\n" "movq %%r8, %%r10 ;\n" "movq %%rdx, %%r11 ;\n" "movq %%rsi, %%r12 ;\n" "movq %%rdi, %%r13 ;\n" "shrq $26, %%r9 ;\n" "shrq $26, %%r10 ;\n" "shrq $26, %%r11 ;\n" "shrq $26, %%r12 ;\n" "shrq $26, %%r13 ;\n" "andl $0x3ffffff, %%ecx ;\n" "andl $0x1ffffff, %%r9d ;\n" "andl $0x3ffffff, %%r8d ;\n" "andl $0x1ffffff, %%r10d ;\n" "andl $0x3ffffff, %%edx ;\n" "andl $0x1ffffff, %%r11d ;\n" "andl $0x3ffffff, %%esi ;\n" "andl $0x1ffffff, %%r12d ;\n" "andl $0x3ffffff, %%edi ;\n" "andl $0x1ffffff, %%r13d ;\n" "movd %%ecx, %%xmm0 ;\n" "movd %%r9d, %%xmm4 ;\n" "movd %%r8d, %%xmm8 ;\n" "movd %%r10d, %%xmm3 ;\n" "movd %%edx, %%xmm1 ;\n" "movd %%r11d, %%xmm5 ;\n" "movd %%esi, %%xmm6 ;\n" "movd %%r12d, %%xmm7 ;\n" "movd %%edi, %%xmm2 ;\n" "movd %%r13d, %%xmm9 ;\n" "punpckldq %%xmm4, %%xmm0 ;\n" "punpckldq %%xmm3, %%xmm8 ;\n" "punpckldq %%xmm5, %%xmm1 ;\n" "punpckldq %%xmm7, %%xmm6 ;\n" "punpckldq %%xmm9, %%xmm2 ;\n" "punpcklqdq %%xmm8, %%xmm0 ;\n" "punpcklqdq %%xmm6, %%xmm1 ;\n" /* set up 2p in to 3/4 */ "movl $0x7ffffda, %%ecx ;\n" "movl $0x3fffffe, %%edx ;\n" "movl $0x7fffffe, %%eax ;\n" "movd %%ecx, %%xmm3 ;\n" "movd %%edx, %%xmm5 ;\n" "movd %%eax, %%xmm4 ;\n" "punpckldq %%xmm5, %%xmm3 ;\n" "punpckldq %%xmm5, %%xmm4 ;\n" "punpcklqdq %%xmm4, %%xmm3 ;\n" "movdqa %%xmm4, %%xmm5 ;\n" "punpcklqdq %%xmm4, %%xmm4 ;\n" /* subtract and conditionally move */ "movl %3, %%ecx ;\n" "sub $1, %%ecx ;\n" "movd %%ecx, %%xmm6 ;\n" "pshufd $0x00, %%xmm6, %%xmm6 ;\n" "movdqa %%xmm6, %%xmm7 ;\n" "psubd %%xmm0, %%xmm3 ;\n" "psubd %%xmm1, %%xmm4 ;\n" "psubd %%xmm2, %%xmm5 ;\n" "pand %%xmm6, %%xmm0 ;\n" "pand %%xmm6, %%xmm1 ;\n" "pand %%xmm6, %%xmm2 ;\n" "pandn %%xmm3, %%xmm6 ;\n" "movdqa %%xmm7, %%xmm3 ;\n" "pandn %%xmm4, %%xmm7 ;\n" "pandn %%xmm5, %%xmm3 ;\n" "por %%xmm6, %%xmm0 ;\n" "por %%xmm7, %%xmm1 ;\n" "por %%xmm3, %%xmm2 ;\n" /* store t2d */ "movdqa %%xmm0, 80(%2) ;\n" "movdqa %%xmm1, 96(%2) ;\n" "movd %%xmm2, %%rax ;\n" "movq %%rax, 112(%2) ;\n" : : "m"(u), "r"(&table[pos * 8]), "r"(t), "m"(sign) /* %0 = u, %1 = table, %2 = t, %3 = sign */ : "%rax", "%rcx", "%rdx", "%rdi", "%rsi", "%r8", "%r9", "%r10", "%r11", "%r12", "%r13", "%xmm0", "%xmm1", "%xmm2", "%xmm3", "%xmm4", "%xmm5", "%xmm6", "%xmm7", "%xmm8", "%xmm9", "%xmm10", "%xmm11", "%xmm14", "%xmm14", "cc", "memory" ); } #endif /* defined(ED25519_GCC_64BIT_32BIT_CHOOSE) */ tor-0.2.7.6/src/ext/ed25519/ref10/0000755000175000017500000000000012632347251013000 500000000000000tor-0.2.7.6/src/ext/ed25519/ref10/sc_reduce.c0000644000175000017500000002022712621363246015023 00000000000000#include "sc.h" #include "crypto_int64.h" #include "crypto_uint32.h" #include "crypto_uint64.h" static crypto_uint64 load_3(const unsigned char *in) { crypto_uint64 result; result = (crypto_uint64) in[0]; result |= ((crypto_uint64) in[1]) << 8; result |= ((crypto_uint64) in[2]) << 16; return result; } static crypto_uint64 load_4(const unsigned char *in) { crypto_uint64 result; result = (crypto_uint64) in[0]; result |= ((crypto_uint64) in[1]) << 8; result |= ((crypto_uint64) in[2]) << 16; result |= ((crypto_uint64) in[3]) << 24; return result; } /* Input: s[0]+256*s[1]+...+256^63*s[63] = s Output: s[0]+256*s[1]+...+256^31*s[31] = s mod l where l = 2^252 + 27742317777372353535851937790883648493. Overwrites s in place. */ void sc_reduce(unsigned char *s) { crypto_int64 s0 = 2097151 & load_3(s); crypto_int64 s1 = 2097151 & (load_4(s + 2) >> 5); crypto_int64 s2 = 2097151 & (load_3(s + 5) >> 2); crypto_int64 s3 = 2097151 & (load_4(s + 7) >> 7); crypto_int64 s4 = 2097151 & (load_4(s + 10) >> 4); crypto_int64 s5 = 2097151 & (load_3(s + 13) >> 1); crypto_int64 s6 = 2097151 & (load_4(s + 15) >> 6); crypto_int64 s7 = 2097151 & (load_3(s + 18) >> 3); crypto_int64 s8 = 2097151 & load_3(s + 21); crypto_int64 s9 = 2097151 & (load_4(s + 23) >> 5); crypto_int64 s10 = 2097151 & (load_3(s + 26) >> 2); crypto_int64 s11 = 2097151 & (load_4(s + 28) >> 7); crypto_int64 s12 = 2097151 & (load_4(s + 31) >> 4); crypto_int64 s13 = 2097151 & (load_3(s + 34) >> 1); crypto_int64 s14 = 2097151 & (load_4(s + 36) >> 6); crypto_int64 s15 = 2097151 & (load_3(s + 39) >> 3); crypto_int64 s16 = 2097151 & load_3(s + 42); crypto_int64 s17 = 2097151 & (load_4(s + 44) >> 5); crypto_int64 s18 = 2097151 & (load_3(s + 47) >> 2); crypto_int64 s19 = 2097151 & (load_4(s + 49) >> 7); crypto_int64 s20 = 2097151 & (load_4(s + 52) >> 4); crypto_int64 s21 = 2097151 & (load_3(s + 55) >> 1); crypto_int64 s22 = 2097151 & (load_4(s + 57) >> 6); crypto_int64 s23 = (load_4(s + 60) >> 3); crypto_int64 carry0; crypto_int64 carry1; crypto_int64 carry2; crypto_int64 carry3; crypto_int64 carry4; crypto_int64 carry5; crypto_int64 carry6; crypto_int64 carry7; crypto_int64 carry8; crypto_int64 carry9; crypto_int64 carry10; crypto_int64 carry11; crypto_int64 carry12; crypto_int64 carry13; crypto_int64 carry14; crypto_int64 carry15; crypto_int64 carry16; s11 += s23 * 666643; s12 += s23 * 470296; s13 += s23 * 654183; s14 -= s23 * 997805; s15 += s23 * 136657; s16 -= s23 * 683901; s23 = 0; s10 += s22 * 666643; s11 += s22 * 470296; s12 += s22 * 654183; s13 -= s22 * 997805; s14 += s22 * 136657; s15 -= s22 * 683901; s22 = 0; s9 += s21 * 666643; s10 += s21 * 470296; s11 += s21 * 654183; s12 -= s21 * 997805; s13 += s21 * 136657; s14 -= s21 * 683901; s21 = 0; s8 += s20 * 666643; s9 += s20 * 470296; s10 += s20 * 654183; s11 -= s20 * 997805; s12 += s20 * 136657; s13 -= s20 * 683901; s20 = 0; s7 += s19 * 666643; s8 += s19 * 470296; s9 += s19 * 654183; s10 -= s19 * 997805; s11 += s19 * 136657; s12 -= s19 * 683901; s19 = 0; s6 += s18 * 666643; s7 += s18 * 470296; s8 += s18 * 654183; s9 -= s18 * 997805; s10 += s18 * 136657; s11 -= s18 * 683901; s18 = 0; carry6 = (s6 + (1<<20)) >> 21; s7 += carry6; s6 -= SHL64(carry6,21); carry8 = (s8 + (1<<20)) >> 21; s9 += carry8; s8 -= SHL64(carry8,21); carry10 = (s10 + (1<<20)) >> 21; s11 += carry10; s10 -= SHL64(carry10,21); carry12 = (s12 + (1<<20)) >> 21; s13 += carry12; s12 -= SHL64(carry12,21); carry14 = (s14 + (1<<20)) >> 21; s15 += carry14; s14 -= SHL64(carry14,21); carry16 = (s16 + (1<<20)) >> 21; s17 += carry16; s16 -= SHL64(carry16,21); carry7 = (s7 + (1<<20)) >> 21; s8 += carry7; s7 -= SHL64(carry7,21); carry9 = (s9 + (1<<20)) >> 21; s10 += carry9; s9 -= SHL64(carry9,21); carry11 = (s11 + (1<<20)) >> 21; s12 += carry11; s11 -= SHL64(carry11,21); carry13 = (s13 + (1<<20)) >> 21; s14 += carry13; s13 -= SHL64(carry13,21); carry15 = (s15 + (1<<20)) >> 21; s16 += carry15; s15 -= SHL64(carry15,21); s5 += s17 * 666643; s6 += s17 * 470296; s7 += s17 * 654183; s8 -= s17 * 997805; s9 += s17 * 136657; s10 -= s17 * 683901; s17 = 0; s4 += s16 * 666643; s5 += s16 * 470296; s6 += s16 * 654183; s7 -= s16 * 997805; s8 += s16 * 136657; s9 -= s16 * 683901; s16 = 0; s3 += s15 * 666643; s4 += s15 * 470296; s5 += s15 * 654183; s6 -= s15 * 997805; s7 += s15 * 136657; s8 -= s15 * 683901; s15 = 0; s2 += s14 * 666643; s3 += s14 * 470296; s4 += s14 * 654183; s5 -= s14 * 997805; s6 += s14 * 136657; s7 -= s14 * 683901; s14 = 0; s1 += s13 * 666643; s2 += s13 * 470296; s3 += s13 * 654183; s4 -= s13 * 997805; s5 += s13 * 136657; s6 -= s13 * 683901; s13 = 0; s0 += s12 * 666643; s1 += s12 * 470296; s2 += s12 * 654183; s3 -= s12 * 997805; s4 += s12 * 136657; s5 -= s12 * 683901; s12 = 0; carry0 = (s0 + (1<<20)) >> 21; s1 += carry0; s0 -= SHL64(carry0,21); carry2 = (s2 + (1<<20)) >> 21; s3 += carry2; s2 -= SHL64(carry2,21); carry4 = (s4 + (1<<20)) >> 21; s5 += carry4; s4 -= SHL64(carry4,21); carry6 = (s6 + (1<<20)) >> 21; s7 += carry6; s6 -= SHL64(carry6,21); carry8 = (s8 + (1<<20)) >> 21; s9 += carry8; s8 -= SHL64(carry8,21); carry10 = (s10 + (1<<20)) >> 21; s11 += carry10; s10 -= SHL64(carry10,21); carry1 = (s1 + (1<<20)) >> 21; s2 += carry1; s1 -= SHL64(carry1,21); carry3 = (s3 + (1<<20)) >> 21; s4 += carry3; s3 -= SHL64(carry3,21); carry5 = (s5 + (1<<20)) >> 21; s6 += carry5; s5 -= SHL64(carry5,21); carry7 = (s7 + (1<<20)) >> 21; s8 += carry7; s7 -= SHL64(carry7,21); carry9 = (s9 + (1<<20)) >> 21; s10 += carry9; s9 -= SHL64(carry9,21); carry11 = (s11 + (1<<20)) >> 21; s12 += carry11; s11 -= SHL64(carry11,21); s0 += s12 * 666643; s1 += s12 * 470296; s2 += s12 * 654183; s3 -= s12 * 997805; s4 += s12 * 136657; s5 -= s12 * 683901; s12 = 0; carry0 = s0 >> 21; s1 += carry0; s0 -= SHL64(carry0,21); carry1 = s1 >> 21; s2 += carry1; s1 -= SHL64(carry1,21); carry2 = s2 >> 21; s3 += carry2; s2 -= SHL64(carry2,21); carry3 = s3 >> 21; s4 += carry3; s3 -= SHL64(carry3,21); carry4 = s4 >> 21; s5 += carry4; s4 -= SHL64(carry4,21); carry5 = s5 >> 21; s6 += carry5; s5 -= SHL64(carry5,21); carry6 = s6 >> 21; s7 += carry6; s6 -= SHL64(carry6,21); carry7 = s7 >> 21; s8 += carry7; s7 -= SHL64(carry7,21); carry8 = s8 >> 21; s9 += carry8; s8 -= SHL64(carry8,21); carry9 = s9 >> 21; s10 += carry9; s9 -= SHL64(carry9,21); carry10 = s10 >> 21; s11 += carry10; s10 -= SHL64(carry10,21); carry11 = s11 >> 21; s12 += carry11; s11 -= SHL64(carry11,21); s0 += s12 * 666643; s1 += s12 * 470296; s2 += s12 * 654183; s3 -= s12 * 997805; s4 += s12 * 136657; s5 -= s12 * 683901; s12 = 0; carry0 = s0 >> 21; s1 += carry0; s0 -= SHL64(carry0,21); carry1 = s1 >> 21; s2 += carry1; s1 -= SHL64(carry1,21); carry2 = s2 >> 21; s3 += carry2; s2 -= SHL64(carry2,21); carry3 = s3 >> 21; s4 += carry3; s3 -= SHL64(carry3,21); carry4 = s4 >> 21; s5 += carry4; s4 -= SHL64(carry4,21); carry5 = s5 >> 21; s6 += carry5; s5 -= SHL64(carry5,21); carry6 = s6 >> 21; s7 += carry6; s6 -= SHL64(carry6,21); carry7 = s7 >> 21; s8 += carry7; s7 -= SHL64(carry7,21); carry8 = s8 >> 21; s9 += carry8; s8 -= SHL64(carry8,21); carry9 = s9 >> 21; s10 += carry9; s9 -= SHL64(carry9,21); carry10 = s10 >> 21; s11 += carry10; s10 -= SHL64(carry10,21); s[0] = s0 >> 0; s[1] = s0 >> 8; s[2] = (s0 >> 16) | SHL64(s1,5); s[3] = s1 >> 3; s[4] = s1 >> 11; s[5] = (s1 >> 19) | SHL64(s2,2); s[6] = s2 >> 6; s[7] = (s2 >> 14) | SHL64(s3,7); s[8] = s3 >> 1; s[9] = s3 >> 9; s[10] = (s3 >> 17) | SHL64(s4,4); s[11] = s4 >> 4; s[12] = s4 >> 12; s[13] = (s4 >> 20) | SHL64(s5,1); s[14] = s5 >> 7; s[15] = (s5 >> 15) | SHL64(s6,6); s[16] = s6 >> 2; s[17] = s6 >> 10; s[18] = (s6 >> 18) | SHL64(s7,3); s[19] = s7 >> 5; s[20] = s7 >> 13; s[21] = s8 >> 0; s[22] = s8 >> 8; s[23] = (s8 >> 16) | SHL64(s9,5); s[24] = s9 >> 3; s[25] = s9 >> 11; s[26] = (s9 >> 19) | SHL64(s10,2); s[27] = s10 >> 6; s[28] = (s10 >> 14) | SHL64(s11,7); s[29] = s11 >> 1; s[30] = s11 >> 9; s[31] = s11 >> 17; } tor-0.2.7.6/src/ext/ed25519/ref10/ge_sub.h0000644000175000017500000000404012621363246014333 00000000000000 /* qhasm: enter ge_sub */ /* qhasm: fe X1 */ /* qhasm: fe Y1 */ /* qhasm: fe Z1 */ /* qhasm: fe Z2 */ /* qhasm: fe T1 */ /* qhasm: fe ZZ */ /* qhasm: fe YpX2 */ /* qhasm: fe YmX2 */ /* qhasm: fe T2d2 */ /* qhasm: fe X3 */ /* qhasm: fe Y3 */ /* qhasm: fe Z3 */ /* qhasm: fe T3 */ /* qhasm: fe YpX1 */ /* qhasm: fe YmX1 */ /* qhasm: fe A */ /* qhasm: fe B */ /* qhasm: fe C */ /* qhasm: fe D */ /* qhasm: YpX1 = Y1+X1 */ /* asm 1: fe_add(>YpX1=fe#1,YpX1=r->X,Y,X); */ fe_add(r->X,p->Y,p->X); /* qhasm: YmX1 = Y1-X1 */ /* asm 1: fe_sub(>YmX1=fe#2,YmX1=r->Y,Y,X); */ fe_sub(r->Y,p->Y,p->X); /* qhasm: A = YpX1*YmX2 */ /* asm 1: fe_mul(>A=fe#3,A=r->Z,X,YminusX); */ fe_mul(r->Z,r->X,q->YminusX); /* qhasm: B = YmX1*YpX2 */ /* asm 1: fe_mul(>B=fe#2,B=r->Y,Y,YplusX); */ fe_mul(r->Y,r->Y,q->YplusX); /* qhasm: C = T2d2*T1 */ /* asm 1: fe_mul(>C=fe#4,C=r->T,T2d,T); */ fe_mul(r->T,q->T2d,p->T); /* qhasm: ZZ = Z1*Z2 */ /* asm 1: fe_mul(>ZZ=fe#1,ZZ=r->X,Z,Z); */ fe_mul(r->X,p->Z,q->Z); /* qhasm: D = 2*ZZ */ /* asm 1: fe_add(>D=fe#5,D=t0,X,X); */ fe_add(t0,r->X,r->X); /* qhasm: X3 = A-B */ /* asm 1: fe_sub(>X3=fe#1,X3=r->X,Z,Y); */ fe_sub(r->X,r->Z,r->Y); /* qhasm: Y3 = A+B */ /* asm 1: fe_add(>Y3=fe#2,Y3=r->Y,Z,Y); */ fe_add(r->Y,r->Z,r->Y); /* qhasm: Z3 = D-C */ /* asm 1: fe_sub(>Z3=fe#3,Z3=r->Z,T); */ fe_sub(r->Z,t0,r->T); /* qhasm: T3 = D+C */ /* asm 1: fe_add(>T3=fe#4,T3=r->T,T); */ fe_add(r->T,t0,r->T); /* qhasm: return */ tor-0.2.7.6/src/ext/ed25519/ref10/ge_p2_dbl.h0000644000175000017500000000270412621363246014711 00000000000000 /* qhasm: enter ge_p2_dbl */ /* qhasm: fe X1 */ /* qhasm: fe Y1 */ /* qhasm: fe Z1 */ /* qhasm: fe A */ /* qhasm: fe AA */ /* qhasm: fe XX */ /* qhasm: fe YY */ /* qhasm: fe B */ /* qhasm: fe X3 */ /* qhasm: fe Y3 */ /* qhasm: fe Z3 */ /* qhasm: fe T3 */ /* qhasm: XX=X1^2 */ /* asm 1: fe_sq(>XX=fe#1,XX=r->X,X); */ fe_sq(r->X,p->X); /* qhasm: YY=Y1^2 */ /* asm 1: fe_sq(>YY=fe#3,YY=r->Z,Y); */ fe_sq(r->Z,p->Y); /* qhasm: B=2*Z1^2 */ /* asm 1: fe_sq2(>B=fe#4,B=r->T,Z); */ fe_sq2(r->T,p->Z); /* qhasm: A=X1+Y1 */ /* asm 1: fe_add(>A=fe#2,A=r->Y,X,Y); */ fe_add(r->Y,p->X,p->Y); /* qhasm: AA=A^2 */ /* asm 1: fe_sq(>AA=fe#5,AA=t0,Y); */ fe_sq(t0,r->Y); /* qhasm: Y3=YY+XX */ /* asm 1: fe_add(>Y3=fe#2,Y3=r->Y,Z,X); */ fe_add(r->Y,r->Z,r->X); /* qhasm: Z3=YY-XX */ /* asm 1: fe_sub(>Z3=fe#3,Z3=r->Z,Z,X); */ fe_sub(r->Z,r->Z,r->X); /* qhasm: X3=AA-Y3 */ /* asm 1: fe_sub(>X3=fe#1,X3=r->X,Y); */ fe_sub(r->X,t0,r->Y); /* qhasm: T3=B-Z3 */ /* asm 1: fe_sub(>T3=fe#4,T3=r->T,T,Z); */ fe_sub(r->T,r->T,r->Z); /* qhasm: return */ tor-0.2.7.6/src/ext/ed25519/ref10/crypto_hash_sha512.h0000644000175000017500000000317312621363246016503 00000000000000/* Added for Tor. */ #include /* Set 'out' to the 512-bit SHA512 hash of the 'len'-byte string in 'inp' */ #define crypto_hash_sha512(out, inp, len) \ SHA512((inp), (len), (out)) /* Set 'out' to the 512-bit SHA512 hash of the 'len1'-byte string in 'inp1', * concatenated with the 'len2'-byte string in 'inp2'. */ #define crypto_hash_sha512_2(out, inp1, len1, inp2, len2) \ do { \ SHA512_CTX sha_ctx_; \ SHA512_Init(&sha_ctx_); \ SHA512_Update(&sha_ctx_, (inp1), (len1)); \ SHA512_Update(&sha_ctx_, (inp2), (len2)); \ SHA512_Final((out), &sha_ctx_); \ } while(0) /* Set 'out' to the 512-bit SHA512 hash of the 'len1'-byte string in 'inp1', * concatenated with the 'len2'-byte string in 'inp2', concatenated with * the 'len3'-byte string in 'len3'. */ #define crypto_hash_sha512_3(out, inp1, len1, inp2, len2, inp3, len3) \ do { \ SHA512_CTX sha_ctx_; \ SHA512_Init(&sha_ctx_); \ SHA512_Update(&sha_ctx_, (inp1), (len1)); \ SHA512_Update(&sha_ctx_, (inp2), (len2)); \ SHA512_Update(&sha_ctx_, (inp3), (len3)); \ SHA512_Final((out), &sha_ctx_); \ } while(0) tor-0.2.7.6/src/ext/ed25519/ref10/ge_frombytes.c0000644000175000017500000000173312621363246015555 00000000000000#include "ge.h" static const fe d = { #include "d.h" } ; static const fe sqrtm1 = { #include "sqrtm1.h" } ; int ge_frombytes_negate_vartime(ge_p3 *h,const unsigned char *s) { fe u; fe v; fe v3; fe vxx; fe check; fe_frombytes(h->Y,s); fe_1(h->Z); fe_sq(u,h->Y); fe_mul(v,u,d); fe_sub(u,u,h->Z); /* u = y^2-1 */ fe_add(v,v,h->Z); /* v = dy^2+1 */ fe_sq(v3,v); fe_mul(v3,v3,v); /* v3 = v^3 */ fe_sq(h->X,v3); fe_mul(h->X,h->X,v); fe_mul(h->X,h->X,u); /* x = uv^7 */ fe_pow22523(h->X,h->X); /* x = (uv^7)^((q-5)/8) */ fe_mul(h->X,h->X,v3); fe_mul(h->X,h->X,u); /* x = uv^3(uv^7)^((q-5)/8) */ fe_sq(vxx,h->X); fe_mul(vxx,vxx,v); fe_sub(check,vxx,u); /* vx^2-u */ if (fe_isnonzero(check)) { fe_add(check,vxx,u); /* vx^2+u */ if (fe_isnonzero(check)) return -1; fe_mul(h->X,h->X,sqrtm1); } if (fe_isnegative(h->X) == (s[31] >> 7)) fe_neg(h->X,h->X); fe_mul(h->T,h->X,h->Y); return 0; } tor-0.2.7.6/src/ext/ed25519/ref10/ge_sub.c0000644000175000017500000000017512621363246014333 00000000000000#include "ge.h" /* r = p - q */ void ge_sub(ge_p1p1 *r,const ge_p3 *p,const ge_cached *q) { fe t0; #include "ge_sub.h" } tor-0.2.7.6/src/ext/ed25519/ref10/sc_muladd.c0000644000175000017500000003076612621363246015033 00000000000000#include "sc.h" #include "crypto_int64.h" #include "crypto_uint32.h" #include "crypto_uint64.h" static crypto_uint64 load_3(const unsigned char *in) { crypto_uint64 result; result = (crypto_uint64) in[0]; result |= ((crypto_uint64) in[1]) << 8; result |= ((crypto_uint64) in[2]) << 16; return result; } static crypto_uint64 load_4(const unsigned char *in) { crypto_uint64 result; result = (crypto_uint64) in[0]; result |= ((crypto_uint64) in[1]) << 8; result |= ((crypto_uint64) in[2]) << 16; result |= ((crypto_uint64) in[3]) << 24; return result; } /* Input: a[0]+256*a[1]+...+256^31*a[31] = a b[0]+256*b[1]+...+256^31*b[31] = b c[0]+256*c[1]+...+256^31*c[31] = c Output: s[0]+256*s[1]+...+256^31*s[31] = (ab+c) mod l where l = 2^252 + 27742317777372353535851937790883648493. */ void sc_muladd(unsigned char *s,const unsigned char *a,const unsigned char *b,const unsigned char *c) { crypto_int64 a0 = 2097151 & load_3(a); crypto_int64 a1 = 2097151 & (load_4(a + 2) >> 5); crypto_int64 a2 = 2097151 & (load_3(a + 5) >> 2); crypto_int64 a3 = 2097151 & (load_4(a + 7) >> 7); crypto_int64 a4 = 2097151 & (load_4(a + 10) >> 4); crypto_int64 a5 = 2097151 & (load_3(a + 13) >> 1); crypto_int64 a6 = 2097151 & (load_4(a + 15) >> 6); crypto_int64 a7 = 2097151 & (load_3(a + 18) >> 3); crypto_int64 a8 = 2097151 & load_3(a + 21); crypto_int64 a9 = 2097151 & (load_4(a + 23) >> 5); crypto_int64 a10 = 2097151 & (load_3(a + 26) >> 2); crypto_int64 a11 = (load_4(a + 28) >> 7); crypto_int64 b0 = 2097151 & load_3(b); crypto_int64 b1 = 2097151 & (load_4(b + 2) >> 5); crypto_int64 b2 = 2097151 & (load_3(b + 5) >> 2); crypto_int64 b3 = 2097151 & (load_4(b + 7) >> 7); crypto_int64 b4 = 2097151 & (load_4(b + 10) >> 4); crypto_int64 b5 = 2097151 & (load_3(b + 13) >> 1); crypto_int64 b6 = 2097151 & (load_4(b + 15) >> 6); crypto_int64 b7 = 2097151 & (load_3(b + 18) >> 3); crypto_int64 b8 = 2097151 & load_3(b + 21); crypto_int64 b9 = 2097151 & (load_4(b + 23) >> 5); crypto_int64 b10 = 2097151 & (load_3(b + 26) >> 2); crypto_int64 b11 = (load_4(b + 28) >> 7); crypto_int64 c0 = 2097151 & load_3(c); crypto_int64 c1 = 2097151 & (load_4(c + 2) >> 5); crypto_int64 c2 = 2097151 & (load_3(c + 5) >> 2); crypto_int64 c3 = 2097151 & (load_4(c + 7) >> 7); crypto_int64 c4 = 2097151 & (load_4(c + 10) >> 4); crypto_int64 c5 = 2097151 & (load_3(c + 13) >> 1); crypto_int64 c6 = 2097151 & (load_4(c + 15) >> 6); crypto_int64 c7 = 2097151 & (load_3(c + 18) >> 3); crypto_int64 c8 = 2097151 & load_3(c + 21); crypto_int64 c9 = 2097151 & (load_4(c + 23) >> 5); crypto_int64 c10 = 2097151 & (load_3(c + 26) >> 2); crypto_int64 c11 = (load_4(c + 28) >> 7); crypto_int64 s0; crypto_int64 s1; crypto_int64 s2; crypto_int64 s3; crypto_int64 s4; crypto_int64 s5; crypto_int64 s6; crypto_int64 s7; crypto_int64 s8; crypto_int64 s9; crypto_int64 s10; crypto_int64 s11; crypto_int64 s12; crypto_int64 s13; crypto_int64 s14; crypto_int64 s15; crypto_int64 s16; crypto_int64 s17; crypto_int64 s18; crypto_int64 s19; crypto_int64 s20; crypto_int64 s21; crypto_int64 s22; crypto_int64 s23; crypto_int64 carry0; crypto_int64 carry1; crypto_int64 carry2; crypto_int64 carry3; crypto_int64 carry4; crypto_int64 carry5; crypto_int64 carry6; crypto_int64 carry7; crypto_int64 carry8; crypto_int64 carry9; crypto_int64 carry10; crypto_int64 carry11; crypto_int64 carry12; crypto_int64 carry13; crypto_int64 carry14; crypto_int64 carry15; crypto_int64 carry16; crypto_int64 carry17; crypto_int64 carry18; crypto_int64 carry19; crypto_int64 carry20; crypto_int64 carry21; crypto_int64 carry22; s0 = c0 + a0*b0; s1 = c1 + a0*b1 + a1*b0; s2 = c2 + a0*b2 + a1*b1 + a2*b0; s3 = c3 + a0*b3 + a1*b2 + a2*b1 + a3*b0; s4 = c4 + a0*b4 + a1*b3 + a2*b2 + a3*b1 + a4*b0; s5 = c5 + a0*b5 + a1*b4 + a2*b3 + a3*b2 + a4*b1 + a5*b0; s6 = c6 + a0*b6 + a1*b5 + a2*b4 + a3*b3 + a4*b2 + a5*b1 + a6*b0; s7 = c7 + a0*b7 + a1*b6 + a2*b5 + a3*b4 + a4*b3 + a5*b2 + a6*b1 + a7*b0; s8 = c8 + a0*b8 + a1*b7 + a2*b6 + a3*b5 + a4*b4 + a5*b3 + a6*b2 + a7*b1 + a8*b0; s9 = c9 + a0*b9 + a1*b8 + a2*b7 + a3*b6 + a4*b5 + a5*b4 + a6*b3 + a7*b2 + a8*b1 + a9*b0; s10 = c10 + a0*b10 + a1*b9 + a2*b8 + a3*b7 + a4*b6 + a5*b5 + a6*b4 + a7*b3 + a8*b2 + a9*b1 + a10*b0; s11 = c11 + a0*b11 + a1*b10 + a2*b9 + a3*b8 + a4*b7 + a5*b6 + a6*b5 + a7*b4 + a8*b3 + a9*b2 + a10*b1 + a11*b0; s12 = a1*b11 + a2*b10 + a3*b9 + a4*b8 + a5*b7 + a6*b6 + a7*b5 + a8*b4 + a9*b3 + a10*b2 + a11*b1; s13 = a2*b11 + a3*b10 + a4*b9 + a5*b8 + a6*b7 + a7*b6 + a8*b5 + a9*b4 + a10*b3 + a11*b2; s14 = a3*b11 + a4*b10 + a5*b9 + a6*b8 + a7*b7 + a8*b6 + a9*b5 + a10*b4 + a11*b3; s15 = a4*b11 + a5*b10 + a6*b9 + a7*b8 + a8*b7 + a9*b6 + a10*b5 + a11*b4; s16 = a5*b11 + a6*b10 + a7*b9 + a8*b8 + a9*b7 + a10*b6 + a11*b5; s17 = a6*b11 + a7*b10 + a8*b9 + a9*b8 + a10*b7 + a11*b6; s18 = a7*b11 + a8*b10 + a9*b9 + a10*b8 + a11*b7; s19 = a8*b11 + a9*b10 + a10*b9 + a11*b8; s20 = a9*b11 + a10*b10 + a11*b9; s21 = a10*b11 + a11*b10; s22 = a11*b11; s23 = 0; carry0 = (s0 + (1<<20)) >> 21; s1 += carry0; s0 -= SHL64(carry0,21); carry2 = (s2 + (1<<20)) >> 21; s3 += carry2; s2 -= SHL64(carry2,21); carry4 = (s4 + (1<<20)) >> 21; s5 += carry4; s4 -= SHL64(carry4,21); carry6 = (s6 + (1<<20)) >> 21; s7 += carry6; s6 -= SHL64(carry6,21); carry8 = (s8 + (1<<20)) >> 21; s9 += carry8; s8 -= SHL64(carry8,21); carry10 = (s10 + (1<<20)) >> 21; s11 += carry10; s10 -= SHL64(carry10,21); carry12 = (s12 + (1<<20)) >> 21; s13 += carry12; s12 -= SHL64(carry12,21); carry14 = (s14 + (1<<20)) >> 21; s15 += carry14; s14 -= SHL64(carry14,21); carry16 = (s16 + (1<<20)) >> 21; s17 += carry16; s16 -= SHL64(carry16,21); carry18 = (s18 + (1<<20)) >> 21; s19 += carry18; s18 -= SHL64(carry18,21); carry20 = (s20 + (1<<20)) >> 21; s21 += carry20; s20 -= SHL64(carry20,21); carry22 = (s22 + (1<<20)) >> 21; s23 += carry22; s22 -= SHL64(carry22,21); carry1 = (s1 + (1<<20)) >> 21; s2 += carry1; s1 -= SHL64(carry1,21); carry3 = (s3 + (1<<20)) >> 21; s4 += carry3; s3 -= SHL64(carry3,21); carry5 = (s5 + (1<<20)) >> 21; s6 += carry5; s5 -= SHL64(carry5,21); carry7 = (s7 + (1<<20)) >> 21; s8 += carry7; s7 -= SHL64(carry7,21); carry9 = (s9 + (1<<20)) >> 21; s10 += carry9; s9 -= SHL64(carry9,21); carry11 = (s11 + (1<<20)) >> 21; s12 += carry11; s11 -= SHL64(carry11,21); carry13 = (s13 + (1<<20)) >> 21; s14 += carry13; s13 -= SHL64(carry13,21); carry15 = (s15 + (1<<20)) >> 21; s16 += carry15; s15 -= SHL64(carry15,21); carry17 = (s17 + (1<<20)) >> 21; s18 += carry17; s17 -= SHL64(carry17,21); carry19 = (s19 + (1<<20)) >> 21; s20 += carry19; s19 -= SHL64(carry19,21); carry21 = (s21 + (1<<20)) >> 21; s22 += carry21; s21 -= SHL64(carry21,21); s11 += s23 * 666643; s12 += s23 * 470296; s13 += s23 * 654183; s14 -= s23 * 997805; s15 += s23 * 136657; s16 -= s23 * 683901; s23 = 0; s10 += s22 * 666643; s11 += s22 * 470296; s12 += s22 * 654183; s13 -= s22 * 997805; s14 += s22 * 136657; s15 -= s22 * 683901; s22 = 0; s9 += s21 * 666643; s10 += s21 * 470296; s11 += s21 * 654183; s12 -= s21 * 997805; s13 += s21 * 136657; s14 -= s21 * 683901; s21 = 0; s8 += s20 * 666643; s9 += s20 * 470296; s10 += s20 * 654183; s11 -= s20 * 997805; s12 += s20 * 136657; s13 -= s20 * 683901; s20 = 0; s7 += s19 * 666643; s8 += s19 * 470296; s9 += s19 * 654183; s10 -= s19 * 997805; s11 += s19 * 136657; s12 -= s19 * 683901; s19 = 0; s6 += s18 * 666643; s7 += s18 * 470296; s8 += s18 * 654183; s9 -= s18 * 997805; s10 += s18 * 136657; s11 -= s18 * 683901; s18 = 0; carry6 = (s6 + (1<<20)) >> 21; s7 += carry6; s6 -= SHL64(carry6,21); carry8 = (s8 + (1<<20)) >> 21; s9 += carry8; s8 -= SHL64(carry8,21); carry10 = (s10 + (1<<20)) >> 21; s11 += carry10; s10 -= SHL64(carry10,21); carry12 = (s12 + (1<<20)) >> 21; s13 += carry12; s12 -= SHL64(carry12,21); carry14 = (s14 + (1<<20)) >> 21; s15 += carry14; s14 -= SHL64(carry14,21); carry16 = (s16 + (1<<20)) >> 21; s17 += carry16; s16 -= SHL64(carry16,21); carry7 = (s7 + (1<<20)) >> 21; s8 += carry7; s7 -= SHL64(carry7,21); carry9 = (s9 + (1<<20)) >> 21; s10 += carry9; s9 -= SHL64(carry9,21); carry11 = (s11 + (1<<20)) >> 21; s12 += carry11; s11 -= SHL64(carry11,21); carry13 = (s13 + (1<<20)) >> 21; s14 += carry13; s13 -= SHL64(carry13,21); carry15 = (s15 + (1<<20)) >> 21; s16 += carry15; s15 -= SHL64(carry15,21); s5 += s17 * 666643; s6 += s17 * 470296; s7 += s17 * 654183; s8 -= s17 * 997805; s9 += s17 * 136657; s10 -= s17 * 683901; s17 = 0; s4 += s16 * 666643; s5 += s16 * 470296; s6 += s16 * 654183; s7 -= s16 * 997805; s8 += s16 * 136657; s9 -= s16 * 683901; s16 = 0; s3 += s15 * 666643; s4 += s15 * 470296; s5 += s15 * 654183; s6 -= s15 * 997805; s7 += s15 * 136657; s8 -= s15 * 683901; s15 = 0; s2 += s14 * 666643; s3 += s14 * 470296; s4 += s14 * 654183; s5 -= s14 * 997805; s6 += s14 * 136657; s7 -= s14 * 683901; s14 = 0; s1 += s13 * 666643; s2 += s13 * 470296; s3 += s13 * 654183; s4 -= s13 * 997805; s5 += s13 * 136657; s6 -= s13 * 683901; s13 = 0; s0 += s12 * 666643; s1 += s12 * 470296; s2 += s12 * 654183; s3 -= s12 * 997805; s4 += s12 * 136657; s5 -= s12 * 683901; s12 = 0; carry0 = (s0 + (1<<20)) >> 21; s1 += carry0; s0 -= SHL64(carry0,21); carry2 = (s2 + (1<<20)) >> 21; s3 += carry2; s2 -= SHL64(carry2,21); carry4 = (s4 + (1<<20)) >> 21; s5 += carry4; s4 -= SHL64(carry4,21); carry6 = (s6 + (1<<20)) >> 21; s7 += carry6; s6 -= SHL64(carry6,21); carry8 = (s8 + (1<<20)) >> 21; s9 += carry8; s8 -= SHL64(carry8,21); carry10 = (s10 + (1<<20)) >> 21; s11 += carry10; s10 -= SHL64(carry10,21); carry1 = (s1 + (1<<20)) >> 21; s2 += carry1; s1 -= SHL64(carry1,21); carry3 = (s3 + (1<<20)) >> 21; s4 += carry3; s3 -= SHL64(carry3,21); carry5 = (s5 + (1<<20)) >> 21; s6 += carry5; s5 -= SHL64(carry5,21); carry7 = (s7 + (1<<20)) >> 21; s8 += carry7; s7 -= SHL64(carry7,21); carry9 = (s9 + (1<<20)) >> 21; s10 += carry9; s9 -= SHL64(carry9,21); carry11 = (s11 + (1<<20)) >> 21; s12 += carry11; s11 -= SHL64(carry11,21); s0 += s12 * 666643; s1 += s12 * 470296; s2 += s12 * 654183; s3 -= s12 * 997805; s4 += s12 * 136657; s5 -= s12 * 683901; s12 = 0; carry0 = s0 >> 21; s1 += carry0; s0 -= SHL64(carry0,21); carry1 = s1 >> 21; s2 += carry1; s1 -= SHL64(carry1,21); carry2 = s2 >> 21; s3 += carry2; s2 -= SHL64(carry2,21); carry3 = s3 >> 21; s4 += carry3; s3 -= SHL64(carry3,21); carry4 = s4 >> 21; s5 += carry4; s4 -= SHL64(carry4,21); carry5 = s5 >> 21; s6 += carry5; s5 -= SHL64(carry5,21); carry6 = s6 >> 21; s7 += carry6; s6 -= SHL64(carry6,21); carry7 = s7 >> 21; s8 += carry7; s7 -= SHL64(carry7,21); carry8 = s8 >> 21; s9 += carry8; s8 -= SHL64(carry8,21); carry9 = s9 >> 21; s10 += carry9; s9 -= SHL64(carry9,21); carry10 = s10 >> 21; s11 += carry10; s10 -= SHL64(carry10,21); carry11 = s11 >> 21; s12 += carry11; s11 -= SHL64(carry11,21); s0 += s12 * 666643; s1 += s12 * 470296; s2 += s12 * 654183; s3 -= s12 * 997805; s4 += s12 * 136657; s5 -= s12 * 683901; s12 = 0; carry0 = s0 >> 21; s1 += carry0; s0 -= SHL64(carry0,21); carry1 = s1 >> 21; s2 += carry1; s1 -= SHL64(carry1,21); carry2 = s2 >> 21; s3 += carry2; s2 -= SHL64(carry2,21); carry3 = s3 >> 21; s4 += carry3; s3 -= SHL64(carry3,21); carry4 = s4 >> 21; s5 += carry4; s4 -= SHL64(carry4,21); carry5 = s5 >> 21; s6 += carry5; s5 -= SHL64(carry5,21); carry6 = s6 >> 21; s7 += carry6; s6 -= SHL64(carry6,21); carry7 = s7 >> 21; s8 += carry7; s7 -= SHL64(carry7,21); carry8 = s8 >> 21; s9 += carry8; s8 -= SHL64(carry8,21); carry9 = s9 >> 21; s10 += carry9; s9 -= SHL64(carry9,21); carry10 = s10 >> 21; s11 += carry10; s10 -= SHL64(carry10,21); s[0] = s0 >> 0; s[1] = s0 >> 8; s[2] = (s0 >> 16) | SHL64(s1,5); s[3] = s1 >> 3; s[4] = s1 >> 11; s[5] = (s1 >> 19) | SHL64(s2,2); s[6] = s2 >> 6; s[7] = (s2 >> 14) | SHL64(s3,7); s[8] = s3 >> 1; s[9] = s3 >> 9; s[10] = (s3 >> 17) | SHL64(s4,4); s[11] = s4 >> 4; s[12] = s4 >> 12; s[13] = (s4 >> 20) | SHL64(s5,1); s[14] = s5 >> 7; s[15] = (s5 >> 15) | SHL64(s6,6); s[16] = s6 >> 2; s[17] = s6 >> 10; s[18] = (s6 >> 18) | SHL64(s7,3); s[19] = s7 >> 5; s[20] = s7 >> 13; s[21] = s8 >> 0; s[22] = s8 >> 8; s[23] = (s8 >> 16) | SHL64(s9,5); s[24] = s9 >> 3; s[25] = s9 >> 11; s[26] = (s9 >> 19) | SHL64(s10,2); s[27] = s10 >> 6; s[28] = (s10 >> 14) | SHL64(s11,7); s[29] = s11 >> 1; s[30] = s11 >> 9; s[31] = s11 >> 17; } tor-0.2.7.6/src/ext/ed25519/ref10/ge_tobytes.c0000644000175000017500000000034112621363246015226 00000000000000#include "ge.h" void ge_tobytes(unsigned char *s,const ge_p2 *h) { fe recip; fe x; fe y; fe_invert(recip,h->Z); fe_mul(x,h->X,recip); fe_mul(y,h->Y,recip); fe_tobytes(s,y); s[31] ^= fe_isnegative(x) << 7; } tor-0.2.7.6/src/ext/ed25519/ref10/ge_p2_0.c0000644000175000017500000000012612621363246014276 00000000000000#include "ge.h" void ge_p2_0(ge_p2 *h) { fe_0(h->X); fe_1(h->Y); fe_1(h->Z); } tor-0.2.7.6/src/ext/ed25519/ref10/fe_frombytes.c0000644000175000017500000000455412621363246015560 00000000000000#include "fe.h" #include "crypto_int64.h" #include "crypto_uint64.h" static crypto_uint64 load_3(const unsigned char *in) { crypto_uint64 result; result = (crypto_uint64) in[0]; result |= ((crypto_uint64) in[1]) << 8; result |= ((crypto_uint64) in[2]) << 16; return result; } static crypto_uint64 load_4(const unsigned char *in) { crypto_uint64 result; result = (crypto_uint64) in[0]; result |= ((crypto_uint64) in[1]) << 8; result |= ((crypto_uint64) in[2]) << 16; result |= ((crypto_uint64) in[3]) << 24; return result; } /* Ignores top bit of h. */ void fe_frombytes(fe h,const unsigned char *s) { crypto_int64 h0 = load_4(s); crypto_int64 h1 = load_3(s + 4) << 6; crypto_int64 h2 = load_3(s + 7) << 5; crypto_int64 h3 = load_3(s + 10) << 3; crypto_int64 h4 = load_3(s + 13) << 2; crypto_int64 h5 = load_4(s + 16); crypto_int64 h6 = load_3(s + 20) << 7; crypto_int64 h7 = load_3(s + 23) << 5; crypto_int64 h8 = load_3(s + 26) << 4; crypto_int64 h9 = (load_3(s + 29) & 8388607) << 2; crypto_int64 carry0; crypto_int64 carry1; crypto_int64 carry2; crypto_int64 carry3; crypto_int64 carry4; crypto_int64 carry5; crypto_int64 carry6; crypto_int64 carry7; crypto_int64 carry8; crypto_int64 carry9; carry9 = (h9 + (crypto_int64) (1<<24)) >> 25; h0 += carry9 * 19; h9 -= SHL64(carry9,25); carry1 = (h1 + (crypto_int64) (1<<24)) >> 25; h2 += carry1; h1 -= SHL64(carry1,25); carry3 = (h3 + (crypto_int64) (1<<24)) >> 25; h4 += carry3; h3 -= SHL64(carry3,25); carry5 = (h5 + (crypto_int64) (1<<24)) >> 25; h6 += carry5; h5 -= SHL64(carry5,25); carry7 = (h7 + (crypto_int64) (1<<24)) >> 25; h8 += carry7; h7 -= SHL64(carry7,25); carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= SHL64(carry0,26); carry2 = (h2 + (crypto_int64) (1<<25)) >> 26; h3 += carry2; h2 -= SHL64(carry2,26); carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= SHL64(carry4,26); carry6 = (h6 + (crypto_int64) (1<<25)) >> 26; h7 += carry6; h6 -= SHL64(carry6,26); carry8 = (h8 + (crypto_int64) (1<<25)) >> 26; h9 += carry8; h8 -= SHL64(carry8,26); h[0] = (crypto_int32) h0; h[1] = (crypto_int32) h1; h[2] = (crypto_int32) h2; h[3] = (crypto_int32) h3; h[4] = (crypto_int32) h4; h[5] = (crypto_int32) h5; h[6] = (crypto_int32) h6; h[7] = (crypto_int32) h7; h[8] = (crypto_int32) h8; h[9] = (crypto_int32) h9; } tor-0.2.7.6/src/ext/ed25519/ref10/ge_add.c0000644000175000017500000000017512621363246014272 00000000000000#include "ge.h" /* r = p + q */ void ge_add(ge_p1p1 *r,const ge_p3 *p,const ge_cached *q) { fe t0; #include "ge_add.h" } tor-0.2.7.6/src/ext/ed25519/ref10/fe_isnonzero.c0000644000175000017500000000047312621363246015570 00000000000000#include "fe.h" #include "crypto_verify_32.h" /* return 1 if f == 0 return 0 if f != 0 Preconditions: |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. */ static const unsigned char zero[32]; int fe_isnonzero(const fe f) { unsigned char s[32]; fe_tobytes(s,f); return crypto_verify_32(s,zero); } tor-0.2.7.6/src/ext/ed25519/ref10/d.h0000644000175000017500000000013312621363246013311 00000000000000-10913610,13857413,-15372611,6949391,114729,-8787816,-6275908,-3247719,-18696448,-12055116 tor-0.2.7.6/src/ext/ed25519/ref10/ge_madd.c0000644000175000017500000000020012621363246014434 00000000000000#include "ge.h" /* r = p + q */ void ge_madd(ge_p1p1 *r,const ge_p3 *p,const ge_precomp *q) { fe t0; #include "ge_madd.h" } tor-0.2.7.6/src/ext/ed25519/ref10/fe_invert.c0000644000175000017500000000020712621363246015044 00000000000000#include "fe.h" void fe_invert(fe out,const fe z) { fe t0; fe t1; fe t2; fe t3; int i; #include "pow225521.h" return; } tor-0.2.7.6/src/ext/ed25519/ref10/sign.c0000644000175000017500000000115512621363246014026 00000000000000/* (Modified by Tor to generate detached signatures.) */ #include #include "crypto_sign.h" #include "crypto_hash_sha512.h" #include "ge.h" #include "sc.h" int crypto_sign( unsigned char *sig, const unsigned char *m, size_t mlen, const unsigned char *sk,const unsigned char *pk ) { unsigned char nonce[64]; unsigned char hram[64]; ge_p3 R; crypto_hash_sha512_2(nonce, sk+32, 32, m, mlen); sc_reduce(nonce); ge_scalarmult_base(&R,nonce); ge_p3_tobytes(sig,&R); crypto_hash_sha512_3(hram, sig, 32, pk, 32, m, mlen); sc_reduce(hram); sc_muladd(sig + 32,hram,sk,nonce); return 0; } tor-0.2.7.6/src/ext/ed25519/ref10/ge_add.h0000644000175000017500000000404012621363246014272 00000000000000 /* qhasm: enter ge_add */ /* qhasm: fe X1 */ /* qhasm: fe Y1 */ /* qhasm: fe Z1 */ /* qhasm: fe Z2 */ /* qhasm: fe T1 */ /* qhasm: fe ZZ */ /* qhasm: fe YpX2 */ /* qhasm: fe YmX2 */ /* qhasm: fe T2d2 */ /* qhasm: fe X3 */ /* qhasm: fe Y3 */ /* qhasm: fe Z3 */ /* qhasm: fe T3 */ /* qhasm: fe YpX1 */ /* qhasm: fe YmX1 */ /* qhasm: fe A */ /* qhasm: fe B */ /* qhasm: fe C */ /* qhasm: fe D */ /* qhasm: YpX1 = Y1+X1 */ /* asm 1: fe_add(>YpX1=fe#1,YpX1=r->X,Y,X); */ fe_add(r->X,p->Y,p->X); /* qhasm: YmX1 = Y1-X1 */ /* asm 1: fe_sub(>YmX1=fe#2,YmX1=r->Y,Y,X); */ fe_sub(r->Y,p->Y,p->X); /* qhasm: A = YpX1*YpX2 */ /* asm 1: fe_mul(>A=fe#3,A=r->Z,X,YplusX); */ fe_mul(r->Z,r->X,q->YplusX); /* qhasm: B = YmX1*YmX2 */ /* asm 1: fe_mul(>B=fe#2,B=r->Y,Y,YminusX); */ fe_mul(r->Y,r->Y,q->YminusX); /* qhasm: C = T2d2*T1 */ /* asm 1: fe_mul(>C=fe#4,C=r->T,T2d,T); */ fe_mul(r->T,q->T2d,p->T); /* qhasm: ZZ = Z1*Z2 */ /* asm 1: fe_mul(>ZZ=fe#1,ZZ=r->X,Z,Z); */ fe_mul(r->X,p->Z,q->Z); /* qhasm: D = 2*ZZ */ /* asm 1: fe_add(>D=fe#5,D=t0,X,X); */ fe_add(t0,r->X,r->X); /* qhasm: X3 = A-B */ /* asm 1: fe_sub(>X3=fe#1,X3=r->X,Z,Y); */ fe_sub(r->X,r->Z,r->Y); /* qhasm: Y3 = A+B */ /* asm 1: fe_add(>Y3=fe#2,Y3=r->Y,Z,Y); */ fe_add(r->Y,r->Z,r->Y); /* qhasm: Z3 = D+C */ /* asm 1: fe_add(>Z3=fe#3,Z3=r->Z,T); */ fe_add(r->Z,t0,r->T); /* qhasm: T3 = D-C */ /* asm 1: fe_sub(>T3=fe#4,T3=r->T,T); */ fe_sub(r->T,t0,r->T); /* qhasm: return */ tor-0.2.7.6/src/ext/ed25519/ref10/fe_sq.c0000644000175000017500000001404212621363246014162 00000000000000#include "fe.h" #include "crypto_int64.h" /* h = f * f Can overlap h with f. Preconditions: |f| bounded by 1.65*2^26,1.65*2^25,1.65*2^26,1.65*2^25,etc. Postconditions: |h| bounded by 1.01*2^25,1.01*2^24,1.01*2^25,1.01*2^24,etc. */ /* See fe_mul.c for discussion of implementation strategy. */ void fe_sq(fe h,const fe f) { crypto_int32 f0 = f[0]; crypto_int32 f1 = f[1]; crypto_int32 f2 = f[2]; crypto_int32 f3 = f[3]; crypto_int32 f4 = f[4]; crypto_int32 f5 = f[5]; crypto_int32 f6 = f[6]; crypto_int32 f7 = f[7]; crypto_int32 f8 = f[8]; crypto_int32 f9 = f[9]; crypto_int32 f0_2 = 2 * f0; crypto_int32 f1_2 = 2 * f1; crypto_int32 f2_2 = 2 * f2; crypto_int32 f3_2 = 2 * f3; crypto_int32 f4_2 = 2 * f4; crypto_int32 f5_2 = 2 * f5; crypto_int32 f6_2 = 2 * f6; crypto_int32 f7_2 = 2 * f7; crypto_int32 f5_38 = 38 * f5; /* 1.959375*2^30 */ crypto_int32 f6_19 = 19 * f6; /* 1.959375*2^30 */ crypto_int32 f7_38 = 38 * f7; /* 1.959375*2^30 */ crypto_int32 f8_19 = 19 * f8; /* 1.959375*2^30 */ crypto_int32 f9_38 = 38 * f9; /* 1.959375*2^30 */ crypto_int64 f0f0 = f0 * (crypto_int64) f0; crypto_int64 f0f1_2 = f0_2 * (crypto_int64) f1; crypto_int64 f0f2_2 = f0_2 * (crypto_int64) f2; crypto_int64 f0f3_2 = f0_2 * (crypto_int64) f3; crypto_int64 f0f4_2 = f0_2 * (crypto_int64) f4; crypto_int64 f0f5_2 = f0_2 * (crypto_int64) f5; crypto_int64 f0f6_2 = f0_2 * (crypto_int64) f6; crypto_int64 f0f7_2 = f0_2 * (crypto_int64) f7; crypto_int64 f0f8_2 = f0_2 * (crypto_int64) f8; crypto_int64 f0f9_2 = f0_2 * (crypto_int64) f9; crypto_int64 f1f1_2 = f1_2 * (crypto_int64) f1; crypto_int64 f1f2_2 = f1_2 * (crypto_int64) f2; crypto_int64 f1f3_4 = f1_2 * (crypto_int64) f3_2; crypto_int64 f1f4_2 = f1_2 * (crypto_int64) f4; crypto_int64 f1f5_4 = f1_2 * (crypto_int64) f5_2; crypto_int64 f1f6_2 = f1_2 * (crypto_int64) f6; crypto_int64 f1f7_4 = f1_2 * (crypto_int64) f7_2; crypto_int64 f1f8_2 = f1_2 * (crypto_int64) f8; crypto_int64 f1f9_76 = f1_2 * (crypto_int64) f9_38; crypto_int64 f2f2 = f2 * (crypto_int64) f2; crypto_int64 f2f3_2 = f2_2 * (crypto_int64) f3; crypto_int64 f2f4_2 = f2_2 * (crypto_int64) f4; crypto_int64 f2f5_2 = f2_2 * (crypto_int64) f5; crypto_int64 f2f6_2 = f2_2 * (crypto_int64) f6; crypto_int64 f2f7_2 = f2_2 * (crypto_int64) f7; crypto_int64 f2f8_38 = f2_2 * (crypto_int64) f8_19; crypto_int64 f2f9_38 = f2 * (crypto_int64) f9_38; crypto_int64 f3f3_2 = f3_2 * (crypto_int64) f3; crypto_int64 f3f4_2 = f3_2 * (crypto_int64) f4; crypto_int64 f3f5_4 = f3_2 * (crypto_int64) f5_2; crypto_int64 f3f6_2 = f3_2 * (crypto_int64) f6; crypto_int64 f3f7_76 = f3_2 * (crypto_int64) f7_38; crypto_int64 f3f8_38 = f3_2 * (crypto_int64) f8_19; crypto_int64 f3f9_76 = f3_2 * (crypto_int64) f9_38; crypto_int64 f4f4 = f4 * (crypto_int64) f4; crypto_int64 f4f5_2 = f4_2 * (crypto_int64) f5; crypto_int64 f4f6_38 = f4_2 * (crypto_int64) f6_19; crypto_int64 f4f7_38 = f4 * (crypto_int64) f7_38; crypto_int64 f4f8_38 = f4_2 * (crypto_int64) f8_19; crypto_int64 f4f9_38 = f4 * (crypto_int64) f9_38; crypto_int64 f5f5_38 = f5 * (crypto_int64) f5_38; crypto_int64 f5f6_38 = f5_2 * (crypto_int64) f6_19; crypto_int64 f5f7_76 = f5_2 * (crypto_int64) f7_38; crypto_int64 f5f8_38 = f5_2 * (crypto_int64) f8_19; crypto_int64 f5f9_76 = f5_2 * (crypto_int64) f9_38; crypto_int64 f6f6_19 = f6 * (crypto_int64) f6_19; crypto_int64 f6f7_38 = f6 * (crypto_int64) f7_38; crypto_int64 f6f8_38 = f6_2 * (crypto_int64) f8_19; crypto_int64 f6f9_38 = f6 * (crypto_int64) f9_38; crypto_int64 f7f7_38 = f7 * (crypto_int64) f7_38; crypto_int64 f7f8_38 = f7_2 * (crypto_int64) f8_19; crypto_int64 f7f9_76 = f7_2 * (crypto_int64) f9_38; crypto_int64 f8f8_19 = f8 * (crypto_int64) f8_19; crypto_int64 f8f9_38 = f8 * (crypto_int64) f9_38; crypto_int64 f9f9_38 = f9 * (crypto_int64) f9_38; crypto_int64 h0 = f0f0 +f1f9_76+f2f8_38+f3f7_76+f4f6_38+f5f5_38; crypto_int64 h1 = f0f1_2+f2f9_38+f3f8_38+f4f7_38+f5f6_38; crypto_int64 h2 = f0f2_2+f1f1_2 +f3f9_76+f4f8_38+f5f7_76+f6f6_19; crypto_int64 h3 = f0f3_2+f1f2_2 +f4f9_38+f5f8_38+f6f7_38; crypto_int64 h4 = f0f4_2+f1f3_4 +f2f2 +f5f9_76+f6f8_38+f7f7_38; crypto_int64 h5 = f0f5_2+f1f4_2 +f2f3_2 +f6f9_38+f7f8_38; crypto_int64 h6 = f0f6_2+f1f5_4 +f2f4_2 +f3f3_2 +f7f9_76+f8f8_19; crypto_int64 h7 = f0f7_2+f1f6_2 +f2f5_2 +f3f4_2 +f8f9_38; crypto_int64 h8 = f0f8_2+f1f7_4 +f2f6_2 +f3f5_4 +f4f4 +f9f9_38; crypto_int64 h9 = f0f9_2+f1f8_2 +f2f7_2 +f3f6_2 +f4f5_2; crypto_int64 carry0; crypto_int64 carry1; crypto_int64 carry2; crypto_int64 carry3; crypto_int64 carry4; crypto_int64 carry5; crypto_int64 carry6; crypto_int64 carry7; crypto_int64 carry8; crypto_int64 carry9; carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= SHL64(carry0,26); carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= SHL64(carry4,26); carry1 = (h1 + (crypto_int64) (1<<24)) >> 25; h2 += carry1; h1 -= SHL64(carry1,25); carry5 = (h5 + (crypto_int64) (1<<24)) >> 25; h6 += carry5; h5 -= SHL64(carry5,25); carry2 = (h2 + (crypto_int64) (1<<25)) >> 26; h3 += carry2; h2 -= SHL64(carry2,26); carry6 = (h6 + (crypto_int64) (1<<25)) >> 26; h7 += carry6; h6 -= SHL64(carry6,26); carry3 = (h3 + (crypto_int64) (1<<24)) >> 25; h4 += carry3; h3 -= SHL64(carry3,25); carry7 = (h7 + (crypto_int64) (1<<24)) >> 25; h8 += carry7; h7 -= SHL64(carry7,25); carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= SHL64(carry4,26); carry8 = (h8 + (crypto_int64) (1<<25)) >> 26; h9 += carry8; h8 -= SHL64(carry8,26); carry9 = (h9 + (crypto_int64) (1<<24)) >> 25; h0 += carry9 * 19; h9 -= SHL64(carry9,25); carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= SHL64(carry0,26); h[0] = (crypto_int32) h0; h[1] = (crypto_int32) h1; h[2] = (crypto_int32) h2; h[3] = (crypto_int32) h3; h[4] = (crypto_int32) h4; h[5] = (crypto_int32) h5; h[6] = (crypto_int32) h6; h[7] = (crypto_int32) h7; h[8] = (crypto_int32) h8; h[9] = (crypto_int32) h9; } tor-0.2.7.6/src/ext/ed25519/ref10/blinding.c0000644000175000017500000000441612621363246014657 00000000000000/* Added to ref10 for Tor. We place this in the public domain. Alternatively, * you may have it under the Creative Commons 0 "CC0" license. */ //#include "fe.h" #include "ge.h" #include "sc.h" #include "crypto_hash_sha512.h" #include "ed25519_ref10.h" #include #include "crypto.h" static void gettweak(unsigned char *out, const unsigned char *param) { const char str[] = "Derive temporary signing key"; crypto_hash_sha512_2(out, (const unsigned char*)str, strlen(str), param, 32); out[0] &= 248; /* Is this necessary necessary ? */ out[31] &= 63; out[31] |= 64; } int ed25519_ref10_blind_secret_key(unsigned char *out, const unsigned char *inp, const unsigned char *param) { const char str[] = "Derive temporary signing key hash input"; unsigned char tweak[64]; unsigned char zero[32]; gettweak(tweak, param); memset(zero, 0, 32); sc_muladd(out, inp, tweak, zero); crypto_hash_sha512_2(tweak, (const unsigned char *)str, strlen(str), inp+32, 32); memcpy(out+32, tweak, 32); memwipe(tweak, 0, sizeof(tweak)); return 0; } int ed25519_ref10_blind_public_key(unsigned char *out, const unsigned char *inp, const unsigned char *param) { unsigned char tweak[64]; unsigned char zero[32]; unsigned char pkcopy[32]; ge_p3 A; ge_p2 Aprime; gettweak(tweak, param); memset(zero, 0, sizeof(zero)); /* Not the greatest implementation of all of this. I wish I had * better-suited primitives to work with here... (but I don't wish that so * strongly that I'm about to code my own ge_scalarmult_vartime). */ /* We negate the public key first, so that we can pass it to * frombytes_negate_vartime, which negates it again. If there were a * "ge_frombytes", we'd use that, but there isn't. */ memcpy(pkcopy, inp, 32); pkcopy[31] ^= (1<<7); ge_frombytes_negate_vartime(&A, pkcopy); /* There isn't a regular ge_scalarmult -- we have to do tweak*A + zero*B. */ ge_double_scalarmult_vartime(&Aprime, tweak, &A, zero); ge_tobytes(out, &Aprime); memwipe(tweak, 0, sizeof(tweak)); memwipe(&A, 0, sizeof(A)); memwipe(&Aprime, 0, sizeof(Aprime)); memwipe(pkcopy, 0, sizeof(pkcopy)); return 0; } tor-0.2.7.6/src/ext/ed25519/ref10/fe_0.c0000644000175000017500000000025212621363246013674 00000000000000#include "fe.h" /* h = 0 */ void fe_0(fe h) { h[0] = 0; h[1] = 0; h[2] = 0; h[3] = 0; h[4] = 0; h[5] = 0; h[6] = 0; h[7] = 0; h[8] = 0; h[9] = 0; } tor-0.2.7.6/src/ext/ed25519/ref10/fe_add.c0000644000175000017500000000234712621363246014274 00000000000000#include "fe.h" /* h = f + g Can overlap h with f or g. Preconditions: |f| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. |g| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. Postconditions: |h| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. */ void fe_add(fe h,const fe f,const fe g) { crypto_int32 f0 = f[0]; crypto_int32 f1 = f[1]; crypto_int32 f2 = f[2]; crypto_int32 f3 = f[3]; crypto_int32 f4 = f[4]; crypto_int32 f5 = f[5]; crypto_int32 f6 = f[6]; crypto_int32 f7 = f[7]; crypto_int32 f8 = f[8]; crypto_int32 f9 = f[9]; crypto_int32 g0 = g[0]; crypto_int32 g1 = g[1]; crypto_int32 g2 = g[2]; crypto_int32 g3 = g[3]; crypto_int32 g4 = g[4]; crypto_int32 g5 = g[5]; crypto_int32 g6 = g[6]; crypto_int32 g7 = g[7]; crypto_int32 g8 = g[8]; crypto_int32 g9 = g[9]; crypto_int32 h0 = f0 + g0; crypto_int32 h1 = f1 + g1; crypto_int32 h2 = f2 + g2; crypto_int32 h3 = f3 + g3; crypto_int32 h4 = f4 + g4; crypto_int32 h5 = f5 + g5; crypto_int32 h6 = f6 + g6; crypto_int32 h7 = f7 + g7; crypto_int32 h8 = f8 + g8; crypto_int32 h9 = f9 + g9; h[0] = h0; h[1] = h1; h[2] = h2; h[3] = h3; h[4] = h4; h[5] = h5; h[6] = h6; h[7] = h7; h[8] = h8; h[9] = h9; } tor-0.2.7.6/src/ext/ed25519/ref10/fe_neg.c0000644000175000017500000000152712621363246014314 00000000000000#include "fe.h" /* h = -f Preconditions: |f| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. Postconditions: |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. */ void fe_neg(fe h,const fe f) { crypto_int32 f0 = f[0]; crypto_int32 f1 = f[1]; crypto_int32 f2 = f[2]; crypto_int32 f3 = f[3]; crypto_int32 f4 = f[4]; crypto_int32 f5 = f[5]; crypto_int32 f6 = f[6]; crypto_int32 f7 = f[7]; crypto_int32 f8 = f[8]; crypto_int32 f9 = f[9]; crypto_int32 h0 = -f0; crypto_int32 h1 = -f1; crypto_int32 h2 = -f2; crypto_int32 h3 = -f3; crypto_int32 h4 = -f4; crypto_int32 h5 = -f5; crypto_int32 h6 = -f6; crypto_int32 h7 = -f7; crypto_int32 h8 = -f8; crypto_int32 h9 = -f9; h[0] = h0; h[1] = h1; h[2] = h2; h[3] = h3; h[4] = h4; h[5] = h5; h[6] = h6; h[7] = h7; h[8] = h8; h[9] = h9; } tor-0.2.7.6/src/ext/ed25519/ref10/fe_pow22523.c0000644000175000017500000000017712621363246014746 00000000000000#include "fe.h" void fe_pow22523(fe out,const fe z) { fe t0; fe t1; fe t2; int i; #include "pow22523.h" return; } tor-0.2.7.6/src/ext/ed25519/ref10/pow22523.h0000644000175000017500000001305112621363246014274 00000000000000/* Modified by Tor: pointless loops removed to appease analysis tools */ /* qhasm: fe z1 */ /* qhasm: fe z2 */ /* qhasm: fe z8 */ /* qhasm: fe z9 */ /* qhasm: fe z11 */ /* qhasm: fe z22 */ /* qhasm: fe z_5_0 */ /* qhasm: fe z_10_5 */ /* qhasm: fe z_10_0 */ /* qhasm: fe z_20_10 */ /* qhasm: fe z_20_0 */ /* qhasm: fe z_40_20 */ /* qhasm: fe z_40_0 */ /* qhasm: fe z_50_10 */ /* qhasm: fe z_50_0 */ /* qhasm: fe z_100_50 */ /* qhasm: fe z_100_0 */ /* qhasm: fe z_200_100 */ /* qhasm: fe z_200_0 */ /* qhasm: fe z_250_50 */ /* qhasm: fe z_250_0 */ /* qhasm: fe z_252_2 */ /* qhasm: fe z_252_3 */ /* qhasm: enter pow22523 */ /* qhasm: z2 = z1^2^1 */ /* asm 1: fe_sq(>z2=fe#1,z2=fe#1,>z2=fe#1); */ /* asm 2: fe_sq(>z2=t0,z2=t0,>z2=t0); */ fe_sq(t0,z); /* DEADCODE This loop has no effect: for (i = 1;i < 1;++i) fe_sq(t0,t0); */ /* qhasm: z8 = z2^2^2 */ /* asm 1: fe_sq(>z8=fe#2,z8=fe#2,>z8=fe#2); */ /* asm 2: fe_sq(>z8=t1,z8=t1,>z8=t1); */ fe_sq(t1,t0); for (i = 1;i < 2;++i) fe_sq(t1,t1); /* qhasm: z9 = z1*z8 */ /* asm 1: fe_mul(>z9=fe#2,z9=t1,z11=fe#1,z11=t0,z22=fe#1,z22=fe#1,>z22=fe#1); */ /* asm 2: fe_sq(>z22=t0,z22=t0,>z22=t0); */ fe_sq(t0,t0); /* DEADCODE This loop has no effect: for (i = 1;i < 1;++i) fe_sq(t0,t0); */ /* qhasm: z_5_0 = z9*z22 */ /* asm 1: fe_mul(>z_5_0=fe#1,z_5_0=t0,z_10_5=fe#2,z_10_5=fe#2,>z_10_5=fe#2); */ /* asm 2: fe_sq(>z_10_5=t1,z_10_5=t1,>z_10_5=t1); */ fe_sq(t1,t0); for (i = 1;i < 5;++i) fe_sq(t1,t1); /* qhasm: z_10_0 = z_10_5*z_5_0 */ /* asm 1: fe_mul(>z_10_0=fe#1,z_10_0=t0,z_20_10=fe#2,z_20_10=fe#2,>z_20_10=fe#2); */ /* asm 2: fe_sq(>z_20_10=t1,z_20_10=t1,>z_20_10=t1); */ fe_sq(t1,t0); for (i = 1;i < 10;++i) fe_sq(t1,t1); /* qhasm: z_20_0 = z_20_10*z_10_0 */ /* asm 1: fe_mul(>z_20_0=fe#2,z_20_0=t1,z_40_20=fe#3,z_40_20=fe#3,>z_40_20=fe#3); */ /* asm 2: fe_sq(>z_40_20=t2,z_40_20=t2,>z_40_20=t2); */ fe_sq(t2,t1); for (i = 1;i < 20;++i) fe_sq(t2,t2); /* qhasm: z_40_0 = z_40_20*z_20_0 */ /* asm 1: fe_mul(>z_40_0=fe#2,z_40_0=t1,z_50_10=fe#2,z_50_10=fe#2,>z_50_10=fe#2); */ /* asm 2: fe_sq(>z_50_10=t1,z_50_10=t1,>z_50_10=t1); */ fe_sq(t1,t1); for (i = 1;i < 10;++i) fe_sq(t1,t1); /* qhasm: z_50_0 = z_50_10*z_10_0 */ /* asm 1: fe_mul(>z_50_0=fe#1,z_50_0=t0,z_100_50=fe#2,z_100_50=fe#2,>z_100_50=fe#2); */ /* asm 2: fe_sq(>z_100_50=t1,z_100_50=t1,>z_100_50=t1); */ fe_sq(t1,t0); for (i = 1;i < 50;++i) fe_sq(t1,t1); /* qhasm: z_100_0 = z_100_50*z_50_0 */ /* asm 1: fe_mul(>z_100_0=fe#2,z_100_0=t1,z_200_100=fe#3,z_200_100=fe#3,>z_200_100=fe#3); */ /* asm 2: fe_sq(>z_200_100=t2,z_200_100=t2,>z_200_100=t2); */ fe_sq(t2,t1); for (i = 1;i < 100;++i) fe_sq(t2,t2); /* qhasm: z_200_0 = z_200_100*z_100_0 */ /* asm 1: fe_mul(>z_200_0=fe#2,z_200_0=t1,z_250_50=fe#2,z_250_50=fe#2,>z_250_50=fe#2); */ /* asm 2: fe_sq(>z_250_50=t1,z_250_50=t1,>z_250_50=t1); */ fe_sq(t1,t1); for (i = 1;i < 50;++i) fe_sq(t1,t1); /* qhasm: z_250_0 = z_250_50*z_50_0 */ /* asm 1: fe_mul(>z_250_0=fe#1,z_250_0=t0,z_252_2=fe#1,z_252_2=fe#1,>z_252_2=fe#1); */ /* asm 2: fe_sq(>z_252_2=t0,z_252_2=t0,>z_252_2=t0); */ fe_sq(t0,t0); for (i = 1;i < 2;++i) fe_sq(t0,t0); /* qhasm: z_252_3 = z_252_2*z1 */ /* asm 1: fe_mul(>z_252_3=fe#12,z_252_3=out,z2=fe#1,z2=fe#1,>z2=fe#1); */ /* asm 2: fe_sq(>z2=t0,z2=t0,>z2=t0); */ fe_sq(t0,z); /* DEADCODE This loop has no effect: for (i = 1;i < 1;++i) fe_sq(t0,t0); */ /* qhasm: z8 = z2^2^2 */ /* asm 1: fe_sq(>z8=fe#2,z8=fe#2,>z8=fe#2); */ /* asm 2: fe_sq(>z8=t1,z8=t1,>z8=t1); */ fe_sq(t1,t0); for (i = 1;i < 2;++i) fe_sq(t1,t1); /* qhasm: z9 = z1*z8 */ /* asm 1: fe_mul(>z9=fe#2,z9=t1,z11=fe#1,z11=t0,z22=fe#3,z22=fe#3,>z22=fe#3); */ /* asm 2: fe_sq(>z22=t2,z22=t2,>z22=t2); */ fe_sq(t2,t0); /* DEADCODE This loop has no effect for (i = 1;i < 1;++i) fe_sq(t2,t2); */ /* qhasm: z_5_0 = z9*z22 */ /* asm 1: fe_mul(>z_5_0=fe#2,z_5_0=t1,z_10_5=fe#3,z_10_5=fe#3,>z_10_5=fe#3); */ /* asm 2: fe_sq(>z_10_5=t2,z_10_5=t2,>z_10_5=t2); */ fe_sq(t2,t1); for (i = 1;i < 5;++i) fe_sq(t2,t2); /* qhasm: z_10_0 = z_10_5*z_5_0 */ /* asm 1: fe_mul(>z_10_0=fe#2,z_10_0=t1,z_20_10=fe#3,z_20_10=fe#3,>z_20_10=fe#3); */ /* asm 2: fe_sq(>z_20_10=t2,z_20_10=t2,>z_20_10=t2); */ fe_sq(t2,t1); for (i = 1;i < 10;++i) fe_sq(t2,t2); /* qhasm: z_20_0 = z_20_10*z_10_0 */ /* asm 1: fe_mul(>z_20_0=fe#3,z_20_0=t2,z_40_20=fe#4,z_40_20=fe#4,>z_40_20=fe#4); */ /* asm 2: fe_sq(>z_40_20=t3,z_40_20=t3,>z_40_20=t3); */ fe_sq(t3,t2); for (i = 1;i < 20;++i) fe_sq(t3,t3); /* qhasm: z_40_0 = z_40_20*z_20_0 */ /* asm 1: fe_mul(>z_40_0=fe#3,z_40_0=t2,z_50_10=fe#3,z_50_10=fe#3,>z_50_10=fe#3); */ /* asm 2: fe_sq(>z_50_10=t2,z_50_10=t2,>z_50_10=t2); */ fe_sq(t2,t2); for (i = 1;i < 10;++i) fe_sq(t2,t2); /* qhasm: z_50_0 = z_50_10*z_10_0 */ /* asm 1: fe_mul(>z_50_0=fe#2,z_50_0=t1,z_100_50=fe#3,z_100_50=fe#3,>z_100_50=fe#3); */ /* asm 2: fe_sq(>z_100_50=t2,z_100_50=t2,>z_100_50=t2); */ fe_sq(t2,t1); for (i = 1;i < 50;++i) fe_sq(t2,t2); /* qhasm: z_100_0 = z_100_50*z_50_0 */ /* asm 1: fe_mul(>z_100_0=fe#3,z_100_0=t2,z_200_100=fe#4,z_200_100=fe#4,>z_200_100=fe#4); */ /* asm 2: fe_sq(>z_200_100=t3,z_200_100=t3,>z_200_100=t3); */ fe_sq(t3,t2); for (i = 1;i < 100;++i) fe_sq(t3,t3); /* qhasm: z_200_0 = z_200_100*z_100_0 */ /* asm 1: fe_mul(>z_200_0=fe#3,z_200_0=t2,z_250_50=fe#3,z_250_50=fe#3,>z_250_50=fe#3); */ /* asm 2: fe_sq(>z_250_50=t2,z_250_50=t2,>z_250_50=t2); */ fe_sq(t2,t2); for (i = 1;i < 50;++i) fe_sq(t2,t2); /* qhasm: z_250_0 = z_250_50*z_50_0 */ /* asm 1: fe_mul(>z_250_0=fe#2,z_250_0=t1,z_255_5=fe#2,z_255_5=fe#2,>z_255_5=fe#2); */ /* asm 2: fe_sq(>z_255_5=t1,z_255_5=t1,>z_255_5=t1); */ fe_sq(t1,t1); for (i = 1;i < 5;++i) fe_sq(t1,t1); /* qhasm: z_255_21 = z_255_5*z11 */ /* asm 1: fe_mul(>z_255_21=fe#12,z_255_21=out,YplusX,p->Y,p->X); fe_sub(r->YminusX,p->Y,p->X); fe_copy(r->Z,p->Z); fe_mul(r->T2d,p->T,d2); } tor-0.2.7.6/src/ext/ed25519/ref10/open.c0000644000175000017500000000167712621363246014040 00000000000000/* (Modified by Tor to verify signature separately from message) */ #include #include "crypto_sign.h" #include "crypto_hash_sha512.h" #include "crypto_verify_32.h" #include "ge.h" #include "sc.h" /* 'signature' must be 64-bytes long. */ int crypto_sign_open( const unsigned char *signature, const unsigned char *m, size_t mlen, const unsigned char *pk ) { unsigned char pkcopy[32]; unsigned char rcopy[32]; unsigned char scopy[32]; unsigned char h[64]; unsigned char rcheck[32]; ge_p3 A; ge_p2 R; if (signature[63] & 224) goto badsig; if (ge_frombytes_negate_vartime(&A,pk) != 0) goto badsig; memmove(pkcopy,pk,32); memmove(rcopy,signature,32); memmove(scopy,signature + 32,32); crypto_hash_sha512_3(h, rcopy, 32, pkcopy, 32, m, mlen); sc_reduce(h); ge_double_scalarmult_vartime(&R,h,&A,scopy); ge_tobytes(rcheck,&R); if (crypto_verify_32(rcheck,rcopy) == 0) { return 0; } badsig: return -1; } tor-0.2.7.6/src/ext/ed25519/ref10/crypto_int64.h0000644000175000017500000000100712621363246015433 00000000000000/* Added for Tor. */ #ifndef CRYPTO_INT64_H #define CRYPTO_INT64_H #include "torint.h" #define crypto_int64 int64_t #define crypto_uint64 uint64_t /* Stop signed left shifts overflowing by using unsigned types for bitwise operations */ #ifndef OVERFLOW_SAFE_SIGNED_LSHIFT #define OVERFLOW_SAFE_SIGNED_LSHIFT(s, lshift, utype, stype) \ ((stype)((utype)(s) << (utype)(lshift))) #endif #define SHL64(s, lshift) \ OVERFLOW_SAFE_SIGNED_LSHIFT(s, lshift, crypto_uint64, crypto_int64) #endif /* CRYPTO_INT64_H */ tor-0.2.7.6/src/ext/ed25519/ref10/randombytes.h0000644000175000017500000000015112632034724015413 00000000000000/* Added for Tor. */ #include "crypto.h" #define randombytes(b, n) \ (crypto_strongest_rand((b), (n))) tor-0.2.7.6/src/ext/ed25519/ref10/ge_msub.h0000644000175000017500000000355412621363246014521 00000000000000 /* qhasm: enter ge_msub */ /* qhasm: fe X1 */ /* qhasm: fe Y1 */ /* qhasm: fe Z1 */ /* qhasm: fe T1 */ /* qhasm: fe ypx2 */ /* qhasm: fe ymx2 */ /* qhasm: fe xy2d2 */ /* qhasm: fe X3 */ /* qhasm: fe Y3 */ /* qhasm: fe Z3 */ /* qhasm: fe T3 */ /* qhasm: fe YpX1 */ /* qhasm: fe YmX1 */ /* qhasm: fe A */ /* qhasm: fe B */ /* qhasm: fe C */ /* qhasm: fe D */ /* qhasm: YpX1 = Y1+X1 */ /* asm 1: fe_add(>YpX1=fe#1,YpX1=r->X,Y,X); */ fe_add(r->X,p->Y,p->X); /* qhasm: YmX1 = Y1-X1 */ /* asm 1: fe_sub(>YmX1=fe#2,YmX1=r->Y,Y,X); */ fe_sub(r->Y,p->Y,p->X); /* qhasm: A = YpX1*ymx2 */ /* asm 1: fe_mul(>A=fe#3,A=r->Z,X,yminusx); */ fe_mul(r->Z,r->X,q->yminusx); /* qhasm: B = YmX1*ypx2 */ /* asm 1: fe_mul(>B=fe#2,B=r->Y,Y,yplusx); */ fe_mul(r->Y,r->Y,q->yplusx); /* qhasm: C = xy2d2*T1 */ /* asm 1: fe_mul(>C=fe#4,C=r->T,xy2d,T); */ fe_mul(r->T,q->xy2d,p->T); /* qhasm: D = 2*Z1 */ /* asm 1: fe_add(>D=fe#5,D=t0,Z,Z); */ fe_add(t0,p->Z,p->Z); /* qhasm: X3 = A-B */ /* asm 1: fe_sub(>X3=fe#1,X3=r->X,Z,Y); */ fe_sub(r->X,r->Z,r->Y); /* qhasm: Y3 = A+B */ /* asm 1: fe_add(>Y3=fe#2,Y3=r->Y,Z,Y); */ fe_add(r->Y,r->Z,r->Y); /* qhasm: Z3 = D-C */ /* asm 1: fe_sub(>Z3=fe#3,Z3=r->Z,T); */ fe_sub(r->Z,t0,r->T); /* qhasm: T3 = D+C */ /* asm 1: fe_add(>T3=fe#4,T3=r->T,T); */ fe_add(r->T,t0,r->T); /* qhasm: return */ tor-0.2.7.6/src/ext/ed25519/ref10/keyconv.c0000644000175000017500000000153712621363246014550 00000000000000/* Added to ref10 for Tor. We place this in the public domain. Alternatively, * you may have it under the Creative Commons 0 "CC0" license. */ #include "fe.h" #include "ed25519_ref10.h" int ed25519_ref10_pubkey_from_curve25519_pubkey(unsigned char *out, const unsigned char *inp, int signbit) { fe u; fe one; fe y; fe uplus1; fe uminus1; fe inv_uplus1; /* From prop228: Given a curve25519 x-coordinate (u), we can get the y coordinate of the ed25519 key using y = (u-1)/(u+1) */ fe_frombytes(u, inp); fe_1(one); fe_sub(uminus1, u, one); fe_add(uplus1, u, one); fe_invert(inv_uplus1, uplus1); fe_mul(y, uminus1, inv_uplus1); fe_tobytes(out, y); /* propagate sign. */ out[31] |= (!!signbit) << 7; return 0; } tor-0.2.7.6/src/ext/ed25519/ref10/ed25519_ref10.h0000644000175000017500000000230312621363246015062 00000000000000/* Added for Tor */ #ifndef SRC_EXT_ED25519_REF10_H_INCLUDED_ #define SRC_EXT_ED25519_REF10_H_INCLUDED_ #include int ed25519_ref10_seckey(unsigned char *sk); int ed25519_ref10_seckey_expand(unsigned char *sk, const unsigned char *sk_seed); int ed25519_ref10_pubkey(unsigned char *pk,const unsigned char *sk); int ed25519_ref10_keygen(unsigned char *pk,unsigned char *sk); int ed25519_ref10_open( const unsigned char *signature, const unsigned char *m, size_t mlen, const unsigned char *pk); int ed25519_ref10_sign( unsigned char *sig, const unsigned char *m, size_t mlen, const unsigned char *sk, const unsigned char *pk); /* Added in Tor */ int ed25519_ref10_pubkey_from_curve25519_pubkey(unsigned char *out, const unsigned char *inp, int signbit); int ed25519_ref10_blind_secret_key(unsigned char *out, const unsigned char *inp, const unsigned char *param); int ed25519_ref10_blind_public_key(unsigned char *out, const unsigned char *inp, const unsigned char *param); #endif tor-0.2.7.6/src/ext/ed25519/ref10/ge_p1p1_to_p3.c0000644000175000017500000000027712621363246015432 00000000000000#include "ge.h" /* r = p */ extern void ge_p1p1_to_p3(ge_p3 *r,const ge_p1p1 *p) { fe_mul(r->X,p->X,p->T); fe_mul(r->Y,p->Y,p->Z); fe_mul(r->Z,p->Z,p->T); fe_mul(r->T,p->X,p->Y); } tor-0.2.7.6/src/ext/ed25519/ref10/fe_tobytes.c0000644000175000017500000000625512621363246015237 00000000000000#include "fe.h" /* Preconditions: |h| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. Write p=2^255-19; q=floor(h/p). Basic claim: q = floor(2^(-255)(h + 19 2^(-25)h9 + 2^(-1))). Proof: Have |h|<=p so |q|<=1 so |19^2 2^(-255) q|<1/4. Also have |h-2^230 h9|<2^231 so |19 2^(-255)(h-2^230 h9)|<1/4. Write y=2^(-1)-19^2 2^(-255)q-19 2^(-255)(h-2^230 h9). Then 0> 25; q = (h0 + q) >> 26; q = (h1 + q) >> 25; q = (h2 + q) >> 26; q = (h3 + q) >> 25; q = (h4 + q) >> 26; q = (h5 + q) >> 25; q = (h6 + q) >> 26; q = (h7 + q) >> 25; q = (h8 + q) >> 26; q = (h9 + q) >> 25; /* Goal: Output h-(2^255-19)q, which is between 0 and 2^255-20. */ h0 += 19 * q; /* Goal: Output h-2^255 q, which is between 0 and 2^255-20. */ carry0 = h0 >> 26; h1 += carry0; h0 -= SHL32(carry0,26); carry1 = h1 >> 25; h2 += carry1; h1 -= SHL32(carry1,25); carry2 = h2 >> 26; h3 += carry2; h2 -= SHL32(carry2,26); carry3 = h3 >> 25; h4 += carry3; h3 -= SHL32(carry3,25); carry4 = h4 >> 26; h5 += carry4; h4 -= SHL32(carry4,26); carry5 = h5 >> 25; h6 += carry5; h5 -= SHL32(carry5,25); carry6 = h6 >> 26; h7 += carry6; h6 -= SHL32(carry6,26); carry7 = h7 >> 25; h8 += carry7; h7 -= SHL32(carry7,25); carry8 = h8 >> 26; h9 += carry8; h8 -= SHL32(carry8,26); carry9 = h9 >> 25; h9 -= SHL32(carry9,25); /* h10 = carry9 */ /* Goal: Output h0+...+2^255 h10-2^255 q, which is between 0 and 2^255-20. Have h0+...+2^230 h9 between 0 and 2^255-1; evidently 2^255 h10-2^255 q = 0. Goal: Output h0+...+2^230 h9. */ s[0] = h0 >> 0; s[1] = h0 >> 8; s[2] = h0 >> 16; s[3] = (h0 >> 24) | SHL32(h1,2); s[4] = h1 >> 6; s[5] = h1 >> 14; s[6] = (h1 >> 22) | SHL32(h2,3); s[7] = h2 >> 5; s[8] = h2 >> 13; s[9] = (h2 >> 21) | SHL32(h3,5); s[10] = h3 >> 3; s[11] = h3 >> 11; s[12] = (h3 >> 19) | SHL32(h4,6); s[13] = h4 >> 2; s[14] = h4 >> 10; s[15] = h4 >> 18; s[16] = h5 >> 0; s[17] = h5 >> 8; s[18] = h5 >> 16; s[19] = (h5 >> 24) | SHL32(h6,1); s[20] = h6 >> 7; s[21] = h6 >> 15; s[22] = (h6 >> 23) | SHL32(h7,3); s[23] = h7 >> 5; s[24] = h7 >> 13; s[25] = (h7 >> 21) | SHL32(h8,4); s[26] = h8 >> 4; s[27] = h8 >> 12; s[28] = (h8 >> 20) | SHL32(h9,6); s[29] = h9 >> 2; s[30] = h9 >> 10; s[31] = h9 >> 18; } tor-0.2.7.6/src/ext/ed25519/ref10/ge_scalarmult_base.c0000644000175000017500000000507112621363246016703 00000000000000#include "ge.h" #include "crypto_uint32.h" /* Rename this so as not to interfere with select() which torint.h apparently * grabs. :p */ #define select ed25519_ref10_select static unsigned char equal(signed char b,signed char c) { unsigned char ub = b; unsigned char uc = c; unsigned char x = ub ^ uc; /* 0: yes; 1..255: no */ crypto_uint32 y = x; /* 0: yes; 1..255: no */ y -= 1; /* 4294967295: yes; 0..254: no */ y >>= 31; /* 1: yes; 0: no */ return y; } static unsigned char negative(signed char b) { uint64_t x = b; /* 18446744073709551361..18446744073709551615: yes; 0..255: no */ x >>= 63; /* 1: yes; 0: no */ return x; } static void cmov(ge_precomp *t,ge_precomp *u,unsigned char b) { fe_cmov(t->yplusx,u->yplusx,b); fe_cmov(t->yminusx,u->yminusx,b); fe_cmov(t->xy2d,u->xy2d,b); } /* base[i][j] = (j+1)*256^i*B */ static ge_precomp base[32][8] = { #include "base.h" } ; static void select(ge_precomp *t,int pos,signed char b) { ge_precomp minust; unsigned char bnegative = negative(b); unsigned char babs = b - SHL8( (-bnegative) & (unsigned char)b, 1); ge_precomp_0(t); cmov(t,&base[pos][0],equal(babs,1)); cmov(t,&base[pos][1],equal(babs,2)); cmov(t,&base[pos][2],equal(babs,3)); cmov(t,&base[pos][3],equal(babs,4)); cmov(t,&base[pos][4],equal(babs,5)); cmov(t,&base[pos][5],equal(babs,6)); cmov(t,&base[pos][6],equal(babs,7)); cmov(t,&base[pos][7],equal(babs,8)); fe_copy(minust.yplusx,t->yminusx); fe_copy(minust.yminusx,t->yplusx); fe_neg(minust.xy2d,t->xy2d); cmov(t,&minust,bnegative); } /* h = a * B where a = a[0]+256*a[1]+...+256^31 a[31] B is the Ed25519 base point (x,4/5) with x positive. Preconditions: a[31] <= 127 */ void ge_scalarmult_base(ge_p3 *h,const unsigned char *a) { signed char e[64]; signed char carry; ge_p1p1 r; ge_p2 s; ge_precomp t; int i; for (i = 0;i < 32;++i) { e[2 * i + 0] = (a[i] >> 0) & 15; e[2 * i + 1] = (a[i] >> 4) & 15; } /* each e[i] is between 0 and 15 */ /* e[63] is between 0 and 7 */ carry = 0; for (i = 0;i < 63;++i) { e[i] += carry; carry = e[i] + 8; carry >>= 4; e[i] -= SHL8(carry,4); } e[63] += carry; /* each e[i] is between -8 and 8 */ ge_p3_0(h); for (i = 1;i < 64;i += 2) { select(&t,i / 2,e[i]); ge_madd(&r,h,&t); ge_p1p1_to_p3(h,&r); } ge_p3_dbl(&r,h); ge_p1p1_to_p2(&s,&r); ge_p2_dbl(&r,&s); ge_p1p1_to_p2(&s,&r); ge_p2_dbl(&r,&s); ge_p1p1_to_p2(&s,&r); ge_p2_dbl(&r,&s); ge_p1p1_to_p3(h,&r); for (i = 0;i < 64;i += 2) { select(&t,i / 2,e[i]); ge_madd(&r,h,&t); ge_p1p1_to_p3(h,&r); } } tor-0.2.7.6/src/ext/ed25519/ref10/fe_copy.c0000644000175000017500000000070612621363246014513 00000000000000#include "fe.h" /* h = f */ void fe_copy(fe h,const fe f) { crypto_int32 f0 = f[0]; crypto_int32 f1 = f[1]; crypto_int32 f2 = f[2]; crypto_int32 f3 = f[3]; crypto_int32 f4 = f[4]; crypto_int32 f5 = f[5]; crypto_int32 f6 = f[6]; crypto_int32 f7 = f[7]; crypto_int32 f8 = f[8]; crypto_int32 f9 = f[9]; h[0] = f0; h[1] = f1; h[2] = f2; h[3] = f3; h[4] = f4; h[5] = f5; h[6] = f6; h[7] = f7; h[8] = f8; h[9] = f9; } tor-0.2.7.6/src/ext/ed25519/ref10/crypto_verify_32.h0000644000175000017500000000015012621363246016275 00000000000000/* Added for Tor. */ #include "di_ops.h" #define crypto_verify_32(a,b) \ (! tor_memeq((a), (b), 32)) tor-0.2.7.6/src/ext/ed25519/ref10/ge_p1p1_to_p2.c0000644000175000017500000000024512621363246015424 00000000000000#include "ge.h" /* r = p */ extern void ge_p1p1_to_p2(ge_p2 *r,const ge_p1p1 *p) { fe_mul(r->X,p->X,p->T); fe_mul(r->Y,p->Y,p->Z); fe_mul(r->Z,p->Z,p->T); } tor-0.2.7.6/src/ext/ed25519/ref10/fe_isnegative.c0000644000175000017500000000041212621363246015671 00000000000000#include "fe.h" /* return 1 if f is in {1,3,5,...,q-2} return 0 if f is in {0,2,4,...,q-1} Preconditions: |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. */ int fe_isnegative(const fe f) { unsigned char s[32]; fe_tobytes(s,f); return s[0] & 1; } tor-0.2.7.6/src/ext/ed25519/ref10/fe_1.c0000644000175000017500000000025212621363246013675 00000000000000#include "fe.h" /* h = 1 */ void fe_1(fe h) { h[0] = 1; h[1] = 0; h[2] = 0; h[3] = 0; h[4] = 0; h[5] = 0; h[6] = 0; h[7] = 0; h[8] = 0; h[9] = 0; } tor-0.2.7.6/src/ext/ed25519/ref10/keypair.c0000644000175000017500000000150512621363246014531 00000000000000/* Modified for Tor: new API, 64-byte secret keys. */ #include #include "randombytes.h" #include "crypto_sign.h" #include "crypto_hash_sha512.h" #include "ge.h" int crypto_sign_seckey(unsigned char *sk) { unsigned char seed[32]; if (randombytes(seed,32) < 0) return -1; crypto_sign_seckey_expand(sk, seed); memwipe(seed, 0, 32); return 0; } int crypto_sign_seckey_expand(unsigned char *sk, const unsigned char *skseed) { crypto_hash_sha512(sk,skseed,32); sk[0] &= 248; sk[31] &= 63; sk[31] |= 64; return 0; } int crypto_sign_pubkey(unsigned char *pk,const unsigned char *sk) { ge_p3 A; ge_scalarmult_base(&A,sk); ge_p3_tobytes(pk,&A); return 0; } int crypto_sign_keypair(unsigned char *pk,unsigned char *sk) { crypto_sign_seckey(sk); crypto_sign_pubkey(pk, sk); return 0; } tor-0.2.7.6/src/ext/ed25519/ref10/ge_p2_dbl.c0000644000175000017500000000016012621363246014676 00000000000000#include "ge.h" /* r = 2 * p */ void ge_p2_dbl(ge_p1p1 *r,const ge_p2 *p) { fe t0; #include "ge_p2_dbl.h" } tor-0.2.7.6/src/ext/ed25519/ref10/crypto_uint64.h0000644000175000017500000000011012621363246015612 00000000000000/* Added for Tor. */ #include "torint.h" #define crypto_uint64 uint64_t tor-0.2.7.6/src/ext/ed25519/ref10/api.h0000644000175000017500000000017112621363246013641 00000000000000#define CRYPTO_SECRETKEYBYTES 64 #define CRYPTO_PUBLICKEYBYTES 32 #define CRYPTO_BYTES 64 #define CRYPTO_DETERMINISTIC 1 tor-0.2.7.6/src/ext/ed25519/ref10/base.h0000644000175000017500000022525112621363246014012 00000000000000{ { { 25967493,-14356035,29566456,3660896,-12694345,4014787,27544626,-11754271,-6079156,2047605 }, { -12545711,934262,-2722910,3049990,-727428,9406986,12720692,5043384,19500929,-15469378 }, { -8738181,4489570,9688441,-14785194,10184609,-12363380,29287919,11864899,-24514362,-4438546 }, }, { { -12815894,-12976347,-21581243,11784320,-25355658,-2750717,-11717903,-3814571,-358445,-10211303 }, { -21703237,6903825,27185491,6451973,-29577724,-9554005,-15616551,11189268,-26829678,-5319081 }, { 26966642,11152617,32442495,15396054,14353839,-12752335,-3128826,-9541118,-15472047,-4166697 }, }, { { 15636291,-9688557,24204773,-7912398,616977,-16685262,27787600,-14772189,28944400,-1550024 }, { 16568933,4717097,-11556148,-1102322,15682896,-11807043,16354577,-11775962,7689662,11199574 }, { 30464156,-5976125,-11779434,-15670865,23220365,15915852,7512774,10017326,-17749093,-9920357 }, }, { { -17036878,13921892,10945806,-6033431,27105052,-16084379,-28926210,15006023,3284568,-6276540 }, { 23599295,-8306047,-11193664,-7687416,13236774,10506355,7464579,9656445,13059162,10374397 }, { 7798556,16710257,3033922,2874086,28997861,2835604,32406664,-3839045,-641708,-101325 }, }, { { 10861363,11473154,27284546,1981175,-30064349,12577861,32867885,14515107,-15438304,10819380 }, { 4708026,6336745,20377586,9066809,-11272109,6594696,-25653668,12483688,-12668491,5581306 }, { 19563160,16186464,-29386857,4097519,10237984,-4348115,28542350,13850243,-23678021,-15815942 }, }, { { -15371964,-12862754,32573250,4720197,-26436522,5875511,-19188627,-15224819,-9818940,-12085777 }, { -8549212,109983,15149363,2178705,22900618,4543417,3044240,-15689887,1762328,14866737 }, { -18199695,-15951423,-10473290,1707278,-17185920,3916101,-28236412,3959421,27914454,4383652 }, }, { { 5153746,9909285,1723747,-2777874,30523605,5516873,19480852,5230134,-23952439,-15175766 }, { -30269007,-3463509,7665486,10083793,28475525,1649722,20654025,16520125,30598449,7715701 }, { 28881845,14381568,9657904,3680757,-20181635,7843316,-31400660,1370708,29794553,-1409300 }, }, { { 14499471,-2729599,-33191113,-4254652,28494862,14271267,30290735,10876454,-33154098,2381726 }, { -7195431,-2655363,-14730155,462251,-27724326,3941372,-6236617,3696005,-32300832,15351955 }, { 27431194,8222322,16448760,-3907995,-18707002,11938355,-32961401,-2970515,29551813,10109425 }, }, }, { { { -13657040,-13155431,-31283750,11777098,21447386,6519384,-2378284,-1627556,10092783,-4764171 }, { 27939166,14210322,4677035,16277044,-22964462,-12398139,-32508754,12005538,-17810127,12803510 }, { 17228999,-15661624,-1233527,300140,-1224870,-11714777,30364213,-9038194,18016357,4397660 }, }, { { -10958843,-7690207,4776341,-14954238,27850028,-15602212,-26619106,14544525,-17477504,982639 }, { 29253598,15796703,-2863982,-9908884,10057023,3163536,7332899,-4120128,-21047696,9934963 }, { 5793303,16271923,-24131614,-10116404,29188560,1206517,-14747930,4559895,-30123922,-10897950 }, }, { { -27643952,-11493006,16282657,-11036493,28414021,-15012264,24191034,4541697,-13338309,5500568 }, { 12650548,-1497113,9052871,11355358,-17680037,-8400164,-17430592,12264343,10874051,13524335 }, { 25556948,-3045990,714651,2510400,23394682,-10415330,33119038,5080568,-22528059,5376628 }, }, { { -26088264,-4011052,-17013699,-3537628,-6726793,1920897,-22321305,-9447443,4535768,1569007 }, { -2255422,14606630,-21692440,-8039818,28430649,8775819,-30494562,3044290,31848280,12543772 }, { -22028579,2943893,-31857513,6777306,13784462,-4292203,-27377195,-2062731,7718482,14474653 }, }, { { 2385315,2454213,-22631320,46603,-4437935,-15680415,656965,-7236665,24316168,-5253567 }, { 13741529,10911568,-33233417,-8603737,-20177830,-1033297,33040651,-13424532,-20729456,8321686 }, { 21060490,-2212744,15712757,-4336099,1639040,10656336,23845965,-11874838,-9984458,608372 }, }, { { -13672732,-15087586,-10889693,-7557059,-6036909,11305547,1123968,-6780577,27229399,23887 }, { -23244140,-294205,-11744728,14712571,-29465699,-2029617,12797024,-6440308,-1633405,16678954 }, { -29500620,4770662,-16054387,14001338,7830047,9564805,-1508144,-4795045,-17169265,4904953 }, }, { { 24059557,14617003,19037157,-15039908,19766093,-14906429,5169211,16191880,2128236,-4326833 }, { -16981152,4124966,-8540610,-10653797,30336522,-14105247,-29806336,916033,-6882542,-2986532 }, { -22630907,12419372,-7134229,-7473371,-16478904,16739175,285431,2763829,15736322,4143876 }, }, { { 2379352,11839345,-4110402,-5988665,11274298,794957,212801,-14594663,23527084,-16458268 }, { 33431127,-11130478,-17838966,-15626900,8909499,8376530,-32625340,4087881,-15188911,-14416214 }, { 1767683,7197987,-13205226,-2022635,-13091350,448826,5799055,4357868,-4774191,-16323038 }, }, }, { { { 6721966,13833823,-23523388,-1551314,26354293,-11863321,23365147,-3949732,7390890,2759800 }, { 4409041,2052381,23373853,10530217,7676779,-12885954,21302353,-4264057,1244380,-12919645 }, { -4421239,7169619,4982368,-2957590,30256825,-2777540,14086413,9208236,15886429,16489664 }, }, { { 1996075,10375649,14346367,13311202,-6874135,-16438411,-13693198,398369,-30606455,-712933 }, { -25307465,9795880,-2777414,14878809,-33531835,14780363,13348553,12076947,-30836462,5113182 }, { -17770784,11797796,31950843,13929123,-25888302,12288344,-30341101,-7336386,13847711,5387222 }, }, { { -18582163,-3416217,17824843,-2340966,22744343,-10442611,8763061,3617786,-19600662,10370991 }, { 20246567,-14369378,22358229,-543712,18507283,-10413996,14554437,-8746092,32232924,16763880 }, { 9648505,10094563,26416693,14745928,-30374318,-6472621,11094161,15689506,3140038,-16510092 }, }, { { -16160072,5472695,31895588,4744994,8823515,10365685,-27224800,9448613,-28774454,366295 }, { 19153450,11523972,-11096490,-6503142,-24647631,5420647,28344573,8041113,719605,11671788 }, { 8678025,2694440,-6808014,2517372,4964326,11152271,-15432916,-15266516,27000813,-10195553 }, }, { { -15157904,7134312,8639287,-2814877,-7235688,10421742,564065,5336097,6750977,-14521026 }, { 11836410,-3979488,26297894,16080799,23455045,15735944,1695823,-8819122,8169720,16220347 }, { -18115838,8653647,17578566,-6092619,-8025777,-16012763,-11144307,-2627664,-5990708,-14166033 }, }, { { -23308498,-10968312,15213228,-10081214,-30853605,-11050004,27884329,2847284,2655861,1738395 }, { -27537433,-14253021,-25336301,-8002780,-9370762,8129821,21651608,-3239336,-19087449,-11005278 }, { 1533110,3437855,23735889,459276,29970501,11335377,26030092,5821408,10478196,8544890 }, }, { { 32173121,-16129311,24896207,3921497,22579056,-3410854,19270449,12217473,17789017,-3395995 }, { -30552961,-2228401,-15578829,-10147201,13243889,517024,15479401,-3853233,30460520,1052596 }, { -11614875,13323618,32618793,8175907,-15230173,12596687,27491595,-4612359,3179268,-9478891 }, }, { { 31947069,-14366651,-4640583,-15339921,-15125977,-6039709,-14756777,-16411740,19072640,-9511060 }, { 11685058,11822410,3158003,-13952594,33402194,-4165066,5977896,-5215017,473099,5040608 }, { -20290863,8198642,-27410132,11602123,1290375,-2799760,28326862,1721092,-19558642,-3131606 }, }, }, { { { 7881532,10687937,7578723,7738378,-18951012,-2553952,21820786,8076149,-27868496,11538389 }, { -19935666,3899861,18283497,-6801568,-15728660,-11249211,8754525,7446702,-5676054,5797016 }, { -11295600,-3793569,-15782110,-7964573,12708869,-8456199,2014099,-9050574,-2369172,-5877341 }, }, { { -22472376,-11568741,-27682020,1146375,18956691,16640559,1192730,-3714199,15123619,10811505 }, { 14352098,-3419715,-18942044,10822655,32750596,4699007,-70363,15776356,-28886779,-11974553 }, { -28241164,-8072475,-4978962,-5315317,29416931,1847569,-20654173,-16484855,4714547,-9600655 }, }, { { 15200332,8368572,19679101,15970074,-31872674,1959451,24611599,-4543832,-11745876,12340220 }, { 12876937,-10480056,33134381,6590940,-6307776,14872440,9613953,8241152,15370987,9608631 }, { -4143277,-12014408,8446281,-391603,4407738,13629032,-7724868,15866074,-28210621,-8814099 }, }, { { 26660628,-15677655,8393734,358047,-7401291,992988,-23904233,858697,20571223,8420556 }, { 14620715,13067227,-15447274,8264467,14106269,15080814,33531827,12516406,-21574435,-12476749 }, { 236881,10476226,57258,-14677024,6472998,2466984,17258519,7256740,8791136,15069930 }, }, { { 1276410,-9371918,22949635,-16322807,-23493039,-5702186,14711875,4874229,-30663140,-2331391 }, { 5855666,4990204,-13711848,7294284,-7804282,1924647,-1423175,-7912378,-33069337,9234253 }, { 20590503,-9018988,31529744,-7352666,-2706834,10650548,31559055,-11609587,18979186,13396066 }, }, { { 24474287,4968103,22267082,4407354,24063882,-8325180,-18816887,13594782,33514650,7021958 }, { -11566906,-6565505,-21365085,15928892,-26158305,4315421,-25948728,-3916677,-21480480,12868082 }, { -28635013,13504661,19988037,-2132761,21078225,6443208,-21446107,2244500,-12455797,-8089383 }, }, { { -30595528,13793479,-5852820,319136,-25723172,-6263899,33086546,8957937,-15233648,5540521 }, { -11630176,-11503902,-8119500,-7643073,2620056,1022908,-23710744,-1568984,-16128528,-14962807 }, { 23152971,775386,27395463,14006635,-9701118,4649512,1689819,892185,-11513277,-15205948 }, }, { { 9770129,9586738,26496094,4324120,1556511,-3550024,27453819,4763127,-19179614,5867134 }, { -32765025,1927590,31726409,-4753295,23962434,-16019500,27846559,5931263,-29749703,-16108455 }, { 27461885,-2977536,22380810,1815854,-23033753,-3031938,7283490,-15148073,-19526700,7734629 }, }, }, { { { -8010264,-9590817,-11120403,6196038,29344158,-13430885,7585295,-3176626,18549497,15302069 }, { -32658337,-6171222,-7672793,-11051681,6258878,13504381,10458790,-6418461,-8872242,8424746 }, { 24687205,8613276,-30667046,-3233545,1863892,-1830544,19206234,7134917,-11284482,-828919 }, }, { { 11334899,-9218022,8025293,12707519,17523892,-10476071,10243738,-14685461,-5066034,16498837 }, { 8911542,6887158,-9584260,-6958590,11145641,-9543680,17303925,-14124238,6536641,10543906 }, { -28946384,15479763,-17466835,568876,-1497683,11223454,-2669190,-16625574,-27235709,8876771 }, }, { { -25742899,-12566864,-15649966,-846607,-33026686,-796288,-33481822,15824474,-604426,-9039817 }, { 10330056,70051,7957388,-9002667,9764902,15609756,27698697,-4890037,1657394,3084098 }, { 10477963,-7470260,12119566,-13250805,29016247,-5365589,31280319,14396151,-30233575,15272409 }, }, { { -12288309,3169463,28813183,16658753,25116432,-5630466,-25173957,-12636138,-25014757,1950504 }, { -26180358,9489187,11053416,-14746161,-31053720,5825630,-8384306,-8767532,15341279,8373727 }, { 28685821,7759505,-14378516,-12002860,-31971820,4079242,298136,-10232602,-2878207,15190420 }, }, { { -32932876,13806336,-14337485,-15794431,-24004620,10940928,8669718,2742393,-26033313,-6875003 }, { -1580388,-11729417,-25979658,-11445023,-17411874,-10912854,9291594,-16247779,-12154742,6048605 }, { -30305315,14843444,1539301,11864366,20201677,1900163,13934231,5128323,11213262,9168384 }, }, { { -26280513,11007847,19408960,-940758,-18592965,-4328580,-5088060,-11105150,20470157,-16398701 }, { -23136053,9282192,14855179,-15390078,-7362815,-14408560,-22783952,14461608,14042978,5230683 }, { 29969567,-2741594,-16711867,-8552442,9175486,-2468974,21556951,3506042,-5933891,-12449708 }, }, { { -3144746,8744661,19704003,4581278,-20430686,6830683,-21284170,8971513,-28539189,15326563 }, { -19464629,10110288,-17262528,-3503892,-23500387,1355669,-15523050,15300988,-20514118,9168260 }, { -5353335,4488613,-23803248,16314347,7780487,-15638939,-28948358,9601605,33087103,-9011387 }, }, { { -19443170,-15512900,-20797467,-12445323,-29824447,10229461,-27444329,-15000531,-5996870,15664672 }, { 23294591,-16632613,-22650781,-8470978,27844204,11461195,13099750,-2460356,18151676,13417686 }, { -24722913,-4176517,-31150679,5988919,-26858785,6685065,1661597,-12551441,15271676,-15452665 }, }, }, { { { 11433042,-13228665,8239631,-5279517,-1985436,-725718,-18698764,2167544,-6921301,-13440182 }, { -31436171,15575146,30436815,12192228,-22463353,9395379,-9917708,-8638997,12215110,12028277 }, { 14098400,6555944,23007258,5757252,-15427832,-12950502,30123440,4617780,-16900089,-655628 }, }, { { -4026201,-15240835,11893168,13718664,-14809462,1847385,-15819999,10154009,23973261,-12684474 }, { -26531820,-3695990,-1908898,2534301,-31870557,-16550355,18341390,-11419951,32013174,-10103539 }, { -25479301,10876443,-11771086,-14625140,-12369567,1838104,21911214,6354752,4425632,-837822 }, }, { { -10433389,-14612966,22229858,-3091047,-13191166,776729,-17415375,-12020462,4725005,14044970 }, { 19268650,-7304421,1555349,8692754,-21474059,-9910664,6347390,-1411784,-19522291,-16109756 }, { -24864089,12986008,-10898878,-5558584,-11312371,-148526,19541418,8180106,9282262,10282508 }, }, { { -26205082,4428547,-8661196,-13194263,4098402,-14165257,15522535,8372215,5542595,-10702683 }, { -10562541,14895633,26814552,-16673850,-17480754,-2489360,-2781891,6993761,-18093885,10114655 }, { -20107055,-929418,31422704,10427861,-7110749,6150669,-29091755,-11529146,25953725,-106158 }, }, { { -4234397,-8039292,-9119125,3046000,2101609,-12607294,19390020,6094296,-3315279,12831125 }, { -15998678,7578152,5310217,14408357,-33548620,-224739,31575954,6326196,7381791,-2421839 }, { -20902779,3296811,24736065,-16328389,18374254,7318640,6295303,8082724,-15362489,12339664 }, }, { { 27724736,2291157,6088201,-14184798,1792727,5857634,13848414,15768922,25091167,14856294 }, { -18866652,8331043,24373479,8541013,-701998,-9269457,12927300,-12695493,-22182473,-9012899 }, { -11423429,-5421590,11632845,3405020,30536730,-11674039,-27260765,13866390,30146206,9142070 }, }, { { 3924129,-15307516,-13817122,-10054960,12291820,-668366,-27702774,9326384,-8237858,4171294 }, { -15921940,16037937,6713787,16606682,-21612135,2790944,26396185,3731949,345228,-5462949 }, { -21327538,13448259,25284571,1143661,20614966,-8849387,2031539,-12391231,-16253183,-13582083 }, }, { { 31016211,-16722429,26371392,-14451233,-5027349,14854137,17477601,3842657,28012650,-16405420 }, { -5075835,9368966,-8562079,-4600902,-15249953,6970560,-9189873,16292057,-8867157,3507940 }, { 29439664,3537914,23333589,6997794,-17555561,-11018068,-15209202,-15051267,-9164929,6580396 }, }, }, { { { -12185861,-7679788,16438269,10826160,-8696817,-6235611,17860444,-9273846,-2095802,9304567 }, { 20714564,-4336911,29088195,7406487,11426967,-5095705,14792667,-14608617,5289421,-477127 }, { -16665533,-10650790,-6160345,-13305760,9192020,-1802462,17271490,12349094,26939669,-3752294 }, }, { { -12889898,9373458,31595848,16374215,21471720,13221525,-27283495,-12348559,-3698806,117887 }, { 22263325,-6560050,3984570,-11174646,-15114008,-566785,28311253,5358056,-23319780,541964 }, { 16259219,3261970,2309254,-15534474,-16885711,-4581916,24134070,-16705829,-13337066,-13552195 }, }, { { 9378160,-13140186,-22845982,-12745264,28198281,-7244098,-2399684,-717351,690426,14876244 }, { 24977353,-314384,-8223969,-13465086,28432343,-1176353,-13068804,-12297348,-22380984,6618999 }, { -1538174,11685646,12944378,13682314,-24389511,-14413193,8044829,-13817328,32239829,-5652762 }, }, { { -18603066,4762990,-926250,8885304,-28412480,-3187315,9781647,-10350059,32779359,5095274 }, { -33008130,-5214506,-32264887,-3685216,9460461,-9327423,-24601656,14506724,21639561,-2630236 }, { -16400943,-13112215,25239338,15531969,3987758,-4499318,-1289502,-6863535,17874574,558605 }, }, { { -13600129,10240081,9171883,16131053,-20869254,9599700,33499487,5080151,2085892,5119761 }, { -22205145,-2519528,-16381601,414691,-25019550,2170430,30634760,-8363614,-31999993,-5759884 }, { -6845704,15791202,8550074,-1312654,29928809,-12092256,27534430,-7192145,-22351378,12961482 }, }, { { -24492060,-9570771,10368194,11582341,-23397293,-2245287,16533930,8206996,-30194652,-5159638 }, { -11121496,-3382234,2307366,6362031,-135455,8868177,-16835630,7031275,7589640,8945490 }, { -32152748,8917967,6661220,-11677616,-1192060,-15793393,7251489,-11182180,24099109,-14456170 }, }, { { 5019558,-7907470,4244127,-14714356,-26933272,6453165,-19118182,-13289025,-6231896,-10280736 }, { 10853594,10721687,26480089,5861829,-22995819,1972175,-1866647,-10557898,-3363451,-6441124 }, { -17002408,5906790,221599,-6563147,7828208,-13248918,24362661,-2008168,-13866408,7421392 }, }, { { 8139927,-6546497,32257646,-5890546,30375719,1886181,-21175108,15441252,28826358,-4123029 }, { 6267086,9695052,7709135,-16603597,-32869068,-1886135,14795160,-7840124,13746021,-1742048 }, { 28584902,7787108,-6732942,-15050729,22846041,-7571236,-3181936,-363524,4771362,-8419958 }, }, }, { { { 24949256,6376279,-27466481,-8174608,-18646154,-9930606,33543569,-12141695,3569627,11342593 }, { 26514989,4740088,27912651,3697550,19331575,-11472339,6809886,4608608,7325975,-14801071 }, { -11618399,-14554430,-24321212,7655128,-1369274,5214312,-27400540,10258390,-17646694,-8186692 }, }, { { 11431204,15823007,26570245,14329124,18029990,4796082,-31446179,15580664,9280358,-3973687 }, { -160783,-10326257,-22855316,-4304997,-20861367,-13621002,-32810901,-11181622,-15545091,4387441 }, { -20799378,12194512,3937617,-5805892,-27154820,9340370,-24513992,8548137,20617071,-7482001 }, }, { { -938825,-3930586,-8714311,16124718,24603125,-6225393,-13775352,-11875822,24345683,10325460 }, { -19855277,-1568885,-22202708,8714034,14007766,6928528,16318175,-1010689,4766743,3552007 }, { -21751364,-16730916,1351763,-803421,-4009670,3950935,3217514,14481909,10988822,-3994762 }, }, { { 15564307,-14311570,3101243,5684148,30446780,-8051356,12677127,-6505343,-8295852,13296005 }, { -9442290,6624296,-30298964,-11913677,-4670981,-2057379,31521204,9614054,-30000824,12074674 }, { 4771191,-135239,14290749,-13089852,27992298,14998318,-1413936,-1556716,29832613,-16391035 }, }, { { 7064884,-7541174,-19161962,-5067537,-18891269,-2912736,25825242,5293297,-27122660,13101590 }, { -2298563,2439670,-7466610,1719965,-27267541,-16328445,32512469,-5317593,-30356070,-4190957 }, { -30006540,10162316,-33180176,3981723,-16482138,-13070044,14413974,9515896,19568978,9628812 }, }, { { 33053803,199357,15894591,1583059,27380243,-4580435,-17838894,-6106839,-6291786,3437740 }, { -18978877,3884493,19469877,12726490,15913552,13614290,-22961733,70104,7463304,4176122 }, { -27124001,10659917,11482427,-16070381,12771467,-6635117,-32719404,-5322751,24216882,5944158 }, }, { { 8894125,7450974,-2664149,-9765752,-28080517,-12389115,19345746,14680796,11632993,5847885 }, { 26942781,-2315317,9129564,-4906607,26024105,11769399,-11518837,6367194,-9727230,4782140 }, { 19916461,-4828410,-22910704,-11414391,25606324,-5972441,33253853,8220911,6358847,-1873857 }, }, { { 801428,-2081702,16569428,11065167,29875704,96627,7908388,-4480480,-13538503,1387155 }, { 19646058,5720633,-11416706,12814209,11607948,12749789,14147075,15156355,-21866831,11835260 }, { 19299512,1155910,28703737,14890794,2925026,7269399,26121523,15467869,-26560550,5052483 }, }, }, { { { -3017432,10058206,1980837,3964243,22160966,12322533,-6431123,-12618185,12228557,-7003677 }, { 32944382,14922211,-22844894,5188528,21913450,-8719943,4001465,13238564,-6114803,8653815 }, { 22865569,-4652735,27603668,-12545395,14348958,8234005,24808405,5719875,28483275,2841751 }, }, { { -16420968,-1113305,-327719,-12107856,21886282,-15552774,-1887966,-315658,19932058,-12739203 }, { -11656086,10087521,-8864888,-5536143,-19278573,-3055912,3999228,13239134,-4777469,-13910208 }, { 1382174,-11694719,17266790,9194690,-13324356,9720081,20403944,11284705,-14013818,3093230 }, }, { { 16650921,-11037932,-1064178,1570629,-8329746,7352753,-302424,16271225,-24049421,-6691850 }, { -21911077,-5927941,-4611316,-5560156,-31744103,-10785293,24123614,15193618,-21652117,-16739389 }, { -9935934,-4289447,-25279823,4372842,2087473,10399484,31870908,14690798,17361620,11864968 }, }, { { -11307610,6210372,13206574,5806320,-29017692,-13967200,-12331205,-7486601,-25578460,-16240689 }, { 14668462,-12270235,26039039,15305210,25515617,4542480,10453892,6577524,9145645,-6443880 }, { 5974874,3053895,-9433049,-10385191,-31865124,3225009,-7972642,3936128,-5652273,-3050304 }, }, { { 30625386,-4729400,-25555961,-12792866,-20484575,7695099,17097188,-16303496,-27999779,1803632 }, { -3553091,9865099,-5228566,4272701,-5673832,-16689700,14911344,12196514,-21405489,7047412 }, { 20093277,9920966,-11138194,-5343857,13161587,12044805,-32856851,4124601,-32343828,-10257566 }, }, { { -20788824,14084654,-13531713,7842147,19119038,-13822605,4752377,-8714640,-21679658,2288038 }, { -26819236,-3283715,29965059,3039786,-14473765,2540457,29457502,14625692,-24819617,12570232 }, { -1063558,-11551823,16920318,12494842,1278292,-5869109,-21159943,-3498680,-11974704,4724943 }, }, { { 17960970,-11775534,-4140968,-9702530,-8876562,-1410617,-12907383,-8659932,-29576300,1903856 }, { 23134274,-14279132,-10681997,-1611936,20684485,15770816,-12989750,3190296,26955097,14109738 }, { 15308788,5320727,-30113809,-14318877,22902008,7767164,29425325,-11277562,31960942,11934971 }, }, { { -27395711,8435796,4109644,12222639,-24627868,14818669,20638173,4875028,10491392,1379718 }, { -13159415,9197841,3875503,-8936108,-1383712,-5879801,33518459,16176658,21432314,12180697 }, { -11787308,11500838,13787581,-13832590,-22430679,10140205,1465425,12689540,-10301319,-13872883 }, }, }, { { { 5414091,-15386041,-21007664,9643570,12834970,1186149,-2622916,-1342231,26128231,6032912 }, { -26337395,-13766162,32496025,-13653919,17847801,-12669156,3604025,8316894,-25875034,-10437358 }, { 3296484,6223048,24680646,-12246460,-23052020,5903205,-8862297,-4639164,12376617,3188849 }, }, { { 29190488,-14659046,27549113,-1183516,3520066,-10697301,32049515,-7309113,-16109234,-9852307 }, { -14744486,-9309156,735818,-598978,-20407687,-5057904,25246078,-15795669,18640741,-960977 }, { -6928835,-16430795,10361374,5642961,4910474,12345252,-31638386,-494430,10530747,1053335 }, }, { { -29265967,-14186805,-13538216,-12117373,-19457059,-10655384,-31462369,-2948985,24018831,15026644 }, { -22592535,-3145277,-2289276,5953843,-13440189,9425631,25310643,13003497,-2314791,-15145616 }, { -27419985,-603321,-8043984,-1669117,-26092265,13987819,-27297622,187899,-23166419,-2531735 }, }, { { -21744398,-13810475,1844840,5021428,-10434399,-15911473,9716667,16266922,-5070217,726099 }, { 29370922,-6053998,7334071,-15342259,9385287,2247707,-13661962,-4839461,30007388,-15823341 }, { -936379,16086691,23751945,-543318,-1167538,-5189036,9137109,730663,9835848,4555336 }, }, { { -23376435,1410446,-22253753,-12899614,30867635,15826977,17693930,544696,-11985298,12422646 }, { 31117226,-12215734,-13502838,6561947,-9876867,-12757670,-5118685,-4096706,29120153,13924425 }, { -17400879,-14233209,19675799,-2734756,-11006962,-5858820,-9383939,-11317700,7240931,-237388 }, }, { { -31361739,-11346780,-15007447,-5856218,-22453340,-12152771,1222336,4389483,3293637,-15551743 }, { -16684801,-14444245,11038544,11054958,-13801175,-3338533,-24319580,7733547,12796905,-6335822 }, { -8759414,-10817836,-25418864,10783769,-30615557,-9746811,-28253339,3647836,3222231,-11160462 }, }, { { 18606113,1693100,-25448386,-15170272,4112353,10045021,23603893,-2048234,-7550776,2484985 }, { 9255317,-3131197,-12156162,-1004256,13098013,-9214866,16377220,-2102812,-19802075,-3034702 }, { -22729289,7496160,-5742199,11329249,19991973,-3347502,-31718148,9936966,-30097688,-10618797 }, }, { { 21878590,-5001297,4338336,13643897,-3036865,13160960,19708896,5415497,-7360503,-4109293 }, { 27736861,10103576,12500508,8502413,-3413016,-9633558,10436918,-1550276,-23659143,-8132100 }, { 19492550,-12104365,-29681976,-852630,-3208171,12403437,30066266,8367329,13243957,8709688 }, }, }, { { { 12015105,2801261,28198131,10151021,24818120,-4743133,-11194191,-5645734,5150968,7274186 }, { 2831366,-12492146,1478975,6122054,23825128,-12733586,31097299,6083058,31021603,-9793610 }, { -2529932,-2229646,445613,10720828,-13849527,-11505937,-23507731,16354465,15067285,-14147707 }, }, { { 7840942,14037873,-33364863,15934016,-728213,-3642706,21403988,1057586,-19379462,-12403220 }, { 915865,-16469274,15608285,-8789130,-24357026,6060030,-17371319,8410997,-7220461,16527025 }, { 32922597,-556987,20336074,-16184568,10903705,-5384487,16957574,52992,23834301,6588044 }, }, { { 32752030,11232950,3381995,-8714866,22652988,-10744103,17159699,16689107,-20314580,-1305992 }, { -4689649,9166776,-25710296,-10847306,11576752,12733943,7924251,-2752281,1976123,-7249027 }, { 21251222,16309901,-2983015,-6783122,30810597,12967303,156041,-3371252,12331345,-8237197 }, }, { { 8651614,-4477032,-16085636,-4996994,13002507,2950805,29054427,-5106970,10008136,-4667901 }, { 31486080,15114593,-14261250,12951354,14369431,-7387845,16347321,-13662089,8684155,-10532952 }, { 19443825,11385320,24468943,-9659068,-23919258,2187569,-26263207,-6086921,31316348,14219878 }, }, { { -28594490,1193785,32245219,11392485,31092169,15722801,27146014,6992409,29126555,9207390 }, { 32382935,1110093,18477781,11028262,-27411763,-7548111,-4980517,10843782,-7957600,-14435730 }, { 2814918,7836403,27519878,-7868156,-20894015,-11553689,-21494559,8550130,28346258,1994730 }, }, { { -19578299,8085545,-14000519,-3948622,2785838,-16231307,-19516951,7174894,22628102,8115180 }, { -30405132,955511,-11133838,-15078069,-32447087,-13278079,-25651578,3317160,-9943017,930272 }, { -15303681,-6833769,28856490,1357446,23421993,1057177,24091212,-1388970,-22765376,-10650715 }, }, { { -22751231,-5303997,-12907607,-12768866,-15811511,-7797053,-14839018,-16554220,-1867018,8398970 }, { -31969310,2106403,-4736360,1362501,12813763,16200670,22981545,-6291273,18009408,-15772772 }, { -17220923,-9545221,-27784654,14166835,29815394,7444469,29551787,-3727419,19288549,1325865 }, }, { { 15100157,-15835752,-23923978,-1005098,-26450192,15509408,12376730,-3479146,33166107,-8042750 }, { 20909231,13023121,-9209752,16251778,-5778415,-8094914,12412151,10018715,2213263,-13878373 }, { 32529814,-11074689,30361439,-16689753,-9135940,1513226,22922121,6382134,-5766928,8371348 }, }, }, { { { 9923462,11271500,12616794,3544722,-29998368,-1721626,12891687,-8193132,-26442943,10486144 }, { -22597207,-7012665,8587003,-8257861,4084309,-12970062,361726,2610596,-23921530,-11455195 }, { 5408411,-1136691,-4969122,10561668,24145918,14240566,31319731,-4235541,19985175,-3436086 }, }, { { -13994457,16616821,14549246,3341099,32155958,13648976,-17577068,8849297,65030,8370684 }, { -8320926,-12049626,31204563,5839400,-20627288,-1057277,-19442942,6922164,12743482,-9800518 }, { -2361371,12678785,28815050,4759974,-23893047,4884717,23783145,11038569,18800704,255233 }, }, { { -5269658,-1773886,13957886,7990715,23132995,728773,13393847,9066957,19258688,-14753793 }, { -2936654,-10827535,-10432089,14516793,-3640786,4372541,-31934921,2209390,-1524053,2055794 }, { 580882,16705327,5468415,-2683018,-30926419,-14696000,-7203346,-8994389,-30021019,7394435 }, }, { { 23838809,1822728,-15738443,15242727,8318092,-3733104,-21672180,-3492205,-4821741,14799921 }, { 13345610,9759151,3371034,-16137791,16353039,8577942,31129804,13496856,-9056018,7402518 }, { 2286874,-4435931,-20042458,-2008336,-13696227,5038122,11006906,-15760352,8205061,1607563 }, }, { { 14414086,-8002132,3331830,-3208217,22249151,-5594188,18364661,-2906958,30019587,-9029278 }, { -27688051,1585953,-10775053,931069,-29120221,-11002319,-14410829,12029093,9944378,8024 }, { 4368715,-3709630,29874200,-15022983,-20230386,-11410704,-16114594,-999085,-8142388,5640030 }, }, { { 10299610,13746483,11661824,16234854,7630238,5998374,9809887,-16694564,15219798,-14327783 }, { 27425505,-5719081,3055006,10660664,23458024,595578,-15398605,-1173195,-18342183,9742717 }, { 6744077,2427284,26042789,2720740,-847906,1118974,32324614,7406442,12420155,1994844 }, }, { { 14012521,-5024720,-18384453,-9578469,-26485342,-3936439,-13033478,-10909803,24319929,-6446333 }, { 16412690,-4507367,10772641,15929391,-17068788,-4658621,10555945,-10484049,-30102368,-4739048 }, { 22397382,-7767684,-9293161,-12792868,17166287,-9755136,-27333065,6199366,21880021,-12250760 }, }, { { -4283307,5368523,-31117018,8163389,-30323063,3209128,16557151,8890729,8840445,4957760 }, { -15447727,709327,-6919446,-10870178,-29777922,6522332,-21720181,12130072,-14796503,5005757 }, { -2114751,-14308128,23019042,15765735,-25269683,6002752,10183197,-13239326,-16395286,-2176112 }, }, }, { { { -19025756,1632005,13466291,-7995100,-23640451,16573537,-32013908,-3057104,22208662,2000468 }, { 3065073,-1412761,-25598674,-361432,-17683065,-5703415,-8164212,11248527,-3691214,-7414184 }, { 10379208,-6045554,8877319,1473647,-29291284,-12507580,16690915,2553332,-3132688,16400289 }, }, { { 15716668,1254266,-18472690,7446274,-8448918,6344164,-22097271,-7285580,26894937,9132066 }, { 24158887,12938817,11085297,-8177598,-28063478,-4457083,-30576463,64452,-6817084,-2692882 }, { 13488534,7794716,22236231,5989356,25426474,-12578208,2350710,-3418511,-4688006,2364226 }, }, { { 16335052,9132434,25640582,6678888,1725628,8517937,-11807024,-11697457,15445875,-7798101 }, { 29004207,-7867081,28661402,-640412,-12794003,-7943086,31863255,-4135540,-278050,-15759279 }, { -6122061,-14866665,-28614905,14569919,-10857999,-3591829,10343412,-6976290,-29828287,-10815811 }, }, { { 27081650,3463984,14099042,-4517604,1616303,-6205604,29542636,15372179,17293797,960709 }, { 20263915,11434237,-5765435,11236810,13505955,-10857102,-16111345,6493122,-19384511,7639714 }, { -2830798,-14839232,25403038,-8215196,-8317012,-16173699,18006287,-16043750,29994677,-15808121 }, }, { { 9769828,5202651,-24157398,-13631392,-28051003,-11561624,-24613141,-13860782,-31184575,709464 }, { 12286395,13076066,-21775189,-1176622,-25003198,4057652,-32018128,-8890874,16102007,13205847 }, { 13733362,5599946,10557076,3195751,-5557991,8536970,-25540170,8525972,10151379,10394400 }, }, { { 4024660,-16137551,22436262,12276534,-9099015,-2686099,19698229,11743039,-33302334,8934414 }, { -15879800,-4525240,-8580747,-2934061,14634845,-698278,-9449077,3137094,-11536886,11721158 }, { 17555939,-5013938,8268606,2331751,-22738815,9761013,9319229,8835153,-9205489,-1280045 }, }, { { -461409,-7830014,20614118,16688288,-7514766,-4807119,22300304,505429,6108462,-6183415 }, { -5070281,12367917,-30663534,3234473,32617080,-8422642,29880583,-13483331,-26898490,-7867459 }, { -31975283,5726539,26934134,10237677,-3173717,-605053,24199304,3795095,7592688,-14992079 }, }, { { 21594432,-14964228,17466408,-4077222,32537084,2739898,6407723,12018833,-28256052,4298412 }, { -20650503,-11961496,-27236275,570498,3767144,-1717540,13891942,-1569194,13717174,10805743 }, { -14676630,-15644296,15287174,11927123,24177847,-8175568,-796431,14860609,-26938930,-5863836 }, }, }, { { { 12962541,5311799,-10060768,11658280,18855286,-7954201,13286263,-12808704,-4381056,9882022 }, { 18512079,11319350,-20123124,15090309,18818594,5271736,-22727904,3666879,-23967430,-3299429 }, { -6789020,-3146043,16192429,13241070,15898607,-14206114,-10084880,-6661110,-2403099,5276065 }, }, { { 30169808,-5317648,26306206,-11750859,27814964,7069267,7152851,3684982,1449224,13082861 }, { 10342826,3098505,2119311,193222,25702612,12233820,23697382,15056736,-21016438,-8202000 }, { -33150110,3261608,22745853,7948688,19370557,-15177665,-26171976,6482814,-10300080,-11060101 }, }, { { 32869458,-5408545,25609743,15678670,-10687769,-15471071,26112421,2521008,-22664288,6904815 }, { 29506923,4457497,3377935,-9796444,-30510046,12935080,1561737,3841096,-29003639,-6657642 }, { 10340844,-6630377,-18656632,-2278430,12621151,-13339055,30878497,-11824370,-25584551,5181966 }, }, { { 25940115,-12658025,17324188,-10307374,-8671468,15029094,24396252,-16450922,-2322852,-12388574 }, { -21765684,9916823,-1300409,4079498,-1028346,11909559,1782390,12641087,20603771,-6561742 }, { -18882287,-11673380,24849422,11501709,13161720,-4768874,1925523,11914390,4662781,7820689 }, }, { { 12241050,-425982,8132691,9393934,32846760,-1599620,29749456,12172924,16136752,15264020 }, { -10349955,-14680563,-8211979,2330220,-17662549,-14545780,10658213,6671822,19012087,3772772 }, { 3753511,-3421066,10617074,2028709,14841030,-6721664,28718732,-15762884,20527771,12988982 }, }, { { -14822485,-5797269,-3707987,12689773,-898983,-10914866,-24183046,-10564943,3299665,-12424953 }, { -16777703,-15253301,-9642417,4978983,3308785,8755439,6943197,6461331,-25583147,8991218 }, { -17226263,1816362,-1673288,-6086439,31783888,-8175991,-32948145,7417950,-30242287,1507265 }, }, { { 29692663,6829891,-10498800,4334896,20945975,-11906496,-28887608,8209391,14606362,-10647073 }, { -3481570,8707081,32188102,5672294,22096700,1711240,-33020695,9761487,4170404,-2085325 }, { -11587470,14855945,-4127778,-1531857,-26649089,15084046,22186522,16002000,-14276837,-8400798 }, }, { { -4811456,13761029,-31703877,-2483919,-3312471,7869047,-7113572,-9620092,13240845,10965870 }, { -7742563,-8256762,-14768334,-13656260,-23232383,12387166,4498947,14147411,29514390,4302863 }, { -13413405,-12407859,20757302,-13801832,14785143,8976368,-5061276,-2144373,17846988,-13971927 }, }, }, { { { -2244452,-754728,-4597030,-1066309,-6247172,1455299,-21647728,-9214789,-5222701,12650267 }, { -9906797,-16070310,21134160,12198166,-27064575,708126,387813,13770293,-19134326,10958663 }, { 22470984,12369526,23446014,-5441109,-21520802,-9698723,-11772496,-11574455,-25083830,4271862 }, }, { { -25169565,-10053642,-19909332,15361595,-5984358,2159192,75375,-4278529,-32526221,8469673 }, { 15854970,4148314,-8893890,7259002,11666551,13824734,-30531198,2697372,24154791,-9460943 }, { 15446137,-15806644,29759747,14019369,30811221,-9610191,-31582008,12840104,24913809,9815020 }, }, { { -4709286,-5614269,-31841498,-12288893,-14443537,10799414,-9103676,13438769,18735128,9466238 }, { 11933045,9281483,5081055,-5183824,-2628162,-4905629,-7727821,-10896103,-22728655,16199064 }, { 14576810,379472,-26786533,-8317236,-29426508,-10812974,-102766,1876699,30801119,2164795 }, }, { { 15995086,3199873,13672555,13712240,-19378835,-4647646,-13081610,-15496269,-13492807,1268052 }, { -10290614,-3659039,-3286592,10948818,23037027,3794475,-3470338,-12600221,-17055369,3565904 }, { 29210088,-9419337,-5919792,-4952785,10834811,-13327726,-16512102,-10820713,-27162222,-14030531 }, }, { { -13161890,15508588,16663704,-8156150,-28349942,9019123,-29183421,-3769423,2244111,-14001979 }, { -5152875,-3800936,-9306475,-6071583,16243069,14684434,-25673088,-16180800,13491506,4641841 }, { 10813417,643330,-19188515,-728916,30292062,-16600078,27548447,-7721242,14476989,-12767431 }, }, { { 10292079,9984945,6481436,8279905,-7251514,7032743,27282937,-1644259,-27912810,12651324 }, { -31185513,-813383,22271204,11835308,10201545,15351028,17099662,3988035,21721536,-3148940 }, { 10202177,-6545839,-31373232,-9574638,-32150642,-8119683,-12906320,3852694,13216206,14842320 }, }, { { -15815640,-10601066,-6538952,-7258995,-6984659,-6581778,-31500847,13765824,-27434397,9900184 }, { 14465505,-13833331,-32133984,-14738873,-27443187,12990492,33046193,15796406,-7051866,-8040114 }, { 30924417,-8279620,6359016,-12816335,16508377,9071735,-25488601,15413635,9524356,-7018878 }, }, { { 12274201,-13175547,32627641,-1785326,6736625,13267305,5237659,-5109483,15663516,4035784 }, { -2951309,8903985,17349946,601635,-16432815,-4612556,-13732739,-15889334,-22258478,4659091 }, { -16916263,-4952973,-30393711,-15158821,20774812,15897498,5736189,15026997,-2178256,-13455585 }, }, }, { { { -8858980,-2219056,28571666,-10155518,-474467,-10105698,-3801496,278095,23440562,-290208 }, { 10226241,-5928702,15139956,120818,-14867693,5218603,32937275,11551483,-16571960,-7442864 }, { 17932739,-12437276,-24039557,10749060,11316803,7535897,22503767,5561594,-3646624,3898661 }, }, { { 7749907,-969567,-16339731,-16464,-25018111,15122143,-1573531,7152530,21831162,1245233 }, { 26958459,-14658026,4314586,8346991,-5677764,11960072,-32589295,-620035,-30402091,-16716212 }, { -12165896,9166947,33491384,13673479,29787085,13096535,6280834,14587357,-22338025,13987525 }, }, { { -24349909,7778775,21116000,15572597,-4833266,-5357778,-4300898,-5124639,-7469781,-2858068 }, { 9681908,-6737123,-31951644,13591838,-6883821,386950,31622781,6439245,-14581012,4091397 }, { -8426427,1470727,-28109679,-1596990,3978627,-5123623,-19622683,12092163,29077877,-14741988 }, }, { { 5269168,-6859726,-13230211,-8020715,25932563,1763552,-5606110,-5505881,-20017847,2357889 }, { 32264008,-15407652,-5387735,-1160093,-2091322,-3946900,23104804,-12869908,5727338,189038 }, { 14609123,-8954470,-6000566,-16622781,-14577387,-7743898,-26745169,10942115,-25888931,-14884697 }, }, { { 20513500,5557931,-15604613,7829531,26413943,-2019404,-21378968,7471781,13913677,-5137875 }, { -25574376,11967826,29233242,12948236,-6754465,4713227,-8940970,14059180,12878652,8511905 }, { -25656801,3393631,-2955415,-7075526,-2250709,9366908,-30223418,6812974,5568676,-3127656 }, }, { { 11630004,12144454,2116339,13606037,27378885,15676917,-17408753,-13504373,-14395196,8070818 }, { 27117696,-10007378,-31282771,-5570088,1127282,12772488,-29845906,10483306,-11552749,-1028714 }, { 10637467,-5688064,5674781,1072708,-26343588,-6982302,-1683975,9177853,-27493162,15431203 }, }, { { 20525145,10892566,-12742472,12779443,-29493034,16150075,-28240519,14943142,-15056790,-7935931 }, { -30024462,5626926,-551567,-9981087,753598,11981191,25244767,-3239766,-3356550,9594024 }, { -23752644,2636870,-5163910,-10103818,585134,7877383,11345683,-6492290,13352335,-10977084 }, }, { { -1931799,-5407458,3304649,-12884869,17015806,-4877091,-29783850,-7752482,-13215537,-319204 }, { 20239939,6607058,6203985,3483793,-18386976,-779229,-20723742,15077870,-22750759,14523817 }, { 27406042,-6041657,27423596,-4497394,4996214,10002360,-28842031,-4545494,-30172742,-4805667 }, }, }, { { { 11374242,12660715,17861383,-12540833,10935568,1099227,-13886076,-9091740,-27727044,11358504 }, { -12730809,10311867,1510375,10778093,-2119455,-9145702,32676003,11149336,-26123651,4985768 }, { -19096303,341147,-6197485,-239033,15756973,-8796662,-983043,13794114,-19414307,-15621255 }, }, { { 6490081,11940286,25495923,-7726360,8668373,-8751316,3367603,6970005,-1691065,-9004790 }, { 1656497,13457317,15370807,6364910,13605745,8362338,-19174622,-5475723,-16796596,-5031438 }, { -22273315,-13524424,-64685,-4334223,-18605636,-10921968,-20571065,-7007978,-99853,-10237333 }, }, { { 17747465,10039260,19368299,-4050591,-20630635,-16041286,31992683,-15857976,-29260363,-5511971 }, { 31932027,-4986141,-19612382,16366580,22023614,88450,11371999,-3744247,4882242,-10626905 }, { 29796507,37186,19818052,10115756,-11829032,3352736,18551198,3272828,-5190932,-4162409 }, }, { { 12501286,4044383,-8612957,-13392385,-32430052,5136599,-19230378,-3529697,330070,-3659409 }, { 6384877,2899513,17807477,7663917,-2358888,12363165,25366522,-8573892,-271295,12071499 }, { -8365515,-4042521,25133448,-4517355,-6211027,2265927,-32769618,1936675,-5159697,3829363 }, }, { { 28425966,-5835433,-577090,-4697198,-14217555,6870930,7921550,-6567787,26333140,14267664 }, { -11067219,11871231,27385719,-10559544,-4585914,-11189312,10004786,-8709488,-21761224,8930324 }, { -21197785,-16396035,25654216,-1725397,12282012,11008919,1541940,4757911,-26491501,-16408940 }, }, { { 13537262,-7759490,-20604840,10961927,-5922820,-13218065,-13156584,6217254,-15943699,13814990 }, { -17422573,15157790,18705543,29619,24409717,-260476,27361681,9257833,-1956526,-1776914 }, { -25045300,-10191966,15366585,15166509,-13105086,8423556,-29171540,12361135,-18685978,4578290 }, }, { { 24579768,3711570,1342322,-11180126,-27005135,14124956,-22544529,14074919,21964432,8235257 }, { -6528613,-2411497,9442966,-5925588,12025640,-1487420,-2981514,-1669206,13006806,2355433 }, { -16304899,-13605259,-6632427,-5142349,16974359,-10911083,27202044,1719366,1141648,-12796236 }, }, { { -12863944,-13219986,-8318266,-11018091,-6810145,-4843894,13475066,-3133972,32674895,13715045 }, { 11423335,-5468059,32344216,8962751,24989809,9241752,-13265253,16086212,-28740881,-15642093 }, { -1409668,12530728,-6368726,10847387,19531186,-14132160,-11709148,7791794,-27245943,4383347 }, }, }, { { { -28970898,5271447,-1266009,-9736989,-12455236,16732599,-4862407,-4906449,27193557,6245191 }, { -15193956,5362278,-1783893,2695834,4960227,12840725,23061898,3260492,22510453,8577507 }, { -12632451,11257346,-32692994,13548177,-721004,10879011,31168030,13952092,-29571492,-3635906 }, }, { { 3877321,-9572739,32416692,5405324,-11004407,-13656635,3759769,11935320,5611860,8164018 }, { -16275802,14667797,15906460,12155291,-22111149,-9039718,32003002,-8832289,5773085,-8422109 }, { -23788118,-8254300,1950875,8937633,18686727,16459170,-905725,12376320,31632953,190926 }, }, { { -24593607,-16138885,-8423991,13378746,14162407,6901328,-8288749,4508564,-25341555,-3627528 }, { 8884438,-5884009,6023974,10104341,-6881569,-4941533,18722941,-14786005,-1672488,827625 }, { -32720583,-16289296,-32503547,7101210,13354605,2659080,-1800575,-14108036,-24878478,1541286 }, }, { { 2901347,-1117687,3880376,-10059388,-17620940,-3612781,-21802117,-3567481,20456845,-1885033 }, { 27019610,12299467,-13658288,-1603234,-12861660,-4861471,-19540150,-5016058,29439641,15138866 }, { 21536104,-6626420,-32447818,-10690208,-22408077,5175814,-5420040,-16361163,7779328,109896 }, }, { { 30279744,14648750,-8044871,6425558,13639621,-743509,28698390,12180118,23177719,-554075 }, { 26572847,3405927,-31701700,12890905,-19265668,5335866,-6493768,2378492,4439158,-13279347 }, { -22716706,3489070,-9225266,-332753,18875722,-1140095,14819434,-12731527,-17717757,-5461437 }, }, { { -5056483,16566551,15953661,3767752,-10436499,15627060,-820954,2177225,8550082,-15114165 }, { -18473302,16596775,-381660,15663611,22860960,15585581,-27844109,-3582739,-23260460,-8428588 }, { -32480551,15707275,-8205912,-5652081,29464558,2713815,-22725137,15860482,-21902570,1494193 }, }, { { -19562091,-14087393,-25583872,-9299552,13127842,759709,21923482,16529112,8742704,12967017 }, { -28464899,1553205,32536856,-10473729,-24691605,-406174,-8914625,-2933896,-29903758,15553883 }, { 21877909,3230008,9881174,10539357,-4797115,2841332,11543572,14513274,19375923,-12647961 }, }, { { 8832269,-14495485,13253511,5137575,5037871,4078777,24880818,-6222716,2862653,9455043 }, { 29306751,5123106,20245049,-14149889,9592566,8447059,-2077124,-2990080,15511449,4789663 }, { -20679756,7004547,8824831,-9434977,-4045704,-3750736,-5754762,108893,23513200,16652362 }, }, }, { { { -33256173,4144782,-4476029,-6579123,10770039,-7155542,-6650416,-12936300,-18319198,10212860 }, { 2756081,8598110,7383731,-6859892,22312759,-1105012,21179801,2600940,-9988298,-12506466 }, { -24645692,13317462,-30449259,-15653928,21365574,-10869657,11344424,864440,-2499677,-16710063 }, }, { { -26432803,6148329,-17184412,-14474154,18782929,-275997,-22561534,211300,2719757,4940997 }, { -1323882,3911313,-6948744,14759765,-30027150,7851207,21690126,8518463,26699843,5276295 }, { -13149873,-6429067,9396249,365013,24703301,-10488939,1321586,149635,-15452774,7159369 }, }, { { 9987780,-3404759,17507962,9505530,9731535,-2165514,22356009,8312176,22477218,-8403385 }, { 18155857,-16504990,19744716,9006923,15154154,-10538976,24256460,-4864995,-22548173,9334109 }, { 2986088,-4911893,10776628,-3473844,10620590,-7083203,-21413845,14253545,-22587149,536906 }, }, { { 4377756,8115836,24567078,15495314,11625074,13064599,7390551,10589625,10838060,-15420424 }, { -19342404,867880,9277171,-3218459,-14431572,-1986443,19295826,-15796950,6378260,699185 }, { 7895026,4057113,-7081772,-13077756,-17886831,-323126,-716039,15693155,-5045064,-13373962 }, }, { { -7737563,-5869402,-14566319,-7406919,11385654,13201616,31730678,-10962840,-3918636,-9669325 }, { 10188286,-15770834,-7336361,13427543,22223443,14896287,30743455,7116568,-21786507,5427593 }, { 696102,13206899,27047647,-10632082,15285305,-9853179,10798490,-4578720,19236243,12477404 }, }, { { -11229439,11243796,-17054270,-8040865,-788228,-8167967,-3897669,11180504,-23169516,7733644 }, { 17800790,-14036179,-27000429,-11766671,23887827,3149671,23466177,-10538171,10322027,15313801 }, { 26246234,11968874,32263343,-5468728,6830755,-13323031,-15794704,-101982,-24449242,10890804 }, }, { { -31365647,10271363,-12660625,-6267268,16690207,-13062544,-14982212,16484931,25180797,-5334884 }, { -586574,10376444,-32586414,-11286356,19801893,10997610,2276632,9482883,316878,13820577 }, { -9882808,-4510367,-2115506,16457136,-11100081,11674996,30756178,-7515054,30696930,-3712849 }, }, { { 32988917,-9603412,12499366,7910787,-10617257,-11931514,-7342816,-9985397,-32349517,7392473 }, { -8855661,15927861,9866406,-3649411,-2396914,-16655781,-30409476,-9134995,25112947,-2926644 }, { -2504044,-436966,25621774,-5678772,15085042,-5479877,-24884878,-13526194,5537438,-13914319 }, }, }, { { { -11225584,2320285,-9584280,10149187,-33444663,5808648,-14876251,-1729667,31234590,6090599 }, { -9633316,116426,26083934,2897444,-6364437,-2688086,609721,15878753,-6970405,-9034768 }, { -27757857,247744,-15194774,-9002551,23288161,-10011936,-23869595,6503646,20650474,1804084 }, }, { { -27589786,15456424,8972517,8469608,15640622,4439847,3121995,-10329713,27842616,-202328 }, { -15306973,2839644,22530074,10026331,4602058,5048462,28248656,5031932,-11375082,12714369 }, { 20807691,-7270825,29286141,11421711,-27876523,-13868230,-21227475,1035546,-19733229,12796920 }, }, { { 12076899,-14301286,-8785001,-11848922,-25012791,16400684,-17591495,-12899438,3480665,-15182815 }, { -32361549,5457597,28548107,7833186,7303070,-11953545,-24363064,-15921875,-33374054,2771025 }, { -21389266,421932,26597266,6860826,22486084,-6737172,-17137485,-4210226,-24552282,15673397 }, }, { { -20184622,2338216,19788685,-9620956,-4001265,-8740893,-20271184,4733254,3727144,-12934448 }, { 6120119,814863,-11794402,-622716,6812205,-15747771,2019594,7975683,31123697,-10958981 }, { 30069250,-11435332,30434654,2958439,18399564,-976289,12296869,9204260,-16432438,9648165 }, }, { { 32705432,-1550977,30705658,7451065,-11805606,9631813,3305266,5248604,-26008332,-11377501 }, { 17219865,2375039,-31570947,-5575615,-19459679,9219903,294711,15298639,2662509,-16297073 }, { -1172927,-7558695,-4366770,-4287744,-21346413,-8434326,32087529,-1222777,32247248,-14389861 }, }, { { 14312628,1221556,17395390,-8700143,-4945741,-8684635,-28197744,-9637817,-16027623,-13378845 }, { -1428825,-9678990,-9235681,6549687,-7383069,-468664,23046502,9803137,17597934,2346211 }, { 18510800,15337574,26171504,981392,-22241552,7827556,-23491134,-11323352,3059833,-11782870 }, }, { { 10141598,6082907,17829293,-1947643,9830092,13613136,-25556636,-5544586,-33502212,3592096 }, { 33114168,-15889352,-26525686,-13343397,33076705,8716171,1151462,1521897,-982665,-6837803 }, { -32939165,-4255815,23947181,-324178,-33072974,-12305637,-16637686,3891704,26353178,693168 }, }, { { 30374239,1595580,-16884039,13186931,4600344,406904,9585294,-400668,31375464,14369965 }, { -14370654,-7772529,1510301,6434173,-18784789,-6262728,32732230,-13108839,17901441,16011505 }, { 18171223,-11934626,-12500402,15197122,-11038147,-15230035,-19172240,-16046376,8764035,12309598 }, }, }, { { { 5975908,-5243188,-19459362,-9681747,-11541277,14015782,-23665757,1228319,17544096,-10593782 }, { 5811932,-1715293,3442887,-2269310,-18367348,-8359541,-18044043,-15410127,-5565381,12348900 }, { -31399660,11407555,25755363,6891399,-3256938,14872274,-24849353,8141295,-10632534,-585479 }, }, { { -12675304,694026,-5076145,13300344,14015258,-14451394,-9698672,-11329050,30944593,1130208 }, { 8247766,-6710942,-26562381,-7709309,-14401939,-14648910,4652152,2488540,23550156,-271232 }, { 17294316,-3788438,7026748,15626851,22990044,113481,2267737,-5908146,-408818,-137719 }, }, { { 16091085,-16253926,18599252,7340678,2137637,-1221657,-3364161,14550936,3260525,-7166271 }, { -4910104,-13332887,18550887,10864893,-16459325,-7291596,-23028869,-13204905,-12748722,2701326 }, { -8574695,16099415,4629974,-16340524,-20786213,-6005432,-10018363,9276971,11329923,1862132 }, }, { { 14763076,-15903608,-30918270,3689867,3511892,10313526,-21951088,12219231,-9037963,-940300 }, { 8894987,-3446094,6150753,3013931,301220,15693451,-31981216,-2909717,-15438168,11595570 }, { 15214962,3537601,-26238722,-14058872,4418657,-15230761,13947276,10730794,-13489462,-4363670 }, }, { { -2538306,7682793,32759013,263109,-29984731,-7955452,-22332124,-10188635,977108,699994 }, { -12466472,4195084,-9211532,550904,-15565337,12917920,19118110,-439841,-30534533,-14337913 }, { 31788461,-14507657,4799989,7372237,8808585,-14747943,9408237,-10051775,12493932,-5409317 }, }, { { -25680606,5260744,-19235809,-6284470,-3695942,16566087,27218280,2607121,29375955,6024730 }, { 842132,-2794693,-4763381,-8722815,26332018,-12405641,11831880,6985184,-9940361,2854096 }, { -4847262,-7969331,2516242,-5847713,9695691,-7221186,16512645,960770,12121869,16648078 }, }, { { -15218652,14667096,-13336229,2013717,30598287,-464137,-31504922,-7882064,20237806,2838411 }, { -19288047,4453152,15298546,-16178388,22115043,-15972604,12544294,-13470457,1068881,-12499905 }, { -9558883,-16518835,33238498,13506958,30505848,-1114596,-8486907,-2630053,12521378,4845654 }, }, { { -28198521,10744108,-2958380,10199664,7759311,-13088600,3409348,-873400,-6482306,-12885870 }, { -23561822,6230156,-20382013,10655314,-24040585,-11621172,10477734,-1240216,-3113227,13974498 }, { 12966261,15550616,-32038948,-1615346,21025980,-629444,5642325,7188737,18895762,12629579 }, }, }, { { { 14741879,-14946887,22177208,-11721237,1279741,8058600,11758140,789443,32195181,3895677 }, { 10758205,15755439,-4509950,9243698,-4879422,6879879,-2204575,-3566119,-8982069,4429647 }, { -2453894,15725973,-20436342,-10410672,-5803908,-11040220,-7135870,-11642895,18047436,-15281743 }, }, { { -25173001,-11307165,29759956,11776784,-22262383,-15820455,10993114,-12850837,-17620701,-9408468 }, { 21987233,700364,-24505048,14972008,-7774265,-5718395,32155026,2581431,-29958985,8773375 }, { -25568350,454463,-13211935,16126715,25240068,8594567,20656846,12017935,-7874389,-13920155 }, }, { { 6028182,6263078,-31011806,-11301710,-818919,2461772,-31841174,-5468042,-1721788,-2776725 }, { -12278994,16624277,987579,-5922598,32908203,1248608,7719845,-4166698,28408820,6816612 }, { -10358094,-8237829,19549651,-12169222,22082623,16147817,20613181,13982702,-10339570,5067943 }, }, { { -30505967,-3821767,12074681,13582412,-19877972,2443951,-19719286,12746132,5331210,-10105944 }, { 30528811,3601899,-1957090,4619785,-27361822,-15436388,24180793,-12570394,27679908,-1648928 }, { 9402404,-13957065,32834043,10838634,-26580150,-13237195,26653274,-8685565,22611444,-12715406 }, }, { { 22190590,1118029,22736441,15130463,-30460692,-5991321,19189625,-4648942,4854859,6622139 }, { -8310738,-2953450,-8262579,-3388049,-10401731,-271929,13424426,-3567227,26404409,13001963 }, { -31241838,-15415700,-2994250,8939346,11562230,-12840670,-26064365,-11621720,-15405155,11020693 }, }, { { 1866042,-7949489,-7898649,-10301010,12483315,13477547,3175636,-12424163,28761762,1406734 }, { -448555,-1777666,13018551,3194501,-9580420,-11161737,24760585,-4347088,25577411,-13378680 }, { -24290378,4759345,-690653,-1852816,2066747,10693769,-29595790,9884936,-9368926,4745410 }, }, { { -9141284,6049714,-19531061,-4341411,-31260798,9944276,-15462008,-11311852,10931924,-11931931 }, { -16561513,14112680,-8012645,4817318,-8040464,-11414606,-22853429,10856641,-20470770,13434654 }, { 22759489,-10073434,-16766264,-1871422,13637442,-10168091,1765144,-12654326,28445307,-5364710 }, }, { { 29875063,12493613,2795536,-3786330,1710620,15181182,-10195717,-8788675,9074234,1167180 }, { -26205683,11014233,-9842651,-2635485,-26908120,7532294,-18716888,-9535498,3843903,9367684 }, { -10969595,-6403711,9591134,9582310,11349256,108879,16235123,8601684,-139197,4242895 }, }, }, { { { 22092954,-13191123,-2042793,-11968512,32186753,-11517388,-6574341,2470660,-27417366,16625501 }, { -11057722,3042016,13770083,-9257922,584236,-544855,-7770857,2602725,-27351616,14247413 }, { 6314175,-10264892,-32772502,15957557,-10157730,168750,-8618807,14290061,27108877,-1180880 }, }, { { -8586597,-7170966,13241782,10960156,-32991015,-13794596,33547976,-11058889,-27148451,981874 }, { 22833440,9293594,-32649448,-13618667,-9136966,14756819,-22928859,-13970780,-10479804,-16197962 }, { -7768587,3326786,-28111797,10783824,19178761,14905060,22680049,13906969,-15933690,3797899 }, }, { { 21721356,-4212746,-12206123,9310182,-3882239,-13653110,23740224,-2709232,20491983,-8042152 }, { 9209270,-15135055,-13256557,-6167798,-731016,15289673,25947805,15286587,30997318,-6703063 }, { 7392032,16618386,23946583,-8039892,-13265164,-1533858,-14197445,-2321576,17649998,-250080 }, }, { { -9301088,-14193827,30609526,-3049543,-25175069,-1283752,-15241566,-9525724,-2233253,7662146 }, { -17558673,1763594,-33114336,15908610,-30040870,-12174295,7335080,-8472199,-3174674,3440183 }, { -19889700,-5977008,-24111293,-9688870,10799743,-16571957,40450,-4431835,4862400,1133 }, }, { { -32856209,-7873957,-5422389,14860950,-16319031,7956142,7258061,311861,-30594991,-7379421 }, { -3773428,-1565936,28985340,7499440,24445838,9325937,29727763,16527196,18278453,15405622 }, { -4381906,8508652,-19898366,-3674424,-5984453,15149970,-13313598,843523,-21875062,13626197 }, }, { { 2281448,-13487055,-10915418,-2609910,1879358,16164207,-10783882,3953792,13340839,15928663 }, { 31727126,-7179855,-18437503,-8283652,2875793,-16390330,-25269894,-7014826,-23452306,5964753 }, { 4100420,-5959452,-17179337,6017714,-18705837,12227141,-26684835,11344144,2538215,-7570755 }, }, { { -9433605,6123113,11159803,-2156608,30016280,14966241,-20474983,1485421,-629256,-15958862 }, { -26804558,4260919,11851389,9658551,-32017107,16367492,-20205425,-13191288,11659922,-11115118 }, { 26180396,10015009,-30844224,-8581293,5418197,9480663,2231568,-10170080,33100372,-1306171 }, }, { { 15121113,-5201871,-10389905,15427821,-27509937,-15992507,21670947,4486675,-5931810,-14466380 }, { 16166486,-9483733,-11104130,6023908,-31926798,-1364923,2340060,-16254968,-10735770,-10039824 }, { 28042865,-3557089,-12126526,12259706,-3717498,-6945899,6766453,-8689599,18036436,5803270 }, }, }, { { { -817581,6763912,11803561,1585585,10958447,-2671165,23855391,4598332,-6159431,-14117438 }, { -31031306,-14256194,17332029,-2383520,31312682,-5967183,696309,50292,-20095739,11763584 }, { -594563,-2514283,-32234153,12643980,12650761,14811489,665117,-12613632,-19773211,-10713562 }, }, { { 30464590,-11262872,-4127476,-12734478,19835327,-7105613,-24396175,2075773,-17020157,992471 }, { 18357185,-6994433,7766382,16342475,-29324918,411174,14578841,8080033,-11574335,-10601610 }, { 19598397,10334610,12555054,2555664,18821899,-10339780,21873263,16014234,26224780,16452269 }, }, { { -30223925,5145196,5944548,16385966,3976735,2009897,-11377804,-7618186,-20533829,3698650 }, { 14187449,3448569,-10636236,-10810935,-22663880,-3433596,7268410,-10890444,27394301,12015369 }, { 19695761,16087646,28032085,12999827,6817792,11427614,20244189,-1312777,-13259127,-3402461 }, }, { { 30860103,12735208,-1888245,-4699734,-16974906,2256940,-8166013,12298312,-8550524,-10393462 }, { -5719826,-11245325,-1910649,15569035,26642876,-7587760,-5789354,-15118654,-4976164,12651793 }, { -2848395,9953421,11531313,-5282879,26895123,-12697089,-13118820,-16517902,9768698,-2533218 }, }, { { -24719459,1894651,-287698,-4704085,15348719,-8156530,32767513,12765450,4940095,10678226 }, { 18860224,15980149,-18987240,-1562570,-26233012,-11071856,-7843882,13944024,-24372348,16582019 }, { -15504260,4970268,-29893044,4175593,-20993212,-2199756,-11704054,15444560,-11003761,7989037 }, }, { { 31490452,5568061,-2412803,2182383,-32336847,4531686,-32078269,6200206,-19686113,-14800171 }, { -17308668,-15879940,-31522777,-2831,-32887382,16375549,8680158,-16371713,28550068,-6857132 }, { -28126887,-5688091,16837845,-1820458,-6850681,12700016,-30039981,4364038,1155602,5988841 }, }, { { 21890435,-13272907,-12624011,12154349,-7831873,15300496,23148983,-4470481,24618407,8283181 }, { -33136107,-10512751,9975416,6841041,-31559793,16356536,3070187,-7025928,1466169,10740210 }, { -1509399,-15488185,-13503385,-10655916,32799044,909394,-13938903,-5779719,-32164649,-15327040 }, }, { { 3960823,-14267803,-28026090,-15918051,-19404858,13146868,15567327,951507,-3260321,-573935 }, { 24740841,5052253,-30094131,8961361,25877428,6165135,-24368180,14397372,-7380369,-6144105 }, { -28888365,3510803,-28103278,-1158478,-11238128,-10631454,-15441463,-14453128,-1625486,-6494814 }, }, }, { { { 793299,-9230478,8836302,-6235707,-27360908,-2369593,33152843,-4885251,-9906200,-621852 }, { 5666233,525582,20782575,-8038419,-24538499,14657740,16099374,1468826,-6171428,-15186581 }, { -4859255,-3779343,-2917758,-6748019,7778750,11688288,-30404353,-9871238,-1558923,-9863646 }, }, { { 10896332,-7719704,824275,472601,-19460308,3009587,25248958,14783338,-30581476,-15757844 }, { 10566929,12612572,-31944212,11118703,-12633376,12362879,21752402,8822496,24003793,14264025 }, { 27713862,-7355973,-11008240,9227530,27050101,2504721,23886875,-13117525,13958495,-5732453 }, }, { { -23481610,4867226,-27247128,3900521,29838369,-8212291,-31889399,-10041781,7340521,-15410068 }, { 4646514,-8011124,-22766023,-11532654,23184553,8566613,31366726,-1381061,-15066784,-10375192 }, { -17270517,12723032,-16993061,14878794,21619651,-6197576,27584817,3093888,-8843694,3849921 }, }, { { -9064912,2103172,25561640,-15125738,-5239824,9582958,32477045,-9017955,5002294,-15550259 }, { -12057553,-11177906,21115585,-13365155,8808712,-12030708,16489530,13378448,-25845716,12741426 }, { -5946367,10645103,-30911586,15390284,-3286982,-7118677,24306472,15852464,28834118,-7646072 }, }, { { -17335748,-9107057,-24531279,9434953,-8472084,-583362,-13090771,455841,20461858,5491305 }, { 13669248,-16095482,-12481974,-10203039,-14569770,-11893198,-24995986,11293807,-28588204,-9421832 }, { 28497928,6272777,-33022994,14470570,8906179,-1225630,18504674,-14165166,29867745,-8795943 }, }, { { -16207023,13517196,-27799630,-13697798,24009064,-6373891,-6367600,-13175392,22853429,-4012011 }, { 24191378,16712145,-13931797,15217831,14542237,1646131,18603514,-11037887,12876623,-2112447 }, { 17902668,4518229,-411702,-2829247,26878217,5258055,-12860753,608397,16031844,3723494 }, }, { { -28632773,12763728,-20446446,7577504,33001348,-13017745,17558842,-7872890,23896954,-4314245 }, { -20005381,-12011952,31520464,605201,2543521,5991821,-2945064,7229064,-9919646,-8826859 }, { 28816045,298879,-28165016,-15920938,19000928,-1665890,-12680833,-2949325,-18051778,-2082915 }, }, { { 16000882,-344896,3493092,-11447198,-29504595,-13159789,12577740,16041268,-19715240,7847707 }, { 10151868,10572098,27312476,7922682,14825339,4723128,-32855931,-6519018,-10020567,3852848 }, { -11430470,15697596,-21121557,-4420647,5386314,15063598,16514493,-15932110,29330899,-15076224 }, }, }, { { { -25499735,-4378794,-15222908,-6901211,16615731,2051784,3303702,15490,-27548796,12314391 }, { 15683520,-6003043,18109120,-9980648,15337968,-5997823,-16717435,15921866,16103996,-3731215 }, { -23169824,-10781249,13588192,-1628807,-3798557,-1074929,-19273607,5402699,-29815713,-9841101 }, }, { { 23190676,2384583,-32714340,3462154,-29903655,-1529132,-11266856,8911517,-25205859,2739713 }, { 21374101,-3554250,-33524649,9874411,15377179,11831242,-33529904,6134907,4931255,11987849 }, { -7732,-2978858,-16223486,7277597,105524,-322051,-31480539,13861388,-30076310,10117930 }, }, { { -29501170,-10744872,-26163768,13051539,-25625564,5089643,-6325503,6704079,12890019,15728940 }, { -21972360,-11771379,-951059,-4418840,14704840,2695116,903376,-10428139,12885167,8311031 }, { -17516482,5352194,10384213,-13811658,7506451,13453191,26423267,4384730,1888765,-5435404 }, }, { { -25817338,-3107312,-13494599,-3182506,30896459,-13921729,-32251644,-12707869,-19464434,-3340243 }, { -23607977,-2665774,-526091,4651136,5765089,4618330,6092245,14845197,17151279,-9854116 }, { -24830458,-12733720,-15165978,10367250,-29530908,-265356,22825805,-7087279,-16866484,16176525 }, }, { { -23583256,6564961,20063689,3798228,-4740178,7359225,2006182,-10363426,-28746253,-10197509 }, { -10626600,-4486402,-13320562,-5125317,3432136,-6393229,23632037,-1940610,32808310,1099883 }, { 15030977,5768825,-27451236,-2887299,-6427378,-15361371,-15277896,-6809350,2051441,-15225865 }, }, { { -3362323,-7239372,7517890,9824992,23555850,295369,5148398,-14154188,-22686354,16633660 }, { 4577086,-16752288,13249841,-15304328,19958763,-14537274,18559670,-10759549,8402478,-9864273 }, { -28406330,-1051581,-26790155,-907698,-17212414,-11030789,9453451,-14980072,17983010,9967138 }, }, { { -25762494,6524722,26585488,9969270,24709298,1220360,-1677990,7806337,17507396,3651560 }, { -10420457,-4118111,14584639,15971087,-15768321,8861010,26556809,-5574557,-18553322,-11357135 }, { 2839101,14284142,4029895,3472686,14402957,12689363,-26642121,8459447,-5605463,-7621941 }, }, { { -4839289,-3535444,9744961,2871048,25113978,3187018,-25110813,-849066,17258084,-7977739 }, { 18164541,-10595176,-17154882,-1542417,19237078,-9745295,23357533,-15217008,26908270,12150756 }, { -30264870,-7647865,5112249,-7036672,-1499807,-6974257,43168,-5537701,-32302074,16215819 }, }, }, { { { -6898905,9824394,-12304779,-4401089,-31397141,-6276835,32574489,12532905,-7503072,-8675347 }, { -27343522,-16515468,-27151524,-10722951,946346,16291093,254968,7168080,21676107,-1943028 }, { 21260961,-8424752,-16831886,-11920822,-23677961,3968121,-3651949,-6215466,-3556191,-7913075 }, }, { { 16544754,13250366,-16804428,15546242,-4583003,12757258,-2462308,-8680336,-18907032,-9662799 }, { -2415239,-15577728,18312303,4964443,-15272530,-12653564,26820651,16690659,25459437,-4564609 }, { -25144690,11425020,28423002,-11020557,-6144921,-15826224,9142795,-2391602,-6432418,-1644817 }, }, { { -23104652,6253476,16964147,-3768872,-25113972,-12296437,-27457225,-16344658,6335692,7249989 }, { -30333227,13979675,7503222,-12368314,-11956721,-4621693,-30272269,2682242,25993170,-12478523 }, { 4364628,5930691,32304656,-10044554,-8054781,15091131,22857016,-10598955,31820368,15075278 }, }, { { 31879134,-8918693,17258761,90626,-8041836,-4917709,24162788,-9650886,-17970238,12833045 }, { 19073683,14851414,-24403169,-11860168,7625278,11091125,-19619190,2074449,-9413939,14905377 }, { 24483667,-11935567,-2518866,-11547418,-1553130,15355506,-25282080,9253129,27628530,-7555480 }, }, { { 17597607,8340603,19355617,552187,26198470,-3176583,4593324,-9157582,-14110875,15297016 }, { 510886,14337390,-31785257,16638632,6328095,2713355,-20217417,-11864220,8683221,2921426 }, { 18606791,11874196,27155355,-5281482,-24031742,6265446,-25178240,-1278924,4674690,13890525 }, }, { { 13609624,13069022,-27372361,-13055908,24360586,9592974,14977157,9835105,4389687,288396 }, { 9922506,-519394,13613107,5883594,-18758345,-434263,-12304062,8317628,23388070,16052080 }, { 12720016,11937594,-31970060,-5028689,26900120,8561328,-20155687,-11632979,-14754271,-10812892 }, }, { { 15961858,14150409,26716931,-665832,-22794328,13603569,11829573,7467844,-28822128,929275 }, { 11038231,-11582396,-27310482,-7316562,-10498527,-16307831,-23479533,-9371869,-21393143,2465074 }, { 20017163,-4323226,27915242,1529148,12396362,15675764,13817261,-9658066,2463391,-4622140 }, }, { { -16358878,-12663911,-12065183,4996454,-1256422,1073572,9583558,12851107,4003896,12673717 }, { -1731589,-15155870,-3262930,16143082,19294135,13385325,14741514,-9103726,7903886,2348101 }, { 24536016,-16515207,12715592,-3862155,1511293,10047386,-3842346,-7129159,-28377538,10048127 }, }, }, { { { -12622226,-6204820,30718825,2591312,-10617028,12192840,18873298,-7297090,-32297756,15221632 }, { -26478122,-11103864,11546244,-1852483,9180880,7656409,-21343950,2095755,29769758,6593415 }, { -31994208,-2907461,4176912,3264766,12538965,-868111,26312345,-6118678,30958054,8292160 }, }, { { 31429822,-13959116,29173532,15632448,12174511,-2760094,32808831,3977186,26143136,-3148876 }, { 22648901,1402143,-22799984,13746059,7936347,365344,-8668633,-1674433,-3758243,-2304625 }, { -15491917,8012313,-2514730,-12702462,-23965846,-10254029,-1612713,-1535569,-16664475,8194478 }, }, { { 27338066,-7507420,-7414224,10140405,-19026427,-6589889,27277191,8855376,28572286,3005164 }, { 26287124,4821776,25476601,-4145903,-3764513,-15788984,-18008582,1182479,-26094821,-13079595 }, { -7171154,3178080,23970071,6201893,-17195577,-4489192,-21876275,-13982627,32208683,-1198248 }, }, { { -16657702,2817643,-10286362,14811298,6024667,13349505,-27315504,-10497842,-27672585,-11539858 }, { 15941029,-9405932,-21367050,8062055,31876073,-238629,-15278393,-1444429,15397331,-4130193 }, { 8934485,-13485467,-23286397,-13423241,-32446090,14047986,31170398,-1441021,-27505566,15087184 }, }, { { -18357243,-2156491,24524913,-16677868,15520427,-6360776,-15502406,11461896,16788528,-5868942 }, { -1947386,16013773,21750665,3714552,-17401782,-16055433,-3770287,-10323320,31322514,-11615635 }, { 21426655,-5650218,-13648287,-5347537,-28812189,-4920970,-18275391,-14621414,13040862,-12112948 }, }, { { 11293895,12478086,-27136401,15083750,-29307421,14748872,14555558,-13417103,1613711,4896935 }, { -25894883,15323294,-8489791,-8057900,25967126,-13425460,2825960,-4897045,-23971776,-11267415 }, { -15924766,-5229880,-17443532,6410664,3622847,10243618,20615400,12405433,-23753030,-8436416 }, }, { { -7091295,12556208,-20191352,9025187,-17072479,4333801,4378436,2432030,23097949,-566018 }, { 4565804,-16025654,20084412,-7842817,1724999,189254,24767264,10103221,-18512313,2424778 }, { 366633,-11976806,8173090,-6890119,30788634,5745705,-7168678,1344109,-3642553,12412659 }, }, { { -24001791,7690286,14929416,-168257,-32210835,-13412986,24162697,-15326504,-3141501,11179385 }, { 18289522,-14724954,8056945,16430056,-21729724,7842514,-6001441,-1486897,-18684645,-11443503 }, { 476239,6601091,-6152790,-9723375,17503545,-4863900,27672959,13403813,11052904,5219329 }, }, }, { { { 20678546,-8375738,-32671898,8849123,-5009758,14574752,31186971,-3973730,9014762,-8579056 }, { -13644050,-10350239,-15962508,5075808,-1514661,-11534600,-33102500,9160280,8473550,-3256838 }, { 24900749,14435722,17209120,-15292541,-22592275,9878983,-7689309,-16335821,-24568481,11788948 }, }, { { -3118155,-11395194,-13802089,14797441,9652448,-6845904,-20037437,10410733,-24568470,-1458691 }, { -15659161,16736706,-22467150,10215878,-9097177,7563911,11871841,-12505194,-18513325,8464118 }, { -23400612,8348507,-14585951,-861714,-3950205,-6373419,14325289,8628612,33313881,-8370517 }, }, { { -20186973,-4967935,22367356,5271547,-1097117,-4788838,-24805667,-10236854,-8940735,-5818269 }, { -6948785,-1795212,-32625683,-16021179,32635414,-7374245,15989197,-12838188,28358192,-4253904 }, { -23561781,-2799059,-32351682,-1661963,-9147719,10429267,-16637684,4072016,-5351664,5596589 }, }, { { -28236598,-3390048,12312896,6213178,3117142,16078565,29266239,2557221,1768301,15373193 }, { -7243358,-3246960,-4593467,-7553353,-127927,-912245,-1090902,-4504991,-24660491,3442910 }, { -30210571,5124043,14181784,8197961,18964734,-11939093,22597931,7176455,-18585478,13365930 }, }, { { -7877390,-1499958,8324673,4690079,6261860,890446,24538107,-8570186,-9689599,-3031667 }, { 25008904,-10771599,-4305031,-9638010,16265036,15721635,683793,-11823784,15723479,-15163481 }, { -9660625,12374379,-27006999,-7026148,-7724114,-12314514,11879682,5400171,519526,-1235876 }, }, { { 22258397,-16332233,-7869817,14613016,-22520255,-2950923,-20353881,7315967,16648397,7605640 }, { -8081308,-8464597,-8223311,9719710,19259459,-15348212,23994942,-5281555,-9468848,4763278 }, { -21699244,9220969,-15730624,1084137,-25476107,-2852390,31088447,-7764523,-11356529,728112 }, }, { { 26047220,-11751471,-6900323,-16521798,24092068,9158119,-4273545,-12555558,-29365436,-5498272 }, { 17510331,-322857,5854289,8403524,17133918,-3112612,-28111007,12327945,10750447,10014012 }, { -10312768,3936952,9156313,-8897683,16498692,-994647,-27481051,-666732,3424691,7540221 }, }, { { 30322361,-6964110,11361005,-4143317,7433304,4989748,-7071422,-16317219,-9244265,15258046 }, { 13054562,-2779497,19155474,469045,-12482797,4566042,5631406,2711395,1062915,-5136345 }, { -19240248,-11254599,-29509029,-7499965,-5835763,13005411,-6066489,12194497,32960380,1459310 }, }, }, { { { 19852034,7027924,23669353,10020366,8586503,-6657907,394197,-6101885,18638003,-11174937 }, { 31395534,15098109,26581030,8030562,-16527914,-5007134,9012486,-7584354,-6643087,-5442636 }, { -9192165,-2347377,-1997099,4529534,25766844,607986,-13222,9677543,-32294889,-6456008 }, }, { { -2444496,-149937,29348902,8186665,1873760,12489863,-30934579,-7839692,-7852844,-8138429 }, { -15236356,-15433509,7766470,746860,26346930,-10221762,-27333451,10754588,-9431476,5203576 }, { 31834314,14135496,-770007,5159118,20917671,-16768096,-7467973,-7337524,31809243,7347066 }, }, { { -9606723,-11874240,20414459,13033986,13716524,-11691881,19797970,-12211255,15192876,-2087490 }, { -12663563,-2181719,1168162,-3804809,26747877,-14138091,10609330,12694420,33473243,-13382104 }, { 33184999,11180355,15832085,-11385430,-1633671,225884,15089336,-11023903,-6135662,14480053 }, }, { { 31308717,-5619998,31030840,-1897099,15674547,-6582883,5496208,13685227,27595050,8737275 }, { -20318852,-15150239,10933843,-16178022,8335352,-7546022,-31008351,-12610604,26498114,66511 }, { 22644454,-8761729,-16671776,4884562,-3105614,-13559366,30540766,-4286747,-13327787,-7515095 }, }, { { -28017847,9834845,18617207,-2681312,-3401956,-13307506,8205540,13585437,-17127465,15115439 }, { 23711543,-672915,31206561,-8362711,6164647,-9709987,-33535882,-1426096,8236921,16492939 }, { -23910559,-13515526,-26299483,-4503841,25005590,-7687270,19574902,10071562,6708380,-6222424 }, }, { { 2101391,-4930054,19702731,2367575,-15427167,1047675,5301017,9328700,29955601,-11678310 }, { 3096359,9271816,-21620864,-15521844,-14847996,-7592937,-25892142,-12635595,-9917575,6216608 }, { -32615849,338663,-25195611,2510422,-29213566,-13820213,24822830,-6146567,-26767480,7525079 }, }, { { -23066649,-13985623,16133487,-7896178,-3389565,778788,-910336,-2782495,-19386633,11994101 }, { 21691500,-13624626,-641331,-14367021,3285881,-3483596,-25064666,9718258,-7477437,13381418 }, { 18445390,-4202236,14979846,11622458,-1727110,-3582980,23111648,-6375247,28535282,15779576 }, }, { { 30098053,3089662,-9234387,16662135,-21306940,11308411,-14068454,12021730,9955285,-16303356 }, { 9734894,-14576830,-7473633,-9138735,2060392,11313496,-18426029,9924399,20194861,13380996 }, { -26378102,-7965207,-22167821,15789297,-18055342,-6168792,-1984914,15707771,26342023,10146099 }, }, }, { { { -26016874,-219943,21339191,-41388,19745256,-2878700,-29637280,2227040,21612326,-545728 }, { -13077387,1184228,23562814,-5970442,-20351244,-6348714,25764461,12243797,-20856566,11649658 }, { -10031494,11262626,27384172,2271902,26947504,-15997771,39944,6114064,33514190,2333242 }, }, { { -21433588,-12421821,8119782,7219913,-21830522,-9016134,-6679750,-12670638,24350578,-13450001 }, { -4116307,-11271533,-23886186,4843615,-30088339,690623,-31536088,-10406836,8317860,12352766 }, { 18200138,-14475911,-33087759,-2696619,-23702521,-9102511,-23552096,-2287550,20712163,6719373 }, }, { { 26656208,6075253,-7858556,1886072,-28344043,4262326,11117530,-3763210,26224235,-3297458 }, { -17168938,-14854097,-3395676,-16369877,-19954045,14050420,21728352,9493610,18620611,-16428628 }, { -13323321,13325349,11432106,5964811,18609221,6062965,-5269471,-9725556,-30701573,-16479657 }, }, { { -23860538,-11233159,26961357,1640861,-32413112,-16737940,12248509,-5240639,13735342,1934062 }, { 25089769,6742589,17081145,-13406266,21909293,-16067981,-15136294,-3765346,-21277997,5473616 }, { 31883677,-7961101,1083432,-11572403,22828471,13290673,-7125085,12469656,29111212,-5451014 }, }, { { 24244947,-15050407,-26262976,2791540,-14997599,16666678,24367466,6388839,-10295587,452383 }, { -25640782,-3417841,5217916,16224624,19987036,-4082269,-24236251,-5915248,15766062,8407814 }, { -20406999,13990231,15495425,16395525,5377168,15166495,-8917023,-4388953,-8067909,2276718 }, }, { { 30157918,12924066,-17712050,9245753,19895028,3368142,-23827587,5096219,22740376,-7303417 }, { 2041139,-14256350,7783687,13876377,-25946985,-13352459,24051124,13742383,-15637599,13295222 }, { 33338237,-8505733,12532113,7977527,9106186,-1715251,-17720195,-4612972,-4451357,-14669444 }, }, { { -20045281,5454097,-14346548,6447146,28862071,1883651,-2469266,-4141880,7770569,9620597 }, { 23208068,7979712,33071466,8149229,1758231,-10834995,30945528,-1694323,-33502340,-14767970 }, { 1439958,-16270480,-1079989,-793782,4625402,10647766,-5043801,1220118,30494170,-11440799 }, }, { { -5037580,-13028295,-2970559,-3061767,15640974,-6701666,-26739026,926050,-1684339,-13333647 }, { 13908495,-3549272,30919928,-6273825,-21521863,7989039,9021034,9078865,3353509,4033511 }, { -29663431,-15113610,32259991,-344482,24295849,-12912123,23161163,8839127,27485041,7356032 }, }, }, { { { 9661027,705443,11980065,-5370154,-1628543,14661173,-6346142,2625015,28431036,-16771834 }, { -23839233,-8311415,-25945511,7480958,-17681669,-8354183,-22545972,14150565,15970762,4099461 }, { 29262576,16756590,26350592,-8793563,8529671,-11208050,13617293,-9937143,11465739,8317062 }, }, { { -25493081,-6962928,32500200,-9419051,-23038724,-2302222,14898637,3848455,20969334,-5157516 }, { -20384450,-14347713,-18336405,13884722,-33039454,2842114,-21610826,-3649888,11177095,14989547 }, { -24496721,-11716016,16959896,2278463,12066309,10137771,13515641,2581286,-28487508,9930240 }, }, { { -17751622,-2097826,16544300,-13009300,-15914807,-14949081,18345767,-13403753,16291481,-5314038 }, { -33229194,2553288,32678213,9875984,8534129,6889387,-9676774,6957617,4368891,9788741 }, { 16660756,7281060,-10830758,12911820,20108584,-8101676,-21722536,-8613148,16250552,-11111103 }, }, { { -19765507,2390526,-16551031,14161980,1905286,6414907,4689584,10604807,-30190403,4782747 }, { -1354539,14736941,-7367442,-13292886,7710542,-14155590,-9981571,4383045,22546403,437323 }, { 31665577,-12180464,-16186830,1491339,-18368625,3294682,27343084,2786261,-30633590,-14097016 }, }, { { -14467279,-683715,-33374107,7448552,19294360,14334329,-19690631,2355319,-19284671,-6114373 }, { 15121312,-15796162,6377020,-6031361,-10798111,-12957845,18952177,15496498,-29380133,11754228 }, { -2637277,-13483075,8488727,-14303896,12728761,-1622493,7141596,11724556,22761615,-10134141 }, }, { { 16918416,11729663,-18083579,3022987,-31015732,-13339659,-28741185,-12227393,32851222,11717399 }, { 11166634,7338049,-6722523,4531520,-29468672,-7302055,31474879,3483633,-1193175,-4030831 }, { -185635,9921305,31456609,-13536438,-12013818,13348923,33142652,6546660,-19985279,-3948376 }, }, { { -32460596,11266712,-11197107,-7899103,31703694,3855903,-8537131,-12833048,-30772034,-15486313 }, { -18006477,12709068,3991746,-6479188,-21491523,-10550425,-31135347,-16049879,10928917,3011958 }, { -6957757,-15594337,31696059,334240,29576716,14796075,-30831056,-12805180,18008031,10258577 }, }, { { -22448644,15655569,7018479,-4410003,-30314266,-1201591,-1853465,1367120,25127874,6671743 }, { 29701166,-14373934,-10878120,9279288,-17568,13127210,21382910,11042292,25838796,4642684 }, { -20430234,14955537,-24126347,8124619,-5369288,-5990470,30468147,-13900640,18423289,4177476 }, }, }, tor-0.2.7.6/src/ext/ed25519/ref10/ge_double_scalarmult.c0000644000175000017500000000450312621363246017242 00000000000000#include "ge.h" static void slide(signed char *r,const unsigned char *a) { int i; int b; int k; for (i = 0;i < 256;++i) r[i] = 1 & (a[i >> 3] >> (i & 7)); for (i = 0;i < 256;++i) if (r[i]) { for (b = 1;b <= 6 && i + b < 256;++b) { if (r[i + b]) { if (r[i] + (r[i + b] << b) <= 15) { r[i] += r[i + b] << b; r[i + b] = 0; } else if (r[i] - (r[i + b] << b) >= -15) { r[i] -= r[i + b] << b; for (k = i + b;k < 256;++k) { if (!r[k]) { r[k] = 1; break; } r[k] = 0; } } else break; } } } } static ge_precomp Bi[8] = { #include "base2.h" } ; /* r = a * A + b * B where a = a[0]+256*a[1]+...+256^31 a[31]. and b = b[0]+256*b[1]+...+256^31 b[31]. B is the Ed25519 base point (x,4/5) with x positive. */ void ge_double_scalarmult_vartime(ge_p2 *r,const unsigned char *a,const ge_p3 *A,const unsigned char *b) { signed char aslide[256]; signed char bslide[256]; ge_cached Ai[8]; /* A,3A,5A,7A,9A,11A,13A,15A */ ge_p1p1 t; ge_p3 u; ge_p3 A2; int i; slide(aslide,a); slide(bslide,b); ge_p3_to_cached(&Ai[0],A); ge_p3_dbl(&t,A); ge_p1p1_to_p3(&A2,&t); ge_add(&t,&A2,&Ai[0]); ge_p1p1_to_p3(&u,&t); ge_p3_to_cached(&Ai[1],&u); ge_add(&t,&A2,&Ai[1]); ge_p1p1_to_p3(&u,&t); ge_p3_to_cached(&Ai[2],&u); ge_add(&t,&A2,&Ai[2]); ge_p1p1_to_p3(&u,&t); ge_p3_to_cached(&Ai[3],&u); ge_add(&t,&A2,&Ai[3]); ge_p1p1_to_p3(&u,&t); ge_p3_to_cached(&Ai[4],&u); ge_add(&t,&A2,&Ai[4]); ge_p1p1_to_p3(&u,&t); ge_p3_to_cached(&Ai[5],&u); ge_add(&t,&A2,&Ai[5]); ge_p1p1_to_p3(&u,&t); ge_p3_to_cached(&Ai[6],&u); ge_add(&t,&A2,&Ai[6]); ge_p1p1_to_p3(&u,&t); ge_p3_to_cached(&Ai[7],&u); ge_p2_0(r); for (i = 255;i >= 0;--i) { if (aslide[i] || bslide[i]) break; } for (;i >= 0;--i) { ge_p2_dbl(&t,r); if (aslide[i] > 0) { ge_p1p1_to_p3(&u,&t); ge_add(&t,&u,&Ai[aslide[i]/2]); } else if (aslide[i] < 0) { ge_p1p1_to_p3(&u,&t); ge_sub(&t,&u,&Ai[(-aslide[i])/2]); } if (bslide[i] > 0) { ge_p1p1_to_p3(&u,&t); ge_madd(&t,&u,&Bi[bslide[i]/2]); } else if (bslide[i] < 0) { ge_p1p1_to_p3(&u,&t); ge_msub(&t,&u,&Bi[(-bslide[i])/2]); } ge_p1p1_to_p2(r,&t); } } tor-0.2.7.6/src/ext/ed25519/ref10/d2.h0000644000175000017500000000013212621363246013372 00000000000000-21827239,-5839606,-30745221,13898782,229458,15978800,-12551817,-6495438,29715968,9444199 tor-0.2.7.6/src/ext/ed25519/ref10/crypto_sign.h0000644000175000017500000000052212621363246015430 00000000000000/* Added for Tor */ #define crypto_sign ed25519_ref10_sign #define crypto_sign_keypair ed25519_ref10_keygen #define crypto_sign_seckey ed25519_ref10_seckey #define crypto_sign_seckey_expand ed25519_ref10_seckey_expand #define crypto_sign_pubkey ed25519_ref10_pubkey #define crypto_sign_open ed25519_ref10_open #include "ed25519_ref10.h" tor-0.2.7.6/src/ext/ed25519/ref10/fe_mul.c0000644000175000017500000002527612621363246014347 00000000000000#include "fe.h" #include "crypto_int64.h" /* h = f * g Can overlap h with f or g. Preconditions: |f| bounded by 1.65*2^26,1.65*2^25,1.65*2^26,1.65*2^25,etc. |g| bounded by 1.65*2^26,1.65*2^25,1.65*2^26,1.65*2^25,etc. Postconditions: |h| bounded by 1.01*2^25,1.01*2^24,1.01*2^25,1.01*2^24,etc. */ /* Notes on implementation strategy: Using schoolbook multiplication. Karatsuba would save a little in some cost models. Most multiplications by 2 and 19 are 32-bit precomputations; cheaper than 64-bit postcomputations. There is one remaining multiplication by 19 in the carry chain; one *19 precomputation can be merged into this, but the resulting data flow is considerably less clean. There are 12 carries below. 10 of them are 2-way parallelizable and vectorizable. Can get away with 11 carries, but then data flow is much deeper. With tighter constraints on inputs can squeeze carries into int32. */ void fe_mul(fe h,const fe f,const fe g) { crypto_int32 f0 = f[0]; crypto_int32 f1 = f[1]; crypto_int32 f2 = f[2]; crypto_int32 f3 = f[3]; crypto_int32 f4 = f[4]; crypto_int32 f5 = f[5]; crypto_int32 f6 = f[6]; crypto_int32 f7 = f[7]; crypto_int32 f8 = f[8]; crypto_int32 f9 = f[9]; crypto_int32 g0 = g[0]; crypto_int32 g1 = g[1]; crypto_int32 g2 = g[2]; crypto_int32 g3 = g[3]; crypto_int32 g4 = g[4]; crypto_int32 g5 = g[5]; crypto_int32 g6 = g[6]; crypto_int32 g7 = g[7]; crypto_int32 g8 = g[8]; crypto_int32 g9 = g[9]; crypto_int32 g1_19 = 19 * g1; /* 1.959375*2^29 */ crypto_int32 g2_19 = 19 * g2; /* 1.959375*2^30; still ok */ crypto_int32 g3_19 = 19 * g3; crypto_int32 g4_19 = 19 * g4; crypto_int32 g5_19 = 19 * g5; crypto_int32 g6_19 = 19 * g6; crypto_int32 g7_19 = 19 * g7; crypto_int32 g8_19 = 19 * g8; crypto_int32 g9_19 = 19 * g9; crypto_int32 f1_2 = 2 * f1; crypto_int32 f3_2 = 2 * f3; crypto_int32 f5_2 = 2 * f5; crypto_int32 f7_2 = 2 * f7; crypto_int32 f9_2 = 2 * f9; crypto_int64 f0g0 = f0 * (crypto_int64) g0; crypto_int64 f0g1 = f0 * (crypto_int64) g1; crypto_int64 f0g2 = f0 * (crypto_int64) g2; crypto_int64 f0g3 = f0 * (crypto_int64) g3; crypto_int64 f0g4 = f0 * (crypto_int64) g4; crypto_int64 f0g5 = f0 * (crypto_int64) g5; crypto_int64 f0g6 = f0 * (crypto_int64) g6; crypto_int64 f0g7 = f0 * (crypto_int64) g7; crypto_int64 f0g8 = f0 * (crypto_int64) g8; crypto_int64 f0g9 = f0 * (crypto_int64) g9; crypto_int64 f1g0 = f1 * (crypto_int64) g0; crypto_int64 f1g1_2 = f1_2 * (crypto_int64) g1; crypto_int64 f1g2 = f1 * (crypto_int64) g2; crypto_int64 f1g3_2 = f1_2 * (crypto_int64) g3; crypto_int64 f1g4 = f1 * (crypto_int64) g4; crypto_int64 f1g5_2 = f1_2 * (crypto_int64) g5; crypto_int64 f1g6 = f1 * (crypto_int64) g6; crypto_int64 f1g7_2 = f1_2 * (crypto_int64) g7; crypto_int64 f1g8 = f1 * (crypto_int64) g8; crypto_int64 f1g9_38 = f1_2 * (crypto_int64) g9_19; crypto_int64 f2g0 = f2 * (crypto_int64) g0; crypto_int64 f2g1 = f2 * (crypto_int64) g1; crypto_int64 f2g2 = f2 * (crypto_int64) g2; crypto_int64 f2g3 = f2 * (crypto_int64) g3; crypto_int64 f2g4 = f2 * (crypto_int64) g4; crypto_int64 f2g5 = f2 * (crypto_int64) g5; crypto_int64 f2g6 = f2 * (crypto_int64) g6; crypto_int64 f2g7 = f2 * (crypto_int64) g7; crypto_int64 f2g8_19 = f2 * (crypto_int64) g8_19; crypto_int64 f2g9_19 = f2 * (crypto_int64) g9_19; crypto_int64 f3g0 = f3 * (crypto_int64) g0; crypto_int64 f3g1_2 = f3_2 * (crypto_int64) g1; crypto_int64 f3g2 = f3 * (crypto_int64) g2; crypto_int64 f3g3_2 = f3_2 * (crypto_int64) g3; crypto_int64 f3g4 = f3 * (crypto_int64) g4; crypto_int64 f3g5_2 = f3_2 * (crypto_int64) g5; crypto_int64 f3g6 = f3 * (crypto_int64) g6; crypto_int64 f3g7_38 = f3_2 * (crypto_int64) g7_19; crypto_int64 f3g8_19 = f3 * (crypto_int64) g8_19; crypto_int64 f3g9_38 = f3_2 * (crypto_int64) g9_19; crypto_int64 f4g0 = f4 * (crypto_int64) g0; crypto_int64 f4g1 = f4 * (crypto_int64) g1; crypto_int64 f4g2 = f4 * (crypto_int64) g2; crypto_int64 f4g3 = f4 * (crypto_int64) g3; crypto_int64 f4g4 = f4 * (crypto_int64) g4; crypto_int64 f4g5 = f4 * (crypto_int64) g5; crypto_int64 f4g6_19 = f4 * (crypto_int64) g6_19; crypto_int64 f4g7_19 = f4 * (crypto_int64) g7_19; crypto_int64 f4g8_19 = f4 * (crypto_int64) g8_19; crypto_int64 f4g9_19 = f4 * (crypto_int64) g9_19; crypto_int64 f5g0 = f5 * (crypto_int64) g0; crypto_int64 f5g1_2 = f5_2 * (crypto_int64) g1; crypto_int64 f5g2 = f5 * (crypto_int64) g2; crypto_int64 f5g3_2 = f5_2 * (crypto_int64) g3; crypto_int64 f5g4 = f5 * (crypto_int64) g4; crypto_int64 f5g5_38 = f5_2 * (crypto_int64) g5_19; crypto_int64 f5g6_19 = f5 * (crypto_int64) g6_19; crypto_int64 f5g7_38 = f5_2 * (crypto_int64) g7_19; crypto_int64 f5g8_19 = f5 * (crypto_int64) g8_19; crypto_int64 f5g9_38 = f5_2 * (crypto_int64) g9_19; crypto_int64 f6g0 = f6 * (crypto_int64) g0; crypto_int64 f6g1 = f6 * (crypto_int64) g1; crypto_int64 f6g2 = f6 * (crypto_int64) g2; crypto_int64 f6g3 = f6 * (crypto_int64) g3; crypto_int64 f6g4_19 = f6 * (crypto_int64) g4_19; crypto_int64 f6g5_19 = f6 * (crypto_int64) g5_19; crypto_int64 f6g6_19 = f6 * (crypto_int64) g6_19; crypto_int64 f6g7_19 = f6 * (crypto_int64) g7_19; crypto_int64 f6g8_19 = f6 * (crypto_int64) g8_19; crypto_int64 f6g9_19 = f6 * (crypto_int64) g9_19; crypto_int64 f7g0 = f7 * (crypto_int64) g0; crypto_int64 f7g1_2 = f7_2 * (crypto_int64) g1; crypto_int64 f7g2 = f7 * (crypto_int64) g2; crypto_int64 f7g3_38 = f7_2 * (crypto_int64) g3_19; crypto_int64 f7g4_19 = f7 * (crypto_int64) g4_19; crypto_int64 f7g5_38 = f7_2 * (crypto_int64) g5_19; crypto_int64 f7g6_19 = f7 * (crypto_int64) g6_19; crypto_int64 f7g7_38 = f7_2 * (crypto_int64) g7_19; crypto_int64 f7g8_19 = f7 * (crypto_int64) g8_19; crypto_int64 f7g9_38 = f7_2 * (crypto_int64) g9_19; crypto_int64 f8g0 = f8 * (crypto_int64) g0; crypto_int64 f8g1 = f8 * (crypto_int64) g1; crypto_int64 f8g2_19 = f8 * (crypto_int64) g2_19; crypto_int64 f8g3_19 = f8 * (crypto_int64) g3_19; crypto_int64 f8g4_19 = f8 * (crypto_int64) g4_19; crypto_int64 f8g5_19 = f8 * (crypto_int64) g5_19; crypto_int64 f8g6_19 = f8 * (crypto_int64) g6_19; crypto_int64 f8g7_19 = f8 * (crypto_int64) g7_19; crypto_int64 f8g8_19 = f8 * (crypto_int64) g8_19; crypto_int64 f8g9_19 = f8 * (crypto_int64) g9_19; crypto_int64 f9g0 = f9 * (crypto_int64) g0; crypto_int64 f9g1_38 = f9_2 * (crypto_int64) g1_19; crypto_int64 f9g2_19 = f9 * (crypto_int64) g2_19; crypto_int64 f9g3_38 = f9_2 * (crypto_int64) g3_19; crypto_int64 f9g4_19 = f9 * (crypto_int64) g4_19; crypto_int64 f9g5_38 = f9_2 * (crypto_int64) g5_19; crypto_int64 f9g6_19 = f9 * (crypto_int64) g6_19; crypto_int64 f9g7_38 = f9_2 * (crypto_int64) g7_19; crypto_int64 f9g8_19 = f9 * (crypto_int64) g8_19; crypto_int64 f9g9_38 = f9_2 * (crypto_int64) g9_19; crypto_int64 h0 = f0g0+f1g9_38+f2g8_19+f3g7_38+f4g6_19+f5g5_38+f6g4_19+f7g3_38+f8g2_19+f9g1_38; crypto_int64 h1 = f0g1+f1g0 +f2g9_19+f3g8_19+f4g7_19+f5g6_19+f6g5_19+f7g4_19+f8g3_19+f9g2_19; crypto_int64 h2 = f0g2+f1g1_2 +f2g0 +f3g9_38+f4g8_19+f5g7_38+f6g6_19+f7g5_38+f8g4_19+f9g3_38; crypto_int64 h3 = f0g3+f1g2 +f2g1 +f3g0 +f4g9_19+f5g8_19+f6g7_19+f7g6_19+f8g5_19+f9g4_19; crypto_int64 h4 = f0g4+f1g3_2 +f2g2 +f3g1_2 +f4g0 +f5g9_38+f6g8_19+f7g7_38+f8g6_19+f9g5_38; crypto_int64 h5 = f0g5+f1g4 +f2g3 +f3g2 +f4g1 +f5g0 +f6g9_19+f7g8_19+f8g7_19+f9g6_19; crypto_int64 h6 = f0g6+f1g5_2 +f2g4 +f3g3_2 +f4g2 +f5g1_2 +f6g0 +f7g9_38+f8g8_19+f9g7_38; crypto_int64 h7 = f0g7+f1g6 +f2g5 +f3g4 +f4g3 +f5g2 +f6g1 +f7g0 +f8g9_19+f9g8_19; crypto_int64 h8 = f0g8+f1g7_2 +f2g6 +f3g5_2 +f4g4 +f5g3_2 +f6g2 +f7g1_2 +f8g0 +f9g9_38; crypto_int64 h9 = f0g9+f1g8 +f2g7 +f3g6 +f4g5 +f5g4 +f6g3 +f7g2 +f8g1 +f9g0 ; crypto_int64 carry0; crypto_int64 carry1; crypto_int64 carry2; crypto_int64 carry3; crypto_int64 carry4; crypto_int64 carry5; crypto_int64 carry6; crypto_int64 carry7; crypto_int64 carry8; crypto_int64 carry9; /* |h0| <= (1.65*1.65*2^52*(1+19+19+19+19)+1.65*1.65*2^50*(38+38+38+38+38)) i.e. |h0| <= 1.4*2^60; narrower ranges for h2, h4, h6, h8 |h1| <= (1.65*1.65*2^51*(1+1+19+19+19+19+19+19+19+19)) i.e. |h1| <= 1.7*2^59; narrower ranges for h3, h5, h7, h9 */ carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= SHL64(carry0,26); carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= SHL64(carry4,26); /* |h0| <= 2^25 */ /* |h4| <= 2^25 */ /* |h1| <= 1.71*2^59 */ /* |h5| <= 1.71*2^59 */ carry1 = (h1 + (crypto_int64) (1<<24)) >> 25; h2 += carry1; h1 -= SHL64(carry1,25); carry5 = (h5 + (crypto_int64) (1<<24)) >> 25; h6 += carry5; h5 -= SHL64(carry5,25); /* |h1| <= 2^24; from now on fits into int32 */ /* |h5| <= 2^24; from now on fits into int32 */ /* |h2| <= 1.41*2^60 */ /* |h6| <= 1.41*2^60 */ carry2 = (h2 + (crypto_int64) (1<<25)) >> 26; h3 += carry2; h2 -= SHL64(carry2,26); carry6 = (h6 + (crypto_int64) (1<<25)) >> 26; h7 += carry6; h6 -= SHL64(carry6,26); /* |h2| <= 2^25; from now on fits into int32 unchanged */ /* |h6| <= 2^25; from now on fits into int32 unchanged */ /* |h3| <= 1.71*2^59 */ /* |h7| <= 1.71*2^59 */ carry3 = (h3 + (crypto_int64) (1<<24)) >> 25; h4 += carry3; h3 -= SHL64(carry3,25); carry7 = (h7 + (crypto_int64) (1<<24)) >> 25; h8 += carry7; h7 -= SHL64(carry7,25); /* |h3| <= 2^24; from now on fits into int32 unchanged */ /* |h7| <= 2^24; from now on fits into int32 unchanged */ /* |h4| <= 1.72*2^34 */ /* |h8| <= 1.41*2^60 */ carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= SHL64(carry4,26); carry8 = (h8 + (crypto_int64) (1<<25)) >> 26; h9 += carry8; h8 -= SHL64(carry8,26); /* |h4| <= 2^25; from now on fits into int32 unchanged */ /* |h8| <= 2^25; from now on fits into int32 unchanged */ /* |h5| <= 1.01*2^24 */ /* |h9| <= 1.71*2^59 */ carry9 = (h9 + (crypto_int64) (1<<24)) >> 25; h0 += carry9 * 19; h9 -= SHL64(carry9,25); /* |h9| <= 2^24; from now on fits into int32 unchanged */ /* |h0| <= 1.1*2^39 */ carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= SHL64(carry0,26); /* |h0| <= 2^25; from now on fits into int32 unchanged */ /* |h1| <= 1.01*2^24 */ h[0] = (crypto_int32) h0; h[1] = (crypto_int32) h1; h[2] = (crypto_int32) h2; h[3] = (crypto_int32) h3; h[4] = (crypto_int32) h4; h[5] = (crypto_int32) h5; h[6] = (crypto_int32) h6; h[7] = (crypto_int32) h7; h[8] = (crypto_int32) h8; h[9] = (crypto_int32) h9; } tor-0.2.7.6/src/ext/ed25519/ref10/ge_p3_tobytes.c0000644000175000017500000000034412621363246015633 00000000000000#include "ge.h" void ge_p3_tobytes(unsigned char *s,const ge_p3 *h) { fe recip; fe x; fe y; fe_invert(recip,h->Z); fe_mul(x,h->X,recip); fe_mul(y,h->Y,recip); fe_tobytes(s,y); s[31] ^= fe_isnegative(x) << 7; } tor-0.2.7.6/src/ext/ed25519/ref10/ge_p3_to_p2.c0000644000175000017500000000022512621363246015163 00000000000000#include "ge.h" /* r = p */ extern void ge_p3_to_p2(ge_p2 *r,const ge_p3 *p) { fe_copy(r->X,p->X); fe_copy(r->Y,p->Y); fe_copy(r->Z,p->Z); } tor-0.2.7.6/src/ext/ed25519/ref10/ge_p3_dbl.c0000644000175000017500000000020312621363246014675 00000000000000#include "ge.h" /* r = 2 * p */ void ge_p3_dbl(ge_p1p1 *r,const ge_p3 *p) { ge_p2 q; ge_p3_to_p2(&q,p); ge_p2_dbl(r,&q); } tor-0.2.7.6/src/ext/ed25519/ref10/fe_cmov.c0000644000175000017500000000240312621363246014501 00000000000000#include "fe.h" /* Replace (f,g) with (g,g) if b == 1; replace (f,g) with (f,g) if b == 0. Preconditions: b in {0,1}. */ void fe_cmov(fe f,const fe g,unsigned int b) { crypto_int32 f0 = f[0]; crypto_int32 f1 = f[1]; crypto_int32 f2 = f[2]; crypto_int32 f3 = f[3]; crypto_int32 f4 = f[4]; crypto_int32 f5 = f[5]; crypto_int32 f6 = f[6]; crypto_int32 f7 = f[7]; crypto_int32 f8 = f[8]; crypto_int32 f9 = f[9]; crypto_int32 g0 = g[0]; crypto_int32 g1 = g[1]; crypto_int32 g2 = g[2]; crypto_int32 g3 = g[3]; crypto_int32 g4 = g[4]; crypto_int32 g5 = g[5]; crypto_int32 g6 = g[6]; crypto_int32 g7 = g[7]; crypto_int32 g8 = g[8]; crypto_int32 g9 = g[9]; crypto_int32 x0 = f0 ^ g0; crypto_int32 x1 = f1 ^ g1; crypto_int32 x2 = f2 ^ g2; crypto_int32 x3 = f3 ^ g3; crypto_int32 x4 = f4 ^ g4; crypto_int32 x5 = f5 ^ g5; crypto_int32 x6 = f6 ^ g6; crypto_int32 x7 = f7 ^ g7; crypto_int32 x8 = f8 ^ g8; crypto_int32 x9 = f9 ^ g9; b = -b; x0 &= b; x1 &= b; x2 &= b; x3 &= b; x4 &= b; x5 &= b; x6 &= b; x7 &= b; x8 &= b; x9 &= b; f[0] = f0 ^ x0; f[1] = f1 ^ x1; f[2] = f2 ^ x2; f[3] = f3 ^ x3; f[4] = f4 ^ x4; f[5] = f5 ^ x5; f[6] = f6 ^ x6; f[7] = f7 ^ x7; f[8] = f8 ^ x8; f[9] = f9 ^ x9; } tor-0.2.7.6/src/ext/ed25519/ref10/ge_precomp_0.c0000644000175000017500000000015612621363246015425 00000000000000#include "ge.h" void ge_precomp_0(ge_precomp *h) { fe_1(h->yplusx); fe_1(h->yminusx); fe_0(h->xy2d); } tor-0.2.7.6/src/ext/ed25519/ref10/ge.h0000644000175000017500000000546512621363246013476 00000000000000#ifndef GE_H #define GE_H /* ge means group element. Here the group is the set of pairs (x,y) of field elements (see fe.h) satisfying -x^2 + y^2 = 1 + d x^2y^2 where d = -121665/121666. Representations: ge_p2 (projective): (X:Y:Z) satisfying x=X/Z, y=Y/Z ge_p3 (extended): (X:Y:Z:T) satisfying x=X/Z, y=Y/Z, XY=ZT ge_p1p1 (completed): ((X:Z),(Y:T)) satisfying x=X/Z, y=Y/T ge_precomp (Duif): (y+x,y-x,2dxy) */ #include "fe.h" typedef struct { fe X; fe Y; fe Z; } ge_p2; typedef struct { fe X; fe Y; fe Z; fe T; } ge_p3; typedef struct { fe X; fe Y; fe Z; fe T; } ge_p1p1; typedef struct { fe yplusx; fe yminusx; fe xy2d; } ge_precomp; typedef struct { fe YplusX; fe YminusX; fe Z; fe T2d; } ge_cached; #define ge_frombytes_negate_vartime crypto_sign_ed25519_ref10_ge_frombytes_negate_vartime #define ge_tobytes crypto_sign_ed25519_ref10_ge_tobytes #define ge_p3_tobytes crypto_sign_ed25519_ref10_ge_p3_tobytes #define ge_p2_0 crypto_sign_ed25519_ref10_ge_p2_0 #define ge_p3_0 crypto_sign_ed25519_ref10_ge_p3_0 #define ge_precomp_0 crypto_sign_ed25519_ref10_ge_precomp_0 #define ge_p3_to_p2 crypto_sign_ed25519_ref10_ge_p3_to_p2 #define ge_p3_to_cached crypto_sign_ed25519_ref10_ge_p3_to_cached #define ge_p1p1_to_p2 crypto_sign_ed25519_ref10_ge_p1p1_to_p2 #define ge_p1p1_to_p3 crypto_sign_ed25519_ref10_ge_p1p1_to_p3 #define ge_p2_dbl crypto_sign_ed25519_ref10_ge_p2_dbl #define ge_p3_dbl crypto_sign_ed25519_ref10_ge_p3_dbl #define ge_madd crypto_sign_ed25519_ref10_ge_madd #define ge_msub crypto_sign_ed25519_ref10_ge_msub #define ge_add crypto_sign_ed25519_ref10_ge_add #define ge_sub crypto_sign_ed25519_ref10_ge_sub #define ge_scalarmult_base crypto_sign_ed25519_ref10_ge_scalarmult_base #define ge_double_scalarmult_vartime crypto_sign_ed25519_ref10_ge_double_scalarmult_vartime extern void ge_tobytes(unsigned char *,const ge_p2 *); extern void ge_p3_tobytes(unsigned char *,const ge_p3 *); extern int ge_frombytes_negate_vartime(ge_p3 *,const unsigned char *); extern void ge_p2_0(ge_p2 *); extern void ge_p3_0(ge_p3 *); extern void ge_precomp_0(ge_precomp *); extern void ge_p3_to_p2(ge_p2 *,const ge_p3 *); extern void ge_p3_to_cached(ge_cached *,const ge_p3 *); extern void ge_p1p1_to_p2(ge_p2 *,const ge_p1p1 *); extern void ge_p1p1_to_p3(ge_p3 *,const ge_p1p1 *); extern void ge_p2_dbl(ge_p1p1 *,const ge_p2 *); extern void ge_p3_dbl(ge_p1p1 *,const ge_p3 *); extern void ge_madd(ge_p1p1 *,const ge_p3 *,const ge_precomp *); extern void ge_msub(ge_p1p1 *,const ge_p3 *,const ge_precomp *); extern void ge_add(ge_p1p1 *,const ge_p3 *,const ge_cached *); extern void ge_sub(ge_p1p1 *,const ge_p3 *,const ge_cached *); extern void ge_scalarmult_base(ge_p3 *,const unsigned char *); extern void ge_double_scalarmult_vartime(ge_p2 *,const unsigned char *,const ge_p3 *,const unsigned char *); #endif tor-0.2.7.6/src/ext/ed25519/ref10/ge_madd.h0000644000175000017500000000355412621363246014460 00000000000000 /* qhasm: enter ge_madd */ /* qhasm: fe X1 */ /* qhasm: fe Y1 */ /* qhasm: fe Z1 */ /* qhasm: fe T1 */ /* qhasm: fe ypx2 */ /* qhasm: fe ymx2 */ /* qhasm: fe xy2d2 */ /* qhasm: fe X3 */ /* qhasm: fe Y3 */ /* qhasm: fe Z3 */ /* qhasm: fe T3 */ /* qhasm: fe YpX1 */ /* qhasm: fe YmX1 */ /* qhasm: fe A */ /* qhasm: fe B */ /* qhasm: fe C */ /* qhasm: fe D */ /* qhasm: YpX1 = Y1+X1 */ /* asm 1: fe_add(>YpX1=fe#1,YpX1=r->X,Y,X); */ fe_add(r->X,p->Y,p->X); /* qhasm: YmX1 = Y1-X1 */ /* asm 1: fe_sub(>YmX1=fe#2,YmX1=r->Y,Y,X); */ fe_sub(r->Y,p->Y,p->X); /* qhasm: A = YpX1*ypx2 */ /* asm 1: fe_mul(>A=fe#3,A=r->Z,X,yplusx); */ fe_mul(r->Z,r->X,q->yplusx); /* qhasm: B = YmX1*ymx2 */ /* asm 1: fe_mul(>B=fe#2,B=r->Y,Y,yminusx); */ fe_mul(r->Y,r->Y,q->yminusx); /* qhasm: C = xy2d2*T1 */ /* asm 1: fe_mul(>C=fe#4,C=r->T,xy2d,T); */ fe_mul(r->T,q->xy2d,p->T); /* qhasm: D = 2*Z1 */ /* asm 1: fe_add(>D=fe#5,D=t0,Z,Z); */ fe_add(t0,p->Z,p->Z); /* qhasm: X3 = A-B */ /* asm 1: fe_sub(>X3=fe#1,X3=r->X,Z,Y); */ fe_sub(r->X,r->Z,r->Y); /* qhasm: Y3 = A+B */ /* asm 1: fe_add(>Y3=fe#2,Y3=r->Y,Z,Y); */ fe_add(r->Y,r->Z,r->Y); /* qhasm: Z3 = D+C */ /* asm 1: fe_add(>Z3=fe#3,Z3=r->Z,T); */ fe_add(r->Z,t0,r->T); /* qhasm: T3 = D-C */ /* asm 1: fe_sub(>T3=fe#4,T3=r->T,T); */ fe_sub(r->T,t0,r->T); /* qhasm: return */ tor-0.2.7.6/src/ext/ed25519/ref10/ge_p3_0.c0000644000175000017500000000014412621363246014277 00000000000000#include "ge.h" void ge_p3_0(ge_p3 *h) { fe_0(h->X); fe_1(h->Y); fe_1(h->Z); fe_0(h->T); } tor-0.2.7.6/src/ext/ed25519/ref10/sc.h0000644000175000017500000000057612621363246013506 00000000000000#ifndef SC_H #define SC_H /* The set of scalars is \Z/l where l = 2^252 + 27742317777372353535851937790883648493. */ #define sc_reduce crypto_sign_ed25519_ref10_sc_reduce #define sc_muladd crypto_sign_ed25519_ref10_sc_muladd extern void sc_reduce(unsigned char *); extern void sc_muladd(unsigned char *,const unsigned char *,const unsigned char *,const unsigned char *); #endif tor-0.2.7.6/src/ext/ed25519/ref10/sqrtm1.h0000644000175000017500000000012712621363246014320 00000000000000-32595792,-7943725,9377950,3500415,12389472,-272473,-25146209,-2005654,326686,11406482 tor-0.2.7.6/src/ext/ed25519/ref10/fe_sub.c0000644000175000017500000000234712621363246014335 00000000000000#include "fe.h" /* h = f - g Can overlap h with f or g. Preconditions: |f| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. |g| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc. Postconditions: |h| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc. */ void fe_sub(fe h,const fe f,const fe g) { crypto_int32 f0 = f[0]; crypto_int32 f1 = f[1]; crypto_int32 f2 = f[2]; crypto_int32 f3 = f[3]; crypto_int32 f4 = f[4]; crypto_int32 f5 = f[5]; crypto_int32 f6 = f[6]; crypto_int32 f7 = f[7]; crypto_int32 f8 = f[8]; crypto_int32 f9 = f[9]; crypto_int32 g0 = g[0]; crypto_int32 g1 = g[1]; crypto_int32 g2 = g[2]; crypto_int32 g3 = g[3]; crypto_int32 g4 = g[4]; crypto_int32 g5 = g[5]; crypto_int32 g6 = g[6]; crypto_int32 g7 = g[7]; crypto_int32 g8 = g[8]; crypto_int32 g9 = g[9]; crypto_int32 h0 = f0 - g0; crypto_int32 h1 = f1 - g1; crypto_int32 h2 = f2 - g2; crypto_int32 h3 = f3 - g3; crypto_int32 h4 = f4 - g4; crypto_int32 h5 = f5 - g5; crypto_int32 h6 = f6 - g6; crypto_int32 h7 = f7 - g7; crypto_int32 h8 = f8 - g8; crypto_int32 h9 = f9 - g9; h[0] = h0; h[1] = h1; h[2] = h2; h[3] = h3; h[4] = h4; h[5] = h5; h[6] = h6; h[7] = h7; h[8] = h8; h[9] = h9; } tor-0.2.7.6/src/ext/ed25519/ref10/ge_msub.c0000644000175000017500000000020012621363246014475 00000000000000#include "ge.h" /* r = p - q */ void ge_msub(ge_p1p1 *r,const ge_p3 *p,const ge_precomp *q) { fe t0; #include "ge_msub.h" } tor-0.2.7.6/src/ext/ed25519/ref10/crypto_int32.h0000644000175000017500000000114612621363246015432 00000000000000/* Added for Tor. */ #ifndef CRYPTO_INT32_H #define CRYPTO_INT32_H #include "torint.h" #define crypto_int32 int32_t #define crypto_uint32 uint32_t /* Stop signed left shifts overflowing by using unsigned types for bitwise operations */ #ifndef OVERFLOW_SAFE_SIGNED_LSHIFT #define OVERFLOW_SAFE_SIGNED_LSHIFT(s, lshift, utype, stype) \ ((stype)((utype)(s) << (utype)(lshift))) #endif #define SHL32(s, lshift) \ OVERFLOW_SAFE_SIGNED_LSHIFT(s, lshift, crypto_uint32, crypto_int32) #define SHL8(s, lshift) \ OVERFLOW_SAFE_SIGNED_LSHIFT(s, lshift, unsigned char, signed char) #endif /* CRYPTO_INT32_H */ tor-0.2.7.6/src/ext/ed25519/ref10/fe_sq2.c0000644000175000017500000001424012621363246014244 00000000000000#include "fe.h" #include "crypto_int64.h" /* h = 2 * f * f Can overlap h with f. Preconditions: |f| bounded by 1.65*2^26,1.65*2^25,1.65*2^26,1.65*2^25,etc. Postconditions: |h| bounded by 1.01*2^25,1.01*2^24,1.01*2^25,1.01*2^24,etc. */ /* See fe_mul.c for discussion of implementation strategy. */ void fe_sq2(fe h,const fe f) { crypto_int32 f0 = f[0]; crypto_int32 f1 = f[1]; crypto_int32 f2 = f[2]; crypto_int32 f3 = f[3]; crypto_int32 f4 = f[4]; crypto_int32 f5 = f[5]; crypto_int32 f6 = f[6]; crypto_int32 f7 = f[7]; crypto_int32 f8 = f[8]; crypto_int32 f9 = f[9]; crypto_int32 f0_2 = 2 * f0; crypto_int32 f1_2 = 2 * f1; crypto_int32 f2_2 = 2 * f2; crypto_int32 f3_2 = 2 * f3; crypto_int32 f4_2 = 2 * f4; crypto_int32 f5_2 = 2 * f5; crypto_int32 f6_2 = 2 * f6; crypto_int32 f7_2 = 2 * f7; crypto_int32 f5_38 = 38 * f5; /* 1.959375*2^30 */ crypto_int32 f6_19 = 19 * f6; /* 1.959375*2^30 */ crypto_int32 f7_38 = 38 * f7; /* 1.959375*2^30 */ crypto_int32 f8_19 = 19 * f8; /* 1.959375*2^30 */ crypto_int32 f9_38 = 38 * f9; /* 1.959375*2^30 */ crypto_int64 f0f0 = f0 * (crypto_int64) f0; crypto_int64 f0f1_2 = f0_2 * (crypto_int64) f1; crypto_int64 f0f2_2 = f0_2 * (crypto_int64) f2; crypto_int64 f0f3_2 = f0_2 * (crypto_int64) f3; crypto_int64 f0f4_2 = f0_2 * (crypto_int64) f4; crypto_int64 f0f5_2 = f0_2 * (crypto_int64) f5; crypto_int64 f0f6_2 = f0_2 * (crypto_int64) f6; crypto_int64 f0f7_2 = f0_2 * (crypto_int64) f7; crypto_int64 f0f8_2 = f0_2 * (crypto_int64) f8; crypto_int64 f0f9_2 = f0_2 * (crypto_int64) f9; crypto_int64 f1f1_2 = f1_2 * (crypto_int64) f1; crypto_int64 f1f2_2 = f1_2 * (crypto_int64) f2; crypto_int64 f1f3_4 = f1_2 * (crypto_int64) f3_2; crypto_int64 f1f4_2 = f1_2 * (crypto_int64) f4; crypto_int64 f1f5_4 = f1_2 * (crypto_int64) f5_2; crypto_int64 f1f6_2 = f1_2 * (crypto_int64) f6; crypto_int64 f1f7_4 = f1_2 * (crypto_int64) f7_2; crypto_int64 f1f8_2 = f1_2 * (crypto_int64) f8; crypto_int64 f1f9_76 = f1_2 * (crypto_int64) f9_38; crypto_int64 f2f2 = f2 * (crypto_int64) f2; crypto_int64 f2f3_2 = f2_2 * (crypto_int64) f3; crypto_int64 f2f4_2 = f2_2 * (crypto_int64) f4; crypto_int64 f2f5_2 = f2_2 * (crypto_int64) f5; crypto_int64 f2f6_2 = f2_2 * (crypto_int64) f6; crypto_int64 f2f7_2 = f2_2 * (crypto_int64) f7; crypto_int64 f2f8_38 = f2_2 * (crypto_int64) f8_19; crypto_int64 f2f9_38 = f2 * (crypto_int64) f9_38; crypto_int64 f3f3_2 = f3_2 * (crypto_int64) f3; crypto_int64 f3f4_2 = f3_2 * (crypto_int64) f4; crypto_int64 f3f5_4 = f3_2 * (crypto_int64) f5_2; crypto_int64 f3f6_2 = f3_2 * (crypto_int64) f6; crypto_int64 f3f7_76 = f3_2 * (crypto_int64) f7_38; crypto_int64 f3f8_38 = f3_2 * (crypto_int64) f8_19; crypto_int64 f3f9_76 = f3_2 * (crypto_int64) f9_38; crypto_int64 f4f4 = f4 * (crypto_int64) f4; crypto_int64 f4f5_2 = f4_2 * (crypto_int64) f5; crypto_int64 f4f6_38 = f4_2 * (crypto_int64) f6_19; crypto_int64 f4f7_38 = f4 * (crypto_int64) f7_38; crypto_int64 f4f8_38 = f4_2 * (crypto_int64) f8_19; crypto_int64 f4f9_38 = f4 * (crypto_int64) f9_38; crypto_int64 f5f5_38 = f5 * (crypto_int64) f5_38; crypto_int64 f5f6_38 = f5_2 * (crypto_int64) f6_19; crypto_int64 f5f7_76 = f5_2 * (crypto_int64) f7_38; crypto_int64 f5f8_38 = f5_2 * (crypto_int64) f8_19; crypto_int64 f5f9_76 = f5_2 * (crypto_int64) f9_38; crypto_int64 f6f6_19 = f6 * (crypto_int64) f6_19; crypto_int64 f6f7_38 = f6 * (crypto_int64) f7_38; crypto_int64 f6f8_38 = f6_2 * (crypto_int64) f8_19; crypto_int64 f6f9_38 = f6 * (crypto_int64) f9_38; crypto_int64 f7f7_38 = f7 * (crypto_int64) f7_38; crypto_int64 f7f8_38 = f7_2 * (crypto_int64) f8_19; crypto_int64 f7f9_76 = f7_2 * (crypto_int64) f9_38; crypto_int64 f8f8_19 = f8 * (crypto_int64) f8_19; crypto_int64 f8f9_38 = f8 * (crypto_int64) f9_38; crypto_int64 f9f9_38 = f9 * (crypto_int64) f9_38; crypto_int64 h0 = f0f0 +f1f9_76+f2f8_38+f3f7_76+f4f6_38+f5f5_38; crypto_int64 h1 = f0f1_2+f2f9_38+f3f8_38+f4f7_38+f5f6_38; crypto_int64 h2 = f0f2_2+f1f1_2 +f3f9_76+f4f8_38+f5f7_76+f6f6_19; crypto_int64 h3 = f0f3_2+f1f2_2 +f4f9_38+f5f8_38+f6f7_38; crypto_int64 h4 = f0f4_2+f1f3_4 +f2f2 +f5f9_76+f6f8_38+f7f7_38; crypto_int64 h5 = f0f5_2+f1f4_2 +f2f3_2 +f6f9_38+f7f8_38; crypto_int64 h6 = f0f6_2+f1f5_4 +f2f4_2 +f3f3_2 +f7f9_76+f8f8_19; crypto_int64 h7 = f0f7_2+f1f6_2 +f2f5_2 +f3f4_2 +f8f9_38; crypto_int64 h8 = f0f8_2+f1f7_4 +f2f6_2 +f3f5_4 +f4f4 +f9f9_38; crypto_int64 h9 = f0f9_2+f1f8_2 +f2f7_2 +f3f6_2 +f4f5_2; crypto_int64 carry0; crypto_int64 carry1; crypto_int64 carry2; crypto_int64 carry3; crypto_int64 carry4; crypto_int64 carry5; crypto_int64 carry6; crypto_int64 carry7; crypto_int64 carry8; crypto_int64 carry9; h0 += h0; h1 += h1; h2 += h2; h3 += h3; h4 += h4; h5 += h5; h6 += h6; h7 += h7; h8 += h8; h9 += h9; carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= SHL64(carry0,26); carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= SHL64(carry4,26); carry1 = (h1 + (crypto_int64) (1<<24)) >> 25; h2 += carry1; h1 -= SHL64(carry1,25); carry5 = (h5 + (crypto_int64) (1<<24)) >> 25; h6 += carry5; h5 -= SHL64(carry5,25); carry2 = (h2 + (crypto_int64) (1<<25)) >> 26; h3 += carry2; h2 -= SHL64(carry2,26); carry6 = (h6 + (crypto_int64) (1<<25)) >> 26; h7 += carry6; h6 -= SHL64(carry6,26); carry3 = (h3 + (crypto_int64) (1<<24)) >> 25; h4 += carry3; h3 -= SHL64(carry3,25); carry7 = (h7 + (crypto_int64) (1<<24)) >> 25; h8 += carry7; h7 -= SHL64(carry7,25); carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= SHL64(carry4,26); carry8 = (h8 + (crypto_int64) (1<<25)) >> 26; h9 += carry8; h8 -= SHL64(carry8,26); carry9 = (h9 + (crypto_int64) (1<<24)) >> 25; h0 += carry9 * 19; h9 -= SHL64(carry9,25); carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= SHL64(carry0,26); h[0] = (crypto_int32) h0; h[1] = (crypto_int32) h1; h[2] = (crypto_int32) h2; h[3] = (crypto_int32) h3; h[4] = (crypto_int32) h4; h[5] = (crypto_int32) h5; h[6] = (crypto_int32) h6; h[7] = (crypto_int32) h7; h[8] = (crypto_int32) h8; h[9] = (crypto_int32) h9; } tor-0.2.7.6/src/ext/ed25519/ref10/fe.h0000644000175000017500000000362312621363246013467 00000000000000#ifndef FE_H #define FE_H #include "crypto_int32.h" typedef crypto_int32 fe[10]; /* fe means field element. Here the field is \Z/(2^255-19). An element t, entries t[0]...t[9], represents the integer t[0]+2^26 t[1]+2^51 t[2]+2^77 t[3]+2^102 t[4]+...+2^230 t[9]. Bounds on each t[i] vary depending on context. */ #define fe_frombytes crypto_sign_ed25519_ref10_fe_frombytes #define fe_tobytes crypto_sign_ed25519_ref10_fe_tobytes #define fe_copy crypto_sign_ed25519_ref10_fe_copy #define fe_isnonzero crypto_sign_ed25519_ref10_fe_isnonzero #define fe_isnegative crypto_sign_ed25519_ref10_fe_isnegative #define fe_0 crypto_sign_ed25519_ref10_fe_0 #define fe_1 crypto_sign_ed25519_ref10_fe_1 #define fe_cswap crypto_sign_ed25519_ref10_fe_cswap #define fe_cmov crypto_sign_ed25519_ref10_fe_cmov #define fe_add crypto_sign_ed25519_ref10_fe_add #define fe_sub crypto_sign_ed25519_ref10_fe_sub #define fe_neg crypto_sign_ed25519_ref10_fe_neg #define fe_mul crypto_sign_ed25519_ref10_fe_mul #define fe_sq crypto_sign_ed25519_ref10_fe_sq #define fe_sq2 crypto_sign_ed25519_ref10_fe_sq2 #define fe_mul121666 crypto_sign_ed25519_ref10_fe_mul121666 #define fe_invert crypto_sign_ed25519_ref10_fe_invert #define fe_pow22523 crypto_sign_ed25519_ref10_fe_pow22523 extern void fe_frombytes(fe,const unsigned char *); extern void fe_tobytes(unsigned char *,const fe); extern void fe_copy(fe,const fe); extern int fe_isnonzero(const fe); extern int fe_isnegative(const fe); extern void fe_0(fe); extern void fe_1(fe); extern void fe_cswap(fe,fe,unsigned int); extern void fe_cmov(fe,const fe,unsigned int); extern void fe_add(fe,const fe,const fe); extern void fe_sub(fe,const fe,const fe); extern void fe_neg(fe,const fe); extern void fe_mul(fe,const fe,const fe); extern void fe_sq(fe,const fe); extern void fe_sq2(fe,const fe); extern void fe_mul121666(fe,const fe); extern void fe_invert(fe,const fe); extern void fe_pow22523(fe,const fe); #endif tor-0.2.7.6/src/ext/OpenBSD_malloc_Linux.c0000644000175000017500000013224612621363245015120 00000000000000/* Version 1.83 for Linux. * Compilation: gcc -shared -fPIC -O2 OpenBSD_malloc_Linux.c -o malloc.so * Launching: LD_PRELOAD=/path/to/malloc.so firefox */ /* $OpenBSD: malloc.c,v 1.83 2006/05/14 19:53:40 otto Exp $ */ /* * ---------------------------------------------------------------------------- * "THE BEER-WARE LICENSE" (Revision 42): * wrote this file. As long as you retain this notice you * can do whatever you want with this stuff. If we meet some day, and you think * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- */ /* We use this macro to remove some code that we don't actually want, * rather than to fix its warnings. */ #define BUILDING_FOR_TOR /* * Defining MALLOC_EXTRA_SANITY will enable extra checks which are * related to internal conditions and consistency in malloc.c. This has * a noticeable runtime performance hit, and generally will not do you * any good unless you fiddle with the internals of malloc or want * to catch random pointer corruption as early as possible. */ #ifndef MALLOC_EXTRA_SANITY #undef MALLOC_EXTRA_SANITY #endif /* * Defining MALLOC_STATS will enable you to call malloc_dump() and set * the [dD] options in the MALLOC_OPTIONS environment variable. * It has no run-time performance hit, but does pull in stdio... */ #ifndef MALLOC_STATS #undef MALLOC_STATS #endif /* * What to use for Junk. This is the byte value we use to fill with * when the 'J' option is enabled. */ #define SOME_JUNK 0xd0 /* as in "Duh" :-) */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include /* For SIZE_MAX */ #include "torint.h" //#include "thread_private.h" /* * The basic parameters you can tweak. * * malloc_pageshift pagesize = 1 << malloc_pageshift * It's probably best if this is the native * page size, but it shouldn't have to be. * * malloc_minsize minimum size of an allocation in bytes. * If this is too small it's too much work * to manage them. This is also the smallest * unit of alignment used for the storage * returned by malloc/realloc. * */ static int align = 0; static size_t g_alignment = 0; extern int __libc_enable_secure; #ifndef HAVE_ISSETUGID static int issetugid(void) { if (__libc_enable_secure) return 1; if (getuid() != geteuid()) return 1; if (getgid() != getegid()) return 1; return 0; } #endif #define PGSHIFT 12 #undef MADV_FREE #define MADV_FREE MADV_DONTNEED #include static pthread_mutex_t gen_mutex = PTHREAD_MUTEX_INITIALIZER; #define _MALLOC_LOCK_INIT() {;} #define _MALLOC_LOCK() {pthread_mutex_lock(&gen_mutex);} #define _MALLOC_UNLOCK() {pthread_mutex_unlock(&gen_mutex);} #if defined(__sparc__) || defined(__alpha__) #define malloc_pageshift 13U #endif #if defined(__ia64__) #define malloc_pageshift 14U #endif #ifndef malloc_pageshift #define malloc_pageshift (PGSHIFT) #endif /* * No user serviceable parts behind this point. * * This structure describes a page worth of chunks. */ struct pginfo { struct pginfo *next; /* next on the free list */ void *page; /* Pointer to the page */ u_short size; /* size of this page's chunks */ u_short shift; /* How far to shift for this size chunks */ u_short free; /* How many free chunks */ u_short total; /* How many chunk */ u_long bits[1];/* Which chunks are free */ }; /* How many bits per u_long in the bitmap */ #define MALLOC_BITS (int)((NBBY * sizeof(u_long))) /* * This structure describes a number of free pages. */ struct pgfree { struct pgfree *next; /* next run of free pages */ struct pgfree *prev; /* prev run of free pages */ void *page; /* pointer to free pages */ void *pdir; /* pointer to the base page's dir */ size_t size; /* number of bytes free */ }; /* * Magic values to put in the page_directory */ #define MALLOC_NOT_MINE ((struct pginfo*) 0) #define MALLOC_FREE ((struct pginfo*) 1) #define MALLOC_FIRST ((struct pginfo*) 2) #define MALLOC_FOLLOW ((struct pginfo*) 3) #define MALLOC_MAGIC ((struct pginfo*) 4) #ifndef malloc_minsize #define malloc_minsize 16UL #endif #if !defined(malloc_pagesize) #define malloc_pagesize (1UL<>1) #endif /* A mask for the offset inside a page. */ #define malloc_pagemask ((malloc_pagesize)-1) #define pageround(foo) (((foo) + (malloc_pagemask)) & ~malloc_pagemask) #define ptr2index(foo) (((u_long)(foo) >> malloc_pageshift)+malloc_pageshift) #define index2ptr(idx) ((void*)(((idx)-malloc_pageshift)<dirnum) == pidx) *pdi = last_dir; else if (prev_dir != NULL && PD_IDX(prev_dir->dirnum) == pidx) *pdi = prev_dir; else if (last_dir != NULL && prev_dir != NULL) { if ((PD_IDX(last_dir->dirnum) > pidx) ? (PD_IDX(last_dir->dirnum) - pidx) : (pidx - PD_IDX(last_dir->dirnum)) < (PD_IDX(prev_dir->dirnum) > pidx) ? (PD_IDX(prev_dir->dirnum) - pidx) : (pidx - PD_IDX(prev_dir->dirnum))) *pdi = last_dir; else *pdi = prev_dir; if (PD_IDX((*pdi)->dirnum) > pidx) { for (spi = (*pdi)->prev; spi != NULL && PD_IDX(spi->dirnum) > pidx; spi = spi->prev) *pdi = spi; if (spi != NULL) *pdi = spi; } else for (spi = (*pdi)->next; spi != NULL && PD_IDX(spi->dirnum) <= pidx; spi = spi->next) *pdi = spi; } else { *pdi = (struct pdinfo *) ((caddr_t) page_dir + pdi_off); for (spi = *pdi; spi != NULL && PD_IDX(spi->dirnum) <= pidx; spi = spi->next) *pdi = spi; } return ((PD_IDX((*pdi)->dirnum) == pidx) ? 0 : (PD_IDX((*pdi)->dirnum) > pidx) ? 1 : -1); } #ifdef MALLOC_STATS void malloc_dump(int fd) { char buf[1024]; struct pginfo **pd; struct pgfree *pf; struct pdinfo *pi; u_long j; pd = page_dir; pi = (struct pdinfo *) ((caddr_t) pd + pdi_off); /* print out all the pages */ for (j = 0; j <= last_index;) { snprintf(buf, sizeof buf, "%08lx %5lu ", j << malloc_pageshift, j); write(fd, buf, strlen(buf)); if (pd[PI_OFF(j)] == MALLOC_NOT_MINE) { for (j++; j <= last_index && pd[PI_OFF(j)] == MALLOC_NOT_MINE;) { if (!PI_OFF(++j)) { if ((pi = pi->next) == NULL || PD_IDX(pi->dirnum) != PI_IDX(j)) break; pd = pi->base; j += pdi_mod; } } j--; snprintf(buf, sizeof buf, ".. %5lu not mine\n", j); write(fd, buf, strlen(buf)); } else if (pd[PI_OFF(j)] == MALLOC_FREE) { for (j++; j <= last_index && pd[PI_OFF(j)] == MALLOC_FREE;) { if (!PI_OFF(++j)) { if ((pi = pi->next) == NULL || PD_IDX(pi->dirnum) != PI_IDX(j)) break; pd = pi->base; j += pdi_mod; } } j--; snprintf(buf, sizeof buf, ".. %5lu free\n", j); write(fd, buf, strlen(buf)); } else if (pd[PI_OFF(j)] == MALLOC_FIRST) { for (j++; j <= last_index && pd[PI_OFF(j)] == MALLOC_FOLLOW;) { if (!PI_OFF(++j)) { if ((pi = pi->next) == NULL || PD_IDX(pi->dirnum) != PI_IDX(j)) break; pd = pi->base; j += pdi_mod; } } j--; snprintf(buf, sizeof buf, ".. %5lu in use\n", j); write(fd, buf, strlen(buf)); } else if (pd[PI_OFF(j)] < MALLOC_MAGIC) { snprintf(buf, sizeof buf, "(%p)\n", pd[PI_OFF(j)]); write(fd, buf, strlen(buf)); } else { snprintf(buf, sizeof buf, "%p %d (of %d) x %d @ %p --> %p\n", pd[PI_OFF(j)], pd[PI_OFF(j)]->free, pd[PI_OFF(j)]->total, pd[PI_OFF(j)]->size, pd[PI_OFF(j)]->page, pd[PI_OFF(j)]->next); write(fd, buf, strlen(buf)); } if (!PI_OFF(++j)) { if ((pi = pi->next) == NULL) break; pd = pi->base; j += (1 + PD_IDX(pi->dirnum) - PI_IDX(j)) * pdi_mod; } } for (pf = free_list.next; pf; pf = pf->next) { snprintf(buf, sizeof buf, "Free: @%p [%p...%p[ %ld ->%p <-%p\n", pf, pf->page, (char *)pf->page + pf->size, pf->size, pf->prev, pf->next); write(fd, buf, strlen(buf)); if (pf == pf->next) { snprintf(buf, sizeof buf, "Free_list loops\n"); write(fd, buf, strlen(buf)); break; } } /* print out various info */ snprintf(buf, sizeof buf, "Minsize\t%lu\n", malloc_minsize); write(fd, buf, strlen(buf)); snprintf(buf, sizeof buf, "Maxsize\t%lu\n", malloc_maxsize); write(fd, buf, strlen(buf)); snprintf(buf, sizeof buf, "Pagesize\t%lu\n", malloc_pagesize); write(fd, buf, strlen(buf)); snprintf(buf, sizeof buf, "Pageshift\t%u\n", malloc_pageshift); write(fd, buf, strlen(buf)); snprintf(buf, sizeof buf, "In use\t%lu\n", (u_long) malloc_used); write(fd, buf, strlen(buf)); snprintf(buf, sizeof buf, "Guarded\t%lu\n", (u_long) malloc_guarded); write(fd, buf, strlen(buf)); } #endif /* MALLOC_STATS */ extern char *__progname; static void wrterror(const char *p) { #ifndef BUILDING_FOR_TOR const char *q = " error: "; struct iovec iov[5]; iov[0].iov_base = __progname; iov[0].iov_len = strlen(__progname); iov[1].iov_base = (char*)malloc_func; iov[1].iov_len = strlen(malloc_func); iov[2].iov_base = (char*)q; iov[2].iov_len = strlen(q); iov[3].iov_base = (char*)p; iov[3].iov_len = strlen(p); iov[4].iov_base = (char*)"\n"; iov[4].iov_len = 1; writev(STDERR_FILENO, iov, 5); #else (void)p; #endif suicide = 1; #ifdef MALLOC_STATS if (malloc_stats) malloc_dump(STDERR_FILENO); #endif /* MALLOC_STATS */ malloc_active--; if (malloc_abort) abort(); } static void wrtwarning(const char *p) { #ifndef BUILDING_FOR_TOR const char *q = " warning: "; struct iovec iov[5]; #endif if (malloc_abort) wrterror(p); else if (malloc_silent) return; #ifndef BUILDING_FOR_TOR iov[0].iov_base = __progname; iov[0].iov_len = strlen(__progname); iov[1].iov_base = (char*)malloc_func; iov[1].iov_len = strlen(malloc_func); iov[2].iov_base = (char*)q; iov[2].iov_len = strlen(q); iov[3].iov_base = (char*)p; iov[3].iov_len = strlen(p); iov[4].iov_base = (char*)"\n"; iov[4].iov_len = 1; (void) writev(STDERR_FILENO, iov, 5); #else (void)p; #endif } #ifdef MALLOC_STATS static void malloc_exit(void) { char *q = "malloc() warning: Couldn't dump stats\n"; int save_errno = errno, fd; fd = open("malloc.out", O_RDWR|O_APPEND); if (fd != -1) { malloc_dump(fd); close(fd); } else write(STDERR_FILENO, q, strlen(q)); errno = save_errno; } #endif /* MALLOC_STATS */ /* * Allocate aligned mmaped chunk */ static void *MMAP_A(size_t pages, size_t alignment) { void *j, *p; size_t first_size, rest, begin, end; if (pages%malloc_pagesize != 0) pages = pages - pages%malloc_pagesize + malloc_pagesize; first_size = pages + alignment - malloc_pagesize; p = MMAP(first_size); rest = ((size_t)p) % alignment; j = (rest == 0) ? p : (void*) ((size_t)p + alignment - rest); begin = (size_t)j - (size_t)p; if (begin != 0) munmap(p, begin); end = (size_t)p + first_size - ((size_t)j + pages); if(end != 0) munmap( (void*) ((size_t)j + pages), end); return j; } /* * Allocate a number of pages from the OS */ static void * map_pages(size_t pages) { struct pdinfo *pi, *spi; struct pginfo **pd; u_long idx, pidx, lidx; caddr_t result, tail; u_long index, lindex; void *pdregion = NULL; size_t dirs, cnt; pages <<= malloc_pageshift; if (!align) result = MMAP(pages + malloc_guard); else { result = MMAP_A(pages + malloc_guard, g_alignment); } if (result == MAP_FAILED) { #ifdef MALLOC_EXTRA_SANITY wrtwarning("(ES): map_pages fails"); #endif /* MALLOC_EXTRA_SANITY */ errno = ENOMEM; return (NULL); } index = ptr2index(result); tail = result + pages + malloc_guard; lindex = ptr2index(tail) - 1; if (malloc_guard) mprotect(result + pages, malloc_guard, PROT_NONE); pidx = PI_IDX(index); lidx = PI_IDX(lindex); if (tail > malloc_brk) { malloc_brk = tail; last_index = lindex; } dirs = lidx - pidx; /* Insert directory pages, if needed. */ if (pdir_lookup(index, &pi) != 0) dirs++; if (dirs > 0) { pdregion = MMAP(malloc_pagesize * dirs); if (pdregion == MAP_FAILED) { munmap(result, tail - result); #ifdef MALLOC_EXTRA_SANITY wrtwarning("(ES): map_pages fails"); #endif errno = ENOMEM; return (NULL); } } cnt = 0; for (idx = pidx, spi = pi; idx <= lidx; idx++) { if (pi == NULL || PD_IDX(pi->dirnum) != idx) { pd = (struct pginfo **)((char *)pdregion + cnt * malloc_pagesize); cnt++; memset(pd, 0, malloc_pagesize); pi = (struct pdinfo *) ((caddr_t) pd + pdi_off); pi->base = pd; pi->prev = spi; pi->next = spi->next; pi->dirnum = idx * (malloc_pagesize / sizeof(struct pginfo *)); if (spi->next != NULL) spi->next->prev = pi; spi->next = pi; } if (idx > pidx && idx < lidx) { pi->dirnum += pdi_mod; } else if (idx == pidx) { if (pidx == lidx) { pi->dirnum += (u_long)(tail - result) >> malloc_pageshift; } else { pi->dirnum += pdi_mod - PI_OFF(index); } } else { pi->dirnum += PI_OFF(ptr2index(tail - 1)) + 1; } #ifdef MALLOC_EXTRA_SANITY if (PD_OFF(pi->dirnum) > pdi_mod || PD_IDX(pi->dirnum) > idx) { wrterror("(ES): pages directory overflow"); errno = EFAULT; return (NULL); } #endif /* MALLOC_EXTRA_SANITY */ if (idx == pidx && pi != last_dir) { prev_dir = last_dir; last_dir = pi; } spi = pi; pi = spi->next; } #ifdef MALLOC_EXTRA_SANITY if (cnt > dirs) wrtwarning("(ES): cnt > dirs"); #endif /* MALLOC_EXTRA_SANITY */ if (cnt < dirs) munmap((char *)pdregion + cnt * malloc_pagesize, (dirs - cnt) * malloc_pagesize); return (result); } /* * Initialize the world */ static void malloc_init(void) { char *p, b[64]; int i, j, save_errno = errno; _MALLOC_LOCK_INIT(); #ifdef MALLOC_EXTRA_SANITY malloc_junk = 1; #endif /* MALLOC_EXTRA_SANITY */ for (i = 0; i < 3; i++) { switch (i) { case 0: j = (int) readlink("/etc/malloc.conf", b, sizeof b - 1); if (j <= 0) continue; b[j] = '\0'; p = b; break; case 1: if (issetugid() == 0) p = getenv("MALLOC_OPTIONS"); else continue; break; case 2: p = malloc_options; break; default: p = NULL; } for (; p != NULL && *p != '\0'; p++) { switch (*p) { case '>': malloc_cache <<= 1; break; case '<': malloc_cache >>= 1; break; case 'a': malloc_abort = 0; break; case 'A': malloc_abort = 1; break; #ifdef MALLOC_STATS case 'd': malloc_stats = 0; break; case 'D': malloc_stats = 1; break; #endif /* MALLOC_STATS */ case 'f': malloc_freeprot = 0; break; case 'F': malloc_freeprot = 1; break; case 'g': malloc_guard = 0; break; case 'G': malloc_guard = malloc_pagesize; break; case 'h': malloc_hint = 0; break; case 'H': malloc_hint = 1; break; case 'j': malloc_junk = 0; break; case 'J': malloc_junk = 1; break; case 'n': malloc_silent = 0; break; case 'N': malloc_silent = 1; break; case 'p': malloc_ptrguard = 0; break; case 'P': malloc_ptrguard = 1; break; case 'r': malloc_realloc = 0; break; case 'R': malloc_realloc = 1; break; #ifdef __FreeBSD__ case 'u': malloc_utrace = 0; break; case 'U': malloc_utrace = 1; break; #endif /* __FreeBSD__ */ case 'x': malloc_xmalloc = 0; break; case 'X': malloc_xmalloc = 1; break; case 'z': malloc_zero = 0; break; case 'Z': malloc_zero = 1; break; default: j = malloc_abort; malloc_abort = 0; wrtwarning("unknown char in MALLOC_OPTIONS"); malloc_abort = j; break; } } } UTRACE(0, 0, 0); /* * We want junk in the entire allocation, and zero only in the part * the user asked for. */ if (malloc_zero) malloc_junk = 1; #ifdef MALLOC_STATS if (malloc_stats && (atexit(malloc_exit) == -1)) wrtwarning("atexit(2) failed." " Will not be able to dump malloc stats on exit"); #endif /* MALLOC_STATS */ if (malloc_pagesize != getpagesize()) { wrterror("malloc() replacement compiled with a different " "page size from what we're running with. Failing."); errno = ENOMEM; return; } /* Allocate one page for the page directory. */ page_dir = (struct pginfo **)MMAP(malloc_pagesize); if (page_dir == MAP_FAILED) { wrterror("mmap(2) failed, check limits"); errno = ENOMEM; return; } pdi_off = (malloc_pagesize - sizeof(struct pdinfo)) & ~(malloc_minsize - 1); pdi_mod = pdi_off / sizeof(struct pginfo *); last_dir = (struct pdinfo *) ((caddr_t) page_dir + pdi_off); last_dir->base = page_dir; last_dir->prev = last_dir->next = NULL; last_dir->dirnum = malloc_pageshift; /* Been here, done that. */ malloc_started++; /* Recalculate the cache size in bytes, and make sure it's nonzero. */ if (!malloc_cache) malloc_cache++; malloc_cache <<= malloc_pageshift; errno = save_errno; } /* * Allocate a number of complete pages */ static void * malloc_pages(size_t size) { void *p, *delay_free = NULL, *tp; size_t i; struct pginfo **pd; struct pdinfo *pi; u_long pidx, index; struct pgfree *pf; size = pageround(size) + malloc_guard; p = NULL; /* Look for free pages before asking for more */ if (!align) for (pf = free_list.next; pf; pf = pf->next) { #ifdef MALLOC_EXTRA_SANITY if (pf->size & malloc_pagemask) { wrterror("(ES): junk length entry on free_list"); errno = EFAULT; return (NULL); } if (!pf->size) { wrterror("(ES): zero length entry on free_list"); errno = EFAULT; return (NULL); } if (pf->page > (pf->page + pf->size)) { wrterror("(ES): sick entry on free_list"); errno = EFAULT; return (NULL); } if ((pi = pf->pdir) == NULL) { wrterror("(ES): invalid page directory on free-list"); errno = EFAULT; return (NULL); } if ((pidx = PI_IDX(ptr2index(pf->page))) != PD_IDX(pi->dirnum)) { wrterror("(ES): directory index mismatch on free-list"); errno = EFAULT; return (NULL); } pd = pi->base; if (pd[PI_OFF(ptr2index(pf->page))] != MALLOC_FREE) { wrterror("(ES): non-free first page on free-list"); errno = EFAULT; return (NULL); } pidx = PI_IDX(ptr2index((pf->page) + (pf->size)) - 1); for (pi = pf->pdir; pi != NULL && PD_IDX(pi->dirnum) < pidx; pi = pi->next) ; if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { wrterror("(ES): last page not referenced in page directory"); errno = EFAULT; return (NULL); } pd = pi->base; if (pd[PI_OFF(ptr2index((pf->page) + (pf->size)) - 1)] != MALLOC_FREE) { wrterror("(ES): non-free last page on free-list"); errno = EFAULT; return (NULL); } #endif /* MALLOC_EXTRA_SANITY */ if (pf->size < size) continue; if (pf->size == size) { p = pf->page; pi = pf->pdir; if (pf->next != NULL) pf->next->prev = pf->prev; pf->prev->next = pf->next; delay_free = pf; break; } p = pf->page; pf->page = (char *) pf->page + size; pf->size -= size; pidx = PI_IDX(ptr2index(pf->page)); for (pi = pf->pdir; pi != NULL && PD_IDX(pi->dirnum) < pidx; pi = pi->next) ; if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { wrterror("(ES): hole in directories"); errno = EFAULT; return (NULL); } tp = pf->pdir; pf->pdir = pi; pi = tp; break; } size -= malloc_guard; #ifdef MALLOC_EXTRA_SANITY if (p != NULL && pi != NULL) { pidx = PD_IDX(pi->dirnum); pd = pi->base; } if (p != NULL && pd[PI_OFF(ptr2index(p))] != MALLOC_FREE) { wrterror("(ES): allocated non-free page on free-list"); errno = EFAULT; return (NULL); } #endif /* MALLOC_EXTRA_SANITY */ if (p != NULL && (malloc_guard || malloc_freeprot)) mprotect(p, size, PROT_READ | PROT_WRITE); size >>= malloc_pageshift; /* Map new pages */ if (p == NULL) p = map_pages(size); if (p != NULL) { index = ptr2index(p); pidx = PI_IDX(index); pdir_lookup(index, &pi); #ifdef MALLOC_EXTRA_SANITY if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { wrterror("(ES): mapped pages not found in directory"); errno = EFAULT; return (NULL); } #endif /* MALLOC_EXTRA_SANITY */ if (pi != last_dir) { prev_dir = last_dir; last_dir = pi; } pd = pi->base; pd[PI_OFF(index)] = MALLOC_FIRST; for (i = 1; i < size; i++) { if (!PI_OFF(index + i)) { pidx++; pi = pi->next; #ifdef MALLOC_EXTRA_SANITY if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { wrterror("(ES): hole in mapped pages directory"); errno = EFAULT; return (NULL); } #endif /* MALLOC_EXTRA_SANITY */ pd = pi->base; } pd[PI_OFF(index + i)] = MALLOC_FOLLOW; } if (malloc_guard) { if (!PI_OFF(index + i)) { pidx++; pi = pi->next; #ifdef MALLOC_EXTRA_SANITY if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { wrterror("(ES): hole in mapped pages directory"); errno = EFAULT; return (NULL); } #endif /* MALLOC_EXTRA_SANITY */ pd = pi->base; } pd[PI_OFF(index + i)] = MALLOC_FIRST; } malloc_used += size << malloc_pageshift; malloc_guarded += malloc_guard; if (malloc_junk) memset(p, SOME_JUNK, size << malloc_pageshift); } if (delay_free) { if (px == NULL) px = delay_free; else ifree(delay_free); } return (p); } /* * Allocate a page of fragments */ static __inline__ int malloc_make_chunks(int bits) { struct pginfo *bp, **pd; struct pdinfo *pi; #ifdef MALLOC_EXTRA_SANITY u_long pidx; #endif /* MALLOC_EXTRA_SANITY */ void *pp; long i, k; size_t l; /* Allocate a new bucket */ pp = malloc_pages((size_t) malloc_pagesize); if (pp == NULL) return (0); /* Find length of admin structure */ l = sizeof *bp - sizeof(u_long); l += sizeof(u_long) * (((malloc_pagesize >> bits) + MALLOC_BITS - 1) / MALLOC_BITS); /* Don't waste more than two chunks on this */ /* * If we are to allocate a memory protected page for the malloc(0) * case (when bits=0), it must be from a different page than the * pginfo page. * --> Treat it like the big chunk alloc, get a second data page. */ if (bits != 0 && (1UL << (bits)) <= l + l) { bp = (struct pginfo *) pp; } else { bp = (struct pginfo *) imalloc(l); if (bp == NULL) { ifree(pp); return (0); } } /* memory protect the page allocated in the malloc(0) case */ if (bits == 0) { bp->size = 0; bp->shift = 1; i = malloc_minsize - 1; while (i >>= 1) bp->shift++; bp->total = bp->free = malloc_pagesize >> bp->shift; bp->page = pp; k = mprotect(pp, malloc_pagesize, PROT_NONE); if (k < 0) { ifree(pp); ifree(bp); return (0); } } else { bp->size = (1UL << bits); bp->shift = bits; bp->total = bp->free = malloc_pagesize >> bits; bp->page = pp; } /* set all valid bits in the bitmap */ k = bp->total; i = 0; /* Do a bunch at a time */ for (; (k - i) >= MALLOC_BITS; i += MALLOC_BITS) bp->bits[i / MALLOC_BITS] = ~0UL; for (; i < k; i++) bp->bits[i / MALLOC_BITS] |= 1UL << (i % MALLOC_BITS); k = (long)l; if (bp == bp->page) { /* Mark the ones we stole for ourselves */ for (i = 0; k > 0; i++) { bp->bits[i / MALLOC_BITS] &= ~(1UL << (i % MALLOC_BITS)); bp->free--; bp->total--; k -= (1 << bits); } } /* MALLOC_LOCK */ pdir_lookup(ptr2index(pp), &pi); #ifdef MALLOC_EXTRA_SANITY pidx = PI_IDX(ptr2index(pp)); if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { wrterror("(ES): mapped pages not found in directory"); errno = EFAULT; return (0); } #endif /* MALLOC_EXTRA_SANITY */ if (pi != last_dir) { prev_dir = last_dir; last_dir = pi; } pd = pi->base; pd[PI_OFF(ptr2index(pp))] = bp; bp->next = page_dir[bits]; page_dir[bits] = bp; /* MALLOC_UNLOCK */ return (1); } /* * Allocate a fragment */ static void * malloc_bytes(size_t size) { int i, j; size_t k; u_long u, *lp; struct pginfo *bp; /* Don't bother with anything less than this */ /* unless we have a malloc(0) requests */ if (size != 0 && size < malloc_minsize) size = malloc_minsize; /* Find the right bucket */ if (size == 0) j = 0; else { size_t ii; j = 1; ii = size - 1; while (ii >>= 1) j++; } /* If it's empty, make a page more of that size chunks */ if (page_dir[j] == NULL && !malloc_make_chunks(j)) return (NULL); bp = page_dir[j]; /* Find first word of bitmap which isn't empty */ for (lp = bp->bits; !*lp; lp++); /* Find that bit, and tweak it */ u = 1; k = 0; while (!(*lp & u)) { u += u; k++; } if (malloc_guard) { /* Walk to a random position. */ // i = arc4random() % bp->free; i = rand() % bp->free; while (i > 0) { u += u; k++; if (k >= MALLOC_BITS) { lp++; u = 1; k = 0; } #ifdef MALLOC_EXTRA_SANITY if (lp - bp->bits > (bp->total - 1) / MALLOC_BITS) { wrterror("chunk overflow"); errno = EFAULT; return (NULL); } #endif /* MALLOC_EXTRA_SANITY */ if (*lp & u) i--; } } *lp ^= u; /* If there are no more free, remove from free-list */ if (!--bp->free) { page_dir[j] = bp->next; bp->next = NULL; } /* Adjust to the real offset of that chunk */ k += (lp - bp->bits) * MALLOC_BITS; k <<= bp->shift; if (malloc_junk && bp->size != 0) memset((char *)bp->page + k, SOME_JUNK, (size_t)bp->size); return ((u_char *) bp->page + k); } /* * Magic so that malloc(sizeof(ptr)) is near the end of the page. */ #define PTR_GAP (malloc_pagesize - sizeof(void *)) #define PTR_SIZE (sizeof(void *)) #define PTR_ALIGNED(p) (((unsigned long)p & malloc_pagemask) == PTR_GAP) /* * Allocate a piece of memory */ static void * imalloc(size_t size) { void *result; int ptralloc = 0; if (!malloc_started) malloc_init(); if (suicide) abort(); /* does not matter if malloc_bytes fails */ if (px == NULL) px = malloc_bytes(sizeof *px); if (malloc_ptrguard && size == PTR_SIZE) { ptralloc = 1; size = malloc_pagesize; } if (size > SIZE_MAX - malloc_pagesize) { /* Check for overflow */ result = NULL; errno = ENOMEM; } else if (size <= malloc_maxsize) result = malloc_bytes(size); else result = malloc_pages(size); if (malloc_abort == 1 && result == NULL) wrterror("allocation failed"); if (malloc_zero && result != NULL) memset(result, 0, size); if (result && ptralloc) return ((char *) result + PTR_GAP); return (result); } /* * Change the size of an allocation. */ static void * irealloc(void *ptr, size_t size) { void *p; size_t osize; u_long index, i; struct pginfo **mp; struct pginfo **pd; struct pdinfo *pi; #ifdef MALLOC_EXTRA_SANITY u_long pidx; #endif /* MALLOC_EXTRA_SANITY */ if (suicide) abort(); if (!malloc_started) { wrtwarning("malloc() has never been called"); return (NULL); } if (malloc_ptrguard && PTR_ALIGNED(ptr)) { if (size <= PTR_SIZE) return (ptr); p = imalloc(size); if (p) memcpy(p, ptr, PTR_SIZE); ifree(ptr); return (p); } index = ptr2index(ptr); if (index < malloc_pageshift) { wrtwarning("junk pointer, too low to make sense"); return (NULL); } if (index > last_index) { wrtwarning("junk pointer, too high to make sense"); return (NULL); } pdir_lookup(index, &pi); #ifdef MALLOC_EXTRA_SANITY pidx = PI_IDX(index); if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { wrterror("(ES): mapped pages not found in directory"); errno = EFAULT; return (NULL); } #endif /* MALLOC_EXTRA_SANITY */ if (pi != last_dir) { prev_dir = last_dir; last_dir = pi; } pd = pi->base; mp = &pd[PI_OFF(index)]; if (*mp == MALLOC_FIRST) { /* Page allocation */ /* Check the pointer */ if ((u_long) ptr & malloc_pagemask) { wrtwarning("modified (page-) pointer"); return (NULL); } /* Find the size in bytes */ i = index; if (!PI_OFF(++i)) { pi = pi->next; if (pi != NULL && PD_IDX(pi->dirnum) != PI_IDX(i)) pi = NULL; if (pi != NULL) pd = pi->base; } for (osize = malloc_pagesize; pi != NULL && pd[PI_OFF(i)] == MALLOC_FOLLOW;) { osize += malloc_pagesize; if (!PI_OFF(++i)) { pi = pi->next; if (pi != NULL && PD_IDX(pi->dirnum) != PI_IDX(i)) pi = NULL; if (pi != NULL) pd = pi->base; } } if (!malloc_realloc && size <= osize && size > osize - malloc_pagesize) { if (malloc_junk) memset((char *)ptr + size, SOME_JUNK, osize - size); return (ptr); /* ..don't do anything else. */ } } else if (*mp >= MALLOC_MAGIC) { /* Chunk allocation */ /* Check the pointer for sane values */ if ((u_long) ptr & ((1UL << ((*mp)->shift)) - 1)) { wrtwarning("modified (chunk-) pointer"); return (NULL); } /* Find the chunk index in the page */ i = ((u_long) ptr & malloc_pagemask) >> (*mp)->shift; /* Verify that it isn't a free chunk already */ if ((*mp)->bits[i / MALLOC_BITS] & (1UL << (i % MALLOC_BITS))) { wrtwarning("chunk is already free"); return (NULL); } osize = (*mp)->size; if (!malloc_realloc && size <= osize && (size > osize / 2 || osize == malloc_minsize)) { if (malloc_junk) memset((char *) ptr + size, SOME_JUNK, osize - size); return (ptr); /* ..don't do anything else. */ } } else { wrtwarning("irealloc: pointer to wrong page"); return (NULL); } p = imalloc(size); if (p != NULL) { /* copy the lesser of the two sizes, and free the old one */ /* Don't move from/to 0 sized region !!! */ if (osize != 0 && size != 0) { if (osize < size) memcpy(p, ptr, osize); else memcpy(p, ptr, size); } ifree(ptr); } return (p); } /* * Free a sequence of pages */ static __inline__ void free_pages(void *ptr, u_long index, struct pginfo * info) { u_long i, pidx, lidx; size_t l, cachesize = 0; struct pginfo **pd; struct pdinfo *pi, *spi; struct pgfree *pf, *pt = NULL; caddr_t tail; if (info == MALLOC_FREE) { wrtwarning("page is already free"); return; } if (info != MALLOC_FIRST) { wrtwarning("free_pages: pointer to wrong page"); return; } if ((u_long) ptr & malloc_pagemask) { wrtwarning("modified (page-) pointer"); return; } /* Count how many pages and mark them free at the same time */ pidx = PI_IDX(index); pdir_lookup(index, &pi); #ifdef MALLOC_EXTRA_SANITY if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { wrterror("(ES): mapped pages not found in directory"); errno = EFAULT; return; } #endif /* MALLOC_EXTRA_SANITY */ spi = pi; /* Save page index for start of region. */ pd = pi->base; pd[PI_OFF(index)] = MALLOC_FREE; i = 1; if (!PI_OFF(index + i)) { pi = pi->next; if (pi == NULL || PD_IDX(pi->dirnum) != PI_IDX(index + i)) pi = NULL; else pd = pi->base; } while (pi != NULL && pd[PI_OFF(index + i)] == MALLOC_FOLLOW) { pd[PI_OFF(index + i)] = MALLOC_FREE; i++; if (!PI_OFF(index + i)) { if ((pi = pi->next) == NULL || PD_IDX(pi->dirnum) != PI_IDX(index + i)) pi = NULL; else pd = pi->base; } } l = i << malloc_pageshift; if (malloc_junk) memset(ptr, SOME_JUNK, l); malloc_used -= l; malloc_guarded -= malloc_guard; if (malloc_guard) { #ifdef MALLOC_EXTRA_SANITY if (pi == NULL || PD_IDX(pi->dirnum) != PI_IDX(index + i)) { wrterror("(ES): hole in mapped pages directory"); errno = EFAULT; return; } #endif /* MALLOC_EXTRA_SANITY */ pd[PI_OFF(index + i)] = MALLOC_FREE; l += malloc_guard; } tail = (caddr_t)ptr + l; if (malloc_hint) madvise(ptr, l, MADV_FREE); if (malloc_freeprot) mprotect(ptr, l, PROT_NONE); /* Add to free-list. */ if (px == NULL && (px = malloc_bytes(sizeof *px)) == NULL) goto not_return; px->page = ptr; px->pdir = spi; px->size = l; if (free_list.next == NULL) { /* Nothing on free list, put this at head. */ px->next = NULL; px->prev = &free_list; free_list.next = px; pf = px; px = NULL; } else { /* * Find the right spot, leave pf pointing to the modified * entry. */ /* Race ahead here, while calculating cache size. */ for (pf = free_list.next; (caddr_t)ptr > ((caddr_t)pf->page + pf->size) && pf->next != NULL; pf = pf->next) cachesize += pf->size; /* Finish cache size calculation. */ pt = pf; while (pt) { cachesize += pt->size; pt = pt->next; } if ((caddr_t)pf->page > tail) { /* Insert before entry */ px->next = pf; px->prev = pf->prev; pf->prev = px; px->prev->next = px; pf = px; px = NULL; } else if (((caddr_t)pf->page + pf->size) == ptr) { /* Append to the previous entry. */ cachesize -= pf->size; pf->size += l; if (pf->next != NULL && pf->next->page == ((caddr_t)pf->page + pf->size)) { /* And collapse the next too. */ pt = pf->next; pf->size += pt->size; pf->next = pt->next; if (pf->next != NULL) pf->next->prev = pf; } } else if (pf->page == tail) { /* Prepend to entry. */ cachesize -= pf->size; pf->size += l; pf->page = ptr; pf->pdir = spi; } else if (pf->next == NULL) { /* Append at tail of chain. */ px->next = NULL; px->prev = pf; pf->next = px; pf = px; px = NULL; } else { wrterror("freelist is destroyed"); errno = EFAULT; return; } } if (pf->pdir != last_dir) { prev_dir = last_dir; last_dir = pf->pdir; } /* Return something to OS ? */ if (pf->size > (malloc_cache - cachesize)) { /* * Keep the cache intact. Notice that the '>' above guarantees that * the pf will always have at least one page afterwards. */ if (munmap((char *) pf->page + (malloc_cache - cachesize), pf->size - (malloc_cache - cachesize)) != 0) goto not_return; tail = (caddr_t)pf->page + pf->size; lidx = ptr2index(tail) - 1; pf->size = malloc_cache - cachesize; index = ptr2index((caddr_t)pf->page + pf->size); pidx = PI_IDX(index); if (prev_dir != NULL && PD_IDX(prev_dir->dirnum) >= pidx) prev_dir = NULL; /* Will be wiped out below ! */ for (pi = pf->pdir; pi != NULL && PD_IDX(pi->dirnum) < pidx; pi = pi->next) ; spi = pi; if (pi != NULL && PD_IDX(pi->dirnum) == pidx) { pd = pi->base; for (i = index; i <= lidx;) { if (pd[PI_OFF(i)] != MALLOC_NOT_MINE) { pd[PI_OFF(i)] = MALLOC_NOT_MINE; #ifdef MALLOC_EXTRA_SANITY if (!PD_OFF(pi->dirnum)) { wrterror("(ES): pages directory underflow"); errno = EFAULT; return; } #endif /* MALLOC_EXTRA_SANITY */ pi->dirnum--; } #ifdef MALLOC_EXTRA_SANITY else wrtwarning("(ES): page already unmapped"); #endif /* MALLOC_EXTRA_SANITY */ i++; if (!PI_OFF(i)) { /* * If no page in that dir, free * directory page. */ if (!PD_OFF(pi->dirnum)) { /* Remove from list. */ if (spi == pi) spi = pi->prev; if (pi->prev != NULL) pi->prev->next = pi->next; if (pi->next != NULL) pi->next->prev = pi->prev; pi = pi->next; munmap(pd, malloc_pagesize); } else pi = pi->next; if (pi == NULL || PD_IDX(pi->dirnum) != PI_IDX(i)) break; pd = pi->base; } } if (pi && !PD_OFF(pi->dirnum)) { /* Resulting page dir is now empty. */ /* Remove from list. */ if (spi == pi) /* Update spi only if first. */ spi = pi->prev; if (pi->prev != NULL) pi->prev->next = pi->next; if (pi->next != NULL) pi->next->prev = pi->prev; pi = pi->next; munmap(pd, malloc_pagesize); } } if (pi == NULL && malloc_brk == tail) { /* Resize down the malloc upper boundary. */ last_index = index - 1; malloc_brk = index2ptr(index); } /* XXX: We could realloc/shrink the pagedir here I guess. */ if (pf->size == 0) { /* Remove from free-list as well. */ if (px) ifree(px); if ((px = pf->prev) != &free_list) { if (pi == NULL && last_index == (index - 1)) { if (spi == NULL) { malloc_brk = NULL; i = 11; } else { pd = spi->base; if (PD_IDX(spi->dirnum) < pidx) index = ((PD_IDX(spi->dirnum) + 1) * pdi_mod) - 1; for (pi = spi, i = index; pd[PI_OFF(i)] == MALLOC_NOT_MINE; i--) #ifdef MALLOC_EXTRA_SANITY if (!PI_OFF(i)) { pi = pi->prev; if (pi == NULL || i == 0) break; pd = pi->base; i = (PD_IDX(pi->dirnum) + 1) * pdi_mod; } #else /* !MALLOC_EXTRA_SANITY */ { } #endif /* MALLOC_EXTRA_SANITY */ malloc_brk = index2ptr(i + 1); } last_index = i; } if ((px->next = pf->next) != NULL) px->next->prev = px; } else { if ((free_list.next = pf->next) != NULL) free_list.next->prev = &free_list; } px = pf; last_dir = prev_dir; prev_dir = NULL; } } not_return: if (pt != NULL) ifree(pt); } /* * Free a chunk, and possibly the page it's on, if the page becomes empty. */ /* ARGSUSED */ static __inline__ void free_bytes(void *ptr, u_long index, struct pginfo * info) { struct pginfo **mp, **pd; struct pdinfo *pi; #ifdef MALLOC_EXTRA_SANITY u_long pidx; #endif /* MALLOC_EXTRA_SANITY */ void *vp; long i; (void) index; /* Find the chunk number on the page */ i = ((u_long) ptr & malloc_pagemask) >> info->shift; if ((u_long) ptr & ((1UL << (info->shift)) - 1)) { wrtwarning("modified (chunk-) pointer"); return; } if (info->bits[i / MALLOC_BITS] & (1UL << (i % MALLOC_BITS))) { wrtwarning("chunk is already free"); return; } if (malloc_junk && info->size != 0) memset(ptr, SOME_JUNK, (size_t)info->size); info->bits[i / MALLOC_BITS] |= 1UL << (i % MALLOC_BITS); info->free++; if (info->size != 0) mp = page_dir + info->shift; else mp = page_dir; if (info->free == 1) { /* Page became non-full */ /* Insert in address order */ while (*mp != NULL && (*mp)->next != NULL && (*mp)->next->page < info->page) mp = &(*mp)->next; info->next = *mp; *mp = info; return; } if (info->free != info->total) return; /* Find & remove this page in the queue */ while (*mp != info) { mp = &((*mp)->next); #ifdef MALLOC_EXTRA_SANITY if (!*mp) { wrterror("(ES): Not on queue"); errno = EFAULT; return; } #endif /* MALLOC_EXTRA_SANITY */ } *mp = info->next; /* Free the page & the info structure if need be */ pdir_lookup(ptr2index(info->page), &pi); #ifdef MALLOC_EXTRA_SANITY pidx = PI_IDX(ptr2index(info->page)); if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { wrterror("(ES): mapped pages not found in directory"); errno = EFAULT; return; } #endif /* MALLOC_EXTRA_SANITY */ if (pi != last_dir) { prev_dir = last_dir; last_dir = pi; } pd = pi->base; pd[PI_OFF(ptr2index(info->page))] = MALLOC_FIRST; /* If the page was mprotected, unprotect it before releasing it */ if (info->size == 0) mprotect(info->page, malloc_pagesize, PROT_READ | PROT_WRITE); vp = info->page; /* Order is important ! */ if (vp != (void *) info) ifree(info); ifree(vp); } static void ifree(void *ptr) { struct pginfo *info, **pd; u_long index; #ifdef MALLOC_EXTRA_SANITY u_long pidx; #endif /* MALLOC_EXTRA_SANITY */ struct pdinfo *pi; if (!malloc_started) { wrtwarning("malloc() has never been called"); return; } /* If we're already sinking, don't make matters any worse. */ if (suicide) return; if (malloc_ptrguard && PTR_ALIGNED(ptr)) ptr = (char *) ptr - PTR_GAP; index = ptr2index(ptr); if (index < malloc_pageshift) { warnx("(%p)", ptr); wrtwarning("ifree: junk pointer, too low to make sense"); return; } if (index > last_index) { warnx("(%p)", ptr); wrtwarning("ifree: junk pointer, too high to make sense"); return; } pdir_lookup(index, &pi); #ifdef MALLOC_EXTRA_SANITY pidx = PI_IDX(index); if (pi == NULL || PD_IDX(pi->dirnum) != pidx) { wrterror("(ES): mapped pages not found in directory"); errno = EFAULT; return; } #endif /* MALLOC_EXTRA_SANITY */ if (pi != last_dir) { prev_dir = last_dir; last_dir = pi; } pd = pi->base; info = pd[PI_OFF(index)]; if (info < MALLOC_MAGIC) free_pages(ptr, index, info); else free_bytes(ptr, index, info); /* does not matter if malloc_bytes fails */ if (px == NULL) px = malloc_bytes(sizeof *px); return; } /* * Common function for handling recursion. Only * print the error message once, to avoid making the problem * potentially worse. */ static void malloc_recurse(void) { static int noprint; if (noprint == 0) { noprint = 1; wrtwarning("recursive call"); } malloc_active--; _MALLOC_UNLOCK(); errno = EDEADLK; } /* * These are the public exported interface routines. */ void * malloc(size_t size) { void *r; if (!align) _MALLOC_LOCK(); malloc_func = " in malloc():"; if (malloc_active++) { malloc_recurse(); return (NULL); } r = imalloc(size); UTRACE(0, size, r); malloc_active--; if (!align) _MALLOC_UNLOCK(); if (malloc_xmalloc && r == NULL) { wrterror("out of memory"); errno = ENOMEM; } return (r); } void free(void *ptr) { /* This is legal. XXX quick path */ if (ptr == NULL) return; _MALLOC_LOCK(); malloc_func = " in free():"; if (malloc_active++) { malloc_recurse(); return; } ifree(ptr); UTRACE(ptr, 0, 0); malloc_active--; _MALLOC_UNLOCK(); return; } void * realloc(void *ptr, size_t size) { void *r; _MALLOC_LOCK(); malloc_func = " in realloc():"; if (malloc_active++) { malloc_recurse(); return (NULL); } if (ptr == NULL) r = imalloc(size); else r = irealloc(ptr, size); UTRACE(ptr, size, r); malloc_active--; _MALLOC_UNLOCK(); if (malloc_xmalloc && r == NULL) { wrterror("out of memory"); errno = ENOMEM; } return (r); } void * calloc(size_t num, size_t size) { void *p; if (num && SIZE_MAX / num < size) { fprintf(stderr,"OOOOPS"); errno = ENOMEM; return NULL; } size *= num; p = malloc(size); if (p) memset(p, 0, size); return(p); } #ifndef BUILDING_FOR_TOR static int ispowerof2 (size_t a) { size_t b; for (b = 1ULL << (sizeof(size_t)*NBBY - 1); b > 1; b >>= 1) if (b == a) return 1; return 0; } #endif #ifndef BUILDING_FOR_TOR int posix_memalign(void **memptr, size_t alignment, size_t size) { void *r; size_t max; if ((alignment < PTR_SIZE) || (alignment%PTR_SIZE != 0)) return EINVAL; if (!ispowerof2(alignment)) return EINVAL; if (alignment < malloc_minsize) alignment = malloc_minsize; max = alignment > size ? alignment : size; if (alignment <= malloc_pagesize) r = malloc(max); else { _MALLOC_LOCK(); align = 1; g_alignment = alignment; r = malloc(size); align=0; _MALLOC_UNLOCK(); } *memptr = r; if (!r) return ENOMEM; return 0; } void *memalign(size_t boundary, size_t size) { void *r; posix_memalign(&r, boundary, size); return r; } void *valloc(size_t size) { void *r; posix_memalign(&r, malloc_pagesize, size); return r; } #endif size_t malloc_good_size(size_t size) { if (size == 0) { return 1; } else if (size <= malloc_maxsize) { int j; size_t ii; /* round up to the nearest power of 2, with same approach * as malloc_bytes() uses. */ j = 1; ii = size - 1; while (ii >>= 1) j++; return ((size_t)1) << j; } else { return pageround(size); } } tor-0.2.7.6/src/ext/curve25519_donna/0000755000175000017500000000000012632347251013776 500000000000000tor-0.2.7.6/src/ext/curve25519_donna/curve25519-donna-c64.c0000644000175000017500000003237212621363245017311 00000000000000/* Copyright 2008, Google Inc. * All rights reserved. * * Code released into the public domain. * * curve25519-donna: Curve25519 elliptic curve, public key function * * http://code.google.com/p/curve25519-donna/ * * Adam Langley * * Derived from public domain C code by Daniel J. Bernstein * * More information about curve25519 can be found here * http://cr.yp.to/ecdh.html * * djb's sample implementation of curve25519 is written in a special assembly * language called qhasm and uses the floating point registers. * * This is, almost, a clean room reimplementation from the curve25519 paper. It * uses many of the tricks described therein. Only the crecip function is taken * from the sample implementation. */ #include "orconfig.h" #include #include "torint.h" typedef uint8_t u8; typedef uint64_t limb; typedef limb felem[5]; // This is a special gcc mode for 128-bit integers. It's implemented on 64-bit // platforms only as far as I know. typedef unsigned uint128_t __attribute__((mode(TI))); #undef force_inline #define force_inline __attribute__((always_inline)) /* Sum two numbers: output += in */ static inline void force_inline fsum(limb *output, const limb *in) { output[0] += in[0]; output[1] += in[1]; output[2] += in[2]; output[3] += in[3]; output[4] += in[4]; } /* Find the difference of two numbers: output = in - output * (note the order of the arguments!) * * Assumes that out[i] < 2**52 * On return, out[i] < 2**55 */ static inline void force_inline fdifference_backwards(felem out, const felem in) { /* 152 is 19 << 3 */ static const limb two54m152 = (((limb)1) << 54) - 152; static const limb two54m8 = (((limb)1) << 54) - 8; out[0] = in[0] + two54m152 - out[0]; out[1] = in[1] + two54m8 - out[1]; out[2] = in[2] + two54m8 - out[2]; out[3] = in[3] + two54m8 - out[3]; out[4] = in[4] + two54m8 - out[4]; } /* Multiply a number by a scalar: output = in * scalar */ static inline void force_inline fscalar_product(felem output, const felem in, const limb scalar) { uint128_t a; a = ((uint128_t) in[0]) * scalar; output[0] = ((limb)a) & 0x7ffffffffffff; a = ((uint128_t) in[1]) * scalar + ((limb) (a >> 51)); output[1] = ((limb)a) & 0x7ffffffffffff; a = ((uint128_t) in[2]) * scalar + ((limb) (a >> 51)); output[2] = ((limb)a) & 0x7ffffffffffff; a = ((uint128_t) in[3]) * scalar + ((limb) (a >> 51)); output[3] = ((limb)a) & 0x7ffffffffffff; a = ((uint128_t) in[4]) * scalar + ((limb) (a >> 51)); output[4] = ((limb)a) & 0x7ffffffffffff; output[0] += (a >> 51) * 19; } /* Multiply two numbers: output = in2 * in * * output must be distinct to both inputs. The inputs are reduced coefficient * form, the output is not. * * Assumes that in[i] < 2**55 and likewise for in2. * On return, output[i] < 2**52 */ static inline void force_inline fmul(felem output, const felem in2, const felem in) { uint128_t t[5]; limb r0,r1,r2,r3,r4,s0,s1,s2,s3,s4,c; r0 = in[0]; r1 = in[1]; r2 = in[2]; r3 = in[3]; r4 = in[4]; s0 = in2[0]; s1 = in2[1]; s2 = in2[2]; s3 = in2[3]; s4 = in2[4]; t[0] = ((uint128_t) r0) * s0; t[1] = ((uint128_t) r0) * s1 + ((uint128_t) r1) * s0; t[2] = ((uint128_t) r0) * s2 + ((uint128_t) r2) * s0 + ((uint128_t) r1) * s1; t[3] = ((uint128_t) r0) * s3 + ((uint128_t) r3) * s0 + ((uint128_t) r1) * s2 + ((uint128_t) r2) * s1; t[4] = ((uint128_t) r0) * s4 + ((uint128_t) r4) * s0 + ((uint128_t) r3) * s1 + ((uint128_t) r1) * s3 + ((uint128_t) r2) * s2; r4 *= 19; r1 *= 19; r2 *= 19; r3 *= 19; t[0] += ((uint128_t) r4) * s1 + ((uint128_t) r1) * s4 + ((uint128_t) r2) * s3 + ((uint128_t) r3) * s2; t[1] += ((uint128_t) r4) * s2 + ((uint128_t) r2) * s4 + ((uint128_t) r3) * s3; t[2] += ((uint128_t) r4) * s3 + ((uint128_t) r3) * s4; t[3] += ((uint128_t) r4) * s4; r0 = (limb)t[0] & 0x7ffffffffffff; c = (limb)(t[0] >> 51); t[1] += c; r1 = (limb)t[1] & 0x7ffffffffffff; c = (limb)(t[1] >> 51); t[2] += c; r2 = (limb)t[2] & 0x7ffffffffffff; c = (limb)(t[2] >> 51); t[3] += c; r3 = (limb)t[3] & 0x7ffffffffffff; c = (limb)(t[3] >> 51); t[4] += c; r4 = (limb)t[4] & 0x7ffffffffffff; c = (limb)(t[4] >> 51); r0 += c * 19; c = r0 >> 51; r0 = r0 & 0x7ffffffffffff; r1 += c; c = r1 >> 51; r1 = r1 & 0x7ffffffffffff; r2 += c; output[0] = r0; output[1] = r1; output[2] = r2; output[3] = r3; output[4] = r4; } static inline void force_inline fsquare_times(felem output, const felem in, limb count) { uint128_t t[5]; limb r0,r1,r2,r3,r4,c; limb d0,d1,d2,d4,d419; r0 = in[0]; r1 = in[1]; r2 = in[2]; r3 = in[3]; r4 = in[4]; do { d0 = r0 * 2; d1 = r1 * 2; d2 = r2 * 2 * 19; d419 = r4 * 19; d4 = d419 * 2; t[0] = ((uint128_t) r0) * r0 + ((uint128_t) d4) * r1 + (((uint128_t) d2) * (r3 )); t[1] = ((uint128_t) d0) * r1 + ((uint128_t) d4) * r2 + (((uint128_t) r3) * (r3 * 19)); t[2] = ((uint128_t) d0) * r2 + ((uint128_t) r1) * r1 + (((uint128_t) d4) * (r3 )); t[3] = ((uint128_t) d0) * r3 + ((uint128_t) d1) * r2 + (((uint128_t) r4) * (d419 )); t[4] = ((uint128_t) d0) * r4 + ((uint128_t) d1) * r3 + (((uint128_t) r2) * (r2 )); r0 = (limb)t[0] & 0x7ffffffffffff; c = (limb)(t[0] >> 51); t[1] += c; r1 = (limb)t[1] & 0x7ffffffffffff; c = (limb)(t[1] >> 51); t[2] += c; r2 = (limb)t[2] & 0x7ffffffffffff; c = (limb)(t[2] >> 51); t[3] += c; r3 = (limb)t[3] & 0x7ffffffffffff; c = (limb)(t[3] >> 51); t[4] += c; r4 = (limb)t[4] & 0x7ffffffffffff; c = (limb)(t[4] >> 51); r0 += c * 19; c = r0 >> 51; r0 = r0 & 0x7ffffffffffff; r1 += c; c = r1 >> 51; r1 = r1 & 0x7ffffffffffff; r2 += c; } while(--count); output[0] = r0; output[1] = r1; output[2] = r2; output[3] = r3; output[4] = r4; } /* Load a little-endian 64-bit number */ static limb load_limb(const u8 *in) { return ((limb)in[0]) | (((limb)in[1]) << 8) | (((limb)in[2]) << 16) | (((limb)in[3]) << 24) | (((limb)in[4]) << 32) | (((limb)in[5]) << 40) | (((limb)in[6]) << 48) | (((limb)in[7]) << 56); } static void store_limb(u8 *out, limb in) { out[0] = in & 0xff; out[1] = (in >> 8) & 0xff; out[2] = (in >> 16) & 0xff; out[3] = (in >> 24) & 0xff; out[4] = (in >> 32) & 0xff; out[5] = (in >> 40) & 0xff; out[6] = (in >> 48) & 0xff; out[7] = (in >> 56) & 0xff; } /* Take a little-endian, 32-byte number and expand it into polynomial form */ static void fexpand(limb *output, const u8 *in) { output[0] = load_limb(in) & 0x7ffffffffffff; output[1] = (load_limb(in+6) >> 3) & 0x7ffffffffffff; output[2] = (load_limb(in+12) >> 6) & 0x7ffffffffffff; output[3] = (load_limb(in+19) >> 1) & 0x7ffffffffffff; output[4] = (load_limb(in+24) >> 12) & 0x7ffffffffffff; } /* Take a fully reduced polynomial form number and contract it into a * little-endian, 32-byte array */ static void fcontract(u8 *output, const felem input) { uint128_t t[5]; t[0] = input[0]; t[1] = input[1]; t[2] = input[2]; t[3] = input[3]; t[4] = input[4]; t[1] += t[0] >> 51; t[0] &= 0x7ffffffffffff; t[2] += t[1] >> 51; t[1] &= 0x7ffffffffffff; t[3] += t[2] >> 51; t[2] &= 0x7ffffffffffff; t[4] += t[3] >> 51; t[3] &= 0x7ffffffffffff; t[0] += 19 * (t[4] >> 51); t[4] &= 0x7ffffffffffff; t[1] += t[0] >> 51; t[0] &= 0x7ffffffffffff; t[2] += t[1] >> 51; t[1] &= 0x7ffffffffffff; t[3] += t[2] >> 51; t[2] &= 0x7ffffffffffff; t[4] += t[3] >> 51; t[3] &= 0x7ffffffffffff; t[0] += 19 * (t[4] >> 51); t[4] &= 0x7ffffffffffff; /* now t is between 0 and 2^255-1, properly carried. */ /* case 1: between 0 and 2^255-20. case 2: between 2^255-19 and 2^255-1. */ t[0] += 19; t[1] += t[0] >> 51; t[0] &= 0x7ffffffffffff; t[2] += t[1] >> 51; t[1] &= 0x7ffffffffffff; t[3] += t[2] >> 51; t[2] &= 0x7ffffffffffff; t[4] += t[3] >> 51; t[3] &= 0x7ffffffffffff; t[0] += 19 * (t[4] >> 51); t[4] &= 0x7ffffffffffff; /* now between 19 and 2^255-1 in both cases, and offset by 19. */ t[0] += 0x8000000000000 - 19; t[1] += 0x8000000000000 - 1; t[2] += 0x8000000000000 - 1; t[3] += 0x8000000000000 - 1; t[4] += 0x8000000000000 - 1; /* now between 2^255 and 2^256-20, and offset by 2^255. */ t[1] += t[0] >> 51; t[0] &= 0x7ffffffffffff; t[2] += t[1] >> 51; t[1] &= 0x7ffffffffffff; t[3] += t[2] >> 51; t[2] &= 0x7ffffffffffff; t[4] += t[3] >> 51; t[3] &= 0x7ffffffffffff; t[4] &= 0x7ffffffffffff; store_limb(output, t[0] | (t[1] << 51)); store_limb(output+8, (t[1] >> 13) | (t[2] << 38)); store_limb(output+16, (t[2] >> 26) | (t[3] << 25)); store_limb(output+24, (t[3] >> 39) | (t[4] << 12)); } /* Input: Q, Q', Q-Q' * Output: 2Q, Q+Q' * * x2 z3: long form * x3 z3: long form * x z: short form, destroyed * xprime zprime: short form, destroyed * qmqp: short form, preserved */ static void fmonty(limb *x2, limb *z2, /* output 2Q */ limb *x3, limb *z3, /* output Q + Q' */ limb *x, limb *z, /* input Q */ limb *xprime, limb *zprime, /* input Q' */ const limb *qmqp /* input Q - Q' */) { limb origx[5], origxprime[5], zzz[5], xx[5], zz[5], xxprime[5], zzprime[5], zzzprime[5]; memcpy(origx, x, 5 * sizeof(limb)); fsum(x, z); fdifference_backwards(z, origx); // does x - z memcpy(origxprime, xprime, sizeof(limb) * 5); fsum(xprime, zprime); fdifference_backwards(zprime, origxprime); fmul(xxprime, xprime, z); fmul(zzprime, x, zprime); memcpy(origxprime, xxprime, sizeof(limb) * 5); fsum(xxprime, zzprime); fdifference_backwards(zzprime, origxprime); fsquare_times(x3, xxprime, 1); fsquare_times(zzzprime, zzprime, 1); fmul(z3, zzzprime, qmqp); fsquare_times(xx, x, 1); fsquare_times(zz, z, 1); fmul(x2, xx, zz); fdifference_backwards(zz, xx); // does zz = xx - zz fscalar_product(zzz, zz, 121665); fsum(zzz, xx); fmul(z2, zz, zzz); } // ----------------------------------------------------------------------------- // Maybe swap the contents of two limb arrays (@a and @b), each @len elements // long. Perform the swap iff @swap is non-zero. // // This function performs the swap without leaking any side-channel // information. // ----------------------------------------------------------------------------- static void swap_conditional(limb a[5], limb b[5], limb iswap) { unsigned i; const limb swap = -iswap; for (i = 0; i < 5; ++i) { const limb x = swap & (a[i] ^ b[i]); a[i] ^= x; b[i] ^= x; } } /* Calculates nQ where Q is the x-coordinate of a point on the curve * * resultx/resultz: the x coordinate of the resulting curve point (short form) * n: a little endian, 32-byte number * q: a point of the curve (short form) */ static void cmult(limb *resultx, limb *resultz, const u8 *n, const limb *q) { limb a[5] = {0}, b[5] = {1}, c[5] = {1}, d[5] = {0}; limb *nqpqx = a, *nqpqz = b, *nqx = c, *nqz = d, *t; limb e[5] = {0}, f[5] = {1}, g[5] = {0}, h[5] = {1}; limb *nqpqx2 = e, *nqpqz2 = f, *nqx2 = g, *nqz2 = h; unsigned i, j; memcpy(nqpqx, q, sizeof(limb) * 5); for (i = 0; i < 32; ++i) { u8 byte = n[31 - i]; for (j = 0; j < 8; ++j) { const limb bit = byte >> 7; swap_conditional(nqx, nqpqx, bit); swap_conditional(nqz, nqpqz, bit); fmonty(nqx2, nqz2, nqpqx2, nqpqz2, nqx, nqz, nqpqx, nqpqz, q); swap_conditional(nqx2, nqpqx2, bit); swap_conditional(nqz2, nqpqz2, bit); t = nqx; nqx = nqx2; nqx2 = t; t = nqz; nqz = nqz2; nqz2 = t; t = nqpqx; nqpqx = nqpqx2; nqpqx2 = t; t = nqpqz; nqpqz = nqpqz2; nqpqz2 = t; byte <<= 1; } } memcpy(resultx, nqx, sizeof(limb) * 5); memcpy(resultz, nqz, sizeof(limb) * 5); } // ----------------------------------------------------------------------------- // Shamelessly copied from djb's code, tightened a little // ----------------------------------------------------------------------------- static void crecip(felem out, const felem z) { felem a,t0,b,c; /* 2 */ fsquare_times(a, z, 1); // a = 2 /* 8 */ fsquare_times(t0, a, 2); /* 9 */ fmul(b, t0, z); // b = 9 /* 11 */ fmul(a, b, a); // a = 11 /* 22 */ fsquare_times(t0, a, 1); /* 2^5 - 2^0 = 31 */ fmul(b, t0, b); /* 2^10 - 2^5 */ fsquare_times(t0, b, 5); /* 2^10 - 2^0 */ fmul(b, t0, b); /* 2^20 - 2^10 */ fsquare_times(t0, b, 10); /* 2^20 - 2^0 */ fmul(c, t0, b); /* 2^40 - 2^20 */ fsquare_times(t0, c, 20); /* 2^40 - 2^0 */ fmul(t0, t0, c); /* 2^50 - 2^10 */ fsquare_times(t0, t0, 10); /* 2^50 - 2^0 */ fmul(b, t0, b); /* 2^100 - 2^50 */ fsquare_times(t0, b, 50); /* 2^100 - 2^0 */ fmul(c, t0, b); /* 2^200 - 2^100 */ fsquare_times(t0, c, 100); /* 2^200 - 2^0 */ fmul(t0, t0, c); /* 2^250 - 2^50 */ fsquare_times(t0, t0, 50); /* 2^250 - 2^0 */ fmul(t0, t0, b); /* 2^255 - 2^5 */ fsquare_times(t0, t0, 5); /* 2^255 - 21 */ fmul(out, t0, a); } int curve25519_donna(u8 *, const u8 *, const u8 *); int curve25519_donna(u8 *mypublic, const u8 *secret, const u8 *basepoint) { limb bp[5], x[5], z[5], zmone[5]; uint8_t e[32]; int i; for (i = 0;i < 32;++i) e[i] = secret[i]; e[0] &= 248; e[31] &= 127; e[31] |= 64; fexpand(bp, basepoint); cmult(x, z, e, bp); crecip(zmone, z); fmul(z, x, zmone); fcontract(mypublic, z); return 0; } tor-0.2.7.6/src/ext/curve25519_donna/curve25519-donna.c0000644000175000017500000007637412621363245016731 00000000000000/* Copyright 2008, Google Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following disclaimer * in the documentation and/or other materials provided with the * distribution. * * Neither the name of Google Inc. nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * curve25519-donna: Curve25519 elliptic curve, public key function * * http://code.google.com/p/curve25519-donna/ * * Adam Langley * * Derived from public domain C code by Daniel J. Bernstein * * More information about curve25519 can be found here * http://cr.yp.to/ecdh.html * * djb's sample implementation of curve25519 is written in a special assembly * language called qhasm and uses the floating point registers. * * This is, almost, a clean room reimplementation from the curve25519 paper. It * uses many of the tricks described therein. Only the crecip function is taken * from the sample implementation. */ #include "orconfig.h" #include #include "torint.h" typedef uint8_t u8; typedef int32_t s32; typedef int64_t limb; /* Field element representation: * * Field elements are written as an array of signed, 64-bit limbs, least * significant first. The value of the field element is: * x[0] + 2^26·x[1] + x^51·x[2] + 2^102·x[3] + ... * * i.e. the limbs are 26, 25, 26, 25, ... bits wide. */ /* Sum two numbers: output += in */ static void fsum(limb *output, const limb *in) { unsigned i; for (i = 0; i < 10; i += 2) { output[0+i] = output[0+i] + in[0+i]; output[1+i] = output[1+i] + in[1+i]; } } /* Find the difference of two numbers: output = in - output * (note the order of the arguments!). */ static void fdifference(limb *output, const limb *in) { unsigned i; for (i = 0; i < 10; ++i) { output[i] = in[i] - output[i]; } } /* Multiply a number by a scalar: output = in * scalar */ static void fscalar_product(limb *output, const limb *in, const limb scalar) { unsigned i; for (i = 0; i < 10; ++i) { output[i] = in[i] * scalar; } } /* Multiply two numbers: output = in2 * in * * output must be distinct to both inputs. The inputs are reduced coefficient * form, the output is not. * * output[x] <= 14 * the largest product of the input limbs. */ static void fproduct(limb *output, const limb *in2, const limb *in) { output[0] = ((limb) ((s32) in2[0])) * ((s32) in[0]); output[1] = ((limb) ((s32) in2[0])) * ((s32) in[1]) + ((limb) ((s32) in2[1])) * ((s32) in[0]); output[2] = 2 * ((limb) ((s32) in2[1])) * ((s32) in[1]) + ((limb) ((s32) in2[0])) * ((s32) in[2]) + ((limb) ((s32) in2[2])) * ((s32) in[0]); output[3] = ((limb) ((s32) in2[1])) * ((s32) in[2]) + ((limb) ((s32) in2[2])) * ((s32) in[1]) + ((limb) ((s32) in2[0])) * ((s32) in[3]) + ((limb) ((s32) in2[3])) * ((s32) in[0]); output[4] = ((limb) ((s32) in2[2])) * ((s32) in[2]) + 2 * (((limb) ((s32) in2[1])) * ((s32) in[3]) + ((limb) ((s32) in2[3])) * ((s32) in[1])) + ((limb) ((s32) in2[0])) * ((s32) in[4]) + ((limb) ((s32) in2[4])) * ((s32) in[0]); output[5] = ((limb) ((s32) in2[2])) * ((s32) in[3]) + ((limb) ((s32) in2[3])) * ((s32) in[2]) + ((limb) ((s32) in2[1])) * ((s32) in[4]) + ((limb) ((s32) in2[4])) * ((s32) in[1]) + ((limb) ((s32) in2[0])) * ((s32) in[5]) + ((limb) ((s32) in2[5])) * ((s32) in[0]); output[6] = 2 * (((limb) ((s32) in2[3])) * ((s32) in[3]) + ((limb) ((s32) in2[1])) * ((s32) in[5]) + ((limb) ((s32) in2[5])) * ((s32) in[1])) + ((limb) ((s32) in2[2])) * ((s32) in[4]) + ((limb) ((s32) in2[4])) * ((s32) in[2]) + ((limb) ((s32) in2[0])) * ((s32) in[6]) + ((limb) ((s32) in2[6])) * ((s32) in[0]); output[7] = ((limb) ((s32) in2[3])) * ((s32) in[4]) + ((limb) ((s32) in2[4])) * ((s32) in[3]) + ((limb) ((s32) in2[2])) * ((s32) in[5]) + ((limb) ((s32) in2[5])) * ((s32) in[2]) + ((limb) ((s32) in2[1])) * ((s32) in[6]) + ((limb) ((s32) in2[6])) * ((s32) in[1]) + ((limb) ((s32) in2[0])) * ((s32) in[7]) + ((limb) ((s32) in2[7])) * ((s32) in[0]); output[8] = ((limb) ((s32) in2[4])) * ((s32) in[4]) + 2 * (((limb) ((s32) in2[3])) * ((s32) in[5]) + ((limb) ((s32) in2[5])) * ((s32) in[3]) + ((limb) ((s32) in2[1])) * ((s32) in[7]) + ((limb) ((s32) in2[7])) * ((s32) in[1])) + ((limb) ((s32) in2[2])) * ((s32) in[6]) + ((limb) ((s32) in2[6])) * ((s32) in[2]) + ((limb) ((s32) in2[0])) * ((s32) in[8]) + ((limb) ((s32) in2[8])) * ((s32) in[0]); output[9] = ((limb) ((s32) in2[4])) * ((s32) in[5]) + ((limb) ((s32) in2[5])) * ((s32) in[4]) + ((limb) ((s32) in2[3])) * ((s32) in[6]) + ((limb) ((s32) in2[6])) * ((s32) in[3]) + ((limb) ((s32) in2[2])) * ((s32) in[7]) + ((limb) ((s32) in2[7])) * ((s32) in[2]) + ((limb) ((s32) in2[1])) * ((s32) in[8]) + ((limb) ((s32) in2[8])) * ((s32) in[1]) + ((limb) ((s32) in2[0])) * ((s32) in[9]) + ((limb) ((s32) in2[9])) * ((s32) in[0]); output[10] = 2 * (((limb) ((s32) in2[5])) * ((s32) in[5]) + ((limb) ((s32) in2[3])) * ((s32) in[7]) + ((limb) ((s32) in2[7])) * ((s32) in[3]) + ((limb) ((s32) in2[1])) * ((s32) in[9]) + ((limb) ((s32) in2[9])) * ((s32) in[1])) + ((limb) ((s32) in2[4])) * ((s32) in[6]) + ((limb) ((s32) in2[6])) * ((s32) in[4]) + ((limb) ((s32) in2[2])) * ((s32) in[8]) + ((limb) ((s32) in2[8])) * ((s32) in[2]); output[11] = ((limb) ((s32) in2[5])) * ((s32) in[6]) + ((limb) ((s32) in2[6])) * ((s32) in[5]) + ((limb) ((s32) in2[4])) * ((s32) in[7]) + ((limb) ((s32) in2[7])) * ((s32) in[4]) + ((limb) ((s32) in2[3])) * ((s32) in[8]) + ((limb) ((s32) in2[8])) * ((s32) in[3]) + ((limb) ((s32) in2[2])) * ((s32) in[9]) + ((limb) ((s32) in2[9])) * ((s32) in[2]); output[12] = ((limb) ((s32) in2[6])) * ((s32) in[6]) + 2 * (((limb) ((s32) in2[5])) * ((s32) in[7]) + ((limb) ((s32) in2[7])) * ((s32) in[5]) + ((limb) ((s32) in2[3])) * ((s32) in[9]) + ((limb) ((s32) in2[9])) * ((s32) in[3])) + ((limb) ((s32) in2[4])) * ((s32) in[8]) + ((limb) ((s32) in2[8])) * ((s32) in[4]); output[13] = ((limb) ((s32) in2[6])) * ((s32) in[7]) + ((limb) ((s32) in2[7])) * ((s32) in[6]) + ((limb) ((s32) in2[5])) * ((s32) in[8]) + ((limb) ((s32) in2[8])) * ((s32) in[5]) + ((limb) ((s32) in2[4])) * ((s32) in[9]) + ((limb) ((s32) in2[9])) * ((s32) in[4]); output[14] = 2 * (((limb) ((s32) in2[7])) * ((s32) in[7]) + ((limb) ((s32) in2[5])) * ((s32) in[9]) + ((limb) ((s32) in2[9])) * ((s32) in[5])) + ((limb) ((s32) in2[6])) * ((s32) in[8]) + ((limb) ((s32) in2[8])) * ((s32) in[6]); output[15] = ((limb) ((s32) in2[7])) * ((s32) in[8]) + ((limb) ((s32) in2[8])) * ((s32) in[7]) + ((limb) ((s32) in2[6])) * ((s32) in[9]) + ((limb) ((s32) in2[9])) * ((s32) in[6]); output[16] = ((limb) ((s32) in2[8])) * ((s32) in[8]) + 2 * (((limb) ((s32) in2[7])) * ((s32) in[9]) + ((limb) ((s32) in2[9])) * ((s32) in[7])); output[17] = ((limb) ((s32) in2[8])) * ((s32) in[9]) + ((limb) ((s32) in2[9])) * ((s32) in[8]); output[18] = 2 * ((limb) ((s32) in2[9])) * ((s32) in[9]); } /* Reduce a long form to a short form by taking the input mod 2^255 - 19. * * On entry: |output[i]| < 14*2^54 * On exit: |output[0..8]| < 280*2^54 */ static void freduce_degree(limb *output) { /* Each of these shifts and adds ends up multiplying the value by 19. * * For output[0..8], the absolute entry value is < 14*2^54 and we add, at * most, 19*14*2^54 thus, on exit, |output[0..8]| < 280*2^54. */ output[8] += output[18] << 4; output[8] += output[18] << 1; output[8] += output[18]; output[7] += output[17] << 4; output[7] += output[17] << 1; output[7] += output[17]; output[6] += output[16] << 4; output[6] += output[16] << 1; output[6] += output[16]; output[5] += output[15] << 4; output[5] += output[15] << 1; output[5] += output[15]; output[4] += output[14] << 4; output[4] += output[14] << 1; output[4] += output[14]; output[3] += output[13] << 4; output[3] += output[13] << 1; output[3] += output[13]; output[2] += output[12] << 4; output[2] += output[12] << 1; output[2] += output[12]; output[1] += output[11] << 4; output[1] += output[11] << 1; output[1] += output[11]; output[0] += output[10] << 4; output[0] += output[10] << 1; output[0] += output[10]; } #if (-1 & 3) != 3 #error "This code only works on a two's complement system" #endif /* return v / 2^26, using only shifts and adds. * * On entry: v can take any value. */ static inline limb div_by_2_26(const limb v) { /* High word of v; no shift needed. */ const uint32_t highword = (uint32_t) (((uint64_t) v) >> 32); /* Set to all 1s if v was negative; else set to 0s. */ const int32_t sign = ((int32_t) highword) >> 31; /* Set to 0x3ffffff if v was negative; else set to 0. */ const int32_t roundoff = ((uint32_t) sign) >> 6; /* Should return v / (1<<26) */ return (v + roundoff) >> 26; } /* return v / (2^25), using only shifts and adds. * * On entry: v can take any value. */ static inline limb div_by_2_25(const limb v) { /* High word of v; no shift needed*/ const uint32_t highword = (uint32_t) (((uint64_t) v) >> 32); /* Set to all 1s if v was negative; else set to 0s. */ const int32_t sign = ((int32_t) highword) >> 31; /* Set to 0x1ffffff if v was negative; else set to 0. */ const int32_t roundoff = ((uint32_t) sign) >> 7; /* Should return v / (1<<25) */ return (v + roundoff) >> 25; } #if 0 /* return v / (2^25), using only shifts and adds. * * On entry: v can take any value. */ static inline s32 div_s32_by_2_25(const s32 v) { const s32 roundoff = ((uint32_t)(v >> 31)) >> 7; return (v + roundoff) >> 25; } #endif /* Reduce all coefficients of the short form input so that |x| < 2^26. * * On entry: |output[i]| < 280*2^54 */ static void freduce_coefficients(limb *output) { unsigned i; output[10] = 0; for (i = 0; i < 10; i += 2) { limb over = div_by_2_26(output[i]); /* The entry condition (that |output[i]| < 280*2^54) means that over is, at * most, 280*2^28 in the first iteration of this loop. This is added to the * next limb and we can approximate the resulting bound of that limb by * 281*2^54. */ output[i] -= over << 26; output[i+1] += over; /* For the first iteration, |output[i+1]| < 281*2^54, thus |over| < * 281*2^29. When this is added to the next limb, the resulting bound can * be approximated as 281*2^54. * * For subsequent iterations of the loop, 281*2^54 remains a conservative * bound and no overflow occurs. */ over = div_by_2_25(output[i+1]); output[i+1] -= over << 25; output[i+2] += over; } /* Now |output[10]| < 281*2^29 and all other coefficients are reduced. */ output[0] += output[10] << 4; output[0] += output[10] << 1; output[0] += output[10]; output[10] = 0; /* Now output[1..9] are reduced, and |output[0]| < 2^26 + 19*281*2^29 * So |over| will be no more than 2^16. */ { limb over = div_by_2_26(output[0]); output[0] -= over << 26; output[1] += over; } /* Now output[0,2..9] are reduced, and |output[1]| < 2^25 + 2^16 < 2^26. The * bound on |output[1]| is sufficient to meet our needs. */ } /* A helpful wrapper around fproduct: output = in * in2. * * On entry: |in[i]| < 2^27 and |in2[i]| < 2^27. * * output must be distinct to both inputs. The output is reduced degree * (indeed, one need only provide storage for 10 limbs) and |output[i]| < 2^26. */ static void fmul(limb *output, const limb *in, const limb *in2) { limb t[19]; fproduct(t, in, in2); /* |t[i]| < 14*2^54 */ freduce_degree(t); freduce_coefficients(t); /* |t[i]| < 2^26 */ memcpy(output, t, sizeof(limb) * 10); } /* Square a number: output = in**2 * * output must be distinct from the input. The inputs are reduced coefficient * form, the output is not. * * output[x] <= 14 * the largest product of the input limbs. */ static void fsquare_inner(limb *output, const limb *in) { output[0] = ((limb) ((s32) in[0])) * ((s32) in[0]); output[1] = 2 * ((limb) ((s32) in[0])) * ((s32) in[1]); output[2] = 2 * (((limb) ((s32) in[1])) * ((s32) in[1]) + ((limb) ((s32) in[0])) * ((s32) in[2])); output[3] = 2 * (((limb) ((s32) in[1])) * ((s32) in[2]) + ((limb) ((s32) in[0])) * ((s32) in[3])); output[4] = ((limb) ((s32) in[2])) * ((s32) in[2]) + 4 * ((limb) ((s32) in[1])) * ((s32) in[3]) + 2 * ((limb) ((s32) in[0])) * ((s32) in[4]); output[5] = 2 * (((limb) ((s32) in[2])) * ((s32) in[3]) + ((limb) ((s32) in[1])) * ((s32) in[4]) + ((limb) ((s32) in[0])) * ((s32) in[5])); output[6] = 2 * (((limb) ((s32) in[3])) * ((s32) in[3]) + ((limb) ((s32) in[2])) * ((s32) in[4]) + ((limb) ((s32) in[0])) * ((s32) in[6]) + 2 * ((limb) ((s32) in[1])) * ((s32) in[5])); output[7] = 2 * (((limb) ((s32) in[3])) * ((s32) in[4]) + ((limb) ((s32) in[2])) * ((s32) in[5]) + ((limb) ((s32) in[1])) * ((s32) in[6]) + ((limb) ((s32) in[0])) * ((s32) in[7])); output[8] = ((limb) ((s32) in[4])) * ((s32) in[4]) + 2 * (((limb) ((s32) in[2])) * ((s32) in[6]) + ((limb) ((s32) in[0])) * ((s32) in[8]) + 2 * (((limb) ((s32) in[1])) * ((s32) in[7]) + ((limb) ((s32) in[3])) * ((s32) in[5]))); output[9] = 2 * (((limb) ((s32) in[4])) * ((s32) in[5]) + ((limb) ((s32) in[3])) * ((s32) in[6]) + ((limb) ((s32) in[2])) * ((s32) in[7]) + ((limb) ((s32) in[1])) * ((s32) in[8]) + ((limb) ((s32) in[0])) * ((s32) in[9])); output[10] = 2 * (((limb) ((s32) in[5])) * ((s32) in[5]) + ((limb) ((s32) in[4])) * ((s32) in[6]) + ((limb) ((s32) in[2])) * ((s32) in[8]) + 2 * (((limb) ((s32) in[3])) * ((s32) in[7]) + ((limb) ((s32) in[1])) * ((s32) in[9]))); output[11] = 2 * (((limb) ((s32) in[5])) * ((s32) in[6]) + ((limb) ((s32) in[4])) * ((s32) in[7]) + ((limb) ((s32) in[3])) * ((s32) in[8]) + ((limb) ((s32) in[2])) * ((s32) in[9])); output[12] = ((limb) ((s32) in[6])) * ((s32) in[6]) + 2 * (((limb) ((s32) in[4])) * ((s32) in[8]) + 2 * (((limb) ((s32) in[5])) * ((s32) in[7]) + ((limb) ((s32) in[3])) * ((s32) in[9]))); output[13] = 2 * (((limb) ((s32) in[6])) * ((s32) in[7]) + ((limb) ((s32) in[5])) * ((s32) in[8]) + ((limb) ((s32) in[4])) * ((s32) in[9])); output[14] = 2 * (((limb) ((s32) in[7])) * ((s32) in[7]) + ((limb) ((s32) in[6])) * ((s32) in[8]) + 2 * ((limb) ((s32) in[5])) * ((s32) in[9])); output[15] = 2 * (((limb) ((s32) in[7])) * ((s32) in[8]) + ((limb) ((s32) in[6])) * ((s32) in[9])); output[16] = ((limb) ((s32) in[8])) * ((s32) in[8]) + 4 * ((limb) ((s32) in[7])) * ((s32) in[9]); output[17] = 2 * ((limb) ((s32) in[8])) * ((s32) in[9]); output[18] = 2 * ((limb) ((s32) in[9])) * ((s32) in[9]); } /* fsquare sets output = in^2. * * On entry: The |in| argument is in reduced coefficients form and |in[i]| < * 2^27. * * On exit: The |output| argument is in reduced coefficients form (indeed, one * need only provide storage for 10 limbs) and |out[i]| < 2^26. */ static void fsquare(limb *output, const limb *in) { limb t[19]; fsquare_inner(t, in); /* |t[i]| < 14*2^54 because the largest product of two limbs will be < * 2^(27+27) and fsquare_inner adds together, at most, 14 of those * products. */ freduce_degree(t); freduce_coefficients(t); /* |t[i]| < 2^26 */ memcpy(output, t, sizeof(limb) * 10); } /* Take a little-endian, 32-byte number and expand it into polynomial form */ static void fexpand(limb *output, const u8 *input) { #define F(n,start,shift,mask) \ output[n] = ((((limb) input[start + 0]) | \ ((limb) input[start + 1]) << 8 | \ ((limb) input[start + 2]) << 16 | \ ((limb) input[start + 3]) << 24) >> shift) & mask; F(0, 0, 0, 0x3ffffff); F(1, 3, 2, 0x1ffffff); F(2, 6, 3, 0x3ffffff); F(3, 9, 5, 0x1ffffff); F(4, 12, 6, 0x3ffffff); F(5, 16, 0, 0x1ffffff); F(6, 19, 1, 0x3ffffff); F(7, 22, 3, 0x1ffffff); F(8, 25, 4, 0x3ffffff); F(9, 28, 6, 0x1ffffff); #undef F } #if (-32 >> 1) != -16 #error "This code only works when >> does sign-extension on negative numbers" #endif /* s32_eq returns 0xffffffff iff a == b and zero otherwise. */ static s32 s32_eq(s32 a, s32 b) { a = ~(a ^ b); a &= a << 16; a &= a << 8; a &= a << 4; a &= a << 2; a &= a << 1; return a >> 31; } /* s32_gte returns 0xffffffff if a >= b and zero otherwise, where a and b are * both non-negative. */ static s32 s32_gte(s32 a, s32 b) { a -= b; /* a >= 0 iff a >= b. */ return ~(a >> 31); } /* Take a fully reduced polynomial form number and contract it into a * little-endian, 32-byte array. * * On entry: |input_limbs[i]| < 2^26 */ static void fcontract(u8 *output, limb *input_limbs) { int i; int j; s32 input[10]; s32 mask; /* |input_limbs[i]| < 2^26, so it's valid to convert to an s32. */ for (i = 0; i < 10; i++) { input[i] = (s32) input_limbs[i]; } for (j = 0; j < 2; ++j) { for (i = 0; i < 9; ++i) { if ((i & 1) == 1) { /* This calculation is a time-invariant way to make input[i] * non-negative by borrowing from the next-larger limb. */ const s32 mask = input[i] >> 31; const s32 carry = -((input[i] & mask) >> 25); input[i] = input[i] + (carry << 25); input[i+1] = input[i+1] - carry; } else { const s32 mask = input[i] >> 31; const s32 carry = -((input[i] & mask) >> 26); input[i] = input[i] + (carry << 26); input[i+1] = input[i+1] - carry; } } /* There's no greater limb for input[9] to borrow from, but we can multiply * by 19 and borrow from input[0], which is valid mod 2^255-19. */ { const s32 mask = input[9] >> 31; const s32 carry = -((input[9] & mask) >> 25); input[9] = input[9] + (carry << 25); input[0] = input[0] - (carry * 19); } /* After the first iteration, input[1..9] are non-negative and fit within * 25 or 26 bits, depending on position. However, input[0] may be * negative. */ } /* The first borrow-propagation pass above ended with every limb except (possibly) input[0] non-negative. If input[0] was negative after the first pass, then it was because of a carry from input[9]. On entry, input[9] < 2^26 so the carry was, at most, one, since (2**26-1) >> 25 = 1. Thus input[0] >= -19. In the second pass, each limb is decreased by at most one. Thus the second borrow-propagation pass could only have wrapped around to decrease input[0] again if the first pass left input[0] negative *and* input[1] through input[9] were all zero. In that case, input[1] is now 2^25 - 1, and this last borrow-propagation step will leave input[1] non-negative. */ { const s32 mask = input[0] >> 31; const s32 carry = -((input[0] & mask) >> 26); input[0] = input[0] + (carry << 26); input[1] = input[1] - carry; } /* All input[i] are now non-negative. However, there might be values between * 2^25 and 2^26 in a limb which is, nominally, 25 bits wide. */ for (j = 0; j < 2; j++) { for (i = 0; i < 9; i++) { if ((i & 1) == 1) { const s32 carry = input[i] >> 25; input[i] &= 0x1ffffff; input[i+1] += carry; } else { const s32 carry = input[i] >> 26; input[i] &= 0x3ffffff; input[i+1] += carry; } } { const s32 carry = input[9] >> 25; input[9] &= 0x1ffffff; input[0] += 19*carry; } } /* If the first carry-chain pass, just above, ended up with a carry from * input[9], and that caused input[0] to be out-of-bounds, then input[0] was * < 2^26 + 2*19, because the carry was, at most, two. * * If the second pass carried from input[9] again then input[0] is < 2*19 and * the input[9] -> input[0] carry didn't push input[0] out of bounds. */ /* It still remains the case that input might be between 2^255-19 and 2^255. * In this case, input[1..9] must take their maximum value and input[0] must * be >= (2^255-19) & 0x3ffffff, which is 0x3ffffed. */ mask = s32_gte(input[0], 0x3ffffed); for (i = 1; i < 10; i++) { if ((i & 1) == 1) { mask &= s32_eq(input[i], 0x1ffffff); } else { mask &= s32_eq(input[i], 0x3ffffff); } } /* mask is either 0xffffffff (if input >= 2^255-19) and zero otherwise. Thus * this conditionally subtracts 2^255-19. */ input[0] -= mask & 0x3ffffed; for (i = 1; i < 10; i++) { if ((i & 1) == 1) { input[i] -= mask & 0x1ffffff; } else { input[i] -= mask & 0x3ffffff; } } input[1] <<= 2; input[2] <<= 3; input[3] <<= 5; input[4] <<= 6; input[6] <<= 1; input[7] <<= 3; input[8] <<= 4; input[9] <<= 6; #define F(i, s) \ output[s+0] |= input[i] & 0xff; \ output[s+1] = (input[i] >> 8) & 0xff; \ output[s+2] = (input[i] >> 16) & 0xff; \ output[s+3] = (input[i] >> 24) & 0xff; output[0] = 0; output[16] = 0; F(0,0); F(1,3); F(2,6); F(3,9); F(4,12); F(5,16); F(6,19); F(7,22); F(8,25); F(9,28); #undef F } /* Input: Q, Q', Q-Q' * Output: 2Q, Q+Q' * * x2 z3: long form * x3 z3: long form * x z: short form, destroyed * xprime zprime: short form, destroyed * qmqp: short form, preserved * * On entry and exit, the absolute value of the limbs of all inputs and outputs * are < 2^26. */ static void fmonty(limb *x2, limb *z2, /* output 2Q */ limb *x3, limb *z3, /* output Q + Q' */ limb *x, limb *z, /* input Q */ limb *xprime, limb *zprime, /* input Q' */ const limb *qmqp /* input Q - Q' */) { limb origx[10], origxprime[10], zzz[19], xx[19], zz[19], xxprime[19], zzprime[19], zzzprime[19], xxxprime[19]; memcpy(origx, x, 10 * sizeof(limb)); fsum(x, z); /* |x[i]| < 2^27 */ fdifference(z, origx); /* does x - z */ /* |z[i]| < 2^27 */ memcpy(origxprime, xprime, sizeof(limb) * 10); fsum(xprime, zprime); /* |xprime[i]| < 2^27 */ fdifference(zprime, origxprime); /* |zprime[i]| < 2^27 */ fproduct(xxprime, xprime, z); /* |xxprime[i]| < 14*2^54: the largest product of two limbs will be < * 2^(27+27) and fproduct adds together, at most, 14 of those products. * (Approximating that to 2^58 doesn't work out.) */ fproduct(zzprime, x, zprime); /* |zzprime[i]| < 14*2^54 */ freduce_degree(xxprime); freduce_coefficients(xxprime); /* |xxprime[i]| < 2^26 */ freduce_degree(zzprime); freduce_coefficients(zzprime); /* |zzprime[i]| < 2^26 */ memcpy(origxprime, xxprime, sizeof(limb) * 10); fsum(xxprime, zzprime); /* |xxprime[i]| < 2^27 */ fdifference(zzprime, origxprime); /* |zzprime[i]| < 2^27 */ fsquare(xxxprime, xxprime); /* |xxxprime[i]| < 2^26 */ fsquare(zzzprime, zzprime); /* |zzzprime[i]| < 2^26 */ fproduct(zzprime, zzzprime, qmqp); /* |zzprime[i]| < 14*2^52 */ freduce_degree(zzprime); freduce_coefficients(zzprime); /* |zzprime[i]| < 2^26 */ memcpy(x3, xxxprime, sizeof(limb) * 10); memcpy(z3, zzprime, sizeof(limb) * 10); fsquare(xx, x); /* |xx[i]| < 2^26 */ fsquare(zz, z); /* |zz[i]| < 2^26 */ fproduct(x2, xx, zz); /* |x2[i]| < 14*2^52 */ freduce_degree(x2); freduce_coefficients(x2); /* |x2[i]| < 2^26 */ fdifference(zz, xx); // does zz = xx - zz /* |zz[i]| < 2^27 */ memset(zzz + 10, 0, sizeof(limb) * 9); fscalar_product(zzz, zz, 121665); /* |zzz[i]| < 2^(27+17) */ /* No need to call freduce_degree here: fscalar_product doesn't increase the degree of its input. */ freduce_coefficients(zzz); /* |zzz[i]| < 2^26 */ fsum(zzz, xx); /* |zzz[i]| < 2^27 */ fproduct(z2, zz, zzz); /* |z2[i]| < 14*2^(26+27) */ freduce_degree(z2); freduce_coefficients(z2); /* |z2|i| < 2^26 */ } /* Conditionally swap two reduced-form limb arrays if 'iswap' is 1, but leave * them unchanged if 'iswap' is 0. Runs in data-invariant time to avoid * side-channel attacks. * * NOTE that this function requires that 'iswap' be 1 or 0; other values give * wrong results. Also, the two limb arrays must be in reduced-coefficient, * reduced-degree form: the values in a[10..19] or b[10..19] aren't swapped, * and all all values in a[0..9],b[0..9] must have magnitude less than * INT32_MAX. */ static void swap_conditional(limb a[19], limb b[19], limb iswap) { unsigned i; const s32 swap = (s32) -iswap; for (i = 0; i < 10; ++i) { const s32 x = swap & ( ((s32)a[i]) ^ ((s32)b[i]) ); a[i] = ((s32)a[i]) ^ x; b[i] = ((s32)b[i]) ^ x; } } /* Calculates nQ where Q is the x-coordinate of a point on the curve * * resultx/resultz: the x coordinate of the resulting curve point (short form) * n: a little endian, 32-byte number * q: a point of the curve (short form) */ static void cmult(limb *resultx, limb *resultz, const u8 *n, const limb *q) { limb a[19] = {0}, b[19] = {1}, c[19] = {1}, d[19] = {0}; limb *nqpqx = a, *nqpqz = b, *nqx = c, *nqz = d, *t; limb e[19] = {0}, f[19] = {1}, g[19] = {0}, h[19] = {1}; limb *nqpqx2 = e, *nqpqz2 = f, *nqx2 = g, *nqz2 = h; unsigned i, j; memcpy(nqpqx, q, sizeof(limb) * 10); for (i = 0; i < 32; ++i) { u8 byte = n[31 - i]; for (j = 0; j < 8; ++j) { const limb bit = byte >> 7; swap_conditional(nqx, nqpqx, bit); swap_conditional(nqz, nqpqz, bit); fmonty(nqx2, nqz2, nqpqx2, nqpqz2, nqx, nqz, nqpqx, nqpqz, q); swap_conditional(nqx2, nqpqx2, bit); swap_conditional(nqz2, nqpqz2, bit); t = nqx; nqx = nqx2; nqx2 = t; t = nqz; nqz = nqz2; nqz2 = t; t = nqpqx; nqpqx = nqpqx2; nqpqx2 = t; t = nqpqz; nqpqz = nqpqz2; nqpqz2 = t; byte <<= 1; } } memcpy(resultx, nqx, sizeof(limb) * 10); memcpy(resultz, nqz, sizeof(limb) * 10); } // ----------------------------------------------------------------------------- // Shamelessly copied from djb's code // ----------------------------------------------------------------------------- static void crecip(limb *out, const limb *z) { limb z2[10]; limb z9[10]; limb z11[10]; limb z2_5_0[10]; limb z2_10_0[10]; limb z2_20_0[10]; limb z2_50_0[10]; limb z2_100_0[10]; limb t0[10]; limb t1[10]; int i; /* 2 */ fsquare(z2,z); /* 4 */ fsquare(t1,z2); /* 8 */ fsquare(t0,t1); /* 9 */ fmul(z9,t0,z); /* 11 */ fmul(z11,z9,z2); /* 22 */ fsquare(t0,z11); /* 2^5 - 2^0 = 31 */ fmul(z2_5_0,t0,z9); /* 2^6 - 2^1 */ fsquare(t0,z2_5_0); /* 2^7 - 2^2 */ fsquare(t1,t0); /* 2^8 - 2^3 */ fsquare(t0,t1); /* 2^9 - 2^4 */ fsquare(t1,t0); /* 2^10 - 2^5 */ fsquare(t0,t1); /* 2^10 - 2^0 */ fmul(z2_10_0,t0,z2_5_0); /* 2^11 - 2^1 */ fsquare(t0,z2_10_0); /* 2^12 - 2^2 */ fsquare(t1,t0); /* 2^20 - 2^10 */ for (i = 2;i < 10;i += 2) { fsquare(t0,t1); fsquare(t1,t0); } /* 2^20 - 2^0 */ fmul(z2_20_0,t1,z2_10_0); /* 2^21 - 2^1 */ fsquare(t0,z2_20_0); /* 2^22 - 2^2 */ fsquare(t1,t0); /* 2^40 - 2^20 */ for (i = 2;i < 20;i += 2) { fsquare(t0,t1); fsquare(t1,t0); } /* 2^40 - 2^0 */ fmul(t0,t1,z2_20_0); /* 2^41 - 2^1 */ fsquare(t1,t0); /* 2^42 - 2^2 */ fsquare(t0,t1); /* 2^50 - 2^10 */ for (i = 2;i < 10;i += 2) { fsquare(t1,t0); fsquare(t0,t1); } /* 2^50 - 2^0 */ fmul(z2_50_0,t0,z2_10_0); /* 2^51 - 2^1 */ fsquare(t0,z2_50_0); /* 2^52 - 2^2 */ fsquare(t1,t0); /* 2^100 - 2^50 */ for (i = 2;i < 50;i += 2) { fsquare(t0,t1); fsquare(t1,t0); } /* 2^100 - 2^0 */ fmul(z2_100_0,t1,z2_50_0); /* 2^101 - 2^1 */ fsquare(t1,z2_100_0); /* 2^102 - 2^2 */ fsquare(t0,t1); /* 2^200 - 2^100 */ for (i = 2;i < 100;i += 2) { fsquare(t1,t0); fsquare(t0,t1); } /* 2^200 - 2^0 */ fmul(t1,t0,z2_100_0); /* 2^201 - 2^1 */ fsquare(t0,t1); /* 2^202 - 2^2 */ fsquare(t1,t0); /* 2^250 - 2^50 */ for (i = 2;i < 50;i += 2) { fsquare(t0,t1); fsquare(t1,t0); } /* 2^250 - 2^0 */ fmul(t0,t1,z2_50_0); /* 2^251 - 2^1 */ fsquare(t1,t0); /* 2^252 - 2^2 */ fsquare(t0,t1); /* 2^253 - 2^3 */ fsquare(t1,t0); /* 2^254 - 2^4 */ fsquare(t0,t1); /* 2^255 - 2^5 */ fsquare(t1,t0); /* 2^255 - 21 */ fmul(out,t1,z11); } int curve25519_donna(u8 *mypublic, const u8 *secret, const u8 *basepoint); int curve25519_donna(u8 *mypublic, const u8 *secret, const u8 *basepoint) { limb bp[10], x[10], z[11], zmone[10]; uint8_t e[32]; int i; for (i = 0; i < 32; ++i) e[i] = secret[i]; e[0] &= 248; e[31] &= 127; e[31] |= 64; fexpand(bp, basepoint); cmult(x, z, e, bp); crecip(zmone, z); fmul(z, x, zmone); fcontract(mypublic, z); return 0; } tor-0.2.7.6/src/ext/strlcat.c0000644000175000017500000000477512621363246012642 00000000000000/* $OpenBSD: strlcat.c,v 1.8 2001/05/13 15:40:15 deraadt Exp $ */ /* * Copyright (c) 1998 Todd C. Miller * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #if defined(LIBC_SCCS) && !defined(lint) static char *rcsid = "$OpenBSD: strlcat.c,v 1.8 2001/05/13 15:40:15 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ #include #include /* * Appends src to string dst of size siz (unlike strncat, siz is the * full size of dst, not space left). At most siz-1 characters * will be copied. Always NUL terminates (unless siz <= strlen(dst)). * Returns strlen(src) + MIN(siz, strlen(initial dst)). * If retval >= siz, truncation occurred. */ size_t strlcat(char *dst, const char *src, size_t siz) { register char *d = dst; register const char *s = src; register size_t n = siz; size_t dlen; /* Find the end of dst and adjust bytes left but don't go past end */ while (n-- != 0 && *d != '\0') d++; dlen = d - dst; n = siz - dlen; if (n == 0) return(dlen + strlen(s)); while (*s != '\0') { if (n != 1) { *d++ = *s; n--; } s++; } *d = '\0'; return(dlen + (s - src)); /* count does not include NUL */ } tor-0.2.7.6/src/ext/tinytest_macros.h0000644000175000017500000001603612621363246014413 00000000000000/* tinytest_macros.h -- Copyright 2009-2012 Nick Mathewson * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef TINYTEST_MACROS_H_INCLUDED_ #define TINYTEST_MACROS_H_INCLUDED_ /* Helpers for defining statement-like macros */ #define TT_STMT_BEGIN do { #define TT_STMT_END } while (0) /* Redefine this if your test functions want to abort with something besides * "goto end;" */ #ifndef TT_EXIT_TEST_FUNCTION #define TT_EXIT_TEST_FUNCTION TT_STMT_BEGIN goto end; TT_STMT_END #endif /* Redefine this if you want to note success/failure in some different way. */ #ifndef TT_DECLARE #define TT_DECLARE(prefix, args) \ TT_STMT_BEGIN \ printf("\n %s %s:%d: ",prefix,__FILE__,__LINE__); \ printf args ; \ TT_STMT_END #endif /* Announce a failure. Args are parenthesized printf args. */ #define TT_GRIPE(args) TT_DECLARE("FAIL", args) /* Announce a non-failure if we're verbose. */ #define TT_BLATHER(args) \ TT_STMT_BEGIN \ if (tinytest_get_verbosity_()>1) TT_DECLARE(" OK", args); \ TT_STMT_END #define TT_DIE(args) \ TT_STMT_BEGIN \ tinytest_set_test_failed_(); \ TT_GRIPE(args); \ TT_EXIT_TEST_FUNCTION; \ TT_STMT_END #define TT_FAIL(args) \ TT_STMT_BEGIN \ tinytest_set_test_failed_(); \ TT_GRIPE(args); \ TT_STMT_END /* Fail and abort the current test for the reason in msg */ #define tt_abort_printf(msg) TT_DIE(msg) #define tt_abort_perror(op) TT_DIE(("%s: %s [%d]",(op),strerror(errno), errno)) #define tt_abort_msg(msg) TT_DIE(("%s", msg)) #define tt_abort() TT_DIE(("%s", "(Failed.)")) /* Fail but do not abort the current test for the reason in msg. */ #define tt_failprint_f(msg) TT_FAIL(msg) #define tt_fail_perror(op) TT_FAIL(("%s: %s [%d]",(op),strerror(errno), errno)) #define tt_fail_msg(msg) TT_FAIL(("%s", msg)) #define tt_fail() TT_FAIL(("%s", "(Failed.)")) /* End the current test, and indicate we are skipping it. */ #define tt_skip() \ TT_STMT_BEGIN \ tinytest_set_test_skipped_(); \ TT_EXIT_TEST_FUNCTION; \ TT_STMT_END #define tt_want_(b, msg, fail) \ TT_STMT_BEGIN \ if (!(b)) { \ tinytest_set_test_failed_(); \ TT_GRIPE(("%s",msg)); \ fail; \ } else { \ TT_BLATHER(("%s",msg)); \ } \ TT_STMT_END /* Assert b, but do not stop the test if b fails. Log msg on failure. */ #define tt_want_msg(b, msg) \ tt_want_(b, msg, ); /* Assert b and stop the test if b fails. Log msg on failure. */ #define tt_assert_msg(b, msg) \ tt_want_(b, msg, TT_EXIT_TEST_FUNCTION); /* Assert b, but do not stop the test if b fails. */ #define tt_want(b) tt_want_msg( (b), "want("#b")") /* Assert b, and stop the test if b fails. */ #define tt_assert(b) tt_assert_msg((b), "assert("#b")") #define tt_assert_test_fmt_type(a,b,str_test,type,test,printf_type,printf_fmt, \ setup_block,cleanup_block,die_on_fail) \ TT_STMT_BEGIN \ type val1_ = (a); \ type val2_ = (b); \ int tt_status_ = (test); \ if (!tt_status_ || tinytest_get_verbosity_()>1) { \ printf_type print_; \ printf_type print1_; \ printf_type print2_; \ type value_ = val1_; \ setup_block; \ print1_ = print_; \ value_ = val2_; \ setup_block; \ print2_ = print_; \ TT_DECLARE(tt_status_?" OK":"FAIL", \ ("assert(%s): "printf_fmt" vs "printf_fmt, \ str_test, print1_, print2_)); \ print_ = print1_; \ cleanup_block; \ print_ = print2_; \ cleanup_block; \ if (!tt_status_) { \ tinytest_set_test_failed_(); \ die_on_fail ; \ } \ } \ TT_STMT_END #define tt_assert_test_type(a,b,str_test,type,test,fmt,die_on_fail) \ tt_assert_test_fmt_type(a,b,str_test,type,test,type,fmt, \ {print_=value_;},{},die_on_fail) #define tt_assert_test_type_opt(a,b,str_test,type,test,fmt,die_on_fail) \ tt_assert_test_fmt_type(a,b,str_test,type,test,type,fmt, \ {print_=value_?value_:"";},{},die_on_fail) /* Helper: assert that a op b, when cast to type. Format the values with * printf format fmt on failure. */ #define tt_assert_op_type(a,op,b,type,fmt) \ tt_assert_test_type(a,b,#a" "#op" "#b,type,(val1_ op val2_),fmt, \ TT_EXIT_TEST_FUNCTION) #define tt_int_op(a,op,b) \ tt_assert_test_type(a,b,#a" "#op" "#b,long,(val1_ op val2_), \ "%ld",TT_EXIT_TEST_FUNCTION) #define tt_uint_op(a,op,b) \ tt_assert_test_type(a,b,#a" "#op" "#b,unsigned long, \ (val1_ op val2_),"%lu",TT_EXIT_TEST_FUNCTION) #define tt_ptr_op(a,op,b) \ tt_assert_test_type(a,b,#a" "#op" "#b,const void*, \ (val1_ op val2_),"%p",TT_EXIT_TEST_FUNCTION) #define tt_str_op(a,op,b) \ tt_assert_test_type_opt(a,b,#a" "#op" "#b,const char *, \ (val1_ && val2_ && strcmp(val1_,val2_) op 0),"<%s>", \ TT_EXIT_TEST_FUNCTION) #define tt_mem_op(expr1, op, expr2, len) \ tt_assert_test_fmt_type(expr1,expr2,#expr1" "#op" "#expr2, \ const void *, \ (val1_ && val2_ && memcmp(val1_, val2_, len) op 0), \ char *, "%s", \ { print_ = tinytest_format_hex_(value_, (len)); }, \ { if (print_) free(print_); }, \ TT_EXIT_TEST_FUNCTION \ ); #define tt_want_int_op(a,op,b) \ tt_assert_test_type(a,b,#a" "#op" "#b,long,(val1_ op val2_),"%ld",(void)0) #define tt_want_uint_op(a,op,b) \ tt_assert_test_type(a,b,#a" "#op" "#b,unsigned long, \ (val1_ op val2_),"%lu",(void)0) #define tt_want_ptr_op(a,op,b) \ tt_assert_test_type(a,b,#a" "#op" "#b,const void*, \ (val1_ op val2_),"%p",(void)0) #define tt_want_str_op(a,op,b) \ tt_assert_test_type(a,b,#a" "#op" "#b,const char *, \ (strcmp(val1_,val2_) op 0),"<%s>",(void)0) #endif tor-0.2.7.6/src/ext/strlcpy.c0000644000175000017500000000433712621363246012660 00000000000000/* $OpenBSD: strlcpy.c,v 1.2 1998/11/06 04:33:16 wvdputte Exp $ */ /* * Copyright (c) 1998 Todd C. Miller * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL * THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #if defined(LIBC_SCCS) && !defined(lint) static char *rcsid = "$OpenBSD: strlcpy.c,v 1.2 1998/11/06 04:33:16 wvdputte Exp $"; #endif /* LIBC_SCCS and not lint */ #include #include /* * Copy src to string dst of size siz. At most siz-1 characters * will be copied. Always NUL terminates (unless siz == 0). * Returns strlen(src); if retval >= siz, truncation occurred. */ size_t strlcpy(char *dst, const char *src, size_t siz) { register char *d = dst; register const char *s = src; register size_t n = siz; if (n == 0) return(strlen(s)); while (*s != '\0') { if (n != 1) { *d++ = *s; n--; } s++; } *d = '\0'; return(s - src); /* count does not include NUL */ } tor-0.2.7.6/src/ext/csiphash.c0000644000175000017500000001207412631612325012753 00000000000000/* Copyright (c) 2013-2014 Marek Majkowski 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 Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Original location: https://github.com/majek/csiphash/ Solution inspired by code from: Samuel Neves (supercop/crypto_auth/siphash24/little) djb (supercop/crypto_auth/siphash24/little2) Jean-Philippe Aumasson (https://131002.net/siphash/siphash24.c) */ #include "torint.h" #include "siphash.h" /* for tor_assert */ #include "util.h" /* for memcpy */ #include #if defined(__BYTE_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) && \ __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ # define _le64toh(x) ((uint64_t)(x)) #elif defined(_WIN32) /* Windows is always little endian, unless you're on xbox360 http://msdn.microsoft.com/en-us/library/b0084kay(v=vs.80).aspx */ # define _le64toh(x) ((uint64_t)(x)) #elif defined(__APPLE__) # include # define _le64toh(x) OSSwapLittleToHostInt64(x) #elif defined(sun) || defined(__sun) # include # define _le64toh(x) LE_64(x) #else /* See: http://sourceforge.net/p/predef/wiki/Endianness/ */ # if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) # include # else # include # endif # if defined(__BYTE_ORDER) && defined(__LITTLE_ENDIAN) && \ __BYTE_ORDER == __LITTLE_ENDIAN # define _le64toh(x) ((uint64_t)(x)) # else # if defined(__OpenBSD__) # define _le64toh(x) letoh64(x) # else # define _le64toh(x) le64toh(x) # endif # endif #endif #define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) ) #define HALF_ROUND(a,b,c,d,s,t) \ a += b; c += d; \ b = ROTATE(b, s) ^ a; \ d = ROTATE(d, t) ^ c; \ a = ROTATE(a, 32); #define DOUBLE_ROUND(v0,v1,v2,v3) \ HALF_ROUND(v0,v1,v2,v3,13,16); \ HALF_ROUND(v2,v1,v0,v3,17,21); \ HALF_ROUND(v0,v1,v2,v3,13,16); \ HALF_ROUND(v2,v1,v0,v3,17,21); #if 0 /* This does not seem to save very much runtime in the fast case, and it's * potentially a big loss in the slow case where we're misaligned and we cross * a cache line. */ #if (defined(__i386) || defined(__i386__) || defined(_M_IX86) || \ defined(__x86_64) || defined(__x86_64__) || \ defined(_M_AMD64) || defined(_M_X64) || defined(__INTEL__)) # define UNALIGNED_OK 1 #endif #endif uint64_t siphash24(const void *src, unsigned long src_sz, const struct sipkey *key) { uint64_t k0 = key->k0; uint64_t k1 = key->k1; uint64_t b = (uint64_t)src_sz << 56; #ifdef UNALIGNED_OK const uint64_t *in = (uint64_t*)src; #else /* On platforms where alignment matters, if 'in' is a pointer to a * datatype that must be aligned, the compiler is allowed to * generate code that assumes that it is aligned as such. */ const uint8_t *in = (uint8_t *)src; #endif uint64_t t; uint8_t *pt, *m; uint64_t v0 = k0 ^ 0x736f6d6570736575ULL; uint64_t v1 = k1 ^ 0x646f72616e646f6dULL; uint64_t v2 = k0 ^ 0x6c7967656e657261ULL; uint64_t v3 = k1 ^ 0x7465646279746573ULL; while (src_sz >= 8) { #ifdef UNALIGNED_OK uint64_t mi = _le64toh(*in); in += 1; #else uint64_t mi; memcpy(&mi, in, 8); mi = _le64toh(mi); in += 8; #endif src_sz -= 8; v3 ^= mi; DOUBLE_ROUND(v0,v1,v2,v3); v0 ^= mi; } t = 0; pt = (uint8_t*)&t; m = (uint8_t*)in; switch (src_sz) { case 7: pt[6] = m[6]; case 6: pt[5] = m[5]; case 5: pt[4] = m[4]; #ifdef UNALIGNED_OK case 4: *((uint32_t*)&pt[0]) = *((uint32_t*)&m[0]); break; #else case 4: pt[3] = m[3]; #endif case 3: pt[2] = m[2]; case 2: pt[1] = m[1]; case 1: pt[0] = m[0]; } b |= _le64toh(t); v3 ^= b; DOUBLE_ROUND(v0,v1,v2,v3); v0 ^= b; v2 ^= 0xff; DOUBLE_ROUND(v0,v1,v2,v3); DOUBLE_ROUND(v0,v1,v2,v3); return (v0 ^ v1) ^ (v2 ^ v3); } static int the_siphash_key_is_set = 0; static struct sipkey the_siphash_key; uint64_t siphash24g(const void *src, unsigned long src_sz) { tor_assert(the_siphash_key_is_set); return siphash24(src, src_sz, &the_siphash_key); } void siphash_set_global_key(const struct sipkey *key) { tor_assert(! the_siphash_key_is_set); the_siphash_key.k0 = key->k0; the_siphash_key.k1 = key->k1; the_siphash_key_is_set = 1; } tor-0.2.7.6/src/ext/siphash.h0000644000175000017500000000044712621363246012622 00000000000000#ifndef SIPHASH_H #define SIPHASH_H struct sipkey { uint64_t k0; uint64_t k1; }; uint64_t siphash24(const void *src, unsigned long src_sz, const struct sipkey *key); void siphash_set_global_key(const struct sipkey *key); uint64_t siphash24g(const void *src, unsigned long src_sz); #endif tor-0.2.7.6/src/ext/tinytest.h0000644000175000017500000001034012621363246013037 00000000000000/* tinytest.h -- Copyright 2009-2012 Nick Mathewson * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef TINYTEST_H_INCLUDED_ #define TINYTEST_H_INCLUDED_ /** Flag for a test that needs to run in a subprocess. */ #define TT_FORK (1<<0) /** Runtime flag for a test we've decided to skip. */ #define TT_SKIP (1<<1) /** Internal runtime flag for a test we've decided to run. */ #define TT_ENABLED_ (1<<2) /** Flag for a test that's off by default. */ #define TT_OFF_BY_DEFAULT (1<<3) /** If you add your own flags, make them start at this point. */ #define TT_FIRST_USER_FLAG (1<<4) typedef void (*testcase_fn)(void *); struct testcase_t; /** Functions to initialize/teardown a structure for a testcase. */ struct testcase_setup_t { /** Return a new structure for use by a given testcase. */ void *(*setup_fn)(const struct testcase_t *); /** Clean/free a structure from setup_fn. Return 1 if ok, 0 on err. */ int (*cleanup_fn)(const struct testcase_t *, void *); }; /** A single test-case that you can run. */ struct testcase_t { const char *name; /**< An identifier for this case. */ testcase_fn fn; /**< The function to run to implement this case. */ unsigned long flags; /**< Bitfield of TT_* flags. */ const struct testcase_setup_t *setup; /**< Optional setup/cleanup fns*/ void *setup_data; /**< Extra data usable by setup function */ }; #define END_OF_TESTCASES { NULL, NULL, 0, NULL, NULL } /** A group of tests that are selectable together. */ struct testgroup_t { const char *prefix; /**< Prefix to prepend to testnames. */ struct testcase_t *cases; /** Array, ending with END_OF_TESTCASES */ }; #define END_OF_GROUPS { NULL, NULL} struct testlist_alias_t { const char *name; const char **tests; }; #define END_OF_ALIASES { NULL, NULL } /** Implementation: called from a test to indicate failure, before logging. */ void tinytest_set_test_failed_(void); /** Implementation: called from a test to indicate that we're skipping. */ void tinytest_set_test_skipped_(void); /** Implementation: return 0 for quiet, 1 for normal, 2 for loud. */ int tinytest_get_verbosity_(void); /** Implementation: Set a flag on tests matching a name; returns number * of tests that matched. */ int tinytest_set_flag_(struct testgroup_t *, const char *, int set, unsigned long); /** Implementation: Put a chunk of memory into hex. */ char *tinytest_format_hex_(const void *, unsigned long); /** Set all tests in 'groups' matching the name 'named' to be skipped. */ #define tinytest_skip(groups, named) \ tinytest_set_flag_(groups, named, 1, TT_SKIP) /** Run a single testcase in a single group. */ int testcase_run_one(const struct testgroup_t *,const struct testcase_t *); void tinytest_set_aliases(const struct testlist_alias_t *aliases); /** Run a set of testcases from an END_OF_GROUPS-terminated array of groups, as selected from the command line. */ int tinytest_main(int argc, const char **argv, struct testgroup_t *groups); #endif tor-0.2.7.6/src/ext/include.am0000644000175000017500000001117212621363246012751 00000000000000 AM_CPPFLAGS += -I$(srcdir)/src/ext -Isrc/ext EXTRA_DIST += src/ext/README EXTHEADERS = \ src/ext/ht.h \ src/ext/eventdns.h \ src/ext/tinytest.h \ src/ext/tor_readpassphrase.h \ src/ext/strlcat.c \ src/ext/strlcpy.c \ src/ext/tinytest_macros.h \ src/ext/tor_queue.h \ src/ext/siphash.h noinst_HEADERS+= $(EXTHEADERS) src_ext_ed25519_ref10_libed25519_ref10_a_CFLAGS= src_ext_ed25519_ref10_libed25519_ref10_a_SOURCES= \ src/ext/ed25519/ref10/fe_0.c \ src/ext/ed25519/ref10/fe_1.c \ src/ext/ed25519/ref10/fe_add.c \ src/ext/ed25519/ref10/fe_cmov.c \ src/ext/ed25519/ref10/fe_copy.c \ src/ext/ed25519/ref10/fe_frombytes.c \ src/ext/ed25519/ref10/fe_invert.c \ src/ext/ed25519/ref10/fe_isnegative.c \ src/ext/ed25519/ref10/fe_isnonzero.c \ src/ext/ed25519/ref10/fe_mul.c \ src/ext/ed25519/ref10/fe_neg.c \ src/ext/ed25519/ref10/fe_pow22523.c \ src/ext/ed25519/ref10/fe_sq.c \ src/ext/ed25519/ref10/fe_sq2.c \ src/ext/ed25519/ref10/fe_sub.c \ src/ext/ed25519/ref10/fe_tobytes.c \ src/ext/ed25519/ref10/ge_add.c \ src/ext/ed25519/ref10/ge_double_scalarmult.c \ src/ext/ed25519/ref10/ge_frombytes.c \ src/ext/ed25519/ref10/ge_madd.c \ src/ext/ed25519/ref10/ge_msub.c \ src/ext/ed25519/ref10/ge_p1p1_to_p2.c \ src/ext/ed25519/ref10/ge_p1p1_to_p3.c \ src/ext/ed25519/ref10/ge_p2_0.c \ src/ext/ed25519/ref10/ge_p2_dbl.c \ src/ext/ed25519/ref10/ge_p3_0.c \ src/ext/ed25519/ref10/ge_p3_dbl.c \ src/ext/ed25519/ref10/ge_p3_to_cached.c \ src/ext/ed25519/ref10/ge_p3_to_p2.c \ src/ext/ed25519/ref10/ge_p3_tobytes.c \ src/ext/ed25519/ref10/ge_precomp_0.c \ src/ext/ed25519/ref10/ge_scalarmult_base.c \ src/ext/ed25519/ref10/ge_sub.c \ src/ext/ed25519/ref10/ge_tobytes.c \ src/ext/ed25519/ref10/keypair.c \ src/ext/ed25519/ref10/open.c \ src/ext/ed25519/ref10/sc_muladd.c \ src/ext/ed25519/ref10/sc_reduce.c \ src/ext/ed25519/ref10/sign.c \ src/ext/ed25519/ref10/keyconv.c \ src/ext/ed25519/ref10/blinding.c ED25519_REF10_HDRS = \ src/ext/ed25519/ref10/api.h \ src/ext/ed25519/ref10/base.h \ src/ext/ed25519/ref10/base2.h \ src/ext/ed25519/ref10/crypto_hash_sha512.h \ src/ext/ed25519/ref10/crypto_int32.h \ src/ext/ed25519/ref10/crypto_int64.h \ src/ext/ed25519/ref10/crypto_sign.h \ src/ext/ed25519/ref10/crypto_uint32.h \ src/ext/ed25519/ref10/crypto_uint64.h \ src/ext/ed25519/ref10/crypto_verify_32.h \ src/ext/ed25519/ref10/d.h \ src/ext/ed25519/ref10/d2.h \ src/ext/ed25519/ref10/ed25519_ref10.h \ src/ext/ed25519/ref10/fe.h \ src/ext/ed25519/ref10/ge.h \ src/ext/ed25519/ref10/ge_add.h \ src/ext/ed25519/ref10/ge_madd.h \ src/ext/ed25519/ref10/ge_msub.h \ src/ext/ed25519/ref10/ge_p2_dbl.h \ src/ext/ed25519/ref10/ge_sub.h \ src/ext/ed25519/ref10/pow22523.h \ src/ext/ed25519/ref10/pow225521.h \ src/ext/ed25519/ref10/randombytes.h \ src/ext/ed25519/ref10/sc.h \ src/ext/ed25519/ref10/sqrtm1.h noinst_HEADERS += $(ED25519_REF10_HDRS) LIBED25519_REF10=src/ext/ed25519/ref10/libed25519_ref10.a noinst_LIBRARIES += $(LIBED25519_REF10) src_ext_ed25519_donna_libed25519_donna_a_CFLAGS= \ -DED25519_CUSTOMRANDOM \ -DED25519_SUFFIX=_donna src_ext_ed25519_donna_libed25519_donna_a_SOURCES= \ src/ext/ed25519/donna/ed25519_tor.c ED25519_DONNA_HDRS = \ src/ext/ed25519/donna/curve25519-donna-32bit.h \ src/ext/ed25519/donna/curve25519-donna-64bit.h \ src/ext/ed25519/donna/curve25519-donna-helpers.h \ src/ext/ed25519/donna/curve25519-donna-sse2.h \ src/ext/ed25519/donna/ed25519-donna-32bit-sse2.h \ src/ext/ed25519/donna/ed25519-donna-32bit-tables.h \ src/ext/ed25519/donna/ed25519-donna-64bit-sse2.h \ src/ext/ed25519/donna/ed25519-donna-64bit-tables.h \ src/ext/ed25519/donna/ed25519-donna-64bit-x86-32bit.h \ src/ext/ed25519/donna/ed25519-donna-64bit-x86.h \ src/ext/ed25519/donna/ed25519-donna-basepoint-table.h \ src/ext/ed25519/donna/ed25519-donna-batchverify.h \ src/ext/ed25519/donna/ed25519-donna.h \ src/ext/ed25519/donna/ed25519-donna-impl-base.h \ src/ext/ed25519/donna/ed25519-donna-impl-sse2.h \ src/ext/ed25519/donna/ed25519-donna-portable.h \ src/ext/ed25519/donna/ed25519-donna-portable-identify.h \ src/ext/ed25519/donna/ed25519_donna_tor.h \ src/ext/ed25519/donna/ed25519.h \ src/ext/ed25519/donna/ed25519-hash-custom.h \ src/ext/ed25519/donna/ed25519-hash.h \ src/ext/ed25519/donna/ed25519-randombytes-custom.h \ src/ext/ed25519/donna/ed25519-randombytes.h \ src/ext/ed25519/donna/modm-donna-32bit.h \ src/ext/ed25519/donna/modm-donna-64bit.h \ src/ext/ed25519/donna/regression.h \ src/ext/ed25519/donna/test-ticks.h \ src/ext/ed25519/donna/test-internals.c noinst_HEADERS += $(ED25519_DONNA_HDRS) LIBED25519_DONNA=src/ext/ed25519/donna/libed25519_donna.a noinst_LIBRARIES += $(LIBED25519_DONNA) tor-0.2.7.6/src/ext/README0000644000175000017500000000367212621363245011674 00000000000000 OpenBSD_malloc_Linux.c: The OpenBSD malloc implementation, ported to Linux. Used only when --enable-openbsd-malloc is passed to the configure script. strlcat.c strlcpy.c Implementations of strlcat and strlcpy, the more sane replacements for strcat and strcpy. These are nonstandard, and some libc implementations refuse to add them for religious reasons. eventdns.[ch] A fork of Libevent's DNS implementation, used by Tor when Libevent 2.0 or later is not available. Once Libevent 2.0 is required, we should throw this away; it has diverged from evdns.[ch], and is no longer easily mergeable. ht.h An implementation of a hash table in the style of Niels Provos's tree.h. Shared with Libevent. tinytest.[ch] tinytest_demos.c tinytest_macros.h A unit testing framework. https://github.com/nmathewson/tinytest tor_queue.h A copy of sys/queue.h from OpenBSD. We keep our own copy rather than using sys/queue.h, since some platforms don't have a sys/queue.h, and the ones that do have diverged in incompatible ways. (CIRCLEQ or no CIRCLEQ? SIMPLQ or STAILQ?) We also rename the identifiers with a TOR_ prefix to avoid conflicts with the system headers. curve25519_donna/*.c A copy of Adam Langley's curve25519-donna mostly-portable implementations of curve25519. csiphash.c siphash.h Marek Majkowski's implementation of siphash 2-4, a secure keyed hash algorithm to avoid collision-based DoS attacks against hash tables. trunnel/*.[ch] Headers and runtime code for Trunnel, a system for generating code to encode and decode binary formats. ed25519/ref10/* Daniel Bernsten's portable ref10 implementation of ed25519. Public domain. ed25519/donna/* Andrew Moon's semi-portable ed25519-donna implementation of ed25519. Public domain. readpassphrase.[ch] Portable readpassphrase implementation from OpenSSH portable, version 6.8p1. tor-0.2.7.6/src/ext/readpassphrase.c0000644000175000017500000001334212621363246014161 00000000000000/* $OpenBSD: readpassphrase.c,v 1.22 2010/01/13 10:20:54 dtucker Exp $ */ /* * Copyright (c) 2000-2002, 2007 Todd C. Miller * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * * Sponsored in part by the Defense Advanced Research Projects * Agency (DARPA) and Air Force Research Laboratory, Air Force * Materiel Command, USAF, under agreement number F39502-99-1-0512. */ /* OPENBSD ORIGINAL: lib/libc/gen/readpassphrase.c */ #include "orconfig.h" #ifndef HAVE_READPASSPHRASE #include #include #include #include #include "tor_readpassphrase.h" #include #include #include #ifndef _PATH_TTY # define _PATH_TTY "/dev/tty" #endif #ifdef TCSASOFT # define _T_FLUSH (TCSAFLUSH|TCSASOFT) #else # define _T_FLUSH (TCSAFLUSH) #endif /* SunOS 4.x which lacks _POSIX_VDISABLE, but has VDISABLE */ #if !defined(_POSIX_VDISABLE) && defined(VDISABLE) # define _POSIX_VDISABLE VDISABLE #endif #ifndef _NSIG # ifdef NSIG # define _NSIG NSIG # else # define _NSIG 128 # endif #endif static volatile sig_atomic_t signo[_NSIG]; static void handler(int); char * readpassphrase(const char *prompt, char *buf, size_t bufsiz, int flags) { ssize_t bytes_written = 0; ssize_t nr; int input, output, save_errno, i, need_restart; char ch, *p, *end; struct termios term, oterm; struct sigaction sa, savealrm, saveint, savehup, savequit, saveterm; struct sigaction savetstp, savettin, savettou, savepipe; /* I suppose we could alloc on demand in this case (XXX). */ if (bufsiz == 0) { errno = EINVAL; return(NULL); } restart: for (i = 0; i < _NSIG; i++) signo[i] = 0; nr = -1; save_errno = 0; need_restart = 0; /* * Read and write to /dev/tty if available. If not, read from * stdin and write to stderr unless a tty is required. */ if ((flags & RPP_STDIN) || (input = output = open(_PATH_TTY, O_RDWR)) == -1) { if (flags & RPP_REQUIRE_TTY) { errno = ENOTTY; return(NULL); } input = STDIN_FILENO; output = STDERR_FILENO; } /* * Catch signals that would otherwise cause the user to end * up with echo turned off in the shell. Don't worry about * things like SIGXCPU and SIGVTALRM for now. */ sigemptyset(&sa.sa_mask); sa.sa_flags = 0; /* don't restart system calls */ sa.sa_handler = handler; (void)sigaction(SIGALRM, &sa, &savealrm); (void)sigaction(SIGHUP, &sa, &savehup); (void)sigaction(SIGINT, &sa, &saveint); (void)sigaction(SIGPIPE, &sa, &savepipe); (void)sigaction(SIGQUIT, &sa, &savequit); (void)sigaction(SIGTERM, &sa, &saveterm); (void)sigaction(SIGTSTP, &sa, &savetstp); (void)sigaction(SIGTTIN, &sa, &savettin); (void)sigaction(SIGTTOU, &sa, &savettou); /* Turn off echo if possible. */ if (input != STDIN_FILENO && tcgetattr(input, &oterm) == 0) { memcpy(&term, &oterm, sizeof(term)); if (!(flags & RPP_ECHO_ON)) term.c_lflag &= ~(ECHO | ECHONL); #ifdef VSTATUS if (term.c_cc[VSTATUS] != _POSIX_VDISABLE) term.c_cc[VSTATUS] = _POSIX_VDISABLE; #endif (void)tcsetattr(input, _T_FLUSH, &term); } else { memset(&term, 0, sizeof(term)); term.c_lflag |= ECHO; memset(&oterm, 0, sizeof(oterm)); oterm.c_lflag |= ECHO; } /* No I/O if we are already backgrounded. */ if (signo[SIGTTOU] != 1 && signo[SIGTTIN] != 1) { if (!(flags & RPP_STDIN)) bytes_written = write(output, prompt, strlen(prompt)); end = buf + bufsiz - 1; p = buf; while ((nr = read(input, &ch, 1)) == 1 && ch != '\n' && ch != '\r') { if (p < end) { if ((flags & RPP_SEVENBIT)) ch &= 0x7f; if (isalpha(ch)) { if ((flags & RPP_FORCELOWER)) ch = (char)tolower(ch); if ((flags & RPP_FORCEUPPER)) ch = (char)toupper(ch); } *p++ = ch; } } *p = '\0'; save_errno = errno; if (!(term.c_lflag & ECHO)) bytes_written = write(output, "\n", 1); } (void) bytes_written; /* Restore old terminal settings and signals. */ if (memcmp(&term, &oterm, sizeof(term)) != 0) { while (tcsetattr(input, _T_FLUSH, &oterm) == -1 && errno == EINTR) continue; } (void)sigaction(SIGALRM, &savealrm, NULL); (void)sigaction(SIGHUP, &savehup, NULL); (void)sigaction(SIGINT, &saveint, NULL); (void)sigaction(SIGQUIT, &savequit, NULL); (void)sigaction(SIGPIPE, &savepipe, NULL); (void)sigaction(SIGTERM, &saveterm, NULL); (void)sigaction(SIGTSTP, &savetstp, NULL); (void)sigaction(SIGTTIN, &savettin, NULL); (void)sigaction(SIGTTOU, &savettou, NULL); if (input != STDIN_FILENO) (void)close(input); /* * If we were interrupted by a signal, resend it to ourselves * now that we have restored the signal handlers. */ for (i = 0; i < _NSIG; i++) { if (signo[i]) { kill(getpid(), i); switch (i) { case SIGTSTP: case SIGTTIN: case SIGTTOU: need_restart = 1; } } } if (need_restart) goto restart; if (save_errno) errno = save_errno; return(nr == -1 ? NULL : buf); } #if 0 char * getpass(const char *prompt) { static char buf[_PASSWORD_LEN + 1]; return(readpassphrase(prompt, buf, sizeof(buf), RPP_ECHO_OFF)); } #endif static void handler(int s) { signo[s] = 1; } #endif /* HAVE_READPASSPHRASE */ tor-0.2.7.6/src/ext/ht.h0000644000175000017500000007563212621363246011606 00000000000000/* Copyright (c) 2002, Christopher Clark. * Copyright (c) 2005-2006, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See license at end. */ /* Based on ideas by Christopher Clark and interfaces from Niels Provos. */ #ifndef HT_H_INCLUDED_ #define HT_H_INCLUDED_ #define HT_HEAD(name, type) \ struct name { \ /* The hash table itself. */ \ struct type **hth_table; \ /* How long is the hash table? */ \ unsigned hth_table_length; \ /* How many elements does the table contain? */ \ unsigned hth_n_entries; \ /* How many elements will we allow in the table before resizing it? */ \ unsigned hth_load_limit; \ /* Position of hth_table_length in the primes table. */ \ int hth_prime_idx; \ } #define HT_INITIALIZER() \ { NULL, 0, 0, 0, -1 } #ifdef HT_NO_CACHE_HASH_VALUES #define HT_ENTRY(type) \ struct { \ struct type *hte_next; \ } #else #define HT_ENTRY(type) \ struct { \ struct type *hte_next; \ unsigned hte_hash; \ } #endif /* || 0 is for -Wparentheses-equality (-Wall?) appeasement under clang */ #define HT_EMPTY(head) \ (((head)->hth_n_entries == 0) || 0) /* How many elements in 'head'? */ #define HT_SIZE(head) \ ((head)->hth_n_entries) /* Return memory usage for a hashtable (not counting the entries themselves) */ #define HT_MEM_USAGE(head) \ (sizeof(*head) + (head)->hth_table_length * sizeof(void*)) #define HT_FIND(name, head, elm) name##_HT_FIND((head), (elm)) #define HT_INSERT(name, head, elm) name##_HT_INSERT((head), (elm)) #define HT_REPLACE(name, head, elm) name##_HT_REPLACE((head), (elm)) #define HT_REMOVE(name, head, elm) name##_HT_REMOVE((head), (elm)) #define HT_START(name, head) name##_HT_START(head) #define HT_NEXT(name, head, elm) name##_HT_NEXT((head), (elm)) #define HT_NEXT_RMV(name, head, elm) name##_HT_NEXT_RMV((head), (elm)) #define HT_CLEAR(name, head) name##_HT_CLEAR(head) #define HT_INIT(name, head) name##_HT_INIT(head) #define HT_REP_IS_BAD_(name, head) name##_HT_REP_IS_BAD_(head) /* Helper: */ static INLINE unsigned ht_improve_hash(unsigned h) { /* Aim to protect against poor hash functions by adding logic here * - logic taken from java 1.4 hashtable source */ h += ~(h << 9); h ^= ((h >> 14) | (h << 18)); /* >>> */ h += (h << 4); h ^= ((h >> 10) | (h << 22)); /* >>> */ return h; } #if 0 /** Basic string hash function, from Java standard String.hashCode(). */ static INLINE unsigned ht_string_hash(const char *s) { unsigned h = 0; int m = 1; while (*s) { h += ((signed char)*s++)*m; m = (m<<5)-1; /* m *= 31 */ } return h; } #endif #if 0 /** Basic string hash function, from Python's str.__hash__() */ static INLINE unsigned ht_string_hash(const char *s) { unsigned h; const unsigned char *cp = (const unsigned char *)s; h = *cp << 7; while (*cp) { h = (1000003*h) ^ *cp++; } /* This conversion truncates the length of the string, but that's ok. */ h ^= (unsigned)(cp-(const unsigned char*)s); return h; } #endif #ifndef HT_NO_CACHE_HASH_VALUES #define HT_SET_HASH_(elm, field, hashfn) \ do { (elm)->field.hte_hash = hashfn(elm); } while (0) #define HT_SET_HASHVAL_(elm, field, val) \ do { (elm)->field.hte_hash = (val); } while (0) #define HT_ELT_HASH_(elm, field, hashfn) \ ((elm)->field.hte_hash) #else #define HT_SET_HASH_(elm, field, hashfn) \ ((void)0) #define HT_ELT_HASH_(elm, field, hashfn) \ (hashfn(elm)) #define HT_SET_HASHVAL_(elm, field, val) \ ((void)0) #endif #define HT_BUCKET_NUM_(head, field, elm, hashfn) \ (HT_ELT_HASH_(elm,field,hashfn) % head->hth_table_length) /* Helper: alias for the bucket containing 'elm'. */ #define HT_BUCKET_(head, field, elm, hashfn) \ ((head)->hth_table[HT_BUCKET_NUM_(head, field, elm, hashfn)]) #define HT_FOREACH(x, name, head) \ for ((x) = HT_START(name, head); \ (x) != NULL; \ (x) = HT_NEXT(name, head, x)) #ifndef HT_NDEBUG #define HT_ASSERT_(x) tor_assert(x) #else #define HT_ASSERT_(x) (void)0 #endif #define HT_PROTOTYPE(name, type, field, hashfn, eqfn) \ int name##_HT_GROW(struct name *ht, unsigned min_capacity); \ void name##_HT_CLEAR(struct name *ht); \ int name##_HT_REP_IS_BAD_(const struct name *ht); \ static INLINE void \ name##_HT_INIT(struct name *head) { \ head->hth_table_length = 0; \ head->hth_table = NULL; \ head->hth_n_entries = 0; \ head->hth_load_limit = 0; \ head->hth_prime_idx = -1; \ } \ /* Helper: returns a pointer to the right location in the table \ * 'head' to find or insert the element 'elm'. */ \ static INLINE struct type ** \ name##_HT_FIND_P_(struct name *head, struct type *elm) \ { \ struct type **p; \ if (!head->hth_table) \ return NULL; \ p = &HT_BUCKET_(head, field, elm, hashfn); \ while (*p) { \ if (eqfn(*p, elm)) \ return p; \ p = &(*p)->field.hte_next; \ } \ return p; \ } \ /* Return a pointer to the element in the table 'head' matching 'elm', \ * or NULL if no such element exists */ \ ATTR_UNUSED static INLINE struct type * \ name##_HT_FIND(const struct name *head, struct type *elm) \ { \ struct type **p; \ struct name *h = (struct name *) head; \ HT_SET_HASH_(elm, field, hashfn); \ p = name##_HT_FIND_P_(h, elm); \ return p ? *p : NULL; \ } \ /* Insert the element 'elm' into the table 'head'. Do not call this \ * function if the table might already contain a matching element. */ \ ATTR_UNUSED static INLINE void \ name##_HT_INSERT(struct name *head, struct type *elm) \ { \ struct type **p; \ if (!head->hth_table || head->hth_n_entries >= head->hth_load_limit) \ name##_HT_GROW(head, head->hth_n_entries+1); \ ++head->hth_n_entries; \ HT_SET_HASH_(elm, field, hashfn); \ p = &HT_BUCKET_(head, field, elm, hashfn); \ elm->field.hte_next = *p; \ *p = elm; \ } \ /* Insert the element 'elm' into the table 'head'. If there already \ * a matching element in the table, replace that element and return \ * it. */ \ ATTR_UNUSED static INLINE struct type * \ name##_HT_REPLACE(struct name *head, struct type *elm) \ { \ struct type **p, *r; \ if (!head->hth_table || head->hth_n_entries >= head->hth_load_limit) \ name##_HT_GROW(head, head->hth_n_entries+1); \ HT_SET_HASH_(elm, field, hashfn); \ p = name##_HT_FIND_P_(head, elm); \ r = *p; \ *p = elm; \ if (r && (r!=elm)) { \ elm->field.hte_next = r->field.hte_next; \ r->field.hte_next = NULL; \ return r; \ } else { \ ++head->hth_n_entries; \ return NULL; \ } \ } \ /* Remove any element matching 'elm' from the table 'head'. If such \ * an element is found, return it; otherwise return NULL. */ \ ATTR_UNUSED static INLINE struct type * \ name##_HT_REMOVE(struct name *head, struct type *elm) \ { \ struct type **p, *r; \ HT_SET_HASH_(elm, field, hashfn); \ p = name##_HT_FIND_P_(head,elm); \ if (!p || !*p) \ return NULL; \ r = *p; \ *p = r->field.hte_next; \ r->field.hte_next = NULL; \ --head->hth_n_entries; \ return r; \ } \ /* Invoke the function 'fn' on every element of the table 'head', \ * using 'data' as its second argument. If the function returns \ * nonzero, remove the most recently examined element before invoking \ * the function again. */ \ ATTR_UNUSED static INLINE void \ name##_HT_FOREACH_FN(struct name *head, \ int (*fn)(struct type *, void *), \ void *data) \ { \ unsigned idx; \ struct type **p, **nextp, *next; \ if (!head->hth_table) \ return; \ for (idx=0; idx < head->hth_table_length; ++idx) { \ p = &head->hth_table[idx]; \ while (*p) { \ nextp = &(*p)->field.hte_next; \ next = *nextp; \ if (fn(*p, data)) { \ --head->hth_n_entries; \ *p = next; \ } else { \ p = nextp; \ } \ } \ } \ } \ /* Return a pointer to the first element in the table 'head', under \ * an arbitrary order. This order is stable under remove operations, \ * but not under others. If the table is empty, return NULL. */ \ ATTR_UNUSED static INLINE struct type ** \ name##_HT_START(struct name *head) \ { \ unsigned b = 0; \ while (b < head->hth_table_length) { \ if (head->hth_table[b]) { \ HT_ASSERT_(b == \ HT_BUCKET_NUM_(head,field,head->hth_table[b],hashfn)); \ return &head->hth_table[b]; \ } \ ++b; \ } \ return NULL; \ } \ /* Return the next element in 'head' after 'elm', under the arbitrary \ * order used by HT_START. If there are no more elements, return \ * NULL. If 'elm' is to be removed from the table, you must call \ * this function for the next value before you remove it. \ */ \ ATTR_UNUSED static INLINE struct type ** \ name##_HT_NEXT(struct name *head, struct type **elm) \ { \ if ((*elm)->field.hte_next) { \ HT_ASSERT_(HT_BUCKET_NUM_(head,field,*elm,hashfn) == \ HT_BUCKET_NUM_(head,field,(*elm)->field.hte_next,hashfn)); \ return &(*elm)->field.hte_next; \ } else { \ unsigned b = HT_BUCKET_NUM_(head,field,*elm,hashfn)+1; \ while (b < head->hth_table_length) { \ if (head->hth_table[b]) { \ HT_ASSERT_(b == \ HT_BUCKET_NUM_(head,field,head->hth_table[b],hashfn)); \ return &head->hth_table[b]; \ } \ ++b; \ } \ return NULL; \ } \ } \ ATTR_UNUSED static INLINE struct type ** \ name##_HT_NEXT_RMV(struct name *head, struct type **elm) \ { \ unsigned h = HT_ELT_HASH_(*elm, field, hashfn); \ *elm = (*elm)->field.hte_next; \ --head->hth_n_entries; \ if (*elm) { \ return elm; \ } else { \ unsigned b = (h % head->hth_table_length)+1; \ while (b < head->hth_table_length) { \ if (head->hth_table[b]) \ return &head->hth_table[b]; \ ++b; \ } \ return NULL; \ } \ } #define HT_GENERATE2(name, type, field, hashfn, eqfn, load, reallocarrayfn, \ freefn) \ /* Primes that aren't too far from powers of two. We stop at */ \ /* P=402653189 because P*sizeof(void*) is less than SSIZE_MAX */ \ /* even on a 32-bit platform. */ \ static unsigned name##_PRIMES[] = { \ 53, 97, 193, 389, \ 769, 1543, 3079, 6151, \ 12289, 24593, 49157, 98317, \ 196613, 393241, 786433, 1572869, \ 3145739, 6291469, 12582917, 25165843, \ 50331653, 100663319, 201326611, 402653189 \ }; \ static unsigned name##_N_PRIMES = \ (unsigned)(sizeof(name##_PRIMES)/sizeof(name##_PRIMES[0])); \ /* Expand the internal table of 'head' until it is large enough to \ * hold 'size' elements. Return 0 on success, -1 on allocation \ * failure. */ \ int \ name##_HT_GROW(struct name *head, unsigned size) \ { \ unsigned new_len, new_load_limit; \ int prime_idx; \ struct type **new_table; \ if (head->hth_prime_idx == (int)name##_N_PRIMES - 1) \ return 0; \ if (head->hth_load_limit > size) \ return 0; \ prime_idx = head->hth_prime_idx; \ do { \ new_len = name##_PRIMES[++prime_idx]; \ new_load_limit = (unsigned)(load*new_len); \ } while (new_load_limit <= size && \ prime_idx < (int)name##_N_PRIMES); \ if ((new_table = reallocarrayfn(NULL, new_len, sizeof(struct type*)))) { \ unsigned b; \ memset(new_table, 0, new_len*sizeof(struct type*)); \ for (b = 0; b < head->hth_table_length; ++b) { \ struct type *elm, *next; \ unsigned b2; \ elm = head->hth_table[b]; \ while (elm) { \ next = elm->field.hte_next; \ b2 = HT_ELT_HASH_(elm, field, hashfn) % new_len; \ elm->field.hte_next = new_table[b2]; \ new_table[b2] = elm; \ elm = next; \ } \ } \ if (head->hth_table) \ freefn(head->hth_table); \ head->hth_table = new_table; \ } else { \ unsigned b, b2; \ new_table = reallocarrayfn(head->hth_table, new_len, sizeof(struct type*)); \ if (!new_table) return -1; \ memset(new_table + head->hth_table_length, 0, \ (new_len - head->hth_table_length)*sizeof(struct type*)); \ for (b=0; b < head->hth_table_length; ++b) { \ struct type *e, **pE; \ for (pE = &new_table[b], e = *pE; e != NULL; e = *pE) { \ b2 = HT_ELT_HASH_(e, field, hashfn) % new_len; \ if (b2 == b) { \ pE = &e->field.hte_next; \ } else { \ *pE = e->field.hte_next; \ e->field.hte_next = new_table[b2]; \ new_table[b2] = e; \ } \ } \ } \ head->hth_table = new_table; \ } \ head->hth_table_length = new_len; \ head->hth_prime_idx = prime_idx; \ head->hth_load_limit = new_load_limit; \ return 0; \ } \ /* Free all storage held by 'head'. Does not free 'head' itself, or \ * individual elements. */ \ void \ name##_HT_CLEAR(struct name *head) \ { \ if (head->hth_table) \ freefn(head->hth_table); \ head->hth_table_length = 0; \ name##_HT_INIT(head); \ } \ /* Debugging helper: return false iff the representation of 'head' is \ * internally consistent. */ \ int \ name##_HT_REP_IS_BAD_(const struct name *head) \ { \ unsigned n, i; \ struct type *elm; \ if (!head->hth_table_length) { \ if (!head->hth_table && !head->hth_n_entries && \ !head->hth_load_limit && head->hth_prime_idx == -1) \ return 0; \ else \ return 1; \ } \ if (!head->hth_table || head->hth_prime_idx < 0 || \ !head->hth_load_limit) \ return 2; \ if (head->hth_n_entries > head->hth_load_limit) \ return 3; \ if (head->hth_table_length != name##_PRIMES[head->hth_prime_idx]) \ return 4; \ if (head->hth_load_limit != (unsigned)(load*head->hth_table_length)) \ return 5; \ for (n = i = 0; i < head->hth_table_length; ++i) { \ for (elm = head->hth_table[i]; elm; elm = elm->field.hte_next) { \ if (HT_ELT_HASH_(elm, field, hashfn) != hashfn(elm)) \ return 1000 + i; \ if (HT_BUCKET_NUM_(head,field,elm,hashfn) != i) \ return 10000 + i; \ ++n; \ } \ } \ if (n != head->hth_n_entries) \ return 6; \ return 0; \ } #define HT_GENERATE(name, type, field, hashfn, eqfn, load, mallocfn, \ reallocfn, freefn) \ static void * \ name##_reallocarray(void *arg, size_t a, size_t b) \ { \ if ((b) && (a) > SIZE_MAX / (b)) \ return NULL; \ if (arg) \ return reallocfn((arg),(a)*(b)); \ else \ return mallocfn((a)*(b)); \ } \ HT_GENERATE2(name, type, field, hashfn, eqfn, load, \ name##_reallocarray, freefn) /** Implements an over-optimized "find and insert if absent" block; * not meant for direct usage by typical code, or usage outside the critical * path.*/ #define HT_FIND_OR_INSERT_(name, field, hashfn, head, eltype, elm, var, y, n) \ { \ struct name *var##_head_ = head; \ struct eltype **var; \ if (!var##_head_->hth_table || \ var##_head_->hth_n_entries >= var##_head_->hth_load_limit) \ name##_HT_GROW(var##_head_, var##_head_->hth_n_entries+1); \ HT_SET_HASH_((elm), field, hashfn); \ var = name##_HT_FIND_P_(var##_head_, (elm)); \ if (*var) { \ y; \ } else { \ n; \ } \ } #define HT_FOI_INSERT_(field, head, elm, newent, var) \ { \ HT_SET_HASHVAL_(newent, field, (elm)->field.hte_hash); \ newent->field.hte_next = NULL; \ *var = newent; \ ++((head)->hth_n_entries); \ } /* * Copyright 2005, Nick Mathewson. Implementation logic is adapted from code * by Christopher Clark, retrofit to allow drop-in memory management, and to * use the same interface as Niels Provos's tree.h. This is probably still * a derived work, so the original license below still applies. * * Copyright (c) 2002, Christopher Clark * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of the original author; nor the names of any contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #endif tor-0.2.7.6/src/or/0000755000175000017500000000000012632347251010705 500000000000000tor-0.2.7.6/src/or/directory.h0000644000175000017500000001405212631612325013000 00000000000000/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file directory.h * \brief Header file for directory.c. **/ #ifndef TOR_DIRECTORY_H #define TOR_DIRECTORY_H int directories_have_accepted_server_descriptor(void); void directory_post_to_dirservers(uint8_t dir_purpose, uint8_t router_purpose, dirinfo_type_t type, const char *payload, size_t payload_len, size_t extrainfo_len); MOCK_DECL(void, directory_get_from_dirserver, (uint8_t dir_purpose, uint8_t router_purpose, const char *resource, int pds_flags)); void directory_get_from_all_authorities(uint8_t dir_purpose, uint8_t router_purpose, const char *resource); /** Enumeration of ways to connect to a directory server */ typedef enum { /** Default: connect over a one-hop Tor circuit but fall back to direct * connection */ DIRIND_ONEHOP=0, /** Connect over a multi-hop anonymizing Tor circuit */ DIRIND_ANONYMOUS=1, /** Connect to the DirPort directly */ DIRIND_DIRECT_CONN, /** Connect over a multi-hop anonymizing Tor circuit to our dirport */ DIRIND_ANON_DIRPORT, } dir_indirection_t; void directory_initiate_command_routerstatus(const routerstatus_t *status, uint8_t dir_purpose, uint8_t router_purpose, dir_indirection_t indirection, const char *resource, const char *payload, size_t payload_len, time_t if_modified_since); void directory_initiate_command_routerstatus_rend(const routerstatus_t *status, uint8_t dir_purpose, uint8_t router_purpose, dir_indirection_t indirection, const char *resource, const char *payload, size_t payload_len, time_t if_modified_since, const rend_data_t *rend_query); int parse_http_response(const char *headers, int *code, time_t *date, compress_method_t *compression, char **response); int connection_dir_is_encrypted(dir_connection_t *conn); int connection_dir_reached_eof(dir_connection_t *conn); int connection_dir_process_inbuf(dir_connection_t *conn); int connection_dir_finished_flushing(dir_connection_t *conn); int connection_dir_finished_connecting(dir_connection_t *conn); void connection_dir_about_to_close(dir_connection_t *dir_conn); void directory_initiate_command(const tor_addr_t *addr, uint16_t or_port, uint16_t dir_port, const char *digest, uint8_t dir_purpose, uint8_t router_purpose, dir_indirection_t indirection, const char *resource, const char *payload, size_t payload_len, time_t if_modified_since); #define DSR_HEX (1<<0) #define DSR_BASE64 (1<<1) #define DSR_DIGEST256 (1<<2) #define DSR_SORT_UNIQ (1<<3) int dir_split_resource_into_fingerprints(const char *resource, smartlist_t *fp_out, int *compressed_out, int flags); int dir_split_resource_into_fingerprint_pairs(const char *res, smartlist_t *pairs_out); char *directory_dump_request_log(void); void note_request(const char *key, size_t bytes); int router_supports_extrainfo(const char *identity_digest, int is_authority); time_t download_status_increment_failure(download_status_t *dls, int status_code, const char *item, int server, time_t now); /** Increment the failure count of the download_status_t dls, with * the optional status code sc. */ #define download_status_failed(dls, sc) \ download_status_increment_failure((dls), (sc), NULL, \ get_options()->DirPort_set, time(NULL)) void download_status_reset(download_status_t *dls); static int download_status_is_ready(download_status_t *dls, time_t now, int max_failures); /** Return true iff, as of now, the resource tracked by dls is * ready to get its download reattempted. */ static INLINE int download_status_is_ready(download_status_t *dls, time_t now, int max_failures) { return (dls->n_download_failures <= max_failures && dls->next_attempt_at <= now); } static void download_status_mark_impossible(download_status_t *dl); /** Mark dl as never downloadable. */ static INLINE void download_status_mark_impossible(download_status_t *dl) { dl->n_download_failures = IMPOSSIBLE_TO_DOWNLOAD; } int download_status_get_n_failures(const download_status_t *dls); #ifdef TOR_UNIT_TESTS /* Used only by directory.c and test_dir.c */ STATIC int parse_http_url(const char *headers, char **url); STATIC int purpose_needs_anonymity(uint8_t dir_purpose, uint8_t router_purpose); STATIC dirinfo_type_t dir_fetch_type(int dir_purpose, int router_purpose, const char *resource); #endif #endif tor-0.2.7.6/src/or/circuitmux_ewma.c0000644000175000017500000005500512621363246014203 00000000000000/* * Copyright (c) 2012-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file circuitmux_ewma.c * \brief EWMA circuit selection as a circuitmux_t policy **/ #define TOR_CIRCUITMUX_EWMA_C_ #include #include "or.h" #include "circuitmux.h" #include "circuitmux_ewma.h" #include "networkstatus.h" /*** EWMA parameter #defines ***/ /** How long does a tick last (seconds)? */ #define EWMA_TICK_LEN 10 /** The default per-tick scale factor, if it hasn't been overridden by a * consensus or a configuration setting. zero means "disabled". */ #define EWMA_DEFAULT_HALFLIFE 0.0 /*** Some useful constant #defines ***/ /*DOCDOC*/ #define EPSILON 0.00001 /*DOCDOC*/ #define LOG_ONEHALF -0.69314718055994529 /*** EWMA structures ***/ typedef struct cell_ewma_s cell_ewma_t; typedef struct ewma_policy_data_s ewma_policy_data_t; typedef struct ewma_policy_circ_data_s ewma_policy_circ_data_t; /** * The cell_ewma_t structure keeps track of how many cells a circuit has * transferred recently. It keeps an EWMA (exponentially weighted moving * average) of the number of cells flushed from the circuit queue onto a * connection in channel_flush_from_first_active_circuit(). */ struct cell_ewma_s { /** The last 'tick' at which we recalibrated cell_count. * * A cell sent at exactly the start of this tick has weight 1.0. Cells sent * since the start of this tick have weight greater than 1.0; ones sent * earlier have less weight. */ unsigned int last_adjusted_tick; /** The EWMA of the cell count. */ double cell_count; /** True iff this is the cell count for a circuit's previous * channel. */ unsigned int is_for_p_chan : 1; /** The position of the circuit within the OR connection's priority * queue. */ int heap_index; }; struct ewma_policy_data_s { circuitmux_policy_data_t base_; /** * Priority queue of cell_ewma_t for circuits with queued cells waiting * for room to free up on the channel that owns this circuitmux. Kept * in heap order according to EWMA. This was formerly in channel_t, and * in or_connection_t before that. */ smartlist_t *active_circuit_pqueue; /** * The tick on which the cell_ewma_ts in active_circuit_pqueue last had * their ewma values rescaled. This was formerly in channel_t, and in * or_connection_t before that. */ unsigned int active_circuit_pqueue_last_recalibrated; }; struct ewma_policy_circ_data_s { circuitmux_policy_circ_data_t base_; /** * The EWMA count for the number of cells flushed from this circuit * onto this circuitmux. Used to determine which circuit to flush * from next. This was formerly in circuit_t and or_circuit_t. */ cell_ewma_t cell_ewma; /** * Pointer back to the circuit_t this is for; since we're separating * out circuit selection policy like this, we can't attach cell_ewma_t * to the circuit_t any more, so we can't use SUBTYPE_P directly to a * circuit_t like before; instead get it here. */ circuit_t *circ; }; #define EWMA_POL_DATA_MAGIC 0x2fd8b16aU #define EWMA_POL_CIRC_DATA_MAGIC 0x761e7747U /*** Downcasts for the above types ***/ static ewma_policy_data_t * TO_EWMA_POL_DATA(circuitmux_policy_data_t *); static ewma_policy_circ_data_t * TO_EWMA_POL_CIRC_DATA(circuitmux_policy_circ_data_t *); /** * Downcast a circuitmux_policy_data_t to an ewma_policy_data_t and assert * if the cast is impossible. */ static INLINE ewma_policy_data_t * TO_EWMA_POL_DATA(circuitmux_policy_data_t *pol) { if (!pol) return NULL; else { tor_assert(pol->magic == EWMA_POL_DATA_MAGIC); return DOWNCAST(ewma_policy_data_t, pol); } } /** * Downcast a circuitmux_policy_circ_data_t to an ewma_policy_circ_data_t * and assert if the cast is impossible. */ static INLINE ewma_policy_circ_data_t * TO_EWMA_POL_CIRC_DATA(circuitmux_policy_circ_data_t *pol) { if (!pol) return NULL; else { tor_assert(pol->magic == EWMA_POL_CIRC_DATA_MAGIC); return DOWNCAST(ewma_policy_circ_data_t, pol); } } /*** Static declarations for circuitmux_ewma.c ***/ static void add_cell_ewma(ewma_policy_data_t *pol, cell_ewma_t *ewma); static int compare_cell_ewma_counts(const void *p1, const void *p2); static unsigned cell_ewma_tick_from_timeval(const struct timeval *now, double *remainder_out); static circuit_t * cell_ewma_to_circuit(cell_ewma_t *ewma); static INLINE double get_scale_factor(unsigned from_tick, unsigned to_tick); static cell_ewma_t * pop_first_cell_ewma(ewma_policy_data_t *pol); static void remove_cell_ewma(ewma_policy_data_t *pol, cell_ewma_t *ewma); static void scale_single_cell_ewma(cell_ewma_t *ewma, unsigned cur_tick); static void scale_active_circuits(ewma_policy_data_t *pol, unsigned cur_tick); /*** Circuitmux policy methods ***/ static circuitmux_policy_data_t * ewma_alloc_cmux_data(circuitmux_t *cmux); static void ewma_free_cmux_data(circuitmux_t *cmux, circuitmux_policy_data_t *pol_data); static circuitmux_policy_circ_data_t * ewma_alloc_circ_data(circuitmux_t *cmux, circuitmux_policy_data_t *pol_data, circuit_t *circ, cell_direction_t direction, unsigned int cell_count); static void ewma_free_circ_data(circuitmux_t *cmux, circuitmux_policy_data_t *pol_data, circuit_t *circ, circuitmux_policy_circ_data_t *pol_circ_data); static void ewma_notify_circ_active(circuitmux_t *cmux, circuitmux_policy_data_t *pol_data, circuit_t *circ, circuitmux_policy_circ_data_t *pol_circ_data); static void ewma_notify_circ_inactive(circuitmux_t *cmux, circuitmux_policy_data_t *pol_data, circuit_t *circ, circuitmux_policy_circ_data_t *pol_circ_data); static void ewma_notify_xmit_cells(circuitmux_t *cmux, circuitmux_policy_data_t *pol_data, circuit_t *circ, circuitmux_policy_circ_data_t *pol_circ_data, unsigned int n_cells); static circuit_t * ewma_pick_active_circuit(circuitmux_t *cmux, circuitmux_policy_data_t *pol_data); static int ewma_cmp_cmux(circuitmux_t *cmux_1, circuitmux_policy_data_t *pol_data_1, circuitmux_t *cmux_2, circuitmux_policy_data_t *pol_data_2); /*** EWMA global variables ***/ /** The per-tick scale factor to be used when computing cell-count EWMA * values. (A cell sent N ticks before the start of the current tick * has value ewma_scale_factor ** N.) */ static double ewma_scale_factor = 0.1; /* DOCDOC ewma_enabled */ static int ewma_enabled = 0; /*** EWMA circuitmux_policy_t method table ***/ circuitmux_policy_t ewma_policy = { /*.alloc_cmux_data =*/ ewma_alloc_cmux_data, /*.free_cmux_data =*/ ewma_free_cmux_data, /*.alloc_circ_data =*/ ewma_alloc_circ_data, /*.free_circ_data =*/ ewma_free_circ_data, /*.notify_circ_active =*/ ewma_notify_circ_active, /*.notify_circ_inactive =*/ ewma_notify_circ_inactive, /*.notify_set_n_cells =*/ NULL, /* EWMA doesn't need this */ /*.notify_xmit_cells =*/ ewma_notify_xmit_cells, /*.pick_active_circuit =*/ ewma_pick_active_circuit, /*.cmp_cmux =*/ ewma_cmp_cmux }; /*** EWMA method implementations using the below EWMA helper functions ***/ /** * Allocate an ewma_policy_data_t and upcast it to a circuitmux_policy_data_t; * this is called when setting the policy on a circuitmux_t to ewma_policy. */ static circuitmux_policy_data_t * ewma_alloc_cmux_data(circuitmux_t *cmux) { ewma_policy_data_t *pol = NULL; tor_assert(cmux); pol = tor_malloc_zero(sizeof(*pol)); pol->base_.magic = EWMA_POL_DATA_MAGIC; pol->active_circuit_pqueue = smartlist_new(); pol->active_circuit_pqueue_last_recalibrated = cell_ewma_get_tick(); return TO_CMUX_POL_DATA(pol); } /** * Free an ewma_policy_data_t allocated with ewma_alloc_cmux_data() */ static void ewma_free_cmux_data(circuitmux_t *cmux, circuitmux_policy_data_t *pol_data) { ewma_policy_data_t *pol = NULL; tor_assert(cmux); if (!pol_data) return; pol = TO_EWMA_POL_DATA(pol_data); smartlist_free(pol->active_circuit_pqueue); tor_free(pol); } /** * Allocate an ewma_policy_circ_data_t and upcast it to a * circuitmux_policy_data_t; this is called when attaching a circuit to a * circuitmux_t with ewma_policy. */ static circuitmux_policy_circ_data_t * ewma_alloc_circ_data(circuitmux_t *cmux, circuitmux_policy_data_t *pol_data, circuit_t *circ, cell_direction_t direction, unsigned int cell_count) { ewma_policy_circ_data_t *cdata = NULL; tor_assert(cmux); tor_assert(pol_data); tor_assert(circ); tor_assert(direction == CELL_DIRECTION_OUT || direction == CELL_DIRECTION_IN); /* Shut the compiler up without triggering -Wtautological-compare */ (void)cell_count; cdata = tor_malloc_zero(sizeof(*cdata)); cdata->base_.magic = EWMA_POL_CIRC_DATA_MAGIC; cdata->circ = circ; /* * Initialize the cell_ewma_t structure (formerly in * init_circuit_base()) */ cdata->cell_ewma.last_adjusted_tick = cell_ewma_get_tick(); cdata->cell_ewma.cell_count = 0.0; cdata->cell_ewma.heap_index = -1; if (direction == CELL_DIRECTION_IN) { cdata->cell_ewma.is_for_p_chan = 1; } else { cdata->cell_ewma.is_for_p_chan = 0; } return TO_CMUX_POL_CIRC_DATA(cdata); } /** * Free an ewma_policy_circ_data_t allocated with ewma_alloc_circ_data() */ static void ewma_free_circ_data(circuitmux_t *cmux, circuitmux_policy_data_t *pol_data, circuit_t *circ, circuitmux_policy_circ_data_t *pol_circ_data) { ewma_policy_circ_data_t *cdata = NULL; tor_assert(cmux); tor_assert(circ); tor_assert(pol_data); if (!pol_circ_data) return; cdata = TO_EWMA_POL_CIRC_DATA(pol_circ_data); tor_free(cdata); } /** * Handle circuit activation; this inserts the circuit's cell_ewma into * the active_circuits_pqueue. */ static void ewma_notify_circ_active(circuitmux_t *cmux, circuitmux_policy_data_t *pol_data, circuit_t *circ, circuitmux_policy_circ_data_t *pol_circ_data) { ewma_policy_data_t *pol = NULL; ewma_policy_circ_data_t *cdata = NULL; tor_assert(cmux); tor_assert(pol_data); tor_assert(circ); tor_assert(pol_circ_data); pol = TO_EWMA_POL_DATA(pol_data); cdata = TO_EWMA_POL_CIRC_DATA(pol_circ_data); add_cell_ewma(pol, &(cdata->cell_ewma)); } /** * Handle circuit deactivation; this removes the circuit's cell_ewma from * the active_circuits_pqueue. */ static void ewma_notify_circ_inactive(circuitmux_t *cmux, circuitmux_policy_data_t *pol_data, circuit_t *circ, circuitmux_policy_circ_data_t *pol_circ_data) { ewma_policy_data_t *pol = NULL; ewma_policy_circ_data_t *cdata = NULL; tor_assert(cmux); tor_assert(pol_data); tor_assert(circ); tor_assert(pol_circ_data); pol = TO_EWMA_POL_DATA(pol_data); cdata = TO_EWMA_POL_CIRC_DATA(pol_circ_data); remove_cell_ewma(pol, &(cdata->cell_ewma)); } /** * Update cell_ewma for this circuit after we've sent some cells, and * remove/reinsert it in the queue. This used to be done (brokenly, * see bug 6816) in channel_flush_from_first_active_circuit(). */ static void ewma_notify_xmit_cells(circuitmux_t *cmux, circuitmux_policy_data_t *pol_data, circuit_t *circ, circuitmux_policy_circ_data_t *pol_circ_data, unsigned int n_cells) { ewma_policy_data_t *pol = NULL; ewma_policy_circ_data_t *cdata = NULL; unsigned int tick; double fractional_tick, ewma_increment; /* The current (hi-res) time */ struct timeval now_hires; cell_ewma_t *cell_ewma, *tmp; tor_assert(cmux); tor_assert(pol_data); tor_assert(circ); tor_assert(pol_circ_data); tor_assert(n_cells > 0); pol = TO_EWMA_POL_DATA(pol_data); cdata = TO_EWMA_POL_CIRC_DATA(pol_circ_data); /* Rescale the EWMAs if needed */ tor_gettimeofday_cached(&now_hires); tick = cell_ewma_tick_from_timeval(&now_hires, &fractional_tick); if (tick != pol->active_circuit_pqueue_last_recalibrated) { scale_active_circuits(pol, tick); } /* How much do we adjust the cell count in cell_ewma by? */ ewma_increment = ((double)(n_cells)) * pow(ewma_scale_factor, -fractional_tick); /* Do the adjustment */ cell_ewma = &(cdata->cell_ewma); cell_ewma->cell_count += ewma_increment; /* * Since we just sent on this circuit, it should be at the head of * the queue. Pop the head, assert that it matches, then re-add. */ tmp = pop_first_cell_ewma(pol); tor_assert(tmp == cell_ewma); add_cell_ewma(pol, cell_ewma); } /** * Pick the preferred circuit to send from; this will be the one with * the lowest EWMA value in the priority queue. This used to be done * in channel_flush_from_first_active_circuit(). */ static circuit_t * ewma_pick_active_circuit(circuitmux_t *cmux, circuitmux_policy_data_t *pol_data) { ewma_policy_data_t *pol = NULL; circuit_t *circ = NULL; cell_ewma_t *cell_ewma = NULL; tor_assert(cmux); tor_assert(pol_data); pol = TO_EWMA_POL_DATA(pol_data); if (smartlist_len(pol->active_circuit_pqueue) > 0) { /* Get the head of the queue */ cell_ewma = smartlist_get(pol->active_circuit_pqueue, 0); circ = cell_ewma_to_circuit(cell_ewma); } return circ; } /** * Compare two EWMA cmuxes, and return -1, 0 or 1 to indicate which should * be more preferred - see circuitmux_compare_muxes() of circuitmux.c. */ static int ewma_cmp_cmux(circuitmux_t *cmux_1, circuitmux_policy_data_t *pol_data_1, circuitmux_t *cmux_2, circuitmux_policy_data_t *pol_data_2) { ewma_policy_data_t *p1 = NULL, *p2 = NULL; cell_ewma_t *ce1 = NULL, *ce2 = NULL; tor_assert(cmux_1); tor_assert(pol_data_1); tor_assert(cmux_2); tor_assert(pol_data_2); p1 = TO_EWMA_POL_DATA(pol_data_1); p2 = TO_EWMA_POL_DATA(pol_data_1); if (p1 != p2) { /* Get the head cell_ewma_t from each queue */ if (smartlist_len(p1->active_circuit_pqueue) > 0) { ce1 = smartlist_get(p1->active_circuit_pqueue, 0); } if (smartlist_len(p2->active_circuit_pqueue) > 0) { ce2 = smartlist_get(p2->active_circuit_pqueue, 0); } /* Got both of them? */ if (ce1 != NULL && ce2 != NULL) { /* Pick whichever one has the better best circuit */ return compare_cell_ewma_counts(ce1, ce2); } else { if (ce1 != NULL ) { /* We only have a circuit on cmux_1, so prefer it */ return -1; } else if (ce2 != NULL) { /* We only have a circuit on cmux_2, so prefer it */ return 1; } else { /* No circuits at all; no preference */ return 0; } } } else { /* We got identical params */ return 0; } } /** Helper for sorting cell_ewma_t values in their priority queue. */ static int compare_cell_ewma_counts(const void *p1, const void *p2) { const cell_ewma_t *e1 = p1, *e2 = p2; if (e1->cell_count < e2->cell_count) return -1; else if (e1->cell_count > e2->cell_count) return 1; else return 0; } /** Given a cell_ewma_t, return a pointer to the circuit containing it. */ static circuit_t * cell_ewma_to_circuit(cell_ewma_t *ewma) { ewma_policy_circ_data_t *cdata = NULL; tor_assert(ewma); cdata = SUBTYPE_P(ewma, ewma_policy_circ_data_t, cell_ewma); tor_assert(cdata); return cdata->circ; } /* ==== Functions for scaling cell_ewma_t ==== When choosing which cells to relay first, we favor circuits that have been quiet recently. This gives better latency on connections that aren't pushing lots of data, and makes the network feel more interactive. Conceptually, we take an exponentially weighted mean average of the number of cells a circuit has sent, and allow active circuits (those with cells to relay) to send cells in reverse order of their exponentially-weighted mean average (EWMA) cell count. [That is, a cell sent N seconds ago 'counts' F^N times as much as a cell sent now, for 0now, compute the cell_ewma tick in which it occurs * and the fraction of the tick that has elapsed between the start of the tick * and now. Return the former and store the latter in * *remainder_out. * * These tick values are not meant to be shared between Tor instances, or used * for other purposes. */ static unsigned cell_ewma_tick_from_timeval(const struct timeval *now, double *remainder_out) { unsigned res = (unsigned) (now->tv_sec / EWMA_TICK_LEN); /* rem */ double rem = (now->tv_sec % EWMA_TICK_LEN) + ((double)(now->tv_usec)) / 1.0e6; *remainder_out = rem / EWMA_TICK_LEN; return res; } /** Tell the caller whether ewma_enabled is set */ int cell_ewma_enabled(void) { return ewma_enabled; } /** Compute and return the current cell_ewma tick. */ unsigned int cell_ewma_get_tick(void) { return ((unsigned)approx_time() / EWMA_TICK_LEN); } /** Adjust the global cell scale factor based on options */ void cell_ewma_set_scale_factor(const or_options_t *options, const networkstatus_t *consensus) { int32_t halflife_ms; double halflife; const char *source; if (options && options->CircuitPriorityHalflife >= -EPSILON) { halflife = options->CircuitPriorityHalflife; source = "CircuitPriorityHalflife in configuration"; } else if (consensus && (halflife_ms = networkstatus_get_param( consensus, "CircuitPriorityHalflifeMsec", -1, -1, INT32_MAX)) >= 0) { halflife = ((double)halflife_ms)/1000.0; source = "CircuitPriorityHalflifeMsec in consensus"; } else { halflife = EWMA_DEFAULT_HALFLIFE; source = "Default value"; } if (halflife <= EPSILON) { /* The cell EWMA algorithm is disabled. */ ewma_scale_factor = 0.1; ewma_enabled = 0; log_info(LD_OR, "Disabled cell_ewma algorithm because of value in %s", source); } else { /* convert halflife into halflife-per-tick. */ halflife /= EWMA_TICK_LEN; /* compute per-tick scale factor. */ ewma_scale_factor = exp( LOG_ONEHALF / halflife ); ewma_enabled = 1; log_info(LD_OR, "Enabled cell_ewma algorithm because of value in %s; " "scale factor is %f per %d seconds", source, ewma_scale_factor, EWMA_TICK_LEN); } } /** Return the multiplier necessary to convert the value of a cell sent in * 'from_tick' to one sent in 'to_tick'. */ static INLINE double get_scale_factor(unsigned from_tick, unsigned to_tick) { /* This math can wrap around, but that's okay: unsigned overflow is well-defined */ int diff = (int)(to_tick - from_tick); return pow(ewma_scale_factor, diff); } /** Adjust the cell count of ewma so that it is scaled with respect to * cur_tick */ static void scale_single_cell_ewma(cell_ewma_t *ewma, unsigned cur_tick) { double factor = get_scale_factor(ewma->last_adjusted_tick, cur_tick); ewma->cell_count *= factor; ewma->last_adjusted_tick = cur_tick; } /** Adjust the cell count of every active circuit on chan so * that they are scaled with respect to cur_tick */ static void scale_active_circuits(ewma_policy_data_t *pol, unsigned cur_tick) { double factor; tor_assert(pol); tor_assert(pol->active_circuit_pqueue); factor = get_scale_factor( pol->active_circuit_pqueue_last_recalibrated, cur_tick); /** Ordinarily it isn't okay to change the value of an element in a heap, * but it's okay here, since we are preserving the order. */ SMARTLIST_FOREACH_BEGIN( pol->active_circuit_pqueue, cell_ewma_t *, e) { tor_assert(e->last_adjusted_tick == pol->active_circuit_pqueue_last_recalibrated); e->cell_count *= factor; e->last_adjusted_tick = cur_tick; } SMARTLIST_FOREACH_END(e); pol->active_circuit_pqueue_last_recalibrated = cur_tick; } /** Rescale ewma to the same scale as pol, and add it to * pol's priority queue of active circuits */ static void add_cell_ewma(ewma_policy_data_t *pol, cell_ewma_t *ewma) { tor_assert(pol); tor_assert(pol->active_circuit_pqueue); tor_assert(ewma); tor_assert(ewma->heap_index == -1); scale_single_cell_ewma( ewma, pol->active_circuit_pqueue_last_recalibrated); smartlist_pqueue_add(pol->active_circuit_pqueue, compare_cell_ewma_counts, STRUCT_OFFSET(cell_ewma_t, heap_index), ewma); } /** Remove ewma from pol's priority queue of active circuits */ static void remove_cell_ewma(ewma_policy_data_t *pol, cell_ewma_t *ewma) { tor_assert(pol); tor_assert(pol->active_circuit_pqueue); tor_assert(ewma); tor_assert(ewma->heap_index != -1); smartlist_pqueue_remove(pol->active_circuit_pqueue, compare_cell_ewma_counts, STRUCT_OFFSET(cell_ewma_t, heap_index), ewma); } /** Remove and return the first cell_ewma_t from pol's priority queue of * active circuits. Requires that the priority queue is nonempty. */ static cell_ewma_t * pop_first_cell_ewma(ewma_policy_data_t *pol) { tor_assert(pol); tor_assert(pol->active_circuit_pqueue); return smartlist_pqueue_pop(pol->active_circuit_pqueue, compare_cell_ewma_counts, STRUCT_OFFSET(cell_ewma_t, heap_index)); } tor-0.2.7.6/src/or/circuituse.c0000644000175000017500000030142612631612325013152 00000000000000/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file circuituse.c * \brief Launch the right sort of circuits and attach streams to them. **/ #include "or.h" #include "addressmap.h" #include "channel.h" #include "circpathbias.h" #include "circuitbuild.h" #include "circuitlist.h" #include "circuitstats.h" #include "circuituse.h" #include "config.h" #include "connection.h" #include "connection_edge.h" #include "control.h" #include "entrynodes.h" #include "nodelist.h" #include "networkstatus.h" #include "policies.h" #include "rendclient.h" #include "rendcommon.h" #include "rendservice.h" #include "rephist.h" #include "router.h" #include "routerlist.h" static void circuit_expire_old_circuits_clientside(void); static void circuit_increment_failure_count(void); /** Return 1 if circ could be returned by circuit_get_best(). * Else return 0. */ static int circuit_is_acceptable(const origin_circuit_t *origin_circ, const entry_connection_t *conn, int must_be_open, uint8_t purpose, int need_uptime, int need_internal, time_t now) { const circuit_t *circ = TO_CIRCUIT(origin_circ); const node_t *exitnode; cpath_build_state_t *build_state; tor_assert(circ); tor_assert(conn); tor_assert(conn->socks_request); if (must_be_open && (circ->state != CIRCUIT_STATE_OPEN || !circ->n_chan)) return 0; /* ignore non-open circs */ if (circ->marked_for_close) return 0; /* if this circ isn't our purpose, skip. */ if (purpose == CIRCUIT_PURPOSE_C_REND_JOINED && !must_be_open) { if (circ->purpose != CIRCUIT_PURPOSE_C_ESTABLISH_REND && circ->purpose != CIRCUIT_PURPOSE_C_REND_READY && circ->purpose != CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED && circ->purpose != CIRCUIT_PURPOSE_C_REND_JOINED) return 0; } else if (purpose == CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT && !must_be_open) { if (circ->purpose != CIRCUIT_PURPOSE_C_INTRODUCING && circ->purpose != CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT) return 0; } else { if (purpose != circ->purpose) return 0; } /* If this is a timed-out hidden service circuit, skip it. */ if (origin_circ->hs_circ_has_timed_out) { return 0; } if (purpose == CIRCUIT_PURPOSE_C_GENERAL || purpose == CIRCUIT_PURPOSE_C_REND_JOINED) { if (circ->timestamp_dirty && circ->timestamp_dirty+get_options()->MaxCircuitDirtiness <= now) return 0; } if (origin_circ->unusable_for_new_conns) return 0; /* decide if this circ is suitable for this conn */ /* for rend circs, circ->cpath->prev is not the last router in the * circuit, it's the magical extra bob hop. so just check the nickname * of the one we meant to finish at. */ build_state = origin_circ->build_state; exitnode = build_state_get_exit_node(build_state); if (need_uptime && !build_state->need_uptime) return 0; if (need_internal != build_state->is_internal) return 0; if (purpose == CIRCUIT_PURPOSE_C_GENERAL) { tor_addr_t addr; const int family = tor_addr_parse(&addr, conn->socks_request->address); if (!exitnode && !build_state->onehop_tunnel) { log_debug(LD_CIRC,"Not considering circuit with unknown router."); return 0; /* this circuit is screwed and doesn't know it yet, * or is a rendezvous circuit. */ } if (build_state->onehop_tunnel) { if (!conn->want_onehop) { log_debug(LD_CIRC,"Skipping one-hop circuit."); return 0; } tor_assert(conn->chosen_exit_name); if (build_state->chosen_exit) { char digest[DIGEST_LEN]; if (hexdigest_to_digest(conn->chosen_exit_name, digest) < 0) return 0; /* broken digest, we don't want it */ if (tor_memneq(digest, build_state->chosen_exit->identity_digest, DIGEST_LEN)) return 0; /* this is a circuit to somewhere else */ if (tor_digest_is_zero(digest)) { /* we don't know the digest; have to compare addr:port */ if (family < 0 || !tor_addr_eq(&build_state->chosen_exit->addr, &addr) || build_state->chosen_exit->port != conn->socks_request->port) return 0; } } } else { if (conn->want_onehop) { /* don't use three-hop circuits -- that could hurt our anonymity. */ return 0; } } if (origin_circ->prepend_policy && family != -1) { int r = compare_tor_addr_to_addr_policy(&addr, conn->socks_request->port, origin_circ->prepend_policy); if (r == ADDR_POLICY_REJECTED) return 0; } if (exitnode && !connection_ap_can_use_exit(conn, exitnode)) { /* can't exit from this router */ return 0; } } else { /* not general */ const edge_connection_t *edge_conn = ENTRY_TO_EDGE_CONN(conn); if ((edge_conn->rend_data && !origin_circ->rend_data) || (!edge_conn->rend_data && origin_circ->rend_data) || (edge_conn->rend_data && origin_circ->rend_data && rend_cmp_service_ids(edge_conn->rend_data->onion_address, origin_circ->rend_data->onion_address))) { /* this circ is not for this conn */ return 0; } } if (!connection_edge_compatible_with_circuit(conn, origin_circ)) { /* conn needs to be isolated from other conns that have already used * origin_circ */ return 0; } return 1; } /** Return 1 if circuit a is better than circuit b for * conn, and return 0 otherwise. Used by circuit_get_best. */ static int circuit_is_better(const origin_circuit_t *oa, const origin_circuit_t *ob, const entry_connection_t *conn) { const circuit_t *a = TO_CIRCUIT(oa); const circuit_t *b = TO_CIRCUIT(ob); const uint8_t purpose = ENTRY_TO_CONN(conn)->purpose; int a_bits, b_bits; /* If one of the circuits was allowed to live due to relaxing its timeout, * it is definitely worse (it's probably a much slower path). */ if (oa->relaxed_timeout && !ob->relaxed_timeout) return 0; /* ob is better. It's not relaxed. */ if (!oa->relaxed_timeout && ob->relaxed_timeout) return 1; /* oa is better. It's not relaxed. */ switch (purpose) { case CIRCUIT_PURPOSE_C_GENERAL: /* if it's used but less dirty it's best; * else if it's more recently created it's best */ if (b->timestamp_dirty) { if (a->timestamp_dirty && a->timestamp_dirty > b->timestamp_dirty) return 1; } else { if (a->timestamp_dirty || timercmp(&a->timestamp_began, &b->timestamp_began, OP_GT)) return 1; if (ob->build_state->is_internal) /* XXX023 what the heck is this internal thing doing here. I * think we can get rid of it. circuit_is_acceptable() already * makes sure that is_internal is exactly what we need it to * be. -RD */ return 1; } break; case CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT: /* the closer it is to ack_wait the better it is */ if (a->purpose > b->purpose) return 1; break; case CIRCUIT_PURPOSE_C_REND_JOINED: /* the closer it is to rend_joined the better it is */ if (a->purpose > b->purpose) return 1; break; } /* XXXX023 Maybe this check should get a higher priority to avoid * using up circuits too rapidly. */ a_bits = connection_edge_update_circuit_isolation(conn, (origin_circuit_t*)oa, 1); b_bits = connection_edge_update_circuit_isolation(conn, (origin_circuit_t*)ob, 1); /* if x_bits < 0, then we have not used x for anything; better not to dirty * a connection if we can help it. */ if (a_bits < 0) { return 0; } else if (b_bits < 0) { return 1; } a_bits &= ~ oa->isolation_flags_mixed; a_bits &= ~ ob->isolation_flags_mixed; if (n_bits_set_u8(a_bits) < n_bits_set_u8(b_bits)) { /* The fewer new restrictions we need to make on a circuit for stream * isolation, the better. */ return 1; } return 0; } /** Find the best circ that conn can use, preferably one which is * dirty. Circ must not be too old. * * Conn must be defined. * * If must_be_open, ignore circs not in CIRCUIT_STATE_OPEN. * * circ_purpose specifies what sort of circuit we must have. * It can be C_GENERAL, C_INTRODUCE_ACK_WAIT, or C_REND_JOINED. * * If it's REND_JOINED and must_be_open==0, then return the closest * rendezvous-purposed circuit that you can find. * * If it's INTRODUCE_ACK_WAIT and must_be_open==0, then return the * closest introduce-purposed circuit that you can find. */ static origin_circuit_t * circuit_get_best(const entry_connection_t *conn, int must_be_open, uint8_t purpose, int need_uptime, int need_internal) { origin_circuit_t *best=NULL; struct timeval now; int intro_going_on_but_too_old = 0; tor_assert(conn); tor_assert(purpose == CIRCUIT_PURPOSE_C_GENERAL || purpose == CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT || purpose == CIRCUIT_PURPOSE_C_REND_JOINED); tor_gettimeofday(&now); SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t *, circ) { origin_circuit_t *origin_circ; if (!CIRCUIT_IS_ORIGIN(circ)) continue; origin_circ = TO_ORIGIN_CIRCUIT(circ); /* Log an info message if we're going to launch a new intro circ in * parallel */ if (purpose == CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT && !must_be_open && origin_circ->hs_circ_has_timed_out) { intro_going_on_but_too_old = 1; continue; } if (!circuit_is_acceptable(origin_circ,conn,must_be_open,purpose, need_uptime,need_internal, (time_t)now.tv_sec)) continue; /* now this is an acceptable circ to hand back. but that doesn't * mean it's the *best* circ to hand back. try to decide. */ if (!best || circuit_is_better(origin_circ,best,conn)) best = origin_circ; } SMARTLIST_FOREACH_END(circ); if (!best && intro_going_on_but_too_old) log_info(LD_REND|LD_CIRC, "There is an intro circuit being created " "right now, but it has already taken quite a while. Starting " "one in parallel."); return best; } /** Return the number of not-yet-open general-purpose origin circuits. */ static int count_pending_general_client_circuits(void) { int count = 0; SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t *, circ) { if (circ->marked_for_close || circ->state == CIRCUIT_STATE_OPEN || circ->purpose != CIRCUIT_PURPOSE_C_GENERAL || !CIRCUIT_IS_ORIGIN(circ)) continue; ++count; } SMARTLIST_FOREACH_END(circ); return count; } #if 0 /** Check whether, according to the policies in options, the * circuit circ makes sense. */ /* XXXX currently only checks Exclude{Exit}Nodes; it should check more. * Also, it doesn't have the right definition of an exit circuit. Also, * it's never called. */ int circuit_conforms_to_options(const origin_circuit_t *circ, const or_options_t *options) { const crypt_path_t *cpath, *cpath_next = NULL; /* first check if it includes any excluded nodes */ for (cpath = circ->cpath; cpath_next != circ->cpath; cpath = cpath_next) { cpath_next = cpath->next; if (routerset_contains_extendinfo(options->ExcludeNodes, cpath->extend_info)) return 0; } /* then consider the final hop */ if (routerset_contains_extendinfo(options->ExcludeExitNodes, circ->cpath->prev->extend_info)) return 0; return 1; } #endif /** Close all circuits that start at us, aren't open, and were born * at least CircuitBuildTimeout seconds ago. */ void circuit_expire_building(void) { /* circ_times.timeout_ms and circ_times.close_ms are from * circuit_build_times_get_initial_timeout() if we haven't computed * custom timeouts yet */ struct timeval general_cutoff, begindir_cutoff, fourhop_cutoff, close_cutoff, extremely_old_cutoff, hs_extremely_old_cutoff, cannibalized_cutoff, c_intro_cutoff, s_intro_cutoff, stream_cutoff; const or_options_t *options = get_options(); struct timeval now; cpath_build_state_t *build_state; int any_opened_circs = 0; tor_gettimeofday(&now); /* Check to see if we have any opened circuits. If we don't, * we want to be more lenient with timeouts, in case the * user has relocated and/or changed network connections. * See bug #3443. */ SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t *, next_circ) { if (!CIRCUIT_IS_ORIGIN(next_circ) || /* didn't originate here */ next_circ->marked_for_close) { /* don't mess with marked circs */ continue; } if (TO_ORIGIN_CIRCUIT(next_circ)->has_opened && next_circ->state == CIRCUIT_STATE_OPEN && TO_ORIGIN_CIRCUIT(next_circ)->build_state && TO_ORIGIN_CIRCUIT(next_circ)->build_state->desired_path_len == DEFAULT_ROUTE_LEN) { any_opened_circs = 1; break; } } SMARTLIST_FOREACH_END(next_circ); #define SET_CUTOFF(target, msec) do { \ long ms = tor_lround(msec); \ struct timeval diff; \ diff.tv_sec = ms / 1000; \ diff.tv_usec = (int)((ms % 1000) * 1000); \ timersub(&now, &diff, &target); \ } while (0) /** * Because circuit build timeout is calculated only based on 3 hop * general purpose circuit construction, we need to scale the timeout * to make it properly apply to longer circuits, and circuits of * certain usage types. The following diagram illustrates how we * derive the scaling below. In short, we calculate the number * of times our telescoping-based circuit construction causes cells * to traverse each link for the circuit purpose types in question, * and then assume each link is equivalent. * * OP --a--> A --b--> B --c--> C * OP --a--> A --b--> B --c--> C --d--> D * * Let h = a = b = c = d * * Three hops (general_cutoff) * RTTs = 3a + 2b + c * RTTs = 6h * Cannibalized: * RTTs = a+b+c+d * RTTs = 4h * Four hops: * RTTs = 4a + 3b + 2c + d * RTTs = 10h * Client INTRODUCE1+ACK: // XXX: correct? * RTTs = 5a + 4b + 3c + 2d * RTTs = 14h * Server intro: * RTTs = 4a + 3b + 2c * RTTs = 9h */ SET_CUTOFF(general_cutoff, get_circuit_build_timeout_ms()); SET_CUTOFF(begindir_cutoff, get_circuit_build_timeout_ms()); /* > 3hop circs seem to have a 1.0 second delay on their cannibalized * 4th hop. */ SET_CUTOFF(fourhop_cutoff, get_circuit_build_timeout_ms() * (10/6.0) + 1000); /* CIRCUIT_PURPOSE_C_ESTABLISH_REND behaves more like a RELAY cell. * Use the stream cutoff (more or less). */ SET_CUTOFF(stream_cutoff, MAX(options->CircuitStreamTimeout,15)*1000 + 1000); /* Be lenient with cannibalized circs. They already survived the official * CBT, and they're usually not performance-critical. */ SET_CUTOFF(cannibalized_cutoff, MAX(get_circuit_build_close_time_ms()*(4/6.0), options->CircuitStreamTimeout * 1000) + 1000); /* Intro circs have an extra round trip (and are also 4 hops long) */ SET_CUTOFF(c_intro_cutoff, get_circuit_build_timeout_ms() * (14/6.0) + 1000); /* Server intro circs have an extra round trip */ SET_CUTOFF(s_intro_cutoff, get_circuit_build_timeout_ms() * (9/6.0) + 1000); SET_CUTOFF(close_cutoff, get_circuit_build_close_time_ms()); SET_CUTOFF(extremely_old_cutoff, get_circuit_build_close_time_ms()*2 + 1000); SET_CUTOFF(hs_extremely_old_cutoff, MAX(get_circuit_build_close_time_ms()*2 + 1000, options->SocksTimeout * 1000)); SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t *,victim) { struct timeval cutoff; if (!CIRCUIT_IS_ORIGIN(victim) || /* didn't originate here */ victim->marked_for_close) /* don't mess with marked circs */ continue; /* If we haven't yet started the first hop, it means we don't have * any orconns available, and thus have not started counting time yet * for this circuit. See circuit_deliver_create_cell() and uses of * timestamp_began. * * Continue to wait in this case. The ORConn should timeout * independently and kill us then. */ if (TO_ORIGIN_CIRCUIT(victim)->cpath->state == CPATH_STATE_CLOSED) { continue; } build_state = TO_ORIGIN_CIRCUIT(victim)->build_state; if (build_state && build_state->onehop_tunnel) cutoff = begindir_cutoff; else if (victim->purpose == CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT) cutoff = close_cutoff; else if (victim->purpose == CIRCUIT_PURPOSE_C_INTRODUCING || victim->purpose == CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT) cutoff = c_intro_cutoff; else if (victim->purpose == CIRCUIT_PURPOSE_S_ESTABLISH_INTRO) cutoff = s_intro_cutoff; else if (victim->purpose == CIRCUIT_PURPOSE_C_ESTABLISH_REND) cutoff = stream_cutoff; else if (victim->purpose == CIRCUIT_PURPOSE_PATH_BIAS_TESTING) cutoff = close_cutoff; else if (TO_ORIGIN_CIRCUIT(victim)->has_opened && victim->state != CIRCUIT_STATE_OPEN) cutoff = cannibalized_cutoff; else if (build_state && build_state->desired_path_len >= 4) cutoff = fourhop_cutoff; else cutoff = general_cutoff; if (TO_ORIGIN_CIRCUIT(victim)->hs_circ_has_timed_out) cutoff = hs_extremely_old_cutoff; if (timercmp(&victim->timestamp_began, &cutoff, OP_GT)) continue; /* it's still young, leave it alone */ /* We need to double-check the opened state here because * we don't want to consider opened 1-hop dircon circuits for * deciding when to relax the timeout, but we *do* want to relax * those circuits too if nothing else is opened *and* they still * aren't either. */ if (!any_opened_circs && victim->state != CIRCUIT_STATE_OPEN) { /* It's still young enough that we wouldn't close it, right? */ if (timercmp(&victim->timestamp_began, &close_cutoff, OP_GT)) { if (!TO_ORIGIN_CIRCUIT(victim)->relaxed_timeout) { int first_hop_succeeded = TO_ORIGIN_CIRCUIT(victim)->cpath->state == CPATH_STATE_OPEN; log_info(LD_CIRC, "No circuits are opened. Relaxing timeout for circuit %d " "(a %s %d-hop circuit in state %s with channel state %s). " "%d guards are live.", TO_ORIGIN_CIRCUIT(victim)->global_identifier, circuit_purpose_to_string(victim->purpose), TO_ORIGIN_CIRCUIT(victim)->build_state ? TO_ORIGIN_CIRCUIT(victim)->build_state->desired_path_len : -1, circuit_state_to_string(victim->state), channel_state_to_string(victim->n_chan->state), num_live_entry_guards(0)); /* We count the timeout here for CBT, because technically this * was a timeout, and the timeout value needs to reset if we * see enough of them. Note this means we also need to avoid * double-counting below, too. */ circuit_build_times_count_timeout(get_circuit_build_times_mutable(), first_hop_succeeded); TO_ORIGIN_CIRCUIT(victim)->relaxed_timeout = 1; } continue; } else { static ratelim_t relax_timeout_limit = RATELIM_INIT(3600); const double build_close_ms = get_circuit_build_close_time_ms(); log_fn_ratelim(&relax_timeout_limit, LOG_NOTICE, LD_CIRC, "No circuits are opened. Relaxed timeout for circuit %d " "(a %s %d-hop circuit in state %s with channel state %s) to " "%ldms. However, it appears the circuit has timed out " "anyway. %d guards are live.", TO_ORIGIN_CIRCUIT(victim)->global_identifier, circuit_purpose_to_string(victim->purpose), TO_ORIGIN_CIRCUIT(victim)->build_state ? TO_ORIGIN_CIRCUIT(victim)->build_state->desired_path_len : -1, circuit_state_to_string(victim->state), channel_state_to_string(victim->n_chan->state), (long)build_close_ms, num_live_entry_guards(0)); } } #if 0 /* some debug logs, to help track bugs */ if (victim->purpose >= CIRCUIT_PURPOSE_C_INTRODUCING && victim->purpose <= CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED) { if (!victim->timestamp_dirty) log_fn(LOG_DEBUG,"Considering %sopen purpose %d to %s (circid %d)." "(clean).", victim->state == CIRCUIT_STATE_OPEN ? "" : "non", victim->purpose, victim->build_state->chosen_exit_name, victim->n_circ_id); else log_fn(LOG_DEBUG,"Considering %sopen purpose %d to %s (circid %d). " "%d secs since dirty.", victim->state == CIRCUIT_STATE_OPEN ? "" : "non", victim->purpose, victim->build_state->chosen_exit_name, victim->n_circ_id, (int)(now - victim->timestamp_dirty)); } #endif /* if circ is !open, or if it's open but purpose is a non-finished * intro or rend, then mark it for close */ if (victim->state == CIRCUIT_STATE_OPEN) { switch (victim->purpose) { default: /* most open circuits can be left alone. */ continue; /* yes, continue inside a switch refers to the nearest * enclosing loop. C is smart. */ case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO: break; /* too old, need to die */ case CIRCUIT_PURPOSE_C_REND_READY: /* it's a rend_ready circ -- has it already picked a query? */ /* c_rend_ready circs measure age since timestamp_dirty, * because that's set when they switch purposes */ if (TO_ORIGIN_CIRCUIT(victim)->rend_data || victim->timestamp_dirty > cutoff.tv_sec) continue; break; case CIRCUIT_PURPOSE_PATH_BIAS_TESTING: /* Open path bias testing circuits are given a long * time to complete the test, but not forever */ TO_ORIGIN_CIRCUIT(victim)->path_state = PATH_STATE_USE_FAILED; break; case CIRCUIT_PURPOSE_C_INTRODUCING: /* We keep old introducing circuits around for * a while in parallel, and they can end up "opened". * We decide below if we're going to mark them timed * out and eventually close them. */ break; case CIRCUIT_PURPOSE_C_ESTABLISH_REND: case CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED: case CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT: /* rend and intro circs become dirty each time they * make an introduction attempt. so timestamp_dirty * will reflect the time since the last attempt. */ if (victim->timestamp_dirty > cutoff.tv_sec) continue; break; } } else { /* circuit not open, consider recording failure as timeout */ int first_hop_succeeded = TO_ORIGIN_CIRCUIT(victim)->cpath && TO_ORIGIN_CIRCUIT(victim)->cpath->state == CPATH_STATE_OPEN; if (TO_ORIGIN_CIRCUIT(victim)->p_streams != NULL) { log_warn(LD_BUG, "Circuit %d (purpose %d, %s) has timed out, " "yet has attached streams!", TO_ORIGIN_CIRCUIT(victim)->global_identifier, victim->purpose, circuit_purpose_to_string(victim->purpose)); tor_fragile_assert(); continue; } if (circuit_timeout_want_to_count_circ(TO_ORIGIN_CIRCUIT(victim)) && circuit_build_times_enough_to_compute(get_circuit_build_times())) { /* Circuits are allowed to last longer for measurement. * Switch their purpose and wait. */ if (victim->purpose != CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT) { control_event_circuit_status(TO_ORIGIN_CIRCUIT(victim), CIRC_EVENT_FAILED, END_CIRC_REASON_TIMEOUT); circuit_change_purpose(victim, CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT); /* Record this failure to check for too many timeouts * in a row. This function does not record a time value yet * (we do that later); it only counts the fact that we did * have a timeout. We also want to avoid double-counting * already "relaxed" circuits, which are counted above. */ if (!TO_ORIGIN_CIRCUIT(victim)->relaxed_timeout) { circuit_build_times_count_timeout( get_circuit_build_times_mutable(), first_hop_succeeded); } continue; } /* * If the circuit build time is much greater than we would have cut * it off at, we probably had a suspend event along this codepath, * and we should discard the value. */ if (timercmp(&victim->timestamp_began, &extremely_old_cutoff, OP_LT)) { log_notice(LD_CIRC, "Extremely large value for circuit build timeout: %lds. " "Assuming clock jump. Purpose %d (%s)", (long)(now.tv_sec - victim->timestamp_began.tv_sec), victim->purpose, circuit_purpose_to_string(victim->purpose)); } else if (circuit_build_times_count_close( get_circuit_build_times_mutable(), first_hop_succeeded, (time_t)victim->timestamp_created.tv_sec)) { circuit_build_times_set_timeout(get_circuit_build_times_mutable()); } } } /* If this is a hidden service client circuit which is far enough * along in connecting to its destination, and we haven't already * flagged it as 'timed out', and the user has not told us to * close such circs immediately on timeout, flag it as 'timed out' * so we'll launch another intro or rend circ, but don't mark it * for close yet. * * (Circs flagged as 'timed out' are given a much longer timeout * period above, so we won't close them in the next call to * circuit_expire_building.) */ if (!(options->CloseHSClientCircuitsImmediatelyOnTimeout) && !(TO_ORIGIN_CIRCUIT(victim)->hs_circ_has_timed_out)) { switch (victim->purpose) { case CIRCUIT_PURPOSE_C_REND_READY: /* We only want to spare a rend circ if it has been specified in * an INTRODUCE1 cell sent to a hidden service. A circ's * pending_final_cpath field is non-NULL iff it is a rend circ * and we have tried to send an INTRODUCE1 cell specifying it. * Thus, if the pending_final_cpath field *is* NULL, then we * want to not spare it. */ if (TO_ORIGIN_CIRCUIT(victim)->build_state && TO_ORIGIN_CIRCUIT(victim)->build_state->pending_final_cpath == NULL) break; /* fallthrough! */ case CIRCUIT_PURPOSE_C_INTRODUCING: /* connection_ap_handshake_attach_circuit() will relaunch for us */ case CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT: case CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED: /* If we have reached this line, we want to spare the circ for now. */ log_info(LD_CIRC,"Marking circ %u (state %d:%s, purpose %d) " "as timed-out HS circ", (unsigned)victim->n_circ_id, victim->state, circuit_state_to_string(victim->state), victim->purpose); TO_ORIGIN_CIRCUIT(victim)->hs_circ_has_timed_out = 1; continue; default: break; } } /* If this is a service-side rendezvous circuit which is far * enough along in connecting to its destination, consider sparing * it. */ if (!(options->CloseHSServiceRendCircuitsImmediatelyOnTimeout) && !(TO_ORIGIN_CIRCUIT(victim)->hs_circ_has_timed_out) && victim->purpose == CIRCUIT_PURPOSE_S_CONNECT_REND) { log_info(LD_CIRC,"Marking circ %u (state %d:%s, purpose %d) " "as timed-out HS circ; relaunching rendezvous attempt.", (unsigned)victim->n_circ_id, victim->state, circuit_state_to_string(victim->state), victim->purpose); TO_ORIGIN_CIRCUIT(victim)->hs_circ_has_timed_out = 1; rend_service_relaunch_rendezvous(TO_ORIGIN_CIRCUIT(victim)); continue; } if (victim->n_chan) log_info(LD_CIRC, "Abandoning circ %u %s:%u (state %d,%d:%s, purpose %d, " "len %d)", TO_ORIGIN_CIRCUIT(victim)->global_identifier, channel_get_canonical_remote_descr(victim->n_chan), (unsigned)victim->n_circ_id, TO_ORIGIN_CIRCUIT(victim)->has_opened, victim->state, circuit_state_to_string(victim->state), victim->purpose, TO_ORIGIN_CIRCUIT(victim)->build_state ? TO_ORIGIN_CIRCUIT(victim)->build_state->desired_path_len : -1); else log_info(LD_CIRC, "Abandoning circ %u %u (state %d,%d:%s, purpose %d, len %d)", TO_ORIGIN_CIRCUIT(victim)->global_identifier, (unsigned)victim->n_circ_id, TO_ORIGIN_CIRCUIT(victim)->has_opened, victim->state, circuit_state_to_string(victim->state), victim->purpose, TO_ORIGIN_CIRCUIT(victim)->build_state ? TO_ORIGIN_CIRCUIT(victim)->build_state->desired_path_len : -1); circuit_log_path(LOG_INFO,LD_CIRC,TO_ORIGIN_CIRCUIT(victim)); if (victim->purpose == CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT) circuit_mark_for_close(victim, END_CIRC_REASON_MEASUREMENT_EXPIRED); else circuit_mark_for_close(victim, END_CIRC_REASON_TIMEOUT); pathbias_count_timeout(TO_ORIGIN_CIRCUIT(victim)); } SMARTLIST_FOREACH_END(victim); } /** For debugging #8387: track when we last called * circuit_expire_old_circuits_clientside. */ static time_t last_expired_clientside_circuits = 0; /** * As a diagnostic for bug 8387, log information about how many one-hop * circuits we have around that have been there for at least age * seconds. Log a few of them. */ void circuit_log_ancient_one_hop_circuits(int age) { #define MAX_ANCIENT_ONEHOP_CIRCUITS_TO_LOG 10 time_t now = time(NULL); time_t cutoff = now - age; int n_found = 0; smartlist_t *log_these = smartlist_new(); SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t *, circ) { const origin_circuit_t *ocirc; if (! CIRCUIT_IS_ORIGIN(circ)) continue; if (circ->timestamp_created.tv_sec >= cutoff) continue; ocirc = CONST_TO_ORIGIN_CIRCUIT(circ); if (ocirc->build_state && ocirc->build_state->onehop_tunnel) { ++n_found; if (smartlist_len(log_these) < MAX_ANCIENT_ONEHOP_CIRCUITS_TO_LOG) smartlist_add(log_these, (origin_circuit_t*) ocirc); } } SMARTLIST_FOREACH_END(circ); if (n_found == 0) goto done; log_notice(LD_HEARTBEAT, "Diagnostic for issue 8387: Found %d one-hop circuits more " "than %d seconds old! Logging %d...", n_found, age, smartlist_len(log_these)); SMARTLIST_FOREACH_BEGIN(log_these, const origin_circuit_t *, ocirc) { char created[ISO_TIME_LEN+1]; int stream_num; const edge_connection_t *conn; char *dirty = NULL; const circuit_t *circ = TO_CIRCUIT(ocirc); format_local_iso_time(created, (time_t)circ->timestamp_created.tv_sec); if (circ->timestamp_dirty) { char dirty_since[ISO_TIME_LEN+1]; format_local_iso_time(dirty_since, circ->timestamp_dirty); tor_asprintf(&dirty, "Dirty since %s (%ld seconds vs %ld-second cutoff)", dirty_since, (long)(now - circ->timestamp_dirty), (long) get_options()->MaxCircuitDirtiness); } else { dirty = tor_strdup("Not marked dirty"); } log_notice(LD_HEARTBEAT, " #%d created at %s. %s, %s. %s for close. " "Package window: %d. " "%s for new conns. %s.", ocirc_sl_idx, created, circuit_state_to_string(circ->state), circuit_purpose_to_string(circ->purpose), circ->marked_for_close ? "Marked" : "Not marked", circ->package_window, ocirc->unusable_for_new_conns ? "Not usable" : "usable", dirty); tor_free(dirty); stream_num = 0; for (conn = ocirc->p_streams; conn; conn = conn->next_stream) { const connection_t *c = TO_CONN(conn); char stream_created[ISO_TIME_LEN+1]; if (++stream_num >= 5) break; format_local_iso_time(stream_created, c->timestamp_created); log_notice(LD_HEARTBEAT, " Stream#%d created at %s. " "%s conn in state %s. " "It is %slinked and %sreading from a linked connection %p. " "Package window %d. " "%s for close (%s:%d). Hold-open is %sset. " "Has %ssent RELAY_END. %s on circuit.", stream_num, stream_created, conn_type_to_string(c->type), conn_state_to_string(c->type, c->state), c->linked ? "" : "not ", c->reading_from_linked_conn ? "": "not", c->linked_conn, conn->package_window, c->marked_for_close ? "Marked" : "Not marked", c->marked_for_close_file ? c->marked_for_close_file : "--", c->marked_for_close, c->hold_open_until_flushed ? "" : "not ", conn->edge_has_sent_end ? "" : "not ", conn->edge_blocked_on_circ ? "Blocked" : "Not blocked"); if (! c->linked_conn) continue; c = c->linked_conn; log_notice(LD_HEARTBEAT, " Linked to %s connection in state %s " "(Purpose %d). %s for close (%s:%d). Hold-open is %sset. ", conn_type_to_string(c->type), conn_state_to_string(c->type, c->state), c->purpose, c->marked_for_close ? "Marked" : "Not marked", c->marked_for_close_file ? c->marked_for_close_file : "--", c->marked_for_close, c->hold_open_until_flushed ? "" : "not "); } } SMARTLIST_FOREACH_END(ocirc); log_notice(LD_HEARTBEAT, "It has been %ld seconds since I last called " "circuit_expire_old_circuits_clientside().", (long)(now - last_expired_clientside_circuits)); done: smartlist_free(log_these); } /** Remove any elements in needed_ports that are handled by an * open or in-progress circuit. */ void circuit_remove_handled_ports(smartlist_t *needed_ports) { int i; uint16_t *port; for (i = 0; i < smartlist_len(needed_ports); ++i) { port = smartlist_get(needed_ports, i); tor_assert(*port); if (circuit_stream_is_being_handled(NULL, *port, MIN_CIRCUITS_HANDLING_STREAM)) { // log_debug(LD_CIRC,"Port %d is already being handled; removing.", port); smartlist_del(needed_ports, i--); tor_free(port); } else { log_debug(LD_CIRC,"Port %d is not handled.", *port); } } } /** Return 1 if at least min general-purpose non-internal circuits * will have an acceptable exit node for exit stream conn if it * is defined, else for "*:port". * Else return 0. */ int circuit_stream_is_being_handled(entry_connection_t *conn, uint16_t port, int min) { const node_t *exitnode; int num=0; time_t now = time(NULL); int need_uptime = smartlist_contains_int_as_string( get_options()->LongLivedPorts, conn ? conn->socks_request->port : port); SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t *, circ) { if (CIRCUIT_IS_ORIGIN(circ) && !circ->marked_for_close && circ->purpose == CIRCUIT_PURPOSE_C_GENERAL && (!circ->timestamp_dirty || circ->timestamp_dirty + get_options()->MaxCircuitDirtiness > now)) { origin_circuit_t *origin_circ = TO_ORIGIN_CIRCUIT(circ); cpath_build_state_t *build_state = origin_circ->build_state; if (build_state->is_internal || build_state->onehop_tunnel) continue; if (origin_circ->unusable_for_new_conns) continue; exitnode = build_state_get_exit_node(build_state); if (exitnode && (!need_uptime || build_state->need_uptime)) { int ok; if (conn) { ok = connection_ap_can_use_exit(conn, exitnode); } else { addr_policy_result_t r; r = compare_tor_addr_to_node_policy(NULL, port, exitnode); ok = r != ADDR_POLICY_REJECTED && r != ADDR_POLICY_PROBABLY_REJECTED; } if (ok) { if (++num >= min) return 1; } } } } SMARTLIST_FOREACH_END(circ); return 0; } /** Don't keep more than this many unused open circuits around. */ #define MAX_UNUSED_OPEN_CIRCUITS 14 /** Figure out how many circuits we have open that are clean. Make * sure it's enough for all the upcoming behaviors we predict we'll have. * But put an upper bound on the total number of circuits. */ static void circuit_predict_and_launch_new(void) { int num=0, num_internal=0, num_uptime_internal=0; int hidserv_needs_uptime=0, hidserv_needs_capacity=1; int port_needs_uptime=0, port_needs_capacity=1; time_t now = time(NULL); int flags = 0; /* First, count how many of each type of circuit we have already. */ SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t *, circ) { cpath_build_state_t *build_state; origin_circuit_t *origin_circ; if (!CIRCUIT_IS_ORIGIN(circ)) continue; if (circ->marked_for_close) continue; /* don't mess with marked circs */ if (circ->timestamp_dirty) continue; /* only count clean circs */ if (circ->purpose != CIRCUIT_PURPOSE_C_GENERAL) continue; /* only pay attention to general-purpose circs */ origin_circ = TO_ORIGIN_CIRCUIT(circ); if (origin_circ->unusable_for_new_conns) continue; build_state = origin_circ->build_state; if (build_state->onehop_tunnel) continue; num++; if (build_state->is_internal) num_internal++; if (build_state->need_uptime && build_state->is_internal) num_uptime_internal++; } SMARTLIST_FOREACH_END(circ); /* If that's enough, then stop now. */ if (num >= MAX_UNUSED_OPEN_CIRCUITS) return; /* we already have many, making more probably will hurt */ /* Second, see if we need any more exit circuits. */ /* check if we know of a port that's been requested recently * and no circuit is currently available that can handle it. * Exits (obviously) require an exit circuit. */ if (!circuit_all_predicted_ports_handled(now, &port_needs_uptime, &port_needs_capacity) && router_have_consensus_path() == CONSENSUS_PATH_EXIT) { if (port_needs_uptime) flags |= CIRCLAUNCH_NEED_UPTIME; if (port_needs_capacity) flags |= CIRCLAUNCH_NEED_CAPACITY; log_info(LD_CIRC, "Have %d clean circs (%d internal), need another exit circ.", num, num_internal); circuit_launch(CIRCUIT_PURPOSE_C_GENERAL, flags); return; } /* Third, see if we need any more hidden service (server) circuits. * HS servers only need an internal circuit. */ if (num_rend_services() && num_uptime_internal < 3 && router_have_consensus_path() != CONSENSUS_PATH_UNKNOWN) { flags = (CIRCLAUNCH_NEED_CAPACITY | CIRCLAUNCH_NEED_UPTIME | CIRCLAUNCH_IS_INTERNAL); log_info(LD_CIRC, "Have %d clean circs (%d internal), need another internal " "circ for my hidden service.", num, num_internal); circuit_launch(CIRCUIT_PURPOSE_C_GENERAL, flags); return; } /* Fourth, see if we need any more hidden service (client) circuits. * HS clients only need an internal circuit. */ if (rep_hist_get_predicted_internal(now, &hidserv_needs_uptime, &hidserv_needs_capacity) && ((num_uptime_internal<2 && hidserv_needs_uptime) || num_internal<2) && router_have_consensus_path() != CONSENSUS_PATH_UNKNOWN) { if (hidserv_needs_uptime) flags |= CIRCLAUNCH_NEED_UPTIME; if (hidserv_needs_capacity) flags |= CIRCLAUNCH_NEED_CAPACITY; flags |= CIRCLAUNCH_IS_INTERNAL; log_info(LD_CIRC, "Have %d clean circs (%d uptime-internal, %d internal), need" " another hidden service circ.", num, num_uptime_internal, num_internal); circuit_launch(CIRCUIT_PURPOSE_C_GENERAL, flags); return; } /* Finally, check to see if we still need more circuits to learn * a good build timeout. But if we're close to our max number we * want, don't do another -- we want to leave a few slots open so * we can still build circuits preemptively as needed. * XXXX make the assumption that build timeout streams should be * created whenever we can build internal circuits. */ if (router_have_consensus_path() != CONSENSUS_PATH_UNKNOWN) { if (num < MAX_UNUSED_OPEN_CIRCUITS-2 && ! circuit_build_times_disabled() && circuit_build_times_needs_circuits_now(get_circuit_build_times())) { flags = CIRCLAUNCH_NEED_CAPACITY; /* if there are no exits in the consensus, make timeout * circuits internal */ if (router_have_consensus_path() == CONSENSUS_PATH_INTERNAL) flags |= CIRCLAUNCH_IS_INTERNAL; log_info(LD_CIRC, "Have %d clean circs need another buildtime test circ.", num); circuit_launch(CIRCUIT_PURPOSE_C_GENERAL, flags); return; } } } /** Build a new test circuit every 5 minutes */ #define TESTING_CIRCUIT_INTERVAL 300 /** This function is called once a second, if router_have_min_dir_info() is * true. Its job is to make sure all services we offer have enough circuits * available. Some services just want enough circuits for current tasks, * whereas others want a minimum set of idle circuits hanging around. */ void circuit_build_needed_circs(time_t now) { const or_options_t *options = get_options(); /* launch a new circ for any pending streams that need one * XXXX make the assumption that (some) AP streams (i.e. HS clients) * don't require an exit circuit, review in #13814. * This allows HSs to function in a consensus without exits. */ if (router_have_consensus_path() != CONSENSUS_PATH_UNKNOWN) connection_ap_attach_pending(); /* make sure any hidden services have enough intro points * HS intro point streams only require an internal circuit */ if (router_have_consensus_path() != CONSENSUS_PATH_UNKNOWN) rend_consider_services_intro_points(); circuit_expire_old_circs_as_needed(now); if (!options->DisablePredictedCircuits) circuit_predict_and_launch_new(); } /** * Called once a second either directly or from * circuit_build_needed_circs(). As appropriate (once per NewCircuitPeriod) * resets failure counts and expires old circuits. */ void circuit_expire_old_circs_as_needed(time_t now) { static time_t time_to_expire_and_reset = 0; if (time_to_expire_and_reset < now) { circuit_reset_failure_count(1); time_to_expire_and_reset = now + get_options()->NewCircuitPeriod; if (proxy_mode(get_options())) addressmap_clean(now); circuit_expire_old_circuits_clientside(); #if 0 /* disable for now, until predict-and-launch-new can cull leftovers */ /* If we ever re-enable, this has to move into * circuit_build_needed_circs */ circ = circuit_get_youngest_clean_open(CIRCUIT_PURPOSE_C_GENERAL); if (get_options()->RunTesting && circ && circ->timestamp_began.tv_sec + TESTING_CIRCUIT_INTERVAL < now) { log_fn(LOG_INFO,"Creating a new testing circuit."); circuit_launch(CIRCUIT_PURPOSE_C_GENERAL, 0); } #endif } } /** If the stream conn is a member of any of the linked * lists of circ, then remove it from the list. */ void circuit_detach_stream(circuit_t *circ, edge_connection_t *conn) { edge_connection_t *prevconn; tor_assert(circ); tor_assert(conn); if (conn->base_.type == CONN_TYPE_AP) { entry_connection_t *entry_conn = EDGE_TO_ENTRY_CONN(conn); entry_conn->may_use_optimistic_data = 0; } conn->cpath_layer = NULL; /* don't keep a stale pointer */ conn->on_circuit = NULL; if (CIRCUIT_IS_ORIGIN(circ)) { origin_circuit_t *origin_circ = TO_ORIGIN_CIRCUIT(circ); int removed = 0; if (conn == origin_circ->p_streams) { origin_circ->p_streams = conn->next_stream; removed = 1; } else { for (prevconn = origin_circ->p_streams; prevconn && prevconn->next_stream && prevconn->next_stream != conn; prevconn = prevconn->next_stream) ; if (prevconn && prevconn->next_stream) { prevconn->next_stream = conn->next_stream; removed = 1; } } if (removed) { log_debug(LD_APP, "Removing stream %d from circ %u", conn->stream_id, (unsigned)circ->n_circ_id); /* If the stream was removed, and it was a rend stream, decrement the * number of streams on the circuit associated with the rend service. */ if (circ->purpose == CIRCUIT_PURPOSE_S_REND_JOINED) { tor_assert(origin_circ->rend_data); origin_circ->rend_data->nr_streams--; } return; } } else { or_circuit_t *or_circ = TO_OR_CIRCUIT(circ); if (conn == or_circ->n_streams) { or_circ->n_streams = conn->next_stream; return; } if (conn == or_circ->resolving_streams) { or_circ->resolving_streams = conn->next_stream; return; } for (prevconn = or_circ->n_streams; prevconn && prevconn->next_stream && prevconn->next_stream != conn; prevconn = prevconn->next_stream) ; if (prevconn && prevconn->next_stream) { prevconn->next_stream = conn->next_stream; return; } for (prevconn = or_circ->resolving_streams; prevconn && prevconn->next_stream && prevconn->next_stream != conn; prevconn = prevconn->next_stream) ; if (prevconn && prevconn->next_stream) { prevconn->next_stream = conn->next_stream; return; } } log_warn(LD_BUG,"Edge connection not in circuit's list."); /* Don't give an error here; it's harmless. */ tor_fragile_assert(); } /** If we haven't yet decided on a good timeout value for circuit * building, we close idles circuits aggressively so we can get more * data points. */ #define IDLE_TIMEOUT_WHILE_LEARNING (10*60) /** Find each circuit that has been unused for too long, or dirty * for too long and has no streams on it: mark it for close. */ static void circuit_expire_old_circuits_clientside(void) { struct timeval cutoff, now; tor_gettimeofday(&now); cutoff = now; last_expired_clientside_circuits = now.tv_sec; if (! circuit_build_times_disabled() && circuit_build_times_needs_circuits(get_circuit_build_times())) { /* Circuits should be shorter lived if we need more of them * for learning a good build timeout */ cutoff.tv_sec -= IDLE_TIMEOUT_WHILE_LEARNING; } else { cutoff.tv_sec -= get_options()->CircuitIdleTimeout; } SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t *, circ) { if (circ->marked_for_close || !CIRCUIT_IS_ORIGIN(circ)) continue; /* If the circuit has been dirty for too long, and there are no streams * on it, mark it for close. */ if (circ->timestamp_dirty && circ->timestamp_dirty + get_options()->MaxCircuitDirtiness < now.tv_sec && !TO_ORIGIN_CIRCUIT(circ)->p_streams /* nothing attached */ ) { log_debug(LD_CIRC, "Closing n_circ_id %u (dirty %ld sec ago, " "purpose %d)", (unsigned)circ->n_circ_id, (long)(now.tv_sec - circ->timestamp_dirty), circ->purpose); /* Don't do this magic for testing circuits. Their death is governed * by circuit_expire_building */ if (circ->purpose != CIRCUIT_PURPOSE_PATH_BIAS_TESTING) circuit_mark_for_close(circ, END_CIRC_REASON_FINISHED); } else if (!circ->timestamp_dirty && circ->state == CIRCUIT_STATE_OPEN) { if (timercmp(&circ->timestamp_began, &cutoff, OP_LT)) { if (circ->purpose == CIRCUIT_PURPOSE_C_GENERAL || circ->purpose == CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT || circ->purpose == CIRCUIT_PURPOSE_S_ESTABLISH_INTRO || circ->purpose == CIRCUIT_PURPOSE_TESTING || (circ->purpose >= CIRCUIT_PURPOSE_C_INTRODUCING && circ->purpose <= CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED) || circ->purpose == CIRCUIT_PURPOSE_S_CONNECT_REND) { log_debug(LD_CIRC, "Closing circuit that has been unused for %ld msec.", tv_mdiff(&circ->timestamp_began, &now)); circuit_mark_for_close(circ, END_CIRC_REASON_FINISHED); } else if (!TO_ORIGIN_CIRCUIT(circ)->is_ancient) { /* Server-side rend joined circuits can end up really old, because * they are reused by clients for longer than normal. The client * controls their lifespan. (They never become dirty, because * connection_exit_begin_conn() never marks anything as dirty.) * Similarly, server-side intro circuits last a long time. */ if (circ->purpose != CIRCUIT_PURPOSE_S_REND_JOINED && circ->purpose != CIRCUIT_PURPOSE_S_INTRO) { log_notice(LD_CIRC, "Ancient non-dirty circuit %d is still around after " "%ld milliseconds. Purpose: %d (%s)", TO_ORIGIN_CIRCUIT(circ)->global_identifier, tv_mdiff(&circ->timestamp_began, &now), circ->purpose, circuit_purpose_to_string(circ->purpose)); TO_ORIGIN_CIRCUIT(circ)->is_ancient = 1; } } } } } SMARTLIST_FOREACH_END(circ); } /** How long do we wait before killing circuits with the properties * described below? * * Probably we could choose a number here as low as 5 to 10 seconds, * since these circs are used for begindir, and a) generally you either * ask another begindir question right after or you don't for a long time, * b) clients at least through 0.2.1.x choose from the whole set of * directory mirrors at each choice, and c) re-establishing a one-hop * circuit via create-fast is a light operation assuming the TLS conn is * still there. * * I expect "b" to go away one day when we move to using directory * guards, but I think "a" and "c" are good enough reasons that a low * number is safe even then. */ #define IDLE_ONE_HOP_CIRC_TIMEOUT 60 /** Find each non-origin circuit that has been unused for too long, * has no streams on it, used a create_fast, and ends here: mark it * for close. */ void circuit_expire_old_circuits_serverside(time_t now) { or_circuit_t *or_circ; time_t cutoff = now - IDLE_ONE_HOP_CIRC_TIMEOUT; SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t *, circ) { if (circ->marked_for_close || CIRCUIT_IS_ORIGIN(circ)) continue; or_circ = TO_OR_CIRCUIT(circ); /* If the circuit has been idle for too long, and there are no streams * on it, and it ends here, and it used a create_fast, mark it for close. */ if (or_circ->is_first_hop && !circ->n_chan && !or_circ->n_streams && !or_circ->resolving_streams && or_circ->p_chan && channel_when_last_xmit(or_circ->p_chan) <= cutoff) { log_info(LD_CIRC, "Closing circ_id %u (empty %d secs ago)", (unsigned)or_circ->p_circ_id, (int)(now - channel_when_last_xmit(or_circ->p_chan))); circuit_mark_for_close(circ, END_CIRC_REASON_FINISHED); } } SMARTLIST_FOREACH_END(circ); } /** Number of testing circuits we want open before testing our bandwidth. */ #define NUM_PARALLEL_TESTING_CIRCS 4 /** True iff we've ever had enough testing circuits open to test our * bandwidth. */ static int have_performed_bandwidth_test = 0; /** Reset have_performed_bandwidth_test, so we'll start building * testing circuits again so we can exercise our bandwidth. */ void reset_bandwidth_test(void) { have_performed_bandwidth_test = 0; } /** Return 1 if we've already exercised our bandwidth, or if we * have fewer than NUM_PARALLEL_TESTING_CIRCS testing circuits * established or on the way. Else return 0. */ int circuit_enough_testing_circs(void) { int num = 0; if (have_performed_bandwidth_test) return 1; SMARTLIST_FOREACH_BEGIN(circuit_get_global_list(), circuit_t *, circ) { if (!circ->marked_for_close && CIRCUIT_IS_ORIGIN(circ) && circ->purpose == CIRCUIT_PURPOSE_TESTING && circ->state == CIRCUIT_STATE_OPEN) num++; } SMARTLIST_FOREACH_END(circ); return num >= NUM_PARALLEL_TESTING_CIRCS; } /** A testing circuit has completed. Take whatever stats we want. * Noticing reachability is taken care of in onionskin_answer(), * so there's no need to record anything here. But if we still want * to do the bandwidth test, and we now have enough testing circuits * open, do it. */ static void circuit_testing_opened(origin_circuit_t *circ) { if (have_performed_bandwidth_test || !check_whether_orport_reachable()) { /* either we've already done everything we want with testing circuits, * or this testing circuit became open due to a fluke, e.g. we picked * a last hop where we already had the connection open due to an * outgoing local circuit. */ circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_AT_ORIGIN); } else if (circuit_enough_testing_circs()) { router_perform_bandwidth_test(NUM_PARALLEL_TESTING_CIRCS, time(NULL)); have_performed_bandwidth_test = 1; } else consider_testing_reachability(1, 0); } /** A testing circuit has failed to build. Take whatever stats we want. */ static void circuit_testing_failed(origin_circuit_t *circ, int at_last_hop) { if (server_mode(get_options()) && check_whether_orport_reachable()) return; log_info(LD_GENERAL, "Our testing circuit (to see if your ORPort is reachable) " "has failed. I'll try again later."); /* These aren't used yet. */ (void)circ; (void)at_last_hop; } /** The circuit circ has just become open. Take the next * step: for rendezvous circuits, we pass circ to the appropriate * function in rendclient or rendservice. For general circuits, we * call connection_ap_attach_pending, which looks for pending streams * that could use circ. */ void circuit_has_opened(origin_circuit_t *circ) { control_event_circuit_status(circ, CIRC_EVENT_BUILT, 0); /* Remember that this circuit has finished building. Now if we start * it building again later (e.g. by extending it), we will know not * to consider its build time. */ circ->has_opened = 1; switch (TO_CIRCUIT(circ)->purpose) { case CIRCUIT_PURPOSE_C_ESTABLISH_REND: rend_client_rendcirc_has_opened(circ); /* Start building an intro circ if we don't have one yet. */ connection_ap_attach_pending(); /* This isn't a call to circuit_try_attaching_streams because a * circuit in _C_ESTABLISH_REND state isn't connected to its * hidden service yet, thus we can't attach streams to it yet, * thus circuit_try_attaching_streams would always clear the * circuit's isolation state. circuit_try_attaching_streams is * called later, when the rend circ enters _C_REND_JOINED * state. */ break; case CIRCUIT_PURPOSE_C_INTRODUCING: rend_client_introcirc_has_opened(circ); break; case CIRCUIT_PURPOSE_C_GENERAL: /* Tell any AP connections that have been waiting for a new * circuit that one is ready. */ circuit_try_attaching_streams(circ); break; case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO: /* at Bob, waiting for introductions */ rend_service_intro_has_opened(circ); break; case CIRCUIT_PURPOSE_S_CONNECT_REND: /* at Bob, connecting to rend point */ rend_service_rendezvous_has_opened(circ); break; case CIRCUIT_PURPOSE_TESTING: circuit_testing_opened(circ); break; /* default: * This won't happen in normal operation, but might happen if the * controller did it. Just let it slide. */ } } /** If the stream-isolation state of circ can be cleared, clear * it. Return non-zero iff circ's isolation state was cleared. */ static int circuit_try_clearing_isolation_state(origin_circuit_t *circ) { if (/* The circuit may have become non-open if it was cannibalized.*/ circ->base_.state == CIRCUIT_STATE_OPEN && /* If !isolation_values_set, there is nothing to clear. */ circ->isolation_values_set && /* It's not legal to clear a circuit's isolation info if it's ever had * streams attached */ !circ->isolation_any_streams_attached) { /* If we have any isolation information set on this circuit, and * we didn't manage to attach any streams to it, then we can * and should clear it and try again. */ circuit_clear_isolation(circ); return 1; } else { return 0; } } /** Called when a circuit becomes ready for streams to be attached to * it. */ void circuit_try_attaching_streams(origin_circuit_t *circ) { /* Attach streams to this circuit if we can. */ connection_ap_attach_pending(); /* The call to circuit_try_clearing_isolation_state here will do * nothing and return 0 if we didn't attach any streams to circ * above. */ if (circuit_try_clearing_isolation_state(circ)) { /* Maybe *now* we can attach some streams to this circuit. */ connection_ap_attach_pending(); } } /** Called whenever a circuit could not be successfully built. */ void circuit_build_failed(origin_circuit_t *circ) { channel_t *n_chan = NULL; /* we should examine circ and see if it failed because of * the last hop or an earlier hop. then use this info below. */ int failed_at_last_hop = 0; /* If the last hop isn't open, and the second-to-last is, we failed * at the last hop. */ if (circ->cpath && circ->cpath->prev->state != CPATH_STATE_OPEN && circ->cpath->prev->prev->state == CPATH_STATE_OPEN) { failed_at_last_hop = 1; } if (circ->cpath && circ->cpath->state != CPATH_STATE_OPEN && ! circ->base_.received_destroy) { /* We failed at the first hop for some reason other than a DESTROY cell. * If there's an OR connection to blame, blame it. Also, avoid this relay * for a while, and fail any one-hop directory fetches destined for it. */ const char *n_chan_id = circ->cpath->extend_info->identity_digest; int already_marked = 0; if (circ->base_.n_chan) { n_chan = circ->base_.n_chan; if (n_chan->is_bad_for_new_circs) { /* We only want to blame this router when a fresh healthy * connection fails. So don't mark this router as newly failed, * since maybe this was just an old circuit attempt that's * finally timing out now. Also, there's no need to blow away * circuits/streams/etc, since the failure of an unhealthy conn * doesn't tell us much about whether a healthy conn would * succeed. */ already_marked = 1; } log_info(LD_OR, "Our circuit failed to get a response from the first hop " "(%s). I'm going to try to rotate to a better connection.", channel_get_canonical_remote_descr(n_chan)); n_chan->is_bad_for_new_circs = 1; } else { log_info(LD_OR, "Our circuit died before the first hop with no connection"); } if (n_chan_id && !already_marked) { entry_guard_register_connect_status(n_chan_id, 0, 1, time(NULL)); /* if there are any one-hop streams waiting on this circuit, fail * them now so they can retry elsewhere. */ connection_ap_fail_onehop(n_chan_id, circ->build_state); } } switch (circ->base_.purpose) { case CIRCUIT_PURPOSE_C_GENERAL: /* If we never built the circuit, note it as a failure. */ circuit_increment_failure_count(); if (failed_at_last_hop) { /* Make sure any streams that demand our last hop as their exit * know that it's unlikely to happen. */ circuit_discard_optional_exit_enclaves(circ->cpath->prev->extend_info); } break; case CIRCUIT_PURPOSE_TESTING: circuit_testing_failed(circ, failed_at_last_hop); break; case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO: /* at Bob, waiting for introductions */ if (circ->base_.state != CIRCUIT_STATE_OPEN) { circuit_increment_failure_count(); } /* no need to care here, because bob will rebuild intro * points periodically. */ break; case CIRCUIT_PURPOSE_C_INTRODUCING: /* at Alice, connecting to intro point */ /* Don't increment failure count, since Bob may have picked * the introduction point maliciously */ /* Alice will pick a new intro point when this one dies, if * the stream in question still cares. No need to act here. */ break; case CIRCUIT_PURPOSE_C_ESTABLISH_REND: /* at Alice, waiting for Bob */ circuit_increment_failure_count(); /* Alice will pick a new rend point when this one dies, if * the stream in question still cares. No need to act here. */ break; case CIRCUIT_PURPOSE_S_CONNECT_REND: /* at Bob, connecting to rend point */ /* Don't increment failure count, since Alice may have picked * the rendezvous point maliciously */ log_info(LD_REND, "Couldn't connect to Alice's chosen rend point %s " "(%s hop failed).", escaped(build_state_get_exit_nickname(circ->build_state)), failed_at_last_hop?"last":"non-last"); rend_service_relaunch_rendezvous(circ); break; /* default: * This won't happen in normal operation, but might happen if the * controller did it. Just let it slide. */ } } /** Number of consecutive failures so far; should only be touched by * circuit_launch_new and circuit_*_failure_count. */ static int n_circuit_failures = 0; /** Before the last time we called circuit_reset_failure_count(), were * there a lot of failures? */ static int did_circs_fail_last_period = 0; /** Don't retry launching a new circuit if we try this many times with no * success. */ #define MAX_CIRCUIT_FAILURES 5 /** Launch a new circuit; see circuit_launch_by_extend_info() for * details on arguments. */ origin_circuit_t * circuit_launch(uint8_t purpose, int flags) { return circuit_launch_by_extend_info(purpose, NULL, flags); } /** DOCDOC */ static int have_enough_path_info(int need_exit) { if (need_exit) return router_have_consensus_path() == CONSENSUS_PATH_EXIT; else return router_have_consensus_path() != CONSENSUS_PATH_UNKNOWN; } /** Launch a new circuit with purpose purpose and exit node * extend_info (or NULL to select a random exit node). If flags * contains CIRCLAUNCH_NEED_UPTIME, choose among routers with high uptime. If * CIRCLAUNCH_NEED_CAPACITY is set, choose among routers with high bandwidth. * If CIRCLAUNCH_IS_INTERNAL is true, the last hop need not be an exit node. * If CIRCLAUNCH_ONEHOP_TUNNEL is set, the circuit will have only one hop. * Return the newly allocated circuit on success, or NULL on failure. */ origin_circuit_t * circuit_launch_by_extend_info(uint8_t purpose, extend_info_t *extend_info, int flags) { origin_circuit_t *circ; int onehop_tunnel = (flags & CIRCLAUNCH_ONEHOP_TUNNEL) != 0; int have_path = have_enough_path_info(! (flags & CIRCLAUNCH_IS_INTERNAL) ); int need_specific_rp = 0; if (!onehop_tunnel && (!router_have_minimum_dir_info() || !have_path)) { log_debug(LD_CIRC,"Haven't %s yet; canceling " "circuit launch.", !router_have_minimum_dir_info() ? "fetched enough directory info" : "received a consensus with exits"); return NULL; } /* If Tor2webRendezvousPoints is enabled and we are dealing with an RP circuit, we want a specific RP node so we shouldn't canibalize an already existing circuit. */ if (get_options()->Tor2webRendezvousPoints && purpose == CIRCUIT_PURPOSE_C_ESTABLISH_REND) { need_specific_rp = 1; } if ((extend_info || purpose != CIRCUIT_PURPOSE_C_GENERAL) && purpose != CIRCUIT_PURPOSE_TESTING && !onehop_tunnel && !need_specific_rp) { /* see if there are appropriate circs available to cannibalize. */ /* XXX if we're planning to add a hop, perhaps we want to look for * internal circs rather than exit circs? -RD */ circ = circuit_find_to_cannibalize(purpose, extend_info, flags); if (circ) { uint8_t old_purpose = circ->base_.purpose; struct timeval old_timestamp_began = circ->base_.timestamp_began; log_info(LD_CIRC,"Cannibalizing circ '%s' for purpose %d (%s)", build_state_get_exit_nickname(circ->build_state), purpose, circuit_purpose_to_string(purpose)); if ((purpose == CIRCUIT_PURPOSE_S_CONNECT_REND || purpose == CIRCUIT_PURPOSE_C_INTRODUCING) && circ->path_state == PATH_STATE_BUILD_SUCCEEDED) { /* Path bias: Cannibalized rends pre-emptively count as a * successfully built but unused closed circuit. We don't * wait until the extend (or the close) because the rend * point could be malicious. * * Same deal goes for client side introductions. Clients * can be manipulated to connect repeatedly to them * (especially web clients). * * If we decide to probe the initial portion of these circs, * (up to the adversary's final hop), we need to remove this, * or somehow mark the circuit with a special path state. */ /* This must be called before the purpose change */ pathbias_check_close(circ, END_CIRC_REASON_FINISHED); } circuit_change_purpose(TO_CIRCUIT(circ), purpose); /* Reset the start date of this circ, else expire_building * will see it and think it's been trying to build since it * began. * * Technically, the code should reset this when the * create cell is finally sent, but we're close enough * here. */ tor_gettimeofday(&circ->base_.timestamp_began); control_event_circuit_cannibalized(circ, old_purpose, &old_timestamp_began); switch (purpose) { case CIRCUIT_PURPOSE_C_ESTABLISH_REND: /* it's ready right now */ break; case CIRCUIT_PURPOSE_C_INTRODUCING: case CIRCUIT_PURPOSE_S_CONNECT_REND: case CIRCUIT_PURPOSE_C_GENERAL: case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO: /* need to add a new hop */ tor_assert(extend_info); if (circuit_extend_to_new_exit(circ, extend_info) < 0) return NULL; break; default: log_warn(LD_BUG, "unexpected purpose %d when cannibalizing a circ.", purpose); tor_fragile_assert(); return NULL; } return circ; } } if (did_circs_fail_last_period && n_circuit_failures > MAX_CIRCUIT_FAILURES) { /* too many failed circs in a row. don't try. */ // log_fn(LOG_INFO,"%d failures so far, not trying.",n_circuit_failures); return NULL; } /* try a circ. if it fails, circuit_mark_for_close will increment * n_circuit_failures */ return circuit_establish_circuit(purpose, extend_info, flags); } /** Record another failure at opening a general circuit. When we have * too many, we'll stop trying for the remainder of this minute. */ static void circuit_increment_failure_count(void) { ++n_circuit_failures; log_debug(LD_CIRC,"n_circuit_failures now %d.",n_circuit_failures); } /** Reset the failure count for opening general circuits. This means * we will try MAX_CIRCUIT_FAILURES times more (if necessary) before * stopping again. */ void circuit_reset_failure_count(int timeout) { if (timeout && n_circuit_failures > MAX_CIRCUIT_FAILURES) did_circs_fail_last_period = 1; else did_circs_fail_last_period = 0; n_circuit_failures = 0; } /** Find an open circ that we're happy to use for conn and return 1. If * there isn't one, and there isn't one on the way, launch one and return * 0. If it will never work, return -1. * * Write the found or in-progress or launched circ into *circp. */ static int circuit_get_open_circ_or_launch(entry_connection_t *conn, uint8_t desired_circuit_purpose, origin_circuit_t **circp) { origin_circuit_t *circ; int check_exit_policy; int need_uptime, need_internal; int want_onehop; const or_options_t *options = get_options(); tor_assert(conn); tor_assert(circp); if (ENTRY_TO_CONN(conn)->state != AP_CONN_STATE_CIRCUIT_WAIT) { connection_t *c = ENTRY_TO_CONN(conn); log_err(LD_BUG, "Connection state mismatch: wanted " "AP_CONN_STATE_CIRCUIT_WAIT, but got %d (%s)", c->state, conn_state_to_string(c->type, c->state)); } tor_assert(ENTRY_TO_CONN(conn)->state == AP_CONN_STATE_CIRCUIT_WAIT); check_exit_policy = conn->socks_request->command == SOCKS_COMMAND_CONNECT && !conn->use_begindir && !connection_edge_is_rendezvous_stream(ENTRY_TO_EDGE_CONN(conn)); want_onehop = conn->want_onehop; need_uptime = !conn->want_onehop && !conn->use_begindir && smartlist_contains_int_as_string(options->LongLivedPorts, conn->socks_request->port); if (desired_circuit_purpose != CIRCUIT_PURPOSE_C_GENERAL) need_internal = 1; else if (conn->use_begindir || conn->want_onehop) need_internal = 1; else need_internal = 0; circ = circuit_get_best(conn, 1, desired_circuit_purpose, need_uptime, need_internal); if (circ) { *circp = circ; return 1; /* we're happy */ } int have_path = have_enough_path_info(!need_internal); if (!want_onehop && (!router_have_minimum_dir_info() || !have_path)) { if (!connection_get_by_type(CONN_TYPE_DIR)) { int severity = LOG_NOTICE; /* FFFF if this is a tunneled directory fetch, don't yell * as loudly. the user doesn't even know it's happening. */ if (entry_list_is_constrained(options) && entries_known_but_down(options)) { log_fn(severity, LD_APP|LD_DIR, "Application request when we haven't %s. " "Optimistically trying known %s again.", !router_have_minimum_dir_info() ? "used client functionality lately" : "received a consensus with exits", options->UseBridges ? "bridges" : "entrynodes"); entries_retry_all(options); } else if (!options->UseBridges || any_bridge_descriptors_known()) { log_fn(severity, LD_APP|LD_DIR, "Application request when we haven't %s. " "Optimistically trying directory fetches again.", !router_have_minimum_dir_info() ? "used client functionality lately" : "received a consensus with exits"); routerlist_retry_directory_downloads(time(NULL)); } } /* the stream will be dealt with when router_have_minimum_dir_info becomes * 1, or when all directory attempts fail and directory_all_unreachable() * kills it. */ return 0; } /* Do we need to check exit policy? */ if (check_exit_policy) { if (!conn->chosen_exit_name) { struct in_addr in; tor_addr_t addr, *addrp=NULL; if (tor_inet_aton(conn->socks_request->address, &in)) { tor_addr_from_in(&addr, &in); addrp = &addr; } if (router_exit_policy_all_nodes_reject(addrp, conn->socks_request->port, need_uptime)) { log_notice(LD_APP, "No Tor server allows exit to %s:%d. Rejecting.", safe_str_client(conn->socks_request->address), conn->socks_request->port); return -1; } } else { /* XXXX024 Duplicates checks in connection_ap_handshake_attach_circuit: * refactor into a single function? */ const node_t *node = node_get_by_nickname(conn->chosen_exit_name, 1); int opt = conn->chosen_exit_optional; if (node && !connection_ap_can_use_exit(conn, node)) { log_fn(opt ? LOG_INFO : LOG_WARN, LD_APP, "Requested exit point '%s' is excluded or " "would refuse request. %s.", conn->chosen_exit_name, opt ? "Trying others" : "Closing"); if (opt) { conn->chosen_exit_optional = 0; tor_free(conn->chosen_exit_name); /* Try again. */ return circuit_get_open_circ_or_launch(conn, desired_circuit_purpose, circp); } return -1; } } } /* is one already on the way? */ circ = circuit_get_best(conn, 0, desired_circuit_purpose, need_uptime, need_internal); if (circ) log_debug(LD_CIRC, "one on the way!"); if (!circ) { extend_info_t *extend_info=NULL; uint8_t new_circ_purpose; const int n_pending = count_pending_general_client_circuits(); if (n_pending >= options->MaxClientCircuitsPending) { static ratelim_t delay_limit = RATELIM_INIT(10*60); char *m; if ((m = rate_limit_log(&delay_limit, approx_time()))) { log_notice(LD_APP, "We'd like to launch a circuit to handle a " "connection, but we already have %d general-purpose client " "circuits pending. Waiting until some finish.%s", n_pending, m); tor_free(m); } return 0; } if (desired_circuit_purpose == CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT) { /* need to pick an intro point */ rend_data_t *rend_data = ENTRY_TO_EDGE_CONN(conn)->rend_data; tor_assert(rend_data); extend_info = rend_client_get_random_intro(rend_data); if (!extend_info) { log_info(LD_REND, "No intro points for '%s': re-fetching service descriptor.", safe_str_client(rend_data->onion_address)); rend_client_refetch_v2_renddesc(rend_data); ENTRY_TO_CONN(conn)->state = AP_CONN_STATE_RENDDESC_WAIT; return 0; } log_info(LD_REND,"Chose %s as intro point for '%s'.", extend_info_describe(extend_info), safe_str_client(rend_data->onion_address)); } /* If we have specified a particular exit node for our * connection, then be sure to open a circuit to that exit node. */ if (desired_circuit_purpose == CIRCUIT_PURPOSE_C_GENERAL) { if (conn->chosen_exit_name) { const node_t *r; int opt = conn->chosen_exit_optional; r = node_get_by_nickname(conn->chosen_exit_name, 1); if (r && node_has_descriptor(r)) { /* We might want to connect to an IPv6 bridge for loading descriptors so we use the preferred address rather than the primary. */ extend_info = extend_info_from_node(r, conn->want_onehop ? 1 : 0); } else { log_debug(LD_DIR, "considering %d, %s", want_onehop, conn->chosen_exit_name); if (want_onehop && conn->chosen_exit_name[0] == '$') { /* We're asking for a one-hop circuit to a router that * we don't have a routerinfo about. Make up an extend_info. */ char digest[DIGEST_LEN]; char *hexdigest = conn->chosen_exit_name+1; tor_addr_t addr; if (strlen(hexdigest) < HEX_DIGEST_LEN || base16_decode(digest,DIGEST_LEN,hexdigest,HEX_DIGEST_LEN)<0) { log_info(LD_DIR, "Broken exit digest on tunnel conn. Closing."); return -1; } if (tor_addr_parse(&addr, conn->socks_request->address) < 0) { log_info(LD_DIR, "Broken address %s on tunnel conn. Closing.", escaped_safe_str_client(conn->socks_request->address)); return -1; } extend_info = extend_info_new(conn->chosen_exit_name+1, digest, NULL, NULL, &addr, conn->socks_request->port); } else { /* We will need an onion key for the router, and we * don't have one. Refuse or relax requirements. */ log_fn(opt ? LOG_INFO : LOG_WARN, LD_APP, "Requested exit point '%s' is not known. %s.", conn->chosen_exit_name, opt ? "Trying others" : "Closing"); if (opt) { conn->chosen_exit_optional = 0; tor_free(conn->chosen_exit_name); /* Try again with no requested exit */ return circuit_get_open_circ_or_launch(conn, desired_circuit_purpose, circp); } return -1; } } } } if (desired_circuit_purpose == CIRCUIT_PURPOSE_C_REND_JOINED) new_circ_purpose = CIRCUIT_PURPOSE_C_ESTABLISH_REND; else if (desired_circuit_purpose == CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT) new_circ_purpose = CIRCUIT_PURPOSE_C_INTRODUCING; else new_circ_purpose = desired_circuit_purpose; #ifdef ENABLE_TOR2WEB_MODE if (options->Tor2webMode && (new_circ_purpose == CIRCUIT_PURPOSE_C_ESTABLISH_REND || new_circ_purpose == CIRCUIT_PURPOSE_C_INTRODUCING)) { want_onehop = 1; } #endif { int flags = CIRCLAUNCH_NEED_CAPACITY; if (want_onehop) flags |= CIRCLAUNCH_ONEHOP_TUNNEL; if (need_uptime) flags |= CIRCLAUNCH_NEED_UPTIME; if (need_internal) flags |= CIRCLAUNCH_IS_INTERNAL; circ = circuit_launch_by_extend_info(new_circ_purpose, extend_info, flags); } extend_info_free(extend_info); if (desired_circuit_purpose == CIRCUIT_PURPOSE_C_GENERAL) { /* We just caused a circuit to get built because of this stream. * If this stream has caused a _lot_ of circuits to be built, that's * a bad sign: we should tell the user. */ if (conn->num_circuits_launched < NUM_CIRCUITS_LAUNCHED_THRESHOLD && ++conn->num_circuits_launched == NUM_CIRCUITS_LAUNCHED_THRESHOLD) log_info(LD_CIRC, "The application request to %s:%d has launched " "%d circuits without finding one it likes.", escaped_safe_str_client(conn->socks_request->address), conn->socks_request->port, conn->num_circuits_launched); } else { /* help predict this next time */ rep_hist_note_used_internal(time(NULL), need_uptime, 1); if (circ) { /* write the service_id into circ */ circ->rend_data = rend_data_dup(ENTRY_TO_EDGE_CONN(conn)->rend_data); if (circ->base_.purpose == CIRCUIT_PURPOSE_C_ESTABLISH_REND && circ->base_.state == CIRCUIT_STATE_OPEN) circuit_has_opened(circ); } } } /* endif (!circ) */ if (circ) { /* Mark the circuit with the isolation fields for this connection. * When the circuit arrives, we'll clear these flags: this is * just some internal bookkeeping to make sure that we have * launched enough circuits. */ connection_edge_update_circuit_isolation(conn, circ, 0); } else { log_info(LD_APP, "No safe circuit (purpose %d) ready for edge " "connection; delaying.", desired_circuit_purpose); } *circp = circ; return 0; } /** Return true iff crypt_path is one of the crypt_paths for * circ. */ static int cpath_is_on_circuit(origin_circuit_t *circ, crypt_path_t *crypt_path) { crypt_path_t *cpath, *cpath_next = NULL; for (cpath = circ->cpath; cpath_next != circ->cpath; cpath = cpath_next) { cpath_next = cpath->next; if (crypt_path == cpath) return 1; } return 0; } /** Return true iff client-side optimistic data is supported. */ static int optimistic_data_enabled(void) { const or_options_t *options = get_options(); if (options->OptimisticData < 0) { /* XXX023 consider having auto default to 1 rather than 0 before * the 0.2.3 branch goes stable. See bug 3617. -RD */ const int32_t enabled = networkstatus_get_param(NULL, "UseOptimisticData", 0, 0, 1); return (int)enabled; } return options->OptimisticData; } /** Attach the AP stream apconn to circ's linked list of * p_streams. Also set apconn's cpath_layer to cpath, or to the last * hop in circ's cpath if cpath is NULL. */ static void link_apconn_to_circ(entry_connection_t *apconn, origin_circuit_t *circ, crypt_path_t *cpath) { const node_t *exitnode = NULL; /* add it into the linked list of streams on this circuit */ log_debug(LD_APP|LD_CIRC, "attaching new conn to circ. n_circ_id %u.", (unsigned)circ->base_.n_circ_id); /* reset it, so we can measure circ timeouts */ ENTRY_TO_CONN(apconn)->timestamp_lastread = time(NULL); ENTRY_TO_EDGE_CONN(apconn)->next_stream = circ->p_streams; ENTRY_TO_EDGE_CONN(apconn)->on_circuit = TO_CIRCUIT(circ); /* assert_connection_ok(conn, time(NULL)); */ circ->p_streams = ENTRY_TO_EDGE_CONN(apconn); if (connection_edge_is_rendezvous_stream(ENTRY_TO_EDGE_CONN(apconn))) { /* We are attaching a stream to a rendezvous circuit. That means * that an attempt to connect to a hidden service just * succeeded. Tell rendclient.c. */ rend_client_note_connection_attempt_ended( ENTRY_TO_EDGE_CONN(apconn)->rend_data); } if (cpath) { /* we were given one; use it */ tor_assert(cpath_is_on_circuit(circ, cpath)); } else { /* use the last hop in the circuit */ tor_assert(circ->cpath); tor_assert(circ->cpath->prev); tor_assert(circ->cpath->prev->state == CPATH_STATE_OPEN); cpath = circ->cpath->prev; } ENTRY_TO_EDGE_CONN(apconn)->cpath_layer = cpath; circ->isolation_any_streams_attached = 1; connection_edge_update_circuit_isolation(apconn, circ, 0); /* Compute the exitnode if possible, for logging below */ if (cpath->extend_info) exitnode = node_get_by_id(cpath->extend_info->identity_digest); /* See if we can use optimistic data on this circuit */ if (optimistic_data_enabled() && (circ->base_.purpose == CIRCUIT_PURPOSE_C_GENERAL || circ->base_.purpose == CIRCUIT_PURPOSE_C_REND_JOINED)) apconn->may_use_optimistic_data = 1; else apconn->may_use_optimistic_data = 0; log_info(LD_APP, "Looks like completed circuit to %s %s allow " "optimistic data for connection to %s", circ->base_.purpose == CIRCUIT_PURPOSE_C_GENERAL ? /* node_describe() does the right thing if exitnode is NULL */ safe_str_client(node_describe(exitnode)) : "hidden service", apconn->may_use_optimistic_data ? "does" : "doesn't", safe_str_client(apconn->socks_request->address)); } /** Return true iff address is matched by one of the entries in * TrackHostExits. */ int hostname_in_track_host_exits(const or_options_t *options, const char *address) { if (!options->TrackHostExits) return 0; SMARTLIST_FOREACH_BEGIN(options->TrackHostExits, const char *, cp) { if (cp[0] == '.') { /* match end */ if (cp[1] == '\0' || !strcasecmpend(address, cp) || !strcasecmp(address, &cp[1])) return 1; } else if (strcasecmp(cp, address) == 0) { return 1; } } SMARTLIST_FOREACH_END(cp); return 0; } /** If an exit wasn't explicitly specified for conn, consider saving * the exit that we *did* choose for use by future connections to * conn's destination. */ static void consider_recording_trackhost(const entry_connection_t *conn, const origin_circuit_t *circ) { const or_options_t *options = get_options(); char *new_address = NULL; char fp[HEX_DIGEST_LEN+1]; /* Search the addressmap for this conn's destination. */ /* If he's not in the address map.. */ if (!options->TrackHostExits || addressmap_have_mapping(conn->socks_request->address, options->TrackHostExitsExpire)) return; /* nothing to track, or already mapped */ if (!hostname_in_track_host_exits(options, conn->socks_request->address) || !circ->build_state->chosen_exit) return; /* write down the fingerprint of the chosen exit, not the nickname, * because the chosen exit might not be named. */ base16_encode(fp, sizeof(fp), circ->build_state->chosen_exit->identity_digest, DIGEST_LEN); /* Add this exit/hostname pair to the addressmap. */ tor_asprintf(&new_address, "%s.%s.exit", conn->socks_request->address, fp); addressmap_register(conn->socks_request->address, new_address, time(NULL) + options->TrackHostExitsExpire, ADDRMAPSRC_TRACKEXIT, 0, 0); } /** Attempt to attach the connection conn to circ, and send a * begin or resolve cell as appropriate. Return values are as for * connection_ap_handshake_attach_circuit. The stream will exit from the hop * indicated by cpath, or from the last hop in circ's cpath if * cpath is NULL. */ int connection_ap_handshake_attach_chosen_circuit(entry_connection_t *conn, origin_circuit_t *circ, crypt_path_t *cpath) { connection_t *base_conn = ENTRY_TO_CONN(conn); tor_assert(conn); tor_assert(base_conn->state == AP_CONN_STATE_CIRCUIT_WAIT || base_conn->state == AP_CONN_STATE_CONTROLLER_WAIT); tor_assert(conn->socks_request); tor_assert(circ); tor_assert(circ->base_.state == CIRCUIT_STATE_OPEN); base_conn->state = AP_CONN_STATE_CIRCUIT_WAIT; if (!circ->base_.timestamp_dirty || ((conn->entry_cfg.isolation_flags & ISO_SOCKSAUTH) && (conn->entry_cfg.socks_iso_keep_alive) && (conn->socks_request->usernamelen || conn->socks_request->passwordlen))) { /* When stream isolation is in use and controlled by an application * we are willing to keep using the stream. */ circ->base_.timestamp_dirty = approx_time(); } pathbias_count_use_attempt(circ); link_apconn_to_circ(conn, circ, cpath); tor_assert(conn->socks_request); if (conn->socks_request->command == SOCKS_COMMAND_CONNECT) { if (!conn->use_begindir) consider_recording_trackhost(conn, circ); if (connection_ap_handshake_send_begin(conn) < 0) return -1; } else { if (connection_ap_handshake_send_resolve(conn) < 0) return -1; } return 1; } /** Try to find a safe live circuit for CONN_TYPE_AP connection conn. If * we don't find one: if conn cannot be handled by any known nodes, * warn and return -1 (conn needs to die, and is maybe already marked); * else launch new circuit (if necessary) and return 0. * Otherwise, associate conn with a safe live circuit, do the * right next step, and return 1. */ /* XXXX this function should mark for close whenever it returns -1; * its callers shouldn't have to worry about that. */ int connection_ap_handshake_attach_circuit(entry_connection_t *conn) { connection_t *base_conn = ENTRY_TO_CONN(conn); int retval; int conn_age; int want_onehop; tor_assert(conn); tor_assert(base_conn->state == AP_CONN_STATE_CIRCUIT_WAIT); tor_assert(conn->socks_request); want_onehop = conn->want_onehop; conn_age = (int)(time(NULL) - base_conn->timestamp_created); if (conn_age >= get_options()->SocksTimeout) { int severity = (tor_addr_is_null(&base_conn->addr) && !base_conn->port) ? LOG_INFO : LOG_NOTICE; log_fn(severity, LD_APP, "Tried for %d seconds to get a connection to %s:%d. Giving up.", conn_age, safe_str_client(conn->socks_request->address), conn->socks_request->port); return -1; } if (!connection_edge_is_rendezvous_stream(ENTRY_TO_EDGE_CONN(conn))) { /* we're a general conn */ origin_circuit_t *circ=NULL; if (conn->chosen_exit_name) { const node_t *node = node_get_by_nickname(conn->chosen_exit_name, 1); int opt = conn->chosen_exit_optional; if (!node && !want_onehop) { /* We ran into this warning when trying to extend a circuit to a * hidden service directory for which we didn't have a router * descriptor. See flyspray task 767 for more details. We should * keep this in mind when deciding to use BEGIN_DIR cells for other * directory requests as well. -KL*/ log_fn(opt ? LOG_INFO : LOG_WARN, LD_APP, "Requested exit point '%s' is not known. %s.", conn->chosen_exit_name, opt ? "Trying others" : "Closing"); if (opt) { conn->chosen_exit_optional = 0; tor_free(conn->chosen_exit_name); return 0; } return -1; } if (node && !connection_ap_can_use_exit(conn, node)) { log_fn(opt ? LOG_INFO : LOG_WARN, LD_APP, "Requested exit point '%s' is excluded or " "would refuse request. %s.", conn->chosen_exit_name, opt ? "Trying others" : "Closing"); if (opt) { conn->chosen_exit_optional = 0; tor_free(conn->chosen_exit_name); return 0; } return -1; } } /* find the circuit that we should use, if there is one. */ retval = circuit_get_open_circ_or_launch( conn, CIRCUIT_PURPOSE_C_GENERAL, &circ); if (retval < 1) // XXX023 if we totally fail, this still returns 0 -RD return retval; log_debug(LD_APP|LD_CIRC, "Attaching apconn to circ %u (stream %d sec old).", (unsigned)circ->base_.n_circ_id, conn_age); /* print the circ's path, so people can figure out which circs are * sucking. */ circuit_log_path(LOG_INFO,LD_APP|LD_CIRC,circ); /* We have found a suitable circuit for our conn. Hurray. */ return connection_ap_handshake_attach_chosen_circuit(conn, circ, NULL); } else { /* we're a rendezvous conn */ origin_circuit_t *rendcirc=NULL, *introcirc=NULL; tor_assert(!ENTRY_TO_EDGE_CONN(conn)->cpath_layer); /* start by finding a rendezvous circuit for us */ retval = circuit_get_open_circ_or_launch( conn, CIRCUIT_PURPOSE_C_REND_JOINED, &rendcirc); if (retval < 0) return -1; /* failed */ if (retval > 0) { tor_assert(rendcirc); /* one is already established, attach */ log_info(LD_REND, "rend joined circ %u already here. attaching. " "(stream %d sec old)", (unsigned)rendcirc->base_.n_circ_id, conn_age); /* Mark rendezvous circuits as 'newly dirty' every time you use * them, since the process of rebuilding a rendezvous circ is so * expensive. There is a tradeoff between linkability and * feasibility, at this point. */ rendcirc->base_.timestamp_dirty = time(NULL); /* We've also attempted to use them. If they fail, we need to * probe them for path bias */ pathbias_count_use_attempt(rendcirc); link_apconn_to_circ(conn, rendcirc, NULL); if (connection_ap_handshake_send_begin(conn) < 0) return 0; /* already marked, let them fade away */ return 1; } /* At this point we need to re-check the state, since it's possible that * our call to circuit_get_open_circ_or_launch() changed the connection's * state from "CIRCUIT_WAIT" to "RENDDESC_WAIT" because we decided to * re-fetch the descriptor. */ if (ENTRY_TO_CONN(conn)->state != AP_CONN_STATE_CIRCUIT_WAIT) { log_info(LD_REND, "This connection is no longer ready to attach; its " "state changed." "(We probably have to re-fetch its descriptor.)"); return 0; } if (rendcirc && (rendcirc->base_.purpose == CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED)) { log_info(LD_REND, "pending-join circ %u already here, with intro ack. " "Stalling. (stream %d sec old)", (unsigned)rendcirc->base_.n_circ_id, conn_age); return 0; } /* it's on its way. find an intro circ. */ retval = circuit_get_open_circ_or_launch( conn, CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT, &introcirc); if (retval < 0) return -1; /* failed */ if (retval > 0) { /* one has already sent the intro. keep waiting. */ tor_assert(introcirc); log_info(LD_REND, "Intro circ %u present and awaiting ack (rend %u). " "Stalling. (stream %d sec old)", (unsigned)introcirc->base_.n_circ_id, rendcirc ? (unsigned)rendcirc->base_.n_circ_id : 0, conn_age); return 0; } /* now rendcirc and introcirc are each either undefined or not finished */ if (rendcirc && introcirc && rendcirc->base_.purpose == CIRCUIT_PURPOSE_C_REND_READY) { log_info(LD_REND, "ready rend circ %u already here (no intro-ack yet on " "intro %u). (stream %d sec old)", (unsigned)rendcirc->base_.n_circ_id, (unsigned)introcirc->base_.n_circ_id, conn_age); tor_assert(introcirc->base_.purpose == CIRCUIT_PURPOSE_C_INTRODUCING); if (introcirc->base_.state == CIRCUIT_STATE_OPEN) { log_info(LD_REND,"found open intro circ %u (rend %u); sending " "introduction. (stream %d sec old)", (unsigned)introcirc->base_.n_circ_id, (unsigned)rendcirc->base_.n_circ_id, conn_age); switch (rend_client_send_introduction(introcirc, rendcirc)) { case 0: /* success */ rendcirc->base_.timestamp_dirty = time(NULL); introcirc->base_.timestamp_dirty = time(NULL); pathbias_count_use_attempt(introcirc); pathbias_count_use_attempt(rendcirc); assert_circuit_ok(TO_CIRCUIT(rendcirc)); assert_circuit_ok(TO_CIRCUIT(introcirc)); return 0; case -1: /* transient error */ return 0; case -2: /* permanent error */ return -1; default: /* oops */ tor_fragile_assert(); return -1; } } } log_info(LD_REND, "Intro (%u) and rend (%u) circs are not both ready. " "Stalling conn. (%d sec old)", introcirc ? (unsigned)introcirc->base_.n_circ_id : 0, rendcirc ? (unsigned)rendcirc->base_.n_circ_id : 0, conn_age); return 0; } } /** Change circ's purpose to new_purpose. */ void circuit_change_purpose(circuit_t *circ, uint8_t new_purpose) { uint8_t old_purpose; /* Don't allow an OR circ to become an origin circ or vice versa. */ tor_assert(!!(CIRCUIT_IS_ORIGIN(circ)) == !!(CIRCUIT_PURPOSE_IS_ORIGIN(new_purpose))); if (circ->purpose == new_purpose) return; if (CIRCUIT_IS_ORIGIN(circ)) { char old_purpose_desc[80] = ""; strncpy(old_purpose_desc, circuit_purpose_to_string(circ->purpose), 80-1); old_purpose_desc[80-1] = '\0'; log_debug(LD_CIRC, "changing purpose of origin circ %d " "from \"%s\" (%d) to \"%s\" (%d)", TO_ORIGIN_CIRCUIT(circ)->global_identifier, old_purpose_desc, circ->purpose, circuit_purpose_to_string(new_purpose), new_purpose); } old_purpose = circ->purpose; circ->purpose = new_purpose; if (CIRCUIT_IS_ORIGIN(circ)) { control_event_circuit_purpose_changed(TO_ORIGIN_CIRCUIT(circ), old_purpose); } } /** Mark circ so that no more connections can be attached to it. */ void mark_circuit_unusable_for_new_conns(origin_circuit_t *circ) { const or_options_t *options = get_options(); tor_assert(circ); /* XXXX025 This is a kludge; we're only keeping it around in case there's * something that doesn't check unusable_for_new_conns, and to avoid * deeper refactoring of our expiration logic. */ if (! circ->base_.timestamp_dirty) circ->base_.timestamp_dirty = approx_time(); if (options->MaxCircuitDirtiness >= circ->base_.timestamp_dirty) circ->base_.timestamp_dirty = 1; /* prevent underflow */ else circ->base_.timestamp_dirty -= options->MaxCircuitDirtiness; circ->unusable_for_new_conns = 1; } tor-0.2.7.6/src/or/channeltls.c0000644000175000017500000020640312621363246013131 00000000000000/* * Copyright (c) 2012-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file channeltls.c * \brief channel_t concrete subclass using or_connection_t **/ /* * Define this so channel.h gives us things only channel_t subclasses * should touch. */ #define TOR_CHANNEL_INTERNAL_ #define CHANNELTLS_PRIVATE #include "or.h" #include "channel.h" #include "channeltls.h" #include "circuitmux.h" #include "circuitmux_ewma.h" #include "config.h" #include "connection.h" #include "connection_or.h" #include "control.h" #include "link_handshake.h" #include "relay.h" #include "rephist.h" #include "router.h" #include "routerlist.h" #include "scheduler.h" /** How many CELL_PADDING cells have we received, ever? */ uint64_t stats_n_padding_cells_processed = 0; /** How many CELL_VERSIONS cells have we received, ever? */ uint64_t stats_n_versions_cells_processed = 0; /** How many CELL_NETINFO cells have we received, ever? */ uint64_t stats_n_netinfo_cells_processed = 0; /** How many CELL_VPADDING cells have we received, ever? */ uint64_t stats_n_vpadding_cells_processed = 0; /** How many CELL_CERTS cells have we received, ever? */ uint64_t stats_n_certs_cells_processed = 0; /** How many CELL_AUTH_CHALLENGE cells have we received, ever? */ uint64_t stats_n_auth_challenge_cells_processed = 0; /** How many CELL_AUTHENTICATE cells have we received, ever? */ uint64_t stats_n_authenticate_cells_processed = 0; /** How many CELL_AUTHORIZE cells have we received, ever? */ uint64_t stats_n_authorize_cells_processed = 0; /** Active listener, if any */ channel_listener_t *channel_tls_listener = NULL; /* channel_tls_t method declarations */ static void channel_tls_close_method(channel_t *chan); static const char * channel_tls_describe_transport_method(channel_t *chan); static void channel_tls_free_method(channel_t *chan); static double channel_tls_get_overhead_estimate_method(channel_t *chan); static int channel_tls_get_remote_addr_method(channel_t *chan, tor_addr_t *addr_out); static int channel_tls_get_transport_name_method(channel_t *chan, char **transport_out); static const char * channel_tls_get_remote_descr_method(channel_t *chan, int flags); static int channel_tls_has_queued_writes_method(channel_t *chan); static int channel_tls_is_canonical_method(channel_t *chan, int req); static int channel_tls_matches_extend_info_method(channel_t *chan, extend_info_t *extend_info); static int channel_tls_matches_target_method(channel_t *chan, const tor_addr_t *target); static int channel_tls_num_cells_writeable_method(channel_t *chan); static size_t channel_tls_num_bytes_queued_method(channel_t *chan); static int channel_tls_write_cell_method(channel_t *chan, cell_t *cell); static int channel_tls_write_packed_cell_method(channel_t *chan, packed_cell_t *packed_cell); static int channel_tls_write_var_cell_method(channel_t *chan, var_cell_t *var_cell); /* channel_listener_tls_t method declarations */ static void channel_tls_listener_close_method(channel_listener_t *chan_l); static const char * channel_tls_listener_describe_transport_method(channel_listener_t *chan_l); /** Handle incoming cells for the handshake stuff here rather than * passing them on up. */ static void channel_tls_process_versions_cell(var_cell_t *cell, channel_tls_t *tlschan); static void channel_tls_process_netinfo_cell(cell_t *cell, channel_tls_t *tlschan); static int command_allowed_before_handshake(uint8_t command); static int enter_v3_handshake_with_cell(var_cell_t *cell, channel_tls_t *tlschan); /** * Do parts of channel_tls_t initialization common to channel_tls_connect() * and channel_tls_handle_incoming(). */ STATIC void channel_tls_common_init(channel_tls_t *tlschan) { channel_t *chan; tor_assert(tlschan); chan = &(tlschan->base_); channel_init(chan); chan->magic = TLS_CHAN_MAGIC; chan->state = CHANNEL_STATE_OPENING; chan->close = channel_tls_close_method; chan->describe_transport = channel_tls_describe_transport_method; chan->free = channel_tls_free_method; chan->get_overhead_estimate = channel_tls_get_overhead_estimate_method; chan->get_remote_addr = channel_tls_get_remote_addr_method; chan->get_remote_descr = channel_tls_get_remote_descr_method; chan->get_transport_name = channel_tls_get_transport_name_method; chan->has_queued_writes = channel_tls_has_queued_writes_method; chan->is_canonical = channel_tls_is_canonical_method; chan->matches_extend_info = channel_tls_matches_extend_info_method; chan->matches_target = channel_tls_matches_target_method; chan->num_bytes_queued = channel_tls_num_bytes_queued_method; chan->num_cells_writeable = channel_tls_num_cells_writeable_method; chan->write_cell = channel_tls_write_cell_method; chan->write_packed_cell = channel_tls_write_packed_cell_method; chan->write_var_cell = channel_tls_write_var_cell_method; chan->cmux = circuitmux_alloc(); if (cell_ewma_enabled()) { circuitmux_set_policy(chan->cmux, &ewma_policy); } } /** * Start a new TLS channel * * Launch a new OR connection to addr:port and expect to * handshake with an OR with identity digest id_digest, and wrap * it in a channel_tls_t. */ channel_t * channel_tls_connect(const tor_addr_t *addr, uint16_t port, const char *id_digest) { channel_tls_t *tlschan = tor_malloc_zero(sizeof(*tlschan)); channel_t *chan = &(tlschan->base_); channel_tls_common_init(tlschan); log_debug(LD_CHANNEL, "In channel_tls_connect() for channel %p " "(global id " U64_FORMAT ")", tlschan, U64_PRINTF_ARG(chan->global_identifier)); if (is_local_addr(addr)) { log_debug(LD_CHANNEL, "Marking new outgoing channel " U64_FORMAT " at %p as local", U64_PRINTF_ARG(chan->global_identifier), chan); channel_mark_local(chan); } else { log_debug(LD_CHANNEL, "Marking new outgoing channel " U64_FORMAT " at %p as remote", U64_PRINTF_ARG(chan->global_identifier), chan); channel_mark_remote(chan); } channel_mark_outgoing(chan); /* Set up or_connection stuff */ tlschan->conn = connection_or_connect(addr, port, id_digest, tlschan); /* connection_or_connect() will fill in tlschan->conn */ if (!(tlschan->conn)) { chan->reason_for_closing = CHANNEL_CLOSE_FOR_ERROR; channel_change_state(chan, CHANNEL_STATE_ERROR); goto err; } log_debug(LD_CHANNEL, "Got orconn %p for channel with global id " U64_FORMAT, tlschan->conn, U64_PRINTF_ARG(chan->global_identifier)); goto done; err: circuitmux_free(chan->cmux); tor_free(tlschan); chan = NULL; done: /* If we got one, we should register it */ if (chan) channel_register(chan); return chan; } /** * Return the current channel_tls_t listener * * Returns the current channel listener for incoming TLS connections, or * NULL if none has been established */ channel_listener_t * channel_tls_get_listener(void) { return channel_tls_listener; } /** * Start a channel_tls_t listener if necessary * * Return the current channel_tls_t listener, or start one if we haven't yet, * and return that. */ channel_listener_t * channel_tls_start_listener(void) { channel_listener_t *listener; if (!channel_tls_listener) { listener = tor_malloc_zero(sizeof(*listener)); channel_init_listener(listener); listener->state = CHANNEL_LISTENER_STATE_LISTENING; listener->close = channel_tls_listener_close_method; listener->describe_transport = channel_tls_listener_describe_transport_method; channel_tls_listener = listener; log_debug(LD_CHANNEL, "Starting TLS channel listener %p with global id " U64_FORMAT, listener, U64_PRINTF_ARG(listener->global_identifier)); channel_listener_register(listener); } else listener = channel_tls_listener; return listener; } /** * Free everything on shutdown * * Not much to do here, since channel_free_all() takes care of a lot, but let's * get rid of the listener. */ void channel_tls_free_all(void) { channel_listener_t *old_listener = NULL; log_debug(LD_CHANNEL, "Shutting down TLS channels..."); if (channel_tls_listener) { /* * When we close it, channel_tls_listener will get nulled out, so save * a pointer so we can free it. */ old_listener = channel_tls_listener; log_debug(LD_CHANNEL, "Closing channel_tls_listener with ID " U64_FORMAT " at %p.", U64_PRINTF_ARG(old_listener->global_identifier), old_listener); channel_listener_unregister(old_listener); channel_listener_mark_for_close(old_listener); channel_listener_free(old_listener); tor_assert(channel_tls_listener == NULL); } log_debug(LD_CHANNEL, "Done shutting down TLS channels"); } /** * Create a new channel around an incoming or_connection_t */ channel_t * channel_tls_handle_incoming(or_connection_t *orconn) { channel_tls_t *tlschan = tor_malloc_zero(sizeof(*tlschan)); channel_t *chan = &(tlschan->base_); tor_assert(orconn); tor_assert(!(orconn->chan)); channel_tls_common_init(tlschan); /* Link the channel and orconn to each other */ tlschan->conn = orconn; orconn->chan = tlschan; if (is_local_addr(&(TO_CONN(orconn)->addr))) { log_debug(LD_CHANNEL, "Marking new incoming channel " U64_FORMAT " at %p as local", U64_PRINTF_ARG(chan->global_identifier), chan); channel_mark_local(chan); } else { log_debug(LD_CHANNEL, "Marking new incoming channel " U64_FORMAT " at %p as remote", U64_PRINTF_ARG(chan->global_identifier), chan); channel_mark_remote(chan); } channel_mark_incoming(chan); /* Register it */ channel_register(chan); return chan; } /********* * Casts * ********/ /** * Cast a channel_tls_t to a channel_t. */ channel_t * channel_tls_to_base(channel_tls_t *tlschan) { if (!tlschan) return NULL; return &(tlschan->base_); } /** * Cast a channel_t to a channel_tls_t, with appropriate type-checking * asserts. */ channel_tls_t * channel_tls_from_base(channel_t *chan) { if (!chan) return NULL; tor_assert(chan->magic == TLS_CHAN_MAGIC); return (channel_tls_t *)(chan); } /******************************************** * Method implementations for channel_tls_t * *******************************************/ /** * Close a channel_tls_t * * This implements the close method for channel_tls_t */ static void channel_tls_close_method(channel_t *chan) { channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan); tor_assert(tlschan); if (tlschan->conn) connection_or_close_normally(tlschan->conn, 1); else { /* Weird - we'll have to change the state ourselves, I guess */ log_info(LD_CHANNEL, "Tried to close channel_tls_t %p with NULL conn", tlschan); channel_change_state(chan, CHANNEL_STATE_ERROR); } } /** * Describe the transport for a channel_tls_t * * This returns the string "TLS channel on connection " to the upper * layer. */ static const char * channel_tls_describe_transport_method(channel_t *chan) { static char *buf = NULL; uint64_t id; channel_tls_t *tlschan; const char *rv = NULL; tor_assert(chan); tlschan = BASE_CHAN_TO_TLS(chan); if (tlschan->conn) { id = TO_CONN(tlschan->conn)->global_identifier; if (buf) tor_free(buf); tor_asprintf(&buf, "TLS channel (connection " U64_FORMAT ")", U64_PRINTF_ARG(id)); rv = buf; } else { rv = "TLS channel (no connection)"; } return rv; } /** * Free a channel_tls_t * * This is called by the generic channel layer when freeing a channel_tls_t; * this happens either on a channel which has already reached * CHANNEL_STATE_CLOSED or CHANNEL_STATE_ERROR from channel_run_cleanup() or * on shutdown from channel_free_all(). In the latter case we might still * have an orconn active (which connection_free_all() will get to later), * so we should null out its channel pointer now. */ static void channel_tls_free_method(channel_t *chan) { channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan); tor_assert(tlschan); if (tlschan->conn) { tlschan->conn->chan = NULL; tlschan->conn = NULL; } } /** * Get an estimate of the average TLS overhead for the upper layer */ static double channel_tls_get_overhead_estimate_method(channel_t *chan) { double overhead = 1.0f; channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan); tor_assert(tlschan); tor_assert(tlschan->conn); /* Just return 1.0f if we don't have sensible data */ if (tlschan->conn->bytes_xmitted > 0 && tlschan->conn->bytes_xmitted_by_tls >= tlschan->conn->bytes_xmitted) { overhead = ((double)(tlschan->conn->bytes_xmitted_by_tls)) / ((double)(tlschan->conn->bytes_xmitted)); /* * Never estimate more than 2.0; otherwise we get silly large estimates * at the very start of a new TLS connection. */ if (overhead > 2.0f) overhead = 2.0f; } log_debug(LD_CHANNEL, "Estimated overhead ratio for TLS chan " U64_FORMAT " is %f", U64_PRINTF_ARG(chan->global_identifier), overhead); return overhead; } /** * Get the remote address of a channel_tls_t * * This implements the get_remote_addr method for channel_tls_t; copy the * remote endpoint of the channel to addr_out and return 1 (always * succeeds for this transport). */ static int channel_tls_get_remote_addr_method(channel_t *chan, tor_addr_t *addr_out) { int rv = 0; channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan); tor_assert(tlschan); tor_assert(addr_out); if (tlschan->conn) { tor_addr_copy(addr_out, &(TO_CONN(tlschan->conn)->addr)); rv = 1; } else tor_addr_make_unspec(addr_out); return rv; } /** * Get the name of the pluggable transport used by a channel_tls_t. * * This implements the get_transport_name for channel_tls_t. If the * channel uses a pluggable transport, copy its name to * transport_out and return 0. If the channel did not use a * pluggable transport, return -1. */ static int channel_tls_get_transport_name_method(channel_t *chan, char **transport_out) { channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan); tor_assert(tlschan); tor_assert(transport_out); tor_assert(tlschan->conn); if (!tlschan->conn->ext_or_transport) return -1; *transport_out = tor_strdup(tlschan->conn->ext_or_transport); return 0; } /** * Get endpoint description of a channel_tls_t * * This implements the get_remote_descr method for channel_tls_t; it returns * a text description of the remote endpoint of the channel suitable for use * in log messages. The req parameter is 0 for the canonical address or 1 for * the actual address seen. */ static const char * channel_tls_get_remote_descr_method(channel_t *chan, int flags) { #define MAX_DESCR_LEN 32 static char buf[MAX_DESCR_LEN + 1]; channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan); connection_t *conn; const char *answer = NULL; char *addr_str; tor_assert(tlschan); if (tlschan->conn) { conn = TO_CONN(tlschan->conn); switch (flags) { case 0: /* Canonical address with port*/ tor_snprintf(buf, MAX_DESCR_LEN + 1, "%s:%u", conn->address, conn->port); answer = buf; break; case GRD_FLAG_ORIGINAL: /* Actual address with port */ addr_str = tor_dup_addr(&(tlschan->conn->real_addr)); tor_snprintf(buf, MAX_DESCR_LEN + 1, "%s:%u", addr_str, conn->port); tor_free(addr_str); answer = buf; break; case GRD_FLAG_ADDR_ONLY: /* Canonical address, no port */ strlcpy(buf, conn->address, sizeof(buf)); answer = buf; break; case GRD_FLAG_ORIGINAL|GRD_FLAG_ADDR_ONLY: /* Actual address, no port */ addr_str = tor_dup_addr(&(tlschan->conn->real_addr)); strlcpy(buf, addr_str, sizeof(buf)); tor_free(addr_str); answer = buf; break; default: /* Something's broken in channel.c */ tor_assert(1); } } else { strlcpy(buf, "(No connection)", sizeof(buf)); answer = buf; } return answer; } /** * Tell the upper layer if we have queued writes * * This implements the has_queued_writes method for channel_tls t_; it returns * 1 iff we have queued writes on the outbuf of the underlying or_connection_t. */ static int channel_tls_has_queued_writes_method(channel_t *chan) { size_t outbuf_len; channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan); tor_assert(tlschan); if (!(tlschan->conn)) { log_info(LD_CHANNEL, "something called has_queued_writes on a tlschan " "(%p with ID " U64_FORMAT " but no conn", chan, U64_PRINTF_ARG(chan->global_identifier)); } outbuf_len = (tlschan->conn != NULL) ? connection_get_outbuf_len(TO_CONN(tlschan->conn)) : 0; return (outbuf_len > 0); } /** * Tell the upper layer if we're canonical * * This implements the is_canonical method for channel_tls_t; if req is zero, * it returns whether this is a canonical channel, and if it is one it returns * whether that can be relied upon. */ static int channel_tls_is_canonical_method(channel_t *chan, int req) { int answer = 0; channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan); tor_assert(tlschan); if (tlschan->conn) { switch (req) { case 0: answer = tlschan->conn->is_canonical; break; case 1: /* * Is the is_canonical bit reliable? In protocols version 2 and up * we get the canonical address from a NETINFO cell, but in older * versions it might be based on an obsolete descriptor. */ answer = (tlschan->conn->link_proto >= 2); break; default: /* This shouldn't happen; channel.c is broken if it does */ tor_assert(1); } } /* else return 0 for tlschan->conn == NULL */ return answer; } /** * Check if we match an extend_info_t * * This implements the matches_extend_info method for channel_tls_t; the upper * layer wants to know if this channel matches an extend_info_t. */ static int channel_tls_matches_extend_info_method(channel_t *chan, extend_info_t *extend_info) { channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan); tor_assert(tlschan); tor_assert(extend_info); /* Never match if we have no conn */ if (!(tlschan->conn)) { log_info(LD_CHANNEL, "something called matches_extend_info on a tlschan " "(%p with ID " U64_FORMAT " but no conn", chan, U64_PRINTF_ARG(chan->global_identifier)); return 0; } return (tor_addr_eq(&(extend_info->addr), &(TO_CONN(tlschan->conn)->addr)) && (extend_info->port == TO_CONN(tlschan->conn)->port)); } /** * Check if we match a target address; return true iff we do. * * This implements the matches_target method for channel_tls t_; the upper * layer wants to know if this channel matches a target address when extending * a circuit. */ static int channel_tls_matches_target_method(channel_t *chan, const tor_addr_t *target) { channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan); tor_assert(tlschan); tor_assert(target); /* Never match if we have no conn */ if (!(tlschan->conn)) { log_info(LD_CHANNEL, "something called matches_target on a tlschan " "(%p with ID " U64_FORMAT " but no conn", chan, U64_PRINTF_ARG(chan->global_identifier)); return 0; } return tor_addr_eq(&(tlschan->conn->real_addr), target); } /** * Tell the upper layer how many bytes we have queued and not yet * sent. */ static size_t channel_tls_num_bytes_queued_method(channel_t *chan) { channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan); tor_assert(tlschan); tor_assert(tlschan->conn); return connection_get_outbuf_len(TO_CONN(tlschan->conn)); } /** * Tell the upper layer how many cells we can accept to write * * This implements the num_cells_writeable method for channel_tls_t; it * returns an estimate of the number of cells we can accept with * channel_tls_write_*_cell(). */ static int channel_tls_num_cells_writeable_method(channel_t *chan) { size_t outbuf_len; ssize_t n; channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan); size_t cell_network_size; tor_assert(tlschan); tor_assert(tlschan->conn); cell_network_size = get_cell_network_size(tlschan->conn->wide_circ_ids); outbuf_len = connection_get_outbuf_len(TO_CONN(tlschan->conn)); /* Get the number of cells */ n = CEIL_DIV(OR_CONN_HIGHWATER - outbuf_len, cell_network_size); if (n < 0) n = 0; #if SIZEOF_SIZE_T > SIZEOF_INT if (n > INT_MAX) n = INT_MAX; #endif return (int)n; } /** * Write a cell to a channel_tls_t * * This implements the write_cell method for channel_tls_t; given a * channel_tls_t and a cell_t, transmit the cell_t. */ static int channel_tls_write_cell_method(channel_t *chan, cell_t *cell) { channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan); int written = 0; tor_assert(tlschan); tor_assert(cell); if (tlschan->conn) { connection_or_write_cell_to_buf(cell, tlschan->conn); ++written; } else { log_info(LD_CHANNEL, "something called write_cell on a tlschan " "(%p with ID " U64_FORMAT " but no conn", chan, U64_PRINTF_ARG(chan->global_identifier)); } return written; } /** * Write a packed cell to a channel_tls_t * * This implements the write_packed_cell method for channel_tls_t; given a * channel_tls_t and a packed_cell_t, transmit the packed_cell_t. */ static int channel_tls_write_packed_cell_method(channel_t *chan, packed_cell_t *packed_cell) { channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan); size_t cell_network_size = get_cell_network_size(chan->wide_circ_ids); int written = 0; tor_assert(tlschan); tor_assert(packed_cell); if (tlschan->conn) { connection_write_to_buf(packed_cell->body, cell_network_size, TO_CONN(tlschan->conn)); /* This is where the cell is finished; used to be done from relay.c */ packed_cell_free(packed_cell); ++written; } else { log_info(LD_CHANNEL, "something called write_packed_cell on a tlschan " "(%p with ID " U64_FORMAT " but no conn", chan, U64_PRINTF_ARG(chan->global_identifier)); } return written; } /** * Write a variable-length cell to a channel_tls_t * * This implements the write_var_cell method for channel_tls_t; given a * channel_tls_t and a var_cell_t, transmit the var_cell_t. */ static int channel_tls_write_var_cell_method(channel_t *chan, var_cell_t *var_cell) { channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan); int written = 0; tor_assert(tlschan); tor_assert(var_cell); if (tlschan->conn) { connection_or_write_var_cell_to_buf(var_cell, tlschan->conn); ++written; } else { log_info(LD_CHANNEL, "something called write_var_cell on a tlschan " "(%p with ID " U64_FORMAT " but no conn", chan, U64_PRINTF_ARG(chan->global_identifier)); } return written; } /************************************************* * Method implementations for channel_listener_t * ************************************************/ /** * Close a channel_listener_t * * This implements the close method for channel_listener_t */ static void channel_tls_listener_close_method(channel_listener_t *chan_l) { tor_assert(chan_l); /* * Listeners we just go ahead and change state through to CLOSED, but * make sure to check if they're channel_tls_listener to NULL it out. */ if (chan_l == channel_tls_listener) channel_tls_listener = NULL; if (!(chan_l->state == CHANNEL_LISTENER_STATE_CLOSING || chan_l->state == CHANNEL_LISTENER_STATE_CLOSED || chan_l->state == CHANNEL_LISTENER_STATE_ERROR)) { channel_listener_change_state(chan_l, CHANNEL_LISTENER_STATE_CLOSING); } if (chan_l->incoming_list) { SMARTLIST_FOREACH_BEGIN(chan_l->incoming_list, channel_t *, ichan) { channel_mark_for_close(ichan); } SMARTLIST_FOREACH_END(ichan); smartlist_free(chan_l->incoming_list); chan_l->incoming_list = NULL; } if (!(chan_l->state == CHANNEL_LISTENER_STATE_CLOSED || chan_l->state == CHANNEL_LISTENER_STATE_ERROR)) { channel_listener_change_state(chan_l, CHANNEL_LISTENER_STATE_CLOSED); } } /** * Describe the transport for a channel_listener_t * * This returns the string "TLS channel (listening)" to the upper * layer. */ static const char * channel_tls_listener_describe_transport_method(channel_listener_t *chan_l) { tor_assert(chan_l); return "TLS channel (listening)"; } /******************************************************* * Functions for handling events on an or_connection_t * ******************************************************/ /** * Handle an orconn state change * * This function will be called by connection_or.c when the or_connection_t * associated with this channel_tls_t changes state. */ void channel_tls_handle_state_change_on_orconn(channel_tls_t *chan, or_connection_t *conn, uint8_t old_state, uint8_t state) { channel_t *base_chan; tor_assert(chan); tor_assert(conn); tor_assert(conn->chan == chan); tor_assert(chan->conn == conn); /* Shut the compiler up without triggering -Wtautological-compare */ (void)old_state; base_chan = TLS_CHAN_TO_BASE(chan); /* Make sure the base connection state makes sense - shouldn't be error * or closed. */ tor_assert(CHANNEL_IS_OPENING(base_chan) || CHANNEL_IS_OPEN(base_chan) || CHANNEL_IS_MAINT(base_chan) || CHANNEL_IS_CLOSING(base_chan)); /* Did we just go to state open? */ if (state == OR_CONN_STATE_OPEN) { /* * We can go to CHANNEL_STATE_OPEN from CHANNEL_STATE_OPENING or * CHANNEL_STATE_MAINT on this. */ channel_change_state(base_chan, CHANNEL_STATE_OPEN); /* We might have just become writeable; check and tell the scheduler */ if (connection_or_num_cells_writeable(conn) > 0) { scheduler_channel_wants_writes(base_chan); } } else { /* * Not open, so from CHANNEL_STATE_OPEN we go to CHANNEL_STATE_MAINT, * otherwise no change. */ if (CHANNEL_IS_OPEN(base_chan)) { channel_change_state(base_chan, CHANNEL_STATE_MAINT); } } } #ifdef KEEP_TIMING_STATS /** * Timing states wrapper * * This is a wrapper function around the actual function that processes the * cell that just arrived on chan. Increment *time * by the number of microseconds used by the call to *func(cell, chan). */ static void channel_tls_time_process_cell(cell_t *cell, channel_tls_t *chan, int *time, void (*func)(cell_t *, channel_tls_t *)) { struct timeval start, end; long time_passed; tor_gettimeofday(&start); (*func)(cell, chan); tor_gettimeofday(&end); time_passed = tv_udiff(&start, &end) ; if (time_passed > 10000) { /* more than 10ms */ log_debug(LD_OR,"That call just took %ld ms.",time_passed/1000); } if (time_passed < 0) { log_info(LD_GENERAL,"That call took us back in time!"); time_passed = 0; } *time += time_passed; } #endif /** * Handle an incoming cell on a channel_tls_t * * This is called from connection_or.c to handle an arriving cell; it checks * for cell types specific to the handshake for this transport protocol and * handles them, and queues all other cells to the channel_t layer, which * eventually will hand them off to command.c. */ void channel_tls_handle_cell(cell_t *cell, or_connection_t *conn) { channel_tls_t *chan; int handshaking; #ifdef KEEP_TIMING_STATS #define PROCESS_CELL(tp, cl, cn) STMT_BEGIN { \ ++num ## tp; \ channel_tls_time_process_cell(cl, cn, & tp ## time , \ channel_tls_process_ ## tp ## _cell); \ } STMT_END #else #define PROCESS_CELL(tp, cl, cn) channel_tls_process_ ## tp ## _cell(cl, cn) #endif tor_assert(cell); tor_assert(conn); chan = conn->chan; if (!chan) { log_warn(LD_CHANNEL, "Got a cell_t on an OR connection with no channel"); return; } handshaking = (TO_CONN(conn)->state != OR_CONN_STATE_OPEN); if (conn->base_.marked_for_close) return; /* Reject all but VERSIONS and NETINFO when handshaking. */ /* (VERSIONS should actually be impossible; it's variable-length.) */ if (handshaking && cell->command != CELL_VERSIONS && cell->command != CELL_NETINFO) { log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "Received unexpected cell command %d in chan state %s / " "conn state %s; closing the connection.", (int)cell->command, channel_state_to_string(TLS_CHAN_TO_BASE(chan)->state), conn_state_to_string(CONN_TYPE_OR, TO_CONN(conn)->state)); connection_or_close_for_error(conn, 0); return; } if (conn->base_.state == OR_CONN_STATE_OR_HANDSHAKING_V3) or_handshake_state_record_cell(conn, conn->handshake_state, cell, 1); switch (cell->command) { case CELL_PADDING: ++stats_n_padding_cells_processed; /* do nothing */ break; case CELL_VERSIONS: tor_fragile_assert(); break; case CELL_NETINFO: ++stats_n_netinfo_cells_processed; PROCESS_CELL(netinfo, cell, chan); break; case CELL_CREATE: case CELL_CREATE_FAST: case CELL_CREATED: case CELL_CREATED_FAST: case CELL_RELAY: case CELL_RELAY_EARLY: case CELL_DESTROY: case CELL_CREATE2: case CELL_CREATED2: /* * These are all transport independent and we pass them up through the * channel_t mechanism. They are ultimately handled in command.c. */ channel_queue_cell(TLS_CHAN_TO_BASE(chan), cell); break; default: log_fn(LOG_INFO, LD_PROTOCOL, "Cell of unknown type (%d) received in channeltls.c. " "Dropping.", cell->command); break; } } /** * Handle an incoming variable-length cell on a channel_tls_t * * Process a var_cell that was just received on conn. Keep * internal statistics about how many of each cell we've processed so far * this second, and the total number of microseconds it took to * process each type of cell. All the var_cell commands are handshake- * related and live below the channel_t layer, so no variable-length * cells ever get delivered in the current implementation, but I've left * the mechanism in place for future use. */ void channel_tls_handle_var_cell(var_cell_t *var_cell, or_connection_t *conn) { channel_tls_t *chan; #ifdef KEEP_TIMING_STATS /* how many of each cell have we seen so far this second? needs better * name. */ static int num_versions = 0, num_certs = 0; static time_t current_second = 0; /* from previous calls to time */ time_t now = time(NULL); if (current_second == 0) current_second = now; if (now > current_second) { /* the second has rolled over */ /* print stats */ log_info(LD_OR, "At end of second: %d versions (%d ms), %d certs (%d ms)", num_versions, versions_time / ((now - current_second) * 1000), num_certs, certs_time / ((now - current_second) * 1000)); num_versions = num_certs = 0; versions_time = certs_time = 0; /* remember which second it is, for next time */ current_second = now; } #endif tor_assert(var_cell); tor_assert(conn); chan = conn->chan; if (!chan) { log_warn(LD_CHANNEL, "Got a var_cell_t on an OR connection with no channel"); return; } if (TO_CONN(conn)->marked_for_close) return; switch (TO_CONN(conn)->state) { case OR_CONN_STATE_OR_HANDSHAKING_V2: if (var_cell->command != CELL_VERSIONS) { log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "Received a cell with command %d in unexpected " "orconn state \"%s\" [%d], channel state \"%s\" [%d]; " "closing the connection.", (int)(var_cell->command), conn_state_to_string(CONN_TYPE_OR, TO_CONN(conn)->state), TO_CONN(conn)->state, channel_state_to_string(TLS_CHAN_TO_BASE(chan)->state), (int)(TLS_CHAN_TO_BASE(chan)->state)); /* * The code in connection_or.c will tell channel_t to close for * error; it will go to CHANNEL_STATE_CLOSING, and then to * CHANNEL_STATE_ERROR when conn is closed. */ connection_or_close_for_error(conn, 0); return; } break; case OR_CONN_STATE_TLS_HANDSHAKING: /* If we're using bufferevents, it's entirely possible for us to * notice "hey, data arrived!" before we notice "hey, the handshake * finished!" And we need to be accepting both at once to handle both * the v2 and v3 handshakes. */ /* fall through */ case OR_CONN_STATE_TLS_SERVER_RENEGOTIATING: if (!(command_allowed_before_handshake(var_cell->command))) { log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "Received a cell with command %d in unexpected " "orconn state \"%s\" [%d], channel state \"%s\" [%d]; " "closing the connection.", (int)(var_cell->command), conn_state_to_string(CONN_TYPE_OR, TO_CONN(conn)->state), (int)(TO_CONN(conn)->state), channel_state_to_string(TLS_CHAN_TO_BASE(chan)->state), (int)(TLS_CHAN_TO_BASE(chan)->state)); /* see above comment about CHANNEL_STATE_ERROR */ connection_or_close_for_error(conn, 0); return; } else { if (enter_v3_handshake_with_cell(var_cell, chan) < 0) return; } break; case OR_CONN_STATE_OR_HANDSHAKING_V3: if (var_cell->command != CELL_AUTHENTICATE) or_handshake_state_record_var_cell(conn, conn->handshake_state, var_cell, 1); break; /* Everything is allowed */ case OR_CONN_STATE_OPEN: if (conn->link_proto < 3) { log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "Received a variable-length cell with command %d in orconn " "state %s [%d], channel state %s [%d] with link protocol %d; " "ignoring it.", (int)(var_cell->command), conn_state_to_string(CONN_TYPE_OR, TO_CONN(conn)->state), (int)(TO_CONN(conn)->state), channel_state_to_string(TLS_CHAN_TO_BASE(chan)->state), (int)(TLS_CHAN_TO_BASE(chan)->state), (int)(conn->link_proto)); return; } break; default: log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "Received var-length cell with command %d in unexpected " "orconn state \"%s\" [%d], channel state \"%s\" [%d]; " "ignoring it.", (int)(var_cell->command), conn_state_to_string(CONN_TYPE_OR, TO_CONN(conn)->state), (int)(TO_CONN(conn)->state), channel_state_to_string(TLS_CHAN_TO_BASE(chan)->state), (int)(TLS_CHAN_TO_BASE(chan)->state)); return; } /* Now handle the cell */ switch (var_cell->command) { case CELL_VERSIONS: ++stats_n_versions_cells_processed; PROCESS_CELL(versions, var_cell, chan); break; case CELL_VPADDING: ++stats_n_vpadding_cells_processed; /* Do nothing */ break; case CELL_CERTS: ++stats_n_certs_cells_processed; PROCESS_CELL(certs, var_cell, chan); break; case CELL_AUTH_CHALLENGE: ++stats_n_auth_challenge_cells_processed; PROCESS_CELL(auth_challenge, var_cell, chan); break; case CELL_AUTHENTICATE: ++stats_n_authenticate_cells_processed; PROCESS_CELL(authenticate, var_cell, chan); break; case CELL_AUTHORIZE: ++stats_n_authorize_cells_processed; /* Ignored so far. */ break; default: log_fn(LOG_INFO, LD_PROTOCOL, "Variable-length cell of unknown type (%d) received.", (int)(var_cell->command)); break; } } /** * Update channel marks after connection_or.c has changed an address * * This is called from connection_or_init_conn_from_address() after the * connection's _base.addr or real_addr fields have potentially been changed * so we can recalculate the local mark. Notably, this happens when incoming * connections are reverse-proxied and we only learn the real address of the * remote router by looking it up in the consensus after we finish the * handshake and know an authenticated identity digest. */ void channel_tls_update_marks(or_connection_t *conn) { channel_t *chan = NULL; tor_assert(conn); tor_assert(conn->chan); chan = TLS_CHAN_TO_BASE(conn->chan); if (is_local_addr(&(TO_CONN(conn)->addr))) { if (!channel_is_local(chan)) { log_debug(LD_CHANNEL, "Marking channel " U64_FORMAT " at %p as local", U64_PRINTF_ARG(chan->global_identifier), chan); channel_mark_local(chan); } } else { if (channel_is_local(chan)) { log_debug(LD_CHANNEL, "Marking channel " U64_FORMAT " at %p as remote", U64_PRINTF_ARG(chan->global_identifier), chan); channel_mark_remote(chan); } } } /** * Check if this cell type is allowed before the handshake is finished * * Return true if command is a cell command that's allowed to start a * V3 handshake. */ static int command_allowed_before_handshake(uint8_t command) { switch (command) { case CELL_VERSIONS: case CELL_VPADDING: case CELL_AUTHORIZE: return 1; default: return 0; } } /** * Start a V3 handshake on an incoming connection * * Called when we as a server receive an appropriate cell while waiting * either for a cell or a TLS handshake. Set the connection's state to * "handshaking_v3', initializes the or_handshake_state field as needed, * and add the cell to the hash of incoming cells.) */ static int enter_v3_handshake_with_cell(var_cell_t *cell, channel_tls_t *chan) { int started_here = 0; tor_assert(cell); tor_assert(chan); tor_assert(chan->conn); started_here = connection_or_nonopen_was_started_here(chan->conn); tor_assert(TO_CONN(chan->conn)->state == OR_CONN_STATE_TLS_HANDSHAKING || TO_CONN(chan->conn)->state == OR_CONN_STATE_TLS_SERVER_RENEGOTIATING); if (started_here) { log_fn(LOG_PROTOCOL_WARN, LD_OR, "Received a cell while TLS-handshaking, not in " "OR_HANDSHAKING_V3, on a connection we originated."); } connection_or_block_renegotiation(chan->conn); chan->conn->base_.state = OR_CONN_STATE_OR_HANDSHAKING_V3; if (connection_init_or_handshake_state(chan->conn, started_here) < 0) { connection_or_close_for_error(chan->conn, 0); return -1; } or_handshake_state_record_var_cell(chan->conn, chan->conn->handshake_state, cell, 1); return 0; } /** * Process a 'versions' cell. * * This function is called to handle an incoming VERSIONS cell; the current * link protocol version must be 0 to indicate that no version has yet been * negotiated. We compare the versions in the cell to the list of versions * we support, pick the highest version we have in common, and continue the * negotiation from there. */ static void channel_tls_process_versions_cell(var_cell_t *cell, channel_tls_t *chan) { int highest_supported_version = 0; int started_here = 0; tor_assert(cell); tor_assert(chan); tor_assert(chan->conn); if ((cell->payload_len % 2) == 1) { log_fn(LOG_PROTOCOL_WARN, LD_OR, "Received a VERSION cell with odd payload length %d; " "closing connection.",cell->payload_len); connection_or_close_for_error(chan->conn, 0); return; } started_here = connection_or_nonopen_was_started_here(chan->conn); if (chan->conn->link_proto != 0 || (chan->conn->handshake_state && chan->conn->handshake_state->received_versions)) { log_fn(LOG_PROTOCOL_WARN, LD_OR, "Received a VERSIONS cell on a connection with its version " "already set to %d; dropping", (int)(chan->conn->link_proto)); return; } switch (chan->conn->base_.state) { case OR_CONN_STATE_OR_HANDSHAKING_V2: case OR_CONN_STATE_OR_HANDSHAKING_V3: break; case OR_CONN_STATE_TLS_HANDSHAKING: case OR_CONN_STATE_TLS_SERVER_RENEGOTIATING: default: log_fn(LOG_PROTOCOL_WARN, LD_OR, "VERSIONS cell while in unexpected state"); return; } tor_assert(chan->conn->handshake_state); { int i; const uint8_t *cp = cell->payload; for (i = 0; i < cell->payload_len / 2; ++i, cp += 2) { uint16_t v = ntohs(get_uint16(cp)); if (is_or_protocol_version_known(v) && v > highest_supported_version) highest_supported_version = v; } } if (!highest_supported_version) { log_fn(LOG_PROTOCOL_WARN, LD_OR, "Couldn't find a version in common between my version list and the " "list in the VERSIONS cell; closing connection."); connection_or_close_for_error(chan->conn, 0); return; } else if (highest_supported_version == 1) { /* Negotiating version 1 makes no sense, since version 1 has no VERSIONS * cells. */ log_fn(LOG_PROTOCOL_WARN, LD_OR, "Used version negotiation protocol to negotiate a v1 connection. " "That's crazily non-compliant. Closing connection."); connection_or_close_for_error(chan->conn, 0); return; } else if (highest_supported_version < 3 && chan->conn->base_.state == OR_CONN_STATE_OR_HANDSHAKING_V3) { log_fn(LOG_PROTOCOL_WARN, LD_OR, "Negotiated link protocol 2 or lower after doing a v3 TLS " "handshake. Closing connection."); connection_or_close_for_error(chan->conn, 0); return; } else if (highest_supported_version != 2 && chan->conn->base_.state == OR_CONN_STATE_OR_HANDSHAKING_V2) { /* XXXX This should eventually be a log_protocol_warn */ log_fn(LOG_WARN, LD_OR, "Negotiated link with non-2 protocol after doing a v2 TLS " "handshake with %s. Closing connection.", fmt_addr(&chan->conn->base_.addr)); connection_or_close_for_error(chan->conn, 0); return; } rep_hist_note_negotiated_link_proto(highest_supported_version, started_here); chan->conn->link_proto = highest_supported_version; chan->conn->handshake_state->received_versions = 1; if (chan->conn->link_proto == 2) { log_info(LD_OR, "Negotiated version %d with %s:%d; sending NETINFO.", highest_supported_version, safe_str_client(chan->conn->base_.address), chan->conn->base_.port); if (connection_or_send_netinfo(chan->conn) < 0) { connection_or_close_for_error(chan->conn, 0); return; } } else { const int send_versions = !started_here; /* If we want to authenticate, send a CERTS cell */ const int send_certs = !started_here || public_server_mode(get_options()); /* If we're a host that got a connection, ask for authentication. */ const int send_chall = !started_here; /* If our certs cell will authenticate us, we can send a netinfo cell * right now. */ const int send_netinfo = !started_here; const int send_any = send_versions || send_certs || send_chall || send_netinfo; tor_assert(chan->conn->link_proto >= 3); log_info(LD_OR, "Negotiated version %d with %s:%d; %s%s%s%s%s", highest_supported_version, safe_str_client(chan->conn->base_.address), chan->conn->base_.port, send_any ? "Sending cells:" : "Waiting for CERTS cell", send_versions ? " VERSIONS" : "", send_certs ? " CERTS" : "", send_chall ? " AUTH_CHALLENGE" : "", send_netinfo ? " NETINFO" : ""); #ifdef DISABLE_V3_LINKPROTO_SERVERSIDE if (1) { connection_or_close_normally(chan->conn, 1); return; } #endif if (send_versions) { if (connection_or_send_versions(chan->conn, 1) < 0) { log_warn(LD_OR, "Couldn't send versions cell"); connection_or_close_for_error(chan->conn, 0); return; } } /* We set this after sending the verions cell. */ /*XXXXX symbolic const.*/ chan->base_.wide_circ_ids = chan->conn->link_proto >= MIN_LINK_PROTO_FOR_WIDE_CIRC_IDS; chan->conn->wide_circ_ids = chan->base_.wide_circ_ids; if (send_certs) { if (connection_or_send_certs_cell(chan->conn) < 0) { log_warn(LD_OR, "Couldn't send certs cell"); connection_or_close_for_error(chan->conn, 0); return; } } if (send_chall) { if (connection_or_send_auth_challenge_cell(chan->conn) < 0) { log_warn(LD_OR, "Couldn't send auth_challenge cell"); connection_or_close_for_error(chan->conn, 0); return; } } if (send_netinfo) { if (connection_or_send_netinfo(chan->conn) < 0) { log_warn(LD_OR, "Couldn't send netinfo cell"); connection_or_close_for_error(chan->conn, 0); return; } } } } /** * Process a 'netinfo' cell * * This function is called to handle an incoming NETINFO cell; read and act * on its contents, and set the connection state to "open". */ static void channel_tls_process_netinfo_cell(cell_t *cell, channel_tls_t *chan) { time_t timestamp; uint8_t my_addr_type; uint8_t my_addr_len; const uint8_t *my_addr_ptr; const uint8_t *cp, *end; uint8_t n_other_addrs; time_t now = time(NULL); long apparent_skew = 0; tor_addr_t my_apparent_addr = TOR_ADDR_NULL; tor_assert(cell); tor_assert(chan); tor_assert(chan->conn); if (chan->conn->link_proto < 2) { log_fn(LOG_PROTOCOL_WARN, LD_OR, "Received a NETINFO cell on %s connection; dropping.", chan->conn->link_proto == 0 ? "non-versioned" : "a v1"); return; } if (chan->conn->base_.state != OR_CONN_STATE_OR_HANDSHAKING_V2 && chan->conn->base_.state != OR_CONN_STATE_OR_HANDSHAKING_V3) { log_fn(LOG_PROTOCOL_WARN, LD_OR, "Received a NETINFO cell on non-handshaking connection; dropping."); return; } tor_assert(chan->conn->handshake_state && chan->conn->handshake_state->received_versions); if (chan->conn->base_.state == OR_CONN_STATE_OR_HANDSHAKING_V3) { tor_assert(chan->conn->link_proto >= 3); if (chan->conn->handshake_state->started_here) { if (!(chan->conn->handshake_state->authenticated)) { log_fn(LOG_PROTOCOL_WARN, LD_OR, "Got a NETINFO cell from server, " "but no authentication. Closing the connection."); connection_or_close_for_error(chan->conn, 0); return; } } else { /* we're the server. If the client never authenticated, we have some housekeeping to do.*/ if (!(chan->conn->handshake_state->authenticated)) { tor_assert(tor_digest_is_zero( (const char*)(chan->conn->handshake_state-> authenticated_peer_id))); channel_set_circid_type(TLS_CHAN_TO_BASE(chan), NULL, chan->conn->link_proto < MIN_LINK_PROTO_FOR_WIDE_CIRC_IDS); connection_or_init_conn_from_address(chan->conn, &(chan->conn->base_.addr), chan->conn->base_.port, (const char*)(chan->conn->handshake_state-> authenticated_peer_id), 0); } } } /* Decode the cell. */ timestamp = ntohl(get_uint32(cell->payload)); if (labs(now - chan->conn->handshake_state->sent_versions_at) < 180) { apparent_skew = now - timestamp; } my_addr_type = (uint8_t) cell->payload[4]; my_addr_len = (uint8_t) cell->payload[5]; my_addr_ptr = (uint8_t*) cell->payload + 6; end = cell->payload + CELL_PAYLOAD_SIZE; cp = cell->payload + 6 + my_addr_len; /* We used to check: * if (my_addr_len >= CELL_PAYLOAD_SIZE - 6) { * * This is actually never going to happen, since my_addr_len is at most 255, * and CELL_PAYLOAD_LEN - 6 is 503. So we know that cp is < end. */ if (my_addr_type == RESOLVED_TYPE_IPV4 && my_addr_len == 4) { tor_addr_from_ipv4n(&my_apparent_addr, get_uint32(my_addr_ptr)); } else if (my_addr_type == RESOLVED_TYPE_IPV6 && my_addr_len == 16) { tor_addr_from_ipv6_bytes(&my_apparent_addr, (const char *) my_addr_ptr); } n_other_addrs = (uint8_t) *cp++; while (n_other_addrs && cp < end-2) { /* Consider all the other addresses; if any matches, this connection is * "canonical." */ tor_addr_t addr; const uint8_t *next = decode_address_from_payload(&addr, cp, (int)(end-cp)); if (next == NULL) { log_fn(LOG_PROTOCOL_WARN, LD_OR, "Bad address in netinfo cell; closing connection."); connection_or_close_for_error(chan->conn, 0); return; } if (tor_addr_eq(&addr, &(chan->conn->real_addr))) { connection_or_set_canonical(chan->conn, 1); break; } cp = next; --n_other_addrs; } /* Act on apparent skew. */ /** Warn when we get a netinfo skew with at least this value. */ #define NETINFO_NOTICE_SKEW 3600 if (labs(apparent_skew) > NETINFO_NOTICE_SKEW && router_get_by_id_digest(chan->conn->identity_digest)) { char dbuf[64]; int severity; /*XXXX be smarter about when everybody says we are skewed. */ if (router_digest_is_trusted_dir(chan->conn->identity_digest)) severity = LOG_WARN; else severity = LOG_INFO; format_time_interval(dbuf, sizeof(dbuf), apparent_skew); log_fn(severity, LD_GENERAL, "Received NETINFO cell with skewed time from " "server at %s:%d. It seems that our clock is %s by %s, or " "that theirs is %s. Tor requires an accurate clock to work: " "please check your time and date settings.", chan->conn->base_.address, (int)(chan->conn->base_.port), apparent_skew > 0 ? "ahead" : "behind", dbuf, apparent_skew > 0 ? "behind" : "ahead"); if (severity == LOG_WARN) /* only tell the controller if an authority */ control_event_general_status(LOG_WARN, "CLOCK_SKEW SKEW=%ld SOURCE=OR:%s:%d", apparent_skew, chan->conn->base_.address, chan->conn->base_.port); } /* XXX maybe act on my_apparent_addr, if the source is sufficiently * trustworthy. */ if (! chan->conn->handshake_state->sent_netinfo) { /* If we were prepared to authenticate, but we never got an AUTH_CHALLENGE * cell, then we would not previously have sent a NETINFO cell. Do so * now. */ if (connection_or_send_netinfo(chan->conn) < 0) { connection_or_close_for_error(chan->conn, 0); return; } } if (connection_or_set_state_open(chan->conn) < 0) { log_fn(LOG_PROTOCOL_WARN, LD_OR, "Got good NETINFO cell from %s:%d; but " "was unable to make the OR connection become open.", safe_str_client(chan->conn->base_.address), chan->conn->base_.port); connection_or_close_for_error(chan->conn, 0); } else { log_info(LD_OR, "Got good NETINFO cell from %s:%d; OR connection is now " "open, using protocol version %d. Its ID digest is %s. " "Our address is apparently %s.", safe_str_client(chan->conn->base_.address), chan->conn->base_.port, (int)(chan->conn->link_proto), hex_str(TLS_CHAN_TO_BASE(chan)->identity_digest, DIGEST_LEN), tor_addr_is_null(&my_apparent_addr) ? "" : fmt_and_decorate_addr(&my_apparent_addr)); } assert_connection_ok(TO_CONN(chan->conn),time(NULL)); } /** * Process a CERTS cell from a channel. * * This function is called to process an incoming CERTS cell on a * channel_tls_t: * * If the other side should not have sent us a CERTS cell, or the cell is * malformed, or it is supposed to authenticate the TLS key but it doesn't, * then mark the connection. * * If the cell has a good cert chain and we're doing a v3 handshake, then * store the certificates in or_handshake_state. If this is the client side * of the connection, we then authenticate the server or mark the connection. * If it's the server side, wait for an AUTHENTICATE cell. */ STATIC void channel_tls_process_certs_cell(var_cell_t *cell, channel_tls_t *chan) { #define MAX_CERT_TYPE_WANTED OR_CERT_TYPE_AUTH_1024 tor_x509_cert_t *certs[MAX_CERT_TYPE_WANTED + 1]; int n_certs, i; certs_cell_t *cc = NULL; int send_netinfo = 0; memset(certs, 0, sizeof(certs)); tor_assert(cell); tor_assert(chan); tor_assert(chan->conn); #define ERR(s) \ do { \ log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, \ "Received a bad CERTS cell from %s:%d: %s", \ safe_str(chan->conn->base_.address), \ chan->conn->base_.port, (s)); \ connection_or_close_for_error(chan->conn, 0); \ goto err; \ } while (0) if (chan->conn->base_.state != OR_CONN_STATE_OR_HANDSHAKING_V3) ERR("We're not doing a v3 handshake!"); if (chan->conn->link_proto < 3) ERR("We're not using link protocol >= 3"); if (chan->conn->handshake_state->received_certs_cell) ERR("We already got one"); if (chan->conn->handshake_state->authenticated) { /* Should be unreachable, but let's make sure. */ ERR("We're already authenticated!"); } if (cell->payload_len < 1) ERR("It had no body"); if (cell->circ_id) ERR("It had a nonzero circuit ID"); if (certs_cell_parse(&cc, cell->payload, cell->payload_len) < 0) ERR("It couldn't be parsed."); n_certs = cc->n_certs; for (i = 0; i < n_certs; ++i) { certs_cell_cert_t *c = certs_cell_get_certs(cc, i); uint16_t cert_type = c->cert_type; uint16_t cert_len = c->cert_len; uint8_t *cert_body = certs_cell_cert_getarray_body(c); if (cert_type > MAX_CERT_TYPE_WANTED) continue; tor_x509_cert_t *cert = tor_x509_cert_decode(cert_body, cert_len); if (!cert) { log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "Received undecodable certificate in CERTS cell from %s:%d", safe_str(chan->conn->base_.address), chan->conn->base_.port); } else { if (certs[cert_type]) { tor_x509_cert_free(cert); ERR("Duplicate x509 certificate"); } else { certs[cert_type] = cert; } } } tor_x509_cert_t *id_cert = certs[OR_CERT_TYPE_ID_1024]; tor_x509_cert_t *auth_cert = certs[OR_CERT_TYPE_AUTH_1024]; tor_x509_cert_t *link_cert = certs[OR_CERT_TYPE_TLS_LINK]; if (chan->conn->handshake_state->started_here) { int severity; if (! (id_cert && link_cert)) ERR("The certs we wanted were missing"); /* Okay. We should be able to check the certificates now. */ if (! tor_tls_cert_matches_key(chan->conn->tls, link_cert)) { ERR("The link certificate didn't match the TLS public key"); } /* Note that this warns more loudly about time and validity if we were * _trying_ to connect to an authority, not necessarily if we _did_ connect * to one. */ if (router_digest_is_trusted_dir( TLS_CHAN_TO_BASE(chan)->identity_digest)) severity = LOG_WARN; else severity = LOG_PROTOCOL_WARN; if (! tor_tls_cert_is_valid(severity, link_cert, id_cert, 0)) ERR("The link certificate was not valid"); if (! tor_tls_cert_is_valid(severity, id_cert, id_cert, 1)) ERR("The ID certificate was not valid"); chan->conn->handshake_state->authenticated = 1; { const digests_t *id_digests = tor_x509_cert_get_id_digests(id_cert); crypto_pk_t *identity_rcvd; if (!id_digests) ERR("Couldn't compute digests for key in ID cert"); identity_rcvd = tor_tls_cert_get_key(id_cert); if (!identity_rcvd) ERR("Internal error: Couldn't get RSA key from ID cert."); memcpy(chan->conn->handshake_state->authenticated_peer_id, id_digests->d[DIGEST_SHA1], DIGEST_LEN); channel_set_circid_type(TLS_CHAN_TO_BASE(chan), identity_rcvd, chan->conn->link_proto < MIN_LINK_PROTO_FOR_WIDE_CIRC_IDS); crypto_pk_free(identity_rcvd); } if (connection_or_client_learned_peer_id(chan->conn, chan->conn->handshake_state->authenticated_peer_id) < 0) ERR("Problem setting or checking peer id"); log_info(LD_OR, "Got some good certificates from %s:%d: Authenticated it.", safe_str(chan->conn->base_.address), chan->conn->base_.port); chan->conn->handshake_state->id_cert = id_cert; certs[OR_CERT_TYPE_ID_1024] = NULL; if (!public_server_mode(get_options())) { /* If we initiated the connection and we are not a public server, we * aren't planning to authenticate at all. At this point we know who we * are talking to, so we can just send a netinfo now. */ send_netinfo = 1; } } else { if (! (id_cert && auth_cert)) ERR("The certs we wanted were missing"); /* Remember these certificates so we can check an AUTHENTICATE cell */ if (! tor_tls_cert_is_valid(LOG_PROTOCOL_WARN, auth_cert, id_cert, 1)) ERR("The authentication certificate was not valid"); if (! tor_tls_cert_is_valid(LOG_PROTOCOL_WARN, id_cert, id_cert, 1)) ERR("The ID certificate was not valid"); log_info(LD_OR, "Got some good certificates from %s:%d: " "Waiting for AUTHENTICATE.", safe_str(chan->conn->base_.address), chan->conn->base_.port); /* XXXX check more stuff? */ chan->conn->handshake_state->id_cert = id_cert; chan->conn->handshake_state->auth_cert = auth_cert; certs[OR_CERT_TYPE_ID_1024] = certs[OR_CERT_TYPE_AUTH_1024] = NULL; } chan->conn->handshake_state->received_certs_cell = 1; if (send_netinfo) { if (connection_or_send_netinfo(chan->conn) < 0) { log_warn(LD_OR, "Couldn't send netinfo cell"); connection_or_close_for_error(chan->conn, 0); goto err; } } err: for (unsigned i = 0; i < ARRAY_LENGTH(certs); ++i) { tor_x509_cert_free(certs[i]); } certs_cell_free(cc); #undef ERR } /** * Process an AUTH_CHALLENGE cell from a channel_tls_t * * This function is called to handle an incoming AUTH_CHALLENGE cell on a * channel_tls_t; if we weren't supposed to get one (for example, because we're * not the originator of the channel), or it's ill-formed, or we aren't doing * a v3 handshake, mark the channel. If the cell is well-formed but we don't * want to authenticate, just drop it. If the cell is well-formed *and* we * want to authenticate, send an AUTHENTICATE cell and then a NETINFO cell. */ STATIC void channel_tls_process_auth_challenge_cell(var_cell_t *cell, channel_tls_t *chan) { int n_types, i, use_type = -1; auth_challenge_cell_t *ac = NULL; tor_assert(cell); tor_assert(chan); tor_assert(chan->conn); #define ERR(s) \ do { \ log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, \ "Received a bad AUTH_CHALLENGE cell from %s:%d: %s", \ safe_str(chan->conn->base_.address), \ chan->conn->base_.port, (s)); \ connection_or_close_for_error(chan->conn, 0); \ goto done; \ } while (0) if (chan->conn->base_.state != OR_CONN_STATE_OR_HANDSHAKING_V3) ERR("We're not currently doing a v3 handshake"); if (chan->conn->link_proto < 3) ERR("We're not using link protocol >= 3"); if (!(chan->conn->handshake_state->started_here)) ERR("We didn't originate this connection"); if (chan->conn->handshake_state->received_auth_challenge) ERR("We already received one"); if (!(chan->conn->handshake_state->received_certs_cell)) ERR("We haven't gotten a CERTS cell yet"); if (cell->circ_id) ERR("It had a nonzero circuit ID"); if (auth_challenge_cell_parse(&ac, cell->payload, cell->payload_len) < 0) ERR("It was not well-formed."); n_types = ac->n_methods; /* Now see if there is an authentication type we can use */ for (i = 0; i < n_types; ++i) { uint16_t authtype = auth_challenge_cell_get_methods(ac, i); if (authtype == AUTHTYPE_RSA_SHA256_TLSSECRET) use_type = authtype; } chan->conn->handshake_state->received_auth_challenge = 1; if (! public_server_mode(get_options())) { /* If we're not a public server then we don't want to authenticate on a connection we originated, and we already sent a NETINFO cell when we got the CERTS cell. We have nothing more to do. */ goto done; } if (use_type >= 0) { log_info(LD_OR, "Got an AUTH_CHALLENGE cell from %s:%d: Sending " "authentication", safe_str(chan->conn->base_.address), chan->conn->base_.port); if (connection_or_send_authenticate_cell(chan->conn, use_type) < 0) { log_warn(LD_OR, "Couldn't send authenticate cell"); connection_or_close_for_error(chan->conn, 0); goto done; } } else { log_info(LD_OR, "Got an AUTH_CHALLENGE cell from %s:%d, but we don't " "know any of its authentication types. Not authenticating.", safe_str(chan->conn->base_.address), chan->conn->base_.port); } if (connection_or_send_netinfo(chan->conn) < 0) { log_warn(LD_OR, "Couldn't send netinfo cell"); connection_or_close_for_error(chan->conn, 0); goto done; } done: auth_challenge_cell_free(ac); #undef ERR } /** * Process an AUTHENTICATE cell from a channel_tls_t * * If it's ill-formed or we weren't supposed to get one or we're not doing a * v3 handshake, then mark the connection. If it does not authenticate the * other side of the connection successfully (because it isn't signed right, * we didn't get a CERTS cell, etc) mark the connection. Otherwise, accept * the identity of the router on the other side of the connection. */ STATIC void channel_tls_process_authenticate_cell(var_cell_t *cell, channel_tls_t *chan) { uint8_t expected[V3_AUTH_FIXED_PART_LEN+256]; const uint8_t *auth; int authlen; tor_assert(cell); tor_assert(chan); tor_assert(chan->conn); #define ERR(s) \ do { \ log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, \ "Received a bad AUTHENTICATE cell from %s:%d: %s", \ safe_str(chan->conn->base_.address), \ chan->conn->base_.port, (s)); \ connection_or_close_for_error(chan->conn, 0); \ return; \ } while (0) if (chan->conn->base_.state != OR_CONN_STATE_OR_HANDSHAKING_V3) ERR("We're not doing a v3 handshake"); if (chan->conn->link_proto < 3) ERR("We're not using link protocol >= 3"); if (chan->conn->handshake_state->started_here) ERR("We originated this connection"); if (chan->conn->handshake_state->received_authenticate) ERR("We already got one!"); if (chan->conn->handshake_state->authenticated) { /* Should be impossible given other checks */ ERR("The peer is already authenticated"); } if (!(chan->conn->handshake_state->received_certs_cell)) ERR("We never got a certs cell"); if (chan->conn->handshake_state->auth_cert == NULL) ERR("We never got an authentication certificate"); if (chan->conn->handshake_state->id_cert == NULL) ERR("We never got an identity certificate"); if (cell->payload_len < 4) ERR("Cell was way too short"); auth = cell->payload; { uint16_t type = ntohs(get_uint16(auth)); uint16_t len = ntohs(get_uint16(auth+2)); if (4 + len > cell->payload_len) ERR("Authenticator was truncated"); if (type != AUTHTYPE_RSA_SHA256_TLSSECRET) ERR("Authenticator type was not recognized"); auth += 4; authlen = len; } if (authlen < V3_AUTH_BODY_LEN + 1) ERR("Authenticator was too short"); ssize_t bodylen = connection_or_compute_authenticate_cell_body( chan->conn, expected, sizeof(expected), NULL, 1); if (bodylen < 0 || bodylen != V3_AUTH_FIXED_PART_LEN) ERR("Couldn't compute expected AUTHENTICATE cell body"); if (tor_memneq(expected, auth, bodylen)) ERR("Some field in the AUTHENTICATE cell body was not as expected"); { crypto_pk_t *pk = tor_tls_cert_get_key( chan->conn->handshake_state->auth_cert); char d[DIGEST256_LEN]; char *signed_data; size_t keysize; int signed_len; if (!pk) ERR("Internal error: couldn't get RSA key from AUTH cert."); crypto_digest256(d, (char*)auth, V3_AUTH_BODY_LEN, DIGEST_SHA256); keysize = crypto_pk_keysize(pk); signed_data = tor_malloc(keysize); signed_len = crypto_pk_public_checksig(pk, signed_data, keysize, (char*)auth + V3_AUTH_BODY_LEN, authlen - V3_AUTH_BODY_LEN); crypto_pk_free(pk); if (signed_len < 0) { tor_free(signed_data); ERR("Signature wasn't valid"); } if (signed_len < DIGEST256_LEN) { tor_free(signed_data); ERR("Not enough data was signed"); } /* Note that we deliberately allow *more* than DIGEST256_LEN bytes here, * in case they're later used to hold a SHA3 digest or something. */ if (tor_memneq(signed_data, d, DIGEST256_LEN)) { tor_free(signed_data); ERR("Signature did not match data to be signed."); } tor_free(signed_data); } /* Okay, we are authenticated. */ chan->conn->handshake_state->received_authenticate = 1; chan->conn->handshake_state->authenticated = 1; chan->conn->handshake_state->digest_received_data = 0; { crypto_pk_t *identity_rcvd = tor_tls_cert_get_key(chan->conn->handshake_state->id_cert); const digests_t *id_digests = tor_x509_cert_get_id_digests(chan->conn->handshake_state->id_cert); /* This must exist; we checked key type when reading the cert. */ tor_assert(id_digests); memcpy(chan->conn->handshake_state->authenticated_peer_id, id_digests->d[DIGEST_SHA1], DIGEST_LEN); channel_set_circid_type(TLS_CHAN_TO_BASE(chan), identity_rcvd, chan->conn->link_proto < MIN_LINK_PROTO_FOR_WIDE_CIRC_IDS); crypto_pk_free(identity_rcvd); connection_or_init_conn_from_address(chan->conn, &(chan->conn->base_.addr), chan->conn->base_.port, (const char*)(chan->conn->handshake_state-> authenticated_peer_id), 0); log_info(LD_OR, "Got an AUTHENTICATE cell from %s:%d: Looks good.", safe_str(chan->conn->base_.address), chan->conn->base_.port); } #undef ERR } tor-0.2.7.6/src/or/dirvote.h0000644000175000017500000001700312631612325012447 00000000000000/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file dirvote.h * \brief Header file for dirvote.c. **/ #ifndef TOR_DIRVOTE_H #define TOR_DIRVOTE_H #include "testsupport.h" /* * Ideally, assuming synced clocks, we should only need 1 second for each of: * - Vote * - Distribute * - Consensus Publication * As we can gather descriptors continuously. * (Could we even go as far as publishing the previous consensus, * in the same second that we vote for the next one?) * But we're not there yet: these are the lowest working values at this time. */ /** Lowest allowable value for VoteSeconds. */ #define MIN_VOTE_SECONDS 2 /** Lowest allowable value for VoteSeconds when TestingTorNetwork is 1 */ #define MIN_VOTE_SECONDS_TESTING 2 /** Lowest allowable value for DistSeconds. */ #define MIN_DIST_SECONDS 2 /** Lowest allowable value for DistSeconds when TestingTorNetwork is 1 */ #define MIN_DIST_SECONDS_TESTING 2 /** Lowest allowable voting interval. */ #define MIN_VOTE_INTERVAL 300 /** Lowest allowable voting interval when TestingTorNetwork is 1: * Voting Interval can be: * 10, 12, 15, 18, 20, 24, 25, 30, 36, 40, 45, 50, 60, ... * Testing Initial Voting Interval can be: * 5, 6, 8, 9, or any of the possible values for Voting Interval, * as they both need to evenly divide 30 minutes. * If clock desynchronisation is an issue, use an interval of at least: * 18 * drift in seconds, to allow for a clock slop factor */ #define MIN_VOTE_INTERVAL_TESTING \ (((MIN_VOTE_SECONDS_TESTING)+(MIN_DIST_SECONDS_TESTING)+1)*2) #define MIN_VOTE_INTERVAL_TESTING_INITIAL \ ((MIN_VOTE_SECONDS_TESTING)+(MIN_DIST_SECONDS_TESTING)+1) /** The lowest consensus method that we currently support. */ #define MIN_SUPPORTED_CONSENSUS_METHOD 13 /** The highest consensus method that we currently support. */ #define MAX_SUPPORTED_CONSENSUS_METHOD 21 /** Lowest consensus method where microdesc consensuses omit any entry * with no microdesc. */ #define MIN_METHOD_FOR_MANDATORY_MICRODESC 13 /** Lowest consensus method that contains "a" lines. */ #define MIN_METHOD_FOR_A_LINES 14 /** Lowest consensus method where microdescs may include a "p6" line. */ #define MIN_METHOD_FOR_P6_LINES 15 /** Lowest consensus method where microdescs may include an onion-key-ntor * line */ #define MIN_METHOD_FOR_NTOR_KEY 16 /** Lowest consensus method that ensures that authorities output an * Unmeasured=1 flag for unmeasured bandwidths */ #define MIN_METHOD_TO_CLIP_UNMEASURED_BW 17 /** Lowest consensus method where authorities may include an "id" line in * microdescriptors. */ #define MIN_METHOD_FOR_ID_HASH_IN_MD 18 /** Lowest consensus method where we include "package" lines*/ #define MIN_METHOD_FOR_PACKAGE_LINES 19 /** Lowest consensus method where authorities may include * GuardFraction information in microdescriptors. */ #define MIN_METHOD_FOR_GUARDFRACTION 20 /** Lowest consensus method where authorities may include an "id" line for * ed25519 identities in microdescriptors. */ #define MIN_METHOD_FOR_ED25519_ID_IN_MD 21 /** Lowest consensus method where authorities vote on ed25519 ids and ensure * ed25519 id consistency. */ #define MIN_METHOD_FOR_ED25519_ID_VOTING MIN_METHOD_FOR_ED25519_ID_IN_MD /** Default bandwidth to clip unmeasured bandwidths to using method >= * MIN_METHOD_TO_CLIP_UNMEASURED_BW. (This is not a consensus method; do not * get confused with the above macros.) */ #define DEFAULT_MAX_UNMEASURED_BW_KB 20 void dirvote_free_all(void); /* vote manipulation */ char *networkstatus_compute_consensus(smartlist_t *votes, int total_authorities, crypto_pk_t *identity_key, crypto_pk_t *signing_key, const char *legacy_identity_key_digest, crypto_pk_t *legacy_signing_key, consensus_flavor_t flavor); int networkstatus_add_detached_signatures(networkstatus_t *target, ns_detached_signatures_t *sigs, const char *source, int severity, const char **msg_out); char *networkstatus_get_detached_signatures(smartlist_t *consensuses); void ns_detached_signatures_free(ns_detached_signatures_t *s); /* cert manipulation */ authority_cert_t *authority_cert_dup(authority_cert_t *cert); /* vote scheduling */ void dirvote_get_preferred_voting_intervals(vote_timing_t *timing_out); time_t dirvote_get_start_of_next_interval(time_t now, int interval, int offset); void dirvote_recalculate_timing(const or_options_t *options, time_t now); void dirvote_act(const or_options_t *options, time_t now); /* invoked on timers and by outside triggers. */ struct pending_vote_t * dirvote_add_vote(const char *vote_body, const char **msg_out, int *status_out); int dirvote_add_signatures(const char *detached_signatures_body, const char *source, const char **msg_out); /* Item access */ const char *dirvote_get_pending_consensus(consensus_flavor_t flav); const char *dirvote_get_pending_detached_signatures(void); #define DGV_BY_ID 1 #define DGV_INCLUDE_PENDING 2 #define DGV_INCLUDE_PREVIOUS 4 const cached_dir_t *dirvote_get_vote(const char *fp, int flags); void set_routerstatus_from_routerinfo(routerstatus_t *rs, node_t *node, routerinfo_t *ri, time_t now, int listbadexits); networkstatus_t * dirserv_generate_networkstatus_vote_obj(crypto_pk_t *private_key, authority_cert_t *cert); microdesc_t *dirvote_create_microdescriptor(const routerinfo_t *ri, int consensus_method); ssize_t dirvote_format_microdesc_vote_line(char *out, size_t out_len, const microdesc_t *md, int consensus_method_low, int consensus_method_high); vote_microdesc_hash_t *dirvote_format_all_microdesc_vote_lines( const routerinfo_t *ri, time_t now, smartlist_t *microdescriptors_out); int vote_routerstatus_find_microdesc_hash(char *digest256_out, const vote_routerstatus_t *vrs, int method, digest_algorithm_t alg); document_signature_t *voter_get_sig_by_algorithm( const networkstatus_voter_info_t *voter, digest_algorithm_t alg); #ifdef DIRVOTE_PRIVATE STATIC char *format_networkstatus_vote(crypto_pk_t *private_key, networkstatus_t *v3_ns); STATIC char *dirvote_compute_params(smartlist_t *votes, int method, int total_authorities); STATIC char *compute_consensus_package_lines(smartlist_t *votes); #endif #endif tor-0.2.7.6/src/or/transports.h0000644000175000017500000001122012621363246013211 00000000000000/* Copyright (c) 2003-2004, Roger Dingledine * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file transports.h * \brief Headers for transports.c **/ #ifndef TOR_TRANSPORTS_H #define TOR_TRANSPORTS_H /** Represents a pluggable transport used by a bridge. */ typedef struct transport_t { /** SOCKS version: One of PROXY_SOCKS4, PROXY_SOCKS5. */ int socks_version; /** Name of pluggable transport protocol */ char *name; /** The IP address where the transport bound and is waiting for * connections. */ tor_addr_t addr; /** Port of proxy */ uint16_t port; /** Boolean: We are re-parsing our transport list, and we are going to remove * this one if we don't find it in the list of configured transports. */ unsigned marked_for_removal : 1; /** Arguments for this transport that must be written to the extra-info descriptor. */ char *extra_info_args; } transport_t; void mark_transport_list(void); void sweep_transport_list(void); MOCK_DECL(int, transport_add_from_config, (const tor_addr_t *addr, uint16_t port, const char *name, int socks_ver)); void transport_free(transport_t *transport); transport_t *transport_get_by_name(const char *name); MOCK_DECL(void, pt_kickstart_proxy, (const smartlist_t *transport_list, char **proxy_argv, int is_server)); #define pt_kickstart_client_proxy(tl, pa) \ pt_kickstart_proxy(tl, pa, 0) #define pt_kickstart_server_proxy(tl, pa) \ pt_kickstart_proxy(tl, pa, 1) void pt_configure_remaining_proxies(void); int pt_proxies_configuration_pending(void); char *pt_get_extra_info_descriptor_string(void); void pt_free_all(void); void pt_prepare_proxy_list_for_config_read(void); void sweep_proxy_list(void); smartlist_t *get_transport_proxy_ports(void); char *pt_stringify_socks_args(const smartlist_t *socks_args); char *pt_get_socks_args_for_proxy_addrport(const tor_addr_t *addr, uint16_t port); #ifdef PT_PRIVATE /** State of the managed proxy configuration protocol. */ enum pt_proto_state { PT_PROTO_INFANT, /* was just born */ PT_PROTO_LAUNCHED, /* was just launched */ PT_PROTO_ACCEPTING_METHODS, /* accepting methods */ PT_PROTO_CONFIGURED, /* configured successfully */ PT_PROTO_COMPLETED, /* configure and registered its transports */ PT_PROTO_BROKEN, /* broke during the protocol */ PT_PROTO_FAILED_LAUNCH /* failed while launching */ }; /** Structure containing information of a managed proxy. */ typedef struct { enum pt_proto_state conf_state; /* the current configuration state */ char **argv; /* the cli arguments of this proxy */ int conf_protocol; /* the configuration protocol version used */ char *proxy_uri; /* the outgoing proxy in TOR_PT_PROXY URI format */ unsigned int proxy_supported : 1; /* the proxy honors TOR_PT_PROXY */ int is_server; /* is it a server proxy? */ /* A pointer to the process handle of this managed proxy. */ process_handle_t *process_handle; int pid; /* The Process ID this managed proxy is using. */ /** Boolean: We are re-parsing our config, and we are going to * remove this managed proxy if we don't find it any transport * plugins that use it. */ unsigned int marked_for_removal : 1; /** Boolean: We got a SIGHUP while this proxy was running. We use * this flag to signify that this proxy might need to be restarted * so that it can listen for other transports according to the new * torrc. */ unsigned int was_around_before_config_read : 1; /* transports to-be-launched by this proxy */ smartlist_t *transports_to_launch; /* The 'transports' list contains all the transports this proxy has launched. */ smartlist_t *transports; } managed_proxy_t; STATIC int parse_cmethod_line(const char *line, managed_proxy_t *mp); STATIC int parse_smethod_line(const char *line, managed_proxy_t *mp); STATIC int parse_version(const char *line, managed_proxy_t *mp); STATIC void parse_env_error(const char *line); STATIC void parse_proxy_error(const char *line); STATIC void handle_proxy_line(const char *line, managed_proxy_t *mp); STATIC char *get_transport_options_for_server_proxy(const managed_proxy_t *mp); STATIC void managed_proxy_destroy(managed_proxy_t *mp, int also_terminate_process); STATIC managed_proxy_t *managed_proxy_create(const smartlist_t *transport_list, char **proxy_argv, int is_server); STATIC int configure_proxy(managed_proxy_t *mp); STATIC char* get_pt_proxy_uri(void); STATIC void free_execve_args(char **arg); #endif #endif tor-0.2.7.6/src/or/relay.h0000644000175000017500000001123112621363246012110 00000000000000/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file relay.h * \brief Header file for relay.c. **/ #ifndef TOR_RELAY_H #define TOR_RELAY_H extern uint64_t stats_n_relay_cells_relayed; extern uint64_t stats_n_relay_cells_delivered; int circuit_receive_relay_cell(cell_t *cell, circuit_t *circ, cell_direction_t cell_direction); void relay_header_pack(uint8_t *dest, const relay_header_t *src); void relay_header_unpack(relay_header_t *dest, const uint8_t *src); int relay_send_command_from_edge_(streamid_t stream_id, circuit_t *circ, uint8_t relay_command, const char *payload, size_t payload_len, crypt_path_t *cpath_layer, const char *filename, int lineno); #define relay_send_command_from_edge(stream_id, circ, relay_command, payload, \ payload_len, cpath_layer) \ relay_send_command_from_edge_((stream_id), (circ), (relay_command), \ (payload), (payload_len), (cpath_layer), \ __FILE__, __LINE__) int connection_edge_send_command(edge_connection_t *fromconn, uint8_t relay_command, const char *payload, size_t payload_len); int connection_edge_package_raw_inbuf(edge_connection_t *conn, int package_partial, int *max_cells); void connection_edge_consider_sending_sendme(edge_connection_t *conn); extern uint64_t stats_n_data_cells_packaged; extern uint64_t stats_n_data_bytes_packaged; extern uint64_t stats_n_data_cells_received; extern uint64_t stats_n_data_bytes_received; void dump_cell_pool_usage(int severity); size_t packed_cell_mem_cost(void); int have_been_under_memory_pressure(void); /* For channeltls.c */ void packed_cell_free(packed_cell_t *cell); void cell_queue_init(cell_queue_t *queue); void cell_queue_clear(cell_queue_t *queue); void cell_queue_append(cell_queue_t *queue, packed_cell_t *cell); void cell_queue_append_packed_copy(circuit_t *circ, cell_queue_t *queue, int exitward, const cell_t *cell, int wide_circ_ids, int use_stats); void append_cell_to_circuit_queue(circuit_t *circ, channel_t *chan, cell_t *cell, cell_direction_t direction, streamid_t fromstream); void channel_unlink_all_circuits(channel_t *chan, smartlist_t *detached_out); MOCK_DECL(int, channel_flush_from_first_active_circuit, (channel_t *chan, int max)); void assert_circuit_mux_okay(channel_t *chan); void update_circuit_on_cmux_(circuit_t *circ, cell_direction_t direction, const char *file, int lineno); #define update_circuit_on_cmux(circ, direction) \ update_circuit_on_cmux_((circ), (direction), SHORT_FILE__, __LINE__) int append_address_to_payload(uint8_t *payload_out, const tor_addr_t *addr); const uint8_t *decode_address_from_payload(tor_addr_t *addr_out, const uint8_t *payload, int payload_len); void circuit_clear_cell_queue(circuit_t *circ, channel_t *chan); void stream_choice_seed_weak_rng(void); int relay_crypt(circuit_t *circ, cell_t *cell, cell_direction_t cell_direction, crypt_path_t **layer_hint, char *recognized); circid_t packed_cell_get_circid(const packed_cell_t *cell, int wide_circ_ids); #ifdef RELAY_PRIVATE STATIC int connected_cell_parse(const relay_header_t *rh, const cell_t *cell, tor_addr_t *addr_out, int *ttl_out); /** An address-and-ttl tuple as yielded by resolved_cell_parse */ typedef struct address_ttl_s { tor_addr_t addr; char *hostname; int ttl; } address_ttl_t; STATIC void address_ttl_free(address_ttl_t *addr); STATIC int resolved_cell_parse(const cell_t *cell, const relay_header_t *rh, smartlist_t *addresses_out, int *errcode_out); STATIC int connection_edge_process_resolved_cell(edge_connection_t *conn, const cell_t *cell, const relay_header_t *rh); STATIC packed_cell_t *packed_cell_new(void); STATIC packed_cell_t *cell_queue_pop(cell_queue_t *queue); STATIC size_t cell_queues_get_total_allocation(void); STATIC int cell_queues_check_size(void); #endif #endif tor-0.2.7.6/src/or/buffers.h0000644000175000017500000001343212621363246012435 00000000000000/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file buffers.h * \brief Header file for buffers.c. **/ #ifndef TOR_BUFFERS_H #define TOR_BUFFERS_H #include "testsupport.h" buf_t *buf_new(void); buf_t *buf_new_with_capacity(size_t size); size_t buf_get_default_chunk_size(const buf_t *buf); void buf_free(buf_t *buf); void buf_clear(buf_t *buf); buf_t *buf_copy(const buf_t *buf); MOCK_DECL(size_t, buf_datalen, (const buf_t *buf)); size_t buf_allocation(const buf_t *buf); size_t buf_slack(const buf_t *buf); uint32_t buf_get_oldest_chunk_timestamp(const buf_t *buf, uint32_t now); size_t buf_get_total_allocation(void); int read_to_buf(tor_socket_t s, size_t at_most, buf_t *buf, int *reached_eof, int *socket_error); int read_to_buf_tls(tor_tls_t *tls, size_t at_most, buf_t *buf); int flush_buf(tor_socket_t s, buf_t *buf, size_t sz, size_t *buf_flushlen); int flush_buf_tls(tor_tls_t *tls, buf_t *buf, size_t sz, size_t *buf_flushlen); int write_to_buf(const char *string, size_t string_len, buf_t *buf); int write_to_buf_zlib(buf_t *buf, tor_zlib_state_t *state, const char *data, size_t data_len, int done); int move_buf_to_buf(buf_t *buf_out, buf_t *buf_in, size_t *buf_flushlen); int fetch_from_buf(char *string, size_t string_len, buf_t *buf); int fetch_var_cell_from_buf(buf_t *buf, var_cell_t **out, int linkproto); int fetch_from_buf_http(buf_t *buf, char **headers_out, size_t max_headerlen, char **body_out, size_t *body_used, size_t max_bodylen, int force_complete); socks_request_t *socks_request_new(void); void socks_request_free(socks_request_t *req); int fetch_from_buf_socks(buf_t *buf, socks_request_t *req, int log_sockstype, int safe_socks); int fetch_from_buf_socks_client(buf_t *buf, int state, char **reason); int fetch_from_buf_line(buf_t *buf, char *data_out, size_t *data_len); int peek_buf_has_control0_command(buf_t *buf); int fetch_ext_or_command_from_buf(buf_t *buf, ext_or_cmd_t **out); #ifdef USE_BUFFEREVENTS int fetch_var_cell_from_evbuffer(struct evbuffer *buf, var_cell_t **out, int linkproto); int fetch_from_evbuffer_socks(struct evbuffer *buf, socks_request_t *req, int log_sockstype, int safe_socks); int fetch_from_evbuffer_socks_client(struct evbuffer *buf, int state, char **reason); int fetch_from_evbuffer_http(struct evbuffer *buf, char **headers_out, size_t max_headerlen, char **body_out, size_t *body_used, size_t max_bodylen, int force_complete); int peek_evbuffer_has_control0_command(struct evbuffer *buf); int write_to_evbuffer_zlib(struct evbuffer *buf, tor_zlib_state_t *state, const char *data, size_t data_len, int done); int fetch_ext_or_command_from_evbuffer(struct evbuffer *buf, ext_or_cmd_t **out); #endif #ifdef USE_BUFFEREVENTS #define generic_buffer_new() evbuffer_new() #define generic_buffer_len(b) evbuffer_get_length((b)) #define generic_buffer_add(b,dat,len) evbuffer_add((b),(dat),(len)) #define generic_buffer_get(b,buf,buflen) evbuffer_remove((b),(buf),(buflen)) #define generic_buffer_clear(b) evbuffer_drain((b), evbuffer_get_length((b))) #define generic_buffer_free(b) evbuffer_free((b)) #define generic_buffer_fetch_ext_or_cmd(b, out) \ fetch_ext_or_command_from_evbuffer((b), (out)) #else #define generic_buffer_new() buf_new() #define generic_buffer_len(b) buf_datalen((b)) #define generic_buffer_add(b,dat,len) write_to_buf((dat),(len),(b)) #define generic_buffer_get(b,buf,buflen) fetch_from_buf((buf),(buflen),(b)) #define generic_buffer_clear(b) buf_clear((b)) #define generic_buffer_free(b) buf_free((b)) #define generic_buffer_fetch_ext_or_cmd(b, out) \ fetch_ext_or_command_from_buf((b), (out)) #endif int generic_buffer_set_to_copy(generic_buffer_t **output, const generic_buffer_t *input); void assert_buf_ok(buf_t *buf); #ifdef BUFFERS_PRIVATE STATIC int buf_find_string_offset(const buf_t *buf, const char *s, size_t n); STATIC void buf_pullup(buf_t *buf, size_t bytes); void buf_get_first_chunk_data(const buf_t *buf, const char **cp, size_t *sz); #define DEBUG_CHUNK_ALLOC /** A single chunk on a buffer. */ typedef struct chunk_t { struct chunk_t *next; /**< The next chunk on the buffer. */ size_t datalen; /**< The number of bytes stored in this chunk */ size_t memlen; /**< The number of usable bytes of storage in mem. */ #ifdef DEBUG_CHUNK_ALLOC size_t DBG_alloc; #endif char *data; /**< A pointer to the first byte of data stored in mem. */ uint32_t inserted_time; /**< Timestamp in truncated ms since epoch * when this chunk was inserted. */ char mem[FLEXIBLE_ARRAY_MEMBER]; /**< The actual memory used for storage in * this chunk. */ } chunk_t; /** Magic value for buf_t.magic, to catch pointer errors. */ #define BUFFER_MAGIC 0xB0FFF312u /** A resizeable buffer, optimized for reading and writing. */ struct buf_t { uint32_t magic; /**< Magic cookie for debugging: Must be set to * BUFFER_MAGIC. */ size_t datalen; /**< How many bytes is this buffer holding right now? */ size_t default_chunk_size; /**< Don't allocate any chunks smaller than * this for this buffer. */ chunk_t *head; /**< First chunk in the list, or NULL for none. */ chunk_t *tail; /**< Last chunk in the list, or NULL for none. */ }; #endif #endif tor-0.2.7.6/src/or/onion_fast.c0000644000175000017500000001002712632034724013126 00000000000000/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file onion_fast.c * \brief Functions implement the CREATE_FAST circuit handshake. **/ #include "or.h" #include "onion_fast.h" /** Release all state held in victim. */ void fast_handshake_state_free(fast_handshake_state_t *victim) { if (! victim) return; memwipe(victim, 0, sizeof(fast_handshake_state_t)); tor_free(victim); } /** Create the state needed to perform a CREATE_FAST handshake. Return 0 * on success, -1 on failure. */ int fast_onionskin_create(fast_handshake_state_t **handshake_state_out, uint8_t *handshake_out) { fast_handshake_state_t *s; *handshake_state_out = s = tor_malloc(sizeof(fast_handshake_state_t)); if (crypto_rand((char*)s->state, sizeof(s->state)) < 0) { tor_free(s); return -1; } memcpy(handshake_out, s->state, DIGEST_LEN); return 0; } /** Implement the server side of the CREATE_FAST abbreviated handshake. The * client has provided DIGEST_LEN key bytes in key_in ("x"). We * generate a reply of DIGEST_LEN*2 bytes in key_out, consisting of a * new random "y", followed by H(x|y) to check for correctness. We set * key_out_len bytes of key material in key_out. * Return 0 on success, <0 on failure. **/ int fast_server_handshake(const uint8_t *key_in, /* DIGEST_LEN bytes */ uint8_t *handshake_reply_out, /* DIGEST_LEN*2 bytes */ uint8_t *key_out, size_t key_out_len) { uint8_t tmp[DIGEST_LEN+DIGEST_LEN]; uint8_t *out = NULL; size_t out_len; int r = -1; if (crypto_rand((char*)handshake_reply_out, DIGEST_LEN)<0) return -1; memcpy(tmp, key_in, DIGEST_LEN); memcpy(tmp+DIGEST_LEN, handshake_reply_out, DIGEST_LEN); out_len = key_out_len+DIGEST_LEN; out = tor_malloc(out_len); if (crypto_expand_key_material_TAP(tmp, sizeof(tmp), out, out_len)) { goto done; } memcpy(handshake_reply_out+DIGEST_LEN, out, DIGEST_LEN); memcpy(key_out, out+DIGEST_LEN, key_out_len); r = 0; done: memwipe(tmp, 0, sizeof(tmp)); memwipe(out, 0, out_len); tor_free(out); return r; } /** Implement the second half of the client side of the CREATE_FAST handshake. * We sent the server handshake_state ("x") already, and the server * told us handshake_reply_out (y|H(x|y)). Make sure that the hash is * correct, and generate key material in key_out. Return 0 on success, * true on failure. * * NOTE: The "CREATE_FAST" handshake path is distinguishable from regular * "onionskin" handshakes, and is not secure if an adversary can see or modify * the messages. Therefore, it should only be used by clients, and only as * the first hop of a circuit (since the first hop is already authenticated * and protected by TLS). */ int fast_client_handshake(const fast_handshake_state_t *handshake_state, const uint8_t *handshake_reply_out,/*DIGEST_LEN*2 bytes*/ uint8_t *key_out, size_t key_out_len, const char **msg_out) { uint8_t tmp[DIGEST_LEN+DIGEST_LEN]; uint8_t *out; size_t out_len; int r = -1; memcpy(tmp, handshake_state->state, DIGEST_LEN); memcpy(tmp+DIGEST_LEN, handshake_reply_out, DIGEST_LEN); out_len = key_out_len+DIGEST_LEN; out = tor_malloc(out_len); if (crypto_expand_key_material_TAP(tmp, sizeof(tmp), out, out_len)) { if (msg_out) *msg_out = "Failed to expand key material"; goto done; } if (tor_memneq(out, handshake_reply_out+DIGEST_LEN, DIGEST_LEN)) { /* H(K) does *not* match. Something fishy. */ if (msg_out) *msg_out = "Digest DOES NOT MATCH on fast handshake. Bug or attack."; goto done; } memcpy(key_out, out+DIGEST_LEN, key_out_len); r = 0; done: memwipe(tmp, 0, sizeof(tmp)); memwipe(out, 0, out_len); tor_free(out); return r; } tor-0.2.7.6/src/or/scheduler.h0000644000175000017500000000304012621363246012751 00000000000000/* * Copyright (c) 2013-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file scheduler.h * \brief Header file for scheduler.c **/ #ifndef TOR_SCHEDULER_H #define TOR_SCHEDULER_H #include "or.h" #include "channel.h" #include "testsupport.h" /* Global-visibility scheduler functions */ /* Set up and shut down the scheduler from main.c */ void scheduler_free_all(void); void scheduler_init(void); MOCK_DECL(void, scheduler_run, (void)); /* Mark channels as having cells or wanting/not wanting writes */ MOCK_DECL(void,scheduler_channel_doesnt_want_writes,(channel_t *chan)); MOCK_DECL(void,scheduler_channel_has_waiting_cells,(channel_t *chan)); void scheduler_channel_wants_writes(channel_t *chan); /* Notify the scheduler of a channel being closed */ MOCK_DECL(void,scheduler_release_channel,(channel_t *chan)); /* Notify scheduler of queue size adjustments */ void scheduler_adjust_queue_size(channel_t *chan, int dir, uint64_t adj); /* Notify scheduler that a channel's queue position may have changed */ void scheduler_touch_channel(channel_t *chan); /* Adjust the watermarks from config file*/ void scheduler_set_watermarks(uint32_t lo, uint32_t hi, uint32_t max_flush); /* Things only scheduler.c and its test suite should see */ #ifdef SCHEDULER_PRIVATE_ MOCK_DECL(STATIC int, scheduler_compare_channels, (const void *c1_v, const void *c2_v)); STATIC uint64_t scheduler_get_queue_heuristic(void); STATIC void scheduler_update_queue_heuristic(time_t now); #endif #endif /* !defined(TOR_SCHEDULER_H) */ tor-0.2.7.6/src/or/dnsserv.c0000644000175000017500000003243512621363246012464 00000000000000/* Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file dnsserv.c \brief Implements client-side DNS proxy server code. Note: * this is the DNS Server code, not the Server DNS code. Confused? This code * runs on client-side, and acts as a DNS server. The code in dns.c, on the * other hand, runs on Tor servers, and acts as a DNS client. **/ #include "or.h" #include "dnsserv.h" #include "config.h" #include "connection.h" #include "connection_edge.h" #include "control.h" #include "main.h" #include "policies.h" #ifdef HAVE_EVENT2_DNS_H #include #include /* XXXX this implies we want an improved evdns */ #include #else #include "eventdns.h" #endif /** Helper function: called by evdns whenever the client sends a request to our * DNSPort. We need to eventually answer the request req. */ static void evdns_server_callback(struct evdns_server_request *req, void *data_) { const listener_connection_t *listener = data_; entry_connection_t *entry_conn; edge_connection_t *conn; int i = 0; struct evdns_server_question *q = NULL, *supported_q = NULL; struct sockaddr_storage addr; struct sockaddr *sa; int addrlen; tor_addr_t tor_addr; uint16_t port; int err = DNS_ERR_NONE; char *q_name; tor_assert(req); log_info(LD_APP, "Got a new DNS request!"); req->flags |= 0x80; /* set RA */ /* First, check whether the requesting address matches our SOCKSPolicy. */ if ((addrlen = evdns_server_request_get_requesting_addr(req, (struct sockaddr*)&addr, (socklen_t)sizeof(addr))) < 0) { log_warn(LD_APP, "Couldn't get requesting address."); evdns_server_request_respond(req, DNS_ERR_SERVERFAILED); return; } (void) addrlen; sa = (struct sockaddr*) &addr; if (tor_addr_from_sockaddr(&tor_addr, sa, &port)<0) { log_warn(LD_APP, "Requesting address wasn't recognized."); evdns_server_request_respond(req, DNS_ERR_SERVERFAILED); return; } if (!socks_policy_permits_address(&tor_addr)) { log_warn(LD_APP, "Rejecting DNS request from disallowed IP."); evdns_server_request_respond(req, DNS_ERR_REFUSED); return; } /* Now, let's find the first actual question of a type we can answer in this * DNS request. It makes us a little noncompliant to act like this; we * should fix that eventually if it turns out to make a difference for * anybody. */ if (req->nquestions == 0) { log_info(LD_APP, "No questions in DNS request; sending back nil reply."); evdns_server_request_respond(req, 0); return; } if (req->nquestions > 1) { log_info(LD_APP, "Got a DNS request with more than one question; I only " "handle one question at a time for now. Skipping the extras."); } for (i = 0; i < req->nquestions; ++i) { if (req->questions[i]->dns_question_class != EVDNS_CLASS_INET) continue; if (! q) q = req->questions[i]; switch (req->questions[i]->type) { case EVDNS_TYPE_A: case EVDNS_TYPE_AAAA: case EVDNS_TYPE_PTR: /* We always pick the first one of these questions, if there is one. */ if (! supported_q) supported_q = q; break; default: break; } } if (supported_q) q = supported_q; if (!q) { log_info(LD_APP, "None of the questions we got were ones we're willing " "to support. Sending NOTIMPL."); evdns_server_request_respond(req, DNS_ERR_NOTIMPL); return; } /* Make sure the name isn't too long: This should be impossible, I think. */ if (err == DNS_ERR_NONE && strlen(q->name) > MAX_SOCKS_ADDR_LEN-1) err = DNS_ERR_FORMAT; if (err != DNS_ERR_NONE || !supported_q) { /* We got an error? There's no question we're willing to answer? Then * send back an answer immediately; we're done. */ evdns_server_request_respond(req, err); return; } /* Make a new dummy AP connection, and attach the request to it. */ entry_conn = entry_connection_new(CONN_TYPE_AP, AF_INET); conn = ENTRY_TO_EDGE_CONN(entry_conn); TO_CONN(conn)->state = AP_CONN_STATE_RESOLVE_WAIT; conn->is_dns_request = 1; tor_addr_copy(&TO_CONN(conn)->addr, &tor_addr); TO_CONN(conn)->port = port; TO_CONN(conn)->address = tor_dup_addr(&tor_addr); if (q->type == EVDNS_TYPE_A || q->type == EVDNS_TYPE_AAAA || q->type == EVDNS_QTYPE_ALL) { entry_conn->socks_request->command = SOCKS_COMMAND_RESOLVE; } else { tor_assert(q->type == EVDNS_TYPE_PTR); entry_conn->socks_request->command = SOCKS_COMMAND_RESOLVE_PTR; } if (q->type == EVDNS_TYPE_A || q->type == EVDNS_QTYPE_ALL) { entry_conn->entry_cfg.ipv4_traffic = 1; entry_conn->entry_cfg.ipv6_traffic = 0; entry_conn->entry_cfg.prefer_ipv6 = 0; } else if (q->type == EVDNS_TYPE_AAAA) { entry_conn->entry_cfg.ipv4_traffic = 0; entry_conn->entry_cfg.ipv6_traffic = 1; entry_conn->entry_cfg.prefer_ipv6 = 1; } strlcpy(entry_conn->socks_request->address, q->name, sizeof(entry_conn->socks_request->address)); entry_conn->socks_request->listener_type = listener->base_.type; entry_conn->dns_server_request = req; entry_conn->entry_cfg.isolation_flags = listener->entry_cfg.isolation_flags; entry_conn->entry_cfg.session_group = listener->entry_cfg.session_group; entry_conn->nym_epoch = get_signewnym_epoch(); if (connection_add(ENTRY_TO_CONN(entry_conn)) < 0) { log_warn(LD_APP, "Couldn't register dummy connection for DNS request"); evdns_server_request_respond(req, DNS_ERR_SERVERFAILED); connection_free(ENTRY_TO_CONN(entry_conn)); return; } control_event_stream_status(entry_conn, STREAM_EVENT_NEW_RESOLVE, 0); /* Now, unless a controller asked us to leave streams unattached, * throw the connection over to get rewritten (which will * answer it immediately if it's in the cache, or completely bogus, or * automapped), and then attached to a circuit. */ log_info(LD_APP, "Passing request for %s to rewrite_and_attach.", escaped_safe_str_client(q->name)); q_name = tor_strdup(q->name); /* q could be freed in rewrite_and_attach */ connection_ap_rewrite_and_attach_if_allowed(entry_conn, NULL, NULL); /* Now, the connection is marked if it was bad. */ log_info(LD_APP, "Passed request for %s to rewrite_and_attach_if_allowed.", escaped_safe_str_client(q_name)); tor_free(q_name); } /** Helper function: called whenever the client sends a resolve request to our * controller. We need to eventually answer the request req. * Returns 0 if the controller will be getting (or has gotten) an event in * response; -1 if we couldn't launch the request. */ int dnsserv_launch_request(const char *name, int reverse, control_connection_t *control_conn) { entry_connection_t *entry_conn; edge_connection_t *conn; char *q_name; /* Make a new dummy AP connection, and attach the request to it. */ entry_conn = entry_connection_new(CONN_TYPE_AP, AF_INET); conn = ENTRY_TO_EDGE_CONN(entry_conn); conn->base_.state = AP_CONN_STATE_RESOLVE_WAIT; tor_addr_copy(&TO_CONN(conn)->addr, &control_conn->base_.addr); #ifdef AF_UNIX /* * The control connection can be AF_UNIX and if so tor_dup_addr will * unhelpfully say ""; say "(Tor_internal)" * instead. */ if (control_conn->base_.socket_family == AF_UNIX) { TO_CONN(conn)->port = 0; TO_CONN(conn)->address = tor_strdup("(Tor_internal)"); } else { TO_CONN(conn)->port = control_conn->base_.port; TO_CONN(conn)->address = tor_dup_addr(&control_conn->base_.addr); } #else TO_CONN(conn)->port = control_conn->base_.port; TO_CONN(conn)->address = tor_dup_addr(&control_conn->base_.addr); #endif if (reverse) entry_conn->socks_request->command = SOCKS_COMMAND_RESOLVE_PTR; else entry_conn->socks_request->command = SOCKS_COMMAND_RESOLVE; conn->is_dns_request = 1; strlcpy(entry_conn->socks_request->address, name, sizeof(entry_conn->socks_request->address)); entry_conn->socks_request->listener_type = CONN_TYPE_CONTROL_LISTENER; entry_conn->original_dest_address = tor_strdup(name); entry_conn->entry_cfg.session_group = SESSION_GROUP_CONTROL_RESOLVE; entry_conn->nym_epoch = get_signewnym_epoch(); entry_conn->entry_cfg.isolation_flags = ISO_DEFAULT; if (connection_add(TO_CONN(conn))<0) { log_warn(LD_APP, "Couldn't register dummy connection for RESOLVE request"); connection_free(TO_CONN(conn)); return -1; } control_event_stream_status(entry_conn, STREAM_EVENT_NEW_RESOLVE, 0); /* Now, unless a controller asked us to leave streams unattached, * throw the connection over to get rewritten (which will * answer it immediately if it's in the cache, or completely bogus, or * automapped), and then attached to a circuit. */ log_info(LD_APP, "Passing request for %s to rewrite_and_attach.", escaped_safe_str_client(name)); q_name = tor_strdup(name); /* q could be freed in rewrite_and_attach */ connection_ap_rewrite_and_attach_if_allowed(entry_conn, NULL, NULL); /* Now, the connection is marked if it was bad. */ log_info(LD_APP, "Passed request for %s to rewrite_and_attach_if_allowed.", escaped_safe_str_client(q_name)); tor_free(q_name); return 0; } /** If there is a pending request on conn that's waiting for an answer, * send back an error and free the request. */ void dnsserv_reject_request(entry_connection_t *conn) { if (conn->dns_server_request) { evdns_server_request_respond(conn->dns_server_request, DNS_ERR_SERVERFAILED); conn->dns_server_request = NULL; } } /** Look up the original name that corresponds to 'addr' in req. We use this * to preserve case in order to facilitate people using 0x20-hacks to avoid * DNS poisoning. */ static const char * evdns_get_orig_address(const struct evdns_server_request *req, int rtype, const char *addr) { int i, type; switch (rtype) { case RESOLVED_TYPE_IPV4: type = EVDNS_TYPE_A; break; case RESOLVED_TYPE_HOSTNAME: type = EVDNS_TYPE_PTR; break; case RESOLVED_TYPE_IPV6: type = EVDNS_TYPE_AAAA; break; default: tor_fragile_assert(); return addr; } for (i = 0; i < req->nquestions; ++i) { const struct evdns_server_question *q = req->questions[i]; if (q->type == type && !strcasecmp(q->name, addr)) return q->name; } return addr; } /** Tell the dns request waiting for an answer on conn that we have an * answer of type answer_type (RESOLVE_TYPE_IPV4/IPV6/ERR), of length * answer_len, in answer, with TTL ttl. Doesn't do * any caching; that's handled elsewhere. */ void dnsserv_resolved(entry_connection_t *conn, int answer_type, size_t answer_len, const char *answer, int ttl) { struct evdns_server_request *req = conn->dns_server_request; const char *name; int err = DNS_ERR_NONE; if (!req) return; name = evdns_get_orig_address(req, answer_type, conn->socks_request->address); /* XXXX Re-do; this is dumb. */ if (ttl < 60) ttl = 60; /* The evdns interface is: add a bunch of reply items (corresponding to one * or more of the questions in the request); then, call * evdns_server_request_respond. */ if (answer_type == RESOLVED_TYPE_IPV6) { evdns_server_request_add_aaaa_reply(req, name, 1, answer, ttl); } else if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4 && conn->socks_request->command == SOCKS_COMMAND_RESOLVE) { evdns_server_request_add_a_reply(req, name, 1, answer, ttl); } else if (answer_type == RESOLVED_TYPE_HOSTNAME && answer_len < 256 && conn->socks_request->command == SOCKS_COMMAND_RESOLVE_PTR) { char *ans = tor_strndup(answer, answer_len); evdns_server_request_add_ptr_reply(req, NULL, name, ans, ttl); tor_free(ans); } else if (answer_type == RESOLVED_TYPE_ERROR) { err = DNS_ERR_NOTEXIST; } else { /* answer_type == RESOLVED_TYPE_ERROR_TRANSIENT */ err = DNS_ERR_SERVERFAILED; } evdns_server_request_respond(req, err); conn->dns_server_request = NULL; } /** Set up the evdns server port for the UDP socket on conn, which * must be an AP_DNS_LISTENER */ void dnsserv_configure_listener(connection_t *conn) { listener_connection_t *listener_conn; tor_assert(conn); tor_assert(SOCKET_OK(conn->s)); tor_assert(conn->type == CONN_TYPE_AP_DNS_LISTENER); listener_conn = TO_LISTENER_CONN(conn); listener_conn->dns_server_port = tor_evdns_add_server_port(conn->s, 0, evdns_server_callback, listener_conn); } /** Free the evdns server port for conn, which must be an * AP_DNS_LISTENER. */ void dnsserv_close_listener(connection_t *conn) { listener_connection_t *listener_conn; tor_assert(conn); tor_assert(conn->type == CONN_TYPE_AP_DNS_LISTENER); listener_conn = TO_LISTENER_CONN(conn); if (listener_conn->dns_server_port) { evdns_close_server_port(listener_conn->dns_server_port); listener_conn->dns_server_port = NULL; } } tor-0.2.7.6/src/or/ext_orport.h0000644000175000017500000000302612621363246013204 00000000000000/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef EXT_ORPORT_H #define EXT_ORPORT_H int connection_ext_or_start_auth(or_connection_t *or_conn); ext_or_cmd_t *ext_or_cmd_new(uint16_t len); void ext_or_cmd_free(ext_or_cmd_t *cmd); void connection_or_set_ext_or_identifier(or_connection_t *conn); void connection_or_remove_from_ext_or_id_map(or_connection_t *conn); void connection_or_clear_ext_or_id_map(void); or_connection_t *connection_or_get_by_ext_or_id(const char *id); int connection_ext_or_finished_flushing(or_connection_t *conn); int connection_ext_or_process_inbuf(or_connection_t *or_conn); int init_ext_or_cookie_authentication(int is_enabled); char *get_ext_or_auth_cookie_file_name(void); void ext_orport_free_all(void); #ifdef EXT_ORPORT_PRIVATE STATIC int connection_write_ext_or_command(connection_t *conn, uint16_t command, const char *body, size_t bodylen); STATIC int handle_client_auth_nonce(const char *client_nonce, size_t client_nonce_len, char **client_hash_out, char **reply_out, size_t *reply_len_out); #ifdef TOR_UNIT_TESTS extern uint8_t *ext_or_auth_cookie; extern int ext_or_auth_cookie_is_set; #endif #endif #endif tor-0.2.7.6/src/or/reasons.c0000644000175000017500000003355212621363246012453 00000000000000/* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file reasons.c * \brief Convert circuit, stream, and orconn error reasons to and/or from * strings and errno values. **/ #include "or.h" #include "config.h" #include "reasons.h" /***************************** Edge (stream) reasons **********************/ /** Convert the reason for ending a stream reason into the format used * in STREAM events. Return NULL if the reason is unrecognized. */ const char * stream_end_reason_to_control_string(int reason) { reason &= END_STREAM_REASON_MASK; switch (reason) { case END_STREAM_REASON_MISC: return "MISC"; case END_STREAM_REASON_RESOLVEFAILED: return "RESOLVEFAILED"; case END_STREAM_REASON_CONNECTREFUSED: return "CONNECTREFUSED"; case END_STREAM_REASON_EXITPOLICY: return "EXITPOLICY"; case END_STREAM_REASON_DESTROY: return "DESTROY"; case END_STREAM_REASON_DONE: return "DONE"; case END_STREAM_REASON_TIMEOUT: return "TIMEOUT"; case END_STREAM_REASON_NOROUTE: return "NOROUTE"; case END_STREAM_REASON_HIBERNATING: return "HIBERNATING"; case END_STREAM_REASON_INTERNAL: return "INTERNAL"; case END_STREAM_REASON_RESOURCELIMIT: return "RESOURCELIMIT"; case END_STREAM_REASON_CONNRESET: return "CONNRESET"; case END_STREAM_REASON_TORPROTOCOL: return "TORPROTOCOL"; case END_STREAM_REASON_NOTDIRECTORY: return "NOTDIRECTORY"; case END_STREAM_REASON_CANT_ATTACH: return "CANT_ATTACH"; case END_STREAM_REASON_NET_UNREACHABLE: return "NET_UNREACHABLE"; case END_STREAM_REASON_SOCKSPROTOCOL: return "SOCKS_PROTOCOL"; case END_STREAM_REASON_PRIVATE_ADDR: return "PRIVATE_ADDR"; default: return NULL; } } /** Translate reason, which came from a relay 'end' cell, * into a static const string describing why the stream is closing. * reason is -1 if no reason was provided. */ const char * stream_end_reason_to_string(int reason) { switch (reason) { case -1: log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "End cell arrived with length 0. Should be at least 1."); return "MALFORMED"; case END_STREAM_REASON_MISC: return "misc error"; case END_STREAM_REASON_RESOLVEFAILED: return "resolve failed"; case END_STREAM_REASON_CONNECTREFUSED: return "connection refused"; case END_STREAM_REASON_EXITPOLICY: return "exit policy failed"; case END_STREAM_REASON_DESTROY: return "destroyed"; case END_STREAM_REASON_DONE: return "closed normally"; case END_STREAM_REASON_TIMEOUT: return "gave up (timeout)"; case END_STREAM_REASON_NOROUTE: return "no route to host"; case END_STREAM_REASON_HIBERNATING: return "server is hibernating"; case END_STREAM_REASON_INTERNAL: return "internal error at server"; case END_STREAM_REASON_RESOURCELIMIT: return "server out of resources"; case END_STREAM_REASON_CONNRESET: return "connection reset"; case END_STREAM_REASON_TORPROTOCOL: return "Tor protocol error"; case END_STREAM_REASON_NOTDIRECTORY: return "not a directory"; default: log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "Reason for ending (%d) not recognized.",reason); return "unknown"; } } /** Translate reason (as from a relay 'end' cell) into an * appropriate SOCKS5 reply code. * * A reason of 0 means that we're not actually expecting to send * this code back to the socks client; we just call it 'succeeded' * to keep things simple. */ socks5_reply_status_t stream_end_reason_to_socks5_response(int reason) { switch (reason & END_STREAM_REASON_MASK) { case 0: return SOCKS5_SUCCEEDED; case END_STREAM_REASON_MISC: return SOCKS5_GENERAL_ERROR; case END_STREAM_REASON_RESOLVEFAILED: return SOCKS5_HOST_UNREACHABLE; case END_STREAM_REASON_CONNECTREFUSED: return SOCKS5_CONNECTION_REFUSED; case END_STREAM_REASON_ENTRYPOLICY: return SOCKS5_NOT_ALLOWED; case END_STREAM_REASON_EXITPOLICY: return SOCKS5_NOT_ALLOWED; case END_STREAM_REASON_DESTROY: return SOCKS5_GENERAL_ERROR; case END_STREAM_REASON_DONE: /* Note that 'DONE' usually indicates a successful close from the other * side of the stream... but if we receive it before a connected cell -- * that is, before we have sent a SOCKS reply -- that means that the * other side of the circuit closed the connection before telling us it * was complete. */ return SOCKS5_CONNECTION_REFUSED; case END_STREAM_REASON_TIMEOUT: return SOCKS5_TTL_EXPIRED; case END_STREAM_REASON_NOROUTE: return SOCKS5_HOST_UNREACHABLE; case END_STREAM_REASON_RESOURCELIMIT: return SOCKS5_GENERAL_ERROR; case END_STREAM_REASON_HIBERNATING: return SOCKS5_GENERAL_ERROR; case END_STREAM_REASON_INTERNAL: return SOCKS5_GENERAL_ERROR; case END_STREAM_REASON_CONNRESET: return SOCKS5_CONNECTION_REFUSED; case END_STREAM_REASON_TORPROTOCOL: return SOCKS5_GENERAL_ERROR; case END_STREAM_REASON_CANT_ATTACH: return SOCKS5_GENERAL_ERROR; case END_STREAM_REASON_NET_UNREACHABLE: return SOCKS5_NET_UNREACHABLE; case END_STREAM_REASON_SOCKSPROTOCOL: return SOCKS5_GENERAL_ERROR; case END_STREAM_REASON_PRIVATE_ADDR: return SOCKS5_GENERAL_ERROR; default: log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "Reason for ending (%d) not recognized; " "sending generic socks error.", reason); return SOCKS5_GENERAL_ERROR; } } /* We need to use a few macros to deal with the fact that Windows * decided that their sockets interface should be a permakludge. * E_CASE is for errors where windows has both a EFOO and a WSAEFOO * version, and S_CASE is for errors where windows has only a WSAEFOO * version. (The E is for 'error', the S is for 'socket'). */ #ifdef _WIN32 #define E_CASE(s) case s: case WSA ## s #define S_CASE(s) case WSA ## s #else #define E_CASE(s) case s #define S_CASE(s) case s #endif /** Given an errno from a failed exit connection, return a reason code * appropriate for use in a RELAY END cell. */ uint8_t errno_to_stream_end_reason(int e) { /* To add new errors here, find out if they exist on Windows, and if a WSA* * equivalent exists on windows. Add a case, an S_CASE, or an E_CASE as * appropriate. */ switch (e) { case EPIPE: return END_STREAM_REASON_DONE; E_CASE(EBADF): E_CASE(EFAULT): E_CASE(EINVAL): S_CASE(EISCONN): S_CASE(ENOTSOCK): S_CASE(EPROTONOSUPPORT): S_CASE(EAFNOSUPPORT): S_CASE(ENOTCONN): return END_STREAM_REASON_INTERNAL; S_CASE(ENETUNREACH): S_CASE(EHOSTUNREACH): E_CASE(EACCES): case EPERM: return END_STREAM_REASON_NOROUTE; S_CASE(ECONNREFUSED): return END_STREAM_REASON_CONNECTREFUSED; S_CASE(ECONNRESET): return END_STREAM_REASON_CONNRESET; S_CASE(ETIMEDOUT): return END_STREAM_REASON_TIMEOUT; S_CASE(ENOBUFS): case ENOMEM: case ENFILE: S_CASE(EADDRINUSE): S_CASE(EADDRNOTAVAIL): E_CASE(EMFILE): return END_STREAM_REASON_RESOURCELIMIT; default: log_info(LD_EXIT, "Didn't recognize errno %d (%s); telling the client " "that we are ending a stream for 'misc' reason.", e, tor_socket_strerror(e)); return END_STREAM_REASON_MISC; } } /***************************** ORConn reasons *****************************/ /** Convert the reason for ending an OR connection r into the format * used in ORCONN events. Return "UNKNOWN" if the reason is unrecognized. */ const char * orconn_end_reason_to_control_string(int r) { /* To add new errors here, find out if they exist on Windows, and if a WSA* * equivalent exists on windows. Add a case, an S_CASE, or an E_CASE as * appropriate. */ switch (r) { case END_OR_CONN_REASON_DONE: return "DONE"; case END_OR_CONN_REASON_REFUSED: return "CONNECTREFUSED"; case END_OR_CONN_REASON_OR_IDENTITY: return "IDENTITY"; case END_OR_CONN_REASON_CONNRESET: return "CONNECTRESET"; case END_OR_CONN_REASON_TIMEOUT: return "TIMEOUT"; case END_OR_CONN_REASON_NO_ROUTE: return "NOROUTE"; case END_OR_CONN_REASON_IO_ERROR: return "IOERROR"; case END_OR_CONN_REASON_RESOURCE_LIMIT: return "RESOURCELIMIT"; case END_OR_CONN_REASON_MISC: return "MISC"; case END_OR_CONN_REASON_PT_MISSING: return "PT_MISSING"; case 0: return ""; default: log_warn(LD_BUG, "Unrecognized or_conn reason code %d", r); return "UNKNOWN"; } } /** Convert a TOR_TLS_* error code into an END_OR_CONN_* reason. */ int tls_error_to_orconn_end_reason(int e) { switch (e) { case TOR_TLS_ERROR_IO: return END_OR_CONN_REASON_IO_ERROR; case TOR_TLS_ERROR_CONNREFUSED: return END_OR_CONN_REASON_REFUSED; case TOR_TLS_ERROR_CONNRESET: return END_OR_CONN_REASON_CONNRESET; case TOR_TLS_ERROR_NO_ROUTE: return END_OR_CONN_REASON_NO_ROUTE; case TOR_TLS_ERROR_TIMEOUT: return END_OR_CONN_REASON_TIMEOUT; case TOR_TLS_WANTREAD: case TOR_TLS_WANTWRITE: case TOR_TLS_CLOSE: case TOR_TLS_DONE: return END_OR_CONN_REASON_DONE; default: return END_OR_CONN_REASON_MISC; } } /** Given an errno from a failed ORConn connection, return a reason code * appropriate for use in the controller orconn events. */ int errno_to_orconn_end_reason(int e) { switch (e) { case EPIPE: return END_OR_CONN_REASON_DONE; S_CASE(ENOTCONN): S_CASE(ENETUNREACH): S_CASE(ENETDOWN): S_CASE(EHOSTUNREACH): return END_OR_CONN_REASON_NO_ROUTE; S_CASE(ECONNREFUSED): return END_OR_CONN_REASON_REFUSED; S_CASE(ECONNRESET): return END_OR_CONN_REASON_CONNRESET; S_CASE(ETIMEDOUT): return END_OR_CONN_REASON_TIMEOUT; S_CASE(ENOBUFS): case ENOMEM: case ENFILE: E_CASE(EMFILE): E_CASE(EACCES): E_CASE(EBADF): E_CASE(EFAULT): E_CASE(EINVAL): return END_OR_CONN_REASON_RESOURCE_LIMIT; default: log_info(LD_OR, "Didn't recognize errno %d (%s).", e, tor_socket_strerror(e)); return END_OR_CONN_REASON_MISC; } } /***************************** Circuit reasons *****************************/ /** Convert a numeric reason for destroying a circuit into a string for a * CIRCUIT event. */ const char * circuit_end_reason_to_control_string(int reason) { int is_remote = 0; if (reason >= 0 && reason & END_CIRC_REASON_FLAG_REMOTE) { reason &= ~END_CIRC_REASON_FLAG_REMOTE; is_remote = 1; } switch (reason) { case END_CIRC_AT_ORIGIN: /* This shouldn't get passed here; it's a catch-all reason. */ return "ORIGIN"; case END_CIRC_REASON_NONE: /* This shouldn't get passed here; it's a catch-all reason. */ return "NONE"; case END_CIRC_REASON_TORPROTOCOL: return "TORPROTOCOL"; case END_CIRC_REASON_INTERNAL: return "INTERNAL"; case END_CIRC_REASON_REQUESTED: return "REQUESTED"; case END_CIRC_REASON_HIBERNATING: return "HIBERNATING"; case END_CIRC_REASON_RESOURCELIMIT: return "RESOURCELIMIT"; case END_CIRC_REASON_CONNECTFAILED: return "CONNECTFAILED"; case END_CIRC_REASON_OR_IDENTITY: return "OR_IDENTITY"; case END_CIRC_REASON_CHANNEL_CLOSED: return "CHANNEL_CLOSED"; case END_CIRC_REASON_FINISHED: return "FINISHED"; case END_CIRC_REASON_TIMEOUT: return "TIMEOUT"; case END_CIRC_REASON_DESTROYED: return "DESTROYED"; case END_CIRC_REASON_NOPATH: return "NOPATH"; case END_CIRC_REASON_NOSUCHSERVICE: return "NOSUCHSERVICE"; case END_CIRC_REASON_MEASUREMENT_EXPIRED: return "MEASUREMENT_EXPIRED"; case END_CIRC_REASON_IP_NOW_REDUNDANT: return "IP_NOW_REDUNDANT"; default: if (is_remote) { /* * If it's remote, it's not a bug *here*, so don't use LD_BUG, but * do note that the someone we're talking to is speaking the Tor * protocol with a weird accent. */ log_warn(LD_PROTOCOL, "Remote server sent bogus reason code %d", reason); } else { log_warn(LD_BUG, "Unrecognized reason code %d", reason); } return NULL; } } /** Return a string corresponding to a SOCKS4 response code. */ const char * socks4_response_code_to_string(uint8_t code) { switch (code) { case 0x5a: return "connection accepted"; case 0x5b: return "server rejected connection"; case 0x5c: return "server cannot connect to identd on this client"; case 0x5d: return "user id does not match identd"; default: return "invalid SOCKS 4 response code"; } } /** Return a string corresponding to a SOCKS5 response code. */ const char * socks5_response_code_to_string(uint8_t code) { switch (code) { case 0x00: return "connection accepted"; case 0x01: return "general SOCKS server failure"; case 0x02: return "connection not allowed by ruleset"; case 0x03: return "Network unreachable"; case 0x04: return "Host unreachable"; case 0x05: return "Connection refused"; case 0x06: return "TTL expired"; case 0x07: return "Command not supported"; case 0x08: return "Address type not supported"; default: return "unknown reason"; } } /** Return a string corresponding to a bandwidht_weight_rule_t */ const char * bandwidth_weight_rule_to_string(bandwidth_weight_rule_t rule) { switch (rule) { case NO_WEIGHTING: return "no weighting"; case WEIGHT_FOR_EXIT: return "weight as exit"; case WEIGHT_FOR_MID: return "weight as middle node"; case WEIGHT_FOR_GUARD: return "weight as guard"; case WEIGHT_FOR_DIR: return "weight as directory"; default: return "unknown rule"; } } tor-0.2.7.6/src/or/routerkeys.h0000644000175000017500000000670112621363246013216 00000000000000/* Copyright (c) 2014, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef TOR_ROUTERKEYS_H #define TOR_ROUTERKEYS_H #include "crypto_ed25519.h" #define INIT_ED_KEY_CREATE (1u<<0) #define INIT_ED_KEY_REPLACE (1u<<1) #define INIT_ED_KEY_SPLIT (1u<<2) #define INIT_ED_KEY_MISSING_SECRET_OK (1u<<3) #define INIT_ED_KEY_NEEDCERT (1u<<4) #define INIT_ED_KEY_EXTRA_STRONG (1u<<5) #define INIT_ED_KEY_INCLUDE_SIGNING_KEY_IN_CERT (1u<<6) #define INIT_ED_KEY_OMIT_SECRET (1u<<7) #define INIT_ED_KEY_TRY_ENCRYPTED (1u<<8) #define INIT_ED_KEY_NO_REPAIR (1u<<9) #define INIT_ED_KEY_SUGGEST_KEYGEN (1u<<10) #define INIT_ED_KEY_OFFLINE_SECRET (1u<<11) #define INIT_ED_KEY_EXPLICIT_FNAME (1u<<12) struct tor_cert_st; ed25519_keypair_t *ed_key_init_from_file(const char *fname, uint32_t flags, int severity, const ed25519_keypair_t *signing_key, time_t now, time_t lifetime, uint8_t cert_type, struct tor_cert_st **cert_out); ed25519_keypair_t *ed_key_new(const ed25519_keypair_t *signing_key, uint32_t flags, time_t now, time_t lifetime, uint8_t cert_type, struct tor_cert_st **cert_out); const ed25519_public_key_t *get_master_identity_key(void); const ed25519_keypair_t *get_master_signing_keypair(void); const struct tor_cert_st *get_master_signing_key_cert(void); const ed25519_keypair_t *get_current_auth_keypair(void); const struct tor_cert_st *get_current_link_cert_cert(void); const struct tor_cert_st *get_current_auth_key_cert(void); void get_master_rsa_crosscert(const uint8_t **cert_out, size_t *size_out); struct tor_cert_st *make_ntor_onion_key_crosscert( const curve25519_keypair_t *onion_key, const ed25519_public_key_t *master_id_key, time_t now, time_t lifetime, int *sign_out); uint8_t *make_tap_onion_key_crosscert(const crypto_pk_t *onion_key, const ed25519_public_key_t *master_id_key, const crypto_pk_t *rsa_id_key, int *len_out); int check_tap_onion_key_crosscert(const uint8_t *crosscert, int crosscert_len, const crypto_pk_t *onion_pkey, const ed25519_public_key_t *master_id_pkey, const uint8_t *rsa_id_digest); int load_ed_keys(const or_options_t *options, time_t now); int should_make_new_ed_keys(const or_options_t *options, const time_t now); int generate_ed_link_cert(const or_options_t *options, time_t now); int read_encrypted_secret_key(ed25519_secret_key_t *out, const char *fname); int write_encrypted_secret_key(const ed25519_secret_key_t *out, const char *fname); void routerkeys_free_all(void); #endif tor-0.2.7.6/src/or/onion_ntor.c0000644000175000017500000002706312621363246013165 00000000000000/* Copyright (c) 2012-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #include "orconfig.h" #define ONION_NTOR_PRIVATE #include "crypto.h" #include "onion_ntor.h" #include "torlog.h" #include "util.h" /** Free storage held in an ntor handshake state. */ void ntor_handshake_state_free(ntor_handshake_state_t *state) { if (!state) return; memwipe(state, 0, sizeof(*state)); tor_free(state); } /** Convenience function to represent HMAC_SHA256 as our instantiation of * ntor's "tweaked hash'. Hash the inp_len bytes at inp into * a DIGEST256_LEN-byte digest at out, with the hash changing * depending on the value of tweak. */ static void h_tweak(uint8_t *out, const uint8_t *inp, size_t inp_len, const char *tweak) { size_t tweak_len = strlen(tweak); crypto_hmac_sha256((char*)out, tweak, tweak_len, (const char*)inp, inp_len); } /** Wrapper around a set of tweak-values for use with the ntor handshake. */ typedef struct tweakset_t { const char *t_mac; const char *t_key; const char *t_verify; const char *m_expand; } tweakset_t; /** The tweaks to be used with our handshake. */ const tweakset_t proto1_tweaks = { #define PROTOID "ntor-curve25519-sha256-1" #define PROTOID_LEN 24 PROTOID ":mac", PROTOID ":key_extract", PROTOID ":verify", PROTOID ":key_expand" }; /** Convenience macro: copy len bytes from inp to ptr, * and advance ptr by the number of bytes copied. */ #define APPEND(ptr, inp, len) \ STMT_BEGIN { \ memcpy(ptr, (inp), (len)); \ ptr += len; \ } STMT_END /** * Compute the first client-side step of the ntor handshake for communicating * with a server whose DIGEST_LEN-byte server identity is router_id, * and whose onion key is router_key. Store the NTOR_ONIONSKIN_LEN-byte * message in onion_skin_out, and store the handshake state in * *handshake_state_out. Return 0 on success, -1 on failure. */ int onion_skin_ntor_create(const uint8_t *router_id, const curve25519_public_key_t *router_key, ntor_handshake_state_t **handshake_state_out, uint8_t *onion_skin_out) { ntor_handshake_state_t *state; uint8_t *op; state = tor_malloc_zero(sizeof(ntor_handshake_state_t)); memcpy(state->router_id, router_id, DIGEST_LEN); memcpy(&state->pubkey_B, router_key, sizeof(curve25519_public_key_t)); if (curve25519_secret_key_generate(&state->seckey_x, 0) < 0) { tor_free(state); return -1; } curve25519_public_key_generate(&state->pubkey_X, &state->seckey_x); op = onion_skin_out; APPEND(op, router_id, DIGEST_LEN); APPEND(op, router_key->public_key, CURVE25519_PUBKEY_LEN); APPEND(op, state->pubkey_X.public_key, CURVE25519_PUBKEY_LEN); tor_assert(op == onion_skin_out + NTOR_ONIONSKIN_LEN); *handshake_state_out = state; return 0; } #define SERVER_STR "Server" #define SERVER_STR_LEN 6 #define SECRET_INPUT_LEN (CURVE25519_PUBKEY_LEN * 3 + \ CURVE25519_OUTPUT_LEN * 2 + \ DIGEST_LEN + PROTOID_LEN) #define AUTH_INPUT_LEN (DIGEST256_LEN + DIGEST_LEN + \ CURVE25519_PUBKEY_LEN*3 + \ PROTOID_LEN + SERVER_STR_LEN) /** * Perform the server side of an ntor handshake. Given an * NTOR_ONIONSKIN_LEN-byte message in onion_skin, our own identity * fingerprint as my_node_id, and an associative array mapping public * onion keys to curve25519_keypair_t in private_keys, attempt to * perform the handshake. Use junk_keys if present if the handshake * indicates an unrecognized public key. Write an NTOR_REPLY_LEN-byte * message to send back to the client into handshake_reply_out, and * generate key_out_len bytes of key material in key_out. Return * 0 on success, -1 on failure. */ int onion_skin_ntor_server_handshake(const uint8_t *onion_skin, const di_digest256_map_t *private_keys, const curve25519_keypair_t *junk_keys, const uint8_t *my_node_id, uint8_t *handshake_reply_out, uint8_t *key_out, size_t key_out_len) { const tweakset_t *T = &proto1_tweaks; /* Sensitive stack-allocated material. Kept in an anonymous struct to make * it easy to wipe. */ struct { uint8_t secret_input[SECRET_INPUT_LEN]; uint8_t auth_input[AUTH_INPUT_LEN]; curve25519_public_key_t pubkey_X; curve25519_secret_key_t seckey_y; curve25519_public_key_t pubkey_Y; uint8_t verify[DIGEST256_LEN]; } s; uint8_t *si = s.secret_input, *ai = s.auth_input; const curve25519_keypair_t *keypair_bB; int bad; /* Decode the onion skin */ /* XXXX Does this possible early-return business threaten our security? */ if (tor_memneq(onion_skin, my_node_id, DIGEST_LEN)) return -1; /* Note that on key-not-found, we go through with this operation anyway, * using "junk_keys". This will result in failed authentication, but won't * leak whether we recognized the key. */ keypair_bB = dimap_search(private_keys, onion_skin + DIGEST_LEN, (void*)junk_keys); if (!keypair_bB) return -1; memcpy(s.pubkey_X.public_key, onion_skin+DIGEST_LEN+DIGEST256_LEN, CURVE25519_PUBKEY_LEN); /* Make y, Y */ curve25519_secret_key_generate(&s.seckey_y, 0); curve25519_public_key_generate(&s.pubkey_Y, &s.seckey_y); /* NOTE: If we ever use a group other than curve25519, or a different * representation for its points, we may need to perform different or * additional checks on X here and on Y in the client handshake, or lose our * security properties. What checks we need would depend on the properties * of the group and its representation. * * In short: if you use anything other than curve25519, this aspect of the * code will need to be reconsidered carefully. */ /* build secret_input */ curve25519_handshake(si, &s.seckey_y, &s.pubkey_X); bad = safe_mem_is_zero(si, CURVE25519_OUTPUT_LEN); si += CURVE25519_OUTPUT_LEN; curve25519_handshake(si, &keypair_bB->seckey, &s.pubkey_X); bad |= safe_mem_is_zero(si, CURVE25519_OUTPUT_LEN); si += CURVE25519_OUTPUT_LEN; APPEND(si, my_node_id, DIGEST_LEN); APPEND(si, keypair_bB->pubkey.public_key, CURVE25519_PUBKEY_LEN); APPEND(si, s.pubkey_X.public_key, CURVE25519_PUBKEY_LEN); APPEND(si, s.pubkey_Y.public_key, CURVE25519_PUBKEY_LEN); APPEND(si, PROTOID, PROTOID_LEN); tor_assert(si == s.secret_input + sizeof(s.secret_input)); /* Compute hashes of secret_input */ h_tweak(s.verify, s.secret_input, sizeof(s.secret_input), T->t_verify); /* Compute auth_input */ APPEND(ai, s.verify, DIGEST256_LEN); APPEND(ai, my_node_id, DIGEST_LEN); APPEND(ai, keypair_bB->pubkey.public_key, CURVE25519_PUBKEY_LEN); APPEND(ai, s.pubkey_Y.public_key, CURVE25519_PUBKEY_LEN); APPEND(ai, s.pubkey_X.public_key, CURVE25519_PUBKEY_LEN); APPEND(ai, PROTOID, PROTOID_LEN); APPEND(ai, SERVER_STR, SERVER_STR_LEN); tor_assert(ai == s.auth_input + sizeof(s.auth_input)); /* Build the reply */ memcpy(handshake_reply_out, s.pubkey_Y.public_key, CURVE25519_PUBKEY_LEN); h_tweak(handshake_reply_out+CURVE25519_PUBKEY_LEN, s.auth_input, sizeof(s.auth_input), T->t_mac); /* Generate the key material */ crypto_expand_key_material_rfc5869_sha256( s.secret_input, sizeof(s.secret_input), (const uint8_t*)T->t_key, strlen(T->t_key), (const uint8_t*)T->m_expand, strlen(T->m_expand), key_out, key_out_len); /* Wipe all of our local state */ memwipe(&s, 0, sizeof(s)); return bad ? -1 : 0; } /** * Perform the final client side of the ntor handshake, using the state in * handshake_state and the server's NTOR_REPLY_LEN-byte reply in * handshake_reply. Generate key_out_len bytes of key material * in key_out. Return 0 on success, -1 on failure. */ int onion_skin_ntor_client_handshake( const ntor_handshake_state_t *handshake_state, const uint8_t *handshake_reply, uint8_t *key_out, size_t key_out_len, const char **msg_out) { const tweakset_t *T = &proto1_tweaks; /* Sensitive stack-allocated material. Kept in an anonymous struct to make * it easy to wipe. */ struct { curve25519_public_key_t pubkey_Y; uint8_t secret_input[SECRET_INPUT_LEN]; uint8_t verify[DIGEST256_LEN]; uint8_t auth_input[AUTH_INPUT_LEN]; uint8_t auth[DIGEST256_LEN]; } s; uint8_t *ai = s.auth_input, *si = s.secret_input; const uint8_t *auth_candidate; int bad; /* Decode input */ memcpy(s.pubkey_Y.public_key, handshake_reply, CURVE25519_PUBKEY_LEN); auth_candidate = handshake_reply + CURVE25519_PUBKEY_LEN; /* See note in server_handshake above about checking points. The * circumstances under which we'd need to check Y for membership are * different than those under which we'd be checking X. */ /* Compute secret_input */ curve25519_handshake(si, &handshake_state->seckey_x, &s.pubkey_Y); bad = safe_mem_is_zero(si, CURVE25519_OUTPUT_LEN); si += CURVE25519_OUTPUT_LEN; curve25519_handshake(si, &handshake_state->seckey_x, &handshake_state->pubkey_B); bad |= (safe_mem_is_zero(si, CURVE25519_OUTPUT_LEN) << 1); si += CURVE25519_OUTPUT_LEN; APPEND(si, handshake_state->router_id, DIGEST_LEN); APPEND(si, handshake_state->pubkey_B.public_key, CURVE25519_PUBKEY_LEN); APPEND(si, handshake_state->pubkey_X.public_key, CURVE25519_PUBKEY_LEN); APPEND(si, s.pubkey_Y.public_key, CURVE25519_PUBKEY_LEN); APPEND(si, PROTOID, PROTOID_LEN); tor_assert(si == s.secret_input + sizeof(s.secret_input)); /* Compute verify from secret_input */ h_tweak(s.verify, s.secret_input, sizeof(s.secret_input), T->t_verify); /* Compute auth_input */ APPEND(ai, s.verify, DIGEST256_LEN); APPEND(ai, handshake_state->router_id, DIGEST_LEN); APPEND(ai, handshake_state->pubkey_B.public_key, CURVE25519_PUBKEY_LEN); APPEND(ai, s.pubkey_Y.public_key, CURVE25519_PUBKEY_LEN); APPEND(ai, handshake_state->pubkey_X.public_key, CURVE25519_PUBKEY_LEN); APPEND(ai, PROTOID, PROTOID_LEN); APPEND(ai, SERVER_STR, SERVER_STR_LEN); tor_assert(ai == s.auth_input + sizeof(s.auth_input)); /* Compute auth */ h_tweak(s.auth, s.auth_input, sizeof(s.auth_input), T->t_mac); bad |= (tor_memneq(s.auth, auth_candidate, DIGEST256_LEN) << 2); crypto_expand_key_material_rfc5869_sha256( s.secret_input, sizeof(s.secret_input), (const uint8_t*)T->t_key, strlen(T->t_key), (const uint8_t*)T->m_expand, strlen(T->m_expand), key_out, key_out_len); memwipe(&s, 0, sizeof(s)); if (bad) { if (bad & 4) { if (msg_out) *msg_out = NULL; /* Don't report this one; we probably just had the * wrong onion key.*/ log_fn(LOG_INFO, LD_PROTOCOL, "Invalid result from curve25519 handshake: %d", bad); } if (bad & 3) { if (msg_out) *msg_out = "Zero output from curve25519 handshake"; log_fn(LOG_WARN, LD_PROTOCOL, "Invalid result from curve25519 handshake: %d", bad); } } return bad ? -1 : 0; } tor-0.2.7.6/src/or/hibernate.h0000644000175000017500000000371612621363246012746 00000000000000/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file hibernate.h * \brief Header file for hibernate.c. **/ #ifndef TOR_HIBERNATE_H #define TOR_HIBERNATE_H #include "testsupport.h" int accounting_parse_options(const or_options_t *options, int validate_only); MOCK_DECL(int, accounting_is_enabled, (const or_options_t *options)); int accounting_get_interval_length(void); MOCK_DECL(time_t, accounting_get_end_time, (void)); void configure_accounting(time_t now); void accounting_run_housekeeping(time_t now); void accounting_add_bytes(size_t n_read, size_t n_written, int seconds); int accounting_record_bandwidth_usage(time_t now, or_state_t *state); void hibernate_begin_shutdown(void); MOCK_DECL(int, we_are_hibernating, (void)); void consider_hibernation(time_t now); int getinfo_helper_accounting(control_connection_t *conn, const char *question, char **answer, const char **errmsg); uint64_t get_accounting_max_total(void); #ifdef HIBERNATE_PRIVATE /** Possible values of hibernate_state */ typedef enum { /** We are running normally. */ HIBERNATE_STATE_LIVE=1, /** We're trying to shut down cleanly, and we'll kill all active connections * at shutdown_time. */ HIBERNATE_STATE_EXITING=2, /** We're running low on allocated bandwidth for this period, so we won't * accept any new connections. */ HIBERNATE_STATE_LOWBANDWIDTH=3, /** We are hibernating, and we won't wake up till there's more bandwidth to * use. */ HIBERNATE_STATE_DORMANT=4, /** We start out in state default, which means we havent decided which state * we're in. */ HIBERNATE_STATE_INITIAL=5 } hibernate_state_t; #ifdef TOR_UNIT_TESTS void hibernate_set_state_for_testing_(hibernate_state_t newstate); #endif #endif #endif tor-0.2.7.6/src/or/onion_ntor.h0000644000175000017500000000414212621363246013163 00000000000000/* Copyright (c) 2012-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #ifndef TOR_ONION_NTOR_H #define TOR_ONION_NTOR_H #include "torint.h" #include "crypto_curve25519.h" #include "di_ops.h" /** State to be maintained by a client between sending an ntor onionskin * and receiving a reply. */ typedef struct ntor_handshake_state_t ntor_handshake_state_t; /** Length of an ntor onionskin, as sent from the client to server. */ #define NTOR_ONIONSKIN_LEN 84 /** Length of an ntor reply, as sent from server to client. */ #define NTOR_REPLY_LEN 64 void ntor_handshake_state_free(ntor_handshake_state_t *state); int onion_skin_ntor_create(const uint8_t *router_id, const curve25519_public_key_t *router_key, ntor_handshake_state_t **handshake_state_out, uint8_t *onion_skin_out); int onion_skin_ntor_server_handshake(const uint8_t *onion_skin, const di_digest256_map_t *private_keys, const curve25519_keypair_t *junk_keypair, const uint8_t *my_node_id, uint8_t *handshake_reply_out, uint8_t *key_out, size_t key_out_len); int onion_skin_ntor_client_handshake( const ntor_handshake_state_t *handshake_state, const uint8_t *handshake_reply, uint8_t *key_out, size_t key_out_len, const char **msg_out); #ifdef ONION_NTOR_PRIVATE /** Storage held by a client while waiting for an ntor reply from a server. */ struct ntor_handshake_state_t { /** Identity digest of the router we're talking to. */ uint8_t router_id[DIGEST_LEN]; /** Onion key of the router we're talking to. */ curve25519_public_key_t pubkey_B; /** * Short-lived keypair for use with this handshake. * @{ */ curve25519_secret_key_t seckey_x; curve25519_public_key_t pubkey_X; /** @} */ }; #endif #endif tor-0.2.7.6/src/or/cpuworker.h0000644000175000017500000000160712621363246013023 00000000000000/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file cpuworker.h * \brief Header file for cpuworker.c. **/ #ifndef TOR_CPUWORKER_H #define TOR_CPUWORKER_H void cpu_init(void); void cpuworkers_rotate_keyinfo(void); struct create_cell_t; int assign_onionskin_to_cpuworker(or_circuit_t *circ, struct create_cell_t *onionskin); uint64_t estimated_usec_for_onionskins(uint32_t n_requests, uint16_t onionskin_type); void cpuworker_log_onionskin_overhead(int severity, int onionskin_type, const char *onionskin_type_name); void cpuworker_cancel_circ_handshake(or_circuit_t *circ); #endif tor-0.2.7.6/src/or/connection_edge.h0000644000175000017500000001634012631612325014121 00000000000000/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file connection_edge.h * \brief Header file for connection_edge.c. **/ #ifndef TOR_CONNECTION_EDGE_H #define TOR_CONNECTION_EDGE_H #include "testsupport.h" #define connection_mark_unattached_ap(conn, endreason) \ connection_mark_unattached_ap_((conn), (endreason), __LINE__, SHORT_FILE__) MOCK_DECL(void,connection_mark_unattached_ap_, (entry_connection_t *conn, int endreason, int line, const char *file)); int connection_edge_reached_eof(edge_connection_t *conn); int connection_edge_process_inbuf(edge_connection_t *conn, int package_partial); int connection_edge_destroy(circid_t circ_id, edge_connection_t *conn); int connection_edge_end(edge_connection_t *conn, uint8_t reason); int connection_edge_end_errno(edge_connection_t *conn); int connection_edge_flushed_some(edge_connection_t *conn); int connection_edge_finished_flushing(edge_connection_t *conn); int connection_edge_finished_connecting(edge_connection_t *conn); void connection_ap_about_to_close(entry_connection_t *edge_conn); void connection_exit_about_to_close(edge_connection_t *edge_conn); int connection_ap_handshake_send_begin(entry_connection_t *ap_conn); int connection_ap_handshake_send_resolve(entry_connection_t *ap_conn); entry_connection_t *connection_ap_make_link(connection_t *partner, char *address, uint16_t port, const char *digest, int session_group, int isolation_flags, int use_begindir, int want_onehop); void connection_ap_handshake_socks_reply(entry_connection_t *conn, char *reply, size_t replylen, int endreason); MOCK_DECL(void,connection_ap_handshake_socks_resolved, (entry_connection_t *conn, int answer_type, size_t answer_len, const uint8_t *answer, int ttl, time_t expires)); void connection_ap_handshake_socks_resolved_addr(entry_connection_t *conn, const tor_addr_t *answer, int ttl, time_t expires); int connection_exit_begin_conn(cell_t *cell, circuit_t *circ); int connection_exit_begin_resolve(cell_t *cell, or_circuit_t *circ); void connection_exit_connect(edge_connection_t *conn); int connection_edge_is_rendezvous_stream(edge_connection_t *conn); int connection_ap_can_use_exit(const entry_connection_t *conn, const node_t *exit); void connection_ap_expire_beginning(void); void connection_ap_attach_pending(void); void connection_ap_fail_onehop(const char *failed_digest, cpath_build_state_t *build_state); void circuit_discard_optional_exit_enclaves(extend_info_t *info); int connection_ap_detach_retriable(entry_connection_t *conn, origin_circuit_t *circ, int reason); int connection_ap_process_transparent(entry_connection_t *conn); int address_is_invalid_destination(const char *address, int client); int connection_ap_rewrite_and_attach_if_allowed(entry_connection_t *conn, origin_circuit_t *circ, crypt_path_t *cpath); int connection_ap_handshake_rewrite_and_attach(entry_connection_t *conn, origin_circuit_t *circ, crypt_path_t *cpath); /** Possible return values for parse_extended_hostname. */ typedef enum hostname_type_t { NORMAL_HOSTNAME, ONION_HOSTNAME, EXIT_HOSTNAME, BAD_HOSTNAME } hostname_type_t; hostname_type_t parse_extended_hostname(char *address); #if defined(HAVE_NET_IF_H) && defined(HAVE_NET_PFVAR_H) int get_pf_socket(void); #endif int connection_edge_compatible_with_circuit(const entry_connection_t *conn, const origin_circuit_t *circ); int connection_edge_update_circuit_isolation(const entry_connection_t *conn, origin_circuit_t *circ, int dry_run); void circuit_clear_isolation(origin_circuit_t *circ); streamid_t get_unique_stream_id_by_circ(origin_circuit_t *circ); /** @name Begin-cell flags * * These flags are used in RELAY_BEGIN cells to change the default behavior * of the cell. * * @{ **/ /** When this flag is set, the client is willing to get connected to IPv6 * addresses */ #define BEGIN_FLAG_IPV6_OK (1u<<0) /** When this flag is set, the client DOES NOT support connecting to IPv4 * addresses. (The sense of this flag is inverted from IPV6_OK, so that the * old default behavior of Tor is equivalent to having all flags set to 0.) **/ #define BEGIN_FLAG_IPV4_NOT_OK (1u<<1) /** When this flag is set, if we find both an IPv4 and an IPv6 address, * we use the IPv6 address. Otherwise we use the IPv4 address. */ #define BEGIN_FLAG_IPV6_PREFERRED (1u<<2) /**@}*/ #ifdef CONNECTION_EDGE_PRIVATE /** A parsed BEGIN or BEGIN_DIR cell */ typedef struct begin_cell_t { /** The address the client has asked us to connect to, or NULL if this is * a BEGIN_DIR cell*/ char *address; /** The flags specified in the BEGIN cell's body. One or more of * BEGIN_FLAG_*. */ uint32_t flags; /** The client's requested port. */ uint16_t port; /** The client's requested Stream ID */ uint16_t stream_id; /** True iff this is a BEGIN_DIR cell. */ unsigned is_begindir : 1; } begin_cell_t; STATIC int begin_cell_parse(const cell_t *cell, begin_cell_t *bcell, uint8_t *end_reason_out); STATIC int connected_cell_format_payload(uint8_t *payload_out, const tor_addr_t *addr, uint32_t ttl); typedef struct { /** Original address, after we lowercased it but before we started * mapping it. */ char orig_address[MAX_SOCKS_ADDR_LEN]; /** True iff the address has been automatically remapped to a local * address in VirtualAddrNetwork. (Only set true when we do a resolve * and get a virtual address; not when we connect to the address.) */ int automap; /** If this connection has a .exit address, who put it there? */ addressmap_entry_source_t exit_source; /** If we've rewritten the address, when does this map expire? */ time_t map_expires; /** If we should close the connection, this is the end_reason to pass * to connection_mark_unattached_ap */ int end_reason; /** True iff we should close the connection, either because of error or * because of successful early RESOLVED reply. */ int should_close; } rewrite_result_t; STATIC void connection_ap_handshake_rewrite(entry_connection_t *conn, rewrite_result_t *out); #endif #endif tor-0.2.7.6/src/or/circuitlist.h0000644000175000017500000001004212621363246013331 00000000000000/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file circuitlist.h * \brief Header file for circuitlist.c. **/ #ifndef TOR_CIRCUITLIST_H #define TOR_CIRCUITLIST_H #include "testsupport.h" MOCK_DECL(smartlist_t *, circuit_get_global_list, (void)); const char *circuit_state_to_string(int state); const char *circuit_purpose_to_controller_string(uint8_t purpose); const char *circuit_purpose_to_controller_hs_state_string(uint8_t purpose); const char *circuit_purpose_to_string(uint8_t purpose); void circuit_dump_by_conn(connection_t *conn, int severity); void circuit_set_p_circid_chan(or_circuit_t *circ, circid_t id, channel_t *chan); void circuit_set_n_circid_chan(circuit_t *circ, circid_t id, channel_t *chan); void channel_mark_circid_unusable(channel_t *chan, circid_t id); void channel_mark_circid_usable(channel_t *chan, circid_t id); time_t circuit_id_when_marked_unusable_on_channel(circid_t circ_id, channel_t *chan); void circuit_set_state(circuit_t *circ, uint8_t state); void circuit_close_all_marked(void); int32_t circuit_initial_package_window(void); origin_circuit_t *origin_circuit_new(void); or_circuit_t *or_circuit_new(circid_t p_circ_id, channel_t *p_chan); circuit_t *circuit_get_by_circid_channel(circid_t circ_id, channel_t *chan); circuit_t * circuit_get_by_circid_channel_even_if_marked(circid_t circ_id, channel_t *chan); int circuit_id_in_use_on_channel(circid_t circ_id, channel_t *chan); circuit_t *circuit_get_by_edge_conn(edge_connection_t *conn); void circuit_unlink_all_from_channel(channel_t *chan, int reason); origin_circuit_t *circuit_get_by_global_id(uint32_t id); origin_circuit_t *circuit_get_ready_rend_circ_by_rend_data( const rend_data_t *rend_data); origin_circuit_t *circuit_get_next_by_pk_and_purpose(origin_circuit_t *start, const char *digest, uint8_t purpose); or_circuit_t *circuit_get_rendezvous(const uint8_t *cookie); or_circuit_t *circuit_get_intro_point(const uint8_t *digest); void circuit_set_rendezvous_cookie(or_circuit_t *circ, const uint8_t *cookie); void circuit_set_intro_point_digest(or_circuit_t *circ, const uint8_t *digest); origin_circuit_t *circuit_find_to_cannibalize(uint8_t purpose, extend_info_t *info, int flags); void circuit_mark_all_unused_circs(void); void circuit_mark_all_dirty_circs_as_unusable(void); MOCK_DECL(void, circuit_mark_for_close_, (circuit_t *circ, int reason, int line, const char *file)); int circuit_get_cpath_len(origin_circuit_t *circ); void circuit_clear_cpath(origin_circuit_t *circ); crypt_path_t *circuit_get_cpath_hop(origin_circuit_t *circ, int hopnum); void circuit_get_all_pending_on_channel(smartlist_t *out, channel_t *chan); int circuit_count_pending_on_channel(channel_t *chan); #define circuit_mark_for_close(c, reason) \ circuit_mark_for_close_((c), (reason), __LINE__, SHORT_FILE__) void assert_cpath_layer_ok(const crypt_path_t *cp); void assert_circuit_ok(const circuit_t *c); void circuit_free_all(void); void circuits_handle_oom(size_t current_allocation); void channel_note_destroy_pending(channel_t *chan, circid_t id); MOCK_DECL(void, channel_note_destroy_not_pending, (channel_t *chan, circid_t id)); #ifdef CIRCUITLIST_PRIVATE STATIC void circuit_free(circuit_t *circ); STATIC size_t n_cells_in_circ_queues(const circuit_t *c); STATIC uint32_t circuit_max_queued_data_age(const circuit_t *c, uint32_t now); STATIC uint32_t circuit_max_queued_cell_age(const circuit_t *c, uint32_t now); STATIC uint32_t circuit_max_queued_item_age(const circuit_t *c, uint32_t now); #endif #endif tor-0.2.7.6/src/or/connection_edge.c0000644000175000017500000037630112631612325014122 00000000000000/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file connection_edge.c * \brief Handle edge streams. **/ #define CONNECTION_EDGE_PRIVATE #include "or.h" #include "addressmap.h" #include "buffers.h" #include "channel.h" #include "circpathbias.h" #include "circuitlist.h" #include "circuituse.h" #include "config.h" #include "connection.h" #include "connection_edge.h" #include "connection_or.h" #include "control.h" #include "dns.h" #include "dnsserv.h" #include "dirserv.h" #include "hibernate.h" #include "main.h" #include "nodelist.h" #include "policies.h" #include "reasons.h" #include "relay.h" #include "rendclient.h" #include "rendcommon.h" #include "rendservice.h" #include "rephist.h" #include "router.h" #include "routerlist.h" #include "routerset.h" #include "circuitbuild.h" #ifdef HAVE_LINUX_TYPES_H #include #endif #ifdef HAVE_LINUX_NETFILTER_IPV4_H #include #define TRANS_NETFILTER #define TRANS_NETFILTER_IPV4 #endif #ifdef HAVE_LINUX_IF_H #include #endif #ifdef HAVE_LINUX_NETFILTER_IPV6_IP6_TABLES_H #include #if defined(IP6T_SO_ORIGINAL_DST) #define TRANS_NETFILTER #define TRANS_NETFILTER_IPV6 #endif #endif #if defined(HAVE_NET_IF_H) && defined(HAVE_NET_PFVAR_H) #include #include #define TRANS_PF #endif #ifdef IP_TRANSPARENT #define TRANS_TPROXY #endif #define SOCKS4_GRANTED 90 #define SOCKS4_REJECT 91 static int connection_ap_handshake_process_socks(entry_connection_t *conn); static int connection_ap_process_natd(entry_connection_t *conn); static int connection_exit_connect_dir(edge_connection_t *exitconn); static int consider_plaintext_ports(entry_connection_t *conn, uint16_t port); static int connection_ap_supports_optimistic_data(const entry_connection_t *); /** An AP stream has failed/finished. If it hasn't already sent back * a socks reply, send one now (based on endreason). Also set * has_sent_end to 1, and mark the conn. */ MOCK_IMPL(void, connection_mark_unattached_ap_,(entry_connection_t *conn, int endreason, int line, const char *file)) { connection_t *base_conn = ENTRY_TO_CONN(conn); edge_connection_t *edge_conn = ENTRY_TO_EDGE_CONN(conn); tor_assert(base_conn->type == CONN_TYPE_AP); ENTRY_TO_EDGE_CONN(conn)->edge_has_sent_end = 1; /* no circ yet */ /* If this is a rendezvous stream and it is failing without ever * being attached to a circuit, assume that an attempt to connect to * the destination hidden service has just ended. * * XXXX This condition doesn't limit to only streams failing * without ever being attached. That sloppiness should be harmless, * but we should fix it someday anyway. */ if ((edge_conn->on_circuit != NULL || edge_conn->edge_has_sent_end) && connection_edge_is_rendezvous_stream(edge_conn)) { rend_client_note_connection_attempt_ended(edge_conn->rend_data); } if (base_conn->marked_for_close) { /* This call will warn as appropriate. */ connection_mark_for_close_(base_conn, line, file); return; } if (!conn->socks_request->has_finished) { if (endreason & END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED) log_warn(LD_BUG, "stream (marked at %s:%d) sending two socks replies?", file, line); if (SOCKS_COMMAND_IS_CONNECT(conn->socks_request->command)) connection_ap_handshake_socks_reply(conn, NULL, 0, endreason); else if (SOCKS_COMMAND_IS_RESOLVE(conn->socks_request->command)) connection_ap_handshake_socks_resolved(conn, RESOLVED_TYPE_ERROR_TRANSIENT, 0, NULL, -1, -1); else /* unknown or no handshake at all. send no response. */ conn->socks_request->has_finished = 1; } connection_mark_and_flush_(base_conn, line, file); ENTRY_TO_EDGE_CONN(conn)->end_reason = endreason; } /** There was an EOF. Send an end and mark the connection for close. */ int connection_edge_reached_eof(edge_connection_t *conn) { if (connection_get_inbuf_len(TO_CONN(conn)) && connection_state_is_open(TO_CONN(conn))) { /* it still has stuff to process. don't let it die yet. */ return 0; } log_info(LD_EDGE,"conn (fd "TOR_SOCKET_T_FORMAT") reached eof. Closing.", conn->base_.s); if (!conn->base_.marked_for_close) { /* only mark it if not already marked. it's possible to * get the 'end' right around when the client hangs up on us. */ connection_edge_end(conn, END_STREAM_REASON_DONE); if (conn->base_.type == CONN_TYPE_AP) { /* eof, so don't send a socks reply back */ if (EDGE_TO_ENTRY_CONN(conn)->socks_request) EDGE_TO_ENTRY_CONN(conn)->socks_request->has_finished = 1; } connection_mark_for_close(TO_CONN(conn)); } return 0; } /** Handle new bytes on conn->inbuf based on state: * - If it's waiting for socks info, try to read another step of the * socks handshake out of conn->inbuf. * - If it's waiting for the original destination, fetch it. * - If it's open, then package more relay cells from the stream. * - Else, leave the bytes on inbuf alone for now. * * Mark and return -1 if there was an unexpected error with the conn, * else return 0. */ int connection_edge_process_inbuf(edge_connection_t *conn, int package_partial) { tor_assert(conn); switch (conn->base_.state) { case AP_CONN_STATE_SOCKS_WAIT: if (connection_ap_handshake_process_socks(EDGE_TO_ENTRY_CONN(conn)) <0) { /* already marked */ return -1; } return 0; case AP_CONN_STATE_NATD_WAIT: if (connection_ap_process_natd(EDGE_TO_ENTRY_CONN(conn)) < 0) { /* already marked */ return -1; } return 0; case AP_CONN_STATE_OPEN: case EXIT_CONN_STATE_OPEN: if (connection_edge_package_raw_inbuf(conn, package_partial, NULL) < 0) { /* (We already sent an end cell if possible) */ connection_mark_for_close(TO_CONN(conn)); return -1; } return 0; case AP_CONN_STATE_CONNECT_WAIT: if (connection_ap_supports_optimistic_data(EDGE_TO_ENTRY_CONN(conn))) { log_info(LD_EDGE, "data from edge while in '%s' state. Sending it anyway. " "package_partial=%d, buflen=%ld", conn_state_to_string(conn->base_.type, conn->base_.state), package_partial, (long)connection_get_inbuf_len(TO_CONN(conn))); if (connection_edge_package_raw_inbuf(conn, package_partial, NULL)<0) { /* (We already sent an end cell if possible) */ connection_mark_for_close(TO_CONN(conn)); return -1; } return 0; } /* Fall through if the connection is on a circuit without optimistic * data support. */ case EXIT_CONN_STATE_CONNECTING: case AP_CONN_STATE_RENDDESC_WAIT: case AP_CONN_STATE_CIRCUIT_WAIT: case AP_CONN_STATE_RESOLVE_WAIT: case AP_CONN_STATE_CONTROLLER_WAIT: log_info(LD_EDGE, "data from edge while in '%s' state. Leaving it on buffer.", conn_state_to_string(conn->base_.type, conn->base_.state)); return 0; } log_warn(LD_BUG,"Got unexpected state %d. Closing.",conn->base_.state); tor_fragile_assert(); connection_edge_end(conn, END_STREAM_REASON_INTERNAL); connection_mark_for_close(TO_CONN(conn)); return -1; } /** This edge needs to be closed, because its circuit has closed. * Mark it for close and return 0. */ int connection_edge_destroy(circid_t circ_id, edge_connection_t *conn) { if (!conn->base_.marked_for_close) { log_info(LD_EDGE, "CircID %u: At an edge. Marking connection for close.", (unsigned) circ_id); if (conn->base_.type == CONN_TYPE_AP) { entry_connection_t *entry_conn = EDGE_TO_ENTRY_CONN(conn); connection_mark_unattached_ap(entry_conn, END_STREAM_REASON_DESTROY); control_event_stream_bandwidth(conn); control_event_stream_status(entry_conn, STREAM_EVENT_CLOSED, END_STREAM_REASON_DESTROY); conn->end_reason |= END_STREAM_REASON_FLAG_ALREADY_SENT_CLOSED; } else { /* closing the circuit, nothing to send an END to */ conn->edge_has_sent_end = 1; conn->end_reason = END_STREAM_REASON_DESTROY; conn->end_reason |= END_STREAM_REASON_FLAG_ALREADY_SENT_CLOSED; connection_mark_and_flush(TO_CONN(conn)); } } conn->cpath_layer = NULL; conn->on_circuit = NULL; return 0; } /** Send a raw end cell to the stream with ID stream_id out over the * circ towards the hop identified with cpath_layer. If this * is not a client connection, set the relay end cell's reason for closing * as reason */ static int relay_send_end_cell_from_edge(streamid_t stream_id, circuit_t *circ, uint8_t reason, crypt_path_t *cpath_layer) { char payload[1]; if (CIRCUIT_PURPOSE_IS_CLIENT(circ->purpose)) { /* Never send the server an informative reason code; it doesn't need to * know why the client stream is failing. */ reason = END_STREAM_REASON_MISC; } payload[0] = (char) reason; return relay_send_command_from_edge(stream_id, circ, RELAY_COMMAND_END, payload, 1, cpath_layer); } /** Send a relay end cell from stream conn down conn's circuit, and * remember that we've done so. If this is not a client connection, set the * relay end cell's reason for closing as reason. * * Return -1 if this function has already been called on this conn, * else return 0. */ int connection_edge_end(edge_connection_t *conn, uint8_t reason) { char payload[RELAY_PAYLOAD_SIZE]; size_t payload_len=1; circuit_t *circ; uint8_t control_reason = reason; if (conn->edge_has_sent_end) { log_warn(LD_BUG,"(Harmless.) Calling connection_edge_end (reason %d) " "on an already ended stream?", reason); tor_fragile_assert(); return -1; } if (conn->base_.marked_for_close) { log_warn(LD_BUG, "called on conn that's already marked for close at %s:%d.", conn->base_.marked_for_close_file, conn->base_.marked_for_close); return 0; } circ = circuit_get_by_edge_conn(conn); if (circ && CIRCUIT_PURPOSE_IS_CLIENT(circ->purpose)) { /* If this is a client circuit, don't send the server an informative * reason code; it doesn't need to know why the client stream is * failing. */ reason = END_STREAM_REASON_MISC; } payload[0] = (char)reason; if (reason == END_STREAM_REASON_EXITPOLICY && !connection_edge_is_rendezvous_stream(conn)) { int addrlen; if (tor_addr_family(&conn->base_.addr) == AF_INET) { set_uint32(payload+1, tor_addr_to_ipv4n(&conn->base_.addr)); addrlen = 4; } else { memcpy(payload+1, tor_addr_to_in6_addr8(&conn->base_.addr), 16); addrlen = 16; } set_uint32(payload+1+addrlen, htonl(dns_clip_ttl(conn->address_ttl))); payload_len += 4+addrlen; } if (circ && !circ->marked_for_close) { log_debug(LD_EDGE,"Sending end on conn (fd "TOR_SOCKET_T_FORMAT").", conn->base_.s); connection_edge_send_command(conn, RELAY_COMMAND_END, payload, payload_len); } else { log_debug(LD_EDGE,"No circ to send end on conn " "(fd "TOR_SOCKET_T_FORMAT").", conn->base_.s); } conn->edge_has_sent_end = 1; conn->end_reason = control_reason; return 0; } /** An error has just occurred on an operation on an edge connection * conn. Extract the errno; convert it to an end reason, and send an * appropriate relay end cell to the other end of the connection's circuit. **/ int connection_edge_end_errno(edge_connection_t *conn) { uint8_t reason; tor_assert(conn); reason = errno_to_stream_end_reason(tor_socket_errno(conn->base_.s)); return connection_edge_end(conn, reason); } /** We just wrote some data to conn; act appropriately. * * (That is, if it's open, consider sending a stream-level sendme cell if we * have just flushed enough.) */ int connection_edge_flushed_some(edge_connection_t *conn) { switch (conn->base_.state) { case AP_CONN_STATE_OPEN: case EXIT_CONN_STATE_OPEN: connection_edge_consider_sending_sendme(conn); break; } return 0; } /** Connection conn has finished writing and has no bytes left on * its outbuf. * * If it's in state 'open', stop writing, consider responding with a * sendme, and return. * Otherwise, stop writing and return. * * If conn is broken, mark it for close and return -1, else * return 0. */ int connection_edge_finished_flushing(edge_connection_t *conn) { tor_assert(conn); switch (conn->base_.state) { case AP_CONN_STATE_OPEN: case EXIT_CONN_STATE_OPEN: connection_edge_consider_sending_sendme(conn); return 0; case AP_CONN_STATE_SOCKS_WAIT: case AP_CONN_STATE_NATD_WAIT: case AP_CONN_STATE_RENDDESC_WAIT: case AP_CONN_STATE_CIRCUIT_WAIT: case AP_CONN_STATE_CONNECT_WAIT: case AP_CONN_STATE_CONTROLLER_WAIT: case AP_CONN_STATE_RESOLVE_WAIT: return 0; default: log_warn(LD_BUG, "Called in unexpected state %d.",conn->base_.state); tor_fragile_assert(); return -1; } return 0; } /** Longest size for the relay payload of a RELAY_CONNECTED cell that we're * able to generate. */ /* 4 zero bytes; 1 type byte; 16 byte IPv6 address; 4 byte TTL. */ #define MAX_CONNECTED_CELL_PAYLOAD_LEN 25 /** Set the buffer at payload_out -- which must have at least * MAX_CONNECTED_CELL_PAYLOAD_LEN bytes available -- to the body of a * RELAY_CONNECTED cell indicating that we have connected to addr, and * that the name resolution that led us to addr will be valid for * ttl seconds. Return -1 on error, or the number of bytes used on * success. */ STATIC int connected_cell_format_payload(uint8_t *payload_out, const tor_addr_t *addr, uint32_t ttl) { const sa_family_t family = tor_addr_family(addr); int connected_payload_len; /* should be needless */ memset(payload_out, 0, MAX_CONNECTED_CELL_PAYLOAD_LEN); if (family == AF_INET) { set_uint32(payload_out, tor_addr_to_ipv4n(addr)); connected_payload_len = 4; } else if (family == AF_INET6) { set_uint32(payload_out, 0); set_uint8(payload_out + 4, 6); memcpy(payload_out + 5, tor_addr_to_in6_addr8(addr), 16); connected_payload_len = 21; } else { return -1; } set_uint32(payload_out + connected_payload_len, htonl(dns_clip_ttl(ttl))); connected_payload_len += 4; tor_assert(connected_payload_len <= MAX_CONNECTED_CELL_PAYLOAD_LEN); return connected_payload_len; } /** Connected handler for exit connections: start writing pending * data, deliver 'CONNECTED' relay cells as appropriate, and check * any pending data that may have been received. */ int connection_edge_finished_connecting(edge_connection_t *edge_conn) { connection_t *conn; tor_assert(edge_conn); tor_assert(edge_conn->base_.type == CONN_TYPE_EXIT); conn = TO_CONN(edge_conn); tor_assert(conn->state == EXIT_CONN_STATE_CONNECTING); log_info(LD_EXIT,"Exit connection to %s:%u (%s) established.", escaped_safe_str(conn->address), conn->port, safe_str(fmt_and_decorate_addr(&conn->addr))); rep_hist_note_exit_stream_opened(conn->port); conn->state = EXIT_CONN_STATE_OPEN; IF_HAS_NO_BUFFEREVENT(conn) connection_watch_events(conn, READ_EVENT); /* stop writing, keep reading */ if (connection_get_outbuf_len(conn)) /* in case there are any queued relay * cells */ connection_start_writing(conn); /* deliver a 'connected' relay cell back through the circuit. */ if (connection_edge_is_rendezvous_stream(edge_conn)) { if (connection_edge_send_command(edge_conn, RELAY_COMMAND_CONNECTED, NULL, 0) < 0) return 0; /* circuit is closed, don't continue */ } else { uint8_t connected_payload[MAX_CONNECTED_CELL_PAYLOAD_LEN]; int connected_payload_len = connected_cell_format_payload(connected_payload, &conn->addr, edge_conn->address_ttl); if (connected_payload_len < 0) return -1; if (connection_edge_send_command(edge_conn, RELAY_COMMAND_CONNECTED, (char*)connected_payload, connected_payload_len) < 0) return 0; /* circuit is closed, don't continue */ } tor_assert(edge_conn->package_window > 0); /* in case the server has written anything */ return connection_edge_process_inbuf(edge_conn, 1); } /** Common code to connection_(ap|exit)_about_to_close. */ static void connection_edge_about_to_close(edge_connection_t *edge_conn) { if (!edge_conn->edge_has_sent_end) { connection_t *conn = TO_CONN(edge_conn); log_warn(LD_BUG, "(Harmless.) Edge connection (marked at %s:%d) " "hasn't sent end yet?", conn->marked_for_close_file, conn->marked_for_close); tor_fragile_assert(); } } /** Called when we're about to finally unlink and free an AP (client) * connection: perform necessary accounting and cleanup */ void connection_ap_about_to_close(entry_connection_t *entry_conn) { circuit_t *circ; edge_connection_t *edge_conn = ENTRY_TO_EDGE_CONN(entry_conn); connection_t *conn = ENTRY_TO_CONN(entry_conn); if (entry_conn->socks_request->has_finished == 0) { /* since conn gets removed right after this function finishes, * there's no point trying to send back a reply at this point. */ log_warn(LD_BUG,"Closing stream (marked at %s:%d) without sending" " back a socks reply.", conn->marked_for_close_file, conn->marked_for_close); } if (!edge_conn->end_reason) { log_warn(LD_BUG,"Closing stream (marked at %s:%d) without having" " set end_reason.", conn->marked_for_close_file, conn->marked_for_close); } if (entry_conn->dns_server_request) { log_warn(LD_BUG,"Closing stream (marked at %s:%d) without having" " replied to DNS request.", conn->marked_for_close_file, conn->marked_for_close); dnsserv_reject_request(entry_conn); } control_event_stream_bandwidth(edge_conn); control_event_stream_status(entry_conn, STREAM_EVENT_CLOSED, edge_conn->end_reason); circ = circuit_get_by_edge_conn(edge_conn); if (circ) circuit_detach_stream(circ, edge_conn); } /** Called when we're about to finally unlink and free an exit * connection: perform necessary accounting and cleanup */ void connection_exit_about_to_close(edge_connection_t *edge_conn) { circuit_t *circ; connection_t *conn = TO_CONN(edge_conn); connection_edge_about_to_close(edge_conn); circ = circuit_get_by_edge_conn(edge_conn); if (circ) circuit_detach_stream(circ, edge_conn); if (conn->state == EXIT_CONN_STATE_RESOLVING) { connection_dns_remove(edge_conn); } } /** Define a schedule for how long to wait between retrying * application connections. Rather than waiting a fixed amount of * time between each retry, we wait 10 seconds each for the first * two tries, and 15 seconds for each retry after * that. Hopefully this will improve the expected user experience. */ static int compute_retry_timeout(entry_connection_t *conn) { int timeout = get_options()->CircuitStreamTimeout; if (timeout) /* if our config options override the default, use them */ return timeout; if (conn->num_socks_retries < 2) /* try 0 and try 1 */ return 10; return 15; } /** Find all general-purpose AP streams waiting for a response that sent their * begin/resolve cell too long ago. Detach from their current circuit, and * mark their current circuit as unsuitable for new streams. Then call * connection_ap_handshake_attach_circuit() to attach to a new circuit (if * available) or launch a new one. * * For rendezvous streams, simply give up after SocksTimeout seconds (with no * retry attempt). */ void connection_ap_expire_beginning(void) { edge_connection_t *conn; entry_connection_t *entry_conn; circuit_t *circ; time_t now = time(NULL); const or_options_t *options = get_options(); int severity; int cutoff; int seconds_idle, seconds_since_born; smartlist_t *conns = get_connection_array(); SMARTLIST_FOREACH_BEGIN(conns, connection_t *, base_conn) { if (base_conn->type != CONN_TYPE_AP || base_conn->marked_for_close) continue; entry_conn = TO_ENTRY_CONN(base_conn); conn = ENTRY_TO_EDGE_CONN(entry_conn); /* if it's an internal linked connection, don't yell its status. */ severity = (tor_addr_is_null(&base_conn->addr) && !base_conn->port) ? LOG_INFO : LOG_NOTICE; seconds_idle = (int)( now - base_conn->timestamp_lastread ); seconds_since_born = (int)( now - base_conn->timestamp_created ); if (base_conn->state == AP_CONN_STATE_OPEN) continue; /* We already consider SocksTimeout in * connection_ap_handshake_attach_circuit(), but we need to consider * it here too because controllers that put streams in controller_wait * state never ask Tor to attach the circuit. */ if (AP_CONN_STATE_IS_UNATTACHED(base_conn->state)) { if (seconds_since_born >= options->SocksTimeout) { log_fn(severity, LD_APP, "Tried for %d seconds to get a connection to %s:%d. " "Giving up. (%s)", seconds_since_born, safe_str_client(entry_conn->socks_request->address), entry_conn->socks_request->port, conn_state_to_string(CONN_TYPE_AP, base_conn->state)); connection_mark_unattached_ap(entry_conn, END_STREAM_REASON_TIMEOUT); } continue; } /* We're in state connect_wait or resolve_wait now -- waiting for a * reply to our relay cell. See if we want to retry/give up. */ cutoff = compute_retry_timeout(entry_conn); if (seconds_idle < cutoff) continue; circ = circuit_get_by_edge_conn(conn); if (!circ) { /* it's vanished? */ log_info(LD_APP,"Conn is waiting (address %s), but lost its circ.", safe_str_client(entry_conn->socks_request->address)); connection_mark_unattached_ap(entry_conn, END_STREAM_REASON_TIMEOUT); continue; } if (circ->purpose == CIRCUIT_PURPOSE_C_REND_JOINED) { if (seconds_idle >= options->SocksTimeout) { log_fn(severity, LD_REND, "Rend stream is %d seconds late. Giving up on address" " '%s.onion'.", seconds_idle, safe_str_client(entry_conn->socks_request->address)); /* Roll back path bias use state so that we probe the circuit * if nothing else succeeds on it */ pathbias_mark_use_rollback(TO_ORIGIN_CIRCUIT(circ)); connection_edge_end(conn, END_STREAM_REASON_TIMEOUT); connection_mark_unattached_ap(entry_conn, END_STREAM_REASON_TIMEOUT); } continue; } if (circ->purpose != CIRCUIT_PURPOSE_C_GENERAL && circ->purpose != CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT && circ->purpose != CIRCUIT_PURPOSE_PATH_BIAS_TESTING) { log_warn(LD_BUG, "circuit->purpose == CIRCUIT_PURPOSE_C_GENERAL failed. " "The purpose on the circuit was %s; it was in state %s, " "path_state %s.", circuit_purpose_to_string(circ->purpose), circuit_state_to_string(circ->state), CIRCUIT_IS_ORIGIN(circ) ? pathbias_state_to_string(TO_ORIGIN_CIRCUIT(circ)->path_state) : "none"); } log_fn(cutoff < 15 ? LOG_INFO : severity, LD_APP, "We tried for %d seconds to connect to '%s' using exit %s." " Retrying on a new circuit.", seconds_idle, safe_str_client(entry_conn->socks_request->address), conn->cpath_layer ? extend_info_describe(conn->cpath_layer->extend_info): "*unnamed*"); /* send an end down the circuit */ connection_edge_end(conn, END_STREAM_REASON_TIMEOUT); /* un-mark it as ending, since we're going to reuse it */ conn->edge_has_sent_end = 0; conn->end_reason = 0; /* make us not try this circuit again, but allow * current streams on it to survive if they can */ mark_circuit_unusable_for_new_conns(TO_ORIGIN_CIRCUIT(circ)); /* give our stream another 'cutoff' seconds to try */ conn->base_.timestamp_lastread += cutoff; if (entry_conn->num_socks_retries < 250) /* avoid overflow */ entry_conn->num_socks_retries++; /* move it back into 'pending' state, and try to attach. */ if (connection_ap_detach_retriable(entry_conn, TO_ORIGIN_CIRCUIT(circ), END_STREAM_REASON_TIMEOUT)<0) { if (!base_conn->marked_for_close) connection_mark_unattached_ap(entry_conn, END_STREAM_REASON_CANT_ATTACH); } } SMARTLIST_FOREACH_END(base_conn); } /** Tell any AP streams that are waiting for a new circuit to try again, * either attaching to an available circ or launching a new one. */ void connection_ap_attach_pending(void) { entry_connection_t *entry_conn; smartlist_t *conns = get_connection_array(); SMARTLIST_FOREACH_BEGIN(conns, connection_t *, conn) { if (conn->marked_for_close || conn->type != CONN_TYPE_AP || conn->state != AP_CONN_STATE_CIRCUIT_WAIT) continue; entry_conn = TO_ENTRY_CONN(conn); if (connection_ap_handshake_attach_circuit(entry_conn) < 0) { if (!conn->marked_for_close) connection_mark_unattached_ap(entry_conn, END_STREAM_REASON_CANT_ATTACH); } } SMARTLIST_FOREACH_END(conn); } /** Tell any AP streams that are waiting for a one-hop tunnel to * failed_digest that they are going to fail. */ /* XXX024 We should get rid of this function, and instead attach * one-hop streams to circ->p_streams so they get marked in * circuit_mark_for_close like normal p_streams. */ void connection_ap_fail_onehop(const char *failed_digest, cpath_build_state_t *build_state) { entry_connection_t *entry_conn; char digest[DIGEST_LEN]; smartlist_t *conns = get_connection_array(); SMARTLIST_FOREACH_BEGIN(conns, connection_t *, conn) { if (conn->marked_for_close || conn->type != CONN_TYPE_AP || conn->state != AP_CONN_STATE_CIRCUIT_WAIT) continue; entry_conn = TO_ENTRY_CONN(conn); if (!entry_conn->want_onehop) continue; if (hexdigest_to_digest(entry_conn->chosen_exit_name, digest) < 0 || tor_memneq(digest, failed_digest, DIGEST_LEN)) continue; if (tor_digest_is_zero(digest)) { /* we don't know the digest; have to compare addr:port */ tor_addr_t addr; if (!build_state || !build_state->chosen_exit || !entry_conn->socks_request) { continue; } if (tor_addr_parse(&addr, entry_conn->socks_request->address)<0 || !tor_addr_eq(&build_state->chosen_exit->addr, &addr) || build_state->chosen_exit->port != entry_conn->socks_request->port) continue; } log_info(LD_APP, "Closing one-hop stream to '%s/%s' because the OR conn " "just failed.", entry_conn->chosen_exit_name, entry_conn->socks_request->address); connection_mark_unattached_ap(entry_conn, END_STREAM_REASON_TIMEOUT); } SMARTLIST_FOREACH_END(conn); } /** A circuit failed to finish on its last hop info. If there * are any streams waiting with this exit node in mind, but they * don't absolutely require it, make them give up on it. */ void circuit_discard_optional_exit_enclaves(extend_info_t *info) { entry_connection_t *entry_conn; const node_t *r1, *r2; smartlist_t *conns = get_connection_array(); SMARTLIST_FOREACH_BEGIN(conns, connection_t *, conn) { if (conn->marked_for_close || conn->type != CONN_TYPE_AP || conn->state != AP_CONN_STATE_CIRCUIT_WAIT) continue; entry_conn = TO_ENTRY_CONN(conn); if (!entry_conn->chosen_exit_optional && !entry_conn->chosen_exit_retries) continue; r1 = node_get_by_nickname(entry_conn->chosen_exit_name, 0); r2 = node_get_by_id(info->identity_digest); if (!r1 || !r2 || r1 != r2) continue; tor_assert(entry_conn->socks_request); if (entry_conn->chosen_exit_optional) { log_info(LD_APP, "Giving up on enclave exit '%s' for destination %s.", safe_str_client(entry_conn->chosen_exit_name), escaped_safe_str_client(entry_conn->socks_request->address)); entry_conn->chosen_exit_optional = 0; tor_free(entry_conn->chosen_exit_name); /* clears it */ /* if this port is dangerous, warn or reject it now that we don't * think it'll be using an enclave. */ consider_plaintext_ports(entry_conn, entry_conn->socks_request->port); } if (entry_conn->chosen_exit_retries) { if (--entry_conn->chosen_exit_retries == 0) { /* give up! */ clear_trackexithost_mappings(entry_conn->chosen_exit_name); tor_free(entry_conn->chosen_exit_name); /* clears it */ /* if this port is dangerous, warn or reject it now that we don't * think it'll be using an enclave. */ consider_plaintext_ports(entry_conn, entry_conn->socks_request->port); } } } SMARTLIST_FOREACH_END(conn); } /** The AP connection conn has just failed while attaching or * sending a BEGIN or resolving on circ, but another circuit * might work. Detach the circuit, and either reattach it, launch a * new circuit, tell the controller, or give up as appropriate. * * Returns -1 on err, 1 on success, 0 on not-yet-sure. */ int connection_ap_detach_retriable(entry_connection_t *conn, origin_circuit_t *circ, int reason) { control_event_stream_status(conn, STREAM_EVENT_FAILED_RETRIABLE, reason); ENTRY_TO_CONN(conn)->timestamp_lastread = time(NULL); /* Roll back path bias use state so that we probe the circuit * if nothing else succeeds on it */ pathbias_mark_use_rollback(circ); if (conn->pending_optimistic_data) { generic_buffer_set_to_copy(&conn->sending_optimistic_data, conn->pending_optimistic_data); } if (!get_options()->LeaveStreamsUnattached || conn->use_begindir) { /* If we're attaching streams ourself, or if this connection is * a tunneled directory connection, then just attach it. */ ENTRY_TO_CONN(conn)->state = AP_CONN_STATE_CIRCUIT_WAIT; circuit_detach_stream(TO_CIRCUIT(circ),ENTRY_TO_EDGE_CONN(conn)); return connection_ap_handshake_attach_circuit(conn); } else { ENTRY_TO_CONN(conn)->state = AP_CONN_STATE_CONTROLLER_WAIT; circuit_detach_stream(TO_CIRCUIT(circ),ENTRY_TO_EDGE_CONN(conn)); return 0; } } /** Check if conn is using a dangerous port. Then warn and/or * reject depending on our config options. */ static int consider_plaintext_ports(entry_connection_t *conn, uint16_t port) { const or_options_t *options = get_options(); int reject = smartlist_contains_int_as_string( options->RejectPlaintextPorts, port); if (smartlist_contains_int_as_string(options->WarnPlaintextPorts, port)) { log_warn(LD_APP, "Application request to port %d: this port is " "commonly used for unencrypted protocols. Please make sure " "you don't send anything you would mind the rest of the " "Internet reading!%s", port, reject ? " Closing." : ""); control_event_client_status(LOG_WARN, "DANGEROUS_PORT PORT=%d RESULT=%s", port, reject ? "REJECT" : "WARN"); } if (reject) { log_info(LD_APP, "Port %d listed in RejectPlaintextPorts. Closing.", port); connection_mark_unattached_ap(conn, END_STREAM_REASON_ENTRYPOLICY); return -1; } return 0; } /** How many times do we try connecting with an exit configured via * TrackHostExits before concluding that it won't work any more and trying a * different one? */ #define TRACKHOSTEXITS_RETRIES 5 /** Call connection_ap_handshake_rewrite_and_attach() unless a controller * asked us to leave streams unattached. Return 0 in that case. * * See connection_ap_handshake_rewrite_and_attach()'s * documentation for arguments and return value. */ int connection_ap_rewrite_and_attach_if_allowed(entry_connection_t *conn, origin_circuit_t *circ, crypt_path_t *cpath) { const or_options_t *options = get_options(); if (options->LeaveStreamsUnattached) { ENTRY_TO_CONN(conn)->state = AP_CONN_STATE_CONTROLLER_WAIT; return 0; } return connection_ap_handshake_rewrite_and_attach(conn, circ, cpath); } /* Try to perform any map-based rewriting of the target address in * conn, filling in the fields of out as we go, and modifying * conn->socks_request.address as appropriate. */ STATIC void connection_ap_handshake_rewrite(entry_connection_t *conn, rewrite_result_t *out) { socks_request_t *socks = conn->socks_request; const or_options_t *options = get_options(); tor_addr_t addr_tmp; /* Initialize all the fields of 'out' to reasonable defaults */ out->automap = 0; out->exit_source = ADDRMAPSRC_NONE; out->map_expires = TIME_MAX; out->end_reason = 0; out->should_close = 0; out->orig_address[0] = 0; /* We convert all incoming addresses to lowercase. */ tor_strlower(socks->address); /* Remember the original address. */ strlcpy(out->orig_address, socks->address, sizeof(out->orig_address)); log_debug(LD_APP,"Client asked for %s:%d", safe_str_client(socks->address), socks->port); /* Check for whether this is a .exit address. By default, those are * disallowed when they're coming straight from the client, but you're * allowed to have them in MapAddress commands and so forth. */ if (!strcmpend(socks->address, ".exit") && !options->AllowDotExit) { log_warn(LD_APP, "The \".exit\" notation is disabled in Tor due to " "security risks. Set AllowDotExit in your torrc to enable " "it (at your own risk)."); control_event_client_status(LOG_WARN, "SOCKS_BAD_HOSTNAME HOSTNAME=%s", escaped(socks->address)); out->end_reason = END_STREAM_REASON_TORPROTOCOL; out->should_close = 1; return; } /* Remember the original address so we can tell the user about what * they actually said, not just what it turned into. */ if (! conn->original_dest_address) { /* Is the 'if' necessary here? XXXX */ conn->original_dest_address = tor_strdup(conn->socks_request->address); } /* First, apply MapAddress and MAPADDRESS mappings. We need to do * these only for non-reverse lookups, since they don't exist for those. * We need to do this before we consider automapping, since we might * e.g. resolve irc.oftc.net into irconionaddress.onion, at which point * we'd need to automap it. */ if (socks->command != SOCKS_COMMAND_RESOLVE_PTR) { const unsigned rewrite_flags = AMR_FLAG_USE_MAPADDRESS; if (addressmap_rewrite(socks->address, sizeof(socks->address), rewrite_flags, &out->map_expires, &out->exit_source)) { control_event_stream_status(conn, STREAM_EVENT_REMAP, REMAP_STREAM_SOURCE_CACHE); } } /* Now, handle automapping. Automapping happens when we're asked to * resolve a hostname, and AutomapHostsOnResolve is set, and * the hostname has a suffix listed in AutomapHostsSuffixes. */ if (socks->command == SOCKS_COMMAND_RESOLVE && tor_addr_parse(&addr_tmp, socks->address)<0 && options->AutomapHostsOnResolve) { /* Check the suffix... */ out->automap = addressmap_address_should_automap(socks->address, options); if (out->automap) { /* If we get here, then we should apply an automapping for this. */ const char *new_addr; /* We return an IPv4 address by default, or an IPv6 address if we * are allowed to do so. */ int addr_type = RESOLVED_TYPE_IPV4; if (conn->socks_request->socks_version != 4) { if (!conn->entry_cfg.ipv4_traffic || (conn->entry_cfg.ipv6_traffic && conn->entry_cfg.prefer_ipv6) || conn->entry_cfg.prefer_ipv6_virtaddr) addr_type = RESOLVED_TYPE_IPV6; } /* Okay, register the target address as automapped, and find the new * address we're supposed to give as a resolve answer. (Return a cached * value if we've looked up this address before. */ new_addr = addressmap_register_virtual_address( addr_type, tor_strdup(socks->address)); if (! new_addr) { log_warn(LD_APP, "Unable to automap address %s", escaped_safe_str(socks->address)); out->end_reason = END_STREAM_REASON_INTERNAL; out->should_close = 1; return; } log_info(LD_APP, "Automapping %s to %s", escaped_safe_str_client(socks->address), safe_str_client(new_addr)); strlcpy(socks->address, new_addr, sizeof(socks->address)); } } /* Now handle reverse lookups, if they're in the cache. This doesn't * happen too often, since client-side DNS caching is off by default. */ if (socks->command == SOCKS_COMMAND_RESOLVE_PTR) { unsigned rewrite_flags = 0; if (conn->entry_cfg.use_cached_ipv4_answers) rewrite_flags |= AMR_FLAG_USE_IPV4_DNS; if (conn->entry_cfg.use_cached_ipv6_answers) rewrite_flags |= AMR_FLAG_USE_IPV6_DNS; if (addressmap_rewrite_reverse(socks->address, sizeof(socks->address), rewrite_flags, &out->map_expires)) { char *result = tor_strdup(socks->address); /* remember _what_ is supposed to have been resolved. */ tor_snprintf(socks->address, sizeof(socks->address), "REVERSE[%s]", out->orig_address); connection_ap_handshake_socks_resolved(conn, RESOLVED_TYPE_HOSTNAME, strlen(result), (uint8_t*)result, -1, out->map_expires); tor_free(result); out->end_reason = END_STREAM_REASON_DONE | END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED; out->should_close = 1; return; } /* Hang on, did we find an answer saying that this is a reverse lookup for * an internal address? If so, we should reject it if we're condigured to * do so. */ if (options->ClientDNSRejectInternalAddresses) { /* Don't let people try to do a reverse lookup on 10.0.0.1. */ tor_addr_t addr; int ok; ok = tor_addr_parse_PTR_name( &addr, socks->address, AF_UNSPEC, 1); if (ok == 1 && tor_addr_is_internal(&addr, 0)) { connection_ap_handshake_socks_resolved(conn, RESOLVED_TYPE_ERROR, 0, NULL, -1, TIME_MAX); out->end_reason = END_STREAM_REASON_SOCKSPROTOCOL | END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED; out->should_close = 1; return; } } } /* If we didn't automap it before, then this is still the address * that came straight from the user, mapped according to any * MapAddress/MAPADDRESS commands. Now other mappings, including * previously registered Automap entries, TrackHostExits entries, * and client-side DNS cache entries (not recommended). */ if (socks->command != SOCKS_COMMAND_RESOLVE_PTR && !out->automap) { unsigned rewrite_flags = AMR_FLAG_USE_AUTOMAP | AMR_FLAG_USE_TRACKEXIT; addressmap_entry_source_t exit_source2; if (conn->entry_cfg.use_cached_ipv4_answers) rewrite_flags |= AMR_FLAG_USE_IPV4_DNS; if (conn->entry_cfg.use_cached_ipv6_answers) rewrite_flags |= AMR_FLAG_USE_IPV6_DNS; if (addressmap_rewrite(socks->address, sizeof(socks->address), rewrite_flags, &out->map_expires, &exit_source2)) { control_event_stream_status(conn, STREAM_EVENT_REMAP, REMAP_STREAM_SOURCE_CACHE); } if (out->exit_source == ADDRMAPSRC_NONE) { /* If it wasn't a .exit before, maybe it turned into a .exit. Remember * the original source of a .exit. */ out->exit_source = exit_source2; } } /* Check to see whether we're about to use an address in the virtual * range without actually having gotten it from an Automap. */ if (!out->automap && address_is_in_virtual_range(socks->address)) { /* This address was probably handed out by * client_dns_get_unmapped_address, but the mapping was discarded for some * reason. Or the user typed in a virtual address range manually. We * *don't* want to send the address through Tor; that's likely to fail, * and may leak information. */ log_warn(LD_APP,"Missing mapping for virtual address '%s'. Refusing.", safe_str_client(socks->address)); out->end_reason = END_STREAM_REASON_INTERNAL; out->should_close = 1; return; } } /** Connection conn just finished its socks handshake, or the * controller asked us to take care of it. If circ is defined, * then that's where we'll want to attach it. Otherwise we have to * figure it out ourselves. * * First, parse whether it's a .exit address, remap it, and so on. Then * if it's for a general circuit, try to attach it to a circuit (or launch * one as needed), else if it's for a rendezvous circuit, fetch a * rendezvous descriptor first (or attach/launch a circuit if the * rendezvous descriptor is already here and fresh enough). * * The stream will exit from the hop * indicated by cpath, or from the last hop in circ's cpath if * cpath is NULL. */ int connection_ap_handshake_rewrite_and_attach(entry_connection_t *conn, origin_circuit_t *circ, crypt_path_t *cpath) { socks_request_t *socks = conn->socks_request; const or_options_t *options = get_options(); connection_t *base_conn = ENTRY_TO_CONN(conn); time_t now = time(NULL); rewrite_result_t rr; memset(&rr, 0, sizeof(rr)); connection_ap_handshake_rewrite(conn,&rr); if (rr.should_close) { /* connection_ap_handshake_rewrite told us to close the connection, * either because it sent back an answer, or because it sent back an * error */ connection_mark_unattached_ap(conn, rr.end_reason); if (END_STREAM_REASON_DONE == (rr.end_reason & END_STREAM_REASON_MASK)) return 0; else return -1; } const time_t map_expires = rr.map_expires; const int automap = rr.automap; const addressmap_entry_source_t exit_source = rr.exit_source; /* Parse the address provided by SOCKS. Modify it in-place if it * specifies a hidden-service (.onion) or particular exit node (.exit). */ const hostname_type_t addresstype = parse_extended_hostname(socks->address); /* Now see whether the hostname is bogus. This could happen because of an * onion hostname whose format we don't recognize. */ if (addresstype == BAD_HOSTNAME) { control_event_client_status(LOG_WARN, "SOCKS_BAD_HOSTNAME HOSTNAME=%s", escaped(socks->address)); connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL); return -1; } /* If this is a .exit hostname, strip off the .name.exit part, and * see whether we're going to connect there, and otherwise handle it. * (The ".exit" part got stripped off by "parse_extended_hostname"). * * We'll set chosen_exit_name and/or close the connection as appropriate. */ if (addresstype == EXIT_HOSTNAME) { /* If StrictNodes is not set, then .exit overrides ExcludeNodes but * not ExcludeExitNodes. */ routerset_t *excludeset = options->StrictNodes ? options->ExcludeExitNodesUnion_ : options->ExcludeExitNodes; const node_t *node = NULL; /* If this .exit was added by an AUTOMAP, then it came straight from * a user. Make sure that options->AllowDotExit permits that. */ if (exit_source == ADDRMAPSRC_AUTOMAP && !options->AllowDotExit) { /* Whoops; this one is stale. It must have gotten added earlier, * when AllowDotExit was on. */ log_warn(LD_APP,"Stale automapped address for '%s.exit', with " "AllowDotExit disabled. Refusing.", safe_str_client(socks->address)); control_event_client_status(LOG_WARN, "SOCKS_BAD_HOSTNAME HOSTNAME=%s", escaped(socks->address)); connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL); return -1; } /* Double-check to make sure there are no .exits coming from * impossible/weird sources. */ if (exit_source == ADDRMAPSRC_DNS || (exit_source == ADDRMAPSRC_NONE && !options->AllowDotExit)) { /* It shouldn't be possible to get a .exit address from any of these * sources. */ log_warn(LD_BUG,"Address '%s.exit', with impossible source for the " ".exit part. Refusing.", safe_str_client(socks->address)); control_event_client_status(LOG_WARN, "SOCKS_BAD_HOSTNAME HOSTNAME=%s", escaped(socks->address)); connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL); return -1; } tor_assert(!automap); /* Now, find the character before the .(name) part. */ char *s = strrchr(socks->address,'.'); if (s) { /* The address was of the form "(stuff).(name).exit */ if (s[1] != '\0') { /* Looks like a real .exit one. */ conn->chosen_exit_name = tor_strdup(s+1); node = node_get_by_nickname(conn->chosen_exit_name, 1); if (exit_source == ADDRMAPSRC_TRACKEXIT) { /* We 5 tries before it expires the addressmap */ conn->chosen_exit_retries = TRACKHOSTEXITS_RETRIES; } *s = 0; } else { /* Oops, the address was (stuff)..exit. That's not okay. */ log_warn(LD_APP,"Malformed exit address '%s.exit'. Refusing.", safe_str_client(socks->address)); control_event_client_status(LOG_WARN, "SOCKS_BAD_HOSTNAME HOSTNAME=%s", escaped(socks->address)); connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL); return -1; } } else { /* It looks like they just asked for "foo.exit". That's a special * form that means (foo's address).foo.exit. */ conn->chosen_exit_name = tor_strdup(socks->address); node = node_get_by_nickname(conn->chosen_exit_name, 1); if (node) { *socks->address = 0; node_get_address_string(node, socks->address, sizeof(socks->address)); } } /* Now make sure that the chosen exit exists... */ if (!node) { log_warn(LD_APP, "Unrecognized relay in exit address '%s.exit'. Refusing.", safe_str_client(socks->address)); connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL); return -1; } /* ...and make sure that it isn't excluded. */ if (routerset_contains_node(excludeset, node)) { log_warn(LD_APP, "Excluded relay in exit address '%s.exit'. Refusing.", safe_str_client(socks->address)); connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL); return -1; } /* XXXX024-1090 Should we also allow foo.bar.exit if ExitNodes is set and Bar is not listed in it? I say yes, but our revised manpage branch implies no. */ } /* Now, handle everything that isn't a .onion address. */ if (addresstype != ONION_HOSTNAME) { /* Not a hidden-service request. It's either a hostname or an IP, * possibly with a .exit that we stripped off. */ /* Check for funny characters in the address. */ if (address_is_invalid_destination(socks->address, 1)) { control_event_client_status(LOG_WARN, "SOCKS_BAD_HOSTNAME HOSTNAME=%s", escaped(socks->address)); log_warn(LD_APP, "Destination '%s' seems to be an invalid hostname. Failing.", safe_str_client(socks->address)); connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL); return -1; } #ifdef ENABLE_TOR2WEB_MODE /* If we're running in Tor2webMode, we don't allow anything BUT .onion * addresses. */ if (options->Tor2webMode) { log_warn(LD_APP, "Refusing to connect to non-hidden-service hostname %s " "because tor2web mode is enabled.", safe_str_client(socks->address)); connection_mark_unattached_ap(conn, END_STREAM_REASON_ENTRYPOLICY); return -1; } #endif /* See if this is a hostname lookup that we can answer immediately. * (For example, an attempt to look up the IP address for an IP address.) */ if (socks->command == SOCKS_COMMAND_RESOLVE) { tor_addr_t answer; /* Reply to resolves immediately if we can. */ if (tor_addr_parse(&answer, socks->address) >= 0) {/* is it an IP? */ /* remember _what_ is supposed to have been resolved. */ strlcpy(socks->address, rr.orig_address, sizeof(socks->address)); connection_ap_handshake_socks_resolved_addr(conn, &answer, -1, map_expires); connection_mark_unattached_ap(conn, END_STREAM_REASON_DONE | END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED); return 0; } tor_assert(!automap); rep_hist_note_used_resolve(now); /* help predict this next time */ } else if (socks->command == SOCKS_COMMAND_CONNECT) { /* Special handling for attempts to connect */ tor_assert(!automap); /* Don't allow connections to port 0. */ if (socks->port == 0) { log_notice(LD_APP,"Application asked to connect to port 0. Refusing."); connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL); return -1; } /* You can't make connections to internal addresses, by default. * Exceptions are begindir requests (where the address is meaningless, * or cases where you've hand-configured a particular exit, thereby * making the local address meaningful. */ if (options->ClientRejectInternalAddresses && !conn->use_begindir && !conn->chosen_exit_name && !circ) { /* If we reach this point then we don't want to allow internal * addresses. Check if we got one. */ tor_addr_t addr; if (tor_addr_hostname_is_local(socks->address) || (tor_addr_parse(&addr, socks->address) >= 0 && tor_addr_is_internal(&addr, 0))) { /* If this is an explicit private address with no chosen exit node, * then we really don't want to try to connect to it. That's * probably an error. */ if (conn->is_transparent_ap) { #define WARN_INTRVL_LOOP 300 static ratelim_t loop_warn_limit = RATELIM_INIT(WARN_INTRVL_LOOP); char *m; if ((m = rate_limit_log(&loop_warn_limit, approx_time()))) { log_warn(LD_NET, "Rejecting request for anonymous connection to private " "address %s on a TransPort or NATDPort. Possible loop " "in your NAT rules?%s", safe_str_client(socks->address), m); tor_free(m); } } else { #define WARN_INTRVL_PRIV 300 static ratelim_t priv_warn_limit = RATELIM_INIT(WARN_INTRVL_PRIV); char *m; if ((m = rate_limit_log(&priv_warn_limit, approx_time()))) { log_warn(LD_NET, "Rejecting SOCKS request for anonymous connection to " "private address %s.%s", safe_str_client(socks->address),m); tor_free(m); } } connection_mark_unattached_ap(conn, END_STREAM_REASON_PRIVATE_ADDR); return -1; } } /* end "if we should check for internal addresses" */ /* Okay. We're still doing a CONNECT, and it wasn't a private * address. Do special handling for literal IP addresses */ { tor_addr_t addr; /* XXX Duplicate call to tor_addr_parse. */ if (tor_addr_parse(&addr, socks->address) >= 0) { /* If we reach this point, it's an IPv4 or an IPv6 address. */ sa_family_t family = tor_addr_family(&addr); if ((family == AF_INET && ! conn->entry_cfg.ipv4_traffic) || (family == AF_INET6 && ! conn->entry_cfg.ipv6_traffic)) { /* You can't do an IPv4 address on a v6-only socks listener, * or vice versa. */ log_warn(LD_NET, "Rejecting SOCKS request for an IP address " "family that this listener does not support."); connection_mark_unattached_ap(conn, END_STREAM_REASON_ENTRYPOLICY); return -1; } else if (family == AF_INET6 && socks->socks_version == 4) { /* You can't make a socks4 request to an IPv6 address. Socks4 * doesn't support that. */ log_warn(LD_NET, "Rejecting SOCKS4 request for an IPv6 address."); connection_mark_unattached_ap(conn, END_STREAM_REASON_ENTRYPOLICY); return -1; } else if (socks->socks_version == 4 && !conn->entry_cfg.ipv4_traffic) { /* You can't do any kind of Socks4 request when IPv4 is forbidden. * * XXX raise this check outside the enclosing block? */ log_warn(LD_NET, "Rejecting SOCKS4 request on a listener with " "no IPv4 traffic supported."); connection_mark_unattached_ap(conn, END_STREAM_REASON_ENTRYPOLICY); return -1; } else if (family == AF_INET6) { /* Tell the exit: we won't accept any ipv4 connection to an IPv6 * address. */ conn->entry_cfg.ipv4_traffic = 0; } else if (family == AF_INET) { /* Tell the exit: we won't accept any ipv6 connection to an IPv4 * address. */ conn->entry_cfg.ipv6_traffic = 0; } } } if (socks->socks_version == 4) conn->entry_cfg.ipv6_traffic = 0; /* Still handling CONNECT. Now, check for exit enclaves. (Which we * don't do on BEGINDIR, or there is a chosen exit.) */ if (!conn->use_begindir && !conn->chosen_exit_name && !circ) { /* see if we can find a suitable enclave exit */ const node_t *r = router_find_exact_exit_enclave(socks->address, socks->port); if (r) { log_info(LD_APP, "Redirecting address %s to exit at enclave router %s", safe_str_client(socks->address), node_describe(r)); /* use the hex digest, not nickname, in case there are two routers with this nickname */ conn->chosen_exit_name = tor_strdup(hex_str(r->identity, DIGEST_LEN)); conn->chosen_exit_optional = 1; } } /* Still handling CONNECT: warn or reject if it's using a dangerous * port. */ if (!conn->use_begindir && !conn->chosen_exit_name && !circ) if (consider_plaintext_ports(conn, socks->port) < 0) return -1; /* Remember the port so that we do predicted requests there. */ if (!conn->use_begindir) { /* help predict this next time */ rep_hist_note_used_port(now, socks->port); } } else if (socks->command == SOCKS_COMMAND_RESOLVE_PTR) { rep_hist_note_used_resolve(now); /* help predict this next time */ /* no extra processing needed */ } else { /* We should only be doing CONNECT or RESOLVE! */ tor_fragile_assert(); } /* Okay. At this point we've set chosen_exit_name if needed, rewritten the * address, and decided not to reject it for any number of reasons. Now * mark the connection as waiting for a circuit, and try to attach it! */ base_conn->state = AP_CONN_STATE_CIRCUIT_WAIT; /* If we were given a circuit to attach to, try to attach. Otherwise, * try to find a good one and attach to that. */ int rv; if (circ) rv = connection_ap_handshake_attach_chosen_circuit(conn, circ, cpath); else rv = connection_ap_handshake_attach_circuit(conn); /* If the above function returned 0 then we're waiting for a circuit. * if it returned 1, we're attached. Both are okay. But if it returned * -1, there was an error, so make sure the connection is marked, and * return -1. */ if (rv < 0) { if (!base_conn->marked_for_close) connection_mark_unattached_ap(conn, END_STREAM_REASON_CANT_ATTACH); return -1; } return 0; } else { /* If we get here, it's a request for a .onion address! */ tor_assert(!automap); /* Check whether it's RESOLVE or RESOLVE_PTR. We don't handle those * for hidden service addresses. */ if (SOCKS_COMMAND_IS_RESOLVE(socks->command)) { /* if it's a resolve request, fail it right now, rather than * building all the circuits and then realizing it won't work. */ log_warn(LD_APP, "Resolve requests to hidden services not allowed. Failing."); connection_ap_handshake_socks_resolved(conn,RESOLVED_TYPE_ERROR, 0,NULL,-1,TIME_MAX); connection_mark_unattached_ap(conn, END_STREAM_REASON_SOCKSPROTOCOL | END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED); return -1; } /* If we were passed a circuit, then we need to fail. .onion addresses * only work when we launch our own circuits for now. */ if (circ) { log_warn(LD_CONTROL, "Attachstream to a circuit is not " "supported for .onion addresses currently. Failing."); connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL); return -1; } /* Look up if we have client authorization configured for this hidden * service. If we do, associate it with the rend_data. */ rend_service_authorization_t *client_auth = rend_client_lookup_service_authorization(socks->address); const char *cookie = NULL; rend_auth_type_t auth_type = REND_NO_AUTH; if (client_auth) { log_info(LD_REND, "Using previously configured client authorization " "for hidden service request."); auth_type = client_auth->auth_type; cookie = client_auth->descriptor_cookie; } /* Fill in the rend_data field so we can start doing a connection to * a hidden service. */ rend_data_t *rend_data = ENTRY_TO_EDGE_CONN(conn)->rend_data = rend_data_client_create(socks->address, NULL, cookie, auth_type); if (rend_data == NULL) { return -1; } log_info(LD_REND,"Got a hidden service request for ID '%s'", safe_str_client(rend_data->onion_address)); /* Lookup the given onion address. If invalid, stop right now else we * might have it in the cache or not, it will be tested later on. */ unsigned int refetch_desc = 0; rend_cache_entry_t *entry = NULL; const int rend_cache_lookup_result = rend_cache_lookup_entry(rend_data->onion_address, -1, &entry); if (rend_cache_lookup_result < 0) { switch (-rend_cache_lookup_result) { case EINVAL: /* We should already have rejected this address! */ log_warn(LD_BUG,"Invalid service name '%s'", safe_str_client(rend_data->onion_address)); connection_mark_unattached_ap(conn, END_STREAM_REASON_TORPROTOCOL); return -1; case ENOENT: refetch_desc = 1; break; default: log_warn(LD_BUG, "Unknown cache lookup error %d", rend_cache_lookup_result); return -1; } } /* Help predict this next time. We're not sure if it will need * a stable circuit yet, but we know we'll need *something*. */ rep_hist_note_used_internal(now, 0, 1); /* Now we have a descriptor but is it usable or not? If not, refetch. * Also, a fetch could have been requested if the onion address was not * found in the cache previously. */ if (refetch_desc || !rend_client_any_intro_points_usable(entry)) { base_conn->state = AP_CONN_STATE_RENDDESC_WAIT; log_info(LD_REND, "Unknown descriptor %s. Fetching.", safe_str_client(rend_data->onion_address)); rend_client_refetch_v2_renddesc(rend_data); return 0; } /* We have the descriptor so launch a connection to the HS. */ base_conn->state = AP_CONN_STATE_CIRCUIT_WAIT; log_info(LD_REND, "Descriptor is here. Great."); if (connection_ap_handshake_attach_circuit(conn) < 0) { if (!base_conn->marked_for_close) connection_mark_unattached_ap(conn, END_STREAM_REASON_CANT_ATTACH); return -1; } return 0; } return 0; /* unreached but keeps the compiler happy */ } #ifdef TRANS_PF static int pf_socket = -1; int get_pf_socket(void) { int pf; /* This should be opened before dropping privileges. */ if (pf_socket >= 0) return pf_socket; #ifdef OPENBSD /* only works on OpenBSD */ pf = tor_open_cloexec("/dev/pf", O_RDONLY, 0); #else /* works on NetBSD and FreeBSD */ pf = tor_open_cloexec("/dev/pf", O_RDWR, 0); #endif if (pf < 0) { log_warn(LD_NET, "open(\"/dev/pf\") failed: %s", strerror(errno)); return -1; } pf_socket = pf; return pf_socket; } #endif #if defined(TRANS_NETFILTER) || defined(TRANS_PF) || defined(TRANS_TPROXY) /** Try fill in the address of req from the socket configured * with conn. */ static int destination_from_socket(entry_connection_t *conn, socks_request_t *req) { struct sockaddr_storage orig_dst; socklen_t orig_dst_len = sizeof(orig_dst); tor_addr_t addr; #ifdef TRANS_TRPOXY if (options->TransProxyType_parsed == TPT_TPROXY) { if (getsockname(ENTRY_TO_CONN(conn)->s, (struct sockaddr*)&orig_dst, &orig_dst_len) < 0) { int e = tor_socket_errno(ENTRY_TO_CONN(conn)->s); log_warn(LD_NET, "getsockname() failed: %s", tor_socket_strerror(e)); return -1; } goto done; } #endif #ifdef TRANS_NETFILTER int rv = -1; switch (ENTRY_TO_CONN(conn)->socket_family) { #ifdef TRANS_NETFILTER_IPV4 case AF_INET: rv = getsockopt(ENTRY_TO_CONN(conn)->s, SOL_IP, SO_ORIGINAL_DST, (struct sockaddr*)&orig_dst, &orig_dst_len); break; #endif #ifdef TRANS_NETFILTER_IPV6 case AF_INET6: rv = getsockopt(ENTRY_TO_CONN(conn)->s, SOL_IPV6, IP6T_SO_ORIGINAL_DST, (struct sockaddr*)&orig_dst, &orig_dst_len); break; #endif default: log_warn(LD_BUG, "Received transparent data from an unsuported socket family %d", ENTRY_TO_CONN(conn)->socket_family); return -1; } if (rv < 0) { int e = tor_socket_errno(ENTRY_TO_CONN(conn)->s); log_warn(LD_NET, "getsockopt() failed: %s", tor_socket_strerror(e)); return -1; } goto done; #elif defined(TRANS_PF) if (getsockname(ENTRY_TO_CONN(conn)->s, (struct sockaddr*)&orig_dst, &orig_dst_len) < 0) { int e = tor_socket_errno(ENTRY_TO_CONN(conn)->s); log_warn(LD_NET, "getsockname() failed: %s", tor_socket_strerror(e)); return -1; } goto done; #else (void)conn; (void)req; log_warn(LD_BUG, "Unable to determine destination from socket."); return -1; #endif done: tor_addr_from_sockaddr(&addr, (struct sockaddr*)&orig_dst, &req->port); tor_addr_to_str(req->address, &addr, sizeof(req->address), 1); return 0; } #endif #ifdef TRANS_PF static int destination_from_pf(entry_connection_t *conn, socks_request_t *req) { struct sockaddr_storage proxy_addr; socklen_t proxy_addr_len = sizeof(proxy_addr); struct sockaddr *proxy_sa = (struct sockaddr*) &proxy_addr; struct pfioc_natlook pnl; tor_addr_t addr; int pf = -1; if (getsockname(ENTRY_TO_CONN(conn)->s, (struct sockaddr*)&proxy_addr, &proxy_addr_len) < 0) { int e = tor_socket_errno(ENTRY_TO_CONN(conn)->s); log_warn(LD_NET, "getsockname() to determine transocks destination " "failed: %s", tor_socket_strerror(e)); return -1; } #ifdef __FreeBSD__ if (get_options()->TransProxyType_parsed == TPT_IPFW) { /* ipfw(8) is used and in this case getsockname returned the original destination */ if (tor_addr_from_sockaddr(&addr, proxy_sa, &req->port) < 0) { tor_fragile_assert(); return -1; } tor_addr_to_str(req->address, &addr, sizeof(req->address), 0); return 0; } #endif memset(&pnl, 0, sizeof(pnl)); pnl.proto = IPPROTO_TCP; pnl.direction = PF_OUT; if (proxy_sa->sa_family == AF_INET) { struct sockaddr_in *sin = (struct sockaddr_in *)proxy_sa; pnl.af = AF_INET; pnl.saddr.v4.s_addr = tor_addr_to_ipv4n(&ENTRY_TO_CONN(conn)->addr); pnl.sport = htons(ENTRY_TO_CONN(conn)->port); pnl.daddr.v4.s_addr = sin->sin_addr.s_addr; pnl.dport = sin->sin_port; } else if (proxy_sa->sa_family == AF_INET6) { struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)proxy_sa; pnl.af = AF_INET6; memcpy(&pnl.saddr.v6, tor_addr_to_in6(&ENTRY_TO_CONN(conn)->addr), sizeof(struct in6_addr)); pnl.sport = htons(ENTRY_TO_CONN(conn)->port); memcpy(&pnl.daddr.v6, &sin6->sin6_addr, sizeof(struct in6_addr)); pnl.dport = sin6->sin6_port; } else { log_warn(LD_NET, "getsockname() gave an unexpected address family (%d)", (int)proxy_sa->sa_family); return -1; } pf = get_pf_socket(); if (pf<0) return -1; if (ioctl(pf, DIOCNATLOOK, &pnl) < 0) { log_warn(LD_NET, "ioctl(DIOCNATLOOK) failed: %s", strerror(errno)); return -1; } if (pnl.af == AF_INET) { tor_addr_from_ipv4n(&addr, pnl.rdaddr.v4.s_addr); } else if (pnl.af == AF_INET6) { tor_addr_from_in6(&addr, &pnl.rdaddr.v6); } else { tor_fragile_assert(); return -1; } tor_addr_to_str(req->address, &addr, sizeof(req->address), 1); req->port = ntohs(pnl.rdport); return 0; } #endif /** Fetch the original destination address and port from a * system-specific interface and put them into a * socks_request_t as if they came from a socks request. * * Return -1 if an error prevents fetching the destination, * else return 0. */ static int connection_ap_get_original_destination(entry_connection_t *conn, socks_request_t *req) { #ifdef TRANS_NETFILTER return destination_from_socket(conn, req); #elif defined(TRANS_PF) const or_options_t *options = get_options(); if (options->TransProxyType_parsed == TPT_PF_DIVERT) return destination_from_socket(conn, req); if (options->TransProxyType_parsed == TPT_DEFAULT || options->TransProxyType_parsed == TPT_IPFW) return destination_from_pf(conn, req); (void)conn; (void)req; log_warn(LD_BUG, "Proxy destination determination mechanism %s unknown.", options->TransProxyType); return -1; #else (void)conn; (void)req; log_warn(LD_BUG, "Called connection_ap_get_original_destination, but no " "transparent proxy method was configured."); return -1; #endif } /** connection_edge_process_inbuf() found a conn in state * socks_wait. See if conn->inbuf has the right bytes to proceed with * the socks handshake. * * If the handshake is complete, send it to * connection_ap_handshake_rewrite_and_attach(). * * Return -1 if an unexpected error with conn occurs (and mark it for close), * else return 0. */ static int connection_ap_handshake_process_socks(entry_connection_t *conn) { socks_request_t *socks; int sockshere; const or_options_t *options = get_options(); int had_reply = 0; connection_t *base_conn = ENTRY_TO_CONN(conn); tor_assert(conn); tor_assert(base_conn->type == CONN_TYPE_AP); tor_assert(base_conn->state == AP_CONN_STATE_SOCKS_WAIT); tor_assert(conn->socks_request); socks = conn->socks_request; log_debug(LD_APP,"entered."); IF_HAS_BUFFEREVENT(base_conn, { struct evbuffer *input = bufferevent_get_input(base_conn->bufev); sockshere = fetch_from_evbuffer_socks(input, socks, options->TestSocks, options->SafeSocks); }) ELSE_IF_NO_BUFFEREVENT { sockshere = fetch_from_buf_socks(base_conn->inbuf, socks, options->TestSocks, options->SafeSocks); }; if (socks->replylen) { had_reply = 1; connection_write_to_buf((const char*)socks->reply, socks->replylen, base_conn); socks->replylen = 0; if (sockshere == -1) { /* An invalid request just got a reply, no additional * one is necessary. */ socks->has_finished = 1; } } if (sockshere == 0) { log_debug(LD_APP,"socks handshake not all here yet."); return 0; } else if (sockshere == -1) { if (!had_reply) { log_warn(LD_APP,"Fetching socks handshake failed. Closing."); connection_ap_handshake_socks_reply(conn, NULL, 0, END_STREAM_REASON_SOCKSPROTOCOL); } connection_mark_unattached_ap(conn, END_STREAM_REASON_SOCKSPROTOCOL | END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED); return -1; } /* else socks handshake is done, continue processing */ if (SOCKS_COMMAND_IS_CONNECT(socks->command)) control_event_stream_status(conn, STREAM_EVENT_NEW, 0); else control_event_stream_status(conn, STREAM_EVENT_NEW_RESOLVE, 0); return connection_ap_rewrite_and_attach_if_allowed(conn, NULL, NULL); } /** connection_init_accepted_conn() found a new trans AP conn. * Get the original destination and send it to * connection_ap_handshake_rewrite_and_attach(). * * Return -1 if an unexpected error with conn (and it should be marked * for close), else return 0. */ int connection_ap_process_transparent(entry_connection_t *conn) { socks_request_t *socks; tor_assert(conn); tor_assert(conn->socks_request); socks = conn->socks_request; /* pretend that a socks handshake completed so we don't try to * send a socks reply down a transparent conn */ socks->command = SOCKS_COMMAND_CONNECT; socks->has_finished = 1; log_debug(LD_APP,"entered."); if (connection_ap_get_original_destination(conn, socks) < 0) { log_warn(LD_APP,"Fetching original destination failed. Closing."); connection_mark_unattached_ap(conn, END_STREAM_REASON_CANT_FETCH_ORIG_DEST); return -1; } /* we have the original destination */ control_event_stream_status(conn, STREAM_EVENT_NEW, 0); return connection_ap_rewrite_and_attach_if_allowed(conn, NULL, NULL); } /** connection_edge_process_inbuf() found a conn in state natd_wait. See if * conn-\>inbuf has the right bytes to proceed. See FreeBSD's libalias(3) and * ProxyEncodeTcpStream() in src/lib/libalias/alias_proxy.c for the encoding * form of the original destination. * * If the original destination is complete, send it to * connection_ap_handshake_rewrite_and_attach(). * * Return -1 if an unexpected error with conn (and it should be marked * for close), else return 0. */ static int connection_ap_process_natd(entry_connection_t *conn) { char tmp_buf[36], *tbuf, *daddr; size_t tlen = 30; int err, port_ok; socks_request_t *socks; tor_assert(conn); tor_assert(ENTRY_TO_CONN(conn)->state == AP_CONN_STATE_NATD_WAIT); tor_assert(conn->socks_request); socks = conn->socks_request; log_debug(LD_APP,"entered."); /* look for LF-terminated "[DEST ip_addr port]" * where ip_addr is a dotted-quad and port is in string form */ err = connection_fetch_from_buf_line(ENTRY_TO_CONN(conn), tmp_buf, &tlen); if (err == 0) return 0; if (err < 0) { log_warn(LD_APP,"NATD handshake failed (DEST too long). Closing"); connection_mark_unattached_ap(conn, END_STREAM_REASON_INVALID_NATD_DEST); return -1; } if (strcmpstart(tmp_buf, "[DEST ")) { log_warn(LD_APP,"NATD handshake was ill-formed; closing. The client " "said: %s", escaped(tmp_buf)); connection_mark_unattached_ap(conn, END_STREAM_REASON_INVALID_NATD_DEST); return -1; } daddr = tbuf = &tmp_buf[0] + 6; /* after end of "[DEST " */ if (!(tbuf = strchr(tbuf, ' '))) { log_warn(LD_APP,"NATD handshake was ill-formed; closing. The client " "said: %s", escaped(tmp_buf)); connection_mark_unattached_ap(conn, END_STREAM_REASON_INVALID_NATD_DEST); return -1; } *tbuf++ = '\0'; /* pretend that a socks handshake completed so we don't try to * send a socks reply down a natd conn */ strlcpy(socks->address, daddr, sizeof(socks->address)); socks->port = (uint16_t) tor_parse_long(tbuf, 10, 1, 65535, &port_ok, &daddr); if (!port_ok) { log_warn(LD_APP,"NATD handshake failed; port %s is ill-formed or out " "of range.", escaped(tbuf)); connection_mark_unattached_ap(conn, END_STREAM_REASON_INVALID_NATD_DEST); return -1; } socks->command = SOCKS_COMMAND_CONNECT; socks->has_finished = 1; control_event_stream_status(conn, STREAM_EVENT_NEW, 0); ENTRY_TO_CONN(conn)->state = AP_CONN_STATE_CIRCUIT_WAIT; return connection_ap_rewrite_and_attach_if_allowed(conn, NULL, NULL); } /** Iterate over the two bytes of stream_id until we get one that is not * already in use; return it. Return 0 if can't get a unique stream_id. */ streamid_t get_unique_stream_id_by_circ(origin_circuit_t *circ) { edge_connection_t *tmpconn; streamid_t test_stream_id; uint32_t attempts=0; again: test_stream_id = circ->next_stream_id++; if (++attempts > 1<<16) { /* Make sure we don't loop forever if all stream_id's are used. */ log_warn(LD_APP,"No unused stream IDs. Failing."); return 0; } if (test_stream_id == 0) goto again; for (tmpconn = circ->p_streams; tmpconn; tmpconn=tmpconn->next_stream) if (tmpconn->stream_id == test_stream_id) goto again; return test_stream_id; } /** Return true iff conn is linked to a circuit and configured to use * an exit that supports optimistic data. */ static int connection_ap_supports_optimistic_data(const entry_connection_t *conn) { const edge_connection_t *edge_conn = ENTRY_TO_EDGE_CONN(conn); /* We can only send optimistic data if we're connected to an open general circuit. */ if (edge_conn->on_circuit == NULL || edge_conn->on_circuit->state != CIRCUIT_STATE_OPEN || (edge_conn->on_circuit->purpose != CIRCUIT_PURPOSE_C_GENERAL && edge_conn->on_circuit->purpose != CIRCUIT_PURPOSE_C_REND_JOINED)) return 0; return conn->may_use_optimistic_data; } /** Return a bitmask of BEGIN_FLAG_* flags that we should transmit in the * RELAY_BEGIN cell for ap_conn. */ static uint32_t connection_ap_get_begincell_flags(entry_connection_t *ap_conn) { edge_connection_t *edge_conn = ENTRY_TO_EDGE_CONN(ap_conn); const node_t *exitnode = NULL; const crypt_path_t *cpath_layer = edge_conn->cpath_layer; uint32_t flags = 0; /* No flags for begindir */ if (ap_conn->use_begindir) return 0; /* No flags for hidden services. */ if (edge_conn->on_circuit->purpose != CIRCUIT_PURPOSE_C_GENERAL) return 0; /* If only IPv4 is supported, no flags */ if (ap_conn->entry_cfg.ipv4_traffic && !ap_conn->entry_cfg.ipv6_traffic) return 0; if (! cpath_layer || ! cpath_layer->extend_info) return 0; if (!ap_conn->entry_cfg.ipv4_traffic) flags |= BEGIN_FLAG_IPV4_NOT_OK; exitnode = node_get_by_id(cpath_layer->extend_info->identity_digest); if (ap_conn->entry_cfg.ipv6_traffic && exitnode) { tor_addr_t a; tor_addr_make_null(&a, AF_INET6); if (compare_tor_addr_to_node_policy(&a, ap_conn->socks_request->port, exitnode) != ADDR_POLICY_REJECTED) { /* Only say "IPv6 OK" if the exit node supports IPv6. Otherwise there's * no point. */ flags |= BEGIN_FLAG_IPV6_OK; } } if (flags == BEGIN_FLAG_IPV6_OK) { /* When IPv4 and IPv6 are both allowed, consider whether to say we * prefer IPv6. Otherwise there's no point in declaring a preference */ if (ap_conn->entry_cfg.prefer_ipv6) flags |= BEGIN_FLAG_IPV6_PREFERRED; } if (flags == BEGIN_FLAG_IPV4_NOT_OK) { log_warn(LD_EDGE, "I'm about to ask a node for a connection that I " "am telling it to fulfil with neither IPv4 nor IPv6. That's " "not going to work. Did you perhaps ask for an IPv6 address " "on an IPv4Only port, or vice versa?"); } return flags; } /** Write a relay begin cell, using destaddr and destport from ap_conn's * socks_request field, and send it down circ. * * If ap_conn is broken, mark it for close and return -1. Else return 0. */ int connection_ap_handshake_send_begin(entry_connection_t *ap_conn) { char payload[CELL_PAYLOAD_SIZE]; int payload_len; int begin_type; origin_circuit_t *circ; edge_connection_t *edge_conn = ENTRY_TO_EDGE_CONN(ap_conn); connection_t *base_conn = TO_CONN(edge_conn); tor_assert(edge_conn->on_circuit); circ = TO_ORIGIN_CIRCUIT(edge_conn->on_circuit); tor_assert(base_conn->type == CONN_TYPE_AP); tor_assert(base_conn->state == AP_CONN_STATE_CIRCUIT_WAIT); tor_assert(ap_conn->socks_request); tor_assert(SOCKS_COMMAND_IS_CONNECT(ap_conn->socks_request->command)); edge_conn->stream_id = get_unique_stream_id_by_circ(circ); if (edge_conn->stream_id==0) { /* XXXX024 Instead of closing this stream, we should make it get * retried on another circuit. */ connection_mark_unattached_ap(ap_conn, END_STREAM_REASON_INTERNAL); /* Mark this circuit "unusable for new streams". */ mark_circuit_unusable_for_new_conns(circ); return -1; } /* Set up begin cell flags. */ edge_conn->begincell_flags = connection_ap_get_begincell_flags(ap_conn); tor_snprintf(payload,RELAY_PAYLOAD_SIZE, "%s:%d", (circ->base_.purpose == CIRCUIT_PURPOSE_C_GENERAL) ? ap_conn->socks_request->address : "", ap_conn->socks_request->port); payload_len = (int)strlen(payload)+1; if (payload_len <= RELAY_PAYLOAD_SIZE - 4 && edge_conn->begincell_flags) { set_uint32(payload + payload_len, htonl(edge_conn->begincell_flags)); payload_len += 4; } log_info(LD_APP, "Sending relay cell %d on circ %u to begin stream %d.", (int)ap_conn->use_begindir, (unsigned)circ->base_.n_circ_id, edge_conn->stream_id); begin_type = ap_conn->use_begindir ? RELAY_COMMAND_BEGIN_DIR : RELAY_COMMAND_BEGIN; if (begin_type == RELAY_COMMAND_BEGIN) { #ifndef NON_ANONYMOUS_MODE_ENABLED tor_assert(circ->build_state->onehop_tunnel == 0); #endif } if (connection_edge_send_command(edge_conn, begin_type, begin_type == RELAY_COMMAND_BEGIN ? payload : NULL, begin_type == RELAY_COMMAND_BEGIN ? payload_len : 0) < 0) return -1; /* circuit is closed, don't continue */ edge_conn->package_window = STREAMWINDOW_START; edge_conn->deliver_window = STREAMWINDOW_START; base_conn->state = AP_CONN_STATE_CONNECT_WAIT; log_info(LD_APP,"Address/port sent, ap socket "TOR_SOCKET_T_FORMAT ", n_circ_id %u", base_conn->s, (unsigned)circ->base_.n_circ_id); control_event_stream_status(ap_conn, STREAM_EVENT_SENT_CONNECT, 0); /* If there's queued-up data, send it now */ if ((connection_get_inbuf_len(base_conn) || ap_conn->sending_optimistic_data) && connection_ap_supports_optimistic_data(ap_conn)) { log_info(LD_APP, "Sending up to %ld + %ld bytes of queued-up data", (long)connection_get_inbuf_len(base_conn), ap_conn->sending_optimistic_data ? (long)generic_buffer_len(ap_conn->sending_optimistic_data) : 0); if (connection_edge_package_raw_inbuf(edge_conn, 1, NULL) < 0) { connection_mark_for_close(base_conn); } } return 0; } /** Write a relay resolve cell, using destaddr and destport from ap_conn's * socks_request field, and send it down circ. * * If ap_conn is broken, mark it for close and return -1. Else return 0. */ int connection_ap_handshake_send_resolve(entry_connection_t *ap_conn) { int payload_len, command; const char *string_addr; char inaddr_buf[REVERSE_LOOKUP_NAME_BUF_LEN]; origin_circuit_t *circ; edge_connection_t *edge_conn = ENTRY_TO_EDGE_CONN(ap_conn); connection_t *base_conn = TO_CONN(edge_conn); tor_assert(edge_conn->on_circuit); circ = TO_ORIGIN_CIRCUIT(edge_conn->on_circuit); tor_assert(base_conn->type == CONN_TYPE_AP); tor_assert(base_conn->state == AP_CONN_STATE_CIRCUIT_WAIT); tor_assert(ap_conn->socks_request); tor_assert(circ->base_.purpose == CIRCUIT_PURPOSE_C_GENERAL); command = ap_conn->socks_request->command; tor_assert(SOCKS_COMMAND_IS_RESOLVE(command)); edge_conn->stream_id = get_unique_stream_id_by_circ(circ); if (edge_conn->stream_id==0) { /* XXXX024 Instead of closing this stream, we should make it get * retried on another circuit. */ connection_mark_unattached_ap(ap_conn, END_STREAM_REASON_INTERNAL); /* Mark this circuit "unusable for new streams". */ mark_circuit_unusable_for_new_conns(circ); return -1; } if (command == SOCKS_COMMAND_RESOLVE) { string_addr = ap_conn->socks_request->address; payload_len = (int)strlen(string_addr)+1; } else { /* command == SOCKS_COMMAND_RESOLVE_PTR */ const char *a = ap_conn->socks_request->address; tor_addr_t addr; int r; /* We're doing a reverse lookup. The input could be an IP address, or * could be an .in-addr.arpa or .ip6.arpa address */ r = tor_addr_parse_PTR_name(&addr, a, AF_UNSPEC, 1); if (r <= 0) { log_warn(LD_APP, "Rejecting ill-formed reverse lookup of %s", safe_str_client(a)); connection_mark_unattached_ap(ap_conn, END_STREAM_REASON_INTERNAL); return -1; } r = tor_addr_to_PTR_name(inaddr_buf, sizeof(inaddr_buf), &addr); if (r < 0) { log_warn(LD_BUG, "Couldn't generate reverse lookup hostname of %s", safe_str_client(a)); connection_mark_unattached_ap(ap_conn, END_STREAM_REASON_INTERNAL); return -1; } string_addr = inaddr_buf; payload_len = (int)strlen(inaddr_buf)+1; tor_assert(payload_len <= (int)sizeof(inaddr_buf)); } log_debug(LD_APP, "Sending relay cell to begin stream %d.", edge_conn->stream_id); if (connection_edge_send_command(edge_conn, RELAY_COMMAND_RESOLVE, string_addr, payload_len) < 0) return -1; /* circuit is closed, don't continue */ if (!base_conn->address) { /* This might be unnecessary. XXXX */ base_conn->address = tor_dup_addr(&base_conn->addr); } base_conn->state = AP_CONN_STATE_RESOLVE_WAIT; log_info(LD_APP,"Address sent for resolve, ap socket "TOR_SOCKET_T_FORMAT ", n_circ_id %u", base_conn->s, (unsigned)circ->base_.n_circ_id); control_event_stream_status(ap_conn, STREAM_EVENT_SENT_RESOLVE, 0); return 0; } /** Make an AP connection_t linked to the connection_t partner. make a * new linked connection pair, and attach one side to the conn, connection_add * it, initialize it to circuit_wait, and call * connection_ap_handshake_attach_circuit(conn) on it. * * Return the newly created end of the linked connection pair, or -1 if error. */ entry_connection_t * connection_ap_make_link(connection_t *partner, char *address, uint16_t port, const char *digest, int session_group, int isolation_flags, int use_begindir, int want_onehop) { entry_connection_t *conn; connection_t *base_conn; log_info(LD_APP,"Making internal %s tunnel to %s:%d ...", want_onehop ? "direct" : "anonymized", safe_str_client(address), port); conn = entry_connection_new(CONN_TYPE_AP, tor_addr_family(&partner->addr)); base_conn = ENTRY_TO_CONN(conn); base_conn->linked = 1; /* so that we can add it safely below. */ /* populate conn->socks_request */ /* leave version at zero, so the socks_reply is empty */ conn->socks_request->socks_version = 0; conn->socks_request->has_finished = 0; /* waiting for 'connected' */ strlcpy(conn->socks_request->address, address, sizeof(conn->socks_request->address)); conn->socks_request->port = port; conn->socks_request->command = SOCKS_COMMAND_CONNECT; conn->want_onehop = want_onehop; conn->use_begindir = use_begindir; if (use_begindir) { conn->chosen_exit_name = tor_malloc(HEX_DIGEST_LEN+2); conn->chosen_exit_name[0] = '$'; tor_assert(digest); base16_encode(conn->chosen_exit_name+1,HEX_DIGEST_LEN+1, digest, DIGEST_LEN); } /* Populate isolation fields. */ conn->socks_request->listener_type = CONN_TYPE_DIR_LISTENER; conn->original_dest_address = tor_strdup(address); conn->entry_cfg.session_group = session_group; conn->entry_cfg.isolation_flags = isolation_flags; base_conn->address = tor_strdup("(Tor_internal)"); tor_addr_make_unspec(&base_conn->addr); base_conn->port = 0; connection_link_connections(partner, base_conn); if (connection_add(base_conn) < 0) { /* no space, forget it */ connection_free(base_conn); return NULL; } base_conn->state = AP_CONN_STATE_CIRCUIT_WAIT; control_event_stream_status(conn, STREAM_EVENT_NEW, 0); /* attaching to a dirty circuit is fine */ if (connection_ap_handshake_attach_circuit(conn) < 0) { if (!base_conn->marked_for_close) connection_mark_unattached_ap(conn, END_STREAM_REASON_CANT_ATTACH); return NULL; } log_info(LD_APP,"... application connection created and linked."); return conn; } /** Notify any interested controller connections about a new hostname resolve * or resolve error. Takes the same arguments as does * connection_ap_handshake_socks_resolved(). */ static void tell_controller_about_resolved_result(entry_connection_t *conn, int answer_type, size_t answer_len, const char *answer, int ttl, time_t expires) { expires = time(NULL) + ttl; if (answer_type == RESOLVED_TYPE_IPV4 && answer_len >= 4) { char *cp = tor_dup_ip(ntohl(get_uint32(answer))); control_event_address_mapped(conn->socks_request->address, cp, expires, NULL, 0); tor_free(cp); } else if (answer_type == RESOLVED_TYPE_HOSTNAME && answer_len < 256) { char *cp = tor_strndup(answer, answer_len); control_event_address_mapped(conn->socks_request->address, cp, expires, NULL, 0); tor_free(cp); } else { control_event_address_mapped(conn->socks_request->address, "", time(NULL)+ttl, "error=yes", 0); } } /** * As connection_ap_handshake_socks_resolved, but take a tor_addr_t to send * as the answer. */ void connection_ap_handshake_socks_resolved_addr(entry_connection_t *conn, const tor_addr_t *answer, int ttl, time_t expires) { if (tor_addr_family(answer) == AF_INET) { uint32_t a = tor_addr_to_ipv4n(answer); /* network order */ connection_ap_handshake_socks_resolved(conn,RESOLVED_TYPE_IPV4,4, (uint8_t*)&a, ttl, expires); } else if (tor_addr_family(answer) == AF_INET6) { const uint8_t *a = tor_addr_to_in6_addr8(answer); connection_ap_handshake_socks_resolved(conn,RESOLVED_TYPE_IPV6,16, a, ttl, expires); } else { log_warn(LD_BUG, "Got called with address of unexpected family %d", tor_addr_family(answer)); connection_ap_handshake_socks_resolved(conn, RESOLVED_TYPE_ERROR,0,NULL,-1,-1); } } /** Send an answer to an AP connection that has requested a DNS lookup via * SOCKS. The type should be one of RESOLVED_TYPE_(IPV4|IPV6|HOSTNAME) or -1 * for unreachable; the answer should be in the format specified in the socks * extensions document. ttl is the ttl for the answer, or -1 on * certain errors or for values that didn't come via DNS. expires is * a time when the answer expires, or -1 or TIME_MAX if there's a good TTL. **/ /* XXXX the use of the ttl and expires fields is nutty. Let's make this * interface and those that use it less ugly. */ MOCK_IMPL(void, connection_ap_handshake_socks_resolved,(entry_connection_t *conn, int answer_type, size_t answer_len, const uint8_t *answer, int ttl, time_t expires)) { char buf[384]; size_t replylen; if (ttl >= 0) { if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4) { tor_addr_t a; tor_addr_from_ipv4n(&a, get_uint32(answer)); if (! tor_addr_is_null(&a)) { client_dns_set_addressmap(conn, conn->socks_request->address, &a, conn->chosen_exit_name, ttl); } } else if (answer_type == RESOLVED_TYPE_IPV6 && answer_len == 16) { tor_addr_t a; tor_addr_from_ipv6_bytes(&a, (char*)answer); if (! tor_addr_is_null(&a)) { client_dns_set_addressmap(conn, conn->socks_request->address, &a, conn->chosen_exit_name, ttl); } } else if (answer_type == RESOLVED_TYPE_HOSTNAME && answer_len < 256) { char *cp = tor_strndup((char*)answer, answer_len); client_dns_set_reverse_addressmap(conn, conn->socks_request->address, cp, conn->chosen_exit_name, ttl); tor_free(cp); } } if (ENTRY_TO_EDGE_CONN(conn)->is_dns_request) { if (conn->dns_server_request) { /* We had a request on our DNS port: answer it. */ dnsserv_resolved(conn, answer_type, answer_len, (char*)answer, ttl); conn->socks_request->has_finished = 1; return; } else { /* This must be a request from the controller. Since answers to those * requests are not cached, they do not generate an ADDRMAP event on * their own. */ tell_controller_about_resolved_result(conn, answer_type, answer_len, (char*)answer, ttl, expires); conn->socks_request->has_finished = 1; return; } /* We shouldn't need to free conn here; it gets marked by the caller. */ } if (conn->socks_request->socks_version == 4) { buf[0] = 0x00; /* version */ if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4) { buf[1] = SOCKS4_GRANTED; set_uint16(buf+2, 0); memcpy(buf+4, answer, 4); /* address */ replylen = SOCKS4_NETWORK_LEN; } else { /* "error" */ buf[1] = SOCKS4_REJECT; memset(buf+2, 0, 6); replylen = SOCKS4_NETWORK_LEN; } } else if (conn->socks_request->socks_version == 5) { /* SOCKS5 */ buf[0] = 0x05; /* version */ if (answer_type == RESOLVED_TYPE_IPV4 && answer_len == 4) { buf[1] = SOCKS5_SUCCEEDED; buf[2] = 0; /* reserved */ buf[3] = 0x01; /* IPv4 address type */ memcpy(buf+4, answer, 4); /* address */ set_uint16(buf+8, 0); /* port == 0. */ replylen = 10; } else if (answer_type == RESOLVED_TYPE_IPV6 && answer_len == 16) { buf[1] = SOCKS5_SUCCEEDED; buf[2] = 0; /* reserved */ buf[3] = 0x04; /* IPv6 address type */ memcpy(buf+4, answer, 16); /* address */ set_uint16(buf+20, 0); /* port == 0. */ replylen = 22; } else if (answer_type == RESOLVED_TYPE_HOSTNAME && answer_len < 256) { buf[1] = SOCKS5_SUCCEEDED; buf[2] = 0; /* reserved */ buf[3] = 0x03; /* Domainname address type */ buf[4] = (char)answer_len; memcpy(buf+5, answer, answer_len); /* address */ set_uint16(buf+5+answer_len, 0); /* port == 0. */ replylen = 5+answer_len+2; } else { buf[1] = SOCKS5_HOST_UNREACHABLE; memset(buf+2, 0, 8); replylen = 10; } } else { /* no socks version info; don't send anything back */ return; } connection_ap_handshake_socks_reply(conn, buf, replylen, (answer_type == RESOLVED_TYPE_IPV4 || answer_type == RESOLVED_TYPE_IPV6 || answer_type == RESOLVED_TYPE_HOSTNAME) ? 0 : END_STREAM_REASON_RESOLVEFAILED); } /** Send a socks reply to stream conn, using the appropriate * socks version, etc, and mark conn as completed with SOCKS * handshaking. * * If reply is defined, then write replylen bytes of it to conn * and return, else reply based on endreason (one of * END_STREAM_REASON_*). If reply is undefined, endreason can't * be 0 or REASON_DONE. Send endreason to the controller, if appropriate. */ void connection_ap_handshake_socks_reply(entry_connection_t *conn, char *reply, size_t replylen, int endreason) { char buf[256]; socks5_reply_status_t status = stream_end_reason_to_socks5_response(endreason); tor_assert(conn->socks_request); /* make sure it's an AP stream */ if (!SOCKS_COMMAND_IS_RESOLVE(conn->socks_request->command)) { control_event_stream_status(conn, status==SOCKS5_SUCCEEDED ? STREAM_EVENT_SUCCEEDED : STREAM_EVENT_FAILED, endreason); } /* Flag this stream's circuit as having completed a stream successfully * (for path bias) */ if (status == SOCKS5_SUCCEEDED || endreason == END_STREAM_REASON_RESOLVEFAILED || endreason == END_STREAM_REASON_CONNECTREFUSED || endreason == END_STREAM_REASON_CONNRESET || endreason == END_STREAM_REASON_NOROUTE || endreason == END_STREAM_REASON_RESOURCELIMIT) { if (!conn->edge_.on_circuit || !CIRCUIT_IS_ORIGIN(conn->edge_.on_circuit)) { if (endreason != END_STREAM_REASON_RESOLVEFAILED) { log_info(LD_BUG, "No origin circuit for successful SOCKS stream "U64_FORMAT ". Reason: %d", U64_PRINTF_ARG(ENTRY_TO_CONN(conn)->global_identifier), endreason); } /* * Else DNS remaps and failed hidden service lookups can send us * here with END_STREAM_REASON_RESOLVEFAILED; ignore it * * Perhaps we could make the test more precise; we can tell hidden * services by conn->edge_.renddata != NULL; anything analogous for * the DNS remap case? */ } else { // XXX: Hrmm. It looks like optimistic data can't go through this // codepath, but someone should probably test it and make sure. // We don't want to mark optimistically opened streams as successful. pathbias_mark_use_success(TO_ORIGIN_CIRCUIT(conn->edge_.on_circuit)); } } if (conn->socks_request->has_finished) { log_warn(LD_BUG, "(Harmless.) duplicate calls to " "connection_ap_handshake_socks_reply."); return; } if (replylen) { /* we already have a reply in mind */ connection_write_to_buf(reply, replylen, ENTRY_TO_CONN(conn)); conn->socks_request->has_finished = 1; return; } if (conn->socks_request->socks_version == 4) { memset(buf,0,SOCKS4_NETWORK_LEN); buf[1] = (status==SOCKS5_SUCCEEDED ? SOCKS4_GRANTED : SOCKS4_REJECT); /* leave version, destport, destip zero */ connection_write_to_buf(buf, SOCKS4_NETWORK_LEN, ENTRY_TO_CONN(conn)); } else if (conn->socks_request->socks_version == 5) { size_t buf_len; memset(buf,0,sizeof(buf)); if (tor_addr_family(&conn->edge_.base_.addr) == AF_INET) { buf[0] = 5; /* version 5 */ buf[1] = (char)status; buf[2] = 0; buf[3] = 1; /* ipv4 addr */ /* 4 bytes for the header, 2 bytes for the port, 4 for the address. */ buf_len = 10; } else { /* AF_INET6. */ buf[0] = 5; /* version 5 */ buf[1] = (char)status; buf[2] = 0; buf[3] = 4; /* ipv6 addr */ /* 4 bytes for the header, 2 bytes for the port, 16 for the address. */ buf_len = 22; } connection_write_to_buf(buf,buf_len,ENTRY_TO_CONN(conn)); } /* If socks_version isn't 4 or 5, don't send anything. * This can happen in the case of AP bridges. */ conn->socks_request->has_finished = 1; return; } /** Read a RELAY_BEGIN or RELAY_BEGINDIR cell from cell, decode it, and * place the result in bcell. On success return 0; on failure return * <0 and set *end_reason_out to the end reason we should send back to * the client. * * Return -1 in the case where want to send a RELAY_END cell, and < -1 when * we don't. **/ STATIC int begin_cell_parse(const cell_t *cell, begin_cell_t *bcell, uint8_t *end_reason_out) { relay_header_t rh; const uint8_t *body, *nul; memset(bcell, 0, sizeof(*bcell)); *end_reason_out = END_STREAM_REASON_MISC; relay_header_unpack(&rh, cell->payload); if (rh.length > RELAY_PAYLOAD_SIZE) { return -2; /*XXXX why not TORPROTOCOL? */ } bcell->stream_id = rh.stream_id; if (rh.command == RELAY_COMMAND_BEGIN_DIR) { bcell->is_begindir = 1; return 0; } else if (rh.command != RELAY_COMMAND_BEGIN) { log_warn(LD_BUG, "Got an unexpected command %d", (int)rh.command); *end_reason_out = END_STREAM_REASON_INTERNAL; return -1; } body = cell->payload + RELAY_HEADER_SIZE; nul = memchr(body, 0, rh.length); if (! nul) { log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "Relay begin cell has no \\0. Closing."); *end_reason_out = END_STREAM_REASON_TORPROTOCOL; return -1; } if (tor_addr_port_split(LOG_PROTOCOL_WARN, (char*)(body), &bcell->address,&bcell->port)<0) { log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "Unable to parse addr:port in relay begin cell. Closing."); *end_reason_out = END_STREAM_REASON_TORPROTOCOL; return -1; } if (bcell->port == 0) { log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "Missing port in relay begin cell. Closing."); tor_free(bcell->address); *end_reason_out = END_STREAM_REASON_TORPROTOCOL; return -1; } if (body + rh.length >= nul + 4) bcell->flags = ntohl(get_uint32(nul+1)); return 0; } /** A relay 'begin' or 'begin_dir' cell has arrived, and either we are * an exit hop for the circuit, or we are the origin and it is a * rendezvous begin. * * Launch a new exit connection and initialize things appropriately. * * If it's a rendezvous stream, call connection_exit_connect() on * it. * * For general streams, call dns_resolve() on it first, and only call * connection_exit_connect() if the dns answer is already known. * * Note that we don't call connection_add() on the new stream! We wait * for connection_exit_connect() to do that. * * Return -(some circuit end reason) if we want to tear down circ. * Else return 0. */ int connection_exit_begin_conn(cell_t *cell, circuit_t *circ) { edge_connection_t *n_stream; relay_header_t rh; char *address = NULL; uint16_t port = 0; or_circuit_t *or_circ = NULL; const or_options_t *options = get_options(); begin_cell_t bcell; int r; uint8_t end_reason=0; assert_circuit_ok(circ); if (!CIRCUIT_IS_ORIGIN(circ)) or_circ = TO_OR_CIRCUIT(circ); relay_header_unpack(&rh, cell->payload); if (rh.length > RELAY_PAYLOAD_SIZE) return -END_CIRC_REASON_TORPROTOCOL; /* Note: we have to use relay_send_command_from_edge here, not * connection_edge_end or connection_edge_send_command, since those require * that we have a stream connected to a circuit, and we don't connect to a * circuit until we have a pending/successful resolve. */ if (!server_mode(options) && circ->purpose != CIRCUIT_PURPOSE_S_REND_JOINED) { log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "Relay begin cell at non-server. Closing."); relay_send_end_cell_from_edge(rh.stream_id, circ, END_STREAM_REASON_EXITPOLICY, NULL); return 0; } r = begin_cell_parse(cell, &bcell, &end_reason); if (r < -1) { return -END_CIRC_REASON_TORPROTOCOL; } else if (r == -1) { tor_free(bcell.address); relay_send_end_cell_from_edge(rh.stream_id, circ, end_reason, NULL); return 0; } if (! bcell.is_begindir) { /* Steal reference */ address = bcell.address; port = bcell.port; if (or_circ && or_circ->p_chan) { if (!options->AllowSingleHopExits && (or_circ->is_first_hop || (!connection_or_digest_is_known_relay( or_circ->p_chan->identity_digest) && should_refuse_unknown_exits(options)))) { /* Don't let clients use us as a single-hop proxy, unless the user * has explicitly allowed that in the config. It attracts attackers * and users who'd be better off with, well, single-hop proxies. */ log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "Attempt by %s to open a stream %s. Closing.", safe_str(channel_get_canonical_remote_descr(or_circ->p_chan)), or_circ->is_first_hop ? "on first hop of circuit" : "from unknown relay"); relay_send_end_cell_from_edge(rh.stream_id, circ, or_circ->is_first_hop ? END_STREAM_REASON_TORPROTOCOL : END_STREAM_REASON_MISC, NULL); tor_free(address); return 0; } } } else if (rh.command == RELAY_COMMAND_BEGIN_DIR) { if (!directory_permits_begindir_requests(options) || circ->purpose != CIRCUIT_PURPOSE_OR) { relay_send_end_cell_from_edge(rh.stream_id, circ, END_STREAM_REASON_NOTDIRECTORY, NULL); return 0; } /* Make sure to get the 'real' address of the previous hop: the * caller might want to know whether his IP address has changed, and * we might already have corrected base_.addr[ess] for the relay's * canonical IP address. */ if (or_circ && or_circ->p_chan) address = tor_strdup(channel_get_actual_remote_address(or_circ->p_chan)); else address = tor_strdup("127.0.0.1"); port = 1; /* XXXX This value is never actually used anywhere, and there * isn't "really" a connection here. But we * need to set it to something nonzero. */ } else { log_warn(LD_BUG, "Got an unexpected command %d", (int)rh.command); relay_send_end_cell_from_edge(rh.stream_id, circ, END_STREAM_REASON_INTERNAL, NULL); return 0; } if (! options->IPv6Exit) { /* I don't care if you prefer IPv6; I can't give you any. */ bcell.flags &= ~BEGIN_FLAG_IPV6_PREFERRED; /* If you don't want IPv4, I can't help. */ if (bcell.flags & BEGIN_FLAG_IPV4_NOT_OK) { tor_free(address); relay_send_end_cell_from_edge(rh.stream_id, circ, END_STREAM_REASON_EXITPOLICY, NULL); return 0; } } log_debug(LD_EXIT,"Creating new exit connection."); /* The 'AF_INET' here is temporary; we might need to change it later in * connection_exit_connect(). */ n_stream = edge_connection_new(CONN_TYPE_EXIT, AF_INET); /* Remember the tunneled request ID in the new edge connection, so that * we can measure download times. */ n_stream->dirreq_id = circ->dirreq_id; n_stream->base_.purpose = EXIT_PURPOSE_CONNECT; n_stream->begincell_flags = bcell.flags; n_stream->stream_id = rh.stream_id; n_stream->base_.port = port; /* leave n_stream->s at -1, because it's not yet valid */ n_stream->package_window = STREAMWINDOW_START; n_stream->deliver_window = STREAMWINDOW_START; if (circ->purpose == CIRCUIT_PURPOSE_S_REND_JOINED) { origin_circuit_t *origin_circ = TO_ORIGIN_CIRCUIT(circ); log_info(LD_REND,"begin is for rendezvous. configuring stream."); n_stream->base_.address = tor_strdup("(rendezvous)"); n_stream->base_.state = EXIT_CONN_STATE_CONNECTING; n_stream->rend_data = rend_data_dup(origin_circ->rend_data); tor_assert(connection_edge_is_rendezvous_stream(n_stream)); assert_circuit_ok(circ); const int r = rend_service_set_connection_addr_port(n_stream, origin_circ); if (r < 0) { log_info(LD_REND,"Didn't find rendezvous service (port %d)", n_stream->base_.port); /* Send back reason DONE because we want to make hidden service port * scanning harder thus instead of returning that the exit policy * didn't match, which makes it obvious that the port is closed, * return DONE and kill the circuit. That way, a user (malicious or * not) needs one circuit per bad port unless it matches the policy of * the hidden service. */ relay_send_end_cell_from_edge(rh.stream_id, circ, END_STREAM_REASON_DONE, origin_circ->cpath->prev); connection_free(TO_CONN(n_stream)); tor_free(address); /* Drop the circuit here since it might be someone deliberately * scanning the hidden service ports. Note that this mitigates port * scanning by adding more work on the attacker side to successfully * scan but does not fully solve it. */ if (r < -1) return END_CIRC_AT_ORIGIN; else return 0; } assert_circuit_ok(circ); log_debug(LD_REND,"Finished assigning addr/port"); n_stream->cpath_layer = origin_circ->cpath->prev; /* link it */ /* add it into the linked list of p_streams on this circuit */ n_stream->next_stream = origin_circ->p_streams; n_stream->on_circuit = circ; origin_circ->p_streams = n_stream; assert_circuit_ok(circ); origin_circ->rend_data->nr_streams++; connection_exit_connect(n_stream); /* For path bias: This circuit was used successfully */ pathbias_mark_use_success(origin_circ); tor_free(address); return 0; } tor_strlower(address); n_stream->base_.address = address; n_stream->base_.state = EXIT_CONN_STATE_RESOLVEFAILED; /* default to failed, change in dns_resolve if it turns out not to fail */ if (we_are_hibernating()) { relay_send_end_cell_from_edge(rh.stream_id, circ, END_STREAM_REASON_HIBERNATING, NULL); connection_free(TO_CONN(n_stream)); return 0; } n_stream->on_circuit = circ; if (rh.command == RELAY_COMMAND_BEGIN_DIR) { tor_addr_t tmp_addr; tor_assert(or_circ); if (or_circ->p_chan && channel_get_addr_if_possible(or_circ->p_chan, &tmp_addr)) { tor_addr_copy(&n_stream->base_.addr, &tmp_addr); } return connection_exit_connect_dir(n_stream); } log_debug(LD_EXIT,"about to start the dns_resolve()."); /* send it off to the gethostbyname farm */ switch (dns_resolve(n_stream)) { case 1: /* resolve worked; now n_stream is attached to circ. */ assert_circuit_ok(circ); log_debug(LD_EXIT,"about to call connection_exit_connect()."); connection_exit_connect(n_stream); return 0; case -1: /* resolve failed */ relay_send_end_cell_from_edge(rh.stream_id, circ, END_STREAM_REASON_RESOLVEFAILED, NULL); /* n_stream got freed. don't touch it. */ break; case 0: /* resolve added to pending list */ assert_circuit_ok(circ); break; } return 0; } /** * Called when we receive a RELAY_COMMAND_RESOLVE cell 'cell' along the * circuit circ; * begin resolving the hostname, and (eventually) reply with a RESOLVED cell. */ int connection_exit_begin_resolve(cell_t *cell, or_circuit_t *circ) { edge_connection_t *dummy_conn; relay_header_t rh; assert_circuit_ok(TO_CIRCUIT(circ)); relay_header_unpack(&rh, cell->payload); if (rh.length > RELAY_PAYLOAD_SIZE) return -1; /* This 'dummy_conn' only exists to remember the stream ID * associated with the resolve request; and to make the * implementation of dns.c more uniform. (We really only need to * remember the circuit, the stream ID, and the hostname to be * resolved; but if we didn't store them in a connection like this, * the housekeeping in dns.c would get way more complicated.) */ dummy_conn = edge_connection_new(CONN_TYPE_EXIT, AF_INET); dummy_conn->stream_id = rh.stream_id; dummy_conn->base_.address = tor_strndup( (char*)cell->payload+RELAY_HEADER_SIZE, rh.length); dummy_conn->base_.port = 0; dummy_conn->base_.state = EXIT_CONN_STATE_RESOLVEFAILED; dummy_conn->base_.purpose = EXIT_PURPOSE_RESOLVE; dummy_conn->on_circuit = TO_CIRCUIT(circ); /* send it off to the gethostbyname farm */ switch (dns_resolve(dummy_conn)) { case -1: /* Impossible to resolve; a resolved cell was sent. */ /* Connection freed; don't touch it. */ return 0; case 1: /* The result was cached; a resolved cell was sent. */ if (!dummy_conn->base_.marked_for_close) connection_free(TO_CONN(dummy_conn)); return 0; case 0: /* resolve added to pending list */ assert_circuit_ok(TO_CIRCUIT(circ)); break; } return 0; } /** Connect to conn's specified addr and port. If it worked, conn * has now been added to the connection_array. * * Send back a connected cell. Include the resolved IP of the destination * address, but only if it's a general exit stream. (Rendezvous * streams must not reveal what IP they connected to.) */ void connection_exit_connect(edge_connection_t *edge_conn) { const tor_addr_t *addr; uint16_t port; connection_t *conn = TO_CONN(edge_conn); int socket_error = 0, result; if ( (!connection_edge_is_rendezvous_stream(edge_conn) && router_compare_to_my_exit_policy(&edge_conn->base_.addr, edge_conn->base_.port)) || (tor_addr_family(&conn->addr) == AF_INET6 && ! get_options()->IPv6Exit)) { log_info(LD_EXIT,"%s:%d failed exit policy. Closing.", escaped_safe_str_client(conn->address), conn->port); connection_edge_end(edge_conn, END_STREAM_REASON_EXITPOLICY); circuit_detach_stream(circuit_get_by_edge_conn(edge_conn), edge_conn); connection_free(conn); return; } #ifdef HAVE_SYS_UN_H if (conn->socket_family != AF_UNIX) { #else { #endif /* defined(HAVE_SYS_UN_H) */ addr = &conn->addr; port = conn->port; if (tor_addr_family(addr) == AF_INET6) conn->socket_family = AF_INET6; log_debug(LD_EXIT, "about to try connecting"); result = connection_connect(conn, conn->address, addr, port, &socket_error); #ifdef HAVE_SYS_UN_H } else { /* * In the AF_UNIX case, we expect to have already had conn->port = 1, * tor_addr_make_unspec(conn->addr) (cf. the way we mark in the incoming * case in connection_handle_listener_read()), and conn->address should * have the socket path to connect to. */ tor_assert(conn->address && strlen(conn->address) > 0); log_debug(LD_EXIT, "about to try connecting"); result = connection_connect_unix(conn, conn->address, &socket_error); #endif /* defined(HAVE_SYS_UN_H) */ } switch (result) { case -1: { int reason = errno_to_stream_end_reason(socket_error); connection_edge_end(edge_conn, reason); circuit_detach_stream(circuit_get_by_edge_conn(edge_conn), edge_conn); connection_free(conn); return; } case 0: conn->state = EXIT_CONN_STATE_CONNECTING; connection_watch_events(conn, READ_EVENT | WRITE_EVENT); /* writable indicates finish; * readable/error indicates broken link in windows-land. */ return; /* case 1: fall through */ } conn->state = EXIT_CONN_STATE_OPEN; if (connection_get_outbuf_len(conn)) { /* in case there are any queued data cells, from e.g. optimistic data */ IF_HAS_NO_BUFFEREVENT(conn) connection_watch_events(conn, READ_EVENT|WRITE_EVENT); } else { IF_HAS_NO_BUFFEREVENT(conn) connection_watch_events(conn, READ_EVENT); } /* also, deliver a 'connected' cell back through the circuit. */ if (connection_edge_is_rendezvous_stream(edge_conn)) { /* don't send an address back! */ connection_edge_send_command(edge_conn, RELAY_COMMAND_CONNECTED, NULL, 0); } else { /* normal stream */ uint8_t connected_payload[MAX_CONNECTED_CELL_PAYLOAD_LEN]; int connected_payload_len = connected_cell_format_payload(connected_payload, &conn->addr, edge_conn->address_ttl); if (connected_payload_len < 0) { connection_edge_end(edge_conn, END_STREAM_REASON_INTERNAL); circuit_detach_stream(circuit_get_by_edge_conn(edge_conn), edge_conn); connection_free(conn); return; } connection_edge_send_command(edge_conn, RELAY_COMMAND_CONNECTED, (char*)connected_payload, connected_payload_len); } } /** Given an exit conn that should attach to us as a directory server, open a * bridge connection with a linked connection pair, create a new directory * conn, and join them together. Return 0 on success (or if there was an * error we could send back an end cell for). Return -(some circuit end * reason) if the circuit needs to be torn down. Either connects * exitconn, frees it, or marks it, as appropriate. */ static int connection_exit_connect_dir(edge_connection_t *exitconn) { dir_connection_t *dirconn = NULL; or_circuit_t *circ = TO_OR_CIRCUIT(exitconn->on_circuit); log_info(LD_EXIT, "Opening local connection for anonymized directory exit"); exitconn->base_.state = EXIT_CONN_STATE_OPEN; dirconn = dir_connection_new(tor_addr_family(&exitconn->base_.addr)); tor_addr_copy(&dirconn->base_.addr, &exitconn->base_.addr); dirconn->base_.port = 0; dirconn->base_.address = tor_strdup(exitconn->base_.address); dirconn->base_.type = CONN_TYPE_DIR; dirconn->base_.purpose = DIR_PURPOSE_SERVER; dirconn->base_.state = DIR_CONN_STATE_SERVER_COMMAND_WAIT; /* Note that the new dir conn belongs to the same tunneled request as * the edge conn, so that we can measure download times. */ dirconn->dirreq_id = exitconn->dirreq_id; connection_link_connections(TO_CONN(dirconn), TO_CONN(exitconn)); if (connection_add(TO_CONN(exitconn))<0) { connection_edge_end(exitconn, END_STREAM_REASON_RESOURCELIMIT); connection_free(TO_CONN(exitconn)); connection_free(TO_CONN(dirconn)); return 0; } /* link exitconn to circ, now that we know we can use it. */ exitconn->next_stream = circ->n_streams; circ->n_streams = exitconn; if (connection_add(TO_CONN(dirconn))<0) { connection_edge_end(exitconn, END_STREAM_REASON_RESOURCELIMIT); connection_close_immediate(TO_CONN(exitconn)); connection_mark_for_close(TO_CONN(exitconn)); connection_free(TO_CONN(dirconn)); return 0; } connection_start_reading(TO_CONN(dirconn)); connection_start_reading(TO_CONN(exitconn)); if (connection_edge_send_command(exitconn, RELAY_COMMAND_CONNECTED, NULL, 0) < 0) { connection_mark_for_close(TO_CONN(exitconn)); connection_mark_for_close(TO_CONN(dirconn)); return 0; } return 0; } /** Return 1 if conn is a rendezvous stream, or 0 if * it is a general stream. */ int connection_edge_is_rendezvous_stream(edge_connection_t *conn) { tor_assert(conn); if (conn->rend_data) return 1; return 0; } /** Return 1 if router exit is likely to allow stream conn * to exit from it, or 0 if it probably will not allow it. * (We might be uncertain if conn's destination address has not yet been * resolved.) */ int connection_ap_can_use_exit(const entry_connection_t *conn, const node_t *exit) { const or_options_t *options = get_options(); tor_assert(conn); tor_assert(conn->socks_request); tor_assert(exit); /* If a particular exit node has been requested for the new connection, * make sure the exit node of the existing circuit matches exactly. */ if (conn->chosen_exit_name) { const node_t *chosen_exit = node_get_by_nickname(conn->chosen_exit_name, 1); if (!chosen_exit || tor_memneq(chosen_exit->identity, exit->identity, DIGEST_LEN)) { /* doesn't match */ // log_debug(LD_APP,"Requested node '%s', considering node '%s'. No.", // conn->chosen_exit_name, exit->nickname); return 0; } } if (conn->use_begindir) { /* Internal directory fetches do not count as exiting. */ return 1; } if (conn->socks_request->command == SOCKS_COMMAND_CONNECT) { tor_addr_t addr, *addrp = NULL; addr_policy_result_t r; if (0 == tor_addr_parse(&addr, conn->socks_request->address)) { addrp = &addr; } else if (!conn->entry_cfg.ipv4_traffic && conn->entry_cfg.ipv6_traffic) { tor_addr_make_null(&addr, AF_INET6); addrp = &addr; } else if (conn->entry_cfg.ipv4_traffic && !conn->entry_cfg.ipv6_traffic) { tor_addr_make_null(&addr, AF_INET); addrp = &addr; } r = compare_tor_addr_to_node_policy(addrp, conn->socks_request->port,exit); if (r == ADDR_POLICY_REJECTED) return 0; /* We know the address, and the exit policy rejects it. */ if (r == ADDR_POLICY_PROBABLY_REJECTED && !conn->chosen_exit_name) return 0; /* We don't know the addr, but the exit policy rejects most * addresses with this port. Since the user didn't ask for * this node, err on the side of caution. */ } else if (SOCKS_COMMAND_IS_RESOLVE(conn->socks_request->command)) { /* Don't send DNS requests to non-exit servers by default. */ if (!conn->chosen_exit_name && node_exit_policy_rejects_all(exit)) return 0; } if (routerset_contains_node(options->ExcludeExitNodesUnion_, exit)) { /* Not a suitable exit. Refuse it. */ return 0; } return 1; } /** If address is of the form "y.onion" with a well-formed handle y: * Put a NUL after y, lower-case it, and return ONION_HOSTNAME. * * If address is of the form "x.y.onion" with a well-formed handle x: * Drop "x.", put a NUL after y, lower-case it, and return ONION_HOSTNAME. * * If address is of the form "y.onion" with a badly-formed handle y: * Return BAD_HOSTNAME and log a message. * * If address is of the form "y.exit": * Put a NUL after y and return EXIT_HOSTNAME. * * Otherwise: * Return NORMAL_HOSTNAME and change nothing. */ hostname_type_t parse_extended_hostname(char *address) { char *s; char *q; char query[REND_SERVICE_ID_LEN_BASE32+1]; s = strrchr(address,'.'); if (!s) return NORMAL_HOSTNAME; /* no dot, thus normal */ if (!strcmp(s+1,"exit")) { *s = 0; /* NUL-terminate it */ return EXIT_HOSTNAME; /* .exit */ } if (strcmp(s+1,"onion")) return NORMAL_HOSTNAME; /* neither .exit nor .onion, thus normal */ /* so it is .onion */ *s = 0; /* NUL-terminate it */ /* locate a 'sub-domain' component, in order to remove it */ q = strrchr(address, '.'); if (q == address) { goto failed; /* reject sub-domain, as DNS does */ } q = (NULL == q) ? address : q + 1; if (strlcpy(query, q, REND_SERVICE_ID_LEN_BASE32+1) >= REND_SERVICE_ID_LEN_BASE32+1) goto failed; if (q != address) { memmove(address, q, strlen(q) + 1 /* also get \0 */); } if (rend_valid_service_id(query)) { return ONION_HOSTNAME; /* success */ } failed: /* otherwise, return to previous state and return 0 */ *s = '.'; log_warn(LD_APP, "Invalid onion hostname %s; rejecting", safe_str_client(address)); return BAD_HOSTNAME; } /** Return true iff the (possibly NULL) alen-byte chunk of memory at * a is equal to the (possibly NULL) blen-byte chunk of memory * at b. */ static int memeq_opt(const char *a, size_t alen, const char *b, size_t blen) { if (a == NULL) { return (b == NULL); } else if (b == NULL) { return 0; } else if (alen != blen) { return 0; } else { return tor_memeq(a, b, alen); } } /** * Return true iff none of the isolation flags and fields in conn * should prevent it from being attached to circ. */ int connection_edge_compatible_with_circuit(const entry_connection_t *conn, const origin_circuit_t *circ) { const uint8_t iso = conn->entry_cfg.isolation_flags; const socks_request_t *sr = conn->socks_request; /* If circ has never been used for an isolated connection, we can * totally use it for this one. */ if (!circ->isolation_values_set) return 1; /* If circ has been used for connections having more than one value * for some field f, it will have the corresponding bit set in * isolation_flags_mixed. If isolation_flags_mixed has any bits * in common with iso, then conn must be isolated from at least * one stream that has been attached to circ. */ if ((iso & circ->isolation_flags_mixed) != 0) { /* For at least one field where conn is isolated, the circuit * already has mixed streams. */ return 0; } if (! conn->original_dest_address) { log_warn(LD_BUG, "Reached connection_edge_compatible_with_circuit without " "having set conn->original_dest_address"); ((entry_connection_t*)conn)->original_dest_address = tor_strdup(conn->socks_request->address); } if ((iso & ISO_STREAM) && (circ->associated_isolated_stream_global_id != ENTRY_TO_CONN(conn)->global_identifier)) return 0; if ((iso & ISO_DESTPORT) && conn->socks_request->port != circ->dest_port) return 0; if ((iso & ISO_DESTADDR) && strcasecmp(conn->original_dest_address, circ->dest_address)) return 0; if ((iso & ISO_SOCKSAUTH) && (! memeq_opt(sr->username, sr->usernamelen, circ->socks_username, circ->socks_username_len) || ! memeq_opt(sr->password, sr->passwordlen, circ->socks_password, circ->socks_password_len))) return 0; if ((iso & ISO_CLIENTPROTO) && (conn->socks_request->listener_type != circ->client_proto_type || conn->socks_request->socks_version != circ->client_proto_socksver)) return 0; if ((iso & ISO_CLIENTADDR) && !tor_addr_eq(&ENTRY_TO_CONN(conn)->addr, &circ->client_addr)) return 0; if ((iso & ISO_SESSIONGRP) && conn->entry_cfg.session_group != circ->session_group) return 0; if ((iso & ISO_NYM_EPOCH) && conn->nym_epoch != circ->nym_epoch) return 0; return 1; } /** * If dry_run is false, update circ's isolation flags and fields * to reflect having had conn attached to it, and return 0. Otherwise, * if dry_run is true, then make no changes to circ, and return * a bitfield of isolation flags that we would have to set in * isolation_flags_mixed to add conn to circ, or -1 if * circ has had no streams attached to it. */ int connection_edge_update_circuit_isolation(const entry_connection_t *conn, origin_circuit_t *circ, int dry_run) { const socks_request_t *sr = conn->socks_request; if (! conn->original_dest_address) { log_warn(LD_BUG, "Reached connection_update_circuit_isolation without " "having set conn->original_dest_address"); ((entry_connection_t*)conn)->original_dest_address = tor_strdup(conn->socks_request->address); } if (!circ->isolation_values_set) { if (dry_run) return -1; circ->associated_isolated_stream_global_id = ENTRY_TO_CONN(conn)->global_identifier; circ->dest_port = conn->socks_request->port; circ->dest_address = tor_strdup(conn->original_dest_address); circ->client_proto_type = conn->socks_request->listener_type; circ->client_proto_socksver = conn->socks_request->socks_version; tor_addr_copy(&circ->client_addr, &ENTRY_TO_CONN(conn)->addr); circ->session_group = conn->entry_cfg.session_group; circ->nym_epoch = conn->nym_epoch; circ->socks_username = sr->username ? tor_memdup(sr->username, sr->usernamelen) : NULL; circ->socks_password = sr->password ? tor_memdup(sr->password, sr->passwordlen) : NULL; circ->socks_username_len = sr->usernamelen; circ->socks_password_len = sr->passwordlen; circ->isolation_values_set = 1; return 0; } else { uint8_t mixed = 0; if (conn->socks_request->port != circ->dest_port) mixed |= ISO_DESTPORT; if (strcasecmp(conn->original_dest_address, circ->dest_address)) mixed |= ISO_DESTADDR; if (!memeq_opt(sr->username, sr->usernamelen, circ->socks_username, circ->socks_username_len) || !memeq_opt(sr->password, sr->passwordlen, circ->socks_password, circ->socks_password_len)) mixed |= ISO_SOCKSAUTH; if ((conn->socks_request->listener_type != circ->client_proto_type || conn->socks_request->socks_version != circ->client_proto_socksver)) mixed |= ISO_CLIENTPROTO; if (!tor_addr_eq(&ENTRY_TO_CONN(conn)->addr, &circ->client_addr)) mixed |= ISO_CLIENTADDR; if (conn->entry_cfg.session_group != circ->session_group) mixed |= ISO_SESSIONGRP; if (conn->nym_epoch != circ->nym_epoch) mixed |= ISO_NYM_EPOCH; if (dry_run) return mixed; if ((mixed & conn->entry_cfg.isolation_flags) != 0) { log_warn(LD_BUG, "Updating a circuit with seemingly incompatible " "isolation flags."); } circ->isolation_flags_mixed |= mixed; return 0; } } /** * Clear the isolation settings on circ. * * This only works on an open circuit that has never had a stream attached to * it, and whose isolation settings are hypothetical. (We set hypothetical * isolation settings on circuits as we're launching them, so that we * know whether they can handle more streams or whether we need to launch * even more circuits. Once the circuit is open, if it turns out that * we no longer have any streams to attach to it, we clear the isolation flags * and data so that other streams can have a chance.) */ void circuit_clear_isolation(origin_circuit_t *circ) { if (circ->isolation_any_streams_attached) { log_warn(LD_BUG, "Tried to clear the isolation status of a dirty circuit"); return; } if (TO_CIRCUIT(circ)->state != CIRCUIT_STATE_OPEN) { log_warn(LD_BUG, "Tried to clear the isolation status of a non-open " "circuit"); return; } circ->isolation_values_set = 0; circ->isolation_flags_mixed = 0; circ->associated_isolated_stream_global_id = 0; circ->client_proto_type = 0; circ->client_proto_socksver = 0; circ->dest_port = 0; tor_addr_make_unspec(&circ->client_addr); tor_free(circ->dest_address); circ->session_group = -1; circ->nym_epoch = 0; if (circ->socks_username) { memwipe(circ->socks_username, 0x11, circ->socks_username_len); tor_free(circ->socks_username); } if (circ->socks_password) { memwipe(circ->socks_password, 0x05, circ->socks_password_len); tor_free(circ->socks_password); } circ->socks_username_len = circ->socks_password_len = 0; } tor-0.2.7.6/src/or/statefile.c0000644000175000017500000004700412631612325012752 00000000000000/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ #define STATEFILE_PRIVATE #include "or.h" #include "circuitstats.h" #include "config.h" #include "confparse.h" #include "entrynodes.h" #include "hibernate.h" #include "rephist.h" #include "router.h" #include "sandbox.h" #include "statefile.h" /** A list of state-file "abbreviations," for compatibility. */ static config_abbrev_t state_abbrevs_[] = { { "AccountingBytesReadInterval", "AccountingBytesReadInInterval", 0, 0 }, { "HelperNode", "EntryGuard", 0, 0 }, { "HelperNodeDownSince", "EntryGuardDownSince", 0, 0 }, { "HelperNodeUnlistedSince", "EntryGuardUnlistedSince", 0, 0 }, { "EntryNode", "EntryGuard", 0, 0 }, { "EntryNodeDownSince", "EntryGuardDownSince", 0, 0 }, { "EntryNodeUnlistedSince", "EntryGuardUnlistedSince", 0, 0 }, { NULL, NULL, 0, 0}, }; /*XXXX these next two are duplicates or near-duplicates from config.c */ #define VAR(name,conftype,member,initvalue) \ { name, CONFIG_TYPE_ ## conftype, STRUCT_OFFSET(or_state_t, member), \ initvalue } /** As VAR, but the option name and member name are the same. */ #define V(member,conftype,initvalue) \ VAR(#member, conftype, member, initvalue) /** Array of "state" variables saved to the ~/.tor/state file. */ static config_var_t state_vars_[] = { /* Remember to document these in state-contents.txt ! */ V(AccountingBytesReadInInterval, MEMUNIT, NULL), V(AccountingBytesWrittenInInterval, MEMUNIT, NULL), V(AccountingExpectedUsage, MEMUNIT, NULL), V(AccountingIntervalStart, ISOTIME, NULL), V(AccountingSecondsActive, INTERVAL, NULL), V(AccountingSecondsToReachSoftLimit,INTERVAL, NULL), V(AccountingSoftLimitHitAt, ISOTIME, NULL), V(AccountingBytesAtSoftLimit, MEMUNIT, NULL), VAR("EntryGuard", LINELIST_S, EntryGuards, NULL), VAR("EntryGuardDownSince", LINELIST_S, EntryGuards, NULL), VAR("EntryGuardUnlistedSince", LINELIST_S, EntryGuards, NULL), VAR("EntryGuardAddedBy", LINELIST_S, EntryGuards, NULL), VAR("EntryGuardPathBias", LINELIST_S, EntryGuards, NULL), VAR("EntryGuardPathUseBias", LINELIST_S, EntryGuards, NULL), V(EntryGuards, LINELIST_V, NULL), VAR("TransportProxy", LINELIST_S, TransportProxies, NULL), V(TransportProxies, LINELIST_V, NULL), V(BWHistoryReadEnds, ISOTIME, NULL), V(BWHistoryReadInterval, UINT, "900"), V(BWHistoryReadValues, CSV, ""), V(BWHistoryReadMaxima, CSV, ""), V(BWHistoryWriteEnds, ISOTIME, NULL), V(BWHistoryWriteInterval, UINT, "900"), V(BWHistoryWriteValues, CSV, ""), V(BWHistoryWriteMaxima, CSV, ""), V(BWHistoryDirReadEnds, ISOTIME, NULL), V(BWHistoryDirReadInterval, UINT, "900"), V(BWHistoryDirReadValues, CSV, ""), V(BWHistoryDirReadMaxima, CSV, ""), V(BWHistoryDirWriteEnds, ISOTIME, NULL), V(BWHistoryDirWriteInterval, UINT, "900"), V(BWHistoryDirWriteValues, CSV, ""), V(BWHistoryDirWriteMaxima, CSV, ""), V(TorVersion, STRING, NULL), V(LastRotatedOnionKey, ISOTIME, NULL), V(LastWritten, ISOTIME, NULL), V(TotalBuildTimes, UINT, NULL), V(CircuitBuildAbandonedCount, UINT, "0"), VAR("CircuitBuildTimeBin", LINELIST_S, BuildtimeHistogram, NULL), VAR("BuildtimeHistogram", LINELIST_V, BuildtimeHistogram, NULL), { NULL, CONFIG_TYPE_OBSOLETE, 0, NULL } }; #undef VAR #undef V static int or_state_validate(or_state_t *state, char **msg); static int or_state_validate_cb(void *old_options, void *options, void *default_options, int from_setconf, char **msg); /** Magic value for or_state_t. */ #define OR_STATE_MAGIC 0x57A73f57 /** "Extra" variable in the state that receives lines we can't parse. This * lets us preserve options from versions of Tor newer than us. */ static config_var_t state_extra_var = { "__extra", CONFIG_TYPE_LINELIST, STRUCT_OFFSET(or_state_t, ExtraLines), NULL }; /** Configuration format for or_state_t. */ static const config_format_t state_format = { sizeof(or_state_t), OR_STATE_MAGIC, STRUCT_OFFSET(or_state_t, magic_), state_abbrevs_, state_vars_, or_state_validate_cb, &state_extra_var, }; /** Persistent serialized state. */ static or_state_t *global_state = NULL; /** Return the persistent state struct for this Tor. */ MOCK_IMPL(or_state_t *, get_or_state, (void)) { tor_assert(global_state); return global_state; } /** Return true iff we have loaded the global state for this Tor */ int or_state_loaded(void) { return global_state != NULL; } /** Return true if line is a valid state TransportProxy line. * Return false otherwise. */ static int state_transport_line_is_valid(const char *line) { smartlist_t *items = NULL; char *addrport=NULL; tor_addr_t addr; uint16_t port = 0; int r; items = smartlist_new(); smartlist_split_string(items, line, NULL, SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, -1); if (smartlist_len(items) != 2) { log_warn(LD_CONFIG, "state: Not enough arguments in TransportProxy line."); goto err; } addrport = smartlist_get(items, 1); if (tor_addr_port_lookup(addrport, &addr, &port) < 0) { log_warn(LD_CONFIG, "state: Could not parse addrport."); goto err; } if (!port) { log_warn(LD_CONFIG, "state: Transport line did not contain port."); goto err; } r = 1; goto done; err: r = 0; done: SMARTLIST_FOREACH(items, char*, s, tor_free(s)); smartlist_free(items); return r; } /** Return 0 if all TransportProxy lines in state are well * formed. Otherwise, return -1. */ static int validate_transports_in_state(or_state_t *state) { int broken = 0; config_line_t *line; for (line = state->TransportProxies ; line ; line = line->next) { tor_assert(!strcmp(line->key, "TransportProxy")); if (!state_transport_line_is_valid(line->value)) broken = 1; } if (broken) log_warn(LD_CONFIG, "state: State file seems to be broken."); return 0; } static int or_state_validate_cb(void *old_state, void *state, void *default_state, int from_setconf, char **msg) { /* We don't use these; only options do. Still, we need to match that * signature. */ (void) from_setconf; (void) default_state; (void) old_state; return or_state_validate(state, msg); } /** Return 0 if every setting in state is reasonable, and a * permissible transition from old_state. Else warn and return -1. * Should have no side effects, except for normalizing the contents of * state. */ static int or_state_validate(or_state_t *state, char **msg) { if (entry_guards_parse_state(state, 0, msg)<0) return -1; if (validate_transports_in_state(state)<0) return -1; return 0; } /** Replace the current persistent state with new_state */ static int or_state_set(or_state_t *new_state) { char *err = NULL; int ret = 0; tor_assert(new_state); config_free(&state_format, global_state); global_state = new_state; if (entry_guards_parse_state(global_state, 1, &err)<0) { log_warn(LD_GENERAL,"%s",err); tor_free(err); ret = -1; } if (rep_hist_load_state(global_state, &err)<0) { log_warn(LD_GENERAL,"Unparseable bandwidth history state: %s",err); tor_free(err); ret = -1; } if (circuit_build_times_parse_state( get_circuit_build_times_mutable(),global_state) < 0) { ret = -1; } return ret; } /** * Save a broken state file to a backup location. */ static void or_state_save_broken(char *fname) { int i, res; file_status_t status; char *fname2 = NULL; for (i = 0; i < 100; ++i) { tor_asprintf(&fname2, "%s.%d", fname, i); status = file_status(fname2); if (status == FN_NOENT) break; tor_free(fname2); } if (i == 100) { log_warn(LD_BUG, "Unable to parse state in \"%s\"; too many saved bad " "state files to move aside. Discarding the old state file.", fname); res = unlink(fname); if (res != 0) { log_warn(LD_FS, "Also couldn't discard old state file \"%s\" because " "unlink() failed: %s", fname, strerror(errno)); } } else { log_warn(LD_BUG, "Unable to parse state in \"%s\". Moving it aside " "to \"%s\". This could be a bug in Tor; please tell " "the developers.", fname, fname2); if (tor_rename(fname, fname2) < 0) {//XXXX sandbox prohibits log_warn(LD_BUG, "Weirdly, I couldn't even move the state aside. The " "OS gave an error of %s", strerror(errno)); } } tor_free(fname2); } STATIC or_state_t * or_state_new(void) { or_state_t *new_state = tor_malloc_zero(sizeof(or_state_t)); new_state->magic_ = OR_STATE_MAGIC; config_init(&state_format, new_state); return new_state; } /** Reload the persistent state from disk, generating a new state as needed. * Return 0 on success, less than 0 on failure. */ int or_state_load(void) { or_state_t *new_state = NULL; char *contents = NULL, *fname; char *errmsg = NULL; int r = -1, badstate = 0; fname = get_datadir_fname("state"); switch (file_status(fname)) { case FN_FILE: if (!(contents = read_file_to_str(fname, 0, NULL))) { log_warn(LD_FS, "Unable to read state file \"%s\"", fname); goto done; } break; /* treat empty state files as if the file doesn't exist, and generate * a new state file, overwriting the empty file in or_state_save() */ case FN_NOENT: case FN_EMPTY: break; case FN_ERROR: case FN_DIR: default: log_warn(LD_GENERAL,"State file \"%s\" is not a file? Failing.", fname); goto done; } new_state = or_state_new(); if (contents) { config_line_t *lines=NULL; int assign_retval; if (config_get_lines(contents, &lines, 0)<0) goto done; assign_retval = config_assign(&state_format, new_state, lines, 0, 0, &errmsg); config_free_lines(lines); if (assign_retval<0) badstate = 1; if (errmsg) { log_warn(LD_GENERAL, "%s", errmsg); tor_free(errmsg); } } if (!badstate && or_state_validate(new_state, &errmsg) < 0) badstate = 1; if (errmsg) { log_warn(LD_GENERAL, "%s", errmsg); tor_free(errmsg); } if (badstate && !contents) { log_warn(LD_BUG, "Uh oh. We couldn't even validate our own default state." " This is a bug in Tor."); goto done; } else if (badstate && contents) { or_state_save_broken(fname); tor_free(contents); config_free(&state_format, new_state); new_state = or_state_new(); } else if (contents) { log_info(LD_GENERAL, "Loaded state from \"%s\"", fname); } else { log_info(LD_GENERAL, "Initialized state"); } if (or_state_set(new_state) == -1) { or_state_save_broken(fname); } new_state = NULL; if (!contents) { global_state->next_write = 0; or_state_save(time(NULL)); } r = 0; done: tor_free(fname); tor_free(contents); if (new_state) config_free(&state_format, new_state); return r; } /** Did the last time we tried to write the state file fail? If so, we * should consider disabling such features as preemptive circuit generation * to compute circuit-build-time. */ static int last_state_file_write_failed = 0; /** Return whether the state file failed to write last time we tried. */ int did_last_state_file_write_fail(void) { return last_state_file_write_failed; } /** If writing the state to disk fails, try again after this many seconds. */ #define STATE_WRITE_RETRY_INTERVAL 3600 /** If we're a relay, how often should we checkpoint our state file even * if nothing else dirties it? This will checkpoint ongoing stats like * bandwidth used, per-country user stats, etc. */ #define STATE_RELAY_CHECKPOINT_INTERVAL (12*60*60) /** Write the persistent state to disk. Return 0 for success, <0 on failure. */ int or_state_save(time_t now) { char *state, *contents; char tbuf[ISO_TIME_LEN+1]; char *fname; tor_assert(global_state); if (global_state->next_write > now) return 0; /* Call everything else that might dirty the state even more, in order * to avoid redundant writes. */ entry_guards_update_state(global_state); rep_hist_update_state(global_state); circuit_build_times_update_state(get_circuit_build_times(), global_state); if (accounting_is_enabled(get_options())) accounting_run_housekeeping(now); global_state->LastWritten = now; tor_free(global_state->TorVersion); tor_asprintf(&global_state->TorVersion, "Tor %s", get_version()); state = config_dump(&state_format, NULL, global_state, 1, 0); format_local_iso_time(tbuf, now); tor_asprintf(&contents, "# Tor state file last generated on %s local time\n" "# Other times below are in UTC\n" "# You *do not* need to edit this file.\n\n%s", tbuf, state); tor_free(state); fname = get_datadir_fname("state"); if (write_str_to_file(fname, contents, 0)<0) { log_warn(LD_FS, "Unable to write state to file \"%s\"; " "will try again later", fname); last_state_file_write_failed = 1; tor_free(fname); tor_free(contents); /* Try again after STATE_WRITE_RETRY_INTERVAL (or sooner, if the state * changes sooner). */ global_state->next_write = now + STATE_WRITE_RETRY_INTERVAL; return -1; } last_state_file_write_failed = 0; log_info(LD_GENERAL, "Saved state to \"%s\"", fname); tor_free(fname); tor_free(contents); if (server_mode(get_options())) global_state->next_write = now + STATE_RELAY_CHECKPOINT_INTERVAL; else global_state->next_write = TIME_MAX; return 0; } /** Return the config line for transport transport in the current state. * Return NULL if there is no config line for transport. */ STATIC config_line_t * get_transport_in_state_by_name(const char *transport) { or_state_t *or_state = get_or_state(); config_line_t *line; config_line_t *ret = NULL; smartlist_t *items = NULL; for (line = or_state->TransportProxies ; line ; line = line->next) { tor_assert(!strcmp(line->key, "TransportProxy")); items = smartlist_new(); smartlist_split_string(items, line->value, NULL, SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, -1); if (smartlist_len(items) != 2) /* broken state */ goto done; if (!strcmp(smartlist_get(items, 0), transport)) { ret = line; goto done; } SMARTLIST_FOREACH(items, char*, s, tor_free(s)); smartlist_free(items); items = NULL; } done: if (items) { SMARTLIST_FOREACH(items, char*, s, tor_free(s)); smartlist_free(items); } return ret; } /** Return string containing the address:port part of the * TransportProxy line for transport transport. * If the line is corrupted, return NULL. */ static const char * get_transport_bindaddr(const char *line, const char *transport) { char *line_tmp = NULL; if (strlen(line) < strlen(transport) + 2) { goto broken_state; } else { /* line should start with the name of the transport and a space. (for example, "obfs2 127.0.0.1:47245") */ tor_asprintf(&line_tmp, "%s ", transport); if (strcmpstart(line, line_tmp)) goto broken_state; tor_free(line_tmp); return (line+strlen(transport)+1); } broken_state: tor_free(line_tmp); return NULL; } /** Return a string containing the address:port that a proxy transport * should bind on. The string is stored on the heap and must be freed * by the caller of this function. */ char * get_stored_bindaddr_for_server_transport(const char *transport) { char *default_addrport = NULL; const char *stored_bindaddr = NULL; config_line_t *line = NULL; { /* See if the user explicitly asked for a specific listening address for this transport. */ char *conf_bindaddr = get_transport_bindaddr_from_config(transport); if (conf_bindaddr) return conf_bindaddr; } line = get_transport_in_state_by_name(transport); if (!line) /* Found no references in state for this transport. */ goto no_bindaddr_found; stored_bindaddr = get_transport_bindaddr(line->value, transport); if (stored_bindaddr) /* found stored bindaddr in state file. */ return tor_strdup(stored_bindaddr); no_bindaddr_found: /** If we didn't find references for this pluggable transport in the state file, we should instruct the pluggable transport proxy to listen on INADDR_ANY on a random ephemeral port. */ tor_asprintf(&default_addrport, "%s:%s", fmt_addr32(INADDR_ANY), "0"); return default_addrport; } /** Save transport listening on addr:port to state */ void save_transport_to_state(const char *transport, const tor_addr_t *addr, uint16_t port) { or_state_t *state = get_or_state(); char *transport_addrport=NULL; /** find where to write on the state */ config_line_t **next, *line; /* see if this transport is already stored in state */ config_line_t *transport_line = get_transport_in_state_by_name(transport); if (transport_line) { /* if transport already exists in state... */ const char *prev_bindaddr = /* get its addrport... */ get_transport_bindaddr(transport_line->value, transport); transport_addrport = tor_strdup(fmt_addrport(addr, port)); /* if transport in state has the same address as this one, life is good */ if (!strcmp(prev_bindaddr, transport_addrport)) { log_info(LD_CONFIG, "Transport seems to have spawned on its usual " "address:port."); goto done; } else { /* if addrport in state is different than the one we got */ log_info(LD_CONFIG, "Transport seems to have spawned on different " "address:port. Let's update the state file with the new " "address:port"); tor_free(transport_line->value); /* free the old line */ /* replace old addrport line with new line */ tor_asprintf(&transport_line->value, "%s %s", transport, fmt_addrport(addr, port)); } } else { /* never seen this one before; save it in state for next time */ log_info(LD_CONFIG, "It's the first time we see this transport. " "Let's save its address:port"); next = &state->TransportProxies; /* find the last TransportProxy line in the state and point 'next' right after it */ line = state->TransportProxies; while (line) { next = &(line->next); line = line->next; } /* allocate space for the new line and fill it in */ *next = line = tor_malloc_zero(sizeof(config_line_t)); line->key = tor_strdup("TransportProxy"); tor_asprintf(&line->value, "%s %s", transport, fmt_addrport(addr, port)); next = &(line->next); } if (!get_options()->AvoidDiskWrites) or_state_mark_dirty(state, 0); done: tor_free(transport_addrport); } STATIC void or_state_free(or_state_t *state) { if (!state) return; config_free(&state_format, state); } void or_state_free_all(void) { or_state_free(global_state); global_state = NULL; } tor-0.2.7.6/src/or/or.h0000644000175000017500000063345412631612325011431 00000000000000/* Copyright (c) 2001 Matej Pfajfar. * Copyright (c) 2001-2004, Roger Dingledine. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson. * Copyright (c) 2007-2015, The Tor Project, Inc. */ /* See LICENSE for licensing information */ /** * \file or.h * \brief Master header file for Tor-specific functionality. **/ #ifndef TOR_OR_H #define TOR_OR_H #include "orconfig.h" #if defined(__clang_analyzer__) || defined(__COVERITY__) /* If we're building for a static analysis, turn on all the off-by-default * features. */ #ifndef INSTRUMENT_DOWNLOADS #define INSTRUMENT_DOWNLOADS 1 #endif #endif #ifdef HAVE_UNISTD_H #include #endif #ifdef HAVE_SIGNAL_H #include #endif #ifdef HAVE_NETDB_H #include #endif #ifdef HAVE_SYS_PARAM_H #include /* FreeBSD needs this to know what version it is */ #endif #include "torint.h" #ifdef HAVE_SYS_FCNTL_H #include #endif #ifdef HAVE_FCNTL_H #include #endif #ifdef HAVE_SYS_IOCTL_H #include #endif #ifdef HAVE_SYS_UN_H #include #endif #ifdef HAVE_SYS_STAT_H #include #endif #ifdef HAVE_NETINET_IN_H #include #endif #ifdef HAVE_ARPA_INET_H #include #endif #ifdef HAVE_ERRNO_H #include #endif #ifdef HAVE_ASSERT_H #include #endif #ifdef HAVE_TIME_H #include #endif #ifdef _WIN32 #include #include #include #include #include #endif #ifdef USE_BUFFEREVENTS #include #include #include #endif #include "crypto.h" #include "crypto_format.h" #include "tortls.h" #include "torlog.h" #include "container.h" #include "torgzip.h" #include "address.h" #include "compat_libevent.h" #include "ht.h" #include "replaycache.h" #include "crypto_curve25519.h" #include "crypto_ed25519.h" #include "tor_queue.h" #include "util_format.h" /* These signals are defined to help handle_control_signal work. */ #ifndef SIGHUP #define SIGHUP 1 #endif #ifndef SIGINT #define SIGINT 2 #endif #ifndef SIGUSR1 #define SIGUSR1 10 #endif #ifndef SIGUSR2 #define SIGUSR2 12 #endif #ifndef SIGTERM #define SIGTERM 15 #endif /* Controller signals start at a high number so we don't * conflict with system-defined signals. */ #define SIGNEWNYM 129 #define SIGCLEARDNSCACHE 130 #define SIGHEARTBEAT 131 #if (SIZEOF_CELL_T != 0) /* On Irix, stdlib.h defines a cell_t type, so we need to make sure * that our stuff always calls cell_t something different. */ #define cell_t tor_cell_t #endif #ifdef ENABLE_TOR2WEB_MODE #define NON_ANONYMOUS_MODE_ENABLED 1 #endif /** Length of longest allowable configured nickname. */ #define MAX_NICKNAME_LEN 19 /** Length of a router identity encoded as a hexadecimal digest, plus * possible dollar sign. */ #define MAX_HEX_NICKNAME_LEN (HEX_DIGEST_LEN+1) /** Maximum length of verbose router identifier: dollar sign, hex ID digest, * equal sign or tilde, nickname. */ #define MAX_VERBOSE_NICKNAME_LEN (1+HEX_DIGEST_LEN+1+MAX_NICKNAME_LEN) /** Maximum size, in bytes, for resized buffers. */ #define MAX_BUF_SIZE ((1<<24)-1) /* 16MB-1 */ /** Maximum size, in bytes, for any directory object that we've downloaded. */ #define MAX_DIR_DL_SIZE MAX_BUF_SIZE /** For HTTP parsing: Maximum number of bytes we'll accept in the headers * of an HTTP request or response. */ #define MAX_HEADERS_SIZE 50000 /** Maximum size, in bytes, for any directory object that we're accepting * as an upload. */ #define MAX_DIR_UL_SIZE MAX_BUF_SIZE /** Maximum size, in bytes, of a single router descriptor uploaded to us * as a directory authority. Caches and clients fetch whatever descriptors * the authorities tell them to fetch, and don't care about size. */ #define MAX_DESCRIPTOR_UPLOAD_SIZE 20000 /** Maximum size of a single extrainfo document, as above. */ #define MAX_EXTRAINFO_UPLOAD_SIZE 50000 /** How long do we keep DNS cache entries before purging them (regardless of * their TTL)? */ #define MAX_DNS_ENTRY_AGE (30*60) /** How long do we cache/tell clients to cache DNS records when no TTL is * known? */ #define DEFAULT_DNS_TTL (30*60) /** How long can a TTL be before we stop believing it? */ #define MAX_DNS_TTL (3*60*60) /** How small can a TTL be before we stop believing it? Provides rudimentary * pinning. */ #define MIN_DNS_TTL 60 /** How often do we rotate onion keys? */ #define MIN_ONION_KEY_LIFETIME (7*24*60*60) /** How often do we rotate TLS contexts? */ #define MAX_SSL_KEY_LIFETIME_INTERNAL (2*60*60) /** How old do we allow a router to get before removing it * from the router list? In seconds. */ #define ROUTER_MAX_AGE (60*60*48) /** How old can a router get before we (as a server) will no longer * consider it live? In seconds. */ #define ROUTER_MAX_AGE_TO_PUBLISH (60*60*24) /** How old do we let a saved descriptor get before force-removing it? */ #define OLD_ROUTER_DESC_MAX_AGE (60*60*24*5) /** Possible rules for generating circuit IDs on an OR connection. */ typedef enum { CIRC_ID_TYPE_LOWER=0, /**< Pick from 0..1<<15-1. */ CIRC_ID_TYPE_HIGHER=1, /**< Pick from 1<<15..1<<16-1. */ /** The other side of a connection is an OP: never create circuits to it, * and let it use any circuit ID it wants. */ CIRC_ID_TYPE_NEITHER=2 } circ_id_type_t; #define circ_id_type_bitfield_t ENUM_BF(circ_id_type_t) #define CONN_TYPE_MIN_ 3 /** Type for sockets listening for OR connections. */ #define CONN_TYPE_OR_LISTENER 3 /** A bidirectional TLS connection transmitting a sequence of cells. * May be from an OR to an OR, or from an OP to an OR. */ #define CONN_TYPE_OR 4 /** A TCP connection from an onion router to a stream's destination. */ #define CONN_TYPE_EXIT 5 /** Type for sockets listening for SOCKS connections. */ #define CONN_TYPE_AP_LISTENER 6 /** A SOCKS proxy connection from the user application to the onion * proxy. */ #define CONN_TYPE_AP 7 /** Type for sockets listening for HTTP connections to the directory server. */ #define CONN_TYPE_DIR_LISTENER 8 /** Type for HTTP connections to the directory server. */ #define CONN_TYPE_DIR 9 /* Type 10 is unused. */ /** Type for listening for connections from user interface process. */ #define CONN_TYPE_CONTROL_LISTENER 11 /** Type for connections from user interface process. */ #define CONN_TYPE_CONTROL 12 /** Type for sockets listening for transparent connections redirected by pf or * netfilter. */ #define CONN_TYPE_AP_TRANS_LISTENER 13 /** Type for sockets listening for transparent connections redirected by * natd. */ #define CONN_TYPE_AP_NATD_LISTENER 14 /** Type for sockets listening for DNS requests. */ #define CONN_TYPE_AP_DNS_LISTENER 15 /** Type for connections from the Extended ORPort. */ #define CONN_TYPE_EXT_OR 16 /** Type for sockets listening for Extended ORPort connections. */ #define CONN_TYPE_EXT_OR_LISTENER 17 #define CONN_TYPE_MAX_ 17 /* !!!! If _CONN_TYPE_MAX is ever over 31, we must grow the type field in * connection_t. */ /* Proxy client types */ #define PROXY_NONE 0 #define PROXY_CONNECT 1 #define PROXY_SOCKS4 2 #define PROXY_SOCKS5 3 /* !!!! If there is ever a PROXY_* type over 3, we must grow the proxy_type * field in or_connection_t */ /* Pluggable transport proxy type. Don't use this in or_connection_t, * instead use the actual underlying proxy type (see above). */ #define PROXY_PLUGGABLE 4 /* Proxy client handshake states */ /* We use a proxy but we haven't even connected to it yet. */ #define PROXY_INFANT 1 /* We use an HTTP proxy and we've sent the CONNECT command. */ #define PROXY_HTTPS_WANT_CONNECT_OK 2 /* We use a SOCKS4 proxy and we've sent the CONNECT command. */ #define PROXY_SOCKS4_WANT_CONNECT_OK 3 /* We use a SOCKS5 proxy and we try to negotiate without any authentication . */ #define PROXY_SOCKS5_WANT_AUTH_METHOD_NONE 4 /* We use a SOCKS5 proxy and we try to negotiate with Username/Password authentication . */ #define PROXY_SOCKS5_WANT_AUTH_METHOD_RFC1929 5 /* We use a SOCKS5 proxy and we just sent our credentials. */ #define PROXY_SOCKS5_WANT_AUTH_RFC1929_OK 6 /* We use a SOCKS5 proxy and we just sent our CONNECT command. */ #define PROXY_SOCKS5_WANT_CONNECT_OK 7 /* We use a proxy and we CONNECTed successfully!. */ #define PROXY_CONNECTED 8 /** True iff x is an edge connection. */ #define CONN_IS_EDGE(x) \ ((x)->type == CONN_TYPE_EXIT || (x)->type == CONN_TYPE_AP) /** State for any listener connection. */ #define LISTENER_STATE_READY 0 #define OR_CONN_STATE_MIN_ 1 /** State for a connection to an OR: waiting for connect() to finish. */ #define OR_CONN_STATE_CONNECTING 1 /** State for a connection to an OR: waiting for proxy handshake to complete */ #define OR_CONN_STATE_PROXY_HANDSHAKING 2 /** State for an OR connection client: SSL is handshaking, not done * yet. */ #define OR_CONN_STATE_TLS_HANDSHAKING 3 /** State for a connection to an OR: We're doing a second SSL handshake for * renegotiation purposes. (V2 handshake only.) */ #define OR_CONN_STATE_TLS_CLIENT_RENEGOTIATING 4 /** State for a connection at an OR: We're waiting for the client to * renegotiate (to indicate a v2 handshake) or send a versions cell (to * indicate a v3 handshake) */ #define OR_CONN_STATE_TLS_SERVER_RENEGOTIATING 5 /** State for an OR connection: We're done with our SSL handshake, we've done * renegotiation, but we haven't yet negotiated link protocol versions and * sent a netinfo cell. */ #define OR_CONN_STATE_OR_HANDSHAKING_V2 6 /** State for an OR connection: We're done with our SSL handshake, but we * haven't yet negotiated link protocol versions, done a V3 handshake, and * sent a netinfo cell. */ #define OR_CONN_STATE_OR_HANDSHAKING_V3 7 /** State for an OR connection: Ready to send/receive cells. */ #define OR_CONN_STATE_OPEN 8 #define OR_CONN_STATE_MAX_ 8 /** States of the Extended ORPort protocol. Be careful before changing * the numbers: they matter. */ #define EXT_OR_CONN_STATE_MIN_ 1 /** Extended ORPort authentication is waiting for the authentication * type selected by the client. */ #define EXT_OR_CONN_STATE_AUTH_WAIT_AUTH_TYPE 1 /** Extended ORPort authentication is waiting for the client nonce. */ #define EXT_OR_CONN_STATE_AUTH_WAIT_CLIENT_NONCE 2 /** Extended ORPort authentication is waiting for the client hash. */ #define EXT_OR_CONN_STATE_AUTH_WAIT_CLIENT_HASH 3 #define EXT_OR_CONN_STATE_AUTH_MAX 3 /** Authentication finished and the Extended ORPort is now accepting * traffic. */ #define EXT_OR_CONN_STATE_OPEN 4 /** Extended ORPort is flushing its last messages and preparing to * start accepting OR connections. */ #define EXT_OR_CONN_STATE_FLUSHING 5 #define EXT_OR_CONN_STATE_MAX_ 5 #define EXIT_CONN_STATE_MIN_ 1 /** State for an exit connection: waiting for response from DNS farm. */ #define EXIT_CONN_STATE_RESOLVING 1 /** State for an exit connection: waiting for connect() to finish. */ #define EXIT_CONN_STATE_CONNECTING 2 /** State for an exit connection: open and ready to transmit data. */ #define EXIT_CONN_STATE_OPEN 3 /** State for an exit connection: waiting to be removed. */ #define EXIT_CONN_STATE_RESOLVEFAILED 4 #define EXIT_CONN_STATE_MAX_ 4 /* The AP state values must be disjoint from the EXIT state values. */ #define AP_CONN_STATE_MIN_ 5 /** State for a SOCKS connection: waiting for SOCKS request. */ #define AP_CONN_STATE_SOCKS_WAIT 5 /** State for a SOCKS connection: got a y.onion URL; waiting to receive * rendezvous descriptor. */ #define AP_CONN_STATE_RENDDESC_WAIT 6 /** The controller will attach this connection to a circuit; it isn't our * job to do so. */ #define AP_CONN_STATE_CONTROLLER_WAIT 7 /** State for a SOCKS connection: waiting for a completed circuit. */ #define AP_CONN_STATE_CIRCUIT_WAIT 8 /** State for a SOCKS connection: sent BEGIN, waiting for CONNECTED. */ #define AP_CONN_STATE_CONNECT_WAIT 9 /** State for a SOCKS connection: sent RESOLVE, waiting for RESOLVED. */ #define AP_CONN_STATE_RESOLVE_WAIT 10 /** State for a SOCKS connection: ready to send and receive. */ #define AP_CONN_STATE_OPEN 11 /** State for a transparent natd connection: waiting for original * destination. */ #define AP_CONN_STATE_NATD_WAIT 12 #define AP_CONN_STATE_MAX_ 12 /** True iff the AP_CONN_STATE_* value s means that the corresponding * edge connection is not attached to any circuit. */ #define AP_CONN_STATE_IS_UNATTACHED(s) \ ((s) <= AP_CONN_STATE_CIRCUIT_WAIT || (s) == AP_CONN_STATE_NATD_WAIT) #define DIR_CONN_STATE_MIN_ 1 /** State for connection to directory server: waiting for connect(). */ #define DIR_CONN_STATE_CONNECTING 1 /** State for connection to directory server: sending HTTP request. */ #define DIR_CONN_STATE_CLIENT_SENDING 2 /** State for connection to directory server: reading HTTP response. */ #define DIR_CONN_STATE_CLIENT_READING 3 /** State for connection to directory server: happy and finished. */ #define DIR_CONN_STATE_CLIENT_FINISHED 4 /** State for connection at directory server: waiting for HTTP request. */ #define DIR_CONN_STATE_SERVER_COMMAND_WAIT 5 /** State for connection at directory server: sending HTTP response. */ #define DIR_CONN_STATE_SERVER_WRITING 6 #define DIR_CONN_STATE_MAX_ 6 /** True iff the purpose of conn means that it's a server-side * directory connection. */ #define DIR_CONN_IS_SERVER(conn) ((conn)->purpose == DIR_PURPOSE_SERVER) #define CONTROL_CONN_STATE_MIN_ 1 /** State for a control connection: Authenticated and accepting v1 commands. */ #define CONTROL_CONN_STATE_OPEN 1 /** State for a control connection: Waiting for authentication; speaking * protocol v1. */ #define CONTROL_CONN_STATE_NEEDAUTH 2 #define CONTROL_CONN_STATE_MAX_ 2 #define DIR_PURPOSE_MIN_ 4 /** A connection to a directory server: set after a v2 rendezvous * descriptor is downloaded. */ #define DIR_PURPOSE_HAS_FETCHED_RENDDESC_V2 4 /** A connection to a directory server: download one or more server * descriptors. */ #define DIR_PURPOSE_FETCH_SERVERDESC 6 /** A connection to a directory server: download one or more extra-info * documents. */ #define DIR_PURPOSE_FETCH_EXTRAINFO 7 /** A connection to a directory server: upload a server descriptor. */ #define DIR_PURPOSE_UPLOAD_DIR 8 /** A connection to a directory server: upload a v3 networkstatus vote. */ #define DIR_PURPOSE_UPLOAD_VOTE 10 /** A connection to a directory server: upload a v3 consensus signature */ #define DIR_PURPOSE_UPLOAD_SIGNATURES 11 /** A connection to a directory server: download one or more v3 networkstatus * votes. */ #define DIR_PURPOSE_FETCH_STATUS_VOTE 12 /** A connection to a directory server: download a v3 detached signatures * object for a consensus. */ #define DIR_PURPOSE_FETCH_DETACHED_SIGNATURES 13 /** A connection to a directory server: download a v3 networkstatus * consensus. */ #define DIR_PURPOSE_FETCH_CONSENSUS 14 /** A connection to a directory server: download one or more directory * authority certificates. */ #define DIR_PURPOSE_FETCH_CERTIFICATE 15 /** Purpose for connection at a directory server. */ #define DIR_PURPOSE_SERVER 16 /** A connection to a hidden service directory server: upload a v2 rendezvous * descriptor. */ #define DIR_PURPOSE_UPLOAD_RENDDESC_V2 17 /** A connection to a hidden service directory server: download a v2 rendezvous * descriptor. */ #define DIR_PURPOSE_FETCH_RENDDESC_V2 18 /** A connection to a directory server: download a microdescriptor. */ #define DIR_PURPOSE_FETCH_MICRODESC 19 #define DIR_PURPOSE_MAX_ 19 /** True iff p is a purpose corresponding to uploading data to a * directory server. */ #define DIR_PURPOSE_IS_UPLOAD(p) \ ((p)==DIR_PURPOSE_UPLOAD_DIR || \ (p)==DIR_PURPOSE_UPLOAD_VOTE || \ (p)==DIR_PURPOSE_UPLOAD_SIGNATURES) #define EXIT_PURPOSE_MIN_ 1 /** This exit stream wants to do an ordinary connect. */ #define EXIT_PURPOSE_CONNECT 1 /** This exit stream wants to do a resolve (either normal or reverse). */ #define EXIT_PURPOSE_RESOLVE 2 #define EXIT_PURPOSE_MAX_ 2 /* !!!! If any connection purpose is ever over 31, we must grow the type * field in connection_t. */ /** Circuit state: I'm the origin, still haven't done all my handshakes. */ #define CIRCUIT_STATE_BUILDING 0 /** Circuit state: Waiting to process the onionskin. */ #define CIRCUIT_STATE_ONIONSKIN_PENDING 1 /** Circuit state: I'd like to deliver a create, but my n_chan is still * connecting. */ #define CIRCUIT_STATE_CHAN_WAIT 2 /** Circuit state: onionskin(s) processed, ready to send/receive cells. */ #define CIRCUIT_STATE_OPEN 3 #define CIRCUIT_PURPOSE_MIN_ 1 /* these circuits were initiated elsewhere */ #define CIRCUIT_PURPOSE_OR_MIN_ 1 /** OR-side circuit purpose: normal circuit, at OR. */ #define CIRCUIT_PURPOSE_OR 1 /** OR-side circuit purpose: At OR, from Bob, waiting for intro from Alices. */ #define CIRCUIT_PURPOSE_INTRO_POINT 2 /** OR-side circuit purpose: At OR, from Alice, waiting for Bob. */ #define CIRCUIT_PURPOSE_REND_POINT_WAITING 3 /** OR-side circuit purpose: At OR, both circuits have this purpose. */ #define CIRCUIT_PURPOSE_REND_ESTABLISHED 4 #define CIRCUIT_PURPOSE_OR_MAX_ 4 /* these circuits originate at this node */ /* here's how circ client-side purposes work: * normal circuits are C_GENERAL. * circuits that are c_introducing are either on their way to * becoming open, or they are open and waiting for a * suitable rendcirc before they send the intro. * circuits that are c_introduce_ack_wait have sent the intro, * but haven't gotten a response yet. * circuits that are c_establish_rend are either on their way * to becoming open, or they are open and have sent the * establish_rendezvous cell but haven't received an ack. * circuits that are c_rend_ready are open and have received a * rend ack, but haven't heard from bob yet. if they have a * buildstate->pending_final_cpath then they're expecting a * cell from bob, else they're not. * circuits that are c_rend_ready_intro_acked are open, and * some intro circ has sent its intro and received an ack. * circuits that are c_rend_joined are open, have heard from * bob, and are talking to him. */ /** Client-side circuit purpose: Normal circuit, with cpath. */ #define CIRCUIT_PURPOSE_C_GENERAL 5 /** Client-side circuit purpose: at Alice, connecting to intro point. */ #define CIRCUIT_PURPOSE_C_INTRODUCING 6 /** Client-side circuit purpose: at Alice, sent INTRODUCE1 to intro point, * waiting for ACK/NAK. */ #define CIRCUIT_PURPOSE_C_INTRODUCE_ACK_WAIT 7 /** Client-side circuit purpose: at Alice, introduced and acked, closing. */ #define CIRCUIT_PURPOSE_C_INTRODUCE_ACKED 8 /** Client-side circuit purpose: at Alice, waiting for ack. */ #define CIRCUIT_PURPOSE_C_ESTABLISH_REND 9 /** Client-side circuit purpose: at Alice, waiting for Bob. */ #define CIRCUIT_PURPOSE_C_REND_READY 10 /** Client-side circuit purpose: at Alice, waiting for Bob, INTRODUCE * has been acknowledged. */ #define CIRCUIT_PURPOSE_C_REND_READY_INTRO_ACKED 11 /** Client-side circuit purpose: at Alice, rendezvous established. */ #define CIRCUIT_PURPOSE_C_REND_JOINED 12 /** This circuit is used for build time measurement only */ #define CIRCUIT_PURPOSE_C_MEASURE_TIMEOUT 13 #define CIRCUIT_PURPOSE_C_MAX_ 13 /** Hidden-service-side circuit purpose: at Bob, waiting for introductions. */ #define CIRCUIT_PURPOSE_S_ESTABLISH_INTRO 14 /** Hidden-service-side circuit purpose: at Bob, successfully established * intro. */ #define CIRCUIT_PURPOSE_S_INTRO 15 /** Hidden-service-side circuit purpose: at Bob, connecting to rend point. */ #define CIRCUIT_PURPOSE_S_CONNECT_REND 16 /** Hidden-service-side circuit purpose: at Bob, rendezvous established. */ #define CIRCUIT_PURPOSE_S_REND_JOINED 17 /** A testing circuit; not meant to be used for actual traffic. */ #define CIRCUIT_PURPOSE_TESTING 18 /** A controller made this circuit and Tor should not use it. */ #define CIRCUIT_PURPOSE_CONTROLLER 19 /** This circuit is used for path bias probing only */ #define CIRCUIT_PURPOSE_PATH_BIAS_TESTING 20 #define CIRCUIT_PURPOSE_MAX_ 20 /** A catch-all for unrecognized purposes. Currently we don't expect * to make or see any circuits with this purpose. */ #define CIRCUIT_PURPOSE_UNKNOWN 255 /** True iff the circuit purpose p is for a circuit that * originated at this node. */ #define CIRCUIT_PURPOSE_IS_ORIGIN(p) ((p)>CIRCUIT_PURPOSE_OR_MAX_) /** True iff the circuit purpose p is for a circuit that originated * here to serve as a client. (Hidden services don't count here.) */ #define CIRCUIT_PURPOSE_IS_CLIENT(p) \ ((p)> CIRCUIT_PURPOSE_OR_MAX_ && \ (p)<=CIRCUIT_PURPOSE_C_MAX_) /** True iff the circuit_t c is actually an origin_circuit_t. */ #define CIRCUIT_IS_ORIGIN(c) (CIRCUIT_PURPOSE_IS_ORIGIN((c)->purpose)) /** True iff the circuit purpose p is for an established rendezvous * circuit. */ #define CIRCUIT_PURPOSE_IS_ESTABLISHED_REND(p) \ ((p) == CIRCUIT_PURPOSE_C_REND_JOINED || \ (p) == CIRCUIT_PURPOSE_S_REND_JOINED) /** True iff the circuit_t c is actually an or_circuit_t */ #define CIRCUIT_IS_ORCIRC(c) (((circuit_t *)(c))->magic == OR_CIRCUIT_MAGIC) /** How many circuits do we want simultaneously in-progress to handle * a given stream? */ #define MIN_CIRCUITS_HANDLING_STREAM 2 /* These RELAY_COMMAND constants define values for relay cell commands, and * must match those defined in tor-spec.txt. */ #define RELAY_COMMAND_BEGIN 1 #define RELAY_COMMAND_DATA 2 #define RELAY_COMMAND_END 3 #define RELAY_COMMAND_CONNECTED 4 #define RELAY_COMMAND_SENDME 5 #define RELAY_COMMAND_EXTEND 6 #define RELAY_COMMAND_EXTENDED 7 #define RELAY_COMMAND_TRUNCATE 8 #define RELAY_COMMAND_TRUNCATED 9 #define RELAY_COMMAND_DROP 10 #define RELAY_COMMAND_RESOLVE 11 #define RELAY_COMMAND_RESOLVED 12 #define RELAY_COMMAND_BEGIN_DIR 13 #define RELAY_COMMAND_EXTEND2 14 #define RELAY_COMMAND_EXTENDED2 15 #define RELAY_COMMAND_ESTABLISH_INTRO 32 #define RELAY_COMMAND_ESTABLISH_RENDEZVOUS 33 #define RELAY_COMMAND_INTRODUCE1 34 #define RELAY_COMMAND_INTRODUCE2 35 #define RELAY_COMMAND_RENDEZVOUS1 36 #define RELAY_COMMAND_RENDEZVOUS2 37 #define RELAY_COMMAND_INTRO_ESTABLISHED 38 #define RELAY_COMMAND_RENDEZVOUS_ESTABLISHED 39 #define RELAY_COMMAND_INTRODUCE_ACK 40 /* Reasons why an OR connection is closed. */ #define END_OR_CONN_REASON_DONE 1 #define END_OR_CONN_REASON_REFUSED 2 /* connection refused */ #define END_OR_CONN_REASON_OR_IDENTITY 3 #define END_OR_CONN_REASON_CONNRESET 4 /* connection reset by peer */ #define END_OR_CONN_REASON_TIMEOUT 5 #define END_OR_CONN_REASON_NO_ROUTE 6 /* no route to host/net */ #define END_OR_CONN_REASON_IO_ERROR 7 /* read/write error */ #define END_OR_CONN_REASON_RESOURCE_LIMIT 8 /* sockets, buffers, etc */ #define END_OR_CONN_REASON_PT_MISSING 9 /* PT failed or not available */ #define END_OR_CONN_REASON_MISC 10 /* Reasons why we (or a remote OR) might close a stream. See tor-spec.txt for * documentation of these. The values must match. */ #define END_STREAM_REASON_MISC 1 #define END_STREAM_REASON_RESOLVEFAILED 2 #define END_STREAM_REASON_CONNECTREFUSED 3 #define END_STREAM_REASON_EXITPOLICY 4 #define END_STREAM_REASON_DESTROY 5 #define END_STREAM_REASON_DONE 6 #define END_STREAM_REASON_TIMEOUT 7 #define END_STREAM_REASON_NOROUTE 8 #define END_STREAM_REASON_HIBERNATING 9 #define END_STREAM_REASON_INTERNAL 10 #define END_STREAM_REASON_RESOURCELIMIT 11 #define END_STREAM_REASON_CONNRESET 12 #define END_STREAM_REASON_TORPROTOCOL 13 #define END_STREAM_REASON_NOTDIRECTORY 14 #define END_STREAM_REASON_ENTRYPOLICY 15 /* These high-numbered end reasons are not part of the official spec, * and are not intended to be put in relay end cells. They are here * to be more informative when sending back socks replies to the * application. */ /* XXXX 256 is no longer used; feel free to reuse it. */ /** We were unable to attach the connection to any circuit at all. */ /* XXXX the ways we use this one don't make a lot of sense. */ #define END_STREAM_REASON_CANT_ATTACH 257 /** We can't connect to any directories at all, so we killed our streams * before they can time out. */ #define END_STREAM_REASON_NET_UNREACHABLE 258 /** This is a SOCKS connection, and the client used (or misused) the SOCKS * protocol in a way we couldn't handle. */ #define END_STREAM_REASON_SOCKSPROTOCOL 259 /** This is a transparent proxy connection, but we can't extract the original * target address:port. */ #define END_STREAM_REASON_CANT_FETCH_ORIG_DEST 260 /** This is a connection on the NATD port, and the destination IP:Port was * either ill-formed or out-of-range. */ #define END_STREAM_REASON_INVALID_NATD_DEST 261 /** The target address is in a private network (like 127.0.0.1 or 10.0.0.1); * you don't want to do that over a randomly chosen exit */ #define END_STREAM_REASON_PRIVATE_ADDR 262 /** Bitwise-and this value with endreason to mask out all flags. */ #define END_STREAM_REASON_MASK 511 /** Bitwise-or this with the argument to control_event_stream_status * to indicate that the reason came from an END cell. */ #define END_STREAM_REASON_FLAG_REMOTE 512 /** Bitwise-or this with the argument to control_event_stream_status * to indicate that we already sent a CLOSED stream event. */ #define END_STREAM_REASON_FLAG_ALREADY_SENT_CLOSED 1024 /** Bitwise-or this with endreason to indicate that we already sent * a socks reply, and no further reply needs to be sent from * connection_mark_unattached_ap(). */ #define END_STREAM_REASON_FLAG_ALREADY_SOCKS_REPLIED 2048 /** Reason for remapping an AP connection's address: we have a cached * answer. */ #define REMAP_STREAM_SOURCE_CACHE 1 /** Reason for remapping an AP connection's address: the exit node told us an * answer. */ #define REMAP_STREAM_SOURCE_EXIT 2 /* 'type' values to use in RESOLVED cells. Specified in tor-spec.txt. */ #define RESOLVED_TYPE_HOSTNAME 0 #define RESOLVED_TYPE_IPV4 4 #define RESOLVED_TYPE_IPV6 6 #define RESOLVED_TYPE_ERROR_TRANSIENT 0xF0 #define RESOLVED_TYPE_ERROR 0xF1 /* Negative reasons are internal: we never send them in a DESTROY or TRUNCATE * call; they only go to the controller for tracking */ /* Closing introduction point that were opened in parallel. */ #define END_CIRC_REASON_IP_NOW_REDUNDANT -4 /** Our post-timeout circuit time measurement period expired. * We must give up now */ #define END_CIRC_REASON_MEASUREMENT_EXPIRED -3 /** We couldn't build a path for this circuit. */ #define END_CIRC_REASON_NOPATH -2 /** Catch-all "other" reason for closing origin circuits. */ #define END_CIRC_AT_ORIGIN -1 /* Reasons why we (or a remote OR) might close a circuit. See tor-spec.txt for * documentation of these. */ #define END_CIRC_REASON_MIN_ 0 #define END_CIRC_REASON_NONE 0 #define END_CIRC_REASON_TORPROTOCOL 1 #define END_CIRC_REASON_INTERNAL 2 #define END_CIRC_REASON_REQUESTED 3 #define END_CIRC_REASON_HIBERNATING 4 #define END_CIRC_REASON_RESOURCELIMIT 5 #define END_CIRC_REASON_CONNECTFAILED 6 #define END_CIRC_REASON_OR_IDENTITY 7 #define END_CIRC_REASON_CHANNEL_CLOSED 8 #define END_CIRC_REASON_FINISHED 9 #define END_CIRC_REASON_TIMEOUT 10 #define END_CIRC_REASON_DESTROYED 11 #define END_CIRC_REASON_NOSUCHSERVICE 12 #define END_CIRC_REASON_MAX_ 12 /** Bitwise-OR this with the argument to circuit_mark_for_close() or * control_event_circuit_status() to indicate that the reason was * passed through from a destroy or truncate cell. */ #define END_CIRC_REASON_FLAG_REMOTE 512 /** Length of 'y' portion of 'y.onion' URL. */ #define REND_SERVICE_ID_LEN_BASE32 16 /** Length of 'y.onion' including '.onion' URL. */ #define REND_SERVICE_ADDRESS_LEN (16+1+5) /** Length of a binary-encoded rendezvous service ID. */ #define REND_SERVICE_ID_LEN 10 /** Time period for which a v2 descriptor will be valid. */ #define REND_TIME_PERIOD_V2_DESC_VALIDITY (24*60*60) /** Time period within which two sets of v2 descriptors will be uploaded in * parallel. */ #define REND_TIME_PERIOD_OVERLAPPING_V2_DESCS (60*60) /** Number of non-consecutive replicas (i.e. distributed somewhere * in the ring) for a descriptor. */ #define REND_NUMBER_OF_NON_CONSECUTIVE_REPLICAS 2 /** Number of consecutive replicas for a descriptor. */ #define REND_NUMBER_OF_CONSECUTIVE_REPLICAS 3 /** Length of v2 descriptor ID (32 base32 chars = 160 bits). */ #define REND_DESC_ID_V2_LEN_BASE32 32 /** Length of the base32-encoded secret ID part of versioned hidden service * descriptors. */ #define REND_SECRET_ID_PART_LEN_BASE32 32 /** Length of the base32-encoded hash of an introduction point's * identity key. */ #define REND_INTRO_POINT_ID_LEN_BASE32 32 /** Length of the descriptor cookie that is used for client authorization * to hidden services. */ #define REND_DESC_COOKIE_LEN 16 /** Length of the base64-encoded descriptor cookie that is used for * exchanging client authorization between hidden service and client. */ #define REND_DESC_COOKIE_LEN_BASE64 22 /** Length of client identifier in encrypted introduction points for hidden * service authorization type 'basic'. */ #define REND_BASIC_AUTH_CLIENT_ID_LEN 4 /** Multiple of the number of clients to which the real number of clients * is padded with fake clients for hidden service authorization type * 'basic'. */ #define REND_BASIC_AUTH_CLIENT_MULTIPLE 16 /** Length of client entry consisting of client identifier and encrypted * session key for hidden service authorization type 'basic'. */ #define REND_BASIC_AUTH_CLIENT_ENTRY_LEN (REND_BASIC_AUTH_CLIENT_ID_LEN \ + CIPHER_KEY_LEN) /** Maximum size of v2 hidden service descriptors. */ #define REND_DESC_MAX_SIZE (20 * 1024) /** Legal characters for use in authorized client names for a hidden * service. */ #define REND_LEGAL_CLIENTNAME_CHARACTERS \ "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+-_" /** Maximum length of authorized client names for a hidden service. */ #define REND_CLIENTNAME_MAX_LEN 16 /** Length of the rendezvous cookie that is used to connect circuits at the * rendezvous point. */ #define REND_COOKIE_LEN DIGEST_LEN /** Client authorization type that a hidden service performs. */ typedef enum rend_auth_type_t { REND_NO_AUTH = 0, REND_BASIC_AUTH = 1, REND_STEALTH_AUTH = 2, } rend_auth_type_t; /** Client-side configuration of authorization for a hidden service. */ typedef struct rend_service_authorization_t { char descriptor_cookie[REND_DESC_COOKIE_LEN]; char onion_address[REND_SERVICE_ADDRESS_LEN+1]; rend_auth_type_t auth_type; } rend_service_authorization_t; /** Client- and server-side data that is used for hidden service connection * establishment. Not all fields contain data depending on where this struct * is used. */ typedef struct rend_data_t { /** Onion address (without the .onion part) that a client requests. */ char onion_address[REND_SERVICE_ID_LEN_BASE32+1]; /** Descriptor ID for each replicas computed from the onion address. If * the onion address is empty, this array MUST be empty. We keep them so * we know when to purge our entry in the last hsdir request table. */ char descriptor_id[REND_NUMBER_OF_NON_CONSECUTIVE_REPLICAS][DIGEST_LEN]; /** (Optional) descriptor cookie that is used by a client. */ char descriptor_cookie[REND_DESC_COOKIE_LEN]; /** Authorization type for accessing a service used by a client. */ rend_auth_type_t auth_type; /** Descriptor ID for a client request. The control port command HSFETCH * uses this. It's set if the descriptor query should only use this * descriptor ID. */ char desc_id_fetch[DIGEST_LEN]; /** Hash of the hidden service's PK used by a service. */ char rend_pk_digest[DIGEST_LEN]; /** Rendezvous cookie used by both, client and service. */ char rend_cookie[REND_COOKIE_LEN]; /** List of HSDir fingerprints on which this request has been sent to. * This contains binary identity digest of the directory. */ smartlist_t *hsdirs_fp; /** Number of streams associated with this rendezvous circuit. */ int nr_streams; } rend_data_t; /** Time interval for tracking replays of DH public keys received in * INTRODUCE2 cells. Used only to avoid launching multiple * simultaneous attempts to connect to the same rendezvous point. */ #define REND_REPLAY_TIME_INTERVAL (5 * 60) /** Used to indicate which way a cell is going on a circuit. */ typedef enum { CELL_DIRECTION_IN=1, /**< The cell is moving towards the origin. */ CELL_DIRECTION_OUT=2, /**< The cell is moving away from the origin. */ } cell_direction_t; /** Initial value for both sides of a circuit transmission window when the * circuit is initialized. Measured in cells. */ #define CIRCWINDOW_START 1000 #define CIRCWINDOW_START_MIN 100 #define CIRCWINDOW_START_MAX 1000 /** Amount to increment a circuit window when we get a circuit SENDME. */ #define CIRCWINDOW_INCREMENT 100 /** Initial value on both sides of a stream transmission window when the * stream is initialized. Measured in cells. */ #define STREAMWINDOW_START 500 /** Amount to increment a stream window when we get a stream SENDME. */ #define STREAMWINDOW_INCREMENT 50 /** Maximum number of queued cells on a circuit for which we are the * midpoint before we give up and kill it. This must be >= circwindow * to avoid killing innocent circuits, and >= circwindow*2 to give * leaky-pipe a chance of working someday. The ORCIRC_MAX_MIDDLE_KILL_THRESH * ratio controls the margin of error between emitting a warning and * killing the circuit. */ #define ORCIRC_MAX_MIDDLE_CELLS (CIRCWINDOW_START_MAX*2) /** Ratio of hard (circuit kill) to soft (warning) thresholds for the * ORCIRC_MAX_MIDDLE_CELLS tests. */ #define ORCIRC_MAX_MIDDLE_KILL_THRESH (1.1f) /* Cell commands. These values are defined in tor-spec.txt. */ #define CELL_PADDING 0 #define CELL_CREATE 1 #define CELL_CREATED 2 #define CELL_RELAY 3 #define CELL_DESTROY 4 #define CELL_CREATE_FAST 5 #define CELL_CREATED_FAST 6 #define CELL_VERSIONS 7 #define CELL_NETINFO 8 #define CELL_RELAY_EARLY 9 #define CELL_CREATE2 10 #define CELL_CREATED2 11 #define CELL_VPADDING 128 #define CELL_CERTS 129 #define CELL_AUTH_CHALLENGE 130 #define CELL_AUTHENTICATE 131 #define CELL_AUTHORIZE 132 #define CELL_COMMAND_MAX_ 132 /** How long to test reachability before complaining to the user. */ #define TIMEOUT_UNTIL_UNREACHABILITY_COMPLAINT (20*60) /** Legal characters in a nickname. */ #define LEGAL_NICKNAME_CHARACTERS \ "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" /** Name to use in client TLS certificates if no nickname is given. Once * Tor 0.1.2.x is obsolete, we can remove this. */ #define DEFAULT_CLIENT_NICKNAME "client" /** Name chosen by routers that don't configure nicknames */ #define UNNAMED_ROUTER_NICKNAME "Unnamed" /** Number of bytes in a SOCKS4 header. */ #define SOCKS4_NETWORK_LEN 8 /* * Relay payload: * Relay command [1 byte] * Recognized [2 bytes] * Stream ID [2 bytes] * Partial SHA-1 [4 bytes] * Length [2 bytes] * Relay payload [498 bytes] */ /** Number of bytes in a cell, minus cell header. */ #define CELL_PAYLOAD_SIZE 509 /** Number of bytes in a cell transmitted over the network, in the longest * form */ #define CELL_MAX_NETWORK_SIZE 514 /** Maximum length of a header on a variable-length cell. */ #define VAR_CELL_MAX_HEADER_SIZE 7 static int get_cell_network_size(int wide_circ_ids); static INLINE int get_cell_network_size(int wide_circ_ids) { return wide_circ_ids ? CELL_MAX_NETWORK_SIZE : CELL_MAX_NETWORK_SIZE - 2; } static int get_var_cell_header_size(int wide_circ_ids); static INLINE int get_var_cell_header_size(int wide_circ_ids) { return wide_circ_ids ? VAR_CELL_MAX_HEADER_SIZE : VAR_CELL_MAX_HEADER_SIZE - 2; } static int get_circ_id_size(int wide_circ_ids); static INLINE int get_circ_id_size(int wide_circ_ids) { return wide_circ_ids ? 4 : 2; } /** Number of bytes in a relay cell's header (not including general cell * header). */ #define RELAY_HEADER_SIZE (1+2+2+4+2) /** Largest number of bytes that can fit in a relay cell payload. */ #define RELAY_PAYLOAD_SIZE (CELL_PAYLOAD_SIZE-RELAY_HEADER_SIZE) /** Identifies a circuit on an or_connection */ typedef uint32_t circid_t; /** Identifies a stream on a circuit */ typedef uint16_t streamid_t; /* channel_t typedef; struct channel_s is in channel.h */ typedef struct channel_s channel_t; /* channel_listener_t typedef; struct channel_listener_s is in channel.h */ typedef struct channel_listener_s channel_listener_t; /* channel states for channel_t */ typedef enum { /* * Closed state - channel is inactive * * Permitted transitions from: * - CHANNEL_STATE_CLOSING * Permitted transitions to: * - CHANNEL_STATE_OPENING */ CHANNEL_STATE_CLOSED = 0, /* * Opening state - channel is trying to connect * * Permitted transitions from: * - CHANNEL_STATE_CLOSED * Permitted transitions to: * - CHANNEL_STATE_CLOSING * - CHANNEL_STATE_ERROR * - CHANNEL_STATE_OPEN */ CHANNEL_STATE_OPENING, /* * Open state - channel is active and ready for use * * Permitted transitions from: * - CHANNEL_STATE_MAINT * - CHANNEL_STATE_OPENING * Permitted transitions to: * - CHANNEL_STATE_CLOSING * - CHANNEL_STATE_ERROR * - CHANNEL_STATE_MAINT */ CHANNEL_STATE_OPEN, /* * Maintenance state - channel is temporarily offline for subclass specific * maintenance activities such as TLS renegotiation. * * Permitted transitions from: * - CHANNEL_STATE_OPEN * Permitted transitions to: * - CHANNEL_STATE_CLOSING * - CHANNEL_STATE_ERROR * - CHANNEL_STATE_OPEN */ CHANNEL_STATE_MAINT, /* * Closing state - channel is shutting down * * Permitted transitions from: * - CHANNEL_STATE_MAINT * - CHANNEL_STATE_OPEN * Permitted transitions to: * - CHANNEL_STATE_CLOSED, * - CHANNEL_STATE_ERROR */ CHANNEL_STATE_CLOSING, /* * Error state - channel has experienced a permanent error * * Permitted transitions from: * - CHANNEL_STATE_CLOSING * - CHANNEL_STATE_MAINT * - CHANNEL_STATE_OPENING * - CHANNEL_STATE_OPEN * Permitted transitions to: * - None */ CHANNEL_STATE_ERROR, /* * Placeholder for maximum state value */ CHANNEL_STATE_LAST } channel_state_t; /* channel listener states for channel_listener_t */ typedef enum { /* * Closed state - channel listener is inactive * * Permitted transitions from: * - CHANNEL_LISTENER_STATE_CLOSING * Permitted transitions to: * - CHANNEL_LISTENER_STATE_LISTENING */ CHANNEL_LISTENER_STATE_CLOSED = 0, /* * Listening state - channel listener is listening for incoming * connections * * Permitted transitions from: * - CHANNEL_LISTENER_STATE_CLOSED * Permitted transitions to: * - CHANNEL_LISTENER_STATE_CLOSING * - CHANNEL_LISTENER_STATE_ERROR */ CHANNEL_LISTENER_STATE_LISTENING, /* * Closing state - channel listener is shutting down * * Permitted transitions from: * - CHANNEL_LISTENER_STATE_LISTENING * Permitted transitions to: * - CHANNEL_LISTENER_STATE_CLOSED, * - CHANNEL_LISTENER_STATE_ERROR */ CHANNEL_LISTENER_STATE_CLOSING, /* * Error state - channel listener has experienced a permanent error * * Permitted transitions from: * - CHANNEL_STATE_CLOSING * - CHANNEL_STATE_LISTENING * Permitted transitions to: * - None */ CHANNEL_LISTENER_STATE_ERROR, /* * Placeholder for maximum state value */ CHANNEL_LISTENER_STATE_LAST } channel_listener_state_t; /* TLS channel stuff */ typedef struct channel_tls_s channel_tls_t; /* circuitmux_t typedef; struct circuitmux_s is in circuitmux.h */ typedef struct circuitmux_s circuitmux_t; /** Parsed onion routing cell. All communication between nodes * is via cells. */ typedef struct cell_t { circid_t circ_id; /**< Circuit which received the cell. */ uint8_t command; /**< Type of the cell: one of CELL_PADDING, CELL_CREATE, * CELL_DESTROY, etc */ uint8_t payload[CELL_PAYLOAD_SIZE]; /**< Cell body. */ } cell_t; /** Parsed variable-length onion routing cell. */ typedef struct var_cell_t { /** Type of the cell: CELL_VERSIONS, etc. */ uint8_t command; /** Circuit thich received the cell */ circid_t circ_id; /** Number of bytes actually stored in payload */ uint16_t payload_len; /** Payload of this cell */ uint8_t payload[FLEXIBLE_ARRAY_MEMBER]; } var_cell_t; /** A parsed Extended ORPort message. */ typedef struct ext_or_cmd_t { uint16_t cmd; /** Command type */ uint16_t len; /** Body length */ char body[FLEXIBLE_ARRAY_MEMBER]; /** Message body */ } ext_or_cmd_t; /** A cell as packed for writing to the network. */ typedef struct packed_cell_t { /** Next cell queued on this circuit. */ TOR_SIMPLEQ_ENTRY(packed_cell_t) next; char body[CELL_MAX_NETWORK_SIZE]; /**< Cell as packed for network. */ uint32_t inserted_time; /**< Time (in milliseconds since epoch, with high * bits truncated) when this cell was inserted. */ } packed_cell_t; /** A queue of cells on a circuit, waiting to be added to the * or_connection_t's outbuf. */ typedef struct cell_queue_t { /** Linked list of packed_cell_t*/ TOR_SIMPLEQ_HEAD(cell_simpleq, packed_cell_t) head; int n; /**< The number of cells in the queue. */ } cell_queue_t; /** Beginning of a RELAY cell payload. */ typedef struct { uint8_t command; /**< The end-to-end relay command. */ uint16_t recognized; /**< Used to tell whether cell is for us. */ streamid_t stream_id; /**< Which stream is this cell associated with? */ char integrity[4]; /**< Used to tell whether cell is corrupted. */ uint16_t length; /**< How long is the payload body? */ } relay_header_t; typedef struct buf_t buf_t; typedef struct socks_request_t socks_request_t; #ifdef USE_BUFFEREVENTS #define generic_buffer_t struct evbuffer #else #define generic_buffer_t buf_t #endif typedef struct entry_port_cfg_t { /* Client port types (socks, dns, trans, natd) only: */ uint8_t isolation_flags; /**< Zero or more isolation flags */ int session_group; /**< A session group, or -1 if this port is not in a * session group. */ /* Socks only: */ /** When both no-auth and user/pass are advertised by a SOCKS client, select * no-auth. */ unsigned int socks_prefer_no_auth : 1; /** When ISO_SOCKSAUTH is in use, Keep-Alive circuits indefinitely. */ unsigned int socks_iso_keep_alive : 1; /* Client port types only: */ unsigned int ipv4_traffic : 1; unsigned int ipv6_traffic : 1; unsigned int prefer_ipv6 : 1; /** For a socks listener: should we cache IPv4/IPv6 DNS information that * exit nodes tell us? * * @{ */ unsigned int cache_ipv4_answers : 1; unsigned int cache_ipv6_answers : 1; /** @} */ /** For a socks listeners: if we find an answer in our client-side DNS cache, * should we use it? * * @{ */ unsigned int use_cached_ipv4_answers : 1; unsigned int use_cached_ipv6_answers : 1; /** @} */ /** For socks listeners: When we can automap an address to IPv4 or IPv6, * do we prefer IPv6? */ unsigned int prefer_ipv6_virtaddr : 1; } entry_port_cfg_t; typedef struct server_port_cfg_t { /* Server port types (or, dir) only: */ unsigned int no_advertise : 1; unsigned int no_listen : 1; unsigned int all_addrs : 1; unsigned int bind_ipv4_only : 1; unsigned int bind_ipv6_only : 1; } server_port_cfg_t; /* Values for connection_t.magic: used to make sure that downcasts (casts from * connection_t to foo_connection_t) are safe. */ #define BASE_CONNECTION_MAGIC 0x7C3C304Eu #define OR_CONNECTION_MAGIC 0x7D31FF03u #define EDGE_CONNECTION_MAGIC 0xF0374013u #define ENTRY_CONNECTION_MAGIC 0xbb4a5703 #define DIR_CONNECTION_MAGIC 0x9988ffeeu #define CONTROL_CONNECTION_MAGIC 0x8abc765du #define LISTENER_CONNECTION_MAGIC 0x1a1ac741u /** Description of a connection to another host or process, and associated * data. * * A connection is named based on what it's connected to -- an "OR * connection" has a Tor node on the other end, an "exit * connection" has a website or other server on the other end, and an * "AP connection" has an application proxy (and thus a user) on the * other end. * * Every connection has a type and a state. Connections never change * their type, but can go through many state changes in their lifetime. * * Every connection has two associated input and output buffers. * Listeners don't use them. For non-listener connections, incoming * data is appended to conn->inbuf, and outgoing data is taken from * conn->outbuf. Connections differ primarily in the functions called * to fill and drain these buffers. */ typedef struct connection_t { uint32_t magic; /**< For memory debugging: must equal one of * *_CONNECTION_MAGIC. */ uint8_t state; /**< Current state of this connection. */ unsigned int type:5; /**< What kind of connection is this? */ unsigned int purpose:5; /**< Only used for DIR and EXIT types currently. */ /* The next fields are all one-bit booleans. Some are only applicable to * connection subtypes, but we hold them here anyway, to save space. */ unsigned int read_blocked_on_bw:1; /**< Boolean: should we start reading * again once the bandwidth throttler allows it? */ unsigned int write_blocked_on_bw:1; /**< Boolean: should we start writing * again once the bandwidth throttler allows * writes? */ unsigned int hold_open_until_flushed:1; /**< Despite this connection's being * marked for close, do we flush it * before closing it? */ unsigned int inbuf_reached_eof:1; /**< Boolean: did read() return 0 on this * conn? */ /** Set to 1 when we're inside connection_flushed_some to keep us from * calling connection_handle_write() recursively. */ unsigned int in_flushed_some:1; /** True if connection_handle_write is currently running on this connection. */ unsigned int in_connection_handle_write:1; /* For linked connections: */ unsigned int linked:1; /**< True if there is, or has been, a linked_conn. */ /** True iff we'd like to be notified about read events from the * linked conn. */ unsigned int reading_from_linked_conn:1; /** True iff we're willing to write to the linked conn. */ unsigned int writing_to_linked_conn:1; /** True iff we're currently able to read on the linked conn, and our * read_event should be made active with libevent. */ unsigned int active_on_link:1; /** True iff we've called connection_close_immediate() on this linked * connection. */ unsigned int linked_conn_is_closed:1; /** CONNECT/SOCKS proxy client handshake state (for outgoing connections). */ unsigned int proxy_state:4; /** Our socket; set to TOR_INVALID_SOCKET if this connection is closed, * or has no socket. */ tor_socket_t s; int conn_array_index; /**< Index into the global connection array. */ struct event *read_event; /**< Libevent event structure. */ struct event *write_event; /**< Libevent event structure. */ buf_t *inbuf; /**< Buffer holding data read over this connection. */ buf_t *outbuf; /**< Buffer holding data to write over this connection. */ size_t outbuf_flushlen; /**< How much data should we try to flush from the * outbuf? */ time_t timestamp_lastread; /**< When was the last time libevent said we could * read? */ time_t timestamp_lastwritten; /**< When was the last time libevent said we * could write? */ #ifdef USE_BUFFEREVENTS struct bufferevent *bufev; /**< A Libevent buffered IO structure. */ #endif time_t timestamp_created; /**< When was this connection_t created? */ /* XXXX_IP6 make this IPv6-capable */ int socket_family; /**< Address family of this connection's socket. Usually * AF_INET, but it can also be AF_UNIX, or in the future * AF_INET6 */ tor_addr_t addr; /**< IP of the other side of the connection; used to * identify routers, along with port. */ uint16_t port; /**< If non-zero, port on the other end * of the connection. */ uint16_t marked_for_close; /**< Should we close this conn on the next * iteration of the main loop? (If true, holds * the line number where this connection was * marked.) */ const char *marked_for_close_file; /**< For debugging: in which file were * we marked for close? */ char *address; /**< FQDN (or IP) of the guy on the other end. * strdup into this, because free_connection() frees it. */ /** Another connection that's connected to this one in lieu of a socket. */ struct connection_t *linked_conn; /** Unique identifier for this connection on this Tor instance. */ uint64_t global_identifier; /** Bytes read since last call to control_event_conn_bandwidth_used(). * Only used if we're configured to emit CONN_BW events. */ uint32_t n_read_conn_bw; /** Bytes written since last call to control_event_conn_bandwidth_used(). * Only used if we're configured to emit CONN_BW events. */ uint32_t n_written_conn_bw; } connection_t; /** Subtype of connection_t; used for a listener socket. */ typedef struct listener_connection_t { connection_t base_; /** If the connection is a CONN_TYPE_AP_DNS_LISTENER, this field points * to the evdns_server_port it uses to listen to and answer connections. */ struct evdns_server_port *dns_server_port; entry_port_cfg_t entry_cfg; } listener_connection_t; /** Minimum length of the random part of an AUTH_CHALLENGE cell. */ #define OR_AUTH_CHALLENGE_LEN 32 /** * @name Certificate types for CERTS cells. * * These values are defined by the protocol, and affect how an X509 * certificate in a CERTS cell is interpreted and used. * * @{ */ /** A certificate that authenticates a TLS link key. The subject key * must match the key used in the TLS handshake; it must be signed by * the identity key. */ #define OR_CERT_TYPE_TLS_LINK 1 /** A self-signed identity certificate. The subject key must be a * 1024-bit RSA key. */ #define OR_CERT_TYPE_ID_1024 2 /** A certificate that authenticates a key used in an AUTHENTICATE cell * in the v3 handshake. The subject key must be a 1024-bit RSA key; it * must be signed by the identity key */ #define OR_CERT_TYPE_AUTH_1024 3 /** DOCDOC */ #define OR_CERT_TYPE_RSA_ED_CROSSCERT 7 /**@}*/ /** The one currently supported type of AUTHENTICATE cell. It contains * a bunch of structures signed with an RSA1024 key. The signed * structures include a HMAC using negotiated TLS secrets, and a digest * of all cells sent or received before the AUTHENTICATE cell (including * the random server-generated AUTH_CHALLENGE cell). */ #define AUTHTYPE_RSA_SHA256_TLSSECRET 1 /** The length of the part of the AUTHENTICATE cell body that the client and * server can generate independently (when using RSA_SHA256_TLSSECRET). It * contains everything except the client's timestamp, the client's randomly * generated nonce, and the signature. */ #define V3_AUTH_FIXED_PART_LEN (8+(32*6)) /** The length of the part of the AUTHENTICATE cell body that the client * signs. */ #define V3_AUTH_BODY_LEN (V3_AUTH_FIXED_PART_LEN + 8 + 16) /** Stores flags and information related to the portion of a v2/v3 Tor OR * connection handshake that happens after the TLS handshake is finished. */ typedef struct or_handshake_state_t { /** When was the VERSIONS cell sent on this connection? Used to get * an estimate of the skew in the returning NETINFO reply. */ time_t sent_versions_at; /** True iff we originated this connection */ unsigned int started_here : 1; /** True iff we have received and processed a VERSIONS cell. */ unsigned int received_versions : 1; /** True iff we have received and processed an AUTH_CHALLENGE cell */ unsigned int received_auth_challenge : 1; /** True iff we have received and processed a CERTS cell. */ unsigned int received_certs_cell : 1; /** True iff we have received and processed an AUTHENTICATE cell */ unsigned int received_authenticate : 1; /* True iff we've received valid authentication to some identity. */ unsigned int authenticated : 1; /* True iff we have sent a netinfo cell */ unsigned int sent_netinfo : 1; /** True iff we should feed outgoing cells into digest_sent and * digest_received respectively. * * From the server's side of the v3 handshake, we want to capture everything * from the VERSIONS cell through and including the AUTH_CHALLENGE cell. * From the client's, we want to capture everything from the VERSIONS cell * through but *not* including the AUTHENTICATE cell. * * @{ */ unsigned int digest_sent_data : 1; unsigned int digest_received_data : 1; /**@}*/ /** Identity digest that we have received and authenticated for our peer * on this connection. */ uint8_t authenticated_peer_id[DIGEST_LEN]; /** Digests of the cells that we have sent or received as part of a V3 * handshake. Used for making and checking AUTHENTICATE cells. * * @{ */ crypto_digest_t *digest_sent; crypto_digest_t *digest_received; /** @} */ /** Certificates that a connection initiator sent us in a CERTS cell; we're * holding on to them until we get an AUTHENTICATE cell. * * @{ */ /** The cert for the key that's supposed to sign the AUTHENTICATE cell */ tor_x509_cert_t *auth_cert; /** A self-signed identity certificate */ tor_x509_cert_t *id_cert; /**@}*/ } or_handshake_state_t; /** Length of Extended ORPort connection identifier. */ #define EXT_OR_CONN_ID_LEN DIGEST_LEN /* 20 */ /* * OR_CONN_HIGHWATER and OR_CONN_LOWWATER moved from connection_or.c so * channeltls.c can see them too. */ /** When adding cells to an OR connection's outbuf, keep adding until the * outbuf is at least this long, or we run out of cells. */ #define OR_CONN_HIGHWATER (32*1024) /** Add cells to an OR connection's outbuf whenever the outbuf's data length * drops below this size. */ #define OR_CONN_LOWWATER (16*1024) /** Subtype of connection_t for an "OR connection" -- that is, one that speaks * cells over TLS. */ typedef struct or_connection_t { connection_t base_; /** Hash of the public RSA key for the other side's identity key, or zeroes * if the other side hasn't shown us a valid identity key. */ char identity_digest[DIGEST_LEN]; /** Extended ORPort connection identifier. */ char *ext_or_conn_id; /** This is the ClientHash value we expect to receive from the * client during the Extended ORPort authentication protocol. We * compute it upon receiving the ClientNoce from the client, and we * compare it with the acual ClientHash value sent by the * client. */ char *ext_or_auth_correct_client_hash; /** String carrying the name of the pluggable transport * (e.g. "obfs2") that is obfuscating this connection. If no * pluggable transports are used, it's NULL. */ char *ext_or_transport; char *nickname; /**< Nickname of OR on other side (if any). */ tor_tls_t *tls; /**< TLS connection state. */ int tls_error; /**< Last tor_tls error code. */ /** When we last used this conn for any client traffic. If not * recent, we can rate limit it further. */ /* Channel using this connection */ channel_tls_t *chan; tor_addr_t real_addr; /**< The actual address that this connection came from * or went to. The addr field is prone to * getting overridden by the address from the router * descriptor matching identity_digest. */ /** Should this connection be used for extending circuits to the server * matching the identity_digest field? Set to true if we're pretty * sure we aren't getting MITMed, either because we're connected to an * address listed in a server descriptor, or because an authenticated * NETINFO cell listed the address we're connected to as recognized. */ unsigned int is_canonical:1; /** True iff we have decided that the other end of this connection * is a client. Connections with this flag set should never be used * to satisfy an EXTEND request. */ unsigned int is_connection_with_client:1; /** True iff this is an outgoing connection. */ unsigned int is_outgoing:1; unsigned int proxy_type:2; /**< One of PROXY_NONE...PROXY_SOCKS5 */ unsigned int wide_circ_ids:1; /** True iff this connection has had its bootstrap failure logged with * control_event_bootstrap_problem. */ unsigned int have_noted_bootstrap_problem:1; uint16_t link_proto; /**< What protocol version are we using? 0 for * "none negotiated yet." */ uint16_t idle_timeout; /**< How long can this connection sit with no * circuits on it before we close it? Based on * IDLE_CIRCUIT_TIMEOUT_{NON,}CANONICAL and * on is_canonical, randomized. */ or_handshake_state_t *handshake_state; /**< If we are setting this connection * up, state information to do so. */ time_t timestamp_lastempty; /**< When was the outbuf last completely empty?*/ /* bandwidth* and *_bucket only used by ORs in OPEN state: */ int bandwidthrate; /**< Bytes/s added to the bucket. (OPEN ORs only.) */ int bandwidthburst; /**< Max bucket size for this conn. (OPEN ORs only.) */ #ifndef USE_BUFFEREVENTS int read_bucket; /**< When this hits 0, stop receiving. Every second we * add 'bandwidthrate' to this, capping it at * bandwidthburst. (OPEN ORs only) */ int write_bucket; /**< When this hits 0, stop writing. Like read_bucket. */ #else /** A rate-limiting configuration object to determine how this connection * set its read- and write- limits. */ /* XXXX we could share this among all connections. */ struct ev_token_bucket_cfg *bucket_cfg; #endif struct or_connection_t *next_with_same_id; /**< Next connection with same * identity digest as this one. */ /** Last emptied read token bucket in msec since midnight; only used if * TB_EMPTY events are enabled. */ uint32_t read_emptied_time; /** Last emptied write token bucket in msec since midnight; only used if * TB_EMPTY events are enabled. */ uint32_t write_emptied_time; /* * Count the number of bytes flushed out on this orconn, and the number of * bytes TLS actually sent - used for overhead estimation for scheduling. */ uint64_t bytes_xmitted, bytes_xmitted_by_tls; } or_connection_t; /** Subtype of connection_t for an "edge connection" -- that is, an entry (ap) * connection, or an exit. */ typedef struct edge_connection_t { connection_t base_; struct edge_connection_t *next_stream; /**< Points to the next stream at this * edge, if any */ int package_window; /**< How many more relay cells can I send into the * circuit? */ int deliver_window; /**< How many more relay cells can end at me? */ struct circuit_t *on_circuit; /**< The circuit (if any) that this edge * connection is using. */ /** A pointer to which node in the circ this conn exits at. Set for AP * connections and for hidden service exit connections. */ struct crypt_path_t *cpath_layer; /** What rendezvous service are we querying for (if an AP) or providing (if * an exit)? */ rend_data_t *rend_data; uint32_t address_ttl; /**< TTL for address-to-addr mapping on exit * connection. Exit connections only. */ uint32_t begincell_flags; /** Flags sent or received in the BEGIN cell * for this connection */ streamid_t stream_id; /**< The stream ID used for this edge connection on its * circuit */ /** The reason why this connection is closing; passed to the controller. */ uint16_t end_reason; /** Bytes read since last call to control_event_stream_bandwidth_used() */ uint32_t n_read; /** Bytes written since last call to control_event_stream_bandwidth_used() */ uint32_t n_written; /** True iff this connection is for a DNS request only. */ unsigned int is_dns_request:1; /** True iff this connection is for a PTR DNS request. (exit only) */ unsigned int is_reverse_dns_lookup:1; unsigned int edge_has_sent_end:1; /**< For debugging; only used on edge * connections. Set once we've set the stream end, * and check in connection_about_to_close_connection(). */ /** True iff we've blocked reading until the circuit has fewer queued * cells. */ unsigned int edge_blocked_on_circ:1; /** Unique ID for directory requests; this used to be in connection_t, but * that's going away and being used on channels instead. We still tag * edge connections with dirreq_id from circuits, so it's copied here. */ uint64_t dirreq_id; } edge_connection_t; /** Subtype of edge_connection_t for an "entry connection" -- that is, a SOCKS * connection, a DNS request, a TransPort connection or a NATD connection */ typedef struct entry_connection_t { edge_connection_t edge_; /** Nickname of planned exit node -- used with .exit support. */ char *chosen_exit_name; socks_request_t *socks_request; /**< SOCKS structure describing request (AP * only.) */ /* === Isolation related, AP only. === */ entry_port_cfg_t entry_cfg; /** AP only: The newnym epoch in which we created this connection. */ unsigned nym_epoch; /** AP only: The original requested address before we rewrote it. */ char *original_dest_address; /* Other fields to isolate on already exist. The ClientAddr is addr. The ClientProtocol is a combination of type and socks_request-> socks_version. SocksAuth is socks_request->username/password. DestAddr is in socks_request->address. */ /** Number of times we've reassigned this application connection to * a new circuit. We keep track because the timeout is longer if we've * already retried several times. */ uint8_t num_socks_retries; /** For AP connections only: buffer for data that we have sent * optimistically, which we might need to re-send if we have to * retry this connection. */ generic_buffer_t *pending_optimistic_data; /* For AP connections only: buffer for data that we previously sent * optimistically which we are currently re-sending as we retry this * connection. */ generic_buffer_t *sending_optimistic_data; /** If this is a DNSPort connection, this field holds the pending DNS * request that we're going to try to answer. */ struct evdns_server_request *dns_server_request; #define NUM_CIRCUITS_LAUNCHED_THRESHOLD 10 /** Number of times we've launched a circuit to handle this stream. If * it gets too high, that could indicate an inconsistency between our * "launch a circuit to handle this stream" logic and our "attach our * stream to one of the available circuits" logic. */ unsigned int num_circuits_launched:4; /** True iff this stream must attach to a one-hop circuit (e.g. for * begin_dir). */ unsigned int want_onehop:1; /** True iff this stream should use a BEGIN_DIR relay command to establish * itself rather than BEGIN (either via onehop or via a whole circuit). */ unsigned int use_begindir:1; /** For AP connections only. If 1, and we fail to reach the chosen exit, * stop requiring it. */ unsigned int chosen_exit_optional:1; /** For AP connections only. If non-zero, this exit node was picked as * a result of the TrackHostExit, and the value decrements every time * we fail to complete a circuit to our chosen exit -- if it reaches * zero, abandon the associated mapaddress. */ unsigned int chosen_exit_retries:3; /** True iff this is an AP connection that came from a transparent or * NATd connection */ unsigned int is_transparent_ap:1; /** For AP connections only: Set if this connection's target exit node * allows optimistic data (that is, data sent on this stream before * the exit has sent a CONNECTED cell) and we have chosen to use it. */ unsigned int may_use_optimistic_data : 1; /** Are we a socks SocksSocket listener? */ unsigned int is_socks_socket:1; } entry_connection_t; typedef enum { DIR_SPOOL_NONE=0, DIR_SPOOL_SERVER_BY_DIGEST, DIR_SPOOL_SERVER_BY_FP, DIR_SPOOL_EXTRA_BY_DIGEST, DIR_SPOOL_EXTRA_BY_FP, DIR_SPOOL_CACHED_DIR, DIR_SPOOL_NETWORKSTATUS, DIR_SPOOL_MICRODESC, /* NOTE: if we add another entry, add another bit. */ } dir_spool_source_t; #define dir_spool_source_bitfield_t ENUM_BF(dir_spool_source_t) /** Subtype of connection_t for an "directory connection" -- that is, an HTTP * connection to retrieve or serve directory material. */ typedef struct dir_connection_t { connection_t base_; /** Which 'resource' did we ask the directory for? This is typically the part * of the URL string that defines, relative to the directory conn purpose, * what thing we want. For example, in router descriptor downloads by * descriptor digest, it contains "d/", then one ore more +-separated * fingerprints. **/ char *requested_resource; unsigned int dirconn_direct:1; /**< Is this dirconn direct, or via Tor? */ /* Used only for server sides of some dir connections, to implement * "spooling" of directory material to the outbuf. Otherwise, we'd have * to append everything to the outbuf in one enormous chunk. */ /** What exactly are we spooling right now? */ dir_spool_source_bitfield_t dir_spool_src : 3; /** If we're fetching descriptors, what router purpose shall we assign * to them? */ uint8_t router_purpose; /** List of fingerprints for networkstatuses or descriptors to be spooled. */ smartlist_t *fingerprint_stack; /** A cached_dir_t object that we're currently spooling out */ struct cached_dir_t *cached_dir; /** The current offset into cached_dir. */ off_t cached_dir_offset; /** The zlib object doing on-the-fly compression for spooled data. */ tor_zlib_state_t *zlib_state; /** What rendezvous service are we querying for? */ rend_data_t *rend_data; char identity_digest[DIGEST_LEN]; /**< Hash of the public RSA key for * the directory server's signing key. */ /** Unique ID for directory requests; this used to be in connection_t, but * that's going away and being used on channels instead. The dirserver still * needs this for the incoming side, so it's moved here. */ uint64_t dirreq_id; } dir_connection_t; /** Subtype of connection_t for an connection to a controller. */ typedef struct control_connection_t { connection_t base_; uint64_t event_mask; /**< Bitfield: which events does this controller * care about? * EVENT_MAX_ is >31, so we need a 64 bit mask */ /** True if we have sent a protocolinfo reply on this connection. */ unsigned int have_sent_protocolinfo:1; /** True if we have received a takeownership command on this * connection. */ unsigned int is_owning_control_connection:1; /** List of ephemeral onion services belonging to this connection. */ smartlist_t *ephemeral_onion_services; /** If we have sent an AUTHCHALLENGE reply on this connection and * have not received a successful AUTHENTICATE command, points to * the value which the client must send to authenticate itself; * otherwise, NULL. */ char *safecookie_client_hash; /** Amount of space allocated in incoming_cmd. */ uint32_t incoming_cmd_len; /** Number of bytes currently stored in incoming_cmd. */ uint32_t incoming_cmd_cur_len; /** A control command that we're reading from the inbuf, but which has not * yet arrived completely. */ char *incoming_cmd; } control_connection_t; /** Cast a connection_t subtype pointer to a connection_t **/ #define TO_CONN(c) (&(((c)->base_))) /** Helper macro: Given a pointer to to.base_, of type from*, return &to. */ #define DOWNCAST(to, ptr) ((to*)SUBTYPE_P(ptr, to, base_)) /** Cast a entry_connection_t subtype pointer to a edge_connection_t **/ #define ENTRY_TO_EDGE_CONN(c) (&(((c))->edge_)) /** Cast a entry_connection_t subtype pointer to a connection_t **/ #define ENTRY_TO_CONN(c) (TO_CONN(ENTRY_TO_EDGE_CONN(c))) /** Convert a connection_t* to an or_connection_t*; assert if the cast is * invalid. */ static or_connection_t *TO_OR_CONN(connection_t *); /** Convert a connection_t* to a dir_connection_t*; assert if the cast is * invalid. */ static dir_connection_t *TO_DIR_CONN(connection_t *); /** Convert a connection_t* to an edge_connection_t*; assert if the cast is * invalid. */ static edge_connection_t *TO_EDGE_CONN(connection_t *); /** Convert a connection_t* to an entry_connection_t*; assert if the cast is * invalid. */ static entry_connection_t *TO_ENTRY_CONN(connection_t *); /** Convert a edge_connection_t* to an entry_connection_t*; assert if the cast * is invalid. */ static entry_connection_t *EDGE_TO_ENTRY_CONN(edge_connection_t *); /** Convert a connection_t* to an control_connection_t*; assert if the cast is * invalid. */ static control_connection_t *TO_CONTROL_CONN(connection_t *); /** Convert a connection_t* to an listener_connection_t*; assert if the cast is * invalid. */ static listener_connection_t *TO_LISTENER_CONN(connection_t *); static INLINE or_connection_t *TO_OR_CONN(connection_t *c) { tor_assert(c->magic == OR_CONNECTION_MAGIC); return DOWNCAST(or_connection_t, c); } static INLINE dir_connection_t *TO_DIR_CONN(connection_t *c) { tor_assert(c->magic == DIR_CONNECTION_MAGIC); return DOWNCAST(dir_connection_t, c); } static INLINE edge_connection_t *TO_EDGE_CONN(connection_t *c) { tor_assert(c->magic == EDGE_CONNECTION_MAGIC || c->magic == ENTRY_CONNECTION_MAGIC); return DOWNCAST(edge_connection_t, c); } static INLINE entry_connection_t *TO_ENTRY_CONN(connection_t *c) { tor_assert(c->magic == ENTRY_CONNECTION_MAGIC); return (entry_connection_t*) SUBTYPE_P(c, entry_connection_t, edge_.base_); } static INLINE entry_connection_t *EDGE_TO_ENTRY_CONN(edge_connection_t *c) { tor_assert(c->base_.magic == ENTRY_CONNECTION_MAGIC); return (entry_connection_t*) SUBTYPE_P(c, entry_connection_t, edge_); } static INLINE control_connection_t *TO_CONTROL_CONN(connection_t *c) { tor_assert(c->magic == CONTROL_CONNECTION_MAGIC); return DOWNCAST(control_connection_t, c); } static INLINE listener_connection_t *TO_LISTENER_CONN(connection_t *c) { tor_assert(c->magic == LISTENER_CONNECTION_MAGIC); return DOWNCAST(listener_connection_t, c); } /* Conditional macros to help write code that works whether bufferevents are disabled or not. We can't just write: if (conn->bufev) { do bufferevent stuff; } else { do other stuff; } because the bufferevent stuff won't even compile unless we have a fairly new version of Libevent. Instead, we say: IF_HAS_BUFFEREVENT(conn, { do_bufferevent_stuff } ); or: IF_HAS_BUFFEREVENT(conn, { do bufferevent stuff; }) ELSE_IF_NO_BUFFEREVENT { do non-bufferevent stuff; } If we're compiling with bufferevent support, then the macros expand more or less to: if (conn->bufev) { do_bufferevent_stuff; } else { do non-bufferevent stuff; } and if we aren't using bufferevents, they expand more or less to: { do non-bufferevent stuff; } */ #ifdef USE_BUFFEREVENTS #define HAS_BUFFEREVENT(c) (((c)->bufev) != NULL) #define IF_HAS_BUFFEREVENT(c, stmt) \ if ((c)->bufev) do { \ stmt ; \ } while (0) #define ELSE_IF_NO_BUFFEREVENT ; else #define IF_HAS_NO_BUFFEREVENT(c) \ if (NULL == (c)->bufev) #else #define HAS_BUFFEREVENT(c) (0) #define IF_HAS_BUFFEREVENT(c, stmt) (void)0 #define ELSE_IF_NO_BUFFEREVENT ; #define IF_HAS_NO_BUFFEREVENT(c) \ if (1) #endif /** What action type does an address policy indicate: accept or reject? */ typedef enum { ADDR_POLICY_ACCEPT=1, ADDR_POLICY_REJECT=2, } addr_policy_action_t; #define addr_policy_action_bitfield_t ENUM_BF(addr_policy_action_t) /** A reference-counted address policy rule. */ typedef struct addr_policy_t { int refcnt; /**< Reference count */ /** What to do when the policy matches.*/ addr_policy_action_bitfield_t policy_type:2; unsigned int is_private:1; /**< True iff this is the pseudo-address, * "private". */ unsigned int is_canonical:1; /**< True iff this policy is the canonical * copy (stored in a hash table to avoid * duplication of common policies) */ maskbits_t maskbits; /**< Accept/reject all addresses a such that the * first maskbits bits of a match * addr. */ /** Base address to accept or reject. * * Note that wildcards are treated * differntly depending on address family. An AF_UNSPEC address means * "All addresses, IPv4 or IPv6." An AF_INET address with maskbits==0 means * "All IPv4 addresses" and an AF_INET6 address with maskbits == 0 means * "All IPv6 addresses". **/ tor_addr_t addr; uint16_t prt_min; /**< Lowest port number to accept/reject. */ uint16_t prt_max; /**< Highest port number to accept/reject. */ } addr_policy_t; /** A cached_dir_t represents a cacheable directory object, along with its * compressed form. */ typedef struct cached_dir_t { char *dir; /**< Contents of this object, NUL-terminated. */ char *dir_z; /**< Compressed contents of this object. */ size_t dir_len; /**< Length of dir (not counting its NUL). */ size_t dir_z_len; /**< Length of dir_z. */ time_t published; /**< When was this object published. */ digests_t digests; /**< Digests of this object (networkstatus only) */ int refcnt; /**< Reference count for this cached_dir_t. */ } cached_dir_t; /** Enum used to remember where a signed_descriptor_t is stored and how to * manage the memory for signed_descriptor_body. */ typedef enum { /** The descriptor isn't stored on disk at all: the copy in memory is * canonical; the saved_offset field is meaningless. */ SAVED_NOWHERE=0, /** The descriptor is stored in the cached_routers file: the * signed_descriptor_body is meaningless; the signed_descriptor_len and * saved_offset are used to index into the mmaped cache file. */ SAVED_IN_CACHE, /** The descriptor is stored in the cached_routers.new file: the * signed_descriptor_body and saved_offset fields are both set. */ /* FFFF (We could also mmap the file and grow the mmap as needed, or * lazy-load the descriptor text by using seek and read. We don't, for * now.) */ SAVED_IN_JOURNAL } saved_location_t; #define saved_location_bitfield_t ENUM_BF(saved_location_t) /** Enumeration: what kind of download schedule are we using for a given * object? */ typedef enum { DL_SCHED_GENERIC = 0, DL_SCHED_CONSENSUS = 1, DL_SCHED_BRIDGE = 2, } download_schedule_t; #define download_schedule_bitfield_t ENUM_BF(download_schedule_t) /** Information about our plans for retrying downloads for a downloadable * object. */ typedef struct download_status_t { time_t next_attempt_at; /**< When should we try downloading this descriptor * again? */ uint8_t n_download_failures; /**< Number of failures trying to download the * most recent descriptor. */ download_schedule_bitfield_t schedule : 8; } download_status_t; /** If n_download_failures is this high, the download can never happen. */ #define IMPOSSIBLE_TO_DOWNLOAD 255 /** The max size we expect router descriptor annotations we create to * be. We'll accept larger ones if we see them on disk, but we won't * create any that are larger than this. */ #define ROUTER_ANNOTATION_BUF_LEN 256 /** Information need to cache an onion router's descriptor. */ typedef struct signed_descriptor_t { /** Pointer to the raw server descriptor, preceded by annotations. Not * necessarily NUL-terminated. If saved_location is SAVED_IN_CACHE, this * pointer is null. */ char *signed_descriptor_body; /** Length of the annotations preceding the server descriptor. */ size_t annotations_len; /** Length of the server descriptor. */ size_t signed_descriptor_len; /** Digest of the server descriptor, computed as specified in * dir-spec.txt. */ char signed_descriptor_digest[DIGEST_LEN]; /** Identity digest of the router. */ char identity_digest[DIGEST_LEN]; /** Declared publication time of the descriptor. */ time_t published_on; /** For routerdescs only: digest of the corresponding extrainfo. */ char extra_info_digest[DIGEST_LEN]; /** For routerdescs only: Status of downloading the corresponding * extrainfo. */ download_status_t ei_dl_status; /** Where is the descriptor saved? */ saved_location_t saved_location; /** If saved_location is SAVED_IN_CACHE or SAVED_IN_JOURNAL, the offset of * this descriptor in the corresponding file. */ off_t saved_offset; /** What position is this descriptor within routerlist->routers or * routerlist->old_routers? -1 for none. */ int routerlist_index; /** The valid-until time of the most recent consensus that listed this * descriptor. 0 for "never listed in a consensus, so far as we know." */ time_t last_listed_as_valid_until; /* If true, we do not ever try to save this object in the cache. */ unsigned int do_not_cache : 1; /* If true, this item is meant to represent an extrainfo. */ unsigned int is_extrainfo : 1; /* If true, we got an extrainfo for this item, and the digest was right, * but it was incompatible. */ unsigned int extrainfo_is_bogus : 1; /* If true, we are willing to transmit this item unencrypted. */ unsigned int send_unencrypted : 1; } signed_descriptor_t; /** A signed integer representing a country code. */ typedef int16_t country_t; /** Information about another onion router in the network. */ typedef struct { signed_descriptor_t cache_info; /** A SHA256-digest of the extrainfo (if any) */ char extra_info_digest256[DIGEST256_LEN]; char *nickname; /**< Human-readable OR name. */ uint32_t addr; /**< IPv4 address of OR, in host order. */ uint16_t or_port; /**< Port for TLS connections. */ uint16_t dir_port; /**< Port for HTTP directory connections. */ /** A router's IPv6 address, if it has one. */ /* XXXXX187 Actually these should probably be part of a list of addresses, * not just a special case. Use abstractions to access these; don't do it * directly. */ tor_addr_t ipv6_addr; uint16_t ipv6_orport; crypto_pk_t *onion_pkey; /**< Public RSA key for onions. */ crypto_pk_t *identity_pkey; /**< Public RSA key for signing. */ /** Public curve25519 key for onions */ curve25519_public_key_t *onion_curve25519_pkey; /** Certificate for ed25519 signing key */ struct tor_cert_st *signing_key_cert; /** What's the earliest expiration time on all the certs in this * routerinfo? */ time_t cert_expiration_time; char *platform; /**< What software/operating system is this OR using? */ /* link info */ uint32_t bandwidthrate; /**< How many bytes does this OR add to its token * bucket per second? */ uint32_t bandwidthburst; /**< How large is this OR's token bucket? */ /** How many bytes/s is this router known to handle? */ uint32_t bandwidthcapacity; smartlist_t *exit_policy; /**< What streams will this OR permit * to exit on IPv4? NULL for 'reject *:*'. */ /** What streams will this OR permit to exit on IPv6? * NULL for 'reject *:*' */ struct short_policy_t *ipv6_exit_policy; long uptime; /**< How many seconds the router claims to have been up */ smartlist_t *declared_family; /**< Nicknames of router which this router * claims are its family. */ char *contact_info; /**< Declared contact info for this router. */ unsigned int is_hibernating:1; /**< Whether the router claims to be * hibernating */ unsigned int caches_extra_info:1; /**< Whether the router says it caches and * serves extrainfo documents. */ unsigned int allow_single_hop_exits:1; /**< Whether the router says * it allows single hop exits. */ unsigned int wants_to_be_hs_dir:1; /**< True iff this router claims to be * a hidden service directory. */ unsigned int policy_is_reject_star:1; /**< True iff the exit policy for this * router rejects everything. */ /** True if, after we have added this router, we should re-launch * tests for it. */ unsigned int needs_retest_if_added:1; /** Tor can use this router for general positions in circuits; we got it * from a directory server as usual, or we're an authority and a server * uploaded it. */ #define ROUTER_PURPOSE_GENERAL 0 /** Tor should avoid using this router for circuit-building: we got it * from a crontroller. If the controller wants to use it, it'll have to * ask for it by identity. */ #define ROUTER_PURPOSE_CONTROLLER 1 /** Tor should use this router only for bridge positions in circuits: we got * it via a directory request from the bridge itself, or a bridge * authority. x*/ #define ROUTER_PURPOSE_BRIDGE 2 /** Tor should not use this router; it was marked in cached-descriptors with * a purpose we didn't recognize. */ #define ROUTER_PURPOSE_UNKNOWN 255 /* In what way did we find out about this router? One of ROUTER_PURPOSE_*. * Routers of different purposes are kept segregated and used for different * things; see notes on ROUTER_PURPOSE_* macros above. */ uint8_t purpose; } routerinfo_t; /** Information needed to keep and cache a signed extra-info document. */ typedef struct extrainfo_t { signed_descriptor_t cache_info; /** SHA256 digest of this document */ uint8_t digest256[DIGEST256_LEN]; /** The router's nickname. */ char nickname[MAX_NICKNAME_LEN+1]; /** Certificate for ed25519 signing key */ struct tor_cert_st *signing_key_cert; /** True iff we found the right key for this extra-info, verified the * signature, and found it to be bad. */ unsigned int bad_sig : 1; /** If present, we didn't have the right key to verify this extra-info, * so this is a copy of the signature in the document. */ char *pending_sig; /** Length of pending_sig. */ size_t pending_sig_len; } extrainfo_t; /** Contents of a single router entry in a network status object. */ typedef struct routerstatus_t { time_t published_on; /**< When was this router published? */ char nickname[MAX_NICKNAME_LEN+1]; /**< The nickname this router says it * has. */ char identity_digest[DIGEST_LEN]; /**< Digest of the router's identity * key. */ /** Digest of the router's most recent descriptor or microdescriptor. * If it's a descriptor, we only use the first DIGEST_LEN bytes. */ char descriptor_digest[DIGEST256_LEN]; uint32_t addr; /**< IPv4 address for this router. */ uint16_t or_port; /**< OR port for this router. */ uint16_t dir_port; /**< Directory port for this router. */ tor_addr_t ipv6_addr; /**< IPv6 address for this router. */ uint16_t ipv6_orport; /**